2024-08-29T02:58:16.088432 UPLOADED FILES: File: Data\\Binance\\__init__.py # -*- coding:utf-8 -*- File: Data\\Binance\\data_process.py import zipfile import os import pandas as pd from datetime import * def unzip(src_file, dest_dir): """ungz zip file""" zf = zipfile.ZipFile(src_file) zf.extractall(path=dest_dir) zf.close() if __name__ == "__main__": dest_dir = "./data/unzip" file_list = [] for root, dirs, files in os.walk("./data"): for file in files: if file.endswith(".zip"): unzip(os.path.join(root, file), dest_dir) print("pause") dest_dir = "./data/concat" # concate the last month data with current month data df = pd.read_csv("Telegram/Labeled/PD_logs_cleaned.txt", sep="\t") df["timestamp"] = df.timestamp.apply(pd.to_datetime) columns = [ "open_time", "open", "high", "low", "close", "volume", "close_time", "quote_asset_volume", "number_of_trades", "taker_buy_base_asset_volume", "taker_buy_quote_asset_volume", "ignore", ] for i, row in df.iterrows(): if row.timestamp.day > 3: last_month_timestamp = row.timestamp - timedelta(days=31) else: last_month_timestamp = row.timestamp - timedelta(days=15) try: current_month_file_name = ( df.loc[i, "coin"] + df.loc[i, "pair"] + "-1m-" + df.loc[i, "timestamp"].strftime("%Y-%m") + ".csv" ) current_month_statistics = pd.read_csv( "./data/unzip/" + current_month_file_name, names=columns ) last_month_file_name = ( df.loc[i, "coin"] + df.loc[i, "pair"] + "-1m-" + last_month_timestamp.strftime("%Y-%m") + ".csv" ) last_month_statistics = pd.read_csv( "./data/unzip/" + last_month_file_name, names=columns ) current_month_statistics = pd.concat( [last_month_statistics, current_month_statistics], axis=0 ) current_month_statistics.to_csv( os.path.join(dest_dir, current_month_file_name), index=False ) except: continue File: Data\\Binance\\enums.py from datetime import * YEARS = ["2017", "2018", "2019", "2020", "2021"] INTERVALS = [ "1m", "5m", "15m", "30m", "1h", "2h", "4h", "6h", "8h", "12h", "1d", "3d", "1w", "1mo", ] DAILY_INTERVALS = ["1m", "5m", "15m", "30m", "1h", "2h", "4h", "6h", "8h", "12h", "1d"] TRADING_TYPE = ["spot", "um", "cm"] MONTHS = list(range(1, 13)) MAX_DAYS = 35 BASE_URL = "https://data.binance.vision/" START_DATE = date(int(YEARS[0]), MONTHS[0], 1) END_DATE = datetime.date(datetime.now()) File: Data\\Binance\\kline_collect_Binance.py """ script to download klines. set the absoluate path destination folder for STORE_DIRECTORY, and run e.g. STORE_DIRECTORY=/data/ ./download-kline.py """ import sys from datetime import * import pandas as pd from enums import * from utility import download_monthly_klines, download_daily_klines if __name__ == "__main__": df = pd.read_csv("Telegram/Labeled/PD_logs_cleaned.txt", sep="\t") df["timestamp"] = df.timestamp.apply(pd.to_datetime) for i, row in df.iterrows(): print(row) try: if row.timestamp.day > 3: last_month_timestamp = row.timestamp - timedelta(days=31) else: last_month_timestamp = row.timestamp - timedelta(days=15) download_monthly_klines( trading_type="spot", symbols=[row.coin + row.pair], num_symbols=1, intervals=["1m"], years=[last_month_timestamp.year], months=[last_month_timestamp.month], start_date=None, end_date=None, folder="", checksum=0, ) except: continue File: Data\\Binance\\utility.py import os, sys, re, shutil import json from pathlib import Path import urllib.request from argparse import ArgumentParser, RawTextHelpFormatter, ArgumentTypeError from enums import * def download_monthly_klines( trading_type, symbols, num_symbols, intervals, years, months, start_date, end_date, folder, checksum, ): current = 0 date_range = None if start_date and end_date: date_range = start_date + " " + end_date if not start_date: start_date = START_DATE else: start_date = convert_to_date_object(start_date) if not end_date: end_date = END_DATE else: end_date = convert_to_date_object(end_date) # print("Found {} symbols".format(num_symbols)) for symbol in symbols: # print("[{}/{}] - start download monthly {} klines ".format(current + 1, num_symbols, symbol)) for interval in intervals: for year in years: for month in months: current_date = convert_to_date_object( "{}-{}-01".format(year, month) ) if current_date >= start_date and current_date <= end_date: path = get_path( trading_type, "klines", "monthly", symbol, interval ) file_name = "{}-{}-{}-{}.zip".format( symbol.upper(), interval, year, "{:02d}".format(month) ) download_file(path, file_name, date_range, folder) if checksum == 1: checksum_path = get_path( trading_type, "klines", "monthly", symbol, interval ) checksum_file_name = "{}-{}-{}-{}.zip.CHECKSUM".format( symbol.upper(), interval, year, "{:02d}".format(month) ) download_file( checksum_path, checksum_file_name, date_range, folder ) current += 1 def download_daily_klines( trading_type, symbols, num_symbols, intervals, dates, start_date, end_date, folder, checksum, ): current = 0 date_range = None if start_date and end_date: date_range = start_date + " " + end_date if not start_date: start_date = START_DATE else: start_date = convert_to_date_object(start_date) if not end_date: end_date = END_DATE else: end_date = convert_to_date_object(end_date) # Get valid intervals for daily intervals = list(set(intervals) & set(DAILY_INTERVALS)) print("Found {} symbols".format(num_symbols)) for symbol in symbols: print( "[{}/{}] - start download daily {} klines ".format( current + 1, num_symbols, symbol ) ) for interval in intervals: for date in dates: current_date = convert_to_date_object(date) if current_date >= start_date and current_date <= end_date: path = get_path(trading_type, "klines", "daily", symbol, interval) file_name = "{}-{}-{}.zip".format(symbol.upper(), interval, date) download_file(path, file_name, date_range, folder) if checksum == 1: checksum_path = get_path( trading_type, "klines", "daily", symbol, interval ) checksum_file_name = "{}-{}-{}.zip.CHECKSUM".format( symbol.upper(), interval, date ) download_file(checksum_path, checksum_file_name, date_range, folder) current += 1 def get_destination_dir(file_url, folder=None): store_directory = os.environ.get("STORE_DIRECTORY") if folder: store_directory = folder if not store_directory: store_directory = os.path.dirname(os.path.realpath(__file__)) return os.path.join(store_directory, file_url) def get_download_url(file_url): return "{}{}".format(BASE_URL, file_url) def get_all_symbols(type): if type == "um": response = urllib.request.urlopen( "https://fapi.binance.com/fapi/v1/exchangeInfo" ).read() elif type == "cm": response = urllib.request.urlopen( "https://dapi.binance.com/dapi/v1/exchangeInfo" ).read() else: response = urllib.request.urlopen( "https://api.binance.com/api/v3/exchangeInfo" ).read() return list(map(lambda symbol: symbol["symbol"], json.loads(response)["symbols"])) def download_file(base_path, file_name, date_range=None, folder=None): download_path = "{}{}".format(base_path, file_name) if folder: base_path = os.path.join(folder, base_path) if date_range: date_range = date_range.replace(" ", "_") base_path = os.path.join(base_path, date_range) save_path = get_destination_dir(os.path.join(base_path, file_name), folder) if os.path.exists(save_path): # print("\nfile already exists! {}".format(save_path)) return # make the directory if not os.path.exists(base_path): Path(get_destination_dir(base_path)).mkdir(parents=True, exist_ok=True) try: download_url = get_download_url(download_path) dl_file = urllib.request.urlopen(download_url) length = dl_file.getheader("content-length") if length: length = int(length) blocksize = max(4096, length // 100) with open(save_path, "wb") as out_file: dl_progress = 0 # print("\nFile Download: {}".format(save_path)) while True: buf = dl_file.read(blocksize) if not buf: break dl_progress += len(buf) out_file.write(buf) done = int(50 * dl_progress / length) sys.stdout.write("\r[%s%s]" % ("#" * done, "." * (50 - done))) sys.stdout.flush() except urllib.error.HTTPError: # print("\nFile not found: {}".format(download_url)) pass def convert_to_date_object(d): year, month, day = [int(x) for x in d.split("-")] date_obj = date(year, month, day) return date_obj def get_start_end_date_objects(date_range): start, end = date_range.split() start_date = convert_to_date_object(start) end_date = convert_to_date_object(end) return start_date, end_date def match_date_regex(arg_value, pat=re.compile(r"\d{4}-\d{2}-\d{2}")): if not pat.match(arg_value): raise ArgumentTypeError return arg_value def check_directory(arg_value): if os.path.exists(arg_value): while True: option = input("Folder already exists! Do you want to overwrite it? y/n ") if option != "y" and option != "n": print("Invalid Option!") continue elif option == "y": shutil.rmtree(arg_value) break else: break return arg_value def get_path(trading_type, market_data_type, time_period, symbol, interval=None): trading_type_path = "data/spot" if trading_type != "spot": trading_type_path = f"data/futures/{trading_type}" if interval is not None: path = f"{trading_type_path}/{time_period}/{market_data_type}/{symbol.upper()}/{interval}/" else: path = f"{trading_type_path}/{time_period}/{market_data_type}/{symbol.upper()}/" return path def get_parser(parser_type): parser = ArgumentParser( description=("This is a script to download historical {} data").format( parser_type ), formatter_class=RawTextHelpFormatter, ) parser.add_argument( "-s", dest="symbols", nargs="+", help="Single symbol or multiple symbols separated by space", ) parser.add_argument( "-y", dest="years", default=YEARS, nargs="+", choices=YEARS, help="Single year or multiple years separated by space\n-y 2019 2021 means to download {} from 2019 and 2021".format( parser_type ), ) parser.add_argument( "-m", dest="months", default=MONTHS, nargs="+", type=int, choices=MONTHS, help="Single month or multiple months separated by space\n-m 2 12 means to download {} from feb and dec".format( parser_type ), ) parser.add_argument( "-d", dest="dates", nargs="+", type=match_date_regex, help="Date to download in [YYYY-MM-DD] format\nsingle date or multiple dates separated by space\ndownload past 35 days if no argument is parsed", ) parser.add_argument( "-startDate", dest="startDate", type=match_date_regex, help="Starting date to download in [YYYY-MM-DD] format", ) parser.add_argument( "-endDate", dest="endDate", type=match_date_regex, help="Ending date to download in [YYYY-MM-DD] format", ) parser.add_argument( "-folder", dest="folder", type=check_directory, help="Directory to store the downloaded data", ) parser.add_argument( "-c", dest="checksum", default=0, type=int, choices=[0, 1], help="1 to download checksum file, default 0", ) parser.add_argument( "-t", dest="type", default="spot", choices=TRADING_TYPE, help="Valid trading types: {}".format(TRADING_TYPE), ) if parser_type == "klines": parser.add_argument( "-i", dest="intervals", default=INTERVALS, nargs="+", choices=INTERVALS, help="single kline interval or multiple intervals separated by space\n-i 1m 1w means to download klines interval of 1minute and 1week", ) return parser File: Data\\Telegram\\Labeled\\PD_logs_cleaned.txt channel_id session_id coin exchange pair timestamp 1095533634 256 APPC binance BTC 2019-06-04 12:01:33+00:00 1095533634 258 REQ binance BTC 2019-06-08 13:00:02+00:00 1095533634 278 ADX binance BTC 2019-07-05 17:01:12+00:00 1095533634 285 SNM binance BTC 2019-08-07 16:59:48+00:00 1095533634 287 DATA binance BTC 2019-08-15 20:00:07+00:00 1095533634 293 QSP binance BTC 2019-08-29 18:00:05+00:00 1095533634 296 DATA binance BTC 2019-09-08 18:00:04+00:00 1095533634 299 EDO binance BTC 2019-09-23 12:59:59+00:00 1095533634 302 NXS binance BTC 2019-10-02 18:00:06+00:00 1095533634 304 OST binance BTC 2019-10-22 18:00:05+00:00 1095533634 336 NAV binance BTC 2020-01-16 19:00:06+00:00 1095533634 338 SNGLS binance BTC 2020-03-08 18:59:46+00:00 1095533634 339 VIA binance BTC 2020-05-29 16:00:20+00:00 1095533634 341 CTXC binance BTC 2020-06-03 16:00:29+00:00 1388333162 293 DOX yobit BTC 2019-02-13 19:30:00+00:00 1388333162 294 PIE yobit BTC 2019-02-15 19:30:00+00:00 1388333162 296 TKN yobit BTC 2019-02-18 19:30:00+00:00 1388333162 301 FC yobit BTC 2019-02-26 19:30:00+00:00 1388333162 302 ASCS yobit BTC 2019-02-28 19:30:01+00:00 1388333162 305 CROC yobit BTC 2019-03-05 19:30:00+00:00 1388333162 307 M1 yobit BTC 2019-03-12 19:30:00+00:00 1388333162 313 FC yobit BTC 2019-03-22 18:30:00+00:00 1388333162 324 DOX yobit BTC 2019-04-08 18:30:00+00:00 1388333162 331 ASCS yobit BTC 2019-04-17 18:30:00+00:00 1258049399 200 RDN binance BTC 2019-10-15 20:00:01+00:00 1258049399 221 LRC binance BTC 2019-11-16 05:01:23+00:00 1494273858 0 STMX binance USDT 2021-06-14 13:00:07+00:00 1494273858 1 BLZ binance USDT 2021-06-16 11:29:59+00:00 1494273858 2 NKN binance USDT 2021-06-17 11:59:58+00:00 1494273858 16 NKN binance USDT 2021-07-05 13:00:00+00:00 1494273858 50 KEEP binance USDT 2021-08-31 15:00:03+00:00 1195248520 0 EVX binance BTC 2020-06-24 16:14:44+00:00 1195248520 5 GVT binance BTC 2020-07-04 16:59:51+00:00 1195248520 7 ADX binance BTC 2020-07-07 16:01:29+00:00 1195248520 17 ELF binance BTC 2020-07-24 17:01:24+00:00 1296134866 6 APPC binance BTC 2020-11-27 18:00:12+00:00 1296134866 10 NXS binance BTC 2020-12-03 18:00:05+00:00 1296134866 12 NXS binance BTC 2020-12-27 18:00:15+00:00 1296134866 15 APPC binance BTC 2021-01-01 21:00:25+00:00 1296134866 18 SNM binance BTC 2021-01-08 21:00:07+00:00 1296134866 20 SNGLS binance BTC 2021-01-11 21:00:05+00:00 1296134866 21 APPC binance BTC 2021-01-13 21:00:06+00:00 1296134866 24 SNM binance BTC 2021-01-20 17:00:46+00:00 1296134866 26 SKY binance BTC 2021-02-13 17:00:05+00:00 1296134866 30 NXS binance BTC 2021-02-21 17:00:04+00:00 1296134866 33 PPT binance BTC 2021-03-07 17:00:04+00:00 1296134866 44 PIVX binance BTC 2021-03-28 17:00:04+00:00 1296134866 51 VIA binance BTC 2021-04-11 17:00:05+00:00 1296134866 58 IDEX binance BTC 2021-04-25 17:00:10+00:00 1296134866 71 NXS binance BTC 2021-05-26 17:00:02+00:00 1296134866 71 POA binance BTC 2021-07-11 17:00:02+00:00 1296134866 77 DREP binance BTC 2021-07-25 17:00:01+00:00 1296134866 82 EZ binance BTC 2021-08-08 17:00:10+00:00 1296134866 88 NAS binance BTC 2021-08-22 17:00:10+00:00 1296134866 93 VIB binance BTC 2021-09-05 17:00:05+00:00 1296134866 97 FXS binance BTC 2021-09-19 17:00:11+00:00 1296134866 103 EZ binance BTC 2021-10-03 17:00:07+00:00 1296134866 107 WNXM binance BTC 2021-10-10 17:00:05+00:00 1296134866 113 EVX binance BTC 2021-10-24 17:00:07+00:00 1296134866 117 EZ binance BTC 2021-10-31 17:00:05+00:00 1296134866 122 MTH binance BTC 2021-11-07 17:00:03+00:00 1296134866 129 PHB binance BTC 2021-11-28 17:00:05+00:00 1296134866 135 NEBL binance BTC 2022-01-02 17:00:07+00:00 1315869059 23 MDA binance BTC 2020-05-04 19:01:23+00:00 1198780255 14 MODEFI kucoin USDT 2021-11-21 18:00:08+00:00 1198780255 32 GENS kucoin USDT 2022-01-01 18:00:04+00:00 1259400586 170 TNB binance BTC 2020-03-21 16:00:05+00:00 1259400586 170 EVX binance BTC 2020-03-21 16:39:54+00:00 1259400586 172 TCT binance BTC 2020-03-23 16:00:03+00:00 1259400586 175 EDO binance BTC 2020-03-26 15:59:39+00:00 1259400586 176 RLC binance BTC 2020-03-27 15:57:32+00:00 1259400586 182 DLT binance BTC 2020-03-28 12:18:10+00:00 1259400586 182 GRS binance BTC 2020-04-02 15:59:57+00:00 1259400586 190 GNT binance BTC 2020-04-10 16:00:05+00:00 1259400586 193 VITE binance BTC 2020-04-13 11:58:32+00:00 1259400586 193 MITH binance BTC 2020-04-14 16:00:07+00:00 1259400586 193 GVT binance BTC 2020-04-15 15:56:34+00:00 1259400586 199 BNT binance BTC 2020-04-24 15:59:08+00:00 1259400586 200 ARK binance BTC 2020-04-25 14:00:10+00:00 1259400586 218 GTO binance BTC 2020-05-21 15:58:02+00:00 1259400586 223 ONG binance BTC 2020-05-26 16:00:07+00:00 1259400586 225 VIA binance BTC 2020-05-29 15:59:46+00:00 1259400586 230 CTXC binance BTC 2020-06-03 16:00:11+00:00 1259400586 234 VIA binance BTC 2020-06-10 15:59:23+00:00 1259400586 237 QSP binance BTC 2020-06-13 16:00:18+00:00 1259400586 239 GXS binance BTC 2020-06-15 16:00:24+00:00 1259400586 244 EVX binance BTC 2020-06-24 16:00:11+00:00 1259400586 388 BCPT binance BTC 2021-01-09 13:00:16+00:00 1259400586 406 SNM binance BTC 2021-01-28 15:30:04+00:00 1259400586 406 DOGE binance BTC 2021-01-30 13:00:02+00:00 1259400586 437 DGCL UNISWAP BTC 2021-03-15 13:01:12+00:00 1259400586 440 BSC UNISWAP BTC 2021-03-23 17:00:03+00:00 1259400586 642 AUTO binance BTC 2021-12-24 13:00:04+00:00 1164619963 59 WABI binance BTC 2021-10-14 15:00:31+00:00 1164619963 63 BRD binance BTC 2021-10-31 15:00:05+00:00 1164619963 67 NAS binance BTC 2021-11-14 15:00:04+00:00 1164619963 70 MDA binance BTC 2021-11-23 15:00:01+00:00 1164619963 76 NEBL binance BTC 2021-12-05 15:00:01+00:00 1164619963 79 EVX binance BTC 2021-12-10 15:00:01+00:00 1341737830 1 ARK binance BTC 2020-04-03 18:00:09+00:00 1341737830 1 ZEN binance BTC 2020-04-03 19:00:06+00:00 1341737830 2 BNT binance BTC 2020-04-06 18:00:07+00:00 1341737830 3 ARN binance BTC 2020-04-07 18:00:08+00:00 1341737830 4 EDO binance BTC 2020-04-10 18:00:12+00:00 1341737830 19 MDA binance BTC 2020-05-04 19:01:23+00:00 1549584841 7 DVPN kucoin USDT 2021-10-23 17:00:13+00:00 1549584841 8 EVX binance BTC 2021-10-24 17:00:10+00:00 1549584841 14 EZ binance BTC 2021-10-31 17:00:14+00:00 1549584841 14 GENS kucoin USDT 2021-10-31 18:00:00+00:00 1549584841 19 MTH binance USDT 2021-11-07 17:00:06+00:00 1549584841 24 BASIC kucoin USDT 2021-11-13 17:00:01+00:00 1549584841 25 NAS binance BTC 2021-11-14 15:00:08+00:00 1549584841 30 MODEFI kucoin USDT 2021-11-21 18:00:11+00:00 1549584841 32 MDA binance BTC 2021-11-23 15:00:06+00:00 1549584841 36 SWP kucoin USDT 2021-11-27 17:00:02+00:00 1549584841 37 PHB binance BTC 2021-11-28 17:00:06+00:00 1549584841 41 NEBL binance BTC 2021-12-05 15:00:02+00:00 1549584841 47 CREAM kucoin USDT 2021-12-18 17:00:04+00:00 1549584841 47 APPC binance BTC 2021-12-19 15:00:04+00:00 1549584841 56 GENS kucoin USDT 2022-01-01 18:00:05+00:00 1549584841 60 UNIC kucoin USDT 2022-01-08 17:00:06+00:00 1549584841 64 ORC kucoin USDT 2022-01-15 17:00:01+00:00 1394568162 7 PIVX binance BTC 2021-03-28 17:07:42+00:00 1394568162 10 WRX binance BTC 2021-04-04 15:21:49+00:00 1394568162 10 PPT binance BTC 2021-04-04 15:24:16+00:00 1394568162 15 VIA binance BTC 2021-04-11 17:00:32+00:00 1394568162 20 IDEX binance BTC 2021-04-25 17:00:23+00:00 1394568162 28 WPR binance BTC 2021-05-09 17:00:21+00:00 1394568162 37 NXS binance BTC 2021-05-26 17:00:25+00:00 1394568162 41 OAX binance BTC 2021-05-30 17:00:22+00:00 1394568162 49 CND binance BTC 2021-06-06 17:00:38+00:00 1394568162 54 FIO binance BTC 2021-06-13 17:03:32+00:00 1394568162 55 STMX binance USDT 2021-06-14 13:00:53+00:00 1394568162 59 WABI binance BTC 2021-06-20 17:00:29+00:00 1394568162 70 NKN binance USDT 2021-07-05 13:00:11+00:00 1394568162 75 POA binance BTC 2021-07-11 17:00:22+00:00 1394568162 82 DREP binance BTC 2021-07-25 17:00:26+00:00 1394568162 87 EZ binance BTC 2021-08-08 17:00:51+00:00 1394568162 99 NAS binance BTC 2021-08-22 17:00:30+00:00 1394568162 104 BRD binance BTC 2021-08-29 17:01:41+00:00 1394568162 110 VIB binance BTC 2021-09-05 17:01:46+00:00 1394568162 119 FXS binance BTC 2021-09-19 17:01:39+00:00 1394568162 131 EZ binance BTC 2021-10-03 17:00:54+00:00 1394568162 133 SKY binance BTC 2021-10-05 15:00:21+00:00 1394568162 137 WNXM binance BTC 2021-10-10 17:01:41+00:00 1394568162 149 EVX binance BTC 2021-10-24 17:01:59+00:00 1394568162 154 BRD binance BTC 2021-10-31 15:01:30+00:00 1394568162 154 EZ binance BTC 2021-10-31 17:00:24+00:00 1394568162 160 MTH binance BTC 2021-11-07 17:00:19+00:00 1394568162 166 NAS binance BTC 2021-11-14 15:00:18+00:00 1394568162 174 MDA binance BTC 2021-11-23 15:00:21+00:00 1394568162 178 PHB binance BTC 2021-11-28 17:02:22+00:00 1394568162 184 NEBL binance BTC 2021-12-05 15:00:22+00:00 1394568162 191 APPC binance BTC 2021-12-19 15:02:12+00:00 1394568162 199 OAX binance BTC 2021-12-28 15:00:09+00:00 1394568162 203 NEBL binance BTC 2022-01-02 17:00:18+00:00 1394568162 212 ORC binance BTC 2022-01-15 17:00:23+00:00 1394568162 215 STND binance BTC 2022-01-18 15:00:14+00:00 1267170242 212 NEBL binance BTC 2019-01-03 15:45:32+00:00 1267170242 216 BNT binance BTC 2019-01-13 13:45:44+00:00 1267170242 243 BQX binance BTC 2019-04-01 17:00:13+00:00 1267170242 257 BQX binance BTC 2019-04-22 17:29:52+00:00 1267170242 343 QSP binance BTC 2019-08-29 18:04:10+00:00 1267170242 352 DATA binance BTC 2019-09-08 18:00:04+00:00 1267170242 355 LINK yobit BTC 2019-09-12 17:00:07+00:00 1267170242 359 ONG binance BTC 2019-09-19 17:00:25+00:00 1267170242 366 NXS binance BTC 2019-10-02 18:00:06+00:00 1267170242 412 EDO binance BTC 2019-12-16 16:00:03+00:00 1480242121 7 VIA binance BTC 2021-04-11 17:07:32+00:00 1480242121 9 VIA binance BTC 2021-04-21 21:08:09+00:00 1480242121 11 QLC binance BTC 2021-04-23 16:07:17+00:00 1480242121 11 RDN binance BTC 2021-04-24 21:09:24+00:00 1480242121 12 IDEX binance BTC 2021-04-25 17:07:50+00:00 1480242121 20 QLC binance BTC 2021-05-11 16:09:31+00:00 1267170242 453 NAV binance BTC 2020-02-20 16:00:19+00:00 1267170242 463 NXS binance BTC 2020-03-03 15:59:54+00:00 1267170242 468 SNGLS binance BTC 2020-03-08 18:59:46+00:00 1480242121 25 CFX binance BTC 2021-05-12 17:18:35+00:00 1480242121 25 MTH binance BTC 2021-05-14 17:43:35+00:00 1480242121 26 GUM binance BTC 2021-06-19 20:24:02+00:00 1480242121 27 WABI binance BTC 2021-06-20 17:10:22+00:00 1480242121 28 DKA binance BTC 2021-06-23 20:18:12+00:00 1480242121 31 STORJ binance USDT 2021-06-29 13:18:06+00:00 1480242121 35 STAR binance BTC 2021-07-06 19:15:12+00:00 1480242121 35 ABT binance BTC 2021-07-07 20:21:24+00:00 1480242121 36 BQT binance BTC 2021-07-10 20:17:54+00:00 1480242121 37 POA binance BTC 2021-07-11 17:09:01+00:00 1480242121 38 BUSY binance BTC 2021-07-14 20:10:35+00:00 1480242121 39 MBONK binance BTC 2021-07-21 19:14:04+00:00 1480242121 41 DREP binance BTC 2021-07-25 17:12:42+00:00 1480242121 44 HAUS binance BTC 2021-07-28 20:09:00+00:00 1480242121 45 BRD binance BTC 2021-08-17 20:47:21+00:00 1267170242 470 RDN binance BTC 2020-03-13 16:00:10+00:00 1267170242 474 STORJ binance BTC 2020-03-19 15:58:37+00:00 1267170242 477 BRD binance BTC 2020-03-24 16:00:06+00:00 1267170242 477 RLC binance BTC 2020-03-27 15:57:40+00:00 1267170242 484 ELF binance BTC 2020-04-10 15:58:17+00:00 1267170242 489 RLC binance BTC 2020-04-20 16:00:02+00:00 1267170242 512 ARK binance BTC 2020-06-02 16:00:26+00:00 1267170242 519 OAX binance BTC 2020-06-28 16:00:08+00:00 1267170242 524 ADX binance BTC 2020-07-07 16:00:07+00:00 1267170242 625 IDEX binance BTC 2020-12-31 17:00:19+00:00 1267170242 651 SKY binance BTC 2021-02-13 17:00:05+00:00 1267170242 654 NXS binance BTC 2021-02-21 17:00:04+00:00 1267170242 660 PPT binance BTC 2021-03-07 17:00:04+00:00 1267170242 670 PIVX binance BTC 2021-03-28 17:00:04+00:00 1267170242 686 IDEX binance BTC 2021-04-25 17:00:10+00:00 1267170242 708 OAX binance BTC 2021-05-30 17:00:02+00:00 1267170242 752 DREP binance BTC 2021-07-25 17:00:01+00:00 1267170242 773 NEBL binance BTC 2021-08-24 15:00:03+00:00 1267170242 781 VIB binance BTC 2021-09-05 17:00:05+00:00 1267170242 791 FXS binance BTC 2021-09-19 17:00:11+00:00 1267170242 802 EZ binance BTC 2021-10-03 17:00:07+00:00 1267170242 807 WNXM binance BTC 2021-10-10 17:00:05+00:00 1267170242 809 WABI binance BTC 2021-10-14 15:00:08+00:00 1267170242 816 EVX binance BTC 2021-10-24 17:00:07+00:00 1267170242 821 EZ binance BTC 2021-10-31 17:00:05+00:00 1267170242 826 MTH binance BTC 2021-11-07 17:00:03+00:00 1267170242 841 PHB binance BTC 2021-11-28 17:00:05+00:00 1314235217 64 CURE binance BTC 2019-03-19 20:01:23+00:00 1314235217 69 DTB binance BTC 2019-03-28 20:00:55+00:00 1314235217 72 BRX binance BTC 2019-04-04 20:00:02+00:00 1314235217 75 MET yobit BTC 2019-04-11 20:00:05+00:00 1314235217 110 VC coineal USDT 2019-06-25 20:00:20+00:00 1366515184 1 ADX binance BTC 2020-08-09 07:09:53+00:00 1247729038 64 GO binance BTC 2020-07-10 16:00:08+00:00 1247729038 66 OST binance BTC 2020-07-14 10:46:56+00:00 1247729038 67 SNT binance BTC 2020-07-22 16:00:46+00:00 1247729038 197 PIVX binance BTC 2021-04-30 16:00:37+00:00 1247729038 199 DLT binance BTC 2021-05-03 16:00:04+00:00 1247729038 215 DLT binance BTC 2021-05-30 16:00:13+00:00 1247729038 238 BTS binance USDT 2021-07-11 16:00:41+00:00 1247729038 240 ICX binance USDT 2021-07-13 16:00:14+00:00 1247729038 242 BTS binance BTC 2021-07-21 16:02:32+00:00 1247729038 244 BZRX binance BTC 2021-07-25 15:48:42+00:00 1247729038 256 CHR binance USDT 2021-08-16 17:40:25+00:00 1247729038 256 IOTX binance BTC 2021-08-17 04:59:27+00:00 1247729038 297 PIVX binance BTC 2021-10-24 16:00:28+00:00 1564934263 7 BZRX binance BTC 2021-07-25 15:47:58+00:00 1564934263 25 CHR binance USDT 2021-08-16 17:40:25+00:00 1564934263 71 PIVX binance BTC 2021-10-24 16:00:26+00:00 1271762340 1 ZEN binance BTC 2020-04-03 19:00:02+00:00 1271762340 3 BNT binance BTC 2020-04-06 18:00:03+00:00 1271762340 3 ARN binance BTC 2020-04-07 18:00:07+00:00 1271762340 5 EDO binance BTC 2020-04-10 18:00:10+00:00 1136271991 153 APPC binance BTC 2019-06-04 12:01:33+00:00 1136271991 155 REQ binance BTC 2019-06-08 13:00:02+00:00 1249251103 113 REQ yobit BTC 2019-08-04 17:00:13+00:00 1249251103 115 MANA yobit BTC 2019-08-09 17:00:05+00:00 1249251103 116 STORJ binance BTC 2019-08-10 20:00:00+00:00 1249251103 116 MANA yobit BTC 2019-08-11 17:00:02+00:00 1249251103 117 WPR yobit BTC 2019-08-12 17:00:03+00:00 1249251103 117 WPR yobit BTC 2019-08-12 17:00:15+00:00 1249251103 118 DLT yobit BTC 2019-08-15 17:00:07+00:00 1249251103 119 DLT yobit BTC 2019-08-16 17:00:05+00:00 1249251103 120 TFD yobit BTC 2019-08-17 17:00:03+00:00 1249251103 122 GVT yobit BTC 2019-08-24 17:00:03+00:00 1249251103 124 SNM yobit BTC 2019-09-04 17:00:03+00:00 1249251103 126 MTH yobit BTC 2019-09-06 17:00:04+00:00 1249251103 127 BNT binance BTC 2019-09-07 17:00:04+00:00 1249251103 130 LINK yobit BTC 2019-09-12 17:00:03+00:00 1249251103 132 QKC yobit BTC 2019-09-15 17:00:03+00:00 1249251103 135 MANA yobit BTC 2019-09-23 17:00:05+00:00 1249251103 136 BAT yobit BTC 2019-09-24 17:00:05+00:00 1249251103 138 GVT yobit BTC 2019-09-26 17:00:06+00:00 1249251103 140 FUN yobit BTC 2019-09-28 17:00:04+00:00 1249251103 141 MDA yobit BTC 2019-09-30 17:00:04+00:00 1249251103 142 SNT yobit BTC 2019-10-02 17:00:05+00:00 1249251103 143 SNT yobit BTC 2019-10-05 17:00:03+00:00 1249251103 146 BLZ yobit BTC 2019-10-12 17:00:04+00:00 1249251103 148 FUN yobit BTC 2019-10-22 17:00:03+00:00 1249251103 150 MDA yobit BTC 2019-10-24 17:00:03+00:00 1249251103 152 MDA yobit BTC 2019-11-12 17:00:03+00:00 1249251103 154 BNT yobit BTC 2019-11-15 17:01:46+00:00 1249251103 157 BNT yobit BTC 2019-12-13 17:00:02+00:00 1249251103 159 REN yobit BTC 2019-12-17 17:00:05+00:00 1249251103 167 BNT yobit BTC 2019-12-29 17:00:06+00:00 1249251103 169 VIB binance BTC 2020-01-12 20:00:27+00:00 1249251103 172 FUN yobit BTC 2020-01-15 17:00:05+00:00 1249251103 173 NAV binance BTC 2020-01-16 19:00:36+00:00 1249251103 175 BRD binance BTC 2020-01-20 16:00:46+00:00 1249251103 175 NXS binance BTC 2020-01-20 19:00:23+00:00 1249251103 179 NULS binance BTC 2020-01-30 17:01:33+00:00 1249251103 179 VRC bittrex BTC 2020-01-30 20:11:58+00:00 1249251103 180 RDN binance BTC 2020-02-01 13:00:43+00:00 1249251103 184 WPR binance BTC 2020-02-10 20:00:22+00:00 1249251103 185 WPR binance BTC 2020-02-11 18:53:36+00:00 1249251103 186 MORE bittrex BTC 2020-02-13 20:01:58+00:00 1249251103 187 CGEN CREX24 BTC 2020-02-16 10:12:58+00:00 1249251103 190 NAV binance BTC 2020-02-20 16:01:06+00:00 1249251103 192 DNT binance BTC 2020-02-27 16:00:29+00:00 1249251103 192 DNT binance BTC 2020-02-27 16:13:47+00:00 1249251103 195 NXS binance BTC 2020-03-03 16:00:18+00:00 1249251103 196 DNT binance BTC 2020-03-04 19:01:01+00:00 1249251103 198 SNGLS binance BTC 2020-03-08 19:00:09+00:00 1249251103 199 POA binance BTC 2020-03-12 19:00:36+00:00 1249251103 201 NEBL binance BTC 2020-03-15 20:00:27+00:00 1249251103 204 FUN yobit BTC 2020-03-28 17:00:12+00:00 1249251103 206 AOA yobit BTC 2020-04-01 17:00:04+00:00 1249251103 208 MTH yobit BTC 2020-04-04 17:00:38+00:00 1249251103 211 WPR yobit BTC 2020-04-10 17:00:02+00:00 1249251103 211 WPR yobit BTC 2020-04-10 17:00:08+00:00 1249251103 213 SNT yobit BTC 2020-04-14 17:00:06+00:00 1249251103 215 WPR yobit BTC 2020-04-19 17:00:04+00:00 1249251103 217 AOA yobit BTC 2020-04-22 17:00:41+00:00 1485049716 67 ONG binance BTC 2019-09-19 17:00:26+00:00 1485049716 83 EDO binance BTC 2019-10-18 16:31:11+00:00 1485049716 87 NEBL binance BTC 2019-10-27 15:57:01+00:00 1485049716 91 DGD binance BTC 2019-11-02 17:29:31+00:00 1485049716 94 BCD binance BTC 2019-11-11 17:00:11+00:00 1485049716 109 GRS binance BTC 2019-11-30 16:59:43+00:00 1485049716 123 BRD binance BTC 2019-12-23 16:29:45+00:00 1485049716 156 WPR binance BTC 2020-02-10 20:00:14+00:00 1485049716 178 RLC binance BTC 2020-03-27 15:57:42+00:00 1485049716 195 BNT binance BTC 2020-04-24 15:59:13+00:00 1485049716 212 ONG binance BTC 2020-05-26 16:00:41+00:00 1485049716 215 VIA binance BTC 2020-05-29 16:00:19+00:00 1485049716 217 CTXC binance BTC 2020-06-03 16:00:40+00:00 1485049716 220 VIA binance BTC 2020-06-10 15:59:50+00:00 1485049716 222 GXS binance BTC 2020-06-15 16:00:40+00:00 1485049716 224 QSP binance BTC 2020-06-29 16:00:30+00:00 1485049716 228 GVT binance BTC 2020-07-04 16:00:26+00:00 1485049716 233 CTXC binance BTC 2020-07-10 17:00:21+00:00 1485049716 234 ELF binance BTC 2020-07-24 17:00:24+00:00 1485049716 258 SYS binance BTC 2020-12-29 14:50:38+00:00 1485049716 261 ARDR binance BTC 2021-01-01 16:47:08+00:00 1485049716 277 GVT binance BTC 2021-02-07 14:00:04+00:00 1348881342 1 BNT binance BTC 2019-06-06 16:00:13+00:00 1348881342 2 PPT yobit BTC 2019-06-07 16:00:01+00:00 1348881342 3 WPR yobit BTC 2019-06-08 16:00:04+00:00 1348881342 4 NAS yobit BTC 2019-06-09 16:00:01+00:00 1348881342 5 SIG yobit BTC 2019-06-10 16:00:03+00:00 1348881342 6 AE yobit BTC 2019-06-11 16:00:02+00:00 1348881342 7 SDC yobit BTC 2019-06-12 16:00:02+00:00 1348881342 8 STORM yobit BTC 2019-06-13 16:00:03+00:00 1356364264 214 AMB binance BTC 2019-01-01 14:30:04+00:00 1356364264 238 VIA binance BTC 2019-02-03 15:04:02+00:00 1356364264 255 BRD binance BTC 2019-03-03 14:00:07+00:00 1356364264 279 SNM binance BTC 2019-04-04 13:29:14+00:00 1356364264 409 BNT binance BTC 2019-10-14 16:30:01+00:00 1356364264 413 EDO binance BTC 2019-10-18 16:32:32+00:00 1356364264 450 EVX binance BTC 2019-12-06 16:30:40+00:00 1356364264 550 ARK binance BTC 2020-06-02 16:00:26+00:00 1356364264 551 CTXC binance BTC 2020-06-03 16:00:37+00:00 1356364264 671 GVT binance BTC 2021-02-07 14:00:11+00:00 1396342994 93 WTC yobit BTC 2019-01-03 17:00:40+00:00 1396342994 163 SOUL kucoin BTC 2019-04-21 18:00:33+00:00 1219293084 41 GVT binance BTC 2020-04-15 15:57:03+00:00 1219293084 44 RLC binance BTC 2020-04-20 16:00:20+00:00 1219293084 46 BNT binance BTC 2020-04-24 15:59:47+00:00 1219293084 52 MDA binance BTC 2020-05-04 19:01:37+00:00 1219293084 55 VIA binance BTC 2020-05-29 16:00:22+00:00 1219293084 56 PPT binance BTC 2020-06-08 16:06:23+00:00 1219293084 59 APPC binance BTC 2020-11-18 18:00:23+00:00 1219293084 61 MDA binance BTC 2020-11-27 21:00:30+00:00 1219293084 69 RCN binance BTC 2021-01-07 21:00:11+00:00 1219293084 70 EVX binance BTC 2021-01-09 21:00:21+00:00 1219293084 72 ONG binance BTC 2021-01-11 16:00:28+00:00 1219293084 77 STEEM binance BTC 2021-01-18 17:00:39+00:00 1219293084 78 SNM binance BTC 2021-01-20 17:01:24+00:00 1219293084 82 DLT binance BTC 2021-01-27 19:00:43+00:00 1219293084 85 PNT binance BTC 2021-01-31 21:00:12+00:00 1219293084 86 SKY binance BTC 2021-02-03 21:00:14+00:00 1219293084 88 VIB binance BTC 2021-02-05 21:00:17+00:00 1219293084 91 MDA binance BTC 2021-02-10 21:00:14+00:00 1219293084 92 NEBL binance BTC 2021-02-13 21:00:17+00:00 1219293084 139 VIA binance BTC 2021-04-21 21:00:13+00:00 1219293084 157 WPR binance BTC 2021-05-09 17:00:02+00:00 1219293084 164 DLT binance BTC 2021-05-16 17:00:01+00:00 1219293084 172 NXS binance BTC 2021-05-26 17:00:10+00:00 1219293084 176 OAX binance BTC 2021-05-30 17:00:14+00:00 1219293084 181 MTH binance BTC 2021-06-06 17:00:02+00:00 1219293084 188 FIO binance BTC 2021-06-13 17:01:25+00:00 1219293084 194 WABI binance BTC 2021-06-20 17:00:15+00:00 1219293084 201 MTH binance BTC 2021-06-27 17:00:03+00:00 1219293084 224 DREP binance BTC 2021-07-25 17:00:13+00:00 1219293084 227 NXS binance BTC 2021-08-01 17:00:02+00:00 1219293084 247 NAS binance BTC 2021-08-22 17:00:24+00:00 1219293084 253 BRD binance BTC 2021-08-29 17:00:16+00:00 1219293084 256 VIB binance BTC 2021-09-05 17:00:16+00:00 1219293084 268 FXS binance BTC 2021-09-19 17:00:26+00:00 1219293084 281 EZ binance BTC 2021-10-03 17:00:15+00:00 1219293084 288 WNXM binance BTC 2021-10-10 17:00:30+00:00 1219293084 302 EVX binance BTC 2021-10-24 17:00:33+00:00 1219293084 309 EZ binance BTC 2021-10-31 17:00:22+00:00 1219293084 315 MTH binance BTC 2021-11-07 17:00:15+00:00 1219293084 322 NAS binance BTC 2021-11-14 15:00:17+00:00 1219293084 330 MDA binance BTC 2021-11-23 15:00:13+00:00 1219293084 334 PHB binance BTC 2021-11-28 17:00:29+00:00 1219293084 352 APPC binance BTC 2021-12-19 15:00:16+00:00 1219293084 360 OAS binance BTC 2021-12-28 15:00:13+00:00 1219293084 365 NEBL binance BTC 2022-01-02 17:01:23+00:00 1219293084 369 UNIC binance BTC 2022-01-08 17:00:24+00:00 1219293084 374 ORC binance BTC 2022-01-15 17:00:12+00:00 1393225015 103 OAX binance BTC 2020-06-28 16:00:19+00:00 1393225015 106 ADX binance BTC 2020-07-07 16:00:35+00:00 1393225015 108 NXS binance BTC 2020-07-21 16:00:40+00:00 1393225015 110 NXS binance BTC 2020-08-02 16:00:50+00:00 1393225015 315 SKY binance BTC 2021-10-05 15:02:08+00:00 1393225015 319 WABI binance BTC 2021-10-14 15:00:39+00:00 1393225015 340 SNM binance BTC 2021-12-07 16:00:12+00:00 1396461633 152 BTS binance BTC 2019-08-22 16:01:09+00:00 1396461633 158 ONG binance BTC 2019-09-19 17:00:28+00:00 1491351820 11 AZK Poocoin BTC 2021-12-29 16:57:19+00:00 1491351820 14 AXIAV3 hotbit USDT 2022-01-03 16:15:26+00:00 1491351820 14 ESC hotbit USDT 2022-01-06 16:00:23+00:00 1491351820 15 RNT hotbit USDT 2022-01-08 16:15:08+00:00 1474718622 304 FIO binance BTC 2021-02-04 17:00:16+00:00 1474718622 308 RDN binance BTC 2021-02-22 17:00:13+00:00 1474718622 310 BRD binance BTC 2021-02-24 17:00:11+00:00 1431128585 1 LUN binance BTC 2020-03-18 19:00:05+00:00 1431128585 8 APPC binance BTC 2020-03-27 21:00:00+00:00 1431128585 14 ARK binance BTC 2020-04-03 18:00:05+00:00 1431128585 14 ZEN binance BTC 2020-04-03 19:00:00+00:00 1431128585 16 BNT binance BTC 2020-04-06 18:00:02+00:00 1431128585 16 ARN binance BTC 2020-04-07 18:00:06+00:00 1431128585 18 EDO binance BTC 2020-04-10 18:00:09+00:00 1230368984 12 AST binance BTC 2019-03-02 14:00:10+00:00 1230368984 34 BLZ binance BTC 2019-06-24 18:30:00+00:00 1230368984 51 CDT binance BTC 2019-08-09 15:00:01+00:00 1230368984 164 ONG binance BTC 2020-05-26 16:00:06+00:00 1230368984 164 VIA binance BTC 2020-05-29 15:59:45+00:00 1230368984 166 CTXC binance BTC 2020-06-03 16:00:08+00:00 1230368984 166 VIA binance BTC 2020-06-10 15:59:17+00:00 1230368984 166 GXS binance BTC 2020-06-15 16:00:22+00:00 1093396548 211 NEBL binance BTC 2019-01-03 15:45:32+00:00 1093396548 218 BNT binance BTC 2019-01-13 13:45:43+00:00 1093396548 235 SUB binance BTC 2019-02-08 16:30:44+00:00 1093396548 254 EVX binance BTC 2019-02-28 18:00:14+00:00 1093396548 260 POLY binance BTC 2019-03-08 16:00:40+00:00 1093396548 272 POWR binance BTC 2019-03-27 16:00:14+00:00 1093396548 276 BQX binance BTC 2019-04-01 17:00:12+00:00 1093396548 290 BQX binance BTC 2019-04-22 17:29:51+00:00 1093396548 298 NAV binance BTC 2019-05-03 17:59:27+00:00 1093396548 334 BNT binance BTC 2019-06-18 16:00:12+00:00 1093396548 385 LRC binance BTC 2019-09-05 16:00:21+00:00 1093396548 520 STORJ binance BTC 2020-03-19 15:58:36+00:00 1093396548 523 BRD binance BTC 2020-03-24 16:00:05+00:00 1093396548 523 NXS binance BTC 2020-03-25 15:57:41+00:00 1093396548 523 RLC binance BTC 2020-03-27 15:57:40+00:00 1093396548 533 ELF binance BTC 2020-04-10 15:58:19+00:00 1093396548 541 RLC binance BTC 2020-04-20 16:00:03+00:00 1093396548 907 BRD binance BTC 2021-08-17 15:00:02+00:00 1093396548 910 NEBL binance BTC 2021-08-24 15:00:04+00:00 1093396548 918 VIB binance BTC 2021-09-05 17:00:07+00:00 1093396548 928 FXS binance BTC 2021-09-19 17:00:13+00:00 1093396548 939 NXS binance BTC 2021-10-03 16:47:52+00:00 1093396548 939 EZ binance BTC 2021-10-03 17:00:09+00:00 1093396548 944 WNXM binance BTC 2021-10-10 17:00:06+00:00 1093396548 946 WABI binance BTC 2021-10-14 15:00:08+00:00 1093396548 953 EVX binance BTC 2021-10-24 17:00:09+00:00 1093396548 958 EZ binance BTC 2021-10-31 17:00:06+00:00 1093396548 963 MTH binance BTC 2021-11-07 17:00:05+00:00 1115904838 334 QLC binance BTC 2019-08-19 16:00:11+00:00 1115904838 335 BTS binance BTC 2019-08-22 16:01:10+00:00 1129771868 118 VITE binance BTC 2020-04-13 11:59:07+00:00 1129771868 151 GVT binance BTC 2020-07-04 16:00:28+00:00 1129771868 153 NXS binance BTC 2020-07-21 16:00:42+00:00 1411081801 29 BRD binance BTC 2021-05-02 18:00:12+00:00 1411081801 33 EVX binance BTC 2021-05-22 17:00:10+00:00 1411081801 37 ACM binance BTC 2021-06-05 18:00:13+00:00 1365959417 14 NEBL binance BTC 2019-01-03 15:45:32+00:00 1365959417 25 GXS binance BTC 2019-01-20 18:00:03+00:00 1365959417 27 HC binance BTC 2019-01-25 18:00:35+00:00 1365959417 28 WINGS binance BTC 2019-01-27 18:00:21+00:00 1365959417 35 STORJ binance BTC 2019-02-04 16:30:49+00:00 1365959417 38 GXS binance BTC 2019-02-10 18:00:40+00:00 1365959417 42 EDO binance BTC 2019-02-16 18:00:26+00:00 1365959417 46 HC binance BTC 2019-02-23 17:00:35+00:00 1365959417 49 AST binance BTC 2019-03-02 14:00:36+00:00 1365959417 60 BLZ binance BTC 2019-03-15 15:29:44+00:00 1365959417 69 SNM binance BTC 2019-04-04 13:29:34+00:00 1365959417 70 NEBL binance BTC 2019-04-08 16:36:03+00:00 1365959417 79 RDN binance BTC 2019-04-24 17:00:24+00:00 1365959417 84 KNC binance BTC 2019-05-14 14:00:07+00:00 1365959417 85 WPR binance BTC 2019-05-15 15:00:17+00:00 1365959417 85 HC binance BTC 2019-05-16 16:59:13+00:00 1365959417 93 POA binance BTC 2019-05-26 21:36:37+00:00 1365959417 93 BLZ binance BTC 2019-05-27 17:00:15+00:00 1365959417 98 PIVX binance BTC 2019-06-02 16:00:11+00:00 1365959417 103 ARN binance BTC 2019-06-21 19:00:37+00:00 1365959417 104 BLZ binance BTC 2019-06-24 18:36:26+00:00 1365959417 105 KNC binance BTC 2019-06-25 17:00:39+00:00 1365959417 106 EVX binance BTC 2019-06-29 18:00:01+00:00 1365959417 112 ADX binance BTC 2019-07-05 17:00:29+00:00 1365959417 123 BLZ binance BTC 2019-07-28 17:00:13+00:00 1365959417 124 ARDR binance BTC 2019-08-04 17:29:21+00:00 1365959417 126 SNM binance BTC 2019-08-07 17:04:49+00:00 1365959417 128 STORJ binance BTC 2019-08-10 20:05:49+00:00 1365959417 130 CVC binance BTC 2019-08-14 02:36:03+00:00 1365959417 130 GVT binance BTC 2019-08-14 16:00:11+00:00 1365959417 131 DATA binance BTC 2019-08-15 20:00:24+00:00 1365959417 131 SNGLS binance BTC 2019-08-16 17:00:08+00:00 1365959417 132 POWR binance BTC 2019-08-24 17:02:02+00:00 1365959417 143 NXS binance BTC 2019-10-02 18:00:17+00:00 1365959417 148 ARK binance BTC 2019-10-18 16:30:19+00:00 1365959417 148 EDO binance BTC 2019-10-23 16:00:22+00:00 1365959417 153 BRD binance BTC 2019-12-23 16:30:11+00:00 1365959417 156 NAV binance BTC 2020-02-20 16:02:41+00:00 1365959417 156 DNT binance BTC 2020-02-27 16:00:45+00:00 1365959417 159 SNGLS binance BTC 2020-03-08 19:00:10+00:00 1365959417 159 NAV binance BTC 2020-03-09 20:00:01+00:00 1365959417 160 BRD binance BTC 2020-03-11 20:00:25+00:00 1365959417 162 NXS binance BTC 2020-03-12 17:00:00+00:00 1365959417 162 NEBL binance BTC 2020-03-15 20:00:12+00:00 1365959417 162 NAV binance BTC 2020-03-16 15:59:55+00:00 1365959417 163 RLC binance BTC 2020-03-17 17:00:02+00:00 1365959417 166 EVX binance BTC 2020-03-21 16:40:05+00:00 1365959417 167 NXS binance BTC 2020-03-25 16:00:13+00:00 1365959417 168 EDO binance BTC 2020-03-26 16:00:33+00:00 1365959417 169 RLC binance BTC 2020-03-27 15:58:38+00:00 1365959417 170 SNGLS binance BTC 2020-04-01 11:59:02+00:00 1365959417 171 ARK binance BTC 2020-04-03 18:00:07+00:00 1365959417 171 ZEN binance BTC 2020-04-03 19:00:02+00:00 1365959417 172 BNT binance BTC 2020-04-06 18:00:04+00:00 1365959417 172 ARN binance BTC 2020-04-07 18:00:06+00:00 1365959417 174 EDO binance BTC 2020-04-10 18:00:11+00:00 1365959417 177 MITH binance BTC 2020-04-14 16:00:26+00:00 1365959417 180 RDN binance BTC 2020-04-21 13:58:56+00:00 1365959417 188 PPT binance BTC 2020-05-03 17:30:01+00:00 1365959417 204 CTXC binance BTC 2020-06-03 16:07:15+00:00 1365959417 210 GVT binance BTC 2020-07-04 16:00:42+00:00 1365959417 212 NXS binance BTC 2020-07-21 16:00:29+00:00 1365959417 214 PPT binance BTC 2020-08-04 16:00:00+00:00 1365959417 218 QLC binance BTC 2020-09-06 16:00:50+00:00 1365959417 219 STPT binance BTC 2020-09-08 16:00:39+00:00 1365959417 228 RDN binance BTC 2020-10-17 16:09:20+00:00 1365959417 228 OAX binance BTC 2020-10-18 18:00:31+00:00 1486981201 102 GHD binance BTC 2021-07-06 15:00:01+00:00 1486981201 136 SNX binance BTC 2021-08-24 12:30:03+00:00 1486981201 136 GRT binance BTC 2021-08-26 09:00:02+00:00 1486981201 136 DGB binance BTC 2021-08-28 10:10:01+00:00 1342400398 113 BNT binance BTC 2019-01-06 21:01:30+00:00 1342400398 113 EVX binance BTC 2019-01-08 16:03:02+00:00 1342400398 121 HC binance BTC 2019-01-25 18:00:45+00:00 1342400398 121 BNT binance BTC 2019-01-26 16:29:55+00:00 1342400398 122 WINGS binance BTC 2019-01-27 18:00:05+00:00 1342400398 123 BQX binance BTC 2019-01-29 14:00:23+00:00 1342400398 124 GRS binance BTC 2019-02-02 18:00:06+00:00 1342400398 124 STORJ binance BTC 2019-02-04 16:30:25+00:00 1342400398 126 GXS binance BTC 2019-02-10 18:00:53+00:00 1342400398 126 EDO binance BTC 2019-02-16 18:01:40+00:00 1342400398 127 HC binance BTC 2019-02-23 17:00:01+00:00 1342400398 129 AST binance BTC 2019-03-02 16:37:58+00:00 1342400398 129 GRS binance BTC 2019-03-05 16:31:53+00:00 1342400398 129 BNT binance BTC 2019-03-08 18:04:15+00:00 1342400398 129 BLZ binance BTC 2019-03-15 15:30:05+00:00 1342400398 129 BNT binance BTC 2019-03-17 14:01:45+00:00 1342400398 129 ONT binance BTC 2019-03-21 03:25:07+00:00 1409557641 35 STMX binance USDT 2021-06-14 13:00:16+00:00 1409557641 37 BLZ binance USDT 2021-06-16 11:30:11+00:00 1409557641 38 NKN binance USDT 2021-06-17 12:00:06+00:00 1409557641 42 INJ binance USDT 2021-06-21 11:00:11+00:00 1409557641 53 NKN binance USDT 2021-07-05 13:00:14+00:00 1409557641 70 AKRO binance USDT 2021-07-30 11:01:21+00:00 1236950740 12 CND binance BTC 2021-06-06 17:00:30+00:00 1236950740 28 UFO hotbit USDT 2021-07-09 16:30:04+00:00 1236950740 28 CWV hotbit USDT 2021-07-12 16:30:09+00:00 1236950740 28 QOB hotbit USDT 2021-07-13 14:30:08+00:00 1144292688 64 CURE bittrex BTC 2019-03-19 20:01:23+00:00 1144292688 69 DTB binance BTC 2019-03-28 20:00:56+00:00 1144292688 72 BRX binance BTC 2019-04-04 20:00:02+00:00 1144292688 75 MET yobit BTC 2019-04-11 20:00:05+00:00 1144292688 110 VC coineal.com USDT 2019-06-25 23:50:14+00:00 1188252748 4 NAV binance BTC 2019-08-01 20:00:10+00:00 1188252748 9 CVC binance BTC 2019-08-13 20:00:03+00:00 1188252748 16 SNT binance BTC 2019-08-22 20:00:03+00:00 1188252748 21 BNT binance BTC 2019-09-09 20:00:04+00:00 1188252748 26 RDN binance BTC 2019-10-15 20:00:02+00:00 1188252748 30 OST binance BTC 2019-10-22 18:00:21+00:00 1188252748 32 NEBL binance BTC 2019-10-25 18:00:18+00:00 1188252748 55 MORE bittrex BTC 2019-11-27 20:00:03+00:00 1188252748 62 CURE bittrex BTC 2019-12-12 20:00:03+00:00 1188252748 109 NEBL binance BTC 2020-03-16 00:13:28+00:00 1188252748 111 BNT binance BTC 2020-03-17 15:55:10+00:00 1188252748 113 NEBL binance BTC 2020-03-20 16:00:00+00:00 1188252748 117 APPC binance BTC 2020-03-27 21:00:00+00:00 1188252748 123 ARK binance BTC 2020-04-03 18:00:06+00:00 1188252748 123 ZEN binance BTC 2020-04-03 19:00:01+00:00 1188252748 124 BNT binance BTC 2020-04-06 18:00:03+00:00 1188252748 125 ARN binance BTC 2020-04-07 18:00:06+00:00 1188252748 126 EDO binance BTC 2020-04-10 23:45:00+00:00 1297023884 9 NEBL binance BTC 2020-12-02 18:01:01+00:00 1297023884 19 STPT binance BTC 2021-01-10 18:00:25+00:00 1297023884 35 GVT binance BTC 2021-03-27 20:00:25+00:00 1417499112 1 HC binance BTC 2019-05-12 17:01:36+00:00 1417499112 122 VIA binance BTC 2021-04-11 17:01:16+00:00 1417499112 129 IDEX binance BTC 2021-04-25 17:01:52+00:00 1417499112 134 DLT binance BTC 2021-05-16 17:00:40+00:00 1417499112 137 GSY yobit ETH 2021-05-21 18:59:07+00:00 1417499112 141 OAX binance BTC 2021-05-30 17:00:32+00:00 1417499112 144 CND binance BTC 2021-06-06 17:00:48+00:00 1417499112 150 WABI binance BTC 2021-06-20 17:00:41+00:00 1417499112 157 POA binance BTC 2021-07-11 17:00:55+00:00 1178742148 246 BQX binance BTC 2019-02-24 17:00:21+00:00 1178742148 248 SYS binance BTC 2019-02-27 17:00:09+00:00 1178742148 283 BRD binance BTC 2019-05-25 16:00:14+00:00 1333146208 5 ARK binance BTC 2020-04-03 18:00:05+00:00 1333146208 5 ZEN binance BTC 2020-04-03 19:00:00+00:00 1333146208 7 BNT binance BTC 2020-04-06 18:00:02+00:00 1333146208 7 ARN binance BTC 2020-04-07 18:00:06+00:00 1333146208 9 EDO binance BTC 2020-04-10 18:00:09+00:00 1313461639 1 SKY binance BTC 2021-02-03 21:00:16+00:00 1313461639 3 VIB binance BTC 2021-02-05 21:00:10+00:00 1313461639 7 MDA binance BTC 2021-02-10 21:00:13+00:00 1141221379 238 BLZ binance BTC 2019-05-13 14:58:08+00:00 1141221379 238 RDN binance BTC 2019-05-15 14:59:57+00:00 1141221379 246 CND binance BTC 2019-06-03 16:00:03+00:00 1141221379 249 EDO binance BTC 2019-06-11 16:00:07+00:00 1141221379 251 APPC binance BTC 2019-06-17 16:00:06+00:00 1141221379 253 INS binance BTC 2019-06-25 16:00:04+00:00 1141221379 256 EDO binance BTC 2019-06-30 17:29:38+00:00 1141221379 257 INS binance BTC 2019-07-02 16:30:05+00:00 1141221379 257 WPR binance BTC 2019-07-04 15:00:01+00:00 1141221379 257 CND binance BTC 2019-07-05 12:30:02+00:00 1141221379 258 POE binance BTC 2019-07-11 15:59:03+00:00 1141221379 328 BNT binance BTC 2019-10-14 16:29:53+00:00 1141221379 331 EDO binance BTC 2019-10-18 16:31:03+00:00 1141221379 341 DGD binance BTC 2019-11-02 17:29:43+00:00 1141221379 466 ONG binance BTC 2020-05-26 16:00:45+00:00 1141221379 466 VIA binance BTC 2020-05-29 16:00:14+00:00 1320553215 179 EVX binance BTC 2019-01-08 16:00:00+00:00 1320553215 243 RDN binance BTC 2019-05-10 16:00:00+00:00 1320553215 245 CDT binance BTC 2019-05-13 15:00:00+00:00 1320553215 257 PPT binance BTC 2019-05-31 14:59:35+00:00 1320553215 265 BRD binance BTC 2019-06-17 14:59:25+00:00 1320553215 286 RDN binance BTC 2019-07-29 15:00:02+00:00 1320553215 318 ARK binance BTC 2019-09-12 14:59:53+00:00 1320553215 330 BRD binance BTC 2019-10-03 14:59:45+00:00 1299457190 230 ONG binance BTC 2019-09-19 17:00:24+00:00 1299457190 307 STORJ binance BTC 2020-03-19 16:01:01+00:00 1299457190 310 BRD binance BTC 2020-03-24 16:00:31+00:00 1299457190 313 RLC binance BTC 2020-03-27 15:57:22+00:00 1299457190 343 VIA binance BTC 2020-05-29 16:00:18+00:00 1299457190 346 CTXC binance BTC 2020-06-03 16:00:15+00:00 1299457190 372 STPT binance BTC 2020-09-08 16:00:29+00:00 1299457190 392 STEEM binance BTC 2021-01-18 17:00:30+00:00 1354503053 249 QLC binance BTC 2019-08-19 16:00:10+00:00 1354503053 251 BTS binance BTC 2019-08-22 16:01:09+00:00 1354503053 271 ONG binance BTC 2019-09-19 17:00:28+00:00 1214538537 131 MTH yobit BTC 2019-01-14 17:01:18+00:00 1214538537 133 REN yobit BTC 2019-01-17 17:02:31+00:00 1214538537 134 VIA yobit BTC 2019-01-20 17:06:01+00:00 1214538537 135 TNT yobit BTC 2019-01-23 19:00:35+00:00 1214538537 136 WTC yobit BTC 2019-01-25 17:01:11+00:00 1214538537 137 REN yobit BTC 2019-01-26 19:00:30+00:00 1214538537 138 TNT yobit BTC 2019-02-06 19:00:34+00:00 1214538537 139 THETA yobit BTC 2019-02-07 17:01:13+00:00 1214538537 141 DADI yobit BTC 2019-02-15 17:02:20+00:00 1214538537 141 AOA yobit BTC 2019-02-16 17:00:21+00:00 1214538537 141 UKG yobit BTC 2019-02-17 17:02:55+00:00 1214538537 143 BLZ yobit BTC 2019-02-19 17:00:47+00:00 1214538537 143 CRPT yobit BTC 2019-02-20 17:00:24+00:00 1214538537 143 STORJ yobit BTC 2019-02-21 17:01:13+00:00 1214538537 144 UKG yobit BTC 2019-02-23 17:00:00+00:00 1214538537 144 BQX binance BTC 2019-02-24 17:01:47+00:00 1214538537 144 STORJ yobit BTC 2019-02-25 17:01:02+00:00 1214538537 146 SYS binance BTC 2019-02-27 17:00:51+00:00 1214538537 148 CRPT yobit BTC 2019-03-01 17:01:01+00:00 1214538537 177 HC binance BTC 2019-05-12 17:00:27+00:00 1279502182 80 QSP binance BTC 2020-06-13 16:02:11+00:00 1279502182 84 EVX binance BTC 2020-06-24 16:01:31+00:00 1279502182 89 GVT binance BTC 2020-07-04 17:09:17+00:00 1279502182 92 ADX binance BTC 2020-07-07 16:01:31+00:00 1237041098 211 HC binance BTC 2019-01-25 18:00:13+00:00 1237041098 213 WINGS binance BTC 2019-01-27 18:00:09+00:00 1237041098 215 GRS binance BTC 2019-02-02 18:00:15+00:00 1237041098 217 STORJ binance BTC 2019-02-04 16:30:25+00:00 1299055913 139 REQ binance BTC 2019-06-08 13:00:02+00:00 1167785945 25 CTXC binance BTC 2020-06-03 16:04:31+00:00 1167785945 27 VIA binance BTC 2020-06-10 16:00:13+00:00 1167785945 37 ADX binance BTC 2020-07-07 16:01:39+00:00 1196424883 201 DOX yobit BTC 2019-02-13 19:30:00+00:00 1196424883 202 PIE yobit BTC 2019-02-15 19:30:00+00:00 1475300028 122 SNM binance BTC 2021-01-08 21:00:18+00:00 1475300028 124 NAS binance BTC 2021-01-14 21:00:15+00:00 1475300028 133 APPC binance BTC 2021-01-31 17:00:19+00:00 1475300028 133 PNT binance BTC 2021-01-31 21:00:22+00:00 1475300028 136 VIB binance BTC 2021-02-05 21:00:12+00:00 1475300028 136 BRD binance BTC 2021-02-06 18:03:07+00:00 1475300028 140 MDA binance BTC 2021-02-10 21:00:24+00:00 1475300028 141 NEBL binance BTC 2021-02-13 21:00:13+00:00 1475300028 147 GVT binance BTC 2021-02-20 17:00:12+00:00 1475300028 148 NXS binance BTC 2021-02-21 17:00:11+00:00 1475300028 157 PPT binance BTC 2021-03-07 17:00:37+00:00 1475300028 183 VIA binance BTC 2021-04-11 17:00:18+00:00 1475300028 190 VIA binance BTC 2021-04-21 21:00:12+00:00 1475300028 192 RDN binance BTC 2021-04-24 21:00:12+00:00 1475300028 192 IDEX binance BTC 2021-04-25 17:00:19+00:00 1475300028 196 DLT binance BTC 2021-05-01 17:01:26+00:00 1475300028 215 OAX binance BTC 2021-05-30 17:00:13+00:00 1475300028 218 CND binance BTC 2021-06-06 17:00:27+00:00 1475300028 249 DREP binance BTC 2021-07-25 17:00:20+00:00 1475300028 261 NAX binance BTC 2021-08-22 17:00:30+00:00 1475300028 264 BRD binance BTC 2021-08-29 17:00:36+00:00 1475300028 268 VIB binance BTC 2021-09-05 17:00:24+00:00 1475300028 275 FXS binance BTC 2021-09-19 17:00:26+00:00 1475300028 295 EVX hotbit BTC 2021-10-24 17:00:30+00:00 1475300028 295 NAS binance BTC 2021-11-14 15:00:27+00:00 1475300028 310 SNM binance BTC 2021-12-07 16:00:22+00:00 1475300028 318 NEBL binance BTC 2022-01-02 17:00:26+00:00 1342151942 262 ADX binance BTC 2019-07-05 17:00:48+00:00 1342151942 271 BLZ binance BTC 2019-07-28 16:59:59+00:00 1342151942 276 SNM binance BTC 2019-08-07 16:59:50+00:00 1342151942 279 DATA binance BTC 2019-08-15 20:08:20+00:00 1342151942 284 VIB binance BTC 2019-08-21 18:00:47+00:00 1342151942 294 DATA binance BTC 2019-09-08 18:00:08+00:00 1342151942 297 RLC binance BTC 2019-09-11 19:00:03+00:00 1342151942 318 RDN binance BTC 2019-10-15 20:00:04+00:00 1342151942 342 LRC binance BTC 2019-11-16 05:01:23+00:00 1342151942 342 NAV binance BTC 2020-01-16 19:00:06+00:00 1342151942 344 SNGLS binance BTC 2020-03-08 18:59:47+00:00 1342151942 350 CTXC binance BTC 2020-06-03 16:00:23+00:00 1420299757 17 DLT binance BTC 2021-05-01 17:00:08+00:00 1462243546 185 CTXC binance BTC 2020-06-03 16:00:28+00:00 1462243546 188 VIA binance BTC 2020-06-10 15:59:48+00:00 1462243546 190 QSP binance BTC 2020-06-13 16:01:28+00:00 1462243546 196 EVX binance BTC 2020-06-24 16:01:22+00:00 1462243546 200 GVT binance BTC 2020-07-04 16:01:21+00:00 1462243546 203 ADX binance BTC 2020-07-07 16:01:12+00:00 1254489313 16 NAV binance BTC 2020-04-15 14:45:42+00:00 1254489313 21 RDN binance BTC 2020-04-21 13:58:58+00:00 1254489313 22 SNM binance BTC 2020-04-26 03:16:10+00:00 1254489313 24 VIBE binance BTC 2020-04-28 16:02:13+00:00 1254489313 41 RLC binance BTC 2020-05-23 15:47:28+00:00 1254489313 68 TCT binance BTC 2020-07-02 15:56:36+00:00 1254489313 72 GO binance BTC 2020-07-10 16:00:07+00:00 1254489313 75 OST binance BTC 2020-07-14 10:46:56+00:00 1254489313 79 SNT binance BTC 2020-07-22 16:00:46+00:00 1254489313 198 EVX binance BTC 2021-01-30 16:00:02+00:00 1254489313 201 ARDR binance BTC 2021-02-09 16:00:11+00:00 1254489313 203 ADX binance BTC 2021-02-13 16:02:32+00:00 1254489313 224 VIA binance BTC 2021-03-13 16:59:54+00:00 1254489313 232 LRC binance BTC 2021-03-28 16:00:04+00:00 1254489313 234 CTXC binance BTC 2021-04-04 16:00:52+00:00 1254489313 251 PIVX binance BTC 2021-04-30 15:59:36+00:00 1254489313 252 DLT binance BTC 2021-05-03 16:00:03+00:00 1254489313 295 BTS binance USDT 2021-07-11 16:00:41+00:00 1254489313 301 BZRX binance BTC 2021-07-25 15:48:08+00:00 1254489313 354 PIVX binance BTC 2021-10-24 16:00:27+00:00 1353568791 2 NEBL binance BTC 2020-03-15 20:00:14+00:00 1353568791 3 BNT binance BTC 2020-03-17 15:55:13+00:00 1353568791 10 APPC binance BTC 2020-03-27 21:00:00+00:00 1353568791 14 ARK binance BTC 2020-04-03 18:00:05+00:00 1189524886 5 NEBL binance BTC 2019-10-20 18:00:01+00:00 1425729575 10 IDEX binance BTC 2021-04-25 17:01:21+00:00 1425729575 12 DLT binance BTC 2021-05-01 17:00:08+00:00 1425729575 17 WPR binance BTC 2021-05-09 17:00:11+00:00 1425729575 20 DLT binance BTC 2021-05-16 17:00:02+00:00 1425729575 30 OAX binance BTC 2021-05-30 17:00:03+00:00 1425729575 32 CND binance BTC 2021-06-06 17:00:08+00:00 1425729575 39 WABI binance BTC 2021-06-20 17:00:05+00:00 1425729575 44 MTH binance BTC 2021-06-27 17:00:04+00:00 1345038659 2 SYS binance BTC 2020-07-16 16:58:18+00:00 1345038659 5 NXS binance BTC 2020-07-21 15:55:53+00:00 1345038659 10 PPT binance BTC 2020-08-04 17:53:23+00:00 1345038659 18 QLC binance BTC 2020-09-06 16:00:45+00:00 1345038659 19 STPT binance BTC 2020-09-08 16:00:29+00:00 1345038659 21 QSP binance BTC 2020-09-10 17:55:40+00:00 1345038659 24 GVT binance BTC 2020-09-17 18:02:18+00:00 1345038659 29 OAX binance BTC 2020-10-18 18:00:18+00:00 1345038659 35 ARDR binance BTC 2020-11-02 15:56:10+00:00 1345038659 37 APPC binance BTC 2020-11-04 17:00:32+00:00 1345038659 41 BRD binance BTC 2020-11-09 16:00:51+00:00 1345038659 44 BCPT binance BTC 2020-11-14 17:34:32+00:00 1345038659 49 MDA binance BTC 2020-11-27 21:00:30+00:00 1345038659 52 NEBL binance BTC 2020-12-02 18:00:25+00:00 1345038659 54 PNT binance BTC 2020-12-04 23:02:03+00:00 1345038659 58 PIVX binance BTC 2020-12-11 18:05:33+00:00 1345038659 59 MDA binance BTC 2021-01-03 17:00:19+00:00 1345038659 61 CTXC binance BTC 2021-01-07 15:59:59+00:00 1345038659 61 RCN binance BTC 2021-01-07 21:00:30+00:00 1345038659 62 VIB binance BTC 2021-01-08 17:00:33+00:00 1345038659 68 NXS binance BTC 2021-01-15 17:00:55+00:00 1345038659 70 IDEX binance BTC 2021-01-17 17:00:55+00:00 1345038659 73 GVT binance BTC 2021-01-23 21:00:46+00:00 1345038659 76 PNT binance BTC 2021-01-31 21:00:20+00:00 1345038659 79 SKY binance BTC 2021-02-03 21:00:20+00:00 1211795583 2 QSP binance BTC 2019-08-29 18:00:54+00:00 1211795583 4 BNT binance BTC 2019-09-09 20:02:08+00:00 1211795583 8 BLZ binance BTC 2019-09-17 16:00:01+00:00 1211795583 9 POA binance BTC 2019-09-18 13:01:24+00:00 1211795583 13 EDO binance BTC 2019-09-25 16:00:17+00:00 1211795583 13 BLZ binance BTC 2019-09-26 16:00:00+00:00 1211795583 14 NXS binance BTC 2019-10-02 18:00:33+00:00 1211795583 18 OST binance BTC 2019-10-22 18:00:46+00:00 1211795583 19 ONG binance BTC 2019-10-29 18:00:23+00:00 1211795583 21 NEBL binance BTC 2019-11-05 16:00:30+00:00 1211795583 22 BCD binance BTC 2019-11-11 17:01:33+00:00 1211795583 24 EDO binance BTC 2019-11-21 18:00:20+00:00 1211795583 34 NAV binance BTC 2019-12-19 17:00:23+00:00 1211795583 41 EDO binance BTC 2020-01-08 17:00:43+00:00 1211795583 42 ONG binance BTC 2020-01-09 17:00:19+00:00 1211795583 43 GNT binance BTC 2020-01-10 18:00:16+00:00 1211795583 55 NULS binance BTC 2020-01-30 17:00:27+00:00 1211795583 72 SYS binance BTC 2020-02-26 18:00:20+00:00 1211795583 79 QLC binance BTC 2020-03-12 16:00:39+00:00 1211795583 79 TCT binance BTC 2020-03-13 16:00:15+00:00 1211795583 85 OAX binance BTC 2020-03-24 15:58:59+00:00 1211795583 87 EDO binance BTC 2020-03-26 16:00:04+00:00 1211795583 92 GRS binance BTC 2020-04-02 16:00:19+00:00 1211795583 99 GNT binance BTC 2020-04-10 16:00:29+00:00 1211795583 103 MITH binance BTC 2020-04-14 16:02:26+00:00 1211795583 104 GVT binance BTC 2020-04-15 15:57:07+00:00 1211795583 111 BNT binance BTC 2020-04-24 15:59:36+00:00 1211795583 118 CVC binance BTC 2020-05-05 16:00:30+00:00 1211795583 121 AST binance BTC 2020-05-09 16:00:34+00:00 1211795583 125 YOYO binance BTC 2020-05-14 16:00:21+00:00 1211795583 133 VIA binance BTC 2020-05-29 16:00:13+00:00 1211795583 137 CTXC binance BTC 2020-06-03 16:00:38+00:00 1211795583 138 PPT binance BTC 2020-06-08 16:06:20+00:00 1211795583 139 VIA binance BTC 2020-06-10 15:59:50+00:00 1211795583 141 QSP binance BTC 2020-06-13 16:00:46+00:00 1211795583 142 GXS binance BTC 2020-06-15 16:00:45+00:00 1211795583 147 EVX binance BTC 2020-06-24 16:00:35+00:00 1211795583 159 ELF binance BTC 2020-07-24 17:00:45+00:00 1211795583 166 PPT binance BTC 2020-08-04 18:00:50+00:00 1211795583 182 CDT binance BTC 2020-09-16 16:00:25+00:00 1211795583 183 GVT binance BTC 2020-09-17 18:00:37+00:00 1451771374 17 RDN binance BTC 2020-04-21 13:58:58+00:00 1451771374 60 GO binance BTC 2020-07-10 16:00:07+00:00 1451771374 61 OST binance BTC 2020-07-14 10:46:55+00:00 1451771374 62 SNT binance BTC 2020-07-22 16:00:46+00:00 1451771374 167 EVX binance BTC 2021-01-30 16:00:02+00:00 1451771374 173 ARDR binance BTC 2021-02-09 16:00:12+00:00 1222005393 11 NULS binance BTC 2021-04-11 16:30:49+00:00 1292278703 248 BQX binance BTC 2019-04-22 17:29:52+00:00 1292278703 277 STORJ binance BTC 2019-08-10 20:00:11+00:00 1292278703 291 GO binance BTC 2019-09-07 08:35:29+00:00 1251058940 125 CTXC binance BTC 2020-06-03 16:09:18+00:00 1251058940 131 VIA binance BTC 2020-06-10 16:00:38+00:00 1251058940 134 QSP binance BTC 2020-06-13 16:01:01+00:00 1251058940 140 EVX binance BTC 2020-06-24 16:02:26+00:00 1251058940 147 GVT binance BTC 2020-07-04 16:02:09+00:00 1251058940 149 ADX binance BTC 2020-07-07 16:02:06+00:00 1251058940 422 WNXM binance BTC 2021-10-10 17:01:10+00:00 1251058940 435 EVX binance BTC 2021-10-24 17:00:43+00:00 1251058940 438 EZ binance BTC 2021-10-31 17:00:44+00:00 1251058940 444 MTH binance BTC 2021-11-07 17:00:27+00:00 1251058940 447 NAS binance BTC 2021-11-14 15:00:24+00:00 1251058940 450 MDA binance BTC 2021-11-23 15:00:24+00:00 1251058940 452 PHB binance BTC 2021-11-28 17:00:27+00:00 1251058940 465 APPC binance BTC 2021-12-19 15:00:23+00:00 1251058940 470 OAX binance BTC 2021-12-28 15:00:42+00:00 1251058940 474 NEBL binance BTC 2022-01-02 17:02:09+00:00 1251058940 477 UNIC kucoin USDT 2022-01-08 17:00:51+00:00 1251058940 480 ORC kucoin USDT 2022-01-15 17:00:29+00:00 1121631209 286 REQ yobit BTC 2019-08-04 17:00:02+00:00 1121631209 288 MANA yobit BTC 2019-08-09 17:00:05+00:00 1207973768 121 DLT binance BTC 2021-05-16 17:00:40+00:00 1207973768 125 GSY yobit ETH 2021-05-21 18:59:06+00:00 1207973768 129 OAX binance BTC 2021-05-30 17:00:32+00:00 1207973768 132 CND binance BTC 2021-06-06 17:24:23+00:00 1207973768 138 WABI binance BTC 2021-06-20 17:00:41+00:00 1207973768 145 POA binance BTC 2021-07-11 17:00:55+00:00 1243320279 2 GVT binance BTC 2020-08-10 01:51:26+00:00 1243320279 2 ADX binance BTC 2020-08-10 01:58:54+00:00 1122577430 247 SUB binance BTC 2019-02-08 16:30:43+00:00 1122577430 288 ETHOS binance BTC 2019-04-01 17:00:13+00:00 1122577430 301 BQX binance BTC 2019-04-22 17:29:51+00:00 1122577430 343 BNT binance BTC 2019-06-18 16:00:12+00:00 1122577430 502 LRC binance BTC 2019-09-05 16:00:21+00:00 1122577430 531 ELF binance BTC 2020-04-10 15:58:19+00:00 1122577430 538 RLC binance BTC 2020-04-20 16:00:03+00:00 1122577430 913 NEBL binance BTC 2021-08-24 15:00:04+00:00 1122577430 921 VIB binance BTC 2021-09-05 17:00:07+00:00 1296614021 3 NEBL binance BTC 2019-10-25 18:00:18+00:00 1296614021 20 MORE bittrex BTC 2019-11-27 20:00:03+00:00 1296614021 27 APPC binance BTC 2020-03-27 21:00:00+00:00 1296614021 32 ARK binance BTC 2020-04-03 18:00:06+00:00 1296614021 32 ZEN binance BTC 2020-04-03 19:00:01+00:00 1296614021 33 BNT binance BTC 2020-04-06 18:00:03+00:00 1296614021 34 ARN binance BTC 2020-04-07 18:00:06+00:00 1199320434 9 WTC yobit BTC 2019-01-03 17:00:24+00:00 1199320434 11 KMD cryptopia BTC 2019-01-05 17:00:09+00:00 1199320434 13 OK yobit BTC 2019-01-12 17:00:35+00:00 1199320434 14 THETA yobit BTC 2019-01-13 17:01:38+00:00 1199320434 15 MTH yobit BTC 2019-01-14 17:00:59+00:00 1199320434 17 REN yobit BTC 2019-01-17 17:00:26+00:00 1199320434 18 VIA yobit BTC 2019-01-20 17:00:46+00:00 1199320434 19 TNT yobit BTC 2019-01-23 19:00:40+00:00 1199320434 20 WTC yobit BTC 2019-01-25 17:00:42+00:00 1199320434 21 REN yobit BTC 2019-01-26 19:00:18+00:00 1199320434 22 TNT yobit BTC 2019-02-06 19:00:17+00:00 1199320434 23 THETA yobit BTC 2019-02-07 17:00:23+00:00 1199320434 25 DADI yobit BTC 2019-02-15 17:01:51+00:00 1199320434 25 AOA yobit BTC 2019-02-16 17:00:20+00:00 1199320434 25 UKG yobit BTC 2019-02-17 17:00:10+00:00 1199320434 26 WTC yobit BTC 2019-02-18 17:00:20+00:00 1199320434 26 BLZ yobit BTC 2019-02-19 17:00:40+00:00 1199320434 26 CRPT yobit BTC 2019-02-20 17:01:25+00:00 1199320434 26 STORJ yobit BTC 2019-02-21 17:00:20+00:00 1199320434 27 UKG yobit BTC 2019-02-23 17:00:33+00:00 1249499797 18 IDEX binance BTC 2021-04-25 17:00:10+00:00 1249499797 34 OAX binance BTC 2021-05-30 17:00:02+00:00 1249499797 46 WABI binance BTC 2021-06-20 17:01:31+00:00 1249499797 65 POA binance BTC 2021-07-11 17:00:02+00:00 1249499797 77 DREP binance BTC 2021-07-25 17:00:01+00:00 1327820978 285 AMA BITMART USDT 2021-07-05 16:00:59+00:00 1327820978 356 BRD binance BTC 2021-10-31 15:00:03+00:00 1327820978 367 MDA binance BTC 2021-11-23 15:00:39+00:00 1380347776 1 SHRF binance BTC 2021-07-10 11:30:16+00:00 1380347776 1 MCT binance BTC 2021-07-11 11:30:06+00:00 1380347776 2 BBEL binance BTC 2021-07-14 11:30:16+00:00 1380347776 9 RYTK binance BTC 2021-07-25 14:00:16+00:00 1380347776 9 CRUMB binance BTC 2021-07-26 12:00:09+00:00 1380347776 10 HONOR binance BTC 2021-07-27 12:00:12+00:00 1380347776 11 CREA binance BTC 2021-07-28 12:00:09+00:00 1380347776 14 GUA binance BTC 2021-08-03 12:00:06+00:00 1380347776 16 CRACK binance BTC 2021-08-07 12:00:24+00:00 1380347776 17 GTEA binance BTC 2021-08-09 12:00:14+00:00 1380347776 18 HGR binance BTC 2021-08-12 12:00:17+00:00 1380347776 20 ORB binance BTC 2021-08-16 12:00:30+00:00 1174077730 209 SUB binance BTC 2019-02-08 16:30:43+00:00 1174077730 232 POLY binance BTC 2019-03-08 16:00:41+00:00 1174077730 244 POWR binance BTC 2019-03-27 16:00:15+00:00 1234654233 0 PIVX binance BTC 2019-07-06 13:30:04+00:00 1234654233 19 RCN binance BTC 2019-08-10 16:00:49+00:00 1234654233 23 VIA binance BTC 2019-08-16 16:00:54+00:00 1234654233 23 ONG binance BTC 2019-08-19 16:00:02+00:00 1234654233 31 LRC binance BTC 2019-09-05 16:00:20+00:00 1234654233 86 BRD binance BTC 2020-03-15 13:02:06+00:00 1234654233 86 NEBL binance BTC 2020-03-15 20:00:13+00:00 1234654233 90 NEBL binance BTC 2020-03-20 15:59:59+00:00 1234654233 93 NEBL binance BTC 2020-03-22 16:00:02+00:00 1234654233 101 LUN binance BTC 2020-04-17 13:57:22+00:00 1234654233 105 RDN binance BTC 2020-04-21 13:58:56+00:00 1246270015 137 GAM bittrex BTC 2019-02-12 20:00:04+00:00 1246270015 142 GBG bittrex BTC 2019-02-21 20:00:04+00:00 1288625943 175 SCL yobit BTC 2019-02-04 20:00:05+00:00 1288625943 179 LEND yobit BTC 2019-02-14 20:00:44+00:00 1288625943 184 SNT coinexchange BTC 2019-02-27 19:00:03+00:00 1288625943 184 BLZ yobit BTC 2019-02-27 20:00:02+00:00 1288625943 187 LEND yobit BTC 2019-03-08 19:00:11+00:00 1288625943 190 SWM yobit BTC 2019-03-13 19:00:04+00:00 1288625943 193 VERI yobit BTC 2019-03-17 19:00:09+00:00 1288625943 196 CTXC yobit BTC 2019-03-22 19:30:19+00:00 1288625943 200 VERI yobit BTC 2019-04-03 19:00:12+00:00 1288625943 204 C20 yobit BTC 2019-04-14 20:00:04+00:00 1288625943 207 FTM yobit BTC 2019-04-18 19:00:06+00:00 1288625943 210 TFD yobit BTC 2019-05-05 19:00:07+00:00 1288625943 220 GVT yobit BTC 2019-09-02 18:00:12+00:00 1288625943 223 QKC yobit BTC 2019-09-11 18:00:05+00:00 1288625943 229 PPT yobit BTC 2019-10-08 20:00:08+00:00 1288625943 232 PPT yobit BTC 2019-10-11 20:00:11+00:00 1288625943 236 MDA yobit BTC 2019-10-20 19:00:05+00:00 1288625943 240 MDA yobit BTC 2019-10-27 17:00:05+00:00 1288625943 242 QKC yobit BTC 2019-10-30 17:00:04+00:00 1288625943 245 QKC yobit BTC 2019-11-03 20:05:09+00:00 1288625943 252 MDA yobit BTC 2019-11-13 14:00:19+00:00 1288625943 255 QKC yobit BTC 2019-11-30 15:00:11+00:00 1288625943 258 MDA yobit BTC 2019-12-05 15:00:14+00:00 1288625943 260 FTM yobit BTC 2019-12-14 14:00:06+00:00 1288625943 263 REN yobit BTC 2019-12-18 15:00:07+00:00 1288625943 265 FTM yobit BTC 2019-12-21 14:00:06+00:00 1288625943 269 QKC yobit BTC 2020-01-09 14:00:13+00:00 1288625943 271 PPT yobit BTC 2020-01-16 15:00:07+00:00 1288625943 279 QKC yobit BTC 2020-02-11 20:00:07+00:00 1158196698 26 STEEL hotbit USDT 2021-06-17 18:05:33+00:00 1158196698 26 ITEN hotbit USDT 2021-06-18 11:55:56+00:00 1158196698 26 DBXC hotbit USDT 2021-06-18 19:35:43+00:00 1158196698 26 GDM hotbit USDT 2021-06-19 15:00:10+00:00 1258431324 250 TOP hotbit BTC 2021-06-23 18:00:06+00:00 1258431324 250 DAI yobit BTC 2019-04-14 17:00:11+00:00 1258431324 250 TNT yobit BTC 2019-04-15 17:00:17+00:00 1258431324 253 PPT yobit BTC 2019-04-19 17:00:04+00:00 1258431324 254 STORM yobit BTC 2019-04-20 17:00:11+00:00 1258431324 255 SOUL kucoin BTC 2019-04-22 16:00:13+00:00 1258431324 256 ENJ yobit BTC 2019-04-23 17:00:13+00:00 1258431324 257 PAX yobit BTC 2019-04-24 17:00:11+00:00 1258431324 260 UKG yobit BTC 2019-04-27 17:00:12+00:00 1258431324 261 CTXC yobit BTC 2019-04-28 17:00:10+00:00 1258431324 262 BLZ yobit BTC 2019-04-30 17:00:09+00:00 1258431324 263 PPT yobit BTC 2019-05-01 17:00:11+00:00 1258431324 264 PPT yobit BTC 2019-05-04 17:00:13+00:00 1258431324 264 ENJ yobit BTC 2019-05-05 17:00:12+00:00 1258431324 267 PAX yobit BTC 2019-05-08 17:00:09+00:00 1258431324 269 PAX yobit BTC 2019-05-10 17:00:08+00:00 1258431324 271 HC binance BTC 2019-05-12 17:00:05+00:00 1258431324 275 PAX yobit BTC 2019-05-18 17:00:11+00:00 1258431324 275 LEND yobit BTC 2019-05-19 17:00:10+00:00 1258431324 277 PAX yobit BTC 2019-05-23 17:01:36+00:00 1258431324 278 BRD binance BTC 2019-05-25 16:00:12+00:00 1258431324 290 PAX yobit BTC 2019-06-11 17:00:10+00:00 1258431324 291 DLT yobit BTC 2019-06-12 17:00:09+00:00 1258431324 292 PPT yobit BTC 2019-06-14 17:00:11+00:00 1258431324 293 LEND yobit BTC 2019-06-15 17:00:12+00:00 1258431324 295 LEND yobit BTC 2019-06-18 17:00:09+00:00 1258431324 296 PAX yobit BTC 2019-06-20 17:00:05+00:00 1258431324 297 REQ yobit BTC 2019-06-21 17:00:06+00:00 1258431324 298 BLZ yobit BTC 2019-06-22 17:00:04+00:00 1258431324 299 BAT yobit BTC 2019-06-25 17:00:59+00:00 1258431324 300 PPT yobit BTC 2019-06-26 17:00:10+00:00 1258431324 303 LEND yobit BTC 2019-07-05 17:00:05+00:00 1258431324 304 FUN yobit BTC 2019-07-06 17:00:05+00:00 1258431324 305 PPT yobit BTC 2019-07-07 17:00:06+00:00 1258431324 307 FUN yobit BTC 2019-07-11 17:00:06+00:00 1258431324 309 BLZ yobit BTC 2019-07-13 17:00:07+00:00 1258431324 311 FUN yobit BTC 2019-07-21 17:00:04+00:00 1258431324 313 MATIC yobit BTC 2019-07-27 17:00:05+00:00 1258431324 314 QKC yobit BTC 2019-07-28 17:00:04+00:00 1258431324 315 MANA yobit BTC 2019-07-29 17:00:08+00:00 1258431324 317 FUN yobit BTC 2019-08-03 17:00:05+00:00 1258431324 318 REQ yobit BTC 2019-08-04 17:00:05+00:00 1258431324 320 MANA yobit BTC 2019-08-09 17:00:08+00:00 1258431324 321 STORJ binance BTC 2019-08-10 20:00:04+00:00 1258431324 321 MANA yobit BTC 2019-08-11 17:00:06+00:00 1258431324 322 WPR yobit BTC 2019-08-12 17:00:07+00:00 1258431324 323 DLT yobit BTC 2019-08-15 17:00:10+00:00 1258431324 324 DLT yobit BTC 2019-08-16 17:00:08+00:00 1258431324 325 TFD yobit BTC 2019-08-17 17:00:06+00:00 1258431324 327 GVT yobit BTC 2019-08-24 17:00:06+00:00 1258431324 329 SNM yobit BTC 2019-09-04 16:55:05+00:00 1258431324 331 MTH yobit BTC 2019-09-06 17:00:07+00:00 1258431324 332 BNT binance BTC 2019-09-07 17:01:06+00:00 1258431324 335 LINK yobit BTC 2019-09-12 17:00:06+00:00 1258431324 337 QKC yobit BTC 2019-09-15 17:00:06+00:00 1258431324 ? MANA yobit BTC 2019-09-23 17:00:05+00:00 1258431324 ? BAT yobit BTC 2019-09-24 17:00:05+00:00 1258431324 ? GVT yobit BTC 2019-09-26 17:00:06+00:00 1258431324 ? FUN yobit BTC 2019-09-28 17:00:04+00:00 1258431324 ? MDA yobit BTC 2019-09-30 17:00:04+00:00 1258431324 ? SNT yobit BTC 2019-10-02 17:00:05+00:00 1258431324 ? SNT yobit BTC 2019-10-05 17:00:03+00:00 1258431324 ? BLZ yobit BTC 2019-10-12 17:00:04+00:00 1258431324 ? FUN yobit BTC 2019-10-22 17:00:03+00:00 1258431324 ? MDA yobit BTC 2019-10-24 17:00:03+00:00 1258431324 ? MDA yobit BTC 2019-11-12 17:00:03+00:00 1258431324 ? BNT yobit BTC 2019-11-15 17:01:46+00:00 1258431324 ? BNT yobit BTC 2019-12-13 17:00:02+00:00 1258431324 ? REN yobit BTC 2019-12-17 17:00:05+00:00 1258431324 ? BNT yobit BTC 2019-12-29 17:00:06+00:00 1258431324 ? FUN yobit BTC 2020-01-15 17:00:05+00:00 1258431324 ? FUN yobit BTC 2020-03-28 17:00:12+00:00 1258431324 ? AOA yobit BTC 2020-04-01 17:00:04+00:00 1258431324 ? MTH yobit BTC 2020-04-04 17:00:38+00:00 1258431324 ? WPR yobit BTC 2020-04-10 17:00:02+00:00 1258431324 ? WPR yobit BTC 2020-04-10 17:00:08+00:00 1258431324 ? SNT yobit BTC 2020-04-14 17:00:06+00:00 1258431324 ? WPR yobit BTC 2020-04-19 17:00:04+00:00 1258431324 ? AOA yobit BTC 2020-04-22 17:00:41+00:00 1258431324 389 LOOM yobit BTC 2020-05-19 17:00:06+00:00 1258431324 394 NWC yobit BTC 2020-10-31 17:00:18+00:00 1231437793 36 WTC yobit BTC 2019-01-03 17:00:24+00:00 1231437793 38 OK yobit BTC 2019-01-12 17:00:44+00:00 1231437793 39 THETA yobit BTC 2019-01-13 17:00:51+00:00 1231437793 42 REN yobit BTC 2019-01-17 17:00:55+00:00 1335862163 106 DATA binance BTC 2019-08-15 20:00:07+00:00 1335862163 108 QSP binance BTC 2019-08-29 18:00:05+00:00 1335862163 111 DATA binance BTC 2019-09-08 18:00:04+00:00 1335862163 412 SKY binance BTC 2021-10-05 15:00:27+00:00 1335862163 423 BRD binance BTC 2021-10-31 15:00:01+00:00 1335862163 428 NAS binance BTC 2021-11-14 15:00:00+00:00 1443935936 4 ARK binance BTC 2020-04-03 18:00:07+00:00 1443935936 4 ZEN binance BTC 2020-04-03 19:00:02+00:00 1443935936 5 BNT binance BTC 2020-04-06 18:00:04+00:00 1443935936 6 ARN binance BTC 2020-04-07 18:00:06+00:00 1443935936 22 MDA binance BTC 2020-05-04 19:01:21+00:00 1161083859 7 GAS binance BTC 2021-02-15 15:00:09+00:00 1161083859 9 BTCST binance BTC 2021-02-23 15:00:12+00:00 1161083859 15 ENJ binance USDT 2021-03-04 20:32:07+00:00 1161083859 16 FLM binance BTC 2021-03-13 17:00:06+00:00 1161083859 20 MDA binance BTC 2021-03-21 17:01:26+00:00 1161083859 31 PIVX binance BTC 2021-03-28 16:32:17+00:00 1161083859 31 GTO binance BTC 2021-04-04 16:30:12+00:00 1161083859 36 VIA binance BTC 2021-04-11 16:45:14+00:00 1161083859 41 IDEX binance BTC 2021-04-25 16:45:04+00:00 1068531379 42 SDT kucoin USDT 2021-05-08 18:00:00+00:00 1068531379 46 JST kucoin USDT 2021-05-15 18:00:00+00:00 1068531379 52 DODO kucoin USDT 2021-05-21 20:00:00+00:00 1068531379 52 OAX binance BTC 2021-05-30 17:00:02+00:00 1068531379 58 WOM kucoin USDT 2021-06-05 18:00:00+00:00 1068531379 62 WABI binance BTC 2021-06-20 17:00:04+00:00 1068531379 68 POA binance BTC 2021-07-11 17:00:02+00:00 1068531379 74 DREP binance BTC 2021-07-25 17:00:01+00:00 1068531379 79 EZ binance BTC 2021-08-08 17:00:10+00:00 1068531379 85 NAS binance BTC 2021-08-22 17:00:11+00:00 1068531379 89 VIB binance BTC 2021-09-05 17:00:05+00:00 1068531379 93 FXS binance BTC 2021-09-19 17:00:11+00:00 1068531379 99 NXS binance BTC 2021-10-03 16:47:50+00:00 1068531379 99 EVX binance BTC 2021-10-03 16:49:26+00:00 1068531379 99 EZ binance BTC 2021-10-03 17:00:07+00:00 1068531379 103 WNXM binance BTC 2021-10-10 17:00:05+00:00 1068531379 109 EVX binance BTC 2021-10-24 17:00:07+00:00 1068531379 113 EZ binance BTC 2021-10-31 17:00:05+00:00 1068531379 118 MTH binance BTC 2021-11-07 17:00:03+00:00 1068531379 122 PHB binance BTC 2021-11-28 17:00:05+00:00 1068531379 129 NEBL binance BTC 2022-01-02 17:00:07+00:00 1468310965 8 VIA binance BTC 2021-03-17 17:00:06+00:00 1468310965 18 ATM binance BTC 2021-03-27 17:00:18+00:00 1468310965 19 PIVX binance BTC 2021-03-28 17:00:12+00:00 1310500575 5 ARK binance BTC 2020-04-03 18:00:05+00:00 1310500575 5 ZEN binance BTC 2020-04-03 19:00:00+00:00 1310500575 7 BNT binance BTC 2020-04-06 18:00:02+00:00 1310500575 7 ARN binance BTC 2020-04-07 18:00:07+00:00 1240071142 185 EDO binance BTC 2020-04-10 18:00:09+00:00 1240071142 187 DZC cryptopia BTC 2019-01-03 20:10:07+00:00 1240071142 190 BNT binance BTC 2019-01-06 21:00:14+00:00 1240071142 190 LOOM binance BTC 2019-01-07 14:28:33+00:00 1240071142 190 EVX binance BTC 2019-01-08 16:00:05+00:00 1240071142 196 GXS binance BTC 2019-01-20 17:59:43+00:00 1240071142 201 HC binance BTC 2019-01-25 18:00:07+00:00 1240071142 203 WINGS binance BTC 2019-01-27 18:00:01+00:00 1240071142 205 BQX binance BTC 2019-01-29 14:00:18+00:00 1240071142 209 GRS binance BTC 2019-02-02 18:00:01+00:00 1240071142 210 VIA binance BTC 2019-02-03 15:04:17+00:00 1240071142 215 GXS binance BTC 2019-02-10 18:00:06+00:00 1240071142 221 EDO binance BTC 2019-02-16 18:00:16+00:00 1240071142 226 GBG bittrex BTC 2019-02-21 20:00:06+00:00 1240071142 228 HC binance BTC 2019-02-23 16:59:59+00:00 1240071142 232 AST binance BTC 2019-03-02 14:00:23+00:00 1240071142 234 GRS binance BTC 2019-03-05 16:30:21+00:00 1240071142 241 BLZ binance BTC 2019-03-15 15:54:31+00:00 1240071142 243 BRD binance BTC 2019-03-17 18:59:31+00:00 1240071142 245 CURE bittrex BTC 2019-03-19 20:00:53+00:00 1240071142 248 RDN binance BTC 2019-03-24 18:59:57+00:00 1240071142 250 SNM binance BTC 2019-04-04 13:29:26+00:00 1240071142 253 BLZ binance BTC 2019-04-13 17:00:14+00:00 1240071142 256 ARDR binance BTC 2019-04-17 17:00:11+00:00 1240071142 260 RDN binance BTC 2019-04-24 17:00:11+00:00 1240071142 264 REQ binance BTC 2019-04-29 15:00:33+00:00 1240071142 273 RDN binance BTC 2019-05-10 16:00:03+00:00 1240071142 276 CDT binance BTC 2019-05-13 15:00:13+00:00 1240071142 279 NAV binance BTC 2019-05-18 17:01:18+00:00 1240071142 285 POA binance BTC 2019-05-26 21:00:26+00:00 1240071142 288 PPT binance BTC 2019-05-31 14:59:42+00:00 1240071142 290 SNM binance BTC 2019-06-02 21:00:35+00:00 1240071142 294 BRD binance BTC 2019-06-17 14:59:40+00:00 1546300553 2 DVI hotbit USDT 2021-08-22 17:00:49+00:00 1546300553 4 BELT hotbit USDT 2021-08-25 17:00:11+00:00 1546300553 15 MMDA hotbit USDT 2021-09-08 17:00:01+00:00 1546300553 18 PEOS binance USDT 2021-09-12 17:00:01+00:00 1546300553 21 SAMK hotbit USDT 2021-09-15 17:00:01+00:00 1546300553 24 CEXLT hotbit USDT 2021-09-19 17:00:01+00:00 1546300553 27 PTI hotbit USDT 2021-09-22 17:00:01+00:00 1546300553 30 ETI hotbit USDT 2021-09-26 17:00:00+00:00 1546300553 32 TFF hotbit USDT 2021-09-29 17:00:01+00:00 1546300553 35 HALV hotbit USDT 2021-10-03 17:00:00+00:00 1546300553 36 DISTX hotbit USDT 2021-10-06 17:00:01+00:00 1546300553 39 MNSTP hotbit USDT 2021-10-10 17:00:01+00:00 1546300553 42 LIBFX hotbit USDT 2021-10-13 17:00:00+00:00 1546300553 45 HYFIT hotbit USDT 2021-10-17 17:00:06+00:00 1546300553 47 BNW hotbit USDT 2021-10-20 17:00:00+00:00 1546300553 49 DOVE hotbit USDT 2021-10-24 17:00:00+00:00 1546300553 52 PAMP hotbit USDT 2021-10-27 17:00:03+00:00 1546300553 54 MASH hotbit USDT 2021-10-31 18:00:01+00:00 1546300553 57 EIDOS hotbit USDT 2021-11-03 18:00:04+00:00 1546300553 60 PEOS hotbit USDT 2021-11-07 18:00:03+00:00 1546300553 62 DCNT hotbit USDT 2021-11-10 18:01:04+00:00 1546300553 65 AAC hotbit USDT 2021-11-14 18:00:08+00:00 1546300553 67 SBEAR hotbit USDT 2021-11-17 18:00:30+00:00 1546300553 69 SAMK hotbit USDT 2021-11-21 20:55:07+00:00 1546300553 71 FDS hotbit USDT 2021-11-24 18:00:22+00:00 1546300553 75 XGM hotbit USDT 2021-11-28 18:00:08+00:00 1546300553 75 FBN hotbit USDT 2021-12-01 18:00:10+00:00 1546300553 78 RETRY hotbit USDT 2021-12-05 18:00:19+00:00 1546300553 80 AEROX hotbit USDT 2021-12-08 18:00:13+00:00 1546300553 82 BSL hotbit USDT 2021-12-12 18:00:28+00:00 1546300553 83 FBS hotbit USDT 2021-12-15 18:00:03+00:00 1546300553 84 LEV hotbit USDT 2021-12-19 18:00:06+00:00 1546300553 86 DUO hotbit USDT 2021-12-22 18:00:24+00:00 1546300553 87 BXH hotbit USDT 2021-12-26 18:00:25+00:00 1546300553 88 AUV hotbit USDT 2021-12-29 18:00:28+00:00 1546300553 90 DS hotbit USDT 2022-01-02 18:00:20+00:00 1546300553 91 BQT hotbit USDT 2022-01-05 18:00:22+00:00 1546300553 92 TUBER hotbit USDT 2022-01-09 19:00:14+00:00 1546300553 93 DOVE hotbit USDT 2022-01-12 18:16:47+00:00 1546300553 95 POFI hotbit USDT 2022-01-16 18:00:21+00:00 1546300553 96 BSC hotbit USDT 2022-01-19 18:00:28+00:00 1250076602 40 EVX binance BTC 2021-10-24 17:00:07+00:00 1250076602 45 EZ binance BTC 2021-10-31 17:00:05+00:00 1250076602 50 MTH binance BTC 2021-11-07 17:00:04+00:00 1250076602 58 PHB binance BTC 2021-11-28 17:00:38+00:00 1250076602 65 NEBL binance BTC 2022-01-02 17:00:07+00:00 1529195300 39 SUP gate.io BTC 2021-09-29 18:00:05+00:00 1529195300 40 SASHIMI gate.io BTC 2021-09-30 18:00:06+00:00 1529195300 41 BOX gate.io BTC 2021-10-01 18:00:02+00:00 1529195300 43 EZ binance BTC 2021-10-03 17:00:29+00:00 1529195300 45 TON gate.io USDT 2021-10-05 18:00:02+00:00 1529195300 47 SUP gate.io USDT 2021-10-09 18:00:00+00:00 1529195300 49 STOX gate.io USDT 2021-10-13 18:00:02+00:00 1529195300 51 CS gate.io USDT 2021-10-15 18:00:03+00:00 1529195300 52 TSL gate.io USDT 2021-10-16 18:00:05+00:00 1529195300 53 ULU gate.io USDT 2021-10-17 18:00:01+00:00 1529195300 55 BONDED gate.io USDT 2021-10-19 18:00:05+00:00 1529195300 57 BTF hotbit USDT 2021-10-22 18:00:04+00:00 1529195300 59 EVX hotbit BTC 2021-10-24 17:00:00+00:00 1529195300 61 INK gate.io USDT 2021-10-27 18:00:23+00:00 1529195300 63 GOD gate.io USDT 2021-10-29 18:00:21+00:00 1529195300 64 SOP gate.io USDT 2021-10-30 18:00:24+00:00 1529195300 65 EZ binance BTC 2021-10-31 17:00:41+00:00 1529195300 67 STOX gate.io USDT 2021-11-02 18:00:26+00:00 1529195300 68 KALM gate.io USDT 2021-11-03 18:00:21+00:00 1529195300 70 NBOT gate.io USDT 2021-11-05 18:00:23+00:00 1529195300 72 MTH binance BTC 2021-11-07 17:00:22+00:00 1529195300 81 PHB binance BTC 2021-11-28 17:00:17+00:00 1529195300 116 ORC kucoin USDT 2022-01-15 17:00:14+00:00 1335837027 3 MDA binance BTC 2021-02-10 21:00:30+00:00 1335837027 4 NEBL binance BTC 2021-02-13 21:00:15+00:00 1335837027 7 NXS binance BTC 2021-02-21 17:00:28+00:00 1335837027 15 PPT binance BTC 2021-03-07 17:00:15+00:00 1335837027 26 SUSD binance BTC 2021-03-28 15:00:23+00:00 1335837027 26 PIVX binance BTC 2021-03-28 17:00:13+00:00 1335837027 28 REAP kucoin USDT 2021-04-01 16:00:10+00:00 1335837027 30 QQQ hotbit USDT 2021-04-03 15:00:08+00:00 1335837027 36 HTDF hotbit USDT 2021-04-11 15:00:08+00:00 1335837027 48 XDEX hotbit USDT 2021-04-25 17:00:12+00:00 1335837027 61 QQQ hotbit USDT 2021-05-15 15:00:05+00:00 1335837027 67 QQQ hotbit USDT 2021-05-22 15:00:08+00:00 1335837027 71 DEP hotbit USDT 2021-05-29 15:00:04+00:00 1335837027 78 BAS hotbit USDT 2021-06-05 19:59:59+00:00 1368682672 107 HC binance BTC 2019-01-25 18:00:14+00:00 1368682672 108 WINGS binance BTC 2019-01-27 18:00:10+00:00 1368682672 110 GRS binance BTC 2019-02-02 18:00:15+00:00 1368682672 111 STORJ binance BTC 2019-02-04 16:30:25+00:00 1368682672 116 GXS binance BTC 2019-02-10 18:00:33+00:00 1368682672 119 EDO binance BTC 2019-02-16 18:00:34+00:00 1368682672 124 HC binance BTC 2019-02-23 17:00:07+00:00 1368682672 127 AST binance BTC 2019-03-02 14:00:56+00:00 1368682672 129 GRS binance BTC 2019-03-05 16:31:00+00:00 1368682672 144 BRD binance BTC 2019-04-14 19:30:01+00:00 1368682672 146 ARDR binance BTC 2019-04-17 17:48:48+00:00 1368682672 160 NAV binance BTC 2019-05-18 17:00:14+00:00 1368682672 162 SYS binance BTC 2019-05-23 17:00:01+00:00 1368682672 165 BLZ binance BTC 2019-05-27 17:00:05+00:00 1368682672 169 ARDR binance BTC 2019-05-31 17:00:01+00:00 1368682672 170 SNM binance BTC 2019-06-02 21:00:43+00:00 1368682672 177 NEBL binance BTC 2019-06-16 21:00:44+00:00 1368682672 179 REN binance BTC 2019-06-19 15:00:02+00:00 1368682672 182 NAV binance BTC 2019-06-24 17:00:04+00:00 1368682672 182 DNT binance BTC 2019-06-26 17:22:53+00:00 1368682672 182 SNGLS binance BTC 2019-06-28 17:18:06+00:00 1368682672 184 VIB binance BTC 2019-07-02 17:00:09+00:00 1368682672 185 PIVX binance BTC 2019-07-05 16:00:09+00:00 1368682672 186 SYS binance BTC 2019-07-07 17:59:55+00:00 1368682672 187 CND binance BTC 2019-07-09 17:00:16+00:00 1368682672 187 SNM binance BTC 2019-07-11 17:00:51+00:00 1368682672 187 DLT binance BTC 2019-07-15 17:00:08+00:00 1368682672 187 SYS binance BTC 2019-07-17 17:00:09+00:00 1368682672 187 BTS binance BTC 2019-07-19 17:00:14+00:00 1368682672 188 SNT binance BTC 2019-07-22 16:02:24+00:00 1368682672 191 ADX binance BTC 2019-07-26 18:00:00+00:00 1368682672 192 BLZ binance BTC 2019-07-28 17:00:40+00:00 1368682672 194 NAV binance BTC 2019-08-01 20:00:22+00:00 1368682672 194 WABI binance BTC 2019-08-02 18:00:02+00:00 1368682672 194 SNM binance BTC 2019-08-04 18:00:04+00:00 1368682672 194 POA binance BTC 2019-08-06 16:00:07+00:00 1368682672 195 YOYO binance BTC 2019-08-08 16:00:08+00:00 1368682672 195 YOYO binance BTC 2019-08-10 15:24:56+00:00 1368682672 195 RCN binance BTC 2019-08-10 16:00:37+00:00 1368682672 200 VIA binance BTC 2019-08-16 16:05:06+00:00 1368682672 201 ONG binance BTC 2019-08-19 16:18:17+00:00 1368682672 201 VIB binance BTC 2019-08-21 18:00:23+00:00 1368682672 202 QSP binance BTC 2019-08-29 18:00:32+00:00 1368682672 204 LRC binance BTC 2019-09-02 16:00:02+00:00 1368682672 204 QLC binance BTC 2019-09-04 16:00:12+00:00 1368682672 204 EDO binance BTC 2019-09-06 18:00:13+00:00 1368682672 204 DATA binance BTC 2019-09-08 18:04:38+00:00 1368682672 204 BNT binance BTC 2019-09-09 20:00:21+00:00 1368682672 205 POA binance BTC 2019-09-18 13:01:46+00:00 1368682672 207 EDO binance BTC 2019-09-25 16:00:14+00:00 1368682672 208 NXS binance BTC 2019-10-02 18:00:24+00:00 1368682672 217 OST binance BTC 2019-10-22 18:27:00+00:00 1368682672 217 ONG binance BTC 2019-10-29 18:00:18+00:00 1368682672 220 NEBL binance BTC 2019-11-05 16:00:12+00:00 1368682672 222 BCD binance BTC 2019-11-11 17:00:46+00:00 1368682672 223 EDO binance BTC 2019-11-21 18:00:11+00:00 1368682672 232 NAV binance BTC 2019-12-19 17:00:23+00:00 1368682672 239 EDO binance BTC 2020-01-08 17:00:44+00:00 1368682672 239 ONG binance BTC 2020-01-09 17:00:11+00:00 1368682672 239 GNT binance BTC 2020-01-10 18:00:09+00:00 1368682672 245 NULS binance BTC 2020-01-30 17:00:06+00:00 1368682672 253 SYS binance BTC 2020-02-26 18:00:11+00:00 1368682672 261 QLC binance BTC 2020-03-12 16:00:05+00:00 1368682672 268 TCT binance BTC 2020-03-13 16:00:09+00:00 1368682672 268 OAX binance BTC 2020-03-24 15:58:48+00:00 1368682672 270 EDO binance BTC 2020-03-26 16:04:08+00:00 1368682672 274 GRS binance BTC 2020-04-02 16:00:11+00:00 1368682672 279 GNT binance BTC 2020-04-10 16:00:18+00:00 1368682672 282 VITE binance BTC 2020-04-13 12:17:19+00:00 1368682672 283 MITH binance BTC 2020-04-14 16:02:14+00:00 1368682672 284 GVT binance BTC 2020-04-15 15:56:53+00:00 1368682672 290 BNT binance BTC 2020-04-24 16:09:26+00:00 1368682672 299 CVC binance BTC 2020-05-05 16:00:13+00:00 1368682672 301 AST binance BTC 2020-05-09 16:00:28+00:00 1368682672 305 YOYO binance BTC 2020-05-14 16:00:38+00:00 1368682672 307 GTO binance BTC 2020-05-21 15:59:29+00:00 1368682672 309 VIA binance BTC 2020-05-29 16:00:05+00:00 1368682672 313 CTXC binance BTC 2020-06-03 16:02:47+00:00 1368682672 317 VIA binance BTC 2020-06-10 16:00:03+00:00 1368682672 318 QSP binance BTC 2020-06-13 16:00:41+00:00 1368682672 318 GXS binance BTC 2020-06-15 16:01:19+00:00 1368682672 322 EVX binance BTC 2020-06-24 16:00:21+00:00 1368682672 330 ELF binance BTC 2020-07-24 17:00:24+00:00 1368682672 330 POA binance BTC 2020-07-28 16:01:16+00:00 1368682672 332 PPT binance BTC 2020-08-04 18:00:26+00:00 1368682672 335 SNM binance BTC 2020-09-04 16:00:36+00:00 1368682672 335 QLC binance BTC 2020-09-06 16:01:05+00:00 1368682672 336 STPT binance BTC 2020-09-08 16:15:15+00:00 1368682672 336 QSP binance BTC 2020-09-10 18:00:40+00:00 1368682672 336 CDT binance BTC 2020-09-16 16:00:18+00:00 1368682672 336 GVT binance BTC 2020-09-17 18:03:29+00:00 1368682672 337 GVT binance BTC 2020-09-30 17:00:02+00:00 1368682672 339 OAX binance BTC 2020-10-18 18:00:23+00:00 1368682672 342 APPC binance BTC 2020-11-04 17:00:22+00:00 1368682672 344 BRD binance BTC 2020-11-09 16:00:27+00:00 1320118842 1 OAX binance BTC 2020-10-18 18:00:23+00:00 1320118842 3 PPT binance BTC 2020-10-21 18:01:05+00:00 1320118842 4 ARDR binance BTC 2020-11-02 16:00:40+00:00 1320118842 4 GTO binance BTC 2020-11-03 16:00:14+00:00 1320118842 4 APPC binance BTC 2020-11-04 17:01:35+00:00 1427229166 5 ARK binance BTC 2020-04-03 18:00:05+00:00 1427229166 7 ZEN binance BTC 2020-04-03 19:00:00+00:00 1427229166 7 BNT binance BTC 2020-04-06 18:00:02+00:00 1427229166 7 ARN binance BTC 2020-04-07 18:00:06+00:00 1149375708 304 EDO binance BTC 2020-04-10 18:00:09+00:00 1405131456 4 MXC kucoin USDT 2021-05-23 16:00:01+00:00 1405131456 13 BDO hotbit USDT 2021-06-10 20:00:11+00:00 1405131456 18 CGG kucoin USDT 2021-06-19 21:00:03+00:00 1405131456 23 XTK hotbit USDT 2021-06-23 19:00:24+00:00 1405131456 23 FLY kucoin USDT 2021-06-27 17:26:47+00:00 1405131456 32 DORA kucoin USDT 2021-07-28 19:00:06+00:00 1405131456 35 MXC kucoin USDT 2021-08-26 19:00:02+00:00 1123236170 252 DATA binance BTC 2019-08-15 20:54:06+00:00 1123236170 262 QSP binance BTC 2019-08-29 18:00:05+00:00 1123236170 268 DATA binance BTC 2019-09-08 18:00:04+00:00 1123236170 594 SKY binance BTC 2021-10-05 15:00:34+00:00 1123236170 608 BRD binance BTC 2021-10-31 15:00:01+00:00 1401539056 5 NAS binance BTC 2021-11-14 15:00:01+00:00 1401539056 5 ARK binance BTC 2020-04-03 18:00:06+00:00 1401539056 5 ZEN binance BTC 2020-04-03 19:00:01+00:00 1401539056 7 ARN binance BTC 2020-04-07 18:00:06+00:00 1401539056 9 EDO binance BTC 2020-04-10 18:00:09+00:00 1325010971 5 MDA binance BTC 2021-01-31 00:01:23+00:00 1325010971 5 PNT binance BTC 2021-01-31 21:00:25+00:00 File: Data\\Telegram\\Labeled\\PD_logs_raw.txt 1095533634 256 APPC binance BTC 2019-06-04 12:01:33+00:0 1095533634 258 REQ binance BTC 2019-06-08 13:00:02+00:00 1095533634 278 ADX binance BTC 2019-07-05 17:01:12+00:00 1095533634 285 SNM binance ? 2019-08-07 16:59:48+00:00 1095533634 287 DATA binance ? 2019-08-15 20:00:07+00:00 1095533634 293 QSP binance ? 2019-08-29 18:00:05+00:00 1095533634 296 DATA binance ? 2019-09-08 18:00:04+00:00 1095533634 299 EDO binance ? 2019-09-23 12:59:59+00:00 1095533634 302 NXS binance ? 2019-10-02 18:00:06+00:00 1095533634 304 OST binance ? 2019-10-22 18:00:05+00:00 1095533634 336 NAV binance BTC 2020-01-16 19:00:06+00:00 1095533634 338 SNGLS binance BTC 2020-03-08 18:59:46+00:00 1095533634 339 VIA binance BTC 2020-05-29 16:00:20+00:00 1095533634 341 CTXC binance BTC 2020-06-03 16:00:29+00:00 1388333162 293 DOX Yobit BTC 2019-02-13 19:30:00+00:00 1388333162 294 PIE Yobit BTC 2019-02-15 19:30:00+00:00 1388333162 296 TKN Yobit BTC 2019-02-18 19:30:00+00:00 1388333162 301 FC Yobit BTC 2019-02-26 19:30:00+00:00 1388333162 302 ASCS Yobit BTC 2019-02-28 19:30:01+00:00 1388333162 305 CROC Yobit BTC 2019-03-05 19:30:00+00:00 1388333162 307 M1 Yobit BTC 2019-03-12 19:30:00+00:00 1388333162 313 FC Yobit BTC 2019-03-22 18:30:00+00:00 1388333162 324 DOX Yobit BTC 2019-04-08 18:30:00+00:00 1388333162 331 ASCS Yobit BTC 2019-04-17 18:30:00+00:00 1258049399 200 RDN binance BTC 2019-10-15 20:00:01+00:00 1258049399 221 LRC binance ? 2019-11-16 05:01:23+00:00 1494273858 0 STMX binance USDT 2021-06-14 13:00:07+00:00 1494273858 1 BLZ binance USDT 2021-06-16 11:29:59+00:00 1494273858 2 NKN binance USDT 2021-06-17 11:59:58+00:00 1494273858 16 NKN binance USDT 2021-07-05 13:00:00+00:0 1494273858 50 KEEP binance USDT 2021-08-31 15:00:03+00:00 1195248520 0 EVX binance ? 2020-06-24 16:14:44+00:00 1195248520 5 GVT binance ? 2020-07-04 16:59:51+00:00 1195248520 7 ADX binance ? 2020-07-07 16:01:29+00:00 1195248520 17 ELF binance ? 2020-07-24 17:01:24+00:00 1296134866 6 APPC binance BTC 2020-11-27 18:00:12+00:00 1296134866 10 NXS binance BTC 2020-12-03 18:00:05+00:00 1296134866 12 NXS binance BTC 2020-12-27 18:00:15+00:00 1296134866 15 APPC binance BTC 2021-01-01 21:00:25+00:00 1296134866 18 SNM binance BTC 2021-01-08 21:00:07+00:00 1296134866 20 SNGLS binance BTC 2021-01-11 21:00:05+00:00 1296134866 21 APPC Binance BTC 2021-01-13 21:00:06+00:00 1296134866 24 SNM binance BTC 2021-01-20 17:00:46+00:00 1296134866 26 SKY binance BTC 2021-02-13 17:00:05+00:00 1296134866 30 NXS binance BTC 2021-02-21 17:00:04+00:00 1296134866 33 PPT binance BTC 2021-03-07 17:00:04+00:00 1296134866 44 PIVX binance BTC 2021-03-28 17:00:04+00:00 1296134866 51 VIA ? BTC 2021-04-11 17:00:05+00:00 1296134866 58 IDEX ? BTC 2021-04-25 17:00:10+00:00 1296134866 71 NXS binance BTC 2021-05-26 17:00:02+00:00 1296134866 71 POA binance BTC 2021-07-11 17:00:02+00:00 1296134866 77 DREP Binance BTC 2021-07-25 17:00:01+00:00 1296134866 82 EZ binance BTC 2021-08-08 17:00:10+00:00 1296134866 88 NAS binance BTC 2021-08-22 17:00:10+00:00 1296134866 93 VIB binance BTC 2021-09-05 17:00:05+00:00 1296134866 97 FXS binance BTC 2021-09-19 17:00:11+00:00 1296134866 103 EZ binance BTC 2021-10-03 17:00:07+00:00 1296134866 107 WNXM binance BTC 2021-10-10 17:00:05+00:00 1296134866 113 EVX binance BTC 2021-10-24 17:00:07+00:00 1296134866 117 EZ binance BTC 2021-10-31 17:00:05+00:00 1296134866 122 MTH binance BTC 2021-11-07 17:00:03+00:00 1296134866 129 PHB binance ? 2021-11-28 17:00:05+00:00 1296134866 135 NEBL binance BTC 2022-01-02 17:00:07+00:00 1315869059 23 MDA binance BTC 2020-05-04 19:01:23+00:00 1198780255 14 MODEFI kucoin USDT 2021-11-21 18:00:08+00:00 1198780255 32 GENS kucoin USDT 2022-01-01 18:00:04+00:00 1259400586 170 TNB binance ? 2020-03-21 16:00:05+00:00 1259400586 170 EVX binance ? 2020-03-21 16:39:54+00:00 1259400586 172 TCT binance BTC 2020-03-23 16:00:03+00:00 1259400586 175 EDO ? ? 2020-03-26 15:59:39+00:00 1259400586 176 RLC binance BTC 2020-03-27 15:57:32+00:00 1259400586 182 DLT ? ? 2020-03-28 12:18:10+00:00 1259400586 182 GRS binance ? 2020-04-02 15:59:57+00:00 1259400586 190 GNT binance BTC 2020-04-10 16:00:05+00:00 1259400586 193 VITE binance BTC 2020-04-13 11:58:32+00:00 1259400586 193 MITH binance ? 2020-04-14 16:00:07+00:00 1259400586 193 GVT binance ? 2020-04-15 15:56:34+00:00 1259400586 199 BNT binance BTC 2020-04-24 15:59:08+00:00 1259400586 200 ARK binance ? 2020-04-25 14:00:10+00:00 1259400586 218 GTO binance ? 2020-05-21 15:58:02+00:00 1259400586 223 ONG binance BTC 2020-05-26 16:00:07+00:00 1259400586 225 VIA binance BTC 2020-05-29 15:59:46+00:00 1259400586 230 CTXC binance BTC 2020-06-03 16:00:11+00:00 1259400586 234 VIA binance BTC 2020-06-10 15:59:23+00:00 1259400586 237 QSP binance BTC 2020-06-13 16:00:18+00:00 1259400586 239 GXS binance BTC 2020-06-15 16:00:24+00:00 1259400586 244 EVX binance BTC 2020-06-24 16:00:11+00:00 1259400586 388 BCPT binance BTC 2021-01-09 13:00:16+00:00 1259400586 406 SNM binance BTC 2021-01-28 15:30:04+00:00 1259400586 406 DOGE binance BTC 2021-01-30 13:00:02+00:00 1259400586 437 DGCL UNISWAP ? 2021-03-15 13:01:12+00:00 1259400586 440 BSC ? ? 2021-03-23 17:00:03+00:00 1259400586 642 AUTO binance BTC 2021-12-24 13:00:04+00:00 1164619963 59 WABI binance BTC 2021-10-14 15:00:31+00:00 1164619963 63 BRD binance BTC 2021-10-31 15:00:05+00:00 1164619963 67 NAS binance BTC 2021-11-14 15:00:04+00:00 1164619963 70 MDA binance BTC 2021-11-23 15:00:01+00:00 1164619963 76 NEBL binance ? 2021-12-05 15:00:01+00:00 1164619963 79 EVX binance ? 2021-12-10 15:00:01+00:00 1341737830 1 ARK binance BTC 2020-04-03 18:00:09+00:00 1341737830 1 ZEN binance BTC 2020-04-03 19:00:06+00:00 1341737830 2 BNT binance BTC 2020-04-06 18:00:07+00:00 1341737830 3 ARN binance ? 2020-04-07 18:00:08+00:00 1341737830 4 EDO binance BTC 2020-04-10 18:00:12+00:00 1341737830 19 MDA binance BTC 2020-05-04 19:01:23+00:00 1549584841 7 DVPN kucoin USDT 2021-10-23 17:00:13+00:00 1549584841 8 EVX binance BTC 2021-10-24 17:00:10+00:00 1549584841 14 EZ binance BTC 2021-10-31 17:00:14+00:00 1549584841 14 GENS kucoin USDT 2021-10-31 18:00:00+00:00 1549584841 19 MTH binance USDT 2021-11-07 17:00:06+00:00 1549584841 24 BASIC kucoin USDT 2021-11-13 17:00:01+00:00 1549584841 25 NAS binance BTC 2021-11-14 15:00:08+00:00 1549584841 30 MODEFI kucoin USDT 2021-11-21 18:00:11+00:00 1549584841 32 MDA binance BTC 2021-11-23 15:00:06+00:00 1549584841 36 SWP kucoin USDT 2021-11-27 17:00:02+00:00 1549584841 37 PHB binance BTC 2021-11-28 17:00:06+00:00 1549584841 41 NEBL binance BTC 2021-12-05 15:00:02+00:00 1549584841 47 CREAM kucoin USDT 2021-12-18 17:00:04+00:00 1549584841 47 APPC binance BTC 2021-12-19 15:00:04+00:00 1549584841 56 GENS kucoin USDT 2022-01-01 18:00:05+00:00 1549584841 60 UNIC kucoin USDT 2022-01-08 17:00:06+00:00 1549584841 64 ORC kucoin USDT 2022-01-15 17:00:01+00:00 1394568162 7 PIVX binance BTC 2021-03-28 17:07:42+00:00 1394568162 10 WRX binance BTC 2021-04-04 15:21:49+00:00 1394568162 10 PPT binance BTC 2021-04-04 15:24:16+00:00 1394568162 15 VIA binance BTC 2021-04-11 17:00:32+00:00 1394568162 20 IDEX binance ? 2021-04-25 17:00:23+00:00 1394568162 28 WPR binance ? 2021-05-09 17:00:21+00:00 1394568162 37 NXS binance ? 2021-05-26 17:00:25+00:00 1394568162 41 OAX binance ? 2021-05-30 17:00:22+00:00 1394568162 49 CND binance ? 2021-06-06 17:00:38+00:00 1394568162 54 FIO binance ? 2021-06-13 17:03:32+00:00 1394568162 55 STMX binance ? 2021-06-14 13:00:53+00:00 1394568162 59 WABI binance ? 2021-06-20 17:00:29+00:00 1394568162 70 NKN binance ? 2021-07-05 13:00:11+00:00 1394568162 75 POA binance BTC 2021-07-11 17:00:22+00:00 1394568162 82 DREP binance BTC 2021-07-25 17:00:26+00:00 1394568162 87 EZ binance BTC 2021-08-08 17:00:51+00:00 1394568162 99 NAS binance BTC 2021-08-22 17:00:30+00:00 1394568162 104 BRD binance BTC 2021-08-29 17:01:41+00:00 1394568162 110 VIB binance BTC 2021-09-05 17:01:46+00:00 1394568162 119 FXS binance BTC 2021-09-19 17:01:39+00:00 1394568162 131 EZ binance BTC 2021-10-03 17:00:54+00:00 1394568162 133 SKY binance BTC 2021-10-05 15:00:21+00:00 1394568162 137 WNXM binance BTC 2021-10-10 17:01:41+00:00 1394568162 149 EVX binance BTC 2021-10-24 17:01:59+00:0 1394568162 154 BRD binance BTC 2021-10-31 15:01:30+00:00 1394568162 154 EZ binance BTC 2021-10-31 17:00:24+00:00 1394568162 160 MTH binance BTC 2021-11-07 17:00:19+00:00 1394568162 166 NAS binance BTC 2021-11-14 15:00:18+00:00 1394568162 174 MDA binance BTC 2021-11-23 15:00:21+00:00 1394568162 178 PHB binance BTC 2021-11-28 17:02:22+00:00 1394568162 184 NEBL binance BTC 2021-12-05 15:00:22+00:00 1394568162 191 APPC binance BTC 2021-12-19 15:02:12+00:00 1394568162 199 OAX binance BTC 2021-12-28 15:00:09+00:00 1394568162 203 NEBL binance BTC 2022-01-02 17:00:18+00:00 1394568162 212 ORC binance BTC 2022-01-15 17:00:23+00:00 1394568162 215 STND binance BTC 2022-01-18 15:00:14+00:00 1267170242 212 NEBL binance ? 2019-01-03 15:45:32+00:00 1267170242 216 BNT binance ? 2019-01-13 13:45:44+00:00 1267170242 243 BQX binance ? 2019-04-01 17:00:13+00:00 1267170242 257 BQX binance ? 2019-04-22 17:29:52+00:00 1267170242 343 QSP ? ? 2019-08-29 18:04:10+00:00 1267170242 352 DATA ? ? 2019-09-08 18:00:04+00:00 1267170242 355 LINK ? ? 2019-09-12 17:00:07+00:00 1267170242 359 ONG binance BTC 2019-09-19 17:00:25+00:00 1267170242 366 NXS binance ? 2019-10-02 18:00:06+00:00 1267170242 412 EDO ? ? 2019-12-16 16:00:03+00:00 1480242121 7 VIA ? ? 2021-04-11 17:07:32+00:00 1480242121 9 VIA ? ? 2021-04-21 21:08:09+00:00 1480242121 11 QLC binance BTC 2021-04-23 16:07:17+00:00 1480242121 11 RDN binance BTC 2021-04-24 21:09:24+00:00 1480242121 12 IDEX ? ? 2021-04-25 17:07:50+00:00 1480242121 20 QLC binance BTC 2021-05-11 16:09:31+00:00 1267170242 453 NAV binance BTC 2020-02-20 16:00:19+00:00 1267170242 463 NXS binance BTC 2020-03-03 15:59:54+00:00 1267170242 468 SNGLS binance BTC 2020-03-08 18:59:46+00:00 1480242121 25 CFX binance BTC 2021-05-12 17:18:35+00:00 1480242121 25 MTH binance BTC 2021-05-14 17:43:35+00:00 1480242121 26 GUM binance BTC 2021-06-19 20:24:02+00:00 1480242121 27 WABI binance BTC 2021-06-20 17:10:22+00:00 1480242121 28 DKA binance BTC 2021-06-23 20:18:12+00:00 1480242121 31 STORJ binance USDT 2021-06-29 13:18:06+00:00 1480242121 35 STAR binance BTC 2021-07-06 19:15:12+00:00 1480242121 35 ABT binance BTC 2021-07-07 20:21:24+00:00 1480242121 36 BQT binance BTC 2021-07-10 20:17:54+00:00 1480242121 37 POA binance BTC 2021-07-11 17:09:01+00:00 1480242121 38 BUSY binance BTC 2021-07-14 20:10:35+00:00 1480242121 39 MBONK binance BTC 2021-07-21 19:14:04+00:00 1480242121 41 DREP binance BTC 2021-07-25 17:12:42+00:00 1480242121 44 HAUS binance BTC 2021-07-28 20:09:00+00:00 1480242121 45 BRD binance BTC 2021-08-17 20:47:21+00:00 1267170242 470 RDN binance BTC 2020-03-13 16:00:10+00:0 1267170242 474 STORJ binance BTC 2020-03-19 15:58:37+00:00 1267170242 477 BRD binance BTC 2020-03-24 16:00:06+00:00 1267170242 477 RLC binance BTC 2020-03-27 15:57:40+00:00 1267170242 484 ELF binance BTC 2020-04-10 15:58:17+00:00 1267170242 489 RLC binance BTC 2020-04-20 16:00:02+00:00 1267170242 512 ARK binance BTC 2020-06-02 16:00:26+00:00 1267170242 519 OAX binance BTC 2020-06-28 16:00:08+00:00 1267170242 524 ADX binance BTC 2020-07-07 16:00:07+00:00 1267170242 625 IDEX binance BTC 2020-12-31 17:00:19+00:00 1267170242 651 SKY binance BTC 2021-02-13 17:00:05+00:00 1267170242 654 NXS binance BTC 2021-02-21 17:00:04+00:00 1267170242 660 PPT binance BTC 2021-03-07 17:00:04+00:00 1267170242 670 PIVX binance BTC 2021-03-28 17:00:04+00:00 1267170242 686 IDEX binance BTC 2021-04-25 17:00:10+00:00 1267170242 708 OAX binance BTC 2021-05-30 17:00:02+00:00 1267170242 752 DREP binance BTC 2021-07-25 17:00:01+00:00 1267170242 773 NEBL binance BTC 2021-08-24 15:00:03+00:00 1267170242 781 VIB binance BTC 2021-09-05 17:00:05+00:00 1267170242 791 FXS binance BTC 2021-09-19 17:00:11+00:00 1267170242 802 EZ binance BTC 2021-10-03 17:00:07+00:00 1267170242 807 WNXM binance BTC 2021-10-10 17:00:05+00:00 1267170242 809 WABI binance BTC 2021-10-14 15:00:08+00:00 1267170242 816 EVX binance BTC 2021-10-24 17:00:07+00:00 1267170242 821 EZ binance BTC 2021-10-31 17:00:05+00:00 1267170242 826 MTH binance BTC 2021-11-07 17:00:03+00:00 1267170242 841 PHB binance BTC 2021-11-28 17:00:05+00:00 1314235217 64 CURE binance BTC 2019-03-19 20:01:23+00:00 1314235217 69 DTB binance BTC 2019-03-28 20:00:55+00:00 1314235217 72 BRX binance BTC 2019-04-04 20:00:02+00:00 1314235217 75 MET Yobit BTC 2019-04-11 20:00:05+00:00 1314235217 110 VC coineal USDT 2019-06-25 20:00:20+00:00 1366515184 1 ADX binance BTC 2020-08-09 07:09:53+00:00 1247729038 64 GO binance BTC 2020-07-10 16:00:08+00:00 1247729038 66 OST binance BTC 2020-07-14 10:46:56+00:00 1247729038 67 SNT binance BTC 2020-07-22 16:00:46+00:00 1247729038 197 PIVX binance BTC 2021-04-30 16:00:37+00:00 1247729038 199 DLT binance BTC 2021-05-03 16:00:04+00:00 1247729038 215 DLT binance BTC 2021-05-30 16:00:13+00:00 1247729038 238 BTS binance USDT 2021-07-11 16:00:41+00:00 1247729038 240 ICX binance USDT 2021-07-13 16:00:14+00:00 1247729038 242 BTS binance BTC 2021-07-21 16:02:32+00:00 1247729038 244 BZRX binance BTC 2021-07-25 15:48:42+00:00 1247729038 256 CHR binance USDT 2021-08-16 17:40:25+00:00 1247729038 256 IOTX binance BTC 2021-08-17 04:59:27+00:00 1247729038 297 PIVX binance BTC 2021-10-24 16:00:28+00:00 1564934263 7 BZRX binance BTC 2021-07-25 15:47:58+00:00 1564934263 25 CHR binance USDT 2021-08-16 17:40:25+00:00 1564934263 71 PIVX binance BTC 2021-10-24 16:00:26+00:00 1271762340 1 ZEN binance BTC 2020-04-03 19:00:02+00:00 1271762340 3 BNT binance BTC 2020-04-06 18:00:03+00:00 1271762340 3 ARN binance BTC 2020-04-07 18:00:07+00:00 1271762340 5 EDO binance BTC 2020-04-10 18:00:10+00:00 1136271991 153 APPC binance BTC 2019-06-04 12:01:33+00:00 1136271991 155 REQ binance BTC 2019-06-08 13:00:02+00:00 1249251103 113 REQ yobit BTC 2019-08-04 17:00:13+00:00 1249251103 115 MANA yobit BTC 2019-08-09 17:00:05+00:00 1249251103 116 STORJ binance BTC 2019-08-10 20:00:00+00:00 1249251103 116 MANA Yobit BTC 2019-08-11 17:00:02+00:00 1249251103 117 WPR yobit BTC 2019-08-12 17:00:03+00:00 1249251103 117 WPR yobit BTC 2019-08-12 17:00:15+00:00 1249251103 118 DLT yobit BTC 2019-08-15 17:00:07+00:00 1249251103 119 DLT yobit BTC 2019-08-16 17:00:05+00:00 1249251103 120 TFD yobit BTC 2019-08-17 17:00:03+00:00 1249251103 122 GVT yobit BTC 2019-08-24 17:00:03+00:00 1249251103 124 SNM yobit BTC 2019-09-04 17:00:03+00:00 1249251103 126 MTH yobit BTC 2019-09-06 17:00:04+00:00 1249251103 127 BNT Binance BTC 2019-09-07 17:00:04+00:00 1249251103 130 LINK yobit BTC 2019-09-12 17:00:03+00:00 1249251103 132 QKC yobit BTC 2019-09-15 17:00:03+00:00 1249251103 135 MANA yobit BTC 2019-09-23 17:00:05+00:00 1249251103 136 BAT yobit BTC 2019-09-24 17:00:05+00:00 1249251103 138 GVT yobit BTC 2019-09-26 17:00:06+00:00 1249251103 140 FUN yobit BTC 2019-09-28 17:00:04+00:00 1249251103 141 MDA yobit BTC 2019-09-30 17:00:04+00:00 1249251103 142 SNT yobit BTC 2019-10-02 17:00:05+00:00 1249251103 143 SNT yobit BTC 2019-10-05 17:00:03+00:00 1249251103 146 BLZ yobit BTC 2019-10-12 17:00:04+00:00 1249251103 148 FUN yobit BTC 2019-10-22 17:00:03+00:00 1249251103 150 MDA yobit BTC 2019-10-24 17:00:03+00:00 1249251103 152 MDA yobit BTC 2019-11-12 17:00:03+00:00 1249251103 154 BNT yobit BTC 2019-11-15 17:01:46+00:00 1249251103 157 BNT yobit BTC 2019-12-13 17:00:02+00:00 1249251103 159 REN yobit BTC 2019-12-17 17:00:05+00:00 1249251103 167 BNT yobit BTC 2019-12-29 17:00:06+00:00 1249251103 169 VIB binance ? 2020-01-12 20:00:27+00:00 1249251103 172 FUN yobit BTC 2020-01-15 17:00:05+00:00 1249251103 173 NAV binance ? 2020-01-16 19:00:36+00:00 1249251103 175 BRD binance ? 2020-01-20 16:00:46+00:00 1249251103 175 NXS binance ? 2020-01-20 19:00:23+00:00 1249251103 179 NULS binance ? 2020-01-30 17:01:33+00:00 1249251103 179 VRC bittrex BTC 2020-01-30 20:11:58+00:00 1249251103 180 RDN binance ? 2020-02-01 13:00:43+00:00 1249251103 184 WPR binance BTC 2020-02-10 20:00:22+00:00 1249251103 185 WPR binance ? 2020-02-11 18:53:36+00:00 1249251103 186 MORE bittrex ? 2020-02-13 20:01:58+00:00 1249251103 187 CGEN CREX24 ? 2020-02-16 10:12:58+00:00 1249251103 190 NAV binance ? 2020-02-20 16:01:06+00:00 1249251103 192 DNT binance ? 2020-02-27 16:00:29+00:00 1249251103 192 DNT binance ? 2020-02-27 16:13:47+00:00 1249251103 195 NXS binance ? 2020-03-03 16:00:18+00:00 1249251103 196 DNT binance ? 2020-03-04 19:01:01+00:00 1249251103 198 SNGLS binance BTC 2020-03-08 19:00:09+00:00 1249251103 199 POA binance BTC 2020-03-12 19:00:36+00:00 1249251103 201 NEBL binance BTC 2020-03-15 20:00:27+00:00 1249251103 204 FUN yobit BTC 2020-03-28 17:00:12+00:00 1249251103 206 AOA yobit BTC 2020-04-01 17:00:04+00:00 1249251103 208 MTH yobit BTC 2020-04-04 17:00:38+00:00 1249251103 211 WPR yobit BTC 2020-04-10 17:00:02+00:00 1249251103 211 WPR yobit BTC 2020-04-10 17:00:08+00:00 1249251103 213 SNT yobit BTC 2020-04-14 17:00:06+00:00 1249251103 215 WPR yobit BTC 2020-04-19 17:00:04+00:00 1249251103 217 AOA yobit BTC 2020-04-22 17:00:41+00:00 1485049716 67 ONG binance BTC 2019-09-19 17:00:26+00:00 1485049716 83 EDO binance BTC 2019-10-18 16:31:11+00:00 1485049716 87 NEBL binance BTC 2019-10-27 15:57:01+00:00 1485049716 91 DGD binance BTC 2019-11-02 17:29:31+00:00 1485049716 94 BCD binance BTC 2019-11-11 17:00:11+00:00 1485049716 109 GRS binance BTC 2019-11-30 16:59:43+00:00 1485049716 123 BRD binance BTC 2019-12-23 16:29:45+00:00 1485049716 156 WPR binance BTC 2020-02-10 20:00:14+00:00 1485049716 178 RLC binance BTC 2020-03-27 15:57:42+00:00 1485049716 195 BNT binance BTC 2020-04-24 15:59:13+00:00 1485049716 212 ONG binance ? 2020-05-26 16:00:41+00:00 1485049716 215 VIA binance BTC 2020-05-29 16:00:19+00:00 1485049716 217 CTXC binance BTC 2020-06-03 16:00:40+00:00 1485049716 220 VIA binance BTC 2020-06-10 15:59:50+00:00 1485049716 222 GXS binance BTC 2020-06-15 16:00:40+00:00 1485049716 224 QSP binance BTC 2020-06-29 16:00:30+00:00 1485049716 228 GVT binance BTC 2020-07-04 16:00:26+00:00 1485049716 233 CTXC binance BTC 2020-07-10 17:00:21+00:00 1485049716 234 ELF binance BTC 2020-07-24 17:00:24+00:00 1485049716 258 SYS binance BTC 2020-12-29 14:50:38+00:00 1485049716 261 ARDR binance BTC 2021-01-01 16:47:08+00:00 1485049716 277 GVT binance BTC 2021-02-07 14:00:04+00:00 1348881342 1 BNT binance BTC 2019-06-06 16:00:13+00:00 1348881342 2 PPT yobit BTC 2019-06-07 16:00:01+00:00 1348881342 3 WPR yobit BTC 2019-06-08 16:00:04+00:00 1348881342 4 NAS yobit BTC 2019-06-09 16:00:01+00:00 1348881342 5 SIG yobit BTC 2019-06-10 16:00:03+00:00 1348881342 6 AE yobit BTC 2019-06-11 16:00:02+00:00 1348881342 7 SDC yobit BTC 2019-06-12 16:00:02+00:00 1348881342 8 STORM yobit BTC 2019-06-13 16:00:03+00:00 1356364264 214 AMB binance BTC 2019-01-01 14:30:04+00:00 1356364264 238 VIA binance BTC 2019-02-03 15:04:02+00:00 1356364264 255 BRD binance ? 2019-03-03 14:00:07+00:00 1356364264 279 SNM binance BTC 2019-04-04 13:29:14+00:00 1356364264 409 BNT binance BTC 2019-10-14 16:30:01+00:00 1356364264 413 EDO binance BTC 2019-10-18 16:32:32+00:00 1356364264 450 EVX binance BTC 2019-12-06 16:30:40+00:00 1356364264 550 ARK binance BTC 2020-06-02 16:00:26+00:00 1356364264 551 CTXC binance BTC 2020-06-03 16:00:37+00:00 1356364264 671 GVT binance BTC 2021-02-07 14:00:11+00:00 1396342994 93 WTC yobit BTC 2019-01-03 17:00:40+00:00 1396342994 163 SOUL kucoin BTC 2019-04-21 18:00:33+00:00 1219293084 41 GVT binance BTC 2020-04-15 15:57:03+00:00 1219293084 44 RLC binance BTC 2020-04-20 16:00:20+00:00 1219293084 46 BNT binance BTC 2020-04-24 15:59:47+00:00 1219293084 52 MDA binance BTC 2020-05-04 19:01:37+00:00 1219293084 55 VIA binance BTC 2020-05-29 16:00:22+00:00 1219293084 56 PPT binance BTC 2020-06-08 16:06:23+00:00 1219293084 59 APPC binance BTC 2020-11-18 18:00:23+00:00 1219293084 61 MDA binance BTC 2020-11-27 21:00:30+00:00 1219293084 69 RCN binance BTC 2021-01-07 21:00:11+00:00 1219293084 70 EVX binance BTC 2021-01-09 21:00:21+00:00 1219293084 72 Ong binance BTC 2021-01-11 16:00:28+00:00 1219293084 77 STEEM binance ? 2021-01-18 17:00:39+00:00 1219293084 78 SNM binance ? 2021-01-20 17:01:24+00:00 1219293084 82 DLT binance ? 2021-01-27 19:00:43+00:00 1219293084 85 PNT binance BTC 2021-01-31 21:00:12+00:00 1219293084 86 SKY binance ? 2021-02-03 21:00:14+00:00 1219293084 88 VIB binance ? 2021-02-05 21:00:17+00:00 1219293084 91 MDA binance ? 2021-02-10 21:00:14+00:00 1219293084 92 NEBL binance ? 2021-02-13 21:00:17+00:00 1219293084 139 VIA binance BTC 2021-04-21 21:00:13+00:00 1219293084 157 WPR binance BTC 2021-05-09 17:00:02+00:00 1219293084 164 DLT binance BTC 2021-05-16 17:00:01+00:00 1219293084 172 NXS binance BTC 2021-05-26 17:00:10+00:00 1219293084 176 OAX binance BTC 2021-05-30 17:00:14+00:00 1219293084 181 MTH binance BTC 2021-06-06 17:00:02+00:00 1219293084 188 FIO binance BTC 2021-06-13 17:01:25+00:00 1219293084 194 WABI binance BTC 2021-06-20 17:00:15+00:00 1219293084 201 MTH binance BTC 2021-06-27 17:00:03+00:00 1219293084 224 DREP binance BTC 2021-07-25 17:00:13+00:00 1219293084 227 NXS binance BTC 2021-08-01 17:00:02+00:00 1219293084 247 NAS binance BTC 2021-08-22 17:00:24+00:00 1219293084 253 BRD binance BTC 2021-08-29 17:00:16+00:00 1219293084 256 VIB binance BTC 2021-09-05 17:00:16+00:00 1219293084 268 FXS binance BTC 2021-09-19 17:00:26+00:00 1219293084 281 EZ binance BTC 2021-10-03 17:00:15+00:00 1219293084 288 WNXM binance BTC 2021-10-10 17:00:30+00:00 1219293084 302 EVX binance BTC 2021-10-24 17:00:33+00:00 1219293084 309 EZ binance BTC 2021-10-31 17:00:22+00:00 1219293084 315 MTH binance BTC 2021-11-07 17:00:15+00:00 1219293084 322 NAS binance BTC 2021-11-14 15:00:17+00:00 1219293084 330 MDA binance BTC 2021-11-23 15:00:13+00:00 1219293084 334 PHB binance BTC 2021-11-28 17:00:29+00:00 1219293084 352 APPC binance BTC 2021-12-19 15:00:16+00:00 1219293084 360 OAS binance BTC 2021-12-28 15:00:13+00:00 1219293084 365 NEBL binance BTC 2022-01-02 17:01:23+00:00 1219293084 369 UNIC binance BTC 2022-01-08 17:00:24+00:00 1219293084 374 ORC binance BTC 2022-01-15 17:00:12+00:00 1393225015 103 OAX binance BTC 2020-06-28 16:00:19+00:00 1393225015 106 ADX binance BTC 2020-07-07 16:00:35+00:00 1393225015 108 NXS binance BTC 2020-07-21 16:00:40+00:00 1393225015 110 NXS binance BTC 2020-08-02 16:00:50+00:00 1393225015 315 SKY binance BTC 2021-10-05 15:02:08+00:00 1393225015 319 WABI binance BTC 2021-10-14 15:00:39+00:00 1393225015 340 SNM binance BTC 2021-12-07 16:00:12+00:00 1396461633 152 BTS binance BTC 2019-08-22 16:01:09+00:00 1396461633 158 ONG binance BTC 2019-09-19 17:00:28+00:00 1491351820 11 AZK Poocoin ? 2021-12-29 16:57:19+00:00 1491351820 14 AXIAV3 Hotbit USDT 2022-01-03 16:15:26+00:00 1491351820 14 ESC ? ? 2022-01-06 16:00:23+00:00 1491351820 15 RNT hotbit USDT 2022-01-08 16:15:08+00:00 1474718622 304 FIO binance BTC 2021-02-04 17:00:16+00:00 1474718622 308 RDN binance BTC 2021-02-22 17:00:13+00:00 1474718622 310 BRD binance BTC 2021-02-24 17:00:11+00:00 1431128585 1 LUN binance ? 2020-03-18 19:00:05+00:00 1431128585 8 APPC binance BTC 2020-03-27 21:00:00+00:00 1431128585 14 ARK binance BTC 2020-04-03 18:00:05+00:00 1431128585 14 ZEN binance BTC 2020-04-03 19:00:00+00:00 1431128585 16 BNT binance BTC 2020-04-06 18:00:02+00:00 1431128585 16 ARN binance ? 2020-04-07 18:00:06+00:00 1431128585 18 EDO binance BTC 2020-04-10 18:00:09+00:00 1230368984 12 AST binance BTC 2019-03-02 14:00:10+00:00 1230368984 34 BLZ binance BTC 2019-06-24 18:30:00+00:00 1230368984 51 CDT binance BTC 2019-08-09 15:00:01+00:00 1230368984 164 ONG binance BTC 2020-05-26 16:00:06+00:00 1230368984 164 VIA binance BTC 2020-05-29 15:59:45+00:00 1230368984 166 CTXC binance BTC 2020-06-03 16:00:08+00:00 1230368984 166 VIA binance BTC 2020-06-10 15:59:17+00:00 1230368984 166 GXS binance BTC 2020-06-15 16:00:22+00:00 1093396548 211 NEBL binance ? 2019-01-03 15:45:32+00:00 1093396548 218 BNT binance BTC 2019-01-13 13:45:43+00:00 1093396548 235 SUB binance BTC 2019-02-08 16:30:44+00:00 1093396548 254 EVX binance ? 2019-02-28 18:00:14+00:00 1093396548 260 POLY ? ? 2019-03-08 16:00:40+00:00 1093396548 272 POWR binance ? 2019-03-27 16:00:14+00:00 1093396548 276 BQX binance ? 2019-04-01 17:00:12+00:00 1093396548 290 BQX binance ? 2019-04-22 17:29:51+00:00 1093396548 298 NAV binance BTC 2019-05-03 17:59:27+00:00 1093396548 334 BNT ? ? 2019-06-18 16:00:12+00:00 1093396548 385 LRC binance ? 2019-09-05 16:00:21+00:00 1093396548 520 STORJ binance BTC 2020-03-19 15:58:36+00:00 1093396548 523 BRD binance BTC 2020-03-24 16:00:05+00:00 1093396548 523 NXS binance BTC 2020-03-25 15:57:41+00:00 1093396548 523 RLC binance BTC 2020-03-27 15:57:40+00:00 1093396548 533 ELF ? BTC 2020-04-10 15:58:19+00:00 1093396548 541 RLC ? BTC 2020-04-20 16:00:03+00:00 1093396548 907 BRD binance ? 2021-08-17 15:00:02+00:00 1093396548 910 NEBL binance BTC 2021-08-24 15:00:04+00:00 1093396548 918 VIB binance BTC 2021-09-05 17:00:07+00:00 1093396548 928 FXS binance BTC 2021-09-19 17:00:13+00:00 1093396548 939 NXS binance BTC 2021-10-03 16:47:52+00:00 1093396548 939 EZ ? ? 2021-10-03 17:00:09+00:00 1093396548 944 WNXM binance BTC 2021-10-10 17:00:06+00:00 1093396548 946 WABI binance BTC 2021-10-14 15:00:08+00:00 1093396548 953 EVX binance BTC 2021-10-24 17:00:09+00:00 1093396548 958 EZ binance BTC 2021-10-31 17:00:06+00:00 1093396548 963 MTH binance BTC 2021-11-07 17:00:05+00:00 1115904838 334 QLC binance BTC 2019-08-19 16:00:11+00:00 1115904838 335 BTS binance BTC 2019-08-22 16:01:10+00:00 1129771868 118 VITE binance BTC 2020-04-13 11:59:07+00:00 1129771868 151 GVT ? ? 2020-07-04 16:00:28+00:00 1129771868 153 NXS ? ? 2020-07-21 16:00:42+00:00 1411081801 29 BRD binance BTC 2021-05-02 18:00:12+00:00 1411081801 33 EVX binance BTC 2021-05-22 17:00:10+00:00 1411081801 37 ACM binance BTC 2021-06-05 18:00:13+00:00 1365959417 14 NEBL binance BTC 2019-01-03 15:45:32+00:00 1365959417 25 GXS binance BTC 2019-01-20 18:00:03+00:00 1365959417 27 HC binance ? 2019-01-25 18:00:35+00:00 1365959417 28 WINGS binance ? 2019-01-27 18:00:21+00:00 1365959417 35 STORJ binance ? 2019-02-04 16:30:49+00:00 1365959417 38 GXS binance ? 2019-02-10 18:00:40+00:00 1365959417 42 EDO binance ? 2019-02-16 18:00:26+00:00 1365959417 46 HC binance ? 2019-02-23 17:00:35+00:00 1365959417 49 AST binance ? 2019-03-02 14:00:36+00:00 1365959417 60 BLZ binance ? 2019-03-15 15:29:44+00:00 1365959417 69 SNM binance ? 2019-04-04 13:29:34+00:00 1365959417 70 NEBL binance ? 2019-04-08 16:36:03+00:00 1365959417 79 RDN binance ? 2019-04-24 17:00:24+00:00 1365959417 84 KNC binance ? 2019-05-14 14:00:07+00:00 1365959417 85 WPR binance ? 2019-05-15 15:00:17+00:00 1365959417 85 HC binance ? 2019-05-16 16:59:13+00:00 1365959417 93 POA binance BTC 2019-05-26 21:36:37+00:00 1365959417 93 BLZ binance ? 2019-05-27 17:00:15+00:00 1365959417 98 PIVX binance ? 2019-06-02 16:00:11+00:00 1365959417 103 ARN binance ? 2019-06-21 19:00:37+00:00 1365959417 104 BLZ binance ? 2019-06-24 18:36:26+00:00 1365959417 105 KNC binance ? 2019-06-25 17:00:39+00:00 1365959417 106 EVX binance ? 2019-06-29 18:00:01+00:00 1365959417 112 ADX binance ? 2019-07-05 17:00:29+00:00 1365959417 123 BLZ binance ? 2019-07-28 17:00:13+00:00 1365959417 124 ARDR binance ? 2019-08-04 17:29:21+00:00 1365959417 126 SNM binance ? 2019-08-07 17:04:49+00:00 1365959417 128 STORJ binance ? 2019-08-10 20:05:49+00:00 1365959417 130 CVC binance ? 2019-08-14 02:36:03+00:00 1365959417 130 GVT binance ? 2019-08-14 16:00:11+00:00 1365959417 131 DATA binance ? 2019-08-15 20:00:24+00:00 1365959417 131 SNGLS binance ? 2019-08-16 17:00:08+00:00 1365959417 132 POWR binance ? 2019-08-24 17:02:02+00:00 1365959417 143 NXS binance ? 2019-10-02 18:00:17+00:00 1365959417 148 ARK binance ? 2019-10-18 16:30:19+00:00 1365959417 148 EDO binance ? 2019-10-23 16:00:22+00:00 1365959417 153 BRD binance BTC 2019-12-23 16:30:11+00:00 1365959417 156 NAV binance ? 2020-02-20 16:02:41+00:00 1365959417 156 DNT binance ? 2020-02-27 16:00:45+00:00 1365959417 159 SNGLS binance ? 2020-03-08 19:00:10+00:00 1365959417 159 NAV binance ? 2020-03-09 20:00:01+00:00 1365959417 160 BRD binance ? 2020-03-11 20:00:25+00:00 1365959417 162 NXS binance ? 2020-03-12 17:00:00+00:00 1365959417 162 NEBL binance ? 2020-03-15 20:00:12+00:00 1365959417 162 NAV binance ? 2020-03-16 15:59:55+00:00 1365959417 163 RLC binance ? 2020-03-17 17:00:02+00:00 1365959417 166 EVX binance ? 2020-03-21 16:40:05+00:00 1365959417 167 NXS binance ? 2020-03-25 16:00:13+00:00 1365959417 168 EDO binance ? 2020-03-26 16:00:33+00:00 1365959417 169 RLC binance ? 2020-03-27 15:58:38+00:00 1365959417 170 SNGLS binance ? 2020-04-01 11:59:02+00:00 1365959417 171 ARK binance BTC 2020-04-03 18:00:07+00:00 1365959417 171 ZEN binance BTC 2020-04-03 19:00:02+00:00 1365959417 172 BNT binance BTC 2020-04-06 18:00:04+00:00 1365959417 172 ARN binance BTC 2020-04-07 18:00:06+00:00 1365959417 174 EDO binance BTC 2020-04-10 18:00:11+00:00 1365959417 177 MITH binance BTC 2020-04-14 16:00:26+00:00 1365959417 180 RDN binance BTC 2020-04-21 13:58:56+00:00 1365959417 188 PPT binance BTC 2020-05-03 17:30:01+00:00 1365959417 204 CTXC binance BTC 2020-06-03 16:07:15+00:00 1365959417 210 GVT binance BTC 2020-07-04 16:00:42+00:00 1365959417 212 NXS binance BTC 2020-07-21 16:00:29+00:00 1365959417 214 PPT binance ? 2020-08-04 16:00:00+00:00 1365959417 218 QLC binance BTC 2020-09-06 16:00:50+00:00 1365959417 219 STPT binance ? 2020-09-08 16:00:39+00:00 1365959417 228 RDN binance ? 2020-10-17 16:09:20+00:00 1365959417 228 OAX binance ? 2020-10-18 18:00:31+00:00 1486981201 102 GHD binance ? 2021-07-06 15:00:01+00:00 1486981201 136 SNX binance ? 2021-08-24 12:30:03+00:00 1486981201 136 GRT binance ? 2021-08-26 09:00:02+00:00 1486981201 136 DGB binance ? 2021-08-28 10:10:01+00:00 1342400398 113 BNT binance ? 2019-01-06 21:01:30+00:00 1342400398 113 EVX binance ? 2019-01-08 16:03:02+00:00 1342400398 121 HC binance ? 2019-01-25 18:00:45+00:00 1342400398 121 BNT binance ? 2019-01-26 16:29:55+00:00 1342400398 122 WINGS binance BTC 2019-01-27 18:00:05+00:00 1342400398 123 BQX binance ? 2019-01-29 14:00:23+00:00 1342400398 124 GRS binance ? 2019-02-02 18:00:06+00:00 1342400398 124 STORJ binance ? 2019-02-04 16:30:25+00:00 1342400398 126 GXS binance ? 2019-02-10 18:00:53+00:00 1342400398 126 EDO binance ? 2019-02-16 18:01:40+00:00 1342400398 127 HC binance ? 2019-02-23 17:00:01+00:00 1342400398 129 AST binance ? 2019-03-02 16:37:58+00:00 1342400398 129 GRS binance ? 2019-03-05 16:31:53+00:00 1342400398 129 BNT binance ? 2019-03-08 18:04:15+00:00 1342400398 129 BLZ binance ? 2019-03-15 15:30:05+00:00 1342400398 129 BNT binance ? 2019-03-17 14:01:45+00:00 1342400398 129 ONT binance ? 2019-03-21 03:25:07+00:00 1409557641 35 STMX binance USDT 2021-06-14 13:00:16+00:00 1409557641 37 BLZ binance USDT 2021-06-16 11:30:11+00:00 1409557641 38 NKN binance USDT 2021-06-17 12:00:06+00:00 1409557641 42 INJ binance USDT 2021-06-21 11:00:11+00:00 1409557641 53 NKN binance USDT 2021-07-05 13:00:14+00:00 1409557641 70 AKRO binance USDT 2021-07-30 11:01:21+00:00 1236950740 12 CND binance BTC 2021-06-06 17:00:30+00:00 1236950740 28 UFO hotbit USDT 2021-07-09 16:30:04+00:00 1236950740 28 CWV hotbit USDT 2021-07-12 16:30:09+00:00 1236950740 28 QOB hotbit USDT 2021-07-13 14:30:08+00:00 1144292688 64 CURE ? ? 2019-03-19 20:01:23+00:00 1144292688 69 DTB ? ? 2019-03-28 20:00:56+00:00 1144292688 72 BRX ? ? 2019-04-04 20:00:02+00:00 1144292688 75 MET yobit BTC 2019-04-11 20:00:05+00:00 1144292688 110 VC coineal.com USDT 2019-06-25 23:50:14+00:00 1188252748 4 NAV binance BTC 2019-08-01 20:00:10+00:00 1188252748 9 CVC binance ? 2019-08-13 20:00:03+00:00 1188252748 16 SNT binance BTC 2019-08-22 20:00:03+00:00 1188252748 21 BNT binance BTC 2019-09-09 20:00:04+00:00 1188252748 26 RDN binance ? 2019-10-15 20:00:02+00:00 1188252748 30 OST binance BTC 2019-10-22 18:00:21+00:00 1188252748 32 NEBL binance BTC 2019-10-25 18:00:18+00:00 1188252748 55 MORE ? ? 2019-11-27 20:00:03+00:00 1188252748 62 CURE bittrex BTC 2019-12-12 20:00:03+00:00 1188252748 109 NEBL binance ? 2020-03-16 00:13:28+00:00 1188252748 111 BNT binance ? 2020-03-17 15:55:10+00:00 1188252748 113 NEBL binance ? 2020-03-20 16:00:00+00:00 1188252748 117 APPC binance BTC 2020-03-27 21:00:00+00:00 1188252748 123 ARK binance BTC 2020-04-03 18:00:06+00:00 1188252748 123 ZEN binance BTC 2020-04-03 19:00:01+00:00 1188252748 124 BNT binance BTC 2020-04-06 18:00:03+00:00 1188252748 125 ARN binance ? 2020-04-07 18:00:06+00:00 1188252748 126 EDO binance BTC 2020-04-10 23:45:00+00:00 1297023884 9 NEBL binance BTC 2020-12-02 18:01:01+00:00 1297023884 19 STPT binance BTC 2021-01-10 18:00:25+00:00 1297023884 35 GVT binance BTC 2021-03-27 20:00:25+00:00 1417499112 1 HC binance BTC 2019-05-12 17:01:36+00:00 1417499112 122 VIA binance BTC 2021-04-11 17:01:16+00:00 1417499112 129 IDEX binance BTC 2021-04-25 17:01:52+00:00 1417499112 134 DLT binance ? 2021-05-16 17:00:40+00:00 1417499112 137 GSY yobit ETH 2021-05-21 18:59:07+00:00 1417499112 141 OAX binance BTC 2021-05-30 17:00:32+00:00 1417499112 144 CND binance BTC 2021-06-06 17:00:48+00:00 1417499112 150 WABI binance BTC 2021-06-20 17:00:41+00:00 1417499112 157 POA binance ? 2021-07-11 17:00:55+00:00 1178742148 246 BQX binance BTC 2019-02-24 17:00:21+00:00 1178742148 248 SYS binance BTC 2019-02-27 17:00:09+00:00 1178742148 283 BRD binance BTC 2019-05-25 16:00:14+00:00 1333146208 5 ARK binance BTC 2020-04-03 18:00:05+00:00 1333146208 5 ZEN binance BTC 2020-04-03 19:00:00+00:00 1333146208 7 BNT binance BTC 2020-04-06 18:00:02+00:00 1333146208 7 ARN binance BTC 2020-04-07 18:00:06+00:00 1333146208 9 EDO binance BTC 2020-04-10 18:00:09+00:00 1313461639 1 SKY binance BTC 2021-02-03 21:00:16+00:00 1313461639 3 VIB binance BTC 2021-02-05 21:00:10+00:00 1313461639 7 MDA binance BTC 2021-02-10 21:00:13+00:00 1141221379 238 BLZ binance BTC 2019-05-13 14:58:08+00:00 1141221379 238 RDN binance BTC 2019-05-15 14:59:57+00:00 1141221379 246 CND binance BTC 2019-06-03 16:00:03+00:00 1141221379 249 EDO binance BTC 2019-06-11 16:00:07+00:00 1141221379 251 APPC binance BTC 2019-06-17 16:00:06+00:00 1141221379 253 INS binance BTC 2019-06-25 16:00:04+00:00 1141221379 256 EDO binance BTC 2019-06-30 17:29:38+00:00 1141221379 257 INS binance BTC 2019-07-02 16:30:05+00:00 1141221379 257 WPR binance BTC 2019-07-04 15:00:01+00:00 1141221379 257 CND binance BTC 2019-07-05 12:30:02+00:00 1141221379 258 POE binance BTC 2019-07-11 15:59:03+00:00 1141221379 328 BNT binance BTC 2019-10-14 16:29:53+00:00 1141221379 331 EDO binance BTC 2019-10-18 16:31:03+00:00 1141221379 341 DGD binance BTC 2019-11-02 17:29:43+00:00 1141221379 466 ONG binance BTC 2020-05-26 16:00:45+00:00 1141221379 466 VIA binance BTC 2020-05-29 16:00:14+00:00 1320553215 179 EVX binance ? 2019-01-08 16:00:00+00:00 1320553215 243 RDN binance BTC 2019-05-10 16:00:00+00:00 1320553215 245 CDT binance BTC 2019-05-13 15:00:00+00:00 1320553215 257 PPT binance BTC 2019-05-31 14:59:35+00:00 1320553215 265 BRD binance BTC 2019-06-17 14:59:25+00:00 1320553215 286 RDN binance BTC 2019-07-29 15:00:02+00:00 1320553215 318 ARK binance BTC 2019-09-12 14:59:53+00:00 1320553215 330 BRD binance BTC 2019-10-03 14:59:45+00:00 1299457190 230 ONG binance BTC 2019-09-19 17:00:24+00:00 1299457190 307 STORJ binance BTC 2020-03-19 16:01:01+00:00 1299457190 310 BRD binance BTC 2020-03-24 16:00:31+00:00 1299457190 313 RLC binance BTC 2020-03-27 15:57:22+00:00 1299457190 343 VIA binance BTC 2020-05-29 16:00:18+00:00 1299457190 346 CTXC binance BTC 2020-06-03 16:00:15+00:00 1299457190 372 STPT binance BTC 2020-09-08 16:00:29+00:00 1299457190 392 STEEM binance BTC 2021-01-18 17:00:30+00:00 1354503053 249 QLC binance BTC 2019-08-19 16:00:10+00:00 1354503053 251 BTS binance BTC 2019-08-22 16:01:09+00:00 1354503053 271 ONG binance BTC 2019-09-19 17:00:28+00:00 1214538537 131 MTH yobit BTC 2019-01-14 17:01:18+00:00 1214538537 133 REN yobit BTC 2019-01-17 17:02:31+00:00 1214538537 134 VIA yobit BTC 2019-01-20 17:06:01+00:00 1214538537 135 TNT yobit BTC 2019-01-23 19:00:35+00:00 1214538537 136 WTC yobit BTC 2019-01-25 17:01:11+00:00 1214538537 137 REN yobit BTC 2019-01-26 19:00:30+00:00 1214538537 138 TNT yobit BTC 2019-02-06 19:00:34+00:00 1214538537 139 THETA yobit BTC 2019-02-07 17:01:13+00:00 1214538537 141 DADI yobit BTC 2019-02-15 17:02:20+00:00 1214538537 141 AOA yobit BTC 2019-02-16 17:00:21+00:00 1214538537 141 UKG yobit BTC 2019-02-17 17:02:55+00:00 1214538537 143 BLZ yobit BTC 2019-02-19 17:00:47+00:00 1214538537 143 CRPT yobit BTC 2019-02-20 17:00:24+00:00 1214538537 143 STORJ yobit BTC 2019-02-21 17:01:13+00:00 1214538537 144 UKG yobit BTC 2019-02-23 17:00:00+00:00 1214538537 144 BQX binance BTC 2019-02-24 17:01:47+00:00 1214538537 144 STORJ yobit BTC 2019-02-25 17:01:02+00:00 1214538537 146 SYS binance BTC 2019-02-27 17:00:51+00:00 1214538537 148 CRPT yobit BTC 2019-03-01 17:01:01+00:00 1214538537 177 HC binance BTC 2019-05-12 17:00:27+00:00 1279502182 80 QSP binance ? 2020-06-13 16:02:11+00:00 1279502182 84 EVX binance ? 2020-06-24 16:01:31+00:00 1279502182 89 GVT binance ? 2020-07-04 17:09:17+00:00 1279502182 92 ADX binance ? 2020-07-07 16:01:31+00:00 1237041098 211 HC binance BTC 2019-01-25 18:00:13+00:00 1237041098 213 WINGS binance BTC 2019-01-27 18:00:09+00:00 1237041098 215 GRS binance ? 2019-02-02 18:00:15+00:00 1237041098 217 STORJ binance ? 2019-02-04 16:30:25+00:00 1299055913 139 REQ binance BTC 2019-06-08 13:00:02+00:00 1167785945 25 CTXC binance BTC 2020-06-03 16:04:31+00:00 1167785945 27 VIA binance ? 2020-06-10 16:00:13+00:00 1167785945 37 ADX binance ? 2020-07-07 16:01:39+00:00 1196424883 201 DOX yobit BTC 2019-02-13 19:30:00+00:00 1196424883 202 PIE yobit BTC 2019-02-15 19:30:00+00:00 1475300028 122 SNM ? BTC 2021-01-08 21:00:18+00:00 1475300028 124 NAS ? ? 2021-01-14 21:00:15+00:00 1475300028 133 APPC ? ? 2021-01-31 17:00:19+00:00 1475300028 133 PNT ? ? 2021-01-31 21:00:22+00:00 1475300028 136 VIB ? ? 2021-02-05 21:00:12+00:00 1475300028 136 BRD binance BTC 2021-02-06 18:03:07+00:00 1475300028 140 MDA ? ? 2021-02-10 21:00:24+00:00 1475300028 141 NEBL ? ? 2021-02-13 21:00:13+00:00 1475300028 147 GVT ? ? 2021-02-20 17:00:12+00:00 1475300028 148 NXS binance ? 2021-02-21 17:00:11+00:00 1475300028 157 PPT ? ? 2021-03-07 17:00:37+00:00 1475300028 183 VIA ? ? 2021-04-11 17:00:18+00:00 1475300028 190 VIA ? ? 2021-04-21 21:00:12+00:00 1475300028 192 RDN ? ? 2021-04-24 21:00:12+00:00 1475300028 192 IDEX ? ? 2021-04-25 17:00:19+00:00 1475300028 196 DLT ? ? 2021-05-01 17:01:26+00:00 1475300028 215 OAX binance ? 2021-05-30 17:00:13+00:00 1475300028 218 CND binance ? 2021-06-06 17:00:27+00:00 1475300028 249 DREP binance ? 2021-07-25 17:00:20+00:00 1475300028 261 NAX ? ? 2021-08-22 17:00:30+00:00 1475300028 264 BRD ? ? 2021-08-29 17:00:36+00:00 1475300028 268 VIB ? ? 2021-09-05 17:00:24+00:00 1475300028 275 FXS ? ? 2021-09-19 17:00:26+00:00 1475300028 295 EVX ? ? 2021-10-24 17:00:30+00:00 1475300028 295 NAS binance BTC 2021-11-14 15:00:27+00:00 1475300028 310 SNM binance BTC 2021-12-07 16:00:22+00:00 1475300028 318 NEBL ? ? 2022-01-02 17:00:26+00:00 1342151942 262 ADX binance BTC 2019-07-05 17:00:48+00:00 1342151942 271 BLZ binance ? 2019-07-28 16:59:59+00:00 1342151942 276 SNM binance ? 2019-08-07 16:59:50+00:00 1342151942 279 DATA binance ? 2019-08-15 20:08:20+00:00 1342151942 284 VIB binance ? 2019-08-21 18:00:47+00:00 1342151942 294 DATA binance ? 2019-09-08 18:00:08+00:00 1342151942 297 RLC binance BTC 2019-09-11 19:00:03+00:00 1342151942 318 RDN binance BTC 2019-10-15 20:00:04+00:00 1342151942 342 LRC ? ? 2019-11-16 05:01:23+00:00 1342151942 342 NAV binance BTC 2020-01-16 19:00:06+00:00 1342151942 344 SNGLS binance BTC 2020-03-08 18:59:47+00:00 1342151942 350 CTXC binance BTC 2020-06-03 16:00:23+00:00 1420299757 17 DLT ? BTC 2021-05-01 17:00:08+00:00 1462243546 185 CTXC Binance ? 2020-06-03 16:00:28+00:00 1462243546 188 VIA binance BTC 2020-06-10 15:59:48+00:00 1462243546 190 QSP binance ? 2020-06-13 16:01:28+00:00 1462243546 196 EVX binance ? 2020-06-24 16:01:22+00:00 1462243546 200 GVT binance ? 2020-07-04 16:01:21+00:00 1462243546 203 ADX binance ? 2020-07-07 16:01:12+00:00 1254489313 16 NAV ? ? 2020-04-15 14:45:42+00:00 1254489313 21 RDN binance ? 2020-04-21 13:58:58+00:00 1254489313 22 SNM binance ? 2020-04-26 03:16:10+00:00 1254489313 24 VIBE binance ? 2020-04-28 16:02:13+00:00 1254489313 41 RLC binance ? 2020-05-23 15:47:28+00:00 1254489313 68 TCT binance BTC 2020-07-02 15:56:36+00:00 1254489313 72 GO binance BTC 2020-07-10 16:00:07+00:00 1254489313 75 OST binance BTC 2020-07-14 10:46:56+00:00 1254489313 79 SNT binance ? 2020-07-22 16:00:46+00:00 1254489313 198 EVX binance BTC 2021-01-30 16:00:02+00:00 1254489313 201 ARDR binance BTC 2021-02-09 16:00:11+00:00 1254489313 203 ADX binance BTC 2021-02-13 16:02:32+00:00 1254489313 224 VIA binance BTC 2021-03-13 16:59:54+00:00 1254489313 232 LRC binance BTC 2021-03-28 16:00:04+00:00 1254489313 234 CTXC binance BTC 2021-04-04 16:00:52+00:00 1254489313 251 PIVX binance ? 2021-04-30 15:59:36+00:00 1254489313 252 DLT binance BTC 2021-05-03 16:00:03+00:00 1254489313 295 BTS binance USDT 2021-07-11 16:00:41+00:00 1254489313 301 BZRX binance ? 2021-07-25 15:48:08+00:00 1254489313 354 PIVX binance BTC 2021-10-24 16:00:27+00:00 1353568791 2 NEBL binance ? 2020-03-15 20:00:14+00:00 1353568791 3 BNT binance ? 2020-03-17 15:55:13+00:00 1353568791 10 APPC binance BTC 2020-03-27 21:00:00+00:00 1353568791 14 ARK binance BTC 2020-04-03 18:00:05+00:00 1189524886 5 NEBL binance BTC 2019-10-20 18:00:01+00:00 1425729575 10 IDEX binance ? 2021-04-25 17:01:21+00:00 1425729575 12 DLT binance ? 2021-05-01 17:00:08+00:00 1425729575 17 WPR binance ? 2021-05-09 17:00:11+00:00 1425729575 20 DLT binance ? 2021-05-16 17:00:02+00:00 1425729575 30 OAX binance BTC 2021-05-30 17:00:03+00:00 1425729575 32 CND binance ? 2021-06-06 17:00:08+00:00 1425729575 39 WABI binance ? 2021-06-20 17:00:05+00:00 1425729575 44 MTH binance ? 2021-06-27 17:00:04+00:00 1345038659 2 SYS binance ? 2020-07-16 16:58:18+00:00 1345038659 5 NXS binance ? 2020-07-21 15:55:53+00:00 1345038659 10 PPT binance ? 2020-08-04 17:53:23+00:00 1345038659 18 QLC binance ? 2020-09-06 16:00:45+00:00 1345038659 19 STPT binance ? 2020-09-08 16:00:29+00:00 1345038659 21 QSP binance ? 2020-09-10 17:55:40+00:00 1345038659 24 GVT binance ? 2020-09-17 18:02:18+00:00 1345038659 29 OAX binance ? 2020-10-18 18:00:18+00:00 1345038659 35 ARDR binance ? 2020-11-02 15:56:10+00:00 1345038659 37 APPC binance ? 2020-11-04 17:00:32+00:00 1345038659 41 BRD binance ? 2020-11-09 16:00:51+00:00 1345038659 44 BCPT binance ? 2020-11-14 17:34:32+00:00 1345038659 49 MDA binance ? 2020-11-27 21:00:30+00:00 1345038659 52 NEBL binance ? 2020-12-02 18:00:25+00:00 1345038659 54 PNT binance ? 2020-12-04 23:02:03+00:00 1345038659 58 PIVX binance ? 2020-12-11 18:05:33+00:00 1345038659 59 MDA binance ? 2021-01-03 17:00:19+00:00 1345038659 61 CTXC binance ? 2021-01-07 15:59:59+00:00 1345038659 61 RCN binance ? 2021-01-07 21:00:30+00:00 1345038659 62 VIB binance ? 2021-01-08 17:00:33+00:00 1345038659 68 NXS binance ? 2021-01-15 17:00:55+00:00 1345038659 70 IDEX binance ? 2021-01-17 17:00:55+00:00 1345038659 73 GVT binance ? 2021-01-23 21:00:46+00:00 1345038659 76 PNT binance ? 2021-01-31 21:00:20+00:00 1345038659 79 SKY binance ? 2021-02-03 21:00:20+00:00 1211795583 2 QSP binance ? 2019-08-29 18:00:54+00:00 1211795583 4 BNT binance ? 2019-09-09 20:02:08+00:00 1211795583 8 BLZ binance BTC 2019-09-17 16:00:01+00:00 1211795583 9 POA binance ? 2019-09-18 13:01:24+00:00 1211795583 13 EDO binance BTC 2019-09-25 16:00:17+00:00 1211795583 13 BLZ binance BTC 2019-09-26 16:00:00+00:00 1211795583 14 NXS binance BTC 2019-10-02 18:00:33+00:00 1211795583 18 OST binance ? 2019-10-22 18:00:46+00:00 1211795583 19 ONG binance ? 2019-10-29 18:00:23+00:00 1211795583 21 NEBL binance ? 2019-11-05 16:00:30+00:00 1211795583 22 BCD binance ? 2019-11-11 17:01:33+00:00 1211795583 24 EDO binance ? 2019-11-21 18:00:20+00:00 1211795583 34 NAV binance ? 2019-12-19 17:00:23+00:00 1211795583 41 EDO binance ? 2020-01-08 17:00:43+00:00 1211795583 42 ONG binance ? 2020-01-09 17:00:19+00:00 1211795583 43 GNT binance ? 2020-01-10 18:00:16+00:00 1211795583 55 NULS binance ? 2020-01-30 17:00:27+00:00 1211795583 72 SYS binance ? 2020-02-26 18:00:20+00:00 1211795583 79 QLC binance BTC 2020-03-12 16:00:39+00:00 1211795583 79 TCT binance BTC 2020-03-13 16:00:15+00:00 1211795583 85 OAX binance ? 2020-03-24 15:58:59+00:00 1211795583 87 EDO binance ? 2020-03-26 16:00:04+00:00 1211795583 92 GRS binance ? 2020-04-02 16:00:19+00:00 1211795583 99 GNT binance ? 2020-04-10 16:00:29+00:00 1211795583 103 MITH binance ? 2020-04-14 16:02:26+00:00 1211795583 104 GVT binance ? 2020-04-15 15:57:07+00:00 1211795583 111 BNT binance ? 2020-04-24 15:59:36+00:00 1211795583 118 CVC binance BTC 2020-05-05 16:00:30+00:00 1211795583 121 AST binance ? 2020-05-09 16:00:34+00:00 1211795583 125 YOYO binance ? 2020-05-14 16:00:21+00:00 1211795583 133 VIA binance ? 2020-05-29 16:00:13+00:00 1211795583 137 CTXC binance ? 2020-06-03 16:00:38+00:00 1211795583 138 PPT binance ? 2020-06-08 16:06:20+00:00 1211795583 139 VIA binance ? 2020-06-10 15:59:50+00:00 1211795583 141 QSP binance ? 2020-06-13 16:00:46+00:00 1211795583 142 GXS binance ? 2020-06-15 16:00:45+00:00 1211795583 147 EVX binance ? 2020-06-24 16:00:35+00:00 1211795583 159 ELF binance ? 2020-07-24 17:00:45+00:00 1211795583 166 PPT binance ? 2020-08-04 18:00:50+00:00 1211795583 182 CDT binance ? 2020-09-16 16:00:25+00:00 1211795583 183 GVT binance ? 2020-09-17 18:00:37+00:00 1451771374 17 RDN binance ? 2020-04-21 13:58:58+00:00 1451771374 60 GO binance BTC 2020-07-10 16:00:07+00:00 1451771374 61 OST binance BTC 2020-07-14 10:46:55+00:00 1451771374 62 SNT binance ? 2020-07-22 16:00:46+00:00 1451771374 167 EVX binance BTC 2021-01-30 16:00:02+00:00 1451771374 173 ARDR binance BTC 2021-02-09 16:00:12+00:00 1222005393 11 NULS ? ? 2021-04-11 16:30:49+00:00 1292278703 248 BQX binance ? 2019-04-22 17:29:52+00:00 1292278703 277 STORJ binance ? 2019-08-10 20:00:11+00:00 1292278703 291 GO ? ? 2019-09-07 08:35:29+00:00 1251058940 125 CTXC binance ? 2020-06-03 16:09:18+00:00 1251058940 131 VIA binance ? 2020-06-10 16:00:38+00:00 1251058940 134 QSP binance ? 2020-06-13 16:01:01+00:00 1251058940 140 EVX binance ? 2020-06-24 16:02:26+00:00 1251058940 147 GVT binance ? 2020-07-04 16:02:09+00:00 1251058940 149 ADX binance ? 2020-07-07 16:02:06+00:00 1251058940 422 WNXM binance BTC 2021-10-10 17:01:10+00:00 1251058940 435 EVX binance ? 2021-10-24 17:00:43+00:00 1251058940 438 EZ binance ? 2021-10-31 17:00:44+00:00 1251058940 444 MTH binance BTC 2021-11-07 17:00:27+00:00 1251058940 447 NAS binance BTC 2021-11-14 15:00:24+00:00 1251058940 450 MDA binance ? 2021-11-23 15:00:24+00:00 1251058940 452 PHB binance ? 2021-11-28 17:00:27+00:00 1251058940 465 APPC binance BTC 2021-12-19 15:00:23+00:00 1251058940 470 OAX binance ? 2021-12-28 15:00:42+00:00 1251058940 474 NEBL binance BTC 2022-01-02 17:02:09+00:00 1251058940 477 UNIC kucoin USDT 2022-01-08 17:00:51+00:00 1251058940 480 ORC kucoin USDT 2022-01-15 17:00:29+00:00 1121631209 286 REQ yobit ? 2019-08-04 17:00:02+00:00 1121631209 288 MANA yobit BTC 2019-08-09 17:00:05+00:00 1207973768 121 DLT binance ? 2021-05-16 17:00:40+00:00 1207973768 125 GSY yobit ETH 2021-05-21 18:59:06+00:00 1207973768 129 OAX binance ? 2021-05-30 17:00:32+00:00 1207973768 132 CND binance BTC 2021-06-06 17:24:23+00:00 1207973768 138 WABI binance BTC 2021-06-20 17:00:41+00:00 1207973768 145 POA binance BTC 2021-07-11 17:00:55+00:00 1243320279 2 GVT binance ? 2020-08-10 01:51:26+00:00 1243320279 2 ADX binance ? 2020-08-10 01:58:54+00:00 1122577430 247 SUB binance BTC 2019-02-08 16:30:43+00:00 1122577430 288 ETHOS binance BTC 2019-04-01 17:00:13+00:00 1122577430 301 BQX binance ? 2019-04-22 17:29:51+00:00 1122577430 343 BNT binance BTC 2019-06-18 16:00:12+00:00 1122577430 502 LRC binance ? 2019-09-05 16:00:21+00:00 1122577430 531 ELF binance ? 2020-04-10 15:58:19+00:00 1122577430 538 RLC binance ? 2020-04-20 16:00:03+00:00 1122577430 913 NEBL binance BTC 2021-08-24 15:00:04+00:00 1122577430 921 VIB binance ? 2021-09-05 17:00:07+00:00 1296614021 3 NEBL binance BTC 2019-10-25 18:00:18+00:00 1296614021 20 MORE bittrex BTC 2019-11-27 20:00:03+00:00 1296614021 27 APPC binance BTC 2020-03-27 21:00:00+00:00 1296614021 32 ARK binance BTC 2020-04-03 18:00:06+00:00 1296614021 32 ZEN binance BTC 2020-04-03 19:00:01+00:00 1296614021 33 BNT binance BTC 2020-04-06 18:00:03+00:00 1296614021 34 ARN binance ? 2020-04-07 18:00:06+00:00 1199320434 9 WTC yobit BTC 2019-01-03 17:00:24+00:00 1199320434 11 KMD cryptopia BTC 2019-01-05 17:00:09+00:00 1199320434 13 OK yobit BTC 2019-01-12 17:00:35+00:00 1199320434 14 THETA yobit BTC 2019-01-13 17:01:38+00:00 1199320434 15 MTH yobit BTC 2019-01-14 17:00:59+00:00 1199320434 17 REN yobit BTC 2019-01-17 17:00:26+00:00 1199320434 18 VIA yobit BTC 2019-01-20 17:00:46+00:00 1199320434 19 TNT yobit BTC 2019-01-23 19:00:40+00:00 1199320434 20 WTC yobit BTC 2019-01-25 17:00:42+00:00 1199320434 21 REN yobit BTC 2019-01-26 19:00:18+00:00 1199320434 22 TNT yobit BTC 2019-02-06 19:00:17+00:00 1199320434 23 THETA yobit BTC 2019-02-07 17:00:23+00:00 1199320434 25 DADI yobit BTC 2019-02-15 17:01:51+00:00 1199320434 25 AOA yobit BTC 2019-02-16 17:00:20+00:00 1199320434 25 UKG yobit BTC 2019-02-17 17:00:10+00:00 1199320434 26 WTC yobit BTC 2019-02-18 17:00:20+00:00 1199320434 26 BLZ yobit BTC 2019-02-19 17:00:40+00:00 1199320434 26 CRPT yobit BTC 2019-02-20 17:01:25+00:00 1199320434 26 STORJ yobit BTC 2019-02-21 17:00:20+00:00 1199320434 27 UKG yobit BTC 2019-02-23 17:00:33+00:00 1249499797 18 IDEX binance BTC 2021-04-25 17:00:10+00:00 1249499797 34 OAX binance BTC 2021-05-30 17:00:02+00:00 1249499797 46 WABI binance BTC 2021-06-20 17:01:31+00:00 1249499797 65 POA binance BTC 2021-07-11 17:00:02+00:00 1249499797 77 DREP binance BTC 2021-07-25 17:00:01+00:00 1327820978 285 AMA BITMART USDT 2021-07-05 16:00:59+00:00 1327820978 356 BRD binance BTC 2021-10-31 15:00:03+00:00 1327820978 367 MDA binance BTC 2021-11-23 15:00:39+00:00 1380347776 1 SHRF ? ? 2021-07-10 11:30:16+00:00 1380347776 1 MCT ? ? 2021-07-11 11:30:06+00:00 1380347776 2 BBEL ? ? 2021-07-14 11:30:16+00:00 1380347776 9 RYTK ? ? 2021-07-25 14:00:16+00:00 1380347776 9 CRUMB ? ? 2021-07-26 12:00:09+00:00 1380347776 10 HONOR ? ? 2021-07-27 12:00:12+00:00 1380347776 11 CREA ? ? 2021-07-28 12:00:09+00:00 1380347776 14 GUA ? ? 2021-08-03 12:00:06+00:00 1380347776 16 CRACK ? ? 2021-08-07 12:00:24+00:00 1380347776 17 GTEA ? ? 2021-08-09 12:00:14+00:00 1380347776 18 HGR ? ? 2021-08-12 12:00:17+00:00 1380347776 20 ORB ? ? 2021-08-16 12:00:30+00:00 1174077730 209 SUB binance BTC 2019-02-08 16:30:43+00:00 1174077730 232 POLY binance ? 2019-03-08 16:00:41+00:00 1174077730 244 POWR binance ? 2019-03-27 16:00:15+00:00 1234654233 0 PIVX binance ? 2019-07-06 13:30:04+00:00 1234654233 19 RCN binance BTC 2019-08-10 16:00:49+00:00 1234654233 23 VIA binance BTC 2019-08-16 16:00:54+00:00 1234654233 23 ONG binance BTC 2019-08-19 16:00:02+00:00 1234654233 31 LRC binance BTC 2019-09-05 16:00:20+00:00 1234654233 86 BRD binance BTC 2020-03-15 13:02:06+00:00 1234654233 86 NEBL binance BTC 2020-03-15 20:00:13+00:00 1234654233 90 NEBL binance BTC 2020-03-20 15:59:59+00:00 1234654233 93 NEBL binance BTC 2020-03-22 16:00:02+00:00 1234654233 101 LUN binance ? 2020-04-17 13:57:22+00:00 1234654233 105 RDN ? ? 2020-04-21 13:58:56+00:00 1246270015 137 GAM Bittrex BTC 2019-02-12 20:00:04+00:00 1246270015 142 GBG Bittrex BTC 2019-02-21 20:00:04+00:00 1288625943 175 SCL yobit BTC 2019-02-04 20:00:05+00:00 1288625943 179 LEND yobit BTC 2019-02-14 20:00:44+00:00 1288625943 184 SNT coinexchange BTC 2019-02-27 19:00:03+00:00 1288625943 184 BLZ yobit BTC 2019-02-27 20:00:02+00:00 1288625943 187 LEND yobit BTC 2019-03-08 19:00:11+00:00 1288625943 190 SWM yobit BTC 2019-03-13 19:00:04+00:00 1288625943 193 VERI yobit BTC 2019-03-17 19:00:09+00:00 1288625943 196 CTXC yobit BTC 2019-03-22 19:30:19+00:00 1288625943 200 VERI yobit BTC 2019-04-03 19:00:12+00:00 1288625943 204 C20 yobit BTC 2019-04-14 20:00:04+00:00 1288625943 207 FTM yobit BTC 2019-04-18 19:00:06+00:00 1288625943 210 TFD yobit BTC 2019-05-05 19:00:07+00:00 1288625943 220 GVT yobit BTC 2019-09-02 18:00:12+00:00 1288625943 223 QKC yobit BTC 2019-09-11 18:00:05+00:00 1288625943 229 PPT yobit BTC 2019-10-08 20:00:08+00:00 1288625943 232 PPT yobit BTC 2019-10-11 20:00:11+00:00 1288625943 236 MDA yobit BTC 2019-10-20 19:00:05+00:00 1288625943 240 MDA yobit BTC 2019-10-27 17:00:05+00:00 1288625943 242 QKC yobit BTC 2019-10-30 17:00:04+00:00 1288625943 245 QKC yobit BTC 2019-11-03 20:05:09+00:00 1288625943 252 MDA yobit BTC 2019-11-13 14:00:19+00:00 1288625943 255 QKC yobit BTC 2019-11-30 15:00:11+00:00 1288625943 258 MDA yobit BTC 2019-12-05 15:00:14+00:00 1288625943 260 FTM yobit BTC 2019-12-14 14:00:06+00:00 1288625943 263 REN yobit BTC 2019-12-18 15:00:07+00:00 1288625943 265 FTM yobit BTC 2019-12-21 14:00:06+00:00 1288625943 269 QKC yobit BTC 2020-01-09 14:00:13+00:00 1288625943 271 PPT yobit BTC 2020-01-16 15:00:07+00:00 1288625943 279 QKC yobit BTC 2020-02-11 20:00:07+00:00 1158196698 26 STEEL hotbit USDT 2021-06-17 18:05:33+00:00 1158196698 26 ITEN hotbit ? 2021-06-18 11:55:56+00:00 1158196698 26 DBXC ? ? 2021-06-18 19:35:43+00:00 1158196698 26 GDM hotbit USDT 2021-06-19 15:00:10+00:00 1258431324 250 TOP hotbit ? 2021-06-23 18:00:06+00:00 1258431324 250 DAI yobit BTC 2019-04-14 17:00:11+00:00 1258431324 250 TNT yobit BTC 2019-04-15 17:00:17+00:00 1258431324 253 PPT yobit BTC 2019-04-19 17:00:04+00:00 1258431324 254 STORM yobit BTC 2019-04-20 17:00:11+00:00 1258431324 255 SOUL kucoin BTC 2019-04-22 16:00:13+00:00 1258431324 256 ENJ yobit BTC 2019-04-23 17:00:13+00:00 1258431324 257 PAX yobit BTC 2019-04-24 17:00:11+00:00 1258431324 260 UKG yobit BTC 2019-04-27 17:00:12+00:00 1258431324 261 CTXC yobit BTC 2019-04-28 17:00:10+00:00 1258431324 262 BLZ yobit BTC 2019-04-30 17:00:09+00:00 1258431324 263 PPT yobit BTC 2019-05-01 17:00:11+00:00 1258431324 264 PPT yobit BTC 2019-05-04 17:00:13+00:00 1258431324 264 ENJ yobit BTC 2019-05-05 17:00:12+00:00 1258431324 267 PAX yobit BTC 2019-05-08 17:00:09+00:00 1258431324 269 PAX yobit BTC 2019-05-10 17:00:08+00:00 1258431324 271 HC binance BTC 2019-05-12 17:00:05+00:00 1258431324 275 PAX yobit BTC 2019-05-18 17:00:11+00:00 1258431324 275 LEND yobit BTC 2019-05-19 17:00:10+00:00 1258431324 277 PAX yobit BTC 2019-05-23 17:01:36+00:00 1258431324 278 BRD binance BTC 2019-05-25 16:00:12+00:00 1258431324 290 PAX yobit BTC 2019-06-11 17:00:10+00:00 1258431324 291 DLT yobit BTC 2019-06-12 17:00:09+00:00 1258431324 292 PPT yobit BTC 2019-06-14 17:00:11+00:00 1258431324 293 LEND yobit BTC 2019-06-15 17:00:12+00:00 1258431324 295 LEND yobit BTC 2019-06-18 17:00:09+00:00 1258431324 296 PAX yobit BTC 2019-06-20 17:00:05+00:00 1258431324 297 REQ yobit BTC 2019-06-21 17:00:06+00:00 1258431324 298 BLZ yobit BTC 2019-06-22 17:00:04+00:00 1258431324 299 BAT yobit BTC 2019-06-25 17:00:59+00:00 1258431324 300 PPT yobit BTC 2019-06-26 17:00:10+00:00 1258431324 303 LEND yobit BTC 2019-07-05 17:00:05+00:00 1258431324 304 FUN yobit BTC 2019-07-06 17:00:05+00:00 1258431324 305 PPT yobit BTC 2019-07-07 17:00:06+00:00 1258431324 307 FUN yobit BTC 2019-07-11 17:00:06+00:00 1258431324 309 BLZ yobit BTC 2019-07-13 17:00:07+00:00 1258431324 311 FUN yobit BTC 2019-07-21 17:00:04+00:00 1258431324 313 MATIC yobit BTC 2019-07-27 17:00:05+00:00 1258431324 314 QKC yobit BTC 2019-07-28 17:00:04+00:00 1258431324 315 MANA yobit BTC 2019-07-29 17:00:08+00:00 1258431324 317 FUN yobit BTC 2019-08-03 17:00:05+00:00 1258431324 318 REQ yobit BTC 2019-08-04 17:00:05+00:00 1258431324 320 MANA yobit BTC 2019-08-09 17:00:08+00:00 1258431324 321 STORJ binance ? 2019-08-10 20:00:04+00:00 1258431324 321 MANA yobit BTC 2019-08-11 17:00:06+00:00 1258431324 322 WPR yobit BTC 2019-08-12 17:00:07+00:00 1258431324 323 DLT yobit BTC 2019-08-15 17:00:10+00:00 1258431324 324 DLT yobit BTC 2019-08-16 17:00:08+00:00 1258431324 325 TFD yobit BTC 2019-08-17 17:00:06+00:00 1258431324 327 GVT yobit BTC 2019-08-24 17:00:06+00:00 1258431324 329 SNM yobit BTC 2019-09-04 16:55:05+00:00 1258431324 331 MTH yobit BTC 2019-09-06 17:00:07+00:00 1258431324 332 BNT binance BTC 2019-09-07 17:01:06+00:00 1258431324 335 LINK yobit BTC 2019-09-12 17:00:06+00:00 1258431324 337 QKC yobit BTC 2019-09-15 17:00:06+00:00 1258431324 ? MANA yobit BTC 2019-09-23 17:00:05+00:00 1258431324 ? BAT yobit BTC 2019-09-24 17:00:05+00:00 1258431324 ? GVT yobit BTC 2019-09-26 17:00:06+00:00 1258431324 ? FUN yobit BTC 2019-09-28 17:00:04+00:00 1258431324 ? MDA yobit BTC 2019-09-30 17:00:04+00:00 1258431324 ? SNT yobit BTC 2019-10-02 17:00:05+00:00 1258431324 ? SNT yobit BTC 2019-10-05 17:00:03+00:00 1258431324 ? BLZ yobit BTC 2019-10-12 17:00:04+00:00 1258431324 ? FUN yobit BTC 2019-10-22 17:00:03+00:00 1258431324 ? MDA yobit BTC 2019-10-24 17:00:03+00:00 1258431324 ? MDA yobit BTC 2019-11-12 17:00:03+00:00 1258431324 ? BNT yobit BTC 2019-11-15 17:01:46+00:00 1258431324 ? BNT yobit BTC 2019-12-13 17:00:02+00:00 1258431324 ? REN yobit BTC 2019-12-17 17:00:05+00:00 1258431324 ? BNT yobit BTC 2019-12-29 17:00:06+00:00 1258431324 ? FUN yobit BTC 2020-01-15 17:00:05+00:00 1258431324 ? FUN yobit BTC 2020-03-28 17:00:12+00:00 1258431324 ? AOA yobit BTC 2020-04-01 17:00:04+00:00 1258431324 ? MTH yobit BTC 2020-04-04 17:00:38+00:00 1258431324 ? WPR yobit BTC 2020-04-10 17:00:02+00:00 1258431324 ? WPR yobit BTC 2020-04-10 17:00:08+00:00 1258431324 ? SNT yobit BTC 2020-04-14 17:00:06+00:00 1258431324 ? WPR yobit BTC 2020-04-19 17:00:04+00:00 1258431324 ? AOA yobit BTC 2020-04-22 17:00:41+00:00 1258431324 389 LOOM yobit BTC 2020-05-19 17:00:06+00:00 1258431324 394 NWC yobit BTC 2020-10-31 17:00:18+00:00 1231437793 36 WTC yobit BTC 2019-01-03 17:00:24+00:00 1231437793 38 OK yobit BTC 2019-01-12 17:00:44+00:00 1231437793 39 THETA yobit BTC 2019-01-13 17:00:51+00:00 1231437793 42 REN yobit BTC 2019-01-17 17:00:55+00:00 1335862163 106 DATA binance ? 2019-08-15 20:00:07+00:00 1335862163 108 QSP binance ? 2019-08-29 18:00:05+00:00 1335862163 111 DATA binance ? 2019-09-08 18:00:04+00:00 1335862163 412 SKY binance BTC 2021-10-05 15:00:27+00:00 1335862163 423 BRD binance BTC 2021-10-31 15:00:01+00:00 1335862163 428 NAS binance BTC 2021-11-14 15:00:00+00:00 1443935936 4 ARK binance BTC 2020-04-03 18:00:07+00:00 1443935936 4 ZEN binance BTC 2020-04-03 19:00:02+00:00 1443935936 5 BNT binance BTC 2020-04-06 18:00:04+00:00 1443935936 6 ARN binance BTC 2020-04-07 18:00:06+00:00 1443935936 22 MDA binance ? 2020-05-04 19:01:21+00:00 1161083859 7 GAS binance BTC 2021-02-15 15:00:09+00:00 1161083859 9 BTCST binance BTC 2021-02-23 15:00:12+00:00 1161083859 15 ENJ binance USDT 2021-03-04 20:32:07+00:00 1161083859 16 FLM binance BTC 2021-03-13 17:00:06+00:00 1161083859 20 MDA binance BTC 2021-03-21 17:01:26+00:00 1161083859 31 PIVX binance BTC 2021-03-28 16:32:17+00:00 1161083859 31 GTO binance BTC 2021-04-04 16:30:12+00:00 1161083859 36 VIA binance BTC 2021-04-11 16:45:14+00:00 1161083859 41 IDEX binance BTC 2021-04-25 16:45:04+00:00 1068531379 42 SDT kucoin USDT 2021-05-08 18:00:00+00:00 1068531379 46 JST kucoin USDT 2021-05-15 18:00:00+00:00 1068531379 52 DODO kucoin USDT 2021-05-21 20:00:00+00:00 1068531379 52 OAX binance BTC 2021-05-30 17:00:02+00:00 1068531379 58 WOM kucoin USDT 2021-06-05 18:00:00+00:00 1068531379 62 WABI binance ? 2021-06-20 17:00:04+00:00 1068531379 68 POA binance ? 2021-07-11 17:00:02+00:00 1068531379 74 DREP binance ? 2021-07-25 17:00:01+00:00 1068531379 79 EZ binance ? 2021-08-08 17:00:10+00:00 1068531379 85 NAS binance ? 2021-08-22 17:00:11+00:00 1068531379 89 VIB binance ? 2021-09-05 17:00:05+00:00 1068531379 93 FXS binance ? 2021-09-19 17:00:11+00:00 1068531379 99 NXS binance ? 2021-10-03 16:47:50+00:00 1068531379 99 EVX binance ? 2021-10-03 16:49:26+00:00 1068531379 99 EZ binance ? 2021-10-03 17:00:07+00:00 1068531379 103 WNXM binance ? 2021-10-10 17:00:05+00:00 1068531379 109 EVX binance BTC 2021-10-24 17:00:07+00:00 1068531379 113 EZ binance ? 2021-10-31 17:00:05+00:00 1068531379 118 MTH binance BTC 2021-11-07 17:00:03+00:00 1068531379 122 PHB binance ? 2021-11-28 17:00:05+00:00 1068531379 129 NEBL binance BTC 2022-01-02 17:00:07+00:00 1468310965 8 VIA binance BTC 2021-03-17 17:00:06+00:00 1468310965 18 ATM binance BTC 2021-03-27 17:00:18+00:00 1468310965 19 PIVX binance BTC 2021-03-28 17:00:12+00:00 1310500575 5 ARK binance BTC 2020-04-03 18:00:05+00:00 1310500575 5 ZEN binance BTC 2020-04-03 19:00:00+00:00 1310500575 7 BNT binance BTC 2020-04-06 18:00:02+00:00 1310500575 7 ARN binance ? 2020-04-07 18:00:07+00:00 1240071142 185 EDO binance BTC 2020-04-10 18:00:09+00:00 1240071142 187 DZC cryptopia BTC 2019-01-03 20:10:07+00:00 1240071142 190 BNT binance ? 2019-01-06 21:00:14+00:00 1240071142 190 LOOM binance ? 2019-01-07 14:28:33+00:00 1240071142 190 EVX binance ? 2019-01-08 16:00:05+00:00 1240071142 196 GXS binance ? 2019-01-20 17:59:43+00:00 1240071142 201 HC binance ? 2019-01-25 18:00:07+00:00 1240071142 203 WINGS binance ? 2019-01-27 18:00:01+00:00 1240071142 205 BQX binance BTC 2019-01-29 14:00:18+00:00 1240071142 209 GRS binance ? 2019-02-02 18:00:01+00:00 1240071142 210 VIA binance ? 2019-02-03 15:04:17+00:00 1240071142 215 GXS binance BTC 2019-02-10 18:00:06+00:00 1240071142 221 EDO binance BTC 2019-02-16 18:00:16+00:00 1240071142 226 GBG bittrex BTC 2019-02-21 20:00:06+00:00 1240071142 228 HC binance BTC 2019-02-23 16:59:59+00:00 1240071142 232 AST binance ? 2019-03-02 14:00:23+00:00 1240071142 234 GRS binance BTC 2019-03-05 16:30:21+00:00 1240071142 241 BLZ binance BTC 2019-03-15 15:54:31+00:00 1240071142 243 BRD binance ? 2019-03-17 18:59:31+00:00 1240071142 245 CURE bittrex BTC 2019-03-19 20:00:53+00:00 1240071142 248 RDN binance ? 2019-03-24 18:59:57+00:00 1240071142 250 SNM binance ? 2019-04-04 13:29:26+00:00 1240071142 253 BLZ binance ? 2019-04-13 17:00:14+00:00 1240071142 256 ARDR binance BTC 2019-04-17 17:00:11+00:00 1240071142 260 RDN binance ? 2019-04-24 17:00:11+00:00 1240071142 264 REQ binance ? 2019-04-29 15:00:33+00:00 1240071142 273 RDN binance ? 2019-05-10 16:00:03+00:00 1240071142 276 CDT binance ? 2019-05-13 15:00:13+00:00 1240071142 279 NAV binance ? 2019-05-18 17:01:18+00:00 1240071142 285 POA binance ? 2019-05-26 21:00:26+00:00 1240071142 288 PPT binance ? 2019-05-31 14:59:42+00:00 1240071142 290 SNM binance ? 2019-06-02 21:00:35+00:00 1240071142 294 BRD binance ? 2019-06-17 14:59:40+00:00 1546300553 2 DVI hotbit USDT 2021-08-22 17:00:49+00:00 1546300553 4 BELT hotbit USDT 2021-08-25 17:00:11+00:00 1546300553 15 MMDA hotbit USDT 2021-09-08 17:00:01+00:00 1546300553 18 PEOS binance USDT 2021-09-12 17:00:01+00:00 1546300553 21 SAMK hotbit USDT 2021-09-15 17:00:01+00:00 1546300553 24 CEXLT hotbit USDT 2021-09-19 17:00:01+00:00 1546300553 27 PTI hotbit USDT 2021-09-22 17:00:01+00:00 1546300553 30 ETI hotbit ? 2021-09-26 17:00:00+00:00 1546300553 32 TFF hotbit USDT 2021-09-29 17:00:01+00:00 1546300553 35 HALV hotbit USDT 2021-10-03 17:00:00+00:00 1546300553 36 DISTX hotbit USDT 2021-10-06 17:00:01+00:00 1546300553 39 MNSTP hotbit USDT 2021-10-10 17:00:01+00:00 1546300553 42 LIBFX hotbit USDT 2021-10-13 17:00:00+00:00 1546300553 45 HYFIT hotbit USDT 2021-10-17 17:00:06+00:00 1546300553 47 BNW hotbit USDT 2021-10-20 17:00:00+00:00 1546300553 49 DOVE hotbit USDT 2021-10-24 17:00:00+00:00 1546300553 52 PAMP hotbit USDT 2021-10-27 17:00:03+00:00 1546300553 54 MASH hotbit USDT 2021-10-31 18:00:01+00:00 1546300553 57 EIDOS hotbit USDT 2021-11-03 18:00:04+00:00 1546300553 60 PEOS hotbit USDT 2021-11-07 18:00:03+00:00 1546300553 62 DCNT hotbit USDT 2021-11-10 18:01:04+00:00 1546300553 65 AAC hotbit USDT 2021-11-14 18:00:08+00:00 1546300553 67 SBEAR hotbit USDT 2021-11-17 18:00:30+00:00 1546300553 69 SAMK hotbit USDT 2021-11-21 20:55:07+00:00 1546300553 71 FDS hotbit USDT 2021-11-24 18:00:22+00:00 1546300553 75 XGM hotbit USDT 2021-11-28 18:00:08+00:00 1546300553 75 FBN hotbit USDT 2021-12-01 18:00:10+00:00 1546300553 78 RETRY hotbit USDT 2021-12-05 18:00:19+00:00 1546300553 80 AEROX hotbit USDT 2021-12-08 18:00:13+00:00 1546300553 82 BSL hotbit USDT 2021-12-12 18:00:28+00:00 1546300553 83 FBS hotbit USDT 2021-12-15 18:00:03+00:00 1546300553 84 LEV hotbit USDT 2021-12-19 18:00:06+00:00 1546300553 86 DUO hotbit USDT 2021-12-22 18:00:24+00:00 1546300553 87 BXH hotbit USDT 2021-12-26 18:00:25+00:00 1546300553 88 AUV hotbit USDT 2021-12-29 18:00:28+00:00 1546300553 90 DS hotbit USDT 2022-01-02 18:00:20+00:00 1546300553 91 BQT hotbit USDT 2022-01-05 18:00:22+00:00 1546300553 92 TUBER hotbit USDT 2022-01-09 19:00:14+00:00 1546300553 93 DOVE hotbit USDT 2022-01-12 18:16:47+00:00 1546300553 95 POFI hotbit USDT 2022-01-16 18:00:21+00:00 1546300553 96 BSC hotbit USDT 2022-01-19 18:00:28+00:00 1250076602 40 EVX binance BTC 2021-10-24 17:00:07+00:00 1250076602 45 EZ binance BTC 2021-10-31 17:00:05+00:00 1250076602 50 MTH binance BTC 2021-11-07 17:00:04+00:00 1250076602 58 PHB binance BTC 2021-11-28 17:00:38+00:00 1250076602 65 NEBL binance BTC 2022-01-02 17:00:07+00:00 1529195300 39 SUP gate.io ? 2021-09-29 18:00:05+00:00 1529195300 40 SASHIMI gate.io ? 2021-09-30 18:00:06+00:00 1529195300 41 BOX gate.io ? 2021-10-01 18:00:02+00:00 1529195300 43 EZ binance BTC 2021-10-03 17:00:29+00:00 1529195300 45 TON gate.io USDT 2021-10-05 18:00:02+00:00 1529195300 47 SUP gate.io USDT 2021-10-09 18:00:00+00:00 1529195300 49 STOX gate.io USDT 2021-10-13 18:00:02+00:00 1529195300 51 CS gate.io USDT 2021-10-15 18:00:03+00:00 1529195300 52 TSL gate.io USDT 2021-10-16 18:00:05+00:00 1529195300 53 ULU gate.io USDT 2021-10-17 18:00:01+00:00 1529195300 55 BONDED gate.io USDT 2021-10-19 18:00:05+00:00 1529195300 57 BTF hotbit USDT 2021-10-22 18:00:04+00:00 1529195300 59 EVX hotbit BTC 2021-10-24 17:00:00+00:00 1529195300 61 INK gate.io USDT 2021-10-27 18:00:23+00:00 1529195300 63 GOD gate.io USDT 2021-10-29 18:00:21+00:00 1529195300 64 SOP gate.io USDT 2021-10-30 18:00:24+00:00 1529195300 65 EZ binance BTC 2021-10-31 17:00:41+00:00 1529195300 67 STOX gate.io USDT 2021-11-02 18:00:26+00:00 1529195300 68 KALM gate.io USDT 2021-11-03 18:00:21+00:00 1529195300 70 NBOT gate.io USDT 2021-11-05 18:00:23+00:00 1529195300 72 MTH binance BTC 2021-11-07 17:00:22+00:00 1529195300 81 PHB binance BTC 2021-11-28 17:00:17+00:00 1529195300 116 ORC kucoin USDT 2022-01-15 17:00:14+00:00 1335837027 3 MDA binance BTC 2021-02-10 21:00:30+00:00 1335837027 4 NEBL binance BTC 2021-02-13 21:00:15+00:00 1335837027 7 NXS binance BTC 2021-02-21 17:00:28+00:00 1335837027 15 PPT binance BTC 2021-03-07 17:00:15+00:00 1335837027 26 SUSD binance BTC 2021-03-28 15:00:23+00:00 1335837027 26 PIVX binance BTC 2021-03-28 17:00:13+00:00 1335837027 28 REAP kucoin USDT 2021-04-01 16:00:10+00:00 1335837027 30 QQQ hotbit USDT 2021-04-03 15:00:08+00:00 1335837027 36 HTDF hotbit USDT 2021-04-11 15:00:08+00:00 1335837027 48 XDEX hotbit USDT 2021-04-25 17:00:12+00:00 1335837027 61 QQQ hotbit USDT 2021-05-15 15:00:05+00:00 1335837027 67 QQQ hotbit USDT 2021-05-22 15:00:08+00:00 1335837027 71 DEP hotbit USDT 2021-05-29 15:00:04+00:00 1335837027 78 BAS hotbit USDT 2021-06-05 19:59:59+00:00 1368682672 107 HC binance ? 2019-01-25 18:00:14+00:00 1368682672 108 WINGS binance BTC 2019-01-27 18:00:10+00:00 1368682672 110 GRS binance ? 2019-02-02 18:00:15+00:00 1368682672 111 STORJ binance ? 2019-02-04 16:30:25+00:00 1368682672 116 GXS binance ? 2019-02-10 18:00:33+00:00 1368682672 119 EDO binance ? 2019-02-16 18:00:34+00:00 1368682672 124 HC binance ? 2019-02-23 17:00:07+00:00 1368682672 127 AST binance ? 2019-03-02 14:00:56+00:00 1368682672 129 GRS binance ? 2019-03-05 16:31:00+00:00 1368682672 144 BRD binance ? 2019-04-14 19:30:01+00:00 1368682672 146 ARDR binance ? 2019-04-17 17:48:48+00:00 1368682672 160 NAV binance ? 2019-05-18 17:00:14+00:00 1368682672 162 SYS binance ? 2019-05-23 17:00:01+00:00 1368682672 165 BLZ binance ? 2019-05-27 17:00:05+00:00 1368682672 169 ARDR binance ? 2019-05-31 17:00:01+00:00 1368682672 170 SNM binance ? 2019-06-02 21:00:43+00:00 1368682672 177 NEBL binance ? 2019-06-16 21:00:44+00:00 1368682672 179 REN binance BTC 2019-06-19 15:00:02+00:00 1368682672 182 NAV binance BTC 2019-06-24 17:00:04+00:00 1368682672 182 DNT binance ? 2019-06-26 17:22:53+00:00 1368682672 182 SNGLS binance ? 2019-06-28 17:18:06+00:00 1368682672 184 VIB binance ? 2019-07-02 17:00:09+00:00 1368682672 185 PIVX binance ? 2019-07-05 16:00:09+00:00 1368682672 186 SYS binance ? 2019-07-07 17:59:55+00:00 1368682672 187 CND binance ? 2019-07-09 17:00:16+00:00 1368682672 187 SNM binance ? 2019-07-11 17:00:51+00:00 1368682672 187 DLT binance ? 2019-07-15 17:00:08+00:0 1368682672 187 SYS ? ? 2019-07-17 17:00:09+00:00 1368682672 187 BTS ? ? 2019-07-19 17:00:14+00:00 1368682672 188 SNT binance ? 2019-07-22 16:02:24+00:00 1368682672 191 ADX binance ? 2019-07-26 18:00:00+00:00 1368682672 192 BLZ binance ? 2019-07-28 17:00:40+00:00 1368682672 194 NAV binance ? 2019-08-01 20:00:22+00:00 1368682672 194 WABI binance ? 2019-08-02 18:00:02+00:00 1368682672 194 SNM binance ? 2019-08-04 18:00:04+00:00 1368682672 194 POA binance BTC 2019-08-06 16:00:07+00:00 1368682672 195 YOYO binance BTC 2019-08-08 16:00:08+00:00 1368682672 195 YOYO binance BTC 2019-08-10 15:24:56+00:00 1368682672 195 RCN binance BTC 2019-08-10 16:00:37+00:00 1368682672 200 VIA binance ? 2019-08-16 16:05:06+00:00 1368682672 201 ONG binance ? 2019-08-19 16:18:17+00:00 1368682672 201 VIB binance BTC 2019-08-21 18:00:23+00:00 1368682672 202 QSP binance ? 2019-08-29 18:00:32+00:00 1368682672 204 LRC binance BTC 2019-09-02 16:00:02+00:00 1368682672 204 QLC binance BTC 2019-09-04 16:00:12+00:00 1368682672 204 EDO binance BTC 2019-09-06 18:00:13+00:00 1368682672 204 DATA binance BTC 2019-09-08 18:04:38+00:00 1368682672 204 BNT binance BTC 2019-09-09 20:00:21+00:00 1368682672 205 POA binance ? 2019-09-18 13:01:46+00:00 1368682672 207 EDO binance BTC 2019-09-25 16:00:14+00:00 1368682672 208 NXS binance ? 2019-10-02 18:00:24+00:00 1368682672 217 OST binance ? 2019-10-22 18:27:00+00:00 1368682672 217 ONG binance ? 2019-10-29 18:00:18+00:00 1368682672 220 NEBL binance ? 2019-11-05 16:00:12+00:00 1368682672 222 BCD binance ? 2019-11-11 17:00:46+00:00 1368682672 223 EDO binance ? 2019-11-21 18:00:11+00:00 1368682672 232 NAV binance ? 2019-12-19 17:00:23+00:00 1368682672 239 EDO binance ? 2020-01-08 17:00:44+00:00 1368682672 239 ONG binance ? 2020-01-09 17:00:11+00:00 1368682672 239 GNT binance ? 2020-01-10 18:00:09+00:00 1368682672 245 NULS binance ? 2020-01-30 17:00:06+00:00 1368682672 253 SYS binance ? 2020-02-26 18:00:11+00:00 1368682672 261 QLC binance BTC 2020-03-12 16:00:05+00:00 1368682672 268 TCT binance BTC 2020-03-13 16:00:09+00:00 1368682672 268 OAX binance BTC 2020-03-24 15:58:48+00:00 1368682672 270 EDO binance BTC 2020-03-26 16:04:08+00:00 1368682672 274 GRS binance ? 2020-04-02 16:00:11+00:00 1368682672 279 GNT binance ? 2020-04-10 16:00:18+00:00 1368682672 282 VITE binance ? 2020-04-13 12:17:19+00:00 1368682672 283 MITH binance ? 2020-04-14 16:02:14+00:00 1368682672 284 GVT binance ? 2020-04-15 15:56:53+00:00 1368682672 290 BNT binance ? 2020-04-24 16:09:26+00:00 1368682672 299 CVC binance ? 2020-05-05 16:00:13+00:00 1368682672 301 AST binance ? 2020-05-09 16:00:28+00:00 1368682672 305 YOYO binance ? 2020-05-14 16:00:38+00:00 1368682672 307 GTO binance ? 2020-05-21 15:59:29+00:00 1368682672 309 VIA binance ? 2020-05-29 16:00:05+00:00 1368682672 313 CTXC binance ? 2020-06-03 16:02:47+00:00 1368682672 317 VIA binance ? 2020-06-10 16:00:03+00:00 1368682672 318 QSP binance ? 2020-06-13 16:00:41+00:00 1368682672 318 GXS binance ? 2020-06-15 16:01:19+00:00 1368682672 322 EVX binance ? 2020-06-24 16:00:21+00:00 1368682672 330 ELF binance ? 2020-07-24 17:00:24+00:00 1368682672 330 POA binance ? 2020-07-28 16:01:16+00:00 1368682672 332 PPT binance ? 2020-08-04 18:00:26+00:00 1368682672 335 SNM binance ? 2020-09-04 16:00:36+00:00 1368682672 335 QLC binance ? 2020-09-06 16:01:05+00:00 1368682672 336 STPT binance ? 2020-09-08 16:15:15+00:00 1368682672 336 QSP binance ? 2020-09-10 18:00:40+00:00 1368682672 336 CDT binance ? 2020-09-16 16:00:18+00:00 1368682672 336 GVT binance ? 2020-09-17 18:03:29+00:00 1368682672 337 GVT binance ? 2020-09-30 17:00:02+00:00 1368682672 339 OAX binance ? 2020-10-18 18:00:23+00:00 1368682672 342 APPC binance ? 2020-11-04 17:00:22+00:00 1368682672 344 BRD binance ? 2020-11-09 16:00:27+00:00 1320118842 1 OAX binance ? 2020-10-18 18:00:23+00:00 1320118842 3 PPT binance ? 2020-10-21 18:01:05+00:00 1320118842 4 ARDR binance ? 2020-11-02 16:00:40+00:00 1320118842 4 GTO binance ? 2020-11-03 16:00:14+00:00 1320118842 4 APPC binance ? 2020-11-04 17:01:35+00:00 1427229166 5 ARK binance BTC 2020-04-03 18:00:05+00:00 1427229166 7 ZEN binance BTC 2020-04-03 19:00:00+00:00 1427229166 7 BNT binance BTC 2020-04-06 18:00:02+00:00 1427229166 7 ARN binance BTC 2020-04-07 18:00:06+00:00 1149375708 304 EDO binance BTC 2020-04-10 18:00:09+00:00 1405131456 4 MXC kucoin USDT 2021-05-23 16:00:01+00:00 1405131456 13 BDO hotbit USDT 2021-06-10 20:00:11+00:00 1405131456 18 CGG kucoin USDT 2021-06-19 21:00:03+00:00 1405131456 23 XTK hotbit USDT 2021-06-23 19:00:24+00:00 1405131456 23 FLY kucoin USDT 2021-06-27 17:26:47+00:00 1405131456 32 DORA kucoin USDT 2021-07-28 19:00:06+00:00 1405131456 35 MXC kucoin USDT 2021-08-26 19:00:02+00:00 1123236170 252 DATA binance ? 2019-08-15 20:54:06+00:00 1123236170 262 QSP binance ? 2019-08-29 18:00:05+00:00 1123236170 268 DATA binance ? 2019-09-08 18:00:04+00:00 1123236170 594 SKY binance BTC 2021-10-05 15:00:34+00:00 1123236170 608 BRD binance BTC 2021-10-31 15:00:01+00:00 1401539056 5 NAS binance BTC 2021-11-14 15:00:01+00:00 1401539056 5 ARK binance BTC 2020-04-03 18:00:06+00:00 1401539056 5 ZEN binance BTC 2020-04-03 19:00:01+00:00 1401539056 7 ARN binance ? 2020-04-07 18:00:06+00:00 1401539056 9 EDO binance BTC 2020-04-10 18:00:09+00:00 1325010971 5 MDA binance ? 2021-01-31 00:01:23+00:00 1325010971 5 PNT binance ? 2021-01-31 21:00:25+00:00 1249251103 219 LOOM yobit BTC 2020-05-19 17:00:03+00:00 File: Data\\Telegram\\Labeled\\label.txt 0 1371800770 80668 0 1371800770 80744 0 1371800770 80763 0 1371800770 80764 0 1371800770 80958 0 1371800770 81057 0 1371800770 81113 0 1371800770 81114 0 1371800770 81117 0 1371800770 81125 0 1371800770 81127 0 1371800770 81157 0 1371800770 81169 0 1371800770 81178 0 1371800770 81224 0 1371800770 81251 0 1371800770 81289 0 1371800770 81404 0 1371800770 81413 0 1371800770 81415 0 1371800770 81416 0 1371800770 81419 0 1371800770 81422 0 1371800770 81449 0 1371800770 81476 0 1371800770 81477 0 1371800770 81478 1 1371800770 81574 0 1371800770 82377 0 1371800770 83260 0 1371800770 83523 0 1371800770 84066 0 1371800770 84067 0 1371800770 84073 0 1371800770 86274 0 1371800770 86306 0 1371800770 86377 0 1371800770 86384 0 1371800770 86385 0 1371800770 87680 0 1371800770 87690 0 1371800770 88845 0 1371800770 89176 0 1371800770 89214 0 1371800770 89215 0 1371800770 89216 0 1371800770 89234 0 1371800770 89241 0 1371800770 89309 0 1371800770 89660 0 1371800770 89662 0 1371800770 89666 0 1371800770 89780 0 1371800770 89781 0 1371800770 89786 0 1371800770 89791 0 1371800770 89795 0 1371800770 89796 0 1371800770 89797 0 1371800770 89798 0 1371800770 89813 0 1371800770 89816 0 1371800770 89969 0 1371800770 89970 0 1371800770 89978 0 1371800770 90031 0 1371800770 90071 0 1371800770 90561 0 1371800770 90562 0 1371800770 90745 1 1371800770 90832 1 1371800770 90912 0 1371800770 90913 1 1371800770 90974 1 1371800770 91029 0 1371800770 91137 0 1371800770 92137 0 1371800770 92259 0 1371800770 92260 0 1371800770 92355 0 1371800770 93814 1 1371800770 93891 1 1371800770 93939 1 1371800770 94069 0 1371800770 94106 0 1371800770 94402 0 1371800770 94403 0 1371800770 94968 0 1371800770 94969 0 1371800770 94970 0 1371800770 95007 0 1371800770 95008 0 1371800770 95012 0 1371800770 95014 0 1371800770 95015 0 1371800770 96701 0 1371800770 96717 0 1371800770 96909 0 1371800770 96911 0 1371800770 96965 0 1371800770 96966 0 1371800770 96967 0 1371800770 96968 0 1371800770 96969 0 1371800770 96983 0 1371800770 96984 0 1371800770 96985 0 1371800770 97264 0 1371800770 97266 0 1371800770 97270 0 1371800770 97273 0 1371800770 97281 0 1371800770 97282 0 1371800770 97288 0 1371800770 97293 0 1371800770 97297 0 1371800770 97305 0 1371800770 97306 0 1371800770 97307 0 1371800770 97321 0 1371800770 97425 0 1371800770 97437 0 1371800770 97474 0 1371800770 97748 0 1371800770 97749 0 1371800770 97754 0 1371800770 97757 0 1371800770 97827 0 1371800770 97828 0 1371800770 97829 0 1371800770 97868 0 1371800770 97928 0 1371800770 97988 0 1371800770 97993 0 1371800770 98007 0 1371800770 98056 0 1371800770 98057 0 1371800770 98062 0 1371800770 98063 0 1371800770 98066 0 1371800770 98068 0 1371800770 98071 0 1371800770 98072 0 1371800770 98076 0 1371800770 98079 0 1371800770 98080 0 1371800770 98081 0 1371800770 98083 0 1371800770 98084 0 1371800770 98088 0 1371800770 98091 0 1371800770 98094 0 1371800770 98096 0 1371800770 98101 0 1371800770 98103 0 1371800770 98104 0 1371800770 98110 0 1371800770 98111 0 1371800770 98119 0 1371800770 98122 0 1371800770 98126 0 1371800770 98148 0 1371800770 98149 0 1371800770 98152 0 1371800770 98154 0 1371800770 98191 0 1371800770 98194 0 1371800770 98199 0 1371800770 98209 0 1371800770 98210 0 1371800770 98229 0 1371800770 98230 0 1371800770 98235 0 1371800770 98239 0 1371800770 98241 0 1371800770 98243 0 1371800770 98244 0 1371800770 98249 0 1371800770 98250 0 1371800770 98252 0 1371800770 98256 0 1371800770 98257 0 1371800770 98262 0 1371800770 98263 0 1371800770 98265 0 1371800770 98272 0 1371800770 98273 0 1371800770 98275 0 1371800770 98280 0 1371800770 98282 0 1371800770 98283 0 1371800770 98286 0 1371800770 98293 0 1371800770 98299 0 1371800770 98302 0 1371800770 98308 0 1371800770 98309 0 1371800770 98316 0 1371800770 98321 0 1371800770 98322 0 1371800770 98323 0 1371800770 98325 0 1371800770 98329 0 1371800770 98331 0 1371800770 98333 0 1371800770 98336 0 1371800770 98340 0 1371800770 98341 0 1371800770 98342 0 1371800770 98345 0 1371800770 98349 0 1371800770 98355 0 1371800770 98356 0 1371800770 98360 0 1371800770 98379 0 1371800770 98382 0 1371800770 98383 0 1371800770 98386 0 1371800770 98387 0 1371800770 98392 0 1371800770 98438 0 1371800770 98452 0 1371800770 98469 0 1371800770 98473 0 1371800770 98476 0 1371800770 98479 0 1371800770 98480 0 1371800770 98481 0 1371800770 98496 0 1371800770 98499 0 1371800770 98509 0 1371800770 98517 0 1371800770 98525 0 1371800770 98528 0 1371800770 98531 0 1371800770 98555 0 1371800770 98568 0 1371800770 98569 0 1371800770 98570 0 1371800770 98575 0 1371800770 98580 0 1371800770 98581 0 1371800770 98599 0 1371800770 98601 0 1371800770 98647 0 1371800770 98712 0 1371800770 98729 0 1371800770 98751 0 1371800770 98753 0 1371800770 98764 0 1371800770 98766 0 1371800770 98787 0 1371800770 98793 0 1371800770 98796 0 1371800770 98847 0 1371800770 98857 0 1371800770 98860 0 1371800770 98861 0 1371800770 98868 0 1371800770 98923 0 1371800770 98943 0 1371800770 99029 0 1371800770 99030 0 1371800770 99034 0 1371800770 99040 0 1371800770 99058 0 1371800770 99062 0 1371800770 99086 0 1371800770 99088 0 1371800770 99090 0 1371800770 99091 0 1371800770 99092 0 1371800770 99101 0 1371800770 99103 0 1371800770 99104 0 1371800770 99108 0 1371800770 99115 0 1371800770 99116 0 1371800770 99119 0 1371800770 99120 0 1371800770 99124 0 1371800770 99125 0 1371800770 99126 0 1371800770 99133 0 1371800770 99158 0 1371800770 99160 0 1371800770 99215 0 1371800770 99221 0 1371800770 99222 0 1371800770 99223 0 1371800770 99232 0 1371800770 99237 0 1371800770 99238 0 1371800770 99241 0 1371800770 99244 0 1371800770 99245 0 1371800770 99246 0 1371800770 99247 0 1371800770 99375 0 1371800770 99387 0 1371800770 99388 0 1371800770 99390 0 1371800770 99391 0 1371800770 99396 0 1371800770 99404 0 1371800770 99405 0 1371800770 99410 0 1371800770 99411 0 1371800770 99414 0 1371800770 99418 0 1371800770 99453 0 1371800770 99454 0 1371800770 99460 0 1371800770 99462 0 1371800770 99463 0 1371800770 99471 0 1371800770 99472 0 1371800770 99478 0 1371800770 99488 0 1371800770 99545 0 1371800770 99563 0 1371800770 99566 0 1371800770 99569 0 1371800770 99572 0 1371800770 99573 0 1371800770 99574 0 1371800770 99578 0 1371800770 99582 0 1371800770 99616 0 1371800770 99617 0 1371800770 99636 0 1371800770 99644 0 1371800770 99760 0 1371800770 99762 0 1371800770 99763 0 1371800770 99765 0 1371800770 99766 0 1371800770 99769 0 1371800770 99771 0 1371800770 99772 0 1371800770 99775 0 1371800770 99777 0 1371800770 99786 0 1371800770 99789 0 1371800770 99790 0 1371800770 99796 0 1371800770 99797 0 1371800770 99806 0 1371800770 99809 0 1371800770 99810 0 1371800770 99854 0 1371800770 99861 0 1371800770 99862 0 1371800770 99895 0 1371800770 99898 0 1371800770 99901 0 1371800770 99902 0 1371800770 99903 0 1371800770 99911 0 1371800770 99913 0 1371800770 99914 0 1371800770 99915 0 1371800770 99917 0 1371800770 99918 0 1371800770 99919 0 1371800770 99920 0 1371800770 99925 0 1371800770 99927 0 1371800770 99928 0 1371800770 99930 0 1371800770 99935 0 1371800770 99936 0 1371800770 99938 0 1371800770 99946 0 1371800770 99957 0 1371800770 99959 0 1371800770 99962 0 1371800770 99965 0 1371800770 99978 0 1371800770 99979 0 1371800770 99981 0 1371800770 99983 0 1371800770 100011 0 1371800770 100015 0 1371800770 100028 0 1371800770 100035 0 1371800770 100041 0 1371800770 100051 0 1371800770 100064 0 1371800770 100066 0 1371800770 100069 0 1371800770 100070 0 1371800770 100071 0 1371800770 100073 0 1371800770 100077 0 1371800770 100091 0 1371800770 100092 0 1371800770 100093 0 1371800770 100096 0 1371800770 100105 0 1371800770 100110 0 1371800770 100111 0 1371800770 100130 0 1371800770 100136 0 1371800770 100139 0 1371800770 100140 0 1371800770 100159 0 1371800770 100163 0 1371800770 100168 0 1371800770 100177 0 1371800770 100237 0 1371800770 100263 0 1371800770 100272 0 1371800770 100273 0 1371800770 100370 0 1371800770 100466 0 1371800770 100468 0 1371800770 100478 0 1371800770 100480 0 1371800770 100538 0 1371800770 100559 0 1371800770 100714 0 1371800770 100717 0 1371800770 100723 0 1371800770 100733 0 1371800770 100734 0 1371800770 100735 0 1371800770 100737 0 1371800770 100859 0 1371800770 100911 0 1371800770 100912 0 1371800770 100916 0 1371800770 101013 0 1371800770 101014 0 1371800770 101074 0 1371800770 101110 0 1371800770 101140 0 1371800770 101184 0 1371800770 101203 0 1371800770 101208 0 1371800770 101256 0 1371800770 101257 0 1371800770 101291 0 1371800770 101292 0 1371800770 101293 0 1371800770 101295 0 1371800770 101299 0 1371800770 101378 0 1371800770 101409 0 1371800770 101417 0 1371800770 101518 0 1371800770 101521 0 1371800770 101686 0 1371800770 101941 0 1371800770 101943 0 1371800770 101965 0 1371800770 101966 0 1371800770 101991 0 1371800770 101993 0 1371800770 102047 0 1371800770 102049 0 1371800770 102053 0 1371800770 102056 0 1371800770 102059 0 1371800770 102062 0 1371800770 102064 0 1371800770 102066 0 1371800770 102067 0 1371800770 102074 0 1371800770 102075 0 1371800770 102077 0 1371800770 102078 0 1371800770 102081 0 1371800770 102089 0 1371800770 102091 0 1371800770 102094 0 1371800770 102095 0 1371800770 102097 0 1371800770 102099 0 1371800770 102100 0 1371800770 102101 0 1371800770 102111 0 1371800770 102117 0 1371800770 102118 0 1371800770 102120 0 1371800770 102121 0 1371800770 102130 0 1371800770 102135 0 1371800770 102143 0 1371800770 102145 0 1371800770 102148 0 1371800770 102151 0 1371800770 102191 0 1371800770 102193 0 1371800770 102194 0 1371800770 102198 0 1371800770 102210 0 1371800770 102212 0 1371800770 102220 0 1371800770 102222 0 1371800770 102289 0 1371800770 102297 0 1371800770 102357 0 1371800770 102362 0 1371800770 102410 0 1371800770 102724 0 1371800770 102725 0 1371800770 102730 0 1371800770 102731 0 1371800770 102887 0 1371800770 102888 0 1371800770 102902 0 1371800770 102904 0 1371800770 102912 0 1371800770 102927 0 1371800770 102959 0 1371800770 102989 0 1371800770 103093 0 1371800770 103103 0 1371800770 103106 0 1371800770 103111 0 1371800770 103112 0 1371800770 103114 0 1371800770 103121 0 1371800770 103122 0 1371800770 103131 0 1371800770 103134 0 1371800770 103136 0 1371800770 103139 0 1371800770 103141 0 1371800770 103143 0 1371800770 103154 0 1371800770 103155 0 1371800770 103158 0 1371800770 103160 0 1371800770 103165 0 1371800770 103178 0 1371800770 103180 0 1371800770 103185 0 1371800770 103230 0 1371800770 103232 0 1371800770 103242 0 1371800770 103249 0 1371800770 103250 0 1371800770 103251 0 1371800770 103266 0 1371800770 103270 0 1371800770 103287 0 1371800770 103288 0 1371800770 103290 0 1371800770 103302 0 1371800770 103305 0 1371800770 103310 0 1371800770 103312 0 1371800770 103352 0 1371800770 103353 0 1371800770 103358 0 1371800770 103390 0 1371800770 103395 0 1371800770 103401 0 1371800770 103404 0 1371800770 103406 0 1371800770 103413 0 1371800770 103415 0 1371800770 103423 0 1371800770 103430 0 1371800770 103431 0 1371800770 103444 0 1371800770 103445 0 1371800770 103468 0 1371800770 103469 0 1371800770 103481 0 1371800770 103482 0 1371800770 103487 0 1371800770 103494 0 1371800770 103496 0 1371800770 103500 0 1371800770 103501 0 1371800770 103505 0 1371800770 103510 0 1371800770 103511 0 1371800770 103518 0 1371800770 103525 0 1371800770 103536 0 1371800770 103543 0 1371800770 103553 0 1371800770 103558 0 1371800770 103559 0 1371800770 103560 0 1371800770 103569 0 1371800770 103584 0 1371800770 103596 0 1371800770 103600 0 1371800770 103602 0 1371800770 103613 0 1371800770 103614 0 1371800770 103617 0 1371800770 103708 0 1371800770 103810 0 1371800770 103895 0 1371800770 103952 0 1371800770 104091 0 1371800770 104168 0 1371800770 104237 0 1371800770 104262 0 1371800770 104289 0 1371800770 104294 0 1371800770 104314 0 1371800770 104338 0 1371800770 104347 0 1371800770 105621 0 1371800770 105623 0 1371800770 105628 0 1371800770 105754 0 1371800770 105770 0 1371800770 105814 0 1371800770 105864 0 1371800770 105931 0 1371800770 105936 0 1371800770 105937 0 1371800770 106009 0 1371800770 106039 0 1371800770 106043 0 1371800770 106074 0 1371800770 106120 0 1371800770 106137 0 1371800770 106141 0 1371800770 106147 0 1371800770 106200 0 1371800770 106442 0 1371800770 106564 0 1371800770 106579 0 1371800770 106676 0 1371800770 106871 0 1371800770 106912 0 1371800770 106925 0 1371800770 106942 0 1371800770 106966 0 1371800770 106967 0 1371800770 106980 0 1371800770 106985 0 1371800770 106986 0 1371800770 106989 0 1371800770 106993 0 1371800770 106998 0 1371800770 106999 0 1371800770 107002 0 1371800770 107004 0 1371800770 107009 0 1371800770 107013 0 1371800770 107017 0 1371800770 107106 0 1371800770 107125 0 1371800770 107127 0 1371800770 107129 0 1371800770 107131 0 1371800770 107132 0 1371800770 107144 0 1371800770 107145 0 1371800770 107194 0 1371800770 107198 0 1371800770 107202 0 1371800770 107203 0 1371800770 107206 0 1371800770 107209 0 1371800770 107210 0 1371800770 107216 0 1371800770 107238 0 1371800770 107239 0 1371800770 107242 0 1371800770 107265 0 1371800770 107280 0 1371800770 107328 0 1371800770 107333 0 1371800770 107335 0 1371800770 107337 0 1371800770 107394 0 1371800770 107404 0 1371800770 107405 0 1371800770 107431 0 1371800770 107433 0 1371800770 107437 0 1371800770 107478 0 1371800770 107497 0 1371800770 107510 0 1371800770 107530 0 1371800770 107537 0 1371800770 107551 0 1371800770 107553 0 1371800770 107555 0 1371800770 107556 0 1371800770 107557 0 1371800770 107559 0 1371800770 107562 0 1371800770 107563 0 1371800770 107585 0 1371800770 107586 0 1371800770 107605 0 1371800770 107660 0 1371800770 107666 0 1371800770 107669 0 1371800770 107686 0 1371800770 107687 0 1371800770 107692 0 1371800770 107693 0 1371800770 107697 0 1371800770 107799 0 1371800770 107800 0 1371800770 107812 0 1371800770 107814 0 1371800770 107815 0 1371800770 107817 0 1371800770 107847 0 1371800770 107850 0 1371800770 107851 0 1371800770 107872 0 1371800770 107919 0 1371800770 107920 0 1371800770 107949 0 1371800770 107956 0 1371800770 107968 0 1371800770 107969 0 1371800770 107972 0 1371800770 107994 0 1371800770 108023 0 1371800770 108024 0 1371800770 108040 0 1371800770 108056 0 1371800770 108081 0 1371800770 108084 0 1371800770 108113 0 1371800770 108188 0 1371800770 108195 0 1371800770 108197 0 1371800770 108202 0 1371800770 108206 0 1371800770 108218 0 1371800770 108219 0 1371800770 108220 0 1371800770 108225 0 1371800770 108235 0 1371800770 108282 0 1371800770 108284 0 1371800770 108287 0 1371800770 108295 0 1371800770 108303 0 1371800770 108351 0 1371800770 108356 0 1371800770 108424 0 1371800770 108426 0 1371800770 108441 0 1371800770 108442 0 1371800770 108538 0 1371800770 108576 0 1371800770 108578 0 1371800770 108580 0 1371800770 108581 0 1371800770 108585 0 1371800770 108588 0 1371800770 108589 0 1371800770 108594 0 1371800770 108603 0 1371800770 108611 0 1371800770 108612 0 1371800770 108613 0 1371800770 108614 0 1371800770 108641 0 1371800770 108642 0 1371800770 108647 0 1371800770 108648 0 1371800770 108656 0 1371800770 108666 0 1371800770 108673 0 1371800770 108688 0 1371800770 108690 0 1371800770 108712 0 1371800770 108779 0 1371800770 108780 0 1371800770 108786 0 1371800770 108789 0 1371800770 108790 0 1371800770 108791 0 1371800770 108793 0 1371800770 108808 0 1371800770 108809 0 1371800770 108810 0 1371800770 108811 0 1371800770 108812 0 1371800770 108831 0 1299457190 3 0 1299457190 4 2 1299457190 6 0 1299457190 8 0 1299457190 9 2 1299457190 10 0 1299457190 11 0 1299457190 13 0 1299457190 14 0 1299457190 15 0 1299457190 16 0 1299457190 19 0 1299457190 21 0 1299457190 22 2 1299457190 23 2 1299457190 24 2 1299457190 27 2 1299457190 28 0 1299457190 31 0 1299457190 32 0 1299457190 33 2 1299457190 34 0 1299457190 39 0 1299457190 41 0 1299457190 42 0 1299457190 43 0 1299457190 96 2 1299457190 221 2 1299457190 226 0 1299457190 244 2 1299457190 245 2 1299457190 253 2 1299457190 254 2 1299457190 269 2 1299457190 270 2 1299457190 271 2 1299457190 272 0 1299457190 275 2 1299457190 294 2 1299457190 295 2 1299457190 446 2 1299457190 447 0 1299457190 453 0 1299457190 454 2 1299457190 471 2 1299457190 472 0 1299457190 477 2 1299457190 478 2 1299457190 482 2 1299457190 483 2 1299457190 484 2 1299457190 501 2 1299457190 502 2 1299457190 503 2 1299457190 513 2 1299457190 514 2 1299457190 515 2 1299457190 522 0 1299457190 523 2 1299457190 536 2 1299457190 546 2 1299457190 547 2 1299457190 558 2 1299457190 563 2 1299457190 572 2 1299457190 573 0 1299457190 574 0 1299457190 576 2 1299457190 583 2 1299457190 603 2 1299457190 638 2 1299457190 645 0 1299457190 682 2 1299457190 809 2 1299457190 850 2 1299457190 913 2 1299457190 916 2 1299457190 959 0 1299457190 961 0 1299457190 963 2 1299457190 992 0 1299457190 1035 2 1299457190 1051 0 1299457190 1083 2 1299457190 1086 2 1299457190 1104 2 1299457190 1110 2 1299457190 1134 0 1299457190 1136 2 1299457190 1156 0 1299457190 1163 2 1299457190 1164 0 1299457190 1168 2 1299457190 1181 0 1299457190 1189 0 1299457190 1203 0 1299457190 1205 0 1299457190 1206 2 1299457190 1238 2 1299457190 1240 2 1299457190 1241 0 1299457190 1257 0 1299457190 1262 2 1299457190 1285 0 1299457190 1288 2 1299457190 1289 0 1299457190 1290 0 1299457190 1293 0 1299457190 1296 2 1299457190 1297 0 1299457190 1311 0 1299457190 1314 0 1299457190 1329 0 1299457190 1330 0 1299457190 1333 0 1299457190 1342 0 1299457190 1344 0 1299457190 1352 0 1299457190 1354 0 1299457190 1357 2 1299457190 1359 0 1299457190 1375 0 1299457190 1388 0 1299457190 1390 2 1299457190 1394 0 1299457190 1395 0 1299457190 1398 0 1299457190 1399 0 1299457190 1411 0 1299457190 1413 2 1299457190 1415 0 1299457190 1421 0 1299457190 1423 0 1299457190 1432 0 1299457190 1439 0 1299457190 1462 0 1299457190 1464 2 1299457190 1471 0 1299457190 1478 0 1299457190 1486 0 1299457190 1494 0 1299457190 1495 0 1299457190 1497 0 1299457190 1520 0 1299457190 1527 0 1299457190 1532 0 1299457190 1544 0 1299457190 1570 0 1299457190 1571 0 1299457190 1582 0 1299457190 1583 2 1299457190 1589 0 1299457190 1600 0 1299457190 1605 0 1299457190 1606 0 1299457190 1626 2 1299457190 1627 0 1299457190 1632 0 1299457190 1651 0 1299457190 1652 0 1299457190 1660 0 1299457190 1661 2 1299457190 1664 0 1299457190 1671 0 1299457190 1678 0 1299457190 1679 0 1299457190 1681 0 1299457190 1701 0 1299457190 1708 2 1299457190 1723 0 1299457190 1733 2 1299457190 1734 0 1299457190 1744 0 1299457190 1746 0 1299457190 1756 0 1299457190 1758 0 1299457190 1762 2 1299457190 1763 0 1299457190 1764 0 1299457190 1771 0 1299457190 1788 0 1299457190 1800 0 1299457190 1801 0 1299457190 1803 0 1299457190 1804 0 1299457190 1806 2 1299457190 1824 0 1299457190 1834 0 1299457190 1859 0 1299457190 1860 2 1299457190 1861 0 1299457190 1909 0 1299457190 1914 0 1299457190 1915 0 1299457190 1916 2 1299457190 1919 0 1299457190 1921 0 1299457190 1925 0 1299457190 1929 2 1299457190 1935 0 1299457190 1936 0 1299457190 1967 0 1299457190 1970 0 1299457190 2007 0 1299457190 2009 0 1299457190 2010 0 1299457190 2022 2 1299457190 2027 0 1299457190 2028 0 1299457190 2033 0 1299457190 2038 0 1299457190 2075 2 1299457190 2101 0 1299457190 2110 0 1299457190 2124 2 1299457190 2127 0 1299457190 2134 0 1299457190 2141 0 1299457190 2157 0 1299457190 2175 0 1299457190 2177 2 1299457190 2178 0 1299457190 2179 0 1299457190 2189 0 1299457190 2192 0 1299457190 2194 2 1299457190 2195 0 1299457190 2196 0 1299457190 2198 0 1299457190 2257 0 1299457190 2279 0 1299457190 2329 2 1299457190 2348 0 1299457190 2368 0 1299457190 2386 0 1299457190 2387 0 1299457190 2409 2 1299457190 2421 0 1299457190 2437 2 1299457190 2444 2 1299457190 2449 0 1299457190 2478 0 1299457190 2488 0 1299457190 2489 0 1299457190 2490 0 1299457190 2495 0 1299457190 2531 0 1299457190 2535 0 1299457190 2537 0 1299457190 2538 0 1299457190 2540 0 1299457190 2570 0 1299457190 2584 0 1299457190 2585 0 1299457190 2586 0 1299457190 2587 0 1299457190 2589 0 1299457190 2631 0 1299457190 2633 0 1299457190 2635 0 1299457190 2674 0 1299457190 2691 0 1299457190 2706 0 1299457190 2707 0 1299457190 2784 0 1299457190 2795 0 1299457190 2796 0 1299457190 2804 0 1299457190 2829 0 1299457190 2858 0 1299457190 2859 0 1299457190 2888 0 1299457190 2970 0 1299457190 2997 2 1299457190 3038 0 1299457190 3041 0 1299457190 3114 0 1299457190 3118 0 1299457190 3119 0 1299457190 3143 0 1299457190 3154 0 1299457190 3236 0 1299457190 3243 0 1299457190 3294 0 1299457190 3295 0 1299457190 3437 0 1299457190 3552 0 1299457190 3610 0 1299457190 3656 2 1299457190 3659 0 1299457190 3660 2 1299457190 3662 0 1299457190 3665 2 1299457190 3667 0 1299457190 3706 0 1299457190 3798 0 1299457190 3810 0 1299457190 3823 2 1299457190 3826 2 1299457190 3843 2 1299457190 3844 2 1299457190 3893 0 1299457190 3919 0 1299457190 3925 2 1299457190 3933 0 1299457190 3936 0 1299457190 3973 0 1299457190 4091 2 1299457190 4092 0 1299457190 4093 0 1299457190 4098 2 1299457190 4101 2 1299457190 4111 2 1299457190 4117 0 1299457190 4121 0 1299457190 4130 0 1299457190 4152 0 1299457190 4158 2 1299457190 4167 0 1299457190 4168 0 1299457190 4170 2 1299457190 4171 2 1299457190 4186 0 1299457190 4208 2 1299457190 4222 2 1299457190 4239 0 1265461027 4 0 1299457190 4240 2 1299457190 4241 2 1299457190 4242 2 1299457190 4243 0 1299457190 4247 0 1299457190 4248 0 1299457190 4249 2 1299457190 4250 2 1299457190 4251 0 1299457190 4255 0 1299457190 4269 0 1299457190 4272 0 1299457190 4289 0 1299457190 4291 2 1299457190 4292 0 1299457190 4294 0 1299457190 4296 2 1299457190 4297 2 1299457190 4299 ? 1265461027 8 ? 1265461027 13 2 1265461027 15 ? 1265461027 16 ? 1265461027 17 2 1247729038 5 2 1247729038 6 2 1247729038 8 2 1247729038 9 2 1247729038 10 2 1247729038 11 2 1247729038 13 2 1247729038 20 0 1247729038 22 0 1247729038 23 2 1247729038 24 2 1247729038 25 2 1247729038 27 0 1247729038 29 0 1247729038 31 2 1247729038 33 2 1247729038 34 0 1247729038 38 2 1247729038 41 2 1247729038 44 2 1247729038 45 2 1247729038 49 2 1247729038 51 2 1247729038 52 0 1247729038 53 0 1247729038 54 0 1247729038 56 2 1247729038 57 2 1247729038 61 2 1247729038 64 2 1247729038 65 2 1247729038 66 2 1247729038 69 2 1299457190 4314 2 1299457190 4357 0 1247729038 69 0 1247729038 70 2 1247729038 71 0 1247729038 72 0 1247729038 74 0 1247729038 75 2 1247729038 77 0 1247729038 81 0 1247729038 82 2 1247729038 83 2 1247729038 90 0 1247729038 91 0 1247729038 92 0 1247729038 94 2 1247729038 99 0 1247729038 100 0 1247729038 103 0 1247729038 104 2 1247729038 108 0 1247729038 109 2 1247729038 111 2 1247729038 117 0 1351958949 1431 2 1351958949 1482 0 1351958949 1483 0 1351958949 1485 2 1351958949 1494 0 1351958949 1495 2 1351958949 1509 0 1351958949 1513 2 1351958949 1534 2 1351958949 1548 0 1351958949 1567 2 1351958949 1602 2 1351958949 1617 2 1351958949 1619 2 1351958949 1631 0 1351958949 1639 2 1351958949 1643 2 1351958949 1675 2 1351958949 1685 2 1351958949 1693 2 1351958949 1752 2 1351958949 1800 0 1351958949 1837 0 1351958949 1842 2 1351958949 1843 2 1351958949 1844 2 1351958949 1845 2 1351958949 1853 0 1351958949 1854 0 1351958949 1855 2 1351958949 1856 0 1351958949 1899 2 1351958949 1902 0 1351958949 1913 2 1351958949 1914 2 1351958949 1915 2 1351958949 1916 0 1351958949 1918 0 1351958949 1919 2 1351958949 1923 0 1351958949 1938 2 1351958949 1949 0 1351958949 1962 2 1351958949 2017 2 1351958949 2022 2 1351958949 2025 0 1351958949 2029 2 1351958949 2067 2 1351958949 2074 0 1351958949 2078 2 1351958949 2079 0 1351958949 2083 0 1351958949 2090 0 1247729038 120 0 1247729038 121 0 1247729038 122 2 1247729038 125 2 1247729038 126 2 1247729038 127 2 1247729038 129 0 1247729038 130 2 1247729038 132 0 1247729038 134 0 1247729038 136 0 1247729038 143 0 1247729038 147 0 1247729038 148 0 1247729038 149 2 1247729038 150 0 1247729038 151 0 1247729038 152 0 1247729038 153 2 1247729038 155 0 1247729038 158 2 1247729038 159 2 1247729038 162 0 1247729038 165 0 1247729038 171 2 1247729038 175 0 1247729038 177 0 1247729038 181 0 1247729038 182 2 1247729038 183 2 1247729038 184 1 1247729038 185 0 1247729038 193 2 1247729038 194 0 1247729038 195 0 1247729038 196 2 1247729038 199 0 1247729038 206 0 1247729038 207 0 1247729038 208 0 1247729038 210 2 1247729038 211 0 1247729038 216 2 1247729038 217 0 1247729038 219 0 1247729038 220 0 1247729038 221 0 1247729038 222 0 1247729038 223 0 1247729038 224 0 1247729038 233 2 1247729038 234 0 1247729038 236 0 1247729038 237 0 1247729038 239 2 1247729038 240 0 1247729038 242 0 1247729038 243 2 1247729038 244 2 1247729038 247 0 1247729038 248 0 1247729038 250 0 1247729038 251 0 1247729038 252 2 1247729038 254 2 1247729038 255 0 1247729038 258 2 1351958949 2091 2 1351958949 2092 0 1351958949 2094 0 1351958949 2103 2 1351958949 2109 0 1351958949 2110 0 1351958949 2111 0 1351958949 2115 0 1351958949 2116 0 1351958949 2117 0 1351958949 2123 0 1351958949 2126 0 1351958949 2129 0 1351958949 2137 0 1351958949 2140 0 1351958949 2141 0 1351958949 2144 2 1351958949 2147 0 1351958949 2149 0 1351958949 2159 0 1351958949 2161 0 1351958949 2169 2 1351958949 2175 0 1220639536 3 0 1220639536 4 0 1220639536 5 0 1220639536 10 0 1220639536 16 0 1220639536 17 0 1220639536 20 0 1220639536 23 0 1220639536 26 0 1220639536 28 0 1220639536 32 0 1220639536 36 0 1220639536 38 0 1220639536 87 2 1220639536 92 0 1220639536 97 0 1220639536 99 0 1220639536 105 0 1220639536 117 0 1220639536 123 0 1220639536 130 0 1220639536 131 0 1220639536 134 0 1220639536 135 0 1220639536 157 0 1220639536 161 1 1220639536 162 1 1220639536 163 0 1220639536 164 1 1220639536 165 0 1220639536 166 1 1220639536 167 1 1220639536 168 1 1220639536 171 0 1220639536 172 1 1220639536 173 0 1220639536 174 1 1220639536 175 1 1220639536 176 1 1220639536 177 1 1220639536 178 0 1220639536 182 0 1220639536 184 0 1220639536 188 1 1220639536 189 1 1220639536 195 1 1220639536 198 1 1220639536 200 1 1220639536 202 1 1220639536 203 0 1220639536 205 0 1220639536 206 1 1220639536 208 1 1220639536 212 1 1220639536 214 0 1220639536 217 2 1220639536 219 0 1220639536 223 0 1220639536 224 0 1220639536 228 0 1220639536 230 2 1220639536 237 0 1220639536 238 0 1220639536 239 0 1220639536 240 0 1220639536 241 0 1220639536 242 0 1220639536 244 0 1220639536 250 0 1220639536 251 0 1220639536 253 0 1220639536 254 0 1220639536 255 0 1220639536 256 0 1220639536 257 0 1220639536 267 0 1299457190 4359 0 1299457190 4368 0 1299457190 4369 2 1299457190 4408 2 1299457190 4413 2 1299457190 4418 0 1299457190 4419 0 1299457190 4422 0 1351958949 2183 0 1351958949 2184 0 1220639536 270 0 1220639536 271 0 1220639536 273 0 1220639536 275 0 1220639536 277 0 1220639536 279 0 1220639536 280 0 1220639536 283 0 1220639536 285 0 1220639536 286 0 1220639536 287 0 1220639536 288 0 1220639536 289 0 1220639536 293 0 1220639536 294 0 1220639536 295 0 1220639536 297 0 1220639536 299 2 1220639536 300 0 1220639536 301 0 1220639536 302 0 1220639536 303 0 1220639536 304 0 1220639536 305 0 1220639536 308 0 1220639536 309 1 1220639536 310 1 1220639536 312 0 1220639536 314 0 1220639536 315 0 1220639536 316 0 1220639536 319 0 1220639536 320 1 1220639536 322 0 1220639536 324 1 1220639536 326 0 1220639536 327 0 1220639536 328 0 1220639536 329 0 1220639536 330 0 1220639536 335 2 1220639536 336 1 1220639536 337 0 1220639536 338 0 1220639536 340 0 1220639536 341 2 1220639536 343 0 1220639536 344 1 1220639536 345 0 1220639536 350 0 1220639536 351 0 1220639536 357 0 1220639536 362 0 1220639536 363 0 1220639536 367 1 1220639536 368 0 1220639536 369 0 1220639536 371 0 1220639536 372 0 1220639536 375 0 1220639536 376 0 1220639536 378 0 1220639536 380 0 1220639536 382 1 1220639536 390 0 1220639536 395 1 1220639536 398 1 1220639536 400 1 1220639536 401 1 1220639536 403 1 1220639536 404 0 1220639536 408 0 1220639536 413 2 1220639536 414 0 1220639536 415 0 1220639536 418 2 1220639536 419 0 1220639536 420 0 1220639536 421 0 1220639536 422 0 1220639536 426 0 1220639536 428 0 1220639536 429 0 1220639536 430 0 1220639536 431 0 1220639536 433 0 1220639536 434 0 1220639536 435 0 1220639536 436 0 1220639536 437 0 1220639536 438 0 1220639536 439 0 1220639536 440 0 1220639536 441 0 1220639536 442 0 1220639536 443 2 1220639536 444 0 1220639536 445 0 1220639536 446 0 1220639536 447 0 1220639536 448 0 1220639536 449 0 1220639536 450 0 1220639536 451 0 1220639536 452 0 1220639536 453 0 1220639536 454 0 1220639536 456 0 1220639536 457 0 1220639536 459 0 1220639536 460 0 1220639536 469 0 1220639536 470 0 1220639536 471 0 1220639536 472 0 1220639536 473 0 1220639536 474 0 1220639536 475 0 1220639536 476 0 1220639536 478 0 1220639536 479 0 1220639536 480 0 1220639536 481 0 1220639536 483 0 1220639536 484 0 1220639536 485 0 1220639536 486 0 1220639536 488 0 1220639536 489 0 1220639536 490 0 1220639536 491 0 1220639536 493 0 1220639536 496 0 1220639536 497 2 1220639536 498 2 1220639536 499 2 1220639536 500 2 1220639536 501 2 1220639536 502 0 1220639536 503 2 1220639536 504 2 1220639536 505 2 1220639536 506 0 1220639536 507 0 1220639536 508 0 1220639536 511 2 1220639536 514 0 1220639536 516 0 1220639536 517 0 1220639536 518 0 1220639536 520 2 1220639536 521 0 1220639536 523 2 1220639536 525 0 1220639536 526 0 1220639536 528 0 1220639536 529 0 1220639536 531 0 1220639536 537 0 1220639536 538 2 1220639536 539 0 1220639536 540 0 1220639536 541 0 1220639536 542 0 1220639536 543 0 1220639536 544 0 1220639536 545 0 1220639536 549 0 1220639536 553 0 1220639536 554 0 1220639536 555 0 1220639536 556 0 1220639536 557 0 1220639536 558 0 1220639536 561 2 1220639536 563 0 1220639536 564 2 1220639536 565 0 1220639536 566 0 1220639536 567 0 1220639536 571 0 1220639536 572 0 1220639536 574 0 1220639536 576 0 1220639536 577 0 1220639536 580 0 1220639536 581 0 1220639536 582 0 1220639536 583 0 1220639536 584 0 1220639536 585 0 1220639536 588 0 1220639536 589 0 1220639536 590 0 1220639536 591 0 1220639536 592 0 1220639536 593 0 1220639536 594 0 1220639536 595 2 1220639536 596 0 1220639536 597 2 1220639536 598 0 1220639536 600 0 1220639536 602 0 1220639536 603 0 1220639536 605 0 1220639536 607 0 1220639536 608 0 1220639536 609 0 1220639536 610 0 1220639536 611 0 1220639536 612 0 1220639536 613 1 1220639536 614 0 1220639536 615 1 1220639536 616 0 1220639536 617 0 1220639536 621 0 1220639536 622 0 1220639536 623 0 1220639536 624 0 1220639536 625 0 1220639536 627 0 1220639536 630 1 1220639536 631 0 1220639536 632 0 1220639536 633 0 1220639536 634 0 1220639536 636 0 1220639536 637 1 1220639536 638 0 1220639536 639 0 1220639536 640 0 1220639536 641 0 1220639536 642 1 1220639536 643 0 1220639536 644 0 1220639536 645 0 1220639536 646 0 1220639536 647 1 1220639536 648 0 1220639536 649 0 1220639536 650 0 1220639536 653 2 1220639536 655 0 1220639536 656 0 1220639536 657 1 1220639536 658 0 1220639536 659 0 1220639536 660 0 1220639536 661 0 1220639536 662 0 1220639536 663 0 1220639536 664 0 1220639536 665 0 1220639536 666 0 1220639536 667 0 1220639536 668 0 1220639536 669 0 1220639536 670 0 1220639536 671 0 1220639536 672 0 1220639536 674 0 1220639536 675 0 1220639536 676 1 1220639536 677 2 1220639536 678 0 1220639536 679 0 1220639536 680 0 1220639536 682 0 1220639536 683 0 1220639536 684 0 1220639536 685 0 1220639536 686 0 1220639536 687 0 1220639536 689 0 1220639536 690 0 1220639536 691 0 1220639536 692 0 1220639536 693 0 1220639536 694 0 1220639536 695 0 1220639536 697 0 1220639536 698 0 1220639536 699 0 1220639536 700 2 1220639536 701 0 1220639536 703 0 1220639536 704 0 1220639536 705 0 1220639536 706 0 1220639536 708 0 1220639536 709 0 1220639536 710 0 1220639536 711 0 1220639536 712 0 1220639536 713 0 1220639536 715 0 1220639536 718 0 1220639536 719 2 1220639536 721 0 1220639536 723 0 1220639536 724 0 1220639536 725 0 1220639536 726 0 1220639536 727 0 1220639536 728 0 1220639536 729 0 1220639536 730 0 1220639536 731 0 1220639536 732 0 1220639536 733 0 1220639536 734 0 1220639536 735 0 1220639536 736 0 1220639536 737 0 1220639536 738 0 1220639536 739 0 1220639536 740 0 1220639536 741 0 1220639536 743 0 1220639536 745 0 1220639536 746 0 1220639536 748 0 1220639536 750 0 1220639536 752 0 1220639536 756 2 1220639536 757 0 1220639536 758 0 1220639536 759 0 1220639536 760 0 1220639536 761 0 1220639536 762 0 1220639536 764 0 1220639536 765 0 1220639536 767 0 1220639536 769 0 1220639536 771 0 1220639536 774 0 1220639536 776 0 1220639536 777 0 1220639536 778 0 1126741955 45835 0 1126741955 45839 0 1126741955 45856 0 1126741955 46245 0 1126741955 46498 0 1126741955 46499 0 1126741955 46522 0 1126741955 46558 0 1126741955 46769 0 1126741955 46910 0 1126741955 46932 0 1126741955 46933 0 1126741955 46935 0 1126741955 46947 0 1126741955 46951 0 1126741955 47007 0 1126741955 47015 0 1126741955 47018 0 1126741955 47030 0 1126741955 47042 0 1126741955 47136 0 1126741955 47140 0 1126741955 47148 0 1126741955 47406 0 1126741955 47407 0 1126741955 47831 0 1126741955 47832 0 1126741955 50551 0 1126741955 51408 0 1126741955 51416 0 1126741955 51518 0 1126741955 51520 0 1126741955 51745 0 1126741955 51848 0 1126741955 51850 0 1126741955 53315 0 1126741955 54111 0 1126741955 54197 0 1126741955 54219 0 1126741955 54236 0 1126741955 54255 0 1126741955 54349 0 1126741955 54350 0 1126741955 54427 0 1126741955 76118 0 1126741955 76176 0 1126741955 76207 0 1126741955 76560 0 1126741955 76572 0 1126741955 76785 0 1126741955 77350 0 1126741955 77383 0 1126741955 77386 0 1126741955 77403 0 1126741955 77406 0 1126741955 77407 0 1126741955 77417 0 1126741955 77495 0 1126741955 77502 0 1126741955 77557 0 1126741955 77846 0 1126741955 77848 0 1126741955 77855 0 1126741955 77859 0 1126741955 77869 0 1126741955 77875 0 1126741955 77880 0 1126741955 77884 0 1126741955 77887 0 1126741955 77898 0 1126741955 77932 0 1126741955 77946 0 1126741955 77966 0 1126741955 77970 0 1126741955 77974 0 1126741955 77994 0 1126741955 77997 0 1126741955 78010 0 1126741955 78013 0 1126741955 78028 0 1126741955 78033 0 1126741955 78047 0 1126741955 78107 0 1126741955 78111 0 1126741955 78122 0 1251301659 7 0 1251301659 10 0 1251301659 25 0 1338418011 7 0 1338418011 8 0 1338418011 9 0 1338418011 12 0 1338418011 13 0 1338418011 17 0 1338418011 21 0 1338418011 26 0 1338418011 27 0 1338418011 28 0 1338418011 29 0 1338418011 32 0 1338418011 33 2 1338418011 34 0 1338418011 35 0 1338418011 36 0 1338418011 37 0 1338418011 38 0 1338418011 39 0 1338418011 40 0 1338418011 41 0 1338418011 42 0 1338418011 43 0 1338418011 47 0 1338418011 48 0 1338418011 49 0 1338418011 52 0 1338418011 54 0 1338418011 56 0 1338418011 58 0 1338418011 60 0 1338418011 61 0 1338418011 62 2 1338418011 65 0 1338418011 68 0 1338418011 69 0 1338418011 70 0 1338418011 72 0 1338418011 73 0 1338418011 74 0 1338418011 75 0 1338418011 76 0 1338418011 77 0 1338418011 78 0 1338418011 79 0 1338418011 80 0 1338418011 83 0 1338418011 84 2 1338418011 85 0 1338418011 86 0 1338418011 87 0 1338418011 88 0 1338418011 89 0 1338418011 90 0 1338418011 91 0 1338418011 92 0 1338418011 93 0 1338418011 94 0 1338418011 95 0 1338418011 96 0 1338418011 97 0 1338418011 98 0 1338418011 99 0 1338418011 100 0 1338418011 101 0 1338418011 102 0 1338418011 104 0 1338418011 105 0 1338418011 106 0 1338418011 107 0 1338418011 108 0 1338418011 109 0 1338418011 111 2 1338418011 112 0 1338418011 113 0 1338418011 114 0 1338418011 115 0 1338418011 116 0 1338418011 118 0 1338418011 119 0 1338418011 120 0 1338418011 121 0 1338418011 122 0 1338418011 123 0 1338418011 125 0 1338418011 126 0 1338418011 128 0 1338418011 129 0 1338418011 130 0 1338418011 131 0 1338418011 132 0 1338418011 133 0 1338418011 134 0 1338418011 135 0 1338418011 136 0 1338418011 137 0 1338418011 138 0 1338418011 139 0 1338418011 140 0 1338418011 141 0 1338418011 142 0 1338418011 143 0 1338418011 145 0 1338418011 146 0 1338418011 147 0 1338418011 150 0 1338418011 151 0 1338418011 152 0 1338418011 153 0 1338418011 154 0 1338418011 156 0 1338418011 159 0 1338418011 160 0 1338418011 161 0 1338418011 162 0 1338418011 163 0 1338418011 165 0 1338418011 166 0 1479909343 6 0 1479909343 12 0 1479909343 14 0 1479909343 17 0 1479909343 21 2 1207973768 5 0 1207973768 7 2 1207973768 14 0 1207973768 15 2 1207973768 19 0 1207973768 37 0 1207973768 38 2 1207973768 40 2 1207973768 42 0 1207973768 44 0 1207973768 46 2 1207973768 68 0 1207973768 70 0 1207973768 105 2 1207973768 107 2 1207973768 113 0 1207973768 114 0 1207973768 115 0 1207973768 117 2 1207973768 142 2 1207973768 146 0 1207973768 148 0 1207973768 149 0 1207973768 150 2 1207973768 151 0 1207973768 153 2 1207973768 154 0 1207973768 158 2 1207973768 160 0 1207973768 161 0 1207973768 162 0 1207973768 163 0 1207973768 167 2 1207973768 170 0 1207973768 172 0 1207973768 175 2 1207973768 177 2 1207973768 180 0 1207973768 181 2 1207973768 184 0 1207973768 185 0 1207973768 188 2 1207973768 189 0 1207973768 192 2 1207973768 193 2 1207973768 194 2 1207973768 195 2 1207973768 196 0 1207973768 197 2 1207973768 198 0 1207973768 199 0 1207973768 201 0 1207973768 202 0 1207973768 203 2 1207973768 206 0 1207973768 207 2 1207973768 208 0 1207973768 209 2 1207973768 210 2 1207973768 211 0 1207973768 212 0 1207973768 213 2 1207973768 214 0 1207973768 215 2 1207973768 216 2 1207973768 217 2 1207973768 218 0 1207973768 219 2 1207973768 220 2 1207973768 221 2 1207973768 222 0 1207973768 223 0 1207973768 224 2 1207973768 225 0 1207973768 226 0 1207973768 227 2 1207973768 228 2 1207973768 229 0 1207973768 230 0 1207973768 231 0 1207973768 232 2 1207973768 233 0 1132732203 39 0 1132732203 68 0 1132732203 193 0 1132732203 197 0 1132732203 202 0 1132732203 262 0 1132732203 275 0 1132732203 279 0 1132732203 283 0 1132732203 303 0 1132732203 329 0 1132732203 341 0 1132732203 390 0 1132732203 524 0 1132732203 525 0 1132732203 547 0 1132732203 552 0 1132732203 561 0 1132732203 563 0 1132732203 568 0 1132732203 581 0 1132732203 604 0 1132732203 613 0 1132732203 624 0 1132732203 631 0 1132732203 632 2 1132732203 633 0 1132732203 635 0 1132732203 636 0 1132732203 637 2 1132732203 638 2 1132732203 640 0 1132732203 641 0 1132732203 644 2 1132732203 646 2 1132732203 648 0 1132732203 649 2 1132732203 656 2 1132732203 660 2 1132732203 680 2 1132732203 681 2 1132732203 686 0 1132732203 687 2 1132732203 689 2 1132732203 696 2 1132732203 698 0 1132732203 700 0 1132732203 702 0 1132732203 703 2 1132732203 704 0 1132732203 707 2 1132732203 708 0 1132732203 711 0 1132732203 712 2 1132732203 714 0 1132732203 720 2 1132732203 721 2 1132732203 725 2 1132732203 727 0 1132732203 731 0 1132732203 736 2 1132732203 738 2 1132732203 743 0 1426029537 30 0 1426029537 32 0 1426029537 33 0 1426029537 34 0 1426029537 36 0 1426029537 39 0 1426029537 43 0 1426029537 44 0 1426029537 49 0 1426029537 56 0 1426029537 60 0 1426029537 61 0 1426029537 62 0 1426029537 67 0 1426029537 75 0 1426029537 76 0 1426029537 80 0 1426029537 85 0 1426029537 101 0 1426029537 102 0 1426029537 109 0 1426029537 113 0 1426029537 118 0 1426029537 134 0 1426029537 135 0 1426029537 142 0 1426029537 152 0 1426029537 171 0 1426029537 173 0 1426029537 178 0 1426029537 180 0 1426029537 181 0 1426029537 183 0 1426029537 185 0 1426029537 186 0 1426029537 187 0 1426029537 189 0 1426029537 197 0 1426029537 214 0 1426029537 216 0 1426029537 218 0 1426029537 219 0 1426029537 220 0 1426029537 223 0 1426029537 225 0 1426029537 256 0 1426029537 258 0 1426029537 266 0 1309132313 630 0 1309132313 632 0 1309132313 636 0 1309132313 640 0 1309132313 641 0 1309132313 643 0 1309132313 656 0 1309132313 659 0 1309132313 660 0 1309132313 662 0 1309132313 663 0 1309132313 666 0 1309132313 667 0 1309132313 668 0 1309132313 669 0 1309132313 672 0 1309132313 679 0 1309132313 682 0 1309132313 683 0 1309132313 686 0 1309132313 687 0 1309132313 689 0 1309132313 690 0 1309132313 691 0 1309132313 692 0 1309132313 693 0 1309132313 694 0 1309132313 697 0 1309132313 699 0 1309132313 700 0 1309132313 702 0 1309132313 703 0 1309132313 704 0 1309132313 705 0 1309132313 706 0 1309132313 707 0 1309132313 711 0 1309132313 714 0 1309132313 715 0 1309132313 720 0 1309132313 741 0 1309132313 765 0 1309132313 771 0 1309132313 781 0 1309132313 793 0 1309132313 794 0 1309132313 795 0 1309132313 798 0 1309132313 799 0 1309132313 800 0 1309132313 802 0 1309132313 833 0 1309132313 839 0 1309132313 852 0 1309132313 853 0 1309132313 880 0 1309132313 886 0 1309132313 889 0 1309132313 894 0 1309132313 902 0 1309132313 906 0 1309132313 910 0 1309132313 921 0 1309132313 931 0 1309132313 932 0 1309132313 935 0 1309132313 936 0 1309132313 941 0 1309132313 948 0 1309132313 961 0 1309132313 964 0 1309132313 965 0 1309132313 974 0 1309132313 987 0 1309132313 989 0 1309132313 991 0 1309132313 998 0 1309132313 1002 0 1309132313 1014 0 1309132313 1022 0 1309132313 1034 0 1309132313 1040 0 1309132313 1042 0 1309132313 1056 0 1309132313 1068 0 1309132313 1087 0 1309132313 1093 0 1309132313 1096 0 1309132313 1108 0 1309132313 1109 0 1309132313 1115 0 1309132313 1126 0 1309132313 1136 0 1309132313 1139 0 1309132313 1144 0 1309132313 1152 0 1309132313 1162 0 1309132313 1165 0 1309132313 1166 0 1309132313 1172 0 1309132313 1184 0 1309132313 1192 0 1309132313 1201 0 1309132313 1204 0 1309132313 1213 2 1309132313 1218 0 1309132313 1223 0 1309132313 1224 0 1309132313 1233 2 1309132313 1240 0 1309132313 1246 0 1309132313 1256 0 1309132313 1257 0 1309132313 1258 0 1309132313 1260 0 1309132313 1274 0 1309132313 1284 0 1309132313 1291 0 1309132313 1295 0 1309132313 1298 0 1309132313 1306 0 1309132313 1308 0 1309132313 1309 0 1309132313 1317 0 1309132313 1332 0 1309132313 1334 0 1309132313 1335 0 1309132313 1350 0 1309132313 1351 0 1493950470 6 0 1493950470 7 0 1493950470 8 0 1493950470 9 0 1493950470 10 0 1493950470 11 0 1493950470 12 0 1493950470 13 0 1493950470 14 0 1493950470 15 0 1493950470 16 0 1493950470 17 0 1493950470 18 0 1493950470 19 0 1493950470 20 0 1493950470 21 0 1493950470 22 0 1493950470 23 0 1493950470 24 0 1493950470 25 0 1493950470 26 0 1493950470 27 0 1493950470 28 0 1493950470 29 0 1493950470 30 0 1493950470 31 0 1493950470 32 0 1493950470 33 0 1493950470 34 0 1493950470 35 0 1493950470 36 0 1493950470 37 0 1493950470 38 0 1493950470 39 0 1493950470 40 0 1493950470 41 0 1493950470 42 0 1493950470 43 0 1493950470 44 0 1493950470 45 0 1493950470 46 0 1493950470 47 0 1493950470 48 0 1493950470 49 0 1493950470 50 0 1493950470 51 0 1493950470 52 0 1493950470 53 0 1493950470 54 0 1493950470 55 0 1493950470 56 0 1493950470 57 0 1493950470 58 0 1493950470 59 0 1493950470 60 0 1493950470 61 0 1493950470 62 0 1493950470 63 0 1493950470 64 0 1493950470 65 0 1493950470 66 0 1493950470 67 0 1493950470 68 0 1493950470 69 0 1493950470 70 0 1493950470 71 0 1493950470 72 0 1493950470 73 0 1493950470 74 0 1493950470 75 0 1493950470 76 0 1493950470 77 0 1493950470 78 0 1493950470 79 0 1493950470 80 0 1493950470 81 0 1493950470 82 0 1493950470 83 0 1493950470 84 0 1493950470 85 0 1493950470 86 0 1493950470 87 0 1493950470 88 0 1493950470 89 0 1493950470 90 0 1493950470 91 0 1493950470 92 0 1493950470 93 0 1493950470 94 0 1493950470 95 0 1493950470 96 0 1493950470 97 0 1493950470 98 0 1493950470 99 0 1493950470 100 0 1493950470 101 0 1493950470 102 0 1493950470 103 0 1493950470 104 0 1493950470 105 0 1493950470 106 0 1493950470 107 0 1493950470 108 0 1493950470 109 0 1493950470 110 0 1493950470 111 0 1493950470 112 0 1493950470 113 0 1493950470 114 0 1493950470 115 0 1493950470 116 0 1493950470 117 0 1493950470 118 0 1493950470 119 0 1493950470 120 0 1493950470 121 0 1493950470 122 0 1493950470 123 0 1493950470 124 0 1493950470 125 0 1493950470 126 0 1493950470 127 0 1493950470 128 0 1493950470 129 0 1493950470 130 0 1493950470 131 0 1493950470 132 0 1493950470 133 0 1493950470 134 0 1493950470 135 0 1493950470 136 0 1493950470 137 0 1493950470 138 0 1493950470 139 0 1493950470 140 0 1493950470 141 0 1493950470 142 0 1493950470 143 0 1493950470 144 0 1493950470 145 0 1493950470 146 0 1493950470 147 0 1230328698 2204 0 1230328698 2207 0 1230328698 2208 0 1230328698 2209 0 1230328698 2212 0 1230328698 2215 0 1230328698 2217 0 1230328698 2218 0 1230328698 2220 0 1230328698 2222 0 1230328698 2224 0 1230328698 2225 0 1230328698 2228 0 1230328698 2229 0 1230328698 2231 0 1230328698 2232 0 1230328698 2240 0 1230328698 2244 0 1230328698 2247 0 1230328698 2254 0 1230328698 2258 0 1230328698 2259 0 1230328698 2261 0 1230328698 2262 0 1230328698 2265 0 1230328698 2266 0 1230328698 2267 0 1230328698 2268 0 1230328698 2269 0 1230328698 2270 0 1230328698 2272 0 1230328698 2273 0 1230328698 2275 0 1230328698 2276 0 1230328698 2277 0 1230328698 2279 0 1230328698 2280 0 1230328698 2284 2 1230328698 2286 0 1230328698 2287 0 1230328698 2288 0 1230328698 2290 0 1230328698 2291 0 1230328698 2292 0 1230328698 2298 0 1230328698 2301 0 1230328698 2302 0 1230328698 2303 0 1230328698 2304 0 1230328698 2305 0 1230328698 2308 0 1230328698 2311 0 1230328698 2317 0 1230328698 2318 0 1465049665 6 0 1465049665 7 0 1465049665 8 0 1465049665 9 0 1465049665 10 1 1465049665 95 1 1465049665 105 1 1465049665 108 1 1465049665 110 1 1465049665 112 1 1465049665 113 0 1465049665 114 0 1465049665 115 1 1465049665 116 1 1465049665 117 1 1465049665 118 1 1465049665 119 1 1465049665 120 1 1465049665 121 1 1465049665 124 1 1465049665 125 0 1465049665 127 0 1477468857 5 0 1141221379 11124 2 1141221379 11125 2 1141221379 11127 0 1299457190 4423 0 1299457190 4424 2 1299457190 4447 0 1299457190 4463 2 1299457190 4475 0 1299457190 4480 2 1299457190 4496 2 1299457190 4509 0 1299457190 4510 0 1299457190 4512 0 1299457190 4531 0 1299457190 4533 0 1299457190 4558 2 1299457190 4560 0 1299457190 4574 0 1299457190 4589 2 1299457190 4592 0 1247729038 260 0 1247729038 262 0 1247729038 263 0 1247729038 264 0 1351958949 2186 0 1351958949 2200 0 1351958949 2207 0 1351958949 2217 0 1351958949 2218 0 1351958949 2222 0 1351958949 2231 0 1351958949 2238 0 1351958949 2253 0 1351958949 2254 0 1351958949 2264 0 1351958949 2265 0 1351958949 2267 2 1351958949 2268 2 1220639536 779 0 1220639536 780 0 1220639536 781 0 1220639536 782 0 1220639536 783 0 1220639536 785 0 1220639536 787 0 1220639536 788 0 1220639536 789 0 1220639536 790 0 1220639536 791 0 1220639536 793 0 1220639536 794 0 1220639536 795 0 1220639536 796 0 1220639536 797 0 1220639536 803 0 1220639536 804 0 1220639536 805 0 1220639536 806 0 1220639536 807 0 1220639536 808 0 1220639536 809 0 1220639536 810 0 1220639536 812 0 1220639536 814 0 1220639536 815 0 1220639536 818 0 1220639536 819 0 1220639536 820 0 1220639536 821 0 1220639536 822 0 1126741955 78139 0 1126741955 78193 0 1126741955 78200 0 1126741955 78202 0 1126741955 78210 0 1126741955 78386 0 1126741955 78400 0 1126741955 78402 0 1126741955 78403 0 1126741955 78404 0 1126741955 78412 0 1126741955 78425 0 1126741955 78436 0 1126741955 78438 0 1126741955 78446 0 1126741955 78447 0 1126741955 78462 0 1126741955 78463 0 1126741955 78529 0 1126741955 78576 0 1126741955 78577 0 1126741955 78582 0 1126741955 78586 0 1126741955 78606 0 1126741955 78612 0 1126741955 78653 0 1126741955 78672 0 1126741955 78678 0 1126741955 78710 0 1126741955 78717 0 1126741955 78726 0 1126741955 78969 0 1126741955 79004 0 1126741955 79058 0 1126741955 79105 0 1126741955 79111 0 1126741955 79131 0 1126741955 79159 0 1126741955 79224 0 1126741955 80008 0 1126741955 80082 0 1126741955 80086 0 1126741955 80093 0 1126741955 80133 0 1126741955 80321 0 1126741955 80632 0 1126741955 80635 0 1126741955 80699 0 1126741955 80705 0 1126741955 80709 0 1126741955 80714 0 1126741955 80720 0 1126741955 80726 0 1126741955 80731 0 1126741955 80735 0 1126741955 80748 0 1126741955 80752 0 1126741955 80756 0 1126741955 80834 0 1126741955 80835 0 1126741955 80837 0 1126741955 80838 0 1126741955 80860 0 1126741955 80861 0 1126741955 80864 0 1126741955 80865 0 1126741955 80882 0 1126741955 80895 0 1126741955 80896 0 1126741955 80913 0 1126741955 81030 0 1126741955 81032 0 1126741955 81192 0 1126741955 81193 0 1126741955 81201 0 1126741955 81217 0 1126741955 81218 0 1126741955 81352 0 1126741955 81353 0 1126741955 81360 0 1126741955 81361 0 1126741955 81362 0 1126741955 81363 0 1126741955 81385 0 1126741955 81392 0 1126741955 81393 0 1126741955 81405 0 1126741955 81434 0 1126741955 81435 0 1126741955 81440 0 1126741955 81443 0 1126741955 81455 0 1126741955 81456 0 1126741955 81566 0 1126741955 81764 0 1126741955 81774 0 1126741955 81784 0 1126741955 81787 0 1126741955 81788 0 1126741955 81792 0 1126741955 81812 0 1126741955 81815 0 1126741955 81818 0 1126741955 81820 0 1126741955 81845 0 1126741955 81846 0 1126741955 81869 0 1126741955 81924 0 1126741955 81956 0 1126741955 81960 0 1126741955 81963 0 1126741955 81964 0 1126741955 82014 0 1126741955 82220 0 1126741955 82222 0 1126741955 82224 0 1126741955 82232 0 1126741955 82246 0 1126741955 82355 0 1126741955 82356 0 1126741955 82357 0 1126741955 82359 0 1126741955 82363 0 1126741955 82364 0 1126741955 82368 0 1126741955 82369 0 1126741955 82372 0 1126741955 82425 0 1126741955 82698 0 1126741955 82731 0 1126741955 82739 0 1126741955 82741 0 1126741955 82801 0 1126741955 82854 0 1126741955 83218 0 1126741955 83248 0 1126741955 83355 0 1126741955 83409 0 1126741955 83414 0 1126741955 83443 0 1126741955 83460 0 1126741955 83752 0 1126741955 83772 0 1126741955 83774 0 1126741955 83776 0 1126741955 84043 0 1126741955 84296 0 1338418011 167 2 1338418011 168 0 1338418011 170 0 1338418011 171 0 1338418011 172 0 1338418011 173 0 1338418011 177 0 1338418011 178 0 1338418011 179 0 1207973768 234 0 1207973768 235 2 1207973768 236 0 1207973768 237 2 1207973768 238 2 1207973768 239 2 1207973768 240 2 1207973768 241 2 1207973768 242 0 1207973768 243 0 1207973768 244 0 1207973768 245 2 1207973768 246 2 1207973768 247 2 1207973768 248 2 1207973768 249 2 1207973768 250 0 1207973768 251 0 1207973768 252 2 1207973768 253 2 1207973768 254 0 1207973768 255 0 1207973768 256 0 1207973768 257 2 1207973768 258 2 1207973768 259 0 1207973768 260 2 1207973768 261 0 1207973768 262 2 1207973768 263 2 1132732203 746 2 1132732203 750 2 1132732203 763 2 1132732203 766 2 1132732203 773 2 1132732203 783 2 1132732203 785 0 1132732203 788 2 1132732203 789 0 1132732203 793 2 1132732203 798 2 1132732203 800 2 1132732203 806 2 1132732203 808 2 1132732203 815 2 1132732203 820 2 1132732203 822 2 1132732203 828 2 1132732203 831 2 1132732203 838 2 1132732203 839 0 1132732203 840 2 1132732203 843 2 1132732203 846 0 1132732203 858 2 1132732203 859 0 1132732203 867 0 1132732203 873 2 1132732203 874 2 1132732203 877 0 1132732203 883 2 1132732203 887 0 1132732203 891 2 1132732203 892 0 1132732203 893 2 1132732203 900 2 1132732203 905 2 1132732203 914 0 1132732203 917 2 1132732203 919 2 1132732203 921 0 1132732203 937 0 1132732203 938 2 1132732203 943 2 1132732203 952 0 1132732203 955 0 1132732203 958 2 1132732203 959 0 1132732203 967 0 1132732203 972 2 1132732203 974 2 1132732203 977 0 1309132313 1358 0 1309132313 1359 0 1309132313 1360 0 1309132313 1361 0 1309132313 1367 0 1309132313 1374 0 1309132313 1385 0 1309132313 1391 0 1309132313 1398 0 1309132313 1401 0 1309132313 1405 0 1309132313 1420 0 1309132313 1436 2 1309132313 1441 0 1309132313 1445 0 1309132313 1453 0 1309132313 1454 0 1309132313 1455 0 1309132313 1465 0 1309132313 1481 0 1309132313 1490 0 1309132313 1493 0 1309132313 1494 0 1309132313 1507 0 1309132313 1513 0 1309132313 1517 0 1309132313 1523 0 1309132313 1527 0 1309132313 1528 0 1309132313 1531 0 1309132313 1544 0 1309132313 1548 0 1493950470 148 0 1493950470 149 0 1493950470 150 0 1493950470 151 0 1493950470 152 0 1493950470 153 0 1493950470 154 0 1493950470 155 0 1493950470 156 0 1493950470 157 0 1493950470 158 0 1493950470 159 0 1493950470 160 0 1493950470 161 0 1493950470 162 0 1493950470 163 0 1493950470 164 0 1493950470 165 0 1493950470 166 0 1493950470 167 0 1493950470 168 0 1493950470 169 0 1493950470 170 0 1493950470 171 0 1493950470 172 0 1493950470 173 0 1493950470 174 0 1493950470 175 0 1493950470 176 0 1493950470 177 0 1493950470 178 0 1493950470 179 0 1493950470 180 0 1493950470 181 0 1493950470 182 0 1493950470 183 0 1493950470 184 0 1493950470 185 0 1493950470 186 0 1493950470 187 0 1493950470 188 0 1493950470 189 0 1493950470 190 0 1493950470 191 0 1493950470 192 0 1493950470 193 0 1493950470 194 0 1493950470 195 0 1493950470 196 0 1493950470 197 0 1493950470 198 0 1230328698 2321 0 1230328698 2322 0 1230328698 2325 0 1230328698 2328 0 1230328698 2337 0 1230328698 2341 0 1230328698 2342 0 1230328698 2343 0 1230328698 2346 0 1230328698 2347 2 1230328698 2348 0 1230328698 2350 0 1230328698 2351 0 1230328698 2352 0 1230328698 2355 0 1230328698 2356 0 1230328698 2358 0 1230328698 2359 0 1230328698 2360 0 1230328698 2362 0 1230328698 2363 0 1230328698 2364 0 1230328698 2365 0 1230328698 2366 0 1230328698 2367 0 1230328698 2369 0 1230328698 2371 2 1230328698 2374 0 1230328698 2376 0 1230328698 2379 0 1230328698 2382 0 1230328698 2385 0 1230328698 2391 0 1230328698 2392 0 1230328698 2393 2 1230328698 2394 0 1230328698 2406 0 1230328698 2411 0 1230328698 2415 0 1141221379 11128 0 1141221379 11129 0 1141221379 11130 0 1141221379 11131 0 1141221379 11132 2 1141221379 11133 2 1141221379 11134 0 1141221379 11135 0 1141221379 11137 0 1141221379 11138 0 1141221379 11139 2 1141221379 11140 0 1141221379 11141 0 1141221379 11142 0 1141221379 11144 0 1141221379 11146 0 1141221379 11147 0 1141221379 11148 0 1141221379 11149 0 1141221379 11150 0 1141221379 11151 0 1141221379 11152 2 1141221379 11155 0 1141221379 11156 0 1141221379 11157 0 1141221379 11158 0 1141221379 11160 0 1141221379 11161 0 1141221379 11162 0 1141221379 11163 0 1132534018 2792 0 1132534018 2793 2 1132534018 2794 0 1132534018 2795 0 1132534018 2796 0 1132534018 2798 0 1132534018 2801 2 1132534018 2810 0 1132534018 2811 0 1132534018 2812 0 1132534018 2813 0 1132534018 2814 0 1132534018 2816 0 1132534018 2818 2 1132534018 2819 0 1132534018 2820 0 1132534018 2822 0 1132534018 2823 0 1174077730 7073 0 1174077730 7088 2 1174077730 7096 0 1174077730 7099 2 1174077730 7103 2 1174077730 7140 2 1174077730 7142 0 1174077730 7143 0 1174077730 7144 0 1174077730 7145 2 1174077730 7146 0 1174077730 7147 2 1174077730 7149 1 1174077730 7153 1 1174077730 7157 1 1174077730 7160 1 1174077730 7161 0 1174077730 7169 0 1174077730 7175 2 1174077730 7176 0 1207973768 264 0 1207973768 265 0 1207973768 266 2 1207973768 267 0 1132732203 980 0 1132732203 985 2 1132732203 986 2 1132732203 989 0 1132732203 991 2 1132732203 997 2 1132732203 1001 2 1132732203 1005 0 1132732203 1006 0 1132732203 1010 2 1132732203 1011 0 1132732203 1014 2 1132732203 1017 2 1132732203 1032 0 1132732203 1034 0 1132732203 1043 2 1132732203 1045 0 1309132313 1551 0 1309132313 1564 0 1493950470 199 0 1132534018 2824 0 1132534018 2826 0 1132534018 2827 2 1132534018 2835 2 1132534018 2836 2 1132534018 2837 2 1132534018 2838 2 1132534018 2839 2 1132534018 2840 2 1132534018 2841 2 1132534018 2842 2 1132534018 2845 0 1132534018 2853 0 1132534018 2856 2 1132534018 2858 0 1132534018 2860 0 1132534018 2861 0 1132534018 2862 0 1132534018 2863 0 1132534018 2864 0 1132534018 2866 0 1132534018 2867 0 1132534018 2868 2 1132534018 2872 0 1132534018 2873 0 1132534018 2874 0 1132534018 2875 0 1132534018 2876 0 1132534018 2877 0 1132534018 2878 0 1132534018 2879 0 1132534018 2880 0 1132534018 2881 0 1132534018 2882 0 1132534018 2883 2 1132534018 2884 0 1132534018 2885 0 1132534018 2886 0 1132534018 2887 1 1174077730 7193 1 1174077730 7205 1 1174077730 7206 1 1174077730 7207 0 1174077730 7209 0 1174077730 7227 2 1174077730 7240 2 1174077730 7241 0 1174077730 7252 0 1174077730 7263 2 1174077730 7291 0 1174077730 7311 0 1174077730 7313 0 1174077730 7314 0 1174077730 7316 0 1174077730 7322 0 1174077730 7323 2 1174077730 7329 0 1174077730 7333 0 1174077730 7334 2 1174077730 7335 0 1174077730 7336 0 1174077730 7338 0 1174077730 7361 2 1174077730 7405 2 1174077730 7413 2 1174077730 7441 0 1174077730 7513 0 1174077730 7530 2 1174077730 7531 0 1174077730 7532 2 1174077730 7539 0 1174077730 7544 1 1174077730 7563 1 1174077730 7566 2 1174077730 7567 2 1174077730 7597 0 1174077730 7598 0 1174077730 7599 0 1174077730 7603 0 1174077730 7611 0 1174077730 7613 0 1174077730 7614 0 1174077730 7622 2 1174077730 7623 0 1174077730 7624 0 1174077730 7627 0 1174077730 7628 0 1174077730 7638 2 1174077730 7642 2 1174077730 7672 0 1174077730 7674 0 1174077730 7676 0 1174077730 7677 0 1174077730 7684 0 1174077730 7687 0 1174077730 7688 0 1174077730 7689 0 1174077730 7690 0 1174077730 7694 0 1174077730 7696 0 1174077730 7700 2 1174077730 7703 0 1174077730 7712 2 1174077730 7713 2 1174077730 7723 0 1174077730 7725 2 1174077730 7742 0 1174077730 7753 0 1174077730 7764 2 1174077730 7765 2 1174077730 7768 0 1174077730 7769 0 1174077730 7770 0 1174077730 7771 0 1174077730 7772 0 1174077730 7773 0 1174077730 7774 0 1174077730 7777 2 1174077730 7778 2 1174077730 7792 0 1174077730 7802 0 1174077730 7803 0 1404749961 6 0 1404749961 8 0 1404749961 10 0 1404749961 11 0 1404749961 13 2 1404749961 14 2 1404749961 16 0 1404749961 21 0 1404749961 22 0 1404749961 23 0 1404749961 25 0 1404749961 27 0 1404749961 30 0 1404749961 31 0 1404749961 32 0 1404749961 33 0 1404749961 34 0 1404749961 35 0 1404749961 36 0 1404749961 38 0 1404749961 39 0 1404749961 40 0 1404749961 41 0 1404749961 42 0 1404749961 45 0 1404749961 48 0 1404749961 50 0 1404749961 51 0 1404749961 52 0 1404749961 53 0 1404749961 54 0 1404749961 58 0 1404749961 59 0 1404749961 61 0 1404749961 64 0 1404749961 65 0 1404749961 66 0 1404749961 67 0 1404749961 68 0 1404749961 69 0 1404749961 70 0 1404749961 71 0 1404749961 72 0 1404749961 73 0 1404749961 74 0 1404749961 75 0 1404749961 76 0 1404749961 77 0 1404749961 78 0 1404749961 83 0 1404749961 84 0 1404749961 85 0 1404749961 86 0 1404749961 87 0 1404749961 88 0 1404749961 96 0 1404749961 97 0 1404749961 98 0 1404749961 99 0 1404749961 102 2 1404749961 104 0 1404749961 105 0 1404749961 106 0 1404749961 107 0 1404749961 108 0 1404749961 109 2 1404749961 110 0 1404749961 112 0 1404749961 113 2 1404749961 114 0 1404749961 115 0 1404749961 116 2 1404749961 117 0 1404749961 118 0 1404749961 119 0 1404749961 121 0 1404749961 122 0 1404749961 123 0 1404749961 124 0 1404749961 125 0 1404749961 126 0 1404749961 127 0 1404749961 129 0 1404749961 130 0 1404749961 131 0 1404749961 132 2 1404749961 134 0 1404749961 135 2 1404749961 136 0 1404749961 137 2 1404749961 138 2 1404749961 139 0 1404749961 142 0 1404749961 143 2 1404749961 144 0 1404749961 147 0 1404749961 148 0 1404749961 149 0 1404749961 150 0 1404749961 151 0 1404749961 154 0 1404749961 155 0 1404749961 156 0 1404749961 157 0 1404749961 158 0 1404749961 159 0 1123236170 8724 0 1123236170 8796 0 1123236170 8800 2 1123236170 8866 0 1123236170 8884 0 1123236170 8888 0 1123236170 8889 2 1123236170 8904 0 1123236170 8910 2 1123236170 8920 0 1123236170 8931 0 1123236170 8932 0 1178742148 2636 2 1178742148 2637 2 1178742148 2638 0 1178742148 2639 2 1178742148 2640 0 1178742148 2643 2 1178742148 2644 0 1178742148 2645 0 1178742148 2649 0 1178742148 2650 2 1178742148 2651 0 1178742148 2653 0 1178742148 2654 0 1178742148 2655 2 1178742148 2656 0 1178742148 2657 2 1178742148 2661 0 1178742148 2662 0 1152809569 3694 2 1152809569 3695 2 1152809569 3696 0 1152809569 3697 2 1152809569 3698 0 1152809569 3701 2 1152809569 3702 0 1152809569 3703 0 1152809569 3704 0 1152809569 3705 2 1152809569 3706 2 1152809569 3708 0 1152809569 3710 0 1152809569 3711 2 1152809569 3712 0 1152809569 3714 0 1152809569 3715 0 1152809569 3716 2 1152809569 3717 0 1155451890 1132 1 1258431324 2611 1 1258431324 2612 1 1258431324 2613 0 1258431324 2614 1 1258431324 2615 2 1258431324 2616 1 1258431324 2617 1 1258431324 2618 2 1258431324 2619 1 1258431324 2620 1 1258431324 2621 1 1258431324 2622 1 1258431324 2623 1 1258431324 2625 0 1258431324 2626 0 1258431324 2627 2 1258431324 2628 0 1258431324 2629 0 1258431324 2630 1 1258431324 2631 2 1258431324 2632 2 1258431324 2635 2 1258431324 2636 1 1258431324 2638 1 1258431324 2639 1 1258431324 2640 1 1258431324 2641 2 1258431324 2642 1 1258431324 2643 1 1258431324 2645 1 1258431324 2646 1 1258431324 2647 1 1258431324 2648 1 1258431324 2650 0 1258431324 2651 0 1258431324 2652 0 1258431324 2653 1 1258431324 2654 1 1258431324 2655 0 1258431324 2657 0 1258431324 2658 2 1258431324 2659 0 1258431324 2661 0 1258431324 2662 1 1258431324 2664 1 1258431324 2665 1 1258431324 2666 1 1258431324 2667 1 1258431324 2668 1 1258431324 2669 1 1258431324 2670 1 1258431324 2671 1 1258431324 2673 0 1258431324 2674 0 1258431324 2675 0 1258431324 2676 1 1258431324 2678 0 1258431324 2679 2 1258431324 2680 0 1258431324 2681 2 1258431324 2686 0 1258431324 2687 1 1258431324 2688 0 1258431324 2689 1 1258431324 2690 1 1258431324 2691 1 1258431324 2692 1 1258431324 2693 1 1258431324 2694 1 1258431324 2695 1 1258431324 2696 1 1258431324 2698 0 1258431324 2699 0 1258431324 2700 0 1258431324 2701 1 1258431324 2703 0 1258431324 2704 1 1258431324 2706 1 1258431324 2707 1 1258431324 2708 1 1258431324 2709 1 1258431324 2710 1 1258431324 2711 1 1258431324 2712 1 1258431324 2713 1 1258431324 2715 0 1258431324 2716 0 1258431324 2717 0 1258431324 2718 1 1258431324 2719 2 1258431324 2720 1 1258431324 2722 1 1258431324 2723 1 1258431324 2724 1 1258431324 2725 1 1258431324 2726 1 1258431324 2727 1 1258431324 2728 1 1258431324 2729 1 1258431324 2731 0 1258431324 2732 0 1258431324 2733 0 1258431324 2734 1 1258431324 2735 0 1258431324 2736 0 1258431324 2737 0 1258431324 2738 0 1258431324 2740 1 1258431324 2741 1 1258431324 2743 1 1258431324 2744 1 1258431324 2745 1 1258431324 2746 1 1258431324 2747 0 1258431324 2748 1 1258431324 2749 1 1258431324 2751 0 1258431324 2752 0 1258431324 2753 0 1258431324 2754 1 1258431324 2755 2 1258431324 2756 2 1258431324 2757 1 1258431324 2759 2 1258431324 2760 1 1258431324 2761 1 1258431324 2762 0 1258431324 2763 1 1258431324 2764 1 1258431324 2765 1 1258431324 2766 1 1258431324 2768 1 1258431324 2770 1 1258431324 2771 1 1258431324 2772 1 1258431324 2773 1 1258431324 2774 1 1258431324 2775 1 1258431324 2776 1 1258431324 2777 1 1258431324 2778 1 1258431324 2780 0 1258431324 2781 0 1258431324 2782 0 1258431324 2783 1 1258431324 2784 2 1258431324 2786 2 1258431324 2787 1 1258431324 2789 1 1258431324 2790 1 1258431324 2791 1 1258431324 2792 1 1258431324 2793 1 1258431324 2794 1 1258431324 2795 1 1258431324 2796 1 1258431324 2798 0 1258431324 2799 0 1258431324 2800 0 1258431324 2801 1 1258431324 2802 1 1258431324 2804 2 1258431324 2805 1 1258431324 2806 1 1258431324 2807 1 1258431324 2808 1 1258431324 2809 1 1258431324 2810 1 1258431324 2811 1 1258431324 2812 1 1258431324 2814 0 1258431324 2815 0 1258431324 2816 0 1258431324 2817 1 1258431324 2818 1 1258431324 2820 1 1258431324 2821 1 1258431324 2822 1 1258431324 2823 1 1258431324 2824 1 1258431324 2825 1 1258431324 2826 1 1258431324 2827 1 1258431324 2829 0 1258431324 2830 0 1258431324 2831 0 1258431324 2832 1 1258431324 2833 2 1258431324 2834 0 1258431324 2835 2 1258431324 2836 0 1258431324 2837 2 1258431324 2838 2 1258431324 2840 2 1258431324 2841 0 1258431324 2842 0 1258431324 2843 0 1258431324 2847 2 1258431324 2848 0 1258431324 2849 1 1258431324 2851 1 1258431324 2852 1 1258431324 2853 1 1258431324 2854 1 1258431324 2855 1 1258431324 2856 1 1258431324 2857 1 1258431324 2858 1 1258431324 2859 1 1258431324 2861 0 1258431324 2862 0 1258431324 2863 0 1258431324 2864 1 1258431324 2865 1 1258431324 2867 1 1258431324 2868 1 1258431324 2869 1 1258431324 2870 1 1258431324 2871 1 1258431324 2872 1 1258431324 2873 1 1258431324 2875 0 1258431324 2876 0 1258431324 2877 0 1258431324 2878 1 1258431324 2879 2 1258431324 2880 2 1258431324 2881 2 1274906467 24 2 1274906467 26 2 1274906467 27 0 1274906467 28 0 1274906467 29 0 1274906467 30 2 1274906467 31 0 1274906467 32 2 1274906467 33 2 1274906467 34 2 1274906467 35 0 1274906467 36 0 1274906467 37 0 1274906467 38 0 1274906467 40 0 1274906467 41 0 1274906467 43 0 1274906467 44 0 1274906467 46 0 1274906467 50 2 1274906467 51 2 1274906467 52 0 1274906467 53 0 1274906467 57 2 1274906467 58 2 1274906467 60 1 1475300028 2 1 1475300028 3 0 1475300028 4 1 1475300028 5 1 1475300028 6 1 1475300028 7 1 1475300028 8 1 1475300028 9 1 1475300028 10 2 1475300028 11 2 1475300028 12 2 1475300028 13 0 1475300028 15 0 1475300028 16 2 1475300028 17 0 1475300028 18 2 1475300028 20 0 1475300028 21 2 1475300028 22 0 1475300028 24 2 1475300028 25 2 1475300028 26 0 1475300028 27 1 1475300028 29 0 1475300028 30 0 1475300028 31 0 1475300028 32 0 1475300028 33 0 1475300028 36 2 1475300028 37 0 1475300028 38 2 1475300028 39 2 1475300028 40 2 1475300028 41 0 1475300028 42 0 1475300028 43 0 1475300028 44 0 1475300028 48 0 1475300028 49 2 1475300028 50 0 1475300028 51 2 1475300028 52 2 1475300028 53 2 1475300028 54 0 1475300028 55 0 1475300028 56 0 1475300028 57 0 1475300028 58 2 1475300028 59 2 1475300028 60 2 1475300028 61 2 1475300028 62 0 1475300028 65 0 1475300028 66 2 1475300028 67 0 1475300028 70 0 1475300028 72 0 1475300028 73 0 1475300028 74 0 1475300028 75 0 1475300028 76 0 1475300028 77 0 1475300028 78 0 1475300028 79 0 1475300028 80 0 1475300028 83 2 1475300028 84 1 1475300028 85 2 1475300028 87 2 1475300028 88 0 1475300028 90 2 1475300028 92 0 1475300028 94 2 1475300028 96 0 1475300028 97 0 1475300028 98 0 1475300028 99 0 1475300028 100 0 1475300028 101 0 1475300028 103 0 1475300028 104 0 1475300028 105 0 1475300028 107 2 1475300028 109 0 1475300028 110 0 1475300028 111 0 1475300028 113 0 1475300028 114 0 1475300028 115 2 1475300028 116 0 1475300028 119 0 1475300028 120 2 1475300028 121 0 1475300028 122 0 1475300028 124 2 1475300028 125 0 1475300028 126 2 1475300028 127 2 1475300028 128 2 1475300028 130 0 1475300028 131 2 1475300028 132 2 1475300028 134 2 1475300028 136 0 1475300028 138 0 1475300028 139 0 1475300028 140 0 1475300028 141 0 1475300028 143 0 1475300028 144 0 1475300028 145 0 1475300028 147 0 1475300028 148 2 1475300028 150 0 1475300028 152 0 1475300028 153 0 1475300028 154 0 1475300028 155 0 1475300028 156 0 1475300028 157 0 1475300028 158 0 1475300028 160 0 1475300028 161 0 1475300028 162 0 1475300028 163 0 1475300028 165 0 1475300028 166 0 1475300028 167 2 1475300028 168 0 1475300028 170 0 1475300028 171 0 1475300028 172 0 1475300028 173 0 1475300028 175 0 1475300028 176 0 1475300028 177 0 1475300028 180 0 1475300028 181 0 1475300028 183 0 1475300028 185 0 1475300028 187 0 1475300028 188 0 1475300028 189 0 1475300028 190 0 1475300028 193 0 1475300028 194 0 1475300028 195 2 1475300028 196 0 1475300028 197 0 1475300028 198 2 1475300028 199 2 1475300028 200 0 1475300028 202 0 1475300028 204 0 1475300028 205 0 1475300028 206 2 1475300028 207 0 1475300028 208 0 1475300028 210 0 1475300028 211 0 1475300028 214 0 1475300028 215 0 1475300028 216 0 1475300028 217 0 1475300028 218 2 1475300028 220 0 1475300028 221 0 1475300028 222 0 1475300028 224 1 1475300028 225 0 1475300028 227 0 1475300028 228 0 1475300028 229 0 1475300028 233 0 1475300028 234 0 1475300028 235 0 1475300028 236 1 1315869059 10 1 1315869059 14 0 1315869059 18 1 1315869059 22 1 1315869059 24 0 1315869059 25 1 1315869059 28 1 1315869059 29 1 1315869059 30 1 1315869059 31 1 1315869059 32 1 1315869059 33 1 1315869059 34 1 1315869059 35 1 1315869059 36 1 1315869059 37 1 1315869059 38 1 1315869059 39 1 1315869059 40 1 1315869059 41 1 1315869059 44 1 1315869059 45 0 1315869059 46 1 1315869059 47 1 1315869059 48 1 1315869059 49 1 1315869059 50 1 1315869059 54 1 1315869059 55 1 1315869059 56 1 1315869059 57 1 1315869059 58 1 1315869059 59 1 1315869059 60 1 1315869059 61 0 1315869059 62 1 1315869059 63 0 1315869059 64 1 1315869059 66 1 1315869059 67 1 1315869059 69 1 1315869059 70 1 1315869059 72 0 1315869059 73 1 1315869059 74 1 1315869059 75 1 1315869059 76 1 1315869059 77 1 1315869059 78 1 1315869059 79 1 1315869059 80 1 1315869059 82 1 1315869059 83 1 1315869059 84 1 1315869059 85 1 1315869059 86 1 1315869059 87 1 1315869059 89 1 1315869059 91 1 1315869059 101 0 1315869059 105 0 1315869059 106 0 1315869059 107 0 1315869059 108 0 1315869059 109 0 1315869059 110 0 1315869059 111 0 1315869059 112 0 1315869059 113 1 1315869059 114 1 1315869059 115 0 1315869059 117 0 1315869059 119 0 1315869059 120 0 1315869059 121 0 1315869059 122 0 1315869059 123 0 1315869059 126 0 1315869059 127 0 1315869059 128 0 1315869059 130 0 1315869059 131 0 1315869059 132 0 1315869059 133 0 1315869059 134 1 1315869059 135 1 1315869059 136 0 1315869059 137 0 1315869059 138 0 1315869059 149 0 1315869059 150 0 1315869059 151 0 1315869059 152 1 1315869059 154 1 1315869059 155 1 1315869059 156 1 1315869059 157 1 1315869059 158 1 1315869059 159 1 1315869059 160 1 1315869059 161 1 1315869059 163 1 1315869059 164 1 1315869059 165 1 1315869059 166 1 1315869059 168 1 1315869059 169 1 1315869059 171 1 1315869059 172 1 1315869059 174 1 1315869059 175 1 1315869059 177 1 1315869059 178 1 1315869059 179 1 1315869059 180 1 1315869059 181 1 1315869059 182 1 1315869059 183 1 1315869059 184 1 1315869059 185 1 1315869059 186 1 1315869059 189 1 1315869059 190 0 1315869059 195 0 1315869059 196 0 1315869059 197 0 1315869059 198 0 1315869059 199 0 1315869059 200 0 1315869059 201 0 1315869059 202 0 1315869059 203 0 1315869059 204 0 1315869059 205 0 1315869059 206 0 1315869059 207 0 1315869059 208 0 1315869059 209 0 1315869059 211 0 1315869059 212 0 1315869059 213 0 1315869059 214 0 1315869059 215 0 1315869059 216 0 1315869059 220 0 1315869059 221 0 1315869059 222 0 1315869059 223 0 1315869059 224 0 1315869059 225 0 1315869059 226 0 1315869059 227 0 1315869059 228 0 1315869059 229 0 1315869059 230 0 1315869059 231 0 1315869059 232 0 1315869059 233 0 1315869059 234 0 1315869059 235 0 1315869059 236 0 1315869059 237 0 1315869059 238 0 1315869059 239 0 1315869059 241 0 1315869059 242 0 1315869059 243 0 1315869059 244 0 1315869059 245 0 1315869059 246 0 1315869059 247 0 1315869059 248 0 1315869059 249 0 1315869059 250 0 1315869059 251 0 1315869059 252 0 1315869059 253 0 1315869059 254 0 1315869059 255 0 1315869059 256 2 1315869059 259 0 1315869059 261 0 1315869059 264 0 1315869059 265 0 1315869059 266 0 1315869059 267 0 1315869059 268 0 1369950426 542092 0 1369950426 542093 0 1369950426 542142 0 1369950426 542143 0 1369950426 542144 0 1369950426 555956 0 1369950426 556087 0 1369950426 663922 0 1369950426 685951 0 1369950426 686357 0 1369950426 691504 0 1369950426 699670 0 1369950426 706226 0 1369950426 706244 0 1369950426 706424 0 1369950426 863819 0 1369950426 1282383 1 1214538537 3247 1 1214538537 3248 1 1214538537 3249 1 1214538537 3250 1 1214538537 3251 1 1214538537 3252 1 1214538537 3253 1 1214538537 3254 1 1214538537 3255 1 1214538537 3256 1 1214538537 3257 1 1214538537 3260 0 1214538537 3261 0 1214538537 3264 0 1214538537 3265 1 1214538537 3266 1 1214538537 3268 1 1214538537 3269 1 1214538537 3270 1 1214538537 3271 1 1214538537 3272 1 1214538537 3273 1 1214538537 3274 1 1214538537 3275 1 1214538537 3276 1 1214538537 3278 0 1214538537 3280 0 1214538537 3281 0 1214538537 3282 1 1214538537 3283 1 1214538537 3285 1 1214538537 3286 1 1214538537 3287 1 1214538537 3288 1 1214538537 3289 1 1214538537 3290 1 1214538537 3291 1 1214538537 3292 1 1214538537 3294 1 1214538537 3296 0 1214538537 3297 0 1214538537 3298 0 1214538537 3299 1 1214538537 3302 2 1214538537 3305 1 1214538537 3307 1 1214538537 3308 1 1214538537 3309 1 1214538537 3310 1 1214538537 3311 1 1214538537 3312 1 1214538537 3313 1 1214538537 3314 1 1214538537 3316 0 1299457190 4593 0 1132732203 1047 2 1132732203 1049 0 1493950470 200 0 1404749961 160 0 1404749961 162 0 1404749961 163 0 1404749961 164 0 1404749961 165 0 1404749961 166 0 1404749961 168 0 1493950470 201 0 1178742148 2663 0 1178742148 2664 0 1152809569 3718 0 1152809569 3723 0 1152809569 3727 2 1152809569 3728 0 1152809569 3729 0 1152809569 3730 0 1152809569 3731 2 1152809569 3732 0 1152809569 3736 0 1152809569 3738 0 1152809569 3739 0 1152809569 3740 0 1152809569 3741 2 1152809569 3743 2 1152809569 3744 2 1152809569 3752 0 1152809569 3755 0 1152809569 3756 0 1152809569 3757 0 1152809569 3760 0 1152809569 3761 0 1152809569 3762 2 1152809569 3763 2 1152809569 3764 0 1152809569 3766 2 1152809569 3767 2 1152809569 3768 0 1152809569 3769 2 1152809569 3770 0 1152809569 3771 2 1152809569 3772 2 1152809569 3774 2 1152809569 3775 0 1152809569 3776 0 1152809569 3778 0 1152809569 3779 0 1152809569 3785 2 1152809569 3786 0 1152809569 3789 0 1152809569 3790 0 1152809569 3793 0 1152809569 3802 0 1152809569 3803 0 1152809569 3804 0 1152809569 3805 0 1152809569 3806 0 1152809569 3807 0 1152809569 3808 0 1152809569 3809 0 1152809569 3810 2 1258431324 2882 2 1258431324 2883 0 1258431324 2884 0 1258431324 2886 1 1258431324 2887 1 1258431324 2888 1 1258431324 2889 1 1258431324 2890 1 1258431324 2891 1 1258431324 2892 1 1258431324 2893 1 1258431324 2894 1 1258431324 2895 1 1258431324 2896 1 1258431324 2898 0 1258431324 2899 0 1258431324 2900 0 1258431324 2901 0 1258431324 2903 0 1258431324 2904 0 1258431324 2905 1 1258431324 2906 1 1258431324 2909 0 1258431324 2910 1 1258431324 2911 1 1258431324 2912 1 1258431324 2913 1 1258431324 2914 1 1258431324 2915 1 1258431324 2916 1 1258431324 2917 1 1258431324 2919 0 1258431324 2920 0 1258431324 2921 0 1258431324 2922 0 1258431324 2924 0 1258431324 2925 0 1258431324 2926 1 1258431324 2927 1 1258431324 2928 1 1258431324 2929 1 1258431324 2930 1 1258431324 2931 1 1258431324 2932 1 1258431324 2933 1 1258431324 2934 1 1258431324 2935 1 1258431324 2936 1 1258431324 2937 1 1258431324 2938 1 1258431324 2940 0 1258431324 2941 0 1258431324 2942 0 1258431324 2943 0 1258431324 2945 0 1258431324 2946 1 1258431324 2947 1 1258431324 2949 1 1258431324 2950 1 1258431324 2951 1 1258431324 2952 1 1258431324 2953 1 1258431324 2954 1 1258431324 2955 1 1258431324 2956 1 1258431324 2957 1 1258431324 2958 1 1258431324 2960 0 1258431324 2961 0 1258431324 2962 0 1258431324 2963 0 1258431324 2965 0 1258431324 2966 1 1258431324 2967 1 1258431324 2969 2 1258431324 2970 1 1258431324 2971 1 1258431324 2972 1 1258431324 2973 1 1258431324 2974 1 1258431324 2975 1 1258431324 2976 1 1258431324 2977 1 1258431324 2978 1 1258431324 2980 0 1258431324 2981 0 1258431324 2982 0 1258431324 2983 0 1258431324 2985 0 1258431324 2986 1 1258431324 2987 1 1258431324 2989 1 1258431324 2990 1 1258431324 2991 1 1258431324 2992 1 1258431324 2993 1 1258431324 2994 1 1258431324 2995 1 1258431324 2996 1 1258431324 2997 1 1258431324 2999 0 1258431324 3000 0 1258431324 3001 0 1258431324 3002 0 1258431324 3004 0 1258431324 3005 1 1258431324 3006 1 1258431324 3008 1 1258431324 3009 1 1258431324 3010 1 1258431324 3011 1 1258431324 3012 1 1258431324 3013 1 1258431324 3014 1 1258431324 3015 1 1258431324 3016 1 1258431324 3018 1 1258431324 3019 0 1258431324 3020 0 1258431324 3021 0 1258431324 3023 0 1258431324 3024 1 1258431324 3025 1 1258431324 3027 1 1258431324 3028 1 1258431324 3029 1 1258431324 3030 1 1258431324 3031 1 1258431324 3032 1 1258431324 3033 1 1258431324 3034 1 1258431324 3035 1 1258431324 3037 0 1258431324 3038 0 1258431324 3039 1 1258431324 3040 1 1258431324 3041 1 1258431324 3043 1 1258431324 3044 1 1258431324 3045 1 1258431324 3046 1 1258431324 3047 1 1258431324 3048 1 1258431324 3049 1 1258431324 3050 1 1258431324 3052 0 1258431324 3053 0 1258431324 3054 0 1258431324 3056 1 1258431324 3058 1 1258431324 3059 1 1258431324 3060 1 1258431324 3061 1 1258431324 3062 1 1258431324 3063 1 1258431324 3064 1 1258431324 3065 1 1258431324 3066 1 1258431324 3068 0 1258431324 3069 0 1258431324 3070 0 1258431324 3071 0 1258431324 3073 0 1258431324 3074 1 1258431324 3075 1 1258431324 3077 1 1258431324 3078 1 1258431324 3079 1 1258431324 3080 1 1258431324 3081 1 1258431324 3082 1 1258431324 3083 1 1258431324 3084 1 1258431324 3085 0 1258431324 3086 0 1258431324 3087 0 1258431324 3088 0 1258431324 3089 1 1258431324 3091 1 1258431324 3092 1 1258431324 3093 1 1258431324 3094 1 1258431324 3095 1 1258431324 3096 1 1258431324 3097 1 1258431324 3098 1 1258431324 3099 0 1258431324 3101 0 1258431324 3102 0 1258431324 3103 0 1258431324 3105 0 1258431324 3106 1 1258431324 3107 1 1258431324 3109 1 1258431324 3110 1 1258431324 3112 1 1258431324 3113 1 1258431324 3114 1 1258431324 3115 1 1258431324 3116 1 1258431324 3117 1 1258431324 3118 1 1258431324 3119 1 1258431324 3120 1 1258431324 3122 0 1258431324 3123 0 1258431324 3124 0 1258431324 3125 0 1258431324 3127 0 1258431324 3128 1 1258431324 3129 0 1152809569 3812 0 1152809569 3815 0 1152809569 3819 0 1152809569 3821 0 1152809569 3829 0 1152809569 3830 0 1152809569 3831 0 1152809569 3832 0 1152809569 3833 0 1152809569 3834 0 1152809569 3835 0 1152809569 3838 0 1152809569 3841 0 1152809569 3847 0 1152809569 3848 0 1152809569 3850 0 1152809569 3855 0 1152809569 3856 0 1152809569 3857 0 1152809569 3858 0 1152809569 3859 2 1152809569 3860 0 1152809569 3861 0 1152809569 3865 0 1152809569 3868 0 1152809569 3874 0 1152809569 3877 0 1152809569 3881 0 1152809569 3882 0 1152809569 3883 0 1152809569 3884 2 1152809569 3886 1 1258431324 3131 1 1258431324 3132 1 1258431324 3133 1 1258431324 3134 1 1258431324 3135 1 1258431324 3136 1 1258431324 3137 1 1258431324 3138 1 1258431324 3139 1 1258431324 3141 0 1258431324 3142 0 1258431324 3143 0 1258431324 3144 0 1258431324 3146 0 1258431324 3147 1 1258431324 3148 1 1258431324 3149 1 1258431324 3150 2 1258431324 3152 2 1258431324 3153 2 1258431324 3154 0 1258431324 3156 1 1258431324 3157 1 1258431324 3158 1 1258431324 3159 1 1258431324 3160 1 1258431324 3161 1 1258431324 3162 1 1258431324 3163 1 1258431324 3164 1 1258431324 3165 1 1258431324 3166 1 1258431324 3168 0 1258431324 3169 0 1258431324 3170 0 1258431324 3171 0 1258431324 3172 1 1258431324 3175 2 1258431324 3176 0 1258431324 3177 1 1258431324 3180 1 1258431324 3181 1 1258431324 3182 1 1258431324 3183 1 1258431324 3184 1 1258431324 3185 1 1258431324 3186 1 1258431324 3187 1 1258431324 3189 0 1258431324 3190 0 1258431324 3191 0 1258431324 3192 1 1258431324 3193 1 1258431324 3195 1 1258431324 3198 1 1258431324 3199 1 1258431324 3200 1 1258431324 3201 1 1258431324 3202 1 1258431324 3203 1 1258431324 3204 1 1258431324 3206 0 1258431324 3207 0 1258431324 3208 0 1258431324 3209 0 1258431324 3210 1 1258431324 3212 1 1258431324 3215 1 1258431324 3216 1 1258431324 3217 1 1258431324 3218 1 1258431324 3219 1 1258431324 3220 1 1258431324 3221 1 1258431324 3223 0 1258431324 3224 0 1258431324 3225 0 1258431324 3226 0 1258431324 3227 1 1258431324 3228 2 1258431324 3229 0 1258431324 3230 0 1258431324 3232 1 1258431324 3234 1 1258431324 3235 1 1258431324 3236 0 1230328698 2422 0 1230328698 2423 0 1230328698 2427 0 1230328698 2428 0 1230328698 2429 0 1230328698 2430 2 1230328698 2434 0 1141221379 11164 0 1141221379 11165 0 1141221379 11166 0 1141221379 11168 2 1141221379 11169 ? 1132534018 2888 0 1132534018 2889 0 1132534018 2890 0 1132534018 2891 0 1174077730 7842 0 1174077730 7843 0 1174077730 7844 2 1174077730 7846 0 1174077730 7864 0 1174077730 7865 2 1174077730 7871 0 1174077730 7875 0 1174077730 7895 0 1315869059 269 0 1315869059 270 0 1315869059 271 2 1315869059 273 2 1315869059 275 0 1315869059 276 0 1315869059 278 1 1315869059 279 0 1315869059 280 1 1315869059 282 1 1315869059 283 1 1315869059 284 1 1315869059 285 1 1315869059 286 0 1315869059 288 0 1315869059 289 0 1315869059 290 0 1315869059 291 0 1315869059 292 0 1315869059 293 2 1315869059 294 0 1315869059 295 0 1315869059 296 2 1315869059 297 0 1315869059 298 2 1315869059 299 0 1315869059 300 0 1315869059 301 0 1315869059 302 0 1315869059 303 0 1315869059 307 0 1315869059 308 0 1315869059 309 0 1315869059 310 2 1315869059 311 0 1315869059 313 0 1315869059 315 0 1315869059 316 0 1315869059 317 0 1315869059 318 0 1315869059 320 0 1315869059 321 0 1315869059 322 0 1315869059 323 0 1315869059 324 0 1315869059 325 0 1315869059 326 0 1214538537 3317 0 1214538537 3318 0 1214538537 3319 1 1214538537 3321 1 1214538537 3323 1 1214538537 3324 1 1214538537 3325 1 1214538537 3326 1 1214538537 3327 1 1214538537 3328 1 1214538537 3329 1 1214538537 3330 1 1214538537 3332 0 1214538537 3333 0 1214538537 3334 0 1214538537 3335 1 1214538537 3336 0 1123236170 8972 2 1123236170 8975 2 1123236170 8977 0 1123236170 9007 2 1123236170 9104 2 1123236170 9109 2 1123236170 9125 0 1123236170 9142 0 1152809569 3887 0 1152809569 3889 2 1152809569 3890 0 1152809569 3891 0 1152809569 3894 0 1152809569 3896 0 1152809569 3898 0 1152809569 3900 0 1152809569 3903 0 1152809569 3904 1 1258431324 3237 1 1258431324 3238 1 1258431324 3239 1 1258431324 3240 1 1258431324 3241 1 1258431324 3243 0 1258431324 3244 0 1258431324 3245 0 1258431324 3246 0 1258431324 3247 0 1258431324 3249 1 1258431324 3250 1 1258431324 3252 0 1258431324 3253 1 1258431324 3255 1 1258431324 3256 1 1258431324 3257 1 1258431324 3258 1 1258431324 3259 1 1258431324 3260 1 1258431324 3261 1 1258431324 3262 1 1258431324 3264 0 1258431324 3265 0 1258431324 3266 0 1258431324 3267 1 1258431324 3268 1 1258431324 3271 1 1258431324 3272 1 1258431324 3273 1 1258431324 3274 1 1258431324 3275 1 1258431324 3276 1 1258431324 3277 1 1258431324 3278 1 1258431324 3280 0 1258431324 3281 0 1258431324 3282 0 1258431324 3283 0 1258431324 3284 1 1258431324 3286 1 1258431324 3289 1 1258431324 3290 1 1258431324 3291 1 1258431324 3292 1 1258431324 3293 1 1258431324 3294 1 1258431324 3295 1 1258431324 3296 1 1258431324 3298 0 1258431324 3299 0 1258431324 3300 0 1258431324 3301 0 1258431324 3302 1 1258431324 3303 2 1258431324 3304 0 1258431324 3305 2 1258431324 3306 1 1258431324 3309 1 1258431324 3310 1 1258431324 3311 1 1258431324 3312 1 1258431324 3313 1 1258431324 3314 1 1258431324 3315 1 1258431324 3316 1 1258431324 3318 0 1258431324 3319 0 1258431324 3320 0 1258431324 3321 0 1258431324 3322 1 1258431324 3323 1 1258431324 3326 2 1258431324 3327 1 1258431324 3328 1 1258431324 3329 1 1258431324 3330 1 1258431324 3331 1 1258431324 3332 1 1258431324 3333 1 1258431324 3335 0 1258431324 3336 0 1258431324 3337 0 1258431324 3338 0 1258431324 3339 1 1258431324 3340 0 1258431324 3341 2 1258431324 3342 1 1258431324 3345 1 1258431324 3346 1 1258431324 3347 1 1258431324 3348 1 1258431324 3349 1 1258431324 3350 1 1258431324 3351 1 1258431324 3352 1 1258431324 3354 0 1258431324 3355 0 1258431324 3356 0 1258431324 3357 0 1258431324 3358 1 1258431324 3360 2 1258431324 3362 1 1258431324 3364 1 1258431324 3365 1 1258431324 3366 1 1258431324 3367 1 1258431324 3368 1 1258431324 3369 1 1258431324 3370 1 1258431324 3372 0 1258431324 3373 0 1258431324 3374 0 1258431324 3375 0 1258431324 3376 1 1258431324 3378 1 1258431324 3381 1 1258431324 3382 2 1258431324 3383 1 1258431324 3384 1 1258431324 3385 1 1258431324 3386 1 1258431324 3387 1 1258431324 3388 1 1258431324 3389 1 1258431324 3391 0 1258431324 3392 0 1258431324 3393 0 1258431324 3394 0 1258431324 3395 1 1258431324 3396 0 1258431324 3399 1 1258431324 3400 1 1258431324 3401 1 1258431324 3402 1 1258431324 3403 1 1258431324 3404 1 1258431324 3405 1 1258431324 3406 1 1258431324 3407 1 1258431324 3408 1 1258431324 3410 0 1258431324 3411 0 1258431324 3412 0 1258431324 3413 0 1258431324 3414 1 1258431324 3415 1 1258431324 3418 1 1258431324 3419 1 1258431324 3420 1 1258431324 3421 1 1258431324 3422 1 1258431324 3423 1 1258431324 3424 1 1258431324 3425 1 1258431324 3427 0 1258431324 3428 0 1258431324 3429 0 1258431324 3430 0 1258431324 3431 1 1258431324 3432 1 1258431324 3435 1 1258431324 3436 1 1258431324 3437 1 1258431324 3438 1 1258431324 3439 1 1258431324 3440 1 1258431324 3441 1 1258431324 3443 0 1258431324 3444 0 1258431324 3445 0 1258431324 3446 0 1258431324 3447 1 1258431324 3448 1 1258431324 3451 1 1258431324 3452 1 1258431324 3453 1 1258431324 3454 1 1258431324 3455 1 1258431324 3456 1 1258431324 3457 1 1258431324 3459 0 1258431324 3460 0 1258431324 3461 0 1258431324 3462 0 1258431324 3463 1 1258431324 3464 1 1258431324 3467 1 1258431324 3468 1 1258431324 3469 1 1258431324 3470 1 1258431324 3471 1 1258431324 3472 1 1258431324 3473 1 1258431324 3475 0 1258431324 3476 0 1258431324 3477 0 1258431324 3478 1 1258431324 3479 0 1258431324 3480 0 1299457190 16039 0 1299457190 16047 0 1299457190 16048 0 1299457190 16049 0 1299457190 16057 0 1299457190 16070 0 1299457190 16081 1 1299457190 16083 0 1299457190 16084 1 1299457190 16085 1 1299457190 16090 1 1299457190 16091 1 1299457190 16092 1 1299457190 16093 0 1299457190 16094 0 1299457190 16095 0 1299457190 16096 0 1247729038 1369 0 1247729038 1565 1 1247729038 1571 0 1247729038 1572 1 1247729038 1574 1 1247729038 1575 1 1247729038 1576 0 1247729038 1577 1 1247729038 1578 1 1247729038 1579 1 1247729038 1580 1 1247729038 1581 1 1247729038 1582 0 1247729038 1583 0 1247729038 1584 0 1247729038 1585 0 1247729038 1586 0 1247729038 1587 0 1247729038 1588 1 1247729038 1589 0 1247729038 1591 0 1247729038 1592 0 1247729038 1593 0 1247729038 1594 0 1247729038 1596 1 1247729038 1597 1 1247729038 1602 0 1247729038 1603 0 1247729038 1604 0 1247729038 1610 1 1247729038 1613 1 1247729038 1616 0 1247729038 1618 0 1247729038 1620 1 1247729038 1621 1 1247729038 1622 1 1247729038 1623 1 1247729038 1624 1 1247729038 1625 1 1247729038 1626 1 1247729038 1627 1 1247729038 1628 1 1247729038 1629 0 1247729038 1630 1 1247729038 1631 1 1247729038 1632 1 1247729038 1633 0 1247729038 1634 0 1247729038 1636 0 1247729038 1637 0 1247729038 1638 0 1247729038 1639 0 1247729038 1640 0 1247729038 1641 0 1247729038 1642 1 1247729038 1643 1 1247729038 1644 1 1247729038 1645 1 1247729038 1646 1 1247729038 1649 0 1247729038 1650 0 1247729038 1653 1 1247729038 1654 0 1247729038 1655 0 1247729038 1656 0 1247729038 1658 0 1247729038 1661 2 1247729038 1667 0 1247729038 1672 1 1247729038 1674 0 1247729038 1675 1 1247729038 1677 0 1247729038 1689 0 1247729038 1690 0 1247729038 1694 0 1247729038 1697 0 1247729038 1699 0 1247729038 1703 0 1247729038 1705 0 1247729038 1706 0 1247729038 1707 0 1247729038 1713 0 1247729038 1714 0 1247729038 1715 0 1247729038 1716 1 1247729038 1717 1 1247729038 1719 1 1247729038 1720 1 1247729038 1723 1 1247729038 1726 1 1247729038 1727 1 1247729038 1729 1 1247729038 1730 1 1247729038 1731 0 1247729038 1732 1 1247729038 1733 1 1247729038 1734 1 1247729038 1735 1 1247729038 1736 1 1247729038 1737 0 1247729038 1738 1 1247729038 1739 0 1247729038 1740 0 1247729038 1741 0 1247729038 1742 0 1247729038 1743 0 1247729038 1744 0 1247729038 1746 0 1247729038 1747 0 1247729038 1748 0 1247729038 1749 0 1247729038 1751 0 1247729038 1758 1 1247729038 1763 0 1247729038 1764 1 1247729038 1767 1 1247729038 1768 0 1247729038 1769 1 1247729038 1771 1 1247729038 1772 0 1247729038 1774 1 1247729038 1775 0 1247729038 1776 1 1247729038 1777 1 1247729038 1778 1 1247729038 1779 1 1247729038 1780 1 1247729038 1781 0 1247729038 1782 1 1247729038 1783 0 1247729038 1784 0 1247729038 1785 0 1247729038 1786 0 1247729038 1787 0 1247729038 1788 0 1247729038 1789 0 1247729038 1790 0 1247729038 1791 0 1247729038 1793 0 1247729038 1794 1 1247729038 1795 0 1247729038 1797 1 1247729038 1799 1 1247729038 1802 0 1247729038 1804 1 1247729038 1805 1 1247729038 1807 0 1247729038 1810 1 1247729038 1811 1 1247729038 1812 1 1247729038 1813 1 1247729038 1815 0 1247729038 1816 1 1247729038 1817 1 1247729038 1818 1 1247729038 1819 1 1247729038 1820 0 1247729038 1821 1 1247729038 1834 0 1247729038 1836 1 1247729038 1837 1 1247729038 1838 0 1247729038 1839 1 1247729038 1840 1 1247729038 1841 0 1247729038 1843 1 1247729038 1844 1 1247729038 1845 1 1247729038 1846 1 1247729038 1847 1 1247729038 1848 1 1247729038 1849 1 1247729038 1850 1 1247729038 1851 0 1247729038 1852 0 1247729038 1853 0 1247729038 1854 0 1247729038 1855 2 1247729038 1862 2 1247729038 1863 0 1247729038 1868 0 1247729038 1869 0 1247729038 1874 0 1247729038 1878 1 1247729038 1879 0 1247729038 1884 0 1247729038 1885 0 1247729038 1886 1 1247729038 1887 0 1247729038 1888 1 1247729038 1892 1 1247729038 1893 1 1247729038 1895 1 1247729038 1896 1 1247729038 1897 1 1247729038 1898 1 1247729038 1899 1 1247729038 1900 0 1247729038 1901 0 1247729038 1906 0 1247729038 1907 1 1247729038 1909 2 1247729038 1912 0 1351958949 11286 0 1351958949 11558 0 1351958949 11609 2 1351958949 11635 0 1351958949 11644 0 1351958949 11687 0 1220639536 823 0 1220639536 824 0 1220639536 825 0 1220639536 826 0 1220639536 827 0 1220639536 828 0 1220639536 829 0 1338418011 180 0 1338418011 181 0 1338418011 183 0 1338418011 184 0 1207973768 353 0 1207973768 354 0 1207973768 355 0 1132732203 1809 0 1132732203 1811 0 1493950470 32825 0 1493950470 32826 0 1493950470 32827 0 1493950470 32828 0 1493950470 32829 0 1230328698 12333 0 1230328698 12335 0 1230328698 12336 0 1230328698 12338 0 1141221379 17241 0 1132534018 2892 0 1132534018 2894 0 1132534018 2895 0 1132534018 2896 0 1132534018 2898 0 1132534018 2899 2 1132534018 2900 0 1174077730 19261 ? 1174077730 19262 ? 1174077730 19263 2 1174077730 19264 0 1174077730 19265 2 1174077730 19266 0 1174077730 19267 0 1174077730 19268 2 1174077730 19269 0 1123236170 30006 0 1123236170 30007 0 1123236170 30031 0 1123236170 30040 0 1123236170 30076 0 1123236170 30077 0 1258431324 4943 0 1258431324 4944 0 1258431324 4945 0 1274906467 65 0 1274906467 67 2 1274906467 68 2 1274906467 69 0 1274906467 70 2 1274906467 71 2 1475300028 1733 0 1214538537 4320 0 1214538537 4321 0 1214538537 4322 0 1214538537 4323 2 1214538537 4345 2 1214538537 4346 2 1214538537 4352 2 1214538537 4353 2 1214538537 4354 0 1214538537 4367 1 1214538537 4368 1 1214538537 4369 1 1214538537 4399 0 1214538537 4400 1 1214538537 4402 1 1214538537 4426 1 1214538537 4427 1 1214538537 4428 1 1214538537 4446 1 1214538537 4448 1 1214538537 4449 1 1214538537 4450 1 1214538537 4451 1 1214538537 4452 2 1214538537 4488 0 1214538537 4489 0 1214538537 4490 0 1214538537 4495 0 1214538537 4496 0 1214538537 4497 0 1375670269 3186 0 1375670269 3187 0 1375670269 3188 0 1375670269 3189 0 1375670269 3190 0 1375670269 3191 0 1375670269 3192 0 1375670269 3193 0 1375670269 3194 0 1375670269 3195 0 1375670269 3196 0 1375670269 3197 0 1375670269 3198 0 1375670269 3199 0 1375670269 3200 0 1375670269 3201 0 1375670269 3202 0 1375670269 3203 0 1375670269 3204 0 1486981201 3 2 1486981201 5 2 1486981201 6 0 1486981201 7 0 1486981201 8 2 1486981201 9 2 1486981201 10 2 1486981201 11 0 1486981201 12 2 1486981201 13 2 1486981201 14 0 1486981201 15 2 1486981201 16 2 1486981201 17 0 1368778720 6 0 1231437793 4112 0 1231437793 4113 0 1231437793 4114 0 1231437793 4115 2 1231437793 4116 2 1231437793 4117 0 1231437793 4118 0 1231437793 4119 0 1388333162 4257 0 1388333162 4259 2 1388333162 4261 0 1388333162 4262 0 1388333162 4263 0 1388333162 4264 0 1330655612 2452 0 1330655612 2453 0 1330655612 2454 0 1330655612 2456 0 1330655612 2457 0 1325133208 5848 0 1325133208 5850 0 1325133208 5851 0 1325133208 5852 0 1325133208 5853 0 1325133208 5855 2 1325133208 5857 2 1325133208 5858 0 1325133208 5859 0 1325133208 5860 2 1149375708 25125 0 1149375708 25126 0 1149375708 25127 0 1149375708 25128 0 1149375708 25129 0 1149375708 25130 0 1149375708 25131 ? 1164950918 2 ? 1164950918 3 ? 1164950918 4 ? 1164950918 5 ? 1164950918 7 ? 1164950918 8 ? 1299457190 16097 2 1299457190 16098 ? 1299457190 16099 0 1299457190 16100 0 1299457190 16101 0 1299457190 16122 0 1299457190 16125 0 1299457190 16136 0 1299457190 16140 1 1299457190 16143 1 1299457190 16152 1 1299457190 16153 1 1299457190 16154 1 1299457190 16156 0 1299457190 16157 1 1299457190 16160 0 1299457190 16161 1 1299457190 16162 0 1299457190 16163 1 1299457190 16164 1 1299457190 16165 2 1299457190 16167 1 1299457190 16168 1 1299457190 16169 1 1299457190 16170 1 1299457190 16171 2 1299457190 16173 1 1299457190 16174 0 1299457190 16184 0 1300028254 816 0 1300028254 884 0 1247729038 1916 0 1247729038 1921 0 1247729038 1922 0 1247729038 1924 0 1247729038 1926 0 1247729038 1928 1 1247729038 1929 1 1247729038 1930 1 1247729038 1931 1 1247729038 1932 1 1247729038 1933 0 1247729038 1934 0 1247729038 1935 2 1247729038 1938 2 1247729038 1946 0 1247729038 1947 File: Data\\Telegram\\Labeled\\pred_pump_message.csv channel_id sample_id message date pred_label 1431128585 189 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:02+00:00 1.0 1431128585 164 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:04+00:00 1.0 1431128585 162 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:03+00:00 1.0 1431128585 161 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:05+00:00 1.0 1431128585 160 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:04+00:00 1.0 1431128585 159 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:04+00:00 1.0 1431128585 158 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:04+00:00 1.0 1431128585 157 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:04+00:00 1.0 1431128585 156 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:05+00:00 1.0 1431128585 155 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:04+00:00 1.0 1431128585 154 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:04+00:00 1.0 1431128585 153 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:04+00:00 1.0 1431128585 152 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:04+00:00 1.0 1431128585 151 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:04+00:00 1.0 1431128585 150 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:04+00:00 1.0 1431128585 149 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:04+00:00 1.0 1431128585 140 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:05+00:00 1.0 1431128585 137 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:41+00:00 1.0 1431128585 133 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:46+00:00 1.0 1431128585 129 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:11+00:00 1.0 1431128585 125 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1431128585 123 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:04+00:00 1.0 1431128585 122 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:03+00:00 1.0 1431128585 121 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:12+00:00 1.0 1431128585 120 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:33+00:00 1.0 1431128585 118 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:06+00:00 1.0 1431128585 117 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:04+00:00 1.0 1431128585 115 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:02+00:00 1.0 1431128585 113 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:02+00:00 1.0 1431128585 112 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:02+00:00 1.0 1431128585 111 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:04+00:00 1.0 1431128585 110 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:02+00:00 1.0 1431128585 109 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:02+00:00 1.0 1431128585 108 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:03+00:00 1.0 1431128585 106 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:02+00:00 1.0 1431128585 105 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:02+00:00 1.0 1431128585 104 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:02+00:00 1.0 1431128585 103 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:02+00:00 1.0 1431128585 102 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:01+00:00 1.0 1431128585 101 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:01+00:00 1.0 1431128585 100 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:00+00:00 1.0 1431128585 98 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:00+00:00 1.0 1431128585 97 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:48+00:00 1.0 1431128585 96 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:00+00:00 1.0 1431128585 95 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:55+00:00 1.0 1431128585 92 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:00+00:00 1.0 1431128585 90 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:00+00:00 1.0 1431128585 88 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:00+00:00 1.0 1431128585 87 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:00+00:00 1.0 1431128585 86 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:15+00:00 1.0 1431128585 85 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:06+00:00 1.0 1431128585 83 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:05+00:00 1.0 1431128585 80 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:54:59+00:00 1.0 1431128585 78 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:00+00:00 1.0 1431128585 77 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:00+00:00 1.0 1431128585 75 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:00+00:00 1.0 1431128585 74 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:00+00:00 1.0 1431128585 73 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:00+00:00 1.0 1431128585 72 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:00+00:00 1.0 1431128585 71 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:00+00:00 1.0 1431128585 70 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:00+00:00 1.0 1431128585 69 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:00+00:00 1.0 1431128585 68 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:00+00:00 1.0 1431128585 67 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:00+00:00 1.0 1431128585 66 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:00+00:00 1.0 1431128585 65 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:05+00:00 1.0 1431128585 64 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:00+00:00 1.0 1431128585 63 binance pump reminder ⏰ date friday 03 april 1800 gmt exchange binance binance us register if you havent yet please read the available help channels on discord and learn the tips of pumping you will want to know how to buy fast to maximize your profit and as always if you have questions just ask ❗️things you need to do before the pump 1 register on binancecom or the app 2 deposit bitcoin onto your account 3 watch here for the pump signal friday at 1800 gmt 4 follow the given advice or use your best judgement and profit huge 2020-04-01 19:42:21+00:00 1.0 1431128585 62 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:18+00:00 1.0 1431128585 60 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:08+00:00 1.0 1431128585 59 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:00:26+00:00 1.0 1431128585 58 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 16:49:37+00:00 1.0 1431128585 55 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 16:54:37+00:00 1.0 1431128585 51 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 01:27:09+00:00 1.0 1431128585 50 pump announcement next pump friday 03 april 2100 pm gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-03-27 22:08:40+00:00 1.0 1431128585 44 ⏰ 5 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:55:00+00:00 1.0 1431128585 42 ⏰ 10 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:50:00+00:00 1.0 1431128585 40 ⏰ 15 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:45:29+00:00 1.0 1431128585 38 ⏰ 30 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:30:00+00:00 1.0 1431128585 35 everyone who will invest more than 1 btc in this pump will get to know coin in the next pump 20 seconds faster you will just have to show order history from this pump to the admin 2020-03-27 20:05:40+00:00 1.0 1431128585 34 ⏰ 1 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:00:00+00:00 1.0 1431128585 33 ⏰ 2 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 19:05:00+00:00 1.0 1431128585 31 ❕ are you a member and want to receive coin 10 sec faster in next pump ❕ its simple just invest more than 3 btc in our todays pump and you will have to send us your order history from todays which will cost above 3 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 10 seconds faster 2020-03-27 18:47:00+00:00 1.0 1431128585 30 ⏰ 4 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 17:00:00+00:00 1.0 1431128585 29 ⏰ 6 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 15:00:00+00:00 1.0 1431128585 28 ❕ are you a member and want to receive coin 3 sec faster in next pump ❕ its simple just invest more than 1 btc in our todays pump and you will have to send us your order history from todays which will cost above 1 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 3 seconds faster 2020-03-27 14:34:52+00:00 1.0 1431128585 27 ⏰ 8 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 13:00:58+00:00 1.0 1431128585 26 ⏰ 1 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-26 21:46:16+00:00 1.0 1431128585 25 ⏰ 2 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-25 22:59:58+00:00 1.0 1431128585 24 ⏰ 3 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-24 13:02:38+00:00 1.0 1431128585 21 ⏰ 4 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-23 13:41:42+00:00 1.0 1431128585 18 pump announcement next pump friday 27 march 2100 pm gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-03-21 12:17:05+00:00 1.0 1431128585 16 pump announcement next pump friday 27 march 2100 pm gmt exchange pairing btc pump guide welcome about faq buy fast prepare for a pump 2020-03-20 00:01:49+00:00 1.0 1431128585 11 everyone only 5 minutes left the next post will be the coin 2020-03-18 18:55:05+00:00 1.0 1431128585 9 everyone 1 hour left this binance pump will have positive coin news supplied for us all to promote in addition to the conditions being near perfect for a pump all of us promoting this coin news together will greatly increase the volume and longevity of the pump do your part and watch your profits soar 2020-03-18 18:00:03+00:00 1.0 1431128585 8 everyone 3 hours left until the pump bicoin has been fairly stable while alts remain bottomed out now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while 2020-03-18 16:02:35+00:00 1.0 1431128585 7 everyone pump announcement next pump wednesday 18 march 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin is expected to stay in this range for the next few days but due to the recent sell off by weak hands many alts are extremely pumpable in a market with so much red eager traders jump all over anything green we can easily bring an extreme amount of attention to whichever coin we pump by making it binancecoms top gainer of the day adding an influx of volume and promoting the supplied coin news this will lead to massive profits as the pump should go higher than normal stay tuned for more announcements and be ready for the pump 2020-03-17 19:08:28+00:00 1.0 1231437793 4917 coin signals for kucoin exchange follow us for best pump tracking service on kucoin ✅ signal low level for max profit ✅ high accuracy 100 ✅ signal before pump ✅ short term and quick profit signals only ✅ high end profit in short time trade with us for high end profit join fast link is open for few minutes only +dna5vebdq0mwmdu1 2022-01-13 04:54:14+00:00 1.0 1231437793 4063 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy for max profit on kucoincom 2020-10-31 16:55:05+00:00 1.0 1231437793 4062 ℹ️ 10 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:50:06+00:00 1.0 1231437793 4061 ℹ️ 20 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:40:08+00:00 1.0 1231437793 4060 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2020-10-31 16:30:05+00:00 1.0 1231437793 4059 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 16:00:07+00:00 1.0 1231437793 4058 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 15:00:08+00:00 1.0 1231437793 4057 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 13:00:05+00:00 1.0 1231437793 4056 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 11:00:49+00:00 1.0 1231437793 4055 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 09:00:04+00:00 1.0 1231437793 4054 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt indian time 1030 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2020-10-31 04:03:07+00:00 1.0 1231437793 3518 pump results coin was loom low 144 high 399 welldone guys more than 2 x times repump count ✨3rd ✨time on your massive request analysis you need to create lower sell orders guys rather than dumping on buy orders dumping on buy orders generate red colors which fails the pump and prevent outsiders joining our pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-05-19 17:17:53+00:00 1.0 1231437793 3511 the coin to pump is loom exchange yobitnet target +200300 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-05-19 17:00:04+00:00 1.0 1231437793 3510 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-05-19 16:55:04+00:00 1.0 1231437793 3509 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-05-19 16:50:04+00:00 1.0 1231437793 3508 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-05-19 16:40:04+00:00 1.0 1231437793 3507 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-05-19 16:30:05+00:00 1.0 1231437793 3506 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 16:00:19+00:00 1.0 1231437793 3505 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 15:00:11+00:00 1.0 1231437793 3504 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 13:00:05+00:00 1.0 1231437793 3503 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-05-19 11:00:10+00:00 1.0 1231437793 3502 ℹ coin signal information ℹ date tuesday 190520 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-05-19 09:00:09+00:00 1.0 1231437793 3501 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19052020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-05-19 06:07:45+00:00 1.0 1231437793 3500 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190520 tuesday time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-05-18 18:29:54+00:00 1.0 1231437793 3497 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-22 17:31:33+00:00 1.0 1231437793 3496 pump results coin was aoa low 16 high 53 welldone guys 3 x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-22 17:20:20+00:00 1.0 1231437793 3489 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-22 17:00:42+00:00 1.0 1231437793 3488 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-22 16:55:03+00:00 1.0 1231437793 3487 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-22 16:50:06+00:00 1.0 1231437793 3486 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-22 16:40:10+00:00 1.0 1231437793 3485 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-22 16:30:08+00:00 1.0 1231437793 3484 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 16:00:06+00:00 1.0 1231437793 3483 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 15:00:14+00:00 1.0 1231437793 3482 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 13:00:05+00:00 1.0 1231437793 3481 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-22 11:00:12+00:00 1.0 1231437793 3480 ℹ coin signal information ℹ date wednesday 220420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-22 09:00:07+00:00 1.0 1231437793 3479 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 22042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-22 05:53:18+00:00 1.0 1231437793 3477 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-19 18:21:40+00:00 1.0 1231437793 3476 pump results coin was wpr open 70 high 206 welldone guys 3 x times on your demandwe listen you guys repump count 3rd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-19 17:36:44+00:00 1.0 1231437793 3469 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-19 17:00:05+00:00 1.0 1231437793 3468 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-19 16:55:03+00:00 1.0 1231437793 3467 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-19 16:50:05+00:00 1.0 1231437793 3466 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-19 16:40:03+00:00 1.0 1231437793 3465 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-19 16:30:06+00:00 1.0 1231437793 3464 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 16:00:15+00:00 1.0 1231437793 3463 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 15:00:08+00:00 1.0 1231437793 3462 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 13:00:06+00:00 1.0 1231437793 3461 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-19 11:00:10+00:00 1.0 1231437793 3460 ℹ coin signal information ℹ date sunday 190420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-19 10:00:17+00:00 1.0 1231437793 3459 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19042020 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-19 08:38:31+00:00 1.0 1231437793 3458 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190420 sunday time 5 pm gmt 2020-04-18 18:14:50+00:00 1.0 1231437793 3456 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins which naturally rise by the time 2020-04-14 17:51:50+00:00 1.0 1231437793 3455 pump results coin was snt low 222 high 440 welldone guys almost 2x timed on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin we dont pump scam coins we pump strong coins which naturally rise by the time ✅ 2020-04-14 17:45:36+00:00 1.0 1231437793 3448 the coin to pump is snt exchange yobitnet target +100200 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-14 17:00:07+00:00 1.0 1231437793 3447 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-14 16:55:03+00:00 1.0 1231437793 3446 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-14 16:50:05+00:00 1.0 1231437793 3445 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-14 16:40:03+00:00 1.0 1231437793 3444 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-14 16:30:03+00:00 1.0 1231437793 3443 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 16:00:06+00:00 1.0 1231437793 3442 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 15:00:16+00:00 1.0 1231437793 3441 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 13:00:19+00:00 1.0 1231437793 3440 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-14 11:00:05+00:00 1.0 1231437793 3439 ℹ coin signal information ℹ date tuesday 140420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-14 10:00:13+00:00 1.0 1231437793 3438 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 14042020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-14 08:16:42+00:00 1.0 1231437793 3436 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt 2020-04-11 03:11:15+00:00 1.0 1231437793 3435 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-10 17:35:50+00:00 1.0 1231437793 3434 pump results coin was wpr open 70 high 210 welldone guys 3 x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-10 17:27:40+00:00 1.0 1231437793 3427 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-10 17:00:03+00:00 1.0 1231437793 3426 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-10 16:55:03+00:00 1.0 1231437793 3425 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-10 16:50:04+00:00 1.0 1231437793 3424 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-10 16:40:05+00:00 1.0 1231437793 3423 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-10 16:30:03+00:00 1.0 1231437793 3422 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 16:00:03+00:00 1.0 1231437793 3421 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 15:00:04+00:00 1.0 1231437793 3420 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 13:00:10+00:00 1.0 1231437793 3419 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-10 11:00:06+00:00 1.0 1231437793 3418 ℹ coin signal information ℹ date friday 100420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-10 10:00:10+00:00 1.0 1231437793 3417 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10042020 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-10 07:50:31+00:00 1.0 1231437793 3415 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 100420 day friday time 5 pm gmt 2020-04-09 09:23:18+00:00 1.0 1231437793 3414 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-08 04:05:56+00:00 1.0 1231437793 3413 pump results coin was mth low 85 high 185 welldone guys more than 2 x times on your demandwe listen you guys repump count 5th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-04 22:41:58+00:00 1.0 1231437793 3408 the coin to pump is mth exchange yobitnet target +100 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-04 17:01:03+00:00 1.0 1231437793 3405 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-04 16:55:03+00:00 1.0 1231437793 3404 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-04 16:50:03+00:00 1.0 1231437793 3403 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-04 16:40:03+00:00 1.0 1231437793 3402 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-04 16:30:03+00:00 1.0 1231437793 3401 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 16:00:07+00:00 1.0 1231437793 3400 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 15:00:17+00:00 1.0 1231437793 3399 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 13:00:03+00:00 1.0 1231437793 3398 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-04 11:00:16+00:00 1.0 1231437793 3397 ℹ coin signal information ℹ date saturday 040420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-04 10:00:18+00:00 1.0 1231437793 3396 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 04042020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-04 09:00:08+00:00 1.0 1231437793 3395 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 040420 day saturday time 5 pm gmt 2020-04-03 16:27:40+00:00 1.0 1231437793 3393 pump results coin was aoa open 22 high 70 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-01 17:16:22+00:00 1.0 1231437793 3388 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-01 17:00:18+00:00 1.0 1231437793 3385 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-01 16:55:05+00:00 1.0 1231437793 3384 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-01 16:50:05+00:00 1.0 1231437793 3383 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-01 16:40:06+00:00 1.0 1231437793 3382 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-01 16:30:06+00:00 1.0 1231437793 3381 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 16:00:09+00:00 1.0 1231437793 3380 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 15:00:07+00:00 1.0 1231437793 3379 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 13:00:19+00:00 1.0 1231437793 3378 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-01 11:00:14+00:00 1.0 1231437793 3377 ℹ coin signal information ℹ date wednesday 010420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-01 10:00:17+00:00 1.0 1231437793 3376 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-01 08:00:06+00:00 1.0 1231437793 3373 pump results coin was fun open 40 high 128 welldone guys more than 3x times repump count ✨8th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-03-28 17:28:35+00:00 1.0 1231437793 3368 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-03-28 17:00:30+00:00 1.0 1231437793 3365 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-03-28 16:55:05+00:00 1.0 1231437793 3364 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-03-28 16:50:07+00:00 1.0 1231437793 3363 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-03-28 16:40:12+00:00 1.0 1231437793 3362 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-03-28 16:30:08+00:00 1.0 1231437793 3361 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 16:00:18+00:00 1.0 1231437793 3360 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 15:00:12+00:00 1.0 1231437793 3359 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 13:00:04+00:00 1.0 1231437793 3358 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-03-28 11:00:07+00:00 1.0 1231437793 3356 ℹ coin signal information ℹ date saturday 280320 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-03-28 06:59:39+00:00 1.0 1231437793 3355 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for upcoming pump on 280320 ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28032020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-03-27 13:41:31+00:00 1.0 1231437793 3349 pump results coin was fun open 33 high 68 welldone guys almost 2x times repump count ✨7th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-01-15 17:23:56+00:00 1.0 1231437793 3344 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-01-15 17:00:23+00:00 1.0 1231437793 3341 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-01-15 16:55:05+00:00 1.0 1231437793 3340 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-01-15 16:50:04+00:00 1.0 1231437793 3339 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-01-15 16:40:07+00:00 1.0 1231437793 3338 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-01-15 16:30:06+00:00 1.0 1231437793 3337 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 16:00:04+00:00 1.0 1231437793 3336 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 15:00:05+00:00 1.0 1231437793 3335 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 13:00:03+00:00 1.0 1231437793 3334 ℹ coin signal information ℹ date wednesday 15012020 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-01-15 11:00:07+00:00 1.0 1231437793 3332 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150120 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-01-15 08:18:59+00:00 1.0 1231437793 3327 pump results coin was bnt open 3291 high 7600 profit approx x 2 repump count ✨8th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-29 17:26:41+00:00 1.0 1231437793 3322 the coin to pump is bnt exchange yobitnet target +100 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-29 17:00:20+00:00 1.0 1231437793 3319 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-29 16:55:03+00:00 1.0 1231437793 3318 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-29 16:50:05+00:00 1.0 1231437793 3317 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-29 16:40:04+00:00 1.0 1231437793 3316 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-29 16:30:08+00:00 1.0 1231437793 3315 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 16:00:14+00:00 1.0 1231437793 3314 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 15:00:07+00:00 1.0 1231437793 3313 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 13:00:04+00:00 1.0 1231437793 3312 ℹ coin signal information ℹ date sunday 291219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-29 11:00:10+00:00 1.0 1231437793 3310 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 291219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-29 09:53:40+00:00 1.0 1231437793 3298 pump results coin was ren open 486 high 1380 profit approx x 3 repump count ✨4th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-17 17:24:56+00:00 1.0 1231437793 3293 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-17 17:00:19+00:00 1.0 1231437793 3290 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-17 16:55:04+00:00 1.0 1231437793 3289 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-17 16:50:04+00:00 1.0 1231437793 3288 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-17 16:40:17+00:00 1.0 1231437793 3287 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-17 16:30:06+00:00 1.0 1231437793 3286 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 16:00:06+00:00 1.0 1231437793 3285 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 15:00:05+00:00 1.0 1231437793 3284 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 13:00:12+00:00 1.0 1231437793 3283 ℹ coin signal information ℹ date tuesday 171219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-17 11:00:04+00:00 1.0 1231437793 3281 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 171219 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-17 08:27:34+00:00 1.0 1231437793 3276 pump results coin was bnt open 3611 high 8995 profit approx x 2 repump count ✨7th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-13 17:24:05+00:00 1.0 1231437793 3271 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-13 17:00:16+00:00 1.0 1231437793 3268 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-13 16:55:05+00:00 1.0 1231437793 3267 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-13 16:50:05+00:00 1.0 1231437793 3266 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-13 16:40:29+00:00 1.0 1231437793 3265 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-13 16:30:04+00:00 1.0 1231437793 3264 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 16:00:13+00:00 1.0 1231437793 3263 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 15:00:07+00:00 1.0 1231437793 3262 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 13:00:17+00:00 1.0 1231437793 3261 ℹ coin signal information ℹ date friday 131219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-13 10:56:29+00:00 1.0 1231437793 3259 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 131219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-13 08:42:11+00:00 1.0 1231437793 3241 pump results coin was bnt open 3490 high 9500 profit approx x 3 repump count ✨6th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-15 17:28:15+00:00 1.0 1231437793 3237 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-15 17:02:05+00:00 1.0 1231437793 3233 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-15 16:55:06+00:00 1.0 1231437793 3232 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-15 16:50:08+00:00 1.0 1231437793 3231 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-15 16:40:06+00:00 1.0 1231437793 3230 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-15 16:30:07+00:00 1.0 1231437793 3229 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 16:00:09+00:00 1.0 1231437793 3228 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 15:00:05+00:00 1.0 1231437793 3227 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 13:00:29+00:00 1.0 1231437793 3226 ℹ coin signal information ℹ date friday 151119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-15 11:00:07+00:00 1.0 1231437793 3224 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 151119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-15 09:22:58+00:00 1.0 1231437793 3222 pump analysis coin was mda low 7800 high 65000 profit 700 guys more than 8x times repump count 4th time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-12 17:43:31+00:00 1.0 1231437793 3217 the coin to pump is mda exchange yobitnet target +100200 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-12 17:00:18+00:00 1.0 1231437793 3214 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-12 16:55:04+00:00 1.0 1231437793 3213 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-12 16:50:04+00:00 1.0 1231437793 3212 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-12 16:40:05+00:00 1.0 1231437793 3211 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-12 16:30:04+00:00 1.0 1231437793 3210 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 16:00:17+00:00 1.0 1231437793 3209 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 15:00:06+00:00 1.0 1231437793 3208 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 13:00:07+00:00 1.0 1231437793 3206 ℹ coin signal information ℹ date tuesday 121119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-12 11:00:04+00:00 1.0 1231437793 3204 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-12 08:01:45+00:00 1.0 1231437793 3156 pump analysis coin was mda low 8736 high 19000 guys more than 2x times as we choose this coin on your demand your early selling in beginning of pump halts the pumpvery less volume produced appearance of red colors created bottleneck in pumpinganyways repump count 3rd time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-24 17:22:02+00:00 1.0 1231437793 3150 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-24 16:55:04+00:00 1.0 1231437793 3149 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-24 16:50:03+00:00 1.0 1231437793 3148 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-24 16:40:03+00:00 1.0 1231437793 3147 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-24 16:30:04+00:00 1.0 1231437793 3146 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 16:00:07+00:00 1.0 1231437793 3145 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 15:00:06+00:00 1.0 1231437793 3144 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 13:00:08+00:00 1.0 1231437793 3142 ℹ coin signal information ℹ date thursday 241019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-24 11:00:05+00:00 1.0 1231437793 3140 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 241019 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-24 09:56:29+00:00 1.0 1231437793 3138 pump results coin was fun low 40 high 70 welldone guys almost 2x times repump count ✨6th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-22 17:35:32+00:00 1.0 1231437793 3131 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-22 16:55:04+00:00 1.0 1231437793 3130 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-22 16:50:04+00:00 1.0 1231437793 3129 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-22 16:40:04+00:00 1.0 1231437793 3128 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-22 16:30:04+00:00 1.0 1231437793 3127 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 16:00:04+00:00 1.0 1231437793 3126 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 15:00:07+00:00 1.0 1231437793 3124 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 13:00:06+00:00 1.0 1231437793 3122 ℹ coin signal information ℹ date tuesday 221019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-22 11:21:30+00:00 1.0 1231437793 3120 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 221019 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-22 10:09:06+00:00 1.0 1231437793 3099 pump results coin bnt low 4020 high 5702 welldone guys more than 45 the power of amazing viewers and buyers cannot go unnoticed keep earning as much as you can✨✨ get ready for the next boom boom✅✅ 2019-10-14 17:28:18+00:00 1.0 1231437793 3096 next post is coin name 2019-10-14 16:28:17+00:00 1.0 1231437793 3094 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 2x very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 2x ++ bcoz hodlers are the ones who win this crypto game always regards 2019-10-14 15:48:39+00:00 1.0 1231437793 3093 ‼️only 1 hour left for our special call‼️ ❗️❗historic signal event is expected to go 50100 sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 15:31:00+00:00 1.0 1231437793 3092 ‼️only 2 hours left for our special call‼️ ❗️❗historic signal event is expected to go 50100 300k members are joining this historic event sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 14:32:02+00:00 1.0 1231437793 3091 ‼️only 65 hours left for our special call‼️ ❗️❗historic signal event is expected to go 50100 sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 10:04:21+00:00 1.0 1231437793 3088 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ some information about the most awaited historic event exchange time 14102019 430pm gmt pump will be free for all more than 300000 people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon beready4blast ✈✈✈✈ staytuned 2019-10-13 09:07:06+00:00 1.0 1231437793 3084 pump results coin was blz low 281 high 580 welldone guys almost 2x times repump count ✨5th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-12 17:47:28+00:00 1.0 1231437793 3074 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-12 16:55:03+00:00 1.0 1231437793 3073 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-12 16:50:03+00:00 1.0 1231437793 3072 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-12 16:40:03+00:00 1.0 1231437793 3071 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-12 16:30:04+00:00 1.0 1231437793 3070 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 16:00:05+00:00 1.0 1231437793 3069 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 15:00:04+00:00 1.0 1231437793 3054 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 13:00:07+00:00 1.0 1231437793 3046 ℹ coin signal information ℹ date saturday 121019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-12 11:40:27+00:00 1.0 1231437793 3044 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-12 06:55:21+00:00 1.0 1231437793 3002 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-10-06 17:43:10+00:00 1.0 1231437793 2999 pump results coin was snt low 149 high 355 welldone guys more than 2x times repump count 2nd time within 02 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-05 17:16:02+00:00 1.0 1231437793 2994 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-05 17:00:17+00:00 1.0 1231437793 2991 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-05 16:55:03+00:00 1.0 1231437793 2990 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-05 16:50:03+00:00 1.0 1231437793 2989 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-05 16:40:04+00:00 1.0 1231437793 2988 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-05 16:30:05+00:00 1.0 1231437793 2987 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 16:00:09+00:00 1.0 1231437793 2986 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 15:00:05+00:00 1.0 1231437793 2985 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 13:00:10+00:00 1.0 1231437793 2983 ℹ coin signal information ℹ date saturday 051019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-05 09:55:19+00:00 1.0 1231437793 2981 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 051019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-05 06:46:20+00:00 1.0 1231437793 2965 pump results coin was snt low 149 high 517 welldone guys more than 3x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-02 17:26:13+00:00 1.0 1231437793 2960 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-02 17:00:20+00:00 1.0 1231437793 2957 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-02 16:55:04+00:00 1.0 1231437793 2956 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-02 16:50:04+00:00 1.0 1231437793 2955 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-02 16:40:04+00:00 1.0 1231437793 2954 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-02 16:30:06+00:00 1.0 1231437793 2953 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 16:00:07+00:00 1.0 1231437793 2952 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 15:00:05+00:00 1.0 1231437793 2951 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 13:00:10+00:00 1.0 1231437793 2950 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:56:06+00:00 1.0 1231437793 2948 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:54:32+00:00 1.0 1231437793 2946 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 021019 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-02 01:38:18+00:00 1.0 1231437793 2944 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-09-30 19:12:04+00:00 1.0 1231437793 2943 pump results coin was mda low 9501 high 22286 welldone guys more than 2x times repump count 2nd time within 15 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-30 17:50:03+00:00 1.0 1231437793 2938 the coin to pump is mda exchange yobitnet target +300 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-30 17:00:12+00:00 1.0 1231437793 2936 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-30 16:55:04+00:00 1.0 1231437793 2935 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-30 16:50:04+00:00 1.0 1231437793 2934 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-30 16:40:04+00:00 1.0 1231437793 2933 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-30 16:30:04+00:00 1.0 1231437793 2932 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 16:00:06+00:00 1.0 1231437793 2931 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 15:00:16+00:00 1.0 1231437793 2930 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 13:00:05+00:00 1.0 1231437793 2928 ℹ coin signal information ℹ date monday 300919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-09-30 11:00:05+00:00 1.0 1231437793 2926 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 300919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-30 06:28:43+00:00 1.0 1231437793 2924 pump results coin was fun open 46 high 125 welldone guys almost 3x times repump count ✨5th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-28 17:13:15+00:00 1.0 1231437793 2918 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-28 16:55:04+00:00 1.0 1231437793 2917 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-28 16:50:05+00:00 1.0 1231437793 2916 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-28 16:40:05+00:00 1.0 1231437793 2915 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-28 16:30:04+00:00 1.0 1231437793 2914 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 16:00:04+00:00 1.0 1231437793 2913 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 15:00:12+00:00 1.0 1231437793 2912 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 13:00:09+00:00 1.0 1231437793 2911 ℹ coin signal information ℹ date saturday 280919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-28 11:00:04+00:00 1.0 1231437793 2910 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 280919 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-28 07:53:14+00:00 1.0 1231437793 2907 pump results coin was gvt low 11201 high 23000 as we got lot of message to pump out previous coin gvt so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-26 17:15:29+00:00 1.0 1231437793 2899 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-26 16:55:05+00:00 1.0 1231437793 2898 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-26 16:50:05+00:00 1.0 1231437793 2897 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-26 16:40:05+00:00 1.0 1231437793 2896 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-26 16:30:06+00:00 1.0 1231437793 2895 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 16:00:06+00:00 1.0 1231437793 2894 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 15:00:11+00:00 1.0 1231437793 2893 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 13:00:06+00:00 1.0 1231437793 2892 ℹ coin signal information ℹ date thursday 260919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-26 11:00:07+00:00 1.0 1231437793 2891 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-26 07:59:43+00:00 1.0 1231437793 2888 pump results coin was bat low 1834 high 3776 as we got lot of message to pump out last coin bat so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-24 17:13:24+00:00 1.0 1231437793 2883 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-24 17:00:06+00:00 1.0 1231437793 2882 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-24 16:55:04+00:00 1.0 1231437793 2881 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-24 16:50:04+00:00 1.0 1231437793 2880 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-24 16:40:04+00:00 1.0 1231437793 2879 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-24 16:30:08+00:00 1.0 1231437793 2878 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 16:00:07+00:00 1.0 1231437793 2877 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 15:00:09+00:00 1.0 1231437793 2876 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 13:00:05+00:00 1.0 1231437793 2875 ℹ coin signal information ℹ date tuesday 240919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-24 10:14:15+00:00 1.0 1231437793 2874 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 240919 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-24 08:44:16+00:00 1.0 1231437793 2871 pump results coin was mana low 300 high 600 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-23 17:26:50+00:00 1.0 1231437793 2866 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-23 17:00:07+00:00 1.0 1231437793 2865 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-23 16:55:07+00:00 1.0 1231437793 2864 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-23 16:50:04+00:00 1.0 1231437793 2863 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-23 16:40:04+00:00 1.0 1231437793 2862 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-23 16:30:05+00:00 1.0 1231437793 2861 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 16:00:12+00:00 1.0 1231437793 2860 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 15:00:11+00:00 1.0 1231437793 2859 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 13:00:26+00:00 1.0 1231437793 2858 ℹ coin signal information ℹ date monday 230919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-23 11:16:14+00:00 1.0 1231437793 2857 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-23 08:41:42+00:00 1.0 1231437793 2852 pump results coin was qkc open 74 reached 200 welldone guys almost 3 x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-15 17:26:45+00:00 1.0 1231437793 2845 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-15 16:55:02+00:00 1.0 1231437793 2844 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-15 16:50:02+00:00 1.0 1231437793 2843 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-15 16:40:02+00:00 1.0 1231437793 2842 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-15 16:30:03+00:00 1.0 1231437793 2841 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 16:00:04+00:00 1.0 1231437793 2840 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 15:00:05+00:00 1.0 1231437793 2839 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 13:00:04+00:00 1.0 1231437793 2838 ℹ coin signal information ℹ date friday 150919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-15 11:00:03+00:00 1.0 1231437793 2837 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150919 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-15 08:17:36+00:00 1.0 1231437793 2828 5 минут следующее сообщение название монеты не забываем про чат купили и сразу в чат писать 5 minutes to go next post will be the coin name buy hold troll chat let price to up up up and then we all sell 2019-09-14 15:04:03+00:00 1.0 1231437793 2819 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 18:29:14+00:00 1.0 1231437793 2814 the coin to pump is link exchange yobitnet target +300500 market linkbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-12 17:00:16+00:00 1.0 1231437793 2811 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-12 16:55:04+00:00 1.0 1231437793 2810 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-12 16:50:02+00:00 1.0 1231437793 2809 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-12 16:40:02+00:00 1.0 1231437793 2808 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-12 16:30:02+00:00 1.0 1231437793 2807 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 16:00:06+00:00 1.0 1231437793 2806 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 15:00:04+00:00 1.0 1231437793 2805 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 13:00:12+00:00 1.0 1231437793 2804 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-12 07:27:24+00:00 1.0 1231437793 2789 pump results coin was mth low 123 high 362 welldone guys 25 x times on your demandwe listen you guys repump count 4th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-06 18:10:34+00:00 1.0 1231437793 2784 the coin to pump is mth exchange yobitnet target +300500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-06 17:00:11+00:00 1.0 1231437793 2781 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-06 16:55:02+00:00 1.0 1231437793 2780 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-06 16:50:02+00:00 1.0 1231437793 2779 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-06 16:40:02+00:00 1.0 1231437793 2778 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-06 16:30:03+00:00 1.0 1231437793 2777 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 16:00:05+00:00 1.0 1231437793 2776 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 15:00:09+00:00 1.0 1231437793 2775 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 13:00:05+00:00 1.0 1231437793 2774 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-06 11:00:12+00:00 1.0 1231437793 2771 pump results coin was snm low 90 high 330 welldone guys 3x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-04 17:27:31+00:00 1.0 1231437793 2766 coin to pump is snm exchange yobitnet target +500 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-04 17:00:16+00:00 1.0 1231437793 2763 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-04 16:55:02+00:00 1.0 1231437793 2762 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-04 16:50:03+00:00 1.0 1231437793 2761 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-04 16:40:02+00:00 1.0 1231437793 2760 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-04 16:30:05+00:00 1.0 1231437793 2759 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 16:00:03+00:00 1.0 1231437793 2758 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 15:00:06+00:00 1.0 1231437793 2757 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 13:00:04+00:00 1.0 1231437793 2756 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-04 11:00:03+00:00 1.0 1231437793 2751 pump results coin was gvt open 14000 high 49999 welldone guys more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-24 18:37:04+00:00 1.0 1231437793 2746 the coin to pump is gvt exchange yobitnet target +200400 market gvtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-24 17:00:16+00:00 1.0 1231437793 2743 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-24 16:55:03+00:00 1.0 1231437793 2742 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-24 16:50:03+00:00 1.0 1231437793 2741 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-24 16:40:02+00:00 1.0 1231437793 2740 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-24 16:30:02+00:00 1.0 1231437793 2739 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 16:00:03+00:00 1.0 1231437793 2738 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 15:00:02+00:00 1.0 1231437793 2737 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 13:00:04+00:00 1.0 1231437793 2736 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-24 11:00:05+00:00 1.0 1231437793 2732 pump results coin was tfd open 28 high 120 welldone guys more than 4x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-17 17:12:55+00:00 1.0 1231437793 2727 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-17 17:00:16+00:00 1.0 1231437793 2724 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-17 16:55:03+00:00 1.0 1231437793 2723 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-17 16:50:03+00:00 1.0 1231437793 2722 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-17 16:40:03+00:00 1.0 1231437793 2721 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-17 16:30:03+00:00 1.0 1231437793 2720 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 16:00:05+00:00 1.0 1231437793 2719 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 15:00:03+00:00 1.0 1231437793 2718 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 13:00:02+00:00 1.0 1231437793 2715 pump results coin was dlt open 452 high 1180 welldone guys more than 2x times on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-16 17:13:22+00:00 1.0 1231437793 2710 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-16 17:00:18+00:00 1.0 1231437793 2707 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-16 16:55:04+00:00 1.0 1231437793 2706 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-16 16:50:04+00:00 1.0 1231437793 2705 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-16 16:40:03+00:00 1.0 1231437793 2704 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-16 16:30:04+00:00 1.0 1231437793 2703 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 16:00:09+00:00 1.0 1231437793 2702 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 15:00:05+00:00 1.0 1231437793 2701 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 13:00:21+00:00 1.0 1231437793 2700 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-16 11:02:22+00:00 1.0 1231437793 2697 pump results coin was dlt open 460 high 1186 welldone guys more than 2x times on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-15 17:09:01+00:00 1.0 1231437793 2692 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-15 17:00:20+00:00 1.0 1231437793 2689 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-15 16:55:04+00:00 1.0 1231437793 2688 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-15 16:50:07+00:00 1.0 1231437793 2687 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-15 16:40:03+00:00 1.0 1231437793 2686 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-15 16:30:04+00:00 1.0 1231437793 2684 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 16:00:09+00:00 1.0 1231437793 2683 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 15:00:12+00:00 1.0 1231437793 2682 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 13:00:09+00:00 1.0 1231437793 2681 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-15 11:03:19+00:00 1.0 1231437793 2678 pump results coin was wpr open 60 high 150 on your demandwe listen you guys ✨ more than 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-12 17:14:32+00:00 1.0 1231437793 2673 coin to pump is wpr exchange yobitnet target 100200 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-12 17:00:16+00:00 1.0 1231437793 2670 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-12 16:55:03+00:00 1.0 1231437793 2669 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-12 16:50:03+00:00 1.0 1231437793 2668 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-12 16:40:03+00:00 1.0 1231437793 2667 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-12 16:30:06+00:00 1.0 1231437793 2666 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 16:00:07+00:00 1.0 1231437793 2665 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 15:00:05+00:00 1.0 1231437793 2664 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 13:00:08+00:00 1.0 1231437793 2663 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-12 12:00:16+00:00 1.0 1231437793 2659 pump results coin was mana open 340 high 649 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-11 17:21:14+00:00 1.0 1231437793 2654 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-11 17:00:15+00:00 1.0 1231437793 2651 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-11 16:55:03+00:00 1.0 1231437793 2650 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-11 16:50:03+00:00 1.0 1231437793 2649 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-11 16:40:03+00:00 1.0 1231437793 2648 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-11 16:30:04+00:00 1.0 1231437793 2647 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 16:00:10+00:00 1.0 1231437793 2646 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 15:00:03+00:00 1.0 1231437793 2645 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 13:00:12+00:00 1.0 1231437793 2644 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-11 11:00:08+00:00 1.0 1231437793 2641 pump results on binance coin was storj open 1315 high 1440 profit 10 2019-08-11 04:14:21+00:00 1.0 1231437793 2638 05 minutes left the next message will be the coin name with targets❗️ 2019-08-10 19:55:11+00:00 1.0 1231437793 2637 15 minutes left make sure you are logged in your binance account❗️ 2019-08-10 19:45:05+00:00 1.0 1231437793 2636 30 minutes left thats it team were ready prepared for this giant that is coming 2019-08-10 19:29:58+00:00 1.0 1231437793 2633 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big second wave this time 2019-08-10 16:00:04+00:00 1.0 1231437793 2629 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:34:01+00:00 1.0 1231437793 2628 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:33:54+00:00 1.0 1231437793 2627 pump results coin was mana open 292 high 800 welldone guys nearly 3 x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-09 17:13:16+00:00 1.0 1231437793 2622 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-09 17:00:18+00:00 1.0 1231437793 2619 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-09 16:55:02+00:00 1.0 1231437793 2618 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-09 16:50:06+00:00 1.0 1231437793 2617 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-09 16:40:03+00:00 1.0 1231437793 2616 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-09 16:30:06+00:00 1.0 1231437793 2615 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 16:00:03+00:00 1.0 1231437793 2614 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 15:00:03+00:00 1.0 1231437793 2613 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 13:00:05+00:00 1.0 1231437793 2612 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-09 11:00:26+00:00 1.0 1231437793 2609 pump results coin was req open 138 high 194 second wave open 192 high 245 welldone guys on your demandwe listen you guys repump count 3rd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-04 17:17:56+00:00 1.0 1231437793 2604 the coin to pump is req exchange yobitnet target 100200 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-04 17:00:14+00:00 1.0 1231437793 2601 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-04 16:55:02+00:00 1.0 1231437793 2600 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-04 16:50:02+00:00 1.0 1231437793 2599 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-04 16:40:02+00:00 1.0 1231437793 2598 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-04 16:30:03+00:00 1.0 1231437793 2597 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 16:00:04+00:00 1.0 1231437793 2596 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 15:00:02+00:00 1.0 1231437793 2595 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 13:00:03+00:00 1.0 1231437793 2594 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-04 11:00:05+00:00 1.0 1231437793 2591 pump results coin was fun open 24 high 71 welldone guys almost 3x times repump count ✨4th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-03 17:11:39+00:00 1.0 1231437793 2586 coin to pump is fun exchange yobitnet target upto 100300 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-03 17:00:13+00:00 1.0 1231437793 2583 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-03 16:55:01+00:00 1.0 1231437793 2582 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-03 16:50:01+00:00 1.0 1231437793 2581 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-03 16:40:01+00:00 1.0 1231437793 2580 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-03 16:30:02+00:00 1.0 1231437793 2579 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 16:00:04+00:00 1.0 1231437793 2578 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 15:00:02+00:00 1.0 1231437793 2577 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 13:00:07+00:00 1.0 1231437793 2576 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-03 11:00:04+00:00 1.0 1231437793 2572 pump results coin was mana open 501 high 1501 welldone guys 3x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-29 17:19:57+00:00 1.0 1231437793 2567 coin to pump is mana exchange yobitnet target +200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-29 17:00:16+00:00 1.0 1231437793 2564 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-29 16:55:01+00:00 1.0 1231437793 2563 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-29 16:50:01+00:00 1.0 1231437793 2562 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-29 16:40:02+00:00 1.0 1231437793 2561 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-29 16:30:01+00:00 1.0 1231437793 2560 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 16:00:03+00:00 1.0 1231437793 2559 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 15:00:14+00:00 1.0 1231437793 2558 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 13:00:21+00:00 1.0 1231437793 2557 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-29 11:00:26+00:00 1.0 1231437793 2554 pump results coin was qkc open 201 reached 600 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-28 17:35:52+00:00 1.0 1231437793 2549 the coin to pump is qkc exchange yobitnet target +200 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-28 17:00:12+00:00 1.0 1231437793 2546 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-28 16:55:01+00:00 1.0 1231437793 2545 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-28 16:50:01+00:00 1.0 1231437793 2544 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-28 16:40:01+00:00 1.0 1231437793 2543 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-28 16:30:03+00:00 1.0 1231437793 2542 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 16:00:11+00:00 1.0 1231437793 2541 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 15:00:02+00:00 1.0 1231437793 2540 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 13:00:18+00:00 1.0 1231437793 2539 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-28 11:00:02+00:00 1.0 1231437793 2536 pump results coin was matic open 116 high 311 welldone guys more than 2x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-27 17:19:52+00:00 1.0 1231437793 2531 coin to pump is matic exchange yobitnet target upto 300500 above market maticbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-27 17:00:13+00:00 1.0 1231437793 2528 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-27 16:55:01+00:00 1.0 1231437793 2527 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-27 16:50:02+00:00 1.0 1231437793 2526 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-27 16:40:01+00:00 1.0 1231437793 2525 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-27 16:30:02+00:00 1.0 1231437793 2524 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 16:00:03+00:00 1.0 1231437793 2523 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 15:00:06+00:00 1.0 1231437793 2522 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 13:00:24+00:00 1.0 1231437793 2521 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-27 11:00:48+00:00 1.0 1231437793 2518 pump results coin was fun low 29 high 85 welldone guys more than 2x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-21 17:28:29+00:00 1.0 1231437793 2513 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-21 17:00:12+00:00 1.0 1231437793 2510 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-21 16:55:02+00:00 1.0 1231437793 2509 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-21 16:50:02+00:00 1.0 1231437793 2508 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-21 16:40:01+00:00 1.0 1231437793 2507 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-21 16:30:01+00:00 1.0 1231437793 2506 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 16:00:03+00:00 1.0 1231437793 2505 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 15:00:04+00:00 1.0 1231437793 2504 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 13:00:06+00:00 1.0 1231437793 2503 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-21 11:00:03+00:00 1.0 1231437793 2500 pump results coin was blz open 409 high 1290 welldone guys more than 3x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-13 17:34:46+00:00 1.0 1231437793 2495 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-13 17:00:15+00:00 1.0 1231437793 2492 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-13 16:55:02+00:00 1.0 1231437793 2491 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-13 16:50:01+00:00 1.0 1231437793 2490 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-13 16:40:01+00:00 1.0 1231437793 2489 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-13 16:30:02+00:00 1.0 1231437793 2487 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 16:00:05+00:00 1.0 1231437793 2486 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 15:00:02+00:00 1.0 1231437793 2485 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 13:00:04+00:00 1.0 1231437793 2480 pump results coin was fun low 26 high 123 welldone guys almost 5x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-11 17:21:49+00:00 1.0 1231437793 2475 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-11 17:00:13+00:00 1.0 1231437793 2472 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-11 16:55:01+00:00 1.0 1231437793 2471 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-11 16:50:02+00:00 1.0 1231437793 2470 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-11 16:40:01+00:00 1.0 1231437793 2469 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-11 16:30:09+00:00 1.0 1231437793 2468 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 16:00:08+00:00 1.0 1231437793 2467 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 15:00:04+00:00 1.0 1231437793 2466 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 13:00:04+00:00 1.0 1231437793 2462 pump results coin was ppt low 8204 high 20698 welldone guys more than 2x times repump count ✨7th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-07 17:16:47+00:00 1.0 1231437793 2458 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-07 17:00:13+00:00 1.0 1231437793 2455 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-07 16:55:01+00:00 1.0 1231437793 2454 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-07 16:50:01+00:00 1.0 1231437793 2453 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-07 16:40:01+00:00 1.0 1231437793 2452 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-07 16:30:02+00:00 1.0 1231437793 2451 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 16:00:03+00:00 1.0 1231437793 2450 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 15:00:05+00:00 1.0 1231437793 2449 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 13:00:05+00:00 1.0 1231437793 2448 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-07 11:00:16+00:00 1.0 1231437793 2445 pump results coin was fun open 35 high 140 welldone guys 4x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-06 17:13:32+00:00 1.0 1231437793 2440 coin to pump is fun exchange yobitnet target upto 400500 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-06 17:00:13+00:00 1.0 1231437793 2437 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-06 16:55:01+00:00 1.0 1231437793 2436 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-06 16:50:01+00:00 1.0 1231437793 2435 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-06 16:40:01+00:00 1.0 1231437793 2434 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-06 16:30:01+00:00 1.0 1231437793 2433 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 16:00:04+00:00 1.0 1231437793 2432 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 15:00:04+00:00 1.0 1231437793 2431 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 13:00:07+00:00 1.0 1231437793 2430 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-06 11:01:26+00:00 1.0 1231437793 2427 pump results coin was lend low 61 high 190 welldone guys 3x times repump count ✨4th ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-05 17:27:34+00:00 1.0 1231437793 2422 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-05 17:00:13+00:00 1.0 1231437793 2419 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-05 16:55:02+00:00 1.0 1231437793 2418 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-05 16:50:01+00:00 1.0 1231437793 2417 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-05 16:40:01+00:00 1.0 1231437793 2416 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-05 16:30:01+00:00 1.0 1231437793 2415 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 16:00:04+00:00 1.0 1231437793 2414 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 15:00:02+00:00 1.0 1231437793 2413 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 13:00:39+00:00 1.0 1231437793 2412 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-05 11:00:03+00:00 1.0 1231437793 2394 pump results coin was ppt low 6000 high 20296 welldone guys more than 3x times repump count ✨6th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-26 17:11:43+00:00 1.0 1231437793 2389 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-26 17:00:13+00:00 1.0 1231437793 2386 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-26 16:55:01+00:00 1.0 1231437793 2385 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-26 16:50:04+00:00 1.0 1231437793 2384 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-26 16:40:01+00:00 1.0 1231437793 2383 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-26 16:30:02+00:00 1.0 1231437793 2382 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 16:00:03+00:00 1.0 1231437793 2381 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 15:00:02+00:00 1.0 1231437793 2380 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 13:02:59+00:00 1.0 1231437793 2379 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-26 11:00:02+00:00 1.0 1231437793 2376 pump results coin was bat low 2718 high 4449 good volume ✈️even in red market we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-25 17:57:24+00:00 1.0 1231437793 2371 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-25 17:01:07+00:00 1.0 1231437793 2368 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-25 16:55:01+00:00 1.0 1231437793 2367 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-25 16:50:02+00:00 1.0 1231437793 2366 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-25 16:40:01+00:00 1.0 1231437793 2365 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-25 16:30:01+00:00 1.0 1231437793 2364 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 16:00:04+00:00 1.0 1231437793 2363 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 15:00:05+00:00 1.0 1231437793 2362 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-25 11:00:02+00:00 1.0 1231437793 2358 pump results coin was blz open 635 high 1386 welldone guys more than 2x times repump count ✨3rd✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-22 17:19:50+00:00 1.0 1231437793 2353 coin to pump is blz exchange yobitnet target +200 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-22 17:00:12+00:00 1.0 1231437793 2350 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-22 16:55:01+00:00 1.0 1231437793 2349 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-22 16:50:01+00:00 1.0 1231437793 2348 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-22 16:40:00+00:00 1.0 1231437793 2347 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-22 16:30:01+00:00 1.0 1231437793 2346 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 16:00:05+00:00 1.0 1231437793 2345 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 15:00:02+00:00 1.0 1231437793 2344 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-22 11:00:03+00:00 1.0 1231437793 2343 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 10:53:02+00:00 1.0 1231437793 2339 curative pump on your massive request same coin we chosen from previous pump we followed yours choice pump results coin was req open 220 high 380 second wave open 214 high452 welldone guys 2x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump in on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-21 17:18:59+00:00 1.0 1231437793 2335 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-21 17:00:13+00:00 1.0 1231437793 2332 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-21 16:55:00+00:00 1.0 1231437793 2331 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-21 16:50:01+00:00 1.0 1231437793 2330 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-21 16:40:01+00:00 1.0 1231437793 2329 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-21 16:30:05+00:00 1.0 1231437793 2328 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 16:00:51+00:00 1.0 1231437793 2327 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 15:01:38+00:00 1.0 1231437793 2326 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 13:00:11+00:00 1.0 1231437793 2325 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-21 11:00:04+00:00 1.0 1231437793 2321 consecutivecurative pump on your massive request same coin we chosen from last six pumps we followed yours choice pump results coin was pax open 10066 high 20000 welldone guys 2x times on your demandwe listen you guys repump count 7th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-20 17:11:03+00:00 1.0 1231437793 2316 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-20 17:00:13+00:00 1.0 1231437793 2313 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-20 16:55:01+00:00 1.0 1231437793 2312 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-20 16:50:01+00:00 1.0 1231437793 2311 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-20 16:40:02+00:00 1.0 1231437793 2310 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-20 16:30:01+00:00 1.0 1231437793 2309 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 16:00:06+00:00 1.0 1231437793 2308 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 15:01:46+00:00 1.0 1231437793 2307 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 13:00:45+00:00 1.0 1231437793 2306 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-20 11:00:04+00:00 1.0 1231437793 2303 pump results coin was lend open 117 high 300 welldone guys almost 3x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-18 17:16:22+00:00 1.0 1231437793 2298 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-18 17:00:06+00:00 1.0 1231437793 2296 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-18 16:55:01+00:00 1.0 1231437793 2295 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-18 16:50:03+00:00 1.0 1231437793 2294 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-18 16:40:03+00:00 1.0 1231437793 2293 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-18 16:30:03+00:00 1.0 1231437793 2292 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 16:00:11+00:00 1.0 1231437793 2291 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 15:00:02+00:00 1.0 1231437793 2290 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 13:00:13+00:00 1.0 1231437793 2286 pump results coin was lend open 98 high 295 welldone guys almost 3x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-15 17:19:09+00:00 1.0 1231437793 2281 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-15 17:00:10+00:00 1.0 1231437793 2279 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-15 16:55:01+00:00 1.0 1231437793 2278 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-15 16:50:00+00:00 1.0 1231437793 2277 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-15 16:40:00+00:00 1.0 1231437793 2276 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-15 16:30:01+00:00 1.0 1231437793 2275 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 16:00:33+00:00 1.0 1231437793 2274 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 15:00:04+00:00 1.0 1231437793 2273 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 13:00:14+00:00 1.0 1231437793 2272 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-15 11:00:04+00:00 1.0 1231437793 2269 pump results coin was ppt low 11501 high 36990 welldone guys more than 3x times repump count ✨5th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-14 17:10:23+00:00 1.0 1231437793 2264 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-14 17:00:08+00:00 1.0 1231437793 2262 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-14 16:55:02+00:00 1.0 1231437793 2261 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-14 16:50:10+00:00 1.0 1231437793 2260 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-14 16:40:02+00:00 1.0 1231437793 2259 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-14 16:30:06+00:00 1.0 1231437793 2258 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 16:00:14+00:00 1.0 1231437793 2257 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 15:00:02+00:00 1.0 1231437793 2256 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 13:00:05+00:00 1.0 1231437793 2255 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-14 11:00:08+00:00 1.0 1231437793 2250 pump results coin was dlt open 1552 high 4700 welldone guys more than 3x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-12 17:13:54+00:00 1.0 1231437793 2245 the coin to pump is dlt exchange yobitnet target +300 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-12 17:00:07+00:00 1.0 1231437793 2243 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-12 16:55:01+00:00 1.0 1231437793 2242 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-12 16:50:04+00:00 1.0 1231437793 2241 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-12 16:40:03+00:00 1.0 1231437793 2240 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-12 16:30:02+00:00 1.0 1231437793 2239 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 16:00:11+00:00 1.0 1231437793 2238 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 15:00:19+00:00 1.0 1231437793 2237 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 13:00:05+00:00 1.0 1231437793 2236 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-12 11:57:55+00:00 1.0 1231437793 2233 consecutive pump on your massive request same coin we chosen from last five pumps we followed yours choice pump results coin was pax low 13000 high 30000 welldone guys more than 2x times on your demandwe listen you guys repump count 6th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-11 17:21:28+00:00 1.0 1231437793 2228 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-11 17:00:07+00:00 1.0 1231437793 2226 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-11 16:55:01+00:00 1.0 1231437793 2225 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-11 16:50:02+00:00 1.0 1231437793 2224 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-11 16:40:01+00:00 1.0 1231437793 2223 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-11 16:30:02+00:00 1.0 1231437793 2222 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 16:00:21+00:00 1.0 1231437793 2221 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 15:00:26+00:00 1.0 1231437793 2220 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 13:00:04+00:00 1.0 1231437793 2219 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-11 11:02:11+00:00 1.0 1231437793 2189 consecutive pump on your massive request same coin we chosen from last four pumps we followed yours choice pump results coin was pax low 11448 high 39995 welldone guys more than 3x times on your demandwe listen you guys repump count 5th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-23 17:17:19+00:00 1.0 1231437793 2187 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-23 17:01:33+00:00 1.0 1231437793 2184 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-23 16:56:52+00:00 1.0 1231437793 2183 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-23 16:50:03+00:00 1.0 1231437793 2182 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-23 16:40:04+00:00 1.0 1231437793 2181 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-23 16:38:26+00:00 1.0 1231437793 2180 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 16:03:26+00:00 1.0 1231437793 2179 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 15:00:12+00:00 1.0 1231437793 2178 ℹ️ 3 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 14:00:02+00:00 1.0 1231437793 2172 pump results coin was lend open 116 high 300 welldone guys almost 3x times as targeted 200 we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-19 17:28:57+00:00 1.0 1231437793 2169 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-19 17:00:07+00:00 1.0 1231437793 2167 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-19 16:55:01+00:00 1.0 1231437793 2166 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-19 16:50:01+00:00 1.0 1231437793 2165 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-19 16:40:01+00:00 1.0 1231437793 2164 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-19 16:30:03+00:00 1.0 1231437793 2163 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 16:00:02+00:00 1.0 1231437793 2162 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 15:02:09+00:00 1.0 1231437793 2161 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 13:00:52+00:00 1.0 1231437793 2156 consecutive pump on your massive request same coin we chosen from last two pumps we followed yours choice pump results coin was pax open 14795 high 45526 welldone guys more than 3x times better height repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-18 17:16:06+00:00 1.0 1231437793 2151 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-18 17:00:08+00:00 1.0 1231437793 2149 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-18 16:55:00+00:00 1.0 1231437793 2148 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-18 16:50:01+00:00 1.0 1231437793 2147 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-18 16:40:01+00:00 1.0 1231437793 2146 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-18 16:30:05+00:00 1.0 1231437793 2145 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 16:00:05+00:00 1.0 1231437793 2144 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 15:00:04+00:00 1.0 1231437793 2143 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 13:00:22+00:00 1.0 1231437793 2138 as we promised to pump hc shortly and recommended for hodl hc hit 2383 hc holder real profit fast we always repump our coin 2019-05-16 17:24:16+00:00 1.0 1231437793 2113 buy coin hc binance ▶️ tradeindexsymbolhcbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 above profit 2019-05-12 17:00:06+00:00 1.0 1231437793 2111 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-12 16:55:01+00:00 1.0 1231437793 2110 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-05-12 16:50:01+00:00 1.0 1231437793 2109 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-05-12 16:40:02+00:00 1.0 1231437793 2108 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-05-12 16:33:01+00:00 1.0 1231437793 2107 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-12 16:30:04+00:00 1.0 1231437793 2106 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 16:00:04+00:00 1.0 1231437793 2105 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 15:00:06+00:00 1.0 1231437793 2104 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 14:00:03+00:00 1.0 1231437793 2090 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 09:00:14+00:00 1.0 1231437793 2062 pump results coin was pax open 17001 high 90000 welldone guys more than 5x times better height from last pump repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-10 17:14:41+00:00 1.0 1231437793 2057 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-10 17:00:06+00:00 1.0 1231437793 2055 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-10 16:55:00+00:00 1.0 1231437793 2054 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-10 16:50:01+00:00 1.0 1231437793 2053 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-10 16:40:06+00:00 1.0 1231437793 2052 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-10 16:30:08+00:00 1.0 1231437793 2051 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 16:00:09+00:00 1.0 1231437793 2050 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 15:00:06+00:00 1.0 1231437793 2047 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 13:00:14+00:00 1.0 1231437793 2040 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-10 11:01:17+00:00 1.0 1231437793 2008 pump results coin was pax open 20000 high 90000 welldone guys more than 4x times better height from last pump repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-08 17:12:48+00:00 1.0 1231437793 2003 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-08 17:00:06+00:00 1.0 1231437793 2001 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-08 16:55:01+00:00 1.0 1231437793 2000 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-08 16:50:00+00:00 1.0 1231437793 1999 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-08 16:40:09+00:00 1.0 1231437793 1998 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-08 16:30:03+00:00 1.0 1231437793 1997 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 16:00:08+00:00 1.0 1231437793 1996 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 15:01:18+00:00 1.0 1231437793 1993 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 13:00:15+00:00 1.0 1231437793 1988 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-08 11:00:09+00:00 1.0 1231437793 1937 pump results coin was enj low 2400 high 4799 welldone guys 2x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-05 17:14:37+00:00 1.0 1231437793 1932 coin to pump is enj exchange yobitnet target +200 market enjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-05 17:00:08+00:00 1.0 1231437793 1930 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-05 16:55:01+00:00 1.0 1231437793 1929 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-05 16:50:01+00:00 1.0 1231437793 1928 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-05 16:40:01+00:00 1.0 1231437793 1927 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-05 16:30:05+00:00 1.0 1231437793 1926 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-05 16:00:04+00:00 1.0 1231437793 1925 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-05 13:00:01+00:00 1.0 1231437793 1924 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-05 11:00:08+00:00 1.0 1231437793 1912 pump results coin was ppt open 19182 high 69998 welldone guys more than 3x times repump count ✨4th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-04 17:25:26+00:00 1.0 1231437793 1907 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-04 17:00:10+00:00 1.0 1231437793 1905 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-04 16:55:01+00:00 1.0 1231437793 1904 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-04 16:50:01+00:00 1.0 1231437793 1903 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-04 16:40:01+00:00 1.0 1231437793 1902 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-04 16:30:02+00:00 1.0 1231437793 1901 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 16:00:04+00:00 1.0 1231437793 1900 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 15:00:24+00:00 1.0 1231437793 1898 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 13:00:06+00:00 1.0 1231437793 1893 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-04 11:00:05+00:00 1.0 1231437793 1841 pump results coin was ppt open 21500 high 58995 welldone guys more than 2x times repump count ✨3rd ✨time on your massive request curative pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-01 17:18:32+00:00 1.0 1231437793 1836 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-01 17:00:08+00:00 1.0 1231437793 1834 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-01 16:55:01+00:00 1.0 1231437793 1833 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-01 16:50:01+00:00 1.0 1231437793 1832 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-01 16:40:01+00:00 1.0 1231437793 1831 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-01 16:30:20+00:00 1.0 1231437793 1830 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-01 16:00:03+00:00 1.0 1231437793 1829 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-01 15:00:03+00:00 1.0 1231437793 1824 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-01 13:00:04+00:00 1.0 1231437793 1802 pump results coin was blz open 901 high 5707 welldone guys more than 6x times repump count ✨2nd✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-30 17:23:01+00:00 1.0 1231437793 1797 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-30 17:00:07+00:00 1.0 1231437793 1795 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-30 16:55:01+00:00 1.0 1231437793 1794 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-30 16:50:02+00:00 1.0 1231437793 1793 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-30 16:40:01+00:00 1.0 1231437793 1791 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-30 16:30:02+00:00 1.0 1231437793 1790 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-30 16:00:14+00:00 1.0 1231437793 1769 pump results coin was ctxc open 2940 high 9900 welldone guys as promised by us 300 more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-28 17:32:24+00:00 1.0 1231437793 1764 coin to pump is ctxc exchange yobitnet target +300 market ctxcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-28 17:00:07+00:00 1.0 1231437793 1762 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-28 16:55:00+00:00 1.0 1231437793 1761 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-28 16:50:01+00:00 1.0 1231437793 1760 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-28 16:40:04+00:00 1.0 1231437793 1759 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-28 16:30:18+00:00 1.0 1231437793 1758 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 16:00:04+00:00 1.0 1231437793 1757 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 15:00:13+00:00 1.0 1231437793 1756 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-28 13:00:05+00:00 1.0 1231437793 1753 pump results coin was ukg open 483 high 1500 welldone guys 3x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-27 17:18:10+00:00 1.0 1231437793 1748 coin to pump is ukg exchange yobitnet target +300 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-27 17:00:09+00:00 1.0 1231437793 1746 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-27 16:55:02+00:00 1.0 1231437793 1745 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-27 16:50:03+00:00 1.0 1231437793 1744 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-27 16:40:02+00:00 1.0 1231437793 1743 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-27 16:30:02+00:00 1.0 1231437793 1742 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 16:00:04+00:00 1.0 1231437793 1741 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 15:00:07+00:00 1.0 1231437793 1740 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-27 13:00:02+00:00 1.0 1231437793 1734 pump results coin was pax open 16145 high 67999 welldone guys more than 4x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-24 17:19:05+00:00 1.0 1231437793 1729 coin to pump is pax exchange yobitnet target +600 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-24 17:00:07+00:00 1.0 1231437793 1727 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-24 16:55:01+00:00 1.0 1231437793 1726 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-24 16:50:01+00:00 1.0 1231437793 1725 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-24 16:40:00+00:00 1.0 1231437793 1724 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-24 16:30:03+00:00 1.0 1231437793 1723 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 16:00:02+00:00 1.0 1231437793 1722 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 15:00:03+00:00 1.0 1231437793 1721 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-24 13:00:15+00:00 1.0 1231437793 1718 pump results coin was enj open 3246 high 1000 welldone guys more than 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-23 17:34:40+00:00 1.0 1231437793 1713 coin to pump is enj exchange yobitnet target +200 market enjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-23 17:00:09+00:00 1.0 1231437793 1711 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-23 16:55:01+00:00 1.0 1231437793 1710 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-23 16:50:01+00:00 1.0 1231437793 1709 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-23 16:40:01+00:00 1.0 1231437793 1708 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-23 16:30:04+00:00 1.0 1231437793 1707 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 16:00:03+00:00 1.0 1231437793 1706 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 15:00:05+00:00 1.0 1231437793 1705 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-23 13:10:22+00:00 1.0 1231437793 1699 pump results coin was soul high 1750 low 1100 current rate 14501500+ those who bought at 1100 rate got 40 profit approx we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-22 17:46:39+00:00 1.0 1231437793 1687 ℹ️ 5 minutes ℹ️ the next post will be the coin to buyhold for max profit on kucoincom 2019-04-22 15:55:01+00:00 1.0 1231437793 1686 ℹ️ 10 minutes ℹ️ get ready with your kucoin account coin is low level buy with us 2019-04-22 15:50:01+00:00 1.0 1231437793 1685 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on kucoincom 2019-04-22 15:40:01+00:00 1.0 1231437793 1684 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2019-04-22 15:30:06+00:00 1.0 1231437793 1683 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 15:00:03+00:00 1.0 1231437793 1682 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 13:00:01+00:00 1.0 1231437793 1681 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 10:00:02+00:00 1.0 1231437793 1680 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt indian time 930 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2019-04-22 08:12:39+00:00 1.0 1231437793 1678 pump results coin was storm open 68 high 194 welldone guys almost 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-20 17:52:51+00:00 1.0 1231437793 1673 coin to pump is storm exchange yobitnet target +200 market stormbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-20 17:00:08+00:00 1.0 1231437793 1671 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-20 16:55:07+00:00 1.0 1231437793 1670 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-20 16:50:01+00:00 1.0 1231437793 1669 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-20 16:40:01+00:00 1.0 1231437793 1668 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-20 16:30:04+00:00 1.0 1231437793 1667 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 16:00:02+00:00 1.0 1231437793 1666 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 15:00:02+00:00 1.0 1231437793 1665 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-20 13:00:02+00:00 1.0 1231437793 1662 pump results coin was ppt open 28793 high 109918 welldone guys almost 4x times repump count ✨2nd ✨time on your massive request better height from first pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-19 17:22:27+00:00 1.0 1231437793 1656 coin to pump is ppt exchange yobitnet target +200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-19 17:00:01+00:00 1.0 1231437793 1655 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-19 16:55:01+00:00 1.0 1231437793 1654 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-19 16:50:01+00:00 1.0 1231437793 1653 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-19 16:40:01+00:00 1.0 1231437793 1652 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-19 16:30:02+00:00 1.0 1231437793 1651 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 16:00:02+00:00 1.0 1231437793 1650 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 15:00:03+00:00 1.0 1231437793 1649 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-19 13:00:05+00:00 1.0 1231437793 1636 pump results coin was tnt low 350 high 640 welldone guys almost 2x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-15 17:20:26+00:00 1.0 1231437793 1631 the coin to pump is tnt exchange yobitnet target 100200 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-15 17:00:13+00:00 1.0 1231437793 1629 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-15 16:55:03+00:00 1.0 1231437793 1628 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-15 16:51:13+00:00 1.0 1231437793 1627 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-15 16:40:02+00:00 1.0 1231437793 1626 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-15 16:30:13+00:00 1.0 1231437793 1625 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 16:00:11+00:00 1.0 1231437793 1624 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 15:00:06+00:00 1.0 1231437793 1623 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-15 13:00:02+00:00 1.0 1231437793 1620 pump results coin was dai open 19000 high 42243 profit more than x 2 repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-14 17:31:20+00:00 1.0 1231437793 1616 coin to pump is dai exchange yobitnet target 400600 market daibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-14 17:00:08+00:00 1.0 1231437793 1614 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-14 16:55:01+00:00 1.0 1231437793 1613 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-14 16:50:01+00:00 1.0 1231437793 1612 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-14 16:40:00+00:00 1.0 1231437793 1611 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-14 16:30:02+00:00 1.0 1231437793 1610 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 16:00:02+00:00 1.0 1231437793 1609 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 15:00:03+00:00 1.0 1231437793 1608 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-14 13:00:12+00:00 1.0 1231437793 1605 pump results coin was bnt open 12165 high 24999 profit x 2 repump count ✨5th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-13 17:26:38+00:00 1.0 1231437793 1600 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-13 17:00:13+00:00 1.0 1231437793 1598 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-13 16:55:01+00:00 1.0 1231437793 1597 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-13 16:50:02+00:00 1.0 1231437793 1596 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-13 16:40:01+00:00 1.0 1231437793 1595 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-13 16:30:03+00:00 1.0 1231437793 1594 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-13 16:00:06+00:00 1.0 1231437793 1593 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-13 15:00:02+00:00 1.0 1231437793 1592 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-13 13:00:05+00:00 1.0 1231437793 1589 pump results coin was snm open 580 reached 1138 welldone guys 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-11 17:24:42+00:00 1.0 1231437793 1584 coin to pump is snm exchange yobitnet target +200 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-11 17:00:10+00:00 1.0 1231437793 1582 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-11 16:55:01+00:00 1.0 1231437793 1581 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-11 16:50:09+00:00 1.0 1231437793 1580 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-11 16:40:00+00:00 1.0 1231437793 1579 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-11 16:30:06+00:00 1.0 1231437793 1578 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-11 16:00:02+00:00 1.0 1231437793 1577 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-11 15:00:04+00:00 1.0 1231437793 1576 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-11 13:06:29+00:00 1.0 1231437793 1566 pump results coin was qkc open 1060 reached 3732 welldone guys nearly 4 x times repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-09 17:55:24+00:00 1.0 1231437793 1561 the coin to pump is qkc exchange yobitnet target +400 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-09 17:00:08+00:00 1.0 1231437793 1559 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-09 16:55:01+00:00 1.0 1231437793 1558 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-09 16:50:01+00:00 1.0 1231437793 1557 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-09 16:40:02+00:00 1.0 1231437793 1556 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-09 16:30:02+00:00 1.0 1231437793 1555 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-09 16:00:06+00:00 1.0 1231437793 1554 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-09 15:00:03+00:00 1.0 1231437793 1553 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-09 13:00:01+00:00 1.0 1231437793 1548 pump results coin was ppt open 32841 high 72500 welldone guys more than 2 x times notewe always repump our coin 2019-04-08 17:25:41+00:00 1.0 1231437793 1543 coin to pump is ppt exchange yobitnet target +200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-08 17:00:06+00:00 1.0 1231437793 1541 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-08 16:55:01+00:00 1.0 1231437793 1540 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-08 16:50:01+00:00 1.0 1231437793 1539 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-08 16:40:02+00:00 1.0 1231437793 1536 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-08 16:30:06+00:00 1.0 1231437793 1535 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-08 16:00:40+00:00 1.0 1231437793 1534 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-08 15:00:03+00:00 1.0 1231437793 1533 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-08 13:00:18+00:00 1.0 1231437793 1530 pump results coin was aoa open 327 high 1301 welldone guys 4 x times repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-07 17:46:30+00:00 1.0 1231437793 1502 pump results coin was bnt low 13160 high 26000 profit x 2 repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-06 17:33:46+00:00 1.0 1231437793 1469 pump results coin was hqx low 100 high 399 repump count 3rd time on your massive requestmore than 3 x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-05 18:10:06+00:00 1.0 1231437793 1436 pump results coin was bnt ooen 13607 high 38692 profit x 3 repump count 3rd time on your massive request notewe always repump our coin 2019-04-04 17:15:40+00:00 1.0 1231437793 1375 pump results coin was bnt low 15055 high 24300 repump count 2nd time on your massive request 6070 profit notewe always repump our coin 2019-03-29 18:52:20+00:00 1.0 1231437793 1358 pump results coin was hqx open 165 high 499 repump count 2nd time on your massive request more than 3 x times notewe always repump our coin 2019-03-26 17:20:13+00:00 1.0 1231437793 1341 pump results coin was dadi open 857 high 2850 repump count 4th time on your massive request ✅ welldone more than 3 x times notewe always repump our coin 2019-03-25 17:29:08+00:00 1.0 1231437793 1323 pump results coin was hqx open 181 high 453 more than 2 x times notewe always repump our coin 2019-03-24 17:30:01+00:00 1.0 1231437793 1319 coin to pump is hqx exchange yobitnet target +200 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-24 17:00:10+00:00 1.0 1231437793 1317 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-24 16:55:03+00:00 1.0 1231437793 1316 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-24 16:50:06+00:00 1.0 1231437793 1315 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-24 16:40:03+00:00 1.0 1231437793 1314 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-24 16:30:22+00:00 1.0 1231437793 1313 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-24 16:00:06+00:00 1.0 1231437793 1312 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-24 15:00:05+00:00 1.0 1231437793 1311 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-24 13:00:04+00:00 1.0 1231437793 1310 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-24 11:00:05+00:00 1.0 1231437793 1307 extended results of our last pump coin fc vol 239 btc open 20 high 147 more than 7 x times our trollingmarketing created second massive wave ✅always trade with us ✅ we always repump our coin ✅ hi 2019-03-24 04:46:54+00:00 1.0 1231437793 1305 pump results coin was fc open 20 high 109 more than 5 x times panick seller try to ruin the pump at low profitbut we keep going got great buy order for long time notewe always repump our coin 2019-03-23 17:41:39+00:00 1.0 1231437793 1298 coin to pump is fc exchange yobitnet target +400 market fcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-23 17:00:10+00:00 1.0 1231437793 1296 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-23 16:55:08+00:00 1.0 1231437793 1295 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-23 16:50:03+00:00 1.0 1231437793 1294 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-23 16:40:03+00:00 1.0 1231437793 1293 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-23 16:30:03+00:00 1.0 1231437793 1292 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-23 16:00:04+00:00 1.0 1231437793 1291 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-23 15:00:05+00:00 1.0 1231437793 1290 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-23 12:59:24+00:00 1.0 1231437793 1289 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-23 11:01:21+00:00 1.0 1231437793 1286 pump results coin was dadi open 900 high 3112 more than 3 x times repump count3rd time on your request notewe always repump our coin 2019-03-21 17:28:25+00:00 1.0 1231437793 1281 coin to pump is dadi exchange yobitnet target +200 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-21 17:00:09+00:00 1.0 1231437793 1279 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-21 16:55:03+00:00 1.0 1231437793 1278 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-21 16:50:03+00:00 1.0 1231437793 1277 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-21 16:40:03+00:00 1.0 1231437793 1276 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-21 16:30:03+00:00 1.0 1231437793 1275 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-21 16:00:04+00:00 1.0 1231437793 1274 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-21 15:00:12+00:00 1.0 1231437793 1273 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-21 13:00:09+00:00 1.0 1231437793 1270 pump results coin was ing low 100 high 363 x 3 + more than thice repump count 2nd time for you guys in less than a week time frame notewe always repump our coin 2019-03-20 18:01:04+00:00 1.0 1231437793 1264 coin to pump is ing exchange yobitnet target +300 market ingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-20 17:00:10+00:00 1.0 1231437793 1262 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-20 16:55:03+00:00 1.0 1231437793 1261 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-20 16:50:04+00:00 1.0 1231437793 1260 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-20 16:40:03+00:00 1.0 1231437793 1259 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-20 16:30:06+00:00 1.0 1231437793 1258 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-20 16:00:44+00:00 1.0 1231437793 1257 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-20 15:00:08+00:00 1.0 1231437793 1256 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-20 13:00:04+00:00 1.0 1231437793 1253 pump results coin was ren low 450 high 975 repump count ✨3rd time✨ x 2 + more than twice notewe always repump our coin 2019-03-19 18:32:41+00:00 1.0 1231437793 1247 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-19 17:00:09+00:00 1.0 1231437793 1245 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-19 16:55:04+00:00 1.0 1231437793 1244 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-19 16:50:03+00:00 1.0 1231437793 1243 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-19 16:40:04+00:00 1.0 1231437793 1242 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-19 16:30:06+00:00 1.0 1231437793 1241 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-19 16:00:14+00:00 1.0 1231437793 1240 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-19 15:00:05+00:00 1.0 1231437793 1239 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-19 13:00:06+00:00 1.0 1231437793 1238 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-19 11:00:09+00:00 1.0 1231437793 1235 pump results coin was ing open 130 high 337 x 2 + more than twice notewe always repump our coin 2019-03-16 17:45:20+00:00 1.0 1231437793 1228 coin to pump is ing exchange yobitnet target +300 market ingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-16 17:00:09+00:00 1.0 1231437793 1226 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-16 16:55:03+00:00 1.0 1231437793 1225 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-16 16:50:03+00:00 1.0 1231437793 1224 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-16 16:40:03+00:00 1.0 1231437793 1223 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-16 16:30:06+00:00 1.0 1231437793 1222 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-16 16:00:42+00:00 1.0 1231437793 1221 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-16 15:00:05+00:00 1.0 1231437793 1220 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-16 13:00:04+00:00 1.0 1231437793 1219 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-16 11:02:22+00:00 1.0 1231437793 1218 ℹ coin signal information ℹ date saturday 160319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-16 08:13:04+00:00 1.0 1231437793 1217 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 160319 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-16 06:51:37+00:00 1.0 1231437793 1214 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:45:19+00:00 1.0 1231437793 1213 pump results coin was dadi open 820 high 1230 repump count2 nd time on your request notewe always repump our coin 2019-03-07 17:31:11+00:00 1.0 1231437793 1206 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-07 17:00:27+00:00 1.0 1231437793 1204 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-07 16:55:06+00:00 1.0 1231437793 1203 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-07 16:50:07+00:00 1.0 1231437793 1202 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-07 16:40:07+00:00 1.0 1231437793 1201 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-07 16:30:06+00:00 1.0 1231437793 1200 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-07 16:00:08+00:00 1.0 1231437793 1199 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-07 15:00:03+00:00 1.0 1231437793 1198 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-07 13:00:12+00:00 1.0 1231437793 1197 ℹ coin signal information ℹ date thursday 070319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-07 11:13:05+00:00 1.0 1231437793 1196 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 070319 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-07 10:25:03+00:00 1.0 1231437793 1194 pump results coin was theta low 3263 high 6984 x 2 repump count3rd time notewe always repump our coin 2019-03-06 18:40:38+00:00 1.0 1231437793 1187 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-06 17:00:19+00:00 1.0 1231437793 1185 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-06 16:55:03+00:00 1.0 1231437793 1184 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-06 16:50:03+00:00 1.0 1231437793 1183 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-06 16:40:10+00:00 1.0 1231437793 1182 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-06 16:30:04+00:00 1.0 1231437793 1181 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-06 16:00:04+00:00 1.0 1231437793 1180 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-06 15:00:06+00:00 1.0 1231437793 1179 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-06 13:03:08+00:00 1.0 1231437793 1178 ℹ coin signal information ℹ date wednesday 060319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-06 11:43:33+00:00 1.0 1231437793 1177 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 060319 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-06 10:30:53+00:00 1.0 1231437793 1175 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-03 13:19:29+00:00 1.0 1231437793 1174 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-03 10:01:33+00:00 1.0 1231437793 1172 pump results coin was crpt low 3713 high 6835 welldone guys pump count 2nd time notewe always repump our coin n we r true to our words ✅ 2019-03-01 18:16:57+00:00 1.0 1231437793 1164 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-01 17:00:09+00:00 1.0 1231437793 1163 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-01 16:55:03+00:00 1.0 1231437793 1162 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-01 16:50:03+00:00 1.0 1231437793 1161 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-01 16:40:05+00:00 1.0 1231437793 1160 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-01 16:30:06+00:00 1.0 1231437793 1159 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 16:00:28+00:00 1.0 1231437793 1158 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 15:00:04+00:00 1.0 1231437793 1157 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 13:00:12+00:00 1.0 1231437793 1156 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 10:03:11+00:00 1.0 1231437793 1150 buy coin sys binance ▶️ tradeindexsymbolsysbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-27 17:00:08+00:00 1.0 1231437793 1149 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-27 16:55:04+00:00 1.0 1231437793 1148 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-27 16:50:03+00:00 1.0 1231437793 1147 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-27 16:40:05+00:00 1.0 1231437793 1146 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-27 16:30:04+00:00 1.0 1231437793 1145 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 16:00:10+00:00 1.0 1231437793 1144 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 15:00:05+00:00 1.0 1231437793 1143 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 13:00:12+00:00 1.0 1231437793 1142 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 10:00:21+00:00 1.0 1231437793 1140 pump results coin was storj low 50 high 75 welldone guys pump count 2nd time for you guys notewe always repump our coin 2019-02-25 17:26:22+00:00 1.0 1231437793 1133 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-25 17:00:22+00:00 1.0 1231437793 1131 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-25 16:55:05+00:00 1.0 1231437793 1130 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-25 16:50:04+00:00 1.0 1231437793 1129 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-25 16:40:03+00:00 1.0 1231437793 1128 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-25 16:30:07+00:00 1.0 1231437793 1127 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 16:00:09+00:00 1.0 1231437793 1126 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 15:00:34+00:00 1.0 1231437793 1125 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 13:00:05+00:00 1.0 1231437793 1124 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 11:07:29+00:00 1.0 1231437793 1123 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250219 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-25 10:27:17+00:00 1.0 1231437793 1117 buy coin bqx binance ▶️ tradeindexsymbolbqxbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-24 17:00:28+00:00 1.0 1231437793 1115 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-24 16:55:05+00:00 1.0 1231437793 1114 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-24 16:50:04+00:00 1.0 1231437793 1113 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-24 16:40:04+00:00 1.0 1231437793 1112 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-24 16:30:05+00:00 1.0 1231437793 1111 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 16:00:08+00:00 1.0 1231437793 1110 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 15:00:11+00:00 1.0 1231437793 1109 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 13:00:06+00:00 1.0 1231437793 1108 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 11:00:08+00:00 1.0 1231437793 1106 pump results coin was ukg open 830 high 2749 welldone guys nearly 3 x times repump count 2nd time notewe always repump our coin 2019-02-23 18:04:06+00:00 1.0 1231437793 1102 coin to pump is ukg exchange yobitnet target +500 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-23 17:00:35+00:00 1.0 1231437793 1100 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-23 16:55:11+00:00 1.0 1231437793 1099 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-23 16:50:03+00:00 1.0 1231437793 1098 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-23 16:40:12+00:00 1.0 1231437793 1097 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-23 16:30:05+00:00 1.0 1231437793 1096 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 16:00:21+00:00 1.0 1231437793 1095 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 15:00:42+00:00 1.0 1231437793 1094 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-23 13:00:17+00:00 1.0 1231437793 1093 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-23 10:00:16+00:00 1.0 1231437793 1092 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-23 07:35:26+00:00 1.0 1231437793 1090 pump results coin was storj low 5501 high 9670 welldone guys nearly 2 x times notewe always repump our coin 2019-02-21 17:48:13+00:00 1.0 1231437793 1083 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-21 17:00:22+00:00 1.0 1231437793 1081 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-21 16:55:03+00:00 1.0 1231437793 1080 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-21 16:50:09+00:00 1.0 1231437793 1079 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-21 16:40:06+00:00 1.0 1231437793 1078 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-21 16:30:08+00:00 1.0 1231437793 1077 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-21 16:00:10+00:00 1.0 1231437793 1076 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-21 15:00:08+00:00 1.0 1231437793 1075 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-21 12:01:11+00:00 1.0 1231437793 1074 ℹ coin signal information ℹ date thursday 210219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-21 08:21:30+00:00 1.0 1231437793 1073 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 210219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-21 05:22:59+00:00 1.0 1231437793 1071 pump results coin was crpt open 4702 high 11777 welldone guys 25 x times notewe always repump our coin 2019-02-20 19:12:34+00:00 1.0 1231437793 1064 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-20 17:01:28+00:00 1.0 1231437793 1062 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-20 16:55:03+00:00 1.0 1231437793 1061 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-20 16:50:04+00:00 1.0 1231437793 1060 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-20 16:40:09+00:00 1.0 1231437793 1059 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-20 16:30:05+00:00 1.0 1231437793 1058 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-20 16:00:25+00:00 1.0 1231437793 1057 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-20 15:00:13+00:00 1.0 1231437793 1056 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-20 10:59:31+00:00 1.0 1231437793 1055 ℹ coin signal information ℹ date wednesday 200219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-20 09:58:50+00:00 1.0 1231437793 1054 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200219 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-20 06:14:10+00:00 1.0 1231437793 1052 pump results coin was blz low 1088 high 2911 welldone guys nearly 2 x times pumped twice till now notewe always repump our coin 2019-02-19 17:40:55+00:00 1.0 1231437793 1045 coin to pump is blz exchange yobitnet target +500 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-19 17:00:43+00:00 1.0 1231437793 1043 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-19 16:55:03+00:00 1.0 1231437793 1042 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-19 16:50:10+00:00 1.0 1231437793 1041 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-19 16:40:04+00:00 1.0 1231437793 1040 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-19 16:30:05+00:00 1.0 1231437793 1039 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-19 16:00:18+00:00 1.0 1231437793 1038 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-19 15:00:29+00:00 1.0 1231437793 1037 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-19 13:00:29+00:00 1.0 1231437793 1036 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-19 11:00:11+00:00 1.0 1231437793 1035 ℹ coin signal information ℹ date tuesday 190219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-19 05:57:15+00:00 1.0 1231437793 1033 pump results coin was wtc open 25000 high 70671 welldone guys nearly 3 x times notewe always repump our coin 2019-02-18 17:44:31+00:00 1.0 1231437793 1026 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-18 17:00:22+00:00 1.0 1231437793 1024 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-18 16:55:11+00:00 1.0 1231437793 1023 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-18 16:50:08+00:00 1.0 1231437793 1022 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-18 16:40:03+00:00 1.0 1231437793 1021 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-18 16:30:08+00:00 1.0 1231437793 1020 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-18 16:00:08+00:00 1.0 1231437793 1019 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-18 15:08:58+00:00 1.0 1231437793 1018 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 13:02:01+00:00 1.0 1231437793 1017 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 11:00:06+00:00 1.0 1231437793 1016 ℹ coin signal information ℹ date monday 180219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-18 10:09:49+00:00 1.0 1231437793 1015 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 180219 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-18 07:49:12+00:00 1.0 1231437793 1013 pump results coin was ukg open 1105 high 3198 welldone guys nearly 3 x times great buy orders for long time notewe always repump our coin 2019-02-17 17:38:36+00:00 1.0 1231437793 1006 coin to pump is ukg exchange yobitnet target +500 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-17 17:00:26+00:00 1.0 1231437793 1004 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-17 16:55:04+00:00 1.0 1231437793 1003 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-17 16:50:03+00:00 1.0 1231437793 1002 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-17 16:40:13+00:00 1.0 1231437793 1001 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-17 16:30:14+00:00 1.0 1231437793 1000 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 16:01:58+00:00 1.0 1231437793 999 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 15:00:03+00:00 1.0 1231437793 998 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-17 13:01:30+00:00 1.0 1231437793 997 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-17 09:59:47+00:00 1.0 1231437793 996 ℹ coin signal information ℹ date sunday 170219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-17 09:16:24+00:00 1.0 1231437793 995 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-17 07:57:26+00:00 1.0 1231437793 994 pump results coin was aoa open 180 high 639 welldone guys nearly 4 x times notewe always repump our coin 2019-02-16 17:52:29+00:00 1.0 1231437793 986 coin to pump is aoa exchange yobitnet target +500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-16 17:00:46+00:00 1.0 1231437793 984 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-16 16:55:01+00:00 1.0 1231437793 983 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-16 16:50:14+00:00 1.0 1231437793 982 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-16 16:40:07+00:00 1.0 1231437793 981 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-16 16:30:30+00:00 1.0 1231437793 980 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 16:00:03+00:00 1.0 1231437793 979 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 15:00:10+00:00 1.0 1231437793 978 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-16 14:01:54+00:00 1.0 1231437793 977 ℹ coin signal information ℹ date saturday 160219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-16 08:23:01+00:00 1.0 1231437793 976 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 160219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-16 06:21:41+00:00 1.0 1231437793 973 pump results coin was dadi open 821 high 3876 welldone nearly 5 x times notewe always repump our coin 2019-02-15 17:35:11+00:00 1.0 1231437793 965 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-15 17:01:48+00:00 1.0 1231437793 963 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-15 16:55:02+00:00 1.0 1231437793 962 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-15 16:50:03+00:00 1.0 1231437793 961 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-15 16:40:04+00:00 1.0 1231437793 960 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-15 16:30:45+00:00 1.0 1231437793 959 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 16:00:24+00:00 1.0 1231437793 958 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 15:00:16+00:00 1.0 1231437793 957 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 13:00:07+00:00 1.0 1231437793 956 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 11:00:12+00:00 1.0 1231437793 955 ℹ coin signal information ℹ date friday 150219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-15 05:00:07+00:00 1.0 1231437793 954 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-15 04:10:15+00:00 1.0 1231437793 952 pump results coin was theta low 1750 high 2534 repump count2nd time notewe always repump our coin 2019-02-08 01:33:50+00:00 1.0 1231437793 948 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-07 17:00:58+00:00 1.0 1231437793 946 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-07 16:55:15+00:00 1.0 1231437793 945 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-07 16:50:02+00:00 1.0 1231437793 944 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-07 16:40:12+00:00 1.0 1231437793 943 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-07 16:30:15+00:00 1.0 1231437793 942 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 16:00:05+00:00 1.0 1231437793 941 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 15:00:06+00:00 1.0 1231437793 940 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 070219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-07 14:06:32+00:00 1.0 1231437793 938 pump results coin was tnt low 354 high 806 repump count3rd time notewe always repump our coin 2019-02-06 19:42:01+00:00 1.0 1231437793 934 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-06 19:00:41+00:00 1.0 1231437793 932 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-06 18:55:02+00:00 1.0 1231437793 931 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-06 18:50:02+00:00 1.0 1231437793 930 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-06 18:40:03+00:00 1.0 1231437793 929 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-06 18:30:08+00:00 1.0 1231437793 928 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-06 18:00:04+00:00 1.0 1231437793 927 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-06 17:00:08+00:00 1.0 1231437793 926 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-02-06 15:00:18+00:00 1.0 1231437793 925 ℹ coin signal information ℹ date wednesday 060219 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-06 13:48:54+00:00 1.0 1231437793 924 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 060219 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-06 11:46:57+00:00 1.0 1231437793 922 pump results coin was ren low 519 high 1042 2x times repump count 2nd time presence of chat admin n banning our team members deprived us from high profits notewe always repump our coin 2019-01-26 19:48:45+00:00 1.0 1231437793 918 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-26 19:00:36+00:00 1.0 1231437793 916 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-26 18:55:10+00:00 1.0 1231437793 915 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-26 18:50:02+00:00 1.0 1231437793 914 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-26 18:40:02+00:00 1.0 1231437793 913 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-26 18:31:06+00:00 1.0 1231437793 912 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 18:00:15+00:00 1.0 1231437793 911 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 17:00:10+00:00 1.0 1231437793 910 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-26 15:00:07+00:00 1.0 1231437793 909 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260119 saturday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-26 14:00:10+00:00 1.0 1231437793 907 pump results coin was wtc open 25010 high 75060 3x times repump count 2nd time notewe always repump our coin 2019-01-25 17:37:20+00:00 1.0 1231437793 903 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-25 17:00:49+00:00 1.0 1231437793 901 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-25 16:55:08+00:00 1.0 1231437793 900 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-25 16:50:36+00:00 1.0 1231437793 899 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-25 16:40:06+00:00 1.0 1231437793 898 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-25 16:30:12+00:00 1.0 1231437793 897 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 16:00:18+00:00 1.0 1231437793 896 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 15:00:09+00:00 1.0 1231437793 895 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-25 13:00:15+00:00 1.0 1231437793 894 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-25 11:00:45+00:00 1.0 1231437793 892 pump results coin was tnt low 400 high 670 analysis heavy buyingselling occured duration pumped two times by our trollingefforts repump count2nd time notewe always repump our coin 2019-01-23 19:33:37+00:00 1.0 1231437793 888 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-23 19:00:29+00:00 1.0 1231437793 886 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-23 18:55:52+00:00 1.0 1231437793 885 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-23 18:50:01+00:00 1.0 1231437793 884 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-23 18:40:07+00:00 1.0 1231437793 883 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-23 18:30:10+00:00 1.0 1231437793 882 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 18:00:09+00:00 1.0 1231437793 881 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 17:00:07+00:00 1.0 1231437793 880 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-23 15:00:17+00:00 1.0 1231437793 879 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230119 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-23 14:00:34+00:00 1.0 1231437793 877 pump results coin was via open 8900 high 12829 heavy buyingselling occured beyond expectations notewe always repump our coin 2019-01-20 17:43:06+00:00 1.0 1231437793 873 the coin to pump is via exchange yobitnet target +200 market viabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-20 17:00:36+00:00 1.0 1231437793 871 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-20 16:55:04+00:00 1.0 1231437793 870 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-20 16:50:07+00:00 1.0 1231437793 869 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-20 16:40:17+00:00 1.0 1231437793 868 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-20 16:31:03+00:00 1.0 1231437793 867 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 16:00:03+00:00 1.0 1231437793 866 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 15:02:30+00:00 1.0 1231437793 865 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-20 13:08:21+00:00 1.0 1231437793 864 ℹ coin signal information ℹ date sunday 200119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-20 10:00:26+00:00 1.0 1231437793 863 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200119 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-20 06:00:02+00:00 1.0 1231437793 859 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-19 16:45:02+00:00 1.0 1231437793 858 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-19 16:32:26+00:00 1.0 1231437793 857 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-19 16:01:59+00:00 1.0 1231437793 856 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-19 15:00:06+00:00 1.0 1231437793 855 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-19 13:00:24+00:00 1.0 1231437793 854 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 190119 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-19 10:01:29+00:00 1.0 1231437793 852 pump results coin was ren open 505 high 1019 x 2 notewe always repump our coin 2019-01-17 18:02:20+00:00 1.0 1231437793 848 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-17 17:00:55+00:00 1.0 1231437793 846 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-17 16:55:05+00:00 1.0 1231437793 845 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-17 16:50:03+00:00 1.0 1231437793 844 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-17 16:40:06+00:00 1.0 1231437793 843 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-17 16:30:24+00:00 1.0 1231437793 842 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 16:00:23+00:00 1.0 1231437793 841 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 15:00:24+00:00 1.0 1231437793 840 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-17 12:54:07+00:00 1.0 1231437793 839 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-17 06:35:06+00:00 1.0 1231437793 837 pump results coin was mth low 401 high 1012 analysis great buy orders for long time duration pumped two times by our trollingefforts repump count3rd time notewe always repump our coin 2019-01-14 18:01:38+00:00 1.0 1231437793 833 the coin to pump is mth exchange yobitnet target +200 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-14 17:00:41+00:00 1.0 1231437793 831 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-14 16:55:15+00:00 1.0 1231437793 830 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-14 16:50:25+00:00 1.0 1231437793 829 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-14 16:40:07+00:00 1.0 1231437793 828 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-14 16:30:12+00:00 1.0 1231437793 827 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 16:00:06+00:00 1.0 1231437793 826 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 15:00:06+00:00 1.0 1231437793 825 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-14 13:00:31+00:00 1.0 1231437793 824 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 140119 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-14 10:34:49+00:00 1.0 1231437793 822 pump results coin was theta low 1118 high 2150 we did best even in worst market notewe always repump our coin 2019-01-13 18:08:04+00:00 1.0 1231437793 818 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-13 17:00:51+00:00 1.0 1231437793 816 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-13 16:55:06+00:00 1.0 1231437793 815 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-13 16:50:04+00:00 1.0 1231437793 814 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-13 16:40:02+00:00 1.0 1231437793 813 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-13 16:30:04+00:00 1.0 1231437793 812 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-13 16:00:07+00:00 1.0 1231437793 811 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-13 15:00:14+00:00 1.0 1231437793 810 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-13 13:00:31+00:00 1.0 1231437793 809 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 130119 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-13 09:11:01+00:00 1.0 1231437793 807 pump results coin was ok low 510 high 775 great buy order near highest point for long time for safe exitfor everyone notewe always repump our coin 2019-01-12 17:26:31+00:00 1.0 1231437793 802 the coin to pump is ok exchange yobitnet target +300 market okbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-12 17:00:44+00:00 1.0 1231437793 800 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-12 16:55:07+00:00 1.0 1231437793 799 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-12 16:50:04+00:00 1.0 1231437793 798 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-12 16:40:02+00:00 1.0 1231437793 797 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-12 16:30:07+00:00 1.0 1231437793 796 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-12 16:00:14+00:00 1.0 1231437793 795 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-12 15:00:40+00:00 1.0 1231437793 794 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-12 13:00:09+00:00 1.0 1231437793 793 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120119 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-12 09:00:56+00:00 1.0 1231437793 785 pump analysis coin kmd as we try to pump on cryptopia rather than yobit so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2019-01-05 17:38:15+00:00 1.0 1231437793 780 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on wwwcryptopiaconz 2019-01-05 16:55:02+00:00 1.0 1231437793 778 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-01-05 16:40:47+00:00 1.0 1231437793 777 ℹ️ 30 minutes ℹ️ start getting logged in wwwcryptopiaconz now 2019-01-05 16:30:04+00:00 1.0 1231437793 776 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 16:00:13+00:00 1.0 1231437793 775 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 15:00:05+00:00 1.0 1231437793 774 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 13:00:05+00:00 1.0 1231437793 773 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 10:00:06+00:00 1.0 1231437793 772 ℹ coin signal information ℹ date saturday 05012019 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2019-01-05 08:33:28+00:00 1.0 1231437793 771 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 05012019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2019-01-05 06:31:01+00:00 1.0 1231437793 768 pump results coin was wtc low 21021 high 40001 notewe always repump our coin 2019-01-04 07:25:48+00:00 1.0 1231437793 764 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-03 17:00:24+00:00 1.0 1231437793 762 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-03 16:55:21+00:00 1.0 1231437793 761 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-03 16:50:09+00:00 1.0 1231437793 760 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-03 16:40:03+00:00 1.0 1231437793 759 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-03 16:30:02+00:00 1.0 1231437793 758 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 16:00:06+00:00 1.0 1231437793 757 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 15:00:09+00:00 1.0 1231437793 756 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-03 13:00:01+00:00 1.0 1231437793 755 ℹ coin signal information ℹ date thursday 030119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-03 11:00:14+00:00 1.0 1231437793 754 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 030119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-03 10:32:11+00:00 1.0 1231437793 752 pump results coin was tnt start 310 reached 510 notewe always repump our coin 2019-01-02 05:54:53+00:00 1.0 1231437793 747 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-01 17:00:32+00:00 1.0 1231437793 745 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-01 16:55:01+00:00 1.0 1231437793 744 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-01 16:50:02+00:00 1.0 1231437793 743 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-01 16:40:01+00:00 1.0 1231437793 742 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-01 16:30:42+00:00 1.0 1231437793 741 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 16:00:06+00:00 1.0 1231437793 740 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 15:00:13+00:00 1.0 1231437793 739 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-01 13:00:07+00:00 1.0 1231437793 738 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-01 10:00:06+00:00 1.0 1231437793 737 ℹ coin signal information ℹ date tuesday 010119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-01 08:00:09+00:00 1.0 1231437793 736 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 010119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-01 05:56:57+00:00 1.0 1231437793 734 pump results coin was bnt low 00001400 reached 000017849 heavy volume created 11 btc heavy buying selling occured in our coinwhich is unexpected n unpredictible preventing it 2018-12-29 18:36:53+00:00 1.0 1231437793 730 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-29 17:01:13+00:00 1.0 1231437793 727 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-29 16:55:10+00:00 1.0 1231437793 726 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-29 16:50:05+00:00 1.0 1231437793 725 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-29 16:40:30+00:00 1.0 1231437793 724 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-29 16:30:18+00:00 1.0 1231437793 723 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 16:00:13+00:00 1.0 1231437793 722 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 15:00:05+00:00 1.0 1231437793 721 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-29 13:00:03+00:00 1.0 1231437793 720 ℹ coin signal information ℹ date saturday 29122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-29 10:29:28+00:00 1.0 1231437793 719 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29122018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-29 09:04:17+00:00 1.0 1231437793 717 pump results x2 coin was qkc open 000000920 reached 000001886 note we will always pump our coins againso always trade with us for max profit 2018-12-28 17:15:47+00:00 1.0 1231437793 712 the coin to pump is qkc exchange yobitnet target +500 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-28 16:00:34+00:00 1.0 1231437793 710 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-28 15:55:01+00:00 1.0 1231437793 709 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-28 15:50:03+00:00 1.0 1231437793 708 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-28 15:40:20+00:00 1.0 1231437793 707 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-28 15:30:02+00:00 1.0 1231437793 706 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 15:00:15+00:00 1.0 1231437793 705 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 14:30:07+00:00 1.0 1231437793 704 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 13:00:01+00:00 1.0 1231437793 703 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 10:00:11+00:00 1.0 1231437793 702 ℹ coin signal information ℹ date friday 28122018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all ofj us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-28 09:15:33+00:00 1.0 1231437793 700 pump results coin was dlt 24 hr low 000000881 reached 000001520 note we will always pump our coins againso always trade with us for max profit 2018-12-26 18:03:31+00:00 1.0 1231437793 695 the coin to pump is dlt exchange yobitnet target +500 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-26 17:01:09+00:00 1.0 1231437793 693 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-26 16:55:04+00:00 1.0 1231437793 692 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-26 16:50:06+00:00 1.0 1231437793 691 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-26 16:40:32+00:00 1.0 1231437793 690 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-26 16:30:19+00:00 1.0 1231437793 689 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 16:00:10+00:00 1.0 1231437793 688 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 15:00:03+00:00 1.0 1231437793 687 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-26 13:00:10+00:00 1.0 1231437793 686 ℹ coin signal information ℹ date wednesday 26122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-26 11:00:24+00:00 1.0 1231437793 685 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-26 09:00:41+00:00 1.0 1231437793 677 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-24 19:00:38+00:00 1.0 1231437793 675 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-24 18:55:15+00:00 1.0 1231437793 674 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-24 18:50:18+00:00 1.0 1231437793 673 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-24 18:40:03+00:00 1.0 1231437793 672 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-24 18:30:02+00:00 1.0 1231437793 671 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 18:00:06+00:00 1.0 1231437793 670 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 17:00:05+00:00 1.0 1231437793 669 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 15:00:18+00:00 1.0 1231437793 668 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 13:00:05+00:00 1.0 1231437793 667 ℹ coin signal information ℹ date monday 24122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-24 10:04:05+00:00 1.0 1231437793 666 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24122018 monday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-24 09:32:41+00:00 1.0 1231437793 664 pump results coin was brd started 000005299 reached 000005695 vol 16 btc buying still going on 2018-12-22 17:58:39+00:00 1.0 1231437793 659 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2018-12-22 16:55:01+00:00 1.0 1231437793 658 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2018-12-22 16:50:09+00:00 1.0 1231437793 657 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-12-22 16:40:26+00:00 1.0 1231437793 656 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-12-22 16:30:18+00:00 1.0 1231437793 655 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 16:00:01+00:00 1.0 1231437793 654 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 15:00:01+00:00 1.0 1231437793 653 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 11:00:07+00:00 1.0 1231437793 646 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-20 17:00:35+00:00 1.0 1231437793 644 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-20 16:55:03+00:00 1.0 1231437793 643 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-20 16:50:30+00:00 1.0 1231437793 642 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-20 16:40:25+00:00 1.0 1231437793 641 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-20 16:30:20+00:00 1.0 1231437793 640 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 16:00:40+00:00 1.0 1231437793 639 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 15:00:44+00:00 1.0 1231437793 638 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-20 11:00:34+00:00 1.0 1231437793 637 ℹ coin signal information ℹ date thursday 20122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-20 07:00:05+00:00 1.0 1231437793 636 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for ato least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces byi setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 20122018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-20 05:42:06+00:00 1.0 1231437793 634 pump results almost x 2 coin was loom started 000001125 reached 000002153 note we will always pump our coins againso always trade with us for max profit 2018-12-18 18:36:46+00:00 1.0 1231437793 630 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-18 18:00:39+00:00 1.0 1231437793 628 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-18 17:55:05+00:00 1.0 1231437793 627 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-18 17:50:03+00:00 1.0 1231437793 626 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-18 17:40:06+00:00 1.0 1231437793 625 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-18 17:30:03+00:00 1.0 1231437793 624 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 17:00:03+00:00 1.0 1231437793 623 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 15:00:08+00:00 1.0 1231437793 622 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 14:00:40+00:00 1.0 1231437793 621 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 12:53:02+00:00 1.0 1231437793 620 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 11:00:08+00:00 1.0 1231437793 619 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18122018 tuesday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-18 10:33:44+00:00 1.0 1231437793 617 pump results coin was req started 000000600 reached 000000920 note we will always pump our coins againso always trade with us for max profit 2018-12-16 17:57:30+00:00 1.0 1231437793 613 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-16 17:00:32+00:00 1.0 1231437793 611 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-16 16:55:02+00:00 1.0 1231437793 610 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-16 16:50:08+00:00 1.0 1231437793 609 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-16 16:40:06+00:00 1.0 1231437793 608 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-16 16:30:15+00:00 1.0 1231437793 607 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 16:00:20+00:00 1.0 1231437793 606 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 15:00:12+00:00 1.0 1231437793 605 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-16 13:00:03+00:00 1.0 1231437793 604 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnetk time 5 pm gmt read the instructions above and be ready 2018-12-16 10:54:07+00:00 1.0 1231437793 603 ℹ coin signal information ℹ date sunday16122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-16 10:03:32+00:00 1.0 1231437793 594 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:37+00:00 1.0 1231437793 592 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-11-09 16:55:08+00:00 1.0 1231437793 591 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:05+00:00 1.0 1231437793 590 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:08+00:00 1.0 1231437793 589 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:14+00:00 1.0 1231437793 588 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:16+00:00 1.0 1231437793 587 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:30:15+00:00 1.0 1231437793 586 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:50+00:00 1.0 1231437793 585 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 13:01:47+00:00 1.0 1231437793 584 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 10:00:30+00:00 1.0 1231437793 583 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 08:00:47+00:00 1.0 1231437793 582 ℹ coin signal information ℹ date friday 09112018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-11-09 07:45:16+00:00 1.0 1231437793 581 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09112018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-11-09 06:21:04+00:00 1.0 1231437793 580 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 091118 day friday time 5 pm gmt 2018-11-09 06:14:39+00:00 1.0 1231437793 574 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-27 17:01:16+00:00 1.0 1231437793 573 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-27 16:55:14+00:00 1.0 1231437793 572 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-27 16:50:18+00:00 1.0 1231437793 571 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-27 16:40:15+00:00 1.0 1231437793 570 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-27 16:30:27+00:00 1.0 1231437793 569 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 16:00:23+00:00 1.0 1231437793 568 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:30:14+00:00 1.0 1231437793 567 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:00:27+00:00 1.0 1231437793 566 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 13:00:21+00:00 1.0 1231437793 565 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 10:00:31+00:00 1.0 1231437793 564 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 08:04:18+00:00 1.0 1231437793 563 ℹ coin signal information ℹ date saturday 27102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-27 04:04:20+00:00 1.0 1231437793 562 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-27 03:30:51+00:00 1.0 1231437793 560 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 271018 day saturday time 5 pm gmt 2018-10-26 16:54:45+00:00 1.0 1231437793 559 pump analysis coin ufr coin rose to 50 approximately from low level our team members banned by yobit chat admin could not rose furtherdue to this ban n account blocked by yobit chat admin as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate i see you all at the next signal 2018-10-19 17:58:22+00:00 1.0 1231437793 552 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:39+00:00 1.0 1231437793 551 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:05+00:00 1.0 1231437793 550 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-19 16:50:07+00:00 1.0 1231437793 549 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-19 16:40:03+00:00 1.0 1231437793 548 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-19 16:30:03+00:00 1.0 1231437793 547 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 16:00:36+00:00 1.0 1231437793 546 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:30:05+00:00 1.0 1231437793 545 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:00:16+00:00 1.0 1231437793 544 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 13:00:27+00:00 1.0 1231437793 543 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 10:00:20+00:00 1.0 1231437793 542 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:25+00:00 1.0 1231437793 541 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-19 05:31:39+00:00 1.0 1231437793 540 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 191018 day friday time 5 pm gmt 2018-10-19 05:09:39+00:00 1.0 1231437793 539 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:34+00:00 1.0 1231437793 534 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:16+00:00 1.0 1231437793 533 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-18 16:55:05+00:00 1.0 1231437793 532 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-18 16:50:05+00:00 1.0 1231437793 531 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-18 16:40:03+00:00 1.0 1231437793 530 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-18 16:31:56+00:00 1.0 1231437793 529 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 16:02:04+00:00 1.0 1231437793 528 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:30:04+00:00 1.0 1231437793 527 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:00:17+00:00 1.0 1231437793 526 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 13:01:28+00:00 1.0 1231437793 525 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 10:01:01+00:00 1.0 1231437793 524 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 08:00:25+00:00 1.0 1231437793 523 ℹ coin signal information ℹ date thursday18102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-18 03:34:37+00:00 1.0 1231437793 522 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18102018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-18 01:34:27+00:00 1.0 1231437793 521 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:02+00:00 1.0 1231437793 520 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:21+00:00 1.0 1231437793 514 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:08+00:00 1.0 1231437793 512 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:03+00:00 1.0 1231437793 511 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-13 16:50:02+00:00 1.0 1231437793 510 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:03+00:00 1.0 1231437793 509 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-13 16:30:04+00:00 1.0 1231437793 508 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:23+00:00 1.0 1231437793 507 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:30:06+00:00 1.0 1231437793 506 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:15+00:00 1.0 1231437793 505 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 13:00:06+00:00 1.0 1231437793 504 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 10:01:36+00:00 1.0 1231437793 503 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 09:02:06+00:00 1.0 1231437793 502 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 06:11:19+00:00 1.0 1231437793 501 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:39+00:00 1.0 1231437793 500 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:43+00:00 1.0 1231437793 495 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:20+00:00 1.0 1231437793 494 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:19+00:00 1.0 1231437793 493 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:13+00:00 1.0 1231437793 492 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:07+00:00 1.0 1231437793 491 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:14+00:00 1.0 1231437793 490 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:20+00:00 1.0 1231437793 489 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:12+00:00 1.0 1231437793 488 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:02+00:00 1.0 1231437793 487 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:03+00:00 1.0 1231437793 486 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:21+00:00 1.0 1231437793 485 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:03+00:00 1.0 1231437793 484 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:54:54+00:00 1.0 1231437793 483 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:23+00:00 1.0 1231437793 482 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:41+00:00 1.0 1231437793 481 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:39+00:00 1.0 1231437793 476 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:02+00:00 1.0 1231437793 475 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:02+00:00 1.0 1231437793 474 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:02+00:00 1.0 1231437793 473 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:04+00:00 1.0 1231437793 472 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:20+00:00 1.0 1231437793 471 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:34+00:00 1.0 1231437793 470 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:15+00:00 1.0 1231437793 469 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:05+00:00 1.0 1231437793 468 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:05+00:00 1.0 1231437793 467 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:07+00:00 1.0 1231437793 466 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:15+00:00 1.0 1231437793 464 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:20+00:00 1.0 1231437793 463 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:25:53+00:00 1.0 1231437793 462 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:08+00:00 1.0 1231437793 461 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:56:59+00:00 1.0 1231437793 457 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:39+00:00 1.0 1231437793 455 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:04+00:00 1.0 1231437793 454 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:02+00:00 1.0 1231437793 453 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:02+00:00 1.0 1231437793 452 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:20+00:00 1.0 1231437793 451 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:03+00:00 1.0 1231437793 450 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:11+00:00 1.0 1231437793 449 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:07+00:00 1.0 1231437793 448 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:06+00:00 1.0 1231437793 447 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:05+00:00 1.0 1231437793 446 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:02+00:00 1.0 1231437793 445 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:22:49+00:00 1.0 1231437793 444 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:20:59+00:00 1.0 1231437793 443 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:43+00:00 1.0 1231437793 437 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:11+00:00 1.0 1231437793 435 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:06+00:00 1.0 1231437793 434 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:07+00:00 1.0 1231437793 433 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:02+00:00 1.0 1231437793 432 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:04+00:00 1.0 1231437793 431 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:07+00:00 1.0 1231437793 430 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:12+00:00 1.0 1231437793 429 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:18+00:00 1.0 1231437793 428 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:09+00:00 1.0 1231437793 427 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:11+00:00 1.0 1231437793 426 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:14+00:00 1.0 1231437793 425 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:05+00:00 1.0 1231437793 424 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:02+00:00 1.0 1231437793 423 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:47+00:00 1.0 1231437793 419 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:21+00:00 1.0 1231437793 417 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:06+00:00 1.0 1231437793 416 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:02+00:00 1.0 1231437793 415 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:02+00:00 1.0 1231437793 414 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:04+00:00 1.0 1231437793 413 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:08+00:00 1.0 1231437793 412 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:11+00:00 1.0 1231437793 411 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:17+00:00 1.0 1231437793 410 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:22+00:00 1.0 1231437793 409 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:17+00:00 1.0 1231437793 408 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:08+00:00 1.0 1231437793 407 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:09+00:00 1.0 1231437793 406 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:46+00:00 1.0 1231437793 405 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:01:52+00:00 1.0 1231437793 404 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:20+00:00 1.0 1231437793 398 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 16:59:57+00:00 1.0 1231437793 397 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:02+00:00 1.0 1231437793 396 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:02+00:00 1.0 1231437793 395 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:04+00:00 1.0 1231437793 394 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:03+00:00 1.0 1231437793 393 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:40+00:00 1.0 1231437793 392 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:07+00:00 1.0 1231437793 391 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:11+00:00 1.0 1231437793 390 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:05+00:00 1.0 1231437793 389 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:10+00:00 1.0 1231437793 388 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:06+00:00 1.0 1231437793 387 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:02+00:00 1.0 1231437793 386 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:08+00:00 1.0 1231437793 385 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:06+00:00 1.0 1231437793 384 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:52:57+00:00 1.0 1231437793 378 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:23+00:00 1.0 1231437793 376 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:06+00:00 1.0 1231437793 375 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:02+00:00 1.0 1231437793 374 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:04+00:00 1.0 1231437793 373 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:38+00:00 1.0 1231437793 372 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:11+00:00 1.0 1231437793 371 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:16+00:00 1.0 1231437793 370 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:28+00:00 1.0 1231437793 369 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:04+00:00 1.0 1231437793 368 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:13+00:00 1.0 1231437793 367 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:05+00:00 1.0 1231437793 366 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:04+00:00 1.0 1231437793 365 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:18+00:00 1.0 1231437793 364 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:28+00:00 1.0 1231437793 363 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:11+00:00 1.0 1231437793 358 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:16+00:00 1.0 1231437793 356 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:02+00:00 1.0 1231437793 354 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:02+00:00 1.0 1231437793 353 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:08+00:00 1.0 1231437793 352 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:11+00:00 1.0 1231437793 351 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:32+00:00 1.0 1231437793 350 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:38+00:00 1.0 1231437793 349 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:11+00:00 1.0 1231437793 348 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:18+00:00 1.0 1231437793 347 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:07+00:00 1.0 1231437793 346 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 19092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:14+00:00 1.0 1231437793 344 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:37+00:00 1.0 1231437793 343 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:30+00:00 1.0 1231437793 336 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:20+00:00 1.0 1231437793 334 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:03+00:00 1.0 1231437793 333 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:03+00:00 1.0 1231437793 332 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:26+00:00 1.0 1231437793 331 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:29+00:00 1.0 1231437793 330 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:17+00:00 1.0 1231437793 329 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:08+00:00 1.0 1231437793 328 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:26+00:00 1.0 1231437793 327 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:03+00:00 1.0 1231437793 326 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:04+00:00 1.0 1231437793 325 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:01+00:00 1.0 1231437793 324 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:19+00:00 1.0 1231437793 322 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:10:48+00:00 1.0 1231437793 321 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:37:55+00:00 1.0 1231437793 313 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:06+00:00 1.0 1231437793 312 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:02+00:00 1.0 1231437793 311 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:07+00:00 1.0 1231437793 310 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:07+00:00 1.0 1231437793 309 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:17+00:00 1.0 1231437793 308 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:14+00:00 1.0 1231437793 307 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:25+00:00 1.0 1231437793 306 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:04+00:00 1.0 1231437793 305 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:27+00:00 1.0 1231437793 304 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:20+00:00 1.0 1231437793 303 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:17+00:00 1.0 1231437793 302 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:07+00:00 1.0 1231437793 301 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:18+00:00 1.0 1231437793 300 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:28+00:00 1.0 1231437793 291 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:22+00:00 1.0 1231437793 290 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:01+00:00 1.0 1231437793 289 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:01+00:00 1.0 1231437793 288 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:01+00:00 1.0 1231437793 287 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:16+00:00 1.0 1231437793 286 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:07+00:00 1.0 1231437793 285 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:19+00:00 1.0 1231437793 284 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:33+00:00 1.0 1231437793 283 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:07+00:00 1.0 1231437793 282 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:02+00:00 1.0 1231437793 281 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:07+00:00 1.0 1231437793 280 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:14+00:00 1.0 1231437793 278 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:04+00:00 1.0 1231437793 277 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:07+00:00 1.0 1231437793 273 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:17+00:00 1.0 1231437793 272 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:10+00:00 1.0 1231437793 271 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:05+00:00 1.0 1231437793 270 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:02+00:00 1.0 1231437793 269 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:03+00:00 1.0 1231437793 268 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:05+00:00 1.0 1231437793 267 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:07+00:00 1.0 1231437793 266 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:17+00:00 1.0 1231437793 265 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:13+00:00 1.0 1231437793 264 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:10+00:00 1.0 1231437793 263 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:02+00:00 1.0 1231437793 261 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:07:48+00:00 1.0 1231437793 260 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:17+00:00 1.0 1231437793 254 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:23+00:00 1.0 1231437793 253 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:04+00:00 1.0 1231437793 252 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:02+00:00 1.0 1231437793 251 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:02+00:00 1.0 1231437793 250 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:14+00:00 1.0 1231437793 249 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:18+00:00 1.0 1231437793 248 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:11+00:00 1.0 1231437793 246 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:08+00:00 1.0 1231437793 245 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:06+00:00 1.0 1231437793 244 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:06+00:00 1.0 1231437793 243 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:04+00:00 1.0 1231437793 242 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:11+00:00 1.0 1231437793 240 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:36+00:00 1.0 1231437793 239 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:32+00:00 1.0 1231437793 233 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:10+00:00 1.0 1231437793 232 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:03+00:00 1.0 1231437793 231 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:04+00:00 1.0 1231437793 230 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:04+00:00 1.0 1231437793 229 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:04+00:00 1.0 1231437793 228 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:13+00:00 1.0 1231437793 227 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:08+00:00 1.0 1231437793 226 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:38+00:00 1.0 1231437793 225 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:14+00:00 1.0 1231437793 224 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:03+00:00 1.0 1231437793 223 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:30+00:00 1.0 1231437793 222 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:38+00:00 1.0 1231437793 220 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:31+00:00 1.0 1231437793 219 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:38+00:00 1.0 1231437793 212 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:11+00:00 1.0 1231437793 211 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:02+00:00 1.0 1231437793 210 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:03+00:00 1.0 1231437793 209 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:02+00:00 1.0 1231437793 208 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:10+00:00 1.0 1231437793 207 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:14+00:00 1.0 1231437793 206 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:28+00:00 1.0 1231437793 205 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:12+00:00 1.0 1231437793 204 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:20+00:00 1.0 1231437793 202 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:05+00:00 1.0 1231437793 201 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:06:57+00:00 1.0 1231437793 200 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:35:54+00:00 1.0 1231437793 192 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:19+00:00 1.0 1231437793 191 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:08+00:00 1.0 1231437793 190 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:05+00:00 1.0 1231437793 189 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:05+00:00 1.0 1231437793 188 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:06+00:00 1.0 1231437793 187 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:09+00:00 1.0 1231437793 186 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:04+00:00 1.0 1231437793 185 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:09+00:00 1.0 1231437793 184 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:09+00:00 1.0 1231437793 183 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:11+00:00 1.0 1231437793 182 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:02+00:00 1.0 1231437793 181 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:00+00:00 1.0 1231437793 179 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:41:59+00:00 1.0 1231437793 177 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:02+00:00 1.0 1231437793 176 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:11+00:00 1.0 1231437793 175 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:02+00:00 1.0 1231437793 174 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:12+00:00 1.0 1231437793 173 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:12+00:00 1.0 1231437793 172 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:37+00:00 1.0 1231437793 171 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:08+00:00 1.0 1231437793 170 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:05+00:00 1.0 1231437793 169 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:33:53+00:00 1.0 1231437793 168 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:42+00:00 1.0 1231437793 166 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:33+00:00 1.0 1231437793 158 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:08+00:00 1.0 1231437793 157 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:02+00:00 1.0 1231437793 156 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:05+00:00 1.0 1231437793 155 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:01+00:00 1.0 1231437793 154 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:17+00:00 1.0 1231437793 153 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:11+00:00 1.0 1231437793 152 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:08+00:00 1.0 1231437793 151 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:12+00:00 1.0 1231437793 150 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:12+00:00 1.0 1231437793 149 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:03+00:00 1.0 1231437793 148 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:02+00:00 1.0 1231437793 147 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:08+00:00 1.0 1231437793 145 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:06+00:00 1.0 1231437793 138 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:14+00:00 1.0 1231437793 137 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:02+00:00 1.0 1231437793 136 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:10+00:00 1.0 1231437793 135 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:19+00:00 1.0 1231437793 134 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:18+00:00 1.0 1231437793 133 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:26+00:00 1.0 1231437793 132 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:14+00:00 1.0 1231437793 131 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:05+00:00 1.0 1231437793 130 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:02+00:00 1.0 1231437793 129 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:02+00:00 1.0 1231437793 128 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:06+00:00 1.0 1231437793 127 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:11+00:00 1.0 1231437793 125 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:10+00:00 1.0 1231437793 119 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:13+00:00 1.0 1231437793 118 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:03+00:00 1.0 1231437793 117 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:02+00:00 1.0 1231437793 116 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:04+00:00 1.0 1231437793 115 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:02+00:00 1.0 1231437793 114 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:00:50+00:00 1.0 1231437793 113 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:05+00:00 1.0 1231437793 112 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:06+00:00 1.0 1231437793 111 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:06+00:00 1.0 1231437793 110 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:02+00:00 1.0 1231437793 109 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:02+00:00 1.0 1231437793 108 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:21+00:00 1.0 1231437793 106 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:06:53+00:00 1.0 1231437793 98 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:00:41+00:00 1.0 1231437793 97 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:03+00:00 1.0 1231437793 96 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:03+00:00 1.0 1231437793 95 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:06+00:00 1.0 1231437793 94 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:05+00:00 1.0 1231437793 93 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:26+00:00 1.0 1231437793 92 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:00:50+00:00 1.0 1231437793 91 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:05+00:00 1.0 1231437793 90 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:13+00:00 1.0 1231437793 89 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:04+00:00 1.0 1231437793 88 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:04+00:00 1.0 1231437793 87 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:04+00:00 1.0 1231437793 85 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:33+00:00 1.0 1231437793 84 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:18+00:00 1.0 1231437793 78 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:11+00:00 1.0 1231437793 75 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:05+00:00 1.0 1231437793 74 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:02+00:00 1.0 1231437793 73 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:09+00:00 1.0 1231437793 72 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:09+00:00 1.0 1231437793 71 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:07+00:00 1.0 1231437793 70 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:19+00:00 1.0 1231437793 69 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:02+00:00 1.0 1231437793 68 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:03+00:00 1.0 1231437793 67 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:08+00:00 1.0 1231437793 66 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:02+00:00 1.0 1231437793 65 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:18+00:00 1.0 1231437793 63 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:11+00:00 1.0 1231437793 54 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:30+00:00 1.0 1231437793 52 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:01+00:00 1.0 1231437793 51 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:02+00:00 1.0 1231437793 50 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:01+00:00 1.0 1231437793 49 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:05+00:00 1.0 1231437793 48 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:23+00:00 1.0 1231437793 47 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:44+00:00 1.0 1231437793 46 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:05+00:00 1.0 1231437793 45 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:04+00:00 1.0 1231437793 44 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:13+00:00 1.0 1231437793 43 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:05+00:00 1.0 1231437793 42 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:05+00:00 1.0 1231437793 40 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:21+00:00 1.0 1388333162 3003 3 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-16 02:04:14+00:00 1.0 1388333162 3002 big pump event guys our team has decided to organise a win win opportunity where you can all profit date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event 2019-11-13 21:46:26+00:00 1.0 1388333162 2998 big pump event guys our team has decided to organise a win win opportunity where you can all profit date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event 2019-11-12 12:00:26+00:00 1.0 1388333162 2970 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-15 19:54:24+00:00 1.0 1388333162 2969 10 minutes left login to binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast 2019-10-15 19:49:40+00:00 1.0 1388333162 2968 those who wants to make some profit be ready by your computer only 20 minutes left the coin name will be in text 2019-10-15 19:40:48+00:00 1.0 1388333162 2967 1 hour left before the pumpmake sure you help promote the coin during the pump 2019-10-15 19:06:40+00:00 1.0 1388333162 2966 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-15 13:03:14+00:00 1.0 1388333162 2958 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-12 16:01:20+00:00 1.0 1388333162 2956 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-11 21:38:43+00:00 1.0 1388333162 2714 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-04-17 18:31:00+00:00 1.0 1388333162 2711 5 minutes until the pump pairing btc expected gain 80 200 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-04-17 18:25:00+00:00 1.0 1388333162 2710 10 minutes until the next massive pump 2019-04-17 18:20:00+00:00 1.0 1388333162 2709 15 minutes until the next massive pump 2019-04-17 18:15:00+00:00 1.0 1388333162 2708 30 minutes until the next massive pump make sure funds are ready 2019-04-17 18:00:00+00:00 1.0 1388333162 2707 45 minutes until the next massive pump make sure funds are ready 2019-04-17 17:45:00+00:00 1.0 1388333162 2706 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-04-17 17:30:00+00:00 1.0 1388333162 2705 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-04-17 16:30:00+00:00 1.0 1388333162 2704 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-17 15:30:00+00:00 1.0 1388333162 2703 4 hours until pump time time 1830 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-17 14:30:00+00:00 1.0 1388333162 2702 6 hours until camps next big pump announcement date wednesday 17th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-17 12:30:00+00:00 1.0 1388333162 2701 12 hours until camps next big pump announcement date wednesday 17th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-17 06:30:00+00:00 1.0 1388333162 2700 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-16 19:58:19+00:00 1.0 1388333162 2699 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-16 19:58:16+00:00 1.0 1388333162 2698 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-16 19:58:14+00:00 1.0 1388333162 2696 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-15 14:14:47+00:00 1.0 1388333162 2693 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-12 18:25:31+00:00 1.0 1388333162 2692 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-12 18:23:35+00:00 1.0 1388333162 2691 camps next pump announcement date monday 16th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-11 16:24:07+00:00 1.0 1388333162 2685 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-04-08 18:31:00+00:00 1.0 1388333162 2682 5 minutes until the pump pairing btc expected gain 80 200 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-04-08 18:25:00+00:00 1.0 1388333162 2681 10 minutes until the next massive pump 2019-04-08 18:20:00+00:00 1.0 1388333162 2680 15 minutes until the next massive pump 2019-04-08 18:15:00+00:00 1.0 1388333162 2679 30 minutes until the next massive pump make sure funds are ready 2019-04-08 18:00:00+00:00 1.0 1388333162 2678 45 minutes until the next massive pump make sure funds are ready 2019-04-08 17:45:00+00:00 1.0 1388333162 2677 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-04-08 17:30:00+00:00 1.0 1388333162 2676 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-04-08 16:30:00+00:00 1.0 1388333162 2675 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-08 15:30:00+00:00 1.0 1388333162 2674 4 hours until pump time time 1830 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-08 14:30:00+00:00 1.0 1388333162 2673 6 hours until camps next big pump announcement date monday 08th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-08 12:30:00+00:00 1.0 1388333162 2672 12 hours until camps next big pump announcement date monday 08th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-08 06:30:00+00:00 1.0 1388333162 2671 24 hours until camps next big pump announcement date monday 08th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-07 18:30:00+00:00 1.0 1388333162 2669 camps next pump date monday 8th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-06 01:22:10+00:00 1.0 1388333162 2647 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-03-22 18:31:00+00:00 1.0 1388333162 2644 5 minutes until the pump pairing btc expected gain 300 400 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-03-22 18:25:00+00:00 1.0 1388333162 2643 10 minutes until the next massive pump 2019-03-22 18:20:00+00:00 1.0 1388333162 2642 15 minutes until the next massive pump 2019-03-22 18:15:00+00:00 1.0 1388333162 2641 30 minutes until the next massive pump make sure funds are ready 2019-03-22 18:00:00+00:00 1.0 1388333162 2640 45 minutes until the next massive pump make sure funds are ready 2019-03-22 17:45:00+00:00 1.0 1388333162 2639 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-03-22 17:30:00+00:00 1.0 1388333162 2638 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-03-22 16:30:00+00:00 1.0 1388333162 2637 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-22 15:30:00+00:00 1.0 1388333162 2636 4 hours until pump time time 1830 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-22 14:30:00+00:00 1.0 1388333162 2635 6 hours until camps next big pump announcement date friday 22nd of march 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-22 12:30:00+00:00 1.0 1388333162 2634 12 hours until camps next big pump announcement date friday 22nd of march 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-22 06:30:00+00:00 1.0 1388333162 2632 24 hours until camps next big pump announcement date friday 22nd of march 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-21 18:30:00+00:00 1.0 1388333162 2627 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 ascs228 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-03-18 15:38:40+00:00 1.0 1388333162 2626 if you are looking to join camps vip pump before the pump tommrow contact camppumps we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 ascs228 croc200 m1120 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-03-18 15:36:46+00:00 1.0 1388333162 2625 camps next pump date friday march 22nd of march1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-18 15:34:17+00:00 1.0 1388333162 2614 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-03-12 19:31:00+00:00 1.0 1388333162 2610 5 minutes until the pump pairing btc expected gain 300 420 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-03-12 19:25:00+00:00 1.0 1388333162 2609 10 minutes until the next massive pump get youre funds ready 2019-03-12 19:21:10+00:00 1.0 1388333162 2608 10 minutes until the next massive pump 2019-03-12 19:20:00+00:00 1.0 1388333162 2607 15 minutes until the next massive pump 2019-03-12 19:15:00+00:00 1.0 1388333162 2606 30 minutes until the next massive pump make sure funds are ready 2019-03-12 19:00:00+00:00 1.0 1388333162 2605 45 minutes until the next massive pump make sure funds are ready 2019-03-12 18:45:00+00:00 1.0 1388333162 2604 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-03-12 18:30:00+00:00 1.0 1388333162 2603 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-03-12 17:30:00+00:00 1.0 1388333162 2602 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-12 16:30:00+00:00 1.0 1388333162 2601 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-12 15:30:00+00:00 1.0 1388333162 2600 6 hours until camps next big pump announcement date tuesday 12th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-12 13:30:00+00:00 1.0 1388333162 2598 12 hours until camps next big pump announcement date tuesday 12th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-12 07:30:00+00:00 1.0 1388333162 2596 24 hours until camps next big pump announcement date tuesday 12th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-11 19:30:00+00:00 1.0 1388333162 2593 camps next pump date tuesday 12th of march1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-11 01:35:16+00:00 1.0 1388333162 2586 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-03-05 19:31:00+00:00 1.0 1388333162 2583 5 minutes until the pump pairing btc expected gain 300 420 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-03-05 19:25:00+00:00 1.0 1388333162 2582 10 minutes until the next massive pump 2019-03-05 19:20:00+00:00 1.0 1388333162 2581 15 minutes until the next massive pump 2019-03-05 19:15:00+00:00 1.0 1388333162 2580 30 minutes until the next massive pump make sure funds are ready 2019-03-05 19:00:00+00:00 1.0 1388333162 2579 45 minutes until the next massive pump make sure funds are ready 2019-03-05 18:45:00+00:00 1.0 1388333162 2578 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-03-05 18:30:00+00:00 1.0 1388333162 2577 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-03-05 17:30:00+00:00 1.0 1388333162 2576 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-05 16:30:00+00:00 1.0 1388333162 2574 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-05 15:30:00+00:00 1.0 1388333162 2573 6 hours until camps next big pump announcement date tuesday 5th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-05 13:30:00+00:00 1.0 1388333162 2572 12 hours until camps next big pump announcement date tuesday 5th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-05 07:30:00+00:00 1.0 1388333162 2571 if you are looking to join camps vip pump before the pump tommrow contact camppumps we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 ascs228 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-03-04 19:43:10+00:00 1.0 1388333162 2570 24 hours until camps next big pump announcement date tuesday 5th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-04 19:30:00+00:00 1.0 1388333162 2569 camps next pump date tuesday 5th of march1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-04 12:32:15+00:00 1.0 1388333162 2568 camps next pump date tuesday 5th of march1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-04 00:53:59+00:00 1.0 1388333162 2555 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-28 19:31:00+00:00 1.0 1388333162 2552 5 minutes until the pump pairing btc expected gain 300 420 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-28 19:25:00+00:00 1.0 1388333162 2551 10 minutes until the next massive pump 2019-02-28 19:20:00+00:00 1.0 1388333162 2550 15 minutes until the next massive pump 2019-02-28 19:15:00+00:00 1.0 1388333162 2549 30 minutes until the next massive pump make sure funds are ready 2019-02-28 19:00:00+00:00 1.0 1388333162 2548 45 minutes until the next massive pump make sure funds are ready 2019-02-28 18:45:00+00:00 1.0 1388333162 2547 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-28 18:30:00+00:00 1.0 1388333162 2546 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-28 17:30:00+00:00 1.0 1388333162 2545 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-02-28 16:59:04+00:00 1.0 1388333162 2543 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-28 16:30:00+00:00 1.0 1388333162 2542 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-28 15:30:00+00:00 1.0 1388333162 2540 6 hours until camps next big pump announcement date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-28 13:30:00+00:00 1.0 1388333162 2538 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-02-28 10:31:50+00:00 1.0 1388333162 2536 12 hours until camps next big pump announcement date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-28 07:30:00+00:00 1.0 1388333162 2533 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-02-27 22:12:57+00:00 1.0 1388333162 2532 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-27 22:12:00+00:00 1.0 1388333162 2531 24 hours until camps next big pump announcement date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-27 19:30:08+00:00 1.0 1388333162 2530 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-27 17:12:09+00:00 1.0 1388333162 2527 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-27 14:55:56+00:00 1.0 1388333162 2526 camps next pump date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-27 02:14:00+00:00 1.0 1388333162 2525 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-26 20:21:31+00:00 1.0 1388333162 2524 great pump today guys massive gain of 460 we noticed outsiders entering and that people were promoting this coin in the chat box which helped us drastically 2019-02-26 19:45:55+00:00 1.0 1388333162 2521 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-26 19:31:00+00:00 1.0 1388333162 2518 5 minutes until the pump pairing btc expected gain 200 250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-26 19:25:00+00:00 1.0 1388333162 2517 10 minutes until the next massive pump 2019-02-26 19:20:00+00:00 1.0 1388333162 2516 15 minutes until the next massive pump 2019-02-26 19:15:00+00:00 1.0 1388333162 2515 30 minutes until the next massive pump make sure funds are ready 2019-02-26 19:00:00+00:00 1.0 1388333162 2514 45 minutes until the next massive pump make sure funds are ready 2019-02-26 18:45:00+00:00 1.0 1388333162 2513 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-26 18:30:00+00:00 1.0 1388333162 2512 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-26 17:30:00+00:00 1.0 1388333162 2511 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-26 16:30:00+00:00 1.0 1388333162 2510 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-26 15:30:00+00:00 1.0 1388333162 2509 6 hours until camps next big pump announcement date tuesday 26th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-26 13:30:00+00:00 1.0 1388333162 2507 12 hours until camps next big pump announcement date tuesday 26th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-26 07:30:00+00:00 1.0 1388333162 2505 24 hours until camps next big pump announcement date tuesday 26th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-25 19:30:00+00:00 1.0 1388333162 2504 camps next pump date tuesday 26 of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-25 13:09:10+00:00 1.0 1388333162 2494 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-18 19:31:00+00:00 1.0 1388333162 2491 5 minutes until the pump pairing btc expected gain 200 250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-18 19:25:00+00:00 1.0 1388333162 2490 10 minutes until the next massive pump 2019-02-18 19:20:00+00:00 1.0 1388333162 2489 15 minutes until the next massive pump 2019-02-18 19:15:00+00:00 1.0 1388333162 2488 30 minutes until the next massive pump make sure funds are ready 2019-02-18 19:00:00+00:00 1.0 1388333162 2487 45 minutes until the next massive pump make sure funds are ready 2019-02-18 18:45:00+00:00 1.0 1388333162 2486 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-18 18:30:00+00:00 1.0 1388333162 2485 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-18 17:30:00+00:00 1.0 1388333162 2484 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-18 16:30:00+00:00 1.0 1388333162 2483 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-18 15:30:00+00:00 1.0 1388333162 2482 6 hours until camps next big pump announcement date monday 18th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-18 13:30:00+00:00 1.0 1388333162 2480 12 hours until camps next big pump announcement date monday 18th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-18 07:30:00+00:00 1.0 1388333162 2479 24 hours until camps next big pump announcement date monday 18th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-17 19:30:00+00:00 1.0 1388333162 2475 camps next pump date monday 18 of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-17 14:55:58+00:00 1.0 1388333162 2472 camps next pump date monday 18 of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-17 03:32:55+00:00 1.0 1388333162 2465 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-15 19:31:00+00:00 1.0 1388333162 2462 5 minutes until the pump pairing btc expected gain 200 250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-15 19:25:00+00:00 1.0 1388333162 2461 10 minutes until the next massive pump 2019-02-15 19:20:00+00:00 1.0 1388333162 2460 15 minutes until the next massive pump 2019-02-15 19:15:00+00:00 1.0 1388333162 2459 30 minutes until the next massive pump make sure funds are ready 2019-02-15 19:00:00+00:00 1.0 1388333162 2458 45 minutes until the next massive pump make sure funds are ready 2019-02-15 18:45:00+00:00 1.0 1388333162 2457 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-15 18:30:00+00:00 1.0 1388333162 2456 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-15 17:30:00+00:00 1.0 1388333162 2455 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-15 16:30:00+00:00 1.0 1388333162 2454 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-15 15:30:00+00:00 1.0 1388333162 2453 6 hours until camps next big pump announcement date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-15 13:30:00+00:00 1.0 1388333162 2452 join us for todays pump on yobit the last pump went up 183 with more volume it could have gone 400+ todays pump will be bigger everyone 2019-02-15 10:14:17+00:00 1.0 1388333162 2451 12 hours until camps next big pump announcement date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-15 07:30:00+00:00 1.0 1388333162 2449 camps next pump date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-14 21:27:07+00:00 1.0 1388333162 2448 24 hours until camps next big pump announcement date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-14 19:30:00+00:00 1.0 1388333162 2445 camps next pump date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 22:34:25+00:00 1.0 1388333162 2444 camps next pump date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 22:34:16+00:00 1.0 1388333162 2443 camps next pump datefriday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 22:33:08+00:00 1.0 1388333162 2439 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-13 19:31:00+00:00 1.0 1388333162 2432 5 minutes until the pump pairing btc expected gain 200 325 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-13 19:25:00+00:00 1.0 1388333162 2431 10 minutes until the next massive pump 2019-02-13 19:20:00+00:00 1.0 1388333162 2429 15 minutes until the next massive pump 2019-02-13 19:15:00+00:00 1.0 1388333162 2428 30 minutes until the next massive pump make sure funds are ready 2019-02-13 19:00:00+00:00 1.0 1388333162 2427 45 minutes until the next massive pump make sure funds are ready 2019-02-13 18:45:00+00:00 1.0 1388333162 2426 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-13 18:30:00+00:00 1.0 1388333162 2425 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-13 17:30:00+00:00 1.0 1388333162 2424 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-13 16:30:00+00:00 1.0 1388333162 2423 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-13 15:30:00+00:00 1.0 1388333162 2422 6 hours until camps next big pump announcement date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 13:30:00+00:00 1.0 1388333162 2421 12 hours until camps next big pump announcement date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 07:30:00+00:00 1.0 1388333162 2420 24 hours until camps next big pump announcement date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-12 19:30:00+00:00 1.0 1388333162 2419 camps next big pump date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump everyone 2019-02-11 16:36:46+00:00 1.0 1388333162 2417 camps next big pump date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump everyone 2019-02-11 02:38:20+00:00 1.0 1388333162 2229 5 minutes until the pump next message will be the coin to buy 2018-12-26 19:25:09+00:00 1.0 1388333162 2228 10 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc everyone 2018-12-26 19:22:12+00:00 1.0 1388333162 2227 15 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc 2018-12-26 19:14:56+00:00 1.0 1388333162 2226 20 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc 2018-12-26 19:09:24+00:00 1.0 1388333162 2225 30 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc 2018-12-26 18:57:29+00:00 1.0 1388333162 2224 1 hour until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 18:23:01+00:00 1.0 1388333162 2223 2 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 17:26:02+00:00 1.0 1388333162 2222 4 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 15:23:04+00:00 1.0 1388333162 2221 6 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 13:50:54+00:00 1.0 1388333162 2220 17 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 02:23:23+00:00 1.0 1388333162 2219 camps next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump 2018-12-23 01:35:42+00:00 1.0 1388333162 2216 5 minutes until the pump next post will be the coin 2018-12-17 19:26:14+00:00 1.0 1388333162 2213 1 hour until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 18:23:29+00:00 1.0 1388333162 2212 25 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 17:02:15+00:00 1.0 1388333162 2211 5 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 14:35:33+00:00 1.0 1388333162 2210 6 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 13:31:10+00:00 1.0 1388333162 2208 7 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 12:35:33+00:00 1.0 1388333162 2207 camps next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-16 22:48:03+00:00 1.0 1388333162 2206 camps next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-16 03:12:20+00:00 1.0 1388333162 2203 everyone 5 minutes until the pump next post will be the coin to buy 2018-12-03 19:24:10+00:00 1.0 1388333162 2198 2 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform everyone 2018-12-03 17:26:03+00:00 1.0 1388333162 2197 3 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform everyone 2018-12-03 16:31:18+00:00 1.0 1388333162 2196 4 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform everyone 2018-12-03 15:45:33+00:00 1.0 1388333162 2195 5 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz 2018-12-03 14:23:04+00:00 1.0 1388333162 2194 21 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform 2018-12-02 22:27:25+00:00 1.0 1388333162 2191 next big pump announcement date monday 3rd of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-29 09:47:37+00:00 1.0 1388333162 2185 5 minutes the next post will be the coin to buy please buy and dont dump wait for outsiders 2018-11-16 19:25:15+00:00 1.0 1388333162 2183 30 minutes until the next massive pump exchange cryptopia pairing btc type free for all ffa pump make sure funds are ready everyone 2018-11-16 19:00:15+00:00 1.0 1388333162 2182 1 hour until the next massive pump exchange cryptopia pairing btc type free for all ffa pump make sure funds are ready everyone 2018-11-16 18:34:16+00:00 1.0 1388333162 2181 2 hours until the next big pump get back some of your btc from the crash big collab pump datefriday 16 th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-16 17:40:39+00:00 1.0 1388333162 2180 3 hours until the next big pump get back some of your btc from the crash big collab pump datefriday 16 th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-16 16:42:47+00:00 1.0 1388333162 2179 6 hours until the next big pump get back some of your btc from the crash big collab pump datefriday 16 th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-16 13:48:55+00:00 1.0 1388333162 2173 next big pump announcement date friday 16th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday this will be a ffa pump everyone 2018-11-15 21:15:41+00:00 1.0 1388333162 2172 ⁣⁣⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣binance will be listing umo buy it now 2018-11-15 19:30:59+00:00 1.0 1388333162 2170 ⁣⁣⁣3⃣ minutes left until the greatspskpump✅ ⁣⁣⁣ pairing btc expected gain 150180 do not sell early and hold the coin at least for 10 minutes spread the coin on chatbox and social media‼this is very important in order to draw the attention of outsiders when you sell early outsiders will only see a dump and they will not join the ride make sure you understand this ⁣so everyone can make a lot of profit⁣‼ the next message will be the coin 2018-11-15 19:26:58+00:00 1.0 1388333162 2168 ⁣⁣⁣3⃣0⃣ minutes left until the greatspskpump✅ ⁣⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-11-15 18:59:58+00:00 1.0 1388333162 2166 ⁣3⃣ hours left until the greatspskpump✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-15 16:29:59+00:00 1.0 1388333162 2165 ⁣⁣⁣⁣⁣⁣⁣⁣6⃣ hours left until the greatspskpump✅ ⁣ ⁣⁣signal will be post at exactly 1930⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-15 13:29:59+00:00 1.0 1388333162 2164 ⁣⁣⁣⁣⁣⁣less than hours left until the greatspskpump✅ ⁣time ⁣1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump be sure you all have your funds ready on cryptopia‼ ⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-15 09:35:59+00:00 1.0 1388333162 2163 ⁣⁣⁣⁣2⃣4⃣ hours left until the greatspskpump✅ ⁣date thursday 15th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1130 pdt 15th of november new york 1430 edt ⁣⁣15th of november buenos aires 1630 art ⁣⁣15th of november london 1930 bst ⁣⁣15th of november amsterdam 2030 cest ⁣⁣15th of november ankara 2230 trt ⁣⁣15th of november delhi 0100 ist ⁣⁣16th of november tokyo 0430 jst ⁣⁣16th of november sydney 0630 aest ⁣⁣16th of november ⁣⁣⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-14 19:29:57+00:00 1.0 1388333162 2162 ⁣⁣⁣⁣⁣⁣⁣⁣4⃣8⃣ hours left until the greatspskpump✅ date thursday 15th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣make sure you all have your funds ready on cryptopia⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-13 19:29:58+00:00 1.0 1388333162 2156 10 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:49:22+00:00 1.0 1388333162 2155 15 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:46:24+00:00 1.0 1388333162 2153 20 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:40:58+00:00 1.0 1388333162 2152 30 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:31:08+00:00 1.0 1388333162 2151 40 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:22:18+00:00 1.0 1388333162 2150 1 hour until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist 2018-11-13 15:08:21+00:00 1.0 1388333162 2149 2 hours until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist 2018-11-13 14:02:43+00:00 1.0 1388333162 2148 3 hours until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist 2018-11-13 13:01:44+00:00 1.0 1388333162 2146 the next big pump announcement date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 04:39:12+00:00 1.0 1388333162 2145 the next big pump announcement date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-12 21:13:49+00:00 1.0 1388333162 2139 ⁣⁣⁣⁣⁣⁣⁣buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣⁣as one of the first minereum tokens the 300 token will be used to buy tickets for the new spartan movie for glory for sparta hold no dump buy now 2018-11-12 20:00:59+00:00 1.0 1388333162 2137 ⁣⁣⁣3⃣ minutes left until the greatspskpump✅ ⁣⁣⁣ pairing btc expected gain 130155 do not sell early and hold the coin at least for 10 minutes spread the coin on chatbox and social media‼this is very important in order to draw the attention of outsiders when you sell early outsiders will only see a dump and they will not join the ride make sure you understand this ⁣so everyone can make a lot of profit⁣‼ the next message will be the coin 2018-11-12 19:56:58+00:00 1.0 1388333162 2135 ⁣⁣⁣3⃣0⃣ minutes left until the greatspskpump✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-11-12 19:29:58+00:00 1.0 1388333162 2133 ⁣3⃣ hours left until the greatspskpump✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-12 16:59:59+00:00 1.0 1388333162 2132 ⁣⁣⁣⁣⁣⁣⁣⁣6⃣ hours left until the greatspskpump✅ ⁣ ⁣⁣signal will be post at exactly 2000⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-12 13:59:59+00:00 1.0 1388333162 2130 ⁣⁣⁣⁣⁣⁣⁣⁣4⃣8⃣ hours left until the greatspskpump✅ ⁣date monday 12th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-10 19:59:57+00:00 1.0 1388333162 2129 ⁣⁣make yourself ready for the greatspskpump✅ date monday 12th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1200 pdt 12th of november new york 1500 edt 12th of november buenos aires 1700 art 12th of november london 2000 bst 12th of november amsterdam 2100 cest 12th of november ankara 2300 trt 12th of november delhi 0130 ist 13th of november tokyo 0500 jst 13th of november sydney 0700 aest 13th of november ⁣⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ if you do not have an account yet make sure you have one✅ ⁣⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-10 14:08:54+00:00 1.0 1388333162 2127 bcs cryptopia pump results start price 2826 peak price 5750 gain 103 total volume 055 btc 2018-11-09 20:00:07+00:00 1.0 1388333162 2126 ⁣⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣buy bcs coin on cryptopia bcshopio is at the edge of a epayment deal with amazoncom to integrate its own blockchain you do not want to miss the ride 2018-11-09 19:30:59+00:00 1.0 1388333162 2124 ⁣⁣3⃣ minutes left until the greatspskpump✅ ⁣⁣⁣ pairing btc expected gain 150190 do not sell early and hold the coin at least for 10 minutes spread the coin on chatbox and social media‼this is very important in order to draw the attention of outsiders when you sell early outsiders will only see a dump and they will not join the ride make sure you understand this ⁣so everyone can make a lot of profit⁣‼ the next message will be the coin 2018-11-09 19:26:58+00:00 1.0 1388333162 2121 ⁣⁣⁣3⃣0⃣ minutes left until the greatspskpump✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-11-09 18:59:57+00:00 1.0 1388333162 2119 ⁣⁣⁣⁣⁣⁣⁣⁣3⃣ hours left until the greatspskpump✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-09 16:29:58+00:00 1.0 1388333162 2118 ⁣⁣⁣⁣⁣⁣⁣6⃣ hours left until the great spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 1930⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-09 13:29:58+00:00 1.0 1388333162 2117 ⁣⁣2⃣4⃣ hours left until the greatspskpump ✅ ⁣⁣date ⁣friday 9th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣make sure you all have your funds ready on cryptopia⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-08 19:29:59+00:00 1.0 1388333162 2114 make yourself ready for the great pump ✅ date friday 9th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1130 pdt 9th of november new york 1430 edt 9th of november buenos aires 1630 art 9th of november london 1930 bst 9th of november amsterdam 2030 cest 9th of november ankara 2230 trt 9th of november delhi 0100 ist 10th of november tokyo 0430 jst 10th of november sydney 0630 aest 10th of november ⁣⁣you do not want to miss out on this one‼️ we ensure that you have more time to buy the coin before the price is too high⁣ if you do not have an account yet make sure you have one ⁣⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-08 09:19:57+00:00 1.0 1388333162 2113 not bad at all for such a coin 119 we suppose this was not a bad pump thank you very much to those who were part of this and enjoy your profits 2018-11-08 08:11:35+00:00 1.0 1388333162 2110 ⁣⁣⁣⁣⁣buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣ery releases new roadmap that consists their new coinburn buy now 2018-11-07 20:00:58+00:00 1.0 1388333162 2108 3⃣ minutes left until the great spsk pump ✅ ⁣⁣⁣pairing btc expected gain 135165 do not sell early and hodl the coin at least for 10 minutes spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-11-07 19:56:57+00:00 1.0 1388333162 2106 ⁣⁣⁣⁣3⃣0⃣ minutes left until the great spsk pump ✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣⁣⁣ 2018-11-07 19:29:58+00:00 1.0 1388333162 2105 ⁣⁣⁣⁣1⃣ hour left until the great spsk pump ✅ ⁣⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ 2018-11-07 18:59:58+00:00 1.0 1388333162 2104 ⁣⁣⁣⁣⁣⁣3⃣ hours left until the great spsk pump ✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-07 16:59:58+00:00 1.0 1388333162 2103 ⁣⁣⁣⁣⁣⁣6⃣ hours left until the great spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 2000⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-07 13:59:57+00:00 1.0 1388333162 2101 ⁣⁣⁣⁣1⃣2⃣ hours left until the great spsk pump ✅ ⁣date wednesday 7th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣make sure you all have your funds ready on cryptopia‼ ⁣⁣⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-07 07:59:57+00:00 1.0 1388333162 2100 ⁣⁣⁣⁣⁣⁣4⃣8⃣ hours left until the great pump ✅ date ⁣wednesday 7th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-05 19:59:59+00:00 1.0 1388333162 2094 5 minutes until the next big pump the next announcement will be the coin to buy expected gain 100140 2018-11-05 15:54:40+00:00 1.0 1388333162 2093 10 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:49:09+00:00 1.0 1388333162 2092 15 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:44:56+00:00 1.0 1388333162 2091 30 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:29:04+00:00 1.0 1388333162 2090 45 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:16:54+00:00 1.0 1388333162 2089 1 hour until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 14:57:05+00:00 1.0 1388333162 2087 2 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-11-05 13:54:31+00:00 1.0 1388333162 2086 4 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 12:00:52+00:00 1.0 1388333162 2085 5 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-11-05 10:54:14+00:00 1.0 1388333162 2084 9 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-11-05 06:52:03+00:00 1.0 1388333162 2081 next big pump announcement date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump 2018-11-04 08:57:52+00:00 1.0 1388333162 2078 ⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know with the message below‼ ⁣gnosis launches the ios wallet which will take place on app store buy gno now at cryptopia while its still low 2018-11-02 18:30:49+00:00 1.0 1388333162 2076 ⁣⁣pairing btc expected gain 220250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-11-02 18:26:48+00:00 1.0 1388333162 2073 ⁣⁣⁣1⃣ hour left until the spsk pump ✅ be sure you are ready to moon⁣‼ 2018-11-02 17:29:48+00:00 1.0 1388333162 2072 ⁣⁣⁣⁣⁣3⃣ hours left until the spsk pump ✅ ⁣⁣signal will be post at exactly 18⁣30⁣00 utc gmtthis will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy fast before we entice outside investors to get in on it ⁣once we have bought in and the price has stabilized it is important to hold and not dump on our fellow members ⁣this is when we all need to help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit ⁣we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-02 15:29:48+00:00 1.0 1388333162 2071 ⁣⁣⁣⁣6⃣ hours left until the spsk pump ✅ time 2000 utc ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on cryptopia‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-02 12:29:48+00:00 1.0 1388333162 2070 ⁣⁣⁣1⃣2⃣ hours left until the spsk pump ✅ time 1830 utc ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣be sure that you know how to quickly buy and sell on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-02 06:29:48+00:00 1.0 1388333162 2067 make yourself ready for the next great pump ✅ date friday 2nd of november 1830 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1130 pdt 2nd of november new york 1430 edt 2nd of november buenos aires 1530 art 2nd of november london 1830 bst 2nd of november amsterdam 1930 cest 2nd of november ankara 2130 trt 2nd of november delhi 0000 ist 3rd of november tokyo 0330 jst 3rd of november sydney 0530 aest 3rd of november ⁣be sure you all have your funds ready on cryptopia⁣‼️ if you do not have an account yet make sure you have one ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-01 16:17:49+00:00 1.0 1388333162 2062 30 minutes until the next pump date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia ⁣ this will be a ffa pump there will be no prepump 2018-11-01 14:57:41+00:00 1.0 1388333162 2061 2 hours 30 minutes until the next pump date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 12:57:47+00:00 1.0 1388333162 2060 4 hours 30 minutes until the next pump date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 11:04:58+00:00 1.0 1388333162 2059 7 hours 30 minutes until the next pump date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 08:01:56+00:00 1.0 1388333162 2057 next big pump announcement date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 06:51:52+00:00 1.0 1388333162 2052 ⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ good news ⁣8bit will get listed on bittrex after a while buy now while it is still low 2018-10-31 19:00:51+00:00 1.0 1388333162 2050 ⁣⁣⁣pairing btc expected gain 100130 do not sell early and hodl the coin at least for 10 minutes spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-10-31 18:56:51+00:00 1.0 1388333162 2048 ⁣⁣⁣⁣3⃣0⃣ minutes left until the spsk pump ✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-10-31 18:29:51+00:00 1.0 1388333162 2046 ⁣⁣⁣⁣⁣⁣3⃣ hours left until the spsk pump ✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-31 15:59:51+00:00 1.0 1388333162 2045 ⁣⁣⁣⁣⁣⁣6⃣ hours left until the spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 1900⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-31 12:59:52+00:00 1.0 1388333162 2042 ⁣⁣⁣⁣1⃣2⃣ hours left until the spsk pump ✅ time 1900 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣be ready to moon⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-31 06:59:52+00:00 1.0 1388333162 2041 ⁣2⃣4⃣ hours left until the spsk pump ✅ date wednesday 31st of october 1900 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣if you do not have an account yet make sure you have one ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-30 18:59:53+00:00 1.0 1388333162 2039 ⁣⁣⁣⁣⁣⁣4️⃣8️⃣ hours left until the next pump ✅ date wednesday 31st of october 1900 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣ los angeles 1200 pdt 31st of october new york 1500 edt 31st of october buenos aires 1600 art 31st of october london 1900 bst 31st of october amsterdam 2000 cest 31st of october ankara 2200 trt ⁣31st of october delhi 0030 ist ⁣1st of november tokyo 0400 jst ⁣1st of november sydney 0600 aest ⁣1st of november ⁣⁣⁣⁣⁣be sure that you know how to quickly buy and sell on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-29 18:59:55+00:00 1.0 1388333162 2038 great job with the pump today we held for over 8 minutes we are all getting better and hope everyone made money start price 11 sats peak price 24 sats gain 118 total volume 04 2018-10-29 18:50:02+00:00 1.0 1388333162 2032 next post coin name 2018-10-29 18:26:54+00:00 1.0 1388333162 2029 less than 30 minutes until the pump expected gain 100150 date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump 2018-10-29 18:08:12+00:00 1.0 1388333162 2028 1 hour until the next pump date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-29 17:32:54+00:00 1.0 1388333162 2027 2 hours 30 minutes until the next pump date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-29 16:05:06+00:00 1.0 1388333162 2025 less than 11 hours until the next pump date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-29 07:44:44+00:00 1.0 1388333162 2021 next pump announcement date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-28 09:16:23+00:00 1.0 1388333162 2020 last pump results coin dark price was on top 165 for more than 12 minutes total peak 173 2018-10-28 08:45:35+00:00 1.0 1388333162 2018 ⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣with darkcoins new team of developers and a passion for technology they bring dark back to its roots good news coming soon buy dark now while its still low 2018-10-27 16:00:58+00:00 1.0 1388333162 2016 ⁣⁣⁣pairing btc expected gain 155185 do not sell early and hodl the coin at least for 10 minutes spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-10-27 15:56:57+00:00 1.0 1388333162 2014 ⁣⁣⁣⁣3⃣0⃣ minutes left until the spsk pump ✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-10-27 15:29:58+00:00 1.0 1388333162 2012 ⁣⁣⁣⁣⁣⁣3⃣ hours left until the spsk pump ✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-27 12:59:58+00:00 1.0 1388333162 2011 ⁣⁣⁣⁣⁣⁣6⃣ hours left until the spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 1600⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-27 09:59:58+00:00 1.0 1388333162 2010 ⁣⁣⁣⁣1⃣2⃣ hours left until the spsk pump ✅ time 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣be sure you all have your funds ready on cryptopia‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-27 03:59:58+00:00 1.0 1388333162 2009 ⁣⁣note the changed pump time‼ ⁣⁣⁣⁣⁣2⃣4⃣ hours left until the spsk pump ✅ ⁣date saturday 27th of october 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 0900 pdt 27th of october new york 1200 edt 27th of october buenos aires 1300 art 27th of october london 1700 bst 27th of october amsterdam 1800 cest 27th of october ankara 1900 trt 27th of october delhi 2130 ist 27th of october tokyo 0100 jst 28th of october sydney 0300 aest 28th of october ⁣be ready to moon⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-26 15:59:59+00:00 1.0 1388333162 2005 ⁣⁣⁣⁣⁣⁣4️⃣8️⃣ hours left until the spsk pump ✅ date saturday 27th of october 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣⁣⁣⁣be sure that you know how to quickly buy and sell on cryptopia ⁣make sure you all have your funds ready on cryptopia⁣‼️ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-25 18:59:59+00:00 1.0 1388333162 2003 great news for all we are part of cryptopia pump community now make yourself ready for the great pump ✅ date saturday 27th of october 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on cryptopia⁣‼️ if you do not have an account yet make sure you have one wwwcryptopiaconz ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-25 11:01:29+00:00 1.0 1388333162 1984 pump analysis coin ufr +50 approximately from low level our team members banned by yobit chat admin very fast remember we always repump our coins ❌never sell in loss ✅leave sell order open 2018-10-19 17:58:20+00:00 1.0 1388333162 1977 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:37+00:00 1.0 1388333162 1976 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:03+00:00 1.0 1388333162 1967 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:23+00:00 1.0 1388333162 1964 ℹ️pump signal informationℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level dont miss this one ℹ️ 2018-10-19 07:55:36+00:00 1.0 1388333162 1941 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:20+00:00 1.0 1388333162 1934 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:07+00:00 1.0 1388333162 1932 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:01+00:00 1.0 1388333162 1930 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:01+00:00 1.0 1388333162 1928 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:21+00:00 1.0 1388333162 1926 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:10+00:00 1.0 1388333162 1924 ℹ️ pump signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 13:30:27+00:00 1.0 1388333162 1846 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:54+00:00 1.0 1388333162 1841 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:33+00:00 1.0 1388333162 1834 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:14+00:00 1.0 1388333162 1832 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:10+00:00 1.0 1388333162 1831 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:29+00:00 1.0 1388333162 1830 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:10+00:00 1.0 1388333162 1829 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:55:02+00:00 1.0 1388333162 1828 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:31+00:00 1.0 1388333162 1827 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:52+00:00 1.0 1388333162 1814 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:47+00:00 1.0 1388333162 1809 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:13+00:00 1.0 1388333162 1803 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:23+00:00 1.0 1388333162 1801 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:13+00:00 1.0 1388333162 1797 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:13+00:00 1.0 1388333162 1796 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:15+00:00 1.0 1388333162 1795 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:22+00:00 1.0 1388333162 1793 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:28+00:00 1.0 1388333162 1792 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:26:05+00:00 1.0 1388333162 1791 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:21+00:00 1.0 1388333162 1767 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:07+00:00 1.0 1388333162 1763 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:48+00:00 1.0 1388333162 1761 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:15+00:00 1.0 1388333162 1756 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:24+00:00 1.0 1388333162 1754 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:20+00:00 1.0 1388333162 1753 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:27+00:00 1.0 1388333162 1752 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:35+00:00 1.0 1388333162 1751 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:24+00:00 1.0 1388333162 1750 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:23:11+00:00 1.0 1388333162 1749 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:21+00:00 1.0 1388333162 1741 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:56+00:00 1.0 1388333162 1735 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:20+00:00 1.0 1388333162 1733 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:13+00:00 1.0 1388333162 1729 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:14+00:00 1.0 1388333162 1725 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:20+00:00 1.0 1388333162 1724 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:25+00:00 1.0 1388333162 1723 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:17+00:00 1.0 1388333162 1722 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:20+00:00 1.0 1388333162 1721 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:27+00:00 1.0 1388333162 1719 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:14+00:00 1.0 1388333162 1718 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:12+00:00 1.0 1388333162 1717 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:55+00:00 1.0 1388333162 1713 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:29+00:00 1.0 1388333162 1711 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:13+00:00 1.0 1388333162 1705 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:31+00:00 1.0 1388333162 1704 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:30+00:00 1.0 1388333162 1702 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:25+00:00 1.0 1388333162 1700 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:15+00:00 1.0 1388333162 1698 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:18+00:00 1.0 1388333162 1697 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:55+00:00 1.0 1388333162 1695 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:02:02+00:00 1.0 1388333162 1692 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:28+00:00 1.0 1388333162 1686 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:06+00:00 1.0 1388333162 1675 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:17+00:00 1.0 1388333162 1674 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:10+00:00 1.0 1388333162 1673 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:18+00:00 1.0 1388333162 1671 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:15+00:00 1.0 1388333162 1670 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:05+00:00 1.0 1388333162 1664 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:32+00:00 1.0 1388333162 1652 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:13+00:00 1.0 1388333162 1651 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:28+00:00 1.0 1388333162 1650 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:39+00:00 1.0 1388333162 1634 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:23+00:00 1.0 1388333162 1629 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:32+00:00 1.0 1388333162 1627 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:17+00:00 1.0 1388333162 1625 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:26+00:00 1.0 1388333162 1624 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:16+00:00 1.0 1388333162 1623 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:19+00:00 1.0 1388333162 1622 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:40+00:00 1.0 1388333162 1621 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:46+00:00 1.0 1388333162 1620 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:18+00:00 1.0 1388333162 1619 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:26+00:00 1.0 1388333162 1618 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:16+00:00 1.0 1388333162 1617 ❗️ read instructions below❗️ 1 sign up to cryptopia and send your btc to your wallet today ℹ️ information for todays pump ℹ️ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 22092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:24+00:00 1.0 1388333162 1615 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:47+00:00 1.0 1388333162 1614 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:41+00:00 1.0 1388333162 1607 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:39+00:00 1.0 1388333162 1604 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:11+00:00 1.0 1388333162 1603 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:12+00:00 1.0 1388333162 1602 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:34+00:00 1.0 1388333162 1601 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:37+00:00 1.0 1388333162 1600 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:26+00:00 1.0 1388333162 1599 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:18+00:00 1.0 1388333162 1598 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:37+00:00 1.0 1388333162 1597 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:12+00:00 1.0 1388333162 1596 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:18+00:00 1.0 1388333162 1594 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:10+00:00 1.0 1388333162 1593 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:29+00:00 1.0 1388333162 1591 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:11:01+00:00 1.0 1388333162 1588 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:03+00:00 1.0 1388333162 1580 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:26+00:00 1.0 1388333162 1579 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:14+00:00 1.0 1388333162 1578 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:23+00:00 1.0 1388333162 1577 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:19+00:00 1.0 1388333162 1576 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:29+00:00 1.0 1388333162 1575 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:26+00:00 1.0 1388333162 1574 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:37+00:00 1.0 1388333162 1573 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:16+00:00 1.0 1388333162 1572 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:39+00:00 1.0 1388333162 1571 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:40+00:00 1.0 1388333162 1570 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:35+00:00 1.0 1388333162 1569 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:20+00:00 1.0 1388333162 1568 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:27+00:00 1.0 1388333162 1567 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:37+00:00 1.0 1388333162 1558 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:41+00:00 1.0 1388333162 1557 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:10+00:00 1.0 1388333162 1556 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:10+00:00 1.0 1388333162 1555 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:13+00:00 1.0 1388333162 1554 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:24+00:00 1.0 1388333162 1553 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:16+00:00 1.0 1388333162 1552 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:29+00:00 1.0 1388333162 1551 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:42+00:00 1.0 1388333162 1550 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:15+00:00 1.0 1388333162 1549 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:10+00:00 1.0 1388333162 1548 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:15+00:00 1.0 1388333162 1547 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:24+00:00 1.0 1388333162 1545 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:17+00:00 1.0 1388333162 1544 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:18+00:00 1.0 1388333162 1540 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:45+00:00 1.0 1388333162 1538 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:18+00:00 1.0 1388333162 1537 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:14+00:00 1.0 1388333162 1536 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:11+00:00 1.0 1388333162 1535 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:14+00:00 1.0 1388333162 1534 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:14+00:00 1.0 1388333162 1533 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:16+00:00 1.0 1388333162 1532 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:25+00:00 1.0 1388333162 1531 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:24+00:00 1.0 1388333162 1529 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:19+00:00 1.0 1388333162 1527 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:11+00:00 1.0 1388333162 1525 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:07:59+00:00 1.0 1388333162 1524 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:26+00:00 1.0 1388333162 1518 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:43+00:00 1.0 1388333162 1517 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:14+00:00 1.0 1388333162 1516 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:19+00:00 1.0 1388333162 1515 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:10+00:00 1.0 1388333162 1514 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:23+00:00 1.0 1388333162 1513 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:27+00:00 1.0 1388333162 1512 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:21+00:00 1.0 1388333162 1511 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:16+00:00 1.0 1388333162 1510 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:14+00:00 1.0 1388333162 1508 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:17+00:00 1.0 1388333162 1507 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:16+00:00 1.0 1388333162 1506 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:24+00:00 1.0 1388333162 1503 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:49+00:00 1.0 1388333162 1502 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:41+00:00 1.0 1388333162 1496 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:32+00:00 1.0 1388333162 1495 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:11+00:00 1.0 1388333162 1494 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:13+00:00 1.0 1388333162 1493 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:13+00:00 1.0 1388333162 1492 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:13+00:00 1.0 1388333162 1491 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:22+00:00 1.0 1388333162 1490 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:16+00:00 1.0 1388333162 1489 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:48+00:00 1.0 1388333162 1488 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:22+00:00 1.0 1388333162 1487 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:16+00:00 1.0 1388333162 1485 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:40+00:00 1.0 1388333162 1484 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:49+00:00 1.0 1388333162 1482 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:41+00:00 1.0 1388333162 1481 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:46+00:00 1.0 1388333162 1474 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:20+00:00 1.0 1388333162 1473 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:11+00:00 1.0 1388333162 1471 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:16+00:00 1.0 1388333162 1468 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:37+00:00 1.0 1388333162 1465 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:14+00:00 1.0 1388333162 1464 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:09+00:00 1.0 1388333162 1462 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:05+00:00 1.0 1388333162 1454 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:38+00:00 1.0 1388333162 1452 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:21+00:00 1.0 1388333162 1448 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:18+00:00 1.0 1388333162 1445 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:18+00:00 1.0 1388333162 1444 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:19+00:00 1.0 1388333162 1443 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:11+00:00 1.0 1388333162 1441 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:11+00:00 1.0 1388333162 1439 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:08+00:00 1.0 1388333162 1436 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:12+00:00 1.0 1388333162 1435 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:20+00:00 1.0 1388333162 1434 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:11+00:00 1.0 1388333162 1432 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:20+00:00 1.0 1388333162 1431 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:21+00:00 1.0 1388333162 1430 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:46+00:00 1.0 1388333162 1429 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:17+00:00 1.0 1388333162 1428 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:13+00:00 1.0 1388333162 1426 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:34:02+00:00 1.0 1388333162 1425 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:53+00:00 1.0 1388333162 1422 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:43+00:00 1.0 1388333162 1414 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:17+00:00 1.0 1388333162 1413 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:15+00:00 1.0 1388333162 1412 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:14+00:00 1.0 1388333162 1411 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:10+00:00 1.0 1388333162 1410 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:26+00:00 1.0 1388333162 1409 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:19+00:00 1.0 1388333162 1408 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:17+00:00 1.0 1388333162 1407 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:22+00:00 1.0 1388333162 1405 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:21+00:00 1.0 1388333162 1404 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:13+00:00 1.0 1388333162 1401 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:12+00:00 1.0 1388333162 1400 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:19+00:00 1.0 1388333162 1398 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:17+00:00 1.0 1388333162 1389 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:37+00:00 1.0 1388333162 1388 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:18+00:00 1.0 1388333162 1387 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:19+00:00 1.0 1388333162 1386 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:29+00:00 1.0 1388333162 1385 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:27+00:00 1.0 1388333162 1384 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:35+00:00 1.0 1388333162 1383 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:25+00:00 1.0 1388333162 1382 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:15+00:00 1.0 1388333162 1381 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:11+00:00 1.0 1388333162 1380 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:12+00:00 1.0 1388333162 1378 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:18+00:00 1.0 1388333162 1377 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:24+00:00 1.0 1388333162 1374 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:20+00:00 1.0 1388333162 1363 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:24+00:00 1.0 1388333162 1362 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:12+00:00 1.0 1388333162 1361 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:11+00:00 1.0 1388333162 1360 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:12+00:00 1.0 1388333162 1359 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:11+00:00 1.0 1388333162 1358 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:00:58+00:00 1.0 1388333162 1357 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:14+00:00 1.0 1388333162 1356 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:15+00:00 1.0 1388333162 1355 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:21+00:00 1.0 1388333162 1354 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:18+00:00 1.0 1388333162 1353 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:19+00:00 1.0 1388333162 1352 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:45+00:00 1.0 1388333162 1348 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:06+00:00 1.0 1388333162 1335 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:01:01+00:00 1.0 1388333162 1334 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:12+00:00 1.0 1388333162 1333 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:12+00:00 1.0 1388333162 1332 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:15+00:00 1.0 1388333162 1331 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:14+00:00 1.0 1388333162 1330 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:36+00:00 1.0 1388333162 1329 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:00:59+00:00 1.0 1388333162 1328 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:15+00:00 1.0 1388333162 1327 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:24+00:00 1.0 1388333162 1326 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:20+00:00 1.0 1388333162 1325 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:18+00:00 1.0 1388333162 1324 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:19+00:00 1.0 1388333162 1321 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:44+00:00 1.0 1388333162 1319 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:28+00:00 1.0 1388333162 1313 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:28+00:00 1.0 1388333162 1310 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:14+00:00 1.0 1388333162 1309 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:13+00:00 1.0 1388333162 1308 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:18+00:00 1.0 1388333162 1307 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:20+00:00 1.0 1388333162 1306 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:17+00:00 1.0 1388333162 1305 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:29+00:00 1.0 1388333162 1304 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:12+00:00 1.0 1388333162 1303 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:13+00:00 1.0 1388333162 1300 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:19+00:00 1.0 1388333162 1299 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:12+00:00 1.0 1388333162 1298 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:30+00:00 1.0 1388333162 1296 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:27+00:00 1.0 1388333162 1286 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:48+00:00 1.0 1388333162 1284 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:11+00:00 1.0 1388333162 1283 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:12+00:00 1.0 1388333162 1282 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:11+00:00 1.0 1388333162 1281 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:15+00:00 1.0 1388333162 1280 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:33+00:00 1.0 1388333162 1279 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:55+00:00 1.0 1388333162 1278 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:21+00:00 1.0 1388333162 1277 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:15+00:00 1.0 1388333162 1275 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:23+00:00 1.0 1388333162 1273 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:15+00:00 1.0 1388333162 1272 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:17+00:00 1.0 1388333162 1270 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:34+00:00 1.0 1388333162 1264 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:35+00:00 1.0 1388333162 1262 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:11+00:00 1.0 1388333162 1260 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:10+00:00 1.0 1388333162 1259 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:15+00:00 1.0 1388333162 1256 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:14+00:00 1.0 1388333162 1254 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:12+00:00 1.0 1388333162 1252 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:30+00:00 1.0 1388333162 1251 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:06+00:00 1.0 1388333162 1250 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:38+00:00 1.0 1388333162 1243 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:11+00:00 1.0 1388333162 1242 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:15+00:00 1.0 1388333162 1241 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:23+00:00 1.0 1388333162 1240 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:10+00:00 1.0 1388333162 1239 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:23+00:00 1.0 1388333162 1238 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:14+00:00 1.0 1388333162 1237 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:22+00:00 1.0 1388333162 1236 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:18+00:00 1.0 1388333162 1235 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:18+00:00 1.0 1388333162 1234 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:20+00:00 1.0 1388333162 1233 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:12+00:00 1.0 1388333162 1231 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:19+00:00 1.0 1388333162 1230 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:30+00:00 1.0 1388333162 1229 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:29+00:00 1.0 1388333162 1227 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:13+00:00 1.0 1388333162 1200 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:24+00:00 1.0 1388333162 1190 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:18+00:00 1.0 1388333162 1189 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:12+00:00 1.0 1388333162 1183 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:13+00:00 1.0 1388333162 1182 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:12+00:00 1.0 1388333162 1180 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:18+00:00 1.0 1388333162 1179 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:32+00:00 1.0 1388333162 1178 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:49+00:00 1.0 1388333162 1177 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always remember pump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:03+00:00 1.0 1388333162 1166 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:22+00:00 1.0 1388333162 1164 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:26+00:00 1.0 1388333162 1163 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:16+00:00 1.0 1388333162 1162 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:14+00:00 1.0 1388333162 1161 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:13+00:00 1.0 1388333162 1160 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:03:00+00:00 1.0 1388333162 1159 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:20+00:00 1.0 1388333162 1158 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:14+00:00 1.0 1388333162 1157 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:12+00:00 1.0 1388333162 1156 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:13+00:00 1.0 1388333162 1154 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:52+00:00 1.0 1388333162 1153 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:07+00:00 1.0 1388333162 1151 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:30+00:00 1.0 1388333162 1149 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:20:00+00:00 1.0 1388333162 1139 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:09+00:00 1.0 1388333162 1137 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:17+00:00 1.0 1388333162 1136 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:13+00:00 1.0 1388333162 1135 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:09+00:00 1.0 1388333162 1134 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:33+00:00 1.0 1388333162 1133 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:26+00:00 1.0 1388333162 1132 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:17+00:00 1.0 1388333162 1131 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:28+00:00 1.0 1388333162 1130 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:11+00:00 1.0 1388333162 1128 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:21+00:00 1.0 1388333162 1127 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:46+00:00 1.0 1388333162 1126 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:33+00:00 1.0 1388333162 1125 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:47+00:00 1.0 1388333162 1123 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:19:57+00:00 1.0 1388333162 1114 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:52+00:00 1.0 1388333162 1112 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:12+00:00 1.0 1388333162 1111 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:09+00:00 1.0 1388333162 1110 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:13+00:00 1.0 1388333162 1109 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:13+00:00 1.0 1388333162 1108 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:13+00:00 1.0 1388333162 1107 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:09+00:00 1.0 1388333162 1106 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:10+00:00 1.0 1388333162 1105 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:14+00:00 1.0 1388333162 1104 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 07:59:56+00:00 1.0 1388333162 1101 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:10+00:00 1.0 1388333162 1100 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:29+00:00 1.0 1388333162 1099 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:52:57+00:00 1.0 1388333162 1089 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:24+00:00 1.0 1388333162 1087 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-16 15:56:09+00:00 1.0 1388333162 1086 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-16 15:51:18+00:00 1.0 1388333162 1085 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-16 15:41:09+00:00 1.0 1388333162 1084 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-16 15:31:20+00:00 1.0 1388333162 1083 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 15:01:19+00:00 1.0 1388333162 1082 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 14:31:15+00:00 1.0 1388333162 1081 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-16 13:01:12+00:00 1.0 1388333162 1080 ℹ coin signal information ℹ date thursday 16082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-16 08:01:22+00:00 1.0 1388333162 1078 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 16082018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-16 02:27:00+00:00 1.0 1388333162 1077 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:28+00:00 1.0 1388333162 1076 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:03+00:00 1.0 1388333162 1064 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:03+00:00 1.0 1388333162 1063 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-14 16:56:17+00:00 1.0 1388333162 1056 ℹ coin signal information ℹ date tuesday 14082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-14 12:02:43+00:00 1.0 1388333162 1055 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 14082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-14 11:37:36+00:00 1.0 1388333162 1052 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:49+00:00 1.0 1388333162 1040 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:00:58+00:00 1.0 1388333162 1039 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-13 17:56:08+00:00 1.0 1388333162 1032 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 10:01:14+00:00 1.0 1388333162 1030 ℹ coin signal information ℹ date monday 13082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 10 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-13 08:01:11+00:00 1.0 1388333162 1029 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 13082018 monday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-13 03:28:53+00:00 1.0 1388333162 1027 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:27+00:00 1.0 1388333162 1016 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 16:00:01+00:00 1.0 1388333162 1015 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-12 15:56:08+00:00 1.0 1388333162 1009 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 13:01:10+00:00 1.0 1388333162 1008 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 10:01:28+00:00 1.0 1388333162 1007 ℹ coin signal information ℹ date sunday 12082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-12 08:01:09+00:00 1.0 1388333162 1005 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 12082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-12 02:38:17+00:00 1.0 1388333162 1003 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:05:55+00:00 1.0 1388333162 986 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:10+00:00 1.0 1388333162 985 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-09 17:56:09+00:00 1.0 1388333162 978 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 10:01:09+00:00 1.0 1388333162 977 ℹ coin signal information ℹ date thursday 09082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 9 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-09 08:56:19+00:00 1.0 1388333162 976 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 09082018 thursday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-09 08:29:33+00:00 1.0 1388333162 971 great pump as you can see today we had a repump of our last coin for you to get out who was trapped last time with us always profit enjoy 2018-08-08 16:38:27+00:00 1.0 1388333162 966 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:42+00:00 1.0 1388333162 965 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-08 15:56:13+00:00 1.0 1388333162 959 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 13:01:08+00:00 1.0 1388333162 958 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 10:01:08+00:00 1.0 1388333162 957 ℹ coin signal information ℹ date wednesday 08082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-08 08:01:09+00:00 1.0 1388333162 955 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-08 00:34:09+00:00 1.0 1388333162 953 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:25+00:00 1.0 1388333162 939 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:33+00:00 1.0 1388333162 938 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-05 15:57:09+00:00 1.0 1388333162 932 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-05 13:02:10+00:00 1.0 1388333162 931 ℹ coin signal information ℹ date sunday 05082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-05 11:04:07+00:00 1.0 1388333162 929 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 05082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-05 10:16:14+00:00 1.0 1388333162 927 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:22+00:00 1.0 1388333162 918 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:23+00:00 1.0 1388333162 917 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-04 15:57:18+00:00 1.0 1388333162 916 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-04 15:51:17+00:00 1.0 1388333162 915 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-04 15:41:22+00:00 1.0 1388333162 914 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-04 15:32:27+00:00 1.0 1388333162 913 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 15:04:13+00:00 1.0 1388333162 912 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 14:34:00+00:00 1.0 1388333162 911 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-04 13:03:14+00:00 1.0 1388333162 910 ℹ coin signal information ℹ date saturday 04082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 6 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-04 09:59:37+00:00 1.0 1388333162 909 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 04082018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-04 09:45:55+00:00 1.0 1388333162 906 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:25+00:00 1.0 1388333162 896 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:36+00:00 1.0 1388333162 895 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-03 15:57:18+00:00 1.0 1388333162 891 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 15:01:18+00:00 1.0 1388333162 888 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 10:02:26+00:00 1.0 1388333162 886 ℹ coin signal information ℹ date friday 03082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-03 08:02:20+00:00 1.0 1388333162 885 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 03082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-03 01:34:26+00:00 1.0 1388333162 883 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:16:11+00:00 1.0 1388333162 859 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:00:58+00:00 1.0 1388333162 858 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-28 15:57:21+00:00 1.0 1388333162 857 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-28 15:51:17+00:00 1.0 1388333162 856 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-28 15:41:20+00:00 1.0 1388333162 855 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-28 15:31:24+00:00 1.0 1388333162 854 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 15:01:19+00:00 1.0 1388333162 853 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 14:32:17+00:00 1.0 1388333162 852 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 13:01:24+00:00 1.0 1388333162 850 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 10:02:27+00:00 1.0 1388333162 849 ℹ coin signal information ℹ date saturday 28 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-28 08:02:32+00:00 1.0 1388333162 848 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 28072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-28 01:34:19+00:00 1.0 1388333162 846 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:46+00:00 1.0 1388333162 836 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:46+00:00 1.0 1388333162 835 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-26 15:56:16+00:00 1.0 1388333162 832 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-26 15:32:28+00:00 1.0 1388333162 831 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 15:02:19+00:00 1.0 1388333162 829 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 13:02:18+00:00 1.0 1388333162 828 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 10:02:16+00:00 1.0 1388333162 825 ℹ️ coin signal information ℹ️ date thursday 26 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ️ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-26 08:02:18+00:00 1.0 1388333162 824 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-26 01:34:18+00:00 1.0 1388333162 821 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:21:14+00:00 1.0 1388333162 801 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 16:00:00+00:00 1.0 1388333162 800 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-21 15:57:03+00:00 1.0 1388333162 797 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-21 15:31:12+00:00 1.0 1388333162 796 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 15:01:04+00:00 1.0 1388333162 794 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 13:01:08+00:00 1.0 1388333162 792 ℹ coin signal information ℹ date saturday 21 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-21 08:01:02+00:00 1.0 1388333162 791 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-20 15:32:04+00:00 1.0 1388333162 624 5 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ next post is coin name ⭐️ 2018-05-19 14:54:07+00:00 1.0 1388333162 617 5 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 09:59:09+00:00 1.0 1388333162 600 5 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ next post is coin name ⭐️ 2018-05-17 17:55:04+00:00 1.0 1388333162 591 10 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 08:01:50+00:00 1.0 1388333162 447 ‼️ pump alert ‼️ we keep trading and pump separate from each other they are different by nature but both share same goal profit on our special channel we will pump today again pump date 240418 today start 559 pm gmt time exchange yobit pair xxxbtc join our pump channel for fast 200300 profit⬇️ 2018-04-24 12:49:38+00:00 1.0 1388333162 191 ✅please read this and make sure you know the difference ‼️recommendation professional middleterm trade based on technical and fundamental market analysis average time these trades reach our profit targets is 1 month ‼️pump signal most profitable 200300 and very fast cooperative trade action of our channel members to make the best profit using our pump signal you have to 1create account on yobit exchange this exchange hase coins with low cap perfect for pump main domains are wwwyobitnet and wwwyobitio this one usually faster 2we will anounce day and time we post coin name be loggedin before that 3 buy coin as soon as possible 4 wait for best price and use yobit chat on the right to attract more people 5 sell your coins and enjoy profit »our first pump already this week« 2018-03-06 08:44:28+00:00 1.0 1325133208 6832 coin signals for kucoin exchange follow us for best pump tracking service on kucoin ✅ signal low level for max profit ✅ high accuracy 100 ✅ signal before pump ✅ short term and quick profit signals only ✅ high end profit in short time trade with us for high end profit join fast link is open for few minutes only +dna5vebdq0mwmdu1 2022-01-13 04:49:58+00:00 1.0 1325133208 5786 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy for max profit on kucoincom 2020-10-31 16:55:03+00:00 1.0 1325133208 5785 ℹ️ 10 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:50:07+00:00 1.0 1325133208 5784 ℹ️ 20 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:40:09+00:00 1.0 1325133208 5783 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2020-10-31 16:30:05+00:00 1.0 1325133208 5782 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 16:00:12+00:00 1.0 1325133208 5781 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 15:00:07+00:00 1.0 1325133208 5780 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 13:00:11+00:00 1.0 1325133208 5779 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 11:00:04+00:00 1.0 1325133208 5778 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 09:00:04+00:00 1.0 1325133208 5777 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt indian time 1030 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2020-10-31 04:06:14+00:00 1.0 1325133208 5453 30 minutes left until the dip call login binance have everything ready team the trick to make some amazing profits is be focused to buy fast hold promote the coin profit and brag to your friends expected gain range 100 2020-08-02 15:30:05+00:00 1.0 1325133208 5374 only 5 minutes to go❗️ huge global fomo warming up next post will be globalfomocall login binance and keep an eye here‍ 2020-07-21 15:55:03+00:00 1.0 1325133208 5373 30 minutes left globalfomocall login binance now the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit promote the coin as a united team huge fomo warming up target 2x+ 2020-07-21 15:31:03+00:00 1.0 1325133208 5372 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ whales support will be there only 60 minutes are left for todays 2x global fomo call 2020-07-21 15:00:03+00:00 1.0 1325133208 5354 quick alert a new global fomo call scheduled for tommorow at 4pm gmt as the alt market is on fire more than ready for a new fomo call this trendy call will be big we expect 2x+ spikes in short term this will be a different massive trendy call with a lot of volume fomo be ready this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready date july 21tomorrow exchange binance expected target 2x time 4pm gmt 24h left global fomo call 2020-07-20 16:02:53+00:00 1.0 1325133208 5301 rlc is one of pump coin from our list of pump coins reason why its in our list could be seen clearly can you calculate profit pump coins are recommended to buy low level for insane gain 2020-07-18 06:16:26+00:00 1.0 1325133208 5186 fundamentally adx is very undervalued coin having only 7m cap with very active team adx is decentralized ad exchange plateform and a chinese project with strong development team adx having only 73million supply now our whales will pump it to the moon 2020-07-07 16:05:02+00:00 1.0 1325133208 5183 fundamentally adx is very undervalued coin having only 7m cap with very active team adx is decentralized ad exchange plateform and a chinese project with strong development team adx having only 73million supply now our whales will pump it to the moon 2020-07-07 16:03:43+00:00 1.0 1325133208 5177 adx adx adx lets 2x spike with our whales adx is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-07-07 16:00:07+00:00 1.0 1325133208 5176 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call our goal is more than 2x login binance and keep an eye here 2020-07-07 15:55:03+00:00 1.0 1325133208 5175 30 minutes left strong ta+fa call login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-07-07 15:30:06+00:00 1.0 1325133208 5174 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x strong ta+fa call 2020-07-07 15:00:11+00:00 1.0 1325133208 5171 4 hour left until the strong ta+fa call todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ our alt whale team is ready and our call will be on top of the binance for next 24h atleast 2020-07-07 12:00:04+00:00 1.0 1325133208 5155 great news for all to celebrate this great ongoing altseason our whales decided to push most awaiting strong ta+fa call which is sitting on fking bottom and waiting for a kick to moon on binance exchange our previous call oax was a pure gem were expecting 2x gain in short term this time as big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date july 7tomorrow exchange binance time 4pm gmt target 2x 2020-07-06 14:02:12+00:00 1.0 1325133208 5089 oax oax oax lets 2x spike with our whales oax is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-06-28 16:00:08+00:00 1.0 1325133208 5088 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call login binance and keep an eye here 2020-06-28 15:55:26+00:00 1.0 1325133208 5087 30 minutes left strong ta+fa call login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-06-28 15:30:03+00:00 1.0 1325133208 5086 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x strong ta+fa call 2020-06-28 15:00:36+00:00 1.0 1325133208 5084 4 hour left until the strong ta+fa call todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ our alt whale team is ready and our call will be on top of the binance for next 24h atleast 2020-06-28 12:00:05+00:00 1.0 1325133208 5082 hey folks today at 4pm gmt our whales will push a strong tafa based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 12 hours left until the most awaiting strong tafa call backed by our whales‼️ 2020-06-28 04:00:29+00:00 1.0 1325133208 5076 great news for all to celebrate this great ongoing altseason our whales decided to push a strong tafa based unicorn which is sitting on fking bottom and waiting for a kick to moon on binance exchange were expecting 2x gain in short term this time as big big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date june 28tomorrow exchange binance time 4pm gmt target 2x 2020-06-27 10:31:30+00:00 1.0 1325133208 5075 great news for all to celebrate this great ongoing altseason our whales decided to push a strong tafa based unicorn which is sitting on fking bottom and waiting for a kick to moon on binance exchange were expecting 2x gain in short term this time as big big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date june 28tomorrow exchange binance target 2x 2020-06-27 10:17:38+00:00 1.0 1325133208 4959 fundamentally nebl is next 2050x coin almost 6000 down from all time only 15million supply with strong fundamental will pump it to the moon in long term nebl is very undervalued project only 9 million marketcap with active development team 2020-06-14 16:02:39+00:00 1.0 1325133208 4952 nebl nebl nebl lets 2x spike with our whales nebl is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy low cap coin 2020-06-14 16:00:08+00:00 1.0 1325133208 4951 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be globalfomocall login binance and keep an eye here 2020-06-14 15:55:04+00:00 1.0 1325133208 4950 30 minutes left globalfomocall login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-06-14 15:30:12+00:00 1.0 1325133208 4949 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x global fomo call 2020-06-14 15:00:26+00:00 1.0 1325133208 4947 4 hour left until the global fomo call todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets spike 2x our alt whale team is ready and our call will be on top of the binance for next 24h atleast 2020-06-14 12:00:07+00:00 1.0 1325133208 4942 quick alert our next global fomo call scheduled for todays at 4pm gmt as the alt market is on fire more than ready for a new fomo call this free for all call will be big we expect 2x+ spikes and we actually expect a big second wave this time this will be a different massive call with a lot of volume be ready 20 big whales are again working with us but this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready date june 14today exchange binance spike 2x time 4pm gmt global fomo call 2020-06-14 05:28:41+00:00 1.0 1325133208 4936 pump results coin was loom low 144 high 399 welldone guys more than 2 x times repump count ✨3rd ✨time on your massive request analysis you need to create lower sell orders guys rather than dumping on buy orders dumping on buy orders generate red colors which fails the pump and prevent outsiders joining our pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-05-19 17:17:29+00:00 1.0 1325133208 4929 the coin to pump is loom exchange yobitnet target +200300 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-05-19 17:00:04+00:00 1.0 1325133208 4928 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-05-19 16:55:04+00:00 1.0 1325133208 4925 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-05-19 16:30:05+00:00 1.0 1325133208 4924 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 16:00:13+00:00 1.0 1325133208 4919 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19052020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-05-19 06:07:29+00:00 1.0 1325133208 4918 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190520 tuesday time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-05-18 18:29:28+00:00 1.0 1325133208 4914 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-22 17:31:01+00:00 1.0 1325133208 4913 pump results coin was aoa low 16 high 53 welldone guys 3 x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-22 17:19:20+00:00 1.0 1325133208 4906 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-22 17:00:40+00:00 1.0 1325133208 4905 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-22 16:55:04+00:00 1.0 1325133208 4904 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-22 16:50:05+00:00 1.0 1325133208 4903 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-22 16:40:09+00:00 1.0 1325133208 4902 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-22 16:30:06+00:00 1.0 1325133208 4901 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 16:00:06+00:00 1.0 1325133208 4900 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 15:00:14+00:00 1.0 1325133208 4899 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 13:00:08+00:00 1.0 1325133208 4898 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-22 11:00:32+00:00 1.0 1325133208 4897 ℹ coin signal information ℹ date wednesday 220420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-22 09:00:07+00:00 1.0 1325133208 4896 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 22042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-22 05:53:15+00:00 1.0 1325133208 4894 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-19 18:18:53+00:00 1.0 1325133208 4893 pump results coin was wpr open 70 high 206 welldone guys 3 x times on your demandwe listen you guys repump count 3rd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-19 17:35:49+00:00 1.0 1325133208 4886 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-19 17:00:07+00:00 1.0 1325133208 4885 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-19 16:55:04+00:00 1.0 1325133208 4884 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-19 16:50:04+00:00 1.0 1325133208 4883 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-19 16:40:04+00:00 1.0 1325133208 4882 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-19 16:30:06+00:00 1.0 1325133208 4881 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 16:00:15+00:00 1.0 1325133208 4880 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 15:00:09+00:00 1.0 1325133208 4879 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 13:00:04+00:00 1.0 1325133208 4878 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-19 11:00:17+00:00 1.0 1325133208 4877 ℹ coin signal information ℹ date sunday 190420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-19 10:00:11+00:00 1.0 1325133208 4876 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19042020 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-19 08:38:19+00:00 1.0 1325133208 4875 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190420 sunday time 5 pm gmt 2020-04-18 18:14:54+00:00 1.0 1325133208 4873 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins which naturally rise by the time 2020-04-14 17:51:38+00:00 1.0 1325133208 4872 pump results coin was snt low 222 high 440 welldone guys almost 2x timed on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin we dont pump scam coins we pump strong coins which naturally rise by the time ✅ 2020-04-14 17:45:21+00:00 1.0 1325133208 4865 the coin to pump is snt exchange yobitnet target +100200 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-14 17:00:06+00:00 1.0 1325133208 4864 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-14 16:55:04+00:00 1.0 1325133208 4863 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-14 16:50:04+00:00 1.0 1325133208 4862 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-14 16:40:05+00:00 1.0 1325133208 4861 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-14 16:30:04+00:00 1.0 1325133208 4860 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 16:00:06+00:00 1.0 1325133208 4859 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 15:00:09+00:00 1.0 1325133208 4858 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 13:00:19+00:00 1.0 1325133208 4857 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-14 11:00:05+00:00 1.0 1325133208 4856 ℹ coin signal information ℹ date tuesday 140420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-14 10:00:10+00:00 1.0 1325133208 4855 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 14042020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-14 08:16:31+00:00 1.0 1325133208 4853 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt 2020-04-11 03:10:56+00:00 1.0 1325133208 4852 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-10 17:35:48+00:00 1.0 1325133208 4851 pump results coin was wpr open 70 high 210 welldone guys 3 x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-10 17:29:54+00:00 1.0 1325133208 4844 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-10 17:00:12+00:00 1.0 1325133208 4843 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-10 16:55:04+00:00 1.0 1325133208 4842 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-10 16:50:04+00:00 1.0 1325133208 4841 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-10 16:40:04+00:00 1.0 1325133208 4840 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-10 16:30:04+00:00 1.0 1325133208 4839 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 16:00:05+00:00 1.0 1325133208 4838 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 15:00:05+00:00 1.0 1325133208 4837 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 13:00:05+00:00 1.0 1325133208 4836 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-10 11:00:04+00:00 1.0 1325133208 4835 ℹ coin signal information ℹ date friday 100420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-10 10:00:09+00:00 1.0 1325133208 4834 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10042020 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-10 07:48:02+00:00 1.0 1325133208 4832 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 100420 day friday time 5 pm gmt 2020-04-09 09:22:47+00:00 1.0 1325133208 4831 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-08 04:05:02+00:00 1.0 1325133208 4830 pump results coin was mth low 85 high 185 welldone guys more than 2 x times on your demandwe listen you guys repump count 5th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-04 22:42:16+00:00 1.0 1325133208 4825 the coin to pump is mth exchange yobitnet target +100 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-04 17:01:04+00:00 1.0 1325133208 4822 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-04 16:55:04+00:00 1.0 1325133208 4821 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-04 16:50:04+00:00 1.0 1325133208 4820 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-04 16:40:04+00:00 1.0 1325133208 4819 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-04 16:30:05+00:00 1.0 1325133208 4818 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 16:00:06+00:00 1.0 1325133208 4817 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 15:00:14+00:00 1.0 1325133208 4816 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 13:00:23+00:00 1.0 1325133208 4815 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-04 11:00:11+00:00 1.0 1325133208 4814 ℹ coin signal information ℹ date saturday 040420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-04 10:00:17+00:00 1.0 1325133208 4813 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 04042020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-04 09:00:08+00:00 1.0 1325133208 4812 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 040420 day saturday time 5 pm gmt 2020-04-03 16:24:06+00:00 1.0 1325133208 4810 pump results coin was aoa open 22 high 70 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-01 17:15:53+00:00 1.0 1325133208 4805 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-01 17:00:20+00:00 1.0 1325133208 4802 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-01 16:55:07+00:00 1.0 1325133208 4801 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-01 16:50:06+00:00 1.0 1325133208 4800 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-01 16:40:04+00:00 1.0 1325133208 4799 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-01 16:30:04+00:00 1.0 1325133208 4798 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 16:00:07+00:00 1.0 1325133208 4797 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 15:00:15+00:00 1.0 1325133208 4796 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 13:00:14+00:00 1.0 1325133208 4795 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-01 11:00:11+00:00 1.0 1325133208 4794 ℹ coin signal information ℹ date wednesday 010420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-01 10:00:18+00:00 1.0 1325133208 4792 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-01 08:00:09+00:00 1.0 1325133208 4788 pump results coin was fun open 40 high 128 welldone guys more than 3x times repump count ✨8th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-03-28 17:28:10+00:00 1.0 1325133208 4783 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-03-28 17:00:30+00:00 1.0 1325133208 4780 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-03-28 16:55:03+00:00 1.0 1325133208 4779 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-03-28 16:50:06+00:00 1.0 1325133208 4778 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-03-28 16:40:10+00:00 1.0 1325133208 4777 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-03-28 16:30:05+00:00 1.0 1325133208 4776 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 16:00:17+00:00 1.0 1325133208 4775 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 15:00:04+00:00 1.0 1325133208 4774 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 13:00:04+00:00 1.0 1325133208 4773 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-03-28 11:00:03+00:00 1.0 1325133208 4771 ℹ coin signal information ℹ date saturday 280320 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-03-28 06:59:41+00:00 1.0 1325133208 4770 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for upcoming pump on 280320 ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28032020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-03-27 13:41:48+00:00 1.0 1325133208 4763 pump results coin was fun open 33 high 68 welldone guys almost 2x times repump count ✨7th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-01-15 17:23:20+00:00 1.0 1325133208 4758 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-01-15 17:00:26+00:00 1.0 1325133208 4755 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-01-15 16:55:03+00:00 1.0 1325133208 4754 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-01-15 16:50:04+00:00 1.0 1325133208 4753 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-01-15 16:40:05+00:00 1.0 1325133208 4752 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-01-15 16:30:07+00:00 1.0 1325133208 4751 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 16:00:04+00:00 1.0 1325133208 4750 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 15:00:03+00:00 1.0 1325133208 4749 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 13:00:12+00:00 1.0 1325133208 4748 ℹ coin signal information ℹ date wednesday 15012020 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-01-15 11:00:06+00:00 1.0 1325133208 4746 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150120 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-01-15 08:18:44+00:00 1.0 1325133208 4744 pump results coin was bnt open 3291 high 7600 profit approx x 2 repump count ✨8th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-29 17:26:15+00:00 1.0 1325133208 4739 the coin to pump is bnt exchange yobitnet target +100 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-29 17:00:21+00:00 1.0 1325133208 4736 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-29 16:55:04+00:00 1.0 1325133208 4735 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-29 16:50:03+00:00 1.0 1325133208 4734 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-29 16:40:04+00:00 1.0 1325133208 4733 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-29 16:30:05+00:00 1.0 1325133208 4732 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 16:00:10+00:00 1.0 1325133208 4731 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 15:00:05+00:00 1.0 1325133208 4730 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 13:00:05+00:00 1.0 1325133208 4729 ℹ coin signal information ℹ date sunday 291219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-29 11:00:08+00:00 1.0 1325133208 4727 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 291219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-29 09:53:27+00:00 1.0 1325133208 4723 pump results coin was ren open 486 high 1380 profit approx x 3 repump count ✨4th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-17 17:25:18+00:00 1.0 1325133208 4718 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-17 17:00:20+00:00 1.0 1325133208 4715 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-17 16:55:04+00:00 1.0 1325133208 4714 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-17 16:50:04+00:00 1.0 1325133208 4713 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-17 16:40:07+00:00 1.0 1325133208 4712 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-17 16:30:04+00:00 1.0 1325133208 4711 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 16:00:05+00:00 1.0 1325133208 4710 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 15:00:05+00:00 1.0 1325133208 4709 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 13:00:15+00:00 1.0 1325133208 4708 ℹ coin signal information ℹ date tuesday 171219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-17 11:00:05+00:00 1.0 1325133208 4706 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 171219 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-17 08:27:24+00:00 1.0 1325133208 4704 pump results coin was bnt open 3611 high 8995 profit approx x 2 repump count ✨7th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-13 17:23:16+00:00 1.0 1325133208 4699 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-13 17:00:19+00:00 1.0 1325133208 4696 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-13 16:55:04+00:00 1.0 1325133208 4695 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-13 16:50:04+00:00 1.0 1325133208 4694 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-13 16:40:05+00:00 1.0 1325133208 4693 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-13 16:30:04+00:00 1.0 1325133208 4692 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 16:00:05+00:00 1.0 1325133208 4691 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 15:00:05+00:00 1.0 1325133208 4690 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 13:00:24+00:00 1.0 1325133208 4689 ℹ coin signal information ℹ date friday 131219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-13 10:56:58+00:00 1.0 1325133208 4687 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 131219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-13 08:41:22+00:00 1.0 1325133208 4682 pump results coin was bnt open 3490 high 9500 profit approx x 3 repump count ✨6th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-15 17:27:12+00:00 1.0 1325133208 4677 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-15 17:00:27+00:00 1.0 1325133208 4674 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-15 16:55:05+00:00 1.0 1325133208 4673 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-15 16:50:06+00:00 1.0 1325133208 4672 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-15 16:40:04+00:00 1.0 1325133208 4671 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-15 16:30:07+00:00 1.0 1325133208 4670 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 16:00:07+00:00 1.0 1325133208 4669 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 15:00:24+00:00 1.0 1325133208 4668 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 13:00:34+00:00 1.0 1325133208 4667 ℹ coin signal information ℹ date friday 151119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-15 11:00:06+00:00 1.0 1325133208 4665 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 151119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-15 09:22:12+00:00 1.0 1325133208 4663 pump analysis coin was mda low 7800 high 65000 profit 700 guys more than 8x times repump count 4th time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-12 17:42:29+00:00 1.0 1325133208 4658 the coin to pump is mda exchange yobitnet target +100200 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-12 17:00:19+00:00 1.0 1325133208 4655 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-12 16:55:04+00:00 1.0 1325133208 4654 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-12 16:50:04+00:00 1.0 1325133208 4653 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-12 16:40:05+00:00 1.0 1325133208 4652 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-12 16:30:04+00:00 1.0 1325133208 4651 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 16:00:08+00:00 1.0 1325133208 4650 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 15:00:25+00:00 1.0 1325133208 4649 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 13:00:09+00:00 1.0 1325133208 4647 ℹ coin signal information ℹ date tuesday 121119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-12 11:00:05+00:00 1.0 1325133208 4645 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-12 08:00:53+00:00 1.0 1325133208 4633 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-10-27 10:49:40+00:00 1.0 1325133208 4622 pump analysis coin was mda low 8736 high 19000 guys more than 2x times as we choose this coin on your demand your early selling in beginning of pump halts the pumpvery less volume produced appearance of red colors created bottleneck in pumpinganyways repump count 3rd time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-24 17:21:05+00:00 1.0 1325133208 4617 the coin to pump is mda exchange yobitnet target +300 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-24 17:00:20+00:00 1.0 1325133208 4614 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-24 16:55:04+00:00 1.0 1325133208 4613 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-24 16:50:04+00:00 1.0 1325133208 4612 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-24 16:40:04+00:00 1.0 1325133208 4611 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-24 16:30:04+00:00 1.0 1325133208 4610 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 16:00:06+00:00 1.0 1325133208 4609 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 15:00:10+00:00 1.0 1325133208 4608 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 13:00:08+00:00 1.0 1325133208 4606 ℹ coin signal information ℹ date thursday 241019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-24 11:00:05+00:00 1.0 1325133208 4604 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 241019 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-24 09:56:12+00:00 1.0 1325133208 4602 pump results coin was fun low 40 high 70 welldone guys almost 2x times repump count ✨6th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-22 17:34:08+00:00 1.0 1325133208 4597 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-22 17:00:05+00:00 1.0 1325133208 4595 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-22 16:55:05+00:00 1.0 1325133208 4594 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-22 16:50:04+00:00 1.0 1325133208 4593 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-22 16:40:04+00:00 1.0 1325133208 4592 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-22 16:30:05+00:00 1.0 1325133208 4591 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 16:00:08+00:00 1.0 1325133208 4590 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 15:00:05+00:00 1.0 1325133208 4589 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 13:00:12+00:00 1.0 1325133208 4587 ℹ coin signal information ℹ date tuesday 221019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-22 11:21:39+00:00 1.0 1325133208 4585 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 221019 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-22 10:04:37+00:00 1.0 1325133208 4583 pump results coin was blz low 281 high 580 welldone guys almost 2x times repump count ✨5th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-12 17:50:17+00:00 1.0 1325133208 4578 coin to pump is blz exchange yobitnet target +100200 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-12 17:00:12+00:00 1.0 1325133208 4576 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-12 16:55:04+00:00 1.0 1325133208 4575 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-12 16:50:04+00:00 1.0 1325133208 4574 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-12 16:40:04+00:00 1.0 1325133208 4573 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-12 16:30:04+00:00 1.0 1325133208 4572 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 16:00:06+00:00 1.0 1325133208 4571 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 15:00:08+00:00 1.0 1325133208 4570 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 13:00:10+00:00 1.0 1325133208 4568 ℹ coin signal information ℹ date saturday 121019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-12 11:40:30+00:00 1.0 1325133208 4566 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-12 06:56:05+00:00 1.0 1325133208 4564 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-10-06 17:45:09+00:00 1.0 1325133208 4563 pump results coin was snt low 149 high 355 welldone guys more than 2x times repump count 2nd time within 02 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-05 17:16:12+00:00 1.0 1325133208 4558 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-05 17:00:25+00:00 1.0 1325133208 4554 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-05 16:55:06+00:00 1.0 1325133208 4553 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-05 16:50:05+00:00 1.0 1325133208 4552 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-05 16:40:05+00:00 1.0 1325133208 4551 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-05 16:30:07+00:00 1.0 1325133208 4550 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 16:00:13+00:00 1.0 1325133208 4549 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 15:00:08+00:00 1.0 1325133208 4548 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 13:00:14+00:00 1.0 1325133208 4546 ℹ coin signal information ℹ date saturday 051019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-05 09:54:20+00:00 1.0 1325133208 4544 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 051019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-05 06:46:30+00:00 1.0 1325133208 4542 pump results coin was snt low 149 high 517 welldone guys more than 3x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-02 17:26:02+00:00 1.0 1325133208 4537 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-02 17:00:20+00:00 1.0 1325133208 4534 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-02 16:55:03+00:00 1.0 1325133208 4533 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-02 16:50:02+00:00 1.0 1325133208 4532 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-02 16:40:04+00:00 1.0 1325133208 4531 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-02 16:30:05+00:00 1.0 1325133208 4530 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 16:00:08+00:00 1.0 1325133208 4529 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 15:01:30+00:00 1.0 1325133208 4527 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 13:00:23+00:00 1.0 1325133208 4524 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 021019 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-02 01:38:26+00:00 1.0 1325133208 4522 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-09-30 19:12:14+00:00 1.0 1325133208 4521 pump results coin was mda low 9501 high 22286 welldone guys more than 2x times repump count 2nd time within 15 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-30 17:51:02+00:00 1.0 1325133208 4514 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-30 16:55:03+00:00 1.0 1325133208 4513 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-30 16:50:03+00:00 1.0 1325133208 4512 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-30 16:40:03+00:00 1.0 1325133208 4511 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-30 16:30:04+00:00 1.0 1325133208 4510 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 16:00:06+00:00 1.0 1325133208 4509 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 15:00:17+00:00 1.0 1325133208 4507 ℹ coin signal information ℹ date monday 300919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-09-30 11:00:04+00:00 1.0 1325133208 4505 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 300919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-30 06:32:06+00:00 1.0 1325133208 4503 pump results coin was fun open 46 high 125 welldone guys almost 3x times repump count ✨5th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-28 17:15:12+00:00 1.0 1325133208 4496 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-28 16:55:03+00:00 1.0 1325133208 4495 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-28 16:50:03+00:00 1.0 1325133208 4494 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-28 16:40:03+00:00 1.0 1325133208 4493 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-28 16:30:02+00:00 1.0 1325133208 4492 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 16:00:03+00:00 1.0 1325133208 4491 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 15:00:13+00:00 1.0 1325133208 4490 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 13:00:22+00:00 1.0 1325133208 4489 ℹ coin signal information ℹ date saturday 280919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-28 11:00:02+00:00 1.0 1325133208 4488 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 280919 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-28 07:52:57+00:00 1.0 1325133208 4486 pump results coin was gvt low 11201 high 23000 as we got lot of message to pump out previous coin gvt so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-26 17:14:26+00:00 1.0 1325133208 4481 the coin to pump is gvt exchange yobitnet target +200400 market gvtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-26 17:00:06+00:00 1.0 1325133208 4480 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-26 16:55:04+00:00 1.0 1325133208 4479 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-26 16:50:06+00:00 1.0 1325133208 4478 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-26 16:40:05+00:00 1.0 1325133208 4477 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-26 16:30:07+00:00 1.0 1325133208 4476 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 16:00:07+00:00 1.0 1325133208 4475 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 15:00:11+00:00 1.0 1325133208 4474 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 13:00:05+00:00 1.0 1325133208 4473 ℹ coin signal information ℹ date thursday 260919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-26 11:00:08+00:00 1.0 1325133208 4472 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-26 08:00:07+00:00 1.0 1325133208 4470 pump results coin was bat low 1834 high 3776 as we got lot of message to pump out last coin bat so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-24 17:13:42+00:00 1.0 1325133208 4465 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-24 17:00:10+00:00 1.0 1325133208 4463 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-24 16:55:02+00:00 1.0 1325133208 4462 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-24 16:51:27+00:00 1.0 1325133208 4461 ℹ️ 15 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-24 16:45:19+00:00 1.0 1325133208 4460 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-24 16:30:06+00:00 1.0 1325133208 4459 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 16:00:05+00:00 1.0 1325133208 4458 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 15:00:07+00:00 1.0 1325133208 4457 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 13:00:09+00:00 1.0 1325133208 4456 ℹ coin signal information ℹ date tuesday 240919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-24 10:14:53+00:00 1.0 1325133208 4455 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 240919 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-24 08:48:35+00:00 1.0 1325133208 4453 pump results coin was mana low 300 high 600 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-23 17:22:15+00:00 1.0 1325133208 4446 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-23 16:55:03+00:00 1.0 1325133208 4445 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-23 16:50:02+00:00 1.0 1325133208 4444 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-23 16:40:01+00:00 1.0 1325133208 4443 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-23 16:30:02+00:00 1.0 1325133208 4442 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 16:00:10+00:00 1.0 1325133208 4441 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 15:00:10+00:00 1.0 1325133208 4440 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 13:00:18+00:00 1.0 1325133208 4439 ℹ coin signal information ℹ date monday 230919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-23 11:17:14+00:00 1.0 1325133208 4438 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-23 08:40:34+00:00 1.0 1325133208 4432 pump results coin was qkc open 74 reached 200 welldone guys almost 3 x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-15 17:27:59+00:00 1.0 1325133208 4427 the coin to pump is qkc exchange yobitnet target +200 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-15 17:00:11+00:00 1.0 1325133208 4425 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-15 16:55:03+00:00 1.0 1325133208 4424 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-15 16:50:03+00:00 1.0 1325133208 4423 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-15 16:40:03+00:00 1.0 1325133208 4422 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-15 16:30:03+00:00 1.0 1325133208 4421 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 16:00:04+00:00 1.0 1325133208 4420 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 15:00:12+00:00 1.0 1325133208 4419 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 13:00:05+00:00 1.0 1325133208 4418 ℹ coin signal information ℹ date friday 150919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-15 11:00:04+00:00 1.0 1325133208 4417 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150919 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-15 08:18:40+00:00 1.0 1325133208 4415 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 17:46:41+00:00 1.0 1325133208 4408 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-12 16:55:09+00:00 1.0 1325133208 4407 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-12 16:50:07+00:00 1.0 1325133208 4406 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-12 16:40:09+00:00 1.0 1325133208 4405 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-12 16:30:06+00:00 1.0 1325133208 4404 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 16:00:07+00:00 1.0 1325133208 4403 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 15:00:12+00:00 1.0 1325133208 4402 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 13:00:18+00:00 1.0 1325133208 4401 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-12 07:28:08+00:00 1.0 1325133208 4384 pump results coin was mth low 123 high 362 welldone guys 25 x times on your demandwe listen you guys repump count 4th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-06 18:25:35+00:00 1.0 1325133208 4378 the coin to pump is mth exchange yobitnet target +300500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-06 17:00:14+00:00 1.0 1325133208 4376 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-06 16:55:04+00:00 1.0 1325133208 4375 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-06 16:50:04+00:00 1.0 1325133208 4374 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-06 16:40:03+00:00 1.0 1325133208 4373 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-06 16:30:06+00:00 1.0 1325133208 4372 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 16:00:07+00:00 1.0 1325133208 4371 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 15:00:06+00:00 1.0 1325133208 4370 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 13:00:07+00:00 1.0 1325133208 4368 pump results coin was snm low 90 high 330 welldone guys 3x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-04 17:30:12+00:00 1.0 1325133208 4363 coin to pump is snm exchange yobitnet target +500 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-04 17:00:18+00:00 1.0 1325133208 4360 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-04 16:55:04+00:00 1.0 1325133208 4359 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-04 16:50:04+00:00 1.0 1325133208 4358 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-04 16:40:05+00:00 1.0 1325133208 4357 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-04 16:30:07+00:00 1.0 1325133208 4356 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 16:00:07+00:00 1.0 1325133208 4355 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 15:00:07+00:00 1.0 1325133208 4354 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 13:00:05+00:00 1.0 1325133208 4353 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-04 11:00:03+00:00 1.0 1325133208 4349 pump results coin was gvt open 14000 high 49999 welldone guys more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-24 18:37:38+00:00 1.0 1325133208 4344 the coin to pump is gvt exchange yobitnet target +200400 market gvtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-24 17:00:16+00:00 1.0 1325133208 4341 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-24 16:55:04+00:00 1.0 1325133208 4340 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-24 16:50:04+00:00 1.0 1325133208 4339 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-24 16:40:04+00:00 1.0 1325133208 4338 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-24 16:30:03+00:00 1.0 1325133208 4337 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 16:00:04+00:00 1.0 1325133208 4336 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 15:00:04+00:00 1.0 1325133208 4335 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 13:00:10+00:00 1.0 1325133208 4334 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-24 11:00:06+00:00 1.0 1325133208 4330 pump results coin was tfd open 28 high 120 welldone guys more than 4x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-17 17:13:10+00:00 1.0 1325133208 4325 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-17 17:00:17+00:00 1.0 1325133208 4322 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-17 16:55:04+00:00 1.0 1325133208 4321 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-17 16:50:03+00:00 1.0 1325133208 4320 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-17 16:40:03+00:00 1.0 1325133208 4319 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-17 16:30:04+00:00 1.0 1325133208 4318 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 16:00:08+00:00 1.0 1325133208 4317 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 15:00:04+00:00 1.0 1325133208 4316 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 13:00:13+00:00 1.0 1325133208 4313 pump results coin was dlt open 452 high 1180 welldone guys more than 2x times on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-16 17:13:23+00:00 1.0 1325133208 4308 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-16 17:00:21+00:00 1.0 1325133208 4305 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-16 16:55:05+00:00 1.0 1325133208 4304 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-16 16:50:07+00:00 1.0 1325133208 4303 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-16 16:40:03+00:00 1.0 1325133208 4302 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-16 16:30:04+00:00 1.0 1325133208 4301 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 16:00:12+00:00 1.0 1325133208 4300 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 15:00:07+00:00 1.0 1325133208 4299 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 13:00:04+00:00 1.0 1325133208 4298 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-16 11:00:27+00:00 1.0 1325133208 4295 pump results coin was dlt open 460 high 1186 welldone guys more than 2x times on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-15 17:09:18+00:00 1.0 1325133208 4290 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-15 17:00:23+00:00 1.0 1325133208 4287 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-15 16:55:28+00:00 1.0 1325133208 4286 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-15 16:50:19+00:00 1.0 1325133208 4285 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-15 16:40:22+00:00 1.0 1325133208 4284 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-15 16:30:28+00:00 1.0 1325133208 4283 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 16:00:05+00:00 1.0 1325133208 4282 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 15:00:04+00:00 1.0 1325133208 4281 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 13:00:11+00:00 1.0 1325133208 4280 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-15 11:00:08+00:00 1.0 1325133208 4277 pump results coin was wpr open 60 high 150 on your demandwe listen you guys ✨ more than 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-12 17:15:41+00:00 1.0 1325133208 4272 coin to pump is wpr exchange yobitnet target 100200 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-12 17:00:17+00:00 1.0 1325133208 4269 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-12 16:55:04+00:00 1.0 1325133208 4268 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-12 16:50:05+00:00 1.0 1325133208 4267 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-12 16:40:04+00:00 1.0 1325133208 4266 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-12 16:30:07+00:00 1.0 1325133208 4265 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 16:00:13+00:00 1.0 1325133208 4264 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 15:00:06+00:00 1.0 1325133208 4263 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 13:00:11+00:00 1.0 1325133208 4262 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-12 12:00:20+00:00 1.0 1325133208 4259 pump results coin was mana low 340 high 649 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-11 17:22:09+00:00 1.0 1325133208 4254 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-11 17:00:15+00:00 1.0 1325133208 4251 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-11 16:55:04+00:00 1.0 1325133208 4250 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-11 16:50:04+00:00 1.0 1325133208 4249 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-11 16:40:03+00:00 1.0 1325133208 4248 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-11 16:30:06+00:00 1.0 1325133208 4247 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 16:00:13+00:00 1.0 1325133208 4246 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 15:00:04+00:00 1.0 1325133208 4245 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 13:00:19+00:00 1.0 1325133208 4244 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-11 11:00:08+00:00 1.0 1325133208 4241 pump results on binance coin was storj open 1315 high 1440 profit 10 powered by cryptosignalcrazy 2019-08-11 04:15:26+00:00 1.0 1325133208 4239 05 minutes left the next message will be the coin name with targets❗️ 2019-08-10 19:55:11+00:00 1.0 1325133208 4238 15 minutes left make sure you are logged in your binance account❗️ 2019-08-10 19:45:05+00:00 1.0 1325133208 4237 30 minutes left thats it team were ready prepared for this giant that is coming 2019-08-10 19:29:58+00:00 1.0 1325133208 4234 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big second wave this time 2019-08-10 16:00:10+00:00 1.0 1325133208 4232 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:34:05+00:00 1.0 1325133208 4231 pump results coin was mana open 292 high 800 welldone guys nearly 3 x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-09 17:13:41+00:00 1.0 1325133208 4226 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-09 17:00:19+00:00 1.0 1325133208 4223 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-09 16:55:04+00:00 1.0 1325133208 4222 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-09 16:50:08+00:00 1.0 1325133208 4221 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-09 16:40:05+00:00 1.0 1325133208 4220 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-09 16:30:07+00:00 1.0 1325133208 4219 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 16:00:04+00:00 1.0 1325133208 4218 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 15:00:04+00:00 1.0 1325133208 4217 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 13:00:09+00:00 1.0 1325133208 4216 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-09 11:00:37+00:00 1.0 1325133208 4213 pump results coin was req open 138 high 194 second wave open 192 high 245 welldone guys on your demandwe listen you guys repump count 3rd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-04 17:17:30+00:00 1.0 1325133208 4208 the coin to pump is req exchange yobitnet target 100200 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-04 17:00:15+00:00 1.0 1325133208 4205 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-04 16:55:04+00:00 1.0 1325133208 4204 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-04 16:50:03+00:00 1.0 1325133208 4203 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-04 16:40:06+00:00 1.0 1325133208 4202 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-04 16:30:05+00:00 1.0 1325133208 4201 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 16:00:03+00:00 1.0 1325133208 4200 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 15:00:04+00:00 1.0 1325133208 4199 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 13:00:07+00:00 1.0 1325133208 4198 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-04 11:00:08+00:00 1.0 1325133208 4195 pump results coin was fun open 24 high 71 welldone guys almost 3x times repump count ✨4th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-03 17:12:02+00:00 1.0 1325133208 4190 coin to pump is fun exchange yobitnet target upto 100300 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-03 17:00:17+00:00 1.0 1325133208 4187 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-03 16:55:03+00:00 1.0 1325133208 4186 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-03 16:50:05+00:00 1.0 1325133208 4185 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-03 16:40:03+00:00 1.0 1325133208 4184 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-03 16:30:05+00:00 1.0 1325133208 4183 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 16:00:08+00:00 1.0 1325133208 4182 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 15:00:08+00:00 1.0 1325133208 4181 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 13:00:12+00:00 1.0 1325133208 4180 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-03 11:00:17+00:00 1.0 1325133208 4177 pump results coin was mana open 501 high 1501 welldone guys 3x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-29 17:21:23+00:00 1.0 1325133208 4172 coin to pump is mana exchange yobitnet target +200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-29 17:00:20+00:00 1.0 1325133208 4169 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-29 16:55:03+00:00 1.0 1325133208 4168 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-29 16:50:03+00:00 1.0 1325133208 4167 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-29 16:40:25+00:00 1.0 1325133208 4166 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-29 16:30:05+00:00 1.0 1325133208 4165 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 16:00:17+00:00 1.0 1325133208 4164 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 15:00:48+00:00 1.0 1325133208 4163 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 13:00:23+00:00 1.0 1325133208 4162 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-29 11:00:10+00:00 1.0 1325133208 4159 pump results coin was qkc open 201 reached 600 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-28 17:36:53+00:00 1.0 1325133208 4154 the coin to pump is qkc exchange yobitnet target +200 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-28 17:00:16+00:00 1.0 1325133208 4151 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-28 16:55:03+00:00 1.0 1325133208 4150 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-28 16:50:04+00:00 1.0 1325133208 4149 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-28 16:40:03+00:00 1.0 1325133208 4148 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-28 16:30:05+00:00 1.0 1325133208 4147 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 16:00:14+00:00 1.0 1325133208 4146 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 15:00:03+00:00 1.0 1325133208 4145 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 13:00:27+00:00 1.0 1325133208 4144 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-28 11:00:07+00:00 1.0 1325133208 4141 pump results coin was matic open 116 high 311 welldone guys more than 2x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-27 17:20:41+00:00 1.0 1325133208 4136 coin to pump is matic exchange yobitnet target upto 300500 above market maticbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-27 17:00:17+00:00 1.0 1325133208 4133 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-27 16:55:03+00:00 1.0 1325133208 4132 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-27 16:50:05+00:00 1.0 1325133208 4131 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-27 16:40:03+00:00 1.0 1325133208 4130 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-27 16:30:06+00:00 1.0 1325133208 4129 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 16:00:05+00:00 1.0 1325133208 4128 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 15:00:11+00:00 1.0 1325133208 4127 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 13:00:30+00:00 1.0 1325133208 4126 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-27 11:01:17+00:00 1.0 1325133208 4123 pump results coin was fun low 29 high 85 welldone guys more than 2x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-21 17:29:00+00:00 1.0 1325133208 4118 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-21 17:00:16+00:00 1.0 1325133208 4115 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-21 16:55:04+00:00 1.0 1325133208 4114 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-21 16:50:04+00:00 1.0 1325133208 4113 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-21 16:40:03+00:00 1.0 1325133208 4112 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-21 16:30:03+00:00 1.0 1325133208 4111 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 16:00:07+00:00 1.0 1325133208 4110 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 15:00:07+00:00 1.0 1325133208 4109 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 13:00:11+00:00 1.0 1325133208 4108 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-21 11:00:05+00:00 1.0 1325133208 4105 pump results coin was blz open 409 high 1290 welldone guys more than 3x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-13 17:34:41+00:00 1.0 1325133208 4100 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-13 17:00:49+00:00 1.0 1325133208 4097 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-13 16:55:04+00:00 1.0 1325133208 4096 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-13 16:50:02+00:00 1.0 1325133208 4095 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-13 16:40:03+00:00 1.0 1325133208 4094 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-13 16:30:04+00:00 1.0 1325133208 4093 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 16:00:07+00:00 1.0 1325133208 4092 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 15:00:03+00:00 1.0 1325133208 4091 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 13:00:07+00:00 1.0 1325133208 4086 pump results coin was fun low 26 high 123 welldone guys almost 5x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-11 17:22:16+00:00 1.0 1325133208 4081 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-11 17:00:17+00:00 1.0 1325133208 4078 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-11 16:55:05+00:00 1.0 1325133208 4077 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-11 16:50:04+00:00 1.0 1325133208 4076 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-11 16:40:03+00:00 1.0 1325133208 4075 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-11 16:30:14+00:00 1.0 1325133208 4074 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 16:00:10+00:00 1.0 1325133208 4073 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 15:00:03+00:00 1.0 1325133208 4072 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 13:00:03+00:00 1.0 1325133208 4069 pump results coin was ppt low 8204 high 20698 welldone guys more than 2x times repump count ✨7th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-07 17:17:12+00:00 1.0 1325133208 4065 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-07 17:00:16+00:00 1.0 1325133208 4062 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-07 16:55:04+00:00 1.0 1325133208 4061 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-07 16:50:04+00:00 1.0 1325133208 4060 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-07 16:40:03+00:00 1.0 1325133208 4059 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-07 16:30:05+00:00 1.0 1325133208 4058 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 16:00:06+00:00 1.0 1325133208 4057 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 15:00:04+00:00 1.0 1325133208 4056 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 13:00:10+00:00 1.0 1325133208 4055 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-07 11:00:07+00:00 1.0 1325133208 4052 pump results coin was fun open 35 high 140 welldone guys 4x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-06 17:13:46+00:00 1.0 1325133208 4047 coin to pump is fun exchange yobitnet target upto 400500 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-06 17:00:18+00:00 1.0 1325133208 4044 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-06 16:55:03+00:00 1.0 1325133208 4043 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-06 16:50:04+00:00 1.0 1325133208 4042 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-06 16:40:03+00:00 1.0 1325133208 4041 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-06 16:30:04+00:00 1.0 1325133208 4040 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 16:00:07+00:00 1.0 1325133208 4039 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 15:00:10+00:00 1.0 1325133208 4038 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 13:00:05+00:00 1.0 1325133208 4037 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-06 11:01:00+00:00 1.0 1325133208 4034 pump results coin was lend low 61 high 190 welldone guys 3x times repump count ✨4th ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-05 17:29:18+00:00 1.0 1325133208 4029 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-05 17:00:27+00:00 1.0 1325133208 4026 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-05 16:55:03+00:00 1.0 1325133208 4025 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-05 16:50:09+00:00 1.0 1325133208 4024 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-05 16:40:07+00:00 1.0 1325133208 4023 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-05 16:30:03+00:00 1.0 1325133208 4022 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 16:00:04+00:00 1.0 1325133208 4021 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 15:00:04+00:00 1.0 1325133208 4020 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 13:00:03+00:00 1.0 1325133208 4019 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-05 11:00:03+00:00 1.0 1325133208 4001 pump results coin was ppt low 6000 high 20296 welldone guys more than 3x times repump count ✨6th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-26 17:11:49+00:00 1.0 1325133208 3996 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-26 17:00:17+00:00 1.0 1325133208 3993 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-26 16:55:03+00:00 1.0 1325133208 3992 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-26 16:50:08+00:00 1.0 1325133208 3991 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-26 16:40:04+00:00 1.0 1325133208 3990 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-26 16:30:06+00:00 1.0 1325133208 3989 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 16:00:05+00:00 1.0 1325133208 3988 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 15:00:10+00:00 1.0 1325133208 3987 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 13:00:10+00:00 1.0 1325133208 3986 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-26 11:00:06+00:00 1.0 1325133208 3983 pump results coin was bat low 2718 high 4449 good volume ✈️even in red market we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-25 17:57:48+00:00 1.0 1325133208 3978 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-25 17:00:28+00:00 1.0 1325133208 3975 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-25 16:55:03+00:00 1.0 1325133208 3974 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-25 16:50:04+00:00 1.0 1325133208 3973 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-25 16:40:03+00:00 1.0 1325133208 3972 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-25 16:30:06+00:00 1.0 1325133208 3971 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 16:00:08+00:00 1.0 1325133208 3970 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 15:00:11+00:00 1.0 1325133208 3969 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-25 11:00:06+00:00 1.0 1325133208 3964 pump results coin was blz open 635 high 1386 welldone guys more than 2x times repump count ✨3rd✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-22 17:20:35+00:00 1.0 1325133208 3959 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-22 17:00:18+00:00 1.0 1325133208 3956 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-22 16:55:04+00:00 1.0 1325133208 3955 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-22 16:50:05+00:00 1.0 1325133208 3954 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-22 16:40:03+00:00 1.0 1325133208 3953 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-22 16:30:04+00:00 1.0 1325133208 3952 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 16:00:10+00:00 1.0 1325133208 3951 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 15:00:06+00:00 1.0 1325133208 3950 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-22 11:00:08+00:00 1.0 1325133208 3948 curative pump on your massive request same coin we chosen from previous pump we followed yours choice pump results coin was req open 220 high 380 second wave open 214 high452 welldone guys 2x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump in on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-21 17:20:12+00:00 1.0 1325133208 3944 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-21 17:00:18+00:00 1.0 1325133208 3941 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-21 16:55:04+00:00 1.0 1325133208 3940 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-21 16:50:08+00:00 1.0 1325133208 3939 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-21 16:40:04+00:00 1.0 1325133208 3938 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-21 16:30:28+00:00 1.0 1325133208 3937 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 16:01:02+00:00 1.0 1325133208 3936 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 15:01:30+00:00 1.0 1325133208 3935 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 13:00:15+00:00 1.0 1325133208 3934 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-21 11:00:09+00:00 1.0 1325133208 3931 consecutivecurative pump on your massive request same coin we chosen from last six pumps we followed yours choice pump results coin was pax open 10066 high 20000 welldone guys 2x times on your demandwe listen you guys repump count 7th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-20 17:11:20+00:00 1.0 1325133208 3926 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-20 17:00:24+00:00 1.0 1325133208 3913 pump results coin was lend open 117 high 300 welldone guys almost 3x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-18 17:16:49+00:00 1.0 1325133208 3908 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-18 17:00:10+00:00 1.0 1325133208 3897 pump results coin was lend open 98 high 295 welldone guys almost 3x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-15 17:19:48+00:00 1.0 1325133208 3892 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-15 17:00:16+00:00 1.0 1325133208 3890 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-15 16:55:04+00:00 1.0 1325133208 3889 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-15 16:50:05+00:00 1.0 1325133208 3888 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-15 16:40:04+00:00 1.0 1325133208 3887 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-15 16:30:04+00:00 1.0 1325133208 3886 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 16:00:41+00:00 1.0 1325133208 3885 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 15:00:15+00:00 1.0 1325133208 3884 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 13:00:18+00:00 1.0 1325133208 3883 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-15 11:00:07+00:00 1.0 1325133208 3880 pump results coin was ppt low 11501 high 36990 welldone guys more than 3x times repump count ✨5th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-14 17:10:39+00:00 1.0 1325133208 3875 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-14 17:00:13+00:00 1.0 1325133208 3873 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-14 16:55:04+00:00 1.0 1325133208 3872 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-14 16:50:32+00:00 1.0 1325133208 3871 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-14 16:40:04+00:00 1.0 1325133208 3870 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-14 16:30:15+00:00 1.0 1325133208 3869 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 16:00:37+00:00 1.0 1325133208 3868 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 15:00:04+00:00 1.0 1325133208 3867 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 13:00:18+00:00 1.0 1325133208 3866 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-14 11:00:10+00:00 1.0 1325133208 3861 pump results coin was dlt open 1552 high 4700 welldone guys more than 3x times on your demandwe listen you guys repump count 2nd time on your massive request better height from previous pump ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-12 17:14:12+00:00 1.0 1325133208 3856 the coin to pump is dlt exchange yobitnet target +300 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-12 17:00:12+00:00 1.0 1325133208 3854 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-12 16:55:07+00:00 1.0 1325133208 3853 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-12 16:50:27+00:00 1.0 1325133208 3852 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-12 16:40:06+00:00 1.0 1325133208 3851 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-12 16:30:06+00:00 1.0 1325133208 3850 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 16:00:18+00:00 1.0 1325133208 3849 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 15:00:06+00:00 1.0 1325133208 3848 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 13:00:18+00:00 1.0 1325133208 3847 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-12 11:57:18+00:00 1.0 1325133208 3844 consecutive pump on your massive request same coin we chosen from last five pumps we followed yours choice pump results coin was pax low 13000 high 30000 welldone guys more than 2x times on your demandwe listen you guys repump count 6th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-11 17:21:49+00:00 1.0 1325133208 3839 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-11 17:00:13+00:00 1.0 1325133208 3837 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-11 16:55:04+00:00 1.0 1325133208 3836 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-11 16:50:04+00:00 1.0 1325133208 3835 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-11 16:40:04+00:00 1.0 1325133208 3834 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-11 16:30:08+00:00 1.0 1325133208 3833 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 16:00:46+00:00 1.0 1325133208 3832 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 15:02:03+00:00 1.0 1325133208 3831 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 13:00:07+00:00 1.0 1325133208 3830 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-11 11:01:41+00:00 1.0 1325133208 3799 consecutive pump on your massive request same coin we chosen from last four pumps we followed yours choice pump results coin was pax low 11448 high 39995 welldone guys more than 3x times on your demandwe listen you guys repump count 5th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-23 17:17:39+00:00 1.0 1325133208 3796 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-23 17:00:17+00:00 1.0 1325133208 3794 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-23 16:55:29+00:00 1.0 1325133208 3793 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-23 16:50:07+00:00 1.0 1325133208 3792 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-23 16:40:10+00:00 1.0 1325133208 3791 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-23 16:36:27+00:00 1.0 1325133208 3790 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 16:03:39+00:00 1.0 1325133208 3789 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 15:00:04+00:00 1.0 1325133208 3788 ℹ️ 3 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 14:00:19+00:00 1.0 1325133208 3780 pump results coin was lend open 116 high 300 welldone guys almost 3x times as targeted 200 we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-19 17:26:13+00:00 1.0 1325133208 3777 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-19 17:00:12+00:00 1.0 1325133208 3775 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-19 16:55:04+00:00 1.0 1325133208 3774 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-19 16:50:04+00:00 1.0 1325133208 3773 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-19 16:40:03+00:00 1.0 1325133208 3772 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-19 16:30:05+00:00 1.0 1325133208 3771 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 16:00:03+00:00 1.0 1325133208 3770 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 15:01:52+00:00 1.0 1325133208 3769 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 13:00:39+00:00 1.0 1325133208 3764 consecutive pump on your massive request same coin we chosen from last two pumps we followed yours choice pump results coin was pax open 14795 high 45526 welldone guys more than 3x times better height repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-18 17:16:23+00:00 1.0 1325133208 3760 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-18 17:00:14+00:00 1.0 1325133208 3758 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-18 16:55:09+00:00 1.0 1325133208 3757 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-18 16:50:04+00:00 1.0 1325133208 3756 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-18 16:40:05+00:00 1.0 1325133208 3755 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-18 16:30:07+00:00 1.0 1325133208 3754 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 16:00:06+00:00 1.0 1325133208 3753 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 15:00:15+00:00 1.0 1325133208 3752 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 13:00:28+00:00 1.0 1325133208 3747 as we promised to pump hc shortly and recommended for hodl hc hit 2383 hc holder real profit fast we always repump our coin 2019-05-16 17:25:52+00:00 1.0 1325133208 3736 buy coin hc binance ▶️ tradeindexsymbolhcbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 above profit 2019-05-12 17:00:08+00:00 1.0 1325133208 3734 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-12 16:55:04+00:00 1.0 1325133208 3733 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-05-12 16:50:03+00:00 1.0 1325133208 3732 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-12 16:30:08+00:00 1.0 1325133208 3731 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 16:00:07+00:00 1.0 1325133208 3730 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 15:00:11+00:00 1.0 1325133208 3729 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 14:00:06+00:00 1.0 1325133208 3728 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 09:00:40+00:00 1.0 1325133208 3723 pump results coin was pax open 17001 high 90000 welldone guys more than 5x times better height from last pump repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-10 17:14:46+00:00 1.0 1325133208 3718 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-10 17:00:11+00:00 1.0 1325133208 3716 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-10 16:55:02+00:00 1.0 1325133208 3715 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-10 16:50:02+00:00 1.0 1325133208 3714 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-10 16:40:01+00:00 1.0 1325133208 3713 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-10 16:30:10+00:00 1.0 1325133208 3712 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 16:00:14+00:00 1.0 1325133208 3711 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 15:00:07+00:00 1.0 1325133208 3710 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 13:00:24+00:00 1.0 1325133208 3709 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-10 11:01:42+00:00 1.0 1325133208 3704 pump results coin was pax open 20000 high 90000 welldone guys more than 4x times better height from last pump repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-08 17:14:41+00:00 1.0 1325133208 3699 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-08 17:00:10+00:00 1.0 1325133208 3697 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-08 16:55:03+00:00 1.0 1325133208 3696 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-08 16:50:02+00:00 1.0 1325133208 3695 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-08 16:40:29+00:00 1.0 1325133208 3694 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-08 16:30:08+00:00 1.0 1325133208 3693 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 16:00:05+00:00 1.0 1325133208 3692 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 15:01:40+00:00 1.0 1325133208 3691 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 13:00:18+00:00 1.0 1325133208 3690 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-08 11:01:28+00:00 1.0 1325133208 3687 pump results coin was enj low 2400 high 4799 welldone guys 2x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-05 17:14:40+00:00 1.0 1325133208 3682 coin to pump is enj exchange yobitnet target +200 market enjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-05 17:00:11+00:00 1.0 1325133208 3680 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-05 16:55:02+00:00 1.0 1325133208 3679 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-05 16:50:02+00:00 1.0 1325133208 3678 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-05 16:40:03+00:00 1.0 1325133208 3677 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-05 16:30:06+00:00 1.0 1325133208 3676 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-05 16:00:06+00:00 1.0 1325133208 3675 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-05 15:00:07+00:00 1.0 1325133208 3674 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-05 13:00:03+00:00 1.0 1325133208 3673 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-05 11:00:05+00:00 1.0 1325133208 3670 pump results coin was ppt open 19182 high 69998 welldone guys more than 3x times repump count ✨4th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-04 17:26:06+00:00 1.0 1325133208 3665 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-04 17:00:08+00:00 1.0 1325133208 3663 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-04 16:55:02+00:00 1.0 1325133208 3662 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-04 16:50:02+00:00 1.0 1325133208 3661 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-04 16:40:02+00:00 1.0 1325133208 3660 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-04 16:30:03+00:00 1.0 1325133208 3659 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 16:00:06+00:00 1.0 1325133208 3658 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 15:00:20+00:00 1.0 1325133208 3657 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 13:00:07+00:00 1.0 1325133208 3656 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-04 11:00:07+00:00 1.0 1325133208 3650 pump announcement 3 may 2019 our next pump will be the huge profit gainerkeep ready for yourself get your account ready at ccfmio to know the coin one minute before pump n turn your 001 into 1 btc or 5x 6x multiply register yourself ccfmio make money by knowing the coin name before pump dont miss itvip status for early registered usersget advantage from all 2019-05-02 13:30:49+00:00 1.0 1325133208 3649 pump results coin was ppt open 21500 high 58995 welldone guys more than 2x times repump count ✨3rd ✨time on your massive request curative pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-01 17:18:31+00:00 1.0 1325133208 3644 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-01 17:00:11+00:00 1.0 1325133208 3642 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-01 16:55:03+00:00 1.0 1325133208 3641 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-01 16:50:02+00:00 1.0 1325133208 3640 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-01 16:40:03+00:00 1.0 1325133208 3639 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-01 16:30:27+00:00 1.0 1325133208 3638 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-01 16:00:05+00:00 1.0 1325133208 3637 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-01 15:00:03+00:00 1.0 1325133208 3636 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-01 13:00:05+00:00 1.0 1325133208 3632 pump results coin was blz open 901 high 5707 welldone guys more than 6x times repump count ✨2nd✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-30 17:23:45+00:00 1.0 1325133208 3627 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-30 17:00:07+00:00 1.0 1325133208 3625 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-30 16:55:03+00:00 1.0 1325133208 3624 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-30 16:50:03+00:00 1.0 1325133208 3623 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-30 16:40:02+00:00 1.0 1325133208 3622 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-30 16:30:02+00:00 1.0 1325133208 3621 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-30 16:00:12+00:00 1.0 1325133208 3620 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-30 15:00:14+00:00 1.0 1325133208 3619 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-30 13:06:54+00:00 1.0 1325133208 3615 pump results coin was ctxc open 2940 high 9900 welldone guys as promised by us 300 more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-28 17:32:35+00:00 1.0 1325133208 3610 coin to pump is ctxc exchange yobitnet target +300 market ctxcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-28 17:00:10+00:00 1.0 1325133208 3608 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-28 16:55:03+00:00 1.0 1325133208 3607 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-28 16:50:03+00:00 1.0 1325133208 3606 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-28 16:40:06+00:00 1.0 1325133208 3605 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-28 16:30:16+00:00 1.0 1325133208 3604 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 16:00:09+00:00 1.0 1325133208 3603 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 15:00:17+00:00 1.0 1325133208 3602 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-28 13:00:07+00:00 1.0 1325133208 3599 pump results coin was ukg open 483 high 1500 welldone guys 3x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-27 17:18:32+00:00 1.0 1325133208 3594 coin to pump is ukg exchange yobitnet target +300 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-27 17:00:12+00:00 1.0 1325133208 3592 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-27 16:55:08+00:00 1.0 1325133208 3591 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-27 16:50:06+00:00 1.0 1325133208 3590 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-27 16:40:03+00:00 1.0 1325133208 3589 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-27 16:30:07+00:00 1.0 1325133208 3588 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 16:00:08+00:00 1.0 1325133208 3587 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 15:00:19+00:00 1.0 1325133208 3586 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-27 13:00:11+00:00 1.0 1325133208 3582 pump results coin was pax open 16145 high 67999 welldone guys more than 4x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-24 17:19:36+00:00 1.0 1325133208 3577 coin to pump is pax exchange yobitnet target +600 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-24 17:00:11+00:00 1.0 1325133208 3575 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-24 16:55:04+00:00 1.0 1325133208 3574 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-24 16:50:04+00:00 1.0 1325133208 3573 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-24 16:40:04+00:00 1.0 1325133208 3572 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-24 16:30:05+00:00 1.0 1325133208 3571 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 16:00:04+00:00 1.0 1325133208 3570 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 15:00:05+00:00 1.0 1325133208 3569 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-24 13:00:25+00:00 1.0 1325133208 3566 pump results coin was enj open 3246 high 1000 welldone guys more than 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-23 17:34:19+00:00 1.0 1325133208 3561 coin to pump is enj exchange yobitnet target +200 market enjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-23 17:00:12+00:00 1.0 1325133208 3559 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-23 16:55:04+00:00 1.0 1325133208 3558 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-23 16:50:04+00:00 1.0 1325133208 3557 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-23 16:40:03+00:00 1.0 1325133208 3556 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-23 16:30:04+00:00 1.0 1325133208 3555 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 16:00:06+00:00 1.0 1325133208 3554 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 15:00:02+00:00 1.0 1325133208 3553 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-23 13:10:38+00:00 1.0 1325133208 3550 pump results coin was soul high 1750 low 1100 current rate 14501500+ those who bought at 1100 rate got 40 profit approx we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-22 17:47:43+00:00 1.0 1325133208 3536 ℹ️ 5 minutes ℹ️ the next post will be the coin to buyhold for max profit on kucoincom 2019-04-22 15:55:03+00:00 1.0 1325133208 3535 ℹ️ 10 minutes ℹ️ get ready with your kucoin account coin is low level buy with us 2019-04-22 15:50:03+00:00 1.0 1325133208 3534 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2019-04-22 15:31:35+00:00 1.0 1325133208 3533 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 15:00:05+00:00 1.0 1325133208 3532 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 13:00:03+00:00 1.0 1325133208 3531 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 10:00:04+00:00 1.0 1325133208 3530 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt indian time 930 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2019-04-22 08:12:43+00:00 1.0 1325133208 3528 pump results coin was storm open 68 high 194 welldone guys almost 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-20 17:54:08+00:00 1.0 1325133208 3522 coin to pump is storm exchange yobitnet target +200 market stormbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-20 17:00:11+00:00 1.0 1325133208 3520 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-20 16:55:03+00:00 1.0 1325133208 3519 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-20 16:50:08+00:00 1.0 1325133208 3518 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-20 16:40:04+00:00 1.0 1325133208 3517 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-20 16:30:08+00:00 1.0 1325133208 3516 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 16:00:05+00:00 1.0 1325133208 3515 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 15:00:06+00:00 1.0 1325133208 3514 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-20 13:00:04+00:00 1.0 1325133208 3511 pump results coin was ppt open 28793 high 109918 welldone guys almost 4x times repump count ✨2nd ✨time on your massive request better height from first pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-19 17:22:20+00:00 1.0 1325133208 3506 coin to pump is ppt exchange yobitnet target +200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-19 17:00:04+00:00 1.0 1325133208 3504 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-19 16:55:03+00:00 1.0 1325133208 3503 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-19 16:50:04+00:00 1.0 1325133208 3502 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-19 16:40:08+00:00 1.0 1325133208 3501 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-19 16:30:04+00:00 1.0 1325133208 3500 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 16:00:04+00:00 1.0 1325133208 3499 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 15:00:15+00:00 1.0 1325133208 3498 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-19 13:00:22+00:00 1.0 1325133208 3489 pump results coin was tnt low 350 high 640 welldone guys almost 2x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-15 17:22:11+00:00 1.0 1325133208 3484 the coin to pump is tnt exchange yobitnet target 100200 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-15 17:00:17+00:00 1.0 1325133208 3482 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-15 16:55:07+00:00 1.0 1325133208 3481 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-15 16:51:54+00:00 1.0 1325133208 3480 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-15 16:40:06+00:00 1.0 1325133208 3479 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-15 16:30:18+00:00 1.0 1325133208 3478 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 16:00:19+00:00 1.0 1325133208 3477 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 15:00:15+00:00 1.0 1325133208 3476 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-15 13:00:04+00:00 1.0 1325133208 3473 pump results coin was dai open 19000 high 42243 profit more than x 2 repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-14 17:32:16+00:00 1.0 1325133208 3467 coin to pump is dai exchange yobitnet target 400600 market daibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-14 17:00:11+00:00 1.0 1325133208 3465 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-14 16:55:04+00:00 1.0 1325133208 3464 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-14 16:50:03+00:00 1.0 1325133208 3463 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-14 16:40:03+00:00 1.0 1325133208 3462 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-14 16:30:04+00:00 1.0 1325133208 3461 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 16:00:08+00:00 1.0 1325133208 3460 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 15:00:07+00:00 1.0 1325133208 3459 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-14 13:00:12+00:00 1.0 1325133208 3456 pump results coin was bnt open 12165 high 24999 profit x 2 repump count ✨5th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-13 17:26:52+00:00 1.0 1325133208 3451 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-13 17:00:19+00:00 1.0 1325133208 3449 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-13 16:55:27+00:00 1.0 1325133208 3448 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-13 16:50:11+00:00 1.0 1325133208 3447 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-13 16:40:03+00:00 1.0 1325133208 3446 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-13 16:30:09+00:00 1.0 1325133208 3445 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-13 16:00:13+00:00 1.0 1325133208 3444 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-13 15:00:12+00:00 1.0 1325133208 3443 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-13 13:00:08+00:00 1.0 1325133208 3440 pump results coin was snm open 580 reached 1138 welldone guys 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-11 17:23:39+00:00 1.0 1325133208 3435 coin to pump is snm exchange yobitnet target +200 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-11 17:01:01+00:00 1.0 1325133208 3433 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-11 16:55:05+00:00 1.0 1325133208 3432 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-11 16:50:03+00:00 1.0 1325133208 3431 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-11 16:40:04+00:00 1.0 1325133208 3430 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-11 16:30:09+00:00 1.0 1325133208 3429 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-11 16:00:05+00:00 1.0 1325133208 3428 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-11 15:00:09+00:00 1.0 1325133208 3427 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-11 13:07:01+00:00 1.0 1325133208 3424 pump results coin was qkc open 1060 reached 3732 welldone guys nearly 4 x times repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-09 17:54:30+00:00 1.0 1325133208 3419 the coin to pump is qkc exchange yobitnet target +400 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-09 17:00:12+00:00 1.0 1325133208 3417 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-09 16:55:05+00:00 1.0 1325133208 3416 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-09 16:50:04+00:00 1.0 1325133208 3415 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-09 16:40:04+00:00 1.0 1325133208 3414 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-09 16:30:08+00:00 1.0 1325133208 3413 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-09 16:00:11+00:00 1.0 1325133208 3412 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-09 15:00:07+00:00 1.0 1325133208 3411 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-09 13:00:34+00:00 1.0 1325133208 3408 pump results coin was ppt open 32841 high 72500 welldone guys more than 2 x times notewe always repump our coin 2019-04-08 17:25:55+00:00 1.0 1325133208 3403 coin to pump is ppt exchange yobitnet target +200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-08 17:00:10+00:00 1.0 1325133208 3401 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-08 16:55:04+00:00 1.0 1325133208 3400 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-08 16:50:03+00:00 1.0 1325133208 3399 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-08 16:40:06+00:00 1.0 1325133208 3398 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-08 16:30:09+00:00 1.0 1325133208 3397 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-08 16:00:44+00:00 1.0 1325133208 3396 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-08 15:00:05+00:00 1.0 1325133208 3395 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-08 13:00:24+00:00 1.0 1325133208 3392 pump results coin was aoa open 327 high 1301 welldone guys 4 x times repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-07 17:46:46+00:00 1.0 1325133208 3387 coin to pump is aoa exchange yobitnet target +500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-07 17:00:11+00:00 1.0 1325133208 3385 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-07 16:55:06+00:00 1.0 1325133208 3384 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-07 16:50:05+00:00 1.0 1325133208 3383 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-07 16:40:05+00:00 1.0 1325133208 3382 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-07 16:30:08+00:00 1.0 1325133208 3381 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-07 16:00:58+00:00 1.0 1325133208 3380 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-07 15:00:04+00:00 1.0 1325133208 3379 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-07 13:00:12+00:00 1.0 1325133208 3378 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-07 11:00:07+00:00 1.0 1325133208 3375 pump results coin was bnt low 13160 high 26000 profit x 2 repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-06 17:34:05+00:00 1.0 1325133208 3370 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-06 17:00:10+00:00 1.0 1325133208 3368 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-06 16:55:04+00:00 1.0 1325133208 3367 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-06 16:50:04+00:00 1.0 1325133208 3366 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-06 16:40:05+00:00 1.0 1325133208 3365 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-06 16:30:06+00:00 1.0 1325133208 3364 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-06 16:00:13+00:00 1.0 1325133208 3363 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-06 15:00:07+00:00 1.0 1325133208 3362 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-06 13:00:04+00:00 1.0 1325133208 3360 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-06 11:00:04+00:00 1.0 1325133208 3357 pump results coin was hqx low 100 high 399 repump count 3rd time on your massive requestmore than 3 x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-05 18:11:03+00:00 1.0 1325133208 3351 coin to pump is hqx exchange yobitnet target +300 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-05 17:00:09+00:00 1.0 1325133208 3349 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-05 16:55:04+00:00 1.0 1325133208 3348 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-05 16:50:06+00:00 1.0 1325133208 3347 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-05 16:50:04+00:00 1.0 1325133208 3346 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-05 16:30:04+00:00 1.0 1325133208 3345 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-05 16:00:09+00:00 1.0 1325133208 3344 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-05 15:00:05+00:00 1.0 1325133208 3343 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-05 13:00:50+00:00 1.0 1325133208 3340 pump results coin was bnt ooen 13607 high 38692 profit x 3 repump count 3rd time on your massive request notewe always repump our coin 2019-04-04 17:16:07+00:00 1.0 1325133208 3334 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-04 17:00:12+00:00 1.0 1325133208 3332 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-04 16:55:04+00:00 1.0 1325133208 3331 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-04 16:50:05+00:00 1.0 1325133208 3330 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-04 16:40:03+00:00 1.0 1325133208 3329 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-04 16:30:03+00:00 1.0 1325133208 3328 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-04 16:00:58+00:00 1.0 1325133208 3327 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-04 15:00:04+00:00 1.0 1325133208 3326 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-04 13:00:04+00:00 1.0 1325133208 3325 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-04 11:00:04+00:00 1.0 1325133208 3318 pump results coin was tfd open 188 high 958 more than 5 x times profit welldone guys notewe always repump our coin 2019-03-30 17:33:27+00:00 1.0 1325133208 3313 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-30 17:00:16+00:00 1.0 1325133208 3311 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-30 16:55:03+00:00 1.0 1325133208 3310 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-30 16:50:03+00:00 1.0 1325133208 3309 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-30 16:40:06+00:00 1.0 1325133208 3308 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-30 16:30:05+00:00 1.0 1325133208 3307 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-30 16:00:48+00:00 1.0 1325133208 3306 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-30 15:00:06+00:00 1.0 1325133208 3305 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-30 13:00:10+00:00 1.0 1325133208 3302 pump results coin was bnt low 15055 high 24300 repump count 2nd time on your massive request 6070 profit notewe always repump our coin 2019-03-29 18:49:49+00:00 1.0 1325133208 3297 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-29 17:00:11+00:00 1.0 1325133208 3295 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-29 16:55:03+00:00 1.0 1325133208 3294 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-29 16:50:03+00:00 1.0 1325133208 3293 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-29 16:40:04+00:00 1.0 1325133208 3292 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-29 16:30:04+00:00 1.0 1325133208 3291 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-29 16:01:47+00:00 1.0 1325133208 3290 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-29 15:00:04+00:00 1.0 1325133208 3289 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-29 13:00:08+00:00 1.0 1325133208 3288 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-29 10:00:04+00:00 1.0 1325133208 3275 pump results coin was hqx open 165 high 499 repump count 2nd time on your massive request more than 3 x times notewe always repump our coin 2019-03-26 17:21:17+00:00 1.0 1325133208 3270 coin to pump is hqx exchange yobitnet target +300 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-26 17:00:12+00:00 1.0 1325133208 3268 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-26 16:55:04+00:00 1.0 1325133208 3267 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-26 16:50:03+00:00 1.0 1325133208 3266 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-26 16:40:04+00:00 1.0 1325133208 3265 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-26 16:30:05+00:00 1.0 1325133208 3264 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-26 16:00:03+00:00 1.0 1325133208 3263 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-26 15:00:04+00:00 1.0 1325133208 3262 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-26 13:00:07+00:00 1.0 1325133208 3261 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-26 10:02:44+00:00 1.0 1325133208 3257 pump results coin was dadi open 857 high 2850 repump count 4th time on your massive request ✅ welldone more than 3 x times notewe always repump our coin 2019-03-25 17:29:29+00:00 1.0 1325133208 3251 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-25 17:00:15+00:00 1.0 1325133208 3249 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-25 16:55:06+00:00 1.0 1325133208 3248 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-25 16:50:04+00:00 1.0 1325133208 3247 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-25 16:30:03+00:00 1.0 1325133208 3246 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-25 16:01:08+00:00 1.0 1325133208 3245 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-25 15:00:06+00:00 1.0 1325133208 3244 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-25 13:00:14+00:00 1.0 1325133208 3243 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-25 11:00:06+00:00 1.0 1325133208 3240 pump results coin was hqx open 181 high 453 more than 2 x times notewe always repump our coin 2019-03-24 17:30:10+00:00 1.0 1325133208 3236 coin to pump is hqx exchange yobitnet target +200 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-24 17:00:12+00:00 1.0 1325133208 3234 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-24 16:55:03+00:00 1.0 1325133208 3233 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-24 16:50:17+00:00 1.0 1325133208 3232 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-24 16:40:04+00:00 1.0 1325133208 3231 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-24 16:30:45+00:00 1.0 1325133208 3230 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-24 16:00:05+00:00 1.0 1325133208 3229 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-24 15:00:05+00:00 1.0 1325133208 3228 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-24 13:00:07+00:00 1.0 1325133208 3225 extended results of our last pump coin fc vol 239 btc open 20 high 147 more than 7 x times our trollingmarketing created second massive wave ✅always trade with us ✅ we always repump our coin ✅ hi 2019-03-24 04:47:33+00:00 1.0 1325133208 3223 pump results coin was fc open 20 high 109 more than 5 x times panick seller try to ruin the pump at low profitbut we keep going got great buy order for long time notewe always repump our coin 2019-03-23 17:41:40+00:00 1.0 1325133208 3216 coin to pump is fc exchange yobitnet target +400 market fcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-23 17:00:13+00:00 1.0 1325133208 3214 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-23 16:55:24+00:00 1.0 1325133208 3213 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-23 16:50:03+00:00 1.0 1325133208 3212 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-23 16:40:03+00:00 1.0 1325133208 3211 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-23 16:30:03+00:00 1.0 1325133208 3210 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-23 16:00:10+00:00 1.0 1325133208 3209 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-23 15:00:05+00:00 1.0 1325133208 3208 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-23 12:59:29+00:00 1.0 1325133208 3207 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-23 11:01:29+00:00 1.0 1325133208 3204 pump results coin was dadi open 900 high 3112 more than 3 x times repump count3rd time on your request notewe always repump our coin 2019-03-21 17:28:50+00:00 1.0 1325133208 3199 coin to pump is dadi exchange yobitnet target +200 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-21 17:00:10+00:00 1.0 1325133208 3197 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-21 16:55:04+00:00 1.0 1325133208 3196 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-21 16:50:03+00:00 1.0 1325133208 3195 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-21 16:40:03+00:00 1.0 1325133208 3194 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-21 16:30:03+00:00 1.0 1325133208 3193 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-21 16:00:08+00:00 1.0 1325133208 3192 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-21 15:00:35+00:00 1.0 1325133208 3191 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-21 13:00:10+00:00 1.0 1325133208 3188 pump results coin was ing low 100 high 363 x 3 + more than thice repump count 2nd time for you guys in less than a week time frame notewe always repump our coin 2019-03-20 18:00:21+00:00 1.0 1325133208 3182 coin to pump is ing exchange yobitnet target +300 market ingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-20 17:00:11+00:00 1.0 1325133208 3180 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-20 16:55:03+00:00 1.0 1325133208 3179 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-20 16:50:04+00:00 1.0 1325133208 3178 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-20 16:40:05+00:00 1.0 1325133208 3177 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-20 16:30:06+00:00 1.0 1325133208 3176 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-20 16:01:03+00:00 1.0 1325133208 3175 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-20 15:00:13+00:00 1.0 1325133208 3174 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-20 13:00:05+00:00 1.0 1325133208 3171 pump results coin was ren low 450 high 975 repump count ✨3rd time✨ x 2 + more than twice notewe always repump our coin 2019-03-19 18:32:38+00:00 1.0 1325133208 3165 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-19 17:00:08+00:00 1.0 1325133208 3163 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-19 16:55:05+00:00 1.0 1325133208 3162 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-19 16:50:03+00:00 1.0 1325133208 3161 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-19 16:30:05+00:00 1.0 1325133208 3160 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-19 16:00:08+00:00 1.0 1325133208 3159 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-19 15:00:04+00:00 1.0 1325133208 3158 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-19 13:00:07+00:00 1.0 1325133208 3157 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-19 11:00:11+00:00 1.0 1325133208 3154 pump results coin was ing open 130 high 337 x 2 + more than twice notewe always repump our coin 2019-03-16 17:45:31+00:00 1.0 1325133208 3148 coin to pump is ing exchange yobitnet target +300 market ingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-16 17:00:10+00:00 1.0 1325133208 3146 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-16 16:55:03+00:00 1.0 1325133208 3145 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-16 16:50:03+00:00 1.0 1325133208 3144 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-16 16:40:02+00:00 1.0 1325133208 3143 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-16 16:30:05+00:00 1.0 1325133208 3142 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-16 16:00:13+00:00 1.0 1325133208 3141 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-16 15:00:04+00:00 1.0 1325133208 3140 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-16 13:00:06+00:00 1.0 1325133208 3139 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-16 11:02:16+00:00 1.0 1325133208 3138 ℹ coin signal information ℹ date saturday 160319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-16 08:10:59+00:00 1.0 1325133208 3137 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 160319 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-16 06:52:39+00:00 1.0 1325133208 3126 attention guys be ready for highly profitable signal potenial coin with big upcoiming news hold for maximum profit multiply your btc with us next post will be coin name 2019-03-15 09:28:29+00:00 1.0 1325133208 3121 pump results coin was dadi open 820 high 1230 repump count2 nd time on your request notewe always repump our coin 2019-03-07 17:30:40+00:00 1.0 1325133208 3114 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-07 17:00:33+00:00 1.0 1325133208 3112 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-07 16:55:05+00:00 1.0 1325133208 3111 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-07 16:50:08+00:00 1.0 1325133208 3110 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-07 16:40:08+00:00 1.0 1325133208 3109 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-07 16:30:05+00:00 1.0 1325133208 3108 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-07 16:00:12+00:00 1.0 1325133208 3107 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-07 15:00:04+00:00 1.0 1325133208 3106 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-07 13:00:05+00:00 1.0 1325133208 3105 ℹ coin signal information ℹ date thursday 070319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-07 11:14:36+00:00 1.0 1325133208 3104 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 070319 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-07 10:25:23+00:00 1.0 1325133208 3102 pump results coin was theta low 3263 high 6984 x 2 repump count3rd time notewe always repump our coin 2019-03-06 18:40:23+00:00 1.0 1325133208 3095 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-06 17:00:20+00:00 1.0 1325133208 3093 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-06 16:55:02+00:00 1.0 1325133208 3092 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-06 16:50:03+00:00 1.0 1325133208 3091 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-06 16:40:10+00:00 1.0 1325133208 3090 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-06 16:30:04+00:00 1.0 1325133208 3089 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-06 16:00:07+00:00 1.0 1325133208 3088 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-06 15:00:02+00:00 1.0 1325133208 3087 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-06 13:03:35+00:00 1.0 1325133208 3086 ℹ coin signal information ℹ date wednesday 060319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-06 11:43:17+00:00 1.0 1325133208 3085 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 060319 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-06 10:31:38+00:00 1.0 1325133208 3078 pump results coin was crpt low 3713 high 6835 welldone guys pump count 2nd time notewe always repump our coin n we r true to our words ✅ 2019-03-01 18:15:55+00:00 1.0 1325133208 3070 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-01 17:00:12+00:00 1.0 1325133208 3069 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-01 16:55:02+00:00 1.0 1325133208 3068 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-01 16:50:02+00:00 1.0 1325133208 3067 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-01 16:40:06+00:00 1.0 1325133208 3066 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-01 16:30:05+00:00 1.0 1325133208 3065 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 16:00:34+00:00 1.0 1325133208 3064 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 15:00:18+00:00 1.0 1325133208 3063 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 13:00:11+00:00 1.0 1325133208 3062 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 10:04:13+00:00 1.0 1325133208 3054 buy coin sys binance ▶️ tradeindexsymbolsysbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-27 17:00:04+00:00 1.0 1325133208 3053 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-27 16:55:05+00:00 1.0 1325133208 3052 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-27 16:50:06+00:00 1.0 1325133208 3051 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-27 16:40:05+00:00 1.0 1325133208 3050 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-27 16:30:04+00:00 1.0 1325133208 3049 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 16:00:12+00:00 1.0 1325133208 3048 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 15:00:08+00:00 1.0 1325133208 3047 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 13:00:13+00:00 1.0 1325133208 3046 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 10:00:04+00:00 1.0 1325133208 3044 pump results coin was storj low 50 high 75 welldone guys pump count 2nd time notewe always repump our coin n we r true to our words ✅ 2019-02-25 17:26:25+00:00 1.0 1325133208 3037 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-25 17:00:29+00:00 1.0 1325133208 3035 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-25 16:55:04+00:00 1.0 1325133208 3034 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-25 16:50:06+00:00 1.0 1325133208 3033 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-25 16:40:03+00:00 1.0 1325133208 3032 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-25 16:30:08+00:00 1.0 1325133208 3031 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 16:00:13+00:00 1.0 1325133208 3030 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 15:00:05+00:00 1.0 1325133208 3029 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 13:00:11+00:00 1.0 1325133208 3028 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 11:07:36+00:00 1.0 1325133208 3027 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250219 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-25 10:27:48+00:00 1.0 1325133208 3021 buy coin bqx binance ▶️ tradeindexsymbolbqxbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-24 17:00:32+00:00 1.0 1325133208 3019 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-24 16:55:15+00:00 1.0 1325133208 3018 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-24 16:50:13+00:00 1.0 1325133208 3017 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-24 16:40:08+00:00 1.0 1325133208 3016 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-24 16:30:04+00:00 1.0 1325133208 3015 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 16:00:29+00:00 1.0 1325133208 3014 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 15:00:14+00:00 1.0 1325133208 3013 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 13:00:07+00:00 1.0 1325133208 3012 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 11:00:32+00:00 1.0 1325133208 3010 pump results coin was ukg open 830 high 2749 welldone guys nearly 3 x times repump count 2nd time notewe always repump our coin 2019-02-23 18:04:25+00:00 1.0 1325133208 3006 coin to pump is ukg exchange yobitnet target +500 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-23 17:00:36+00:00 1.0 1325133208 3004 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-23 16:55:12+00:00 1.0 1325133208 3003 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-23 16:50:22+00:00 1.0 1325133208 3002 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-23 16:40:15+00:00 1.0 1325133208 3001 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-23 16:30:23+00:00 1.0 1325133208 3000 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 16:00:20+00:00 1.0 1325133208 2999 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 15:01:07+00:00 1.0 1325133208 2998 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-23 13:00:13+00:00 1.0 1325133208 2997 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-23 10:00:17+00:00 1.0 1325133208 2996 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-23 07:35:46+00:00 1.0 1325133208 2993 pump results coin was storj low 5501 high 9670 welldone guys nearly 2 x times notewe always repump our coin 2019-02-21 17:45:55+00:00 1.0 1325133208 2985 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-21 17:00:25+00:00 1.0 1325133208 2983 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-21 16:55:03+00:00 1.0 1325133208 2982 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-21 16:50:09+00:00 1.0 1325133208 2980 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-21 16:00:47+00:00 1.0 1325133208 2978 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-21 12:00:17+00:00 1.0 1325133208 2976 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 210219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-21 05:26:24+00:00 1.0 1325133208 2974 pump results coin was crpt open 4702 high 11777 welldone guys 25 x times notewe always repump our coin 2019-02-20 18:34:40+00:00 1.0 1325133208 2967 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-20 17:00:05+00:00 1.0 1325133208 2965 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-20 16:55:09+00:00 1.0 1325133208 2964 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-20 16:50:07+00:00 1.0 1325133208 2962 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-20 16:30:16+00:00 1.0 1325133208 2961 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-20 16:00:13+00:00 1.0 1325133208 2959 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-20 10:59:44+00:00 1.0 1325133208 2957 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200219 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-20 06:14:15+00:00 1.0 1325133208 2955 pump results coin was blz low 1088 high 2911 welldone guys nearly 2 x times pumped twice till now in this year notewe always repump our coin 2019-02-19 17:41:31+00:00 1.0 1325133208 2948 coin to pump is blz exchange yobitnet target +500 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-19 17:00:37+00:00 1.0 1325133208 2946 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-19 16:55:05+00:00 1.0 1325133208 2945 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-19 16:50:06+00:00 1.0 1325133208 2943 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-19 16:30:06+00:00 1.0 1325133208 2942 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-19 16:00:39+00:00 1.0 1325133208 2940 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-19 13:00:11+00:00 1.0 1325133208 2938 ℹ coin signal information ℹ date tuesday 190219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-19 05:56:02+00:00 1.0 1325133208 2936 pump results coin was wtc open 25000 high 70671 welldone guys nearly 3 x times repump count3rd time notewe always repump our coin 2019-02-18 17:50:35+00:00 1.0 1325133208 2928 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-18 17:00:31+00:00 1.0 1325133208 2926 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-18 16:55:50+00:00 1.0 1325133208 2925 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-18 16:50:05+00:00 1.0 1325133208 2924 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-18 16:40:28+00:00 1.0 1325133208 2923 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-18 16:31:10+00:00 1.0 1325133208 2922 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-18 16:00:09+00:00 1.0 1325133208 2921 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-18 15:08:15+00:00 1.0 1325133208 2920 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 13:00:42+00:00 1.0 1325133208 2919 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 11:00:20+00:00 1.0 1325133208 2918 ℹ coin signal information ℹ date monday 180219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-18 10:09:37+00:00 1.0 1325133208 2917 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 180219 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-18 07:49:40+00:00 1.0 1325133208 2915 pump results coin was ukg open 1105 high 3198 welldone guys nearly 3 x times great buy orders for long time notewe always repump our coin 2019-02-17 17:36:44+00:00 1.0 1325133208 2908 coin to pump is ukg exchange yobitnet target +500 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-17 17:00:33+00:00 1.0 1325133208 2906 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-17 16:55:08+00:00 1.0 1325133208 2905 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-17 16:50:06+00:00 1.0 1325133208 2904 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-17 16:40:05+00:00 1.0 1325133208 2903 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-17 16:30:11+00:00 1.0 1325133208 2902 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 16:00:24+00:00 1.0 1325133208 2901 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 15:00:29+00:00 1.0 1325133208 2900 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-17 13:03:12+00:00 1.0 1325133208 2899 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-17 10:00:09+00:00 1.0 1325133208 2898 ℹ coin signal information ℹ date sunday 170219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-17 09:23:10+00:00 1.0 1325133208 2897 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-17 07:50:34+00:00 1.0 1325133208 2894 pump results coin was aoa open 180 high 639 welldone guys nearly 4 x times notewe always repump our coin 2019-02-16 17:53:50+00:00 1.0 1325133208 2887 coin to pump is aoa exchange yobitnet target +500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-16 17:00:23+00:00 1.0 1325133208 2885 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-16 16:55:04+00:00 1.0 1325133208 2884 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-16 16:50:24+00:00 1.0 1325133208 2883 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-16 16:40:35+00:00 1.0 1325133208 2882 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-16 16:30:56+00:00 1.0 1325133208 2881 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 16:00:09+00:00 1.0 1325133208 2880 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 15:00:09+00:00 1.0 1325133208 2879 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-16 14:02:09+00:00 1.0 1325133208 2878 ℹ coin signal information ℹ date saturday 160219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-16 08:23:43+00:00 1.0 1325133208 2877 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 160219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-16 06:22:16+00:00 1.0 1325133208 2875 pump results coin was dadi open 821 high 3876 welldone nearly 5 x times notewe always repump our coin 2019-02-15 17:35:38+00:00 1.0 1325133208 2867 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-15 17:00:38+00:00 1.0 1325133208 2865 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-15 16:55:05+00:00 1.0 1325133208 2864 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-15 16:50:06+00:00 1.0 1325133208 2863 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-15 16:40:22+00:00 1.0 1325133208 2862 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-15 16:30:27+00:00 1.0 1325133208 2861 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 16:00:25+00:00 1.0 1325133208 2860 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 15:00:15+00:00 1.0 1325133208 2859 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 13:00:06+00:00 1.0 1325133208 2858 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 11:00:22+00:00 1.0 1325133208 2857 ℹ coin signal information ℹ date friday 150219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-15 05:00:40+00:00 1.0 1325133208 2856 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-15 04:10:08+00:00 1.0 1325133208 2830 important announcement guys as market is in uptrend we are going to share special call today at 430 pm gmt undervalued solid gem which can give you 30 to 100 profit log in your binance account and be ready at 430pm gmt exchange binance time 430 pm gmt 1000 pm ist stay tuned 2019-02-08 09:19:55+00:00 1.0 1325133208 2829 pump results coin was theta low 1750 high 2534 repump count2nd time notewe always repump our coin 2019-02-08 01:34:05+00:00 1.0 1325133208 2825 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-07 17:01:33+00:00 1.0 1325133208 2823 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-07 16:56:01+00:00 1.0 1325133208 2822 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-07 16:50:08+00:00 1.0 1325133208 2821 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-07 16:40:17+00:00 1.0 1325133208 2820 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-07 16:30:22+00:00 1.0 1325133208 2819 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 16:00:15+00:00 1.0 1325133208 2818 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 15:00:11+00:00 1.0 1325133208 2817 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 070219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-07 14:07:14+00:00 1.0 1325133208 2814 pump results coin was tnt low 354 high 806 repump count3rd time notewe always repump our coin 2019-02-06 19:41:00+00:00 1.0 1325133208 2810 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-06 19:00:30+00:00 1.0 1325133208 2808 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-06 18:55:11+00:00 1.0 1325133208 2807 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-06 18:50:20+00:00 1.0 1325133208 2806 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-06 18:40:08+00:00 1.0 1325133208 2805 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-06 18:30:05+00:00 1.0 1325133208 2804 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-06 18:00:10+00:00 1.0 1325133208 2803 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-06 17:00:13+00:00 1.0 1325133208 2802 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-02-06 15:00:07+00:00 1.0 1325133208 2801 ℹ coin signal information ℹ date wednesday 060219 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-06 13:48:35+00:00 1.0 1325133208 2800 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 060219 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-06 11:46:02+00:00 1.0 1325133208 2797 alright guys wait is over our binance titanic signal is here for you the coin name is storj storj our targets is above 100 to 150 2019-02-04 16:29:51+00:00 1.0 1325133208 2790 alright guys so whos excited just few more hours left for the next binancetitanicsignal be ready for the next 100 to 150 signal the wait will be over at gmt 430 cheers 2019-02-04 10:28:29+00:00 1.0 1325133208 2780 pump results coin was ren low 519 high 1042 2x times repump count 2nd time presence of chat admin n banning our team members deprived us from high profits notewe always repump our coin 2019-01-26 19:48:19+00:00 1.0 1325133208 2774 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-26 19:00:30+00:00 1.0 1325133208 2771 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-26 18:55:54+00:00 1.0 1325133208 2770 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-26 18:50:02+00:00 1.0 1325133208 2769 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-26 18:40:16+00:00 1.0 1325133208 2768 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-26 18:33:01+00:00 1.0 1325133208 2767 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 18:00:24+00:00 1.0 1325133208 2766 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 17:00:27+00:00 1.0 1325133208 2765 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-26 15:00:52+00:00 1.0 1325133208 2764 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260119 saturday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-26 14:00:16+00:00 1.0 1325133208 2762 pump results coin was wtc open 25010 high 75060 3x times repump count 2nd time notewe always repump our coin 2019-01-25 17:37:38+00:00 1.0 1325133208 2757 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-25 17:00:33+00:00 1.0 1325133208 2754 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-25 16:55:14+00:00 1.0 1325133208 2753 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-25 16:50:24+00:00 1.0 1325133208 2752 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-25 16:40:37+00:00 1.0 1325133208 2751 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-25 16:30:04+00:00 1.0 1325133208 2750 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 16:01:15+00:00 1.0 1325133208 2749 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 15:00:08+00:00 1.0 1325133208 2748 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-25 13:00:02+00:00 1.0 1325133208 2747 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-25 11:01:04+00:00 1.0 1325133208 2745 pump results coin was tnt low 400 high 670 analysis heavy buyingselling occured duration pumped two times by our trollingefforts repump count2nd time notewe always repump our coin 2019-01-23 19:34:11+00:00 1.0 1325133208 2739 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-23 19:00:00+00:00 1.0 1325133208 2738 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-23 18:55:09+00:00 1.0 1325133208 2737 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-23 18:50:04+00:00 1.0 1325133208 2736 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-23 18:40:30+00:00 1.0 1325133208 2735 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-23 18:30:01+00:00 1.0 1325133208 2734 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 18:00:15+00:00 1.0 1325133208 2733 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 17:00:06+00:00 1.0 1325133208 2732 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-23 15:00:01+00:00 1.0 1325133208 2731 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230119 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-23 14:00:16+00:00 1.0 1325133208 2729 pump results coin was via open 8900 high 12829 heavy buyingselling occured beyond expectations notewe always repump our coin 2019-01-20 17:44:00+00:00 1.0 1325133208 2725 the coin to pump is via exchange yobitnet target +200 market viabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-20 17:00:22+00:00 1.0 1325133208 2722 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-20 16:55:07+00:00 1.0 1325133208 2721 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-20 16:50:09+00:00 1.0 1325133208 2719 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-20 16:41:37+00:00 1.0 1325133208 2718 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-20 16:30:54+00:00 1.0 1325133208 2717 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 16:00:01+00:00 1.0 1325133208 2715 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 15:07:31+00:00 1.0 1325133208 2713 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-20 13:08:15+00:00 1.0 1325133208 2712 ℹ coin signal information ℹ date sunday 200119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-20 10:00:48+00:00 1.0 1325133208 2711 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200119 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-20 06:00:02+00:00 1.0 1325133208 2699 pump results coin was ren open 505 high 1019 x 2 notewe always repump our coin 2019-01-17 18:03:21+00:00 1.0 1325133208 2694 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-17 17:00:18+00:00 1.0 1325133208 2692 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-17 16:55:05+00:00 1.0 1325133208 2691 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-17 16:50:02+00:00 1.0 1325133208 2690 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-17 16:40:19+00:00 1.0 1325133208 2689 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-17 16:30:19+00:00 1.0 1325133208 2688 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 16:00:05+00:00 1.0 1325133208 2687 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 15:00:11+00:00 1.0 1325133208 2686 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-17 13:00:12+00:00 1.0 1325133208 2685 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-17 06:33:39+00:00 1.0 1325133208 2683 pump results coin was mth low 401 high 1012 analysis great buy orders for long time duration pumped two times by our trollingefforts repump count3rd time notewe always repump our coin 2019-01-14 18:01:03+00:00 1.0 1325133208 2676 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-14 17:00:37+00:00 1.0 1325133208 2675 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-14 16:56:48+00:00 1.0 1325133208 2674 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-14 16:50:06+00:00 1.0 1325133208 2673 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-14 16:40:10+00:00 1.0 1325133208 2672 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-14 16:30:14+00:00 1.0 1325133208 2671 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 16:07:47+00:00 1.0 1325133208 2670 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 15:00:06+00:00 1.0 1325133208 2669 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-14 13:00:10+00:00 1.0 1325133208 2668 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 140119 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-14 10:35:11+00:00 1.0 1325133208 2666 pump results coin was theta low 1118 high 2150 we did best even in worst market notewe always repump our coin 2019-01-13 18:10:34+00:00 1.0 1325133208 2662 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-13 17:00:47+00:00 1.0 1325133208 2660 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-13 16:55:01+00:00 1.0 1325133208 2659 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-13 16:50:04+00:00 1.0 1325133208 2658 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-13 16:40:15+00:00 1.0 1325133208 2657 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-13 16:30:03+00:00 1.0 1325133208 2656 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-13 16:00:09+00:00 1.0 1325133208 2655 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-13 15:00:30+00:00 1.0 1325133208 2654 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-13 13:00:18+00:00 1.0 1325133208 2653 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 130119 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-13 09:11:15+00:00 1.0 1325133208 2651 pump results coin was ok low 510 high 775 great buy order near highest point for long time for safe exitfor everyone notewe always repump our coin 2019-01-12 17:26:43+00:00 1.0 1325133208 2646 the coin to pump is ok exchange yobitnet target +300 market okbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-12 17:00:33+00:00 1.0 1325133208 2644 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-12 16:55:18+00:00 1.0 1325133208 2643 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-12 16:50:05+00:00 1.0 1325133208 2642 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-12 16:40:02+00:00 1.0 1325133208 2641 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-12 16:30:05+00:00 1.0 1325133208 2640 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-12 16:00:02+00:00 1.0 1325133208 2639 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-12 15:00:05+00:00 1.0 1325133208 2638 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-12 13:01:48+00:00 1.0 1325133208 2637 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120119 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-12 09:02:08+00:00 1.0 1325133208 2614 pump results coin was wtc low 21021 high 40001 notewe always repump our coin 2019-01-04 07:26:01+00:00 1.0 1325133208 2610 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-03 17:00:35+00:00 1.0 1325133208 2608 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-03 16:55:10+00:00 1.0 1325133208 2607 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-03 16:50:06+00:00 1.0 1325133208 2605 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-03 16:40:04+00:00 1.0 1325133208 2604 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-03 16:30:05+00:00 1.0 1325133208 2603 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 16:00:10+00:00 1.0 1325133208 2602 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 15:00:11+00:00 1.0 1325133208 2601 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-03 13:00:16+00:00 1.0 1325133208 2600 ℹ coin signal information ℹ date thursday 030119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-03 11:00:20+00:00 1.0 1325133208 2599 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 030119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-03 10:30:22+00:00 1.0 1325133208 2597 pump results coin was tnt start 310 reached 510 notewe always repump our coin 2019-01-02 05:54:28+00:00 1.0 1325133208 2594 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-01 17:00:31+00:00 1.0 1325133208 2592 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-01 16:55:02+00:00 1.0 1325133208 2591 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-01 16:50:01+00:00 1.0 1325133208 2590 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-01 16:40:01+00:00 1.0 1325133208 2589 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-01 16:30:27+00:00 1.0 1325133208 2588 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 16:00:31+00:00 1.0 1325133208 2587 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 15:00:17+00:00 1.0 1325133208 2586 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-01 13:00:02+00:00 1.0 1325133208 2585 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-01 10:00:18+00:00 1.0 1325133208 2584 ℹ coin signal information ℹ date tuesday 010119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-01 08:00:28+00:00 1.0 1325133208 2583 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 010119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-01 05:54:12+00:00 1.0 1325133208 2575 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 12:26:27+00:00 1.0 1325133208 2571 binance mega signal event on today guys less than 5 hours left be ready with your btc on binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 07:29:58+00:00 1.0 1325133208 2570 binance mega signal event on date 30thdecember exact time 1230 pm gmt participants upto 500k telegram users exchange binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-29 19:11:19+00:00 1.0 1325133208 2569 pump results coin was bnt low 00001400 reached 000017849 heavy volume created 11 btc heavy buying selling occured in our coinwhich is unexpected n unpredictible preventing it from gaining height 2018-12-29 18:35:27+00:00 1.0 1325133208 2564 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-29 17:00:32+00:00 1.0 1325133208 2562 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-29 16:55:09+00:00 1.0 1325133208 2561 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-29 16:50:24+00:00 1.0 1325133208 2560 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-29 16:40:53+00:00 1.0 1325133208 2559 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-29 16:30:17+00:00 1.0 1325133208 2558 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 16:00:23+00:00 1.0 1325133208 2557 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 15:00:23+00:00 1.0 1325133208 2556 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-29 13:00:02+00:00 1.0 1325133208 2555 ℹ coin signal information ℹ date saturday 29122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-29 10:30:19+00:00 1.0 1325133208 2554 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29122018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-29 09:04:29+00:00 1.0 1325133208 2552 pump results x2 coin was qkc open 000000920 reached 000001886 note we will always pump our coins againso always trade with us for max profit 2018-12-28 17:15:58+00:00 1.0 1325133208 2547 the coin to pump is qkc exchange yobitnet target +500 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-28 16:00:14+00:00 1.0 1325133208 2545 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-28 15:55:18+00:00 1.0 1325133208 2544 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-28 15:50:05+00:00 1.0 1325133208 2543 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-28 15:40:07+00:00 1.0 1325133208 2542 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-28 15:30:01+00:00 1.0 1325133208 2541 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 15:00:02+00:00 1.0 1325133208 2538 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 14:30:10+00:00 1.0 1325133208 2537 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 13:00:03+00:00 1.0 1325133208 2531 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 10:01:01+00:00 1.0 1325133208 2530 ℹ coin signal information ℹ date friday 28122018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all ofj us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-28 09:15:04+00:00 1.0 1325133208 2502 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 12:27:53+00:00 1.0 1325133208 2501 binance mega signal today ℹ️ 10 minutes left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 12:20:20+00:00 1.0 1325133208 2500 binance mega signal today ℹ️ 01 hour left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 11:30:00+00:00 1.0 1325133208 2499 binance mega signal today ℹ️ 04 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 08:43:37+00:00 1.0 1325133208 2498 binance mega signal today ℹ️ 530 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 07:03:21+00:00 1.0 1325133208 2497 binance mega signal event on date 27thdecember exact time 1230 pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 04:41:47+00:00 1.0 1325133208 2488 pump results coin was dlt 24 hr low 000000881 reached 000001520 note we will always pump our coins againso always trade with us for max profit 2018-12-26 18:03:16+00:00 1.0 1325133208 2483 the coin to pump is dlt exchange yobitnet target +500 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-26 17:00:20+00:00 1.0 1325133208 2481 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-26 16:55:20+00:00 1.0 1325133208 2480 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-26 16:50:16+00:00 1.0 1325133208 2479 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-26 16:40:03+00:00 1.0 1325133208 2478 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-26 16:30:24+00:00 1.0 1325133208 2476 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 16:00:13+00:00 1.0 1325133208 2469 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 15:00:10+00:00 1.0 1325133208 2464 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-26 13:00:24+00:00 1.0 1325133208 2459 ℹ coin signal information ℹ date wednesday 26122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-26 10:58:09+00:00 1.0 1325133208 2449 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-26 09:00:08+00:00 1.0 1325133208 2419 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-24 19:00:21+00:00 1.0 1325133208 2417 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-24 18:55:08+00:00 1.0 1325133208 2416 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-24 18:50:30+00:00 1.0 1325133208 2415 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-24 18:40:09+00:00 1.0 1325133208 2414 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-24 18:30:11+00:00 1.0 1325133208 2412 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 18:00:06+00:00 1.0 1325133208 2407 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 17:00:11+00:00 1.0 1325133208 2402 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 15:00:29+00:00 1.0 1325133208 2399 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 13:00:10+00:00 1.0 1325133208 2396 ℹ coin signal information ℹ date monday 24122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-24 10:04:13+00:00 1.0 1325133208 2394 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24122018 monday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-24 09:32:33+00:00 1.0 1325133208 2383 pump results coin was brd started 000005299 reached 000005695 vol 16 btc buying still going on 2018-12-22 18:00:44+00:00 1.0 1325133208 2378 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2018-12-22 16:55:06+00:00 1.0 1325133208 2377 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2018-12-22 16:50:14+00:00 1.0 1325133208 2376 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-12-22 16:40:12+00:00 1.0 1325133208 2375 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-12-22 16:30:09+00:00 1.0 1325133208 2374 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 16:00:14+00:00 1.0 1325133208 2373 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 15:00:09+00:00 1.0 1325133208 2372 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 11:00:06+00:00 1.0 1325133208 2364 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-20 17:00:49+00:00 1.0 1325133208 2362 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-20 16:55:06+00:00 1.0 1325133208 2361 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-20 16:50:37+00:00 1.0 1325133208 2360 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-20 16:40:23+00:00 1.0 1325133208 2359 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-20 16:30:10+00:00 1.0 1325133208 2358 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 16:00:12+00:00 1.0 1325133208 2357 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 15:00:24+00:00 1.0 1325133208 2356 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-20 11:00:50+00:00 1.0 1325133208 2355 ℹ coin signal information ℹ date thursday 20122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-20 07:00:11+00:00 1.0 1325133208 2354 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for ato least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces byi setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 20122018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-20 05:42:15+00:00 1.0 1325133208 2351 pump results almost x 2 coin was loom started 000001125 reached 000002153 note we will always pump our coins againso always trade with us for max profit 2018-12-18 18:36:41+00:00 1.0 1325133208 2347 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-18 18:00:14+00:00 1.0 1325133208 2345 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-18 17:55:02+00:00 1.0 1325133208 2344 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-18 17:50:04+00:00 1.0 1325133208 2343 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-18 17:40:04+00:00 1.0 1325133208 2342 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-18 17:30:06+00:00 1.0 1325133208 2341 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 17:00:09+00:00 1.0 1325133208 2340 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 15:00:08+00:00 1.0 1325133208 2339 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 14:00:02+00:00 1.0 1325133208 2338 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 13:00:13+00:00 1.0 1325133208 2337 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 11:00:02+00:00 1.0 1325133208 2336 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18122018 tuesday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-18 10:32:02+00:00 1.0 1325133208 2334 pump results coin was req started 000000600 reached 000000920 note we will always pump our coins againso always trade with us for max profit 2018-12-16 17:56:37+00:00 1.0 1325133208 2329 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-16 17:00:13+00:00 1.0 1325133208 2327 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-16 16:55:06+00:00 1.0 1325133208 2326 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-16 16:50:02+00:00 1.0 1325133208 2325 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-16 16:40:03+00:00 1.0 1325133208 2324 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-16 16:30:07+00:00 1.0 1325133208 2323 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 16:00:06+00:00 1.0 1325133208 2322 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 15:00:05+00:00 1.0 1325133208 2321 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-16 13:00:04+00:00 1.0 1325133208 2320 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnetk time 5 pm gmt read the instructions above and be ready 2018-12-16 11:00:06+00:00 1.0 1325133208 2319 ℹ coin signal information ℹ date sunday16122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-16 10:03:31+00:00 1.0 1325133208 2318 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmti this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16122018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-16 04:16:25+00:00 1.0 1325133208 2311 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-14 17:00:09+00:00 1.0 1325133208 2309 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-14 16:55:09+00:00 1.0 1325133208 2308 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-14 16:50:02+00:00 1.0 1325133208 2307 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-14 16:40:02+00:00 1.0 1325133208 2306 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-14 16:30:09+00:00 1.0 1325133208 2305 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-14 16:00:11+00:00 1.0 1325133208 2304 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-14 15:00:25+00:00 1.0 1325133208 2303 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-14 13:00:33+00:00 1.0 1325133208 2302 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-14 10:00:02+00:00 1.0 1325133208 2301 ℹ coin signal information ℹ date friday14122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-14 08:04:59+00:00 1.0 1325133208 2300 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmti this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 14122018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-14 05:23:16+00:00 1.0 1325133208 2294 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-12 17:00:14+00:00 1.0 1325133208 2292 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-12 16:55:17+00:00 1.0 1325133208 2291 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-12 16:50:05+00:00 1.0 1325133208 2290 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-12 16:40:08+00:00 1.0 1325133208 2289 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-12 16:30:27+00:00 1.0 1325133208 2288 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-12 16:00:08+00:00 1.0 1325133208 2287 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-12 15:30:04+00:00 1.0 1325133208 2286 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-12 15:00:24+00:00 1.0 1325133208 2285 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-12 13:01:06+00:00 1.0 1325133208 2284 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-12 12:00:30+00:00 1.0 1325133208 2283 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-12 08:00:05+00:00 1.0 1325133208 2282 ℹ coin signal information ℹ date wednesday12122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-12 07:01:04+00:00 1.0 1325133208 2281 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmti this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 12122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-12 05:38:37+00:00 1.0 1325133208 2278 pump results x2 coin was eqt started 00000616 reached 000001400 great job guys note we always repump our coins 2018-12-09 19:43:19+00:00 1.0 1325133208 2273 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-09 19:00:18+00:00 1.0 1325133208 2271 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-09 18:55:07+00:00 1.0 1325133208 2270 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-09 18:50:08+00:00 1.0 1325133208 2269 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-09 18:39:10+00:00 1.0 1325133208 2268 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-09 18:30:12+00:00 1.0 1325133208 2267 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 18:00:16+00:00 1.0 1325133208 2266 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 17:00:14+00:00 1.0 1325133208 2265 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 15:00:14+00:00 1.0 1325133208 2264 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 13:00:17+00:00 1.0 1325133208 2261 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09122018 sunday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-09 11:52:47+00:00 1.0 1325133208 2259 pump results x2 coin was plr started 000001270 reached 000002500 great job guys 2018-12-07 20:04:23+00:00 1.0 1325133208 2254 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-07 19:00:25+00:00 1.0 1325133208 2252 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-07 18:55:13+00:00 1.0 1325133208 2251 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-07 18:51:00+00:00 1.0 1325133208 2250 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-07 18:38:10+00:00 1.0 1325133208 2249 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now pump is only way to make quick moneyso b ready 2018-12-07 18:30:17+00:00 1.0 1325133208 2246 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 15:00:13+00:00 1.0 1325133208 2245 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 13:00:24+00:00 1.0 1325133208 2244 ℹ coin signal information ℹ date friday 07122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt 8 hrs remaining for mega signal ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-07 11:00:24+00:00 1.0 1325133208 2243 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 09:01:04+00:00 1.0 1325133208 2238 pump results 300 gain coin was xptx open 000002144 reached 000006450 buy order for long timen still exists greenery in xptx noteyou did great job guyz we always repump our coin so hold if u buy high 2018-12-05 19:44:50+00:00 1.0 1325133208 2235 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-05 19:00:25+00:00 1.0 1325133208 2233 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-05 18:55:14+00:00 1.0 1325133208 2232 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-05 18:50:09+00:00 1.0 1325133208 2231 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-05 18:38:07+00:00 1.0 1325133208 2230 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-05 18:30:42+00:00 1.0 1325133208 2229 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 18:00:16+00:00 1.0 1325133208 2228 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 17:00:16+00:00 1.0 1325133208 2227 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 15:00:14+00:00 1.0 1325133208 2226 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 13:00:08+00:00 1.0 1325133208 2225 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 11:00:15+00:00 1.0 1325133208 2224 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 09:01:22+00:00 1.0 1325133208 2223 ℹ coin signal information ℹ date wednesday 05122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-05 06:30:15+00:00 1.0 1325133208 2219 pump results 100 gain coin was alis open 000000692 reached 000001315 buy order for long timen still exists greenery in alis noteyou did great job guyz despite lagging yobit website today 2018-12-01 19:54:37+00:00 1.0 1325133208 2217 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-01 19:00:08+00:00 1.0 1325133208 2215 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-01 18:55:04+00:00 1.0 1325133208 2214 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-01 18:50:03+00:00 1.0 1325133208 2208 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-01 13:00:05+00:00 1.0 1325133208 2207 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-01 11:06:01+00:00 1.0 1325133208 2206 ℹ coin signal information ℹ date saturday01122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-01 09:31:27+00:00 1.0 1325133208 2201 dear members a lot of people have been wondering when the next pump will be the pump will be held shortly we are currently setting up a big campaign following up to next weekend more details will follow soon thanks for patience regards yobit pumping crazy community cryptosignalcrazy 2018-11-25 14:45:05+00:00 1.0 1325133208 2137 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:45+00:00 1.0 1325133208 2132 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:27+00:00 1.0 1325133208 2131 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-18 16:55:17+00:00 1.0 1325133208 2122 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 08:00:37+00:00 1.0 1325133208 2121 ℹ coin signal information ℹ date thursday18102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-18 03:34:52+00:00 1.0 1325133208 2120 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18102018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-18 01:34:42+00:00 1.0 1325133208 2119 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:18+00:00 1.0 1325133208 2118 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:38+00:00 1.0 1325133208 2112 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:20+00:00 1.0 1325133208 2110 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:15+00:00 1.0 1325133208 2107 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-13 16:30:15+00:00 1.0 1325133208 2101 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 09:02:18+00:00 1.0 1325133208 2100 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 06:11:33+00:00 1.0 1325133208 2099 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:56+00:00 1.0 1325133208 2097 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:59+00:00 1.0 1325133208 2092 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:38+00:00 1.0 1325133208 2091 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:34+00:00 1.0 1325133208 2090 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:29+00:00 1.0 1325133208 2089 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:22+00:00 1.0 1325133208 2088 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:29+00:00 1.0 1325133208 2087 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:36+00:00 1.0 1325133208 2086 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:28+00:00 1.0 1325133208 2085 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:19+00:00 1.0 1325133208 2084 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:15+00:00 1.0 1325133208 2083 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:34+00:00 1.0 1325133208 2082 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:16+00:00 1.0 1325133208 2081 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:55:07+00:00 1.0 1325133208 2080 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:36+00:00 1.0 1325133208 2079 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:58+00:00 1.0 1325133208 2078 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:52+00:00 1.0 1325133208 2073 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:18+00:00 1.0 1325133208 2072 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:24+00:00 1.0 1325133208 2071 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:14+00:00 1.0 1325133208 2070 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:17+00:00 1.0 1325133208 2069 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:33+00:00 1.0 1325133208 2068 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:46+00:00 1.0 1325133208 2067 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:32+00:00 1.0 1325133208 2066 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:17+00:00 1.0 1325133208 2065 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:18+00:00 1.0 1325133208 2064 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:20+00:00 1.0 1325133208 2063 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:28+00:00 1.0 1325133208 2061 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:33+00:00 1.0 1325133208 2060 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:26:11+00:00 1.0 1325133208 2059 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:27+00:00 1.0 1325133208 2058 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:12+00:00 1.0 1325133208 2054 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:52+00:00 1.0 1325133208 2052 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:20+00:00 1.0 1325133208 2051 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:18+00:00 1.0 1325133208 2050 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:19+00:00 1.0 1325133208 2049 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:35+00:00 1.0 1325133208 2048 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:22+00:00 1.0 1325133208 2047 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:29+00:00 1.0 1325133208 2046 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:25+00:00 1.0 1325133208 2045 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:32+00:00 1.0 1325133208 2044 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:44+00:00 1.0 1325133208 2043 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:30+00:00 1.0 1325133208 2042 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:23:17+00:00 1.0 1325133208 2041 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:27+00:00 1.0 1325133208 2040 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:12:06+00:00 1.0 1325133208 2034 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:25+00:00 1.0 1325133208 2032 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:18+00:00 1.0 1325133208 2031 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:22+00:00 1.0 1325133208 2030 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:15+00:00 1.0 1325133208 2029 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:17+00:00 1.0 1325133208 2028 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:19+00:00 1.0 1325133208 2027 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:25+00:00 1.0 1325133208 2026 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:33+00:00 1.0 1325133208 2025 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:23+00:00 1.0 1325133208 2024 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:25+00:00 1.0 1325133208 2023 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:32+00:00 1.0 1325133208 2022 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:19+00:00 1.0 1325133208 2021 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:17+00:00 1.0 1325133208 2020 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:30:00+00:00 1.0 1325133208 2016 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:34+00:00 1.0 1325133208 2014 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:18+00:00 1.0 1325133208 2013 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:14+00:00 1.0 1325133208 2012 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:16+00:00 1.0 1325133208 2011 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:17+00:00 1.0 1325133208 2010 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:21+00:00 1.0 1325133208 2009 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:27+00:00 1.0 1325133208 2008 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:36+00:00 1.0 1325133208 2007 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:35+00:00 1.0 1325133208 2006 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:30+00:00 1.0 1325133208 2005 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:20+00:00 1.0 1325133208 2004 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:23+00:00 1.0 1325133208 2003 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:01:01+00:00 1.0 1325133208 2002 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:02:08+00:00 1.0 1325133208 2001 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:34+00:00 1.0 1325133208 1995 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:11+00:00 1.0 1325133208 1994 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:22+00:00 1.0 1325133208 1993 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:20+00:00 1.0 1325133208 1992 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:16+00:00 1.0 1325133208 1991 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:22+00:00 1.0 1325133208 1990 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:53+00:00 1.0 1325133208 1989 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:24+00:00 1.0 1325133208 1988 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:24+00:00 1.0 1325133208 1987 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:19+00:00 1.0 1325133208 1986 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:24+00:00 1.0 1325133208 1985 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:22+00:00 1.0 1325133208 1984 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:16+00:00 1.0 1325133208 1983 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:25+00:00 1.0 1325133208 1982 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:20+00:00 1.0 1325133208 1981 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:12+00:00 1.0 1325133208 1975 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:37+00:00 1.0 1325133208 1973 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:19+00:00 1.0 1325133208 1972 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:20+00:00 1.0 1325133208 1971 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:18+00:00 1.0 1325133208 1970 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:54+00:00 1.0 1325133208 1969 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:28+00:00 1.0 1325133208 1968 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:32+00:00 1.0 1325133208 1967 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:43+00:00 1.0 1325133208 1966 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:28+00:00 1.0 1325133208 1965 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:29+00:00 1.0 1325133208 1964 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:19+00:00 1.0 1325133208 1963 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:18+00:00 1.0 1325133208 1962 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:34+00:00 1.0 1325133208 1961 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:45+00:00 1.0 1325133208 1959 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:29+00:00 1.0 1325133208 1954 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:58+00:00 1.0 1325133208 1952 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:23+00:00 1.0 1325133208 1950 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:37+00:00 1.0 1325133208 1949 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:21+00:00 1.0 1325133208 1948 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:24+00:00 1.0 1325133208 1947 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:45+00:00 1.0 1325133208 1943 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:22+00:00 1.0 1325133208 1942 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 22092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:34+00:00 1.0 1325133208 1940 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:54+00:00 1.0 1325133208 1939 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:46+00:00 1.0 1325133208 1932 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:45+00:00 1.0 1325133208 1930 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:16+00:00 1.0 1325133208 1929 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:21+00:00 1.0 1325133208 1928 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:39+00:00 1.0 1325133208 1927 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:42+00:00 1.0 1325133208 1926 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:31+00:00 1.0 1325133208 1925 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:23+00:00 1.0 1325133208 1924 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:42+00:00 1.0 1325133208 1923 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:17+00:00 1.0 1325133208 1922 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:23+00:00 1.0 1325133208 1921 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:16+00:00 1.0 1325133208 1920 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:35+00:00 1.0 1325133208 1918 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:11:10+00:00 1.0 1325133208 1917 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:08+00:00 1.0 1325133208 1909 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:39+00:00 1.0 1325133208 1908 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:19+00:00 1.0 1325133208 1907 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:29+00:00 1.0 1325133208 1906 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:23+00:00 1.0 1325133208 1905 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:34+00:00 1.0 1325133208 1904 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:32+00:00 1.0 1325133208 1903 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:42+00:00 1.0 1325133208 1902 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:21+00:00 1.0 1325133208 1901 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:44+00:00 1.0 1325133208 1900 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:46+00:00 1.0 1325133208 1899 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:41+00:00 1.0 1325133208 1898 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:26+00:00 1.0 1325133208 1897 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:33+00:00 1.0 1325133208 1896 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:42+00:00 1.0 1325133208 1887 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:54+00:00 1.0 1325133208 1886 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:15+00:00 1.0 1325133208 1885 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:15+00:00 1.0 1325133208 1884 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:18+00:00 1.0 1325133208 1883 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:29+00:00 1.0 1325133208 1882 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:21+00:00 1.0 1325133208 1881 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:34+00:00 1.0 1325133208 1880 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:50+00:00 1.0 1325133208 1879 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:21+00:00 1.0 1325133208 1878 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:15+00:00 1.0 1325133208 1877 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:21+00:00 1.0 1325133208 1876 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:30+00:00 1.0 1325133208 1874 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:24+00:00 1.0 1325133208 1873 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:23+00:00 1.0 1325133208 1869 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:59+00:00 1.0 1325133208 1868 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:23+00:00 1.0 1325133208 1867 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:19+00:00 1.0 1325133208 1866 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:16+00:00 1.0 1325133208 1865 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:19+00:00 1.0 1325133208 1864 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:19+00:00 1.0 1325133208 1863 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:21+00:00 1.0 1325133208 1862 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:30+00:00 1.0 1325133208 1861 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:29+00:00 1.0 1325133208 1860 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:25+00:00 1.0 1325133208 1859 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:17+00:00 1.0 1325133208 1857 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:08:05+00:00 1.0 1325133208 1856 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:31+00:00 1.0 1325133208 1850 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:56+00:00 1.0 1325133208 1849 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:19+00:00 1.0 1325133208 1848 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:24+00:00 1.0 1325133208 1847 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:16+00:00 1.0 1325133208 1846 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:28+00:00 1.0 1325133208 1845 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:32+00:00 1.0 1325133208 1844 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:27+00:00 1.0 1325133208 1843 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:21+00:00 1.0 1325133208 1842 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:19+00:00 1.0 1325133208 1841 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:22+00:00 1.0 1325133208 1840 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:21+00:00 1.0 1325133208 1839 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:30+00:00 1.0 1325133208 1837 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:55+00:00 1.0 1325133208 1836 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:46+00:00 1.0 1325133208 1830 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:45+00:00 1.0 1325133208 1829 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:16+00:00 1.0 1325133208 1828 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:18+00:00 1.0 1325133208 1827 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:19+00:00 1.0 1325133208 1826 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:25+00:00 1.0 1325133208 1825 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:27+00:00 1.0 1325133208 1824 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:21+00:00 1.0 1325133208 1823 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:53+00:00 1.0 1325133208 1822 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:27+00:00 1.0 1325133208 1821 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:21+00:00 1.0 1325133208 1820 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:45+00:00 1.0 1325133208 1819 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:55+00:00 1.0 1325133208 1817 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:50+00:00 1.0 1325133208 1816 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:51+00:00 1.0 1325133208 1809 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:26+00:00 1.0 1325133208 1808 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:16+00:00 1.0 1325133208 1807 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:16+00:00 1.0 1325133208 1806 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:21+00:00 1.0 1325133208 1805 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:25+00:00 1.0 1325133208 1804 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:29+00:00 1.0 1325133208 1803 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:45+00:00 1.0 1325133208 1802 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:26+00:00 1.0 1325133208 1801 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:33+00:00 1.0 1325133208 1800 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:19+00:00 1.0 1325133208 1799 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:20+00:00 1.0 1325133208 1798 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:12+00:00 1.0 1325133208 1790 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:50+00:00 1.0 1325133208 1789 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:26+00:00 1.0 1325133208 1788 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:18+00:00 1.0 1325133208 1787 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:19+00:00 1.0 1325133208 1786 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:21+00:00 1.0 1325133208 1785 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:23+00:00 1.0 1325133208 1784 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:21+00:00 1.0 1325133208 1783 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:25+00:00 1.0 1325133208 1782 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:23+00:00 1.0 1325133208 1781 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:24+00:00 1.0 1325133208 1780 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:17+00:00 1.0 1325133208 1779 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 11 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:17+00:00 1.0 1325133208 1777 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:14+00:00 1.0 1325133208 1756 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:22+00:00 1.0 1325133208 1755 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:20+00:00 1.0 1325133208 1754 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:19+00:00 1.0 1325133208 1753 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:15+00:00 1.0 1325133208 1752 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:31+00:00 1.0 1325133208 1751 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:24+00:00 1.0 1325133208 1750 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:22+00:00 1.0 1325133208 1749 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:35+00:00 1.0 1325133208 1748 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:26+00:00 1.0 1325133208 1747 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:18+00:00 1.0 1325133208 1746 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:17+00:00 1.0 1325133208 1745 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:25+00:00 1.0 1325133208 1743 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:23+00:00 1.0 1325133208 1736 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:49+00:00 1.0 1325133208 1735 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:23+00:00 1.0 1325133208 1734 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:24+00:00 1.0 1325133208 1733 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:34+00:00 1.0 1325133208 1732 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:32+00:00 1.0 1325133208 1731 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:40+00:00 1.0 1325133208 1730 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:30+00:00 1.0 1325133208 1729 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:21+00:00 1.0 1325133208 1728 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:16+00:00 1.0 1325133208 1727 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:17+00:00 1.0 1325133208 1726 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:23+00:00 1.0 1325133208 1725 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:30+00:00 1.0 1325133208 1723 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:26+00:00 1.0 1325133208 1717 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:29+00:00 1.0 1325133208 1716 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:19+00:00 1.0 1325133208 1715 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:16+00:00 1.0 1325133208 1714 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:17+00:00 1.0 1325133208 1713 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:16+00:00 1.0 1325133208 1712 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:01:07+00:00 1.0 1325133208 1711 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:23+00:00 1.0 1325133208 1710 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:23+00:00 1.0 1325133208 1709 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:26+00:00 1.0 1325133208 1708 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:23+00:00 1.0 1325133208 1707 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:25+00:00 1.0 1325133208 1706 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:51+00:00 1.0 1325133208 1704 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:14+00:00 1.0 1325133208 1694 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:17+00:00 1.0 1325133208 1693 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:17+00:00 1.0 1325133208 1686 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:25+00:00 1.0 1325133208 1685 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:23+00:00 1.0 1325133208 1684 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:25+00:00 1.0 1325133208 1682 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:50+00:00 1.0 1325133208 1681 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:34+00:00 1.0 1325133208 1672 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:19+00:00 1.0 1325133208 1671 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:18+00:00 1.0 1325133208 1669 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:26+00:00 1.0 1325133208 1668 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:22+00:00 1.0 1325133208 1666 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:17+00:00 1.0 1325133208 1663 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:18+00:00 1.0 1325133208 1662 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:38+00:00 1.0 1325133208 1660 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:34+00:00 1.0 1325133208 1644 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:17+00:00 1.0 1325133208 1643 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:17+00:00 1.0 1325133208 1635 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:21+00:00 1.0 1325133208 1634 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:24+00:00 1.0 1325133208 1632 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:40+00:00 1.0 1325133208 1626 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:41+00:00 1.0 1325133208 1624 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:16+00:00 1.0 1325133208 1622 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:16+00:00 1.0 1325133208 1621 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:21+00:00 1.0 1325133208 1618 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:20+00:00 1.0 1325133208 1616 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:18+00:00 1.0 1325133208 1615 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:37+00:00 1.0 1325133208 1614 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:12+00:00 1.0 1325133208 1613 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:51+00:00 1.0 1325133208 1606 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:17+00:00 1.0 1325133208 1605 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:21+00:00 1.0 1325133208 1604 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:29+00:00 1.0 1325133208 1603 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:15+00:00 1.0 1325133208 1602 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:29+00:00 1.0 1325133208 1601 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:20+00:00 1.0 1325133208 1600 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:28+00:00 1.0 1325133208 1599 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:23+00:00 1.0 1325133208 1598 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:23+00:00 1.0 1325133208 1597 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:30+00:00 1.0 1325133208 1596 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:17+00:00 1.0 1325133208 1595 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:27+00:00 1.0 1325133208 1594 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:35+00:00 1.0 1325133208 1593 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:35+00:00 1.0 1325133208 1590 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:19+00:00 1.0 1325133208 1562 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:30+00:00 1.0 1325133208 1552 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:23+00:00 1.0 1325133208 1551 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:17+00:00 1.0 1325133208 1550 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-22 16:51:20+00:00 1.0 1325133208 1549 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-22 16:41:17+00:00 1.0 1325133208 1548 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-22 16:31:24+00:00 1.0 1325133208 1547 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 16:01:23+00:00 1.0 1325133208 1545 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 15:01:29+00:00 1.0 1325133208 1544 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:19+00:00 1.0 1325133208 1543 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:18+00:00 1.0 1325133208 1542 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:23+00:00 1.0 1325133208 1541 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:37+00:00 1.0 1325133208 1540 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:54+00:00 1.0 1325133208 1539 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:09+00:00 1.0 1325133208 1528 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:28+00:00 1.0 1325133208 1526 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:32+00:00 1.0 1325133208 1525 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:22+00:00 1.0 1325133208 1524 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:20+00:00 1.0 1325133208 1523 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:18+00:00 1.0 1325133208 1522 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:03:05+00:00 1.0 1325133208 1521 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:25+00:00 1.0 1325133208 1520 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:19+00:00 1.0 1325133208 1519 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:17+00:00 1.0 1325133208 1518 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:27+00:00 1.0 1325133208 1516 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:58+00:00 1.0 1325133208 1515 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:13+00:00 1.0 1325133208 1513 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:42+00:00 1.0 1325133208 1512 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:20:06+00:00 1.0 1325133208 1502 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:14+00:00 1.0 1325133208 1500 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:26+00:00 1.0 1325133208 1499 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:19+00:00 1.0 1325133208 1498 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:14+00:00 1.0 1325133208 1497 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:39+00:00 1.0 1325133208 1496 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:32+00:00 1.0 1325133208 1495 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:24+00:00 1.0 1325133208 1493 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:34+00:00 1.0 1325133208 1490 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:17+00:00 1.0 1325133208 1489 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:26+00:00 1.0 1325133208 1487 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:52+00:00 1.0 1325133208 1485 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:39+00:00 1.0 1325133208 1484 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:53+00:00 1.0 1325133208 1480 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:20:03+00:00 1.0 1325133208 1471 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:58+00:00 1.0 1325133208 1469 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:18+00:00 1.0 1325133208 1468 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:14+00:00 1.0 1325133208 1467 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:18+00:00 1.0 1325133208 1466 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:18+00:00 1.0 1325133208 1465 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:19+00:00 1.0 1325133208 1464 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:18+00:00 1.0 1325133208 1463 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:19+00:00 1.0 1325133208 1462 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:19+00:00 1.0 1325133208 1461 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 08:00:02+00:00 1.0 1325133208 1459 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:17+00:00 1.0 1325133208 1458 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:35+00:00 1.0 1325133208 1457 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:53:03+00:00 1.0 1325133208 1447 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:30+00:00 1.0 1325133208 1445 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-16 15:56:14+00:00 1.0 1325133208 1444 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-16 15:51:23+00:00 1.0 1325133208 1443 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-16 15:41:14+00:00 1.0 1325133208 1442 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-16 15:31:25+00:00 1.0 1325133208 1441 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 15:01:24+00:00 1.0 1325133208 1440 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 14:31:21+00:00 1.0 1325133208 1439 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-16 13:01:18+00:00 1.0 1325133208 1438 ℹ coin signal information ℹ date thursday 16082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-16 08:01:28+00:00 1.0 1325133208 1436 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 16082018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-16 02:27:06+00:00 1.0 1325133208 1435 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:36+00:00 1.0 1325133208 1434 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:09+00:00 1.0 1325133208 1423 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:09+00:00 1.0 1325133208 1422 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-14 16:56:23+00:00 1.0 1325133208 1421 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-14 16:50:15+00:00 1.0 1325133208 1419 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-14 16:41:29+00:00 1.0 1325133208 1418 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-14 16:30:24+00:00 1.0 1325133208 1417 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 16:00:28+00:00 1.0 1325133208 1416 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 14:00:22+00:00 1.0 1325133208 1415 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 13:04:22+00:00 1.0 1325133208 1414 ℹ coin signal information ℹ date tuesday 14082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-14 12:02:50+00:00 1.0 1325133208 1413 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 14082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-14 11:37:43+00:00 1.0 1325133208 1411 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:57+00:00 1.0 1325133208 1407 hold post coin name in yobit chatboxhaving rumour of airdrop 2018-08-13 18:07:14+00:00 1.0 1325133208 1400 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:01:04+00:00 1.0 1325133208 1399 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-13 17:56:13+00:00 1.0 1325133208 1398 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-13 17:51:13+00:00 1.0 1325133208 1397 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-13 17:41:14+00:00 1.0 1325133208 1396 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-13 17:31:16+00:00 1.0 1325133208 1395 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 17:01:16+00:00 1.0 1325133208 1394 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 15:01:20+00:00 1.0 1325133208 1393 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 13:01:16+00:00 1.0 1325133208 1392 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 10:01:20+00:00 1.0 1325133208 1391 ℹ coin signal information ℹ date monday 13082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 10 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-13 08:01:17+00:00 1.0 1325133208 1390 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 13082018 monday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-13 03:28:59+00:00 1.0 1325133208 1388 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:33+00:00 1.0 1325133208 1377 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 16:00:10+00:00 1.0 1325133208 1376 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-12 15:56:13+00:00 1.0 1325133208 1375 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-12 15:51:19+00:00 1.0 1325133208 1374 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-12 15:41:14+00:00 1.0 1325133208 1373 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-12 15:31:19+00:00 1.0 1325133208 1372 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 15:01:26+00:00 1.0 1325133208 1371 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 14:31:19+00:00 1.0 1325133208 1370 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 13:01:17+00:00 1.0 1325133208 1369 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 10:01:34+00:00 1.0 1325133208 1368 ℹ coin signal information ℹ date sunday 12082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-12 08:01:14+00:00 1.0 1325133208 1367 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 12082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-12 02:38:23+00:00 1.0 1325133208 1365 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:06:05+00:00 1.0 1325133208 1349 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:15+00:00 1.0 1325133208 1346 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-09 17:56:14+00:00 1.0 1325133208 1345 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-09 17:51:13+00:00 1.0 1325133208 1333 ℹ coin signal information ℹ date thursday 09082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 9 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-09 08:56:25+00:00 1.0 1325133208 1332 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 09082018 thursday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-09 08:29:44+00:00 1.0 1325133208 1328 great pump as you can see today we had a repump of our last coin for you to get out who was trapped last time with us always profit always buy low level with us enjoy 2018-08-09 05:04:51+00:00 1.0 1325133208 1322 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:48+00:00 1.0 1325133208 1321 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-08 15:56:18+00:00 1.0 1325133208 1320 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-08 15:51:14+00:00 1.0 1325133208 1313 ℹ coin signal information ℹ date wednesday 08082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-08 08:01:15+00:00 1.0 1325133208 1312 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-08 00:34:18+00:00 1.0 1325133208 1310 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:32+00:00 1.0 1325133208 1300 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:38+00:00 1.0 1325133208 1299 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-05 15:57:14+00:00 1.0 1325133208 1298 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-05 15:52:15+00:00 1.0 1325133208 1292 ℹ coin signal information ℹ date sunday 05082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-05 11:04:16+00:00 1.0 1325133208 1291 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 05082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-05 10:16:20+00:00 1.0 1325133208 1289 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:28+00:00 1.0 1325133208 1280 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:28+00:00 1.0 1325133208 1279 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-04 15:57:24+00:00 1.0 1325133208 1271 ℹ coin signal information ℹ date saturday 04082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 6 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-04 09:59:43+00:00 1.0 1325133208 1270 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 04082018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-04 09:46:01+00:00 1.0 1325133208 1268 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:32+00:00 1.0 1325133208 1259 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:41+00:00 1.0 1325133208 1258 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-03 15:57:23+00:00 1.0 1325133208 1257 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-03 15:52:25+00:00 1.0 1325133208 1252 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 13:02:38+00:00 1.0 1325133208 1251 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 10:02:32+00:00 1.0 1325133208 1250 ℹ coin signal information ℹ date friday 03082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-03 08:02:26+00:00 1.0 1325133208 1249 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 03082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-03 01:34:32+00:00 1.0 1325133208 1247 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:16:17+00:00 1.0 1325133208 1238 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:01:03+00:00 1.0 1325133208 1237 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-28 15:57:26+00:00 1.0 1325133208 1229 ℹ coin signal information ℹ date saturday 28 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-28 08:02:37+00:00 1.0 1325133208 1228 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 28072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-28 01:34:26+00:00 1.0 1325133208 1226 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:51+00:00 1.0 1325133208 1217 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:52+00:00 1.0 1325133208 1208 ℹ coin signal information ℹ date thursday 26 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-26 08:02:25+00:00 1.0 1325133208 1207 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-26 01:34:28+00:00 1.0 1325133208 1205 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:21:20+00:00 1.0 1325133208 1193 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 16:00:09+00:00 1.0 1325133208 1192 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-21 15:57:09+00:00 1.0 1325133208 1184 ℹ coin signal information ℹ date saturday 21 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-21 08:01:09+00:00 1.0 1325133208 1182 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ newbies can register yourself by using this link get 50 trade discount 2018-07-20 15:32:20+00:00 1.0 1325133208 1180 have you been missing out on these huge profits in our last pump on yobit having 600 profit in snpt coin make sure you are ready for the next one this group buys crypto coins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt 2018-07-20 11:48:33+00:00 1.0 1325133208 1160 the coin to pump is snpt exchange yobitnet target +300 market snptbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-07-16 15:59:54+00:00 1.0 1325133208 1159 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-16 15:57:22+00:00 1.0 1325133208 1155 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-16 15:02:10+00:00 1.0 1325133208 1151 ℹ coin signal information ℹ date monday 16 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-16 08:02:10+00:00 1.0 1325133208 1149 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised and made a jump from yesterday this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 16072018 monday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ newbbies can register urself using this link get 50 trade discount 2018-07-15 15:34:09+00:00 1.0 1325133208 1029 xem hit 3615 today exactly 1st target if you entered in between 3233 range the profit is all yoursadmin prebuys pump the coinso always buy below the current level when signal released 2018-06-07 02:11:59+00:00 1.0 1325133208 1002 the coin to pump is hac exchange cryptopia target +300 500 market hacbtc buy and hold hac target 1st 180 target 2nd 220 2018-05-26 16:31:02+00:00 1.0 1325133208 993 less than 15 minutes left until the big pump on cryptopia 2018-05-26 16:15:08+00:00 1.0 1325133208 990 03hours left to pump ⏰ time 430 pm gmt exchange cryptopia newbbies register yourself using this link get 60 trade discounts ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-26 13:30:22+00:00 1.0 1325133208 987 06hours left to pump ⏰ time 430 pm gmt exchange cryptopia newbbies register yourself using this link get 60 trade discounts ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-26 10:30:15+00:00 1.0 1325133208 984 12 hours left to pump ⏰ time 430 pm gmt exchange cryptopia newbbies register yourself using this link get 60 trade discounts ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-26 04:30:11+00:00 1.0 1325133208 983 big hold pump date 2652018 time 430pm gmt exchange cryptopia target 100+ sign up on cryptopia ‍♀newbbies register yourself using this link get 60 trade discounts get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-25 20:07:09+00:00 1.0 1325133208 972 the coin to pump is nkc exchange yobitnet target +300 500 market nkcbtc 2018-05-23 16:30:01+00:00 1.0 1325133208 971 next post coin name xchange yobit promote the coin in yobit chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-23 16:27:14+00:00 1.0 1325133208 963 6 hours left to pump ⏰ time 430 pm gmt exchange yobit ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-23 10:32:13+00:00 1.0 1325133208 917 the coin to pump is gain exchange yobitnet target +300 500 market gainbtc 2018-05-20 16:30:30+00:00 1.0 1325133208 908 1 hours left to pump ⏰ time 430 pm gmt exchange yobit ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-20 15:30:01+00:00 1.0 1325133208 906 3 hours left to pump ⏰ time 430 pm gmt exchange yobit ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-20 13:30:03+00:00 1.0 1325133208 903 6 hours left to pump ⏰ time 430 pm gmt exchange yobit ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-20 10:30:00+00:00 1.0 1325133208 902 12 hours left to pump ⏰ time 430 pm gmt exchange yobit ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-20 04:30:01+00:00 1.0 1325133208 900 next pump date 2052018 time 430 pm gmt exchange yobitnet target 300+ sign up on yobitnet using this link get 50 discount on trade get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-19 17:09:27+00:00 1.0 1325133208 898 wow that is amazing teamwork that was nice pump we did 016+ btc volume this time more details will be posted later enjoy your profits and see you soon 2018-05-19 15:03:17+00:00 1.0 1325133208 892 5 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ next post is coin name ⭐️ 2018-05-19 14:54:06+00:00 1.0 1325133208 890 10 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:49:12+00:00 1.0 1325133208 888 15 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:44:03+00:00 1.0 1325133208 881 3 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 11:59:02+00:00 1.0 1325133208 880 big co pump announcement 20th may sunday 1800 gmt cryptopia exchange you can find details in pic 2018-05-19 10:29:41+00:00 1.0 1325133208 858 5 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ next post is coin name ⭐️ 2018-05-17 17:55:04+00:00 1.0 1325133208 857 10 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:50:23+00:00 1.0 1325133208 853 1 hour left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:01:38+00:00 1.0 1325133208 843 3 min next post coin name 2018-05-16 16:27:08+00:00 1.0 1325133208 836 less than 3 hours left till pump transfer some btc and lets profit pump exchange yobit 16 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-16 13:33:02+00:00 1.0 1325133208 831 less than 6 hours left till pump transfer some btc and lets profit pump exchange yobit 16 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-16 10:30:01+00:00 1.0 1325133208 814 15 minutes left to pump exchange is yobit 2018-05-14 16:44:38+00:00 1.0 1325133208 806 pump announcement date 1452018 time 5 pm gmt exchange yobitnet target 100+ sign up on yobitnet using this link to get 50 trade discount get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-13 18:16:31+00:00 1.0 1325133208 791 less than 3 hours left till pump transfer some btc and lets profit pump exchange yobit 11 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-11 13:30:24+00:00 1.0 1325133208 731 coin name ant aragon exchange bittrex ⭕️ buy below 445 sell1 0475 ✅ sell2 0560 ✅ sell3 0690 stop loss 0425 ✅ant coin target 2 completed it reached 600 satoshi 40 gain in four days hold for more next big signal will be on sunday 1800 gmt 2018-04-27 01:24:24+00:00 1.0 1325133208 636 less than 3 hours left till pump exchange yobit 11 april ⏱hour 7pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-11 16:00:48+00:00 1.0 1325133208 632 yobit pump time ➖ 700 gmt date ➖ 11042017 exchange ➖ yobit holdtime hold until everyone makes profits ❗️ important ❗️ sign up here if you havent got a yobit account if you dont get a mail after the registration then register again with an other mail adress sometimes yobit has problems with sending mails if it says registration is temporarily off then youve probably made already an account you have to wait some time in order to register again 2018-04-11 11:21:02+00:00 1.0 1325133208 526 pump results coin av open sat 1589 high sat 2174 volume 059 btc overall gain 386 today we hit a decent percent gained we need to make sure we are hodling long enough for oustiders to come in and not dump on our own guys as alwaysstay awesome troll contest won by mraserfiles 2018-03-15 19:37:15+00:00 1.0 1325133208 513 next post coin name 2018-03-15 18:59:26+00:00 1.0 1325133208 512 remember last time we had a surprise rollover winner chosen from the people who troll in the yobit chat so make sure youre atleast doing your best to stay in the roll the more posts about the coin the more the weightage of you being picked in the rolloverweighted roll all the best 5 more minutes 2018-03-15 18:55:19+00:00 1.0 1325133208 511 15 more minutes to moon pump 2018-03-15 18:45:31+00:00 1.0 1325133208 504 less than 5 hours to go make sure that you have your yobit accounts funded and are ready to go this pump is going to be massive 2018-03-15 14:17:46+00:00 1.0 1325133208 503 less than 12 hours until yobit pump todays pump very special collabing 30+ big channel participants 80k+ prepare for huge gains goal 400 2018-03-15 07:11:12+00:00 1.0 1325133208 485 pump time coin crypt buy as much quantity as possible in least time and buy it for x2 and x3 times its original price hold the coin until price gets 200 at least remember to buy as quick as possible 2018-03-13 21:01:20+00:00 1.0 1325133208 462 pump announcement 100k+ subs involved date 1303 hour 9pm21h uk time gmt ⌚️ exchange cryptopiaconz 2018-03-11 12:38:43+00:00 1.0 1325133208 380 next message is the coin name be ready 2018-03-04 17:58:45+00:00 1.0 1325133208 379 pump alert the pump are common with more than a channel ⏳ 5 minutes left time ➖ 1800 gmt exchange ➖ cryptopia btc market 2018-03-04 17:54:37+00:00 1.0 1325133208 378 pump alert the pump are common with more than a channel ⏳ 14 minutes left time ➖ 1800 gmt exchange ➖ cryptopia btc market 2018-03-04 17:47:54+00:00 1.0 1325133208 377 pump alert the pump are common with more than a channel ⏳ 30 minutes left time ➖ 1800 gmt exchange ➖ cryptopia btc market 2018-03-04 17:30:52+00:00 1.0 1325133208 374 pump alert the pump are common with more than a channel ⏳ 52 minutes left time ➖ 1800 gmt exchange ➖ cryptopia btc market 2018-03-04 17:08:33+00:00 1.0 1325133208 372 pump alert the pump are common with more than a channel ⏳ 2 hours left time ➖ 1800 gmt exchange ➖ cryptopia btc market 2018-03-04 16:11:16+00:00 1.0 1325133208 343 coin name is ebg buy fast ride d bullet train 2018-03-03 20:00:07+00:00 1.0 1325133208 342 next post is coin name be ready login cryptopia get ur btc ready to participate in pump 2018-03-03 19:49:23+00:00 1.0 1325133208 328 pump announcement date sunday 4th march time 6pm18h uk time gmt ⌚ exchange cryptopia reminders and new instructions to follow soon 2018-03-02 06:53:18+00:00 1.0 1325133208 132 exchange bittrex coin name coval ⭕️ buy around under 200 sell 1 250 sell2 300 risk level low short term 2018-01-20 10:12:05+00:00 1.0 1288625943 2054 everyone markets been going sideways for much longer than expected we will keep monitoring the btc markets regularly and will post update with our next pump event the next pump will be on date tbc ⏱ time tbc exchange yobit thanks for signing up using this referral link to support your channel ℹ️ stay tuned for announcements 2020-07-06 23:02:51+00:00 1.0 1288625943 2052 everyone first please stay safe then as we see and live it markets are going thru a major correction much wider than expected we will keep monitoring the btc markets regularly and stay updated with any pump events development the next pump will be on date tbc ⏱ time tbc exchange yobit thanks for signing up using this referral link to support your channel ℹ️ stay tuned for announcements 2020-04-16 21:32:20+00:00 1.0 1288625943 2051 everyone good news btc seems to have found a bottom for this previous consolidation phase around 85k we expect the markets to change direction for a new uptrend phase soon we will engage technical analysis of altcoins caps and come up with our next pump schedule stay tuned date tbc ⏱ time tbc exchange yobit thanks for signing up using this referral link to support your channel 2020-03-02 00:50:00+00:00 1.0 1288625943 2050 everyone since btc is still going through this small but healthy correction phase counted as a consolidation step we will have to give it few more days before we proceed to our huge event the pump will be rescheduled for the following date date tbc ⏱ time tbc exchange yobit target 250+ thanks for signing up using this referral link to support your channel ℹ️ stay tuned for futher announcements 2020-02-16 22:18:59+00:00 1.0 1288625943 2049 everyone we will give couple more days to altcoins markets for consolidation phase the pump event will be on next monday heres the new schedule date monday 17th february ⏱ time 1900 gmt utc check your local time exchange yobit target 250+ thanks for signing up using this referral link to support your channel dont miss out on the massive trading opportunities given through the great team work ℹ️ updates to come 2020-02-15 05:39:19+00:00 1.0 1288625943 2048 everyone btc markets are still performing very well ✅ everything is looking great after the very short consolidation phase btc altcoins continue soaring slow and steady bulls taking complete control breaking the resistance levels to the upside and btc now traded above 103k altcoins markets are super active with loads of new investors taking positions and creating massive trading volumes good conditions great timing to set up our next pump there will be amazing trades to take everyone dont miss out date saturday 15th february ⏱ time 1400 gmt utc check your local time exchange yobit thanks for signing up using this referral link to support your channel ℹ️ stay tuned for the upcoming updates 2020-02-12 12:46:36+00:00 1.0 1288625943 2039 only 5 minutes left the next post will be the coin 2020-02-11 19:55:05+00:00 1.0 1288625943 2038 ⚠️ only 10 minutes to go when its time buy fast then hold help promoting coin on the platform chatbox 2020-02-11 19:50:17+00:00 1.0 1288625943 2036 ⏱ under 1 hour remaining to go until pump 2020-02-11 19:02:41+00:00 1.0 1288625943 2035 ⏱ 3 hours left to go until pump be ready everyone we will buy the coin collectively all at the same time with the huge positive impact outside traders from the exchange crowd will spontaneously fomo into the coin after us allowing all of us to sell out much higher 2020-02-11 17:00:07+00:00 1.0 1288625943 2034 everyone great news btc is breaking out above the previous resistance of 10k and is now surging higher 102k the call was made yesterday and spotted right enjoy your gains see you later on today 2000 gmt team altcoins are very hot the pump is already set for a huge success its going to be time to increase our btc balances and make more profits dont miss out 2020-02-11 16:13:32+00:00 1.0 1288625943 2033 ⬆️ review the instructions posted above be ready altcoin markets are very active ideal for a great pump dont miss out ⏱ under 6 hours to go until signal 2020-02-11 14:12:53+00:00 1.0 1288625943 2030 trading instructions regarding tomorrows event sign up and have your btc ready in your wallet ⏱ tomorrow at 2000pm gmt exactly the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ buy in quickly to get the lowest prices then hold for few minutes after posting the image the huge impact will drag markets attention and attract waves of fomo buyers from the exchange crowd sell in pieces not bulk 2020-02-10 13:40:14+00:00 1.0 1288625943 1970 everyone btc markets are still performing very well ✅ everything is still looking great team btc continues its rally slow and steady breaking the new resistance level of 9k then pulling slightly back the trading channel is generally trending to the upside we expect btc to keep testing the 9k resistance and might even break it whithin the next few days good conditions great timing ahead of us to set up our next pump date tbc ⏱ time tbc exchange yobit thanks for signing up using this referral link to support your channel ℹ️ stay tuned for the upcoming news 2020-01-17 21:16:25+00:00 1.0 1288625943 1969 never miss a chance with our cryptos pump signals our algorithms analyze coins btc pairs every minute to detect the best opportunities with the strongest uptrend potential exchange yobit thanks for signing up using this referral link to support your channel ℹ️ announcement coming up soon stay tuned 2020-01-16 23:18:18+00:00 1.0 1288625943 1968 analysis coin ppt low 000002388 high 000006389 increase 167+ ✅ great pump we pushed the coin up and as it was gradually ranking higher on yobit populous ppt has been traded at up to 167+ very well done team congratulations to everyone who took part in the trades and cleared great profits today enjoy your weekend earnings stay tuned for news regarding the next one 2020-01-16 23:17:34+00:00 1.0 1288625943 1960 5 minutes ready the next message will be the image coinbtc 2020-01-16 14:55:07+00:00 1.0 1288625943 1959 ⚠️ only 10 minutes to go when its time go fast coin will swing upwards sharply dont get too greedy sell on time in pieces not bulk 2020-01-16 14:50:06+00:00 1.0 1288625943 1956 ⚠️ everyone please note that the signal will be postponed 60 minutes forward in time 1500 gmt utc check your local time ⏱ 2 hours left to go until pump 2020-01-16 13:00:35+00:00 1.0 1288625943 1955 btc markets are boiling today conditions are great for a pump with our huge impact loads of the investors from the exchange crowd will be spontaneously induced to buy in at peak price allowing all channel members to make big profits from the trades here we come 2020-01-16 12:50:35+00:00 1.0 1288625943 1954 ⬆️ make sure to review the instructions published above be ready for maximum gains today ⏱ 4 hours to go until pump signal 2020-01-16 10:02:00+00:00 1.0 1288625943 1953 trading instructions for tomorrows event sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 200pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the lowest ones then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders first after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo buyers from the exchange crowd ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont bulk sell or sell too early the price will stabilize high long enough to close our positions with the targeted high profits 2020-01-15 22:13:34+00:00 1.0 1288625943 1952 btc kept breaking the following resistances to the upside price marks of 85k 87k and is now trading around 89k everyone another ideal market timing just been spotted right and well be ready to seize the opportunity altcoins are booming make sure you dont miss out on the amazing positions from our pump taking place tomorrow 1400 gmt 2020-01-15 14:00:35+00:00 1.0 1288625943 1951 pump announcement everyone great news btc markets are still moving up next event will take place on date thursday 16th january ⏱ time 1400 gmt utc check your local time exchange yobit ✅ everything is looking great team after the short consolidation phase btc continues soaring slow and steady breaking the resistance level to the upside and is now traded above 85k altcoins markets are super active with loads of investors taking positions and massive trading volumes good conditions great timing to set up our next pump there will be amazing trades to take everyone dont miss out thanks for signing up using this referral link to support your channel ℹ️ stay tuned for futher informations broadcast 2020-01-14 12:24:50+00:00 1.0 1288625943 1950 never miss a chance with our cryptos pump signals our algorithms analyze coins btc pairs every minute to detect the best opportunities with the strongest uptrend potential exchange yobit thanks for signing up using this referral link to support your channel ℹ️ announcement coming up soon stay tuned 2020-01-09 22:33:42+00:00 1.0 1288625943 1942 5 minutes ready the next message will be the image coinbtc 2020-01-09 13:55:02+00:00 1.0 1288625943 1941 ⚠️ only 10 minutes to go when its time get in fast make sure your orders are fully executed filled coin will start raising quickly 2020-01-09 13:50:22+00:00 1.0 1288625943 1939 ⏱ 1 hour remaining to go team everything is looking good today btc going through a little consolidation phase and altcoins rallying slow steady the crowd is taking positions to catch these profits good timing on this next call remember to hold the price up longer to allow our pump impact more time and bring in maximum outside investors from the exchange crowd great trades ahead everyone here we go 2020-01-09 13:00:06+00:00 1.0 1288625943 1938 ⏱ 2 hours left to go until pump 2020-01-09 12:00:03+00:00 1.0 1288625943 1937 ⬆️ make sure to review the instructions published above be ready for maximum gains today altcoin markets are very active with massive trading volumes so there will be amazingly profitable positions to take dont miss out ⏱ 3 hours to go until pump signal 2020-01-09 11:00:02+00:00 1.0 1288625943 1936 trading instructions for tomorrows event sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 200pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders much higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders first after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from the exchange crowd ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont bulk sell or sell too early the price will stabilize high long enough to close our positions with the targeted high profits 2020-01-08 19:00:34+00:00 1.0 1288625943 1934 pump announcement great news team btc markets are moving up we schedule the next pump first of 2020 for date thursday 9th january ⏱ time 1400 gmt utc check your local time exchange yobit ✅ everyone this is the statement published on the 19th december bitcoin is more likely expected to keep surging whithin the next days bouncing from the previous price dip level of 64k to a potential resistance of 8k price mark this has been spotted right and btc is actually soaring touching that resistance btc is already around resistance 8k it might even break it to the upside team we are definitely taking advantage from the markets timing the yobit exchange volume activity and its crowds bullish sentiment altcoins are boiling up with our huge pump impact a bunch of investors from the exchange crowd will be spontaneously fomo investing in our coin at peak price range allowing all channel members to close some fat profits from the trades we expect a coins parabolic price increase profits range to score over 300+ here we go team great trading positions upcoming dont miss out thanks for signing up using this referral link to support your channel ℹ️ more informations to come stay tuned 2020-01-07 11:08:52+00:00 1.0 1288625943 1921 gogo go now lets pump the price up make fantom coin rank 1 on yobit market 2019-12-21 14:00:09+00:00 1.0 1288625943 1919 5 minutes everyone ready the next message will be the image coinbtc 2019-12-21 13:55:05+00:00 1.0 1288625943 1916 ⏱ 1 hour remaining to go team everything is looking great today on this next call remember we will hold the price up even longer to allow our pump impact more time affecting the market promoting the coin itself and bring in much more outside investors from the exchange crowd 2019-12-21 13:00:04+00:00 1.0 1288625943 1915 ⏱ 2 hours left to go until pump 2019-12-21 12:00:04+00:00 1.0 1288625943 1914 ⬆️ everyone makes sure to review the instructions published above be ready for some maximum profits today 300+ ⏱ 3 hours left to go until pump signal 2019-12-21 11:00:08+00:00 1.0 1288625943 1913 ⏱ 24 hours left to go until pump signal trading instructions sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 200pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from the exchange crowd ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high long enough to close our positions with the targeted high profits 2019-12-20 14:07:04+00:00 1.0 1288625943 1912 pump announcement great news team btc markets are swing back up we schedule the next pump for date saturday 21st december ⏱ time 1400 gmt utc check your local time exchange yobit ✅ bitcoin is more likely expected to keep surging whithin the next days bouncing from the previous price dip level of 64k to a potential resistance of 8k price mark team we are definitely taking advantage from the further market timing the yobit exchange volume activity and its crowds bullish sentiment great trading positions upcoming dont miss out we will aim for a longer hold in this next call which will extend the coins parabolic price increase profits range over 300+ remember we pumped ftm last saturday 14th dec it peaked at +360 thanks for signing up using this referral link to support your channel ℹ️ more informations to come stay tuned 2019-12-18 23:16:11+00:00 1.0 1288625943 1910 analysis coin ren low 000000370 high 000000900 ✅ today we pumped ren and we saw it hit a peak of just +144 this time many of us cleared some profits though but we have to assume the btc market was waving downwards just before the schedule time our impact couldnt be sensed properly we saw waves of outside investors coming in around +50 price mark which then made the coin price shoot up to +144 peak great job guys market will be much more stable on the next pump congratulations to everyone who participated today enjoy your earnings stay tuned for information regarding the next one 2019-12-18 18:45:10+00:00 1.0 1288625943 1904 5 minutes team ready the next message will be coinbtc 2019-12-18 14:55:05+00:00 1.0 1288625943 1902 ⏱ 30 minutes to go make sure you still logged in and ready to go 2019-12-18 14:30:13+00:00 1.0 1288625943 1901 ⚙️ yobit exchange web host was not responding definitely due to the extremely busy markets network that has nothing to do with yobit itself it is the web host servers the connection to the origin web server was made but the origin web server timed out before responding the cause is an overloaded background task database or application stressing the resources on web server we told you team that we maintain the pump schedule for a reason even if btc is slightly going lower we expect very high trading volumes and markets bounce btc is already bouncing altcoins are going to surge high ⏱ new signal time schedule 3pm gmt 45 minutes left until pump 2019-12-18 14:15:05+00:00 1.0 1288625943 1899 ⏱ 30 minutes to go make sure you start logging in soon and be ready remember to follow instructions that will ensure every member will sell at the highest profits range around peak levels 2019-12-18 13:30:05+00:00 1.0 1288625943 1898 ⏱ only 1 hour to go until pump even though btc is slightly moving lower its not a big deal in contrary altcoins markets are boiling today the crowd is taking positions to catch the bounce with our huge pump impact a bunch of investors from the exchange crowd will be spontaneously fomo investing in our coin at peak price range allowing all channel members to close some fat profits from the trades here we go team 2019-12-18 13:00:07+00:00 1.0 1288625943 1897 ⏱ 2 hours left to go until pump 2019-12-18 12:00:05+00:00 1.0 1288625943 1896 ⬆️ make sure to review the instructions published above be ready for maximum gains today altcoins are at a low level and bouncing back up sharply so there will be amazingly profitable trading positions to take dont miss out ⏱ 3 hours left to go until pump signal 2019-12-18 11:00:08+00:00 1.0 1288625943 1895 ⏱ 24 hours left to go until pump signal trading instructions sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 200pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from the exchange crowd ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high long enough to close our positions with the targeted high profits 2019-12-17 14:03:06+00:00 1.0 1288625943 1893 pump announcement great news team the next call will be on date wednesday 18th december ⏱ time 1400 gmt utc check your local time exchange yobit ✅ everyone last saturday we had another huge signal after posting the coin we saw it climb to peak 360+ we will aim for a longer hold next time which will extend the coins parabolic price increase profits range thanks for signing up using this referral link to support your channel ℹ️ more informations to come stay tuned 2019-12-16 00:34:15+00:00 1.0 1288625943 1891 analysis coin ftm low 000000150 high 000000691 increase 360+ ✅ great pump team following the instructions wisely had paid off as usual today was a big payday as planned everyone we pushed the coin up and as it was gradually ranking higher to 1 spot on yobit fantom ftm has been traded at up to 360+ very well done team congratulations to everyone who took part in the trades and cleared massive profits today enjoy your weekend earnings stay tuned for information regarding the next one 2019-12-14 20:00:30+00:00 1.0 1288625943 1882 5 minutes team ready the next message will be coinbtc 2019-12-14 13:55:05+00:00 1.0 1288625943 1880 ⏱ 30 minutes to go make sure you start logging in soon and be ready remember to follow instructions that will ensure every member will sell at highest profits around peak levels 2019-12-14 13:30:05+00:00 1.0 1288625943 1879 ⏱ only 1 hour to go until pump btc markets are boiling today conditions are great for a pump with our huge impact loads of the investors from the exchange crowd will be spontaneously induced to buy in at peak price allowing all channel members to make big profits from the trades here we come 2019-12-14 13:00:05+00:00 1.0 1288625943 1878 ⏱ 2 hours left to go until pump 2019-12-14 12:00:06+00:00 1.0 1288625943 1877 ⬆️ make sure to review the instructions published above be ready for maximum gains today ⏱ less than 3 hours left to go until pump signal 2019-12-14 11:12:22+00:00 1.0 1288625943 1876 trading instructions sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 200pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from the exchange crowd ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high long enough to close our positions with the targeted high profits 2019-12-13 23:43:10+00:00 1.0 1288625943 1875 pump announcement great news guys the next call has finally been set for tomorrow saturday 14th date saturday 14th december ⏱ time 1400 gmt utc check your local time exchange yobit everyone as you all know we were waiting for the market to stabilize and btc to find a support which is now found at above 7k we can now proceed safely to the next call its finally time for our next great signal we will gather up tomorrow 2pm gmt to perform a great team work again and achieve a huge record high level of participation and great profits are awaited make sure to set your alarms and mark the date time we are aiming to smash the market there will be amazingly profitable trading positions to take dont miss out thanks for signing up using this referral link to support your channel ℹ️ more informations will be broadcast soon stay tuned 2019-12-13 14:40:36+00:00 1.0 1288625943 1874 next pump announcement is imminent be ready for the event everyone we urge anyone who does not have an account on yobit exchange to register now via the referral link provided below 2019-12-12 01:35:01+00:00 1.0 1288625943 1872 analysis rectification coin mda low 000006701 high 000025000 ✅ today we pumped mda at 3 pm gmt we saw it hit a peak of +167 many of us cleared profits by then but this time the market responded to our impact few hours later 7pm gmt we saw waves of outside investors coming in and the coin reached a new high to +273 amazing job guys congratulations to everyone who participated held the coin enough to sell at this new high enjoy your earnings stay tuned for information regarding the next one 2019-12-06 00:06:00+00:00 1.0 1288625943 1863 5 minutes ready the next message will be coinbtc 2019-12-05 14:55:06+00:00 1.0 1288625943 1861 ⏱ 30 minutes to go make sure you start logging in soon and be ready remember to follow instructions that will ensure every member will sell at highest profits around peak levels 2019-12-05 14:30:07+00:00 1.0 1288625943 1859 ⏱ 2 hours left to go until pump team everything is looking just great today btc is soaring so are most of altcoins here we go remember that with our great impact on the exchange market loads of the exchange investors are induced to buy in at peak level allowing the channel members to profit massively be ready for profits 2019-12-05 13:00:22+00:00 1.0 1288625943 1858 ⬆️ make sure to review the instructions published above altcoins are gaining momentum actually in terms of trading activity volume and low price levels market conditions are perfect there will be amazing profitable positions to take again team so be ready for maximum gains today ⏱ 4 hours left to go until pump signal 2019-12-05 11:01:11+00:00 1.0 1288625943 1857 trading instructions sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 300pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from exchange ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high enough to close our positions with the targeted high profits 2019-12-04 16:07:28+00:00 1.0 1288625943 1856 great news everyone a date time has been set for the next pump date thursday 5th december ⏱ time 1500 gmt utc check your local time exchange yobit team we have been doing great lately last pump we saw great results again with a slow climb outsiders buying in late the coin holding for a long time lets keep this up we will gather up to achieve a great pump next thursday high level of participation and great results are expected averaging +200 » 350+ on this next one we will hold the price up longer to allow our pump impact more time promoting the coin and bring in maximum outside investors from exchange markets that increases our profits margin greatly a very strong pump coming up lets be ready on time and pull out some big gains again everyone thanks for signing up using this referral link to support your channel ℹ️ more informations will be broadcast soon stay tuned 2019-12-02 22:56:07+00:00 1.0 1288625943 1847 5 minutes ready the next message will be coinbtc 2019-11-30 14:55:05+00:00 1.0 1288625943 1845 ⏱ 30 minutes to go make sure you start logging in soon and be ready remember to follow instructions that will ensure every member will sell at highest profits around peak levels 2019-11-30 14:30:06+00:00 1.0 1288625943 1844 ⏱ 1 hour left to go until pump team everything is looking just great today here we go remember that with our great impact on the exchange market loads of the exchange investors are induced to buy in at peak level allowing the channel members to profit massively be ready for profits 2019-11-30 14:00:32+00:00 1.0 1288625943 1842 ⬆️ make sure to review the instructions published above altcoins are gaining momentum actually in terms of trading activity volume and low price levels market conditions are perfect be ready for maximum gains today ⏱ over 4 hours left to go until pump signal 2019-11-30 10:35:08+00:00 1.0 1288625943 1841 trading instructions sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 300pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from exchange ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high enough to close our positions with the targeted high profits 2019-11-30 00:18:18+00:00 1.0 1288625943 1840 signal announcement great news guys a date time has finally been set for the next pump date saturday 30th november ⏱ time 1500 gmt utc check your local time exchange yobit everyone as you all know we were waiting for the market bounce to proceed to the next call its finally time for our next signal we will gather up on saturday 30th 3pm gmt to do great team work again and achieve a huge pump high level of participation and great results are awaited make sure to mark the date time we are aiming to smash new record there will be amazing profitable positions to take again thanks for signing up using this referral link to support your channel ℹ️ more informations will be broadcast soon stay tuned 2019-11-28 12:10:16+00:00 1.0 1288625943 1839 the altcoins market is unstable trailing btcs recent drop in price we will wait for the bounce whithin next few days as a matter of fact for the best calls we need all the good market conditions to be met one thing we know for sure is that it will be worth the wait thank you for understanding the pump date will be on date tbc ⏱ time tbc exchange thanks for signing up using this referral link to support your channel ℹ️ announcement coming up soon stay tuned 2019-11-20 22:34:49+00:00 1.0 1288625943 1837 analysis coin mda low 000007551 high 000065000 ✅ everyone today is a huuge gains day the signal timing was perfect we pumped mda to +100 and then we saw it hit a peak of +760 amazing job guys congratulations to everyone who participated and enjoy your massive earnings stay tuned for information regarding the next one 2019-11-13 15:03:34+00:00 1.0 1288625943 1830 5 minutes ready the next message will be coinbtc 2019-11-13 13:55:05+00:00 1.0 1288625943 1828 ⏱ 30 minutes to go make sure you are logged in and ready the main skill to make the highest gains is to buy fast and focuse on selling around peak levels 2019-11-13 13:30:04+00:00 1.0 1288625943 1827 ⏱ 1 hour left to go until pump team everything is looking just great today here we go remember that with our great impact on the exchange market loads of the exchange investors are induced to buy in at peak level allowing the channel members to profit massively be ready for profits 2019-11-13 13:00:09+00:00 1.0 1288625943 1825 ⬆️ make sure to review the instructions published above and be ready for maximum gains today ⏱ 9 hours to go until pump signal 2019-11-13 05:00:04+00:00 1.0 1288625943 1824 trading instructions sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 200pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from exchange ✅ when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high enough to close our positions with the targeted high profits 2019-11-12 15:21:56+00:00 1.0 1288625943 1823 everyone a technical decision to postpone our pump because of btcs current unstability the altcoins market is unstable trailing btcs recent drop in price we predicted a bounce on sundaymonday which it did happen but a correction is actually following we will wait for the bounce whithin next few days it will be worth the wait the best trading conditions are the prior matter for our channel thank you for understanding the pump date will be date wednesday 13th november ⏱ time 1400 gmt utc check local time exchange thanks for signing up using this referral link to support your channel ℹ️ announcement coming up soon stay tuned 2019-11-11 13:45:23+00:00 1.0 1288625943 1821 ⏱ only 30 minutes left to participate to our anniversary giveaway hurry up and input your btc address the draw will be processed and results will be announced at 0100 gmt utc stay tuned 2019-11-09 22:30:43+00:00 1.0 1288625943 1818 signal announcement great news guys a date time has now been set for the next pump date monday 11th november ⏱ time 1900 gmt utc check your local time exchange yobit its time for our next signal we will gather up on monday 11th to do great team work again and achieve a huge pump high level of participation and great results are awaited making us grow bigger and stronger make sure to mark the date time we are aiming to smash new record there will be amazing profitable positions to take thanks for signing up using this referral link to support your channel ℹ️ more informations will be broadcast soon stay tuned 2019-11-07 15:57:11+00:00 1.0 1288625943 1807 10 minutes to go make sure youre all logged in and ready 2019-11-03 19:50:06+00:00 1.0 1288625943 1802 trading instructions sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ today at 800pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders ✅ after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes the huge impact will drag markets attention and attract waves of fomo investors from exchange when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high enough to close our positions with the targeted high profits not to be missed guys see you later on 2019-11-03 14:28:57+00:00 1.0 1288625943 1800 ✅ btc market is still holding 92k level and going sideways after the significant surge in price that we witnessed previously altcoins markets are at their best in terms of trading activity volume and low price levels its time to set a date time for the next one we will seize the opportunity from this market advantages in our side the date time has been set for date sunday 3rd november ⏱ time 2000 gmt utc check your local time exchange yobit thanks for signing up using this referral link to support your channel ℹ️ more informations will be disclosed shortly stay tuned 2019-10-31 17:42:11+00:00 1.0 1288625943 1792 5 minutes to go the next message will be the image with the coin name 2019-10-30 16:55:03+00:00 1.0 1288625943 1791 ⚠️ only 10 minutes left the main skill to make the highest gains is to buy all in fast and sell out in pieces to keep price at peak levels 2019-10-30 16:50:10+00:00 1.0 1288625943 1790 ⚠️ 30 minutes to go make sure you start logging in soon and be ready remember to follow instructions that will ensure every member will sell at highest profits 2019-10-30 16:30:03+00:00 1.0 1288625943 1788 ⬆️ review the easy instructions and get ready soon altcoins are gaining momentum today last pump we saw waves of exchange investors buying in at peak prices the coin holding high long enough for everyone to exit trades lets keep this up team ⏱ just 2 hours remaining to go 2019-10-30 15:00:04+00:00 1.0 1288625943 1785 trading instructions regarding tomorrows pump sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 500pm gmt exactly an image of the coin will be posted here ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders ✅ after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes this will make a huge impact drag markets attention and attract waves of investors from exchange when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell too early the price will stabilize high enough for members to close positions with the targeted high profits not to be missed guys see you tomorrow 2019-10-29 16:02:44+00:00 1.0 1288625943 1784 ✅ good news keep flooding in guys our last pump was very good mda is still sitting on +65 today altsbtc markets are boiling up and busy enough to set a date and time for our next upcoming pump we need to use this advantage from the volume increase the active trades and the yobit altcoins market investors its going to be a busy week ahead the date time has been set for date wednesday 30th october ⏱ time 1700 gmt utc check your local time exchange yobit ℹ️ more informations will be disclosed soon stay tuned 2019-10-27 23:27:39+00:00 1.0 1288625943 1775 ⏳ in 5 minutes the next message will be the image with the coin name 2019-10-27 16:55:02+00:00 1.0 1288625943 1774 ⚠️ only 10 minutes left if any member left with some coins always keep in mind that we will pump it again 2019-10-27 16:50:02+00:00 1.0 1288625943 1773 ⚠️ 30 minutes to go make sure you start logging in and get ready due to market conditions the main skill to make the largest + gains is buy fast and sell in pieces dont bulk sell 2019-10-27 16:30:03+00:00 1.0 1288625943 1772 ⬆️ all members make sure to review the easy instructions posted previously and be ready with us altcoins markets are boiling and busy today is a payday guys ⏱ 1 hour left to go until pump 2019-10-27 16:00:07+00:00 1.0 1288625943 1771 ⏱ only 2 hours to go until pump ▶️ guys everything is looking just great today here we come remember that with our great impact on the exchange market loads of the exchange investors will be induced to buy in at peak price level allowing the channel members to profit massively be ready to score large profits 2019-10-27 15:00:21+00:00 1.0 1288625943 1769 trading instructions regarding tomorrows pump sign up and have your btc ready in your wallet thanks for signing up using this referral link to support your channel ⏱ tomorrow at 500pm gmt exactly an image of the coin to buy will be posted here we will be buying the coin fast and all at the same time to push its price up ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders ⚠️ after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold for few minutes this will make a huge impact drag markets attention and attract waves of investors from exchange when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell to early the price will stabilize high long enough for all of us to close positions with massive profits every coin will be repumped few times upon members request this new measure ensures every one will sell coins with the targeted high profits not to be missed guys see you tomorrow 2019-10-26 15:51:59+00:00 1.0 1288625943 1767 great news guys this is exactly what we were waiting for to reschedule our pump ✅ btc market was going sideways dropped and we had to cancel yesterdays pump this is now the huge btc breakout we were predicting for this midweek to pump coins that are affected by the btc price surge its now time to set a date time for the next one we are definitely taking advantage from the volume increase the active trades and the yobit exchange investors bullish behaviour great timing guys the date time has been set for date sunday 27th october ⏱ time 1700 gmt utc check your local time exchange wwwyobitnet please note signal will be unranked free for all all members will receive coin at the same time via bot ℹ️ more informations will be disclosed shortly stay tuned 2019-10-25 21:09:05+00:00 1.0 1288625943 1766 everyone a technical decision to postpone our pump because of btcs current unstability as a matter of fact for the best call we need all the good market conditions to be met the altcoins market is unstable trailing btcs recent drop in price we will wait for the bounce whithin next few days one thing we know for sure is that it will be worth the wait the best trading conditions is the prior matter for our channel thank you for understanding the pump date will be date tbc ⏱ time tbc exchange thanks for signing up using this referral link to support your channel ℹ️ announcement coming up soon stay tuned 2019-10-23 22:29:43+00:00 1.0 1288625943 1765 great news its about time for our next one guys a date time has been set for the next pump date thursday 24th october ⏱ time 1700 gmt utc check your local time exchange wwwyobitnet ✅ btc market is going sideways but will spike up for few days starting tomorrow wednesday and we are definitely taking advantage from the volume increase the active trades and the yobit exchange investors bullish behaviour great timing guys please note signal will be unranked free for all all members will receive coin at the same time via bot ℹ️ more informations will be disclosed shortly stay tuned 2019-10-23 01:35:12+00:00 1.0 1288625943 1757 ⏳ 5 minutes the next message will be the image with the coin to buy we are all ready now 2019-10-20 18:55:04+00:00 1.0 1288625943 1756 btc coin pump ⚠️ 15 minutes to go make sure you are logged in and ready the main skill to make the largest + gains is buy fast and sell at peak levels 2019-10-20 18:45:03+00:00 1.0 1288625943 1755 ⏱ 45 minutes remaining to go we always verify the markets are full of exchange investors a very strong pump coming up lets be ready on time and pull out some big gains again everyone 2019-10-20 18:15:06+00:00 1.0 1288625943 1754 ⏱ 90 minutes to go btc is soaring above 8000 exactly what our analysis predicted for today altcoins are gaining momentum and our pump will be just in time be ready guys 2019-10-20 17:30:06+00:00 1.0 1288625943 1753 ⏱ 4 hours remaining to go ⬆️ review the instructions and get ready soon last pump we saw great results with a slow climb waves of exchange investors buying in at peak prices the coin holding high long enough for everyone to exit trades lets keep this up guys 2019-10-20 15:00:06+00:00 1.0 1288625943 1752 ⏱ less than 24 hours left to go team we will gather up to achieve a great pump tomorrow high level of participation and great results are expected averaging +150300+ on this next one we will hold the price up longer to give our marketing team more time to promote the coin and bring in outside investors from exchange markets this usually takes from 5 to 15 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices that increases our profits margin greatly make sure you stick to our original strategy and follow the channels trading instructions a quick to do list for new members 1 sign up thanks for signing up using this referral link to support your channel 2 send btc to your yobit account 3 get familiar with the exchange search bar and buy sell order forms 4 be at your computer 20 minutes early open telegram and log in to yobit 5 wait for the signal to be posted sunday 20th at exactly 7pm gmt 6 buy in quickly sell out and cash in your profits 2019-10-19 19:18:20+00:00 1.0 1288625943 1751 great news everyone the next pump will finally take place on date sunday 20th october ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet its about time for our next pump guys it took some time to schedule and it is definitely worth the wait btc is actually bouncing back up for few days and so does most of small cap altcoins we will seize this opportunity to pump a popular small cap coin to a beautiful 200+ this price range gives us a trading edge over the markets exchange investors make sure to save the date time ✅ everyone will receive coin at the same time via our bot signals are always unranked free for all ℹ️ stay tuned for further informations broadcast 2019-10-18 02:20:59+00:00 1.0 1288625943 1749 ℹ️ everyone a technical decision to postpone our pump for thursday or friday confirmation message will be posted soon because of btcs current unstability as you know we are professionals and do technical analysis properly as a matter of fact for the best call we need all the good market conditions to be met the altcoin market has slowed down a little because of btcs current sideways price action one thing we know for sure is that it will be worth the wait the best trades for our channel members is our 1 priority and it will always be thank you for understanding the pump date will be date tbc ⏱ time tbc exchange yobit 2019-10-15 00:02:15+00:00 1.0 1288625943 1748 signal upcoming next week everyone great news a date time has been set for the next pump date tuesday 15th october ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet we have been doing quite well lately last pump we saw great results again with a slow climb outsiders buying in late the coin holding for a long time lets keep this up make sure to mark the date time as this will be another successfull pump ✅ everyone will receive coin at the same time via our bot signals are always unranked free for all ℹ️ stay tuned for further informations broadcast 2019-10-12 01:09:28+00:00 1.0 1288625943 1737 ⏱ 5 minutes guys the next message will be the image with the coin to buy everyone get ready now 2019-10-11 19:55:02+00:00 1.0 1288625943 1735 ⚠️ 30 minutes coin is expected to moon make sure your buy orders has gone through and then hold while the coin price increases make sure you are logged in and ready the main skill to make the highest gains is to buy fast and focuse on selling around peak levels 2019-10-11 19:30:16+00:00 1.0 1288625943 1729 ✅ team up guys although a lot of you are happy with our pumps records averaging +150300+ on the next altcoin we need to hold the price up longer as we used to this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 5 to 15 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices the result is huge as seen in our previous operations which have hit up to 480+ outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the pump allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive pump make sure you stick to our original strategy and follow the channels trading instructions thanks to all of you for sharing a quick to do list for new members 1 sign up thanks for using this referral link to support your channel 2 send btc to your yobit account 3 get familiar with the exchange search bar and buy sell order forms 4 be at your computer 20 minutes early open telegram and log in to yobit 5 wait for the signal to be posted friday 11th at exactly 8pm gmt 6 buy in quickly sell out and cash in your profits 2019-10-10 01:03:54+00:00 1.0 1288625943 1728 signal announcement great news we have another pump signal upcoming on date friday 11th october ⏱ time 2000 gmt utc check your local time exchange wwwyobitnet market insiders bringing up a very bullish lowcap cryptocurrency a very strong signal coming up soon combined to a perfect market timing we always verify that the market is very busy with outside investors ready to spot bullish momentums and buy the top ranked coins on yobit market lets be ready on time and clear some fat gains again everyone ℹ️ stay tuned for further informations broadcast 2019-10-09 13:28:26+00:00 1.0 1288625943 1719 ⚠️ 5 minutes guys the next message will be the image with the coin to buy everyone get ready now 2019-10-08 19:55:02+00:00 1.0 1288625943 1717 ⚠️ 30 minutes left to the signal make sure you are logged in and ready the main skill to make the highest gains is to buy fast and focuse on selling around peak levels 2019-10-08 19:30:03+00:00 1.0 1288625943 1713 the trading instructions regarding tomorrows pump sign up and have your btc ready in your wallet thanks for using this referral link to support your channel ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ⏱ tomorrow at 800pm gmt exactly an image of the coin to buy will be posted here we will be buying the coin fast and all at the same time ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders ⚠️ after posting the image the coin will be heavily advertised and its price will be increasing rapidly hold help promote with us this will attract waves of investors outside of our group when there are strong waves of buy orders flooding in sell in pieces and keep the price high for outsiders dont sell to early the price will stabilize high long enough for all of us to close positions with massive profits this is a pump opportunity not to be missed guys see you tomorrow 2019-10-07 14:18:46+00:00 1.0 1288625943 1712 signal announcement great news guys a date time has now been set for the next pump date tuesday 8th october ⏱ time 2000 gmt utc check your local time exchange wwwyobitnet its time for our next signal we will gather up to achieve a great pump high level of participation and great results are making us grow bigger and stronger make sure to mark the date time we are prepared for heavy advertising and we are aiming to smash new record there will be amazing trades to take ✅ pumps are free for all everyone will receive coin at the same time via our bot ℹ️ more informations will be broadcast soon stay tuned 2019-10-05 20:52:47+00:00 1.0 1288625943 1695 news its soon going to be time for the next trading opportunity btc market will stabilize after this current drop in price which will present tremendous chances to buy cheaper during our next altcoin pump donald pump will set a new date time for the next one you dont want to miss out on these massive chances lets be ready to make some huge gains teammates date tbc ⏱ time tbc ℹ️ more informations coming up stay tuned 2019-09-24 17:17:08+00:00 1.0 1288625943 1686 ⚠️ 5 minutes guys the next message will be the image with the coin btc everyone get ready now 2019-09-11 17:55:03+00:00 1.0 1288625943 1685 ⚠️ 15 minutes to the pump make sure you are logged in wih everything ready the trick to make some amazing profits is to be focused and ready to buy fast 2019-09-11 17:45:03+00:00 1.0 1288625943 1684 ⏱ only 1 hour left before the pump make sure you log in to your yobit account early enough 20 to 30minutes 2019-09-11 17:00:05+00:00 1.0 1288625943 1682 ⏱ 4 hours to go until the pump today we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2019-09-11 14:02:43+00:00 1.0 1288625943 1680 ⚠️ the trading instructions regarding tomorrows signal sign up and have your btc ready in your wallet thanks for using this referral link to support your channel ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ⏱ tomorrow at 600pm gmt exactly an image of the coin to buy will be posted here ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promote the coin and watch it continue to grow when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make profits from this pump opportunity 2019-09-10 17:13:19+00:00 1.0 1288625943 1679 signal announcement everyone great news a date time has been set for the next pump date wednesday 11th september ⏱ time 1800 gmt utc check your local time exchange wwwyobitnet we have been doing great lately last pump we saw great results again with a slow climb outsiders buying in late the coin holding for a long time lets keep this up make sure to mark the date time as this will be another successfull pump target +150 » 300+ we are prepared for heavy advertising and we are aiming to smash new record ✅ pumps are always unranked free for all everyone will receive coin at the same time via our bot ℹ️ stay tuned for further informations broadcast 2019-09-09 14:54:21+00:00 1.0 1288625943 1678 analysis coin gvt low 000010085 high 000023369 increase 130+ ✅ great pump we pushed the coin up and as it was gradually ranking higher on yobit genesis vision gvt has been traded at up to 131+ very well done congratulations to everyone who traded today enjoy your earnings stay tuned for information regarding the next one 2019-09-02 18:59:35+00:00 1.0 1288625943 1671 ⚠️ 5 minutes guys get ready now the next message will be the image with the coin btc 2019-09-02 17:55:05+00:00 1.0 1288625943 1670 ⚠️ 10 minutes left ℹ️ remember to buy the coin quickly to push the price up hold help promote in the chatbox this will help bring in max outsiders from exchange 2019-09-02 17:50:09+00:00 1.0 1288625943 1668 ⏱ only 1 hour left until signal make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the coin in the btc market 2019-09-02 17:00:07+00:00 1.0 1288625943 1666 ⬆️ make sure to review the instructions published above and be ready everything is looking great today altcoins are bouncing back up with btc and maximum gains are to be made from the huge upcoming trades ⏱ 6 hours to go until pump signal 2019-09-02 12:00:07+00:00 1.0 1288625943 1664 ⚠️ the trading instructions regarding tomorrows signal sign up and have your btc ready in your wallet thanks for using this referral link to support your channel ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ⏱ tomorrow at 600pm gmt exactly an image of the coin to buy will be posted here ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the image the coin will be heavily advertised this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promote the coin and watch it continue to grow when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make profits from this pump opportunity 2019-09-01 22:12:44+00:00 1.0 1288625943 1662 ⚡️ signal announcement everyone a date time had been set for the next altcoin signal the pump will happen in yobit exchange a very convenient and easytouse trading platform the trading intructions will be posted shortly to help us prepare lets make some huge gains teammates with our huge impact and the marketing team work we will manage to attract heavy attention and loads of the exchange market investors will be easily induced to buy us all out at peak price allowing channel members to profit massively here we come make sure to set your alarms as you dont want to miss out date monday 2nd september exchange wwwyobitnet ⏱ time 1800 gmt utc check your local time ⚠️ dont miss out on these amazing trades +100300+ ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time ℹ️ more informations will be broadcast shortly stay tuned 2019-08-31 17:00:54+00:00 1.0 1288625943 1661 next pump announcement is imminent be ready for the event everyone we urge anyone who does not have an account on yobit exchange to register now via the referral link provided below ps while registering if you get registration is temporary off just use a vpn proxy your countrys ip might be the reason of blocage 2019-08-26 12:22:43+00:00 1.0 1288625943 1659 everyone we will wait for btc to stabilize before announcing the date for the next event meanwhile we suggest to all of you guys to sign up and create your accounts on the two other interesting exchanges where we will conduct altcoins pumps in the near future concerning yobit exchange if you get a message registration is temporary off just use a vpn or a proxy and you will be able to register important to mention that these two other exchanges present a much bigger and profitable opportunities to pump altcoins on especially in terms of capitalizations sizes and percentage raise we aiming to pump coins to the moon +100 up to 300++ like we used to yobitnet hitbtccom next pump will be carried out very soon date tbc ⏱ time tbc exchange tbc ℹ️ stay tuned 2019-08-21 15:13:24+00:00 1.0 1288625943 1654 ⚠️ 5 minutes get ready now the next message will be the image with the coin btc 2019-08-20 19:55:07+00:00 1.0 1288625943 1653 ⚠️ 10 minutes to go make sure your orders are gone through to push the coin up and hold waves of outsiders will be attracted and list your sell orders in pieces lot of fresh money has entered crypto the past month today will be huge again 2019-08-20 19:51:16+00:00 1.0 1288625943 1650 ⏱ 6 hours to go until binance pump event 2000 gmt bitcoin is doing great and giving us amazing opportunities to pump make sure you have btc ready in your binance account early enough the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win buy quick sell smart promote hard ℹ️ new usa users can still register on binance with a vpn or proxy from another country then trade on their home ip 2019-08-20 14:00:15+00:00 1.0 1288625943 1649 ⚠️ the trading instructions sign up and have your btc ready in your wallet wwwbinancecomenref35294594 ⏱ today at 800pm gmt exactly an image of the coin to buy will be posted here ℹ️ open binance + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly it is strongly recommended using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time see howtobuyfast tip posted previously it is important to buy in quickly to get the best available prices after posting the image the coin will be heavily advertised this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promote the coin and watch it continue to grow when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make profits from this pump opportunity 2019-08-20 13:49:08+00:00 1.0 1288625943 1645 ⏱ 32 hours left until binance event exchange binance pairing btc how to buy fast on binance very simple and straight forward 1 select market order 2 select percent of your total btc you wish to use 75 is suggested to avoid potential conflicts with orders not filling 3 click buy we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released tomorrow at 2000 gmt 2019-08-19 12:06:34+00:00 1.0 1288625943 1644 ⚡️ signal announcement everyone great news here we are its time for the huge pump signal to make some big gains the exchange where the pump will take place is binance as most of voters prefered we make sure the conditions are optimal to bring you the best signals btc is holding very well just above the key support of 10k this pattern sets most of altcoins to surge in price with our initial pump the instructions on how to take part will be published soon be ready everyone we will be served very well with this massive trading opportunity make sure to mark your calendars as you dont want to miss out the date time has now been set date tuesday 20th august ⏱ time 2000 gmt utc check your local time exchange wwwbinancecomenref35294594 ✅ pump will be unranked free for all all pumpers will receive coin signal at the same time everyone soon we will be adding info and tips about trading on binance and also planning mass advertising for the pump make sure you register at binance if you havent yet and start getting ready for this huge pump you can help us out by registering through this ref link pros of binance massive daily volume of 1 billion+ for extremely liquidity most popular exchange in the world for huge number of outsiders market buys for quick action easier exchange to promote during pumps more users have accounts there no upper limit on investing means you can enter with 5 or even 10 btc if you wanted safer percent gains of 5080 or even more instead of 200300 ℹ️ more informations will be disclosed soon stay tuned 2019-08-18 23:05:43+00:00 1.0 1288625943 1642 next signal will be carried out very soon date tbc ⏱ time tbc exchange binance ℹ️ stay tuned 2019-08-16 13:51:19+00:00 1.0 1288625943 1607 ⚠️ 5 minutes get ready now the next message will be the image with the circled coin 2019-05-05 18:55:03+00:00 1.0 1288625943 1606 ⚠️ 10 minutes left ℹ️ today will be huge again everyone make sure the buy orders are filled very fast to buy at cheapest price and to boost the coin up hold for few minutes the price will increase much higher and market investors will be attracted and clear all of our sell orders 2019-05-05 18:50:03+00:00 1.0 1288625943 1604 ⏱ only 1 hour left until signal make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin in the btc market 2019-05-05 18:00:02+00:00 1.0 1288625943 1602 ⏱ under 4 hours left to go until signal ⬆️ make sure to review the instructions posted previously and be ready its going to moon btc is holding very well just under the key resistance of 6k this pattern sets most of altcoins to bullish case scenarios after posting the signal the coin will hit the 1 spot on yobit attracting loads of outside investors and generating a delayed wave of buyers from market exchange get ready 2019-05-05 15:03:59+00:00 1.0 1288625943 1600 ⚠️ the trading instructions regarding tomorrows signal sign up and have your btc ready in your wallet wwwyobitnet ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ⏱ tomorrow at 700pm gmt exactly an image of the coin to buy will be posted the image will contain 3 names the coin to buy will be fully circled ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make profits from this signal opportunity 2019-05-04 13:37:17+00:00 1.0 1288625943 1599 signal announcement great news a date time has been set for the next pump date sunday 5th may ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet everyone its about time for our next signal to make some huge gains we always make sure the altcoins market conditions are optimal to bring us the best signals and get the best pump outcome for our channel members great results for all make us grow bigger stronger everyone will be served very well with this massive trading opportunity so make sure to mark your calendars as you dont want to miss out on these precious chances to increase your btc balance ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot ℹ️ more informations will be broadcast soon stay tuned 2019-05-03 16:30:10+00:00 1.0 1288625943 1598 analysis coin ftm low 000000151 high 000000410 increase 171+ ✅ great pump we pushed the coin up and as it was gradually ranking higher on yobit fantom ftm has been traded at up to 171+ early sellers limited the price increase this time the altcoin kept bouncing around +165 while outside investors bought us out well done team congratulations and enjoy your earnings stay tuned for information regarding the next one 2019-04-18 22:49:53+00:00 1.0 1288625943 1592 ⚠️ 5 minutes get ready now the next message will be the image with the circled coin 2019-04-18 18:55:06+00:00 1.0 1288625943 1591 ⚠️ 10 minutes to go make sure your orders are gone through to push the coin up and hold while ranking 1 on yobit market remember to help promote and list your sell orders in pieces lot of fresh money has entered crypto the past month today will be huge again 2019-04-18 18:50:04+00:00 1.0 1288625943 1589 ⏱ only 1 hour left until signal make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin in the btc market 2019-04-18 18:00:04+00:00 1.0 1288625943 1587 ⏱ 4 hours left to go until signal here we are market conditions are ideal loads of the exchange markets investors will be easily induced to buy us all out at peak price everyone set your alarms and get ready for some big gains very soon 2019-04-18 15:00:12+00:00 1.0 1288625943 1585 pump announcement great news everyone its time for another trading opportunity to make some huge gains here is the date time of the next signal date thursday 18th april ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot btc is holding well the key support of 5k the channel is now ready to set up the schedule of 2+ powerfull signals per week last pump we saw very good results with the coin price holding high for a long time allowing all members to clear their trades with some nice profits make sure to mark your calendars as this will be another pump you wont want to miss we are aiming to smash 300400+ raise once again ℹ️ more informations will be disclosed soon stay tuned 2019-04-16 01:33:57+00:00 1.0 1288625943 1576 ⚠️ 5 minutes get ready now the next message will be the image 2019-04-14 19:55:04+00:00 1.0 1288625943 1575 ⚠️ 10 minutes left ℹ️ everyone make sure your orders are filled to push the coin up and hold with our huge impact loads of the exchange market investors will be easily induced to buy in at peak price allowing all channel members to profit massivelyhere we come 2019-04-14 19:51:26+00:00 1.0 1288625943 1573 ⏱ just 1 hour left until signal make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin in the btc market 2019-04-14 19:00:28+00:00 1.0 1288625943 1570 ⬆️ make sure to review the instructions posted above and be ready to trade tomorrow its going to moon ⏱ 24 hours to go until pump signal 2019-04-13 20:01:04+00:00 1.0 1288625943 1569 signal announcement great news everyone here is the date time of the next pump signal date sunday 14th april ⏱ time 2000 gmt utc check your local time exchange wwwyobitnet previous results 340+ 7 minutes to peak 3 waves from market outsiders our records keep getting better and higher no need to mention the same about the btcaltcoins markets on sunday we will be ready to break a new record in terms of peak price and trading volume we are the best signals team and trade like whales to induce the exchange local buyers and bots everyone set your alarms and get ready for some big gains very soon ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot ℹ️ stay stuned more informations upcoming 2019-04-11 22:10:50+00:00 1.0 1288625943 1560 ⚠️ 5 minutes get ready now the next message will be the image expected gain 300++ 2019-04-03 18:55:10+00:00 1.0 1288625943 1559 ⚠️ only 10 minutes left ℹ️ everyone here we are market conditions are ideal with our huge impact loads of the exchange market investors will be easily induced to buy in at peak price allowing all channel members to profit massively here we come 2019-04-03 18:50:12+00:00 1.0 1288625943 1557 ⏱ just 1 hour left until pump make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin name in the btc market 2019-04-03 18:01:02+00:00 1.0 1288625943 1555 ⏱ only 5 hours to go until the pump btc market has stabilized since yesterdays huge surge today we should see more volume and all members will make big profits from the trades 2019-04-03 14:00:50+00:00 1.0 1288625943 1554 ⬆️ make sure to review the instructions posted above and be ready to trade tomorrow everything is looking amazing so get ready to maximize profits from this altcoins market huge bounce ⏱ 24 hours to go until pump signal 2019-04-02 19:00:25+00:00 1.0 1288625943 1553 ⚠️ informations regarding tomorrows signal trading instructions sign up and have your btc ready in your wallet wwwyobitnet ⏱ tomorrow at 700pm gmt exactly an image of the coin to buy will be posted the image will contain 3 names the coin will be fully circled ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make profits from this signal opportunity 2019-04-02 18:18:30+00:00 1.0 1288625943 1552 signal announcement everyone great news here is the date time of the next pump date wednesday 3rd april ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet previous results +176+248 46 minutes to peak 2 huge waves this next pump is going to be huge we expect a lot of volume due to all the recent action on altcoins lot of them are pumping lately outsiders from the exchange markets will easily fomo into with not as much marketing as we use to perform thats great news so be ready dont miss out on the large gains ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot ℹ️ more informations will be disclosed soon stay tuned 2019-04-01 22:01:34+00:00 1.0 1288625943 1543 ⚠️ 5 minutes get ready now the next message will be the image 2019-03-22 19:25:04+00:00 1.0 1288625943 1542 ⚠️ 10 minutes left ℹ️ today will be huge again lots of fresh money has enetered crypto the past couple weeks everyone make sure the buy orders are filled asap to boost the coin up and hold the price will increase much higher and market investors will be attracted and clear all of our sell orders 2019-03-22 19:20:14+00:00 1.0 1288625943 1540 ⏱ just 1 hour left until pump make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin name in the btc market 2019-03-22 18:30:06+00:00 1.0 1288625943 1538 ⏱ only 4 hours to go until the pump ▶️ everyone the conditions keep getting better and better in the btc markets and so will our signal outcome today were looking at +300»400++ raise this time lets make it the highest record so far after the huge success of the previous pumps 2019-03-22 15:30:06+00:00 1.0 1288625943 1537 ⏱ 24 hours to go until pump signal ⬆️ make sure to review the instructions published above and be ready for maximum gains from tomorrows huge trades 2019-03-21 19:30:17+00:00 1.0 1288625943 1536 ⚠️ informations regarding tomorrows signal trading instructions sign up and have your btc ready in your wallet wwwyobitnet ⏱ tomorrow at 730pm gmt exactly an image of the coin to buy will be posted the image will contain 3 names the coin will be fully circled ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make big profits from this signal opportunity 2019-03-21 17:16:58+00:00 1.0 1288625943 1535 signal announcement everyone the date time has now been set for the next signal date friday 22nd march ⏱ time 1930 gmt utc check your local time exchange wwwyobitnet great news its time for the next huge pump signal to make some big gains trading with the markets investors we make sure the conditions are optimal to bring you the best signals everyone will be served very well with this massive trading opportunity make sure to mark your calendars as you dont want to miss out on these precious chances to increase your btc balance ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot ℹ️ more informations coming up soon stay tuned 2019-03-20 00:38:40+00:00 1.0 1288625943 1528 ⚠️ 5 minutes get ready now the next message will be the image 2019-03-17 18:55:05+00:00 1.0 1288625943 1527 ⚠️ 10 minutes left ℹ️ everyone make sure your orders are filled to push the coin up and hold as its price will keep soaring higher gradually market investors will clear all of our sells while joining in all members will engage huge profits on the trades 2019-03-17 18:50:06+00:00 1.0 1288625943 1525 ⏱ just 1 hour left until pump make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin name in the btc market 2019-03-17 18:00:04+00:00 1.0 1288625943 1523 ⏱ only 4 hours to go until the pump ▶️ everyone remember that with our great impact on the exchange market loads of the exchange markets investors will be induced to buy in at peak price level allowing the channel members to profit massively everything is looking amazing today here we come be ready for great profits 2019-03-17 15:01:27+00:00 1.0 1288625943 1522 ⬆️ make sure to review the instructions published above and be ready to trade tomorrow to maximize profits from this actual market bounce ⏱ 24 hours to go until pump signal 2019-03-16 19:00:05+00:00 1.0 1288625943 1521 ⚠️ informations regarding tomorrows signal trading instructions sign up and have your btc ready in your wallet wwwyobitnet ⏱ tomorrow at 700pm gmt exactly an image of the coin to buy will be posted the image will contain 3 names the coin will be fully circled ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make profits from this signal opportunity 2019-03-16 16:13:32+00:00 1.0 1288625943 1520 signal announcement everyone great news a date time has been set for the next pump date sunday 17th march ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet we have been doing great lately last pump we saw great results again with a slow climb outsiders buying in late the coin holding for a long time lets keep this up make sure to mark the date time as this will be another successfull pump we are prepared for heavy advertising and we are aiming to smash new record ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot ℹ️ stay tuned for further informations broadcast 2019-03-15 18:18:17+00:00 1.0 1288625943 1519 analysis coin swm low 000001068 high 000003391 increase 217+ ✅ after posting the signal we pushed the coin up on yobit swm has been traded at up to 217+ very well done great pump congratulations to everyone who traded today enjoy your earnings stay tuned for information regarding the next one 2019-03-14 01:38:34+00:00 1.0 1288625943 1511 ⚠️ 5 minutes get ready the next message will be the image 2019-03-13 18:55:05+00:00 1.0 1288625943 1510 ⚠️ 10 minutes left ℹ️ remember to buy up and hold the coin as its price increases gradually much higher members and paid advertisers help promote the coin until outsiders buy all members sell orders and all members profit greatly 2019-03-13 18:50:13+00:00 1.0 1288625943 1508 ⏱ just 1 hour left until pump make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin name in the btc market 2019-03-13 18:00:10+00:00 1.0 1288625943 1506 ⏱ only 4 hours to go until the pump ▶️ last pump was great we went over 200+ and held for a nice amount of time with our great market impact outsiders will be ready to invest right after us and bring in some huge profits today will be an amazing pump higher target higher gains more outsiders more profits 2019-03-13 15:00:13+00:00 1.0 1288625943 1505 ⏱ 24 hours to go until pump signal 2019-03-12 19:00:45+00:00 1.0 1288625943 1504 signal announcement everyone great news here is the date time of the next pump date wednesday 13th march ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot previous results +220 +217 +213 5 to 10 minutes to peak great marketing coin price holding high for a long time and huge waves of outsiders buying in allowing the channel members to profit massively make sure to mark your calendars as this will be another successfull pump you wont want to miss ℹ️ more informations will be posted soon stay tuned 2019-03-11 14:29:47+00:00 1.0 1288625943 1503 analysis coin lend low 000000191 high 000000599 increase 213+ ✅ great pump we pushed the coin up and as it was gradually ranking higher on yobit ethlend lend has been traded at up to 213+ the altcoin kept bouncing around +200 while outside investors bought us out very well done congratulations to everyone who traded today enjoy your earnings stay tuned for information regarding the next one 2019-03-08 20:27:29+00:00 1.0 1288625943 1498 ⚠️ 5 minutes get ready the next message will be the image 2019-03-08 18:55:09+00:00 1.0 1288625943 1497 ⚠️ 10 minutes left ℹ️ remember to buy the coin quickly hold help promote in the chatbox this will help bring in max outsiders from exchange markets 2019-03-08 18:50:59+00:00 1.0 1288625943 1495 ⏱ just 1 hour left until pump make sure you log in to your yobit account early enough 20 to 30minutes ⭕️ remember to search for the circled coin name in the btc market 2019-03-08 18:00:06+00:00 1.0 1288625943 1494 ⏱ only 2 hours to go until the pump 2019-03-08 17:00:28+00:00 1.0 1288625943 1492 ⬆️ make sure to review the instructions posted above remember that working together we can bring even more outside volume into our pumps and profit a great deal more be ready to trade and maximize profits ⏱ 24 hours to go until pump signal 2019-03-07 19:01:56+00:00 1.0 1288625943 1491 ⚠️ informations regarding tomorrows signal conditions keep getting better and better in the market and so will our signals lets make it even better after the huge success of the previous pumps be ready dont miss out trading instructions sign up and have your btc ready in your wallet wwwyobitnet ⏱ tomorrow at 700pm gmt exactly an image of the coin to buy will be posted the image will contain 3 names the coin will be fully circled ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will keep raising allowing members to make profits from this signal opportunity 2019-03-07 19:01:36+00:00 1.0 1288625943 1490 signal announcement everyone great news here is the date time of the next pump date friday 8th march ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot last pump we saw great results with a slow climb outsiders buying in late and the coin price holding high for a long time make sure to mark your calendars as this will be another pump you wont want to miss ℹ️ more informations will be disclosed soon stay tuned 2019-03-06 15:51:15+00:00 1.0 1288625943 1483 ⚠️ 5 minutes ✅ get ready the next message will be the image 2019-02-27 19:55:04+00:00 1.0 1288625943 1482 ⚠️ only 15 minutes to the pump on yobit ℹ️ remember to buy the coin quickly list your sells at higher range and help promote in yobits chat box located on the right 2019-02-27 19:45:02+00:00 1.0 1288625943 1481 ⚠️ everyone under 30 minutes left until the 2nd signal on yobit exchange wwwyobitnet 2019-02-27 19:30:48+00:00 1.0 1288625943 1475 ⚠️ 5 minutes ✅ get ready the next message will be the image 2019-02-27 18:55:03+00:00 1.0 1288625943 1473 ⚠️ only 30 minutes left until the 1st signal on coinexchange ⏱ 90 minutes left until the 2nd signal on yobit ⭕️ remember to search for the circled coin name in the btc market while the price is increasing rapidly hold help promoting coin on the platform chatbox 2019-02-27 18:30:05+00:00 1.0 1288625943 1472 ⏱ 1 hour left until the 1st signal on coinexchange ⏱ 2 hours left until the 2nd signal on yobit everyone lets make today 2 outstanding pumps in a row 2019-02-27 18:00:04+00:00 1.0 1288625943 1470 ⏱ 6 hours to go until 1st signal on coinexchange ⏱ 7 hours to go until 2nd signal on yobit our volume keep increasing today we should see even more we urge you to do your part and spread the coin news during the pump this will help bring in max outsiders 2019-02-27 13:00:20+00:00 1.0 1288625943 1468 ⚠️ informations regarding tomorrows signals trading instructions sign up and have your btc ready in your wallets wwwcoinexchangeio wwwyobitnet ⏱ tomorrow the first pump is at 700pm gmt exactly and the second one is at 800pm gmt exactly an image of the coin to buy will be posted the image will contain 3 names the coin will be fully circled this will prevent bots from buying before us ℹ️ 1st pump open yobit + telegram be ready to search for the coin name in the btc market ℹ️ 2nd pump open coinexchange + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button the platform will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on btc markets this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors set your sell above your buy in never sell below your buy in the price will keep raising allowing members to make profits from this signal opportunity 2019-02-26 15:46:30+00:00 1.0 1288625943 1467 dear members here are some more great news we have been receiving many requests from members who actually could not sign up on yobit exchange because the registrations are temporary off on stand by all these members are requesting to schedule a pump on coinexchange platform instead as they are registered clients or the registration is open based on these technical reasons and the importance of our channel team members satisfaction we will have a second pump signal on wednesday one hour after the first one 800 gmt on coinexchange everyone is served with huge trading opportunities on wednesday date wednesday 27th february ⏱ time 2000 gmt utc check your local time exchange wwwcoinexchangeio ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot ℹ️ more to come stay tuned 2019-02-26 00:37:00+00:00 1.0 1288625943 1466 good news everyone now that btc markets has stabilized we are ready to proceed with the announcement of the next pump signal on schedule date wednesday 27th february ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot reminder previous results +220 5 min to peak 2 huge waves working together we can bring even more outside volume into our pumps and profit a great deal more conditions keep getting better and better in the market and so will our signals lets make it even better after the huge success of the last one be ready dont miss out estimated peak 300++ ℹ️ more informations to come stay tuned 2019-02-25 13:59:57+00:00 1.0 1288625943 1465 ⚠️ informations regarding tomorrows signal everyone the next pump signal on schedule is postponed to a further date time we will wait for the market to stabilize and limit our trades while btc is unstable ℹ️ an announcement stating the next one will be broadcast very soon 2019-02-24 18:40:45+00:00 1.0 1288625943 1464 ⚠️ informations regarding tomorrows signal trading instructions sign up and have your btc ready in your wallet wwwyobitnet ⏱ tomorrow at 700pm gmt exactly an image of the coin to buy will be posted the image will contain 3 names the coin will be fully circled ℹ️ open yobit + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors set your sell above your buy in never sell below your buy in the price will keep raising allowing members to make profits from this signal opportunity 2019-02-24 15:52:17+00:00 1.0 1288625943 1463 signal announcement everyone great news here is the date time of the next pump date monday 25th february ⏱ time 1900 gmt utc check your local time exchange wwwyobitnet ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time via our bot previous results +220 5 min to peak 2 huge waves working together we can bring even more outside volume into our pumps and profit a great deal more conditions keep getting better and better in the market and so will our signals lets make this next one even better after the huge success of the last pump be ready dont miss out estimated peak 300++ ℹ️ more informations will be disclosed shortly stay tuned 2019-02-22 23:53:11+00:00 1.0 1288625943 1459 ⚠️ 5 minutes ✅ get ready the next message will be the image its going to moon 2019-02-14 19:55:09+00:00 1.0 1288625943 1457 ⚠️ 45 minutes to the pump ⭕️ the image is to avoid bots buying before us remember to search for the circled coin name in the btc market ℹ️ also remember to buy the coin quickly list your sells at high gains range and help promote the coin in yobits chat box located on the right 2019-02-14 19:15:20+00:00 1.0 1288625943 1456 ⏱ only 90 minutes left ⚠️ be sure to have enough btc available everything is looking amazing today here we come 2019-02-14 18:30:41+00:00 1.0 1288625943 1452 ⚠️ informations regarding tomorrows signal trading instructions sign up and have your btc ready in your wallet wwwyobitnet ⏱ tomorrow at 800pm gmt exactly an image of the coin will be posted the image will contain 3 names the coin will be fully circled be at your computer early 20 min ℹ️ open yobit + telegram be ready to search for the coin name in the btc market buy in once you see the coin announced ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors set your sell above your buy in never sell below your buy in the price will keep raising allowing members to make profits from this signal opportunity after the pump feel free to brag about your profits or ask questions if you need future help 2019-02-13 14:46:14+00:00 1.0 1288625943 1451 great news everyone donald announces now the date time of the next pump date thursday 14th february ⏱ time 2000 gmt utc check your local time exchange wwwyobitnet ✅ pumpssignals are always unranked free for all everyone will receive coin at the same time dont miss out on the trades +100300+ ℹ️ more informations will be disclosed shortly stay tuned 2019-02-11 18:04:29+00:00 1.0 1288625943 1450 donaldpump signals is expected to carry out the next pump very soon date tbc ⏱ time tbc exchange wwwyobitnet ℹ️ stay tuned for further infos broadcast 2019-02-08 14:17:35+00:00 1.0 1288625943 1445 ⚠️ 5 minutes ✅ get ready the next message will be the image 2019-02-04 19:55:10+00:00 1.0 1288625943 1443 only 30 minutes to go make sure you log in to your yobit account early enough 20 to 30minutes 2019-02-04 19:30:12+00:00 1.0 1288625943 1442 ⚠️ 60 minutes left ⭕️ remember to search for the circled coin name in the btc market coin is expected to moon make sure your order has gone through and then hold while the coin price increases 2019-02-04 19:00:08+00:00 1.0 1288625943 1438 ⚠️ informations regarding tomorrows signal trading instructions sign up and have your btc ready in your wallet wwwyobitnet ⏱ tomorrow at 800pm gmt exactly an image of the coin will be posted the image will contain 3 names the coin will be fully circled be at your computer early 20 min ℹ️ open yobit + telegram be ready to search for the coin name in the btc market buy in once you see the coin announced ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button yobit will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on yobit market this will attract waves of investorsbuyers from market exchange and social media networks while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors set your sell above your buy in never sell below your buy in the price will keep raising allowing members to make profits from this signal opportunity 2019-02-03 19:59:11+00:00 1.0 1288625943 1437 great news everyone donald has set a date time for the next altcoin signal the pump will happen in yobit exchange a very convenient and easytouse trading platform the trading intructions will be posted shortly to help us prepare lets make some huge gains teammates date monday 4th february exchange wwwyobitnet ⏱ time 2000 gmt utc ⚠️ you dont want to miss out on these massive chances to increase your btc balance ✅ signal will be unranked free for all ℹ️ more informations will be disclosed shortly stay tuned 2019-02-02 19:27:34+00:00 1.0 1288625943 1436 dear members according to the ongoing poll results yobit exchange is the first choice for most of us therefore we will schedule the next signal there the poll will stay open for new incomers to express their choices as well we will also schedule signals on the other exchanges later on donaldpump signals is expected to carry out the next pump very soon date tbc ⏱ time tbc exchange wwwyobitnet ℹ️ stay tuned for further news broadcast 2019-01-30 15:50:59+00:00 1.0 1288625943 1430 great news teammates its time for the trading opportunity now btc market has stabilized since last weekends significant drop donaldpump has set a new date time for the next signal lets make some huge gains date thursday 17th january exchange ⏱ time 1930 gmt utc ⚠️ you dont want to miss out on these massive chances to increase your btc balance ✅ signal will be unranked free for all all members will receive coin at the same time 2019-01-15 20:52:02+00:00 1.0 1288625943 1429 ⚡️ due to the actual btc market drop todays signal is cancelled and will be held very soon we make sure the market conditions are optimal to bring you the best signals date tbc ⏱ time tbc exchange wwwcryptopiaconz ℹ️ stay tuned for further news broadcast tmedonaldpumpcrypto 2019-01-13 17:44:58+00:00 1.0 1288625943 1428 under 24 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked many times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2019-01-12 20:15:14+00:00 1.0 1288625943 1427 great news its time for another trading opportunity to make some huge gains donald has set a date time for the next signal date sunday 13th january exchange ⏱ time 2000 gmt utc ⚠️ you dont want to miss out on these massive chances to increase your btc balance ✅ signal will be unranked free for all all members will receive coin at the same time ℹ️ more informations will be disclosed shortly stay tuned 2019-01-11 00:07:55+00:00 1.0 1288625943 1419 ⚠️ 30 minutes left ⭕️ remember to search for the circled coin name in the btc market coin is expected to moon +350 make sure your order has gone through and then hold while the coin price increases 2019-01-06 18:30:04+00:00 1.0 1288625943 1418 ⚠️ just 60 minutes left to go make sure you log in to your cryptopia account early enough 20 to 30minutes 2019-01-06 18:00:05+00:00 1.0 1288625943 1416 ⏱ 3 hours to go until signal ⬆️ everyone an expected gain range will be announced minutes before the signal remember to buy the coin quickly list your sells in the expected gain range and help promote the coin in cryptopias chat box 2019-01-06 16:00:40+00:00 1.0 1288625943 1414 ⚠️ informations regarding tomorrows signal sign up and have your btc ready in your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 700pm gmt exactly an image of the coin will be posted here the image will contain 3 names the coin will be fully circled be at your computer early 20 min ℹ️ open cryptopia + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button cryptopia will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract waves of investorsbuyers from market exchange and social media networks while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will then keep raising up higher allowing all of us to close maximum profits from this signal opportunity 2019-01-05 21:51:48+00:00 1.0 1288625943 1413 here is the huge announcement we are all ready impatiently waiting for donald pump has set a date time for the next massive pump signal date sunday 6th january exchange ⏱ time 1900 gmt utc ✅ signal will be unranked free for all all members will receive coin at the same time 2019-01-04 19:47:16+00:00 1.0 1288625943 1412 great news everyone its about time for our next altsignals ✅ donald pump channel is now almost ready to resume the schedule of 2+ powerfull signals broadcast per week everyone in missing the great signals and some huge records are upcoming your patience is appreciated now lets earn some cryptos before the next market bull run get ready team the market status is optimal and altcoins are about to moon prepare to make some big gains with cryptopia community constantly investing the btc markets ℹ️ more informations will be disclosed shortly stay tuned 2019-01-04 19:46:07+00:00 1.0 1288625943 1411 we will keep up the hard work analysing the markets and tracking the biggest oppotunities also extending its advertising networks we are committed to broadcast huge signals opportunities on cryptopia market exchange the next one is expected to be carried out very soon date tbc ⏱ time tbc exchange wwwcryptopiaconz ℹ️ stay tuned for further news broadcast 2018-12-18 23:54:31+00:00 1.0 1288625943 1406 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-12-18 19:55:06+00:00 1.0 1288625943 1404 ⚠️ only 30 minutes left before the pump everyone the altcoin is backed by great news that will be broadcasted here and will launch the marketing wave tremendously remember to help promote the coin in the cryptopia chat box lets push this coin to the moon with our great shilling outsiders will be ready to invest right after us and bring in some huge profits 2018-12-18 19:30:17+00:00 1.0 1288625943 1401 ⏱ 5 hours left to go ⚠️ remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia 2018-12-18 15:00:06+00:00 1.0 1288625943 1399 ⚠️ informations regarding tomorrows signal sign up and have your btc ready in your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 800pm gmt exactly an image of the coin will be posted here the image will contain 3 names the coin will be fully circled be at your computer early 20 min ℹ️ open cryptopia + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button cryptopia will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract waves of investorsbuyers from market exchange and social media networks while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will then keep raising up higher allowing all of us to close maximum profits from this signal opportunity 2018-12-17 19:21:44+00:00 1.0 1288625943 1398 great news we have set a date for the next altcoin pump signal date tuesday 18th december exchange ⏱ time 2000 gmt utc ✅ pump will be unranked free for all all pumpers will receive coin at the same time last pump we saw great results with a slow climb outsiders buying in late the coin holding for a long time and great success stories sent in by many members make sure to mark your calendars as this will be another pump you wont want to miss ℹ️ more informations will be disclosed soon stay tuned 2018-12-15 15:40:20+00:00 1.0 1288625943 1394 ⚠️ 5 minutes ✅ get ready the next message will be the image ⭕️ remember to search for the circled coin in the btc market 2018-12-11 19:25:01+00:00 1.0 1288625943 1390 ℹ️ 90 minutes to go todays image will be posted at exactly 730pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market 2018-12-11 18:00:10+00:00 1.0 1288625943 1387 signal announcement ℹ️ date time place tuesday the 11th of deecember 1930 gmt exchange cryptopia welcome to all the new members on tuesday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-12-09 19:41:34+00:00 1.0 1288625943 1381 ⚠️ 5 minutes ✅ get ready the next message will be the image + url link 2018-12-02 17:55:05+00:00 1.0 1288625943 1379 ⚠️ just 30 minutes left to go everyone make sure the buy orders are executed during the pump not just stuck in the orders book 2018-12-02 17:30:05+00:00 1.0 1288625943 1374 informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 600pm gmt exactly an image of the coin will be posted here the image will contain 3 names the coin will be fully circled this stops bots from buying before channel be at your computer early 20 min ℹ️ open cryptopia + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button cryptopia will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract several delayed waves of investorsbuyers while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will then keep raising up higher allowing us to close maximum profits from this signal opportunity 2018-12-01 18:01:55+00:00 1.0 1288625943 1373 great news everyone donald p has set a date for the next altcoin pump signal date sunday 2nd december exchange ⏱ time 1800 gmt utc 2100 gmt+3 moscow 2000 gmt+2 rome 1800 gmt london 1400 est new york 0400 aest sydney d+1 2330 ist delhi 0300 jst tokyo d+1 ✅ btc market is bouncing back up for few days and we are definitely taking advantage from the volume increase the active trades and the cryptopia investors bullish behaviour great timing guys please note signal will be unranked free for all all members will receive coin at the same time via bot ℹ️ more informations will be disclosed shortly stay tuned 2018-11-29 17:57:40+00:00 1.0 1288625943 1369 ⚠️ 5 minutes ✅ get ready the next message will be the image ⭕️ remember to search for the circled coin in the btc market 2018-11-27 19:25:49+00:00 1.0 1288625943 1365 ℹ️ 1 hour todays image will be posted at exactly 730pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-11-27 18:30:37+00:00 1.0 1288625943 1361 signal announcement ℹ️ date time place tuesday the 27th of november 1930 gmt exchange cryptopia tomorrow we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-11-26 11:22:36+00:00 1.0 1288625943 1357 ⚠️ 5 minutes ✅ get ready steady the next message will be the image 2018-11-25 18:55:04+00:00 1.0 1288625943 1354 only 1 hour to go ⭕️ remember to search for the circled coin in the btc market ℹ️ after posting the signal heavy marketing will generate a delayed wave of buyers make sure you take profits while keeping the price high and attractive to investors 2018-11-25 18:00:03+00:00 1.0 1288625943 1350 informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 700pm gmt exactly an image of the coin will be posted here the image will contain 3 names the coin will be fully circled this stops bots from buying before channel be at your computer early 20 min ℹ️ open cryptopia + telegram be ready to search for the coin name in the btc market ▶️ to buy in quickly click on sell orders higher than the current market rate then click your available btc value followed by the buy button cryptopia will calculate the equivalent amount of coins and meet the lowest available sell orders after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract several delayed waves of investorsbuyers while the price is increasing rapidly hold help promoting coin on the platform chatbox when the price hits the peak and there are strong waves of buy orders we advise you to sell in pieces to keep the price high and very attractive to outside investors the price will then keep raising up higher allowing us to close maximum profits from this signal opportunity 2018-11-24 12:20:33+00:00 1.0 1288625943 1348 great news everyone its nearly time now for our next pump a date has been set for the next huge altcoin signal date sunday 25th november exchange ⏱ time 1900 gmt utc 2200 gmt+3 moscow 2100 gmt+2 rome 2000 gmt+1 london 1500 est new york 0500 aest sydney d+1 0030 ist delhi d+1 0400 jst tokyo d+1 ✅ signal will be unranked free for all all members will receive coin at the same time via bot ℹ️ more informations will be disclosed shortly stay tuned 2018-11-23 18:50:28+00:00 1.0 1288625943 1334 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-11-18 18:55:05+00:00 1.0 1288625943 1330 2 hours left ⭕️ remember to search for the circled coin in the btc market ℹ️ after posting the signal heavy marketing will generate a delayed wave of buyers make sure you take profits while keeping the price high and attractive to investors 2018-11-18 17:00:05+00:00 1.0 1288625943 1325 signal announcement ℹ️ date time place tuesday the 18th of november 1900 gmt exchange cryptopia 2018-11-17 13:56:10+00:00 1.0 1288625943 1318 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-11-13 18:55:07+00:00 1.0 1288625943 1314 ℹ️ 1 hour todays image will be posted at exactly 7pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-11-13 18:00:23+00:00 1.0 1288625943 1309 signal announcement ℹ️ date time place tuesday the 13th of november 1900 gmt exchange cryptopia welcome to all the new members on tuesday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-11-11 19:00:00+00:00 1.0 1288625943 1303 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-11-08 18:55:02+00:00 1.0 1288625943 1300 ℹ️ 1 hour todays image will be posted at exactly 7pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-11-08 18:00:14+00:00 1.0 1288625943 1295 signal announcement ℹ️ date time place thursday the 8th of november 1900 gmt exchange cryptopia 2018-11-07 11:31:12+00:00 1.0 1288625943 1294 analysis coin cno low 000000010 high 000000045 increase 350 after posting cno we saw the coin spike above the 100 mark the coin then climbed to its peak of 300 before finding resistance with a nice support of buy orders this allowed the channel to sell near the peak and close some massive profits another great signal congratulations to everyone who participated have a good week enjoy your gains and stay tuned for information regarding the next signal 2018-11-04 20:02:39+00:00 1.0 1288625943 1285 ℹ️ 1 hour todays image will be posted at exactly 6pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-11-04 17:00:55+00:00 1.0 1288625943 1280 signal announcement ℹ️ date time place sunday the 4th of november 1800 gmt exchange cryptopia 2018-11-02 20:57:21+00:00 1.0 1288625943 1279 analysis coin osc low 55 high 150 increase 172 ✅ todays signal saw a slower raise with some nice buy orders near the peak enjoy your gains if you participated today i am working on growing the channel and finding more great signals stay tuned for information regarding the next one its going to be huge 2018-10-28 19:33:56+00:00 1.0 1288625943 1272 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-10-28 17:55:14+00:00 1.0 1288625943 1268 ℹ️ 1 hour todays image will be posted at exactly 6pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-10-28 17:00:17+00:00 1.0 1288625943 1264 its almost time for another signal it has taken some time to prepare for this one but it will be worth the extra wait i know youre all ready ℹ️ date time place sunday the 28th of october 1800 gmt exchange cryptopia welcome to all the new members on sunday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-10-27 18:05:01+00:00 1.0 1288625943 1257 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-10-14 18:55:04+00:00 1.0 1288625943 1255 30 minutes left ⭕️ remember to search for the circled coin in the btc market ℹ️ after posting the signal heavy marketing will generate a delayed wave of buyers make sure you take profits while keeping the price high and attractive to investors 2018-10-14 18:30:04+00:00 1.0 1288625943 1247 information for tomorrows signal sign up to the cryptopia exchange wwwcryptopiaconzexchange send btc to your cryptopia wallet ℹ️ practice using the search bar buy and sell forms open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-10-13 16:40:58+00:00 1.0 1288625943 1246 good news its almost time for another signal ℹ️ date time place sunday the 14th of october 1900 gmt exchange cryptopia on sunday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices tmedonaldpumpcrypto 2018-10-12 20:05:55+00:00 1.0 1288625943 1240 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-10-09 18:55:03+00:00 1.0 1288625943 1236 ℹ️ 1 hour todays image will be posted at exactly 7pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-10-09 18:01:55+00:00 1.0 1288625943 1231 good news its almost time for another signal ℹ️ date time place tuesday the 9th of october 1900 gmt exchange cryptopia welcome to all the new members on tuesday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-10-07 16:42:56+00:00 1.0 1288625943 1230 analysis coin frost low 000000140 high 000000728 increase 420 after posting the image we saw frost quickly shoot up to a massive 420 some strong buys followed the initial push resulting in big gains for the channel we then saw the price bounce as members closed their positions we will post some detailed trading instructions before the next signal to help us hold 1 on cryptopia longer another great signal today we are doing the biggest signals on cryptopia right now ✅ congratulations to everyone who traded todays signal enjoy your gains have a good weekend and stay tuned for information regarding the next one 2018-10-05 21:27:34+00:00 1.0 1288625943 1226 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-10-05 18:55:01+00:00 1.0 1288625943 1222 ℹ️ 1 hour todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market 2018-10-05 18:00:09+00:00 1.0 1288625943 1217 signal announcement ✅ the next signal will be on friday the 5th of october 1900 gmt exchange cryptopia welcome to all the new members on tuesday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-10-03 18:32:05+00:00 1.0 1288625943 1216 analysis coin umo low 000000298 high 000001093 increase 266+ wow another stellar signal today like last time we saw a more gradual climb which was followed by some massive volume at the peak this helped umo stay at number 1 on cryptopia bringing us even more volume members were able to close some nice gains by selling above 200 ✅ congratulations to everyone who traded todays signal enjoy your gains and get ready for the next one 2018-09-30 19:26:32+00:00 1.0 1288625943 1209 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-09-30 17:55:03+00:00 1.0 1288625943 1205 ℹ️ 1 hour todays image will be posted at exactly 6pm gmt ⭕️ remember to search for the circled coin in the btc market 2018-09-30 17:00:06+00:00 1.0 1288625943 1200 good news its almost time for another signal ℹ️ date time place sunday the 30th of september 1800 gmt exchange cryptopia welcome to all the new members on sunday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-09-28 11:05:26+00:00 1.0 1288625943 1199 analysis coin neva low 000000281 high 000001000 increase 255+ another massive signal today we saw neva quickly hit 100 before gradually climbing to its peak of over 255 finding a strong resistance near the peak allowed members to trade back to btc around the 250 mark the coin then hovered between the first and second place on cryptopia for the next couple of hours ✅ some huge gains were made today once again congratulations to everyone who traded the signal enjoy your gains and stay tuned for information regarding the next one 2018-09-25 21:49:27+00:00 1.0 1288625943 1191 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-09-25 18:55:04+00:00 1.0 1288625943 1187 ℹ️ 1 hour todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market 2018-09-25 18:00:09+00:00 1.0 1288625943 1181 analysis coin sib low 3051 high 10879 change +2565 ✅ great work on sib we did it again we cleared the low walls all together then pushed the price up nicely sib immediately got a strong market attention as it was gradually ranking higher on cryptopia we got our first wave of investors buying in at nearly +170 to +180 we held strong and we kept the price as high as possible with marketing ongoing we got the second wave of market investors flooding in with great buy orders of +254 to +2565 peak prices sib been traded then around peak price levels for about 12 hour well be perfecting our strategies and keeping track of every opportunity on the cryptopia market exchange in order to bring you the best signals tons of positive feedbacks as well thanks for your constant support and congratulations everyone +2565 is a great result and some great profits were made again enjoy stay tuned for news regarding the announcement of the next one 2018-09-23 23:29:54+00:00 1.0 1288625943 1177 ⚠️ only 5 minutes‼️ ℹ️ the next post will be the image coin btc 2018-09-23 17:55:02+00:00 1.0 1288625943 1173 ⏱ 1 hour to go❗️ make sure you log on to your cryptopia early enough ✅ reminder after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract several delayed waves of investorsbuyers do not miss out on the huge gains be ready to take part today 2018-09-23 16:59:59+00:00 1.0 1288625943 1169 signal announcement❗️ great news we have another huge signal upcoming on date sunday 23rd september ⏱ time 600pm gmt exchange wwwcryptopiaconz huge signal upcoming get ready ℹ️ stay tuned for further informations broadcast 2018-09-22 14:29:41+00:00 1.0 1288625943 1168 analysis coin osc low 46 high 260 increase 465+ yesterdays signal was massive after an initial climb to over 200 we saw osc find a strong resistance before pushing to its peak of 465+ it then held the 1 position on cryptopia for hours we have the highest signals on cryptopia right now ✅ some huge gains were made yesterday congratulations to everyone who participated enjoy your weekend and stay tuned for information regarding the next signal 2018-09-22 11:10:19+00:00 1.0 1288625943 1161 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-09-21 18:55:00+00:00 1.0 1288625943 1157 ℹ️ 45 minutes todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market 2018-09-21 18:15:27+00:00 1.0 1288625943 1151 signal announcement its almost time for another signal this ones taken longer than usual but its going to be worth the wait ✅ the next signal will be on friday the 21st of september 1900 gmt exchange cryptopia welcome to all the new members on friday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices 2018-09-19 16:22:50+00:00 1.0 1288625943 1142 ⚠️ only 5 minutes ℹ️ the next post will be the image of the coin btc 2018-09-16 18:25:05+00:00 1.0 1288625943 1140 ⏱ only 15 minutes left❗️ ▶️ all logged on to cryptopia now make sure you are in the btc market ready to go 2018-09-16 18:15:06+00:00 1.0 1288625943 1138 ⏱ 1 hour to go❗️ make sure you log on to cryptopia early enough min 20minutes ✅ be ready huge signal upcoming its going to skyrocket we have a great marketing team massive gains are going to be made 2018-09-16 17:30:13+00:00 1.0 1288625943 1133 informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 630pm gmt exactly an image of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar then click it ▶️ to buy in click on sell orders higher than the current market rate then click your available btc value cryptopia will calculate the equivalent amount of coins click buy button and your order will meet the lowest prices first after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract several delayed waves of investorsbuyers among cryptopia community and push the coin to moon hold while the price is increasing rapidly to sell out you can either gradually meet the strong waves of buy orders or list your sell orders at your target price levels we advise you to sell in pieces to keep the price high and very engaging to the outside investors the price will then keep raising up much higher allowing all of our channel members to clear the greatest profits on this signal opportunity 2018-09-15 15:20:18+00:00 1.0 1288625943 1132 signal announcement❗️ great news team the upcoming signal will be on date sunday 16th september ⏱ time 630pm gmt exchange wwwcryptopiaconz as we are dedicated to keep track of all tremendous opportunities in the cryptopia btc markets we work very hard to bring us all the best momentums and broadcast the strongest signals cryptopia investors are usually loading up the markets on sunday craving to invest in the 1 rank altcoins after posting the signal the coin will be heavily advertised resulting in waves of investorsbuyers among cryptopia community lets be ready on time and clear some massive gains everyone 300400++ ℹ️ stay tuned for further informations broadcast 2018-09-14 19:18:24+00:00 1.0 1288625943 1126 ⚠️ 5 minutes ✅ get ready the next message will be the image 2018-09-13 19:05:04+00:00 1.0 1288625943 1125 ⚠️ attention due to issues with telegram todays signal has been delayed 10 minutes new time 1910 gmt 2018-09-13 19:02:55+00:00 1.0 1288625943 1122 ℹ️ 45 minutes todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-09-13 18:15:22+00:00 1.0 1288625943 1118 signal announcement ✅ great news another signal has been scheduled for tonight ℹ️ date time place thursday the 13th of september 1900 gmt exchange cryptopia 2018-09-13 09:07:17+00:00 1.0 1288625943 1117 analysis coin rc start 1260 high 4650 increase +269 another huge signal today with +269 price surge recorded very well done team we first pushed up rc to the first rank on btc markets board then everyone held nicely which made the cryptopia community investors spot the coin and list their market buy orders at higher price when it then surged more to peak levels our channel members were able to clear sell orders at up to 260+ congratulations to all of us who participated thanks for your positive feedbacks enjoy your gains and stay tuned for informations regarding the next one 2018-09-12 20:56:18+00:00 1.0 1288625943 1110 ❗️only 5 minutes to go now ℹ️ the next post will be the image of the coin btc 2018-09-12 19:25:02+00:00 1.0 1288625943 1109 ⏱ only 15 minutes left ⚠️ we are all logged in to cryptopia now and ready on btc market 2018-09-12 19:15:02+00:00 1.0 1288625943 1107 ⏱ 1 hour left make sure you log on to cryptopia early enough be ready for todays signal we have a huge market opportunity for all of us to trade close some big gains ⚠️ remember to follow the instructions 2018-09-12 18:30:01+00:00 1.0 1288625943 1104 ⚠️ schedule update according to the market circumstances todays signal has been moved 30 minutes back this will allow us to have the most optimal market timing and achieve the best results now you can set your alarms for ⏱ time 730pm gmt dont miss out its going to be huge 2018-09-12 12:15:08+00:00 1.0 1288625943 1102 informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 700pm gmt exactly an image of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the lowest ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and your order will meet lowest rates first after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-11 17:17:27+00:00 1.0 1288625943 1101 signal announcement❗️ great news team we gladly announce that we have a date for the next signal date wednesday 12th september ⏱ time 7pm gmt exchange wwwcryptopiaconz a very strong signal coming up soon combined to a perfect market timing we always verify that the market is very busy with outside investors ready to spot bullish momentums and buy the top ranked coins on cryptopia market ℹ️ stay tuned for further signal informations 2018-09-10 23:58:32+00:00 1.0 1288625943 1100 analysis coin all low 91 high 280 increase 207 right after posting todays signal we saw the price increase over 100 this secured us the 1 spot on cryptopia which helped push the price even higher we then saw the price fluctuate as members took their profits congratulations to everyone who participated enjoy your gains stay tuned for news regarding the next signal 2018-09-09 20:27:44+00:00 1.0 1288625943 1088 ℹ️ just 1 hour remaining todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-09-09 18:01:02+00:00 1.0 1288625943 1076 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the image of the coin btc 2018-09-07 18:55:01+00:00 1.0 1288625943 1075 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-07 18:50:01+00:00 1.0 1288625943 1071 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected 300++ dont miss out on the big profits ahead be ready on time 2018-09-07 15:03:26+00:00 1.0 1288625943 1069 upcoming signal announcement❗️ great news team the next bullish altcoins signal will be released as soon as tomorrow the broadcast is on date friday 7th september ⏱ time 7pm gmt exchange wwwcryptopiaconz the markets timing momentum will technically be held ideally for another massive price rally 300++ on this next one ℹ️ stay tuned for further signal informations 2018-09-07 00:38:56+00:00 1.0 1288625943 1059 ℹ️ 45 minutes todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-09-06 18:15:12+00:00 1.0 1288625943 1053 signal announcement ✅ great news another signal has been scheduled for tomorrow ℹ️ date time place thursday the 6th of september 2018 1900 gmt exchange cryptopia 2018-09-05 10:05:46+00:00 1.0 1288625943 1052 analysis coin spr start 1850 high 8254 increase +346 todays signal was huge as technically predicted we pushed up the coin which resulted in a massive market impact and attracted instantly loads of cryptopia communitys investors the coin been ranked 1 on the market with success the marketing been done very well and its price then shot up higher to a peak of +346 where we found sellers resistance the coin kept bouncing around that level for a fair amount of time allowing us to sell at a great rates a very strong signal and a perfect market timing congratulations everyone enjoy your gains and stay tuned for information regarding the next one 2018-09-02 21:11:08+00:00 1.0 1288625943 1047 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the image of the coin btc 2018-09-02 18:55:00+00:00 1.0 1288625943 1045 ⏱ only 15 minutes left❗️ ▶️ we are all logged in to cryptopia now make sure you are in the btc market ready to go 2018-09-02 18:45:01+00:00 1.0 1288625943 1042 ⏱ 1 hour 30 minutes left❗️ make sure you log on to cryptopia early enough be ready for todays signal we have a great market timing for all of us to trade close some big gains 2018-09-02 17:30:04+00:00 1.0 1288625943 1038 great news❗️ we are glad to announce that we have a date for the next signal date sunday 2nd september ⏱ time 700pm gmt exchange wwwcryptopiaconz ℹ️ stay tuned for further signal informations 2018-09-01 14:54:52+00:00 1.0 1288625943 1030 just 10 minutes left 2018-08-30 18:50:04+00:00 1.0 1288625943 1027 ⚠️ 45 minutes todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-08-30 18:15:23+00:00 1.0 1288625943 1021 signal announcement ✅ the time and date have been set for our next signal just over 48 hours to go get ready guys the next signal will be on thursday the 30th of august 2018 1900 gmt exchange cryptopia 2018-08-28 18:37:33+00:00 1.0 1288625943 1019 results coin shrm low 15421 high 52999 raise 243 ✅ todays signal hit a peak of 243 we managed to hold 200+ for 15 minutes at the 30minute mark we saw a wave of buy orders push us back to 1 on cryptopia congratulations to everyone who participated enjoy your gains stay tuned for news regarding the next signal 2018-08-26 20:14:21+00:00 1.0 1288625943 1011 ❗️ just 5 minutes left make sure your logged in and ready to go this ones going to be huge get ready ✅ the next message will be the image 2018-08-26 18:55:14+00:00 1.0 1288625943 1010 ⚠️ just 10 minutes left 2018-08-26 18:50:15+00:00 1.0 1288625943 1007 ❗️1 hour todays image will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-08-26 18:00:51+00:00 1.0 1288625943 1004 just 10 hours left todays coin will shoot up massively thousands of people will receive the signal generating a huge volume price increase ✅ after posting the signal it will be shared by influential social media profiles generating a delayed wave of buyers ℹ️ make sure you read the previous post and understand the instructions 2018-08-26 09:01:27+00:00 1.0 1288625943 1002 signal announcement its almost time for another signal this ones taken longer than usual but its going to be worth the wait ✅ the next signal will be on sunday the 26th of august 2018 1900 gmt exchange cryptopia 2018-08-25 16:28:51+00:00 1.0 1288625943 990 ❗️ 45 minutes todays image will be posted at exactly 5pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-08-18 16:15:32+00:00 1.0 1288625943 984 analysis ℹ️ gnr quickly pushed up to 150 before climbing to its peak of 219 following its raise to the 1 spot on cryptopia we saw the price hold nicely which allowed members to sell at peak prices another strong signal today team congratulations to everyone who participated and enjoy your earnings ill be working overtime to find more great signals as i know they are in high demand right now stay tuned for news regarding the next one 2018-08-14 20:35:55+00:00 1.0 1288625943 972 ❗️ just 1 hour and 30 minutes remaining todays image will be posted at 7pm gmt ⭕️ remember to search for the circled coin in the btc market 2018-08-14 17:30:37+00:00 1.0 1288625943 970 just 8 hours left todays coin will shoot up massively thousands of people will receive the signal generating a huge volume price increase ✅ after posting the signal it will be shared by influential social media profiles generating a delayed wave of buyers ℹ️ make sure you read the previous post and understand the instructions 2018-08-14 11:02:31+00:00 1.0 1288625943 969 information reg tomorrows signal – sign up to the cryptopia exchange wwwcryptopiaconzexchange – practice using the search bar buy and sell forms – send btc to cryptopia in good time open cryptopia + telegram in good time and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors welcome to all the new members here is a quick todo list to help you prepare for tomorrows signal less than 24 hours before the coin is posted 2018-08-13 19:12:39+00:00 1.0 1288625943 968 signal announcement great news ive been working hard to find another signal everythings looking perfect and we are good to go it will be broadcast here at 7pm gmt tomorrow expect a huge raise and more big gains ✅ the next signal will be on tuesday the 14th of august 2018 1900 gmt exchange cryptopia 2018-08-13 10:56:46+00:00 1.0 1288625943 967 analysis ℹ️ we managed to hold the 1 spot on cryptopia for almost 1 hour magn peaked at 181 outside investors started to buy in at the 1520 minutes mark enabling the channel to profit massively ✅ todays signal was perfect to make some gains as the market finds resistance never panic when btc dips down now is the perfect time to cost average inject more fiat into the market accumulate btc at this point make quick trades and wait for the market to boom before you cash out enjoy your earnings team details regarding the next signal will be disclosed shortly 2018-08-11 20:02:07+00:00 1.0 1288625943 954 ⚠️ just 10 minutes left 2018-08-11 17:50:16+00:00 1.0 1288625943 953 ❗️ 20 minutes start logging in to cryptopia make sure youre in the btc market ready to search for the circled coin 2018-08-11 17:40:07+00:00 1.0 1288625943 951 ❗️ just 1 hour remaining todays image will be posted at exactly 6pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-08-11 17:01:18+00:00 1.0 1288625943 945 the next signal will be on date saturday the 11th of august time 1800 gmt exchange cryptopia ✅ its taken 3 weeks to prepare for this one tomorrow will be massive make sure youre ready ℹ️ more information to follow shortly 2018-08-10 18:00:10+00:00 1.0 1288625943 944 analysis coin inpay low 572 high 1578 fluctuation +176 another strong signal peaking at +176 well done team we saw the price bounce nicely allowing the channel members to clear some big gains many orders were not filled though and outside investors got in with nice buy orders next time we will manage to get our buy orders filled on time and hold longer thanks for your positive feedbacks we are going to keep extending the network and growing the volume on the meantime we aiming to smash some new volume and peak price records enjoy your earnings and stay tuned for announcement regarding the next signal 2018-08-08 21:18:24+00:00 1.0 1288625943 938 ❗️ only 5 minutes to the broadcast ℹ️ the next post will be the image of the coin btc nb we all buy at the same time and push up the coin to attract market investors and make a huge impact 2018-08-08 19:25:02+00:00 1.0 1288625943 937 ⏱ 15 minutes left ▶️ get logged in to cryptopia make sure you are in the btc market ready to go remember to follow the instructions 2018-08-08 19:14:59+00:00 1.0 1288625943 935 ⏱ 1 hour left make sure you log on to cryptopia in good time be ready for todays signal we have a tremendous gains potential on a bullish coin 2018-08-08 18:30:00+00:00 1.0 1288625943 932 ❗️ 16 hours to go until our next signal read the instructions listed below sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ at 730pm gmt exactly we will broadcast here an image of the coin subject to the bullish patterns signal be at your computer early open telegram and log in to your cryptopia account ℹ️ btc market type the coin name in the search bar and load its market ▶️ to buy in click on sell orders higher than the first one listed at current market price then click your available btc value cryptopia will calculate the amount of coins click buy and rapidly complete your order whithin the 5 first minutes hold for up to 15 minutes while the marketing is ongoing get any early dips that may occur these are great buys the price will be increasing at a great rate after posting the signal it will be advertised and it will have a strong market impact resulting in waves of investorsbuyers to sell out you can either list your sell order at a price average around + or 10 of the peak price or you can click on a buy order listed by market investors that meets about the high price we advise you to sell in pieces not all at once make sure you meet gradually the outsiders high priced buy orders the price will keep raising up by then allowing all of us to keep selling gradually at good profits that is at our best interests as a coop group this also keeps the coin price very attractive to the market investors 2018-08-08 03:32:14+00:00 1.0 1288625943 931 ⚠️ schedule change the signal time has been moved 90 minutes forward markets circumstances date wednesday 8th august ⏱ time 730pm gmt 2018-08-07 13:21:13+00:00 1.0 1288625943 930 ❗️ signal schedule announcement the next coin signal is taking place on date wednesday 8th august ⏱ time 6pm gmt exchange cryptopia ℹ️ market insiders bringing up a very bullish lowcap cryptocurrency dont miss out on these midweeks massive trades and big profits ahead the trading instructions to take part will be posted soon stay tuned 2018-08-06 15:07:08+00:00 1.0 1288625943 928 analysis coin mne low 1083 high 2262 fluctuation 108 today we have seen a decent rise to +108 many orders were not filled and outside investors got in with nice buy orders but at a lower price than expected we noticed a very low rate of participation lately certainly due to the time of year now summer vacation most of traders and investors are off market we can see that through our last volume results before summer time our average volume was around 3 to 11 btc with rise of about +250 to 685 smashing higher price tragets and selling to outsiders with huge profits are now subjected to further end of summer season a good volume is necessary to seize these signals massive trading oppotunities nonetheless we managed to clear sells at around peak price which allowed members to close some decent gains well done team thanks for your positive feedbacks we are going to keep extending our influence and growing the volume on the meantime enjoy your earnings and stay tuned for announcement regarding the next signal 2018-07-29 21:14:19+00:00 1.0 1288625943 921 ❗️ 5 minutes ℹ️ the next message will be the image of the coin btc nb buy hold for about 10 15 min accordingly to the market impact 2018-07-29 17:55:00+00:00 1.0 1288625943 919 ⏱ 15 minutes left ▶️ get logged in to cryptopia now make sure you are in the btc market ready to go remember to follow the instructions huge bullrun ahead 2018-07-29 17:45:02+00:00 1.0 1288625943 913 get ready for tomorrow read the instructions listed below sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ at 600pm gmt exactly we will broadcast here an image of the coin subject to buy signal be at your computer 20 minutes early open telegram and log in to cryptopia ℹ️ btc market type the coin name in the search bar and load its market ▶️ to buy in click on sell orders higher than the first one listed at current market price then click your available btc value cryptopia will calculate the amount of coins click buy and rapidly complete your order whithin the 5 first minutes hold for up to 15 minutes while the marketing is ongoing get any early dips that may occur these are great buys the price will be increasing at a great rate after posting the signal it will be advertised and it will have a strong market impact resulting in waves of investorsbuyers to sell out you can either list your sell order at a price average around + or 10 of the peak price or you can click on a buy order listed by market investors that meets about the high price we advise you to sell in pieces not all at once make sure you meet gradually the outsiders high priced buy orders that is at our best interests as a coop group this also keeps the coin price very attractive to the market investors 2018-07-28 14:38:04+00:00 1.0 1288625943 912 ❗️ signal date announcement great news the next coin signal is taking place on date sunday 29th july ⏱ time 6pm gmt exchange cryptopia ℹ️ the trading instructions to take part will be posted soon dont miss out on the weekends huge profits ahead stay tuned 2018-07-27 04:17:37+00:00 1.0 1288625943 911 analysis coin magn low 501 high 1494 fluctuation 198 good work team magn been traded around +155 and +174 after an initial rise above +198 investors kept coming with some nice buy orders 14 minutes in on the next one we will make sure to keep the price up longer and hold longer and stronger for everyone to clear at peak price with big gains thanks for your positive feedbacks enjoy your earnings and stay tuned for info regarding the next signal 2018-07-24 20:35:46+00:00 1.0 1288625943 906 ❗️ 5 minutes ℹ️ the next message will be the image of the coin btc 2018-07-24 17:55:02+00:00 1.0 1288625943 905 ⏱ 15 minutes ✅ start logging in to cryptopia make sure you are in the btc market ready to search for the coin 2018-07-24 17:44:59+00:00 1.0 1288625943 899 ❗️ great news signal upcoming date time tuesday 24th july at 600pm gmt exchange cryptopia massive trades ahead the trading instructions will be broadcast soon stay tuned 2018-07-22 23:09:04+00:00 1.0 1288625943 892 ⚠️ just 10 minutes left 2018-07-20 18:50:06+00:00 1.0 1288625943 891 ❗️ 20 minutes start logging in to cryptopia make sure youre in the btc market ready to search for the circled coin 2018-07-20 18:40:05+00:00 1.0 1288625943 889 ❗️ just 1 hour remaining todays image will be posted at exactly 7pm gmt ⭕️ remember to enter the circled coin make sure you log on to cryptopia in good time 2018-07-20 18:01:16+00:00 1.0 1288625943 883 results coin euc low 71 high 172 increase +142 nice work today team investors kept coming with orders of 140+ 10 minutes in the maketing team did an good job again on the next one we will make sure to push higher and keep the price up longer for everyone to clear sell orders at peak price with big gains also we noticed an unexpected low rate of participation today certainly due to the actual market breakout many members prefered to take positions on mooning altcoins as bitcoin broke its 7000 upper resistance we will see most of them back trading with us next time thanks for your support and your positive feedbacks enjoy your earnings stay tuned for info regarding the next signal 2018-07-18 01:35:54+00:00 1.0 1288625943 877 ❗️ 5 minutes only the next message will be the image of the coin 2018-07-17 18:55:00+00:00 1.0 1288625943 876 ❗️ only 10 minutes left ✅ get ready to push the coin up and sell at peak the investors are flooding cryptopia market actually 2018-07-17 18:50:01+00:00 1.0 1288625943 873 ❗️ 45 minutes left to go its nearly time the market is perfect its going to moon 2018-07-17 18:15:03+00:00 1.0 1288625943 868 signal analysis coin osc low 000000107 high 000000295 increase 175 this coin had some great early buys available being a medium volume coin and starting at 15 after posting the image we saw a peak of 175 this pushed us to the 1 spot on cryptopia a longer hold would give us more time to attract the attention of other traders and make larger gains another strong signal today but the next one will be even better enjoy your gains and stay tuned for information regarding the next signal 2018-07-14 19:48:45+00:00 1.0 1288625943 861 ⚠️ just 10 minutes left 2018-07-14 18:50:05+00:00 1.0 1288625943 860 ❗️ 20 minutes start logging in to cryptopia make sure youre in the btc market ready to search for the circled coin 2018-07-14 18:40:05+00:00 1.0 1288625943 858 ❗️ just 1 hour remaining todays image will be posted at exactly 7pm gmt ⭕️ remember to enter the circled coin make sure you log on to cryptopia in good time 2018-07-14 18:00:03+00:00 1.0 1288625943 851 signal analysis coin bubo low 000000250 high 000000790 increase 216 another great signal bubo peaked at +216 after getting to the 1 spot on cryptopia we quickly saw a wave of buy orders this cleared our sell orders allowing us to sell near the peak and make some massive gains i am currently working on even bigger signals for the future congratulations to everyone who participated in todays signal enjoy your gains and get ready for more great signals 2018-07-10 20:16:01+00:00 1.0 1288625943 842 ❗️ 20 minutes start logging in to cryptopia make sure youre in the btc market ready to search for the circled coin 2018-07-10 18:40:50+00:00 1.0 1288625943 827 ❗️ 5 minutes only the next message will be the image of the coin 2018-07-08 18:55:00+00:00 1.0 1288625943 823 ❗️ under 1 hour 20 minutes to go its nearly time todays signal is going to be huge 2018-07-08 17:40:10+00:00 1.0 1288625943 808 ❗️ 20 minutes start logging in to cryptopia make sure youre in the btc market ready to search for the circled coin 2018-07-06 18:41:04+00:00 1.0 1288625943 806 ❗️ 1 hour left todays image will be posted at exactly 7pm gmt ⭕️ remember to enter the circled coin make sure you log on to cryptopia in good time 2018-07-06 18:00:25+00:00 1.0 1288625943 801 results coin abc low 001037583 high 000455484 increase +128 as some of you requested we went for a slightly larger volume coin with some great early buying opportunities we managed to hold at +128 while outside investors came in although a lot of you are happy with todays signal we were aiming to raise the price up higher and longer when marketing team launches the promotional campaign it creates fomo resulting in waves of buy orders coming in at peak prices the result is huge as seen in our previous operations which have hit up to +685 outside investors are always looking for strong signals to get in the next signal will be on a smaller cap with a higher raise +128 is still good and people made nice gains but it could have been much bigger like our previous signals ☑️ we are ready to launch our new advertising campaign stay tuned for informations regarding our next one 2018-07-06 02:20:48+00:00 1.0 1288625943 795 ❗️ 5 minutes only the next message will be the image of the coin 2018-07-05 18:55:00+00:00 1.0 1288625943 794 ❗️ 10 minutes left ✅ be ready to go its going to moon 2018-07-05 18:50:00+00:00 1.0 1288625943 787 ❗️ here are our instructions to participate tomorrow please read below sign up and send your btc to wwwcryptopiaconzexchange get familiar with the exchange search bar and buy sell order forms ⏰ at 700pm gmt exactly we will post an image showing the coin name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coin name in the btc market ✅ to buy quickly click on a sell order much higher than the current market rate click your available btc value and cryptopia will calculate the correct amount with absolute certainty your buy order meets the lowest price first complete your order hold while the marketing is ongoing and the price increasing at a great rate after posting the signal it will be advertised on social medias and the exchange platform resulting in a huge wave of investorsbuyers when the price has increased greatly and the marketing team has promoted the coin we advise you to sell in pieces not all at once that is at your best profits interest this also keeps the price high and attractive to outside investors the channel members get to sell at highest prices 2018-07-04 14:24:17+00:00 1.0 1288625943 786 ❗️ next signal on schedule thursday the 5th of july at 700pm gmt cryptopia exchange ✅ get ready dont miss out on this one its going to be a massive opportunity more information will be disclosed shortly 2018-07-03 14:16:35+00:00 1.0 1288625943 785 signal analysis coin beez low 000000026 high 000000078 increase 200 after posting beez we saw some strong buys pushing it to 100 the coin then climbed to its peak of 200 before finding resistance with a nice support of buy orders this allowed the channel to sell near the peak and close some massive profits another great signal congratulations to everyone who participated and enjoy your gains we will get to work on the next signal and post an update as soon as possible stay tuned for the announcement 2018-07-01 17:14:35+00:00 1.0 1288625943 778 ❗️ 20 minutes start logging in to cryptopia make sure youre in the btc market ready to search for the circled coin 2018-07-01 15:40:31+00:00 1.0 1288625943 776 ❗️ 1 hour left todays image will be posted at exactly 4pm gmt ⭕️ remember to enter the circled coin make sure you log on to cryptopia in good time 2018-07-01 15:00:20+00:00 1.0 1288625943 772 good news we will be broadcasting our next signal tomorrow ✅ date time place date sunday the 1st of july 2018 time 4pm gmt exchange cryptopia its going to be huge expecting a 300+ raise 2018-07-01 00:23:04+00:00 1.0 1288625943 771 analysis coin hav low 671 high 2001 change +198 volume 39 btc ✅ great team work on hav today we were able to close some big gains with outside investors we cleared the low walls all together and after an intial price increase a first wave of investors bought in at nearly +148 about 5 minutes in we held strong and got most of the early sellers dips with marketing ongoing we kept the price as high as possible before the second wave of outside investors flooded in with over 2 btc buy orders of +198 peak price at about 22 minutes mark hav been traded then around +198 and +147 up to the 29 minutes mark before being traded around +122 and +57 at 33 minutes in congratulations team most of us cleared sell orders of up to +198 enjoy your earnings thanks for your positive feedbacks stay tuned for info regarding the next signal 2018-06-30 21:36:36+00:00 1.0 1288625943 760 ❗️ 5 minutes only the next message will be the image of the coin 2018-06-30 16:55:00+00:00 1.0 1288625943 759 ❗️ 10 minutes left ✅ get ready to go its going to moon 2018-06-30 16:50:05+00:00 1.0 1288625943 752 ❗️ our next signal is upcoming shortly date time saturday the 30th of june at 500pm gmt place cryptopia exchange ✅ one more great opportunity for the massive gains not to be missed more info to follow shortly stay tuned 2018-06-28 21:02:37+00:00 1.0 1288625943 740 ❗️ 20 minutes start logging in to cryptopia make sure youre in the btc market ready to search for the circled coin this is going to moon hard get ready 2018-06-27 18:40:49+00:00 1.0 1288625943 738 ❗️ 1 hour left todays image will be posted at exactly 7pm gmt ⭕️ remember to enter the circled coin make sure you log on to cryptopia in good time 2018-06-27 18:00:35+00:00 1.0 1288625943 733 ✅ the next signal will be broadcast tomorrow ℹ️ date time and place date wednesday the 27th of june 2018 time 1900 gmt exchange cryptopia its going to be massive make sure you dont miss this one 2018-06-26 16:32:46+00:00 1.0 1288625943 732 analysis coin cc start 355 peak 1000 raise +182 ✅ a clean +182 with some nice buys coming over +162 after the sellers came in at +182 and dropped the price few minutes in the coin bounced back and been traded around +88119 we could have pushed this one higher and longer today but a lot of people were on tether usdt unable to participate due to the btc markets dips for members who took part in todays signal good job enjoy your gains we are working on some great signals with massive raise potential as market stabilizes we are having a much more powerfull one next more news to follow shortly 2018-06-25 01:13:18+00:00 1.0 1288625943 726 ❗️ 5 minutes only the next message will be the image of the coin its market link 2018-06-24 16:55:00+00:00 1.0 1288625943 725 ❗️ 15 minutes left ✅ get ready to go 2018-06-24 16:45:00+00:00 1.0 1288625943 719 ❗️ 18 hours to go until our next signal ▪️ instructions reminder for new members sign up and send your btc to wwwcryptopiaconzexchange get familiar with the exchange search bar and buy sell order forms ⏰ at 500pm gmt exactly we will post the coin name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coin name in the btc market ✅ to buy quickly click on a sell order much higher than the current market rate click your available btc value and cryptopia will calculate the correct amount with certainty your buy order meets the lowest price first complete your order hold while the marketing is ongoing and the price increasing at a great rate after posting the signal it will be advertised on social medias and the exchange platform resulting in a huge wave of investorsbuyers when the price has increased greatly and the marketing team has promoted the coin we advise you to sell in pieces not all at once that is at your best profits interest this also keeps the price high and attractive to outside investors the channel members get to sell at highest prices thanks for your positive feedbacks 2018-06-23 23:00:03+00:00 1.0 1288625943 718 ❗️ next signal is scheduled now for tomorrow sunday the 24th of june at 500pm gmt cryptopia exchange its going to moon be ready on time dont miss out ✅ we will publish soon a reminder of the detailed trading instructions stay tuned feedback donaldpumpadmin 2018-06-23 18:03:18+00:00 1.0 1288625943 717 results coin kash low 22 high 66 increase 200 analysis four hours later and kash is still trading between the 1 2 spots on cryptopia ✅ we saw the price dip briefly after hitting the peak of 200 after marketing the coin we saw outside investors flood in kash found a strong resistance and has been trading between 5080 over the last 4 hours a slightly longer hold near the peak would have allowed us to maximize gains nonetheless a great signal considering todays market ⬆️ the coin is still climbing currently 2 on cryptopia trading at 83+ ill keep you updated with any news regarding the coin stay tuned for information regarding the next one 2018-06-22 23:06:16+00:00 1.0 1288625943 702 ❗️ 20 minutes left ✅ log in to cryptopia and get ready 2018-06-22 18:40:35+00:00 1.0 1288625943 700 ❗️ 1 hour left todays image will be posted at exactly 7pm gmt ⭕️ remember to enter the circled coin its good we have a signal planned for today as the markets dipping ✅ lets make some gains get back in the green 2018-06-22 18:00:33+00:00 1.0 1288625943 696 ❗️ under 24 hours before our next signal great news ✅ we have another signal planned for tomorrow evening everything is perfect for a 300 increase get ready team not long to go date friday the 22nd of june 2018 time 1900 gmt exchange cryptopia 2018-06-22 01:27:57+00:00 1.0 1288625943 691 ❗️ 5 minutes only the next message will be the image of the coin 2018-06-21 17:55:01+00:00 1.0 1288625943 690 ❗️ 15 minutes left ✅ get ready to go 2018-06-21 17:45:01+00:00 1.0 1288625943 687 ❗️1 hour 30 minutes left ✅ review the instructions above and be ready for some big gains 2018-06-21 16:30:00+00:00 1.0 1288625943 684 ❗️ under 24 hours to go until our next signal ☑️ instructions reminder for members sign up and send your btc to wwwcryptopiaconzexchange get familiar with the exchange search bar and buy sell order forms ⏰ at 600pm gmt exactly we will post the coin name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coin name in the btc market ✅ to buy quickly click on a sell order much higher than the current market rate click your available btc value and cryptopia will calculate the correct amount with certainty your buy order meets the lowest price first complete your order hold while the marketing is ongoing and the price increasing at a great rate after posting the signal it will be advertised on social medias and the exchange platform resulting in a huge wave of investorsbuyers when the price has increased greatly and the marketing team has promoted the coin we advise you to sell in pieces not all at once that is at your best profits interest this also keeps the price high and attractive to outside investors the channel members get to sell at highest prices 2018-06-20 18:34:19+00:00 1.0 1288625943 682 ❗️ next signal on schedule thursday the 21st of june at 600pm gmt cryptopia exchange ✅ been missing out on the big gains from previous signals be ready for this one stay tuned for upcoming info 2018-06-19 15:01:53+00:00 1.0 1288625943 681 results coin das low 433 high 1438 increase +232 volume 32 btc nice work today team investors kept coming with orders of 200++ 5 minutes in the maketing team did an amazing job again on the next one we will make sure to keep the price up longer as we hold strong like we do for everyone to clear at peak price with big gains thanks for your support and your positive feedbacks enjoy your earnings stay tuned for info regarding the next signal 2018-06-18 01:14:39+00:00 1.0 1288625943 676 ❗️ 3 minutes only the next message will be the image of the coin 2018-06-17 17:57:01+00:00 1.0 1288625943 675 ❗️ 10 minutes left ✅ get ready to go 2018-06-17 17:50:09+00:00 1.0 1288625943 670 ✅ next signal on schedule sunday the 17th of june at 1800 gmt cryptopia exchange one more opportunity for huge gains not to be missed stay tuned 2018-06-16 00:18:26+00:00 1.0 1288625943 659 ❗️ 20 minutes left ✅ log in to cryptopia and get ready 2018-06-14 18:40:17+00:00 1.0 1288625943 655 great news we have arranged another signal for this evening ✅ we have been working on this one for ages everything is looking perfect so theres no reason to wait date thursday the 14th of june 2018 time 1900 gmt exchange cryptopia 2018-06-14 13:05:44+00:00 1.0 1288625943 649 ❗️ 5 minutes the next message will show you the coin to buy up 2018-06-12 18:25:00+00:00 1.0 1288625943 647 ❗️ 20 minutes left ✅ make sure you are logged in to your cryptopia account and ready to go 2018-06-12 18:10:02+00:00 1.0 1288625943 644 ❗️ 1 hour 45 minutes left until the signal another coin is going to moon be ready on time ⏰ you can set your alarm for 610pm gmt to log in 2018-06-12 16:45:02+00:00 1.0 1288625943 640 ❗️ next signal is scheduled for tomorrow tuesday the 12th of june at 630pm gmt cryptopia exchange get ready for a new massive increase record tremendous gains for all channel members more information will be disclosed shortly stay tuned 2018-06-11 17:53:40+00:00 1.0 1288625943 639 results coin geert low 65 high 225 increase rate +275 volume 39 btc ✅ once again we smashed it yesterday bringing in waves of buy orders over +275 up to 15 minutes in most of you guys made some big gains with outside investors buying in at peak prices congratulations team enjoy your profits thanks to the marketing team geerts been trading between 80100 5 to 12 hours later and is still up 51 now well keep track of every opportunity on the cryptopia exchange and bring you only the best signals we are dedicated to expanding the network growing the volume and bringing you more frequent signals we are currently working on the next one stay tuned for the announcement 2018-06-09 13:02:12+00:00 1.0 1288625943 631 ❗️ 5 minutes the next message will show you the coin to buy up be ready 2018-06-08 18:24:59+00:00 1.0 1288625943 629 ❗️ under 20 minutes left ✅ make sure you are logged in to your cryptopia account and ready to go 2018-06-08 18:10:52+00:00 1.0 1288625943 626 ❗️1 hour 30 minutes until the coins name is released ✅ ge ready to close some large gains today again 2018-06-08 16:59:59+00:00 1.0 1288625943 622 ❗️ the next signal is now scheduled on tomorrow friday date time the 8th of june at 18h30 gmt cryptopia exchange been missing out on the huge gains get ready for this one its going to skyrocket more information will be disclosed shortly stay tuned 2018-06-07 17:34:59+00:00 1.0 1288625943 621 results coin umo low 598 high 1914 increase rate 220+ volume 37 btc umo hit a peak of 220+ this time more importantly umo always presented great technical pump outcome according to the software algorithmic analysis the huge rise of umo on cryptopia attracted a good amount of investors and triggered bots to place multiple small buy orders quickly this was shown by the nice first wave of buy orders at around +180 to 220 if we held the price up any longer than 10 minutes like todays we could have seen that second wave of outsiders buy orders at +250 to 350+ but some of you preferred to close profits earlier and outsiders kept buying in cheaper instead at around +7090 ❗️ holding to keep the price up longer allows the marketing team time to deliver better results by bringing in outsiders on time this hold results in much larger gains for the whole channel ✅ overall the coins been trading between 200 220 for the first 5 to 10 minutes then from 30 to 90 at last before everyone cleared the sells good trades team congratulations to everyone who participated enjoy your gains stay tuned for news regarding the next signal 2018-06-06 04:36:05+00:00 1.0 1288625943 612 ❗️ 5 minutes the next message will show you the coin to buy up 2018-06-05 18:55:00+00:00 1.0 1288625943 610 ❗️ 20 minutes left ✅ make sure you are logged in to your cryptopia account and ready to go 2018-06-05 18:40:00+00:00 1.0 1288625943 607 ❗️1 hour 30 minutes until the coins name is released ✅ nearly there be ready to make some huge profits tonight 2018-06-05 17:30:01+00:00 1.0 1288625943 603 ✅ the next signal is now scheduled on tuesday date time the 5th june at 19h00 gmt cryptopia marketexchange its going to be massive again dont miss out 2018-06-04 14:46:39+00:00 1.0 1288625943 592 3 minutes ✅ the next message will show you the coin 2018-05-29 18:57:01+00:00 1.0 1288625943 589 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-29 18:40:04+00:00 1.0 1288625943 574 3 minutes ✅ the next message will show you the coin 2018-05-27 15:57:00+00:00 1.0 1288625943 571 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-27 15:40:00+00:00 1.0 1288625943 563 the next signal on schedule date time sunday the 27th of may at 400pm gmt exchange cryptopia price increase up to 600++ more frequent signals for more profits ✅ stay tuned we will publish a reminder of the detailed trading instructions tmedonaldpumpcrypto 2018-05-26 13:06:07+00:00 1.0 1288625943 562 results coin alt low 221001 high 1310000 raise 492+ volume 7 btc a very strong signal with a huge volume and massive increase ✅ our prediction was spot on we are doing the highest on cryptopia right now this will be a nice edition to our wall of fame thanks for the feedback stay tuned for news regarding the next signal 2018-05-26 00:04:54+00:00 1.0 1288625943 552 3 minutes ✅ the next message will show you the coin 2018-05-25 18:57:01+00:00 1.0 1288625943 549 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-25 18:40:00+00:00 1.0 1288625943 543 here we are team great news our next huge signal oppotunity is scheduled for today date friday the 25th of may at 700pm gmt exchange cryptopia increase 300600+ more frequent huge signals for more massive gains dont miss out cashing in more ✅ stay tuned for further instructions tmedonaldpumpcrypto 2018-05-25 04:10:59+00:00 1.0 1288625943 530 3 minutes ✅ the next message will show you the coin 2018-05-24 18:26:58+00:00 1.0 1288625943 527 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-24 18:09:58+00:00 1.0 1288625943 525 ❗️ 1 hour to go log in to your cryptopia account 20 minutes early and get ready on time 2018-05-24 17:29:59+00:00 1.0 1288625943 522 ❗️ 6 hours to go until our next massive signal a quick to do list for new members sign up and send your btc to wwwcryptopiaconzexchange get familiar with the exchange search bar and buy sell order forms ⏰ at 630pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 15 35 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors contact donaldpumpadmin with any questions 2018-05-24 12:30:52+00:00 1.0 1288625943 521 great news the next signal on schedule is after tomorrow date time thursday the 24th of may at 630pm gmt exchange cryptopia price increase +300500+ dont miss out making huuge gains this one is going to moon as usual ✅ stay tuned for further instructions tmedonaldpumpcrypto 2018-05-22 21:51:00+00:00 1.0 1288625943 509 3 minutes ✅ the next message will show you the coin 2018-05-18 18:57:01+00:00 1.0 1288625943 506 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-18 18:39:36+00:00 1.0 1288625943 504 ⚠️ 1 hour to go get ready log in to your cryptopia account 20 minutes early 2018-05-18 17:59:34+00:00 1.0 1288625943 501 ❗️ the next huge trading signal announcement is here date friday the 18th of may at 7pm gmt exchange cryptopia expected price increase 300500+ great opportunity again get ready to make some massive gains its going to moon 2018-05-17 23:50:35+00:00 1.0 1288625943 500 24 hours after the signal bxc has found a new resistance 500 higher than our start price we have generated over 20 btc volume already and we are still going strong we managed to hold the 1 spot on cryptopia for 48 hours 48 hours later the coin peaked at 809 which is a massive 685 increase we broke a higher resistance level we have been breaking records here team ⚠️ today the coin price is finally dipping back with loads of tremendous profits being closed on sell orders hope you are all cleared with massive gains enjoy team we will keep you updated on any news regarding the coin 2018-05-17 23:50:26+00:00 1.0 1288625943 487 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-14 18:41:04+00:00 1.0 1288625943 484 ❗️ under 2 hours to go get ready on time and log in to your cryptopia account 20 minutes early 2018-05-14 17:06:39+00:00 1.0 1288625943 482 ❗️breaking news the next signal will be broadcasting tomorrow date monday the 14th of may at 700pm gmt exchange cryptopia price increase 300500 get ready to make some massive gains this one is going to moon tmedonaldpumpcrypto 2018-05-13 23:20:55+00:00 1.0 1288625943 465 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-12 16:40:02+00:00 1.0 1288625943 463 ⚠️ 1 hour to go get ready log in to your cryptopia account 20 minutes early 2018-05-12 16:00:31+00:00 1.0 1288625943 459 ✅ great news we will be broadcasting our next signal tomorrow date time place date saturday the 12th of may time 5pm gmt exchange cryptopia 2018-05-11 20:03:11+00:00 1.0 1288625943 445 ❗️ 3 minutes the next message will show you the coin 2018-05-09 18:27:17+00:00 1.0 1288625943 442 ⚠️ under 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-09 18:11:00+00:00 1.0 1288625943 439 ❗️ 2 hours left for our huge signal ⏰ you can set your alarm for 600pm gmt 2018-05-09 16:30:02+00:00 1.0 1288625943 438 ❗️ under 4 hours to go get ready on time and log in to your cryptopia account 20 minutes early 2018-05-09 14:35:40+00:00 1.0 1288625943 435 ❗️ the next huge trading signal announcement is here date wednesday the 9th of may at 630pm gmt exchange cryptopia expected price increase 200500+ great opportunity get ready to make some massive gains its going to moon 2018-05-08 04:49:33+00:00 1.0 1288625943 419 ❗️ 2 minutes only the next message will show you the coin 2018-05-06 16:58:02+00:00 1.0 1288625943 416 ⚠️ 20 minutes left ✅ make sure you are logged in and ready to go 2018-05-06 16:40:39+00:00 1.0 1288625943 413 ❗️ under 3 hours to go make sure you are ready on time and logged in to your cryptopia account 30 minutes early dont miss out todays signal it will shoot up massively 2018-05-06 14:02:14+00:00 1.0 1288625943 410 ❗️ great news our next trading signal announcement is here date sunday the 6th of may at 5pm gmt exchange cryptopia expected price increase 200400+ another tremendous opportunity to seize get ready its going to shoot up massively tmedonaldpumpcrypto 2018-05-05 14:41:53+00:00 1.0 1288625943 398 ❗️ 2 minutes only the next message will show you the coin 2018-05-04 18:58:03+00:00 1.0 1288625943 393 ❗️ about 1 hour to go get ready on time and log in to your cryptopia account 30 minutes early make sure you dont miss out todays signal it will spike to the moon 2018-05-04 18:00:03+00:00 1.0 1288625943 391 ❗️ under 12 hours left until our next signal a quick to do list for new members ▫️ sign up to cryptopia ▫️ send btc to your cryptopia account ▫️ get familiar with the exchange search bar and buy sell order forms ▫️ be at your computer 30 minutes early open telegram and log in to cryptopia ▫️ wait for the signal to be posted at exactly 7pm gmt ▫️ buy in quickly sell out and cash in your profits ✅ read through the detailed instructions posted previously if its your first time ⏰ you can set your alarm for 630pm gmt great profits to be made today 2018-05-04 07:07:43+00:00 1.0 1288625943 390 great news our next pump signal is scheduled now for tomorrow date friday the 4th of may at 7pm gmt exchange cryptopia expected raise 300+ great opportunity with huuge earnings its going to skyrock again tmedonaldpumpcrypto 2018-05-03 22:05:26+00:00 1.0 1288625943 387 results coin src low 000000370 high 000000939 increase +154 volume 188 btc – although a lot of you are happy with todays signal we were aiming to hold the price up longer this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices the result is huge as seen in our previous operations which have hit up to 480 outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy and follow the channels trading instructions +154 is still very good and people made considerable gains but it could have been much bigger ☑️we are almost ready to launch our new advertising campaign stay tuned for more info feedback donaldpumpadmin 2018-05-02 19:59:38+00:00 1.0 1288625943 379 ❗️ 3 minutes the next message will show you the coin 2018-05-02 17:57:02+00:00 1.0 1288625943 373 ❗️ under 3 hours to go make sure to be ready on time and log in to your cryptopia account 30 minutes early dont miss out todays pump its going to be massive 2018-05-02 15:19:42+00:00 1.0 1288625943 371 great news team our next pump signal is scheduled now date wednesday the 2nd of may at 6pm gmt exchange cryptopia potential raise 300+ great opportunity with huge earnings lets think big tmedonaldpumpcrypto 2018-04-30 22:28:25+00:00 1.0 1288625943 363 ⚠️ 3 minutes the next message will contain the image of todays coin 2018-04-29 17:57:02+00:00 1.0 1288625943 358 ❗️ 1 hour to go make sure you log in to your cryptopia account 20 minutes early 2018-04-29 17:04:02+00:00 1.0 1288625943 355 great news our next pump signal is scheduled now for tomorrow date sunday the 29th of april at 600pm gmt exchange cryptopia increase potential 300+ huge gains to make its going to be great again tmedonaldpumpcrypto 2018-04-28 16:06:59+00:00 1.0 1288625943 352 results coin tgc low 00000096 high 00000251 increase +161 volume 213 btc although a lot of people were unable to participate due the lag we still managed to clear 161 the marketing team smashed it once again bringing in waves of buy orders over 100 up to 15 minutes in we will do our best to test cryptopia before we post the signal congratulations to everyone who participated today and thanks for your support and positive feedback keep the feedback rolling in enjoy your profits and stay tuned for the next signal feedback donaldpumpadmin 2018-04-25 20:06:58+00:00 1.0 1288625943 343 ⚠️ 3 minutes the next message will show you the coin 2018-04-25 18:57:03+00:00 1.0 1288625943 341 ❗️10 minutes left ⚠️ today we will post an image of the coin 2018-04-25 18:50:04+00:00 1.0 1288625943 337 ❗️ 2 hours to go make sure you log in to your cryptopia account 20 minutes early dont miss out today massive gains to be made once again 2018-04-25 17:01:06+00:00 1.0 1288625943 336 ❗️ 4 hours 30 minutes left a quick to do list for new members ▫️ sign up to cryptopia ▫️ send btc to your cryptopia account ▫️ get familiar with the exchange search bar and buy sell order forms ▫️ be at your computer 30 minutes early open telegram and log in to cryptopia ▫️ wait for the signal to be posted at exactly 7pm gmt ▫️ buy in quickly sell out and cash in your profits ✅ read through the more detailed instructions posted previously if its your first time ⏰ you can set your alarm for 630pm gmt lets close some great trades today 2018-04-25 14:30:38+00:00 1.0 1288625943 335 here we are team great news our next pump signal event is scheduled now for today date wednesday the 25th of april at 700pm gmt exchange cryptopia potential +300 raise its going to be big lets pump up tmedonaldpumpcrypto 2018-04-25 10:52:42+00:00 1.0 1288625943 332 the next event announcement upcoming soon we are 100 working on the next massive pump signal huge earnings at stake +300400 peak exchange cryptopia stay tuned 2018-04-24 03:40:31+00:00 1.0 1288625943 329 results coin acoin low 00001063 high 00004254 increase 300++ target reached successfully volume 46 btc thanks to the dedicated marketing team we succeeded in closing tremendous profits today the team is getting stronger and volume is consistently growing congratulations to everyone who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next signal 2018-04-22 18:57:26+00:00 1.0 1288625943 319 ❗️5 minutes left ⚠️ attention today we will post a link directly to the coin 2018-04-22 17:55:00+00:00 1.0 1288625943 316 ❗️30 minutes left ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers 2018-04-22 17:30:19+00:00 1.0 1288625943 315 ❗️ 1 hour to go make sure you dont miss out today massive gains to be made log in to your cryptopia account 20 minutes early 2018-04-22 17:00:59+00:00 1.0 1288625943 310 great news team our next pump signal is scheduled now date sunday the 22nd of april at 600pm gmt exchange cryptopia potential +300 raise its going to be huuge tmedonaldpumpcrypto 2018-04-21 04:15:19+00:00 1.0 1288625943 307 results coin vuc low 21 high 70 increase +233 volume 321 btc we held strong today outside investors kept coming with orders of 150+ 20 minutes in the maketing team did an amazing job again enjoy your earnings congratulations to everyone who participated today and thanks for your support and your positive feedback enjoy your earnings stay tuned for info regarding the next signal feedback donaldpumpadmin 2018-04-18 18:50:00+00:00 1.0 1288625943 297 2 minutes left the next post will show you the coin 2018-04-18 17:58:10+00:00 1.0 1288625943 292 ❗️ 1 hour to go make sure you log in to your cryptopia account 20 minutes early 2018-04-18 17:00:49+00:00 1.0 1288625943 291 ❗️ 2 hours left for our next massive pump today ⏰ you can set your alarm for 530pm gmt make sure you dont miss out +300 massive gains to be made tmedonaldpumpcrypto 2018-04-18 16:00:59+00:00 1.0 1288625943 289 great news team our next pump signal is scheduled now date wednesday the 18th of april at 600pm gmt exchange cryptopia potential +300 raise massive profits are made great its going to be huuge again tmedonaldpumpcrypto 2018-04-17 00:29:52+00:00 1.0 1288625943 286 analysis coin iqt low 860 high 4990 increase 480 ✅ we smashed our 400 target volume 53 btc the pump stood for a full hour marketing team did an amazing job 7 btc target volume will be reach soon as planned congratulations to everyone who participated today loads of positive messages flooding in enjoy your earnings stay tuned for info regarding the next signal 2018-04-15 19:24:15+00:00 1.0 1288625943 260 ⚠️ 2 minutes the next message will show you the coin 2018-04-15 17:58:02+00:00 1.0 1288625943 256 ❗️ 30 minutes left make sure you dont miss out today massive gains to be made 2018-04-15 17:30:40+00:00 1.0 1288625943 255 ❗️ 1 hour to go make sure you log in to your cryptopia account 20 minutes early 2018-04-15 17:00:46+00:00 1.0 1288625943 252 ⚠️ under 2 hours 15 minutes to go a quick to do list for new members 1 sign up to cryptopia 2 send btc to your cryptopia account 3 get familiar with the exchange search bar and buy sell order forms 4 be at your computer 20 minutes early open telegram and log in to cryptopia 5 wait for the signal to be posted at exactly 6pm gmt 6 buy in quickly sell out and cash in your profits ✅ read through the more detailed instructions above if its your first time 2018-04-15 15:35:30+00:00 1.0 1288625943 251 great news our next pump signal is scheduled date sunday the 15th of april time 600pm gmt exchange cryptopia potential of +300 raise make profits great again join up and share tmedonaldpumpcrypto 2018-04-14 02:26:27+00:00 1.0 1288625943 241 ⚠️ 2 minutes ❗️ the next message will show you the coin 2018-04-12 19:28:06+00:00 1.0 1288625943 234 ❗️ 2 hours left ⏰ you can set your alarm for 710pm gmt make sure you dont miss out today massive gains to be made 2018-04-12 17:31:56+00:00 1.0 1288625943 231 massive pump today thursday the 12th of april 730pm gmt exchange cryptopia huge gains at stake +300 increase tmedonaldpumpcrypto 2018-04-12 05:26:40+00:00 1.0 1288625943 227 stay tuned massive pump signal annoucement soon huge gains at stake +200400 increase exchange cryptopia tmedonaldpumpcrypto 2018-04-10 06:07:12+00:00 1.0 1288625943 214 ⚠️ 2 minutes the next message will show you the coin 2018-04-08 18:28:02+00:00 1.0 1288625943 207 ⚠️ schedule change ✅ we will be moving the signal 30 minutes forward to maximize the volume markets circumstances ❗️under 2 hours to go ⏰ the signal will now be posted at 630pm gmt set your alarm for 600pm gmt todays coin has a great raise and gains potential ✅ thousands of people will receive the signal generating a huge btc volume ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers read through our previous posts and get ready to close profits today 2018-04-08 16:39:51+00:00 1.0 1288625943 204 its almost time for our next crypto pump signal today huge profits potential of +300400 date sunday the 8th of april time 700pm gmt exchange cryptopia ✅ join up and share tmedonaldpumpcrypto 2018-04-07 13:27:24+00:00 1.0 1288625943 201 results coin xbc low 000375001 high 000800000 increase 113 not a bad smaller pump the first time we tried tuesday as a lot of you have been requesting more frequent pumps although we may do this again in the future for now we will stick to our usual schedule even though we expected a higher raise 113 is still a nice mid week earner we will be constantly growing the network and perfecting our strategies to bring you the best pump signals possible congratulations to everyone who participated and made some nice gains 2018-04-03 20:05:56+00:00 1.0 1288625943 193 ⚠️ 2 minutes ❗️ the next message will show you the coin 2018-04-03 18:43:01+00:00 1.0 1288625943 187 ❗️ 1 hour left ⏰ you can set your alarm for 620pm gmt todays coin has great buying opportunities read through our previous posts and get ready for today 2018-04-03 17:48:11+00:00 1.0 1288625943 184 ✅ great news we will be broadcasting our next pump signal exchange cryptopia date tuesday the 3rd of april time 645pm gmt more huge gains at stake 2018-04-01 19:57:26+00:00 1.0 1288625943 183 results coin hbc low 349 high 771 increase 120+ volume 3+btc nice work today team we kept it up nicely while the outside investors came in the volume was back up from last time and we are growing our network to bring you even stronger pump signals in the near future congratulations guys feedback donaldpumpadmin 2018-04-01 19:22:21+00:00 1.0 1288625943 172 ⚠️ 2 minutes ❗️ the next message will show you the coin 2018-04-01 18:43:02+00:00 1.0 1288625943 167 ❗️ under 30 minutes left todays coin has early buying opportunities thousands of people will receive the signal generating a huge volume ✅ after posting the signal it will be shared by influential social media profiles generating a delayed wave of buyers 2018-04-01 18:18:28+00:00 1.0 1288625943 166 ⚠️ only 1 hour left ⏰ make sure to log in 20 minutes early ✅ todays target 200 2018-04-01 17:46:56+00:00 1.0 1288625943 165 ❗️ under 3 hours left ⏰ you can set your alarm for 620pm gmt make sure you dont miss out massive gains to be made read through our previous posts and get ready for today 2018-04-01 15:48:29+00:00 1.0 1288625943 163 great news teammates we will be releasing our next signal on sunday this ones going to be huuge ✅ date time and place date sunday the 1st of april time 7pm gmt exchange cryptopia make sure you dont miss out massive gains are going to be made welcome to all our new members read through our previous posts and get ready for sunday 2018-03-29 22:49:29+00:00 1.0 1288625943 153 ⚠️ 2 minutes ❗️ the next message will show you the coin 2018-03-25 12:58:01+00:00 1.0 1288625943 149 ⚠️ under 1 hour left ⏰ make sure to log in 20 minutes early ✅ todays target 250 get ready for some massive profits contact donaldpumpadmin with any questions 2018-03-25 12:09:44+00:00 1.0 1288625943 147 ⚠️ 24 hours to go quick to do list ✅ 1 sign up to cryptopia 2 send btc to your cryptopia account 3 get familiar with the exchange search bar and buy sell order forms 4 be at your computer 20 minutes early open telegram and log in to cryptopia 5 wait for the signal to be posted at exactly 1pm gmt 6 buy quickly hold sell and cash in your profits 2018-03-24 13:02:58+00:00 1.0 1288625943 146 ✅ next pump signal announcement the next pump will be this sunday the 25th of march at 1pm gmt like we stated last week this sundays pump will be earlier than usual we are working on hosting pumps more frequently as a lot of you have requested stay tuned for more information date time and place date sunday the 25th of march time 100pm gmt exchange cryptopia 2018-03-23 22:36:53+00:00 1.0 1288625943 132 ⚠️ 2 minutes ❗️ the next message will show you the coin 2018-03-18 19:27:59+00:00 1.0 1288625943 127 ⚠️ only 1 hour left ⏰ make sure to log in 20 minutes early ✅ todays target 300 get ready for some serious gains 2018-03-18 18:32:51+00:00 1.0 1288625943 123 ❗️12 hours left here is the to do list in case you missed it 1 sign up at and have btc ready in your wallet it can take some time for the btc to arrive so make sure you send it in good time 2 get familiar with the cryptopia exchange practice entering values using the search bar and switching between different coins 3 at 730pm gmt on sunday the 18th of march we will post an image of the coin this is to avoid bots reading the plain text and placing buy orders before humanly possible 4 make sure you log into cryptopia 15 minutes early with your search bar ready and telegram open as soon as you see the picture on telegram enter the coins name into the search bar 5 quickly scroll down to the sell orders and click on an order higher than the current price click on your available btc balance and the possible buy amount will be calculated for you this will allow you to execute your buy order at the lowest asking price make sure you practice these steps as its important to buy quickly to maximize your profits 6 right after we announce the coin we will start promoting it attracting outside investors sometimes we will instruct you to hold for a short period it is very important to hold the coin until we instruct to sell this will allow us time to attract outside investors enabling our whole team to sell for big profits ps the signal will be shared on our network of channels 3000+ members total everyone will get the signal at exactly the same time contact donaldpumpadmin with any questions cryptopia exchange cryptocurrency trading forum and marketplace platform 2018-03-18 09:03:06+00:00 1.0 1288625943 121 okay so the votes are in and most you have voted for our regular time slot we have received a lot of messages requesting a slightly earlier time so weve decided to move it forward half an hour to 730pm gmt as a high percentage of the group prefer the 1pm slot we will schedule another pump for 1pm gmt next week we are very excited for tomorrow it is going to be huge make sure you are ready more details to follow date time and place ✅ date sunday the 18th of march time 730pm gmt exchange cryptopia 2018-03-17 18:06:31+00:00 1.0 1288625943 119 great news after some meticulous planning we are happy to announce that we will be carrying out our next pump on sunday the 18th of march after reviewing your feedback it appears that quite a few people would prefer a different gmt time to suit their schedule to honour your request we have decided to ask you guys to vote for the time that best suits you ✅ 2018-03-14 18:48:37+00:00 1.0 1243320279 1253 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact nathanjensen for premium membership 2020-09-01 03:59:07+00:00 1.0 1243320279 473 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact nathanjensen 2020-08-12 09:52:04+00:00 1.0 1243320279 386 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact nathanjensen for premium membership 2020-08-12 07:46:24+00:00 1.0 1243320279 371 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact nathanjensen for premium membership 2020-08-12 07:43:34+00:00 1.0 1243320279 136 15 minutes left to pump on binance 2020-08-10 01:58:41+00:00 1.0 1243320279 135 4 hour left to pump on binance to know coin name earlier join premium ☎ contact nathanjensen 2020-08-10 01:58:28+00:00 1.0 1243320279 113 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact nathanjensen 2020-08-10 01:52:05+00:00 1.0 1243320279 111 pump coin name gvt 2020-08-10 01:51:26+00:00 1.0 1243320279 110 15 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact nathanjensen 2020-08-10 01:51:16+00:00 1.0 1149375708 26218 dodo usdt binance onrequest being a new coin not much data on chart for mid term predictions 400 is a good level to watch a break out above 440 is something makes it interesting else the recent pump more looks like a fake pump to trap buyers and price more likely to retest 350 levels or even more so if i am holding this i would like to see it soon trading above 450to target prices above 725 2021-04-01 14:22:20+00:00 1.0 1149375708 25979 bitcoindominance as explained in previous post its more sideways then being bullish or bearish but i dont have much reasons to say its going to drop or pump so i would wait for it show some moves and have a clear direction 2021-03-01 10:26:55+00:00 1.0 1149375708 20415 ftt here we see a pump i always wants to see in alts looks like a real purpose stock has grown for a while no chance for late buyers i doubt it may not turn 30k as its support to continue going higher for second target of 375k this coin is new for me but i signalled it twice and its really pulling my attention to keep it on high priority for big volume trades like bnb 2020-03-12 11:43:10+00:00 1.0 1149375708 20143 ftt here we see a pump i always wants to see in alts looks like a real purpose stock has grown for a while no chance for late buyers i doubt it may not turn 30k as its support to continue going higher for second target of 375k this coin is new for me but i signalled it twice and its really pulling my attention to keep it on high priority for big volume trades like bnb 2020-03-02 19:56:28+00:00 1.0 1149375708 17746 bitcoindominance reached at a strong resistance level 7174 should play as resistance any pump above will really kill many alts however i dont think we would be going higher than this so either alts dominance increase with btc pump or btc consolidates here or nearby ranges and alts shows some growth so btc dominance can face a correction and btc price cankeep moving up 2019-08-10 02:27:48+00:00 1.0 1149375708 17033 totalmarketcapalts excluding btc updating it after 10 weeks and in these 10 weeks market has done around 100 and we have seen that as many alts have pumped with btc against usd pair but you should always be aware when usd pairs will pump and when alts i stopped updating it because you cant diffrenciate it through this chart so dont fall in wrong impression if somebody is telling you that alts agianst btc will pump or dump due to this chart 2019-07-12 19:04:28+00:00 1.0 1149375708 16761 eth btc binance bittrex last daily candle closed looks like gonna save the drop but where is the volume can we consolidate here and pump and it holds its 3 year support why its so importnat because if ethbtc does not hold this support and drops for more 50 people wont trust buying any other alts for now and that will cause another massive drop in other alts if you want your alts bag to pump pray ethbtc hold this level 2019-07-05 06:50:08+00:00 1.0 1149375708 16696 ren btc binance the only coin holding 61 correction support of previous pump even on btc pump is ren looks a coin to buy and hold 2019-07-03 08:14:07+00:00 1.0 1149375708 16594 ren btc binance the only coin holding 61 correction support of previous pump even on btc pump is ren looks a coin to buy and hold 2019-06-30 20:33:58+00:00 1.0 1149375708 16327 dont forget to tag me with your coin name only first 7 2019-06-21 17:50:36+00:00 1.0 1149375708 15744 maximum of small alts pump you are looking in market are just dcb relief rallies for me all coins are just pumping to retest the supports they broken to confirm them as a new resistance hence dont fall in trap dont buy alts thinking its the end of drop i will only start posting signals when i feel comfertable in the set up that any coin has reclaimed a broken support and its time for a n trend hoewwever there could be a few scalps in between but i am not buying it for moon for investers and holders its a different case and they can accumulate the dip 2019-05-10 14:19:38+00:00 1.0 1149375708 14912 evx btc binance idea rr is less than 2 for first target so i am not posting a signal but evx is a pump coin and it can pump from 1040 in single candle so for second and third target zone its a good buy you can even hold it for those targets rest you can use your ris management 2019-03-19 07:57:21+00:00 1.0 1149375708 14610 ae btc binance chart signal above dont understimate this slow coin to pump but pumps hard also has news next week in a good buy range to hold good luck 2019-03-07 13:23:17+00:00 1.0 1149375708 13469 bchabc btc bittrex binance hold buy below 0044 upto 00415 sell 15 00545 0063 0078 stop 0034 for holders else 0038 its in a very big cup handle where handle is a bull flag expect a big pump on breakout 2018-12-29 10:04:50+00:00 1.0 1149375708 13232 sc btc binance bittrex buy 6769 sell 77 85 90 stop 6566 looks like this time it can pump 2018-12-17 17:42:08+00:00 1.0 1149375708 12996 dnt looks like a single coin can make u rich did first target 3rd time and every time in 24 hrs and same 15 pump you can hold or place stop loss in profit and rebuy near 300 or below if sold 2018-12-01 13:15:50+00:00 1.0 1149375708 12873 btcusdt now i did not know you guys are gonna buy it so much that it will pump within an hour were you all waiting for my signal only haha 2018-11-29 09:35:51+00:00 1.0 1149375708 10786 bay btc bittrex hold buy 265 275 sell 330 380 440 480 stop 245 another selcetion for a hold trade all indicators are bullish will pump with volume you can hold for second third target for mid term short term can be 15 or first target 2018-10-16 08:50:30+00:00 1.0 1149375708 10734 now it is time for alts pump dnt go anywhere stay tuned with us price is cheaper right now if u have any doubt go and check recent history join premium for good alts signal wowitstony 2018-10-15 09:18:24+00:00 1.0 1149375708 8931 btc update so according to this chart we have 3 target zones atm for next 2 days as its an ascending wedge where i ignore xbt pump upto 7140 and consider the normal btc pump price 6860 as peak in last pump so now btc can hit strong resistance zobne of 6640 and drop but if we break upward we will hit 70007100 in this run and will drop back to the support which can or cannot be holded and drop can leads to 0786 fib level that is 60506100 and we can see a massive bullish pump from there lets hope for a bull run soon stay tuned with bestcryptosignals 2018-08-24 11:20:54+00:00 1.0 1149375708 8742 via signal here cp is near 13000 and 12000 is strong support good to buy and hold it will pump any day 2018-08-20 10:35:12+00:00 1.0 1149375708 5826 etc showed a nice pump and hit almost my second target 247k as i told you it has a long journey this month i would say if you are holding it good else if you want to buy this wait for today if we close daily candle above 221k this coin can give you good profits and can go to my third target 2018-06-12 10:37:04+00:00 1.0 1149375708 2364 in evening i posted results from first 15 days in free group now its time to post all the signals and accuracy from premium group hold on just 5 minutes and data from premium will be here get ready 2018-04-18 19:06:08+00:00 1.0 1149375708 401 be ready to fill ur bagnow altcoin gonna boost pump after 1 hour 2017-11-17 12:59:57+00:00 1.0 1149375708 112 some whales are coming in lgd may be this coin pump today 2017-10-25 10:36:57+00:00 1.0 1443434155 65104 flowbtc spread 300 buy flow coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00002167000 volume 3452 btc highest bid exchange binance price 00002232000 volume 2598 btc 2021-11-20 07:36:03+00:00 1.0 1443434155 64711 icxbtc spread 300 buy icx coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00000307090 volume 4583 btc highest bid exchange binance price 00000316300 volume 5230 btc 2021-11-08 19:08:03+00:00 1.0 1443434155 64343 icxbtc spread 300 buy icx coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00000349330 volume 2565 btc highest bid exchange binance price 00000359800 volume 8363 btc 2021-11-03 16:05:02+00:00 1.0 1443434155 64164 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000227000 volume 7113 btc highest bid exchange binance price 00000233800 volume 19759 btc 2021-11-01 03:45:02+00:00 1.0 1443434155 63792 icxbtc spread 300 buy icx coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00000328450 volume 4478 btc highest bid exchange binance price 00000338300 volume 2430 btc 2021-10-26 21:34:03+00:00 1.0 1443434155 63459 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000227000 volume 2095 btc highest bid exchange binance price 00000233800 volume 7084 btc 2021-10-14 20:10:03+00:00 1.0 1443434155 63448 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000230000 volume 2219 btc highest bid exchange binance price 00000236900 volume 5645 btc 2021-10-14 06:41:03+00:00 1.0 1443434155 63442 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000227000 volume 2348 btc highest bid exchange binance price 00000233800 volume 6011 btc 2021-10-14 03:17:03+00:00 1.0 1443434155 63431 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000227000 volume 2987 btc highest bid exchange binance price 00000233800 volume 7519 btc 2021-10-13 19:45:01+00:00 1.0 1443434155 63181 flowbtc spread 300 buy flow coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 00003769000 volume 8212 btc highest bid exchange okex price 00003882000 volume 3042 btc 2021-10-06 04:01:02+00:00 1.0 1443434155 61553 stxbtc spread 300 buy stx coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 00000293700 volume 5047 btc highest bid exchange okex price 00000302500 volume 4444 btc 2021-09-08 21:43:02+00:00 1.0 1443434155 61249 iotabtc spread 300 buy iota coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00000329230 volume 4502 btc highest bid exchange binance price 00000339100 volume 31946 btc 2021-09-07 06:58:01+00:00 1.0 1443434155 59721 icxbtc spread 300 buy icx coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00000253020 volume 3607 btc highest bid exchange binance price 00000260600 volume 4364 btc 2021-08-14 19:10:02+00:00 1.0 1443434155 59548 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000227000 volume 4233 btc highest bid exchange binance price 00000233800 volume 9654 btc 2021-08-12 19:55:02+00:00 1.0 1443434155 58965 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000217000 volume 2656 btc highest bid exchange binance price 00000223500 volume 4872 btc 2021-08-04 05:30:01+00:00 1.0 1443434155 58962 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000217000 volume 2606 btc highest bid exchange binance price 00000223500 volume 5021 btc 2021-08-04 03:29:01+00:00 1.0 1443434155 58440 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000200000 volume 3989 btc highest bid exchange binance price 00000206000 volume 7036 btc 2021-07-26 17:47:55+00:00 1.0 1443434155 58439 iotabtc spread 300 buy iota coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00000200000 volume 3863 btc highest bid exchange binance price 00000206000 volume 6920 btc 2021-07-26 16:46:55+00:00 1.0 1443434155 54436 gasbtc spread 300 buy gas coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 00002401000 volume 2282 btc highest bid exchange okex price 00002473000 volume 2506 btc 2021-06-08 13:50:56+00:00 1.0 1443434155 51378 elfbtc spread 300 buy elf coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00000077670 volume 4824 btc highest bid exchange binance price 00000080000 volume 7048 btc 2021-05-17 09:51:16+00:00 1.0 1443434155 44915 etcbtc spread 300 buy etc coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00002401000 volume 6746 btc highest bid exchange binance price 00002473000 volume 16306 btc 2021-04-04 12:56:05+00:00 1.0 1443434155 41893 nulsbtc spread 300 buy nuls coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 00000150000 volume 5491 btc highest bid exchange okex price 00000154500 volume 7483 btc 2021-03-12 03:26:04+00:00 1.0 1443434155 38042 avaxbtc spread 300 buy avax coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00009499000 volume 40888 btc highest bid exchange binance price 00009783800 volume 52515 btc 2021-02-13 13:59:04+00:00 1.0 1443434155 28367 thetabtc spread 300 buy theta coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 00000353400 volume 17055 btc highest bid exchange okex price 00000364000 volume 10925 btc 2020-11-22 08:45:03+00:00 1.0 1443434155 27636 egldbtc spread 300 buy egld coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 00004300000 volume 3297 btc highest bid exchange okex price 00004429000 volume 2307 btc 2020-11-20 10:43:02+00:00 1.0 1443434155 26893 cvpeth spread 300 buy cvp coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00038000000 volume 13873 eth highest bid exchange binance price 00039140000 volume 38017 eth 2020-11-17 18:52:03+00:00 1.0 1443434155 25091 yfibtc spread 300 buy yfi coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 05980800000 volume 54122 btc highest bid exchange okex price 06160000000 volume 38371 btc 2020-11-05 05:07:03+00:00 1.0 1443434155 25053 yfibtc spread 300 buy yfi coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 05912900000 volume 48103 btc highest bid exchange okex price 06090000000 volume 33882 btc 2020-11-04 22:48:02+00:00 1.0 1443434155 23774 egldbtc spread 300 buy egld coin on okex transfer coin to binance sell at a higher price with profit 300 lowest ask exchange okex price 00006340000 volume 6735 btc highest bid exchange binance price 00006530000 volume 12643 btc 2020-10-27 07:55:02+00:00 1.0 1443434155 18794 etcbtc spread 300 buy etc coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00005534000 volume 15132 btc highest bid exchange binance price 00005700000 volume 14030 btc 2020-09-01 03:52:03+00:00 1.0 1443434155 14632 xtzbtc spread 300 buy xtz coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00003166100 volume 5716 btc highest bid exchange binance price 00003261000 volume 148557 btc 2020-07-24 04:26:02+00:00 1.0 1443434155 14600 xtzbtc spread 300 buy xtz coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00003209800 volume 6830 btc highest bid exchange binance price 00003306000 volume 176369 btc 2020-07-23 21:42:03+00:00 1.0 1443434155 14289 xtzbtc spread 300 buy xtz coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00003107800 volume 8866 btc highest bid exchange binance price 00003201000 volume 110279 btc 2020-07-19 18:28:02+00:00 1.0 1443434155 14152 arkbtc spread 300 buy ark coin on binance transfer coin to okex sell at a higher price with profit 300 lowest ask exchange binance price 00000360200 volume 8470 btc highest bid exchange okex price 00000371000 volume 8282 btc 2020-07-17 19:47:03+00:00 1.0 1443434155 12427 xzcbtc spread 300 buy xzc coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00004901000 volume 3746 btc highest bid exchange binance price 00005048000 volume 11957 btc 2020-06-23 17:49:03+00:00 1.0 1443434155 12098 xtzbtc spread 300 buy xtz coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00002697200 volume 3412 btc highest bid exchange binance price 00002778000 volume 48440 btc 2020-06-16 00:35:02+00:00 1.0 1443434155 11224 xtzbtc spread 300 buy xtz coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00002821400 volume 2589 btc highest bid exchange binance price 00002906000 volume 70548 btc 2020-05-20 16:01:02+00:00 1.0 1443434155 9105 xtzbtc spread 300 buy xtz coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00003090300 volume 2641 btc highest bid exchange binance price 00003183000 volume 93971 btc 2020-03-01 13:41:03+00:00 1.0 1443434155 5781 iotabtc spread 300 buy iota coin on hitbtc transfer coin to binance sell at a higher price with profit 300 lowest ask exchange hitbtc price 00000270010 volume 41939 btc highest bid exchange binance price 00000278100 volume 16671 btc 2019-07-16 18:13:03+00:00 1.0 1443434155 2995 dashbtc spread 300 buy dash coin on binance transfer coin to bittrex sell at a higher price with profit 300 lowest ask exchange binance price 00178650000 volume 38517 btc highest bid exchange bittrex price 00184004800 volume 14849 btc 2019-05-15 09:59:01+00:00 1.0 1443434155 2329 rlcbtc spread 300 buy rlc coin on binance transfer coin to bittrex sell at a higher price with profit 300 lowest ask exchange binance price 00000884000 volume 22704 btc highest bid exchange bittrex price 00000910500 volume 2369 btc 2019-05-14 01:00:02+00:00 1.0 1443434155 855 omgbtc spread 100 buy omg coin on bitfinex transfer coin to binance sell at a higher price with profit 100 lowest ask exchange bitfinex price 00003079200 volume 2650 btc highest bid exchange binance price 00003110000 volume 27100 btc 2019-04-24 01:25:02+00:00 1.0 1443434155 840 zilbtc spread 100 buy zil coin on hitbtc transfer coin to binance sell at a higher price with profit 100 lowest ask exchange hitbtc price 00000036038 volume 1673 btc highest bid exchange binance price 00000036400 volume 64705 btc 2019-04-24 00:49:02+00:00 1.0 1443434155 757 nanobtc spread 100 buy nano coin on hitbtc transfer coin to binance sell at a higher price with profit 100 lowest ask exchange hitbtc price 00003340500 volume 2159 btc highest bid exchange binance price 00003374000 volume 138534 btc 2019-04-23 15:22:02+00:00 1.0 1299457190 19065 15 minutes left screens on and have btc ready 2021-11-14 14:45:02+00:00 1.0 1299457190 19063 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:02+00:00 1.0 1299457190 19059 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:00:03+00:00 1.0 1299457190 19052 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales our ready our team is ready… are you ready 2021-11-13 15:00:03+00:00 1.0 1299457190 19044 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:25:12+00:00 1.0 1299457190 19038 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:00:03+00:00 1.0 1299457190 19012 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:12:42+00:00 1.0 1299457190 18907 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 15:05:37+00:00 1.0 1299457190 18829 15 minutes left screens on and have btc ready 2021-10-14 14:45:57+00:00 1.0 1299457190 18827 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:06:30+00:00 1.0 1299457190 18825 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:36+00:00 1.0 1299457190 18815 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:33:52+00:00 1.0 1299457190 18263 gem coin coin name ygg exchange uniswap contract address 0x25f8087ead173b73d6e8b84329989a8eea16cf73 buy area 15 to 22 hold long term for huge gain 2021-08-10 11:36:28+00:00 1.0 1299457190 17150 gem coin exchange uniswap coin name bcug contract address 0x14da7b27b2e0fedefe0a664118b0c9bc68e2e9af buy area 12 to 15 hold this until i say to sell 2021-03-28 09:58:39+00:00 1.0 1299457190 17027 gem coin exchange uniswap coin name geodb contract address 0x147faf8de9d8d8daae129b187f0d02d819126750 buy area 1 to 11 hold this until i say to sell 2021-03-20 08:48:18+00:00 1.0 1299457190 16268 titanium alt binance top gainer 500+ hope u guys are as excited as we are but gotta wait for 1 more hr today | 5 pm gmt 2021-01-18 16:00:13+00:00 1.0 1299457190 16267 hope u guys did not forget about our todays titanium alt signal yeah time is flying but need to wait for few more hrs the global fomo is about to come less than 3 hrs remaining today | 5 pm gmt 2021-01-18 14:00:13+00:00 1.0 1299457190 16251 hey guys its the day today for our titanium alt signal there will very big volume coming in today into our titanium alt this one is gonna rise 300 500 u will see it the biggest alt signals of all time is coming about 12 hrs remaining today | 5 pm gmt 2021-01-18 05:01:50+00:00 1.0 1299457190 16250 next titanium alt is coming today 5 pm gmt we can say the next titanium alt is going to be huge bcoz this is freaking alt season alts rising 50 80 within days so our today titanium alt is going to rise 500+or not we will see time will tell see you all today 5 pm gmt with our titanium alt signal 2021-01-17 19:12:03+00:00 1.0 1299457190 14734 just below 15 mins remaining folks login your binance account be ready with spare btc 4 pm gmt 2020-09-08 15:46:10+00:00 1.0 1299457190 14733 the mountain alt is about to come barely 1 hr remaining stay alert today | 4 pm gmt 2020-09-08 15:00:33+00:00 1.0 1299457190 14732 the market is looking very crazy today as btc is recovering so alts are recovering hard too wait for 3 more hrs then we gonna reveal the big mountain alt exchange binance today | 4 pm gmt 2020-09-08 13:00:21+00:00 1.0 1299457190 14725 clock is running faster cant wait to share the mountain signal with you guys expected targets 100200 cheer up just below 6 hrs remaining today | 4 pm gmt 2020-09-08 10:02:33+00:00 1.0 1299457190 13007 just about 10 mins guys the mountain alt signal is on the way market is doing great today the fomo will be attractive the next post will be name of the mountain alt coin stay online folks 2020-06-10 15:50:17+00:00 1.0 1299457190 13005 the mountain alt or shall we call it the next binance top gainer is just about to arrive last mountainalt not enough right todays one can get to 250easily exchange binance about 1 hr remaining today | 4 pm gmt 2020-06-10 15:00:28+00:00 1.0 1299457190 13004 alts are making savage moves in this alt season so our mountain alt will do the same todays mountain alt is going to see 250 growth with massive fomo exchange binance 3 hrs remaining today | 4 pm gmt 2020-06-10 13:00:29+00:00 1.0 1299457190 13003 the clock is running faster guys hope you ready for this the mountain alt is cominggg the last mountain alt had major fomo and reached binance top gainer what to expect todayyes 250 strong gainer exchange binance about 6 hrs left today | 4 pm gmt 2020-06-10 10:00:48+00:00 1.0 1299457190 12997 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this todays mountain alt is gonna see 250 growth less than 12 hrs to see the mountain alt today | 4 pm gmt 2020-06-10 04:19:01+00:00 1.0 1299457190 12950 hey folks guess whats coming today yes guess it the mountain alt our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 ctxc 》220 《 xxx 》will it go for 200++ but its coming with a different strategy to kill bot traders today mountain will be shared within 4 5 pm gmt between this 1 hr anytime wake up mountain alt | 4 5 pm gmt 2020-06-08 04:01:45+00:00 1.0 1299457190 12939 good day traders you know what time it is time for yet another mountain alt signal but this time with bit different strategy what is it this time the mountain alt wont come at a fixed time it will come within 4 5 pm gmt you need to stay online and alert in this 1 hr time trading bots wont be able to catch this time our signal its coming mon jun 8th | 4 5 pm gmt mountain alt 2020-06-07 06:47:02+00:00 1.0 1299457190 12871 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:17+00:00 1.0 1299457190 12870 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:24+00:00 1.0 1299457190 12862 have you set the timer yet bcoz its the day for mountain alt signal ong went for 108 via went for 188 can todays mountain alt hit 250 12 hrs remaining today | 4 pm gmt 2020-06-03 04:03:46+00:00 1.0 1299457190 12852 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 04:06:58+00:00 1.0 1299457190 12788 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 16:00:18+00:00 1.0 1299457190 12786 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:40+00:00 1.0 1299457190 12785 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:35+00:00 1.0 1299457190 12784 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:01:18+00:00 1.0 1299457190 12335 just about 1 hr30 minutes guys market is doing great today the fomo will be attractive 400 pm gmt rockbottomwhalesignal 2020-04-29 14:34:28+00:00 1.0 1299457190 12333 hey guys stay alert its about 3 hours 30 min remaining for our rock bottom whale signal the fomo is getting warm in alt market 400 pm gmt rockbottomwhalesignal 2020-04-29 12:33:39+00:00 1.0 1299457190 12014 attention as always we are going to see this on binance top gainer list with great volume only 1hours left 400pm1600 gmt for rock bottom whale signal target 70 100 2020-04-04 15:05:17+00:00 1.0 1299457190 11907 rlcbtc new update strong support level 44004600 satoshi so buy and hold till 80 target dont sell guys if you want to huge profit so buy and hold strategy is very good for now remember target 80 so buy and hold 2020-03-27 16:02:27+00:00 1.0 1299457190 11902 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 16:00:22+00:00 1.0 1299457190 11901 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:57:22+00:00 1.0 1299457190 11812 less than 05 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2020-03-24 15:56:34+00:00 1.0 1299457190 11794 alright folks here is another rock bottom whale signal details this signal will come on 24nd mar at 400 pm gmt alts are going good as btc is stable above 65k keep the date and time in mind mar 24 | 400 pm gmt today 2020-03-24 03:39:58+00:00 1.0 1299457190 11770 alright folks here is another rock bottom whale signal details this signal will come on 22nd mar at 400 pm gmt alts are going good as btc is stable above 6k keep the date and time in mind mar 22 | 400 pm gmt 2020-03-21 17:07:41+00:00 1.0 1299457190 11727 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 1 hours 5 min left 400pm1600 gmt 2020-03-19 14:56:07+00:00 1.0 1299457190 11726 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours left 400pm1600 gmt 2020-03-19 14:03:57+00:00 1.0 1299457190 11725 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours 45min left 400pm1600 gmt 2020-03-19 13:18:02+00:00 1.0 1299457190 11623 ❗️❗️alert many of u participated in pump which happen recently the coin was via many of earned and many loose it is adviced to all members pump is risky so participitate only if u want to take risk 2020-03-07 02:48:02+00:00 1.0 1299457190 11350 pump date set 10 feb 2020 2000 gmt +0 pumprankedbot 2020-02-10 08:32:59+00:00 1.0 1299457190 11284 what an amazing pump 5 minutes it went up non stop now consolidates at new level of 1500+ might see another leg up as our whales from cryptocoinswaves are helping while btc is dumping rebuy zone to those who asked 14001500 zone targets 1700 1880 2000 2200 make sure to be first and get yourself a quick 30 profit next time by joining your friends 2020-02-01 13:50:11+00:00 1.0 1299457190 11282 what a great pump by our bot cryptocoinswaves whales are helping now to pump it higher in the next 24 hours from 1350 to 1700 first binance gainer can we see 50 coming to get the coin name earlier next time make sure to start pumprankedbot and invite friends 2020-02-01 13:22:14+00:00 1.0 1299457190 11280 4 minutes left for our mega pump event ‼️ next post is coin name in a picture to avoid bots also it will show current price before pump was started 2020-02-01 12:56:19+00:00 1.0 1299457190 11278 pump bot less than 30 minutes left for our mega pump event ‼️ to get ranked and enjoy coin name few seconds earlier start our bot pumprankedbot dont miss 50100 profit chance guys ‼️ 2020-02-01 12:30:34+00:00 1.0 1299457190 11276 flash pump alert 1 hour left ‼️ its not too late to get ranked via our bot pumprankedbot make sure to buy fast as possible we expect big pump event 2020-02-01 12:00:59+00:00 1.0 1299457190 11275 flash pump alert less than 2 hours left ‼️ pump event will take place via pumprankedbot binance pump bot 1st february 1300 pm gmt + 0 on binance exchange make sure to be ready with free btc we expect to see 50100 pump 2020-02-01 11:01:39+00:00 1.0 1299457190 10837 there will be strong technical analysis signal coming today watch out stay online today between 330 pm gmt 430 pm gmt massive fomo will appear and will be on top of binance target is 80 100 2019-12-04 09:26:04+00:00 1.0 1299457190 10550 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:08:42+00:00 1.0 1299457190 10498 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:34:25+00:00 1.0 1299457190 10497 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:33:43+00:00 1.0 1299457190 10477 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:37+00:00 1.0 1299457190 10470 ❇ its about the push hodl signal ❇ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 06:58:12+00:00 1.0 1299457190 10456 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:10:33+00:00 1.0 1299457190 10088 our next pump will happen soon still u can join vip to know the coin name before pump contact drcryptoexpert 2019-09-20 13:06:15+00:00 1.0 1299457190 10079 to get coin name before the pump join premium channel where coin is shared first to join contact drcryptoexpert 2019-09-19 18:14:39+00:00 1.0 1299457190 10073 coin name ongbtc exchange binance 2019-09-19 17:00:24+00:00 1.0 1299457190 10072 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:48+00:00 1.0 1247729038 4085 next will be coin name be ready 2021-10-30 04:18:41+00:00 1.0 1247729038 4061 pivx chart is very bullish right now im preparing chart and send in 1 minutes meanwhile buy pivx before it pump really hard 2021-10-24 16:02:57+00:00 1.0 1247729038 4055 next post will be pump coin name 2021-10-24 15:56:13+00:00 1.0 1247729038 4054 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 23 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 15:39:22+00:00 1.0 1247729038 4053 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership regards 2021-10-24 15:00:46+00:00 1.0 1247729038 4052 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership pinourchannelontop 2021-10-24 12:58:40+00:00 1.0 1247729038 4051 attention guys 5 hours biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 10:53:05+00:00 1.0 1247729038 4050 attention guys 11 hours 30 mint left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 05:10:50+00:00 1.0 1247729038 4049 attention guys 11 hours 30 mint left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 04:35:59+00:00 1.0 1247729038 4048 2 days left until the biggest pump event of all time be prepared • date sunday october 24 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-10-22 15:13:05+00:00 1.0 1247729038 4042 attention guys we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 24 october 2021 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-21 07:18:20+00:00 1.0 1247729038 3953 ⚡️⚡️ cotiusdt ⚡️⚡️ coti just breaking out of the falling wedge pattern looks very bullish here like our previous signals we are expecting this coin to pump very hard 2021-10-05 04:40:38+00:00 1.0 1247729038 3885 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-10-02 13:14:15+00:00 1.0 1247729038 3850 next will be coin name be ready 2021-10-01 07:13:03+00:00 1.0 1247729038 3807 next will be coin name be ready 2021-09-29 10:22:39+00:00 1.0 1247729038 3738 next will be coin name be ready 2021-09-19 11:35:31+00:00 1.0 1247729038 3711 next will be coin name be ready 2021-09-16 10:52:29+00:00 1.0 1247729038 3693 next will be coin name be ready 2021-09-15 07:21:14+00:00 1.0 1247729038 3671 next will be coin name be ready 2021-09-12 12:59:34+00:00 1.0 1247729038 3615 next will be coin name be ready 2021-09-06 09:56:03+00:00 1.0 1247729038 3591 next will be coin name be ready 2021-09-03 05:58:49+00:00 1.0 1247729038 3583 next will be coin name be ready 2021-09-02 06:51:49+00:00 1.0 1247729038 3540 next will be coin name be ready 2021-09-01 03:50:02+00:00 1.0 1247729038 3534 next vip titanic pump signal is coming soon in 15 30 mins stay tuned 2021-08-31 14:32:08+00:00 1.0 1247729038 3522 next will be coin name be ready 2021-08-30 13:55:43+00:00 1.0 1247729038 3495 next will be coin name be ready 2021-08-29 10:41:52+00:00 1.0 1247729038 3482 next will be coin name be ready 2021-08-29 09:31:15+00:00 1.0 1247729038 3452 next will be coin name be ready 2021-08-28 14:00:10+00:00 1.0 1247729038 3440 next will be coin name be ready 2021-08-28 12:37:27+00:00 1.0 1247729038 3379 i will give you coin pump in 30 mins it will pump hard stay tuned 2021-08-25 13:36:18+00:00 1.0 1247729038 3351 12 hours left coin name will be disclosed soon date tuesday august 24 2021 today time 4gmt exchange hotbit exchange ✅join this channel for big pump 2021-08-25 05:01:58+00:00 1.0 1247729038 3318 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 1hours 15 minutes open your binance future account and stay online ✅ 2021-08-23 12:45:41+00:00 1.0 1247729038 3288 special attention you have 45 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 45 mins left there we go 2021-08-22 12:17:52+00:00 1.0 1247729038 3263 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-22 07:30:36+00:00 1.0 1247729038 3236 special attention you have 25 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 25 mins left there we go 2021-08-21 16:05:04+00:00 1.0 1247729038 3150 special attention you have 25 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 25 mins left there we go 2021-08-17 04:35:21+00:00 1.0 1247729038 3149 special attention you have 25 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 25 mins left there we go 2021-08-17 04:34:57+00:00 1.0 1247729038 3131 all my signal get boom get ready for a big boom today it will pump hard by whales i will send in 10 minutes 2021-08-16 17:32:16+00:00 1.0 1247729038 3113 next will be coin name be ready 2021-08-16 15:58:26+00:00 1.0 1247729038 3099 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 10 minutes open your binance future account and stay online ✅ 2021-08-16 14:25:28+00:00 1.0 1247729038 3069 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-14 14:31:04+00:00 1.0 1247729038 3057 dear everyone pump annoucement exchange binance international date 14082021 saturday time 2 gmt the market condition for a pump is more than perfect lots of new people getting into crypto keep inviting ❤️ 2021-08-13 21:18:17+00:00 1.0 1247729038 3028 attention guys 45minutes left biggest special pump signal is coming today we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance 2021-08-11 13:14:40+00:00 1.0 1247729038 2974 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-06 13:15:29+00:00 1.0 1247729038 2966 30 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-08-05 16:18:16+00:00 1.0 1247729038 2964 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-05 15:00:45+00:00 1.0 1247729038 2940 4 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-08-02 16:06:26+00:00 1.0 1247729038 2881 5 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-07-25 15:43:36+00:00 1.0 1247729038 2878 4 hours 30 minutes remaining until the big pump on binance 2021-07-25 11:30:23+00:00 1.0 1247729038 2875 the day has arrived 12 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 300 target this time possibly even higher if we can manage to do 40 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-25 04:01:11+00:00 1.0 1247729038 2850 next will be coin name be ready 2021-07-23 15:58:19+00:00 1.0 1247729038 2835 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 400 gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-07-22 17:30:40+00:00 1.0 1247729038 2833 exchange binance keep 30 mint time update buy signal looking great on keep chart bullish pennant printeding on zrx breaking out looks so bullish we are looking very well in the short term long it 2021-07-22 16:03:40+00:00 1.0 1247729038 2832 exchange binance keep 30 mint time update buy signal looking great on keep chart bullish pennant printeding on zrx breaking out looks so bullish we are looking very well in the short term long it 2021-07-22 16:02:55+00:00 1.0 1247729038 2829 next will be coin name be ready 2021-07-22 15:59:29+00:00 1.0 1247729038 2814 next will be coin name be ready 2021-07-21 16:00:50+00:00 1.0 1247729038 2813 30 minutes remaining until the big pump on binance 2021-07-21 15:31:37+00:00 1.0 1247729038 2808 4 hours 23 minutes remaining until the big pump on binance 2021-07-21 11:37:26+00:00 1.0 1247729038 2800 attention guys 11hours 35 minutes left biggest special pump signal is coming today we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 21 th july time 4 gmt advantage free for all 2021-07-21 04:25:07+00:00 1.0 1247729038 2702 next post will be pump coin name 2021-07-13 15:55:45+00:00 1.0 1247729038 2700 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays breakout coin the coin name will come as an image and text 2021-07-13 15:32:08+00:00 1.0 1247729038 2698 1 hours 30 minutes remaining until the big pump on binance 2021-07-13 14:30:04+00:00 1.0 1247729038 2694 pmup announcement ◽️date 1372021 ◽️time 4 gmt ◽️exchange binancecom ◽️advantage 200 advantages coin before pump 5 minutes 2021-07-13 08:55:52+00:00 1.0 1247729038 2686 buy dip and dont sell early target 100200 whales starting pump now 2021-07-11 16:03:09+00:00 1.0 1247729038 2679 30 minutes remaining until the big pump on binance 2021-07-11 15:30:04+00:00 1.0 1247729038 2676 only 3 hours left for our special signals special signal event is expected to go 200400 sell your alts be ready with spare usdt special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership pinourchannelontop 2021-07-11 13:00:20+00:00 1.0 1247729038 2673 attention guys 7hours left biggest special pump signal is coming today we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-11 09:00:03+00:00 1.0 1247729038 2671 attention guys 21 hours 30 minutes left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-10 18:28:30+00:00 1.0 1247729038 2656 attention guys 45 hours 15 minutes left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-09 18:14:45+00:00 1.0 1247729038 2643 3 days left until the biggest pump signal of all time on binance in a few days we will be posting more information in order to be prepared for the pump 2021-07-08 16:32:13+00:00 1.0 1247729038 2618 special pump announcement special mega signals ⛅️ we have special futures signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday july 11th • goal 500800 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 1 minutes ago on vip channel 2021-07-06 17:44:38+00:00 1.0 1247729038 2590 6 days remaining until the big pump on binance 2021-07-05 14:03:31+00:00 1.0 1247729038 2485 pump announcement hello everyone the next official pump will be scheduled for date sunday june 27 time 400 gmt exchange binance this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-06-24 04:46:12+00:00 1.0 1247729038 2390 pump announcement hello everyone the next official pump will be scheduled for date sunday june 20 time 1700 pm gmt exchange binance 2021-06-13 18:11:12+00:00 1.0 1247729038 2300 next post will be pump coin name 2021-05-30 15:57:07+00:00 1.0 1247729038 2299 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop 2021-05-30 13:03:31+00:00 1.0 1247729038 2290 attention guys 23 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 30th may time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-29 17:21:29+00:00 1.0 1247729038 2286 pump announcement hello everyone the next official pump will be scheduled for date sunday may 30 time 1600 pm gmt exchange binance advantage special mega pump signal coin name will be received 5 minutes ago on vip channel with our volumes averaging 100200 btc per pump and peaks reaching up to 100200 we are ready to announce our next big pump we have 2 days to prepare for this pump as mentioned above we will be targeting at the very least 100200+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching stay tuned 2021-05-28 05:44:01+00:00 1.0 1247729038 2227 attention guys 315 hours left we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-23 12:48:09+00:00 1.0 1247729038 2226 attention guys 9 hours left we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-23 08:00:02+00:00 1.0 1247729038 2219 attention guys 24 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-22 16:00:19+00:00 1.0 1247729038 2214 special pump announcement special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday may 23th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-21 17:02:18+00:00 1.0 1247729038 2037 dlt chart is very bullish right now im preparing chart and send in 1 minutes meanwhile buy dlt before it pump really hard 2021-05-03 16:01:50+00:00 1.0 1247729038 2034 next post will be pump coin name 2021-05-03 15:54:35+00:00 1.0 1247729038 2033 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-03 15:31:56+00:00 1.0 1247729038 2032 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership regards 2021-05-03 15:01:08+00:00 1.0 1247729038 2031 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop 2021-05-03 13:01:55+00:00 1.0 1247729038 2030 hey guys stay alert less than 6 hours left for special pump remember special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal sell your alts be ready with spare btc for quick profit on mega pump signal the fomo is getting warm in alt market 4 pm gmt 2021-05-03 10:01:15+00:00 1.0 1247729038 2029 ‍♀ attached guys ‍♂ 10 hours left until our mega signal special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-03 06:00:05+00:00 1.0 1247729038 2028 ‍♀ attached guys ‍♂ 24 hours left until our mega signal special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-02 16:03:27+00:00 1.0 1247729038 2024 special pump announcement special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-01 14:53:34+00:00 1.0 1247729038 2022 heavy pump alert❗️ date 3th may ⏱ time 4 00 gmt exchange binance 2021-05-01 03:12:51+00:00 1.0 1247729038 2010 exchange binance spot pivx update buy signal 4hours x 2 days time frame update pivx chart is super bullish now • bullish pennant on 12 hours timeframe • breaking out of the pennant resistance • we like pivx on all lovely traders also fomo pump coming soon price holding above ema ribbon support as well • 2 days time frame update pivx has broken the down trend resistance and started an uptrend as shown in chart on 4 he time pivx always bouncing after touching uptrend channel line as shown in chart now pivx is touching uptrend channel line again and it will pump hard this time with the help of our team buy pivx while my team is preparing pivx pump 2021-04-30 16:00:37+00:00 1.0 1247729038 2008 15 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit next post will be strong ta call 2021-04-30 15:45:10+00:00 1.0 1247729038 2007 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 15:30:03+00:00 1.0 1247729038 2006 1 hour left until the strong ta call todays strong ta call will be biggest till date this means that the coin signal will be at the exact same time for everyone expected spike 6080 note coin will be posted in picture to avoid bots special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 15:00:58+00:00 1.0 1247729038 2005 only 2 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership pinourchannelontop 2021-04-30 14:01:53+00:00 1.0 1247729038 2004 our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 3 hours left until strong ta signal ‼️ special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 13:00:30+00:00 1.0 1247729038 2000 hey guys stay alert less than 6 hours left for special pump remember special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal sell your alts be ready with spare btc for quick profit on mega pump signal the fomo is getting warm in alt market 4 pm gmt 2021-04-30 09:59:10+00:00 1.0 1247729038 1995 hey guys only about 12 hours left hope u ready for this massive special pump event get your binance accounts ready with spare btc this special pump signal will also be promoted in twitter date 30th april time 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 03:59:20+00:00 1.0 1247729038 1994 attention guys 24 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 30th april time 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-29 16:12:29+00:00 1.0 1247729038 1989 2 days left until the biggest pump event of all time be prepared • date friday april 30 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-04-28 16:01:13+00:00 1.0 1247729038 1988 hey guys we are excited to announce that we are bringing a different type of signal called as special beast alt this special beast signal will be posted here on this coming friday april 30th expected target 100200 this one will be best of these above wait for monday exchange binance special beast alt 30th april | 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel pinnedourchannelontop stayturned 2021-04-27 13:22:13+00:00 1.0 1247729038 1975 4 days remaining until our big pump on binance more information about our upcoming pump will follow in the next few days 2021-04-21 14:46:51+00:00 1.0 1247729038 1971 5 days left until our big pump on binance 2021-04-20 08:35:00+00:00 1.0 1247729038 1952 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 25 time 4pm gmt exchange binance we have 10 days to prepare for this pump 2021-04-15 17:00:14+00:00 1.0 1247729038 914 next post will be pump coin name 2020-07-22 15:56:44+00:00 1.0 1247729038 913 we are going to tell you a vip mega coin at 4 pm gmt those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 30 min left 2020-07-22 15:34:27+00:00 1.0 1247729038 912 our dear members 1 hours left today will be the best and the safest pump we are nearly ready are you regards 2020-07-22 15:00:56+00:00 1.0 1247729038 911 3 hours 30 minutes left for pump mega pump mega pump time 4pm gmt i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership 2020-07-22 12:32:14+00:00 1.0 1247729038 910 10 hours left for pump i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership 2020-07-22 06:54:31+00:00 1.0 1247729038 909 12 hours left for mega pump 2020-07-22 03:46:53+00:00 1.0 1247729038 908 18 hours left for mega pump 2020-07-21 21:25:16+00:00 1.0 1247729038 904 24 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-21 16:05:19+00:00 1.0 1247729038 894 32 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-21 09:08:20+00:00 1.0 1247729038 882 48 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-20 16:32:28+00:00 1.0 1247729038 871 pump announcement hello everyone the next official pump will be scheduled for date wednesday july 22 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 3 days to prepare for this pump share our group on social media and invite everyone you 2020-07-20 05:09:47+00:00 1.0 1247729038 868 pump announcement hello everyone the next official pump will be scheduled for date wednesday july 22 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 4 days to prepare for this pump share our group on social media and invite everyone you 2020-07-19 13:56:47+00:00 1.0 1247729038 801 5 minutes left boom coin 2020-07-14 10:41:28+00:00 1.0 1247729038 800 boom coin be ready with your binance account boom coin 1030 profit 1 hour left ⏰ be ready guys we will post coin name 10 minutes early in vip pinourchanneltotop staytuned 2020-07-14 09:28:06+00:00 1.0 1247729038 776 pump scheduled date 13th july ⏱ time 400 pm gmt exchange binance 2020-07-12 18:59:03+00:00 1.0 1247729038 750 next post will be pump coin name 2020-07-10 15:50:18+00:00 1.0 1247729038 749 we are going to tell you a vip mega coin at 4 pm gmt which target is 5080 those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 30 min left 2020-07-10 15:29:54+00:00 1.0 1247729038 748 our dear members 1 hours left today will be the best and the safest pump we are nearly ready are you regards 2020-07-10 14:58:21+00:00 1.0 1247729038 746 3 hours left for mega pump 2020-07-10 12:56:52+00:00 1.0 1247729038 744 5 hours left for mega pump join us and coin name get it now 2020-07-10 11:03:40+00:00 1.0 1247729038 740 8 hours left for pump i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership pmofficialcryptowheals 2020-07-10 08:09:17+00:00 1.0 1247729038 731 11 hours left for mega pump 2020-07-10 04:59:09+00:00 1.0 1247729038 728 24 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-09 16:22:36+00:00 1.0 1247729038 720 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 2 days to prepare for this pump share our group on social media and invite everyone you 2020-07-09 04:54:39+00:00 1.0 1247729038 703 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 2 days to prepare for this pump share our group on social media and invite everyone you 2020-07-08 05:09:30+00:00 1.0 1247729038 696 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 3 days to prepare for this pump share our group on social media and invite everyone you 2020-07-07 16:20:56+00:00 1.0 1247729038 686 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 2 days to prepare for this pump share our group on social media and invite everyone you 2020-07-07 08:11:29+00:00 1.0 1247729038 606 dear members 2 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you 2020-07-02 14:01:11+00:00 1.0 1247729038 605 vip 1 hour 30 minutes free 2 hours 30 minutes 2020-07-02 13:26:09+00:00 1.0 1247729038 604 are you online today you better be bcoz only 5 hrs remaining for the mountain alt signal 44 30 pm gmt 2020-07-02 11:31:18+00:00 1.0 1247729038 603 hey folks today at 44 30 pm gmt our whales will push a strong tafa based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 1030 hours left until the most awaiting strong tafa call backed by our whales‼️ 2020-07-02 06:00:15+00:00 1.0 1247729038 600 pump scheduled date 2nd july ⏱ time 443 pm gmt exchange binance coin name will be posted on vip channel 1 hours earlier this time interested people contact me ☎️ officialcryptowheals 2020-07-01 18:22:38+00:00 1.0 1396461633 3720 there will be strong technical analysis signal coming today watch out stay online today between 330 pm gmt 430 pm gmt massive fomo will appear and will be on top of binance target is 80 100 2019-12-04 09:25:01+00:00 1.0 1396461633 3549 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:09:45+00:00 1.0 1396461633 3493 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:34:23+00:00 1.0 1396461633 3468 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:17+00:00 1.0 1396461633 3462 ❇ its about the push hodl signal ❇ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 06:58:50+00:00 1.0 1396461633 3458 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:10:36+00:00 1.0 1396461633 3426 sngls on binance ‼️ ❇️ chart looks so sexy for a pump ❇️ caught trendline support much more bullishness once brokenout will pump hard buy 133 140 satoshi sell 148 | 155 | 170 | 190 | 220 stoploss below 130 satoshi 2019-10-14 17:40:13+00:00 1.0 1396461633 3325 poa on binance looks ready to breakout the pattern ❇️ buy some and wait for huge pump ❇️ buy 175185 sell 200 | 225 | 250 | 300+ stoploss 5 2019-09-28 10:57:48+00:00 1.0 1396461633 3306 coin name ongbtc exchange binance 2019-09-19 17:00:28+00:00 1.0 1396461633 3305 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:52+00:00 1.0 1396461633 3301 ready to join the global hodl team well you must be were sure that the global fomo will enter in our most waited binanceblastingsignal cheers only 4 hours 15 minutes left 2019-09-19 12:43:31+00:00 1.0 1396461633 3299 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:57:01+00:00 1.0 1396461633 3271 next post will be coin name log in binance ‼️ 2019-08-22 15:57:49+00:00 1.0 1396461633 3270 5mins more to go we gonna reveal the name of our pump coin its your time to make huge profits within few minutes kind request ✅ plz dont put a sell bid instantly after buying ✅ buy hold for lil time sell at market price your sell bid will restrict our coin to pump more more 2019-08-22 15:54:42+00:00 1.0 1396461633 3267 only 6hrs left for the pump we expect huge from this pump since alts market is green btc is stable lets moon today 2019-08-22 10:02:03+00:00 1.0 1396461633 3262 pump announcement hey folks the next pump is scheduled on 22 august 2019 time 4 pm gmt exchange binance lets make it huge 2019-08-21 16:31:08+00:00 1.0 1396461633 3253 login binance ‼️ next post would be coin name 2019-08-19 15:58:31+00:00 1.0 1396461633 3252 10 mins more we gonna reveal the name of our pump coin its your opportunity kind request plz dont put a sell bid instantly after buying buy hold for lil time sell at market price your sell bid will restrict our coin to pump more more 2019-08-19 15:50:03+00:00 1.0 1396461633 3250 be ready guys just 1 hour is left its time to make heavy profits ✅ the pump is free for all the coin will be shared based on ta news factor ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well share it with your friends other crypto groups let the hype spread ‼️ 2019-08-19 15:00:26+00:00 1.0 1396461633 3243 pump announcement date august 19th ⏱ time 4 pm gmt 930 pm ist exchange hey subs ‼️ we our partners we are going to schedule a pump on binance this pump is free for all no one would receive the coin name earlier not even our vips ie no prepump all will get the coin name on same time collectively we gonna held this pump with other 200k members we expect it to go as high as possible you just need to buy hold for few minutes exit with heavy profits this fomo be gonna be real 2019-08-18 10:27:00+00:00 1.0 1396461633 2829 elf on binance ‼️ elf is having an awesome bouncing support available at 4150 satoshi from where it has bounced 4 times earlier once it breaksout it will pump harder best buy 4150 satoshi selling targets 5 | 10 | 15 2019-03-22 05:37:13+00:00 1.0 1312794873 6882 new futures signal in 5 minutes stay tuned 2022-01-16 03:05:29+00:00 1.0 1312794873 6849 new futures signal in 5 minutes stay tuned 2022-01-15 03:55:59+00:00 1.0 1312794873 6828 new futures signal in 5 minutes stay tuned 2022-01-14 02:50:01+00:00 1.0 1312794873 6636 new futures signal in 5 minutes stay tuned 2022-01-07 12:30:01+00:00 1.0 1312794873 6409 new futures signal in 5 minutes stay tuned 2021-12-30 03:30:01+00:00 1.0 1312794873 6264 new futures signal in 5 minutes stay tuned 2021-12-25 07:25:01+00:00 1.0 1312794873 6095 new futures signal in 5 minutes stay tuned 2021-12-21 09:35:01+00:00 1.0 1312794873 6003 new futures signal in 5 minutes stay tuned 2021-12-19 12:15:29+00:00 1.0 1312794873 5945 new futures signal in 5 minutes stay tuned 2021-12-17 11:05:53+00:00 1.0 1312794873 5940 new futures signal in 5 minutes stay tuned 2021-12-16 09:45:01+00:00 1.0 1312794873 5884 new futures signal in 5 minutes stay tuned 2021-12-12 12:00:01+00:00 1.0 1312794873 5850 new futures signal in 5 minutes stay tuned 2021-12-11 13:00:01+00:00 1.0 1312794873 5704 new futures signal in 5 minutes stay tuned 2021-12-04 01:30:02+00:00 1.0 1312794873 5692 new futures signal in 5 minutes stay tuned 2021-12-03 08:25:48+00:00 1.0 1312794873 5675 new futures signal in 5 minutes stay tuned 2021-12-02 11:25:30+00:00 1.0 1312794873 5555 new futures signal in 5 minutes stay tuned 2021-11-28 03:25:01+00:00 1.0 1312794873 5532 new futures signal in 5 minutes stay tuned 2021-11-25 02:40:01+00:00 1.0 1312794873 5512 new futures signal in 5 minutes stay tuned 2021-11-24 06:05:01+00:00 1.0 1312794873 5493 new futures signal in 5 minutes stay tuned 2021-11-23 13:15:01+00:00 1.0 1312794873 5137 new futures signal in 5 minutes stay tuned 2021-11-04 04:05:01+00:00 1.0 1312794873 5054 new futures signal in 5 minutes stay tuned 2021-10-27 08:51:21+00:00 1.0 1312794873 4994 new futures signal in 5 minutes stay tuned 2021-10-21 13:20:01+00:00 1.0 1312794873 4962 new futures signal in 5 minutes stay tuned 2021-10-19 17:20:01+00:00 1.0 1312794873 4935 new futures signal in 5 minutes stay tuned 2021-10-19 07:20:01+00:00 1.0 1312794873 4882 new futures signal in 5 minutes stay tuned 2021-10-17 04:10:48+00:00 1.0 1312794873 4809 new futures signal in 5 minutes stay tuned 2021-10-14 10:45:54+00:00 1.0 1312794873 4780 new futures signal in 5 minutes stay tuned 2021-10-13 06:15:01+00:00 1.0 1312794873 4445 new futures signal in 5 minutes stay tuned 2021-10-01 16:43:02+00:00 1.0 1312794873 3606 5 minutes left are you ready 2021-08-28 10:05:04+00:00 1.0 1312794873 3529 5 minutes left are you ready 2021-08-26 08:55:01+00:00 1.0 1312794873 3452 10 minutes left are you ready 2021-08-24 12:20:03+00:00 1.0 1312794873 3443 5 minutes left are you ready 2021-08-24 09:45:01+00:00 1.0 1312794873 2602 our todays premiumreviews gained huge profits join and make money with us hamshikgade get coin name before pump today we gave wabi coin name also before pump 2021-06-20 17:21:44+00:00 1.0 1312794873 481 dgb massive from our video hope you are enjoying 3 coins mea 2 coin pump hua already abhi ek aur bacha hai jaldi jaao video deko aur invest kro 2021-04-14 08:41:43+00:00 1.0 1312794873 278 do not sell your coins in loss our coins will 100 pump some shaking hands will sell in loss dont follow them premium✅ 2021-04-07 06:10:10+00:00 1.0 1312794873 268 today we have shared a best coin in our premium ✨ 100 it will pump huge still it is in buying zone join premium and invest in that coin fast hamshikgade 2021-04-06 06:26:36+00:00 1.0 1351958949 11956 big announcement to celebrate the upcoming big alts season we are going to start a new type of signal which well call volcano eruption signal this signal will be purely based upon ta fa that is still bottomed out with very strong potential to pump hard you will just have to buy that coin fastly as we declare its name and we will bring fomo to pump that coin 100 500 in no time we guarantee you that there will be no prepump or buying the volcano eruption signal is scheduled at date 30012021 time 4 pm gmt24 hours left exchange binance stay tuned volcano eruption signal is coming 2021-01-29 16:20:04+00:00 1.0 1351958949 11927 big announcement we are going to organize a volcano eruption event on 30 th january we have gathered huge amount of btc to boom coin on binance making it reach top gainer on binance it will be free for all invite your friends for this volcano eruption signal day 30 jan time 4 gmt be ready 2021-01-28 09:00:09+00:00 1.0 1351958949 5274 alright folks here is another rock bottom whale signal details this signal will come on 24nd mar at 400 pm gmt alts are going good as btc is stable above 65k keep the date and time in mind mar 24 | 400 pm gmt today 2020-03-24 03:12:51+00:00 1.0 1351958949 5210 alright folks here is another rock bottom whale signal details this signal will come on 22nd mar at 400 pm gmt alts are going good as btc is stable above 6k keep the date and time in mind mar 22 | 400 pm gmt 2020-03-21 17:06:11+00:00 1.0 1351958949 5127 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 1 hours 5 min left 400pm1600 gmt 2020-03-19 14:54:54+00:00 1.0 1351958949 5126 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours 5 min left 400pm1600 gmt 2020-03-19 13:56:01+00:00 1.0 1351958949 4269 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:27+00:00 1.0 1351958949 4259 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:45:56+00:00 1.0 1351958949 79 5 minutes left for binance pump target 1020 1020 2018-08-03 14:52:54+00:00 1.0 1220639536 2834 dec3 ethbtc and eth dominance its general sentiment that alts season will come after btc make its all time high no one know btc top it can be 69k or may hit 100k in next 30 days ethbtc pair is showing bullish triangle breakout which means eth can pump hard on small jump of btc eth dominance chart also showing breakout and eth dominance reached 21 first time after 2018 eth dominance can bounce here which is indication of alts season alts market grow with btc but alts season can give parabolic move ethbtc pair saying that its coming we also expect it in next 13 months many of our suggested low cap coin pump hard in last 10 days soon we share more such a low cap coin just hold them for big target for 13 month 2021-12-03 09:49:34+00:00 1.0 1220639536 2572 slp on fire 35 jump coin have potential to pump 3x4x in next 24 month 2021-11-04 10:12:49+00:00 1.0 1220639536 2548 slp 07 eye on slplow cap nft coin which not pump on fb announcement play with very small vol for 3x5x target in 45 month 2021-11-02 05:53:10+00:00 1.0 1220639536 2415 buy signal faraland fara usdt is getting ready buy some and hold for mid term can pump hard 2021-10-17 16:49:28+00:00 1.0 1220639536 2408 buy signal aiozusdt exchange kucoin aioz is truely undervalued at this point make sure you buy and hold for midterm power coin 2021-10-16 09:01:23+00:00 1.0 1220639536 2066 sep4 rdn cp 1150 sat or 058 usd very active team on github low liquidity low cap coin only for 12 portfolio financially strong project trader can plan swing trade with sl and positional trader can hold for good target and buy the dip strategy on 15 gap and sell in pump exchange binance huobi gateio 2021-09-04 09:39:17+00:00 1.0 1220639536 917 may 3 mda 2720 satoshi mda is 2018 old slow moving 700 rank coin price is moving in consolidation zone but today mastercard mentioned it their article six fintech innovators to build the future of sustainable lending blockchainpowered social impact this is not big but price at consolidation zone and it can pump soon strategy is simple buy small in 2 part with 15 gap and wait for pump its low liquidity low cap coin so dont invest heavily 2021-05-03 18:42:09+00:00 1.0 1497129837 8211 127552216 usdc 127552216 usdc transferred from unknown wallet to huobi bitcoin pump 15 minutes left to close this weekly candle 2021-05-23 23:46:02+00:00 1.0 1497129837 8070 coin name snm binance scalptrade buy now sell for 30 50 profit instantly 2021-05-15 22:20:42+00:00 1.0 1497129837 7777 ‍ which coin will be the next 2x on binance exchange comment below your coin name 2021-04-17 08:57:30+00:00 1.0 1497129837 7308 which coin is ready for the next 100 pump comment below your coin 2021-02-12 17:51:27+00:00 1.0 1497129837 7153 sky before big pump signal call 2021-02-03 21:12:29+00:00 1.0 1497129837 7082 pump coin name is rdn targets are 50 150 price now 670 sats buy now sell in the high ✅ 2021-01-30 20:58:28+00:00 1.0 1497129837 7000 buy buy sc coin at around 1415 sats old coins low satoshi pumping those were at 5x leverage like doge pumped now sc may pump soon 2021-01-28 05:21:34+00:00 1.0 1497129837 6950 coin name ctsi binance buy around 160 170 sats sell target 50 100 ‍ 2021-01-24 03:19:54+00:00 1.0 1497129837 6931 coin name data accumulate it around 100 130 sats 2021-01-23 04:07:44+00:00 1.0 1497129837 6858 must vote everyone and share this post everywhere spred spred it guys last time we catch evx before 24 hrs of pump made 3x minimum from it lets guess next coin 2021-01-18 14:07:49+00:00 1.0 1497129837 6839 ‍ta on data as per the historical pump 10x 5x from the support zone around 90 130 sats its pumped fucing unbelievable with more than 3000 btc volume its really good to accumulate under 150 satoshi wait for 300 minimum pump from this gem 2021-01-16 18:31:27+00:00 1.0 1497129837 6831 ‍ta on data as per the historical pump 10x 5x from the support zone around 90 130 sats its pumped fucing unbelievable with more than 3000 btc volume its really good to accumulate under 150 satoshi wait for 300 minimum pump from this gem 2021-01-15 20:32:34+00:00 1.0 1497129837 6680 coin name yfox exchange uniswap buy around 20 30 gem uniswap buying link swapinputcurrencyethoutputcurrency0x706cb9e741cbfee00ad5b3f5acc8bd44d1644a74 holding time 2 4 weeks only profit expected 300 500 2021-01-04 08:54:41+00:00 1.0 1497129837 6672 coin name yfox exchange uniswap buy around 20 30 gem uniswap buying link swapinputcurrencyethoutputcurrency0x706cb9e741cbfee00ad5b3f5acc8bd44d1644a74 holding time 2 4 weeks only profit expected 300 500 2021-01-03 07:09:21+00:00 1.0 1497129837 6568 coin name dock exchange binance buy around 65 70 satoshi sell around 80 88 92 99 satoshi target 50 99 satoshi ta daily weekly 4 hrs chart are showing bullish indication it will pump from here as expected soon check out ta on dock 2020-12-04 10:50:05+00:00 1.0 1497129837 6567 in few minutes coin name will be announced on binance exchange which will give you 50 genuinely its not pump dump signal is fully on strong ta technical analysis stay tuned pin on top invite your friends you have few minutes 2020-12-04 09:49:53+00:00 1.0 1497129837 6497 coin name sys fucking buy some of sys here on binance lets wait for breakout 2020-11-21 17:19:55+00:00 1.0 1497129837 6494 sys holding above 400 sats prepared for big pump soon from here keep hold it 2020-11-21 08:08:19+00:00 1.0 1497129837 6482 within few minutes coin name ta chart will be announced here hold eth on binance exchange 2020-11-18 17:47:42+00:00 1.0 1497129837 6307 uniswap gem 20 x 50x easily short term no rug pull liquidity fully locked liquidity should be more than 100k long life potential defi + yield farming project we believe in this project will be the game changer competitor of existing projects like yfi yfii yfv trust swap or mantra dao its up to you guys whether believe it or not i believe this will be good potentially strong project lets go make sure you hold your eth to buy this gem from uniswap ‍ coin will be posted here only whales will enter later stay tuned next post will be coin name 2020-09-30 05:54:17+00:00 1.0 1497129837 6215 guys be ready within 30 minutes coin name with ta chart ‍ coming up here 2x profit minimum 2020-08-27 09:17:19+00:00 1.0 1497129837 6163 sky on 1day buy this fucking dip coin this will pump for sure ⛳️ 2020-08-18 07:31:52+00:00 1.0 1497129837 6055 srk pumping it will continue pump grab some imagine xvg at 2 satoshi in 2017 reached 2000 satoshi 1000 profit in 1 year in 2017 2018 every privacy coin pumped huge now in 2020 2021 every good defi project will pump like srk you can buy from bitmart exchange do your kyc try to signup with this link to get huge trading discount join search for srkbtc pair srketh pair 2020-08-04 16:13:15+00:00 1.0 1497129837 6053 its the time to share that 100x coin i have shared to so many peoples in 3 satoshi haha now its 15 satoshi you wanna know about that donation coin just in 60 minutes you will see the coin name ✌ next post in 60 minutes coin name 2020-08-04 09:23:24+00:00 1.0 1497129837 6050 coin name toko on kucoin exchange defi big potential easy 10x 20x big potential 2020-08-04 09:00:12+00:00 1.0 1497129837 6048 sky eyes on this gem getting ready for big pump may be sooner 2020-08-03 07:18:18+00:00 1.0 1497129837 6023 coin name dacc kucoin exchange buy zone 00000000033 38 satoshi sell zone 2x 00000000068 sats easy money with smart trade ✌ 2020-08-01 19:27:22+00:00 1.0 1497129837 5906 bqx bullish 4 hrs 1 day big pump incoming keep eyes on it 2020-07-20 17:03:22+00:00 1.0 1497129837 5857 bqx bullish 4 hrs 1 day big pump incoming keep eyes on it 2020-07-18 08:31:27+00:00 1.0 1497129837 5809 bqx 2x bullish 4 hrs 1 day big pump incoming keep eyes on it 2020-07-14 13:47:21+00:00 1.0 1497129837 5621 15 minutes left only get ready with your free btc in your binance account ‍ takeoff strong ta signal next post will be coin name 2020-06-13 15:42:07+00:00 1.0 1497129837 5609 takeoff special strong ta ‍ signal announcement special takeoff strong ta ‍ signal coming up exchange binance date 13june2020 today ⏰time today 350 pm gmt target 30 50 note make sure you have btc balance on your binance account to take participate in it risk 0 because we will buy in deep bottombreakout zone ✅ we have zero risk ratio in this signal vip members will get 5 minutes earlier join vip get earlier entry regards admin ‍cryptoherosupport tmecyptoherota 2020-06-13 06:28:29+00:00 1.0 1497129837 5503 pin on top our channel to get next 200 profit like via done before we done with via 200 profit for vip in just 20 minutes called pre pump coin join our vip official service get early pimp coins before pump happen with 100 accuracy + 100 genuinely contact cryptoherosupport 2020-06-02 06:06:09+00:00 1.0 1497129837 5451 via pre pump prediction done before 5 minutes ‍♂️ done 200 ✅ in 3 minutes 2020-05-29 16:02:40+00:00 1.0 1497129837 5429 ‍ pm your favourite coin name to our support team we will share free ta chart ✔️ so let me know your coin name ‍admin team cryptoherosupport 2020-05-28 11:19:13+00:00 1.0 1497129837 5421 phb strongly holding its support at 33 satoshi from long time lets see when pump will happen 2020-05-28 03:04:12+00:00 1.0 1497129837 5380 6 hours left for the takeoff strong ta signal 5 hours 55 minutes left for the vip service members 5 min earlier 2020-05-26 10:00:06+00:00 1.0 1497129837 5378 vip coin name mbl buy some at around 19 20 satoshi hold it for minimum 30 50 profit 2020-05-26 09:47:10+00:00 1.0 1497129837 5373 vip members will get coin ta 5 minutes earlier 2020-05-26 04:36:25+00:00 1.0 1497129837 5372 takeoff strong ta signal‍ announcement details about takeoff signal we will pickup coin from the perfect buying zone ✔️ takeoff above the clouds ⛅️ takeoff coin is fully based on strong ta fa internal news‍ you should buy fast before any bot can catch before you ✋ target should to be 2x expected upto the mark takeoff signal venue details exchange binance date 26may2019 today time 400 pm gmt easy target 50 70 note make sure you have your free btc balance on your binance account to take participate in it best of luck guys regards ‍ 2020-05-26 04:32:50+00:00 1.0 1497129837 5352 coin name vibe accumulate vibe between 80 100 satoshi for mid term 2020-05-25 06:28:01+00:00 1.0 1497129837 5266 coin name vibe accumulate vibe between 80 100 satoshi for mid term 2020-05-16 06:31:41+00:00 1.0 1497129837 5174 buying some nav here i believe this will pump 2x even its not dumped like other alt coin | holding strongly 2020-05-08 16:09:15+00:00 1.0 1497129837 5002 wtf data 45 huge pump in few minutes just after this announcement 2020-04-29 09:53:38+00:00 1.0 1497129837 4985 twt trust wallet coin trading starts in mxc pumped it can pump more harder after listing on binance binance partnered with trust wallet huge chances of binance listing join buy twt in mxc exchange before you get late 2020-04-28 06:28:39+00:00 1.0 1497129837 4928 nebl ✅ 15 profit done ✅ in few minutes thats why you should join our vip service you will get pre pump coin 2020-04-23 17:12:13+00:00 1.0 1497129837 4818 ‍scanning binance exchange alt coin next pump 2020-04-10 15:26:32+00:00 1.0 1497129837 4677 nav looking so sweet here ready to take big pump anytime like data 3x did last time as well ✌ keep your eyes on nav coin ‍ tmecryptoherota 2020-03-19 05:01:58+00:00 1.0 1497129837 4026 coin name amb binance buy zone 175 sats 185 sats sell zone 15 30 45 2020-02-02 07:16:04+00:00 1.0 1497129837 4023 vip coin name snt binance breakout buy at 120 122 sats sell target 15 30 45 keep eyes on it guys volume increased and may pump anything 2020-02-02 05:47:19+00:00 1.0 1497129837 3956 coin name ada binance strong buy below 600 sats hold for good profit 2020-01-30 09:44:25+00:00 1.0 1497129837 3949 vip coin name xzc binance buy zone buy after breakout 00006 satoshi sl no need sell zone 15 30 45 2020-01-30 04:26:12+00:00 1.0 1497129837 3674 fasten your seatbelts get ready to takeoff into alts pump from here next week will be fucking bullish regards cryptoherota 2020-01-19 07:51:22+00:00 1.0 1497129837 3603 takeoff strong ta signal‍ announcement details about takeoff signal we will pickup only one coin from the deep bottom takeoff above the clouds ⛅️ takeoff coin is fully based on strong ta ‍ buy fast before any bot can catch before you ✋ target will be around 30 50 upto the mark with patience takeoff signal venue details exchange binance date 09jan2020 thursday time 400 pm utc 930 pm ist target 30 50 note make sure you have btc balance on your binance account to take participate in it share it everywhere win free 5 vip membership seats for lifetime regards ‍ 2020-01-06 08:23:09+00:00 1.0 1497129837 3461 vip coin name stx try to buy below 1500 sats expected a quick profit 15 30 2019-12-23 07:25:53+00:00 1.0 1497129837 3429 vip coin name stx try to buy below 1500 sats expected a quick profit 15 30 2019-12-22 07:09:26+00:00 1.0 1497129837 3363 coin name hot buy zone 7 8 satoshi bottom sell zone should to be hold ‍♂️ 2019-12-18 08:28:15+00:00 1.0 1497129837 3239 coin name nav ‍ place some buy orders at around 1200 sats hold it for nice pump 2019-12-08 15:48:19+00:00 1.0 1497129837 3177 coin name algo buy around 3000 3150 sats sell around 10 15 30 50 sl 7 from buy zone 2019-11-29 07:39:53+00:00 1.0 1497129837 3120 coin name mft someone bought 150 btc of mft in just 3 minutes at 12 satoshi keep eyes on it if mft pump key will follow or key pump mft follows 2019-11-18 16:20:28+00:00 1.0 1497129837 3110 eyes on phb whales thinking to enter in this coin anytime could pump 2019-11-17 06:44:25+00:00 1.0 1497129837 3045 coin name lend buy at around 130 sats with 5 stoploss 2019-11-11 07:14:30+00:00 1.0 1497129837 3017 coin name lend buy at around 130 sats with 5 stoploss 2019-11-03 18:28:37+00:00 1.0 1497129837 3011 coin name stx buy zone 2100 2150 sats hold it with 7 stoploss note hopefully will pump from here 2019-11-03 06:07:29+00:00 1.0 1497129837 2990 accumulate phb china coin around or below 70 satoshi im bullish i can expected a big big huge pump sooner ‍♂️ may be its 5x or 8x dont forget history will have to repeat again 2019-10-27 15:54:10+00:00 1.0 1497129837 2798 150 satoshi breakout done ✅ anytime huge pump expected as per previous trend 2019-09-27 04:41:02+00:00 1.0 1497129837 2469 coin name wan volume increased according to chart it will go more up so buy here now at 00000280 hold it for more than 30 thanks me later 2019-08-23 20:14:50+00:00 1.0 1497129837 2114 tomorrow new coin will be traded on binance exchange erd elrond those who are not able to participate unluckily not win the tickets specially the whales will try to get out from some alts coin and holding in btc bnb to enter in this ieo so after the hype of this ieo alts will able to do some good gains erd most probably open above 100 satoshi because of huge fomo was created in earlier ieos and binance itself invested and supporting the team 2019-07-03 07:43:51+00:00 1.0 1497129837 2066 which coin will be the next pump stay tuned here 2019-06-19 21:04:13+00:00 1.0 1497129837 2041 coin name fuel someone bought 34 btc worth of fuel in just 5 minutes maybe some whales are entering in it keep your eyes on fuel 2019-06-17 16:06:26+00:00 1.0 1497129837 2025 dont forget to catch is fucking dip coin evx huge news in this month just 15 days left we already updated 1 day triangle breakout already done ✅ should have to pump 2019-06-15 05:34:50+00:00 1.0 1497129837 2016 ta ‍ coin name mth is exactly in our buy zone expected a easy jump keep eyes on it 2019-06-14 06:55:01+00:00 1.0 1497129837 1964 ta ‍ coin name mth is exactly in our buy zone expected a easy jump keep eyes on it 2019-06-11 07:07:24+00:00 1.0 1497129837 1625 aaafffff after scanning binance got a coin with fantastic ta i will share it just go thought it and than buy take your time because its not pump coin 2019-05-21 08:25:07+00:00 1.0 1497129837 1500 get ready for the fire signal on binance exchange coin name will be announced at 4 pm gmt today be ready on time 2019-05-13 10:29:16+00:00 1.0 1497129837 1428 get ready to pick one more coin in dip and ready to boom anytime i will post here in 10 minutes 2019-05-06 06:09:22+00:00 1.0 1497129837 1335 coin name oax keep eyes on around 4050 sats may possibly pump expected 2019-04-23 10:38:28+00:00 1.0 1497129837 1323 coin name brd on binance looking fit and fine for the short term expected to pump from here anytime ✈️✈️ || currently running around 6100 sats 2019-04-22 12:21:30+00:00 1.0 1497129837 1241 ta on data 4 hrs breakout haa been done ✅ now will pump above 10 15 soon or even more || dont always underestimate imcryptohero s ta ‍♂️ || signal given at 470 475 sats 2019-04-18 12:02:12+00:00 1.0 1497129837 995 vrc gone 4x in few minutes on bittrex again another shirtt coin trying to follow the same way vrm because of low volume bittrex coins easily pump dump 2019-04-02 16:38:25+00:00 1.0 1497129837 978 if btc pump above 15 pump than convest your all btc to usdt any stable coin 2019-04-02 05:11:07+00:00 1.0 1497129837 884 eyes on this green candle in pivx for next 1 4 hours may pump happen in few hours 2019-03-30 07:12:40+00:00 1.0 1497129837 877 coin name data keep your eyes on this one again may breakout soon expected current price 560 sats 2019-03-29 15:25:56+00:00 1.0 1497129837 869 dgd hold it for next 8 12 hours lets see pump happen more or not 2019-03-29 11:40:51+00:00 1.0 1497129837 737 coin name brd buy some around 6200 6350 sats volume suddenly spiked up 810 btc just as in evx before big pump 2019-03-25 14:13:23+00:00 1.0 1497129837 706 alts update here in crypto dumping may take longer time but for pump it will be like in minutes all are in support just we need patience only 2019-03-21 15:57:12+00:00 1.0 1497129837 691 11 pm utc most probably this time i will post coin that will pump in few hours above 50 around 630 hours left i have scanned binance 15 minutes early will be posted in premium service if youre not in premium than book youre seats early 2019-03-19 16:16:20+00:00 1.0 1497129837 660 this is ardr chart i shared before pump made profit 85 next coin will be sexy like this 2x easily dont believe in me guys just go and believe in technical analysis 2019-03-15 10:08:28+00:00 1.0 1497129837 651 premium coin name fun buy at 104 hold it 2019-03-14 09:15:14+00:00 1.0 1497129837 571 coin name via || buy 000009600 sats || hold it for huge profit 2x 3x in mid term 2019-03-11 11:32:27+00:00 1.0 1497129837 495 coin name ardr must buy coin at 1500 1550 sats this is the low volume coin on binance whales are planning to pump this coin before pumping buy and put sell orders note holding this support from many days and looking to pump anytime 2019-03-06 01:32:14+00:00 1.0 1497129837 490 coin name nebl on binance volume is increasing may pump huge from here soon over 30 might be possible so accumulate some nebl at around 00003010 00003050 sats keep eyes 2019-03-05 12:50:22+00:00 1.0 1497129837 292 npxs coin name npxseth pair should breakout 000000525 sats than we will go up today or tomorrow 18 sats selling wall will be break easily 2019-02-11 06:15:05+00:00 1.0 1497129837 227 coin name mft on binance buy around 85 sats hold it for few weeks or you may hold for long term 2019-02-06 04:11:05+00:00 1.0 1497129837 197 coin name knc is in nice support buy at current price will pump definitely buy below 3400 sats go for it there is no stoploss its in strong support and will pump 2019-02-04 13:02:08+00:00 1.0 1497129837 176 coin name ae on binance for short term buy 00001070 1080 sats hold it for good profit stoploss 000010590 sats breakout is done in 1 day 4 hour will pump anytime from here check out ta 2019-02-02 02:00:10+00:00 1.0 1497129837 119 coin name dlt on binance keep eyes on dlt may pump from 3500 sats 2019-01-29 13:54:54+00:00 1.0 1413955656 1466 coin signals for kucoin exchange follow us for best pump tracking service on kucoin ✅ signal low level for max profit ✅ high accuracy 100 ✅ signal before pump ✅ short term and quick profit signals only ✅ high end profit in short time trade with us for high end profit join fast link is open for few minutes only +dna5vebdq0mwmdu1 2022-01-13 04:47:38+00:00 1.0 1413955656 736 nwc going to pump again nwc will be getting listed on a major exchange next week the last time they added an exchange price exploded for 170 on the ta part we can see that the nwc touched the key level from which it always bounces range deviation means high probability for reversing back to range top looking for pump of 3040✅ only on exchange kucoin hitbtc 2020-10-25 17:47:12+00:00 1.0 1413955656 735 coin to moon is nwc exchange kucoin market nwcusdt usdt buy buy buy hold for max profit 2020-10-25 17:46:53+00:00 1.0 1413955656 458 rlc is one of pump coin from our list of pump coins reason why its in our list could be seen clearly can you calculate profit pump coins are recommended to buy low level for insane gain 2020-07-18 06:14:35+00:00 1.0 1413955656 225 ​ ama announcement are you excited for upcoming ama with newscryptoio team✨ we are hosting upcoming ama with newscryptoio honble mr aljaž kanalec head of pr department will be our honble guest to create awareness regarding newscrypto platform host cryptoprofitcoach guest mr aljaž kanalec venue cryptoprofitchatbox date 170620 day wednesday time 5 pm gmt ✨✨major highlights ✨✨ ✅ project brief and introduction ✅ discussion on plans and future strategies ✅ market strategies ✅ high chance of major announcementnews during session ✅ discussion on nwc coin ✅ q a session with participants ✅ 10 best question raiser will be picked up by our honble guest will be awarded 25 worth nwc tokens ✅ guest has discretionary power to answer questions raised by participants ✅ 10 best question raisers will be awarded free btc from 100 pool by cryptoprofitcoach ✅ more chance of winning total 20 winners will be chosen ❌ avoid asking regarding price risingprice related questions ✅ ask anything regarding newscryptoio and nwc coin 2020-06-15 04:54:11+00:00 1.0 1464390250 357 a reminder for all that today technically cryptocurrencies enter the stock market through the entry of a coin with a ticker coin to the nasdaq exchange that evaluates the exchange involved in cryptocurrency trading and consequently evaluates the cryptocurrency itself and its relevance firstly we shall read the text from the screenshot the reference price is 250 if the price after the auction is higher then we can expect the pump of the main cryptocurrency to follow if coin moves downwards thereafter then the btc dump will follow at once strictly speaking this is the reason for my decision to sell bitcoin higher than the relevant price and to place the stoploss in profit so that if a drop does occur i would remain in profit or to sell higher than the relevant price during a pump cryptofuturestrading 2021-04-14 08:40:19+00:00 1.0 1292278703 21122 bel btc buy around 2282400 sel285 31 35 4 5 bel is looking very nice at this current support dipped nice after a strong pump now getting back momentum for a recover pump small time frame looking for reversal too stop loss 7 2021-11-11 08:56:13+00:00 1.0 1292278703 20008 fun|usdt breakout msb level retesting now pump can be seen anytime buy hold buy 002 00225 sell 002475 002876 0035000 00440 stoploss 7 2021-09-16 07:35:18+00:00 1.0 1292278703 19484 rose looks impressive in 4 hours tracks down another big pump 2021-08-26 10:24:05+00:00 1.0 1292278703 19006 i̇dex|busd buy 00400 0044 sell 0047 0051 0058 0077 4 hours chart very strong sr flip forming holding above will pump hard buy some here and hold stoploss 0039 2021-08-03 10:53:17+00:00 1.0 1292278703 18954 ogusdt buy 4 435 sell 466 5 55 6 7 sr flipped in h4 anytime pump can be seen buy hold stoploss 11 2021-07-31 11:56:44+00:00 1.0 1292278703 18708 mdt bi̇nance‼️ buy around 6772 sel819099160+199 accumulation is going on in breaker zone falling wedge pattern is printed and about to breakout good to buy some here buy hold a bag for the pump stoploss 7 2021-07-06 10:26:46+00:00 1.0 1292278703 18666 mdt bi̇nance‼️ buy around 6471 sel818899110+144 accumulation is going on in breaker zone falling wedge pattern is printed and about to breakout good to buy some here buy hold a bag for the pump stoploss 7 2021-06-23 09:27:01+00:00 1.0 1292278703 18616 mdt bi̇nance‼️ buy around 7485 sel97110130160+199 accumulation is going on in breaker zone falling wedge pattern is printed and about to breakout good to buy some here buy hold a bag for the pump stoploss 7 2021-06-15 08:33:06+00:00 1.0 1292278703 18545 low sotashi coin big pump cos hold some time 2021-06-06 07:58:24+00:00 1.0 1292278703 18063 collect asr acm match time will be a big pump 2021-04-11 14:39:31+00:00 1.0 1292278703 17738 all shit coin today pumped poa yoyo cdt dont pump 2021-03-21 16:56:46+00:00 1.0 1292278703 17206 grs bi̇nance buy around 11501276 sel150016501999+2550 trendy coin not pump yet ✅ daily chart looks bullish ✅ bullish rsi ✅ price attempting for a breakout ✅ pump is expected here stoploss 7 from avg buy price 2021-02-19 03:20:31+00:00 1.0 1292278703 16375 btc dominance down alts soon when 6066 alts big pump 2021-01-10 20:26:38+00:00 1.0 1292278703 16071 low sotashi coin big pump 2020-12-20 13:12:57+00:00 1.0 1292278703 15859 poa bi̇nance buy around 90107 sel119134150+245 buy it on binance poa network looks very bullish in all time frames technically strong poa is a gem buy a bag wait for the pump strongsignal stoploss 7 from entry 2020-12-03 11:43:48+00:00 1.0 1292278703 15827 poa bi̇nance buy around 90103 sel119134150+245 buy it on binance poa network looks very bullish in all time frames technically strong poa is a gem buy a bag wait for the pump strongsignal stoploss 7 from entry 2020-12-01 08:09:10+00:00 1.0 1292278703 15681 poa bi̇nance buy around 90109 sel129144160+245 buy it on binance poa network looks very bullish in all time frames technically strong poa is a gem buy a bag wait for the pump strongsignal stoploss 7 from entry 2020-11-20 08:21:50+00:00 1.0 1292278703 15070 ksm very quick pump it touched 3139 satoshi between given range price reached 3548 satoshi we gained 14 profit within fews minutes ksm bi̇ttex and binance listed coin now dip 3900 2020-09-09 16:11:35+00:00 1.0 1292278703 14983 wpr hold my pump signal 99110 and new coin ready 2020-08-31 10:28:25+00:00 1.0 1292278703 14849 bcpt signals is here☝️ this coin will pump hard like ast blz ren poa and many more coins what already mooned after my call expecting 330+ sats in big pump by whales so still u have chance to buy it dont ask entry later when it will pump ❤⬆️ 2020-08-17 11:14:57+00:00 1.0 1292278703 14704 poa bi̇nance buy around 133144 sel160175190225 buy it on binance poa network looks very bullish in all time frames technically strong poa is a gem buy a bag wait for the pump strongsignal stoploss 7 from entry 2020-08-06 17:36:27+00:00 1.0 1292278703 14697 boom coin 10 minutes left 10 100 profit signal 2020-08-05 13:13:47+00:00 1.0 1292278703 14695 boom coin 15 minutes left 2020-08-05 13:12:28+00:00 1.0 1292278703 14634 kmd bi̇nance buy around 680720 sel7808409009991150 looks very bullish breakout incoming chart looking perfect to enter daily chart breakout with massive volume good uptrend after breakout and can move upto 880999 satoshi easily great for 40 90 gain easy stop at 7 below buy zone 2020-07-23 10:32:51+00:00 1.0 1292278703 14333 pi̇vx looks promising bullish pi̇vx juicy pump from this portfolio called at between 3090 satoshi hit 4683 4st target hit so far within 8 days thats about 50 profits with in few hrs 2020-06-02 09:29:54+00:00 1.0 1292278703 13919 wpr juicy pump from this portfolio called at between 59 satoshi hit 70 2st target hit within 15 hours so far thats about 22 profits with in few hrs 2020-05-01 07:17:17+00:00 1.0 1292278703 13811 hodl event today today will be given special ta based call which is hodl based and we are expecting big profit to holding this coin be ready today around 4 pm gmt stay tuned 2020-04-20 08:46:54+00:00 1.0 1292278703 13757 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-04-15 15:29:58+00:00 1.0 1292278703 13756 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x breakout coin the coin name will come as an image and text 2020-04-15 15:03:46+00:00 1.0 1292278703 13753 4 hour left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected spike 6080 note coin will be posted in picture to avoid bots 2020-04-15 12:00:57+00:00 1.0 1292278703 13752 our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until strong ta call‼️ 2020-04-15 10:01:30+00:00 1.0 1292278703 13716 mda juicy pump from this portfolio called at between 4570 satoshi hit 5414 2nd target hit with in 8 days so far thats about 20 profits with in few hrs 2020-04-12 12:27:17+00:00 1.0 1292278703 13644 5 minutes left until the strong ta call todays strong ta call will be freeforall this means that the coin signal will be at the exact same time for everyone expected target 20 2x note coin will be posted in picture to avoid bots 2020-04-05 12:09:23+00:00 1.0 1292278703 13642 and dip strong analis signal ready 30 minutes left we will be sure that it is completely at the bottom and will go to the moon 2020-04-05 11:51:38+00:00 1.0 1292278703 13641 wtc juicy pump from this portfolio called at between 335355 satoshi hit 483 1nd target hit with in 4 days so far thats about 15 profits with in few hrs if 400 passes in the next few days it will just start and fly up to 470 2020-04-05 11:47:50+00:00 1.0 1292278703 13634 and dip strong analis signal ready 3 hours left we will be sure that it is completely at the bottom and will go to the moon 2020-04-05 09:19:22+00:00 1.0 1292278703 13552 grs peaking at 48 more than 2 min from the start with a good second wave after the initial drop our coin grs held near 20 for about 20 minutes great volume 250+ btc and great effort from our whales and everyone out there peak price 3434 expected gain 70 peak gain 48 due to unconditional sell walls we failed to reach expected spike we will work hard to grow next time so next call will be even bigger than this one stay tuned 2020-04-02 16:50:32+00:00 1.0 1292278703 13547 grs juicy pump from this portfolio 1nd target almost hit with in fews minutes hours so far thats about 48 profits with in few minutes we will soon see the way to the moon after rebuy next 4000 2020-04-02 16:30:53+00:00 1.0 1292278703 13513 our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until strong ta call 2020-04-02 10:00:50+00:00 1.0 1292278703 13506 great news for all everyone as promised earlier our whales are more than ready to push another strong coin on binance up to 2x we will share the coin name tomorrow around 4pm gmt so everyone can make maximum benifits in short term the market is more than ready for upcoming strong ta call this free for all call will be big like edo we are expecting 2x spikes we actually expect a big second wave again as the upcoming call will be supported by big whales around 500k people are going to join this event we will make sure to reach as high as possible and will make sure to achieve target 1 within few minutes as we did in our previous calls make sure you have your binance account ready and loaded with btc for tommorow‼️ date april 2 thursday time around 4 pm gmt exchange binance 2020-04-01 18:05:32+00:00 1.0 1292278703 13494 mana juicy pump from this portfolio called at between 388 satoshi hit 416 1nd target almost hit with in 15 hours so far thats about 9 profits with in few hrs we will soon see the way to the moon 2020-04-01 08:39:52+00:00 1.0 1292278703 13385 5 minutes left until the strong ta call todays strong ta call will be freeforall this means that the coin signal will be at the exact same time for everyone expected target 20 2x note coin will be posted in picture to avoid bots 2020-03-28 12:39:55+00:00 1.0 1292278703 13363 rlcbtc new update strong support level 44004600 satoshi so buy and hold till 80 target dont sell guys if you want to huge profit so buy and hold strategy is very good for now remember target 80 so buy and hold 2020-03-27 16:02:26+00:00 1.0 1292278703 13360 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 16:00:20+00:00 1.0 1292278703 13319 edo top gainer 40 peak first few min 60 peak after 18 min and 70 peak 26 min after start great volume and great effort from our whales and everyone out there we will work hard to grow every time so next call will be even bigger than this one peak price 2446 expected gain 70 peak gain 73 getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community stay tuned 2020-03-26 17:03:01+00:00 1.0 1292278703 13284 only 1 minutes to go❗️ our experts choosed bottom based strong tafa coin our whales will pump it to the moon global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-03-26 15:58:40+00:00 1.0 1292278703 13281 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit expected spike 100 2020-03-26 15:34:29+00:00 1.0 1292278703 13278 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit expected spike 100 2020-03-26 15:29:42+00:00 1.0 1292278703 13277 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x breakout coin the coin name will come as an image and text 2020-03-26 15:02:00+00:00 1.0 1292278703 13274 4 hour left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected target 2x note coin will be posted in picture to avoid bots 2020-03-26 11:58:47+00:00 1.0 1292278703 13271 alts are showing bullish momentum due to recent btc pump and our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until strong ta call 2020-03-26 10:00:34+00:00 1.0 1292278703 13257 great news for all everyone as promised earlier our whales are more than ready to push a strong coin on binance up to 2x we will share the coin name tomorrow at 4pm gmt so everyone can make maximum benifits in short term the market is more than ready for upcoming strong ta call this free for all call will be big we are expecting 2x spikes we actually expect a big second wave this time as the upcoming call will be supported by big whales more than 500k people are going to join this event we will make sure to reach as high as possible and will make sure to achieve target 1 within few minutes as we did in our previous calls make sure you have your binance account ready and loaded with btc for tommorow‼️ date march 26 thursday time 4 pm gmt exchange binance 2020-03-25 18:00:04+00:00 1.0 1292278703 13221 todays rock bottom whale signal is expected to give huge gains than our previous calls just 3 hours 50 minutes left 400pm1600gmt stay tuned for more updates 2020-03-25 12:12:08+00:00 1.0 1292278703 13172 gxs no buy ri̇sky big pump now ppt buy 2020-03-24 11:01:51+00:00 1.0 1292278703 13150 4 hour left until the strong ta call todays strong ta call will be freeforall this means that the coin signal will be at the exact same time for everyone expected target 2x note coin will be posted in picture to avoid bots 2020-03-23 12:01:20+00:00 1.0 1292278703 13149 our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until strong ta call 2020-03-23 09:59:52+00:00 1.0 1292278703 13126 great news for all tomorrow at 4pm gmt we will share a strongta based unicorn sitting on fking bottom and waiting for a the market is more than ready for upcoming strong ta call this free for all call will be big we expecting 2x spikes without any dump and we actually expect a big second wave this time as the upcoming call will be supported by big binance whales more than 500k people are going to join this event we will make sure to reach as high as possible and will make sure to achieve target 1 within few minutes as we did in our previous calls make sure you have your binance account ready and loaded with btc for today‼️ date march 23 tomorrow time 4 pm gmt exchange binance 2020-03-21 14:50:27+00:00 1.0 1292278703 12901 kmd binance buy around 626660 sel71077786099911501250 ❇️ looks super duper bullish yesterday it has brokenout heavy resistance on daily chart ❇️ is ready to go for a moon pump 45 btc my support whales in now combining all these factors easily it can go for a +60 candle buy hold also 626 640 satoshi area having strong support almost the breakout zone stop loss 7 2020-03-09 13:14:19+00:00 1.0 1292278703 12872 nas suprise comi̇ng 5 minutes left 2020-03-06 11:07:36+00:00 1.0 1292278703 12783 4 hour left until the strong ta call todays strong ta call will be freeforall this means that the coin signal will be at the exact same time for everyone expected target 2x note coin will be posted in picture to avoid bots powered by binancesignalsturkey 2020-03-03 12:00:06+00:00 1.0 1292278703 12775 phb moon 39 10 ⬆️ my target big pump 2020-03-02 14:53:18+00:00 1.0 1292278703 12770 great news for all as promised our analysts scanned binance exchange and found strongta based unicorn which is sitting on fking bottom and waiting for a kick to moon were expecting 100 gain in short term this time as big binance whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we will be able to make massive profits in short term make sure you have your binance account ready and loaded with btc for today‼️ date march 03 tomorrow time 4 pm gmt exchange binance 2020-03-02 11:53:08+00:00 1.0 1292278703 12757 boomcoin snm is boom coin buy 130136 satoshi ✅ daily chart looks bullish ✅ bullish rsi ✅ price attempting for a breakout ✅ pump is expected here must buy hold ❇️ for huge gains 2020-02-29 11:14:44+00:00 1.0 1292278703 12624 our experts choosed best strong tafa coin we will share here the targets of that coin for short term only 5 minutes to go❗️ global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-02-20 15:55:03+00:00 1.0 1292278703 12622 those who made quick profit from previous calls adx rlc edo are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for another strong ta call 2020-02-20 15:30:07+00:00 1.0 1292278703 12617 important announcement striving for little gains in this bear market dont miss our most anticipated binancestrongtasignal and be an initial part of golbal fomo our minimumtarget is 50100 profit areas just 4 hours left for the signal remember its gmt 400 pm 2020-02-20 12:00:08+00:00 1.0 1292278703 12602 guys we have decided to postpone the upcoming strong ta event due to bi̇nance system maintenance we will share the strong ta call tommorow for sure as its highly requested and our targets are 502x for short term new details date 20th febtommorow time 4pm gmt exchange bi̇nance 2020-02-19 16:56:20+00:00 1.0 1292278703 12601 strong ta update due to bi̇nance system maintenance your favourite strong ta call will announce here at 5 pm gmt instead of 4 pm gmt less than 1 hour 15 minutes left‼️ 2020-02-19 15:45:46+00:00 1.0 1292278703 12586 great news for all a lot of people have been wondering when the next strong analis ta will be❓ as promised our analysts scanned binance exchange and found strongta based unicorn which is sitting on fking bottom and waiting for a kick to moon were expecting 40 to 2x gain in short term as we did earlier in data rdn adx rlc edo and many more❕ market is looking more than ready have a great day prepare yourself for upcoming strong ta call‼️ date february 19 time 4 pm gmt exchange binance 2020-02-18 14:43:18+00:00 1.0 1292278703 12238 what an amazing pump 5 minutes it went up non stop now consolidates at new level of 1500+ might see another leg up as our whales from are helping while btc is dumping rebuy zone to those who asked 14001500 zone targets 1700 1880 2000 2200 make sure to be first and get yourself a quick 30 profit next time by joining your friends 2020-02-01 17:34:23+00:00 1.0 1292278703 12233 what a great pump by our bot whales are helping now to pump it higher in the next 24 hours from 1350 to 1700 first binance gainer can we see 50 coming to get the coin name earlier next time make sure to start t and invite friends 2020-02-01 13:22:15+00:00 1.0 1292278703 12230 4 minutes left for our mega pump event ‼️ next post is coin name in a picture to avoid bots also it will show current price before pump was started 2020-02-01 12:56:20+00:00 1.0 1292278703 12228 pump bot less than 30 minutes left for our mega pump event ‼️ to get ranked and enjoy coin name few seconds earlier start our bot dont miss 50100 profit chance guys ‼️ 2020-02-01 12:30:35+00:00 1.0 1292278703 12135 our experts choosed best strong tafa coin we will share here the targets of that coin for short term only 5 minutes to go❗️ global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-01-20 15:55:41+00:00 1.0 1292278703 12119 quick note we will postpone tonights strong ta call our experts closely monitoring the current market situation and believe that bitcoin is about to break 9000 resistance so its better to postpone we will probably share strong ta on monday new details are as follows date 20 january time 4 pm gmt exchange binance we hope you understand postponing the strong ta is better at this moment if not feel free to contact us thanks for understanding❤️ 2020-01-18 14:51:19+00:00 1.0 1292278703 12094 great news for all as promised our analysts scanned binance exchange and found a gem strongta based gem will be posted tomorrow stay tuned for the time zone were expecting 40 to 60 gain in short term as we did earlier in go rlc etc market is lookin good for alts at the moment time 4 pm gmt date 18th jan stay tuned 2020-01-17 09:12:26+00:00 1.0 1292278703 12061 brd bullish setup on 4hr chart has caught trendline support too should jump up sell | 10 | 15 | 30 short term mid term whales have done enough accumulation on this coin and going to pump it by 60 or more buy and hold from this dip with stoploss to enjoy the profit after pump 2020-01-13 13:06:01+00:00 1.0 1292278703 11995 boom coin fews minutes left 2020-01-09 13:15:41+00:00 1.0 1292278703 11838 those who made quick profit from previous calls adx rlc edo are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for another strong ta call 2019-12-27 15:30:06+00:00 1.0 1292278703 11828 strongtacall announcement the wait is over since our previous strongtacalls were a great success a lot of people have been requesting for a bullish strongtacall after a long discussion with the expert team we have decided to organise our next stongtacall on upcoming friday because this was highly requested details for the ta call exchange binance date 27122019friday time 4 pm gmt target 40100 2019-12-26 13:55:44+00:00 1.0 1292278703 11792 oax binance buy around 630 690 sel74080087096011501300 we see ascending triangle on the 4 hr chart breakout expected could see a massive breakout alts volume is spiking and oax always make a good move when alts pump stop at 7 2019-12-20 17:33:11+00:00 1.0 1292278703 11731 great news for all as promised our analysts scanned binance exchange and found a gem strongta based gem will be posted today stay tuned for the time zone were expecting 40 to 60 gain in short term as we did earlier in go adx rlc etc market is lookin good for alts at the moment time 4 pm gmt stay tuned binancesignalsturkey world class crypto exchange 2019-12-16 08:41:58+00:00 1.0 1292278703 11586 cvc hold pump coin 2019-12-07 15:18:25+00:00 1.0 1292278703 11558 oax binance‼ buy around 780 817 sel87094010501150+1300 we see ascending triangle on the 4 hr chart breakout expected could see a massive breakout alts volume is spiking and oax always make a good move when alts pump stop at 7 2019-12-06 13:26:14+00:00 1.0 1292278703 11525 there will be strong technical analysis signal coming today watch out stay online today between 330 pm gmt 430 pm gmt massive fomo will appear and will be on top of binance target is 80 100 2019-12-04 10:11:34+00:00 1.0 1292278703 11484 adx pumped to the moon called 4 days back here at 970 satoshi given range price reached 1364 satoshi so far whopping 40 profits ‼ today pump results 30 adx global fomo region +1450 and to moon 2019-12-01 18:01:25+00:00 1.0 1292278703 11455 hey folks plz read its important a lot of people are requested that they are unable to online during our strong ta based call so our team decided that we will share strong ta based signal at a particular time at 4pm gmt on 1st nov you need to do buy as soon as possible and hold it for short term for maximum profit like we did in previous calls the strong ta based calls we shared few days back storj via rlc neblnav etc the upcoming call is also ready for a 2x ride in short term so dont miss it date 1st of december time 4pm gmt 2019-12-01 07:16:39+00:00 1.0 1292278703 11432 dgd here here is the most awaited strongtechnicalanalysis signal dgdbtc chart according to chart we looking chart is very very strong bullish and strong bullish falling wedge and now broke out the falling wedge so more bullish now fallingwedge always give huge returns so our first target is +1660 satoshi next wave coming soon so buy now and wait for big pump buy now dgd 2019-11-29 11:39:38+00:00 1.0 1292278703 11210 strong dip coin 2x gain signal will come 6 to 7 hours left 2019-11-22 13:09:33+00:00 1.0 1292278703 11146 oax here big bang strong consolidation phase should see a breakout from no pump at all on this coin volume going positive from past few candles breakout alert short term looking very good mid term also looking for good 1570 gain 2019-11-20 16:01:52+00:00 1.0 1292278703 11145 oax binance‼ buy around 780 817 sel87094010501150+1300 we see ascending triangle on the 4 hr chart breakout expected could see a massive breakout alts volume is spiking and oax always make a good move when alts pump stop at 7 2019-11-20 15:56:25+00:00 1.0 1292278703 10957 10 minutes left hodl 15 45 profit good profit signal 2019-11-11 11:22:14+00:00 1.0 1292278703 10956 next tpa signal 30 minutes left 2019-11-11 11:04:26+00:00 1.0 1292278703 10853 dgd here here is the most awaited strongtechnicalanalysis signal dgdbtc chart according to chart we looking chart is very very strong bullish and strong bullish falling wedge and now broke out the falling wedge so more bullish now fallingwedge always give huge returns so our first target is +1660 satoshi next wave coming soon so buy now and wait for big pump buy now dgd 2019-11-04 17:02:35+00:00 1.0 1292278703 10740 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:09:18+00:00 1.0 1292278703 10606 go buy china coin will pump 119 sotashi 2019-10-27 16:35:12+00:00 1.0 1292278703 10588 btc moon pump alt coin stop loss use 2019-10-25 16:27:17+00:00 1.0 1292278703 10534 hbar☝️it looks like a missile it needs to breakout hold this zone☝️ once brokenout nice pump is expected 2019-10-21 13:02:13+00:00 1.0 1292278703 10520 lrc moving hold 440 my pump coming2x potanciel coin 2019-10-20 17:08:04+00:00 1.0 1292278703 10467 bcpt buy under 365sts target is 3050 why reason coin available at big dip and whales always pump it with hypebinance volume just 8 btc♻♻ massive push also coming soon 2019-10-19 12:48:34+00:00 1.0 1292278703 10461 ❇ its about the push hodl signal ❇ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 07:37:01+00:00 1.0 1292278703 10364 great news for all as promised our analysts scanned binance exchange and found a gem strongta based gem will be posted today stay tuned for the time zone were expecting 40 to 60 gain in short term as we did earlier in wpr phb rlc market is lookin good for alts at the moment time 4 pm gmt stay tuned 2019-10-15 10:20:10+00:00 1.0 1292278703 10352 7 minutes left boom coinfomo coin coming minutes 2019-10-14 14:52:06+00:00 1.0 1292278703 10351 ❇️ next post b00m c0in easy 1020 profit in few minutes keep your funds ready for boom coin 2019-10-14 14:07:14+00:00 1.0 1292278703 10232 youre ready for big wins just last minutehuge profit coin 1 minutes left 2019-10-08 17:10:40+00:00 1.0 1292278703 10198 boom coin ready 5 10 minutes left ☝20 80 profit signal 2019-10-07 11:10:34+00:00 1.0 1292278703 10065 ong bang going through accumulation daily chart looks cool can pump anytime buy hold 2019-10-01 19:52:37+00:00 1.0 1292278703 10053 boom coin hold maxsimum profit 7 minutes left 2019-10-01 11:40:16+00:00 1.0 1292278703 10040 poly☝️it looks like a missile it needs to breakout hold this zone☝️ once brokenout nice pump is expected 2019-09-30 18:31:55+00:00 1.0 1292278703 9996 boom coin 3 minutes left 2019-09-28 09:46:12+00:00 1.0 1292278703 9995 breakout alert 5 minutes left breakout alert new breakout coin 20 45 profit 2019-09-28 09:44:03+00:00 1.0 1292278703 9894 ardr juicy pump from this portfolio called at between 590 satoshi hit 700 2nd target done within fews minutes so far thats about 21 profits with in few days we will soon see the way to the moon 2019-09-22 18:59:52+00:00 1.0 1292278703 9881 appc juicy pump from this portfolio called at between 370 satoshi hit 437 1nd target done within 2 days 11 hours so far thats about 19 profits with in few minutes we will soon see the way to the moon 2019-09-22 14:48:57+00:00 1.0 1292278703 9873 i̇ns juicy pump from this portfolio called at between 2330 satoshi hit 2530 1nd target done within fews minutes so far thats about 9 profits with in few minutes we will soon see the way to the moon 30 september puplic tesnet massiva news 2019-09-21 16:43:52+00:00 1.0 1292278703 9838 coin name ongbtc exchange binance 2019-09-19 17:00:27+00:00 1.0 1292278703 9823 ready to join the global hodl team well you must be were sure that the global fomo will enter in our most waited binanceblastingsignal cheers only 4 hours 15 minutes left 2019-09-19 12:43:30+00:00 1.0 1292278703 9815 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:57:00+00:00 1.0 1292278703 9799 boom coin ready 15 minutes left 2019-09-18 18:59:24+00:00 1.0 1292278703 9795 as always the top 2 is our 2 coin 90profit for free channel profit my name fomo coin master ❤️ 2019-09-18 17:55:43+00:00 1.0 1292278703 9792 rlc binance buy around 2250 2370 sel2500277029903300+3666 buy hold crazyy pump coin 2019-09-18 17:30:49+00:00 1.0 1292278703 9766 elf☝️it looks like a missile it needs to breakout hold this zone☝️ once brokenout nice pump is expected 2019-09-17 19:12:01+00:00 1.0 1292278703 9756 boom coin 30 minutes left 2019-09-17 14:27:43+00:00 1.0 1292278703 9742 nav to the moon call shared here at 103 reached 113 1nd target chased✅ time 5 minutes whopping 10 profit so far still looks like party is not over hold for next target10 min 10 btc entry 2019-09-16 17:23:53+00:00 1.0 1292278703 9716 data binance buy around 90 110 sel121131145166180+199 whales have done enough accumulation on this coin and going to pump it by 60 or more buy and hold from this dip with stoploss to enjoy the profit after pump 2019-09-15 08:54:26+00:00 1.0 1292278703 9685 perl dipping hard buy hold leet see pump 2019-09-11 07:45:35+00:00 1.0 1292278703 9579 next boom coin 5 minutes left 2019-09-07 08:24:51+00:00 1.0 1292278703 9578 next boom coin 30 minutes left 2019-09-07 08:09:58+00:00 1.0 1292278703 9455 boom dip coin 25 minutes left 20 60 profit coin 2019-08-24 17:11:00+00:00 1.0 1292278703 9449 gvt ast hodl and next boom coin 3 hours left dip mega signal 3 hours left 2019-08-24 12:20:38+00:00 1.0 1292278703 9440 gvt hold to the moon huge pump coin 2019-08-24 09:36:54+00:00 1.0 1292278703 9428 data rocket call shared here at 105 reached 120 1nd target chased✅ total profit 14 so far ti̇me fews minutes ❤️ cheers the partys not over yet guyshold pump date tomorrow bigpump today people off 2019-08-23 21:36:34+00:00 1.0 1292278703 9422 next posted is boom coin 15 minutes left 2019-08-23 19:48:29+00:00 1.0 1292278703 9318 rlc☝️ going through accumulation daily chart looks cool can pump anytime buy hold 2019-08-17 15:17:11+00:00 1.0 1292278703 9289 ast juicy pump from this portfolio called at between 260 satoshi hit 298 1nd target almost done with in 10 minutes so far thats about 115 profits with in few hrs we will soon see the way to the moon 2019-08-15 20:08:23+00:00 1.0 1292278703 9283 wabi juicy pump from this portfolio called at between 1045 satoshi hit 1139 1nd target almost done with in 10 minutes so far thats about 95 profits with in few hrs we will soon see the way to the moon 2019-08-15 16:08:40+00:00 1.0 1292278703 9170 05 minutes left the next message will be the coin name with targets❗️ 2019-08-10 19:55:15+00:00 1.0 1292278703 9161 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big second wave this time 2019-08-10 16:00:04+00:00 1.0 1292278703 9134 guys are you ready for the biggest freeforallevent this time were going to share a very undervalued coin with strong fundamentals that can do x23x anytime the markets turn green we only choose projects with great potential we guarantee zero prepump and the pump is free for all we expect to see at least 50 spike so get ready for tommorow at 8 pm gmt team 1 day 4 hours left good luck team 2019-08-09 15:59:13+00:00 1.0 1292278703 9107 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends binancesignalsturkey 2019-08-08 15:38:05+00:00 1.0 1292278703 8919 sngles binance buy around 95 102 sel110121130144+166 whales have done enough accumulation on this coin and going to pump it by 30 or more buy and hold from this dip with stoploss to enjoy the profit after pump 2019-07-28 11:13:17+00:00 1.0 1292278703 8903 note i dont do pump my signal goes normally up but i think i need to do 1 pump atleast in 1 month to show my power so i will do 1 pump in 1 month time lets show profosionel trader power to world i will announce soon pump date and time stay tuned ❤ 2019-07-26 13:48:57+00:00 1.0 1292278703 8796 05 minutes left the next message will be the coin name with targets❗️ 2019-07-22 15:55:03+00:00 1.0 1292278703 8753 binance upcoming dip call announcement dear members the wait is over since our previous dip calls were a great success a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip call because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time dip call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 22072019 monday time 4 pm gmt target 50100 have a great weekend and prepare yourself for upcoming dip call the dip call team 2019-07-20 07:52:10+00:00 1.0 1292278703 8104 binance upcoming dip call update dear members the wait is over since our previous dip calls was a great succes a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 18062019 tuesday time 4 pm gmt target 50100 have a great day the dip call team 2019-06-16 17:29:04+00:00 1.0 1292278703 7451 15 min left next post coin name ‼️ if you want to make some sweet btc profits you must enter the dip call early and be confident 2019-05-16 16:45:08+00:00 1.0 1292278703 7411 binance dip call update guys the wait is over on 16th may at 4 pm gmt we are organising our next binance dip call our previous binancedipsignal results 1st dlt around 95 2nd lets join and lead the global fomo again 2019-05-15 16:21:28+00:00 1.0 1292278703 7310 15 minutes left login on binance now have everything ready team the trick to make some amazing profits is to be focused and early coin already in bottom the next message will be the coin❗️ 2019-05-05 15:45:06+00:00 1.0 1292278703 7167 next post coin name 2019-04-22 17:28:23+00:00 1.0 1292278703 7166 10 minutes left team be ready for the dip mega call 2019-04-22 17:19:44+00:00 1.0 1292278703 7164 15 minutes left team be ready for the dip mega call 2019-04-22 16:45:03+00:00 1.0 1292278703 7008 next post coin name 2019-04-06 17:00:01+00:00 1.0 1292278703 6975 less than 10 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-04-01 16:54:13+00:00 1.0 1292278703 6930 big pump coin now dip pivx isnt he going to come o time watch 2019-03-28 18:23:07+00:00 1.0 1292278703 6506 ✅ mega signal ✅ exchange binance date 23012019 time 14 gmt wabi 80 wings 75 oax 200 ost 55 we are expecting more this time be ready with your funds 2019-01-23 10:16:16+00:00 1.0 1292278703 6500 ✅ mega signal ✅ exchange binance date 22012019 time 14 gmt wabi 80 wings 84 oax 200 ost 55 we are expecting more this time be ready with your funds 2019-01-22 09:50:30+00:00 1.0 1292278703 5286 tnb next pump coin 2018-09-16 00:22:04+00:00 1.0 1292278703 520 1 trx 500 650 alt kanal 2 eng düzeltme 2 3 hafta kaldı 3 gto fib seviyelerine çekildi gelecek birkaç gün içinde sıçrama umuduyla 4 neo son 5 dalga kısa süre kar ettirmek 5 xvg azalan üçgene azalan kanala benziyor gibi görünüyor 6 ada kâr alarak gidiyor 7 lsk coin bunu almadiniza ilerde çok cok pisman olacaksiniz 2018-01-16 13:29:42+00:00 1.0 1546300553 737 12 hours left until our pump ⏰ 2022-01-23 06:01:49+00:00 1.0 1546300553 736 ⏰24 hours left until our pump on hotbitio link to register to platform 2022-01-22 18:01:25+00:00 1.0 1546300553 735 the next pump will be tomorrow sunday platform hotbitio date 23 january ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2022-01-22 10:38:43+00:00 1.0 1546300553 734 pump result very successful pump with more than 600 gain potential and a big volume we hope that a lot of you made profits in this pump ‌‏low 0001335 ‌‏high 001 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2022-01-19 18:16:39+00:00 1.0 1546300553 732 2 minutes left until our pump ☑️ the next message will be the name of the coin 2022-01-19 17:58:06+00:00 1.0 1546300553 731 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2022-01-19 17:55:06+00:00 1.0 1546300553 730 10 minutes left until our pump ⏰ 2022-01-19 17:50:06+00:00 1.0 1546300553 729 30 minutes left until our pump ⏰ 2022-01-19 17:30:06+00:00 1.0 1546300553 728 1 hour left until our pump ⏰ 2022-01-19 17:00:13+00:00 1.0 1546300553 727 2 hours left until our pump ⏰ 2022-01-19 16:00:22+00:00 1.0 1546300553 726 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2022-01-19 14:00:26+00:00 1.0 1546300553 725 6 hours left until our pump ⏰ 2022-01-19 12:01:48+00:00 1.0 1546300553 724 12 hours left until our pump ⏰ 2022-01-19 06:00:09+00:00 1.0 1546300553 723 ⏰24 hours left until our pump on hotbitio link to register to platform 2022-01-18 18:00:30+00:00 1.0 1546300553 722 the next pump will be tomorrow wednesday platform hotbitio date 19 january ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2022-01-18 11:17:06+00:00 1.0 1546300553 720 pump result another perfect pump with more than 800 gain potential and a big amount of volume we hope that all could make a profit ‏low 0057 ‏high 05 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2022-01-16 18:12:45+00:00 1.0 1546300553 718 2 minutes left until our pump ☑️ the next message will be the name of the coin 2022-01-16 17:58:06+00:00 1.0 1546300553 717 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2022-01-16 17:55:07+00:00 1.0 1546300553 716 10 minutes left until our pump ⏰ 2022-01-16 17:50:08+00:00 1.0 1546300553 715 30 minutes left until our pump ⏰ 2022-01-16 17:30:07+00:00 1.0 1546300553 714 1 hour left until our pump ⏰ 2022-01-16 17:00:30+00:00 1.0 1546300553 713 2 hours left until our pump ⏰ 2022-01-16 16:00:30+00:00 1.0 1546300553 712 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2022-01-16 14:00:46+00:00 1.0 1546300553 711 6 hours left until our pump ⏰ 2022-01-16 12:00:32+00:00 1.0 1546300553 710 12 hours left until our pump ⏰ 2022-01-16 06:01:38+00:00 1.0 1546300553 709 ⏰24 hours left until our pump on hotbitio link to register to platform 2022-01-15 18:00:27+00:00 1.0 1546300553 708 the next pump will be tomorrow sunday platform hotbitio date 16 january ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2022-01-15 11:20:30+00:00 1.0 1546300553 706 pump result very successful pump with more than 1000 gain potential and a big volume we hope that a lot of you made profits in this pump ‌‏low 000200 ‌‏high 0021 ✳️ our next pump will be on subday it will be much bigger stay tuned 2022-01-12 18:16:47+00:00 1.0 1546300553 704 2 minutes left until our pump ☑️ the next message will be the name of the coin 2022-01-12 17:58:01+00:00 1.0 1546300553 703 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2022-01-12 17:55:08+00:00 1.0 1546300553 702 10 minutes left until our pump ⏰ 2022-01-12 17:50:07+00:00 1.0 1546300553 701 30 minutes left until our pump ⏰ 2022-01-12 17:30:14+00:00 1.0 1546300553 700 1 hour left until our pump ⏰ 2022-01-12 17:00:45+00:00 1.0 1546300553 699 2 hours left until our pump ⏰ 2022-01-12 16:01:31+00:00 1.0 1546300553 698 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2022-01-12 14:01:28+00:00 1.0 1546300553 697 6 hours left until our pump ⏰ 2022-01-12 12:00:16+00:00 1.0 1546300553 696 12 hours left until our pump ⏰ 2022-01-12 06:00:20+00:00 1.0 1546300553 695 ⏰24 hours left until our pump on hotbitio link to register to platform 2022-01-11 18:00:46+00:00 1.0 1546300553 694 the next pump will be tomorrow wednesday platform hotbitio date 12 january ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2022-01-11 09:41:01+00:00 1.0 1546300553 691 pump result another very perfect pump with 1800 gain potential and a big amount of volume we hope that all could make a profit ‏low 00023 ‏high 0019 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2022-01-09 19:10:16+00:00 1.0 1546300553 689 2 minutes left until our pump ☑️ the next message will be the name of the coin 2022-01-09 18:58:06+00:00 1.0 1546300553 688 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2022-01-09 18:55:06+00:00 1.0 1546300553 687 10 minutes left until our pump ⏰ 2022-01-09 18:50:05+00:00 1.0 1546300553 686 30 minutes left until our pump ⏰ 2022-01-09 18:30:38+00:00 1.0 1546300553 685 1 hour left until our pump ⏰ 2022-01-09 18:01:31+00:00 1.0 1546300553 683 30 minutes left until our pump ⏰ 2022-01-09 17:30:25+00:00 1.0 1546300553 682 1 hour left until our pump ⏰ 2022-01-09 17:01:56+00:00 1.0 1546300553 681 2 hours left until our pump ⏰ 2022-01-09 16:00:45+00:00 1.0 1546300553 680 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2022-01-09 14:00:11+00:00 1.0 1546300553 679 6 hours left until our pump ⏰ 2022-01-09 12:01:03+00:00 1.0 1546300553 678 12 hours left until our pump ⏰ 2022-01-09 06:00:06+00:00 1.0 1546300553 677 ⏰24 hours left until our pump on hotbitio link to register to platform 2022-01-08 18:00:27+00:00 1.0 1546300553 676 the next pump will be tomorrow sunday platform hotbitio date 9 january ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2022-01-08 15:35:55+00:00 1.0 1546300553 674 pump result very successful pump with more than 1200 gain potential and a big volume we hope that a lot of you made profits in this pump ‌‏low 0008710 ‌‏high 0099 ✳️ our next pump will be on subday it will be much bigger stay tuned 2022-01-05 18:11:50+00:00 1.0 1546300553 672 2 minutes left until our pump ☑️ the next message will be the name of the coin 2022-01-05 17:58:06+00:00 1.0 1546300553 671 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2022-01-05 17:55:08+00:00 1.0 1546300553 670 10 minutes left until our pump ⏰ 2022-01-05 17:50:07+00:00 1.0 1546300553 669 30 minutes left until our pump ⏰ 2022-01-05 17:30:12+00:00 1.0 1546300553 668 1 hour left until our pump ⏰ 2022-01-05 17:01:53+00:00 1.0 1546300553 667 2 hours left until our pump ⏰ 2022-01-05 16:00:26+00:00 1.0 1546300553 666 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2022-01-05 14:01:06+00:00 1.0 1546300553 665 6 hours left until our pump ⏰ 2022-01-05 12:00:21+00:00 1.0 1546300553 664 12 hours left until our pump ⏰ 2022-01-05 06:00:08+00:00 1.0 1546300553 663 ⏰24 hours left until our pump on hotbitio link to register to platform 2022-01-04 18:02:03+00:00 1.0 1546300553 662 the next pump will be tomorrow wednesday platform hotbitio date 5 january ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2022-01-04 12:25:39+00:00 1.0 1546300553 660 pump result another very perfect pump with 1800 gain potential and a big amount of volume we hope that all could make a profit ‏low 0002500 ‏high 003 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2022-01-02 18:23:00+00:00 1.0 1546300553 657 2 minutes left until our pump ☑️ the next message will be the name of the coin 2022-01-02 17:58:06+00:00 1.0 1546300553 656 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2022-01-02 17:55:05+00:00 1.0 1546300553 655 10 minutes left until our pump ⏰ 2022-01-02 17:50:09+00:00 1.0 1546300553 654 30 minutes left until our pump ⏰ 2022-01-02 17:30:15+00:00 1.0 1546300553 653 1 hour left until our pump ⏰ 2022-01-02 17:00:58+00:00 1.0 1546300553 652 2 hours left until our pump ⏰ 2022-01-02 16:00:40+00:00 1.0 1546300553 651 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2022-01-02 14:01:24+00:00 1.0 1546300553 650 6 hours left until our pump ⏰ 2022-01-02 12:01:39+00:00 1.0 1546300553 649 12 hours left until our pump ⏰ 2022-01-02 06:02:03+00:00 1.0 1546300553 648 ⏰24 hours left until our pump on hotbitio link to register to platform 2022-01-01 18:00:27+00:00 1.0 1546300553 647 the next pump will be tomorrow sunday platform hotbitio date 2 january ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2022-01-01 10:40:10+00:00 1.0 1546300553 646 pump result very successful pump with more than 2600 gain potential and a big volume we hope that a lot of you made profits in this pump ‌‏low 0006014 ‌‏high 018 ✳️ our next pump will be on subday it will be much bigger stay tuned 2021-12-29 18:14:09+00:00 1.0 1546300553 644 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-29 17:58:06+00:00 1.0 1546300553 643 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-29 17:55:06+00:00 1.0 1546300553 642 10 minutes left until our pump ⏰ 2021-12-29 17:50:06+00:00 1.0 1546300553 641 30 minutes left until our pump ⏰ 2021-12-29 17:30:26+00:00 1.0 1546300553 640 1 hour left until our pump ⏰ 2021-12-29 17:01:18+00:00 1.0 1546300553 639 2 hours left until our pump ⏰ 2021-12-29 16:00:50+00:00 1.0 1546300553 638 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-29 14:01:00+00:00 1.0 1546300553 637 6 hours left until our pump ⏰ 2021-12-29 12:00:38+00:00 1.0 1546300553 636 12 hours left until our pump ⏰ 2021-12-29 06:00:17+00:00 1.0 1546300553 635 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-28 18:01:23+00:00 1.0 1546300553 634 the next pump will be tomorrow wednesday platform hotbitio date 29 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-28 10:17:41+00:00 1.0 1546300553 632 pump result another very perfect pump with 1500 gain potential and a big amount of volume we hope that all could make a profit ‏low 00175 ‏high 018 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-12-26 18:09:08+00:00 1.0 1546300553 630 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-26 17:58:06+00:00 1.0 1546300553 629 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-26 17:55:06+00:00 1.0 1546300553 628 10 minutes left until our pump ⏰ 2021-12-26 17:50:06+00:00 1.0 1546300553 627 30 minutes left until our pump ⏰ 2021-12-26 17:31:05+00:00 1.0 1546300553 626 1 hour left until our pump ⏰ 2021-12-26 17:00:15+00:00 1.0 1546300553 625 2 hours left until our pump ⏰ 2021-12-26 16:00:13+00:00 1.0 1546300553 624 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-26 14:00:48+00:00 1.0 1546300553 623 6 hours left until our pump ⏰ 2021-12-26 12:00:53+00:00 1.0 1546300553 622 12 hours left until our pump ⏰ 2021-12-26 06:00:53+00:00 1.0 1546300553 621 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-25 18:01:28+00:00 1.0 1546300553 620 the next pump will be tomorrow sunday platform hotbitio date 26 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-25 14:32:28+00:00 1.0 1546300553 619 pump result very great pump with more than 1800 gain potential we hope that a lot of you made profits in this pump ‌‏low 0002200 ‌‏high 0037 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2021-12-22 18:30:19+00:00 1.0 1546300553 617 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-22 17:58:06+00:00 1.0 1546300553 616 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-22 17:55:11+00:00 1.0 1546300553 615 10 minutes left until our pump ⏰ 2021-12-22 17:50:05+00:00 1.0 1546300553 614 30 minutes left until our pump ⏰ 2021-12-22 17:30:25+00:00 1.0 1546300553 613 1 hour left until our pump ⏰ 2021-12-22 17:00:31+00:00 1.0 1546300553 612 2 hours left until our pump ⏰ 2021-12-22 16:01:51+00:00 1.0 1546300553 611 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-22 14:00:22+00:00 1.0 1546300553 610 6 hours left until our pump ⏰ 2021-12-22 12:00:47+00:00 1.0 1546300553 609 12 hours left until our pump ⏰ 2021-12-22 06:01:30+00:00 1.0 1546300553 608 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-21 18:00:36+00:00 1.0 1546300553 607 the next pump will be tomorrow wednesday platform hotbitio date 22 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-21 14:42:28+00:00 1.0 1546300553 606 pump result another amazing pump with 1200 gain potential and a big amount of volume we hope that all could make a profit ‏low 00583 ‏high 07 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-12-19 18:12:03+00:00 1.0 1546300553 604 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-19 17:58:06+00:00 1.0 1546300553 603 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-19 17:55:06+00:00 1.0 1546300553 602 10 minutes left until our pump ⏰ 2021-12-19 17:50:06+00:00 1.0 1546300553 601 30 minutes left until our pump ⏰ 2021-12-19 17:30:14+00:00 1.0 1546300553 600 1 hour left until our pump ⏰ 2021-12-19 17:00:37+00:00 1.0 1546300553 599 2 hours left until our pump ⏰ 2021-12-19 16:00:47+00:00 1.0 1546300553 598 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-19 14:00:36+00:00 1.0 1546300553 597 6 hours left until our pump ⏰ 2021-12-19 12:02:02+00:00 1.0 1546300553 596 12 hours left until our pump ⏰ 2021-12-19 06:01:33+00:00 1.0 1546300553 595 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-18 18:01:39+00:00 1.0 1546300553 594 the next pump will be tomorrow sunday platform hotbitio date 19 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-18 10:40:31+00:00 1.0 1546300553 593 ✅ it was a great pump today as we could rise the pump to more than 1700 ‏low 0001530 ‏high 003 ‏i hope everyone could make profits ✅ our next pump will be on sunday it will be much bigger stay tuned 2021-12-15 18:24:10+00:00 1.0 1546300553 591 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-15 17:58:06+00:00 1.0 1546300553 590 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-15 17:55:11+00:00 1.0 1546300553 589 10 minutes left until our pump ⏰ 2021-12-15 17:50:06+00:00 1.0 1546300553 588 30 minutes left until our pump ⏰ 2021-12-15 17:30:26+00:00 1.0 1546300553 587 1 hour left until our pump ⏰ 2021-12-15 17:01:23+00:00 1.0 1546300553 586 2 hours left until our pump ⏰ 2021-12-15 16:01:38+00:00 1.0 1546300553 585 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-15 14:01:42+00:00 1.0 1546300553 584 6 hours left until our pump ⏰ 2021-12-15 12:01:45+00:00 1.0 1546300553 583 12 hours left until our pump ⏰ 2021-12-15 06:00:34+00:00 1.0 1546300553 582 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-14 18:01:54+00:00 1.0 1546300553 581 the next pump will be tomorrow wednesday platform hotbitio date 15 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-14 13:55:05+00:00 1.0 1546300553 580 ✅ it was a great pump today as we could rise the pump to more than 2400 ‏low 00016311 ‏high 003 ‏i hope everyone could make profits ✅ our next pump will be on wednesday it will be much bigger stay tuned 2021-12-12 18:14:41+00:00 1.0 1546300553 577 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-12 17:58:06+00:00 1.0 1546300553 576 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-12 17:55:06+00:00 1.0 1546300553 575 10 minutes left until our pump ⏰ 2021-12-12 17:50:06+00:00 1.0 1546300553 574 30 minutes left until our pump ⏰ 2021-12-12 17:30:17+00:00 1.0 1546300553 573 1 hour left until our pump ⏰ 2021-12-12 17:00:24+00:00 1.0 1546300553 572 2 hours left until our pump ⏰ 2021-12-12 16:00:24+00:00 1.0 1546300553 571 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-12 14:00:46+00:00 1.0 1546300553 570 6 hours left until our pump ⏰ 2021-12-12 12:02:05+00:00 1.0 1546300553 569 12 hours left until our pump ⏰ 2021-12-12 06:00:30+00:00 1.0 1546300553 568 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-11 18:00:17+00:00 1.0 1546300553 567 the next pump will be tomorrow sunday platform hotbitio date 12 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-11 13:47:38+00:00 1.0 1546300553 566 pump result another very amazing pump with 2000 gain potential and a big amount of volume we hope that all could make a profit ‏low 0000056 ‏high 00012 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2021-12-08 18:13:08+00:00 1.0 1546300553 563 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-08 17:58:06+00:00 1.0 1546300553 562 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-08 17:55:06+00:00 1.0 1546300553 561 10 minutes left until our pump ⏰ 2021-12-08 17:50:06+00:00 1.0 1546300553 560 30 minutes left until our pump ⏰ 2021-12-08 17:30:16+00:00 1.0 1546300553 559 1 hour left until our pump ⏰ 2021-12-08 17:00:17+00:00 1.0 1546300553 558 2 hours left until our pump ⏰ 2021-12-08 16:01:02+00:00 1.0 1546300553 557 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-08 14:00:21+00:00 1.0 1546300553 556 6 hours left until our pump ⏰ 2021-12-08 12:02:03+00:00 1.0 1546300553 555 12 hours left until our pump ⏰ 2021-12-08 06:01:34+00:00 1.0 1546300553 554 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-07 18:00:38+00:00 1.0 1546300553 553 the next pump will be tomorrow wednesday platform hotbitio date 8 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-07 14:59:57+00:00 1.0 1546300553 552 pump result very great pump with more than 3000 gain potential we hope that a lot of you made profits in this pump ‌‏low 0000600 ‌‏high 0015 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-12-05 18:16:46+00:00 1.0 1546300553 549 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-05 17:58:06+00:00 1.0 1546300553 548 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-05 17:55:06+00:00 1.0 1546300553 547 10 minutes left until our pump ⏰ 2021-12-05 17:50:06+00:00 1.0 1546300553 546 30 minutes left until our pump ⏰ 2021-12-05 17:30:37+00:00 1.0 1546300553 545 1 hour left until our pump ⏰ 2021-12-05 17:00:34+00:00 1.0 1546300553 544 2 hours left until our pump ⏰ 2021-12-05 16:01:02+00:00 1.0 1546300553 543 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-05 14:01:34+00:00 1.0 1546300553 542 6 hours left until our pump ⏰ 2021-12-05 12:01:37+00:00 1.0 1546300553 541 12 hours left until our pump ⏰ 2021-12-05 06:00:51+00:00 1.0 1546300553 540 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-12-04 18:00:45+00:00 1.0 1546300553 539 the next pump will be on sunday platform hotbitio date 5 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-12-03 14:59:15+00:00 1.0 1546300553 538 pump result another very amazing pump with 1600 gain potential and a big amount of volume we hope that all could make a profit ‏low 000006007 ‏high 000093 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2021-12-01 18:19:49+00:00 1.0 1546300553 536 the coin name is fbn it is a good coin to pump 2021-12-01 18:00:10+00:00 1.0 1546300553 535 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-12-01 17:58:06+00:00 1.0 1546300553 534 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-12-01 17:55:06+00:00 1.0 1546300553 533 10 minutes left until our pump ⏰ 2021-12-01 17:50:06+00:00 1.0 1546300553 532 30 minutes left until our pump ⏰ 2021-12-01 17:30:14+00:00 1.0 1546300553 531 1 hour left until our pump ⏰ 2021-12-01 17:00:20+00:00 1.0 1546300553 530 2 hours left until our pump ⏰ 2021-12-01 16:00:09+00:00 1.0 1546300553 529 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-12-01 14:01:40+00:00 1.0 1546300553 528 6 hours left until our pump ⏰ 2021-12-01 12:01:12+00:00 1.0 1546300553 527 12 hours left until our pump ⏰ 2021-12-01 06:01:39+00:00 1.0 1546300553 526 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-30 18:00:40+00:00 1.0 1546300553 525 the next pump will be on wednesday platform hotbitio date 1 december ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-11-29 14:23:52+00:00 1.0 1546300553 524 pump result very great pump with more than 3000 gain potential we hope that a lot of you made profits in this pump ‌‏low 000091100 ‌‏high 002999 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-11-28 18:16:04+00:00 1.0 1546300553 523 the coin name is xgm it is a perfect coin to pump 2021-11-28 18:00:08+00:00 1.0 1546300553 522 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-28 17:58:06+00:00 1.0 1546300553 521 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-28 17:55:06+00:00 1.0 1546300553 520 10 minutes left until our pump ⏰ 2021-11-28 17:50:06+00:00 1.0 1546300553 519 30 minutes left until our pump ⏰ 2021-11-28 17:30:18+00:00 1.0 1546300553 518 1 hour left until our pump ⏰ 2021-11-28 17:00:32+00:00 1.0 1546300553 517 2 hours left until our pump ⏰ 2021-11-28 16:01:44+00:00 1.0 1546300553 516 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-28 14:00:36+00:00 1.0 1546300553 515 6 hours left until our pump ⏰ 2021-11-28 12:00:42+00:00 1.0 1546300553 514 12 hours left until our pump ⏰ 2021-11-28 06:00:37+00:00 1.0 1546300553 513 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-27 18:01:33+00:00 1.0 1546300553 512 pump result another very amazing pump with 2700 gain potential and a big amount of volume we hope that all could make a profit ‏low 0000369 ‏high 00108 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2021-11-24 18:10:27+00:00 1.0 1546300553 510 the coin name is fds it is a good coin to pump 2021-11-24 18:00:13+00:00 1.0 1546300553 509 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-24 17:58:06+00:00 1.0 1546300553 508 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-24 17:55:06+00:00 1.0 1546300553 507 10 minutes left until our pump ⏰ 2021-11-24 17:50:06+00:00 1.0 1546300553 506 30 minutes left until our pump ⏰ 2021-11-24 17:30:32+00:00 1.0 1546300553 505 1 hour left until our pump ⏰ 2021-11-24 17:01:18+00:00 1.0 1546300553 504 2 hours left until our pump ⏰ 2021-11-24 16:00:09+00:00 1.0 1546300553 503 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-24 14:01:55+00:00 1.0 1546300553 502 6 hours left until our pump ⏰ 2021-11-24 12:01:02+00:00 1.0 1546300553 501 12 hours left until our pump ⏰ 2021-11-24 06:01:30+00:00 1.0 1546300553 500 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-23 18:00:31+00:00 1.0 1546300553 499 pump result it was a good pump with 1400 gain potential we hope that a lot of you made profits in this pump and sorry again because the pump was delyed to this late time but as we told before it was due to maintenance on hotbit ‌‏low 0015 ‌‏high 025 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-11-21 21:25:21+00:00 1.0 1546300553 497 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-21 20:58:06+00:00 1.0 1546300553 496 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-21 20:55:07+00:00 1.0 1546300553 495 10 minutes left until our pump ⏰ 2021-11-21 20:50:11+00:00 1.0 1546300553 494 30 minutes left until our pump ⏰ 2021-11-21 20:30:28+00:00 1.0 1546300553 493 1 hour left until our pump ⏰ 2021-11-21 20:00:13+00:00 1.0 1546300553 492 2 hours left until our pump ⏰ 2021-11-21 19:00:06+00:00 1.0 1546300553 490 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-21 14:00:29+00:00 1.0 1546300553 489 6 hours left until our pump ⏰ 2021-11-21 12:01:56+00:00 1.0 1546300553 488 12 hours left until our pump ⏰ 2021-11-21 06:01:57+00:00 1.0 1546300553 487 24 hours left until our pump ⏰ 2021-11-20 18:01:15+00:00 1.0 1546300553 486 the next pump will be tomorrow sunday platform hotbitio date 21 november ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-11-20 10:52:27+00:00 1.0 1546300553 485 pump result very great pump with more than 2300 gain potential we hope that a lot of you made profits in this pump ‌‏low 0000133 ‌‏high 0003 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2021-11-17 18:16:07+00:00 1.0 1546300553 484 the coin name is sbear it is a good coin to pump 2021-11-17 18:00:30+00:00 1.0 1546300553 483 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-17 17:58:06+00:00 1.0 1546300553 482 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-17 17:55:06+00:00 1.0 1546300553 481 10 minutes left until our pump ⏰ 2021-11-17 17:50:06+00:00 1.0 1546300553 480 30 minutes left until our pump ⏰ 2021-11-17 17:30:37+00:00 1.0 1546300553 479 1 hour left until our pump ⏰ 2021-11-17 17:00:35+00:00 1.0 1546300553 478 2 hours left until our pump ⏰ 2021-11-17 16:00:23+00:00 1.0 1546300553 477 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-17 14:00:58+00:00 1.0 1546300553 476 6 hours left until our pump ⏰ 2021-11-17 12:01:23+00:00 1.0 1546300553 475 12 hours left until our pump ⏰ 2021-11-17 06:01:53+00:00 1.0 1546300553 474 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-16 18:01:46+00:00 1.0 1546300553 473 the next pump will be tomorrow wednesday platform hotbitio date 17 november ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-11-16 15:53:47+00:00 1.0 1546300553 472 pump result another amazing pump with 2000 gain potential and a big amount of volume we hope that all could make a profit ‏low 0005000 ‏high 0099 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-11-14 18:20:28+00:00 1.0 1546300553 470 the coin name is aac it is a good coin to pump 2021-11-14 18:00:08+00:00 1.0 1546300553 469 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-14 17:58:06+00:00 1.0 1546300553 468 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-14 17:55:06+00:00 1.0 1546300553 467 10 minutes left until our pump ⏰ 2021-11-14 17:50:06+00:00 1.0 1546300553 466 30 minutes left until our pump ⏰ 2021-11-14 17:30:42+00:00 1.0 1546300553 465 1 hour left until our pump ⏰ 2021-11-14 17:01:04+00:00 1.0 1546300553 464 2 hours left until our pump ⏰ 2021-11-14 16:00:48+00:00 1.0 1546300553 463 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-14 14:01:22+00:00 1.0 1546300553 462 6 hours left until our pump ⏰ 2021-11-14 12:00:30+00:00 1.0 1546300553 461 12 hours left until our pump ⏰ 2021-11-14 06:01:56+00:00 1.0 1546300553 460 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-13 18:01:44+00:00 1.0 1546300553 459 the next pump will be on sunday platform hotbitio date 14 november ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-11-12 15:48:17+00:00 1.0 1546300553 458 pump result very great pump with more than 3300 gain potential we hope that a lot of you made profits in this pump ‏low 000117567 ‏high 00456 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2021-11-10 18:27:52+00:00 1.0 1546300553 455 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-10 17:58:06+00:00 1.0 1546300553 454 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-10 17:55:06+00:00 1.0 1546300553 453 10 minutes left until our pump ⏰ 2021-11-10 17:50:06+00:00 1.0 1546300553 452 30 minutes left until our pump ⏰ 2021-11-10 17:30:28+00:00 1.0 1546300553 451 1 hour left until our pump ⏰ 2021-11-10 17:01:59+00:00 1.0 1546300553 450 2 hours left until our pump ⏰ 2021-11-10 16:01:43+00:00 1.0 1546300553 449 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-10 14:00:20+00:00 1.0 1546300553 448 6 hours left until our pump ⏰ 2021-11-10 12:01:37+00:00 1.0 1546300553 447 12 hours left until our pump ⏰ 2021-11-10 06:00:28+00:00 1.0 1546300553 446 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-09 18:00:35+00:00 1.0 1546300553 445 the next pump will be on wednesday platform hotbitio date 10 november ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-11-08 14:09:38+00:00 1.0 1546300553 444 pump result very great pump with more than 2800 gain potential we hope that a lot of you made profits in this pump ‏low 000612000 ‏high 0177 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-11-07 18:16:52+00:00 1.0 1546300553 443 the coin name is peos it is a good coin to pump 2021-11-07 18:00:03+00:00 1.0 1546300553 442 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-07 17:58:06+00:00 1.0 1546300553 441 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-07 17:55:05+00:00 1.0 1546300553 440 10 minutes left until our pump ⏰ 2021-11-07 17:50:06+00:00 1.0 1546300553 439 30 minutes left until our pump ⏰ 2021-11-07 17:30:53+00:00 1.0 1546300553 438 1 hour left until our pump ⏰ 2021-11-07 17:00:50+00:00 1.0 1546300553 437 2 hours left until our pump ⏰ 2021-11-07 16:00:06+00:00 1.0 1546300553 436 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-07 14:00:37+00:00 1.0 1546300553 435 6 hours left until our pump ⏰ 2021-11-07 12:00:49+00:00 1.0 1546300553 434 12 hours left until our pump ⏰ 2021-11-07 06:01:58+00:00 1.0 1546300553 433 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-06 18:00:59+00:00 1.0 1546300553 432 the next pump will be on sunday platform hotbitio date 7 november ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-11-05 17:04:29+00:00 1.0 1546300553 431 pump result very great pump with more than 7000 gain potential we hope that a lot of you made profits in this pump ‏low 0000485 ‏high 0006 ✳️ our next pump will be on sunday it will be much bigger stay tuned 2021-11-03 18:26:36+00:00 1.0 1546300553 429 the coin name is eidos it is a good coin to pump 2021-11-03 18:00:04+00:00 1.0 1546300553 428 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-11-03 17:58:06+00:00 1.0 1546300553 427 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-11-03 17:55:06+00:00 1.0 1546300553 426 10 minutes left until our pump ⏰ 2021-11-03 17:50:06+00:00 1.0 1546300553 425 30 minutes left until our pump ⏰ 2021-11-03 17:30:06+00:00 1.0 1546300553 424 1 hour left until our pump ⏰ 2021-11-03 17:00:11+00:00 1.0 1546300553 423 2 hours left until our pump ⏰ 2021-11-03 16:00:06+00:00 1.0 1546300553 422 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-11-03 14:00:06+00:00 1.0 1546300553 421 6 hours left until our pump ⏰ 2021-11-03 12:00:06+00:00 1.0 1546300553 420 12 hours left until our pump ⏰ 2021-11-03 06:00:06+00:00 1.0 1546300553 419 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-11-02 18:00:06+00:00 1.0 1546300553 418 the next pump will be on wednesday platform hotbitio date 3 november ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-11-01 13:43:42+00:00 1.0 1546300553 417 pump result another amazing pump with 2400 gain potential and a big amount of volume we hope that all could make a profit ‏low 00069 ‏high 0152 ✳️ our next pump will be on wednesday it will be much bigger stay tuned 2021-10-31 18:22:45+00:00 1.0 1546300553 415 the coin name is mash it is a good coin to pump 2021-10-31 18:00:01+00:00 1.0 1546300553 414 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-31 17:58:06+00:00 1.0 1546300553 413 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-31 17:55:06+00:00 1.0 1546300553 412 10 minutes left until our pump ⏰ 2021-10-31 17:50:06+00:00 1.0 1546300553 411 30 minutes left until our pump ⏰ 2021-10-31 17:30:06+00:00 1.0 1546300553 410 1 hour left until our pump ⏰ 2021-10-31 17:00:06+00:00 1.0 1546300553 409 2 hours left until our pump ⏰ 2021-10-31 16:00:06+00:00 1.0 1546300553 408 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-31 14:00:06+00:00 1.0 1546300553 407 6 hours left until our pump ⏰ 2021-10-31 12:00:06+00:00 1.0 1546300553 406 12 hours left until our pump ⏰ 2021-10-31 06:00:06+00:00 1.0 1546300553 405 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-30 17:00:06+00:00 1.0 1546300553 404 the next pump will be tomorrow platform hotbitio date 31 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-10-30 12:29:54+00:00 1.0 1546300553 403 ✅ it was a very great pump today as we could rise the pump to more than 2900 ‏low 000099000 ‏high 0025 ‏i hope everyone could make profits ✅ our next pump will be on sunday it will be much bigger stay tuned 2021-10-27 17:15:40+00:00 1.0 1546300553 401 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-27 16:58:06+00:00 1.0 1546300553 400 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-27 16:55:06+00:00 1.0 1546300553 399 10 minutes left until our pump ⏰ 2021-10-27 16:50:05+00:00 1.0 1546300553 398 30 minutes left until our pump ⏰ 2021-10-27 16:30:06+00:00 1.0 1546300553 397 1 hour left until our pump ⏰ 2021-10-27 16:00:06+00:00 1.0 1546300553 396 2 hours left until our pump ⏰ 2021-10-27 15:00:06+00:00 1.0 1546300553 395 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-27 13:00:06+00:00 1.0 1546300553 394 6 hours left until our pump ⏰ 2021-10-27 11:00:06+00:00 1.0 1546300553 393 12 hours left until our pump ⏰ 2021-10-27 05:00:09+00:00 1.0 1546300553 392 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-26 17:00:06+00:00 1.0 1546300553 391 the next pump will be on wednesday platform hotbitio date 27 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-10-25 15:19:42+00:00 1.0 1546300553 389 ✅ it was a very great pump today as we could rise the pump to more than 1100 ‏low 0004010 ‏high 006 ‏i hope everyone could make profits ✅ our next pump will be on wednesday it will be much bigger stay tuned 2021-10-24 17:10:10+00:00 1.0 1546300553 387 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-24 16:58:06+00:00 1.0 1546300553 386 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-24 16:55:06+00:00 1.0 1546300553 385 10 minutes left until our pump ⏰ 2021-10-24 16:50:06+00:00 1.0 1546300553 384 30 minutes left until our pump ⏰ 2021-10-24 16:30:06+00:00 1.0 1546300553 383 1 hour left until our pump ⏰ 2021-10-24 16:00:06+00:00 1.0 1546300553 382 2 hours left until our pump ⏰ 2021-10-24 15:00:06+00:00 1.0 1546300553 381 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-24 13:00:06+00:00 1.0 1546300553 380 6 hours left until our pump ⏰ 2021-10-24 11:00:07+00:00 1.0 1546300553 379 12 hours left until our pump ⏰ 2021-10-24 05:00:05+00:00 1.0 1546300553 378 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-23 17:00:06+00:00 1.0 1546300553 377 the next pump will be on sunday platform hotbitio date 24 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-10-22 14:39:58+00:00 1.0 1546300553 376 ✅ it was a very great pump today as we could rise the pump to more than 4000 ‏low 0001448 ‏high 005 ‏i hope everyone could make profits ✅ our next pump will be on sunday it will be much bigger stay tuned 2021-10-20 17:11:27+00:00 1.0 1546300553 374 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-20 16:58:06+00:00 1.0 1546300553 373 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-20 16:55:06+00:00 1.0 1546300553 372 10 minutes left until our pump ⏰ 2021-10-20 16:50:06+00:00 1.0 1546300553 371 30 minutes left until our pump ⏰ 2021-10-20 16:30:06+00:00 1.0 1546300553 370 1 hour left until our pump ⏰ 2021-10-20 16:00:06+00:00 1.0 1546300553 369 2 hours left until our pump ⏰ 2021-10-20 15:00:06+00:00 1.0 1546300553 368 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-20 13:00:06+00:00 1.0 1546300553 367 6 hours left until our pump ⏰ 2021-10-20 11:00:06+00:00 1.0 1546300553 366 12 hours left until our pump ⏰ 2021-10-20 05:00:06+00:00 1.0 1546300553 365 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-19 17:00:06+00:00 1.0 1546300553 364 ✅ it was a very great pump today as we could rise the pump to more than 1800 ‏low 020 ‏high 207 ‏i hope everyone could make profits ✅ our next pump will be on wednesday it will be much bigger stay tuned 2021-10-17 17:11:18+00:00 1.0 1546300553 362 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-17 16:58:06+00:00 1.0 1546300553 361 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-17 16:55:06+00:00 1.0 1546300553 360 10 minutes left until our pump ⏰ 2021-10-17 16:50:06+00:00 1.0 1546300553 359 30 minutes left until our pump ⏰ 2021-10-17 16:30:06+00:00 1.0 1546300553 358 1 hour left until our pump ⏰ 2021-10-17 16:00:06+00:00 1.0 1546300553 357 2 hours left until our pump ⏰ 2021-10-17 15:00:06+00:00 1.0 1546300553 356 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-17 13:00:06+00:00 1.0 1546300553 355 6 hours left until our pump ⏰ 2021-10-17 11:00:06+00:00 1.0 1546300553 354 12 hours left until our pump ⏰ 2021-10-17 05:00:06+00:00 1.0 1546300553 353 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-16 17:00:06+00:00 1.0 1546300553 350 the next pump will be on sunday platform hotbitio date 17 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-10-15 22:06:50+00:00 1.0 1546300553 349 ✅ it was a very great pump today as we could rise the pump to more than 2000 ‏low 00092 ‏high 02 ‏i hope everyone could make profits ✅ our next pump will be on sunday it will be much bigger stay tuned 2021-10-13 17:21:58+00:00 1.0 1546300553 347 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-13 16:58:06+00:00 1.0 1546300553 346 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-13 16:55:05+00:00 1.0 1546300553 345 10 minutes left until our pump ⏰ 2021-10-13 16:50:06+00:00 1.0 1546300553 344 30 minutes left until our pump ⏰ 2021-10-13 16:30:06+00:00 1.0 1546300553 343 1 hour left until our pump ⏰ 2021-10-13 16:00:05+00:00 1.0 1546300553 342 2 hours left until our pump ⏰ 2021-10-13 15:00:06+00:00 1.0 1546300553 341 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-13 13:00:06+00:00 1.0 1546300553 340 6 hours left until our pump ⏰ 2021-10-13 11:00:06+00:00 1.0 1546300553 339 12 hours left until our pump ⏰ 2021-10-13 05:00:06+00:00 1.0 1546300553 338 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-12 17:00:06+00:00 1.0 1546300553 337 the next pump will be on wednesday platform hotbitio date 13 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-10-11 12:23:01+00:00 1.0 1546300553 334 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-10 16:58:06+00:00 1.0 1546300553 333 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-10 16:55:05+00:00 1.0 1546300553 332 10 minutes left until our pump ⏰ 2021-10-10 16:50:06+00:00 1.0 1546300553 331 30 minutes left until our pump ⏰ 2021-10-10 16:30:06+00:00 1.0 1546300553 330 1 hour left until our pump ⏰ 2021-10-10 16:00:06+00:00 1.0 1546300553 329 2 hours left until our pump ⏰ 2021-10-10 15:00:06+00:00 1.0 1546300553 328 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-10 13:00:06+00:00 1.0 1546300553 327 6 hours left until our pump ⏰ 2021-10-10 11:00:07+00:00 1.0 1546300553 326 12 hours left until our pump ⏰ 2021-10-10 05:00:06+00:00 1.0 1546300553 325 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-09 17:00:05+00:00 1.0 1546300553 324 the next pump will be on sunday platform hotbitio date 10 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-10-08 12:12:20+00:00 1.0 1546300553 321 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-06 16:58:06+00:00 1.0 1546300553 320 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-06 16:55:06+00:00 1.0 1546300553 319 10 minutes left until our pump ⏰ 2021-10-06 16:50:06+00:00 1.0 1546300553 318 30 minutes left until our pump ⏰ 2021-10-06 16:30:06+00:00 1.0 1546300553 317 1 hour left until our pump ⏰ 2021-10-06 16:00:06+00:00 1.0 1546300553 316 2 hours left until our pump ⏰ 2021-10-06 15:00:06+00:00 1.0 1546300553 315 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-06 13:00:06+00:00 1.0 1546300553 314 6 hours left until our pump ⏰ 2021-10-06 11:00:06+00:00 1.0 1546300553 313 12 hours left until our pump ⏰ 2021-10-06 05:00:06+00:00 1.0 1546300553 311 less than 24 hours left until our pump tomorrow wednesday platform hotbitio date 6 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-10-05 19:27:16+00:00 1.0 1546300553 310 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-05 17:00:08+00:00 1.0 1546300553 307 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-10-03 16:58:06+00:00 1.0 1546300553 306 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-10-03 16:55:06+00:00 1.0 1546300553 305 10 minutes left until our pump ⏰ 2021-10-03 16:50:11+00:00 1.0 1546300553 304 15 minutes left until our pump ⏰ 2021-10-03 16:45:07+00:00 1.0 1546300553 303 30 minutes left until our pump ⏰ 2021-10-03 16:30:06+00:00 1.0 1546300553 302 1 hour left until our pump ⏰ 2021-10-03 16:00:05+00:00 1.0 1546300553 301 2 hours left until our pump ⏰ 2021-10-03 15:00:06+00:00 1.0 1546300553 300 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-10-03 11:15:02+00:00 1.0 1546300553 299 6 hours left until our pump ⏰ 2021-10-03 11:00:07+00:00 1.0 1546300553 298 12 hours left until our pump ⏰ 2021-10-03 05:00:06+00:00 1.0 1546300553 297 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-10-02 17:00:05+00:00 1.0 1546300553 294 the next pump will be on sunday platform hotbitio date 3 october ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-09-30 17:53:09+00:00 1.0 1546300553 293 ✅ it was a great pump today as we could rise the pump to more than 700 low 0000893 high 00067 i hope everyone could earn profits wait us in the next pump on sunday ✅ 2021-09-29 17:14:00+00:00 1.0 1546300553 291 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-09-29 16:58:06+00:00 1.0 1546300553 290 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-09-29 16:55:06+00:00 1.0 1546300553 289 10 minutes left until our pump ⏰ 2021-09-29 16:50:06+00:00 1.0 1546300553 288 15 minutes left until our pump ⏰ 2021-09-29 16:45:05+00:00 1.0 1546300553 287 30 minutes left until our pump ⏰ 2021-09-29 16:30:06+00:00 1.0 1546300553 286 1 hour left until our pump ⏰ 2021-09-29 16:00:06+00:00 1.0 1546300553 285 2 hours left until our pump ⏰ 2021-09-29 15:00:06+00:00 1.0 1546300553 284 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-29 13:00:06+00:00 1.0 1546300553 283 6 hours left until our pump ⏰ 2021-09-29 11:00:05+00:00 1.0 1546300553 282 12 hours left until our pump ⏰ 2021-09-29 05:00:06+00:00 1.0 1546300553 279 the next pump will be on wednesday platform hotbitio date 29 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-09-27 16:33:42+00:00 1.0 1546300553 276 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-09-26 16:58:06+00:00 1.0 1546300553 275 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-09-26 16:55:06+00:00 1.0 1546300553 274 10 minutes left until our pump ⏰ 2021-09-26 16:50:05+00:00 1.0 1546300553 273 15 minutes left until our pump ⏰ 2021-09-26 16:45:03+00:00 1.0 1546300553 272 30 minutes left until our pump ⏰ 2021-09-26 16:30:06+00:00 1.0 1546300553 271 1 hour left until our pump ⏰ 2021-09-26 16:00:08+00:00 1.0 1546300553 270 2 hours left until our pump ⏰ 2021-09-26 15:00:06+00:00 1.0 1546300553 269 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-26 13:00:06+00:00 1.0 1546300553 268 6 hours left until our pump ⏰ 2021-09-26 11:00:06+00:00 1.0 1546300553 267 12 hours left until our pump ⏰ 2021-09-26 05:00:06+00:00 1.0 1546300553 266 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-09-25 17:00:06+00:00 1.0 1546300553 265 the next pump will be on sunday platform hotbitio date 26 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-09-24 08:15:06+00:00 1.0 1546300553 262 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-09-22 16:58:06+00:00 1.0 1546300553 261 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-09-22 16:55:07+00:00 1.0 1546300553 260 10 minutes left until our pump ⏰ 2021-09-22 16:50:05+00:00 1.0 1546300553 259 15 minutes left until our pump ⏰ 2021-09-22 16:45:06+00:00 1.0 1546300553 258 30 minutes left until our pump ⏰ 2021-09-22 16:30:06+00:00 1.0 1546300553 257 1 hour left until our pump ⏰ 2021-09-22 16:00:06+00:00 1.0 1546300553 256 2 hours left until our pump ⏰ 2021-09-22 15:00:06+00:00 1.0 1546300553 255 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-22 13:00:06+00:00 1.0 1546300553 254 6 hours left until our pump ⏰ 2021-09-22 11:00:06+00:00 1.0 1546300553 253 12 hours left until our pump ⏰ 2021-09-22 05:00:06+00:00 1.0 1546300553 252 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-09-21 17:00:05+00:00 1.0 1546300553 251 the next pump will be on wednesday platform hotbitio date 22 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-09-20 16:02:59+00:00 1.0 1546300553 248 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-09-19 16:58:06+00:00 1.0 1546300553 247 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-09-19 16:55:06+00:00 1.0 1546300553 246 10 minutes left until our pump ⏰ 2021-09-19 16:50:06+00:00 1.0 1546300553 245 30 minutes left until our pump ⏰ 2021-09-19 16:30:06+00:00 1.0 1546300553 244 1 hour left until our pump ⏰ 2021-09-19 16:00:06+00:00 1.0 1546300553 243 2 hours left until our pump ⏰ 2021-09-19 15:00:07+00:00 1.0 1546300553 242 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-19 13:00:06+00:00 1.0 1546300553 241 6 hours left until our pump ⏰ 2021-09-19 11:00:05+00:00 1.0 1546300553 240 12 hours left until our pump ⏰ 2021-09-19 05:00:07+00:00 1.0 1546300553 239 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-09-18 17:00:05+00:00 1.0 1546300553 238 the next pump will be on sunday platform hotbitio date 19 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-09-17 16:28:46+00:00 1.0 1546300553 235 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-09-15 16:58:06+00:00 1.0 1546300553 234 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-09-15 16:55:06+00:00 1.0 1546300553 233 15 minutes left until our pump ⏰ 2021-09-15 16:45:06+00:00 1.0 1546300553 232 40 minutes left until our pump ⏰ 2021-09-15 16:20:06+00:00 1.0 1546300553 231 2 hours left until our pump ⏰ 2021-09-15 15:00:06+00:00 1.0 1546300553 230 6 hours left until our pump ⏰ how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-15 11:00:06+00:00 1.0 1546300553 229 12 hours left until our pump ⏰ 2021-09-15 05:00:07+00:00 1.0 1546300553 227 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-09-14 17:00:07+00:00 1.0 1546300553 226 the next pump will be tomorrow platform hotbitio date 15 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-09-14 08:27:28+00:00 1.0 1546300553 222 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-09-12 16:58:06+00:00 1.0 1546300553 221 5 minutes left until our pump ⏰ be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-09-12 16:55:06+00:00 1.0 1546300553 220 10 minutes left until our pump ⏰ 2021-09-12 16:50:06+00:00 1.0 1546300553 219 30 minutes left until our pump ⏰ 2021-09-12 16:30:06+00:00 1.0 1546300553 218 1 hour left until our pump ⏰ 2021-09-12 16:00:06+00:00 1.0 1546300553 217 2 hours left until our pump ⏰ 2021-09-12 15:00:06+00:00 1.0 1546300553 216 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-12 13:00:06+00:00 1.0 1546300553 215 6 hours left until our pump ⏰ 2021-09-12 11:00:06+00:00 1.0 1546300553 214 12 hours left until our pump ⏰ 2021-09-12 05:00:07+00:00 1.0 1546300553 213 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-09-11 17:00:06+00:00 1.0 1546300553 210 the next pump will be on sunday platform hotbitio date 12 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt we expect the pump to rise to more than 500 2021-09-10 15:12:15+00:00 1.0 1546300553 202 ⏰ 2 minutes left until our pump ☑️ the next message will be the name of the coin 2021-09-08 16:58:08+00:00 1.0 1546300553 201 ⏰ 5 minutes left until our pump be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared 2021-09-08 16:55:06+00:00 1.0 1546300553 200 ⏰ 10 minutes left until our pump 2021-09-08 16:50:06+00:00 1.0 1546300553 199 ⏰ 30 minutes left until our pump 2021-09-08 16:30:06+00:00 1.0 1546300553 198 ⏰ 1 hour left until our pump 2021-09-08 16:00:06+00:00 1.0 1546300553 197 ⏰ 2 hours left until our pump 2021-09-08 15:00:06+00:00 1.0 1546300553 196 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-08 13:00:06+00:00 1.0 1546300553 195 ⏰ 6 hours left until our pump 2021-09-08 11:00:06+00:00 1.0 1546300553 194 ⏰ 12 hours left until our pump 2021-09-08 05:00:06+00:00 1.0 1546300553 192 ⏰24 hours left until our pump on hotbitio link to register to platform 2021-09-07 17:00:02+00:00 1.0 1546300553 184 the next pump will be on wednesday platform hotbitio date 8 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt 我們的下一次暴漲將於 2021 年 9 月 8 日星期三格林威治標準時間 1800,在(hotbit 平台,貨幣對:usdt) ✅ البامب القادم سوف يكون يوم الاربعاء القادم على منصة هوت بت المنصة هوتبتhotbitio التاريخ ٨ سبتمبر ⏰ الساعة 8 مساء بتوقيت مكة العملة مقابل الدولار usdt nuestra próxima bomba será el miércoles 8 de septiembre de 2021 a las 1800 gmt en plataforma hotbit par usdt 2021-09-04 14:31:34+00:00 1.0 1546300553 181 ⏰ 2 minutes left until our pump ⏰ quedan 2 minutos para nuestra bomba ‎⏰ متبقي ٢ دقيقة على البامب ⏰ 距離我們的泵還有 2 分鐘。 ………………………… the next message will be the name of the coin 下一條消息將是硬幣的名稱 ‎ الرسالة القادمة ستكون اسم العملة el siguiente mensaje será el nombre de la moneda 2021-09-03 16:58:06+00:00 1.0 1546300553 180 be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared ⏰ 5 minutes left until our pump ⏰ quedan 5 minutos para nuestra bomba ‎⏰ متبقي ٥ دقائق على البامب ⏰ 距離我們的泵還有 5 分鐘。 2021-09-03 16:55:06+00:00 1.0 1546300553 179 ⏰ 10 minutes left until our pump ⏰ quedan 10 minutos para nuestra bomba ‎⏰ متبقي ١٠ دقائق على البامب ⏰ 距離我們的泵還有 10 分鐘。 2021-09-03 16:50:06+00:00 1.0 1546300553 178 ⏰ 30 minutes left until our pump ⏰ quedan 30 minutos para nuestra bomba ‎⏰ متبقي ٣٠ دقيقة على البامب ⏰ 距離我們的泵還有 30 分鐘。 2021-09-03 16:30:06+00:00 1.0 1546300553 176 ⏰2 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 2 小时 ‎⏰ متبقي ٢ ساعة على البامب على منصة هوتبيت ⏰ quedan 2 horas para nuestra bomba en hotbitio 2021-09-03 15:00:07+00:00 1.0 1546300553 175 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-03 13:00:06+00:00 1.0 1546300553 173 ⏰12 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 12 小时 ‎⏰ متبقي ١٢ ساعة على البامب ⏰ quedan 12 horas para nuestra bomba 2021-09-03 05:00:06+00:00 1.0 1546300553 171 ⏰24 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 24 小时 ‎⏰ متبقي 24 ساعة على البامب ⏰ quedan 24 horas para nuestra bomba 2021-09-02 17:00:06+00:00 1.0 1546300553 170 the next pump will be on friday platform hotbitio date 3 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt 我們的下一次暴漲將於 2021 年 9 月 3 日星期五格林威治標準時間 1800,在(hotbit 平台,貨幣對:usdt) ✅ البامب القادم سوف يكون يوم الجمعة القادم على منصة هوت بت المنصة هوتبتhotbitio التاريخ ٣ سبتمبر ⏰ الساعة 8 مساء بتوقيت مكة العملة مقابل الدولار usdt nuestra próxima bomba será el viernes 3 de septiembre de 2021 a las 1800 gmt en plataforma hotbit par usdt 2021-09-01 18:26:43+00:00 1.0 1546300553 165 ⏰ 2 minutes left until our pump ⏰ quedan 2 minutos para nuestra bomba ‎⏰ متبقي ٢ دقيقة على البامب ⏰ 距離我們的泵還有 2 分鐘。 ………………………… the next message will be the name of the coin 下一條消息將是硬幣的名稱 ‎ الرسالة القادمة ستكون اسم العملة el siguiente mensaje será el nombre de la moneda 2021-09-01 16:58:06+00:00 1.0 1546300553 164 be prepared for the pump open our telegram group open hotbit open the search bar and be ready to write the name quickly ✅ you need to have enough usdt in your balance ☑️ buy immediately once the coin is shared ⏰ 5 minutes left until our pump ⏰ quedan 5 minutos para nuestra bomba ‎⏰ متبقي ٥ دقائق على البامب ⏰ 距離我們的泵還有 5 分鐘。 2021-09-01 16:55:06+00:00 1.0 1546300553 163 ⏰ 10 minutes left until our pump ⏰ quedan 10 minutos para nuestra bomba ‎⏰ متبقي ١٠ دقائق على البامب ⏰ 距離我們的泵還有 10 分鐘。 2021-09-01 16:50:06+00:00 1.0 1546300553 162 ⏰ 30 minutes left until our pump ⏰ quedan 30 minutos para nuestra bomba ‎⏰ متبقي ٣٠ دقيقة على البامب ⏰ 距離我們的泵還有 30 分鐘。 2021-09-01 16:30:06+00:00 1.0 1546300553 160 ⏰2 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 2 小时 ‎⏰ متبقي ٢ ساعة على البامب على منصة هوتبيت ⏰ quedan 2 horas para nuestra bomba en hotbitio 2021-09-01 15:00:06+00:00 1.0 1546300553 159 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-09-01 13:00:06+00:00 1.0 1546300553 157 ⏰12 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 12 小时 ‎⏰ متبقي ١٢ ساعة على البامب ⏰ quedan 12 horas para nuestra bomba 2021-09-01 05:00:06+00:00 1.0 1546300553 155 ⏰24 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 24 小时 ‎⏰ متبقي 24 ساعة على البامب ⏰ quedan 24 horas para nuestra bomba 2021-08-31 17:00:06+00:00 1.0 1546300553 154 the next pump will be on wednesday platform hotbitio date 1 september ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt 我們的下一次暴漲將於 2021 年 9 月 1 日星期三格林威治標準時間 1800,在(hotbit 平台,貨幣對:usdt) ✅ البامب القادم سوف يكون يوم الاربعاء القادم على منصة هوت بت المنصة هوتبتhotbitio التاريخ ١ سبتمبر ⏰ الساعة 8 مساء بتوقيت مكة العملة مقابل الدولار usdt nuestra próxima bomba será el miércoles 1 de septiembre de 2021 a las 1800 gmt en plataforma hotbit par usdt 2021-08-30 17:06:34+00:00 1.0 1546300553 149 ⏰ 2 minutes left until our pump ⏰ quedan 2 minutos para nuestra bomba ‎⏰ متبقي ٢ دقيقة على البامب ⏰ 距離我們的泵還有 2 分鐘。 2021-08-29 16:58:06+00:00 1.0 1546300553 148 ⏰ 5 minutes left until our pump ⏰ quedan 5 minutos para nuestra bomba ‎⏰ متبقي ٥ دقائق على البامب ⏰ 距離我們的泵還有 5 分鐘。 2021-08-29 16:55:06+00:00 1.0 1546300553 146 ⏰ 10 minutes left until our pump ⏰ quedan 10 minutos para nuestra bomba ‎⏰ متبقي ١٠ دقائق على البامب ⏰ 距離我們的泵還有 10 分鐘。 2021-08-29 16:50:06+00:00 1.0 1546300553 145 ⏰ 30 minutes left until our pump ⏰ quedan 30 minutos para nuestra bomba ‎⏰ متبقي ٣٠ دقيقة على البامب ⏰ 距離我們的泵還有 30 分鐘。 2021-08-29 16:30:05+00:00 1.0 1546300553 143 ⏰2 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 2 小时 ‎⏰ متبقي ٢ ساعة على البامب على منصة هوتبيت ⏰ quedan 2 horas para nuestra bomba en hotbitio 2021-08-29 15:00:06+00:00 1.0 1546300553 142 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-08-29 13:00:06+00:00 1.0 1546300553 140 ⏰12 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 12 小时 ‎⏰ متبقي ١٢ ساعة على البامب ⏰ quedan 12 horas para nuestra bomba 2021-08-29 05:00:05+00:00 1.0 1546300553 139 ⏰24 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 24 小时 ‎⏰ متبقي 24 ساعة على البامب ⏰ quedan 24 horas para nuestra bomba 2021-08-28 17:00:05+00:00 1.0 1546300553 128 the next pump will be on sunday platform hotbitio date 29 august ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt 我们的下一次暴涨将于 2021 年 8 月 29 日星期日格林威治标准时间 1800,在(hotbit 平台,货币对:usdt) ✅ البامب القادم سوف يكون يوم الأحد القادم على منصة هوت بت المنصة هوتبتhotbitio التاريخ 29 أغسطس ⏰ الساعة 8 مساء بتوقيت مكة العملة مقابل الدولار usdt nuestra próxima bomba será el domingo 29 de agosto de 2021 a las 1800 gmt en plataforma hotbit par usdt 2021-08-26 21:36:40+00:00 1.0 1546300553 99 ⏰ 2 minutes left until our pump ⏰ quedan 2 minutos para nuestra bomba ‎⏰ متبقي ٢ دقيقة على البامب ⏰ 距離我們的泵還有 2 分鐘。 2021-08-25 16:58:06+00:00 1.0 1546300553 98 ⏰ 5 minutes left until our pump ⏰ quedan 5 minutos para nuestra bomba ‎⏰ متبقي ٥ دقائق على البامب ⏰ 距離我們的泵還有 5 分鐘。 2021-08-25 16:55:11+00:00 1.0 1546300553 96 ⏰ 10 minutes left until our pump ⏰ quedan 10 minutos para nuestra bomba ‎⏰ متبقي ١٠ دقائق على البامب ⏰ 距離我們的泵還有 10 分鐘。 2021-08-25 16:50:06+00:00 1.0 1546300553 95 ⏰ 30 minutes left until our pump ⏰ quedan 30 minutos para nuestra bomba ‎⏰ متبقي ٣٠ دقيقة على البامب ⏰ 距離我們的泵還有 30 分鐘。 2021-08-25 16:30:05+00:00 1.0 1546300553 93 ⏰2 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 2 小时 ‎⏰ متبقي ٢ ساعة على البامب على منصة هوتبيت ⏰ quedan 2 horas para nuestra bomba en hotbitio 2021-08-25 15:00:06+00:00 1.0 1546300553 92 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-08-25 14:00:05+00:00 1.0 1546300553 90 ⏰12 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 12 小时 ‎⏰ متبقي ١٢ ساعة على البامب ⏰ quedan 12 horas para nuestra bomba 2021-08-25 05:00:06+00:00 1.0 1546300553 89 ⏰24 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 24 小时 ‎⏰ متبقي 24 ساعة على البامب ⏰ quedan 24 horas para nuestra bomba 2021-08-24 17:00:06+00:00 1.0 1546300553 88 the next pump will be on wednesday platform hotbitio date 25 august ⏰ time 6 pm gmt 6 pm uk time the coin will be against usdt 我们的下一个 pump 将于 2021 年 8 月 25 日星期三格林威治标准时间 1800,在(hotbit 平台,货币对:usdt ✅ البامب القادم سوف يكون يوم الأربعاء القادم على منصة هوت بت المنصة هوتبتhotbitio التاريخ 25 أغسطس ⏰ الساعة 8 مساء بتوقيت مكة العملة مقابل الدولار usdt nuestra próxima bomba será el miércoles 25 de agosto de 2021 a las 1800 en punto gmt en plataforma hotbit par usdt 2021-08-24 15:58:04+00:00 1.0 1546300553 78 ⏰ 2 minutes left until our pump ⏰ quedan 2 minutos para nuestra bomba ‎⏰ متبقي ٢ دقيقة على البامب ⏰ 距離我們的泵還有 2 分鐘。 2021-08-22 16:58:06+00:00 1.0 1546300553 76 ⏰ 5 minutes left until our pump ⏰ quedan 5 minutos para nuestra bomba ‎⏰ متبقي ٥ دقائق على البامب ⏰ 距離我們的泵還有 5 分鐘。 2021-08-22 16:55:06+00:00 1.0 1546300553 75 ⏰ 10 minutes left until our pump ⏰ quedan 10 minutos para nuestra bomba ‎⏰ متبقي ١٠ دقائق على البامب ⏰ 距離我們的泵還有 10 分鐘。 2021-08-22 16:50:06+00:00 1.0 1546300553 74 ⏰ 30 minutes left until our pump ⏰ quedan 30 minutos para nuestra bomba ‎⏰ متبقي ٣٠ دقيقة على البامب ⏰ 距離我們的泵還有 30 分鐘。 2021-08-22 16:30:06+00:00 1.0 1546300553 71 ⏰2 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 2 小时 ‎⏰ متبقي ٢ ساعة على البامب على منصة هوتبيت ⏰ quedan 2 horas para nuestra bomba en hotbitio 2021-08-22 15:00:06+00:00 1.0 1546300553 67 ⏰12 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 12 小时 ‎⏰ متبقي ١٢ ساعة على البامب ⏰ quedan 12 horas para nuestra bomba 2021-08-22 05:00:06+00:00 1.0 1546300553 66 ⏰24 hours left until our pump on hotbitio ⏰距离我们在 hotbitio 上的 pump 还剩 24 小时 ‎⏰ متبقي 24 ساعة على البامب ⏰ quedan 24 horas para nuestra bomba 2021-08-21 17:00:05+00:00 1.0 1546300553 47 how will you be able to join the pump 1️⃣ you need to have an account on hotbitio 2️⃣ you need to transfer usdt to hotbit and keep usdt in your balance 3️⃣ you need to be waiting and ready for pump once we write the name of the coin you need to be fast and buy quickly 4️⃣ we hold the pump for 2 minutes and the coin will attract members from outside our group good luck for everyone ✊ 2021-08-21 10:44:44+00:00 1.0 1546300553 2 what is the pump the pump happens when you buy a coin for a big amount in a short time and then this coin will explode how will the pump happen we will choose a specific date and time in the coming days for the next pump and when that time comes we will write the name of the coin on this group and everyone will start buying and we will try to hold the coin from minute to 3 minutes and then selling it will be in stages so as not to ruin the chances of the others the chosen coin will top the list of the highest coins and it will attract strangers to buy it and this is how we will have a successful pump mechanism to choose the coin a program was designed by our team to choose the best coin for the pump and we will write the name of this coin in a specific time for the pump there will be no priority for anyone and everyone will get the name of the coin in the same time on which platform will the pump be the best platform for the pump at the moment is hotbitio which we will use all selected coins will be against usdt alert i do not give any investment economic or financial advice i am not an economic investment or financial expert your decision with your personal money is your decision alone and at your own risk profit or loss 2021-08-11 21:50:13+00:00 1.0 1136271991 1093 coin name — qsp buy qsp it will pump at least 100 from here 2019-11-25 16:00:39+00:00 1.0 1136271991 1037 cnd rumor next binance chain coin expected pump 70 to 80 2019-06-23 08:33:59+00:00 1.0 1136271991 1030 2 mins left next post will be coin name 2019-06-17 14:58:17+00:00 1.0 1136271991 1028 official wolf pump signal announcement btc is making a rally recently and there are many altcoins such as dumped alots of as always this is good news because this implies recovery of investor confidence in altcoins everything is in our favor for a great pump with market conditions currently let wake up altcoin market today our last one result wpr 70 the details are below date 17062019 time 1500 gmt exchange binance 2019-06-17 13:14:43+00:00 1.0 1136271991 1005 5 mins left next post will be coin name dont forget how wpr did before 2019-06-08 12:56:17+00:00 1.0 1136271991 1003 ▪️flash pump alert ▪️ after the succesful wpr pump and the good feedbacks we got we will run another free pump in 87 minutes from now on 1300 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-06-08 11:33:37+00:00 1.0 1136271991 991 buy appc it will pump 100 next days 2019-06-04 12:08:01+00:00 1.0 1136271991 989 5 mins left next post will be coin name prepare for huge thing 2019-06-04 11:55:08+00:00 1.0 1136271991 982 5 mins left next post will be the coin name 2019-06-03 10:55:37+00:00 1.0 1136271991 969 5 mins left next post will be coin name 2019-05-31 14:55:42+00:00 1.0 1136271991 967 ▪️flash pump alert ▪️ after the succesful yoyo qsp pump and the good feedbacks we got we will run another free pump in 58 minutes from now on 1500 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-05-31 14:02:33+00:00 1.0 1136271991 928 official wolf pump signal announcement btc is making a major correction after the recent rally as always this is good news because this implies recovery of investor confidence in altcoins everything is in our favor for a great pump with market conditions currently let wake up altcoin market on tomorrow the details are below date 18052019 time 1700 gmt exchange binance countdown +pump+signalfontcursive pump coming soon join now lgtpvw 2019-05-17 14:15:43+00:00 1.0 1136271991 876 buy rfr it will moon next pump signal from our team 2019-03-21 11:45:01+00:00 1.0 1136271991 834 mega pump on binance 안녕하세요 메가시그널 팀입니다 어제 갑작스러운 하락을 맞아 많은분들께서 당혹스러우실거라 생각됩니다만 알트장은 오히려 반대로 나쁘지 않은 모습을 보이고 있습니다 금일 코인 공개는 새로운 접근 방식으로 공개할 예정입니다 최근 많은 분들의 관심을 가져주신 덕에 우리가 무슨 코인을 공개할지 많은 분들께서 예측하시려는 시도가 포착되고 있습니다 이에 따라 모든분들께서 수익을 얻으실 수 있도록 매수 한뒤 홀딩하는 방식을 통해 자연스럽게 해당 코인의 가격이 유지되도록 하겠습니다 현재같은 불안정한 장에서 우리의 메가시그널은 큰 수익을 얻을수 있는 가장 좋은 방법입니다 기대하시길 바라며 금일 오후 24시에 뵙겠습니다 ♻️ exchange binance time 24시 kst 1500 gmt date 000am thursday 23th november 2018-11-22 10:23:37+00:00 1.0 1136271991 830 mega pump on binance 안녕하세요 메가시그널 팀입니다 어제 갑작스러운 하락을 맞아 많은분들께서 당혹스러우실거라 생각됩니다만 알트장은 오히려 반대로 나쁘지 않은 모습을 보이고 있습니다 금일 코인 공개는 새로운 접근 방식으로 공개할 예정입니다 최근 많은 분들의 관심을 가져주신 덕에 우리가 무슨 코인을 공개할지 많은 분들께서 예측하시려는 시도가 포착되고 있습니다 이에 따라 모든분들께서 수익을 얻으실 수 있도록 매수 한뒤 홀딩하는 방식을 통해 자연스럽게 해당 코인의 가격이 유지되도록 하겠습니다 현재같은 불안정한 장에서 우리의 메가시그널은 큰 수익을 얻을수 있는 가장 좋은 방법입니다 기대하시길 바라며 금일 오후 24시에 뵙겠습니다 ♻️ exchange binance time 24시 kst 1500 gmt date 000am thursday 22th november 2018-11-21 03:13:25+00:00 1.0 1136271991 819 mega pump on binance 안녕하세요 메가시그널 팀입니다 어제 갑작스러운 하락을 맞아 많은분들께서 당혹스러우실거라 생각됩니다만 알트장은 오히려 반대로 나쁘지 않은 모습을 보이고 있습니다 금일 코인 공개는 새로운 접근 방식으로 공개할 예정입니다 최근 많은 분들의 관심을 가져주신 덕에 우리가 무슨 코인을 공개할지 많은 분들께서 예측하시려는 시도가 포착되고 있습니다 이에 따라 모든분들께서 수익을 얻으실 수 있도록 매수 한뒤 홀딩하는 방식을 통해 자연스럽게 해당 코인의 가격이 유지되도록 하겠습니다 현재같은 불안정한 장에서 우리의 메가시그널은 큰 수익을 얻을수 있는 가장 좋은 방법입니다 기대하시길 바라며 금일 오후 24시에 뵙겠습니다 ♻️ exchange binance time 24시 kst 1500 gmt date 000am thursday 12th november 2018-11-12 02:38:43+00:00 1.0 1136271991 787 보시다시피 알트코인들이 회복됨에 따라 저가에 좋은 알트코인을 매수하기에 좋은 시점이 다가왔습니다 이에 내일 29일 22시에 kst 모두 가 큰 수익을 얻으실 수 있는 저점에 위치한 코인을 공개하겠습니다 as you can see altcoins are recovering at the same time its a good time to buy good altcoins at low prices so tomorrow we will unveil a coin on the 29th at 2200 kst where everyone can make a big profit ♻️ exchange bittrex upbit btc market time 22시 kst 1300 gmt date monday 29th october ‍‍‍ participants more than 100000 cryptoinvestors target 70 150 2018-10-28 16:05:28+00:00 1.0 1136271991 610 시그널 제공까지 20분 남았습니다 미리 btc 매수하시기 바랍니다 20 minutes left until revealing the mega signal 2018-09-03 12:41:48+00:00 1.0 1136271991 604 최근 장은 좋은 회복세를 보이며 그만큼 볼륨도 올라가고 있는 모습을 보이고 있습니다 이러한 장에선 비트코인보다 상승세가 예상되는 알트코인에 투자하는 것이 좋은 투자 방법이 될 것입니다 3일 월요일 22시에 우리는 모두가 큰 수익을 얻을수 있는 메가시그널을 드릴 예정입니다 recently the market shows bullish that volume also increases in this kind of market it would be easy to take profits fron good alts instead of bitcoin on monday 3rd at 1300 gmt we will give you mega signal so that everyone can get huge profit ♻️ exchange bittrex upbit btc market time 22시 kst 1300 gmt date monday 3rd september ‍‍‍ participants more than 100000 cryptoinvestors target 70 150 2018-09-02 14:51:53+00:00 1.0 1136271991 399 얼마전부터 비트코인은 불안정세를 이어왔고 최근 큰 하락을 이루었습니다 대부분 알트코인들은 비트코인의 영향을 받았지만 이중 저희가 관심있게 보던 큰 상승이 예상되는 코인을 6일 월요일 23시한국시간에 공개할 예정입니다 기대하시기 바랍니다 btc has been shown the unstable condition of the market and recently there was a significant drop btc had influences on most of the alts but one that we have been focused on we will reveal the name of the coin on 6th monday at 2 pm gmt ♻️exchange bittrex upbit btc market time 11 pm kst ‍‍‍participants more than 100000 cryptoinvestors target 50 100 2018-08-05 15:44:32+00:00 1.0 1136271991 206 오늘의 추천코인은 버스트코인 burst입니다 coin name 버스트코인 burst 매수하세요 buy burst fast and hold until you take the big profits 2018-07-17 12:59:57+00:00 1.0 1313461639 122 dear members we will postpone tonights pump as the market is unstable a lot of people are expecting bitcoin to make a big move soon which causes large sell walls and volatility on the altcoin order books the new details are as follows exchange binancecom date 27feb2021 time 9pm gmt 2021-02-20 18:37:25+00:00 1.0 1313461639 119 dear members tonight the peak was over 200 with a volume over 15 million usd this pump was great we can conclude that pumps in the weekend are better than pumps that are not in the weekend because of the enormous amount of positive feedback through discord and other channels we have decided to schedule a new pump details of the next pump exchange binancecom international date 20feb2021 saturday time 9pm gmt next pump will be in the weekend again therefore expect a nice volume 2021-02-13 23:00:19+00:00 1.0 1313461639 115 2 minutes left next message will be the coin 2021-02-13 20:58:51+00:00 1.0 1313461639 106 dear members 3 hours left we are getting a lot of questions regarding the trading pair during the pump we will be using the btc trading pair example if the coin is xxx buy the coin with bitcoin on the xxxbtc market 2021-02-13 18:00:44+00:00 1.0 1313461639 105 dear members 4 hours left this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignalfebruary13 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together 2021-02-13 17:03:59+00:00 1.0 1313461639 104 dear members 8 hours 20 minutes left we notice that a lot of new members want to get in on the action but do not understand how pumping works the basics of a pump the members of big pump signal buy up a crypto currency or shares of a lightly traded company spread rumors which gives the coin exposure and then sell at a higher price the coin will be announced in the pumpsignalfebruary13 and in the telgram ps we have noticed that there are a lot of impostor servers never join a server or click on a link you receive via direct message there are no other big pump signals besides big pump signal 2 93000 members which is created because the main discord server reached its cap furthermore me dominus and john ewbanks will never contact you first and especially never ask for money we also do not have a vip group lastly never follow any giveaways you receive in your dms 2021-02-13 12:38:53+00:00 1.0 1313461639 103 dear members 10 hours and 30 minutes left until the pump checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have discord and telegram open have all your social media channels twitter reddit etc open and ready to start the hype 2021-02-13 10:29:02+00:00 1.0 1313461639 102 dear members tonight the peak was over 300 the volume was quite nice but could have been a lot better the volume was not that high because we pumped during a weekday still a lot of members profited therefore we have decided to schedule a new pump this time it will be in the weekend when more members have free time details of the next pump exchange binancecom international date 13feb2021 saturday time 9pm gmt next pump will be in the weekend this usually has a higher volume 2021-02-10 23:28:32+00:00 1.0 1313461639 98 2 minutes left next message will be the coin 2021-02-10 20:58:09+00:00 1.0 1313461639 93 dear members 1 hour left this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will be a message including the name of a coin in pumpsignalfebruary10 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can we are getting a lot of questions regarding the trading pair during the pump we will be using the btc trading pair example if the coin is xxx buy the coin with bitcoin on the xxxbtc market 2021-02-10 20:00:27+00:00 1.0 1313461639 90 dear members 7 hours and 25 minutes left until the pump with all social media channels combined big pump signal has over 430000 members we might all be small investors but we have an insane social media presence tonight at 9 pm gmt we will coordinately buy hype and push up the price of a coin read the socialmediaguide for an extended explanation of the strategy 2021-02-10 13:34:51+00:00 1.0 1313461639 89 dear members 11 hours left until the pump checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have discord and telegram open have all your social media channels twitter reddit etc open and ready to start the hype more information will follow soon 2021-02-10 10:00:47+00:00 1.0 1313461639 85 dear members pumping has gained a large amount of attention in the past days which caused the member count to grow from 380000 to 400000 the original members of big pump signal know that coordination is key if you are new to pumping we advise you to watch this guide the next pump will be in 1 day 23 hour and 45 minutes if you are new to big pump signal read the socialmediaguide do not forget to join the telegram 2021-02-08 21:16:22+00:00 1.0 1313461639 84 dear members details of the next pump exchange binancecom international date 10feb2021 wednessday time 9pm gmt the market condition for a pump is more than perfect lots of new people getting into crypto in the past 6 hours 15000 new members joined big pump signal keep inviting 2021-02-08 16:57:54+00:00 1.0 1313461639 80 dear members 3 hours and 30 minutes left start preparing all your social media channels so you can promote the coin instantly at 9 pm gmt the call will be given in the pumpsignalfebruary7 and in the telegram weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together 2021-02-07 17:32:12+00:00 1.0 1313461639 79 dear members 6 hours and 20 minutes left big pump signal is growing very quickly today more than 11000 members joined big pump signal we notice that a lot of new members want to get in on the action but do not understand how pumping works the basics of a pump the members of big pump signal buy up a crypto currency or shares of a lightly traded company spread rumors which gives the coin exposure and then sell at a higher price like mentioned in the prior announcements the most important factor for a successful pump is creating hype around the coin creating hype is a group effort big pump signal has more than 380000 active members on all the platforms combined we are all small investors but we can make a huge impact on social media read the socialmediaguide for an extensive explanation expect something amazing tonight 2021-02-07 14:42:51+00:00 1.0 1313461639 78 dear members 9 hours left this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in the pumpsignalfebruary7 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can 2021-02-07 12:04:23+00:00 1.0 1313461639 77 10 hours and 25 minutes left checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have the discord or telegram open have all your social media channels twitter reddit etc open and ready to start the hype if you are from the us and want to join the pump on binancecom global you still have enough time to create an account 2021-02-07 10:34:40+00:00 1.0 1313461639 74 dear members great pump again the peak was over 600 the volume in the 50 minutes was very nice especially for a weekday pump because of the enormous amount of positive feedback through discord twitter and other channels we have decided to schedule a new pump details of the next pump exchange binancecom international date 07feb2021 sunday time 9pm gmt next pump will be in the weekend this usually has a higher volume 2021-02-05 21:56:33+00:00 1.0 1313461639 68 2 minutes left next message will be the coin 2021-02-05 20:58:14+00:00 1.0 1313461639 62 15 minutes left the message with the coin will be send in the discord and telegram have your bitcoin ready in your wallet like mentioned before have all your social media channels twitter reddit etc open and ready to start the hype lets do this 2021-02-05 20:45:44+00:00 1.0 1313461639 60 30 minutes left have all your social media channels twitter reddit etc open and ready to start the hype 2021-02-05 20:30:20+00:00 1.0 1313461639 59 dear members 1 hour left like i mentioned yesterday we might all be small investors but we have an insane social media presence tonight at 9 pm gmt we will coordinately buy hype and push up the price of a coin we will be trading the bitcoin pair so be sure to have bitcoin ready in your wallet 2021-02-05 20:00:31+00:00 1.0 1313461639 58 dear members 1 hour and 20 minutes left start preparing all your social media channels so you can promote the coin instantly at 9 pm gmt the call will be given in the pumpsignalfebruary5 and in the telegram weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together 2021-02-05 19:41:29+00:00 1.0 1313461639 51 dear members 5 hours left this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignalfebruary3 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together 2021-02-05 16:01:41+00:00 1.0 1313461639 50 dear members 7 hours and 40 minutes left we have grown 20000 members in the past 24 hours the volume will be insane tonight if you are from the us and want to join the pump on binancecom global you still have enough time to create an account follow the guide in binanceglobalaccountcreation there are a lot of impostors big pump signal staff will never pm you first 2021-02-05 13:20:54+00:00 1.0 1313461639 46 dear members what an insane pump our helper is getting flooded with positive messages todays pump saw a peak of 1600 and is still up a lot as of right now like last pump there is still plenty of upside potential last pump had price swings of 300 the day after because of the enormous amount of positive feedback through discord twitter and other channels we have decided to schedule a new pump details of the next pump exchange binancecom international date 05feb2021 tuesday time 9pm gmt the social media campaign has been very effective today more than 1600 btc flowed into sky in the first hour after the call which is insane the next pump will be even bigger we got over 3000 messages of members that only had usdt and did not have btc in their wallet always trade the btc pair 2021-02-03 22:15:54+00:00 1.0 1313461639 41 2 minutes left next message will be the coin 2021-02-03 20:58:09+00:00 1.0 1313461639 39 10 minutes left the message with the coin will be send in the telegram and in the discord have your bitcoin ready in your wallet like mentioned before have all your social media channels twitter reddit etc open and ready to start the hype lets do this 2021-02-03 20:50:56+00:00 1.0 1313461639 38 15 minutes left have all your social media channels twitter reddit etc open and ready to start the hype 2021-02-03 20:45:21+00:00 1.0 1313461639 32 dear members 1 hour left like i mentioned yesterday we might all be small investors but we have an insane social media presence tonight at 9 pm gmt we will coordinately buy hype and push up the price of a coin we will be trading the bitcoin pair so be sure to have bitcoin ready in your wallet the coin will be announced on the telegram and in the pumpsignalfebruary3 at exactly the same time 2021-02-03 20:00:14+00:00 1.0 1313461639 30 dear members 2 hours and 30 minutes left start preparing all your social media channels so you can promote the coin instantly at 9 pm gmt the call will be given in the pumpsignal3february and in the telegram 2021-02-03 18:30:40+00:00 1.0 1313461639 29 dear members 5 hours left until the pump this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignalfebruary3 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together ps the social media servers we own are discord bigpumpsignal discord bigpumpsignal 2 telegram beware of impostors 2021-02-03 16:03:10+00:00 1.0 1313461639 27 dear members 10 hours and 30 minutes left checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have the discord or telegram open have all your social media channels twitter reddit etc open and ready to start the hype the coin will be announced in the pumpsignalfebruary3 and the telegram 2021-02-03 10:26:44+00:00 1.0 1313461639 23 exact details exchange binancecom international date 03feb2021 tuesday time 9pm gmt take these 24 hours to invite more people 2021-02-02 20:56:28+00:00 1.0 1313461639 22 dear members sad announcement we will postpone tonights pump to tomorrow 9 pm gmt as we are experiencing problems with discord due to the high number of members the server is experiencing extreme outages and we need to contact discord to fix this takes around 12 hours if we would pump right now we would lose nearly 50 of the volume waiting 24 hours is more than worth it we hope you understand why postponing the pump is better at this moment we understand everyone was hyped but this is for the better this also gives new us users time to create an account on binance global the pump team 2021-02-02 20:52:57+00:00 1.0 1313461639 20 dear members 30 minutes left the coin will be given in the pumpsignal2february channel and in the telegram at exactly the same time 2021-02-02 20:32:03+00:00 1.0 1313461639 17 dear members 1 hour and 20 minutes left this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will be a message including the name of a coin in pumpsignal2february and telegram 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can 2021-02-02 19:41:43+00:00 1.0 1313461639 16 dear members 2 hours left with all social media channels combined big pump signal has over 410000 members we might all be small investors but we have an insane social media presence tonight at 9 pm gmt we will coordinately buy hype and push up the price of a coin because big pump signal has grown over 100000 members in the past 2 days the pump will have an insane volume read the socialmediaguide for an extended explanation of the strategy 2021-02-02 19:01:17+00:00 1.0 1313461639 14 dear members 5 hours and 45 minutes left until the pump this is a basic stepbystepguide for new members 1 ten miutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignal2february and telegram 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can ps some advise we have noticed that a lot of smaller groups are sendingspamming invites to members they want to copy big pump signal because of last pumps success be careful they might not all have the right intentions 2021-02-02 15:18:43+00:00 1.0 1313461639 13 dear members 8 hours and 30 minutes left we have grown 100000 members in the past 2 days tonight will be even bigger than last time if you are from the us and want to join the pump on binancecom global you still have enough time to create an account follow the guide in binanceglobalaccountcreation on discord checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have the discord or telegram open have all your social media channels twitter reddit etc open and ready to start the hype the coin will be announced in the pumpsignal2february and the telegram at the same time 2021-02-02 12:31:14+00:00 1.0 1313461639 6 dear members exactly 24 hours left we notice that a lot of new members want to get in on the action but do not understand how pumping works the basics of a pump the members of big pump signal buy up a crypto currency spread rumors which gives the coin exposure and then sell at a higher price more information will follow 2021-02-01 21:01:20+00:00 1.0 1313461639 5 dear members 1 day 1 hour left until the binancecom pump after last announcement we received a lot of questions from us citizens that want to join in on the action tomorrow in order to participate in tomorrows pump you need to create an account on binancecom the coin we are pumping tomorrow will not be listed on binanceus if you are from the us check the attached image tomorrow at exactly 9pm gmt the coin will be announced both in the discord and telegram if you have any questions first consult the faq channel more information on the strategy of tomorrows pump will follow 2021-02-01 20:09:55+00:00 1.0 1425729575 310 binance pump ann hello all members the next official pump will be scheduled for date sunday july 25 time 500 pm gmt exchange binancecom advantage freeforall 80 to 90 million above push target 100 200 profit 7+ whale channels this pump will be huge above 100 our target is 100 to 200 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals thank you have a nice day share our channel and show your love ♥️ binancepumptime 2021-07-12 20:42:31+00:00 1.0 1425729575 306 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:00:03+00:00 1.0 1425729575 304 5 minutes left until our pump on binance 2021-07-11 16:55:08+00:00 1.0 1425729575 303 10 minutes left until our pump on binance 2021-07-11 16:50:10+00:00 1.0 1425729575 302 30 minutes left until our biggest pump on binance be ready with btc 2021-07-11 16:30:10+00:00 1.0 1425729575 301 3 hours left until our biggest pump on binance be ready with btc 2021-07-11 14:00:08+00:00 1.0 1425729575 300 6 hours left until our biggest pump on binance be ready with btc 2021-07-11 11:00:05+00:00 1.0 1425729575 290 mdt bi̇nance‼️ buy around 6772 sel819099160+199 accumulation is going on in breaker zone falling wedge pattern is printed and about to breakout good to buy some here buy hold a bag for the pump stoploss 7 2021-07-06 10:26:48+00:00 1.0 1425729575 288 binance pump ann hello all members the next official pump will be scheduled for date sunday july 11 time 500 pm gmt exchange binancecom advantage freeforall 80 to 90 million above push target 100 200 profit 7+ whale channels this pump will be huge above 100 our target is 100 to 200 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals thank you have a nice day share our channel and show your love ♥️ binancepumptime 2021-07-05 13:24:40+00:00 1.0 1425729575 283 30 minutes left until our biggest pump on binance be ready with btc 2021-07-04 16:30:05+00:00 1.0 1425729575 282 3 hours left until our biggest pump on binance be ready with btc 2021-07-04 14:00:04+00:00 1.0 1425729575 281 6 hours left until our biggest pump on binance be ready with btc 2021-07-04 11:00:02+00:00 1.0 1425729575 277 binance pump ann hello all members the next official pump will be scheduled for date sunday july 4 time 500 pm gmt exchange binancecom advantage freeforall 5 to 10 million above push target 40 100 profit 7+ whale channels this pump will be huge above 100 our target is 40 to 100 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals thank you have a nice day share our channel and show your love ♥️ binancepumptime 2021-06-30 12:49:15+00:00 1.0 1425729575 271 5 minutes left until our pump on binance 2021-06-27 16:55:07+00:00 1.0 1425729575 269 10 minutes left until our pump on binance 2021-06-27 16:50:10+00:00 1.0 1425729575 268 30 minutes left until our pump on binance 2021-06-27 16:30:09+00:00 1.0 1425729575 267 3 hours left until our biggest pump on binance be ready with btc 2021-06-27 14:00:05+00:00 1.0 1425729575 264 binance pump ann hello all members the next official pump will be scheduled for date sunday june 27 time 500 pm gmt exchange binancecom advantage freeforall 5 to 10 million above push target 40 100 profit 7+ whale channels this pump will be huge above 100 our target is 40 to 100 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals thank you have a nice day share our channel and show your love ♥️ binancepumptime 2021-06-24 17:09:50+00:00 1.0 1425729575 258 the coin we have picked to pump today is wabi wabi is looking perfect for a pump right now 2021-06-20 17:00:05+00:00 1.0 1425729575 256 5 minutes left until our pump on binance 2021-06-20 16:55:04+00:00 1.0 1425729575 255 10 minutes left until our pump on binance 2021-06-20 16:50:03+00:00 1.0 1425729575 253 30 minutes left until our pump on binance 2021-06-20 16:31:00+00:00 1.0 1425729575 250 3 hours left until our biggest pump on binance be ready with btc 2021-06-20 14:00:05+00:00 1.0 1425729575 249 6 hours left until our biggest pump on binance be ready with btc 2021-06-20 11:00:04+00:00 1.0 1425729575 218 new binance official pump announcement hello all members the next official pump will be scheduled for date sunday june 20 time 1700 pm gmt exchange binancecom advantage freeforall 50 to 70 million above push target 100 300 profit 40 whale channels this pump will be huge above 100 our target is 500 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals 2021-06-13 18:18:32+00:00 1.0 1425729575 216 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets and make sure we are able to reach our 500 targetwe hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly stay tuned 2021-06-13 17:34:53+00:00 1.0 1425729575 215 5 minutes left the next message will be the coin to buy 2021-06-13 16:54:46+00:00 1.0 1425729575 213 30 minutes left until our pump on binance 2021-06-13 16:30:04+00:00 1.0 1425729575 212 1 hour left until our pump on binance 2021-06-13 16:00:02+00:00 1.0 1425729575 211 3 hours left until our pump on binance 2021-06-13 14:00:02+00:00 1.0 1425729575 210 4 hours left until our pump on binance 2021-06-13 13:01:46+00:00 1.0 1425729575 202 new binance official pump announcement hello elonx all members the next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binancecom advantage freeforall 50 to 70 million above push target 100 300 profit 40 whale channels this pump will be huge above 100 our target is 500 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals thank you have a nice day 2021-06-10 03:11:32+00:00 1.0 1425729575 196 1 hour left until our pump on binance 2021-06-06 16:00:02+00:00 1.0 1425729575 195 5 hours left until our pump on binance 2021-06-06 12:00:03+00:00 1.0 1425729575 194 10 hours left until our pump on binance 2021-06-06 07:02:33+00:00 1.0 1425729575 193 new binance official pump announcement hello elonx all members the next official pump will be scheduled for date sunday june 6 time 1700 pm gmt exchange binancecom advantage freeforall 70 million above push target 100 300 profit 40 whale channels this pump will be huge above 100 our target is 500 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals thank you have a nice day 2021-06-05 09:46:53+00:00 1.0 1425729575 192 pump result amazing pump with more than 500 btc volume which is amazing in this market we hit the peak almost 1 minute after the signal was given which gave enough time for members to make profit our volume is still very big despite the short term market sentiment and the recent btc drop specially after having not pumped for 1 month we can say for sure that we are back and hopefully with the market starting to recover you can expect the next one to be much bigger we will be taking all the necessary precautionary measures on the next pump in order to make sure the signal is given at the absolute bottom as well the next pump will be massive stay tuned for our next announcement 2021-05-30 18:36:38+00:00 1.0 1425729575 191 the coin we have picked to pump today is oax oax is looking perfect for a pump right now 2021-05-30 17:00:03+00:00 1.0 1425729575 190 5 minutes left the next message will be the coin to buy 2021-05-30 16:54:37+00:00 1.0 1425729575 189 15 minutes left until the pump on binance we will be using the btc pairing to pump make sure you have btc in your account to buy the coin 2021-05-30 16:44:08+00:00 1.0 1425729575 185 1 hour left until our pump on binance 2021-05-30 16:00:01+00:00 1.0 1425729575 184 2 hours left until our pump on binance 2021-05-30 15:00:12+00:00 1.0 1425729575 183 3 hours left until our pump on binance 2021-05-30 14:00:08+00:00 1.0 1425729575 182 5 hours left until our pump on binance 2021-05-30 12:00:02+00:00 1.0 1425729575 179 3 days left until our big pump on binance in btc pair 2021-05-27 16:04:45+00:00 1.0 1425729575 176 4 days left until our big pump on binance 2021-05-26 14:48:57+00:00 1.0 1425729575 168 new binance official pump announcement hello elonx all members the next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance advantage free for all 70 million above push target 100 300 profit 40 whale channels this pump will be huge above 100 our target is 500 be ready with your binance with btc pump coin avaliable only in btc pair xxxbtc market is breathing now we can pump hard all elonx members envite more friends to achive our goals if you want to know coin name before pump contact pumpxteam temp admin we will let you know the coin name before 30 to 60 seconds thank you have a nice day 2021-05-24 07:02:50+00:00 1.0 1425729575 167 dear all elonx members we are facing some problem in our account during this techinical glitch we are unable to push the coin hard so our team decided to postpone tonight pump and next date will be announced soon we noticed our users interested in kucoin pump according to our last poll soon we will give you the big update regarding kucoin pump until then stay tune and stay safe take care of your family thank you 2021-05-23 16:30:21+00:00 1.0 1425729575 165 1 hour left until our pump on binance in btc pair 2021-05-23 16:00:02+00:00 1.0 1425729575 164 3 hours left until our pump on binance 2021-05-23 14:00:05+00:00 1.0 1425729575 143 new binance official pump announcement ⏳date sunday 23 may ⏰time 5 pm gmt exchange binance +2 whale channels target 25 40 profit we all know market is not stable yet but we can still pump shit coins and genrate profit our target is not much this time but still its enough to genrate profit and strong our portfolio 2021-05-21 18:08:06+00:00 1.0 1425729575 96 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-05-16 16:55:08+00:00 1.0 1425729575 95 15 minutes left until our pump on binance 2021-05-16 16:45:03+00:00 1.0 1425729575 94 30 minutes left until our pump on binance 2021-05-16 16:30:01+00:00 1.0 1425729575 93 1 hour left until our pump on binance 2021-05-16 16:01:09+00:00 1.0 1425729575 92 3 hours left until our pump on binance 2021-05-16 14:00:02+00:00 1.0 1425729575 91 7 hours left until our pump on binance 2021-05-16 10:06:47+00:00 1.0 1425729575 86 new binance official pump announcement ⏳date sunday 16 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit free for all 2021-05-14 05:11:00+00:00 1.0 1425729575 83 we had nice pump today whales are sleeping but still good enough pump time is quite good every one got a chance to participate we select bottom coin today its start from 80 and hit 106 40 healthy pump thanks for your support 2021-05-09 17:13:16+00:00 1.0 1425729575 79 15 minutes left until our pump on binance 2021-05-09 16:46:06+00:00 1.0 1425729575 78 30 minutes left until our pump on binance 2021-05-09 16:30:22+00:00 1.0 1425729575 77 3 hours left until our pump on binance 2021-05-09 14:00:58+00:00 1.0 1425729575 76 6 hours left until our pump on binance 2021-05-09 11:00:03+00:00 1.0 1425729575 72 new binance official pump announcement ⏳date sunday 9 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate 2021-05-06 16:44:35+00:00 1.0 1425729575 71 hello everyone we are currently waiting for the best and most optimal market conditions before scheduling our next big pump in order to make sure that we can execute a massive pump with our usual volume and hit our 500+ profit target for all our members we will be making the announcement once our team and the market is ready for it stay tuned 2021-05-05 12:00:55+00:00 1.0 1425729575 69 next post coin name 1 minute left 2021-05-01 16:59:05+00:00 1.0 1425729575 65 in order for this pump to be successful and for everyone to make a profit please do the following once the coin has been announced 1 buy the coin using your bitcoins btc pair only 2 promote the coin to all available social media reddit telegram discord twitter facebook instagram 3 wait for the high of second wave before start selling 4 only sell in parts do not dump 5 enjoy the profits 2021-05-01 16:10:04+00:00 1.0 1425729575 59 pump announcement hello everyone the next official pump will be scheduled for date saturday may 1 time 1700 pm gmt exchange binancecom advantage freeforall with our volumes averaging 50 to 70 million per pump and peaks reaching up to 300 we are ready to announce our next big pump 2021-04-30 09:36:15+00:00 1.0 1425729575 57 pump result 700 btc volume which is around 35 million the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 80 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 200500 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned 2021-04-25 18:12:13+00:00 1.0 1425729575 56 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 500+ 2021-04-25 17:01:21+00:00 1.0 1425729575 52 2 hours left until the biggest pump signal in the history of our group 2021-04-25 14:57:30+00:00 1.0 1425729575 50 7 hours left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-25 10:01:45+00:00 1.0 1425729575 49 2 days remaining until our big pump on binance 2021-04-23 09:54:35+00:00 1.0 1425729575 48 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 10 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-04-15 13:42:00+00:00 1.0 1425729575 39 hello elonxpump all members the next official pump will be scheduled for date sunday april 11 time 1700 pm gmt exchange binance advantage free for all target 300 + be ready with your binance for elonxpump moon ride if you support well and share our group and add more people we will bord you before rocket start 2021-03-30 13:17:27+00:00 1.0 1425729575 31 1 hour left until our big pump on binance 2021-03-28 16:00:04+00:00 1.0 1425729575 30 1 hour and 55 minutes remaining this will be the biggest pump event we have ever done more than a million traders around the world will be watching and participating be prepared 2021-03-28 15:05:05+00:00 1.0 1425729575 27 6 hours left until the big pump on binance everything is looking great and we are more than ready we will give more instructions in order to be prepared in a few hours be ready 2021-03-28 11:00:08+00:00 1.0 1425729575 26 24 hours remaining until our biggest pump signal event of all time 2021-03-28 01:32:28+00:00 1.0 1425729575 24 24 hours remaining until our biggest pump signal event of all time 2021-03-27 17:57:27+00:00 1.0 1425729575 21 24 hours remaining until our biggest pump signal event of all time 2021-03-27 17:00:18+00:00 1.0 1425729575 18 2 days remaining until the big pump signal ever done on binance here is everything you need to know about this pump in order to be prepared we will be pumping a coin with only 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up for those trading from the us you can use a vpn to make a binance account millions of traders worldwide will be watching we have put into place a few measures to spread the word out after our signal we will attempt to make our pump last as long as possible this pump will be the biggest we have done so far be ready and be prepared 2021-03-26 13:17:54+00:00 1.0 1425729575 14 pump announcement hello everyone the next official pump will be scheduled for date sunday march 28 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 5 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-23 15:22:48+00:00 1.0 1425729575 13 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:01:04+00:00 1.0 1425729575 12 5 minutes left the next message will be the coin name 2021-03-21 16:54:48+00:00 1.0 1425729575 8 2 hours left things are looking great the market is currently amazing and we are confident that we will be able to surpass our 500+ target reminder that we will be pumping a coin that only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin be prepared 2021-03-21 15:00:44+00:00 1.0 1425729575 6 4 hours and 10 minutes remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible 2021-03-21 12:50:28+00:00 1.0 1425729575 5 6 hours left until the big pump on binance we will give more instructions in order to be prepared in a few hours be ready 2021-03-21 11:08:09+00:00 1.0 1425729575 4 pump announcement hello everyone the next official pump will be scheduled for date sunday march 21 time 1659 pm gmt exchange binance advantage free for all 2021-03-21 08:43:39+00:00 1.0 1296134866 644 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 17:50:58+00:00 1.0 1296134866 639 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:00:07+00:00 1.0 1296134866 638 5 minutes left the next message will be the coin to buy 2022-01-02 16:55:06+00:00 1.0 1296134866 637 15 minutes left until the big pump on binance be ready 2022-01-02 16:44:59+00:00 1.0 1296134866 635 2 hours left until the massive pump on binance be prepared 2022-01-02 15:00:20+00:00 1.0 1296134866 634 3 hours remaining until the big pump on binance 2022-01-02 14:01:57+00:00 1.0 1296134866 633 5 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2022-01-02 11:59:57+00:00 1.0 1296134866 632 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:08:38+00:00 1.0 1296134866 631 3 days left until the big pump on binance 2021-12-30 14:45:19+00:00 1.0 1296134866 630 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:28+00:00 1.0 1296134866 628 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:14+00:00 1.0 1296134866 627 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:03+00:00 1.0 1296134866 624 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:05+00:00 1.0 1296134866 623 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:02+00:00 1.0 1296134866 622 15 minutes remaining until the big pump be ready 2021-11-28 16:45:53+00:00 1.0 1296134866 620 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:23+00:00 1.0 1296134866 619 2 hours left until the massive pump on binance 2021-11-28 15:01:07+00:00 1.0 1296134866 618 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:20:47+00:00 1.0 1296134866 617 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:11+00:00 1.0 1296134866 616 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:01+00:00 1.0 1296134866 615 2 days remaining until the big pump on binance 2021-11-26 16:18:04+00:00 1.0 1296134866 614 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:02+00:00 1.0 1296134866 613 its time to buy bitshiba again very big news is coming soon by the way we are aware that all of our members are waiting patiently for our next big pump we will be scheduling our next pump very soon possibly this upcoming week stay tuned for our official announcement buy bitshiba contract address 0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7 buy on pancakeswap click here live chart click here telegram tmebitshibatoken 2021-11-18 15:00:00+00:00 1.0 1296134866 609 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:22+00:00 1.0 1296134866 606 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:03+00:00 1.0 1296134866 605 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:55+00:00 1.0 1296134866 603 30 minutes left until the big pump on binance 2021-11-07 16:30:00+00:00 1.0 1296134866 602 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:00+00:00 1.0 1296134866 601 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:09:56+00:00 1.0 1296134866 600 4 hours left until the big pump on binance 2021-11-07 13:00:26+00:00 1.0 1296134866 599 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:02+00:00 1.0 1296134866 598 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:00+00:00 1.0 1296134866 597 2 days left until the big pump on binance be prepared 2021-11-05 14:30:36+00:00 1.0 1296134866 596 4 days remaining until the big pump on binance 2021-11-03 13:56:14+00:00 1.0 1296134866 595 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:07+00:00 1.0 1296134866 594 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1296134866 589 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:05+00:00 1.0 1296134866 587 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:03+00:00 1.0 1296134866 585 30 minutes left until the big pump 2021-10-31 16:29:23+00:00 1.0 1296134866 584 55 minutes left until the big pump on binance 2021-10-31 16:06:16+00:00 1.0 1296134866 583 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:45+00:00 1.0 1296134866 582 4 hours left until the big pump on binance 2021-10-31 13:02:10+00:00 1.0 1296134866 581 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:39+00:00 1.0 1296134866 580 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:27+00:00 1.0 1296134866 579 3 days left until the big pump on binance 2021-10-28 13:02:59+00:00 1.0 1296134866 578 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:46+00:00 1.0 1296134866 577 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:47+00:00 1.0 1296134866 571 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:07+00:00 1.0 1296134866 569 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:55+00:00 1.0 1296134866 568 15 minutes left until the massive pump on binance 2021-10-24 16:44:54+00:00 1.0 1296134866 567 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:02+00:00 1.0 1296134866 566 2 hours left until the big pump on binance 2021-10-24 15:00:00+00:00 1.0 1296134866 565 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:03+00:00 1.0 1296134866 564 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:02+00:00 1.0 1296134866 563 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:10+00:00 1.0 1296134866 562 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:51+00:00 1.0 1296134866 561 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:47+00:00 1.0 1296134866 560 7 days left until the big pump on binance 2021-10-17 14:50:21+00:00 1.0 1296134866 559 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:39:59+00:00 1.0 1296134866 558 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:37+00:00 1.0 1296134866 555 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:05+00:00 1.0 1296134866 553 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1296134866 551 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:29:53+00:00 1.0 1296134866 550 1 hour left until the big pump on binance 2021-10-10 16:00:19+00:00 1.0 1296134866 549 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:02+00:00 1.0 1296134866 548 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:31+00:00 1.0 1296134866 547 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:41+00:00 1.0 1296134866 546 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:53+00:00 1.0 1296134866 545 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:02+00:00 1.0 1296134866 544 3 days left until the big pump on binance 2021-10-07 14:33:53+00:00 1.0 1296134866 543 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:04+00:00 1.0 1296134866 540 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:32+00:00 1.0 1296134866 537 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:07+00:00 1.0 1296134866 535 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:49+00:00 1.0 1296134866 531 12 minutes left until the pump on binance 2021-10-03 16:48:36+00:00 1.0 1296134866 527 30 minutes left until the big the pump on binance 2021-10-03 16:30:03+00:00 1.0 1296134866 526 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-10-03 16:00:02+00:00 1.0 1296134866 525 1 hour and 58 minutes left until the big pump on binance be ready 2021-10-03 15:03:00+00:00 1.0 1296134866 524 3 hours and 50 minutes left until the big pump on binance this pump will be massive be prepared 2021-10-03 13:09:43+00:00 1.0 1296134866 523 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:04+00:00 1.0 1296134866 522 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:03+00:00 1.0 1296134866 521 3 days left until the big pump on binance 2021-09-30 15:23:37+00:00 1.0 1296134866 519 7 days left until the big pump on binance 2021-09-26 14:35:59+00:00 1.0 1296134866 518 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:14+00:00 1.0 1296134866 514 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1296134866 513 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:11+00:00 1.0 1296134866 511 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:07+00:00 1.0 1296134866 508 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:08+00:00 1.0 1296134866 507 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:02+00:00 1.0 1296134866 506 4 hours left until the big pump on binance 2021-09-19 13:01:13+00:00 1.0 1296134866 505 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:01:56+00:00 1.0 1296134866 504 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:12+00:00 1.0 1296134866 503 3 days left until the big pump on binance 2021-09-16 15:14:42+00:00 1.0 1296134866 502 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:54+00:00 1.0 1296134866 500 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:10+00:00 1.0 1296134866 497 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:05+00:00 1.0 1296134866 495 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:45+00:00 1.0 1296134866 492 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1296134866 491 2 hours left until the big pump on binance 2021-09-05 15:00:08+00:00 1.0 1296134866 490 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:04+00:00 1.0 1296134866 489 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:40+00:00 1.0 1296134866 488 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:54+00:00 1.0 1296134866 487 2 days left until the big pump on binance be prepared 2021-09-03 14:05:05+00:00 1.0 1296134866 485 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 8 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-28 14:07:38+00:00 1.0 1296134866 484 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-22 18:00:51+00:00 1.0 1296134866 481 the coin we have picked to pump today is nas nas is looking perfect for a massive pump right now 2021-08-22 17:00:10+00:00 1.0 1296134866 479 5 minutes left the next message will be the coin to buy 2021-08-22 16:55:27+00:00 1.0 1296134866 477 30 minutes remaining until the big pump on binance we will be using the btc pairing to pump meaning you will need to use btc to buy the coin 2021-08-22 16:31:14+00:00 1.0 1296134866 474 2 hours remaining until the big pump on binance 2021-08-22 15:00:32+00:00 1.0 1296134866 472 4 hours left until the big pump on binance 2021-08-22 13:00:28+00:00 1.0 1296134866 471 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-22 11:00:04+00:00 1.0 1296134866 470 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-08-21 17:00:01+00:00 1.0 1296134866 468 4 days remaining until the big pump on binance 2021-08-18 15:01:34+00:00 1.0 1296134866 464 pump announcement hello everyone the next official pump will be scheduled for date sunday august 22 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on august 22 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-09 14:56:00+00:00 1.0 1296134866 461 here is the video everyone has been waiting for the replay of the first minute of our amazing pump yesterday we will be announcing the next pump date shortly 2021-08-09 14:03:41+00:00 1.0 1296134866 460 pump result possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 300 with great volume once again which means all members had a chance to make up to 300 profit within the first 2 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement 2021-08-08 17:43:55+00:00 1.0 1296134866 456 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-08-08 17:00:10+00:00 1.0 1296134866 453 5 minutes left be ready the next message will be the coin to buy 2021-08-08 16:55:27+00:00 1.0 1296134866 451 30 minutes remaining until the big pump on binance get ready 2021-08-08 16:30:00+00:00 1.0 1296134866 449 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 400 profit + be ready 2021-08-08 16:00:09+00:00 1.0 1296134866 446 5 hours left until the big pump on binance 2021-08-08 12:00:14+00:00 1.0 1296134866 445 6 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-08 10:14:14+00:00 1.0 1296134866 444 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being back and volumes being high the odds of reaching 400 profit will be very high this time we will do everything in our power to make sure we reach this target this is officially the pump you will want to be part of and not miss be prepared 2021-08-07 17:00:00+00:00 1.0 1296134866 443 2 days remaining until our biggest pump signal of all time be prepared 2021-08-06 11:47:19+00:00 1.0 1296134866 442 4 days remaining until the big pump on binance 2021-08-04 15:06:00+00:00 1.0 1296134866 440 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-01 13:44:04+00:00 1.0 1296134866 439 pump result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-07-25 18:05:53+00:00 1.0 1296134866 433 the coin we have picked to pump today is drep drep is looking perfect for a pump right now the target is 500 2021-07-25 17:00:01+00:00 1.0 1296134866 432 5 minutes left the next post will be the coin to buy 2021-07-25 16:55:00+00:00 1.0 1296134866 428 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 500 profit and beyond be ready 2021-07-25 16:00:00+00:00 1.0 1296134866 427 2 hours remaining until the big pump on binance 2021-07-25 15:01:03+00:00 1.0 1296134866 426 4 hours left until our big pump everything is still looking good still with our coin being bottomed which means all members will be able to buy early we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in last time we were able to get a few thousands retweet which means a big commitment from our community this time we want the effect to be bigger by asking all of our members to post on twitter after our signal we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-25 13:00:22+00:00 1.0 1296134866 425 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump with the market being good we can guarantee a good pump this time as our team will support it in a massive way by injecting volume after our members bought in 2 hours we will post a few directives in order to coordinate our coin to trend on twitter our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-25 11:00:28+00:00 1.0 1296134866 424 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-24 17:01:25+00:00 1.0 1296134866 423 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible this pump will have a big amount of support from the team and we can confirm with absolute certainty that this will be the biggest profit maker pump of all time be prepared 2021-07-23 14:15:02+00:00 1.0 1296134866 422 4 days remaining until our big pump on binance 2021-07-21 12:36:37+00:00 1.0 1296134866 421 7 days remaining until our big pump on binance we can say with 100 certainty that we will be able to do a massive pump like we did on ppt nxs and sky our official target for this pump will be 500 in a few days we will give our members more information on how to be ready for it in order to maximize your profits 2021-07-18 11:20:10+00:00 1.0 1296134866 419 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on july 25 we will be pumping again with a 500 + target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs and sky which was 3 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-07-12 12:05:28+00:00 1.0 1296134866 417 pump result the volume was amazing once again with a great 2nd wave that lasted a good amount of time however the pump did not go as we had initially planned we did manage to almost get our coin trending on twitter as we can see thousands of posts about it which is great and confirms that there is a big commitment from our members we will attempt to make that effect much bigger on the next one and coordinate it much better before the signal there was a lot of activity on our coin and our team had to decide between postponing the pump or doing the pump we decided to still do the pump which was unfortunately not the right decision in order to make sure this never happens again we can guarantee that we will be taking the following measures on the next pump the coin will be given at the absolute bottom in order to guarantee bigger profits for our members our team will support the price after all our members have bought by injecting a massive amount of btc this will guarantee that all our members can start with a good profit regardless of where they bought last but not least we will make sure that our targets will be met in order to guarantee a great pump for everyone we will announce the next official pump date soon stay tuned 2021-07-11 18:02:23+00:00 1.0 1296134866 416 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:00:02+00:00 1.0 1296134866 415 5 minutes left the next message will be the coin to buy 2021-07-11 16:54:47+00:00 1.0 1296134866 410 1 hour left until our big pump on binance be prepared 2021-07-11 16:00:01+00:00 1.0 1296134866 409 2 hours remaining until the big pump on binance 2021-07-11 15:00:03+00:00 1.0 1296134866 408 4 hours and 5 minutes left until our big pump we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-11 12:55:01+00:00 1.0 1296134866 407 6 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-11 11:00:01+00:00 1.0 1296134866 406 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time this is the pump that you will not want to miss you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-10 17:00:00+00:00 1.0 1296134866 405 2 days left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-07-09 13:54:53+00:00 1.0 1296134866 404 4 days left until the biggest pump signal of all time on binance in a few days we will be posting more information in order to be prepared for the pump 2021-07-07 14:01:01+00:00 1.0 1296134866 403 7 days remaining until the big pump on binance 2021-07-04 12:02:18+00:00 1.0 1296134866 401 pump announcement this pump will take place on the binance exchange on sunday july 11 at 1700 pm gmt with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on july 11 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 11 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-30 17:00:10+00:00 1.0 1296134866 400 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place most likely our next pump will be in 23 weeks best regards wallstreetbets pumps team 2021-06-24 14:06:31+00:00 1.0 1296134866 395 pump announcement in 13 days from now this pump will take place on the binance exchange on sunday june 27 at 1700 gmt dear members we are more than ready for this pump this time our pump is joined by other groups of investors thanks to which we will achieve a better result one of them is the group with over 2 million members we have also developed a new workflow to prevent price surges in addition weve been making a lot of marketing moves recently that will also add volume to us over time several thousand investors joined our group on discord in the last 24 hours this pump is definitely going to be huge 2021-06-18 13:57:14+00:00 1.0 1296134866 388 the coin we have picked to pump today is nxs nxs is looking perfect for a pump right now our target is high 2021-05-26 17:00:02+00:00 1.0 1296134866 387 5 minutes left until the pump the next message will be the coin name 2021-05-26 16:55:13+00:00 1.0 1296134866 384 10 minutes left until the pump make sure that you have btc on your balance 2021-05-26 16:50:37+00:00 1.0 1296134866 382 30 minutes left until the pump we will be pumping a coin with only 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 200+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up for those trading from the us you can use a vpn to make a binance account millions of traders worldwide will be watch 2021-05-26 16:31:08+00:00 1.0 1296134866 381 60 minutes left until the pump in our next post you will get more information on how to pump 2021-05-26 16:01:19+00:00 1.0 1296134866 380 2 hours left until the pump date wednesday 26 may today ⏰ time 5 pm gmt 1700 gmt exchange binancecom 2021-05-26 15:00:25+00:00 1.0 1296134866 378 4 hours left until the pump date wednesday 26 may today ⏰ time 5 pm gmt 1700 gmt exchange binancecom 2021-05-26 13:10:19+00:00 1.0 1296134866 377 6 hours left until the pump date wednesday 26 may today ⏰ time 5 pm gmt 1700 gmt exchange binancecom 2021-05-26 11:00:06+00:00 1.0 1296134866 376 8 hours left until the pump date wednesday 26 may today ⏰ time 5 pm gmt 1700 gmt exchange binancecom 2021-05-26 09:00:05+00:00 1.0 1296134866 375 12 hours left until the pump date wednesday 26 may today ⏰ time 5 pm gmt 1700 gmt exchange binancecom 2021-05-26 05:00:04+00:00 1.0 1296134866 373 pump announcement in 2 days from now date wednesday 26 may ⏰ time 5 pm gmt 1700 gmt exchange binancecom we decided to pump earlier because all the coins are at an amazing price low with the current market condition we will be able to make a profit of 200 or even more as for the previous pump announcement we will keep you updated it is possible that we will organize a second pump on the same day we informed you earlier 2021-05-24 17:03:23+00:00 1.0 1296134866 368 hello everyone we are currently waiting for the best and most optimal market conditions before scheduling our next big pump in order to make sure that we can execute a massive pump with our usual volume and hit our 500+ profit target for all our members we will be making the announcement once our team and the market is ready for it stay tuned 2021-04-29 12:32:35+00:00 1.0 1296134866 367 pump result 700 btc volume which is around 35 million the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 80 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 200500 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned 2021-04-25 18:11:01+00:00 1.0 1296134866 363 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 500+ 2021-04-25 17:00:10+00:00 1.0 1296134866 362 2 minutes left the next message will be the coin name 2021-04-25 16:57:23+00:00 1.0 1296134866 357 2 hours left until the biggest pump signal in the history of our group 2021-04-25 14:57:27+00:00 1.0 1296134866 355 7 hours left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-25 10:00:37+00:00 1.0 1296134866 354 the day has arrived 24 hours remaining until our biggest pump signal event of all time 2021-04-24 16:58:07+00:00 1.0 1296134866 353 2 days left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-23 15:43:24+00:00 1.0 1296134866 352 3 days remaining until our big pump on binance 2021-04-22 15:11:08+00:00 1.0 1296134866 350 4 days remaining until our big pump on binance more information about our upcoming pump will follow in the next few days 2021-04-21 14:39:10+00:00 1.0 1296134866 349 6 days left until our big pump on binance 2021-04-19 13:19:34+00:00 1.0 1296134866 348 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 10 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-04-15 13:37:14+00:00 1.0 1296134866 346 pump result 1120 btc volume in total which is around 67 million with a peak of 160 we have given the signal at the absolute bottom in order to make sure everyone has the best opportunity of buying at a low price we hope many of you managed to make decent profit although we didnt reach our 500 target we will be doing something new in the next pump to make sure we hit our 500 target stay tuned 2021-04-11 19:37:54+00:00 1.0 1296134866 345 the coin we have picked to pump today is via via is looking perfect for a pump right now our target is 500+ 2021-04-11 17:00:05+00:00 1.0 1296134866 344 5 minutes left the next message will be the coin to buy our target will be more than 500+ 2021-04-11 16:55:07+00:00 1.0 1296134866 337 2 hours and 30 minutes left until the biggest pump signal in the history of our group 2021-04-11 14:30:05+00:00 1.0 1296134866 335 6 hours left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-11 10:59:50+00:00 1.0 1296134866 334 the day has arrived 24 hours remaining until our biggest pump signal event of all time 2021-04-10 17:00:12+00:00 1.0 1296134866 333 2 days remaining until our biggest pump signal event on binance 2021-04-09 13:46:06+00:00 1.0 1296134866 331 5 days left until our big pump on binance 2021-04-06 14:55:36+00:00 1.0 1296134866 328 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 11 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 11 we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-29 15:13:54+00:00 1.0 1296134866 324 pump results 1400 btc volume which is around 80m with this amount of volume we should normally be able to pump coins above 500+ fairly easily although the volume was massive we did not manage to reach our target of 5001000 after looking carefully at the data we saw that the sell pressure came from the eth pairing we are not quite sure exactly where those sells were coming from but we will look further into it to make sure it doesnt happen in our next pump and reach the result we were meant to reach in this pump thank you all for participating we will announce our next date shortly 2021-03-28 18:27:47+00:00 1.0 1296134866 321 the coin we have picked to pump today is pivx pivx is looking perfect for a pump right now our target is 1000 2021-03-28 17:00:04+00:00 1.0 1296134866 320 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-03-28 16:59:05+00:00 1.0 1296134866 315 1 hour left until our big pump on binance 2021-03-28 16:00:03+00:00 1.0 1296134866 314 1 hour and 55 minutes remaining this will be the biggest pump event we have ever done more than a million traders around the world will be watching and participating be prepared 2021-03-28 15:05:04+00:00 1.0 1296134866 311 6 hours left until the big pump on binance everything is looking great and we are more than ready we will give more instructions in order to be prepared in a few hours be ready 2021-03-28 11:00:07+00:00 1.0 1296134866 310 24 hours remaining until our biggest pump signal event of all time 2021-03-27 16:59:42+00:00 1.0 1296134866 309 2 days remaining until the big pump signal ever done on binance here is everything you need to know about this pump in order to be prepared we will be pumping a coin with only 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up for those trading from the us you can use a vpn to make a binance account millions of traders worldwide will be watching we have put into place a few measures to spread the word out after our signal we will attempt to make our pump last as long as possible this pump will be the biggest we have done so far be ready and be prepared 2021-03-26 13:17:51+00:00 1.0 1296134866 306 pump announcement hello everyone the next official pump will be scheduled for date sunday march 28 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 5 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-23 15:21:31+00:00 1.0 1296134866 304 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:00:23+00:00 1.0 1296134866 303 5 minutes left the next message will be the coin name 2021-03-21 16:54:31+00:00 1.0 1296134866 297 2 hours left things are looking great the market is currently amazing and we are confident that we will be able to surpass our 500+ target reminder that we will be pumping a coin that only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin be prepared 2021-03-21 15:00:09+00:00 1.0 1296134866 295 4 hours and 10 minutes remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible we will be pumping a coin with only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-21 12:49:26+00:00 1.0 1296134866 294 6 hours left until the big pump on binance we will give more instructions in order to be prepared in a few hours be ready 2021-03-21 11:05:47+00:00 1.0 1296134866 293 24 hours left until the biggest pump signal in the history of our group our target will be more than 500 tomorrow is a big day for us more information about the pump will come tomorrow 2021-03-20 16:57:14+00:00 1.0 1296134866 292 2 days left until the big pump on binance be prepared 2021-03-19 13:24:45+00:00 1.0 1296134866 287 6 days left until our big pump on binance 2021-03-15 12:55:57+00:00 1.0 1296134866 282 pump announcement hello everyone the next official pump will be scheduled for date sunday march 21 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 21 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 12 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-09 15:54:47+00:00 1.0 1296134866 281 pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned 2021-03-07 17:40:59+00:00 1.0 1296134866 277 the coin we have picked to pump today is ppt ppt is looking perfect for a pump right now our target is 1000 2021-03-07 17:00:04+00:00 1.0 1296134866 276 5 minutes left next post will be the coin name 2021-03-07 16:55:47+00:00 1.0 1296134866 275 10 minutes left be ready on binance 2021-03-07 16:51:04+00:00 1.0 1296134866 270 1 hour remaining until our pump on binance our reposter bot had a few issues and it is fixed now everything is looking perfect now and we are more than ready to pump be ready 2021-03-07 16:00:13+00:00 1.0 1296134866 269 1 hour and 45 minutes left until the our big pump on binance 2021-03-07 15:15:43+00:00 1.0 1296134866 264 3 hours left until the big pump on binance 2021-03-07 13:59:22+00:00 1.0 1296134866 262 5 hours remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-07 11:54:57+00:00 1.0 1296134866 261 24 hours left until the biggest pump signal in the history of our group our target will be more than 500 tomorrow is a big day for us more information about the pump will come tomorrow 2021-03-06 17:03:50+00:00 1.0 1296134866 257 pump announcement hello everyone the next official pump will be scheduled for date sunday march 7 time 1700 pm gmt exchange binancecom advantage free for all with all of our members making more than 200 and 300 profit consecutively with our last 2 pumps and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump on march 7 we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits we have 1 week and a half to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we will be targeting 500 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-02-26 09:03:51+00:00 1.0 1296134866 252 pump result 1000 btc volume in a few minutes which is close to 60 million with a peak of 350 amazing pump everyone we are receiving unbelievable amounts of messages of appreciation and we are glad many of you managed to make massive profits in this pump we are officially the biggest pump community in the world our whales did their part once again and pushed the price up to 10000 satoshi for all our members to profit our volume keeps getting bigger every pump and we are confident that in the next pump we will be able to hit 5001000 profit for all our members stay tuned for the next pump announcement 2021-02-21 17:31:02+00:00 1.0 1296134866 250 the coin we have picked to pump today is nxs nxs is looking perfect for a pump right now our target is high 2021-02-21 17:00:04+00:00 1.0 1296134866 249 2 minutes left the coin only has a btc pairing make sure you have btc to buy the next message will be the coin to buy be ready 2021-02-21 16:58:07+00:00 1.0 1296134866 242 2 hours left we will be using the btc pairing on binancecom to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up 2021-02-21 14:58:15+00:00 1.0 1296134866 241 4 hours left until the big pump on binance be ready 2021-02-21 12:58:14+00:00 1.0 1296134866 240 1 day left until our big pump on binance 2021-02-20 17:00:02+00:00 1.0 1296134866 237 pump announcement hello everyone the next official pump will be scheduled for date 21feb2021 sunday time 5pm gmt exchange binancecom international advantage free for all with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we are expecting hundreds of thousands of people all across the world to attend this pump we will be giving out more information about our upcoming pump in the upcoming days if you want to get 20 lifetime discount on trading fees register on binance using our referral id efm71yc3 stay tuned 2021-02-15 16:15:56+00:00 1.0 1296134866 234 pump result 600 btc volume which is close to 30 million in a few minutes the price managed to stay at the peak for a very long time which means that outsider reaction was really good our whales did their work and held it high for all our members we are receiving many messages of appreciation and we are happy to hear that most people made up to 200 profit congratulations to everyone that participated we will be planning our next pump soon and try go to for 400500 on the next one stay tuned 2021-02-13 17:28:23+00:00 1.0 1296134866 233 one of the best pump we have seen to date the price managed to stay at +200 for a very long time we will be posting the pump results shortly 2021-02-13 17:22:11+00:00 1.0 1296134866 231 the coin we have picked to pump today is sky sky is looking perfect for a pump right now our target is high 2021-02-13 17:00:05+00:00 1.0 1296134866 230 5 minutes left the next message will be the coin name 2021-02-13 16:54:12+00:00 1.0 1296134866 225 2 hours left until our pump signal make sure you are using btc to buy the coin 2021-02-13 14:59:02+00:00 1.0 1296134866 224 3 hours left until the pump on binance for us users make sure you are using binancecom the pump will be free for all meaning everyone will get the signal at the same time 2021-02-13 14:05:55+00:00 1.0 1296134866 223 4 hours left until the big pump on binance be ready 2021-02-13 13:03:17+00:00 1.0 1296134866 213 pump announcement in 9 days date saturday 6 february ⏰ time 9 pm gmt 2100 gmt exchange binancecom this pump will be ffa free for all which means that no one will have a time advantage please share this event on social media such as reddit discord twitter medium bitcoin talk and others so this pump reaches as many people as possible because thanks to this we will make a bigger profit on the pump we also recommend you to join our new discord server saturday 6 feb 2021 900 pm gmt london saturday 6 feb 2021 400 pm est new york sunday 7 feb 2021 600 am gmt+9 seoul 2021-01-28 22:41:53+00:00 1.0 1296134866 207 snm pump results ◾️ profit 5714 ◾️ volume 17 btc 5 minutes ◾️ high 28 sats ◾️ start 44 sats ◾️ date 20012021 2021-01-20 18:00:00+00:00 1.0 1296134866 204 5 minutes left until the pump ride the waves put buy walls and spread news we expect our profit to be much higher than the last time there is a good chance that after a few minutes we will reach over 100 gain due to high activity in the alts market 2021-01-20 16:55:00+00:00 1.0 1296134866 203 30 minutes left until the pump pumped coin will have btc pairing only it means that you should prepare bitcoins for this pump 2021-01-20 16:30:00+00:00 1.0 1296134866 202 60 minutes left until the pump some basic tips on buying and selling during a pump 1when the pump starts the price of the coin can spike pretty fast if you limit buy a coin we advise you to buy 75 a 100 limit buy does not go through most of the time since the price is up if you market buy the coin the order will always go through 2 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 3 do not panic sell we have seen in the past that a lot of people will panic sell when theyre down on their initial investment just know pumps come in waves so there should be plenty of times within the pump that you will be able to sell with profit so do not panic 2021-01-20 16:00:02+00:00 1.0 1296134866 201 2 hours left until the pump what can you do to help make the pump as successful as possible keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags this socalled social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea good cryptorelated social media pages to post in will be shared a couple of hours before the pump 2021-01-20 15:00:00+00:00 1.0 1296134866 198 pump announcement in 24 hours date wednesday 20 january ⏰ time 5 pm gmt 1700 gmt exchange binancecom this pump will be ffa free for all which means that no one will have a time advantage please share this event on social media such as reddit discord twitter medium bitcoin talk and others so this pump reaches as many people as possible because thanks to this we will make a bigger profit on the pump we also recommend you to join our new discord server wednesday 20 jan 2021 500 pm gmt london wednesday 20 jan 2021 1200 pm est new york thursday 21 jan 2021 200 am gmt+9 seoul 2021-01-19 17:00:01+00:00 1.0 1296134866 196 appc pump results ◾️ profit 4217 ◾️ high 118 sats ◾️ start 83 sats ◾️ date 13012021 2021-01-13 23:30:02+00:00 1.0 1296134866 192 5 minutes left until the pump ride the waves put buy walls and spread news 2021-01-13 20:55:02+00:00 1.0 1296134866 191 30 minutes left until the pump pumped coin will have btc pairing only it means that you should prepare bitcoins for this pump 2021-01-13 20:30:00+00:00 1.0 1296134866 190 60 minutes left until the pump some basic tips on buying and selling during a pump 1when the pump starts the price of the coin can spike pretty fast if you limit buy a coin we advise you to buy 75 a 100 limit buy does not go through most of the time since the price is up if you market buy the coin the order will always go through 2 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 3 do not panic sell we have seen in the past that a lot of people will panic sell when theyre down on their initial investment just know pumps come in waves so there should be plenty of times within the pump that you will be able to sell with profit so do not panic 2021-01-13 20:00:00+00:00 1.0 1296134866 189 2 hours left until the pump what can you do to help make the pump as successful as possible keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags this socalled social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea good cryptorelated social media pages to post in will be shared a couple of hours before the pump 2021-01-13 19:00:00+00:00 1.0 1296134866 183 pump announcement in 24 hours date wednesday 13 january ⏰ time 9 pm gmt 2100 gmt exchange binancecom this pump will be free for everyone which means that no one will have a time advantage please share this event on social media such as reddit discord twitter medium bitcoin talk and others so this pump reaches as many people as possible because thanks to this we will make a bigger profit on the pump wednesday 13 jan 2021 900 pm gmt london wednesday 13 jan 2021 400 pm est new york thursday 14 jan 2021 600 am gmt+9 seoul 2021-01-12 21:00:00+00:00 1.0 1296134866 181 sngls pump results ◾️ profit 7142 ◾️ volume 1474 btc in 10 minutes ◾️ high 24 sats ◾️ start 14 sats ◾️ date 11012021 2021-01-12 09:00:03+00:00 1.0 1296134866 178 5 minutes left until the pump ride the waves put buy walls and spread news 2021-01-11 20:55:00+00:00 1.0 1296134866 177 30 minutes left until the pump pumped coin will have btc pairing only it means that you should prepare bitcoins for this pump 2021-01-11 20:30:00+00:00 1.0 1296134866 176 60 minutes left until the pump some basic tips on buying and selling during a pump 1when the pump starts the price of the coin can spike pretty fast if you limit buy a coin we advise you to buy 75 a 100 limit buy does not go through most of the time since the price is up if you market buy the coin the order will always go through 2 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 3 do not panic sell we have seen in the past that a lot of people will panic sell when theyre down on their initial investment just know pumps come in waves so there should be plenty of times within the pump that you will be able to sell with profit so do not panic 2021-01-11 20:00:00+00:00 1.0 1296134866 175 2 hours left until the pump what can you do to help make the pump as successful as possible keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags this socalled social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea good cryptorelated social media pages to post in will be shared a couple of hours before the pump 2021-01-11 19:00:00+00:00 1.0 1296134866 171 pump announcement in 24 hours date monday 11 january ⏰ time 9 pm gmt 2100 gmt exchange binancecom this pump will be free for everyone which means that no one will have a time advantage please share this event on social media such as reddit discord twitter medium bitcoin talk and others so this pump reaches as many people as possible because thanks to this we will make a bigger profit on the pump monday 11 jan 2021 900 pm gmt london monday 11 jan 2021 400 pm est new york tuesday 12 jan 2021 600 am gmt+9 seoul 2021-01-10 21:00:05+00:00 1.0 1296134866 169 snm pump results ◾️ profit 5455 ◾️ volume 1027 btc in 6 minutes ◾️ high 35 sats ◾️ start 23 sats ◾️ date 08012021 2021-01-08 22:30:02+00:00 1.0 1296134866 165 5 minutes left ride the waves put buy walls and spread news 2021-01-08 20:55:03+00:00 1.0 1296134866 164 60 minutes left until the pump some basic tips on buying and selling during a pump 1when the pump starts the price of the coin can spike pretty fast if you limit buy a coin we advise you to buy 75 a 100 limit buy does not go through most of the time since the price is up if you market buy the coin the order will always go through 2 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 3 do not panic sell we have seen in the past that a lot of people will panic sell when theyre down on their initial investment just know pumps come in waves so there should be plenty of times within the pump that you will be able to sell with profit so do not panic 2021-01-08 20:00:01+00:00 1.0 1296134866 163 2 hours left until the pump what can you do to help make the pump as successful as possible keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags this socalled social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea good cryptorelated social media pages to post in will be shared a couple of hours before the pump 2021-01-08 19:00:02+00:00 1.0 1296134866 158 pump announcement date friday 8 january ⏰ time 9 pm gmt 2100 gmt exchange binancecom this pump will be free for everyone which means that no one will have a time advantage please share this event on social media on sites such as reddit discord twitter medium bitcoin talk and others so this pump reaches as many people as possible because thanks to this we will make a bigger profit on the pump sat 8 jan 2021 900 pm gmt london sat 8 jan 2021 400 pm est new york sun 9 jan 2021 600 am gmt+9 seoul 2021-01-03 23:00:45+00:00 1.0 1296134866 155 appc pump results ◾️ profit 2765 ◾️ volume 1146 btc in 6 minutes ◾️ high 120 sats ◾️ start 94 sats ◾️ date 01012021 2021-01-01 22:12:27+00:00 1.0 1296134866 152 today we did a spectacular pump we did 1146 btc volume in 6 minutes and held our top gainers positions stably for 5 minutes most of you have probably made a profit due to the quick purchase of coins we tried to slightly raise the price before the pump to manipulate the chart but accidentally led to a prepump fortunately it did not pose any risk to our pump as it lasted a few minutes thanks to your support we are developing very fast thanks to which we all will probably achieve much higher profits in the future 1 second pump chart 2021-01-01 22:11:42+00:00 1.0 1296134866 145 5 minutes left ride the waves put buy walls and spread news 2021-01-01 20:56:02+00:00 1.0 1296134866 142 60 minutes left until the pump some basic tips on buying and selling during a pump 1when the pump starts the price of the coin can spike pretty fast if you limit buy a coin we advise you to buy 75 a 100 limit buy does not go through most of the time since the price is up if you market buy the coin the order will always go through 2 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 3 do not panic sell we have seen in the past that a lot of people will panic sell when theyre down on their initial investment just know pumps come in waves so there should be plenty of times within the pump that you will be able to sell with profit so do not panic 2021-01-01 20:01:01+00:00 1.0 1296134866 141 2 hours left until the pump what can you do to help make the pump as successful as possible keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags this socalled social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea good cryptorelated social media pages to post in will be shared a couple of hours before the pump 2021-01-01 19:01:01+00:00 1.0 1296134866 136 pump announcement in 48 hours date friday 1 january ⏰ time 9 pm gmt 2100 gmt exchange binancecom this pump will be free for everyone which means that no one will have a time advantage the last time we gave you a coin name over 30 seconds later which was the reason why we made only 5 btc volume during the first minute please share this event on social media on sites such as reddit facebook telegram discord and others so this pump reaches as many people as possible because thanks to this we will make a bigger profit on the pump we would like to thank you for the fact that there are 3000 of you on our channel we wish you a happy new year and a successful new years eve sat 1 jan 2021 900 pm gmt london sat 1 jan 2021 400 pm est new york sun 2 jan 2021 600 am gmt+9 seoul 2020-12-30 21:01:02+00:00 1.0 1296134866 133 nxs pump results ◾️ profit 3693 ◾️ high 1190 ◾️ low 869 ◾️ date 27122020 2020-12-27 19:00:57+00:00 1.0 1296134866 130 5 minutes left ride the waves put buy walls and spread news 2020-12-27 17:55:57+00:00 1.0 1296134866 128 60 minutes left until the pump some basic tips on buying and selling during a pump 1when the pump starts the price of the coin can spike pretty fast if you limit buy a coin we advise you to buy 75 a 100 limit buy does not go through most of the time since the price is up if you market buy the coin the order will always go through 2 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 3 do not panic sell we have seen in the past that a lot of people will panic sell when theyre down on their initial investment just know pumps come in waves so there should be plenty of times within the pump that you will be able to sell with profit so do not panic 2020-12-27 17:00:56+00:00 1.0 1296134866 127 2 hours left until the pump what can you do to help make the pump as successful as possible keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags this socalled social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea good cryptorelated social media pages to post in will be shared a couple of hours before the pump 2020-12-27 16:00:56+00:00 1.0 1296134866 124 6 hours left until the pump many of you guys missed the recent +9243 dusk pump click but todays pump will be a big opportunity and you all will be able to make massive profits in short term we will share a low cap fomo coin waiting for a kick to moon read the pinned post for details 2020-12-27 12:00:57+00:00 1.0 1296134866 123 12 hours left until the pump our whales are more than ready… are you alts are showing insane momentum against btc its a perfect opportunity for us all to make maximum benifits today make sure you pinned our channel on top be ready at 1900 gmt today 2020-12-27 06:00:57+00:00 1.0 1296134866 122 24 hours left until the pump the markets for altcoins are very healthy right now the recent bitcoin movement has pushed prices down and now they are ready to surge back up past what they were we are going to ride this momentum and make sure our coin rises the highest we expect to be even stronger again this time things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news our channel 5 profit and brag to your friends 2020-12-26 18:00:56+00:00 1.0 1296134866 120 pump announcement date sunday 27 december ⏰ time 6 pm gmt 1800 gmt exchange binancecom this pump will be huge more than ever our whales will start pushing the price up 40 seconds since we give you a pumped coin name we recommend you to sell other coins you own for bitcoins while buying the coin use the market option using 75 of your btc balance buy dips using remaining 25 of your previous btc balance we expect volume to be more 10 btc first minute thanks to our new whales we recommend you to hold the pumped coin for some time so you dont dump the price this pump is free for everyone which means that no one will have a time advantage 2020-12-26 14:10:11+00:00 1.0 1296134866 53 5 minutes left until the push we will post coin name 2050 seconds earlier here 2020-12-03 17:55:45+00:00 1.0 1296134866 51 15 minutes left until the push push guide 2020-12-03 17:45:44+00:00 1.0 1296134866 49 30 minutes left until the push push guide 2020-12-03 17:30:44+00:00 1.0 1296134866 36 push announcement date thursday 3 december ⏰ time 6 pm gmt exchange binancecom we changed the time due to the fact that for many people it was not a comfortable hour additionally we decided to change the name of the event to push because we intend to implement this format more information will be given in the next post greetings cryptic team 2020-11-30 18:06:48+00:00 1.0 1296134866 31 we have made more than 1 btc volume in 1 minute and 6 btc for the next 3 minutes which is the duration of the pump this does not surprise us because it was the first pump of this group which made many people skeptical about it many people were afraid to invest because we had no history as you can see the information we gave you was 100 reliable so stay with us and watch out for the fake groups it is very important that you do not vote in our votes if you know that you will not invest if you want to join us please be honest if everyone pays as much as they declared then the pump effect will be much better and each of you can earn much more we expect that the next pump will have a larger volume and bring all of us more profit please make the link to our group available to your friends and surely the next pump will be more profitable greetings cryptic pumps 2020-11-27 20:01:54+00:00 1.0 1296134866 29 appc push results ◾️ profit 2666 ◾️ high 171 ◾️ low 135 ◾️ date 27112020 ◾️ time 1800 gmt 2020-11-27 20:00:43+00:00 1.0 1296134866 24 5 minutes left until the pump the next post will start with the name of the coin 2020-11-27 17:55:41+00:00 1.0 1296134866 23 15 minutes left until the pump the next post will be the name of the coin buy it as soon as you can because every second is important if youre late with the purchase place a few buy limits if you have more than 3 btc we encourage you to place an offer to buy instead of going in using the market the bigger the better our users will sell you their resources in case of any problems and by the same time placing a big buy limit you will stabilize the pump and give it the potential to pump more 2020-11-27 17:45:41+00:00 1.0 1296134866 22 30 minutes left until the pump if the coin stays at the top for 12 minutes we speculate that outsiders binance investors will be able to invest up to 50 btc which will make the price pump a lot the more people who follow our recommendations the more chance we have of mapping out what happened to xrp the coin will have btc pairing only 2020-11-27 17:30:41+00:00 1.0 1296134866 20 60 minutes left until the pump pump guide 1 prepare your bitcoins on binance follow our posts and wait for the name of the coin which we will give evenly at 1800 gmt before the pump we recommend that you set the chart to 1 minute and have the telegram window open because notifications may come with a delay 2 when we give you the name of the coin buy it as soon as possible at the market for 6070 of the bitcoins you have if the price of the coin dumps buy more on the dip 3 promote the name of the coin wherever possible you can paste there a picture of the analysis we will publish together with the coin name 4 hold the coin until there is a large buy limit like 13 btc when selling use market pump timer 2020-11-27 17:01:03+00:00 1.0 1296134866 19 2 hours left until the pump click here to redirect to a video from our last pump to youtube it was dedicated to some investors faster but this time no one will have an advantage everyone will get a coin at the same time 2020-11-27 16:01:31+00:00 1.0 1296134866 18 3 hours left until the pump on this pump exceptionally we do not do any protection against trading bots because there will not be many of them we will just give you the coin on the photo and in the form of a message if some are unconvinced we want to tell you that we are probably the most experienced people in pumping and pushing in the next post we will publish a sample video of the last pumpspushes 2020-11-27 15:02:41+00:00 1.0 1296134866 14 6 hours left until the pump we chose probably the best moment for a pump because most of alts have been falling over the past weeks we assume that the price can rise higher than we expected so after the pump starts we recommend that you hold pumped coin and wait for some big buy walls buy limits to sell on them 2020-11-27 12:00:41+00:00 1.0 1296134866 12 pump guide 1 prepare your bitcoins on binance follow our posts and wait for the name of the coin which we will give evenly at 1800 gmt before the pump we recommend that you set the chart to 1 minute and have the telegram window open because notifications may come with a delay 2 when we give you the name of the coin buy it as soon as possible at the market for 6070 of the bitcoins you have if the price of the coin dumps buy more on the dip 3 promote the name of the coin wherever possible you can paste there a picture of the analysis we will publish together with the coin name 4 hold the coin until there is a large buy limit for more than 3 btc when selling use market pump timer best regards cryptic pumps 2020-11-26 18:07:08+00:00 1.0 1296134866 10 48 hours left until the pump this pump will be ffa free for all this means that no one will have a time advantage if you dont have bitcoins on your binance account we recommend to deposit them there now to prepare for the pump we recommend that you enable notifications on our channel and read the information from the last post this is our first pump but we are sure it will be a success because we have gathered 500 new members please share our channel with your friends and crypto groups because the more people enter our pump the higher the volume on which your profit depends to prevent a dump after the pump our users should enter the pump using 5075 btc and then as the price will dump buy the rest of the btc resources in the dip the key to success is to keep the price stable then we wait for big walls buy limits to sell the coin on them not following the rules will make the outsiders of binance earn money and we will lose but we know that most of you are smart enough to follow the rules 2020-11-25 18:00:41+00:00 1.0 1296134866 9 72 hours left until the pump if you see that the price of coin is dumping buy it on the low and you will increase your earnings and the price of coin will stabilize if there arent many bids when you start the pump we recommend that you wait until someone places a bid of about 310 btc and then sell the coin using the market until the bid is filled to better understand this if you sell coin even on a high you wont profit if there are no bids for this reason we recommend to wait for the big bid buy offer because not only will you make money but you will maintain the price of the coin so other members will profit which will translate into more volume on the next pump the coin we choose on the day of the pump will have a very good trendline few sales offers and many other factors that will interest side investors to buy it 2020-11-24 18:01:15+00:00 1.0 1296134866 7 pump announcement date friday 27 november ⏰ time 1800 pm gmt exchange binancecom this pump is free for everyone this means that no one will have a time advantage we recommend that you buy coin as soon as possible in order to avoid losses and not to be sniffed around when buying because it will take you precious seconds if you buy coin after the pump has started nothing bad will happen because pumps usually last up to a minute or even several minutes 2020-11-22 19:50:33+00:00 1.0 1462243546 14642 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact stevenandpump for premium membership 2022-01-19 09:29:37+00:00 1.0 1462243546 7573 elf hit 1479 finally all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 33 to know next pump coin name ☎️ contact stevenandpump 2020-09-10 13:30:10+00:00 1.0 1462243546 7545 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact stevenandpump for premium membership 2020-09-09 15:01:36+00:00 1.0 1462243546 7310 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact stevenandpump for premium membership 2020-08-31 15:49:01+00:00 1.0 1462243546 6635 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact stevenandpump 2020-07-28 15:34:16+00:00 1.0 1462243546 6546 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact stevenandpump for premium membership 2020-07-23 15:21:32+00:00 1.0 1462243546 6530 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact stevenandpump for premium membership 2020-07-23 02:40:37+00:00 1.0 1462243546 6258 15 minutes left to pump on binance 2020-07-07 15:49:09+00:00 1.0 1462243546 6257 4 hour left to pump on binance to know coin name earlier join premium ☎ contact stevenandpump 2020-07-07 12:04:11+00:00 1.0 1462243546 6231 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact stevenandpump 2020-07-04 16:56:29+00:00 1.0 1462243546 6220 pump coin name gvt 2020-07-04 16:01:21+00:00 1.0 1462243546 6219 15 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact stevenandpump 2020-07-04 15:46:20+00:00 1.0 1462243546 5972 pump coin name evx 2020-06-24 16:01:22+00:00 1.0 1462243546 5971 30 minutes left to pump on binance 2020-06-24 15:32:03+00:00 1.0 1462243546 5933 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact stevenandpump 2020-06-24 00:42:41+00:00 1.0 1462243546 5786 10 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact stevenandpump 2020-06-15 15:52:15+00:00 1.0 1462243546 5752 pump result qsp start price 210 weve reached 299 huge quick profit 42 to know next pump coin name contact stevenandpump for premium membership 2020-06-14 00:51:52+00:00 1.0 1462243546 5746 pump coin name qsp 2020-06-13 16:00:53+00:00 1.0 1462243546 5745 5 minutes left to pump on binance 2020-06-13 15:56:35+00:00 1.0 1462243546 5674 pump coin name via 2020-06-10 15:59:48+00:00 1.0 1462243546 5673 next post will be coin name 2020-06-10 15:56:30+00:00 1.0 1462243546 5672 about 5 minutes left to pump on binance 2020-06-10 15:56:04+00:00 1.0 1462243546 5535 pump coin name ctxc 2020-06-03 16:00:28+00:00 1.0 1462243546 5534 next post will be coin name 2020-06-03 15:56:42+00:00 1.0 1462243546 5533 5 minutes left to pump on binance 2020-06-03 15:56:22+00:00 1.0 1462243546 3406 snt now hit 159 3rd target achieved within 13 hour ✅✅✅✅ huge quick profit 32 amazing breakout pump signal congrats premium members to know next pump coin ☎️ contact stevenandpump 2020-02-02 04:15:11+00:00 1.0 1462243546 2379 go and cnd north top gainer on binance amazing calls by our team to know next pump coin name ☎️ contact stevenandpump 2019-12-11 08:16:46+00:00 1.0 1462243546 2337 matic result 3rd target achieved within 53 minutes ✅✅✅ huge quick profit 32 so far to know next pump coin ☎️ contact stevenandpump 2019-12-10 05:45:50+00:00 1.0 1462243546 1784 key result update all targets achieved within 18 hour✅✅✅✅ huge huge quick profit 68 in just 18 hour amazing breakout pump signal shared in premium channel you can earn back fees within 1 day to know next breakout pump signal ☎️ contact stevenandpump 2019-11-22 06:24:04+00:00 1.0 1462243546 1625 ❗breakout alert❗ date 15th november ⏱ time 400 pm gmt exchange binance are you guys ready for the biggest breakout alert when the 4h candle closes a strong ta signal will be posted on this channel coin will reach +70 quickly so you should buy hold as soon as possible be ready tomorrow at 400 pm gmt 2019-11-14 16:50:20+00:00 1.0 1462243546 1495 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact stevenandpump 2019-11-11 11:00:59+00:00 1.0 1462243546 1460 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact stevenandpump 2019-11-10 10:07:24+00:00 1.0 1462243546 1320 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip group ☎️ contact stevenandpump 2019-11-05 06:21:34+00:00 1.0 1462243546 900 breakout pump signal gas 2019-10-17 10:39:59+00:00 1.0 1462243546 602 dont know how to trade confused which coin to buy always stuck in wrong trade dont stuck in other pump group lets discuss with us ☎ contact stevenandpump 2019-09-27 04:17:30+00:00 1.0 1462243546 348 next pump scheduled ⏰ monday 15082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact stevenandpump 2019-09-15 04:25:50+00:00 1.0 1462243546 212 pump result data start price 128 weve reached 166 huge profit 296 congrats guys next pump will be announced soon to know next coin name earlier contact stevenandpump for premium membership 2019-09-08 23:35:13+00:00 1.0 1462243546 209 4 hour left to pump on binance to know coin name earlier join premium profit target 3060 hurry up ♂ ☎ contact stevenandpump 2019-09-08 14:24:17+00:00 1.0 1462243546 127 pump result lrc start price 330 weve reached 359 huge quick profit 10 congrats guys next pump will be announced soon to know next coin name earlier contact stevenandpump for premium membership 2019-09-05 16:27:07+00:00 1.0 1462243546 107 next pump scheduled ⏰ wednesday 03082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact stevenandpump 2019-09-03 15:30:24+00:00 1.0 1462243546 59 announcement dear members the wait is over since our previous mega calls were a great success we have decided to make more mega profits for all of you this big bang call will be freeforall meaning that everyone will receive the signal at the same time big bang call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next big bang call exchange binance date 05092019 thursday time 4 pm gmt target 4070 have a great weekend and prepare yourself for upcoming big bang call nav pumped here 70 cvc pumped here 70+ data pumped here 70 vib pumped here 46+ via pumped here 22 rcn pumped here 328+ to know coin name earlier join premium ☎️ contact stevenandpump 2019-09-03 12:36:25+00:00 1.0 1549584841 608 ‼️binance pump postponed‼️ we have received a large number of complaints from our users about problems with the binance exchange our team also felt these problems we waited as long as we could but unfortunately we have to inform you that due to the big laggs we have to postpone todays pump it is in our interest to protect the finances of all our members and for that reason todays pump will be postponed for next weekend thank you for understanding 2022-01-16 14:00:34+00:00 1.0 1549584841 606 ‼️results‼️ this was one of the fastest pumps in this group we can say that pump was very successful and that we hit our targets coin orc start price 04498 price peak 24 profit 535 exchange kucoin pair usdt thank you all for participating in our big kucoin pump but we dont have time to rest in less then 14 hours and 30 minutes we have new pump on binance vip members already start to buy coins to get ready for sell sign for all questions regarding pumps exchanges trade vip membership etc feel free to contact our support at cryptoteamsupport 2022-01-16 01:32:28+00:00 1.0 1549584841 604 1 minute left next message is coin name 2022-01-15 16:59:12+00:00 1.0 1549584841 594 ‼️announcement‼️ exactly 24 hours to our big kucoin pump the market is very good and we expect again success of over 900 as last weekend vip members have just been given the name of the coin we will pump tomorrow they will start with buying their stash for tomorrow to secure their position and increase the volume of the pump all new members are asked to read the instructions for kucoin pump at for all questions regarding pumps exchanges trade vip membership etc feel free to contact our support at cryptoteamsupport 2022-01-14 17:01:01+00:00 1.0 1549584841 593 ‼️announcement‼️ because of the positive trends on the crypto market this week we decided to organize 2 pumps this weekend saturday exchange kucoin time 6pm 1800 timezone gmt + 1 pair usdt sunday exchange binance time 5pm 1700 timezone gmt + 1 pair btc vip members will as always receive the name of the coin 24 hours before pump so they can prepare for the pump and quick sale for all questions regarding pumps exchanges trade vip membership etc feel free to contact our support at cryptoteamsupport 2022-01-13 22:39:19+00:00 1.0 1549584841 582 ‼️results‼️ first of all we would like to thank all the members who pumped with us today because without you this would not have been possible although this week was marked with the new market fall together we managed to organize this huge pump with an incredible result of 931 profit coin unic exchange kucoin pair usdt low 106 high 987 profit 931 congratulations to all the members who made a profit today the vip group will continue with the pumps on schedule tomorrow and our team will start looking for the ideal coin for the next free pump for all questions regarding pumps exchanges trade vip membership etc feel free to contact our support at cryptoteamsupport 2022-01-09 02:55:24+00:00 1.0 1549584841 580 5 minutes left next post is coin name 2022-01-08 16:55:03+00:00 1.0 1549584841 576 1 hour till pump be sure you have usdt ready on your trading account 2022-01-08 16:00:14+00:00 1.0 1549584841 575 less then 3 hours till our pump 2022-01-08 14:01:44+00:00 1.0 1549584841 571 ‼️announcement‼️ exactly 24 hours to our big kucoin pump in our free channel the state of the market is still negative which could reduce the profit of pump but we hope that the btc fall will stop by tomorrow we ask all members to read the instructions on how to use kucoin for pump at our vip members already know the name of the coin we will pump tomorrow and are starting slow buy to secure their positions and increase the volume of the pump for all questions regarding pumps trading exchanges vip membership etc contact our support at cryptoteamsupport 2022-01-07 17:00:45+00:00 1.0 1549584841 570 ‼️announcement‼️ in less than 2 days we will have a big kuclon pump in a free group although the market situation is not good and btc has fallen to only 43000 we hope that the situation will stabilize by saturday day saturday 8th january time 6pm 1800 timezone gmt + 1 exchange kucoin pair usdt vip members will as always receive the name of the coin that will be pumped 24 hours before the pump friday 6pm to prepare for the pump and increase the volume of the pump for all questions regarding pumps trading exchanges vip membership etc contact our support at cryptoteamsupport 2022-01-06 18:18:44+00:00 1.0 1549584841 557 the coin we have picked to pump today is gens usdt projected gain 200500 2022-01-01 18:00:05+00:00 1.0 1549584841 556 2 minutes left next message is the coin name 2022-01-01 17:58:11+00:00 1.0 1549584841 547 new year pump exactly 24 hours until our first kucoin pump in 2022 tomorrow saturday 7pm 19h gmt+1 time zone on kucoin exchange in pair with usdt vip members have already been given the name of the coin we will pump they already starting a moderate purchase to secure positions and increase the volume of the pump itself all new members are asked to read the instructions on how to pump on the kucoin exchange for all questions regarding pumps trading exchanges vip membership etc contact our support at cryptoteamsupport 2021-12-31 18:00:12+00:00 1.0 1549584841 543 2 minutes left next message is the coin name 2021-12-28 14:58:24+00:00 1.0 1549584841 517 ‼️pump results‼️ another successful pump organized by our crypto pump signal team although much smaller compared to yesterdays kucoin pump due to the inability of us members to use the binance exchange the starting price of the appc coin was 000000163 and the price at the top was 000000222 which is a profit of 46 the pump was not nearly as big as yesterdays kucoin pump but it was still successful and we want to thank all the members who participatedi in todays pump for all questions regarding trading pumps exchanges vip membership etc contact our support at cryptoteamsupport thank you 2021-12-19 17:45:14+00:00 1.0 1549584841 515 2 minutes left next message is coin name 2021-12-19 14:58:02+00:00 1.0 1549584841 512 10 minutes till our binance pump 2021-12-19 14:50:04+00:00 1.0 1549584841 510 1 hour to our binance pump open a binance exchange on your pc and make sure you have the amount of btc available in your trading account 2021-12-19 14:00:02+00:00 1.0 1549584841 493 5 minutes till pump next message will be the coin name 2021-12-18 16:55:19+00:00 1.0 1549584841 489 ‼️announcement‼️ exactly 1 hour to our big kucoin pump make sure you have usdt ready in your trading account 2021-12-18 16:00:02+00:00 1.0 1549584841 487 ‼️announcement‼️ just 6 hours till our big kucoin pump we remind you that the coin we are pumping will be paired with usdt all new members are asked to read the instructions on how to pump on kucoin at for all questions regarding pumps trading vip membership fees etc contact our support at cryptoteamsupport your cps team 2021-12-18 11:00:35+00:00 1.0 1549584841 486 ‼️announcement‼️ exactly 24 hours to our pump on the kucoin exchange the state of the market is very good and promising vip members have already been given the name of the coin that will be pumped tomorrow so they can prepare for the pump and provide a large volume of pump for all questions regarding pumps market exchanges vip membership fees etc contact our support at cryptoteamsupport your cps team 2021-12-17 17:00:03+00:00 1.0 1549584841 470 5 minutes left next message is coin name 2021-12-05 14:55:17+00:00 1.0 1549584841 469 10 minutes to the pump be ready prepare you binamce exchange and btc 2021-12-05 14:50:08+00:00 1.0 1549584841 468 30 more minutes to the pump dont forget to buy a btc and transfer it to your trading account so you can buy the coins well be punching 2021-12-05 14:30:02+00:00 1.0 1549584841 467 only 1 hour to our binance pump the final preparations are over cps team is ready as is the vip group we wish you luck 2021-12-05 14:00:10+00:00 1.0 1549584841 466 1 hour and 30 minutes before our binance pump all new members should watch this video 2021-12-05 13:30:14+00:00 1.0 1549584841 465 ‼️announcement‼️ in 3 hours and 15 minutes we will hold a pump and dump on the binance exchange the pump will be paired with btc so half hour before the pump prepare your btc on the trading account we will trade on spot after yesterdays big btc drop the market stabilized and no additional drops occurred however we are obliged to inform you all that both pumps today will be high risk and we do not recommend new members to participate in them in order to protect their finances if you plan to participate do not use more than 10 of your funds the vip group yesterday postponed 2 pumps for the safety of its members and their investments today the pumps will be held on schedule and vip members are looking forward to the big pump their stash of coins we are going to pump are full and just waiting for a sell sign we wish good luck to all members who plan to participate in the pump today if you have any questions regarding pumps markets trading vip membership fees etc contact our support at cryptoteamsupport your cps team 2021-12-05 11:45:38+00:00 1.0 1549584841 460 ‼️announcement‼️ greetings to all members of the crypto pump signal channel in less than 2 days we will pump again lately kucoin pumps have been much more successful than binance which means that you prefer kucoin instead of binance exchange that is why we will try to break all records this weekend we will repeat the date and time for sunday pumps binance sunday december 5th at 4 pm gmt + 1 on the binance we will trade in pair with btc kucoin sunday december 5th at 8 pm gmt + 1 we will trade in pair with the usdt the vip group ended a successful business week and did 15 successful pumps and now they are turning their attention to the weekend pumps tomorrow they will get the name of the coins we will pump on sunday to give them enough time to prepare for all questions regarding pumps exchange vip membership fees trading etc feel free to contact our support at cryptoteamsupport 2021-12-03 22:11:01+00:00 1.0 1549584841 459 ‼️announcement‼️ hello to all members of the crypto pump signal group we have official announcement for this weekend pumps binance sunday december 5th at 4 pm gmt + 1 on the binance we will trade in pair with btc kucoin sunday december 5th at 8 pm gmt + 1 we will trade in pair with the usdt vip members as always get the name of the coins that we will pump 24 hours before the pump so they can initiate the pump and secure their position lately kucoin pumps are very powerful last weekend over 500 profit and the weekend before an incredible 700 we will do our best to make this pump even more powerful for all questions regarding pumps exchange vip membership fees trading etc please contact cryptoteamsupport your cps team 2021-12-02 17:57:46+00:00 1.0 1549584841 458 announcement its the middle of the week and despite the big fluctuations in the price of btc last few weeks our vip group is doing a great job today we did 2 pumps and in an 1 hour and 40 minutes we will do the last pump for today weve put a picture of the nim usdt graph to give you a better idea of ​​what the pumps in our vip group look like after weve received a large number of inquiries regarding our pumps the starting price of nim usdt was 00063 and the peak price was 00096 which brought us a profit of a solid 50 we are also announcing pumps for our free channel this weekend again we plan to hold 2 pumps one on the kucoin exchange and one on the binance exchange we will announce the exact time tomorrow we will do our best to make the pumps even bigger and even better than last time we wish you good luck in the upcoming pumps and for all the information related to pumps exchanges vip memberships trading etc feel free to contact our support at cryptoteamsupport 2021-12-01 19:20:39+00:00 1.0 1549584841 457 results amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits vip members continue tomorrow and have 3 pumps on the schedule we wish them a successful week and good market for all questions please contact cryptoteamsupport 2021-11-28 23:28:58+00:00 1.0 1549584841 456 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:06+00:00 1.0 1549584841 455 2 minutes left next message is coin name 2021-11-28 16:58:12+00:00 1.0 1549584841 448 announcement only 5 hours to our pump on the binance exchange today we trade in pair with btc so prepare btc in your trading accounts we also advise you to pump on your pc not a smartphones because pc are faster check your network we are targeting 110 of profits which means that many will double their investments today if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you see the name of coin you must buy in seconds and than again sell in few seconds whole process should not last longer than 10 seconds this will be your best chance to come out with a profit because these pumps are really quick if you wait for the price to be at the top and the value starts to fall you will not be able to sell anymore vip members are preparing the last stock for todays pump and are waiting for a sign for sale for any questions regarding trading pumps exchanges vip memberships etc contact our support at cryptoteamsupport your cps team 2021-11-28 12:00:41+00:00 1.0 1549584841 445 swp managed really good volume and a peak of 1680 from a 289 start price thats a gain of 581 although we had impressive volume of 36m and a gain better than almost any other group we know we could do better swp was riddled with hidden walls likely from the swp team themselves this is a coin based on the kava blockchain which is not a type of coin we normally pump after all this pump was what we expected and it was pure success from our team now that kucoin pump is over we need to focus on tomorrow binance pump it will start at the same time as kucoin tommorow sunday at 6pm gmt+1 timezone vip members alread have the name of the coin we will pump tomorrow and started to buy their stash so they can be prepared for pump we wish you luck at tomorrow binance pump if you guys have any question about pumps exchanges trading vip membership just contact our support at cryptoteamsupport your cps team 2021-11-27 18:39:15+00:00 1.0 1549584841 442 5 minutes left next message will be the name of coin we pump today 2021-11-27 16:55:37+00:00 1.0 1549584841 440 everything looks perfect only 30 minutes before our pump 2021-11-27 16:30:12+00:00 1.0 1549584841 439 only 60 minutes until our kucoin pump guys be prepared 2021-11-27 16:00:26+00:00 1.0 1549584841 438 announcement only 3 hours to our kucoin pump the coin we will be pump today will be paired with the usdt so prepare the usdt in your trading accounts our vip members have already bought a big stash of coins and are waiting for a sign to sell all new members are asked to read the instructions on how to pump on kucoin exchange please read the manual carefully and for all questions regarding pumps exchanges vip membership etc please contact cryptoteamsupport your cps team 2021-11-27 14:00:19+00:00 1.0 1549584841 436 announcement in exactly 24 hours our pump will take place on the kucoin exchange we will trade in pair with usdt vip members already know which coin will be pumped tomorrow and start a moderate purchase to secure their position and increase tomorrows pump and exactly one day after our kucoin pump48 hours we will have a pump on the binance exchange members will trade in pair with btc tomorrow exactly at the time of the kucoin pump vip members will be given the name of the coin that will be pumped on sunday we expect a great weekend and good earnings for all members if you have any questions about pumps trading exchanges vip membership fees please contact cryptoteamsupport your cps team 2021-11-26 17:00:16+00:00 1.0 1549584841 431 5 minutes till pump next message is coin name 2021-11-23 14:55:05+00:00 1.0 1549584841 430 15 minutes left till our binance pump 2021-11-23 14:45:21+00:00 1.0 1549584841 429 1 hour left till our binance pump 2021-11-23 14:00:24+00:00 1.0 1549584841 428 2 hours left till our binance pump 2021-11-23 13:00:06+00:00 1.0 1549584841 427 4 hours left till our binance pump our coin will be btc paired only on binance so transfer funds to binance and convert to btc in order to participate 2021-11-23 11:00:06+00:00 1.0 1549584841 425 announcement in exactly 20 hours tomorrow afternoon at 4 pm gmt + 1 time zone will be held binance pump paired with btc which was postponed on sunday due to difficulties with binance exchange the market situation is good and a good pump is expected vip members have already bought the coins that we will pump and have taken their position they are waiting for tomorrows sign for sale if you have any questions regarding the pump exchange trading or vip membership feel free to contact our support at cryptoteamsupport your cps team 2021-11-22 19:00:08+00:00 1.0 1549584841 423 pump result amazing pump with more than 42 million usdt in volume with a peak of 391 that lasted more than 15 minutes on kucoin we managed to hit our profit expectation of 200500 perfectly and were glad everyone participated there were multiple waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price which is why there the price was declined prior to the signal overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-21 19:23:17+00:00 1.0 1549584841 422 the coin we have picked to pump today is modefi usdt projected gain 200400 2021-11-21 18:00:11+00:00 1.0 1549584841 421 5 minutes left next message is coin name 2021-11-21 17:55:21+00:00 1.0 1549584841 420 15 minutes until our kucoin pump 2021-11-21 17:45:03+00:00 1.0 1549584841 419 30 minutes until our kucoin pump 2021-11-21 17:30:02+00:00 1.0 1549584841 417 1 hour untill our kucoin pump once again se will trade on pair with usdt so be sure to have some one more time we will ask you to read how to pump on kucoin exchange 2021-11-21 17:00:08+00:00 1.0 1549584841 416 announcement exactly 3 hours and 30 minutes to our kucoin pump we moved it in an hour so that all members that pump on binance due to the todays postpone could transfer their capital to the kucoin exchange our target will be 500 and we will use usdt our vip members already have prepared stash of coins and are waiting for the sign to sell we expect a great pump like it was last weekend for all new members this is an article on how to pump on a kucoin exchange for all questions regarding pumps trading exchanges and vip memberships contact our support at cryptoteamsupport your cps team 2021-11-21 14:30:12+00:00 1.0 1549584841 415 attention unfortunately a lot of members contacted us today that they cant enter the binance pro app and that if they do the application is lagging we have the same problem here and therefore we have decided to postpone todays binance pump for tuesday november 23rd at 4pm gmt + 1 time zone there is no point in risking the pump and money of our investors we would rather wait for better day for now the kucoin pump will be held according to the plan at 7pm if anything changes we will publish it here in our group vas cps team 2021-11-21 12:00:09+00:00 1.0 1549584841 413 announcement greetings to all members of crypto pump signal channel we have official announcement for a kucoin pump it will happend at sunday november 21st at 7pm gmt+1 timezone we hope its going to be a powerfull pump just like a last saturday kucoin pump with over 700 profit dont forget about our binance pump at sunday 4pm gmt+1 timezone although we are witnessing the last few days btc dropped by almost 10000 we plan to maintain our pumps it has been decided that both the kucoin and binance pumps will be held on sunday november 21st and we hope that all members will get out with a nice profits vip members will get both coin names tomorrow so they can start to slowly buy their stash of coins and prepare for weekend pumps vip group will conclude this week with a great success despite the fall in the price of bitcoin for all questions regarding trading pumps cryptocurrencies vip memberships etc feel free to contact our support at cryptoteamsupport your cps team 2021-11-19 19:07:25+00:00 1.0 1549584841 411 hello to all members this weekend has been very tense for everyone we first had a fantastic pump on the kucoin exchange on saturday we pushed the price of basic coin to an incredible 731 we have exceeded all expectations and it will be difficult to repeat a pump like this but we will do our best to do it unfortunately sunday at binance was not nearly as successful as the one at home but it was still successful 67 is not a bad result at all but we expected more and we will do our best to correct where we went wrong at the next pump our team is already analyzing and looking for coins to pump next weekend the price of bitcoin is kept at around 65000 the market is stable for now and growth is expected soon which is very good for our pumps today our vip members did 3 pumps and achieved excellent results the coins for tomorrows morning pump are ready and we hope to make a good profit once again we would like to thank all the members of both the vip and regular crypto pump signal channels for participating in our pumps and we wish you all a lot of success if you have any questions about pumps rules vip group and membership feel free to contact cryptoteamsupport we are always there for you thank you 2021-11-15 20:21:45+00:00 1.0 1549584841 410 pump result amazing pump with more than 167 btc volume which is close to 11million in volume with a peak of 67 that lasted more than 2 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding nas with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-11-15 01:18:11+00:00 1.0 1549584841 406 5 minutes till pump next message will be a coin name 2021-11-14 14:55:02+00:00 1.0 1549584841 403 30 minutes till our binance pump 2021-11-14 14:30:01+00:00 1.0 1549584841 400 announcement binance pump in 2 hours and 40 minutes after yesterdays very successful pump on kucoin which raised the price of basic coin over 700 we are moving to a new pump today we are running a pump on the binance exchange make sure you have btc prepared the market looks very stable and we expect another successful pump your cps team 2021-11-14 12:20:25+00:00 1.0 1549584841 399 basic kucoin pump results start price 001178 peak price 0098 peak gain 731 basic amassed 29 million volume in the first 5 min of the pump pushing the price all the way to 731 which was well above our projected gain this pump was longer than normal with even more volume than we are used to at this rate of growth we are becoming an unstoppable force great job everyone 2021-11-13 19:42:52+00:00 1.0 1549584841 397 5 minutes left until the pump next message is the coin name 2021-11-13 16:55:12+00:00 1.0 1549584841 395 30 minutes left until the pump exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-11-13 16:30:03+00:00 1.0 1549584841 391 announcement the binance pump is going to happened in exactly 24 hours from now last pump was strong 130 but not strong as we wanted to be we will use btc for trading btc was at ath this week which is really good for market and our pumps vip members just find out the name of the coin that we will be pumped tomorrow they will soon start with slowly buying to secure their position and make additional investments to make the pump bigger and stronger for now lets all focus on kucoin pump that will happend in 2 hours from now new members please read how to use kucoin for pumping for any questions related to pumps group or vip membership feel free to contact cryptoteamsupport your cps team 2021-11-13 15:00:02+00:00 1.0 1549584841 389 the kucoin pump is going to happened in exactly 24 hours from now we will use usdt for trading once again we will ask all members to check on how to trade at kucoin exchange at vip members already know the name of the coin we will be pumping tomorrow they are starting to slow buy the coin to secure their position and make additional investments to make the pump bigger and stronger for any questions related to pumps group or vip membership feel free to contact signalpumpsupport your cps team 2021-11-12 17:00:02+00:00 1.0 1549584841 388 pump announcement we finally decided binance pump will happend this sunday at 4 pm gmt + 1 last time we pumped mth although we achieved an excellent 130 profit we were not satisfied because we expected higher profits this week the price of bitcoin has surpassed ath and the market is very good for the next pump therefore we believe that this pump will be more successful than the last and bring us a profit of at least 200 vip members will receive the name of the coin as always 24 hours before free members saturday 16 hours gmt + 1 if you guys have any question about our group pumps or vip group feel free to contact our support team cryptoteamsupport 2021-11-12 02:28:49+00:00 1.0 1549584841 387 greetings to all members the state of market is very good btc broke ath the market is growing and we decided that last weeks kucoin pump which was delayed will be organized on saturday at 18pm gmt+1 the pump will be on the kucoin exchange and will be paired with usdt we apologize for the delay of this pump once again but our biggest goal is to protect our members and their investments we hope that everything will be fine with the kucoin exchange we hope that we will have more luck this weekend than last we ask all new members to read how to trade on kucoin exchange vip members will recieve the name of the coin exactly 24 hours before free pump coin was announced last week but we will announce once again because of new members on friday 18pm gmt+1 if you have any questions or you are interested in our vip membership feel free to contact us cryptoteamsupport your crypto pump signal team 2021-11-10 21:43:28+00:00 1.0 1549584841 385 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:52:59+00:00 1.0 1549584841 384 dear members while we wait for a binance pump results we are extremely sad to say that we will postpone tonights pump on kucoin as we are experiencing problems with our telegram channels the network has been growing a lot past week and this is causing some minor issues we are communicating with telegram to increase the traffic limitations but this wont be solved until next weekend we have decided to push back the pump a few days we are extremely sorry for this inconvenience and our team is determined to preventing this from happening again the new date will be announced very soon be prepared 2021-11-07 17:22:38+00:00 1.0 1549584841 382 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:06+00:00 1.0 1549584841 381 5 minutes left next message will be the coin name 2021-11-07 16:54:57+00:00 1.0 1549584841 379 30 minutes left until the big pump on binance 2021-11-07 16:30:04+00:00 1.0 1549584841 377 just 1 hour to our binance pump and 2 hours to kucoin pump we repeat once again for binance pump is required btc and for kucoin is required usdt we recommend that you trade via pc and not via smartphones if possible our vip members have provided a sufficient amount of coins to be pumped today and are waiting for our signal everything seems ready for todays pump be quick and good luck 2021-11-07 16:00:00+00:00 1.0 1549584841 376 3h until our binance pump and 4 hours until our kucoin pump be ready 2021-11-07 14:00:36+00:00 1.0 1549584841 375 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:03:31+00:00 1.0 1549584841 374 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared vip members already know the neme of coin that will be pumped tommorow and will start to buy any minute on our signal if want to join in our vip group you should contact cryptoteamsupport all new members should read trading rules on good luck to all 2021-11-06 18:00:40+00:00 1.0 1549584841 368 pump result the pump which just took place was the largest pump ever executed on the kucoin exchange with over 36m in volume and a profit gain of 200 from our buying price 2 hours later no group in the history of kucoin has managed prolonged and high achieving pumps like we have and for that wed like to congratulate you all for being part of our community there were multiple waves to this pump which means there were several opportunities for our members to profit multiple times our coin gens held as the top holder of kucoin peaking at over 300+ and maintaining a price of 150200 for several hours the amount of positive feedback flowing in from community members is overwhelming and we really appreciate your participation today we will be announcing the next official pump date soon stay tuned 2021-10-31 21:37:46+00:00 1.0 1549584841 367 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 21:35:55+00:00 1.0 1549584841 361 5 minutes left the next message will be the coin to buy 2021-10-31 17:55:12+00:00 1.0 1549584841 360 20 minutes left until the big pump please see our pump guide 2021-10-31 17:40:08+00:00 1.0 1549584841 359 thank you people for this pump you were awesome while we wait for the official results please prepare for the pump on kucoin exchange which starts in just 45 minutes for those that are new to our pumps we typically only use usdt paired coins when we trade on kucoin exchange this means you should deposit some usdt into your trading account in preparation for the event 2021-10-31 17:15:09+00:00 1.0 1549584841 355 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:14+00:00 1.0 1549584841 353 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:14+00:00 1.0 1549584841 351 30 minutes left until the big pump 2021-10-31 16:30:14+00:00 1.0 1549584841 350 55 minutes left until the big pump on binance 2021-10-31 16:07:14+00:00 1.0 1549584841 349 1 hour and 20 minutes till our binance pump make sure you have btc ready 2021-10-31 15:20:22+00:00 1.0 1549584841 338 dear members only 3 hours and 30 minutes to our binance pump and in 4 hours and 30 minutes our kucoin pump will take place which we postponed yesterday due to difficulties for today everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 13:30:29+00:00 1.0 1549584841 332 only 1 day left until our massive pump on kucion 2 days until another binance pump altcoins are gaining a lot of traction in this wild market we are sure to attract huge investment and attention when our coin starts pumping everything leading up to tomorrow leads us to believe this will likely be our biggest pump yet our growth has sped up our volume is increasing each pump and our combined buying power can cause havoc in the market sending our target coin to an insane high make sure you have usdt in your trading account on kucoin in order to enter see you all in 24 hours from now 2021-10-29 17:08:11+00:00 1.0 1549584841 330 in exactly 45 minutes the pump starts in our vip group please all members to switch to vip chat everyone be ready and have binance trading open and the desired amount of btc coin will be in pair with btc all instructions have already been written advice to new members is to read rules again thank you all your cryptoteamsupport 2021-10-27 16:15:10+00:00 1.0 1549584841 329 less than 24 hours before the big pump in our vip group the market is good and a large pump is expected to take out between 4001200 you still get to join our vip group there arent many free spots left so hurry up and contact our administrator our free pump event is scheduled in a 4 days on saturday october 30 on the kucoin exchange the results of the last pump were excellent check the results in the group yourself and see the quality of our business your crypto pump signal team cryptoteamsupport 2021-10-26 17:03:43+00:00 1.0 1549584841 320 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 18:11:35+00:00 1.0 1549584841 316 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:10+00:00 1.0 1549584841 312 5 minutes left the next message will be the coin to buy 2021-10-24 16:55:20+00:00 1.0 1549584841 311 15 minutes left until the massive pump on binance 2021-10-24 16:53:36+00:00 1.0 1549584841 310 30minutes left until the big pump on binance 2021-10-24 16:31:53+00:00 1.0 1549584841 309 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:16+00:00 1.0 1549584841 308 1 hour and 30 minutes left until the big pump on binance 2021-10-24 15:30:03+00:00 1.0 1549584841 307 less than 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:08:38+00:00 1.0 1549584841 306 todays pump on kucoin exceeded all expectations but well move on new sunday binance pump less than 23 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in less than 23 hours be prepared 2021-10-23 18:14:59+00:00 1.0 1549584841 305 dvpn kucoin pump results start price 0034 peak price 0480 peak gain 1320 dvpn reached 1320 well over our projected top gain of 900 with millions of dollars in volume this pump blew away expectations the price stayed above our projected gain for longer than 1 min so we hope everyone was able to sell there for max profits incredible pump and incredible job by everyone 2021-10-23 17:45:47+00:00 1.0 1549584841 293 2 minutes until the pump everyone projected gain will be given with the coin name the next post will be the coin 2021-10-23 16:58:19+00:00 1.0 1549584841 292 5 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-10-23 16:55:18+00:00 1.0 1549584841 291 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-10-23 16:00:22+00:00 1.0 1549584841 290 2 hours left until our pump bitcoin is up over 61k and our group has grown by over 5000 users this week alone our past 2 pumps have been massive and successful today will even more massive some things to remember we pump on kucoin website or app coin might not be listed elsewhere we use the usdt pair when buyingselling our target coin we are a team and operate as such the goal is for every member of this group to earn as much profit as possible be sure to have usdt in your trading account on kucoin and be ready for the call in 2 hours from now everyone 2021-10-23 15:01:19+00:00 1.0 1549584841 283 7 hours left for the pump be sure to read our tutorial and be ready for it 2021-10-23 10:00:37+00:00 1.0 1549584841 282 24 hours left exchange kucoin pair usdt time 1700 gmt 1pm est date saturday october 23rd only 1 day left until our massive pump altcoins are gaining a lot of traction in this wild market we are sure to attract huge investment and attention when our coin starts pumping everything leading up to tomorrow leads us to believe this will likely be our biggest pump yet our growth has sped up our volume is increasing each pump and our combined buying power can cause havoc in the market sending our target coin to an insane high make sure you have usdt in your trading account on kucoin in order to enter see you all in 24 hours from now 2021-10-22 17:19:22+00:00 1.0 1549584841 279 less than 48 hours left until our pump everyone in 48 hours from now we will all work together to push the price of a target coin on kucoin to extreme highs as we have done so many times before the pump will begin from our large influx of buy orders in a short time which will start the coin on a very impressive rise to an extreme peak last peaks 570 and 1590 breakout traders fomo traders auto algorithms day trading bots and other active kucoin users will see our coin rising and jump right in the amount of trades in crypto are extraordinarily high right now bc of the recent new all time high for btc considers that our recent success and our impressive growth we can confidently say this upcoming pump will be truly epic make sure you are ready confident and calm so you can take part in the massive profits 48 hours from now reminder we pump on kucoin only we use the usdt base pair for our pumps so you must be trading usdt for the target coin please review the help docs or ask questions if you are unsure of any aspect our goal is always for members here to earn as much profit as possible the team and community are here to help every member is important 2021-10-21 18:16:48+00:00 1.0 1549584841 278 3 days until our pump our next pump will be saturday october 23rd at 1700 gmt on kucoincom or the kucoin app we are sticking to our normal time slot and base pair of usdt for this pump to repeat and improve upon the success of past pumps pair usdt everyone bitcoin hit a new all time high today which is fantastic for our pump millions more eyes are on crypto right now and everyone is trying to get a part of the crazy gains they are seeing on saturday when we pump our coin this will help prolong the pump as outsiders rush to buy our spiking coin our effect on the target coins has been immense lately with bug second and third waves this pump should have the biggest effect yet please create a kucoin account if you dont already have one and take time to review the howtopump guide understanding the exchange and how our pumps work will help you earn more profit 2021-10-20 17:46:52+00:00 1.0 1549584841 216 pump announcement day saturday october 23rd time 1700 gmt 1pm est exchange kucoin in light of our last 2 hugely successful pumps dino +570 route +1590 with a combined volume of over 16 million we will pump again this upcoming saturday sticking to the same time slot 1700 gmt our groups are growing to very impressive sizes on both discord and telegram the recent rise of bitcoin and explosion of kucoins popularity are really creating epic conditions for us as the worlds top group on kucoin we are in a special place to keep improving our volume gains and member profits each time we pump this will again be another pump you wont want to miss the base pair for the coin will be announced shortly with plenty of time to prepare many of us are day traders and we dont want anyone closing positions early just for us go get your profits and use them saturday 2021-10-20 07:40:17+00:00 1.0 1549584841 14 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance brd exploded 110 nebl did 93 wabi 85… and the list goes on were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 14 days away 2021-10-18 06:42:23+00:00 1.0 1549584841 13 new binance pump announcement ⏳date sunday 24 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate 2021-10-17 12:00:54+00:00 1.0 1549584841 11 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently some of the good coins have already pumped and the other ones lack pattern formation for a decent pump we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-10-17 11:59:04+00:00 1.0 1549584841 10 ℹ️ a typical pump on kucoin can go as high as 2000 1️⃣ we only pump on kucoin unlike groups who use exclusive exchanges we allow anyone from anywhere in the world to pump using kucoin sign up here 2️⃣ we pump using the usdt pair to protect against btc instability unlike other groups who base their pumps in bitcoin we want stability in our investments and steady profits for all 3️⃣ a typical pump on kucoin can go as high as 2000 this is much higher and much more profitable than any binance group can do join the next pump event 2021-10-16 16:34:55+00:00 1.0 1380347776 10748 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-24 11:00:06+00:00 1.0 1380347776 10747 pump announcement date tuesday august 24th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-24 09:43:21+00:00 1.0 1380347776 10323 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-17 11:00:06+00:00 1.0 1380347776 10322 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-17 06:00:06+00:00 1.0 1380347776 10321 pump announcement date tuesday august 17th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-16 19:47:32+00:00 1.0 1380347776 10309 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-16 11:00:06+00:00 1.0 1380347776 10308 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-16 09:42:51+00:00 1.0 1380347776 10306 pump announcement date monday august 16th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-15 20:58:45+00:00 1.0 1380347776 9999 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-13 11:00:06+00:00 1.0 1380347776 9998 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-13 06:04:41+00:00 1.0 1380347776 9986 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-12 11:00:07+00:00 1.0 1380347776 9985 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-12 06:00:06+00:00 1.0 1380347776 9984 pump announcement date thursday august 12th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-11 19:06:37+00:00 1.0 1380347776 9958 only a 265 rise on todays pump today smaller then normal but decent overall well done to everyone that participated and made some gains see you at the next pump 2021-08-09 15:29:51+00:00 1.0 1380347776 9950 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-09 11:00:07+00:00 1.0 1380347776 9924 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-09 06:00:06+00:00 1.0 1380347776 9915 pump announcement date monday august 9th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-08 16:26:50+00:00 1.0 1380347776 9657 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-08 11:00:11+00:00 1.0 1380347776 9382 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-08 06:00:06+00:00 1.0 1380347776 9380 pump announcement date sundat august 8th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-07 20:46:43+00:00 1.0 1380347776 9185 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-07 11:00:06+00:00 1.0 1380347776 9184 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-07 06:00:06+00:00 1.0 1380347776 9183 pump announcement date saturday august 7th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-06 18:00:06+00:00 1.0 1380347776 8461 a 545 increase in todays pump well done guys no prebuys ✅ and a peak at 4 minutes in making sure everyone had time to take profits thanks for participating and see you in the next one 2021-08-03 12:18:51+00:00 1.0 1380347776 8428 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-08-03 11:00:06+00:00 1.0 1380347776 8275 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-08-03 07:44:08+00:00 1.0 1380347776 8107 pump announcement date tuesday august 3rd time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-08-02 19:23:45+00:00 1.0 1380347776 7432 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-29 11:00:06+00:00 1.0 1380347776 7272 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-07-29 07:00:06+00:00 1.0 1380347776 7256 pump announcement date thursday july 29th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-28 21:17:38+00:00 1.0 1380347776 7212 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-28 11:00:06+00:00 1.0 1380347776 7080 our next pump is here the pump is today 1200 gmt ❗️get your bnb ready ❗️ we will announce the token token address and all important links here at the time of the pump 2021-07-28 07:00:07+00:00 1.0 1380347776 6912 pump announcement date wednesday july 28th time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-27 19:00:06+00:00 1.0 1380347776 6898 a 926 gain on todays pump each day were getting better and better thank you to everyone that joined in on todays pump hope to see you next time 2021-07-27 12:31:05+00:00 1.0 1380347776 6866 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-27 11:00:06+00:00 1.0 1380347776 6706 pump announcement date tuesday 27 of july time 1200 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-26 19:12:06+00:00 1.0 1380347776 6589 this is what a beautiful pump looks like a 7x with its peak at the 4 minute mark and as you can see the pump started at exactly 1200 gmt no prepump withdraw any funds you might still have on the token pumps last 28 minutes on average ⏰ glad to see our pumps are getting better again thanks to everyone that participated lets keep this going 2021-07-26 12:28:32+00:00 1.0 1380347776 6469 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-26 11:00:06+00:00 1.0 1380347776 6433 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-25 13:00:05+00:00 1.0 1380347776 5919 pump announcement date sunday 25th of july time 1400 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-24 20:28:26+00:00 1.0 1380347776 5495 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-21 17:00:06+00:00 1.0 1380347776 5493 pump announcement dear cake moon pumpers we got a huge collab pump is planned for today date july 21 time 1800 gmt exchange pancakeswap v2 be ready for an epic pump guys 2021-07-21 16:04:28+00:00 1.0 1380347776 5222 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-19 18:00:06+00:00 1.0 1380347776 5133 5th pump announcement date today monday 19th of july time 1900 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-19 06:00:06+00:00 1.0 1380347776 4933 we pump our own created tokens so yes we do remove liquidity but only after a few days remember its a pump dump so you should always sell your tokens after a few minutes 2021-07-17 17:20:32+00:00 1.0 1380347776 4890 hi thomas we dont have a pump today our next pump is on monday 2021-07-17 14:41:22+00:00 1.0 1380347776 4059 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-15 10:30:06+00:00 1.0 1380347776 3779 4th pump announcement date thursday 15th of july time 1130 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-14 19:30:07+00:00 1.0 1380347776 3253 1 hour left important tips slippage 30 or higher toggle expert mode we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-14 10:30:06+00:00 1.0 1380347776 3177 3rd pump announcement date wednesday 14th of july time 1130 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-13 19:15:05+00:00 1.0 1380347776 2060 2nd pump announcement date sunday 11th of july time 1130 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-10 20:45:04+00:00 1.0 1380347776 1971 3 hours left important tips slippage 30 or higher toggle expert mode keep gas at 5 we will ensure no pre pump buys will happen and maintain a sustainable community pump still unsure how it works pumptutorialchannel 2021-07-10 08:30:06+00:00 1.0 1380347776 1845 first pump announcement we have decided to do our first pump tomorrow date saturday 10th of july time 1130 gmt exchange pancakeswap pair soon revealed bnb if youre new to pumps please make sure to read all the information in this channel carefully pumptutorialchannel 2021-07-09 19:21:40+00:00 1.0 1338418011 2024 buy diausdt spot buying range 115 to 132 tp1 145 tp2 160 tp3 175 tp4 195 hold it for one month and you can see the mega pump in this coin ✔️invest amount of portfolio 1015 binancevipsignals 2022-01-07 02:23:37+00:00 1.0 1337289315 1719 50 minutes to the first target for the free channel members our premium members bougth 5 minutes before with better buy zone dont miss up and join us today only 2 seats left for this cheap prices contact breakouttrader 2019-03-24 16:29:27+00:00 1.0 1490469854 768 market is getting hot so we have decided to send our signal today our bot is searching for a bullish coin and we will inform you about it within 30 minutes this will be our special signal so make sure you dont miss it ❤️ 2021-09-03 14:57:28+00:00 1.0 1490469854 763 2 days left until the big pump on binance be prepared 2021-09-03 14:47:10+00:00 1.0 1490469854 213 audio big pump is coming dont miss it 2021-08-23 15:21:43+00:00 1.0 1468310965 21657 binance futures qtum unusual selling activity 121m usdt in 5 minutes 10 l 927100000 411 24h vol 128m usdt last signal 4 hours ago 47d binancestreetbets channel vip whaleglobal 2021-08-07 03:05:38+00:00 1.0 1468310965 17624 binance futures bts unusual buying activity 12m usdt in 5 minutes 10 l 004 ❇ 110 24h vol 131m usdt last signal 4 hours ago 67d binancestreetbets channel vip whaleglobal 2021-07-18 08:28:07+00:00 1.0 1468310965 8588 binance futures dash unusual buying activity 431m usdt in 5 minutes 10 l 20536000000 ❇ 215 24h vol 471m usdt last signal 4 weeks ago binancestreetbets channel vip whaleglobal 2021-06-02 14:27:10+00:00 1.0 1468310965 237 project buy signal not big pump signal buy lina linear for under 015 2021-03-31 14:30:58+00:00 1.0 1468310965 235 after receiving a lot of positive feedback from the global community we decided to change pumps the official pump will be announced ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 11 time 1700 pm gmt exchange binance advantage free for all note lets add your knowledge and manipulate transactions quickly 2021-03-31 08:46:44+00:00 1.0 1468310965 233 note not big pump signal hodler always win 2021-03-30 12:08:35+00:00 1.0 1468310965 230 5 minutes left not big pump signal 2021-03-30 11:56:01+00:00 1.0 1468310965 226 we will announce the project buy signal in 5 hours not big pump signal exchange binancecom 2021-03-30 07:12:09+00:00 1.0 1468310965 221 pump results 1400 btc volume which is around 80m with this amount of volume we should normally be able to pump coins above 500+ fairly easily although the volume was massive we did not manage to reach our target of 5001000 after looking carefully at the data we saw that the sell pressure came from the eth pairing we are not quite sure exactly where those sells were coming from but we will look further into it to make sure it doesnt happen in our next pump and reach the result we were meant to reach in this pump thank you all for participating we will announce our next date shortly 2021-03-29 01:29:52+00:00 1.0 1468310965 208 the coin we have picked to pump today is pivx pivx is looking perfect for a pump right now our target is 1000 2021-03-28 17:00:12+00:00 1.0 1468310965 207 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-03-28 16:59:18+00:00 1.0 1468310965 201 1 hours 30 minutes left channel discord 2021-03-28 15:32:22+00:00 1.0 1468310965 198 1 hour and 55 minutes remaining this will be the biggest pump event we have ever done more than a million traders around the world will be watching and participating be prepared 2021-03-28 15:05:50+00:00 1.0 1468310965 194 9 hours left the pump will start channel discord 2021-03-28 08:18:09+00:00 1.0 1468310965 192 tomorrow we will do a pump test to see where the error pump will be test 23 hours left let us make the perfect pump for everyone we are a professional team thank you for always accompanying us 2021-03-27 18:12:45+00:00 1.0 1468310965 165 30 minutes left the market is very nice have btc ready in your wallet after buy and hodl dont sell then spread the coin name throughout the communication channels twitter reddit target is 500 profit buy and hodl we will create the most perfect pump in history 2021-03-27 16:30:29+00:00 1.0 1468310965 162 only 2 hours left before the pump officially started get ready and start spreading twitter reddit about this pump estimated profit of 500 best regards ✍ 2021-03-27 14:59:42+00:00 1.0 1468310965 158 here is everything you need to know about this pump in order to be prepared we will be pumping a coin with only 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up for those trading from the us you can use a vpn to make a binance account millions of traders worldwide will be watching we have put into place a few measures to spread the word out after our signal we will attempt to make our pump last as long as possible this pump will be the biggest we have done so far be ready and be prepared 2021-03-26 13:25:14+00:00 1.0 1468310965 142 test pump should not buy let see the official pump will be made on next saturday 5 minutes left 2021-03-21 16:55:50+00:00 1.0 1468310965 141 today is our test pump should not buy let see the official pump will be made on next saturday 8 minutes left 2021-03-21 16:52:44+00:00 1.0 1468310965 123 the coin name via viacoin link buy and hodl 2021-03-17 17:00:06+00:00 1.0 1468310965 119 10 minutes left get ready btc in your wallet 2021-03-17 16:50:59+00:00 1.0 1468310965 46 here is a video of our og pump to all of you for always being with us we are a professional team lets share our group with everyone again we want to say we are here for the sake of you and we will be together and dont forget the super big pump tomorrow best regards 2021-03-12 12:13:04+00:00 1.0 1468310965 43 we made it og was going viral we are binance big pump signal lets share it whaleglobal 2021-03-11 13:00:32+00:00 1.0 1468310965 32 after we have implemented a perfect pump on og coin and now og is still on the top ranking list binance exchange there has been a lot of positive responses around the globe so we will resume 1 pump on saturday 13 march at 500 pm gmt lets share this group with everyone around the globe we are here for you best regards ✍✍✍ 2021-03-08 06:11:52+00:00 1.0 1468310965 31 after we have implemented a perfect pump on og coin and now og is still on the top ranking list binance exchange there has been a lot of positive responses around the globe so we will resume 1 pump on saturday 13 march at 500 pm gmt lets share this group with everyone around the globe we are here for you best regards ✍✍✍ 2021-03-07 13:01:50+00:00 1.0 1468310965 8 pump announcement hello everyone the next official pump will be scheduled for date sunday march 7 time 1700 pm gmt exchange binancecom advantage free for all check bot binancepumpsignalbot 2021-03-07 09:12:44+00:00 1.0 1468310965 3 pump announcement hello everyone the next official pump will be scheduled for date sunday march 7 time 1700 pm gmt exchange binancecom advantage free for all 2021-03-07 09:10:31+00:00 1.0 1271762340 129 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:04+00:00 1.0 1271762340 104 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:05+00:00 1.0 1271762340 102 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:05+00:00 1.0 1271762340 101 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:06+00:00 1.0 1271762340 100 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:05+00:00 1.0 1271762340 99 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:05+00:00 1.0 1271762340 98 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:05+00:00 1.0 1271762340 97 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:05+00:00 1.0 1271762340 96 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:10+00:00 1.0 1271762340 95 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:05+00:00 1.0 1271762340 94 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:05+00:00 1.0 1271762340 93 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:05+00:00 1.0 1271762340 92 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:05+00:00 1.0 1271762340 91 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:05+00:00 1.0 1271762340 90 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:05+00:00 1.0 1271762340 89 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:05+00:00 1.0 1271762340 80 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:06+00:00 1.0 1271762340 78 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:42+00:00 1.0 1271762340 74 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:47+00:00 1.0 1271762340 70 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:13+00:00 1.0 1271762340 66 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:06+00:00 1.0 1271762340 64 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:06+00:00 1.0 1271762340 63 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:04+00:00 1.0 1271762340 62 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:14+00:00 1.0 1271762340 61 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:34+00:00 1.0 1271762340 59 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:07+00:00 1.0 1271762340 58 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:05+00:00 1.0 1271762340 56 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:03+00:00 1.0 1271762340 54 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:03+00:00 1.0 1271762340 53 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:03+00:00 1.0 1271762340 52 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:06+00:00 1.0 1271762340 51 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:03+00:00 1.0 1271762340 50 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:04+00:00 1.0 1271762340 49 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:04+00:00 1.0 1271762340 47 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:04+00:00 1.0 1271762340 46 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:03+00:00 1.0 1271762340 45 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:04+00:00 1.0 1271762340 44 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:04+00:00 1.0 1271762340 43 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:02+00:00 1.0 1271762340 42 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:03+00:00 1.0 1271762340 41 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:02+00:00 1.0 1271762340 39 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:02+00:00 1.0 1271762340 38 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:50+00:00 1.0 1271762340 37 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:01+00:00 1.0 1271762340 36 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:57+00:00 1.0 1271762340 33 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:01+00:00 1.0 1271762340 31 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:01+00:00 1.0 1271762340 29 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:01+00:00 1.0 1271762340 28 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:02+00:00 1.0 1271762340 27 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:16+00:00 1.0 1271762340 26 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:08+00:00 1.0 1271762340 24 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:07+00:00 1.0 1271762340 21 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:01+00:00 1.0 1271762340 19 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:01+00:00 1.0 1271762340 18 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:02+00:00 1.0 1271762340 16 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:02+00:00 1.0 1271762340 15 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:01+00:00 1.0 1271762340 14 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:02+00:00 1.0 1271762340 13 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:02+00:00 1.0 1271762340 12 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:02+00:00 1.0 1271762340 11 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:02+00:00 1.0 1271762340 10 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:02+00:00 1.0 1271762340 9 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:01+00:00 1.0 1271762340 8 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:02+00:00 1.0 1271762340 7 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:01+00:00 1.0 1271762340 6 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:07+00:00 1.0 1271762340 5 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:01+00:00 1.0 1271762340 4 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 01:25:47+00:00 1.0 1271762340 3 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-04-02 01:25:36+00:00 1.0 1207973768 536 3 days left until the big pump on binance 2021-09-16 15:43:51+00:00 1.0 1207973768 535 pump announcement hello everyone next official pump will be scheduled for date sunday sep 19 time 1700 pm gmt exchange binance 40 whale channels target 50 to 200 profit for premium coin earlier contact forgoodnisss with our volumes average 20 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump our main goal for this pump will be to make sure that all our member make a massive profit to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-09-14 16:05:19+00:00 1.0 1207973768 534 less than 3 days left to buy vip of next pump contact forgoodnisss 2021-08-26 22:24:39+00:00 1.0 1207973768 533 pump announcement hello everyone next official pump will be scheduled for date sunday august 29 time 1700 pm gmt exchange binance 40 whale channels target 200 to 500 profit for vip premium coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the successful previous pump and discussion with our team we have decided to schedule our next pump on aug 29 to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to buy vip of next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-08-22 20:25:34+00:00 1.0 1207973768 532 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-22 20:25:32+00:00 1.0 1207973768 530 2 days remaining until our biggest pump signal of all time be prepared for vip premium coin earlier contact forgoodnisss 2021-08-13 15:38:02+00:00 1.0 1207973768 529 pump announcement hello everyone next official pump will be scheduled for date sunday august 15 time 1700 pm gmt exchange binance 40 whale channels last pump ez coin almost 400 target 200 to 500 profit for vip premium coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the successful previous pump and discussion with our team we have decided to schedule our next pump on aug 15 to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to buy vip of next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-08-08 17:30:15+00:00 1.0 1207973768 528 pump result amazing pump with almost x 4 started at 680 sat and reached 2650 the uptrend was great and we would have needed a lot more volume to break through our high targetswe could go even past 500 + but overall it was still very good as the pump held very high and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result even with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-08-08 17:30:12+00:00 1.0 1207973768 526 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 400 profit + be ready 2021-08-08 16:01:23+00:00 1.0 1207973768 525 6 hours and few minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready for vip premium coin earlier contact forgoodnisss discount offer 0001 btc binancians1234 discount offer is only valid for today 2021-08-08 10:40:21+00:00 1.0 1207973768 524 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready for vip premium coin earlier contact forgoodnisss discount offer 0001 btc binancians1234 discount offer is only valid for this pump for 24 hours 2021-08-07 16:01:56+00:00 1.0 1207973768 523 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance for premium coin earlier contact forgoodnisss the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have enough days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-01 15:24:08+00:00 1.0 1207973768 522 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime binancians1234 date sunday august 1 time 1700 pm gmt exchange binance for premium coin earlier contact forgoodnisss website email supportbinanciansscom lifetime discount offer is back 50 discount 2021-07-30 16:04:28+00:00 1.0 1207973768 520 1 hour left until our big pump on binance be prepared 2021-07-25 15:59:17+00:00 1.0 1207973768 519 pump announcement hello everyone next official pump will be scheduled for date sunday july 18 time 1700 pm gmt exchange binance 40 whale channels telegram discord target 50 to 200 profit for premium coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump on july 11th to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-07-11 17:21:38+00:00 1.0 1207973768 518 the coin we have picked to pump today is poa 2021-07-11 17:00:55+00:00 1.0 1207973768 517 5 minutes left the next message will be the coin to buy 2021-07-11 16:55:22+00:00 1.0 1207973768 514 1 hour left until our big pump on binance 2021-07-11 16:00:09+00:00 1.0 1207973768 513 1 day left until the biggest binance pump signal of all time for premium coin earlier contact forgoodnisss website email supportbinanciansscom binancians1234 2021-07-10 17:00:34+00:00 1.0 1207973768 510 pump announcement hello everyone next official pump will be scheduled for date sunday july 11 time 1700 pm gmt exchange binance +40 whale channels telegram discord target 50 to 200 profit for coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump on july 11th to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to join next pump contact forgoodnisss website email supportbinanciansscom on july 11th we will be pumping again with the same 100+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for binancians1234 2021-07-05 06:14:47+00:00 1.0 1207973768 508 pump announcement hello everyone our next pump will be scheduled for date sunday june 27 time 1700 pm gmt exchange binance dear members we are sure that next pump will set new standards the volume will increase 23x and we expect a result of + 100 as we fixed server problem to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us binancians1234 cryptoghf tradingscryptocoachbackup stay tuned 2021-06-25 05:14:22+00:00 1.0 1207973768 506 pump announcement hello everyone our next pump will be scheduled for date sunday june 27 time 1700 pm gmt exchange binance dear members we are sure that next pump will set new standards the volume will increase 23x and we expect a result of + 100 as we fixed server problem to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us binancians1234 cryptoghf tradingscryptocoachbackup stay tuned 2021-06-20 17:31:02+00:00 1.0 1207973768 502 5 minutes left the next message will be the just the coin name to buy 2021-06-20 16:55:34+00:00 1.0 1207973768 501 1 hour left until the big pump on binance for coin earlier contact forgoodnisss stay tuned binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-20 16:01:34+00:00 1.0 1207973768 495 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets and make sure we are able to reach our 500 targetwe hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly stay tuned thanks for your patience understanding 2021-06-13 17:25:48+00:00 1.0 1207973768 494 5 minutes left the next message will be only the coin name to buy 2021-06-13 16:54:40+00:00 1.0 1207973768 491 1 hour left till pump attention make sure you have binance acc ready buy the coin using your bitcoins btc pair hundreds of thousands of traders will be buying at once make sure you buy early before outsiders and sell faster do not plan to use your whole balance you can buy using 10 or 25 of your balance initially at market price as it is high risk and pump dump may happen fast in few seconds 2021-06-13 15:59:38+00:00 1.0 1207973768 490 less than 6 hours left until our pump on binance date sunday june 13 today time 1700 pm gmt exchange binance to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 cryptoghf tradingscryptocoachbackup 2021-06-13 10:46:11+00:00 1.0 1207973768 486 2 days left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible reminder that will only be using the btc pairing to buy the coin you will need to have btc on binance to buy the coin stay tuned 2021-06-11 13:01:17+00:00 1.0 1207973768 485 2 days left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible reminder that will only be using the btc pairing to buy the coin you will need to have btc on binance to buy the coin stay tuned 2021-06-11 13:01:13+00:00 1.0 1207973768 483 few hours and 5 days left till big binance pump date sunday june 13 time 1700 pm gmt exchange binance 5 days left coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss vip premium member contact forgoodnisss on june 13 we will be pumping again with the same 150+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 150 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us stay tuned binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-08 10:39:03+00:00 1.0 1207973768 482 pump announcement hello everyone next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binance 1 week left coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss with our volumes averaging 150 to 500 btc per pump and peaks reaching up to 150 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit vip premium member contact forgoodnisss on june 13 we will be pumping again with the same 150+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 150 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it we give you in the course of the next few days still precise instructions on how to make the most profits stay tuned binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-06 17:24:26+00:00 1.0 1207973768 479 10 minutes left the next message will be only the coin name to buy 2021-06-06 16:50:00+00:00 1.0 1207973768 477 only 1 hour left till pump attention make sure you have binance acc ready buy the coin using your bitcoins btc pair hundreds of thousands of traders will be buying at once make sure you buy early before outsiders and sell faster do not plan to use your whole balance you can buy using 10 or 25 of your balance initially at market price as it is high risk and pump dump may happen fast in few seconds 2021-06-06 15:59:19+00:00 1.0 1207973768 476 less than 11 hours left until our pump on binance date sunday june 6 today time 1700 pm gmt exchange binance to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-06 06:11:19+00:00 1.0 1207973768 474 important announcement members here those who purchased the monthly membership can now become lifetime member ✅ by paying only 50 limited period offer notediscount offer is only for members who already paid monthly and want to upgrade next pump announcement date sunday june 6 time 1700 pm gmt exchange binancecom to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us stay tuned 2021-05-31 19:19:03+00:00 1.0 1207973768 473 pump announcement hello everyone our next pump will be scheduled for date sunday june 6 time 1700 pm gmt exchange binancecom dear members we are sure that this pump will now set new standards the volume will increase 23x and we expect a result of + 500 to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it we give you in the course of the next few days still precise instructions on how to make the most profits stay tuned 2021-05-30 18:49:11+00:00 1.0 1207973768 472 pump result amazing pump with more than 500 btc volume which is amazing in this market we hit the peak almost 1 minute after the signal was given which gave enough time for members to make profit our volume is still very big despite the short term market sentiment and the recent btc drop specially after having not pumped for 1 week we can say for sure that we are back and hopefully with the market starting to recover you can expect the next one to be much bigger we will be taking all the necessary precautionary measures on the next pump in order to make sure the signal is given at the absolute bottom as well the next pump will be massive stay tuned for our next announcement 2021-05-30 18:36:42+00:00 1.0 1207973768 469 5 minutes left the next message will be just the coin name we will be using the btc pairing to pump make sure you have btc in your account to buy the coin 2021-05-30 16:55:15+00:00 1.0 1207973768 466 1 hour remaining until the big pump on binance 2021-05-30 15:59:39+00:00 1.0 1207973768 464 pump announcement date sunday may 30 time 1700 pm gmt exchange binance coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss 2021-05-29 12:10:49+00:00 1.0 1207973768 462 pump announcement hello everyone next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance 6 days left coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit vip premium member contact forgoodnisss on may 30 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-05-24 19:23:30+00:00 1.0 1207973768 461 dear members we have discussed all morning and we finally came to a decision as you all know we should have a pump tonight however we will postpone the pump to next week sunday 2021 may 30 5 pm gmt the experience teaches us that in day that bitcoins price droped significantly the pumps always turn out the be worse next pump date sunday may 30 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-23 16:46:59+00:00 1.0 1207973768 459 just 16 hours and few minutes left until our pump on binance date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-23 00:45:00+00:00 1.0 1207973768 456 note we still have binance pump as scheduled sunday date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-21 20:06:15+00:00 1.0 1207973768 453 the coin to pump is gsy exchange yobitnet target +500 market gsyeth current price 000000308 eth 12h 2021-05-21 18:59:06+00:00 1.0 1207973768 452 ℹ 10 min left until yobit pump pair eth not btc 2021-05-21 18:49:58+00:00 1.0 1207973768 451 ℹ 30 min left until yobit pump 2021-05-21 18:30:17+00:00 1.0 1207973768 450 ℹ 1 hour until yobit coin to buy is released ℹ exchange yobitnet yobitio make your yobit ready and after buy use yobit troll box chat 2021-05-21 17:59:45+00:00 1.0 1207973768 449 just 8 h + 30 m left till yobit pump today date 21may2021 friday 7 pm 1900 gmttimezone 2021-05-21 10:28:23+00:00 1.0 1207973768 448 few hours and 3 days left until our pump on binance date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-20 07:07:31+00:00 1.0 1207973768 447 reminder we have 2 pumps less than 4 days left till binance pump date sunday may 23 time 1700 pm gmt exchange binancecom less than 2 days left till yobit pump date 21may2021 friday 7 pm gmttimezone pair eth 2021-05-20 00:19:34+00:00 1.0 1207973768 445 our upcoming +1000 pump event will be on yobitnet register here date 21may2021 friday 7 pm gmttimezone pair eth how does the pump work on 21 may we will post a coin name everyone will buy this coin at the same time leading the coin to pump to insane levels +1000 recent pump was +2112 our team will shill this chosen coin everywhere so we all can sell it to outsiders you should shill the coin too for even higher levels sell with profit invite everyone to this channel the bigger we are the better ✅ yobitnet yobitnet get 1700 free dollars ethereum eth exchange register now and get 1700 free dollars buy and sell ethereum eth on yobit exchange note we still have binance pump as scheduled sunday 23 details of next binance pump are already posted above 2021-05-19 08:04:36+00:00 1.0 1207973768 443 pump announcement hello everyone next official pump is scheduled for date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit next week we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-16 17:53:00+00:00 1.0 1207973768 440 5 minutes left the next message will be only the coin name to buy 2021-05-16 16:55:26+00:00 1.0 1207973768 436 pump announcement hello everyone next official pump is scheduled for date sunday may 16 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit next week we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 6 days remaining until our big pump on binance more information about our upcoming pump contact forgoodnisss 2021-05-10 18:43:06+00:00 1.0 1207973768 432 important information everyone ❗ 2 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 16:00:32+00:00 1.0 1207973768 431 pump announcement saturday may 8th 1800 gmt 2 pm est exchange kucoincom pair usdt notice we will do 2 pumps weekly both binance and kucoin 2021-05-08 01:20:16+00:00 1.0 1207973768 428 pump announcement hello everyone next official pump is scheduled for date saturday may 1 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit next week we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-26 19:42:56+00:00 1.0 1207973768 427 the coin we have picked to pump today is idex it is looking perfect for a pump right now our target is 50+ 2021-04-25 17:02:01+00:00 1.0 1207973768 426 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 20:14:57+00:00 1.0 1207973768 425 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 20:13:28+00:00 1.0 1207973768 424 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 20:11:56+00:00 1.0 1207973768 423 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnes binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnes binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnes binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 00:27:51+00:00 1.0 1207973768 420 5 minutes left the next message will be the coin to buy 2021-04-18 16:55:09+00:00 1.0 1207973768 415 pump announcement 1 day + few hours left till pump binancians1234 to join next pump contact forgoodnesss date sunday april 18 2021 time 1700 pm gmt exchange binance 2021-04-17 08:03:06+00:00 1.0 1207973768 413 coin earlier of next pump here binancians1234 2021-04-14 18:18:26+00:00 1.0 1207973768 412 pump announcement to join next pump contact forgoodnesss just 4 days left till the next binance pump will be scheduled for date sunday april 18 2021 time 1700 pm gmt exchange binance for vip and coin earlier pm forgoodnesss 2021-04-14 14:30:25+00:00 1.0 1207973768 404 pump announcement to join next pump contact forgoodnesss hello everyonethe next official pump will be scheduled for date sunday april 18 2021 time 1700 pm gmt exchange binance with all of our members making more than 100 and 300 profit consecutively with 2 of our last 3 pumps and with a peak on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join pump contact forgoodnesss we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned to join pump contact forgoodnes 2021-04-11 17:43:36+00:00 1.0 1207973768 403 pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 167 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned 2021-04-11 17:40:42+00:00 1.0 1207973768 400 the coin we have picked to pump today is via pivx is looking perfect for a pump right now our target is 1000 2021-04-11 17:01:16+00:00 1.0 1207973768 399 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-04-11 16:59:22+00:00 1.0 1207973768 398 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-04-11 16:59:19+00:00 1.0 1207973768 394 1 hour left until our big pump on binance 2021-04-11 16:20:15+00:00 1.0 1207973768 393 2 hours left until the biggest binance pump signal i for vip and coin earlier pm forgoodnesss 2021-04-11 14:59:56+00:00 1.0 1207973768 392 less than6 hours left until the binance pump signal for vip and coin earlier pm forgoodnesss tradingscryptocoachbackup our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-11 11:05:28+00:00 1.0 1207973768 388 1 day left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few time before the pump in order for all our members to be prepared and make the most profit possible for vip and coin earlier pm forgoodnesss 2021-04-10 14:08:43+00:00 1.0 1207973768 380 ️pump announcement️ hello everyone the next official pump will be scheduled for for vip and coin earlier pm forgoodnesss date sunday april 11 time 1700 pm gmt exchange binance with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 11 we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for special offer for signal vip 0002 btc life time forgoodnesss 2021-04-07 15:26:36+00:00 1.0 1207973768 369 dear members we will postpone tonights pump as we are experiencing problems with the discord server the server has been growing a lot past week and this is causing server issues we are communicating with discord to increase the server capacity but this wont be solved until monday we have decided to push back the pump a few days the new details are as follows exchange binancecom date 11april2021 time 5 pm gmt as appologize we arrange a special signal coin for you next hour will be posted here plz wait us thanks 2021-04-04 16:54:17+00:00 1.0 1207973768 357 pump announcement to join pump contact forgoodnesss hello everyonethe next official pump will be scheduled for date sunday april 4 2021 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join pump contact forgoodnesss we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned to join pump contact forgoodnesss 2021-03-28 18:10:13+00:00 1.0 1207973768 341 ℹ coin signal information ℹ date friday 27 november hour 2100 pm gmt exchange binance market btc trading pairbtc ℹ friday 27 november 0900 pm gmt ℹ it is important to educate yourselves on how to trade on binance on how to buy and sell friday 27 november 0900 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in binance chat groups binance english and other languages group so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height note pm queenangelove to get all binance chat box groups 2020-11-20 21:51:58+00:00 1.0 1431126140 3001 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact premiumcoach for premium membership 2020-09-09 15:26:58+00:00 1.0 1431126140 2689 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact premiumcoach for premium membership 2020-08-31 23:53:21+00:00 1.0 1431126140 2307 qtum result 2nd target achieved in just 37 minutes ✅✅ one more huge profit 38 using 5x leverage amazing calls by our team to know next pump coin name ☎️ contact premiumcoach 2020-08-14 10:36:53+00:00 1.0 1431126140 1949 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact premiumcoach 2020-07-28 15:37:03+00:00 1.0 1431126140 1863 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact premiumcoach for premium membership 2020-07-23 15:22:59+00:00 1.0 1431126140 1849 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact premiumcoach for premium membership 2020-07-23 02:41:51+00:00 1.0 1431126140 1578 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact premiumcoach 2020-07-04 23:34:06+00:00 1.0 1431126140 1344 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact premiumcoach 2020-06-24 00:43:13+00:00 1.0 1068531379 471 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 17:50:58+00:00 1.0 1068531379 466 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:00:07+00:00 1.0 1068531379 465 5 minutes left the next message will be the coin to buy 2022-01-02 16:55:06+00:00 1.0 1068531379 464 15 minutes left until the big pump on binance be ready 2022-01-02 16:45:00+00:00 1.0 1068531379 462 2 hours left until the massive pump on binance be prepared 2022-01-02 15:00:20+00:00 1.0 1068531379 461 3 hours remaining until the big pump on binance 2022-01-02 14:01:57+00:00 1.0 1068531379 460 5 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2022-01-02 11:59:57+00:00 1.0 1068531379 459 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:08:38+00:00 1.0 1068531379 458 3 days left until the big pump on binance 2021-12-30 14:45:19+00:00 1.0 1068531379 457 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:29+00:00 1.0 1068531379 454 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:14+00:00 1.0 1068531379 453 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:03+00:00 1.0 1068531379 450 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:05+00:00 1.0 1068531379 449 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:02+00:00 1.0 1068531379 448 15 minutes remaining until the big pump be ready 2021-11-28 16:45:53+00:00 1.0 1068531379 446 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:23+00:00 1.0 1068531379 445 2 hours left until the massive pump on binance 2021-11-28 15:01:07+00:00 1.0 1068531379 444 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:20:47+00:00 1.0 1068531379 443 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:11+00:00 1.0 1068531379 442 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:01+00:00 1.0 1068531379 441 2 days remaining until the big pump on binance 2021-11-26 16:18:04+00:00 1.0 1068531379 440 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:02+00:00 1.0 1068531379 438 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:23+00:00 1.0 1068531379 435 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:03+00:00 1.0 1068531379 434 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:55+00:00 1.0 1068531379 432 30 minutes left until the big pump on binance 2021-11-07 16:30:00+00:00 1.0 1068531379 431 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:01+00:00 1.0 1068531379 430 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:09:56+00:00 1.0 1068531379 429 4 hours left until the big pump on binance 2021-11-07 13:00:26+00:00 1.0 1068531379 428 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:02+00:00 1.0 1068531379 427 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:00+00:00 1.0 1068531379 426 2 days left until the big pump on binance be prepared 2021-11-05 14:30:36+00:00 1.0 1068531379 425 4 days remaining until the big pump on binance 2021-11-03 13:56:14+00:00 1.0 1068531379 424 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:07+00:00 1.0 1068531379 423 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1068531379 418 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:05+00:00 1.0 1068531379 416 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:03+00:00 1.0 1068531379 414 30 minutes left until the big pump 2021-10-31 16:29:23+00:00 1.0 1068531379 413 55 minutes left until the big pump on binance 2021-10-31 16:06:16+00:00 1.0 1068531379 412 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:45+00:00 1.0 1068531379 411 4 hours left until the big pump on binance 2021-10-31 13:02:10+00:00 1.0 1068531379 410 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:39+00:00 1.0 1068531379 409 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:27+00:00 1.0 1068531379 408 3 days left until the big pump on binance 2021-10-28 13:02:59+00:00 1.0 1068531379 407 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:46+00:00 1.0 1068531379 406 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:47+00:00 1.0 1068531379 400 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:07+00:00 1.0 1068531379 398 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:55+00:00 1.0 1068531379 397 15 minutes left until the massive pump on binance 2021-10-24 16:44:54+00:00 1.0 1068531379 396 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:02+00:00 1.0 1068531379 395 2 hours left until the big pump on binance 2021-10-24 15:00:00+00:00 1.0 1068531379 394 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:03+00:00 1.0 1068531379 393 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:03+00:00 1.0 1068531379 392 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:11+00:00 1.0 1068531379 391 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:51+00:00 1.0 1068531379 390 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:47+00:00 1.0 1068531379 389 7 days left until the big pump on binance 2021-10-17 14:50:21+00:00 1.0 1068531379 388 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:40:00+00:00 1.0 1068531379 387 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:37+00:00 1.0 1068531379 384 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:05+00:00 1.0 1068531379 382 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1068531379 380 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:29:53+00:00 1.0 1068531379 379 1 hour left until the big pump on binance 2021-10-10 16:00:19+00:00 1.0 1068531379 378 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:02+00:00 1.0 1068531379 377 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:31+00:00 1.0 1068531379 376 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:41+00:00 1.0 1068531379 375 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:53+00:00 1.0 1068531379 374 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:02+00:00 1.0 1068531379 373 3 days left until the big pump on binance 2021-10-07 14:33:53+00:00 1.0 1068531379 372 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:04+00:00 1.0 1068531379 369 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:32+00:00 1.0 1068531379 366 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:07+00:00 1.0 1068531379 363 5 minutes left the real coin we are pumping will be posted in 5 minutes be ready 2021-10-03 16:54:56+00:00 1.0 1068531379 362 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:25+00:00 1.0 1068531379 360 the coin we have picked to pump today is ilv 2021-10-03 16:50:24+00:00 1.0 1068531379 356 12 minutes left until the pump on binance 2021-10-03 16:48:36+00:00 1.0 1068531379 355 the coin we have picked to pump today is nxs 2021-10-03 16:47:50+00:00 1.0 1068531379 352 30 minutes left until the big the pump on binance 2021-10-03 16:30:03+00:00 1.0 1068531379 351 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-10-03 16:00:03+00:00 1.0 1068531379 350 1 hour and 58 minutes left until the big pump on binance be ready 2021-10-03 15:03:00+00:00 1.0 1068531379 349 3 hours and 50 minutes left until the big pump on binance this pump will be massive be prepared 2021-10-03 13:09:43+00:00 1.0 1068531379 348 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:04+00:00 1.0 1068531379 347 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:03+00:00 1.0 1068531379 346 3 days left until the big pump on binance 2021-09-30 15:23:37+00:00 1.0 1068531379 344 7 days left until the big pump on binance 2021-09-26 14:35:59+00:00 1.0 1068531379 343 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:14+00:00 1.0 1068531379 339 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1068531379 338 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:11+00:00 1.0 1068531379 336 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:07+00:00 1.0 1068531379 333 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:08+00:00 1.0 1068531379 332 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:02+00:00 1.0 1068531379 331 4 hours left until the big pump on binance 2021-09-19 13:01:13+00:00 1.0 1068531379 330 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:01:57+00:00 1.0 1068531379 329 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:12+00:00 1.0 1068531379 328 3 days left until the big pump on binance 2021-09-16 15:14:42+00:00 1.0 1068531379 327 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:54+00:00 1.0 1068531379 325 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:10+00:00 1.0 1068531379 322 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:05+00:00 1.0 1068531379 320 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:45+00:00 1.0 1068531379 317 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1068531379 316 2 hours left until the big pump on binance 2021-09-05 15:00:08+00:00 1.0 1068531379 315 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:04+00:00 1.0 1068531379 314 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:40+00:00 1.0 1068531379 313 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:54+00:00 1.0 1068531379 312 2 days left until the big pump on binance be prepared 2021-09-03 14:05:05+00:00 1.0 1068531379 311 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 4 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-09-02 09:29:58+00:00 1.0 1068531379 310 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-22 18:00:51+00:00 1.0 1068531379 307 the coin we have picked to pump today is nas nas is looking perfect for a massive pump right now 2021-08-22 17:00:11+00:00 1.0 1068531379 305 5 minutes left the next message will be the coin to buy 2021-08-22 16:55:27+00:00 1.0 1068531379 303 30 minutes remaining until the big pump on binance we will be using the btc pairing to pump meaning you will need to use btc to buy the coin 2021-08-22 16:31:14+00:00 1.0 1068531379 301 2 hours remaining until the big pump on binance 2021-08-22 15:00:32+00:00 1.0 1068531379 299 4 hours left until the big pump on binance 2021-08-22 13:00:28+00:00 1.0 1068531379 298 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-22 11:00:04+00:00 1.0 1068531379 297 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-08-21 17:00:01+00:00 1.0 1068531379 295 4 days remaining until the big pump on binance 2021-08-18 15:01:34+00:00 1.0 1068531379 293 pump announcement hello everyone the next official pump will be scheduled for date sunday august 22 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on august 22 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-09 14:55:59+00:00 1.0 1068531379 291 here is the video everyone has been waiting for the replay of the first minute of our amazing pump yesterday we will be announcing the next pump date shortly 2021-08-09 14:03:41+00:00 1.0 1068531379 290 pump result possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 300 with great volume once again which means all members had a chance to make up to 300 profit within the first 2 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement 2021-08-08 17:43:55+00:00 1.0 1068531379 286 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-08-08 17:00:10+00:00 1.0 1068531379 283 5 minutes left be ready the next message will be the coin to buy 2021-08-08 16:55:28+00:00 1.0 1068531379 281 30 minutes remaining until the big pump on binance get ready 2021-08-08 16:30:00+00:00 1.0 1068531379 280 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 400 profit + be ready 2021-08-08 16:00:09+00:00 1.0 1068531379 277 5 hours left until the big pump on binance 2021-08-08 12:00:14+00:00 1.0 1068531379 276 6 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-08 10:14:14+00:00 1.0 1068531379 275 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being back and volumes being high the odds of reaching 400 profit will be very high this time we will do everything in our power to make sure we reach this target this is officially the pump you will want to be part of and not miss be prepared 2021-08-07 17:00:00+00:00 1.0 1068531379 274 2 days remaining until our biggest pump signal of all time be prepared 2021-08-06 11:47:20+00:00 1.0 1068531379 273 4 days remaining until the big pump on binance 2021-08-04 15:06:01+00:00 1.0 1068531379 272 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-01 13:44:04+00:00 1.0 1068531379 271 pump result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-07-25 18:05:53+00:00 1.0 1068531379 265 the coin we have picked to pump today is drep drep is looking perfect for a pump right now the target is 500 2021-07-25 17:00:01+00:00 1.0 1068531379 264 5 minutes left the next post will be the coin to buy 2021-07-25 16:55:00+00:00 1.0 1068531379 261 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 500 profit and beyond be ready 2021-07-25 16:00:01+00:00 1.0 1068531379 260 2 hours remaining until the big pump on binance 2021-07-25 15:01:03+00:00 1.0 1068531379 259 4 hours left until our big pump everything is still looking good still with our coin being bottomed which means all members will be able to buy early we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in last time we were able to get a few thousands retweet which means a big commitment from our community this time we want the effect to be bigger by asking all of our members to post on twitter after our signal we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-25 13:00:22+00:00 1.0 1068531379 258 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump with the market being good we can guarantee a good pump this time as our team will support it in a massive way by injecting volume after our members bought in 2 hours we will post a few directives in order to coordinate our coin to trend on twitter our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-25 11:00:28+00:00 1.0 1068531379 257 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-24 17:01:25+00:00 1.0 1068531379 256 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible this pump will have a big amount of support from the team and we can confirm with absolute certainty that this will be the biggest profit maker pump of all time be prepared 2021-07-23 14:15:02+00:00 1.0 1068531379 255 4 days remaining until our big pump on binance 2021-07-21 12:36:37+00:00 1.0 1068531379 254 7 days remaining until our big pump on binance we can say with 100 certainty that we will be able to do a massive pump like we did on ppt nxs and sky our official target for this pump will be 500 in a few days we will give our members more information on how to be ready for it in order to maximize your profits 2021-07-18 11:20:10+00:00 1.0 1068531379 253 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on july 25 we will be pumping again with a 500 + target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs and sky which was 3 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-07-12 12:05:28+00:00 1.0 1068531379 252 pump result the volume was amazing once again with a great 2nd wave that lasted a good amount of time however the pump did not go as we had initially planned we did manage to almost get our coin trending on twitter as we can see thousands of posts about it which is great and confirms that there is a big commitment from our members we will attempt to make that effect much bigger on the next one and coordinate it much better before the signal there was a lot of activity on our coin and our team had to decide between postponing the pump or doing the pump we decided to still do the pump which was unfortunately not the right decision in order to make sure this never happens again we can guarantee that we will be taking the following measures on the next pump the coin will be given at the absolute bottom in order to guarantee bigger profits for our members our team will support the price after all our members have bought by injecting a massive amount of btc this will guarantee that all our members can start with a good profit regardless of where they bought last but not least we will make sure that our targets will be met in order to guarantee a great pump for everyone we will announce the next official pump date soon stay tuned 2021-07-11 18:02:23+00:00 1.0 1068531379 251 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:00:02+00:00 1.0 1068531379 250 5 minutes left the next message will be the coin to buy 2021-07-11 16:54:47+00:00 1.0 1068531379 247 1 hour left until our big pump on binance be prepared 2021-07-11 16:00:01+00:00 1.0 1068531379 246 2 hours remaining until the big pump on binance 2021-07-11 15:00:03+00:00 1.0 1068531379 245 4 hours and 5 minutes left until our big pump we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-11 12:55:01+00:00 1.0 1068531379 244 6 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-11 11:00:01+00:00 1.0 1068531379 243 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time this is the pump that you will not want to miss you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-10 17:00:00+00:00 1.0 1068531379 242 2 days left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-07-09 13:54:53+00:00 1.0 1068531379 241 4 days left until the biggest pump signal of all time on binance in a few days we will be posting more information in order to be prepared for the pump 2021-07-07 14:01:01+00:00 1.0 1068531379 240 7 days remaining until the big pump on binance 2021-07-04 12:02:18+00:00 1.0 1068531379 239 pump announcement hello everyone the next official pump will be scheduled for date sunday july 11 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on july 11 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 11 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-30 12:45:05+00:00 1.0 1068531379 238 pump result total volume was over 400 btc which is around 14 million which is still good for the current market before the signal the market had sold a big amount of wabi which affected the expected results by probably around 4050 however in exchange it did give a better buying opportunity for our members the pump had a good and slow rise to the peak allowing our members to make a good amount of profit we also had multiple waves which allowed a lot of dip opportunities to be bought and sold back at a higher price despite the current bad market we are currently trying to match our big expectations as we have been able to reach on average 200450 results in the past while the market was still good with volumes reaching up 80 million we are aware that those are the big results that everyone wants and would like to let our members know that our team is working hard to try to provide those results again we have a strong team of whales big community leaders and the biggest traders in the cryptocurrency ecosystem with us and you can be sure that we will be able to provide those big results again once the market has returned back to normal before announcing our pump we will make sure that we will be able to reach each at least 300500 in our next pump and for that we will need the market to be a little more bullish again once we see that the market is good and ready for a pump we will make our big announcement on that note we received alot of messages of appreciation for this pump and we are glad many members managed to make profit stay tuned for our next announcement 2021-06-20 18:58:39+00:00 1.0 1068531379 236 the coin we have picked to pump today is wabi wabi is looking perfect for a pump right now 2021-06-20 17:00:04+00:00 1.0 1068531379 235 5 minutes left the next message will be the coin to buy 2021-06-20 16:54:53+00:00 1.0 1068531379 232 1 hour left until our big pump on binance 2021-06-20 15:59:39+00:00 1.0 1068531379 231 2 hours and 40 minutes left until our big pump on binance the market is staring to recover which is a good sign for us be ready 2021-06-20 14:20:07+00:00 1.0 1068531379 230 4 hours and 30 remaining until our big pump with the current market conditions all buying power and attention from the market will go towards our pump coin be prepared 2021-06-20 12:30:28+00:00 1.0 1068531379 229 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-06-20 10:54:48+00:00 1.0 1068531379 216 2 days left until the big pump on binance 2021-06-18 18:29:36+00:00 1.0 1068531379 213 pump announcement hello everyone the next official pump will be scheduled for date sunday june 20 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on june 13 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 7 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-13 18:07:40+00:00 1.0 1068531379 212 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets and make sure we are able to reach our 500 targetwe hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly stay tuned 2021-06-13 17:21:57+00:00 1.0 1068531379 210 689067934294867985eryone hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets and make sure we are able to reach our 500 targetwe hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly stay tuned 2021-06-13 17:20:40+00:00 1.0 1068531379 209 5 minutes left the next message will be the coin to buy 2021-06-13 16:54:45+00:00 1.0 1068531379 205 2 hours and 15 minutes remaining until the big pump on binance 2021-06-13 14:44:22+00:00 1.0 1068531379 202 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-06-13 10:56:13+00:00 1.0 1068531379 201 the day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-06-12 17:00:01+00:00 1.0 1068531379 200 2 days left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible reminder that will only be using the btc pairing to buy the coin you will need to have btc on binance to buy the coin stay tuned 2021-06-11 12:47:39+00:00 1.0 1068531379 199 4 days left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it 2021-06-09 14:33:04+00:00 1.0 1068531379 197 important information everyone ❗ less than 3 minutes left until the massive pump on kucoin ❗ next message will be coin 2021-06-05 17:57:38+00:00 1.0 1068531379 196 important information everyone ❗ less than 5 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:55:20+00:00 1.0 1068531379 195 important information everyone ❗ less than 10 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:50:47+00:00 1.0 1068531379 194 important information everyone ❗ less than 15 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:45:38+00:00 1.0 1068531379 193 important information everyone ❗ less than 20 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:40:04+00:00 1.0 1068531379 192 important information everyone ❗ less than 30 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:30:24+00:00 1.0 1068531379 191 important information everyone ❗ less than 1 hour left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:07:09+00:00 1.0 1068531379 190 important information everyone ❗ less than 2 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 16:01:22+00:00 1.0 1068531379 189 important information everyone ❗ less than 3 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 15:03:05+00:00 1.0 1068531379 188 important information everyone ❗ less than 4 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 14:08:23+00:00 1.0 1068531379 187 important information everyone ❗ less than 5 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 13:00:07+00:00 1.0 1068531379 185 attention the pump signal will be sent as text and link an example of how the signal will look like btcusdt usdt today is going to be good 2021-06-05 12:07:09+00:00 1.0 1068531379 184 important information everyone ❗ less than 6 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 12:03:19+00:00 1.0 1068531379 183 important information everyone ❗ less than 7 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 11:02:01+00:00 1.0 1068531379 182 pump announcement hello everyone the next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on june 13 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 12 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-01 18:12:23+00:00 1.0 1068531379 181 pump result amazing pump with more than 500 btc volume which is amazing in this market we hit the peak almost 1 minute after the signal was given which gave enough time for members to make profit our volume is still very big despite the short term market sentiment and the recent btc drop specially after having not pumped for 1 month we can say for sure that we are back and hopefully with the market starting to recover you can expect the next one to be much bigger we will be taking all the necessary precautionary measures on the next pump in order to make sure the signal is given at the absolute bottom as well the next pump will be massive stay tuned for our next announcement 2021-05-30 18:32:29+00:00 1.0 1068531379 179 the coin we have picked to pump today is oax oax is looking perfect for a pump right now 2021-05-30 17:00:02+00:00 1.0 1068531379 178 5 minutes left the next message will be the coin to buy 2021-05-30 16:54:36+00:00 1.0 1068531379 177 15 minutes left until the pump on binance we will be using the btc pairing to pump make sure you have btc in your account to buy the coin 2021-05-30 16:44:08+00:00 1.0 1068531379 174 2 hours remaining until the big pump on binance 2021-05-30 15:00:25+00:00 1.0 1068531379 173 2 hours and 55 minutes left until the pump on binance in 2 hours and 55 minutes we will be posting the coin to buy for the pump you will need to have btc in your account to buy the given coin be prepared 2021-05-30 14:04:43+00:00 1.0 1068531379 172 4 hours left until the big pump on binance 2021-05-30 13:02:46+00:00 1.0 1068531379 171 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-05-30 10:56:51+00:00 1.0 1068531379 170 the day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-05-29 16:57:47+00:00 1.0 1068531379 169 2 days left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it 2021-05-28 13:37:57+00:00 1.0 1068531379 168 pump announcement join us on the 30th of may for a great pump exchange binance date 30thmay2021 sunday ⏰ time 1700 gmtutc 1800 bst target 500 xxxbtc we have a new pump scheduled for the 30th may at 1700 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 1 million members the signal for this pump will be sent to our discord server and this telegram channel with our partner server volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump for the 30th of may to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on may 30th we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for 2021-05-27 11:56:26+00:00 1.0 1068531379 166 important information we predict more than 150 this time everyone ❗ less than 3 minutes left until the massive pump on kucoin ❗ next message will be coin name 2021-05-21 19:57:53+00:00 1.0 1068531379 165 important information we predict more than 150 this time everyone ❗ less than 5 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 19:56:14+00:00 1.0 1068531379 164 important information we predict more than 150 this time everyone ❗ less than 10 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 19:51:22+00:00 1.0 1068531379 163 important information we predict more than 150 this time everyone ❗ less than 15 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 19:46:10+00:00 1.0 1068531379 162 important information we predict more than 150 this time everyone ❗ less than 20 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 19:40:27+00:00 1.0 1068531379 161 important information we predict more than 150 this time everyone ❗ less than 30 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 19:31:48+00:00 1.0 1068531379 160 important information we predict more than 150 this time everyone ❗ less than 1 hour left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 19:04:45+00:00 1.0 1068531379 159 important information we predict more than 150 this time everyone ❗ less than 2 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 18:16:03+00:00 1.0 1068531379 158 important information we predict more than 150 this time everyone ❗ less than 3 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 17:15:40+00:00 1.0 1068531379 156 important information everyone ❗ less than 5 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump due to market conditions we expect the largest ever make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 15:07:49+00:00 1.0 1068531379 155 important information everyone ❗ less than 6 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 2000 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 14:03:10+00:00 1.0 1068531379 153 important information everyone ❗ less than 8 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-21 12:04:23+00:00 1.0 1068531379 152 kucoin pump bot do you want the best chance to profit from kucoin pumps then you need a pump bot a pump bot is a program specifically designed to automatically read the coin signal from discord then buy the coin faster than any manual buyer you can configure the pump bot to sell the coin based on your desired profit never pump manually again let the pump bot do all the hard work for you to get your own pump bot register your account with discord here send us a direct message dm for your unique 25 discount voucher and never pump manually again ccps team ❤️ ❤️ ❤️ 2021-05-21 11:21:05+00:00 1.0 1068531379 151 pump announcement join us tomorrow evening the 21st of may for a great pump exchange kucoin date 21stmay2021 friday ⏰ time 2000 gmtutc 2100 bst xxxusdt we have a new pump scheduled for the 21st may at 2000 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 50k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server and this telegram channel share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-20 16:25:41+00:00 1.0 1068531379 149 important information everyone ❗ less than 3 minutes left until the massive pump on kucoin ❗ next message will be coin name 2021-05-15 17:57:09+00:00 1.0 1068531379 147 important information everyone ❗ less than 10 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 17:50:02+00:00 1.0 1068531379 146 important information everyone ❗ less than 15 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 17:45:14+00:00 1.0 1068531379 145 important information everyone ❗ less than 20 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 17:41:00+00:00 1.0 1068531379 144 important information everyone ❗ less than 30 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 17:32:27+00:00 1.0 1068531379 143 important information everyone ❗ less than 1 hour left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 17:01:31+00:00 1.0 1068531379 142 important information everyone ❗ less than 2 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 16:00:47+00:00 1.0 1068531379 141 attention the pump signal will be sent as text and link an example of how the signal will look like btcusdt usdt today is going to be good 2021-05-15 15:33:19+00:00 1.0 1068531379 140 important information everyone ❗ less than 3 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 15:00:24+00:00 1.0 1068531379 139 important information everyone ❗ less than 4 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 14:08:43+00:00 1.0 1068531379 138 important information everyone ❗ less than 5 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-15 13:21:28+00:00 1.0 1068531379 137 pump announcement join us tonight the 15th of may for a great pump exchange kucoin date 15thmay2021 saturday ⏰ time 1800 gmtutc 1900 bst target 200 xxxusdt we have a new pump scheduled for the 815th may at 1800 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 50k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server and this telegram channel share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-15 09:52:12+00:00 1.0 1068531379 136 our first pump on hotbit last night achieved a massive 390 gain lots of members were able to make great gains due to everyone having to buy manually get ready for another pump this evening on kucoin 2021-05-15 09:51:22+00:00 1.0 1068531379 135 pump tonight at 2000gmt for a great pump exchange hotbit date 14thmay2021 friday ⏰ time 2000 gmtutc 2100 bst target +200 xxxusdt we have a new pump scheduled for tonight at 2000 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 50k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all register your hotbit account here ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server only share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-14 11:04:50+00:00 1.0 1068531379 134 pump announcement join us on friday the 14th of may for a great pump exchange hotbit date 14thmay2021 friday ⏰ time 2000 gmtutc 2100 bst target +200 xxxusdt we have a new pump scheduled for the 14th may at 2000 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 50k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all register your hotbit account here ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server only share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-11 16:23:18+00:00 1.0 1068531379 128 important information everyone ❗ 3 minutes left until the massive pump on kucoin ❗ next message will be coin name 2021-05-08 17:57:03+00:00 1.0 1068531379 127 important information everyone ❗ 5 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 17:55:10+00:00 1.0 1068531379 126 important information everyone ❗ 10 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 17:51:04+00:00 1.0 1068531379 125 important information everyone ❗ 15 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 17:45:26+00:00 1.0 1068531379 124 important information everyone ❗ 20 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 17:41:04+00:00 1.0 1068531379 123 important information everyone ❗ 30 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 17:33:34+00:00 1.0 1068531379 122 participating servers transparentcrypto signals fiamettas crypto signals yobit pump signal crypto coin pump signals the pump house lina crypto pump wsb blockchain crypto suggestions the crypto doctors lambo pumps wsb big pump signal in total we are over 44k members not much time left get your usdt ready 2021-05-08 17:24:36+00:00 1.0 1068531379 121 important information everyone ❗ 45 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 17:15:57+00:00 1.0 1068531379 120 important information everyone ❗ 1 hour left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 17:03:29+00:00 1.0 1068531379 119 important information everyone ❗ 2 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 15:59:35+00:00 1.0 1068531379 118 important information everyone ❗ less than 3 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 15:01:57+00:00 1.0 1068531379 117 important information everyone ❗ less than 4 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 14:06:23+00:00 1.0 1068531379 116 important information everyone ❗ less than 5 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 13:05:26+00:00 1.0 1068531379 115 attention the pump signal will be sent as text and link an example of how the signal will look like btcusdt usdt today is going to be good 2021-05-08 12:35:58+00:00 1.0 1068531379 114 important information everyone ❗ less than 6 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-08 12:34:10+00:00 1.0 1068531379 113 only two days to go until our biggest pump exchange kucoin date 8thmay2021 saturday ⏰ time 1800 gmtutc 1900 bst target 200 xxxusdt we have a new pump scheduled for the 8th may at 1800 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 50k+ get your kucoin accounts ready with usdt fastest way to make a quick profit as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server and this telegram channel share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-06 09:26:59+00:00 1.0 1068531379 112 pump announcement join us on saturday the 8th of may for a great pump exchange kucoin date 8thmay2021 saturday ⏰ time 1800 gmtutc 1900 bst target 200 xxxusdt we have a new pump scheduled for the 8th may at 1800 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 50k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server and this telegram channel share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-04 15:50:51+00:00 1.0 1068531379 111 pump announcement less than 90 minutes to go until the pump exchange binance date 2ndmay2021 sunday ⏰ time 1600 gmtutc 1700 bst xxxbtc we have a new pump scheduled for the 2nd may at 1600 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 35k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server only join today share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-02 14:36:50+00:00 1.0 1068531379 110 pump announcement join us this afternoon the 2nd of may on discord for a great pump exchange binance date 2ndmay2021 sunday ⏰ time 1400 gmtutc 1700 bst xxxbtc we have a new pump scheduled for the 2nd may at 1700 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 35k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server only join today share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-05-02 12:08:47+00:00 1.0 1068531379 108 everyone get ready everyone next message is coin name 2021-05-01 17:57:24+00:00 1.0 1068531379 107 3 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump lets go 2021-05-01 17:57:04+00:00 1.0 1068531379 106 5 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump lets go 2021-05-01 17:55:28+00:00 1.0 1068531379 105 10 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump lets go 2021-05-01 17:50:57+00:00 1.0 1068531379 104 15 minutes left greetings everyone here is the list of all groups participating in this pump blockchain wsb crypto coin pump signals crypto suggestions fiammettas pump signals transparent crypto signals yobit pump signal for a total of 30000+ members its gonna be an awesome pump 2021-05-01 17:45:03+00:00 1.0 1068531379 103 20 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-01 17:41:02+00:00 1.0 1068531379 102 30 minutes left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-01 17:30:40+00:00 1.0 1068531379 101 less than 2 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-01 16:01:53+00:00 1.0 1068531379 99 important information everyone ❗ less than 3 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-01 15:04:40+00:00 1.0 1068531379 98 important information everyone ❗ less than 6 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-05-01 12:38:05+00:00 1.0 1068531379 97 pump announcement reminder kucoin pump tomorrow join us on saturday the 1st of may on discord for a great pump exchange kucoin date 1stmay2021 saturday ⏰ time 1800 gmtutc 1900 bst target 200 xxxusdt we have a new pump scheduled for the 1st may at 1800 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 35k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server and this telegram channel join today share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-04-30 09:55:08+00:00 1.0 1068531379 96 pump announcement join us on saturday the 1st of may on discord for a great pump exchange kucoin date 1stmay2021 saturday ⏰ time 1800 gmtutc 1900 bst target 200 xxxusdt we have a new pump scheduled for the 1st may at 1800 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 35k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server and this telegram channel join today share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-04-26 09:55:46+00:00 1.0 1068531379 95 pump announcement join us tonight for a great pump exchange kucoin date 23rdapril2021 friday ⏰ time 1900 gmtutc 2000 bst target 200 xxxusdt pump scheduled for tonight the 23rd of april at 1900 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 35k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️important the signal for this pump will be sent to our discord server channel only join today discord now it takes only a few minutes ❤️❤️❤️the ccps team 2021-04-23 16:11:49+00:00 1.0 1068531379 94 pump announcement join us on friday the 23rd of april on discord for a great pump exchange kucoin date 23rdapril2021 friday ⏰ time 1900 gmtutc 2000 bst target 200 xxxusdt we have a new pump scheduled for the 23rd of april at 1900 gmt we have organised a pump with our partner pump servers on discord combined a total membership of over 35k as always we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server channel join today share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-04-22 07:39:20+00:00 1.0 1068531379 93 pump announcement only 25 mins left before the pump get ready on discord exchange kucoin date 16thapril2021 friday ⏰ time 2000 gmtutc 2100 bst target 200 xxxusdt only 25 mins left before the pump get ready on discord we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server channel share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-04-16 19:36:20+00:00 1.0 1068531379 92 pump announcement join us tonight 16th of april on discord for a great pump exchange kucoin date 16thapril2021 friday ⏰ time 2000 gmtutc 2100 bst target 200 xxxusdt we have a new pump scheduled for the 16th of april at 2000 gmt we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server channel share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-04-15 18:19:50+00:00 1.0 1068531379 91 pump announcement join us on friday the 16th of april on discord for a great pump exchange kucoin date 16thapril2021 friday ⏰ time 2000 gmtutc 2100 bst target 200 xxxusdt we have a new pump scheduled for the 16th of april at 2000 gmt we can guarantee that there will be no prepump our pumps are always 100 fair and free for all ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to our discord server channel share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members 2021-04-12 10:56:18+00:00 1.0 1068531379 80 pump announcement join us tomorrow at 1800 gmt for a great kucoin pump exchange kucoin date 6thapril2021 tuesday ⏰ time 1800 gmtutc 1900 bst target 200 xxxusdt we have built a collaboration of likeminded pump groups on discord and telegram with over 20k combined members our pump is scheduled not to overlap with other pumps and therefore more members will be able to participate in the pump we can guarantee that there will be no prepump since only one pump group in our collaboration group is responsible for choosing and announcing the coin therefore no chance for it to leak out ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to this telegram channel and our discord server be sure you have registered your kucoin account if you do not currently have a kucoin account you may use this link to create it share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members ccps team ❤️ ❤️ ❤️ 2021-04-05 19:10:34+00:00 1.0 1068531379 75 5 minutes left less than 15 minutes left until the pump on kucoin it is time to get this money the signal will be sent in this channel get ready now everyone make sure you have an account if not register now prepare usdt on your trading account now ❗ important ❗ make sure you transfer your usdt from the main account to your trading account on kucoin and set the required 6digit password for trading lets go guys the predicted for this pump is an astonishing 200250 2021-04-04 19:55:48+00:00 1.0 1068531379 74 10 minutes left less than 15 minutes left until the pump on kucoin it is time to get this money the signal will be sent in this channel get ready now everyone make sure you have an account if not register now prepare usdt on your trading account now ❗ important ❗ make sure you transfer your usdt from the main account to your trading account on kucoin and set the required 6digit password for trading lets go guys the predicted for this pump is an astonishing 200250 2021-04-04 19:49:55+00:00 1.0 1068531379 73 15 minutes left less than 15 minutes left until the pump on kucoin it is time to get this money the signal will be sent in this channel get ready now everyone make sure you have an account if not register now prepare usdt on your trading account now ❗ important ❗ make sure you transfer your usdt from the main account to your trading account on kucoin and set the required 6digit password for trading lets go guys the predicted for this pump is an astonishing 200250 2021-04-04 19:46:32+00:00 1.0 1068531379 67 pump announcement join us tomorrow at 2000 gmt for a great kucoin pump exchange kucoin date 4thapril2021 sunday ⏰ time 2000 gmtutc 2100 bst target 200 xxxusdt we have built a collaboration of likeminded pump groups on discord and telegram with over 20k combined members our pump is scheduled not to overlap with other pumps and therefore more members will be able to participate in the pump we can guarantee that there will be no prepump since only one pump group in our collaboration group is responsible for choosing and announcing the coin therefore no chance for it to leak out ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins please take a moment to create a discord account and join us here the signal for this pump will be sent to this telegram channel and our discord server be sure you have registered your kucoin account if you do not currently have a kucoin account you may use this link to create it share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members ccps team ❤️ ❤️ ❤️ 2021-04-03 15:03:27+00:00 1.0 1068531379 63 pump announcment join us this evening at 1900pm gmt for a 60k member pump exchange kucoin date 28thmarch2021 sunday ⏰ time 1800 gmtutc 1900 bst target 400500 ❤️ provably fair pump we have partnered up with a lot of servers to bring you one of the biggest kucoin pumps to date all of the servers will be using the same provably fair bot that will choose a coin randomly in a completely fair way this will also ensure that the coin is released at the exact same time across all the discord servers in the collab we are expecting huge returns with over 60k members combined for this pump only 9 hours until the pump this evening at 1800 gmtutc 1900 bst make sure you have registered your kucoin account if you do not currently have a kucoin account you may use this link to create it the signal for this pump will be sent to our discord server only please take a moment to create a discord account and join us there share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members ccps team ❤️ ❤️ ❤️ 2021-03-28 08:48:18+00:00 1.0 1068531379 61 hello everyone well that was disappointing in terms of not getting the rise we were hoping to achieve but we hope that we have proven that we have not prepumped the coin it held for over 2 minutes before people started selling in an ideal world we would have had everyone getting on social media and promoting the coin we are busy looking into this and what we couldve done to improve on it one thing that stands out is that there was confusion with the image where people were thinking it was reo instead of req this may have reduced some of the volume we were expecting we had a reasonable amount of volume just not enough to push us to the levels we were hoping for like we said before the indicators are strong for this coin and should give good returns in the coming days this pump will be helping for that awareness the volume was supposedly around 9btc we believe it to be closer to about 45 btc with the volume and manner we are doing this it is down to you to give us your impressions of a do you want spectacular rises but the possibility of being stuck with a sht coin b smaller rises but the possibility of having a coin with potential later on we can only apologise that we did not create the big rises you and us were expecting we are considering alternatives to make sure where can get some bigger gains maybe please see below for further analysis and information of the coin 2021-03-27 19:58:18+00:00 1.0 1068531379 58 everyone 2 minutes to go until coin signal the next message will be the coin name 2021-03-27 18:28:00+00:00 1.0 1068531379 57 everyone 5 minutes to go until coin signal get ready the coin will be announced as xxxbtc 2021-03-27 18:25:00+00:00 1.0 1068531379 56 everyone 8 minutes to go until coin signal get ready the coin will be announced as xxxbtc this pump will be free for all that means that you all will receive the coin at the same time so it is the most fair for all of you the coin will be announced as an image this is so everyone has the same chance to win profits fastest guns in the west technical indicators for our chosen coin good support for upward movement holding this longer would be more beneficial for a second wave 2021-03-27 18:22:00+00:00 1.0 1068531379 54 everyone 15 minutes to go until coin signal 2021-03-27 18:15:30+00:00 1.0 1068531379 53 everyone 30 minutes to go until coin signal get ready the coin will be announced as xxxbtc and pumped on the binance com international exchange technical indicators for our chosen coin good support for upward movement holding this longer would be more beneficial for a second wave 2021-03-27 18:00:00+00:00 1.0 1068531379 52 1 hour left until the pump this pump will be free for all that means that you all will receive the coin at the same time so it is the most fair for all of you the coin will be announced as an image this is so everyone has the same chance to win profits fastest guns in the west get your social media accounts ready to start spreaing the news 2021-03-27 17:30:02+00:00 1.0 1068531379 51 only 2 hours to go the pump at 630pm gmt this evening 2021-03-27 16:34:34+00:00 1.0 1068531379 50 only 3 hours to go the pump at 630pm gmt this evening 2021-03-27 15:27:22+00:00 1.0 1068531379 49 only 5 hours to go until the pump at 630pm gmt this evening 2021-03-27 13:30:01+00:00 1.0 1068531379 48 were pumping today 8 hours to go until the pump exchange binance com international date 27thmarch2021 saturday ⏰ time 630pm gmt only 8 hours until the pump this evening at 630pm gmt make sure you have registered your binancecom account and have btc ready for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get your buy orders in every time the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice then please practice on binance we want absolutely every member of our group to win share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members ccps team ❤️ ❤️ ❤️ 2021-03-27 10:35:39+00:00 1.0 1068531379 47 pump announcement only a couple more days to go until the pump exchange binance com international date 27thmarch2021 saturday ⏰ time 630pm gmt only a couple more days until the pump this saturday evening at 630pm gmt make sure you have registered your binancecom account and have btc ready share share this telegram channel with all your crypto and pumping friends the more members involved the great the potential profits for members we have built a collaboration of likeminded pump groups on discord with over 20k combined members our pump is scheduled as not to overlap with another other pump group and therefore more members will be able to participate in the pump we can guarantee that there will be no prepump since we ccps are responsible for choosing and announcing the coin therefore no chance for it to leak out instructions on how us citizens may register their binance international accounts are found on our discord server in the channel called “usacitizenstutorial” use the discord link below ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins if you have not yet joined us on discord please join now joining us on discord takes only a few minutes our discord server share our telegram link with your friends and anyone interested in joining our pump ccps team ❤️ ❤️ ❤️ 2021-03-25 09:38:12+00:00 1.0 1068531379 46 pump announcement details of the up and coming pump exchange binance com international date 27thmarch2021 saturday ⏰ time 630pm gmt we have built a collaboration of likeminded pump groups on discord with over 20k combined members no doubt this number will grow further here on telegram and discord along with attracting additional pump groups to join our merry band we can guarantee that there will be no prepump since we ccps are responsible for choosing and announcing the coin therefore no chance for it to leak out we will use binance com for the pump if you do not currently have a binance international account please use this link to register yours instructions on how us citizens may register their binance international accounts are found on our discord server in the channel called “usacitizenstutorial” use the discord link below ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins if you have not yet joined us on discord please join now joining us on discord takes only a few minutes our discord server share our telegram link with your friends and anyone interested in joining our pump ccps team ❤️ ❤️ ❤️ 2021-03-19 14:39:48+00:00 1.0 1068531379 43 pump postponement details of the up and coming pump exchange binance com international date 7thmarch2021 sunday ⏰ time 7pm gmt postponed it is with a heavy heart to have to announce that tonights pump will be postponed until next weekend the reason for the postponement is due to not being able to confirm 2k active users on discord for a pump to be successful there needs to be a particular volume of pumpers for liquidity reasons and we are not prepared to take a chance with our members safety and lose their goodwill if you have not yet joined us on discord please take a moment to join now joining us on discord takes only a few minutes this way we can ensure that we can accurately track engaged members and ensure a viable pump here is the discord invite to our server ❤️always remember that we are the only pump group with no prepump before the signal its the fairest pump online today ❤️ also to keep you guys in the loop we admins are working hard to attract new members all the time you can help by sharing our links with all your pump friends on social media facebook twitter etc links to share discord telegram the ccps team❤️ 2021-03-07 18:09:16+00:00 1.0 1068531379 42 9 hours to go to the pump 9 hours to go to our pump on sunday the 7th of march at 700pm please take a moment to share this telegram link with all your pump friends the more people involved in the pump this evening which means higher the potential profits for you this will be a free for all pump with no ranking and of course no prepump everyone stands the same chance of profiting from the pump if you have not yet joined us on discord please join now joining us on discord takes only a few minutes important notice before we pump we have to gather a minimum of 2000 active members on discord this way we can guarantee the best pump possible for you and maximum profits please take a moment to join us on our discord channel it only takes a few moments to create a discord account and worth it since you may can chat with other group members and the admins if we are unable to confirm a minimum number of active users on discord that are ready to pump then it will be postponded for a later date ❤️ this is for our members safety ❤️ so please continue to share this telegram channel and discord link with all your pump friends on social media facebook twitter etc links to share discord telegram chat with you guys soon ccps team ❤️ ❤️ ❤️ 2021-03-07 09:59:53+00:00 1.0 1068531379 41 2 days to go to the pump two days to go to our pump on sunday the 7th of march at 700pm please take a moment to share this telegram link with all your pump friends the more people involved in the pump on sunday means higher the potential profits for you this will be a free for all pump with no ranking and of course no prepump everyone stands the same chance of profiting from the pump if you have not yet joined us on discord please join now joining us on discord takes only a few minutes before we pump we have to gather a minimum of 2000 active members on discord this way we can guarantee the best pump possible for you and maximum profits please take a moment to join us on our discord channel over on discord you can chat with other group members and the admins it only takes a few moments to create a discord account and worth it or alternatively if you dont have discord yet and you want to chat ask questions and discuss crypto matters with other group members as well as the group admins we have a telegram chat group here chat with you guys soon ccps team ❤️ ❤️ ❤️ note if we are unable to confirm a minimum number of active users on discord that are ready to pump then it will be postponded for a later date this is for our members safety 2021-03-05 12:10:53+00:00 1.0 1068531379 40 3 days to go to the pump three days to go to our pump on sunday the 7th of march at 700pm please take a moment to share this telegram link with all your pump friends the more people involved in the pump on sunday means higher the potential profits for you this will be a free for all pump with no ranking and of course no prepump everyone stands the same chance of profiting from the pump if you have not yet joined us on discord please join now joining us on discord takes only a few minutes before we pump we have to gather a minimum of 2000 active members on discord this way we can guarantee the best pump possible for you and maximum profits please take a moment to join us on our discord channel over on discord you can chat with other group members and the admins it only takes a few moments to create a discord account and worth it or alternatively if you dont have discord yet and you want to chat ask questions and discuss crypto matters with other group members as well as the group admins we have a telegram chat group here chat with you guys soon ccps team ❤️ ❤️ ❤️ note if we are unable to confirm a minimum number of active users on discord that are ready to pump then it will be postponded for a later date this is for our members safety 2021-03-04 09:31:46+00:00 1.0 1068531379 36 pump announcement details of the up and coming pump exchange binance com international date 7thmarch2021 sunday ⏰ time 7pm gmt if you have not yet joined us on discord please join now joining us on discord takes only a few minutes before we pump we have to gather a minimum of 2000 active members on discord this way we can guarantee the best pump possible for you and maximum profits remember with our group there is no prepump before the signal its the fairest pump online today we will use binance com for the pump if you do not currently have a binance international account please use this link to register yours instructions on how us citizens may register their binance international accounts are found on our discord server in the channel called “usacitizenstutorial” use the discord link below ❤️please join this telegram channel and join us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins our discord server see you all on the discord ccps team ❤️ ❤️ ❤️ 2021-02-28 20:39:29+00:00 1.0 1068531379 31 pump announcement details of the up and coming pump exchange binance com international date 27feb2021 saturday ⏰ time 7pm gmt we guarantee no prepump before the signal its the fairest pump online today if you do not currently have a binance international account please use this link to register yours instructions on how us citizens may register their binance international accounts are found on our discord server in the channel called “usacitizenstutorial” use the discord link below ❤️please join this telegram channel and visit us on our discord server for further updates and conditions regarding this pump and also to chat with other members and group admins our discord server see you all on the discord ccps team ❤️ ❤️ ❤️ 2021-02-21 09:08:30+00:00 1.0 1068531379 28 transparent pumps an update on our plans going forward during our pumps we are planning on recording the pumps from our admins screen this way our members can watch the recording of the pumped coin which will be made available on our discord server after the pump so they can see the coin before during and after the pump being able to observe the coin during the pump process we hope displays transparency for our members to show that the group admins are not buying the coin before the pump which is the case with all other pump groups as we move forward we will develop additional tools and processes to demonstrate transparency for the time being this is the most effective way of demonstrating transparency more details to follow on our discord server please join us on our discord server here ccps team ❤️❤️❤️ 2021-02-12 15:46:38+00:00 1.0 1068531379 19 diamond hands looks like those who held onto their doge after the dip last week are being rewarded today with a nice increase in price other big rises in uma going up 146 in 24hour volume and lit increasing its volume by 1400 when brd is not the word those of you who have your ears to the ground will probably have seen the scandal with the coin brd which was pumped yesterday by another signals group the pump was a total flop and many people suffered huge losses due to most part the coin had been most probably prebought in huge amounts by the group admins and their friends they got greedy and their members paid dearly as we have posted previously we will never prebuy any coins that we signal its more fun for all if its a free for all the fastest guns in the west ⚒ccps discord server our discord server is almost ready we will post a link here so that you may join the private group which is reserved for the first 500 members on telegram where you will enjoy special privileges so please take the time to invite your friends to join this telegram group so the may also benefit as always we wish you a great day ccps team ❤️❤️❤️ 2021-02-04 09:11:34+00:00 1.0 1068531379 18 we throw straight dice unlike other signal pump groups we will not prebuy any coins before the coin signal is issued we believe prebuying is dishonest and underhanded we want all our members to have a fair chance of making a profit from their trades our promise to you is that when we issue the coin buy signal during our open free for all trade signals it will be just that a free for all so once again unlike other signal groups where the group admins prebuy the coins to offload them at a huge profit on to their members we wont if you are wondering how we profit well simple all we ask is if you do not have a binance account that you use our affiliate link below to register your account ccps team ❤️❤️❤️ 2021-02-03 20:03:14+00:00 1.0 1115904838 35342 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:03+00:00 1.0 1115904838 35316 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:04+00:00 1.0 1115904838 35314 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:04+00:00 1.0 1115904838 35313 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:05+00:00 1.0 1115904838 35312 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:05+00:00 1.0 1115904838 35311 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:05+00:00 1.0 1115904838 35310 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:05+00:00 1.0 1115904838 35309 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:05+00:00 1.0 1115904838 35308 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:09+00:00 1.0 1115904838 35307 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:05+00:00 1.0 1115904838 35306 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:05+00:00 1.0 1115904838 35305 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:05+00:00 1.0 1115904838 35304 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:04+00:00 1.0 1115904838 35303 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:05+00:00 1.0 1115904838 35302 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:04+00:00 1.0 1115904838 35301 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:04+00:00 1.0 1115904838 35292 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:06+00:00 1.0 1115904838 35290 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:42+00:00 1.0 1115904838 35286 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:47+00:00 1.0 1115904838 35282 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:12+00:00 1.0 1115904838 35278 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:06+00:00 1.0 1115904838 35276 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:05+00:00 1.0 1115904838 35275 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:04+00:00 1.0 1115904838 35274 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:13+00:00 1.0 1115904838 35273 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:34+00:00 1.0 1115904838 35271 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:07+00:00 1.0 1115904838 35270 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:05+00:00 1.0 1115904838 35268 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:03+00:00 1.0 1115904838 35266 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:03+00:00 1.0 1115904838 35265 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:03+00:00 1.0 1115904838 35264 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:05+00:00 1.0 1115904838 35263 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:03+00:00 1.0 1115904838 35262 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:03+00:00 1.0 1115904838 35261 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:04+00:00 1.0 1115904838 35259 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:03+00:00 1.0 1115904838 35258 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:03+00:00 1.0 1115904838 35257 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:03+00:00 1.0 1115904838 35256 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:03+00:00 1.0 1115904838 35255 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:02+00:00 1.0 1115904838 35254 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:02+00:00 1.0 1115904838 35253 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:01+00:00 1.0 1115904838 35251 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:02+00:00 1.0 1115904838 35250 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:49+00:00 1.0 1115904838 35249 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:01+00:00 1.0 1115904838 35248 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:56+00:00 1.0 1115904838 35245 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:00+00:00 1.0 1115904838 35243 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:01+00:00 1.0 1115904838 35241 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:01+00:00 1.0 1115904838 35240 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:01+00:00 1.0 1115904838 35239 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:16+00:00 1.0 1115904838 35238 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:07+00:00 1.0 1115904838 35236 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:06+00:00 1.0 1115904838 35233 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:00+00:00 1.0 1115904838 35231 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:00+00:00 1.0 1115904838 35230 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:01+00:00 1.0 1115904838 35228 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:02+00:00 1.0 1115904838 35227 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:01+00:00 1.0 1115904838 35226 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:01+00:00 1.0 1115904838 35225 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:01+00:00 1.0 1115904838 35224 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:01+00:00 1.0 1115904838 35223 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:01+00:00 1.0 1115904838 35222 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:01+00:00 1.0 1115904838 35221 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:01+00:00 1.0 1115904838 35220 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:01+00:00 1.0 1115904838 35219 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:01+00:00 1.0 1115904838 35218 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:06+00:00 1.0 1115904838 35217 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:01+00:00 1.0 1115904838 35216 binance pump reminder ⏰ date friday 03 april 1800 gmt exchange binance binance us register if you havent yet please read the available help channels on discord and learn the tips of pumping you will want to know how to buy fast to maximize your profit and as always if you have questions just ask ❗️things you need to do before the pump 1 register on binancecom or the app 2 deposit bitcoin onto your account 3 watch here for the pump signal friday at 1800 gmt 4 follow the given advice or use your best judgement and profit huge 2020-04-01 19:42:23+00:00 1.0 1115904838 35215 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:19+00:00 1.0 1115904838 35213 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:09+00:00 1.0 1115904838 35211 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-31 14:45:56+00:00 1.0 1115904838 35102 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:57:04+00:00 1.0 1115904838 35019 alright folks here is another rock bottom whale signal details this signal will come on 24nd mar at 400 pm gmt alts are going good as btc is stable above 65k keep the date and time in mind mar 24 | 400 pm gmt today 2020-03-24 04:21:05+00:00 1.0 1115904838 34894 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours left 400pm1600 gmt 2020-03-19 14:10:30+00:00 1.0 1115904838 34649 cvc looks similar to poly ☝️ dont forget the risk here is only 1 while you can get easy 15 20 profits is breakingout now time to pump it must buy 2020-03-07 15:08:15+00:00 1.0 1115904838 34471 boomcoin snm is boom coin buy 132136 satoshi sell 141|147|155|162 ✅ daily chart looks bullish ✅ bullish rsi ✅ price attempting for a breakout ✅ pump is expected here must buy hold ❇️ for huge gains 2020-02-29 11:14:37+00:00 1.0 1115904838 33736 poe on binance ‼️ ❇️ heavy volume spike has been seen more than 5x ❇️ pump is expected very soon buy hold buy 25 satoshi sell 26 | 27 | 28 2019-12-17 13:07:38+00:00 1.0 1115904838 33589 there will be strong technical analysis signal coming today watch out stay online today between 330 pm gmt 430 pm gmt massive fomo will appear and will be on top of binance target is 80 100 2019-12-04 09:24:51+00:00 1.0 1115904838 33529 btc pump ❇️ xbtusd unusual buying activity 163m usd in 7 minutes bitmex 2019-11-27 18:31:37+00:00 1.0 1115904838 33093 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:34:09+00:00 1.0 1115904838 33049 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:07+00:00 1.0 1115904838 33032 ❇ its about the push hodl signal ❇ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 06:57:58+00:00 1.0 1115904838 33002 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:11:14+00:00 1.0 1115904838 32884 ❇️ next post b00m c0in easy 1020 profit in few minutes keep your funds ready for boom coin 2019-10-13 10:00:51+00:00 1.0 1115904838 32700 ❇️ next post b00m c0in easy 1045 profit in few minutes keep your funds ready for boom coin 2019-10-08 10:18:19+00:00 1.0 1115904838 32698 steem on binance accumulation is going on breaking out this zone would bring it to pump buy 1670 1767 satoshi sell 18802080220024002660 stoploss 7 2019-10-08 09:53:36+00:00 1.0 1115904838 32687 ❇️ next post b00m c0in easy 2045 profit in few minutes keep your funds ready for boom coin 2019-10-07 11:10:43+00:00 1.0 1115904838 32655 ❇️ next post b00m c0in easy 2045 profit in few minutes keep your funds ready for boom coin 2019-10-06 14:10:21+00:00 1.0 1115904838 32236 coin name ongbtc exchange binance 2019-09-19 17:00:30+00:00 1.0 1115904838 32235 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:54+00:00 1.0 1115904838 32231 ready to join the global hodl team well you must be were sure that the global fomo will enter in our most waited binanceblastingsignal cheers only 4 hours 15 minutes left 2019-09-19 12:43:32+00:00 1.0 1115904838 32141 oax on binance looks like accumulation is going on ❇️ breaking out would result it to pump buy 660708 satoshi buy in parts sell 760 | 800 | 880 | 1000 | 1200 buy hold it 2019-09-11 12:01:38+00:00 1.0 1115904838 31941 next post will be coin name log in binance ‼️ 2019-08-22 15:57:40+00:00 1.0 1115904838 31940 5mins more to go we gonna reveal the name of our pump coin its your time to make huge profits within few minutes kind request ✅ plz dont put a sell bid instantly after buying ✅ buy hold for lil time sell at market price your sell bid will restrict our coin to pump more more 2019-08-22 15:54:22+00:00 1.0 1115904838 31932 only 6hrs left for the pump we expect huge from this pump since alts market is green btc is stable lets moon today 2019-08-22 10:01:48+00:00 1.0 1115904838 31926 hey folks since btc has steped down alts are climbing up we expect huge pump this time be ready with your btc lets kill it 2019-08-21 18:45:12+00:00 1.0 1115904838 31922 pump announcement hey folks the next pump is scheduled on 22 august 2019 time 4 pm gmt exchange binance lets make it huge 2019-08-21 16:31:09+00:00 1.0 1115904838 31870 login binance ‼️ next post would be coin name 2019-08-19 15:58:31+00:00 1.0 1115904838 31869 10 mins more we gonna reveal the name of our pump coin its your opportunity kind request plz dont put a sell bid instantly after buying buy hold for lil time sell at market price your sell bid will restrict our coin to pump more more 2019-08-19 15:50:03+00:00 1.0 1115904838 31867 be ready guys just 1 hour is left its time to make heavy profits ✅ the pump is free for all the coin will be shared based on ta news factor ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well share it with your friends other crypto groups let the hype spread ‼️ 2019-08-19 15:00:05+00:00 1.0 1115904838 31844 pump announcement date august 19th ⏱ time 4 pm gmt 930 pm ist exchange hey subs ‼️ we our partners we are going to schedule a pump on binance this pump is free for all no one would receive the coin name earlier not even our vips ie no prepump all will get the coin name on same time collectively we gonna held this pump with other 200k members we expect it to go as high as possible you just need to buy hold for few minutes exit with heavy profits this fomo be gonna be real 2019-08-18 10:23:56+00:00 1.0 1115904838 31405 mth on binance ‼️ going through accumulation daily chart looks cool can pump anytime buy hold buy around 150 sell 160 | 170 | 176 | 185+ stoploss 140 satoshi 2019-07-20 07:37:01+00:00 1.0 1115904838 30963 dont miss it guys next recommended coin is about to pump soon 2019-06-29 15:31:29+00:00 1.0 1115904838 30486 after this bulky pump of mona on bittrex which mooned for 144 today another coin named ignis got massively pumped for 195 2019-06-07 13:26:36+00:00 1.0 1115904838 30415 sc on binance ‼️ accumulate some sia coin here at live price hold sc is having a strong support 40 satoshi it needs to breakout 43 satoshi mark for a pump buy 4140 sell targets 43 | 45 | 47 chart 2019-06-02 17:36:56+00:00 1.0 1115904838 29840 elf on binance ‼️ elf is having an awesome bouncing support available at 4150 satoshi from where it has bounced 4 times earlier once it breaksout it will pump harder best buy 4150 satoshi selling targets 5 | 10 | 15 2019-03-22 05:35:46+00:00 1.0 1115904838 29631 boom guys ‼️ nxs heading towards moon but at first we need to breakout the wall of 11000 satoshi fresh money is entering in nxs as you can see the volume is rapidly increasing lets go guys once its broken a healthy pump is expected grab it at any rate below this resistance 11000 satoshi and hold till news date for big profit 2019-03-12 15:50:36+00:00 1.0 1115904838 29307 alright guys wait is over our binance titanic signal is here for you the coin name is grs 2019-03-05 16:30:15+00:00 1.0 1115904838 29237 bear or bull doesnt matter we have already seen what happened in the last binancetitanicsignal almost 1400 btc in an hour in volume our recent binancetitanicsignal results 1st bnt around 85 2nd storj around 102 3rd lets join and lead the global fomo again the wait will be over on 5th march at 430pm gmt cheers 2019-03-04 14:45:13+00:00 1.0 1115904838 29034 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ 2019-03-01 09:11:48+00:00 1.0 1115904838 28199 ✅ mega signal ✅ exchange binance date 26012019 time 15 gmt wabi 80 wings 75 oax 200 ost 55 rdn 50 we are expecting more this time be ready with your funds 2019-01-26 09:12:31+00:00 1.0 1115904838 28126 ✅ mega signal ✅ exchange binance date 23012019 time 14 gmt wabi 80 wings 84 oax 200 ost 55 we are expecting more this time be ready with your funds 2019-01-23 10:22:44+00:00 1.0 1115904838 28050 fomo coin update good days 10 minutes left mega signal be ready with your btc on binance 2019-01-20 13:51:13+00:00 1.0 1115904838 28036 ✅ mega signal ✅ exchange binance date 20012019 time 14 gmt wabi 80 wings 75 oax 90 we are expecting more this time be ready with your funds 2019-01-20 09:46:05+00:00 1.0 1115904838 24881 buy key again between 8688 satoshi this support looks awesome for a pump ‼️ 2018-09-06 04:47:08+00:00 1.0 1115904838 18094 guys pay attention special call dont miss chance to recover your loss we are going to share a strong coin with strong technical and fundamentals analysis remember to transfer funds to bittrex and pinunmute our channel you can buy and hold that particular coin till the target gets achieved alts season has arrived so every alt coin is pumping and you need to buy them at bottom and hold for bigger gains date 21 04 2018 ⏳ time 2pm gmt time 730 ist ⚖️ exchange bittrex participants 250000 transfer some btc to bittrex be ready at 2pm gmt730 ist 2018-04-20 13:41:33+00:00 1.0 1115904838 15745 next post will be coin name and link dont move stay tuned 2018-03-26 15:59:05+00:00 1.0 1115904838 15743 dear members 10 minutes left till the pump last binance pump was a big success lets make this one as big as last time the reason why last pump was so succesful people did hold the coin and did not dump after a few seconds people kept riding the waves if enough people hodl and we wait long enough to get outsiders in it will be a great pump and the payout for the hodlers will be a lot higher never panic sell just wait and ride the wavesboys 2018-03-26 15:50:48+00:00 1.0 1115904838 15742 15 mins before mega pump ready your bags to fly binance 2018-03-26 15:44:54+00:00 1.0 1115904838 15735 1 hours left to our pump stay tuned check the countdown here 2018-03-26 15:02:45+00:00 1.0 1115904838 15721 3 hours left to our pump check the countdown here 2018-03-26 12:56:53+00:00 1.0 1115904838 15719 7 hours left to mega pump stay tuned 2018-03-26 12:56:44+00:00 1.0 1115904838 15531 coin pump is snm buy snm now it will moon 50 2018-03-24 13:00:05+00:00 1.0 1115904838 11509 coin tnt buy around 17001750 target 1850 1900 1950 stop loss 1600 exchange binance looks like may pump at any time buy now in dip 2018-02-12 18:19:15+00:00 1.0 1115904838 9586 today we have big signal on binance with chart and analysis which can give u 2x to 3x profit in coming days time around 230 pm gmt to 330 pm gmt coin will be posted anytime here stay tuned here with ur binance 2018-01-26 14:06:21+00:00 1.0 1115904838 9371 now 10 min left for our big signal in binance login ur binance now stay tuned here next post will be coin 2018-01-25 14:15:07+00:00 1.0 1115904838 9336 today we have big signal on binance with chart and analysis which can give u 2x to 3x profit in coming days time around 2 pm gmt to 3 pm gmt coin will be posted anytime here stay tuned here with ur binance 2018-01-25 10:51:24+00:00 1.0 1115904838 8992 today we have big signal on bittrex with chart and analysis which can give u 2x to 3x profit in coming days time around 2 pm gmt to 3 pm gmt coin will be posted anytime here stay tuned here with ur bittrex 2018-01-23 11:47:17+00:00 1.0 1115904838 5488 now only 5 minute left login ur bittrex now next post will be coin 2017-12-27 14:56:24+00:00 1.0 1115904838 4874 coin name brx exchange bittrex target 1 10000 target 2 12000 target 3 15000 brx 2017-12-21 13:05:04+00:00 1.0 1115904838 4851 guyz as market is in uptrend we are going to share our expert reveal signal with strong ta and news which can give you 2x to 3x profit exchange bittrex time 100pm gmt 630pm ist pin our channel on top stay tuned 2017-12-21 10:19:54+00:00 1.0 1115904838 4640 coin name aur exchange bittrex target1 10000 target210300 target 3 11000 aur 2017-12-19 19:17:44+00:00 1.0 1115904838 4638 next post will be coin name stay tuned 2017-12-19 19:15:41+00:00 1.0 1115904838 4286 coin name incnt exchange bittrex target1 2000 target2 2200 target3 2500 incnt 2017-12-17 10:27:49+00:00 1.0 1115904838 4143 buy enrg put buy bid 690720 sell780820850 stoploss 650 this is a low volume coin so may pump at any time put sell bid after buying 2017-12-16 10:24:56+00:00 1.0 1115904838 4011 be ready guys today will be the most profitable day for us today we will share a coin with strong news and chart basis buy and hold it for 2x to 3x profit for the convenient for you guys we have decided the time 13 gmt 630 ist so you can manage your time and be prepared with some spared btc stay tuned 2017-12-14 11:12:44+00:00 1.0 1115904838 3998 coin name legends lgd exchange bittrex target1 7500 target2 9000 target3 12000 lgd 2017-12-13 21:40:41+00:00 1.0 1115904838 3924 today we are going to annouce strong signal at 13 gmt can give huge profit stay tuned 2017-12-12 10:31:18+00:00 1.0 1115904838 3605 coin name bitswift swift exchange bittrex target1 15000 target2 17000 target3 19000 swift 2017-12-07 11:26:01+00:00 1.0 1115904838 1812 coin name gamecredits buy fast goo guys 2017-10-24 11:48:21+00:00 1.0 1115904838 1781 coin name crb buy fast 2017-10-24 11:06:24+00:00 1.0 1115904838 1738 guys i have more then 24 pump coin list which can blast back to back but i dont join any more today now im going hospital see you soon 2017-10-24 02:53:46+00:00 1.0 1115904838 1733 coin name brx going pump seel it whit huge profit 2017-10-24 02:36:40+00:00 1.0 1115904838 1731 coin name brk going pump seel it whit huge profit 2017-10-24 02:35:06+00:00 1.0 1115904838 1727 all your pump coin t guys which​ i have post it here you u bought it 2017-10-24 02:17:12+00:00 1.0 1115904838 1725 coin name lun going on bullet pump 2017-10-24 02:09:07+00:00 1.0 1115904838 1724 coin name dope going on pump 2017-10-24 02:07:23+00:00 1.0 1115904838 1701 expert bhai trade start coin name dope buy fast dont misss goood news coming 2017-10-24 00:48:44+00:00 1.0 1115904838 1666 coin name lun buy fast 2017-10-23 19:25:18+00:00 1.0 1115904838 1632 coin name gup buy fast hod dont sell for little profit big new commmming 2017-10-23 08:20:02+00:00 1.0 1115904838 1619 coin name gnt buy fast it will go moon soon big news comming 2017-10-23 04:56:10+00:00 1.0 1115904838 1564 this is not pump dump coin hold it expertbhai 2017-10-22 20:16:46+00:00 1.0 1115904838 1510 coin name zen buy fast 2017-10-22 09:52:05+00:00 1.0 1115904838 1502 we take that advantage of pump we are more over smart then pump man so i take opening challenge of pump so you are lot huge earning profit like never before im smart more then other trader i can analyse any of coin in 1 minutes if we dont get profit we never loss but will be must be 45 profit but never can be loss in my channel expertbhai keep share our channel 2017-10-22 09:03:52+00:00 1.0 1115904838 1472 coin name kore buy fast hold it 2017-10-22 01:58:59+00:00 1.0 1115904838 1395 as i told you before post it will​ dump before pump we take that advantage of dump we are more over smart then pump man so i take opening challenge of pump we gave signal before buying anyone else it go little down after my singal so you are lot huge earning profit like never before im smart more then other trader i can analyse any of coin in 1 minutes if we dont get profit we never loss but will be must be 45 profit but never can be loss in my channel expertbhai keep share our channel 2017-10-21 13:20:32+00:00 1.0 1115904838 1315 today zen huge rocket pumped done i hope you enjoyed this ride i post 2 huge pump coin everyday which will blasting in 2 minutes can give upto 2040 profit i only provide strong signalno chance of lossthere is only profit and profit and it is not just profit it is quick profit within mins keep participate if you can buy and sell fast if you got profit please share our channel expertbhai 2017-10-21 04:07:11+00:00 1.0 1115904838 1300 we take that advantage of dump we are more over smart then pump man so i take opening challenge of pump we gave signal before buying anyone else it go little down after my singal so you are lot huge earning profit like never before im smart more then other trader i can analyse any of coin in 1 minutes if we dont get profit we never loss but will be must be 45 profit but never can be loss in my channel expertbhai keep share our channel 2017-10-21 03:02:52+00:00 1.0 1115904838 1235 as i told you before post it will​ dump before pump we take that advantage of dump we are more over smart then pump man so i take opening challenge of pump we gave signal before buying anyone else it go little down after my singal so you are lot huge earning profit like never before im smart more then other trader i can analyse any of coin in 1 minutes if we dont get profit we never loss but will be must be 45 profit but never can be loss in my channel expertbhai keep share our channel 2017-10-20 12:23:02+00:00 1.0 1115904838 1220 this pump like trust coin ❤️ 2017-10-20 10:32:16+00:00 1.0 1115904838 1205 strong huge pump signal comming soon yes i will buy and get huge profit like trustcoin – 12 60 i dont have btc – 8 40 20 people voted so far 2017-10-20 09:42:51+00:00 1.0 1115904838 1200 selll trust coin pump now end 2017-10-20 08:29:16+00:00 1.0 1115904838 1178 trust coin going pump like bullet 2017-10-20 06:15:16+00:00 1.0 1115904838 1161 dont miss it its hold pump like pkb coin 2017-10-20 05:03:22+00:00 1.0 1115904838 1160 trust coin pump like bullet pump 2017-10-20 05:03:05+00:00 1.0 1115904838 880 trust coin will pump any time buy now bittrex 2017-10-18 04:17:42+00:00 1.0 1115904838 873 ftc was pumped over 20 today next pump 1600 gmt bittrex 2017-10-17 17:20:58+00:00 1.0 1115904838 665 pump tomorrow time 1600 gmt exchange bittrex profit goal 35 we did 31 on xvc yesterday and 34 on bta today pump tomorrow 2017-10-11 17:31:44+00:00 1.0 1115904838 638 super vip signal 10 minutes to go exchange bittrex next message will be coin link dont keep sell walls its not pump dump +vip+signalfontcursive 2017-10-11 13:53:58+00:00 1.0 1115904838 626 hello members biggest vip signal of october is going to happen soon everyone be ready to join it the coin will go upto the moon ❌it is not pump or dump ↗ so sell some alts keep your btc ready in bittrex multiply your wallet x2 x5 with a number greater than 1 ✅ taking calculated risk will make you achieve tons best of luck 2017-10-11 05:19:35+00:00 1.0 1115904838 620 upcoming pump time 1600 gmt exchange bittrex profit goal 30 we just did 31 on xvc coin father pumps upcoming pump 2017-10-11 02:05:26+00:00 1.0 1115904838 618 ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ alert strong signal is now ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ exchange bittrex coin part btc buy to market dont sell it is a hold not pump our hold is from some hours to maximum 15 days 2017-10-11 02:00:09+00:00 1.0 1115904838 617 ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ next strong signal in 10 minutes ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ 2017-10-11 01:50:03+00:00 1.0 1115904838 608 today we have strong signal we dont make pump and dump because we are strong signals you can see the counter here signal10october2017countdownclock 2017-10-10 17:07:22+00:00 1.0 1115904838 601 pump now coin xvc btc exchange bittrex profit goal 30 go go go xvc pump now 2017-10-10 16:01:09+00:00 1.0 1115904838 600 pump now coin xvc btc exchange bittrex profit goal 30 go go go xvc pump now 2017-10-10 16:00:56+00:00 1.0 1115904838 467 ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ alert strong signal is now ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ exchange bittrex coin lsk btc buy to market dont sell it is a hold not pump our hold is from some hours to maximum 15 days ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ alerta strong signal es ya ⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️ exchange bittrex moneda lsk btc comprar a mercado no vender es una señal no un pump nuestro hold es desde horas hasta máximo 15 dias 2017-10-06 19:03:31+00:00 1.0 1115904838 397 super hodl will be in 15 minutes at 0200 pm gmt 0730 pm ist exchange bittrex login in your bittrex sell your alts prepare your btc to go high 2017-10-05 13:45:14+00:00 1.0 1115904838 132 vip hodl ☪️☪️☪️☪️☪️ rules for vip hodl buy immediately after coin announced and hold for 10 minit will take 10 min to reach on peak then you can book profit it is highly recommend for all specially who are not so fast be ready for huge profit time ➖ 16h gmt date ➖ 25092017 exchange ➖ bittrex investment length short ⏰ timer +hodlfontcursive 2017-09-25 03:46:49+00:00 1.0 1115904838 121 ⏰ 1h left ⏰ vip hodl ☪️☪️☪️☪️☪️ rules for vip hodl buy immediately after coin announced and hold for some time it is highly recommend for all specially who are not so fast be ready for huge profit time ➖ 16h gmt date ➖ 24092017 exchange ➖ bittrex investment length short ⏰ timer +fontcursive 2017-09-24 15:08:01+00:00 1.0 1348881342 4399 rebuy some dexe at 25 place strong buy order at 23 will pump towards 100 2021-04-08 22:15:29+00:00 1.0 1348881342 4164 join vip to accumulate next pump coin with advantage❗️ 2020-08-29 21:02:02+00:00 1.0 1348881342 4155 pump alert❗️ coin name tfuel buy below 79 targets 105 120 135 2020-08-16 20:30:34+00:00 1.0 1348881342 4151 pump alert❗️ coin name wrx buy below 1090 targets 1200 1350 1500 2020-08-13 17:48:49+00:00 1.0 1348881342 4135 pump alert❗️ coin name stpt time frame 12 weeks 2020-07-18 18:45:19+00:00 1.0 1348881342 4133 pump coin name has been posted on vip channel this time only 2020-07-17 16:09:23+00:00 1.0 1348881342 4132 pump alert❗️ coin name poa buy at 156 targets 166 172 178 2020-07-17 16:08:31+00:00 1.0 1348881342 4128 pump scheduled date 17th july ⏱ time 400 pm gmt exchange binance 2020-07-15 21:36:34+00:00 1.0 1348881342 4123 pump coin name snm 2020-07-13 15:55:03+00:00 1.0 1348881342 4113 pump scheduled date 13th july ⏱ time 400 pm gmt exchange binance 2020-07-07 21:05:14+00:00 1.0 1348881342 4103 pump alert❗️ coin name rvn buy at 202 sats targets 230 240 250 2020-07-04 18:50:16+00:00 1.0 1348881342 4096 pump alert❗️ coin name tct buy at 69 sats targets 76 80 84 2020-07-02 16:11:30+00:00 1.0 1348881342 4095 pump coin name tct 2020-07-02 15:55:53+00:00 1.0 1348881342 4094 pump coin name coming soon❗️ 2020-07-02 14:24:44+00:00 1.0 1348881342 4092 pump scheduled date 2nd july ⏱ time 400 430 pm gmt exchange binance 2020-07-01 21:05:31+00:00 1.0 1348881342 4052 pump alert❗️ coin name iotx buy at 57 sats targets 62 66 70 2020-06-18 16:30:41+00:00 1.0 1348881342 4049 pump alert❗️ coin name evx accumulate below 2430 targets 2600 2900 3200 2020-06-16 10:14:29+00:00 1.0 1348881342 4045 next pump coin has been already released on vip channel 2020-06-15 17:05:08+00:00 1.0 1348881342 4043 next pump coin will be released on vip channel soon 2020-06-14 22:08:48+00:00 1.0 1348881342 4015 next post will be coin name 2020-06-06 17:55:04+00:00 1.0 1348881342 4001 pump alert❗️ date 5th june ⏱ time 1800 pm gmt exchange binance 2020-06-03 20:57:52+00:00 1.0 1348881342 3989 next pump coin is gto this coin is actually supported by some whales and we expect a huge pump on it do not buy market right now just split your buy orders between 7376 targets are 95 118 140 150 2020-05-27 10:35:17+00:00 1.0 1348881342 3987 next pump coin has been already released on vip channel it will be forwarded here soon 2020-05-26 17:58:59+00:00 1.0 1348881342 3983 pump coin is yoyo as you can see alts are growing nicely this days we now pick this coin which is about to breakout make sure to grab some we will push it in the next 24 hours actual price 99 main target 120 2020-05-25 17:30:11+00:00 1.0 1348881342 3982 new pump signal in 2 hours❗️ will be posted first on vip channel as we do always 2020-05-25 14:56:48+00:00 1.0 1348881342 3976 pump alert❗️ coin name rvn actual price 210 targets 230 250 270 2020-05-23 23:09:17+00:00 1.0 1348881342 3964 this pump has not been good bad coin chosen we will work hard to bring you the best coin for the next pump sorry for inconvenience 2020-05-12 17:14:35+00:00 1.0 1348881342 3962 next post will be coin name 2020-05-12 16:33:46+00:00 1.0 1348881342 3957 next pump scheduled❗️ date 12th may ⏱ time 1700 pm gmt exchange binance 2020-05-11 14:09:58+00:00 1.0 1348881342 3947 next post will be coin name 2020-05-10 15:50:24+00:00 1.0 1348881342 3939 heavy pump alert❗️ date 10th may ⏱ time 1700 pm gmt exchange binance 2020-05-07 20:03:17+00:00 1.0 1348881342 3933 pump coin name ppt 2020-05-03 17:29:58+00:00 1.0 1348881342 3932 next post will be coin name 2020-05-03 17:25:08+00:00 1.0 1348881342 3930 ok guys this pump is going to the moon so be ready we will pick a coin with 0 prepump to give same opportunities to everybody 2020-05-03 17:12:11+00:00 1.0 1348881342 3924 this pump will have a simply format we will post random coin on this channel after being posted coins price will start rising in less than a minute buy fast to avoid being late pump targets 10 20 30 coin will be posted on vip channel 5 seconds early lets go to the moon 2020-05-02 21:55:50+00:00 1.0 1348881342 3923 heavy pump alert❗️ date 3rd may ⏱ time 1730 pm gmt exchange binance 2020-05-01 23:01:09+00:00 1.0 1348881342 3905 pump alert❗️ coin name dlt 2020-04-21 16:51:33+00:00 1.0 1348881342 3899 pump coin name rdn 2020-04-21 13:58:54+00:00 1.0 1348881342 3898 next post will be coin name 2020-04-21 13:55:50+00:00 1.0 1348881342 3895 30 minutes for mega pump alert❗️ 2020-04-21 13:30:02+00:00 1.0 1348881342 3894 only 3 hours left for mega pump alert❗️ 2020-04-21 11:00:08+00:00 1.0 1348881342 3893 less than 5 hours left for mega pump alert❗️ 2020-04-21 09:26:07+00:00 1.0 1348881342 3892 only 16 hours left for mega pump alert❗️ 2020-04-20 22:00:47+00:00 1.0 1348881342 3889 pump alert updated❗️ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 00:19:58+00:00 1.0 1348881342 3882 new pump alert❗️ date 19th april ⏱ time 1400 pm gmt exchange binance 2020-04-17 22:15:57+00:00 1.0 1348881342 3871 pump coin name lun 2020-04-17 13:17:58+00:00 1.0 1348881342 3870 pump coin name coming soon 2020-04-17 12:55:40+00:00 1.0 1348881342 3869 few hours left for pump be ready 2020-04-17 11:28:27+00:00 1.0 1348881342 3866 pump coin name has been already released on vip channel 2020-04-16 18:19:56+00:00 1.0 1348881342 3862 new pump alert❗️ date 17th april ⏱ time 1600 pm gmt exchange binance 2020-04-15 19:20:36+00:00 1.0 1348881342 3852 pump coin name nav 2020-04-15 14:45:18+00:00 1.0 1348881342 3851 next post will be coin name 2020-04-15 14:44:37+00:00 1.0 1348881342 3843 heavy pump alert❗️ date 15th april ⏱ time 1600 pm gmt exchange binance 2020-04-13 20:08:04+00:00 1.0 1348881342 3833 pump alert❗️ coin name nebl 2020-04-08 16:17:07+00:00 1.0 1348881342 3831 next pump coin has been already released on vip channel 2020-04-07 23:28:20+00:00 1.0 1348881342 3826 agi can pump more in the next days but now is facing strong resistance around 180 you can hold or sell here next pump coin will be posted soon 2020-04-07 10:19:04+00:00 1.0 1348881342 3818 pump coin name rdn 2020-04-05 12:00:09+00:00 1.0 1348881342 3815 pump alert❗️ date 5th april ⏱ time random exchange binance 2020-04-04 18:27:22+00:00 1.0 1348881342 3811 pump coin name nebl 2020-04-04 16:43:16+00:00 1.0 1348881342 3809 pump alert❗️ we will post coin name here in 48 minutes 2020-04-04 16:12:31+00:00 1.0 1348881342 3803 pump coin name cdt 2020-04-04 12:57:57+00:00 1.0 1348881342 3802 next post will be coin name 2020-04-04 12:56:13+00:00 1.0 1348881342 3799 less than 1 hour left for pump❗️ buy the coin as soon as you get it it will pump nicely 2020-04-04 12:04:22+00:00 1.0 1348881342 3794 pump alert❗️ date 4th april ⏱ time 1300 pm gmt exchange binance 2020-04-03 19:17:08+00:00 1.0 1348881342 3771 pump coin name rlc 2020-03-31 15:16:20+00:00 1.0 1348881342 3770 pump not reached +30 but it was amazing pump lots of vip members asked us to pump again we cannot pump today again but we will post a coin which price will rise in the next hours or even 1 or 2 days it will be posted here as soon as we finish buying it 2020-03-31 15:02:55+00:00 1.0 1348881342 3763 pump coin name nebl 2020-03-31 12:59:58+00:00 1.0 1348881342 3762 next post will be coin name 2020-03-31 12:50:17+00:00 1.0 1348881342 3750 +30 pump alert❗️ date 31th march ⏱ time 1300 pm gmt exchange binance we have worked hard to bring you this opportunity 2020-03-29 19:55:02+00:00 1.0 1348881342 3742 pump alert❗️ date 29th march ⏱ time 1600 pm gmt exchange binance 2020-03-28 22:23:13+00:00 1.0 1348881342 3737 pump alert❗️ coin name pivx 2020-03-28 17:16:59+00:00 1.0 1348881342 3730 pump alert❗️ coin name nebl 2020-03-28 13:11:53+00:00 1.0 1348881342 3729 next pump in about 30 minutes coin name will be posted earlier on vip channel 2020-03-28 13:03:40+00:00 1.0 1348881342 3726 pump alert❗️ coin name evx 2020-03-28 11:37:33+00:00 1.0 1348881342 3713 date 27th march ⏱ time 1600 pm gmt exchange binance 2020-03-26 18:13:32+00:00 1.0 1348881342 3708 pump coin name hc 2020-03-25 16:02:43+00:00 1.0 1348881342 3702 pump coin name nebl 2020-03-24 16:15:07+00:00 1.0 1348881342 3701 pump coin name will be posted here in 1 hour 40 minutes 2020-03-24 14:35:06+00:00 1.0 1348881342 3696 new rules coin name will be posted here on vip channel at 1600 pm gmt then price will start rising slowly so buy it quickly coin name will be forwarded to main channel 15 minutes later price will rise during some minutes more so when you think it is the peak sell it the more experience the more peaks you will catch cryptopumpanalytics 2020-03-23 19:12:55+00:00 1.0 1348881342 3694 next pump scheduled date 24th march ⏱ time 1600 pm gmt exchange binance cryptopumpanalytics 2020-03-23 19:06:29+00:00 1.0 1348881342 3685 next pump scheduled date 23th march ⏱ time 1600 pm gmt exchange binance coin name will be posted on vip channel only cryptopumpanalytics 2020-03-22 21:20:31+00:00 1.0 1348881342 3672 next pump scheduled date 22th march ⏱ time 1600 pm gmt exchange binance coin name will be posted only on vip cryptopumpanalytics 2020-03-20 21:15:32+00:00 1.0 1348881342 3667 pump coin name nebl 2020-03-20 15:59:56+00:00 1.0 1348881342 3666 next post will be the coin name 2020-03-20 15:49:28+00:00 1.0 1348881342 3664 only 1 hour left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-20 15:00:07+00:00 1.0 1348881342 3663 less than 5 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-20 11:27:59+00:00 1.0 1348881342 3660 less than 18 hours left❗ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-19 23:06:02+00:00 1.0 1348881342 3654 next pump scheduled date 20th march ⏱ time 1600 pm gmt exchange binance vip subscribers will get the coin earlier cryptopumpanalytics 2020-03-18 19:07:49+00:00 1.0 1348881342 3648 pump coin name bnt 2020-03-17 15:54:48+00:00 1.0 1348881342 3647 next post will be the coin name 2020-03-17 15:39:00+00:00 1.0 1348881342 3645 only 40 minutes left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-17 15:20:49+00:00 1.0 1348881342 3644 less than 2 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-17 14:06:18+00:00 1.0 1348881342 3641 less than 20 hours left❗ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-16 20:04:13+00:00 1.0 1348881342 3639 next pump scheduled date 17th march ⏱ time 1600 pm gmt exchange binance vip subscribers will get the coin earlier cryptopumpanalytics 2020-03-16 19:19:57+00:00 1.0 1348881342 3632 pump coin name nebl 2020-03-15 20:00:06+00:00 1.0 1348881342 3631 next post will be the coin name 2020-03-15 19:52:00+00:00 1.0 1348881342 3627 less than 1 hour left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-15 19:14:43+00:00 1.0 1348881342 3626 less than 2 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-15 18:04:51+00:00 1.0 1348881342 3625 less than 4 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-15 16:23:52+00:00 1.0 1348881342 3624 only 7 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-15 13:00:59+00:00 1.0 1348881342 3621 less than 24 hours left❗ tomorrow at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win cryptopumpanalytics 2020-03-14 20:49:51+00:00 1.0 1348881342 3617 next pump scheduled date 15th march ⏱ time 2000 pm gmt exchange binance vip subscribers will get the coin earlier cryptopumpanalytics 2020-03-14 16:26:33+00:00 1.0 1348881342 3573 next post will be coin name 2020-03-12 18:59:18+00:00 1.0 1348881342 3570 about 1 hour left for pump❗️ contact cpasupport to know coin name earlier 2020-03-12 17:52:07+00:00 1.0 1348881342 3564 next pump scheduled date 12th march ⏱ time 1900 pm gmt exchange binance coin name will be posted on vip channel before pump cryptopumpanalytics 2020-03-12 13:11:19+00:00 1.0 1348881342 3537 pump coin name brd 2020-03-11 19:55:02+00:00 1.0 1348881342 3535 less than 30 minutes left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time cryptopumpanalytics 2020-03-11 19:31:38+00:00 1.0 1348881342 3533 less than 1 hour left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time cryptopumpanalytics 2020-03-11 19:00:36+00:00 1.0 1348881342 3532 less than 2 hours left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time cryptopumpanalytics 2020-03-11 18:12:35+00:00 1.0 1348881342 3483 next pump scheduled date 11th march ⏱ time 2000 pm gmt exchange binance coin name will be posted on vip channel 10 minutes earlier this time cryptopumpanalytics 2020-03-10 22:24:40+00:00 1.0 1348881342 3444 less than 30 minutes left❗ at 2000 pm gmt a heavy pump will happen coin name will be posted here between 1950 2000 pm gmt randomly make sure to buy the dipped coin before pump time cryptopumpanalytics 2020-03-09 19:22:25+00:00 1.0 1348881342 3443 less than 1 hour left❗ at 2000 pm gmt a heavy pump will happen coin name will be posted here between 1950 2000 pm gmt randomly make sure to buy the dipped coin before pump time cryptopumpanalytics 2020-03-09 19:13:47+00:00 1.0 1348881342 3440 less than 2 hours left❗ at 2000 pm gmt a heavy pump will happen coin name will be posted here between 1950 2000 pm gmt randomly make sure to buy the dipped coin before pump time cryptopumpanalytics 2020-03-09 18:23:43+00:00 1.0 1348881342 3328 next pump scheduled date 9th march ⏱ time 2000 pm gmt exchange binance coin name will be posted on vip channel 15 minutes earlier cryptopumpanalytics 2020-03-07 00:26:51+00:00 1.0 1348881342 3228 next post will be coin name 2020-03-04 18:56:13+00:00 1.0 1348881342 3166 next pump scheduled date 4th march ⏱ time 700 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-03-03 19:55:07+00:00 1.0 1348881342 3016 some of you are actually disappointed with the large number of members on this channel because it causes a quick price pump and leaves back those with slower server connection or lower habilities for the next pump we offer you the chance of using a pump bot in order to read coin name post and place buy order as fast as possible ask cpasupport for further information 2020-02-27 20:59:46+00:00 1.0 1348881342 2997 next post will be coin name 2020-02-27 15:59:14+00:00 1.0 1348881342 2989 next pump scheduled date 27th february ⏱ time 400 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-02-27 12:53:50+00:00 1.0 1348881342 2694 next post will be coin name 2020-02-10 19:57:16+00:00 1.0 1348881342 2684 next pump scheduled date 10th february ⏱ time 800 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-02-10 11:12:50+00:00 1.0 1348881342 2113 next post will be coin name 2020-02-01 12:59:18+00:00 1.0 1348881342 2102 next pump scheduled date 1st february ⏱ time 100 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-01-31 22:08:36+00:00 1.0 1348881342 2053 next pump scheduled date 30th january ⏱ time 700 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-01-27 11:26:05+00:00 1.0 1348881342 2000 next post will be coin name with buy zone short term target 2020-01-21 19:55:29+00:00 1.0 1348881342 1999 this will not be a 1 minute pump it will be in longer time frame coin will reach +20 in no more than 1 hour and 30 minutes 2020-01-21 19:49:04+00:00 1.0 1348881342 1989 next pump scheduled date 21st january ⏱ time 800 pm gmt exchange binance this will be a free for all pump which means that coin name will not be posted on vip channel this time everybody will get the coin at same time cryptopumpanalytics 2020-01-20 16:12:44+00:00 1.0 1348881342 1988 vip members got coin name 15 minutes earlier even if market is not stable today they have been able to make around 2 quick profit as we said you can hold zen as it is on heavy buy zone and main target for this coin still 13600 we will make more profit with tomorrows pump today was not a good day for pump 2020-01-20 13:50:07+00:00 1.0 1348881342 1984 next post will be coin name with buy zone targets 2020-01-20 13:23:16+00:00 1.0 1348881342 1983 pump coin name post will be made in 15 minutes❗️ 2020-01-20 13:15:35+00:00 1.0 1348881342 1980 this pump will be different this time we will take a mid cap coin instead of a low cap this way you can buy sell bigger amounts it will be a longer time period pump as we will push price to top during several minutes cryptopumpanalytics 2020-01-20 11:58:19+00:00 1.0 1348881342 1975 next pump scheduled date 20th january ⏱ time 130 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-01-18 19:39:54+00:00 1.0 1348881342 1974 ❗️pump postponed❗️ we decided to postpone the pump due to bitcoin unstability by now keep your btc as steel while we think about the best moment for pump new pump date will be posted soon cryptopumpanalytics 2020-01-18 19:17:59+00:00 1.0 1348881342 1962 next pump scheduled date 18th january ⏱ time 800 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-01-15 12:31:33+00:00 1.0 1348881342 1946 next post will be coin name 2020-01-12 19:59:33+00:00 1.0 1348881342 1945 pump post will be made in 5 minutes 2020-01-12 19:55:09+00:00 1.0 1348881342 1914 next pump scheduled date 12th january ⏱ time 800 pm gmt exchange binance coin name will be posted on vip channel earlier cryptopumpanalytics 2020-01-09 09:06:26+00:00 1.0 1348881342 1774 vip members got coin name few minutes earlier again 2019-12-29 14:57:57+00:00 1.0 1348881342 1766 next post will be coin name 2019-12-29 13:05:12+00:00 1.0 1348881342 1743 next pump scheduled date 29th december ⏱ time 100 130 pm utc exchange binance coin name will be posted with no specific time in order to make this pump safer it will be posted on vip channel 60 seconds earlier cryptopumpanalytics 2019-12-27 17:01:16+00:00 1.0 1348881342 1715 next pump scheduled date 29th december ⏱ time 100 130 pm utc exchange binance coin name will be posted with no specific time in order to make this pump safer it will be posted on vip channel 60 seconds earlier cryptopumpanalytics 2019-12-24 13:32:37+00:00 1.0 1348881342 1676 next pump scheduled date 29th december ⏱ time 100 130 pm utc exchange binance coin name will be posted with no specific time in order to make this pump safer it will be posted on vip channel 60 seconds earlier cryptopumpanalytics 2019-12-19 18:37:33+00:00 1.0 1348881342 1373 next post will be coin name 2019-11-30 16:57:56+00:00 1.0 1348881342 1364 2 hours left for coin of the month❗️ be ready with spare btc cryptopumpanalytics 2019-11-30 15:00:46+00:00 1.0 1348881342 1358 less than 12 hours left for coin of the month❗️ more than 500000 people are going to join us and this can be the biggest moment in near future which is expected +70 we will post more information on how to get most profit out of this event soon be ready with spare btc date 30th november ⏱ time 500 pm utc exchange binance cryptopumpanalytics 2019-11-30 05:10:11+00:00 1.0 1348881342 1352 24 hours left for coin of the month❗️ more than 500000 people are going to join us and this can be the biggest moment in near future which is expected +70 we will post more information on how to get most profit out of this event soon be ready with spare btc date 30th november ⏱ time 500 pm utc exchange binance cryptopumpanalytics 2019-11-29 17:00:47+00:00 1.0 1348881342 1337 ❗️breakout event is here❗️ our team is here with the most awaited coin of the month date 30th november ⏱ time 500 pm utc exchange binance more than 500000 people are going to join this coin of the month event and this can be the biggest moment in near future we will post more information on how to get most profit out of this event soon alts are pumping heavily nowadays lets take advantage of that and get some crazy profits cryptopumpanalytics 2019-11-28 16:47:25+00:00 1.0 1348881342 1177 ❗️vip special event❗️ we are happy to announce that we are already organizing the vip special event it will take place on 25th november coin name will be posted on vip channel 15 minutes before it gets pumped coin name will not be posted on free channel this time coin will get pumped around +200 we will work hard these weeks in order to provide you the most safer and profitable coin cryptopumpanalytics 2019-11-21 18:44:57+00:00 1.0 1348881342 1165 next post will be coin name 2019-11-20 15:52:36+00:00 1.0 1348881342 1161 less than 4 hours for pump❗ at 400 pm utc we will post a coin that will get pumped easily make sure to buy selected coin and sell it on top cryptopumpanalytics 2019-11-20 12:23:28+00:00 1.0 1348881342 1150 ❗next pump scheduled❗ date 20th november ⏱ time 400 pm utc exchange binance cryptopumpanalytics 2019-11-19 16:51:11+00:00 1.0 1348881342 1129 next post will be coin name 2019-11-18 15:52:12+00:00 1.0 1348881342 1127 less than 1 hour for pump❗ make sure to buy selected coin and sell it on top ⏱ 400 pm utc cryptopumpanalytics 2019-11-18 15:11:42+00:00 1.0 1348881342 1125 less than 3 hours left for pump❗ at 400 pm utc we will post a coin that will get pumped easily make sure to buy and sell it on top cryptopumpanalytics 2019-11-18 13:13:39+00:00 1.0 1348881342 1107 ❗next pump scheduled❗ date 18th november ⏱ time 400 pm utc exchange binance cryptopumpanalytics 2019-11-17 21:16:37+00:00 1.0 1348881342 1068 ❗️vip special event❗️ we are happy to announce that we are already organizing the vip special event it will take place on 25th november coin name will be posted on vip channel 15 minutes before it gets pumped coin name will not be posted on free channel this time coin will get pumped around +200 we will work hard these weeks in order to provide you the most safer and profitable coin cryptopumpanalytics 2019-11-15 22:12:40+00:00 1.0 1348881342 1064 next post will be coin name stay tuned 2019-11-15 15:54:04+00:00 1.0 1348881342 1062 30 minutes left for breakout call❗ be ready for blast 400 pm utc cryptopumpanalytics 2019-11-15 15:30:44+00:00 1.0 1348881342 1059 only 2 hours left for breakout call❗ remember that it only needs a push to skyrocket big news will be released by its team soon so there will be no second call be ready with your btc 400 pm utc cryptopumpanalytics 2019-11-15 14:00:59+00:00 1.0 1348881342 1051 dear members less than 5 hours left for breakout call❗ here you have some information the coin we are going to post is completing a strong bullish pattern it only needs some push to breakout to the moon it has strong fundamentals as its team is going to release big news soon it can make price go up even more after breakout coin supply is scarce be ready with your btc 400 pm utc cryptopumpanalytics 2019-11-15 11:35:44+00:00 1.0 1348881342 1016 ❗breakout alert❗ date 15th november ⏱ time 400 pm utc exchange binance are you guys ready for a new breakout alert when the 4h candle closes a strong ta signal will be posted on this channel coin will go up quickly so you should buy hold as soon as possible be ready tomorrow at 400 pm cryptopumpanalytics 2019-11-14 13:04:06+00:00 1.0 1348881342 989 ❗️vip special event❗️ we are happy to announce that we are already organizing the vip special event it will take place on 25th november coin name will be posted on vip channel 15 minutes before it gets pumped coin name will not be posted on free channel this time coin will get pumped around +200 we will work hard these weeks in order to provide you the most safer and profitable coin cryptopumpanalytics 2019-11-11 22:19:17+00:00 1.0 1348881342 950 ❗️vip special event❗️ we are happy to announce that we are already organizing the vip special event it will take place on 25th november coin name will be posted on vip channel 15 minutes before it gets pumped coin name will not be posted on free channel this time coin will get pumped around +200 we will work hard these weeks in order to provide you the most safer and profitable coin cryptopumpanalytics 2019-11-08 18:20:55+00:00 1.0 1348881342 731 less than 7 hours left for our special call historic signal event is expected to go 50100 be ready with spare btc❗️ cryptopumpanalytics 2019-10-14 10:04:25+00:00 1.0 1348881342 730 we are organising a big pump for today at 430 pm gmt which is expected to be minimum 50100 profit we will post coin name here so you can earn most quick profit be ready with your btc❗️ cryptopumpanalytics 2019-10-14 07:09:10+00:00 1.0 1348881342 727 some information about the most awaited event date 14th october ⏱ time 430 pm utc exchange binance more than 500000 people are going to join this historic event and this can be the biggest moment in near future by the time keep your btc ready for blast we will post more information about how to get most profit of this event soon you will get 0 prepumped coin❗️ cryptopumpanalytics 2019-10-13 07:46:07+00:00 1.0 1348881342 694 extra breakout alert date 18th september ⏱ time 600 pm utc exchange binance are you ready for another breakout alert to take maximum profit of todays market conditions you are going to get another coin soon invite people to join the event with channel link ❗️be ready today at 6 pm utc❗️ 2019-09-18 13:28:22+00:00 1.0 1348881342 684 dear members less than 1 hour left for breakout alert team keep working hardly to make sure todays coin is the best one are you ready cryptopumpanalytics 2019-09-18 12:04:19+00:00 1.0 1348881342 683 dear members less than 4 hours left for breakout alert team is working overtime to make sure todays coin is the best one are you ready cryptopumpanalytics 2019-09-18 09:39:38+00:00 1.0 1348881342 678 breakout alert date 18th september ⏱ time 100 pm utc exchange binance are you ready for a new breakout alert this time we will post a coin that will breakout easily invite people to join the event with channel link ❗️be ready on wednesday at 1 pm❗️ 2019-09-17 17:25:20+00:00 1.0 1348881342 673 next post will be coin name 2019-09-17 15:55:19+00:00 1.0 1348881342 670 dear members less than 2 hours left for breakout alert team keep working hardly to make sure todays coin is the best one are you ready cryptopumpanalytics 2019-09-17 14:11:21+00:00 1.0 1348881342 665 dear members less than 5 hours left for breakout alert team is working overtime to make sure todays coin is the best one are you ready cryptopumpanalytics 2019-09-17 11:40:18+00:00 1.0 1348881342 660 breakout alert date 17th september ⏱ time 400 pm utc exchange binance are you ready for a new breakout alert this time we will post a coin that will breakout easily invite people to join the event with channel link ❗️stay ready on tuesday at 4 pm❗️ 2019-09-16 15:58:47+00:00 1.0 1348881342 653 dear members less than 3 hours left for breakout alert team keep working hardly to make sure todays coin is the best one are you ready cryptopumpanalytics 2019-09-16 13:18:19+00:00 1.0 1348881342 646 dear members less than 5 hours left for breakout alert team is working overtime to make sure todays coin is the best one are you ready cryptopumpanalytics 2019-09-16 11:04:45+00:00 1.0 1348881342 630 breakout alert date 16th september ⏱ time 400 pm utc exchange binance are you ready for a new breakout alert this time our bot will post a coin that will breakout easily invite people to the event with channel link ❗️stay ready on monday at 4 pm❗️ 2019-09-15 09:11:58+00:00 1.0 1348881342 620 next post will be coin name guys 2019-09-14 14:55:21+00:00 1.0 1348881342 616 dear members only 1 hour left for breakout alert team is working overtime to make sure todays coin is the best one are you guys ready cryptopumpanalytics 2019-09-14 14:00:50+00:00 1.0 1348881342 614 breakout alert date 14th september ⏱ time 300 pm gmt exchange binance dear members team just implemented our own breakout bot on binance it works nicely lets test it this time our bot will post coin name invite your friends to the event with channel link ❗️stay ready on saturday at 3 pm gmt❗️ 2019-09-13 14:09:17+00:00 1.0 1348881342 610 pump report eng start price 3012 sats reached 3050 sats 126 quick profit next pump will be announced soon join vip channel to know coin name early❗️ 2019-09-12 18:13:08+00:00 1.0 1348881342 607 5 minutes next post will be coin name 2019-09-12 17:55:34+00:00 1.0 1348881342 605 are you guys ready for binance pump call only 1 hour left cryptopumpanalytics 2019-09-12 17:00:56+00:00 1.0 1348881342 604 dear members less than 3 hours left for binance pump call team is working overtime to make sure todays coin is the best one are you guys ready cryptopumpanalytics 2019-09-12 15:18:46+00:00 1.0 1348881342 600 dear members less than 8 hours left until this binance pump call team is working overtime to make sure todays coin is the best one are you guys ready cryptopumpanalytics 2019-09-12 10:40:05+00:00 1.0 1348881342 590 binance pump call date 12th september ⏱ time 600 pm gmt exchange binance are you ready for a new binance pump call this time we will post a coin that will breakout easily invite your friends to the event with channel link ‼️ stay ready on thrusday at 6 pm gmt ‼️ 2019-09-10 19:15:19+00:00 1.0 1348881342 574 pump report bnt start price 3670 sats we reached 5156 sats amazing huge quick profit of more than 40 congratulations guys next pump will be announced soon join our premium channel to know coin name early❗️ 2019-09-09 20:10:22+00:00 1.0 1348881342 570 5 minutes next post will be coin name 2019-09-09 19:55:33+00:00 1.0 1348881342 567 ❗️for technical reasons we have decided to postpone the event for 2 hours❗️ ⏱ new pump time 800 pm gmt 2019-09-09 17:50:30+00:00 1.0 1348881342 566 dear members less than 30 minutes left until this binance pump call team is ready and you cryptoanalyststeam 2019-09-09 17:32:03+00:00 1.0 1348881342 563 dear members only 1 hour left until this binance pump call team is looking at many coins at the moment and will update you frequently are you guys ready cryptoanalyststeam 2019-09-09 17:01:12+00:00 1.0 1348881342 559 dear members less than 4 hours left until this binance pump call team is working overtime to make sure today will be the best and the safest pump we are almost ready are you cryptoanalyststeam 2019-09-09 14:07:24+00:00 1.0 1348881342 553 binance pump call date 9th september ⏱ time 600 pm gmt exchange binance are you ready for a new binance pump call this time we will post a coin that will breakout easily invite your friends to the event with channel link ‼️ stay ready on monday at 6 pm gmt ‼️ 2019-09-08 21:16:27+00:00 1.0 1348881342 551 pump report data start price 129 sats we reached 166 sats amazing huge quick profit 286 congratulations guys next pump will be announced soon join our premium channel to know coin name early❗️ contact cryptoanalystsfounder 2019-09-08 18:05:27+00:00 1.0 1348881342 548 5 minutes next post will be coin name 2019-09-08 17:55:24+00:00 1.0 1348881342 545 dear members almost 1 hour left until this mega binance pump call team is ready are you cryptoanalyststeam 2019-09-08 16:55:30+00:00 1.0 1348881342 525 binance pump call date 8th september ⏱ time 600 pm gmt exchange binance are you ready for another binance pump call this time we will post a coin that will breakout easily invite your friends to the event with channel link ‼️ stay ready on sunday at 6 pm gmt ‼️ 2019-09-07 20:28:48+00:00 1.0 1348881342 517 5 minutes next post will be coin name 2019-09-07 17:55:32+00:00 1.0 1348881342 503 dear members only 5 hours left until this huge binance call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you cryptoanalyststeam 2019-09-07 13:00:08+00:00 1.0 1348881342 501 huge binance pump date 7th september ⏱ time 600 pm gmt exchange binance are you again ready for a heavy binance pump call this time we will post a coin that will breakout easily invite your friends to the event with channel link ‼️ stay ready on saturday at 6 pm gmt ‼️ 2019-09-07 00:20:44+00:00 1.0 1348881342 489 5 minutes next post will be coin name❗️ 2019-09-06 17:55:31+00:00 1.0 1348881342 486 1 hour left until mega binance pump 2019-09-06 17:01:15+00:00 1.0 1348881342 479 mega binance pump date 6th september ⏱ time 600 pm gmt exchange binance are you again ready for a heavy binance pump call this time we will post a coin that will breakout easily invite your friends to the event with channel link ‼️ stay ready on friday at 6 pm gmt ‼️ 2019-09-05 18:21:40+00:00 1.0 1348881342 470 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 15 minutes left 2019-09-05 15:45:41+00:00 1.0 1348881342 469 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 30 minutes left 2019-09-05 15:30:41+00:00 1.0 1348881342 468 dear members just around 1 hour left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the dip call team 2019-09-05 15:07:11+00:00 1.0 1348881342 465 dear members less than 3 hours left until this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the dip call team 2019-09-05 13:11:16+00:00 1.0 1348881342 460 binance dip call date 5th september ⏱ time 400 pm gmt exchange binance are you guys ready for a heavy binance dip call this time we will post a coin that will breakout easily invite your friends to the event with channel link ‼️ stay ready on thrusday at 4 pm gmt ‼️ 2019-09-04 16:26:00+00:00 1.0 1348881342 456 ‼️ next post will be coin name ‼️ 2019-09-04 15:55:21+00:00 1.0 1348881342 442 binance breakout call date 4th september ⏱ time 400 pm gmt exchange binance are you guys ready for another heavy binance breakout call this time we will post a coin that will explode invite your friends to the event with channel link ‼️ stay ready on wednesday at 4 pm gmt ‼️ 2019-09-03 16:03:49+00:00 1.0 1348881342 437 ‼️ next post will be coin name ‼️ 2019-09-02 15:59:08+00:00 1.0 1348881342 427 heavy binance pump date 2nd september ⏱ time 400 pm gmt exchange binance are you ready for a heavy binance pump call this time we will post a coin which is about to breakout invite your friends to the event with channel link ‼️ stay ready on monday at 4 pm gmt ‼️ 2019-08-31 18:06:12+00:00 1.0 1348881342 423 ‼️ next post will be coin name ‼️ 2019-08-31 17:55:34+00:00 1.0 1348881342 414 huge binance pump date 31th august ⏱ time 600 pm gmt exchange binance are you ready for a heavy binance pump call this time we will post a coin which is about to breakout invite your friends to the event with channel link ‼️ stay ready on saturday at 6 pm gmt ‼️ 2019-08-29 18:52:21+00:00 1.0 1348881342 410 ‼️ next post will be coin name ‼️ 2019-08-26 17:58:01+00:00 1.0 1348881342 400 mega binance pump date 26th august ⏱ time 600 pm gmt exchange binance are you ready for a heavy binance pump call this time we will post a coin to pump it strongly again invite your friends to the event with channel link ‼️ stay ready on monday at 6 pm gmt ‼️ 2019-08-23 18:07:32+00:00 1.0 1348881342 395 ‼️ next post will be coin name ‼️ 2019-08-23 17:58:01+00:00 1.0 1348881342 387 huge binance pump date 23th august ⏱ time 600 pm gmt exchange binance are you ready for a heavy binance pump call this time we will post a coin which is about to breakout invite your friends to the event with channel link ‼️ stay ready at 6 pm gmt ‼️ 2019-08-23 11:22:17+00:00 1.0 1348881342 380 5 minutes ‼️ next post will be coin name ‼️ 2019-08-09 14:55:19+00:00 1.0 1348881342 375 mega binance pump date 9th august ⏱ time 300 pm gmt exchange binance are you ready for a heavy binance pump call this time we will post a coin which is about to explode invite your friends to the event with channel link ‼️ stay ready at 3 pm gmt ‼️ 2019-08-09 09:33:10+00:00 1.0 1348881342 371 5 minutes next post will be coin name 2019-08-07 16:55:15+00:00 1.0 1348881342 367 we are sorry pump delayed 1 hour ⏱ new pump time 500 pm gmt ‼️ 2019-08-07 15:43:47+00:00 1.0 1348881342 364 huge binance pump date 7th august ⏱ time 400 pm gmt exchange binance are you ready for a heavy binance pump call this time we will post a coin which is about to explode invite your friends to the event with channel link ‼️ stay ready on wednesday at 4 pm gmt ‼️ 2019-08-06 07:16:15+00:00 1.0 1348881342 358 huge binance pump date 2nd august ⏱ time 400 pm gmt exchange binance are you ready for a heavy binance pump call this time we will post a coin which is about to explode invite your friends to the event with channel link ‼️ stay ready on friday at 4 pm gmt ‼️ 2019-07-31 20:16:45+00:00 1.0 1348881342 354 5 minutes next post will be coin name 2019-07-26 15:55:14+00:00 1.0 1348881342 348 ‼️ pump delayed 24 hours ‼️ new pump date 26th july ⏱ pump time 400 pm gmt exchange binance 2019-07-23 16:22:33+00:00 1.0 1348881342 344 mega binance pump date 25th july ⏱ time 400 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready at 4 pm gmt ‼️ 2019-07-23 12:58:08+00:00 1.0 1348881342 340 5 minutes next post will be coin name 2019-07-22 15:55:17+00:00 1.0 1348881342 335 flash binance pump date 22th july ⏱ time 400 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready at 4 pm gmt ‼️ 2019-07-22 10:24:31+00:00 1.0 1348881342 328 5 minutes next post will be coin name 2019-07-18 14:55:13+00:00 1.0 1348881342 322 flash binance pump date 18th july ⏱ time 300 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready at 3 pm gmt ‼️ 2019-07-18 09:11:24+00:00 1.0 1348881342 316 5 minutes next post will be coin name 2019-07-17 15:55:02+00:00 1.0 1348881342 310 mega binance pump date 17th july ⏱ time 400 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready on wednesday at 4 pm gmt ‼️ 2019-07-15 20:26:08+00:00 1.0 1348881342 305 5 minutes next post will be coin name 2019-07-15 15:55:01+00:00 1.0 1348881342 299 mega binance pump date 15th july ⏱ time 400 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready on monday at 4 pm gmt ‼️ 2019-07-13 18:01:12+00:00 1.0 1348881342 294 5 minutes next post will be the coin 2019-07-12 14:55:08+00:00 1.0 1348881342 288 mega binance pump date 12th july ⏱ time 300 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready tomorrow at 3 pm gmt ‼️ 2019-07-11 18:07:22+00:00 1.0 1348881342 283 5 minutes next post will be the coin 2019-07-11 17:55:17+00:00 1.0 1348881342 279 flash binance pump date 11th july ⏱ time 600 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready at 6 pm gmt ‼️ 2019-07-11 17:29:42+00:00 1.0 1348881342 278 mega binance pump date 12th july ⏱ time 300 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready tomorrow at 3 pm gmt ‼️ 2019-07-11 16:12:04+00:00 1.0 1348881342 277 pump failed we will release next coin tomorrow at 300 pm gmt ‼️ stay tuned ‼️ 2019-07-11 16:11:30+00:00 1.0 1348881342 274 5 minutes next post will be the coin 2019-07-11 15:55:26+00:00 1.0 1348881342 268 flash binance pump date 11th july ⏱ time 400 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready at 3 pm gmt ‼️ 2019-07-11 11:08:48+00:00 1.0 1348881342 265 mega binance pump date 12th july ⏱ time 300 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with channel link ‼️ stay ready on friday at 3 pm gmt ‼️ 2019-07-10 18:10:40+00:00 1.0 1348881342 256 mega binance pump date 12th july ⏱ time 300 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to our pump with channel link ‼️ stay ready on friday at 3 pm gmt ‼️ 2019-07-09 14:26:15+00:00 1.0 1348881342 249 5 minutes next post will be coin name 2019-07-05 14:55:01+00:00 1.0 1348881342 242 mega binance pump date 5th july ⏱ time 300 pm gmt exchange binance are you ready for a new binance pump call this time we will take low volume coin to pump it strongly again invite your friends to the pump with the channel link ‼️ stay ready on friday at 3 pm gmt ‼️ 2019-07-02 17:52:52+00:00 1.0 1348881342 232 5 minutes next post will be coin name 2019-06-24 18:25:24+00:00 1.0 1348881342 229 we are sorry pump delayed 30 minutes ⏱ new pump time 630 pm gmt ‼️ 2019-06-24 17:58:20+00:00 1.0 1348881342 228 5 minutes next post will be coin name 2019-06-24 17:55:05+00:00 1.0 1348881342 220 5 minutes next post will be coin name 2019-06-24 16:55:07+00:00 1.0 1348881342 216 pump failed we will announce next coin at 500 pm gmt stay tuned ‼️ 2019-06-24 16:13:27+00:00 1.0 1348881342 214 5 minutes next post will be coin name 2019-06-24 15:55:02+00:00 1.0 1348881342 207 flash binance pumps date 24th june ⏱ 1st pump time 400 pm gmt ⏱ 2nd pump time 500 pm gmt exchange binance this time we will take two low volume coins to pump them strongly again less than 4 hours left for pump today you will also have our mega binance pump call at 600 pm gmt which will be a freeforall pump invite your friends to our pumps with channel link ‼️ stay ready for today ‼️ 2019-06-24 12:19:57+00:00 1.0 1348881342 191 5 minutes next post will be coin name 2019-06-22 15:55:02+00:00 1.0 1348881342 185 flash binance pump date 22th june ⏱ time 400 pm gmt exchange binance this time we will take a low volume coin to pump it strongly again less than 2 hours left to pump invite your friends to the pump with channel link ‼️ stay tuned at 4 pm gmt ‼️ 2019-06-22 14:25:59+00:00 1.0 1348881342 182 mega binance pump date 24th june ⏱ time 600 pm gmt exchange binance are you ready for a new binance pump call in this call we will pump a coin on binance and will be backed by hyped news provided by our pump team the call will be started here in this channel and then it will be extended through whole cryptosphere while you see the price rising we expect more than 7080 profit but the most important thing is not to dump afterwards and hold price for some time while outsiders join the pump imagine the explosion of price when we start the call we will go to moon invite your friends to the pump with the channel link ‼️ stay ready on monday at 6 pm gmt ‼️ 2019-06-22 12:59:01+00:00 1.0 1348881342 175 5 minutes next post will be coin name 2019-06-21 18:55:03+00:00 1.0 1348881342 171 we are sorry pump delayed 1 hour ⏱ new pump time 700 pm gmt ‼️ 2019-06-21 17:58:44+00:00 1.0 1348881342 142 mega binance pump date 21th june ⏱ time 600 pm gmt exchange binance are you ready for a new binance pump call in this call we will pump a coin on binance and will be backed by hyped news provided by our pump team the call will be started here in this channel and then it will be extended through whole cryptosphere while you see the price rising we expect more than 7080 profit but the most important thing is not to dump afterwards and hold price for some time while outsiders join the pump imagine the explosion of price when we start the call we will go to moon invite your friends to the pump with the channel link ‼️ stay ready tomorrow at 6 pm gmt ‼️ 2019-06-20 09:52:48+00:00 1.0 1348881342 139 join our premium channel and get coin name earlier‼️ contact crazymrmime for more information lets pump 2019-06-19 15:30:57+00:00 1.0 1348881342 134 5 minutes next post will be the coin 2019-06-19 14:55:11+00:00 1.0 1348881342 127 next binance pump date 19th june ⏱ time 300 pm gmt exchange binance are you ready for our binance pump call in this call we will pump a coin on binance and will be backed by hyped news provided by our pump team the call will be started here in this channel and then it will be extended through whole cryptosphere while you see the price rising we expect more than 7080 profit but the most important thing is not to dump afterwards and hold price for some time while outsiders join the pump imagine the explosion of price when we start the call we will go to moon invite your friends to the pump with the channel link ‼️ stay ready tomorrow at 3 pm gmt ‼️ 2019-06-18 20:07:17+00:00 1.0 1348881342 125 5 minutes next message will be the coin 2019-06-16 20:55:02+00:00 1.0 1348881342 117 binance pump update date 16th june ⏱ time 900 pm gmt exchange binance are you ready for our binance pump call in this call we will pump a coin on binance and will be backed by hyped news provided by our pump team the call will be started here in this channel and then it will be extended through whole cryptosphere while you see the price rising we expect more than 7080 profit but the most important thing is not to dump afterwards and hold price for some time while outsiders join the pump imagine the explosion of price when we start the call we will go to moon invite your friends to the pump with the channel link ‼️ stay ready today at 9 pm gmt ‼️ 2019-06-16 13:54:13+00:00 1.0 1348881342 112 5 minutes next message will be the coin 2019-06-15 15:55:05+00:00 1.0 1348881342 108 next pump date 15th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-14 18:36:45+00:00 1.0 1348881342 102 5 minutes next message will be the coin 2019-06-14 15:55:02+00:00 1.0 1348881342 98 next pump date 14th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-13 19:25:00+00:00 1.0 1348881342 96 binance pump announcement date 16th june ⏱ time 400 pm gmt exchange binance are you ready for our binance pump call in this call we will pump a coin on binance and will be backed by hyped news provided by our pump team the call will be started here in this channel and then it will be extended through whole cryptosphere while you see the price rising we expect more than 7080 profit but the most important thing is not to dump afterwards and hold price for some time while outsiders join the pump imagine the explosion of price when we start the call we will go to moon invite your friends to the pump with the channel link ‼️ stay ready on sunday at 4 pm gmt ‼️ 2019-06-13 18:16:45+00:00 1.0 1348881342 93 join our premium channel and get the coin there 1 hour early contact crazymrmime for more information lets pump 2019-06-13 16:11:28+00:00 1.0 1348881342 87 5 minutes next message will be the coin 2019-06-13 15:55:30+00:00 1.0 1348881342 83 next pump date 13th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-12 17:28:38+00:00 1.0 1348881342 76 5 minutes next message will be the coin 2019-06-12 15:55:22+00:00 1.0 1348881342 72 next pump date 12th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-11 17:18:04+00:00 1.0 1348881342 65 5 minutes next message will be the coin 2019-06-11 15:55:19+00:00 1.0 1348881342 61 next pump date 11th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-10 17:31:13+00:00 1.0 1348881342 55 5 minutes next message will be the coin 2019-06-10 15:55:23+00:00 1.0 1348881342 50 next pump date 10th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-09 16:25:02+00:00 1.0 1348881342 47 join our premium channel and get the coin there 1 hour early contact crazymrmime for more information lets pump 2019-06-09 16:22:28+00:00 1.0 1348881342 42 5 minutes next message will be the coin 2019-06-09 15:55:05+00:00 1.0 1348881342 38 next pump date 9th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-08 16:13:46+00:00 1.0 1348881342 31 5 minutes next message will be the coin 2019-06-08 15:55:04+00:00 1.0 1348881342 26 next pump date 8th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-07 16:56:13+00:00 1.0 1348881342 20 5 minutes next message will be the coin 2019-06-07 15:55:24+00:00 1.0 1348881342 16 next pump date 7th june ⏱ time 400 pm gmt exchange yobitnet trading pair btc lets pump 2019-06-06 17:16:03+00:00 1.0 1348881342 14 join our premium channel and get the coin there 1 hour early contact crazymrmime for more information lets pump 2019-06-06 17:02:06+00:00 1.0 1348881342 10 5 minutes next message will be the coin 2019-06-06 15:55:03+00:00 1.0 1348881342 9 15 minutes for pump trading pair btc 2019-06-06 15:45:20+00:00 1.0 1348881342 5 first pump date 6th june ⏱ time 400 pm gmt exchange yobitnet lets pump 2019-06-05 17:12:28+00:00 1.0 1309132313 2683 be ready for new signal within 5 minutes stay tuned 2021-09-11 13:19:57+00:00 1.0 1309132313 2677 be ready for new signal within 10 minutes stay tuned 2021-09-11 07:26:03+00:00 1.0 1309132313 2616 market looking stable we will give you another signal within 5 minutes hope it can help you earn money easily stay tuned 2021-09-09 03:57:12+00:00 1.0 1309132313 1790 here comes the breakout looks very strong fakeout accumulation breakout structure usually works well its time to move some bitcoins into ethereum best play imo is buying eth with 50 of your btc holding to make it equal in your portfolio if you already have a lot of eth from our 2150 buy hold it tight as the real pump is ahead altcoinandbitcointrading 2021-08-04 13:58:29+00:00 1.0 1230328698 12025 algoaltcenter exchange bybit coin btcusdt time frame 20 minutes easy steps ✅ constant profits✅ market aware strong support to get a license 50 discount black friday axeltrader 2020-11-26 23:26:33+00:00 1.0 1230328698 11927 algoaltcentersignals coin maticusdt time frame 15 minutes earn 83 without leverage thats altscenter our focus is profits our results are profits 2020-11-10 21:00:03+00:00 1.0 1230328698 11502 indicatoraltcenter exchange bitmex coin xbtusd time frame 15 minutes profit 480 in 14 hours 45 minutes try an altcenter indicator license id axeltrader 2020-08-25 23:18:55+00:00 1.0 1230328698 7657 bitmex magic with our secret strategy ❤️ we never miss a big pump 2019-10-25 16:17:10+00:00 1.0 1230328698 5594 bitmex ❤️ boooooom profit 651 in some hours we are the best ❤️ we never miss a pump with our strategy 2019-06-28 10:44:32+00:00 1.0 1230328698 5234 bitseven btc profit 87℅ in few minutes we never miss a pump 2019-05-19 01:28:44+00:00 1.0 1230328698 5177 my journey of 14052019 1 made a trade at 2 am 2 slept at 4 am 3 woke up at 8 am 4 cashed out thousands of at 9 am 5 now at 1000 am gmt ill go to my bed watch a movie and sleep till 3 or 4 pm 5 more bonus days 2019-05-14 09:02:13+00:00 1.0 1191140932 2765 shib usdt 22 pump in few minutes 2021-10-04 13:18:56+00:00 1.0 1191140932 1094 in vip i remind you 2 times about this coin potential near pump 2020-12-12 02:51:04+00:00 1.0 1338595108 183 thank you all for participating in this pump we had a decent pump today and managed to reach 35 for todays pump we did not give a target to see if it would rise above 50 this was not the case next pump we will set a target again so we can get bigger results building the website has proven to be more difficult than we initially expected we do however think that it will be up and running for the next pump by use of the website everyones signal will be aligned with a correct advantage in accordance with ranks we are still contemplating about trying out other exchanges as binance does not seem to be the perfect exchange for pumps and dumps for a number of reasons there are too few pumpable coins too many whales and the hidden offers popping up in the middle of a pump also the ongoing battle with bots has severely harmed the pumps so far this is a battle that we will continue fighting and is certainly not over the next pump will be announced soon along with its details about the call exchange and other relevant information we are legion we are pirates ☠️ 2018-02-12 20:30:54+00:00 1.0 1338595108 177 dear members in about 1 hour we will do the free for all pump on binance it has been a long time since we had a pump due to the market being very unstable this pump the signal will be given on the telegram we are currently still testing out the website and we dont want it to go offline during the pump we chose a lowmedium volume coin and think that it has very good potential to moon for that to happen everyone needs to hold and not panic sell for low profits we are going to send out a link to a tweet right after we send out the coin if you are to late to participate in the pump you can always retweet and like the tweet to join in on the giveaway 4x 100 lets make up for all the lost time and do an huge pump today ☠️ 2018-02-12 17:55:45+00:00 1.0 1338595108 176 ☠️the pump will be in 1 hours and 43 minutes be sure to have funds on your binance 2018-02-12 17:16:57+00:00 1.0 1338595108 93 ☠️ 4 min left for the invasion ⛵ next post this coin ☠️ 2018-01-31 20:56:23+00:00 1.0 1338595108 71 ☠️ next pump today ⚓ time 12 pm est 5 pm gmt 1030 pm ist 9 am pt exchange cryptopia we are the legion we are pirate☠️ tmepiratesthelegion 2018-01-28 12:20:06+00:00 1.0 1151387276 32308 dusk sto coins are pumping hard poly is recent example dusk is trading at 368 sats u can still buy dusk wait for big pump ❤ 2021-09-04 05:55:23+00:00 1.0 1151387276 32220 celr still under my buy zone currently trading at 96 sats expected target is 180+ sats in next 20 30 days if u dont have celr then buy it dont fomo later when pump will start l2 coin will boom in this cycle ❤ 2021-08-31 04:28:37+00:00 1.0 1151387276 28811 btc alts dont worry for btc price 25 30 correction is imminent after huge pump it is necessary dips are for buying opportunity in bull run btc slumped just under 45000 now trying to recover and trading above 48000 btc dropped 23 from recent peak of 58300 it is called healthy correction if you want to buy btc then its buying opportunity btc having very good support at 42000 i dont think btc would drop below 40000 even in worst condition btcd pumped above 63 and alts corrected nicely buy the alts which are dropped to my buy zone crypto market cap hit 17 trillion usd and currently at 145 trillion usd alts btc are in good buying price dont panic in this shakeout btw my many signals were hit 200 600 recently maximum signals hit their targets only few are left which will pump later stay strong be calm enjoy the show best regards ❤ 2021-02-23 15:44:24+00:00 1.0 1151387276 28481 via big pump is still pending expected target is 3000 sats in next 30 days currently trading at 1000 sats those who dont have buy it reminder call ❤ 2021-01-30 04:01:17+00:00 1.0 1151387276 28068 tct pump it to moon 120 sats target in 2 to 3 weeks time thin sell wall and heavy buy order cz will pump it hard soon ❤ 2020-11-21 09:02:53+00:00 1.0 1151387276 27672 via hit 2641 sats 1st target is yet to be done pumped 30 from my buy zone currently trading at 2400 sats via will hit 3000+ sats in few days time so hold it for targets very low cap coin via accumulated in 2000 range last 1 year its time to break 3000 resistance and fly to moon which is above 10k sats possible in next 2 3 months whales will pump via without reason and many will ask to me why via is pumped any news i will say you whales dont need news to pump the coin always and i will laugh on you ❤ 2020-08-24 22:02:35+00:00 1.0 1151387276 27356 via hit 2641 sats 1st target is yet to be done pumped 30 from my buy zone currently trading at 2400 sats via will hit 3000+ sats in few days time so hold it for targets very low cap coin via accumulated in 2000 range last 1 year its time to break 3000 resistance and fly to moon which is above 10k sats possible in next 2 3 months whales will pump via without reason and many will ask to me why via is pumped any news i will say you whales dont need news to pump the coin always and i will laugh on you ❤ 2020-08-09 21:30:28+00:00 1.0 1151387276 26929 aion signal is here currently trading at 1240 sats those who dont have still can buy it you people always ask good entry after 5× to 6× pump i know 99 people are stupid thats why they only lose and makes whales richer then richest u will not buy dip coins want to prefer already pumped coin main problem comes if your coin drops 10 u guys are becoming panicked crying like baby what i dont like in you be like as good trader dont become weak hands many alts are still not started towards moon ride price is still low although btcd having good support around 62 but it will break eventually btcd will hit 30 when alts season will be around peak dont be fearful much more to come what u have never imagined i can see that all those things buy aion wait for moonshot already 100 up from my initial buy zone 700 sats best regards ❤ 2020-07-12 17:09:06+00:00 1.0 1151387276 26890 strat hit 6600 sats broke the resistance of 6000 convincingly now it is no more resistance for strat so where is strat is going now it is going towards 10k now in few days time so who the hell are saying alts will die every shitcoin will pump in alts season if they will be listed at good liquidity exchange like binance what are u watching now it is not even trailer alts will go 20× to 100× till 2021 end take screenshot of it save in your drive we will talk when time will arrive congratulations to strat holders enjoy 100 pump more to come for u ❤ 2020-07-10 01:01:08+00:00 1.0 1151387276 26491 appc easy 600+ target in few days 1000+ is major resistance for it i gave u the span till buy 450 sats buy hold this pump coin after long time i called it why it will do 100 easy from my buy zone in few days u will enjoy the pump of appci am here dont fear i will always here bear cant kill me my empire wont be ruined till i die ❤ 2020-06-08 18:08:24+00:00 1.0 1151387276 26466 sky i am expecting 100 pump from 5000 sats in short term sky is accumulating around 5000 sats since few weeks low market cap is favourable for whales then sky will go to skyshot buy hold this pump coin ❤ 2020-06-06 22:58:37+00:00 1.0 1151387276 26053 powr it is moon shot coin now a days whales like to play with powr so take entry in powr before whales so that later you dont ask good buy price for itthis coin having immense pump capacity recently it seems powr team hired whales to pump their coins just kidding dont take it seriously ❤ 2020-05-08 20:46:33+00:00 1.0 1151387276 25028 10 minutes is left for moon call ready to rock the binance ❤ 2020-03-13 16:49:56+00:00 1.0 1151387276 25027 almost 45 minutes is left for moon call signal will be in image to avoid bots detection be ready in 40 minutes ❤ 2020-03-13 16:13:06+00:00 1.0 1151387276 25023 notice only 6 hrs left for moon signal be ready guys gals to rock the binance the coin i have selected having big shot nature very much potential with strong team in this market outsider traders will get fomo when they will see huge green candle i am expecting 70 100 pump best regards ❤ 2020-03-13 11:00:04+00:00 1.0 1151387276 25013 notice this moon signal is going to happen today same time 5 pm utc gmt 1030 pm ist so be ready i really dont care btc temporary dip after 13hrs from now signal will be shared best wishes ❤ 2020-03-13 04:00:09+00:00 1.0 1151387276 24994 important announcement i will share the coin name on 12th of march 5 pm utcgmt 1030 pm ist dont go all in that coin 10 15 of your fund is enough never go all in 1 basic rule of crypto or any other market exchange binance after the announcement buy the coin on binance and hold target 70 100 when it break out it will go to moon mission instantly get ready for the announcement less than 24hrs is left for event dont forget to join our announcement channel pin channel at top first 2020-03-11 21:05:59+00:00 1.0 1151387276 24559 ppt this coin will do instant pump till 6000 sats it is easy to pump ppt sky nebl some more such coin becoz of thin buy sell orders ppt is currently trading at 4300 sats within few days u will see huge green candle towards 6000 sats then red candle to 5000 sats or even lower so buy hold till pump ❤ 2020-03-01 07:20:46+00:00 1.0 1151387276 24427 ppt this coin will do instant pump till 6000 sats it is easy to pump ppt sky nebl some more such coin becoz of thin buy sell orders ppt is currently trading at 4300 sats within few days u will see huge green candle towards 6000 sats then red candle to 5000 sats or even lower so buy hold till pump ❤ 2020-02-28 08:31:49+00:00 1.0 1151387276 24093 rlc looking for big pump after news expected target is 14k sats major resistance at 10k satsso u can buy under 8000 sats ❤ 2020-02-21 14:30:21+00:00 1.0 1151387276 23546 mth this coin is huge pump coin didnt pump properly since aug 30th 2019 i am expecting pump till 300 then 500+ sats within few weeks whales are accumulating it since last 4 5 months just buy some hold till andromeda ❤ 2020-02-12 15:37:00+00:00 1.0 1151387276 23447 vib this coin will go up slowly till 300 sats then will make support around 300 after then vib will go like rocket peak will be 650 sats in short term like 2 to 3 weeks vib is whale coin which used to pump hard so make your position earlier than whales buy hold till moon ❤ 2020-02-11 12:04:02+00:00 1.0 1151387276 23296 mth this coin is huge pump coin didnt pump properly since aug 30th 2019 i am expecting pump till 300 then 500+ sats within few weeks whales are accumulating it since last 4 5 months just buy some hold till andromeda ❤ 2020-02-09 14:26:00+00:00 1.0 1151387276 21467 wpr this coin will pump hard like dock snm vibe and many more coins what already mooned after my call expecting 250+ sats in big pump by whales so still u have chance to buy it dont ask entry later when it will pump already did 100 from my buy zone more to come ❤ 2019-10-18 07:44:53+00:00 1.0 1151387276 21173 wpr this coin will pump hard like dock snm vibe and many more coins what already mooned after my call expecting 250+ sats in big pump by whales so still u have chance to buy it dont ask entry later when it will pump already did 100 from my buy zone more to come ❤ 2019-10-03 18:39:32+00:00 1.0 1151387276 20716 sngls btc binance buy 90 sell 120 150 190 240 280 340 380 buy it looking for 250+ sats in few days time even all mentioned target may be done in short term it is crazy pump coin by whales ❤ 2019-09-19 18:44:18+00:00 1.0 1151387276 20656 lend looking for big pump lend can hit 150+ sats in few days time currently trading at 50 sats so get in before big pump so that u wont fomo later like dock buy hold till moon shot ❤ 2019-09-18 16:09:17+00:00 1.0 1151387276 20343 dock are u holding it till now looking to go 200+ sats in few hoursconsider resistance at my targets as well dock hit 123 sats till now congratulations to holders and enjoy mega pump in dock ❤ 2019-08-26 11:57:06+00:00 1.0 1151387276 19897 important announcement we will pump a coin on the 10th of august 5 pm gmt 1030 pm ist market need some momentumi wont say sell all and go all in that coin 10 of fund is enough never go all in 1 basic rule of crypto or any other market exchange binance buy and hold until full growth till andromeda galaxy after the announcement buy the coin on binance and hold target more than 100 when it breaks out it will go to andromeda really high during that time get ready for the announcement it is our 2nd pump in 2 years of time in telegram channel history and it will be a very huge 100 pump dont forget to join our announcement channel pin channel at top first 2019-07-31 13:11:24+00:00 1.0 1151387276 19662 ltc as halvening date is approaching nearby i think on 20th august ltc past history says it drop alwaysaccording to me drop will not be severed like 8090 it may be around 000600 those who are holding it try to sell in next pump 00120 is possible sell the news before the events if event date is well known to traders few weeks or months before because that time price is already in best regards ❤ 2019-07-18 19:40:35+00:00 1.0 1151387276 17258 data signal is here it is looking for big pump now buy it under 600 sats can go above 800 sats ❤ 2019-04-01 11:23:26+00:00 1.0 1151387276 16875 ashu the emperor our andromeda signal is here for you ❤ the coin name bntbtc exchange wwwbinancecom target 1 25000 target 2 30000 ☀️☀️☀️ target 3 40000 satoshi cryptoempiresignalofficial 2019-03-22 16:59:57+00:00 1.0 1151387276 16872 important notice 2 hrs left for andromeda signal coin name will be announced on 5 pm gmtutc 1030 pm ist sharply keep ready your funds in binance exchange all the best ❤ 2019-03-22 15:03:34+00:00 1.0 1151387276 16868 important announcement we will pump a coin on the 22nd of march 5 pm gmt 1030 pm ist exchange binance buy and hold until full growth till andromeda galaxy after the announcement buy the coin on binance and hold target more than 200 when it breaks out it will go to andromeda really high during 23 days get ready for the announcement it is our first pump in 2 years of time and it will be a very huge pump dont forget to join our announcement channel cryptoempiresignalofficial 2019-03-21 06:04:43+00:00 1.0 1151387276 16597 u people are still voting increased 4 votes who wants one time pump signal per month 2019-03-13 16:17:31+00:00 1.0 1151387276 16595 this is result of poll maximum members agreed for pump signal signal will be known as andromeda signal so i will announce time date later stay tuned for best signals with lambo profit pin channel at top for quick notification best regards 2019-03-13 16:10:51+00:00 1.0 1151387276 16555 note i dont do pump my signal goes normally up but i think i need to do 1 pump atleast in 1 month to show my power so i will do 1 pump in 1 month time lets show emperors power to world i will announce soon pump date and time stay tuned ❤ 2019-03-10 20:26:53+00:00 1.0 1151387276 15993 nav this coin will pump like storj whales are accumulating it what did for storj i think 2× is easy from nav soon be patience coz my calls are lambo not 10 or 15 profit i dont care that much pump ❤ 2019-02-17 13:40:21+00:00 1.0 1151387276 15867 btt justin will start pump after 1 week dont underestimate him accumulate btt so that later u dont want to buy more many wanted to add more when pump happens u dont like to buy btc at 3400 rather than u will prefer to buy at 7k problem with human mentality u like precious things when it become costly m i right of course i m 2019-02-09 18:49:36+00:00 1.0 1151387276 14578 dnt it didnt pump what i expected hold this coin will go up eventually expected target is 450 to 470 in few days u can expect 100 profit in 1 month time period just wait for pump make your positions earlier so that later u dont fomo for it enjoy time will come like in past 2019-01-07 08:26:55+00:00 1.0 1151387276 14562 dnt it is looking like next pump coin after data currently trading at 315 those who dont have still can buy it after data it will pump for 25 2019-01-06 23:03:15+00:00 1.0 1151387276 14475 eng hit 11800 missed my last target 12500 by 700 sats only went up almost 100 from my buy zone hopefully u made atleast 65 out of 100 pump nobody can buy at bottom sell at top but u can easy make 50 profit out of 100 pump if u have that coin before pump m i right of course i m just follow calls with patience profit will come timely all the best ❤ 2018-12-28 19:55:46+00:00 1.0 1151387276 14458 data i think data is next if can able to cross 500 sats looking like pump till my 1st target 590 soon holders wait for pump dont sell in cheap ❤ 2018-12-28 10:09:34+00:00 1.0 1151387276 12313 adtbtc bittrex buy under 200 sell 290 340 395 450 500 buy it crazy pump coin by whales 2018-09-30 07:27:47+00:00 1.0 1151387276 11602 srn finally crossed 1200 sats 20 profit till now one big pump is expected till 2000 just check order book of srn whales are trying to flush weak hands enjoy ❤ 2018-09-16 16:28:40+00:00 1.0 1151387276 9190 key hit 335 almost hit 1st target 10 profit just after few minutes now at 315 who dont have can buy it ❤ 2018-07-07 11:37:23+00:00 1.0 1151387276 8780 fun binance buy 410 around sell 490 550 600 670 buy it now next pump coin 2018-07-01 20:14:57+00:00 1.0 1151387276 3682 dnt signal is here now at 1150 buy it who dont have looking good can breakout and repeat its pump history 2018-05-10 06:17:02+00:00 1.0 1151387276 834 bcc to moonbuy it who dont have jihan roger is ready to pump it to mars 2018-04-18 08:13:33+00:00 1.0 1272739429 4001 i shared todays signal in vip group going to hard pump in 24 hours 4050 profit is sure 2021-07-01 11:06:54+00:00 1.0 1272739429 1762 only spot trading buy today sell tomorrow sometimes buy now sell after 30 minutes 2021-04-05 17:22:35+00:00 1.0 1272739429 540 learn what to sell when to sell what to buy when to buy what to hold when to hold 2021-02-14 17:03:13+00:00 1.0 1272739429 347 all premium subscribers ready for big pump 2021-02-10 11:16:26+00:00 1.0 1217655454 4110 5 mins left next post will be coin name dont forget how wpr did before 2019-06-08 12:56:17+00:00 1.0 1217655454 4108 ▪️flash pump alert ▪️ after the succesful wpr pump and the good feedbacks we got we will run another free pump in 87 minutes from now on 1300 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-06-08 11:33:37+00:00 1.0 1217655454 4097 buy appc it will pump 100 next days 2019-06-04 12:08:01+00:00 1.0 1217655454 4095 5 mins left next post will be coin name prepare for huge thing 2019-06-04 11:55:08+00:00 1.0 1217655454 4088 5 mins left next post will be the coin name 2019-06-03 10:55:37+00:00 1.0 1217655454 4075 5 mins left next post will be coin name 2019-05-31 14:55:42+00:00 1.0 1217655454 4073 ▪️flash pump alert ▪️ after the succesful yoyo qsp pump and the good feedbacks we got we will run another free pump in 58 minutes from now on 1500 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-05-31 14:02:33+00:00 1.0 1217655454 4020 pump announcement we have spotted a great opportunity therefore we will schedule our next pump quickly the next pump will be scheduled for date wednesday april 17 time 1700 pm gmt exchange binance with the success of our previous pump we are expecting this one to have even more volume and reach higher gains 2019-04-14 15:44:09+00:00 1.0 1217655454 4002 we will give you an huge signal on bittrex in 30 minutes stay tuned it going to be huge an pump from korean 2019-03-24 13:01:00+00:00 1.0 1217655454 3989 4 minutes left the next post will be the coin signal 2018-12-30 16:58:08+00:00 1.0 1217655454 3987 good morning friends and so as always we will be scheduled for next pump details exchange binance date 30122018 time 5pm gmt the pump will be free for all 2018-12-29 01:35:37+00:00 1.0 1217655454 3985 we have reached about 150btc volume in the pump our buying power was big enough to make any coin go up over 50+ but the growth is not as expected after analyzing the order books closely it turns out there was many hidden conditionnal sell walls that could not be seen by our team the pump managed to hold for a good amount of time but it did not reach the intended targets i am getting word from private sources that there was already a market maker in this coin that held a big amount of nebl it seems that we have picked the wrong coin this time we were hoping that this pump would be as good as our last one it is unfortunate that we had to run into this next time would be better peace 2018-12-23 17:24:36+00:00 1.0 1217655454 3980 good morning friends were receiving an overwhelming amount of appreciation our last pump wabi was very successful the volume has reached 15m dollars around 450btc volume and the price has created many waves during its way so we helps participants to making a profit and no one has to suffer losses and so as always we will be scheduled for next pump details exchange binance date 23122018 time 5pm gmt the pump will be free for all 2018-12-20 05:28:44+00:00 1.0 1217655454 3972 2 hours left to the pump invite your friends we will make big gain today 2018-11-22 13:04:47+00:00 1.0 1217655454 3971 hi everyone were back for the pump today details exchange binance date 22112018 time 3pm gmt the pump will be freeforall ffa 2018-11-22 05:43:27+00:00 1.0 1217655454 3968 less than 30 minutes till our pump exchange binance 2018-11-21 14:31:41+00:00 1.0 1217655454 3967 2 hours left to the pump invite your friends we will make big gain today 2018-11-21 13:00:42+00:00 1.0 1217655454 3966 less than 12hours left to big pump signal dont miss your chance to makes money today 2018-11-21 03:12:01+00:00 1.0 1217655454 3965 wow what an exciting day your chance is here market is recovering we will be scheduling big pump signal on tomorrow ⏳ time 1500 gmt date wednesday 21 november exchange binance the pump is freeforall and everything is going to big stay here we hope the market situation will be better on wednesday 2018-11-20 02:42:50+00:00 1.0 1217655454 3958 30 mins left to the big pump dont miss your chance 2018-11-12 14:30:41+00:00 1.0 1217655454 3957 2 hours left to the pump invite your friends we will make big gain today 2018-11-12 13:00:24+00:00 1.0 1217655454 3955 hello everyone we are back bitcoin is moving sideways in narrow band during 2 months and the market seems in an huge accumulation phase then there is an excellent opportunity to pick up coins of promising projects were expecting the volumes will kicking back in early next week monday so we have decided to schedule a big pump on monday at 0300 pm gmt ⏳ time and date monday 12 november at 0300 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket in bullish live countdown transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on monday at 0300 pm gmt utc time the coin name will be announced here inivte your friends and lets make it great again 2018-11-09 04:55:00+00:00 1.0 1217655454 3931 보시다시피 알트코인들이 회복됨에 따라 저가에 좋은 알트코인을 매수하기에 좋은 시점이 다가왔습니다 이에 내일 29일 22시에 kst 모두 가 큰 수익을 얻으실 수 있는 저점에 위치한 코인을 공개하겠습니다 as you can see altcoins are recovering at the same time its a good time to buy good altcoins at low prices so tomorrow we will unveil a coin on the 29th at 2200 kst where everyone can make a big profit ♻️ exchange bittrex upbit btc market time 22시 kst 1300 gmt date monday 29th october ‍‍‍ participants more than 100000 cryptoinvestors target 70 150 2018-10-28 16:05:28+00:00 1.0 1217655454 3849 시그널 제공까지 15분 남았습니다 미리 btc 매수하시기 바랍니다 15 minutes left until revealing the mega signal 2018-09-06 12:45:46+00:00 1.0 1217655454 3837 시그널 제공까지 20분 남았습니다 미리 btc 매수하시기 바랍니다 20 minutes left until revealing the mega signal 2018-09-03 12:41:48+00:00 1.0 1217655454 3830 최근 장은 좋은 회복세를 보이며 그만큼 볼륨도 올라가고 있는 모습을 보이고 있습니다 이러한 장에선 비트코인보다 상승세가 예상되는 알트코인에 투자하는 것이 좋은 투자 방법이 될 것입니다 3일 월요일 22시에 우리는 모두가 큰 수익을 얻을수 있는 메가시그널을 드릴 예정입니다 recently the market shows bullish that volume also increases in this kind of market it would be easy to take profits fron good alts instead of bitcoin on monday 3rd at 1300 gmt we will give you mega signal so that everyone can get huge profit ♻️ exchange bittrex upbit btc market time 22시 kst 1300 gmt date monday 3rd september ‍‍‍ participants more than 100000 cryptoinvestors target 70 150 2018-09-02 14:51:53+00:00 1.0 1217655454 3799 시그널 제공까지 30분 남았습니다 미리 btc 매수하시기 바랍니다 30 minutes left until revealing the signal buy btc to be prepared 2018-08-27 12:30:14+00:00 1.0 1217655454 3782 시그널 제공까지 30분 남았습니다 미리 btc 매수하시기 바랍니다 30 minutes left until revealing the signal buy btc to be prepared 2018-08-22 12:30:01+00:00 1.0 1217655454 3776 2일 전 20일에 저희는 투자자분들 모두 수익을 누리실 수 있도록 메가 시그널을 공개하였고 타 채널같이 20 프리펌핑 및 덤핑을 보여준것이 아닌 프리펌핑 없는 70의 큰 상승률을 선보였습니다 금일 22일 수요일 22시에 우리는 한번더 70의 상승률에 버금가는 메가 시그널을 선보일 예정입니다 on the 20th we released the mega signal ans every investor enjoyed huge profits we showed the 70 increase without prepumping instead of showing 20 free pumping and dumping like other channels on the 22nd wednesday at 1300 gmt we will once again give you the mega signal that is similar to the 70 increase rate like the last time ♻️exchange bittrex upbit btc market time 1000 pm kst 22일 수 1300 gmt on 22nd wednesday ‍‍‍participants more than 100000 cryptoinvestors target 40100 2018-08-21 15:38:49+00:00 1.0 1217655454 3539 15분 남았습니다 업비트에 로그인하세요 예상 50100 five minutes left sign in to upbit expected 50 100 2018-07-09 12:45:06+00:00 1.0 1217655454 3520 30분 이내에 큰 시그널을 제공할 예정입니다 큰 호재가 있는 코인 이오니 주목하시길 바랍니다 we will provide huge signal in 30 minutes we captured there is a massive news for the coin 2018-07-08 11:29:18+00:00 1.0 1217655454 3269 less than 1 hour to our pump transfer some btc to binance it will be huge stay tuned 2018-06-21 13:31:11+00:00 1.0 1217655454 3262 dear members the big pump signal will be exchange binance date 21062018 time 300 pm gmt for live countdown please invite more peoples to our channels and make this pump great again 2018-06-20 17:10:08+00:00 1.0 1217655454 3164 2 minutes left next post will be the coin 2018-06-06 12:58:33+00:00 1.0 1217655454 3163 5 minutes left be sure to have login at binance and telegram is open 2018-06-06 12:55:48+00:00 1.0 1217655454 3162 15 minutes left till the pump binance 2018-06-06 12:45:03+00:00 1.0 1217655454 3106 coin name exp buy fast and hold our team will give u big news coming 2018-06-04 11:59:46+00:00 1.0 1217655454 3090 ‼️ big announce today well share one of our favorite gem today last signal was a success and we want everybody to do a stronger effort to make this pump a whopping success 저번 시그널또한 성공적이었습니다 여러분들이 모두 수익을 얻으셨으면 합니다 the coin in question can do x3 anytime soon 이 코인은 언제든지 3배로 뛸수있는 잠재성을 가지고 있습니다 read the pinned message for details how to make more profits ⏳ time 1200h gmt time 21h korean ⚖️ exchange bittrex upbit participants 700000 people in crypto goal 200300 advantage the pump will be freeforall ffa transfer funds to bittrex and pinunmute our channel to get notified about the coin name first great alliance team 2018-06-04 05:59:46+00:00 1.0 1217655454 3060 hi guys please read our announcement we will give you an huge signal today 06월 01일 큰 상승이 예상되는 코인을 공개할 예정입니다 절대 놓치지 마시기 바랍니다 exchange bittrex upbit time 1300 gmt 2200 korean time date 1st june 2018 ✉️ coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer your fund to bittrexupbit and do not miss the chance to get 500 100+ profitable many members are ready to attend this signal check the countdown here +bittrex+2f+upbitfontcursive 2018-06-01 04:11:45+00:00 1.0 1217655454 2996 ✉️ today another signal of the week will be announced at 1300 gmt again remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 1300 gmt 2018-05-30 06:13:37+00:00 1.0 1217655454 2905 hi guys please read our announcement we will give you an huge signal today 5월 25일 큰 상승이 예상되는 코인을 공개할 예정입니다 절대 놓치지 마시기 바랍니다 exchange bittrex upbit time 1200 gmt 2100 korean time date 25th may 2018 ✉️ coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer your fund to bittrexupbit and do not miss the chance to get 500 100+ profitable many members are ready to attend this signal stay tuned 2018-05-25 05:24:05+00:00 1.0 1217655454 2826 hi guys please read our announcement yo were back we hope all of you have a nice weekend and public holidays 안녕하세요 여러분 오랜만입니다 휴일 즐겁게 보내셨나요 we are seeing volume kicking back in crypto for now so dont miss it that tomorrow a super coin coming out monday 5월 21일월요일 큰 상승이 예상되는 코인을 공개할 예정입니다 절대 놓치지 마시기 바랍니다 exchange bittrex upbit time 1300 gmt 2200 korean time date 21th may 2018 advantage the pump will be freeforall ffa ✉️coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer your fund to bittrexupbit and do not miss the chance to get 500 100+ profitable many members are ready to attend this signal asian whales megalodon team 2018-05-20 15:57:35+00:00 1.0 1217655454 2723 big pump signal coin ftc feathercoin upbit link ftc bittrex link ftc 2018-05-10 13:00:04+00:00 1.0 1217655454 2722 1분 남았습니다 1mins 다음 게시물은 코인 이름과 링크입니다 next post will be coin name and link 2018-05-10 12:59:03+00:00 1.0 1217655454 2719 bittrexupbit 15분 남았습니다 15mins left to big pump signal 2018-05-10 12:45:04+00:00 1.0 1217655454 2718 bittrexupbit 30분 남았습니다 30mins left to big pump signal check the countdown here +pump+signal+at+bittrexfontcursive 2018-05-10 12:30:06+00:00 1.0 1217655454 2717 05월 10일 우리는 업비트 거래소 btc마켓에있 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 1 hour left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 10 may trades will be on bittrexupbit +pump+signal+at+bittrexfontcursive 2018-05-10 12:00:04+00:00 1.0 1217655454 2712 10월 07일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 4 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 10 may trades will be on bittrexupbit +pump+signal+at+bittrexfontcursive 2018-05-10 09:01:01+00:00 1.0 1217655454 2701 big pump signal announcement bitcoin is back to bullish markets turning green now we will give you big pump signal 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a big pump signal which coin has huge potential on thursday what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 10 may trades will be on bittrexupbit stay tuned check the countdown here+pump+signal+at+bittrexfontcursive 2018-05-09 17:35:38+00:00 1.0 1217655454 2636 big pump signal coin iop internet of people upbit link iop bittrex link iop 2018-05-07 13:00:11+00:00 1.0 1217655454 2635 1분 남았습니다 1mins 다음 게시물은 코인 이름과 링크입니다 next post will be coin name and link 2018-05-07 12:59:06+00:00 1.0 1217655454 2632 bittrexupbit 15분 남았습니다 15mins left to big pump signal 2018-05-07 12:45:10+00:00 1.0 1217655454 2631 bittrexupbit 30분 남았습니다 30mins left to big pump signal check the countdown here +singal+at+bittrex2fupbitfontslab 2018-05-07 12:30:03+00:00 1.0 1217655454 2630 05월 07일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 1 hour left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date monday 07 may trades will be on bittrexupbit +singal+at+bittrex2fupbitfontslab 2018-05-07 12:00:08+00:00 1.0 1217655454 2629 05월 07일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 4 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date monday 07 may trades will be on bittrexupbit +singal+at+bittrex2fupbitfontslab 2018-05-07 09:20:55+00:00 1.0 1217655454 2616 big pump signal announcement after the moved of the king btc markets turning green now we will give you big pump signal on tomorrow 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a huge signal which coin has huge potential on tomorrow what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date monday 07 may trades will be on bittrexupbit stay tuned check the countdown here +singal+at+bittrex2fupbitfontslab 2018-05-06 16:22:47+00:00 1.0 1217655454 2532 big pump signal coin pro propy upbit link pro bittrex link pro buy pro it will moon 100 2018-05-02 13:00:08+00:00 1.0 1217655454 2531 1분 남았습니다 1mins 다음 게시물은 코인 이름과 링크입니다 next post will be coin name and link 2018-05-02 12:59:04+00:00 1.0 1217655454 2528 bittrexupbit 15분 남았습니다 15mins left to big pump signal 2018-05-02 12:45:06+00:00 1.0 1217655454 2527 bittrexupbit 30분 남았습니다 30mins left to big pump signal check the countdown here +signal+at+bittrexfontcursive 2018-05-02 12:30:06+00:00 1.0 1217655454 2526 5월 02일 오후 10시 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것 입니다 dont miss the train 1 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date wednesday 02 may trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-05-02 12:00:06+00:00 1.0 1217655454 2525 5월 02일 오후 10시 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것 입니다 dont miss the train 2 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date wednesday 02 may trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-05-02 11:00:06+00:00 1.0 1217655454 2523 5월 02일 오후 10시 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것 입니다 dont miss the train 4 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date wednesday 02 may trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-05-02 09:00:03+00:00 1.0 1217655454 2506 big pump signal announcement the markets turning green we will give you big pump signal 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a huge signal which coin has huge potential on tomorrow what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date wednesday 02 may trades will be on bittrexupbit stay tuned check the countdown here +signal+at+bittrexfontcursive 2018-05-01 18:30:18+00:00 1.0 1217655454 2468 big pump signal coin cure curecoin cure 2018-05-01 13:00:13+00:00 1.0 1217655454 2429 have a good weekend ladies and gents ✉️due to the markets bullish then there is an excellent opportunity to pick up coins of promising projects that are at the bottom so we will give best signal of the day there will be announced at 1400 gmt 2300 pm kmt trade will be at bittrex upbit by the way remember thats one is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and fundamental analysis incase the coin is pumping wait until it has back to the buy zone ▪️duration fews hours to a day 여러분 일요일 잘 보내시고 계신가요 ✉️btc 상승으로 인해 유망한 코인을 매수할 수 있는 절호의 찬스를 드릴 것 입니다 1400 gmt 오후 1100 한국시각 거래소 비트렉스 업비트 펌핑 신호가 아니라는것을 기억해주세요 기술적 분석에 기반한 최고의 분석 신호입니다 만약 해당 코인이 펌핑중이라면 매수가격에 올때까지 기다려주세요 ▪️기간 며칠 1주일 best regards 2018-04-29 13:34:31+00:00 1.0 1217655454 2370 were so sorry about technical problem about big pump signals today is dct 2018-04-27 13:09:58+00:00 1.0 1217655454 2368 big pump signal coin dct decent bittrex link dct upbit link dct 2018-04-27 13:00:47+00:00 1.0 1217655454 2362 bittrexupbit 30분 남았습니다 30mins left to big pump signal check the countdown here +singal+at+bittrex2fupbitfontslab 2018-04-27 12:30:04+00:00 1.0 1217655454 2360 bittrexupbit 4월 27일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 오후 10시 dont miss the train 1 hours left to big pump signal check the countdown here +singal+at+bittrex2fupbitfontslab 2018-04-27 12:00:03+00:00 1.0 1217655454 2359 4월 27일 오후 10시 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것 입니다 dont miss the train 4 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date friday 27 april trades will be on bittrexupbit check the countdown here +singal+at+bittrex2fupbitfontslab 2018-04-27 08:55:02+00:00 1.0 1217655454 2345 have a good friday ladies and gents ✉️due to the markets bullish then there is an excellent opportunity to pick up coins of promising projects that are at the bottom so we will give best signal of the week today there will be announced at 730 gmt 430 pm kmt trade will be at bittrex upbit by the way remember thats one is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and fundamental analysis incase the coin is pumping wait until it has back to the buy zone ▪️duration few days to a week 여러분 금요일 잘 보내세고 계신가요 ✉️btc 상승으로 인해 유망한 코인을 매수할 수 있는 절호의 찬스를 드릴 것 입니다 730 gmt 오후 430 한국시각 거래소 비트렉스 업비트 펌핑 신호가 아니라는것을 기억해주세요 기술적 분석에 기반한 최고의 분석 신호입니다 만약 해당 코인이 펌핑중이라면 매수가격에 올때까지 기다려주세요 ▪️기간 며칠 1주일 best regards 2018-04-27 07:06:54+00:00 1.0 1217655454 2238 less then 2 minutes left next post will be coin name 2018-04-24 12:59:04+00:00 1.0 1217655454 2235 15 minutes left we will announce a big signal in 15 minutes ➡️what you need to do buy that particular coin and hodl until 100200 profit exchange bittrex 2018-04-24 12:45:23+00:00 1.0 1217655454 2234 30 minutes left we will announce a big signal in 30 minutes exchange bittrex 2018-04-24 12:30:34+00:00 1.0 1217655454 2232 less then 1 hour left we have a big special signal on today at bittrex ️exchange bittrex time 1300 gmt ➡️what you need to do buy that particular coin and hodl until 100200 profit coin will be announced after 1 hour ❤️ 2018-04-24 12:00:15+00:00 1.0 1217655454 2231 less then 2 hours left we have a big special signal on today at bittrex ️exchange bittrex time 1300 gmt date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-24 11:01:09+00:00 1.0 1217655454 2230 be ready less then 3 hours left we have a big special signal on today at bittrex ️exchange bittrex time 1300 gmt date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-24 10:00:17+00:00 1.0 1217655454 2210 be ready we have a big special signal on tomorrow at bittrex ️exchange bittrex time 1300 gmt 630pm ist date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-23 18:06:55+00:00 1.0 1217655454 2193 ✉️ after the success of cdt and fuel today our team will give you best signal of the week there will be announced at 1000 gmt remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 1000 gmt 2018-04-22 08:42:59+00:00 1.0 1217655454 2163 huge signal announcement the markets turning green we will give you huge signal 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a huge signal which coin has huge potential on tomorrow what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 19 april trades will be on bittrexupbit stay tuned check the countdown here +huge++signalfontcursive 2018-04-18 17:05:10+00:00 1.0 1217655454 2150 big pump signal coin exp expanse bittrex link exp upbit link exp 2018-04-17 13:00:09+00:00 1.0 1217655454 2142 4월 17일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 4 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date tuesday 17 april trades will be on bittrexupbit check the countdown here +singal+at+bittrex2fupbitfontserif 2018-04-17 08:54:47+00:00 1.0 1217655454 2129 big signal announcement bittrex has upgraded their system and reopened registrations for new users then outsiders are coming to bittrex upbit with more volume 비트렉스가 시스템을 개선하고 새로운 사용자에 대한 등록을 다시 하게 되면 외부인들이 더 많은 물량을 갖고 비트렉스 거래소에 오게 될 것이다 4월 17일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 due to this huge demand and the markets very bullish were lauching big signal at bittrexupbit on tomorrow tuesday ➡️ we will give you a big signal which coin has huge potential on tomorrow what to do you need to buy and hodl that strong coin it easily goes 100 200 ⬅️ ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date tuesday 17 april trades will be on bittrexupbit check the countdown here +singal+at+bittrex2fupbitfontserif 2018-04-16 16:35:40+00:00 1.0 1217655454 2121 1 mins next post will be coin name and link login bittrex and upbit 2018-04-16 11:59:25+00:00 1.0 1217655454 2118 be ready less then 30 minutes left we have a big signal at bittrex upbit ️exchange bittrexupbit time 1200 gmt 900 pm ktm date monday 16 april coin will be announced in 30 minutes 2018-04-16 11:31:05+00:00 1.0 1217655454 2116 4월 16일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 1 hours left to big signal at bittrexupbit ️exchange bittrex upbit time 1200 gmt 900 pm ktm date monday 16 april trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-04-16 11:01:09+00:00 1.0 1217655454 2109 4월 16일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 4hours left to big signal at bittrexupbit ️exchange bittrex upbit time 1200 gmt 900 pm ktm date monday 16 april trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-04-16 07:57:45+00:00 1.0 1217655454 2101 big signal announcement bittrex has upgraded their system and reopened registrations for new users then outsiders are coming to bittrex upbit with more volume 비트렉스가 시스템을 개선하고 새로운 사용자에 대한 등록을 다시 하게 되면 외부인들이 더 많은 물량을 갖고 비트렉스 거래소에 오게 될 것이다 4월 16일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 due to this huge demand and the markets very bullish were lauching big signal at bittrexupbit on tomorrow monday ➡️ we will give you a big signal which coin has huge potential on tomorrow what to do you need to buy and hodl that strong coin it easily goes 100 200 ⬅️ ️exchange bittrex upbit time 1200 gmt 900 pm ktm date monday 16 april trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-04-15 16:43:02+00:00 1.0 1217655454 2064 be ready less then 2 hours left we have a big special signal at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-14 11:00:23+00:00 1.0 1217655454 2060 be ready less then 3 hours left we have a big special signal at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-14 10:00:18+00:00 1.0 1217655454 2059 ✉️ after the success of cdt yesterday today our team will give you best signal of the week there will be announced at 1030 gmt remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 1030 gmt 2018-04-14 09:39:32+00:00 1.0 1217655454 2057 be ready less then 6 hours left we have a big special signal at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-14 07:01:36+00:00 1.0 1217655454 2048 be ready we have a big special signal on tomorrow at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-13 17:49:07+00:00 1.0 1217655454 2033 ✉️ today another signal of the week will be announced at 0800 gmt again remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 0800 gmt 2018-04-13 06:06:01+00:00 1.0 1217655454 2018 login bittrex next post will be coin name and link 2018-04-12 12:58:58+00:00 1.0 1217655454 2017 less then 5 minutes left in our special signal what you need to do buy and hold coin potential 100200 exchange bittrex 2018-04-12 12:56:01+00:00 1.0 1217655454 2016 less then 10 minutes left in our special call announcement on bittrex for 100200 profit special call means buy and hold that coin to get maximum profit while all coins are going down we will go up check remaining time here +call+at+bittrexfontcursive 2018-04-12 12:50:36+00:00 1.0 1217655454 2014 less then 30 minutes left in our special call announcement on bittrex for 100200 profit special call means buy and hold that coin to get maximum profit while all coins are going down we will go up check remaining time here +call+at+bittrexfontcursive 2018-04-12 12:30:39+00:00 1.0 1217655454 1776 our next binance pump is scheduled for tomorrow date 31032018 time 5 pm gmt it will be free for everyone signal will be shared here so be ready tomorrow at 5 pm gmt we will make it huge as we have done in our previous pumps previous pumps were out of this world 2018-03-30 15:13:11+00:00 1.0 1217655454 1626 dear members 15 minutes left till the pump last binance pump was a big success lets make this one as big as last time the reason why last pump was so succesful people did hold the coin and did not dump after a few seconds people kept riding the waves if enough people hodl and we wait long enough to get outsiders in it will be a great pump and the payout for the hodlers will be a lot higher never panic sell just wait and ride the waves 2018-03-25 16:16:39+00:00 1.0 1217655454 1573 coin pump is snm buy snm now it will moon 50 2018-03-24 13:00:05+00:00 1.0 1217655454 1557 pump announcement hello everyone binance pump is lauching on saturday today ️exchange binance time 1300 gmt 100 pm date saturday 24 march ready your bags and flying with us stay tuned remember trades will be on binance countdown to our pump 2018-03-24 04:12:54+00:00 1.0 1217655454 1468 guys as market is in uptrend we are going to share our big call today at 4pm gmt undervalued solid gem which can give you 2x to 3x profits the same call will be shared by other big channels 350k+ members exchange binance time 400 pm gmt 0930 pm ist staytuned 2018-03-22 05:10:54+00:00 1.0 1217655454 1346 reminder we will announce pump signal at 1300 gmt time this coin will be shared by other big channels at the same time unmute the channel stay tuned 2018-03-10 11:59:12+00:00 1.0 1141221379 22249 matic getting ready for a big pump dont miss it 2021-12-26 00:59:20+00:00 1.0 1141221379 22183 bzrx is good to buy and hold for this week im expecting big pump on the way 2021-11-23 20:26:58+00:00 1.0 1141221379 22102 dont miss ada its gearing up for a big pump 2021-11-10 14:37:56+00:00 1.0 1141221379 22040 bzrx looks ready for a pump 2021-11-04 07:52:24+00:00 1.0 1141221379 22025 audio breaking out on shorter tf i reckon a big pump on the way buy order looks heavy and accumulation is over buy and hold 2021-11-03 01:48:01+00:00 1.0 1141221379 21914 ata broke out the major downtrend and is ready for a big pump 2021-10-27 07:14:31+00:00 1.0 1141221379 21912 ata gearing up for a big pump all targets will be done by day end today easy scalp buy and hold 2021-10-27 07:02:48+00:00 1.0 1141221379 21821 over 20m volume buying arpa thats huge as i said arpa big pump 2021-10-19 06:20:22+00:00 1.0 1141221379 21695 ctk partnership with kava means a big pump 2021-10-08 07:56:55+00:00 1.0 1141221379 21692 market looks to pump now good time to buy alts stay tuned 2021-10-08 07:47:16+00:00 1.0 1141221379 21584 storj broke out on 4hour big pump incoming buy and hold 2021-10-01 16:53:43+00:00 1.0 1141221379 21392 buy and hold icp it will pump like rlc 2021-09-15 17:33:47+00:00 1.0 1141221379 21384 china will pump rlc buy and hold 2021-09-15 15:16:38+00:00 1.0 1141221379 21356 icx broke out retested and now ready for a big pump 2021-09-14 13:14:20+00:00 1.0 1141221379 21248 keep an eye on crv 2411 looks like its getting ready for a pump 2021-09-05 05:52:17+00:00 1.0 1141221379 21238 the whale who pumped rlc and chz will now pump keep make sure u dont miss out 2021-09-04 15:51:23+00:00 1.0 1141221379 21209 gtc looks ready for a pump 2021-09-03 12:06:13+00:00 1.0 1141221379 21182 ont will pump like all my other coins buy and hold 2021-09-02 13:55:08+00:00 1.0 1141221379 20972 gtc broke out with a massive volume today whales will pump this coin 2021-08-23 04:57:31+00:00 1.0 1141221379 20782 hnt getting ready for a massive pump… buy before the pump beginss 2021-08-16 04:37:05+00:00 1.0 1141221379 20587 sc broke out on 4 hours and accumulated above weekly support hella big pump on the way buy now and thank me later 2021-08-04 17:33:36+00:00 1.0 1141221379 20521 pump incoming for chz buy and hold 2021-07-30 03:29:17+00:00 1.0 1141221379 20518 ocean retail pump incoming buy before a big pump 2021-07-30 01:23:55+00:00 1.0 1141221379 20089 xlm resistance around 044 broken get ready for a big pump now u can still buy if u haveny bought yet 2021-05-26 03:51:46+00:00 1.0 1141221379 19876 xlm is ready if u bought the dip on my call then u must be in 50+ profits so far hold and buy more if u want big pump incoming 2021-05-09 17:19:23+00:00 1.0 1141221379 19828 buy and hold skl pump incoming 2021-05-06 07:49:05+00:00 1.0 1141221379 19721 buy and hold bts big pump incoming 2021-04-27 16:45:36+00:00 1.0 1141221379 19296 buy oaxbtc 900970 sell 1050120013501500+ stoploss 800 spottrade oax will pump hard looks ready on h1 and h4 2021-04-05 14:27:18+00:00 1.0 1141221379 19219 bts going to 015 big pump incoming 2021-04-02 16:59:49+00:00 1.0 1141221379 18851 zrx a big pump is on the way kmd moving zrx will move too keep holding 2021-03-20 13:08:15+00:00 1.0 1141221379 18352 as i said just buy and hold if you cant hold then dont buy it cvc it will be pump x2x3 from here 2021-02-27 20:04:32+00:00 1.0 1141221379 17613 hnt broke out of the wedge looks for a pump anytime buy and hold hnt dip 2021-01-17 17:36:19+00:00 1.0 1141221379 17096 1000usd pump within an hour looks strong 2020-12-23 12:48:06+00:00 1.0 1141221379 16928 coinbase already pumped hard cvc and loom its coin in krw snt is next pump in coinbase lets buy now with target is 100300 profit 2020-11-10 08:45:54+00:00 1.0 1141221379 16888 elf is a potential coin capable of strong growth in the next november we can see the rsi is oversold and the reversal signal is clear as the 1 hour breakout the market is going to be very active as capitalization increases the elf is very popular with sharks so it may be pushed up in price soon there is a rumor that there will be a big news coming out in midnovember so this is the best time to get cheap elf 2020-11-06 09:03:49+00:00 1.0 1141221379 16883 after ardr +100 profit today all market fucking pump i will give you one more huge signal it can be + 100200 profit time 1hour left exchange upbit vs binance 2020-11-06 08:06:46+00:00 1.0 1141221379 16867 ardr hey guys dont sell panic and never sell early if you buy just hold now i will pump it 3050 today lets go to the moon 2020-11-02 07:06:50+00:00 1.0 1141221379 16688 as u know after trend defi it make alts big pump there will be a huge boom in the near future as the nft trend dock joining nft soon dont miss it 2020-09-24 07:19:40+00:00 1.0 1141221379 16562 will share a coin in few minutes that has a great news dont miss this signal 2020-09-10 06:37:01+00:00 1.0 1141221379 16207 bat is holding 3000 level so well and absorbing all the sell orders in past few hours this shows a big pump incoming 2020-08-21 00:05:09+00:00 1.0 1141221379 16147 also macd on 4 hour about to cross once its crossed expect a big pump 2020-08-18 07:45:19+00:00 1.0 1141221379 15765 dont sell agi for small profits its the beginning of the pump 350400 incoming but with patience 2020-07-20 17:40:04+00:00 1.0 1141221379 15593 buy ogn 30003060 sell 3200350038004000+ stoploss 2700 ogn looks ready for a pump 2020-07-07 14:11:11+00:00 1.0 1141221379 15566 macds crossing on daily get ready for omg pump soon 2k+ buy and hold omg 2020-07-05 00:54:18+00:00 1.0 1141221379 15342 omg will pump harder in one candle where everyone will chase that candle buy and hold now it always pumps up faster hold period 23 weeks 2020-06-13 06:23:21+00:00 1.0 1141221379 15207 hey folks guess whats coming today yes guess it the mountain alt our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 ctxc 》220 《 xxx 》will it go for 200++ but its coming with a different strategy to kill bot traders today mountain will be shared within 4 5 pm gmt between this 1 hr anytime wake up mountain alt | 4 5 pm gmt 2020-06-08 04:19:28+00:00 1.0 1141221379 15148 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:36+00:00 1.0 1141221379 15147 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:53+00:00 1.0 1141221379 15146 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just 6 hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:29+00:00 1.0 1141221379 15141 have you set the timer yet bcoz its the day for mountain alt signal ong went for 108 via went for 188 can todays mountain alt hit 250 12 hrs remaining today | 4 pm gmt 2020-06-03 04:00:29+00:00 1.0 1141221379 15137 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:45:21+00:00 1.0 1141221379 15111 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 16:00:14+00:00 1.0 1141221379 15109 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:34+00:00 1.0 1141221379 15108 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:28+00:00 1.0 1141221379 15107 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:02:26+00:00 1.0 1141221379 15105 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this less than 12 hours left to see the mountain alt today | 4 pm gmt 2020-05-29 04:00:38+00:00 1.0 1141221379 15072 friendly reminder dont chase green candles and get rekt buy any coin and wait for it to pump 2020-05-26 21:44:23+00:00 1.0 1141221379 15044 just about 15 mins guys the mountain alt signal market is doing great today the fomo will be attractive login your binance account and be ready 400 pm gmt 2020-05-26 15:45:21+00:00 1.0 1141221379 15043 the clock is ticking guys hope you all are staying online final 1 hr for the mountain alt signal 400 pm gmt 2020-05-26 15:00:12+00:00 1.0 1141221379 15042 are you online today you better be bcoz only 1 hrs 30 minutes remaining for the mountain alt signal 400 pm gmt 2020-05-26 14:27:09+00:00 1.0 1141221379 14142 if you are not in agi u are going to miss the huge pump buy now and hold and see ur money getting multiplied 2019-11-13 14:32:50+00:00 1.0 1141221379 14014 ‼️attention‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ next post will be coin name pinourchannelontopandbereadyforblast 2019-11-02 17:26:07+00:00 1.0 1141221379 14013 ‼️only 15 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourchannelontopandbereadyforblast 2019-11-02 17:14:50+00:00 1.0 1141221379 14012 ‼️only 30 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourvipchannelontopandbereadyforblast 2019-11-02 17:03:43+00:00 1.0 1141221379 14009 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this megapump doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-02 15:29:36+00:00 1.0 1141221379 14008 attention everyone ‼️only 5 hours left for megasignal ‼️ ❗️❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt pinourchannelontop regards 2019-11-02 12:31:01+00:00 1.0 1141221379 14006 ‼️only 10 hours left for megasignal ‼️ ❗️❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt pinourchannelontop regards 2019-11-02 07:33:43+00:00 1.0 1141221379 14002 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ some information about the most awaited mega signal ‼️exchange binance ❗️❗️date 02112019 ❗️❗️time 530pm gmt pump will be free for all ❗️❗️more than 500k people are going to join this history event and this can be the biggest moment in near future ‼️by the time keep your btc ready for blast and sell your alts as soon as possible ‼️we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc buy hold till our targets achieve pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-11-01 09:03:07+00:00 1.0 1141221379 13934 pump results coin edo low 3800 high 4800 welldone guys more than 26 the power of amazing viewers and buyers cannot go unnoticed keep earning as much as you can✨✨ get ready for the next boom boom✅✅ 2019-10-18 16:56:40+00:00 1.0 1141221379 13931 ‼️final 2 minutes left ‼️ ❗️❗️next post will be coin name with link❗️❗️ staytuned regards 2019-10-18 16:27:20+00:00 1.0 1141221379 13926 ‼️we are going to organise historic signal event today at 430 pm gmt‼️ ❗️❗️exchange binance ❗❗time 0430 pm gmt 1000 pm ist pump will be free for all more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 100200 so be ready with spare btc ❗️❗️only 12 hours left for historic signal event ❗️❗️ pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-10-18 04:35:11+00:00 1.0 1141221379 13924 ‼we are back again with historic signal event‼️ ❗️❗️exchange binance date 18102019 time 430pm gmt pump will be free for all more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-10-16 18:43:58+00:00 1.0 1141221379 13914 pump results coin bnt low 4020 high 5702 welldone guys more than 45 the power of amazing viewers and buyers cannot go unnoticed keep earning as much as you can✨✨ get ready for the next boom boom✅✅ 2019-10-14 17:28:19+00:00 1.0 1141221379 13911 guys post in your free channels next post is coin name 2019-10-14 16:28:09+00:00 1.0 1141221379 13909 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 2x very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 2x ++ bcoz hodlers are the ones who win this crypto game always regards 2019-10-14 15:48:40+00:00 1.0 1141221379 13908 ‼️only 1 hour left for our special call‼️ ❗️❗historic signal event is expected to go 50100 sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 15:31:01+00:00 1.0 1141221379 13907 ‼️only 2 hours left for our special call‼️ ❗️❗historic signal event is expected to go 50100 300k members are joining this historic event sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 14:32:03+00:00 1.0 1141221379 13906 ‼️only 65 hours left for our special call‼️ ❗️❗historic signal event is expected to go 50100 sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 10:04:22+00:00 1.0 1141221379 13899 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ some information about the most awaited historic event exchange time 14102019 430pm gmt pump will be free for all more than 300000 people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon beready4blast ✈✈✈✈ staytuned 2019-10-13 07:46:04+00:00 1.0 1141221379 13895 historic announcement historic binance blast exchange pairing btc pump will be ffa are you nostalgic about the pumps of the golden era of alts here is good news for you we have partnered with the biggest group of that golden era of pumps and we are going to blast on binance later next week by the time keep your btc ready for blast and sell your shits as soon as possible beready4blast ✈✈✈✈ 2019-10-13 06:07:52+00:00 1.0 1141221379 13377 ‼️‼️announcement‼️‼️ we are organizing a binance call today at 1300gmt we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to minimum 2030 this will be zero prepump and free for all time 1300gmt date 180719 exchange binance 2019-07-18 11:32:08+00:00 1.0 1141221379 13174 login binance next post is coin name and link 2019-07-11 15:57:41+00:00 1.0 1141221379 13171 ‼️‼️announcement‼️‼️ binance call in 2hours stay tuned date 11th july ⏱ time 1600pm gmt exchange binance 2019-07-11 14:03:16+00:00 1.0 1141221379 13164 ‼️‼️announcement‼️‼️ we are thinking to organize a binance signal expect profits in short term this time we will choose a low volume coin which will give good profits date 11th july ⏱ time 1600pm gmt exchange binance 2019-07-11 11:19:50+00:00 1.0 1141221379 13068 5mins left login binance next post will be coin name and coin link 2019-07-05 12:25:09+00:00 1.0 1141221379 13063 announcement we are organizing a binance call today at 1230gmt we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 1230gmt date 050719 exchange binance 2019-07-05 10:45:59+00:00 1.0 1141221379 13060 announcement we are organizing a binance call today at 1230gmt we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 1230gmt date 050719 exchange binance 2019-07-05 07:49:50+00:00 1.0 1141221379 12998 5mins left login binance next post is the coin name and link buy and hold for good profits 2019-07-02 16:25:01+00:00 1.0 1141221379 12949 5mins left next post is coin name and the link login binance 2019-06-30 17:26:03+00:00 1.0 1141221379 12948 20mins left for binance pump stay tuned alts market looks good despite of btc we expect this coin to go minimum 30 all you have to do is buy and hold and let fomo enter 2019-06-30 17:10:19+00:00 1.0 1141221379 12884 mth looks a good scalp trade it can pump in a candle n give east 10 profits buy and hold 2019-06-28 06:14:14+00:00 1.0 1141221379 12859 next post coin name and link 2019-06-25 15:59:21+00:00 1.0 1141221379 12850 announcement we are organizing a pump today at 16gmt on binance we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 16gmt date 25062018 exchange binance 2019-06-25 07:12:51+00:00 1.0 1141221379 12822 guess what next pump coin buy and hold oax ive been calling this since yesterday its gonna pump harder its all time low and sitting at support reward vs risk is very high buy and hold 2019-06-20 07:35:37+00:00 1.0 1141221379 12760 5mins left for the pump get ready login binance next post will be the coin name and link 2019-06-17 15:55:02+00:00 1.0 1141221379 12759 45mins left for the pump we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 16gmt date 17062018 exchange binance 2019-06-17 15:14:56+00:00 1.0 1141221379 12757 announcement we are organizing a pump today at 16gmt on binance we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 16gmt date 17062018 exchange binance 2019-06-17 11:06:44+00:00 1.0 1141221379 12738 we observed unsual buying activity on blz in last 24hours looks like blz being accumulated and its heating up for a big pump buy now and hold or see it pumping later 2019-06-15 08:03:12+00:00 1.0 1141221379 12735 buy blz 740750 sell 770790820 stoploss 700 blz ready for breakout big pump incoming on blz hold for 1week and sell in good profits 2019-06-15 08:00:05+00:00 1.0 1141221379 12732 keep an eye on ast looks like its ready for a pump 2019-06-14 18:39:59+00:00 1.0 1141221379 12729 announcement we are organizing a pump today at 16gmt on binance we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 16gmt date 14062018 exchange binance 2019-06-14 11:10:21+00:00 1.0 1141221379 12688 5mins left for binance pump we expect at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all be ready now post is coin name and link 2019-06-11 15:55:11+00:00 1.0 1141221379 12687 announcement 30mins left for binance pump we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 16gmt date 11062018 exchange binance 2019-06-11 15:29:45+00:00 1.0 1141221379 12683 announcement we are organizing a pump today at 16gmt on binance we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 this will be zero prepump and free for all time 16gmt date 11062018 exchange binance 2019-06-11 14:24:50+00:00 1.0 1141221379 12598 5 left for the pump get ready to make some real profits login binance next post will be the coin name 2019-06-05 15:55:04+00:00 1.0 1141221379 12560 5mins left for a pump next post will be the coin name login binance 2019-06-03 15:54:11+00:00 1.0 1141221379 12559 15mins left for a pump the coin will be posted in 15mins stay tuned exchange binance time 16gmt 2019-06-03 15:47:35+00:00 1.0 1141221379 12558 1hour left for a pump be ready to make some massive gains stay tuned the coin will be posted in 1hour exchange binance time16gmt 2019-06-03 15:02:36+00:00 1.0 1141221379 12503 buy cdt 140150 sell 165180200 looks like cdt is ready to pump hard expecting 50 gains in next coming days 2019-05-30 05:38:17+00:00 1.0 1141221379 12223 binance pump announcements coin name and link 2019-05-17 15:58:12+00:00 1.0 1141221379 12219 binance pump announcements hello everyone the next official pump date will be scheduled for date friday may 17 ⏰time 1600 pm gmt exchange binance everything is in our favor for a great pump if the market conditions are the same on friday and if our volume is big enough we can create one of the biggest pumps binance has seen recently and for this we need as many people as possible to participate spread the word 2019-05-17 09:27:38+00:00 1.0 1141221379 12205 binance pump announcements rdn on fire buy and hold big support by whale coming lets moon 2019-05-15 14:59:57+00:00 1.0 1141221379 12204 binance pump announcements next post coin name and link 2019-05-15 14:58:50+00:00 1.0 1141221379 12202 binance pump announcements less than 30 mins left the market is full of green dont miss signal today guys 2019-05-15 14:29:41+00:00 1.0 1141221379 12197 xrp army all set you know what happens next a big pump incoming on xrp buy around 5k and sell around 550060007000800010000 hope u remember how this shit pumped hard last time get in and hold 2019-05-14 14:26:38+00:00 1.0 1141221379 12194 binance pump announcements ⏰ thời gian 22h việt nam ngày 15052019 exchange binance hỗ trợ bởi telegram discrod binance team binance pump announcements ⏰ time 15h gmt date 15052019 exchange binance support by telegram discrod binance team 2019-05-14 13:46:42+00:00 1.0 1141221379 12173 binance pump announcements we will give coin name there 15 mins left stay tuned 2019-05-13 14:44:26+00:00 1.0 1141221379 12171 the next message will be sent after 60 minutes of the coin pump today exchange binance 2019-05-13 14:09:43+00:00 1.0 1141221379 12170 binance pump announcements ⏰ time 15h gmt date 13052019 exchange binance support by telegram discrod binance team make ur balance binance big ready pump 2019-05-13 10:09:36+00:00 1.0 1141221379 12107 binance pump announcements ⏰ time 22h gmt date 08052019 exchange binance support by telegram discrod binance team expect 3050 profit 2019-05-07 18:05:19+00:00 1.0 1141221379 11896 fuel looks ready to pump 2019-03-26 16:42:53+00:00 1.0 1141221379 11442 npxs looks ready for a mega pump 2019-02-05 09:43:43+00:00 1.0 1141221379 11259 buy ptoy ptoy buy and hold dont sell early this coin we giving big support u can see and it will moon 2019-01-17 11:52:53+00:00 1.0 1141221379 11230 buy ion buy and hold dont sell early this coin we giving big support u can see and it will moon we will give more support 2019-01-16 11:58:57+00:00 1.0 1141221379 11222 ⏳announcement⏳ today we will announce the coin which has a great potential to give huge profit in short period of time all you need to do is buy the coin fast and sell at the given targets exchange bittrex time 12h gmt 2019-01-16 06:33:22+00:00 1.0 1141221379 10477 npxs the only low sat which didnt pump yet buy it if u dont have it 2018-09-24 19:14:41+00:00 1.0 1141221379 10259 place ur buy bid at 0026 level it should be completed in upcoming weeks or months before going to big pump again current price 0031 2018-09-09 18:17:49+00:00 1.0 1141221379 10016 hi guys ‍♂️‍♂️‍♂️ we will give you the massive pump today binance exchange less than 3h our massive pump our massive pump have the best quality thats true why because our massive pump have 3 criterias as below 1 no prepump 2 no dump hard 3 help full support always so pin our channel on top and lets ready make money please read the pinned post for all details 2018-08-24 13:03:39+00:00 1.0 1141221379 9965 next post will be the coin name and link 2018-08-20 14:26:18+00:00 1.0 1141221379 9962 1hour left for our huge signal we will be sharing the coin name in just one hour this coin will give you massive profit dont miss out stay tuned 2018-08-20 13:33:15+00:00 1.0 1141221379 9961 2 hours left for our huge signal get ready to make some real profit the gem will be announced in just 2 hours buy fast and hold for targets stay tuned 2018-08-20 12:30:19+00:00 1.0 1141221379 9958 3 hours left for our huge signal dont miss the opportunity to earn btc we will share a gem today 1430pm gmt get ready with your binance accounts to make huge profits stay tuned 2018-08-20 11:31:15+00:00 1.0 1141221379 9954 binance huge call announcement hi guys we decided to share a special gem on 20th august at 1430pm gmt one first huge signal coming today exchange binance time 1430pm gmt date 20 august 2018 coin name will be posted directly on the channel transfer funds to binance and do not miss the chance to make 50100 profits 2018-08-20 06:31:09+00:00 1.0 1141221379 9948 binance huge call announcement hi guys we decided to share a special gem on 20th august at 1430pm gmt one first huge signal coming tomorrow exchange binance time 1430pm gmt date 20 august 2018 coin name will be posted directly on the channel transfer funds to binance and do not miss the chance to make 50100 profits 2018-08-19 15:34:07+00:00 1.0 1141221379 8102 nasdaq crypto exchange is going to be launch during this month june only 17 days left until nasdaq coming to crypto as i mentioned in my previous postnasdaq got 9trillion marketcap think about only 5 of this money comes to crypto big pump is on the way 2018-06-12 03:29:50+00:00 1.0 1141221379 7967 coin name swt buy fast and hold 2018-05-29 12:59:52+00:00 1.0 1141221379 7915 buy pro it will moon i will pump 250 until tomorrow dont panic sell always buy under 5btc below 프로피 매수하세요 저희는 내일까지 250퍼센트 이상펌핑을 시킬에정입니다 패닉셀하지마시고 5btc이내에서만 구매부탁드립니다 천천히 주워담으시길 바랍니다 2018-05-25 12:00:28+00:00 1.0 1141221379 7574 coin name grs listing news exchange 2018-05-10 06:00:00+00:00 1.0 1141221379 7573 next post coin name and link buy and hold with max profit big news coming 2018-05-10 05:58:02+00:00 1.0 1141221379 7571 less than 15 mins remaining for binance special call time 6h gmt ♻️ exchange binance date today 2018-05-10 05:45:03+00:00 1.0 1141221379 7560 ‼️dear everyone the market is still very prone to strong unrest and its too early to say about a sure recovery but there is an excellent opportunity to pick up coins of promising projects that are at the bottom so we will give best signal of week today it will be announced at 0600 gmt exchange binance that coin is not a pump signal but it is the best signal that our expert team have analyzed thoroughly based on technical analysis and fundamental analysis target 30 100 2018-05-10 03:20:08+00:00 1.0 1141221379 7512 coin name mth buy and hold huge profit 2018-05-07 15:00:00+00:00 1.0 1141221379 7511 next post coin name and link big news and analysis 2018-05-07 14:58:31+00:00 1.0 1141221379 7509 less than 15 mins remaining for binance pump time 15h gmt 24h korean ♻️ exchange binance date today note for all free binance pump 2018-05-07 14:45:05+00:00 1.0 1141221379 7507 less than 1h remaining for binance pump time 15h gmt 24h korean ♻️ exchange binance date today 2018-05-07 14:01:42+00:00 1.0 1141221379 7480 were sharing a special gem today at 15h gmt instructions ✔️ we will send out our super coin at 15h gmt today ✔️ after we send out the signal you need buy the coin with btc on binance ✔️ hold your coins while outsiders come in so the price can gradually go up so we can sell for great profits more information on our upcoming pump we collaborated with some the biggest groups on telegram to bring you our super pumb if you want to make a whopping 100 profit you must work with us that means buying early and not selling until a few hours later when we hit 100150 dont make the mistake of selling too early only to see the coin do another big jump right after you sold if we all hodl everybody gets higher profits in return thats why we keep insisting you buy and hodl good things take some time transfer funds to binance and pinunmute our channel so that you get a notification when the coin is posted ➰time 15h gmt ➰date 07 may 2018 ➰exchange binance 2018-05-07 05:48:12+00:00 1.0 1141221379 7423 coin name rlc 매수하세요 호재거리와 차트분석을 드리겠습니다 exchange bittrex upbit buy and hold great news and ta below 2018-05-03 13:00:00+00:00 1.0 1141221379 7422 다음포스팅되는 코인과 링크입니다 next post coin name and link 2018-05-03 12:58:30+00:00 1.0 1141221379 7415 1h left 와서 큰 펌프 신호 발표 1h left come big pump signal announcement the markets looking very nice so we will announce big pump signal 1시간뒤에 큰 상승이 기대되는 시그널을 드립니다 지켜보세요 중기 적으로 2x5x 예상 계속 지켜봐야 할 남자 시간 2200 korean 오늘 교환하다 bittrex upbit 팀 korean whales 2018-05-03 12:00:18+00:00 1.0 1141221379 7412 4h left 와서 큰 펌프 신호 발표 4h left come big pump signal announcement the markets looking very nice so we will announce big pump signal 4시간뒤에 큰 상승이 기대되는 시그널을 드립니다 지켜보세요 중기 적으로 2x5x 예상 계속 지켜봐야 할 남자 시간 2200 korean 오늘 교환하다 bittrex upbit 팀 korean whales 2018-05-03 09:03:27+00:00 1.0 1141221379 7405 we will soon share the signal with good basic analysis estimated 2x5x over the medium term a man to keep watching time 2200 korean 100pm gmt exchange bittrex upbit 우리는 곧 신호를 공유 할 것입니다 좋은 기본 분석으로 중기 적으로 2x5x 예상 계속 지켜봐야 할 남자 시간 2200 korean100pm gmt 교환하다 bittrex upbit 팀 korean whales 2018-05-03 05:22:55+00:00 1.0 1141221379 7176 10 분뒤 큰상승이 기대되는 시그널을 드리도록 하겠습니다 거래소 비트랙스 업비트 시간 1230시 gmt 오후 2130시 한국시간 less than 10 mins to our pump coin exchange bittrex upbit time 1230h gmt 2130h korean asian team whales 2018-04-26 12:20:01+00:00 1.0 1141221379 7175 30분뒤 큰상승이 기대되는 시그널을 드리도록 하겠습니다 거래소 비트랙스 업비트 시간 1230시 gmt 오후 2130시 한국시간 less than 30 mins to our pump coin exchange bittrex upbit time 1230h gmt 2130h korean asian team whales 2018-04-26 12:00:00+00:00 1.0 1141221379 7148 ‼️ big announce today well share one of our favorite gem today 저희팀이 분석한 코인중 상승세가 가장 강력해보이는 코인을 오후 9시 30분에 공개하려 합니다 last signal was a success and we want everybody to do a stronger effort to make this pump a whopping success 저번 시그널또한 성공적이었습니다 여러분들이 모두 수익을 얻으셨으면 합니다 the coin in question can do x3 anytime soon 이 코인은 언제든지 3배로 뛸수있는 잠재성을 가지고 있습니다 read the pinned message for details how to make more profits ⏳ time 1230h gmt time 2130h korean ⚖️ exchange bittrex upbit participants 700000 people in crypto goal 200300 advantage the pump will be freeforall ffa transfer funds to bittrex and pinunmute our channel to get notified about the coin name first asian team whales 2018-04-25 17:08:00+00:00 1.0 1141221379 7057 coin name btc dmt bittrex dmt upbit dmt asian team whales 2018-04-22 12:59:59+00:00 1.0 1141221379 7053 30분뒤 큰상승이 기대되는 시그널을 드리도록 하겠습니다 거래소 비트랙스 업비트 시간 13시 gmt 오후 22시 한국시간 less than 30 mins to our pump lighting coin exchange bittrex upbit time 1300h gmt 22h korean asian team whales 2018-04-22 12:30:21+00:00 1.0 1141221379 7043 거래소 비트랙스 업비트 시간 13시 gmt 오후 22시 한국시간 less than 7h to our pump lighting coin exchange bittrex upbit time 1300h gmt 22h korean asian team whales 2018-04-22 06:00:02+00:00 1.0 1141221379 7026 today youve seen btc and alts dropping its not bad that is the momentum for a strong rebound in a short time 알트코인과 비트코인은 큰하락세를 보여주고 있지않았습니다 이는 큰 상승을 위한 모멘텀입니다 we are here and we look forward to bringing u a coin with strong incremental steps 큰 상승세가 예상되는 코인을 여러분에게 다시 소개해드리겠습니다 exchange bittrex upbit 거래소 비트렉스 업비트 time 1300h gmt 2200h korean date 22 apr 2018 advantage the pump will be freeforall ffa so dont forget our next pumb tomorrow plz read carefully our announcement 잊지말고 내일 저희채널에 집중해주세요 asian team whales 2018-04-21 16:18:36+00:00 1.0 1141221379 6992 login ur bittrex upbit next post coin name and link 귀하의 계정에 로그인하여 준비하십시오 btc market 2018-04-20 13:58:15+00:00 1.0 1141221379 6991 last pump our team pumped bat 1000+vol btc so dont skip huge profit with us asian team 2018-04-20 13:54:47+00:00 1.0 1141221379 6989 30분뒤 큰상승이 기대되는 시그널을 드리도록 하겠습니다 거래소 비트랙스 업비트 시간 13시 gmt 오후 22시 한국시간 less than 30 mins to our pump volcanic coin exchange bittrex upbit time 1400h gmt 23h korean asian team whales 2018-04-20 13:30:05+00:00 1.0 1141221379 6988 부득이한 상황으로 큰상승 예상 코인 공개는 1시간 미루어져 오후 11시에 공개하도록 하겠습니다 감사합니다 hi everyone we know u dont like delay but today volcanic coin was prepumped our team dont want guys lost money bcoz it so we will delay 1h sorry for delay exchange bittrex upbit time 1400h gmt 23h korean 2018-04-20 12:48:41+00:00 1.0 1141221379 6987 30분뒤 큰상승이 기대되는 시그널을 드리도록 하겠습니다 거래소 비트랙스 업비트 시간 13시 gmt 오후 22시 한국시간 less than 30 mins to our pump volcanic coin exchange bittrex upbit time 13h gmt 22h korean asian team whales 2018-04-20 12:30:09+00:00 1.0 1141221379 6985 dear members we comeback after many big success with shift lrc and especially bat with top 1 bittrex and reached more than 9 million dollar volume we hope all guys have huge profit with our signal 여러분 시프트 루프링에이어서 베이직 어탠션토큰은 비트렉스에서 상승률 1위를 기록했습니다 저희의 시그널로 여러분이 수익을 보고 계셨으면 좋겠습니다 so dont forget our next pumb tomorrow plz read carefully our announcement 내일 잊지말고 채널에 주목해주세요 one more super coin coming tomorrow exchange bittrex upbit time 1300h gmt 2200h korean date 19 apr 2018 advantage the pump will be freeforall ffa coin name will be posted directly on the channel 코인은 채널에 포스팅됩니다 transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal asian team whales 2018-04-20 11:10:12+00:00 1.0 1141221379 6917 안녕하세요 저희가 다시 왔습니다 여러분들이 shift 와 lrc 코인의 펌핑을 기억해주셨으면 좋겠습니다 내일 다시 펌핑을 시작합니다 이 말에 집중해주세요 we are comeback we hope all guys have huge profit in last our pumb with shift and lrc so dont forget tomorrow plz read our announcement 1 more super coin coming tomorrow exchange bittrex upbit time 1300h gmt 2200h korean date 18 apr 2018 advantage the pump will be freeforall ffa coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal asian team whales 2018-04-17 15:45:14+00:00 1.0 1141221379 6865 장이 회복세를 보이고 있습니다 비트렉스에서 신규자금이 들어오면서 모두가 이득이 될수있도록 시그널을 드릴예정입니다 ‼️ guys bittrex reopened registrations for new users its look like the big money flows will be invested in this exchange and the most important is that market is bullish again so we have scheduled the pump tomorrow to help everyone to have huge profit exchange bittrex upbit time 1300h gmt 2200h korean date 16 apr 2018 advantage the pump will be freeforall ffa coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal asian team whales 2018-04-15 16:04:34+00:00 1.0 1141221379 6846 next post coin name and link 다음 게시판 이름 및 링크 2018-04-14 13:29:52+00:00 1.0 1141221379 6840 4h left 장이 회복세를 보이고 있습니다 비트렉스에서 신규자금이 들어오면서 모두가 이득이 될수있도록 시그널을 드릴예정입니다 ‼️ guys bittrex reopened registrations for new users its look like the big money flows will be invested in this exchange and the most important is that market is bullish again so we have scheduled the pump today to help everyone to have huge profit exchange bittrex upbit time 1330hgmt 2230h korean 2018-04-14 09:55:24+00:00 1.0 1141221379 6831 ‼️ guys bittrex reopened registrations for new users its look like the big money flows will be invested in this exchange and the most important is that market is bullish again so we have scheduled the pump today to help everyone to have huge profit ⏰time 13h30 pm gmt 14 april 2018 exchange bittrex upbit advantage the pump will be freeforall ffa coin name will be posted directly on the channel you can buy and hold that coin until 100200 profit if you sell earlier you will lose we will choose the best coin from the bottom so that everyone will be able to double their btc transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal get ready 2018-04-14 04:20:24+00:00 1.0 1141221379 6599 5 mins left to mega pump dont forget login on binance 2018-04-03 15:55:01+00:00 1.0 1141221379 6598 less than 15 mins to our mega pump stay tuned guys 2018-04-03 15:45:03+00:00 1.0 1141221379 6597 less than 30 mins to our mega pump stay tuned guys 2018-04-03 15:30:00+00:00 1.0 1141221379 6551 4 minutes to go for announcement of our x2 news support coin on binance login to binance next message will be coin name link with targets dont sell for less hodl attract others earn pin this channel so that you dont miss the coin be ready 2018-04-02 13:56:40+00:00 1.0 1141221379 6550 only 10 minutes left for our x2 coin on binance will share a news based strong support coin login to binance 2018-04-02 13:50:55+00:00 1.0 1141221379 6549 get ready guyz 30 minutes left for our x2 signal binance get ready with your btc on binance get ready to recover your loss from recent btc crash pinourchannelontop stay tuned 2018-04-02 13:30:13+00:00 1.0 1141221379 6172 next post coin name and link dont forget login 2018-03-19 14:58:04+00:00 1.0 1141221379 6170 less than 15 mins come binance today we will announce pump signal at 1500 gmt time special whales coming nearly unmute the channel stay tuned 2018-03-19 14:45:04+00:00 1.0 1141221379 6166 less than 30mins come binance today we will announce pump signal at 1500 gmt time special whales coming nearly unmute the channel stay tuned 2018-03-19 14:30:03+00:00 1.0 1141221379 6156 ☎️☎️ hi everyone plz read and rdy ‼️next mega hold signal binance ‼️ date 19 march ⏰ time 1500 gmt ◼️сouple btc exchange ➖ binance ⏱ countdown we will create big btc on coin hope everyone make big profit 2018-03-19 04:25:11+00:00 1.0 1141221379 6053 ☎️☎️ hi everyone plz read and rdy ‼️next mega hold signal binance ‼️ date 15 march ⏰ time 1630 gmt ◼️сouple btc exchange ➖ binance ⏱ countdown we will crete big btc on coin hope everyone make big profit 2018-03-14 15:05:38+00:00 1.0 1141221379 5150 today we have big signal on bittrex with chart and analysis which can give u 2x to 3x profit in coming days time around 2 pm gmt to 3 pm gmt coin will be posted anytime here stay tuned here with ur bittrex 2018-01-23 11:47:42+00:00 1.0 1141221379 5063 less than 1 min coin big bang the strongest this year will coming here next post coin name nd link 2018-01-19 12:59:00+00:00 1.0 1141221379 5039 be rdy today less than 6h time 1300 gmt 19012018 exchange bittrex coins will “big bang” the strongest this year the crypto community is eagerly waiting for it this is a coin we have analyzed very carefully it is highly appreciated by crypto professionals in the near future with the high availability of the 3x5x with the latest news and accurate analysis we will send you watch here if you do not want to regret it 2018-01-19 06:00:01+00:00 1.0 1141221379 5038 signal announcement today 19012018 time 1300 gmt exchange bittrex more than 300k members on telegram nd more in fb twitter guys we have arranged 1 big signal for you with lots of upcoming news its boom today very fast and powerful do not miss it if u want make huge btc pinourchannel to top so you will not miss this signal 2018-01-19 05:30:55+00:00 1.0 1141221379 4902 next post coin name and link 2018-01-12 12:29:02+00:00 1.0 1141221379 4896 be rdy 1h left signal announcement today 12012018 time 1230 gmt exchange bittrex more than 300k members on telegram nd more in fb twitter guys we have arranged 1 big signal for you with lots of upcoming news its boom today very fast and powerful do not miss it if u want make huge btc pinourchannel to top so you will not miss this signal 2018-01-12 11:30:03+00:00 1.0 1141221379 4894 be rdy 2h left signal announcement today 12012018 time 1230 gmt exchange bittrex more than 300k members on telegram nd more in fb twitter guys we have arranged 1 big signal for you with lots of upcoming news its boom today very fast and powerful do not miss it if u want make huge btc pinourchannel to top so you will not miss this signal 2018-01-12 10:30:02+00:00 1.0 1141221379 4891 be rdy 330h left signal announcement today 12012018 time 1230 gmt exchange bittrex more than 300k members on telegram nd more in fb twitter guys we have arranged 1 big signal for you with lots of upcoming news its boom today very fast and powerful do not miss it if u want make huge btc pinourchannel to top so you will not miss this signal 2018-01-12 09:00:06+00:00 1.0 1141221379 4890 signal announcement today 12012018 time 1230 gmt exchange bittrex more than 300k members on telegram nd more in fb twitter guys we have arranged 1 big signal for you with lots of upcoming news its boom today very fast and powerful do not miss it if u want make huge btc pinourchannel to top so you will not miss this signal 2018-01-12 07:46:20+00:00 1.0 1141221379 4700 next post will be coin name stay tuned 2018-01-05 12:56:14+00:00 1.0 1141221379 4698 annoucement for signals despite btc crashing down and up we managed to find coins that you can invest in this crash and can make some profits in this up and downtrends so we have decided to give strong news based potential coin which can give 2x3x in short period of time our expert will found this coin will be releasing the coin name with chart around time 13 pm gmt 25 min leftstay tuned stay online that time and pin our channel to top 2018-01-05 12:37:03+00:00 1.0 1141221379 4686 annoucement for signals despite btc crashing down and up we managed to find coins that you can invest in this crash and can make some profits in this up and downtrends so we have decided to give strong news based potential coin which can give 2x3x in short period of time our expert will found this coin will be releasing the coin name with chart around time 13 pm gmt exchange bittrex stay online that time and pin our channel to top 2018-01-05 05:32:54+00:00 1.0 1141221379 4615 next post coin name and link big bang coming 2018-01-03 13:29:00+00:00 1.0 1141221379 4614 less then 5 minutes left in big potential coin be ready 2018-01-03 13:25:03+00:00 1.0 1141221379 4613 less then 15 minutes left in big potential coin be ready 2018-01-03 13:15:04+00:00 1.0 1141221379 4612 less than 30 minutes left in big potential coin be ready 2018-01-03 13:00:06+00:00 1.0 1141221379 4610 be ready friends only 1 hours left we have organized big signal today for big profit for our members more then 102k members are participating in this signal and its going to be really huge our last signal were blitz 180 profit byc 100 profit signal time 1330 gmt platform bittrex for getting most profit hold coin and promote it on twitter facebook and telegram chats coin name will be announced in 1 hour 2018-01-03 12:30:04+00:00 1.0 1141221379 4609 be ready friends only 2 hours left we have organized big signal today for big profit for our members more then 102k members are participating in this signal and its going to be really huge our last signal were blitz 180 profit byc 100 profit signal time 1330 gmt platform bittrex for getting most profit hold coin and promote it on twitter facebook and telegram chats coin name will be announced in 2 hour 2018-01-03 11:30:04+00:00 1.0 1141221379 4528 next post is the coin name 2018-01-01 12:19:33+00:00 1.0 1141221379 3953 coin name incnt exchange bittrex target1 2000 target2 2200 target3 2500 incnt 2017-12-17 10:27:49+00:00 1.0 1141221379 3761 next post is coin name 2017-12-12 12:59:29+00:00 1.0 1141221379 3648 signal coinexchange coin name btc excl 2017-12-09 16:30:02+00:00 1.0 1141221379 3636 huge signal announcement coinexchange exchange coinexchange date 091217 time 1630 gmt ⚡️we are expecting a huge grow 1000 2000⚡️ if you do not have an account on coinexchange go and sign up and put some btc ref +coinexchange+news+fontcursive 2017-12-09 14:30:02+00:00 1.0 1141221379 3512 huge signal announcement coinexchange exchange coinexchange date 071217 time 1400 gmt ⚡️we are expecting a huge grow 1000 2000⚡️ if you do not have an account on coinexchange go and sign up and put some btc ref 2017-12-07 10:05:48+00:00 1.0 1141221379 3451 buy fast coin name btc cdx 2017-12-06 15:00:04+00:00 1.0 1141221379 3427 huge signal announcement coinexchange exchange coinexchange date 061217 time 1500 gmt ⚡️we are expecting a huge grow 1000 2000⚡️ if you do not have an account on coinexchange go and sign up and put some btc 2017-12-06 07:45:27+00:00 1.0 1141221379 3302 huge signal announcement coinexchange exchange coinexchange date 041217 time 1530 gmt ⚡️we are expecting a huge grow 1000 2000⚡️ if you do not have an account on coinexchange go and sign up and put some btc last our signal gold 2000+ made 13vol btc asn 1450 made 47vol btc pix 300 made 39vol btc ref here coinexchangeio 2017-12-04 11:14:34+00:00 1.0 1141221379 3203 huge signal announcement coinexchange exchange coinexchange date 041217 time 1530 gmt ⚡️we are expecting a huge grow 1000 2000⚡️ if you do not have an account on coinexchange go and sign up and put some btc last our signal gold 2000+ made 13vol btc asn 1450 made 47vol btc pix 300 made 39vol btc ref here coinexchangeio 2017-12-03 09:25:45+00:00 1.0 1141221379 3190 omg guys support is really damn strong at 80k satoshi in omg chart looks promising also i m waiting for breakout triangle then it willl pump hard 2017-12-03 07:12:39+00:00 1.0 1141221379 3132 coin name btc pix buy good coin n news coming soon 2017-12-02 15:00:04+00:00 1.0 1141221379 3131 guys be ready coin name 1 min 2017-12-02 14:59:03+00:00 1.0 1141221379 2918 next pump coinexchange less than 1 min huge profit more than 1000 2017-11-28 14:59:02+00:00 1.0 1141221379 2904 be ready for todays coinexchange pump it will give u x2x3 profits stay tuned ♥️ 2017-11-28 11:20:51+00:00 1.0 1141221379 2903 huge pump announcement + 1000 profit — exchange coinexchange — date 281117 — time 1500 gmt — we are expecting a huge grow 500 1000 if you do not have an account on coinexchange go and sign up and put some btc register here 2017-11-28 11:20:01+00:00 1.0 1141221379 2858 huge pump announcement + 1000 profit — exchange coinexchange — date 281117 — time 1500 gmt — we are expecting a huge grow 500 1000 if you do not have an account on coinexchange go and sign up and put some btc register here 2017-11-27 07:58:12+00:00 1.0 1141221379 2846 huge pump announcement + 1000 profit — exchange coinexchange — date 281117 — time 1500 gmt — we are expecting a huge grow 500 1000 if you do not have an account on coinexchange go and sign up and put some btc register here 2017-11-26 18:25:09+00:00 1.0 1141221379 2473 coin name incnt exchange bittrex incnt 2017-11-20 14:29:36+00:00 1.0 1141221379 2355 big massive signal pump coming soon less than 1h 2017-11-18 12:30:12+00:00 1.0 1141221379 2354 guys today we have big massive signal pump so be ready around 1330gmt +pumpfontcursive 2017-11-18 10:28:54+00:00 1.0 1141221379 2284 buy gup with all the alt coins going down gup is one coin that has great potential its test net is getting released very soon and its main net will be released next month 2017-11-17 12:49:45+00:00 1.0 1141221379 1781 coin name announce after 5 min 2017-11-04 15:41:43+00:00 1.0 1141221379 1780 will post coin name now 2017-11-04 15:29:20+00:00 1.0 1141221379 1596 5 minutes left till the vip signal on bittrex do not forget to log in to bittrex next post will be the picture of the coinand coin link 2017-10-31 13:25:29+00:00 1.0 1141221379 1595 15 minutes left till vip signal on bittrex 2017-10-31 13:15:30+00:00 1.0 1141221379 1519 announcement ⚠️1 hour 15mins left⚠️ date 30 oct ⏰ time 1400 gmt ⌚️ vip signal exchange bittrex we will provide you powerful signal buy and hold for targets 2017-10-30 12:45:56+00:00 1.0 1141221379 1358 i will post coin image and then coin name 2017-10-27 12:28:41+00:00 1.0 1141221379 1357 the flash signal on bittrex will come after 5 minutes be ready and do not forget to log in 2017-10-27 12:25:13+00:00 1.0 1141221379 933 coin lrc exchange coinexchangeio dear members purchase and hodl the coin dont create sell walls we hope u know our previous signal results voise 400 blas 495 today we will cross 500 2017-10-08 16:45:32+00:00 1.0 1141221379 832 super hodl will be in 15 minutes at 0200 pm gmt 0730 pm ist exchange bittrex login in your bittrex sell your alts prepare your btc to go high 2017-10-05 13:45:14+00:00 1.0 1141221379 524 its not pump and dump you can buy and hold 2017-09-27 16:55:26+00:00 1.0 1121631209 5608 coin signals for kucoin exchange follow us for best pump tracking service on kucoin ✅ signal low level for max profit ✅ high accuracy 100 ✅ signal before pump ✅ short term and quick profit signals only ✅ high end profit in short time trade with us for high end profit join fast link is open for few minutes only +dna5vebdq0mwmdu1 2022-01-13 05:06:13+00:00 1.0 1121631209 5555 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy for max profit on kucoincom 2020-10-31 16:55:04+00:00 1.0 1121631209 5554 ℹ️ 10 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:50:05+00:00 1.0 1121631209 5553 ℹ️ 20 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:40:07+00:00 1.0 1121631209 5552 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2020-10-31 16:30:03+00:00 1.0 1121631209 5551 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 16:00:06+00:00 1.0 1121631209 5550 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 15:00:07+00:00 1.0 1121631209 5549 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 13:00:04+00:00 1.0 1121631209 5548 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 11:00:48+00:00 1.0 1121631209 5547 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 09:00:03+00:00 1.0 1121631209 5546 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt indian time 1030 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2020-10-31 04:03:06+00:00 1.0 1121631209 5538 pump results coin was loom low 144 high 399 welldone guys more than 2 x times repump count ✨3rd ✨time on your massive request analysis you need to create lower sell orders guys rather than dumping on buy orders dumping on buy orders generate red colors which fails the pump and prevent outsiders joining our pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-05-19 17:17:52+00:00 1.0 1121631209 5531 the coin to pump is loom exchange yobitnet target +200300 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-05-19 17:00:03+00:00 1.0 1121631209 5530 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-05-19 16:55:03+00:00 1.0 1121631209 5529 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-05-19 16:50:03+00:00 1.0 1121631209 5528 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-05-19 16:40:03+00:00 1.0 1121631209 5527 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-05-19 16:30:03+00:00 1.0 1121631209 5526 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 16:00:18+00:00 1.0 1121631209 5525 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 15:00:10+00:00 1.0 1121631209 5524 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 13:00:04+00:00 1.0 1121631209 5523 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-05-19 11:00:09+00:00 1.0 1121631209 5522 ℹ coin signal information ℹ date tuesday 190520 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-05-19 09:00:08+00:00 1.0 1121631209 5521 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19052020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-05-19 06:07:44+00:00 1.0 1121631209 5520 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190520 tuesday time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-05-18 18:29:52+00:00 1.0 1121631209 5517 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-22 17:31:32+00:00 1.0 1121631209 5516 pump results coin was aoa low 16 high 53 welldone guys 3 x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-22 17:20:19+00:00 1.0 1121631209 5509 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-22 17:00:41+00:00 1.0 1121631209 5508 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-22 16:55:02+00:00 1.0 1121631209 5507 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-22 16:50:05+00:00 1.0 1121631209 5506 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-22 16:40:09+00:00 1.0 1121631209 5505 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-22 16:30:07+00:00 1.0 1121631209 5504 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 16:00:05+00:00 1.0 1121631209 5503 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 15:00:13+00:00 1.0 1121631209 5502 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 13:00:04+00:00 1.0 1121631209 5501 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-22 11:00:11+00:00 1.0 1121631209 5500 ℹ coin signal information ℹ date wednesday 220420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-22 09:00:06+00:00 1.0 1121631209 5499 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 22042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-22 05:53:16+00:00 1.0 1121631209 5497 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-19 18:21:39+00:00 1.0 1121631209 5496 pump results coin was wpr open 70 high 206 welldone guys 3 x times on your demandwe listen you guys repump count 3rd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-19 17:36:43+00:00 1.0 1121631209 5489 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-19 17:00:04+00:00 1.0 1121631209 5488 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-19 16:55:02+00:00 1.0 1121631209 5487 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-19 16:50:04+00:00 1.0 1121631209 5486 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-19 16:40:02+00:00 1.0 1121631209 5485 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-19 16:30:05+00:00 1.0 1121631209 5484 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 16:00:13+00:00 1.0 1121631209 5483 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 15:00:07+00:00 1.0 1121631209 5482 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 13:00:05+00:00 1.0 1121631209 5481 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-19 11:00:09+00:00 1.0 1121631209 5480 ℹ coin signal information ℹ date sunday 190420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-19 10:00:16+00:00 1.0 1121631209 5479 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19042020 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-19 08:38:30+00:00 1.0 1121631209 5478 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190420 sunday time 5 pm gmt 2020-04-18 18:14:49+00:00 1.0 1121631209 5476 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins which naturally rise by the time 2020-04-14 17:51:48+00:00 1.0 1121631209 5475 pump results coin was snt low 222 high 440 welldone guys almost 2x timed on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin we dont pump scam coins we pump strong coins which naturally rise by the time ✅ 2020-04-14 17:45:35+00:00 1.0 1121631209 5468 the coin to pump is snt exchange yobitnet target +100200 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-14 17:00:05+00:00 1.0 1121631209 5467 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-14 16:55:02+00:00 1.0 1121631209 5466 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-14 16:50:04+00:00 1.0 1121631209 5465 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-14 16:40:02+00:00 1.0 1121631209 5464 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-14 16:30:02+00:00 1.0 1121631209 5463 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 16:00:05+00:00 1.0 1121631209 5462 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 15:00:15+00:00 1.0 1121631209 5461 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 13:00:18+00:00 1.0 1121631209 5460 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-14 11:00:04+00:00 1.0 1121631209 5459 ℹ coin signal information ℹ date tuesday 140420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-14 10:00:12+00:00 1.0 1121631209 5458 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 14042020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-14 08:16:40+00:00 1.0 1121631209 5456 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt 2020-04-11 03:11:14+00:00 1.0 1121631209 5455 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-10 17:35:49+00:00 1.0 1121631209 5454 pump results coin was wpr open 70 high 210 welldone guys 3 x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-10 17:27:39+00:00 1.0 1121631209 5447 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-10 17:00:02+00:00 1.0 1121631209 5446 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-10 16:55:02+00:00 1.0 1121631209 5445 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-10 16:50:03+00:00 1.0 1121631209 5444 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-10 16:40:04+00:00 1.0 1121631209 5443 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-10 16:30:02+00:00 1.0 1121631209 5442 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 16:00:02+00:00 1.0 1121631209 5441 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 15:00:02+00:00 1.0 1121631209 5440 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 13:00:08+00:00 1.0 1121631209 5439 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-10 11:00:04+00:00 1.0 1121631209 5438 ℹ coin signal information ℹ date friday 100420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-10 10:00:09+00:00 1.0 1121631209 5437 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10042020 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-10 07:50:29+00:00 1.0 1121631209 5435 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 100420 day friday time 5 pm gmt 2020-04-09 09:23:17+00:00 1.0 1121631209 5434 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-08 04:05:55+00:00 1.0 1121631209 5433 pump results coin was mth low 85 high 185 welldone guys more than 2 x times on your demandwe listen you guys repump count 5th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-04 22:41:57+00:00 1.0 1121631209 5428 the coin to pump is mth exchange yobitnet target +100 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-04 17:01:02+00:00 1.0 1121631209 5425 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-04 16:55:02+00:00 1.0 1121631209 5424 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-04 16:50:02+00:00 1.0 1121631209 5423 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-04 16:40:02+00:00 1.0 1121631209 5422 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-04 16:30:02+00:00 1.0 1121631209 5421 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 16:00:06+00:00 1.0 1121631209 5420 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 15:00:16+00:00 1.0 1121631209 5419 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 13:00:02+00:00 1.0 1121631209 5418 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-04 11:00:15+00:00 1.0 1121631209 5417 ℹ coin signal information ℹ date saturday 040420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-04 10:00:17+00:00 1.0 1121631209 5416 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 04042020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-04 09:00:06+00:00 1.0 1121631209 5415 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 040420 day saturday time 5 pm gmt 2020-04-03 16:27:39+00:00 1.0 1121631209 5413 pump results coin was aoa open 22 high 70 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-01 17:16:20+00:00 1.0 1121631209 5408 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-01 17:00:17+00:00 1.0 1121631209 5405 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-01 16:55:04+00:00 1.0 1121631209 5404 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-01 16:50:04+00:00 1.0 1121631209 5403 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-01 16:40:05+00:00 1.0 1121631209 5402 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-01 16:30:04+00:00 1.0 1121631209 5401 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 16:00:07+00:00 1.0 1121631209 5400 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 15:00:06+00:00 1.0 1121631209 5399 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 13:00:18+00:00 1.0 1121631209 5398 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-01 11:00:12+00:00 1.0 1121631209 5397 ℹ coin signal information ℹ date wednesday 010420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-01 10:00:16+00:00 1.0 1121631209 5396 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-01 08:00:04+00:00 1.0 1121631209 5393 pump results coin was fun open 40 high 128 welldone guys more than 3x times repump count ✨8th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-03-28 17:28:34+00:00 1.0 1121631209 5388 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-03-28 17:00:28+00:00 1.0 1121631209 5385 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-03-28 16:55:03+00:00 1.0 1121631209 5384 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-03-28 16:50:06+00:00 1.0 1121631209 5383 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-03-28 16:40:11+00:00 1.0 1121631209 5382 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-03-28 16:30:07+00:00 1.0 1121631209 5381 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 16:00:17+00:00 1.0 1121631209 5380 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 15:00:10+00:00 1.0 1121631209 5379 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 13:00:03+00:00 1.0 1121631209 5378 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-03-28 11:00:05+00:00 1.0 1121631209 5376 ℹ coin signal information ℹ date saturday 280320 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-03-28 06:59:37+00:00 1.0 1121631209 5375 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for upcoming pump on 280320 ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28032020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-03-27 13:41:30+00:00 1.0 1121631209 5372 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2020-02-08 04:43:32+00:00 1.0 1121631209 5371 pump results coin was fun open 33 high 68 welldone guys almost 2x times repump count ✨7th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-01-15 17:23:55+00:00 1.0 1121631209 5366 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-01-15 17:00:21+00:00 1.0 1121631209 5363 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-01-15 16:55:03+00:00 1.0 1121631209 5362 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-01-15 16:50:03+00:00 1.0 1121631209 5361 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-01-15 16:40:05+00:00 1.0 1121631209 5360 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-01-15 16:30:04+00:00 1.0 1121631209 5359 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 16:00:03+00:00 1.0 1121631209 5358 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 15:00:03+00:00 1.0 1121631209 5357 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 13:00:02+00:00 1.0 1121631209 5356 ℹ coin signal information ℹ date wednesday 15012020 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-01-15 11:00:05+00:00 1.0 1121631209 5354 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150120 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-01-15 08:18:57+00:00 1.0 1121631209 5352 pump results coin was bnt open 3291 high 7600 profit approx x 2 repump count ✨8th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-29 17:26:39+00:00 1.0 1121631209 5347 the coin to pump is bnt exchange yobitnet target +100 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-29 17:00:19+00:00 1.0 1121631209 5344 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-29 16:55:02+00:00 1.0 1121631209 5343 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-29 16:50:03+00:00 1.0 1121631209 5342 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-29 16:40:02+00:00 1.0 1121631209 5341 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-29 16:30:06+00:00 1.0 1121631209 5340 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 16:00:13+00:00 1.0 1121631209 5339 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 15:00:06+00:00 1.0 1121631209 5338 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 13:00:03+00:00 1.0 1121631209 5337 ℹ coin signal information ℹ date sunday 291219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-29 11:00:08+00:00 1.0 1121631209 5335 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 291219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-29 09:53:38+00:00 1.0 1121631209 5333 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2019-12-18 17:27:49+00:00 1.0 1121631209 5332 pump results coin was ren open 486 high 1380 profit approx x 3 repump count ✨4th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-17 17:24:54+00:00 1.0 1121631209 5327 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-17 17:00:18+00:00 1.0 1121631209 5324 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-17 16:55:03+00:00 1.0 1121631209 5323 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-17 16:50:03+00:00 1.0 1121631209 5322 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-17 16:40:16+00:00 1.0 1121631209 5321 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-17 16:30:04+00:00 1.0 1121631209 5320 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 16:00:05+00:00 1.0 1121631209 5319 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 15:00:04+00:00 1.0 1121631209 5318 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 13:00:10+00:00 1.0 1121631209 5317 ℹ coin signal information ℹ date tuesday 171219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-17 11:00:02+00:00 1.0 1121631209 5315 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 171219 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-17 08:27:32+00:00 1.0 1121631209 5313 pump results coin was bnt open 3611 high 8995 profit approx x 2 repump count ✨7th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-13 17:24:03+00:00 1.0 1121631209 5308 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-13 17:00:15+00:00 1.0 1121631209 5305 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-13 16:55:03+00:00 1.0 1121631209 5304 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-13 16:50:03+00:00 1.0 1121631209 5303 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-13 16:40:27+00:00 1.0 1121631209 5302 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-13 16:30:02+00:00 1.0 1121631209 5301 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 16:00:11+00:00 1.0 1121631209 5300 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 15:00:05+00:00 1.0 1121631209 5299 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 13:00:16+00:00 1.0 1121631209 5298 ℹ coin signal information ℹ date friday 131219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-13 10:56:27+00:00 1.0 1121631209 5296 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 131219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-13 08:42:09+00:00 1.0 1121631209 5294 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2019-12-01 07:56:19+00:00 1.0 1121631209 5293 pump results coin was bnt open 3490 high 9500 profit approx x 3 repump count ✨6th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-15 17:28:13+00:00 1.0 1121631209 5289 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-15 17:02:03+00:00 1.0 1121631209 5285 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-15 16:55:04+00:00 1.0 1121631209 5284 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-15 16:50:07+00:00 1.0 1121631209 5283 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-15 16:40:04+00:00 1.0 1121631209 5282 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-15 16:30:05+00:00 1.0 1121631209 5281 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 16:00:06+00:00 1.0 1121631209 5280 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 15:00:03+00:00 1.0 1121631209 5279 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 13:00:28+00:00 1.0 1121631209 5278 ℹ coin signal information ℹ date friday 151119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-15 11:00:05+00:00 1.0 1121631209 5276 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 151119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-15 09:22:56+00:00 1.0 1121631209 5274 pump analysis coin was mda low 7800 high 65000 profit 700 guys more than 8x times repump count 4th time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-12 17:43:30+00:00 1.0 1121631209 5269 the coin to pump is mda exchange yobitnet target +100200 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-12 17:00:16+00:00 1.0 1121631209 5266 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-12 16:55:03+00:00 1.0 1121631209 5265 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-12 16:50:02+00:00 1.0 1121631209 5264 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-12 16:40:04+00:00 1.0 1121631209 5263 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-12 16:30:02+00:00 1.0 1121631209 5262 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 16:00:15+00:00 1.0 1121631209 5261 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 15:00:04+00:00 1.0 1121631209 5260 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 13:00:05+00:00 1.0 1121631209 5258 ℹ coin signal information ℹ date tuesday 121119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-12 11:00:02+00:00 1.0 1121631209 5256 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-12 08:01:43+00:00 1.0 1121631209 5254 pump analysis coin was mda low 8736 high 19000 guys more than 2x times as we choose this coin on your demand your early selling in beginning of pump halts the pumpvery less volume produced appearance of red colors created bottleneck in pumpinganyways repump count 3rd time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-24 17:22:00+00:00 1.0 1121631209 5248 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-24 16:55:02+00:00 1.0 1121631209 5247 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-24 16:50:01+00:00 1.0 1121631209 5246 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-24 16:40:02+00:00 1.0 1121631209 5245 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-24 16:30:02+00:00 1.0 1121631209 5244 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 16:00:05+00:00 1.0 1121631209 5243 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 15:00:04+00:00 1.0 1121631209 5242 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 13:00:07+00:00 1.0 1121631209 5240 ℹ coin signal information ℹ date thursday 241019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-24 11:00:03+00:00 1.0 1121631209 5238 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 241019 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-24 09:56:27+00:00 1.0 1121631209 5236 pump results coin was fun low 40 high 70 welldone guys almost 2x times repump count ✨6th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-22 17:35:31+00:00 1.0 1121631209 5229 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-22 16:55:03+00:00 1.0 1121631209 5228 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-22 16:50:02+00:00 1.0 1121631209 5227 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-22 16:40:03+00:00 1.0 1121631209 5226 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-22 16:30:03+00:00 1.0 1121631209 5225 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 16:00:02+00:00 1.0 1121631209 5224 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 15:00:05+00:00 1.0 1121631209 5223 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 13:00:04+00:00 1.0 1121631209 5221 ℹ coin signal information ℹ date tuesday 221019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-22 11:21:28+00:00 1.0 1121631209 5219 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 221019 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-22 10:09:04+00:00 1.0 1121631209 5217 pump results coin was blz low 281 high 580 welldone guys almost 2x times repump count ✨5th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-12 17:47:26+00:00 1.0 1121631209 5210 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-12 16:55:02+00:00 1.0 1121631209 5209 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-12 16:50:02+00:00 1.0 1121631209 5208 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-12 16:40:02+00:00 1.0 1121631209 5207 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-12 16:30:02+00:00 1.0 1121631209 5206 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 16:00:03+00:00 1.0 1121631209 5205 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 15:00:03+00:00 1.0 1121631209 5204 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 13:00:05+00:00 1.0 1121631209 5202 ℹ coin signal information ℹ date saturday 121019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-12 11:40:26+00:00 1.0 1121631209 5200 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-12 06:55:19+00:00 1.0 1121631209 5198 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-10-06 17:43:09+00:00 1.0 1121631209 5197 pump results coin was snt low 149 high 355 welldone guys more than 2x times repump count 2nd time within 02 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-05 17:16:01+00:00 1.0 1121631209 5192 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-05 17:00:16+00:00 1.0 1121631209 5189 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-05 16:55:02+00:00 1.0 1121631209 5188 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-05 16:50:02+00:00 1.0 1121631209 5187 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-05 16:40:02+00:00 1.0 1121631209 5186 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-05 16:30:03+00:00 1.0 1121631209 5185 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 16:00:08+00:00 1.0 1121631209 5184 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 15:00:03+00:00 1.0 1121631209 5183 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 13:00:08+00:00 1.0 1121631209 5181 ℹ coin signal information ℹ date saturday 051019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-05 09:55:18+00:00 1.0 1121631209 5179 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 051019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-05 06:46:18+00:00 1.0 1121631209 5177 pump results coin was snt low 149 high 517 welldone guys more than 3x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-02 17:26:12+00:00 1.0 1121631209 5172 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-02 17:00:18+00:00 1.0 1121631209 5169 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-02 16:55:02+00:00 1.0 1121631209 5168 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-02 16:50:03+00:00 1.0 1121631209 5167 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-02 16:40:03+00:00 1.0 1121631209 5166 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-02 16:30:05+00:00 1.0 1121631209 5165 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 16:00:06+00:00 1.0 1121631209 5164 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 15:00:04+00:00 1.0 1121631209 5163 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 13:00:09+00:00 1.0 1121631209 5162 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:56:04+00:00 1.0 1121631209 5160 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:54:31+00:00 1.0 1121631209 5158 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 021019 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-02 01:38:16+00:00 1.0 1121631209 5156 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-09-30 19:12:03+00:00 1.0 1121631209 5155 pump results coin was mda low 9501 high 22286 welldone guys more than 2x times repump count 2nd time within 15 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-30 17:50:01+00:00 1.0 1121631209 5150 the coin to pump is mda exchange yobitnet target +300 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-30 17:00:11+00:00 1.0 1121631209 5148 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-30 16:55:02+00:00 1.0 1121631209 5147 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-30 16:50:03+00:00 1.0 1121631209 5146 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-30 16:40:02+00:00 1.0 1121631209 5145 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-30 16:30:03+00:00 1.0 1121631209 5144 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 16:00:05+00:00 1.0 1121631209 5143 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 15:00:15+00:00 1.0 1121631209 5142 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 13:00:04+00:00 1.0 1121631209 5140 ℹ coin signal information ℹ date monday 300919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-09-30 11:00:03+00:00 1.0 1121631209 5138 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 300919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-30 06:28:41+00:00 1.0 1121631209 5136 pump results coin was fun open 46 high 125 welldone guys almost 3x times repump count ✨5th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-28 17:13:14+00:00 1.0 1121631209 5130 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-28 16:55:03+00:00 1.0 1121631209 5129 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-28 16:50:04+00:00 1.0 1121631209 5128 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-28 16:40:03+00:00 1.0 1121631209 5127 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-28 16:30:03+00:00 1.0 1121631209 5126 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 16:00:03+00:00 1.0 1121631209 5125 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 15:00:10+00:00 1.0 1121631209 5124 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 13:00:08+00:00 1.0 1121631209 5123 ℹ coin signal information ℹ date saturday 280919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-28 11:00:02+00:00 1.0 1121631209 5122 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 280919 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-28 07:53:12+00:00 1.0 1121631209 5119 pump results coin was gvt low 11201 high 23000 as we got lot of message to pump out previous coin gvt so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-26 17:15:28+00:00 1.0 1121631209 5111 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-26 16:55:03+00:00 1.0 1121631209 5110 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-26 16:50:04+00:00 1.0 1121631209 5109 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-26 16:40:04+00:00 1.0 1121631209 5108 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-26 16:30:05+00:00 1.0 1121631209 5107 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 16:00:04+00:00 1.0 1121631209 5106 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 15:00:10+00:00 1.0 1121631209 5105 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 13:00:05+00:00 1.0 1121631209 5104 ℹ coin signal information ℹ date thursday 260919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-26 11:00:06+00:00 1.0 1121631209 5103 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-26 07:59:41+00:00 1.0 1121631209 5101 pump results coin was bat low 1834 high 3776 as we got lot of message to pump out last coin bat so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-24 17:13:23+00:00 1.0 1121631209 5096 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-24 17:00:04+00:00 1.0 1121631209 5095 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-24 16:55:02+00:00 1.0 1121631209 5094 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-24 16:50:03+00:00 1.0 1121631209 5093 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-24 16:40:03+00:00 1.0 1121631209 5092 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-24 16:30:06+00:00 1.0 1121631209 5091 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 16:00:05+00:00 1.0 1121631209 5090 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 15:00:08+00:00 1.0 1121631209 5089 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 13:00:04+00:00 1.0 1121631209 5088 ℹ coin signal information ℹ date tuesday 240919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-24 10:14:13+00:00 1.0 1121631209 5087 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 240919 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-24 08:44:15+00:00 1.0 1121631209 5085 pump results coin was mana low 300 high 600 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-23 17:26:48+00:00 1.0 1121631209 5080 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-23 17:00:05+00:00 1.0 1121631209 5079 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-23 16:55:05+00:00 1.0 1121631209 5078 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-23 16:50:03+00:00 1.0 1121631209 5077 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-23 16:40:02+00:00 1.0 1121631209 5076 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-23 16:30:03+00:00 1.0 1121631209 5075 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 16:00:10+00:00 1.0 1121631209 5074 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 15:00:09+00:00 1.0 1121631209 5073 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 13:00:24+00:00 1.0 1121631209 5072 ℹ coin signal information ℹ date monday 230919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-23 11:16:13+00:00 1.0 1121631209 5071 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-23 08:41:41+00:00 1.0 1121631209 5068 pump results coin was qkc open 74 reached 200 welldone guys almost 3 x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-15 17:26:43+00:00 1.0 1121631209 5061 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-15 16:55:01+00:00 1.0 1121631209 5060 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-15 16:50:01+00:00 1.0 1121631209 5059 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-15 16:40:01+00:00 1.0 1121631209 5058 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-15 16:30:01+00:00 1.0 1121631209 5057 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 16:00:02+00:00 1.0 1121631209 5056 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 15:00:04+00:00 1.0 1121631209 5055 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 13:00:02+00:00 1.0 1121631209 5054 ℹ coin signal information ℹ date friday 150919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-15 11:00:02+00:00 1.0 1121631209 5053 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150919 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-15 08:17:34+00:00 1.0 1121631209 5051 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 18:29:12+00:00 1.0 1121631209 5046 the coin to pump is link exchange yobitnet target +300500 market linkbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-12 17:00:14+00:00 1.0 1121631209 5043 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-12 16:55:02+00:00 1.0 1121631209 5042 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-12 16:50:01+00:00 1.0 1121631209 5041 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-12 16:40:01+00:00 1.0 1121631209 5040 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-12 16:30:01+00:00 1.0 1121631209 5039 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 16:00:05+00:00 1.0 1121631209 5038 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 15:00:03+00:00 1.0 1121631209 5037 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 13:00:11+00:00 1.0 1121631209 5036 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-12 07:27:22+00:00 1.0 1121631209 5030 buy coin bnt binance ▶️ tradeindexsymbolbntbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold 2019-09-07 17:01:02+00:00 1.0 1121631209 5028 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-09-07 16:55:01+00:00 1.0 1121631209 5027 10 minutes left make sure you are logged in your binance account❗️ 2019-09-07 16:50:03+00:00 1.0 1121631209 5026 30 minutes left thats it team were ready prepared for this giant that is coming 2019-09-07 16:30:04+00:00 1.0 1121631209 5023 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big wave this time 2019-09-07 13:00:16+00:00 1.0 1121631209 5021 pump results coin was mth low 123 high 362 welldone guys 25 x times on your demandwe listen you guys repump count 4th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-06 18:10:32+00:00 1.0 1121631209 5016 the coin to pump is mth exchange yobitnet target +300500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-06 17:00:09+00:00 1.0 1121631209 5013 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-06 16:55:01+00:00 1.0 1121631209 5012 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-06 16:50:01+00:00 1.0 1121631209 5011 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-06 16:40:01+00:00 1.0 1121631209 5010 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-06 16:30:02+00:00 1.0 1121631209 5009 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 16:00:04+00:00 1.0 1121631209 5008 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 15:00:07+00:00 1.0 1121631209 5007 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 13:00:04+00:00 1.0 1121631209 5006 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-06 11:00:11+00:00 1.0 1121631209 5003 pump results coin was snm low 90 high 330 welldone guys 3x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-04 17:27:30+00:00 1.0 1121631209 4998 coin to pump is snm exchange yobitnet target +500 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-04 17:00:15+00:00 1.0 1121631209 4995 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-04 16:55:01+00:00 1.0 1121631209 4994 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-04 16:50:01+00:00 1.0 1121631209 4993 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-04 16:40:01+00:00 1.0 1121631209 4992 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-04 16:30:03+00:00 1.0 1121631209 4991 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 16:00:02+00:00 1.0 1121631209 4990 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 15:00:04+00:00 1.0 1121631209 4989 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 13:00:02+00:00 1.0 1121631209 4988 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-04 11:00:02+00:00 1.0 1121631209 4985 pump results coin was gvt open 14000 high 49999 welldone guys more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-24 18:37:02+00:00 1.0 1121631209 4980 the coin to pump is gvt exchange yobitnet target +200400 market gvtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-24 17:00:14+00:00 1.0 1121631209 4977 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-24 16:55:01+00:00 1.0 1121631209 4976 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-24 16:50:02+00:00 1.0 1121631209 4975 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-24 16:40:01+00:00 1.0 1121631209 4974 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-24 16:30:01+00:00 1.0 1121631209 4973 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 16:00:02+00:00 1.0 1121631209 4972 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 15:00:01+00:00 1.0 1121631209 4971 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 13:00:02+00:00 1.0 1121631209 4970 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-24 11:00:03+00:00 1.0 1121631209 4967 pump results coin was tfd open 28 high 120 welldone guys more than 4x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-17 17:12:54+00:00 1.0 1121631209 4962 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-17 17:00:14+00:00 1.0 1121631209 4959 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-17 16:55:01+00:00 1.0 1121631209 4958 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-17 16:50:01+00:00 1.0 1121631209 4957 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-17 16:40:01+00:00 1.0 1121631209 4956 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-17 16:30:02+00:00 1.0 1121631209 4955 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 16:00:04+00:00 1.0 1121631209 4954 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 15:00:02+00:00 1.0 1121631209 4953 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 13:00:01+00:00 1.0 1121631209 4950 pump results coin was dlt open 452 high 1180 welldone guys more than 2x times on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-16 17:13:21+00:00 1.0 1121631209 4945 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-16 17:00:16+00:00 1.0 1121631209 4942 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-16 16:55:02+00:00 1.0 1121631209 4941 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-16 16:50:03+00:00 1.0 1121631209 4940 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-16 16:40:01+00:00 1.0 1121631209 4939 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-16 16:30:02+00:00 1.0 1121631209 4938 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 16:00:08+00:00 1.0 1121631209 4937 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 15:00:04+00:00 1.0 1121631209 4936 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 13:00:20+00:00 1.0 1121631209 4935 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-16 11:02:20+00:00 1.0 1121631209 4932 pump results coin was dlt open 460 high 1186 welldone guys more than 2x times on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-15 17:09:00+00:00 1.0 1121631209 4927 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-15 17:00:19+00:00 1.0 1121631209 4924 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-15 16:55:03+00:00 1.0 1121631209 4923 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-15 16:50:06+00:00 1.0 1121631209 4922 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-15 16:40:02+00:00 1.0 1121631209 4921 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-15 16:30:02+00:00 1.0 1121631209 4920 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 16:00:07+00:00 1.0 1121631209 4919 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 15:00:11+00:00 1.0 1121631209 4918 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 13:00:08+00:00 1.0 1121631209 4917 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-15 11:03:17+00:00 1.0 1121631209 4914 pump results coin was wpr open 60 high 150 on your demandwe listen you guys ✨ more than 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-12 17:14:31+00:00 1.0 1121631209 4909 coin to pump is wpr exchange yobitnet target 100200 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-12 17:00:14+00:00 1.0 1121631209 4906 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-12 16:55:01+00:00 1.0 1121631209 4905 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-12 16:50:01+00:00 1.0 1121631209 4904 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-12 16:40:02+00:00 1.0 1121631209 4903 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-12 16:30:05+00:00 1.0 1121631209 4902 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 16:00:06+00:00 1.0 1121631209 4901 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 15:00:03+00:00 1.0 1121631209 4900 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 13:00:07+00:00 1.0 1121631209 4899 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-12 12:00:15+00:00 1.0 1121631209 4896 pump results coin was mana open 340 high 649 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-11 17:21:13+00:00 1.0 1121631209 4891 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-11 17:00:13+00:00 1.0 1121631209 4888 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-11 16:55:02+00:00 1.0 1121631209 4887 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-11 16:50:02+00:00 1.0 1121631209 4886 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-11 16:40:01+00:00 1.0 1121631209 4885 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-11 16:30:03+00:00 1.0 1121631209 4884 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 16:00:09+00:00 1.0 1121631209 4883 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 15:00:02+00:00 1.0 1121631209 4882 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 13:00:11+00:00 1.0 1121631209 4881 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-11 11:00:06+00:00 1.0 1121631209 4878 pump results on binance coin was storj open 1315 high 1440 profit 10 2019-08-11 04:14:20+00:00 1.0 1121631209 4877 05 minutes left the next message will be the coin name with targets❗️ 2019-08-10 19:55:12+00:00 1.0 1121631209 4874 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big second wave this time 2019-08-10 16:00:03+00:00 1.0 1121631209 4870 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:33:59+00:00 1.0 1121631209 4869 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:33:53+00:00 1.0 1121631209 4868 pump results coin was mana open 292 high 800 welldone guys nearly 3 x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-09 17:13:15+00:00 1.0 1121631209 4863 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-09 17:00:16+00:00 1.0 1121631209 4860 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-09 16:55:01+00:00 1.0 1121631209 4859 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-09 16:50:04+00:00 1.0 1121631209 4858 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-09 16:40:02+00:00 1.0 1121631209 4857 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-09 16:30:05+00:00 1.0 1121631209 4856 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 16:00:01+00:00 1.0 1121631209 4855 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 15:00:01+00:00 1.0 1121631209 4854 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 13:00:03+00:00 1.0 1121631209 4853 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-09 11:00:25+00:00 1.0 1121631209 4850 pump results coin was req open 138 high 194 second wave open 192 high 245 welldone guys on your demandwe listen you guys repump count 3rd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-04 17:17:54+00:00 1.0 1121631209 4845 the coin to pump is req exchange yobitnet target 100200 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-04 17:00:13+00:00 1.0 1121631209 4842 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-04 16:55:01+00:00 1.0 1121631209 4841 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-04 16:50:01+00:00 1.0 1121631209 4840 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-04 16:40:01+00:00 1.0 1121631209 4839 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-04 16:30:02+00:00 1.0 1121631209 4838 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 16:00:03+00:00 1.0 1121631209 4837 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 15:00:01+00:00 1.0 1121631209 4820 buy coin hc binance ▶️ tradeindexsymbolhcbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 above profit 2019-05-12 17:00:01+00:00 1.0 1121631209 4729 best signal of the week the coin is brd target 1 6350 target 2 6650 target 3 7200++ buy and hold tight till target achieve 2019-01-02 15:45:43+00:00 1.0 1121631209 4552 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:47+00:00 1.0 1121631209 4550 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-11-09 16:55:14+00:00 1.0 1121631209 4549 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:08+00:00 1.0 1121631209 4548 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:10+00:00 1.0 1121631209 4547 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:17+00:00 1.0 1121631209 4546 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:18+00:00 1.0 1121631209 4545 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:30:17+00:00 1.0 1121631209 4544 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:53+00:00 1.0 1121631209 4543 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 13:01:50+00:00 1.0 1121631209 4542 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 10:00:33+00:00 1.0 1121631209 4541 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 08:00:49+00:00 1.0 1121631209 4540 ℹ coin signal information ℹ date friday 09112018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-11-09 07:45:19+00:00 1.0 1121631209 4539 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09112018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-11-09 06:21:07+00:00 1.0 1121631209 4538 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 091118 day friday time 5 pm gmt 2018-11-09 06:14:43+00:00 1.0 1121631209 4533 go hit 1077as we signalled before pump n signal to buy cheap as possible if u followed profit is urs leaked paid signal 2018-11-05 18:11:11+00:00 1.0 1121631209 4513 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-27 17:01:20+00:00 1.0 1121631209 4512 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-27 16:55:17+00:00 1.0 1121631209 4511 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-27 16:50:22+00:00 1.0 1121631209 4510 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-27 16:40:18+00:00 1.0 1121631209 4509 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-27 16:30:30+00:00 1.0 1121631209 4508 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 16:00:26+00:00 1.0 1121631209 4507 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:30:18+00:00 1.0 1121631209 4506 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:00:30+00:00 1.0 1121631209 4505 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 13:00:25+00:00 1.0 1121631209 4504 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 10:00:34+00:00 1.0 1121631209 4503 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 08:04:21+00:00 1.0 1121631209 4502 ℹ coin signal information ℹ date saturday 27102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-27 04:04:23+00:00 1.0 1121631209 4501 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-27 03:30:55+00:00 1.0 1121631209 4499 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 271018 day saturday time 5 pm gmt 2018-10-26 16:54:50+00:00 1.0 1121631209 4490 pump analysis coin ufr coin rose to 50 approximately from low level our team members banned by yobit chat admin could not rose furtherdue to this ban n account blocked by yobit chat admin as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate i see you all at the next signal 2018-10-19 17:58:26+00:00 1.0 1121631209 4483 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:42+00:00 1.0 1121631209 4482 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:09+00:00 1.0 1121631209 4481 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-19 16:50:10+00:00 1.0 1121631209 4480 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-19 16:40:06+00:00 1.0 1121631209 4479 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-19 16:30:06+00:00 1.0 1121631209 4478 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 16:00:39+00:00 1.0 1121631209 4477 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:30:08+00:00 1.0 1121631209 4476 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:00:19+00:00 1.0 1121631209 4475 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 13:00:31+00:00 1.0 1121631209 4474 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 10:00:24+00:00 1.0 1121631209 4473 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:29+00:00 1.0 1121631209 4472 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-19 05:31:43+00:00 1.0 1121631209 4471 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 191018 day friday time 5 pm gmt 2018-10-19 05:09:42+00:00 1.0 1121631209 4470 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:37+00:00 1.0 1121631209 4465 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:19+00:00 1.0 1121631209 4464 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-18 16:55:09+00:00 1.0 1121631209 4463 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-18 16:50:08+00:00 1.0 1121631209 4462 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-18 16:40:06+00:00 1.0 1121631209 4461 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-18 16:31:59+00:00 1.0 1121631209 4460 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 16:02:08+00:00 1.0 1121631209 4459 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:30:07+00:00 1.0 1121631209 4458 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:00:20+00:00 1.0 1121631209 4457 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 13:01:32+00:00 1.0 1121631209 4456 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 10:01:05+00:00 1.0 1121631209 4455 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 08:00:29+00:00 1.0 1121631209 4454 ℹ coin signal information ℹ date thursday18102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-18 03:34:44+00:00 1.0 1121631209 4453 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18102018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-18 01:34:32+00:00 1.0 1121631209 4452 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:08+00:00 1.0 1121631209 4440 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:30+00:00 1.0 1121631209 4434 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:12+00:00 1.0 1121631209 4432 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:07+00:00 1.0 1121631209 4431 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-13 16:50:07+00:00 1.0 1121631209 4430 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:06+00:00 1.0 1121631209 4429 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-13 16:30:08+00:00 1.0 1121631209 4428 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:26+00:00 1.0 1121631209 4427 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:30:11+00:00 1.0 1121631209 4426 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:19+00:00 1.0 1121631209 4425 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 13:00:17+00:00 1.0 1121631209 4423 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 10:01:40+00:00 1.0 1121631209 4422 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 09:02:11+00:00 1.0 1121631209 4421 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 06:11:23+00:00 1.0 1121631209 4420 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:44+00:00 1.0 1121631209 4398 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:48+00:00 1.0 1121631209 4393 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:25+00:00 1.0 1121631209 4392 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:23+00:00 1.0 1121631209 4391 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:18+00:00 1.0 1121631209 4390 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:11+00:00 1.0 1121631209 4389 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:18+00:00 1.0 1121631209 4388 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:24+00:00 1.0 1121631209 4387 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:16+00:00 1.0 1121631209 4386 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:08+00:00 1.0 1121631209 4384 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:07+00:00 1.0 1121631209 4383 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:26+00:00 1.0 1121631209 4382 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:07+00:00 1.0 1121631209 4381 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:54:58+00:00 1.0 1121631209 4380 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:27+00:00 1.0 1121631209 4379 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:48+00:00 1.0 1121631209 4370 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:44+00:00 1.0 1121631209 4365 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:10+00:00 1.0 1121631209 4364 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:15+00:00 1.0 1121631209 4363 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:06+00:00 1.0 1121631209 4362 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:10+00:00 1.0 1121631209 4361 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:25+00:00 1.0 1121631209 4360 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:38+00:00 1.0 1121631209 4359 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:20+00:00 1.0 1121631209 4357 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:10+00:00 1.0 1121631209 4356 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:10+00:00 1.0 1121631209 4355 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:12+00:00 1.0 1121631209 4354 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:19+00:00 1.0 1121631209 4353 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 09:33:35+00:00 1.0 1121631209 4352 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:25+00:00 1.0 1121631209 4351 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:25:58+00:00 1.0 1121631209 4350 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:14+00:00 1.0 1121631209 4333 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:04+00:00 1.0 1121631209 4329 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:43+00:00 1.0 1121631209 4327 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:08+00:00 1.0 1121631209 4326 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:06+00:00 1.0 1121631209 4325 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:06+00:00 1.0 1121631209 4324 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:24+00:00 1.0 1121631209 4323 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:09+00:00 1.0 1121631209 4322 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:17+00:00 1.0 1121631209 4320 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:14+00:00 1.0 1121631209 4319 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:20+00:00 1.0 1121631209 4318 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:29+00:00 1.0 1121631209 4317 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:18+00:00 1.0 1121631209 4316 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:23:04+00:00 1.0 1121631209 4315 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:14+00:00 1.0 1121631209 4307 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:49+00:00 1.0 1121631209 4301 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:17+00:00 1.0 1121631209 4299 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:11+00:00 1.0 1121631209 4298 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:12+00:00 1.0 1121631209 4297 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:07+00:00 1.0 1121631209 4296 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:08+00:00 1.0 1121631209 4295 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:11+00:00 1.0 1121631209 4291 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:17+00:00 1.0 1121631209 4290 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:22+00:00 1.0 1121631209 4289 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:14+00:00 1.0 1121631209 4288 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:15+00:00 1.0 1121631209 4287 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:21+00:00 1.0 1121631209 4285 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:10+00:00 1.0 1121631209 4284 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:08+00:00 1.0 1121631209 4283 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:52+00:00 1.0 1121631209 4279 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:26+00:00 1.0 1121631209 4277 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:10+00:00 1.0 1121631209 4276 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:06+00:00 1.0 1121631209 4275 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:08+00:00 1.0 1121631209 4274 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:09+00:00 1.0 1121631209 4273 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:13+00:00 1.0 1121631209 4272 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:16+00:00 1.0 1121631209 4271 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:28+00:00 1.0 1121631209 4270 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:27+00:00 1.0 1121631209 4269 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:22+00:00 1.0 1121631209 4267 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:12+00:00 1.0 1121631209 4266 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:15+00:00 1.0 1121631209 4265 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:51+00:00 1.0 1121631209 4263 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:01:58+00:00 1.0 1121631209 4260 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:25+00:00 1.0 1121631209 4254 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:03+00:00 1.0 1121631209 4253 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:14+00:00 1.0 1121631209 4252 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:07+00:00 1.0 1121631209 4251 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:08+00:00 1.0 1121631209 4250 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:09+00:00 1.0 1121631209 4248 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:45+00:00 1.0 1121631209 4247 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:16+00:00 1.0 1121631209 4246 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:16+00:00 1.0 1121631209 4245 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:11+00:00 1.0 1121631209 4244 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:15+00:00 1.0 1121631209 4243 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:14+00:00 1.0 1121631209 4242 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:07+00:00 1.0 1121631209 4241 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:14+00:00 1.0 1121631209 4239 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:12+00:00 1.0 1121631209 4238 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:02+00:00 1.0 1121631209 4232 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:28+00:00 1.0 1121631209 4230 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:11+00:00 1.0 1121631209 4229 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:06+00:00 1.0 1121631209 4228 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:09+00:00 1.0 1121631209 4227 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:43+00:00 1.0 1121631209 4226 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:16+00:00 1.0 1121631209 4225 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:21+00:00 1.0 1121631209 4224 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:34+00:00 1.0 1121631209 4223 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:16+00:00 1.0 1121631209 4222 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:18+00:00 1.0 1121631209 4221 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:10+00:00 1.0 1121631209 4220 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:09+00:00 1.0 1121631209 4219 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:24+00:00 1.0 1121631209 4218 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:34+00:00 1.0 1121631209 4207 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:17+00:00 1.0 1121631209 4202 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:21+00:00 1.0 1121631209 4200 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:13+00:00 1.0 1121631209 4198 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:20+00:00 1.0 1121631209 4197 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:13+00:00 1.0 1121631209 4196 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:16+00:00 1.0 1121631209 4195 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:37+00:00 1.0 1121631209 4194 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:42+00:00 1.0 1121631209 4193 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:15+00:00 1.0 1121631209 4192 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:23+00:00 1.0 1121631209 4191 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:13+00:00 1.0 1121631209 4190 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 19092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:20+00:00 1.0 1121631209 4188 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:43+00:00 1.0 1121631209 4187 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:35+00:00 1.0 1121631209 4180 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:27+00:00 1.0 1121631209 4178 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:07+00:00 1.0 1121631209 4177 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:08+00:00 1.0 1121631209 4176 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:31+00:00 1.0 1121631209 4175 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:34+00:00 1.0 1121631209 4174 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:22+00:00 1.0 1121631209 4173 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:14+00:00 1.0 1121631209 4172 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:31+00:00 1.0 1121631209 4171 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:08+00:00 1.0 1121631209 4170 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:14+00:00 1.0 1121631209 4169 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:07+00:00 1.0 1121631209 4168 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:25+00:00 1.0 1121631209 4166 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:10:54+00:00 1.0 1121631209 4165 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:00+00:00 1.0 1121631209 4157 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:10+00:00 1.0 1121631209 4156 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:07+00:00 1.0 1121631209 4155 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:12+00:00 1.0 1121631209 4154 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:12+00:00 1.0 1121631209 4153 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:22+00:00 1.0 1121631209 4152 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:20+00:00 1.0 1121631209 4151 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:30+00:00 1.0 1121631209 4150 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:09+00:00 1.0 1121631209 4149 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:32+00:00 1.0 1121631209 4148 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:26+00:00 1.0 1121631209 4147 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:23+00:00 1.0 1121631209 4146 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:12+00:00 1.0 1121631209 4145 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:23+00:00 1.0 1121631209 4144 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:33+00:00 1.0 1121631209 4135 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:26+00:00 1.0 1121631209 4134 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:06+00:00 1.0 1121631209 4133 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:07+00:00 1.0 1121631209 4132 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:09+00:00 1.0 1121631209 4131 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:20+00:00 1.0 1121631209 4130 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:12+00:00 1.0 1121631209 4129 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:25+00:00 1.0 1121631209 4128 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:38+00:00 1.0 1121631209 4127 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:12+00:00 1.0 1121631209 4126 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:06+00:00 1.0 1121631209 4125 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:12+00:00 1.0 1121631209 4124 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:19+00:00 1.0 1121631209 4122 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:12+00:00 1.0 1121631209 4121 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:14+00:00 1.0 1121631209 4117 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:22+00:00 1.0 1121631209 4116 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:14+00:00 1.0 1121631209 4115 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:11+00:00 1.0 1121631209 4114 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:07+00:00 1.0 1121631209 4113 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:08+00:00 1.0 1121631209 4112 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:10+00:00 1.0 1121631209 4111 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:12+00:00 1.0 1121631209 4110 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:21+00:00 1.0 1121631209 4109 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:21+00:00 1.0 1121631209 4108 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:15+00:00 1.0 1121631209 4107 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:07+00:00 1.0 1121631209 4105 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:07:54+00:00 1.0 1121631209 4104 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:22+00:00 1.0 1121631209 4098 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:29+00:00 1.0 1121631209 4097 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:10+00:00 1.0 1121631209 4096 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:16+00:00 1.0 1121631209 4095 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:06+00:00 1.0 1121631209 4094 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:19+00:00 1.0 1121631209 4093 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:23+00:00 1.0 1121631209 4092 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:17+00:00 1.0 1121631209 4091 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:12+00:00 1.0 1121631209 4090 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:10+00:00 1.0 1121631209 4089 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:10+00:00 1.0 1121631209 4088 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:09+00:00 1.0 1121631209 4087 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:17+00:00 1.0 1121631209 4085 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:42+00:00 1.0 1121631209 4084 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:37+00:00 1.0 1121631209 4078 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:15+00:00 1.0 1121631209 4077 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:07+00:00 1.0 1121631209 4076 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:09+00:00 1.0 1121631209 4075 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:09+00:00 1.0 1121631209 4074 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:09+00:00 1.0 1121631209 4073 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:18+00:00 1.0 1121631209 4072 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:12+00:00 1.0 1121631209 4071 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:44+00:00 1.0 1121631209 4070 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:18+00:00 1.0 1121631209 4069 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:12+00:00 1.0 1121631209 4068 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:36+00:00 1.0 1121631209 4067 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:44+00:00 1.0 1121631209 4065 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:36+00:00 1.0 1121631209 4064 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:42+00:00 1.0 1121631209 4057 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:16+00:00 1.0 1121631209 4056 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:08+00:00 1.0 1121631209 4055 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:08+00:00 1.0 1121631209 4054 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:07+00:00 1.0 1121631209 4053 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:16+00:00 1.0 1121631209 4052 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:21+00:00 1.0 1121631209 4051 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:33+00:00 1.0 1121631209 4050 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:17+00:00 1.0 1121631209 4049 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:24+00:00 1.0 1121631209 4048 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:10+00:00 1.0 1121631209 4047 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:04+00:00 1.0 1121631209 4046 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:00+00:00 1.0 1121631209 4038 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:23+00:00 1.0 1121631209 4037 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:17+00:00 1.0 1121631209 4036 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:09+00:00 1.0 1121631209 4035 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:10+00:00 1.0 1121631209 4034 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:10+00:00 1.0 1121631209 4033 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:14+00:00 1.0 1121631209 4032 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:12+00:00 1.0 1121631209 4031 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:16+00:00 1.0 1121631209 4030 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:14+00:00 1.0 1121631209 4029 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:16+00:00 1.0 1121631209 4028 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:07+00:00 1.0 1121631209 4027 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:06+00:00 1.0 1121631209 4025 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:04+00:00 1.0 1121631209 4023 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:08+00:00 1.0 1121631209 4022 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:16+00:00 1.0 1121631209 4021 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:07+00:00 1.0 1121631209 4020 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:17+00:00 1.0 1121631209 4019 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:17+00:00 1.0 1121631209 4018 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:42+00:00 1.0 1121631209 4017 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:13+00:00 1.0 1121631209 4016 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:10+00:00 1.0 1121631209 4015 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:33:58+00:00 1.0 1121631209 4014 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:48+00:00 1.0 1121631209 4012 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:39+00:00 1.0 1121631209 4004 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:13+00:00 1.0 1121631209 4003 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:12+00:00 1.0 1121631209 4002 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:10+00:00 1.0 1121631209 4001 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:06+00:00 1.0 1121631209 4000 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:22+00:00 1.0 1121631209 3999 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:16+00:00 1.0 1121631209 3998 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:13+00:00 1.0 1121631209 3997 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:18+00:00 1.0 1121631209 3996 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:17+00:00 1.0 1121631209 3995 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:09+00:00 1.0 1121631209 3994 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:08+00:00 1.0 1121631209 3993 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:14+00:00 1.0 1121631209 3991 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:13+00:00 1.0 1121631209 3984 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:33+00:00 1.0 1121631209 3983 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:14+00:00 1.0 1121631209 3982 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:15+00:00 1.0 1121631209 3981 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:24+00:00 1.0 1121631209 3980 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:23+00:00 1.0 1121631209 3979 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:31+00:00 1.0 1121631209 3978 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:21+00:00 1.0 1121631209 3977 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:11+00:00 1.0 1121631209 3976 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:07+00:00 1.0 1121631209 3975 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:09+00:00 1.0 1121631209 3974 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:14+00:00 1.0 1121631209 3973 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:20+00:00 1.0 1121631209 3969 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:16+00:00 1.0 1121631209 3963 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:18+00:00 1.0 1121631209 3962 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:08+00:00 1.0 1121631209 3961 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:07+00:00 1.0 1121631209 3960 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:09+00:00 1.0 1121631209 3959 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:07+00:00 1.0 1121631209 3958 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:00:55+00:00 1.0 1121631209 3957 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:11+00:00 1.0 1121631209 3956 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:11+00:00 1.0 1121631209 3955 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:17+00:00 1.0 1121631209 3954 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:14+00:00 1.0 1121631209 3953 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:15+00:00 1.0 1121631209 3952 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:27+00:00 1.0 1121631209 3950 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:01+00:00 1.0 1121631209 3941 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:00:57+00:00 1.0 1121631209 3940 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:08+00:00 1.0 1121631209 3939 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:08+00:00 1.0 1121631209 3938 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:11+00:00 1.0 1121631209 3937 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:10+00:00 1.0 1121631209 3936 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:33+00:00 1.0 1121631209 3935 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:00:55+00:00 1.0 1121631209 3934 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:11+00:00 1.0 1121631209 3933 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:20+00:00 1.0 1121631209 3932 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:17+00:00 1.0 1121631209 3931 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:14+00:00 1.0 1121631209 3930 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:12+00:00 1.0 1121631209 3928 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:39+00:00 1.0 1121631209 3927 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:24+00:00 1.0 1121631209 3921 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:24+00:00 1.0 1121631209 3918 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:11+00:00 1.0 1121631209 3917 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:09+00:00 1.0 1121631209 3916 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:14+00:00 1.0 1121631209 3915 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:16+00:00 1.0 1121631209 3914 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:13+00:00 1.0 1121631209 3913 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:24+00:00 1.0 1121631209 3912 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:08+00:00 1.0 1121631209 3911 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:09+00:00 1.0 1121631209 3910 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:15+00:00 1.0 1121631209 3909 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:08+00:00 1.0 1121631209 3908 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:25+00:00 1.0 1121631209 3906 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:20+00:00 1.0 1121631209 3897 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:44+00:00 1.0 1121631209 3895 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:07+00:00 1.0 1121631209 3894 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:08+00:00 1.0 1121631209 3893 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:07+00:00 1.0 1121631209 3892 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:11+00:00 1.0 1121631209 3891 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:29+00:00 1.0 1121631209 3890 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:50+00:00 1.0 1121631209 3889 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:11+00:00 1.0 1121631209 3888 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:11+00:00 1.0 1121631209 3887 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:19+00:00 1.0 1121631209 3886 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:11+00:00 1.0 1121631209 3885 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:12+00:00 1.0 1121631209 3883 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:30+00:00 1.0 1121631209 3876 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:23+00:00 1.0 1121631209 3874 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:07+00:00 1.0 1121631209 3872 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:06+00:00 1.0 1121631209 3871 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:11+00:00 1.0 1121631209 3868 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:10+00:00 1.0 1121631209 3866 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:08+00:00 1.0 1121631209 3865 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:25+00:00 1.0 1121631209 3864 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:02+00:00 1.0 1121631209 3863 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:34+00:00 1.0 1121631209 3856 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:07+00:00 1.0 1121631209 3855 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:10+00:00 1.0 1121631209 3854 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:18+00:00 1.0 1121631209 3853 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:06+00:00 1.0 1121631209 3852 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:19+00:00 1.0 1121631209 3851 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:10+00:00 1.0 1121631209 3850 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:17+00:00 1.0 1121631209 3849 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:14+00:00 1.0 1121631209 3848 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:14+00:00 1.0 1121631209 3847 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:16+00:00 1.0 1121631209 3846 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:08+00:00 1.0 1121631209 3845 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:11+00:00 1.0 1121631209 3844 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:17+00:00 1.0 1121631209 3843 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:24+00:00 1.0 1121631209 3841 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:09+00:00 1.0 1121631209 3839 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-24 14:42:33+00:00 1.0 1121631209 3838 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 13:57:11+00:00 1.0 1121631209 3837 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 10:03:37+00:00 1.0 1121631209 3836 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 08:00:23+00:00 1.0 1121631209 3835 ℹ coin signal information ℹ date friday 24082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-24 03:00:11+00:00 1.0 1121631209 3834 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-24 02:00:17+00:00 1.0 1121631209 3831 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info shortly ℹ️ exchange yobit 2018-08-24 01:05:41+00:00 1.0 1121631209 3830 scheduled pump is cancelled due to high sell wall coin is not near to 24 hr low which is our speciality to signal low level we will reschedule with good coin again low level thanks for keeping patience 2018-08-23 17:06:44+00:00 1.0 1121631209 3829 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-23 17:04:56+00:00 1.0 1121631209 3828 ℹ️ 20 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:54:12+00:00 1.0 1121631209 3827 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:37:33+00:00 1.0 1121631209 3826 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 16:02:20+00:00 1.0 1121631209 3825 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:16:28+00:00 1.0 1121631209 3824 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:08:46+00:00 1.0 1121631209 3823 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 13:01:42+00:00 1.0 1121631209 3822 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 10:01:29+00:00 1.0 1121631209 3821 ℹ coin signal information ℹ date thursday 23082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-23 09:05:24+00:00 1.0 1121631209 3820 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 23082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-23 08:48:53+00:00 1.0 1121631209 3819 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 23 august 2018 day thursday time 5 pm gmt 2018-08-23 07:59:16+00:00 1.0 1121631209 3817 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:20+00:00 1.0 1121631209 3807 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:11+00:00 1.0 1121631209 3806 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:08+00:00 1.0 1121631209 3805 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-22 16:51:09+00:00 1.0 1121631209 3804 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-22 16:41:06+00:00 1.0 1121631209 3803 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-22 16:31:14+00:00 1.0 1121631209 3802 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 16:01:14+00:00 1.0 1121631209 3801 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 15:01:19+00:00 1.0 1121631209 3800 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:09+00:00 1.0 1121631209 3799 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:08+00:00 1.0 1121631209 3798 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:14+00:00 1.0 1121631209 3797 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:25+00:00 1.0 1121631209 3796 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:44+00:00 1.0 1121631209 3795 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always remember pump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:24:58+00:00 1.0 1121631209 3784 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:16+00:00 1.0 1121631209 3782 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:22+00:00 1.0 1121631209 3781 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:12+00:00 1.0 1121631209 3780 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:10+00:00 1.0 1121631209 3779 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:06+00:00 1.0 1121631209 3778 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:02:56+00:00 1.0 1121631209 3777 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:16+00:00 1.0 1121631209 3776 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:09+00:00 1.0 1121631209 3775 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:08+00:00 1.0 1121631209 3774 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:08+00:00 1.0 1121631209 3773 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:47+00:00 1.0 1121631209 3772 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:02+00:00 1.0 1121631209 3770 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:17+00:00 1.0 1121631209 3769 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:19:46+00:00 1.0 1121631209 3759 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:04+00:00 1.0 1121631209 3757 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:13+00:00 1.0 1121631209 3756 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:09+00:00 1.0 1121631209 3755 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:05+00:00 1.0 1121631209 3754 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:29+00:00 1.0 1121631209 3753 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:21+00:00 1.0 1121631209 3752 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:13+00:00 1.0 1121631209 3751 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:24+00:00 1.0 1121631209 3750 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:06+00:00 1.0 1121631209 3749 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:16+00:00 1.0 1121631209 3748 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:41+00:00 1.0 1121631209 3747 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:28+00:00 1.0 1121631209 3746 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:42+00:00 1.0 1121631209 3744 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:19:53+00:00 1.0 1121631209 3735 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:48+00:00 1.0 1121631209 3733 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:08+00:00 1.0 1121631209 3732 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:05+00:00 1.0 1121631209 3731 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:09+00:00 1.0 1121631209 3730 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:08+00:00 1.0 1121631209 3729 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:09+00:00 1.0 1121631209 3728 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:05+00:00 1.0 1121631209 3727 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:06+00:00 1.0 1121631209 3726 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:10+00:00 1.0 1121631209 3725 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 07:59:51+00:00 1.0 1121631209 3722 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:05+00:00 1.0 1121631209 3721 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:24+00:00 1.0 1121631209 3720 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:52:53+00:00 1.0 1121631209 3710 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:20+00:00 1.0 1121631209 3708 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-16 15:56:05+00:00 1.0 1121631209 3707 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-16 15:51:14+00:00 1.0 1121631209 3706 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-16 15:41:04+00:00 1.0 1121631209 3705 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-16 15:31:16+00:00 1.0 1121631209 3704 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 15:01:15+00:00 1.0 1121631209 3703 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 14:31:11+00:00 1.0 1121631209 3702 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-16 13:01:08+00:00 1.0 1121631209 3701 ℹ coin signal information ℹ date thursday 16082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-16 08:01:17+00:00 1.0 1121631209 3699 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 16082018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-16 02:26:55+00:00 1.0 1121631209 3698 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:23+00:00 1.0 1121631209 3697 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:12:59+00:00 1.0 1121631209 3686 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 16:59:59+00:00 1.0 1121631209 3685 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-14 16:56:13+00:00 1.0 1121631209 3684 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-14 16:50:05+00:00 1.0 1121631209 3683 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-14 16:41:20+00:00 1.0 1121631209 3682 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-14 16:30:15+00:00 1.0 1121631209 3681 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 16:00:15+00:00 1.0 1121631209 3680 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 14:00:12+00:00 1.0 1121631209 3679 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 13:04:12+00:00 1.0 1121631209 3678 ℹ coin signal information ℹ date tuesday 14082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-14 12:02:38+00:00 1.0 1121631209 3677 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 14082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-14 11:37:32+00:00 1.0 1121631209 3675 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:43+00:00 1.0 1121631209 3670 hold post coin name in yobit chatboxhaving rumour of airdrop 2018-08-13 18:07:05+00:00 1.0 1121631209 3663 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:00:54+00:00 1.0 1121631209 3662 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-13 17:56:04+00:00 1.0 1121631209 3661 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-13 17:51:04+00:00 1.0 1121631209 3660 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-13 17:41:04+00:00 1.0 1121631209 3659 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-13 17:31:07+00:00 1.0 1121631209 3658 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 17:01:06+00:00 1.0 1121631209 3657 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 15:01:05+00:00 1.0 1121631209 3656 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 13:01:06+00:00 1.0 1121631209 3655 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 10:01:10+00:00 1.0 1121631209 3654 ℹ coin signal information ℹ date monday 13082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 10 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-13 08:01:06+00:00 1.0 1121631209 3653 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 13082018 monday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-13 03:28:49+00:00 1.0 1121631209 3651 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:23+00:00 1.0 1121631209 3640 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 15:59:56+00:00 1.0 1121631209 3639 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-12 15:56:04+00:00 1.0 1121631209 3638 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-12 15:51:05+00:00 1.0 1121631209 3637 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-12 15:41:04+00:00 1.0 1121631209 3636 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-12 15:31:07+00:00 1.0 1121631209 3635 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 15:01:14+00:00 1.0 1121631209 3634 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 14:31:04+00:00 1.0 1121631209 3633 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 13:01:06+00:00 1.0 1121631209 3632 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 10:01:24+00:00 1.0 1121631209 3631 ℹ coin signal information ℹ date sunday 12082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-12 08:01:04+00:00 1.0 1121631209 3630 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 12082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-12 02:38:12+00:00 1.0 1121631209 3628 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:05:49+00:00 1.0 1121631209 3614 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:06+00:00 1.0 1121631209 3613 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-09 17:56:04+00:00 1.0 1121631209 3612 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-09 17:51:04+00:00 1.0 1121631209 3611 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-09 17:41:04+00:00 1.0 1121631209 3610 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-09 17:31:05+00:00 1.0 1121631209 3609 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 17:01:17+00:00 1.0 1121631209 3608 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 15:01:28+00:00 1.0 1121631209 3607 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 13:01:29+00:00 1.0 1121631209 3606 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 10:01:05+00:00 1.0 1121631209 3605 ℹ coin signal information ℹ date thursday 09082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 9 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-09 08:56:15+00:00 1.0 1121631209 3604 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 09082018 thursday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-09 08:29:28+00:00 1.0 1121631209 3597 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:38+00:00 1.0 1121631209 3596 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-08 15:56:08+00:00 1.0 1121631209 3595 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-08 15:51:04+00:00 1.0 1121631209 3594 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-08 15:41:08+00:00 1.0 1121631209 3593 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-08 15:31:09+00:00 1.0 1121631209 3592 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 15:01:04+00:00 1.0 1121631209 3591 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 14:31:04+00:00 1.0 1121631209 3590 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 13:01:03+00:00 1.0 1121631209 3589 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 10:01:04+00:00 1.0 1121631209 3588 ℹ coin signal information ℹ date wednesday 08082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-08 08:01:03+00:00 1.0 1121631209 3587 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-08 00:34:04+00:00 1.0 1121631209 3585 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:20+00:00 1.0 1121631209 3575 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:29+00:00 1.0 1121631209 3574 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-05 15:57:05+00:00 1.0 1121631209 3573 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-05 15:52:06+00:00 1.0 1121631209 3572 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-05 15:42:04+00:00 1.0 1121631209 3571 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-05 15:32:13+00:00 1.0 1121631209 3570 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 15:02:07+00:00 1.0 1121631209 3569 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 14:32:05+00:00 1.0 1121631209 3568 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-05 13:02:06+00:00 1.0 1121631209 3567 ℹ coin signal information ℹ date sunday 05082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-05 11:04:03+00:00 1.0 1121631209 3566 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 05082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-05 10:16:09+00:00 1.0 1121631209 3564 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:17+00:00 1.0 1121631209 3555 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:09+00:00 1.0 1121631209 3554 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-04 15:57:04+00:00 1.0 1121631209 3553 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-04 15:51:02+00:00 1.0 1121631209 3552 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-04 15:41:08+00:00 1.0 1121631209 3551 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-04 15:32:13+00:00 1.0 1121631209 3550 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 15:03:57+00:00 1.0 1121631209 3549 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 14:33:46+00:00 1.0 1121631209 3548 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-04 13:02:59+00:00 1.0 1121631209 3547 ℹ coin signal information ℹ date saturday 04082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 6 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-04 09:59:23+00:00 1.0 1121631209 3546 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 04082018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-04 09:45:41+00:00 1.0 1121631209 3544 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:09+00:00 1.0 1121631209 3535 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:12+00:00 1.0 1121631209 3534 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-03 15:57:04+00:00 1.0 1121631209 3533 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-03 15:52:05+00:00 1.0 1121631209 3532 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-03 15:41:03+00:00 1.0 1121631209 3531 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-03 15:31:07+00:00 1.0 1121631209 3530 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 15:01:03+00:00 1.0 1121631209 3529 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 14:32:18+00:00 1.0 1121631209 3528 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 13:02:17+00:00 1.0 1121631209 3527 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 10:02:06+00:00 1.0 1121631209 3526 ℹ coin signal information ℹ date friday 03082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-03 08:02:05+00:00 1.0 1121631209 3525 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 03082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-03 01:34:02+00:00 1.0 1121631209 3523 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:15:55+00:00 1.0 1121631209 3514 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:00:43+00:00 1.0 1121631209 3513 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-28 15:57:06+00:00 1.0 1121631209 3512 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-28 15:51:02+00:00 1.0 1121631209 3511 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-28 15:41:06+00:00 1.0 1121631209 3510 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-28 15:31:10+00:00 1.0 1121631209 3509 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 15:01:04+00:00 1.0 1121631209 3508 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 14:32:01+00:00 1.0 1121631209 3507 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 13:01:08+00:00 1.0 1121631209 3506 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 10:02:03+00:00 1.0 1121631209 3505 ℹ coin signal information ℹ date saturday 28 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-28 08:02:07+00:00 1.0 1121631209 3504 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 28072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-28 01:34:03+00:00 1.0 1121631209 3502 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:31+00:00 1.0 1121631209 3493 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:31+00:00 1.0 1121631209 3492 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-26 15:56:02+00:00 1.0 1121631209 3491 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-26 15:52:02+00:00 1.0 1121631209 3490 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-26 15:42:05+00:00 1.0 1121631209 3489 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-26 15:32:13+00:00 1.0 1121631209 3488 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 15:02:05+00:00 1.0 1121631209 3487 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 14:32:09+00:00 1.0 1121631209 3486 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 13:02:03+00:00 1.0 1121631209 3485 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 10:02:02+00:00 1.0 1121631209 3484 ℹ coin signal information ℹ date thursday 26 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-26 08:02:03+00:00 1.0 1121631209 3483 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-26 02:51:25+00:00 1.0 1121631209 3481 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-26 02:50:54+00:00 1.0 1121631209 3478 coin umo low 580 high 987 win good pump wait for the next pump date 2018-06-25 19:03:37+00:00 1.0 1121631209 3476 5 mins to the pump next post will be the coin be ready 2018-06-25 18:55:02+00:00 1.0 1121631209 3475 30 mins to the pump 30 mins left dont forget to keep on holding and wait for outside investors its special coin profit target +220 be logged on 2018-06-25 18:32:01+00:00 1.0 1121631209 3474 1 hours to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-25 18:01:13+00:00 1.0 1121631209 3473 2 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-25 17:06:48+00:00 1.0 1121631209 3472 3 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-25 17:04:06+00:00 1.0 1121631209 3471 4 hours to the pump friends do not miss todays pump the lowest level of coin we choose is at the fibonachi boundary we expect a huge increase it always wins with us exchange cryptopia 2018-06-25 15:00:35+00:00 1.0 1121631209 3470 6 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 220 profit 2018-06-25 13:00:59+00:00 1.0 1121631209 3469 8 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 2018-06-25 11:10:48+00:00 1.0 1121631209 3466 coin bvb low 30 high 71 win profit + 75 good pump wait for the next pump date 2018-06-21 19:11:37+00:00 1.0 1121631209 3465 coin name bvb buy and hold 2018-06-21 19:03:32+00:00 1.0 1121631209 3464 5 mins to the pump next post will be the coin keep the caps lock key open while typing the name coin be ready 2018-06-21 18:56:17+00:00 1.0 1121631209 3463 30 mins to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 18:32:47+00:00 1.0 1121631209 3462 do not miss this pump today 1 hours 30 mins to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-21 17:29:50+00:00 1.0 1121631209 3461 3 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 16:04:02+00:00 1.0 1121631209 3460 5 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 220 profit 2018-06-21 13:59:53+00:00 1.0 1121631209 3459 9 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 2018-06-21 09:59:42+00:00 1.0 1121631209 3450 10 mins to the pump next post will be the coin be ready 2018-06-16 17:49:10+00:00 1.0 1121631209 3449 30 mins to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain 2018-06-16 17:29:47+00:00 1.0 1121631209 3448 1 hours to the pump exchange cryptopia be ready todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 320 2018-06-16 16:58:57+00:00 1.0 1121631209 3447 2 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 320 profit 2018-06-16 16:00:05+00:00 1.0 1121631209 3446 3 hours to the pump remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ todays pump will last around 15 minutes while all outside investors pile on hold your coins until this happens for maximum profits ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days sign up and send btc to the cryptopia exchange cryptopiaconz 2018-06-16 15:08:32+00:00 1.0 1121631209 3366 less than 12 hours left until the big pump on bittrex 2018-05-24 05:02:05+00:00 1.0 1121631209 3345 next post will be coin name exchange binance strategy 1coin will 0 prepumped so buy at market price and hold untill you get desired peofit 2this coin is the most undervalued gem sitting at bottom found by our technical specialists 3 expected to go 2x 3x in short time so buy and hold 4as a channel memeber you are requested to avoid puting sell walls as much as possible and do active prmotions on facebook twitter slack telegram crypto groups 4lets together promote this hodl doing our part and attract every small big trader into this hodl and give a win win to everyone best of luck 2018-05-22 17:58:08+00:00 1.0 1121631209 3344 less than 5 minutes left until the big pump on binance 2018-05-22 17:57:03+00:00 1.0 1121631209 3343 less than 15 minutes left until the big pump on binance 2018-05-22 17:47:06+00:00 1.0 1121631209 3342 less than 30 minutes left until the big pump on binance 2018-05-22 17:32:51+00:00 1.0 1121631209 3341 less than 1 hour left until the big pump on binance 2018-05-22 17:02:10+00:00 1.0 1121631209 3340 less than 3 hours left until the big pump on binance 2018-05-22 15:02:19+00:00 1.0 1121631209 3339 less than 6 hours left until the big pump on binance 2018-05-22 12:02:13+00:00 1.0 1121631209 3338 less than 12 hours left until the big pump on binance 2018-05-22 06:02:04+00:00 1.0 1121631209 3332 less than 15 minutes left until the big pump on binance 2018-05-18 17:47:02+00:00 1.0 1121631209 3331 less than 30 minutes left until the big pump on binance 2018-05-18 17:32:05+00:00 1.0 1121631209 3330 less than 1 hour left until the big pump on binance 2018-05-18 17:02:21+00:00 1.0 1121631209 3329 less than 3 hours left until the big pump on binance 2018-05-18 15:02:54+00:00 1.0 1121631209 3328 less than 6 hours left until the big pump on binance 2018-05-18 12:29:28+00:00 1.0 1121631209 3327 big pump announcement date may 18 1800 6 pm gmt 1400 2 pm est edt 1100 11 am pst pdt type “18 gmt to current location” on google for the exact time over 20 channels pump so be ready to participate the exchange will be binance ride the wλve 2018-05-17 20:02:01+00:00 1.0 1121631209 3320 pump starts the coin to pump is bttf exchange yobitnet target +100 200 market bttf btc 2018-05-16 16:59:07+00:00 1.0 1121631209 3314 30 minutes left to pump exchange is yobit 2018-05-16 16:29:18+00:00 1.0 1121631209 3313 1 hours left to pump exchange is yobit 2018-05-16 15:59:32+00:00 1.0 1121631209 3312 2 hours left to pump exchange is yobit ‼ the orders ‼ 1 buying fast 2 put sell order 3 write and troll in yobit chat 2018-05-16 15:07:24+00:00 1.0 1121631209 3311 3 hours left to pump exchange is yobit ‼ the orders ‼ 1 buying fast 2 put sell order 3 write and troll in yobit chat 2018-05-16 14:15:33+00:00 1.0 1121631209 3310 pump announcement date 1652018 time 5 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-15 19:32:38+00:00 1.0 1121631209 3308 pump starts the coin to pump is sec exchange yobitnet target +100 200 market sev btc 2018-05-15 16:59:06+00:00 1.0 1121631209 3302 30 minutes left to pump exchange is yobit 2018-05-15 16:28:12+00:00 1.0 1121631209 3301 1 hours left to pump exchange is yobit 2018-05-15 15:59:27+00:00 1.0 1121631209 3300 2 hours left to pump exchange is yobit ‼ the orders ‼ 1 buying fast 2 put sell order 3 write and troll in yobit chat 2018-05-15 15:01:32+00:00 1.0 1121631209 3299 4 hours left to pump exchange is yobit ‼ the orders ‼ 1 buying fast 2 put sell order 3 write and troll in yobit chat 2018-05-15 13:04:57+00:00 1.0 1121631209 3298 3 hours left to pump exchange is yobit ‼ the orders ‼ 1 buying fast 2 put sell order 3 write and troll in yobit chat 2018-05-15 13:00:13+00:00 1.0 1121631209 3297 crypto pumps ١٣٠٥١٨ ٢٣٠٠ ‼️ pump tomorrow ‼️ exchange yobit net profite 100 300 data 15 5 2018 time 5 pm gmt ‼️ the method of work ‼️ 1 when announced the coin name go to buying fast 2 make order sell dont sell but order sell 3 troll and write the coin name every where yobitchat facebook twitter 2018-05-14 18:08:23+00:00 1.0 1121631209 3291 results coin pr coin prbtc low 000018012 high 000026000 increase 45+ volume 02 btc btc market is not stable in these days because of this it wasnt a good pump but we know that we can recover this thanks for your support and believe to us our next copump will be better stay tuned for info regarding the next big copump 2018-05-13 18:25:59+00:00 1.0 1121631209 3287 pump starts the coin to pump is pr prototanium prbtc exchange cryptopia target +150 market url trollbox 2018-05-13 18:02:23+00:00 1.0 1121631209 3286 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-05-13 17:55:25+00:00 1.0 1121631209 3282 1 hour left to pump it will be on cryptopia exchange 20 groups more than 40000 members will participate todays pump is going to be huge we are targeting 150 profit with 03 btc volume get ready for flight ✊ 2018-05-13 17:04:53+00:00 1.0 1121631209 3276 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 20 groups will participate around 40k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-05-12 18:00:24+00:00 1.0 1121631209 3274 its pumpintime the coin to pump is gun exchange cryptopia market gunbtc promote the con in the chatbox for more gain link 2018-05-12 15:00:06+00:00 1.0 1121631209 3273 the coins name is gun guncoin pump hold guys promote the coin in chat box good luck everyone 2018-05-12 15:00:05+00:00 1.0 1121631209 3272 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin cryptopiaconz pumpintime post 2018-05-12 14:59:03+00:00 1.0 1121631209 3271 3 minutes to go till hold signal⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-12 14:57:07+00:00 1.0 1121631209 3268 ️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on cryptopia 2018-05-12 14:52:01+00:00 1.0 1121631209 3265 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-12 14:46:35+00:00 1.0 1121631209 3258 1 hours to go until the pump wwwcryptopiaconz have bitcoin in your account ready 1500 gmt btc trading pair 2018-05-12 14:02:11+00:00 1.0 1121631209 3257 wwwcryptopiaconz pump instructions 1 make sure you have btc ready to go in your cryptopia wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the cryptopia chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-05-12 13:32:03+00:00 1.0 1121631209 3255 〽️2 hours to go dont miss out 〽️ 〽️huge gains pumpintime pump 2018-05-12 13:02:02+00:00 1.0 1121631209 3254 〽️3 hours left 〽️prepare btc for 〽️pumpintime pump coming up at 1500 gmt 2018-05-12 12:02:05+00:00 1.0 1121631209 3252 big co pump announcement 13rd may sunday 1800 gmt cryptopia exchange you can find details in the photo below 2018-05-12 11:54:55+00:00 1.0 1121631209 3251 just under 4 hour to go till pump hold⏳ correcting last post promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-12 11:21:57+00:00 1.0 1121631209 3245 12 hours until the signal exchange cryptopiaconz time 1500 pm gmt pumpintime4you 2018-05-12 03:01:01+00:00 1.0 1121631209 3244 ❗️ the next huge trading signal announcement is here date saturday the 12th of may at 3pm gmt exchange cryptopia expected price increase 130170+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-11 20:42:43+00:00 1.0 1121631209 3243 ❗️ the next huge trading signal announcement is here date saturday the 12th of may at 3pm gmt exchange cryptopia expected price increase 130170+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-11 19:33:01+00:00 1.0 1121631209 3236 the coins name is frn francs pump hold guys promote the coin in chat box good luck everyone 2018-05-10 21:00:05+00:00 1.0 1121631209 3234 3 minutes to go till hold signal⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-10 20:57:10+00:00 1.0 1121631209 3231 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on cryptopia 2018-05-10 20:51:03+00:00 1.0 1121631209 3228 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-10 20:45:21+00:00 1.0 1121631209 3222 1 hours to go until the pump wwwcryptopiaconz have bitcoin in your account ready 2100 gmt btc trading pair 2018-05-10 20:01:01+00:00 1.0 1121631209 3221 just over an hour to the pump 2100 gmt on cryptopia 2018-05-10 19:49:38+00:00 1.0 1121631209 3220 wwwcryptopiaconz pump instructions 1 make sure you have btc ready to go in your cryptopia wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the cryptopia chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-05-10 19:31:10+00:00 1.0 1121631209 3218 〽️2 hours to go dont miss out 〽️ 〽️huge gains pumpintime pump 2018-05-10 19:01:02+00:00 1.0 1121631209 3217 just under 3 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-10 18:01:21+00:00 1.0 1121631209 3216 〽️3 hours left 〽️prepare btc for 〽️pumpintime pump coming up at 2100 gmt 2018-05-10 18:01:07+00:00 1.0 1121631209 3212 ❗️ the next huge trading signal announcement is here date thursday the 10th of may at 9pm gmt exchange cryptopia expected price increase 150200+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-10 00:09:50+00:00 1.0 1121631209 3211 ❗️ the next huge trading signal announcement is here date thursday the 10th of may at 9pm gmt exchange cryptopia expected price increase 150200+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-09 00:27:16+00:00 1.0 1121631209 3210 ❗️ the next huge trading signal announcement is here date thursday the 9th of may at 9pm gmt exchange cryptopia expected price increase 150200+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-08 19:08:22+00:00 1.0 1121631209 3208 the coins name is hac hackspace pump hold guys promote the coin in chat box good luck everyone 2018-05-07 21:00:08+00:00 1.0 1121631209 3207 lets pump the coin to pump is hac exchange yobit market hacbtc link 2018-05-07 21:00:08+00:00 1.0 1121631209 3206 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-05-07 20:59:01+00:00 1.0 1121631209 3205 3 minutes to go till pump hold⏳ remember to hold everyone hold big win for all we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-07 20:57:18+00:00 1.0 1121631209 3203 5 minutes to go pump hold⏳ this coin will go 200 nice easy walls to smash thru guys please remember it is important to keep posting about the coin going up in price in the yobits chat box this will gain outside investment from outside investors 2018-05-07 20:55:07+00:00 1.0 1121631209 3202 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on yobit 2018-05-07 20:51:02+00:00 1.0 1121631209 3201 just 10 minuets to go till pump hold⏳ promote the coin in yobits chat box and wait for outside investors✔️ get ready for some big gains hold big win for all 2018-05-07 20:50:34+00:00 1.0 1121631209 3200 just 20 minuets to go till pump hold⏳ promote the coin in yobits chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-07 20:40:45+00:00 1.0 1121631209 3199 〽️〽️30 minutes to yobitnet pumpintime collaborative pump 2018-05-07 20:31:00+00:00 1.0 1121631209 3198 just 30 minuets to go till pump hold⏳ promote the coin in yobits chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-07 20:30:17+00:00 1.0 1121631209 3196 just 15 minuets to go till pump hold⏳ promote the coin in yobits chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-07 20:15:57+00:00 1.0 1121631209 3195 1 hour to go until the pump have bitcoin in your account ready 2100 gmt btc trading pair 2018-05-07 20:02:44+00:00 1.0 1121631209 3194 1 hours to go until the pump yobitnet have bitcoin in your account ready 2100 gmt btc trading pair 2018-05-07 20:01:02+00:00 1.0 1121631209 3193 wwwyobitnet pump instructions 1 make sure you have btc ready to go in your yobit wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the yobit chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-05-07 19:31:02+00:00 1.0 1121631209 3191 〽️2 hours to go dont miss out 〽️ 〽️huge gains pumpintime pump 2018-05-07 19:01:03+00:00 1.0 1121631209 3190 〽️3 hours left 〽️prepare btc for 〽️pumpintime pump coming up at 2100 gmt 2018-05-07 18:01:16+00:00 1.0 1121631209 3189 just 3 hour to go till pump hold⏳ this coin will go 200 with easy guys get ready with some big wins for everyone promote the coin in yobits chat box and wait for outside investors✔️ 2018-05-07 18:00:38+00:00 1.0 1121631209 3188 〽️4 hours to the pumpintime pump on yobitnet at 2100 gmt〽️ 2018-05-07 17:02:23+00:00 1.0 1121631209 3187 just 5 hour to go till pump hold⏳ this coin will go 200 with easy guys get ready with some big wins for everyone promote the coin in yobits chat box and wait for outside investors✔️ 2018-05-07 16:01:31+00:00 1.0 1121631209 3185 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-05-07 15:48:48+00:00 1.0 1121631209 3184 i have been getting some questions about using the yobits exchange so im going to take a few minutes to answer them 1 how do i register the prosses takes about five minutes its nice and easy here is a link to the site 2 how much to invest with this depends on the individual i go in with about 05 btc this is a good number for me this way i can always hold it for longer when i have to 3 when should i sell again this depends on you im happy with 50+ gains so my 05 turns in to 075 remember to sell in small pieces never sell at a loss we always repump the coins we pick 4 how long should i hold for the longer that you hold for the better the results are hold big win outside investors will not join in if the see that the coin has gone up and then just dumped but tf the coin hold for 10 minutes or more then they will all fomo in if you have any more qustions please feel free to pm us thanks and let make this a awesome pump 2018-05-07 15:00:21+00:00 1.0 1121631209 3183 i have been getting some questions about using the yobits exchange so im going to take a few minutes to answer them 1 how do i register the prosses takes about five minutes its nice and easy here is a link to the site 2 how much to invest with this depends on the individual i go in with about 05 btc this is a good number for me this way i can always hold it for longer when i have to 3 when should i sell again this depends on you im happy with 50+ gains so my 05 turns in to 075 remember to sell in small pieces never sell at a loss we always repump the coins we pick 4 how long should i hold for the longer that you hold for the better the results are hold big win outside investors will not join in if the see that the coin has gone up and then just dumped but tf the coin hold for 10 minutes or more then they will all fomo in if you have any more qustions please feel free to pm us thanks and let make this a awesome pump 2018-05-07 14:56:06+00:00 1.0 1121631209 3181 ❗️ announcement ❗️ due to the fact that cryptopia hasnt been the best lately with how much its been lagging and how strict they have been getting with the banned hammers we have decided to try out some pump holds on yobit exchange this dose not mean that that we will stop our pump on cryptopia but that we will be adding an exchange to our pump holds the platforms are very similar in how they work if you do not have a yobits exchange account here is a link for you to create an account we will conduct a pump hold tomorrow at 900 pm gmt see you all there date monday 7th time 9pm gmt exchange yobit target 200 this coin is going to hit great highs and hold its gains this pump we will hit 200+ 2018-05-07 01:40:59+00:00 1.0 1121631209 3176 the coins name is sak sharkcoin pump hold guys promote the coin in chat box good luck everyone 2018-05-06 21:00:09+00:00 1.0 1121631209 3175 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-06 20:57:50+00:00 1.0 1121631209 3172 just 15 minuets to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-06 20:45:52+00:00 1.0 1121631209 3171 just 30 minuets to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-06 20:30:14+00:00 1.0 1121631209 3167 just under 2 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-06 19:15:11+00:00 1.0 1121631209 3165 just under 5 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-06 16:05:32+00:00 1.0 1121631209 3163 pump result coin altcom yobit start price 000000520 high 000001000 x 2 almost 2018-05-06 15:21:32+00:00 1.0 1121631209 3160 next post will be coin name link exchange yobitio yobitnet market btc note to avoid telegram post delay lag to escape from bot api trackers buyers we may need to post the coin a little bit earlier may be few sec to 1 min before 3 pm gmt 2018-05-06 14:55:02+00:00 1.0 1121631209 3159 only 10 minutes left to mega yobit pump remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-05-06 14:49:12+00:00 1.0 1121631209 3158 just 30 minutes till yobit pump 2018-05-06 14:29:12+00:00 1.0 1121631209 3156 only 1 hour till yobit pump 2018-05-06 13:59:01+00:00 1.0 1121631209 3155 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-06 13:36:12+00:00 1.0 1121631209 3154 2 hours till yobit pump 2018-05-06 13:00:08+00:00 1.0 1121631209 3149 ❗️ announcement ❗️ date sunday 6th time 9pm gmt exchange cryptopia target 150 this coin is going to hit great highs and hold its gains this pump we will hit 150+ 2018-05-05 12:26:00+00:00 1.0 1121631209 3148 pump announcement date sunday 6 of may time 3 pm 1500 gmt time exchange yobitnet yobitio ⏰countdown watch ⏰ +pumpsfontcursivecsz1 2018-05-05 06:17:40+00:00 1.0 1121631209 3147 pump announcement date sunday 6 of may time 3 pm 1500 gmt time exchange yobitnet yobitio ⏰countdown watch ⏰ +pumpsfontcursivecsz1 yobit pumps countdown to 6 may 2018 1500 showing days hours minutes and seconds ticking down to 0 2018-05-05 00:38:48+00:00 1.0 1121631209 3143 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-04 20:57:17+00:00 1.0 1121631209 3140 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-04 20:48:47+00:00 1.0 1121631209 3136 just 1 hour to go till pump hold⏳ please remember everone we need to work together for this to work so we must buy and hold we cant sell off right away after buying then we need to talk the coin up in chat so we can get out side investors 2018-05-04 20:00:25+00:00 1.0 1121631209 3135 just 3 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-04 18:01:44+00:00 1.0 1121631209 3130 ❗️ pump announcement❗️ date friday 4th time 9pm gmt exchange cryptopia we are going to change things up a bit and instead of posting a link and the name of the coin we are going to post a picture wit with the name of the coin remember to hold the coin for at lease 1030 minutes for our marketing team to be able to do there job target 170 this coin is going to hit great highs and hold its gains this pump we will hit 170+ 2018-05-03 18:43:26+00:00 1.0 1121631209 3124 the coins name is hac hackspace pump hold guys promote the coin in chat box good luck everyone 2018-05-02 21:00:03+00:00 1.0 1121631209 3123 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-02 20:57:13+00:00 1.0 1121631209 3117 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-02 20:25:32+00:00 1.0 1121631209 3115 just 1 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-02 20:01:31+00:00 1.0 1121631209 3109 ❗️ pump announcement❗️ date wednesday 2nd time 9pm gmt exchange cryptopia target 190 this coin is going to hit great highs and hold its gains this pump we will hit 190+ 2018-05-02 00:14:28+00:00 1.0 1121631209 3102 the coins name is hac hackspace pump hold guys promote the coin in chat box good luck everyone 2018-04-30 21:00:04+00:00 1.0 1121631209 3101 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-30 20:57:14+00:00 1.0 1121631209 3097 type in the chats the following what is going on with coin x coin is going to the moon coin x big partnership announced you can even use some technical analysis terms and say “coin x just broke critical resistance and it will go much higher remember to make it obvious its not a pump 2018-04-30 20:38:41+00:00 1.0 1121631209 3087 ❗️ pump announcement❗️ date monday 30th time 9pm gmt exchange cryptopia target 185 this coin is going to hit great highs and hold its gains this pump we will hit 185+ 2018-04-29 23:53:32+00:00 1.0 1121631209 3078 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-29 20:57:35+00:00 1.0 1121631209 3074 type in the chats the following what is going on with coin x coin is going to the moon coin x big partnership announced you can even use some technical analysis terms and say “coin x just broke critical resistance and it will go much higher remember to make it obvious its not a pump 2018-04-29 20:39:40+00:00 1.0 1121631209 3071 45 minutes to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-04-29 20:15:24+00:00 1.0 1121631209 3070 just 1 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-04-29 20:03:02+00:00 1.0 1121631209 3064 ❗️surprise pump announcement❗️ we have found a excellent coin with nice thin walls so we decided to bring you a surprise pump hold exchange cryptopia time 900pm gmt target +150 + we are going to make this another awesome pump get ready for some big wins get ready everyone 2018-04-29 14:55:52+00:00 1.0 1121631209 3062 111 open 3950 sats high 8369 sats volume 07 btc well done and congratulations to everyone who joined although this is still decent profits i would like to apologise for the speed of this pump we will iron out these problems and be back bigger and better than ever with our next pump 2018-04-28 22:17:33+00:00 1.0 1121631209 3061 guys no body held the coin as soon as people were buying they were instantly selling and i saw hardly anyone commenting in the chat box for this to work we have to work together as a team and hold for outside investment i will write an in depth article on how exactly to pump successfully to top it off we pumped at exactly the same time as one of the largest pump groups on telegram so they took most of the investment our time will change back to 9pm gmt for now a very fast 111 2018-04-28 20:23:18+00:00 1.0 1121631209 3058 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-28 19:57:16+00:00 1.0 1121631209 3051 just under 4 hours to go till pump hold⏳ remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days 2018-04-28 16:13:25+00:00 1.0 1121631209 3049 ❗️pump announcement❗️ date saturday 28th please note new time time 800pm gmt exchange cryptopia target +190 + we are going to make this another awesome pump get ready for some big wins 2018-04-27 18:59:05+00:00 1.0 1121631209 3048 75 open 1110 sats high 1950 sats volume 098 btc well done and congratulations to everyone who joined although this is still decent profits i would like to apologise for this pump and promise our next pump will have huge profit for us all 2018-04-26 23:11:26+00:00 1.0 1121631209 3044 the coins name is slg sterlingcoin pump hold guys promote the coin in chat box good luck everyone 2018-04-26 20:00:04+00:00 1.0 1121631209 3043 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-26 19:57:15+00:00 1.0 1121631209 3035 juut 3 hours to go till pump hold⏳ remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days 2018-04-26 17:03:30+00:00 1.0 1121631209 3034 just under 5 hours to go our latest results have been amazing this pump target 170 ❗dont miss this one its going to be huge❗ 2018-04-26 15:21:32+00:00 1.0 1121631209 3028 ❗️pump announcement❗️ date thursday 26th please note new time time 800pm gmt exchange cryptopia target +180 + we have a great coin we pick with nice thin walls this will easily smash thru 2018-04-25 17:36:35+00:00 1.0 1121631209 3023 the coins name is cpn compucoin pump hold guys promote the coin in chat box good luck everyone 2018-04-24 20:00:07+00:00 1.0 1121631209 3022 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-24 19:57:22+00:00 1.0 1121631209 3015 2 hours to go until the pump target 170 wwwcryptopiaconz have bitcoin on your account ready we cant wait 2018-04-24 18:00:06+00:00 1.0 1121631209 3013 juut 5 hours to go till pump hold⏳ remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days 2018-04-24 15:01:11+00:00 1.0 1121631209 3005 awesome job guys 20 minutes in to the pump and still up 140 2018-04-22 21:51:43+00:00 1.0 1121631209 2999 the coins name is au aurumcoin pump hold guys promote the coin in chat box good luck everyone 2018-04-22 21:30:06+00:00 1.0 1121631209 2998 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-22 21:27:12+00:00 1.0 1121631209 2993 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-22 20:57:11+00:00 1.0 1121631209 2992 5 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens 2018-04-22 20:55:18+00:00 1.0 1121631209 2990 15 minutes to go till pump hold⏳ get ready everyone 2018-04-22 20:45:38+00:00 1.0 1121631209 2989 20 minutes to go⏳ remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days 2018-04-22 20:40:34+00:00 1.0 1121631209 2988 30 minutes to go till pump hold⏳ this coin is going to moon guys please remember it is important to keep posting about the coin going up in price in the crytopia chat box this will gain outside investment from outside investors 2018-04-22 20:31:37+00:00 1.0 1121631209 2986 the reason last time we did so well was that everyone contributed to the pump and trolled how to troll simple type in the chats the following what is going on with coin x coin is going to the moon coin x big partnership announced you can even use some technical analysis terms and say “coin x just broke critical resistance and it will go much higher remember to make it obvious its not a pump 2018-04-22 20:02:38+00:00 1.0 1121631209 2984 90 minutes to go until the pump hold target 170 wwwcryptopiaconz have bitcoin on your account ready lets make this a great one make sure that you hold till we get the outside investors in and then sell off in small pieces we cant wait 2018-04-22 19:32:11+00:00 1.0 1121631209 2983 2 hours to go until the pump target 170 wwwcryptopiaconz have bitcoin on your account ready we cant wait 2018-04-22 19:01:00+00:00 1.0 1121631209 2979 less then 45 hours till the pump and hold get ready to get rich 2018-04-22 16:25:13+00:00 1.0 1121631209 2978 just under 9 hours till pump hold⏳ ❗️a few things to remember ❗️ to maximize profit make sure you ride all the waves remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box ✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days wwwcryptopiaconz make sure you dont miss out today massive gains to be made have bitcoin on your account ready we cant wait 2018-04-22 12:17:44+00:00 1.0 1121631209 2977 ❗️pump announcement❗️ date sunday 22nd time 900pm gmt exchange cryptopia target +180 + the growing is unstoppable the bigger we get the better volume from our last pump hold was over 1 btc we are going to make pumps great again so lets get ready and smash this next pump as well 2018-04-21 18:36:25+00:00 1.0 1121631209 2975 pump starts the coin to pump is cl exchange yobitio target +300 500 market cl btc 2018-04-21 17:00:05+00:00 1.0 1121631209 2964 2 hours left to pump exchange ➖ yobitnet btc market 2018-04-21 16:01:40+00:00 1.0 1121631209 2963 2 hours left and 30 min to pump exchange ➖ yobitnet btc market 2018-04-21 14:30:57+00:00 1.0 1121631209 2962 3 hours left to pump exchange ➖ yobitnet btc market 2018-04-21 14:00:39+00:00 1.0 1121631209 2960 5 hours left to pump ⏰ time 5 pm gmt ⏰ exchange ➖ yobitio btc market attention please ‼️ trolling on chat and social media + spreading fomo are necessary for a successful pump everyone should do his part in writing on yobit chat or telegram groups or in person we are big family and every day we get more members so we all should do our part to participate in pumps and troll so no one get stuck and thats what the family do today i want you all to write on yobit chat and you will se the results long living fam 2018-04-21 12:08:26+00:00 1.0 1121631209 2959 14 hours left to pump exchange ➖ yobitio btc market today our first pump will be shared in the yobit market through huge channels starting from 9k100k which wants to participate today in the pump will earn huge profits pump team 2018-04-21 00:35:24+00:00 1.0 1121631209 2958 pump announcement date 2142018 time 500 pm gmt exchange yobitio target 300+ sign up on yobitio get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-04-20 22:39:00+00:00 1.0 1121631209 2948 the coins name is frn francs pump hold guys promote the coin in chat box good luck everyone 2018-04-20 21:00:03+00:00 1.0 1121631209 2947 5 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-20 20:55:03+00:00 1.0 1121631209 2946 10 minutes to go till pump hold⏳ this coin is going to moon guys please remember it is important to keep posting about the coin going up in price in the crytopia chat box this will gain outside investment from outside investors 2018-04-20 20:50:39+00:00 1.0 1121631209 2945 15 minutes till pump hold⏳ we are ready for lift off eyes on the screens 2018-04-20 20:45:26+00:00 1.0 1121631209 2944 30 minutes to go⏳ the reason last time we did so well was that everyone contributed to the pump and trolled how to troll simple type in the chats the following what is going on with coin x coin is going to the moon coin x big partnership announced you can even use some technical analysis terms and say “coin x just broke critical resistance and it will go much higher remember to make it obvious its not a pump 2018-04-20 20:30:06+00:00 1.0 1121631209 2941 90 minutes to go until the pump hold target 200 wwwcryptopiaconz have bitcoin on your account ready lets make this a great one make sure that you hold till we get the outside investors in and then sell off in small pieces we cant wait 2018-04-20 19:31:27+00:00 1.0 1121631209 2938 5 hours till our cryptopia pump hold this pump target 200 excellent coin today guys ❗️dont miss this one guys❗️ 2018-04-20 16:00:07+00:00 1.0 1121631209 2937 hello guys as promised we will make it a very special saturday for you all weve signed agreements with big ventures on twitter with thousands of followers the pump is huge and big tomorrow remember that time is 500 pm gmt be prepared for big profits 2018-04-20 14:43:46+00:00 1.0 1121631209 2936 just under 9 hours till cryptopia pump hold⏳ ❗️a few things to remember ❗️ to maximize profit make sure you ride all the waves remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box ✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days wwwcryptopiaconz make sure you dont miss out today massive gains to be made have bitcoin on your account ready we cant wait 2018-04-20 12:11:40+00:00 1.0 1121631209 2935 pump tomorrow date 2142018 time 5 pm gmt exchange yobitio expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-04-20 00:01:36+00:00 1.0 1121631209 2933 ❗️pump announcement❗️ date friday 20th time 900pm gmt exchange cryptopia target +200 + were now working with 10 other groups over 12k members in the community the pump holds are getting bigger and bigger 2018-04-19 15:45:09+00:00 1.0 1121631209 2931 our massive huge yobit pump the following details apply date 21042018 time 5 pm gmt exchange yobit dont mute our channel pin signup yobit if u dont have an account team crypto pump tcp 2018-04-19 13:13:59+00:00 1.0 1121631209 2926 110 and still holding at 70 8 minutes in to pump 2018-04-18 21:08:39+00:00 1.0 1121631209 2922 the coins name is tse tattoocoin pump hold guys promote the coin in chat box good luck everyone 2018-04-18 21:00:04+00:00 1.0 1121631209 2921 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-18 20:57:09+00:00 1.0 1121631209 2920 5 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens 2018-04-18 20:55:13+00:00 1.0 1121631209 2918 10 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens 2018-04-18 20:50:39+00:00 1.0 1121631209 2917 15 minutes till pump hold⏳ we are ready for lift off eyes on the screens 2018-04-18 20:45:16+00:00 1.0 1121631209 2916 20 minutes to go till pump hold⏳ guys it is important to keep posting about the coin in the crytopia chat box this will gain outside investment from other people we are ready for lift off eyes on the screens 2018-04-18 20:40:12+00:00 1.0 1121631209 2913 60 minutes to go until the pump hold target 150 wwwcryptopiaconz have bitcoin on your account ready lets make this a great one make sure that you hold till we get the outside investors in and then sell off in small pieces we cant wait 2018-04-18 20:00:26+00:00 1.0 1121631209 2908 8 hours until our pump this pump target 160 excellent coin today guys ❗️dont miss this one guys❗️ 2018-04-18 13:01:14+00:00 1.0 1121631209 2907 just under 9 hours till pump hold⏳ ❗️a few things to remember ❗️ to maximize profit make sure you ride all the waves remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box ✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days wwwcryptopiaconz make sure you dont miss out today massive gains to be made have bitcoin on your account ready we cant wait 2018-04-18 12:23:46+00:00 1.0 1121631209 2906 ❗️pump announcement❗️ date wednesday 18th time 900pm gmt exchange cryptopia target +180 + nice and easy walls to smash thru its going to be awesome again 2018-04-17 20:33:53+00:00 1.0 1121631209 2904 lets pump the coin to pump is ascs exchange yobitnet target 200 1500 with little volume this coin can go crazy market ascsbtc link 2018-04-17 18:00:02+00:00 1.0 1121631209 2903 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-04-17 17:59:02+00:00 1.0 1121631209 2901 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on yobit 2018-04-17 17:51:02+00:00 1.0 1121631209 2900 〽️〽️〽️15 minutes to pumpintime collaborative pump on yobitnet 2018-04-17 17:46:03+00:00 1.0 1121631209 2899 〽️〽️30 minutes to yobitnet pumpintime collaborative pump 30k + subscribers 2018-04-17 17:31:06+00:00 1.0 1121631209 2897 yobitio yobitnet pump instructions 1 make sure you have btc ready to go in your yobit wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders x2 or x3 the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the yobit chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 35x the original value could go as high as x10 if we all hodl 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc or apparently yobitio has faster trasactions to wallets 2018-04-17 16:31:04+00:00 1.0 1121631209 2895 〽️3 hours left prepare btc for yobitnet pumpintime pump coming up at 1800 gmt〽️ 2018-04-17 15:01:07+00:00 1.0 1121631209 2894 〽️4 hours to the pumpintime pump on yobitnet at 1800 gmt〽️ 2018-04-17 14:01:02+00:00 1.0 1121631209 2889 〽️〽️〽️15 minutes to pumpintime collaborative pump on yobitnet 2018-04-17 00:05:42+00:00 1.0 1121631209 2881 next post with coin name 2018-04-16 17:29:22+00:00 1.0 1121631209 2875 pump announcement binance 30 minutes left in pump buy and hold 2018-04-16 17:02:11+00:00 1.0 1121631209 2874 pump announcement mega pump on binance prepare your btc for investment we are working with great analyst team so this is fair pump and also hold for 50 profit easily in short term so invest without fear buy and hold pump less then 1 hours left in pump 1600k members still waiting for coin name big pump and hold on binance 2018-04-16 16:40:23+00:00 1.0 1121631209 2863 lets pump the coin to pump is zrx exchange yobitnet target 200 1500 with little volume this coin can go crazy market zrxbtc link 2018-04-16 15:00:40+00:00 1.0 1121631209 2862 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-04-16 14:57:02+00:00 1.0 1121631209 2860 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on yobit 2018-04-16 14:49:08+00:00 1.0 1121631209 2859 〽️〽️〽️15 minutes to pumpintime collaborative pump on yobitnet 2018-04-16 14:47:08+00:00 1.0 1121631209 2857 pump announcement mega pump on binance load your on binance buy and hold pump less then 3 hours left in pump 1600k members still waiting for coin name big pump on binance 2018-04-16 14:35:42+00:00 1.0 1121631209 2856 〽️〽️30 minutes to yobitnet pumpintime collaborative pump be sure to be logged in to yobit 2018-04-16 14:29:35+00:00 1.0 1121631209 2854 yobitio yobitnet pump instructions 1 make sure you have btc ready to go in your yobit wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders x2 the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the yobit chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 35x the original value could go as high as x10 if we all hodl 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc or apparently yobitio has faster trasactions to wallets 2018-04-16 13:29:02+00:00 1.0 1121631209 2852 pump announcement mega pump on binance climate is looking a lot better today buy and hold pump less then 5 hours left in pump 1600k members waiting for coin name big pump on binance 2018-04-16 12:56:27+00:00 1.0 1121631209 2851 〽️3 hours left prepare btc for yobitnet pumpintime pump coming up at 1500 gmt〽️ 2018-04-16 11:59:05+00:00 1.0 1121631209 2848 sorry this next 6hr to pump banner time is wrong it will be 4 hrs to pump at 1500 gmt 2018-04-16 10:58:06+00:00 1.0 1121631209 2846 pump announcement mega pump on binance buy and hold pump today time 530 pm gmt less then 8 hours left only we increased now 1600k members are participating big pump on binance 2018-04-16 09:03:54+00:00 1.0 1121631209 2843 pump announcement mega pump on binance buy and hold pump today time 530 pm gmt less then 15 hours left only we increased now 1600k members are participating big pump on binance 2018-04-16 02:35:54+00:00 1.0 1121631209 2842 pump announcement mega pump on binance buy and hold that is why we will schedule our pump date 16 april 2018 time 530 pm gmt less then 24 hours left only 1200k members are participating this is a big pump on binance 2018-04-15 17:33:07+00:00 1.0 1121631209 2840 dear members mega pump on binance buy and hold the market has been quite stable for the last week we are seeing some good opportunities to pump on binance that is why we will schedule our pump date 16 april 2018 time 530 pm gmt 1200k members are participating may be a big pump on binance pump is fair for every one 2018-04-15 15:18:16+00:00 1.0 1121631209 2835 lets pump the coin to pump is zrx exchange yobitnet target 200 1500 with little volume this coin can go crazy market zrxbtc link 2018-04-13 14:59:00+00:00 1.0 1121631209 2834 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-04-13 14:57:02+00:00 1.0 1121631209 2832 pump exchange yobit 13 april ⏱hour 4pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-12 19:06:27+00:00 1.0 1121631209 2829 3 min left next post coin name 2018-04-11 18:57:05+00:00 1.0 1121631209 2824 less than 1 hours left till pump exchange yobit 11 april ⏱hour 7pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-11 18:00:08+00:00 1.0 1121631209 2823 less than 3 hours left till pump exchange yobit 11 april ⏱hour 7pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-11 16:00:41+00:00 1.0 1121631209 2820 less than 06 hours left till pump exchange yobit 11 april ⏱hour 7pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-11 13:01:07+00:00 1.0 1121631209 2819 yobit pump time ➖ 700 gmt date ➖ 11042017 exchange ➖ yobit holdtime hold until everyone makes profits ❗️ important ❗️ sign up here if you havent got a yobit account if you dont get a mail after the registration then register again with an other mail adress sometimes yobit has problems with sending mails if it says registration is temporarily off then youve probably made already an account you have to wait some time in order to register again 2018-04-11 11:20:59+00:00 1.0 1121631209 2818 less than 12 hours left till pump exchange yobit 11 april ⏱hour 7pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-11 07:30:12+00:00 1.0 1121631209 2808 pump starts the coin to pump is arpa exchange yobitnet target +300 500 market arpabtc 2018-04-07 17:01:15+00:00 1.0 1121631209 2807 pump starts the coin to pump is arpa exchange yobitnet target +300 500 market arpabtc 2018-04-07 17:00:13+00:00 1.0 1121631209 2805 last 5 minutes exchange is yobit login to your yobitneten 2018-04-07 16:56:09+00:00 1.0 1121631209 2804 last 10 minutes exchange is yobit 2018-04-07 16:51:17+00:00 1.0 1121631209 2800 hold pump announcement less than 1 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 16:01:08+00:00 1.0 1121631209 2799 hold pump announcement less than 2 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 15:01:35+00:00 1.0 1121631209 2798 hold pump announcement less than 3 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 14:01:05+00:00 1.0 1121631209 2797 hold pump announcement less than 4 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 13:01:05+00:00 1.0 1121631209 2796 hold pump announcement less than 5 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 12:01:11+00:00 1.0 1121631209 2795 hold pump announcement less than 6 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 11:04:13+00:00 1.0 1121631209 2794 hold pump announcement less than 6 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 11:01:06+00:00 1.0 1121631209 2793 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7thapril saturday ⏰time 500pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-07 06:08:51+00:00 1.0 1121631209 2775 5 mins left be ready to go to the moon next post is coin 2018-04-02 02:55:01+00:00 1.0 1121631209 2769 2 hours left until the bug pump be ready on yobit 2018-04-02 01:00:11+00:00 1.0 1121631209 2767 3 hours left til yobit pump i hope youre all ready to make money 2018-04-02 00:00:04+00:00 1.0 1121631209 2766 4 hours to go for big yobit pump be ready with btc on yobit 2018-04-01 23:00:23+00:00 1.0 1121631209 2765 5 hours until yobit pump sorry guys didnt mean to send the 4 hours post 2018-04-01 22:04:03+00:00 1.0 1121631209 2763 pump in less then 5 hours 40 minutes get ready to get rich 2018-04-01 21:20:05+00:00 1.0 1121631209 2757 “5 minutes till pump get ready to get rich we are going to make history today “ coin has very small sell walls remember to create fomo and troll on the chatbox” next post is coin 2018-03-30 15:56:48+00:00 1.0 1121631209 2752 “1 hour till pump get ready to get rich we are going to make history today “ coin has very small sell walls remember to create fomo and troll on the chatbox” 2018-03-30 15:00:08+00:00 1.0 1121631209 2747 pump reminder ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date friday 30th march ⏰time 16 gmt exchange yobit ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-03-30 00:00:01+00:00 1.0 1121631209 2713 only 5 minutes to go next post is coin are you ready to make money⁉️ 2018-03-13 18:55:11+00:00 1.0 1121631209 2712 10 minutes to pump ready to search for the coin join the best pump yet 2018-03-13 18:49:57+00:00 1.0 1121631209 2711 20 minutes until yobit pump the clock is ticking make sure your ready⏱⏱ 2018-03-13 18:39:58+00:00 1.0 1121631209 2710 less than 30 minutes to pump you should be glued to the screen by now get ready 2018-03-13 18:38:19+00:00 1.0 1121631209 2709 just 1 hour to go for yobit pump make sure your online and ready to make money this will be a great pump to invest in ✔️ its going to be our biggest pump yet 2018-03-13 18:00:06+00:00 1.0 1121631209 2708 ✅2 hours and 30 minutes away✅ we have high expectations for this pump make sure your btc is in yobit ready to go and that your prepared to start trolling you dont want to miss this 2018-03-13 16:30:21+00:00 1.0 1121631209 2707 5 hours to go make sure that you have your yobit accounts funded and are ready to go this pump is going to be massive 2018-03-13 14:02:04+00:00 1.0 1121631209 2706 less than 12 hours until yobit pump prepare for huge gains goal 350 2018-03-13 07:11:20+00:00 1.0 1121631209 2701 only 5 minutes to go next post is coin are you ready to make money⁉️ 2018-03-10 17:54:56+00:00 1.0 1121631209 2700 10 minutes to pump ready to search for the coin join the best pump yet 2018-03-10 17:49:54+00:00 1.0 1121631209 2699 30 minutes to pump you should be glued to the screen by now target 300 2018-03-10 17:33:03+00:00 1.0 1121631209 2698 were under 1 hour to go for our cryptopia pump you should be online by now and ready to make money this is the pump you would want to put your money in✔️ its going to be our biggest pump yet target 300 2018-03-10 17:02:32+00:00 1.0 1121631209 2697 were just 3 hours away this is the pump youve been waiting for make sure your btc is ready and that your prepared to start trolling dont miss this pump 2018-03-10 15:00:02+00:00 1.0 1121631209 2680 pump analysis we pumped btcs 80 start 725 sats finish 1306 sats we had some issues with a large sell wall but still had great coin growth the pump did not hold as long and shot up really fast next pump will be on yobit and we will focus on making the pump last longer 2018-03-04 20:43:08+00:00 1.0 1121631209 2671 5 minutes left to yobit pump ⚠️next post coin name⚠️ 2018-03-02 19:55:00+00:00 1.0 1121631209 2670 15 minutes left to yobit pump be sure to have all your funds on yobit prepared remember to use the chat box to spam the coin name so the pump will be much bigger 2018-03-02 19:45:05+00:00 1.0 1121631209 2669 30 minutes left to yobit pump 2018-03-02 19:31:02+00:00 1.0 1121631209 2668 45 minutes left to yobit pump 2018-03-02 19:16:16+00:00 1.0 1121631209 2666 1 hour left to yobit pump 2018-03-02 19:01:29+00:00 1.0 1121631209 2665 2 hours left to yobit pump 2018-03-02 18:01:04+00:00 1.0 1121631209 2664 3 hours left to yobit pump 2018-03-02 17:02:26+00:00 1.0 1121631209 2663 4 hours left to yobit pump 2018-03-02 16:01:05+00:00 1.0 1121631209 2661 6 hours left to yobit pump 2018-03-02 14:01:10+00:00 1.0 1121631209 2660 9 hours left to yobit pump 2018-03-02 11:01:15+00:00 1.0 1121631209 2659 12 hours left to yobit pump 2018-03-02 08:01:05+00:00 1.0 1121631209 2658 13 hours left to yobit pump 2018-03-02 07:01:07+00:00 1.0 1121631209 2657 correction pump is in 13h and 42 minutes we sent it by mistake 2018-03-02 06:19:19+00:00 1.0 1121631209 2656 4 hours left to yobit pump 2018-03-02 06:16:54+00:00 1.0 1121631209 2650 pump analysis omc initial price 000002000 price change 000011199 to 000025900 result +1312 duration of the pump 10 minutes see you at next pump 2018-02-26 18:23:14+00:00 1.0 1121631209 2641 2 min left next post coin name 2018-02-26 17:58:42+00:00 1.0 1121631209 2640 5 minutes left to yobit pump 2018-02-26 17:54:52+00:00 1.0 1121631209 2636 less than 3 hours left till pump exchange yobit monday 26th february ⏱hour 6pm gmt exchange yobit if you dont have yobit you can sign up through here transfer some btc and lets profit 2018-02-26 15:00:06+00:00 1.0 1121631209 2622 ❗️we have reached the 1 hour mark❗️ make sure your all set up and logged into cryptopia 15 minutes before the start of the pump 2018-02-25 18:01:48+00:00 1.0 1121631209 2610 ❗️we are 10 minutes away❗️ once the coin is posted remember to buy and hodl spread the news 2018-02-23 18:50:33+00:00 1.0 1121631209 2607 ❗️we are only 1 hour and 30 minutes away from our pump❗️ get your btc is yobit ready 2018-02-23 17:34:10+00:00 1.0 1121631209 2605 ❗️5 hours and 30 minutes until pump❗️ make sure you have funds in yobit so that your ready to go 2018-02-23 13:34:02+00:00 1.0 1121631209 2585 buy buy buy big pump incoming 2018-02-19 15:01:00+00:00 1.0 1121631209 2584 pump time ▪️buy as much quantity as possible in least time and buy it for x2 and x3 times its original price buy at 000000249 then 000000259 and finally at 000000260 for maximum pump effect hold the coin until price gets 200 at least remember to buy as quick as possible 2018-02-19 15:00:01+00:00 1.0 1121631209 2583 — 2 minutes left — next post will be coin url to yobit remember to buy maximum quantity as possible 2018-02-19 14:58:35+00:00 1.0 1121631209 2580 10 minutes for the big yobit pump remember to have your btc ready on yobitnet so the pump will be very big this pump is goin to be in collaboration with 10+ other channels so the profit will be huge this time 2018-02-19 14:50:06+00:00 1.0 1121631209 2579 30 minutes left for the yobit big pump 2018-02-19 14:30:24+00:00 1.0 1121631209 2577 time left for big yobit pump 2018-02-19 13:17:04+00:00 1.0 1121631209 2576 2 hours and 15 minutes for the big yobit pump 2018-02-19 12:45:43+00:00 1.0 1121631209 2572 yobit pump will be tomorrow 19th of february 2018 at 3pm gmt this pump will be huge so profits will be very high get your btc ready at yobitnet so we are ready for the pump countdown timer 2018-02-18 22:44:49+00:00 1.0 1121631209 2558 30 minutes until pump remember to spread news of this coin rising in cryptopias trollbox and like always remember to hold and set your sell prices high for outside investors to buy 2018-02-16 17:30:11+00:00 1.0 1121631209 2551 2 minutes left to massive alliance hold ⚠️ next post will be coin name and link ⚠️ 1300 gmt ♦️20 channels♦️ ♦️100k members partipate♦️ ❎ prepare your btc on cryptopia ❎ ❎ expected profit 400 ❎ login cryptopia be ready for huge profit remember to help promote coin that is key to our succes if we everybody hold we take big whale come in 2018-02-16 13:02:08+00:00 1.0 1121631209 2549 5 minutes left to massive alliance hold 1300 gmt ♦️20 channels♦️ ♦️100k members partipate♦️ ❎ prepare your btc on cryptopia ❎ ❎ expected profit 400 ❎ login cryptopia be ready for huge profit remember to help promote coin that is key to our succes if we everybody hold we take big whale come in 2018-02-16 12:56:26+00:00 1.0 1121631209 2548 10 minutes left to massive alliance hold 1300 gmt ♦️20 channels♦️ ♦️100k members partipate♦️ ❎ prepare your btc on cryptopia ❎ ❎ expected profit 400 ❎ login cryptopia be ready for huge profit remember to help promote coin that is key to our succes if we everybody hold we take big whale come in 2018-02-16 12:51:01+00:00 1.0 1121631209 2547 30 minutes left to massive alliance hold 1300 gmt ♦️20 channels♦️ ♦️100k members partipate♦️ ❎ prepare your btc on cryptopia ❎ ❎ expected profit 400 ❎ pin our channel dont miss that chance 2018-02-16 12:33:33+00:00 1.0 1121631209 2546 ❎ read this carefully ❎ here is the plan for the massive alliance hold ♦️ buy your coins when the coin is announced promote the coin on the chatbox on cryptopia ♦️ set your buy order higher than the marketprice even if its only 1 satoshi ♦️ sell after we take good profit best profit is after 3060min ♦️ continue promoting the coin on the chatbox after setting your sellorder promote every trollbox you know it is important to promote and not to panic sell ♦️no one is gonna loose money if you cant sell your coins we always make sure that real holders profit❗️ ♦️after promoting the outside investors are going to buy the coins from this groups sellorders this way everyone makes profit❗️ ♦️our goal is to sell the coins to outside investors not to ourselves❗️ ❎ we are not a pump and dump group keep this in mind ❎ we promise no prepump and no admins will participate in the buying or selling of the selected coin ❎ this hold is all about our members and a chance for you guys to make some 2018-02-16 12:16:45+00:00 1.0 1121631209 2540 pump announcement date friday february 16th time 1800gmt exchange cryptopia countdown +fridayfontcursivecsz1 2018-02-15 22:41:50+00:00 1.0 1121631209 2532 coin lit exchange cryptopia buy buy buy once you have bought the coin spread the news all over social media pump hold and troll using cryptopia troll box link above take it high 2018-02-14 20:00:06+00:00 1.0 1121631209 2531 3 minutes till big pump next post will be coin name get ready btc is pumping we are back in the bull market 2018-02-14 19:57:23+00:00 1.0 1121631209 2530 10 minutes till big pump 2018-02-14 19:51:11+00:00 1.0 1121631209 2529 less then 15 minutes till big pump 2018-02-14 19:46:11+00:00 1.0 1121631209 2528 less then 30 minutes till big pump 2018-02-14 19:33:32+00:00 1.0 1121631209 2527 less then 40 minutes till big pump 2018-02-14 19:21:27+00:00 1.0 1121631209 2524 pump alert time ➖ 1700 gmt date ➖16022017 exchange➖ yobit btc market 2018-02-14 18:07:36+00:00 1.0 1121631209 2510 4 mimutes till pump get ready to go the moonnext post will be coin name remember to buy and hold and spread fomo in the crytopia chat troll box 2018-02-13 03:11:30+00:00 1.0 1121631209 2507 pump less then 30 minutes to go 2018-02-13 02:48:03+00:00 1.0 1121631209 2497 reminder we have a pump in less then 9 hours get ready to spread fomo 2018-02-12 08:41:21+00:00 1.0 1121631209 2495 how to prepare for a pump step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher up to 25x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key here is the link step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 23x from the original value it has the possibility of going even further if you troll hard 2018-02-12 05:44:04+00:00 1.0 1121631209 2473 massive fair pump sunday get ready 2018-02-10 05:57:55+00:00 1.0 1121631209 2411 we had found coin on bittrex that will make 2x in one day great news about that coin are coming as technical analysis it will easily jump to sky the coin will be released to public in just 30 minutes from now prepare your btc on bittrex now 2018-02-07 15:22:33+00:00 1.0 1121631209 2389 flash pump announcement date tuesday 6th february hour 630 pm est ⌚️ exchange cryptopia we are working with big group of powerful channels get ready 2018-02-06 23:01:51+00:00 1.0 1121631209 2366 pump announcement date feb 6 2018 time 2100 gmt exchange cryptopia ⭐️have your btc ready for this one 2018-02-06 18:36:55+00:00 1.0 1121631209 2328 2 minutes left next post will be the name of the coin 2018-02-06 03:59:01+00:00 1.0 1121631209 2325 5 minutes left this one is going to be huge 2018-02-06 03:55:48+00:00 1.0 1121631209 2315 ⚠️mega pump incoming date monday february 5th ⏰ time 900pm2100h utc ⏳ countdown timer googls6p2d7 exchange cryptopia this pump will be bigger than all our other pumps combined get ready ⚠️ invite your friends ⬇️ wwwtmecryptowhalepumpgroup 2018-02-05 21:47:39+00:00 1.0 1121631209 2307 we will be doing a massive cryptopia pump tomorrow at 4am gmt have btc ready on cryptopia and watch the countdown here +crytopia+pumpfontcursivecsz1 2018-02-05 16:12:48+00:00 1.0 1121631209 2286 we will be doing a massive cryptopia pump tomorrow at 4am gmt have btc ready on cryptopia and watch the countdown here +crytopia+pumpfontcursivecsz1 2018-02-04 20:24:15+00:00 1.0 1121631209 2262 pump announcement date sunday feb 4 hour 7 pm gmt ⌚ exchange yobit 2018-02-03 18:19:32+00:00 1.0 1121631209 1430 pump today 16gmt crytopia transfer your funds there and remember if u dont hv good pump i will pump ur coin second time again later 2017-12-01 08:19:46+00:00 1.0 1121631209 1417 remember guys pump on crytopia friday 16gmt stay ready if u dont make profit ill do a pump on it again later to bail you guys outs 2017-11-30 16:38:40+00:00 1.0 1121631209 1334 14 hours 15 minutes left till huge pump on cryptopia stay tuned to bag some ✔️ 2017-11-28 06:45:34+00:00 1.0 1121631209 846 teeka palm beach confidential is attempting to pump bcc but there will be a big dump ahead if there is a big pump just like last time likely be careful 2017-11-13 18:23:53+00:00 1.0 1121631209 714 login yobit now next post is coin name 2017-11-11 13:58:45+00:00 1.0 1121631209 713 pump notification 3min left till pump time 14 gmt target mn exchange yobit 2017-11-11 13:57:20+00:00 1.0 1121631209 711 pump notification 5min left till pump time 14 gmt target mn exchange yobit 2017-11-11 13:54:28+00:00 1.0 1121631209 710 pump notification 10min left till pump time 14 gmt target mn exchange yobit 2017-11-11 13:49:47+00:00 1.0 1121631209 708 pump notification 15min left till pump time 14 gmt target mn exchange yobit 2017-11-11 13:44:48+00:00 1.0 1121631209 707 great collaborative pump is going to happen today big whales have joined hands and with yobit troll box our coin will be the talk of the day get your funds quickly transferred to yobit 2017-11-11 13:34:16+00:00 1.0 1121631209 706 pump notification 30min left till pump time 14 gmt target mn exchange yobit 2017-11-11 13:30:21+00:00 1.0 1121631209 705 pump notification 53min left till pump time 14 gmt target mn exchange yobit 2017-11-11 13:07:26+00:00 1.0 1121631209 704 pump notification 1 hour and 28min left till pump time 14 gmt target mn exchange yobit 2017-11-11 12:32:49+00:00 1.0 1121631209 701 2 hour 32minutes left till pump yobit exchange 1400 gmt 2017-11-11 11:38:09+00:00 1.0 1121631209 700 3 hour 22 minutes left till pump yobit exchange 1400 gmt 2017-11-11 10:38:20+00:00 1.0 1121631209 699 6 hour 45 minutes left till pump yobit exchange 1400 gmt 2017-11-11 08:14:36+00:00 1.0 1121631209 453 massive pump now bittrex coin xst btc xst target is 35 no prepump ever 2017-11-06 16:30:35+00:00 1.0 1121631209 452 massive pump now bittrex coin xst btc xst target is 35 no prepump ever 2017-11-06 16:30:00+00:00 1.0 1121631209 451 massive pump 5 minutes bittrex 1530 gmt target is 35 no prepump ever 2017-11-06 16:24:22+00:00 1.0 1121631209 450 massive pump 10 minutes bittrex 1530 gmt target is 35 no prepump ever 2017-11-06 16:19:50+00:00 1.0 1121631209 448 massive pump 15 minutes bittrex 1530 gmt target is 35 no prepump ever 2017-11-06 16:14:14+00:00 1.0 1121631209 447 massive pump 20 minutes bittrex 1530 gmt target is 35 no prepump ever 2017-11-06 16:08:46+00:00 1.0 1121631209 445 massive pump 30 minutes bittrex 1530 gmt target is 35 no prepump ever 2017-11-06 16:03:42+00:00 1.0 1121631209 444 massive pump 45 minutes bittrex 1530 gmt target is 35 no prepump ever 2017-11-06 15:47:58+00:00 1.0 1121631209 435 big pump 06112017 1500gmt next pump after 5 mins exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping 2017-11-06 14:55:03+00:00 1.0 1121631209 433 big pump 06112017 1500gmt next pump after 15 mins exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person 3 our main goal is that all pumbittex participants will be profitable maximum 005 btc minimum and 05 btc maximum 4 participation in selfrisk trading never use more than 25 of your btc +pump+todayfontcursive 2017-11-06 14:45:04+00:00 1.0 1121631209 432 massive pump 2 hours bittrex 1530 gmt target is 35 no prepump ever 2017-11-06 14:42:16+00:00 1.0 1121631209 430 big pump 06112017 1500gmt next pump after 30 mins exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person 3 our main goal is that all pumbittex participants will be profitable maximum 005 btc minimum and 05 btc maximum 4 participation in selfrisk trading never use more than 25 of your btc +pump+todayfontcursive 2017-11-06 14:30:07+00:00 1.0 1121631209 428 big pump 06112017 1500gmt exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person 3 our main goal is that all pumbittex participants will be profitable maximum 005 btc minimum and 05 btc maximum 4 participation in selfrisk trading never use more than 25 of your btc 2017-11-06 14:16:11+00:00 1.0 1121631209 425 big pump after 5 mins☄️☄️ ⚡️ login bittrex⚡️ good coin 2017-11-06 13:55:28+00:00 1.0 1121631209 420 big pump 06112017 1430 gmt exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person 3 our main goal is that all pumbittex participants will be profitable maximum 005 btc minimum and 05 btc maximum 4 participation in selfrisk trading never use more than 25 of your btc 2017-11-06 10:10:04+00:00 1.0 1121631209 361 massive pump now bittrex coin vtr btc vtr target is 50 2017-11-04 16:01:15+00:00 1.0 1121631209 360 next post will be coin name and link 2017-11-04 15:57:20+00:00 1.0 1121631209 359 massive pump 5 minutes bittrex 1600 gmt target is 50 pump and hold our last two pumps of omni and dtb got 25 and lasted several minutes 2017-11-04 15:55:35+00:00 1.0 1121631209 358 massive pump 10 minutes bittrex 1600 gmt target is 50 pump and hold our last two pumps of omni and dtb got 25 and lasted several minutes 2017-11-04 15:50:22+00:00 1.0 1121631209 357 massive pump 15 minutes bittrex 1600 gmt target is 50 pump and hold our last two pumps of omni and dtb got 25 and lasted several minutes 2017-11-04 15:46:51+00:00 1.0 1121631209 356 massive pump 20 minutes bittrex 1600 gmt target is 50 pump and hold our last two pumps of omni and dtb got 25 and lasted several minutes 2017-11-04 15:38:59+00:00 1.0 1121631209 327 as you can see here we dont prepump over 20 and it held its value be ready for our pump tomorrow at 1600 gmt on bittrex 2017-11-03 16:42:12+00:00 1.0 1121631209 326 our pump of omni went over 20 and is still holding its value minutes later if you missed out today then be ready for tomorrow next pump 1600 gmt bittrex target 40 2017-11-03 16:07:43+00:00 1.0 1121631209 325 massive pump now bittrex coin omni btc omni target is 50 pump and hold 2017-11-03 15:59:50+00:00 1.0 1121631209 324 next post will be coin name and link 2017-11-03 15:56:41+00:00 1.0 1121631209 323 massive pump 5 minutes 1600 gmt bittrex target is 40 no prepump ever 2017-11-03 15:55:34+00:00 1.0 1121631209 322 massive pump 10 minutes 1600 gmt bittrex target is 40 no prepump ever 2017-11-03 15:50:40+00:00 1.0 1121631209 321 massive pump 20 minutes 1600 gmt bittrex target is 40 no prepump ever 2017-11-03 15:40:37+00:00 1.0 1121631209 320 massive pump 30 minutes 1600 gmt bittrex target is 40 no prepump ever 2017-11-03 15:35:26+00:00 1.0 1121631209 316 massive pump 1 hour 1600 gmt bittrex target is 40 no prepump ever 2017-11-03 14:59:48+00:00 1.0 1121631209 314 call news pump vip signal coming in 5 mins left exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping 2017-11-03 14:55:04+00:00 1.0 1121631209 313 call news pump vip signal coming in 15 mins left exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping 2017-11-03 14:45:05+00:00 1.0 1121631209 312 call news pump vip signal coming in 30 mins left exchange bittrex bittrexcom participants 50k the volume of coin will be announced at 1 minute before pumping 2017-11-03 14:30:04+00:00 1.0 1121631209 311 massive pump 1 hour 30 minutes 1600 gmt bittrex target is 40 no prepump ever 2017-11-03 14:29:59+00:00 1.0 1121631209 310 massive pump 2 hours 1600 gmt bittrex target is 40 no prepump ever 2017-11-03 14:28:02+00:00 1.0 1121631209 309 announcement pump vip signal —— we will provide very powerfull and profitable call do not loose the opportunity to make some btc date nov 3 ⏰ time 1500 gmt —— exchange bittrex —— +pump+vip+signalfontcursive 2017-11-03 14:00:04+00:00 1.0 1121631209 308 announcement pump vip signal —— we will provide very powerfull and profitable call do not loose the opportunity to make some btc date nov 3 ⏰ time 1500 gmt —— exchange bittrex —— 2017-11-03 13:08:50+00:00 1.0 1121631209 307 big signal today 20171103 1300 gmt next signal after 30 mins time 1300 gmt exchange bittrexcom participants 40k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person 2017-11-03 08:59:58+00:00 1.0 1121631209 292 big signal today 20171102 1300 gmt next signal after 5 mins time 1300 gmt exchange bittrexcom participants 40k the volume of coin will be announced at 1 minute before pumping +signal+todayfontsanserif 2017-11-02 12:55:06+00:00 1.0 1121631209 291 big signal today 20171102 1300 gmt next signal after 15 mins time 1300 gmt exchange bittrexcom participants 40k the volume of coin will be announced at 1 minute before pumping +signal+todayfontsanserif 2017-11-02 12:45:03+00:00 1.0 1121631209 290 big signal today 20171102 1300 gmt next signal after 30 mins time 1300 gmt exchange bittrexcom participants 40k the volume of coin will be announced at 1 minute before pumping +signal+todayfontsanserif 2017-11-02 12:30:06+00:00 1.0 1121631209 289 big signal today 20171102 1300 gmt time 1300 gmt exchange bittrexcom participants 40k the volume of coin will be announced at 1 minute before pumping +signal+todayfontsanserif 2017-11-02 12:00:09+00:00 1.0 1121631209 288 big signal today 20171102 1300 gmt time 1300 gmt exchange bittrexcom participants 40k 2017-11-02 11:27:52+00:00 1.0 1121631209 287 big pump 02112017 1400 gmt exchange bittrex bittrexcom participants 52k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person 3 our main goal is that all pumbittex participants will be profitable maximum 005 btc minimum and 05 btc maximum 4 participation in selfrisk trading never use more than 25 of your btc 2017-11-02 10:39:18+00:00 1.0 1121631209 280 next post will be coin name and link 2017-11-01 15:59:53+00:00 1.0 1121631209 258 big pump 31102017 1500 gmt next pump after 5 mins exchange bittrex bittrexcom participants 45k the volume of coin will be announced at 1 minute before pumping 2017-10-31 14:55:06+00:00 1.0 1121631209 245 big pump after 5 min☄️☄️ login bittrexcom ready 2017-10-30 14:55:05+00:00 1.0 1121631209 244 big pump 30102017 1500 gmt next pump after 15 mins exchange bittrex bittrexcom participants 45k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person +pump+bittrexfontcursive 2017-10-30 14:45:06+00:00 1.0 1121631209 243 big pump 30102017 1500 gmt next pump after 30 mins exchange bittrex bittrexcom participants 45k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person +pump+bittrexfontcursive 2017-10-30 14:30:06+00:00 1.0 1121631209 242 big pump 28102017 1500 gmt exchange bittrex bittrexcom participants 45k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person +pump+bittrexfontcursive 2017-10-30 14:14:33+00:00 1.0 1121631209 236 big pump 30102017 1500 gmt exchange bittrex bittrexcom participants 45k the volume of coin will be announced at 1 minute before pumping important 1 this is a pump in about 1 minute so buy fast and sell on high time to get the highest profit 2 pump without charge group success or not depending on skill of each person 2017-10-30 07:23:00+00:00 1.0 1121631209 151 ✈️big pump bittrex✈️ ⏰timer 1230 gmt bittrex⏰ buy and hold 12 minutes to get the highest profit 2017-10-25 10:33:49+00:00 1.0 1453496985 4545 in regards to when alt season historically doge is the first coin to pump initiating the altcoins to begin running this charts speaks for itself 2021-01-02 18:13:08+00:00 1.0 1453496985 3315 good morning team starting today with neousd on the weekly chart it looks like we could be on 5 wave impulse move up with the final upside target located at 25 to further confirm this we would need to see a break of the multiyear resistance countertrendline neo is one of the few top altcoins projects thats hasnt seen a significant pump yet we also have the anticipated main net 30 to be released later on this year one to watch especially once we have the confirmed breakout 2020-08-07 08:55:53+00:00 1.0 1132534018 4275 dont stupid to short our pump coin 2021-06-16 11:38:06+00:00 1.0 1132534018 4233 he is pumper china pump big team asian whales big pump is coming soon sponsoredad 2021-06-13 10:59:36+00:00 1.0 1132534018 775 ‼️hi guys our expert team found 1 potential coin based in strong ta which can give you huge profit we call it super sunday coin this super signal will be here next 10 min exchange binance 2018-04-15 03:34:00+00:00 1.0 1365959417 3155 double money magic signal reef buy at 8090 satoshi targets 170180 join us in vip channel to get pump coin early message to jameslee44 2020-12-29 06:50:41+00:00 1.0 1365959417 3145 who have btc on kucoin exchange he can get pump coin free from me today at 3 pm gmt message me jameslee44 2020-11-16 09:51:34+00:00 1.0 1365959417 3128 less than 9 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel free vip access for next 30 minutes click here 2020-10-30 07:40:49+00:00 1.0 1365959417 3117 pump result43 vip got 1 hour early happy vip members got early pump coin in vip got 43 profit in 1 minute price jump to 829 2020-10-18 18:14:03+00:00 1.0 1365959417 3112 ⏰ 09 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-10-18 17:51:44+00:00 1.0 1365959417 3110 ⏰ 12 hour left for mega binance pump get ready for huge huge pump for 100150 message to jameslee44 to join vip channel 2020-10-18 13:27:53+00:00 1.0 1365959417 3109 pump announcement hello guys we have schedule our next mega pump pump schedule time 18 october today ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-10-18 13:27:28+00:00 1.0 1365959417 3107 ⏰ 14 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-10-17 15:46:51+00:00 1.0 1365959417 3105 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-10-17 04:04:36+00:00 1.0 1365959417 3104 ⏰ 12 hour left for mega binance pump get ready for huge huge pump for 100150 2020-10-17 04:04:23+00:00 1.0 1365959417 3103 pump announcement hello guys we have schedule our next mega pump pump schedule time 17 october today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-10-17 04:04:00+00:00 1.0 1365959417 3097 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-10-09 16:17:31+00:00 1.0 1365959417 3093 hello guys attention who want free 40 pump coin in next 1 hour target will achieve in 4 hour with guarantee message us jameslee44 2020-09-24 02:33:43+00:00 1.0 1365959417 3086 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-09-09 03:33:45+00:00 1.0 1365959417 3085 pump result40 vip got 1 hour early happy vip members got early pump coin in vip got 40 profit in 1 minute price jump to 262 2020-09-09 03:33:20+00:00 1.0 1365959417 3081 next post will be coin name 2020-09-08 15:54:52+00:00 1.0 1365959417 3080 ⏰ last 6 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-09-08 15:54:05+00:00 1.0 1365959417 3079 ⏰ 1 hour left for mega binance pump get ready for huge huge pump for 100150 2020-09-08 15:01:25+00:00 1.0 1365959417 3078 ⏰ lest then 2 hour left for mega binance pump get ready for huge huge pump for 100150 2020-09-08 14:09:42+00:00 1.0 1365959417 3076 pump announcement hello guys we have schedule our next mega pump pump schedule time 06 september today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-09-08 14:09:06+00:00 1.0 1365959417 3074 ⏰ 12 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-09-06 15:48:47+00:00 1.0 1365959417 3073 ⏰ last 1 hour and 48 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-09-06 14:12:11+00:00 1.0 1365959417 3071 pump announcement hello guys we have schedule our next mega pump pump schedule time 04 september today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-09-06 14:11:41+00:00 1.0 1365959417 3068 anyone who have 2+ btc they can make 1 btc profit within next 4 hours with 5080 pump giving free coin to people message me back jameslee44 2020-09-06 05:40:04+00:00 1.0 1365959417 3054 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-08-16 17:57:35+00:00 1.0 1365959417 3053 ⏰ 10 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-08-16 17:49:58+00:00 1.0 1365959417 3051 ⏰ last 3 hour and 35 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-08-16 14:26:02+00:00 1.0 1365959417 3050 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-08-15 04:47:24+00:00 1.0 1365959417 3048 pump announcement hello guys we have schedule our next mega pump pump schedule time 16 august tomorrow ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-08-15 04:46:57+00:00 1.0 1365959417 3047 today binance pump analysis coin ppt low 2554 high 3995 exchange binance profit 5642 profit 2020-08-04 18:20:14+00:00 1.0 1365959417 3044 ⏰ last 25 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-08-04 17:35:09+00:00 1.0 1365959417 3043 ⏰ last 1 hour left for mega binance pump get ready for huge huge pump for 100150 2020-08-04 17:00:35+00:00 1.0 1365959417 3042 ⏰ less than 2 hour left for mega binance pump get ready for huge huge pump for 100150 2020-08-04 16:36:22+00:00 1.0 1365959417 3041 ⏰ less than 3 hour left for mega binance pump get ready for huge huge pump for 100150 2020-08-04 15:45:16+00:00 1.0 1365959417 3040 ⏰ less than 31 hour left for mega binance pump get ready for huge huge pump for 100150 2020-08-03 11:06:17+00:00 1.0 1365959417 3038 pump announcement hello guys we have schedule our next mega pump pump schedule time 04 august tomorrow ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-08-03 11:02:50+00:00 1.0 1365959417 3036 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-07-21 16:14:14+00:00 1.0 1365959417 3035 today binance pump analysis coin nxs low 2235 high 3100 exchange binance profit 3870 profit the pump went on for 5 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk for vip membership message to jameslee44 2020-07-21 16:13:36+00:00 1.0 1365959417 3029 next post will be coin name 2020-07-21 15:55:16+00:00 1.0 1365959417 3028 ⏰ last 5 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-07-21 15:55:01+00:00 1.0 1365959417 3027 ⏰ 1 hour left for mega binance pump get ready for huge huge pump for 100150 2020-07-21 15:09:42+00:00 1.0 1365959417 3026 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-07-21 11:57:09+00:00 1.0 1365959417 3025 ⏰ 4 hour left for mega binance pump get ready for huge huge pump for 100150 2020-07-21 11:56:59+00:00 1.0 1365959417 3023 pump announcement hello guys we have schedule our next mega pump pump schedule time 21 july today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-07-21 11:56:21+00:00 1.0 1365959417 3022 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-07-07 11:35:23+00:00 1.0 1365959417 3016 pump coin name is gvt 2020-07-04 16:00:42+00:00 1.0 1365959417 3015 stay online | and keep an eye over here only 10 minutes left the next post will be galaxy beast alt name today 4 pm gmt 2020-07-04 15:50:46+00:00 1.0 1365959417 3013 ⏰ less than 1 hour left for mega binance pump get ready for huge huge pump for 100150 2020-07-04 15:07:46+00:00 1.0 1365959417 3012 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-07-04 10:27:40+00:00 1.0 1365959417 3010 ⏰ less than 6 hour left for mega binance pump get ready for huge huge pump for 100150 2020-07-04 10:27:20+00:00 1.0 1365959417 3009 pump announcement hello guys we have schedule our next mega pump pump schedule time 04 july today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-07-04 10:26:53+00:00 1.0 1365959417 3005 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-06-16 08:37:18+00:00 1.0 1365959417 3004 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-06-04 08:14:46+00:00 1.0 1365959417 2998 ⏰ 3 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-06-03 15:57:23+00:00 1.0 1365959417 2997 ⏰ 2 hour left for mega binance pump get ready for huge huge pump for 100150 2020-06-03 14:17:14+00:00 1.0 1365959417 2996 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-06-02 13:46:48+00:00 1.0 1365959417 2993 ⏰ less than 27 hour left for mega binance pump get ready for huge huge pump for 100150 2020-06-02 13:45:39+00:00 1.0 1365959417 2992 pump announcement hello guys we have schedule our next mega pump pump schedule time 02 june tomorrow ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-06-02 13:45:39+00:00 1.0 1365959417 2991 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-05-29 13:23:38+00:00 1.0 1365959417 2988 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-05-23 08:47:10+00:00 1.0 1365959417 2978 free trial join vip channel to get pump coin name 1 hour early to get free trail of 50+ profit in 6+8 hours message us jameslee44 2020-05-20 07:48:52+00:00 1.0 1365959417 2966 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-05-12 15:46:30+00:00 1.0 1365959417 2965 guys soon as btc will get stable above 7k we will make the mega pump event 400 pump join to our whales vip 1 hour advantage 50 profit 2020-05-12 15:46:15+00:00 1.0 1365959417 2960 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-05-10 10:16:42+00:00 1.0 1365959417 2955 pump coin name ppt 2020-05-03 17:30:01+00:00 1.0 1365959417 2954 next post will be coin name 2020-05-03 17:26:04+00:00 1.0 1365959417 2952 ok guys this pump is going to the moon so be ready we will pick a coin with 0 prepump to give same opportunities to everybody 2020-05-03 17:13:32+00:00 1.0 1365959417 2941 heavy pump alert❗ date 3rd may ⏱ time 1730 pm gmt exchange binance 2020-05-02 22:08:51+00:00 1.0 1365959417 2884 50 discount for vip channel and premium both for next 1 hour golden chance to join you will get pump coin name 1 hour early in vip channel before happen in public channel message to jameslee44 to join vip channel 2020-04-29 01:40:21+00:00 1.0 1365959417 2851 pump alert❗ coin name dlt 2020-04-24 20:44:59+00:00 1.0 1365959417 2849 ⏰ less than 22 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-23 18:16:24+00:00 1.0 1365959417 2848 pump announcement hello guys we have schedule our next mega pump pump schedule time 24th april today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-04-23 18:15:36+00:00 1.0 1365959417 2835 pump coin name rdn 2020-04-21 13:58:56+00:00 1.0 1365959417 2834 next post will be coin name 2020-04-21 13:56:00+00:00 1.0 1365959417 2831 40 minutes for mega pump alert❗ 2020-04-21 13:20:53+00:00 1.0 1365959417 2830 only 3 hours left for mega pump alert❗ 2020-04-21 11:02:14+00:00 1.0 1365959417 2829 mega pump alert❗ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 22:25:13+00:00 1.0 1365959417 2810 ✅✅✅✅✅✅✅✅✅✅✅✅✅ gvt coin is our pump coin ✅✅✅✅✅✅✅✅✅✅✅✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2020-04-15 16:16:14+00:00 1.0 1365959417 2809 pump result27 vip got 1 hour early happy vip members got early pump coin in vip got 27 profit in 1 minute price jump to 14000 2020-04-15 16:08:36+00:00 1.0 1365959417 2805 ⏰ 35 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-04-15 15:25:44+00:00 1.0 1365959417 2803 ⏰ 2 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-15 12:06:22+00:00 1.0 1365959417 2802 pump announcement hello guys we have schedule our next mega pump pump schedule time 15th april today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-04-15 12:05:59+00:00 1.0 1365959417 2798 ⏰ 33 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-04-14 15:27:25+00:00 1.0 1365959417 2797 ⏰ 2 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-14 14:00:48+00:00 1.0 1365959417 2791 ⏰ 3 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-14 12:47:39+00:00 1.0 1365959417 2788 ⏰ less than 05 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-14 10:13:38+00:00 1.0 1365959417 2786 ⏰ less than 08 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-14 08:35:59+00:00 1.0 1365959417 2783 ⏰ less than 13 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-14 03:26:31+00:00 1.0 1365959417 2781 pump announcement hello guys we have schedule our next mega pump pump schedule time 14th april today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-04-14 03:25:16+00:00 1.0 1365959417 2774 5 minutes left next post is the coin for todays event 2020-04-13 11:54:23+00:00 1.0 1365959417 2773 8 minutes left we are close to ready however the most important thing is that the members are ready our target is to grab the top gainer spot in binance and stay there for 24 hours atleast huge liquidity and fomo in market today 2020-04-13 11:52:45+00:00 1.0 1365959417 2772 alright guys btc dumping and alts are stable raising we will have a cyber monday pump event today ‼️‼️ time 1200 pm binance exchange freeforall pump event ❗️ we have some good picks for you bottomed coins with beautiful potential all you have to do is buy and hold for whoooping 3070 profit binancemegapump1 2020-04-13 11:52:01+00:00 1.0 1365959417 2766 premium offer guys if you are in loss and not getting profit then join our vip service if u follow us in vip channel we will make your little money into huge amount in 48 week maximum benefits of joining vip channel ✅you will get pump coin name and signals 1 hour early than public channel ✅early latest binance coin event news like mainnetlistingforklot off otherin our special official upcoming events channel ✅personal guidelines about everything daily in vip channel also through personal chat ✅instant whale pump call alert ✅scalp trading profit signals in vip channel ✅btc price and alts market updates daily ✅about stock exchange market info as well in our vip club you will definitely earn huge and your portfolio will grow massively contact for vip service davidwoksin 2020-04-11 13:32:36+00:00 1.0 1365959417 2761 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:05+00:00 1.0 1365959417 2759 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:06+00:00 1.0 1365959417 2758 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:07+00:00 1.0 1365959417 2756 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:06+00:00 1.0 1365959417 2749 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:06+00:00 1.0 1365959417 2745 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:06+00:00 1.0 1365959417 2744 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:06+00:00 1.0 1365959417 2743 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:11+00:00 1.0 1365959417 2742 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:06+00:00 1.0 1365959417 2741 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:06+00:00 1.0 1365959417 2740 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:06+00:00 1.0 1365959417 2737 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:05+00:00 1.0 1365959417 2730 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:06+00:00 1.0 1365959417 2729 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:05+00:00 1.0 1365959417 2728 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:05+00:00 1.0 1365959417 2719 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:07+00:00 1.0 1365959417 2718 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:42+00:00 1.0 1365959417 2715 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:48+00:00 1.0 1365959417 2714 ffa pump announcement next pump monday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:43:57+00:00 1.0 1365959417 2707 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1365959417 2704 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:04+00:00 1.0 1365959417 2701 ⏰ 1 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-07 17:01:22+00:00 1.0 1365959417 2695 ⏰ less than 5 hour left for mega binance pump get ready for huge huge pump for 100150 2020-04-07 13:18:02+00:00 1.0 1365959417 2690 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:07+00:00 1.0 1365959417 2689 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:06+00:00 1.0 1365959417 2687 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:04+00:00 1.0 1365959417 2685 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:04+00:00 1.0 1365959417 2684 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:04+00:00 1.0 1365959417 2683 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:06+00:00 1.0 1365959417 2682 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:04+00:00 1.0 1365959417 2681 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:04+00:00 1.0 1365959417 2680 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:05+00:00 1.0 1365959417 2677 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:04+00:00 1.0 1365959417 2676 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:04+00:00 1.0 1365959417 2675 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:04+00:00 1.0 1365959417 2673 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:04+00:00 1.0 1365959417 2672 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:03+00:00 1.0 1365959417 2671 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:03+00:00 1.0 1365959417 2670 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:02+00:00 1.0 1365959417 2668 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:03+00:00 1.0 1365959417 2666 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:50+00:00 1.0 1365959417 2660 ⏰ just 30 minutes left for mega binance pump get ready for huge 7080 blast 2020-04-04 15:30:29+00:00 1.0 1365959417 2659 ⏰ just 59 minutes left for mega binance pump get ready for huge 7080 blast 2020-04-04 15:01:07+00:00 1.0 1365959417 2658 ⏰ just 85 minutes left for mega binance pump get ready for huge 7080 blast 2020-04-04 14:35:22+00:00 1.0 1365959417 2654 pump announcement hello guys we have schedule our next mega pump pump schedule time 4th april today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-04-04 05:16:07+00:00 1.0 1365959417 2653 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:02+00:00 1.0 1365959417 2650 ✅✅✅✅✅✅✅✅✅✅✅✅✅ ark coin is our pump coin ✅✅✅✅✅✅✅✅✅✅✅✅✅ buy it now it will go huge as it announce in public after 5 minutes then sell it fast ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2020-04-03 19:55:36+00:00 1.0 1365959417 2648 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:58+00:00 1.0 1365959417 2638 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:02+00:00 1.0 1365959417 2636 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:02+00:00 1.0 1365959417 2634 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:02+00:00 1.0 1365959417 2633 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:03+00:00 1.0 1365959417 2632 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:17+00:00 1.0 1365959417 2631 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:09+00:00 1.0 1365959417 2628 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:07+00:00 1.0 1365959417 2625 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:01+00:00 1.0 1365959417 2623 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:02+00:00 1.0 1365959417 2622 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:02+00:00 1.0 1365959417 2620 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:03+00:00 1.0 1365959417 2619 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:02+00:00 1.0 1365959417 2581 next post will be coin name ‼️ 2020-04-01 11:58:09+00:00 1.0 1365959417 2579 1 hour left for mega pump 2020-04-01 11:00:57+00:00 1.0 1365959417 2577 pump announcement hello guys we have schedule our next mega pump pump schedule time 1st april today ⏰at 1200 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-04-01 10:57:43+00:00 1.0 1365959417 2546 important alt markets is doing great taday and rock bottom whale signal is expected to give great return dont miss this opportunity just 30 minutes left 400pm1600gmt stay tuned for more updates 2020-03-27 15:30:34+00:00 1.0 1365959417 2543 ⏰ 5 hour left for mega binance pump get ready for huge huge pump for 100150 2020-03-27 11:00:02+00:00 1.0 1365959417 2542 ⏰ 6 hour left for mega binance pump get ready for huge huge pump for 100150 2020-03-27 10:00:00+00:00 1.0 1365959417 2539 ⏰ 9 hour left for mega binance pump get ready for huge huge pump for 100150 2020-03-27 08:43:22+00:00 1.0 1365959417 2537 pump announcement hello guys we have schedule our next mega pump pump schedule time 27th march today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-27 08:43:03+00:00 1.0 1365959417 2530 pump coin name is edo 2020-03-26 16:00:33+00:00 1.0 1365959417 2529 ⏰ 14 minutes left for mega binance pump get ready for huge huge pump for 100150 2020-03-26 15:46:01+00:00 1.0 1365959417 2527 ⏰ 6 hour left for mega binance pump get ready for huge huge pump for 100150 2020-03-26 09:48:11+00:00 1.0 1365959417 2525 pump announcement hello guys we have schedule our next mega pump pump schedule time 26th march today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-26 09:47:28+00:00 1.0 1365959417 2514 ⏰ less than 11 hour left for mega binance pump 2020-03-25 05:24:16+00:00 1.0 1365959417 2512 pump announcement hello guys we have schedule our next mega pump pump schedule time 25th march today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-25 05:23:36+00:00 1.0 1365959417 2494 we found a new coin guys 15btc to 50 lets hope market wont pump it 1 minutes left ‼️ 2020-03-21 16:39:02+00:00 1.0 1365959417 2488 3 minutes left next post is the coin you guys chose ‼️ 2020-03-21 15:57:13+00:00 1.0 1365959417 2441 ⏰ just 8 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-17 16:52:16+00:00 1.0 1365959417 2439 ⏰ just 30 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-17 16:30:03+00:00 1.0 1365959417 2436 ⏰ just 60 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-17 16:00:08+00:00 1.0 1365959417 2430 ⏰ just last 4 hours left for mega binance pump get ready for huge 5080 blast 2020-03-17 13:00:04+00:00 1.0 1365959417 2428 ⏰ just less than 5 hours left for mega binance pump get ready for huge 5080 blast 2020-03-17 12:14:44+00:00 1.0 1365959417 2423 pump announcement hello guys we have schedule our next mega pump pump schedule time 17th march today ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-16 19:00:53+00:00 1.0 1365959417 2417 ⏰ just 1 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:59:10+00:00 1.0 1365959417 2416 ⏰ just 2 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:57:56+00:00 1.0 1365959417 2415 ⏰ just 3 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:56:56+00:00 1.0 1365959417 2414 ⏰ just 4 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:55:56+00:00 1.0 1365959417 2413 ⏰ just 5 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:54:57+00:00 1.0 1365959417 2412 ⏰ just 6 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:53:55+00:00 1.0 1365959417 2411 ⏰ just 7 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:52:56+00:00 1.0 1365959417 2410 ⏰ just 8 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:52:02+00:00 1.0 1365959417 2409 ⏰ just 9 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:51:36+00:00 1.0 1365959417 2408 ⏰ just 10 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:50:21+00:00 1.0 1365959417 2407 ⏰ just 18 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:42:39+00:00 1.0 1365959417 2406 ⏰ just 55 minutes left for mega binance pump get ready for huge 5080 blast 2020-03-16 15:05:37+00:00 1.0 1365959417 2404 ⏰ just 2 hours left for mega binance pump get ready for huge 5080 blast 2020-03-16 14:00:42+00:00 1.0 1365959417 2399 ⏰ just less than 5 hours left for mega binance pump get ready for huge 5080 blast 2020-03-16 11:28:23+00:00 1.0 1365959417 2397 pump announcement hello guys we have schedule our next mega pump pump schedule time 16th march today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-16 11:27:53+00:00 1.0 1365959417 2394 congratulations pump result ✅10 profit 12 profit for vips they got coin name 1 hour early 2020-03-16 07:26:36+00:00 1.0 1365959417 2393 pump coin name nebl 2020-03-15 20:00:12+00:00 1.0 1365959417 2392 next post will be the coin name 2020-03-15 19:53:08+00:00 1.0 1365959417 2390 less than 1 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 19:15:51+00:00 1.0 1365959417 2388 less than 2 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 18:06:00+00:00 1.0 1365959417 2386 ⏰ just less than 3 hours left for mega binance pump get ready for huge 5080 blast 2020-03-15 17:37:24+00:00 1.0 1365959417 2385 ⏰ just 4 hours left for mega binance pump get ready for huge 5080 blast 2020-03-15 16:25:03+00:00 1.0 1365959417 2384 ⏰ just 13 hours left for mega binance pump get ready for huge 5080 blast 2020-03-15 13:02:05+00:00 1.0 1365959417 2383 ⏰ just 13 hours left for mega binance pump get ready for huge 5080 blast 2020-03-15 07:17:28+00:00 1.0 1365959417 2381 pump announcement hello guys we have schedule our next mega pump pump schedule time 15th march today ⏰at 0800 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-15 07:16:17+00:00 1.0 1365959417 2377 pump coin name is nxs buy near 2000 hold for 24002600 2020-03-12 17:00:00+00:00 1.0 1365959417 2376 ⏰ 14 minutes left for mega binance pump 2020-03-12 16:46:44+00:00 1.0 1365959417 2374 ⏰ just 3 hours left for mega binance pump get ready for huge 5080 blast 2020-03-12 14:00:17+00:00 1.0 1365959417 2373 just less than 5 hours left❗ get ready with your biginvest pump target today 5080 2020-03-12 12:29:49+00:00 1.0 1365959417 2371 pump announcement hello guys we have schedule our next mega pump pump schedule time 12th march today ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-12 12:24:28+00:00 1.0 1365959417 2368 congratulations pump result ✅10 profit 10 profit for vips they got coin name 1 hour early 2020-03-11 20:06:27+00:00 1.0 1365959417 2366 pump coin name brd 2020-03-11 20:00:25+00:00 1.0 1365959417 2365 next post will be pump coin name 2020-03-11 19:46:04+00:00 1.0 1365959417 2253 less than 30 minutes left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time 2020-03-11 19:32:45+00:00 1.0 1365959417 2252 last 1 hour left for mega binance pump ❗ 2020-03-11 19:01:43+00:00 1.0 1365959417 2251 less than 1 hour left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time 2020-03-11 19:01:43+00:00 1.0 1365959417 2250 less than 2 hours left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time 2020-03-11 18:13:53+00:00 1.0 1365959417 2249 ⏰ just less than 3 hours left for mega binance pump get ready for huge 70100 blast 2020-03-11 17:23:05+00:00 1.0 1365959417 2248 ⏰ just less than 9 hours left for mega binance pump get ready for huge 70100 blast 2020-03-11 11:23:31+00:00 1.0 1365959417 2245 ⏰ just less than 11 hours left for mega binance pump get ready for huge 70100 blast 2020-03-11 09:31:46+00:00 1.0 1365959417 2243 pump announcement hello guys we have schedule our next mega pump pump schedule time 11th march today ⏰at 0800 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-11 09:30:50+00:00 1.0 1365959417 2242 congratulations pump result ✅20 profit 20 profit for vips they got coin name 1 hour early 2020-03-11 09:29:44+00:00 1.0 1365959417 2236 pump coin name is nav 2020-03-09 20:00:01+00:00 1.0 1365959417 2227 ⏰ less than 4 hour left for mega binance pump get ready for huge 50100 pump 2020-03-09 16:11:25+00:00 1.0 1365959417 2225 ⏰ less than 5 hour left for mega binance pump get ready for huge 50100 pump 2020-03-09 15:12:16+00:00 1.0 1365959417 2224 ⏰ less than 6 hour left for mega binance pump get ready for huge 50100 pump 2020-03-09 14:32:09+00:00 1.0 1365959417 2223 ⏰ just less than 15 hours left for mega binance pump get ready for huge 70100 blast 2020-03-09 05:10:36+00:00 1.0 1365959417 2221 pump announcement hello guys we have schedule our next mega pump pump schedule time 9th march today ⏰at 0800 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-03-09 05:09:03+00:00 1.0 1365959417 2194 congratulations sngls hit 157 pump result ✅30 profit 30 profit for vips they got coin name 1 hour early 2020-03-08 19:06:53+00:00 1.0 1365959417 2192 ⏰ 5 minutes left for mega binance pump next message will be coin name get ready for ghuge 70100 blast 2020-03-08 18:55:54+00:00 1.0 1365959417 2191 ⏰ 20 minutes left for mega binance pump get ready for ghuge 70100 blast 2020-03-08 18:40:01+00:00 1.0 1365959417 2190 ⏰ 40 minutes left for mega binance pump get ready for ghuge 70100 blast 2020-03-08 18:21:33+00:00 1.0 1365959417 2188 ⏰ just last 60 minutes left for mega binance pump get ready for ghuge 70100 blast 2020-03-08 18:01:23+00:00 1.0 1365959417 2186 ⏰ just last 3 hours left for mega binance pump get ready for huge 70100 blast 2020-03-08 16:23:09+00:00 1.0 1365959417 2185 ⏰ just 5 hours left for mega binance pump get ready for huge 70100 blast 2020-03-08 13:55:53+00:00 1.0 1365959417 2184 ⏰ just less than 7 hours left for mega binance pump get ready for huge 70100 blast 2020-03-08 12:30:02+00:00 1.0 1365959417 2183 ⏰ just less than 14 hours left for mega binance pump get ready for huge 70100 blast 2020-03-08 05:43:22+00:00 1.0 1365959417 2181 ⏰ 27 hours left for mega binance pump 2020-03-07 16:00:00+00:00 1.0 1365959417 2178 pump announcement hello everyone the next official pump will be scheduled for date sunday march 8 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again our target for this pump will be at least 5070 the market is good and alot of people have been anxiously waiting for our next pump we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-03-06 17:14:35+00:00 1.0 1365959417 2168 ⏰ just 27 minutes left for mega binance pump 2020-02-27 15:33:41+00:00 1.0 1365959417 2167 pump announcement hello guys we have schedule our next mega pump pump schedule time 27th february today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-02-27 15:33:01+00:00 1.0 1365959417 2157 guys buy mbl at hotbit exchange at 6900 and sell on binance at high rate 2 hour and 15 minutes left to launch on binance 2020-02-21 12:41:27+00:00 1.0 1365959417 2151 pump coin name is nav 2020-02-20 16:02:41+00:00 1.0 1365959417 2150 ⏰ just 3 minutes left for mega binance pump get ready for huge profit 2020-02-20 15:57:18+00:00 1.0 1365959417 2148 pump announcement hello guys we have schedule our next mega pump pump schedule time 20th february today ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2020-02-20 15:56:25+00:00 1.0 1365959417 2138 ⏰ 90 minutes left for mega binance pump 2019-12-23 14:56:16+00:00 1.0 1365959417 2137 pump announcement hello guys we have schedule our next mega pump pump schedule time 23th december ⏰at 0430 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-12-23 14:55:51+00:00 1.0 1365959417 2062 breakout coin name nebl dont miss the global fomo 2019-10-27 15:57:23+00:00 1.0 1365959417 2059 breakout event guys our team has decided to organise a win win opportunity to you all where you can recover your losses due to btc pump and make some decent profit with us date oct 27 time 16 pm gmt exchange binance tommorow we will share a breakout coin with 2x target so be ready with your btc on binance and dont miss the breakout event more than 500k people are going to join this breakout event by the time keep your btc ready for blast✅ 2019-10-27 15:56:28+00:00 1.0 1365959417 2056 ⏰ only 5 minutes to go global fomo warming up next post will be the breakout coin name be very ready guys login binance and keep an eye here 2019-10-23 15:55:25+00:00 1.0 1365959417 2055 ⏰ 33 minutes left for mega binance pump 2019-10-23 15:27:58+00:00 1.0 1365959417 2052 ⏰ 1 hours and 11 minutes left for mega binance pump 2019-10-23 14:49:17+00:00 1.0 1365959417 2050 pump announcement hello guys we have schedule our next mega pump pump schedule time 23th october ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-10-23 14:48:28+00:00 1.0 1365959417 2047 ⏰ 14 minutes left for mega binance pump 2019-10-18 16:17:01+00:00 1.0 1365959417 2046 ⏰ 25 minutes left for mega binance pump 2019-10-18 16:06:00+00:00 1.0 1365959417 2045 ⏰ 88 minutes left for mega binance pump 2019-10-18 15:02:25+00:00 1.0 1365959417 2044 ⏰ 2 hours and 48 minutes left for mega binance pump 2019-10-18 13:42:55+00:00 1.0 1365959417 2041 ⏰ 8 hours left for mega binance pump 2019-10-18 08:42:12+00:00 1.0 1365959417 2035 ⏰ 11 hours left for mega binance pump 2019-10-18 05:21:15+00:00 1.0 1365959417 2032 pump announcement hello guys we have schedule our next mega pump pump schedule time 18th october ⏰at 0430 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-10-18 05:20:05+00:00 1.0 1365959417 1982 ⏰10 minutes left for mega binance pump 2019-10-02 17:50:29+00:00 1.0 1365959417 1979 ⏰55 minutes left for mega binance pump 2019-10-02 17:05:51+00:00 1.0 1365959417 1978 pump announcement hello guys we have schedule our next mega pump pump schedule time 2th october ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-10-02 17:05:20+00:00 1.0 1365959417 1967 ⏰ just 29 minutes left for mega binance pump 2019-09-19 16:31:30+00:00 1.0 1365959417 1966 ⏰ 5 hours left for mega binance pump 2019-09-19 12:05:14+00:00 1.0 1365959417 1965 ⏰ 8 hours left for mega binance pump 2019-09-19 08:43:48+00:00 1.0 1365959417 1964 ⏰ 25 hours left for mega binance pump 2019-09-18 16:00:04+00:00 1.0 1365959417 1928 ⏰just 3 hours left for mega binance pump ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2019-09-08 14:50:40+00:00 1.0 1365959417 1927 ⏰just 15 hours left for mega binance pump ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2019-09-08 03:06:03+00:00 1.0 1365959417 1925 ⏰40 hours left for mega binance pump 2019-09-07 02:24:40+00:00 1.0 1365959417 1923 pump announcement hello guys we have schedule our next mega pump pump schedule time 08th september sunday ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-09-07 02:23:38+00:00 1.0 1365959417 1903 coin was steam that pump 15 couldnt not post due to telegram error in area but pro vips got early and they sold at high peak 2019-08-25 18:35:21+00:00 1.0 1365959417 1902 ✅✅✅✅✅✅✅✅✅✅✅✅✅ ⏰1 hours and 12 minutes left for mega binance pump ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2019-08-25 15:48:49+00:00 1.0 1365959417 1897 ⏰just 3 hours left for mega binance pump ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2019-08-25 14:02:06+00:00 1.0 1365959417 1896 ⏰4 hours and 49 minutes left for mega binance pump ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2019-08-25 12:11:54+00:00 1.0 1365959417 1894 ⏰5 hours and 41 minutes left for mega binance pump ✅✅✅✅✅✅✅✅✅✅✅✅✅ 2019-08-25 11:19:32+00:00 1.0 1365959417 1888 ⏰10 hours and 33 minutes left for mega binance pump 2019-08-25 06:27:04+00:00 1.0 1365959417 1886 pump announcement hello guys we have schedule our next mega pump pump schedule time 25th august sunday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-25 06:26:32+00:00 1.0 1365959417 1876 ⏰6 minutes left for mega binance pump 2019-08-24 16:54:07+00:00 1.0 1365959417 1874 ⏰1 hour and 20 minutes left for mega binance pump 2019-08-24 15:40:38+00:00 1.0 1365959417 1872 ⏰7 hours left for mega binance pump 2019-08-24 10:18:14+00:00 1.0 1365959417 1870 pump announcement hello guys we have schedule our next mega pump pump schedule time 24th august saturday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-24 10:17:51+00:00 1.0 1365959417 1824 ⏰just 4 minutes left for mega binance pump 2019-08-16 16:56:31+00:00 1.0 1365959417 1823 ⏰just 36 minutes left for mega binance pump 2019-08-16 16:24:32+00:00 1.0 1365959417 1821 ⏰2 hours and 19 minutes left for mega binance pump 2019-08-16 14:41:33+00:00 1.0 1365959417 1820 ⏰6 hours left for mega binance pump 2019-08-16 11:00:07+00:00 1.0 1365959417 1816 ⏰10 hours left for mega binance pump 2019-08-16 07:13:55+00:00 1.0 1365959417 1814 pump announcement hello guys we have schedule our next mega pump pump schedule time 16th august friday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-16 07:13:33+00:00 1.0 1365959417 1802 ⏰5 minutes left the next message will be the coin name 2019-08-15 19:55:45+00:00 1.0 1365959417 1801 ⏰just 9 minutes left for mega binance pump 2019-08-15 19:51:15+00:00 1.0 1365959417 1800 ⏰less than 4 hours left for mega binance pump 2019-08-15 16:35:57+00:00 1.0 1365959417 1799 ⏰16 hours left for mega binance pump 2019-08-15 04:00:56+00:00 1.0 1365959417 1797 pump announcement hello guys we have schedule our next mega pump pump schedule time 15th august thursday ⏰at 0800 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-15 04:00:21+00:00 1.0 1365959417 1793 ⏰just 50 minutes left for mega binance pump 2019-08-14 15:10:02+00:00 1.0 1365959417 1792 ⏰1 hour and 26 minutes left for mega binance pump 2019-08-14 14:34:47+00:00 1.0 1365959417 1789 ⏰5 hour left for mega binance pump 2019-08-14 10:46:49+00:00 1.0 1365959417 1786 pump announcement hello guys we have schedule our next mega pump pump schedule time 14th august wednesday ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-14 07:58:34+00:00 1.0 1365959417 1777 ⏰3 hour left for mega binance pump 2019-08-13 17:01:56+00:00 1.0 1365959417 1774 ⏰3 hour and 21 minutes left for mega binance pump 2019-08-13 16:39:18+00:00 1.0 1365959417 1772 pump announcement hello guys we have schedule our next mega pump pump schedule time 13th august tuesday ⏰at 0800 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-13 16:38:35+00:00 1.0 1365959417 1759 09 minutes left for mega binance pump 2019-08-10 19:51:04+00:00 1.0 1365959417 1755 ⏰ 2 hour left for mega binance pump get ready guys again target 3060 2019-08-10 17:27:07+00:00 1.0 1365959417 1754 ⏰ 5 hour left for mega binance pump get ready guys again target 3060 2019-08-10 15:09:32+00:00 1.0 1365959417 1751 pump announcement hello guys we have schedule our next mega pump pump schedule time 10th august saturday ⏰at 0800 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-10 15:08:27+00:00 1.0 1365959417 1729 ⏰ 24 minutes left for mega binance pump target 100200 2019-08-09 14:36:16+00:00 1.0 1365959417 1727 ⏰ almost 2 hours left for mega binance pump target 100200 2019-08-09 12:36:10+00:00 1.0 1365959417 1726 ⏰ 12 hours left for mega binance pump target 100200 2019-08-09 03:00:09+00:00 1.0 1365959417 1723 pump announcement hello guys we have schedule our next mega pump pump schedule time 9th august friday ⏰at 0300 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-09 02:57:29+00:00 1.0 1365959417 1710 ⏰ less then 1 hour left for mega binance pump get ready for huge profit like 5080 2019-08-07 16:17:46+00:00 1.0 1365959417 1709 ⏰ 7 hours left for mega binance pump 2019-08-07 09:37:18+00:00 1.0 1365959417 1705 ⏰ 13 hours left for mega binance pump 2019-08-07 04:05:40+00:00 1.0 1365959417 1704 ⏰ 24 hours left for mega binance pump 2019-08-06 17:00:43+00:00 1.0 1365959417 1687 ✈️✈️✈️ardr✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-08-04 17:41:42+00:00 1.0 1365959417 1686 coin name posted 90 minutes early in vip channel see below vip post 2019-08-04 17:41:32+00:00 1.0 1365959417 1676 ⏰ 27 minutes left for mega binance pump 2019-08-04 17:03:32+00:00 1.0 1365959417 1674 ⏰2 hours left for our mega binance pump 2019-08-04 15:32:37+00:00 1.0 1365959417 1673 pump announcement hello guys we have schedule our next mega pump pump schedule time 4th august sunday ⏰at 0530 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-04 15:31:50+00:00 1.0 1365959417 1665 pump announcement hello guys we have schedule our next mega pump pump schedule time 7th august wednesday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-08-04 08:29:27+00:00 1.0 1365959417 1660 ⏰ 20 minutes left for mega binance pump 2019-07-28 16:40:40+00:00 1.0 1365959417 1658 ⏰ 55 minutes left for mega binance pump 2019-07-28 16:05:09+00:00 1.0 1365959417 1655 ⏰ 1 hour and 17 minutes left for mega binance pump 2019-07-28 15:43:06+00:00 1.0 1365959417 1654 ⏰ less then 3 hours left for mega binance pump 2019-07-28 14:36:59+00:00 1.0 1365959417 1652 ⏰ less then 8 hours left for mega binance pump 2019-07-28 09:24:29+00:00 1.0 1365959417 1648 ⏰ 11 hours left for mega binance pump 2019-07-28 06:02:41+00:00 1.0 1365959417 1647 ⏰ 26 hours left for mega binance pump 2019-07-27 14:49:34+00:00 1.0 1365959417 1645 pump announcement hello guys we have schedule our next mega pump pump schedule time 28th july sunday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-07-27 14:48:58+00:00 1.0 1365959417 1639 ⏰less than 6 hours left for our mega binance pump 2019-07-25 14:30:30+00:00 1.0 1365959417 1638 ⏰less than 9 hours left for our mega binance pump 2019-07-25 11:36:18+00:00 1.0 1365959417 1636 get ready guys for massive pump tonight join vip channel to get pump coin name 1 hour ago 2019-07-25 05:10:19+00:00 1.0 1365959417 1634 pump announcement hello guys we have schedule our next mega pump pump schedule time 25th july thursday ⏰at 0800 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-07-25 05:09:46+00:00 1.0 1365959417 1608 ⏰last 10 minutes left for our mega binance pump 2019-07-13 16:50:16+00:00 1.0 1365959417 1607 ⏰last 30 minutes left for our mega binance pump 2019-07-13 16:30:25+00:00 1.0 1365959417 1606 ⏰1 hours left for our mega binance pump 2019-07-13 16:00:27+00:00 1.0 1365959417 1600 ⏰2 hours left for our mega binance pump 2019-07-13 14:52:26+00:00 1.0 1365959417 1599 ⏰14 hours left for our mega binance pump 2019-07-13 02:46:40+00:00 1.0 1365959417 1590 ⏰33 hours left for our mega binance pump 2019-07-12 08:01:38+00:00 1.0 1365959417 1587 pump announcement hello guys we have schedule our next mega pump pump schedule time 13th july saturday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-07-12 07:57:15+00:00 1.0 1365959417 1529 15 minutes left for mega binance pump‼️ binance is warming up market is on fire today 2019-07-05 16:45:04+00:00 1.0 1365959417 1520 5 minutes next post will be coin name 2019-07-05 14:55:32+00:00 1.0 1365959417 1514 our last pump were 65 mean 1 btc in 165 065 btc7100 profit in one minutes 2019-07-05 04:08:00+00:00 1.0 1365959417 1509 pump announcement hello guys we have schedule our next monster pump pump schedule time 5th july friday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-07-05 04:03:05+00:00 1.0 1365959417 1497 ⏰less then 9 hours left for our monster binance pump 2019-07-03 12:17:15+00:00 1.0 1365959417 1494 ⏰less then 27 hours left for our monster binance pump 2019-07-02 18:33:52+00:00 1.0 1365959417 1493 pump announcement hello guys we have schedule our next monster pump pump schedule time 3rd july wednesday ⏰at 0900 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-07-02 18:32:02+00:00 1.0 1365959417 1484 pump announcement hello guys we have schedule our next pump pump schedule time 2nd july tuesday ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-07-01 12:40:34+00:00 1.0 1365959417 1467 last 2 minutes left for mega binance pump‼️ binance is warming up market is on fire today get ready for 100200 profit today 2019-06-29 17:58:12+00:00 1.0 1365959417 1466 last 14 minutes left for mega binance pump‼️ binance is warming up market is on fire today get ready for 100200 profit today 2019-06-29 17:46:19+00:00 1.0 1365959417 1460 pump announcement hello guys we have schedule our next pump pump schedule time 29th june saturday ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-06-29 09:26:19+00:00 1.0 1365959417 1453 last 14 minutes left for mega binance pump‼️ binance is warming up market is on fire today get ready for 100200 profit today 2019-06-25 16:46:17+00:00 1.0 1365959417 1452 last 28 minutes left for mega binance pump‼️ binance is warming up market is on fire today get ready for 100200 profit today 2019-06-25 16:32:30+00:00 1.0 1365959417 1447 last 55 minutes left for mega binance pump‼️ binance is warming up market is on fire today get ready for 100200 profit today 2019-06-25 16:05:34+00:00 1.0 1365959417 1443 pump announcement hello guys we have schedule our next pump pump schedule time 25th june tuesday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-06-25 12:55:20+00:00 1.0 1365959417 1437 just 5 minutes left for mega binance pump‼️ binance is warming up market is on fire today get ready for 100200 profit today 2019-06-24 17:55:20+00:00 1.0 1365959417 1431 pump announcement hello guys we have schedule our next pump pump schedule time 24th june monday ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-06-24 10:32:42+00:00 1.0 1365959417 1428 mega pump coin is ‼️ arn 2019-06-21 19:00:37+00:00 1.0 1365959417 1427 30 minutes left for mega binance pump‼️ binance is warming up market is on fire today 2019-06-21 18:30:30+00:00 1.0 1365959417 1426 guys 1 hour delay in mega pump ⏰1 hour to go for mega binance pump 2019-06-21 17:54:26+00:00 1.0 1365959417 1424 ⏰less then 3 hour to go for mega binance pump 2019-06-21 15:14:44+00:00 1.0 1365959417 1422 ⏰9 hour to go for mega binance pump 2019-06-21 09:08:51+00:00 1.0 1365959417 1419 pump announcement hello guys we have schedule our next pump pump schedule time 21th june friday ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-06-20 09:34:32+00:00 1.0 1365959417 1378 ⏰ just 8 hours left for monster binance pump 2019-06-16 13:30:01+00:00 1.0 1365959417 1376 ⏰ 16 hours left for monster binance pump 2019-06-16 04:40:03+00:00 1.0 1365959417 1374 ⏰ 28 hours left for monster binance pump 2019-06-15 16:49:19+00:00 1.0 1365959417 1367 pump announcement hello guys we have schedule our next pump pump schedule time 16th june sunday ⏰at 0900 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-06-13 14:19:15+00:00 1.0 1365959417 1348 happy pro vips users they got coin 1 hour ago and 75 profit in a minutes times 2019-06-03 02:56:48+00:00 1.0 1365959417 1346 monster pump coin was snm as price went 323 to 586 which is 75 gain 2019-06-03 02:54:40+00:00 1.0 1365959417 1343 next huge one is coming just little time left‼ ⏰just 3 hours left for monster binance pump get ready 2019-06-02 18:00:35+00:00 1.0 1365959417 1326 dear members the last pump was around 23 hours ago big pump signal created 3000 bitcoin in volume and a steady price of 50 up while poa is still moving we like to schedule our next pump information exchange binance date 02062019 time 9pm gmt have a great day the pump team 2019-05-30 10:24:11+00:00 1.0 1365959417 1323 ⏰last 2 hours left for mega binance pump 2019-05-28 16:06:51+00:00 1.0 1365959417 1319 ⏰last 4 hours left for mega binance pump 2019-05-28 14:00:30+00:00 1.0 1365959417 1316 ⏰9 hours left for mega binance pump 2019-05-28 08:51:37+00:00 1.0 1365959417 1315 ⏰less then 16 hours left for mega binance pump 2019-05-28 02:17:44+00:00 1.0 1365959417 1314 pump announcement hello guys we have schedule our next pump pump schedule time 28th may tuesday today ⏰at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-05-28 02:17:09+00:00 1.0 1365959417 1311 next post will be coin name 2019-05-27 16:59:40+00:00 1.0 1365959417 1310 ⏰10 minutes left for mega binance pump 2019-05-27 16:50:52+00:00 1.0 1365959417 1308 ⏰21 minutes left for mega binance pump 2019-05-27 16:39:35+00:00 1.0 1365959417 1307 ⏰1 hour left for mega binance pump 2019-05-27 16:00:46+00:00 1.0 1365959417 1305 ⏰almost 2 hours left for mega binance pump 2019-05-27 14:47:48+00:00 1.0 1365959417 1304 ⏰almost 3 hours left for mega binance pump 2019-05-27 13:41:18+00:00 1.0 1365959417 1302 ⏰8 hour left for mega binance pump 2019-05-27 09:00:02+00:00 1.0 1365959417 1301 pump announcement hello guys we have schedule our next pump pump schedule time 27th may mondaytoday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-05-27 08:58:23+00:00 1.0 1365959417 1292 ⏰just 3 hours left for monster pump blast today target 100200 2019-05-26 18:00:08+00:00 1.0 1365959417 1291 ⏰less than 5 hours left for monster pump blast today target 100200 2019-05-26 16:35:07+00:00 1.0 1365959417 1290 ⏰6 hours left for monster pump blast today target 100200 2019-05-26 15:00:05+00:00 1.0 1365959417 1287 ⏰almost 7 hours left for monster pump blast 2019-05-26 13:48:02+00:00 1.0 1365959417 1285 ⏰almost 18 hours left for monster pump blast 2019-05-26 02:41:33+00:00 1.0 1365959417 1284 ⏰almost 27 hours left for monster pump blast 2019-05-25 17:46:52+00:00 1.0 1365959417 1268 important dear members 3 more days until the pump the team would like to inform you about next pump the pump will be done in collaboration with the biggest bitcoin investment group the last time we did a collaboration was in 2018 the pump was on a coin called dgd which was one of the biggest pumps we have done with gains over 600 weekly chart will be posted below this is one of the pumps that made our group like it is today after this pump everyone started mass inviting to get a rank for the following pump and the member count doubled in three days coming sunday we expect something big but a lot smaller than the dgd pump in the start of 2018 the reason for this is that right now we are in a different point of the bearbull market cycle the amount of people that want to pump want to make profits and are tired of losing money trading against whales are not that big yet in conclusion right now we are a pretty small group compared to the whales however we need to be more united than ever we want everyone to let their voice be heard more in discussions about how we all together can lead the market this is a group for the people the discussion channel on discord is fully opened right now and the invites are aswell once the real bull run for bitcoin starts the member count will exponentially grow with it we are here for you 2019-05-23 04:05:25+00:00 1.0 1365959417 1266 monster pump blast hello guys we have schedule our 2nd monster pump blast pump schedule time 26th may sunday ⏰at 0900 pm gmt participants 1000k+ 20+ whale channels exchange binance ✅best luck mega pump team 2019-05-23 04:04:29+00:00 1.0 1365959417 1226 pump announcement hello guys we have schedule our next pump pump schedule time 18th may saturdaytoday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-05-17 20:21:07+00:00 1.0 1365959417 1204 pump announcement hello guys we have schedule our next pump pump schedule time 17th may friday ⏰at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-05-17 06:00:56+00:00 1.0 1365959417 1191 15 min left next post coin name ‼️ if you want to make some sweet btc profits you must enter the dip call early and be confident 2019-05-16 16:45:07+00:00 1.0 1365959417 1176 ⏰13 hours left for mega binance pump 2019-05-16 02:42:35+00:00 1.0 1365959417 1174 pump announcement hello guys we have schedule our next pump pump schedule time 16th may thursday ⏰at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-05-16 02:41:51+00:00 1.0 1365959417 1165 pump coin name wpr ✅result 43 2019-05-15 15:04:52+00:00 1.0 1365959417 1158 2 minutes left ‼️ binance is warming up market is on fire today 2019-05-15 14:58:55+00:00 1.0 1365959417 1157 5 minutes left ‼️ binance is warming up market is on fire today 2019-05-15 14:55:54+00:00 1.0 1365959417 1153 ⏰15 minutes left for mega pump on binance 2019-05-15 14:46:06+00:00 1.0 1365959417 1152 pump announcement hello guys we have schedule our next pump pump schedule time 15th may wednesday ⏰at 0300 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-05-15 14:45:40+00:00 1.0 1365959417 1150 coin name is knc buy and hold for profit 2019-05-14 14:00:07+00:00 1.0 1365959417 1145 ⏰last 44 minutes left for mega binance pump 2019-05-14 13:16:40+00:00 1.0 1365959417 1144 ⏰just less then 3 hours left for mega binance pump 2019-05-14 11:23:49+00:00 1.0 1365959417 1142 ⏰just less then 4 hours left for mega binance pump 2019-05-14 10:34:50+00:00 1.0 1365959417 1140 ⏰6 hours left for mega binance pump 2019-05-14 08:20:41+00:00 1.0 1365959417 1138 ⏰12 hours left for mega binance pump 2019-05-14 02:24:25+00:00 1.0 1365959417 1132 ⏰26 hours left for mega binance pump 2019-05-13 12:13:22+00:00 1.0 1365959417 1127 pump announcement hello guys we have schedule our next pump pump schedule time 14th may tuesday ⏰at 0200 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-05-12 15:45:55+00:00 1.0 1365959417 1078 next post will be coin name 2019-04-24 16:56:26+00:00 1.0 1365959417 1077 ⏰last 5 minutes left for mega binance pump 2019-04-24 16:55:59+00:00 1.0 1365959417 1074 ⏰last 15 minutes left for mega binance pump 2019-04-24 16:45:24+00:00 1.0 1365959417 1071 ⏰41 minutes left for mega binance pump 2019-04-24 16:19:34+00:00 1.0 1365959417 1069 ⏰13 hours left for mega binance pump 2019-04-24 03:57:50+00:00 1.0 1365959417 1063 ⏰25 hours left for mega binance pump 2019-04-23 15:58:08+00:00 1.0 1365959417 1061 ⏰1 days left for mega binance pump get ready guys 2019-04-23 04:19:54+00:00 1.0 1365959417 1060 ⏰2 days left for mega binance pump get ready guys 2019-04-22 01:06:31+00:00 1.0 1365959417 1057 pump announcement hello everyone the next official pump date will be scheduled for date wednesday april 24 time 1700 pm gmt exchange binance this pump will be freeforall meaning that everyone will receive the signal at the same time if you have any questions or would like to interact with our members feel free to join us on discord we have a community with thousands of active members there ready to help or talk about crypto related discussions the link is in our channel description 2019-04-21 10:18:05+00:00 1.0 1365959417 1003 next post will be coin name 2019-04-13 16:54:46+00:00 1.0 1365959417 985 pump announcement hello guys we have schedule our next pump pump schedule time 13th april saturday ⏰at 0500 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-04-10 17:10:07+00:00 1.0 1365959417 977 ⏰5 minutes left for mega binance pump 2019-04-08 16:25:12+00:00 1.0 1365959417 975 ⏰30 minutes left for mega binance pump 2019-04-08 16:00:33+00:00 1.0 1365959417 973 ⏰less than 6 hour left for mega binance pump 2019-04-08 10:57:50+00:00 1.0 1365959417 972 pump announcement hello guys we have schedule our next pump pump schedule time 8th apriltoday ⏰at 0430 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-04-08 10:57:13+00:00 1.0 1365959417 938 less than 5 minutes remaining login to your binance account and be ready coin name anytime will announce here next post will be coin name ✌️ 2019-04-04 13:26:02+00:00 1.0 1365959417 923 ⏰less than 5 hours left for pump get ready guys our target 40100 2019-04-04 09:07:55+00:00 1.0 1365959417 911 ⏰less than 7 hours left for pump get ready guys our target 40100 2019-04-04 07:01:54+00:00 1.0 1365959417 910 ⏰11 hours left for pump get ready guys our target 40100 2019-04-04 02:18:17+00:00 1.0 1365959417 908 pump announcement hello guys we have schedule our next pump pump schedule time 4th apriltoday ⏰at 0130 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-04-04 02:16:25+00:00 1.0 1365959417 801 gxs hit 3260 after our pump moon signal 2019-03-28 13:46:32+00:00 1.0 1365959417 795 ⏰1 hours left to mega binance pump expected target is 50100 2019-03-27 15:26:10+00:00 1.0 1365959417 794 ⏰9 hours left to mega binance pump expected target is 50100 2019-03-27 07:14:31+00:00 1.0 1365959417 792 ⏰10 hours left to mega binance pump expected target is 50100 2019-03-27 06:11:33+00:00 1.0 1365959417 790 pump announcement hello guys we have schedule our next pump pump schedule time 27th marchtoday ⏰at 0430 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-03-27 06:10:24+00:00 1.0 1365959417 749 ⏰10 minutes left to binance mega pump 2019-03-15 15:21:04+00:00 1.0 1365959417 748 ⏰14 minutes left to binance mega pump 2019-03-15 15:16:29+00:00 1.0 1365959417 747 ⏰1 hour left to binance mega pump 2019-03-15 14:31:09+00:00 1.0 1365959417 744 ⏰ less than 2 hour left to binance mega pump get ready for bomb for blast 2019-03-15 13:32:03+00:00 1.0 1365959417 740 ⏰6 hour left to mega binance pump 2019-03-15 09:40:48+00:00 1.0 1365959417 738 pump announcement hello guys we have schedule our next pump pump schedule time 15th marchfriday ⏰at 0330 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-03-15 09:39:53+00:00 1.0 1365959417 730 pump signal nas buy below 2000 selling target 220024002600 2019-03-13 10:58:01+00:00 1.0 1365959417 652 ⏰ last 30 minutes left to binance titanic signal 2019-03-05 16:00:59+00:00 1.0 1365959417 648 ⏰ 87 minutes left to binance titanic signal 2019-03-05 15:03:19+00:00 1.0 1365959417 635 guys buy below these three coin ae below 11550 sys below 1310 btt at 2021 hold for some days these coiñ will pump 2019-03-03 23:44:45+00:00 1.0 1365959417 631 hey folks‼ important announcement on 5th march at 430 pm gmt we are organising special signal called binance titanic signal the binance titanic signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 100150 profit areas our recent binancetitanicsignal results 1st bnt around 85 2nd storj around 102 3rd hold for some hours let the fomo arrive into it 2019-03-03 14:23:02+00:00 1.0 1365959417 622 new alert buy appc 11501170 target 12501280 shorttermcall this coin may pump huge also binance mega pump 2019-03-02 18:10:42+00:00 1.0 1365959417 600 15 minutes left ‼️ binance is warming up market is on fire today 2019-03-02 13:45:49+00:00 1.0 1365959417 598 20 minutes left ‼️ binance is warming up market is on fire today 2019-03-02 13:40:41+00:00 1.0 1365959417 597 guys in 2nd phase our target is 200400 for today pump going to be biggest pump ever lot of big channels involve hope big we are super excited get ready 2019-03-02 13:25:35+00:00 1.0 1365959417 581 pump announcement hello guys we have schedule our next pump pump schedule time 2nd marchsaturday ⏰at 0200 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-03-01 03:22:19+00:00 1.0 1365959417 548 ⏰5 minutes left to mega binance pump next post will be coin name 2019-02-23 16:55:42+00:00 1.0 1365959417 547 ⏰15 minutes left to mega binance pump 2019-02-23 16:45:40+00:00 1.0 1365959417 546 ⏰48 minutes left to mega binance pump 2019-02-23 16:13:04+00:00 1.0 1365959417 527 ⏰48 hours left to mega binance pump 2019-02-21 17:34:11+00:00 1.0 1365959417 514 pump announcement hello guys we have schedule our next pump pump schedule time 23th februarysaturday ⏰at 0500 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-02-21 05:33:16+00:00 1.0 1365959417 486 next post is coin name 2019-02-16 17:51:29+00:00 1.0 1365959417 485 ⏰9 minutes left to mega binance pump 2019-02-16 17:51:29+00:00 1.0 1365959417 482 ⏰last 1 hour left to mega binance pump get ready for blast again today 2019-02-16 17:00:37+00:00 1.0 1365959417 480 ⏰less then 2 hour left to mega binance pump 2019-02-16 16:21:44+00:00 1.0 1365959417 474 ⏰just 3 hour left to mega binance pump 2019-02-16 15:00:38+00:00 1.0 1365959417 468 less than 4 hour left to mega binance pump 2019-02-16 14:39:13+00:00 1.0 1365959417 466 less than 16 hour left to mega binance pump 2019-02-16 02:26:00+00:00 1.0 1365959417 455 our storj pump got 800 btc volume in just 4 minutes went 95 we expecting huge pump tomorrow because this time we have better plan to make it monster climbing we have selected a special coin for tomorrow pump that can easily go 70120 just get ready yourself 2019-02-15 14:44:35+00:00 1.0 1365959417 452 less than 28 hour left to mega binance pump 2019-02-15 14:23:09+00:00 1.0 1365959417 444 ⏰ less than 36 hour left to binance mega pump 2019-02-15 06:25:35+00:00 1.0 1365959417 437 ⏰ 2 days left to binance mega pump 2019-02-14 04:35:32+00:00 1.0 1365959417 432 pump announcement hello guys we have schedule our next pump pump schedule time 16th februarysaturday ⏰at 0600 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-02-12 17:36:08+00:00 1.0 1365959417 417 are you ready for massive pump yes ready your fund on binance last some minutes 60 vip fee off now 2019-02-10 17:29:19+00:00 1.0 1365959417 416 ⏰ just 33 minutes left to binance mega pump 2019-02-10 17:27:18+00:00 1.0 1365959417 414 ⏰ just 1 hour left to binance mega pump 2019-02-10 17:00:04+00:00 1.0 1365959417 413 ⏰ less than 2 hour left to binance mega pump get ready for blast 2019-02-10 16:37:16+00:00 1.0 1365959417 412 ⏰ almost 3 hour left to binance mega pump 2019-02-10 15:02:06+00:00 1.0 1365959417 408 ⏰ less than 4 hour left to binance mega pump big opportunity for u guys you should not miss just get ready yourself for blast 2019-02-10 14:14:29+00:00 1.0 1365959417 407 ⏰ less than 10 hour left to binance mega pump get ready for blast 2019-02-10 08:06:13+00:00 1.0 1365959417 404 pump announcement hello guys we have reschedule our pump for tomorrow because the coin we picked pumped already just now we will do our pump tomorrow on sunday the best day for pump generally pump reschedule time 10th februarysunday ⏰at 0600 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-02-09 17:09:18+00:00 1.0 1365959417 403 ⏰ less than 2 hour left to binance mega pump get ready for bomb for blast 2019-02-09 16:26:47+00:00 1.0 1365959417 401 ⏰3 hour left to mega binance pump guys just ready yourself for today mega blast 2019-02-09 15:00:15+00:00 1.0 1365959417 400 ⏰4 hour left to mega binance pump 2019-02-09 14:00:30+00:00 1.0 1365959417 397 ⏰less than 5 hour left to binance mega pump 2019-02-09 13:22:51+00:00 1.0 1365959417 395 ⏰less than 10 hour left to binance mega pump 2019-02-09 08:10:37+00:00 1.0 1365959417 394 ⏰less than 15 hours left to binance mega pump market is pumped now we expecting huge pump 2019-02-09 03:27:08+00:00 1.0 1365959417 390 ⏰36 hours left to binance mega pump this mega pump will surely go 100+ because of new crypto strong community addition in pump lot of new things about this pump will take it huge and massive result 2019-02-08 06:11:16+00:00 1.0 1365959417 386 pump announcement hello guys we have scheduled our next pump from last 2 week 4 pumps result ✅ 45 sunday gxs ✅ 27 friday hc ✅ 40 sunday wings ✅ 95 monday storj total 207 in 4 pumps all pumps went huge even in bearish market we hoping huge pump on this saturday once again good excitement will come again and remain forever so prepare yourself and get ready for huge mega pump on binance pump scheduled time 9th februarysaturday ⏰at 0600 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-02-06 14:12:19+00:00 1.0 1365959417 371 ⏰almost 10 minutes left to binance mega pump 2019-02-04 16:21:03+00:00 1.0 1365959417 367 4 pm special call 430 pm binance mega pump 2019-02-04 09:41:13+00:00 1.0 1365959417 366 pump announcement hello guys we have scheduled our next pump last week 3 pumps result ✅ 45 sunday gxs ✅ 27 friday hc ✅ 40 sunday wings total 112 gain in 3 pumps for vips members we hoping huge pump on this today good excitement will come again so prepare yourself and get ready for huge mega pump on binance pump scheduled time 4rd februarymonday ⏰at 0430 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-02-04 09:40:22+00:00 1.0 1365959417 364 hey folks❗️❗️ important announcement tomorrow 4th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-03 17:06:04+00:00 1.0 1365959417 361 this is pump channel that bring lot of pump everyday as it show from its name join our vip service you will get pump coin name early you will earn 2x minimum in 23 pump only you portfolio will grow very fast doubled in every 23 pump grab this opportunity before anything happened again in crypto we will wellcome to you 2019-02-03 09:46:05+00:00 1.0 1365959417 360 ⏰almost 5 hour left to binance mega pump 2019-02-03 09:41:58+00:00 1.0 1365959417 358 pump announcement hello guys we have scheduled our next pump on sunday last week 3 pumps result ✅ 45 sunday gxs ✅ 27 friday hc ✅ 40 sunday wings total 112 gain in 3 pumps for vips members we hoping huge pump on this today good excitement will come again so prepare yourself and get ready for huge mega pump on binance pump scheduled time 3nd februarysunday ⏰at 0300 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-02-03 09:40:12+00:00 1.0 1365959417 355 ⏰10 minutes left to binance mega pump 2019-02-02 17:50:16+00:00 1.0 1365959417 348 today 2 pumps 5 pm gmt big bang call 6 pm gmt binance mega pump 2019-02-02 15:07:06+00:00 1.0 1365959417 346 ⏰3 hours left to binance mega pump 2019-02-02 15:00:43+00:00 1.0 1365959417 343 ⏰22 hours left to binance mega pump 2019-02-01 19:54:37+00:00 1.0 1365959417 341 new alert buy appc 11501170 target 12501280 shorttermcall this coin may pump huge also binance mega pump 2019-02-01 09:04:38+00:00 1.0 1365959417 324 ⏰3 days left to mega binance pump guys get ready yourself 2019-01-30 09:06:41+00:00 1.0 1365959417 321 this is signal not a mega pump see in top at mega signal huge difference between signal and pump 2019-01-29 15:34:51+00:00 1.0 1365959417 319 pump announcement hello guys we have scheduled our next pump on saturday last week 3 pumps result ✅ 45 sunday gxs ✅ 27 friday hc ✅ 40 sunday wings total 112 gain in 3 pumps for vips members we hoping huge pump on this saturday good excitement will come again so prepare yourself and get ready for huge mega pump on binance pump scheduled time 2nd februarysaturday ⏰at 0600 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-01-29 15:29:43+00:00 1.0 1365959417 316 ⏰less than 35 minutes left to mega signal 2019-01-29 13:26:22+00:00 1.0 1365959417 311 binance mega signal event on date 29 januarytuesday exact time 2 pm gmt participants upto 500k telegram users exchange binance we recommend all you need to do is buy and hold for upto 3050 profit 2019-01-29 04:08:20+00:00 1.0 1365959417 294 ⏰less than 5 hours left to mega binance pump 2019-01-27 13:37:27+00:00 1.0 1365959417 288 last 3 pump results were 17 bnt 45 gxs 27 hc 2019-01-27 08:08:37+00:00 1.0 1365959417 287 10 hours left to binance mega pump 2019-01-27 08:05:07+00:00 1.0 1365959417 285 pump announcement hello guys we have scheduled another pump on sunday our last sunday pump was 45 today 27 totle 72 gain in 2 pump for vips members we hoping huge pump on this sunday good excitement will come again so prepare yourself and get ready for huge mega pump on binance pump scheduled time 27th januarysunday ⏰at 0600 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-01-25 20:08:26+00:00 1.0 1365959417 274 ⏰ less than 4 hours left to binance mega pump 2019-01-25 14:07:38+00:00 1.0 1365959417 272 ⏰ less than 16 hours left to mega binance pump 2019-01-25 02:33:54+00:00 1.0 1365959417 255 pump announcement hello guys we are looking another good conditions for pump on friday our last pump was very good went 45 specially for vips they earn almost 45 in a minutes we are expecting this one huge than previous 45 lot of people asking when your next pump is they are just ready to go so good excitement will coming so prepare yourself and get ready for huge mega pump on binance pump scheduled time 25th januaryfriday ⏰at 0600 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-01-23 07:37:06+00:00 1.0 1365959417 248 ⏰10 minutes left to binance mega pump 2019-01-20 17:50:14+00:00 1.0 1365959417 244 ⏰less than 2 hour left to mega binance pump 2019-01-20 16:11:32+00:00 1.0 1365959417 243 our zen early pump call to one of member right after 7 minutes zen pumped ✅10 2019-01-20 15:35:32+00:00 1.0 1365959417 240 oax pump call share only in vip 12 minutes ago right after 12 minutes it pumped 15 ✅15 profit for vips in 2 minutes 2019-01-20 14:51:58+00:00 1.0 1365959417 238 ⏰less than 12 hours left to mega binance pump 2019-01-20 06:28:47+00:00 1.0 1365959417 236 ⏰24 hours left to mega binance pump 2019-01-19 18:00:49+00:00 1.0 1365959417 227 pump announcement hello guys as you all know market is looking good now almost every alt pumped and huge volume in alt market thats why we are looking for good conditions for mega pump get ready for huge pump on binance pump scheduled time 20th januarysunday ⏰at 0600 pm gmt utc time participants 300k+ 10+ whale channels exchange binance ✅best luck mega pump team 2019-01-18 16:26:08+00:00 1.0 1365959417 173 guys less than 1 hour left be ready with your btc on binance we will share a huge potential coin for short term profit staytuned 2019-01-13 12:45:53+00:00 1.0 1365959417 170 hey guys pay attention we are going to share a short term call here on binance exchange that call will come here at 145 pm gmt 715 pm ist you can buy that particular coin and hold for targets to get achieved remember that short term call not a pump so it can blast anytime we have analyzed throughly based on technical analysis so make sure you will buy fast and hold for maximum profit sit back and relax we are coming at 145 pm gmt 715 pm ist 2019-01-13 05:49:14+00:00 1.0 1365959417 148 pump announcement pump scheduled time 8th januarytoday ⏰at 0400 pm gmt utc time exchange binance ✅best luck mega pump team 2019-01-08 03:47:48+00:00 1.0 1365959417 118 binance pump scheduledtomorrow dear members first of all we would like to apologize for our inactivity in the past weeks as we have not done any pump except some signals the weeks before the christmas break were very busy for us and the christmas break itself was busy but in a good way since there was a bear market pumping would not have made a lot of sense anyway however our analysts looked at the market the past week and saw a big opportunity this opportunity is so big that we decide to pump this weekend and our analysts think the pump will be very succesful even in this market the details are as follows exchange binance date 06012019 time 9pm gmt thanks for reading mega pump team 2019-01-05 15:44:15+00:00 1.0 1365959417 105 less than 15 min left of signal of the week be ready with your btc on binance next message will the coin name remember it will the special gem of the week so you need to buy and hold till target achieve 2019-01-03 15:29:55+00:00 1.0 1365959417 104 ❗️guyz as market is in uptrend we are going to share our big call today at 345pm gmt undervalued solid gem which can give you 30 to 50 profit hodl requirement log in your binance account and be ready at 345pm gmt exchange binance time 345 pm gmt 915 pm ist stay tuned 2019-01-03 10:23:32+00:00 1.0 1365959417 95 best signal of the week the coin is brd target 1 6350 target 2 6650 target 3 7200++ buy and hold tight till target achieve 2019-01-02 15:45:22+00:00 1.0 1365959417 94 less than 15 min left of signal of the week be ready with you btc on binance next message will the coin name remember it will the best signal of the week so you need to buy and hold till target achieve 2019-01-02 15:31:19+00:00 1.0 1365959417 93 hey guys pay attention today our team will give you best signal of the week the coin will be announced here at 345pm gmt remember that best signal of the week so it can blast anytime we have analyzed throughly based on technical analysis so make you sure you will buy fast and hold it for maximum profit stay tuned we will share call here at 345pm gmt 2019-01-02 13:43:36+00:00 1.0 1365959417 84 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 12:26:27+00:00 1.0 1365959417 80 less than 5 hour left to binance mega pump 2018-12-30 07:53:50+00:00 1.0 1365959417 78 binance mega signal event on date 30thdecember exact time 1230 pm gmt participants upto 500k telegram users exchange binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-29 16:12:29+00:00 1.0 1365959417 56 pump coin name is poe buy it now it will go huge 2018-12-06 13:00:00+00:00 1.0 1365959417 55 next post is coin name 2018-12-06 12:59:40+00:00 1.0 1365959417 49 pump announcement pump scheduled time 6th december thursday ⏰at 0100 pm gmt utc time exchange binance ✅best luck mega pump team 2018-12-04 17:01:36+00:00 1.0 1365959417 24 please keep in we will make it huge mega pump channel as our team working on it we will do our first pump at 5k we will do pump on daily basis our target is 100k active users in 1 month thanks 2018-07-31 05:28:48+00:00 1.0 1174077730 21482 3 days left until the big pump on binance 2021-12-30 14:45:27+00:00 1.0 1174077730 21459 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:34+00:00 1.0 1174077730 21413 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:24+00:00 1.0 1174077730 21362 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:04+00:00 1.0 1174077730 21358 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:06+00:00 1.0 1174077730 21357 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:04+00:00 1.0 1174077730 21356 15 minutes remaining until the big pump be ready 2021-11-28 16:45:57+00:00 1.0 1174077730 21354 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:24+00:00 1.0 1174077730 21353 2 hours left until the massive pump on binance 2021-11-28 15:01:08+00:00 1.0 1174077730 21352 2 hours left until the massive pump on binance 2021-11-28 15:01:08+00:00 1.0 1174077730 21351 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:21:03+00:00 1.0 1174077730 21350 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:15+00:00 1.0 1174077730 21345 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:08+00:00 1.0 1174077730 21344 2 days remaining until the big pump on binance 2021-11-26 16:18:09+00:00 1.0 1174077730 21318 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:06+00:00 1.0 1174077730 21240 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:23+00:00 1.0 1174077730 21237 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:05+00:00 1.0 1174077730 21236 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:58+00:00 1.0 1174077730 21234 30 minutes left until the big pump on binance 2021-11-07 16:30:01+00:00 1.0 1174077730 21233 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:02+00:00 1.0 1174077730 21230 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:10:01+00:00 1.0 1174077730 21229 4 hours left until the big pump on binance 2021-11-07 13:00:30+00:00 1.0 1174077730 21228 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:05+00:00 1.0 1174077730 21226 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:03+00:00 1.0 1174077730 21220 2 days left until the big pump on binance be prepared 2021-11-05 14:30:46+00:00 1.0 1174077730 21201 4 days remaining until the big pump on binance 2021-11-03 13:56:22+00:00 1.0 1174077730 21188 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:09+00:00 1.0 1174077730 21180 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1174077730 21175 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:06+00:00 1.0 1174077730 21173 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:07+00:00 1.0 1174077730 21171 30 minutes left until the big pump 2021-10-31 16:29:26+00:00 1.0 1174077730 21170 55 minutes left until the big pump on binance 2021-10-31 16:06:17+00:00 1.0 1174077730 21169 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:46+00:00 1.0 1174077730 21163 4 hours left until the big pump on binance 2021-10-31 13:02:24+00:00 1.0 1174077730 21162 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:43+00:00 1.0 1174077730 21158 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:29+00:00 1.0 1174077730 21142 3 days left until the big pump on binance 2021-10-28 13:03:06+00:00 1.0 1174077730 21131 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:53+00:00 1.0 1174077730 21129 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:48+00:00 1.0 1174077730 21123 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:09+00:00 1.0 1174077730 21121 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:59+00:00 1.0 1174077730 21120 15 minutes left until the massive pump on binance 2021-10-24 16:45:00+00:00 1.0 1174077730 21119 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:09+00:00 1.0 1174077730 21118 2 hours left until the big pump on binance 2021-10-24 15:00:11+00:00 1.0 1174077730 21117 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:09+00:00 1.0 1174077730 21116 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:10+00:00 1.0 1174077730 21115 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:16+00:00 1.0 1174077730 21106 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:54+00:00 1.0 1174077730 21094 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:52+00:00 1.0 1174077730 21085 7 days left until the big pump on binance 2021-10-17 14:50:34+00:00 1.0 1174077730 21046 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:09+00:00 1.0 1174077730 21041 15 minutes left screens on and have btc ready 2021-10-14 14:45:24+00:00 1.0 1174077730 21039 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:06:33+00:00 1.0 1174077730 21036 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:05+00:00 1.0 1174077730 21024 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:00+00:00 1.0 1174077730 21014 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:40:09+00:00 1.0 1174077730 21013 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:44+00:00 1.0 1174077730 21010 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:06+00:00 1.0 1174077730 21008 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1174077730 21006 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:30:00+00:00 1.0 1174077730 21005 1 hour left until the big pump on binance 2021-10-10 16:00:20+00:00 1.0 1174077730 21004 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:05+00:00 1.0 1174077730 21003 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:36+00:00 1.0 1174077730 21002 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:51+00:00 1.0 1174077730 21001 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:55+00:00 1.0 1174077730 20994 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:08+00:00 1.0 1174077730 20968 3 days left until the big pump on binance 2021-10-07 14:33:55+00:00 1.0 1174077730 20956 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:13+00:00 1.0 1174077730 20951 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:33+00:00 1.0 1174077730 20948 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:09+00:00 1.0 1174077730 20945 5 minutes left the real coin we are pumping will be posted in 5 minutes be ready 2021-10-03 16:54:57+00:00 1.0 1174077730 20944 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:26+00:00 1.0 1174077730 20942 the coin we have picked to pump today is ilv 2021-10-03 16:50:26+00:00 1.0 1174077730 20938 12 minutes left until the pump on binance 2021-10-03 16:48:38+00:00 1.0 1174077730 20937 the coin we have picked to pump today is nxs 2021-10-03 16:47:52+00:00 1.0 1174077730 20933 30 minutes left until the big the pump on binance 2021-10-03 16:30:04+00:00 1.0 1174077730 20932 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-10-03 16:00:06+00:00 1.0 1174077730 20931 1 hour and 58 minutes left until the big pump on binance be ready 2021-10-03 15:03:07+00:00 1.0 1174077730 20928 3 hours and 50 minutes left until the big pump on binance this pump will be massive be prepared 2021-10-03 13:09:48+00:00 1.0 1174077730 20927 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:34+00:00 1.0 1174077730 20925 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:06+00:00 1.0 1174077730 20911 3 days left until the big pump on binance 2021-09-30 15:23:57+00:00 1.0 1174077730 20901 7 days left until the big pump on binance 2021-09-26 14:36:02+00:00 1.0 1174077730 20888 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:21+00:00 1.0 1174077730 20879 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1174077730 20878 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:13+00:00 1.0 1174077730 20876 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:11+00:00 1.0 1174077730 20873 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:09+00:00 1.0 1174077730 20872 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:10+00:00 1.0 1174077730 20871 4 hours left until the big pump on binance 2021-09-19 13:01:20+00:00 1.0 1174077730 20870 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:02:02+00:00 1.0 1174077730 20869 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:19+00:00 1.0 1174077730 20857 3 days left until the big pump on binance 2021-09-16 15:14:54+00:00 1.0 1174077730 20835 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:59+00:00 1.0 1174077730 20797 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:11+00:00 1.0 1174077730 20792 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:07+00:00 1.0 1174077730 20790 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:46+00:00 1.0 1174077730 20787 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1174077730 20786 2 hours left until the big pump on binance 2021-09-05 15:00:11+00:00 1.0 1174077730 20785 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:06+00:00 1.0 1174077730 20783 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:44+00:00 1.0 1174077730 20773 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:57+00:00 1.0 1174077730 20753 2 days left until the big pump on binance be prepared 2021-09-03 14:05:11+00:00 1.0 1174077730 20725 mega pump group 280821 0707 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 8 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-28 22:34:17+00:00 1.0 1174077730 20702 5 minutes left next post is us our coin date tuesday august 24 2021 today time 1500 utc in 5 mints exchange binance coin type spot btc pair 2021-08-24 14:55:03+00:00 1.0 1174077730 20701 15 minutes left have your binance account logged in and be ready to make at least a 7x profit on spot… our coin is just btc paired so have btc ready date tuesday august 24 2021 today time 1500 utc in 15 mints exchange binance coin type spot btc pair 2021-08-24 14:45:06+00:00 1.0 1174077730 20700 1 hour left be prepared you really dont want to watch this from the sidelines the coin is a btc paid only meaning it can only be purchased with btc so hurry and get that btc bag ready date tuesday august 24 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-24 14:00:02+00:00 1.0 1174077730 20698 3 hours left 3 hours left for the 700+ pump we told you about have btc in you binance account get some caffeine in your system and hold on tight… because its going to explode date tuesday august 24 2021 today time 1500 utc in 3 hours exchange binance 2021-08-24 12:00:08+00:00 1.0 1174077730 20697 5 hours left 5 hours left for the pump announcement of the year this beast is expected to make all other pumps so far bite the dust by far date tuesday august 24 2021 today time 1500 utc in 5 hours exchange binance 2021-08-24 10:00:02+00:00 1.0 1174077730 20687 24 hours left date tuesday august 24 2021 time 1500 utc exchange binance 24 hours left for our minimum 7x pump this time weve got a coin so good that after it starts moving nothing will be able to stop it it will break through every single resistance short mid and long term as it builds momentum and creates a wave of outside buyers in binance be ready for further updates and turn on your notifications date tuesday august 24 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-23 15:01:23+00:00 1.0 1174077730 20638 pump announcement date tuesday august 24 2021 time 1500 utc exchange binance you witnessed our fun pump make over 50 and our brd pump make over 110 in a matter of minutes everyone had the chance to ride this free for all wave thats why we want to congratulate you all now we dont have time to lose and profits wont wait for those getting left out of these ridiculously profitable moves… thats why were here to announce our next mega pump this one will easily make a 300 move within the first few hours and could reach 10x that in a matter of weeksmonths so be prepared youll know more about whats coming in the next few days date tuesday august 24 2021 time 1500 utc exchange binance 2021-08-18 15:59:07+00:00 1.0 1174077730 20628 15 minutes left next post is us our coin date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance 2021-08-17 14:45:03+00:00 1.0 1174077730 20625 1 hour left yes 60 minutes left for the move of the year youre either riding it or regretting it so be prepared date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-17 14:00:10+00:00 1.0 1174077730 20624 3 hours left 3 hours left for the biggest pump of the year have btc in you binance account get yourself some coffee and tighten your seatbelt… because were going for a ride date tuesday august 17 2021 today time 1500 utc in 3 hours exchange binance 2021-08-17 12:00:35+00:00 1.0 1174077730 20621 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance 24 hours left for the biggest pump of the year as you already know the pump will take place on binance just as a tip its a btc only spot no leverage pair so have btc ready on your spot binance account and be prepared for the 300+ steady pump weve been waiting for too long date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-16 15:00:03+00:00 1.0 1174077730 20605 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance less then 48 hours left for the biggest pump that has ever been seen on binance be ready for further announcements and dont forget to turn on your push notifications date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-15 17:26:26+00:00 1.0 1174077730 20527 15 minutes left —btc our next post will be the coin name date monday august 2 2021 today time 1200 utc in 15 minutes 2021-08-02 11:45:07+00:00 1.0 1174077730 19950 coti qtum my pump signal top gainers 2021-03-26 09:09:39+00:00 1.0 1174077730 16175 next post will be coin name in between 5 min any time coin name will be in image to avoid bots we assure you this will not be pre pump and it will be organic pump stay tuned 2020-04-20 15:55:00+00:00 1.0 1174077730 16167 around 30 mins left ”hodl event gem call” this gem call will give big potential gains in this month make sure you guys buy and hold we assure you this will not be pre pump and it will be organic pump you have to buy and hold because of coin is on bottom and will be pump huge so do not miss this chance and grab this opportunity stay tuned for more updates 2020-04-20 15:30:03+00:00 1.0 1174077730 16143 hodl event today today will be given special ta based call which is hodl based and we are expecting big profit to holding this coin be ready today around 4 pm gmt stay tuned 2020-04-20 08:44:24+00:00 1.0 1174077730 16089 hodl event dear members we decided to give you a coin tomorrow which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready tomorrow around 4 pm gmt 2020-04-18 10:14:54+00:00 1.0 1174077730 15916 so far its good almost 9 coin up from the hodl event almost generated 25 btc volume and coin was not pre pump next time will try for 50100 btc volume and coin spike up to 2040 stay tuned elfbtc is great coin do not forget if it closed above 1000 satoshi it will directly spike to 11001300 satoshi that is massive 2050 profit so dont forget about elf hold and keep it in watchlist 2020-04-10 16:17:26+00:00 1.0 1174077730 15908 coin will be posted within 35 min next post of hodl coin name make sure you guys will buy fast and hold for maximum profit 2020-04-10 15:55:45+00:00 1.0 1174077730 15898 hello guys alts started taking dips seems good time todays our hodl event gem call which is in good buying zone to be signalled the coin will not be pre pump and this mega event will be huge you have to buy and hold for maximum gain coming around in 2hrs 2020-04-10 14:09:45+00:00 1.0 1174077730 15890 hodl event dear members we decided to give you a coin today which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready today around 4 pm gmt 2020-04-10 07:19:16+00:00 1.0 1174077730 15666 attention as always we are going to see this on binance top gainer list with great volume only 1hours left 400pm1600 gmt for rock bottom whale signal target 70 100 2020-04-04 15:05:23+00:00 1.0 1174077730 15491 rlcbtc new update strong support level 44004600 satoshi so buy and hold till 80 target dont sell guys if you want to huge profit so buy and hold strategy is very good for now remember target 80 so buy and hold 2020-03-27 16:02:33+00:00 1.0 1174077730 15485 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:57:40+00:00 1.0 1174077730 15444 adx pump buy hold sell targets 1050|1150|1250|1350 2020-03-26 11:06:51+00:00 1.0 1174077730 15442 adx big pump buy hold 2020-03-26 10:35:21+00:00 1.0 1174077730 15425 less than 15 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2020-03-25 15:45:09+00:00 1.0 1174077730 15392 less than 05 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2020-03-24 15:56:16+00:00 1.0 1174077730 15372 alright folks here is another rock bottom whale signal details this signal will come on 24nd mar at 400 pm gmt alts are going good as btc is stable above 65k keep the date and time in mind mar 24 | 400 pm gmt today 2020-03-24 03:45:11+00:00 1.0 1174077730 15338 alright folks here is another rock bottom whale signal details this signal will come on 22nd mar at 400 pm gmt alts are going good as btc is stable above 6k keep the date and time in mind mar 22 | 400 pm gmt 2020-03-21 17:10:07+00:00 1.0 1174077730 15305 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours left 400pm1600 gmt 2020-03-19 14:02:54+00:00 1.0 1174077730 15304 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours 40min left 400pm1600 gmt 2020-03-19 13:20:55+00:00 1.0 1174077730 15227 pump results around 150 btc was traded in total which is very good considering the fact that we pumped while btc was dumping first of all we would like to explain clearly what happened before and after the pump for full transparency to all our members as you know there are thousands of traders speculating on which coin will be pumped everytime we pump and this time it seems that a little bit of buying from the market in our coin created a big chain reaction before the pump started we noticed alot of buying up to 125 from the market at this point our team had taken the decision to cancel the pump because it was going up too fast but when it reached 138 we saw it started picking up alot of activity from outsiders and we believed that by announcing the signal at this height we could have reached over 70+ easier which was our initial target with even much bigger market activity than we initially expected the official signal was announced at 133 satoshis and reached 157 slowly after before going back down which is still almost a 20 potential profit that could have been made after that there was a multiple waves of around 10 which was also a bonus for those who bought the dip overall we cannot say for sure that it was a bad pump but it was definitely not our original plan in the next pump we will make sure to change the coin if this happens again or simply postpone the pump to a better time thank you all for participating we will announce the next pump once we are ready 2020-03-08 21:49:38+00:00 1.0 1174077730 15222 5 minutes left the next message will be the coin signal 2020-03-08 18:55:23+00:00 1.0 1174077730 15221 15 minutes left until our pump signal be ready 2020-03-08 18:45:02+00:00 1.0 1174077730 15218 3 hours left until the pump on binance our team has decided to still pump in this market condition our reasoning is that we will take this opportunity to attract all binance traders to our coin while other coins are suffering we are confident that we will still have big enough volume to make a successful pump for everyone 2020-03-08 15:50:57+00:00 1.0 1174077730 15217 6 hours left until the pump on binance we have big expectations for this pump since many coins are not in the green today we should be able to attract all outsiders attention to our coin once they see us as top gainer 2020-03-08 13:33:52+00:00 1.0 1174077730 15187 just 02hrs left gurus call date today around 500 gmt exchange binance make sure guys buy and hold until targets we hope the market situation will be better today stay tuned 2020-03-06 15:00:03+00:00 1.0 1174077730 15184 gurus call make massive profit in short term with guru call based on strong technical analysis date today around 500 gmt exchange binance all you have to do buy and hold until targets 2020-03-06 08:35:17+00:00 1.0 1174077730 15162 gurus call make massive profit in short term with guru call based on strong technical analysis date tomorrow exchange binance 2020-03-05 09:28:37+00:00 1.0 1174077730 14611 pump results around 115 btc in volume which is amazing our buy power in the first few minutes was very big and we managed to pump it over 30 the amount of action was also very intense and there was alot of possibility to make profits during the pump after the initial spike we believe we could have hit 5070 easily if we didnt face the sell pressure at the start in fact after analyzing the data someone sold from 1500 to 1162 in 1 single 8 btc sell order which is something we have never seen happen before but we managed to bounce back from it with the help of our team bringing the price back at around 13001400 our initial plan was for our team to push the price up to 2000 satoshis if this didnt happen which is unfortunate the next pump hopefully we can avoid this overall it was a great pump with alot of action we will announce the next pump soon stay tuned 2020-01-16 20:11:13+00:00 1.0 1174077730 14570 pump announcement hello everyone the next official pump will be scheduled for date thursday january 16 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again the current market condition is perfect for a pump as outsider activity is very strong and we expect it to continue for the next few days our target for this pump will be between 5070 we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-01-15 06:06:17+00:00 1.0 1174077730 14100 hello everyone unfortunately we will have to postpone our pump today due to bad market conditions we are receiving alot of messages from our community and from other communities waiting for our pump that the best choice would be to postpone it even though we all would have liked to have a pump we are noticing alot of unstability on many coins including btc we believe that if we pumped a coin in this market outsiders will would easily sell their bags on us our team had big plans for this pump and was prepared for better market conditions our plan to pump a coin to a really high percentage will remain on the upcoming pump we are sure all our members will support our decision which is why we decided it is in our best interest to postpone it be assured that it will be worth the wait thank for you understanding 2019-12-17 17:18:19+00:00 1.0 1174077730 14079 this big bang call hello everyone the next official signal will be scheduled for tomorrow date tuesday december 17 time 1900 pm gmt exchange binance advantage free for all after our successful edo signal our goal is to make another signal of that magnitude for this we will need 3 things good market conditions a good coin and finally a good coin and finally the collaboration of all our community members this signal will be free for all meaning that everyone will receive the signal at the same time 2019-12-16 17:39:38+00:00 1.0 1174077730 13659 sky this coin will pump up you hold it this is my opinion 2019-11-27 10:29:26+00:00 1.0 1174077730 13145 grs heavy pump price went high till 2850 huge 15 profit within few minutes 2019-10-30 15:01:55+00:00 1.0 1174077730 13141 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:09:29+00:00 1.0 1174077730 13021 pump result our pump volume today was over 80 btc once again with a great amount of buy power which is great because with that amount of volume we should be able to pump most coins above 50 however the pump did not go as expected after analyzing the order history we can clearly see that the wrong coin to pump has been picked because alot of sell orders kept constantly appearing our team has tried to support the coin but more sell orders kept coming in it seems that either another whale was present in the coin or outsiders holding a big amount of ost were constantly selling during our pump or simply that this coin had alot of hidden sell orders the good news is that most of our members bought between 150160 which means they were either able to make a small profit break even or take a very small loss that they will be able to make back once we make a pump over 50 again 2019-10-22 18:45:51+00:00 1.0 1174077730 13019 pin us on top and be ready 10 minutes left the next message will be the coin name the creativesignals™ team 2019-10-22 17:50:04+00:00 1.0 1174077730 13017 pin us on top and be ready 30 minutes left until the pump on binance the creativesignals™ team 2019-10-22 17:30:04+00:00 1.0 1174077730 13011 dear members 3 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the creativesignals™ team 2019-10-22 15:00:04+00:00 1.0 1174077730 13000 dear members 6 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the creativesignals™ team 2019-10-22 12:00:05+00:00 1.0 1174077730 12994 dear members 24 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the creativesignals™ team 2019-10-21 18:00:04+00:00 1.0 1174077730 12992 pump announcement hello everyone the next official pump will be scheduled for date tuesday october 22 time 1800 pm gmt exchange binance advantage free for all 2019-10-21 15:19:32+00:00 1.0 1174077730 12986 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:35:38+00:00 1.0 1174077730 12985 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:35:09+00:00 1.0 1174077730 12929 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:32+00:00 1.0 1174077730 12906 ❇️ its about the push hodl signal ❇️ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 06:59:13+00:00 1.0 1174077730 12873 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 06:17:28+00:00 1.0 1174077730 12522 pump result our volume today was amazing around 80 btc however the pump did not go according to plan the pump started out great but a few seconds later we noticed alot of conditionnal sell walls appear during the pump normally we like to pump low satoshi coins because they are much easier pump and our team can easily support it and help the pump reach higher gains but today we decided to try something different and picked a high satoshi coin instead which was the wrong decision unfortunately with the big hidden sell walls our team was not able to support the pump like we always did in our previous ones from our 5 previous pumps we had 4 successful ones and only 1 bad one which was today pumping is all about consistency which is something we try to achieve everytime to make up for this situation we can guarantee 1 thing the next pump our team will guarantee profits for all our members by pushing the price higher for everyone after all our members are done buying and support the pump in a big way as we usually do we will announce the next pump date soon stay tuned 2019-10-02 18:42:42+00:00 1.0 1174077730 12519 pin us on top and be ready 30 minutes left until the pump on binance the creativesignals™ team 2019-10-02 17:30:05+00:00 1.0 1174077730 12497 pump announcement hello everyone the next official pump will be scheduled for date wednesday october 2 time 1800 pm gmt exchange binance advantage free for all we are finally ready to schedule our next pump during the past few days we have been waiting for btc to make its move and now that we have more confirmation of short term fluctuations in altcoins we can safely say that it is looking very good right now for the upcoming weeks our next pump will be big as always as many members have been waiting for it and as always the pump will be free for all meaning that everyone will receive the signal at the same time 2019-09-29 14:47:01+00:00 1.0 1174077730 12351 coin name ongbtc exchange binance 2019-09-19 17:00:25+00:00 1.0 1174077730 12350 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:50+00:00 1.0 1174077730 12338 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:56:59+00:00 1.0 1174077730 12320 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top with our current estimates we expect the next pump date to be maximum within a few days we hope you can understand that our decision is purely based on protecting our members and providing the best results possible in every pump we do the new pump date will be announced shortly 2019-09-18 16:15:01+00:00 1.0 1174077730 12313 dear members 3 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the creativesignals™ team 2019-09-18 15:00:00+00:00 1.0 1174077730 12299 dear members 6 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the creativesignals™ team 2019-09-18 12:00:00+00:00 1.0 1174077730 12113 pump announcement hello everyone the next official pump will be scheduled for date wednesday september 18 time 1800 pm gmt exchange binance advantage free for all the altcoin market is looking great our team has been analyzing every aspect of the market closely and the order books are looking clear in many coins with not many hidden walls which gives us a big opportunity to easily pump any coin to a high percentage gain we expect our upcoming pump to be big more details will follow as we get closer to the pump 2019-09-13 16:28:53+00:00 1.0 1174077730 12090 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 17:46:37+00:00 1.0 1174077730 11978 pump result around 30 gains on data which is much less than our previous 70 gains on this coin but still good enough it could be due to the fact that today is a sunday and alot of coins are going sideways perhaps we can confirm that pumping on a weekday is much better we can also see that pivx pumped at the exact same time which means some extra needed volume was taken from us which could have helped the coin go up around 20 more overall great pump thank you all for participating our next pump will be on a weekday as usual we will announce the date soon stay tuned 2019-09-08 19:19:44+00:00 1.0 1174077730 11976 pin us on top and be ready 10 minutes left the next message will be the coin name the cryptocoachsignals™ team 2019-09-08 17:50:05+00:00 1.0 1174077730 11968 dear members 6 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the cryptocoachsignals™ team 2019-09-08 11:00:05+00:00 1.0 1174077730 11920 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-06 13:40:54+00:00 1.0 1174077730 11885 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 30 minutes left 2019-09-05 15:30:41+00:00 1.0 1174077730 11884 dear members just around 1 hour left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the dip call team 2019-09-05 15:07:12+00:00 1.0 1174077730 11766 announcement dear members the wait is over since our previous mega calls were a great success we have decided to make more mega profits for all of you this big bang call will be freeforall meaning that everyone will receive the signal at the same time big bang call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next big bang call exchange binance date 05092019 thursday time 4 pm gmt target 4070 have a great weekend and prepare yourself for upcoming big bang call nav pumped here 70 cvc pumped here 70+ data pumped here 70 vib pumped here 46+ snt pumped here 48 qsp pumped here 45+ 2019-08-30 16:11:07+00:00 1.0 1174077730 11749 6 minutes left the next message will be the coin name 2019-08-29 17:53:30+00:00 1.0 1174077730 11747 1 hour left until the pump be ready on binance 2019-08-29 17:10:21+00:00 1.0 1174077730 11746 less than 3 hours left for the binance biggest pump call 2019-08-29 15:10:46+00:00 1.0 1174077730 11717 pump announcement the next official pump will be scheduled for date thursday august 29 time 1800 pm gmt exchange binance advantage free for all after our successful 70 data pump and our 50 vib pump we will schedule our next pump this thursday 2019-08-27 18:55:16+00:00 1.0 1174077730 11651 viball target 6️⃣➕ hit 240 ✅profit 5200 pump coin hit 2019-08-21 18:24:38+00:00 1.0 1174077730 11649 5 minutes left the next message will be the coin name 2019-08-21 17:54:21+00:00 1.0 1174077730 11646 1 hours left until the pump on binance be ready 2019-08-21 17:00:06+00:00 1.0 1174077730 11638 11 hours left until the pump on binance 2019-08-21 07:00:54+00:00 1.0 1174077730 11631 guys are you ready for the biggest freeforallevent we expect to see at least 50 spike info date wednesday august 21 time 1800 pm gmt exchange binance 1 day 6 hour left share your favourite channel with your friends 2019-08-20 12:42:34+00:00 1.0 1174077730 11564 pump announcement hello everyone the next official pump will be scheduled for date wednesday august 21 time 1800 pm gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge share your favourite channel with your friends 2019-08-18 18:46:35+00:00 1.0 1174077730 11137 05 minutes left the next message will be the coin name with targets❗️ 2019-07-22 15:55:03+00:00 1.0 1174077730 11071 binance upcoming dip call announcement dear members the wait is over since our previous dip calls were a great success a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip call because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time dip call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 22072019 monday time 4 pm gmt target 50100 have a great weekend and prepare yourself for upcoming dip call the dip call team 2019-07-20 07:52:10+00:00 1.0 1174077730 10555 important announcement for all members we are organising today hodlcall after 4pm gmt make sure you guys will buy and hold for maximum profit keep in mind this is hodlcall means to hold coin for midterm untill our selling targets also be careful on btc when holding alts 2019-06-25 07:50:19+00:00 1.0 1174077730 10530 guys i am giving a coin name with huge potential in next 15 minutes i am very bullish on it in short term only buy it and hold it and keep shifting stoplosses up as it raises stay tuned 2019-06-23 14:45:03+00:00 1.0 1174077730 10420 binance upcoming dip call update dear members the wait is over since our previous dip calls was a great succes a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 18062019 tuesday time 4 pm gmt target 50100 have a great day the dip call team 2019-06-16 17:29:04+00:00 1.0 1174077730 10106 15 min left next post coin name ‼️ if you want to make some sweet btc profits you must enter the dip call early and be confident 2019-05-16 16:45:08+00:00 1.0 1174077730 10098 binance dip call update guys the wait is over on 16th may at 4 pm gmt we are organising our next binance dip call our previous binancedipsignal results 1st dlt around 95 2nd lets join and lead the global fomo again 2019-05-15 16:21:28+00:00 1.0 1174077730 10026 15 minutes left login on binance now have everything ready team the trick to make some amazing profits is to be focused and early coin already in bottom the next message will be the coin❗️ 2019-05-05 15:45:06+00:00 1.0 1174077730 10012 15 mins left first coin of may month be ready with your btc next post coin name 2019-05-03 17:46:21+00:00 1.0 1174077730 10010 first coin of may month coin name will be posted today before 06 pm gmt be ready with your btc 2019-05-03 13:54:11+00:00 1.0 1174077730 10004 first coin of may month coin name will be posted tomorrow before 06 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-05-02 16:52:55+00:00 1.0 1174077730 9922 next post coin name 2019-04-22 17:28:22+00:00 1.0 1174077730 9919 10 minutes left team be ready for the dip mega call 2019-04-22 17:19:43+00:00 1.0 1174077730 9912 15 minutes left team be ready for the dip mega call 2019-04-22 16:45:03+00:00 1.0 1174077730 9911 just 01 hour left dip call today at 500 pm gmt remember it will be a dip call so quick profit expected be ready guys 2019-04-22 16:00:14+00:00 1.0 1174077730 9803 next post coin name 2019-04-12 15:52:56+00:00 1.0 1174077730 9802 30 minutes left ‼️ binance is warming up market is on fire today 2019-04-12 15:32:31+00:00 1.0 1174077730 9801 30 minutes left ‼️ binance is warming up market is on fire today 2019-04-12 15:32:21+00:00 1.0 1174077730 9759 next post coin name 2019-04-06 17:00:04+00:00 1.0 1174077730 9757 coin of week less than 04 hours left today 5 pm gmt be ready and move your funds on binance 2019-04-06 13:03:46+00:00 1.0 1174077730 9755 coin of week will be posted today date 6thapril time before 6pm gmt 2019-04-06 08:26:37+00:00 1.0 1174077730 9713 less than 10 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-04-01 16:54:12+00:00 1.0 1174077730 9709 guys less than 01 hour left today 5 pm gmt coin of april month be ready and move your funds on binance 2019-04-01 16:11:57+00:00 1.0 1174077730 9703 few hours left thats it team were ready prepared for this giant that is coming this coin of month signal is going to be epic because its a damn great gem just waiting for some steam to breakout 2019-04-01 14:15:54+00:00 1.0 1174077730 9660 big pump coin now dip pivx isnt he going to come o time watch 2019-03-28 18:33:11+00:00 1.0 1174077730 9622 final 5 minutes left will announce a strong mega signal 2019-03-27 15:56:30+00:00 1.0 1174077730 9609 did you miss oax evx eng dont worry we are going to tell you a premium mega coin at 4 pm gmt which target is 2x those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 2019-03-27 13:33:24+00:00 1.0 1174077730 9244 attention guys be ready for highly profitable signal potenial coin with big upcoiming news hold for maximum profit multiply your btc with us next post will be coin name 2019-03-15 09:28:28+00:00 1.0 1174077730 9007 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:45:11+00:00 1.0 1174077730 9006 coin of month march 30 minutes left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:31:43+00:00 1.0 1174077730 9003 one more coin month march coin name will be posted today before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 13:27:49+00:00 1.0 1174077730 8979 one more coin month march coin name will be posted tomorrow before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-07 17:39:51+00:00 1.0 1174077730 8746 1 hour left for the big pumpsignal event on binance️ recommended to buy and hold for maximum profits huge volume will be injected which will cause outsiders to join and make more waves and legs up over the next 24 hours since coin name was posted ‼️ our record is 400 percentage with phx when we all grouped up like that last time get ready for a take off to the moon 2019-03-02 13:00:11+00:00 1.0 1174077730 8699 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ 2019-03-01 09:18:46+00:00 1.0 1174077730 8649 coin of month march coin name will be posted today before 06 pm gmt rdn was feb month posted on 31stjan gave upto 60 profit make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 09:00:13+00:00 1.0 1174077730 8328 hey folks❗️❗️ important announcement tomorrow 10th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-09 17:29:00+00:00 1.0 1174077730 8300 sub looks good for pump buy and hold for maximum profits 2019-02-08 16:55:11+00:00 1.0 1174077730 8297 alright guys only 30 minutes left for binancespecialcall coin is at rock bottom make sure you guys will fast and hold for the maximum profits be ready guys 2019-02-08 16:00:11+00:00 1.0 1174077730 8296 guys today we are organising a special call on binance exchange today we are expecting good gain we will give you coin at 430 pm gmt less than 2 hours left so make sure you will buy fast and hold for maximum profits be ready with your btc on binance 2019-02-08 14:31:21+00:00 1.0 1174077730 8289 important announcement guys as market is in uptrend we are going to share special call today at 430 pm gmt undervalued solid gem which can give you 30 to 100 profit log in your binance account and be ready at 430pm gmt exchange binance time 430 pm gmt 1000 pm ist stay tuned 2019-02-08 09:19:55+00:00 1.0 1174077730 8242 less than 10 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2019-02-04 15:51:57+00:00 1.0 1174077730 8231 hey folks❗️❗️ important announcement tomorrow 4th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-03 17:06:03+00:00 1.0 1174077730 8077 next post coin name we recommend all you need to do is buy and hold for upto 3050 profit 2019-01-27 14:28:15+00:00 1.0 1174077730 7036 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 12:26:26+00:00 1.0 1174077730 7024 binance mega signal event on today guys less than 5 hours left be ready with your btc on binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 07:29:57+00:00 1.0 1174077730 7004 binance mega signal event on date 30thdecember exact time 1230 pm gmt participants upto 500k telegram users exchange binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-29 13:20:10+00:00 1.0 1174077730 6935 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 12:27:52+00:00 1.0 1174077730 6923 binance mega signal today ℹ️ 530 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 07:03:20+00:00 1.0 1174077730 6916 binance mega signal event on date 27thdecember exact time 1230 pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-26 15:49:11+00:00 1.0 1174077730 6529 pump results x2 coin was eqt started 00000616 reached 000001400 great job guys note we always repump our coins 2018-12-09 19:43:18+00:00 1.0 1174077730 6523 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-09 19:00:16+00:00 1.0 1174077730 6521 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-09 18:55:06+00:00 1.0 1174077730 6510 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09122018 sunday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-09 11:52:45+00:00 1.0 1174077730 6492 pump results x2 coin was plr started 000001270 reached 000002500 great job guys 2018-12-07 20:04:21+00:00 1.0 1174077730 6486 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-07 19:00:23+00:00 1.0 1174077730 6484 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-07 18:55:11+00:00 1.0 1174077730 6469 ℹ coin signal information ℹ date friday 07122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt 8 hrs remaining for mega signal ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-07 11:00:22+00:00 1.0 1174077730 6468 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 09:01:02+00:00 1.0 1174077730 6445 pump results 300 gain coin was xptx open 000002144 reached 000006450 buy order for long timen still exists greenery in xptx noteyou did great job guyz we always repump our coin so hold if u buy high 2018-12-05 19:44:48+00:00 1.0 1174077730 6442 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-05 19:00:23+00:00 1.0 1174077730 6440 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-05 18:55:12+00:00 1.0 1174077730 6426 ℹ coin signal information ℹ date wednesday 05122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-05 06:30:13+00:00 1.0 1174077730 6142 binance pump signal event on date 20november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit 2018-11-18 19:37:26+00:00 1.0 1174077730 6049 binance pump signal event on date 15november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit our join channel link to add your friends 2018-11-13 08:09:45+00:00 1.0 1228866082 2449 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 17:50:58+00:00 1.0 1228866082 2444 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:00:07+00:00 1.0 1228866082 2443 5 minutes left the next message will be the coin to buy 2022-01-02 16:55:06+00:00 1.0 1228866082 2442 15 minutes left until the big pump on binance be ready 2022-01-02 16:44:59+00:00 1.0 1228866082 2440 2 hours left until the massive pump on binance be prepared 2022-01-02 15:00:20+00:00 1.0 1228866082 2439 3 hours remaining until the big pump on binance 2022-01-02 14:01:57+00:00 1.0 1228866082 2438 5 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2022-01-02 11:59:57+00:00 1.0 1228866082 2437 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:08:38+00:00 1.0 1228866082 2436 3 days left until the big pump on binance 2021-12-30 14:45:19+00:00 1.0 1228866082 2435 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:28+00:00 1.0 1228866082 2433 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:14+00:00 1.0 1228866082 2432 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:03+00:00 1.0 1228866082 2429 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:05+00:00 1.0 1228866082 2428 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:02+00:00 1.0 1228866082 2427 15 minutes remaining until the big pump be ready 2021-11-28 16:45:53+00:00 1.0 1228866082 2425 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:23+00:00 1.0 1228866082 2424 2 hours left until the massive pump on binance 2021-11-28 15:01:07+00:00 1.0 1228866082 2423 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:20:47+00:00 1.0 1228866082 2422 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:11+00:00 1.0 1228866082 2421 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:01+00:00 1.0 1228866082 2420 2 days remaining until the big pump on binance 2021-11-26 16:18:04+00:00 1.0 1228866082 2413 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:02+00:00 1.0 1228866082 2404 its time to buy bitshiba again very big news is coming soon by the way we are aware that all of our members are waiting patiently for our next big pump we will be scheduling our next pump very soon possibly this upcoming week stay tuned for our official announcement buy bitshiba contract address 0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7 buy on pancakeswap click here live chart click here telegram tmebitshibatoken 2021-11-18 15:00:00+00:00 1.0 1228866082 2380 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:23+00:00 1.0 1228866082 2377 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:03+00:00 1.0 1228866082 2376 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:55+00:00 1.0 1228866082 2373 30 minutes left until the big pump on binance 2021-11-07 16:30:00+00:00 1.0 1228866082 2372 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:00+00:00 1.0 1228866082 2371 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:09:56+00:00 1.0 1228866082 2369 4 hours left until the big pump on binance 2021-11-07 13:00:26+00:00 1.0 1228866082 2368 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:02+00:00 1.0 1228866082 2365 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:00+00:00 1.0 1228866082 2356 2 days left until the big pump on binance be prepared 2021-11-05 14:30:36+00:00 1.0 1228866082 2343 4 days remaining until the big pump on binance 2021-11-03 13:56:14+00:00 1.0 1228866082 2337 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:06+00:00 1.0 1228866082 2335 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1228866082 2329 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:05+00:00 1.0 1228866082 2327 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:03+00:00 1.0 1228866082 2325 30 minutes left until the big pump 2021-10-31 16:29:23+00:00 1.0 1228866082 2324 55 minutes left until the big pump on binance 2021-10-31 16:06:16+00:00 1.0 1228866082 2323 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:45+00:00 1.0 1228866082 2321 4 hours left until the big pump on binance 2021-10-31 13:02:10+00:00 1.0 1228866082 2320 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:39+00:00 1.0 1228866082 2318 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:27+00:00 1.0 1228866082 2304 3 days left until the big pump on binance 2021-10-28 13:02:59+00:00 1.0 1228866082 2291 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:46+00:00 1.0 1228866082 2286 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:47+00:00 1.0 1228866082 2279 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:07+00:00 1.0 1228866082 2277 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:55+00:00 1.0 1228866082 2276 15 minutes left until the massive pump on binance 2021-10-24 16:44:54+00:00 1.0 1228866082 2275 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:02+00:00 1.0 1228866082 2273 2 hours left until the big pump on binance 2021-10-24 15:00:00+00:00 1.0 1228866082 2271 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:03+00:00 1.0 1228866082 2268 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:03+00:00 1.0 1228866082 2265 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:10+00:00 1.0 1228866082 2257 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:51+00:00 1.0 1228866082 2248 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:47+00:00 1.0 1228866082 2239 7 days left until the big pump on binance 2021-10-17 14:50:21+00:00 1.0 1228866082 2213 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:40:00+00:00 1.0 1228866082 2205 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:37+00:00 1.0 1228866082 2201 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:05+00:00 1.0 1228866082 2199 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1228866082 2197 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:29:53+00:00 1.0 1228866082 2196 1 hour left until the big pump on binance 2021-10-10 16:00:19+00:00 1.0 1228866082 2195 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:02+00:00 1.0 1228866082 2194 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:31+00:00 1.0 1228866082 2193 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:41+00:00 1.0 1228866082 2192 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:53+00:00 1.0 1228866082 2189 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:02+00:00 1.0 1228866082 2180 3 days left until the big pump on binance 2021-10-07 14:33:53+00:00 1.0 1228866082 2166 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:04+00:00 1.0 1228866082 2160 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:32+00:00 1.0 1228866082 2157 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:07+00:00 1.0 1228866082 2154 5 minutes left the real coin we are pumping will be posted in 5 minutes be ready 2021-10-03 16:54:56+00:00 1.0 1228866082 2153 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:25+00:00 1.0 1228866082 2147 12 minutes left until the pump on binance 2021-10-03 16:48:36+00:00 1.0 1228866082 2143 30 minutes left until the big the pump on binance 2021-10-03 16:30:03+00:00 1.0 1228866082 2141 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-10-03 16:00:02+00:00 1.0 1228866082 2140 1 hour and 58 minutes left until the big pump on binance be ready 2021-10-03 15:03:00+00:00 1.0 1228866082 2139 3 hours and 50 minutes left until the big pump on binance this pump will be massive be prepared 2021-10-03 13:09:43+00:00 1.0 1228866082 2138 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:04+00:00 1.0 1228866082 2135 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:03+00:00 1.0 1228866082 2126 3 days left until the big pump on binance 2021-09-30 15:23:37+00:00 1.0 1228866082 2097 7 days left until the big pump on binance 2021-09-26 14:35:59+00:00 1.0 1228866082 2076 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:14+00:00 1.0 1228866082 2047 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1228866082 2046 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:11+00:00 1.0 1228866082 2044 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:07+00:00 1.0 1228866082 2040 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:09+00:00 1.0 1228866082 2039 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:02+00:00 1.0 1228866082 2038 4 hours left until the big pump on binance 2021-09-19 13:01:13+00:00 1.0 1228866082 2036 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:01:57+00:00 1.0 1228866082 2034 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:12+00:00 1.0 1228866082 2019 3 days left until the big pump on binance 2021-09-16 15:14:42+00:00 1.0 1228866082 1989 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:54+00:00 1.0 1228866082 1934 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:10+00:00 1.0 1228866082 1931 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:05+00:00 1.0 1228866082 1929 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:45+00:00 1.0 1228866082 1926 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1228866082 1924 2 hours left until the big pump on binance 2021-09-05 15:00:08+00:00 1.0 1228866082 1923 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:04+00:00 1.0 1228866082 1917 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:40+00:00 1.0 1228866082 1916 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:54+00:00 1.0 1228866082 1908 2 days left until the big pump on binance be prepared 2021-09-03 14:05:05+00:00 1.0 1228866082 1871 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 8 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-28 14:07:38+00:00 1.0 1228866082 1838 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-22 18:00:51+00:00 1.0 1228866082 1835 the coin we have picked to pump today is nas nas is looking perfect for a massive pump right now 2021-08-22 17:00:11+00:00 1.0 1228866082 1833 5 minutes left the next message will be the coin to buy 2021-08-22 16:55:27+00:00 1.0 1228866082 1831 30 minutes remaining until the big pump on binance we will be using the btc pairing to pump meaning you will need to use btc to buy the coin 2021-08-22 16:31:14+00:00 1.0 1228866082 1828 2 hours remaining until the big pump on binance 2021-08-22 15:00:32+00:00 1.0 1228866082 1825 4 hours left until the big pump on binance 2021-08-22 13:00:28+00:00 1.0 1228866082 1824 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-22 11:00:04+00:00 1.0 1228866082 1822 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-08-21 17:00:01+00:00 1.0 1228866082 1785 4 days remaining until the big pump on binance 2021-08-18 15:01:34+00:00 1.0 1228866082 1772 pump announcement hello everyone the next official pump will be scheduled for date sunday august 22 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on august 22 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-09 14:56:00+00:00 1.0 1228866082 1769 here is the video everyone has been waiting for the replay of the first minute of our amazing pump yesterday we will be announcing the next pump date shortly 2021-08-09 14:03:41+00:00 1.0 1228866082 1765 pump result possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 300 with great volume once again which means all members had a chance to make up to 300 profit within the first 2 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement 2021-08-08 17:43:55+00:00 1.0 1228866082 1761 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-08-08 17:00:10+00:00 1.0 1228866082 1758 5 minutes left be ready the next message will be the coin to buy 2021-08-08 16:55:28+00:00 1.0 1228866082 1756 30 minutes remaining until the big pump on binance get ready 2021-08-08 16:30:00+00:00 1.0 1228866082 1755 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 400 profit + be ready 2021-08-08 16:00:09+00:00 1.0 1228866082 1750 5 hours left until the big pump on binance 2021-08-08 12:00:14+00:00 1.0 1228866082 1749 6 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-08 10:14:14+00:00 1.0 1228866082 1739 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being back and volumes being high the odds of reaching 400 profit will be very high this time we will do everything in our power to make sure we reach this target this is officially the pump you will want to be part of and not miss be prepared 2021-08-07 17:00:00+00:00 1.0 1228866082 1728 2 days remaining until our biggest pump signal of all time be prepared 2021-08-06 11:47:20+00:00 1.0 1228866082 1712 4 days remaining until the big pump on binance 2021-08-04 15:06:00+00:00 1.0 1228866082 1695 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-01 13:44:04+00:00 1.0 1228866082 1642 pump result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-07-25 18:05:53+00:00 1.0 1228866082 1636 the coin we have picked to pump today is drep drep is looking perfect for a pump right now the target is 500 2021-07-25 17:00:01+00:00 1.0 1228866082 1635 5 minutes left the next post will be the coin to buy 2021-07-25 16:55:00+00:00 1.0 1228866082 1631 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 500 profit and beyond be ready 2021-07-25 16:00:01+00:00 1.0 1228866082 1630 2 hours remaining until the big pump on binance 2021-07-25 15:01:03+00:00 1.0 1228866082 1629 4 hours left until our big pump everything is still looking good still with our coin being bottomed which means all members will be able to buy early we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in last time we were able to get a few thousands retweet which means a big commitment from our community this time we want the effect to be bigger by asking all of our members to post on twitter after our signal we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-25 13:00:22+00:00 1.0 1228866082 1627 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump with the market being good we can guarantee a good pump this time as our team will support it in a massive way by injecting volume after our members bought in 2 hours we will post a few directives in order to coordinate our coin to trend on twitter our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-25 11:00:28+00:00 1.0 1228866082 1618 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-24 17:01:25+00:00 1.0 1228866082 1606 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible this pump will have a big amount of support from the team and we can confirm with absolute certainty that this will be the biggest profit maker pump of all time be prepared 2021-07-23 14:15:02+00:00 1.0 1228866082 1594 4 days remaining until our big pump on binance 2021-07-21 12:36:37+00:00 1.0 1228866082 1573 7 days remaining until our big pump on binance we can say with 100 certainty that we will be able to do a massive pump like we did on ppt nxs and sky our official target for this pump will be 500 in a few days we will give our members more information on how to be ready for it in order to maximize your profits 2021-07-18 11:20:10+00:00 1.0 1228866082 1547 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on july 25 we will be pumping again with a 500 + target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs and sky which was 3 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-07-12 12:05:28+00:00 1.0 1228866082 1545 pump result the volume was amazing once again with a great 2nd wave that lasted a good amount of time however the pump did not go as we had initially planned we did manage to almost get our coin trending on twitter as we can see thousands of posts about it which is great and confirms that there is a big commitment from our members we will attempt to make that effect much bigger on the next one and coordinate it much better before the signal there was a lot of activity on our coin and our team had to decide between postponing the pump or doing the pump we decided to still do the pump which was unfortunately not the right decision in order to make sure this never happens again we can guarantee that we will be taking the following measures on the next pump the coin will be given at the absolute bottom in order to guarantee bigger profits for our members our team will support the price after all our members have bought by injecting a massive amount of btc this will guarantee that all our members can start with a good profit regardless of where they bought last but not least we will make sure that our targets will be met in order to guarantee a great pump for everyone we will announce the next official pump date soon stay tuned 2021-07-11 18:02:23+00:00 1.0 1228866082 1544 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:00:02+00:00 1.0 1228866082 1543 5 minutes left the next message will be the coin to buy 2021-07-11 16:54:47+00:00 1.0 1228866082 1539 1 hour left until our big pump on binance be prepared 2021-07-11 16:00:01+00:00 1.0 1228866082 1538 2 hours remaining until the big pump on binance 2021-07-11 15:00:02+00:00 1.0 1228866082 1535 4 hours and 5 minutes left until our big pump we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-11 12:55:01+00:00 1.0 1228866082 1534 6 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-11 11:00:02+00:00 1.0 1228866082 1492 pump announcement this pump will take place on the binance exchange on sunday july 11 at 1700 pm gmt with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on july 11 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 11 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-30 17:00:35+00:00 1.0 1228866082 1476 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place most likely our next pump will be in 23 weeks best regards wallstreetbets pumps team 2021-06-24 14:07:00+00:00 1.0 1228866082 1405 pump announcement in 13 days from now this pump will take place on the binance exchange on sunday june 27 at 1700 gmt dear members we are more than ready for this pump this time our pump is joined by other groups of investors thanks to which we will achieve a better result we have also developed a new workflow to prevent price surges in addition weve been making a lot of marketing moves recently that will also add volume to us over time several thousand investors joined our group on discord in the last 24 hours this pump is definitely going to be huge 2021-06-14 17:11:48+00:00 1.0 1228866082 1221 hey guys hope you are ready for this massive “surely big profit signal” get your binance accounts ready with spare btc only about 3 hours left today 5 pm gmt our pumps channel crypticpumps 2021-05-14 14:00:07+00:00 1.0 1228866082 1197 hey guys the most awaited surely big profit signal is on its way 30 minutes left our pumps channel crypticpumps 2021-05-12 16:30:14+00:00 1.0 1228866082 1196 hey guys hope you are ready for this massive “surely big profit signal” get your binance accounts ready with spare btc only about 3 hours left today 5 pm gmt our pumps channel crypticpumps 2021-05-12 14:00:09+00:00 1.0 1228866082 1189 attention guys introducing to you the surely big profit signal alts markets are making some nice moves lets not miss this opportunity expected gain 100 we will announce the surely big profit signal today at 5pm gmt date 12th may exchange binance our pumps channel crypticpumps 2021-05-12 04:52:40+00:00 1.0 1228866082 1090 hey hope you are ready for this massive “surely big profit signal” get your binance accounts ready with spare btc only about 1 hour left today 5 pm gmt our pumps channel crypticpumps 2021-04-25 16:00:14+00:00 1.0 1228866082 1089 hey after our previous “surely big profit signal” brdbtc massive growth on hight demand we have decided to announce our another call today 5 pm gmt 1hr 40mins left for the massive signal our pumps channel crypticpumps 2021-04-25 15:19:58+00:00 1.0 1228866082 1068 hey hope you are ready for this massive “surely big profit signal” get your binance accounts ready with spare btc only about 3 hours left today 5 pm gmt our pumps channel crypticpumps 2021-04-24 14:00:23+00:00 1.0 1228866082 1009 only 15 minutes log in your binance accounts be ready with spare btc we are about to fly exchange binance our pumps channel crypticpumps 2021-04-12 16:45:09+00:00 1.0 1228866082 1007 attention guys around 3 hours left alts market is showing very positive move fomo is expected to jump in todays mountain pump 500 pm gmt for mountain pump signal exchange binance our pumps channel crypticpumps 2021-04-12 14:01:24+00:00 1.0 1228866082 1003 attention only about 6 hours mountain pump is going to get insanely fomo you guys can hype the coin in twitter also to bring more fomo be ready guys with spare btc exchange binance 6 hrs remaining today 5 pm gmt our pumps channel crypticpumps 2021-04-12 11:01:21+00:00 1.0 1228866082 1002 hey only about 12 hours hope u ready for this massive mountain pump event get your binance accounts ready with spare btc this mountain pump signal will also be promoted in twitter exchange binance 12 hrs remaining today 5 pm gmt our pumps channel crypticpumps 2021-04-12 05:01:21+00:00 1.0 1228866082 1000 attention 24 hours left biggest mountain pump signal is coming tomorrow we are going to see the biggest mountain pump ever with more than 132k participants get yourself ready for this exchange binance 12th april 5 pm gmt our pumps channel crypticpumps 2021-04-11 17:02:24+00:00 1.0 1228866082 990 attention biggest mountain pump signal is coming at 12th april we are going to see the biggest mountain pump ever with more than 127k participants get yourself ready for this exchange binance 12th april 5 pm gmt our pumps channel crypticpumps 2021-04-08 13:55:39+00:00 1.0 1228866082 942 appc pump results ◾️ profit 33478 ◾️ volume 230 btc 5 minutes ◾️ high 600 ◾️ start 138 ◾️ date 31012021 ➡️ join the next pump event 2021-02-01 20:06:27+00:00 1.0 1228866082 928 this group will pump a coin today dont miss this event 2021-01-29 18:14:43+00:00 1.0 1228866082 811 hey guys its the day today for our titanium alt signal there will very big volume coming in today into our titanium alt this one is gonna rise 300 500 u will see it the biggest alt signals of all time is coming about 12 hrs remaining today | 5 pm gmt 2021-01-18 05:00:14+00:00 1.0 1228866082 808 next titanium alt is coming today 5 pm gmt we can say the next titanium alt is going to be huge bcoz this is freaking alt season alts rising 50 80 within days so our today titanium alt is going to rise 500+or not we will see time will tell see you all today 5 pm gmt with our titanium alt signal 2021-01-17 18:50:04+00:00 1.0 1228866082 769 hi members as you can see alt markets are picking up people started investing in altcoins exactly three years back this was the time where alts made 4x7x growth in a couple of days but this time we are with you after thoroughly scanning all the alts we will post the next possible multibagger her on 11th jan 4 pm gmt the titanium signal this is expected to give more returns than ctxc 2021-01-10 08:52:43+00:00 1.0 1228866082 720 time to remind u guys that today is titanium alt signal day hope u guys are as excited as we are 500 titanium alt is coming at ur way about 12 hrs remaining today | 4 pm gmt 2021-01-07 04:00:10+00:00 1.0 1228866082 603 only 60 minutes left last opportunity to enter +70 pump signal 2020-12-20 18:00:51+00:00 1.0 1228866082 602 120 minutes left until the +70 profit pump 2020-12-20 17:00:51+00:00 1.0 1228866082 598 3 hours left until the +70 profit pump 2020-12-20 16:00:51+00:00 1.0 1228866082 595 6 hours left until the +70 profit pump 2020-12-20 13:00:51+00:00 1.0 1228866082 594 9 hours left until the +70 profit pump 2020-12-20 10:00:51+00:00 1.0 1228866082 590 12 hours left until the +70 profit pump 2020-12-20 07:02:35+00:00 1.0 1228866082 534 30 minutes left until the push 2020-12-07 15:30:46+00:00 1.0 1228866082 421 60 minutes left until the pump we will post the pumped coin on the channel below 2020-11-27 17:00:40+00:00 1.0 1228866082 419 2 hours left until the pump we will post the pumped coin on the channel below 2020-11-27 16:00:41+00:00 1.0 1228866082 416 5 hours left until the pump we will post the pumped coin on the channel below 2020-11-27 13:00:41+00:00 1.0 1228866082 409 8 hours left until the pump we will post the pumped coin on the channel below 2020-11-27 10:00:41+00:00 1.0 1228866082 397 50 hours left until the pump join 2020-11-25 16:00:45+00:00 1.0 1228866082 371 72 hours left until the pump join 2020-11-24 18:00:40+00:00 1.0 1228866082 79 seems like time is going away faster today isnt it bcoz of 300 big gainer mountain alt signal is arriving in less than 4 hrs today | 4 pm gmt cryptotradingbitcoin 2020-11-09 12:34:49+00:00 1.0 1228866082 65 pump on our premium channel will start in 30 minutes our premium members will profit on outsiders from binance 2020-11-06 19:25:50+00:00 1.0 1228866082 64 pump on our premium channel will start in 1 hour and 23 minutes +50 est profit admin ctbsupport 2020-11-06 18:37:34+00:00 1.0 1228866082 58 it held nicely during the first 5 minutes and plenty of profits to be made if you had bought within those first minutes the main reason we didnt go higher is because of the low liquidity + sell pressure as you can see with those wicks which means without our whales 100 btc buy walls support it would have gone down much easier but we got those issues sorted out for our next one our next pump will be guaranteed 50100 profit for every single member and we plan to announce our signal in a slightly different way which will give it a more organic growth and give everyone plenty of time the chance to buy at a low price stay tuned 2020-11-05 02:44:06+00:00 1.0 1228866082 56 appc pump results start 248 end 301 profit 215 volume 170 btc push period 14 minutes 2020-11-04 18:22:24+00:00 1.0 1228866082 55 pump result around 200 btc traded with a 215 profit peak it peaked multiple times 3 minutes after the signal was sent liquidity is very low right now we believe that is why it has gone down below 250 after our pump ended we hope binance can fix this issue soon and we hope many of you managed to sell at 300 2020-11-04 18:22:06+00:00 1.0 1228866082 50 5 minutes left the next post will be the coin to buy 2020-11-04 16:55:06+00:00 1.0 1228866082 49 our whales are ready are you ready 15 minutes left be ready to buy when we announce the coin that will get pumped 2020-11-04 16:46:05+00:00 1.0 1228866082 46 4 hours and 15 minutes left until our pump be ready to buy the pump coin on binance at exactly 1700 pm gmt our target is high 2020-11-04 12:49:16+00:00 1.0 1228866082 40 24 hours left until our big pump on binance 2020-11-03 16:58:05+00:00 1.0 1228866082 13 alts market are showing impressive moves most bleed out alts are pumping today so expect some major movement from our mountain alt signal are u excited enough for our next mountain alt hell yeah right just below 6 hrs remaining today | 4 pm gmt exchange binance 2020-11-02 10:00:11+00:00 1.0 1228866082 11 hope u guys didnt forget mountain alt signal is happening today our last one dusk did a whopping 2x can the next one be 250 or more we will see 10 hrs remaining today | 4 pm gmt 2020-11-02 06:00:05+00:00 1.0 1123236170 40375 15 minutes left screens on and have btc ready 2021-11-14 14:45:01+00:00 1.0 1123236170 40373 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:01+00:00 1.0 1123236170 40364 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:00:02+00:00 1.0 1123236170 40347 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales our ready our team is ready… are you ready 2021-11-13 15:00:01+00:00 1.0 1123236170 40319 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:25:11+00:00 1.0 1123236170 40293 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:00:02+00:00 1.0 1123236170 40268 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:12:41+00:00 1.0 1123236170 40134 15 minutes left screens on and have btc ready 2021-10-31 14:45:01+00:00 1.0 1123236170 40130 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:07+00:00 1.0 1123236170 40129 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:02+00:00 1.0 1123236170 40098 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:03+00:00 1.0 1123236170 39951 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 15:08:22+00:00 1.0 1123236170 39474 sky update congratulations everyone this is currently our longest sustaining and strongest pump yes… we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy 2021-10-05 15:19:34+00:00 1.0 1123236170 39466 15 minutes left dont forget our instructions to maximize your profits from this pump 2021-10-05 14:45:06+00:00 1.0 1123236170 39461 1 hour left 1 hour left for our biggest pump yet be ready 2021-10-05 14:00:06+00:00 1.0 1123236170 39450 3 hours min left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-05 11:30:06+00:00 1.0 1123236170 39441 15 hours left date tuesday october 5 2021 time 1500 gmt exchange binance 15 hours left for the most massive pump binance has seen… our whales are ready for it let the final countdown begin⏳ 2021-10-05 00:01:59+00:00 1.0 1123236170 39424 pump announcement date tuesday october 5 2021 time 1500 gmt exchange binance youve seen fun pump 50 brd pump 110 nebl pump 93 and even pix pump over 40… if you think those were “great pumps” its because you havent seen what were preparing for you yet our october 5th pump will not only be the largest winner weve had so far expecting at least 200 on it it will also be the largest volume one 400+ btc and the most resilient one as were expecting it to pump without any serious correction between waves this pump is unique because its being organized and backed up by all the largest crypto channels and groups reddit twitter telegram and by the largest whales in the market holding between 500 and 1500 btc each if you missed our previous pumps this is your chance to ride the most profitable ride of the year be ready for it 2021-10-04 04:51:18+00:00 1.0 1123236170 22712 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-13 12:27:17+00:00 1.0 1123236170 20482 just about 1 hr30 minutes guys market is doing great today the fomo will be attractive 400 pm gmt rockbottomwhalesignal 2020-04-29 14:34:12+00:00 1.0 1123236170 20473 hey guys stay alert its about 3 hrs 30 min remaining for our rock bottom whale signal the fomo is getting warm in alt market 400 pm gmt rockbottomwhalesignal 2020-04-29 12:35:58+00:00 1.0 1123236170 16152 there will be strong technical analysis signal coming today watch out stay online today between 330 pm gmt 430 pm gmt massive fomo will appear and will be on top of binance target is 80 100 2019-12-04 09:25:26+00:00 1.0 1123236170 15892 btc update hi guys‼️ btc again pump if you follow my provious long call then surely right now getting good profit right now btc again 8800 looking bullish in 4 hour 1 hour candlewe may expect next target 8850890090009050 either fast pullback approx 85008300 lets see guys more signal updates will provide soon thanks 2019-11-13 00:06:29+00:00 1.0 1123236170 15388 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:09:17+00:00 1.0 1123236170 15118 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:27+00:00 1.0 1123236170 15103 ❇ its about the push hodl signal ❇ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 07:17:29+00:00 1.0 1123236170 15085 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:45:56+00:00 1.0 1123236170 14051 coin name ongbtc exchange binance 2019-09-19 17:00:31+00:00 1.0 1123236170 14050 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:55+00:00 1.0 1123236170 14040 ready to join the global hodl team well you must be were sure that the global fomo will enter in our most waited binanceblastingsignal cheers only 4 hours 15 minutes left 2019-09-19 12:43:33+00:00 1.0 1123236170 14024 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:57:04+00:00 1.0 1123236170 13651 pump result around 30 gains on data which is much less than our previous 70 gains on this coin but still good enough it could be due to the fact that today is a sunday and alot of coins are going sideways perhaps we can confirm that pumping on a weekday is much better we can also see that pivx pumped at the exact same time which means some extra needed volume was taken from us which could have helped the coin go up around 20 more overall great pump thank you all for participating our next pump will be on a weekday as usual we will announce the date soon stay tuned 2019-09-08 19:14:59+00:00 1.0 1123236170 13646 1 hours left until the pump on binance get ready to boom 2019-09-08 16:58:29+00:00 1.0 1123236170 13643 4 hours left until the pump on binance 2019-09-08 14:03:35+00:00 1.0 1123236170 13639 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-08 08:20:29+00:00 1.0 1123236170 13630 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-07 13:04:37+00:00 1.0 1123236170 13597 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-05 16:34:50+00:00 1.0 1123236170 13494 6 minutes left the next message will be the coin name 2019-08-29 17:54:02+00:00 1.0 1123236170 13478 3 hours and 30 mins left until the next pump on binance 2019-08-29 14:27:01+00:00 1.0 1123236170 13428 hello everyone we have decided to postpone the pump date for the following reasons alot of good coins were pumped yesterday and today and we believe it is wiser to pump coins from their bottom rather from their top with our current estimates we believe that pumping thursday is a better option the new pump date will be pump announcement the next official pump will be scheduled for date thursday august 29 time 1800 pm gmt exchange binance advantage free for all 2019-08-26 13:14:35+00:00 1.0 1123236170 13224 pump result 70 gain on data as you can see everyone that bought in the first minute made almost 50 profit which is amazing in this market as we promised this pump had 0 prepump and our team helped push the price higher for everyone the mega pump group is officially back congratulations to everyone who bought we will announce the next pump soon stay tuned 2019-08-15 20:28:50+00:00 1.0 1123236170 13222 5 minutes left the next message will be the coin name 2019-08-15 19:54:46+00:00 1.0 1123236170 13220 1 hour left our target for this pump is very high 2019-08-15 19:00:32+00:00 1.0 1123236170 13217 8 hours left until the pump on binance 2019-08-15 12:16:07+00:00 1.0 1123236170 13214 1 day left until the next pump on binance our pump time will now be at 2000 pm gmt 2019-08-15 02:49:19+00:00 1.0 1123236170 13210 hello everyone the next official pump will be scheduled for date thursday august 15 time 2000 pm gmt exchange binance advantage free for all this pump will have 0 prepump meaning that 100 of the profits will go towards all our members and it will ensure that the pump results are as optimal as possible and fair for everyone we will pick the coin right before the pump to make sure that we pick the best possible coin given the market conditions and order books at that point in time the pump will also be free for all and everyone will receive the signal at the exact same time‼️ 2019-08-14 17:00:04+00:00 1.0 1123236170 9269 alright guys wait is over our binance titanic signal is here for you the coin name is storj storj our targets is above 100 to 150 2019-02-04 16:29:45+00:00 1.0 1123236170 2059 contact for vip membership alex0234 advantage 247 support available daily 57 signals on ta fa basis pre pump coin also provides for binance bittrex exchange daily 30 profit garnteed coin name before pump target hits with in 13 day only short term signals 2018-07-03 16:23:42+00:00 1.0 1123236170 1942 exchange binance coin name chat ⭕️ buy around 700 to 750 sell 1850 sell21100 sell31400 and above 2x potential coinbuy and hold stop loss12 2018-07-01 05:22:29+00:00 1.0 1192271085 1165 less than 20 minutes remaining for the binance pump 2018-06-14 16:41:38+00:00 1.0 1192271085 1164 less than 30 minutes remaining for the binance pump 2018-06-14 16:33:41+00:00 1.0 1192271085 1161 ⏳less than 4 hours remaining for the binance pump time 5 pm gmt 2018-06-14 13:05:21+00:00 1.0 1192271085 1160 ⏳less than 8 hours left for the binance pump time 5 pm gmt unmute our channel pin to the top 2018-06-14 09:08:29+00:00 1.0 1192271085 1159 dear members market seems quite well we are expecting a great coin pump on binance with lots of outsiders make a reminder for it and feel free to share the coin or any news about the coin on social media it will let the coin make more waves next pump on binance is scheduled today 14 june 2018 thursday 5 pm gmt pump is ffa free for all our last pump mth pumped upto 12 gains 2018-06-14 08:33:02+00:00 1.0 1192271085 1149 30 minutes left for the binance pump 2018-06-12 16:36:24+00:00 1.0 1192271085 1148 1 hours left for the binance pump 2018-06-12 16:02:56+00:00 1.0 1192271085 1142 dear members so far the market is still looking stable and quite well we expect a great pump on binance with a lot of outsiders make a reminder for it and feel free to share the coin or any news about the coin on social media it will let the coin make more waves we are a strong community so dont sell before moon we will ride the wave together binancepump 12 june 2018 tuesday time 500 pm gmt binancepump 2018-06-12 11:25:34+00:00 1.0 1192271085 1104 results coin musiconomi mci low 000000535 high 000001140 increase 113+ volume 12 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 150+ 2018-05-04 19:09:32+00:00 1.0 1192271085 1103 pump starts the coin to pump is mci musiconomi mcibtc exchange cryptopia target +100 market url trollbox 2018-05-04 19:02:09+00:00 1.0 1192271085 1102 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-05-04 18:56:00+00:00 1.0 1192271085 1098 1 hour left to pump it will be on cryptopia exchange 20 groups more than 40000 members will participate it will be huge ✊ 2018-05-04 18:00:30+00:00 1.0 1192271085 1092 big co pump announcement 4th may friday 1900 gmt cryptopia exchange you can find details in the photo below 2018-05-02 18:09:00+00:00 1.0 1192271085 1089 next pump on binance will be in 5 min be ready 2018-05-02 10:24:51+00:00 1.0 1192271085 1082 next pump on binance will be in 35 min be ready 2018-04-30 19:55:16+00:00 1.0 1192271085 1071 hey my friends i have a plan we can pump the coin 3 times a week at a specific hour and repeat it and this will be a general plan and a daily partnership selecting binancial exchange to secure more capital features 1 you can make some money every day 2 we will not change the hours and you will be assured of any program at certain times of the week only days can be changed i will not count on time i will post coin at a specified hour after two announcements i will choose the best and safest coin time ⚡ 1930 2030 gmt or 10301130gmt at least three times a week 2018-04-25 22:29:06+00:00 1.0 1192271085 1052 hey my friends i have a plan we can pump the coin 3 times a week at a specific hour and repeat it and this will be a general plan and a daily partnership selecting binancial exchange to secure more capital features 1 you can make some money every day 2 we will not change the hours and you will be assured of any program at certain times of the week only days can be changed i will not count on time i will post coin at a specified hour after two announcements i will choose the best and safest coin ill announce the time soon 2018-04-22 13:32:01+00:00 1.0 1192271085 1042 4 minutes left for binance pump 2018-04-21 13:58:44+00:00 1.0 1192271085 1040 10 minutes left for binance pump✅✅ 2018-04-21 13:51:37+00:00 1.0 1192271085 1036 1 hour left for binance pump get ready guys 2018-04-21 13:10:33+00:00 1.0 1192271085 1035 big pump 2 hours left pump on binance load your btc on binance and be ready we will keep update you time to time stay tuned ✅ 2018-04-21 12:04:27+00:00 1.0 1192271085 1027 big pump 6 hours left pump on binance load your btc on binance and be ready we will keep update you time to time stay tuned ✅ 2018-04-21 08:12:00+00:00 1.0 1192271085 1020 big pump 24 hours left pump on binance and be ready we will keep update you time to time stay tuned 2018-04-20 14:13:18+00:00 1.0 1192271085 1016 pump announcement a new pump scheduled as we see another great opportunity the best channels meet together this saturday to make a big pump at binance ➖ 21 april 2018 ➖ ➖ saturday➖ ➖ time 1400 gmt ➖ ▪️binance▪️ invite your mates and be ready to make some money 2018-04-20 08:56:47+00:00 1.0 1192271085 995 pump announcement binance 30 minutes left in pump buy and hold 2018-04-16 17:02:43+00:00 1.0 1192271085 994 pump announcement mega pump on binance prepare your btc for investment we are working with great analyst team so this is fair pump and also hold for 50 profit easily in short term so invest without fear buy and hold pump less then 1 hours left in pump 1600k members still waiting for coin name big pump and hold on binance 2018-04-16 16:44:40+00:00 1.0 1192271085 992 pump announcement mega pump on binance buy and hold pump today time 530 pm gmt less then 8 hours left only we increased now 1600k members are participating big pump on binance 2018-04-16 09:06:12+00:00 1.0 1192271085 991 pump announcement mega pump on binance buy and hold pump today time 530 pm gmt we increased now 1600k members are participating big pump on binance 2018-04-16 04:23:50+00:00 1.0 1192271085 978 next post will be coin name 2018-04-12 18:52:59+00:00 1.0 1192271085 959 we arranged the pump at the binance but i think instead of investing in pump wait for hodl signal if you want best and relax profit and you have one choice because its a legit coin and project with a new update and will bring great returns 2018-04-10 18:34:45+00:00 1.0 1192271085 806 create a account in bibox its easy and better than cryptopia and the pump will be strong 100 min 2018-03-16 09:45:06+00:00 1.0 1192271085 805 be ready the next pump is in full preparation our ambition is to touch the moon ⭐️ 2018-03-16 09:23:03+00:00 1.0 1192271085 666 30 minutes to mega pump 2018-02-25 12:53:53+00:00 1.0 1192271085 630 coin that was pumped all starting price 270 highest price 435 volume increase 4 btc profit 62 well done mega pump supporters this was considered not a bad pump as we just rebranded into a new mega pump group 2018-02-24 13:44:13+00:00 1.0 1192271085 465 2 more days to mega pump 2018-02-21 23:45:00+00:00 1.0 1192271085 400 hi all the mega pump will be rescheduled to 130pm gmt 2018-02-19 12:31:02+00:00 1.0 1192271085 392 cryptopia mega pump in 10 minutes 2018-02-18 14:20:08+00:00 1.0 1192271085 391 cryptopia mega pump in 1 hr get ready your btc 2018-02-18 13:30:03+00:00 1.0 1192271085 390 mega pump in cryptopia in 2 hrs 2018-02-18 12:30:13+00:00 1.0 1192271085 389 cryptopia mega pump in 4 hrs 2018-02-18 10:30:02+00:00 1.0 1192271085 386 this time round we have solved our miscommunication with the mega pump admins we will definitely pump successfully today cryptopia mega pump in 95 hrs 2018-02-18 04:50:11+00:00 1.0 1192271085 384 storj pump date 18 feb 2018 btc rise 25 eth rise 23 we will collaborate with more groups to pump even higher 2018-02-17 16:17:53+00:00 1.0 1192271085 381 binance pump in 2 minutes 2018-02-17 15:58:04+00:00 1.0 1192271085 380 binance pump in 10 minutes 2018-02-17 15:50:05+00:00 1.0 1192271085 379 binance pump in 30 minutes get ready your btc 2018-02-17 15:30:03+00:00 1.0 1192271085 378 binance pump in 1 hour get ready 2018-02-17 15:01:26+00:00 1.0 1192271085 370 cryptopia mega pump in 35 hrs binance pump in 5 hrs get your btc ready 2018-02-17 10:57:57+00:00 1.0 1192271085 366 please take note of the following during our pump 1 hold the coins for at least 30 secs 2 if you did not manage to sell please hodl as we will repump the coin in the future or there might be a bull run in the future 3 after buying the coin please spread the word that the coin is mooning and pumping this is to attract outside investors to buy and future increase the pump potential 2018-02-17 07:52:57+00:00 1.0 1192271085 346 cryptopia pump in 30 minutes our combined groups are prepared 2018-02-16 12:33:13+00:00 1.0 1192271085 345 cryptopia pump in 1 hr and 30 minutes get ready your btc we will pump this with other big groups 2018-02-16 11:30:18+00:00 1.0 1192271085 305 pump in 1 hour get ready your btc 2018-02-13 12:00:16+00:00 1.0 1192271085 302 please take note of the following during our pump 1 hold the coins for at least 30 secs 2 if you did not manage to sell please hodl as we will repump the coin in the future or there might be a bull run in the future 3 after buying the coin please spread the word that the coin is mooning and pumping this is to attract outside investors to buy and future increase the pump potential 2018-02-13 10:51:25+00:00 1.0 1192271085 301 next binance pump in 3 hours sign up for your binance account today wwwbinancecomref13303167 2018-02-13 09:57:57+00:00 1.0 1192271085 276 pump results so far enj pump date 1 feb 2018 profit in btc 107 profit in eth 1377 oax pump date 2 feb 2018 profit in btc 7 profit in eth 113 mth pump date 3 feb 2018 profit in btc 38 profit in eth 75 sngls pump date 6 feb 2018 profit in btc 98 profit in eth 59 edo pump date 7 feb 2018 profit in btc 61 profit in eth 35 rlc pump date 11 feb 2018 profit in btc 45 profit in eth 51 invite your friends to join our group tmebinancepumpanddump23 join our instagram today 2018-02-11 23:46:43+00:00 1.0 1192271085 268 cryptopia mega pump for wallstreetpumps or legendarypumps in 10 minutes go to their channel to participate 2018-02-11 14:50:01+00:00 1.0 1192271085 267 cryptopia mega pump for wallstreetpumps or legendarypumps in 30 minutes 2018-02-11 14:34:01+00:00 1.0 1192271085 264 binance pump in 5 minutes 2018-02-11 14:25:04+00:00 1.0 1192271085 263 binance pump in 15 minutes 2018-02-11 14:15:07+00:00 1.0 1192271085 262 binance pump in 30 minutes keep your eyes on this channel 2018-02-11 14:00:04+00:00 1.0 1192271085 261 binance pump in 1 hour using btc to pump cryptopia mega pump for wallstreetpumps or legendarypumps in 15 hours 2018-02-11 13:30:02+00:00 1.0 1192271085 257 hi all supporters binance pump in 4 hours using btc to pump cryptopia mega pump for wallstreetpumps or legendarypumps in 45 hours 2018-02-11 10:30:04+00:00 1.0 1192271085 241 for the coordinated mega pump at cryptopia we gained more than 200 for the coin alex well done 2018-02-10 15:24:01+00:00 1.0 1192271085 237 10 mins left until mega pump please join wallstreetpumps or legendarypumps for the pump exchange cryptopia 2018-02-10 14:50:16+00:00 1.0 1192271085 236 1 hour left until mega pump please join wallstreetpumps or legendarypumps for the pump exchange cryptopia 2018-02-10 14:00:07+00:00 1.0 1192271085 235 3 hours left until mega pump wallstreetpumps legendarypumps exchange cryptopia 2018-02-10 12:00:02+00:00 1.0 1192271085 232 5 hours left until mega pump wallstreetpumps legendarypumps exchange cryptopia 2018-02-10 10:00:03+00:00 1.0 1192271085 204 please take note of the following during our pump 1 hold the coins for at least 30 secs 2 if you did not manage to sell please hodl as we will repump the coin in the future or there might be a bull run in the future 3 after buying the coin please spread the word that the coin is mooning and pumping this is to attract outside investors to buy and future increase the pump potential 2018-02-09 13:37:22+00:00 1.0 1192271085 195 pump results so far enj pump date 1 feb 2018 profit in btc 107 profit in eth 1377 oax pump date 2 feb 2018 profit in btc 7 profit in eth 113 mth pump date 3 feb 2018 profit in btc 38 profit in eth 75 sngls pump date 6 feb 2018 profit in btc 98 profit in eth 59 edo pump date 7 feb 2018 profit in btc 61 profit in eth 35 invite your friends to join our group tmebinancepumpanddump23 join our instagram today 2018-02-07 23:46:51+00:00 1.0 1192271085 185 please take note of the following during our pump 1 hold the coins for at least 30 secs 2 if you did not manage to sell please hodl as we will repump the coin in the future or there might be a bull run in the future 3 after buying the coin please spread the word that the coin is mooning and pumping this is to attract outside investors to buy and future increase the pump potential 2018-02-07 10:23:37+00:00 1.0 1192271085 172 please take note of the following during our pump 1 hold the coins for at least 30 secs 2 if you did not manage to sell please hodl as we will repump the coin in the future or there might be a bull run in the future 3 after buying the coin please spread the word that the coin is mooning and pumping this is to attract outside investors to buy and future increase the pump potential 2018-02-06 08:35:42+00:00 1.0 1192271085 144 next pump in around 1 hour and 20 mins 2018-02-03 13:12:06+00:00 1.0 1192271085 111 pump in 10 minutes get ready your eth 2018-02-02 14:20:04+00:00 1.0 1192271085 110 pump in 15 minutes lets do it 2018-02-02 14:15:04+00:00 1.0 1192271085 109 next pump in half an hour we will be targeting a lowvolume coin 2018-02-02 14:00:11+00:00 1.0 1192271085 108 next pump in 1 hour we are using eth to pump 2018-02-02 13:30:06+00:00 1.0 1192271085 107 next pump in 2 hours 2018-02-02 12:30:25+00:00 1.0 1192271085 106 next binance pump in 4 hours get ready your eth 2018-02-02 10:30:04+00:00 1.0 1192271085 67 next binance pump will be in 1 hour we will be targeting a midvolume coin our goal is to pump and hodl to initiate a bull run after buying please make sure to promote and spread the word about the coin pumping this would bring in more investors 2018-02-01 13:30:35+00:00 1.0 1192271085 36 we managed to have a sustained pump for 10 minutes well done guys 2018-01-28 14:50:57+00:00 1.0 1192271085 26 next pump will be in 5 minutes get ready your binance account 2018-01-28 14:25:43+00:00 1.0 1192271085 25 next pump will be in 15 minutes 2018-01-28 14:15:21+00:00 1.0 1192271085 24 next pump will be in half an hour we will message the name of the coin in picture format so as to prevent bots from using it we all need to work together to make this happen stay strong and pump it 2018-01-28 14:00:19+00:00 1.0 1192271085 23 next pump will be in 1 hour 2018-01-28 13:30:19+00:00 1.0 1192271085 22 next pump will be in 3 hours 2018-01-28 11:30:34+00:00 1.0 1192271085 5 date 20180109 coin dgd digixdao price 0013 btc to 0034 btc this was our previous pump at another group we can work together to make profits 2018-01-24 11:09:26+00:00 1.0 1192271085 3 welcome to binance pump and dump this group is now active again and under a new admin exchange binance the goal of this group is to create a free community where we can all make money through long duration pumps here is how the process will work 1 first its important that you have set up a “binance” account and have deposited the btc that you wish to invest into the exchange before the pump 2 every week we will host multiple pumps we will release the coin that we are going to pump here in our telegram channel  at this point our group will buy into the coin increasing the value dont be surprised to see a large price increase solely from the volume created by our group as we plan on pumping low volume coins to maximize our profits 3 after our group has bought in it is imperative that we do not sell at this point although the coins value will be higher at this point than where you bought the profits will be minimal compared to holding  also selling here will be detrimental to the pump  even if we see a slight sell off do not freak out as the coin will continue to trend upward 4 at this point our group members will spread the word of the coin were pumping relentlessly  this can be done through social media telegram groups or in person  remember the coin will already be up quite a bit so getting other traders to buy in will not be very difficult  if every group member does their part in getting outside investment this is when the value of the coin will really skyrocket 5 members in this group do not dump and everyone spreads the coin to the crypto community this ensures everyone in the group will make a handsome profit 2018-01-24 10:44:55+00:00 1.0 1147998012 3326 crypto sunrise special call date sunday october 31 2021 3days left time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 3 days away 2021-10-28 15:03:52+00:00 1.0 1221756696 557 deve biggest pump incoming be ready with your funds in bitmart exchange next pump on after an hour deve to moon circulating supply30000 bitmart will list divert finance deve after an hour usarticles1260805124129 2021-05-07 13:10:26+00:00 1.0 1221756696 384 just below 15 minutes guys here on the next post will be the coin name below mountain alt | 5 pm gmt 2020-07-10 16:45:24+00:00 1.0 1221756696 383 time is passing faster cant wait to share the big signal today mountain alt is on its way guys exactly 1 hr left mountain alt | 5 pm gmt 2020-07-10 16:00:47+00:00 1.0 1221756696 381 every alt is going 3x 5x some even gone up 10x in this alt season the mountain alt which we are gonna share today will be one of those 2x 3x coin stay alert its coming 6 hrs left mountain alt | 5 pm gmt 2020-07-10 11:01:26+00:00 1.0 1221756696 355 stay online | and keep an eye over here only 15 minutes left the next post will be galaxy beast alt name today 4 pm gmt 2020-07-04 15:45:22+00:00 1.0 1221756696 354 we are almost done and the wait is almost over less than 1 hr left galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 15:00:27+00:00 1.0 1221756696 353 stay here guys the clock is running faster time for galaxy beast alt just about 2 hrs remaining galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 14:00:28+00:00 1.0 1221756696 351 stay online today bcoz you dont wanna miss todays galaxy beast alt and you dont wanna miss massive profits right the wait is about to get over bcoz about 4 hrs left galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 12:02:35+00:00 1.0 1221756696 349 the galaxy beast alt on its way this one going to be crazy one with major fomo with top gainer position on binance you know when a coin goes to top on binance gainer list the fomo arrives just about 6 hrs left galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 10:03:10+00:00 1.0 1221756696 348 hey guys we are excited to announce that we are bringing yet another galaxy beast alt this galaxy beast signal will be posted here today at 4 pm gmt our previous calls did very well so expect something big from the upcoming one this one will be best of amongst galaxy beast alt 4 july | 4 pm gmt 2020-07-04 07:40:04+00:00 1.0 1221756696 331 qsp strong gem hodl for tfuel like pump next 5x coin is qsp 2020-06-29 16:05:42+00:00 1.0 1221756696 325 q s p quantstamp | binance the galaxy beast alt very possible breakout big volume coming in from last few days the trend which always follow is lower satoshi coins pump hard on alt season so qsp will have a major breakout anytime 2200 down from all time high we can expect a major bull run from qsp buy qsp here 2020-06-29 16:00:27+00:00 1.0 1221756696 322 do you see any binance top gainer today if so then we are telling you that our signal will be in top gainer list today that is none other than the galaxy beast alt just about 1 hr reamaining today | 4 pm gmt 2020-06-29 15:00:42+00:00 1.0 1221756696 321 the alt we are gonna talk about today has completely bottomed looks very good as per technical analysis that is called the galaxy beast alt just about to arrive stay alert today 25 hrs remaining today | 4 pm gmt 2020-06-29 13:30:07+00:00 1.0 1221756696 320 btc recoverd also alts recovering well its the time to buy these alts so we are going to share the galaxy beast alt 6 hrs remaining today | 4 pm gmt 2020-06-29 10:00:58+00:00 1.0 1221756696 319 hey traders hope you have not forgotten what day is it so today is galaxy beast alt day our last signals did perform massive and this one is going to beat the old ones 11 hrs remaining today | 4 pm gmt 2020-06-29 05:00:11+00:00 1.0 1221756696 316 hey guys we are excited to announce that we are bringing a different type of signal called as galaxy beast alt this galaxy beast signal will be posted here on this coming monday jun 29th our previous calls did very good via188 ctxc220 expected target 100200 this one will be best of these above wait for monday exchange binance galaxy beast alt 29 jun | 4 pm gmt 2020-06-27 09:58:15+00:00 1.0 1221756696 286 time is running faster cant go slow anyways we gotta hurry bcoz everyone is waiting for mountain alt via hit 188 ctxc hit 220 todays mountain alt250 exchange binance only 1 hr remaining mountain alt | 4 pm gmt 2020-06-15 15:00:09+00:00 1.0 1221756696 285 there will be a binance top gainer coming on the way even we cant wait to see that but we gotta wait via hit 188 ctxc hit 220 todays mountain alt250 only 3 hrs remaining mountain alt | 4 pm gmt 2020-06-15 13:00:11+00:00 1.0 1221756696 281 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-13 12:21:47+00:00 1.0 1221756696 269 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 250 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-06-10 15:59:43+00:00 1.0 1221756696 268 just about 10 mins guys the mountain alt signal is on the way market is doing great today the fomo will be attractive the next post will be name of the mountain alt coin stay online folks 2020-06-10 15:50:15+00:00 1.0 1221756696 267 just about 15 mins guys the mountain alt signal is on the way market is doing great today the fomo will be attractive the next post will be name of the mountain alt coin stay online folks 2020-06-10 15:47:14+00:00 1.0 1221756696 265 the mountain alt or shall we call it the next binance top gainer is just about to arrive last mountainalt not enough right todays one can get to 250easily exchange binance about 1 hr remaining today | 4 pm gmt 2020-06-10 15:00:26+00:00 1.0 1221756696 264 alts are making savage moves in this alt season so our mountain alt will do the same todays mountain alt is going to see 250 growth with massive fomo exchange binance 3 hrs remaining today | 4 pm gmt 2020-06-10 13:00:27+00:00 1.0 1221756696 263 the clock is running faster guys hope you ready for this the mountain alt is cominggg the last mountain alt had major fomo and reached binance top gainer what to expect todayyes 250 strong gainer exchange binance about 6 hrs left today | 4 pm gmt 2020-06-10 10:00:46+00:00 1.0 1221756696 262 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this todays mountain alt is gonna see 250 growth less than 12 hrs to see the mountain alt today | 4 pm gmt 2020-06-10 04:18:58+00:00 1.0 1221756696 234 hey folks guess whats coming today yes guess it the mountain alt our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 ctxc 》220 《 xxx 》will it go for 200++ but its coming with a different strategy to kill bot traders today mountain will be shared within 4 5 pm gmt between this 1 hr anytime wake up mountain alt | 4 5 pm gmt 2020-06-08 04:01:43+00:00 1.0 1221756696 229 good day traders you know what time it is time for yet another mountain alt signal but this time with bit different strategy what is it this time the mountain alt wont come at a fixed time it will come within 4 5 pm gmt you need to stay online and alert in this 1 hr time trading bots wont be able to catch this time our signal its coming mon jun 8th | 4 5 pm gmt mountain alt 2020-06-07 06:46:59+00:00 1.0 1221756696 211 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:36+00:00 1.0 1221756696 210 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:52+00:00 1.0 1221756696 209 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just 6 hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:24+00:00 1.0 1221756696 208 have you set the timer yet bcoz its the day for mountain alt signal ong went for 108 via went for 188 can todays mountain alt hit 250 12 hrs remaining today | 4 pm gmt 2020-06-03 04:00:29+00:00 1.0 1221756696 202 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:45:15+00:00 1.0 1447050373 4511 ✅ name of today pump coin is declared in vip channel 2019-10-02 18:01:35+00:00 1.0 1447050373 4510 next post will be coin name 2019-10-02 17:56:23+00:00 1.0 1447050373 4506 1 hours left for binance pump 2019-10-02 16:56:04+00:00 1.0 1447050373 4493 2 hours left for binance pump 2019-10-02 16:11:58+00:00 1.0 1447050373 4492 4 hours left for binance pump 2019-10-02 13:59:13+00:00 1.0 1447050373 4485 next pump scheduled ⏰ wednesday 02102019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-10-01 17:24:14+00:00 1.0 1447050373 4456 next pump scheduled ⏰ wednesday 02102019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-09-29 16:35:36+00:00 1.0 1447050373 4430 next pump scheduled ⏰ wednesday 02102019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-09-29 08:43:32+00:00 1.0 1447050373 4390 next pump scheduled ⏰ wednesday 02102019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-09-28 08:55:24+00:00 1.0 1447050373 4339 next pump scheduled ⏰ wednesday 02102019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-09-26 12:49:21+00:00 1.0 1447050373 4136 all of you are aware that currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is riser✈️ to pump coins from their bottom rather from their top with consideration of these factors today our team has decided to postpone our pump to protect all our members assets ✅ the new pump date ⏰will be announced shortly contacts bitcoinprofitadmin natiyasha 2019-09-18 16:20:15+00:00 1.0 1447050373 4135 3 hours left for binance pump 2019-09-18 14:54:38+00:00 1.0 1447050373 4127 next pump scheduled ⏰ wednesday 18092019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-09-17 14:48:58+00:00 1.0 1447050373 3962 next post will be coin name 2019-09-08 17:57:57+00:00 1.0 1447050373 3951 4 hours left for binance pump 2019-09-08 13:48:56+00:00 1.0 1447050373 3933 next pump scheduled ⏰ sunday 08092019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-09-06 16:29:06+00:00 1.0 1447050373 3809 2 hours left for binance pump 2019-08-29 16:03:10+00:00 1.0 1447050373 3808 next pump scheduled ⏰ thursday 29082019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-29 15:20:07+00:00 1.0 1447050373 3802 3 hours left for binance pump 2019-08-29 15:10:15+00:00 1.0 1447050373 3797 4 hours left for binance pump 2019-08-29 13:54:26+00:00 1.0 1447050373 3795 next pump scheduled ⏰ thursday 29082019 at 1800 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-28 18:55:35+00:00 1.0 1447050373 3592 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-22 19:55:02+00:00 1.0 1447050373 3591 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-22 19:50:04+00:00 1.0 1447050373 3590 only 30 minutes left the coin name will come as an image 2019-08-22 19:30:03+00:00 1.0 1447050373 3588 only 4 hours left team this is an important message 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned 2019-08-22 16:00:03+00:00 1.0 1447050373 3586 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts we expect great initial volume and even greater follow up volume to send the coin to 50 or more make sure you buy in quickly to get the best available price we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 2019-08-21 20:00:03+00:00 1.0 1447050373 3582 next pump scheduled ⏰ friday 22082019 at 2000 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-21 19:00:25+00:00 1.0 1447050373 3554 next pump scheduled ⏰ friday 22082019 at 2000 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-21 16:14:30+00:00 1.0 1447050373 3516 next pump scheduled ⏰ friday 22082019 at 2000 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-21 02:22:17+00:00 1.0 1447050373 3474 next pump scheduled ⏰ friday 22082019 at 2000 gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-20 15:04:04+00:00 1.0 1447050373 3383 pump result via start price 242 weve reached 298 quick profit 22 next pump will be announced soon to know next coin name earlier contact bitcoinprofitadmin natiyasha for premium membership 2019-08-16 16:17:41+00:00 1.0 1447050373 3368 1 hours left for binance pump 2019-08-16 15:06:50+00:00 1.0 1447050373 3367 3 hours left for binance pump 2019-08-16 13:14:51+00:00 1.0 1447050373 3365 next pump scheduled ⏰ friday 16082019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-16 11:55:50+00:00 1.0 1447050373 3354 next pump scheduled ⏰ friday 16082019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-16 02:51:14+00:00 1.0 1447050373 2961 1 hours left for binance pump 2019-08-02 15:08:42+00:00 1.0 1447050373 2960 2 hours left for binance pump 2019-08-02 13:49:56+00:00 1.0 1447050373 2955 next pump scheduled ⏰ friday 2082019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-02 11:58:03+00:00 1.0 1447050373 2928 next pump scheduled ⏰ friday 2082019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-08-01 10:44:35+00:00 1.0 1447050373 2916 next pump scheduled ⏰ friday 2082019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-07-31 16:31:12+00:00 1.0 1447050373 2893 next pump scheduled ⏰ friday 2082019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin natiyasha on telegram 2019-07-30 16:38:25+00:00 1.0 1447050373 2665 next post is coin name 2019-07-25 16:59:07+00:00 1.0 1447050373 2648 3 hours left for binance pump 2019-07-25 14:09:42+00:00 1.0 1447050373 2646 next pump scheduled ⏰ thursday 25072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-25 13:40:38+00:00 1.0 1447050373 2607 next pump scheduled ⏰ thursday 25072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-24 18:31:31+00:00 1.0 1447050373 2565 next pump scheduled ⏰ thursday 25072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-24 16:23:21+00:00 1.0 1447050373 2477 next post will be coin name 2019-07-22 16:57:01+00:00 1.0 1447050373 2463 1 hours left for binance pump 2019-07-22 16:00:16+00:00 1.0 1447050373 2451 next pump scheduled ⏰ monday 22072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-22 15:20:37+00:00 1.0 1447050373 2442 2 hours left for binance pump 2019-07-22 15:00:13+00:00 1.0 1447050373 2438 4 hours left for binance pump 2019-07-22 13:29:28+00:00 1.0 1447050373 2436 next pump scheduled ⏰ monday 22072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-22 13:29:17+00:00 1.0 1447050373 2426 next pump scheduled ⏰ monday 22072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-22 04:58:56+00:00 1.0 1447050373 2416 next pump scheduled ⏰ monday 22072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-21 08:54:38+00:00 1.0 1447050373 2401 next pump scheduled ⏰ monday 22072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-20 03:19:32+00:00 1.0 1447050373 2219 next post will be coin name 2019-07-11 16:58:37+00:00 1.0 1447050373 2153 next pump scheduled ⏰ thursday 11072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-11 07:44:08+00:00 1.0 1447050373 2100 next pump scheduled ⏰ tuesday 09072019 at 500pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-09 13:10:24+00:00 1.0 1447050373 2059 pump result sys start price 371 weve reached 410 quick profit 11 btc start to moving simultaneously and huge sell pressure was occured however we were manage next pump will be announced soon to know next coin name earlier contact bitcoinprofitadmin for premium membership 2019-07-07 18:23:55+00:00 1.0 1447050373 2051 next post will be coin name 2019-07-07 17:58:26+00:00 1.0 1447050373 2030 next pump scheduled ⏰ sunday 07072019 at 600pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-07 02:32:29+00:00 1.0 1447050373 1973 next post will be coin name 2019-07-05 15:58:35+00:00 1.0 1447050373 1971 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-05 15:54:34+00:00 1.0 1447050373 1957 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-05 07:16:40+00:00 1.0 1447050373 1951 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance dont miss pump to earn huge profit ✅connect for know more details and earn huge profit contact bitcoinprofitadmin 2019-07-04 18:18:01+00:00 1.0 1447050373 1893 next post will be coin name 2019-07-02 17:01:06+00:00 1.0 1447050373 1881 next pump scheduled ⏰ tuesday 02072019 at 500pm gmt exchange binance dont miss pump to earn huge profit connect for know more details and earn huge profit ☎️ contact bitcoinprofitadmin 2019-07-02 11:13:05+00:00 1.0 1447050373 1778 next post will be coin name 2019-06-24 16:57:15+00:00 1.0 1447050373 1773 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-24 15:14:58+00:00 1.0 1447050373 1761 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-23 17:53:38+00:00 1.0 1447050373 1662 next post will be coin name 2019-06-19 14:58:46+00:00 1.0 1447050373 1657 ✅next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinprofitadmin 2019-06-19 13:13:46+00:00 1.0 1447050373 1645 ✅next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinprofitadmin 2019-06-19 10:57:21+00:00 1.0 1447050373 1468 arn is the next coin to get listed on binance dex ‼️big news coin name buy arn 2019-06-12 11:59:01+00:00 1.0 1447050373 1394 5 hour left to pump on binance to know coin name earlier join premium pump profit target 3080 ☎ contact bitcoinprofitadmin 2019-06-09 16:09:53+00:00 1.0 1447050373 1389 8 hours left for the binance pump 2019-06-09 13:15:58+00:00 1.0 1447050373 1386 next pump scheduled ⏰ sunday 09062019 at 900pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-09 07:53:00+00:00 1.0 1447050373 1381 ‼️ pump result ren start price 540 weve reached 598 quick profit 107 price reached 598 then went down to 549 and again pumped holding next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinprofitadmin 2019-06-08 18:18:33+00:00 1.0 1447050373 1369 next post will be coin name 2019-06-08 16:57:43+00:00 1.0 1447050373 1367 1 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinprofitadmin 2019-06-08 16:11:29+00:00 1.0 1447050373 1366 2 hours left for the binance pump 2019-06-08 14:55:17+00:00 1.0 1447050373 1365 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-08 14:55:01+00:00 1.0 1447050373 1362 6 hours left for the binance pump 2019-06-08 11:15:48+00:00 1.0 1447050373 1361 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-08 11:15:08+00:00 1.0 1447050373 1339 24 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinprofitadmin 2019-06-07 16:29:49+00:00 1.0 1447050373 1333 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-07 13:28:20+00:00 1.0 1447050373 1325 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-07 11:03:12+00:00 1.0 1447050373 1297 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-06 11:02:04+00:00 1.0 1447050373 1283 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-05 19:20:51+00:00 1.0 1447050373 1257 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-04 13:17:38+00:00 1.0 1447050373 1246 next pump scheduled ⏰ friday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-06-03 16:44:53+00:00 1.0 1447050373 1205 last pump result ardr start price 993 weve reached 1054 quick profit 6 next pump will announce soon to know next coin name earlier ☎️contact bitcoinprofitadmin 2019-06-01 12:36:29+00:00 1.0 1447050373 1202 next post will be coin name 2019-05-31 16:57:02+00:00 1.0 1447050373 1200 ‼️5 minutes left to binance pump‼️ to know the name of coin earlier contact ☎️ bitcoinprofitadmin 2019-05-31 16:54:38+00:00 1.0 1447050373 1199 ‼️10 minutes left to binance pump‼️ to know the name of coin earlier contact ☎️ bitcoinprofitadmin 2019-05-31 16:50:00+00:00 1.0 1447050373 1198 ‼️10 minutes left to binance pump‼️ to know the name of coin earlier contact ☎️ bitcoinprofitadmin 2019-05-31 16:49:45+00:00 1.0 1447050373 1197 ‼️20 minutes left to binance pump‼️ to know the name of coin earlier contact ☎️ bitcoinprofitadmin 2019-05-31 16:40:46+00:00 1.0 1447050373 1196 ‼️40 minutes left to binance pump‼️ to know the name of coin earlier contact ☎️ bitcoinprofitadmin 2019-05-31 16:22:01+00:00 1.0 1447050373 1161 ‼️next breakout scheduled ⏰ 28052019 at 300pm gmt exchange binance free pump for alll ☎️ contact bitcoinprofitadmin 2019-05-28 12:59:34+00:00 1.0 1447050373 1069 pump result nav start price 324 weve reached 389 quick profit 20 after that price move up 710 3 times next pump will be announced soon to know next coin name earlier contact bitcoinprofitadmin for premium membership 2019-05-19 06:42:58+00:00 1.0 1447050373 1066 next post will be coin name 2019-05-18 17:41:13+00:00 1.0 1447050373 1060 next pump scheduled ⏰ saturday 18052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact bitcoinprofitadmin 2019-05-18 14:07:18+00:00 1.0 1447050373 966 next post will be coin name coin name cdt 2019-05-13 15:26:10+00:00 1.0 1447050373 964 15 minutes left for binance pump 2019-05-13 14:50:51+00:00 1.0 1447050373 954 next breakout pump signal will be announced only in vip channel in next 1 hour join vip and earn huge ☎️ contact bitcoinprofitadmin 2019-05-12 08:25:21+00:00 1.0 1447050373 938 pump result rdn start price 4288 weve reached 4950 quick profit 15 next pump will be announced soon to know next coin name earlier contact bitcoinprofitadmin for vip membership 2019-05-10 17:31:25+00:00 1.0 1447050373 937 5 minutes left for coin name take profit 1020 from initial price coin name rdn rdn good coin to hold this coin gave good profit in last week also 2019-05-10 16:21:38+00:00 1.0 1447050373 752 15 minutes left to pump on binance 2019-04-13 16:47:46+00:00 1.0 1447050373 750 next post is coin name for pumping 2019-04-13 16:33:16+00:00 1.0 1447050373 726 snm coin to pump is snm exchange yobitnet target +200 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-11 17:12:45+00:00 1.0 1447050373 725 next post is coin name 2019-04-11 16:56:20+00:00 1.0 1447050373 724 ‼️ 10 minutes ‼️ so close now make sure you are ready to buy coin on yobitnet 2019-04-11 16:53:04+00:00 1.0 1447050373 723 ‼️ 20 minutes ‼️ so close now make sure you are ready to buy coin on yobitnet 2019-04-11 16:42:17+00:00 1.0 1447050373 722 ☺️1 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinprofitadmin 2019-04-11 15:45:21+00:00 1.0 1447050373 719 next pump schedule ⏰ saturday 13042019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-11 07:54:48+00:00 1.0 1447050373 672 ♦️binance pump announcement♦️ date 10th april time 500 pm gmt exchange binance ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-04-09 08:55:17+00:00 1.0 1447050373 655 next post will be coin name 2019-04-08 16:23:55+00:00 1.0 1447050373 654 30 minutes left to pump on binance to know the name of coin earlier ☎️ bitcoinprofitadmin 2019-04-08 16:05:44+00:00 1.0 1447050373 651 2 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinprofitadmin 2019-04-08 14:54:45+00:00 1.0 1447050373 628 ♦️binance pump announcement♦️ ‼️next pump reschedule date 8th april time 430 pm gmt exchange binance ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-04-08 02:38:09+00:00 1.0 1447050373 626 pump reschedule ⏰ monday 08042019 at 430pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-07 20:46:57+00:00 1.0 1447050373 609 ♦️binance pump announcement♦️ ‼️next pump schedule date 7th april time 900 pm gmt exchange binance ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-04-07 10:44:09+00:00 1.0 1447050373 608 next pump scheduled ⏰ sunday 07042019 at 900pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-07 10:43:01+00:00 1.0 1447050373 572 coin name xrp buying area 68007070 sell between 7500 8500 10000 12000 stoploss 6600 exchange binance 2019-04-05 05:54:16+00:00 1.0 1447050373 558 next post will be coin name coin name snm 2019-04-05 01:19:18+00:00 1.0 1447050373 550 bitcoin profit coach ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinprofitadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinprofitadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-04-04 08:27:15+00:00 1.0 1447050373 541 bitcoin profit coach ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinprofitadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinprofitadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-04-04 03:12:36+00:00 1.0 1447050373 519 bitcoin profit coach ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinprofitadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinprofitadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-04-02 18:22:05+00:00 1.0 1447050373 475 ♦️next breakout coin will be announced in vip in next 1 hour ☎️ bitcoinprofitadmin 1 hours left for pump to know the name of coin earlier hurry join vip ‍♂‍♂‍♂ ☎️ bitcoinprofitadmin 2019-03-31 11:12:27+00:00 1.0 1447050373 474 ♦️pump announcement♦️ ‼️next pump schedule date 31st march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-03-31 11:07:17+00:00 1.0 1447050373 437 ♦️pump announcement♦️ ‼️next pump schedule date 31st march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinprofitadmin 2019-03-29 15:00:54+00:00 1.0 1447050373 371 pump announcement♦ ‼next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎ bitcoinprofitadmin 2019-03-28 03:28:16+00:00 1.0 1447050373 369 pump announcement♦ ‼next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎ bitcoinprofitadmin 2019-03-27 15:35:27+00:00 1.0 1447050373 357 cbs call coin name nxs buying area 940975 sell between 1010 1100 1250 1400 stoploss 880 exchange binance 2019-03-27 05:14:34+00:00 1.0 1447050373 305 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinprofitadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinprofitadmin 2019-03-25 07:29:30+00:00 1.0 1447050373 296 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinprofitadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinprofitadmin 2019-03-25 07:23:46+00:00 1.0 1447050373 267 ❤️1 hour remaining for next binance pump to know the name of earlier ☎️ bitcoinprofitadmin 2019-03-20 16:58:08+00:00 1.0 1447050373 255 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance last pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc contact bitcoinprofitadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinprofitadmin 2019-03-20 04:53:20+00:00 1.0 1447050373 245 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon ✅dont miss this one ✅ ☎️ bitcoinprofitadmin 2019-03-19 11:03:24+00:00 1.0 1447050373 237 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon contact for vip membership ☎️ bitcoinprofitadmin 2019-03-18 15:57:05+00:00 1.0 1447050373 235 2 hours left for binance pump to know the coin name earlier join vip now‍♂‍♂ ☎️ bitcoinprofitadmin 2019-03-17 06:17:35+00:00 1.0 1447050373 234 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinprofitadmin 2019-03-17 06:16:58+00:00 1.0 1447050373 230 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinprofitadmin 2019-03-17 02:06:21+00:00 1.0 1447050373 226 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinprofitadmin 2019-03-16 08:07:06+00:00 1.0 1447050373 215 next pump scheduled ⏰ time and date 17032019 0200 pm gmt utc time target 50 80 to know the coin name earlier contact below ‍♂hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinprofitadmin 2019-03-15 16:10:28+00:00 1.0 1447050373 196 45 minutes left for next breakout coin name will be announced in vip only ☎️ bitcoinprofitadmin 2019-03-15 02:32:42+00:00 1.0 1447050373 173 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinprofitadmin 2019-03-13 04:35:33+00:00 1.0 1447050373 167 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinprofitadmin 2019-03-12 08:59:28+00:00 1.0 1447050373 144 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinprofitadmin 2019-03-12 00:46:45+00:00 1.0 1447050373 96 next pump scheduled ⏰ time and date08032019 0630 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinprofitadmin 2019-03-07 15:50:42+00:00 1.0 1447050373 75 next pump scheduled ⏰ time and date03032019 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinprofitadmin 2019-02-27 16:47:34+00:00 1.0 1447050373 63 binance pump analysis coin hc low 3025 high 3339 win volume 102 btc exchange binance profit 1038 amazing ☎️ bitcoinprofitadmin 2019-02-24 02:28:58+00:00 1.0 1447050373 40 next pump scheduled ⏰ saturday 23022019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-21 05:26:34+00:00 1.0 1379463590 1177 unless we get a big pump within 20 minutes its a short wait until the end of the candle 2020-07-13 10:40:33+00:00 1.0 1379463590 1066 get ready to close at the end of this hour candleif we dont get a mega pump 2020-06-16 06:07:58+00:00 1.0 1379463590 1041 getting a short signal at the end of this hour candle if we dont get a big pump 2020-06-11 13:20:13+00:00 1.0 1379463590 686 didnt give this signal due to the big pump beforehand i was correct 2020-02-17 01:10:50+00:00 1.0 1227431937 198 we have choosed high volume and strong coin for you to buy hold until the targets buy between 26502700 satoshi to make quick profit too 2019-03-27 16:42:30+00:00 1.0 1227431937 135 in some minutes coin pump guys on kucoin pls be ready 2019-02-05 16:28:51+00:00 1.0 1227431937 128 buy sub coin sub coin looking good and good for now buy in 12001240 satoshi sell at 1400160018002000 satoshi holding days 115 days exchange binance news sub coin airdrop krs signals 2019-02-03 19:39:30+00:00 1.0 1227431937 51 rdn coin sell area is 6700690072007500 soon to moon big pump exepted 2019-01-09 13:29:35+00:00 1.0 1227431937 26 5 minutes the next post will be the coin to buy 2019-01-06 17:55:46+00:00 1.0 1227431937 25 30 minutes start getting logged in 2019-01-06 17:32:08+00:00 1.0 1227431937 24 how to take part in the pump 1 sign up to cryptopia and send your btc to your wallet today wwwcryptopiaconzexchange 2 at 6 pm gmt today the coin to buy will be posted here for everyone at the same time set your alarms for 30 mins before 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ next coin pump ℹ️ exchange wwwcryptopiaconz date sunday 6th january time 600 pm gmt ℹ️ 1 hours until the pump ℹ️ 2019-01-06 17:03:39+00:00 1.0 1227431937 23 1 hour up to big pump today 2019-01-06 17:02:27+00:00 1.0 1164619963 5282 2 minute left next post is our coin be ready for our 10x gem 2021-12-10 14:58:01+00:00 1.0 1164619963 5281 5 minutes left keep in mind this is a coin to buy and hold as the official news are yet to be announced once they become mainstream it could be in the next hour or in the next few days this coin will become our next 10x or more win 2021-12-10 14:55:01+00:00 1.0 1164619963 5280 15 minutes left screens on and have btc ready 2021-12-10 14:45:01+00:00 1.0 1164619963 5278 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump buying holding and waiting for outside traders to enter our coin before selling btc 2021-12-10 14:00:01+00:00 1.0 1164619963 5276 3 hours left pump instructions our pumps have a record of being the strongest and highest volume pumps in the market making the biggest profits for all our members and thats because we all follow this instructions important since our coin is btc paired it means you must have btc in your wallet in order to enter and profit from this pump once this is done read our pump instruction carefully to maximize profits we recommend market buying 5075 of your btc balance worth of our coin at market price to catch the first and strongest wave as low as possible then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up by placing limit orders above 150200 of profit the main objective of this pump is for all our members to make a massive profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-12-10 12:00:01+00:00 1.0 1164619963 5266 new pump announcement date friday december 10 2021 time 1500 gmt exchange binance brd already made us more than 1000 in a matter of days and it was because we knew about the coinbase acquisition way before anyone else… now weve received information about a coin thats having gamechanging news this week and youll be the first ones to know about it be ready for it were going to announce this gem in just 24 hours and just as with brd youre probably not getting a second chance to buy it at its pre explosion levels 2021-12-09 15:00:02+00:00 1.0 1164619963 5219 the waiting time is almost over set your alerts and be ready for the most awaited and powerful ta+fa based call which is coming for you within next 5 minutes stay tuned to avail 2021-12-06 15:55:05+00:00 1.0 1164619963 5218 the wait is almost over set your alerts and be ready for the most awaited and powerful ta + fa based signal which is coming for you within next 30 minutes read pinned post | stay tuned 2021-12-06 15:30:04+00:00 1.0 1164619963 5216 there is a saying if a slight window of opportunity appears you should never pull down the shade the most awaited and powerful ta + fa based unicorn is round the corner would be a game changer get ready with your binance accounts for biggest pump by our whales 1h left | 4pm gmt today read pinned post | stay tuned 2021-12-06 15:00:28+00:00 1.0 1164619963 5206 greetings with exciting news for all of you tomorrow at 4pm gmt we will share a powerful ta + fa based unicorn sitting on fking bottom and waiting for a kick to moon alts are bottomed out due to recent btc correction and our giant whales will pump a powerful ta + fa based unicorn up to 300 and you all will be able to make gigantic profits in short term were expecting 300 gain in short term this time as the upcoming call will be scanned by our technical analysts and supported by big binance whales more than 1million people are going to join this event we will make sure to reach as high as possible and will make sure to achieve tp 1 within few minutes as we did in past calls make sure you have your binance account ready and loaded with btc for tomorrow ⚠️ date december 6today ⏰time 4pm gmt exchange binance 2021-12-06 07:59:59+00:00 1.0 1164619963 5189 5 minutes left weve just received classified news stating that todays coin will be signing an exclusive partnership with coinbase when this is confirmed probably in the next few minutes or hours we can expect it to at least 10x… just like brd did or even more 2021-12-05 14:55:01+00:00 1.0 1164619963 5188 15 minutes left screens on and have btc ready as our coin is btc paired 2021-12-05 14:45:01+00:00 1.0 1164619963 5186 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump buying holding and waiting for outside traders to enter our coin before selling 2021-12-05 14:00:01+00:00 1.0 1164619963 5184 3 hours left pump instructions our pumps have a record of being the strongest and highest volume pumps in the market making the biggest profits for all our members and thats because we all follow this instructions important since our coin is btc paired it means you must have btc in your wallet in order to enter and profit from this pump once this is done read our pump instruction carefully to maximize profits we recommend market buying 5075 of your btc balance worth of our coin at market price to catch the first and strongest wave as low as possible then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up by placing limit orders above 150200 of profit the main objective of this pump is for all our members to make a massive profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-12-05 12:00:01+00:00 1.0 1164619963 5177 24 hours left date sunday december 5 2021 time 1500 gmt exchange binance get ready that the official countdown has already started in 24 hours youll be making one of the craziest profits of your lives 2021-12-04 15:00:00+00:00 1.0 1164619963 5161 48 hours left date sunday december 5 2021 time 1500 gmt exchange binance 2 days left for our biggest binance pump of the year thats right exactly 2 days left for our pump get ready because we expect to see one of the higher volumes recorded in our history this pump will easily break the 300 profit mark 2021-12-03 15:00:02+00:00 1.0 1164619963 5151 60 hours left date sunday december 5 2021 time 1500 gmt exchange binance less than 3 days left for the binance pump of the year… be ready to buy the next 10100x gem just as you all saw with brd 2021-12-03 03:00:01+00:00 1.0 1164619963 5148 72 hours left date tuesday december 5 2021 time 1500 gmt exchange binance 3 days left for our biggest binance pump of the year 2021-12-02 15:00:02+00:00 1.0 1164619963 5131 new pump announcement date sunday december 5 2021 time 1500 gmt exchange binance we told you about brd weeks before… from our entries down to 300 sats it reached a high of 2931 sats making everyone who held it up to 1000 in net profit we knew about the coinbase acquisition way before anyone else and just like that we have information on another gem thats about to explode potentially making us more than brd did this is a coin nobody is currently watching but has a team working nonstop behind the scenes about to close a deal that could easily send this coin up 1020x as always youll be the first ones to know so be ready… 2021-11-29 13:53:59+00:00 1.0 1164619963 5075 15 minutes left screens on and have btc ready 2021-11-23 14:45:02+00:00 1.0 1164619963 5073 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-23 14:00:04+00:00 1.0 1164619963 5071 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in mbox 2021-11-23 12:00:02+00:00 1.0 1164619963 5063 24 hours left date tuesday november 23 2021 time 1500 gmt exchange binance the official countdown is officially on once again and were ready to have one of the greatest binance pumps of all time be ready to make the biggest profits of the year chr 2021-11-22 15:00:02+00:00 1.0 1164619963 5047 48 hours left date tuesday november 23 2021 time 1500 gmt exchange binance 2 days left for the biggest pump of november turn on your push notifications and make sure you dont have our channel on mute were about to have a ride 2021-11-21 15:23:37+00:00 1.0 1164619963 5001 pump announcement date tuesday november 23 2021 time 1500 gmt exchange binance brd made it nas made it wabi made it sky made it and the list goes on… our pumps have become the biggest most profitable and with the highest volume in the entire market because more and more traders are profiting from them the difference between us and every other pump channel our pumps have absolutely 0 prebuying and price remains 40 60 or even 80 up 15 minutes or more after we begin our pump while pushing even higher get ready for yet another binance pump this time expecting a 350400 profit after our 3rd wave… our whales are ready to make you all ridiculous profits are you ready to take them 2021-11-17 16:24:23+00:00 1.0 1164619963 4964 15 minutes left screens on and have btc ready 2021-11-14 14:45:03+00:00 1.0 1164619963 4961 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:05+00:00 1.0 1164619963 4958 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:00:04+00:00 1.0 1164619963 4945 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales our ready our team is ready… are you ready 2021-11-13 15:00:04+00:00 1.0 1164619963 4941 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:25:13+00:00 1.0 1164619963 4928 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:00:05+00:00 1.0 1164619963 4866 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:12:44+00:00 1.0 1164619963 4738 15 minutes left screens on and have btc ready 2021-10-31 14:45:05+00:00 1.0 1164619963 4735 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:12+00:00 1.0 1164619963 4733 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:07+00:00 1.0 1164619963 4715 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:08+00:00 1.0 1164619963 4572 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 15:07:14+00:00 1.0 1164619963 4423 check keep also today 80+ massive pump vip know next massive pump signal and you contact moonpremium 2021-10-15 08:45:28+00:00 1.0 1164619963 4422 you miss another massive pump signal dont miss next signal join today with 50 discount contact moonpremium 2021-10-15 08:42:43+00:00 1.0 1164619963 4403 15 minutes left screens on and btc ready 2021-10-14 14:45:06+00:00 1.0 1164619963 4401 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:00:06+00:00 1.0 1164619963 4395 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:10+00:00 1.0 1164619963 3113 funusdt exchange binance wazirx dipped now good time to buy and add in our portfolio buy some hold wait for the pump buy 002950 03100 sell 0036 004 0047 0055 0062 buy and wait for the breakout stoploss below 7 cryptomoonvip 2021-08-26 07:50:22+00:00 1.0 1164619963 2886 buying more fun here now breaking out the resistance with huge volume from volume growing up significantly in past few hours another big pump incomingwe are expecting huge moves in this coin market makers will pump it hard because of upcoming back to back news looks like whales gonna pump it hard worth buy for short term big profits from my last call already 17 up cryptomoonvip 2021-08-21 13:43:10+00:00 1.0 1164619963 2672 alonzo hardfork with cardano and we can see big pump in ada before that event buy below 2 and hold for 2 months or for long term we can see 3 approx before 12 sep event date t1 23 t2 24 last ath t3 27 t4 3 sl 15 big altcoins session going on cryptomoonvip 2021-08-16 07:35:16+00:00 1.0 1164619963 1856 open future or spot in binance time to buy we found a good coin to buy and hold we will send in next some minutes stay tuned 2021-07-28 04:43:28+00:00 1.0 1164619963 1777 signal id bake usdt profit 3846 5x period 5 hour 5 minutes ⏰ 2021-07-24 17:29:54+00:00 1.0 1164619963 1345 tomorrow 1 coin will pump hard im suggesting you possible pump able coin expected gains 50 to 200 so if you buy any of coin put sell bids on your desired targets these coins have the highest chances to be pumped you can take part in any of it now or you can invest small small in all via 60 chance cmp 1364 sky 15 chance cmp 2680 nav 15 chance cmp 1174 ark 05 chance cmp 2748 mda 05 chance cmp 1850 these trades will be valid till 22 hours 20 minutes from now note sell all these coins immediately after 11th of july 1700 pm gmt good luck 2021-07-11 04:26:11+00:00 1.0 1164619963 230 btc next resistance ☑️ 38500 if cross this we see big pump in alts 2021-05-31 15:55:08+00:00 1.0 1164619963 78 ✅now btc try second time to break 40k ✅42k heavy resistance keep eyes on btc if btc break next resistance we see big pump in alts 2021-05-27 14:53:33+00:00 1.0 1236950740 901 pump announcement date saturday 17 july ⏰ time 800 pm ist 1430 gmt exchange hotbitio pair usdt advantage free for all ⭕ no pre buying no pre pump target 1000 we promise our next pump will be a more powerful pump than last time share and invite your friends to join our channel to get the benefits 2021-07-16 13:51:31+00:00 1.0 1236950740 893 pump announcement date saturday 17 july ⏰ time 800 pm ist 1430 gmt exchange hotbitio pair usdt advantage free for all ⭕ no pre buying no pre pump target 1000 we promise our next pump will be a more powerful pump than last time share and invite your friends to join our channel to get the benefits 2021-07-15 10:21:15+00:00 1.0 1236950740 882 we gave coin name to vip users before actual pump dm professorhiest to buy membership only 99inr first month 2021-07-13 15:13:32+00:00 1.0 1236950740 880 talking to whales about 2nd wave they will pump it in 30 minutes 2021-07-13 14:38:23+00:00 1.0 1236950740 876 next post coin name buy and wait for hold 5 mins target 600 2021-07-13 14:29:01+00:00 1.0 1236950740 867 6 hours left for our massive pump 2021-07-13 08:30:47+00:00 1.0 1236950740 851 pump announcement date tuesday 13 july ⏰ time 800 pm ist 1430 gmt exchange hotbitio pair usdt advantage free for all ⭕ no pre buying no pre pump target 1000 we promise our next pump will be a more powerful pump than last time share and invite your friends to join our channel to get the benefits 2021-07-12 17:55:20+00:00 1.0 1236950740 845 next post coin name buy and hold for 5 mins then our whales will pump it to 1000 2021-07-12 16:29:01+00:00 1.0 1236950740 840 coin name before the pump 3 seats only 2021-07-12 13:50:34+00:00 1.0 1236950740 834 6 hours remaining for hotbit pump yesterday we did 5 waves today we will do 2 or 3 waves 2021-07-12 10:37:29+00:00 1.0 1236950740 830 9 hours and 38 minutes left for 200500 pump on hotbit 2021-07-12 06:52:40+00:00 1.0 1236950740 826 pump announcement date sunday 12 july ⏰ time 1000 pm ist exchange hotbitio pair usdt advantage free for all ⭕ no pre buying no pre pump we decided to pump earlier because all the coins are at an amazing price low with the current market condition we will be able to make a profit of +500 or even more 2021-07-11 18:30:21+00:00 1.0 1236950740 795 next post coin name to buy fast on hotbit set buy order on our recommended price in next post 2021-07-11 14:28:01+00:00 1.0 1236950740 785 we will do our pump earlier than other pump channels 5 hours left for pump keep your hotbit account ready target is 300+ 2021-07-11 09:30:05+00:00 1.0 1236950740 770 pump announcement date sunday 11 july ⏰ time 930 pm ist 1600 gmt exchange hotbitio pair usdt advantage free for all ⭕ no pre buying no pre pump we decided to pump earlier because all the coins are at an amazing price low with the current market condition we will be able to make a profit of +500 or even more join cryptoprofessorr 2021-07-10 13:31:04+00:00 1.0 1236950740 739 hotbit pump pump announcement ✅ exchange hotbitio✅ date 10july ✅ time 1630 gmt1000ist ✅ pair usdt✅ target 10x advantage °no prepump °no prebuyings ✅ will provide you wsb✅ china future pump signals✅ 12hr before✅ °share this group with your crypto mates date 10july ⏰ time 1630 gmt 1000pm ist exchange hobitio use my referral link referral code 2320168 2021-07-10 03:55:36+00:00 1.0 1236950740 716 hotbit pump pump announcement ✅ exchange hotbitio✅ date 10july ✅ time 1630 gmt1000ist ✅ pair usdt✅ target 10x advantage °no prepump °no prebuyings ✅ will provide you wsb✅ china future pump signals✅ 12hr before✅ °share this group with your crypto mates date 10july ⏰ time 1630 gmt 1000pm ist exchange hobitio 2021-07-09 17:38:59+00:00 1.0 1236950740 702 next post will be coin name 2021-07-09 16:24:38+00:00 1.0 1236950740 701 the big day has arrived 15 minutes remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-09 16:15:04+00:00 1.0 1236950740 684 hotbit pump pump announcement ✅ exchange hotbitio✅ date 9july ✅ time 1700 gmt1000ist ✅ pair usdt✅ target 100x advantage °no prepump °no prebuyings ✅ will provide you wsb✅ china future pump signals✅ 12hr before✅ °share this group with your crypto mates date 9july ⏰ time 1630 gmt 1000pm ist exchange hobitio 2021-07-08 08:55:25+00:00 1.0 1236950740 677 22 hours 30 minutes left for biggest pump download hotbit ✅ open hotbit✅ open global market ✅ open search bar ✅ make ready your ✅ buy coin on our call✅ and get ready to make huge profit ✅ 2021-07-07 17:55:43+00:00 1.0 1236950740 673 hotbit pump pump announcement ✅ exchange hotbitio✅ date 9july ✅ time 1700 gmt1000ist ✅ pair usdt✅ target 100x advantage °no prepump °no prebuyings ✅ will provide you wsb✅ china future pump signals✅ 12hr before✅ °share this group with your crypto mates date 9july ⏰ time 1630 gmt 1000pm ist exchange hobitio 2021-07-07 16:18:58+00:00 1.0 1236950740 665 we are planning to work with hotbit whales we pump coins from 100 to 600 i will give you 10× profit join hotbit exchange use my referral code no kyc required coin name will be announced soon comment your views 2021-07-07 12:27:37+00:00 1.0 1236950740 485 mdt bi̇nance‼️ buy around 6471sats sel818899110+144sats accumulation is going on in breaker zone falling wedge pattern is printed and about to breakout good to buy some here buy hold a bag for the pump stoploss 7 2021-06-23 09:46:08+00:00 1.0 1236950740 398 2 hour 37 minutes left information about exchanges 830 pm call exchange binance this call can be cancelled because of market instability 230 am call exchange kucoin 2021-06-19 12:53:18+00:00 1.0 1236950740 396 announcement timing change next 3 big signals date 19 20 june time 1 19 june 830pm or 20 june 1230am 2 230am 3 1030 pm this one will be huge about 200600 profit time zone indian exchange kucoin referral code rjh7y97 signup for kucoin and complete kyc link in description 2021-06-19 10:46:18+00:00 1.0 1236950740 375 next post will be coin name 2021-06-18 14:56:01+00:00 1.0 1236950740 374 15 minutes left before i post coin name i want you to share my channel with all your friends after this call promise 2021-06-18 14:45:01+00:00 1.0 1236950740 370 1 hour 30 minutes left read instructions again 2021-06-18 13:29:40+00:00 1.0 1236950740 363 15 minutes left next post coin name 2021-06-18 07:45:01+00:00 1.0 1236950740 357 big announcement signal at 130 pm indian time 2 hours left be ready with your futures account 2021-06-18 06:06:56+00:00 1.0 1236950740 337 next post coin name 2021-06-17 11:46:13+00:00 1.0 1236950740 327 next post coin name 2021-06-16 15:52:07+00:00 1.0 1236950740 312 next post coin name 2021-06-16 11:28:42+00:00 1.0 1236950740 310 1 hour 30 minutes left biggest future trading set leverage 10× to 30× 2021-06-16 10:02:13+00:00 1.0 1236950740 293 next post coin name 2021-06-15 11:25:54+00:00 1.0 1236950740 266 sorry guys coin pump postponed by our team for some reasons we will give you update about pump 2021-06-13 17:23:33+00:00 1.0 1236950740 185 im currently analysing market i will post coin name in an hour 2021-06-07 11:23:47+00:00 1.0 1236950740 170 next post will be coin name 2021-06-06 16:54:53+00:00 1.0 1236950740 167 15 minutes left this months highest pump we have support of whales be ready make sure you have already brought btc 2021-06-06 16:46:32+00:00 1.0 1236950740 119 tron coin can pump very hard any time insider information 2021-06-04 12:05:13+00:00 1.0 1341021423 27892 bitmex xbtusd unusual activity 716m usd in 5 minutes 7 b 7132 ❇ 003 a 71325 ❇ 003 24h vol 109b usd last signal 2 days ago 47d 2020-04-18 12:58:58+00:00 1.0 1295042542 7474 oax pump almost every week good coin to buy and hold mark my words ‼️ 2022-01-22 17:03:19+00:00 1.0 1295042542 7466 next post will be coin name 2022-01-22 16:59:17+00:00 1.0 1295042542 7465 5 minutes left to pump on binance be ready with you btc 2022-01-22 16:55:09+00:00 1.0 1295042542 7464 15 minutes left to pump on binance 2022-01-22 16:45:51+00:00 1.0 1295042542 7463 30 minutes left to pump on binance 2022-01-22 16:30:04+00:00 1.0 1295042542 7456 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 13:54:38+00:00 1.0 1295042542 7432 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 08:28:33+00:00 1.0 1295042542 7304 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-18 17:22:02+00:00 1.0 1295042542 7111 pump result glmr start price 20267 weve reached 32498 all targets achieved in just 30 hour ✅✅✅✅ huge quick profit 60 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-13 14:53:19+00:00 1.0 1295042542 7059 iris result hit 267 2nd target achieved in just 25 hour✅✅ huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2022-01-12 05:46:48+00:00 1.0 1295042542 7018 santos hit 10292 finally all targets achieved in just 2 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-11 10:29:08+00:00 1.0 1295042542 7016 pump result santos start price 7159 weve reached 9500 3rd target achieved in just 51 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-11 09:03:32+00:00 1.0 1295042542 6951 pump result phb start price 882 weve reached 1155 3rd target achieved in just 30 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 08:59:33+00:00 1.0 1295042542 6944 pump result powr start price 1160 weve reached 1797 all targets achieved in just 20 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 06:53:50+00:00 1.0 1295042542 6876 pump result iris start price 206 weve reached 348 all targets achieved in just 55 hour ✅✅✅✅ huge quick profit 68 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-07 17:39:07+00:00 1.0 1295042542 6800 alcx result hit 9616 2nd target achieved in just 8 hour✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-06 06:42:38+00:00 1.0 1295042542 6700 pump result gxs start price 4283 weve reached 5694 3rd targets achieved in just 30 minutes ✅✅✅ huge quick profit 32 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-03 10:30:10+00:00 1.0 1295042542 6640 pump result nebl start price 2634 weve reached 4058 huge quick profit 53 in just 75 hour to know next pump coin name contact apglobals for premium membership 2022-01-02 17:19:06+00:00 1.0 1295042542 6620 ardr result hit 820 3rd target achieved in just 16 minutes ✅✅✅ huge quick profit 33 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2022-01-02 15:04:37+00:00 1.0 1295042542 6504 fxs result hit 90972 3rd target achieved in just 27 hour✅✅✅ huge quick profit 48 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-31 16:40:58+00:00 1.0 1295042542 6444 pump result gxs start price 4068 weve reached 5664 all targets achieved in just 31 minutes ✅✅✅✅ huge quick profit 39 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-29 12:56:25+00:00 1.0 1295042542 6422 pump result farm start price 1999 weve reached 5800 huge quick profit 190 in just 20 hour to know next pump coin name contact apglobals for premium membership 2021-12-28 16:49:17+00:00 1.0 1295042542 6417 pump result quick start price 5420 weve reached 11562 huge quick profit 106 in just 28 minutes to know next pump coin name contact apglobals for premium membership 2021-12-28 16:15:35+00:00 1.0 1295042542 6404 pump result hard start price 1704 weve reached 2718 all targets achieved in just 19 minutes ✅✅✅✅ huge quick profit 59 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-28 06:56:40+00:00 1.0 1295042542 6371 pump result utk start price 680 weve reached 979 all targets achieved in just 28 minutes ✅✅✅✅ huge quick profit 131 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-27 17:30:45+00:00 1.0 1295042542 6319 pump result lina start price 83 weve reached 111 all targets achieved in just 6 hour ✅✅✅✅ huge quick profit 101 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-26 11:27:56+00:00 1.0 1295042542 6284 pump result pha start price 825 weve reached 1290 all targets achieved in just 20 minutes ✅✅✅✅ huge quick profit 56 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 19:06:20+00:00 1.0 1295042542 6272 pump result flux start price 3404 weve reached 5828 all targets achieved in just 23 hour ✅✅✅✅ huge quick profit 71 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 17:25:06+00:00 1.0 1295042542 6246 mdt result hit 282 3rd target achieved in just 17 hour✅✅✅ huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-25 04:41:02+00:00 1.0 1295042542 6236 pump result appc start price 73 weve reached 105 3rd targets achieved in just 1 hour ✅✅✅ huge quick profit 43 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-24 17:33:51+00:00 1.0 1295042542 6229 pump result rdn start price 435 weve reached 816 huge quick profit 87 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 17:07:33+00:00 1.0 1295042542 6224 pump result evx start price 383 weve reached 540 huge quick profit 40 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 16:56:32+00:00 1.0 1295042542 6181 om result hit 431 3rd target achieved in just 14 minutes ✅✅✅ huge quick profit 23 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-23 15:52:37+00:00 1.0 1295042542 6145 pump result coti start price 634 weve reached 948 all targets achieved in just 36 hour ✅✅✅✅ huge quick profit 148 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-23 05:45:38+00:00 1.0 1295042542 6092 pump result ren start price 1058 weve reached 1543 all targets achieved in just 45 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-22 05:15:55+00:00 1.0 1295042542 6088 pump result jamsy start price 148 weve reached 251 all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 69 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-21 19:35:19+00:00 1.0 1295042542 6044 pump result any start price 4166 weve reached 6057 all targets achieved in just 29 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-20 18:15:46+00:00 1.0 1295042542 6007 dusk result hit 1339 3rd target achieved in just 15 hour✅✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-20 08:05:14+00:00 1.0 1295042542 5994 any result hit 5511 3rd target achieved in just 21 hour✅✅✅ huge quick profit 32 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-20 07:22:22+00:00 1.0 1295042542 5982 pump result appc start price 161 weve reached 222 huge quick profit 37 in just 9 minutes to know next pump coin name contact apglobals for premium membership 2021-12-19 15:04:44+00:00 1.0 1295042542 5970 wan result hit 1818 3rd target achieved in just 11 minutes ✅✅✅ huge quick profit 1818 amazing pump calls by our team advance buy and sell targets ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-19 08:56:16+00:00 1.0 1295042542 5953 farm result hit 2700 3rd target achieved in just 2 minutes ✅✅✅ huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:32:39+00:00 1.0 1295042542 5942 fis result hit 3524 2nd target achieved in just 2 minutes ✅✅ one more huge quick profit 25 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:14:25+00:00 1.0 1295042542 5937 pump result tru start price 805 weve reached 1194 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 18:01:03+00:00 1.0 1295042542 5922 pump result cfx start price 496 weve reached 650 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 11:35:03+00:00 1.0 1295042542 5907 pump result qlc start price 75 weve reached 114 all targets achieved in just 40 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 10:06:35+00:00 1.0 1295042542 5903 pump result tct start price 70 weve reached 109 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 09:27:11+00:00 1.0 1295042542 5859 tct result hit 87 3rd target achieved in just 10 minutes ✅✅✅ huge quick profit 24 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-17 12:58:44+00:00 1.0 1295042542 5852 high result hit 8500 2nd target achieved in just 7 minutes ✅✅ huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-17 07:57:32+00:00 1.0 1295042542 5783 pump result gxs start price 2720 weve reached 4150 all targets achieved in just 25 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-16 10:43:24+00:00 1.0 1295042542 5756 ramp result hit 582 3rd target achieved in just 65 hour✅✅✅ huge quick profit 48 amazing pump calls by our team you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-15 16:48:16+00:00 1.0 1295042542 5742 pump result voxel start price 5353 weve reached 8250 all targets achieved in just 18 hour ✅✅✅✅ huge quick profit 54 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-15 09:09:20+00:00 1.0 1295042542 5732 pump result doge start price 330 weve reached 463 all targets achieved in just 185 hour ✅✅✅✅ huge quick profit 120 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-14 19:59:51+00:00 1.0 1295042542 5728 voxel result hit 6595 3rd target achieved in just 24 minutes ✅✅✅ huge quick profit 23 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-14 13:37:06+00:00 1.0 1295042542 5578 pump result flux start price 6000 weve reached 9900 all targets achieved in just 33 minutes ✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-10 08:36:08+00:00 1.0 1295042542 5516 pump result mdt start price 129 weve reached 231 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 237 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-09 05:08:18+00:00 1.0 1295042542 5502 pump result ant start price 9002 weve reached 13000 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 44 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 18:58:10+00:00 1.0 1295042542 5477 pump result xtz start price 8322 weve reached 11567 all targets achieved in just 7 hour ✅✅✅✅ huge quick profit 115 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 06:55:33+00:00 1.0 1295042542 5445 pump result dusk start price 412 weve reached 855 all targets achieved in just 225 hour ✅✅✅✅ huge quick profit 107 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-07 14:07:40+00:00 1.0 1295042542 5423 pump result elf start price 980 weve reached 1781 all targets achieved in just 4 minutes✅✅✅✅ huge quick profit 81 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-06 17:26:06+00:00 1.0 1295042542 5418 grs result hit 2179 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 33 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-06 17:21:45+00:00 1.0 1295042542 5406 porto hit 11695 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 87 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-05 17:47:41+00:00 1.0 1295042542 5381 pump result lazio start price 8618 weve reached 13000 all targets achieved in just 50 minutes✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-05 07:56:31+00:00 1.0 1295042542 5376 santos result hit 13299 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-05 04:21:35+00:00 1.0 1295042542 5315 fio result hit 799 all targets achieved in 4 days✅✅✅✅ one more huge profit 142 ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-03 19:25:12+00:00 1.0 1295042542 5306 pump result mdt start price 112 weve reached 159 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 41 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 17:18:04+00:00 1.0 1295042542 5288 pump result gto start price 121 weve reached 192 all targets achieved in just 74 minutes✅✅✅✅ huge quick profit 58 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 10:23:20+00:00 1.0 1295042542 5271 pump result nuls start price 934 weve reached 3253 huge quick profit 248 to know next pump coin name contact apglobals for premium membership 2021-12-02 17:46:41+00:00 1.0 1295042542 5254 pump result gxs start price 1171 weve reached 2790 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 138 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-02 13:15:16+00:00 1.0 1295042542 5228 brd result hit 2830 all targets achieved in nust 2 days✅✅✅✅ one more huge profit 60 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-02 06:10:52+00:00 1.0 1295042542 5205 santos result hit 64967 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 48 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-12-01 11:22:22+00:00 1.0 1295042542 5201 pump result req start price 822 weve reached 1340 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-01 11:19:09+00:00 1.0 1295042542 5164 pump result agix start price 417 weve reached 578 huge quick profit 38 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-11-30 18:41:51+00:00 1.0 1295042542 5071 pump result mda start price 1144 weve reached 1999 all targets achieved in just 8 minutes✅✅✅✅ huge quick profit 74 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 17:02:21+00:00 1.0 1295042542 5064 pump result evx start price 1180 weve reached 1931 all targets achieved in just 43 minutes✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 16:45:48+00:00 1.0 1295042542 5062 evx result hit 1544 3rd target achieved in just 9 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-28 15:08:20+00:00 1.0 1295042542 5031 pump result pnt start price 2315 weve reached 3471 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 07:41:49+00:00 1.0 1295042542 4933 pump result nu start price 1592 weve reached 2460 huge quick profit 54 to know next pump coin name contact apglobals for premium membership 2021-11-27 06:29:22+00:00 1.0 1295042542 4900 pump result pyr start price 5631 weve reached 9298 all targets achieved in just 75 hour✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:32:30+00:00 1.0 1295042542 4897 pump result gct start price 1956 weve reached 2784 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:07:09+00:00 1.0 1295042542 4881 pump result storj start price 3836 weve reached 6116 huge quick profit 59 in just 12 hour to know next pump coin name contact apglobals for premium membership 2021-11-26 17:25:10+00:00 1.0 1295042542 4808 pump result aion start price 315 weve reached 623 huge quick profit 97 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-11-25 17:42:21+00:00 1.0 1295042542 4780 amb result hit 113 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump coin name 2021-11-25 10:48:55+00:00 1.0 1295042542 4765 pump result wabi start price 434 weve reached 1056 huge quick profit 143 in just 41 minutes to know next pump coin name contact apglobals for premium membership 2021-11-25 08:54:27+00:00 1.0 1295042542 4760 pump result brd start price 353 weve reached 2931 all targets achieved in just 3 minutes✅✅✅✅ and pumped hard huge quick profit 730 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-25 04:19:29+00:00 1.0 1295042542 4749 pump result ramp start price 591 weve reached 844 all targets achieved in just 49 minutes✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 17:49:54+00:00 1.0 1295042542 4712 pump result drep start price 1886 weve reached 2799 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 06:32:50+00:00 1.0 1295042542 4658 pump result mda start price 1610 weve reached 2211 3rd target achieved in just 2 hour ✅✅✅ huge quick profit 37 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-23 15:03:36+00:00 1.0 1295042542 4639 pump result iris start price 212 weve reached 373 huge quick profit 75 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-11-22 18:45:09+00:00 1.0 1295042542 4578 pump result dego start price 1583 weve reached 2373 all target achieved in just 22 hour ✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 14:44:14+00:00 1.0 1295042542 4567 pump result nav start price 707 weve reached 1059 all target achieved in just 15 hour ✅✅✅✅ huge quick profit 49 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 10:22:55+00:00 1.0 1295042542 4527 pump result tct start price 60 weve reached 108 all target achieved in just 17 hour ✅✅✅✅ huge quick profit 80 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:52:43+00:00 1.0 1295042542 4523 pump result powr start price 1084 weve reached 1592 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:50:24+00:00 1.0 1295042542 4509 pump result gto start price 96 weve reached 156 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 62 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:38:20+00:00 1.0 1295042542 4504 pump result drep start price 1495 weve reached 3152 huge quick profit 110 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-11-20 18:17:48+00:00 1.0 1295042542 4499 pump result mith start price 88 weve reached 307 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 248 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:03:10+00:00 1.0 1295042542 4472 poly result hit 1500 3rd target achieved in just 5 hour✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-20 13:56:00+00:00 1.0 1295042542 4453 pump result mith start price 88 weve reached 153 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 73 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 08:15:50+00:00 1.0 1295042542 4418 mith result hit 114 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 17:24:19+00:00 1.0 1295042542 4404 lazio result hit 15493 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 14:24:05+00:00 1.0 1295042542 4399 dar result hit 5375 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:47:10+00:00 1.0 1295042542 4389 idex result hit 860 3rd target achieved in just 54 minutes ✅✅✅ one more huge quick profit 33 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:30:55+00:00 1.0 1295042542 4383 pump result idex start price 455 weve reached 669 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-19 06:46:50+00:00 1.0 1295042542 4366 pump result storj start price 2794 weve reached 4089 all target achieved in just 34 hour ✅✅✅✅ huge quick profit 138 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 17:54:03+00:00 1.0 1295042542 4325 arrgo result hit 856 3rd target achieved in just 39 minutes ✅✅✅ one more huge quick profit 37 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-18 05:46:21+00:00 1.0 1295042542 4311 pump result rose start price 344 weve reached 512 all target achieved in just 14 hour ✅✅✅✅ huge quick profit 146 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 05:10:50+00:00 1.0 1295042542 4263 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-17 03:00:16+00:00 1.0 1295042542 4226 pump result porto start price 17066 weve reached 28188 all target achieved in just 8 minutes✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 12:24:19+00:00 1.0 1295042542 4210 pump result powr start price 606 weve reached 1244 all target achieved in just 15 minutes✅✅✅✅ huge quick profit 105 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 03:58:10+00:00 1.0 1295042542 4135 pump result nas start price 87 weve reached 142 all target achieved in just 1 minute✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-14 15:08:36+00:00 1.0 1295042542 3977 adx result hit 1485 2nd target achieved in just 8 minutes ✅✅ one more huge quick profit 22 amazing calls by our team so much quick profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-11 14:38:58+00:00 1.0 1295042542 3952 pump result ens start price 9137 weve reached 18000 all target achieved in just 185 hour✅✅✅✅ huge quick profit 97 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-11 06:13:18+00:00 1.0 1295042542 3854 pump result lpt start price 5769 weve reached 15220 huge quick profit 163 to know next pump coin name contact apglobals for premium membership 2021-11-09 18:24:56+00:00 1.0 1295042542 3806 pump result uma start price 2225 weve reached 3519 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-11-08 06:44:35+00:00 1.0 1295042542 3752 adx result hit 1796 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-07 06:36:06+00:00 1.0 1295042542 3730 pump result rgt start price 7585 weve reached 11482 all target achieved in just 30 minutes✅✅✅✅ huge quick profit 51 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-06 06:43:48+00:00 1.0 1295042542 3728 you missed one more profit here is one more profit for premium members in just 30 minutes pump result 2021-11-06 06:41:26+00:00 1.0 1295042542 3696 pump result sys start price 540 weve reached 897 all target achieved in just 18 hour ✅✅✅✅ huge quick profit 66 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-05 11:54:03+00:00 1.0 1295042542 3650 fis result hit 4000 3rd target achieved in just 17 minutes ✅✅✅ one more huge quick profit 35 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-04 07:43:34+00:00 1.0 1295042542 3623 pump result badger start price 5302 weve reached 9063 all target achieved in just 13 minutes✅✅✅✅ huge quick profit 70 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-03 20:06:50+00:00 1.0 1295042542 3561 wrx result hit 3319 3rd target achieved in just 59 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-02 19:04:36+00:00 1.0 1295042542 3540 pump result oxt start price 820 weve reached 1222 one more huge profit 49 to know next pump coin name contact apglobals for premium membership 2021-11-02 16:07:17+00:00 1.0 1295042542 3458 pump result ast start price 403 weve reached 634 all target achieved in 2 days✅✅✅✅ one more huge profit 57 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-10-31 14:55:13+00:00 1.0 1295042542 3375 pump result mana start price 2237 weve reached 3713 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 199 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-30 13:42:07+00:00 1.0 1295042542 3364 pump result vite start price 189 weve reached 257 3rd target achieved in just 15 minutes ✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-10-30 12:20:19+00:00 1.0 1295042542 3357 pump result dlt start price 103 weve reached 197 huge quick profit 91 within 75 hour to know next pump coin name contact apglobals for premium membership 2021-10-30 11:20:38+00:00 1.0 1295042542 3295 pump result mana start price 1423 weve reached 1978 huge quick profit 39 in just 95 hour to know next pump coin name contact apglobals for premium membership 2021-10-29 08:40:52+00:00 1.0 1295042542 3280 pump result gto start price 78 weve reached 108 all targets achieved in just 23 minutes ✅✅✅✅ huge quick profit 115 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-29 04:37:35+00:00 1.0 1295042542 3229 go hit 93 now 3rd target achieved in just 215 hour✅✅✅ huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-27 08:11:18+00:00 1.0 1295042542 3226 pump result 1inch start price 6787 weve reached 10323 fxs binance top gainer all targets achieved in just 12 minutes ✅✅✅✅ huge quick profit 156 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-27 06:38:28+00:00 1.0 1295042542 3122 pump result evx start price 1110 weve reached 2094 huge quick profit 88 to know next pump coin name contact apglobals for premium membership 2021-10-24 17:15:44+00:00 1.0 1295042542 3090 pump result go start price 71 weve reached 98 huge quick profit 38 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-10-23 10:55:37+00:00 1.0 1295042542 3006 pump result auction start price 6090 weve reached 9710 all targets achieved in just 10 hour ✅✅✅✅ huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2021-10-21 16:36:42+00:00 1.0 1295042542 3000 pump result firo start price 1352 weve reached 1885 3rd targets achieved in just 10 minutes ✅✅✅ huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-21 09:08:05+00:00 1.0 1295042542 2978 dnt result hit 376 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 81 using 3x leverage amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-21 04:37:18+00:00 1.0 1295042542 2885 pump result req start price 408 weve reached 586 all targets achieved in just 9 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-10-17 13:00:43+00:00 1.0 1295042542 2880 pump result sys start price 518 weve reached 820 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-10-17 10:54:46+00:00 1.0 1295042542 2819 pump result nu start price 519 weve reached 4649 huge quick profit 792 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 12:54:31+00:00 1.0 1295042542 2814 pump result keep start price 716 weve reached 2010 huge quick profit 180 in just 65 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 10:49:37+00:00 1.0 1295042542 2781 pump result wabi start price 572 weve reached 800 huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-14 15:12:50+00:00 1.0 1295042542 2539 stx result hit 3289 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 56 using 3x leverage amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-09 14:19:35+00:00 1.0 1295042542 2527 pump result klay start price 3197 weve reached 7899 huge quick profit 146 in just 4 minutes to know next pump coin name contact apglobals for premium membership 2021-10-09 13:57:42+00:00 1.0 1295042542 2522 pump result data start price 249 weve reached 406 huge quick profit 63 to know next pump coin name contact apglobals for premium membership 2021-10-09 13:46:08+00:00 1.0 1295042542 2442 juv hit 3790 now 3rd target achieved in just 19 hour✅✅✅ huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-10-07 18:31:17+00:00 1.0 1295042542 2378 ong result hit 3580 3rd target achieved in just 27 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-07 05:30:35+00:00 1.0 1295042542 2323 pump result hive start price 1425 weve reached 3056 huge quick profit 114 in just 42 minutes to know next pump coin name contact apglobals for premium membership 2021-10-06 05:47:27+00:00 1.0 1295042542 2313 ardr result hit 878 3rd target achieved in just 125 hour✅✅✅ one more huge quick profit 36 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-06 05:33:27+00:00 1.0 1295042542 2276 stpt to the moon hit 235 huge quick profit 94 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-05 11:54:24+00:00 1.0 1295042542 2232 pump result ez start price 13499 weve reached 21000 huge quick profit 56 in just 5 hour to know next pump coin name contact apglobals for premium membership 2021-10-03 17:05:08+00:00 1.0 1295042542 2085 pump result stpt start price 117 weve reached 188 huge quick profit 60 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 14:31:40+00:00 1.0 1295042542 2079 pump result poly start price 1333 weve reached 1815 huge quick profit 36 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 08:59:09+00:00 1.0 1295042542 1969 pump result adx start price 1153 weve reached 1688 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-09-26 19:51:12+00:00 1.0 1295042542 1948 pump result lto start price 549 weve reached 850 huge quick profit 164 using 3x leverage in just 34 hour to know next pump coin name contact apglobals for premium membership 2021-09-26 18:19:41+00:00 1.0 1295042542 1910 pump result nuls start price 1071 weve reached 1600 huge quick profit 49 in just 11 hour to know next pump coin name contact apglobals for premium membership 2021-09-25 18:05:50+00:00 1.0 1295042542 1890 pump result celr start price 293 weve reached 447 all targets achieved in just 115 hour ✅✅✅ huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-09-25 05:15:39+00:00 1.0 1295042542 1709 pump result nmr start price 967 weve reached 1377 3rd targets achieved in just 15 hour ✅✅✅ huge quick profit 127 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-09-22 04:57:19+00:00 1.0 1295042542 1677 acm result hit 2768 3rd target achieved in just 8 minutes ✅✅✅ one more huge quick profit 27 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-21 09:06:27+00:00 1.0 1295042542 1607 pump result oax start price 407 weve reached 631 all targets achieved in just 21 hour ✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-19 17:44:48+00:00 1.0 1295042542 1542 om result hit 882 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-09-18 19:44:38+00:00 1.0 1295042542 1532 pump result cfx start price 675 weve reached 1064 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-09-18 17:26:56+00:00 1.0 1295042542 1515 nmr result hit 1298 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 76 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-18 06:18:29+00:00 1.0 1295042542 1377 front result hit 4300 3rd target achieved in just 26 hour✅✅✅ one more huge quick profit 40 amazing pump calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 16:53:20+00:00 1.0 1295042542 1372 quick result hit 13000 3rd target achieved in just 4 hour✅✅✅ one more huge quick profit 32 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 11:28:40+00:00 1.0 1295042542 1267 pump result poly start price 1997 weve reached 1378 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-09-13 06:55:25+00:00 1.0 1295042542 1109 pond result hit 273 all targets achieved in 3 days✅✅✅✅ one more huge profit 50 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-10 15:24:03+00:00 1.0 1295042542 1057 nav result hit 1282 3rd target achieved in 2 days✅✅✅ one more huge profit 37 amazing profits for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 17:41:59+00:00 1.0 1295042542 1037 front result hit 4770 3rd target achieved in just 45 hour✅✅✅ one more huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 16:39:34+00:00 1.0 1295042542 962 elf result hit 2138 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-08 04:30:55+00:00 1.0 1295042542 912 pump result rose start price 501 weve reached 717 all targets achieved in just 55 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-09-07 10:31:52+00:00 1.0 1295042542 847 pump result cdt start price 88 weve reached 137 all targets achieved in just 5 hour✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-06 09:47:46+00:00 1.0 1295042542 816 rose hit 417 finally all targets achieved in just 17 hour✅✅✅✅ huge quick profit 148 using 3x leverage amazing pump calls by our team the longer you wait more you lose profit still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-06 04:56:11+00:00 1.0 1295042542 809 pump result vib start price 155 weve reached 286 huge quick profit 84 to know next pump coin name contact apglobals for premium membership 2021-09-05 17:23:52+00:00 1.0 1295042542 756 idex result hit 195 3rd target achieved in just 15 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-05 08:43:25+00:00 1.0 1295042542 717 ctxc result hit 725 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 32 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-05 04:17:03+00:00 1.0 1295042542 644 om result hit 649 3rd target achieved in just 12 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-03 06:45:21+00:00 1.0 1295042542 606 sys result hit 661 3rd target achieved in just 44 minutes ✅✅✅ one more huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-02 14:02:35+00:00 1.0 1295042542 546 elf result hit 1260 3rd target achieved in just 12 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-01 12:22:40+00:00 1.0 1295042542 483 pump result ar start price 8674 weve reached 14000 huge quick profit 60 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:12:28+00:00 1.0 1295042542 478 pump result rose start price 238 weve reached 308 huge quick profit 30 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:06:49+00:00 1.0 1295042542 439 pump result nas start price 108 weve reached 144 3rd targets achieved in just 17 minutes ✅✅✅ huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2021-08-30 16:22:15+00:00 1.0 1295042542 432 celo hit 22800 finally all targets achieved in 3 days✅✅✅✅ one more huge profit 192 amazing pump calls by our team the longer you wait more you lose profit hope you understood ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-30 14:48:57+00:00 1.0 1295042542 203 aergo result hit 750 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 37 so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-25 06:50:44+00:00 1.0 1295042542 145 firo result hit 1968 3rd target achieved in just 25 hour✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-23 14:54:06+00:00 1.0 1295042542 123 pump result fxs start price 853 weve reached 1240 huge quick profit 45 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-08-23 06:58:40+00:00 1.0 1295042542 117 pump result lrc start price 768 weve reached 1257 huge quick profit 63 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-23 06:51:29+00:00 1.0 1295042542 106 nano result hit 1571 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 19 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-22 14:05:37+00:00 1.0 1178742148 2849 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-05-25 15:51:59+00:00 1.0 1178742148 2848 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on binancecom 2019-05-25 15:40:44+00:00 1.0 1178742148 2847 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-25 15:30:03+00:00 1.0 1178742148 2846 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 14:59:22+00:00 1.0 1178742148 2845 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 14:00:15+00:00 1.0 1178742148 2844 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 13:00:17+00:00 1.0 1178742148 2752 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:45:00+00:00 1.0 1178742148 2747 signal of the day time 1630 gmt exchange binance 2019-03-06 13:02:14+00:00 1.0 1178742148 2740 buy coin sys binance ▶️ tradeindexsymbolsysbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-27 17:00:09+00:00 1.0 1178742148 2739 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-27 16:55:06+00:00 1.0 1178742148 2738 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-27 16:50:07+00:00 1.0 1178742148 2737 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-27 16:40:06+00:00 1.0 1178742148 2736 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-27 16:30:05+00:00 1.0 1178742148 2735 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 16:00:20+00:00 1.0 1178742148 2734 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 15:00:15+00:00 1.0 1178742148 2733 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 13:01:48+00:00 1.0 1178742148 2732 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 10:00:07+00:00 1.0 1178742148 2725 buy coin bqx binance ▶️ tradeindexsymbolbqxbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-24 17:00:21+00:00 1.0 1178742148 2724 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-24 16:55:40+00:00 1.0 1178742148 2723 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-24 16:50:28+00:00 1.0 1178742148 2722 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-24 16:40:10+00:00 1.0 1178742148 2721 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-24 16:30:14+00:00 1.0 1178742148 2720 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 16:00:50+00:00 1.0 1178742148 2719 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 15:00:30+00:00 1.0 1178742148 2718 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 13:01:19+00:00 1.0 1178742148 2717 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 11:00:43+00:00 1.0 1178742148 2713 time has been changed due to high sell in selected coin 1730 pm gmt exchange binance 2019-02-23 16:37:04+00:00 1.0 1178742148 2712 signal of the day time 1630 gmt exchange binance be readyto buy quickly for big profit 2019-02-23 12:51:09+00:00 1.0 1178742148 2429 tdp big announcement there is a rumour that within next 12 days tdp is going to be listed on one of strongest exchanges ranking between 110 as per coinmarketcap rankings a special surprise for yall after the announcement of this new exchange big volume can be enter into tdp and there is also mega airdrop in 12 ratio if you hold 1000 tdp till snapshot time which is 1st december you will receive additional 2000tokens which will surely make tdps price go to moon gradually guys one more time we will say dont miss this opportunity those who missed can still buy it from mercatox and hold it once the new strong exchange listing news comes you can transfer your tdp into that exchange hold till the news date for bigger gains regards 2018-11-08 21:49:25+00:00 1.0 1178742148 2384 go hit 1077as we signalled before pump n signal to buy cheap as possible if u followed profit is urs leaked paid signal 2018-11-05 18:11:14+00:00 1.0 1178742148 2316 pump analysis coin ufr coin rose to 50 approximately from low level our team members banned by yobit chat admin could not rose furtherdue to this ban n account blocked by yobit chat admin as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate i see you all at the next signal 2018-10-19 17:58:32+00:00 1.0 1178742148 2309 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:59+00:00 1.0 1178742148 2295 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 191018 day friday time 5 pm gmt 2018-10-19 05:09:48+00:00 1.0 1178742148 2290 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:43+00:00 1.0 1178742148 2285 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:26+00:00 1.0 1178742148 2265 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:16+00:00 1.0 1178742148 2244 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:36+00:00 1.0 1178742148 2238 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:18+00:00 1.0 1178742148 2223 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:53+00:00 1.0 1178742148 2166 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:50+00:00 1.0 1178742148 2161 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:17+00:00 1.0 1178742148 2146 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:25+00:00 1.0 1178742148 2129 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:10+00:00 1.0 1178742148 2125 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:51+00:00 1.0 1178742148 2111 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:25+00:00 1.0 1178742148 2101 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:12:00+00:00 1.0 1178742148 2095 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:24+00:00 1.0 1178742148 2077 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:15+00:00 1.0 1178742148 2076 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:59+00:00 1.0 1178742148 2072 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:32+00:00 1.0 1178742148 2055 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:02:06+00:00 1.0 1178742148 2052 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:32+00:00 1.0 1178742148 2046 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:10+00:00 1.0 1178742148 2030 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:19+00:00 1.0 1178742148 2027 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:10+00:00 1.0 1178742148 2021 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:36+00:00 1.0 1178742148 2007 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:43+00:00 1.0 1178742148 1982 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:27+00:00 1.0 1178742148 1977 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:45+00:00 1.0 1178742148 1962 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:52+00:00 1.0 1178742148 1959 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:45+00:00 1.0 1178742148 1952 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:43+00:00 1.0 1178742148 1932 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:11:08+00:00 1.0 1178742148 1931 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:07+00:00 1.0 1178742148 1923 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:30+00:00 1.0 1178742148 1910 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:31+00:00 1.0 1178742148 1906 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:41+00:00 1.0 1178742148 1897 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:44+00:00 1.0 1178742148 1883 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:22+00:00 1.0 1178742148 1876 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:21+00:00 1.0 1178742148 1872 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:49+00:00 1.0 1178742148 1859 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:08:03+00:00 1.0 1178742148 1854 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:30+00:00 1.0 1178742148 1848 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:47+00:00 1.0 1178742148 1834 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:53+00:00 1.0 1178742148 1833 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:45+00:00 1.0 1178742148 1827 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:36+00:00 1.0 1178742148 1811 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:48+00:00 1.0 1178742148 1809 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:50+00:00 1.0 1178742148 1802 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:24+00:00 1.0 1178742148 1779 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:41+00:00 1.0 1178742148 1764 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:13+00:00 1.0 1178742148 1737 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:20+00:00 1.0 1178742148 1723 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:21+00:00 1.0 1178742148 1716 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:47+00:00 1.0 1178742148 1700 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:24+00:00 1.0 1178742148 1693 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:27+00:00 1.0 1178742148 1677 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:12+00:00 1.0 1178742148 1666 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:01:13+00:00 1.0 1178742148 1653 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:48+00:00 1.0 1178742148 1652 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:32+00:00 1.0 1178742148 1646 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:44+00:00 1.0 1178742148 1630 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:32+00:00 1.0 1178742148 1611 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:01:11+00:00 1.0 1178742148 1595 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:39+00:00 1.0 1178742148 1589 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:39+00:00 1.0 1178742148 1576 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:10+00:00 1.0 1178742148 1575 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:43+00:00 1.0 1178742148 1568 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:15+00:00 1.0 1178742148 1552 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:17+00:00 1.0 1178742148 1519 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:29+00:00 1.0 1178742148 1509 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:22+00:00 1.0 1178742148 1496 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:07+00:00 1.0 1178742148 1485 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:26+00:00 1.0 1178742148 1470 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:37+00:00 1.0 1178742148 1462 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:20:04+00:00 1.0 1178742148 1452 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:13+00:00 1.0 1178742148 1438 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:51+00:00 1.0 1178742148 1436 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:20:01+00:00 1.0 1178742148 1427 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:56+00:00 1.0 1178742148 1409 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:33+00:00 1.0 1178742148 1407 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:53:01+00:00 1.0 1178742148 1397 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:28+00:00 1.0 1178742148 1384 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:34+00:00 1.0 1178742148 1383 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:08+00:00 1.0 1178742148 1371 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:07+00:00 1.0 1178742148 1358 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:54+00:00 1.0 1178742148 1345 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:01:02+00:00 1.0 1178742148 1330 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:32+00:00 1.0 1178742148 1318 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 16:00:08+00:00 1.0 1178742148 1303 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:06:03+00:00 1.0 1178742148 1283 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:14+00:00 1.0 1178742148 1260 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:46+00:00 1.0 1178742148 1246 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:30+00:00 1.0 1178742148 1232 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:37+00:00 1.0 1178742148 1220 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:26+00:00 1.0 1178742148 1211 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:27+00:00 1.0 1178742148 1199 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:30+00:00 1.0 1178742148 1184 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:40+00:00 1.0 1178742148 1171 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:16:16+00:00 1.0 1178742148 1138 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:01:02+00:00 1.0 1178742148 1125 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:50+00:00 1.0 1178742148 1113 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:50+00:00 1.0 1178742148 1099 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:21:19+00:00 1.0 1178742148 1054 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 16:00:08+00:00 1.0 1178742148 1037 have you been missing out on these huge profits in our last pump on yobit having 600 profit in snpt coin make sure you are ready for the next one this group buys crypto coins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt 2018-07-20 11:48:31+00:00 1.0 1178742148 993 the coin to pump is snpt exchange yobitnet target +300 market snptbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-07-16 15:59:52+00:00 1.0 1178742148 703 1 hour left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 13:59:03+00:00 1.0 1178742148 671 1 hour left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:01:39+00:00 1.0 1178742148 653 we will start pumping here soon most pump and dump groups are lead by some selfish people who are only in it for there own sake in this group i want everyone to profit from the pumps but we are small atm so i will join a collaboration as fair as possible for everyone nobody knows coin name before the pump there is no prepump nobody will dump coin on us you will see quality for discussion you can join 2018-05-16 10:20:53+00:00 1.0 1178742148 4 the steps to success are very simple because many altcoins are easy to manipulate 100 active members required 1️⃣ when the coin is announced each of the 100 members buys 0005 btc worth of it fast this will give us a volume of 05 btc enough for a 2300 increase on yobit but that is not all 2️⃣ with the coins i choose an additional 05 btc volume will raise the coin to heights of 300400 to reach this we will all promote the coin in the yobit trollbox and other big telegram groups for exactly 15 minutes many who will see the coin 300 up will want to invest more 3️⃣ after 15 minutes we all set sell orders part by part and slowly drive the price down by selling we all exit with profit 2018-03-18 12:10:36+00:00 1.0 1215589173 3636 members are asking me to send a big profitable signal fast now im searching for a best coin with good analysis and some big news ill send big signal within 30 minutes everyone make sure to login your binance future account 2021-09-14 15:16:17+00:00 1.0 1215589173 3605 market is getting hot so we have decided to send our signal today our bot is searching for a bullish coin and we will inform you about it within 30 minutes this will be our special signal so make sure you dont miss it ❤️ bestcryptoanalysis 2021-09-03 14:55:50+00:00 1.0 1215589173 3530 must read this after great success of our last signals we decided to send 1 more high potential coin signal for free we are going to send our special high potential coin signal within 30 minutes market seems super bullish right now lets take advantage of it get ready your binance futures account and wait for us ✅ 2021-08-21 14:59:25+00:00 1.0 1215589173 3415 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-11 15:39:50+00:00 1.0 1215589173 3392 must read this after great success of our last calls unfi and ctk we decided to send 1 more high potential coin signal for free we are going to send our special high potential coin signal within 30 minutes get ready with your binance futures account ✅ 2021-08-06 15:21:57+00:00 1.0 1215589173 3334 btc dumped more then 1k and because of this most alts dumped too but now it looks like it gonna pump again i have found a really good dip entry in our one altcoin ✅ i will tell you about coin which is in good dip within 10 minutes 2021-07-30 12:15:37+00:00 1.0 1215589173 3197 buy bel now bel coming out from the accumulation zone and can pump hard you can use 510x leverage targets ⬇️ 1 134 2 137 3 1435 4 15 5 moon 2021-07-14 15:20:59+00:00 1.0 1215589173 3149 blz big breakout here breakout is already confirmed on 4 hour timeframe chart so we are buying blz here dont miss it because breakout always send coin to moon 2021-07-07 16:19:00+00:00 1.0 1215589173 3043 btc is pumping and breaking the resistance we still have 10 minutes to close candle in 4 hour timeframe this can be a fake resistance break so we still need 4 hour candle to close above resistance and next candle must start green too 2021-06-28 07:50:52+00:00 1.0 1215589173 2536 check trx detailed analysis trx is looking little bullish now and also chance of breakout we still have less then 10 minutes left in closing 4 hour timeframe candle if candle close above the triangle and resistance line then we can take entry in trx after successful breakout our targets will be 0132 0139 0146 0156 stoploss below 0118 but remember entry only after successful breakout and after 4 hour candle close best crypto analysis 2021-05-16 11:49:42+00:00 1.0 1215589173 2445 dear all members please note eth and all erc20 coins withdrawal will be stopped for next 1 hour because of eth wallet maintenance no need to panic if you are not able to withdraw your coins withdrawal will start again after 1 hour 5 minutes best crypto analysis 2021-05-13 07:55:12+00:00 1.0 1215589173 2382 btc getting some buying volume now price is staying around 56000 if we get more buying volume then we will reach 57000 and then next support 58500 hope for big pump in btc 2021-05-11 15:49:12+00:00 1.0 1215589173 2347 btc claiming back 55500 support remember if btc close 4 hourly candle above 55500 then only we can consider it a little bullish overall looking bearish still 50 minutes left in closing candle on 4 hour timeframe 2021-05-11 07:10:23+00:00 1.0 1215589173 2291 less then 15 minutes left in snl show starting 2021-05-09 03:19:13+00:00 1.0 1215589173 1995 okay guys lets do one thing today tell me a coin name in comments and a coin name commented by most members will be analysed by me i will analyse that coin and provide chart and my views on that coin so lets start now 2021-04-29 06:25:34+00:00 1.0 1215589173 1874 trb had a really nice pump after our signal in this channel trb hit 66199 which is 90 profit in just few minutes thanks for always believing my signals remember we are 100 free and we dont have vip we will remain free for all you guys 2021-04-24 15:21:33+00:00 1.0 1215589173 687 omg what a big buying wall in nas this bullish whales can make nas pump to 500 within minutes so dont wait fill your bag best crypto analysis 2020-08-07 10:09:21+00:00 1.0 1215589173 685 buy setup for nas nas currently in accumulation zone and volume is continuously increasing it has hit support on 1d chart as shown above pump can happen anytime buy under 350390 sell targets 440 530 600 690 nas is a good coin and i believe on this one best crypto analysis 2020-08-07 09:29:52+00:00 1.0 1215589173 643 im giving you dip entry and you will not get any better price then this 465470 satoshi price is pretty cheap we have already seen a big pump in chr now we will see a bigger pump in coming days in chr because a lot of big news 2020-08-05 16:01:42+00:00 1.0 1215589173 485 i will give you a big signal in 30 minutes this coin have two big events next months so you can buy and hold easy for 30100 profit best crypto analysis 2020-07-29 09:02:24+00:00 1.0 1215589173 337 coin name poabtc buy fast and hold 2020-07-20 15:59:57+00:00 1.0 1215589173 302 wpr looks bullish heres why price hit support line and bounced immediately and it is still in a very nice uptrend the doji candle shows that the buy signal is very positive and it may be a strong rally but it will test resistance once more that is why i recommend you to buy s r flip the volume is increasing significantly when an exhaust gate has made the price pop up immediately indicating that the market is very interested in wpr this is the right time for you to buy it will pump very strongly best crypto analysis 2020-07-17 16:05:34+00:00 1.0 1327820978 3786 15 minutes left screens on and have btc ready 2021-11-23 14:45:58+00:00 1.0 1327820978 3784 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-23 12:00:42+00:00 1.0 1327820978 3777 pump announcement date tuesday november 23 2021 time 1500 gmt exchange binance brd made it nas made it wabi made it sky made it and the list goes on… our pumps have become the biggest most profitable and with the highest volume in the entire market because more and more traders are profiting from them the difference between us and every other pump channel our pumps have absolutely 0 prebuying and price remains 40 60 or even 80 up 15 minutes or more after we begin our pump while pushing even higher get ready for yet another binance pump this time expecting a 350400 profit after our 3rd wave… our whales are ready to make you all ridiculous profits are you ready to take them 2021-11-20 06:56:57+00:00 1.0 1327820978 3724 15 minutes left screens on and have btc ready 2021-10-31 14:45:03+00:00 1.0 1327820978 3722 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:22:26+00:00 1.0 1327820978 3720 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:09+00:00 1.0 1327820978 3717 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:05+00:00 1.0 1327820978 3713 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:05+00:00 1.0 1327820978 3687 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 14:59:46+00:00 1.0 1327820978 3662 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:35+00:00 1.0 1327820978 3647 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:10+00:00 1.0 1327820978 3617 sky update congratulations everyone this is currently our longest sustaining and strongest pump yes… we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy 2021-10-05 15:27:45+00:00 1.0 1327820978 3602 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-05 12:03:33+00:00 1.0 1327820978 3595 pump announcement date tuesday october 5 2021 time 1500 gmt exchange binance youve seen fun pump 50 brd pump 110 nebl pump 93 and even pix pump over 40… if you think those were “great pumps” its because you havent seen what were preparing for you yet our october 5th pump will not only be the largest winner weve had so far expecting at least 200 on it it will also be the largest volume one 400+ btc and the most resilient one as were expecting it to pump without any serious correction between waves this pump is unique because its being organized and backed up by all the largest crypto channels and groups reddit twitter telegram and by the largest whales in the market holding between 500 and 1500 btc each if you missed our previous pumps this is your chance to ride the most profitable ride of the year be ready for it 2021-10-04 15:09:55+00:00 1.0 1327820978 3325 announcement members we will provide you the strong tafa based future signal with in 30 45 minutes transfer your fundsusdt and be ready 2021-08-05 15:06:57+00:00 1.0 1327820978 3131 next post will be coin name 2021-07-05 16:00:25+00:00 1.0 1327820978 3117 hello all members be ready tomorrow with your funds in bitmart exchange pushpump signal timing 4 pm gmt after 13 hours from now 2021-07-05 03:05:09+00:00 1.0 1327820978 3076 quick and huge profit just now doge hit 23300 signal given 23880 profit 24 instantly alice hit 3523 signal given 345 profit 21 instantly srm hit 2578 signal given 2541 profit 15 axs hit 3345 signal given 3295 profit 15 instant total 75 from just 4 calls in some minutes 2021-06-26 08:39:23+00:00 1.0 1327820978 3022 spot buy snt 200210 target 22023024025060 buy and hold it will pump 2021-06-11 18:03:33+00:00 1.0 1327820978 2433 many congratulations egld doen to 169 signal given 195 huge profit 130 on 10x huge profit 65 on 5 with in some minutes enjoy the profit guys 2021-02-08 11:49:16+00:00 1.0 1327820978 1724 as u know after trend defi it make alts big pump there will be a huge boom in the near future as the nft trend dock joining nft soon dont miss it 2020-09-24 07:20:18+00:00 1.0 1327820978 1131 adx adx adx lets 2x spike with our whales adx is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-07-07 16:00:07+00:00 1.0 1327820978 1113 great news for all to celebrate this great ongoing altseason our whales decided to push most awaiting strong ta+fa call which is sitting on fking bottom and waiting for a kick to moon on binance exchange our previous call oax was a pure gem were expecting 2x gain in short term this time as big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date july 7tomorrow exchange binance time 4pm gmt target 2x 2020-07-06 14:02:13+00:00 1.0 1327820978 1039 oax oax oax lets 2x spike with our whales oax is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-06-28 16:00:08+00:00 1.0 1327820978 1038 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call login binance and keep an eye here 2020-06-28 15:55:26+00:00 1.0 1327820978 1025 great news for all to celebrate this great ongoing altseason our whales decided to push a strong tafa based unicorn which is sitting on fking bottom and waiting for a kick to moon on binance exchange were expecting 2x gain in short term this time as big big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date june 28tomorrow exchange binance target 2x 2020-06-27 10:17:38+00:00 1.0 1327820978 897 nebl nebl nebl lets 2x spike with our whales nebl is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy low cap coin 2020-06-14 16:00:08+00:00 1.0 1327820978 889 quick alert our next global fomo call scheduled for today at 4pm gmt as the alt market is on fire more than ready for a new fomo call this free for all call will be big we expect 2x+ spikes and we actually expect a big second wave this time this will be a different massive call with a lot of volume be ready 20 big whales are again working with us but this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready date june 14today exchange binance spike 2x time 4pm gmt global fomo call 2020-06-14 07:21:57+00:00 1.0 1427229166 143 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:03+00:00 1.0 1427229166 118 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:04+00:00 1.0 1427229166 116 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:04+00:00 1.0 1427229166 115 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:05+00:00 1.0 1427229166 114 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:04+00:00 1.0 1427229166 113 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:04+00:00 1.0 1427229166 112 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:04+00:00 1.0 1427229166 111 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:04+00:00 1.0 1427229166 110 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:06+00:00 1.0 1427229166 109 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:04+00:00 1.0 1427229166 108 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:04+00:00 1.0 1427229166 107 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:04+00:00 1.0 1427229166 106 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:04+00:00 1.0 1427229166 105 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:04+00:00 1.0 1427229166 104 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:04+00:00 1.0 1427229166 103 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:04+00:00 1.0 1427229166 94 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:05+00:00 1.0 1427229166 92 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:41+00:00 1.0 1427229166 88 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:46+00:00 1.0 1427229166 84 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:11+00:00 1.0 1427229166 80 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:06+00:00 1.0 1427229166 78 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:05+00:00 1.0 1427229166 77 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:03+00:00 1.0 1427229166 76 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:13+00:00 1.0 1427229166 75 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:33+00:00 1.0 1427229166 73 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:06+00:00 1.0 1427229166 72 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:04+00:00 1.0 1427229166 70 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:02+00:00 1.0 1427229166 68 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:02+00:00 1.0 1427229166 67 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:02+00:00 1.0 1427229166 66 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:04+00:00 1.0 1427229166 65 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:02+00:00 1.0 1427229166 64 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:02+00:00 1.0 1427229166 63 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:03+00:00 1.0 1427229166 61 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:02+00:00 1.0 1427229166 60 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:02+00:00 1.0 1427229166 59 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:02+00:00 1.0 1427229166 58 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:02+00:00 1.0 1427229166 57 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:01+00:00 1.0 1427229166 56 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:02+00:00 1.0 1427229166 55 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:01+00:00 1.0 1427229166 53 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:01+00:00 1.0 1427229166 52 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:49+00:00 1.0 1427229166 51 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:00+00:00 1.0 1427229166 50 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:56+00:00 1.0 1427229166 47 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:00+00:00 1.0 1427229166 45 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:00+00:00 1.0 1427229166 43 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:00+00:00 1.0 1427229166 42 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:00+00:00 1.0 1427229166 41 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:15+00:00 1.0 1427229166 40 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:06+00:00 1.0 1427229166 38 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:05+00:00 1.0 1427229166 35 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:00+00:00 1.0 1427229166 33 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:00+00:00 1.0 1427229166 32 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:00+00:00 1.0 1427229166 30 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:01+00:00 1.0 1427229166 29 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:00+00:00 1.0 1427229166 28 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:01+00:00 1.0 1427229166 27 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:00+00:00 1.0 1427229166 26 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:00+00:00 1.0 1427229166 25 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:00+00:00 1.0 1427229166 24 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:01+00:00 1.0 1427229166 23 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:00+00:00 1.0 1427229166 22 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:00+00:00 1.0 1427229166 21 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:00+00:00 1.0 1427229166 20 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:06+00:00 1.0 1427229166 19 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:00+00:00 1.0 1427229166 17 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:19+00:00 1.0 1427229166 15 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:08+00:00 1.0 1427229166 13 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 16:49:42+00:00 1.0 1427229166 8 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 16:54:38+00:00 1.0 1427229166 4 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 01:27:10+00:00 1.0 1278312262 1265 48 hours left date sunday january 23 2022 time 1500 gmt exchange binance 2 days left for our first and biggest binance pump of the year this time were not expecting anything less than a 300400 gain so be ready 2022-01-21 15:00:03+00:00 1.0 1278312262 1264 new pump announcement date sunday january 23 2022 time 1500 gmt exchange binance the first binance pump of the year is ready and its because we now have an explosion strategy never seen before in the market you know how easy it was last year to make 100200 on our binance pumps… however were now ready to 2x these type of gains have funds ready on your binance account and wait for further instructions were back baby 2022-01-19 15:00:02+00:00 1.0 1278312262 1257 5 minutes left 5 minutes left everyone have your kucoin accounts open and ready because this ride is about to get wild and ridiculously profitable 2022-01-18 14:55:02+00:00 1.0 1278312262 1255 15 minutes left date tuesday january 18 2022 time 1500 gmt exchange kucoin usdt paired screens on and have usdt ready in your kucoin “trading account” 2022-01-18 14:45:02+00:00 1.0 1278312262 1254 1 hour left date tuesday january 18 2022 time 1500 gmt exchange kucoin usdt paired 1 hour left remember our pump instructions and remember the main objective of this pump buying holding and waiting for outside traders to enter our coin before selling 2022-01-18 14:00:02+00:00 1.0 1278312262 1253 3 hours left dont forget to review our kucoin pump instructions and be ready for this move 2022-01-18 12:00:03+00:00 1.0 1278312262 1252 5 youre now ready to pump the coin expected gain and any coin news will be posted in our channel at the scheduled time buy the target coin as soon it is posted all of us buying will begin to in 2022-01-18 11:32:02+00:00 1.0 1278312262 1250 4 on the day of the pump have kucoin open and discordtelegram so you are ready to buy as soon as the coin is posted here is a shortcut to the spot trading market importan 2022-01-18 11:31:03+00:00 1.0 1278312262 1244 less then 24 hours left date tuesday january 18 2022 time 1500 gmt exchange kucoin usdt paired entering the final countdown for our kucoin mega pump dont forget about the most important step to profit from this pump transferring usdt to your kucoin account and having it ready in your “trading account” which is the only place from which you can trade 2022-01-17 16:00:03+00:00 1.0 1278312262 1243 new pump announcement date tuesday january 18 2022 time 1500 gmt exchange kucoin the first pump of the year and what we can expect to be the biggest gainer so far… weve see brd make us 110 nebl 93 wabi 85 and many more however this time were expecting nothing below 400 and the reason is simple a platform update and the biggest whales in the market being on our side this massive pump will be executed on kucoin so have your accounts created and ready and dont miss our next announcements 2022-01-16 15:30:03+00:00 1.0 1278312262 1242 oax update not exactly the pump we expected we had a third party dump on us after the initial pump announcement which pushed oax down and didnt give us all the chance we expected to ride it to our targets were currently holding this coin as we can expect to see a move up higher in the next weeks be ready for further announcements as 2022 will be our most profitable year yet 2021-12-28 15:47:16+00:00 1.0 1278312262 1236 2 minutes left next post is our coin be ready 2021-12-28 14:58:02+00:00 1.0 1278312262 1235 5 minutes left 5 minutes left everyone get ready for the biggest news of the year and for the most profitable one 2021-12-28 14:55:02+00:00 1.0 1278312262 1234 15 minutes left screens on and have btc ready 2021-12-28 14:45:01+00:00 1.0 1278312262 1232 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump buying holding and waiting for outside traders to enter our coin before selling 2021-12-28 14:00:03+00:00 1.0 1278312262 1231 3 hours left pump instructions our pumps have a record of being the strongest and highest volume pumps in the market making the biggest profits for all our members and thats because we all follow this instructions important since our coin is btc paired it means you must have btc in your wallet in order to enter and profit from this pump once this is done read our pump instruction carefully to maximize profits we recommend market buying 5075 of your btc balance worth of our coin at market price to catch the first and strongest wave as low as possible then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up by placing limit orders above 150200 of profit the main objective of this pump is for all our members to make a massive profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-12-28 12:00:02+00:00 1.0 1278312262 1228 24 hours left date tuesday december 28 2021 time 1500 gmt exchange binance get ready that the official countdown has already started in 24 hours youll be making one of the craziest profits of your lives 2021-12-27 15:00:02+00:00 1.0 1278312262 1226 48 hours left date tuesday december 28 2021 time 1500 gmt exchange binance 2 days left for the last and strongest pump of the year get ready for it because were not repeating this in a while 2021-12-26 15:00:03+00:00 1.0 1278312262 1225 new pump announcement date tuesday december 28 2021 time 1500 gmt exchange binance merry christmas to everyone this has been a year full of the most profitable pumps in the entire market and we have even bigger plans coming up… were now getting ready for the highest volume and most profitable pump of the year the final pump of the year… a move that will make every other pump look like just a tiny move our whales are ready for this move and theyll make sure to make this a 300+ pump and keep price levels up for hours to ensure everyone makes the most out of the strongest pump of the year be ready for further announcements 2021-12-25 15:00:02+00:00 1.0 1278312262 1218 5 minutes left the news on this gem will be something weve never seen before in the market making a coinbase partnership seem tiny in comparison… this is gong to be big 2021-12-19 14:55:02+00:00 1.0 1278312262 1217 15 minutes left screens on and have btc ready 2021-12-19 14:45:02+00:00 1.0 1278312262 1214 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump buying holding and waiting for outside traders to enter our coin before selling 2021-12-19 14:00:02+00:00 1.0 1278312262 1213 3 hours left pump instructions our pumps have a record of being the strongest and highest volume pumps in the market making the biggest profits for all our members and thats because we all follow this instructions important since our coin is btc paired it means you must have btc in your wallet in order to enter and profit from this pump once this is done read our pump instruction carefully to maximize profits we recommend market buying 5075 of your btc balance worth of our coin at market price to catch the first and strongest wave as low as possible then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up by placing limit orders above 150200 of profit the main objective of this pump is for all our members to make a massive profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-12-19 12:00:02+00:00 1.0 1278312262 1210 24 hours left date sunday december 19 2021 time 1500 gmt exchange binance get ready that the official countdown has already started in 24 hours youll be making one of the craziest profits of your lives 2021-12-18 15:00:02+00:00 1.0 1278312262 1209 48 hours left date sunday december 19 2021 time 1500 gmt exchange binance 2 days left for what will probably become the biggest move of the entire year set up as many alarms as you need because were not repeating such a move in while 2021-12-17 15:00:02+00:00 1.0 1278312262 1208 less than 72 hours left date sunday december 19 2021 time 1500 gmt exchange binance exactly 3 days left for our strongest and most profitable pump of the year 2021-12-16 15:24:35+00:00 1.0 1278312262 1206 new pump announcement date sunday december 19 2021 time 1500 gmt exchange binance we all know what happens when we get this close to the end of the year… the market becomes crazy and a few gems explode out of nowhere 5x 10x and even 20x or more this is the seasonality were expecting however its not going to send every single alt flying to new highs and thats where our privileged information comes into play we know about one coin that will become the next top gainer sensation a coin that will be making at least 10x in a matter of a few weeks and the best part of it all nobody is even paying attention to it right now so once everyone else realizes it it will be too late… get ready for this gem everyone because youll be the first ones to catch it 2021-12-10 12:01:09+00:00 1.0 1278312262 1193 5 minutes left weve just received classified news stating that todays coin will be signing an exclusive partnership with coinbase when this is confirmed probably in the next few minutes or hours we can expect it to at least 10x… just like brd did or even more 2021-12-05 14:55:02+00:00 1.0 1278312262 1192 15 minutes left screens on and have btc ready as our coin is btc paired 2021-12-05 14:45:02+00:00 1.0 1278312262 1189 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump buying holding and waiting for outside traders to enter our coin before selling 2021-12-05 14:00:02+00:00 1.0 1278312262 1188 3 hours left pump instructions our pumps have a record of being the strongest and highest volume pumps in the market making the biggest profits for all our members and thats because we all follow this instructions important since our coin is btc paired it means you must have btc in your wallet in order to enter and profit from this pump once this is done read our pump instruction carefully to maximize profits we recommend market buying 5075 of your btc balance worth of our coin at market price to catch the first and strongest wave as low as possible then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up by placing limit orders above 150200 of profit the main objective of this pump is for all our members to make a massive profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-12-05 12:00:03+00:00 1.0 1278312262 1184 24 hours left date sunday december 5 2021 time 1500 gmt exchange binance get ready that the official countdown has already started in 24 hours youll be making one of the craziest profits of your lives 2021-12-04 15:00:02+00:00 1.0 1278312262 1183 48 hours left date sunday december 5 2021 time 1500 gmt exchange binance 2 days left for our biggest binance pump of the year thats right exactly 2 days left for our pump get ready because we expect to see one of the higher volumes recorded in our history this pump will easily break the 300 profit mark 2021-12-03 15:00:04+00:00 1.0 1278312262 1182 60 hours left date sunday december 5 2021 time 1500 gmt exchange binance less than 3 days left for the binance pump of the year… be ready to buy the next 10100x gem just as you all saw with brd 2021-12-03 03:00:03+00:00 1.0 1278312262 1181 72 hours left date sunday december 5 2021 time 1500 gmt exchange binance 3 days left for our biggest binance pump of the year 2021-12-02 15:00:04+00:00 1.0 1278312262 1180 new pump announcement date sunday december 5 2021 time 1500 gmt exchange binance we told you about brd weeks before… from our entries down to 300 sats it reached a high of 2931 sats making everyone who held it up to 1000 in net profit we knew about the coinbase acquisition way before anyone else and just like that we have information on another gem thats about to explode potentially making us more than brd did this is a coin nobody is currently watching but has a team working nonstop behind the scenes about to close a deal that could easily send this coin up 1020x as always youll be the first ones to know so be ready… 2021-11-29 13:54:01+00:00 1.0 1278312262 1178 mda update congratulations everyone with an instant volume of almost 200 btc and an initial impulse wave of 57 mda has made more profit in 15 minutes than most other coins in months if they even make any profit this was a decent pump but we could have reached even higher if hidden sell orders were not present probably from developers or because it was prebought by someone were now changing things a bit for our next pump which will not only make each pump 10x as profitable… it will also make our pumps last days or even weeks instead of 1530 minutes stay tuned 2021-11-23 18:37:29+00:00 1.0 1278312262 1169 15 minutes left screens on and have btc ready 2021-11-23 14:45:04+00:00 1.0 1278312262 1166 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-23 14:00:06+00:00 1.0 1278312262 1165 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-23 12:00:04+00:00 1.0 1278312262 1162 24 hours left date tuesday november 23 2021 time 1500 gmt exchange binance the official countdown is officially on once again and were ready to have one of the greatest binance pumps of all time be ready to make the biggest profits of the year 2021-11-22 15:00:04+00:00 1.0 1278312262 1161 48 hours left date tuesday november 23 2021 time 1500 gmt exchange binance 2 days left for the biggest pump of november turn on your push notifications and make sure you dont have our channel on mute were about to have a ride 2021-11-21 15:23:39+00:00 1.0 1278312262 1159 pump announcement date tuesday november 23 2021 time 1500 gmt exchange binance brd made it nas made it wabi made it sky made it and the list goes on… our pumps have become the biggest most profitable and with the highest volume in the entire market because more and more traders are profiting from them the difference between us and every other pump channel our pumps have absolutely 0 prebuying and price remains 40 60 or even 80 up 15 minutes or more after we begin our pump while pushing even higher get ready for yet another binance pump this time expecting a 350400 profit after our 3rd wave… our whales are ready to make you all ridiculous profits are you ready to take them 2021-11-17 16:10:43+00:00 1.0 1278312262 1156 nas update congratulations everyone we told you we were going to have one of the strongest pumps yet with multiple waves after our initial impulse move and thats exactly what we had with a total potential profit of 80 and price holding above 40 in profit for over 15 minutes everyone made amazing profits get ready for further announcements because the next pump will be something weve never seen before 2021-11-17 16:02:34+00:00 1.0 1278312262 1144 15 minutes left screens on and have btc ready 2021-11-14 14:45:05+00:00 1.0 1278312262 1141 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:07+00:00 1.0 1278312262 1138 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:00:34+00:00 1.0 1278312262 1133 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales are ready our team is ready… are you ready 2021-11-13 15:00:39+00:00 1.0 1278312262 1132 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:24:31+00:00 1.0 1278312262 1131 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:01:03+00:00 1.0 1278312262 1130 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:13:11+00:00 1.0 1278312262 1129 brd update what a great pump everyone with a maximum profit of 69 in a matter of minutes you should have all made at least 40 assuming you didnt nail the perfect top for this move… our pump held for over 15 minutes above 40 in profit making each and every member amazing profits were the only ones in the market with high strength sustaining pumps and this is just getting started… be ready for further announcements 2021-11-03 15:45:13+00:00 1.0 1278312262 1119 15 minutes left screens on and have btc ready 2021-10-31 14:45:08+00:00 1.0 1278312262 1117 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:05+00:00 1.0 1278312262 1116 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:09+00:00 1.0 1278312262 1113 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:07+00:00 1.0 1278312262 1111 6 days left date sunday october 31 2021 time 1500 gmt exchange binance less than a week left for one of the biggest pumps binance has ever seen you know what happens with our coins which have over and over made everyone here profits of 50 80 150 and higher… this is no exception so be ready for further announcements 2021-10-25 15:00:07+00:00 1.0 1278312262 1109 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance brd exploded 110 nebl did 93 wabi 85… and the list goes on were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 14 days away 2021-10-17 13:25:36+00:00 1.0 1278312262 1108 wabi update well congratulations everyone wabi exploded from a daily low of 431 sats all the way to a high of 800 sats in a matter of minutes making us a up to 85 in profits whats the difference between our pumps and all other pumps in the market that even after our first second and third waves we had price being help up by both our whales and outside investors who entered the pump after everyone here had the chance to buy and make a great profit be ready for further announcements were just getting started 2021-10-14 20:54:19+00:00 1.0 1278312262 1101 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:06+00:00 1.0 1278312262 1096 15 minutes left screens on and have btc ready 2021-10-14 14:45:07+00:00 1.0 1278312262 1093 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:00:12+00:00 1.0 1278312262 1092 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:10+00:00 1.0 1278312262 1089 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:09+00:00 1.0 1278312262 1083 pump announcement date thursday october 14 2021 time 1500 gmt exchange binance whats the difference between us and all other pump groups on telegram discord and the world that while theyre here to make money for themselves were here to make money for every single one of you our followers how we manage to do this we make sure there is absolutely 0 prebuying once pump starts our whales constantly buy our coin to support price and send it towards the top of binance top gainers we bring in outside volume from fomo buyers on binance and all other platforms and we make sure our pump is executed in waves each wave larger than the previous one… thats how every member here manages to make amazing profits from our pumps without a doubt were the best at what we do and were just getting started with huge sustaining pumps… be ready for our thursday pump 2021-10-07 15:00:10+00:00 1.0 1278312262 1079 pump update congratulations everyone from 2500 sats to a high of over 3800 and holding well over 45 over our entry for half an hour sky has become one of our most profitable pumps for all big pumps binance members we broke 300 btc in volume while our whales kept buying and supporting price and outside buyers entered the market making us all an amazing profit for this pump be ready for our next announcement as were getting something even bigger ready 2021-10-06 21:20:36+00:00 1.0 1278312262 1078 sky update congratulations everyone this is currently our longest sustaining and strongest pump yes… we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy 2021-10-05 15:17:57+00:00 1.0 1278312262 1070 15 minutes left dont forget our instructions to maximize your profits from this pump 2021-10-05 14:45:07+00:00 1.0 1278312262 1068 1 hour left 1 hour left for our biggest pump yet be ready 2021-10-05 14:00:08+00:00 1.0 1278312262 1067 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-05 12:00:07+00:00 1.0 1278312262 1064 24 hours left date tuesday october 5 2021 time 1500 gmt exchange binance 24 hours left for the most massive pump binance has seen… our whales are ready for it let the final countdown begin⏳ 2021-10-04 15:00:07+00:00 1.0 1278312262 1063 48 hours left date tuesday october 5 2021 time 1500 gmt exchange binance our team is ready our whales are ready and our massive push operation is ready to be on every platform and every corner of the internet in 2 days youll be the first ones to know about this freeforall coin and the rest of the world will buy afterwards giving us all the chance of making at least 300 on this pump be ready for further announcements 2021-10-03 15:00:09+00:00 1.0 1278312262 1062 pump announcement date tuesday october 5 2021 time 1500 gmt exchange binance youve seen fun pump 50 brd pump 110 nebl pump 93 and even pix pump over 40… if you think those were “great pumps” its because you havent seen what were preparing for you yet our october 5th pump will not only be the largest winner weve had so far expecting at least 200 on it it will also be the largest volume one 400+ btc and the most resilient one as were expecting it to pump without any serious correction between waves this pump is unique because its being organized and backed up by all the largest crypto channels and groups reddit twitter telegram and by the largest whales in the market holding between 500 and 1500 btc each if you missed our previous pumps this is your chance to ride the most profitable ride of the year be ready for it 2021-09-27 16:00:07+00:00 1.0 1278312262 1047 5 minute left next post is us our coin date saturday september 18 2021 today time 1500 utc in 5 minutes exchange binance coin type spot btc pair big pumps binance™ 2021-09-18 14:55:12+00:00 1.0 1278312262 1046 15 minutes left date saturday september 18 2021 today time 1500 utc in 15 minutes exchange binance coin type spot btc pair big pumps binance™ 2021-09-18 14:45:07+00:00 1.0 1278312262 1045 30 minutes left date saturday september 18 2021 today time 1500 utc in 30 minutes exchange binance coin type spot btc pair 30 minutes left before our mega pump… be ready or be left out this will likely not be repeated in a while after today big pumps binance™ 2021-09-18 14:30:06+00:00 1.0 1278312262 1044 1 hour left date saturday september 18 2021 today time 1500 utc in 1 hours exchange binance coin type spot btc pair you read it correctly 60 minutes for takeoff big pumps binance™ 2021-09-18 14:00:08+00:00 1.0 1278312262 1042 3 hours left date saturday september 18 2021 today time 1500 utc in 3 hours exchange binance coin type spot btc pair have btc ready on binance because were about to double it for you now that the bull market is back this will be easier than ever before… big pumps binance™ 2021-09-18 12:00:06+00:00 1.0 1278312262 1040 6 hours left date saturday september 18 2021 today time 1500 utc in 6 hours exchange binance coin type spot btc pair 6 hours left before one of our most massive pumps yet youve seen fun nebl brd and our other picks explode with highs above 300 and now were expecting that 300 to be our baseline our goal in this freeforall pump is to have every single member of big pumps binance make a massive at least 3x profit and with volumes well above 500 btc it wont be hard at all heres a hint its a btc paired only gem big pumps binance™ 2021-09-18 09:00:06+00:00 1.0 1278312262 1039 12 hours left date saturday september 18 2021 time 1500 utc in 12 hours exchange binance the countdown continues for the biggest pump binance has ever seen we expect this pump to be so precisely executed that after becoming a binance top gainer over 150 well pretty much double the incoming buy volume for it from outside buyers we can all expect making at least 300 in the first 15 minutes of the pump and probably much more as this coin will more than likely 10x or 20x in a matter of months get ready for the wildest ride of your lives date saturday september 18 2021 time 1500 utc in 12 hours exchange binance big pumps binance™ 2021-09-18 03:00:06+00:00 1.0 1278312262 1038 24 hours left date saturday september 18 2021 time 1500 utc exchange binance its time for the official countdown… over 500 btc in total volume are expected in this pump people in every single country of the world know about it and those who dont yet are still going to push this coin higher than ever before get ready to break the 300 profit mark like a hit knife through butter get ready for tomorrows big binance pump date saturday september 18 2021 time 1500 utc exchange binance big pumps binance™ 2021-09-17 15:00:06+00:00 1.0 1278312262 1036 less then 48 hours left date saturday september 18 2021 time 1500 utc exchange binance less than 48 hours left for the pump weve promised and everyone is waiting for what will be special about this mega pump we expect over 2x of our initial push volume to come from outside buyers in the following minutes we all enter expect no less than 300 be ready date saturday september 18 2021 time 1500 utc exchange binance big pumps binance™ 2021-09-16 15:47:26+00:00 1.0 1278312262 1035 pump announcement date saturday september 18 2021 time 1500 utc exchange binance fun pumped 50 brd pumped 110 nebl pumped 93 and atm pumped 15… even though our last pump didnt get the reaction we expected due to hidden walls which were detected early in the pump reason why it was cancelled our 150200 btc volume is ready to make our new pick explode were now getting ready for the official and undisputed 300+ pumps we mentioned before a pump that will bring over 500btc of outsider volume in the game making us all a minimum expected profit of 300 in the first 10 minutes even cz will be asking himself wtf just happened… date saturday september 18 2021 time 1500 utc exchange binance big pumps binance™ 2021-09-13 17:26:24+00:00 1.0 1278312262 1031 pump update due to volume market volatility and chop this pump is being cancelled a profit of 1015 was made pretty much instantly well wait for our next pump for the 700+ signal be ready for further announcements we wont make the greatest pump weve ever had wait for long big pumps binance™ 2021-09-10 16:16:16+00:00 1.0 1278312262 1028 5 minutes left next post is us our coin date friday september 10 2021 today time 1600 utc in 5 mints exchange binance coin type spot btc pair big pumps binance™ 2021-09-10 15:55:05+00:00 1.0 1278312262 1027 15 minutes left todayss coin is a btc paired gem meaning that you must have btc ready in your binance account to get it as soon as the signal is sent we can expect at least 15 minutes of continuous pump without selling so be ready for it date friday september 10 2021 today time 1600 utc in 15 mints exchange binance coin type spot btc pair big pumps binance™ 2021-09-10 15:45:10+00:00 1.0 1278312262 1025 1 hour left we really have no idea how often such opportunities appear in this market but this is certainly one were not willing to miss… 60 minutes left for the highest volume pump weve seen so far date friday september 10 2021 today time 1600 utc in 1 hour exchange binance coin type spot btc pair big pumps binance™ 2021-09-10 15:00:09+00:00 1.0 1278312262 1024 5 hours left be prepared only 5 hours left for our biggest pump yet the minimum goal of this free for all gem is 300 and well… the maximum is well above 700 be prepared to beat the market family date friday september 10 2021 today time 1600 utc in 5 hours exchange binance big pumps binance™ 2021-09-10 11:00:07+00:00 1.0 1278312262 1023 12 hours left with the countdown marking only 12 hours before our biggest pump yet everyone should be getting ready to have their most profitable day of the year date friday september 10 2021 today time 1600 utc in 12 hours exchange binance big pumps binance™ 2021-09-10 04:00:09+00:00 1.0 1278312262 1022 24 hours left date friday september 10 2021 time 1600 utc exchange binance the wait time is almost over… were just 24 hours from the biggest binance pump of the year even cz will ask what the fck happened after seeing our gem explode over 300 this is a free for all pump meaning everyone will have the same opportunity to make ridiculous gains while outside buyers enter the pump be ready for further updates and turn on your notifications date friday september 10 2021 time 1600 utc exchange binance big pumps binance™ 2021-09-09 15:00:08+00:00 1.0 1278312262 1018 7 days left date friday september 10 2021 time 1600 utc exchange binance youve already seen fun brd and nebl make us 50+ and 100+ gains in a matter of minutes and after the success of our previous gems which gave everyone the chance to make ridiculous profits were starting the countdown for the biggest pump weve ever had we expect freeforall pump to make each and every one of us at least 300 reaching a potential high of over 700 the market has never seen something like this so get ready and tighten your seatbelts date friday september 10 2021 time 1600 utc exchange binance big pumps binance™ 2021-09-03 15:00:09+00:00 1.0 1278312262 1016 pump announcement date friday september 10 2021 time 1600 utc exchange binance just as we promised… fun made us over 50 brd made us 110 and nebl made a pretty decent 93 and now were getting ready for what will be our best organized biggest and highest volume pump yet nobody knows the coin not even our team it will be defined second before the pump making this a freeforall mega pump expect to make no less than 3x on this beast… be prepared for further announcements date friday september 10 2021 time 1600 utc exchange binance big pumps binance™ 2021-08-28 13:14:06+00:00 1.0 1278312262 1015 pump announcement our latest pump just made an instant 93 however it wasnt as strong as we expected it to be it seems we got a leaker between us and the coin got prebought before our official announcement our next pump is expected to make us at least 3x what this pump made making it a freeforall mega pump just be alert for further announcements and congrats for even the tiny profits today we love you all❤️ big pumps binance™ 2021-08-24 15:56:55+00:00 1.0 1278312262 1011 5 minutes left next post is us our coin date tuesday august 24 2021 today time 1500 utc in 5 mints exchange binance coin type spot btc pair 2021-08-24 14:55:09+00:00 1.0 1278312262 1009 15 minutes left have your binance account logged in and be ready to make at least a 7x profit on spot… our coin is just btc paired so have btc ready date tuesday august 24 2021 today time 1500 utc in 15 mints exchange binance coin type spot btc pair 2021-08-24 14:45:09+00:00 1.0 1278312262 1006 1 hour left be prepared you really dont want to watch this from the sidelines the coin is a btc pair only meaning it can only be purchased with btc so hurry and get that btc bag ready date tuesday august 24 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-24 14:00:07+00:00 1.0 1278312262 1005 3 hours left 3 hours left for the 700+ pump we told you about have btc in you binance account get some caffeine in your system and hold on tight… because its going to explode date tuesday august 24 2021 today time 1500 utc in 3 hours exchange binance 2021-08-24 12:00:08+00:00 1.0 1278312262 1003 5 hours left 5 hours left for the pump announcement of the year this beast is expected to make all other pumps so far bite the dust by far date tuesday august 24 2021 today time 1500 utc in 5 hours exchange binance 2021-08-24 10:00:10+00:00 1.0 1278312262 1002 24 hours left date tuesday august 24 2021 time 1500 utc exchange binance 24 hours left for our minimum 7x pump this time weve got a coin so good that after it starts moving nothing will be able to stop it it will break through every single resistance short mid and long term as it builds momentum and creates a wave of outside buyers in binance be ready for further updates and turn on your notifications date tuesday august 24 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-23 15:00:06+00:00 1.0 1278312262 1000 pump announcement date tuesday august 24 2021 time 1500 utc exchange binance you witnessed our fun pump make over 50 and our brd pump make over 110 in a matter of minutes everyone had the chance to ride this free for all wave thats why we want to congratulate you all now we dont have time to lose and profits wont wait for those getting left out of these ridiculously profitable moves… thats why were here to announce our next mega pump this one will easily make a 300 move within the first few hours and could reach 10x that in a matter of weeksmonths so be prepared youll know more about whats coming in the next few days date tuesday august 24 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-18 15:22:39+00:00 1.0 1278312262 989 15 minutes left next post is us our coin date tuesday august 17 2021 today time 1500 utc in 15 mints exchange binance 2021-08-17 14:45:06+00:00 1.0 1278312262 987 1 hour left yes 60 minutes left for the move of the year youre either riding it or regretting it so be prepared date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-17 14:00:06+00:00 1.0 1278312262 986 3 hours left 3 hours left for the biggest pump of the year have btc in you binance account get yourself some coffee and tighten your seatbelt… because were going for a ride date tuesday august 17 2021 today time 1500 utc in 3 hours exchange binance 2021-08-17 12:00:08+00:00 1.0 1278312262 984 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance 24 hours left for the biggest pump of the year as you already know the pump will take place on binance just as a tip its a btc only spot no leverage pair so have btc ready on your spot binance account and be prepared for the 300+ steady pump weve been waiting for too long date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-16 15:00:06+00:00 1.0 1278312262 983 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance 48 hours left for the biggest pump that has ever been seen on binance be ready for further announcements and dont forget to turn on your push notifications date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-15 15:00:07+00:00 1.0 1278312262 982 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance 96 hours left for the biggest pump that has ever been seen on binance the pump will be a free for all meaning everyone will get the coin at exactly the same time note pump time has been changed to 1500 utc so be ready and hold on tight because this will easily be a 300 steady pump that will remain up for hours if not days date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-13 15:01:38+00:00 1.0 1278312262 968 15 minutes left —btc our next post will be the coin name date monday august 2 2021 today time 1200 utc in 15 minutes 2021-08-02 11:45:06+00:00 1.0 1278312262 953 coin cotiusdt long exchange binance lev 13x targets 1 2 3 4 and 5 1480✅ average entry 0105 profit at 5x lev 3 final targets to go taking most profit here cheers inner circle big pumps binance™ 2021-07-31 07:58:01+00:00 1.0 1278312262 950 coin xtzusd long exchange binance lev 35x targets 1 2 3 4 and 5 300✅ average entry 225 1647 profit at 3x lev reached a high of 311 right after signaling that the real power of big pumps binance big pumps binance™ 2021-07-30 20:28:03+00:00 1.0 1278312262 941 coin ltcusdt long exchange binance lev 35x targets 3 4 5 and 6 136✅ average entry 10875 742 profit at 3x lev knowing things before they happen is a seriously profitable way of running this market big pumps binance™ 2021-07-29 06:15:07+00:00 1.0 1278312262 935 coin btcusd long exchange binance bitstamp lev 58x targets 1 2 3 4 5 6 and 7 37500✅ average entry 30878 172 profit at 8x lev probably the most perfect bottom catch weve ever seen cheers insiders big pumps binance™ 2021-07-28 06:20:02+00:00 1.0 1278312262 929 coin ontusdt long exchange binance lev 35x targets 4 5 and 6 070✅ average entry 0562 1227 profit at 5x lev over 2x profits on this low leverage rocket cheers inner circle big pumps binance™ 2021-07-27 10:51:02+00:00 1.0 1278312262 926 coin dodousdt exchange binance lev 13x targets 2 3 and 4 108✅ average entry 0804 103 profit at 3x lev we told you first… dodo not getting extinct yet big pumps binance™ 2021-07-26 17:03:32+00:00 1.0 1278312262 923 coin bnbusdt exchange binance lev 35x targets 1 2 and 3 320✅ average entry 29640 398 profit at 5x lev first 3 targets destroyed and ready for more awesome work inner circle big pumps binance™ 2021-07-26 05:39:35+00:00 1.0 1278312262 904 coin dodousdt exchange binance lev 13x going again in this rocket expecting a reach of at least our 165 resistance in the next couple of days buy 080 087 sell 090 093 099 108 118 128 138 150 165 180 200 230 270 310 350 390 444 sl below 0623 big pumps binance™ 2021-07-22 19:14:09+00:00 1.0 1278312262 889 coin icxusdt exchange binance lev 13x targets 3 4 5 6 and 7 105✅ average entry 0688 157 profit at 3x lev with a high of 107 icx has become one our greatest short term winners… while the rest of the market keeps bleeding were winning big pumps binance™ 2021-07-19 19:07:29+00:00 1.0 1278312262 884 coin funusdt exchange binance lev 13x one of the best patterns weve seen in months expecting at least a 20 in the next few days buy 0015 00165 sell 00170 00180 00190 00200 00220 00250 00300 00350 00400 00480 00560 00680 sl below 0011107 big pumps binance™ 2021-07-18 20:48:04+00:00 1.0 1278312262 880 coin axsusdt short exchange binance lev 35x targets 4 5 6 7and 8 1750✅ average entry 2783 2951 profit at 5x lev 3 final targets to go taking most profit here cheers inner circle big pumps binance™ 2021-07-17 20:32:22+00:00 1.0 1278312262 876 coin aliceusdt exchange binance lev 13x targets 1 2 3 4 5 6 7 and 8 850✅ average entry 562 157 profit at 3x lev reached a high of 857 not bad while the rest of the market is collapsing on itself… well always win big pumps binance™ 2021-07-16 17:26:29+00:00 1.0 1278312262 854 coin ontusdt exchange binance lev 35x get ready for it inner circle ont is not only one of the few fundamentally strong and high long term potential coins… its also getting some news this week buy 064 069 sell 071 074 078 082 088 096 106 116 126 sl below 05796 big pumps binance™ 2021-07-13 17:08:07+00:00 1.0 1278312262 851 coin dodousdt exchange binance lev 13x targets 1 2 3 4 and 5 132✅ average entry 0972 107 profit at 3x lev over 100 on one of our fastest and most explosive gems this month congrats inner circle big pumps binance™ 2021-07-12 17:55:03+00:00 1.0 1278312262 826 coin axsusdt short exchange binance lev 35x targets 1 2 3 4 5 6 7 and 8 1240✅ average entry 1569 132 profit at 5x lev permabulls and permabears will eventually get fcking rekt… were not here for a cause were here to make money big pumps binance™ 2021-07-08 17:05:06+00:00 1.0 1278312262 823 coin uniusdt exchange binance lev 13x targets 1 2 3 4 5 and 6 2250✅ average entry 1607 98 profit at 3x lev whats that a 2x profit without any effort and low leverage thats just how our inner circle doing their thing again big pumps binance™ 2021-07-08 09:53:01+00:00 1.0 1278312262 803 coin btcusdt exchange binance lev 510x targets 1 and 2 34500✅ average entry 33037 442 profit at 10x lev trust us catching bottoms is not easy but were masters in the art of nailing them big pumps binance™ 2021-07-03 20:42:06+00:00 1.0 1278312262 790 coin flmusdt exchange binance lev 13x after making us 30 flm is ready for its next move laddering orders for this rocket buy 030 034 sell 0390 0405 0420 0435 0455 0490 0530 0570 0620 0700 0800 0950 1240 sl below 02422 big pumps binance™ 2021-07-01 20:10:56+00:00 1.0 1278312262 785 coin axsusdt exchange binance lev 13x target 7 8 9 10 and 11 550✅ average entry 326 206 profit at 3x lev just 2 more targets to go on this 3x win that took us 10 days from start to finish cheers inner circle big pumps binance™ 2021-06-30 22:48:54+00:00 1.0 1278312262 780 coin btcusdt exchange binance lev 35x targets 3 4 and 5 36500✅ average entry 30293 1024 profit at 5x lev reached a high of over 36500 after we told you about an upcoming pump this week congrats inner circle you didi it again big binance pumps™ 2021-06-30 04:13:03+00:00 1.0 1278312262 777 coin atomusdt exchange binance lev 13x target 1 2 3 4 5 6 7 8 9 and 10 1150✅ average entry 817 1223 profit at 3x lev 10 fking targets destroyed after perfectly filling each and every order we had placed we dont have a crystal ball… we have the best traders in the world big pumps binance™ 2021-06-29 18:42:01+00:00 1.0 1278312262 728 coin ethusdt short exchange binance lev 13x targets 1 2 3 and 4 2050✅ average entry 225710 292 profit at 3x lev low leverage beast we knew was going for a short term liquidation downturn cheers inner circle big pumps binance™ 2021-06-20 20:28:38+00:00 1.0 1278312262 715 coin bchusdt exchange binance lev 13x target 1 2 3 4 5 and 6 650✅ average entry 560 482 profit at 3x lev filled our entry to the fucking cent before being moderately shilled by the mcafee team yes uncle john works from prison more than all other admins combined sent 4 days ago to our inner circle big pumps binance™ 2021-06-17 05:01:53+00:00 1.0 1278312262 705 coin ethusdt exchange binance lev 35x target 3 2580✅ average entry 2451 263 profit at 5x lev reached a high of 2640 just 10 short of our next target which we still expect to reach short term cheers inner circle big pumps binance™ 2021-06-15 19:19:54+00:00 1.0 1278312262 645 coin axsusdt reentry exchange binance lev 13x targets 1 2 3 and 4 510✅ average entry 434 525 profit at 3x lev just reached 5299 on our refresh setup less than a fucking tenth of a penny from 530 and just 10 cents away from our next target riding this inner circle pick to the stratosphere big pumps binance™ 2021-06-01 06:28:24+00:00 1.0 1278312262 634 coin xtzusdt exchange binance lev 13x targets 4 405✅ average entry 283 139 profit at 3x lev 3 pennies away from our next target and still holding like on its first day big pumps binance™ 2021-05-28 03:15:23+00:00 1.0 1278312262 632 coin uniusdt exchange binance lev 35x targets 5 28✅ average entry 2072 175 profit at 5x lev reached a high of 2942 placing our uni less than a dollar away from our 6th and high short term target what a ride inner circle big pumps binance™ 2021-05-27 05:24:28+00:00 1.0 1278312262 625 coin btcusd exchange binance bitstamp lev 15x targets 1 2 and 3 39000✅ average entry 32939 92 profit at 5x lev and thats how we always manage to win the competitive edge of knowing things before everyone else big pumps binance™ 2021-05-25 06:52:38+00:00 1.0 1278312262 620 coin btcusd exchange binance bitstamp lev 15x targets 1 and 2 37500✅ average entry 32980 685 profit at 5x lev exactly what we told our inner circle would be out next move when we tell you were catching the bottom were fucking catching the bottom big pumps binance™ 2021-05-24 18:36:46+00:00 1.0 1278312262 616 coin ltcusdt exchange binance lev 35x targets 1 2 3 and 4 310 average entry 308 74 profit at 5x lev not bad inner circle not bad at all big pumps binance™ 2021-05-19 04:25:33+00:00 1.0 1278312262 607 coin cotiusdt exchange binance lev 13x targets 4 and 5 45✅ average entry 308 138 profit at 3x lev went all the way up to 47 before confirming its new reversal were going to new highs guys big pumps binance™ 2021-05-16 02:15:03+00:00 1.0 1278312262 606 coin atombtc exchange binance lev 13x targets 1 2 3 4 5 6 and 7 5600✅ average entry 3966 124 profit at 3x lev trade refreshed about a week ago to our vips went all the way up to 5626 sats enough to make our day big pumps binance™ 2021-05-15 04:50:48+00:00 1.0 1278312262 597 coin eosusdt exchange binance lev 13x high reached 1490✅ average entry 501 592 profit at 3x lev not even john himself expected this enjoy the profits and on to the next john mcafee™ pumps 2021-05-13 04:33:03+00:00 1.0 1278312262 585 coin ontusdt exchange binance lev 13x target 4 5 6 7 and 8 280✅ average entry 1725 188 profit at 3x lev did anyone hear a fucking explosion never mind it was just ont john mcafee™ pumps 2021-05-08 17:28:01+00:00 1.0 1278312262 583 coin atombtc exchange binance lev 13x targets 3 4 5 and 6 5200✅ average entry 3807 147 profit at 3x lev we can hear the sound of you all counting hundred dollar bills from here cheers john mcafee™ pumps 2021-05-08 06:17:29+00:00 1.0 1278312262 546 coin litusdt exchange binance lev 13x currently ranging at a 869 high lit looks like its about to explode again our next resistance and target from our current range is at 917 which shouldt take more than 8 hours to be broken is this beast maintains its market strength john mcafee™ pumps 2021-04-30 04:05:55+00:00 1.0 1278312262 544 coin uniusdt exchange binance lev 13x high reached 44✅ average entry 3341 95 profit at 3x lev not yet reached our next target 45 but taking a bit more profit from this mega pump around 44 cheers inner circle john mcafee™ pumps 2021-04-29 20:11:02+00:00 1.0 1278312262 467 coin ctsi exchange binance lev 1x targets 3 1050✅ 634 profit at 1x lev 1552 reached in this mcafee mega pump this was a long term hold we held for less than 2 months and it clearly made our 2021 john mcafee™ pumps 2021-04-05 19:52:41+00:00 1.0 1278312262 462 coin xtzusdt exchange binance lev 4x targets 3 4 and 5 520✅ average entry 444 68 profit at 1x lev our xtz reached a high of 541 after our second successful trade on it its just how we roll john mcafee™ pumps 2021-04-04 05:59:22+00:00 1.0 1278312262 449 coin qtumbtc exchange binance lev 1x high reached 1863✅ average entry 993 876 profit at 1x lev broke its previous high and now heading higher just as we told you it would congrats inner circle john mcafee™ pumps 2021-04-01 17:57:04+00:00 1.0 1278312262 426 coin atomusdt exchange binance lev 13x target 3 20✅ average entry 1718 4924 profit at 3x lev booom another amazing mcafee win less than 4 days to our 3rd target john mcafee™ pumps 2021-03-29 00:37:15+00:00 1.0 1278312262 406 coin gobtc exchange binance lev 1x our mega pump go is getting on track again remember we bought this one when below 40 and when nobody gave a fuck about a low market cap coin such as go it has now reached a high of 120 again making us a 3x trade already and should break our previous 135 high if it manages to hold above 94 go doesnt care about what btc does it simple explodes when btc bleeds and the entire market is buying thats the beauty of our inner circle john mcafee™ pumps 2021-03-25 17:12:18+00:00 1.0 1278312262 383 coin trxusdt target 6 0065✅ average entry 0048 126 profit at 3x lev fucking wow reached a high of 0068 after we entered it below 0048 it doesnt matter where john mcafee is right now he can still pump a 4 billion+ coin more than 42 john mcafee™ pumps 2021-03-21 02:40:45+00:00 1.0 1278312262 379 coin kmdusdt exchange binance lev 1x targets 3 200✅ average entry 1088 84 profit at 1x lev 84 profit made on this beast weve been telling you for so long that this coin was going to be the next go and now its behaving as such john mcafee™ pumps 2021-03-20 16:28:33+00:00 1.0 1278312262 377 coin stmxbtc exchange binance all targets 141✅ 1662 profit at 1x lev 176x trade in less than 2 months we told you that we expected a much larger gain from this mega pump after mid term consolidation every 1000 bought of this beast has just become 17600 john mcafee™ pumps 2021-03-20 15:58:14+00:00 1.0 1278312262 373 coin atomusdt exchange binance lev 15x target 4 2380✅ average entry 1773 191 profit at 5x lev we told you atom had confirmed its short term bullish breakout congrats to everyone who took this baby for a ride john mcafee™ pumps 2021-03-19 03:19:23+00:00 1.0 1278312262 370 coin kmdusdt exchange binance lev 1x targets 1 and 2 175✅ average entry 1088 71 profit at 1x lev founders circle position from march 6 baaaaang didnt we tell you about 10 times to buy a bag of this beast congrats inner circle you just did it again if everything goes as planned we expect kmd to become our next go john mcafee™ pumps 2021-03-18 14:20:31+00:00 1.0 1278312262 363 coin xtzusdt exchange binance lev 4x xtz has been one of the most bullish coins for the last couple of hours we can expect a rapid volume gain and bullish volatility spike soon adding to this positions is not a bad idea at cmp current market prices in case we dip we would average down to 36 which is likely not getting touched john mcafee™ pumps 2021-03-17 15:53:17+00:00 1.0 1278312262 362 coin atomusdt exchange binance lev 15x atom has now reached a high of 22 and confirmed its short term breakout we told you to buy atom so many times it should be a part of everyones portfolio congrats inner circle john mcafee™ pumps 2021-03-16 23:05:10+00:00 1.0 1278312262 357 coin atomusdt exchange binance lev 15x fib retest + strong fundament potential this coin is going to be chilled soon jost dont go all in buy 1704 1804 sell 1890 1950 21 2380 2650 32 38 45 open sl below 134 john mcafee™ pumps 2021-03-15 16:56:24+00:00 1.0 1278312262 339 coin gobtc exchange binance lev 1x accumulating this undervalued boy technically and fundamentally we should have a very strong move soon buy 29 38 sell 45 50 59 75 94 141 197 open sl below 15 john mcafee™ pumps 2021-03-11 18:07:00+00:00 1.0 1278312262 333 coin scusdt exchange binance lev 1x fib scalp very high probablity and strong fundamentals one of the best setups we will have if we reach that level buy 7500 7900 sell 8100 8600 9400 10300 11800 14300 sl below 6540 john mcafee™ pumps 2021-03-11 01:42:57+00:00 1.0 1278312262 325 coin rsrusdt exchange binance lev 1x target 3 80✅ average entry 563 473 profit at 1x lev one more mcafee banger founders circle buy first inner circle second our loyal free members next twitter next and fomo fuckfaces last everyone wins except the fuckfaces john mcafee™ pumps 2021-03-09 02:05:02+00:00 1.0 1278312262 286 coin eosusdt exchange binance lev 15x triple bottom eth strength and march just starting pump it buy 342 360 sell 370 380 395 415 435 480 560 sl below 308 john mcafee™ pumps 2021-03-03 01:52:38+00:00 1.0 1278312262 280 coin xtzusdt exchange binance lev 14x triple bottom eth strength and march just starting pump it buy 350 365 sell 370 380 400 440 490 555 625 675 sl below 305 john mcafee™ pumps 2021-03-02 02:06:04+00:00 1.0 1278312262 215 coin ardrbtc exchange binance lev 3x accumulating here expecting big movement between today and tomorrow buy 265 280 sell 300 340 380 440 500 sl below 247 john mcafee™ pumps 2021-02-15 15:51:45+00:00 1.0 1278312262 196 mega pump 105 coin ctsi exchange binance date february 10 2021 time 1830 utc accumulate around 200 sell targets 1 500 150 profit 2 800 300 profit 3 1050 425 profit instructions 1 ladder your buy orders accumulate as much of this coin as you can at current prices and wait for the pump once the mega pump starts drive the price up by not selling and hyping other buyers on the platform and social media 2 once we reach our first 2 targets people will start watching price soar and enter this coin dont sell until we reach our targets get ready with btc in your binance accounts inncer circle this is baby is about to boom john mcafee™ pumps 2021-02-11 03:38:54+00:00 1.0 1278312262 166 coin akrobtc targets 1 2 and 3 300✅ 400 profit at 1x lev damn if 3x leverage was used it would have become a fucking 1200 trade congratulations inner circle this mega pump will be remembered by everyone john mcafee™ pumps 2021-02-05 01:31:54+00:00 1.0 1278312262 165 mega pump 104 coin akro exchange binance date february 5 2021 time 1600 utc accumulate 50 65 sell targets 1 150 150 profit 2 200 234 profit 3 300 400 profit instructions ladder your buy orders once mega pump become public keep pushing price up and create hype on platform and social media once we reach our first 2 targets people will start watching price soar and enter this coin dont sell until we reach our targets get ready with btc in your binance accounts inncer circle this is about to get crazy john mcafee™ pumps 2021-02-05 01:31:46+00:00 1.0 1278312262 158 mega pump 103 sleeping beauty about to get a lift do not share coin stmx exchange binance date february 2 2021 time 1200 utc accumulate 6 10 sell targets 1 20 150 profit 2 30 275 profit 3 45 463 profit 4 70 775 profit instructions ladder your buy orders and gradually sell of your holdings as price starts to climb this coin will be mooning extremely fast probably lagging the entire platform so be prepared enjoy the ride inner circle 1x leverage used john mcafee™ pumps 2021-02-03 15:33:41+00:00 1.0 1278312262 138 mega pump 102 dogecoin began as a simple joke around the time bitcoin emerged tomorrow we will all laugh to this joke douling in price coin doge exchange binance date january 28 2020 time 0400 utc buy 24 28 sell targets 1 45 88 profit 2 60 150 profit 3 90 275 profit 4 120 400 profit instructions ladder your buy orders and gradually sell of your holdings as price starts to climb this coin will be mooning extremely fast probably lagging the entire platform so be prepared enjoy the ride inner circle you can use up to 5x lev on this one but be careful john mcafee™ pumps 2021-01-28 14:35:10+00:00 1.0 1278312262 24 mega pump 101 agrello is one of the most underrate coins out there it has one of the strongest customer authentication and digital identity solutions in the market it just needs a little push to get where its potential lies coin dlt exchange binance date december 26 2020 time 2100 utc buy 140 165 sell targets 1 300 100 profit 2 540 260 profit 3 780 420 profit 4 1200 700 profit instructions ladder your buy orders and gradually sell of your holdings as price starts to climb this coin will be mocing extremely fast probably lagging the entire platform so be prepared enjoy the ride john mcafee™ pumps 2020-12-26 23:44:48+00:00 1.0 1152809569 3363 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:51+00:00 1.0 1152809569 3361 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-11-09 16:55:16+00:00 1.0 1152809569 3360 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:11+00:00 1.0 1152809569 3359 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:13+00:00 1.0 1152809569 3358 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:19+00:00 1.0 1152809569 3357 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:24+00:00 1.0 1152809569 3356 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:30:20+00:00 1.0 1152809569 3355 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:56+00:00 1.0 1152809569 3353 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 13:01:52+00:00 1.0 1152809569 3352 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 10:00:36+00:00 1.0 1152809569 3350 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 08:00:52+00:00 1.0 1152809569 3349 ℹ coin signal information ℹ date friday 09112018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-11-09 07:45:21+00:00 1.0 1152809569 3347 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09112018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-11-09 06:21:10+00:00 1.0 1152809569 3346 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 091118 day friday time 5 pm gmt 2018-11-09 06:14:47+00:00 1.0 1152809569 3323 go hit 1077as we signalled before pump n signal to buy cheap as possible if u followed profit is urs leaked paid signal 2018-11-05 18:10:57+00:00 1.0 1152809569 3272 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-27 17:01:40+00:00 1.0 1152809569 3271 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-27 16:55:21+00:00 1.0 1152809569 3270 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-27 16:50:25+00:00 1.0 1152809569 3269 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-27 16:40:21+00:00 1.0 1152809569 3268 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-27 16:30:34+00:00 1.0 1152809569 3267 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 16:00:30+00:00 1.0 1152809569 3266 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:30:21+00:00 1.0 1152809569 3265 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:00:34+00:00 1.0 1152809569 3264 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 13:00:28+00:00 1.0 1152809569 3263 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 10:00:37+00:00 1.0 1152809569 3262 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 08:04:25+00:00 1.0 1152809569 3261 ℹ coin signal information ℹ date saturday 27102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-27 04:04:26+00:00 1.0 1152809569 3260 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-27 03:30:59+00:00 1.0 1152809569 3258 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 271018 day saturday time 5 pm gmt 2018-10-26 16:54:58+00:00 1.0 1152809569 3249 pump analysis coin ufr coin rose to 50 approximately from low level our team members banned by yobit chat admin could not rose furtherdue to this ban n account blocked by yobit chat admin as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate i see you all at the next signal 2018-10-19 17:58:29+00:00 1.0 1152809569 3242 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:56+00:00 1.0 1152809569 3241 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:12+00:00 1.0 1152809569 3240 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-19 16:50:13+00:00 1.0 1152809569 3239 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-19 16:40:10+00:00 1.0 1152809569 3238 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-19 16:30:09+00:00 1.0 1152809569 3237 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 16:00:42+00:00 1.0 1152809569 3236 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:30:12+00:00 1.0 1152809569 3235 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:00:24+00:00 1.0 1152809569 3234 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 13:00:34+00:00 1.0 1152809569 3233 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 10:00:27+00:00 1.0 1152809569 3232 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:32+00:00 1.0 1152809569 3231 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-19 05:31:47+00:00 1.0 1152809569 3230 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 191018 day friday time 5 pm gmt 2018-10-19 05:09:45+00:00 1.0 1152809569 3229 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:40+00:00 1.0 1152809569 3224 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:23+00:00 1.0 1152809569 3223 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-18 16:55:13+00:00 1.0 1152809569 3222 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-18 16:50:11+00:00 1.0 1152809569 3221 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-18 16:40:09+00:00 1.0 1152809569 3220 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-18 16:32:02+00:00 1.0 1152809569 3219 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 16:02:15+00:00 1.0 1152809569 3218 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:30:10+00:00 1.0 1152809569 3217 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:00:23+00:00 1.0 1152809569 3216 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 13:01:35+00:00 1.0 1152809569 3215 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 10:01:08+00:00 1.0 1152809569 3214 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 08:00:33+00:00 1.0 1152809569 3213 ℹ coin signal information ℹ date thursday18102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-18 03:34:47+00:00 1.0 1152809569 3212 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18102018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-18 01:34:36+00:00 1.0 1152809569 3211 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:12+00:00 1.0 1152809569 3199 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:33+00:00 1.0 1152809569 3193 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:15+00:00 1.0 1152809569 3191 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:10+00:00 1.0 1152809569 3190 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-13 16:50:11+00:00 1.0 1152809569 3189 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:16+00:00 1.0 1152809569 3188 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-13 16:30:11+00:00 1.0 1152809569 3187 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:30+00:00 1.0 1152809569 3186 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:30:14+00:00 1.0 1152809569 3185 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:22+00:00 1.0 1152809569 3184 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 13:00:20+00:00 1.0 1152809569 3182 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 10:01:43+00:00 1.0 1152809569 3181 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 09:02:14+00:00 1.0 1152809569 3180 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 06:11:27+00:00 1.0 1152809569 3179 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:49+00:00 1.0 1152809569 3165 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:55+00:00 1.0 1152809569 3161 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:34+00:00 1.0 1152809569 3159 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:30+00:00 1.0 1152809569 3158 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:25+00:00 1.0 1152809569 3157 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:18+00:00 1.0 1152809569 3156 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:25+00:00 1.0 1152809569 3155 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:32+00:00 1.0 1152809569 3154 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:23+00:00 1.0 1152809569 3153 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:15+00:00 1.0 1152809569 3152 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:11+00:00 1.0 1152809569 3151 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:30+00:00 1.0 1152809569 3150 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:11+00:00 1.0 1152809569 3149 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:55:03+00:00 1.0 1152809569 3148 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:32+00:00 1.0 1152809569 3147 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:53+00:00 1.0 1152809569 3146 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:48+00:00 1.0 1152809569 3141 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:14+00:00 1.0 1152809569 3140 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:20+00:00 1.0 1152809569 3139 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:10+00:00 1.0 1152809569 3138 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:13+00:00 1.0 1152809569 3137 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:29+00:00 1.0 1152809569 3136 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:42+00:00 1.0 1152809569 3135 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:23+00:00 1.0 1152809569 3134 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:13+00:00 1.0 1152809569 3133 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:14+00:00 1.0 1152809569 3132 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:16+00:00 1.0 1152809569 3131 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:23+00:00 1.0 1152809569 3129 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:29+00:00 1.0 1152809569 3128 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:26:06+00:00 1.0 1152809569 3127 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:22+00:00 1.0 1152809569 3126 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:08+00:00 1.0 1152809569 3122 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:48+00:00 1.0 1152809569 3120 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:16+00:00 1.0 1152809569 3119 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:14+00:00 1.0 1152809569 3118 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:13+00:00 1.0 1152809569 3117 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:31+00:00 1.0 1152809569 3116 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:17+00:00 1.0 1152809569 3115 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:25+00:00 1.0 1152809569 3114 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:21+00:00 1.0 1152809569 3113 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:28+00:00 1.0 1152809569 3112 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:36+00:00 1.0 1152809569 3111 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:25+00:00 1.0 1152809569 3110 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:23:12+00:00 1.0 1152809569 3109 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:21+00:00 1.0 1152809569 3108 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:57+00:00 1.0 1152809569 3102 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:21+00:00 1.0 1152809569 3100 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:14+00:00 1.0 1152809569 3099 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:19+00:00 1.0 1152809569 3098 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:11+00:00 1.0 1152809569 3097 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:12+00:00 1.0 1152809569 3096 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:15+00:00 1.0 1152809569 3095 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:21+00:00 1.0 1152809569 3094 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:26+00:00 1.0 1152809569 3093 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:18+00:00 1.0 1152809569 3092 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:21+00:00 1.0 1152809569 3091 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:28+00:00 1.0 1152809569 3090 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:15+00:00 1.0 1152809569 3088 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:13+00:00 1.0 1152809569 3087 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:56+00:00 1.0 1152809569 3083 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:29+00:00 1.0 1152809569 3081 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:14+00:00 1.0 1152809569 3080 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:10+00:00 1.0 1152809569 3079 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:12+00:00 1.0 1152809569 3078 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:13+00:00 1.0 1152809569 3077 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:17+00:00 1.0 1152809569 3076 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:23+00:00 1.0 1152809569 3075 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:32+00:00 1.0 1152809569 3074 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:31+00:00 1.0 1152809569 3073 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:25+00:00 1.0 1152809569 3072 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:16+00:00 1.0 1152809569 3071 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:19+00:00 1.0 1152809569 3070 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:56+00:00 1.0 1152809569 3069 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:02:03+00:00 1.0 1152809569 3068 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:29+00:00 1.0 1152809569 3062 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:07+00:00 1.0 1152809569 3061 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:18+00:00 1.0 1152809569 3060 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:16+00:00 1.0 1152809569 3059 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:12+00:00 1.0 1152809569 3058 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:18+00:00 1.0 1152809569 3057 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:49+00:00 1.0 1152809569 3056 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:20+00:00 1.0 1152809569 3055 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:20+00:00 1.0 1152809569 3054 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:15+00:00 1.0 1152809569 3053 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:19+00:00 1.0 1152809569 3052 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:18+00:00 1.0 1152809569 3051 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:11+00:00 1.0 1152809569 3050 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:19+00:00 1.0 1152809569 3049 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:16+00:00 1.0 1152809569 3048 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:06+00:00 1.0 1152809569 3042 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:33+00:00 1.0 1152809569 3040 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:15+00:00 1.0 1152809569 3039 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:16+00:00 1.0 1152809569 3038 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:13+00:00 1.0 1152809569 3037 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:50+00:00 1.0 1152809569 3036 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:24+00:00 1.0 1152809569 3035 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:27+00:00 1.0 1152809569 3034 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:38+00:00 1.0 1152809569 3033 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:20+00:00 1.0 1152809569 3032 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:25+00:00 1.0 1152809569 3031 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:14+00:00 1.0 1152809569 3030 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:13+00:00 1.0 1152809569 3029 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:29+00:00 1.0 1152809569 3028 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:40+00:00 1.0 1152809569 3026 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:24+00:00 1.0 1152809569 3021 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:42+00:00 1.0 1152809569 3019 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:18+00:00 1.0 1152809569 3017 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:27+00:00 1.0 1152809569 3016 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:16+00:00 1.0 1152809569 3015 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:20+00:00 1.0 1152809569 3014 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:41+00:00 1.0 1152809569 3013 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:46+00:00 1.0 1152809569 3012 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:19+00:00 1.0 1152809569 3011 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:27+00:00 1.0 1152809569 3010 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:17+00:00 1.0 1152809569 3007 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:48+00:00 1.0 1152809569 3006 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:42+00:00 1.0 1152809569 2999 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:40+00:00 1.0 1152809569 2997 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:12+00:00 1.0 1152809569 2996 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:13+00:00 1.0 1152809569 2995 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:35+00:00 1.0 1152809569 2994 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:38+00:00 1.0 1152809569 2993 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:26+00:00 1.0 1152809569 2992 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:19+00:00 1.0 1152809569 2991 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:38+00:00 1.0 1152809569 2990 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:13+00:00 1.0 1152809569 2989 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:19+00:00 1.0 1152809569 2988 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:11+00:00 1.0 1152809569 2987 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:30+00:00 1.0 1152809569 2985 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:11:02+00:00 1.0 1152809569 2984 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:04+00:00 1.0 1152809569 2976 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:27+00:00 1.0 1152809569 2975 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:15+00:00 1.0 1152809569 2974 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:24+00:00 1.0 1152809569 2973 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:19+00:00 1.0 1152809569 2972 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:30+00:00 1.0 1152809569 2971 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:27+00:00 1.0 1152809569 2970 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:38+00:00 1.0 1152809569 2969 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:17+00:00 1.0 1152809569 2968 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:40+00:00 1.0 1152809569 2967 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:41+00:00 1.0 1152809569 2966 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:36+00:00 1.0 1152809569 2965 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:20+00:00 1.0 1152809569 2964 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:28+00:00 1.0 1152809569 2963 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:38+00:00 1.0 1152809569 2954 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:41+00:00 1.0 1152809569 2953 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:11+00:00 1.0 1152809569 2952 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:11+00:00 1.0 1152809569 2951 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:14+00:00 1.0 1152809569 2950 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:25+00:00 1.0 1152809569 2949 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:17+00:00 1.0 1152809569 2948 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:30+00:00 1.0 1152809569 2947 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:43+00:00 1.0 1152809569 2945 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:16+00:00 1.0 1152809569 2944 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:11+00:00 1.0 1152809569 2943 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:16+00:00 1.0 1152809569 2942 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:25+00:00 1.0 1152809569 2940 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:18+00:00 1.0 1152809569 2939 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:19+00:00 1.0 1152809569 2935 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:46+00:00 1.0 1152809569 2934 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:18+00:00 1.0 1152809569 2933 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:15+00:00 1.0 1152809569 2932 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:12+00:00 1.0 1152809569 2931 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:15+00:00 1.0 1152809569 2930 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:15+00:00 1.0 1152809569 2929 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:16+00:00 1.0 1152809569 2928 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:26+00:00 1.0 1152809569 2927 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:25+00:00 1.0 1152809569 2926 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:20+00:00 1.0 1152809569 2925 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:12+00:00 1.0 1152809569 2923 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:08:00+00:00 1.0 1152809569 2922 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:27+00:00 1.0 1152809569 2916 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:44+00:00 1.0 1152809569 2915 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:14+00:00 1.0 1152809569 2914 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:20+00:00 1.0 1152809569 2913 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:11+00:00 1.0 1152809569 2912 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:24+00:00 1.0 1152809569 2911 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:28+00:00 1.0 1152809569 2910 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:22+00:00 1.0 1152809569 2909 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:17+00:00 1.0 1152809569 2908 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:15+00:00 1.0 1152809569 2907 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:18+00:00 1.0 1152809569 2906 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:17+00:00 1.0 1152809569 2905 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:25+00:00 1.0 1152809569 2903 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:50+00:00 1.0 1152809569 2901 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:42+00:00 1.0 1152809569 2895 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:33+00:00 1.0 1152809569 2894 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:12+00:00 1.0 1152809569 2893 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:13+00:00 1.0 1152809569 2892 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:14+00:00 1.0 1152809569 2891 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:14+00:00 1.0 1152809569 2890 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:23+00:00 1.0 1152809569 2889 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:17+00:00 1.0 1152809569 2888 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:49+00:00 1.0 1152809569 2887 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:23+00:00 1.0 1152809569 2886 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:17+00:00 1.0 1152809569 2885 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:41+00:00 1.0 1152809569 2884 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:50+00:00 1.0 1152809569 2882 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:42+00:00 1.0 1152809569 2881 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:47+00:00 1.0 1152809569 2874 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:21+00:00 1.0 1152809569 2873 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:12+00:00 1.0 1152809569 2872 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:12+00:00 1.0 1152809569 2871 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:17+00:00 1.0 1152809569 2870 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:20+00:00 1.0 1152809569 2869 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:25+00:00 1.0 1152809569 2868 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:38+00:00 1.0 1152809569 2867 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:22+00:00 1.0 1152809569 2866 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:29+00:00 1.0 1152809569 2865 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:15+00:00 1.0 1152809569 2864 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:11+00:00 1.0 1152809569 2863 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:06+00:00 1.0 1152809569 2855 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:38+00:00 1.0 1152809569 2854 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:22+00:00 1.0 1152809569 2853 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:14+00:00 1.0 1152809569 2852 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:14+00:00 1.0 1152809569 2851 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:17+00:00 1.0 1152809569 2850 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:19+00:00 1.0 1152809569 2849 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:17+00:00 1.0 1152809569 2848 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:20+00:00 1.0 1152809569 2847 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:18+00:00 1.0 1152809569 2846 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:20+00:00 1.0 1152809569 2845 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:12+00:00 1.0 1152809569 2844 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:12+00:00 1.0 1152809569 2842 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:09+00:00 1.0 1152809569 2840 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:12+00:00 1.0 1152809569 2839 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:21+00:00 1.0 1152809569 2838 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:12+00:00 1.0 1152809569 2837 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:21+00:00 1.0 1152809569 2836 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:22+00:00 1.0 1152809569 2835 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:47+00:00 1.0 1152809569 2834 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:18+00:00 1.0 1152809569 2833 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:14+00:00 1.0 1152809569 2832 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:34:03+00:00 1.0 1152809569 2831 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:54+00:00 1.0 1152809569 2829 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:44+00:00 1.0 1152809569 2821 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:17+00:00 1.0 1152809569 2820 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:16+00:00 1.0 1152809569 2819 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:15+00:00 1.0 1152809569 2818 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:11+00:00 1.0 1152809569 2817 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:27+00:00 1.0 1152809569 2816 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:20+00:00 1.0 1152809569 2815 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:18+00:00 1.0 1152809569 2814 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:22+00:00 1.0 1152809569 2813 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:22+00:00 1.0 1152809569 2812 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:14+00:00 1.0 1152809569 2811 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:12+00:00 1.0 1152809569 2810 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:20+00:00 1.0 1152809569 2808 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:18+00:00 1.0 1152809569 2801 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:37+00:00 1.0 1152809569 2800 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:19+00:00 1.0 1152809569 2799 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:20+00:00 1.0 1152809569 2798 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:30+00:00 1.0 1152809569 2797 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:28+00:00 1.0 1152809569 2796 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:36+00:00 1.0 1152809569 2795 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:26+00:00 1.0 1152809569 2794 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:16+00:00 1.0 1152809569 2793 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:12+00:00 1.0 1152809569 2792 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:13+00:00 1.0 1152809569 2791 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:19+00:00 1.0 1152809569 2790 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:25+00:00 1.0 1152809569 2788 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:21+00:00 1.0 1152809569 2782 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:25+00:00 1.0 1152809569 2781 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:13+00:00 1.0 1152809569 2780 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:11+00:00 1.0 1152809569 2779 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:13+00:00 1.0 1152809569 2778 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:11+00:00 1.0 1152809569 2777 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:01:00+00:00 1.0 1152809569 2776 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:15+00:00 1.0 1152809569 2775 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:15+00:00 1.0 1152809569 2774 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:22+00:00 1.0 1152809569 2773 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:19+00:00 1.0 1152809569 2772 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:20+00:00 1.0 1152809569 2771 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:46+00:00 1.0 1152809569 2769 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:07+00:00 1.0 1152809569 2761 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:01:02+00:00 1.0 1152809569 2760 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:13+00:00 1.0 1152809569 2759 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:12+00:00 1.0 1152809569 2758 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:16+00:00 1.0 1152809569 2757 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:15+00:00 1.0 1152809569 2756 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:37+00:00 1.0 1152809569 2755 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:01:00+00:00 1.0 1152809569 2754 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:16+00:00 1.0 1152809569 2753 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:24+00:00 1.0 1152809569 2752 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:21+00:00 1.0 1152809569 2751 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:18+00:00 1.0 1152809569 2750 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:20+00:00 1.0 1152809569 2748 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:45+00:00 1.0 1152809569 2747 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:29+00:00 1.0 1152809569 2741 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:28+00:00 1.0 1152809569 2738 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:15+00:00 1.0 1152809569 2737 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:14+00:00 1.0 1152809569 2736 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:18+00:00 1.0 1152809569 2735 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:21+00:00 1.0 1152809569 2734 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:18+00:00 1.0 1152809569 2733 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:30+00:00 1.0 1152809569 2732 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:13+00:00 1.0 1152809569 2731 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:14+00:00 1.0 1152809569 2730 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:19+00:00 1.0 1152809569 2729 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:13+00:00 1.0 1152809569 2728 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:32+00:00 1.0 1152809569 2726 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:28+00:00 1.0 1152809569 2717 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:49+00:00 1.0 1152809569 2715 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:12+00:00 1.0 1152809569 2714 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:12+00:00 1.0 1152809569 2713 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:12+00:00 1.0 1152809569 2712 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:16+00:00 1.0 1152809569 2711 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:34+00:00 1.0 1152809569 2710 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:55+00:00 1.0 1152809569 2709 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:22+00:00 1.0 1152809569 2708 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:16+00:00 1.0 1152809569 2707 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:24+00:00 1.0 1152809569 2706 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:16+00:00 1.0 1152809569 2705 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:18+00:00 1.0 1152809569 2703 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:35+00:00 1.0 1152809569 2697 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:36+00:00 1.0 1152809569 2695 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:12+00:00 1.0 1152809569 2693 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:11+00:00 1.0 1152809569 2692 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:16+00:00 1.0 1152809569 2689 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:15+00:00 1.0 1152809569 2687 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:13+00:00 1.0 1152809569 2686 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:31+00:00 1.0 1152809569 2685 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:07+00:00 1.0 1152809569 2684 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:39+00:00 1.0 1152809569 2677 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:12+00:00 1.0 1152809569 2676 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:16+00:00 1.0 1152809569 2675 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:24+00:00 1.0 1152809569 2674 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:11+00:00 1.0 1152809569 2673 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:24+00:00 1.0 1152809569 2672 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:15+00:00 1.0 1152809569 2671 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:23+00:00 1.0 1152809569 2670 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:19+00:00 1.0 1152809569 2669 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:19+00:00 1.0 1152809569 2668 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:21+00:00 1.0 1152809569 2667 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:13+00:00 1.0 1152809569 2666 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:20+00:00 1.0 1152809569 2665 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:31+00:00 1.0 1152809569 2664 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:30+00:00 1.0 1152809569 2662 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:14+00:00 1.0 1152809569 2659 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-24 14:42:39+00:00 1.0 1152809569 2656 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 10:03:42+00:00 1.0 1152809569 2655 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 08:00:28+00:00 1.0 1152809569 2654 ℹ coin signal information ℹ date friday 24082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-24 03:00:17+00:00 1.0 1152809569 2653 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-24 02:00:23+00:00 1.0 1152809569 2651 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info shortly ℹ️ exchange yobit 2018-08-24 01:05:47+00:00 1.0 1152809569 2650 scheduled pump is cancelled due to high sell wall coin is not near to 24 hr low which is our speciality to signal low level we will reschedule with good coin again low level thanks for keeping patience 2018-08-23 17:06:50+00:00 1.0 1152809569 2649 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-23 17:05:07+00:00 1.0 1152809569 2648 ℹ️ 20 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:54:18+00:00 1.0 1152809569 2647 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:37:38+00:00 1.0 1152809569 2646 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 16:02:26+00:00 1.0 1152809569 2645 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:16:34+00:00 1.0 1152809569 2644 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:08:52+00:00 1.0 1152809569 2643 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 13:01:47+00:00 1.0 1152809569 2642 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 10:01:34+00:00 1.0 1152809569 2641 ℹ coin signal information ℹ date thursday 23082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-23 09:05:29+00:00 1.0 1152809569 2640 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 23082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-23 08:48:59+00:00 1.0 1152809569 2639 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 23 august 2018 day thursday time 5 pm gmt 2018-08-23 07:59:21+00:00 1.0 1152809569 2637 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:25+00:00 1.0 1152809569 2627 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:18+00:00 1.0 1152809569 2626 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:13+00:00 1.0 1152809569 2625 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-22 16:51:15+00:00 1.0 1152809569 2624 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-22 16:41:11+00:00 1.0 1152809569 2623 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-22 16:31:19+00:00 1.0 1152809569 2622 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 16:01:19+00:00 1.0 1152809569 2621 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 15:01:24+00:00 1.0 1152809569 2620 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:14+00:00 1.0 1152809569 2619 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:13+00:00 1.0 1152809569 2618 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:19+00:00 1.0 1152809569 2617 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:33+00:00 1.0 1152809569 2616 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:49+00:00 1.0 1152809569 2615 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always remember pump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:04+00:00 1.0 1152809569 2604 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:23+00:00 1.0 1152809569 2602 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:27+00:00 1.0 1152809569 2601 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:17+00:00 1.0 1152809569 2600 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:15+00:00 1.0 1152809569 2599 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:14+00:00 1.0 1152809569 2598 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:03:01+00:00 1.0 1152809569 2597 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:21+00:00 1.0 1152809569 2596 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:15+00:00 1.0 1152809569 2595 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:13+00:00 1.0 1152809569 2594 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:14+00:00 1.0 1152809569 2593 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:53+00:00 1.0 1152809569 2592 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:08+00:00 1.0 1152809569 2590 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:32+00:00 1.0 1152809569 2589 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:20:01+00:00 1.0 1152809569 2579 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:10+00:00 1.0 1152809569 2577 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:18+00:00 1.0 1152809569 2576 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:14+00:00 1.0 1152809569 2575 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:10+00:00 1.0 1152809569 2574 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:34+00:00 1.0 1152809569 2573 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:27+00:00 1.0 1152809569 2572 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:18+00:00 1.0 1152809569 2571 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:29+00:00 1.0 1152809569 2570 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:12+00:00 1.0 1152809569 2569 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:22+00:00 1.0 1152809569 2568 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:47+00:00 1.0 1152809569 2567 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:34+00:00 1.0 1152809569 2566 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:48+00:00 1.0 1152809569 2564 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:19:58+00:00 1.0 1152809569 2555 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:53+00:00 1.0 1152809569 2553 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:13+00:00 1.0 1152809569 2552 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:10+00:00 1.0 1152809569 2551 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:14+00:00 1.0 1152809569 2550 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:14+00:00 1.0 1152809569 2549 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:14+00:00 1.0 1152809569 2548 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:10+00:00 1.0 1152809569 2547 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:11+00:00 1.0 1152809569 2546 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:15+00:00 1.0 1152809569 2545 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 07:59:57+00:00 1.0 1152809569 2543 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:12+00:00 1.0 1152809569 2542 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:30+00:00 1.0 1152809569 2541 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:52:58+00:00 1.0 1152809569 2531 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:25+00:00 1.0 1152809569 2519 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:29+00:00 1.0 1152809569 2518 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:04+00:00 1.0 1152809569 2507 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:04+00:00 1.0 1152809569 2496 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:50+00:00 1.0 1152809569 2485 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:00:59+00:00 1.0 1152809569 2473 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:28+00:00 1.0 1152809569 2462 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 16:00:02+00:00 1.0 1152809569 2450 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:05:56+00:00 1.0 1152809569 2436 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:11+00:00 1.0 1152809569 2419 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:43+00:00 1.0 1152809569 2407 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:26+00:00 1.0 1152809569 2397 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:34+00:00 1.0 1152809569 2386 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:23+00:00 1.0 1152809569 2377 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:24+00:00 1.0 1152809569 2366 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:26+00:00 1.0 1152809569 2356 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:37+00:00 1.0 1152809569 2344 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:16:12+00:00 1.0 1152809569 2334 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:00:59+00:00 1.0 1152809569 2322 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:47+00:00 1.0 1152809569 2313 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:47+00:00 1.0 1152809569 2301 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:21:16+00:00 1.0 1152809569 2291 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 16:00:00+00:00 1.0 1152809569 2268 the coin to pump is snpt exchange yobitnet target +300 market snptbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-07-16 15:59:49+00:00 1.0 1152809569 2245 the coin to pump is sig exchange yobitnet target +300 500 market sigbtc 2018-06-24 17:00:23+00:00 1.0 1152809569 2244 next post will be coin name 2018-06-24 16:59:24+00:00 1.0 1152809569 2243 under 2 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:58:23+00:00 1.0 1152809569 2242 under 3 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:57:22+00:00 1.0 1152809569 2241 under 5 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:55:36+00:00 1.0 1152809569 2240 under 10 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:50:35+00:00 1.0 1152809569 2239 under 15 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:45:35+00:00 1.0 1152809569 2238 under 30 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:30:43+00:00 1.0 1152809569 2237 under 1 hour till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:00:35+00:00 1.0 1152809569 2236 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 15:00:53+00:00 1.0 1152809569 2235 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 14:02:26+00:00 1.0 1152809569 2234 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 13:02:29+00:00 1.0 1152809569 2233 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 12:02:40+00:00 1.0 1152809569 2232 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 11:35:58+00:00 1.0 1152809569 2231 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-06-24 02:34:38+00:00 1.0 1152809569 2230 under 24 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-23 17:22:32+00:00 1.0 1152809569 2229 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date sunday 24th june ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-06-23 15:18:54+00:00 1.0 1152809569 2220 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-06-22 17:02:03+00:00 1.0 1152809569 2211 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-22 16:01:01+00:00 1.0 1152809569 2204 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date friday 22th june ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-06-21 03:13:46+00:00 1.0 1152809569 2198 the coin to pump is chp exchange yobitnet target +300 500 market chpbtc 2018-06-20 17:00:10+00:00 1.0 1152809569 2197 next post will be coin name 2018-06-20 16:59:12+00:00 1.0 1152809569 2191 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-06-20 16:32:14+00:00 1.0 1152809569 2189 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-20 16:00:29+00:00 1.0 1152809569 2186 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-06-20 14:03:50+00:00 1.0 1152809569 2183 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date wednesday 20th june ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-06-18 11:35:00+00:00 1.0 1152809569 2174 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-27 17:00:09+00:00 1.0 1152809569 2173 next post will be coin name 2018-05-27 16:59:02+00:00 1.0 1152809569 2172 2 min till pump next post is coin 2018-05-27 16:58:40+00:00 1.0 1152809569 2171 under 2 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:58:06+00:00 1.0 1152809569 2170 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:57:02+00:00 1.0 1152809569 2169 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:55:02+00:00 1.0 1152809569 2168 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-27 16:54:54+00:00 1.0 1152809569 2167 under 10 mins till pump open up yobit and get ready for a great pump 2018-05-27 16:51:45+00:00 1.0 1152809569 2166 under 10 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:50:02+00:00 1.0 1152809569 2165 under 15 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:45:07+00:00 1.0 1152809569 2164 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:31:34+00:00 1.0 1152809569 2162 under 1 hour till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:01:07+00:00 1.0 1152809569 2159 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-27 14:46:44+00:00 1.0 1152809569 2155 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-27 11:20:31+00:00 1.0 1152809569 2154 next pump will be tomorrow 5 pm gmt 2018-05-26 15:01:49+00:00 1.0 1152809569 2153 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-26 06:40:27+00:00 1.0 1152809569 2141 the coin to pump is sling exchange yobitnet target +300 500 market slingbtc 2018-05-22 17:00:11+00:00 1.0 1152809569 2140 next post will be coin name 2018-05-22 16:59:13+00:00 1.0 1152809569 2139 under 2 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:58:08+00:00 1.0 1152809569 2138 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:57:13+00:00 1.0 1152809569 2137 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:57:02+00:00 1.0 1152809569 2136 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:55:03+00:00 1.0 1152809569 2135 under 10 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:50:15+00:00 1.0 1152809569 2134 under 15 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:45:52+00:00 1.0 1152809569 2132 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:00:18+00:00 1.0 1152809569 2128 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-22 06:57:43+00:00 1.0 1152809569 2124 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-20 17:00:17+00:00 1.0 1152809569 2123 next post will be coin name 2018-05-20 17:00:02+00:00 1.0 1152809569 2117 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-20 16:30:14+00:00 1.0 1152809569 2116 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-20 16:00:02+00:00 1.0 1152809569 2109 the coin to pump is qtg exchange yobitnet target +300 500 market qtgbtc 2018-05-19 17:00:18+00:00 1.0 1152809569 2108 next post will be coin name 2018-05-19 17:00:15+00:00 1.0 1152809569 2105 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:56:04+00:00 1.0 1152809569 2102 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:31:07+00:00 1.0 1152809569 2101 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:01:14+00:00 1.0 1152809569 2097 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-18 18:03:29+00:00 1.0 1152809569 2096 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-18 17:51:33+00:00 1.0 1152809569 2089 the coin to pump is vega exchange yobitnet target +300 500 market vegabtc 2018-05-18 17:00:29+00:00 1.0 1152809569 2088 next post will be coin name 2018-05-18 16:59:57+00:00 1.0 1152809569 2086 next post will be coin name 2018-05-18 16:59:16+00:00 1.0 1152809569 2084 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:56:01+00:00 1.0 1152809569 2081 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:31:03+00:00 1.0 1152809569 2080 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:01:02+00:00 1.0 1152809569 2072 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-17 13:30:39+00:00 1.0 1152809569 2066 the coin to pump is lion exchange yobitnet target +300 500 market lionbtc 2018-05-15 17:00:35+00:00 1.0 1152809569 2061 under 10 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:51:01+00:00 1.0 1152809569 2060 under 15 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:46:02+00:00 1.0 1152809569 2059 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:31:28+00:00 1.0 1152809569 2051 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-15 04:09:50+00:00 1.0 1152809569 2050 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-14 17:32:08+00:00 1.0 1152809569 2044 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-14 17:00:26+00:00 1.0 1152809569 2043 next post will be coin name 2018-05-14 16:59:05+00:00 1.0 1152809569 2042 pump in 2 minutes time to make some real money 2018-05-14 16:58:04+00:00 1.0 1152809569 2041 pump in 3 minutes time to make some real money 2018-05-14 16:57:03+00:00 1.0 1152809569 2038 pump in 5 minutes time to make some real money 2018-05-14 16:55:01+00:00 1.0 1152809569 2037 pump in 10 minutes time to make some real money 2018-05-14 16:50:03+00:00 1.0 1152809569 2036 pump in 15 minutes time to make some real money 2018-05-14 16:45:03+00:00 1.0 1152809569 2033 pump in 30 minutes time to make some real money 2018-05-14 16:30:08+00:00 1.0 1152809569 2032 3 min next post coin name 2018-05-14 16:27:49+00:00 1.0 1152809569 2026 less than 1 hours left till pump transfer some btc and lets profit pump exchange yobit 14may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-14 15:31:38+00:00 1.0 1152809569 2023 less than 3 hours left till pump transfer some btc and lets profit pump exchange yobit 14may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-14 13:31:27+00:00 1.0 1152809569 2020 guys today pump will be at as usual time ie 5 pm gmt 2018-05-14 11:48:43+00:00 1.0 1152809569 2019 less than 6 hours left till pump transfer some btc and lets profit pump exchange yobit 14may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-14 10:31:21+00:00 1.0 1152809569 2018 less than 12 hours left till pump transfer some btc and lets profit pump exchange yobit 14 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-14 04:31:00+00:00 1.0 1152809569 2014 the coin to pump is ufr exchange yobitnet target +300 500 market ufrbtc btc 2018-05-13 17:15:19+00:00 1.0 1152809569 2013 next post will be coin name 2018-05-13 17:14:08+00:00 1.0 1152809569 2012 pump in 2 minutes time to make some real money 2018-05-13 17:13:06+00:00 1.0 1152809569 2011 pump in 3 minutes time to make some real money 2018-05-13 17:12:08+00:00 1.0 1152809569 2010 pump in 5 minutes time to make some real money 2018-05-13 17:10:09+00:00 1.0 1152809569 2009 pump in 10 minutes time to make some real money 2018-05-13 17:05:01+00:00 1.0 1152809569 2008 pump in 15 minutes time to make some real money 2018-05-13 17:00:46+00:00 1.0 1152809569 2007 pump in 30 minutes time to make some real money 2018-05-13 16:45:01+00:00 1.0 1152809569 2006 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-13 16:18:59+00:00 1.0 1152809569 2000 notice guysthe pump time was changed to 515 pm gmtearlier it was 5 pm gmt 2018-05-12 18:19:11+00:00 1.0 1152809569 1999 next pump tomorrow time 515 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-12 18:17:51+00:00 1.0 1152809569 1994 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-12 17:00:10+00:00 1.0 1152809569 1993 next post will be coin name 2018-05-12 16:59:03+00:00 1.0 1152809569 1992 pump in 2 minutes time to make some real money 2018-05-12 16:58:01+00:00 1.0 1152809569 1991 pump in 3 minutes time to make some real money 2018-05-12 16:57:05+00:00 1.0 1152809569 1990 pump in 5 minutes time to make some real money 2018-05-12 16:55:03+00:00 1.0 1152809569 1989 pump in 10 minutes time to make some real money 2018-05-12 16:50:06+00:00 1.0 1152809569 1988 pump in 15 minutes time to make some real money 2018-05-12 16:45:48+00:00 1.0 1152809569 1987 pump in 30 minutes time to make some real money 2018-05-12 16:30:09+00:00 1.0 1152809569 1980 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-11 23:15:55+00:00 1.0 1152809569 1979 there were many holders for this coin guys i apologise for this pump guys it was very bad pump recent times 2018-05-11 17:12:26+00:00 1.0 1152809569 1975 the coin to pump is loom exchange yobitnet target +300 500 market loombtc 2018-05-11 17:01:37+00:00 1.0 1152809569 1974 the coin to pump is loom exchange yobitnet target +300 500 market loombtc 2018-05-11 16:59:53+00:00 1.0 1152809569 1973 next post will be coin name 2018-05-11 16:59:04+00:00 1.0 1152809569 1972 pump in 2 minutes time to make some real money 2018-05-11 16:58:02+00:00 1.0 1152809569 1971 pump in 3 minutes time to make some real money 2018-05-11 16:57:01+00:00 1.0 1152809569 1969 pump in 5 minutes time to make some real money 2018-05-11 16:55:01+00:00 1.0 1152809569 1968 pump in 10 minutes time to make some real money 2018-05-11 16:50:01+00:00 1.0 1152809569 1967 pump in 15 minutes time to make some real money 2018-05-11 16:45:04+00:00 1.0 1152809569 1963 pump in 30 minutes time to make some real money 2018-05-11 16:30:26+00:00 1.0 1152809569 1962 next post coin name 2018-05-11 16:28:59+00:00 1.0 1152809569 1955 less than 1 hours left till pump transfer some btc and lets profit pump exchange yobit 11 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-11 15:30:46+00:00 1.0 1152809569 1952 less than 3 hours left till pump transfer some btc and lets profit pump exchange yobit 11 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-11 13:31:04+00:00 1.0 1152809569 1947 less than 6 hours left till pump transfer some btc and lets profit pump exchange yobit 11 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-11 10:32:19+00:00 1.0 1152809569 1946 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-11 07:29:53+00:00 1.0 1152809569 1945 less than 12 hours left till pump transfer some btc and lets profit pump exchange yobit 11 may ⏱hour 430pm gmt exchange yobit transfer some btc and lets profit 2018-05-11 04:30:43+00:00 1.0 1152809569 1941 so guys keep your focus on the coin name dont be hurry 2018-05-10 17:12:56+00:00 1.0 1152809569 1938 the coin to pump is units exchange yobitnet target +300 500 market unitsbtc 2018-05-10 17:03:00+00:00 1.0 1152809569 1936 next post will be coin name 2018-05-10 16:59:01+00:00 1.0 1152809569 1935 pump in 2 minutes time to make some real money 2018-05-10 16:58:02+00:00 1.0 1152809569 1934 pump in 3 minutes time to make some real money 2018-05-10 16:57:04+00:00 1.0 1152809569 1933 pump in 5 minutes time to make some real money 2018-05-10 16:55:01+00:00 1.0 1152809569 1932 pump in 10 minutes time to make some real money 2018-05-10 16:50:08+00:00 1.0 1152809569 1931 pump in 15 minutes time to make some real money 2018-05-10 16:45:01+00:00 1.0 1152809569 1930 pump in 30 minutes time to make some real money 2018-05-10 16:30:09+00:00 1.0 1152809569 1918 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-09 17:03:53+00:00 1.0 1152809569 1915 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-09 17:01:49+00:00 1.0 1152809569 1914 next post will be coin name 2018-05-09 16:59:02+00:00 1.0 1152809569 1913 pump in 2 minutes time to make some real money 2018-05-09 16:58:12+00:00 1.0 1152809569 1912 pump in 3 minutes time to make some real money 2018-05-09 16:57:07+00:00 1.0 1152809569 1911 pump in 5 minutes time to make some real money 2018-05-09 16:55:04+00:00 1.0 1152809569 1910 pump in 10 minutes time to make some real money 2018-05-09 16:50:02+00:00 1.0 1152809569 1909 pump in 15 minutes time to make some real money 2018-05-09 16:45:14+00:00 1.0 1152809569 1908 pump in 30 minutes time to make some real money 2018-05-09 16:30:38+00:00 1.0 1152809569 1897 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-09 06:19:12+00:00 1.0 1152809569 1894 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-09 04:18:48+00:00 1.0 1152809569 1891 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-08 17:03:25+00:00 1.0 1152809569 1887 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-08 17:00:50+00:00 1.0 1152809569 1886 next post will be coin name 2018-05-08 16:59:02+00:00 1.0 1152809569 1885 pump in 2 minutes time to make some real money 2018-05-08 16:58:02+00:00 1.0 1152809569 1884 pump in 3 minutes time to make some real money 2018-05-08 16:57:01+00:00 1.0 1152809569 1882 pump in 5 minutes time to make some real money 2018-05-08 16:55:02+00:00 1.0 1152809569 1881 pump in 10 minutes time to make some real money 2018-05-08 16:50:01+00:00 1.0 1152809569 1880 pump in 15 minutes time to make some real money 2018-05-08 16:45:02+00:00 1.0 1152809569 1879 pump in 30 minutes time to make some real money 2018-05-08 16:30:04+00:00 1.0 1152809569 1878 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-08 16:00:51+00:00 1.0 1152809569 1877 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-08 15:38:25+00:00 1.0 1152809569 1867 pump results coin was rr open 191 max 1385 exchange yobit price go to 10x after coin announcent 2018-05-07 17:48:08+00:00 1.0 1152809569 1864 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-05-07 17:03:04+00:00 1.0 1152809569 1860 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-05-07 17:01:20+00:00 1.0 1152809569 1859 next post will be coin name 2018-05-07 16:59:04+00:00 1.0 1152809569 1858 pump in 2 minutes time to make some real money 2018-05-07 16:58:04+00:00 1.0 1152809569 1857 pump in 3 minutes time to make some real money 2018-05-07 16:57:10+00:00 1.0 1152809569 1856 pump in 5 minutes time to make some real money 2018-05-07 16:55:01+00:00 1.0 1152809569 1854 pump in 10 minutes time to make some real money 2018-05-07 16:50:02+00:00 1.0 1152809569 1853 pump in 15 minutes time to make some real money 2018-05-07 16:45:08+00:00 1.0 1152809569 1852 pump in 30 minutes time to make some real money 2018-05-07 16:30:33+00:00 1.0 1152809569 1850 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-07 16:00:05+00:00 1.0 1152809569 1848 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-07 14:46:34+00:00 1.0 1152809569 1840 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-07 04:40:11+00:00 1.0 1152809569 1836 3 min left next post coin name 2018-05-05 15:57:39+00:00 1.0 1152809569 1835 last 5 minutes exchange is yobit yobitnet 2018-05-05 15:55:40+00:00 1.0 1152809569 1834 last 10 minutes exchange is yobit yobitnet 2018-05-05 15:50:37+00:00 1.0 1152809569 1833 last 15 minutes exchange is yobit yobitnet 2018-05-05 15:45:38+00:00 1.0 1152809569 1832 last 30 minutes exchange is yobit yobitnet 2018-05-05 15:30:47+00:00 1.0 1152809569 1830 less than 1 hours left till pump yobit hold pump transfer some btc and lets profit pump exchange yobit 5 may ⏱hour 4pm gmt exchange yobit transfer some btc and lets profit 2018-05-05 15:02:05+00:00 1.0 1152809569 1829 less than 2 hours left till pump yobit hold pump transfer some btc and lets profit pump exchange yobit 5 may ⏱hour 4pm gmt exchange yobit transfer some btc and lets profit 2018-05-05 14:01:02+00:00 1.0 1152809569 1827 less than 3 hours left till pump yobit hold pump transfer some btc and lets profit pump exchange yobit 5 may ⏱hour 4pm gmt exchange yobit transfer some btc and lets profit 2018-05-05 13:01:01+00:00 1.0 1152809569 1824 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key here is the link step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 810x from the original value it has the possibility of going even further 1525x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the start time along with a link to it on the selected exchange ⏳ cryptopia registration 2018-05-05 03:35:12+00:00 1.0 1152809569 1803 the coin to pump is vega exchange yobitnet target +300 500 market vegabtc 2018-05-04 17:00:14+00:00 1.0 1152809569 1802 next post will be coin name 2018-05-04 16:59:05+00:00 1.0 1152809569 1801 pump in 2 minutes time to make some real money 2018-05-04 16:58:12+00:00 1.0 1152809569 1800 pump in 3 minutes time to make some real money 2018-05-04 16:57:13+00:00 1.0 1152809569 1799 pump in 2 minutes time to make some real money 2018-05-04 16:57:07+00:00 1.0 1152809569 1798 pump in 5 minutes time to make some real money 2018-05-04 16:56:49+00:00 1.0 1152809569 1797 pump in 8 minutes time to make some real money 2018-05-04 16:50:50+00:00 1.0 1152809569 1796 pump in 10 minutes time to make some real money 2018-05-04 16:50:01+00:00 1.0 1152809569 1792 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 16:00:01+00:00 1.0 1152809569 1791 3 min left next post coin name 2018-05-04 15:57:57+00:00 1.0 1152809569 1784 less than 1 hours left till pump transfer some btc and lets profit pump exchange cryptopia 4 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-04 15:00:46+00:00 1.0 1152809569 1783 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 15:00:39+00:00 1.0 1152809569 1782 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 14:02:30+00:00 1.0 1152809569 1781 less than 3 hours left till pump transfer some btc and lets profit pump exchange cryptopia 4 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-04 13:01:17+00:00 1.0 1152809569 1780 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 13:00:08+00:00 1.0 1152809569 1779 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 12:00:16+00:00 1.0 1152809569 1778 under 6 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 11:00:58+00:00 1.0 1152809569 1777 less than 6 hours left till pump transfer some btc and lets profit pump exchange cryptopia 4 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-04 10:01:09+00:00 1.0 1152809569 1774 under 8 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 09:20:39+00:00 1.0 1152809569 1773 less than 12 hours left till pump transfer some btc and lets profit pump exchange cryptopia 4 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-04 04:00:40+00:00 1.0 1152809569 1771 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-03 18:50:39+00:00 1.0 1152809569 1767 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-03 18:49:25+00:00 1.0 1152809569 1745 3 min left next post coin name 2018-05-03 15:57:39+00:00 1.0 1152809569 1738 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 15:02:26+00:00 1.0 1152809569 1737 less than 1 hours left till pump transfer some btc and lets profit pump exchange cryptopia 3 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-03 15:01:22+00:00 1.0 1152809569 1735 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 14:06:13+00:00 1.0 1152809569 1733 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 13:34:32+00:00 1.0 1152809569 1731 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 12:43:32+00:00 1.0 1152809569 1730 under 6 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 11:03:21+00:00 1.0 1152809569 1712 under 8 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 09:02:22+00:00 1.0 1152809569 1711 less than 12 hours left till pump transfer some btc and lets profit pump exchange cryptopia 3 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-03 04:00:37+00:00 1.0 1152809569 1710 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-03 00:09:34+00:00 1.0 1152809569 1709 pump results coin was ufr open 2243 max 6268 exchange yobit price go to 250++ after coin announcent 2018-05-02 17:16:51+00:00 1.0 1152809569 1705 the coin to pump is ufr exchange yobitnet target +300 500 market ufrbtc 2018-05-02 17:00:04+00:00 1.0 1152809569 1704 next post will be coin name 2018-05-02 16:59:09+00:00 1.0 1152809569 1703 pump in 3 minutes time to make some real money 2018-05-02 16:57:05+00:00 1.0 1152809569 1702 pump in 5 minutes time to make some real money 2018-05-02 16:55:07+00:00 1.0 1152809569 1701 pump in 10 minutes time to make some real money 2018-05-02 16:50:09+00:00 1.0 1152809569 1700 pump in 15 minutes time to make some real money 2018-05-02 16:45:41+00:00 1.0 1152809569 1699 pump in 20 minutes time to make some real money 2018-05-02 16:40:05+00:00 1.0 1152809569 1697 pump in 30 minutes time to make some real money 2018-05-02 16:29:24+00:00 1.0 1152809569 1694 pump in 45 minutes time to make some real money 2018-05-02 16:15:20+00:00 1.0 1152809569 1690 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 16:01:28+00:00 1.0 1152809569 1689 pump in 1 hour time to make some real money 2018-05-02 16:01:22+00:00 1.0 1152809569 1687 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 16:01:02+00:00 1.0 1152809569 1686 3 min left next post coin name 2018-05-02 15:58:09+00:00 1.0 1152809569 1680 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it 2018-05-02 15:06:14+00:00 1.0 1152809569 1679 less than 1 hours left till pump transfer some btc and lets profit pump exchange cryptopia 2 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-02 15:01:12+00:00 1.0 1152809569 1678 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 14:01:55+00:00 1.0 1152809569 1676 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-02 13:34:44+00:00 1.0 1152809569 1672 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 13:02:09+00:00 1.0 1152809569 1671 less than 3 hours left till pump transfer some btc and lets profit pump exchange cryptopia 2 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-02 13:00:43+00:00 1.0 1152809569 1670 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 12:01:02+00:00 1.0 1152809569 1667 less than 6 hours left till pump transfer some btc and lets profit pump exchange cryptopia 2 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-02 10:00:46+00:00 1.0 1152809569 1666 under 8 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 09:02:43+00:00 1.0 1152809569 1663 less than 12 hours left till pump transfer some btc and lets profit pump exchange cryptopia 2 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-02 04:02:30+00:00 1.0 1152809569 1661 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-01 17:48:38+00:00 1.0 1152809569 1651 the coin to pump is iost exchange yobitnet target +300 500 market iostbtc 2018-05-01 17:01:30+00:00 1.0 1152809569 1650 next post will be coin name 2018-05-01 16:59:43+00:00 1.0 1152809569 1649 pump in 5 minutes time to make some real money 2018-05-01 16:55:53+00:00 1.0 1152809569 1648 pump in 5 minutes time to make some real money 2018-05-01 16:55:26+00:00 1.0 1152809569 1647 pump in 10 minutes time to make some real money 2018-05-01 16:50:21+00:00 1.0 1152809569 1646 pump in 15 minutes time to make some real money 2018-05-01 16:44:49+00:00 1.0 1152809569 1645 pump in 30 minutes time to make some real money 2018-05-01 16:32:45+00:00 1.0 1152809569 1644 pump in 30 minutes time to make some real money 2018-05-01 16:30:27+00:00 1.0 1152809569 1643 pump in 45 minutes time to make some real money 2018-05-01 16:15:21+00:00 1.0 1152809569 1641 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-01 16:11:43+00:00 1.0 1152809569 1639 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 16:03:15+00:00 1.0 1152809569 1636 3 min left next post coin name 2018-05-01 15:57:50+00:00 1.0 1152809569 1632 under 1 hours 30 minutes till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 15:31:13+00:00 1.0 1152809569 1630 less than 1 hours left till pump transfer some btc and lets profit pump exchange cryptopia 1 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-01 15:01:31+00:00 1.0 1152809569 1627 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 14:00:16+00:00 1.0 1152809569 1625 less than 3 hours left till pump transfer some btc and lets profit pump exchange cryptopia 1 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-01 13:01:21+00:00 1.0 1152809569 1624 under 4 hours 30 minutes till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 12:37:11+00:00 1.0 1152809569 1623 under 5 hours 50 minutes till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 11:10:44+00:00 1.0 1152809569 1621 less than 6 hours left till pump transfer some btc and lets profit pump exchange cryptopia 1 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-01 10:00:53+00:00 1.0 1152809569 1620 less than 12 hours left till pump transfer some btc and lets profit pump exchange cryptopia 1 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-01 04:00:43+00:00 1.0 1152809569 1618 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-04-30 17:36:02+00:00 1.0 1152809569 1616 the coin to pump is zrx exchange yobitnet target +300 500 market zrxbtc 2018-04-30 17:01:48+00:00 1.0 1152809569 1614 pump in 3 minutes time to make some real money 2018-04-30 16:59:56+00:00 1.0 1152809569 1613 pump in 10 minutes time to make some real money 2018-04-30 16:51:33+00:00 1.0 1152809569 1612 pump in 15 minutes time to make some real money 2018-04-30 16:45:11+00:00 1.0 1152809569 1611 pump in 30 minutes time to make some real money 2018-04-30 16:30:14+00:00 1.0 1152809569 1607 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-04-30 16:04:37+00:00 1.0 1152809569 1603 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-30 16:00:15+00:00 1.0 1152809569 1602 3 min left next post coin name 2018-04-30 15:57:50+00:00 1.0 1152809569 1594 less than 1 hours left till pump pump exchange cryptopia 30 april ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-04-30 15:00:56+00:00 1.0 1152809569 1593 pump in 2 hour time to make some real money we have a great news once again after a thorough study our team has selected an unbelievable coin it will fly easily to the moon 2018-04-30 15:00:10+00:00 1.0 1152809569 1592 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ 2018-04-30 14:37:12+00:00 1.0 1152809569 1591 under 3 till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it 2018-04-30 14:09:50+00:00 1.0 1152809569 1590 less than 3 hours left till pump pump exchange cryptopia 30 april ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-04-30 13:01:14+00:00 1.0 1152809569 1589 under 5 till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-30 12:00:09+00:00 1.0 1152809569 1588 under 6 till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-30 11:01:01+00:00 1.0 1152809569 1542 under 24 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-28 03:37:55+00:00 1.0 1152809569 1541 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-04-27 18:09:45+00:00 1.0 1152809569 1533 the coin to pump is pkt exchange yobitnet target +300 500 market pktbtc 2018-04-27 17:02:55+00:00 1.0 1152809569 1532 the coin to pump is pkt exchange yobitnet target +300 500 market pktbtc 2018-04-27 17:02:52+00:00 1.0 1152809569 1531 the coin to pump is pkt exchange yobitnet target +300 500 market pktbtc 2018-04-27 17:02:40+00:00 1.0 1152809569 1530 next post will be coin name 2018-04-27 16:59:09+00:00 1.0 1152809569 1529 pump in 2 minutes time to make some real money 2018-04-27 16:58:04+00:00 1.0 1152809569 1528 pump in 3 minutes time to make some real money 2018-04-27 16:57:09+00:00 1.0 1152809569 1527 pump in 5 minutes time to make some real money 2018-04-27 16:55:09+00:00 1.0 1152809569 1526 pump in 10 minutes time to make some real money 2018-04-27 16:50:10+00:00 1.0 1152809569 1525 pump in 15 minutes time to make some real money 2018-04-27 16:45:27+00:00 1.0 1152809569 1524 pump in 30 minutes time to make some real money 2018-04-27 16:31:42+00:00 1.0 1152809569 1522 pump in 1 hour time to make some real money 2018-04-27 16:00:23+00:00 1.0 1152809569 1521 pump in 2 hours time to make some real money 2018-04-27 15:02:24+00:00 1.0 1152809569 1520 pump in 3 hours time to make some real money 2018-04-27 14:00:31+00:00 1.0 1152809569 1519 pump in 4 hours time to make some real money 2018-04-27 13:00:53+00:00 1.0 1152809569 1518 pump in 5 hours time to make some real money 2018-04-27 12:00:19+00:00 1.0 1152809569 1515 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date friday 27th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-26 18:52:02+00:00 1.0 1152809569 1507 the coin to pump is heal exchange yobitnet target +300 500 market healbtc 2018-04-26 17:00:18+00:00 1.0 1152809569 1506 next post will be coin name 2018-04-26 16:59:08+00:00 1.0 1152809569 1505 pump in 3 minutes time to make some real money 2018-04-26 16:57:09+00:00 1.0 1152809569 1504 pump in 5 minutes time to make some real money 2018-04-26 16:55:04+00:00 1.0 1152809569 1503 pump in 10 minutes time to make some real money 2018-04-26 16:50:08+00:00 1.0 1152809569 1502 pump in 15 minutes time to make some real money 2018-04-26 16:45:05+00:00 1.0 1152809569 1501 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-04-26 16:40:28+00:00 1.0 1152809569 1500 pump in 30 minutes time to make some real money 2018-04-26 16:30:49+00:00 1.0 1152809569 1496 pump in 2 hours time to make some real money 2018-04-26 15:00:08+00:00 1.0 1152809569 1495 pump in 3 hours time to make some real money 2018-04-26 14:00:37+00:00 1.0 1152809569 1494 pump in 5 hours time to make some real money 2018-04-26 12:07:47+00:00 1.0 1152809569 1493 6 hours left to pump ⏰ time 5 pm gmt ⏰ exchange ➖ yobitio btc market attention please ‼️ trolling on chat and social media + spreading fomo are necessary for a successful pump everyone should do his part in writing on yobit chat or telegram groups or in person we are big family and every day we get more members so we all should do our part to participate in pumps and troll so no one get stuck and thats what the family do today i want you all to write on yobit chat and you will se the results long living fam 2018-04-26 11:00:50+00:00 1.0 1152809569 1492 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 810x from the original value it has the possibility of going even further 1525x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the start time along with a link to it on the selected exchange ⏳ 2018-04-26 09:16:03+00:00 1.0 1152809569 1490 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date thursday 26th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-26 06:50:14+00:00 1.0 1152809569 1489 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date thursday 26th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-26 02:39:50+00:00 1.0 1152809569 1486 guys we pumped this coin because even though we went to 200 profit yesterday some of you guys had some coins stuck because of some whale dumping their btc so we repumped this coin because we stick to our promises good luck and happy profits see you soon for next pump 2018-04-25 17:16:11+00:00 1.0 1152809569 1483 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-04-25 17:00:17+00:00 1.0 1152809569 1482 next post will be coin name 2018-04-25 16:59:06+00:00 1.0 1152809569 1474 pump in 2 hours time to make some real money 2018-04-25 15:00:26+00:00 1.0 1152809569 1473 pump in 3 hours time to make some real money 2018-04-25 14:00:09+00:00 1.0 1152809569 1471 pump in 4 hours 30 mins time to make some real money 2018-04-25 12:33:27+00:00 1.0 1152809569 1470 pump in 5 hours time to make some real money 2018-04-25 12:00:26+00:00 1.0 1152809569 1467 for all our new members welcome you stepped into a very private community of rich and elite people who makes tons of money every week in order to join our todays pump make sure your accounts on yobit are ready with full of btcs in it 2018-04-24 18:01:37+00:00 1.0 1152809569 1463 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date wednesday 25th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-23 21:36:05+00:00 1.0 1152809569 1462 results coin rr low 00000190 high 00000600 increase 200++ target crossed successfully volume 004 btc thanks to the dedicated marketing team we succeeded in closing tremendous profits today the team is getting stronger and volume is consistently growing congratulations to everyone who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next signal 2018-04-23 17:20:58+00:00 1.0 1152809569 1450 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-04-23 17:00:05+00:00 1.0 1152809569 1443 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-04-23 16:40:59+00:00 1.0 1152809569 1439 2 hours to go for a huge pump guys 2018-04-23 14:59:06+00:00 1.0 1152809569 1436 3 hours to go for a huge pump guys 2018-04-23 13:59:08+00:00 1.0 1152809569 1433 3 hours 30 mins to go for a huge pump guys 2018-04-23 13:29:14+00:00 1.0 1152809569 1432 4688426 for all our new members welcome you stepped into a very private community of rich and elite people who makes tons of money every week in order to join our todays pump make sure your accounts on yobit are ready with full of btcs in it 2018-04-23 12:52:10+00:00 1.0 1152809569 1431 4 hours 30 mins to go for a huge pump guys 2018-04-23 12:37:04+00:00 1.0 1152809569 1430 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date monday 23th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-23 11:53:44+00:00 1.0 1152809569 1429 holdtime hold until everyone makes profits ➕ we are going to choose a lowcapcoin which is going to reach high levels very easily the faster you buy the more you are going to profit here we are going to list the plan if everyone follows the plan then every member in this group is going to profit plan ➕ buyin as quickly as possible dont sell after 2 seconds straight away let the group firstly buyin you can even make a sell order after 1 minute but then place your order above the marketprice even if its only 1 satoshi remember we dont want to sell the coins to each other in the group we want to sell it to outside investors ➕ after buyingin and setting your sell order it is very important that everyone promotes the coin in the chatbox on yobitnet the chatbox is in the upper right corner of the site if noone sets a sellorder under the marketprice then the coin will pump even more and everyone is going to be able to sell it to the outside investors ➕ buy in bulks but sell it in little pieces set sellorders with 1020 of your coins at different prices this way there wont be big sell walls and the outside investors are going to fomo even more and the coin wont dump easily ➕ always buylow and sell high ➕ only participate with money you can afford to loose dont buyin with all of your money ➕ if you couldnt sell with profits and the coin is going to dump then dont panicsell there is always a chance that other pump groups or even our group might pump the same coin sooner or later again we always make sure that the true holders get their profits lets make together big money 2018-04-23 11:51:59+00:00 1.0 1152809569 1374 pump starts the coin to pump is xde2 exchange yobitnet target +300 500 market xde2btc 2018-04-07 18:59:04+00:00 1.0 1152809569 1366 pump in 2 hours time to make some real money насос за 2 час время чтобы сделать реальные деньги 2018-04-07 17:14:23+00:00 1.0 1152809569 1364 pump starts the coin to pump is arpa exchange yobitnet target +300 500 market arpabtc 2018-04-07 17:01:20+00:00 1.0 1152809569 1363 pump starts the coin to pump is arpa exchange yobitnet target +300 500 market arpabtc 2018-04-07 17:00:17+00:00 1.0 1152809569 1361 last 5 minutes exchange is yobit login to your yobitneten 2018-04-07 16:56:14+00:00 1.0 1152809569 1360 last 10 minutes exchange is yobit 2018-04-07 16:51:21+00:00 1.0 1152809569 1356 hold pump announcement less than 1 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 16:01:13+00:00 1.0 1152809569 1355 hold pump announcement less than 2 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 15:01:39+00:00 1.0 1152809569 1354 pump in 4 hours time to make some real money насос за 4 час время чтобы сделать реальные деньги 2018-04-07 15:01:29+00:00 1.0 1152809569 1353 hold pump announcement less than 3 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 14:01:11+00:00 1.0 1152809569 1352 pump in 5 hours time to make some real money насос за 5 час время чтобы сделать реальные деньги 2018-04-07 14:00:00+00:00 1.0 1152809569 1350 hold pump announcement less than 4 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 13:01:10+00:00 1.0 1152809569 1349 hold pump announcement less than 5 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 12:01:15+00:00 1.0 1152809569 1348 hold pump announcement less than 6 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april ⏰time 500pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-07 11:04:20+00:00 1.0 1152809569 1346 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7th april saturday ⏰time 700pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-07 06:46:05+00:00 1.0 1152809569 1345 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 7thapril saturday ⏰time 500pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-07 06:08:56+00:00 1.0 1152809569 1332 pump starts the coin to pump is snt exchange yobitnet target +300 500 market sntbtc 2018-04-06 19:00:06+00:00 1.0 1152809569 1331 1 min to go next post is coin name dont forget to troll the coin name on chat box we need outsiders 2018-04-06 18:59:05+00:00 1.0 1152809569 1323 pump in 1 hour time to make some real money насос за 1 час время чтобы сделать реальные деньги 2018-04-06 18:00:09+00:00 1.0 1152809569 1322 pump in 2 hours time to make some real money насос за 2 час время чтобы сделать реальные деньги 2018-04-06 17:00:04+00:00 1.0 1152809569 1321 pump in 3 hours time to make some real money насос за 3 час время чтобы сделать реальные деньги 2018-04-06 16:00:06+00:00 1.0 1152809569 1320 pump in 4 hours time to make some real money насос за 4 час время чтобы сделать реальные деньги 2018-04-06 15:00:02+00:00 1.0 1152809569 1319 pump in 5 hours time to make some real money насос за 5 час время чтобы сделать реальные деньги 2018-04-06 14:03:03+00:00 1.0 1152809569 1317 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 6th april friday ⏰time 700pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-05 16:32:20+00:00 1.0 1152809569 1314 leader pump in 2 hours 35 time to make some real money насос за 3 час время чтобы сделать реальные деньги 2018-04-05 16:25:59+00:00 1.0 1152809569 1311 3 min next post coin name 2018-04-05 15:57:53+00:00 1.0 1152809569 1306 hold pump announcement less than 1 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 15:00:18+00:00 1.0 1152809569 1304 hold pump announcement less than 3 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 13:00:26+00:00 1.0 1152809569 1303 hold pump announcement less than 6 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 10:00:18+00:00 1.0 1152809569 1302 hold pump announcement less than 12 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 04:00:13+00:00 1.0 1152809569 1301 hold pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-04 23:00:11+00:00 1.0 1152809569 1299 pump starts the coin to pump is tix in ltc market exchange cryptopia target +1000 10000 market tixltc 2018-04-04 20:00:24+00:00 1.0 1152809569 1298 ⏰ last 4 minutes exchange cryptopia market ltc ltc pairing u should have ltc to enter in this 1000 + pump time to make some real money dont miss 2018-04-04 19:57:12+00:00 1.0 1152809569 1297 ⏰ 20 minutes pump instructions its ltc pairing pump everyone should hv ltc who havent buy ltc from btc now join pump via coin link or click on ltc then put coin name in search and buysee 2018-04-04 19:55:16+00:00 1.0 1152809569 1289 pump starts the coin to pump is fntb exchange yobitnet target +300 500 market fntbbtc 2018-04-04 19:00:01+00:00 1.0 1152809569 1279 pump in 2 hours time to make some real money насос за 2 час время чтобы сделать реальные деньги 2018-04-04 17:11:42+00:00 1.0 1152809569 1277 pump in 3 hours time to make some real money насос за 3 час время чтобы сделать реальные деньги 2018-04-04 16:09:38+00:00 1.0 1152809569 1274 pump in 5 hours time to make some real money насос за 5 час время чтобы сделать реальные деньги 2018-04-04 13:47:46+00:00 1.0 1152809569 1273 pump instructions its ltc pairing pump everyone should hv ltc who havent buy ltc from btc now join pump via coin link or click on ltc then put coin name in search and buysee pic 10k 2018-04-04 08:56:41+00:00 1.0 1152809569 1269 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 4th april wednesday ⏰time 700pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-04 04:52:06+00:00 1.0 1152809569 1264 pump starts the coin to pump is neu exchange yobitnet target +300 500 market neubtc 2018-04-03 19:00:08+00:00 1.0 1152809569 1263 2 minutes to go next post will be coin 2018-04-03 18:58:03+00:00 1.0 1152809569 1257 pump in 15 minutes time to make some real money насос за 15 mins время чтобы сделать реальные деньги 2018-04-03 18:45:09+00:00 1.0 1152809569 1256 as we can see today the market was stable trying to pull back its a good time today because even in the red market weve done legendary things as always so get ready for todays pump 2018-04-03 18:43:16+00:00 1.0 1152809569 1255 pump in 30 minutes time to make some real money насос за 30 mins время чтобы сделать реальные деньги 2018-04-03 18:31:56+00:00 1.0 1152809569 1254 pump in 45 minutes time to make some real money насос за 45 mins время чтобы сделать реальные деньги 2018-04-03 18:15:41+00:00 1.0 1152809569 1253 pump in 60 minutes time to make some real money насос за 60 mins время чтобы сделать реальные деньги 2018-04-03 17:57:18+00:00 1.0 1152809569 1252 pump in 2 hours time to make some real money насос за 2 час время чтобы сделать реальные деньги 2018-04-03 17:00:48+00:00 1.0 1152809569 1251 pump in 4 hours time to make some real money насос за 4 час время чтобы сделать реальные деньги 2018-04-03 15:01:39+00:00 1.0 1152809569 1250 pump in 5 hours time to make some real money насос за 5 час время чтобы сделать реальные деньги 2018-04-03 14:03:01+00:00 1.0 1152809569 1248 superb pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 3rd april tuesday ⏰time 700pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-02 19:14:05+00:00 1.0 1152809569 1247 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 3nd april tuesday ⏰time 700pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-02 19:13:13+00:00 1.0 1152809569 1234 pump starts the coin to pump is ing exchange yobitnet target +400 500 market ingbtc 2018-04-02 19:00:10+00:00 1.0 1152809569 1233 2 minutes to go next post will be the coin name 2018-04-02 18:58:00+00:00 1.0 1152809569 1230 10 minutes left to pump exchange➖ yobit btc market rocket 10 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:50:03+00:00 1.0 1152809569 1229 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:45:01+00:00 1.0 1152809569 1227 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:30:01+00:00 1.0 1152809569 1226 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:15:00+00:00 1.0 1152809569 1224 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 17:00:02+00:00 1.0 1152809569 1215 pump will be at the same time as yesterday ie 7 pm gmt reminders will be posted 2018-04-02 08:33:27+00:00 1.0 1152809569 1192 pump starts the coin to pump is mth exchange yobitnet target +200 2018-04-01 19:00:03+00:00 1.0 1152809569 1191 2 minutes to go next post will be the coin name 2018-04-01 18:58:03+00:00 1.0 1152809569 1186 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 18:45:04+00:00 1.0 1152809569 1184 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 18:30:01+00:00 1.0 1152809569 1183 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 18:15:01+00:00 1.0 1152809569 1181 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 17:00:03+00:00 1.0 1152809569 1169 next pump tomorrow time 1900 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-31 19:51:23+00:00 1.0 1152809569 1147 pump starts the coin to pump is vvi exchange yobitnet target +700 2018-03-31 19:00:07+00:00 1.0 1152809569 1146 2 minutes to go next post will be the coin 2018-03-31 18:58:03+00:00 1.0 1152809569 1142 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 18:45:03+00:00 1.0 1152809569 1140 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-03-31 18:41:58+00:00 1.0 1152809569 1139 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 18:30:02+00:00 1.0 1152809569 1138 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 18:15:02+00:00 1.0 1152809569 1136 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 17:00:02+00:00 1.0 1152809569 1133 we have a great news for you we have selected an exceptional coin for the pump today it has no sell walls and will return huge profits participate today if you like btc 2018-03-31 14:31:22+00:00 1.0 1152809569 1129 pump will be at the same time as yesterday ie 7 pm gmt reminders will be posted 2018-03-31 09:22:44+00:00 1.0 1152809569 1104 pump starts the coin to pump is ssh exchange yobitnet target +400 500 market url sshbtc 2018-03-30 19:00:01+00:00 1.0 1152809569 1103 2 minutes to go next post will be the coin name 2018-03-30 18:58:00+00:00 1.0 1152809569 1099 14 minutes left to pump exchange➖ yobit btc market rocket 14 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:46:01+00:00 1.0 1152809569 1098 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:45:04+00:00 1.0 1152809569 1097 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:45:01+00:00 1.0 1152809569 1096 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:30:04+00:00 1.0 1152809569 1095 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:15:03+00:00 1.0 1152809569 1093 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 17:00:02+00:00 1.0 1152809569 1088 we have a great news for you we have selected an exceptional coin for the pump today it has no sell walls and will return huge profits participate today if you like btc 2018-03-30 12:32:47+00:00 1.0 1152809569 1087 pump will be at the same time as yesterday ie 7 pm gmt reminder will be posted 2018-03-30 07:17:11+00:00 1.0 1152809569 1056 pump starts pump starts the coin to pump is vvibtc exchange yobitnet target +700 2018-03-29 19:00:02+00:00 1.0 1152809569 1047 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 18:45:05+00:00 1.0 1152809569 1046 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 18:30:07+00:00 1.0 1152809569 1045 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 18:15:05+00:00 1.0 1152809569 1043 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 16:59:07+00:00 1.0 1152809569 1041 clock is ticking time is approaching we will create history today our team has made special arrangements today dont miss out today 3 hours and 30 minutes to go 2018-03-29 15:30:46+00:00 1.0 1152809569 1039 we have a great news for you we have selected an exceptional coin for the pump today it has no sell walls and will return huge profits participate today if you like btc 2018-03-29 14:43:49+00:00 1.0 1152809569 1035 its big day we are going to have one big collaborative pump today time 7 pm gmt exchange yobit 2018-03-29 06:35:08+00:00 1.0 1152809569 1034 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date thursday 29th march ⏰time 700 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-03-28 17:41:16+00:00 1.0 1152809569 1033 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ dear all on the demand of most members we have decided to change our daily pump time our pump time will be 7pm gmt we are resuming our pumps from tomorrow in the past few days we were concentrating on active marketing we expect massive pumps with thousands joining from telegram twitter and other forums we will continue to pump at yobit coz we love it remember the time 7 pm gmt more details and reminders to follow soon 2018-03-28 16:52:08+00:00 1.0 1152809569 1031 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ dear all on the demand of most members we have decided to change our daily pump time our pump time will be 7pm gmt we are resuming our pumps from tomorrow in the past few days we were concentrating on active marketing we expect massive pumps with thousands joining from telegram twitter and other forums we will continue to pump at yobit coz we love it remember the time 7 pm gmt more details and reminders to follow soon 2018-03-28 16:47:58+00:00 1.0 1152809569 1016 pump announcement date tuesday 27th of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ 2018-03-27 07:46:08+00:00 1.0 1152809569 1013 pump starts the coin to pump is vega exchange yobitnet target +300 market url 2018-03-25 14:00:09+00:00 1.0 1152809569 1009 10 minutes left to pump exchange➖ yobit btc market 2018-03-25 13:50:04+00:00 1.0 1152809569 1008 15 minutes left to pump exchange➖ yobit btc market 15 минут до самого большого насоса сегодня монета действительно особенная yeobit мы собираемся 2018-03-25 13:45:03+00:00 1.0 1152809569 1007 30 minutes left to pump exchange➖ yobit btc market 30 минут до самого большого насоса сегодня монета действительно особенная yeobit мы собираемся 2018-03-25 13:30:01+00:00 1.0 1152809569 1006 45 minutes left to pump exchange➖ yobit btc market 45 минут до самого большого насоса сегодня монета действительно особенная yeobit мы собираемся 2018-03-25 13:15:03+00:00 1.0 1152809569 1005 1 hour left to pump exchange➖ yobit btc market 2018-03-25 13:00:01+00:00 1.0 1152809569 1003 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-25 02:55:41+00:00 1.0 1152809569 1002 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-24 15:52:23+00:00 1.0 1152809569 996 pump starts the coin to pump is qtg exchange yobitnet target +300 market url 2018-03-24 14:00:00+00:00 1.0 1152809569 992 10 minutes left to pump good job chatfuel will send the message to all of your subscribers 10 minutes left to pump coinpumpsonline 2018-03-24 13:51:27+00:00 1.0 1152809569 989 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-24 13:45:02+00:00 1.0 1152809569 988 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-24 13:30:02+00:00 1.0 1152809569 987 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-24 13:15:03+00:00 1.0 1152809569 985 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-24 12:00:00+00:00 1.0 1152809569 983 leader 3 hours 15 min left to pump exchange➖ yobit btc market ракета осталось 4 часа ракета сегодня монета действительно особенная yeobit мы собираемся if you are facing any problem in bot then you can cantact us please comment 2018-03-24 10:45:43+00:00 1.0 1152809569 981 4 hours 17minleft to pump exchange➖ yobit btc market 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-24 09:44:20+00:00 1.0 1152809569 980 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-24 09:39:56+00:00 1.0 1152809569 979 4 hours 43 minutes left to pump exchange➖ yobit btc market ракета осталось 4 часа и 43 минут ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-24 09:17:23+00:00 1.0 1152809569 975 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-23 18:23:23+00:00 1.0 1152809569 971 pump starts the coin to pump is qtg exchange yobitnet target +300 500 market url 2018-03-23 14:00:36+00:00 1.0 1152809569 970 pump starts the coin to pump is qtg exchange yobitnet target +300 500 market url 2018-03-23 14:00:04+00:00 1.0 1152809569 967 5 minutes to go get ready 2018-03-23 13:55:03+00:00 1.0 1152809569 966 10 minutes left for yobit biggest pump coin is very special today 2018-03-23 13:50:03+00:00 1.0 1152809569 965 20 minutes left to pump exchange➖ yobit btc market 20 минитесь слева для насоса сегодня монета действительно особенная йобит мы идем 2018-03-23 13:40:00+00:00 1.0 1152809569 964 30 minutes left to pump exchange➖ yobit btc market 30 минитесь слева для насоса сегодня монета действительно особенная йобит мы идем 2018-03-23 13:30:03+00:00 1.0 1152809569 963 1 hours left to pump exchange➖ yobit btc market 1 часов сегодня монета действительно особенная йобит мы идем 2018-03-23 13:00:01+00:00 1.0 1152809569 961 2 hours left to pump exchange➖ yobit btc market 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-23 12:00:05+00:00 1.0 1152809569 959 2 hours 30 min left to pump exchange➖ yobit btc market 3 часов сегодня монета действительно особенная йобит мы идем 2018-03-23 11:32:38+00:00 1.0 1152809569 936 1 hours left to pump exchange➖ yobit btc market 1 часов сегодня монета действительно особенная йобит мы идем 2018-03-22 13:00:03+00:00 1.0 1152809569 935 1 hours 30 minutes left to pump exchange➖ yobit btc market 1 часов 30 минитесь слева для насоса сегодня монета действительно особенная йобит мы идем 2018-03-22 12:30:04+00:00 1.0 1152809569 934 2 hours left to pump exchange➖ yobit btc market 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-22 12:00:02+00:00 1.0 1152809569 933 2 hours 20 minutes left to pump exchange➖ yobit btc market 2 часов 20 минитесь сегодня монета действительно особенная йобит мы идем 2018-03-22 11:41:03+00:00 1.0 1152809569 928 pump starts the coin to pump is lion exchange yobitnet target +300 market url 2018-03-21 14:00:09+00:00 1.0 1152809569 927 2 minutes to go next post will be the coin 2018-03-21 13:58:01+00:00 1.0 1152809569 919 only 5 hours to go we are going to the moon in 2 hours exchange is yobit get ready guys всего 5 часа мы собираемся на луну через 2 часа обмен yobit приготовься ребят 2018-03-21 12:00:04+00:00 1.0 1152809569 918 only 3 hours to go we are going to the moon in 2 hours exchange is yobit get ready guys всего 3 часа мы собираемся на луну через 2 часа обмен yobit приготовься ребят 2018-03-21 11:00:01+00:00 1.0 1152809569 917 only 5 hours to go we are going to the moon in 2 hours exchange is yobit get ready guys всего 5 часа мы собираемся на луну через 2 часа обмен yobit приготовься ребят 2018-03-21 09:16:59+00:00 1.0 1152809569 916 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-20 15:02:31+00:00 1.0 1152809569 915 pump anaylsis bln initial price 000001007 ✅ price change 000001007 to 000002840 volume 05 btc coin was at peak for 12 mins we did 280+ yobitpump 2018-03-20 14:28:46+00:00 1.0 1152809569 914 pump anaylsis bln initial price 000001007 ✅ price change 000001007 to 000002840 volume 05 btc coin was at peak for 12 mins we did 280+ 2018-03-20 14:20:55+00:00 1.0 1152809569 899 pump starts the coin to pump is bln exchange yobitnet target +300 market url 2018-03-20 14:00:02+00:00 1.0 1152809569 898 2 minutes to go next post will be the coin 2018-03-20 13:58:01+00:00 1.0 1152809569 886 5 hours left to pump exchange➖ yobit btc market 5 часов сегодня монета действительно особенная йобит мы идем 2018-03-20 08:47:16+00:00 1.0 1152809569 885 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-19 17:30:08+00:00 1.0 1152809569 883 pump anaylsis toqr initial price 000007514 ✅ price change 000010000 to 000023000 volume 5 btc coin was at peak for 8 mins we did 120+ 2018-03-19 14:10:57+00:00 1.0 1152809569 875 pump starts the coin to pump is torq exchange yobitnet target +300 market url 2018-03-19 14:00:02+00:00 1.0 1152809569 873 2 minutes to go next post will be the coin 2018-03-19 13:58:02+00:00 1.0 1152809569 860 5 hours left to pump exchange➖ yobit btc market 5 часов сегодня монета действительно особенная йобит мы идем 2018-03-19 09:00:03+00:00 1.0 1152809569 859 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-18 19:04:17+00:00 1.0 1152809569 858 pump anaylsis mgo initial price 000000441 ✅ price change 000004412 to 00001130 volume 15 btc coin was at peak for 19 mins we did 300+ 2018-03-18 14:20:09+00:00 1.0 1152809569 847 pump starts the coin to pump is mgo exchange yobitnet target +300 market url 2018-03-18 14:00:04+00:00 1.0 1152809569 846 2 minutes to go next post will be the coin 2018-03-18 13:58:03+00:00 1.0 1152809569 833 5 hours left to pump exchange➖ yobit btc market 5 часов сегодня монета действительно особенная йобит мы идем 2018-03-18 09:00:05+00:00 1.0 1152809569 832 good morning everyone as promised we are going to make it a very special saturday for all of you we have made agreements with big ventures on twitter with thousands of followers it is deemed to be a huge and big pump today remember the time is 1400 hrs gmt 9 hours from now 2018-03-18 05:03:54+00:00 1.0 1152809569 831 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-17 16:36:30+00:00 1.0 1152809569 830 pump anaylsis chsb initial price 000000591 ✅ price change 00000591 to 000001410 volume 080 btc coin was at peak for 7 mins we did 270+ 2018-03-17 14:15:17+00:00 1.0 1152809569 820 pump starts the coin to pump is chsb exchange yobitnet target +300 market url 2018-03-17 13:59:09+00:00 1.0 1152809569 819 2 minutes to go next post will be the coin 2018-03-17 13:58:00+00:00 1.0 1152809569 804 5 hours left to pump exchange➖ yobit btc market 5 часов сегодня монета действительно особенная йобит мы идем 2018-03-17 09:00:04+00:00 1.0 1152809569 803 good morning everyone as promised we are going to make it a very special saturday for all of you we have made agreements with big ventures on twitter with thousands of followers it is deemed to be a huge and big pump today remember the time is 1400 hrs gmt approx 8 hours and 15 minutes from now 2018-03-17 05:44:16+00:00 1.0 1152809569 802 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-16 16:30:30+00:00 1.0 1152809569 792 pump starts the coin to pump is ae exchange yobitnet target +300 market url 2018-03-16 14:00:09+00:00 1.0 1152809569 791 2 minutes to go next post will be the coin 2018-03-16 13:58:06+00:00 1.0 1152809569 779 5 hours left to pump exchange➖ yobit btc market 5 часов сегодня монета действительно особенная йобит мы идем 2018-03-16 09:00:05+00:00 1.0 1152809569 778 good morning everyone as promised we are going to make it a very special friday for all of you we have made agreements with big ventures on twitter with thousands of followers it is deemed to be a huge and big pump today remember the time is 1400 hrs gmt approx 5 hours and 45 minutes from now 2018-03-16 08:17:36+00:00 1.0 1152809569 776 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date friday 16th march ⏰time 2pm gmt exchange yobitnet target 300+ ➖➖➖➖➖➖➖➖ if you havent got an account yet set one up and transfer some btc to get ready checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates all we can say is this pump is going to be huge do not miss out or youll be kicking yourself more details and reminders to follow soon 2018-03-15 15:00:10+00:00 1.0 1152809569 774 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-15 14:48:02+00:00 1.0 1152809569 773 pump anaylsis ppt nitial price 000001501 ✅ price change 000350000 to 000160005 volume 042btc coin was at peak for 10 mins we did super great 2018-03-15 14:18:01+00:00 1.0 1152809569 771 well done guys you guys were amazing today coin stayed at peak all the time during pump did you notice troll box it was flooded with ppt 2018-03-15 14:10:11+00:00 1.0 1152809569 770 pump starts the coin to pump is ppt exchange yobitnet target +300 500 market url 2018-03-15 14:00:02+00:00 1.0 1152809569 760 announcement this is going to be a huge pump we have got more than 50000 participants from twitter joining today coin has bee carefully selected and is going to be coin of the day on yobit you will miss a lot for not participating 2018-03-15 12:14:33+00:00 1.0 1152809569 757 5 hours left to pump exchange➖ yobit btc market 5 часов сегодня монета действительно особенная йобит мы идем 2018-03-15 09:00:03+00:00 1.0 1152809569 754 pump announcement date thursday 15 of march time 3 pm gmt ⌚ exchange yobitnet 2018-03-14 19:09:50+00:00 1.0 1152809569 753 pump anaylsis emt nitial price 000001501 ✅ price change 000001501 to 000006600 volume 054btc coin was at peak for 5 mins we did 330+ 2018-03-14 14:39:47+00:00 1.0 1152809569 742 pump starts the coin to pump is emt exchange yobitnet target +500 market url 2018-03-14 13:59:59+00:00 1.0 1152809569 741 2 minutes to go next post will be the coin 2018-03-14 13:58:02+00:00 1.0 1152809569 732 3 hours to go get ready its going to be a huge huge pump we are doing something special for you today 2018-03-14 11:00:03+00:00 1.0 1152809569 728 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-13 17:42:22+00:00 1.0 1152809569 721 pump starts the coin to pump is cl exchange yobitnet target +500 market url 2018-03-13 14:00:11+00:00 1.0 1152809569 720 2 minutes to go next post will be the coin 2018-03-13 13:58:03+00:00 1.0 1152809569 711 2 hours left to pump exchange➖ yobit btc market countdown 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-13 12:00:01+00:00 1.0 1152809569 706 next pump tomorrow time 1400 hrs gmt exchange yobit 2018-03-12 19:06:41+00:00 1.0 1152809569 704 pump tomorrow date sunday 11th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet its sundayfunday make some bucks and go party hard 2018-03-10 18:25:31+00:00 1.0 1152809569 701 5 minutes to go exchange yobit 5 минут обмен yobit 2018-03-10 15:55:03+00:00 1.0 1152809569 700 pump in 10 minutes countdown time to make some real money насос за 10 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-10 15:50:28+00:00 1.0 1152809569 699 pump in 15 minutes countdown time to make some real money насос за 15 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-10 15:47:08+00:00 1.0 1152809569 698 pump in 20 minutes countdown time to make some real money насос за 20 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-10 15:40:58+00:00 1.0 1152809569 697 pump in 60 minutes date saturday 10th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-10 15:00:12+00:00 1.0 1152809569 696 pump in 2 hours date saturday 10th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-10 14:00:50+00:00 1.0 1152809569 695 pump in 3 hours date saturday 10th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-10 13:03:42+00:00 1.0 1152809569 694 pump announcement date saturday 10th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-10 05:14:03+00:00 1.0 1152809569 691 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-09 15:58:23+00:00 1.0 1152809569 689 5 minutes to go exchange yobit 5 минут обмен yobit 2018-03-09 15:57:01+00:00 1.0 1152809569 688 10 minutes to go exchange yobit 10 минут обмен yobit 2018-03-09 15:50:17+00:00 1.0 1152809569 687 pump in 15 minutes date friday 9th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-09 15:45:54+00:00 1.0 1152809569 686 pump in 30 minutes date friday 9th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-09 15:31:10+00:00 1.0 1152809569 685 pump in 45 minutes date friday 9th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-09 15:16:25+00:00 1.0 1152809569 682 pump in 60 minutes date friday 9th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-09 15:00:04+00:00 1.0 1152809569 675 1 hours left to yobit pump 2018-03-09 14:12:33+00:00 1.0 1152809569 674 pump in 2 hours date friday 9th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-09 14:08:38+00:00 1.0 1152809569 673 2 hours left to yobit pump 2018-03-09 13:01:02+00:00 1.0 1152809569 672 pump in 3 hours date friday 9th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-09 13:00:04+00:00 1.0 1152809569 671 pump in 4 hours date friday 9th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-09 12:00:02+00:00 1.0 1152809569 670 3 hours left to yobit pump 2018-03-09 12:00:02+00:00 1.0 1152809569 669 4 hours left to yobit pump 2018-03-09 11:00:02+00:00 1.0 1152809569 668 5 hours left to yobit pump 2018-03-09 10:00:51+00:00 1.0 1152809569 667 pump in 6 hours date friday 9th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-09 10:00:01+00:00 1.0 1152809569 666 6 hours left to yobit pump 2018-03-09 09:01:19+00:00 1.0 1152809569 665 pump in 12 hours date friday 9th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-09 04:00:20+00:00 1.0 1152809569 664 pump in 18 hours date friday 9th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-08 22:00:14+00:00 1.0 1152809569 663 pump tomorrow date friday 9th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-08 17:48:40+00:00 1.0 1152809569 662 pump announcement date today friday 9th of march time 3 pm gmt 1500 uk time ⌚ exchange yobitnet countdown watch⌚ 2018-03-08 17:39:42+00:00 1.0 1152809569 661 pump anaylsis chat initial price 000000089 ✅ price change 000000089 to 000000355 volume 086 btc pump duration 10 minutes we are killing it 2018-03-08 16:18:15+00:00 1.0 1152809569 659 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-08 15:58:00+00:00 1.0 1152809569 657 5 minutes to go exchange yobit 5 минут обмен yobit 2018-03-08 15:55:00+00:00 1.0 1152809569 656 pump in 10 minutes countdown time to make some real money насос за 10 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-08 15:50:02+00:00 1.0 1152809569 655 pump in 15 minutes countdown time to make some real money насос за 15 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-08 15:45:35+00:00 1.0 1152809569 654 pump in 30 minutes countdown time to make some real money насос за 30 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-08 15:32:47+00:00 1.0 1152809569 653 pump in 45 minutes countdown time to make some real money насос за 45 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-08 15:15:32+00:00 1.0 1152809569 650 pump in 60 minutes date thursday 8th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-08 15:04:14+00:00 1.0 1152809569 649 pump in 60 minutes date thursday 8th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-08 15:04:00+00:00 1.0 1152809569 646 next post will be the coin name 2018-03-08 14:57:05+00:00 1.0 1152809569 640 pump in 2 hours date thursday 8th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-08 14:01:44+00:00 1.0 1152809569 634 pump in 4 hours date thursday 8th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-08 13:00:46+00:00 1.0 1152809569 633 pump in 6 hours date thursday 8th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-08 10:00:18+00:00 1.0 1152809569 632 pump in 12 hours date thursday 8th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-08 04:00:26+00:00 1.0 1152809569 631 pump tomorrow date thursday 8th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-07 17:39:00+00:00 1.0 1152809569 626 pump starts the coin to pump is dtcn exchange yobitnet market url 2018-03-07 16:00:37+00:00 1.0 1152809569 625 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-07 15:58:52+00:00 1.0 1152809569 623 5 minutes to go exchange yobit 5 минут обмен yobit 2018-03-07 15:55:02+00:00 1.0 1152809569 622 pump in 10 minutes countdown time to make some real money насос за 10 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-07 15:50:56+00:00 1.0 1152809569 620 pump in 15 minutes countdown time to make some real money насос за 15 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-07 15:45:01+00:00 1.0 1152809569 619 pump in 30 minutes date wednesday 7th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-07 15:30:00+00:00 1.0 1152809569 618 pump in 45minutes date wednesday 7th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-07 15:17:09+00:00 1.0 1152809569 617 pump in 60 minutes date wednesday 7th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-07 15:00:19+00:00 1.0 1152809569 616 pump in 2 hours date wednesday 7th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-07 14:00:16+00:00 1.0 1152809569 615 pump in 3 hours date wednesday 7th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-07 13:09:03+00:00 1.0 1152809569 614 pump in 4 hours date wednesday 7th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-07 12:00:56+00:00 1.0 1152809569 613 pump in 6 hours date wednesday 7th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-07 10:00:27+00:00 1.0 1152809569 612 pump in 12 hours date tuesday 6th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-07 04:01:07+00:00 1.0 1152809569 611 pump tomorrow date wednesday 7th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-06 18:26:20+00:00 1.0 1152809569 606 pump results coin amber open sat 61 high sat 220 volume 066 btc overall gain 26066 this is what im talking about we did exactly what we did yesterday except we hit a much higher percent we are becoming the gold standard for the pump community not only are we hitting great percents but we are holding for a very long time todays pump stayed at its peak for 27 minutes this is only the beginning stay awesome 2018-03-06 17:00:17+00:00 1.0 1152809569 600 pump starts the coin to pump is amber exchange yobit net market url 2018-03-06 15:59:48+00:00 1.0 1152809569 581 pump results coin moto open sat 256 high sat 689 volume 019 btc overall gain 16914 wow thats all i can say yes today wasnt our highest pump but we are still at the peak 30 minutes later this is what im talking about this is how we all get out with a profit dont sell if you get stuck from now on trust that the coin will increase to give you profit stay awesome 2018-03-05 17:09:51+00:00 1.0 1152809569 570 pump starts the coin to pump is moto exchange yobit net market url 2018-03-05 16:00:12+00:00 1.0 1152809569 569 1 minutes to go next post will be the coin name 1 минуты следующий пост будет именем монеты 2018-03-05 15:59:55+00:00 1.0 1152809569 566 5 minutes to go exchange yobit 5 минут обмен yobit 2018-03-05 15:56:09+00:00 1.0 1152809569 565 pump in 10 minutes countdown time to make some real money насос за 10 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-05 15:50:00+00:00 1.0 1152809569 564 pump in 15 minutes countdown time to make some real money насос за 15 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-05 15:45:47+00:00 1.0 1152809569 563 pump in 30 minutes countdown time to make some real money насос за 30 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-05 15:31:12+00:00 1.0 1152809569 562 pump in 45 minutes countdown time to make some real money насос за 45 минут обратный отсчет время чтобы сделать реальные деньги 2018-03-05 15:15:38+00:00 1.0 1152809569 561 pump in 60 minutes date sunday 4th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-05 15:00:25+00:00 1.0 1152809569 560 pump in 2 hours date sunday 4th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-05 14:00:41+00:00 1.0 1152809569 559 pump in 3 hours date sunday 4th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-05 13:00:09+00:00 1.0 1152809569 558 pump in 4 hours date sunday 4th of march hour 400pm gmt 16h ⌚ exchange yobit yobitnet time to make some real money 2018-03-05 12:00:06+00:00 1.0 1152809569 555 pump in 6 hours date sunday 4th of march hour 400pm gmt 16h ⌚️ exchange yobit yobitnet time to make some real money 2018-03-05 10:22:28+00:00 1.0 1152809569 546 pump starts the coin to pump is tds exchange yobitnet target +300 market url 2018-03-04 17:00:03+00:00 1.0 1152809569 545 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-04 16:58:03+00:00 1.0 1152809569 537 2 hours left to pump exchange➖ yobit btc market countdown 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-04 15:00:01+00:00 1.0 1152809569 533 pump announcement date sunday 4th of march 03042018 hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-03-04 06:01:14+00:00 1.0 1152809569 515 pump starts the coin to pump is smc exchange yobitnet target +300 market url 2018-03-03 17:00:01+00:00 1.0 1152809569 514 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-03 16:58:02+00:00 1.0 1152809569 511 10 minutes to go exchange yobit 10 минут обмен yobit 2018-03-03 16:50:01+00:00 1.0 1152809569 506 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date 3032017 exchange➖ yobit btc market 2018-03-03 16:00:02+00:00 1.0 1152809569 505 2 hours left to pump exchange➖ yobit btc market countdown 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-03 15:00:04+00:00 1.0 1152809569 502 pump announcement date saturday 3rd of march 03032018 hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-03-03 12:25:18+00:00 1.0 1152809569 501 4 hours 38 minutes left to pump exchange➖ yobit btc market countdown 2018-03-03 12:22:46+00:00 1.0 1152809569 495 we are 5 minutes into pump and going up 2018-03-02 17:05:52+00:00 1.0 1152809569 492 pump starts the coin to pump is tnt exchange yobitnet target +300 market url 2018-03-02 17:00:04+00:00 1.0 1152809569 491 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-02 16:58:02+00:00 1.0 1152809569 488 10 minutes to go exchange yobit 10 минут обмен yobit 2018-03-02 16:50:01+00:00 1.0 1152809569 483 get ready you dont want to miss it we have a big yobit pump coming in 30 minutes from now get your laptops ready 2018-03-02 16:27:09+00:00 1.0 1152809569 481 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date ➖2032017 exchange➖ yobit btc market 2018-03-02 16:00:04+00:00 1.0 1152809569 480 2 hours left to pump exchange➖ yobit btc market countdown 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-02 15:00:02+00:00 1.0 1152809569 474 big friday big pump join in today 2018-03-02 09:00:48+00:00 1.0 1152809569 473 pump announcement 7 hours 34 minutes left date friday 2nd of march hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-03-02 07:26:59+00:00 1.0 1152809569 471 pump announcement date friday 2nd of march hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-03-01 18:55:09+00:00 1.0 1152809569 470 pump announcement date friday 2nd of march hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-03-01 17:20:20+00:00 1.0 1152809569 456 pump starts the coin to pump is rea exchange yobitnet target +300 market url 2018-03-01 17:00:06+00:00 1.0 1152809569 455 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-01 16:58:02+00:00 1.0 1152809569 452 10 minutes to go exchange yobit 10 минут обмен yobit 2018-03-01 16:50:00+00:00 1.0 1152809569 448 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date ➖1032017 exchange➖ yobit btc market 2018-03-01 16:00:02+00:00 1.0 1152809569 447 2 hours left to pump exchange➖ yobit btc market countdown 2 часов сегодня монета действительно особенная йобит мы идем 2018-03-01 15:00:03+00:00 1.0 1152809569 444 pump announcement date thursday 1 march hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-03-01 10:56:09+00:00 1.0 1152809569 428 pump starts the coin to pump is bum exchange yobitnet target +300 market url 2018-02-28 17:00:03+00:00 1.0 1152809569 427 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-28 16:58:03+00:00 1.0 1152809569 424 10 minutes to go exchange yobit 10 минут обмен yobit 2018-02-28 16:50:01+00:00 1.0 1152809569 420 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date ➖28022017 exchange➖ yobit btc market 2018-02-28 16:00:02+00:00 1.0 1152809569 416 3 hours left to yobit pump 2018-02-28 14:00:18+00:00 1.0 1152809569 410 only 10 minutes left to mega yobit pump please use troll box chat in yobit remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-02-27 15:49:37+00:00 1.0 1152809569 409 just 30 minutes left to yobit pump ❤ prepare your yobit account❤ 2018-02-27 15:29:20+00:00 1.0 1152809569 408 only 1 hour left to yobit pump 2018-02-27 14:59:20+00:00 1.0 1152809569 407 2 hours left to yobit pump 2018-02-27 13:59:38+00:00 1.0 1152809569 405 4 hours left to yobit pump 2018-02-27 11:59:25+00:00 1.0 1152809569 403 6 hours left to yobit pump 2018-02-27 09:59:36+00:00 1.0 1152809569 402 8 hours left to yobit pump 2018-02-27 07:59:24+00:00 1.0 1152809569 401 10 hours left to yobit pump 2018-02-27 05:59:35+00:00 1.0 1152809569 400 12 hours left to yobit pump 2018-02-27 03:59:23+00:00 1.0 1152809569 399 pump announcement date tuesday 27th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-02-26 20:57:32+00:00 1.0 1152809569 394 8 minutes into the pump and coin is still on peak 2018-02-26 17:07:52+00:00 1.0 1152809569 387 pump starts the coin to pump is dcre exchange yobitnet target +250 market url 2018-02-26 17:00:35+00:00 1.0 1152809569 386 pump starts in 30 seconds coin will be posted here exchange yobitnet target +250 market url 2018-02-26 16:59:54+00:00 1.0 1152809569 385 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-26 16:58:02+00:00 1.0 1152809569 376 1 hour left to pump exchange➖ yobit btc market countdown 60 min to go сегодня монета действительно особенная йобит мы идем 2018-02-26 16:00:01+00:00 1.0 1152809569 374 2 hours left to pump exchange➖ yobit btc market countdown 2 часов сегодня монета действительно особенная йобит мы идем 2018-02-26 15:00:09+00:00 1.0 1152809569 370 pump announcement date tuesday 27 of february time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-26 12:13:37+00:00 1.0 1152809569 368 pump announcement date monday 26th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet countdown 2018-02-25 21:56:34+00:00 1.0 1152809569 362 only 10 minutes left to mega yobit pump please use troll box chat in yobit remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-02-25 17:49:52+00:00 1.0 1152809569 360 only 30 minutes left to yobit pump ❤brepare you yobit account❤ 2018-02-25 17:29:55+00:00 1.0 1152809569 349 pump starts the coin to pump is time exchange yobitnet target +350 market url 2018-02-25 17:00:04+00:00 1.0 1152809569 348 1 hour left to yobit pump 2018-02-25 16:59:53+00:00 1.0 1152809569 347 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-25 16:58:01+00:00 1.0 1152809569 339 2 hours left to yobit pump 2018-02-25 16:00:37+00:00 1.0 1152809569 338 4 hours left to yobit pump 2018-02-25 14:00:22+00:00 1.0 1152809569 337 6 hours left to yobit pump 2018-02-25 12:00:22+00:00 1.0 1152809569 336 10 hours left to yobit pump 2018-02-25 08:01:05+00:00 1.0 1152809569 335 12 hours left to yobit pump 2018-02-25 06:00:18+00:00 1.0 1152809569 334 pump announcement date sunday 25 of february hour 6 pm gmt 1800 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-24 19:51:54+00:00 1.0 1152809569 328 lets go the coin to pump is smc smartcoin exchange cryptopia target 100300 or more market url go go go buy 2018-02-24 15:00:40+00:00 1.0 1152809569 327 next post will be the coin name 2018-02-24 15:00:23+00:00 1.0 1152809569 325 5 mins left till pump we are going to the moon in 5 minutes target 100200 or more be fucking ready 2018-02-24 14:55:13+00:00 1.0 1152809569 324 15 mins left till pump we are going to the moon in 15 minutes target 100200 or more be fucking ready 2018-02-24 14:45:49+00:00 1.0 1152809569 290 pump anaylsis smc initial price 616 sat ✅ price change 000000616 to 000001000 623376623376 stayed at peak for about 5 minutes volume created by us 1 btc we made it again 2018-02-20 18:33:45+00:00 1.0 1152809569 250 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-19 16:58:02+00:00 1.0 1152809569 247 10 minutes to go exchange yobit 10 минут обмен yobit 2018-02-19 16:50:03+00:00 1.0 1152809569 243 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date ➖19022017 exchange➖ yobit btc market 2018-02-19 16:00:04+00:00 1.0 1152809569 242 ➖ yobit alert ⏰ 90 minutes left time ➖ 1700 gmt date ➖19022017 exchange➖ yobit btc market 2018-02-19 15:30:02+00:00 1.0 1152809569 241 we are organizing a huge pump on yobit today remember yobit is the best exchange for pump time 1700 hrs gmt count down 2 hours left before pump 2018-02-19 15:07:35+00:00 1.0 1152809569 234 pump announcement date monday 19th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet countdown watch ⌚️ +teamfontcursivecsz1 2018-02-19 09:13:50+00:00 1.0 1152809569 223 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-18 16:58:02+00:00 1.0 1152809569 219 10 minutes to go exchange yobit 10 минут обмен yobit 2018-02-18 16:50:04+00:00 1.0 1152809569 214 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date ➖17022017 exchange➖ yobit btc market 2018-02-18 16:04:48+00:00 1.0 1152809569 213 2 hours to go coin is really special today exchange yobit 2018-02-18 15:01:10+00:00 1.0 1152809569 212 3 hours to go coin is really special today exchange yobit 2018-02-18 14:00:20+00:00 1.0 1152809569 208 pump announcement date sunday 18th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet countdown watch⌚️ +pumpsfontcursivecsz1 2018-02-18 09:33:05+00:00 1.0 1152809569 187 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-17 16:58:02+00:00 1.0 1152809569 184 10 minutes to go exchange yobit 10 минут обмен yobit 2018-02-17 16:50:02+00:00 1.0 1152809569 180 pump incoming 60 minutes left stay tuned exchange yobitnet countdown watch 2018-02-17 16:00:03+00:00 1.0 1152809569 179 pump incoming 2 hours left stay tuned exchange yobitnet countdown watch 2018-02-17 15:00:01+00:00 1.0 1152809569 178 pump incoming 3 hours left stay tuned exchange yobitnet countdown watch 2018-02-17 14:00:03+00:00 1.0 1152809569 174 why we are different from others why we are always successful this is because we never prepump this is because nobody buys or knows the coin before pump everything is conducted by computer programs and bots this is the reason why we have all your trust if someone says that he will tell you the coin before pump they are lying dont believe on scammers we never prepump 2018-02-17 11:57:28+00:00 1.0 1152809569 173 pump incoming 6 hours left stay tuned exchange yobitnet countdown watch 2018-02-17 11:00:02+00:00 1.0 1152809569 172 pump incoming 8 hours left stay tuned exchange yobitnet countdown watch 2018-02-17 09:00:00+00:00 1.0 1152809569 168 teampumps admin pump announcement date saturday 17th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet countdown watch⌚️ +teamfontcursivecsz1 2018-02-16 19:06:15+00:00 1.0 1152809569 154 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-16 16:58:02+00:00 1.0 1152809569 151 10 minutes to go exchange yobit 10 минут обмен yobit 2018-02-16 16:50:04+00:00 1.0 1152809569 147 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date ➖16022017 exchange➖ yobit btc market 2018-02-16 16:00:02+00:00 1.0 1152809569 146 pump incoming 90 minutes left stay tuned exchange yobitnet countdown watch +teamfontcursivecsz1 2018-02-16 15:31:39+00:00 1.0 1152809569 145 pump incoming 2 hours left stay tuned exchange yobitnet countdown watch +teamfontcursivecsz1 2018-02-16 15:00:03+00:00 1.0 1152809569 144 pump incoming 3 hours left stay tuned exchange yobitnet countdown watch +teamfontcursivecsz1 2018-02-16 14:00:04+00:00 1.0 1152809569 143 4 hours to go before our pump today coin is really special today remember the pump will be on yobit exchange exchange yobit 4часов сегодня монета действительно особенная йобит мы идем 2018-02-16 13:00:01+00:00 1.0 1152809569 142 pump announcement date friday 16th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet countdown watch ⌚️ +teamfontcursivecsz1 2018-02-16 10:52:38+00:00 1.0 1152809569 141 please note that our exclusive pump on yobit will be at 1700 hrs gmt today huge profits are on offer today join in big numbers approximately 6 hours to go exchange yobit 2018-02-16 10:44:32+00:00 1.0 1152809569 140 7 hours to go before our pump today coin is really special today remember the pump will be on yobit exchange exchange yobit 7 часов сегодня монета действительно особенная йобит мы идем 2018-02-16 10:15:24+00:00 1.0 1152809569 139 3 hours to go before our pump today coin is really special today remember the pump will be on yobit exchange exchange yobit 3 часов сегодня монета действительно особенная йобит мы идем 2018-02-16 10:08:07+00:00 1.0 1152809569 132 coin → tit initial price → 180 satoshi highest → 239 satoshi pump analysis → 4089 ↑ decent enough hold could have been way better if some guys don t sell early if anyone stuck just put a sell order above buy price 2018-02-15 16:36:00+00:00 1.0 1152809569 121 to the space the coin to pump is tit exchange cryptopia target +200 hold until good spam the coin everywhere 2018-02-15 16:30:02+00:00 1.0 1152809569 96 pump announcement date thursday 15th february time 430pm gmt exchange cryptopia 2018-02-15 09:25:23+00:00 1.0 1152809569 91 to the space the coin to pump is benji exchange cryptopia target +200 hold until good spam the coin everywhere 2018-02-14 16:00:13+00:00 1.0 1152809569 86 pump announcement date wednesday 14th february time 4pm gmt exchange cryptopia 2018-02-14 14:31:16+00:00 1.0 1152809569 78 ⏰pump alert ⏰ get your btc ready cryptopia exchange 4 minutes to go more next post will be the coin name 2018-01-30 19:56:34+00:00 1.0 1152809569 77 pump alert date 30 jan time 3 pm est 8 pm gmt exchange cryptopia 40 minutes till the pump 2018-01-30 19:22:15+00:00 1.0 1152809569 73 well sorry we choose a too strong coin and cryptopia prevent pump tactics now we will publish you the drawn coin video 2018-01-28 18:44:09+00:00 1.0 1152809569 69 pump in 5 minutes get ready with your btc on cryptopia 2018-01-28 18:26:01+00:00 1.0 1152809569 66 i have great news today at 63000 pm gmt rebrandlysundaymegapump we will have our first collaborative pump with trusted admins and 15k+ users a great opportunity to make profits call is certified not prepumped ✅ exchange cryptopia be ready with your btc there premium rank will have the signal 2 seconds before affiliate rank 1 second standard 0 sec this channel everyone has a chance to make profits get ready to reach the stars pumpmywalletbot to invites friends 2018-01-28 10:43:58+00:00 1.0 1152809569 64 i have uploaded the replay for both the first one tnt was a very interresting pump✅ with no prepump and the coin has grown during 5+ minutes the 2nd one from big pump signal bnt there is a huge volume and this is clearly a scam everything prepumped with intense dump i tried to play a bit on 2nd wave but that was not easy the coin name has been sent at 190027 so again not good i hope you enjoyed these arena battles ☺️ 2018-01-27 18:20:04+00:00 1.0 1152809569 60 5 mins left before the pump the next message will be the coin ❌ this is not anti prepump certified 〽️ take profit on the 2nd wave platform binance 2018-01-27 16:56:01+00:00 1.0 1152809569 56 collaborative pump in 2 minutes guys be ready i will share soon exchange cryptopia 2018-01-26 19:58:56+00:00 1.0 1152809569 55 collaborative pump in 2 hours london time all groups in the same time will pump the same coin be ready to reach the stars ⏱8pm gmt london ✅ exchange cryptopia 2018-01-26 18:03:10+00:00 1.0 1152809569 54 the pump team is proud to present the pumpmywalletbot ✅ it provides the time of next pump history and there is an automatic affiliate system to reward promoters of this channel click on referral to generate your invite link and share it invite 10 people to access the affiliate channel invite 50 people to access the premium channel affiliate and premium channel members will have the signal 1 and 2 seconds before the standard channel competition remains fair for everyone as our first pump will arrive soon at 2k+ members i remind you the basic of this groups fair pump no prepump random coin choosen few minutes before pump bot delay features and no paid information we are going to grow dont waste time and invite your friends before they are all here to access premium channels ✌️ pumpyourwallet 2018-01-26 14:01:17+00:00 1.0 1152809569 50 tomorrow at 8pm gmt london time i will share you a collaborative pump all groups in the same time will pump the same coin be ready to reach the stars ✅ exchange cryptopia 2018-01-25 16:48:50+00:00 1.0 1152809569 46 i will forward a huge call with nearly 0 sec delay in 30 minutes time 6pm london time ⏱ exchange is on binance and pair is btc as this pump is ultra huge and may be prepumped i recommend to trade the 2nd wave i will record the pump if you want to analyze it later 2018-01-23 17:31:11+00:00 1.0 1152809569 25 we will forward a big pump on binance tonight i dont encourage to buysell on the first wave first green candle 1 min but on the second wave which generally occurs few minutes after pump time in 4 hours sat jan 13 800 pm gmt london sat jan 13 300 pm est new york 2018-01-13 15:13:04+00:00 1.0 1152809569 5 10 minutes remaining before our first pump coin will be chosen among binance 2018-01-07 17:51:23+00:00 1.0 1199320434 2157 next post will be coin name 2020-05-12 16:17:05+00:00 1.0 1199320434 2154 next pump scheduled❗ date 12th may ⏱ time 1700 pm gmt exchange binance 2020-05-12 11:44:56+00:00 1.0 1199320434 2152 next post will be coin name 2020-05-10 15:55:14+00:00 1.0 1199320434 2150 heavy pump alert❗ date 10th may ⏱ time 1700 pm gmt exchange binance 2020-05-09 15:45:53+00:00 1.0 1199320434 2149 pump coin name ppt 2020-05-03 17:30:01+00:00 1.0 1199320434 2148 next post will be coin name 2020-05-03 17:26:06+00:00 1.0 1199320434 2146 ok guys this pump is going to the moon so be ready we will pick a coin with 0 prepump to give same opportunities to everybody 2020-05-03 17:13:33+00:00 1.0 1199320434 2142 heavy pump alert❗ date 3rd may ⏱ time 1730 pm gmt exchange binance 2020-05-02 22:08:53+00:00 1.0 1199320434 2140 pump alert❗ coin name dlt 2020-04-24 20:45:05+00:00 1.0 1199320434 2139 pump coin name rdn 2020-04-21 13:58:57+00:00 1.0 1199320434 2138 next post will be coin name 2020-04-21 13:56:02+00:00 1.0 1199320434 2135 40 minutes for mega pump alert❗ 2020-04-21 13:20:54+00:00 1.0 1199320434 2134 only 3 hours left for mega pump alert❗ 2020-04-21 11:02:16+00:00 1.0 1199320434 2133 mega pump alert❗ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 22:25:15+00:00 1.0 1199320434 2124 ⏱ less than 4 hours left for pumpcoin⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30012020 ⏱time 530pm gmt11pm ist pinourchannelontop regards 2020-01-30 13:45:22+00:00 1.0 1199320434 2123 ‼️we are going to organise a pump today at 530 pm gmt 11 pm ist‼️ ❗️which will be expected minimum 70100 ❗️ ❗date 30th january exchange binance ‼️log in your binance account before 10 minutes and be ready with your spare btc‼️ pinourchannelontopsoyoucangetearlypumpcoin thanks 2020-01-30 06:48:29+00:00 1.0 1199320434 2117 whales get ready 15 minutes left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 16:14:27+00:00 1.0 1199320434 2116 whales get ready 30 minutes left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 15:59:34+00:00 1.0 1199320434 2115 whales get ready 1 hour left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 15:30:27+00:00 1.0 1199320434 2114 whales get ready 3 hours left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 13:29:21+00:00 1.0 1199320434 2113 whales get ready 6 hours left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 10:29:14+00:00 1.0 1199320434 2112 whales get ready 12 hours left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 04:00:05+00:00 1.0 1199320434 2111 whales get ready 24 hours left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-22 16:00:05+00:00 1.0 1199320434 2109 hola whales as you all might have noticed bitcoin has had a small drop lately we are rescheduling the pump its good opportunity for whales to profit from our next whale coin the details are as follows exchange binance date 23dec2019 time 4pm gmt 930pm ist staytunedforupdates 2019-12-19 16:31:29+00:00 1.0 1199320434 2099 ‼️attention‼️ log in your binance account be ready with spare btc next post will be coin name pinourchannelontopandbereadyforblast 2019-11-30 16:54:48+00:00 1.0 1199320434 2098 ⏱ 15 minutes left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc pinourchannelontop regards 2019-11-30 16:45:40+00:00 1.0 1199320434 2097 ⏱ 1 hour left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 16:00:38+00:00 1.0 1199320434 2095 ⏱ 2 hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 15:00:26+00:00 1.0 1199320434 2094 ⏱ 6 hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 11:00:26+00:00 1.0 1199320434 2093 ⏱ less than 12hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 05:09:52+00:00 1.0 1199320434 2092 ⏱ 24 hours left for coinofthemonth⏱ more than 500k people are going to join and this can be the biggest moment in near future which will be expected 70100 we will post more information on how to get profit out of this event soon sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-29 17:00:29+00:00 1.0 1199320434 2091 mega event is here on binance our team is here with the most awaited coinofthemonth exchange binance date 30112019 ⏱time 5pm gmt pump will be free for all more than 500k people are going to join this coinof themonth and this can be the biggest moment in near future we will post more information on how to get profit out of this event soon alts are pumping heavily nowadays lets take advantage of that and get some crazy profits with pump pinourchannelontop beready4blast staytuned 2019-11-28 16:47:07+00:00 1.0 1199320434 2087 ‼️attention‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ next post will be coin name pinourchannelontopandbereadyforblast 2019-11-11 16:55:26+00:00 1.0 1199320434 2086 ‼️only 15 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourchannelontopandbereadyforblast 2019-11-11 16:45:25+00:00 1.0 1199320434 2084 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this megapump doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-11 15:00:25+00:00 1.0 1199320434 2083 ‼️ 5 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc lets grab this opportunity to buy some cheap alts and ride the altszn ⏰time 5 pm gmt 11 november pinourchannelontop regards 2019-11-11 12:03:37+00:00 1.0 1199320434 2082 ‼️ 12 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc lets grab this opportunity to buy some cheap alts and ride the altszn ⏰time 5 pm gmt 11 november pinourchannelontop regards 2019-11-11 05:00:24+00:00 1.0 1199320434 2081 ‼️ 24 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 5 pm gmt 11 november pinourchannelontop regards 2019-11-10 17:30:24+00:00 1.0 1199320434 2080 ‼️we are going to organise a pump on monday at 5 pm gmt 1030 pm ist‼️ ❗️which will be expected minimum 70100 ❗️ ❗date 11th november exchange binance ‼️log in your binance account before 10 minutes and be ready with your spare btc‼️ pinourchannelontopsoyoucangetearlypumpcoin thanks 2019-11-10 08:13:36+00:00 1.0 1199320434 2078 ‼️ 5 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt 9 november pinourchannelontop regards 2019-11-09 12:30:25+00:00 1.0 1199320434 2077 ‼️ 12 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt 9 november pinourchannelontop regards 2019-11-09 05:30:25+00:00 1.0 1199320434 2076 ‼️ 24 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt 9 november pinourchannelontop regards 2019-11-08 17:30:48+00:00 1.0 1199320434 2075 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ we are back again with the most awaited mega signal ‼️exchange binance date 09112019 time 530pm gmt pump will be free for all ❗️more than 500k people are going to join this history event and this can be the biggest moment in near future ‼️by the time keep your btc ready for blast and sell your alts as soon as possible ‼️we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc buy hold till our targets achieve pinourchannelontop beready4blast ✈✈ staytuned 2019-11-08 08:20:01+00:00 1.0 1199320434 2067 ‼️attention‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ next post will be coin name pinourchannelontopandbereadyforblast 2019-11-02 17:26:32+00:00 1.0 1199320434 2066 ‼️only 15 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourchannelontopandbereadyforblast 2019-11-02 17:14:43+00:00 1.0 1199320434 2065 ‼️only 30 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourvipchannelontopandbereadyforblast 2019-11-02 17:05:02+00:00 1.0 1199320434 2063 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this megapump doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-02 15:29:30+00:00 1.0 1199320434 2062 attention everyone ‼️only 5 hours left for megasignal ‼️ ❗️❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt pinourchannelontop regards 2019-11-02 12:30:55+00:00 1.0 1199320434 2061 ‼️only 10 hours left for megasignal ‼️ ❗️❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt pinourchannelontop regards 2019-11-02 07:33:38+00:00 1.0 1199320434 2060 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ some information about the most awaited mega signal ‼️exchange binance ❗️❗️date 02112019 ❗️❗️time 530pm gmt pump will be free for all ❗️❗️more than 500k people are going to join this history event and this can be the biggest moment in near future ‼️by the time keep your btc ready for blast and sell your alts as soon as possible ‼️we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc buy hold till our targets achieve pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-11-01 18:04:17+00:00 1.0 1199320434 2056 at 400 pm gmt a strong ta signal will be posted here it is a coin which is about to breakout and only needs a little push it can go +90 easily so make sure to buy as soon as the new 4h candle opens there will be no second entry crypto pump analytics 2019-10-22 15:33:01+00:00 1.0 1199320434 2045 pump results coin was qkc open 74 reached 200 welldone guys almost 3 x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-15 17:27:57+00:00 1.0 1199320434 2040 the coin to pump is qkc exchange yobitnet target +200 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-15 17:00:08+00:00 1.0 1199320434 2038 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-15 16:55:01+00:00 1.0 1199320434 2037 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-15 16:50:00+00:00 1.0 1199320434 2036 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-15 16:40:01+00:00 1.0 1199320434 2035 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-15 16:30:01+00:00 1.0 1199320434 2034 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 16:00:02+00:00 1.0 1199320434 2033 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 15:00:10+00:00 1.0 1199320434 2032 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 13:00:03+00:00 1.0 1199320434 2031 ℹ coin signal information ℹ date friday 150919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-15 11:00:02+00:00 1.0 1199320434 2030 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150919 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-15 08:18:37+00:00 1.0 1199320434 2027 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 17:46:39+00:00 1.0 1199320434 2020 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-12 16:55:06+00:00 1.0 1199320434 2019 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-12 16:50:05+00:00 1.0 1199320434 2018 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-12 16:40:07+00:00 1.0 1199320434 2017 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-12 16:30:04+00:00 1.0 1199320434 2016 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 16:00:05+00:00 1.0 1199320434 2015 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 15:00:10+00:00 1.0 1199320434 2014 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 13:00:15+00:00 1.0 1199320434 2013 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-12 07:28:05+00:00 1.0 1199320434 2007 buy coin bnt binance ▶️ tradeindexsymbolbntbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold 2019-09-07 17:01:05+00:00 1.0 1199320434 2005 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-09-07 16:55:05+00:00 1.0 1199320434 2004 10 minutes left make sure you are logged in your binance account❗️ 2019-09-07 16:50:08+00:00 1.0 1199320434 2003 30 minutes left thats it team were ready prepared for this giant that is coming 2019-09-07 16:30:06+00:00 1.0 1199320434 2000 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big wave this time 2019-09-07 13:00:31+00:00 1.0 1199320434 1998 pump results coin was mth low 123 high 362 welldone guys 25 x times on your demandwe listen you guys repump count 4th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-06 18:25:32+00:00 1.0 1199320434 1992 the coin to pump is mth exchange yobitnet target +300500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-06 17:00:11+00:00 1.0 1199320434 1990 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-06 16:55:02+00:00 1.0 1199320434 1989 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-06 16:50:02+00:00 1.0 1199320434 1988 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-06 16:40:01+00:00 1.0 1199320434 1987 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-06 16:30:04+00:00 1.0 1199320434 1986 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 16:00:05+00:00 1.0 1199320434 1985 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 15:00:04+00:00 1.0 1199320434 1984 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 13:00:05+00:00 1.0 1199320434 1982 pump results coin was snm low 90 high 330 welldone guys 3x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-04 17:30:09+00:00 1.0 1199320434 1977 coin to pump is snm exchange yobitnet target +500 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-04 17:00:16+00:00 1.0 1199320434 1974 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-04 16:55:01+00:00 1.0 1199320434 1973 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-04 16:50:01+00:00 1.0 1199320434 1972 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-04 16:40:03+00:00 1.0 1199320434 1971 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-04 16:30:05+00:00 1.0 1199320434 1970 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 16:00:04+00:00 1.0 1199320434 1969 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 15:00:05+00:00 1.0 1199320434 1968 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 13:00:02+00:00 1.0 1199320434 1967 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-04 11:00:00+00:00 1.0 1199320434 1962 pump results coin was gvt open 14000 high 49999 welldone guys more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-24 18:37:36+00:00 1.0 1199320434 1957 the coin to pump is gvt exchange yobitnet target +200400 market gvtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-24 17:00:14+00:00 1.0 1199320434 1954 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-24 16:55:02+00:00 1.0 1199320434 1953 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-24 16:50:01+00:00 1.0 1199320434 1952 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-24 16:40:02+00:00 1.0 1199320434 1951 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-24 16:30:01+00:00 1.0 1199320434 1950 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 16:00:02+00:00 1.0 1199320434 1949 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 15:00:01+00:00 1.0 1199320434 1948 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 13:00:08+00:00 1.0 1199320434 1947 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-24 11:00:04+00:00 1.0 1199320434 1944 pump results coin was tfd open 28 high 120 welldone guys more than 4x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-17 17:13:08+00:00 1.0 1199320434 1939 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-17 17:00:14+00:00 1.0 1199320434 1936 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-17 16:55:01+00:00 1.0 1199320434 1935 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-17 16:50:01+00:00 1.0 1199320434 1934 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-17 16:40:01+00:00 1.0 1199320434 1933 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-17 16:30:02+00:00 1.0 1199320434 1932 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 16:00:06+00:00 1.0 1199320434 1931 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 15:00:02+00:00 1.0 1199320434 1930 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 13:00:11+00:00 1.0 1199320434 1926 pump results coin was dlt open 452 high 1180 welldone guys more than 2x times on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-16 17:13:21+00:00 1.0 1199320434 1921 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-16 17:00:18+00:00 1.0 1199320434 1918 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-16 16:55:03+00:00 1.0 1199320434 1917 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-16 16:50:05+00:00 1.0 1199320434 1916 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-16 16:40:01+00:00 1.0 1199320434 1915 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-16 16:30:02+00:00 1.0 1199320434 1914 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 16:00:10+00:00 1.0 1199320434 1913 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 15:00:05+00:00 1.0 1199320434 1912 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 13:00:02+00:00 1.0 1199320434 1911 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-16 11:00:24+00:00 1.0 1199320434 1907 pump results coin was dlt open 460 high 1186 welldone guys more than 2x times on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-15 17:09:15+00:00 1.0 1199320434 1902 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-15 17:00:20+00:00 1.0 1199320434 1899 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-15 16:55:25+00:00 1.0 1199320434 1898 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-15 16:50:17+00:00 1.0 1199320434 1896 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-15 16:40:20+00:00 1.0 1199320434 1895 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-15 16:30:26+00:00 1.0 1199320434 1894 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 16:00:02+00:00 1.0 1199320434 1893 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 15:00:02+00:00 1.0 1199320434 1892 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 13:00:09+00:00 1.0 1199320434 1891 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-15 11:00:05+00:00 1.0 1199320434 1887 pump results coin was wpr open 60 high 150 on your demandwe listen you guys ✨ more than 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-12 17:15:38+00:00 1.0 1199320434 1882 coin to pump is wpr exchange yobitnet target 100200 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-12 17:00:14+00:00 1.0 1199320434 1879 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-12 16:55:02+00:00 1.0 1199320434 1878 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-12 16:50:02+00:00 1.0 1199320434 1877 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-12 16:40:01+00:00 1.0 1199320434 1876 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-12 16:30:05+00:00 1.0 1199320434 1875 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 16:00:10+00:00 1.0 1199320434 1874 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 15:00:04+00:00 1.0 1199320434 1873 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 13:00:09+00:00 1.0 1199320434 1872 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-12 12:00:18+00:00 1.0 1199320434 1869 pump results coin was mana low 340 high 649 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-11 17:22:07+00:00 1.0 1199320434 1864 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-11 17:00:13+00:00 1.0 1199320434 1861 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-11 16:55:02+00:00 1.0 1199320434 1860 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-11 16:50:01+00:00 1.0 1199320434 1859 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-11 16:40:01+00:00 1.0 1199320434 1858 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-11 16:30:03+00:00 1.0 1199320434 1857 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 16:00:11+00:00 1.0 1199320434 1856 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 15:00:02+00:00 1.0 1199320434 1855 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 13:00:17+00:00 1.0 1199320434 1854 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-11 11:00:06+00:00 1.0 1199320434 1850 pump results on binance coin was storj open 1315 high 1440 profit 10 2019-08-11 04:15:24+00:00 1.0 1199320434 1847 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big second wave this time 2019-08-10 16:00:08+00:00 1.0 1199320434 1845 pump results coin was mana open 292 high 800 welldone guys nearly 3 x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-10 03:09:51+00:00 1.0 1199320434 1838 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-09 17:00:16+00:00 1.0 1199320434 1835 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-09 16:55:01+00:00 1.0 1199320434 1834 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-09 16:50:06+00:00 1.0 1199320434 1833 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-09 16:40:03+00:00 1.0 1199320434 1832 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-09 16:30:05+00:00 1.0 1199320434 1831 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 16:00:02+00:00 1.0 1199320434 1830 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 15:00:02+00:00 1.0 1199320434 1829 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 13:00:07+00:00 1.0 1199320434 1828 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-09 11:00:34+00:00 1.0 1199320434 1823 pump results coin was req open 138 high 194 second wave open 192 high 245 welldone guys on your demandwe listen you guys repump count 3rd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-04 17:17:28+00:00 1.0 1199320434 1818 the coin to pump is req exchange yobitnet target 100200 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-04 17:00:13+00:00 1.0 1199320434 1815 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-04 16:55:02+00:00 1.0 1199320434 1814 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-04 16:50:01+00:00 1.0 1199320434 1813 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-04 16:40:04+00:00 1.0 1199320434 1812 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-04 16:30:03+00:00 1.0 1199320434 1811 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 16:00:00+00:00 1.0 1199320434 1810 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 15:00:02+00:00 1.0 1199320434 1809 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 13:00:05+00:00 1.0 1199320434 1808 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-04 11:00:06+00:00 1.0 1199320434 1804 pump results coin was fun open 24 high 71 welldone guys almost 3x times repump count ✨4th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-03 17:11:59+00:00 1.0 1199320434 1799 coin to pump is fun exchange yobitnet target upto 100300 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-03 17:00:15+00:00 1.0 1199320434 1796 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-03 16:55:00+00:00 1.0 1199320434 1795 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-03 16:50:03+00:00 1.0 1199320434 1794 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-03 16:40:01+00:00 1.0 1199320434 1793 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-03 16:30:03+00:00 1.0 1199320434 1792 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 16:00:06+00:00 1.0 1199320434 1791 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 15:00:06+00:00 1.0 1199320434 1790 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 13:00:09+00:00 1.0 1199320434 1789 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-03 11:00:15+00:00 1.0 1199320434 1786 pump results coin was mana open 501 high 1501 welldone guys 3x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-29 17:21:21+00:00 1.0 1199320434 1781 coin to pump is mana exchange yobitnet target +200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-29 17:00:17+00:00 1.0 1199320434 1777 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-29 16:55:00+00:00 1.0 1199320434 1776 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-29 16:50:01+00:00 1.0 1199320434 1775 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-29 16:40:23+00:00 1.0 1199320434 1774 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-29 16:30:02+00:00 1.0 1199320434 1773 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 16:00:15+00:00 1.0 1199320434 1772 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 15:00:46+00:00 1.0 1199320434 1771 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 13:00:21+00:00 1.0 1199320434 1770 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-29 11:00:08+00:00 1.0 1199320434 1766 pump results coin was qkc open 201 reached 600 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-28 17:36:51+00:00 1.0 1199320434 1761 the coin to pump is qkc exchange yobitnet target +200 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-28 17:00:14+00:00 1.0 1199320434 1758 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-28 16:55:01+00:00 1.0 1199320434 1757 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-28 16:50:02+00:00 1.0 1199320434 1756 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-28 16:40:01+00:00 1.0 1199320434 1755 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-28 16:30:03+00:00 1.0 1199320434 1754 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 16:00:12+00:00 1.0 1199320434 1753 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 15:00:01+00:00 1.0 1199320434 1752 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 13:00:25+00:00 1.0 1199320434 1751 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-28 11:00:04+00:00 1.0 1199320434 1748 pump results coin was matic open 116 high 311 welldone guys more than 2x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-27 17:20:38+00:00 1.0 1199320434 1743 coin to pump is matic exchange yobitnet target upto 300500 above market maticbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-27 17:00:15+00:00 1.0 1199320434 1740 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-27 16:55:01+00:00 1.0 1199320434 1739 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-27 16:50:03+00:00 1.0 1199320434 1738 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-27 16:40:01+00:00 1.0 1199320434 1737 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-27 16:30:04+00:00 1.0 1199320434 1736 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 16:00:03+00:00 1.0 1199320434 1735 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 15:00:09+00:00 1.0 1199320434 1734 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 13:00:28+00:00 1.0 1199320434 1733 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-27 11:01:15+00:00 1.0 1199320434 1729 pump results coin was fun low 29 high 85 welldone guys more than 2x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-21 17:28:57+00:00 1.0 1199320434 1724 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-21 17:00:14+00:00 1.0 1199320434 1721 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-21 16:55:02+00:00 1.0 1199320434 1720 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-21 16:50:02+00:00 1.0 1199320434 1719 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-21 16:40:01+00:00 1.0 1199320434 1718 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-21 16:30:01+00:00 1.0 1199320434 1717 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 16:00:05+00:00 1.0 1199320434 1716 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 15:00:05+00:00 1.0 1199320434 1715 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 13:00:09+00:00 1.0 1199320434 1714 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-21 11:00:03+00:00 1.0 1199320434 1709 pump results coin was blz open 409 high 1290 welldone guys more than 3x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-13 17:34:39+00:00 1.0 1199320434 1704 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-13 17:00:47+00:00 1.0 1199320434 1701 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-13 16:55:02+00:00 1.0 1199320434 1700 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-13 16:50:00+00:00 1.0 1199320434 1699 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-13 16:40:01+00:00 1.0 1199320434 1698 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-13 16:30:02+00:00 1.0 1199320434 1697 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 16:00:05+00:00 1.0 1199320434 1696 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 15:00:01+00:00 1.0 1199320434 1695 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 13:00:05+00:00 1.0 1199320434 1690 pump results coin was fun low 26 high 123 welldone guys almost 5x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-11 17:22:13+00:00 1.0 1199320434 1685 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-11 17:00:15+00:00 1.0 1199320434 1682 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-11 16:55:03+00:00 1.0 1199320434 1681 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-11 16:50:02+00:00 1.0 1199320434 1680 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-11 16:40:01+00:00 1.0 1199320434 1679 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-11 16:30:12+00:00 1.0 1199320434 1678 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 16:00:08+00:00 1.0 1199320434 1677 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 15:00:01+00:00 1.0 1199320434 1676 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 13:00:00+00:00 1.0 1199320434 1670 pump results coin was ppt low 8204 high 20698 welldone guys more than 2x times repump count ✨7th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-07 17:17:10+00:00 1.0 1199320434 1666 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-07 17:00:14+00:00 1.0 1199320434 1663 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-07 16:55:01+00:00 1.0 1199320434 1662 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-07 16:50:01+00:00 1.0 1199320434 1661 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-07 16:40:01+00:00 1.0 1199320434 1660 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-07 16:30:02+00:00 1.0 1199320434 1659 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 16:00:04+00:00 1.0 1199320434 1658 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 15:00:02+00:00 1.0 1199320434 1657 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 13:00:08+00:00 1.0 1199320434 1656 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-07 11:00:04+00:00 1.0 1199320434 1653 pump results coin was fun open 35 high 140 welldone guys 4x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-06 17:13:44+00:00 1.0 1199320434 1648 coin to pump is fun exchange yobitnet target upto 400500 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-06 17:00:15+00:00 1.0 1199320434 1645 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-06 16:55:01+00:00 1.0 1199320434 1644 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-06 16:50:02+00:00 1.0 1199320434 1643 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-06 16:40:01+00:00 1.0 1199320434 1642 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-06 16:30:01+00:00 1.0 1199320434 1641 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 16:00:05+00:00 1.0 1199320434 1640 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 15:00:07+00:00 1.0 1199320434 1639 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 13:00:02+00:00 1.0 1199320434 1638 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-06 11:00:58+00:00 1.0 1199320434 1635 pump results coin was lend low 61 high 190 welldone guys 3x times repump count ✨4th ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-05 17:29:16+00:00 1.0 1199320434 1630 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-05 17:00:25+00:00 1.0 1199320434 1627 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-05 16:55:00+00:00 1.0 1199320434 1626 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-05 16:50:07+00:00 1.0 1199320434 1625 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-05 16:40:05+00:00 1.0 1199320434 1624 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-05 16:30:01+00:00 1.0 1199320434 1623 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 16:00:02+00:00 1.0 1199320434 1622 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 15:00:02+00:00 1.0 1199320434 1621 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 13:00:01+00:00 1.0 1199320434 1620 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-05 11:00:01+00:00 1.0 1199320434 1611 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-29 16:40:01+00:00 1.0 1199320434 1610 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-29 16:30:05+00:00 1.0 1199320434 1609 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-29 16:00:03+00:00 1.0 1199320434 1608 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-29 15:00:05+00:00 1.0 1199320434 1607 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-29 13:00:01+00:00 1.0 1199320434 1606 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-29 11:00:03+00:00 1.0 1199320434 1599 pump results coin was ppt low 6000 high 20296 welldone guys more than 3x times repump count ✨6th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-26 17:11:47+00:00 1.0 1199320434 1594 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-26 17:00:14+00:00 1.0 1199320434 1591 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-26 16:55:01+00:00 1.0 1199320434 1590 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-26 16:50:06+00:00 1.0 1199320434 1589 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-26 16:40:01+00:00 1.0 1199320434 1588 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-26 16:30:04+00:00 1.0 1199320434 1587 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 16:00:03+00:00 1.0 1199320434 1586 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 15:00:08+00:00 1.0 1199320434 1585 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 13:00:08+00:00 1.0 1199320434 1584 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-26 11:00:03+00:00 1.0 1199320434 1581 pump results coin was bat low 2718 high 4449 good volume ✈️even in red market we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-25 17:57:46+00:00 1.0 1199320434 1576 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-25 17:00:26+00:00 1.0 1199320434 1573 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-25 16:55:01+00:00 1.0 1199320434 1572 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-25 16:50:02+00:00 1.0 1199320434 1571 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-25 16:40:01+00:00 1.0 1199320434 1570 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-25 16:30:03+00:00 1.0 1199320434 1569 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 16:00:05+00:00 1.0 1199320434 1568 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 15:00:09+00:00 1.0 1199320434 1567 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-25 11:00:04+00:00 1.0 1199320434 1562 pump results coin was blz open 635 high 1386 welldone guys more than 2x times repump count ✨3rd✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-22 17:20:33+00:00 1.0 1199320434 1557 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-22 17:00:15+00:00 1.0 1199320434 1554 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-22 16:55:01+00:00 1.0 1199320434 1553 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-22 16:50:03+00:00 1.0 1199320434 1552 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-22 16:40:01+00:00 1.0 1199320434 1551 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-22 16:30:02+00:00 1.0 1199320434 1550 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 16:00:08+00:00 1.0 1199320434 1549 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 15:00:04+00:00 1.0 1199320434 1548 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-22 11:00:05+00:00 1.0 1199320434 1545 curative pump on your massive request same coin we chosen from previous pump we followed yours choice pump results coin was req open 220 high 380 second wave open 214 high452 welldone guys 2x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump in on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-21 17:20:09+00:00 1.0 1199320434 1541 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-21 17:00:15+00:00 1.0 1199320434 1538 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-21 16:55:01+00:00 1.0 1199320434 1537 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-21 16:50:05+00:00 1.0 1199320434 1536 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-21 16:40:01+00:00 1.0 1199320434 1535 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-21 16:30:25+00:00 1.0 1199320434 1534 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 16:01:00+00:00 1.0 1199320434 1533 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 15:01:28+00:00 1.0 1199320434 1532 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 13:00:13+00:00 1.0 1199320434 1531 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-21 11:00:06+00:00 1.0 1199320434 1526 consecutivecurative pump on your massive request same coin we chosen from last six pumps we followed yours choice pump results coin was pax open 10066 high 20000 welldone guys 2x times on your demandwe listen you guys repump count 7th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-20 17:11:17+00:00 1.0 1199320434 1521 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-20 17:00:22+00:00 1.0 1199320434 1518 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-20 16:55:09+00:00 1.0 1199320434 1517 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-20 16:50:01+00:00 1.0 1199320434 1516 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-20 16:40:02+00:00 1.0 1199320434 1515 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-20 16:30:03+00:00 1.0 1199320434 1514 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 16:00:10+00:00 1.0 1199320434 1513 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 15:01:41+00:00 1.0 1199320434 1512 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 13:03:51+00:00 1.0 1199320434 1511 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-20 11:00:13+00:00 1.0 1199320434 1507 pump results coin was lend open 117 high 300 welldone guys almost 3x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-18 17:16:47+00:00 1.0 1199320434 1502 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-18 17:00:07+00:00 1.0 1199320434 1500 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-18 16:55:01+00:00 1.0 1199320434 1499 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-18 16:50:04+00:00 1.0 1199320434 1498 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-18 16:40:03+00:00 1.0 1199320434 1497 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-18 16:30:02+00:00 1.0 1199320434 1496 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 16:00:22+00:00 1.0 1199320434 1495 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 15:00:01+00:00 1.0 1199320434 1494 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 13:00:03+00:00 1.0 1199320434 1489 pump results coin was lend open 98 high 295 welldone guys almost 3x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-15 17:19:46+00:00 1.0 1199320434 1484 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-15 17:00:13+00:00 1.0 1199320434 1482 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-15 16:55:02+00:00 1.0 1199320434 1481 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-15 16:50:02+00:00 1.0 1199320434 1480 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-15 16:40:02+00:00 1.0 1199320434 1478 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-15 16:30:02+00:00 1.0 1199320434 1477 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 16:00:38+00:00 1.0 1199320434 1476 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 15:00:13+00:00 1.0 1199320434 1475 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 13:00:16+00:00 1.0 1199320434 1474 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-15 11:00:04+00:00 1.0 1199320434 1471 pump results coin was ppt low 11501 high 36990 welldone guys more than 3x times repump count ✨5th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-14 17:10:36+00:00 1.0 1199320434 1466 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-14 17:00:11+00:00 1.0 1199320434 1464 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-14 16:55:01+00:00 1.0 1199320434 1463 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-14 16:50:30+00:00 1.0 1199320434 1462 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-14 16:40:01+00:00 1.0 1199320434 1461 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-14 16:30:13+00:00 1.0 1199320434 1460 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 16:00:34+00:00 1.0 1199320434 1459 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 15:00:02+00:00 1.0 1199320434 1458 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 13:00:15+00:00 1.0 1199320434 1457 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-14 11:00:08+00:00 1.0 1199320434 1452 pump results coin was dlt open 1552 high 4700 welldone guys more than 3x times on your demandwe listen you guys repump count 2nd time on your massive request better height from previous pump ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-12 17:14:10+00:00 1.0 1199320434 1447 the coin to pump is dlt exchange yobitnet target +300 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-12 17:00:09+00:00 1.0 1199320434 1445 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-12 16:55:05+00:00 1.0 1199320434 1444 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-12 16:50:24+00:00 1.0 1199320434 1443 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-12 16:40:04+00:00 1.0 1199320434 1442 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-12 16:30:04+00:00 1.0 1199320434 1441 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 16:00:16+00:00 1.0 1199320434 1440 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 15:00:03+00:00 1.0 1199320434 1439 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 13:00:16+00:00 1.0 1199320434 1438 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-12 11:57:18+00:00 1.0 1199320434 1434 consecutive pump on your massive request same coin we chosen from last five pumps we followed yours choice pump results coin was pax low 13000 high 30000 welldone guys more than 2x times on your demandwe listen you guys repump count 6th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-11 17:21:46+00:00 1.0 1199320434 1429 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-11 17:00:10+00:00 1.0 1199320434 1427 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-11 16:55:01+00:00 1.0 1199320434 1426 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-11 16:50:02+00:00 1.0 1199320434 1425 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-11 16:40:01+00:00 1.0 1199320434 1424 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-11 16:30:05+00:00 1.0 1199320434 1423 ℹ️ 40 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 16:23:48+00:00 1.0 1199320434 1387 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-25 15:55:01+00:00 1.0 1199320434 1386 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-05-25 15:50:02+00:00 1.0 1199320434 1385 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-05-25 15:40:02+00:00 1.0 1199320434 1384 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-25 15:30:01+00:00 1.0 1199320434 1383 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 15:00:16+00:00 1.0 1199320434 1382 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 14:00:13+00:00 1.0 1199320434 1381 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 13:00:08+00:00 1.0 1199320434 1380 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 09:00:05+00:00 1.0 1199320434 1377 consecutive pump on your massive request same coin we chosen from last four pumps we followed yours choice pump results coin was pax low 11448 high 39995 welldone guys more than 3x times on your demandwe listen you guys repump count 5th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-23 17:17:37+00:00 1.0 1199320434 1374 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-23 17:00:15+00:00 1.0 1199320434 1371 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-23 16:55:27+00:00 1.0 1199320434 1370 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-23 16:50:05+00:00 1.0 1199320434 1369 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-23 16:40:08+00:00 1.0 1199320434 1368 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-23 16:36:24+00:00 1.0 1199320434 1367 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 16:03:36+00:00 1.0 1199320434 1366 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 15:00:02+00:00 1.0 1199320434 1365 ℹ️ 3 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 14:00:17+00:00 1.0 1199320434 1358 pump results coin was lend open 116 high 300 welldone guys almost 3x times as targeted 200 we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-19 17:26:11+00:00 1.0 1199320434 1355 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-19 17:00:10+00:00 1.0 1199320434 1353 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-19 16:55:02+00:00 1.0 1199320434 1352 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-19 16:50:02+00:00 1.0 1199320434 1351 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-19 16:40:01+00:00 1.0 1199320434 1350 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-19 16:30:03+00:00 1.0 1199320434 1349 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 16:00:01+00:00 1.0 1199320434 1348 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 15:01:50+00:00 1.0 1199320434 1347 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 13:00:37+00:00 1.0 1199320434 1342 consecutive pump on your massive request same coin we chosen from last two pumps we followed yours choice pump results coin was pax open 14795 high 45526 welldone guys more than 3x times better height repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-18 17:16:20+00:00 1.0 1199320434 1338 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-18 17:00:12+00:00 1.0 1199320434 1336 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-18 16:55:07+00:00 1.0 1199320434 1335 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-18 16:50:01+00:00 1.0 1199320434 1334 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-18 16:40:02+00:00 1.0 1199320434 1333 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-18 16:30:05+00:00 1.0 1199320434 1332 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 16:00:04+00:00 1.0 1199320434 1331 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 15:00:12+00:00 1.0 1199320434 1330 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 13:00:26+00:00 1.0 1199320434 1323 as we promised to pump hc shortly and recommended for hodl hc hit 2383 hc holder real profit fast we always repump our coin 2019-05-16 17:25:40+00:00 1.0 1199320434 1310 buy coin hc binance ▶️ tradeindexsymbolhcbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 above profit 2019-05-12 17:00:06+00:00 1.0 1199320434 1308 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-12 16:55:01+00:00 1.0 1199320434 1307 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-05-12 16:50:01+00:00 1.0 1199320434 1306 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-12 16:30:06+00:00 1.0 1199320434 1305 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 16:00:05+00:00 1.0 1199320434 1304 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 15:00:09+00:00 1.0 1199320434 1303 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 14:00:03+00:00 1.0 1199320434 1302 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 09:00:37+00:00 1.0 1199320434 1245 pump results coin was ctxc open 2940 high 9900 welldone guys as promised by us 300 more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-28 17:32:24+00:00 1.0 1199320434 1240 coin to pump is ctxc exchange yobitnet target +300 market ctxcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-28 17:00:07+00:00 1.0 1199320434 1238 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-28 16:55:01+00:00 1.0 1199320434 1237 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-28 16:50:01+00:00 1.0 1199320434 1236 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-28 16:40:04+00:00 1.0 1199320434 1235 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-28 16:30:19+00:00 1.0 1199320434 1234 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 16:00:04+00:00 1.0 1199320434 1233 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 15:00:13+00:00 1.0 1199320434 1232 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-28 13:00:05+00:00 1.0 1199320434 1228 pump results coin was ukg open 483 high 1500 welldone guys 3x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-27 17:18:11+00:00 1.0 1199320434 1223 coin to pump is ukg exchange yobitnet target +300 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-27 17:00:09+00:00 1.0 1199320434 1221 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-27 16:55:02+00:00 1.0 1199320434 1220 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-27 16:50:03+00:00 1.0 1199320434 1219 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-27 16:40:03+00:00 1.0 1199320434 1218 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-27 16:30:03+00:00 1.0 1199320434 1217 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 16:00:04+00:00 1.0 1199320434 1216 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 15:00:08+00:00 1.0 1199320434 1215 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-27 13:00:03+00:00 1.0 1199320434 1211 pump results coin was pax open 16145 high 67999 welldone guys more than 4x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-24 17:19:05+00:00 1.0 1199320434 1206 coin to pump is pax exchange yobitnet target +600 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-24 17:00:08+00:00 1.0 1199320434 1204 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-24 16:55:01+00:00 1.0 1199320434 1203 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-24 16:50:01+00:00 1.0 1199320434 1202 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-24 16:40:01+00:00 1.0 1199320434 1201 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-24 16:30:04+00:00 1.0 1199320434 1200 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 16:00:02+00:00 1.0 1199320434 1199 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 15:00:03+00:00 1.0 1199320434 1198 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-24 13:00:16+00:00 1.0 1199320434 1194 pump results coin was enj open 3246 high 1000 welldone guys more than 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-23 17:34:41+00:00 1.0 1199320434 1188 coin to pump is enj exchange yobitnet target +200 market enjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-23 17:00:09+00:00 1.0 1199320434 1186 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-23 16:55:01+00:00 1.0 1199320434 1185 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-23 16:50:01+00:00 1.0 1199320434 1184 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-23 16:40:01+00:00 1.0 1199320434 1183 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-23 16:30:04+00:00 1.0 1199320434 1182 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 16:00:03+00:00 1.0 1199320434 1181 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 15:00:06+00:00 1.0 1199320434 1180 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-23 13:10:23+00:00 1.0 1199320434 1175 pump results coin was soul high 1750 low 1100 current rate 14501500+ those who bought at 1100 rate got 40 profit approx we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-22 17:46:39+00:00 1.0 1199320434 1161 ℹ️ 5 minutes ℹ️ the next post will be the coin to buyhold for max profit on kucoincom 2019-04-22 15:55:01+00:00 1.0 1199320434 1159 ℹ️ 10 minutes ℹ️ get ready with your kucoin account coin is low level buy with us 2019-04-22 15:50:01+00:00 1.0 1199320434 1158 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on kucoincom 2019-04-22 15:40:01+00:00 1.0 1199320434 1157 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2019-04-22 15:30:06+00:00 1.0 1199320434 1156 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 15:00:04+00:00 1.0 1199320434 1154 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 13:00:02+00:00 1.0 1199320434 1152 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 10:00:02+00:00 1.0 1199320434 1150 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt indian time 930 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2019-04-22 08:12:40+00:00 1.0 1199320434 1147 pump results coin was storm open 68 high 194 welldone guys almost 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-20 17:52:52+00:00 1.0 1199320434 1142 coin to pump is storm exchange yobitnet target +200 market stormbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-20 17:00:08+00:00 1.0 1199320434 1140 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-20 16:55:07+00:00 1.0 1199320434 1139 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-20 16:50:02+00:00 1.0 1199320434 1138 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-20 16:40:02+00:00 1.0 1199320434 1137 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-20 16:30:04+00:00 1.0 1199320434 1136 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 16:00:03+00:00 1.0 1199320434 1135 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 15:00:02+00:00 1.0 1199320434 1134 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-20 13:00:02+00:00 1.0 1199320434 1126 pump results coin was ppt open 28793 high 109918 welldone guys almost 4x times repump count ✨2nd ✨time on your massive request better height from first pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-19 17:22:28+00:00 1.0 1199320434 1120 coin to pump is ppt exchange yobitnet target +200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-19 17:00:01+00:00 1.0 1199320434 1119 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-19 16:55:01+00:00 1.0 1199320434 1117 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-19 16:50:01+00:00 1.0 1199320434 1116 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-19 16:40:02+00:00 1.0 1199320434 1115 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-19 16:30:02+00:00 1.0 1199320434 1114 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 16:00:02+00:00 1.0 1199320434 1113 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 15:00:03+00:00 1.0 1199320434 1112 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-19 13:00:05+00:00 1.0 1199320434 1100 scheduled pump is cancelled today due to worst market conditions high sell wall in the selected coin next pump the coin will be one of the previous oneswhich you messaged us and sent a lot of request so we will fulfill ityour demandas per trends thanks for being with us 2019-04-16 16:56:58+00:00 1.0 1199320434 1094 pump results coin was tnt low 350 high 640 welldone guys almost 2x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-15 17:20:26+00:00 1.0 1199320434 1089 the coin to pump is tnt exchange yobitnet target 100200 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-15 17:00:14+00:00 1.0 1199320434 1087 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-15 16:55:03+00:00 1.0 1199320434 1086 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-15 16:51:13+00:00 1.0 1199320434 1085 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-15 16:40:02+00:00 1.0 1199320434 1084 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-15 16:30:13+00:00 1.0 1199320434 1083 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 16:00:12+00:00 1.0 1199320434 1082 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 15:00:07+00:00 1.0 1199320434 1081 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-15 13:00:02+00:00 1.0 1199320434 1077 pump results coin was dai open 19000 high 42243 profit more than x 2 repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-14 17:31:20+00:00 1.0 1199320434 1073 coin to pump is dai exchange yobitnet target 400600 market daibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-14 17:00:09+00:00 1.0 1199320434 1071 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-14 16:55:01+00:00 1.0 1199320434 1070 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-14 16:50:01+00:00 1.0 1199320434 1069 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-14 16:40:01+00:00 1.0 1199320434 1068 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-14 16:30:03+00:00 1.0 1199320434 1067 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 16:00:02+00:00 1.0 1199320434 1066 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 15:00:04+00:00 1.0 1199320434 1065 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-14 13:00:13+00:00 1.0 1199320434 1062 pump results coin was bnt open 12165 high 24999 profit x 2 repump count ✨5th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-13 17:26:38+00:00 1.0 1199320434 1056 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-13 17:00:14+00:00 1.0 1199320434 1054 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-13 16:55:01+00:00 1.0 1199320434 1052 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-13 16:50:02+00:00 1.0 1199320434 1051 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-13 16:40:01+00:00 1.0 1199320434 1050 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-13 16:30:04+00:00 1.0 1199320434 1049 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-13 16:00:07+00:00 1.0 1199320434 1048 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-13 15:00:02+00:00 1.0 1199320434 1047 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-13 13:00:05+00:00 1.0 1199320434 1042 pump results coin was snm open 580 reached 1138 welldone guys 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-11 17:24:42+00:00 1.0 1199320434 1037 coin to pump is snm exchange yobitnet target +200 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-11 17:00:11+00:00 1.0 1199320434 1035 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-11 16:55:01+00:00 1.0 1199320434 1034 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-11 16:50:09+00:00 1.0 1199320434 1032 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-11 16:40:01+00:00 1.0 1199320434 1031 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-11 16:30:06+00:00 1.0 1199320434 1030 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-11 16:00:02+00:00 1.0 1199320434 1029 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-11 15:00:05+00:00 1.0 1199320434 1028 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-11 13:06:29+00:00 1.0 1199320434 1024 pump results coin was qkc open 1060 reached 3732 welldone guys nearly 4 x times repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-09 17:55:25+00:00 1.0 1199320434 1019 the coin to pump is qkc exchange yobitnet target +400 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-09 17:00:09+00:00 1.0 1199320434 1017 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-09 16:55:01+00:00 1.0 1199320434 1015 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-09 16:50:01+00:00 1.0 1199320434 1014 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-09 16:40:02+00:00 1.0 1199320434 1013 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-09 16:30:03+00:00 1.0 1199320434 1012 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-09 16:00:07+00:00 1.0 1199320434 1011 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-09 15:00:03+00:00 1.0 1199320434 1010 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-09 13:00:01+00:00 1.0 1199320434 1006 pump results coin was ppt open 32841 high 72500 welldone guys more than 2 x times notewe always repump our coin 2019-04-08 17:25:41+00:00 1.0 1199320434 1001 coin to pump is ppt exchange yobitnet target +200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-08 17:00:07+00:00 1.0 1199320434 999 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-08 16:55:01+00:00 1.0 1199320434 998 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-08 16:50:01+00:00 1.0 1199320434 997 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-08 16:40:02+00:00 1.0 1199320434 996 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-08 16:30:06+00:00 1.0 1199320434 995 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-08 16:00:40+00:00 1.0 1199320434 994 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-08 15:00:03+00:00 1.0 1199320434 993 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-08 13:00:19+00:00 1.0 1199320434 989 pump results coin was aoa open 327 high 1301 welldone guys 4 x times repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-07 17:46:30+00:00 1.0 1199320434 983 coin to pump is aoa exchange yobitnet target +300 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-07 17:00:08+00:00 1.0 1199320434 981 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-07 16:55:02+00:00 1.0 1199320434 979 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-07 16:50:02+00:00 1.0 1199320434 978 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-07 16:40:03+00:00 1.0 1199320434 977 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-07 16:30:06+00:00 1.0 1199320434 976 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-07 16:00:37+00:00 1.0 1199320434 975 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-07 15:00:02+00:00 1.0 1199320434 974 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-07 13:00:03+00:00 1.0 1199320434 973 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-07 11:00:03+00:00 1.0 1199320434 969 pump results coin was bnt low 13160 high 26000 profit x 2 repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-06 17:33:47+00:00 1.0 1199320434 964 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-06 17:00:07+00:00 1.0 1199320434 961 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-06 16:55:02+00:00 1.0 1199320434 960 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-06 16:50:02+00:00 1.0 1199320434 959 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-06 16:40:01+00:00 1.0 1199320434 958 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-06 16:30:04+00:00 1.0 1199320434 957 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-06 16:00:08+00:00 1.0 1199320434 956 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-06 15:00:07+00:00 1.0 1199320434 955 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-06 13:00:02+00:00 1.0 1199320434 954 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-06 11:00:01+00:00 1.0 1199320434 950 pump results coin was hqx low 100 high 399 repump count 3rd time on your massive requestmore than 3 x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-05 18:10:06+00:00 1.0 1199320434 943 coin to pump is hqx exchange yobitnet target +300 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-05 17:00:06+00:00 1.0 1199320434 941 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-05 16:55:01+00:00 1.0 1199320434 939 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-05 16:50:04+00:00 1.0 1199320434 938 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-05 16:40:01+00:00 1.0 1199320434 937 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-05 16:30:02+00:00 1.0 1199320434 936 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-05 16:00:05+00:00 1.0 1199320434 935 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-05 15:00:02+00:00 1.0 1199320434 931 pump results coin was bnt ooen 13607 high 38692 profit x 3 repump count 3rd time on your massive request notewe always repump our coin 2019-04-04 17:15:41+00:00 1.0 1199320434 925 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-04 17:00:09+00:00 1.0 1199320434 922 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-04 16:55:01+00:00 1.0 1199320434 921 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-04 16:50:02+00:00 1.0 1199320434 920 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-04 16:40:02+00:00 1.0 1199320434 919 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-04 16:30:06+00:00 1.0 1199320434 918 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-04 16:00:46+00:00 1.0 1199320434 917 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-04 15:00:03+00:00 1.0 1199320434 916 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-04 13:00:05+00:00 1.0 1199320434 915 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-04 11:00:08+00:00 1.0 1199320434 908 pump results coin was tfd open 188 high 958 more than 5 x times profit welldone guys notewe always repump our coin 2019-03-30 17:33:03+00:00 1.0 1199320434 903 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-30 17:00:12+00:00 1.0 1199320434 900 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-30 16:55:01+00:00 1.0 1199320434 899 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-30 16:50:01+00:00 1.0 1199320434 898 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-30 16:40:01+00:00 1.0 1199320434 897 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-30 16:30:02+00:00 1.0 1199320434 896 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-30 16:00:27+00:00 1.0 1199320434 895 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-30 15:00:03+00:00 1.0 1199320434 894 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-30 13:00:07+00:00 1.0 1199320434 890 pump results coin was bnt low 15055 high 24300 repump count 2nd time on your massive request 6070 profit notewe always repump our coin 2019-03-29 18:52:17+00:00 1.0 1199320434 885 the coin to pump is bnt exchange yobitnet target +200 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-29 17:00:06+00:00 1.0 1199320434 883 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-29 16:55:00+00:00 1.0 1199320434 882 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-29 16:50:00+00:00 1.0 1199320434 881 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-29 16:40:01+00:00 1.0 1199320434 880 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-29 16:30:01+00:00 1.0 1199320434 878 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-29 16:01:39+00:00 1.0 1199320434 877 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-29 15:00:02+00:00 1.0 1199320434 876 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-29 13:00:06+00:00 1.0 1199320434 875 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-29 10:00:02+00:00 1.0 1199320434 871 pump results coin was hqx open 165 high 499 repump count 2nd time on your massive request more than 3 x times notewe always repump our coin 2019-03-26 17:20:11+00:00 1.0 1199320434 866 coin to pump is hqx exchange yobitnet target +300 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-26 17:00:08+00:00 1.0 1199320434 863 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-26 16:55:01+00:00 1.0 1199320434 862 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-26 16:50:00+00:00 1.0 1199320434 861 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-26 16:40:01+00:00 1.0 1199320434 860 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-26 16:30:03+00:00 1.0 1199320434 859 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-26 16:00:01+00:00 1.0 1199320434 858 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-26 15:00:01+00:00 1.0 1199320434 857 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-26 13:00:05+00:00 1.0 1199320434 855 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-26 10:01:23+00:00 1.0 1199320434 852 pump results coin was dadi open 857 high 2850 repump count 4th time on your massive request ✅ welldone more than 3 x times notewe always repump our coin 2019-03-25 17:29:05+00:00 1.0 1199320434 845 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-25 17:00:10+00:00 1.0 1199320434 842 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-25 16:55:00+00:00 1.0 1199320434 841 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-25 16:50:01+00:00 1.0 1199320434 840 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-25 16:40:00+00:00 1.0 1199320434 839 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-25 16:30:01+00:00 1.0 1199320434 838 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-25 16:01:24+00:00 1.0 1199320434 837 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-25 15:00:01+00:00 1.0 1199320434 836 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-25 13:00:03+00:00 1.0 1199320434 835 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-25 11:00:03+00:00 1.0 1199320434 831 pump results coin was hqx open 181 high 453 more than 2 x times notewe always repump our coin 2019-03-24 17:29:59+00:00 1.0 1199320434 827 coin to pump is hqx exchange yobitnet target +200 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-24 17:00:08+00:00 1.0 1199320434 825 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-24 16:55:01+00:00 1.0 1199320434 824 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-24 16:50:03+00:00 1.0 1199320434 823 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-24 16:40:01+00:00 1.0 1199320434 822 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-24 16:30:20+00:00 1.0 1199320434 821 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-24 16:00:03+00:00 1.0 1199320434 820 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-24 15:00:02+00:00 1.0 1199320434 819 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-24 13:00:02+00:00 1.0 1199320434 818 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-24 11:00:03+00:00 1.0 1199320434 815 extended results of our last pump coin fc vol 239 btc open 20 high 147 more than 7 x times our trollingmarketing created second massive wave ✅always trade with us ✅ we always repump our coin ✅ hi 2019-03-24 04:46:52+00:00 1.0 1199320434 813 pump results coin was fc open 20 high 109 more than 5 x times panick seller try to ruin the pump at low profitbut we keep going got great buy order for long time notewe always repump our coin 2019-03-23 17:41:35+00:00 1.0 1199320434 806 coin to pump is fc exchange yobitnet target +400 market fcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-23 17:00:08+00:00 1.0 1199320434 804 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-23 16:55:03+00:00 1.0 1199320434 803 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-23 16:50:00+00:00 1.0 1199320434 802 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-23 16:40:01+00:00 1.0 1199320434 801 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-23 16:30:01+00:00 1.0 1199320434 800 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-23 16:00:01+00:00 1.0 1199320434 799 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-23 15:00:02+00:00 1.0 1199320434 798 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-23 12:59:21+00:00 1.0 1199320434 797 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-23 11:01:19+00:00 1.0 1199320434 787 pump results coin was dadi open 900 high 3112 more than 3 x times repump count3rd time on your request notewe always repump our coin 2019-03-21 17:28:22+00:00 1.0 1199320434 781 coin to pump is dadi exchange yobitnet target +200 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-21 17:00:07+00:00 1.0 1199320434 778 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-21 16:55:01+00:00 1.0 1199320434 777 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-21 16:50:01+00:00 1.0 1199320434 776 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-21 16:40:01+00:00 1.0 1199320434 775 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-21 16:30:01+00:00 1.0 1199320434 774 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-21 16:00:01+00:00 1.0 1199320434 773 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-21 15:00:10+00:00 1.0 1199320434 772 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-21 13:00:06+00:00 1.0 1199320434 768 pump results coin was ing low 100 high 363 x 3 + more than thice repump count 2nd time for you guys in less than a week time frame notewe always repump our coin 2019-03-20 18:01:02+00:00 1.0 1199320434 762 coin to pump is ing exchange yobitnet target +300 market ingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-20 17:00:08+00:00 1.0 1199320434 760 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-20 16:55:01+00:00 1.0 1199320434 759 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-20 16:50:01+00:00 1.0 1199320434 758 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-20 16:40:00+00:00 1.0 1199320434 757 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-20 16:30:03+00:00 1.0 1199320434 756 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-20 16:00:41+00:00 1.0 1199320434 755 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-20 15:00:06+00:00 1.0 1199320434 754 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-20 13:00:02+00:00 1.0 1199320434 750 pump results coin was ren low 450 high 975 repump count ✨3rd time✨ x 2 + more than twice notewe always repump our coin 2019-03-19 18:32:39+00:00 1.0 1199320434 744 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-19 17:00:07+00:00 1.0 1199320434 742 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-19 16:55:01+00:00 1.0 1199320434 740 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-19 16:50:01+00:00 1.0 1199320434 739 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-19 16:40:01+00:00 1.0 1199320434 738 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-19 16:30:04+00:00 1.0 1199320434 737 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-19 16:00:11+00:00 1.0 1199320434 736 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-19 15:00:03+00:00 1.0 1199320434 734 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-19 13:00:03+00:00 1.0 1199320434 733 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-19 11:00:06+00:00 1.0 1199320434 730 pump results coin was ing open 130 high 337 x 2 + more than twice notewe always repump our coin 2019-03-16 17:45:17+00:00 1.0 1199320434 723 coin to pump is ing exchange yobitnet target +300 market ingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-16 17:00:07+00:00 1.0 1199320434 721 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-16 16:55:01+00:00 1.0 1199320434 720 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-16 16:50:00+00:00 1.0 1199320434 719 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-16 16:40:00+00:00 1.0 1199320434 718 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-16 16:30:03+00:00 1.0 1199320434 717 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-16 16:00:40+00:00 1.0 1199320434 716 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-16 15:00:02+00:00 1.0 1199320434 715 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-16 13:00:01+00:00 1.0 1199320434 714 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-16 11:02:20+00:00 1.0 1199320434 713 ℹ coin signal information ℹ date saturday 160319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-16 08:13:01+00:00 1.0 1199320434 712 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 160319 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-16 06:51:35+00:00 1.0 1199320434 705 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:45:17+00:00 1.0 1199320434 704 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:45:01+00:00 1.0 1199320434 702 pump results coin was dadi open 820 high 1230 repump count2 nd time on your request notewe always repump our coin 2019-03-07 17:31:09+00:00 1.0 1199320434 695 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-07 17:00:25+00:00 1.0 1199320434 693 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-07 16:55:04+00:00 1.0 1199320434 692 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-07 16:50:05+00:00 1.0 1199320434 691 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-07 16:40:05+00:00 1.0 1199320434 690 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-07 16:30:04+00:00 1.0 1199320434 689 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-07 16:00:06+00:00 1.0 1199320434 688 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-07 15:00:01+00:00 1.0 1199320434 687 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-07 13:00:10+00:00 1.0 1199320434 686 ℹ coin signal information ℹ date thursday 070319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-07 11:13:03+00:00 1.0 1199320434 685 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 070319 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-07 10:25:00+00:00 1.0 1199320434 681 pump results coin was theta low 3263 high 6984 x 2 repump count3rd time notewe always repump our coin 2019-03-06 18:40:36+00:00 1.0 1199320434 674 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-06 17:00:17+00:00 1.0 1199320434 672 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-06 16:55:01+00:00 1.0 1199320434 670 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-06 16:50:01+00:00 1.0 1199320434 669 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-06 16:40:07+00:00 1.0 1199320434 668 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-06 16:30:02+00:00 1.0 1199320434 666 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-06 16:00:02+00:00 1.0 1199320434 665 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-06 15:00:04+00:00 1.0 1199320434 664 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-06 13:03:06+00:00 1.0 1199320434 663 signal of the day time 1630 gmt exchange binance 2019-03-06 13:02:14+00:00 1.0 1199320434 662 ℹ coin signal information ℹ date wednesday 060319 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-03-06 11:43:30+00:00 1.0 1199320434 660 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 060319 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-03-06 10:30:51+00:00 1.0 1199320434 654 pump results coin was crpt low 3713 high 6835 welldone guys pump count 2nd time notewe always repump our coin n we r true to our words ✅ 2019-03-01 18:16:55+00:00 1.0 1199320434 645 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-01 17:00:06+00:00 1.0 1199320434 643 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-01 16:55:01+00:00 1.0 1199320434 642 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-01 16:50:01+00:00 1.0 1199320434 641 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-01 16:40:03+00:00 1.0 1199320434 640 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-01 16:30:04+00:00 1.0 1199320434 639 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 16:00:26+00:00 1.0 1199320434 638 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 15:00:01+00:00 1.0 1199320434 637 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 13:00:09+00:00 1.0 1199320434 636 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 10:03:09+00:00 1.0 1199320434 624 buy coin sys binance ▶️ tradeindexsymbolsysbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-27 17:00:10+00:00 1.0 1199320434 621 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-27 16:55:07+00:00 1.0 1199320434 618 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-27 16:50:01+00:00 1.0 1199320434 617 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-27 16:40:07+00:00 1.0 1199320434 615 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-27 16:30:05+00:00 1.0 1199320434 613 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 16:00:21+00:00 1.0 1199320434 610 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 15:00:02+00:00 1.0 1199320434 609 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 13:01:49+00:00 1.0 1199320434 607 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 10:00:19+00:00 1.0 1199320434 602 pump results coin was storj low 50 high 75 welldone guys pump count 2nd time for you guys notewe always repump our coin 2019-02-25 17:26:20+00:00 1.0 1199320434 595 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-25 17:00:19+00:00 1.0 1199320434 592 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-25 16:55:02+00:00 1.0 1199320434 591 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-25 16:50:02+00:00 1.0 1199320434 590 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-25 16:40:01+00:00 1.0 1199320434 589 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-25 16:30:04+00:00 1.0 1199320434 588 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 16:00:06+00:00 1.0 1199320434 587 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 15:00:31+00:00 1.0 1199320434 586 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 13:00:03+00:00 1.0 1199320434 585 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 11:07:26+00:00 1.0 1199320434 584 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250219 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-25 10:27:14+00:00 1.0 1199320434 573 buy coin bqx binance ▶️ tradeindexsymbolbqxbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-24 17:00:26+00:00 1.0 1199320434 572 buy coin bqx binance ▶️ tradeindexsymbolbqxbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-24 17:00:22+00:00 1.0 1199320434 570 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-24 16:55:41+00:00 1.0 1199320434 569 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-24 16:55:03+00:00 1.0 1199320434 567 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-24 16:50:29+00:00 1.0 1199320434 566 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-24 16:50:01+00:00 1.0 1199320434 565 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-24 16:40:11+00:00 1.0 1199320434 564 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-24 16:40:01+00:00 1.0 1199320434 563 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-24 16:30:15+00:00 1.0 1199320434 562 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-24 16:30:02+00:00 1.0 1199320434 559 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 16:00:06+00:00 1.0 1199320434 557 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 15:00:09+00:00 1.0 1199320434 555 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 13:00:04+00:00 1.0 1199320434 554 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 11:00:44+00:00 1.0 1199320434 548 pump results coin was ukg open 830 high 2749 welldone guys nearly 3 x times repump count 2nd time notewe always repump our coin 2019-02-23 18:04:04+00:00 1.0 1199320434 543 coin to pump is ukg exchange yobitnet target +500 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-23 17:00:33+00:00 1.0 1199320434 540 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-23 16:55:09+00:00 1.0 1199320434 539 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-23 16:50:00+00:00 1.0 1199320434 538 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-23 16:40:09+00:00 1.0 1199320434 537 time has been changed due to high sell in selected coin 1730 pm gmt exchange binance 2019-02-23 16:37:05+00:00 1.0 1199320434 536 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-23 16:30:03+00:00 1.0 1199320434 534 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 16:00:19+00:00 1.0 1199320434 533 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 15:00:40+00:00 1.0 1199320434 532 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-23 13:00:15+00:00 1.0 1199320434 530 signal of the day time 1630 gmt exchange binance be readyto buy quickly for big profit 2019-02-23 12:51:10+00:00 1.0 1199320434 529 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-23 10:00:13+00:00 1.0 1199320434 528 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-23 07:35:23+00:00 1.0 1199320434 525 pump results coin was storj low 5501 high 9670 welldone guys nearly 2 x times notewe always repump our coin 2019-02-21 17:48:10+00:00 1.0 1199320434 517 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-21 17:00:20+00:00 1.0 1199320434 515 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-21 16:55:01+00:00 1.0 1199320434 513 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-21 16:50:07+00:00 1.0 1199320434 512 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-21 16:40:04+00:00 1.0 1199320434 510 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-21 16:30:06+00:00 1.0 1199320434 509 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-21 16:00:08+00:00 1.0 1199320434 508 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-21 15:00:06+00:00 1.0 1199320434 507 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-21 12:01:09+00:00 1.0 1199320434 505 ℹ coin signal information ℹ date thursday 210219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-21 08:21:28+00:00 1.0 1199320434 504 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 210219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-21 05:22:56+00:00 1.0 1199320434 502 pump results coin was crpt open 4702 high 11777 welldone guys 25 x times notewe always repump our coin 2019-02-20 19:12:31+00:00 1.0 1199320434 494 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-20 17:01:25+00:00 1.0 1199320434 492 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-20 16:55:01+00:00 1.0 1199320434 491 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-20 16:50:02+00:00 1.0 1199320434 490 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-20 16:40:06+00:00 1.0 1199320434 489 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-20 16:30:02+00:00 1.0 1199320434 488 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-20 16:00:23+00:00 1.0 1199320434 486 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-20 15:00:10+00:00 1.0 1199320434 485 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-20 10:59:27+00:00 1.0 1199320434 484 ℹ coin signal information ℹ date wednesday 200219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-20 09:58:47+00:00 1.0 1199320434 483 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200219 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-20 06:14:07+00:00 1.0 1199320434 481 pump results coin was blz low 1088 high 2911 welldone guys nearly 2 x times pumped twice till now notewe always repump our coin 2019-02-19 17:40:52+00:00 1.0 1199320434 474 coin to pump is blz exchange yobitnet target +500 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-19 17:00:40+00:00 1.0 1199320434 472 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-19 16:55:00+00:00 1.0 1199320434 471 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-19 16:50:07+00:00 1.0 1199320434 470 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-19 16:40:02+00:00 1.0 1199320434 469 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-19 16:30:03+00:00 1.0 1199320434 467 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-19 16:00:15+00:00 1.0 1199320434 466 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-19 15:00:26+00:00 1.0 1199320434 465 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-19 13:00:27+00:00 1.0 1199320434 464 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-19 11:00:09+00:00 1.0 1199320434 462 ℹ coin signal information ℹ date tuesday 190219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-19 05:57:12+00:00 1.0 1199320434 460 pump results coin was wtc open 25000 high 70671 welldone guys nearly 3 x times notewe always repump our coin 2019-02-18 17:44:28+00:00 1.0 1199320434 452 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-18 17:00:20+00:00 1.0 1199320434 450 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-18 16:55:08+00:00 1.0 1199320434 449 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-18 16:50:06+00:00 1.0 1199320434 448 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-18 16:40:01+00:00 1.0 1199320434 447 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-18 16:30:06+00:00 1.0 1199320434 446 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-18 16:00:06+00:00 1.0 1199320434 445 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-18 15:08:55+00:00 1.0 1199320434 443 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 13:00:20+00:00 1.0 1199320434 441 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 11:00:20+00:00 1.0 1199320434 440 ℹ coin signal information ℹ date monday 180219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-18 10:09:56+00:00 1.0 1199320434 437 pump results coin was ukg open 1105 high 3198 welldone guys nearly 3 x times great buy orders for long time notewe always repump our coin 2019-02-17 17:37:55+00:00 1.0 1199320434 436 coin to pump is ukg exchange yobitnet target +500 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-17 17:00:10+00:00 1.0 1199320434 434 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-17 16:55:14+00:00 1.0 1199320434 433 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-17 16:50:25+00:00 1.0 1199320434 432 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-17 16:40:11+00:00 1.0 1199320434 431 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-17 16:30:12+00:00 1.0 1199320434 430 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 16:00:08+00:00 1.0 1199320434 429 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 15:00:41+00:00 1.0 1199320434 428 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-17 10:01:00+00:00 1.0 1199320434 426 ℹ coin signal information ℹ date sunday 170219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-17 09:23:30+00:00 1.0 1199320434 425 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-17 07:51:16+00:00 1.0 1199320434 420 pump results coin was aoa open 180 high 639 welldone guys nearly 4 x times notewe always repump our coin 2019-02-16 17:52:47+00:00 1.0 1199320434 414 coin to pump is aoa exchange yobitnet target +500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-16 17:00:20+00:00 1.0 1199320434 412 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-16 16:55:49+00:00 1.0 1199320434 411 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-16 16:50:35+00:00 1.0 1199320434 410 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-16 16:40:19+00:00 1.0 1199320434 409 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-16 16:31:15+00:00 1.0 1199320434 408 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 16:00:08+00:00 1.0 1199320434 407 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 15:00:19+00:00 1.0 1199320434 406 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-16 14:02:20+00:00 1.0 1199320434 405 ℹ coin signal information ℹ date saturday 160219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-16 12:40:41+00:00 1.0 1199320434 404 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 160219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-16 12:39:50+00:00 1.0 1199320434 396 pump results coin was dadi open 821 high 3876 welldone nearly 5 x times notewe always repump our coin 2019-02-15 17:36:18+00:00 1.0 1199320434 393 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-15 17:01:51+00:00 1.0 1199320434 392 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-15 16:55:53+00:00 1.0 1199320434 390 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-15 16:50:04+00:00 1.0 1199320434 389 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-15 16:40:11+00:00 1.0 1199320434 388 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-15 16:31:03+00:00 1.0 1199320434 387 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 16:01:38+00:00 1.0 1199320434 386 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 16:00:23+00:00 1.0 1199320434 385 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 15:00:31+00:00 1.0 1199320434 383 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 12:59:01+00:00 1.0 1199320434 382 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 10:59:27+00:00 1.0 1199320434 381 ℹ coin signal information ℹ date friday 150219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-15 04:59:03+00:00 1.0 1199320434 380 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-15 04:12:16+00:00 1.0 1199320434 369 pump results coin was theta low 1750 high 2534 repump count2nd time notewe always repump our coin 2019-02-08 01:33:21+00:00 1.0 1199320434 364 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-07 17:00:23+00:00 1.0 1199320434 362 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-07 16:56:42+00:00 1.0 1199320434 361 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-07 16:50:06+00:00 1.0 1199320434 360 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-07 16:40:43+00:00 1.0 1199320434 358 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-07 16:32:11+00:00 1.0 1199320434 357 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 16:01:59+00:00 1.0 1199320434 356 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 15:00:28+00:00 1.0 1199320434 354 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 070219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-07 14:07:21+00:00 1.0 1199320434 352 pump results coin was tnt low 354 high 806 repump count3rd time notewe always repump our coin 2019-02-06 19:42:57+00:00 1.0 1199320434 350 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-06 19:00:17+00:00 1.0 1199320434 348 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-06 18:54:34+00:00 1.0 1199320434 347 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-06 18:50:52+00:00 1.0 1199320434 346 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-06 18:40:46+00:00 1.0 1199320434 345 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-06 18:30:29+00:00 1.0 1199320434 344 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-06 18:00:54+00:00 1.0 1199320434 343 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-02-06 15:03:10+00:00 1.0 1199320434 342 ℹ coin signal information ℹ date wednesday 060219 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-06 13:50:25+00:00 1.0 1199320434 341 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 060219 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-06 11:46:27+00:00 1.0 1199320434 339 pump results coin was ren low 519 high 1042 2x times repump count 2nd time presence of chat admin n banning our team members deprived us from high profits notewe always repump our coin 2019-01-26 19:47:42+00:00 1.0 1199320434 338 pump results coin was wtc low 519 high 1042 2x times repump count 2nd time presence of chat admin n banning our team members deprived us from high profits notewe always repump our coin 2019-01-26 19:29:35+00:00 1.0 1199320434 337 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-26 19:00:18+00:00 1.0 1199320434 335 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-26 18:53:59+00:00 1.0 1199320434 334 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-26 18:48:20+00:00 1.0 1199320434 333 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-26 18:38:01+00:00 1.0 1199320434 332 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-26 18:28:01+00:00 1.0 1199320434 331 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 18:00:29+00:00 1.0 1199320434 330 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 16:59:01+00:00 1.0 1199320434 329 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-26 14:59:38+00:00 1.0 1199320434 328 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260119 saturday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-26 13:59:09+00:00 1.0 1199320434 326 pump results coin was wtc open 25010 high 75060 3x times repump count 2nd time notewe always repump our coin 2019-01-25 17:38:23+00:00 1.0 1199320434 325 post coin name in yobit chatbox 2019-01-25 17:13:41+00:00 1.0 1199320434 323 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-25 17:00:42+00:00 1.0 1199320434 321 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-25 16:54:05+00:00 1.0 1199320434 320 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-25 16:49:10+00:00 1.0 1199320434 319 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-25 16:39:08+00:00 1.0 1199320434 318 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-25 16:29:15+00:00 1.0 1199320434 317 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 16:00:10+00:00 1.0 1199320434 316 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 15:07:30+00:00 1.0 1199320434 315 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-25 13:00:27+00:00 1.0 1199320434 313 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-25 11:00:21+00:00 1.0 1199320434 311 pump results coin was tnt low 400 high 670 analysis heavy buyingselling occured duration pumped two times by our trollingefforts repump count2nd time notewe always repump our coin 2019-01-23 19:34:20+00:00 1.0 1199320434 309 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-23 19:00:40+00:00 1.0 1199320434 307 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-23 18:54:13+00:00 1.0 1199320434 305 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-23 18:49:03+00:00 1.0 1199320434 304 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-23 18:39:06+00:00 1.0 1199320434 303 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-23 18:29:03+00:00 1.0 1199320434 302 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 17:59:03+00:00 1.0 1199320434 301 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 16:59:02+00:00 1.0 1199320434 299 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-23 15:00:39+00:00 1.0 1199320434 298 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230119 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-23 14:01:06+00:00 1.0 1199320434 296 pump results coin was via open 8900 high 12829 heavy buyingselling occured beyond expectations notewe always repump our coin 2019-01-20 17:43:41+00:00 1.0 1199320434 294 the coin to pump is via exchange yobitnet target +200 market viabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-20 17:00:46+00:00 1.0 1199320434 292 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-20 16:54:03+00:00 1.0 1199320434 290 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-20 16:49:01+00:00 1.0 1199320434 289 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-20 16:39:15+00:00 1.0 1199320434 288 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-20 16:29:01+00:00 1.0 1199320434 287 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 15:59:08+00:00 1.0 1199320434 286 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 15:04:32+00:00 1.0 1199320434 285 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-20 13:09:46+00:00 1.0 1199320434 284 ℹ coin signal information ℹ date sunday 200119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-20 09:59:09+00:00 1.0 1199320434 282 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200119 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-20 05:59:04+00:00 1.0 1199320434 277 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-19 16:46:51+00:00 1.0 1199320434 276 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-19 16:33:33+00:00 1.0 1199320434 275 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-19 16:07:14+00:00 1.0 1199320434 274 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-19 15:00:14+00:00 1.0 1199320434 273 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-19 13:02:16+00:00 1.0 1199320434 271 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 190119 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-19 10:02:01+00:00 1.0 1199320434 269 pump results coin was ren open 505 high 1019 x 2 notewe always repump our coin 2019-01-17 18:02:37+00:00 1.0 1199320434 265 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-17 17:00:26+00:00 1.0 1199320434 263 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-17 16:55:06+00:00 1.0 1199320434 262 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-17 16:50:11+00:00 1.0 1199320434 261 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-17 16:40:13+00:00 1.0 1199320434 260 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-17 16:30:02+00:00 1.0 1199320434 259 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 16:00:05+00:00 1.0 1199320434 258 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 15:00:01+00:00 1.0 1199320434 257 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-17 13:00:04+00:00 1.0 1199320434 255 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-17 06:33:34+00:00 1.0 1199320434 253 pump results coin was mth low 401 high 1012 analysis great buy orders for long time duration pumped two times by our trollingefforts repump count3rd time notewe always repump our coin 2019-01-14 18:01:29+00:00 1.0 1199320434 248 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-14 17:00:59+00:00 1.0 1199320434 246 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-14 16:55:07+00:00 1.0 1199320434 245 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-14 16:50:13+00:00 1.0 1199320434 244 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-14 16:40:27+00:00 1.0 1199320434 243 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-14 16:30:15+00:00 1.0 1199320434 242 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 16:00:11+00:00 1.0 1199320434 241 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 15:00:22+00:00 1.0 1199320434 240 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-14 13:00:18+00:00 1.0 1199320434 238 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 140119 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-14 10:33:14+00:00 1.0 1199320434 236 pump results coin was theta low 1118 high 2150 we did best even in worst market notewe always repump our coin 2019-01-13 18:09:47+00:00 1.0 1199320434 232 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-13 17:01:33+00:00 1.0 1199320434 230 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-13 16:55:10+00:00 1.0 1199320434 229 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-13 16:50:07+00:00 1.0 1199320434 228 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-13 16:41:37+00:00 1.0 1199320434 227 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-13 16:30:02+00:00 1.0 1199320434 226 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-13 16:00:07+00:00 1.0 1199320434 225 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-13 15:00:53+00:00 1.0 1199320434 224 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-13 13:00:19+00:00 1.0 1199320434 222 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 130119 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-13 09:10:26+00:00 1.0 1199320434 220 pump results coin was ok low 510 high 775 great buy order near highest point for long time for safe exitfor everyone notewe always repump our coin 2019-01-12 17:26:57+00:00 1.0 1199320434 214 the coin to pump is ok exchange yobitnet target +300 market okbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-12 17:00:35+00:00 1.0 1199320434 211 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-12 16:55:11+00:00 1.0 1199320434 210 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-12 16:50:09+00:00 1.0 1199320434 209 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-12 16:40:06+00:00 1.0 1199320434 208 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-12 16:30:17+00:00 1.0 1199320434 207 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-12 16:00:15+00:00 1.0 1199320434 206 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-12 15:00:10+00:00 1.0 1199320434 205 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-12 13:02:28+00:00 1.0 1199320434 204 be ready guys after 15 minutes we will share you a coin after that we will post in public channel also buy and hold for maximum profit 2019-01-12 12:29:53+00:00 1.0 1199320434 202 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120119 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-12 09:01:04+00:00 1.0 1199320434 198 pump analysis coin kmd as we try to pump on cryptopia rather than yobit so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2019-01-05 17:37:51+00:00 1.0 1199320434 193 the coin to pump is kmd exchange cryptopiaconz target +200 market kmdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-05 17:00:09+00:00 1.0 1199320434 191 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on wwwcryptopiaconz 2019-01-05 16:55:06+00:00 1.0 1199320434 189 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-01-05 16:40:22+00:00 1.0 1199320434 188 ℹ️ 30 minutes ℹ️ start getting logged in wwwcryptopiaconz now 2019-01-05 16:30:07+00:00 1.0 1199320434 187 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 16:00:06+00:00 1.0 1199320434 186 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 15:00:08+00:00 1.0 1199320434 185 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 13:00:07+00:00 1.0 1199320434 184 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2019-01-05 10:00:05+00:00 1.0 1199320434 182 ℹ coin signal information ℹ date saturday 05012019 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2019-01-05 08:29:47+00:00 1.0 1199320434 181 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 05012019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2019-01-05 06:30:55+00:00 1.0 1199320434 179 pump results coin was wtc low 21021 high 40001 notewe always repump our coin 2019-01-04 07:26:09+00:00 1.0 1199320434 175 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-03 17:00:24+00:00 1.0 1199320434 173 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-03 16:55:26+00:00 1.0 1199320434 172 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-03 16:51:04+00:00 1.0 1199320434 171 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-03 16:40:14+00:00 1.0 1199320434 169 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-03 16:30:12+00:00 1.0 1199320434 168 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 16:00:07+00:00 1.0 1199320434 167 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 15:00:17+00:00 1.0 1199320434 166 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-03 13:00:05+00:00 1.0 1199320434 165 ℹ coin signal information ℹ date thursday 030119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-03 11:00:22+00:00 1.0 1199320434 164 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 030119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-03 10:29:08+00:00 1.0 1199320434 162 pump results coin was tnt start 310 reached 510 notewe always repump our coin 2019-01-02 05:54:55+00:00 1.0 1199320434 157 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-01 17:01:12+00:00 1.0 1199320434 155 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-01 16:55:06+00:00 1.0 1199320434 154 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-01 16:50:03+00:00 1.0 1199320434 153 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-01 16:40:04+00:00 1.0 1199320434 152 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-01 16:30:04+00:00 1.0 1199320434 151 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 16:00:37+00:00 1.0 1199320434 150 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 15:00:14+00:00 1.0 1199320434 149 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-01 10:00:23+00:00 1.0 1199320434 148 ℹ coin signal information ℹ date tuesday 010119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-01 08:00:29+00:00 1.0 1199320434 147 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 010119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-01 05:56:16+00:00 1.0 1199320434 141 pump results coin was bnt low 00001400 reached 000017849 heavy volume created 11 btc heavy buying selling occured in our coinwhich is unexpected n unpredictible preventing it 2018-12-29 18:30:56+00:00 1.0 1199320434 137 amit sharma the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-29 17:00:47+00:00 1.0 1199320434 135 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-29 16:55:13+00:00 1.0 1199320434 134 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-29 16:50:03+00:00 1.0 1199320434 133 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-29 16:40:24+00:00 1.0 1199320434 132 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-29 16:30:14+00:00 1.0 1199320434 131 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 16:00:08+00:00 1.0 1199320434 130 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 15:00:15+00:00 1.0 1199320434 129 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-29 13:00:03+00:00 1.0 1199320434 128 ℹ coin signal information ℹ date saturday 29122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-29 10:28:58+00:00 1.0 1199320434 127 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29122018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-29 09:03:35+00:00 1.0 1199320434 125 pump results x2 coin was qkc open 000000920 reached 000001886 note we will always pump our coins againso always trade with us for max profit 2018-12-28 17:17:09+00:00 1.0 1199320434 120 the coin to pump is qkc exchange yobitnet target +500 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-28 16:00:29+00:00 1.0 1199320434 118 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-28 15:55:07+00:00 1.0 1199320434 117 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-28 15:50:03+00:00 1.0 1199320434 116 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-28 15:40:14+00:00 1.0 1199320434 115 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-28 15:30:07+00:00 1.0 1199320434 114 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 15:00:12+00:00 1.0 1199320434 113 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 14:30:13+00:00 1.0 1199320434 112 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 13:00:03+00:00 1.0 1199320434 111 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 10:00:19+00:00 1.0 1199320434 110 ℹ coin signal information ℹ date friday 28122018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all ofj us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-28 09:14:19+00:00 1.0 1199320434 73 pump results coin was dlt 24 hr low 000000881 reached 000001520 note we will always pump our coins againso always trade with us for max profit 2018-12-26 18:02:58+00:00 1.0 1199320434 69 the coin to pump is dlt exchange yobitnet target +500 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-26 17:01:10+00:00 1.0 1199320434 67 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-26 16:55:08+00:00 1.0 1199320434 66 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-26 16:50:05+00:00 1.0 1199320434 65 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-26 16:40:02+00:00 1.0 1199320434 64 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-26 16:30:16+00:00 1.0 1199320434 63 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 16:00:10+00:00 1.0 1199320434 62 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 15:00:15+00:00 1.0 1199320434 61 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-26 13:00:21+00:00 1.0 1199320434 60 ℹ coin signal information ℹ date wednesday 26122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-26 11:01:19+00:00 1.0 1199320434 58 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-26 09:00:11+00:00 1.0 1199320434 45 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-24 19:00:22+00:00 1.0 1199320434 43 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-24 18:55:07+00:00 1.0 1199320434 42 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-24 18:50:13+00:00 1.0 1199320434 41 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-24 18:39:04+00:00 1.0 1199320434 40 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-24 18:30:15+00:00 1.0 1199320434 36 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 17:00:06+00:00 1.0 1199320434 35 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 15:00:52+00:00 1.0 1199320434 34 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange time 7 pm gmt read the instructions above and be ready 2018-12-24 13:00:10+00:00 1.0 1199320434 32 ℹ coin signal information ℹ date monday 24122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-24 10:04:07+00:00 1.0 1199320434 31 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24122018 monday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-24 09:33:27+00:00 1.0 1199320434 23 pump results 7 coin was brd started 000005299 reached 000005699 vol 16 btc 2018-12-22 17:39:59+00:00 1.0 1199320434 18 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2018-12-22 16:55:23+00:00 1.0 1199320434 17 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2018-12-22 16:50:44+00:00 1.0 1199320434 16 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-12-22 16:40:55+00:00 1.0 1199320434 15 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-12-22 16:30:54+00:00 1.0 1199320434 14 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 16:00:48+00:00 1.0 1199320434 12 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 15:00:02+00:00 1.0 1199320434 9 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 14:01:09+00:00 1.0 1199320434 8 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 12:02:43+00:00 1.0 1258431324 4929 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy for max profit on kucoincom 2020-10-31 16:55:09+00:00 1.0 1258431324 4928 ℹ️ 10 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:50:09+00:00 1.0 1258431324 4927 ℹ️ 20 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:40:10+00:00 1.0 1258431324 4926 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2020-10-31 16:30:08+00:00 1.0 1258431324 4925 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 16:00:11+00:00 1.0 1258431324 4924 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 15:00:11+00:00 1.0 1258431324 4923 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 13:00:08+00:00 1.0 1258431324 4922 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 11:00:51+00:00 1.0 1258431324 4921 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 09:00:06+00:00 1.0 1258431324 4920 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt indian time 1030 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2020-10-31 04:03:10+00:00 1.0 1258431324 4915 pump results coin was loom low 144 high 399 welldone guys more than 2 x times repump count ✨3rd ✨time on your massive request analysis you need to create lower sell orders guys rather than dumping on buy orders dumping on buy orders generate red colors which fails the pump and prevent outsiders joining our pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-05-19 17:17:55+00:00 1.0 1258431324 4908 the coin to pump is loom exchange yobitnet target +200300 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-05-19 17:00:06+00:00 1.0 1258431324 4907 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-05-19 16:55:06+00:00 1.0 1258431324 4906 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-05-19 16:50:06+00:00 1.0 1258431324 4905 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-05-19 16:40:06+00:00 1.0 1258431324 4904 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-05-19 16:30:07+00:00 1.0 1258431324 4903 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 16:00:22+00:00 1.0 1258431324 4902 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 15:00:14+00:00 1.0 1258431324 4901 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 13:00:07+00:00 1.0 1258431324 4900 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-05-19 11:00:12+00:00 1.0 1258431324 4899 ℹ coin signal information ℹ date tuesday 190520 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-05-19 09:00:11+00:00 1.0 1258431324 4898 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19052020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-05-19 06:07:48+00:00 1.0 1258431324 4897 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190520 tuesday time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-05-18 18:29:56+00:00 1.0 1258431324 4893 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-22 17:31:36+00:00 1.0 1258431324 4892 pump results coin was aoa low 16 high 53 welldone guys 3 x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-22 17:20:22+00:00 1.0 1258431324 4885 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-22 17:00:44+00:00 1.0 1258431324 4884 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-22 16:55:05+00:00 1.0 1258431324 4883 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-22 16:50:09+00:00 1.0 1258431324 4882 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-22 16:40:12+00:00 1.0 1258431324 4881 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-22 16:30:10+00:00 1.0 1258431324 4880 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 16:00:08+00:00 1.0 1258431324 4879 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 15:00:16+00:00 1.0 1258431324 4878 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 13:00:07+00:00 1.0 1258431324 4877 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-22 11:00:14+00:00 1.0 1258431324 4876 ℹ coin signal information ℹ date wednesday 220420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-22 09:00:10+00:00 1.0 1258431324 4875 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 22042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-22 05:53:20+00:00 1.0 1258431324 4873 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-19 18:21:43+00:00 1.0 1258431324 4872 pump results coin was wpr open 70 high 206 welldone guys 3 x times on your demandwe listen you guys repump count 3rd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-19 17:36:46+00:00 1.0 1258431324 4865 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-19 17:00:08+00:00 1.0 1258431324 4864 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-19 16:55:05+00:00 1.0 1258431324 4863 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-19 16:50:07+00:00 1.0 1258431324 4862 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-19 16:40:05+00:00 1.0 1258431324 4861 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-19 16:30:07+00:00 1.0 1258431324 4860 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 16:00:17+00:00 1.0 1258431324 4859 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 15:00:10+00:00 1.0 1258431324 4858 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 13:00:08+00:00 1.0 1258431324 4857 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-19 11:00:12+00:00 1.0 1258431324 4856 ℹ coin signal information ℹ date sunday 190420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-19 10:00:19+00:00 1.0 1258431324 4855 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19042020 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-19 08:38:34+00:00 1.0 1258431324 4854 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190420 sunday time 5 pm gmt 2020-04-18 18:14:52+00:00 1.0 1258431324 4852 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins which naturally rise by the time 2020-04-14 17:51:52+00:00 1.0 1258431324 4851 pump results coin was snt low 222 high 440 welldone guys almost 2x timed on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin we dont pump scam coins we pump strong coins which naturally rise by the time ✅ 2020-04-14 17:45:38+00:00 1.0 1258431324 4844 the coin to pump is snt exchange yobitnet target +100200 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-14 17:00:10+00:00 1.0 1258431324 4843 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-14 16:55:05+00:00 1.0 1258431324 4842 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-14 16:50:07+00:00 1.0 1258431324 4841 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-14 16:40:05+00:00 1.0 1258431324 4840 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-14 16:30:05+00:00 1.0 1258431324 4839 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 16:00:08+00:00 1.0 1258431324 4838 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 15:00:18+00:00 1.0 1258431324 4837 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 13:00:21+00:00 1.0 1258431324 4836 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-14 11:00:07+00:00 1.0 1258431324 4835 ℹ coin signal information ℹ date tuesday 140420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-14 10:00:15+00:00 1.0 1258431324 4834 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 14042020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-14 08:16:44+00:00 1.0 1258431324 4832 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt 2020-04-11 03:11:17+00:00 1.0 1258431324 4831 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-10 17:35:52+00:00 1.0 1258431324 4830 pump results coin was wpr open 70 high 210 welldone guys 3 x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-10 17:27:42+00:00 1.0 1258431324 4823 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-10 17:00:05+00:00 1.0 1258431324 4822 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-10 16:55:05+00:00 1.0 1258431324 4821 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-10 16:50:06+00:00 1.0 1258431324 4820 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-10 16:40:07+00:00 1.0 1258431324 4819 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-10 16:30:05+00:00 1.0 1258431324 4818 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 16:00:05+00:00 1.0 1258431324 4817 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 15:00:06+00:00 1.0 1258431324 4816 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 13:00:12+00:00 1.0 1258431324 4815 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-10 11:00:07+00:00 1.0 1258431324 4814 ℹ coin signal information ℹ date friday 100420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-10 10:00:12+00:00 1.0 1258431324 4813 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10042020 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-10 07:50:33+00:00 1.0 1258431324 4811 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 100420 day friday time 5 pm gmt 2020-04-09 09:23:20+00:00 1.0 1258431324 4810 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-08 04:05:58+00:00 1.0 1258431324 4809 pump results coin was mth low 85 high 185 welldone guys more than 2 x times on your demandwe listen you guys repump count 5th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-04 22:42:00+00:00 1.0 1258431324 4804 the coin to pump is mth exchange yobitnet target +100 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-04 17:01:06+00:00 1.0 1258431324 4801 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-04 16:55:06+00:00 1.0 1258431324 4800 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-04 16:50:06+00:00 1.0 1258431324 4799 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-04 16:40:05+00:00 1.0 1258431324 4798 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-04 16:30:05+00:00 1.0 1258431324 4797 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 16:00:09+00:00 1.0 1258431324 4796 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 15:00:20+00:00 1.0 1258431324 4795 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 13:00:05+00:00 1.0 1258431324 4794 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-04 11:00:18+00:00 1.0 1258431324 4793 ℹ coin signal information ℹ date saturday 040420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-04 10:00:20+00:00 1.0 1258431324 4792 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 04042020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-04 09:00:10+00:00 1.0 1258431324 4791 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 040420 day saturday time 5 pm gmt 2020-04-03 16:27:42+00:00 1.0 1258431324 4789 pump results coin was aoa open 22 high 70 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-01 17:16:24+00:00 1.0 1258431324 4784 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-01 17:00:20+00:00 1.0 1258431324 4781 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-01 16:55:06+00:00 1.0 1258431324 4780 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-01 16:50:08+00:00 1.0 1258431324 4779 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-01 16:40:09+00:00 1.0 1258431324 4778 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-01 16:30:09+00:00 1.0 1258431324 4777 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 16:00:11+00:00 1.0 1258431324 4776 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 15:00:10+00:00 1.0 1258431324 4775 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 13:00:21+00:00 1.0 1258431324 4774 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-01 11:00:16+00:00 1.0 1258431324 4773 ℹ coin signal information ℹ date wednesday 010420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-01 10:00:19+00:00 1.0 1258431324 4772 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-01 08:00:08+00:00 1.0 1258431324 4769 pump results coin was fun open 40 high 128 welldone guys more than 3x times repump count ✨8th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-03-28 17:28:38+00:00 1.0 1258431324 4764 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-03-28 17:00:32+00:00 1.0 1258431324 4761 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-03-28 16:55:08+00:00 1.0 1258431324 4760 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-03-28 16:50:09+00:00 1.0 1258431324 4759 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-03-28 16:40:14+00:00 1.0 1258431324 4758 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-03-28 16:30:11+00:00 1.0 1258431324 4757 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 16:00:21+00:00 1.0 1258431324 4756 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 15:00:14+00:00 1.0 1258431324 4755 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 13:00:06+00:00 1.0 1258431324 4754 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-03-28 11:00:09+00:00 1.0 1258431324 4752 ℹ coin signal information ℹ date saturday 280320 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-03-28 06:59:41+00:00 1.0 1258431324 4751 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for upcoming pump on 280320 ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28032020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-03-27 13:41:34+00:00 1.0 1258431324 4748 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2020-02-08 04:43:37+00:00 1.0 1258431324 4747 pump results coin was fun open 33 high 68 welldone guys almost 2x times repump count ✨7th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-01-15 17:23:58+00:00 1.0 1258431324 4742 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-01-15 17:00:26+00:00 1.0 1258431324 4739 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-01-15 16:55:07+00:00 1.0 1258431324 4738 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-01-15 16:50:07+00:00 1.0 1258431324 4737 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-01-15 16:40:09+00:00 1.0 1258431324 4736 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-01-15 16:30:11+00:00 1.0 1258431324 4735 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 16:00:07+00:00 1.0 1258431324 4734 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 15:00:07+00:00 1.0 1258431324 4733 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 13:00:05+00:00 1.0 1258431324 4732 ℹ coin signal information ℹ date wednesday 15012020 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-01-15 11:00:09+00:00 1.0 1258431324 4730 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150120 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-01-15 08:19:01+00:00 1.0 1258431324 4728 pump results coin was bnt open 3291 high 7600 profit approx x 2 repump count ✨8th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-29 17:26:43+00:00 1.0 1258431324 4723 the coin to pump is bnt exchange yobitnet target +100 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-29 17:00:22+00:00 1.0 1258431324 4720 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-29 16:55:05+00:00 1.0 1258431324 4719 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-29 16:50:07+00:00 1.0 1258431324 4718 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-29 16:40:06+00:00 1.0 1258431324 4717 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-29 16:30:10+00:00 1.0 1258431324 4716 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 16:00:16+00:00 1.0 1258431324 4715 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 15:00:09+00:00 1.0 1258431324 4714 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 13:00:06+00:00 1.0 1258431324 4713 ℹ coin signal information ℹ date sunday 291219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-29 11:00:12+00:00 1.0 1258431324 4711 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 291219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-29 09:53:42+00:00 1.0 1258431324 4709 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2019-12-18 17:27:53+00:00 1.0 1258431324 4708 pump results coin was ren open 486 high 1380 profit approx x 3 repump count ✨4th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-17 17:24:58+00:00 1.0 1258431324 4703 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-17 17:00:22+00:00 1.0 1258431324 4700 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-17 16:55:06+00:00 1.0 1258431324 4699 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-17 16:50:06+00:00 1.0 1258431324 4698 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-17 16:40:19+00:00 1.0 1258431324 4697 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-17 16:30:08+00:00 1.0 1258431324 4696 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 16:00:08+00:00 1.0 1258431324 4695 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 15:00:07+00:00 1.0 1258431324 4694 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 13:00:14+00:00 1.0 1258431324 4693 ℹ coin signal information ℹ date tuesday 171219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-17 11:00:06+00:00 1.0 1258431324 4691 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 171219 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-17 08:27:37+00:00 1.0 1258431324 4689 pump results coin was bnt open 3611 high 8995 profit approx x 2 repump count ✨7th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-13 17:24:07+00:00 1.0 1258431324 4684 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-13 17:00:19+00:00 1.0 1258431324 4681 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-13 16:55:06+00:00 1.0 1258431324 4680 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-13 16:50:07+00:00 1.0 1258431324 4679 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-13 16:40:31+00:00 1.0 1258431324 4678 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-13 16:30:06+00:00 1.0 1258431324 4677 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 16:00:15+00:00 1.0 1258431324 4676 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 15:00:09+00:00 1.0 1258431324 4675 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 13:00:19+00:00 1.0 1258431324 4674 ℹ coin signal information ℹ date friday 131219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-13 10:56:31+00:00 1.0 1258431324 4672 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 131219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-13 08:42:14+00:00 1.0 1258431324 4670 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2019-12-01 07:56:23+00:00 1.0 1258431324 4669 pump results coin was bnt open 3490 high 9500 profit approx x 3 repump count ✨6th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-15 17:28:18+00:00 1.0 1258431324 4665 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-15 17:02:08+00:00 1.0 1258431324 4661 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-15 16:55:09+00:00 1.0 1258431324 4660 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-15 16:50:12+00:00 1.0 1258431324 4659 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-15 16:40:10+00:00 1.0 1258431324 4658 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-15 16:30:10+00:00 1.0 1258431324 4657 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 16:00:12+00:00 1.0 1258431324 4656 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 15:00:08+00:00 1.0 1258431324 4655 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 13:00:32+00:00 1.0 1258431324 4654 ℹ coin signal information ℹ date friday 151119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-15 11:00:09+00:00 1.0 1258431324 4652 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 151119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-15 09:23:01+00:00 1.0 1258431324 4650 pump analysis coin was mda low 7800 high 65000 profit 700 guys more than 8x times repump count 4th time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-12 17:43:34+00:00 1.0 1258431324 4645 the coin to pump is mda exchange yobitnet target +100200 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-12 17:00:20+00:00 1.0 1258431324 4642 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-12 16:55:07+00:00 1.0 1258431324 4641 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-12 16:50:06+00:00 1.0 1258431324 4640 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-12 16:40:08+00:00 1.0 1258431324 4639 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-12 16:30:07+00:00 1.0 1258431324 4638 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 16:00:20+00:00 1.0 1258431324 4637 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 15:00:08+00:00 1.0 1258431324 4636 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 13:00:09+00:00 1.0 1258431324 4634 ℹ coin signal information ℹ date tuesday 121119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-12 11:00:07+00:00 1.0 1258431324 4632 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-12 08:01:49+00:00 1.0 1258431324 4630 pump analysis coin was mda low 8736 high 19000 guys more than 2x times as we choose this coin on your demand your early selling in beginning of pump halts the pumpvery less volume produced appearance of red colors created bottleneck in pumpinganyways repump count 3rd time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-24 17:22:04+00:00 1.0 1258431324 4624 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-24 16:55:06+00:00 1.0 1258431324 4623 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-24 16:50:05+00:00 1.0 1258431324 4622 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-24 16:40:06+00:00 1.0 1258431324 4621 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-24 16:30:06+00:00 1.0 1258431324 4620 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 16:00:09+00:00 1.0 1258431324 4619 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 15:00:08+00:00 1.0 1258431324 4618 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 13:00:11+00:00 1.0 1258431324 4616 ℹ coin signal information ℹ date thursday 241019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-24 11:00:07+00:00 1.0 1258431324 4614 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 241019 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-24 09:56:32+00:00 1.0 1258431324 4612 pump results coin was fun low 40 high 70 welldone guys almost 2x times repump count ✨6th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-22 17:35:34+00:00 1.0 1258431324 4605 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-22 16:55:07+00:00 1.0 1258431324 4604 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-22 16:50:06+00:00 1.0 1258431324 4603 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-22 16:40:07+00:00 1.0 1258431324 4602 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-22 16:30:07+00:00 1.0 1258431324 4601 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 16:00:06+00:00 1.0 1258431324 4600 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 15:00:10+00:00 1.0 1258431324 4599 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 13:00:08+00:00 1.0 1258431324 4597 ℹ coin signal information ℹ date tuesday 221019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-22 11:21:32+00:00 1.0 1258431324 4595 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 221019 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-22 10:09:09+00:00 1.0 1258431324 4593 pump results coin was blz low 281 high 580 welldone guys almost 2x times repump count ✨5th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-12 17:47:30+00:00 1.0 1258431324 4586 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-12 16:55:06+00:00 1.0 1258431324 4585 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-12 16:50:06+00:00 1.0 1258431324 4584 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-12 16:40:06+00:00 1.0 1258431324 4583 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-12 16:30:06+00:00 1.0 1258431324 4582 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 16:00:07+00:00 1.0 1258431324 4581 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 15:00:07+00:00 1.0 1258431324 4580 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 13:00:09+00:00 1.0 1258431324 4578 ℹ coin signal information ℹ date saturday 121019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-12 11:40:30+00:00 1.0 1258431324 4576 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-12 06:55:24+00:00 1.0 1258431324 4574 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-10-06 17:43:12+00:00 1.0 1258431324 4573 pump results coin was snt low 149 high 355 welldone guys more than 2x times repump count 2nd time within 02 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-05 17:16:05+00:00 1.0 1258431324 4568 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-05 17:00:20+00:00 1.0 1258431324 4565 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-05 16:55:06+00:00 1.0 1258431324 4564 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-05 16:50:06+00:00 1.0 1258431324 4563 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-05 16:40:06+00:00 1.0 1258431324 4562 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-05 16:30:08+00:00 1.0 1258431324 4561 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 16:00:11+00:00 1.0 1258431324 4560 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 15:00:07+00:00 1.0 1258431324 4559 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 13:00:12+00:00 1.0 1258431324 4557 ℹ coin signal information ℹ date saturday 051019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-05 09:55:22+00:00 1.0 1258431324 4555 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 051019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-05 06:46:23+00:00 1.0 1258431324 4553 pump results coin was snt low 149 high 517 welldone guys more than 3x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-02 17:26:16+00:00 1.0 1258431324 4548 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-02 17:00:23+00:00 1.0 1258431324 4545 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-02 16:55:06+00:00 1.0 1258431324 4544 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-02 16:50:06+00:00 1.0 1258431324 4543 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-02 16:40:07+00:00 1.0 1258431324 4542 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-02 16:30:09+00:00 1.0 1258431324 4541 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 16:00:10+00:00 1.0 1258431324 4540 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 15:00:08+00:00 1.0 1258431324 4539 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 13:00:13+00:00 1.0 1258431324 4538 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:56:08+00:00 1.0 1258431324 4536 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:54:35+00:00 1.0 1258431324 4534 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 021019 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-02 01:38:20+00:00 1.0 1258431324 4532 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-09-30 19:12:07+00:00 1.0 1258431324 4531 pump results coin was mda low 9501 high 22286 welldone guys more than 2x times repump count 2nd time within 15 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-30 17:50:05+00:00 1.0 1258431324 4526 the coin to pump is mda exchange yobitnet target +300 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-30 17:00:15+00:00 1.0 1258431324 4524 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-30 16:55:06+00:00 1.0 1258431324 4523 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-30 16:50:07+00:00 1.0 1258431324 4522 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-30 16:40:06+00:00 1.0 1258431324 4521 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-30 16:30:07+00:00 1.0 1258431324 4520 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 16:00:09+00:00 1.0 1258431324 4519 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 15:00:19+00:00 1.0 1258431324 4518 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 13:00:07+00:00 1.0 1258431324 4516 ℹ coin signal information ℹ date monday 300919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-09-30 11:00:08+00:00 1.0 1258431324 4514 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 300919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-30 06:28:46+00:00 1.0 1258431324 4512 pump results coin was fun open 46 high 125 welldone guys almost 3x times repump count ✨5th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-28 17:13:17+00:00 1.0 1258431324 4506 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-28 16:55:06+00:00 1.0 1258431324 4505 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-28 16:50:08+00:00 1.0 1258431324 4504 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-28 16:40:07+00:00 1.0 1258431324 4503 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-28 16:30:06+00:00 1.0 1258431324 4502 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 16:00:06+00:00 1.0 1258431324 4501 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 15:00:14+00:00 1.0 1258431324 4500 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 13:00:12+00:00 1.0 1258431324 4499 ℹ coin signal information ℹ date saturday 280919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-28 11:00:07+00:00 1.0 1258431324 4498 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 280919 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-28 07:53:17+00:00 1.0 1258431324 4495 pump results coin was gvt low 11201 high 23000 as we got lot of message to pump out previous coin gvt so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-26 17:15:32+00:00 1.0 1258431324 4487 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-26 16:55:07+00:00 1.0 1258431324 4486 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-26 16:50:08+00:00 1.0 1258431324 4485 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-26 16:40:08+00:00 1.0 1258431324 4484 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-26 16:30:09+00:00 1.0 1258431324 4483 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 16:00:08+00:00 1.0 1258431324 4482 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 15:00:14+00:00 1.0 1258431324 4481 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 13:00:08+00:00 1.0 1258431324 4480 ℹ coin signal information ℹ date thursday 260919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-26 11:00:10+00:00 1.0 1258431324 4479 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-26 07:59:46+00:00 1.0 1258431324 4477 pump results coin was bat low 1834 high 3776 as we got lot of message to pump out last coin bat so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-24 17:13:27+00:00 1.0 1258431324 4472 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-24 17:00:08+00:00 1.0 1258431324 4471 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-24 16:55:06+00:00 1.0 1258431324 4470 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-24 16:50:06+00:00 1.0 1258431324 4469 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-24 16:40:07+00:00 1.0 1258431324 4468 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-24 16:30:10+00:00 1.0 1258431324 4467 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 16:00:09+00:00 1.0 1258431324 4466 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 15:00:12+00:00 1.0 1258431324 4465 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 13:00:07+00:00 1.0 1258431324 4464 ℹ coin signal information ℹ date tuesday 240919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-24 10:14:17+00:00 1.0 1258431324 4463 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 240919 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-24 08:44:19+00:00 1.0 1258431324 4461 pump results coin was mana low 300 high 600 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-23 17:26:52+00:00 1.0 1258431324 4456 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-23 17:00:09+00:00 1.0 1258431324 4455 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-23 16:55:09+00:00 1.0 1258431324 4454 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-23 16:50:06+00:00 1.0 1258431324 4453 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-23 16:40:06+00:00 1.0 1258431324 4452 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-23 16:30:07+00:00 1.0 1258431324 4451 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 16:00:14+00:00 1.0 1258431324 4450 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 15:00:13+00:00 1.0 1258431324 4449 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 13:00:28+00:00 1.0 1258431324 4448 ℹ coin signal information ℹ date monday 230919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-23 11:16:17+00:00 1.0 1258431324 4447 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-23 08:41:45+00:00 1.0 1258431324 4444 pump results coin was qkc open 74 reached 200 welldone guys almost 3 x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-15 17:26:47+00:00 1.0 1258431324 4437 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-15 16:55:05+00:00 1.0 1258431324 4436 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-15 16:50:05+00:00 1.0 1258431324 4435 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-15 16:40:05+00:00 1.0 1258431324 4434 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-15 16:30:05+00:00 1.0 1258431324 4433 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 16:00:06+00:00 1.0 1258431324 4432 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 15:00:08+00:00 1.0 1258431324 4431 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 13:00:06+00:00 1.0 1258431324 4430 ℹ coin signal information ℹ date friday 150919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-15 11:00:06+00:00 1.0 1258431324 4429 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150919 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-15 08:17:39+00:00 1.0 1258431324 4427 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 18:29:16+00:00 1.0 1258431324 4422 the coin to pump is link exchange yobitnet target +300500 market linkbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-12 17:00:18+00:00 1.0 1258431324 4419 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-12 16:55:06+00:00 1.0 1258431324 4418 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-12 16:50:05+00:00 1.0 1258431324 4417 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-12 16:40:05+00:00 1.0 1258431324 4416 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-12 16:30:05+00:00 1.0 1258431324 4415 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 16:00:09+00:00 1.0 1258431324 4414 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 15:00:07+00:00 1.0 1258431324 4413 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 13:00:15+00:00 1.0 1258431324 4412 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-12 07:27:27+00:00 1.0 1258431324 4406 buy coin bnt binance ▶️ tradeindexsymbolbntbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold 2019-09-07 17:01:06+00:00 1.0 1258431324 4404 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-09-07 16:55:05+00:00 1.0 1258431324 4403 10 minutes left make sure you are logged in your binance account❗️ 2019-09-07 16:50:07+00:00 1.0 1258431324 4402 30 minutes left thats it team were ready prepared for this giant that is coming 2019-09-07 16:30:07+00:00 1.0 1258431324 4399 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big wave this time 2019-09-07 13:00:20+00:00 1.0 1258431324 4397 pump results coin was mth low 123 high 362 welldone guys 25 x times on your demandwe listen you guys repump count 4th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-06 18:10:36+00:00 1.0 1258431324 4392 the coin to pump is mth exchange yobitnet target +300500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-06 17:00:13+00:00 1.0 1258431324 4389 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-06 16:55:05+00:00 1.0 1258431324 4388 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-06 16:50:05+00:00 1.0 1258431324 4387 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-06 16:40:05+00:00 1.0 1258431324 4386 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-06 16:30:05+00:00 1.0 1258431324 4385 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 16:00:08+00:00 1.0 1258431324 4384 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 15:00:11+00:00 1.0 1258431324 4383 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 13:00:07+00:00 1.0 1258431324 4382 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-06 11:00:15+00:00 1.0 1258431324 4379 pump results coin was snm low 90 high 330 welldone guys 3x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-04 17:27:34+00:00 1.0 1258431324 4374 coin to pump is snm exchange yobitnet target +500 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-04 17:00:19+00:00 1.0 1258431324 4371 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-04 16:55:05+00:00 1.0 1258431324 4370 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-04 16:50:05+00:00 1.0 1258431324 4369 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-04 16:40:05+00:00 1.0 1258431324 4368 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-04 16:30:07+00:00 1.0 1258431324 4367 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 16:00:06+00:00 1.0 1258431324 4366 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 15:00:08+00:00 1.0 1258431324 4365 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 13:00:06+00:00 1.0 1258431324 4364 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-04 11:00:06+00:00 1.0 1258431324 4360 pump results coin was gvt open 14000 high 49999 welldone guys more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-24 18:37:06+00:00 1.0 1258431324 4355 the coin to pump is gvt exchange yobitnet target +200400 market gvtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-24 17:00:18+00:00 1.0 1258431324 4352 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-24 16:55:05+00:00 1.0 1258431324 4351 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-24 16:50:05+00:00 1.0 1258431324 4350 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-24 16:40:05+00:00 1.0 1258431324 4349 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-24 16:30:04+00:00 1.0 1258431324 4348 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 16:00:06+00:00 1.0 1258431324 4347 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 15:00:05+00:00 1.0 1258431324 4346 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 13:00:06+00:00 1.0 1258431324 4345 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-24 11:00:07+00:00 1.0 1258431324 4342 pump results coin was tfd open 28 high 120 welldone guys more than 4x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-17 17:12:58+00:00 1.0 1258431324 4337 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-17 17:00:18+00:00 1.0 1258431324 4334 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-17 16:55:05+00:00 1.0 1258431324 4333 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-17 16:50:05+00:00 1.0 1258431324 4332 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-17 16:40:05+00:00 1.0 1258431324 4331 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-17 16:30:05+00:00 1.0 1258431324 4330 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 16:00:08+00:00 1.0 1258431324 4329 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 15:00:05+00:00 1.0 1258431324 4328 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 13:00:05+00:00 1.0 1258431324 4325 pump results coin was dlt open 452 high 1180 welldone guys more than 2x times on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-16 17:13:25+00:00 1.0 1258431324 4320 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-16 17:00:20+00:00 1.0 1258431324 4317 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-16 16:55:06+00:00 1.0 1258431324 4316 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-16 16:50:07+00:00 1.0 1258431324 4315 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-16 16:40:05+00:00 1.0 1258431324 4314 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-16 16:30:06+00:00 1.0 1258431324 4313 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 16:00:11+00:00 1.0 1258431324 4312 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 15:00:08+00:00 1.0 1258431324 4311 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 13:00:23+00:00 1.0 1258431324 4310 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-16 11:02:24+00:00 1.0 1258431324 4307 pump results coin was dlt open 460 high 1186 welldone guys more than 2x times on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-15 17:09:04+00:00 1.0 1258431324 4302 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-15 17:00:23+00:00 1.0 1258431324 4299 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-15 16:55:06+00:00 1.0 1258431324 4298 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-15 16:50:09+00:00 1.0 1258431324 4297 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-15 16:40:05+00:00 1.0 1258431324 4296 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-15 16:30:06+00:00 1.0 1258431324 4295 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 16:00:11+00:00 1.0 1258431324 4294 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 15:00:14+00:00 1.0 1258431324 4293 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 13:00:12+00:00 1.0 1258431324 4292 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-15 11:03:21+00:00 1.0 1258431324 4289 pump results coin was wpr open 60 high 150 on your demandwe listen you guys ✨ more than 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-12 17:14:35+00:00 1.0 1258431324 4284 coin to pump is wpr exchange yobitnet target 100200 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-12 17:00:18+00:00 1.0 1258431324 4281 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-12 16:55:05+00:00 1.0 1258431324 4280 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-12 16:50:05+00:00 1.0 1258431324 4279 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-12 16:40:05+00:00 1.0 1258431324 4278 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-12 16:30:09+00:00 1.0 1258431324 4277 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 16:00:09+00:00 1.0 1258431324 4276 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 15:00:07+00:00 1.0 1258431324 4275 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 13:00:11+00:00 1.0 1258431324 4274 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-12 12:00:18+00:00 1.0 1258431324 4271 pump results coin was mana open 340 high 649 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-11 17:21:17+00:00 1.0 1258431324 4266 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-11 17:00:17+00:00 1.0 1258431324 4263 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-11 16:55:05+00:00 1.0 1258431324 4262 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-11 16:50:06+00:00 1.0 1258431324 4261 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-11 16:40:05+00:00 1.0 1258431324 4260 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-11 16:30:06+00:00 1.0 1258431324 4259 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 16:00:12+00:00 1.0 1258431324 4258 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 15:00:06+00:00 1.0 1258431324 4257 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 13:00:15+00:00 1.0 1258431324 4256 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-11 11:00:11+00:00 1.0 1258431324 4253 pump results on binance coin was storj open 1315 high 1440 profit 10 2019-08-11 04:14:23+00:00 1.0 1258431324 4251 05 minutes left the next message will be the coin name with targets❗️ 2019-08-10 19:55:15+00:00 1.0 1258431324 4250 05 minutes left the next message will be the coin name with targets❗️ 2019-08-10 19:55:12+00:00 1.0 1258431324 4249 15 minutes left make sure you are logged in your binance account❗️ 2019-08-10 19:45:15+00:00 1.0 1258431324 4248 30 minutes left thats it team were ready prepared for this giant that is coming 2019-08-10 19:29:58+00:00 1.0 1258431324 4245 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big second wave this time 2019-08-10 16:00:07+00:00 1.0 1258431324 4241 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:34:03+00:00 1.0 1258431324 4240 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:33:57+00:00 1.0 1258431324 4239 pump results coin was mana open 292 high 800 welldone guys nearly 3 x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-09 17:13:19+00:00 1.0 1258431324 4234 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-09 17:00:20+00:00 1.0 1258431324 4231 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-09 16:55:05+00:00 1.0 1258431324 4230 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-09 16:50:08+00:00 1.0 1258431324 4229 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-09 16:40:06+00:00 1.0 1258431324 4228 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-09 16:30:09+00:00 1.0 1258431324 4227 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 16:00:05+00:00 1.0 1258431324 4226 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 15:00:05+00:00 1.0 1258431324 4225 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 13:00:07+00:00 1.0 1258431324 4224 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-09 11:00:29+00:00 1.0 1258431324 4221 pump results coin was req open 138 high 194 second wave open 192 high 245 welldone guys on your demandwe listen you guys repump count 3rd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-04 17:17:58+00:00 1.0 1258431324 4216 the coin to pump is req exchange yobitnet target 100200 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-04 17:00:16+00:00 1.0 1258431324 4213 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-04 16:55:05+00:00 1.0 1258431324 4212 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-04 16:50:04+00:00 1.0 1258431324 4211 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-04 16:40:05+00:00 1.0 1258431324 4210 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-04 16:30:05+00:00 1.0 1258431324 4209 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 16:00:06+00:00 1.0 1258431324 4208 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 15:00:05+00:00 1.0 1258431324 4207 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 13:00:05+00:00 1.0 1258431324 4206 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-04 11:00:08+00:00 1.0 1258431324 4203 pump results coin was fun open 24 high 71 welldone guys almost 3x times repump count ✨4th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-03 17:11:42+00:00 1.0 1258431324 4198 coin to pump is fun exchange yobitnet target upto 100300 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-03 17:00:16+00:00 1.0 1258431324 4195 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-03 16:55:03+00:00 1.0 1258431324 4194 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-03 16:50:03+00:00 1.0 1258431324 4193 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-03 16:40:04+00:00 1.0 1258431324 4192 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-03 16:30:04+00:00 1.0 1258431324 4191 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 16:00:07+00:00 1.0 1258431324 4190 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 15:00:05+00:00 1.0 1258431324 4189 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-03 13:00:09+00:00 1.0 1258431324 4188 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-03 11:00:06+00:00 1.0 1258431324 4185 pump results coin was mana open 501 high 1501 welldone guys 3x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-29 17:19:59+00:00 1.0 1258431324 4180 coin to pump is mana exchange yobitnet target +200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-29 17:00:19+00:00 1.0 1258431324 4177 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-29 16:55:03+00:00 1.0 1258431324 4176 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-29 16:50:03+00:00 1.0 1258431324 4175 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-29 16:40:04+00:00 1.0 1258431324 4174 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-29 16:30:03+00:00 1.0 1258431324 4173 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 16:00:05+00:00 1.0 1258431324 4172 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 15:00:17+00:00 1.0 1258431324 4171 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-29 13:00:23+00:00 1.0 1258431324 4170 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-29 11:00:28+00:00 1.0 1258431324 4167 pump results coin was qkc open 201 reached 600 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-28 17:35:54+00:00 1.0 1258431324 4162 the coin to pump is qkc exchange yobitnet target +200 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-28 17:00:15+00:00 1.0 1258431324 4159 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-28 16:55:03+00:00 1.0 1258431324 4158 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-28 16:50:04+00:00 1.0 1258431324 4157 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-28 16:40:04+00:00 1.0 1258431324 4156 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-28 16:30:05+00:00 1.0 1258431324 4155 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 16:00:14+00:00 1.0 1258431324 4154 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 15:00:05+00:00 1.0 1258431324 4153 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-28 13:00:20+00:00 1.0 1258431324 4152 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-28 11:00:05+00:00 1.0 1258431324 4149 pump results coin was matic open 116 high 311 welldone guys more than 2x times we always listen you guyswe are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-27 17:19:54+00:00 1.0 1258431324 4144 coin to pump is matic exchange yobitnet target upto 300500 above market maticbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-27 17:00:16+00:00 1.0 1258431324 4141 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-27 16:55:04+00:00 1.0 1258431324 4140 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-27 16:50:04+00:00 1.0 1258431324 4139 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-27 16:40:03+00:00 1.0 1258431324 4138 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-27 16:30:04+00:00 1.0 1258431324 4137 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 16:00:05+00:00 1.0 1258431324 4136 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 15:00:08+00:00 1.0 1258431324 4135 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-27 13:00:26+00:00 1.0 1258431324 4134 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-27 11:00:51+00:00 1.0 1258431324 4131 pump results coin was fun low 29 high 85 welldone guys more than 2x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-21 17:28:32+00:00 1.0 1258431324 4126 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-21 17:00:15+00:00 1.0 1258431324 4123 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-21 16:55:04+00:00 1.0 1258431324 4122 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-21 16:50:04+00:00 1.0 1258431324 4121 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-21 16:40:03+00:00 1.0 1258431324 4120 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-21 16:30:04+00:00 1.0 1258431324 4119 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 16:00:05+00:00 1.0 1258431324 4118 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 15:00:07+00:00 1.0 1258431324 4117 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-21 13:00:08+00:00 1.0 1258431324 4116 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-21 11:00:05+00:00 1.0 1258431324 4113 pump results coin was blz open 409 high 1290 welldone guys more than 3x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-13 17:34:49+00:00 1.0 1258431324 4108 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-13 17:00:17+00:00 1.0 1258431324 4105 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-13 16:55:04+00:00 1.0 1258431324 4104 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-13 16:50:03+00:00 1.0 1258431324 4103 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-13 16:40:04+00:00 1.0 1258431324 4102 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-13 16:30:04+00:00 1.0 1258431324 4101 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 16:00:07+00:00 1.0 1258431324 4100 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 15:00:04+00:00 1.0 1258431324 4099 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-13 13:00:06+00:00 1.0 1258431324 4094 pump results coin was fun low 26 high 123 welldone guys almost 5x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-11 17:21:51+00:00 1.0 1258431324 4089 coin to pump is fun exchange yobitnet target upto 200400 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-11 17:00:16+00:00 1.0 1258431324 4086 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-11 16:55:04+00:00 1.0 1258431324 4085 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-11 16:50:04+00:00 1.0 1258431324 4084 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-11 16:40:03+00:00 1.0 1258431324 4083 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-11 16:30:11+00:00 1.0 1258431324 4082 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 16:00:11+00:00 1.0 1258431324 4081 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 15:00:07+00:00 1.0 1258431324 4080 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-11 13:00:06+00:00 1.0 1258431324 4077 pump results coin was ppt low 8204 high 20698 welldone guys more than 2x times repump count ✨7th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-07 17:16:49+00:00 1.0 1258431324 4073 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-07 17:00:16+00:00 1.0 1258431324 4070 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-07 16:55:03+00:00 1.0 1258431324 4069 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-07 16:50:03+00:00 1.0 1258431324 4068 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-07 16:40:03+00:00 1.0 1258431324 4067 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-07 16:30:04+00:00 1.0 1258431324 4066 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 16:00:05+00:00 1.0 1258431324 4065 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 15:00:07+00:00 1.0 1258431324 4064 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-07 13:00:08+00:00 1.0 1258431324 4063 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-07 11:00:18+00:00 1.0 1258431324 4060 pump results coin was fun open 35 high 140 welldone guys 4x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-06 17:13:34+00:00 1.0 1258431324 4055 coin to pump is fun exchange yobitnet target upto 400500 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-06 17:00:16+00:00 1.0 1258431324 4052 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-06 16:55:04+00:00 1.0 1258431324 4051 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-06 16:50:03+00:00 1.0 1258431324 4050 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-06 16:40:03+00:00 1.0 1258431324 4049 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-06 16:30:04+00:00 1.0 1258431324 4048 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 16:00:07+00:00 1.0 1258431324 4047 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 15:00:06+00:00 1.0 1258431324 4046 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-06 13:00:09+00:00 1.0 1258431324 4045 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-06 11:01:28+00:00 1.0 1258431324 4042 pump results coin was lend low 61 high 190 welldone guys 3x times repump count ✨4th ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-07-05 17:27:36+00:00 1.0 1258431324 4037 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-07-05 17:00:15+00:00 1.0 1258431324 4034 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-07-05 16:55:04+00:00 1.0 1258431324 4033 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-07-05 16:50:03+00:00 1.0 1258431324 4032 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-07-05 16:40:04+00:00 1.0 1258431324 4031 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-07-05 16:30:04+00:00 1.0 1258431324 4030 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 16:00:06+00:00 1.0 1258431324 4029 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 15:00:04+00:00 1.0 1258431324 4028 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-07-05 13:00:41+00:00 1.0 1258431324 4027 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-07-05 11:00:05+00:00 1.0 1258431324 4023 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-29 16:40:03+00:00 1.0 1258431324 4022 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-29 16:30:07+00:00 1.0 1258431324 4021 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-29 16:00:24+00:00 1.0 1258431324 4020 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-29 15:00:04+00:00 1.0 1258431324 4019 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-29 13:00:03+00:00 1.0 1258431324 4018 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-29 11:00:04+00:00 1.0 1258431324 4014 pump results coin was ppt low 6000 high 20296 welldone guys more than 3x times repump count ✨6th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-26 17:11:46+00:00 1.0 1258431324 4009 coin to pump is ppt exchange yobitnet target +100200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-26 17:00:15+00:00 1.0 1258431324 4006 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-26 16:55:03+00:00 1.0 1258431324 4005 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-26 16:50:06+00:00 1.0 1258431324 4004 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-26 16:40:04+00:00 1.0 1258431324 4003 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-26 16:30:04+00:00 1.0 1258431324 4002 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 16:00:06+00:00 1.0 1258431324 4001 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 15:00:05+00:00 1.0 1258431324 4000 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-26 13:03:01+00:00 1.0 1258431324 3999 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-26 11:00:05+00:00 1.0 1258431324 3996 pump results coin was bat low 2718 high 4449 good volume ✈️even in red market we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-25 17:57:28+00:00 1.0 1258431324 3991 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-25 17:01:10+00:00 1.0 1258431324 3988 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-25 16:55:03+00:00 1.0 1258431324 3987 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-25 16:50:04+00:00 1.0 1258431324 3986 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-25 16:40:04+00:00 1.0 1258431324 3985 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-25 16:30:04+00:00 1.0 1258431324 3984 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 16:00:07+00:00 1.0 1258431324 3983 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-25 15:00:07+00:00 1.0 1258431324 3982 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-25 11:00:04+00:00 1.0 1258431324 3978 pump results coin was blz open 635 high 1386 welldone guys more than 2x times repump count ✨3rd✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-22 17:19:53+00:00 1.0 1258431324 3973 coin to pump is blz exchange yobitnet target +200 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-22 17:00:15+00:00 1.0 1258431324 3970 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-22 16:55:04+00:00 1.0 1258431324 3969 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-22 16:50:04+00:00 1.0 1258431324 3968 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-22 16:40:03+00:00 1.0 1258431324 3967 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-22 16:30:03+00:00 1.0 1258431324 3966 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 16:00:07+00:00 1.0 1258431324 3965 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 15:00:05+00:00 1.0 1258431324 3964 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-22 11:00:06+00:00 1.0 1258431324 3963 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-22 10:53:05+00:00 1.0 1258431324 3960 curative pump on your massive request same coin we chosen from previous pump we followed yours choice pump results coin was req open 220 high 380 second wave open 214 high452 welldone guys 2x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump in on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-21 17:19:02+00:00 1.0 1258431324 3956 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-21 17:00:16+00:00 1.0 1258431324 3953 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-21 16:55:03+00:00 1.0 1258431324 3952 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-21 16:50:04+00:00 1.0 1258431324 3951 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-21 16:40:04+00:00 1.0 1258431324 3950 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-21 16:30:07+00:00 1.0 1258431324 3949 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 16:00:54+00:00 1.0 1258431324 3948 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 15:01:41+00:00 1.0 1258431324 3947 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-21 13:00:13+00:00 1.0 1258431324 3946 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-21 11:00:07+00:00 1.0 1258431324 3943 consecutivecurative pump on your massive request same coin we chosen from last six pumps we followed yours choice pump results coin was pax open 10066 high 20000 welldone guys 2x times on your demandwe listen you guys repump count 7th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-20 17:11:06+00:00 1.0 1258431324 3938 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-20 17:00:16+00:00 1.0 1258431324 3935 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-20 16:55:03+00:00 1.0 1258431324 3934 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-20 16:50:03+00:00 1.0 1258431324 3933 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-20 16:40:04+00:00 1.0 1258431324 3932 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-20 16:30:04+00:00 1.0 1258431324 3931 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 16:00:09+00:00 1.0 1258431324 3930 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 15:01:48+00:00 1.0 1258431324 3929 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-20 13:00:48+00:00 1.0 1258431324 3928 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-20 11:00:07+00:00 1.0 1258431324 3925 pump results coin was lend open 117 high 300 welldone guys almost 3x times repump count ✨3rd ✨time on your massive request ✨curativeconsecutive✨ pump on demandbetter height from last one we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-18 17:16:24+00:00 1.0 1258431324 3920 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-18 17:00:09+00:00 1.0 1258431324 3918 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-18 16:55:04+00:00 1.0 1258431324 3917 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-18 16:50:06+00:00 1.0 1258431324 3916 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-18 16:40:05+00:00 1.0 1258431324 3915 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-18 16:30:05+00:00 1.0 1258431324 3914 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 16:00:14+00:00 1.0 1258431324 3913 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 15:00:04+00:00 1.0 1258431324 3912 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-18 13:00:15+00:00 1.0 1258431324 3909 pump results coin was lend open 98 high 295 welldone guys almost 3x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-15 17:19:12+00:00 1.0 1258431324 3904 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-15 17:00:12+00:00 1.0 1258431324 3902 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-15 16:55:03+00:00 1.0 1258431324 3901 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-15 16:50:03+00:00 1.0 1258431324 3900 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-15 16:40:03+00:00 1.0 1258431324 3899 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-15 16:30:04+00:00 1.0 1258431324 3898 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 16:00:35+00:00 1.0 1258431324 3897 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 15:00:07+00:00 1.0 1258431324 3896 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-15 13:00:16+00:00 1.0 1258431324 3895 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-15 11:00:06+00:00 1.0 1258431324 3892 pump results coin was ppt low 11501 high 36990 welldone guys more than 3x times repump count ✨5th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-14 17:10:25+00:00 1.0 1258431324 3887 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-14 17:00:11+00:00 1.0 1258431324 3885 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-14 16:55:05+00:00 1.0 1258431324 3884 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-14 16:50:12+00:00 1.0 1258431324 3883 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-14 16:40:04+00:00 1.0 1258431324 3882 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-14 16:30:08+00:00 1.0 1258431324 3881 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 16:00:17+00:00 1.0 1258431324 3880 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 15:00:04+00:00 1.0 1258431324 3879 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-14 13:00:07+00:00 1.0 1258431324 3878 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-14 11:00:10+00:00 1.0 1258431324 3875 pump results coin was dlt open 1552 high 4700 welldone guys more than 3x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-12 17:13:56+00:00 1.0 1258431324 3870 the coin to pump is dlt exchange yobitnet target +300 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-12 17:00:09+00:00 1.0 1258431324 3868 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-12 16:55:03+00:00 1.0 1258431324 3867 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-12 16:50:07+00:00 1.0 1258431324 3866 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-12 16:40:05+00:00 1.0 1258431324 3865 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-12 16:30:05+00:00 1.0 1258431324 3864 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 16:00:14+00:00 1.0 1258431324 3863 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 15:00:21+00:00 1.0 1258431324 3862 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-12 13:00:07+00:00 1.0 1258431324 3861 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-12 11:57:55+00:00 1.0 1258431324 3858 consecutive pump on your massive request same coin we chosen from last five pumps we followed yours choice pump results coin was pax low 13000 high 30000 welldone guys more than 2x times on your demandwe listen you guys repump count 6th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-06-11 17:21:31+00:00 1.0 1258431324 3853 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-06-11 17:00:10+00:00 1.0 1258431324 3851 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-06-11 16:55:03+00:00 1.0 1258431324 3850 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-06-11 16:50:04+00:00 1.0 1258431324 3849 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-06-11 16:40:03+00:00 1.0 1258431324 3848 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-06-11 16:30:04+00:00 1.0 1258431324 3847 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 16:00:24+00:00 1.0 1258431324 3846 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 15:00:29+00:00 1.0 1258431324 3845 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-06-11 13:00:06+00:00 1.0 1258431324 3844 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-06-11 11:02:14+00:00 1.0 1258431324 3840 on massive demand and overwhelming response pump is rescheduled pump announcement 10 june 2019 day monday time 5 pm gmt giving chance to everyoneto make whooping profitour next pump will be the huge profit gainerkeep ready for yourself get your account ready at to know the coin one minute before pump n turn your 001 into 1 btc or 5x 6x multiply register yourself make money by knowing the coin name before pump dont miss itvip status for early registered usersget advantage from all for my members only no fees for 14 days just open account and send email to supportfinbitexcom with a promo code “vip signals” to qualify free btc will be credited in to your account also to start trading wwwfinbitexcom coin name will emailed to your registered email before pump make sure to buy coin before pumpas coin gonna be listing on binance at the end of june 2019 2019-06-07 15:40:39+00:00 1.0 1258431324 3839 pump announcement 7 june 2019 our next pump will be the huge profit gainerkeep ready for yourself get your account ready at to know the coin one minute before pump n turn your 001 into 1 btc or 5x 6x multiply register yourself make money by knowing the coin name before pump dont miss itvip status for early registered usersget advantage from all for my members only no fees for 14 days just open account and send email to supportfinbitexcom with a promo code “vip signals” to qualify wwwfinbitexcom coin name will emailed to your registered email before pump make sure to buy coin before pumpas coin gonna be listing on binance at the end of june 2019 2019-06-05 13:32:12+00:00 1.0 1258431324 3822 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-25 15:55:07+00:00 1.0 1258431324 3821 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-05-25 15:50:03+00:00 1.0 1258431324 3820 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-05-25 15:40:03+00:00 1.0 1258431324 3819 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-25 15:30:04+00:00 1.0 1258431324 3818 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 15:00:05+00:00 1.0 1258431324 3817 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 14:00:09+00:00 1.0 1258431324 3816 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 13:00:03+00:00 1.0 1258431324 3815 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 4 pm gmt be ready to buy low level today 2019-05-25 09:00:08+00:00 1.0 1258431324 3813 consecutive pump on your massive request same coin we chosen from last four pumps we followed yours choice pump results coin was pax low 11448 high 39995 welldone guys more than 3x times on your demandwe listen you guys repump count 5th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-23 17:17:21+00:00 1.0 1258431324 3811 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-23 17:01:36+00:00 1.0 1258431324 3808 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-23 16:56:54+00:00 1.0 1258431324 3807 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-23 16:50:05+00:00 1.0 1258431324 3806 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-23 16:40:06+00:00 1.0 1258431324 3805 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-23 16:38:29+00:00 1.0 1258431324 3804 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 16:03:28+00:00 1.0 1258431324 3803 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 15:00:15+00:00 1.0 1258431324 3802 ℹ️ 3 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-23 14:00:04+00:00 1.0 1258431324 3798 pump results coin was lend open 116 high 300 welldone guys almost 3x times as targeted 200 we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-19 17:29:00+00:00 1.0 1258431324 3795 coin to pump is lend exchange yobitnet target upto 200 market lendbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-19 17:00:10+00:00 1.0 1258431324 3793 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-19 16:55:03+00:00 1.0 1258431324 3792 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-19 16:50:04+00:00 1.0 1258431324 3791 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-19 16:40:03+00:00 1.0 1258431324 3790 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-19 16:30:06+00:00 1.0 1258431324 3789 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 16:00:05+00:00 1.0 1258431324 3788 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 15:02:11+00:00 1.0 1258431324 3787 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-19 13:00:55+00:00 1.0 1258431324 3782 consecutive pump on your massive request same coin we chosen from last two pumps we followed yours choice pump results coin was pax open 14795 high 45526 welldone guys more than 3x times better height repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-18 17:16:09+00:00 1.0 1258431324 3777 coin to pump is pax exchange yobitnet target upto 200 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-18 17:00:11+00:00 1.0 1258431324 3775 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-18 16:55:03+00:00 1.0 1258431324 3774 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-18 16:50:04+00:00 1.0 1258431324 3773 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-18 16:40:03+00:00 1.0 1258431324 3772 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-18 16:30:07+00:00 1.0 1258431324 3771 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 16:00:07+00:00 1.0 1258431324 3770 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 15:00:06+00:00 1.0 1258431324 3769 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-18 13:00:25+00:00 1.0 1258431324 3766 as we promised to pump hc shortly and recommended for hodl hc hit 2383 hc holder real profit fast we always repump our coin 2019-05-16 17:24:31+00:00 1.0 1258431324 3757 buy coin hc binance ▶️ tradeindexsymbolhcbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 above profit 2019-05-12 17:00:08+00:00 1.0 1258431324 3756 buy coin hc binance ▶️ tradeindexsymbolhcbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 above profit 2019-05-12 17:00:05+00:00 1.0 1258431324 3754 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-12 16:55:03+00:00 1.0 1258431324 3753 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-05-12 16:50:03+00:00 1.0 1258431324 3752 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-05-12 16:40:05+00:00 1.0 1258431324 3751 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-05-12 16:33:03+00:00 1.0 1258431324 3750 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-12 16:30:06+00:00 1.0 1258431324 3749 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 16:00:07+00:00 1.0 1258431324 3748 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 15:00:09+00:00 1.0 1258431324 3747 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 14:00:05+00:00 1.0 1258431324 3746 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 09:00:17+00:00 1.0 1258431324 3744 pump results coin was pax open 17001 high 90000 welldone guys more than 5x times better height from last pump repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-10 17:14:43+00:00 1.0 1258431324 3739 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-10 17:00:08+00:00 1.0 1258431324 3737 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-10 16:55:03+00:00 1.0 1258431324 3736 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-10 16:50:03+00:00 1.0 1258431324 3735 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-10 16:40:09+00:00 1.0 1258431324 3734 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-10 16:30:10+00:00 1.0 1258431324 3733 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 16:00:11+00:00 1.0 1258431324 3732 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 15:00:08+00:00 1.0 1258431324 3731 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-10 13:00:16+00:00 1.0 1258431324 3730 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-10 11:01:20+00:00 1.0 1258431324 3727 pump results coin was pax open 20000 high 90000 welldone guys more than 4x times better height from last pump repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-08 17:12:50+00:00 1.0 1258431324 3722 coin to pump is pax exchange yobitnet target +300 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-08 17:00:09+00:00 1.0 1258431324 3720 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-08 16:55:03+00:00 1.0 1258431324 3719 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-08 16:50:03+00:00 1.0 1258431324 3718 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-08 16:40:11+00:00 1.0 1258431324 3717 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-08 16:30:06+00:00 1.0 1258431324 3716 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 16:00:10+00:00 1.0 1258431324 3715 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 15:01:20+00:00 1.0 1258431324 3714 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-08 13:00:18+00:00 1.0 1258431324 3713 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-08 11:00:11+00:00 1.0 1258431324 3709 pump results coin was enj low 2400 high 4799 welldone guys 2x times repump count ✨2nd ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-05 17:14:40+00:00 1.0 1258431324 3704 coin to pump is enj exchange yobitnet target +200 market enjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-05 17:00:12+00:00 1.0 1258431324 3702 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-05 16:55:03+00:00 1.0 1258431324 3701 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-05 16:50:03+00:00 1.0 1258431324 3700 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-05 16:40:03+00:00 1.0 1258431324 3699 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-05 16:30:08+00:00 1.0 1258431324 3698 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-05 16:00:07+00:00 1.0 1258431324 3697 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-05 13:00:03+00:00 1.0 1258431324 3696 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-05 11:00:10+00:00 1.0 1258431324 3693 pump results coin was ppt open 19182 high 69998 welldone guys more than 3x times repump count ✨4th ✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-04 17:25:29+00:00 1.0 1258431324 3688 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-04 17:00:13+00:00 1.0 1258431324 3686 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-04 16:55:03+00:00 1.0 1258431324 3685 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-04 16:50:03+00:00 1.0 1258431324 3684 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-04 16:40:03+00:00 1.0 1258431324 3683 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-04 16:30:04+00:00 1.0 1258431324 3682 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 16:00:06+00:00 1.0 1258431324 3681 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 15:00:26+00:00 1.0 1258431324 3680 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-04 13:00:09+00:00 1.0 1258431324 3679 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-04 11:00:08+00:00 1.0 1258431324 3676 pump results coin was ppt open 21500 high 58995 welldone guys more than 2x times repump count ✨3rd ✨time on your massive request curative pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-05-01 17:18:34+00:00 1.0 1258431324 3671 coin to pump is ppt exchange yobitnet target +300 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-05-01 17:00:11+00:00 1.0 1258431324 3669 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-05-01 16:55:03+00:00 1.0 1258431324 3668 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-05-01 16:50:03+00:00 1.0 1258431324 3667 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-05-01 16:40:03+00:00 1.0 1258431324 3666 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-05-01 16:30:22+00:00 1.0 1258431324 3665 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-01 16:00:05+00:00 1.0 1258431324 3664 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-05-01 15:00:05+00:00 1.0 1258431324 3663 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-05-01 13:00:06+00:00 1.0 1258431324 3660 pump results coin was blz open 901 high 5707 welldone guys more than 6x times repump count ✨2nd✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-30 17:23:04+00:00 1.0 1258431324 3655 coin to pump is blz exchange yobitnet target +300 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-30 17:00:09+00:00 1.0 1258431324 3653 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-30 16:55:04+00:00 1.0 1258431324 3652 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-30 16:50:05+00:00 1.0 1258431324 3651 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-30 16:40:03+00:00 1.0 1258431324 3650 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-30 16:30:05+00:00 1.0 1258431324 3649 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-30 16:00:16+00:00 1.0 1258431324 3648 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-30 15:00:09+00:00 1.0 1258431324 3647 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-30 13:06:27+00:00 1.0 1258431324 3642 pump results coin was ctxc open 2940 high 9900 welldone guys as promised by us 300 more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-28 17:32:27+00:00 1.0 1258431324 3637 coin to pump is ctxc exchange yobitnet target +300 market ctxcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-28 17:00:10+00:00 1.0 1258431324 3635 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-28 16:55:04+00:00 1.0 1258431324 3634 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-28 16:50:04+00:00 1.0 1258431324 3633 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-28 16:40:07+00:00 1.0 1258431324 3632 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-28 16:30:21+00:00 1.0 1258431324 3631 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 16:00:07+00:00 1.0 1258431324 3630 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-28 15:00:16+00:00 1.0 1258431324 3629 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-28 13:00:08+00:00 1.0 1258431324 3626 pump results coin was ukg open 483 high 1500 welldone guys 3x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-27 17:18:13+00:00 1.0 1258431324 3621 coin to pump is ukg exchange yobitnet target +300 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-27 17:00:12+00:00 1.0 1258431324 3619 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-27 16:55:05+00:00 1.0 1258431324 3618 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-27 16:50:06+00:00 1.0 1258431324 3617 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-27 16:40:05+00:00 1.0 1258431324 3616 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-27 16:30:05+00:00 1.0 1258431324 3615 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 16:00:07+00:00 1.0 1258431324 3614 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-27 15:00:10+00:00 1.0 1258431324 3613 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-27 13:00:06+00:00 1.0 1258431324 3606 pump results coin was pax open 16145 high 67999 welldone guys more than 4x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-24 17:19:08+00:00 1.0 1258431324 3601 coin to pump is pax exchange yobitnet target +600 market paxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-24 17:00:11+00:00 1.0 1258431324 3599 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-24 16:55:04+00:00 1.0 1258431324 3598 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-24 16:50:04+00:00 1.0 1258431324 3597 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-24 16:40:04+00:00 1.0 1258431324 3596 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-24 16:30:06+00:00 1.0 1258431324 3595 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 16:00:05+00:00 1.0 1258431324 3594 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-24 15:00:06+00:00 1.0 1258431324 3593 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-24 13:00:18+00:00 1.0 1258431324 3590 pump results coin was enj open 3246 high 1000 welldone guys more than 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-23 17:34:44+00:00 1.0 1258431324 3585 coin to pump is enj exchange yobitnet target +200 market enjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-23 17:00:13+00:00 1.0 1258431324 3583 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-23 16:55:04+00:00 1.0 1258431324 3582 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-23 16:50:04+00:00 1.0 1258431324 3581 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-23 16:40:04+00:00 1.0 1258431324 3580 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-23 16:30:07+00:00 1.0 1258431324 3579 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 16:00:06+00:00 1.0 1258431324 3578 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-23 15:00:09+00:00 1.0 1258431324 3577 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-23 13:10:26+00:00 1.0 1258431324 3574 pump results coin was soul high 1750 low 1100 current rate 14501500+ those who bought at 1100 rate got 40 profit approx we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-22 17:46:43+00:00 1.0 1258431324 3562 ℹ️ 5 minutes ℹ️ the next post will be the coin to buyhold for max profit on kucoincom 2019-04-22 15:55:04+00:00 1.0 1258431324 3561 ℹ️ 10 minutes ℹ️ get ready with your kucoin account coin is low level buy with us 2019-04-22 15:50:04+00:00 1.0 1258431324 3560 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on kucoincom 2019-04-22 15:40:04+00:00 1.0 1258431324 3559 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2019-04-22 15:30:09+00:00 1.0 1258431324 3558 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 15:00:06+00:00 1.0 1258431324 3557 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 13:00:05+00:00 1.0 1258431324 3556 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 4 pm gmt read the instructions above and be ready 2019-04-22 10:00:05+00:00 1.0 1258431324 3555 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt indian time 930 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2019-04-22 08:12:43+00:00 1.0 1258431324 3553 pump results coin was storm open 68 high 194 welldone guys almost 3x times better height for long time we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-20 17:52:55+00:00 1.0 1258431324 3548 coin to pump is storm exchange yobitnet target +200 market stormbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-20 17:00:11+00:00 1.0 1258431324 3546 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-20 16:55:10+00:00 1.0 1258431324 3545 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-20 16:50:04+00:00 1.0 1258431324 3544 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-20 16:40:04+00:00 1.0 1258431324 3543 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-20 16:30:07+00:00 1.0 1258431324 3542 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 16:00:06+00:00 1.0 1258431324 3541 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-20 15:00:05+00:00 1.0 1258431324 3540 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-20 13:00:05+00:00 1.0 1258431324 3536 pump results coin was ppt open 28793 high 109918 welldone guys almost 4x times repump count ✨2nd ✨time on your massive request better height from first pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-19 17:22:30+00:00 1.0 1258431324 3530 coin to pump is ppt exchange yobitnet target +200 market pptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-19 17:00:04+00:00 1.0 1258431324 3529 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-19 16:55:04+00:00 1.0 1258431324 3528 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-19 16:50:04+00:00 1.0 1258431324 3527 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-19 16:40:04+00:00 1.0 1258431324 3526 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-19 16:30:05+00:00 1.0 1258431324 3525 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 16:00:05+00:00 1.0 1258431324 3524 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-19 15:00:06+00:00 1.0 1258431324 3523 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-19 13:00:08+00:00 1.0 1258431324 3517 scheduled pump is cancelled today due to worst market conditions high sell wall in the selected coin next pump the coin will be one of the previous oneswhich you messaged us and sent a lot of request so we will fulfill ityour demandas per trends thanks for being with us 2019-04-16 16:57:01+00:00 1.0 1258431324 3516 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-16 15:59:37+00:00 1.0 1258431324 3511 pump results coin was tnt low 350 high 640 welldone guys almost 2x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-15 17:20:29+00:00 1.0 1258431324 3506 the coin to pump is tnt exchange yobitnet target 100200 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-15 17:00:17+00:00 1.0 1258431324 3504 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-15 16:55:06+00:00 1.0 1258431324 3503 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-15 16:51:16+00:00 1.0 1258431324 3502 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-15 16:40:05+00:00 1.0 1258431324 3501 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-15 16:30:16+00:00 1.0 1258431324 3500 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 16:00:14+00:00 1.0 1258431324 3499 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-15 15:00:09+00:00 1.0 1258431324 3498 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-15 13:00:05+00:00 1.0 1258431324 3495 pump results coin was dai open 19000 high 42243 profit more than x 2 repump count ✨2nd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-04-14 17:31:23+00:00 1.0 1258431324 3491 coin to pump is dai exchange yobitnet target 400600 market daibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-14 17:00:11+00:00 1.0 1258431324 3489 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-04-14 16:55:04+00:00 1.0 1258431324 3488 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-04-14 16:50:04+00:00 1.0 1258431324 3487 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-14 16:40:03+00:00 1.0 1258431324 3486 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-04-14 16:30:05+00:00 1.0 1258431324 3485 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 16:00:05+00:00 1.0 1258431324 3484 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-04-14 15:00:06+00:00 1.0 1258431324 3483 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-14 13:00:15+00:00 1.0 1258431324 2602 pump results coin was bnt low 00001400 reached 000017849 heavy volume created 11 btc heavy buying selling occured in our coinwhich is unexpected n unpredictible preventing it 2018-12-29 18:36:55+00:00 1.0 1258431324 2597 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-29 17:01:15+00:00 1.0 1258431324 2594 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-29 16:55:11+00:00 1.0 1258431324 2593 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-29 16:50:07+00:00 1.0 1258431324 2592 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-29 16:40:32+00:00 1.0 1258431324 2591 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-29 16:30:20+00:00 1.0 1258431324 2590 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 16:00:15+00:00 1.0 1258431324 2589 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 15:00:07+00:00 1.0 1258431324 2588 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-29 13:00:05+00:00 1.0 1258431324 2587 ℹ coin signal information ℹ date saturday 29122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-29 10:29:30+00:00 1.0 1258431324 2586 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29122018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-29 09:04:19+00:00 1.0 1258431324 2582 pump results x2 coin was qkc open 000000920 reached 000001886 note we will always pump our coins againso always trade with us for max profit 2018-12-28 17:15:48+00:00 1.0 1258431324 2577 the coin to pump is qkc exchange yobitnet target +500 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-28 16:00:36+00:00 1.0 1258431324 2575 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-28 15:55:03+00:00 1.0 1258431324 2574 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-28 15:50:04+00:00 1.0 1258431324 2573 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-28 15:40:22+00:00 1.0 1258431324 2572 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-28 15:30:04+00:00 1.0 1258431324 2571 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 15:00:16+00:00 1.0 1258431324 2570 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 14:30:09+00:00 1.0 1258431324 2569 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 13:00:03+00:00 1.0 1258431324 2568 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 10:00:12+00:00 1.0 1258431324 2567 ℹ coin signal information ℹ date friday 28122018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all ofj us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-28 09:15:35+00:00 1.0 1258431324 2530 pump results coin was dlt 24 hr low 000000881 reached 000001520 note we will always pump our coins againso always trade with us for max profit 2018-12-26 18:03:33+00:00 1.0 1258431324 2525 the coin to pump is dlt exchange yobitnet target +500 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-26 17:01:11+00:00 1.0 1258431324 2523 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-26 16:55:06+00:00 1.0 1258431324 2522 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-26 16:50:07+00:00 1.0 1258431324 2521 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-26 16:40:34+00:00 1.0 1258431324 2520 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-26 16:30:21+00:00 1.0 1258431324 2519 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 16:00:12+00:00 1.0 1258431324 2518 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 15:00:05+00:00 1.0 1258431324 2517 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-26 13:00:12+00:00 1.0 1258431324 2516 ℹ coin signal information ℹ date wednesday 26122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-26 11:00:26+00:00 1.0 1258431324 2515 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-26 09:00:43+00:00 1.0 1258431324 2505 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-24 19:00:40+00:00 1.0 1258431324 2503 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-24 18:55:17+00:00 1.0 1258431324 2502 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-24 18:50:20+00:00 1.0 1258431324 2501 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-24 18:40:04+00:00 1.0 1258431324 2500 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-24 18:30:04+00:00 1.0 1258431324 2499 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 18:00:07+00:00 1.0 1258431324 2498 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 17:00:07+00:00 1.0 1258431324 2497 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 15:00:20+00:00 1.0 1258431324 2496 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 13:00:07+00:00 1.0 1258431324 2495 ℹ coin signal information ℹ date monday 24122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-24 10:04:07+00:00 1.0 1258431324 2494 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24122018 monday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-24 09:32:44+00:00 1.0 1258431324 2488 pump results coin was brd started 000005299 reached 000005695 vol 16 btc buying still going on 2018-12-22 17:58:41+00:00 1.0 1258431324 2482 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2018-12-22 16:55:03+00:00 1.0 1258431324 2481 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2018-12-22 16:50:11+00:00 1.0 1258431324 2480 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-12-22 16:40:28+00:00 1.0 1258431324 2479 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-12-22 16:30:20+00:00 1.0 1258431324 2478 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 16:00:03+00:00 1.0 1258431324 2476 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 15:00:03+00:00 1.0 1258431324 2474 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 11:00:09+00:00 1.0 1258431324 2463 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-20 17:00:37+00:00 1.0 1258431324 2461 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-20 16:55:05+00:00 1.0 1258431324 2460 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-20 16:50:32+00:00 1.0 1258431324 2459 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-20 16:40:27+00:00 1.0 1258431324 2458 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-20 16:30:22+00:00 1.0 1258431324 2457 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 16:00:41+00:00 1.0 1258431324 2456 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 15:00:46+00:00 1.0 1258431324 2455 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-20 11:00:36+00:00 1.0 1258431324 2454 ℹ coin signal information ℹ date thursday 20122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-20 07:00:07+00:00 1.0 1258431324 2453 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for ato least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces byi setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 20122018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-20 05:42:08+00:00 1.0 1258431324 2447 pump results almost x 2 coin was loom started 000001125 reached 000002153 note we will always pump our coins againso always trade with us for max profit 2018-12-18 18:36:48+00:00 1.0 1258431324 2443 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-18 18:00:41+00:00 1.0 1258431324 2441 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-18 17:55:07+00:00 1.0 1258431324 2440 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-18 17:50:05+00:00 1.0 1258431324 2439 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-18 17:40:08+00:00 1.0 1258431324 2438 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-18 17:30:05+00:00 1.0 1258431324 2437 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 17:00:05+00:00 1.0 1258431324 2436 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 15:00:10+00:00 1.0 1258431324 2435 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 14:00:42+00:00 1.0 1258431324 2434 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 12:53:04+00:00 1.0 1258431324 2433 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 11:00:09+00:00 1.0 1258431324 2432 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18122018 tuesday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-18 10:33:46+00:00 1.0 1258431324 2422 pump results coin was req started 000000600 reached 000000920 note we will always pump our coins againso always trade with us for max profit 2018-12-16 17:57:32+00:00 1.0 1258431324 2418 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-16 17:00:33+00:00 1.0 1258431324 2416 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-16 16:55:04+00:00 1.0 1258431324 2415 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-16 16:50:10+00:00 1.0 1258431324 2414 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-16 16:40:08+00:00 1.0 1258431324 2413 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-16 16:30:17+00:00 1.0 1258431324 2412 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 16:00:22+00:00 1.0 1258431324 2411 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 15:00:14+00:00 1.0 1258431324 2410 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-16 13:00:05+00:00 1.0 1258431324 2409 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnetk time 5 pm gmt read the instructions above and be ready 2018-12-16 10:54:08+00:00 1.0 1258431324 2408 ℹ coin signal information ℹ date sunday16122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-16 10:03:34+00:00 1.0 1258431324 2306 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:53+00:00 1.0 1258431324 2304 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-11-09 16:55:17+00:00 1.0 1258431324 2303 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:12+00:00 1.0 1258431324 2302 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:16+00:00 1.0 1258431324 2301 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:20+00:00 1.0 1258431324 2300 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:25+00:00 1.0 1258431324 2299 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:30:21+00:00 1.0 1258431324 2298 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:57+00:00 1.0 1258431324 2297 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 13:01:54+00:00 1.0 1258431324 2296 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 10:00:37+00:00 1.0 1258431324 2295 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 08:00:53+00:00 1.0 1258431324 2294 ℹ coin signal information ℹ date friday 09112018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-11-09 07:45:23+00:00 1.0 1258431324 2293 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09112018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-11-09 06:21:12+00:00 1.0 1258431324 2292 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 091118 day friday time 5 pm gmt 2018-11-09 06:14:50+00:00 1.0 1258431324 2287 go hit 1077as we signalled before pump n signal to buy cheap as possible if u followed profit is urs leaked paid signal 2018-11-05 18:11:17+00:00 1.0 1258431324 2267 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-27 17:01:41+00:00 1.0 1258431324 2266 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-27 16:55:22+00:00 1.0 1258431324 2265 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-27 16:50:26+00:00 1.0 1258431324 2264 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-27 16:40:22+00:00 1.0 1258431324 2263 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-27 16:30:35+00:00 1.0 1258431324 2262 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 16:00:31+00:00 1.0 1258431324 2261 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:30:22+00:00 1.0 1258431324 2260 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:00:35+00:00 1.0 1258431324 2259 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 13:00:30+00:00 1.0 1258431324 2258 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 10:00:39+00:00 1.0 1258431324 2257 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 08:04:26+00:00 1.0 1258431324 2256 ℹ coin signal information ℹ date saturday 27102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-27 04:04:28+00:00 1.0 1258431324 2255 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-27 03:31:00+00:00 1.0 1258431324 2254 last 24 hours for big pump time 1900 gmt ⏰ exchange cryptopia london 2000 new york 1500 paris 2100 moscow 2200 amsterdam 2100 india 100 china 300 tokyo 200 remember about 3 golden rules no prepump hold minimum 15 minutes attract outsiders use trollbox target minimum 150 profit stay tuned and wait for the flight 2018-10-26 19:12:46+00:00 1.0 1258431324 2252 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 271018 day saturday time 5 pm gmt 2018-10-26 16:55:00+00:00 1.0 1258431324 2249 big pump announcement 27th oct saturday 1900 gmt cryptopia 3 golden rules no prepump hold minimum 15 min attract outsiders target min 150 profit cryptobullspumpvip 2018-10-24 20:04:57+00:00 1.0 1258431324 2241 buy buy buy hold for 15 minutes use troll box for attracting outsiders ⏳ dont sell before 15 minutes 2018-10-20 18:01:42+00:00 1.0 1258431324 2240 pump starts the coin to pump is flax flaxscript flaxbtc exchange cryptopia target min +100 market url trollbox 2018-10-20 18:00:38+00:00 1.0 1258431324 2239 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-10-20 17:57:43+00:00 1.0 1258431324 2235 1 hour left to pump it will be on cryptopia exchange ⚠️ remember about 3 golden rules ⚠️ no prepump hold minimum 15 minutes attract outsiders todays pump is going to be great so get ready ✊ target is min +100 2018-10-20 17:01:55+00:00 1.0 1258431324 2234 just 3 hours left to cryptopia pump stay tuned and wait for the flight it will be huge crypto bulls pump cryptobullspumpvip 2018-10-20 15:04:38+00:00 1.0 1258431324 2233 less than 5 hours left to cryptopia pump stay tuned and wait for the flight it will be huge crypto bulls pump cryptobullspumpvip 2018-10-20 13:15:54+00:00 1.0 1258431324 2232 7 hours left to cryptopia pump stay tuned and wait for the flight it will be huge crypto bulls pump cryptobullspumpvip 2018-10-20 11:09:59+00:00 1.0 1258431324 2231 less than 24 hours for big pump join our vip group free cryptobullspumpvip time 1800 gmt ⏰ exchange cryptopia london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 remember about 3 golden rules no prepump hold minimum 15 minutes attract outsiders target minimum 100 profit stay tuned and wait for the flight 2018-10-19 20:42:31+00:00 1.0 1258431324 2230 pump analysis coin ufr coin rose to 50 approximately from low level our team members banned by yobit chat admin could not rose furtherdue to this ban n account blocked by yobit chat admin as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate i see you all at the next signal 2018-10-19 17:58:30+00:00 1.0 1258431324 2223 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:57+00:00 1.0 1258431324 2222 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:13+00:00 1.0 1258431324 2221 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-19 16:50:15+00:00 1.0 1258431324 2220 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-19 16:40:11+00:00 1.0 1258431324 2219 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-19 16:30:11+00:00 1.0 1258431324 2218 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 16:00:44+00:00 1.0 1258431324 2217 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:30:13+00:00 1.0 1258431324 2216 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:00:29+00:00 1.0 1258431324 2215 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 13:00:35+00:00 1.0 1258431324 2214 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 10:00:28+00:00 1.0 1258431324 2213 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:33+00:00 1.0 1258431324 2212 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-19 05:31:48+00:00 1.0 1258431324 2211 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 191018 day friday time 5 pm gmt 2018-10-19 05:09:47+00:00 1.0 1258431324 2210 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:42+00:00 1.0 1258431324 2205 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:24+00:00 1.0 1258431324 2204 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-18 16:55:14+00:00 1.0 1258431324 2203 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-18 16:50:12+00:00 1.0 1258431324 2202 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-18 16:40:13+00:00 1.0 1258431324 2201 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-18 16:32:03+00:00 1.0 1258431324 2200 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 16:02:17+00:00 1.0 1258431324 2199 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:30:11+00:00 1.0 1258431324 2198 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:00:25+00:00 1.0 1258431324 2197 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 13:01:37+00:00 1.0 1258431324 2196 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 10:01:10+00:00 1.0 1258431324 2195 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 08:00:34+00:00 1.0 1258431324 2194 ℹ coin signal information ℹ date thursday18102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-18 03:34:49+00:00 1.0 1258431324 2193 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18102018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-18 01:34:38+00:00 1.0 1258431324 2192 big pump announcement 20th oct saturday 1800 gmt cryptopia exchange no prepump hold minimum 15 minutes attract outsiders target minimum 100 profit cryptobullspumpvip 2018-10-17 18:22:44+00:00 1.0 1258431324 2191 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:14+00:00 1.0 1258431324 2179 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:35+00:00 1.0 1258431324 2173 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:17+00:00 1.0 1258431324 2171 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:12+00:00 1.0 1258431324 2170 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-13 16:50:12+00:00 1.0 1258431324 2169 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:18+00:00 1.0 1258431324 2168 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-13 16:30:12+00:00 1.0 1258431324 2167 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:31+00:00 1.0 1258431324 2166 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:30:16+00:00 1.0 1258431324 2165 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:24+00:00 1.0 1258431324 2164 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 13:00:22+00:00 1.0 1258431324 2162 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 10:01:44+00:00 1.0 1258431324 2161 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 09:02:16+00:00 1.0 1258431324 2160 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 06:11:30+00:00 1.0 1258431324 2159 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:51+00:00 1.0 1258431324 2135 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:56+00:00 1.0 1258431324 2123 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:35+00:00 1.0 1258431324 2121 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:31+00:00 1.0 1258431324 2120 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:26+00:00 1.0 1258431324 2119 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:19+00:00 1.0 1258431324 2118 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:26+00:00 1.0 1258431324 2117 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:33+00:00 1.0 1258431324 2116 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:24+00:00 1.0 1258431324 2115 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:16+00:00 1.0 1258431324 2113 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:12+00:00 1.0 1258431324 2112 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:31+00:00 1.0 1258431324 2111 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:13+00:00 1.0 1258431324 2110 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:55:04+00:00 1.0 1258431324 2109 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:33+00:00 1.0 1258431324 2108 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:55+00:00 1.0 1258431324 2098 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:49+00:00 1.0 1258431324 2093 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:15+00:00 1.0 1258431324 2092 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:22+00:00 1.0 1258431324 2091 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:11+00:00 1.0 1258431324 2090 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:15+00:00 1.0 1258431324 2089 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:30+00:00 1.0 1258431324 2088 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:44+00:00 1.0 1258431324 2087 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:30+00:00 1.0 1258431324 2085 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:15+00:00 1.0 1258431324 2084 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:15+00:00 1.0 1258431324 2083 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:18+00:00 1.0 1258431324 2082 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:25+00:00 1.0 1258431324 2081 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 09:33:40+00:00 1.0 1258431324 2080 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:30+00:00 1.0 1258431324 2079 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:26:07+00:00 1.0 1258431324 2078 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:23+00:00 1.0 1258431324 2061 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:09+00:00 1.0 1258431324 2057 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:50+00:00 1.0 1258431324 2055 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:17+00:00 1.0 1258431324 2054 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:15+00:00 1.0 1258431324 2053 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:16+00:00 1.0 1258431324 2052 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:33+00:00 1.0 1258431324 2051 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:19+00:00 1.0 1258431324 2050 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:26+00:00 1.0 1258431324 2048 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:22+00:00 1.0 1258431324 2047 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:29+00:00 1.0 1258431324 2046 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:38+00:00 1.0 1258431324 2045 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:27+00:00 1.0 1258431324 2044 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:23:13+00:00 1.0 1258431324 2043 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:23+00:00 1.0 1258431324 2035 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:58+00:00 1.0 1258431324 2029 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:22+00:00 1.0 1258431324 2027 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:15+00:00 1.0 1258431324 2026 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:20+00:00 1.0 1258431324 2025 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:12+00:00 1.0 1258431324 2024 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:14+00:00 1.0 1258431324 2023 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:16+00:00 1.0 1258431324 2019 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:22+00:00 1.0 1258431324 2018 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:28+00:00 1.0 1258431324 2017 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:20+00:00 1.0 1258431324 2016 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:22+00:00 1.0 1258431324 2015 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:29+00:00 1.0 1258431324 2013 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:16+00:00 1.0 1258431324 2012 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:14+00:00 1.0 1258431324 2011 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:57+00:00 1.0 1258431324 2007 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:31+00:00 1.0 1258431324 2005 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:15+00:00 1.0 1258431324 2004 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:11+00:00 1.0 1258431324 2003 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:13+00:00 1.0 1258431324 2002 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:14+00:00 1.0 1258431324 2001 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:18+00:00 1.0 1258431324 2000 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:24+00:00 1.0 1258431324 1999 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:33+00:00 1.0 1258431324 1998 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:32+00:00 1.0 1258431324 1997 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:27+00:00 1.0 1258431324 1995 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:17+00:00 1.0 1258431324 1994 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:20+00:00 1.0 1258431324 1993 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:57+00:00 1.0 1258431324 1991 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:02:04+00:00 1.0 1258431324 1988 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:31+00:00 1.0 1258431324 1982 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:08+00:00 1.0 1258431324 1981 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:19+00:00 1.0 1258431324 1980 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:17+00:00 1.0 1258431324 1979 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:13+00:00 1.0 1258431324 1978 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:19+00:00 1.0 1258431324 1976 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:51+00:00 1.0 1258431324 1975 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:21+00:00 1.0 1258431324 1974 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:21+00:00 1.0 1258431324 1973 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:16+00:00 1.0 1258431324 1972 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:21+00:00 1.0 1258431324 1971 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:19+00:00 1.0 1258431324 1970 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:13+00:00 1.0 1258431324 1969 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:21+00:00 1.0 1258431324 1967 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:17+00:00 1.0 1258431324 1966 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:08+00:00 1.0 1258431324 1960 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:34+00:00 1.0 1258431324 1958 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:16+00:00 1.0 1258431324 1957 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:17+00:00 1.0 1258431324 1956 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:15+00:00 1.0 1258431324 1955 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:51+00:00 1.0 1258431324 1954 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:25+00:00 1.0 1258431324 1953 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:29+00:00 1.0 1258431324 1952 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:40+00:00 1.0 1258431324 1951 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:21+00:00 1.0 1258431324 1950 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:26+00:00 1.0 1258431324 1949 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:16+00:00 1.0 1258431324 1948 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:15+00:00 1.0 1258431324 1947 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:30+00:00 1.0 1258431324 1946 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:41+00:00 1.0 1258431324 1935 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:25+00:00 1.0 1258431324 1930 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:43+00:00 1.0 1258431324 1928 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:19+00:00 1.0 1258431324 1926 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:28+00:00 1.0 1258431324 1925 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:18+00:00 1.0 1258431324 1924 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:21+00:00 1.0 1258431324 1923 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:42+00:00 1.0 1258431324 1922 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:48+00:00 1.0 1258431324 1921 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:21+00:00 1.0 1258431324 1920 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:32+00:00 1.0 1258431324 1919 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:19+00:00 1.0 1258431324 1918 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 19092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:30+00:00 1.0 1258431324 1916 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:50+00:00 1.0 1258431324 1915 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:43+00:00 1.0 1258431324 1908 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:42+00:00 1.0 1258431324 1906 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:13+00:00 1.0 1258431324 1905 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:15+00:00 1.0 1258431324 1904 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:36+00:00 1.0 1258431324 1903 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:39+00:00 1.0 1258431324 1902 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:28+00:00 1.0 1258431324 1901 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:20+00:00 1.0 1258431324 1900 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:39+00:00 1.0 1258431324 1899 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:14+00:00 1.0 1258431324 1898 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:20+00:00 1.0 1258431324 1897 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:13+00:00 1.0 1258431324 1896 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:31+00:00 1.0 1258431324 1894 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:11:03+00:00 1.0 1258431324 1893 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:05+00:00 1.0 1258431324 1885 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:28+00:00 1.0 1258431324 1884 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:16+00:00 1.0 1258431324 1883 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:26+00:00 1.0 1258431324 1882 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:21+00:00 1.0 1258431324 1881 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:31+00:00 1.0 1258431324 1880 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:29+00:00 1.0 1258431324 1879 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:39+00:00 1.0 1258431324 1878 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:18+00:00 1.0 1258431324 1877 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:41+00:00 1.0 1258431324 1876 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:43+00:00 1.0 1258431324 1875 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:37+00:00 1.0 1258431324 1874 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:22+00:00 1.0 1258431324 1873 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:30+00:00 1.0 1258431324 1872 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:39+00:00 1.0 1258431324 1863 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:43+00:00 1.0 1258431324 1862 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:12+00:00 1.0 1258431324 1861 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:12+00:00 1.0 1258431324 1860 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:15+00:00 1.0 1258431324 1859 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:26+00:00 1.0 1258431324 1858 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:18+00:00 1.0 1258431324 1857 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:31+00:00 1.0 1258431324 1856 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:44+00:00 1.0 1258431324 1855 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:17+00:00 1.0 1258431324 1854 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:12+00:00 1.0 1258431324 1853 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:18+00:00 1.0 1258431324 1852 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:26+00:00 1.0 1258431324 1850 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:20+00:00 1.0 1258431324 1849 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:20+00:00 1.0 1258431324 1845 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:48+00:00 1.0 1258431324 1844 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:20+00:00 1.0 1258431324 1843 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:16+00:00 1.0 1258431324 1842 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:13+00:00 1.0 1258431324 1841 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:16+00:00 1.0 1258431324 1840 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:16+00:00 1.0 1258431324 1839 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:18+00:00 1.0 1258431324 1838 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:27+00:00 1.0 1258431324 1837 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:26+00:00 1.0 1258431324 1836 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:21+00:00 1.0 1258431324 1835 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:14+00:00 1.0 1258431324 1833 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:08:01+00:00 1.0 1258431324 1832 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:28+00:00 1.0 1258431324 1826 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:45+00:00 1.0 1258431324 1825 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:16+00:00 1.0 1258431324 1824 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:22+00:00 1.0 1258431324 1823 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:12+00:00 1.0 1258431324 1822 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:25+00:00 1.0 1258431324 1821 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:29+00:00 1.0 1258431324 1820 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:23+00:00 1.0 1258431324 1819 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:18+00:00 1.0 1258431324 1818 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:16+00:00 1.0 1258431324 1817 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:19+00:00 1.0 1258431324 1816 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:18+00:00 1.0 1258431324 1815 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:26+00:00 1.0 1258431324 1813 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:52+00:00 1.0 1258431324 1812 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:43+00:00 1.0 1258431324 1806 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:34+00:00 1.0 1258431324 1805 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:13+00:00 1.0 1258431324 1804 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:15+00:00 1.0 1258431324 1803 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:16+00:00 1.0 1258431324 1802 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:15+00:00 1.0 1258431324 1801 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:24+00:00 1.0 1258431324 1800 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:18+00:00 1.0 1258431324 1799 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:50+00:00 1.0 1258431324 1798 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:24+00:00 1.0 1258431324 1797 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:18+00:00 1.0 1258431324 1796 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:42+00:00 1.0 1258431324 1795 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:52+00:00 1.0 1258431324 1793 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:43+00:00 1.0 1258431324 1792 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:48+00:00 1.0 1258431324 1785 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:23+00:00 1.0 1258431324 1784 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:14+00:00 1.0 1258431324 1783 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:14+00:00 1.0 1258431324 1782 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:18+00:00 1.0 1258431324 1781 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:22+00:00 1.0 1258431324 1780 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:26+00:00 1.0 1258431324 1779 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:42+00:00 1.0 1258431324 1778 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:23+00:00 1.0 1258431324 1777 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:30+00:00 1.0 1258431324 1776 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:16+00:00 1.0 1258431324 1775 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:13+00:00 1.0 1258431324 1774 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:07+00:00 1.0 1258431324 1766 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:40+00:00 1.0 1258431324 1765 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:23+00:00 1.0 1258431324 1764 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:16+00:00 1.0 1258431324 1763 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:16+00:00 1.0 1258431324 1762 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:18+00:00 1.0 1258431324 1761 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:20+00:00 1.0 1258431324 1760 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:18+00:00 1.0 1258431324 1759 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:22+00:00 1.0 1258431324 1758 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:20+00:00 1.0 1258431324 1757 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:22+00:00 1.0 1258431324 1756 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:13+00:00 1.0 1258431324 1755 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:13+00:00 1.0 1258431324 1753 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:11+00:00 1.0 1258431324 1751 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:14+00:00 1.0 1258431324 1750 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:22+00:00 1.0 1258431324 1749 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:13+00:00 1.0 1258431324 1748 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:22+00:00 1.0 1258431324 1747 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:23+00:00 1.0 1258431324 1746 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:48+00:00 1.0 1258431324 1745 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:19+00:00 1.0 1258431324 1744 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:16+00:00 1.0 1258431324 1743 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:34:04+00:00 1.0 1258431324 1742 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:56+00:00 1.0 1258431324 1740 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:45+00:00 1.0 1258431324 1732 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:19+00:00 1.0 1258431324 1731 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:18+00:00 1.0 1258431324 1730 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:16+00:00 1.0 1258431324 1729 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:12+00:00 1.0 1258431324 1728 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:28+00:00 1.0 1258431324 1727 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:21+00:00 1.0 1258431324 1726 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:19+00:00 1.0 1258431324 1725 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:24+00:00 1.0 1258431324 1724 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:23+00:00 1.0 1258431324 1723 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:15+00:00 1.0 1258431324 1722 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:14+00:00 1.0 1258431324 1721 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:21+00:00 1.0 1258431324 1719 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:19+00:00 1.0 1258431324 1712 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:39+00:00 1.0 1258431324 1711 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:20+00:00 1.0 1258431324 1710 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:21+00:00 1.0 1258431324 1709 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:31+00:00 1.0 1258431324 1708 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:29+00:00 1.0 1258431324 1707 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:37+00:00 1.0 1258431324 1706 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:27+00:00 1.0 1258431324 1705 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:18+00:00 1.0 1258431324 1704 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:13+00:00 1.0 1258431324 1703 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:14+00:00 1.0 1258431324 1702 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:20+00:00 1.0 1258431324 1701 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:27+00:00 1.0 1258431324 1699 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:23+00:00 1.0 1258431324 1693 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:26+00:00 1.0 1258431324 1692 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:14+00:00 1.0 1258431324 1691 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:13+00:00 1.0 1258431324 1690 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:14+00:00 1.0 1258431324 1689 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:13+00:00 1.0 1258431324 1688 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:01:02+00:00 1.0 1258431324 1687 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:16+00:00 1.0 1258431324 1686 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:17+00:00 1.0 1258431324 1685 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:23+00:00 1.0 1258431324 1684 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:20+00:00 1.0 1258431324 1683 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:22+00:00 1.0 1258431324 1682 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:48+00:00 1.0 1258431324 1680 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:09+00:00 1.0 1258431324 1672 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:01:12+00:00 1.0 1258431324 1671 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:14+00:00 1.0 1258431324 1670 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:14+00:00 1.0 1258431324 1669 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:17+00:00 1.0 1258431324 1668 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:16+00:00 1.0 1258431324 1667 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:38+00:00 1.0 1258431324 1666 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:01:02+00:00 1.0 1258431324 1665 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:17+00:00 1.0 1258431324 1664 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:26+00:00 1.0 1258431324 1663 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:22+00:00 1.0 1258431324 1662 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:20+00:00 1.0 1258431324 1661 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:21+00:00 1.0 1258431324 1659 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:46+00:00 1.0 1258431324 1658 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:30+00:00 1.0 1258431324 1652 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:30+00:00 1.0 1258431324 1649 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:16+00:00 1.0 1258431324 1648 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:15+00:00 1.0 1258431324 1647 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:20+00:00 1.0 1258431324 1646 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:22+00:00 1.0 1258431324 1645 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:19+00:00 1.0 1258431324 1644 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:31+00:00 1.0 1258431324 1643 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:14+00:00 1.0 1258431324 1642 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:15+00:00 1.0 1258431324 1641 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:21+00:00 1.0 1258431324 1640 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:15+00:00 1.0 1258431324 1639 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:34+00:00 1.0 1258431324 1637 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:30+00:00 1.0 1258431324 1628 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:56+00:00 1.0 1258431324 1626 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:13+00:00 1.0 1258431324 1625 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:14+00:00 1.0 1258431324 1624 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:14+00:00 1.0 1258431324 1623 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:17+00:00 1.0 1258431324 1622 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:35+00:00 1.0 1258431324 1621 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:57+00:00 1.0 1258431324 1620 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:23+00:00 1.0 1258431324 1619 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:18+00:00 1.0 1258431324 1618 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:25+00:00 1.0 1258431324 1617 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:18+00:00 1.0 1258431324 1616 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:20+00:00 1.0 1258431324 1614 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:37+00:00 1.0 1258431324 1608 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:37+00:00 1.0 1258431324 1606 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:13+00:00 1.0 1258431324 1604 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:13+00:00 1.0 1258431324 1603 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:18+00:00 1.0 1258431324 1600 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:16+00:00 1.0 1258431324 1598 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:14+00:00 1.0 1258431324 1597 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:33+00:00 1.0 1258431324 1596 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:08+00:00 1.0 1258431324 1595 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:41+00:00 1.0 1258431324 1588 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:14+00:00 1.0 1258431324 1587 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:18+00:00 1.0 1258431324 1586 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:25+00:00 1.0 1258431324 1585 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:12+00:00 1.0 1258431324 1584 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:26+00:00 1.0 1258431324 1583 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:17+00:00 1.0 1258431324 1582 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:24+00:00 1.0 1258431324 1581 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:20+00:00 1.0 1258431324 1580 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:20+00:00 1.0 1258431324 1579 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:22+00:00 1.0 1258431324 1578 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:14+00:00 1.0 1258431324 1577 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:22+00:00 1.0 1258431324 1576 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:32+00:00 1.0 1258431324 1575 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:31+00:00 1.0 1258431324 1573 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:16+00:00 1.0 1258431324 1571 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-24 14:42:41+00:00 1.0 1258431324 1570 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 13:57:18+00:00 1.0 1258431324 1569 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 10:03:44+00:00 1.0 1258431324 1568 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 08:00:30+00:00 1.0 1258431324 1567 ℹ coin signal information ℹ date friday 24082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-24 03:00:18+00:00 1.0 1258431324 1566 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-24 02:00:24+00:00 1.0 1258431324 1564 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info shortly ℹ️ exchange yobit 2018-08-24 01:05:49+00:00 1.0 1258431324 1563 scheduled pump is cancelled due to high sell wall coin is not near to 24 hr low which is our speciality to signal low level we will reschedule with good coin again low level thanks for keeping patience 2018-08-23 17:06:51+00:00 1.0 1258431324 1562 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-23 17:05:09+00:00 1.0 1258431324 1561 ℹ️ 20 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:54:19+00:00 1.0 1258431324 1560 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:37:40+00:00 1.0 1258431324 1559 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 16:02:27+00:00 1.0 1258431324 1558 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:16:36+00:00 1.0 1258431324 1557 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:08:53+00:00 1.0 1258431324 1556 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 13:01:48+00:00 1.0 1258431324 1555 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 10:01:36+00:00 1.0 1258431324 1554 ℹ coin signal information ℹ date thursday 23082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-23 09:05:31+00:00 1.0 1258431324 1553 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 23082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-23 08:49:00+00:00 1.0 1258431324 1552 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 23 august 2018 day thursday time 5 pm gmt 2018-08-23 07:59:23+00:00 1.0 1258431324 1550 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:27+00:00 1.0 1258431324 1540 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:20+00:00 1.0 1258431324 1539 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:14+00:00 1.0 1258431324 1538 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-22 16:51:17+00:00 1.0 1258431324 1537 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-22 16:41:12+00:00 1.0 1258431324 1536 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-22 16:31:20+00:00 1.0 1258431324 1535 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 16:01:20+00:00 1.0 1258431324 1534 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 15:01:26+00:00 1.0 1258431324 1533 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:16+00:00 1.0 1258431324 1532 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:15+00:00 1.0 1258431324 1531 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:20+00:00 1.0 1258431324 1530 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:34+00:00 1.0 1258431324 1529 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:51+00:00 1.0 1258431324 1528 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always remember pump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:05+00:00 1.0 1258431324 1517 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:24+00:00 1.0 1258431324 1515 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:28+00:00 1.0 1258431324 1514 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:19+00:00 1.0 1258431324 1513 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:17+00:00 1.0 1258431324 1512 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:15+00:00 1.0 1258431324 1511 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:03:02+00:00 1.0 1258431324 1510 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:22+00:00 1.0 1258431324 1509 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:16+00:00 1.0 1258431324 1508 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:14+00:00 1.0 1258431324 1507 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:16+00:00 1.0 1258431324 1506 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:54+00:00 1.0 1258431324 1505 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:09+00:00 1.0 1258431324 1503 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:34+00:00 1.0 1258431324 1502 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:20:03+00:00 1.0 1258431324 1492 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:11+00:00 1.0 1258431324 1490 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:20+00:00 1.0 1258431324 1489 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:16+00:00 1.0 1258431324 1488 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:11+00:00 1.0 1258431324 1487 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:36+00:00 1.0 1258431324 1486 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:28+00:00 1.0 1258431324 1485 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:19+00:00 1.0 1258431324 1484 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:31+00:00 1.0 1258431324 1483 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:13+00:00 1.0 1258431324 1482 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:23+00:00 1.0 1258431324 1481 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:48+00:00 1.0 1258431324 1480 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:35+00:00 1.0 1258431324 1479 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:49+00:00 1.0 1258431324 1477 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:19:59+00:00 1.0 1258431324 1468 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:55+00:00 1.0 1258431324 1466 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:15+00:00 1.0 1258431324 1465 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:11+00:00 1.0 1258431324 1464 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:15+00:00 1.0 1258431324 1463 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:15+00:00 1.0 1258431324 1462 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:16+00:00 1.0 1258431324 1461 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:12+00:00 1.0 1258431324 1460 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:13+00:00 1.0 1258431324 1459 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:16+00:00 1.0 1258431324 1458 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 07:59:58+00:00 1.0 1258431324 1456 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:13+00:00 1.0 1258431324 1455 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:31+00:00 1.0 1258431324 1454 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:53:00+00:00 1.0 1258431324 1444 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:27+00:00 1.0 1258431324 1442 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-16 15:56:11+00:00 1.0 1258431324 1441 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-16 15:51:20+00:00 1.0 1258431324 1440 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-16 15:41:11+00:00 1.0 1258431324 1439 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-16 15:31:22+00:00 1.0 1258431324 1438 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 15:01:21+00:00 1.0 1258431324 1437 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 14:31:17+00:00 1.0 1258431324 1436 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-16 13:01:14+00:00 1.0 1258431324 1435 ℹ coin signal information ℹ date thursday 16082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-16 08:01:24+00:00 1.0 1258431324 1433 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 16082018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-16 02:27:03+00:00 1.0 1258431324 1432 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:31+00:00 1.0 1258431324 1431 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:06+00:00 1.0 1258431324 1420 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:06+00:00 1.0 1258431324 1419 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-14 16:56:19+00:00 1.0 1258431324 1418 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-14 16:50:12+00:00 1.0 1258431324 1417 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-14 16:41:26+00:00 1.0 1258431324 1416 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-14 16:30:21+00:00 1.0 1258431324 1415 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 16:00:22+00:00 1.0 1258431324 1414 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 14:00:19+00:00 1.0 1258431324 1413 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 13:04:19+00:00 1.0 1258431324 1412 ℹ coin signal information ℹ date tuesday 14082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-14 12:02:47+00:00 1.0 1258431324 1411 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 14082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-14 11:37:39+00:00 1.0 1258431324 1409 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:52+00:00 1.0 1258431324 1408 results coin bitcoal coalbtc low 000000089 high 000000137 increase 55+ volume 03 btc it was a good pump but we should do better one thanks for your believe to us congratulations to all who participated today and thanks for your support and positive feedback stay tuned for info regarding the next big copump our next profit target more than 100+ 2018-08-13 19:09:37+00:00 1.0 1258431324 1403 pump starts the coin to pump is coal bitcoal coalbtc exchange cryptopia target +100 market url trollbox 2018-08-13 19:01:27+00:00 1.0 1258431324 1402 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-08-13 18:54:30+00:00 1.0 1258431324 1398 just 30 minutes to fly get ready and fasten your seatbelts dont sell your coin from the low prices hold it at least 15 minutes ❗️❗️❗️ 2018-08-13 18:31:29+00:00 1.0 1258431324 1395 hold post coin name in yobit chatboxhaving rumour of airdrop 2018-08-13 18:07:11+00:00 1.0 1258431324 1388 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:01:00+00:00 1.0 1258431324 1387 1 hour left to pump it will be on cryptopia exchange 20 groups and 100000 members will participate todays pump is going to be great so get ready ✊ 2018-08-13 18:00:58+00:00 1.0 1258431324 1386 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-13 17:56:10+00:00 1.0 1258431324 1385 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-13 17:51:10+00:00 1.0 1258431324 1384 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-13 17:41:11+00:00 1.0 1258431324 1383 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-13 17:31:13+00:00 1.0 1258431324 1382 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 17:01:13+00:00 1.0 1258431324 1380 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 15:01:12+00:00 1.0 1258431324 1377 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 13:01:12+00:00 1.0 1258431324 1376 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 10:01:17+00:00 1.0 1258431324 1374 ℹ coin signal information ℹ date monday 13082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 10 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-13 08:01:13+00:00 1.0 1258431324 1372 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 13082018 monday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-13 03:28:56+00:00 1.0 1258431324 1370 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:30+00:00 1.0 1258431324 1358 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 16:00:06+00:00 1.0 1258431324 1357 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-12 15:56:10+00:00 1.0 1258431324 1356 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-12 15:51:16+00:00 1.0 1258431324 1355 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-12 15:41:11+00:00 1.0 1258431324 1354 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-12 15:31:16+00:00 1.0 1258431324 1353 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 15:01:23+00:00 1.0 1258431324 1352 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 14:31:16+00:00 1.0 1258431324 1351 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 13:01:13+00:00 1.0 1258431324 1350 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 10:01:31+00:00 1.0 1258431324 1349 ℹ coin signal information ℹ date sunday 12082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-12 08:01:11+00:00 1.0 1258431324 1348 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 12082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-12 02:38:19+00:00 1.0 1258431324 1346 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:05:57+00:00 1.0 1258431324 1344 big co pump announcement 13rd aug monday 1900 gmt cryptopia exchange you can find details in the photo below 2018-08-11 17:58:59+00:00 1.0 1258431324 1329 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:12+00:00 1.0 1258431324 1328 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-09 17:56:11+00:00 1.0 1258431324 1327 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-09 17:51:10+00:00 1.0 1258431324 1326 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-09 17:41:11+00:00 1.0 1258431324 1325 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-09 17:31:12+00:00 1.0 1258431324 1324 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 17:01:24+00:00 1.0 1258431324 1323 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 15:01:34+00:00 1.0 1258431324 1322 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 13:01:36+00:00 1.0 1258431324 1321 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 10:01:12+00:00 1.0 1258431324 1320 ℹ coin signal information ℹ date thursday 09082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 9 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-09 08:56:22+00:00 1.0 1258431324 1319 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 09082018 thursday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-09 08:29:41+00:00 1.0 1258431324 1312 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:45+00:00 1.0 1258431324 1311 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-08 15:56:15+00:00 1.0 1258431324 1310 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-08 15:51:11+00:00 1.0 1258431324 1309 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-08 15:41:14+00:00 1.0 1258431324 1308 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-08 15:31:16+00:00 1.0 1258431324 1307 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 15:01:10+00:00 1.0 1258431324 1306 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 14:31:11+00:00 1.0 1258431324 1305 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 13:01:11+00:00 1.0 1258431324 1304 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 10:01:11+00:00 1.0 1258431324 1303 ℹ coin signal information ℹ date wednesday 08082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-08 08:01:11+00:00 1.0 1258431324 1302 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-08 00:34:11+00:00 1.0 1258431324 1300 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:28+00:00 1.0 1258431324 1299 results coin cubits qbtbtc low 000000018 high 000000031 increase 72+ volume 03 btc it was a good pump but we should do better one thanks for your believe to us congratulations to all who participated today and thanks for your support and positive feedback stay tuned for info regarding the next big copump our next profit target more than 100+ 2018-08-07 18:46:01+00:00 1.0 1258431324 1298 the coin to pump is qbt cubits qbtbtc exchange cryptopia target +150 2018-08-07 18:24:14+00:00 1.0 1258431324 1297 pump starts the coin to pump is qbt cubits qbtbtc exchange cryptopia target +150 market url trollbox 2018-08-07 18:21:09+00:00 1.0 1258431324 1295 pump starts the coin to pump is qbt cubits qbtbtc exchange cryptopia target +150 market url trollbox 2018-08-07 18:11:24+00:00 1.0 1258431324 1293 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-08-07 18:03:20+00:00 1.0 1258431324 1290 1 hour left to pump it will be on cryptopia exchange ⚠️ 40 groups more than 160000 members will participate ⚠️ todays pump is going to be huge so get ready ✊ 2018-08-07 17:03:30+00:00 1.0 1258431324 1285 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 40 groups will participate around 160k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-08-06 18:00:25+00:00 1.0 1258431324 1283 big co pump announcement 7th aug tuesday 1800 gmt cryptopia exchange you can find details in the photo below 2018-08-06 16:24:40+00:00 1.0 1258431324 1273 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:35+00:00 1.0 1258431324 1272 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-05 15:57:11+00:00 1.0 1258431324 1271 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-05 15:52:12+00:00 1.0 1258431324 1270 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-05 15:42:17+00:00 1.0 1258431324 1269 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-05 15:32:20+00:00 1.0 1258431324 1268 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 15:02:14+00:00 1.0 1258431324 1267 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 14:32:12+00:00 1.0 1258431324 1265 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-05 13:02:12+00:00 1.0 1258431324 1264 ℹ coin signal information ℹ date sunday 05082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-05 11:04:10+00:00 1.0 1258431324 1263 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 05082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-05 10:16:16+00:00 1.0 1258431324 1261 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:25+00:00 1.0 1258431324 1252 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:25+00:00 1.0 1258431324 1251 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-04 15:57:20+00:00 1.0 1258431324 1250 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-04 15:51:19+00:00 1.0 1258431324 1249 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-04 15:41:24+00:00 1.0 1258431324 1248 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-04 15:32:30+00:00 1.0 1258431324 1247 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 15:04:15+00:00 1.0 1258431324 1246 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 14:34:04+00:00 1.0 1258431324 1245 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-04 13:03:16+00:00 1.0 1258431324 1244 ℹ coin signal information ℹ date saturday 04082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 6 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-04 09:59:39+00:00 1.0 1258431324 1243 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 04082018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-04 09:45:58+00:00 1.0 1258431324 1241 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:28+00:00 1.0 1258431324 1232 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:38+00:00 1.0 1258431324 1231 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-03 15:57:20+00:00 1.0 1258431324 1230 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-03 15:52:22+00:00 1.0 1258431324 1229 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-03 15:41:19+00:00 1.0 1258431324 1228 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-03 15:31:24+00:00 1.0 1258431324 1227 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 15:01:20+00:00 1.0 1258431324 1226 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 14:32:35+00:00 1.0 1258431324 1225 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 13:02:34+00:00 1.0 1258431324 1224 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 10:02:29+00:00 1.0 1258431324 1223 ℹ coin signal information ℹ date friday 03082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-03 08:02:22+00:00 1.0 1258431324 1222 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 03082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-03 01:34:28+00:00 1.0 1258431324 1220 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:16:14+00:00 1.0 1258431324 1218 pump starts the coin to pump is ltb litebar ltbbtc exchange cryptopia target +100 market url trollbox 2018-08-01 18:00:01+00:00 1.0 1258431324 1217 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-08-01 17:54:26+00:00 1.0 1258431324 1213 1 hour left to pump it will be on cryptopia exchange ⚠️40 groups more than 150000 members will participate ⚠️ todays pump is going to be hugeee so get ready ✊ 2018-08-01 17:00:20+00:00 1.0 1258431324 1208 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 40 groups will participate around 150k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-31 17:59:34+00:00 1.0 1258431324 1206 big co pump announcement 1st aug wednesday 1800 gmt cryptopia exchange you can find details in the photo below 2018-07-30 18:11:28+00:00 1.0 1258431324 1205 results coin sooncoin soonbtc low 000000064 high 000000120 increase 88+ volume 09 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 150+ 2018-07-28 18:39:18+00:00 1.0 1258431324 1203 pump starts the coin to pump is soon sooncoin soonbtc exchange cryptopia target +100 market url trollbox 2018-07-28 18:01:04+00:00 1.0 1258431324 1202 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-07-28 17:55:27+00:00 1.0 1258431324 1197 1 hour left to pump it will be on cryptopia exchange ⚠️ 35 groups more than 130000 members will participate ⚠️ todays pump is going to be great so get ready ✊ 2018-07-28 17:00:33+00:00 1.0 1258431324 1188 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:01:00+00:00 1.0 1258431324 1187 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-28 15:57:23+00:00 1.0 1258431324 1186 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-28 15:51:19+00:00 1.0 1258431324 1185 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-28 15:41:22+00:00 1.0 1258431324 1184 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-28 15:31:26+00:00 1.0 1258431324 1183 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 15:01:21+00:00 1.0 1258431324 1182 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 14:32:19+00:00 1.0 1258431324 1180 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 13:01:26+00:00 1.0 1258431324 1178 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 10:02:30+00:00 1.0 1258431324 1176 ℹ coin signal information ℹ date saturday 28 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-28 08:02:34+00:00 1.0 1258431324 1174 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 28072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-28 01:34:22+00:00 1.0 1258431324 1172 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:48+00:00 1.0 1258431324 1171 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 35 groups will participate around 130k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-27 18:10:55+00:00 1.0 1258431324 1169 big co pump announcement 28th july saturday 1800 gmt cryptopia exchange you can find details in the photo below 2018-07-26 20:30:17+00:00 1.0 1258431324 1160 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:49+00:00 1.0 1258431324 1159 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-26 15:56:21+00:00 1.0 1258431324 1158 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-26 15:52:18+00:00 1.0 1258431324 1157 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-26 15:42:22+00:00 1.0 1258431324 1156 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-26 15:32:30+00:00 1.0 1258431324 1155 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 15:02:21+00:00 1.0 1258431324 1154 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 14:32:25+00:00 1.0 1258431324 1153 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 13:02:21+00:00 1.0 1258431324 1152 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 10:02:18+00:00 1.0 1258431324 1151 ℹ coin signal information ℹ date thursday 26 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-26 08:02:21+00:00 1.0 1258431324 1150 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-26 01:34:20+00:00 1.0 1258431324 1148 results coin cubits qbtbtc low 000000022 high 000000051 increase 132+ volume 10 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 200+ 2018-07-25 18:31:01+00:00 1.0 1258431324 1145 pump starts the coin to pump is qbt cubits qbtbtc exchange cryptopia target +100 market url trollbox 2018-07-25 18:00:46+00:00 1.0 1258431324 1144 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-07-25 17:54:57+00:00 1.0 1258431324 1140 1 hour left to pump it will be on cryptopia exchange ⚠️ 33 groups more than 110000 members will participate ⚠️ todays pump is going to be great so get ready ✊ 2018-07-25 17:03:27+00:00 1.0 1258431324 1139 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:21:17+00:00 1.0 1258431324 1129 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 33 groups will participate around 110k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-24 17:59:46+00:00 1.0 1258431324 1126 big co pump announcement 25th july wednesday 1800 gmt cryptopia exchange you can find details in the photo below 2018-07-23 17:44:24+00:00 1.0 1258431324 1125 results coin granite grnbtc low 000000036 high 000000086 increase 139+ volume 08 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 200+ 2018-07-21 19:15:51+00:00 1.0 1258431324 1123 pump starts the coin to pump is grn granite grnbtc exchange cryptopia target +100 market url trollbox 2018-07-21 18:00:25+00:00 1.0 1258431324 1122 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-07-21 17:55:57+00:00 1.0 1258431324 1118 1 hour left to pump it will be on cryptopia exchange 25 groups more than 80000 members will participate todays pump is going to be great so get ready ✊ 2018-07-21 17:01:03+00:00 1.0 1258431324 1108 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 16:00:06+00:00 1.0 1258431324 1106 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-21 15:57:06+00:00 1.0 1258431324 1105 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-21 15:51:04+00:00 1.0 1258431324 1104 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-21 15:41:06+00:00 1.0 1258431324 1103 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-21 15:31:14+00:00 1.0 1258431324 1102 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 15:01:06+00:00 1.0 1258431324 1101 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 14:31:13+00:00 1.0 1258431324 1099 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 13:01:10+00:00 1.0 1258431324 1097 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 10:00:05+00:00 1.0 1258431324 1095 ℹ coin signal information ℹ date saturday 21 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-21 08:01:05+00:00 1.0 1258431324 1093 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 25 groups will participate around 80k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-20 18:06:24+00:00 1.0 1258431324 1091 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-20 15:32:06+00:00 1.0 1258431324 1088 big co pump announcement 21st july saturday 1800 gmt cryptopia exchange you can find details in the photo below 2018-07-20 12:12:02+00:00 1.0 1258431324 1087 have you been missing out on these huge profits in our last pump on yobit having 600 profit in snpt coin make sure you are ready for the next one this group buys crypto coins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt 2018-07-20 11:48:29+00:00 1.0 1258431324 1067 the coin to pump is snpt exchange yobitnet target +300 market snptbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-07-16 15:59:50+00:00 1.0 1258431324 1066 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-16 15:57:19+00:00 1.0 1258431324 1065 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-16 15:52:02+00:00 1.0 1258431324 1064 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-16 15:42:08+00:00 1.0 1258431324 1063 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-16 15:32:02+00:00 1.0 1258431324 1062 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-16 15:02:06+00:00 1.0 1258431324 1060 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-16 14:32:02+00:00 1.0 1258431324 1059 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-16 13:02:05+00:00 1.0 1258431324 1058 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-16 10:04:05+00:00 1.0 1258431324 1057 ℹ coin signal information ℹ date monday 16 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-16 08:02:06+00:00 1.0 1258431324 1055 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised and made a jump from yesterday this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 16072018 monday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-15 15:34:05+00:00 1.0 1258431324 1019 the coin to pump is snpt exchange yobitnet target +300 market snptbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-07-01 17:59:58+00:00 1.0 1258431324 1018 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-01 17:57:06+00:00 1.0 1258431324 1017 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-01 17:53:06+00:00 1.0 1258431324 1016 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-01 17:43:12+00:00 1.0 1258431324 1015 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-01 17:34:04+00:00 1.0 1258431324 1014 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-01 17:02:07+00:00 1.0 1258431324 1013 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-01 16:32:04+00:00 1.0 1258431324 1012 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-07-01 15:01:07+00:00 1.0 1258431324 1011 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-07-01 12:00:36+00:00 1.0 1258431324 1010 ℹ coin signal information ℹ date sunday 1st of july hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit the bitcoin market is stable this is a great opportunity to gain more btc newbbies can register urself using this link get 50 trade discount 2018-07-01 10:06:25+00:00 1.0 1258431324 1008 ❗ signal today read instructions below❗ 1 sign up to yobit and send your btc to your wallet today use this link to get 50 trade discount 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ coin signal today ℹ️ exchange yobit date 01072018 sunday time 6 pm gmt 9 hrs until the coin to buy is released ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-01 08:59:02+00:00 1.0 1258431324 1007 ℹ coin signal information ℹ date sunday 1st of july hour 1800 pm gmt exchange yobit wwwyobitnet ℹ 15 hours from now ℹ️ 2018-07-01 03:07:06+00:00 1.0 1258431324 1006 ℹ coin signal information ℹ date sunday 1st of july hour 1800 pm gmt exchange yobit wwwyobitnet ℹ 24 hours from now ℹ️ 2018-06-30 18:04:36+00:00 1.0 1258431324 1003 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today use this link to get 50 trade discount 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised and made a jump from yesterday this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 01072018 sunday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-06-30 15:49:03+00:00 1.0 1258431324 1002 ❗ 1 day to go ❗ have you been missing out on these profits above make sure you are ready for the next one this group buys cryptocoins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal sunday ℹ️ date 01072018 sunday time 6 pm gmt exchange yobitnet target 300+ newbbies sign up on yobitnet using this link get 50 discount on trade get your btc wallets ready pin our channel for every update invite your friends to join ℹ️ the yobit market is looking stable and we expect a large audience for this one preparations have been going well only 1 days to go set your reminders now instructions to be posted shortly ℹ️ 2018-06-30 07:56:50+00:00 1.0 1258431324 1001 ❗ 1 day to go ❗ have you been missing out on these profits above make sure you are ready for the next one this group buys cryptocoins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal sunday ℹ️ date 01072018 sunday time 6 pm gmt exchange yobitnet target 300+ newbbies sign up on yobitnet using this link get 50 discount on trade get your btc wallets ready pin our channel for every update invite your friends to join ℹ️ the yobit market is looking stable and we expect a large audience for this one preparations have been going well only 1 days to go set your reminders now instructions to be posted shortly ℹ️ 2018-06-30 07:56:01+00:00 1.0 1258431324 999 pump announcement date 172018 time 6 pm gmt exchange yobitnet target 300+ sign up on yobitnet using this link get 50 discount on trade get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-06-28 18:11:28+00:00 1.0 1258431324 995 coin umo low 580 high 987 win good pump wait for the next pump date 2018-06-25 19:03:37+00:00 1.0 1258431324 993 5 mins to the pump next post will be the coin be ready 2018-06-25 18:55:01+00:00 1.0 1258431324 992 30 mins to the pump 30 mins left dont forget to keep on holding and wait for outside investors its special coin profit target +220 be logged on 2018-06-25 18:32:01+00:00 1.0 1258431324 991 1 hours to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-25 18:01:12+00:00 1.0 1258431324 990 2 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-25 17:06:47+00:00 1.0 1258431324 989 3 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-25 17:04:05+00:00 1.0 1258431324 988 4 hours to the pump friends do not miss todays pump the lowest level of coin we choose is at the fibonachi boundary we expect a huge increase it always wins with us exchange cryptopia 2018-06-25 15:00:35+00:00 1.0 1258431324 987 6 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 220 profit 2018-06-25 13:00:59+00:00 1.0 1258431324 985 8 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 2018-06-25 11:09:56+00:00 1.0 1258431324 984 tomorrow our pump time has changed 25062018 7 pm gmt 1 sign up to cryptopia and send your btc to your wallet today cryptopiaconz 2 at 1900pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once see you all tomorrow exchange wwwcryptopiaconz date 25062018 monday time 7 pm gmt read above for previous signals results they are the consistently biggest on cryptopia be a part of it 2018-06-24 13:37:08+00:00 1.0 1258431324 983 pump announcement 25062018 6 pm gmt do not forget to invite your friends to the pump well always win together pump target 220 profit a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors have you been missing out on these huge profits above make sure you are ready for the next one 2018-06-23 17:30:35+00:00 1.0 1258431324 982 1 hour left big pump be ready for the big rise exchange cryptopiacom 2018-06-22 16:54:20+00:00 1.0 1258431324 981 5 hour left big pump be ready for the big rise exchange cryptopiacom 2018-06-22 13:03:58+00:00 1.0 1258431324 980 10 hour left big pump be ready for the big rise exchange cryptopiacom 2018-06-22 08:04:10+00:00 1.0 1258431324 979 coin bvb low 30 high 71 win profit + 75 good pump wait for the next pump date 2018-06-21 19:11:38+00:00 1.0 1258431324 978 coin name bvb buy and hold 2018-06-21 19:03:33+00:00 1.0 1258431324 977 5 mins to the pump next post will be the coin keep the caps lock key open while typing the name coin be ready 2018-06-21 18:56:18+00:00 1.0 1258431324 976 30 mins to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 18:32:48+00:00 1.0 1258431324 975 do not miss this pump today 1 hours 30 mins to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-21 17:29:51+00:00 1.0 1258431324 974 mr wow pump announcement 22062018 6 pm gmt do not forget to invite your friends to the pump well always win together pump target 220 profit exchangecryptopia a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors 2018-06-21 16:54:18+00:00 1.0 1258431324 973 3 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 16:04:03+00:00 1.0 1258431324 972 5 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 220 profit 2018-06-21 13:59:54+00:00 1.0 1258431324 971 9 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 2018-06-21 09:59:43+00:00 1.0 1258431324 970 24 hours until the coin to buy is released 21062018 7 pm gmt 1 sign up to cryptopia and send your btc to your wallet today cryptopiaconz 2 at 1900pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once see you all tomorrow exchange wwwcryptopiaconz date 21062018 tuesday time 7 pm gmt read above for previous signals results they are the consistently biggest on cryptopia be a part of it 2018-06-20 19:01:36+00:00 1.0 1258431324 968 pump announcement 21062018 7 pm gmt do not forget to invite your friends to the pump well always win together pump target 220 profit exchangecryptopia a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 7pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors 2018-06-19 20:08:02+00:00 1.0 1258431324 962 10 mins to the pump next post will be the coin be ready 2018-06-16 17:49:11+00:00 1.0 1258431324 961 30 mins to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain 2018-06-16 17:29:48+00:00 1.0 1258431324 960 1 hours to the pump exchange cryptopia be ready todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 320 2018-06-16 16:58:58+00:00 1.0 1258431324 959 2 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 320 profit 2018-06-16 16:00:06+00:00 1.0 1258431324 958 3 hours to the pump remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ todays pump will last around 15 minutes while all outside investors pile on hold your coins until this happens for maximum profits ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days sign up and send btc to the cryptopia exchange cryptopiaconz 2018-06-16 14:59:25+00:00 1.0 1258431324 957 4 hours to the pump exchange cryptopia be ready pump time 6 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 4 hours exchange cryptopia premium member contact rptrader 2018-06-16 14:01:09+00:00 1.0 1258431324 951 7 hours 30 mins to the pump exchange cryptopia be ready todays pump information keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 premium member contact rptrader 2018-06-16 09:24:03+00:00 1.0 1258431324 949 21 hours to the pump a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors premium member contact rptrader 2018-06-15 20:14:53+00:00 1.0 1258431324 948 pump announcement 16062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia 2018-06-15 15:21:28+00:00 1.0 1258431324 915 the coin to pump is hac exchange cryptopia target +300 500 market hacbtc buy and hold hac target 1st 180 target 2nd 220 2018-05-26 16:31:01+00:00 1.0 1258431324 914 3 min next post coin name 2018-05-26 16:27:04+00:00 1.0 1258431324 912 less than 10 minutes left until the big pump on cryptopia 2018-05-26 16:20:04+00:00 1.0 1258431324 911 less than 15 minutes left until the big pump on cryptopia 2018-05-26 16:15:07+00:00 1.0 1258431324 910 less than 30 minutes left until the big pump on cryptopia 2018-05-26 16:00:40+00:00 1.0 1258431324 907 01hours left to pump ⏰ time 430 pm gmt exchange cryptopia ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-26 15:30:05+00:00 1.0 1258431324 906 03hours left to pump ⏰ time 430 pm gmt exchange cryptopia ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-26 13:30:21+00:00 1.0 1258431324 902 06hours left to pump ⏰ time 430 pm gmt exchange cryptopia ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-26 10:30:14+00:00 1.0 1258431324 900 12 hours left to pump ⏰ time 430 pm gmt exchange cryptopia ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-26 04:30:10+00:00 1.0 1258431324 899 big hold pump date 2652018 time 430pm gmt exchange cryptopia target 100+ sign up on cryptopia get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-25 20:07:08+00:00 1.0 1258431324 894 joseph 250518 0226 50 discount a member of our groups has been 100 successful in predicting the big pump signal and cryptopia pumps hes offering to only 5 members at 005 btc for lifetime 2018-05-25 13:15:49+00:00 1.0 1258431324 887 less than 12 hours left until the big pump on bittrex 2018-05-24 05:02:16+00:00 1.0 1258431324 878 the next message is the picture of the coin name 2018-05-22 18:00:04+00:00 1.0 1258431324 877 next post will be coin name exchange binance strategy 1coin will 0 prepumped so buy at market price and hold untill you get desired peofit 2this coin is the most undervalued gem sitting at bottom found by our technical specialists 3 expected to go 2x 3x in short time so buy and hold 4as a channel memeber you are requested to avoid puting sell walls as much as possible and do active prmotions on facebook twitter slack telegram crypto groups 4lets together promote this hodl doing our part and attract every small big trader into this hodl and give a win win to everyone best of luck 2018-05-22 17:58:09+00:00 1.0 1258431324 875 less than 5 minutes left until the big pump on binance 2018-05-22 17:57:04+00:00 1.0 1258431324 873 less than 15 minutes left until the big pump on binance 2018-05-22 17:47:07+00:00 1.0 1258431324 872 dear members it was not the best pump today it was interrupted buy ugly trading bots at very beginning some of you noticed bad stard and didnt participate as well btc price is in trouble all who stayed with coin set sell orders with +1020 and leave it there someone will buy in 1 month time until now we will wait for crypto market to recover better next pump will be anounce when conditions are good stay tuned 2018-05-22 17:37:20+00:00 1.0 1258431324 871 less than 30 minutes left until the big pump on binance 2018-05-22 17:32:52+00:00 1.0 1258431324 866 less than 1 hour left until the big pump on binance 2018-05-22 17:02:11+00:00 1.0 1258431324 862 5 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ next post is coin name ⭐️ 2018-05-22 16:54:03+00:00 1.0 1258431324 861 10 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:49:06+00:00 1.0 1258431324 860 15 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:44:17+00:00 1.0 1258431324 859 30 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:44:13+00:00 1.0 1258431324 858 30 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:29:04+00:00 1.0 1258431324 851 1 hour left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 15:59:01+00:00 1.0 1258431324 850 less than 3 hours left until the big pump on binance 2018-05-22 15:02:20+00:00 1.0 1258431324 849 2 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 14:59:01+00:00 1.0 1258431324 848 3 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 13:59:32+00:00 1.0 1258431324 847 less than 6 hours left until the big pump on binance 2018-05-22 12:02:14+00:00 1.0 1258431324 846 5 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 11:59:01+00:00 1.0 1258431324 839 the pump yesterday brought about 68 profit to all our clients that means from 100 you could have made 68 of pure profit this is a very good result for our first pump but today we expect a much better result thus its time to announce our next pump we have chosen a coin with a very high profit potential ▪️date 22nd of may ◾️time 1900 london time bstgmt ◼️pair btc ◼️exchange yobitio 2018-05-22 10:28:05+00:00 1.0 1258431324 838 7 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 09:59:01+00:00 1.0 1258431324 837 less than 10 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-22 07:12:12+00:00 1.0 1258431324 836 less than 12 hours left until the big pump on binance 2018-05-22 06:02:05+00:00 1.0 1258431324 826 its time to announce our first massive pump we have chosen a coin that has massive potential and big news coming up ◼️ date 21st of may ◼️time 1900 british dummer time bst ◼️ pair btc ◼️ exchange yobitio 2018-05-20 19:07:47+00:00 1.0 1258431324 824 pump starts the coin to pump is ec eclipse ec btc exchange cryptopia target +200 market url trollbox 2018-05-20 17:59:12+00:00 1.0 1258431324 823 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-05-20 17:55:15+00:00 1.0 1258431324 817 1 hour left to pump it will be on cryptopia exchange 25 groups more than 50000 members will participate todays pump is going to be huge we are targeting 200 profit with 05 btc volume get ready for flight ✊ 2018-05-20 16:59:32+00:00 1.0 1258431324 806 5 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ next post is coin name ⭐️ 2018-05-19 14:54:05+00:00 1.0 1258431324 805 10 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:49:11+00:00 1.0 1258431324 804 15 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:44:01+00:00 1.0 1258431324 803 30 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:29:18+00:00 1.0 1258431324 802 1 hour left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 13:59:00+00:00 1.0 1258431324 801 2 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 12:59:17+00:00 1.0 1258431324 800 3 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 11:59:00+00:00 1.0 1258431324 799 5 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 09:59:07+00:00 1.0 1258431324 798 less than 7 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 08:15:25+00:00 1.0 1258431324 795 less than 15 minutes left until the big pump on binance 2018-05-18 17:47:03+00:00 1.0 1258431324 794 less than 30 minutes left until the big pump on binance 2018-05-18 17:32:06+00:00 1.0 1258431324 793 less than 1 hour left until the big pump on binance 2018-05-18 17:02:23+00:00 1.0 1258431324 791 less than 3 hours left until the big pump on binance 2018-05-18 15:02:55+00:00 1.0 1258431324 790 coin name mod exchange binance 2018-05-18 14:59:30+00:00 1.0 1258431324 789 less than 1 minute remaining for binance pump over 200k participants huge pump time 1500 gmt today 2018-05-18 14:58:43+00:00 1.0 1258431324 788 less than 2 minutes remaining for binance pump over 200k participants huge pump time 1500 gmt today 2018-05-18 14:57:35+00:00 1.0 1258431324 786 less than 5 minutes remaining for binance pump over 200k participants huge pump time 1500 gmt today 2018-05-18 14:54:50+00:00 1.0 1258431324 784 less than 6 hours left until the big pump on binance 2018-05-18 12:29:30+00:00 1.0 1258431324 779 big pump announcement date may 18 1800 6 pm gmt 1400 2 pm est edt 1100 11 am pst pdt type “18 gmt to current location” on google for the exact time over 20 channels pump so be ready to participate the exchange will be binance ride the wλve 2018-05-17 20:02:02+00:00 1.0 1258431324 773 5 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ next post is coin name ⭐️ 2018-05-17 17:55:03+00:00 1.0 1258431324 772 10 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:50:22+00:00 1.0 1258431324 771 15 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:45:40+00:00 1.0 1258431324 769 30 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:30:05+00:00 1.0 1258431324 768 1 hour left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:01:36+00:00 1.0 1258431324 767 2 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 16:01:47+00:00 1.0 1258431324 765 its pumpintime the coin to pump is sev exchange yobit market sevbtc link 2018-05-17 15:04:42+00:00 1.0 1258431324 764 its pumpintime the coin to pump is sev exchange yobit market sevbtc link 2018-05-17 15:03:02+00:00 1.0 1258431324 763 3 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 15:01:10+00:00 1.0 1258431324 762 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-05-17 14:59:00+00:00 1.0 1258431324 760 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on yobit 2018-05-17 14:51:00+00:00 1.0 1258431324 759 〽️〽️〽️15 minutes to pumpintime collaborative pump on yobitnet 2018-05-17 14:46:01+00:00 1.0 1258431324 758 〽️〽️30 minutes to yobitnet pumpintime collaborative pump 2018-05-17 14:31:39+00:00 1.0 1258431324 756 wwwyobitnet pump instructions 1 make sure you have btc ready to go in your yobit wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the yobit chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-05-17 13:31:32+00:00 1.0 1258431324 755 〽️2 hours left prepare btc for yobitnet pumpintime pump coming up at 1500 gmt〽️ 2018-05-17 13:01:06+00:00 1.0 1258431324 754 5 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 13:00:24+00:00 1.0 1258431324 752 〽️3 hours left prepare btc for yobitnet pumpintime pump coming up at 1500 gmt〽️ 2018-05-17 12:01:08+00:00 1.0 1258431324 736 20180516binance top 50 min pump volume to reach 50 gain highlighted are commonly pumped 2018-05-16 12:03:10+00:00 1.0 1258431324 716 20180512binance top 50 to 120btc pump buy volume typical for big pump signal 2018-05-12 12:09:22+00:00 1.0 1258431324 713 12 hours until the signal exchange cryptopiaconz time 1500 pm gmt pumpintime4you 2018-05-12 03:01:04+00:00 1.0 1258431324 701 ❗️ the next huge trading signal announcement is here date saturday the 12th of may at 3pm gmt exchange cryptopia expected price increase 130170+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-11 20:43:26+00:00 1.0 1258431324 688 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on cryptopia 2018-05-10 20:51:06+00:00 1.0 1258431324 685 1 hours to go until the pump wwwcryptopiaconz have bitcoin in your account ready 2100 gmt btc trading pair 2018-05-10 20:01:04+00:00 1.0 1258431324 684 just over an hour to the pump 2100 gmt on cryptopia 2018-05-10 19:49:41+00:00 1.0 1258431324 683 wwwcryptopiaconz pump instructions 1 make sure you have btc ready to go in your cryptopia wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the cryptopia chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-05-10 19:31:13+00:00 1.0 1258431324 682 〽️2 hours to go dont miss out 〽️ 〽️huge gains pumpintime pump 2018-05-10 19:01:06+00:00 1.0 1258431324 681 〽️3 hours left 〽️prepare btc for 〽️pumpintime pump coming up at 2100 gmt 2018-05-10 18:01:10+00:00 1.0 1258431324 672 ❗️ the next huge trading signal announcement is here date thursday the 10th of may at 9pm gmt exchange cryptopia expected price increase 150200+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-10 00:09:54+00:00 1.0 1258431324 665 ❗️ the next huge trading signal announcement is here date thursday the 10th of may at 9pm gmt exchange cryptopia expected price increase 150200+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-09 00:27:19+00:00 1.0 1258431324 655 lets pump the coin to pump is hac exchange yobit market hacbtc link 2018-05-07 21:00:11+00:00 1.0 1258431324 654 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-05-07 20:59:05+00:00 1.0 1258431324 652 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on yobit 2018-05-07 20:51:05+00:00 1.0 1258431324 651 〽️〽️30 minutes to yobitnet pumpintime collaborative pump 2018-05-07 20:31:03+00:00 1.0 1258431324 650 1 hours to go until the pump yobitnet have bitcoin in your account ready 2100 gmt btc trading pair 2018-05-07 20:01:05+00:00 1.0 1258431324 649 wwwyobitnet pump instructions 1 make sure you have btc ready to go in your yobit wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the yobit chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-05-07 19:31:05+00:00 1.0 1258431324 648 〽️2 hours to go dont miss out 〽️ 〽️huge gains pumpintime pump 2018-05-07 19:01:05+00:00 1.0 1258431324 647 〽️3 hours left 〽️prepare btc for 〽️pumpintime pump coming up at 2100 gmt 2018-05-07 18:01:19+00:00 1.0 1258431324 646 〽️4 hours to the pumpintime pump on yobitnet at 2100 gmt〽️ 2018-05-07 17:02:26+00:00 1.0 1258431324 644 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-05-07 15:48:51+00:00 1.0 1258431324 643 i have been getting some questions about using the yobits exchange so im going to take a few minutes to answer them 1 how do i register the prosses takes about five minutes its nice and easy here is a link to the site 2 how much to invest with this depends on the individual i go in with about 05 btc this is a good number for me this way i can always hold it for longer when i have to 3 when should i sell again this depends on you im happy with 50+ gains so my 05 turns in to 075 remember to sell in small pieces never sell at a loss we always repump the coins we pick 4 how long should i hold for the longer that you hold for the better the results are hold big win outside investors will not join in if the see that the coin has gone up and then just dumped but tf the coin hold for 10 minutes or more then they will all fomo in if you have any more qustions please feel free to pm us thanks and let make this a awesome pump 2018-05-07 15:00:25+00:00 1.0 1258431324 642 20180507binance to 120btc pump buy range yellow have been pumped by big pump signals already greensupersignals 2018-05-07 14:30:45+00:00 1.0 1258431324 632 binance top 20 to 120btc volume typical of big pump signal 2018-05-06 13:08:12+00:00 1.0 1258431324 611 binance top 51 yellow are big pump signal pumps showing the popular range of their pump volume 2018-04-30 14:37:20+00:00 1.0 1258431324 605 our megacoin signal 29 april 〰16 gmt 12pm est〰 only 1 hour left exchange coinexchangeio countdown timer 2018-04-29 15:02:15+00:00 1.0 1258431324 598 next post will be the name of the coin and a direct link to buy get ready 2018-04-28 19:57:46+00:00 1.0 1258431324 586 coin name ant aragon exchange bittrex ⭕️ buy below 445 sell1 0475 ✅ sell2 0560 ✅ sell3 0690 stop loss 0425 ✅ant coin target 2 completed it reached 600 satoshi 40 gain in four days hold for more next big signal will be on sunday 1800 gmt 2018-04-27 01:24:25+00:00 1.0 1258431324 583 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin cryptopiaconz pumpintime post 2018-04-26 14:59:15+00:00 1.0 1258431324 581 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on cryptopia 2018-04-26 14:51:14+00:00 1.0 1258431324 578 1 hours to go until the pump wwwcryptopiaconz have bitcoin in your account ready 1500 gmt btc trading pair 2018-04-26 14:01:14+00:00 1.0 1258431324 577 wwwcryptopiaconz pump instructions 1 make sure you have btc ready to go in your cryptopia wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the cryptopia chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-04-26 13:31:30+00:00 1.0 1258431324 576 〽️2 hours to go dont miss out 〽️ 〽️huge gains pumpintime pump 2018-04-26 13:01:27+00:00 1.0 1258431324 575 〽️3 hours left 〽️prepare btc for 〽️pumpintime pump coming up at 1500 gmt 2018-04-26 12:03:49+00:00 1.0 1258431324 572 12 hours until the signal exchange cryptopiaconz time 1500 pm gmt pumpintime4you 2018-04-26 03:01:16+00:00 1.0 1258431324 571 pumpintime collab copump tomorrow date 2642018 time 1500 pm gmt exchange wwwcryptopiaconz expected gain 140+ you will want to have your btc available in cryptopia to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in best method is to click down in the chart to ensure a buy dont worry the exchange will give you the best price once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit troll the chat box build excitement get others to come in and continue to raise the price dont sell under your buy always make profit if you miss a sell dont worry these coins are pumped often we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-04-25 15:01:09+00:00 1.0 1258431324 565 only 3 hours left till the given signal be ready next post will be the exchange to buy 2018-04-22 14:59:23+00:00 1.0 1258431324 498 by request the pumpintime pump tomorrow will be at a new time 1800 gmt still on yobit more participation more profit 2018-04-16 20:28:38+00:00 1.0 1258431324 487 lets pump the coin to pump is zrx exchange yobitnet target 200 1500 with little volume this coin can go crazy market zrxbtc link 2018-04-16 15:00:43+00:00 1.0 1258431324 486 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-04-16 14:57:05+00:00 1.0 1258431324 484 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on yobit 2018-04-16 14:49:11+00:00 1.0 1258431324 483 〽️〽️〽️15 minutes to pumpintime collaborative pump on yobitnet 2018-04-16 14:47:11+00:00 1.0 1258431324 482 〽️〽️30 minutes to yobitnet pumpintime collaborative pump be sure to be logged in to yobit 2018-04-16 14:29:38+00:00 1.0 1258431324 480 yobitio yobitnet pump instructions 1 make sure you have btc ready to go in your yobit wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders x2 the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the yobit chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 35x the original value could go as high as x10 if we all hodl 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc or apparently yobitio has faster trasactions to wallets 2018-04-16 13:29:06+00:00 1.0 1258431324 478 〽️3 hours left prepare btc for yobitnet pumpintime pump coming up at 1500 gmt〽️ 2018-04-16 11:59:08+00:00 1.0 1258431324 453 great news ahead the market is slowly recovering we will return soon to our big and profitable pumps as for now it is the best time to invest into altcoins they are at their deep and they will give us great profits as the market becomes bullish again so tomorrow sunday at around 1800 gmt we will give a signal with a good and perspective coin that will give profits to all of us the signal will be given at the bittrex exchange as one of the best and checked platforms to trade we will use tech and fundamental analysis overview its volume the coindar events and potential to search for the best coin to invest we will give the impulse to it like the bitcoin did a few days ago and the coin will rise a lot the signal will be shared with other signal and pump groups to make the boost effect greater prepare your btc for tomorrows signal at the bittrex exchange 2018-04-14 18:15:55+00:00 1.0 1258431324 424 lets pump the coin to pump is zrx exchange yobitnet target 200 1500 with little volume this coin can go crazy market zrxbtc link 2018-04-13 14:59:05+00:00 1.0 1258431324 393 lets pump the coin to pump is cl exchange yobitnet target 200 1500 with volume this coin can go crazy market clbtc link 2018-04-12 14:59:05+00:00 1.0 1258431324 374 summary blockoptions bopbtc start price 000005668 btc high price 000008499 btc change 50 volume 135 btc we have reached 50 profit this evening it was really good and we are so happy to hear from our members that they made amazing profits with bop coin ✔ wait for the next pump next target is 150⏳ 2018-04-11 18:16:48+00:00 1.0 1258431324 372 pump starts the coin to pump is bop blockoptions bopbtc exchange cryptopia target +100 market url trollbox 2018-04-11 18:00:29+00:00 1.0 1258431324 367 pump results coin draco open sat 000015118 high sat 000034595 volume 014 btc overall gain 128 ✅we hope you all got some extra profits 2018-04-11 17:14:16+00:00 1.0 1258431324 346 pump results coin circ open sat 000008311 high sat 000014766 volume 011 btc overall gain 80 ✅we hope you all got some extra profits 2018-04-09 17:21:01+00:00 1.0 1258431324 239 top 50 gainers for pump potential today on yobitnet like vega for low buy in with insane potential 2018-03-29 13:30:30+00:00 1.0 1258431324 231 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 12 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 06:00:58+00:00 1.0 1258431324 228 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 24 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-28 18:00:37+00:00 1.0 1258431324 224 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 ❗️❗️❗️stay tuned ❗️❗️❗️ ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-28 11:24:16+00:00 1.0 1258431324 221 big co pump announcement 29th march thursday 1800 gmt cryptopia exchange you can find details in the photo below 2018-03-27 19:50:23+00:00 1.0 1258431324 184 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 2 hours left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 16:00:13+00:00 1.0 1258431324 161 analyze coins new pump date march 27th time3pm gmt exchangeyobit infinity team 2018-03-24 23:39:22+00:00 1.0 1258431324 78 get ready for an awesome group pump sunday march 18th 800pm gmt on cryptopia 2018-03-16 13:04:10+00:00 1.0 1258431324 67 next post is coin name trading with btc pair on yobitnet 2018-03-08 15:58:34+00:00 1.0 1258431324 65 5 minutes yobitnet 2018-03-08 15:55:23+00:00 1.0 1258431324 64 pump in 10 minutes date thursday 8th of march hour 1100am est ⌚️ exchange yobit yobitnet 2018-03-08 15:49:45+00:00 1.0 1258431324 63 pump in 15 minutes date thursday 8th of march hour 1100am est ⌚️ exchange yobit yobitnet 2018-03-08 15:45:37+00:00 1.0 1258431324 62 pump in 20 minutes date thursday 8th of march hour 1100am est ⌚️ exchange yobit yobitnet 2018-03-08 15:40:41+00:00 1.0 1258431324 61 pump in 30 minutes date thursday 8th of march hour 1100am est ⌚️ exchange yobit yobitnet 2018-03-08 15:30:03+00:00 1.0 1258431324 60 pump in 45 minutes date thursday 8th of march hour 1100am est ⌚️ exchange yobit yobitnet 2018-03-08 15:14:33+00:00 1.0 1258431324 58 pump in 1 hours date thursday 8th of march hour 1100am est ⌚️ exchange yobit yobitnet 2018-03-08 14:55:11+00:00 1.0 1258431324 57 yobitnet pump 11am est 2018-03-08 14:13:06+00:00 1.0 1258431324 56 quick pump on yobitnet in 2 hours 2018-03-08 13:50:46+00:00 1.0 1258431324 50 keep your eyes on liz for a 2nd pump it looks like someone is prebuying on coinexchange this morning its gone from 1606 to 2294 already buy in and get ready for a 100200 gain 2018-03-01 16:14:26+00:00 1.0 1258431324 40 2 minutes to go exchange yobit get ready 2018-03-01 15:57:46+00:00 1.0 1258431324 37 5 minutes to go exchange yobit dont forget to troll 2018-03-01 15:54:49+00:00 1.0 1258431324 35 10 minutes to go exchange yobit 2018-03-01 15:49:51+00:00 1.0 1258431324 33 have any btc in yobit quick pump 30 minutes exchange is yobit buy hold troll chat let price to up up up and then we all sell 2018-03-01 15:32:00+00:00 1.0 1258431324 17 next holdpump feb 24 500 pm est new york exchange coinexchangeio pair btc ⏳ onlinecountdown coin will be announced here at given time please prepare your balances at coinexchangeio market before pump time if you dont have a coinexchangeio account you can easily register in short time get ready to make big money 2018-02-24 13:05:52+00:00 1.0 1274906467 8723 dot will pump so hard next week just buy i hold for few days follow avax 2021-11-28 23:21:10+00:00 1.0 1274906467 7533 hello everyone we have decided to postpone the upcoming andromeda pump signal due to unusual activity in selected coin out whales want to be 100 sure that our andromeda pump signal must follow +450 spike without any prepump or prebuying the new date will be announced soon sorry for the inconveniences caused to you happy trading stay tuned 2021-10-15 16:02:38+00:00 1.0 1274906467 7527 the wait is almost over set your alerts and be ready for the most awaited andromeda pump signal which is coming for you within next 20 minutes stay tuned 2021-10-15 15:40:41+00:00 1.0 1274906467 7522 2 hours left to guarantee the most profit to all our members our coin will be btc paired on binance so transfer funds to binance and convert to btc in order to participate in upcoming andromeda pump signal stay tuned 2021-10-15 14:09:38+00:00 1.0 1274906467 7521 if a window of opportunity appears you should never pull down the shade the most awaited andromeda pump signal is coming for you get ready with your binance accounts for quick +450 signal 2h left | 4 pm gmt today 2021-10-15 14:08:56+00:00 1.0 1274906467 7516 guys are you ready for some juicy profits market is currently following the bullish trend which is the perfect opportunity for our community to make maximum gains today with the upcoming andromeda pump signal btc has also been showing very strong bullish signs and with the odds in our favour this will be our best chance for maximum gains this pump will be backed by whales and well make sure that it lasts long enough so everyone can benefit from it traders from all over the world will be watching and participating in this pump make sure you do not miss it out if you plan to use your whole balance you can buy using 50 of your balance on market price and use your remaining balance to place buy orders we guarantee that there will be no prepump or prebuying we are expecting 450+ profit from the andromeda pump signal and invite everyone to join us this andromeda pump will be one of our biggest pump and possibly our best pump till date 3h left | andromeda pump signal 2021-10-15 13:31:48+00:00 1.0 1274906467 7505 hello everyone we have been very excited for this moment to bring you andromeda pump signal backed by both ta and fa market has been showing many bullish signs and we cannot miss this chance as the market is also on our side we will make sure that there is no prepump or pre buying of the coin so you all wont miss be missing the chance we have spent many hours preparing for this moment and will be expecting upto 450 price spike and upto 100 million volume in the first few minutes from the andromeda pump signal and invite everyone to join us we have very high expectations from the coin as the market will also be on our side all you have to do is just buy the coin as soon as we share the signal here and very soon after that we will bring fomo into the coin smashing our targets in a matter of time we have scheduled up our andromeda pump signal for tomorrow details date friday october 15th time 1600 pm gmt exchange binance pair coinbtc advantage free for all stay tuned | happy trading 2021-10-14 23:06:20+00:00 1.0 1274906467 5804 do not miss chr buy some big pump soon 2021-08-15 12:29:19+00:00 1.0 1274906467 2625 looks like btc is heating motors for a pump next hours towards 63k 65k 68k 2021-03-19 21:34:16+00:00 1.0 1274906467 1941 as i said just buy and hold if you cant hold then dont buy it cvc it will be pump x2x3 from now 2021-02-27 21:01:41+00:00 1.0 1274906467 1535 looks like btc is heating motors for a pump towards 50k next hours 2021-02-14 21:06:53+00:00 1.0 1320553215 1643 next coin will be pump hard in this channel pquxazawzdrl 2021-06-02 13:27:52+00:00 1.0 1320553215 1609 icx entry 26 265 stoploss 235 target 29 4 5 6 i think you should buy icx reason eos pumped bch pumped but icx not chart is beautiful form h s pattern alo alo a e nên mua hold e này nhé eos pump rồi bch cũng pump rồi chỉ có icx là coin cũ mà chưa pump thôi chart tích lũy khá đẹp mô hình vai đầu vai ngược luôn nhé anh em múc 2021-05-10 03:05:45+00:00 1.0 1320553215 1368 after fet i think tomo should be the next pump coin 2020-05-26 07:07:23+00:00 1.0 1320553215 1096 less than 10 minutes before our solo pump exchange binance live countdown 2019-10-03 14:50:11+00:00 1.0 1320553215 1095 less than 30 minutes before our solo pump exchange binance live countdown 2019-10-03 14:30:21+00:00 1.0 1320553215 1094 less than 1 hour before our solo pump exchange binance live countdown 2019-10-03 14:00:03+00:00 1.0 1320553215 1091 less than 05 hours before our solo pump exchange binance live countdown 2019-10-03 10:04:27+00:00 1.0 1320553215 1088 hi guys after the success of our last pump many members ask us to make more pumps signals our team also see that alt season is coming so the next pump will be scheduled ⏳ time and date thursday tomorrow 03th october at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-10-02 15:35:01+00:00 1.0 1320553215 1063 less than 10 minutes before our solo pump exchange binance live countdown 2019-09-12 14:51:26+00:00 1.0 1320553215 1062 less than 30 minutes before our solo pump exchange binance live countdown 2019-09-12 14:30:02+00:00 1.0 1320553215 1061 less than 01 hour before our solo pump exchange binance live countdown 2019-09-12 13:59:49+00:00 1.0 1320553215 1060 less than 05 hours before our solo pump exchange binance live countdown 2019-09-12 10:16:42+00:00 1.0 1320553215 1058 hi guys alt season is coming its the time for us to buy more and more altcoin now the next pump will be scheduled ⏳ time and date thursday tomorrow 12th september at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-09-11 09:06:25+00:00 1.0 1320553215 969 less than 10 minutes before our solo pump exchange binance live countdown 2019-07-29 14:50:09+00:00 1.0 1320553215 968 less than 30 minutes before our solo pump exchange binance live countdown 2019-07-29 14:30:48+00:00 1.0 1320553215 967 less than 01 hour before our solo pump exchange binance live countdown 2019-07-29 14:00:46+00:00 1.0 1320553215 966 less than 03 hours before our solo pump exchange binance live countdown 2019-07-29 12:02:16+00:00 1.0 1320553215 963 less than 12 hour before our solo pump exchange binance live countdown 2019-07-29 03:22:20+00:00 1.0 1320553215 961 hi guys btc dump so hard and most of alt season is in the bottom now its time for us to buy cheap altcoin so the next pump will be scheduled ⏳ time and date monday tomorrow 29th july at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-07-28 08:42:13+00:00 1.0 1320553215 957 unbelievale 35 btc sell wall of link at 24800 sts is destroyed in only 5 minutes time for it go to the moon im sure it will reach our target 2019-07-24 15:11:25+00:00 1.0 1320553215 905 less than 10 minutes before our solo pump exchange binance live countdown 2019-06-17 14:49:40+00:00 1.0 1320553215 904 less than 30 minutes before our solo pump exchange binance live countdown 2019-06-17 14:30:52+00:00 1.0 1320553215 903 less than 01 hour before our solo pump exchange binance live countdown 2019-06-17 14:00:46+00:00 1.0 1320553215 902 less than 02 hour before our solo pump exchange binance live countdown 2019-06-17 13:05:28+00:00 1.0 1320553215 901 hi guys btc pump so hard and alt season is coming its the time for us to buy more and more altcoin now the next pump will be scheduled ⏳ time and date monday tomorrow 17th june at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-06-16 14:14:05+00:00 1.0 1320553215 886 less than 02 hour before our solo pump exchange binance live countdown 2019-06-05 13:07:34+00:00 1.0 1320553215 885 lets see last pump again guys although btc dropped so hard and all of market are red but our ppt is still strong and green and now its the time for us to go shopping cheap altcoin today so the next pump will be scheduled ⏳ time and date today 05th june at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-06-05 03:17:06+00:00 1.0 1320553215 872 less than 10 minutes before our solo pump exchange binance live countdown 2019-05-31 14:50:48+00:00 1.0 1320553215 871 less than 30 minutes before our solo pump exchange binance live countdown 2019-05-31 14:30:33+00:00 1.0 1320553215 870 less than 01 hour before our solo pump exchange binance live countdown 2019-05-31 14:02:56+00:00 1.0 1320553215 869 less than 03 hours before our solo pump exchange binance live countdown 2019-05-31 12:01:03+00:00 1.0 1320553215 868 hi guys btc pump so hard and alt season is coming its the time for us to buy more and more altcoin now the next pump will be scheduled ⏳ time and date friday tomorrow 31th may at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-05-30 11:55:30+00:00 1.0 1320553215 859 less than 05 hours before our solo pump exchange binance live countdown 2019-05-21 10:01:36+00:00 1.0 1320553215 856 hi guys btc is ready to drop it will make altcoin drop hard so its oppurtunity for us to buy cheap altcoin again prepare your btc to buy sale off altcoin tomorrow the next pump will be scheduled ⏳ time and date tuesday tomorrow 21th may at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-05-20 13:06:31+00:00 1.0 1320553215 841 less than 10 minutes before our solo pump exchange binance live countdown 2019-05-13 14:51:31+00:00 1.0 1320553215 840 less than 30 minutes before our solo pump exchange binance live countdown 2019-05-13 14:29:46+00:00 1.0 1320553215 839 less than 01 hour before our solo pump exchange binance live countdown 2019-05-13 14:02:59+00:00 1.0 1320553215 838 less than 03 hours before our solo pump exchange binance live countdown 2019-05-13 12:12:26+00:00 1.0 1320553215 837 less than 12 hours before our solo pump exchange binance live countdown 2019-05-13 03:00:27+00:00 1.0 1320553215 835 pump result rdn start price 4220 sat weve reached 4950 sat profit 173 although most of altcoin dumped so much yesterday rdn pumped so hard near 70 btc volume joined our pump and 173 profit in the red market is great weve also received many positive comments from members who made between 10 and 17 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target the next pump will be scheduled ⏳ time and date monday 13th may at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-05-11 13:57:39+00:00 1.0 1320553215 832 less than 10 minutes before our solo pump exchange binance live countdown 2019-05-10 15:50:24+00:00 1.0 1320553215 831 less than 30 minutes before our solo pump exchange binance live countdown 2019-05-10 15:30:02+00:00 1.0 1320553215 830 less than 1 hour before our solo pump exchange binance live countdown 2019-05-10 15:00:36+00:00 1.0 1320553215 829 less than 02 hours before our solo pump exchange binance live countdown 2019-05-10 14:02:39+00:00 1.0 1320553215 828 less than 05 hours before our solo pump exchange binance live countdown 2019-05-10 11:19:54+00:00 1.0 1320553215 826 less than 12 hours before our solo pump exchange binance live countdown 2019-05-10 03:16:10+00:00 1.0 1320553215 825 hi guys btc pump so hard all of altcoins are in the bottom now so its the time for us to buy the cheap altcoin the next pump will be scheduled ⏳ time and date friday tomorrow 10th may at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2019-05-09 13:38:26+00:00 1.0 1320553215 721 coin pump report coin pump signal update evx pumped on 08th january lets check evx chart again as you can see evx price have increased according to the chart we have provided before it reached all of our target 60 profit is great congratulation for everyone who hold it ❤️❤️❤️ 2019-01-19 03:24:01+00:00 1.0 1320553215 717 the next pump will be scheduled ⏳ time and date monday tomorrow 14th january at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown for anyone want to join bittrex pump please check link below 2019-01-13 12:42:31+00:00 1.0 1320553215 710 less than 10 minutes before our solo pump exchange binance live countdown 2019-01-08 15:50:39+00:00 1.0 1320553215 709 less than 30 minutes before our solo pump exchange binance live countdown 2019-01-08 15:30:12+00:00 1.0 1320553215 708 less than 1 hour before our solo pump exchange binance live countdown 2019-01-08 15:00:38+00:00 1.0 1320553215 707 less than 3 hours before our solo pump exchange binance live countdown 2019-01-08 13:13:55+00:00 1.0 1320553215 704 the next pump will be scheduled ⏳ time and date tuesday tomorrow 08th january at 0400 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for anyone want to join bittrex pump please check link below 2019-01-07 15:29:38+00:00 1.0 1320553215 697 coin hc target 1 2760 target 2 2980 hc looks good right now it wants to break out our triangle and go to the moon its on the strong support at this time time for it wake up its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-12-27 16:59:57+00:00 1.0 1320553215 695 less than 10 minutes before our solo pump exchange binance live countdown 2018-12-27 16:50:07+00:00 1.0 1320553215 694 less than 30 minutes before our solo pump exchange binance live countdown 2018-12-27 16:30:00+00:00 1.0 1320553215 693 less than 1 hour before our solo pump exchange binance live countdown 2018-12-27 15:59:22+00:00 1.0 1320553215 692 less than 3 hours before our solo pump exchange binance live countdown 2018-12-27 14:20:32+00:00 1.0 1320553215 690 the next pump will be scheduled ⏳ time and date thursday 27th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown for anyone want to join bittrex pump please check link below 2018-12-26 04:07:18+00:00 1.0 1320553215 679 less than 16 hours before our solo pump exchange binance live countdown 2018-12-19 01:12:53+00:00 1.0 1320553215 678 hello guys the pump has been cancelled because our team cant find any good coins for our pump today most of them having huge sell wall sorry for your inconvenience the next pump will be scheduled ⏳ time and date wednesday 19th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2018-12-17 14:59:58+00:00 1.0 1320553215 677 less than 3 hours before our solo pump exchange binance live countdown 2018-12-17 14:21:48+00:00 1.0 1320553215 676 less than 12 hours before our solo pump exchange binance live countdown 2018-12-17 05:07:10+00:00 1.0 1320553215 675 the next pump will be scheduled ⏳ time and date monday 17th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 live countdown 2018-12-16 13:50:44+00:00 1.0 1320553215 670 coin evx target 1 7200 target 2 8300 evx looks good right now it wants to break out our triangle and go to the moon its on the strong support at this time time for it wake up its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-12-10 17:00:01+00:00 1.0 1320553215 668 less than 10 minutes before our solo pump exchange binance live countdown 2018-12-10 16:50:09+00:00 1.0 1320553215 667 less than 30 minutes before our solo pump exchange binance live countdown 2018-12-10 16:30:03+00:00 1.0 1320553215 666 less than 1 hour before our solo pump exchange binance live countdown 2018-12-10 15:59:59+00:00 1.0 1320553215 665 less than 3 hours before our solo pump exchange binance live countdown 2018-12-10 14:00:23+00:00 1.0 1320553215 663 less than 15 hours before our solo pump exchange binance live countdown 2018-12-10 02:17:41+00:00 1.0 1320553215 662 pump result oax start price 2260 sat weve reached 2750 sat profit 22 although btc and most of altcoin dumped so much yesterday oax pumped so hard near 100 btc volume joined our pump and 22 profit in the red market is great as i promised it ranked top 2 of binance for a long time and now its up again weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target the next pump will be scheduled ⏳ time and date monday 10th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 2018-12-08 08:19:14+00:00 1.0 1320553215 657 less than 10 minutes before our solo pump exchange binance live countdown 2018-12-07 16:50:12+00:00 1.0 1320553215 656 less than 30 minutes before our solo pump exchange binance live countdown 2018-12-07 16:30:23+00:00 1.0 1320553215 655 less than 1 hour before our solo pump exchange binance live countdown 2018-12-07 16:01:42+00:00 1.0 1320553215 654 less than 3 hours before our solo pump exchange binance live countdown 2018-12-07 14:03:13+00:00 1.0 1320553215 653 less than 12 hours before our solo pump exchange binance live countdown 2018-12-07 04:46:18+00:00 1.0 1320553215 652 the next pump will be scheduled ⏳ time and date friday 07th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 2018-12-05 15:15:02+00:00 1.0 1320553215 651 hello guys we are truly sorry but we have to cancel our pump again the coin we picked today already pumping hard right now so we have no choice but cancel our pump we dont want you guys think we do prepump on this coin thank for your understanding we really sorry very much 2018-12-04 16:49:12+00:00 1.0 1320553215 650 less than 30 minutes before our solo pump exchange binance live countdown 2018-12-04 16:31:01+00:00 1.0 1320553215 649 less than 1 hour before our solo pump exchange binance live countdown 2018-12-04 16:00:14+00:00 1.0 1320553215 648 less than 3 hours before our solo pump exchange binance live countdown 2018-12-04 14:00:27+00:00 1.0 1320553215 647 less than 11 hours before our solo pump exchange binance live countdown 2018-12-04 06:19:36+00:00 1.0 1320553215 643 hello guys we are sorry to let you know that the coin has been picked for our pump today was pumped before we are giving signal so we have to cancel our pump because no other coins are good enough right now sorry for your inconvenience the next pump will be scheduled ⏳ time and date tuesday 04th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 2018-11-30 16:36:23+00:00 1.0 1320553215 642 less than 1 hour before our solo pump exchange binance live countdown 2018-11-30 16:00:39+00:00 1.0 1320553215 641 less than 3 hours before our solo pump exchange binance live countdown 2018-11-30 14:08:35+00:00 1.0 1320553215 639 less than 13 hours before our solo pump exchange binance live countdown 2018-11-30 04:11:28+00:00 1.0 1320553215 637 pump result rdn start price 5660 sat weve reached 6950 sat profit 23 as i said yesterday is the day of rdn it pumped so hard near 100 btc volume joined our pump as i promised it ranked top 1 of binance for a long time and now its up again weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target the next pump will be scheduled ⏳ time and date friday 30th november at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 2018-11-28 10:50:45+00:00 1.0 1320553215 631 less than 10 minutes before our solo pump exchange binance live countdown 2018-11-27 16:50:41+00:00 1.0 1320553215 630 less than 30 minutes before our solo pump exchange binance live countdown 2018-11-27 16:30:35+00:00 1.0 1320553215 629 less than 1 hour before our solo pump exchange binance live countdown 2018-11-27 16:01:05+00:00 1.0 1320553215 628 less than 5 hours before our solo pump exchange binance live countdown 2018-11-27 12:00:24+00:00 1.0 1320553215 627 1 day left before our solo pump exchange binance live countdown 2018-11-26 16:34:14+00:00 1.0 1320553215 626 hello guys the pump has been cancelled because our team cant find any good coins for our pump today most of them having huge sell wall sorry for your inconvenience the next pump will be scheduled ⏳ time and date tuesday 27th november at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 2018-11-23 13:52:29+00:00 1.0 1320553215 625 1 day left before our solo pump exchange binance live countdown 2018-11-22 16:40:15+00:00 1.0 1320553215 624 pump announcement the next pump will be scheduled ⏳ time and date friday 23th november at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-11-21 15:24:01+00:00 1.0 1320553215 623 pump result evx start price 6050 sat weve reached 7493 sat profit 24 as i said yesterday is the day of evx it pumped so hard near 100 btc volume joined our pump 24 profit in the red market is wonderful weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target please invite more peoples to our website and make this pump great again for a live countdown refer to our website 2018-11-21 07:24:43+00:00 1.0 1320553215 617 less than 10 minutes before our solo pump exchange binance live countdown 2018-11-20 16:50:19+00:00 1.0 1320553215 616 less than 30 minutes before our solo pump exchange binance live countdown 2018-11-20 16:30:04+00:00 1.0 1320553215 615 less than 1 hour before our solo pump exchange binance live countdown 2018-11-20 16:00:14+00:00 1.0 1320553215 614 less than 3 hours before our solo pump exchange binance live countdown 2018-11-20 14:18:26+00:00 1.0 1320553215 613 less than 7 hours before our solo pump exchange binance live countdown 2018-11-20 10:01:06+00:00 1.0 1320553215 612 1 day left before our solo pump exchange binance live countdown 2018-11-19 16:33:29+00:00 1.0 1320553215 611 pump announcement the next pump will be scheduled ⏳ time and date tuesday 20th november at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-11-17 10:16:27+00:00 1.0 1320553215 608 coin brd target 1 6500 target 2 7600 brd is on the strong support at this time it looks so good now time for it go to the moon its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-11-13 17:00:00+00:00 1.0 1320553215 606 less than 10 minutes before our solo pump exchange binance live countdown 2018-11-13 16:50:02+00:00 1.0 1320553215 605 less than 30 minutes before our solo pump exchange binance live countdown 2018-11-13 16:29:43+00:00 1.0 1320553215 604 less than 1 hour before our solo pump exchange binance live countdown 2018-11-13 15:59:46+00:00 1.0 1320553215 603 less than 3 hours before our solo pump exchange binance live countdown 2018-11-13 14:12:29+00:00 1.0 1320553215 602 less than 7 hours before our solo pump exchange binance live countdown 2018-11-13 09:53:57+00:00 1.0 1320553215 601 1 day left before our solo pump exchange binance live countdown 2018-11-12 15:32:01+00:00 1.0 1320553215 592 pump announcement the next pump will be scheduled ⏳ time and date tuesday 13th november at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-11-06 09:08:16+00:00 1.0 1320553215 576 dear members this is an important message for all of you we are incredibly sorry to tell you that well be cancelling tonights pump first off we would like to apologize for getting this information out this late we think that the current market situation is not a healthy one to pump in there are no good coin at this time and we are sure that if we pump today the coin we choose will dump quickly we hope you all understand this decision and we think it is for the better for all of you as pumping right now is a risky move thanks a lot for the ongoing support for our team we hope to bring more great pumps to you very soon your pump team 2018-10-18 14:43:34+00:00 1.0 1320553215 575 less than 3 hours before our solo pump exchange binance live countdown 2018-10-18 14:04:03+00:00 1.0 1320553215 574 less than 12 hours before our solo pump exchange binance live countdown 2018-10-18 05:11:53+00:00 1.0 1320553215 573 pump announcement the next pump will be scheduled ⏳ time and date tomorrow 18th october at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-10-17 10:41:26+00:00 1.0 1320553215 548 coin brd target 1 7600 target 2 9200 brd looks bullish now break out confirm and its on the strong support at this time time for it go to the moon its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-10-08 14:00:01+00:00 1.0 1320553215 546 less than 10 minutes before our solo pump exchange binance live countdown 2018-10-08 13:49:59+00:00 1.0 1320553215 545 less than 30 minutes before our solo pump exchange binance live countdown 2018-10-08 13:30:03+00:00 1.0 1320553215 544 less than 1 hour before our solo pump exchange binance live countdown 2018-10-08 13:00:11+00:00 1.0 1320553215 542 less than 3 hours before our solo pump exchange binance live countdown 2018-10-08 11:00:11+00:00 1.0 1320553215 540 pump announcement the next pump will be scheduled ⏳ time and date today 08th october at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-10-08 01:27:14+00:00 1.0 1320553215 521 pump announcement the next pump will be scheduled ⏳ time and date tomorrow 05th october at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-10-04 12:16:16+00:00 1.0 1320553215 505 less than 10 minutes before our solo pump exchange binance live countdown 2018-09-27 13:50:25+00:00 1.0 1320553215 504 less than 30 minutes before our solo pump exchange binance live countdown 2018-09-27 13:29:58+00:00 1.0 1320553215 503 less than 1 hour before our solo pump exchange binance live countdown 2018-09-27 13:00:16+00:00 1.0 1320553215 502 less than 3 hours before our solo pump exchange binance live countdown 2018-09-27 11:00:37+00:00 1.0 1320553215 500 pump announcement the next pump will be scheduled ⏳ time and date tomorrow 27th september at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-09-26 16:24:19+00:00 1.0 1320553215 490 big pump signal coin oax target 1 3100 target 2 3300 oax looks bullish now its on the support at this time time for it wake up its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-09-25 14:00:01+00:00 1.0 1320553215 488 less than 10 minutes before our solo pump exchange binance live countdown 2018-09-25 13:50:06+00:00 1.0 1320553215 487 less than 30 minutes before our solo pump exchange binance live countdown 2018-09-25 13:30:06+00:00 1.0 1320553215 486 less than 1 hour before our solo pump exchange binance live countdown 2018-09-25 13:00:01+00:00 1.0 1320553215 485 less than 3 hours before our solo pump exchange binance live countdown 2018-09-25 11:00:34+00:00 1.0 1320553215 484 pump announcement as you can see altcoin rises up so much in near some days some altcoins pumped about 50 100 now its the time of altcoin so we decide to schedule a new pump to help you make more profit ⏳ time and date tuesday 25th september at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-09-24 15:17:06+00:00 1.0 1320553215 462 big pump signal coin icn target 1 7600 target 2 9700 icn looks bullish now its on the support at this time time for it wake up its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-09-11 15:30:05+00:00 1.0 1320553215 459 less than 10 minutes before our solo pump exchange binance live countdown 2018-09-11 15:20:38+00:00 1.0 1320553215 458 less than 30 minutes before our solo pump exchange binance live countdown 2018-09-11 15:01:08+00:00 1.0 1320553215 457 less than 1 hour before our solo pump exchange binance live countdown 2018-09-11 14:29:46+00:00 1.0 1320553215 456 less than 3 hours before our solo pump exchange binance live countdown 2018-09-11 12:30:20+00:00 1.0 1320553215 455 pump announcement although btc drops so hard altcoin still rises up btc doesnt affect altcoin at this time now its the time of altcoin in this kind of market it would be easy to take profits from good alts instead of bitcoin so we decided to schedule a new pump to help members make more profit ⏳ time and date tuesday 11th september at 0330 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-09-10 16:13:31+00:00 1.0 1320553215 447 big pump signal coin ast target 1 1490 target 2 1650 ast look bullish at this time it want to break out the triangle if it breaks out the triangle it will go to the moon its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-09-07 15:30:06+00:00 1.0 1320553215 444 less than 10 minutes before our solo pump exchange binance live countdown 2018-09-07 15:20:28+00:00 1.0 1320553215 443 less than 30 minutes before our solo pump exchange binance live countdown 2018-09-07 15:00:44+00:00 1.0 1320553215 442 less than 1 hour before our solo pump exchange binance live countdown 2018-09-07 14:31:45+00:00 1.0 1320553215 441 less than 3 hours before our solo pump exchange binance live countdown 2018-09-07 12:30:44+00:00 1.0 1320553215 439 pump announcement although btc drops so hard altcoin still rises up btc doesnt affect altcoin at this time now its the time of altcoin in this kind of market it would be easy to take profits from good alts instead of bitcoin so we decided to schedule a new pump to help members make more profit ⏳ time and date friday 07th september at 0330 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-09-06 15:54:58+00:00 1.0 1320553215 428 big pump signal coin rdn target 1 8990 target 2 11000 double bottom pattern confirmed neckline was broken its going to next target this chart looks so sexy at this time its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-09-04 15:30:00+00:00 1.0 1320553215 426 less than 10 minutes before our solo pump exchange binance live countdown 2018-09-04 15:20:14+00:00 1.0 1320553215 425 less than 30 minutes before our solo pump exchange binance live countdown 2018-09-04 15:00:04+00:00 1.0 1320553215 424 less than 1 hour before our solo pump exchange binance live countdown 2018-09-04 14:30:07+00:00 1.0 1320553215 423 less than 5 hours before our solo pump exchange binance live countdown 2018-09-04 10:30:15+00:00 1.0 1320553215 420 pump announcement the market shows bullish and volume also increases in this kind of market it would be easy to take profits from good alts instead of bitcoin so we decided to schedule a new pump to help members make more profit ⏳ time and date tuesday 04th september at 0330 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 for a live countdown refer to our website please invite more peoples to our website and make this pump greater and greater 2018-09-03 11:15:12+00:00 1.0 1320553215 400 dear member as our team analyze btc is ready to drop in some next hours its risky to do a pump at this time so we have to cancel this pump we are so excited for this pump just like you however we think it is not smart to pump right now the market isnt good at this time we want to make sure this pump is a succes and do not think it will be in these current market conditions we are really sorry we will schedule next pump soon 2018-08-28 15:55:13+00:00 1.0 1320553215 399 less than 30 minutes before our solo pump exchange binance live countdown 2018-08-28 15:31:57+00:00 1.0 1320553215 398 less than 1 hour before our solo pump exchange binance live countdown 2018-08-28 15:00:33+00:00 1.0 1320553215 397 less than 3 hours before our solo pump exchange binance we will find the best coin possible with strong technical and fundamental analysis and we will share the targets of that coin too here live countdown 2018-08-28 13:03:56+00:00 1.0 1320553215 395 coin pump report coin pump signal update dlt pumped on 23th august lets check dltchart again as you can see dlt price have increased according to the chart we have provided before it broke out our triangle and its going to our target congratulation for everyone who hold it ❤️❤️❤️ 2018-08-28 10:59:04+00:00 1.0 1320553215 394 coin pump report coin pump signal update rdn pumped on 21th august lets check rdn chart again as you can see rdn price have increased according to the chart we have provided before it reached our short term target congratulation for everyone who hold it ❤️❤️❤️ 2018-08-28 10:51:03+00:00 1.0 1320553215 391 less than 12 hours before our solo pump exchange binance live countdown 2018-08-28 04:06:02+00:00 1.0 1320553215 389 pump announcement dear members the market is green again altcoin season is coming its the best time to do a pump so we decided to schedule a new pump to help members make more profit ⏳ time and date tuesday 28th august at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on tuesday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-08-27 03:34:29+00:00 1.0 1320553215 379 big pump signal coin dlt target 1 793 target 2 858 chart of dlt is beautiful at this time it want to break out our triangle if it break out this triangle it will go to the moon its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-08-23 16:00:00+00:00 1.0 1320553215 377 less than 10 minutes before our solo pump exchange binance live countdown 2018-08-23 15:50:12+00:00 1.0 1320553215 375 less than 30 minutes before our solo pump exchange binance live countdown 2018-08-23 15:30:22+00:00 1.0 1320553215 374 less than 1 hour before our solo pump exchange binance live countdown 2018-08-23 15:00:03+00:00 1.0 1320553215 373 less than 2 hours before our solo pump exchange binance live countdown 2018-08-23 14:00:01+00:00 1.0 1320553215 372 less than 5 hours before our solo pump exchange binance live countdown 2018-08-23 11:00:02+00:00 1.0 1320553215 370 pump announcement dear members the market has stabilized in recent days altcoin has adjusted and everything is almost at the bottom this is a good time for us to do a pump so we decided to schedule a new pump to help you make more profit ⏳ time and date tomorrow 23th august at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on thursday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-08-22 16:17:59+00:00 1.0 1320553215 365 pump result rdn start price 4895 sat weve reached 5966 sat profit 219 although rdn rises up so high and it gains a lot of outside volume we cannot say its a good pump it cannot keep high price for a long time auto bot seller is everywhere on binance exchange it makes our signal cannot rank top 1 for a long time we feel unhappy about it as i said chart of rdn look so sexy i think it will continue to rise up in the near future next time well do even better for sure a few people say it was prepumped but it was definitely not the reason you can see a green candle at 035959pm utc time is because the coin name was shared at that time one second too early as you can see in the timestamp of the signal posted here now back to focus on btc so i can keep you guys updated thanks hope you made a profit 2018-08-21 16:34:32+00:00 1.0 1320553215 362 big pump signal coin rdn target 1 6500 target 2 9000 rdn is on the strong support at this time it also has double bottom pattern on 1 day chart this chart looks so sexy at this time its also a very good project with a great dev team time to buy it and get more and more profit in the future 2018-08-21 16:00:43+00:00 1.0 1320553215 360 less than 10 minutes before our solo pump exchange binance live countdown 2018-08-21 15:50:08+00:00 1.0 1320553215 359 less than 30 minutes before our solo pump exchange binance live countdown 2018-08-21 15:30:05+00:00 1.0 1320553215 358 less than 1 hours before our solo pump exchange binance live countdown 2018-08-21 15:00:08+00:00 1.0 1320553215 357 less than 2 hours before our solo pump exchange binance live countdown 2018-08-21 14:00:35+00:00 1.0 1320553215 356 less than 6 hours before our solo pump exchange binance live countdown 2018-08-21 10:55:33+00:00 1.0 1320553215 353 pump announcement dear members the market is green again altcoin season is coming its the best time to do a pump so we decided to schedule a new pump to help members make more profit ⏳ time and date tuesday 21th august at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on tuesday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-08-20 17:37:56+00:00 1.0 1320553215 351 pump result oax start price 2570 sat weve reached 3124 sat profit 215 oax pump was good a lot of outside volume chart is already dip and price still up after pump were working on better pumps and more optimized coin selection stay tuned for updates next pump will be announced soon 2018-08-18 02:50:04+00:00 1.0 1320553215 347 big pump signal coin oax target 1 3300 target 2 4000 oax is on the strong support at this time its a good project with a great dev team time for it wake up it will go to the moon soon 2018-08-17 16:00:01+00:00 1.0 1320553215 345 less than 10 minutes before our solo pump exchange binance live countdown 2018-08-17 15:50:10+00:00 1.0 1320553215 344 less than 30 minutes before our solo pump exchange binance live countdown 2018-08-17 15:30:23+00:00 1.0 1320553215 343 less than 1 hour before our solo pump exchange binance live countdown 2018-08-17 15:03:16+00:00 1.0 1320553215 342 less than 2 hours before our solo pump exchange binance live countdown 2018-08-17 14:00:37+00:00 1.0 1320553215 341 less than 6 hours before our solo pump exchange binance live countdown 2018-08-17 10:03:06+00:00 1.0 1320553215 339 pump announcement dear members the market is green again altcoin season is coming its the best time to do a pump today so we decided to schedule a new pump to help members make more profit ⏳ time and date today 17th august at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on today at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-08-17 02:52:14+00:00 1.0 1320553215 335 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date tuesday 14th august at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on tuesday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-08-13 15:29:53+00:00 1.0 1320553215 332 helo guys we were really disappointed with the result today we tried to find the best coin for the pump after 2 days but no coin really good all coin has lots of sell orders bot another reason is bitcoin is dumping so not many members want to join our pump today this week we will have some rest while the market is unstable we will have a pump schedule on the next tuesday 2018-08-08 16:43:10+00:00 1.0 1320553215 331 big pump signal coin icn buy and hold it today will be the day of icn 2018-08-08 16:00:01+00:00 1.0 1320553215 329 less than 05 minutes before our solo pump exchange binance live countdown 2018-08-08 15:55:07+00:00 1.0 1320553215 328 less than 30 minutes before our solo pump exchange binance live countdown 2018-08-08 15:30:03+00:00 1.0 1320553215 327 less than 1 hours before our solo pump exchange binance live countdown 2018-08-08 15:03:33+00:00 1.0 1320553215 326 less than 6 hours before our solo pump exchange binance live countdown 2018-08-08 10:08:47+00:00 1.0 1320553215 324 dear members just like the last pump before we have to postpone this pump we are so excited for this pump just like you however we think it is not smart to pump right now the market isnt good at this time we want to make sure this pump is a succes and do not think it will be in these current market conditions we are really sorry we will postpone our pump to next day and see if market will stable again next pump will be exchange binance date 08082018 time 400 pm gmt big pump group 2018-08-07 15:31:26+00:00 1.0 1320553215 323 less than 6 hours before our solo pump exchange binance live countdown 2018-08-07 10:00:18+00:00 1.0 1320553215 320 dear member btc is unstable at this time maybe btc will drop in the next few hours so we have to postpone this pump we are so excited for this pump just like you however we think it is not smart to pump right now the market isnt good at this time we want to make sure this pump is a succes and do not think it will be in these current market conditions we are really sorry we will postpone our pump to next day and see if market will stable again next pump will be exchange binance date 07082018 time 400 pm gmt as usual were doing the pump without other channels to avoid other channel admins dumping on us like last times there wouldnt be any prepump guaranteed the pump is free for all no advantage for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-08-06 13:34:05+00:00 1.0 1320553215 319 less than 5 hours before our solo pump exchange binance live countdown 2018-08-06 11:05:41+00:00 1.0 1320553215 317 pump announcement dear members as you see btc dumped hard yesterday but altcoin didnt drop most of them rose up so much they tell us that altcoin season is coming so we decided to schedule a new pump to help members make more profit ⏳ time and date monday 06 august at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on monday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-08-05 11:21:19+00:00 1.0 1320553215 304 big pump signal coin oax buy and hold it today will be the day of oax 2018-07-31 16:00:02+00:00 1.0 1320553215 302 less than 05 minutes before our solo pump exchange binance live countdown 2018-07-31 15:55:19+00:00 1.0 1320553215 301 less than 30 minutes before our solo pump exchange binance live countdown 2018-07-31 15:30:26+00:00 1.0 1320553215 300 less than 1 hours before our solo pump exchange binance live countdown 2018-07-31 15:00:10+00:00 1.0 1320553215 299 less than 6 hours before our solo pump exchange binance to prevent the problem with our website we will post coin name only in our telegram group live countdown 2018-07-31 10:00:56+00:00 1.0 1320553215 298 pump announcement dear members as our team did some analyze next week is the week of altcoins most of them will pump hard so we decided to schedule a new pump to help members make more profit ⏳ time and date tuesday 31 july at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on tuesday at 0400 pm gmt utc time to prevent the problem with our website we will post coin name only in our telegram group for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-07-29 14:25:50+00:00 1.0 1320553215 293 hi guys some members sent pm to us telling that we was do prepump no we not that stupid we was checked and the reason was our website it was showed coin name a few seconds before our post on telegram we will fix this bug as soon as possible and next time we will just post coin name on telegram channel only we are really sorry for your loss today we promise will help you get back your loss on next pump we can make sure that we never do prepump or send coin name to private group which we dont have this was and still the way our group work and it still same next time no prepump best regards pump team 2018-07-26 16:36:02+00:00 1.0 1320553215 290 big pump signal coin evx buy and hold it today will be the day of evx 2018-07-26 16:00:01+00:00 1.0 1320553215 288 less than 05 minutes before our solo pump exchange binance live countdown 2018-07-26 15:55:20+00:00 1.0 1320553215 286 less than 30 minutes before our solo pump exchange binance live countdown 2018-07-26 15:29:55+00:00 1.0 1320553215 285 less than 1 hours before our solo pump exchange binance live countdown 2018-07-26 15:00:02+00:00 1.0 1320553215 284 less than 4 hours before our solo pump exchange binance live countdown 2018-07-26 11:59:54+00:00 1.0 1320553215 278 1 day left before our solo pump exchange binance live countdown 2018-07-25 16:35:13+00:00 1.0 1320553215 273 pump announcement btc pumped so hard and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date thursday 26 july at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on thursday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-07-24 15:22:04+00:00 1.0 1320553215 272 pump result evx start price 9000 sat weve reached 11262 sat profit 2513 we had a wonderful day with evx yesterday more than 100 btc volume joined our pump was great it kept on top 2 and top 3 of binance for a long time weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target as usual were doing the pump without other channels to avoid other channel admins dumping on us like last times there wouldnt be any prepump guaranteed the pump is free for all no advantage please invite more peoples to our website and make this pump great again for a live countdown refer to our website 2018-07-24 09:29:17+00:00 1.0 1320553215 266 big pump signal coin evx buy and hold it today will be the day of evx 2018-07-23 16:00:01+00:00 1.0 1320553215 264 less than 05 minutes before our solo pump exchange binance signal will be given both on the telegram and the website be sure to be logged in on the website already live countdown 2018-07-23 15:55:13+00:00 1.0 1320553215 263 the market is looking good right now you can see some altcoins pumped very hard adx was up to 100 in within a hour so we think it is good time to do a great pump we can ensure that our picked coin will stay on top 1 of binance for long today 2018-07-23 15:45:37+00:00 1.0 1320553215 262 less than 30 minutes before our solo pump exchange binance live countdown 2018-07-23 15:30:07+00:00 1.0 1320553215 261 less than 1 hours before our solo pump exchange binance live countdown 2018-07-23 14:59:45+00:00 1.0 1320553215 260 less than 5 hours before our solo pump exchange binance live countdown 2018-07-23 11:03:03+00:00 1.0 1320553215 259 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date monday 23 july at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on monday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-07-21 15:58:55+00:00 1.0 1320553215 258 pump result mth start price 532 sat weve reached 688 sat profit 293 although we got the higher target we cannot say its a good pump mth cannot keep high price for a long time the market is red and auto bot seller is everywhere on binance exchange it makes our signal cannot rank top 1 for a long time we feel unhappy about it we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target as usual were doing the pump without other channels to avoid other channel admins dumping on us like last times there wouldnt be any prepump guaranteed the pump is free for all no advantage please invite more peoples to our website and make this pump great again for a live countdown refer to our website 2018-07-20 16:45:54+00:00 1.0 1320553215 255 big pump signal coin mth buy and hold it today will be the day of mth 2018-07-20 16:00:01+00:00 1.0 1320553215 253 less than 05 minutes before our solo pump exchange binance live countdown 2018-07-20 15:55:14+00:00 1.0 1320553215 251 less than 30 minutes before our solo pump exchange binance live countdown 2018-07-20 15:30:10+00:00 1.0 1320553215 250 less than 1 hour before our solo pump exchange binance live countdown 2018-07-20 14:59:53+00:00 1.0 1320553215 249 less than 5 hours before our solo pump exchange binance live countdown 2018-07-20 11:00:08+00:00 1.0 1320553215 248 1 day left before our solo pump exchange binance live countdown 2018-07-19 16:35:33+00:00 1.0 1320553215 243 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date friday 20 july at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on friday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-07-17 15:45:06+00:00 1.0 1320553215 242 pump result icn start price 9090 sat weve reached 11400 sat profit 2541 as i said yesterday is the day of icn it pumped so hard and it kept on top 1 of binance for a long time more than 150 btc volume joined our pump its wonderful weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target as usual were doing the pump without other channels to avoid other channel admins dumping on us like last times there wouldnt be any prepump guaranteed the pump is free for all no advantage please invite more peoples to our website and make this pump great again for a live countdown refer to our website 2018-07-17 04:52:30+00:00 1.0 1320553215 235 big pump signal coin icn buy and hold it today will be the day of icn 2018-07-16 16:00:01+00:00 1.0 1320553215 233 less than 05 minutes before our solo pump exchange binance live countdown 2018-07-16 15:55:17+00:00 1.0 1320553215 231 less than 30 minutes before our solo pump exchange binance live countdown 2018-07-16 15:30:31+00:00 1.0 1320553215 230 less than 1 hours before our solo pump exchange binance live countdown 2018-07-16 14:59:31+00:00 1.0 1320553215 229 less than 4 hours before our solo pump exchange binance live countdown 2018-07-16 12:07:41+00:00 1.0 1320553215 228 pump announcement btc has rally and the market is turning green today were expected the volumes will kicking back in early next week monday so we have decided to schedule a new pump on tomorrow at 0400pm gmt ⏳ time and date monday 16 july at 0400 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump detective by the pumpx hunter bot were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket back to big greens transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on monday at 0400 pm gmt utc time for a live countdown refer to our website please invite more peoples to our website and make this pump great again 2018-07-15 14:24:49+00:00 1.0 1320553215 213 less than 1 hours before our solo pump exchange binance live countdown 2018-06-28 15:05:30+00:00 1.0 1320553215 212 less than 4 hours before our solo pump exchange binance live countdown 2018-06-28 12:11:35+00:00 1.0 1320553215 211 less than 11 hours before our solo pump exchange binance live countdown 2018-06-28 05:17:22+00:00 1.0 1280934625 12 our next pump 20th march 203 830 pm 2030 gmt + 000 exchange kucoin type ranked 2021-03-17 13:42:26+00:00 1.0 1095533634 7872 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:33+00:00 1.0 1095533634 7871 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:48+00:00 1.0 1095533634 7870 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just 6 hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:37+00:00 1.0 1095533634 7869 have you set the timer yet bcoz its the day for mountain alt signal ong went for 108 via went for 188 can todays mountain alt hit 250 12 hrs remaining today | 4 pm gmt 2020-06-03 04:00:25+00:00 1.0 1095533634 7868 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:45:27+00:00 1.0 1095533634 7859 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 16:00:20+00:00 1.0 1095533634 7857 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:39+00:00 1.0 1095533634 7856 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:34+00:00 1.0 1095533634 7855 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:02:17+00:00 1.0 1095533634 7853 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this less than 12 hours left to see the mountain alt today | 4 pm gmt 2020-05-29 04:00:35+00:00 1.0 1095533634 7847 pump results around 150 btc was traded in total which is very good considering the fact that we pumped while btc was dumping first of all we would like to explain clearly what happened before and after the pump for full transparency to all our members as you know there are thousands of traders speculating on which coin will be pumped everytime we pump and this time it seems that a little bit of buying from the market in our coin created a big chain reaction before the pump started we noticed alot of buying up to 125 from the market at this point our team had taken the decision to cancel the pump because it was going up too fast but when it reached 138 we saw it started picking up alot of activity from outsiders and we believed that by announcing the signal at this height we could have reached over 70+ easier which was our initial target with even much bigger market activity than we initially expected the official signal was announced at 133 satoshis and reached 157 slowly after before going back down which is still almost a 20 potential profit that could have been made after that there was a multiple waves of around 10 which was also a bonus for those who bought the dip overall we cannot say for sure that it was a bad pump but it was definitely not our original plan in the next pump we will make sure to change the coin if this happens again or simply postpone the pump to a better time thank you all for participating we will announce the next pump once we are ready 2020-03-08 21:56:19+00:00 1.0 1095533634 7845 15 minutes left until our pump signal be ready 2020-03-08 18:44:55+00:00 1.0 1095533634 7843 3 hours left until the pump on binance our team has decided to still pump in this market condition our reasoning is that we will take this opportunity to attract all binance traders to our coin while other coins are suffering we are confident that we will still have big enough volume to make a successful pump for everyone 2020-03-08 15:48:58+00:00 1.0 1095533634 7842 6 hours left until the pump on binance we have big expectations for this pump since many coins are not in the green today we should be able to attract all outsiders attention to our coin once they see us as top gainer 2020-03-08 12:49:30+00:00 1.0 1095533634 7841 pump announcement hello everyone the next official pump will be scheduled for date sunday march 8 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again our target for this pump will be at least 5070 the market is good and alot of people have been anxiously waiting for our next pump we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-03-07 04:29:01+00:00 1.0 1095533634 7836 pump results around 115 btc in volume which is amazing our buy power in the first few minutes was very big and we managed to pump it over 30 the amount of action was also very intense and there was alot of possibility to make profits during the pump after the initial spike we believe we could have hit 5070 easily if we didnt face the sell pressure at the start in fact after analyzing the data someone sold from 1500 to 1162 in 1 single 8 btc sell order which is something we have never seen happen before but we managed to bounce back from it with the help of our team bringing the price back at around 13001400 our initial plan was for our team to push the price up to 2000 satoshis if this didnt happen which is unfortunate the next pump hopefully we can avoid this overall it was a great pump with alot of action we will announce the next pump soon stay tuned 2020-01-16 20:09:35+00:00 1.0 1095533634 7834 5 minutes left the next message will be the coin name to buy 2020-01-16 18:54:53+00:00 1.0 1095533634 7831 2 hours left until our pump on binance have your btc ready to buy the coin as soon as the signal is announced 2020-01-16 16:55:04+00:00 1.0 1095533634 7830 5 hours left until our pump on binance our team is ready and we hope you are too if you have any questions before the pump feel free to ask us 2020-01-16 14:09:21+00:00 1.0 1095533634 7829 pump announcement hello everyone the next official pump will be scheduled for date thursday january 16 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again the current market condition is perfect for a pump as outsider activity is very strong and we expect it to continue for the next few days our target for this pump will be between 5070 we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-01-15 13:22:10+00:00 1.0 1095533634 7828 hello everyone unfortunately we will have to postpone our pump today due to bad market conditions we are receiving alot of messages from our community and from other communities waiting for our pump that the best choice would be to postpone it even though we all would have liked to have a pump we are noticing alot of unstability on many coins including btc we believe that if we pumped a coin in this market outsiders will would easily sell their bags on us our team had big plans for this pump and was prepared for better market conditions our plan to pump a coin to a really high percentage will remain on the upcoming pump we are sure all our members will support our decision which is why we decided it is in our best interest to postpone it be assured that it will be worth the wait thank for you understanding 2019-12-17 17:14:33+00:00 1.0 1095533634 7826 pump announcement hello everyone the next official pump will be scheduled for tomorrow date tuesday december 17 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again this upcoming will be big if you remember our data pump we managed to pump it to 70 with the help of our team our goal is to make another pump of that magnitude for this we will need 3 things good market conditions a good coin and finally the collaboration of all our community members we will post more details before the pump this pump will be free for all meaning that everyone will receive the signal at the same time 2019-12-16 15:12:34+00:00 1.0 1095533634 7813 coin name — qsp buy qsp it will pump at least 100 from here 2019-11-25 16:00:39+00:00 1.0 1095533634 7778 15 minutes left the next message will be the coin name 2019-10-22 17:44:49+00:00 1.0 1095533634 7776 4 hours and 30 minutes left until the pump today be ready it will be big 2019-10-22 13:22:19+00:00 1.0 1095533634 7773 5 minutes left next message will be the coin 2019-10-02 17:55:39+00:00 1.0 1095533634 7771 4 hours 20 minutes remaining until the biggest pump on binance today our target today will be high we will attempt reach 5060 gains and possibly more depending on how outsiders will react to our pump 2019-10-02 13:40:59+00:00 1.0 1095533634 7769 pump announcement hello everyone the next official pump will be scheduled for date wednesday october 2 time 1800 pm gmt exchange binance advantage free for all we are finally ready to schedule our next pump during the past few days we have been waiting for btc to make its move and now that we have more confirmation of short term fluctuations in altcoins we can safely say that it is looking very good right now for the upcoming weeks our next pump will be big as always as many members have been waiting for it and as always the pump will be free for all meaning that everyone will receive the signal at the same time 2019-09-30 15:17:22+00:00 1.0 1095533634 7766 5 mins left next post will be the coin name 2019-09-23 12:54:32+00:00 1.0 1095533634 7764 hello everyone we will give a break out signal today date monday september 23 time 1300 pm gmt exchange binance advantage free for all 2019-09-23 10:15:30+00:00 1.0 1095533634 7761 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top with our current estimates we expect the next pump date to be maximum within a few days we hope you can understand that our decision is purely based on protecting our members and providing the best results possible in every pump we do the new pump date will be announced shortly 2019-09-18 16:17:02+00:00 1.0 1095533634 7760 6hrs left until our big pump on binance 2019-09-18 11:45:53+00:00 1.0 1095533634 7759 pump announcement hello everyone the next official pump will be scheduled for date wednesday september 18 time 1800 pm gmt exchange binance advantage free for all the altcoin market is looking great our team has been analyzing every aspect of the market closely and the order books are looking clear in many coins with not many hidden walls which gives us a big opportunity to easily pump any coin to a high percentage gain we expect our upcoming pump to be big more details will follow as we get closer to the pump 2019-09-15 12:46:00+00:00 1.0 1095533634 7754 2 minutes left the next message will be the coin name 2019-09-08 17:58:34+00:00 1.0 1095533634 7752 2 hours left until the pump on binance 2019-09-08 16:00:44+00:00 1.0 1095533634 7749 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-05 16:28:05+00:00 1.0 1095533634 7742 we will give another pump signal on 11 gmt get ready for huge profit like qsp stay tuned 2019-08-30 09:09:45+00:00 1.0 1095533634 7740 6 minutes left the next message will be the coin name 2019-08-29 17:54:05+00:00 1.0 1095533634 7739 15 minutes left the next message will be the coin name 2019-08-29 17:48:50+00:00 1.0 1095533634 7736 5 hours left until the pump on binance 2019-08-29 12:50:49+00:00 1.0 1095533634 7735 hello everyone we have decided to postpone the pump date for the following reasons alot of good coins were pumped yesterday and today and we believe it is wiser to pump coins from their bottom rather from their top with our current estimates we believe that pumping thursday is a better option the new pump date will be pump announcement the next official pump will be scheduled for date thursday august 29 time 1800 pm gmt exchange binance advantage free for all 2019-08-26 12:49:23+00:00 1.0 1095533634 7731 pump announcement hello everyone the next official pump will be scheduled for date tuesday august 27 time 1800 pm gmt exchange binance advantage free for all after our successful 70 data pump and our 50 vib pump we will schedule our next pump this tuesday alot of people have been asking some questions to clarify our pumps are free for all and everyone receives the signal at the same time the previous time the signal was sent at 180000 on our end but on binances end it was still 175958 we have taken this into consideration for the next pump to post exactly at 18 gmt next time one more asked question is when we post the pump signal it will show as forwarded from pump signal it is simply a private channel that we use to forward the signal to all our channels at the same time and not a vip channel if you have any more questions feel free to ask us we have a active discord server with over 60 000 members ready to help if you would like to join us the link is in the channel information 2019-08-23 17:51:27+00:00 1.0 1095533634 7728 5 minutes left the next message will be the coin name 2019-08-21 17:54:31+00:00 1.0 1095533634 7725 our goal today will be to create the same mega pump as our previous one and hold top gainer for many hours only 3 hours left before the pump signal 2019-08-21 15:01:01+00:00 1.0 1095533634 7724 4 hours and 30 minutes left until the next 70 pump on binance 2019-08-21 13:23:34+00:00 1.0 1095533634 7722 pump announcement hello everyone the next official pump will be scheduled for date wednesday august 21 time 1800 pm gmt exchange binance advantage free for all after our successful 70 data pump we expect our volume to be at least 3 times bigger on this upcoming pump we always try to aim higher our objective for next pump is to make it even bigger this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2019-08-18 14:13:42+00:00 1.0 1095533634 7721 pump result 70 gain on data as you can see everyone that bought in the first minute made almost 50 profit which is amazing in this market as we promised this pump had 0 prepump and our team helped push the price higher for everyone the mega pump group is officially back congratulations to everyone who bought we will announce the next pump soon stay tuned 2019-08-15 20:28:50+00:00 1.0 1095533634 7719 5 minutes left the next message will be the coin name 2019-08-15 19:54:46+00:00 1.0 1095533634 7718 20 minutes left be ready on binance 2019-08-15 19:40:27+00:00 1.0 1095533634 7717 1 hour left our target for this pump is very high the signal will be posted as an image we have taken extra necessary steps to ensure that bots cant read the coin name 2019-08-15 19:01:08+00:00 1.0 1095533634 7715 6 hours left until the next pump on binance 2019-08-15 13:58:04+00:00 1.0 1095533634 7714 pump announcement hello everyone the next official pump will be scheduled for date thursday august 15 time 2000 pm gmt exchange binance advantage free for all this pump will have 0 prepump meaning that 100 of the profits will go towards all our members and it will ensure that the pump results are as optimal as possible and fair for everyone we will pick the coin right before the pump to make sure that we pick the best possible coin given the market conditions and order books at that point in time the pump will also be free for all and everyone will receive the signal at the exact same time 2019-08-14 15:12:48+00:00 1.0 1095533634 7711 5 minutes left the next message will be the coin name 2019-08-07 16:54:20+00:00 1.0 1095533634 7710 20 minutes left be ready we have a clear path to top gainer place buy orders to support the price the longer the pump lasts the more outsiders will join in our news team is ready to spread the news everywhere on social media the signal will be posted as an image to counter the bots 2019-08-07 16:41:11+00:00 1.0 1095533634 7709 1 hour left until the pump be ready on binance 2019-08-07 15:57:28+00:00 1.0 1095533634 7707 6 hours left until the pump on binance 2019-08-07 10:59:47+00:00 1.0 1095533634 7705 pump announcement hello everyone the next official pump will be scheduled for date wednesday august 7 time 1700 pm gmt exchange binance advantage free for all the pump will be free for all meaning everyone will receive the signal at the same time we will be using an image to post the signal this time to counter the bots if you have any questions feel free to join our discord and chat with our community of more than 60 000 traders the link is in our channel description 2019-08-05 18:18:21+00:00 1.0 1095533634 7699 pump announcement hello everyone the next official pump will be scheduled for date sunday july 28 time 1700 pm gmt exchange binance advantage free for all this pump will be free for all meaning that everyone will receive the pump signal at the exact same time with the strategy our team has put in place this upcoming pump will be one of the best pumps we have ever done as we get closer to the pump date more details will follow stay tuned 2019-07-27 12:02:01+00:00 1.0 1095533634 7695 less than 5 hours left until the pump on binance 2019-07-13 12:49:09+00:00 1.0 1095533634 7692 pump announcement hello everyone the next official pump will be scheduled for date saturday july 13 time 1700 pm gmt exchange binance with the success of our previous pump we expect a bigger number of people to join this upcoming pump we picked saturday because the volume is much higher on weekends meaning higher gains things we will change and adjust for our next pump we will go for higher gains our target will be 5060 as you saw in our previous pump our team used big buy walls to help keep the price up and to help our members sell for profit we will do this again for our members but this time we are also going to help push the price higher by clearing the order book and clearing any unconditional sell walls that could appear during the pump lastly we will make sure there is absolutely no activity on our coin before the pump we have thought of a new measure that will prevent this the countdown to our next pump begins today 7 days left 2019-07-10 11:04:54+00:00 1.0 1095533634 7690 pump result overall good pump over 100 btc was traded during the pump which is close to 11 million alot of members were able to buy at the 13001350 area which is good we saw some activity on many coins before the pump including ours which was expected specially when thousands of people are speculating on the coin we also saw a good amount of outsider activity after our signal which made the pump last a good amount of time we were met by an unconditionnal sell was at 1480 which caused people to sell early which is understandable but overall we are receiving alot of messages of appreciation thank for participating we will announce the next pump date shortly 2019-07-05 17:24:55+00:00 1.0 1095533634 7687 5 minutes left the next message will be the coin 2019-07-05 16:54:55+00:00 1.0 1095533634 7684 3 hours left until the pump on binance 2019-07-05 13:56:13+00:00 1.0 1095533634 7676 pump announcement hello everyone the next official pump will be scheduled for date sunday june 30 time 1800 pm gmt exchange binance advantage free for all we expect the altcoin market to have recovered by that time over the last few weeks we have gained thousands of new members we expect our volume to be big this upcoming pump will be free for all meaning it will be a fair pump and everyone will receive the signal at the same time 2019-06-29 10:28:38+00:00 1.0 1095533634 7668 cnd rumor next binance chain coin expected pump 70 to 80 2019-06-23 08:33:59+00:00 1.0 1095533634 7638 5 mins left next post will be coin name dont forget how wpr did before 2019-06-08 12:56:17+00:00 1.0 1095533634 7636 ▪️flash pump alert ▪️ after the succesful wpr pump and the good feedbacks we got we will run another free pump in 87 minutes from now on 1300 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-06-08 11:33:37+00:00 1.0 1095533634 7625 buy appc it will pump 100 next days 2019-06-04 12:08:01+00:00 1.0 1095533634 7623 5 mins left next post will be coin name prepare for huge thing 2019-06-04 11:55:08+00:00 1.0 1095533634 7616 5 mins left next post will be the coin name 2019-06-03 10:55:37+00:00 1.0 1095533634 7604 5 mins left next post will be coin name 2019-05-31 14:55:42+00:00 1.0 1095533634 7602 ▪️flash pump alert ▪️ after the succesful yoyo qsp pump and the good feedbacks we got we will run another free pump in 58 minutes from now on 1500 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-05-31 14:02:33+00:00 1.0 1095533634 7546 pump announcement we have spotted a great opportunity therefore we will schedule our next pump quickly the next pump will be scheduled for date wednesday april 17 time 1700 pm gmt exchange binance with the success of our previous pump we are expecting this one to have even more volume and reach higher gains 2019-04-14 15:44:09+00:00 1.0 1095533634 7495 5 minutes left the next post will be the coin 2019-02-23 16:55:48+00:00 1.0 1095533634 7493 1 hour left until the pump on binance 2019-02-23 15:48:28+00:00 1.0 1095533634 7492 3 hours and 30 minutes left until the pump on binance 2019-02-23 13:31:10+00:00 1.0 1095533634 7491 hello everyone the pump is going to live less than 24 hours until the mega pump on binance 2019-02-23 04:10:48+00:00 1.0 1095533634 7490 hello everyone were back to pump pump announcement the next pump will be scheduled for date saturday 23 february time 1700 gmt time exchange binance 2019-02-22 14:28:46+00:00 1.0 1095533634 7480 4 minutes left the next post will be the coin signal 2018-12-30 16:58:08+00:00 1.0 1095533634 7478 good morning friends and so as always we will be scheduled for next pump details exchange binance date 30122018 time 5pm gmt the pump will be free for all 2018-12-29 01:35:37+00:00 1.0 1095533634 7476 we have reached about 150btc volume in the pump our buying power was big enough to make any coin go up over 50+ but the growth is not as expected after analyzing the order books closely it turns out there was many hidden conditionnal sell walls that could not be seen by our team the pump managed to hold for a good amount of time but it did not reach the intended targets i am getting word from private sources that there was already a market maker in this coin that held a big amount of nebl it seems that we have picked the wrong coin this time we were hoping that this pump would be as good as our last one it is unfortunate that we had to run into this next time would be better peace 2018-12-23 17:24:36+00:00 1.0 1095533634 7471 good morning friends were receiving an overwhelming amount of appreciation our last pump wabi was very successful the volume has reached 15m dollars around 450btc volume and the price has created many waves during its way so we helps participants to making a profit and no one has to suffer losses and so as always we will be scheduled for next pump details exchange binance date 23122018 time 5pm gmt the pump will be free for all 2018-12-20 05:28:42+00:00 1.0 1095533634 7461 we have reached about 100btc volume in the pump but the growth is not expected we immediately went to find the reason for this confusion maybe we have picked the wrong coin for the pump today mod has many bottrading and maybe we run into too many hidden sell wall then its not as expected next time would be better 2018-11-22 15:21:48+00:00 1.0 1095533634 7456 2 hours left to the pump invite your friends we will make big gain today 2018-11-22 13:04:47+00:00 1.0 1095533634 7455 hi everyone were back for the pump today details exchange binance date 22112018 time 3pm gmt the pump will be freeforall ffa 2018-11-22 05:43:27+00:00 1.0 1095533634 7452 less than 30 minutes till our pump exchange binance 2018-11-21 14:31:41+00:00 1.0 1095533634 7451 2 hours left to the pump invite your friends we will make big gain today 2018-11-21 13:00:42+00:00 1.0 1095533634 7449 less than 12hours left to big pump signal dont miss your chance to makes money today 2018-11-21 03:12:01+00:00 1.0 1095533634 7448 wow what an exciting day your chance is here market is recovering we will be scheduling big pump signal on tomorrow ⏳ time 1500 gmt date wednesday 21 november exchange binance the pump is freeforall and everything is going to big stay here we hope the market situation will be better on wednesday 2018-11-20 02:42:50+00:00 1.0 1095533634 7436 30 mins left to the big pump dont miss your chance 2018-11-12 14:30:41+00:00 1.0 1095533634 7435 2 hours left to the pump invite your friends we will make big gain today 2018-11-12 13:00:10+00:00 1.0 1095533634 7434 less than 10 hours until the big pump stay tuned 2018-11-12 05:05:39+00:00 1.0 1095533634 7431 hello everyone we are back bitcoin is moving sideways in narrow band during 2 months and the market seems in an huge accumulation phase then there is an excellent opportunity to pick up coins of promising projects were expecting the volumes will kicking back in early next week monday so we have decided to schedule a big pump on monday at 0300 pm gmt ⏳ time and date monday 12 november at 0300 pm gmt utc time exchange binance the pump will be freeforall ffa no advantage for anyone we guaranteed zero prepump were expected minimum target is 40 as well and the possible 100 200 whenever the cryptomarket in bullish live countdown transfer funds to binance to be ready unmute our channel to top to get the coin name soonest on monday at 0300 pm gmt utc time the coin name will be announced here inivte your friends and lets make it great again 2018-11-09 04:55:00+00:00 1.0 1095533634 7399 보시다시피 알트코인들이 회복됨에 따라 저가에 좋은 알트코인을 매수하기에 좋은 시점이 다가왔습니다 이에 내일 29일 22시에 kst 모두 가 큰 수익을 얻으실 수 있는 저점에 위치한 코인을 공개하겠습니다 as you can see altcoins are recovering at the same time its a good time to buy good altcoins at low prices so tomorrow we will unveil a coin on the 29th at 2200 kst where everyone can make a big profit ♻️ exchange bittrex upbit btc market time 22시 kst 1300 gmt date monday 29th october ‍‍‍ participants more than 100000 cryptoinvestors target 70 150 2018-10-28 16:05:28+00:00 1.0 1095533634 7294 시그널 제공까지 15분 남았습니다 미리 btc 매수하시기 바랍니다 15 minutes left until revealing the mega signal 2018-09-06 12:45:46+00:00 1.0 1095533634 7281 시그널 제공까지 20분 남았습니다 미리 btc 매수하시기 바랍니다 20 minutes left until revealing the mega signal 2018-09-03 12:41:48+00:00 1.0 1095533634 7273 최근 장은 좋은 회복세를 보이며 그만큼 볼륨도 올라가고 있는 모습을 보이고 있습니다 이러한 장에선 비트코인보다 상승세가 예상되는 알트코인에 투자하는 것이 좋은 투자 방법이 될 것입니다 3일 월요일 22시에 우리는 모두가 큰 수익을 얻을수 있는 메가시그널을 드릴 예정입니다 recently the market shows bullish that volume also increases in this kind of market it would be easy to take profits fron good alts instead of bitcoin on monday 3rd at 1300 gmt we will give you mega signal so that everyone can get huge profit ♻️ exchange bittrex upbit btc market time 22시 kst 1300 gmt date monday 3rd september ‍‍‍ participants more than 100000 cryptoinvestors target 70 150 2018-09-02 14:51:53+00:00 1.0 1095533634 7240 시그널 제공까지 30분 남았습니다 미리 btc 매수하시기 바랍니다 30 minutes left until revealing the signal buy btc to be prepared 2018-08-27 12:30:14+00:00 1.0 1095533634 7223 시그널 제공까지 30분 남았습니다 미리 btc 매수하시기 바랍니다 30 minutes left until revealing the signal buy btc to be prepared 2018-08-22 12:30:01+00:00 1.0 1095533634 7218 2일 전 20일에 저희는 투자자분들 모두 수익을 누리실 수 있도록 메가 시그널을 공개하였고 타 채널같이 20 프리펌핑 및 덤핑을 보여준것이 아닌 프리펌핑 없는 70의 큰 상승률을 선보였습니다 금일 22일 수요일 22시에 우리는 한번더 70의 상승률에 버금가는 메가 시그널을 선보일 예정입니다 on the 20th we released the mega signal ans every investor enjoyed huge profits we showed the 70 increase without prepumping instead of showing 20 free pumping and dumping like other channels on the 22nd wednesday at 1300 gmt we will once again give you the mega signal that is similar to the 70 increase rate like the last time ♻️exchange bittrex upbit btc market time 1000 pm kst 22일 수 1300 gmt on 22nd wednesday ‍‍‍participants more than 100000 cryptoinvestors target 40100 2018-08-21 15:38:49+00:00 1.0 1095533634 6920 15분 남았습니다 업비트에 로그인하세요 예상 50100 five minutes left sign in to upbit expected 50 100 2018-07-09 12:45:06+00:00 1.0 1095533634 6895 30분 이내에 큰 시그널을 제공할 예정입니다 큰 호재가 있는 코인 이오니 주목하시길 바랍니다 we will provide huge signal in 30 minutes we captured there is a massive news for the coin 2018-07-08 11:29:14+00:00 1.0 1095533634 6594 less than 1 hour to our pump transfer some btc to binance it will be huge stay tuned 2018-06-21 13:31:10+00:00 1.0 1095533634 6583 dear members the big pump signal will be exchange binance date 21062018 time 300 pm gmt for live countdown please invite more peoples to our channels and make this pump great again 2018-06-20 17:09:08+00:00 1.0 1095533634 6455 2 minutes left next post will be the coin 2018-06-06 12:58:32+00:00 1.0 1095533634 6454 5 minutes left be sure to have login at binance and telegram is open 2018-06-06 12:55:47+00:00 1.0 1095533634 6453 15 minutes left till the pump binance 2018-06-06 12:45:02+00:00 1.0 1095533634 6394 coin name exp buy fast and hold our team will give u big news coming 2018-06-04 11:59:46+00:00 1.0 1095533634 6376 ‼️ big announce today well share one of our favorite gem today last signal was a success and we want everybody to do a stronger effort to make this pump a whopping success 저번 시그널또한 성공적이었습니다 여러분들이 모두 수익을 얻으셨으면 합니다 the coin in question can do x3 anytime soon 이 코인은 언제든지 3배로 뛸수있는 잠재성을 가지고 있습니다 read the pinned message for details how to make more profits ⏳ time 1200h gmt time 21h korean ⚖️ exchange bittrex upbit participants 700000 people in crypto goal 200300 advantage the pump will be freeforall ffa transfer funds to bittrex and pinunmute our channel to get notified about the coin name first great alliance team 2018-06-04 05:59:46+00:00 1.0 1095533634 6348 hi guys please read our announcement we will give you an huge signal today 06월 01일 큰 상승이 예상되는 코인을 공개할 예정입니다 절대 놓치지 마시기 바랍니다 exchange bittrex upbit time 1300 gmt 2200 korean time date 1st june 2018 ✉️ coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer your fund to bittrexupbit and do not miss the chance to get 500 100+ profitable many members are ready to attend this signal check the countdown here +bittrex+2f+upbitfontcursive 2018-06-01 04:10:45+00:00 1.0 1095533634 6292 ✉️ today another signal of the week will be announced at 1300 gmt again remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target exchange binance stay tuned we will be back at 1300 gmt 2018-05-30 06:13:24+00:00 1.0 1095533634 6187 hi guys please read our announcement we will give you an huge signal today 5월 25일 큰 상승이 예상되는 코인을 공개할 예정입니다 절대 놓치지 마시기 바랍니다 exchange bittrex upbit time 1200 gmt 2100 korean time date 25th may 2018 ✉️ coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer your fund to bittrexupbit and do not miss the chance to get 500 100+ profitable many members are ready to attend this signal stay tuned 2018-05-25 05:23:05+00:00 1.0 1095533634 6110 hi guys please read our announcement yo were back we hope all of you have a nice weekend and public holidays 안녕하세요 여러분 오랜만입니다 휴일 즐겁게 보내셨나요 we are seeing volume kicking back in crypto for now so dont miss it that tomorrow a super coin coming out monday 5월 21일월요일 큰 상승이 예상되는 코인을 공개할 예정입니다 절대 놓치지 마시기 바랍니다 exchange bittrex upbit time 1300 gmt 2200 korean time date 21th may 2018 advantage the pump will be freeforall ffa ✉️coin name will be posted directly on the channel 동전은 여기에 직접 통보됩니다 transfer your fund to bittrexupbit and do not miss the chance to get 500 100+ profitable many members are ready to attend this signal asian whales megalodon team 2018-05-20 15:56:21+00:00 1.0 1095533634 6009 big pump signal coin ftc feathercoin upbit link ftc bittrex link ftc 2018-05-10 13:00:03+00:00 1.0 1095533634 5997 10월 07일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 4 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 10 may trades will be on bittrexupbit +pump+signal+at+bittrexfontcursive 2018-05-10 09:00:38+00:00 1.0 1095533634 5986 big pump signal announcement bitcoin is back to bullish markets turning green now we will give you big pump signal 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a big pump signal which coin has huge potential on thursday what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 10 may trades will be on bittrexupbit stay tuned check the countdown here+pump+signal+at+bittrexfontcursive 2018-05-09 17:35:37+00:00 1.0 1095533634 5928 big pump signal coin iop internet of people upbit link iop bittrex link iop 2018-05-07 13:00:09+00:00 1.0 1095533634 5923 bittrexupbit 30분 남았습니다 30mins left to big pump signal check the countdown here +singal+at+bittrex2fupbitfontslab 2018-05-07 12:30:02+00:00 1.0 1095533634 5911 big pump signal announcement after the moved of the king btc markets turning green now we will give you big pump signal on tomorrow 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a huge signal which coin has huge potential on tomorrow what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date monday 07 may trades will be on bittrexupbit stay tuned check the countdown here +singal+at+bittrex2fupbitfontslab 2018-05-06 16:22:46+00:00 1.0 1095533634 5824 big pump signal coin pro propy upbit link pro bittrex link pro buy pro it will moon 100 2018-05-02 13:00:07+00:00 1.0 1095533634 5815 5월 02일 오후 10시 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것 입니다 dont miss the train 4 hours left to big pump signal at bittrexupbit ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date wednesday 02 may trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-05-02 09:00:02+00:00 1.0 1095533634 5803 big pump signal announcement the markets turning green we will give you big pump signal 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a huge signal which coin has huge potential on tomorrow what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date wednesday 02 may trades will be on bittrexupbit stay tuned check the countdown here +signal+at+bittrexfontcursive 2018-05-01 18:30:17+00:00 1.0 1095533634 5767 big pump signal coin cure curecoin cure 2018-05-01 13:00:12+00:00 1.0 1095533634 5732 have a good monday ladies and gents ✉️due to the markets bullish then there is an excellent opportunity to pick up coins of promising projects that are at the bottom so we will give the best one today there will be announced at 1300 gmt what is coin of the week its the one at the bottom in this week which is the best signal we have analyzed thoroughly based on technical analysis and fundamental analysis by the way remember thats one is not a pump signal ▪️duration double your money few days to a month platform binance stay tuned 2018-04-30 11:30:56+00:00 1.0 1095533634 5723 have a good weekend ladies and gents ✉️due to the markets bullish then there is an excellent opportunity to pick up coins of promising projects that are at the bottom so we will give best signal of the day there will be announced at 1400 gmt 2300 pm kmt trade will be at bittrex upbit by the way remember thats one is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and fundamental analysis incase the coin is pumping wait until it has back to the buy zone ▪️duration fews hours to a day 여러분 일요일 잘 보내시고 계신가요 ✉️btc 상승으로 인해 유망한 코인을 매수할 수 있는 절호의 찬스를 드릴 것 입니다 1400 gmt 오후 1100 한국시각 거래소 비트렉스 업비트 펌핑 신호가 아니라는것을 기억해주세요 기술적 분석에 기반한 최고의 분석 신호입니다 만약 해당 코인이 펌핑중이라면 매수가격에 올때까지 기다려주세요 ▪️기간 며칠 1주일 best regards 2018-04-29 13:34:28+00:00 1.0 1095533634 5647 have a good friday ladies and gents ✉️due to the markets bullish then there is an excellent opportunity to pick up coins of promising projects that are at the bottom so we will give best signal of the week today there will be announced at 730 gmt 430 pm kmt trade will be at bittrex upbit by the way remember thats one is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and fundamental analysis incase the coin is pumping wait until it has back to the buy zone ▪️duration few days to a week 여러분 금요일 잘 보내세고 계신가요 ✉️btc 상승으로 인해 유망한 코인을 매수할 수 있는 절호의 찬스를 드릴 것 입니다 730 gmt 오후 430 한국시각 거래소 비트렉스 업비트 펌핑 신호가 아니라는것을 기억해주세요 기술적 분석에 기반한 최고의 분석 신호입니다 만약 해당 코인이 펌핑중이라면 매수가격에 올때까지 기다려주세요 ▪️기간 며칠 1주일 best regards 2018-04-27 07:06:49+00:00 1.0 1095533634 5511 be ready less then 3 hours left we have a big special signal on today at bittrex ️exchange bittrex time 1300 gmt date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-24 10:00:17+00:00 1.0 1095533634 5493 be ready we have a big special signal on tomorrow at bittrex ️exchange bittrex time 1300 gmt 630pm ist date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-23 17:15:45+00:00 1.0 1095533634 5460 ✉️ after the success of cdt and fuel today our team will give you best signal of the week there will be announced at 1000 gmt remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 1000 gmt 2018-04-22 08:42:52+00:00 1.0 1095533634 5427 huge signal announcement the markets turning green we will give you huge signal 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a huge signal which coin has huge potential on tomorrow what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 19 april trades will be on bittrexupbit stay tuned check the countdown here +huge++signalfontcursive 2018-04-18 17:05:10+00:00 1.0 1095533634 5411 big pump signal coin exp expanse bittrex link exp upbit link exp 2018-04-17 13:00:10+00:00 1.0 1095533634 5397 big signal announcement bittrex has upgraded their system and reopened registrations for new users then outsiders are coming to bittrex upbit with more volume 비트렉스가 시스템을 개선하고 새로운 사용자에 대한 등록을 다시 하게 되면 외부인들이 더 많은 물량을 갖고 비트렉스 거래소에 오게 될 것이다 4월 17일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 due to this huge demand and the markets very bullish were lauching big signal at bittrexupbit on tomorrow tuesday ➡️ we will give you a big signal which coin has huge potential on tomorrow what to do you need to buy and hodl that strong coin it easily goes 100 200 ⬅️ ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date tuesday 17 april trades will be on bittrexupbit check the countdown here +singal+at+bittrex2fupbitfontserif 2018-04-16 16:33:18+00:00 1.0 1095533634 5388 4월 16일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 dont miss the train 1 hours left to big signal at bittrexupbit ️exchange bittrex upbit time 1200 gmt 900 pm ktm date monday 16 april trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-04-16 11:01:09+00:00 1.0 1095533634 5385 4월 16일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 4hours left to big signal at bittrexupbit ️exchange bittrex upbit time 1200 gmt 900 pm ktm date monday 16 april trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-04-16 07:57:45+00:00 1.0 1095533634 5379 big signal announcement bittrex has upgraded their system and reopened registrations for new users then outsiders are coming to bittrex upbit with more volume 비트렉스가 시스템을 개선하고 새로운 사용자에 대한 등록을 다시 하게 되면 외부인들이 더 많은 물량을 갖고 비트렉스 거래소에 오게 될 것이다 4월 16일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 due to this huge demand and the markets very bullish were lauching big signal at bittrexupbit on tomorrow monday ➡️ we will give you a big signal which coin has huge potential on tomorrow what to do you need to buy and hodl that strong coin it easily goes 100 200 ⬅️ ️exchange bittrex upbit time 1200 gmt 900 pm ktm date monday 16 april trades will be on bittrexupbit check the countdown here +signal+at+bittrexfontcursive 2018-04-15 16:43:02+00:00 1.0 1095533634 5351 be ready less then 15 minutes left we have a big special signal at bittrex ️exchange bittrex ➡️what you need to do buy that coin and hodl until 100200 profit coin will be announced in 15 minutes 2018-04-14 12:45:17+00:00 1.0 1095533634 5350 less then 30 minutes left in big signal exchange bittrex 2018-04-14 12:30:08+00:00 1.0 1095533634 5347 be ready less then 2 hours left we have a big special signal at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-14 11:00:23+00:00 1.0 1095533634 5343 be ready less then 3 hours left we have a big special signal at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-14 10:00:18+00:00 1.0 1095533634 5342 ✉️ after the success of cdt yesterday today our team will give you best signal of the week there will be announced at 1030 gmt remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 1030 gmt 2018-04-14 09:39:16+00:00 1.0 1095533634 5340 be ready less then 6 hours left we have a big special signal at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-14 07:01:36+00:00 1.0 1095533634 5332 be ready we have a big special signal on tomorrow at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-13 17:49:07+00:00 1.0 1095533634 5310 ✉️ today another signal of the week will be announced at 0800 gmt again remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 0800 gmt 2018-04-13 06:05:56+00:00 1.0 1095533634 5291 less then 30 minutes left in our special call announcement on bittrex for 100200 profit special call means buy and hold that coin to get maximum profit while all coins are going down we will go up check remaining time here +call+at+bittrexfontcursive 2018-04-12 12:30:39+00:00 1.0 1095533634 5213 3 hours left to our big pump signal stay tuned 2018-04-08 12:34:00+00:00 1.0 1095533634 5206 we have scheduled our pump signal exchange binance date 08042018 time 330 pm gmt advantage the pump will be freeforall ffa we are definitely looking forward to the next pump as the previous two binance pumps were out of this world we hope to see you all this sunday stay tuned 2018-04-08 04:59:39+00:00 1.0 1095533634 5196 ✉️ today our team will give you best signal of the week the coin will be announced at 1400 gmt remember that best signal of the week is not a pump signal which is the best signal we have analyzed thoroughly based on technical analysis and news so you can buy and hold it to our target stay tuned we will be back at 1400 gmt 2018-04-07 11:40:32+00:00 1.0 1095533634 5178 15 minutes to our hodl stay tuned what is the global hodl⁉️ ✔️one coin ✔️one day long ✔️800к participants 2018-04-05 13:45:03+00:00 1.0 1095533634 5092 coin pump is icn buy icn it will moon 2018-04-02 16:00:05+00:00 1.0 1095533634 4837 coin pump is snm buy snm now it will moon 50 2018-03-24 13:00:04+00:00 1.0 1095533634 4834 15 mins left to our pump on binance stay tuned dont miss the train to the moon 2018-03-24 12:45:04+00:00 1.0 1095533634 4780 ⚡️ mega pump announcement ⚡️ hello everyone binance mega pump is launching on saturday exchange binance time 1600 gmt date saturday 23 march 2018 ready your bags and flying with us stay tuned ⚠️ remember trades will be on binance countdown to our mega pump 2018-03-23 06:19:51+00:00 1.0 1095533634 4741 ⚡️ pump announcement ⚡️ hello everyone binance pump is launching on thursday exchange binance time 1500 gmt date thursday 22 march 2018 ready your bags and flying with us stay tuned ⚠️ remember trades will be on binance countdown to our pump 2018-03-22 05:06:31+00:00 1.0 1095533634 4315 next message will be coin name link 2018-03-08 15:57:03+00:00 1.0 1095533634 4308 reminder we will announce pump signal at 1600 gmt time this coin will be shared by other big channels at the same time guaranteed x2 coin unmute the channel stay tuned 2018-03-08 15:01:02+00:00 1.0 1095533634 4299 we will announce pump signal at 1600 gmt time this coin will be shared by other big channels at the same time guaranteed x2 coin unmute the channel stay tuned 2018-03-08 08:00:55+00:00 1.0 1095533634 1954 next post is coin name and link 2018-01-22 12:47:18+00:00 1.0 1095533634 1684 2 hours left to huge signal dont forget that will be big signal without prepump of course time 15 gmt or 830 ist platform bittrex 2018-01-12 13:00:01+00:00 1.0 1095533634 1677 be ready my friends date 12012018 we have organized huge signal will give big profit for our members more then 200k+ members are participating in this signal and its going to be really huge of course fixed signal time 15 gmt or 830 ist platform bittrex pinchannelontop so you wont missed it wait for 15 gmt for big potential coin what you need to do buy coin at 13 gmt and promote it on every possible platform like twitter telegram chat box and facebook to get maximum profit in our previous signals we have reached 50 100 and 180 profit respectively 2018-01-12 07:42:03+00:00 1.0 1095533634 1577 next post is coin name and link be ready 2018-01-09 12:57:01+00:00 1.0 1095533634 1560 be ready friends only 5 hours left we have organized huge signal today for big profit for our members we expect it can increase 100 in short term and 300400 in the mid term time 1300 gmt exchange bittrex use the timer pinourchannelintop 2018-01-09 08:00:02+00:00 1.0 1095533634 1460 be ready friends only 1 hour left we have organized huge signal today for big profit for our members time 1530 gmt exchange bittrex 2018-01-06 14:30:01+00:00 1.0 1095533634 1455 be ready friends only 3 hours left we have organized huge signal today for big profit for our members time 1530 gmt exchange bittrex stay tuned and dont miss out 2018-01-06 12:33:42+00:00 1.0 1095533634 1425 next post is coin name and link 2018-01-05 16:27:06+00:00 1.0 1095533634 1141 1 minutes left next post is coin name and link 2017-12-27 15:59:05+00:00 1.0 1095533634 543 recommend strat here 000050888 upcoming coin event date 16 november 2017 coin stratis strat ama live ama with chris this thursday november 16th at 5pm gmt 2017-11-15 11:45:22+00:00 1.0 1280737523 7471 oax pump almost every week good coin to buy and hold mark my words ‼️ 2022-01-22 17:03:20+00:00 1.0 1280737523 7463 next post will be coin name 2022-01-22 16:59:18+00:00 1.0 1280737523 7462 5 minutes left to pump on binance be ready with you btc 2022-01-22 16:55:10+00:00 1.0 1280737523 7461 15 minutes left to pump on binance 2022-01-22 16:45:52+00:00 1.0 1280737523 7460 30 minutes left to pump on binance 2022-01-22 16:30:05+00:00 1.0 1280737523 7453 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 13:54:40+00:00 1.0 1280737523 7429 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 08:28:35+00:00 1.0 1280737523 7301 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-18 17:22:03+00:00 1.0 1280737523 7108 pump result glmr start price 20267 weve reached 32498 all targets achieved in just 30 hour ✅✅✅✅ huge quick profit 60 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-13 14:53:20+00:00 1.0 1280737523 7056 iris result hit 267 2nd target achieved in just 25 hour✅✅ huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2022-01-12 05:46:49+00:00 1.0 1280737523 7015 santos hit 10292 finally all targets achieved in just 2 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-11 10:29:09+00:00 1.0 1280737523 7013 pump result santos start price 7159 weve reached 9500 3rd target achieved in just 51 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-11 09:03:33+00:00 1.0 1280737523 6948 pump result phb start price 882 weve reached 1155 3rd target achieved in just 30 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 08:59:34+00:00 1.0 1280737523 6941 pump result powr start price 1160 weve reached 1797 all targets achieved in just 20 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 06:53:52+00:00 1.0 1280737523 6873 pump result iris start price 206 weve reached 348 all targets achieved in just 55 hour ✅✅✅✅ huge quick profit 68 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-07 17:39:08+00:00 1.0 1280737523 6797 alcx result hit 9616 2nd target achieved in just 8 hour✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-06 06:42:39+00:00 1.0 1280737523 6697 pump result gxs start price 4283 weve reached 5694 3rd targets achieved in just 30 minutes ✅✅✅ huge quick profit 32 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-03 10:30:11+00:00 1.0 1280737523 6637 pump result nebl start price 2634 weve reached 4058 huge quick profit 53 in just 75 hour to know next pump coin name contact apglobals for premium membership 2022-01-02 17:19:07+00:00 1.0 1280737523 6617 ardr result hit 820 3rd target achieved in just 16 minutes ✅✅✅ huge quick profit 33 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2022-01-02 15:04:38+00:00 1.0 1280737523 6501 fxs result hit 90972 3rd target achieved in just 27 hour✅✅✅ huge quick profit 48 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-31 16:40:59+00:00 1.0 1280737523 6441 pump result gxs start price 4068 weve reached 5664 all targets achieved in just 31 minutes ✅✅✅✅ huge quick profit 39 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-29 12:56:26+00:00 1.0 1280737523 6419 pump result farm start price 1999 weve reached 5800 huge quick profit 190 in just 20 hour to know next pump coin name contact apglobals for premium membership 2021-12-28 16:49:18+00:00 1.0 1280737523 6414 pump result quick start price 5420 weve reached 11562 huge quick profit 106 in just 28 minutes to know next pump coin name contact apglobals for premium membership 2021-12-28 16:15:36+00:00 1.0 1280737523 6401 pump result hard start price 1704 weve reached 2718 all targets achieved in just 19 minutes ✅✅✅✅ huge quick profit 59 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-28 06:56:42+00:00 1.0 1280737523 6368 pump result utk start price 680 weve reached 979 all targets achieved in just 28 minutes ✅✅✅✅ huge quick profit 131 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-27 17:30:46+00:00 1.0 1280737523 6316 pump result lina start price 83 weve reached 111 all targets achieved in just 6 hour ✅✅✅✅ huge quick profit 101 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-26 11:27:57+00:00 1.0 1280737523 6281 pump result pha start price 825 weve reached 1290 all targets achieved in just 20 minutes ✅✅✅✅ huge quick profit 56 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 19:06:22+00:00 1.0 1280737523 6269 pump result flux start price 3404 weve reached 5828 all targets achieved in just 23 hour ✅✅✅✅ huge quick profit 71 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 17:25:07+00:00 1.0 1280737523 6243 mdt result hit 282 3rd target achieved in just 17 hour✅✅✅ huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-25 04:41:03+00:00 1.0 1280737523 6233 pump result appc start price 73 weve reached 105 3rd targets achieved in just 1 hour ✅✅✅ huge quick profit 43 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-24 17:33:52+00:00 1.0 1280737523 6226 pump result rdn start price 435 weve reached 816 huge quick profit 87 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 17:07:35+00:00 1.0 1280737523 6221 pump result evx start price 383 weve reached 540 huge quick profit 40 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 16:56:33+00:00 1.0 1280737523 6178 om result hit 431 3rd target achieved in just 14 minutes ✅✅✅ huge quick profit 23 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-23 15:52:38+00:00 1.0 1280737523 6142 pump result coti start price 634 weve reached 948 all targets achieved in just 36 hour ✅✅✅✅ huge quick profit 148 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-23 05:45:39+00:00 1.0 1280737523 6089 pump result ren start price 1058 weve reached 1543 all targets achieved in just 45 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-22 05:15:56+00:00 1.0 1280737523 6085 pump result jamsy start price 148 weve reached 251 all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 69 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-21 19:35:21+00:00 1.0 1280737523 6041 pump result any start price 4166 weve reached 6057 all targets achieved in just 29 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-20 18:15:47+00:00 1.0 1280737523 6004 dusk result hit 1339 3rd target achieved in just 15 hour✅✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-20 08:05:15+00:00 1.0 1280737523 5991 any result hit 5511 3rd target achieved in just 21 hour✅✅✅ huge quick profit 32 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-20 07:22:23+00:00 1.0 1280737523 5979 pump result appc start price 161 weve reached 222 huge quick profit 37 in just 9 minutes to know next pump coin name contact apglobals for premium membership 2021-12-19 15:04:45+00:00 1.0 1280737523 5967 wan result hit 1818 3rd target achieved in just 11 minutes ✅✅✅ huge quick profit 1818 amazing pump calls by our team advance buy and sell targets ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-19 08:56:18+00:00 1.0 1280737523 5950 farm result hit 2700 3rd target achieved in just 2 minutes ✅✅✅ huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:32:41+00:00 1.0 1280737523 5939 fis result hit 3524 2nd target achieved in just 2 minutes ✅✅ one more huge quick profit 25 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:14:26+00:00 1.0 1280737523 5934 pump result tru start price 805 weve reached 1194 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 18:01:05+00:00 1.0 1280737523 5919 pump result cfx start price 496 weve reached 650 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 11:35:04+00:00 1.0 1280737523 5904 pump result qlc start price 75 weve reached 114 all targets achieved in just 40 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 10:06:37+00:00 1.0 1280737523 5900 pump result tct start price 70 weve reached 109 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 09:27:12+00:00 1.0 1280737523 5856 tct result hit 87 3rd target achieved in just 10 minutes ✅✅✅ huge quick profit 24 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-17 12:58:46+00:00 1.0 1280737523 5849 high result hit 8500 2nd target achieved in just 7 minutes ✅✅ huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-17 07:57:33+00:00 1.0 1280737523 5780 pump result gxs start price 2720 weve reached 4150 all targets achieved in just 25 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-16 10:43:25+00:00 1.0 1280737523 5753 ramp result hit 582 3rd target achieved in just 65 hour✅✅✅ huge quick profit 48 amazing pump calls by our team you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-15 16:48:18+00:00 1.0 1280737523 5739 pump result voxel start price 5353 weve reached 8250 all targets achieved in just 18 hour ✅✅✅✅ huge quick profit 54 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-15 09:09:21+00:00 1.0 1280737523 5729 pump result doge start price 330 weve reached 463 all targets achieved in just 185 hour ✅✅✅✅ huge quick profit 120 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-14 19:59:52+00:00 1.0 1280737523 5725 voxel result hit 6595 3rd target achieved in just 24 minutes ✅✅✅ huge quick profit 23 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-14 13:37:08+00:00 1.0 1280737523 5576 pump result flux start price 6000 weve reached 9900 all targets achieved in just 33 minutes ✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-10 08:36:10+00:00 1.0 1280737523 5514 pump result mdt start price 129 weve reached 231 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 237 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-09 05:08:19+00:00 1.0 1280737523 5500 pump result ant start price 9002 weve reached 13000 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 44 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 18:58:12+00:00 1.0 1280737523 5475 pump result xtz start price 8322 weve reached 11567 all targets achieved in just 7 hour ✅✅✅✅ huge quick profit 115 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 06:55:34+00:00 1.0 1280737523 5443 pump result dusk start price 412 weve reached 855 all targets achieved in just 225 hour ✅✅✅✅ huge quick profit 107 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-07 14:07:41+00:00 1.0 1280737523 5421 pump result elf start price 980 weve reached 1781 all targets achieved in just 4 minutes✅✅✅✅ huge quick profit 81 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-06 17:26:07+00:00 1.0 1280737523 5416 grs result hit 2179 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 33 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-06 17:21:47+00:00 1.0 1280737523 5404 porto hit 11695 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 87 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-05 17:47:43+00:00 1.0 1280737523 5379 pump result lazio start price 8618 weve reached 13000 all targets achieved in just 50 minutes✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-05 07:56:32+00:00 1.0 1280737523 5374 santos result hit 13299 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-05 04:21:37+00:00 1.0 1280737523 5313 fio result hit 799 all targets achieved in 4 days✅✅✅✅ one more huge profit 142 ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-03 19:25:13+00:00 1.0 1280737523 5304 pump result mdt start price 112 weve reached 159 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 41 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 17:18:05+00:00 1.0 1280737523 5286 pump result gto start price 121 weve reached 192 all targets achieved in just 74 minutes✅✅✅✅ huge quick profit 58 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 10:23:21+00:00 1.0 1280737523 5269 pump result nuls start price 934 weve reached 3253 huge quick profit 248 to know next pump coin name contact apglobals for premium membership 2021-12-02 17:46:42+00:00 1.0 1280737523 5252 pump result gxs start price 1171 weve reached 2790 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 138 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-02 13:15:18+00:00 1.0 1280737523 5226 brd result hit 2830 all targets achieved in nust 2 days✅✅✅✅ one more huge profit 60 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-02 06:10:54+00:00 1.0 1280737523 5203 santos result hit 64967 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 48 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-12-01 11:22:24+00:00 1.0 1280737523 5199 pump result req start price 822 weve reached 1340 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-01 11:19:11+00:00 1.0 1280737523 5162 pump result agix start price 417 weve reached 578 huge quick profit 38 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-11-30 18:41:52+00:00 1.0 1280737523 5069 pump result mda start price 1144 weve reached 1999 all targets achieved in just 8 minutes✅✅✅✅ huge quick profit 74 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 17:02:22+00:00 1.0 1280737523 5062 pump result evx start price 1180 weve reached 1931 all targets achieved in just 43 minutes✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 16:45:50+00:00 1.0 1280737523 5060 evx result hit 1544 3rd target achieved in just 9 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-28 15:08:21+00:00 1.0 1280737523 5029 pump result pnt start price 2315 weve reached 3471 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 07:41:50+00:00 1.0 1280737523 4931 pump result nu start price 1592 weve reached 2460 huge quick profit 54 to know next pump coin name contact apglobals for premium membership 2021-11-27 06:29:23+00:00 1.0 1280737523 4898 pump result pyr start price 5631 weve reached 9298 all targets achieved in just 75 hour✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:32:32+00:00 1.0 1280737523 4895 pump result gct start price 1956 weve reached 2784 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:07:11+00:00 1.0 1280737523 4879 pump result storj start price 3836 weve reached 6116 huge quick profit 59 in just 12 hour to know next pump coin name contact apglobals for premium membership 2021-11-26 17:25:11+00:00 1.0 1280737523 4806 pump result aion start price 315 weve reached 623 huge quick profit 97 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-11-25 17:42:23+00:00 1.0 1280737523 4778 amb result hit 113 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump coin name 2021-11-25 10:48:56+00:00 1.0 1280737523 4763 pump result wabi start price 434 weve reached 1056 huge quick profit 143 in just 41 minutes to know next pump coin name contact apglobals for premium membership 2021-11-25 08:54:28+00:00 1.0 1280737523 4758 pump result brd start price 353 weve reached 2931 all targets achieved in just 3 minutes✅✅✅✅ and pumped hard huge quick profit 730 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-25 04:19:30+00:00 1.0 1280737523 4747 pump result ramp start price 591 weve reached 844 all targets achieved in just 49 minutes✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 17:49:55+00:00 1.0 1280737523 4710 pump result drep start price 1886 weve reached 2799 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 06:32:51+00:00 1.0 1280737523 4656 pump result mda start price 1610 weve reached 2211 3rd target achieved in just 2 hour ✅✅✅ huge quick profit 37 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-23 15:03:37+00:00 1.0 1280737523 4637 pump result iris start price 212 weve reached 373 huge quick profit 75 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-11-22 18:45:10+00:00 1.0 1280737523 4576 pump result dego start price 1583 weve reached 2373 all target achieved in just 22 hour ✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 14:44:16+00:00 1.0 1280737523 4565 pump result nav start price 707 weve reached 1059 all target achieved in just 15 hour ✅✅✅✅ huge quick profit 49 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 10:22:57+00:00 1.0 1280737523 4525 pump result tct start price 60 weve reached 108 all target achieved in just 17 hour ✅✅✅✅ huge quick profit 80 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:52:44+00:00 1.0 1280737523 4521 pump result powr start price 1084 weve reached 1592 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:50:25+00:00 1.0 1280737523 4507 pump result gto start price 96 weve reached 156 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 62 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:38:21+00:00 1.0 1280737523 4502 pump result drep start price 1495 weve reached 3152 huge quick profit 110 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-11-20 18:17:49+00:00 1.0 1280737523 4497 pump result mith start price 88 weve reached 307 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 248 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:03:12+00:00 1.0 1280737523 4470 poly result hit 1500 3rd target achieved in just 5 hour✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-20 13:56:01+00:00 1.0 1280737523 4451 pump result mith start price 88 weve reached 153 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 73 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 08:15:51+00:00 1.0 1280737523 4416 mith result hit 114 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 17:24:20+00:00 1.0 1280737523 4402 lazio result hit 15493 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 14:24:07+00:00 1.0 1280737523 4397 dar result hit 5375 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:47:12+00:00 1.0 1280737523 4387 idex result hit 860 3rd target achieved in just 54 minutes ✅✅✅ one more huge quick profit 33 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:30:57+00:00 1.0 1280737523 4381 pump result idex start price 455 weve reached 669 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-19 06:46:51+00:00 1.0 1280737523 4364 pump result storj start price 2794 weve reached 4089 all target achieved in just 34 hour ✅✅✅✅ huge quick profit 138 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 17:54:04+00:00 1.0 1280737523 4323 arrgo result hit 856 3rd target achieved in just 39 minutes ✅✅✅ one more huge quick profit 37 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-18 05:46:23+00:00 1.0 1280737523 4309 pump result rose start price 344 weve reached 512 all target achieved in just 14 hour ✅✅✅✅ huge quick profit 146 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 05:10:51+00:00 1.0 1280737523 4261 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-17 03:00:18+00:00 1.0 1280737523 4224 pump result porto start price 17066 weve reached 28188 all target achieved in just 8 minutes✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 12:24:20+00:00 1.0 1280737523 4208 pump result powr start price 606 weve reached 1244 all target achieved in just 15 minutes✅✅✅✅ huge quick profit 105 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 03:58:12+00:00 1.0 1280737523 4133 pump result nas start price 87 weve reached 142 all target achieved in just 1 minute✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-14 15:08:38+00:00 1.0 1280737523 3975 adx result hit 1485 2nd target achieved in just 8 minutes ✅✅ one more huge quick profit 22 amazing calls by our team so much quick profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-11 14:39:00+00:00 1.0 1280737523 3950 pump result ens start price 9137 weve reached 18000 all target achieved in just 185 hour✅✅✅✅ huge quick profit 97 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-11 06:13:19+00:00 1.0 1280737523 3852 pump result lpt start price 5769 weve reached 15220 huge quick profit 163 to know next pump coin name contact apglobals for premium membership 2021-11-09 18:24:57+00:00 1.0 1280737523 3804 pump result uma start price 2225 weve reached 3519 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-11-08 06:44:36+00:00 1.0 1280737523 3750 adx result hit 1796 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-07 06:36:08+00:00 1.0 1280737523 3728 pump result rgt start price 7585 weve reached 11482 all target achieved in just 30 minutes✅✅✅✅ huge quick profit 51 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-06 06:43:49+00:00 1.0 1280737523 3726 you missed one more profit here is one more profit for premium members in just 30 minutes pump result 2021-11-06 06:41:27+00:00 1.0 1280737523 3694 pump result sys start price 540 weve reached 897 all target achieved in just 18 hour ✅✅✅✅ huge quick profit 66 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-05 11:54:04+00:00 1.0 1280737523 3648 fis result hit 4000 3rd target achieved in just 17 minutes ✅✅✅ one more huge quick profit 35 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-04 07:43:36+00:00 1.0 1280737523 3621 pump result badger start price 5302 weve reached 9063 all target achieved in just 13 minutes✅✅✅✅ huge quick profit 70 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-03 20:06:52+00:00 1.0 1280737523 3559 wrx result hit 3319 3rd target achieved in just 59 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-02 19:04:38+00:00 1.0 1280737523 3538 pump result oxt start price 820 weve reached 1222 one more huge profit 49 to know next pump coin name contact apglobals for premium membership 2021-11-02 16:07:19+00:00 1.0 1280737523 3456 pump result ast start price 403 weve reached 634 all target achieved in 2 days✅✅✅✅ one more huge profit 57 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-10-31 14:55:15+00:00 1.0 1280737523 3373 pump result mana start price 2237 weve reached 3713 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 199 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-30 13:42:08+00:00 1.0 1280737523 3362 pump result vite start price 189 weve reached 257 3rd target achieved in just 15 minutes ✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-10-30 12:20:20+00:00 1.0 1280737523 3355 pump result dlt start price 103 weve reached 197 huge quick profit 91 within 75 hour to know next pump coin name contact apglobals for premium membership 2021-10-30 11:20:40+00:00 1.0 1280737523 3293 pump result mana start price 1423 weve reached 1978 huge quick profit 39 in just 95 hour to know next pump coin name contact apglobals for premium membership 2021-10-29 08:40:53+00:00 1.0 1280737523 3278 pump result gto start price 78 weve reached 108 all targets achieved in just 23 minutes ✅✅✅✅ huge quick profit 115 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-29 04:37:36+00:00 1.0 1280737523 3227 go hit 93 now 3rd target achieved in just 215 hour✅✅✅ huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-27 08:11:20+00:00 1.0 1280737523 3224 pump result 1inch start price 6787 weve reached 10323 fxs binance top gainer all targets achieved in just 12 minutes ✅✅✅✅ huge quick profit 156 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-27 06:38:30+00:00 1.0 1280737523 3120 pump result evx start price 1110 weve reached 2094 huge quick profit 88 to know next pump coin name contact apglobals for premium membership 2021-10-24 17:15:46+00:00 1.0 1280737523 3088 pump result go start price 71 weve reached 98 huge quick profit 38 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-10-23 10:55:38+00:00 1.0 1280737523 3004 pump result auction start price 6090 weve reached 9710 all targets achieved in just 10 hour ✅✅✅✅ huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2021-10-21 16:36:43+00:00 1.0 1280737523 2998 pump result firo start price 1352 weve reached 1885 3rd targets achieved in just 10 minutes ✅✅✅ huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-21 09:08:07+00:00 1.0 1280737523 2976 dnt result hit 376 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 81 using 3x leverage amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-21 04:37:20+00:00 1.0 1280737523 2883 pump result req start price 408 weve reached 586 all targets achieved in just 9 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-10-17 13:00:45+00:00 1.0 1280737523 2878 pump result sys start price 518 weve reached 820 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-10-17 10:54:48+00:00 1.0 1280737523 2817 pump result nu start price 519 weve reached 4649 huge quick profit 792 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 12:54:32+00:00 1.0 1280737523 2812 pump result keep start price 716 weve reached 2010 huge quick profit 180 in just 65 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 10:49:39+00:00 1.0 1280737523 2779 pump result wabi start price 572 weve reached 800 huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-14 15:12:51+00:00 1.0 1280737523 2537 stx result hit 3289 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 56 using 3x leverage amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-09 14:19:36+00:00 1.0 1280737523 2525 pump result klay start price 3197 weve reached 7899 huge quick profit 146 in just 4 minutes to know next pump coin name contact apglobals for premium membership 2021-10-09 13:57:43+00:00 1.0 1280737523 2520 pump result data start price 249 weve reached 406 huge quick profit 63 to know next pump coin name contact apglobals for premium membership 2021-10-09 13:46:09+00:00 1.0 1280737523 2440 juv hit 3790 now 3rd target achieved in just 19 hour✅✅✅ huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-10-07 18:31:18+00:00 1.0 1280737523 2376 ong result hit 3580 3rd target achieved in just 27 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-07 05:30:37+00:00 1.0 1280737523 2321 pump result hive start price 1425 weve reached 3056 huge quick profit 114 in just 42 minutes to know next pump coin name contact apglobals for premium membership 2021-10-06 05:47:28+00:00 1.0 1280737523 2311 ardr result hit 878 3rd target achieved in just 125 hour✅✅✅ one more huge quick profit 36 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-06 05:33:29+00:00 1.0 1280737523 2274 stpt to the moon hit 235 huge quick profit 94 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-05 11:54:25+00:00 1.0 1280737523 2230 pump result ez start price 13499 weve reached 21000 huge quick profit 56 in just 5 hour to know next pump coin name contact apglobals for premium membership 2021-10-03 17:05:09+00:00 1.0 1280737523 2083 pump result stpt start price 117 weve reached 188 huge quick profit 60 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 14:31:42+00:00 1.0 1280737523 2077 pump result poly start price 1333 weve reached 1815 huge quick profit 36 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 08:59:10+00:00 1.0 1280737523 1967 pump result adx start price 1153 weve reached 1688 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-09-26 19:51:14+00:00 1.0 1280737523 1946 pump result lto start price 549 weve reached 850 huge quick profit 164 using 3x leverage in just 34 hour to know next pump coin name contact apglobals for premium membership 2021-09-26 18:19:42+00:00 1.0 1280737523 1908 pump result nuls start price 1071 weve reached 1600 huge quick profit 49 in just 11 hour to know next pump coin name contact apglobals for premium membership 2021-09-25 18:05:52+00:00 1.0 1280737523 1888 pump result celr start price 293 weve reached 447 all targets achieved in just 115 hour ✅✅✅ huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-09-25 05:15:40+00:00 1.0 1280737523 1707 pump result nmr start price 967 weve reached 1377 3rd targets achieved in just 15 hour ✅✅✅ huge quick profit 127 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-09-22 04:57:20+00:00 1.0 1280737523 1675 acm result hit 2768 3rd target achieved in just 8 minutes ✅✅✅ one more huge quick profit 27 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-21 09:06:28+00:00 1.0 1280737523 1605 pump result oax start price 407 weve reached 631 all targets achieved in just 21 hour ✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-19 17:44:50+00:00 1.0 1280737523 1540 om result hit 882 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-09-18 19:44:40+00:00 1.0 1280737523 1530 pump result cfx start price 675 weve reached 1064 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-09-18 17:26:58+00:00 1.0 1280737523 1513 nmr result hit 1298 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 76 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-18 06:18:31+00:00 1.0 1280737523 1375 front result hit 4300 3rd target achieved in just 26 hour✅✅✅ one more huge quick profit 40 amazing pump calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 16:53:22+00:00 1.0 1280737523 1370 quick result hit 13000 3rd target achieved in just 4 hour✅✅✅ one more huge quick profit 32 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 11:28:41+00:00 1.0 1280737523 1265 pump result poly start price 1997 weve reached 1378 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-09-13 06:55:26+00:00 1.0 1280737523 1107 pond result hit 273 all targets achieved in 3 days✅✅✅✅ one more huge profit 50 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-10 15:24:05+00:00 1.0 1280737523 1055 nav result hit 1282 3rd target achieved in 2 days✅✅✅ one more huge profit 37 amazing profits for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 17:42:02+00:00 1.0 1280737523 1035 front result hit 4770 3rd target achieved in just 45 hour✅✅✅ one more huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 16:39:36+00:00 1.0 1280737523 960 elf result hit 2138 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-08 04:30:56+00:00 1.0 1280737523 910 pump result rose start price 501 weve reached 717 all targets achieved in just 55 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-09-07 10:31:53+00:00 1.0 1280737523 845 pump result cdt start price 88 weve reached 137 all targets achieved in just 5 hour✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-06 09:47:48+00:00 1.0 1280737523 814 rose hit 417 finally all targets achieved in just 17 hour✅✅✅✅ huge quick profit 148 using 3x leverage amazing pump calls by our team the longer you wait more you lose profit still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-06 04:56:12+00:00 1.0 1280737523 807 pump result vib start price 155 weve reached 286 huge quick profit 84 to know next pump coin name contact apglobals for premium membership 2021-09-05 17:23:53+00:00 1.0 1280737523 754 idex result hit 195 3rd target achieved in just 15 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-05 08:43:27+00:00 1.0 1280737523 715 ctxc result hit 725 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 32 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-05 04:17:04+00:00 1.0 1280737523 642 om result hit 649 3rd target achieved in just 12 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-03 06:45:23+00:00 1.0 1280737523 604 sys result hit 661 3rd target achieved in just 44 minutes ✅✅✅ one more huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-02 14:02:36+00:00 1.0 1280737523 544 elf result hit 1260 3rd target achieved in just 12 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-01 12:22:42+00:00 1.0 1280737523 481 pump result ar start price 8674 weve reached 14000 huge quick profit 60 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:12:29+00:00 1.0 1280737523 476 pump result rose start price 238 weve reached 308 huge quick profit 30 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:06:51+00:00 1.0 1280737523 437 pump result nas start price 108 weve reached 144 3rd targets achieved in just 17 minutes ✅✅✅ huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2021-08-30 16:22:16+00:00 1.0 1280737523 430 celo hit 22800 finally all targets achieved in 3 days✅✅✅✅ one more huge profit 192 amazing pump calls by our team the longer you wait more you lose profit hope you understood ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-30 14:48:59+00:00 1.0 1280737523 202 aergo result hit 750 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 37 so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-25 06:50:46+00:00 1.0 1280737523 144 firo result hit 1968 3rd target achieved in just 25 hour✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-23 14:54:08+00:00 1.0 1280737523 122 pump result fxs start price 853 weve reached 1240 huge quick profit 45 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-08-23 06:58:41+00:00 1.0 1280737523 116 pump result lrc start price 768 weve reached 1257 huge quick profit 63 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-23 06:51:31+00:00 1.0 1280737523 105 nano result hit 1571 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 19 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-22 14:05:39+00:00 1.0 1475300028 3087 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:00:26+00:00 1.0 1475300028 3086 3 minutes left‼️ next message will be the coin name 2022-01-02 16:57:01+00:00 1.0 1475300028 3083 4 hours 45 minutes left until the pump the coin name was posted on admins group yesterday hope everyone from whales admins premium group was bought be ready❗️ 2022-01-02 12:15:13+00:00 1.0 1475300028 3081 the coin name for tomorrow pump will be post within 5 minutes hereenjoy❗️ 2022-01-01 18:48:37+00:00 1.0 1475300028 3074 next pump announcement date sunday january 2 time 1700 gmt exchange binance advantage free for all 2021-12-28 12:17:16+00:00 1.0 1475300028 3065 3 minutes left and we share strong short term signal pair btc binance 2021-12-07 15:57:20+00:00 1.0 1475300028 3064 today strong pump signal for free 2 hours 30 minutes left stay tuned‼️ 2021-12-07 13:30:43+00:00 1.0 1475300028 3062 3 minutes left‼️ next message will be the coin name 2021-12-05 14:57:01+00:00 1.0 1475300028 3041 next pump announcement date sunday december 5 time 1500 gmt exchange binance advantage free for all 2021-11-29 16:55:50+00:00 1.0 1475300028 3022 next pump announcement date tuesday november 23 time 1500 gmt exchange binance advantage free for all 2021-11-17 16:13:03+00:00 1.0 1475300028 3005 the coin we have picked to pump today is nas nas is looking perfect for a massive pump right now 2021-11-14 15:00:27+00:00 1.0 1475300028 3004 3 minutes left next message will be the coin name 2021-11-14 14:57:01+00:00 1.0 1475300028 2980 next pump announcement date sunday november 14 time 1500 gmt exchange binance advantage free for all 2021-11-12 09:43:27+00:00 1.0 1475300028 2971 check original time on pc telegram version and compare with your exchange the coin name always posted few hours before pump each pump is big guaranted profit for our premium members within 24hours 2021-11-10 01:08:20+00:00 1.0 1475300028 2966 the coin we have picked to pump is mth mth is looking perfect for a pump right now 2021-11-07 17:00:28+00:00 1.0 1475300028 2951 next pump announcement date sunday november 7 time 1700 gmt exchange binance advantage free for all 2021-11-01 17:43:34+00:00 1.0 1475300028 2944 the coin we have picked to pump is ez ez is looking perfect for a pump right now 2021-10-31 17:00:23+00:00 1.0 1475300028 2940 next pump announcement date sunday october 31 time 1700 gmt exchange binance advantage free for all 2021-10-28 06:59:57+00:00 1.0 1475300028 2939 the coin we have picked to pump is evx evx is looking perfect for a pump right now 2021-10-24 17:00:30+00:00 1.0 1475300028 2937 3 hours left until the pump‼️ hope all premium pump group members bought posted coin wait 3 hours for big profit the coin name for all members will post at 1700 gmt 2021-10-24 14:00:01+00:00 1.0 1475300028 2935 next pump announcement date sunday october 24 time 1700 gmt exchange binance advantage free for all 2021-10-18 19:20:52+00:00 1.0 1475300028 2927 less than 24 hours to next pumpthe coin name was shared on whales admins premium group enjoy 2021-10-09 19:35:00+00:00 1.0 1475300028 2925 the coin name was posted on admins pump group 6 hours left until the pump enjoy 2021-10-03 10:56:05+00:00 1.0 1475300028 2918 next pump announcement date sunday october 3 time 1700 gmt exchange binance advantage free for all 2021-09-27 06:02:38+00:00 1.0 1475300028 2915 the coin we have picked to pump is fxs fxs is looking perfect for a pump right now 2021-09-19 17:00:26+00:00 1.0 1475300028 2914 3 minutes left‼️ next message will be the coin name 2021-09-19 16:57:01+00:00 1.0 1475300028 2903 1 day 5 hours 18 minutes left until the pump the coin name will be post on whales admins group within 5 hours stay tuned❗️ 2021-09-18 11:43:59+00:00 1.0 1475300028 2885 next pump announcement date sunday september 19 time 1700 gmt exchange binance advantage free for all 2021-09-13 11:49:35+00:00 1.0 1475300028 2877 the coin name was posted 23 hours before vib pump on whales admins premium group 2021-09-06 03:13:08+00:00 1.0 1475300028 2876 the coin we have picked to pump is vib vib is looking perfect for a pump right now 2021-09-05 17:00:24+00:00 1.0 1475300028 2875 3 minutes left‼️ next message will be the coin name 2021-09-05 16:57:01+00:00 1.0 1475300028 2846 the coin name for tomorrow pump will be post within 8 hours stay tuned❗️ 2021-09-04 10:24:11+00:00 1.0 1475300028 2841 next pump announcement date sunday september 5 time 1700 gmt exchange binance advantage free for all 2021-08-29 18:33:44+00:00 1.0 1475300028 2838 the coin we have picked to pump is brd brd is looking perfect for a pump right now 2021-08-29 17:00:36+00:00 1.0 1475300028 2837 3 minutes left‼️ next message will be the coin name 2021-08-29 16:57:01+00:00 1.0 1475300028 2821 check original time on pc telegram version and compare with exchangethe coin name was posted 9 hours before guaranted pump ✅✅157 guaranted profit from pump within 9 hours for all whales admins pump group members congratulations next pump will be announced soon 2021-08-23 10:06:34+00:00 1.0 1475300028 2820 the coin we have picked to pump is nas nas is looking perfect for a pump right now 2021-08-22 17:00:30+00:00 1.0 1475300028 2819 3 minutes left‼️ next message will be the coin name 2021-08-22 16:57:01+00:00 1.0 1475300028 2811 3 hours left until the big pump on binance 2021-08-22 14:00:05+00:00 1.0 1475300028 2809 9 hours left until the pump the coin name was posted on our vip group buy slowly enjoy 2021-08-22 08:00:02+00:00 1.0 1475300028 2802 next pump announcement date sunday august 22 time 1700 gmt exchange binance advantage free for all 2021-08-10 19:41:56+00:00 1.0 1475300028 2791 3 minutes left‼️ next message will be the coin name 2021-08-08 16:57:01+00:00 1.0 1475300028 2783 3 hours left until the big pump on binance 2021-08-08 14:00:01+00:00 1.0 1475300028 2779 1 day 8 hours left until the pump the coin name will be post here within 5 hours stay tuned❗️ 2021-08-07 09:19:05+00:00 1.0 1475300028 2760 next pump announcement date sunday august 8 time 1700 gmt exchange binance advantage free for all 2021-08-03 20:07:26+00:00 1.0 1475300028 2755 check original time on pc telegram version and compare with exchangethe coin name posted 20 hours before guaranted pump ✅✅5972 guaranted profit from pump within 20 hours for all whales admins pump group members congratulations next pump will be announced soon 2021-08-01 07:43:16+00:00 1.0 1475300028 2739 the coin we have picked to pump is drep drep is looking perfect for a pump right now 2021-07-25 17:00:20+00:00 1.0 1475300028 2738 2 minutes left next message will be the coin name 2021-07-25 16:58:01+00:00 1.0 1475300028 2723 the coin name for today pump was posted yesterday on whales admins groupi hope everyone was boughthold for next 11 hours and wait for huge profit enjoy 2021-07-25 05:55:57+00:00 1.0 1475300028 2718 the coin name which will be pumped tomorrow will post within 4 hours be ready 2021-07-24 13:04:44+00:00 1.0 1475300028 2710 4 days left until post the coin name for premium members pump for all members will start 25072021 at 1700 gmt on more than 21 cooperate channels make sure you will have free btc when we will post the coin name remember‼️ 1dont share the coin name to anyone before pump will start at all free channels 2 buy slowly each admin with more than 1btc+ please part your buy order we dont need prepump and whales bots alerts 2021-07-20 15:46:24+00:00 1.0 1475300028 2698 next pump announcement date sunday july 25 time 1700 gmt exchange binance advantage free for all 2021-07-13 17:12:59+00:00 1.0 1475300028 2697 the coin we have picked to pump is poa poa is looking perfect for a pump right now 2021-07-11 17:00:22+00:00 1.0 1475300028 2694 the coin name which will be pumped tomorrow will post within 10 hours stay tuned 2021-07-10 05:19:01+00:00 1.0 1475300028 2682 3 days remaining until post the coin name on private group stay tuned❗️ 2021-07-07 15:21:34+00:00 1.0 1475300028 2673 6 days remaining until the big pump on binance be ready rules for this pump will post soon remember buy slowly without whales bots alerts and dont share the coin name to anyoneif you are member this group respect this information 2021-07-05 20:28:18+00:00 1.0 1475300028 2651 next pump announcement date sunday july 11 time 1700 gmt exchange binance advantage free for all 2021-07-03 10:52:26+00:00 1.0 1475300028 2640 next pump announcement date sunday june 27 time 5 pm gmt exchange binance advantage free for all 2021-06-24 08:52:23+00:00 1.0 1475300028 2637 the coin we have picked to pump today is wabi wabi is looking perfect for a pump right now 2021-06-24 08:47:45+00:00 1.0 1475300028 2636 wabi pump results more info the coin name posted on vip at 000000788 pump peak 000001249 profit 65 + volume from vip chat announcement 200 btc mcap changes from 30 mil to 59 mil 2021-06-24 08:46:59+00:00 1.0 1475300028 2630 2 minutes left next message will be the coin name 2021-06-20 16:58:01+00:00 1.0 1475300028 2618 pump coin was posted on private admins group 23 hours until the pump buy slowly❗️ 2021-06-19 18:10:07+00:00 1.0 1475300028 2605 next pump announcement date sunday june 20 time 1700 pm gmt exchange binance advantage free for all 2021-06-13 20:11:59+00:00 1.0 1475300028 2595 the coin name which will be pumped today will post within 1 hour on private group stay tuned 2021-06-13 06:23:44+00:00 1.0 1475300028 2591 4 days left until our pump signal 3 days left to post coin name on private group 2021-06-09 15:47:38+00:00 1.0 1475300028 2577 the coin we have picked to pump today is cnd cnd is looking perfect for a pump right now our target is 200+ 2021-06-06 17:00:27+00:00 1.0 1475300028 2576 3 minutes left❗️ next message will be the coin name 2021-06-06 16:57:01+00:00 1.0 1475300028 2568 3 hours left until our pump 2021-06-06 14:00:06+00:00 1.0 1475300028 2563 next pump announcement date sunday june 13 time 1700 pm gmt exchange binance advantage free for all 2021-06-05 22:36:31+00:00 1.0 1475300028 2562 pump coin was posted on private admins group 24 hours until the pump buy slowly❗️ 2021-06-05 17:32:01+00:00 1.0 1475300028 2541 the coin we have picked to pump today is oax oax is looking perfect for a pump right now 2021-05-30 17:00:13+00:00 1.0 1475300028 2540 3 minutes left❗️ next message will be the coin name 2021-05-30 16:57:01+00:00 1.0 1475300028 2532 3 hours left until the pump make sure you have free btc 2021-05-30 14:00:04+00:00 1.0 1475300028 2517 next pumps calendar date sunday may 30 ⏰time 1700 pm gmt exchange binance advantage freeforall +26 whale channels date sunday june 6 ⏰time 1700 pm gmt exchange binance advantage freeforall 2021-05-27 17:16:10+00:00 1.0 1475300028 2504 the coin name will post within 1 hourbuy slowly without pump alerts botseveryone with more than 1btc please part your buy order for smaller orders 2021-05-25 19:33:35+00:00 1.0 1475300028 2500 bonus pump announcement in 2 days from now date wednesday 26 may ⏰ time 5 pm gmt 1700 gmt exchange binancecom 2021-05-24 17:05:02+00:00 1.0 1475300028 2494 pump announcement the next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance advantage free for all 2021-05-23 16:09:11+00:00 1.0 1475300028 2492 dear members we are postponing our massive pump signal to 30th may due to some techinal issue our priority is to protect our members assets and avoid any risk we apologize for this delay and we hope you understand this decision is made just to protect you guys 7 days for the massive pump signal this one will be huge 2021-05-23 16:04:00+00:00 1.0 1475300028 2489 the coin name will post 2448 hours before next pumpstay tuned 2021-05-18 15:36:45+00:00 1.0 1475300028 2488 new binance pump announcement date sunday 23 may ⏰time 5 pm gmt exchange binance 2021-05-18 15:35:24+00:00 1.0 1475300028 2479 as you see the coin name always posted 24hours before pump on private group 2021-05-16 18:11:52+00:00 1.0 1475300028 2477 tomorrow pump only for vip members and admins friendly crypto channelsthe coin name to buy is dltbuy slowly and wait for pumpexpected guaranted profit 1530 within 24 hoursdont share coin to anyoneenjoy 2021-05-16 18:05:52+00:00 1.0 1475300028 2476 35 minutes left until the pump for vips and admins group be ready‼️ 2021-05-16 16:36:59+00:00 1.0 1475300028 2470 next pump announcement date sunday may 16 time 5 pm gmt exchange binance advantage free for all +26 whale channels 2021-05-12 15:44:29+00:00 1.0 1475300028 2454 3 minutes left next message will be the coin name 2021-05-01 16:57:01+00:00 1.0 1475300028 2452 10 minutes left until our pump 2021-05-01 16:50:07+00:00 1.0 1475300028 2438 coin name will post within 3 hours 2021-04-30 12:59:49+00:00 1.0 1475300028 2430 next pump announcement date saturday may 1 time 1700 pm gmt exchange binance advantage free for all 2021-04-29 15:36:11+00:00 1.0 1475300028 2425 tommorow next pump the coin name to buy is idex dont share to anyone before pump will starteveryone who want participate with 1btc+ please split your buy order on smaller partsdont alarm pump bots 30 hours left to start pumpexpected profit 80120 enjoy 2021-04-27 18:07:44+00:00 1.0 1475300028 2424 24hours until the pump❗️ pump coin name rdn buy slowly without pumps alert bots enjoy 2021-04-27 18:07:34+00:00 1.0 1475300028 2416 2 minutes left next message will be the coin name 2021-04-25 16:58:01+00:00 1.0 1475300028 2411 40 minutes left until our big pump be ready❗️ 2021-04-25 16:16:52+00:00 1.0 1475300028 2405 10 hours left until the next pump 2021-04-25 07:00:01+00:00 1.0 1475300028 2403 5 minutes left next message will be the coin name 2021-04-24 20:55:07+00:00 1.0 1475300028 2387 next pumps calendar date sunday april 24 time 9 pm gmt exchange binance advantage free for all date sunday april 25 time 1700 pm gmt exchange binance advantage free for all 2021-04-22 16:30:08+00:00 1.0 1475300028 2383 we have decided to schedule a new bonus pump at 24 april details of the next pump exchange binancecom international date 24april2021 saturday time 9pm gmt coin name will post tomorrow on private group next pump will be in the weekend this usually has a higher volume 2021-04-22 15:38:12+00:00 1.0 1475300028 2379 check original time on pc telegram version and compare with exchangecoin name was posted more than 24 hours before pump 2021-04-21 21:56:22+00:00 1.0 1475300028 2378 allright tommorow will be pump with our cooperate channelsthe coin name to buy is via viacoin dont share to anyone before pump will starteveryone who want participate with 1btc+ please split your buy order on smaller partsdont alarm pump bots 30 hours left to start pumpexpected profit 120250 enjoy 2021-04-21 21:55:40+00:00 1.0 1475300028 2374 2 minutes left next message will be the coin 2021-04-21 20:58:24+00:00 1.0 1475300028 2351 next pump announcement date april 21 time 9 pm gmt exchange binance advantage free for all 2021-04-17 20:32:30+00:00 1.0 1475300028 2339 next pump announcement date sunday april 25 time 1700 pm gmt exchange binance advantage free for all 2021-04-15 13:57:15+00:00 1.0 1475300028 2331 check original time on pc telegram version and compare with exchangecoin name was posted more than 24 hours before pump 2021-04-11 17:32:25+00:00 1.0 1475300028 2330 less than 24hours until the pump❗️ pump coin name via buy slowly without pumps alert bots enjoy 2021-04-11 17:31:01+00:00 1.0 1475300028 2328 5 minutes left next message will be the coin name 2021-04-11 16:57:02+00:00 1.0 1475300028 2322 1 hour 30 minutes left until the pump i hope everyone from vip bought the coinset posted selling targets orders without any risk enjoy 2021-04-11 15:31:22+00:00 1.0 1475300028 2318 2 hours left until our big pump be ready 2021-04-11 15:01:22+00:00 1.0 1475300028 2287 4 days left for the massive pump signal exchange binance targets expected 300500 2021-04-06 16:42:33+00:00 1.0 1475300028 2275 dear members we are postponing our massive pump signal to 10th april saturday due to some techinal issue our priority is to protect our members assets and avoid any risk we apologize for this delay and we hope you understand this decision is made just to protect you guys 7 days for the massive pump signal this one will be huge 2021-04-04 16:01:52+00:00 1.0 1475300028 2254 next pump calendar date sunday april 11 time 1700 pm gmt exchange binance advantage free for all 2021-03-31 08:56:42+00:00 1.0 1475300028 2242 tomorrow will be real huge pump only for vip group members coin to buy is mtl please respect our hard work and dont share this info to anyone its only for our group members part your orders and buy slowly without pump bots alerts wait 24 hours to pump expected profit more than 100 2021-03-29 19:40:05+00:00 1.0 1475300028 2240 next pump announcement date sunday april 4 time 4 pm gmt exchange binance advantage free for all date sunday april 11 time 1700 pm gmt exchange binance advantage free for all 2021-03-29 14:42:14+00:00 1.0 1475300028 2191 next pump announcement date sunday march 28 time 5 pm gmt exchange binance advantage free for all 2021-03-23 15:44:37+00:00 1.0 1475300028 2177 5 minutes left next message will be the coin name 2021-03-21 16:55:10+00:00 1.0 1475300028 2130 pump announcement next pump official details date sunday march 21 time 1700 pm gmt exchange binance advantage free for all 2021-03-09 16:09:43+00:00 1.0 1475300028 2127 pump results ppt binance pump results coin posted on vip at price6622 peak price35000 peak gain 428 2021-03-08 02:47:30+00:00 1.0 1475300028 2126 today pump coin name ppt buy slowly without pumps alert bots 2021-03-07 17:00:37+00:00 1.0 1475300028 2125 5 minutes left next message will be the coin name stay tuned❗️ 2021-03-07 16:55:14+00:00 1.0 1475300028 2099 new pumps announcement date saturday march 6 time 9pm gmt exchange binancecom date sunday march 7 time 5pm gmt exchange binancecom next info soon stay tuned 2021-03-02 04:28:47+00:00 1.0 1475300028 2086 24 hours left for the big pump signal exchange binance global targets are 300 500 date and time 26 feb 1200pm est 900am pst spread the word and keep inviting your friends to our channelmore members bigger the pump ⭐️ 2021-02-25 20:12:35+00:00 1.0 1475300028 2074 next pump announcement date and time date 26th feb time 900 am pst 1200pm est this pump will be only for vip members ffa pump date 2702 2021-02-23 20:45:59+00:00 1.0 1475300028 2058 last 2 days pumps results gvt binance pump results start price 919 peak price 1651 peak gain 79 nxs binance pump results coin posted on vip at price2408 peak price10000 peak gain 315 2021-02-21 17:44:40+00:00 1.0 1475300028 2057 new pump announcement next pump details exchange binancecom date 27feb2021 time 9pm gmt 2021-02-21 17:36:33+00:00 1.0 1475300028 2056 today pump coin name nxs 2021-02-21 17:00:11+00:00 1.0 1475300028 2055 5 minutes leftnext message will be the coin name 2021-02-21 16:55:27+00:00 1.0 1475300028 2048 pump announcement next official pump will be scheduled for date 21feb2021 sunday time 5 pm gmt exchange binancecom international advantage free for all 2021-02-20 17:47:57+00:00 1.0 1475300028 2046 3 minutes leftnext post will be the coin name 2021-02-20 16:57:45+00:00 1.0 1475300028 2042 3 hours left until the pump coin name posted on pump group 2021-02-20 13:59:47+00:00 1.0 1475300028 2025 next pump announcement details exchange binancecom international date 20feb2021 saturday time 9 pm gmt next pump will be in the weekend this usually has a higher volume 2021-02-15 14:48:02+00:00 1.0 1475300028 2018 10 hours left to pump today coin is nebl buy slowly 2021-02-14 08:26:49+00:00 1.0 1475300028 2016 pump results coin name posted at price 000004371 highest price 000010000 profit 128 binancewbg 2021-02-14 08:25:08+00:00 1.0 1475300028 2015 pump coin name nebl 2021-02-13 21:00:13+00:00 1.0 1475300028 2014 5 minutes left next message will be the coin name 2021-02-13 20:55:58+00:00 1.0 1475300028 2006 12 hours left until big pump coin name will post on vip group within 2 hours 2021-02-13 07:07:21+00:00 1.0 1475300028 1994 next pump announcement details exchange binancecom international date 13feb2021 saturday time 9pm gmt next pump will be in the weekend this usually has a higher volume 2021-02-11 06:34:13+00:00 1.0 1475300028 1989 compare coin name post with your timezone and exchange 2021-02-10 21:37:36+00:00 1.0 1475300028 1988 today pump coin name is mda buy slowly without whale bot alerts 2021-02-10 21:36:37+00:00 1.0 1475300028 1986 2 minutes left next message will be the pump coin name 2021-02-10 20:58:42+00:00 1.0 1475300028 1968 1 day 3 hours left until the pump 2021-02-09 18:08:36+00:00 1.0 1475300028 1967 next pump announcement details of the next pump exchange binancecom international date 10feb2021 wednesday time 9pm gm 2021-02-08 17:03:17+00:00 1.0 1475300028 1948 today pump coin name brd 2021-02-06 18:38:33+00:00 1.0 1475300028 1940 today pump coin name vib buy slowly 2021-02-06 10:32:49+00:00 1.0 1475300028 1938 next pump announcement saturday feb 6th 1800 gmt 1pm est pump is on binancecom not binanceus 2021-02-06 06:26:09+00:00 1.0 1475300028 1935 3 minutes leftnext post will be name of pump coin 2021-02-05 20:57:47+00:00 1.0 1475300028 1927 you missed pump signal alertour bot detect pump 20 minutes beforecheck original time nad compare with exchange 2021-02-05 17:35:46+00:00 1.0 1475300028 1920 1 day 7 hours left for pump coin name posted on vip group 2021-02-04 13:34:30+00:00 1.0 1475300028 1913 next pump announcement date 05feb2021 friday ⏰ time 9 pm gmt exchange binance 2021-02-04 02:45:06+00:00 1.0 1475300028 1909 30 minutes left until the pumplog in your binance accountcoin name posted on vip 2021-02-03 20:33:34+00:00 1.0 1475300028 1904 dear members 10 hours and 30 minutes left untill big pumpcoin name posted on vip group 2021-02-03 10:33:36+00:00 1.0 1475300028 1898 exactly 3 hours left until the big pump 2021-02-02 18:04:10+00:00 1.0 1475300028 1894 next pump announcement date tuesday 2 february ⏰ time 9 pm gmt exchange binance 2021-02-01 00:04:09+00:00 1.0 1475300028 1891 1 hour left untill next pump coin name posted on vip group 2021-01-31 20:02:14+00:00 1.0 1475300028 1885 1 hour left for pump coin name posted on vip 2021-01-31 16:02:55+00:00 1.0 1475300028 1878 50 minutes left until the pump coin name posted on vip group 2021-01-30 16:10:14+00:00 1.0 1475300028 1868 official pump announcement in 9 days date saturday 6 february ⏰ time 9 pm gmt 2100 gmt exchange binancecom saturday 6 feb 2021 900 pm gmt london saturday 6 feb 2021 400 pm est new york sunday 7 feb 2021 600 am gmt+9 seoul 2021-01-29 04:44:15+00:00 1.0 1475300028 1827 30 minutes left until the pump pumped coin will have btc pairing only it means that you should prepare bitcoins for this pump 2021-01-20 16:31:19+00:00 1.0 1475300028 1826 pump announcement in 24 hours date wednesday 20 january ⏰ time 5 pm gmt 1700 gmt exchange binancecom this pump will be ffa free for all which means that no one will have a time advantage please share this event on social media such as reddit discord twitter medium bitcoin talk and others so this pump reaches as many people as possible because thanks to this we will make a bigger profit on the pump wednesday 20 jan 2021 500 pm gmt london wednesday 20 jan 2021 1200 pm est new york thursday 21 jan 2021 200 am gmt+9 seoul 2021-01-19 19:55:22+00:00 1.0 1475300028 1812 2 min leftnext post coin name 2021-01-14 20:58:59+00:00 1.0 1475300028 1809 today pump 21 gmt coin name will share on vip group within 1 hour 2021-01-14 17:20:57+00:00 1.0 1475300028 1781 dear members next pump announcement the details of the next pump are as follows exchange binance date 09jan2021 time 9pm gmt 2021-01-09 01:44:34+00:00 1.0 1475300028 1779 snm pump results ◾️ profit 6667 ◾️ volume 1027 btc in 6 minutes ◾️ high 35 sats ◾️ start 21 sats ◾️ date 08012021 2021-01-08 22:37:10+00:00 1.0 1475300028 1774 next pump today 22 pm coin name will post on vip within 15 minutes buy slowly 2021-01-08 16:15:16+00:00 1.0 1475300028 1769 today big pump coin name to buy ppt buy slowly without whale alert expected profit 5080 2021-01-08 10:41:58+00:00 1.0 1475300028 1749 ​btc usdt update the story of today morning is the large pullback in btc from 34800 the decline extended over 5000 accounting for a pullback of nearly 20 from the ath btc very nicely retested our support line at 28400 yearly open which worked as a liquidity pool and btc bounced from there also the gap that was opened today on cme chart at around 29000 has been closed now we also have other gaps on the chart that have formed over recent weeks at 23795 and 18460 as we stated in the previous free btc update we are at a major bull market dips are for buying not panic selling it is that easy to be a day trader simply buy low and sell high unfortunately 190000000 in long positions was liquidated on binance within 10 minutes today the positive thing is that most of the strong altcoins held the value in satoshi pair during the btc crash signalling a strength in the market and many opportunities to make loads of profit on alts in coming weeksmonths something else to note this week is the return of us and european trading desks after the christmas holiday period we are not expecting the dipbuying to stop until a bearish catalyst emerges especially since exchange balances remain low whale binance group 2021-01-04 21:25:47+00:00 1.0 1475300028 1237 hard pump whals date 13th july ⏱ time 4 pm gmt exchange binance only vip membres early 1h expect 1525✈️✈️✈️ 2020-07-13 05:37:13+00:00 1.0 1475300028 1178 as you see next free signal from whales vip group 20 within 48 hours no scam prepumps only strong ta short term signals with guaranted profit minimal one pump a week and always you know coin name few hours before whales group is limited to 50 places 2020-07-04 17:14:32+00:00 1.0 1475300028 1041 want next coin name few hours before pump join to our vip 2020-06-12 17:16:14+00:00 1.0 1475300028 886 next coin hard pump 30 within 1 hour coin name will be add to whale binance vip group 2020-05-24 13:39:23+00:00 1.0 1475300028 454 binance will list rupiah token idrt usarticles360042362191 time zone 4 utc 4 minutes left to pump 2020-04-17 03:56:33+00:00 1.0 1475300028 389 pump signal was posted on vip at 589 sat kmd hit 669 fast 1358 profit within 1 hour congratulations for vip members 2020-04-13 08:41:42+00:00 1.0 1335837027 808 15 minutes left until pump next post will be the coin with the buy link chart link and contract address goodluck rebels 2021-08-19 19:45:10+00:00 1.0 1335837027 805 pump on pancakeswap 19 august at 20gmt ✅get ready with metamasktrustwallet and with bnbs filled exactly at 20gmt we will post all the needful links for you to buy and watch the pump ✅it is always better if you set up your slippage at 15 20 to make the trade going through ✅wait few minutes until pump will explode in few waves do not hurry with sell lets do it huge again 2021-08-18 22:23:06+00:00 1.0 1335837027 760 2 hours left until pump on pancakeswap today at 20gmt stay tuned we will post the buy link and chart link together with contract address exactly at 20gmt stay tuned 2021-08-04 18:00:11+00:00 1.0 1335837027 756 pump announcement for wednesday | 4 august | 2000 gmt hey rebels are you ready for another round of great pump event on pancakeswap be ready with your metamask or trustwallet and bnb for tomorrow 4august at 20gmt because we will make a history once again together we are strong lets go ✅ pump details ♻️exchange pancakeswap bsc pairing bnb target 3000 gain 2021-08-03 19:36:14+00:00 1.0 1335837027 742 today pump was amazing rebels 1027 increase and lasting for couple of minutes which is great looking forward for another event with this powerful community 2021-07-28 20:40:56+00:00 1.0 1335837027 738 4 hours left until pancakeswap pump get your bnb and metamasktrustwallet ready for 20gmt hour stay tuned on our telegramdiscord and join us on pancakeswap slippage 15 20 if trade doesnt go through then increase 2021-07-28 16:00:03+00:00 1.0 1335837027 737 last minute pump today at 20gmt ➡️wednesday | 28 july | 2000 gmt⬅️ pump details ♻️exchange pancakeswap bsc pairing bnb ⚡️target 2000 gain this will be a massive collab like the last one our communities combined well have over 90000 pumpers for this upcoming pump stay tuned lets smash our price target and make this a success for all rebels ps you need to have bnb in a wallet like metamask or trustwallet in order to be able to participate be sure you checked pancakeswap tutorial video 2021-07-28 05:58:18+00:00 1.0 1335837027 718 amazing pump again rebels we moved the low mcap coin above 1 100 00 usd absolutely great results we wont stop we will continue to grow our community and providing you the best pumps in this game do not forget to follow us on discord as well have a great time with rebels 2021-07-17 20:40:26+00:00 1.0 1335837027 715 2 hours left until our massive pump on pancakeswap we will be giving the signal at 2000 gmt today what do you need to participate ✅have your wallet be connected to bsc binance smart chain ✅ have bnb ready in metamask or trust wallet to buy the coin were pumping ✅ have swap and rebels discordtelegram channel open 510 minutes before the pump lets go rebels 2021-07-17 17:59:34+00:00 1.0 1335837027 714 pump announcement saturday | 17 july | 2000 gmt pump details exchange pancakeswap bsc pairing bnb target 2000 gain this will be a massive collab our communities combined well have over 90000 pumpers for this upcoming pump lets smash our price target and make this a success for everyone ps you need to have bnb in a wallet like metamask or trust wallet in order to be able to participate 2021-07-17 10:40:13+00:00 1.0 1335837027 658 the pump hold event today was nothing else than pure gold rebels team at its peak again more than 870 000 volume unbelievable you guys are amazing thank you for all of your positive messages writing to us after today event we are the best and there is some great news we aint go nowhere we stay here and we will rock it more and more until all of them folks realise we are the best team ever yeeeehaaa 2021-06-21 21:34:42+00:00 1.0 1335837027 654 2 hours left until uniswap pump hold get your eth ready to make profits its highly recommended to put slippage at 15 20 to make the trade goes through 2021-06-21 18:00:04+00:00 1.0 1335837027 653 pump hold event 21 june at 20 gmt dear rebels army after last week succesful events we are here with another pump hold event on uniswap we will show that unicorn what it really means to crash the moon and we pump out the green juice out of the amazing gem there on uniswap we will announce all the needful links for you to join the pump exactly on 21 june at 20 gmt so stay ready with your eth and metamasktrustwallet prepared for another rumble in the jungle 2021-06-21 14:01:42+00:00 1.0 1335837027 651 pump hold event 21 june at 20 gmt dear rebels army after last week succesful events we are here with another pump hold event on uniswap we will show that unicorn what it really means to crash the moon and we pump out the green juice out of the amazing gem there on uniswap we will announce all the needful links for you to join the pump exactly on 21 june at 20 gmt so stay ready with your eth and metamasktrustwallet prepared for another rumble in the jungle 2021-06-20 22:02:09+00:00 1.0 1335837027 644 15 mins left until pump hold event on uniswap next post will be all the coin links to buy on uniswap chart and all the contacts lets go pump this coin and give it the value it deserves 2021-06-16 19:45:00+00:00 1.0 1335837027 642 3 hours left until pump hold on uniswap at 20gmt get ready 2021-06-16 17:00:08+00:00 1.0 1335837027 641 6 hours left until pump hold event on uniswap at 20gmt be ready to pump and hold amazing viral nft project supported by many famous influencers if you ask about the moon then this is the way there with no doubts they got ownership renounced liquidity locked and they are one of the best trendings last week coinmarketcap and coingecko already coning these days we dont talk about some small baby project here we are talking about atomic bomb with so much potential that its really very rare to see prepare your eth prepare your slippage at 15 or higher and wait until 20gmt when we will announce the links for you to buy check join their community and watch the chart growing 6 hours left lets go pumpers 2021-06-16 14:00:10+00:00 1.0 1335837027 633 1 hour left until pump on pancakeswap at 20gmt it is timeee get ready dear rebels pumpers 2021-06-15 19:00:12+00:00 1.0 1335837027 632 3 hours left until pump on pancakeswap at 20gmt get your metamasktrustwallet ready after few days of rest we go big rock n roll today again 2021-06-15 17:00:06+00:00 1.0 1335837027 631 6 hours left until pump on pancakeswap be ready for huge cooperation today at 20gmt on pancakeswap pump buy it squeeze it sell it buy yourself some golden chain thats what we do today 6 hours left until pure classy pump 2021-06-15 14:00:05+00:00 1.0 1335837027 629 pancakeswap pump announcement hey rebels today is another sweet pumping day on pancakeswap lot of you write us you miss some good classic pump events so we organised one huge pump for you involved lot of other servers on discord and channels on telegram also plan is super easy we announce the coin link today 15th june exactly at 20gmt and we pump the hell out of that pancakeswap coin it will be low market cap coin so be ready for the moon ride again prepare your metamask or trustwallet put bnb there and get ready for another huge pump rodeo yeeehaaa 2021-06-15 05:50:15+00:00 1.0 1335837027 594 4 hours left until gem announcement 1st time in history you can join rebels in this project we will support fully again and again pump it hype it moon it get ready for pancakeswap 4 hours left 2021-06-09 15:00:04+00:00 1.0 1335837027 590 today uniswap pump of weiner coin results unbelievable craziness at its peak keep going rebels without any doubt we are the best here in that game we will deliver much more of these quality pumps to you hoooray 2021-06-08 21:27:17+00:00 1.0 1335837027 583 2 hours left until uniswap pump heat is on 2021-06-08 18:00:06+00:00 1.0 1335837027 582 3 hours left until uniswap pump get your eth ready to make profits its highly recommended to put slippage at 15 20 to make the trade goes through 2021-06-08 17:00:07+00:00 1.0 1335837027 581 5 hours left until the moment when unicorn will move uniswap moon to another level clearly said we pump in 5 hours on uniswap so get your shitcoin wallets ready and lets do the history again project we are going to pump is absolutely legit already listed on coinmarketcap so trust us that we choose again the best spot for you to earn money lets go 2021-06-08 15:00:01+00:00 1.0 1335837027 576 5 mins left next post will be the coin name and all the needful links remember even rebels are holding to the moon this week 2021-06-07 19:55:14+00:00 1.0 1335837027 570 4 hours left until hodl event on pancakeswap are you ready to see the gem to buy already with an app on google play huge marketing behind this project waiting this week rebels gonna pump this project again and again until it reach the damn moon 4 hours left to go get ready your metamask and trustwallet 2021-06-07 16:00:05+00:00 1.0 1335837027 567 well it seems like only by posting some promoted coin that coin is pumping even without it being a pump event unvelievable you are amazing rebels love you all ❤️ 2021-06-06 13:51:18+00:00 1.0 1335837027 563 5 mins next post will be the coin name good luck 2021-06-05 19:55:00+00:00 1.0 1335837027 558 6 hours left until pump on hobit we will announce coin exactly at 20 gmt it will be in usdt pair so prepare your usdt on your hotbit account and wait for our signal watch the tutorial below to see how to buy and sell fast on hotbit mhtk 2021-06-05 14:00:01+00:00 1.0 1335837027 557 hotbit pump announcement we will do a huge pump again like every saturday tomorrow 5th june at 20gmt on hotbit rebels are pumping even during the weekends see you tomorrow we will squeeze the coin on hotbit like never before 2021-06-04 21:56:14+00:00 1.0 1335837027 549 3 hours left until pancakeswap pump with rebels be ready to pump the moon out of binance smart chain token which we will post here exactly at 21 gmt we will post direct buy link for you token address and chart link as well so only thing you have to do is to be prepared with your bnb on your metamask or trustwallet and buy fast see you soon rebels today pancakeswap will explode 2021-06-04 18:00:01+00:00 1.0 1335837027 548 rebels pump event announcement lot of you write us to organise some real rebels pump again you look thirsty like never before so we finally decided lets do it today in less than 5 hours at 21 gmt we will do the massive pump on pancakeswap where we squeeze the hell out of the coin make it moon like everytime get ready your metamasks and trustwallet at 21 gmt everyone will see again that rebels are the best of the best in that game see you soon guys less than 5 hours left lets rock n roll again 2021-06-04 16:07:20+00:00 1.0 1335837027 534 2 hours left until moon pump on pancakeswap get ready with your bnb to swap we will post all the needful links for you to be able to buy fast exactly at 20 gmt 2021-05-31 18:00:02+00:00 1.0 1335837027 533 4 hours left until pump event goal is clear jump in buy fast as much as possible and increase the marketcap to the moon there will be few waves coming from our whale support so get ready your metamask and trustwallet we will make this moon ride on pancakeswap v2 today at 20gmt so as you can see 4 hours left 2021-05-31 16:00:02+00:00 1.0 1335837027 532 after yesterday hodl event we are here again with classic old type stunning pump event today we will pump the out of the coin on pancakeswap so you rather do not miss this today 31 may at 20 gmt plan is easy jump in fast and make a profit from the huge waves coming immediately at 20 gmt we will announce the coin with direct link for pancakeswap as always we made whole lotta changes to prevent our events from any leakage or prepumps so there is no way to stop rebels from pumping to the moon again stay tuned and get ready your metamask and trustwallet because today is a sweet pancakeswap day in the case you need some answers do not hesitate rebelsbusiness 2021-05-31 09:14:50+00:00 1.0 1335837027 525 2 hours left until hodl event we will pump and hold the coin which is already listed on coinmarketcap we will have a hands and hodl this coin until it flies to the moon once we launch it we will shill it through the network to bring attention of this project lets go for a real deal in 2 hours 17 gmt belongs to us 2021-05-30 15:00:02+00:00 1.0 1335837027 522 it was great pump of 782 peak guys we are the best ever so stay tuned for next events we prepare for us beautiful hold event tomorrow so get ready your crypto pumps rebels team 2021-05-29 16:40:07+00:00 1.0 1335837027 520 5 mins left next post will be the coin name good luck 2021-05-29 14:55:03+00:00 1.0 1335837027 517 1 hour until hotbit huge pump please check the tutorial on how to buy and how to sell link mhtk 2021-05-29 14:00:03+00:00 1.0 1335837027 516 2 hours until pump on hotbit exactly in 2 hours at 15 gmt we will post name of the coin here in usdt pair so you have your hotbit search bar ready to be able to put that name there and buy as fast as possible wait for profit and take it in the case you have some question do not hesitate and contact our admin rebelsbusiness to advice you get ready 2021-05-29 13:00:01+00:00 1.0 1335837027 515 3 hours left until next huge pump on hotbit 2021-05-29 12:01:13+00:00 1.0 1335837027 514 5 hours until pump on hotbit prepare your usdt as coin we will pump will be in usdt pair 2021-05-29 10:00:04+00:00 1.0 1335837027 512 get ready for weekend hotbit pump again we will make that sweet peak flight as always rebels are something like led zeppelin of crypto pumps or tiger woods in his prime join the hotbit weekend event at 15gmt as usual date 29 5 2021 time 15gmt exchange hotbitio pair xxxxusdt 2021-05-28 21:37:17+00:00 1.0 1335837027 493 5 mins left next post will be with direct link to buy on uniswap and link to watch the chart surprise info coin we are about to pump and hold is one of the top gainers on coingecko last days so if you have been hesitating to jump in now you know you must jump in 2021-05-26 20:55:01+00:00 1.0 1335837027 486 5 hours and 30 mins left until pump hold event on uniswap project we are going to pump is pure gem for all of those who mean it seriously with crypto its listed on coingecko got nft store and staking system already established so as you can see this time it is a real deal not like many of those fresh virgins lasting for one day eth fees look great for today so do not hesitate to have them prepared to swap once we post direct link on uniswap here be ready to join our pump hold event and give this coin value it deserves meanwhile check tutorial for uniswap to be sure you are well prepared for this great event 6g 2021-05-26 15:36:40+00:00 1.0 1335837027 485 today we have wonderful project for you to pump and hold this project is for minds so if you want to invest in something really solid and finally buy new lambo then this project is a real deal for you nft coin with extremely huge potential already listed on coingecko so we are talking here about established project not a newborn fragile flower all rebels are excited for this uniswap event today so join us and be a part of this ride together we buy together we hold together we buy lambo on the moon get ready for uniswap pump hold event guys at 21gmt stay tuned dear rebels we will keep you updated with all needful informations during the day sponsored 2021-05-26 09:12:37+00:00 1.0 1335837027 477 2 hours left until pump on pancakeswap make sure you have your metamask and trustwallet ready and remember if your deal is not going through then you increase the slippage sometimes even above 30 or decrease the amount you want to buy with on that one transaction see you in 2 hours at 20 gmt with the direct link on pancakeswap for that pumping token 2021-05-25 18:00:13+00:00 1.0 1335837027 476 3 hours left until another tasty pump on pancakeswap today we will go through v2 we will post a direct link at 20 gmt for you and token address as well so you just open the link and swap the coin with your bnb lets go 2021-05-25 16:59:32+00:00 1.0 1335837027 467 5 mins next post will be coin name and link goodluck 2021-05-23 20:55:31+00:00 1.0 1335837027 461 4 hours left until another tasty pump on pancakeswap today we will go through v2 we will post a direct link at 21 gmt for you so you just open the link and swap the coin with your bnb lets go to the moon again 2021-05-23 16:59:47+00:00 1.0 1335837027 452 2 hours until next big pump on hotbit hey rebels here are some instructions before another day well make a history of this group great again please read them well so you can get ready properly 1 have your usdt prepared on your hotbit account as the coin we will pump will be in usdt pair 2 today at 1500 gmt you need to have your telegram and discord open both in the case one of them will have some server issues so you wont miss the coin name 3 after previous amazing pump result we put even more money investing into the next pump and make it up by huge support of our whales and hundreds of thousands of members from other pumping groups and servers so you can get ready for really huge peaks again 4 we chose hotbit on the purpose because there wont be market price deal available so it wont be possible for any automatic bots to ruin our pump and overtake you we are the only group where you can find our pumps lasting for so long so lets call it again fast fingers action where each person got the same chance to make his profit by selecting his buying order directly from order book no advantage for anyone equal for all absolutely no vip do not believe any scammers please 5 last but not the least be ready for buying immediately after announcement of the coin name at 1500 gmt and after if you decide to sell you can sell some part of your amount do not sell everything at once be ready for couple of waves support from our whales which will make price going higher and higher just remember one thing when you buy you buy from red orders as much as you can when you sell you sell to green orders thats how to make it easier instead of manually putting the price any questions you may have send them to our admin rebelsbusiness and he will help you get ready for real crypto bombs guys date 22 may time 1500 gmt exchange hotbitio pair usdt pair our link for discord your crypto pumps rebels team 2021-05-22 12:59:53+00:00 1.0 1335837027 451 less than 4 hours left until pump on hotbit we will pump coin in usdt pair so get ready at 15gmt this will be huge 2021-05-22 11:01:35+00:00 1.0 1335837027 450 6 hours left until pump on hotbit get your usdt ready and wait for 15gmt we will announce the coin pair to be pumped here lets go 2021-05-22 09:00:26+00:00 1.0 1335837027 448 dear rebels after one week we are back again to provide with the best of the best pump event again like before prepare your hotbit accounts make sure you have usdt ready as our coin will be in usdt pair we will announce coin name at 15 gmt this saturday 22 may with all the servers support we will have above 200k members participating again so this one will be huge like never before stay tuned on our telegram and discord for any questions write directly to admin see you on saturday everyone ✅ exchange hotbit date 22 may ⌛️ time 15 gmt pair usdt 2021-05-21 23:01:00+00:00 1.0 1335837027 443 15 minutes left be ready for the link on pancakeswap to buy and hold event this is not a classic pump this is pump and hold with full marketing on the way for long term 2021-05-21 21:45:19+00:00 1.0 1335837027 436 5 minutes next post will be the buy link of the coin good luck 2021-05-20 20:55:02+00:00 1.0 1335837027 425 5 minutes next post will be the buy link of the coin good luck 2021-05-19 20:55:14+00:00 1.0 1335837027 416 5 minutes next post will be the buy link of the coin good luck 2021-05-18 20:55:05+00:00 1.0 1335837027 412 1 hour until pancakeswap pump we will do on v2 today we will send you here direct link to buy the coin on pancakeswap so you just open the website and swap do not forget on slippage adjustment between 15 20 if it still does not work then you decrease the buying amount for one transaction 1 hour to go at 21gmt we rock it again insanely 2021-05-18 20:00:15+00:00 1.0 1335837027 408 2 hours to pump on pancakeswap please check carefully these pictures to be prepared for the most frequently made mistakes while buying on pancakeswap so you can be ready to buy smoothly adjust your slippage between 15 20 and if your deal doesnt go through you decrease the amount of buying see you in 2 hours 2021-05-18 19:00:09+00:00 1.0 1335837027 403 5 minutes next post will be the buy link of the coin good luck 2021-05-17 20:55:47+00:00 1.0 1335837027 399 1 hour until pancakeswap pump we will do on v1 today we will send you here direct link for the coin so once you open the website follow the process on attached picture 1 hour to go at 21gmt we rock it again insanely 2021-05-17 20:00:03+00:00 1.0 1335837027 395 2 hours to pump on pancakeswap please check carefully these pictures to be prepared for the most frequently made mistakes while buying on pancakeswap so you can be ready to buy smoothly adjust your slippage between 15 20 and if your deal doesnt go through you decrease the amount of buying see you in 2 hours 2021-05-17 19:00:07+00:00 1.0 1335837027 390 5 minutes next post will be pancakeswap buying link for the coin good luck 2021-05-16 20:55:01+00:00 1.0 1335837027 388 15 minutes until pump on pancakeswap get ready your bnb 2021-05-16 20:45:13+00:00 1.0 1335837027 387 30 minutes left until last minute pancakeswap pump 2021-05-16 20:30:03+00:00 1.0 1335837027 386 sponsored last minute pump on pancakeswap stay tuned at 21 gmt today 1 hour left for another sweet pancakeswap pump so be ready get your bnb there and we will post here the address of the token to be pumped stay tuned 2021-05-16 19:58:54+00:00 1.0 1335837027 378 15 minutes left until announcement we will post the address directly for buying 2021-05-15 19:15:11+00:00 1.0 1335837027 376 sponsored last minute pump on pancakeswap stay tuned at 1930gmt today 1 hour left for another sweet pancakeswap pump so be ready in 1 hour get your bnb there and we will post here the address of the token to be pumped it will be great as always 2021-05-15 18:35:20+00:00 1.0 1335837027 373 5 minutes left next message will be the coin name everyone 2021-05-15 14:55:06+00:00 1.0 1335837027 369 1 hour left until pump on hotbit 2021-05-15 14:00:22+00:00 1.0 1335837027 368 everyone it is 2 hours until next hotbit pump at 15gmt get your accounts ready to be well prepared for this event lets go 2021-05-15 12:59:13+00:00 1.0 1335837027 367 less than 4 hours until the pump on hotbit we will pump the coin in usdt pair at 15 gmt check youtube tutorial before so you will be well prepared 2021-05-15 11:08:18+00:00 1.0 1335837027 366 what an insane pump guys we did ath again this time on foxydoge 2m increase on mcap wow in less than 8 hours we are going to pump hotbit in a huge way so stay tuned get your usdt ready and we will tell you the coin at 15 gmt lets rock n roll again 2021-05-15 07:17:00+00:00 1.0 1335837027 360 sponsored last minute pump on pancakeswap stay tuned at 23 gmt today 20 minutes left for nice sweet pancakeswap pump so be ready in 20 minutes get your bnb there and we will post here the address of the token to be pumped it will be great as always everyone 2021-05-14 22:42:08+00:00 1.0 1335837027 356 5 minutes left next message will be the address of token on pancakeswap 2021-05-14 18:55:03+00:00 1.0 1335837027 354 30 minutes left until last minute pump on pancakeswap lets pump it 2021-05-14 18:30:03+00:00 1.0 1335837027 353 1 hour left for last minute pump be ready guys this will be insane journey 2021-05-14 18:00:08+00:00 1.0 1335837027 352 sponsored last minute pump on pancakeswap stay tuned at 19gmt today 2 hours left for nice sweet pancakeswap pump so be ready in 2 hours get your bnb there and we will post here the address of the token to be pumped it will be great as always 2021-05-14 16:51:13+00:00 1.0 1335837027 350 dear rebels after two weeks pause because of hotbit maintenance we are back again to provide with the best of the best pump event again like before prepare your hotbit accounts make sure you have usdt ready as our coin will be in usdt pair we will announce coin name at 15 gmt this saturday 15 may with all the servers support we will have above 200k members participating again so this one will be huge like never before stay tuned on our telegram and discord for any questions write directly to admin see you on saturday everyone ✅ exchange hotbit date 15 may ⌛️ time 15 gmt pair usdt 2021-05-13 19:50:44+00:00 1.0 1335837027 300 5 minutes left next post will be the address of the coin to buy on pancakeswap good luck guys 2021-05-01 17:55:07+00:00 1.0 1335837027 295 11 hours until announcement of the coin of our pump and hold event on pancakeswap check this tutorial get your bnb ready and stay tuned we will put that coin to the moon today 18gmt is coming link 2021-05-01 06:59:57+00:00 1.0 1335837027 294 after last amazing pump and hold even we decided to do another one for you already this saturday 1 may at 18gmt so make sure to have your bnb loaded in your metamasktrustwallet and if you are newbie here then watch the tutorial on how to buy ans sell on pancakeswap this time it will be huge and you can jump on this train at the very launch of that coin so do not miss that chance we will hype it again with lot of marketing and spreading throu social media platforms so stay tuned at our telegram and discord exchange pancakeswap date saturday 1 may time 1800gmt 2021-04-30 21:10:37+00:00 1.0 1335837027 274 we are going to pump and hold bra token buy here on pancakeswap swapoutputcurrency0x9ead55604f3a50dca09775076123ea70114c854a 2021-04-26 17:00:07+00:00 1.0 1335837027 271 announcement will be postponed one hour later so at 17 gmt as many members wrote us they are not ready yet so be ready for 17 gmt and do not forget this is a pump and hold long term event so its different event than our hotbit pumps 2021-04-26 15:40:29+00:00 1.0 1335837027 270 be ready we will announce in a while what token we will pump tomorrow on pancakeswap we will pump it tomorrow and hold so get ready your metamasks wallet put slippage a bit higher up to 20 amd have some bnb prepared this time we go pump and hold huge hype campaing is prepared for today and next days also so you can be sure to have some profit for yourself just do not sell all our goal is to higher the value pf the coin and hold it 2021-04-26 15:17:17+00:00 1.0 1335837027 267 sponsored biggest hold coin event announcement dear holders we have already decided the date for the launch of our new viral coin the staff team has worked and will continue to work very hard these days our goal is to achieve that the coin reaches a market cap of millions in days and our main goal is 100 million market cap in a month to achieve this goal we will have all the support of the marketing roadmap investors influencers and the community in addition we have created pancakes hold discord and telegram where we are sure that we will build the strongest holder community you have ever seen and without forgetting to mention that for the safety of our community we will post the viral coin with ownership renounced and liquidity blocked the first fundamental rule of all viral content is that it has all possible channels for the creation of content and memes the social media channels are being prepared youtube telegram twitter reddit and instagram lets make this event the largest in the hold community our army of diamond hands and shillers will be ready for this friday and together we can reach what other servers couldnt make sure you have ready your bnb in metamask we will enter the moon as if it were our home stay tuned date 30 april 2021 time 2300 gmt exchange pancakeswap links telegram discord 2021-04-25 22:20:58+00:00 1.0 1335837027 261 6 hours left until pump on hotbit today get ready 2021-04-25 11:00:20+00:00 1.0 1335837027 260 after our great last pump of 232 and 791 double peaked pump which lasted for more than 20 minutes we has decided to conduct another hotbit pump for you this time we expect about 1000 by participating on our partner server pump stay tuned and spread that announcement to get as many participants as possible date april 25 2021 time 1700 gmt exchange hotbitio pair usdt 2021-04-24 18:34:05+00:00 1.0 1335837027 259 dear members the reason our pump of exe coin today had these two peaks was because of a huge glitch in telegram which caused our 100k telegram users to join in late we would have done 1100 + had the delay been not there were trying to resolve it with the telegram devs to see the possible reason on how it happened still with the glitch we did a nice and steady pump we would like you to join our discord server as well to prevent this to happen in the future thank you all for understanding our uncomfortable situation we had see you on next pump our discord link 2021-04-24 17:25:16+00:00 1.0 1335837027 253 2 hours left if you got any other questions then contact our admin rebelsbusiness and he will help you get ready your hotbit account and usdt pump will start in 2 hours 2021-04-24 12:59:59+00:00 1.0 1335837027 250 8 hours until next big pump hey rebels are you ready again for today 24 april 1500 gmt big pump on hotbit exchange here are some instructions before another day well make a history of this group great again please read them well so you can get ready properly 1 have your usdt prepared on your hotbit account as the coin we will pump will be in usdt pair 2 today at 1500 gmt you need to have your telegram and discord open both in the case one of them will have some server issues so you wont miss the coin name 3 after previous amazing pump result we put even more money investing into the next pump and make it up to 1380 by huge support of our whales and hundreds of thousands of members from other pumping groups and servers so you can get ready for really huge peaks again 4 we chose hotbit on the purpose because there wont be market price deal available so it wont be possible for any automatic bots to ruin our pump and overtake you we are the only group where you can find our pumps lasting for so long so lets call it again fast fingers action where each person got the same chance to make his profit by selecting his buying order directly from order book no advantage for anyone equal for all absolutely no vip do not believe any scammers please 5 last but not the least be ready for buying immediately after announcement of the coin name at 1500 gmt and after if you decide to sell you can sell some part of your amount do not sell everything at once be ready for couple of waves support from our whales which will make price going higher and higher just remember one thing when you buy you buy from red orders as much as you can when you sell you sell to green orders thats how to make it easier instead of manually putting the price any questions you may have send them to our admin rebelsbusiness and he will help you get ready for real crypto bombs guys date 24 april time 1500 gmt exchange hotbitio pair usdt pair our link for discord your crypto pumps rebels team 2021-04-24 07:00:02+00:00 1.0 1335837027 245 after our great last pump of 493 which lasted for more than 2 minutes and a positive feedback from lots of our members our team has decided to conduct another huge hotbit pump for you this time we expect minimum 1380 stay tuned and spread that announcement to get as many participants as possible date 24 april 2021 time 1500 gmt exchange hotbitio pair usdt your crypto pumps rebels 2021-04-18 16:08:41+00:00 1.0 1335837027 235 24 hours until next big pump hey rebels are you ready for next 17 april 1500 gmt big pump on hotbit exchange here are some instructions before another day well make a history of this group great again please read them well so you can get ready properly 1 have your usdt prepared on your hotbit account as the coin we will pump will be in usdt pair 2 17 april at 1500 gmt you need to have your telegram and discord opened both in the case one of them will have some server issues so you wont miss the coin name 3 after previous amazing pump result we put even more money investing into the next pump and make it up to 2500 by huge support of our whales and hundreds of thousands of members from other pumping groups and servers so you can get ready for really huge peaks this time 4 we chose hotbit on the purpose because there wont be market price deal available so it wont be possible for any automatic bots to ruin our pump and overtake you we are the only group where you can find our pumps lasting for so long last weekend we made the pump lasting for 20 minutes weekend before it was 30 minutes which is insane so lets call it again fast fingers action where each person got the same chance to make his profit by selecting his buying order directly from order book no advantage for anyone equal for all absolutely no vip at all do not believe any scammers please 5 last but not the least be ready for buying immediately after announcement of the coin name at 1500 gmt and after if you decide to sell you can sell some part of your amount do not sell everything at once be ready for couple of waves support from our whales which will make price going higher and higher just remember one thing when you buy you buy from red orders as much as you can when you sell you sell to green orders thats how to make it easier instead of manually putting the price get ready for real crypto napalm guys date 17 april time 1500 gmt exchange hotbitio pair usdt pair our link for discord your crypto pumps rebels team 2021-04-16 14:59:27+00:00 1.0 1335837027 234 after our amazing last hotbit pump with peak of 1141 and duration for more than 20 minutes our team continues with a tradition of hotbit weekend pumps to provide another huge pump for you this time we expect minimum 1500 we double the amount of other pump groups participants so we are stronger than last time stay tuned on telegram and discord and spread that announcement to get as many participants as possible date 17 april 2021 time 1500 gmt exchange hotbitio pair usdt 2021-04-15 08:07:09+00:00 1.0 1335837027 231 5 minutes left next message will be the link of the token to pancakeswap directly 2021-04-14 18:54:46+00:00 1.0 1335837027 230 30 minutes left we will post the link for the token so please go on your computers and wait for the link so you can just click and it will forward you to pancake directly where this token is available 30 minutes 2021-04-14 18:29:51+00:00 1.0 1335837027 222 awesome last pump weve received a lot of success stories on dm we did 1141 this one was really good lot of people are impatient to wait until next weekend for hotbit so we decided to make one sweet pump participation in the midweek where we collaborate with our partner pump group who organize this event now we would like to invite you to pancakeswap pump ️ date april 14 2021 time 1900 gmt exchange pancakeswapfinance make sure you know on how to use pancakeswap before pump check our tutorial video we made for you 2021-04-12 19:37:20+00:00 1.0 1335837027 220 it was again a great pump guys we made a peak at 1141 and the our pump lasted more 20 minutes completely with the great support of our whales everyone had a lot of time to buy and sell like during our previous pump there were no markets deal and no bots allowed as our professional team made everything needful to not let anyone destroy the joy and amazing power of the pump   we will organize next pump like this again next week so stay tuned for our next announcement very soon   and of course do not forget to spread our amazing community of crypto pumps rebels on telegram and discord   video is speeded up because the whole pump lasted for too long again 2021-04-11 18:27:13+00:00 1.0 1335837027 218 5 minutes next post will be a coin name good luck 2021-04-11 14:54:58+00:00 1.0 1335837027 215 2 hours left prepare hotbit account and usdt as the coin we will pump will be in usdt pair 2021-04-11 13:00:05+00:00 1.0 1335837027 213 6 hours until announcement of the coin today pump will be absolutely insane as three times more servers and members are participating with us comparing to our last pump we honestly expect up to 2500 minimum please watch our tutorial on how to deal with hotbit before you go into pump so you will be well prepared also please reload page of markets on hotbit few times before 15 gmt because hotbit was under maintenance until yesterday so make sure there wont be any issues with loading the pages expect a biggest pump in history of our group our whales will do what is needed to support it even more than last time when pump lasted for 30 minutes which was absolutely amazing we also chose hotbit because on hotbit no bot can overrun humans like they can do with other exchanges as there is no market deal on hotbit coin we chose we want to do everything needed for you to gain as much as possible and have enough time to buy and time to sell without any bot ruining the pump so prepare your account and your usdt and be ready to fly to the moon at 15 gmt if there are any questions then do not hesitate to contact our admin here on telegram rebelsbusiness lets get ready link for youtube tutorial link for discord your crypto pumps rebels team 2021-04-11 09:00:02+00:00 1.0 1335837027 204 2 days until big pump hey rebels are you ready for next 10 april 1500 gmt big pump on hotbit exchange here are some instructions before the biggest pump in history of our group so you can get ready properly 1 have your usdt prepared on your account as the coin we will pump will be in usdt pair 2 at 1500 gmt you need to have your telegram and discord opened both in the case one of them will have some server issues so you wont miss the coin name 3 after previous amazing pump result we decided to put even more money investing into the next pump and make it up to 2500 by huge support of our whales and hundreds thousands of other pumping groups and servers members so you can get ready for really huge peaks 4 we chose hotbit on the purpose because there wont be market price deal available so it wont be possible for any automatic bots to ruin our pump and overtake you last time we golded the pump for 30 minutes which was insane so lets call it again fast fingers action where each person got the same chance to make his profit by selecting his buying order directly from order book no advantage for anyone equal for all 5 last but not the least be ready for buying immediately after announcement of the coin name at 1500 gmt and after if you decide to sell you can sell some part of your amount do not sell everything at once be ready for couple of waves support of our whales which will make price going higher and higher so remeber date 10 april time 1500 gmt exchange hotbitio pair usdt pair our link for discord your crypto pumps rebels team 2021-04-08 15:08:00+00:00 1.0 1335837027 203 3 days until the biggest pump in history of crypto be ready we will keep you updated date 10 april 2021 time 1500 gmt exchange hotbitio pair usdt 2021-04-07 11:01:41+00:00 1.0 1335837027 202 after amazing last pump and receiving thousands of positive messages from lot of members our crypto pumps rebels team decided to make another huge pump for you this time we go up to 2500 for sure with no doubt stay tuned on telegram and discord and spread that announcement to get as much participants as possible date 10 april 2021 time 1500 gmt exchange hotbitio pair usdt 2021-04-04 20:54:13+00:00 1.0 1335837027 198 wow what an insane pump of qqq guys we made a highest peak at 1350 and we stayed above 1000 for more than ten minutes with the support of our whales everyone had a lot of time to buy and sell there were no markets deal and no bots allowed as our professional team made everything needful to not destroy the joy and amazing power of the pump whole action lasted for 30 minutes which is absolutely amazing we will make much more pumps like this so stay tuned for our next announcement very soon check our speeded up video posted above to see how we made a history again and do not forget to spread our amazing community of crypto pumps rebels on telegram and discord 2021-04-03 20:58:33+00:00 1.0 1335837027 194 5 mins next post will be a coin name 2021-04-03 14:55:02+00:00 1.0 1335837027 188 1 hour until pump stay tuned and expect at least 2000 profit today we just received informations that in this pump will be participating hundred thousands members from discord and telegram other pump groups wow it will be huge be ready with usdt on hotbit and ready to type the coin name in the search bar 2021-04-03 13:58:45+00:00 1.0 1335837027 186 2 hours until we post coin name stay tuned on hotbit with your usdt 2021-04-03 13:00:24+00:00 1.0 1335837027 183 4 hours until big pump for anyone who is beginning and wants to prepare for today big pump on hotbit here is a tutorial for you to watch before pump date 3rd april 1500 gmt hotbitio usdt pair dont forget to join our discord channel as well 2021-04-03 10:56:00+00:00 1.0 1335837027 179 for anyone who is beginning and wants to prepare for tomorrow big pump on hotbit here is a tutorial for you to watch before pump date 3rd april 1500 gmt hotbitio usdt pair dont forget to join our discord channel as well 2021-04-02 20:12:48+00:00 1.0 1335837027 177 hey rebels are you ready for 3rd april 1500 gmt big pump on hotbit exchange here are some instructions before the biggest pump in history of our group so you can get ready properly 1 have your usdt ready on your account as the coin we will pump will be in usdt pair 2 at 1500 gmt you need to have your telegram and discord opened both in the case one of them will have some server issues so you wont miss the coin name 3 after previous amazing pumps results we decided to put even more money investing into the next pump and make it up to 2000 by huge support of our whales and hundreds thousands of other pumping groups and servers members so you can get ready for really huge peaks 4 we chose hotbit on the purpose because there wont be market price deal available so it wont be possible for any automatic bots to ruin our pump and overtake you so lets call it fast fingers action where each person got the same chance to make his profit by selecting his buying order directly from order book no advantage for anyone equal for all 5 last but not the least be ready for buying immediately after announcement of the coin name at 1500 gmt and after if you decide to sell you can sell some part of your amount do not sell everything at once be ready for couple of waves support of our whales which will make price going higher and higher so remeber 3rd april 1500 gmt hotbitio usdt pair our link for discord your crypto pumps rebels team 2021-04-02 12:07:31+00:00 1.0 1335837027 170 5 mins next post is the coin name 2021-04-01 15:55:02+00:00 1.0 1335837027 168 todays coin will have a bigger market more opportunity for everyone to buy in low and sell very high and more following orders to make our peak last as long as possible everything is looks great for today be prepared for 20 minutes from now 2021-04-01 15:39:31+00:00 1.0 1335837027 165 1 hour until pump anmouncement prepare your usdt on kucoincom and get ready 2021-04-01 15:01:12+00:00 1.0 1335837027 158 5 mins left next post will be a coin name 2021-03-31 19:54:51+00:00 1.0 1335837027 138 pump announcement date thursday april 1st time 1600 gmt 12pm est exchange kucoincom after incredible volume and results we have decided to pump again in 3 days bitcoin and altcoins are looking very healthy and many great opportunities are available our last 2 pumps have risen well above their projected gains our next pump we will aim to do this again and provide the most outstanding pump ever done on kucoin there will be more info posted soon as we have added new protections and advancements to make this the best pump yet so do not forget now its gonna be on kucoincom 2021-03-29 21:27:29+00:00 1.0 1335837027 136 pump results 1400 btc volume which is around 80m with this amount of volume we should normally be able to pump coins above 500+ fairly easily although the volume was massive we did not manage to reach our target of 5001000 after looking carefully at the data we saw that the sell pressure came from the eth pairing we are not quite sure exactly where those sells were coming from but we will look further into it to make sure it doesnt happen in our next pump and reach the result we were meant to reach in this pump thank you all for participating we will announce our next date shortly crypto pumps rebels team 2021-03-28 18:38:50+00:00 1.0 1335837027 132 5 minutes left next message will be the coin name 2021-03-28 16:55:17+00:00 1.0 1335837027 130 20 minutes left now we go for real get ready 2021-03-28 16:40:07+00:00 1.0 1335837027 129 this was just the test for all of you people who wrote us how to buy and sell during the pump we chose stablecoin for the purpose to test all of you and not losing money at the same time so you can sell now and give us a thanks for protecting you the real pump will be in one and a half hour 1700pm gmt so lets go for real 2021-03-28 15:27:50+00:00 1.0 1335837027 125 in one minute we post the coin name 2021-03-28 14:59:13+00:00 1.0 1335837027 118 we have 16 hours left until our next big pump so we would like to inform you about some basic but needful informations you should know before tomorrow at 1500pm gmt we do not copy other pumps we make our own pumps the announced coin will be only in 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 700+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 70 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump for those trading from the us you can use a vpn to make a binance account millions of traders worldwide will be watching we have put into place a few measures to spread the word out after our signal we will attempt to make our pump last as long as possible this pump will be the biggest we have done so far so be ready and be prepared for that and one more time it is original pump made by crypto pumps rebels so check this telegram channel to be updated directly thanks all of you for spreading our community it helps to everyone more of us will be more we can make lets do it big see you on the moon your crypto pumps rebels team 2021-03-27 22:59:56+00:00 1.0 1335837027 112 pump announcement hello everyone the next official pump will be scheduled for date sunday march 28 time 1500 pm gmt exchange binance advantage free for all 2021-03-24 07:41:16+00:00 1.0 1335837027 111 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:00:41+00:00 1.0 1335837027 110 5 minutes left the next message will be the coin name 2021-03-21 16:55:22+00:00 1.0 1335837027 107 1 hour 2 hours left things are looking great the market is currently amazing and we are confident that we will be able to surpass our 500+ target reminder that we will be pumping a coin that only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin be prepared 2021-03-21 16:05:08+00:00 1.0 1335837027 98 pump announcement hello everyone the next official pump will be scheduled for date sunday march 21 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 21 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 12 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-09 17:02:29+00:00 1.0 1335837027 97 pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned 2021-03-07 17:47:58+00:00 1.0 1335837027 92 the coin we have picked to pump today is ppt ppt is looking perfect for a pump right now our target is 1000 2021-03-07 17:00:15+00:00 1.0 1335837027 91 5 mins prepare your binance account next message will be announcing of the coin name 2021-03-07 16:55:02+00:00 1.0 1335837027 84 5 hours remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-07 12:41:34+00:00 1.0 1335837027 81 22 hours left until the biggest pump signal in the history of our group our target will be more than 500 tomorrow is a big day for us more information about the pump will come tomorrow 2021-03-06 19:08:12+00:00 1.0 1335837027 73 pump announcement hello everyone the 2nd official pump will be scheduled for date sunday march 7 time 1700 pm gmt exchange binancecom advantage freeforall with all of our members making more than 200 and 300 profit consecutively with our last 2 pumps and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump on march 7 we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits we have 1 week and a half to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we will be targeting 500 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-02-25 20:43:22+00:00 1.0 1335837027 68 pump result 1000 btc volume in a few minutes which is close to 60 million with a peak of 350 amazing pump everyone we are receiving unbelievable amounts of messages of appreciation and we are glad many of you managed to make massive profits in this pump we are officially the biggest pump community in the world our whales did their part once again and pushed the price up to 10000 satoshi for all our members to profit our volume keeps getting bigger every pump and we are confident that in the next pump we will be able to hit 5001000 profit for all our members stay tuned for the next pump announcement 2021-02-21 17:52:09+00:00 1.0 1335837027 66 the coin we have picked to pump today is nxs nxs is looking perfect for a pump right now our target is high 2021-02-21 17:00:28+00:00 1.0 1335837027 60 4 hours left until the big pump on binance be ready 2021-02-21 12:58:30+00:00 1.0 1335837027 58 6 hours left until the big pump on binancecom 2021-02-21 11:03:17+00:00 1.0 1335837027 54 dear members 2 days and 4 hours left until our big pump on binancecom a lot of members have been asking questions and we will post everything you need to know and a few tips here we will be using the btc pairing on binance to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up tomorrow is a big day and a lot of people will make amazing profit make sure not to miss this pump 2021-02-19 12:49:34+00:00 1.0 1335837027 53 pump announcement hello everyone the next official pump date will be scheduled for date 21feb2021 sunday time 5pm gmt exchange binancecom international advantage freeforall with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we are expecting hundreds of thousands of people all across the world to attend this pump we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-02-15 20:59:20+00:00 1.0 1335837027 52 dear members the peak was over 200 with a volume over 15 million usd this pump was great we can conclude that pumps in the weekend are better than pumps that are not in the weekend because of the enormous amount of positive feedback we have decided to schedule a new pump details of the next pump exchange binancecom international date 21feb2021 sunday time 5pm gmt next pump will be in the weekend again therefore expect a nice volume 2021-02-14 05:13:25+00:00 1.0 1335837027 49 2 mins left next post will be coin name 2021-02-13 20:58:10+00:00 1.0 1335837027 43 dear members 3 hours left we are getting a lot of questions regarding the trading pair during the pump we will be using the btc trading pair example if the coin is xxx buy the coin with bitcoin on the xxxbtc market 2021-02-13 18:01:57+00:00 1.0 1335837027 42 dear members 4 hours left this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together 2021-02-13 17:05:14+00:00 1.0 1335837027 41 dear members 4 hours 40 minutes left we notice that a lot of new members want to get in on the action but do not understand how pumping works the basics of a pump the members of crypto pumps rebels buy up a crypto currency or shares of a lightly traded company spread rumors which gives the coin exposure and then sell at a higher price the coin will be announced here at 9pm gmt get ready 2021-02-13 16:23:11+00:00 1.0 1335837027 39 dear members 10 hours and 20 minutes left until the pump checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have telegram open have all your social media channels twitter reddit etc open and ready to start the hype 2021-02-13 10:40:02+00:00 1.0 1335837027 38 dear members tonight the peak was over 300 the volume was quite nice but could have been a lot better the volume was not that high because we pumped during a weekday still a lot of members profited therefore we have decided to schedule a new pump this time it will be in the weekend when more members have free time details of the next pump exchange binancecom international date 13feb2021 saturday time 9pm gmt next pump will be in the weekend this usually has a higher volume 2021-02-11 03:43:00+00:00 1.0 1335837027 34 2 minutes left next message will be the coin 2021-02-10 20:58:24+00:00 1.0 1335837027 31 15 minutes left prepare your social media channels lets do this 2021-02-10 20:45:58+00:00 1.0 1335837027 29 dear members this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom an telegram open 2 at exactly 9pm gmt there will be a message including the name of a coin 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can we are getting a lot of questions regarding the trading pair during the pump we will be using the btc trading pair example if the coin is xxx buy the coin with bitcoin on the xxxbtc market 2021-02-10 20:04:57+00:00 1.0 1335837027 25 dear members 7 hours and 25 minutes left until the pump with all social media channels combined crypto pumps rebels signal has over 430000 members we might all be small investors but we have an insane social media presence tonight at 9 pm gmt we will coordinately buy hype and push up the price of a coin 2021-02-10 13:35:57+00:00 1.0 1335837027 24 dear members 10 hours left until the pump checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have telegram open have all your social media channels twitter reddit etc open and ready to start the hype more information will follow soon 2021-02-10 10:58:51+00:00 1.0 1335837027 22 dear members details of the next pump exchange binancecom international date 10feb2021 wednesday time 9pm gmt the market condition for a pump is more than perfect lots of new people getting into crypto in the past hours thousands of new members joined crypto pumps signals keep inviting together we are stronger and richer 2021-02-08 17:30:16+00:00 1.0 1335837027 19 45 minutes left till the pump we will be trading the btc pair so be sure to have btc ready in your wallet 2021-02-07 20:15:41+00:00 1.0 1335837027 18 1 hour left prepare your binancecom and be ready for btc pair only in 1 hour we will write the name of coin we are going to pump get ready for pump dear rebels 2021-02-07 20:00:08+00:00 1.0 1335837027 13 dear members 4 hours left to the pump be ready for the btc pair on binancecom today crypto pumps rebels is growing very quickly the basics of a pump the members of crypto pumps rebels signal buy up a crypto currency or shares of a lightly traded company spread rumors which gives the coin exposure and then sell at a higher price like mentioned in the prior announcements the most important factor for a successful pump is creating hype around the coin creating hype is a group effort we are all small investors but we can make a huge impact on social media expect something amazing tonight in 4 hours we will tell you the name of crypto coin to be pumped so be ready for btc pair on binancecom 2021-02-07 17:00:02+00:00 1.0 1335837027 12 dear members 6 hours and left crypto pumps rebels is growing very quickly the basics of a pump the members of crypto pumps rebels signal buy up a crypto currency or shares of a lightly traded company spread rumors which gives the coin exposure and then sell at a higher price like mentioned in the prior announcements the most important factor for a successful pump is creating hype around the coin creating hype is a group effort we are all small investors but we can make a huge impact on social media expect something amazing tonight in 6 hours we will tell you the name of crypto coin to be pumped 2021-02-07 15:00:15+00:00 1.0 1335837027 11 dear members 8 hours left this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can 2021-02-07 13:06:48+00:00 1.0 1335837027 10 15 hours left ⏳date sunday 7 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate 2021-02-07 06:03:33+00:00 1.0 1335837027 4 new binance pump announcement ⏳date sunday 7 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate 2021-02-06 18:05:24+00:00 1.0 1315869059 386 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-05-04 18:55:09+00:00 1.0 1315869059 385 everyone 10 minutes left login binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast sell at maximum profit 2020-05-04 18:51:06+00:00 1.0 1315869059 383 everyone 30 minutes to go we are very hyped for this pump things are looking better than they have in forever we hope you make all the profits you desire remember to help promote the coin during the pump so it can keep rising and rising 2020-05-04 18:30:42+00:00 1.0 1315869059 382 1 hour left for the binance pump we have added 2 more large telegrams to repost our coin and news at pump time this will make our pump even bigger they are eager to get in on the action since the markets are so perfect right now make sure you buy in quickly for the lowest price pay attention to the expected gain range so you know a safe place to sell enjoy your profits 2020-05-04 18:05:28+00:00 1.0 1315869059 381 i was wrong the pump hours start in an hour and 17 minutes 2020-05-04 17:43:12+00:00 1.0 1315869059 379 47 minutes left until the pump with altcoins bottomed out because of bitcoins recent actions the markets are looking amazing for our pump the coins we pump are near recent lows and can skyrocket easily this pump can be incredible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-05-04 17:13:34+00:00 1.0 1315869059 378 everyone binance pump announcement next pump monday 4 may 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin has risen and alts have bottomed out this is the perfect time to pump we can and will do amazing things in this pump 2020-05-04 17:13:05+00:00 1.0 1545919293 3319 instructions how to use our signals screenshot of an example of our signal and report with proof can be found at this links 1 polybtc binance this means that the information specified in the signal is intended for trading this coin paired with btc the name of the coin is indicated after the sign 2 binance the name of the exchange where the specified coin will be pumped for convenience we have placed a link here to go to the specified trading pair when you click on the word binance you can go directly to the exchange page where the coin specified in the signal is traded 3 buy zone 10961125 the price range in which it is recommended to buy the coin indicated in the signal in order to get a guaranteed profit when the first target is reached during the pump the reports on the achievement of each of the pump targets are based on the values indicated in this price range the price of a coin on the exchange is presented in full format there are all zeros before and after the sign and at the time of the publication of the signal the buy zone should be understood as follows buy zone 000001096000001125 for the convenience of reading and understanding the signals as well as for summing up the calculations of the value of the coin we do not publish extra zeros automated trading bots such as cornix read signals in the format we publish absolutely correctly 4 targets from 1 to 5 1077115612441391 here are 5 pump targets upon reaching which you need to sell coins at the price specified in the signal it is necessary to take into account the fact that after reaching each of the targets of the pump in 80 of cases a dump occurs therefore after buying the coin specified in the signal it is recommended to place sell orders in advance for lovers of quick profits this is the value specified in target number 1 for holders all other targets 5 gmt +1 time zone in accordance with which the signal was published the word gmt +1 contains a link to the site timeis you can click on this link and go to the site to find out the exact ⏱time in your country and understand the when the signal was published this will help you convert your current time⏱ with the signal publication time according to the gmt +1 time zone in order to compare the data published in the signal with binance it can also come in handy for checking the accuracy of the signal and the correct understanding of the reports published in our telegram channel 6 follow signal this button is for using the cornix trading bot vip subscribers also receive notifications about each ✅achieved pump target indicating the period during which each target was achieved this notice also indicates the percentage of profit when the specified pump target is achieved for example for the signal specified in this instruction the report in the vip channel looks like this linkreply to the message with signal that was published in advance in vip channel and the report of cornix trading bot polybtc takeprofit target 3 ✅ profit 1809 period 43 minutes ⏰ explanations for this report polybtc takeprofit target 3 ✅ this is a report on the achievement of the target in this example this is target №3 profit 1809 profit obtained as a result of achieving the specified target in percentage period time from the moment the signal was published in the vip channel until the target №3 was achieved return to main page 2021-11-15 23:19:04+00:00 1.0 1545919293 46 instructions how to use our signals screenshot of an example of our signal and report with proof can be found at this links 1 polybtc binance this means that the information specified in the signal is intended for trading this coin paired with btc the name of the coin is indicated after the sign 2 binance the name of the exchange where the specified coin will be pumped for convenience we have placed a link here to go to the specified trading pair when you click on the word binance you can go directly to the exchange page where the coin specified in the signal is traded 3 buy zone 10961125 the price range in which it is recommended to buy the coin indicated in the signal in order to get a guaranteed profit when the first target is reached during the pump the reports on the achievement of each of the pump targets are based on the values indicated in this price range the price of a coin on the exchange is presented in full format there are all zeros before and after the sign and at the time of the publication of the signal the buy zone should be understood as follows buy zone 000001096000001125 for the convenience of reading and understanding the signals as well as for summing up the calculations of the value of the coin we do not publish extra zeros automated trading bots such as cornix read signals in the format we publish absolutely correctly 4 targets from 1 to 5 1077115612441391 here are 5 pump targets upon reaching which you need to sell coins at the price specified in the signal it is necessary to take into account the fact that after reaching each of the targets of the pump in 80 of cases a dump occurs therefore after buying the coin specified in the signal it is recommended to place sell orders in advance for lovers of quick profits this is the value specified in target number 1 for holders all other targets 5 gmt +1 time zone in accordance with which the signal was published the word gmt +1 contains a link to the site timeis you can click on this link and go to the site to find out the exact ⏱time in your country and understand the when the signal was published this will help you convert your current time⏱ with the signal publication time according to the gmt +1 time zone in order to compare the data published in the signal with binance it can also come in handy for checking the accuracy of the signal and the correct understanding of the reports published in our telegram channel 6 follow signal this button is for using the cornix trading bot vip subscribers also receive notifications about each ✅achieved pump target indicating the period during which each target was achieved this notice also indicates the percentage of profit when the specified pump target is achieved for example for the signal specified in this instruction the report in the vip channel looks like this linkreply to the message with signal that was published in advance in vip channel and the report of cornix trading bot polybtc takeprofit target 3 ✅ profit 1809 period 43 minutes ⏰ explanations for this report polybtc takeprofit target 3 ✅ this is a report on the achievement of the target in this example this is target №3 profit 1809 profit obtained as a result of achieving the specified target in percentage period time from the moment the signal was published in the vip channel until the target №3 was achieved return to main page 2021-09-23 19:00:24+00:00 1.0 1189524886 50 10 minutes left good luck everyone next message will be the coin name 2019-10-20 17:50:06+00:00 1.0 1189524886 49 15 minutes left remember to buy the coin quickly if you get in around 10 seconds late it is recommended for you to not join since the price would already be too high we dont have any vip groups or anything so everyone gets the coin at the same time 2019-10-20 17:45:27+00:00 1.0 1189524886 48 20 minutes until our pump on binance 2019-10-20 17:40:59+00:00 1.0 1189524886 42 hello everyone 12 days left until the pump remember to invite your friends and be ready to buy the coin at the right time this pump will be completely ffa as its our first pump and we hope to initiate the group with an amazing pump good luck everyone and be ready for the pump in october 20 2019-10-08 17:11:50+00:00 1.0 1189524886 9 pump announcement‌‏ ‎hello everyone we are currently working on making the channel more known to increase the pumping power for all our users however we believe that by this date we will have enough users to attempt to pump our first coin good luck everyone‌‌‌‏ ‌‏ ‎pump details ‎time 10202019 1800gmt‏ exchange ‎binance ‎pair btc key targets 10 30 2019-10-07 02:45:53+00:00 1.0 1189524886 8 so you might be asking yourself what exactly is a pump group basically what we do is we pick a coin on binance for everyone to buy and we send the name of that token to everyone on the group at the same time this causes the price to increase massively due to the demand so much that outsiders on binance see the pump and join in this is where you would sell the token for a profit pumps can rise up to 50 at a time the more people insde the group the bigger the pump so be sure to tell your friends about what were doing here 2019-10-06 19:05:13+00:00 1.0 1291335731 14155 48 hours left date sunday january 23 2022 time 1500 gmt exchange binance 2 days left for our first and biggest binance pump of the year this time were not expecting anything less than a 300400 gain so be ready 2022-01-21 15:17:36+00:00 1.0 1291335731 14118 new pump announcement date sunday january 23 2022 time 1500 gmt exchange binance the first binance pump of the year is ready and its because we now have an explosion strategy never seen before in the market you know how easy it was last year to make 100200 on our binance pumps… however were now ready to 2x these type of gains have funds ready on your binance account and wait for further instructions were back baby 2022-01-20 10:15:26+00:00 1.0 1291335731 11703 big pump soon buy 2021-10-19 08:34:22+00:00 1.0 1291335731 11625 buy and hold big pump 2021-10-16 11:23:10+00:00 1.0 1291335731 11607 cvc buy big pump soon 2021-10-15 13:04:42+00:00 1.0 1291335731 11601 buy buy dont miss big pump 2021-10-15 12:30:39+00:00 1.0 1291335731 11278 buy its big pump 2021-10-03 12:03:33+00:00 1.0 1465541441 83077 unic kucoin pump results start price 10607 peak price 98700 peak gain 831 unic amassed over 17 million volume within the first few minutes as it rose all the way to 831 well over our 500 minimum projection even in this market our volume continues to grow and our peaks have become even more impressive thank you to all members who participated you can expect our next pump to be even bigger great job to everyone 2022-01-08 18:36:21+00:00 1.0 1465541441 83067 6 hours left be sure to read our how to pump tutorial 2022-01-08 11:00:18+00:00 1.0 1465541441 83049 cream kucoin pump results start price 3268 peak price 33303 peak gain 919 cream rose to 919 passing our entire target gain of 600900 the absolute peak held for nearly an entire minute so there was plenty of time to sell for even more profit than expected those who bought the dip could have also earned an addition 3x profit during the second wave which brought cream all the way back to our projected gain over 3 minutes later high profit potential combined with high probability of success always makes for a great pump great job to everyone who participated today 2021-12-18 19:58:19+00:00 1.0 1465541441 83014 5 hours left for the pump be sure to read out how to pump tutorial 2021-12-18 12:00:54+00:00 1.0 1465541441 83004 pump announcement day saturday december 18th time 1700 gmt 12pm est exchange kucoin the upcoming pump is planned long in advance to give everyone ample time to prepare and allow our huge influx of new members to get ready to join in for the next days we will post updates about the markets our group trading guides and more if you are seeing this message you are in the worlds largest and most successful kucoin pump group of all time we are pleased to have you as a member please see our posted help guides review our past results and get ready for the big pump in 9 days from now everyone 2021-12-09 20:52:21+00:00 1.0 1465541441 82977 basic kucoin pump results start price 001178 peak price 0098 peak gain 731 basic amassed 29 million volume in the first 5 min of the pump pushing the price all the way to 731 which was well above our projected gain this pump was longer than normal with even more volume than we are used to at this rate of growth we are becoming an unstoppable force great job everyone 2021-11-13 17:44:13+00:00 1.0 1465541441 82969 45 minutes left for the pump be sure to read out how to pump tutorial 2021-11-13 16:15:19+00:00 1.0 1465541441 82965 little less than 10 hours left for the pump be sure to read our tutorial and be ready for it other reminders for the pump will come in the next hours 2021-11-13 07:14:04+00:00 1.0 1465541441 82957 dvpn kucoin pump results start price 0034 peak price 0480 peak gain 1320 dvpn reached 1320 well over our projected top gain of 900 with millions of dollars in volume this pump blew away expectations the price stayed above our projected gain for longer than 1 min so we hope everyone was able to sell there for good profits 2021-10-23 18:43:54+00:00 1.0 1465541441 82944 7 hours left for the pump be sure to read our tutorial and be ready for it 2021-10-23 10:00:14+00:00 1.0 1465541441 82937 pump announcement day saturday october 23rd time 1700 gmt 1pm est exchange kucoin in light of our last 2 hugely successful pumps dino +570 route +1590 with a combined volume of over 16 million we will pump again this upcoming saturday sticking to the same time slot 1700 gmt our groups are growing to very impressive sizes the recent rise of bitcoin and explosion of kucoins popularity are really creating epic conditions for us as the worlds top group on kucoin we are in a special place to keep improving our volume gains and member profits each time we pump this will again be another pump you wont want to miss the base pair for the coin will be announced shortly with plenty of time to prepare many of us are day traders and we dont want anyone closing positions early just for us go get your profits and use them saturday 2021-10-19 18:28:23+00:00 1.0 1465541441 82931 route kucoin pump results start price 349 peak price 5900 peak gain 1590 amassing over 4 million in volume and rising all the way to 1590 route was an awesome pump we shattered our goal of 500 and everyone should have been able to profit off the steady rise route stayed around the 500 mark 20 for over 2 min we will keep building from here great job everyone 2021-10-09 18:25:55+00:00 1.0 1465541441 82918 6 hours left for the pump be sure to read our tutorial and be ready for it 2021-10-09 11:01:43+00:00 1.0 1465541441 82911 dino kucoin pump results start price 03706 peak price 249 peak gain 572 a very impressive first peak to 572 was followed by an even more impressive second wave for dino which still continues over 300 gain was still possible even after 90 minutes our volume is very strong over 1 million total and our community is even stronger hundreds of users sent u successstories showing an overall great job by everyone sorry about the lon glitch those permissions have been fixed we look forward to the next pump being even bigger and better see you all then for even more profit 2021-10-02 18:54:41+00:00 1.0 1465541441 82887 5 hours left for the pump be sure to read our tutorial and be ready for it 2021-10-02 12:00:55+00:00 1.0 1465541441 82886 24 hours left everyone bitcoin and the markets have blessed us with optimal conditions for our pump cryptos are soaring today bringing a very positive sentiment into this weekend where our chosen coin will become the top gainer of them all as we push our coin to the top spot outside investment breakout buyers auto algo tools bots and fomo traders will continue to help us climb to once of the highest peaks we have ever done the weekend timeslot showcases our group even more we expect this to be a huge event make sure you have usdt and your kucoin account ready in 24 hours from now so you can participate 2021-10-01 17:10:13+00:00 1.0 1465541441 82883 48 hours left everyone in 48 hours from now the top coin will be chosen and posted here it will begin to climb in price from us all mass buying it driving its value up 510x or even more exact details will be given closer to the pump when more info is available you should be buying the coin using market orders for speed and selling with limit sells at your desired profit please refer to the pump guide as why to not market sell during a pump because of our growth this pump signal will reach more users than it ever has before the anticipation is huge and the result will be even more huge be ready for one of the best pumps ever done see you all in 48 hours 2021-09-30 17:48:03+00:00 1.0 1465541441 82878 pump announcement date saturday october 2nd time 1700 gmt 1pm est exchange kucoincom pair usdt after some time off to ride out market conditions we are back with what will be one of the best pumps we ever do since our last pump kucoin itself has seen a massive rise in daily active users and volume meaning there is more money than ever before on the table kucoin is becoming the main home for altcoin trading as binance fades away in addition to that our groups have grown in size by over 2x meaning we are more powerful than ever before there is a lot more info to come about this pump so please read all following announcements for now mark your calendars for the pump in 4 days from now 2021-09-28 17:19:52+00:00 1.0 1465541441 82873 it has been a crazy few weeks for bitcoin and crypto lately wild price swings and lots of news are effecting the markets with this comes a lot of attention an we have been capitalizing on it by growing a great amount to over 2x our previous size this will make our next pump massive there are ways to pump in each market so we will search every coin every approach and give more info on our plan for the pump asap thank you all for being here 2021-09-21 16:35:12+00:00 1.0 1465541441 82819 xava kucoin pump results start price 07069 peak price 76 peak gain 975 over 10x gain today we were able to pump xava to 975 from its price before the pump at 1700 gmt after our last pump nord went 400 we greatly improved our percent gain this time and will look to greatly improve it even more next pump initial peak occurred inside the first minute and we saw price reach nearly 450 during the second minute of the pump as well 10x pumps with over 1 million volume are our goal every time from now on 2021-07-05 18:13:43+00:00 1.0 1465541441 82799 nord kucoin pump results start price 486 peak price 2434 peak gain 401 after a few weeks off our nord pump has signaled the beginning of a new wave of great pumps we managed over 105 million in volume and over 400 for nord the chart shows a nice steady rise great job everyone 2021-07-01 20:17:28+00:00 1.0 1465541441 82786 13 hours and 30 minutes left here a reply to a few common questions you can only buy the coin via spot trading no margin of futures the goal will be told few minutes before the pump time the coin will be given at the time of the planned pump today at 19 gmt there is no way to get it before the coin will be told at 19 gmt the pump will last some time so you will be able to buy and sell for an higher price it depends how far you want to sell this pump will be epic because its a huge collaboration and it might break any record in terms of volume you need to buy the coin with usdt check out here how to pump 2021-07-01 05:34:34+00:00 1.0 1465541441 82772 48 hours left everyone 2 days left until our massive pump on kucoincom crypto prices are rising across the board with markets looking healthy as ever this new momentum for crypto comes at the perfect time for our pump we will ride this wave of green to easily send our target coin to extremely high prices because of all the money flowing into crypto especially into altcoins we can expect massive profits from this pump outsiders trading bots and market makers will all jump into our coin we are also adding as much promotion as possible the most users ever will see our pump signal and view our promo posts on social media this will be an insane pump right at the perfect time please review the howtopump we pump on kucoincom only we use the usdt pair for our coins to ensure higher quality pump signal will come in this channel 48 hours from now 2021-06-29 19:08:32+00:00 1.0 1465541441 82768 pump announcement thursday july 1st 1900 gmt 3pm est exchange kucoincom pair usdt after a couple weeks of downs the markets are all on the way up again this is the perfect scenario we have been waiting for as altcoin start rising from their recent lows we can ride this momentum to the top during our pump money is flooding back into crypto and investors are looking for good coins to invest in on thursday we will make sure our target coin gets the most attention as top gainer and earns us all massive profit pumping from recent lows to new extreme highs is exaxtly what we waited all this time for be ready for this pump as it will be one for the ages more info to come soon everyone 2021-06-29 05:01:53+00:00 1.0 1465541441 82700 be sure to be ready for the tomorrow pump kucoin is the best exchange after binance you dont need the kyc same fee as binance same security live chat the pumps are done with usdt pair and an high of pumps lets moon 2021-05-22 17:19:57+00:00 1.0 1465541441 82697 as people dming us the coin will be told tomorrow at 16 gmt 24h from now follow our tutorial pump guide 2021-05-22 15:55:38+00:00 1.0 1465541441 82695 pump anniuncement sunday may 23rd 1600 gmt 12pm est exchange kucoincom pair usdt we have found and tested extremely profitable opportunities in this current market situation and want to pump asap the pump tomorrow will have our highest projected gain ever as it is on a weekend we expect more volume than normal and more trading activity on kucoin in general the amount of usdt held in wallets on kucoin is near all time highs meaning more outsiders buying into our pump the narket making method we used on lon 47000 pump will be used again tomorrow will we pass 47000 most likely will we pass 10000 this is practically guaranteed this will be our most epic pump of all time with the highest user profits we know this is short notice but these opportunities are too good to pass up get ready for a crazy pump set aside an hour of your day for the best gains youll ever make everyone 2021-05-22 15:28:23+00:00 1.0 1394848551 6652 can you see how bitcoin is strong aparently 4 hrs ago financial times released uk watchdogs banning binance exchange the market didnt blink its signal of bullish times 2021-06-27 13:29:33+00:00 1.0 1394848551 5999 just to give you an idea how sovryn is strong it is rallying this much against bitcoin right now in these times it has volume of an average spot listed binance coin and its listed only on its own platform and today celebrates its first week of existence bitcoin defi is the next level stuff just wait for it… it is easy 1 billion marketcap so if thats the case youre not even now late for your 10x start booking as i explained before enjoy blockchain whispers loyalty 2021-04-20 18:58:57+00:00 1.0 1394848551 5063 as a celebratory announcement for the huge xrp community acquisition i will give you all one amazing fundamentally undervalued call in the next 1530 minutes stay tuned time for the new retailers to see how real trading looks like and what real fundamentally strong trading is the exchange is binance 2021-02-15 13:59:13+00:00 1.0 1394848551 4368 i gave one great signal now to premiums ill give it to you in a couple of minutes when my premiums have time to buy without a rush its designed to multiply your bitcoin premiums will get the targets and all youll just get the coin that is in nice buy area now stay tuned 5 min or so 2021-01-07 21:09:16+00:00 1.0 1394848551 4045 okay ill translate the whole crypto outlook right now right now alts are waiting to see how bitcoin will close they are all ripe to go up but still not commited to new levels if bitcoin shows slow and bullish continuation first altcoin to pump and to pump strong will be sushi it is at the first position on the starting line note there is difference between commited and non commited non commited means it can make the move down without changing the structure commited is once it breaks out and any break down changes the structure at these stage trade entry is less safe but more profitable the smartest play is to wait at breakout and enter immediately when price gets near the top wicks with good volume strength 2020-12-15 11:57:11+00:00 1.0 1394848551 3878 ill let you know in 10 minutes is it safe to enter alts or not many times i think alts are more advanced than they are they are simple so much less manipulation than bitcoin its a beauty really because big wallets with best algos and market making stuff etc dont have interest in small liquidity that alts have with bitmex i tested and felt their team is chasing your stops because they see it and trade against you while binance to me it seems to be doing so only on some liquid assets like bitcoin and some altcoins i have identified one this bitcoin move looks like your standard famous as you call it bart haha anyway bart or not if it continues like this it will be ranging and slowly bullish which is ideal for alts our only problem was we were too ahead of our time i can tell you right now for safe entry you cant enter the alts now you have to wait for one bigger than doji green candle on btc which will highly likely happen during the hour after this one if not then we go for the levels that make no alts bullish summary for those who dont understand conditional predictions of the market right now bullish cancellation below this low then ≥ we go for 1720017500 area then you dont enter alts at all until further notice 2020-12-01 12:54:56+00:00 1.0 1394848551 3781 2 more minutes and the candle is closing red we called it at the peak of the green pump congrats brother thanks for following me 2020-11-30 15:58:08+00:00 1.0 1394848551 2782 signal published in the chat now we will send it via bot to the slower premiums and then ill send it to you just so we dont create a massive pump because this will pump for other reasons not needed to buy on top of a brother we can all profit from this move so buying in order 2020-08-11 10:23:47+00:00 1.0 1394848551 2780 double up signal in 5 minutes in premium later today here 2020-08-11 10:14:58+00:00 1.0 1394848551 323 finally the book with the 5x coin written by a fan you can get here for just 3 its 100 fanwritten not incentivized not paid for i am privileged and fortunate to have fans like this recently i couldnt share a coin in the premium because i was worried it will pump too highly and members wont get it at a good price now with this book i can as everyone reads at a different speed step 1 buy here step 2 rate it 5 stars so that your investment spreads across amazon community step 3 if you like the coin invest and enjoy see you at 5x yours d 2018-10-30 12:44:23+00:00 1.0 1214538537 3919 ℹ️ 3 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-12 16:56:51+00:00 1.0 1214538537 3916 ℹ️ 15 minutes ℹ️ start getting logged in now 2019-05-12 16:45:00+00:00 1.0 1214538537 3912 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 16:00:03+00:00 1.0 1214538537 3909 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 15:12:01+00:00 1.0 1214538537 3907 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 14:01:41+00:00 1.0 1214538537 3903 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 09:00:26+00:00 1.0 1214538537 3665 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-03 10:03:11+00:00 1.0 1214538537 3649 pump results coin was crpt low 3713 high 6835 welldone guys pump count 2nd time notewe always repump our coin n we r true to our words ✅ 2019-03-01 18:26:39+00:00 1.0 1214538537 3642 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-03-01 17:01:01+00:00 1.0 1214538537 3641 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-03-01 16:55:22+00:00 1.0 1214538537 3640 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-03-01 16:50:26+00:00 1.0 1214538537 3639 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-03-01 16:40:38+00:00 1.0 1214538537 3638 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-03-01 16:30:32+00:00 1.0 1214538537 3637 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 16:01:44+00:00 1.0 1214538537 3636 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-03-01 15:10:00+00:00 1.0 1214538537 3635 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 13:00:37+00:00 1.0 1214538537 3634 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-03-01 10:03:01+00:00 1.0 1214538537 3624 buy coin sys binance ▶️ tradeindexsymbolsysbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-27 17:00:51+00:00 1.0 1214538537 3623 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-27 16:57:27+00:00 1.0 1214538537 3622 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-27 16:49:21+00:00 1.0 1214538537 3621 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-27 16:41:39+00:00 1.0 1214538537 3620 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-27 16:30:59+00:00 1.0 1214538537 3619 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 16:00:36+00:00 1.0 1214538537 3618 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 15:00:28+00:00 1.0 1214538537 3617 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 13:00:46+00:00 1.0 1214538537 3616 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-27 10:00:24+00:00 1.0 1214538537 3608 pump results coin was storj low 50 high 75 welldone guys pump count 2nd time notewe always repump our coin n we r true to our words ✅ 2019-02-25 17:27:29+00:00 1.0 1214538537 3604 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-25 17:01:02+00:00 1.0 1214538537 3602 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-25 16:55:25+00:00 1.0 1214538537 3601 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-25 16:50:30+00:00 1.0 1214538537 3600 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-25 16:40:40+00:00 1.0 1214538537 3599 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-25 16:32:00+00:00 1.0 1214538537 3598 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 16:01:07+00:00 1.0 1214538537 3597 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-25 15:02:52+00:00 1.0 1214538537 3596 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 13:03:34+00:00 1.0 1214538537 3595 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-25 11:08:20+00:00 1.0 1214538537 3594 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250219 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-25 10:28:14+00:00 1.0 1214538537 3587 buy coin bqx binance ▶️ tradeindexsymbolbqxbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 50 above profit 2019-02-24 17:01:47+00:00 1.0 1214538537 3586 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-02-24 16:55:25+00:00 1.0 1214538537 3585 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2019-02-24 16:50:48+00:00 1.0 1214538537 3584 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2019-02-24 16:40:35+00:00 1.0 1214538537 3583 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-02-24 16:30:34+00:00 1.0 1214538537 3582 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 16:00:45+00:00 1.0 1214538537 3581 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 15:00:29+00:00 1.0 1214538537 3580 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 13:00:41+00:00 1.0 1214538537 3579 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-02-24 11:00:42+00:00 1.0 1214538537 3577 pump results coin was ukg open 830 high 2749 welldone guys nearly 3 x times repump count 2nd time notewe always repump our coin 2019-02-23 18:06:49+00:00 1.0 1214538537 3574 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-23 16:51:03+00:00 1.0 1214538537 3573 ℹ️ 20 minutes ℹ️ start getting logged in yobitnet now 2019-02-23 16:40:53+00:00 1.0 1214538537 3572 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-23 16:40:35+00:00 1.0 1214538537 3570 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-23 16:30:38+00:00 1.0 1214538537 3569 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 16:00:42+00:00 1.0 1214538537 3568 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-23 15:01:39+00:00 1.0 1214538537 3567 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-23 07:36:49+00:00 1.0 1214538537 3562 pump results coin was storj low 5501 high 9670 welldone guys nearly 2 x times notewe always repump our coin 2019-02-21 17:48:56+00:00 1.0 1214538537 3558 coin to pump is storj exchange yobitnet target +300 market storjbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-21 17:01:13+00:00 1.0 1214538537 3556 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-21 16:55:30+00:00 1.0 1214538537 3555 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-21 16:50:48+00:00 1.0 1214538537 3554 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-21 16:40:28+00:00 1.0 1214538537 3553 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-21 16:30:24+00:00 1.0 1214538537 3552 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-21 16:01:35+00:00 1.0 1214538537 3551 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-21 15:01:09+00:00 1.0 1214538537 3550 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-21 12:01:58+00:00 1.0 1214538537 3549 ℹ coin signal information ℹ date thursday 210219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-21 08:22:51+00:00 1.0 1214538537 3548 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 210219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-21 05:25:23+00:00 1.0 1214538537 3544 pump results coin was crpt open 4702 high 11777 welldone guys 25 x times notewe always repump our coin 2019-02-20 18:36:44+00:00 1.0 1214538537 3543 coin to pump is crpt exchange yobitnet target +500 market crptbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-20 17:00:24+00:00 1.0 1214538537 3542 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-20 16:55:22+00:00 1.0 1214538537 3541 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-20 16:50:26+00:00 1.0 1214538537 3540 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-20 16:40:35+00:00 1.0 1214538537 3539 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-20 16:31:22+00:00 1.0 1214538537 3538 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-20 16:04:34+00:00 1.0 1214538537 3537 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-20 11:00:14+00:00 1.0 1214538537 3536 ℹ coin signal information ℹ date wednesday 200219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-20 10:00:26+00:00 1.0 1214538537 3535 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200219 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-20 06:14:34+00:00 1.0 1214538537 3533 pump results coin was blz low 1088 high 2911 welldone guys nearly 2 x times pumped twice till now in this year notewe always repump our coin 2019-02-19 17:41:40+00:00 1.0 1214538537 3529 coin to pump is blz exchange yobitnet target +500 market blzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-19 17:00:47+00:00 1.0 1214538537 3527 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-19 16:55:22+00:00 1.0 1214538537 3526 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-19 16:50:26+00:00 1.0 1214538537 3525 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-19 16:40:23+00:00 1.0 1214538537 3524 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-19 16:30:25+00:00 1.0 1214538537 3523 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-19 16:00:57+00:00 1.0 1214538537 3522 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-19 15:01:40+00:00 1.0 1214538537 3521 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-19 13:00:23+00:00 1.0 1214538537 3520 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-19 11:11:46+00:00 1.0 1214538537 3518 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-18 16:54:30+00:00 1.0 1214538537 3517 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-18 16:42:18+00:00 1.0 1214538537 3516 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-18 16:35:08+00:00 1.0 1214538537 3515 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-18 15:08:47+00:00 1.0 1214538537 3514 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 13:01:55+00:00 1.0 1214538537 3511 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-18 11:00:23+00:00 1.0 1214538537 3510 ℹ coin signal information ℹ date monday 180219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-18 10:10:18+00:00 1.0 1214538537 3509 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 180219 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-18 07:51:17+00:00 1.0 1214538537 3505 pump results coin was ukg open 1105 high 3198 welldone guys nearly 3 x times great buy orders for long time notewe always repump our coin 2019-02-17 17:38:30+00:00 1.0 1214538537 3504 coin to pump is ukg exchange yobitnet target +500 market ukgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-17 17:02:55+00:00 1.0 1214538537 3502 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-17 16:55:23+00:00 1.0 1214538537 3501 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-17 16:50:24+00:00 1.0 1214538537 3500 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-17 16:40:52+00:00 1.0 1214538537 3499 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-17 16:30:25+00:00 1.0 1214538537 3498 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 16:01:59+00:00 1.0 1214538537 3497 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-17 15:00:26+00:00 1.0 1214538537 3496 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-17 10:01:41+00:00 1.0 1214538537 3495 ℹ coin signal information ℹ date sunday 170219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-17 09:26:38+00:00 1.0 1214538537 3494 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-17 07:51:47+00:00 1.0 1214538537 3487 pump results coin was aoa open 180 high 639 welldone guys nearly 4 x times notewe always repump our coin 2019-02-16 17:54:00+00:00 1.0 1214538537 3484 coin to pump is aoa exchange yobitnet target +500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-16 17:00:21+00:00 1.0 1214538537 3482 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-16 16:55:37+00:00 1.0 1214538537 3481 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-16 16:50:05+00:00 1.0 1214538537 3480 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-16 16:40:32+00:00 1.0 1214538537 3479 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-16 16:30:18+00:00 1.0 1214538537 3478 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 16:00:08+00:00 1.0 1214538537 3477 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-16 15:00:26+00:00 1.0 1214538537 3476 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-16 14:02:35+00:00 1.0 1214538537 3475 ℹ coin signal information ℹ date saturday 160219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-16 08:26:03+00:00 1.0 1214538537 3474 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 160219 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-16 06:16:30+00:00 1.0 1214538537 3472 pump results coin was dadi open 821 high 3876 welldone nearly 5 x times notewe always repump our coin 2019-02-15 17:36:31+00:00 1.0 1214538537 3471 coin to pump is dadi exchange yobitnet target +300 market dadibtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-15 17:02:20+00:00 1.0 1214538537 3470 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-15 16:55:24+00:00 1.0 1214538537 3469 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-15 16:50:38+00:00 1.0 1214538537 3468 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-15 16:31:04+00:00 1.0 1214538537 3467 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 16:00:51+00:00 1.0 1214538537 3466 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-15 15:00:27+00:00 1.0 1214538537 3465 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 12:59:11+00:00 1.0 1214538537 3464 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-02-15 10:59:38+00:00 1.0 1214538537 3463 ℹ coin signal information ℹ date friday 150219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-15 05:00:41+00:00 1.0 1214538537 3462 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-15 04:12:28+00:00 1.0 1214538537 3459 pump results coin was theta low 1750 high 2534 repump count2nd time notewe always repump our coin 2019-02-08 01:33:03+00:00 1.0 1214538537 3458 coin to pump is theta exchange yobitnet target +300 market thetabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-07 17:01:13+00:00 1.0 1214538537 3456 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-07 16:56:32+00:00 1.0 1214538537 3455 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-07 16:53:01+00:00 1.0 1214538537 3454 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-07 16:41:15+00:00 1.0 1214538537 3453 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-07 16:32:37+00:00 1.0 1214538537 3452 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 16:02:12+00:00 1.0 1214538537 3451 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-07 15:02:26+00:00 1.0 1214538537 3450 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 070219 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-07 14:07:42+00:00 1.0 1214538537 3448 pump results coin was tnt low 354 high 806 repump count3rd time notewe always repump our coin 2019-02-06 19:43:43+00:00 1.0 1214538537 3447 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-02-06 19:00:34+00:00 1.0 1214538537 3445 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-02-06 18:55:00+00:00 1.0 1214538537 3444 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-02-06 18:50:52+00:00 1.0 1214538537 3443 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-02-06 18:40:46+00:00 1.0 1214538537 3442 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-02-06 18:31:02+00:00 1.0 1214538537 3441 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-02-06 18:01:11+00:00 1.0 1214538537 3440 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-02-06 15:01:41+00:00 1.0 1214538537 3439 ℹ coin signal information ℹ date wednesday 060219 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-02-06 13:52:54+00:00 1.0 1214538537 3438 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 060219 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-02-06 11:48:30+00:00 1.0 1214538537 3436 pump results coin was ren low 519 high 1042 2x times repump count 2nd time presence of chat admin n banning our team members deprived us from high profits notewe always repump our coin 2019-01-26 19:48:04+00:00 1.0 1214538537 3435 pump results coin was wtc low 519 high 1042 2x times repump count 2nd time presence of chat admin n banning our team members deprived us from high profits notewe always repump our coin 2019-01-26 19:29:24+00:00 1.0 1214538537 3431 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-26 19:00:30+00:00 1.0 1214538537 3429 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-26 18:55:48+00:00 1.0 1214538537 3428 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-26 18:50:29+00:00 1.0 1214538537 3427 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-26 18:40:11+00:00 1.0 1214538537 3426 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-26 18:31:05+00:00 1.0 1214538537 3425 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 18:00:37+00:00 1.0 1214538537 3424 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-26 17:00:24+00:00 1.0 1214538537 3423 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-26 15:00:19+00:00 1.0 1214538537 3422 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260119 saturday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-26 14:00:15+00:00 1.0 1214538537 3420 pump results coin was wtc open 25010 high 75060 3x times repump count 2nd time notewe always repump our coin 2019-01-25 17:37:56+00:00 1.0 1214538537 3419 post coin name in yobit chatbox 2019-01-25 17:13:05+00:00 1.0 1214538537 3416 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-25 17:01:11+00:00 1.0 1214538537 3414 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-25 16:55:22+00:00 1.0 1214538537 3413 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-25 16:50:33+00:00 1.0 1214538537 3412 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-25 16:40:44+00:00 1.0 1214538537 3411 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-25 16:30:22+00:00 1.0 1214538537 3410 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 16:00:13+00:00 1.0 1214538537 3409 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-25 15:08:24+00:00 1.0 1214538537 3408 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-25 13:00:42+00:00 1.0 1214538537 3407 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 250119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-25 11:01:02+00:00 1.0 1214538537 3405 pump results coin was tnt low 400 high 670 analysis heavy buyingselling occured duration pumped two times by our trollingefforts repump count2nd time notewe always repump our coin 2019-01-23 19:34:33+00:00 1.0 1214538537 3402 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-23 19:00:35+00:00 1.0 1214538537 3400 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-23 18:55:18+00:00 1.0 1214538537 3399 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-23 18:50:27+00:00 1.0 1214538537 3398 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-23 18:40:28+00:00 1.0 1214538537 3397 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-23 18:30:22+00:00 1.0 1214538537 3396 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 18:00:27+00:00 1.0 1214538537 3395 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-23 17:00:12+00:00 1.0 1214538537 3393 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2019-01-23 15:01:37+00:00 1.0 1214538537 3392 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230119 wednesday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-23 14:03:27+00:00 1.0 1214538537 3390 pump results coin was via open 8900 high 12829 heavy buyingselling occured beyond expectations notewe always repump our coin 2019-01-20 17:44:01+00:00 1.0 1214538537 3387 the coin to pump is via exchange yobitnet target +200 market viabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-20 17:06:01+00:00 1.0 1214538537 3385 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-20 16:55:36+00:00 1.0 1214538537 3384 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-20 16:50:12+00:00 1.0 1214538537 3383 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-20 16:40:55+00:00 1.0 1214538537 3382 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-20 16:31:44+00:00 1.0 1214538537 3381 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 16:00:34+00:00 1.0 1214538537 3380 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-20 15:01:36+00:00 1.0 1214538537 3379 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-20 13:08:03+00:00 1.0 1214538537 3378 ℹ coin signal information ℹ date sunday 200119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-20 10:00:52+00:00 1.0 1214538537 3377 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 200119 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-20 06:10:13+00:00 1.0 1214538537 3374 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-19 16:47:42+00:00 1.0 1214538537 3373 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-19 16:30:31+00:00 1.0 1214538537 3372 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-19 16:09:40+00:00 1.0 1214538537 3371 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-19 15:00:30+00:00 1.0 1214538537 3370 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-19 13:03:29+00:00 1.0 1214538537 3369 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 190119 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-19 10:02:11+00:00 1.0 1214538537 3367 pump results coin was ren open 505 high 1019 x 2 notewe always repump our coin 2019-01-17 18:03:14+00:00 1.0 1214538537 3363 the coin to pump is ren exchange yobitnet target +200 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-17 17:02:31+00:00 1.0 1214538537 3361 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-17 16:55:05+00:00 1.0 1214538537 3360 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-17 16:50:12+00:00 1.0 1214538537 3359 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-17 16:40:02+00:00 1.0 1214538537 3358 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-17 16:30:13+00:00 1.0 1214538537 3357 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 16:00:08+00:00 1.0 1214538537 3356 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-17 15:00:08+00:00 1.0 1214538537 3355 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-17 13:00:35+00:00 1.0 1214538537 3354 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 170119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-17 06:32:53+00:00 1.0 1214538537 3352 pump results coin was mth low 401 high 1012 analysis great buy orders for long time duration pumped two times by our trollingefforts repump count3rd time notewe always repump our coin 2019-01-14 18:01:35+00:00 1.0 1214538537 3347 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-14 17:01:18+00:00 1.0 1214538537 3345 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-14 16:55:20+00:00 1.0 1214538537 3344 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-14 16:50:25+00:00 1.0 1214538537 3343 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-14 16:40:19+00:00 1.0 1214538537 3342 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-14 16:30:28+00:00 1.0 1214538537 3341 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 16:00:21+00:00 1.0 1214538537 3340 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-14 15:00:31+00:00 1.0 1214538537 3339 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-14 13:00:16+00:00 1.0 1214538537 3338 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 140119 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-14 10:33:52+00:00 1.0 1214538537 3244 pump results coin was bnt low 00001400 reached 0000017849 heavy volume created 11 btc heavy buying selling occured in our coinwhich is unexpected n unpredictible preventing it 2018-12-29 18:29:59+00:00 1.0 1214538537 3240 amit sharma the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-29 17:00:33+00:00 1.0 1214538537 3237 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-29 16:55:18+00:00 1.0 1214538537 3236 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-29 16:50:22+00:00 1.0 1214538537 3235 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-29 16:40:21+00:00 1.0 1214538537 3234 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-29 16:30:33+00:00 1.0 1214538537 3233 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 16:00:19+00:00 1.0 1214538537 3232 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 15:00:22+00:00 1.0 1214538537 3231 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-29 13:00:12+00:00 1.0 1214538537 3230 ℹ coin signal information ℹ date saturday 29122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-29 10:26:11+00:00 1.0 1214538537 3229 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29122018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-29 09:04:17+00:00 1.0 1214538537 3227 pump results x2 coin was qkc open 000000920 reached 000001886 note we will always pump our coins againso always trade with us for max profit 2018-12-28 17:17:09+00:00 1.0 1214538537 3222 the coin to pump is qkc exchange yobitnet target +500 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-28 16:00:39+00:00 1.0 1214538537 3220 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-28 15:55:17+00:00 1.0 1214538537 3219 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-28 15:50:16+00:00 1.0 1214538537 3218 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-28 15:40:19+00:00 1.0 1214538537 3217 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-28 15:30:18+00:00 1.0 1214538537 3216 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 15:00:18+00:00 1.0 1214538537 3215 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-28 14:30:22+00:00 1.0 1214538537 3214 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 13:00:17+00:00 1.0 1214538537 3213 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-12-28 10:00:36+00:00 1.0 1214538537 3211 ℹ coin signal information ℹ date friday 28122018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all ofj us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-28 09:14:36+00:00 1.0 1214538537 3199 pump results coin was dlt 24 hr low 000000881 reached 000001520 note we will always pump our coins againso always trade with us for max profit 2018-12-26 18:02:55+00:00 1.0 1214538537 3195 the coin to pump is dlt exchange yobitnet target +500 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-26 17:00:48+00:00 1.0 1214538537 3193 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-26 16:55:02+00:00 1.0 1214538537 3192 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-26 16:50:05+00:00 1.0 1214538537 3191 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-26 16:40:10+00:00 1.0 1214538537 3190 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-26 16:30:02+00:00 1.0 1214538537 3189 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 16:00:03+00:00 1.0 1214538537 3188 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-26 15:00:05+00:00 1.0 1214538537 3187 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-26 13:00:26+00:00 1.0 1214538537 3186 ℹ coin signal information ℹ date wednesday 26122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-26 10:59:34+00:00 1.0 1214538537 3185 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-26 09:01:20+00:00 1.0 1214538537 3177 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-24 19:00:08+00:00 1.0 1214538537 3175 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-24 18:55:05+00:00 1.0 1214538537 3174 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-24 18:50:06+00:00 1.0 1214538537 3173 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-24 18:39:07+00:00 1.0 1214538537 3172 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-24 18:30:09+00:00 1.0 1214538537 3171 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 18:00:07+00:00 1.0 1214538537 3169 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 17:00:10+00:00 1.0 1214538537 3168 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 15:00:39+00:00 1.0 1214538537 3167 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-24 13:00:19+00:00 1.0 1214538537 3166 ℹ coin signal information ℹ date monday 24122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-24 10:03:29+00:00 1.0 1214538537 3165 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24122018 monday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-24 09:33:14+00:00 1.0 1214538537 3163 pump results 7 coin was brd started 000005299 reached 000005699 vol 16 btc 2018-12-22 17:39:50+00:00 1.0 1214538537 3158 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2018-12-22 16:55:28+00:00 1.0 1214538537 3157 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2018-12-22 16:50:52+00:00 1.0 1214538537 3156 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-12-22 16:40:27+00:00 1.0 1214538537 3155 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-12-22 16:31:34+00:00 1.0 1214538537 3154 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 16:00:46+00:00 1.0 1214538537 3153 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 15:00:17+00:00 1.0 1214538537 3151 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 11:00:02+00:00 1.0 1214538537 3144 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-20 17:01:18+00:00 1.0 1214538537 3142 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-20 16:55:18+00:00 1.0 1214538537 3141 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-20 16:50:28+00:00 1.0 1214538537 3140 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-20 16:40:18+00:00 1.0 1214538537 3139 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-20 16:30:23+00:00 1.0 1214538537 3138 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 16:00:41+00:00 1.0 1214538537 3137 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-20 15:00:52+00:00 1.0 1214538537 3136 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-20 11:00:47+00:00 1.0 1214538537 3135 ℹ coin signal information ℹ date thursday 20122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-20 07:00:16+00:00 1.0 1214538537 3134 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for ato least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces byi setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 20122018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-20 05:41:37+00:00 1.0 1214538537 3130 pump results almost x 2 coin was loom started 000001125 reached 000002153 vol 035 btc note we will always pump our coins againso always trade with us for max profit 2018-12-18 18:38:37+00:00 1.0 1214538537 3125 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-18 18:00:52+00:00 1.0 1214538537 3123 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-18 17:55:21+00:00 1.0 1214538537 3122 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-18 17:50:19+00:00 1.0 1214538537 3121 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-18 17:40:20+00:00 1.0 1214538537 3120 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-18 17:30:17+00:00 1.0 1214538537 3119 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-18 17:00:24+00:00 1.0 1214538537 3117 ℹ️ 3 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-18 15:00:21+00:00 1.0 1214538537 3116 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 14:01:06+00:00 1.0 1214538537 3115 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 12:59:39+00:00 1.0 1214538537 3114 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-12-18 11:00:26+00:00 1.0 1214538537 3113 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18122018 tuesday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-18 10:33:36+00:00 1.0 1214538537 3111 pump results coin was req started 000000600 reached 000000920 note we will always pump our coins againso always trade with us for max profit 2018-12-16 17:57:19+00:00 1.0 1214538537 3107 the coin to pump is req exchange yobitnet target +300 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-16 17:00:11+00:00 1.0 1214538537 3105 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-16 16:55:09+00:00 1.0 1214538537 3104 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-16 16:50:03+00:00 1.0 1214538537 3103 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-16 16:40:03+00:00 1.0 1214538537 3102 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-16 16:30:09+00:00 1.0 1214538537 3101 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 16:00:12+00:00 1.0 1214538537 3100 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-16 15:00:11+00:00 1.0 1214538537 3099 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-16 13:00:35+00:00 1.0 1214538537 3098 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnetk time 5 pm gmt read the instructions above and be ready 2018-12-16 11:00:13+00:00 1.0 1214538537 3097 ℹ coin signal information ℹ date sunday16122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-16 10:03:13+00:00 1.0 1214538537 3091 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-14 17:00:23+00:00 1.0 1214538537 3089 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-14 16:55:07+00:00 1.0 1214538537 3088 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-14 16:50:06+00:00 1.0 1214538537 3087 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-14 16:40:08+00:00 1.0 1214538537 3086 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-14 16:30:08+00:00 1.0 1214538537 3085 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-14 16:00:08+00:00 1.0 1214538537 3084 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-14 15:00:11+00:00 1.0 1214538537 3083 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-14 13:00:46+00:00 1.0 1214538537 3082 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-14 10:00:15+00:00 1.0 1214538537 3080 ℹ coin signal information ℹ date friday14122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-14 08:07:41+00:00 1.0 1214538537 3079 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmti this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 14122018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-14 05:23:53+00:00 1.0 1214538537 3076 pump results almost x3 coin was eqt started 000000573 reached 000001660 note note we will always pump our coins again 2018-12-12 17:33:29+00:00 1.0 1214538537 3072 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-12 17:00:24+00:00 1.0 1214538537 3070 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-12 16:55:55+00:00 1.0 1214538537 3069 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-12 16:50:13+00:00 1.0 1214538537 3068 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-12 16:40:24+00:00 1.0 1214538537 3067 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-12 16:32:38+00:00 1.0 1214538537 3066 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-12 16:00:09+00:00 1.0 1214538537 3065 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-12 15:30:12+00:00 1.0 1214538537 3064 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-12 15:00:45+00:00 1.0 1214538537 3063 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-12 12:00:57+00:00 1.0 1214538537 3062 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-12 08:00:26+00:00 1.0 1214538537 3061 ℹ coin signal information ℹ date wednesday12122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-12 07:00:33+00:00 1.0 1214538537 3060 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmti this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 12122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-12 05:39:34+00:00 1.0 1214538537 3051 pump results x3 coin was eqt reached 000001400 great job happy and safe trading 2018-12-09 19:40:19+00:00 1.0 1214538537 3047 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-09 19:00:24+00:00 1.0 1214538537 3045 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-09 18:55:03+00:00 1.0 1214538537 3044 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-09 18:50:06+00:00 1.0 1214538537 3043 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-09 18:38:03+00:00 1.0 1214538537 3042 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-09 18:30:05+00:00 1.0 1214538537 3041 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 18:00:08+00:00 1.0 1214538537 3040 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 17:00:09+00:00 1.0 1214538537 3039 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 15:00:06+00:00 1.0 1214538537 3038 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-09 13:00:40+00:00 1.0 1214538537 3036 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09122018 sunday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-09 11:13:22+00:00 1.0 1214538537 3034 pump results x2 coin was plr started 000001270 reached 000002500 vol 049 btcbut looks like more waves can come note some whales just replaced buy orders with 04 btc and 023 2018-12-07 19:59:18+00:00 1.0 1214538537 3030 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-07 19:00:12+00:00 1.0 1214538537 3028 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-07 18:55:15+00:00 1.0 1214538537 3027 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-07 18:50:53+00:00 1.0 1214538537 3026 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-07 18:38:42+00:00 1.0 1214538537 3025 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now pump is only way to make quick moneyso b ready 2018-12-07 18:30:10+00:00 1.0 1214538537 3024 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 18:00:26+00:00 1.0 1214538537 3023 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 17:00:04+00:00 1.0 1214538537 3022 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 15:00:20+00:00 1.0 1214538537 3021 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 13:00:10+00:00 1.0 1214538537 3020 ℹ coin signal information ℹ date friday 07122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt 8 hrs remaining for mega signal ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-07 11:00:18+00:00 1.0 1214538537 3019 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 09:01:22+00:00 1.0 1214538537 3014 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-05 19:00:21+00:00 1.0 1214538537 3012 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-05 18:55:09+00:00 1.0 1214538537 3011 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-05 18:50:09+00:00 1.0 1214538537 3009 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-05 18:38:04+00:00 1.0 1214538537 3008 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-05 18:30:02+00:00 1.0 1214538537 3007 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 18:00:13+00:00 1.0 1214538537 3006 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet u time 7 pm gmt read the instructions above and be ready 2018-12-05 17:00:05+00:00 1.0 1214538537 3005 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 15:00:05+00:00 1.0 1214538537 3003 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 13:00:05+00:00 1.0 1214538537 3002 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 11:00:26+00:00 1.0 1214538537 3001 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 08:51:48+00:00 1.0 1214538537 3000 ℹ coin signal information ℹ date wednesday 05122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-05 06:30:16+00:00 1.0 1214538537 2995 pump results almost x2 coin was alis started 000000692 reached 000001315 noteyou did great job guyz despite lagging yobit website today 2018-12-01 19:40:33+00:00 1.0 1214538537 2989 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-01 19:00:07+00:00 1.0 1214538537 2987 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-01 18:55:12+00:00 1.0 1214538537 2986 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-01 18:50:02+00:00 1.0 1214538537 2985 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-01 18:42:35+00:00 1.0 1214538537 2984 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-01 18:30:12+00:00 1.0 1214538537 2982 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-01 18:00:09+00:00 1.0 1214538537 2981 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-01 17:10:11+00:00 1.0 1214538537 2980 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-01 15:00:11+00:00 1.0 1214538537 2979 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-01 13:08:04+00:00 1.0 1214538537 2978 ℹ️ 7 hours 30 min until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-01 11:31:59+00:00 1.0 1214538537 2977 ℹ coin signal information ℹ date saturday01122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-01 09:40:56+00:00 1.0 1214538537 2967 next post will be coin name 2018-11-30 18:10:06+00:00 1.0 1214538537 2964 less than 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-11-30 17:15:01+00:00 1.0 1214538537 2958 pump announcement date 30 th of november time 1815 gmt note 15 minutes later than today time exchange yobitnet yobitio ⏰countdown watch ⏰ +pumpsfontcursivecsz1 2018-11-29 18:41:35+00:00 1.0 1214538537 2954 next post will be the coin name 2018-11-29 17:55:04+00:00 1.0 1214538537 2951 less than 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-11-29 17:00:03+00:00 1.0 1214538537 2949 pump announcement date 29 th of november time 1800 gmt exchange yobitnet yobitio ⏰countdown watch ⏰ +pumpsfontcursivecsz1 2018-11-29 12:27:20+00:00 1.0 1214538537 2774 results coin tes low 00008103 high 00012544 volume 008 btc increase 93++ target crossed successfully another huge successful pump see you tomorrow 2018-06-05 18:17:54+00:00 1.0 1214538537 2770 pump starts coin name tes market tes btc exchange yobitnet 2018-06-05 17:59:00+00:00 1.0 1214538537 2769 next post with coin name 2018-06-05 17:58:03+00:00 1.0 1214538537 2765 less than 15 minutes left till the pump get ready with you free btc 2018-06-05 17:44:03+00:00 1.0 1214538537 2764 less than 30 minutes left till the pump get ready with you free btc 2018-06-05 17:29:04+00:00 1.0 1214538537 2763 less than 1 hours left till the yobit pump get ready to ride the wave 2018-06-05 17:00:01+00:00 1.0 1214538537 2762 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it 2018-06-05 15:00:04+00:00 1.0 1214538537 2761 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it 2018-06-05 13:00:05+00:00 1.0 1214538537 2760 next pump today date 562018 time 6 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-06-05 00:54:09+00:00 1.0 1214538537 2759 results coin elco low 00000468 high 00000800 volume 014 btc increase 100++ target crossed successfully another huge successful pump see you tomorrow 2018-06-04 18:27:25+00:00 1.0 1214538537 2757 pump starts coin name elco market elco btc exchange yobitnet 2018-06-04 17:59:03+00:00 1.0 1214538537 2756 next post with coin name 2018-06-04 17:58:02+00:00 1.0 1214538537 2752 less than 15 minutes left till the pump get ready with you free btc 2018-06-04 17:44:00+00:00 1.0 1214538537 2751 less than 30 minutes left till the pump get ready with you free btc 2018-06-04 17:29:02+00:00 1.0 1214538537 2750 less than 1 hours left till the yobit pump get ready to ride the wave 2018-06-04 17:00:02+00:00 1.0 1214538537 2748 pump in 2 hours last exchange yobitnet time 6 pm gmt 2018-06-04 16:00:07+00:00 1.0 1214538537 2747 pump in 4 hours last exchange yobitnet time 6 pm gmt countdown 2018-06-04 14:00:02+00:00 1.0 1214538537 2746 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it 2018-06-04 13:03:12+00:00 1.0 1214538537 2744 next pump tomorrow date 462018 time 6 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-06-03 18:54:36+00:00 1.0 1214538537 2743 results coin ufr low 00002168 high 00004860 volume 034 btc increase 180++ target crossed successfully another huge successful pump see you tomorrow 2018-06-03 18:30:45+00:00 1.0 1214538537 2739 pump starts coin name ufr market ufr btc exchange yobitnet 2018-06-03 18:03:37+00:00 1.0 1214538537 2738 next post with coin name 2018-06-03 17:58:03+00:00 1.0 1214538537 2734 less than 15 minutes left till the pump get ready with you free btc 2018-06-03 17:44:02+00:00 1.0 1214538537 2733 less than 30 minutes left till the pump get ready with you free btc 2018-06-03 17:29:02+00:00 1.0 1214538537 2732 less than 1 hours left till the yobit pump get ready to ride the wave 2018-06-03 17:00:01+00:00 1.0 1214538537 2729 less than 3 hours left till the yobit pump time 6 pm gmt countdown 2018-06-03 14:52:34+00:00 1.0 1214538537 2728 less than 17 hours left till the yobit pump time 6 pm gmt countdown 2018-06-03 00:05:53+00:00 1.0 1214538537 2727 next pump sunday date 362018 time 5 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-31 18:13:36+00:00 1.0 1214538537 2726 pump starts coin name ufr market ufr btc exchange yobitnet 2018-05-31 17:29:03+00:00 1.0 1214538537 2725 next post with coin name 2018-05-31 17:28:02+00:00 1.0 1214538537 2721 less than 15 minutes left till the pump get ready with you free btc 2018-05-31 17:14:00+00:00 1.0 1214538537 2720 less than 30 minutes left till the pump get ready with you free btc 2018-05-31 16:59:03+00:00 1.0 1214538537 2716 next pump tomorrow date 3152018 time 529 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-30 18:56:25+00:00 1.0 1214538537 2714 pump starts coin name xbs market xbs btc exchange yobitnet 2018-05-30 17:29:05+00:00 1.0 1214538537 2713 next post with coin name 2018-05-30 17:28:00+00:00 1.0 1214538537 2709 less than 15 minutes left till the pump get ready with you free btc 2018-05-30 17:14:04+00:00 1.0 1214538537 2708 less than 30 minutes left till the pump get ready with you free btc 2018-05-30 16:59:01+00:00 1.0 1214538537 2706 less than 3 hours left till the yobit pump now more than 50k participants time 529 pm gmt 2018-05-30 14:29:03+00:00 1.0 1214538537 2705 less than 5 hours left till the yobit pump now more than 50k participants time 529 pm gmt 2018-05-30 12:29:02+00:00 1.0 1214538537 2703 next pump tomorrow date 3052018 time 529 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-29 20:33:10+00:00 1.0 1214538537 2701 pump starts coin name scrt market scrt btc exchange yobitnet 2018-05-29 17:29:05+00:00 1.0 1214538537 2700 next post with coin name 2018-05-29 17:28:01+00:00 1.0 1214538537 2696 less than 15 minutes left till the pump get ready with you free btc 2018-05-29 17:14:01+00:00 1.0 1214538537 2695 less than 30 minutes left till the pump get ready with you free btc 2018-05-29 16:59:01+00:00 1.0 1214538537 2694 less than 1 hours left till the yobit pump get ready to ride the wave 2018-05-29 16:29:01+00:00 1.0 1214538537 2693 less than 3 hours left till the yobit pump time 529 pm gmt countdown 2018-05-29 14:29:03+00:00 1.0 1214538537 2691 next pump tomorrow date 2952018 time 529 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-28 20:57:05+00:00 1.0 1214538537 2687 pump starts coin name xsy market xsu btc exchange yobitnet 2018-05-28 17:29:07+00:00 1.0 1214538537 2686 next post will be coin name 2018-05-28 17:28:01+00:00 1.0 1214538537 2678 2 hours to go for a huge pump time 529 pm gmt market xxx btc exchange yobitnet 2018-05-28 15:29:01+00:00 1.0 1214538537 2677 next pump today date 2852018 time 529 pm gmt exchange yobitnet target 100+ sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-28 13:55:01+00:00 1.0 1214538537 2676 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-27 17:00:09+00:00 1.0 1214538537 2675 next post will be coin name 2018-05-27 16:59:01+00:00 1.0 1214538537 2655 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-27 11:20:31+00:00 1.0 1214538537 2654 next pump will be tomorrow 5 pm gmt 2018-05-26 15:01:49+00:00 1.0 1214538537 2653 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-26 06:40:28+00:00 1.0 1214538537 2641 the coin to pump is sling exchange yobitnet target +300 500 market slingbtc 2018-05-22 17:00:11+00:00 1.0 1214538537 2640 next post will be coin name 2018-05-22 16:59:13+00:00 1.0 1214538537 2639 under 2 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:58:05+00:00 1.0 1214538537 2638 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:57:12+00:00 1.0 1214538537 2637 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:57:01+00:00 1.0 1214538537 2632 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:00:18+00:00 1.0 1214538537 2628 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-22 06:57:43+00:00 1.0 1214538537 2609 the coin to pump is qtg exchange yobitnet target +300 500 market qtgbtc 2018-05-19 17:00:19+00:00 1.0 1214538537 2608 next post will be coin name 2018-05-19 17:00:14+00:00 1.0 1214538537 2605 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:56:04+00:00 1.0 1214538537 2602 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:31:06+00:00 1.0 1214538537 2601 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:01:13+00:00 1.0 1214538537 2597 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-18 18:03:29+00:00 1.0 1214538537 2596 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-18 17:51:33+00:00 1.0 1214538537 2589 the coin to pump is vega exchange yobitnet target +300 500 market vegabtc 2018-05-18 17:00:29+00:00 1.0 1214538537 2588 next post will be coin name 2018-05-18 16:59:57+00:00 1.0 1214538537 2581 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:31:03+00:00 1.0 1214538537 2580 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:01:02+00:00 1.0 1214538537 2572 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-17 13:30:39+00:00 1.0 1214538537 2566 the coin to pump is lion exchange yobitnet target +300 500 market lionbtc 2018-05-15 17:00:36+00:00 1.0 1214538537 2561 under 10 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:51:00+00:00 1.0 1214538537 2560 under 15 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:46:02+00:00 1.0 1214538537 2559 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:31:27+00:00 1.0 1214538537 2551 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-15 04:09:50+00:00 1.0 1214538537 2550 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-14 17:32:08+00:00 1.0 1214538537 2544 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-14 17:00:27+00:00 1.0 1214538537 2543 next post will be coin name 2018-05-14 16:59:04+00:00 1.0 1214538537 2541 pump in 3 minutes time to make some real money 2018-05-14 16:57:02+00:00 1.0 1214538537 2538 pump in 5 minutes time to make some real money 2018-05-14 16:55:01+00:00 1.0 1214538537 2537 pump in 10 minutes time to make some real money 2018-05-14 16:50:03+00:00 1.0 1214538537 2536 pump in 15 minutes time to make some real money 2018-05-14 16:45:02+00:00 1.0 1214538537 2535 pump in 30 minutes time to make some real money 2018-05-14 16:30:08+00:00 1.0 1214538537 2529 guys today pump will be at as usual time ie 5 pm gmt 2018-05-14 11:48:43+00:00 1.0 1214538537 2523 the coin to pump is ufr exchange yobitnet target +300 500 market ufrbtc btc 2018-05-13 17:15:19+00:00 1.0 1214538537 2522 next post will be coin name 2018-05-13 17:14:08+00:00 1.0 1214538537 2521 pump in 2 minutes time to make some real money 2018-05-13 17:13:05+00:00 1.0 1214538537 2520 pump in 3 minutes time to make some real money 2018-05-13 17:12:07+00:00 1.0 1214538537 2519 pump in 5 minutes time to make some real money 2018-05-13 17:10:09+00:00 1.0 1214538537 2518 pump in 10 minutes time to make some real money 2018-05-13 17:05:00+00:00 1.0 1214538537 2517 pump in 15 minutes time to make some real money 2018-05-13 17:00:46+00:00 1.0 1214538537 2516 pump in 30 minutes time to make some real money 2018-05-13 16:45:01+00:00 1.0 1214538537 2515 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-13 16:18:59+00:00 1.0 1214538537 2508 notice guysthe pump time was changed to 515 pm gmtearlier it was 5 pm gmt 2018-05-12 18:19:11+00:00 1.0 1214538537 2507 next pump tomorrow time 515 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-12 18:17:51+00:00 1.0 1214538537 2502 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-12 17:00:10+00:00 1.0 1214538537 2501 next post will be coin name 2018-05-12 16:59:02+00:00 1.0 1214538537 2500 pump in 2 minutes time to make some real money 2018-05-12 16:58:01+00:00 1.0 1214538537 2499 pump in 3 minutes time to make some real money 2018-05-12 16:57:05+00:00 1.0 1214538537 2498 pump in 5 minutes time to make some real money 2018-05-12 16:55:03+00:00 1.0 1214538537 2497 pump in 10 minutes time to make some real money 2018-05-12 16:50:05+00:00 1.0 1214538537 2496 pump in 15 minutes time to make some real money 2018-05-12 16:45:48+00:00 1.0 1214538537 2495 pump in 30 minutes time to make some real money 2018-05-12 16:30:08+00:00 1.0 1214538537 2485 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-11 23:15:55+00:00 1.0 1214538537 2479 the coin to pump is loom exchange yobitnet target +300 500 market loombtc 2018-05-11 16:59:53+00:00 1.0 1214538537 2478 next post will be coin name 2018-05-11 16:59:04+00:00 1.0 1214538537 2477 pump in 2 minutes time to make some real money 2018-05-11 16:58:01+00:00 1.0 1214538537 2474 pump in 5 minutes time to make some real money 2018-05-11 16:55:01+00:00 1.0 1214538537 2473 pump in 10 minutes time to make some real money 2018-05-11 16:50:00+00:00 1.0 1214538537 2472 pump in 15 minutes time to make some real money 2018-05-11 16:45:03+00:00 1.0 1214538537 2470 pump in 30 minutes time to make some real money 2018-05-11 16:30:25+00:00 1.0 1214538537 2460 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-11 07:29:53+00:00 1.0 1214538537 2449 so guys keep your focus on the coin name dont be hurry 2018-05-10 17:12:56+00:00 1.0 1214538537 2446 the coin to pump is units exchange yobitnet target +300 500 market unitsbtc 2018-05-10 17:02:59+00:00 1.0 1214538537 2444 next post will be coin name 2018-05-10 16:59:01+00:00 1.0 1214538537 2443 pump in 2 minutes time to make some real money 2018-05-10 16:58:01+00:00 1.0 1214538537 2442 pump in 3 minutes time to make some real money 2018-05-10 16:57:04+00:00 1.0 1214538537 2441 pump in 5 minutes time to make some real money 2018-05-10 16:55:01+00:00 1.0 1214538537 2440 pump in 10 minutes time to make some real money 2018-05-10 16:50:07+00:00 1.0 1214538537 2439 pump in 15 minutes time to make some real money 2018-05-10 16:45:01+00:00 1.0 1214538537 2438 pump in 30 minutes time to make some real money 2018-05-10 16:30:09+00:00 1.0 1214538537 2400 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-09 17:01:49+00:00 1.0 1214538537 2399 next post will be coin name 2018-05-09 16:59:01+00:00 1.0 1214538537 2394 pump in 15 minutes time to make some real money 2018-05-09 16:45:13+00:00 1.0 1214538537 2369 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-09 04:18:47+00:00 1.0 1214538537 2355 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-08 17:00:49+00:00 1.0 1214538537 2354 next post will be coin name 2018-05-08 16:59:01+00:00 1.0 1214538537 2353 pump in 2 minutes time to make some real money 2018-05-08 16:58:01+00:00 1.0 1214538537 2349 pump in 10 minutes time to make some real money 2018-05-08 16:50:00+00:00 1.0 1214538537 2348 pump in 15 minutes time to make some real money 2018-05-08 16:45:01+00:00 1.0 1214538537 2347 pump in 30 minutes time to make some real money 2018-05-08 16:30:03+00:00 1.0 1214538537 2346 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-08 16:00:50+00:00 1.0 1214538537 2345 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-08 15:38:24+00:00 1.0 1214538537 2323 pump results coin was rr open 191 max 1385 exchange yobit price go to 10x after coin announcent 2018-05-07 17:47:45+00:00 1.0 1214538537 2319 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-05-07 17:03:03+00:00 1.0 1214538537 2315 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-05-07 17:01:19+00:00 1.0 1214538537 2314 next post will be coin name 2018-05-07 16:59:03+00:00 1.0 1214538537 2313 pump in 2 minutes time to make some real money 2018-05-07 16:58:03+00:00 1.0 1214538537 2309 pump in 10 minutes time to make some real money 2018-05-07 16:50:01+00:00 1.0 1214538537 2307 pump in 30 minutes time to make some real money 2018-05-07 16:30:32+00:00 1.0 1214538537 2277 next post will be coin name link exchange yobitio yobitnet market btc note to avoid telegram post delay lag to escape from bot api trackers buyers we may need to post the coin a little bit earlier may be few sec to 1 min before 3 pm gmt 2018-05-06 14:55:02+00:00 1.0 1214538537 2275 just 30 minutes till yobit pump 2018-05-06 14:29:12+00:00 1.0 1214538537 2225 pump announcement date sunday 6 of may time 3 pm 1500 gmt time exchange yobitnet yobitio ⏰countdown watch ⏰ +pumpsfontcursivecsz1 2018-05-05 06:17:40+00:00 1.0 1214538537 2084 pump starts the coin to pump is atm exchange yobitnet target 100 market atm btc 2018-05-01 16:30:13+00:00 1.0 1214538537 2069 1 hours left to pump exchange yobitnet time 430 pm gmt 2018-05-01 15:30:06+00:00 1.0 1214538537 1992 next pump tomorrow date 152018 time 430 pm gmt exchange yobitnet target 100 sign up on yobitnet get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-04-30 21:34:15+00:00 1.0 1214538537 1921 ⚠️ attention we will share here binance pump signal in next 5 minutes ⚠️ use restrict stop loss ⚠️ high risk alert ⛑ only for risk takers ⛑ 2018-04-29 18:55:04+00:00 1.0 1214538537 1676 ⚠️ attention we will share here a pump signal in next 10 minutes ⚠️ use restrict stop loss ⚠️ high risk alert ⛑ only for risk takers ⛑ 2018-04-14 16:50:24+00:00 1.0 1214538537 858 next post will be the coin name 2018-03-08 14:57:04+00:00 1.0 1214538537 836 only 10 minutes left to mega yobit pump please use troll box chat in yobit remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-03-07 14:50:20+00:00 1.0 1214538537 834 just 30 minutes left to yobit mega pump ❤ prepare your yobit account❤ 2018-03-07 14:30:48+00:00 1.0 1214538537 833 only 1 hour left to yobit pump 2018-03-07 14:01:05+00:00 1.0 1214538537 831 2 hours left to yobit pump 3 pm gmt 2018-03-07 13:01:07+00:00 1.0 1214538537 830 4 hours left to yobit pump 3 pm gmt 2018-03-07 11:00:39+00:00 1.0 1214538537 828 6 hours left to yobit pump 3 pm gmt 2018-03-07 09:00:38+00:00 1.0 1214538537 818 pump announcement date today wednesday 7 of march time 3 pm gmt 1500 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-07 04:14:08+00:00 1.0 1214538537 796 only 10 minutes left to mega yobit pump please use troll box chat in yobit remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-03-05 15:49:37+00:00 1.0 1214538537 794 only 1 hour left to yobit pump 2018-03-05 14:59:23+00:00 1.0 1214538537 793 2 hours left to yobit pump 2018-03-05 13:59:51+00:00 1.0 1214538537 783 pump announcement date tomorrow monday 5 th of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-04 18:24:20+00:00 1.0 1214538537 774 pump analysis coin boom yobit start price 000047000 reached price 000135022 x 287 with peak 2018-03-04 16:26:19+00:00 1.0 1214538537 741 pump announcement date today sunday 4th of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-04 05:56:19+00:00 1.0 1214538537 713 4 hours left to yobit pump 2018-03-02 11:59:19+00:00 1.0 1214538537 679 pump announcement date friday 2nd of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-01 17:29:44+00:00 1.0 1214538537 668 2 hour to go mega yobit pump coming the rocket to moon is leaving soon 2018-03-01 14:01:16+00:00 1.0 1214538537 651 pump announcement date thursday 1st of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-28 17:19:16+00:00 1.0 1214538537 625 only 10 minutes left to mega yobit pump please use troll box chat in yobit remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-02-27 15:49:47+00:00 1.0 1214538537 612 6 hours left to yobit pump 2018-02-27 09:59:43+00:00 1.0 1214538537 608 12 hours left to yobit pump 2018-02-27 03:59:37+00:00 1.0 1214538537 589 pump announcement date tuesday 27 of february time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-26 12:13:44+00:00 1.0 1214538537 551 only 10 minutes left to mega yobit pump please use troll box chat in yobit remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-02-25 17:49:58+00:00 1.0 1214538537 534 pump announcement date sunday 25 of february hour 6 pm gmt 1800 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-24 19:52:02+00:00 1.0 1214538537 512 only 10 minutes left to mega yobit pump please use troll box chat in yobit remember our strategy buy fast use troll box chat in yobit to pormote the coin hold and wait few time till outsider jump then sell on profit 2018-02-23 19:49:43+00:00 1.0 1214538537 510 1 hour left to yobit pump 2018-02-23 18:59:57+00:00 1.0 1214538537 505 pump announcement date friday 23 of february hour 0800 pm 2000 uk time gmt ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-23 06:00:50+00:00 1.0 1474718622 2795 fxs getting ready for big pump 2021-03-27 05:35:31+00:00 1.0 1474718622 2788 attention biggest mountain pump signal is coming tomorrow we are going to see the biggest mountain pump ever with more than 108k participants get yourself ready for this exchange binance 22th march 5 pm gmt 2021-03-21 04:55:12+00:00 1.0 1474718622 2777 attention biggest mountain pump signal is coming at 18th march we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this exchange binance 18th march 5 pm gmt 2021-03-16 11:15:32+00:00 1.0 1474718622 2743 i m buying via here looks like there is gonna huge pump in via in sometime some whales might pump via buy via below 1450 hold for few hours via can be huge today 2021-03-07 16:00:01+00:00 1.0 1474718622 2740 this month is gonna be huge for dusk dusk will pump huge in march buy and hold for huge profit dusk is coin of the month 2021-03-06 17:15:05+00:00 1.0 1474718622 2732 join this channel for todays mountain pump event only here u will get coin name 2021-03-05 04:03:33+00:00 1.0 1474718622 2727 rdn will follow axs 50 pump in next 3 days dont miss this huge opportunity 2021-03-04 11:24:48+00:00 1.0 1474718622 2700 mountain pump coin name brdbtc entry market price target 500 2021-02-24 17:00:11+00:00 1.0 1474718622 2697 guys do get this seriously understand when over 400k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt exchange binance 2021-02-24 16:00:06+00:00 1.0 1474718622 2696 attention guys around 3 hours left alts market is showing very positive move fomo is expected to jump in todays mountain pump 500 pm 1700 gmt for mountain pump signal target 500 exchange binance 2021-02-24 14:00:06+00:00 1.0 1474718622 2695 mountain pump is going to get insanely fomo as 400k participants will join also crypto twitter will join the party too you guys can hype the coin in twitter also to bring more fomo exchange binance 6 hrs remaining today 5 pm gmt 2021-02-24 11:00:06+00:00 1.0 1474718622 2693 hey guys only about 9 hours left hope u ready for this massive mountain pump event get your binance accounts ready with spare btc this mountain pump signal will also be promoted in twitter with over 400k participants expect 500 gain exchange binance 9 hrs remaining today 5 pm gmt 2021-02-24 08:00:06+00:00 1.0 1474718622 2692 hey guys only about 12 hrs left for our todays mountain pump the strategy for mountain pump is buy the btc pair of the said alt buy and hold for some time share our channel and mountain pump coin to all social media platforms after buying create hype if you dont have binance account then create account and transfer funds to binance when coin will be announced in channel then try to market buy with your 75 btc portfolio exchange binance 12 hrs remaining today 5 pm gmt 2021-02-24 05:00:06+00:00 1.0 1474718622 2689 biggest mountain pump signal is coming tomorrow with more than 400k participants we are going to see the biggest mountain pump ever the volume push will be so hard that it will easily hit 500 get yourself ready for this tomorrow 24th february 5 pm gmt 2021-02-23 14:44:18+00:00 1.0 1474718622 2678 here comes the most awaited mountain pump coin name rdnbtc entry market price target 500 2021-02-22 17:00:13+00:00 1.0 1474718622 2675 guys do get this seriously understand when over 400k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt exchange binance international 2021-02-22 16:00:06+00:00 1.0 1474718622 2674 attention guys around 3 hours left alts market is showing very positive move fomo is expected to jump in todays mountain pump 500 pm 1700 gmt for mountain pump signal target 500 exchange binance international 2021-02-22 14:00:07+00:00 1.0 1474718622 2672 mountain pump is going to get insanely fomo as 400k participants will join also crypto twitter will join the party too you guys can hype the coin in twitter also to bring more fomo exchange binance international 6 hrs remaining today 5 pm gmt 2021-02-22 11:00:05+00:00 1.0 1474718622 2671 hey guys only about 9 hours left hope u ready for this massive mountain pump event get your binance accounts ready this time this mountain pump signal will also be promoted in twitter too with over 400k participants expect 500 gain exchange binance international 9 hrs remaining today 5 pm gmt 2021-02-22 08:00:06+00:00 1.0 1474718622 2669 hey guys only about 12 hrs left the strategy for our todays mountain pump is buy the btc pair of the said alt buy and hold for some time share our channel and mountain pump coin to all social media platforms after buying create hype exchange binance international 12 hrs remaining today 5 pm gmt 2021-02-22 05:00:05+00:00 1.0 1474718622 2667 biggest mountain pump signal is coming tomorrow with more than 400k participants we are going to see the biggest mountain pump ever the volume push will be so hard that it will easily hit 500 get yourself ready for this tomorrow 22th february 5 pm gmt 2021-02-21 18:01:42+00:00 1.0 1474718622 2659 guys we need to postpone todays mountain pump signal due to some technical issues very sorry to say this but we will let you know the next mountain pump signal date in a day or 2 happy trading bitcoin to the moon 2021-02-19 16:59:13+00:00 1.0 1474718622 2656 guys do get this seriously understand when over 365k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt 2021-02-19 16:00:06+00:00 1.0 1474718622 2655 attention guys around 3 hours left alts market is showing very positive move fomo is expected to jump in todays mountain pump 500 pm 1700 gmt for mountain pump signal target 500 2021-02-19 14:00:06+00:00 1.0 1474718622 2654 mountain pump is going to get insanely fomo as 365k participants will join also crypto twitter will join the party too you guys can hype the coin in twitter also to bring more fomo 6 hrs remaining today 5 pm gmt 2021-02-19 11:00:05+00:00 1.0 1474718622 2651 hey guys only about 12 hrs left the strategy for our todays mountain pump is buy the btc pair of the said alt buy and hold for some time share our channel and mountain pump coin to all social media platforms after buying create hype 12 hrs remaining today 5 pm gmt 2021-02-19 05:00:06+00:00 1.0 1474718622 2649 hey guys hope u ready for this massive mountain pump event get your binance accounts ready this time this mountain pump signal will also be promoted in twitter too with over 365k participants expect 500 gain 24 hrs remaining 19th february 5 pm gmt 2021-02-18 17:00:05+00:00 1.0 1474718622 2645 biggest mountain pump signal is coming tomorrow with more than 365k participants we are going to see the biggest mountain pump ever the volume push will be so hard that it will easily hit 500 get yourself ready for this tomorrow 19th february 5 pm gmt 2021-02-18 05:25:19+00:00 1.0 1474718622 2639 this is great altszn and almost all alts have gone huge from its dip ark is one undervalued coin also ark is in whales favorite zone to pump from here buying arkbtc here buy below 1600 sats target 180020002200240026002800 2021-02-17 04:19:21+00:00 1.0 1474718622 2615 here goes the mountain pump coin name fiobtc entry market price 2021-02-04 17:00:16+00:00 1.0 1474718622 2612 guys do get this seriously understand when over 350k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt 2021-02-04 16:00:06+00:00 1.0 1474718622 2611 attention guys around 2 hours left alts market is showing very positive move fomo is expected to jump in todays mountain pump 500pm1700 gmt for mountain pump signal target 500 2021-02-04 15:00:07+00:00 1.0 1474718622 2610 hey guys only about 3 hrs left the strategy for our todays mountain pump is buy the btc pair of the said alt buy and hold for some time share our channel and mountain pump coin to all social media platforms after buying create hype 3 hrs remaining today 5 pm gmt channel link 2021-02-04 14:00:06+00:00 1.0 1474718622 2609 mountain pump is going to get insanely fomo as 350k participants will join also crypto twitter will join the party too you guys can hype the coin in twitter also to bring more fomo 6 hrs remaining today 5 pm gmt 2021-02-04 11:00:06+00:00 1.0 1474718622 2608 hey guys hope u ready for this massive mountain pump event get your binance accounts ready this time this mountain pump alt will also be promoted in twitter too with over 350k participants expect 500 gain 12 hrs remaining 2021-02-04 05:00:06+00:00 1.0 1474718622 2605 biggest mountain pump signal is coming tomorrow with more than 350k participants we are going to see the biggest mountain pump ever the volume push will be so hard that it will easily hit 500 get yourself ready for this tomorrow 4th february 5 pm gmt 2021-02-03 13:35:37+00:00 1.0 1090996030 10597 ‼️ attention dear members ‼️ we have next special call be ready on bittrexexchange date ➖ 19 may 2018 ⏰ time➖3 pm gmt 830 ist exchange ➖ bittrex you can expect thats coin to hit 100150 profit ⏰ today at 300 pm gmt830 pm ist we are going to share one strong coin with strong technical and fundamentals at bittrex exchange you just need to do one thing dont sell it for small profits you just buy and hold for few hrs and then you sell at whopping 100150 profit if you wanna earn huge then holding is what you need to do thats why we keep on saying buy and hold crypto is all about holding and having patience over 200k participants involving in this special call pin our channel on top so that you will get the notification early when we share that coin name here live countdown wwwfreepumpsignalcom also you can reffer you id and get benifits of special call here 2018-05-19 07:05:04+00:00 1.0 1090996030 10528 dnt big pump soon buy and hold only for our legend members 2018-05-16 18:26:09+00:00 1.0 1090996030 10525 in 10 minutes i will give you a big signal exchange bittrex and binance 2018-05-16 18:05:50+00:00 1.0 1090996030 10137 less then 2 minutes left next post will be coin name 2018-04-24 12:59:04+00:00 1.0 1090996030 10125 less then 2 hours left we have a big special signal on today at bittrex ️exchange bittrex time 1300 gmt date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-24 11:01:08+00:00 1.0 1090996030 10119 be ready less then 3 hours left we have a big special signal on today at bittrex ️exchange bittrex time 1300 gmt date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-24 10:00:17+00:00 1.0 1090996030 10113 be ready we have a big special signal on tomorrow at bittrex ️exchange bittrex time 1300 gmt 630pm ist date tuesday 24 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +signal+on+bittrexfontsanserifcsz1 2018-04-23 17:15:44+00:00 1.0 1090996030 9953 less then 2 minutes left next post will be coin name exchange bittrex 2018-04-14 12:58:45+00:00 1.0 1090996030 9927 login bittrex next post will be coin name and link 2018-04-12 12:58:58+00:00 1.0 1090996030 9926 less then 5 minutes left in our special signal what you need to do buy and hold coin potential 100200 exchange bittrex 2018-04-12 12:56:01+00:00 1.0 1090996030 6210 be ready friends date 04012018 we have organized big signal for big profit for our members more then 190k+ members are participating in this signal and its going to be really huge signal time 13 gmt or 630 ist platform bittrex pinchannelontop so you will not miss it wait for 13 gmt for big potential coin what you need to do buy coin at 13 gmt and promote it on every possible platform like twitter telegram chat box and facebook to get maximum profit in our previous signals we have achieved 50 100 and 180 profit respectively 2018-01-03 18:58:13+00:00 1.0 1090996030 5820 be ready friends less then 2 hours left we have organized big signal today for big profit for our members more then 102k members are participating in this signal and its going to be really huge our last signal were blitz 180 profit byc 100 profit signal time 13 gmt or 630 ist platform bittrex for getting most profit hold coin and promote it on twitter facebook and telegram chats coin name will be announced in less then 2 hour 2017-12-29 11:01:53+00:00 1.0 1090996030 5789 be ready friends less then 6 hours left we have organized big signal today for big profit for our members more then 102k members are participating in this signal and its going to be really huge signal time 13 gmt or 630 ist platform bittrex for getting most profit hold coin and promote it on twitter facebook and telegram chats coin name will be announced in less then 6 hour so buy and hold 2017-12-29 07:02:47+00:00 1.0 1090996030 5617 be ready friends 3 hours left we have organized big signal today for big profit for our members more then 70k members are participating in this signal and its going to be really huge signal time 13 gmt or 630 ist platform bittrex 2017-12-26 10:00:13+00:00 1.0 1090996030 2691 2 hours 30 minutes left for bittrex pump 2017-11-04 10:30:30+00:00 1.0 1090996030 2510 start was pumped over 20 and held its value without a problem great pump given btc breaking new all time highs be ready for our next pump tomorrow at 1600 gmt the target is 50 take care 2017-10-31 16:11:51+00:00 1.0 1090996030 2508 massive pump now bittrex coin start btc start 2017-10-31 16:03:23+00:00 1.0 1090996030 2482 2 hour left for bittrex pump 2017-10-31 11:01:10+00:00 1.0 1090996030 2219 ⚫️platinum hold⚫️ coin brk btc exchange bittrex brk buy and hold until it reaches the target of 50 this is not a pump so if you are slow hodl is the right thing for you dont miss out 2017-10-26 16:00:40+00:00 1.0 1090996030 2154 next post will be the coin name and link 2017-10-25 12:58:46+00:00 1.0 1090996030 2153 4 minutes left for bittrex pump 2017-10-25 12:56:10+00:00 1.0 1090996030 2152 5 minutes left for bittrex pump 2017-10-25 12:55:01+00:00 1.0 1090996030 2151 10 minutes left for bittrex pump 2017-10-25 12:50:04+00:00 1.0 1090996030 2150 14 minutes left for bittrex pump 2017-10-25 12:46:42+00:00 1.0 1090996030 2149 30 minutes left in bittrex pump 2017-10-25 12:30:37+00:00 1.0 1090996030 2148 1 hour left in bittrex pump 2017-10-25 12:00:06+00:00 1.0 1090996030 2147 1 hour 29 minutes left for bittrex pump 2017-10-25 11:31:45+00:00 1.0 1090996030 2046 next post will be the coin name and link 2017-10-23 12:58:12+00:00 1.0 1090996030 2045 3 minutes left for bittrex pump 2017-10-23 12:57:23+00:00 1.0 1090996030 2044 5 minutes left for bittrex pump 2017-10-23 12:55:10+00:00 1.0 1090996030 2043 10 minutes left for bittrex pump 2017-10-23 12:49:48+00:00 1.0 1090996030 2042 15 minutes left for bittrex pump 2017-10-23 12:45:18+00:00 1.0 1090996030 2040 30 minutes left for bittrex pump 2017-10-23 12:30:34+00:00 1.0 1090996030 2036 1 hour left for bittrex pump 2017-10-23 12:01:57+00:00 1.0 1090996030 2030 appr 2 hours left in 13gmt bittrex pump 2017-10-23 11:04:44+00:00 1.0 1090996030 2029 announce next flash pump is on oct 23 today monday at 1330 gmt exchange bittrex +bittrexfontcursive 2017-10-23 11:00:22+00:00 1.0 1090996030 1883 moon pump coin — aur 2017-10-18 14:29:48+00:00 1.0 1090996030 1882 5 min for moon pump exchange bittrex time 1430 gmt 2017-10-18 14:26:36+00:00 1.0 1090996030 1839 ftc was pumped over 20 today next pump 1600 gmt bittrex 2017-10-17 17:20:53+00:00 1.0 1090996030 1828 next post will be the coin name 2017-10-17 14:12:45+00:00 1.0 1090996030 1683 pump in 1h will be pumping previous coin so you can recover coins you are holding 2017-10-13 10:15:52+00:00 1.0 1090996030 1645 next post will be the coin name and link 2017-10-12 12:59:06+00:00 1.0 1090996030 1644 4 minutes left for bittrex pump 2017-10-12 12:56:09+00:00 1.0 1090996030 1643 5 minutes left for bittrex pump 2017-10-12 12:55:13+00:00 1.0 1090996030 1642 10 minutes left for bittrex pump 2017-10-12 12:50:10+00:00 1.0 1090996030 1641 15 minutes left for bittrex pump 2017-10-12 12:46:26+00:00 1.0 1090996030 1640 30 minutes left for bittrex pump 2017-10-12 12:30:06+00:00 1.0 1090996030 1639 40 minutes left in bittrex pump 2017-10-12 12:21:10+00:00 1.0 1090996030 1616 next pump time 1600 gmt exchange bittrex profit goal 35 we did 31 on xvc yesterday and 34 on bta today no prepump no bot lag next pump 2017-10-12 05:39:38+00:00 1.0 1090996030 1503 next post will be the coin name 2017-10-10 12:59:37+00:00 1.0 1090996030 1502 2 minutes left for bittrex pump 2017-10-10 12:58:01+00:00 1.0 1090996030 1500 10 minutes left for bittrex pump 2017-10-10 12:50:06+00:00 1.0 1090996030 1499 15 minutes left for bittrex pump 2017-10-10 12:44:33+00:00 1.0 1090996030 1498 24 minutes left for bittrex pump 2017-10-10 12:36:17+00:00 1.0 1090996030 1496 45 minutes left for bittrex pump 2017-10-10 12:15:12+00:00 1.0 1090996030 1494 1 hour left for bittrex pump 2017-10-10 12:00:03+00:00 1.0 1090996030 1493 1 hour 12 minutes left for bittrex pump 2017-10-10 11:48:08+00:00 1.0 1090996030 1463 today huge yobit pump we are doing a great pump on yobit with honest big team our today pump target 500 time 12 gmt timer +huge+yobit+pump+coming+infontcursive 2017-10-10 09:49:08+00:00 1.0 1090996030 1396 5 minutes left for bittrex pump 2017-10-09 12:55:17+00:00 1.0 1090996030 1394 10 minutes left for bittrex pump 2017-10-09 12:50:10+00:00 1.0 1090996030 1393 13 minutes left for bittrex pump 2017-10-09 12:47:12+00:00 1.0 1090996030 1392 30 minutes left for bittrex pump 2017-10-09 12:30:40+00:00 1.0 1090996030 1391 40 minutes left for bittrex pump 2017-10-09 12:21:00+00:00 1.0 1090996030 1390 44 minutes left for bittrex pump 2017-10-09 12:16:29+00:00 1.0 1090996030 1389 1 hour 14 minutes left for bittrex pump 2017-10-09 11:46:30+00:00 1.0 1090996030 1274 very well done guys nice pump if you did not catch up the sell momentum hodl your coins we will pump the same coin at some time next week so you will have time to recover 2017-10-07 15:11:24+00:00 1.0 1090996030 1248 2 hours 28 minutes left for bittrex pump 2017-10-07 10:32:04+00:00 1.0 1090996030 1204 3 minutes left for bittrex pump 2017-10-06 12:56:43+00:00 1.0 1090996030 1203 5 minutes left for bittrex pump 2017-10-06 12:54:57+00:00 1.0 1090996030 1202 8 minutes left for bittrex pump 2017-10-06 12:51:46+00:00 1.0 1090996030 1200 10 minutes left for bittrex pump 2017-10-06 12:50:26+00:00 1.0 1090996030 1199 12 minutes left for bittrex pump 2017-10-06 12:47:48+00:00 1.0 1090996030 1198 27 minutes left for bittrex pump 2017-10-06 12:33:47+00:00 1.0 1090996030 1197 1 hour left for bittrex pump 2017-10-06 12:01:07+00:00 1.0 1090996030 1196 130 hours left for bittrex pump 2017-10-06 11:30:45+00:00 1.0 1090996030 1110 next post will be coin name and link 2017-10-05 12:58:06+00:00 1.0 1090996030 1106 15 minutes left for bittrex pump 2017-10-05 12:44:54+00:00 1.0 1090996030 1105 26 minutes left for bittrex pump 2017-10-05 12:33:41+00:00 1.0 1090996030 1104 45 minutes left for bittrex pump 2017-10-05 12:15:16+00:00 1.0 1090996030 1103 super hodl get ready for huge hodl at 0200 pm gmt 0730 pm ist 02 hours to go exchange bittrex for more follow count down timer below sell your alts prepare your btc to go high ➡ its not pump dump so the coin has great news so it will go to moon 2017-10-05 12:00:55+00:00 1.0 1090996030 1102 one hour left in 13 gmt bittrex pump 2017-10-05 12:00:34+00:00 1.0 1090996030 707 hodlbot attention please ❤️ 20 mints left ❤️ ⚡ guyz bee ready for today pump ⚡ today we are 2 teams with 200k+ members support for today pump at 15 gmt huge bittrex pump time 15gmt +huge+pump+on+bittrex+coming+in+fontcursive 2017-09-28 14:40:03+00:00 1.0 1090996030 705 u r ready to pump 15h gmt no prepump sure 2017-09-28 14:00:04+00:00 1.0 1090996030 699 attention please ⚡ guyz bee ready for today pump ⚡ today we are 2 teams with 200k+ members support for today pump at 15 gmt huge bittrex pump time 15gmt +huge+pump+on+bittrex+coming+in+fontcursive 2017-09-28 11:31:11+00:00 1.0 1090996030 476 2 hours left for the next strong signal super hold are you ready 2017-09-25 17:00:01+00:00 1.0 1090996030 466 ✈️ next pump ⏰1 min left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-25 14:59:04+00:00 1.0 1090996030 463 ✈️ next pump ⏰15 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-25 14:55:02+00:00 1.0 1090996030 462 ✈️ next pump ⏰15 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-25 14:45:03+00:00 1.0 1090996030 459 ✈️ next pump ⏰30 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-25 14:30:04+00:00 1.0 1090996030 443 ✈️ next pump ⏰1 hour left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-25 14:00:02+00:00 1.0 1090996030 321 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 24092017 exchange ➖ bittrex investment length ➖ short ⏰ timer 2017-09-24 03:17:29+00:00 1.0 1090996030 320 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 23092017 exchange ➖ bittrex investment length ➖ short ⏰ timer 2017-09-24 03:00:43+00:00 1.0 1090996030 265 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 23092017 exchange ➖ bittrex investment length ➖ short ⏰ timer +pumpfontcursive 2017-09-23 01:10:33+00:00 1.0 1090996030 253 another high 30 pump without any prepump and price is still high stay tunned for next pump results will be added here wwwmoneymakerclubml 2017-09-22 13:41:03+00:00 1.0 1090996030 234 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 22092017 exchange ➖ bittrex investment length ➖ short ⏰ timer +pumpfontcursive 2017-09-22 01:40:58+00:00 1.0 1090996030 233 pump went up to 40 and price was holding high more than 30 min great job once againgot already a lot of feedback from you all stay tunned for next pump never sell in loss 2017-09-21 16:52:54+00:00 1.0 1090996030 227 ✈️ next pump ⏰1 min left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-21 14:59:05+00:00 1.0 1090996030 226 ✈️ next pump ⏰3 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-21 14:57:04+00:00 1.0 1090996030 224 ✈️ next pump ⏰5 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-21 14:55:03+00:00 1.0 1090996030 223 ✈️ next pump ⏰15 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-21 14:45:04+00:00 1.0 1090996030 221 ✈️ next pump ⏰30 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-21 14:30:04+00:00 1.0 1090996030 218 ✈️ next pump ⏰1 hour left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-21 14:00:02+00:00 1.0 1090996030 210 ✈️ next pump ⏰2 hour left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-21 13:00:03+00:00 1.0 1090996030 202 nxt1501 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 21092017 exchange ➖ bittrex investment length ➖ short ⏰ timer +pump+fontcursive 2017-09-21 01:57:13+00:00 1.0 1090996030 201 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 20092017 exchange ➖ bittrex investment length ➖ short ⏰ timer +pump+fontcursive 2017-09-21 01:56:45+00:00 1.0 1090996030 197 ✈️ next pump ⏰1 min left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-20 14:59:04+00:00 1.0 1090996030 196 ✈️ next pump ⏰3 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-20 14:57:03+00:00 1.0 1090996030 195 ✈️ next pump ⏰5 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-20 14:55:02+00:00 1.0 1090996030 194 ✈️ next pump ⏰15 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-20 14:45:04+00:00 1.0 1090996030 193 ✈️ next pump ⏰30 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-20 14:30:04+00:00 1.0 1090996030 190 ✈️ next pump ⏰1 hour left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-20 14:00:03+00:00 1.0 1090996030 164 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 20092017 exchange ➖ bittrex investment length ➖ short ⏰ timer +pump+15+gmtfontsanserifcsz1 2017-09-20 04:12:41+00:00 1.0 1090996030 162 big pump tomorrow 2017-09-19 16:37:49+00:00 1.0 1090996030 46 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 12092017 exchange ➖ bittrex investment length ➖ short +pump+fontcursivecsz1 2017-09-12 11:51:10+00:00 1.0 1090996030 31 login your bittrex and be ready and buy as fast as you can when i announce pump coin name and participate in pump on your on risk otherwise follow my other signals 2017-09-11 14:47:24+00:00 1.0 1090996030 27 ✈️ next pump ⏰45 minutes left ⏰ bitrrex ⌛️ 2017-09-11 14:14:13+00:00 1.0 1458508111 598 again this is not pump signal 2021-03-26 09:45:20+00:00 1.0 1458508111 597 attention every body we have a signal for coin we believe it will make huge profit we will put 3 targets our first target 50 profit the second 70 profit the third 100 profit we will sell coin name for only 35 ⭐note it is not pump it is a signal we will make a channel for members who join us to update every thing about this signal dont ask the admin to take the coin name and send the fees after profit this is not allowed ❌ all the best contact with admin spotadminfs 2021-03-26 09:26:43+00:00 1.0 1458508111 590 i know all of you waiting for next pump signal dont ask admin about it when we be ready we will share here as usual 2021-03-25 20:22:57+00:00 1.0 1458508111 574 here is what happened in our pump coin we knew that the pump will be cancelled before they posted this photo by 30 mins so we advice our members to sell the coin with 30 to 37 profit and all our members make profits then after 30 mins the pump group post this photo so we was safe and happy although that the coin pumped and who didnt sell made 90 profit we care alot of your money and your profit congrats for all who exit by 30 to 37 profits and for who sell after 90 profit 2021-03-21 18:06:34+00:00 1.0 1458508111 558 we join the coin before pump and put sell limit orders so when pump starts we take our profit before pump end and we dont stuck 2021-03-19 18:14:53+00:00 1.0 1458508111 557 dont play games with admin she doesnt give u coin name before payment 2021-03-19 17:12:16+00:00 1.0 1458508111 556 we are sure 100 of coin name till now whales didnt enter join fast and make huge profits 2021-03-19 16:03:57+00:00 1.0 1458508111 554 37 member in pump signal lets go to the 2021-03-19 14:47:14+00:00 1.0 1458508111 553 again dont ask admin to get pump coin name and pay after if you dont trust us that is your problem 2021-03-19 14:01:30+00:00 1.0 1458508111 551 attention every body after our success in detect the last pump coin name we are very excited to announce that there is a huge pump in the 21 of march and we also have the coin name last pump we and all of our members who join us made a huge profits we buy before pump and sell before the pump end they said that the coin will make 200 pump but we put our take profit order from 5070 we will not be greedy we dont want to stuck in a pump if you want to know the coin name now before whales to make the maximum profits we sell it vs only 100 if you want to know the coin name in the day of pump few hours before pump we sell it vs only 50 guarantee if the coin name change we will refund your money if the coin not pumped by 5070 at least we will refund you money dont ask the admin to know the coin name and pay after making profits it isnt allowed all the best contact with admin spotadminfs 2021-03-18 13:06:51+00:00 1.0 1458508111 550 wow 30 member joined pump signal till now thank u for trust us note dont share the coin name to any one 2021-03-18 11:38:18+00:00 1.0 1458508111 547 attention every body after our success in detect the last pump coin name we are very excited to announce that there is a huge pump in the 21 of march and we also have the coin name last pump we and all of our members who join us made a huge profits we buy before pump and sell before the pump end they said that the coin will make 200 pump but we put our take profit order from 5070 we will not be greedy we dont want to stuck in a pump if you want to know the coin name now before whales to make the maximum profits we sell it vs only 100 if you want to know the coin name in the day of pump few hours before pump we sell it vs only 50 guarantee if the coin name change we will refund your money if the coin not pumped by 5070 at least we will refund you money dont ask the admin to know the coin name and pay after making profits it isnt allowed all the best contact with admin spotadminfs 2021-03-18 00:11:21+00:00 1.0 1458508111 501 pump after 40 mins we say the coin name to all who contact admin and pay for it spotadminfs 2021-03-07 16:19:12+00:00 1.0 1458508111 500 1 hour and 30 minutes until the pump we will enter before it and put sell limit order and wait the pump and profits 2021-03-07 15:31:15+00:00 1.0 1458508111 499 just 2 hours left until the big pump on binance 2021-03-07 15:01:44+00:00 1.0 1458508111 496 to be clear you will buy 1 hour before pump and put your take profit order so you can make profits once the pump happend we will enter before them and exit before the pump over 2021-03-07 14:07:34+00:00 1.0 1458508111 495 3 hours remaining until the big pump today hundreds of thousands of traders will be buying at once make sure you buy with us early before outsiders do the coin will be btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin enjoy the ride up 2021-03-07 14:04:04+00:00 1.0 1458508111 491 attention every body wall street biggest pump is after 4 hours we have coin name they said that the coin will make 500 pump but we put our take profit order from 5070 we will not be greedy we dont want to stuck in a pump if you want to know the coin name 1 hour before pump we sell it vs only 30 guarantee if the coin name change we will refund your money if the coin not pumped by 5070 at least we will refund you money all the best contact with admin spotadminfs 2021-03-07 13:09:13+00:00 1.0 1458508111 279 hit the target after 10 minutes 2021-01-30 08:32:44+00:00 1.0 1297023884 119 5 minutes left next post will be coin name 2021-05-21 15:55:30+00:00 1.0 1297023884 117 important update looks like alts market bottomed out and now looking ready for reversible from here so we will share a new dip based signal for quick 2x gain within next 3 hours 4pm gmt stay tuned 2021-05-21 13:00:51+00:00 1.0 1297023884 112 next post will be coin name 2021-05-11 15:58:09+00:00 1.0 1297023884 106 everyone the pump was good the volume was 14 btc the first minute we did around 13 from 1332 to 1500 we inform you that we decided to change our coin in the last time our first choice was rdn but the coin increased a lot before pump and we decided to change we will come back to you soon for a next pump greeting ☑️ 2021-03-27 20:22:29+00:00 1.0 1297023884 101 5 minutes left the next post will be the coin 2021-03-27 19:55:33+00:00 1.0 1297023884 89 ◽️date saturday 27 march ◽️time 2000 pm ◽️exchange binancecom this signal is free for everyone everyone will get a coin at the same time we have 3 week to prepare for this pump we are confident enough to say that this pump we will be targeting 50100 profit we are expecting ten of thousands of people all across the world to attend this pump and possibly more people across all social medias will be watching stay tuned 2021-03-07 18:35:08+00:00 1.0 1297023884 61 5 minutes left until the binance push push guide daypushguide1218 2021-01-10 17:55:04+00:00 1.0 1297023884 60 15 minutes left until the binance push push guide daypushguide1218 2021-01-10 17:47:02+00:00 1.0 1297023884 59 30 minutes left until the binance push push guide daypushguide1218 2021-01-10 17:32:05+00:00 1.0 1297023884 54 10 hours left until the binance push our mission during the pump ☑️ 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 5075 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 75 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media 3 our principal mission is to buy the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and go to a new higher this time we are sure that we will pump to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the signal this could be up to an hour or more 4 when you want sell do not sell 100 at once slowly sell 25 at a time doing this you will sell in a bigger price so more profit not cause panic on the market and will aid the signal a lot things you need in order to join☑️ 1 a binance account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement 4 help promote the coin news 5 profit and brag to your friends to help us grow greeting ☑️ 2021-01-10 08:00:09+00:00 1.0 1297023884 44 happy new year pump announcement ☑️ ◽️date sunday 10 january 21 ◽️time 1800 pm gmt ◽️exchange binance this pump is free for everyone now you can promote our channel so that we have as many people as possible for the best pump 2021 its our objective this is a nonprofit organization so every penny you make is all yours to keep this service is free of cost so if any channel tries to sell you this then they are defrauding stay tuned and dont forget to promote this pump its very important if we will have not enough people we will cancel this pump and report greeting ☑️ 2020-12-06 17:45:10+00:00 1.0 1297023884 40 nebl pump results start 2639 end 3000 profit 14 volume 35 btc push period 4 minutes 2020-12-02 21:23:18+00:00 1.0 1297023884 34 hello stay tuned its todays ☑️ ◽️date wednesday 2 december ◽️time 1800 pm gmt ◽️exchange binance best regards 2020-12-02 07:20:39+00:00 1.0 1297023884 33 hello stay tuned less than 24h until the next pump on binance ☑️ now you can promote our channel so that we have as many people as possible this pump will be very huge best regards 2020-12-01 06:30:08+00:00 1.0 1297023884 29 signal binance day ☑️ ◽️date wednesday 02 december ◽️time 1800 pm gmt ◽️exchange binancecom the alt season of december is coming and we will start this month strong with a huge 50+ pump the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming pump best regards 2020-11-28 16:57:56+00:00 1.0 1297023884 20 our whales are more than ready… are you inform your friends about the pump we ask all new users to read the pinned post make sure pin ☑️our channel on top be ready at 09 pm gmt today ☑️read the pump plan in the pinned post less than 6 h ☑️ best regards 2020-11-27 15:02:29+00:00 1.0 1297023884 19 our mission during the pump ☑️ 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 5075 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 75 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media 3 our principal mission is to buy the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and go to a new higher this time we are sure that we will pump to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the signal this could be up to an hour or more 4 when you want sell do not sell 100 at once slowly sell 25 at a time doing this you will sell in a bigger price so more profit not cause panic on the market and will aid the signal a lot things you need in order to join☑️ 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement 4 help promote the coin news 5 profit and brag to your friends to help us grow best regards 2020-11-27 09:05:11+00:00 1.0 1297023884 14 hello stay tuned less than 24h until the next pump on binance ☑️ now you can promote our channel so that we have as many people as possible this pump will be very huge best regards 2020-11-26 09:24:44+00:00 1.0 1260161873 30488 its literally a money printer this indicator notifies 15 minutes before a dump or a pump accuracy 93 profit by november +951 profit by december +1833 profit by january +1096 join them — sponsored 2021-01-19 16:20:38+00:00 1.0 1260161873 29930 its literally a money printer this indicator notifies 15 minutes before a dump or a pump accuracy 93 profit by november +951 profit by december +1833 profit by january +1096 join them — sponsored 2021-01-16 14:41:44+00:00 1.0 1260161873 28850 its literally a money printer this indicator notifies 15 minutes before a dump or a pump accuracy 93 profit by november +951 profit by december +1833 profit by january +1096 join them — sponsored 2021-01-12 14:50:24+00:00 1.0 1260161873 22034 its literally a money printer this indicator notifies 15 minutes before a dump or a pump accuracy 93 profit by october +951 profit by november +1833 profit by december +1096 join them — sponsored 2021-01-02 22:06:32+00:00 1.0 1260161873 4784 xypherianbot has a new command signals this new feature allows you to view a list of the latest whalesniper signals by coin or exchange or both reading it might seem tricky at first but is pretty straightforward each line includes ⚪️✳️ a clickable emoji that defines weather the volume increase detected was bearish bullish or netral the link opens xypherio for more information about the signal date in daymonth format coin and amount traded depending on your settings you will get exchange codes which are outlined on the answer this new feature is available for free to everyone until the next week make sure get a xypherian bot pro subscription after which includes this and many other awesome commands 2020-07-24 18:27:41+00:00 1.0 1403365548 4352 today i have again warned u it will pump any time here is the result within 56 hr 42 quick profit on spot book some profit here and rest hold i have shared 2 coin on this video one coin pump is pending dont miss out our any youtube video otherwise u will regret later for more this type of signal join our premium rjsm130 2021-11-18 12:04:48+00:00 1.0 1403365548 3225 after post instantly pump our each signal fully ta based hope u are enjoying our signal 2021-09-04 10:15:00+00:00 1.0 1403365548 2570 dear members im uploading a new video on youtube topic 1 current bitcoin alts coin update 2 bull run again started 3 why alts coin wont pump when they will pump video will live within 30 minute✅ dont miss anyone like comment subscribe must 2021-07-29 08:03:41+00:00 1.0 1403365548 2429 fully risky future signal big channel pump coin short bts 00385 004036 target 5 200 whenever u want no greedy ness leverage only 23x must✅ cryptojobber 2021-07-21 07:41:19+00:00 1.0 1403365548 34 buy more dia tomo dont panic if price will go down both coin will pump rapidly mark my word 2021-02-07 06:53:27+00:00 1.0 1491351820 18860 currency announcement date 16 january 2022 ⏰ time 1615 gmt ⏰ time 915 pm pak exchange hotbitio pair usdt advantage free for all no pre buying no pre pump no vippremium signal we will be pumping a coin with usdt pairing on hotbitio meaning that you need to have usdt in your account to buy the coin إعلان العملة التاريخ 16 جنوری 2022 ⏰ الوقت 1615 بتوقيت جرينتش ⏰ الوقت 915 مساءً باك الصرف hotbitio الزوج usdt الميزة مجاني للجميع لا يوجد شراء مسبق لا يوجد مضخة مسبقة لا توجد إشارة vip premium سنضخ عملة معدنية بإقران usdt بالدولار الأمريكي فقط على hotbitio ، مما يعني أنك بحاجة إلى أن يكون لديك usdt في حسابك لشراء العملة 2022-01-12 12:20:09+00:00 1.0 1491351820 18829 currency announcement date 11january2022 ⏰ time 1600 gmt ⏰ time 900 pm pak exchange poocoin pair bnb advantage free for all no pre buying no pre pump no vippremium signal إعلان العملة التاريخ 11 جنوری 2022 ⏰ الوقت 1600 بتوقيت جرينتش ⏰ الوقت 0900 مساءً باك الصرف poocoin الزوج bnb الميزة مجاني للجميع لا يوجد شراء مسبق لا يوجد مضخة مسبقة لا توجد إشارة vip premium 2022-01-09 15:51:40+00:00 1.0 1491351820 18819 next message will be the coin name be ready ستكون الرسالة التالية هي اسم العملة كن مستعدا 2022-01-08 16:12:01+00:00 1.0 1491351820 18817 باقي 5 دقيقه فقط علي البامب 5 minutes left for our pump 2022-01-08 16:10:07+00:00 1.0 1491351820 18816 10 minutes left until the pump open our telegram channel open hotbit open hotbit serch bar make ready your usdt buy quickly as soon as the coin is shared 2022-01-08 16:05:07+00:00 1.0 1491351820 18815 باقي 15 دقيقه فقط علي البامب 15 minutes left for our pump 2022-01-08 16:01:22+00:00 1.0 1491351820 18811 باقي 30 دقيقه فقط علي البامب 30 minutes left for our pump 2022-01-08 15:45:34+00:00 1.0 1491351820 18809 باقي 2 ساعات فقط علي البامب 2 hours left for our pump 2022-01-08 14:15:05+00:00 1.0 1491351820 18808 باقي 4 ساعات فقط علي البامب 4 hours left for our pump 2022-01-08 12:15:03+00:00 1.0 1491351820 18807 باقي 6 ساعات فقط علي البامب 6 hours left for our pump 2022-01-08 10:15:04+00:00 1.0 1491351820 18804 باقي 8 ساعات فقط علي البامب 8 hours left for our pump 2022-01-08 08:15:06+00:00 1.0 1491351820 18803 باقي 10 ساعات فقط علي البامب 10 hours left for our pump 2022-01-08 06:15:03+00:00 1.0 1491351820 18798 currency announcement date 08 january 2022 ⏰ time 1615 gmt ⏰ time 915 pm pak exchange hotbitio pair usdt advantage free for all no pre buying no pre pump no vippremium signal we will be pumping a coin with usdt pairing on hotbitio meaning that you need to have usdt in your account to buy the coin إعلان العملة التاريخ 08 جنوری 2022 ⏰ الوقت 1615 بتوقيت جرينتش ⏰ الوقت 915 مساءً باك الصرف hotbitio الزوج usdt الميزة مجاني للجميع لا يوجد شراء مسبق لا يوجد مضخة مسبقة لا توجد إشارة vip premium سنضخ عملة معدنية بإقران usdt بالدولار الأمريكي فقط على hotbitio ، مما يعني أنك بحاجة إلى أن يكون لديك usdt في حسابك لشراء العملة 2022-01-07 06:42:59+00:00 1.0 1491351820 18786 تبقى 5 دقيقة لمضخة poocoin 1000x 5 minutes left for our 1000x poocoin pump sirf 5 minutes baki rah ge hea pump ko 2022-01-06 15:55:05+00:00 1.0 1491351820 18785 تبقى 9 دقيقة لمضخة poocoin 1000x 9 minutes left for our 1000x poocoin pump sirf 9 minutes baki rah ge hea pump ko 2022-01-06 15:51:01+00:00 1.0 1491351820 18784 تبقى 15 دقيقة لمضخة poocoin 1000x 15 minutes left for our 1000x poocoin pump sirf 15 minutes baki rah ge hea pump ko 2022-01-06 15:45:04+00:00 1.0 1491351820 18783 تبقى 30 دقيقة لمضخة poocoin 1000x 30 minutes left for our 1000x poocoin pump sirf 30 minutes baki rah ge hea pump ko 2022-01-06 15:30:17+00:00 1.0 1491351820 18779 تبقى 1 ساعات لمضخة poocoin 1000x الخاصة بنا 1 hours left for our 1000x poocoin pump 1 ghanta baki rah ge 1000x poocoin pump ko 2022-01-06 15:01:08+00:00 1.0 1491351820 18776 تبقى 2 ساعات لمضخة poocoin 1000x الخاصة بنا 2 hours left for our 1000x poocoin pump 2 ghante baki rah ge 1000x poocoin pump ko 2022-01-06 14:00:09+00:00 1.0 1491351820 18775 تبقى 4 ساعات لمضخة poocoin 1000x الخاصة بنا 4 hours left for our 1000x poocoin pump 4 ghante baki rah ge 1000x poocoin pump ko 2022-01-06 12:00:19+00:00 1.0 1491351820 18771 تبقى 6 ساعات لمضخة poocoin 1000x الخاصة بنا 6 hours left for our 1000x poocoin pump 2022-01-06 10:00:18+00:00 1.0 1491351820 18770 تبق 8 ساعات لمضخة poocoin 1000x الخاصة بنا 8 hours left for our 1000x poocoin pump 2022-01-06 08:01:33+00:00 1.0 1491351820 18768 تبق 10 ساعات لمضخة poocoin 1000x الخاصة بنا 10 hours left for our 1000x poocoin pump 2022-01-06 06:01:53+00:00 1.0 1491351820 18764 تبق 12 ساعات لمضخة poocoin 1000x الخاصة بنا 12 hours left for our 1000x poocoin pump 2022-01-06 04:00:59+00:00 1.0 1491351820 18763 currency announcement date 06january2022 ⏰ time 1600 gmt ⏰ time 900 pm pak exchange poocoin pair bnb advantage free for all no pre buying no pre pump no vippremium signal إعلان العملة التاريخ 06 جنوری 2022 ⏰ الوقت 1600 بتوقيت جرينتش ⏰ الوقت 0900 مساءً باك الصرف poocoin الزوج bnb الميزة مجاني للجميع لا يوجد شراء مسبق لا يوجد مضخة مسبقة لا توجد إشارة vip premium 2022-01-06 03:51:27+00:00 1.0 1491351820 18702 next message will be the coin name be ready ستكون الرسالة التالية هي اسم العملة كن مستعدا 2022-01-03 16:13:01+00:00 1.0 1491351820 18699 باقي 5 دقيقه فقط علي البامب 5 minutes left for our pump 2022-01-03 16:10:07+00:00 1.0 1491351820 18698 10 minutes left until the pump open our telegram channel open hotbit open hotbit serch bar make ready your usdt buy quickly as soon as the coin is shared 2022-01-03 16:05:07+00:00 1.0 1491351820 18696 باقي 15 دقيقه فقط علي البامب 15 minutes left for our pump 2022-01-03 16:01:46+00:00 1.0 1491351820 18695 باقي 30 دقيقه فقط علي البامب 30 minutes left for our pump 2022-01-03 15:45:07+00:00 1.0 1491351820 18694 pump coin buy by usdt pair شراء عملة مضخة اليوم عن طريق usdt 2022-01-03 15:37:01+00:00 1.0 1491351820 18688 باقي 2 ساعات فقط علي البامب 2 hours left for our pump 2022-01-03 14:15:05+00:00 1.0 1491351820 18680 باقي 4 ساعات فقط علي البامب 4 hours left for our pump 2022-01-03 12:15:05+00:00 1.0 1491351820 18678 باقي 6 ساعات فقط علي البامب 6 hours left for our pump 2022-01-03 10:15:05+00:00 1.0 1491351820 18673 باقي 8 ساعات فقط علي البامب 8 hours left for our pump 2022-01-03 08:15:04+00:00 1.0 1491351820 18670 باقي 10 ساعات فقط علي البامب 10 hours left for our pump 2022-01-03 06:15:02+00:00 1.0 1491351820 18657 currency announcement date 03 january 2022 ⏰ time 1615 gmt ⏰ time 915 pm pak exchange hotbitio pair usdt advantage free for all no pre buying no pre pump no vippremium signal we will be pumping a coin with usdt pairing on hotbitio meaning that you need to have usdt in your account to buy the coin إعلان العملة التاريخ 03 جنوری 2022 ⏰ الوقت 1615 بتوقيت جرينتش ⏰ الوقت 915 مساءً باك الصرف hotbitio الزوج usdt الميزة مجاني للجميع لا يوجد شراء مسبق لا يوجد مضخة مسبقة لا توجد إشارة vip premium سنضخ عملة معدنية بإقران usdt بالدولار الأمريكي فقط على hotbitio ، مما يعني أنك بحاجة إلى أن يكون لديك usdt في حسابك لشراء العملة 2022-01-02 19:07:06+00:00 1.0 1491351820 18599 تبقى 9 دقيقة لمضخة poocoin 1000x 9 minutes left for our 1000x poocoin pump sirf 9 minutes baki rah ge hea pump ko 2021-12-29 16:51:48+00:00 1.0 1491351820 18597 تبقى 30 دقيقة لمضخة poocoin 1000x 30 minutes left for our 1000x poocoin pump sirf 30 minutes baki rah ge hea pump ko 2021-12-29 16:30:14+00:00 1.0 1491351820 18594 تبقى 1 ساعات لمضخة poocoin 1000x الخاصة بنا 1 hours left for our 1000x poocoin pump 1 ghanta baki rah ge 1000x poocoin pump ko 2021-12-29 16:01:55+00:00 1.0 1491351820 18591 تبقى 3 ساعات لمضخة poocoin 1000x الخاصة بنا 3 hours left for our 1000x poocoin pump 3 ghante baki rah ge 1000x poocoin pump ko 2021-12-29 14:00:37+00:00 1.0 1491351820 18590 تبقى 5 ساعات لمضخة poocoin 1000x الخاصة بنا 5 hours left for our 1000x poocoin pump 2021-12-29 12:01:20+00:00 1.0 1491351820 18586 تبق 8 ساعات لمضخة poocoin 1000x الخاصة بنا 8 hours left for our 1000x poocoin pump 2021-12-29 09:00:19+00:00 1.0 1491351820 18585 تبق 10 ساعات لمضخة poocoin 1000x الخاصة بنا 10 hours left for our 1000x poocoin pump 2021-12-29 07:03:13+00:00 1.0 1491351820 18584 تبق 12 ساعات لمضخة poocoin 1000x الخاصة بنا 12 hours left for our 1000x poocoin pump 2021-12-29 05:00:37+00:00 1.0 1491351820 18563 currency announcement date 29 december2021 ⏰ time 1700 gmt ⏰ time 1000 pm pak exchange poocoin pair bnb advantage free for all no pre buying no pre pump no vippremium signal we will be pumping a coin with bnb pairing on poocoin meaning that you need to have bnb in your account to buy the coin إعلان العملة التاريخ 29 دسمبر 2021 ⏰ الوقت 1700 بتوقيت جرينتش ⏰ الوقت 1000 مساءً باك الصرف poocoin الزوج bnb الميزة مجاني للجميع لا يوجد شراء مسبق لا يوجد مضخة مسبقة لا توجد إشارة vip premium سنضخ عملة معدنية بإقران bnb بالدولار الأمريكي فقط على poocoin ، مما يعني أنك بحاجة إلى أن يكون لديك bnb في حسابك لشراء العملة 2021-12-27 17:41:01+00:00 1.0 1196424883 2695 i have found a gem coin that is way under valued dont miss this opportunity to make money this coin gonna pump hard 200 is the minimum gain pick it up here btc 2020-01-26 21:20:03+00:00 1.0 1196424883 2514 3 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-16 02:04:21+00:00 1.0 1196424883 2513 big pump event guys our team has decided to organise a win win opportunity where you can all profit date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event 2019-11-13 21:46:33+00:00 1.0 1196424883 2509 big pump event guys our team has decided to organise a win win opportunity where you can all profit date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event 2019-11-12 12:00:20+00:00 1.0 1196424883 2481 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-15 19:54:28+00:00 1.0 1196424883 2480 10 minutes left login to binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast 2019-10-15 19:49:31+00:00 1.0 1196424883 2479 those who wants to make some profit be ready by your computer only 20 minutes left the coin name will be in text 2019-10-15 19:40:43+00:00 1.0 1196424883 2478 1 hour left before the pumpmake sure you help promote the coin during the pump 2019-10-15 19:06:44+00:00 1.0 1196424883 2477 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-15 13:03:07+00:00 1.0 1196424883 2218 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-04-17 18:31:00+00:00 1.0 1196424883 2215 5 minutes until the pump pairing btc expected gain 80 200 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-04-17 18:25:00+00:00 1.0 1196424883 2214 10 minutes until the next massive pump 2019-04-17 18:20:00+00:00 1.0 1196424883 2213 15 minutes until the next massive pump 2019-04-17 18:15:00+00:00 1.0 1196424883 2212 30 minutes until the next massive pump make sure funds are ready 2019-04-17 18:00:00+00:00 1.0 1196424883 2211 45 minutes until the next massive pump make sure funds are ready 2019-04-17 17:45:00+00:00 1.0 1196424883 2210 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-04-17 17:30:00+00:00 1.0 1196424883 2209 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-04-17 16:30:00+00:00 1.0 1196424883 2208 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-17 15:30:00+00:00 1.0 1196424883 2207 4 hours until pump time time 1830 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-17 14:30:00+00:00 1.0 1196424883 2206 6 hours until camps next big pump announcement date wednesday 17th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-17 12:30:00+00:00 1.0 1196424883 2205 12 hours until camps next big pump announcement date wednesday 17th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-17 06:30:00+00:00 1.0 1196424883 2204 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-16 19:58:19+00:00 1.0 1196424883 2203 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-16 19:58:16+00:00 1.0 1196424883 2202 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-16 19:58:14+00:00 1.0 1196424883 2200 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-15 14:14:47+00:00 1.0 1196424883 2197 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-12 18:25:31+00:00 1.0 1196424883 2196 camps next pump announcement datewednesday 18th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-12 18:23:41+00:00 1.0 1196424883 2195 camps next pump announcement date monday 16th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-11 16:24:07+00:00 1.0 1196424883 2190 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-04-08 18:31:00+00:00 1.0 1196424883 2187 5 minutes until the pump pairing btc expected gain 80 200 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-04-08 18:25:00+00:00 1.0 1196424883 2186 10 minutes until the next massive pump 2019-04-08 18:20:00+00:00 1.0 1196424883 2185 15 minutes until the next massive pump 2019-04-08 18:15:00+00:00 1.0 1196424883 2184 30 minutes until the next massive pump make sure funds are ready 2019-04-08 18:00:00+00:00 1.0 1196424883 2183 45 minutes until the next massive pump make sure funds are ready 2019-04-08 17:45:00+00:00 1.0 1196424883 2182 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-04-08 17:30:00+00:00 1.0 1196424883 2181 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-04-08 16:30:00+00:00 1.0 1196424883 2180 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-08 15:30:00+00:00 1.0 1196424883 2179 4 hours until pump time time 1830 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-04-08 14:30:00+00:00 1.0 1196424883 2178 6 hours until camps next big pump announcement date monday 08th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-08 12:30:00+00:00 1.0 1196424883 2177 12 hours until camps next big pump announcement date monday 08th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-08 06:30:00+00:00 1.0 1196424883 2176 24 hours until camps next big pump announcement date monday 08th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-07 18:30:00+00:00 1.0 1196424883 2174 camps next pump date monday 8th of april 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-04-06 01:22:10+00:00 1.0 1196424883 2150 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-03-22 18:31:00+00:00 1.0 1196424883 2147 5 minutes until the pump pairing btc expected gain 300 400 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-03-22 18:25:00+00:00 1.0 1196424883 2146 10 minutes until the next massive pump 2019-03-22 18:20:00+00:00 1.0 1196424883 2145 15 minutes until the next massive pump 2019-03-22 18:15:00+00:00 1.0 1196424883 2144 30 minutes until the next massive pump make sure funds are ready 2019-03-22 18:00:00+00:00 1.0 1196424883 2143 45 minutes until the next massive pump make sure funds are ready 2019-03-22 17:45:00+00:00 1.0 1196424883 2142 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-03-22 17:30:00+00:00 1.0 1196424883 2141 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-03-22 16:30:00+00:00 1.0 1196424883 2140 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-22 15:30:00+00:00 1.0 1196424883 2139 4 hours until pump time time 1830 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-22 14:30:00+00:00 1.0 1196424883 2138 6 hours until camps next big pump announcement date friday 22nd of march 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-22 12:30:00+00:00 1.0 1196424883 2137 12 hours until camps next big pump announcement date friday 22nd of march 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-22 06:30:00+00:00 1.0 1196424883 2135 24 hours until camps next big pump announcement date friday 22nd of march 1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-21 18:30:00+00:00 1.0 1196424883 2130 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 ascs228 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-03-18 15:38:40+00:00 1.0 1196424883 2129 if you are looking to join camps vip pump before the pump tommrow contact camppumps we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 ascs228 croc200 m1120 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-03-18 15:36:46+00:00 1.0 1196424883 2128 camps next pump date friday march 22nd of march1830 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-18 15:34:17+00:00 1.0 1196424883 2115 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-03-12 19:31:00+00:00 1.0 1196424883 2111 5 minutes until the pump pairing btc expected gain 300 420 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-03-12 19:25:00+00:00 1.0 1196424883 2110 10 minutes until the next massive pump get youre funds ready 2019-03-12 19:21:10+00:00 1.0 1196424883 2109 10 minutes until the next massive pump 2019-03-12 19:20:00+00:00 1.0 1196424883 2108 15 minutes until the next massive pump 2019-03-12 19:15:00+00:00 1.0 1196424883 2107 30 minutes until the next massive pump make sure funds are ready 2019-03-12 19:00:00+00:00 1.0 1196424883 2106 45 minutes until the next massive pump make sure funds are ready 2019-03-12 18:45:00+00:00 1.0 1196424883 2105 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-03-12 18:30:00+00:00 1.0 1196424883 2104 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-03-12 17:30:00+00:00 1.0 1196424883 2103 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-12 16:30:00+00:00 1.0 1196424883 2102 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-12 15:30:00+00:00 1.0 1196424883 2101 6 hours until camps next big pump announcement date tuesday 12th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-12 13:30:00+00:00 1.0 1196424883 2099 12 hours until camps next big pump announcement date tuesday 12th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-12 07:30:00+00:00 1.0 1196424883 2097 24 hours until camps next big pump announcement date tuesday 12th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-11 19:30:00+00:00 1.0 1196424883 2094 camps next pump date tuesday 12th of march1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-11 01:35:16+00:00 1.0 1196424883 2087 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-03-05 19:31:00+00:00 1.0 1196424883 2084 5 minutes until the pump pairing btc expected gain 300 420 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-03-05 19:25:00+00:00 1.0 1196424883 2083 10 minutes until the next massive pump 2019-03-05 19:20:00+00:00 1.0 1196424883 2082 15 minutes until the next massive pump 2019-03-05 19:15:00+00:00 1.0 1196424883 2081 30 minutes until the next massive pump make sure funds are ready 2019-03-05 19:00:00+00:00 1.0 1196424883 2080 45 minutes until the next massive pump make sure funds are ready 2019-03-05 18:45:00+00:00 1.0 1196424883 2079 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-03-05 18:30:00+00:00 1.0 1196424883 2078 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-03-05 17:30:00+00:00 1.0 1196424883 2077 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-05 16:30:00+00:00 1.0 1196424883 2075 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-03-05 15:30:00+00:00 1.0 1196424883 2074 6 hours until camps next big pump announcement date tuesday 5th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-05 13:30:00+00:00 1.0 1196424883 2073 12 hours until camps next big pump announcement date tuesday 5th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-05 07:30:00+00:00 1.0 1196424883 2072 if you are looking to join camps vip pump before the pump tommrow contact camppumps we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 ascs228 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-03-04 19:43:10+00:00 1.0 1196424883 2071 24 hours until camps next big pump announcement date tuesday 5th of march 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-04 19:30:00+00:00 1.0 1196424883 2070 camps next pump date tuesday 5th of march1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst wednesday australia 430 am aestwednesday india 1200 am ist wednesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-04 12:32:15+00:00 1.0 1196424883 2069 camps next pump date tuesday 5th of march1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-03-04 00:53:59+00:00 1.0 1196424883 2057 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-28 19:31:00+00:00 1.0 1196424883 2054 5 minutes until the pump pairing btc expected gain 300 420 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-28 19:25:00+00:00 1.0 1196424883 2053 10 minutes until the next massive pump 2019-02-28 19:20:00+00:00 1.0 1196424883 2052 15 minutes until the next massive pump 2019-02-28 19:15:00+00:00 1.0 1196424883 2051 30 minutes until the next massive pump make sure funds are ready 2019-02-28 19:00:00+00:00 1.0 1196424883 2050 45 minutes until the next massive pump make sure funds are ready 2019-02-28 18:45:00+00:00 1.0 1196424883 2049 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-28 18:30:00+00:00 1.0 1196424883 2048 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-28 17:30:00+00:00 1.0 1196424883 2047 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-02-28 16:59:04+00:00 1.0 1196424883 2045 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-28 16:30:00+00:00 1.0 1196424883 2044 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-28 15:30:00+00:00 1.0 1196424883 2042 6 hours until camps next big pump announcement date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-28 13:30:00+00:00 1.0 1196424883 2040 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-02-28 10:31:50+00:00 1.0 1196424883 2038 12 hours until camps next big pump announcement date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-28 07:30:00+00:00 1.0 1196424883 2035 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump join yobit to take advantage of these incredible profits 2019-02-27 22:12:57+00:00 1.0 1196424883 2034 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-27 22:12:00+00:00 1.0 1196424883 2033 24 hours until camps next big pump announcement date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-27 19:30:08+00:00 1.0 1196424883 2032 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-27 17:12:09+00:00 1.0 1196424883 2029 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-27 14:55:56+00:00 1.0 1196424883 2028 camps next pump date thursday 28th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst friday australia 430 am aestfriday india 1200 am ist friday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-27 02:14:00+00:00 1.0 1196424883 2027 we have had great success with our past pumps dont miss the next one here are our past results dox 183 pie200 tkn221 fc460 dont miss these massive gains be sure to join the next pump 2019-02-26 20:21:31+00:00 1.0 1196424883 2025 great pump today guys massive gain of 460 we noticed outsiders entering and that people were promoting this coin in the chat box which helped us drastically 2019-02-26 19:45:55+00:00 1.0 1196424883 2023 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-26 19:31:00+00:00 1.0 1196424883 2020 5 minutes until the pump pairing btc expected gain 200 250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-26 19:25:00+00:00 1.0 1196424883 2019 10 minutes until the next massive pump 2019-02-26 19:20:00+00:00 1.0 1196424883 2018 15 minutes until the next massive pump 2019-02-26 19:15:00+00:00 1.0 1196424883 2017 30 minutes until the next massive pump make sure funds are ready 2019-02-26 19:00:00+00:00 1.0 1196424883 2016 45 minutes until the next massive pump make sure funds are ready 2019-02-26 18:45:00+00:00 1.0 1196424883 2015 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-26 18:30:00+00:00 1.0 1196424883 2014 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-26 17:30:00+00:00 1.0 1196424883 2013 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-26 16:30:00+00:00 1.0 1196424883 2012 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-26 15:30:00+00:00 1.0 1196424883 2011 6 hours until camps next big pump announcement date tuesday 26th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-26 13:30:00+00:00 1.0 1196424883 2009 12 hours until camps next big pump announcement date tuesday 26th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-26 07:30:00+00:00 1.0 1196424883 2007 24 hours until camps next big pump announcement date tuesday 26th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-25 19:30:00+00:00 1.0 1196424883 2006 camps next pump date tuesday 26 of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-25 13:09:10+00:00 1.0 1196424883 1996 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-18 19:31:00+00:00 1.0 1196424883 1993 5 minutes until the pump pairing btc expected gain 200 250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-18 19:25:00+00:00 1.0 1196424883 1992 10 minutes until the next massive pump 2019-02-18 19:20:00+00:00 1.0 1196424883 1991 15 minutes until the next massive pump 2019-02-18 19:15:00+00:00 1.0 1196424883 1990 30 minutes until the next massive pump make sure funds are ready 2019-02-18 19:00:00+00:00 1.0 1196424883 1989 45 minutes until the next massive pump make sure funds are ready 2019-02-18 18:45:00+00:00 1.0 1196424883 1988 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-18 18:30:00+00:00 1.0 1196424883 1987 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-18 17:30:00+00:00 1.0 1196424883 1986 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-18 16:30:00+00:00 1.0 1196424883 1985 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-18 15:30:00+00:00 1.0 1196424883 1984 6 hours until camps next big pump announcement date monday 18th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-18 13:30:00+00:00 1.0 1196424883 1982 12 hours until camps next big pump announcement date monday 18th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-18 07:30:00+00:00 1.0 1196424883 1981 24 hours until camps next big pump announcement date monday 18th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-17 19:30:00+00:00 1.0 1196424883 1977 camps next pump date monday 18 of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-17 14:55:58+00:00 1.0 1196424883 1974 camps next pump date monday 18 of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-17 03:32:56+00:00 1.0 1196424883 1967 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-15 19:31:00+00:00 1.0 1196424883 1964 5 minutes until the pump pairing btc expected gain 200 250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-15 19:25:00+00:00 1.0 1196424883 1963 10 minutes until the next massive pump 2019-02-15 19:20:00+00:00 1.0 1196424883 1962 15 minutes until the next massive pump 2019-02-15 19:15:00+00:00 1.0 1196424883 1961 30 minutes until the next massive pump make sure funds are ready 2019-02-15 19:00:00+00:00 1.0 1196424883 1960 45 minutes until the next massive pump make sure funds are ready 2019-02-15 18:45:00+00:00 1.0 1196424883 1959 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-15 18:30:00+00:00 1.0 1196424883 1958 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-15 17:30:00+00:00 1.0 1196424883 1957 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-15 16:30:00+00:00 1.0 1196424883 1956 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-15 15:30:00+00:00 1.0 1196424883 1955 6 hours until camps next big pump announcement date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-15 13:30:00+00:00 1.0 1196424883 1954 join us for todays pump on yobit the last pump went up 183 with more volume it could have gone 400+ todays pump will be bigger everyone 2019-02-15 10:14:37+00:00 1.0 1196424883 1953 12 hours until camps next big pump announcement date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-15 07:30:00+00:00 1.0 1196424883 1951 camps next pump date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-14 21:27:07+00:00 1.0 1196424883 1950 24 hours until camps next big pump announcement date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-14 19:30:00+00:00 1.0 1196424883 1947 camps next pump date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 22:34:25+00:00 1.0 1196424883 1946 camps next pump date friday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst saturday australia 430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 22:34:16+00:00 1.0 1196424883 1945 camps next pump datefriday 15th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 22:33:08+00:00 1.0 1196424883 1941 buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know 2019-02-13 19:31:00+00:00 1.0 1196424883 1934 5 minutes until the pump pairing btc expected gain 200 325 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media this is very important in order to bring in outsiders the next post will be the coin 2019-02-13 19:25:00+00:00 1.0 1196424883 1933 10 minutes until the next massive pump 2019-02-13 19:20:00+00:00 1.0 1196424883 1931 15 minutes until the next massive pump 2019-02-13 19:15:00+00:00 1.0 1196424883 1930 30 minutes until the next massive pump make sure funds are ready 2019-02-13 19:00:00+00:00 1.0 1196424883 1929 45 minutes until the next massive pump make sure funds are ready 2019-02-13 18:45:00+00:00 1.0 1196424883 1928 1 hour until the next massive pump exchange yobit pairing btc type free for all ffa pump make sure funds are ready 2019-02-13 18:30:00+00:00 1.0 1196424883 1927 2 hours until the next massive pump exchange yobit pairing btc type free for all ffa pump 2019-02-13 17:30:00+00:00 1.0 1196424883 1926 3 hours until pump time exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-13 16:30:00+00:00 1.0 1196424883 1925 4 hours until pump time time 1930 gmt ⁣⏰ exchange yobit pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on yobit‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2019-02-13 15:30:00+00:00 1.0 1196424883 1924 6 hours until camps next big pump announcement date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 13:30:00+00:00 1.0 1196424883 1923 12 hours until camps next big pump announcement date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-13 07:30:00+00:00 1.0 1196424883 1922 24 hours until camps next big pump announcement date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump 2019-02-12 19:30:00+00:00 1.0 1196424883 1921 camps next big pump date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump everyone 2019-02-11 16:36:52+00:00 1.0 1196424883 1919 camps next big pump date wednesday 13th of february 1930 gmt exchange yobit pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on yobit if you do not have an account yet make sure you have one this will be a ffa pump everyone 2019-02-11 02:38:31+00:00 1.0 1196424883 1743 5 minutes until the pump next message will be the coin to buy 2018-12-26 19:25:04+00:00 1.0 1196424883 1742 10 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc everyone 2018-12-26 19:22:06+00:00 1.0 1196424883 1741 15 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc 2018-12-26 19:15:00+00:00 1.0 1196424883 1740 20 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc 2018-12-26 19:09:22+00:00 1.0 1196424883 1739 30 minutes until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairingbtc 2018-12-26 18:57:21+00:00 1.0 1196424883 1738 1 hour until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 18:23:26+00:00 1.0 1196424883 1737 2 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 17:25:56+00:00 1.0 1196424883 1736 4 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 15:23:16+00:00 1.0 1196424883 1735 6 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 13:50:47+00:00 1.0 1196424883 1734 17 hours until the next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-26 02:23:00+00:00 1.0 1196424883 1733 camps next big pump date wednsday 26th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst thursday australia 430 am aestthursday india 1200 am ist thursday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump 2018-12-23 01:35:56+00:00 1.0 1196424883 1730 5 minutes until the pump next post will be the coin 2018-12-17 19:26:09+00:00 1.0 1196424883 1727 1 hour until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 18:23:36+00:00 1.0 1196424883 1726 25 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 17:02:08+00:00 1.0 1196424883 1725 5 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 14:35:19+00:00 1.0 1196424883 1724 6 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 13:31:18+00:00 1.0 1196424883 1722 7 hours until next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-17 12:35:28+00:00 1.0 1196424883 1721 camps next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-16 22:48:13+00:00 1.0 1196424883 1720 camps next pump announcement date monday 17th of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-12-16 03:12:25+00:00 1.0 1196424883 1717 everyone 5 minutes until the pump next post will be the coin to buy 2018-12-03 19:24:08+00:00 1.0 1196424883 1712 2 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform everyone 2018-12-03 17:26:14+00:00 1.0 1196424883 1711 3 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform everyone 2018-12-03 16:31:05+00:00 1.0 1196424883 1710 4 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform everyone 2018-12-03 15:45:08+00:00 1.0 1196424883 1709 5 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz 2018-12-03 14:23:19+00:00 1.0 1196424883 1708 21 hours until the massive pump date monday 3rd of december1930 gmt exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia this will be a ffa pump everyone wwwcryptopiaconz cryptopia home cryptocurrency trading platform 2018-12-02 22:27:18+00:00 1.0 1196424883 1705 next big pump announcement date monday 3rd of december1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst tuesday australia 430 am aesttuesday india 1200 am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-29 09:47:54+00:00 1.0 1196424883 1699 5 minutes the next post will be the coin to buy please buy and dont dump wait for outsiders 2018-11-16 19:25:20+00:00 1.0 1196424883 1697 30 minutes until the next massive pump exchange cryptopia pairing btc type free for all ffa pump make sure funds are ready everyone 2018-11-16 19:00:20+00:00 1.0 1196424883 1696 1 hour until the next massive pump exchange cryptopia pairing btc type free for all ffa pump make sure funds are ready everyone 2018-11-16 18:34:22+00:00 1.0 1196424883 1695 2 hours until the next big pump get back some of your btc from the crash big collab pump datefriday 16 th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-16 17:40:34+00:00 1.0 1196424883 1694 3 hours until the next big pump get back some of your btc from the crash big collab pump datefriday 16 th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-16 16:42:52+00:00 1.0 1196424883 1692 6 hours until the next big pump get back some of your btc from the crash big collab pump datefriday 16 th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump everyone 2018-11-16 13:48:49+00:00 1.0 1196424883 1687 next big pump announcement date friday 16th of november 1930 gmt exchange cryptopia pairing btc los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam830pm cest tokyo 330 am jst saturday australia430 am aestsaturday india 1200 am ist saturday this will be a ffa pump everyone 2018-11-15 21:15:27+00:00 1.0 1196424883 1686 ⁣⁣⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣binance will be listing umo buy it now 2018-11-15 19:30:59+00:00 1.0 1196424883 1684 ⁣⁣⁣3⃣ minutes left until the greatspskpump✅ ⁣⁣⁣ pairing btc expected gain 150180 do not sell early and hold the coin at least for 10 minutes spread the coin on chatbox and social media‼this is very important in order to draw the attention of outsiders when you sell early outsiders will only see a dump and they will not join the ride make sure you understand this ⁣so everyone can make a lot of profit⁣‼ the next message will be the coin 2018-11-15 19:26:58+00:00 1.0 1196424883 1682 ⁣⁣⁣3⃣0⃣ minutes left until the greatspskpump✅ ⁣⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-11-15 18:59:58+00:00 1.0 1196424883 1680 ⁣3⃣ hours left until the greatspskpump✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-15 16:29:59+00:00 1.0 1196424883 1679 ⁣⁣⁣⁣⁣⁣⁣⁣6⃣ hours left until the greatspskpump✅ ⁣ ⁣⁣signal will be post at exactly 1930⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-15 13:29:59+00:00 1.0 1196424883 1678 ⁣⁣⁣⁣⁣⁣less than hours left until the greatspskpump✅ ⁣time ⁣1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump be sure you all have your funds ready on cryptopia‼ ⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-15 09:35:59+00:00 1.0 1196424883 1677 ⁣⁣⁣⁣2⃣4⃣ hours left until the greatspskpump✅ ⁣date thursday 15th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1130 pdt 15th of november new york 1430 edt ⁣⁣15th of november buenos aires 1630 art ⁣⁣15th of november london 1930 bst ⁣⁣15th of november amsterdam 2030 cest ⁣⁣15th of november ankara 2230 trt ⁣⁣15th of november delhi 0100 ist ⁣⁣16th of november tokyo 0430 jst ⁣⁣16th of november sydney 0630 aest ⁣⁣16th of november ⁣⁣⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-14 19:29:57+00:00 1.0 1196424883 1676 ⁣⁣⁣⁣⁣⁣⁣⁣4⃣8⃣ hours left until the greatspskpump✅ date thursday 15th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣make sure you all have your funds ready on cryptopia⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-13 19:29:58+00:00 1.0 1196424883 1669 10 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:49:36+00:00 1.0 1196424883 1668 15 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:46:18+00:00 1.0 1196424883 1666 20 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:40:54+00:00 1.0 1196424883 1665 30 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:31:04+00:00 1.0 1196424883 1664 40 minutes until our until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 15:22:14+00:00 1.0 1196424883 1663 1 hours until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist 2018-11-13 15:08:09+00:00 1.0 1196424883 1662 2 hours until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist 2018-11-13 14:02:30+00:00 1.0 1196424883 1661 3 hours until the next pump date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist 2018-11-13 13:02:14+00:00 1.0 1196424883 1659 the next big pump announcement date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-13 04:39:06+00:00 1.0 1196424883 1658 the next big pump announcement date tuesday 13th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst wednesday australia 100am aestwednesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-12 21:13:55+00:00 1.0 1196424883 1653 ⁣⁣⁣⁣⁣⁣⁣buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣⁣as one of the first minereum tokens the 300 token will be used to buy tickets for the new spartan movie for glory for sparta hold no dump buy now 2018-11-12 20:00:59+00:00 1.0 1196424883 1651 ⁣⁣⁣3⃣ minutes left until the greatspskpump✅ ⁣⁣⁣ pairing btc expected gain 130155 do not sell early and hold the coin at least for 10 minutes spread the coin on chatbox and social media‼this is very important in order to draw the attention of outsiders when you sell early outsiders will only see a dump and they will not join the ride make sure you understand this ⁣so everyone can make a lot of profit⁣‼ the next message will be the coin 2018-11-12 19:56:58+00:00 1.0 1196424883 1649 ⁣⁣⁣3⃣0⃣ minutes left until the greatspskpump✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-11-12 19:29:58+00:00 1.0 1196424883 1647 ⁣3⃣ hours left until the greatspskpump✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-12 16:59:59+00:00 1.0 1196424883 1646 ⁣⁣⁣⁣⁣⁣⁣⁣6⃣ hours left until the greatspskpump✅ ⁣ ⁣⁣signal will be post at exactly 2000⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-12 13:59:59+00:00 1.0 1196424883 1644 ⁣⁣⁣⁣⁣⁣⁣⁣4⃣8⃣ hours left until the greatspskpump✅ ⁣date monday 12th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-10 19:59:57+00:00 1.0 1196424883 1643 ⁣⁣make yourself ready for the greatspskpump✅ date monday 12th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1200 pdt 12th of november new york 1500 edt 12th of november buenos aires 1700 art 12th of november london 2000 bst 12th of november amsterdam 2100 cest 12th of november ankara 2300 trt 12th of november delhi 0130 ist 13th of november tokyo 0500 jst 13th of november sydney 0700 aest 13th of november ⁣⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ if you do not have an account yet make sure you have one✅ ⁣⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-10 14:08:54+00:00 1.0 1196424883 1642 bcs cryptopia pump results start price 2826 peak price 5750 gain 103 total volume 055 btc 2018-11-09 20:00:23+00:00 1.0 1196424883 1641 ⁣⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣buy bcs coin on cryptopia bcshopio is at the edge of a epayment deal with amazoncom to integrate its own blockchain you do not want to miss the ride 2018-11-09 19:30:59+00:00 1.0 1196424883 1639 ⁣⁣3⃣ minutes left until the greatspskpump✅ ⁣⁣⁣ pairing btc expected gain 150190 do not sell early and hold the coin at least for 10 minutes spread the coin on chatbox and social media‼this is very important in order to draw the attention of outsiders when you sell early outsiders will only see a dump and they will not join the ride make sure you understand this ⁣so everyone can make a lot of profit⁣‼ the next message will be the coin 2018-11-09 19:26:58+00:00 1.0 1196424883 1636 ⁣⁣⁣3⃣0⃣ minutes left until the greatspskpump✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-11-09 18:59:57+00:00 1.0 1196424883 1634 ⁣⁣⁣⁣⁣⁣⁣⁣3⃣ hours left until the greatspskpump✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-09 16:29:58+00:00 1.0 1196424883 1633 ⁣⁣⁣⁣⁣⁣⁣6⃣ hours left until the great spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 1930⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-09 13:29:58+00:00 1.0 1196424883 1632 ⁣⁣2⃣4⃣ hours left until the greatspskpump ✅ ⁣⁣date ⁣friday 9th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣ ⁣make sure you all have your funds ready on cryptopia⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-08 19:29:59+00:00 1.0 1196424883 1629 make yourself ready for the great pump ✅ date friday 9th of november 1930 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1130 pdt 9th of november new york 1430 edt 9th of november buenos aires 1630 art 9th of november london 1930 bst 9th of november amsterdam 2030 cest 9th of november ankara 2230 trt 9th of november delhi 0100 ist 10th of november tokyo 0430 jst 10th of november sydney 0630 aest 10th of november ⁣⁣you do not want to miss out on this one‼️ we ensure that you have more time to buy the coin before the price is too high⁣ if you do not have an account yet make sure you have one ⁣⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-08 09:20:06+00:00 1.0 1196424883 1628 not bad at all for such a coin 119 we suppose this was not a bad pump thank you very much to those who were part of this and enjoy your profits 2018-11-08 08:11:38+00:00 1.0 1196424883 1625 ⁣⁣⁣⁣⁣buy and hold the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣ery releases new roadmap that consists their new coinburn buy now 2018-11-07 20:00:58+00:00 1.0 1196424883 1623 3⃣ minutes left until the great spsk pump ✅ ⁣⁣⁣pairing btc expected gain 135165 do not sell early and hodl the coin at least for 10 minutes spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-11-07 19:56:57+00:00 1.0 1196424883 1621 ⁣⁣⁣⁣3⃣0⃣ minutes left until the great spsk pump ✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣⁣⁣ 2018-11-07 19:29:58+00:00 1.0 1196424883 1620 ⁣⁣⁣⁣1⃣ hour left until the great spsk pump ✅ ⁣⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ 2018-11-07 18:59:58+00:00 1.0 1196424883 1619 ⁣⁣⁣⁣⁣⁣3⃣ hours left until the great spsk pump ✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-07 16:59:58+00:00 1.0 1196424883 1618 ⁣⁣⁣⁣⁣⁣6⃣ hours left until the great spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 2000⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-07 13:59:57+00:00 1.0 1196424883 1616 ⁣⁣⁣⁣1⃣2⃣ hours left until the great spsk pump ✅ ⁣date wednesday 7th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣make sure you all have your funds ready on cryptopia‼ ⁣⁣⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-07 07:59:57+00:00 1.0 1196424883 1615 ⁣⁣⁣⁣⁣⁣4⃣8⃣ hours left until the great pump ✅ date ⁣wednesday 7th of november 2000 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣you do not want to miss out on this one‼ we ensure that you have more time to buy the coin before the price is too high⁣ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-05 19:59:59+00:00 1.0 1196424883 1609 5 minutes until the next big pump the next announcement will be the coin to buy expected gain 100140 2018-11-05 15:54:50+00:00 1.0 1196424883 1608 10 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:49:12+00:00 1.0 1196424883 1607 15 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:44:53+00:00 1.0 1196424883 1606 30 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:29:02+00:00 1.0 1196424883 1605 45 minutes until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 15:17:00+00:00 1.0 1196424883 1604 1 hour until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 14:57:12+00:00 1.0 1196424883 1603 2 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-11-05 13:54:52+00:00 1.0 1196424883 1602 4 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump everyone 2018-11-05 12:00:43+00:00 1.0 1196424883 1601 5 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-11-05 10:54:19+00:00 1.0 1196424883 1600 9 hours until the next big pump date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0800 am pdt new york 1100 am est london 400pm bst amsterdam 500 pm cest tokyo 1200am jst tuesday australia 100am aesttuesday india 830 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-11-05 06:52:22+00:00 1.0 1196424883 1597 next big pump announcement date monday 5th of november 1600 gmt ⁣ exchange cryptopia pairing btc be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one this will be a ffa pump 2018-11-04 08:58:09+00:00 1.0 1196424883 1595 ⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other channels or platforms you know with the message below‼ ⁣gnosis launches the ios wallet which will take place on app store buy gno now at cryptopia while its still low 2018-11-02 18:30:49+00:00 1.0 1196424883 1593 ⁣⁣pairing btc expected gain 220250 do not sell early and hold the coin ⁣for at least 10 minutes in the meantime spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-11-02 18:26:48+00:00 1.0 1196424883 1590 ⁣⁣⁣1⃣ hour left until the spsk pump ✅ be sure you are ready to moon⁣‼ 2018-11-02 17:29:48+00:00 1.0 1196424883 1589 ⁣⁣⁣⁣⁣3⃣ hours left until the spsk pump ✅ ⁣⁣signal will be post at exactly 18⁣30⁣00 utc gmtthis will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy fast before we entice outside investors to get in on it ⁣once we have bought in and the price has stabilized it is important to hold and not dump on our fellow members ⁣this is when we all need to help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit ⁣we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-02 15:29:48+00:00 1.0 1196424883 1588 ⁣⁣⁣⁣6⃣ hours left until the spsk pump ✅ time 2000 utc ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on cryptopia‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-02 12:29:48+00:00 1.0 1196424883 1587 ⁣⁣⁣1️⃣2️⃣ hours left until the spsk pump ✅ time 1830 utc ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣be sure that you know how to quickly buy and sell on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-02 06:29:48+00:00 1.0 1196424883 1584 make yourself ready for the next great pump ✅ date friday 2nd of november 1830 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1130 pdt 2nd of november new york 1430 edt 2nd of november buenos aires 1530 art 2nd of november london 1830 bst 2nd of november amsterdam 1930 cest 2nd of november ankara 2130 trt 2nd of november delhi 0000 ist 3rd of november tokyo 0330 jst 3rd of november sydney 0530 aest 3rd of november ⁣be sure you all have your funds ready on cryptopia⁣‼️ if you do not have an account yet make sure you have one ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-11-01 16:17:58+00:00 1.0 1196424883 1582 attention in order to avoid any technical delays please join our main channel pump signal coin name will be posted only there this is to avoid any delays of telegram synchronized messaging bot all our memebers from discord are rederected on our main channel too this is done to be 100 sure you all receive signals at exactly the same time 2018-11-01 12:58:26+00:00 1.0 1196424883 1581 2 hours 30 minutes until the next pump date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 12:57:53+00:00 1.0 1196424883 1580 4 hours 30 minutes until the next pump date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 11:05:20+00:00 1.0 1196424883 1579 7 hours 30 minutes until the next pump date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 08:02:07+00:00 1.0 1196424883 1577 next big pump announcement date thursday 1st of november 1530 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 0830 am pdt new york 1130 am est london 430 pm bst amsterdam 530 pm cest tokyo 1230am jst friday australia 130 am aestfriday india900 pm ist be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump there will be no prepump 2018-11-01 06:52:57+00:00 1.0 1196424883 1574 ⁣⁣⁣⁣make yourself ready for the next great spsk pump ✅ date friday 2nd of november 1830 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 1130 pdt 2nd of november new york 1430 edt 2nd of november buenos aires 1530 art 2nd of november london 1830 bst 2nd of november amsterdam 1930 cest 2nd of november ankara 2130 trt 2nd of november delhi 0000 ist 3rd of november tokyo 0330 jst 3rd of november sydney 0530 aest 3rd of november ⁣be sure you all have your funds ready on cryptopia⁣‼ if you do not have an account yet make sure you have one ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-31 21:15:35+00:00 1.0 1196424883 1573 ⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ good news ⁣8bit will get listed on bittrex after a while buy now while it is still low 2018-10-31 19:00:51+00:00 1.0 1196424883 1571 ⁣⁣⁣pairing btc expected gain 100130 do not sell early and hodl the coin at least for 10 minutes spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-10-31 18:56:51+00:00 1.0 1196424883 1569 ⁣⁣⁣⁣3⃣0⃣ minutes left until the spsk pump ✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-10-31 18:29:51+00:00 1.0 1196424883 1567 ⁣⁣⁣⁣⁣⁣3⃣ hours left until the spsk pump ✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-31 15:59:51+00:00 1.0 1196424883 1566 ⁣⁣⁣⁣⁣⁣6⃣ hours left until the spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 1900⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-31 12:59:52+00:00 1.0 1196424883 1564 ⁣⁣⁣⁣1⃣2⃣ hours left until the spsk pump ✅ time 1900 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣be ready to moon⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-31 06:59:52+00:00 1.0 1196424883 1563 ⁣2⃣4⃣ hours left until the spsk pump ✅ date wednesday 31st of october 1900 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣if you do not have an account yet make sure you have one ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-30 18:59:53+00:00 1.0 1196424883 1562 ⁣⁣⁣⁣⁣⁣4️⃣8️⃣ hours left until the next pump ✅ date wednesday 31st of october 1900 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣ los angeles 1200 pdt 31st of october new york 1500 edt 31st of october buenos aires 1600 art 31st of october london 1900 bst 31st of october amsterdam 2000 cest 31st of october ankara 2200 trt ⁣31st of october delhi 0030 ist ⁣1st of november tokyo 0400 jst ⁣1st of november sydney 0600 aest ⁣1st of november ⁣⁣⁣⁣⁣be sure that you know how to quickly buy and sell on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-29 18:59:55+00:00 1.0 1196424883 1561 great job with the pump today we held for over 8 minutes we are all getting better and hope everyone made money start price 11 sats peak price 24 sats gain 118 total volume 04 2018-10-29 18:50:20+00:00 1.0 1196424883 1559 attention in order to avoid any technical delays please join our main channel pump signal coin name will be posted only there this is to avoid any delays of telegram synchronized messaging bot all our memebers from discord are rederected on our main channel too this is done to be 100 sure you all receive signals at exactly the same time 2018-10-29 17:38:27+00:00 1.0 1196424883 1558 1 hour until the next pump date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-29 17:33:41+00:00 1.0 1196424883 1556 2 hours 30 minutes until the next pump date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-29 16:05:10+00:00 1.0 1196424883 1554 less than 11 hours until the next pump date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-29 07:45:07+00:00 1.0 1196424883 1550 next pump announcement date monday 29th of october1830 gmt ⁣ exchange cryptopia pairing btc ⁣ los angeles 1130 am pdt new york 230 pm est london 730 pm bst amsterdam 830 pm cest tokyo 330am jst tuesday australia 430 am aesttuesday india1200am ist tuesday be sure you all have your funds ready on cryptopia if you do not have an account yet make sure you have one ⁣ this will be a ffa pump 2018-10-28 09:16:42+00:00 1.0 1196424883 1549 last pump results coin dark price was on top 165 for more than 12 minutes total peak 173 2018-10-28 08:45:50+00:00 1.0 1196424883 1547 ⁣⁣⁣⁣⁣buy and hodl the coin for at least 10 minutes never sell in loss⁣‼ promote the coin on chatbox social media and other platforms you know with the message below‼ ⁣with darkcoins new team of developers and a passion for technology they bring dark back to its roots good news coming soon buy dark now while its still low 2018-10-27 16:00:58+00:00 1.0 1196424883 1545 ⁣⁣⁣pairing btc expected gain 155185 do not sell early and hodl the coin at least for 10 minutes spread the coin on chatbox and social media‼ this is very important in order to draw the attention of outsiders so everyone could make hell of a profit‼ the next message will be the coin 2018-10-27 15:56:57+00:00 1.0 1196424883 1543 ⁣⁣⁣⁣3⃣0⃣ minutes left until the spsk pump ✅ ⁣ ⁣make sure you are at your computer and logged in to cryptopia⁣‼ ⁣ 2018-10-27 15:29:58+00:00 1.0 1196424883 1541 ⁣⁣⁣⁣⁣⁣3⃣ hours left until the spsk pump ✅ ⁣be sure you are ready to moon‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-27 12:59:58+00:00 1.0 1196424883 1540 ⁣⁣⁣⁣⁣⁣6⃣ hours left until the spsk pump ✅ ⁣ ⁣⁣signal will be post at exactly 1600⁣00 gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you‼ ⁣make sure you are at your computer at least 30 minutes before to enable enough time to be prepared for the pump ⁣after announcing the coin we will all buy in as quickly as possible it is important to buy the coin fast before we entice outside investors to get in on it ⁣once we have bought the coin and the price has stabilized it is important to hold and not dump on our fellow members ⁣now we all need to help promote the coin to attract investors outside our group which will cause the coin to grow more and allow all of us to sell slowly at a good profit‼ ⁣we are going to hold the coin for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks‼ give outside investors time to get in on the coin sell to early will stop the outside investors to buy and it will lead to a dump‼ ⁣make sure you understand the process and how to trade on cryptopia ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-27 09:59:58+00:00 1.0 1196424883 1538 ⁣⁣⁣⁣1⃣2⃣ hours left until the spsk pump ✅ time 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣be sure you all have your funds ready on cryptopia‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-27 03:59:58+00:00 1.0 1196424883 1537 ⁣⁣note the changed pump time‼ ⁣⁣⁣⁣⁣2⃣4⃣ hours left until the spsk pump ✅ ⁣date saturday 27th of october 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣ los angeles 0900 pdt 27th of october new york 1200 edt 27th of october buenos aires 1300 art 27th of october london 1700 bst 27th of october amsterdam 1800 cest 27th of october ankara 1900 trt 27th of october delhi 2130 ist 27th of october tokyo 0100 jst 28th of october sydney 0300 aest 28th of october ⁣be ready to moon⁣‼ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-26 15:59:59+00:00 1.0 1196424883 1533 ⁣⁣⁣⁣⁣⁣4️⃣8️⃣ hours left until the spsk pump ✅ date saturday 27th of october 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣⁣⁣⁣⁣be sure that you know how to quickly buy and sell on cryptopia ⁣make sure you all have your funds ready on cryptopia⁣‼️ ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-25 18:59:59+00:00 1.0 1196424883 1531 great news for all we are part of cryptopia pump community now make yourself ready for the great pump ✅ date saturday 27th of october 1600 gmt ⁣⏰ exchange cryptopia pairing btc type free for all ffa pump ⁣be sure you all have your funds ready on cryptopia⁣‼️ if you do not have an account yet make sure you have one wwwcryptopiaconz ✅ this pump will be unrankedffa ✅ there will be no prepump 2018-10-25 11:01:14+00:00 1.0 1196424883 1518 pump analysis coin ufr +50 approximately from low level our team members banned by yobit chat admin very fast remember we always repump our coins ❌never sell in loss ✅leave sell order open 2018-10-19 17:58:19+00:00 1.0 1196424883 1511 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:36+00:00 1.0 1196424883 1510 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:03+00:00 1.0 1196424883 1501 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:23+00:00 1.0 1196424883 1498 ℹ️pump signal informationℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level dont miss this one ℹ️ 2018-10-19 07:55:50+00:00 1.0 1196424883 1480 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:20+00:00 1.0 1196424883 1473 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:07+00:00 1.0 1196424883 1471 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:01+00:00 1.0 1196424883 1469 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:01+00:00 1.0 1196424883 1467 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:21+00:00 1.0 1196424883 1465 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:10+00:00 1.0 1196424883 1463 ℹ️ pump signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 13:30:50+00:00 1.0 1196424883 1423 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:42+00:00 1.0 1196424883 1418 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:19+00:00 1.0 1196424883 1417 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:19+00:00 1.0 1196424883 1416 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:12+00:00 1.0 1196424883 1415 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:06+00:00 1.0 1196424883 1414 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:13+00:00 1.0 1196424883 1413 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:19+00:00 1.0 1196424883 1412 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:11+00:00 1.0 1196424883 1411 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:01+00:00 1.0 1196424883 1409 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:02+00:00 1.0 1196424883 1408 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:20+00:00 1.0 1196424883 1407 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:02+00:00 1.0 1196424883 1406 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:54:53+00:00 1.0 1196424883 1405 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:22+00:00 1.0 1196424883 1404 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:40+00:00 1.0 1196424883 1391 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:38+00:00 1.0 1196424883 1386 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:01+00:00 1.0 1196424883 1385 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:01+00:00 1.0 1196424883 1384 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:01+00:00 1.0 1196424883 1383 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:01+00:00 1.0 1196424883 1382 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:19+00:00 1.0 1196424883 1381 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:33+00:00 1.0 1196424883 1380 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:14+00:00 1.0 1196424883 1378 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:04+00:00 1.0 1196424883 1375 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:05+00:00 1.0 1196424883 1374 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:06+00:00 1.0 1196424883 1373 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:14+00:00 1.0 1196424883 1371 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:19+00:00 1.0 1196424883 1370 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:25:52+00:00 1.0 1196424883 1369 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:07+00:00 1.0 1196424883 1348 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:56:58+00:00 1.0 1196424883 1344 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:38+00:00 1.0 1196424883 1342 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:03+00:00 1.0 1196424883 1341 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:01+00:00 1.0 1196424883 1340 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:01+00:00 1.0 1196424883 1339 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:19+00:00 1.0 1196424883 1338 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:03+00:00 1.0 1196424883 1337 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:10+00:00 1.0 1196424883 1335 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:06+00:00 1.0 1196424883 1334 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:05+00:00 1.0 1196424883 1333 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:05+00:00 1.0 1196424883 1332 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:01+00:00 1.0 1196424883 1331 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:22:48+00:00 1.0 1196424883 1330 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:20:58+00:00 1.0 1196424883 1322 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:43+00:00 1.0 1196424883 1316 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:10+00:00 1.0 1196424883 1314 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:05+00:00 1.0 1196424883 1313 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:02+00:00 1.0 1196424883 1312 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:01+00:00 1.0 1196424883 1311 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:03+00:00 1.0 1196424883 1310 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:06+00:00 1.0 1196424883 1306 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:12+00:00 1.0 1196424883 1305 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:17+00:00 1.0 1196424883 1304 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:08+00:00 1.0 1196424883 1303 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:10+00:00 1.0 1196424883 1302 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:13+00:00 1.0 1196424883 1300 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:04+00:00 1.0 1196424883 1299 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:01+00:00 1.0 1196424883 1298 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:46+00:00 1.0 1196424883 1294 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:20+00:00 1.0 1196424883 1292 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:02+00:00 1.0 1196424883 1291 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:01+00:00 1.0 1196424883 1290 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:01+00:00 1.0 1196424883 1289 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:03+00:00 1.0 1196424883 1288 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:07+00:00 1.0 1196424883 1287 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:11+00:00 1.0 1196424883 1286 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:17+00:00 1.0 1196424883 1285 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:21+00:00 1.0 1196424883 1283 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:16+00:00 1.0 1196424883 1281 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:01+00:00 1.0 1196424883 1279 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:09+00:00 1.0 1196424883 1278 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:45+00:00 1.0 1196424883 1276 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:01:51+00:00 1.0 1196424883 1273 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:19+00:00 1.0 1196424883 1267 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 16:59:56+00:00 1.0 1196424883 1258 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:04+00:00 1.0 1196424883 1256 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:06+00:00 1.0 1196424883 1255 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:01+00:00 1.0 1196424883 1254 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:06+00:00 1.0 1196424883 1252 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:05+00:00 1.0 1196424883 1251 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:52:56+00:00 1.0 1196424883 1245 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:22+00:00 1.0 1196424883 1243 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:05+00:00 1.0 1196424883 1242 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:01+00:00 1.0 1196424883 1241 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:03+00:00 1.0 1196424883 1240 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:37+00:00 1.0 1196424883 1239 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:11+00:00 1.0 1196424883 1238 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:15+00:00 1.0 1196424883 1237 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:27+00:00 1.0 1196424883 1236 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:01+00:00 1.0 1196424883 1235 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:13+00:00 1.0 1196424883 1234 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:05+00:00 1.0 1196424883 1233 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:03+00:00 1.0 1196424883 1232 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:17+00:00 1.0 1196424883 1231 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:26+00:00 1.0 1196424883 1217 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:10+00:00 1.0 1196424883 1212 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:15+00:00 1.0 1196424883 1210 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:01+00:00 1.0 1196424883 1206 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:10+00:00 1.0 1196424883 1205 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:32+00:00 1.0 1196424883 1204 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:37+00:00 1.0 1196424883 1203 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:10+00:00 1.0 1196424883 1202 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:17+00:00 1.0 1196424883 1201 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:06+00:00 1.0 1196424883 1200 ❗️ read instructions below❗️ 1 sign up to cryptopia and send your btc to your wallet today ℹ️ information for todays pump ℹ️ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 22092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:13+00:00 1.0 1196424883 1198 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:36+00:00 1.0 1196424883 1195 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:35+00:00 1.0 1196424883 1185 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:03:06+00:00 1.0 1196424883 1184 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:03:01+00:00 1.0 1196424883 1181 ℹ️ coin signal information ℹ️ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ️ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 07:26:33+00:00 1.0 1196424883 1175 ℹ️ less than 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 11:08:57+00:00 1.0 1196424883 1174 ❗️ read instructions below❗️ 1 sign up to yobit and send your btc to your wallet today ℹ️ information for todays pump ℹ️ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 08:16:58+00:00 1.0 1196424883 1173 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-19 08:16:38+00:00 1.0 1196424883 1172 ℹ️ 10 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet because of technical reasons all join our group below to receive pump signal on time telegram is lagging sometimes and data shows that our group usually receives signal from messaging bot couple of seconds faster signal will be posted here 2018-09-18 15:49:53+00:00 1.0 1196424883 1170 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:02:10+00:00 1.0 1196424883 1169 ℹ️ coin signal information ℹ️ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ️ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 08:02:02+00:00 1.0 1196424883 1168 ❗️ read instructions below❗️ 1 sign up to yobit and send your btc to your wallet today ℹ️ information for tommorrows pump ℹ️ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 08:01:48+00:00 1.0 1196424883 1165 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 08:01:05+00:00 1.0 1196424883 1164 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet because of technical reasons all join our group below to receive pump signal on time telegram is lagging sometimes and data shows that our group usually receives signal from messaging bot couple of seconds faster signal will be posted here 2018-09-17 15:41:57+00:00 1.0 1196424883 1160 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:17+00:00 1.0 1196424883 1158 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:09+00:00 1.0 1196424883 1156 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:07:56+00:00 1.0 1196424883 1155 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:24+00:00 1.0 1196424883 1148 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:41+00:00 1.0 1196424883 1147 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:11+00:00 1.0 1196424883 1146 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:17+00:00 1.0 1196424883 1145 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:08+00:00 1.0 1196424883 1144 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:20+00:00 1.0 1196424883 1143 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:25+00:00 1.0 1196424883 1142 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:19+00:00 1.0 1196424883 1141 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:14+00:00 1.0 1196424883 1140 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:12+00:00 1.0 1196424883 1138 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:15+00:00 1.0 1196424883 1137 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:14+00:00 1.0 1196424883 1136 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:21+00:00 1.0 1196424883 1133 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:46+00:00 1.0 1196424883 1132 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:39+00:00 1.0 1196424883 1126 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:29+00:00 1.0 1196424883 1125 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:09+00:00 1.0 1196424883 1124 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:10+00:00 1.0 1196424883 1123 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:11+00:00 1.0 1196424883 1122 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:11+00:00 1.0 1196424883 1121 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:19+00:00 1.0 1196424883 1120 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:14+00:00 1.0 1196424883 1119 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:46+00:00 1.0 1196424883 1118 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:20+00:00 1.0 1196424883 1117 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:14+00:00 1.0 1196424883 1115 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:37+00:00 1.0 1196424883 1114 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:46+00:00 1.0 1196424883 1112 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:38+00:00 1.0 1196424883 1111 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:44+00:00 1.0 1196424883 1104 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:18+00:00 1.0 1196424883 1103 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:09+00:00 1.0 1196424883 1102 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:09+00:00 1.0 1196424883 1101 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:08+00:00 1.0 1196424883 1100 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:17+00:00 1.0 1196424883 1099 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:22+00:00 1.0 1196424883 1098 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:35+00:00 1.0 1196424883 1097 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:19+00:00 1.0 1196424883 1096 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:26+00:00 1.0 1196424883 1095 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:12+00:00 1.0 1196424883 1094 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:06+00:00 1.0 1196424883 1092 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:02+00:00 1.0 1196424883 1084 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:35+00:00 1.0 1196424883 1083 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:18+00:00 1.0 1196424883 1082 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:11+00:00 1.0 1196424883 1081 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:11+00:00 1.0 1196424883 1080 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:11+00:00 1.0 1196424883 1079 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:16+00:00 1.0 1196424883 1078 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:14+00:00 1.0 1196424883 1077 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:17+00:00 1.0 1196424883 1076 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:15+00:00 1.0 1196424883 1075 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:17+00:00 1.0 1196424883 1074 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:09+00:00 1.0 1196424883 1072 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:08+00:00 1.0 1196424883 1070 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:05+00:00 1.0 1196424883 1068 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:09+00:00 1.0 1196424883 1067 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:18+00:00 1.0 1196424883 1066 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:09+00:00 1.0 1196424883 1065 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:18+00:00 1.0 1196424883 1064 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:19+00:00 1.0 1196424883 1063 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:44+00:00 1.0 1196424883 1062 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:15+00:00 1.0 1196424883 1061 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:11+00:00 1.0 1196424883 1059 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:34:00+00:00 1.0 1196424883 1058 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:50+00:00 1.0 1196424883 1055 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:40+00:00 1.0 1196424883 1047 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:14+00:00 1.0 1196424883 1046 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:13+00:00 1.0 1196424883 1045 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:12+00:00 1.0 1196424883 1044 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:08+00:00 1.0 1196424883 1043 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:23+00:00 1.0 1196424883 1042 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:17+00:00 1.0 1196424883 1041 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:14+00:00 1.0 1196424883 1040 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:19+00:00 1.0 1196424883 1038 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:18+00:00 1.0 1196424883 1037 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:11+00:00 1.0 1196424883 1035 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:09+00:00 1.0 1196424883 1034 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:16+00:00 1.0 1196424883 1032 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:14+00:00 1.0 1196424883 1025 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:34+00:00 1.0 1196424883 1024 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:16+00:00 1.0 1196424883 1023 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:16+00:00 1.0 1196424883 1022 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:26+00:00 1.0 1196424883 1021 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:25+00:00 1.0 1196424883 1020 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:32+00:00 1.0 1196424883 1019 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:22+00:00 1.0 1196424883 1018 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:12+00:00 1.0 1196424883 1017 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:08+00:00 1.0 1196424883 1016 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:10+00:00 1.0 1196424883 1014 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:16+00:00 1.0 1196424883 1013 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:21+00:00 1.0 1196424883 1011 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:18+00:00 1.0 1196424883 1003 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:21+00:00 1.0 1196424883 1002 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:10+00:00 1.0 1196424883 1001 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:08+00:00 1.0 1196424883 1000 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:10+00:00 1.0 1196424883 999 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:08+00:00 1.0 1196424883 998 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:00:56+00:00 1.0 1196424883 997 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:12+00:00 1.0 1196424883 996 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:12+00:00 1.0 1196424883 995 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:18+00:00 1.0 1196424883 994 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:16+00:00 1.0 1196424883 993 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:17+00:00 1.0 1196424883 992 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:42+00:00 1.0 1196424883 989 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:03+00:00 1.0 1196424883 981 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:00:59+00:00 1.0 1196424883 980 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:09+00:00 1.0 1196424883 979 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:09+00:00 1.0 1196424883 978 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:12+00:00 1.0 1196424883 977 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:11+00:00 1.0 1196424883 976 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:34+00:00 1.0 1196424883 975 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:00:56+00:00 1.0 1196424883 974 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:13+00:00 1.0 1196424883 973 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:21+00:00 1.0 1196424883 972 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:18+00:00 1.0 1196424883 971 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:15+00:00 1.0 1196424883 970 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:13+00:00 1.0 1196424883 967 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:41+00:00 1.0 1196424883 966 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:26+00:00 1.0 1196424883 960 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:25+00:00 1.0 1196424883 957 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:12+00:00 1.0 1196424883 956 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:11+00:00 1.0 1196424883 955 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:15+00:00 1.0 1196424883 954 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:17+00:00 1.0 1196424883 953 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:15+00:00 1.0 1196424883 952 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:26+00:00 1.0 1196424883 951 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:10+00:00 1.0 1196424883 950 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:10+00:00 1.0 1196424883 947 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:16+00:00 1.0 1196424883 946 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:10+00:00 1.0 1196424883 945 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:27+00:00 1.0 1196424883 943 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:22+00:00 1.0 1196424883 934 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:46+00:00 1.0 1196424883 932 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:09+00:00 1.0 1196424883 931 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:09+00:00 1.0 1196424883 930 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:09+00:00 1.0 1196424883 929 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:13+00:00 1.0 1196424883 928 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:30+00:00 1.0 1196424883 927 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:52+00:00 1.0 1196424883 926 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:13+00:00 1.0 1196424883 925 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:13+00:00 1.0 1196424883 924 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:20+00:00 1.0 1196424883 922 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:12+00:00 1.0 1196424883 921 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:14+00:00 1.0 1196424883 919 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:32+00:00 1.0 1196424883 913 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:32+00:00 1.0 1196424883 911 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:08+00:00 1.0 1196424883 909 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:08+00:00 1.0 1196424883 908 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:13+00:00 1.0 1196424883 905 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:12+00:00 1.0 1196424883 903 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:10+00:00 1.0 1196424883 901 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:27+00:00 1.0 1196424883 900 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:03+00:00 1.0 1196424883 899 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:36+00:00 1.0 1196424883 892 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:09+00:00 1.0 1196424883 891 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:12+00:00 1.0 1196424883 890 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:20+00:00 1.0 1196424883 889 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:08+00:00 1.0 1196424883 888 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:21+00:00 1.0 1196424883 887 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:11+00:00 1.0 1196424883 886 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:19+00:00 1.0 1196424883 885 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:16+00:00 1.0 1196424883 884 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:15+00:00 1.0 1196424883 883 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:17+00:00 1.0 1196424883 882 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:09+00:00 1.0 1196424883 880 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:12+00:00 1.0 1196424883 879 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:18+00:00 1.0 1196424883 878 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:26+00:00 1.0 1196424883 876 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:10+00:00 1.0 1196424883 849 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:21+00:00 1.0 1196424883 839 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:13+00:00 1.0 1196424883 838 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:09+00:00 1.0 1196424883 832 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:11+00:00 1.0 1196424883 831 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:10+00:00 1.0 1196424883 829 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:15+00:00 1.0 1196424883 828 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:26+00:00 1.0 1196424883 827 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:46+00:00 1.0 1196424883 826 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always remember pump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:00+00:00 1.0 1196424883 815 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:19+00:00 1.0 1196424883 813 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:24+00:00 1.0 1196424883 812 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:13+00:00 1.0 1196424883 811 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:12+00:00 1.0 1196424883 810 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:10+00:00 1.0 1196424883 809 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:02:57+00:00 1.0 1196424883 808 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:17+00:00 1.0 1196424883 807 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:11+00:00 1.0 1196424883 806 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:09+00:00 1.0 1196424883 805 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:10+00:00 1.0 1196424883 803 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:49+00:00 1.0 1196424883 802 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:04+00:00 1.0 1196424883 800 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:25+00:00 1.0 1196424883 799 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:19:48+00:00 1.0 1196424883 789 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:06+00:00 1.0 1196424883 787 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:14+00:00 1.0 1196424883 786 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:11+00:00 1.0 1196424883 785 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:06+00:00 1.0 1196424883 784 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:31+00:00 1.0 1196424883 783 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:23+00:00 1.0 1196424883 782 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:14+00:00 1.0 1196424883 781 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:26+00:00 1.0 1196424883 780 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:07+00:00 1.0 1196424883 778 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:18+00:00 1.0 1196424883 777 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:43+00:00 1.0 1196424883 776 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:29+00:00 1.0 1196424883 775 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:44+00:00 1.0 1196424883 773 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:19:54+00:00 1.0 1196424883 764 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:49+00:00 1.0 1196424883 762 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:09+00:00 1.0 1196424883 761 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:06+00:00 1.0 1196424883 760 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:10+00:00 1.0 1196424883 759 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:10+00:00 1.0 1196424883 758 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:11+00:00 1.0 1196424883 757 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:07+00:00 1.0 1196424883 756 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:08+00:00 1.0 1196424883 755 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:11+00:00 1.0 1196424883 754 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 07:59:53+00:00 1.0 1196424883 751 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:07+00:00 1.0 1196424883 750 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:26+00:00 1.0 1196424883 749 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:52:55+00:00 1.0 1196424883 739 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:21+00:00 1.0 1196424883 737 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-16 15:56:06+00:00 1.0 1196424883 736 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-16 15:51:15+00:00 1.0 1196424883 735 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-16 15:41:06+00:00 1.0 1196424883 734 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-16 15:31:17+00:00 1.0 1196424883 733 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 15:01:16+00:00 1.0 1196424883 732 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 14:31:12+00:00 1.0 1196424883 731 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-16 13:01:09+00:00 1.0 1196424883 730 ℹ coin signal information ℹ date thursday 16082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-16 08:01:19+00:00 1.0 1196424883 728 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 16082018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-16 02:26:57+00:00 1.0 1196424883 727 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:25+00:00 1.0 1196424883 726 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:01+00:00 1.0 1196424883 715 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:00+00:00 1.0 1196424883 714 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-14 16:56:14+00:00 1.0 1196424883 713 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-14 16:50:07+00:00 1.0 1196424883 712 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-14 16:41:21+00:00 1.0 1196424883 711 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-14 16:30:16+00:00 1.0 1196424883 710 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 16:00:17+00:00 1.0 1196424883 709 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 14:00:14+00:00 1.0 1196424883 708 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 13:04:13+00:00 1.0 1196424883 707 ℹ coin signal information ℹ date tuesday 14082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-14 12:02:40+00:00 1.0 1196424883 706 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 14082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-14 11:37:33+00:00 1.0 1196424883 704 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:45+00:00 1.0 1196424883 693 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:00:55+00:00 1.0 1196424883 692 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-13 17:56:05+00:00 1.0 1196424883 685 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 10:01:11+00:00 1.0 1196424883 683 ℹ coin signal information ℹ date monday 13082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 10 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-13 08:01:08+00:00 1.0 1196424883 682 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 13082018 monday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-13 03:28:50+00:00 1.0 1196424883 680 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:24+00:00 1.0 1196424883 669 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 15:59:58+00:00 1.0 1196424883 668 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-12 15:56:05+00:00 1.0 1196424883 662 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 13:01:08+00:00 1.0 1196424883 659 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 10:01:26+00:00 1.0 1196424883 658 ℹ coin signal information ℹ date sunday 12082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-12 08:01:06+00:00 1.0 1196424883 657 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 12082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-12 02:38:14+00:00 1.0 1196424883 655 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:05:51+00:00 1.0 1196424883 653 tradingbotpro news fast profit signal is comming soon this new bot feature will auto detect coin with small sell orders for fast and high rise in minutes warning messages for such signal will be auto posted 2412h before signal exact time gmt and exchange will be posted to be ready buy fast after signal sell on top fast profit signal exchanges wwwcryptopiaconz wwwyobitnet 2018-08-10 07:16:35+00:00 1.0 1196424883 636 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:07+00:00 1.0 1196424883 635 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-09 17:56:06+00:00 1.0 1196424883 628 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 10:01:07+00:00 1.0 1196424883 626 ℹ coin signal information ℹ date thursday 09082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 9 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-09 08:56:17+00:00 1.0 1196424883 625 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 09082018 thursday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-09 08:29:30+00:00 1.0 1196424883 620 great pump as you can see today we had a repump of our last coin for you to get out who was trapped last time with us always profit enjoy 2018-08-08 16:49:37+00:00 1.0 1196424883 615 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:40+00:00 1.0 1196424883 614 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-08 15:56:10+00:00 1.0 1196424883 605 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 10:01:06+00:00 1.0 1196424883 604 ℹ coin signal information ℹ date wednesday 08082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-08 08:01:05+00:00 1.0 1196424883 600 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-08 00:34:06+00:00 1.0 1196424883 598 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:22+00:00 1.0 1196424883 574 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:30+00:00 1.0 1196424883 573 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-05 15:57:06+00:00 1.0 1196424883 572 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-05 15:52:07+00:00 1.0 1196424883 571 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-05 15:42:06+00:00 1.0 1196424883 570 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-05 15:32:15+00:00 1.0 1196424883 569 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 15:02:09+00:00 1.0 1196424883 568 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 14:32:07+00:00 1.0 1196424883 567 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-05 13:02:07+00:00 1.0 1196424883 564 ℹ coin signal information ℹ date sunday 05082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-05 11:04:04+00:00 1.0 1196424883 562 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 05082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-05 10:16:11+00:00 1.0 1196424883 560 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:19+00:00 1.0 1196424883 550 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:10+00:00 1.0 1196424883 549 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-04 15:57:06+00:00 1.0 1196424883 543 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-04 13:03:01+00:00 1.0 1196424883 542 ℹ coin signal information ℹ date saturday 04082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 6 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-04 09:59:24+00:00 1.0 1196424883 541 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 04082018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-04 09:45:42+00:00 1.0 1196424883 537 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:11+00:00 1.0 1196424883 528 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:13+00:00 1.0 1196424883 527 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-03 15:57:05+00:00 1.0 1196424883 520 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 10:02:10+00:00 1.0 1196424883 517 ℹ coin signal information ℹ date friday 03082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-03 08:02:07+00:00 1.0 1196424883 516 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 03082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-03 01:34:03+00:00 1.0 1196424883 514 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:15:57+00:00 1.0 1196424883 483 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:00:45+00:00 1.0 1196424883 482 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-28 15:57:07+00:00 1.0 1196424883 481 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-28 15:51:03+00:00 1.0 1196424883 480 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-28 15:41:07+00:00 1.0 1196424883 479 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-28 15:31:12+00:00 1.0 1196424883 478 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 15:01:05+00:00 1.0 1196424883 477 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 14:32:02+00:00 1.0 1196424883 476 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 13:01:09+00:00 1.0 1196424883 474 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 10:02:04+00:00 1.0 1196424883 471 ℹ coin signal information ℹ date saturday 28 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-28 08:02:09+00:00 1.0 1196424883 470 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 28072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-28 01:34:05+00:00 1.0 1196424883 468 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:33+00:00 1.0 1196424883 454 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:33+00:00 1.0 1196424883 453 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-26 15:56:03+00:00 1.0 1196424883 452 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-26 15:52:03+00:00 1.0 1196424883 451 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-26 15:42:07+00:00 1.0 1196424883 450 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-26 15:32:15+00:00 1.0 1196424883 449 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 15:02:06+00:00 1.0 1196424883 448 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 14:32:10+00:00 1.0 1196424883 447 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 13:02:05+00:00 1.0 1196424883 446 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 10:02:03+00:00 1.0 1196424883 445 ℹ coin signal information ℹ date thursday 26 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-26 08:02:04+00:00 1.0 1196424883 443 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-26 01:34:04+00:00 1.0 1196424883 439 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:29:10+00:00 1.0 1196424883 420 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 15:59:59+00:00 1.0 1196424883 419 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-21 15:57:03+00:00 1.0 1196424883 416 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-21 15:31:11+00:00 1.0 1196424883 415 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 15:01:03+00:00 1.0 1196424883 411 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 10:00:02+00:00 1.0 1196424883 410 ℹ coin signal information ℹ date saturday 21 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-21 08:01:01+00:00 1.0 1196424883 408 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-20 15:32:03+00:00 1.0 1196424883 406 have you been missing out on these huge profits in our last pump on yobit having 600 profit in snpt coin make sure you are ready for the next one this group buys crypto coins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt 2018-07-20 11:48:26+00:00 1.0 1196424883 192 5 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ next post is coin name ⭐️ 2018-05-19 14:54:07+00:00 1.0 1196424883 189 30 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:29:20+00:00 1.0 1196424883 185 5 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 09:59:09+00:00 1.0 1196424883 182 less than 7 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 08:15:27+00:00 1.0 1196424883 175 5 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ next post is coin name ⭐️ 2018-05-17 17:55:05+00:00 1.0 1196424883 174 10 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:50:24+00:00 1.0 1196424883 170 1 hour left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:01:39+00:00 1.0 1196424883 167 5 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 13:00:35+00:00 1.0 1196424883 158 results coin zsecoin zsebtc low 000000135 high 000000215 increase 60+ volume 05 btc it was a good pump but we know that we should do it better thanks for your support and believe to us our next copump will be better congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 100+ 2018-05-10 19:19:14+00:00 1.0 1196424883 154 just 5 minutes to fly open your cryptopia account next post will be the logo of coin name ⚠⚠⚠ 2018-05-10 18:55:09+00:00 1.0 1196424883 150 1 hour left to pump it will be on cryptopia exchange 20 groups more than 40000 members will participate todays pump is going to be great so get ready ✊ 2018-05-10 18:03:07+00:00 1.0 1196424883 144 ‼️ info ‼️ please do not ask admin coin name earlier that is not possible under any conditions those who started pumping with us from very first pump 300 members on yobit may remember that those who actively spread coin name on exchange chat were offered coin name little time before as a reward well these times are over now we only pay money for this chat job we believe that will be best for everyone our channel work in collab with 20 groups counting 40 000 members total our messaging bot we are all connected to makes sure that all channels receive coin name at the same time to the moon 2018-05-09 11:08:57+00:00 1.0 1196424883 138 ‼️ info ‼️ please do not ask admin coin name earlier that is not possible under any conditions those who started pumping with us from very first pump 300 members on yobit may remember that those who actively spread coin name on exchange chat were offered coin name little time before as a reward well these times are over now we only pay money for this chat job we believe that will be best for everyone our channel work in collab with 20 groups counting 40 000 members total our messaging bot we are all connected to makes sure that all channels receive coin name at the same time to the moon 2018-05-08 17:51:39+00:00 1.0 1196424883 137 results coin chesscoin chessbtc low 000000061 high 000000095 increase 57+ volume 07 btc it was a good pump but we know that we should do it better thanks for your support and believe to us our next copump will be better congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 150+ 2018-05-07 19:30:06+00:00 1.0 1196424883 135 pump starts the coin to pump is chess chesscoin chessbtc exchange cryptopia target +100 market url trollbox 2018-05-07 19:01:39+00:00 1.0 1196424883 134 pump starts the coin to pump is chess chesscoin chessbtc exchange cryptopia target +100 market url trollbox 2018-05-07 19:01:39+00:00 1.0 1196424883 133 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-05-07 18:54:27+00:00 1.0 1196424883 129 1 hour left to pump it will be on cryptopia exchange 20 groups more than 40000 members will participate it will be huge ✊ 2018-05-07 17:59:12+00:00 1.0 1196424883 121 big co pump announcement 7th may monday 1900 gmt cryptopia exchange you can find details in the photo below 2018-05-05 18:02:00+00:00 1.0 1196424883 120 results coin musiconomi mci low 000000535 high 000001140 increase 113+ volume 12 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 150+ 2018-05-04 19:08:38+00:00 1.0 1196424883 118 pump starts the coin to pump is mci musiconomi mcibtc exchange cryptopia target +100 market url trollbox 2018-05-04 19:01:17+00:00 1.0 1196424883 117 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-05-04 18:55:14+00:00 1.0 1196424883 113 1 hour left to pump it will be on cryptopia exchange 20 groups more than 40000 members will participate it will be huge ✊ 2018-05-04 18:00:01+00:00 1.0 1196424883 99 the coins name is hac hackspace pump hold guys promote the coin in chat box good luck everyone 2018-05-02 21:00:09+00:00 1.0 1196424883 98 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-02 20:57:24+00:00 1.0 1196424883 95 just 15 minutes to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors 2018-05-02 20:46:03+00:00 1.0 1196424883 93 just 25 minutes to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors 2018-05-02 20:35:22+00:00 1.0 1196424883 92 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules to chat and hold 2018-05-02 20:25:38+00:00 1.0 1196424883 90 just 1 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors 2018-05-02 20:01:38+00:00 1.0 1196424883 89 just 2 hours to go till coin announcement last result +75 lets smash last result this time new pump target +190 ❗️ dont miss this one its going to be huge ❗️ 2018-05-02 19:02:56+00:00 1.0 1196424883 87 less than 3 hours to go ⏳ time 9pm gmt exchange cryptopia ❗️a few things to remember ❗️ to maximize profit make sure you ride all the waves remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box ✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days wwwcryptopiaconz make sure you dont miss out today massive gains to be made have bitcoin on your account ready we cant wait 2018-05-02 18:27:24+00:00 1.0 1196424883 81 pump announcement date wednesday 2nd time 9pm gmt exchange cryptopia target 190 this coin is going to hit great highs and hold its gains this pump we will hit 190+ 2018-05-02 00:14:37+00:00 1.0 1196424883 80 ‼️ info ‼️ please do not ask admin coin name earlier that is not possible under any conditions those who started pumping with us from very first pump 300 members on yobit may remember that those who actively spread coin name on exchange chat were offered coin name little time before as a reward well these times are over now we only pay money for this chat job we believe that will be best for everyone stay tuned 2018-05-01 15:24:50+00:00 1.0 1196424883 64 just 3 hours to go till pump hold⏳ remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days 2018-04-26 17:03:39+00:00 1.0 1196424883 58 ‼️ pump alert ‼️ date thursday 26th please note new time time 800pm gmt exchange cryptopia target +180 + 2018-04-25 17:36:43+00:00 1.0 1196424883 56 ‼️ wanted ‼️ next pump will be anounced soon meanwhile we remind you guys that we are looking for ⭐️ chatters on yobitnet ⭐️ all active chatters will be privileged members of this channel more details will be disclosed privately to be able to message in yobitnet chat you need to have only 001 btc 8090 on your yobit account if you are interested in oportunity to earn more money message admin tonymilano for more details 2018-04-25 11:14:13+00:00 1.0 1196424883 53 ⭐️ results ⭐️ ok team volume is not big but high peak of +78 is great result for our small team price is still on top sell for great profit now and see you next time another pump will be anounced here soon thanks everyone for participating today 2018-04-24 18:43:35+00:00 1.0 1196424883 49 15 minutes before pump start next message is coin 2018-04-24 17:45:02+00:00 1.0 1196424883 48 1 hour before pump start 2018-04-24 16:58:45+00:00 1.0 1196424883 44 ‼️ pump alert ‼️ hello everyone we will pump today again pump date 240418 today start 559 pm gmt time exchange yobit pair xxxbtc dont forget to chat our coin chatter on our channel always earn more to be able to message in yobitnet chat you need to have only 001 btc 7080 on your yobit account all members who do this will receive extra support advices and other bonuses message me for more info tonymilano 2018-04-24 07:32:24+00:00 1.0 1196424883 41 ‼️info‼️ next pump will be anounced soon next week meanwile we remind all our members that in order for pump to be profitable for us all we have to act as a team and chat our coin on yobit chat that one on the right side to attract more people this way we will create bigger volume higher prise and better profit for us to be able to message in chat you need to have only 001 btc 7080 on your yobit account all members who do this will receive extra support advices and other bonuses chatter on our channel always earn more message me for more info tonymilano 2018-04-20 12:04:44+00:00 1.0 1196424883 34 10 minutes before pump start ‼️next message is coin name‼️ 2018-04-19 18:59:33+00:00 1.0 1196424883 32 less than 1 hour before pump start 2018-04-19 18:14:49+00:00 1.0 1196424883 29 ⭐️500 members⭐️ goal reached our channel has 500 members all invited only from crypto and pump channels only pro members are here ⚔️ its time to continue our work so lets do it tomorrow pump start 19042018 709 pm gmt on yobit 2018-04-18 17:23:04+00:00 1.0 1196424883 24 ‼️analysis‼️ it is hard to estimate real number of participants in our first test pump yesterday 10042018 from 300+ channel members we have at the moment however total volume of 005 btc with +80 price increse is really nice for a test to have better results follow these steps 1️⃣buy at a little higher price than exchange says change btc price of the coin 2️⃣sell order should be set not to high dont be gready 3️⃣troll in chat about the coin 1000s of people read it every minute dont forget that successful pump is a team work we all have to actively talk about our coin on exchange chat do not use words pump or buy there but use imagination something like xxx is the coin everyone is talking all day or they will fork xxx this week or new roadmap for xxx hurry up im all in there are 1000s of people reading that chat every minute they are waiting for messages like that and we will sell our coins to them massive numbers of people dont even realize such groups and channels like us exists crypto is all about manipulation whales are manipulating top coins like btc eth ltc ripple pumping and dumping them they use massmedia they spread fud and fomo we are small fishes we cant compete with them we are just following trends someone else is creating pumping btc up to 20 000 then dumping it to 6000 well thats a real boilerroom barbershop thanks to lowcap shitcoins up there small people in this crypto game can manipulate prices too thats what we are trying to do here everyone has to understand that we have to put a little work into this chat about our coin step number 3️⃣ without this we will simply sell coins to each other thats not pump thats cazino its a lot of letters already but i wanted it to be as clear as possible next pump will be anounced soon when we reach next development goal of ⭐️500 members⭐️ during our firs pump there were not enough work in chat however some people did all the work for the rest of you those whos nicknames on yobit are faizulnazreen and mrdwy please contact me tonymilano you are privileged members of this channel from now 2018-04-11 11:25:53+00:00 1.0 1196424883 23 ps those who didnt manage to sell in profit during pump dont panic set your sell order +2030 and leave it there this coin will be pumped buy others soon for sure never sell in loss 2018-04-10 19:40:56+00:00 1.0 1196424883 16 6 minutes before pump start 2018-04-10 19:03:25+00:00 1.0 1196424883 14 1 hour before pump start 2018-04-10 18:09:26+00:00 1.0 1196424883 12 ⭐️300 members⭐️ first goal reached our channel has 300 members all invited only from crypto and pump channels only quality members are here real 300 spartans ⚔️ its time to test our team we have to see what volume we can create to plan further development of this channel so lets do it tomorrow pump start 10042018 709 pm gmt exchange yobit 2018-04-09 18:09:05+00:00 1.0 1375670269 4154 buying more fun here now breaking out the resistance with huge volume from volume growing up significantly in past few hours another big pump incomingwe are expecting huge moves in this coin market makers will pump it hard because of upcoming back to back news looks like whales gonna pump it hard worth buy for short term big profits targets 718298120+ stoploss 20 sponsored 2021-08-21 19:45:11+00:00 1.0 1375670269 3711 ethbtc still nice tested 2h demand again and bounced even with this btc pump looks strong and this strength let me think that btc pairs will keep pushing while btc keeps consolidating and weekend pump is a fake move and we will see some spike down soon not too big keep holding this i think we will see a spike soon dont know eta stay safe 2021-04-10 15:30:00+00:00 1.0 1375670269 2900 nwc going to pump huge rumour new listing there is a confirmed rumour going arround that they will list on one of the top 3 exchanges they should be announcing the exchange in the upcoming week the last time they added an exchange price exploded for 140 on the ta part we can see that the nwc touched the key level from which it always bounces range deviation means high probability for reversing back to range top looking for pump of 3040 after our last nwc post the peak profit was nearly 800 for those of you who remember exchange kucoin hitbtc 2020-10-25 14:45:24+00:00 1.0 1375670269 610 trx a bit more to the downside before the pump trx broke bellow 50 of the range as we have discussed again in the past range trading obeys in 2 rules bounces at the top and the eq continuation when the eq is broken trx did pump in both reactions however the movement was weak and wasn backed by volume to push price up according to our analysis on how bull cycles work trx as the first to pump coin was going to suffer the most now its time again to move into our first buy zones where there is a high chance that it will recover one more time aside from technical reasons the lowest this coin drops the less volume is traded in the orderbook so there is more room for manipulation as soon as we reach the buy zone i would like to see an accumulation pattern forming before i enter descending wedge ihs etc trxabitmoretothedownsidebeforethepumptrxcryptota 2019-04-19 12:57:09+00:00 1.0 1375670269 597 ethereum macro analysis seeing some signs of weakness on ethereum right now is leading me to believe that there is more downside to come unless volume kicks in now we could retest 0027 level and maybe even bellow before going up for a big pump again ethereummacroanalysisethethcryptotatip 2019-04-17 09:01:59+00:00 1.0 1375670269 593 βτcusd 16042019 short term update bitcoin facing resistance on the breaker right now if it manages to get above i expect a big pump up to 5400 2019-04-16 16:52:47+00:00 1.0 1306512413 3367 the blockparty btc crystal ball has just printed a very strong signal on btc expecting a strong 10+ pump incoming on btc over the coming days 2021-07-12 09:35:40+00:00 1.0 1306512413 2094 1 hour left to the biggest moonshot pump yolo big wick energy trade of the year at 0000 gmt tonight the prices to bpt premium go up alsono more lifetime after today bptadmin to get locked in today new prices above for reference 2021-02-14 22:58:58+00:00 1.0 1296614021 875 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-05-04 18:55:05+00:00 1.0 1296614021 874 everyone 10 minutes left login binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast sell at maximum profit 2020-05-04 18:51:04+00:00 1.0 1296614021 872 everyone 30 minutes to go we are very hyped for this pump things are looking better than they have in forever we hope you make all the profits you desire remember to help promote the coin during the pump so it can keep rising and rising 2020-05-04 18:30:39+00:00 1.0 1296614021 871 1 hour left for the binance pump we have added 2 more large telegrams to repost our coin and news at pump time this will make our pump even bigger they are eager to get in on the action since the markets are so perfect right now make sure you buy in quickly for the lowest price pay attention to the expected gain range so you know a safe place to sell enjoy your profits 2020-05-04 18:05:25+00:00 1.0 1296614021 870 i was wrong the pump hours start in an hour and 17 minutes 2020-05-04 17:43:09+00:00 1.0 1296614021 868 47 minutes left until the pump with altcoins bottomed out because of bitcoins recent actions the markets are looking amazing for our pump the coins we pump are near recent lows and can skyrocket easily this pump can be incredible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-05-04 17:13:31+00:00 1.0 1296614021 867 everyone binance pump announcement next pump monday 4 may 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin has risen and alts have bottomed out this is the perfect time to pump we can and will do amazing things in this pump 2020-05-04 17:13:02+00:00 1.0 1296614021 768 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:05+00:00 1.0 1296614021 690 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:05+00:00 1.0 1296614021 688 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:05+00:00 1.0 1296614021 687 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:06+00:00 1.0 1296614021 686 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:05+00:00 1.0 1296614021 685 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:05+00:00 1.0 1296614021 684 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:05+00:00 1.0 1296614021 682 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:05+00:00 1.0 1296614021 680 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:09+00:00 1.0 1296614021 678 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:05+00:00 1.0 1296614021 676 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:05+00:00 1.0 1296614021 675 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:05+00:00 1.0 1296614021 673 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:05+00:00 1.0 1296614021 672 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:05+00:00 1.0 1296614021 671 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:05+00:00 1.0 1296614021 670 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:05+00:00 1.0 1296614021 660 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:06+00:00 1.0 1296614021 656 ae 30 minutes left 2020-04-09 13:36:55+00:00 1.0 1296614021 639 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:41+00:00 1.0 1296614021 613 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:47+00:00 1.0 1296614021 608 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:43+00:00 1.0 1296614021 603 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1296614021 601 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:04+00:00 1.0 1296614021 599 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:03+00:00 1.0 1296614021 598 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:12+00:00 1.0 1296614021 597 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 14:00:27+00:00 1.0 1296614021 593 huge pump announcement next pump 22 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-06 20:10:01+00:00 1.0 1296614021 591 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:05+00:00 1.0 1296614021 589 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:03+00:00 1.0 1296614021 587 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:03+00:00 1.0 1296614021 586 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:03+00:00 1.0 1296614021 585 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:05+00:00 1.0 1296614021 584 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:03+00:00 1.0 1296614021 583 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:03+00:00 1.0 1296614021 582 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:04+00:00 1.0 1296614021 580 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:04+00:00 1.0 1296614021 579 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:03+00:00 1.0 1296614021 578 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:03+00:00 1.0 1296614021 577 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:04+00:00 1.0 1296614021 576 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:02+00:00 1.0 1296614021 575 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:03+00:00 1.0 1296614021 574 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:02+00:00 1.0 1296614021 572 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:02+00:00 1.0 1296614021 569 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:50+00:00 1.0 1296614021 567 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:01+00:00 1.0 1296614021 564 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:57+00:00 1.0 1296614021 561 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:01+00:00 1.0 1296614021 559 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:01+00:00 1.0 1296614021 557 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:01+00:00 1.0 1296614021 556 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:02+00:00 1.0 1296614021 555 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:16+00:00 1.0 1296614021 554 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:07+00:00 1.0 1296614021 552 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:07+00:00 1.0 1296614021 548 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:01+00:00 1.0 1296614021 546 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:01+00:00 1.0 1296614021 545 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:02+00:00 1.0 1296614021 543 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:02+00:00 1.0 1296614021 542 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:01+00:00 1.0 1296614021 541 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:02+00:00 1.0 1296614021 540 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:02+00:00 1.0 1296614021 539 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:02+00:00 1.0 1296614021 538 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:02+00:00 1.0 1296614021 537 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:02+00:00 1.0 1296614021 536 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:02+00:00 1.0 1296614021 535 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:02+00:00 1.0 1296614021 534 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:01+00:00 1.0 1296614021 533 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:07+00:00 1.0 1296614021 532 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:01+00:00 1.0 1296614021 523 binance pump reminder ⏰ date friday 03 april 1800 gmt exchange binancecom register if you havent yet please read the available help channels on discord and learn the tips of pumping you will want to know how to buy fast to maximize your profit and as always if you have questions just ask ❗️things you need to do before the pump 1 register on binancecom or the app 2 deposit bitcoin onto your account 3 watch here for the pump signal friday at 1800 gmt 4 follow the given advice or use your best judgement and profit huge 2020-04-01 23:27:51+00:00 1.0 1296614021 516 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:20+00:00 1.0 1296614021 513 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:43+00:00 1.0 1296614021 510 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 16:50:23+00:00 1.0 1296614021 501 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 22:53:21+00:00 1.0 1296614021 500 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 22:53:21+00:00 1.0 1296614021 492 results of appc pump profit 897 high 413 low 379 all members were able to profit on this pump we hit our high 1 minute after start pump in the free channel and 2 minutes after the post on our vip channel we are proud of you members want to know the coin earlier in the next pump — cryptowhale — 2020-03-27 22:39:25+00:00 1.0 1296614021 487 ⏰ 5 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:55:00+00:00 1.0 1296614021 485 ⏰ 10 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:50:00+00:00 1.0 1296614021 483 ⏰ 15 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:45:29+00:00 1.0 1296614021 481 ⏰ 30 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:30:00+00:00 1.0 1296614021 478 everyone who will invest more than 1 btc in this pump will get to know coin in the next pump 20 seconds faster you will just have to show order history from this pump to the admin 2020-03-27 20:06:37+00:00 1.0 1296614021 476 ⏰ 1 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:00:00+00:00 1.0 1296614021 475 ⏰ 2 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 19:05:01+00:00 1.0 1296614021 473 ❕ are you a member and want to receive coin 10 sec faster in next pump ❕ its simple just invest more than 3 btc in our todays pump and you will have to send us your order history from todays which will cost above 3 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 10 seconds faster 2020-03-27 18:53:08+00:00 1.0 1296614021 470 ⏰ 4 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 17:00:00+00:00 1.0 1296614021 468 ⏰ 6 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 15:00:00+00:00 1.0 1296614021 467 ❕ are you a member and want to receive coin 3 sec faster in next pump ❕ its simple just invest more than 1 btc in our todays pump and you will have to send us your order history from todays which will cost above 1 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 3 seconds faster 2020-03-27 14:34:53+00:00 1.0 1296614021 466 ⏰ 8 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 13:00:58+00:00 1.0 1296614021 465 ⏰ 1 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-26 21:46:32+00:00 1.0 1296614021 464 ⏰ 2 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-25 23:00:17+00:00 1.0 1296614021 463 ⏰ 3 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-24 12:40:14+00:00 1.0 1296614021 456 pump announcement next pump friday 27 march 2100 pm gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-03-23 16:28:09+00:00 1.0 1296614021 113 more bitrex pump results start price 525 sats peak price 1284 sats gain 145 the pump spent over 6 min near 1000 sats 2019-11-27 21:31:06+00:00 1.0 1296614021 108 only 5 minutes to go next post will be the coin name 2019-11-27 19:55:04+00:00 1.0 1296614021 104 4 hours left until the pump today there will be provided news for everyone to spread around post this on social media forums telegram or anywhere people are interested in crypto we will also be able to pump our coin to make bittrex front page as the top gainrer of the day which will attract a of additional investment altcoin markets are primed and many people are looking to trade make sure your bittrex account is loaded and ready 2019-11-27 16:00:04+00:00 1.0 1296614021 103 24 hours left until the pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot everything is looking great for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits remember bittrex pumps can go 100250 on average 2019-11-26 20:00:03+00:00 1.0 1296614021 102 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot the current state of the market allowing for alts to sky rocket the additional marketing we have secured for the coin news and the readiness of many coins on bittrex will make sure we have an incredible pump this will be one you dont want to miss 2019-11-25 20:00:05+00:00 1.0 1296614021 100 pump announcement next pump wednesday 27 november 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time signs are pointing toward the begining of alt season and some markets are already beginning to spike this is the perfect time to pump there will be many options and a lot more money going ino altcoins than usual lets take advantage of this and have a huge pump 2019-11-25 16:37:29+00:00 1.0 1296614021 98 unfortunatly we have decided it is best and safest to cancel todays pump this is for the protection of everyone if we pump we want it to be first class with no issues and huge profits for everyone no other groups would cancel last minute to protect their users we appologize for the inconvenience but hope you understand this is for the best the pump will be rescheduled asap thank you for your support 2019-11-22 04:54:47+00:00 1.0 1296614021 96 only 30 minutes left until the huge bittrex pump 2019-11-21 19:32:17+00:00 1.0 1296614021 95 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot for the first time ever on bittrex we have secured additional marketting to enhance the pump further by bringing in even more outsiders be ready for another huge pump tomorrow remember bittrex pumps can go 100250 on average 2019-11-20 20:00:04+00:00 1.0 1296614021 94 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot sending pink 126 last week we showed we can still dominate bittrex markets but we can do even better more users and more volume means higher pumps and larger cap coins invite others and have a solid plan for promoting the coin news from us all doing our part we will grow larger and larger and earn more profits for everyone we could see 34500 pumps 2019-11-19 20:25:12+00:00 1.0 1296614021 91 ✅ the next pump will take place thursday the 21th of november exchange bittrex 2000 gmt ⚖ pair btc targets 100 150 welcome to all the new members thursday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices this pump will be huge again 2019-11-19 16:12:50+00:00 1.0 1296614021 86 only 5 minutes to go global fomo warming up next post will be the breakout coin name be very ready guys login binance and keep an eye here 2019-11-16 04:55:02+00:00 1.0 1296614021 83 dear members 2 days left until our next binance pump our goal saturday will be to trigger a reaction from outsiders saturday after we post the coin signal the price will went up really fast this will get the coin trending bring many more outsiders into the pump and create bigger waves directives be ready to buy quickly when the coin signal is given we have thousands of members trading at once and the price will go up very fast the best way to buy is to buy at market price using the 75 option in the market tab not 100 because the price will have already go up and wont work the earlier you buy in the better if you are too late to buy and the price has risen alot already it is recommended to sit it out it is preferable trading on the binance desktop app because the amount of volume we will generate might make the binance browser slower ° please notice that we still got 20 discount on vip untill our pump of saturday • if you got any questions regarding our pumps feel free to ask us jerrysmm 2019-11-14 04:49:24+00:00 1.0 1296614021 81 big pump event guys our team has decided to organise a win win opportunity to you all where you can recover your losses due to btc pump and make some decent profit with us date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event by the time keep your btc ready for blast✅ 2019-11-12 04:40:43+00:00 1.0 1296614021 71 dear members we are very sorry for the mishap the telegram bot got crashed right before the pump and only discord got the message the coin was not posted to any of our telegram groups who are the main source of volume over 100000 users who were expecting to see the coin were never given it due to a crash of the telegram posting bot this caused a large chunk of our buying power to be missing and therefore the pump never really took off but we did a good pump only with discord u can see the result here 2019-10-30 20:33:48+00:00 1.0 1296614021 69 10 minutes left make sure you are logged in wih everything ready 2019-10-30 19:50:03+00:00 1.0 1296614021 68 only 30 minutes left until the huge binance pump 2019-10-30 19:30:04+00:00 1.0 1296614021 67 1 hour left before the pump make sure you help promote the coin during the pump this is make outsiders buy our sell orders and keep the pump going for much longer 2019-10-30 19:00:04+00:00 1.0 1296614021 66 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit 2019-10-30 18:00:37+00:00 1.0 1296614021 63 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot pumps can be extremely profitable for all those involved scroll up to familiarize yourself with the process and be ready for massive gains 2019-10-29 20:25:00+00:00 1.0 1296614021 57 pump announcement next pump wednesday 30 october 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we have taken a long time between pumps to assure this upcoming pump can be huge and extremely profitable for everyone bitcoin rising and the state of the market have made this the perfect time to pump 2019-10-26 19:44:22+00:00 1.0 1296614021 38 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-10-25 17:50:04+00:00 1.0 1296614021 37 only 30 minutes left the coin name will come as an text 2019-10-25 17:30:04+00:00 1.0 1296614021 36 40 minutes left until the pump go to binance sell all your alts and buy btc 2019-10-25 17:20:06+00:00 1.0 1296614021 35 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-10-25 17:00:04+00:00 1.0 1296614021 34 2 hours until the pump and we will unite and mass buy a coin while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in crypto pump group fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple for now all we can say is get ready practise and read all the advice we gave you 2019-10-25 16:00:03+00:00 1.0 1296614021 12 dear members 1 day left until our next binance pump our goal tomorrow will be to trigger a reaction from outsiders tomorrow after we post the coin signal the price will went up really fast this will get the coin trending bring many more outsiders into the pump and create bigger waves directives be ready to buy quickly when the coin signal is given we have thousands of members trading at once and the price will go up very fast the best way to buy is to buy at market price using the 75 option in the market tab not 100 because the price will have already go up and wont work the earlier you buy in the better if you are too late to buy and the price has risen alot already it is recommended to sit it out it is preferable trading on the binance desktop app because the amount of volume we will generate might make the binance browser slower • if you got any questions regarding our pumps feel free to ask us jerrysmm 2019-10-24 09:27:53+00:00 1.0 1296614021 6 ✅ the next pump will take place friday the 25th of october exchange binance 1800 gmt ⚖ pair btc targets 50 100 welcome to all the new members friday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices this pump will be huge again 2019-10-23 08:31:04+00:00 1.0 1296614021 5 hello poeple after a very long time we decided to recreate the telegram channel we hope that we will again exceed 100 200 profits on our pumps our first commeback pump will start soon we promote our group as much as possible in the vip channel u receive few signals weekly on binancecom and the name of the coin few min before the pump bonus for old vip we remember or have proof of purchase txid will get a free 3 months in our premium channel pinourchannelontopsoyouwillnotmissthecommebackpump contact jerrysmm cryptopumpgroup tmecryptopumpgroup 2019-10-19 22:10:43+00:00 1.0 1443935936 488 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-05-04 18:55:06+00:00 1.0 1443935936 487 everyone 10 minutes left login binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast sell at maximum profit 2020-05-04 18:51:04+00:00 1.0 1443935936 485 everyone 30 minutes to go we are very hyped for this pump things are looking better than they have in forever we hope you make all the profits you desire remember to help promote the coin during the pump so it can keep rising and rising 2020-05-04 18:30:40+00:00 1.0 1443935936 484 1 hour left for the binance pump we have added 2 more large telegrams to repost our coin and news at pump time this will make our pump even bigger they are eager to get in on the action since the markets are so perfect right now make sure you buy in quickly for the lowest price pay attention to the expected gain range so you know a safe place to sell enjoy your profits 2020-05-04 18:05:25+00:00 1.0 1443935936 483 i was wrong the pump hours start in an hour and 17 minutes 2020-05-04 17:43:10+00:00 1.0 1443935936 481 47 minutes left until the pump with altcoins bottomed out because of bitcoins recent actions the markets are looking amazing for our pump the coins we pump are near recent lows and can skyrocket easily this pump can be incredible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-05-04 17:13:31+00:00 1.0 1443935936 480 everyone binance pump announcement next pump monday 4 may 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin has risen and alts have bottomed out this is the perfect time to pump we can and will do amazing things in this pump 2020-05-04 17:13:03+00:00 1.0 1443935936 381 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:05+00:00 1.0 1443935936 304 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:05+00:00 1.0 1443935936 302 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:05+00:00 1.0 1443935936 301 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:07+00:00 1.0 1443935936 300 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:06+00:00 1.0 1443935936 299 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:05+00:00 1.0 1443935936 298 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:06+00:00 1.0 1443935936 296 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:06+00:00 1.0 1443935936 294 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:10+00:00 1.0 1443935936 292 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:06+00:00 1.0 1443935936 290 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:06+00:00 1.0 1443935936 289 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:06+00:00 1.0 1443935936 287 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:05+00:00 1.0 1443935936 286 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:05+00:00 1.0 1443935936 285 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:05+00:00 1.0 1443935936 284 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:05+00:00 1.0 1443935936 275 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:07+00:00 1.0 1443935936 271 ae 30 minutes left 2020-04-09 13:36:55+00:00 1.0 1443935936 255 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:42+00:00 1.0 1443935936 242 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:48+00:00 1.0 1443935936 237 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:44+00:00 1.0 1443935936 232 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1443935936 230 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:05+00:00 1.0 1443935936 228 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:03+00:00 1.0 1443935936 227 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:13+00:00 1.0 1443935936 226 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 14:00:27+00:00 1.0 1443935936 222 huge pump announcement next pump 22 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-06 20:10:01+00:00 1.0 1443935936 220 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:06+00:00 1.0 1443935936 218 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:04+00:00 1.0 1443935936 216 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:04+00:00 1.0 1443935936 215 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:04+00:00 1.0 1443935936 214 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:06+00:00 1.0 1443935936 213 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:04+00:00 1.0 1443935936 212 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:04+00:00 1.0 1443935936 211 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:05+00:00 1.0 1443935936 209 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:04+00:00 1.0 1443935936 208 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:04+00:00 1.0 1443935936 207 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:04+00:00 1.0 1443935936 206 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:04+00:00 1.0 1443935936 205 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:03+00:00 1.0 1443935936 204 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:03+00:00 1.0 1443935936 203 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:02+00:00 1.0 1443935936 201 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:03+00:00 1.0 1443935936 199 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:51+00:00 1.0 1443935936 197 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:02+00:00 1.0 1443935936 194 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:57+00:00 1.0 1443935936 191 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:01+00:00 1.0 1443935936 189 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:02+00:00 1.0 1443935936 187 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:02+00:00 1.0 1443935936 186 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:02+00:00 1.0 1443935936 185 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:17+00:00 1.0 1443935936 184 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:08+00:00 1.0 1443935936 182 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:07+00:00 1.0 1443935936 178 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:01+00:00 1.0 1443935936 176 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:01+00:00 1.0 1443935936 175 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:02+00:00 1.0 1443935936 173 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:03+00:00 1.0 1443935936 172 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:02+00:00 1.0 1443935936 171 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:03+00:00 1.0 1443935936 170 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:02+00:00 1.0 1443935936 169 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:03+00:00 1.0 1443935936 168 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:02+00:00 1.0 1443935936 167 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:02+00:00 1.0 1443935936 166 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:02+00:00 1.0 1443935936 165 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:02+00:00 1.0 1443935936 164 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:02+00:00 1.0 1443935936 163 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:07+00:00 1.0 1443935936 162 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:02+00:00 1.0 1443935936 153 binance pump reminder ⏰ date friday 03 april 1800 gmt exchange binancecom register if you havent yet please read the available help channels on discord and learn the tips of pumping you will want to know how to buy fast to maximize your profit and as always if you have questions just ask ❗️things you need to do before the pump 1 register on binancecom or the app 2 deposit bitcoin onto your account 3 watch here for the pump signal friday at 1800 gmt 4 follow the given advice or use your best judgement and profit huge 2020-04-01 23:27:52+00:00 1.0 1443935936 147 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:20+00:00 1.0 1443935936 144 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:43+00:00 1.0 1443935936 142 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 16:50:24+00:00 1.0 1443935936 137 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 16:54:39+00:00 1.0 1443935936 132 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 01:27:10+00:00 1.0 1246407804 540 coin signals for kucoin exchange follow us for best pump tracking service on kucoin ✅ signal low level for max profit ✅ high accuracy 100 ✅ signal before pump ✅ short term and quick profit signals only ✅ high end profit in short time trade with us for high end profit join fast link is open for few minutes only +dna5vebdq0mwmdu1 2022-01-13 04:50:19+00:00 1.0 1093396548 10419 3 days left until the big pump on binance 2021-12-30 14:45:27+00:00 1.0 1093396548 10396 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:34+00:00 1.0 1093396548 10352 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:23+00:00 1.0 1093396548 10301 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:04+00:00 1.0 1093396548 10297 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:06+00:00 1.0 1093396548 10296 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:04+00:00 1.0 1093396548 10295 15 minutes remaining until the big pump be ready 2021-11-28 16:45:57+00:00 1.0 1093396548 10293 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:24+00:00 1.0 1093396548 10292 2 hours left until the massive pump on binance 2021-11-28 15:01:08+00:00 1.0 1093396548 10291 2 hours left until the massive pump on binance 2021-11-28 15:01:08+00:00 1.0 1093396548 10290 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:21:03+00:00 1.0 1093396548 10289 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:15+00:00 1.0 1093396548 10284 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:08+00:00 1.0 1093396548 10283 2 days remaining until the big pump on binance 2021-11-26 16:18:09+00:00 1.0 1093396548 10257 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:06+00:00 1.0 1093396548 10180 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:23+00:00 1.0 1093396548 10177 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:05+00:00 1.0 1093396548 10176 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:58+00:00 1.0 1093396548 10174 30 minutes left until the big pump on binance 2021-11-07 16:30:01+00:00 1.0 1093396548 10173 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:02+00:00 1.0 1093396548 10170 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:10:01+00:00 1.0 1093396548 10169 4 hours left until the big pump on binance 2021-11-07 13:00:30+00:00 1.0 1093396548 10168 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:05+00:00 1.0 1093396548 10166 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:03+00:00 1.0 1093396548 10160 2 days left until the big pump on binance be prepared 2021-11-05 14:30:46+00:00 1.0 1093396548 10141 4 days remaining until the big pump on binance 2021-11-03 13:56:22+00:00 1.0 1093396548 10128 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:09+00:00 1.0 1093396548 10120 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1093396548 10115 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:06+00:00 1.0 1093396548 10113 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:07+00:00 1.0 1093396548 10111 30 minutes left until the big pump 2021-10-31 16:29:26+00:00 1.0 1093396548 10110 55 minutes left until the big pump on binance 2021-10-31 16:06:17+00:00 1.0 1093396548 10109 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:46+00:00 1.0 1093396548 10103 4 hours left until the big pump on binance 2021-10-31 13:02:24+00:00 1.0 1093396548 10102 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:43+00:00 1.0 1093396548 10098 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:29+00:00 1.0 1093396548 10082 3 days left until the big pump on binance 2021-10-28 13:03:06+00:00 1.0 1093396548 10072 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:53+00:00 1.0 1093396548 10070 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:48+00:00 1.0 1093396548 10064 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:09+00:00 1.0 1093396548 10062 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:59+00:00 1.0 1093396548 10061 15 minutes left until the massive pump on binance 2021-10-24 16:45:00+00:00 1.0 1093396548 10060 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:09+00:00 1.0 1093396548 10059 2 hours left until the big pump on binance 2021-10-24 15:00:11+00:00 1.0 1093396548 10058 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:09+00:00 1.0 1093396548 10057 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:10+00:00 1.0 1093396548 10056 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:16+00:00 1.0 1093396548 10047 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:54+00:00 1.0 1093396548 10035 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:52+00:00 1.0 1093396548 10026 7 days left until the big pump on binance 2021-10-17 14:50:34+00:00 1.0 1093396548 9987 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:09+00:00 1.0 1093396548 9982 15 minutes left screens on and have btc ready 2021-10-14 14:45:24+00:00 1.0 1093396548 9980 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:06:33+00:00 1.0 1093396548 9977 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:05+00:00 1.0 1093396548 9965 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:00+00:00 1.0 1093396548 9955 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:40:09+00:00 1.0 1093396548 9954 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:44+00:00 1.0 1093396548 9951 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:06+00:00 1.0 1093396548 9949 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1093396548 9947 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:30:00+00:00 1.0 1093396548 9946 1 hour left until the big pump on binance 2021-10-10 16:00:20+00:00 1.0 1093396548 9945 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:05+00:00 1.0 1093396548 9944 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:36+00:00 1.0 1093396548 9943 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:51+00:00 1.0 1093396548 9942 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:55+00:00 1.0 1093396548 9935 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:08+00:00 1.0 1093396548 9909 3 days left until the big pump on binance 2021-10-07 14:33:55+00:00 1.0 1093396548 9897 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:13+00:00 1.0 1093396548 9892 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:33+00:00 1.0 1093396548 9889 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:09+00:00 1.0 1093396548 9886 5 minutes left the real coin we are pumping will be posted in 5 minutes be ready 2021-10-03 16:54:57+00:00 1.0 1093396548 9885 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:26+00:00 1.0 1093396548 9883 the coin we have picked to pump today is ilv 2021-10-03 16:50:26+00:00 1.0 1093396548 9879 12 minutes left until the pump on binance 2021-10-03 16:48:38+00:00 1.0 1093396548 9878 the coin we have picked to pump today is nxs 2021-10-03 16:47:52+00:00 1.0 1093396548 9874 30 minutes left until the big the pump on binance 2021-10-03 16:30:04+00:00 1.0 1093396548 9873 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-10-03 16:00:06+00:00 1.0 1093396548 9872 1 hour and 58 minutes left until the big pump on binance be ready 2021-10-03 15:03:07+00:00 1.0 1093396548 9869 3 hours and 50 minutes left until the big pump on binance this pump will be massive be prepared 2021-10-03 13:09:48+00:00 1.0 1093396548 9868 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:34+00:00 1.0 1093396548 9866 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:06+00:00 1.0 1093396548 9852 3 days left until the big pump on binance 2021-09-30 15:23:57+00:00 1.0 1093396548 9842 7 days left until the big pump on binance 2021-09-26 14:36:02+00:00 1.0 1093396548 9829 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:21+00:00 1.0 1093396548 9820 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1093396548 9819 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:13+00:00 1.0 1093396548 9817 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:11+00:00 1.0 1093396548 9814 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:09+00:00 1.0 1093396548 9813 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:10+00:00 1.0 1093396548 9812 4 hours left until the big pump on binance 2021-09-19 13:01:20+00:00 1.0 1093396548 9811 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:02:02+00:00 1.0 1093396548 9810 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:19+00:00 1.0 1093396548 9798 3 days left until the big pump on binance 2021-09-16 15:14:54+00:00 1.0 1093396548 9776 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:59+00:00 1.0 1093396548 9738 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:11+00:00 1.0 1093396548 9733 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:07+00:00 1.0 1093396548 9731 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:46+00:00 1.0 1093396548 9728 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1093396548 9727 2 hours left until the big pump on binance 2021-09-05 15:00:11+00:00 1.0 1093396548 9726 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:06+00:00 1.0 1093396548 9724 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:44+00:00 1.0 1093396548 9714 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:57+00:00 1.0 1093396548 9694 2 days left until the big pump on binance be prepared 2021-09-03 14:05:11+00:00 1.0 1093396548 9666 mega pump group 280821 0707 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 8 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-28 22:34:17+00:00 1.0 1093396548 9643 5 minutes left next post is us our coin date tuesday august 24 2021 today time 1500 utc in 5 mints exchange binance coin type spot btc pair 2021-08-24 14:55:03+00:00 1.0 1093396548 9642 15 minutes left have your binance account logged in and be ready to make at least a 7x profit on spot… our coin is just btc paired so have btc ready date tuesday august 24 2021 today time 1500 utc in 15 mints exchange binance coin type spot btc pair 2021-08-24 14:45:06+00:00 1.0 1093396548 9641 1 hour left be prepared you really dont want to watch this from the sidelines the coin is a btc paid only meaning it can only be purchased with btc so hurry and get that btc bag ready date tuesday august 24 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-24 14:00:02+00:00 1.0 1093396548 9639 3 hours left 3 hours left for the 700+ pump we told you about have btc in you binance account get some caffeine in your system and hold on tight… because its going to explode date tuesday august 24 2021 today time 1500 utc in 3 hours exchange binance 2021-08-24 12:00:08+00:00 1.0 1093396548 9638 5 hours left 5 hours left for the pump announcement of the year this beast is expected to make all other pumps so far bite the dust by far date tuesday august 24 2021 today time 1500 utc in 5 hours exchange binance 2021-08-24 10:00:02+00:00 1.0 1093396548 9628 24 hours left date tuesday august 24 2021 time 1500 utc exchange binance 24 hours left for our minimum 7x pump this time weve got a coin so good that after it starts moving nothing will be able to stop it it will break through every single resistance short mid and long term as it builds momentum and creates a wave of outside buyers in binance be ready for further updates and turn on your notifications date tuesday august 24 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-23 15:01:23+00:00 1.0 1093396548 9578 pump announcement date tuesday august 24 2021 time 1500 utc exchange binance you witnessed our fun pump make over 50 and our brd pump make over 110 in a matter of minutes everyone had the chance to ride this free for all wave thats why we want to congratulate you all now we dont have time to lose and profits wont wait for those getting left out of these ridiculously profitable moves… thats why were here to announce our next mega pump this one will easily make a 300 move within the first few hours and could reach 10x that in a matter of weeksmonths so be prepared youll know more about whats coming in the next few days date tuesday august 24 2021 time 1500 utc exchange binance 2021-08-18 15:59:07+00:00 1.0 1093396548 9568 15 minutes left next post is us our coin date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance 2021-08-17 14:45:03+00:00 1.0 1093396548 9565 1 hour left yes 60 minutes left for the move of the year youre either riding it or regretting it so be prepared date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-17 14:00:10+00:00 1.0 1093396548 9564 3 hours left 3 hours left for the biggest pump of the year have btc in you binance account get yourself some coffee and tighten your seatbelt… because were going for a ride date tuesday august 17 2021 today time 1500 utc in 3 hours exchange binance 2021-08-17 12:00:35+00:00 1.0 1093396548 9561 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance 24 hours left for the biggest pump of the year as you already know the pump will take place on binance just as a tip its a btc only spot no leverage pair so have btc ready on your spot binance account and be prepared for the 300+ steady pump weve been waiting for too long date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-16 15:00:03+00:00 1.0 1093396548 9547 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance less then 48 hours left for the biggest pump that has ever been seen on binance be ready for further announcements and dont forget to turn on your push notifications date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-15 17:26:26+00:00 1.0 1093396548 9469 15 minutes left —btc our next post will be the coin name date monday august 2 2021 today time 1200 utc in 15 minutes 2021-08-02 11:45:07+00:00 1.0 1093396548 8908 coti qtum my pump signal top gainers 2021-03-26 09:09:39+00:00 1.0 1093396548 6996 next post will be coin name in between 5 min any time coin name will be in image to avoid bots we assure you this will not be pre pump and it will be organic pump stay tuned 2020-04-20 15:55:01+00:00 1.0 1093396548 6994 around 30 mins left ”hodl event gem call” this gem call will give big potential gains in this month make sure you guys buy and hold we assure you this will not be pre pump and it will be organic pump you have to buy and hold because of coin is on bottom and will be pump huge so do not miss this chance and grab this opportunity stay tuned for more updates 2020-04-20 15:30:04+00:00 1.0 1093396548 6991 hodl event today today will be given special ta based call which is hodl based and we are expecting big profit to holding this coin be ready today around 4 pm gmt stay tuned 2020-04-20 08:44:25+00:00 1.0 1093396548 6987 hodl event dear members we decided to give you a coin tomorrow which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready tomorrow around 4 pm gmt 2020-04-18 10:14:56+00:00 1.0 1093396548 6968 so far its good almost 9 coin up from the hodl event almost generated 25 btc volume and coin was not pre pump next time will try for 50100 btc volume and coin spike up to 2040 stay tuned elfbtc is great coin do not forget if it closed above 1000 satoshi it will directly spike to 11001300 satoshi that is massive 2050 profit so dont forget about elf hold and keep it in watchlist 2020-04-10 16:17:29+00:00 1.0 1093396548 6960 coin will be posted within 35 min next post of hodl coin name make sure you guys will buy fast and hold for maximum profit 2020-04-10 15:55:45+00:00 1.0 1093396548 6956 hello guys alts started taking dips seems good time todays our hodl event gem call which is in good buying zone to be signalled the coin will not be pre pump and this mega event will be huge you have to buy and hold for maximum gain coming around in 2hrs 2020-04-10 14:09:45+00:00 1.0 1093396548 6954 hodl event dear members we decided to give you a coin today which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready today around 4 pm gmt 2020-04-10 07:19:16+00:00 1.0 1093396548 6905 attention as always we are going to see this on binance top gainer list with great volume only 1hours left 400pm1600 gmt for rock bottom whale signal target 70 100 2020-04-04 15:05:34+00:00 1.0 1093396548 6834 rlcbtc new update strong support level 44004600 satoshi so buy and hold till 80 target dont sell guys if you want to huge profit so buy and hold strategy is very good for now remember target 80 so buy and hold 2020-03-27 16:02:32+00:00 1.0 1093396548 6828 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:57:40+00:00 1.0 1093396548 6805 adx pump buy hold sell targets 1050|1150|1250|1350 2020-03-26 11:06:13+00:00 1.0 1093396548 6803 adx big pump buy hold 2020-03-26 10:35:17+00:00 1.0 1093396548 6785 less than 15 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2020-03-25 15:45:09+00:00 1.0 1093396548 6754 less than 05 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2020-03-24 15:56:16+00:00 1.0 1093396548 6743 alright folks here is another rock bottom whale signal details this signal will come on 24nd mar at 400 pm gmt alts are going good as btc is stable above 65k keep the date and time in mind mar 24 | 400 pm gmt today 2020-03-24 03:45:11+00:00 1.0 1093396548 6731 alright folks here is another rock bottom whale signal details this signal will come on 22nd mar at 400 pm gmt alts are going good as btc is stable above 6k keep the date and time in mind mar 22 | 400 pm gmt 2020-03-21 17:09:46+00:00 1.0 1093396548 6703 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours left 400pm1600 gmt 2020-03-19 14:02:54+00:00 1.0 1093396548 6702 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours 40min left 400pm1600 gmt 2020-03-19 13:20:55+00:00 1.0 1093396548 6657 just 02hrs left gurus call date today around 500 gmt exchange binance make sure guys buy and hold until targets we hope the market situation will be better today stay tuned 2020-03-06 15:00:03+00:00 1.0 1093396548 6656 gurus call make massive profit in short term with guru call based on strong technical analysis date today around 500 gmt exchange binance all you have to do buy and hold until targets 2020-03-06 08:35:17+00:00 1.0 1093396548 6637 gurus call make massive profit in short term with guru call based on strong technical analysis date tomorrow exchange binance 2020-03-05 09:28:38+00:00 1.0 1093396548 6459 sky this coin will pump up you hold it this is my opinion 2019-11-27 10:29:19+00:00 1.0 1093396548 6403 grs heavy pump price went high till 2850 huge 15 profit within few minutes 2019-10-30 15:04:11+00:00 1.0 1093396548 6400 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:10:06+00:00 1.0 1093396548 6183 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 17:46:34+00:00 1.0 1093396548 6129 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 15 minutes left 2019-09-05 15:45:41+00:00 1.0 1093396548 6128 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 30 minutes left 2019-09-05 15:30:41+00:00 1.0 1093396548 6127 dear members just around 1 hour left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the dip call team 2019-09-05 15:07:12+00:00 1.0 1093396548 6126 dear members 5 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the dip call team 2019-09-05 11:08:50+00:00 1.0 1093396548 6110 announcement dear members the wait is over since our previous mega calls were a great success we have decided to make more mega profits for all of you this big bang call will be freeforall meaning that everyone will receive the signal at the same time big bang call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next big bang call exchange binance date 05092019 thursday time 4 pm gmt target 4070 have a great weekend and prepare yourself for upcoming big bang call nav pumped here 70 cvc pumped here 70+ data pumped here 70 vib pumped here 46+ snt pumped here 48 qsp pumped here 45+ 2019-08-30 16:11:08+00:00 1.0 1093396548 6074 viball target 6️⃣➕ hit 240 ✅profit 5200 pump coin hit 2019-08-21 18:24:22+00:00 1.0 1093396548 5943 05 minutes left the next message will be the coin name with targets❗️ 2019-07-22 15:55:03+00:00 1.0 1093396548 5927 binance upcoming dip call announcement dear members the wait is over since our previous dip calls were a great success a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip call because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time dip call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 22072019 monday time 4 pm gmt target 50100 have a great weekend and prepare yourself for upcoming dip call the dip call team 2019-07-20 07:52:10+00:00 1.0 1093396548 5858 important announcement for all members we are organising today hodlcall after 4pm gmt make sure you guys will buy and hold for maximum profit keep in mind this is hodlcall means to hold coin for midterm untill our selling targets also be careful on btc when holding alts 2019-06-25 07:50:08+00:00 1.0 1093396548 5850 guys i am giving a coin name with huge potential in next 15 minutes i am very bullish on it in short term only buy it and hold it and keep shifting stoplosses up as it raises stay tuned 2019-06-23 14:45:03+00:00 1.0 1093396548 5842 guys only 05 minutes left next post will be coin name ‼️ if you guys seriously want to make some sweet btc profits you must enter the dip call early and be confident about it 2019-06-18 15:55:07+00:00 1.0 1093396548 5840 guys be ready binancedipcall is coming soon only 30 minutes left for our dip call 2019-06-18 15:30:06+00:00 1.0 1093396548 5836 binance upcoming dip call update dear members the wait is over since our previous dip calls was a great succes a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 18062019 tuesday time 4 pm gmt target 50100 have a great day the dip call team 2019-06-16 17:29:03+00:00 1.0 1093396548 5696 15 min left next post coin name ‼️ if you want to make some sweet btc profits you must enter the dip call early and be confident 2019-05-16 16:45:08+00:00 1.0 1093396548 5687 binance dip call update guys the wait is over on 16th may at 4 pm gmt we are organising our next binance dip call our previous binancedipsignal results 1st dlt around 95 2nd lets join and lead the global fomo again 2019-05-15 16:21:29+00:00 1.0 1093396548 5657 15 minutes left login on binance now have everything ready team the trick to make some amazing profits is to be focused and early coin already in bottom the next message will be the coin❗️ 2019-05-05 15:45:06+00:00 1.0 1093396548 5646 15 mins left first coin of may month be ready with your btc next post coin name 2019-05-03 17:46:21+00:00 1.0 1093396548 5644 first coin of may month coin name will be posted today before 06 pm gmt be ready with your btc 2019-05-03 13:54:11+00:00 1.0 1093396548 5643 first coin of may month coin name will be posted tomorrow before 06 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-05-02 16:52:55+00:00 1.0 1093396548 5624 next post coin name 2019-04-22 17:28:23+00:00 1.0 1093396548 5623 10 minutes left team be ready for the dip mega call 2019-04-22 17:19:44+00:00 1.0 1093396548 5621 15 minutes left team be ready for the dip mega call 2019-04-22 16:45:03+00:00 1.0 1093396548 5620 just 01 hour left dip call today at 500 pm gmt remember it will be a dip call so quick profit expected be ready guys 2019-04-22 16:00:14+00:00 1.0 1093396548 5582 next post coin name 2019-04-12 15:52:55+00:00 1.0 1093396548 5581 30 minutes left ‼️ binance is warming up market is on fire today 2019-04-12 15:32:30+00:00 1.0 1093396548 5580 30 minutes left ‼️ binance is warming up market is on fire today 2019-04-12 15:32:20+00:00 1.0 1093396548 5569 next post coin name 2019-04-06 17:00:03+00:00 1.0 1093396548 5567 coin of week less than 04 hours left today 5 pm gmt be ready and move your funds on binance 2019-04-06 13:03:45+00:00 1.0 1093396548 5564 coin of week will be posted today date 6thapril time before 6pm gmt 2019-04-06 08:26:35+00:00 1.0 1093396548 5551 less than 10 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-04-01 16:54:11+00:00 1.0 1093396548 5549 guys less than 01 hour left today 5 pm gmt coin of april month be ready and move your funds on binance 2019-04-01 16:11:56+00:00 1.0 1093396548 5548 few hours left thats it team were ready prepared for this giant that is coming this coin of month signal is going to be epic because its a damn great gem just waiting for some steam to breakout 2019-04-01 14:15:53+00:00 1.0 1093396548 5534 big pump coin now dip pivx isnt he going to come o time watch 2019-03-28 18:33:10+00:00 1.0 1093396548 5523 final 5 minutes left will announce a strong mega signal 2019-03-27 15:56:29+00:00 1.0 1093396548 5521 did you miss oax evx eng dont worry we are going to tell you a premium mega coin at 4 pm gmt which target is 2x those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 2019-03-27 13:33:23+00:00 1.0 1093396548 5430 attention guys be ready for highly profitable signal potenial coin with big upcoiming news hold for maximum profit multiply your btc with us next post will be coin name 2019-03-15 09:28:29+00:00 1.0 1093396548 5401 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:45:10+00:00 1.0 1093396548 5400 coin of month march 30 minutes left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:31:42+00:00 1.0 1093396548 5399 one more coin month march coin name will be posted today before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 13:27:48+00:00 1.0 1093396548 5392 one more coin month march coin name will be posted tomorrow before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-07 17:39:50+00:00 1.0 1093396548 5357 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ 2019-03-01 09:18:45+00:00 1.0 1093396548 5350 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 17:45:04+00:00 1.0 1093396548 5349 coin of month march less than 130hrs left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 16:43:21+00:00 1.0 1093396548 5348 coin of month march less than 330hrs left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 14:31:12+00:00 1.0 1093396548 5345 coin of month march coin name will be posted today before 06 pm gmt rdn was feb month posted on 31stjan gave upto 60 profit make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 09:00:12+00:00 1.0 1093396548 5276 hey folks❗️❗️ important announcement tomorrow 10th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-09 17:29:01+00:00 1.0 1093396548 5272 sub looks good for pump buy and hold for maximum profits 2019-02-08 16:55:12+00:00 1.0 1093396548 5269 alright guys only 30 minutes left for binancespecialcall coin is at rock bottom make sure you guys will fast and hold for the maximum profits be ready guys 2019-02-08 16:00:11+00:00 1.0 1093396548 5268 guys today we are organising a special call on binance exchange today we are expecting good gain we will give you coin at 430 pm gmt less than 2 hours left so make sure you will buy fast and hold for maximum profits be ready with your btc on binance 2019-02-08 14:31:21+00:00 1.0 1093396548 5266 important announcement guys as market is in uptrend we are going to share special call today at 430 pm gmt undervalued solid gem which can give you 30 to 100 profit log in your binance account and be ready at 430pm gmt exchange binance time 430 pm gmt 1000 pm ist stay tuned 2019-02-08 09:19:55+00:00 1.0 1093396548 5256 less than 10 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2019-02-04 15:51:56+00:00 1.0 1093396548 5251 hey folks❗️❗️ important announcement tomorrow 4th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-03 17:06:04+00:00 1.0 1093396548 5226 next post coin name we recommend all you need to do is buy and hold for upto 3050 profit 2019-01-27 14:28:14+00:00 1.0 1093396548 5137 guys less than 1 hour left be ready with your btc on binance we will share a huge potential coin for short term profit staytuned 2019-01-13 12:45:52+00:00 1.0 1093396548 5135 hey guys pay attention we are going to share a short term call here on binance exchange that call will come here at 145 pm gmt 715 pm ist you can buy that particular coin and hold for targets to get achieved remember that short term call not a pump so it can blast anytime we have analyzed throughly based on technical analysis so make sure you will buy fast and hold for maximum profit sit back and relax we are coming at 145 pm gmt 715 pm ist 2019-01-13 05:49:13+00:00 1.0 1093396548 5099 less than 15 min left of signal of the week be ready with your btc on binance next message will the coin name remember it will the special gem of the week so you need to buy and hold till target achieve 2019-01-03 15:29:54+00:00 1.0 1093396548 5098 ❗️guyz as market is in uptrend we are going to share our big call today at 345pm gmt undervalued solid gem which can give you 30 to 50 profit hodl requirement log in your binance account and be ready at 345pm gmt exchange binance time 345 pm gmt 915 pm ist stay tuned 2019-01-03 10:23:31+00:00 1.0 1093396548 5092 best signal of the week the coin is brd target 1 6350 target 2 6650 target 3 7200++ buy and hold tight till target achieve 2019-01-02 15:45:21+00:00 1.0 1093396548 5091 less than 15 min left of signal of the week be ready with you btc on binance next message will the coin name remember it will the best signal of the week so you need to buy and hold till target achieve 2019-01-02 15:31:19+00:00 1.0 1093396548 5090 hey guys pay attention today our team will give you best signal of the week the coin will be announced here at 345pm gmt remember that best signal of the week so it can blast anytime we have analyzed throughly based on technical analysis so make you sure you will buy fast and hold it for maximum profit stay tuned we will share call here at 345pm gmt 2019-01-02 13:43:36+00:00 1.0 1093396548 5060 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 12:26:26+00:00 1.0 1093396548 5055 binance mega signal event on today guys less than 5 hours left be ready with your btc on binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 07:29:58+00:00 1.0 1093396548 5047 binance mega signal event on date 30thdecember exact time 1230 pm gmt participants upto 500k telegram users exchange binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-29 13:20:11+00:00 1.0 1093396548 5033 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 12:27:52+00:00 1.0 1093396548 5032 binance mega signal today ℹ️ 10 minutes left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 12:20:20+00:00 1.0 1093396548 5031 binance mega signal today ℹ️ 01 hour left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 11:30:00+00:00 1.0 1093396548 5030 binance mega signal today ℹ️ 04 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 08:43:37+00:00 1.0 1093396548 5029 binance mega signal today ℹ️ 530 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 07:03:20+00:00 1.0 1093396548 5026 binance mega signal event on date 27thdecember exact time 1230 pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-26 15:49:12+00:00 1.0 1093396548 4975 pump results x2 coin was eqt started 00000616 reached 000001400 great job guys note we always repump our coins 2018-12-09 19:43:15+00:00 1.0 1093396548 4970 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-09 19:00:14+00:00 1.0 1093396548 4968 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-09 18:55:04+00:00 1.0 1093396548 4959 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09122018 sunday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-09 11:52:43+00:00 1.0 1093396548 4954 pump results x2 coin was plr started 000001270 reached 000002500 great job guys 2018-12-07 20:04:19+00:00 1.0 1093396548 4948 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-07 19:00:21+00:00 1.0 1093396548 4946 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-07 18:55:10+00:00 1.0 1093396548 4937 ℹ coin signal information ℹ date friday 07122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt 8 hrs remaining for mega signal ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-07 11:00:20+00:00 1.0 1093396548 4936 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 09:01:00+00:00 1.0 1093396548 4929 pump results 300 gain coin was xptx open 000002144 reached 000006450 buy order for long timen still exists greenery in xptx noteyou did great job guyz we always repump our coin so hold if u buy high 2018-12-05 19:44:46+00:00 1.0 1093396548 4926 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-05 19:00:21+00:00 1.0 1093396548 4924 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-05 18:55:10+00:00 1.0 1093396548 4913 ℹ coin signal information ℹ date wednesday 05122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-05 06:30:11+00:00 1.0 1093396548 4853 binance pump signal event on date 20november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit 2018-11-18 19:37:27+00:00 1.0 1093396548 4834 binance pump signal event on date 15november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit our join channel link to add your friends 2018-11-13 08:10:51+00:00 1.0 1093396548 3265 dont forget there will be another big bang 2x signal from our expert team in few hours signal will be news related so if you want to take profits you need to be fast enough exchange bittrex time 2pm gmt 215 pm gmt coin will be posted with news and link be ready to double your btc stay tuned to crypto guru free signal 2017-12-30 15:52:58+00:00 1.0 1093396548 1356 signal update buy and hold edg its just started note i dont do pump and dump i hate it edg will go huge keep buying it see you on the moon 2017-10-28 22:53:43+00:00 1.0 1093396548 955 upcoming pump 10 minutes 1600 gmt bittrex 2017-10-16 15:50:35+00:00 1.0 1093396548 760 pump right now coin erc btc exchange bittrex profit goal 35 go go go erc pump right now 2017-10-12 15:59:44+00:00 1.0 1553267336 630 dgbusdt signal was given 1 hour back in vip channel just before epic pump vips are literally printing money 2021-10-31 17:25:03+00:00 1.0 1553267336 177 almost 2000 pump within few minutes of our update 2021-09-13 13:46:45+00:00 1.0 1553267336 164 spot call coin name linausdt entry level⭐️ 0047400430 target 1 00510 target 2 00540 target 3 006+ stoploss 00385 2021-09-12 11:21:25+00:00 1.0 1553267336 124 coin name tomousdt entry ⭐️ 23245 target 1 265 target 2 28 target 3 3+ stoploss 225 2021-09-09 08:26:57+00:00 1.0 1553267336 116 long coin name wavesusdt lev 5 10x entry below⭐️ 2951 target 1 2988 target 2 306 target 3 313 stoploss 287 2021-09-06 11:36:29+00:00 1.0 1553267336 110 long coin name ankrusdt lev 5 10x entry below⭐️ 01285 target 1 0131 target 2 0134 target 3 0137 stoploss 0124 2021-09-06 03:53:36+00:00 1.0 1553267336 108 long coin name audiousdt lev 5 10x entry below⭐️ 29 target 1 294 target 2 299 target 3 306 stoploss 284 2021-09-05 18:30:25+00:00 1.0 1553267336 98 long coin name maskusdt lev 5 10x entry below⭐️ 1215 target 1 124 target 2 128 target 3 132 stoploss 118 2021-09-05 13:30:47+00:00 1.0 1553267336 89 long coin name ftmusdt lev 5 10x entry below⭐️ 1026 target 1 104 target 2 106 target 3 108 stoploss 0995 2021-09-04 17:00:27+00:00 1.0 1553267336 82 long coin name sklusdt lev 5 10x entry below⭐️ 04100 target 1 04180 target 2 04260 target 3 04360 stoploss 03980 2021-09-04 11:30:04+00:00 1.0 1553267336 70 long coin name scusdt lev 5 10x entry below⭐️ 00214 target 1 00220 target 2 00224 target 3 00230 stoploss 00207 2021-09-03 13:50:34+00:00 1.0 1553267336 63 spot call coin name waxpusdt entry level⭐️ 03450 03600 target 1 03780 target 2 03950 target 3 04200+ stoploss 03340 2021-09-03 07:20:34+00:00 1.0 1553267336 56 long coin name snxusdt lev 5 10x entry beloe⭐️ 1281 target 1 1345 target 2 1385 target 3 142 stoploss 1185 2021-09-02 13:14:57+00:00 1.0 1553267336 48 coin name vetusdt entry level⭐️ 01150 01240 target 1 01330 target 2 014 target 3 015+ stoploss 01060 2021-09-01 06:27:16+00:00 1.0 1305764641 356 everything indicates we will fly these weeks a big pump incoming for alts ‏papa eth said so and shall it be 2021-05-05 03:20:10+00:00 1.0 1305764641 86 coin that will follow enj pump today is vib… vib might go up in couple of days and by up i mean 100 minimum vib chart looks very attractive to me in this formation targets give a high return on quick slingshot movement vibbtcshorttermhittargets 2021-01-17 04:48:58+00:00 1.0 1564934263 1198 next will be coin name be ready 2021-10-30 04:18:41+00:00 1.0 1564934263 1160 pivx chart is very bullish right now im preparing chart and send in 1 minutes meanwhile buy pivx before it pump really hard 2021-10-24 16:02:56+00:00 1.0 1564934263 1154 next post will be pump coin name 2021-10-24 15:56:16+00:00 1.0 1564934263 1153 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 23 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 15:38:20+00:00 1.0 1564934263 1151 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership regards 2021-10-24 15:00:49+00:00 1.0 1564934263 1150 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership pinourchannelontop 2021-10-24 12:58:38+00:00 1.0 1564934263 1149 attention guys 5 hours biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 10:53:10+00:00 1.0 1564934263 1148 attention guys 11 hours 30 mint left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 04:35:58+00:00 1.0 1564934263 1147 2 days left until the biggest pump event of all time be prepared • date sunday october 24 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-10-22 15:13:08+00:00 1.0 1564934263 1140 attention guys we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 24 october 2021 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-21 07:18:20+00:00 1.0 1564934263 1045 ⚡️⚡️ cotiusdt ⚡️⚡️ coti just breaking out of the falling wedge pattern looks very bullish here like our previous signals we are expecting this coin to pump very hard 2021-10-05 04:39:51+00:00 1.0 1564934263 975 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-10-02 13:14:16+00:00 1.0 1564934263 936 next will be coin name be ready 2021-10-01 07:13:04+00:00 1.0 1564934263 880 next will be coin name be ready 2021-09-29 10:22:39+00:00 1.0 1564934263 784 next will be coin name be ready 2021-09-19 11:35:31+00:00 1.0 1564934263 758 next will be coin name be ready 2021-09-16 10:52:30+00:00 1.0 1564934263 746 next will be coin name be ready 2021-09-15 07:21:14+00:00 1.0 1564934263 728 next will be coin name be ready 2021-09-12 12:59:32+00:00 1.0 1564934263 681 next will be coin name be ready 2021-09-06 09:56:03+00:00 1.0 1564934263 671 next will be coin name be ready 2021-09-03 05:58:50+00:00 1.0 1564934263 663 next will be coin name be ready 2021-09-02 06:51:49+00:00 1.0 1564934263 622 next will be coin name be ready 2021-09-01 03:50:03+00:00 1.0 1564934263 618 next vip titanic pump signal is coming soon in 15 30 mins stay tuned 2021-08-31 14:32:08+00:00 1.0 1564934263 597 next will be coin name be ready 2021-08-30 13:55:43+00:00 1.0 1564934263 572 next will be coin name be ready 2021-08-29 10:41:52+00:00 1.0 1564934263 562 next will be coin name be ready 2021-08-29 09:31:15+00:00 1.0 1564934263 532 next will be coin name be ready 2021-08-28 14:00:11+00:00 1.0 1564934263 521 next will be coin name be ready 2021-08-28 12:37:27+00:00 1.0 1564934263 462 i will give you coin pump in 30 mins it will pump hard stay tuned 2021-08-25 13:36:18+00:00 1.0 1564934263 412 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 1hours 15 minutes open your binance future account and stay online ✅ 2021-08-23 12:45:41+00:00 1.0 1564934263 389 special attention you have 45 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 45 mins left there we go 2021-08-22 12:17:52+00:00 1.0 1564934263 375 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-22 07:30:36+00:00 1.0 1564934263 353 special attention you have 25 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 25 mins left there we go 2021-08-21 16:05:05+00:00 1.0 1564934263 297 special attention you have 25 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 25 mins left there we go 2021-08-17 04:35:22+00:00 1.0 1564934263 281 all my signal get boom get ready for a big boom today it will pump hard by whales i will send in 10 minutes 2021-08-16 17:32:16+00:00 1.0 1564934263 266 next will be coin name be ready 2021-08-16 15:58:26+00:00 1.0 1564934263 259 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 10 minutes open your binance future account and stay online ✅ 2021-08-16 14:25:29+00:00 1.0 1564934263 227 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-14 14:31:04+00:00 1.0 1564934263 213 dear everyone pump annoucement exchange binance international date 14082021 saturday time 2 gmt the market condition for a pump is more than perfect lots of new people getting into crypto keep inviting ❤️ 2021-08-13 21:18:18+00:00 1.0 1564934263 197 attention guys 45minutes left biggest special pump signal is coming today we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance 2021-08-11 13:14:40+00:00 1.0 1564934263 171 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-06 13:15:30+00:00 1.0 1564934263 165 30 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-08-05 16:18:16+00:00 1.0 1564934263 118 iotausdt 30 m update buy signal looks great on iota chart 30m tf falling wedge printeding on iota breakout + nicely retest done low risk and high reword now moon time • now it is ready to pump • buy hold a bag of it • should hard pump soon 2021-07-29 16:24:52+00:00 1.0 1564934263 86 5 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-07-25 15:43:38+00:00 1.0 1564934263 82 4 hours 30 minutes remaining until the big pump on binance 2021-07-25 11:30:21+00:00 1.0 1564934263 76 the day has arrived 12 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 300 target this time possibly even higher if we can manage to do 40 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-25 04:01:20+00:00 1.0 1564934263 66 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 400 gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-07-22 17:31:30+00:00 1.0 1564934263 51 announcement members we will provide you the strong tafa based future spot call in less than 10 minutes transfer your fundsusdt and be ready 2021-07-21 14:51:07+00:00 1.0 1564934263 48 4 days remaining until our big pump on binance 2021-07-20 20:24:47+00:00 1.0 1564934263 41 7 days remaining until our big pump on binance 2021-07-18 11:25:05+00:00 1.0 1564934263 34 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 400 gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 10 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-07-16 02:48:41+00:00 1.0 1564934263 27 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 400 gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 10 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-07-15 04:56:16+00:00 1.0 1564934263 18 welcome guys we are from mega pump today and we are forming the biggest pump team in asia the first pump will be announced soon and promises to be full of anticipation china mega pump cz binance 2021-07-14 12:55:29+00:00 1.0 1486981201 3044 btc crossed 55500 more than 3000 pump within 15 minutes 2021-10-06 13:21:46+00:00 1.0 1486981201 2443 5 minutes left are you ready 2021-08-28 10:05:01+00:00 1.0 1486981201 2405 5 minutes left are you ready 2021-08-26 08:55:01+00:00 1.0 1486981201 2359 10 minutes left are you ready 2021-08-24 12:20:02+00:00 1.0 1486981201 2032 premium members earned because in premium i gave the coin name 2 min before the pump join fast akashrock7 2021-08-12 09:15:38+00:00 1.0 1486981201 1608 the coin we have picked to pump today is ghd ghd is looking perfect for a pump right now 2021-07-06 15:00:01+00:00 1.0 1486981201 1605 15 hr left until our pump on hotbit our target is 5000 dont sell fast and dont miss big profit arscryptocalls 2021-07-06 14:31:17+00:00 1.0 1486981201 1604 pump announcement date tuesday 06 july ⏰ time 830 pm ist 1500 gmt exchange hotbitio pair usdt advantage free for all ⭕ no pre buying no pre pump we decided to pump earlier because all the coins are at an amazing price low with the current market condition we will be able to make a profit of +500 or even more 2021-07-06 12:23:37+00:00 1.0 1486981201 37 aion pumped little bit but in this pump of btc only some alts coin are pumping 2021-02-09 01:48:17+00:00 1.0 1340377094 8180 this is an exchange i had with someone in free chat all because him and the original shit bag pump poster worked together to try and trap our members all while no admins was in the free chat for 1520 minutes but sir info came into the chat at the perfect time first guy instant ban second guy embarrassed him and his nonsense “analsys” of the coin you tried to pump learn ta and make your own profit ⚔️⚔️⚔️ to all of you “groups” and so called amazing “ta channels” do not come into cw to attempt at getting our members to buy into your bullshit pump and dump cw is 100 true crypto family we do not get involved in any pump and dump schemes and for you channels that actually do these pump and dumps where the fuck are your morals karma always comes and bites people in the ass for doing shady things in life what i will close with if you were actually any good at ta you wouldnt need to trap your own member with a pd because if you were any good at ta you would be able to make your own profit in trading anything or any type of market or so it just shows that a zero morals b you dont care for your own community members c truly have zero ta skills most likely copy and pasting if you ever want real ta and fa for your members have them join the only true crypto channel in this space wearewhisperers wearecrypto wearefamily yours truly the only altslayer in this market info 2021-02-19 16:22:47+00:00 1.0 1340377094 6322 take a look other channel tried to pump it today and failed because our signal was already up 20 at that time what is different about coin whisperers from every other channel when we gain profit its not on a single 5 minute candle that is instantly erased we do not need to pump a coin to trap our own members that is what you would call disgusting we are here to help you make profit not take your btc away you are in the right channel the only channel you need ask in free chat ask the new members who joined breakout today what their experience has been there is nobody else like us in this space we are often copiedimitated but there is only 1 crypto info and he is right here ‍♂️ the altcoin slayer the bitcoin predicternot a reactor the last 5 days i have given every single move bitcoin would make and it followed my path like a cat chasing a rat so stop waiting start earning profit 1 signal could have made you 70 already today yesterday we showed you 200 on steem 7000 spot on target again not another channel even comes close from altcoins to btc you join us in breakout and your head will spin wearecrypto wearefamily wearethewhisperers lets gooooooooo 2020-03-20 01:42:22+00:00 1.0 1340377094 6079 5 minutes time and 2 targets slammed in iotx wamboooooooo 2020-02-11 16:51:42+00:00 1.0 1340377094 4624 going to share a breakout signal given in breakout a couple hours ago sharing it with our free chat because it is a coin that keeps on giving profit over the last month and last explosive move on this coin went 80 plus stats below on what breakout and freewhen shared with free have hit over the last 7 weeks coin went 2x 100 profit 1st flight next pump on it went just under 2x100 profit 2nd flight next pump went 3x plus 200+ profit on it 3rd flight latest in 5 days time it pushed up 80 4th flight can you guess the coin well join the chat below because signal is being given in roughly 60 seconds and this isnt a “pump signal we dont get involved in pump and dumps its just a coin that keeps on giving profit the last month + join the chat 2019-10-02 15:54:30+00:00 1.0 1340377094 2378 hey coin whisperers family we told you all that we had very big things cooking for 2019 well not only are we in the process of our native iosandroid app for our premium signals and a dedicated chat we have also been working on something special along with our premium signalfree signal channels we are now opening up our “breakout” channel for coins ready to run and make quicker profits then staying in a signal for multiple days to a couple of weeks the goal is to aim for 10 plus 10 would be for a very quick move in under 12 hours we have had amazing breakout calls over the last few weeks these all hit under 24 hours and most within 612 hours results below vibe called at 765 ran to 1800+ for 140 profit tnt given at 340 ran to 640 for 94 profit dock was a buy at 235 ran to 353 for 50 profit lend given at 200 ran to 260 a quick 30 dnt given at 290 ran to 379 for 30 profit steem given at 715 and hit 970 for 35 profit bqx given at 2750 ran to 5400 for 97 profit rcn given at 310 ran to 366 for 20 profit bnb given at 001600 and hit 001820 giving 15 quick profit qkc given very fast when listed on upbit at 1110 and hit 1388 within 45 minutes and 1455 was the top for 40 within 4 hours this new and amazing breakout channel is for anyone looking to be involved in the market at what can be a much faster pace environment and making very quick profits share it with your friends and have them join the coin whisperer family and start earning profits today membership details will be updated this weekend 2019-01-19 09:56:03+00:00 1.0 1340377094 1394 rcn looks like pump is coming given in premium almost an hour ago 2018-10-03 18:11:29+00:00 1.0 1340377094 1115 30 minutes left 2018-09-21 06:31:48+00:00 1.0 1167785945 11754 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact cryptopartner100 for premium membership 2022-01-19 09:29:34+00:00 1.0 1167785945 4549 elf hit 1479 finally all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 33 to know next pump coin name ☎️ contact kevintrader 2020-09-10 13:29:25+00:00 1.0 1167785945 4501 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact kevintrader for premium membership 2020-09-09 15:01:06+00:00 1.0 1167785945 4496 next pump coin name shared in premium channel 2020-09-09 14:55:12+00:00 1.0 1167785945 4138 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact viptrainer100 for premium membership 2020-08-31 15:46:48+00:00 1.0 1167785945 3649 qtum result 2nd target achieved in just 37 minutes ✅✅ one more huge profit 38 using 5x leverage amazing calls by our team to know next pump coin name ☎️ contact viptrainer100 2020-08-14 10:24:28+00:00 1.0 1167785945 3187 fio result 2nd target achieved in just 1 hour ✅✅ one more very quick huge profit 28 to know next pump coin name ☎️ contact viptrainer100 2020-07-31 10:58:12+00:00 1.0 1167785945 3064 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact viptrainer100 2020-07-28 15:33:29+00:00 1.0 1167785945 2975 next post will be coin name 2020-07-24 16:57:03+00:00 1.0 1167785945 2974 14 minutes left to pump on binance 2020-07-24 16:47:58+00:00 1.0 1167785945 2972 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact viptrainer100 2020-07-24 16:41:33+00:00 1.0 1167785945 2969 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact viptrainer100 2020-07-24 12:59:11+00:00 1.0 1167785945 2957 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact viptrainer100 2020-07-24 07:38:13+00:00 1.0 1167785945 2932 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact viptrainer100 for premium membership 2020-07-23 15:13:31+00:00 1.0 1167785945 2921 sys hit 1655 finally all targets achieved in just 2 hour 8 minutes ✅✅✅✅ huge quick profit 56 next breakout pump signal will be shared in few hours only in premium channel hurry up ☎ contact viptrainer100 2020-07-23 13:31:15+00:00 1.0 1167785945 2884 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact viptrainer100 for premium membership 2020-07-22 17:36:12+00:00 1.0 1167785945 2493 15 minutes left to pump on binance 2020-07-07 15:50:37+00:00 1.0 1167785945 2492 4 hour left to pump on binance to know coin name earlier join premium ☎ contact viptrainer100 2020-07-07 12:07:31+00:00 1.0 1167785945 2450 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact viptrainer100 2020-07-04 17:04:52+00:00 1.0 1167785945 2440 pump coin name gvt 2020-07-04 16:06:29+00:00 1.0 1167785945 2439 15 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact viptrainer100 2020-07-04 15:56:05+00:00 1.0 1167785945 2118 pump coin name evx 2020-06-24 16:12:44+00:00 1.0 1167785945 2117 30 minutes left to pump on binance 2020-06-24 15:32:31+00:00 1.0 1167785945 2072 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact viptrainer100 2020-06-24 03:30:30+00:00 1.0 1167785945 1834 10 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact viptrainer100 2020-06-15 15:52:49+00:00 1.0 1167785945 1778 pump result qsp start price 210 weve reached 299 huge quick profit 42 to know next pump coin name contact viptrainer100 for premium membership 2020-06-14 02:27:46+00:00 1.0 1167785945 1771 pump coin name qsp 2020-06-13 16:28:21+00:00 1.0 1167785945 1668 pump coin name via 2020-06-10 16:00:13+00:00 1.0 1167785945 1667 next post will be coin name 2020-06-10 15:56:47+00:00 1.0 1167785945 1666 about 5 minutes left to pump on binance 2020-06-10 15:56:40+00:00 1.0 1167785945 1450 pump coin name ctxc 2020-06-03 16:04:31+00:00 1.0 1167785945 1449 next post will be coin name 2020-06-03 15:57:07+00:00 1.0 1167785945 1448 5 minutes left to pump on binance 2020-06-03 15:56:46+00:00 1.0 1494273858 3573 today with huge news so alpha big pump soon buy and wait result 2021-11-30 10:15:49+00:00 1.0 1494273858 3505 arpa big news stay tuned and wait big pump 2021-11-25 07:06:14+00:00 1.0 1494273858 3393 web3 coins pump —— arpa looking so dip it will be next coin pumped hard 2021-11-15 12:56:13+00:00 1.0 1494273858 3367 be ready big pump is coming 2021-11-14 06:15:23+00:00 1.0 1494273858 3315 more buy lit here get ready to big pump 2021-11-11 13:28:50+00:00 1.0 1494273858 3250 dont miss big pump audio 2021-11-08 08:05:25+00:00 1.0 1494273858 3215 nkn ready to big pump 2021-11-04 08:26:53+00:00 1.0 1494273858 3209 ata ready to big pump 2021-11-04 06:47:32+00:00 1.0 1494273858 3132 nu big pump lets go 2021-10-31 16:28:18+00:00 1.0 1494273858 3131 buy back full ur bag nu ready to big pump 2021-10-31 16:23:51+00:00 1.0 1494273858 2854 c98 big news means big pump incoming ahead 2021-10-14 12:11:32+00:00 1.0 1494273858 2706 market looks to pump now good time to buy alts stay tuned 2021-10-08 07:51:11+00:00 1.0 1494273858 2684 time to buy coin web3 skl whales will pump it soon 2021-10-06 16:24:53+00:00 1.0 1494273858 2653 buy buy buy and buy power by china mega pump 2021-10-05 13:49:27+00:00 1.0 1494273858 2465 we will send a big signal in 5 minutes 2021-09-30 03:20:21+00:00 1.0 1494273858 2125 buy and hold icp it will pump like rlc 2021-09-15 17:34:08+00:00 1.0 1494273858 1863 make sure 100 buy ctk now tomorrow it will pump hard 2021-09-05 13:14:09+00:00 1.0 1494273858 1823 next pump calling name unfi 2021-09-04 12:38:04+00:00 1.0 1494273858 1735 ont will pump like all my other coins buy and hold 2021-09-02 13:55:21+00:00 1.0 1494273858 1654 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 30 mins left to our big pump 2021-08-31 14:30:02+00:00 1.0 1494273858 1653 less than 1h to our big pump today 2021-08-31 14:00:06+00:00 1.0 1494273858 1643 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 31082021 tuesday time 1500h gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-08-31 11:20:21+00:00 1.0 1494273858 1487 i will give you coin pump in 15 mins it will pump hard stay tuned 2021-08-25 13:15:05+00:00 1.0 1494273858 1415 gtc broke out with a massive volume today whales will pump this coin 2021-08-23 04:59:52+00:00 1.0 1494273858 1378 keep looks like strong pump buy before it pump hard 2021-08-21 16:12:45+00:00 1.0 1494273858 1306 skl broke out on 4 hour expect a big pump incoming 2021-08-19 17:59:01+00:00 1.0 1494273858 1205 all my signal get boom get ready for a big boom today it will pump hard by whales i will send in 30 minutes 2021-08-16 06:25:03+00:00 1.0 1494273858 1168 unfi unusual buying activity 487m usdt in 10 minutes 10 l 1360600000 ❇️ 443 24h vol 534m usdt last signal 7 hours ago 37d big man buying unfi keep buying and pump it up 2021-08-14 15:11:10+00:00 1.0 1494273858 440 what coin can be pump like lit stay tuned 2021-07-14 12:17:38+00:00 1.0 1494273858 335 buy dip and dont sell early target 200500 whales starting pump now 2021-07-05 13:04:11+00:00 1.0 1494273858 333 buy nkn big pump 2021-07-05 13:00:00+00:00 1.0 1494273858 320 this time is good to pump only so we have pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 05072021 monday time 1300 gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-07-04 14:06:17+00:00 1.0 1494273858 262 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 29062021 tuesday time 1300 gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-06-28 14:16:55+00:00 1.0 1494273858 261 our coin was prepumped its so bad so we decided to postpone this pump stay tuned further information will be announced soon 2021-06-28 13:00:38+00:00 1.0 1494273858 178 transfer money to spot and wait ready big pump today 2021-06-21 06:37:40+00:00 1.0 1494273858 158 pump annoucement after the last 2 pumps stmx 100200 blz 230460 profit im happy to announce exchange binance futures international date 20062021 sunday time 1000h gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team cz binance 2021-06-19 16:35:56+00:00 1.0 1494273858 144 to celebrate 55000 followers in just a few days were going to hold a big event total prize value up to 10000 china mega pump cz binance 2021-06-19 05:45:16+00:00 1.0 1494273858 141 check call dodo just few mins and we made 50100 profit its just normal signal we will annoucement big pump soon china mega pump cz binance 2021-06-18 08:30:04+00:00 1.0 1494273858 137 its normal signal + big news dont rush to buy and sell keep buy in my buy zone and wait china mega pump cz binance 2021-06-18 07:47:06+00:00 1.0 1494273858 125 look at the picture and you can see we sent coins here earlier than all the other channels and almost no prepump with more than 60m vol was generated and besides nkn was on top 1 grow today more than 130260 profit with lev x1020 we firmly believe that it is really powerful and most of my members here have the best possible profit and especially in times when the market is not as good as it is now a pump like this is a great success china mega pump cz binance 2021-06-17 12:35:47+00:00 1.0 1494273858 112 special attention you have 5 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 5 mins left there we go 2021-06-17 11:55:03+00:00 1.0 1494273858 109 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 1h left to our pump galaxy 2021-06-17 11:00:07+00:00 1.0 1494273858 105 pump annoucement after the last 2 pumps stmx 100200 blz 230460 profit im happy to announce exchange binance futures international date 17062021 thursday time 1200h gmt remember it no prepump very important no dump no guess coin our pump we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team cz binance 2021-06-17 06:03:46+00:00 1.0 1494273858 100 like i said we sent the pump signal a little earlier than all the other channels with over 60 million usd we made it grow 220440 with leverage x1020 as announced look at this picture im sure you feel great im very happy about this and well be sure to bring more china mega pump cz binance 2021-06-16 13:12:29+00:00 1.0 1494273858 88 buy blz fast china mega pump cz binance 2021-06-16 11:29:59+00:00 1.0 1494273858 86 share this post and ill send the coin here a little sooner china mega pump cz binance 2021-06-16 11:25:58+00:00 1.0 1494273858 82 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 1h left to our pump galaxy 2021-06-16 10:31:59+00:00 1.0 1494273858 80 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 16062021 wednesday time 1130h gmt remember it no prepump very important no dump no guess coin our pump we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team cz binance 2021-06-16 05:05:35+00:00 1.0 1494273858 73 read i told everyone many time i dont want any of my members to suffer so i want all to be fair i hope those who believe and wait for my pump are not upset by the cancellation of this pump i do this to protect you i hope you understand china mega pump cz binancepump 2021-06-15 11:38:25+00:00 1.0 1494273858 71 the whole market is going up i think a lot of people are anticipating the coin we pump and buy it in advance i want to remind you again never to guess and buy anything before i post it here because if it violates rule number 1 prepump we will immediately cancel it read the instructions carefully and prepare well 2021-06-15 11:24:23+00:00 1.0 1494273858 68 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 1h left to our pump galaxy 2021-06-15 10:30:03+00:00 1.0 1494273858 61 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 15062021 tuesday time 1130h gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-06-15 05:07:36+00:00 1.0 1494273858 58 surely i cant please everyone but im glad that most of the people here are feeling happy china mega pump 2021-06-14 16:58:58+00:00 1.0 1494273858 56 first pump result look at the picture no prepump this is very important we pumped usdt pair and we made it more than 100 profit with lev x10 if you are a professional trader i think you understand how great it is and with more than 50m we have made it not small and i know it is extremely profitable for a lot of people some others it ended but you were wrong stmx will continue to be pumped by us in the near future and like i said dont sell early the next pump will be coming soon and im sure it will be much better this time china mega pump 2021-06-14 14:53:09+00:00 1.0 1494273858 22 well guys i am pleased to inform you that my team has added another mega whale from korea to join today he will bring us the most amazing pump china mega pump cz binance 2021-06-14 06:08:18+00:00 1.0 1494273858 21 less than 10h to big pump 2021-06-14 03:06:51+00:00 1.0 1494273858 13 i was really surprised at the rapid growth rate i will give everyone the best pump possible lets ready big pump tomorrow with asian team china mega pump cz binance 2021-06-13 16:02:09+00:00 1.0 1494273858 11 dear everyone pump annoucement exchange binance international date 14062021 monday time 13h gmt the market condition for a pump is more than perfect lots of new people getting into crypto keep inviting ❤️ 2021-06-13 14:01:30+00:00 1.0 1494273858 8 we are setting big pump tomorrow if everyone ready lets us know ur idea 2021-06-13 12:13:44+00:00 1.0 1494273858 3 welcome guys we are from china and we are forming the biggest pump team in asia the first pump will be announced soon and promises to be full of anticipation china mega pump cz binance 2021-06-13 07:46:28+00:00 1.0 1396342994 6993 coin signals for kucoin exchange follow us for best pump tracking service on kucoin ✅ signal low level for max profit ✅ high accuracy 100 ✅ signal before pump ✅ short term and quick profit signals only ✅ high end profit in short time trade with us for high end profit join fast link is open for few minutes only +dna5vebdq0mwmdu1 2022-01-13 04:47:05+00:00 1.0 1396342994 5580 hello everyone todays our mega short term mega profit kucoin gem call will be posted at 300 pm gmt 40 minutes left stay tuned wait for our signal 2021-01-09 14:20:01+00:00 1.0 1396342994 5488 hello everyone todays our mega short term mega profit kucoin gem call will be posted at 200 pm gmt 38 minutes left stay tuned 2020-11-21 13:22:41+00:00 1.0 1396342994 4694 rlc is one of pump coin from our list of pump coins reason why its in our list could be seen clearly can you calculate profit pump coins are recommended to buy low level for insane gain 2020-07-18 06:05:08+00:00 1.0 1396342994 4216 ​ ama announcement are you excited for upcoming ama with newscryptoio team✨ we are hosting upcoming ama with newscryptoio honble mr aljaž kanalec head of pr department will be our honble guest to create awareness regarding newscrypto platform host cryptoprofitcoach guest mr aljaž kanalec venue cryptoprofitchatbox date 170620 day wednesday time 5 pm gmt ✨✨major highlights ✨✨ ✅ project brief and introduction ✅ discussion on plans and future strategies ✅ market strategies ✅ high chance of major announcementnews during session ✅ discussion on nwc coin ✅ q a session with participants ✅ 10 best question raiser will be picked up by our honble guest will be awarded 25 worth nwc tokens ✅ guest has discretionary power to answer questions raised by participants ✅ 10 best question raisers will be awarded free btc from 100 pool by cryptoprofitcoach ✅ more chance of winning total 20 winners will be chosen ❌ avoid asking regarding price risingprice related questions ✅ ask anything regarding newscryptoio and nwc coin 2020-06-15 04:53:06+00:00 1.0 1396342994 3921 theta our portfolio coin massive pump thats why our portfolio coin always accumulate portfolio coin at low level 85 profit 2020-05-20 14:23:10+00:00 1.0 1396342994 3872 tnt our portfolio coin massive pump thats why our portfolio coin always accumulate portfolio coin at low level 88 profit 2020-05-07 07:04:02+00:00 1.0 1396342994 2586 buy coin bnt binance ▶️ tradeindexsymbolbntbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold 2019-09-07 17:01:02+00:00 1.0 1396342994 1962 coin of the month announcement exchange binance today 01052019 4 pm gmt we will choose two coins to get confirmed profits 2019-05-01 15:35:18+00:00 1.0 1396342994 1955 coin of the month announcement exchange binance today 01052019 4 pm gmt we will choose two coins to get confirmed profits 2019-05-01 09:08:24+00:00 1.0 1396342994 1902 coin to hold is soul exchange kucoin market soulbtc btc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-21 18:00:33+00:00 1.0 1396342994 1898 hii folks ✋✋ get ready for the mega hold call exchange kucoin time 6 pm gmt today 21 apr the selected coin give u x 2 x 3 profit due to big upcoming news in this month we will reveal coin name with all upcoming big news so be ready pin on top our channel n set alert stay turned with your kucoin login 2019-04-21 16:39:27+00:00 1.0 1396342994 1559 less than 5 hours and 13 minutes remaining for our todays pump it will be a news based moon signal which will help you to make good profit lets hold until the fomos coming in and make profit staytuned 2019-03-15 09:48:42+00:00 1.0 1396342994 1558 dear members today at 330pm gmt we will going to share a news based moon signal date 15th march time 330pm gmt exchange binance info the signal will be freeforall no time advantage for anyone it will achieve all targets in short time frame‼️ the signal will be based on news so can go for 2x to 3x in shorter time frames 2019-03-15 09:18:23+00:00 1.0 1396342994 1466 hey folks‼ important announcement on 5th march at 430 pm gmt we are organising special signal called binance titanic signal the binance titanic signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 100150 profit areas our recent binancetitanicsignal results 1st bnt around 85 2nd storj around 102 3rd hold for some hours let the fomo arrive into it 2019-03-04 17:07:52+00:00 1.0 1396342994 1409 buy coin bqx binance ▶️ tradeindexsymbolbqxbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 10 20 above profit 2019-02-24 17:00:05+00:00 1.0 1396342994 1316 hey folks ‼ just a quick announcement here regarding the next binance titanic signal we have organised our next binance titanic signal on feb 4th at 430 pm gmt stay tuned here remember the date and time given above 2019-02-04 15:03:16+00:00 1.0 1396342994 1310 hey folks ‼ just a quick announcement here regarding the next binance titanic signal we have organised our next binance titanic signal on feb 4th at 430 pm gmt stay tuned here remember the date and time given above 2019-02-01 09:15:14+00:00 1.0 1396342994 1290 this binance titanic signal will be posted here in vip 1 min earlier than free channel be prepared public channel will receive the coin name at exactly 430 pm gmt but you guys will get that coin name at 429 pm gmt 2019-01-26 16:01:06+00:00 1.0 1396342994 1229 pump results coin was wtc low 21021 high 40001 notewe always repump our coin 2019-01-04 07:26:05+00:00 1.0 1396342994 1224 the coin to pump is wtc exchange yobitnet target +300 market wtcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-03 17:00:40+00:00 1.0 1396342994 1222 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-03 16:55:15+00:00 1.0 1396342994 1221 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-03 16:50:11+00:00 1.0 1396342994 1220 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-03 16:40:08+00:00 1.0 1396342994 1219 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-03 16:30:09+00:00 1.0 1396342994 1217 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 16:00:14+00:00 1.0 1396342994 1214 ❗️guyz as market is in uptrend we are going to share our big call today at 345pm gmt undervalued solid gem which can give you 30 to 50 profit hodl requirement log in your binance account and be ready at 345pm gmt exchange binance time 345 pm gmt 915 pm ist stay tuned 2019-01-03 15:20:52+00:00 1.0 1396342994 1213 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-03 15:00:15+00:00 1.0 1396342994 1212 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-03 13:00:20+00:00 1.0 1396342994 1211 ℹ coin signal information ℹ date thursday 030119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-03 11:00:25+00:00 1.0 1396342994 1210 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 030119 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-03 10:30:27+00:00 1.0 1396342994 1208 best signal of the week the coin is brd target 1 6350 target 2 6650 target 3 7200++ buy and hold tight till target achieve 2019-01-02 15:46:18+00:00 1.0 1396342994 1203 pump results coin was tnt start 310 reached 510 notewe always repump our coin 2019-01-02 05:54:32+00:00 1.0 1396342994 1199 the coin to pump is tnt exchange yobitnet target +300 market tntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-01-01 17:00:36+00:00 1.0 1396342994 1197 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-01-01 16:55:06+00:00 1.0 1396342994 1196 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-01-01 16:50:06+00:00 1.0 1396342994 1195 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-01-01 16:40:06+00:00 1.0 1396342994 1194 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-01-01 16:30:32+00:00 1.0 1396342994 1192 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 16:00:36+00:00 1.0 1396342994 1191 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-01-01 15:00:22+00:00 1.0 1396342994 1189 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-01 13:00:07+00:00 1.0 1396342994 1187 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-01-01 10:00:22+00:00 1.0 1396342994 1186 ℹ coin signal information ℹ date tuesday 010119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-01-01 08:00:32+00:00 1.0 1396342994 1185 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 010119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-01-01 05:54:17+00:00 1.0 1396342994 1176 pump results coin was bnt low 00001400 reached 000017849 heavy volume created 11 btc heavy buying selling occured in our coinwhich is unexpected n unpredictible preventing it 2018-12-29 18:35:31+00:00 1.0 1396342994 1170 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-29 17:00:36+00:00 1.0 1396342994 1168 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-29 16:55:13+00:00 1.0 1396342994 1167 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-12-29 16:50:28+00:00 1.0 1396342994 1166 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-12-29 16:40:58+00:00 1.0 1396342994 1165 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-12-29 16:30:21+00:00 1.0 1396342994 1164 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 16:00:27+00:00 1.0 1396342994 1163 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-12-29 15:00:27+00:00 1.0 1396342994 1162 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-12-29 13:00:07+00:00 1.0 1396342994 1161 ℹ coin signal information ℹ date saturday 29122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-29 10:30:24+00:00 1.0 1396342994 1160 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29122018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-29 09:04:34+00:00 1.0 1396342994 1156 pump results x2 coin was qkc open 000000920 reached 000001886 note we will always pump our coins againso always trade with us for max profit 2018-12-28 17:16:03+00:00 1.0 1396342994 1151 the coin to pump is qkc exchange yobitnet target +500 market qkcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-28 16:00:19+00:00 1.0 1396342994 1149 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-28 15:55:23+00:00 1.0 1396342994 1062 pump results coin was brd started 000005299 reached 000005695 vol 16 btc buying still going on 2018-12-22 18:00:47+00:00 1.0 1396342994 1056 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2018-12-22 16:55:09+00:00 1.0 1396342994 1055 ℹ️ 10 minutes ℹ️ get ready with your binance account coin is low level buy with us 2018-12-22 16:50:17+00:00 1.0 1396342994 1054 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-12-22 16:40:15+00:00 1.0 1396342994 1053 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-12-22 16:30:12+00:00 1.0 1396342994 1052 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 16:00:16+00:00 1.0 1396342994 1050 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 15:00:12+00:00 1.0 1396342994 1048 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2018-12-22 11:00:09+00:00 1.0 1396342994 749 go hit 1077as we signalled before pump n signal to buy cheap as possible if u followed profit is urs leaked paid signal 2018-11-05 18:11:16+00:00 1.0 1396342994 613 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:44+00:00 1.0 1396342994 608 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:21+00:00 1.0 1396342994 607 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:20+00:00 1.0 1396342994 606 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:14+00:00 1.0 1396342994 605 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:08+00:00 1.0 1396342994 604 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:15+00:00 1.0 1396342994 603 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:21+00:00 1.0 1396342994 602 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:13+00:00 1.0 1396342994 601 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:03+00:00 1.0 1396342994 599 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:04+00:00 1.0 1396342994 598 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:21+00:00 1.0 1396342994 597 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:03+00:00 1.0 1396342994 596 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:54:54+00:00 1.0 1396342994 595 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:23+00:00 1.0 1396342994 594 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:42+00:00 1.0 1396342994 585 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:39+00:00 1.0 1396342994 580 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:06+00:00 1.0 1396342994 579 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:11+00:00 1.0 1396342994 578 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:03+00:00 1.0 1396342994 577 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:05+00:00 1.0 1396342994 576 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:20+00:00 1.0 1396342994 575 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:34+00:00 1.0 1396342994 574 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:15+00:00 1.0 1396342994 572 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:06+00:00 1.0 1396342994 571 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:06+00:00 1.0 1396342994 570 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:07+00:00 1.0 1396342994 569 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:15+00:00 1.0 1396342994 568 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 09:33:32+00:00 1.0 1396342994 567 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:21+00:00 1.0 1396342994 566 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:25:53+00:00 1.0 1396342994 565 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:09+00:00 1.0 1396342994 548 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:00+00:00 1.0 1396342994 544 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:39+00:00 1.0 1396342994 542 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:04+00:00 1.0 1396342994 541 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:02+00:00 1.0 1396342994 540 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:02+00:00 1.0 1396342994 539 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:21+00:00 1.0 1396342994 538 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:04+00:00 1.0 1396342994 537 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:11+00:00 1.0 1396342994 535 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:08+00:00 1.0 1396342994 534 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:06+00:00 1.0 1396342994 533 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:06+00:00 1.0 1396342994 532 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:03+00:00 1.0 1396342994 531 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:22:49+00:00 1.0 1396342994 530 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:20:59+00:00 1.0 1396342994 522 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:44+00:00 1.0 1396342994 516 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:11+00:00 1.0 1396342994 514 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:07+00:00 1.0 1396342994 513 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:08+00:00 1.0 1396342994 512 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:03+00:00 1.0 1396342994 511 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:04+00:00 1.0 1396342994 510 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:07+00:00 1.0 1396342994 506 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:13+00:00 1.0 1396342994 505 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:18+00:00 1.0 1396342994 504 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:10+00:00 1.0 1396342994 503 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:11+00:00 1.0 1396342994 502 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:15+00:00 1.0 1396342994 500 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:05+00:00 1.0 1396342994 499 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:03+00:00 1.0 1396342994 498 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:47+00:00 1.0 1396342994 494 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:22+00:00 1.0 1396342994 492 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:06+00:00 1.0 1396342994 491 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:02+00:00 1.0 1396342994 490 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:03+00:00 1.0 1396342994 489 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:05+00:00 1.0 1396342994 488 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:09+00:00 1.0 1396342994 487 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:12+00:00 1.0 1396342994 486 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:18+00:00 1.0 1396342994 485 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:22+00:00 1.0 1396342994 484 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:18+00:00 1.0 1396342994 482 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:08+00:00 1.0 1396342994 481 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:10+00:00 1.0 1396342994 480 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:46+00:00 1.0 1396342994 478 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:01:53+00:00 1.0 1396342994 475 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:20+00:00 1.0 1396342994 469 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 16:59:58+00:00 1.0 1396342994 468 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:02+00:00 1.0 1396342994 467 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:02+00:00 1.0 1396342994 466 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:04+00:00 1.0 1396342994 465 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:04+00:00 1.0 1396342994 463 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:41+00:00 1.0 1396342994 462 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:08+00:00 1.0 1396342994 461 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:12+00:00 1.0 1396342994 460 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:05+00:00 1.0 1396342994 459 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:10+00:00 1.0 1396342994 458 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:07+00:00 1.0 1396342994 457 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:02+00:00 1.0 1396342994 456 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:08+00:00 1.0 1396342994 454 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:06+00:00 1.0 1396342994 453 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:52:58+00:00 1.0 1396342994 447 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:23+00:00 1.0 1396342994 445 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:07+00:00 1.0 1396342994 444 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:02+00:00 1.0 1396342994 443 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:05+00:00 1.0 1396342994 442 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:38+00:00 1.0 1396342994 441 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:12+00:00 1.0 1396342994 440 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:17+00:00 1.0 1396342994 439 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:28+00:00 1.0 1396342994 438 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:11+00:00 1.0 1396342994 437 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:14+00:00 1.0 1396342994 436 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:06+00:00 1.0 1396342994 435 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:05+00:00 1.0 1396342994 434 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:19+00:00 1.0 1396342994 433 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:28+00:00 1.0 1396342994 422 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:11+00:00 1.0 1396342994 417 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:17+00:00 1.0 1396342994 415 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:08+00:00 1.0 1396342994 413 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:08+00:00 1.0 1396342994 412 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:08+00:00 1.0 1396342994 411 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:11+00:00 1.0 1396342994 410 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:33+00:00 1.0 1396342994 409 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:38+00:00 1.0 1396342994 408 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:11+00:00 1.0 1396342994 407 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:19+00:00 1.0 1396342994 406 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:07+00:00 1.0 1396342994 405 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 19092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:15+00:00 1.0 1396342994 403 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:38+00:00 1.0 1396342994 402 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:30+00:00 1.0 1396342994 395 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:20+00:00 1.0 1396342994 393 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:03+00:00 1.0 1396342994 392 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:03+00:00 1.0 1396342994 391 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:27+00:00 1.0 1396342994 390 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:30+00:00 1.0 1396342994 389 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:18+00:00 1.0 1396342994 388 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:09+00:00 1.0 1396342994 387 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:26+00:00 1.0 1396342994 386 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:04+00:00 1.0 1396342994 385 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:04+00:00 1.0 1396342994 384 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:02+00:00 1.0 1396342994 383 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:19+00:00 1.0 1396342994 381 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:10:49+00:00 1.0 1396342994 380 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:37:56+00:00 1.0 1396342994 372 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:06+00:00 1.0 1396342994 371 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:03+00:00 1.0 1396342994 370 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:08+00:00 1.0 1396342994 369 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:07+00:00 1.0 1396342994 368 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:17+00:00 1.0 1396342994 367 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:15+00:00 1.0 1396342994 366 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:25+00:00 1.0 1396342994 365 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:05+00:00 1.0 1396342994 364 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:28+00:00 1.0 1396342994 363 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:21+00:00 1.0 1396342994 362 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:17+00:00 1.0 1396342994 361 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:07+00:00 1.0 1396342994 360 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:18+00:00 1.0 1396342994 359 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:28+00:00 1.0 1396342994 350 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:22+00:00 1.0 1396342994 349 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:02+00:00 1.0 1396342994 348 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:02+00:00 1.0 1396342994 347 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:02+00:00 1.0 1396342994 346 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:16+00:00 1.0 1396342994 345 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:08+00:00 1.0 1396342994 344 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:19+00:00 1.0 1396342994 343 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:34+00:00 1.0 1396342994 342 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:08+00:00 1.0 1396342994 341 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:02+00:00 1.0 1396342994 340 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:07+00:00 1.0 1396342994 339 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:14+00:00 1.0 1396342994 337 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:05+00:00 1.0 1396342994 336 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:08+00:00 1.0 1396342994 332 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:18+00:00 1.0 1396342994 331 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:10+00:00 1.0 1396342994 330 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:05+00:00 1.0 1396342994 329 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:02+00:00 1.0 1396342994 328 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:04+00:00 1.0 1396342994 327 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:05+00:00 1.0 1396342994 326 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:07+00:00 1.0 1396342994 325 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:17+00:00 1.0 1396342994 324 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:14+00:00 1.0 1396342994 323 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:10+00:00 1.0 1396342994 322 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:02+00:00 1.0 1396342994 320 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:07:49+00:00 1.0 1396342994 319 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:17+00:00 1.0 1396342994 313 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:24+00:00 1.0 1396342994 312 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:05+00:00 1.0 1396342994 311 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:11+00:00 1.0 1396342994 310 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:02+00:00 1.0 1396342994 309 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:15+00:00 1.0 1396342994 308 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:19+00:00 1.0 1396342994 307 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:12+00:00 1.0 1396342994 306 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:08+00:00 1.0 1396342994 305 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:06+00:00 1.0 1396342994 304 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:06+00:00 1.0 1396342994 303 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:04+00:00 1.0 1396342994 302 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:12+00:00 1.0 1396342994 300 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:37+00:00 1.0 1396342994 299 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:33+00:00 1.0 1396342994 293 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:10+00:00 1.0 1396342994 292 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:03+00:00 1.0 1396342994 291 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:05+00:00 1.0 1396342994 290 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:05+00:00 1.0 1396342994 289 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:05+00:00 1.0 1396342994 288 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:14+00:00 1.0 1396342994 287 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:08+00:00 1.0 1396342994 286 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:38+00:00 1.0 1396342994 285 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:14+00:00 1.0 1396342994 284 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:04+00:00 1.0 1396342994 283 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:31+00:00 1.0 1396342994 282 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:39+00:00 1.0 1396342994 280 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:31+00:00 1.0 1396342994 279 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:38+00:00 1.0 1396342994 272 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:11+00:00 1.0 1396342994 271 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:02+00:00 1.0 1396342994 270 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:04+00:00 1.0 1396342994 269 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:02+00:00 1.0 1396342994 268 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:11+00:00 1.0 1396342994 267 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:15+00:00 1.0 1396342994 266 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:28+00:00 1.0 1396342994 265 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:13+00:00 1.0 1396342994 264 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:20+00:00 1.0 1396342994 263 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:06+00:00 1.0 1396342994 262 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:06:58+00:00 1.0 1396342994 261 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:35:55+00:00 1.0 1396342994 253 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:19+00:00 1.0 1396342994 252 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:08+00:00 1.0 1396342994 251 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:05+00:00 1.0 1396342994 250 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:05+00:00 1.0 1396342994 249 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:06+00:00 1.0 1396342994 248 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:10+00:00 1.0 1396342994 247 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:05+00:00 1.0 1396342994 246 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:10+00:00 1.0 1396342994 245 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:10+00:00 1.0 1396342994 244 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:12+00:00 1.0 1396342994 243 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:02+00:00 1.0 1396342994 242 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:00+00:00 1.0 1396342994 240 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:41:59+00:00 1.0 1396342994 238 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:02+00:00 1.0 1396342994 237 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:11+00:00 1.0 1396342994 236 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:02+00:00 1.0 1396342994 235 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:12+00:00 1.0 1396342994 234 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:13+00:00 1.0 1396342994 233 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:38+00:00 1.0 1396342994 232 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:08+00:00 1.0 1396342994 231 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:05+00:00 1.0 1396342994 230 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:33:54+00:00 1.0 1396342994 229 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:43+00:00 1.0 1396342994 227 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:33+00:00 1.0 1396342994 219 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:08+00:00 1.0 1396342994 218 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:02+00:00 1.0 1396342994 217 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:06+00:00 1.0 1396342994 216 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:02+00:00 1.0 1396342994 215 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:18+00:00 1.0 1396342994 214 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:11+00:00 1.0 1396342994 213 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:08+00:00 1.0 1396342994 212 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:12+00:00 1.0 1396342994 211 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:13+00:00 1.0 1396342994 210 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:03+00:00 1.0 1396342994 209 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:03+00:00 1.0 1396342994 208 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:08+00:00 1.0 1396342994 206 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:07+00:00 1.0 1396342994 199 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:15+00:00 1.0 1396342994 198 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:02+00:00 1.0 1396342994 197 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:10+00:00 1.0 1396342994 196 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:20+00:00 1.0 1396342994 195 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:18+00:00 1.0 1396342994 194 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:26+00:00 1.0 1396342994 193 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:15+00:00 1.0 1396342994 192 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:06+00:00 1.0 1396342994 191 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:02+00:00 1.0 1396342994 190 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:03+00:00 1.0 1396342994 189 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:07+00:00 1.0 1396342994 188 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:12+00:00 1.0 1396342994 186 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:10+00:00 1.0 1396342994 180 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:14+00:00 1.0 1396342994 179 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:04+00:00 1.0 1396342994 178 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:02+00:00 1.0 1396342994 177 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:04+00:00 1.0 1396342994 176 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:02+00:00 1.0 1396342994 175 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:00:50+00:00 1.0 1396342994 174 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:05+00:00 1.0 1396342994 173 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:06+00:00 1.0 1396342994 172 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:06+00:00 1.0 1396342994 171 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:03+00:00 1.0 1396342994 170 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:09+00:00 1.0 1396342994 169 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:21+00:00 1.0 1396342994 167 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:06:54+00:00 1.0 1396342994 159 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:00:42+00:00 1.0 1396342994 158 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:04+00:00 1.0 1396342994 157 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:03+00:00 1.0 1396342994 156 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:06+00:00 1.0 1396342994 155 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:05+00:00 1.0 1396342994 154 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:27+00:00 1.0 1396342994 153 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:00:50+00:00 1.0 1396342994 152 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:06+00:00 1.0 1396342994 151 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:13+00:00 1.0 1396342994 150 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:04+00:00 1.0 1396342994 149 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:04+00:00 1.0 1396342994 148 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:05+00:00 1.0 1396342994 146 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:33+00:00 1.0 1451771374 4112 next post will be pump coin name 2021-10-24 15:56:12+00:00 1.0 1451771374 4111 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 23 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 15:39:29+00:00 1.0 1451771374 4110 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership regards 2021-10-24 15:00:45+00:00 1.0 1451771374 4109 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership pinourchannelontop 2021-10-24 12:58:41+00:00 1.0 1451771374 4108 attention guys 5 hours biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 10:53:04+00:00 1.0 1451771374 4107 attention guys 11 hours 30 mint left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 05:10:51+00:00 1.0 1451771374 4106 attention guys 11 hours 30 mint left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 04:35:59+00:00 1.0 1451771374 4105 2 days left until the biggest pump event of all time be prepared • date sunday october 24 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-10-22 15:13:05+00:00 1.0 1451771374 4101 attention guys we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 24 october 2021 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-21 07:18:19+00:00 1.0 1451771374 4010 ⚡️⚡️ cotiusdt ⚡️⚡️ coti just breaking out of the falling wedge pattern looks very bullish here like our previous signals we are expecting this coin to pump very hard 2021-10-05 04:39:59+00:00 1.0 1451771374 3938 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-10-02 13:14:16+00:00 1.0 1451771374 3824 next will be coin name be ready 2021-09-15 07:21:14+00:00 1.0 1451771374 3802 next will be coin name be ready 2021-09-12 12:59:33+00:00 1.0 1451771374 3655 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 1hours 15 minutes open your binance future account and stay online ✅ 2021-08-23 12:45:42+00:00 1.0 1451771374 3585 special attention you have 25 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 25 mins left there we go 2021-08-17 04:34:57+00:00 1.0 1451771374 3505 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-06 13:15:28+00:00 1.0 1451771374 3500 30 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-08-05 16:18:18+00:00 1.0 1451771374 3499 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-05 15:00:45+00:00 1.0 1451771374 3475 4 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-08-02 16:06:27+00:00 1.0 1451771374 3453 iotausdt 30 m update buy signal looks great on iota chart 30m tf falling wedge printeding on iota breakout + nicely retest done low risk and high reword now moon time • now it is ready to pump • buy hold a bag of it • should hard pump soon 2021-07-29 16:24:57+00:00 1.0 1451771374 3413 5 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-07-25 15:43:35+00:00 1.0 1451771374 3410 4 hours 30 minutes remaining until the big pump on binance 2021-07-25 11:30:22+00:00 1.0 1451771374 3407 the day has arrived 12 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 300 target this time possibly even higher if we can manage to do 40 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-25 04:01:10+00:00 1.0 1451771374 3376 next will be coin name be ready 2021-07-23 15:58:20+00:00 1.0 1451771374 3357 exchange binance keep 30 mint time update buy signal looking great on keep chart bullish pennant printeding on zrx breaking out looks so bullish we are looking very well in the short term long it 2021-07-22 16:03:40+00:00 1.0 1451771374 3356 exchange binance keep 30 mint time update buy signal looking great on keep chart bullish pennant printeding on zrx breaking out looks so bullish we are looking very well in the short term long it 2021-07-22 16:02:54+00:00 1.0 1451771374 3353 next will be coin name be ready 2021-07-22 15:59:28+00:00 1.0 1451771374 3336 next will be coin name be ready 2021-07-21 16:00:51+00:00 1.0 1451771374 3335 30 minutes remaining until the big pump on binance 2021-07-21 15:30:53+00:00 1.0 1451771374 3330 4 hours 23 minutes remaining until the big pump on binance 2021-07-21 11:37:26+00:00 1.0 1451771374 3322 attention guys 11hours 35 minutes left biggest special pump signal is coming today we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 21 th july time 4 gmt advantage free for all 2021-07-21 04:25:06+00:00 1.0 1451771374 3214 buy dip and dont sell early target 100200 whales starting pump now 2021-07-11 16:03:09+00:00 1.0 1451771374 3207 30 minutes remaining until the big pump on binance 2021-07-11 15:30:05+00:00 1.0 1451771374 3204 only 3 hours left for our special signals special signal event is expected to go 200400 sell your alts be ready with spare usdt special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership pinourchannelontop 2021-07-11 13:00:20+00:00 1.0 1451771374 3202 attention guys 7hours left biggest special pump signal is coming today we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-11 09:00:04+00:00 1.0 1451771374 3199 attention guys 21 hours 30 minutes left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-10 18:28:31+00:00 1.0 1451771374 3186 attention guys 45 hours 15 minutes left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-09 18:14:46+00:00 1.0 1451771374 3173 3 days left until the biggest pump signal of all time on binance in a few days we will be posting more information in order to be prepared for the pump 2021-07-08 16:32:13+00:00 1.0 1451771374 3144 special pump announcement special mega signals ⛅️ we have special futures signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday july 11th • goal 500800 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 1 minutes ago on vip channel 2021-07-06 17:44:37+00:00 1.0 1451771374 2998 pump announcement hello everyone the next official pump will be scheduled for date sunday june 27 time 400 gmt exchange binance this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-06-24 04:46:13+00:00 1.0 1451771374 2809 next post will be pump coin name 2021-05-30 15:57:08+00:00 1.0 1451771374 2808 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop 2021-05-30 13:03:31+00:00 1.0 1451771374 2801 attention guys 23 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 30th may time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-29 17:21:29+00:00 1.0 1451771374 2797 pump announcement hello everyone the next official pump will be scheduled for date sunday may 30 time 1600 pm gmt exchange binance advantage special mega pump signal coin name will be received 5 minutes ago on vip channel with our volumes averaging 100200 btc per pump and peaks reaching up to 100200 we are ready to announce our next big pump we have 2 days to prepare for this pump as mentioned above we will be targeting at the very least 100200+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching stay tuned 2021-05-28 05:44:01+00:00 1.0 1451771374 2737 attention guys 315 hours left we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-23 12:48:12+00:00 1.0 1451771374 2736 attention guys 9 hours left we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-23 08:00:03+00:00 1.0 1451771374 2729 attention guys 24 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-22 16:00:20+00:00 1.0 1451771374 2726 special pump announcement special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday may 23th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-21 17:02:19+00:00 1.0 1451771374 2538 dlt chart is very bullish right now im preparing chart and send in 1 minutes meanwhile buy dlt before it pump really hard 2021-05-03 16:01:49+00:00 1.0 1451771374 2535 next post will be pump coin name 2021-05-03 15:54:35+00:00 1.0 1451771374 2534 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-03 15:31:56+00:00 1.0 1451771374 2533 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership regards 2021-05-03 15:00:50+00:00 1.0 1451771374 2532 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop 2021-05-03 13:01:54+00:00 1.0 1451771374 2531 hey guys stay alert less than 6 hours left for special pump remember special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal sell your alts be ready with spare btc for quick profit on mega pump signal the fomo is getting warm in alt market 4 pm gmt 2021-05-03 10:01:15+00:00 1.0 1451771374 2530 ‍♀ attached guys ‍♂ 10 hours left until our mega signal special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-03 06:00:05+00:00 1.0 1451771374 2528 ‍♀ attached guys ‍♂ 24 hours left until our mega signal special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-02 16:03:28+00:00 1.0 1451771374 2521 heavy pump alert❗️ date 3th may ⏱ time 4 00 gmt exchange binance 2021-05-01 03:12:50+00:00 1.0 1451771374 2510 exchange binance spot pivx update buy signal 4hours x 2 days time frame update pivx chart is super bullish now • bullish pennant on 12 hours timeframe • breaking out of the pennant resistance • we like pivx on all lovely traders also fomo pump coming soon price holding above ema ribbon support as well • 2 days time frame update pivx has broken the down trend resistance and started an uptrend as shown in chart on 4 he time pivx always bouncing after touching uptrend channel line as shown in chart now pivx is touching uptrend channel line again and it will pump hard this time with the help of our team buy pivx while my team is preparing pivx pump 2021-04-30 16:00:38+00:00 1.0 1451771374 2508 15 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit next post will be strong ta call 2021-04-30 15:45:10+00:00 1.0 1451771374 2507 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 15:30:03+00:00 1.0 1451771374 2506 1 hour left until the strong ta call todays strong ta call will be biggest till date this means that the coin signal will be at the exact same time for everyone expected spike 6080 note coin will be posted in picture to avoid bots special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 15:00:58+00:00 1.0 1451771374 2504 only 2 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership pinourchannelontop 2021-04-30 14:01:53+00:00 1.0 1451771374 2503 our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 3 hours left until strong ta signal ‼️ special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 13:00:30+00:00 1.0 1451771374 2500 hey guys stay alert less than 6 hours left for special pump remember special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal sell your alts be ready with spare btc for quick profit on mega pump signal the fomo is getting warm in alt market 4 pm gmt 2021-04-30 09:59:10+00:00 1.0 1451771374 2495 hey guys only about 12 hours left hope u ready for this massive special pump event get your binance accounts ready with spare btc this special pump signal will also be promoted in twitter date 30th april time 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 03:59:20+00:00 1.0 1451771374 2493 attention guys 24 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 30th april time 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-29 16:12:35+00:00 1.0 1451771374 2486 2 days left until the biggest pump event of all time be prepared • date friday april 30 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-04-28 16:01:12+00:00 1.0 1451771374 2483 hey guys we are excited to announce that we are bringing a different type of signal called as special beast alt this special beast signal will be posted here on this coming friday april 30th expected target 100200 this one will be best of these above wait for monday exchange binance special beast alt 30th april | 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel pinnedourchannelontop stayturned 2021-04-27 13:22:13+00:00 1.0 1451771374 2397 attention guys biggest special pump signal is coming at 11th april we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-09 14:41:41+00:00 1.0 1451771374 2359 special pump signal is ctxc cortex 2021-04-04 16:00:53+00:00 1.0 1451771374 2352 ‍♀ attached guys ‍♂ 24 hours left until our mega signal ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday april 4th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-03 16:00:02+00:00 1.0 1451771374 2348 ‍♀ attached guys ‍♂ 2 days left for special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday april 4th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-02 14:50:20+00:00 1.0 1451771374 2343 special pump announcement special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday april 4th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-01 14:27:52+00:00 1.0 1451771374 2312 exchange binance spot lrcbtc daily update buy signal lrc looks good at daily chart the alts are going crazy as the altszn looking to be round the corner • big printed falling wedge on lrc • breaking out soon on higher timeframe for now testing strong support im expecting continuation from here toward moonshot • lrc team is very active and continuously working on the project • only low cap which havent pumped much from bottom expacting huge rally from lrc in short term ‼️ • imo it can go for 23x moon ride anytime • buying the dip opportunity here • buy live prices • take profits zones are as follows tp1 1800 tp2 2700 2021-03-28 16:01:46+00:00 1.0 1451771374 2309 only 15 minutes left log in your binance account be ready with spare btc or usdt for biggestpump next post will be pump coin name ❤️ be very ready guys 2021-03-28 15:44:49+00:00 1.0 1451771374 2308 alright guys brace your seatbelt just few hours left for the rocket that will depart for the moon were expecting at least 1000 btc in volume are you ready you better be binancevolcano eruption signal only 1 hours left special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-28 15:00:21+00:00 1.0 1451771374 2307 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 2 hour is left its time to make heavy profits special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership regards vipsignalsteam 2021-03-28 13:59:37+00:00 1.0 1451771374 2306 only 3 hours left for our special signals historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-28 13:00:49+00:00 1.0 1451771374 2305 only 10 hours left for our special signals historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-28 06:01:33+00:00 1.0 1451771374 2301 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 28032021 time 4 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-27 16:00:00+00:00 1.0 1451771374 2299 special mega pump less than 34 hours 30 minutes left 28th march at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-27 05:35:59+00:00 1.0 1451771374 2295 special mega pump less than 48 hours left 28th march at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-26 16:05:37+00:00 1.0 1451771374 2292 2 days left until the biggest pump event of all time be prepared • date sunday march 28 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-03-26 06:43:51+00:00 1.0 1451771374 2291 pump announcement hello everyone the next official pump will be scheduled for • date sunday march 28 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-03-25 18:41:16+00:00 1.0 1451771374 2235 viabtc daily chart update buy signal viabtc bullish analysis chart according to chart we can see looking very bullish at this time • this green zone having very strong reversal support • price holding above 150 ma support as well on daily charts • daily macd is showing much bullishness • main resistance is 1450 satoshi • if this resistance breakout upward side then we can see next big move upward side • strong support1300 satoshi • i can expect 2 big bullish targets • buy market price take profits zones are as follows tp1 2500 satoshi tp2 3200 satoshi via ta vipsignalsteam 2021-03-13 17:01:20+00:00 1.0 1451771374 2233 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2021-03-13 16:59:54+00:00 1.0 1451771374 2232 final 10 minutes left next post will be coin name with link pinnedourchannelontop staytuned 2021-03-13 16:50:24+00:00 1.0 1451771374 2231 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ sell your alts be ready with spare btc for quick profit on mega pump signal only 30 minutes are left for pump 2021-03-13 16:28:26+00:00 1.0 1451771374 2230 be ready guys just 1 hour is left its time to make heavy profits do you know about the pump ✅ the pump for all dear members the coin will be shared based on technical analysis ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread ‼️ pinnedourchannelontop staytuned 2021-03-13 15:58:40+00:00 1.0 1451771374 2229 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 4 hour is left its time to make heavy profits special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership regards vipsignalsteam 2021-03-13 13:00:06+00:00 1.0 1451771374 2227 only 6 hours 30 minutes left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-13 10:30:18+00:00 1.0 1451771374 2224 only 12 hours left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-13 05:01:01+00:00 1.0 1451771374 2223 hey guys stay alert less than 14 hours left remember special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 5 pm gmt 2021-03-13 03:10:12+00:00 1.0 1451771374 2219 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 13032021 time 5 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-12 17:02:19+00:00 1.0 1451771374 2214 dear members 36 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 13032021 time 5 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-12 05:08:26+00:00 1.0 1451771374 2211 pump announcement hello everyone the next official pump will be scheduled for date saturday march 13 time 5 pm gmt exchange binance next pump will be help on saturday and the big news is that it will be a ranked pump where vip members will get 5 minute early access to pump coin be ready with your btc on binance and lets make this pump huge 2021-03-11 15:42:59+00:00 1.0 1451771374 2177 bts daily update buy signal looks great on bts chart 4hr tf • bts clear breakout • bts is breaking out the pennant on daily pattern and very bullish • bts will launch the dex before q1 and this is a big news • this is a big news and will send the coin to the moon • if you missed audio pump you can buy bts take profits zones are as follows tp1 218 satoshi tp2 350 satoshi bts ta vipsignalsteam 2021-03-07 16:05:28+00:00 1.0 1451771374 2175 bts buy it will pump soon whales pump coming ┌bts buying activity ├456 btc traded in 15 min 149 ├14 times the average volume ├net 15m volume +350 btc ❇️ ├boost score 310 ├24h vol 3070 btc └last price 000000110 binance 2021-03-07 16:03:15+00:00 1.0 1451771374 2171 final 10 minutes left next post will be coin name with link pinnedourchannelontop staytuned 2021-03-07 15:49:42+00:00 1.0 1451771374 2170 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ sell your alts be ready with spare btc for quick profit on mega pump signal only 30 minutes are left for todays 23x breakout coin 2021-03-07 15:28:56+00:00 1.0 1451771374 2169 be ready guys just 1 hour is left its time to make heavy profits do you know about the pump ✅ the pump for all dear members the coin will be shared based on technical analysis ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread ‼️ pinnedourchannelontop staytuned 2021-03-07 14:58:59+00:00 1.0 1451771374 2168 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 2 hour is left its time to make heavy profits special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership regards vipsignalsteam 2021-03-07 13:59:47+00:00 1.0 1451771374 2167 only 4 hours left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-07 11:57:41+00:00 1.0 1451771374 2166 only 9 hours left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-07 06:59:53+00:00 1.0 1451771374 2163 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 07032021 time 4 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-06 15:59:23+00:00 1.0 1451771374 2161 special mega pump less than 31 hours 30 minutes left tomorrow at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-06 08:28:59+00:00 1.0 1451771374 2158 special mega pump less than 48 hours left tomorrow at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-05 16:10:47+00:00 1.0 1451771374 2149 pump announcement special mega signals we have special altcoin signals just to let you know about it ⏰ will give you more details soon remember to transfer funds to binance and pinunmute our channel participants people 200000+ date sunday march 7th goal 200500 time 4 00 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-03-05 05:29:33+00:00 1.0 1451771374 2148 heavy pump alert❗️ date 7th march ⏱ time 4 00 pm gmt exchange binance 2021-03-05 05:16:09+00:00 1.0 1451771374 2011 hey guys stay alert less than 12 hours left remember special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 4 pm gmt 2021-02-13 03:59:34+00:00 1.0 1451771374 2007 special mega pump less than 24 hours left tomorrow at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-02-12 16:04:12+00:00 1.0 1451771374 2002 pump announcement special mega signals we have special altcoin signals just to let you know about it ⏰ will give you more details soon remember to transfer funds to binance and pinunmute our channel participants people 200000+ date saturday february 13 goal 200500 time 4 00 pm gmt exchange binance vip will get 5 min before 2021-02-12 06:55:07+00:00 1.0 1451771374 1956 ardr | binance big falling wedge 2210 down from all time high gem coin that can provide easy 200 300 gain just like nothing small cap coin has to go for a crazy ride ardr is the next vib 2x 3x coin from 2210 times down from ath buy from here 2021-02-09 16:00:12+00:00 1.0 1451771374 1955 only 5 minutes to go global fomo warming up next post will be pump coin name be very ready guys 2021-02-09 15:55:38+00:00 1.0 1451771374 1954 only 15 minutes left log in your binance account be ready with spare btc or usdt for biggestpump pinourchannelontopsoyouwillnotmisspump regards 2021-02-09 15:45:55+00:00 1.0 1451771374 1953 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays 2x breakout coin 2021-02-09 15:31:49+00:00 1.0 1451771374 1952 be ready guys just 1 hour is left its time to make heavy profits ✅ the pump is free for all the coin will be shared based on ta technical analysis ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well vip will get 5 min before share it with your friends other crypto groups let the hype spread ‼️ 2021-02-09 14:59:54+00:00 1.0 1451771374 1951 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 100300 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this cryptocoach10 doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2021-02-09 14:00:20+00:00 1.0 1451771374 1950 only 3 hours 30 minutes left for our special signals ❗️❗historic signal event is expected to go 100300 sell your alts be ready with spare btc pinourchannelontop regards 2021-02-09 12:30:01+00:00 1.0 1451771374 1949 only 12 hours 15 minutes left for our special signals ❗️❗historic signal event is expected to go 100300 sell your alts be ready with spare btc pinourchannelontop regards 2021-02-09 03:45:04+00:00 1.0 1451771374 1945 we are back again with historic signal event ❗️exchange binance date 09022020 time 4 pm gmt vip will get 5 min before more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out og this event soon pump will be expected minimum 100300 so be ready with spare btc pinourchannelontop beready4blast staytuned 2021-02-08 12:34:32+00:00 1.0 1451771374 1928 altcoin doesnt look good for mega pump so i have closed the mega pump signal today because btc again bull alts rekt dominance pumping hard the next pump will soon be announced stay tuned 2021-02-06 14:44:07+00:00 1.0 1451771374 1926 hey guys stay alert only 6 hours 30 minutes left team remember vip members will get few minute early access to pump to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 500 pm gmt 2021-02-06 10:30:40+00:00 1.0 1451771374 1923 hey guys stay alert only 13 hours 45 minutes left team remember vip members will get few minute early access to pump to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 500 pm gmt 2021-02-06 03:15:59+00:00 1.0 1451771374 1921 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 06022021 time 5 pm gmt exchange binance stay tuned mega pump signal is coming 2021-02-05 17:01:32+00:00 1.0 1451771374 1913 pump announcement hello everyone the next official pump will be scheduled for date saturday february 6 time 5 00 pm gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-02-04 14:58:48+00:00 1.0 1451771374 1899 pump announcement hello everyone the next official pump will be scheduled for date saturday february 6 time 5 00 pm gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-02-02 19:08:24+00:00 1.0 1451771374 1859 next post will be pump coin name 2021-01-30 15:55:09+00:00 1.0 1451771374 1858 we are going to tell you a vip mega coin at 4 pm gmt those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 15 min left 2021-01-30 15:45:02+00:00 1.0 1451771374 1856 dear members 30 minutes left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the mega pump signals team 2021-01-30 15:30:06+00:00 1.0 1451771374 1853 alright guys brace your seatbelt just few hours left for the rocket that will depart for the moon were expecting at least 1000 btc in volume are you ready you better be binancevolcano eruption signal only 2 hours 30 min left 2021-01-30 13:30:02+00:00 1.0 1451771374 1851 big announcement are you excited for volcano eruption signal this signal will be purely based upon ta fa you will just have to buy that coin fastly as we declare its name and we will bring fomo to pump that coin 100 500 in no time we guarantee you that there will be no prepump or buying the volcano eruption signal is scheduled at date 30012021 time 4 pm gmt4 hours 30 min left exchange binance stay tuned volcano eruption signal is coming 2021-01-30 11:33:07+00:00 1.0 1451771374 1845 big announcement to celebrate the upcoming big alts season we are going to start a new type of signal which well call volcano eruption signal this signal will be purely based upon ta fa that is still bottomed out with very strong potential to pump hard you will just have to buy that coin fastly as we declare its name and we will bring fomo to pump that coin 100 500 in no time we guarantee you that there will be no prepump or buying the volcano eruption signal is scheduled at date 30012021 time 4 pm gmt24 hours left exchange binance stay tuned volcano eruption signal is coming 2021-01-29 16:10:47+00:00 1.0 1451771374 1831 big announcement we are going to organize a volcano eruption event on 30 th january we have gathered huge amount of btc to boom coin on binance making it reach top gainer on binance it will be free for all invite your friends for this volcano eruption signal day 30 jan time 4 gmt be ready 2021-01-28 13:50:29+00:00 1.0 1451771374 1826 big announcement we are going to organize a volcano eruption event on 30 th january we have gathered huge amount of btc to boom coin on binance making it reach top gainer on binance it will be free for all invite your friends for this volcano eruption signal day 30 jan time 4 gmt be ready 2021-01-27 15:37:59+00:00 1.0 1451771374 1320 next post will be pump coin name 2020-07-22 15:56:43+00:00 1.0 1451771374 1319 we are going to tell you a vip mega coin at 4 pm gmt those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 30 min left 2020-07-22 15:34:27+00:00 1.0 1451771374 1318 our dear members 1 hours left today will be the best and the safest pump we are nearly ready are you regards 2020-07-22 15:00:56+00:00 1.0 1451771374 1317 3 hours 30 minutes left for pump mega pump mega pump time 4pm gmt i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership 2020-07-22 12:32:13+00:00 1.0 1451771374 1316 10 hours left for pump i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership 2020-07-22 06:54:31+00:00 1.0 1451771374 1315 12 hours left for mega pump 2020-07-22 03:46:53+00:00 1.0 1451771374 1314 18 hours left for mega pump 2020-07-21 21:25:16+00:00 1.0 1451771374 1310 24 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-21 16:05:12+00:00 1.0 1451771374 1303 32 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-21 09:08:37+00:00 1.0 1451771374 1291 48 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-20 16:32:21+00:00 1.0 1451771374 1280 pump announcement hello everyone the next official pump will be scheduled for date wednesday july 22 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 3 days to prepare for this pump share our group on social media and invite everyone you 2020-07-20 05:09:47+00:00 1.0 1451771374 1277 pump announcement hello everyone the next official pump will be scheduled for date wednesday july 22 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 4 days to prepare for this pump share our group on social media and invite everyone you 2020-07-19 13:56:46+00:00 1.0 1451771374 1211 5 minutes left boom coin 2020-07-14 10:41:28+00:00 1.0 1451771374 1210 boom coin be ready with your binance account boom coin 1030 profit 1 hour left ⏰ be ready guys we will post coin name 10 minutes early in vip pinourchanneltotop staytuned 2020-07-14 09:28:06+00:00 1.0 1451771374 1189 pump scheduled date 13th july ⏱ time 400 pm gmt exchange binance 2020-07-12 18:59:03+00:00 1.0 1451771374 1161 next post will be pump coin name 2020-07-10 15:50:17+00:00 1.0 1451771374 1160 we are going to tell you a vip mega coin at 4 pm gmt which target is 5080 those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 30 min left 2020-07-10 15:29:54+00:00 1.0 1451771374 1159 our dear members 1 hours left today will be the best and the safest pump we are nearly ready are you regards 2020-07-10 14:58:21+00:00 1.0 1451771374 1157 3 hours left for mega pump 2020-07-10 12:56:52+00:00 1.0 1451771374 1155 5 hours left for mega pump join us and coin name get it now 2020-07-10 11:03:39+00:00 1.0 1451771374 1151 8 hours left for pump i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership 2020-07-10 08:09:17+00:00 1.0 1451771374 1140 hey folks today at 4pm gmt our whales will push a strong tafa based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 24 hours left until the most awaiting strong tafa call backed by our whales‼️ 2020-07-09 16:02:01+00:00 1.0 1451771374 1133 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 2 days to prepare for this pump share our group on social media and invite everyone you 2020-07-09 04:54:18+00:00 1.0 1451771374 1115 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 2 days to prepare for this pump share our group on social media and invite everyone you 2020-07-08 05:06:29+00:00 1.0 1451771374 1102 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 3 days to prepare for this pump share our group on social media and invite everyone you 2020-07-07 08:11:29+00:00 1.0 1451771374 1098 ❗️next pump announce❗️ tommorow date 7 july exchange binance ⏰ time 4pm gmt get the coin name before pump 2020-07-06 18:06:15+00:00 1.0 1451771374 1021 next post will be coin name 2020-07-02 14:54:55+00:00 1.0 1451771374 1019 dear members 2 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you 2020-07-02 14:01:09+00:00 1.0 1451771374 1018 vip 1 hour 30 minutes free 2 hours 30 minutes 2020-07-02 13:26:09+00:00 1.0 1451771374 1017 are you online today you better be bcoz only 5 hrs remaining for the mountain alt signal 44 30 pm gmt 2020-07-02 11:31:18+00:00 1.0 1451771374 1016 hey folks today at 44 30 pm gmt our whales will push a strong tafa based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 1030 hours left until the most awaiting strong tafa call backed by our whales‼️ 2020-07-02 05:58:29+00:00 1.0 1451771374 1014 pump scheduled date 2nd july ⏱ time 4430 pm gmt exchange binance coin name will be posted on vip channel 1 hours earlier this time interested people contact me ☎️ officialsignalta 2020-07-01 18:23:47+00:00 1.0 1451771374 653 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 8 mins today | 4 pm gmt 2020-05-29 15:52:29+00:00 1.0 1451771374 652 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:58+00:00 1.0 1451771374 643 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this less than 12 hours left to see the mountain alt today | 4 pm gmt 2020-05-29 04:42:07+00:00 1.0 1451771374 434 heavy pump alert❗️ date 23th may ⏱ time 1600 pm gmt exchange binance 2020-05-20 01:32:27+00:00 1.0 1451771374 131 pump coin name rdn 2020-04-21 13:58:58+00:00 1.0 1451771374 130 next post will be coin name 2020-04-21 13:56:03+00:00 1.0 1451771374 127 40 minutes for mega pump alert❗ 2020-04-21 13:20:55+00:00 1.0 1451771374 126 only 3 hours left for mega pump alert❗ 2020-04-21 11:02:18+00:00 1.0 1451771374 125 mega pump alert❗ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 22:25:17+00:00 1.0 1451771374 124 pump alert updated❗️ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 19:54:53+00:00 1.0 1451771374 96 this group link only pump coin signal provide 2020-04-16 17:33:37+00:00 1.0 1451771374 95 mega coin pump ™ binance exchange only mega pump coin signal 2020-04-16 17:03:57+00:00 1.0 1451771374 30 announcement new coin listing pump event ‼️ to celebrate sol listing on binance we will schedule sol pump on 09042020 at 4 am utc the main reason for announcing this pump is circulation supply of this coin which is just 16 percent of total token supply therefore we believe that fomo will be huge as it could end up being another ogn renowned for its insane pumping history we recommend to buy as fast as possible and hold for 10100 from the buy price some data total token supply 500 millions sol total circulation supply 8 millions sol coin list auction sale price 1 sol 022 usd approx 3000 satoshis date 9th april 2020 time 400 am utc exchange binance pair name solbtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only entries 1 70007200 15 highly risky entry 2 60006200 25 little risky entry 3 54005500 30 comfortable entry 4 42004400 30 safest entry we suggest you guys to follow our buy zones only and get amazing short term profits like we did with our earlier binance ieo pumps believe us if you will follow us properly youll make handsome profits with sol so please read all info play safe cryptopumpanalytics professionaltradingguide 2020-04-08 05:32:47+00:00 1.0 1072723547 27161 ⁠election day pump 4 reasons bitcoin spiked 2 in 30 minutes the price of bitcoin rose 2 in 30 minutes as the election causes massive volatility in the us stock market 2020-11-03 17:23:07+00:00 1.0 1342400398 36323 next pump coin name announced in vip channel easy 3080 profit you want to know name of coin ☎️ contact bitcoinadmin for vip membership ☎️ free public channel link contact 2022-01-20 21:36:39+00:00 1.0 1342400398 36071 pump result nebl 60profit start price 2544 weve reached 4058 ✅✅quick profit 60 to all vip members in 1 minutes congrats vip members shared at 2 jan 1200 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2022-01-03 07:16:35+00:00 1.0 1342400398 36054 pump result nebl 60profitproof start price 2544 weve reached 4058 ✅✅quick profit 60 to all vip members in 1 minutes congrats vip members shared at 2 jan 1200 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2022-01-02 17:28:55+00:00 1.0 1342400398 36053 pump result nebl 60profit start price 2544 weve reached 4058 ✅✅quick profit 60 to all vip members in 1 minutes congrats vip members shared at 2 jan 1200 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2022-01-02 17:19:17+00:00 1.0 1342400398 36047 15 minutes left until the big pump on binance be ready 2022-01-02 16:45:35+00:00 1.0 1342400398 36046 ⏰ 45 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2022-01-02 16:17:12+00:00 1.0 1342400398 36045 ⏰ 60 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2022-01-02 15:55:51+00:00 1.0 1342400398 36044 ⏰ 90 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2022-01-02 15:37:56+00:00 1.0 1342400398 35972 next pump coin name announced in vip channel easy 3080 profit you want to know name of coin ☎️ contact bitcoinadmin for vip membership ☎️ free public channel link contact 2021-12-29 08:47:55+00:00 1.0 1342400398 35958 pump result hard 32profitproof start price 1721 weve reached 2390 ✅✅✅quick profit 32 to all vip members in 16 minutes congrats vip members shared at 27 dec 0357 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2021-12-27 21:33:26+00:00 1.0 1342400398 35957 pump result hard 32profit start price 1721 weve reached 2390 ✅✅✅quick profit 32 to all vip members in 16 minutes congrats vip members shared at 27 dec 0357 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2021-12-27 21:18:16+00:00 1.0 1342400398 35912 next pump coin name announced in vip channel easy 3080 profit you want to know name of coin ☎️ contact bitcoinadmin for vip membership ☎️ free public channel link contact 2021-12-26 17:31:13+00:00 1.0 1342400398 35904 pump result pha 38profitproof start price 934 weve reached 1290 ✅✅quick profit 38 to all vip members in 8 minutes congrats vip members shared at 25 dec 0109 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2021-12-26 06:33:48+00:00 1.0 1342400398 35903 pump result pha 38profit start price 934 weve reached 1290 ✅✅quick profit 38 to all vip members in 8 minutes congrats vip members shared at 25 dec 0109 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2021-12-26 06:33:10+00:00 1.0 1342400398 35891 next pump coin name announced in vip channel easy 3080 profit you want to know name of coin ☎️ contact bitcoinadmin for vip membership ☎️ free public channel link contact 2021-12-25 08:41:13+00:00 1.0 1342400398 35775 next pump coin name announced in vip channel easy 3080 profit you want to know name of coin ☎️ contact bitcoinadmin for vip membership ☎️ free public channel link contact 2021-12-21 09:04:38+00:00 1.0 1342400398 35759 next pump coin name announced in vip channel easy 3080 profit you want to know name of coin ☎️ contact bitcoinadmin for vip membership ☎️ free public channel link contact 2021-12-19 17:02:03+00:00 1.0 1342400398 35745 pump result fis 25profitproof start price 2821 weve reached 3524 ✅✅✅quick profit 25 to all vip members in 1 minutes congrats vip members shared at 18 dec 1259 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2021-12-18 23:04:49+00:00 1.0 1342400398 35744 pump result fis 25profit start price 2821 weve reached 3524 ✅✅✅quick profit 25 to all vip members in 1 minutes congrats vip members shared at 18 dec 1259 pm est as per newyork timezone to know next pump coin name ☎️contact bitcoinadmin for vip membership ☎️ contact for free public channel link bitcoinpumpgroup 2021-12-18 19:01:16+00:00 1.0 1342400398 35741 pump result tru 48profitproof start price 806 weve reached 1194 ✅✅✅quick profit 48 to all vip members in 37 minutes congrats vip members shared at 18 dec 1215 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership 2021-12-18 18:20:05+00:00 1.0 1342400398 35740 pump result tru 48profit start price 806 weve reached 1194 ✅✅✅quick profit 48 to all vip members in 37 minutes congrats vip members shared at 18 dec 1215 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership 2021-12-18 18:19:45+00:00 1.0 1342400398 35421 pump result mdt 90profitproof start price 120 weve reached 231 ✅✅quick profit 90 to all vip members in 20 minutes congrats vip members shared at 8 dec 0535 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-12-09 08:22:01+00:00 1.0 1342400398 35420 pump result mdt 90profit start price 120 weve reached 231 ✅✅quick profit 90 to all vip members in 20 minutes congrats vip members shared at 8 dec 0535 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-12-09 06:09:26+00:00 1.0 1342400398 35291 ⏰ 20 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-12-05 16:39:28+00:00 1.0 1342400398 34279 ⏰ 5 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-14 16:54:16+00:00 1.0 1342400398 34278 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-14 16:32:19+00:00 1.0 1342400398 34277 ⏰ 45 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-14 16:15:21+00:00 1.0 1342400398 34042 pump result mth 130profitproof start price 58 weve reached 133 ✅✅✅quick profit 130 to all vip members in 2 minutes congrats vip members shared at 7 nov 0500 pm gmt to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-07 21:02:04+00:00 1.0 1342400398 34041 pump result mth 130profit start price 58 weve reached 133 ✅✅✅quick profit 130 to all vip members in 2 minutes congrats vip members shared at 7 nov 0500 pm gmt to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-07 20:12:48+00:00 1.0 1342400398 34038 pump result mth 130profit start price 58 weve reached 133 ✅✅✅quick profit 130 to all vip members in 2 minutes congrats vip members shared at 7 nov 0500 pm gmt to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-07 19:39:57+00:00 1.0 1342400398 34032 pump result mth 130profit start price 58 weve reached 133 ✅✅✅quick profit 130 to all vip members in 2 minutes congrats vip members shared at 7 nov 0500 pm gmt to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-07 17:26:38+00:00 1.0 1342400398 34028 5 minutes left the next message will be the coin to buy 2021-11-07 16:55:18+00:00 1.0 1342400398 34027 ⏰ 30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-07 16:30:25+00:00 1.0 1342400398 34026 ⏰ 60 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-11-07 16:00:57+00:00 1.0 1342400398 33415 ⏰ 5 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-10-24 16:55:20+00:00 1.0 1342400398 33414 ⏰ 15 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-10-24 16:45:46+00:00 1.0 1342400398 33413 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-10-24 16:31:11+00:00 1.0 1342400398 33015 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:02:13+00:00 1.0 1342400398 33012 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-10-10 16:25:49+00:00 1.0 1342400398 32788 ⏰ 30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-10-03 16:32:07+00:00 1.0 1342400398 32562 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:58:36+00:00 1.0 1342400398 32377 pump result ltc 28profitproof start price 3987 weve reached 5099 ✅✅quick profit 28 in less than less than 10 minutes to all vip members congrats vip members shared at 13 sep 0931 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-09-13 14:40:26+00:00 1.0 1342400398 32376 pump result ltc 28profit start price 3987 weve reached 5099 ✅✅quick profit 28 in less than less than 10 minutes to all vip members congrats vip members shared at 13 sep 0931 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-09-13 13:50:34+00:00 1.0 1342400398 31609 pump result rdn 41profitproof start price 1092 weve reached 1540 ✅✅✅quick profit 41 in less than 46 minutes to all vip members congrats vip members shared at 19 aug 1238 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-19 19:18:54+00:00 1.0 1342400398 31608 pump result rdn 41profit start price 1092 weve reached 1540 ✅✅✅quick profit 41 in less than 46 minutes to all vip members congrats vip members shared at 19 aug 1238 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-19 18:07:43+00:00 1.0 1342400398 31453 pump result om 34profitproof start price 430 weve reached 575 ✅✅✅quick profit 34 in less than 10 minutes to all vip members congrats vip members shared at 12 aug 0356 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-13 18:07:15+00:00 1.0 1342400398 31452 pump result om 34profit start price 430 weve reached 575 ✅✅✅quick profit 34 in less than 10 minutes to all vip members congrats vip members shared at 12 aug 0356 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-13 18:06:01+00:00 1.0 1342400398 31440 pump result om 27profitproof start price 430 weve reached 547 ✅✅quick profit 27 in less than 10 minutes to all vip members congrats vip members shared at 12 aug 0356 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-12 21:09:40+00:00 1.0 1342400398 31439 pump result om 27profit start price 430 weve reached 547 ✅✅quick profit 27 in less than 10 minutes to all vip members congrats vip members shared at 12 aug 0356 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-12 20:29:25+00:00 1.0 1342400398 31343 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-08 16:23:56+00:00 1.0 1342400398 31203 pump result nmr 46profitproof start price 995 weve reached 1450 ✅✅✅quick profit 46 in 33 minutes to all vip members congrats vip members shared at 2 aug 1000 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-03 12:33:19+00:00 1.0 1342400398 31202 pump result nmr 46profit start price 995 weve reached 1450 ✅✅✅quick profit 46 in 33 minutes to all vip members congrats vip members shared at 2 aug 1000 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-03 12:13:48+00:00 1.0 1342400398 31167 ⏰ 30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-08-01 18:38:17+00:00 1.0 1342400398 31164 less than 2 hour left until our pump on binance here are a few tips you should know before the pump we will be using the btc pairing on binance to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up if you are using market buy and plan to use your whole balance use anything less than 100 of your balance for example 75 to make sure it works lastly enjoy the ride up we can say for sure that this pump will be a 100 legit pump and our whales will do everything in their power to make sure every single member will profit from it ☎️contact bitcoinadmin for vip membership ☎️ channel link contact 2021-08-01 17:39:16+00:00 1.0 1342400398 31010 ⏰ 15 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-07-25 18:44:53+00:00 1.0 1342400398 30034 pump result wabi 38profitproof start price 905 weve reached 1249 ✅✅✅quick profit 38 in 6 minutes to all vip members congrats vip members shared at 20 june 1254 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-20 19:08:04+00:00 1.0 1342400398 30033 pump result wabi 38profit start price 905 weve reached 1249 ✅✅✅quick profit 38 in 6 minutes to all vip members congrats vip members shared at 20 june 1254 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-20 18:34:00+00:00 1.0 1342400398 29996 pump result scrt 45profitproof start price 3681 weve reached 5200 ✅✅✅quick profit 45 in 33 minutes to all vip members congrats vip members shared at 17 june 1001 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-17 17:11:00+00:00 1.0 1342400398 29995 pump result scrt 45profit start price 3681 weve reached 5200 ✅✅✅quick profit 45 in 33 minutes to all vip members congrats vip members shared at 17 june 1001 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-17 14:52:46+00:00 1.0 1342400398 29637 pump result dock 52profitproof start price 193 weve reached 293 ✅✅✅quick profit 52 in 3 minutes to all vip members congrats vip members shared at 6 june 0441 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-06 21:02:05+00:00 1.0 1342400398 29636 pump result dock 52profit start price 193 weve reached 293 ✅✅✅quick profit 52 in 3 minutes to all vip members congrats vip members shared at 6 june 0441 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-06 20:54:02+00:00 1.0 1342400398 29574 pump result nbs 75profitproof start price 58 weve reached 101 ✅✅✅quick profit 75 in 3 minutes to all vip members congrats vip members shared at 6 june 0104 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-06 17:30:29+00:00 1.0 1342400398 29573 pump result nbs 75profit start price 58 weve reached 101 ✅✅✅quick profit 75 in 3 minutes to all vip members congrats vip members shared at 6 june 0104 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-06 17:24:33+00:00 1.0 1342400398 29540 pump result iris 90profitproof start price 241 weve reached 456 ✅✅✅quick profit 90 in 8 minutes to all vip members congrats vip members shared at 6 june 0314 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-06 08:13:10+00:00 1.0 1342400398 29539 pump result iris 90profit start price 241 weve reached 456 ✅✅✅quick profit 90 in 8 minutes to all vip members congrats vip members shared at 6 june 0314 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-06-06 07:41:49+00:00 1.0 1342400398 29537 pump result iris ✅✅✅ in few minutes 2021-06-06 07:38:05+00:00 1.0 1342400398 29098 pump result ramp 130profitproof start price 519 weve reached 1178 ✅✅✅quick profit 130 in 20 hour to all vip members congrats vip members shared at 25 may 0521 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-26 18:35:34+00:00 1.0 1342400398 29097 pump result ramp 130profit start price 519 weve reached 1178 ✅✅✅quick profit 130 in 20 hour to all vip members congrats vip members shared at 25 may 0521 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-26 18:34:54+00:00 1.0 1342400398 29060 pump result ramp 92profitproof start price 519 weve reached 968 ✅✅✅quick profit 92 in 10 hour to all vip members congrats vip members shared at 25 may 0521 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-26 10:24:07+00:00 1.0 1342400398 29059 pump result ramp 92profit start price 519 weve reached 968 ✅✅✅quick profit 92 in 10 hour to all vip members congrats vip members shared at 25 may 0521 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-26 10:20:02+00:00 1.0 1342400398 29030 pump result blz 38profit start price 514 weve reached 705 ✅✅✅quick profit 38 in 1 hour to all vip members congrats vip members shared at 25 may 0912 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-26 07:22:12+00:00 1.0 1342400398 29029 pump result blz 38profit start price 514 weve reached 705 ✅✅✅quick profit 38 in 1 hour to all vip members congrats vip members shared at 25 may 0912 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-26 07:20:52+00:00 1.0 1342400398 29024 pump result blz ✅✅✅ in few minutes 2021-05-26 07:14:03+00:00 1.0 1342400398 28860 pump result nebl 32profitproof start price 4382 weve reached 5800 ✅✅quick profit 32 in 5 minutes to all vip members congrats vip members shared at 21 may 1200 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-21 16:50:35+00:00 1.0 1342400398 28859 pump result nebl 32profit start price 4382 weve reached 5800 ✅✅quick profit 32 in 5 minutes to all vip members congrats vip members shared at 21 may 1200 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-21 16:09:17+00:00 1.0 1342400398 28857 pump result nebl ✅✅✅ in few minutes 2021-05-21 16:05:18+00:00 1.0 1342400398 28850 pump result fis 52profitproof start price 4434 weve reached 6754 ✅✅✅quick profit 52 in 46 minutes to all vip members congrats vip members shared at 21 may 0739 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-21 13:49:17+00:00 1.0 1342400398 28849 pump result fis 52profit start price 4434 weve reached 6754 ✅✅✅quick profit 52 in 46 minutes to all vip members congrats vip members shared at 21 may 0739 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-21 13:10:59+00:00 1.0 1342400398 28517 pump result inj 45profitproof start price 31115 weve reached 44886 ✅✅✅quick profit 45 in 7 minutes to all vip members congrats vip members shared at 12 may 0932 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-12 15:44:36+00:00 1.0 1342400398 28516 pump result inj 45profit start price 31115 weve reached 44886 ✅✅✅quick profit 45 in 7 minutes to all vip members congrats vip members shared at 12 may 0932 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-05-12 15:15:20+00:00 1.0 1342400398 28008 pump result in few minutes 2021-05-01 04:42:50+00:00 1.0 1342400398 27955 pump result in few minutes 2021-04-30 04:51:46+00:00 1.0 1342400398 27635 ⏰ 30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-25 16:31:08+00:00 1.0 1342400398 27291 pump result nuls 30profitproof start price 2770 weve reached 3601 ✅✅✅quick profit 30 to all vip members in few minutes congrats vip members shared at 18 apr 1232 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-18 07:43:45+00:00 1.0 1342400398 27290 pump result nuls 30profit start price 2770 weve reached 3601 ✅✅✅quick profit 30 to all vip members in few minutes congrats vip members shared at 18 apr 1232 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-18 05:47:01+00:00 1.0 1342400398 26777 pump result via 28profitproof start price 2336 weve reached 3000 ✅✅✅quick profit 28 to all vip membersin 1 minutes congrats vip members shared at 7 apr 0958 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-07 15:27:44+00:00 1.0 1342400398 26776 pump result via 28profit start price 2336 weve reached 3000 ✅✅✅quick profit 28 to all vip membersin 1 minutes congrats vip members shared at 7 apr 0958 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-07 15:13:40+00:00 1.0 1342400398 26714 pump result cdt 14profitproof start price 93 weve reached 105 ✅quick profit 13 to all vip membersin 5 minutes congrats vip members shared at 6 apr 0439 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-06 09:23:29+00:00 1.0 1342400398 26713 pump result cdt 14profit start price 93 weve reached 105 ✅quick profit 13 to all vip membersin 5 minutes congrats vip members shared at 6 apr 0439 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-06 08:49:39+00:00 1.0 1342400398 26710 pump result phb 33profitproof start price 48 weve reached 64 ✅✅quick profit 33 to all vip membersin 37 minutes congrats vip members shared at 6 apr 0302 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-06 08:38:27+00:00 1.0 1342400398 26709 pump result phb 33profit start price 48 weve reached 64 ✅✅quick profit 33 to all vip membersin 37 minutes congrats vip members shared at 6 apr 0302 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-06 08:37:09+00:00 1.0 1342400398 26693 pump result phb 19profitproof start price 48 weve reached 57 ✅quick profit 19 to all vip membersin 2 minutes congrats vip members shared at 6 apr 0302 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-06 07:16:12+00:00 1.0 1342400398 26692 pump result phb 19profit start price 48 weve reached 57 ✅quick profit 19 to all vip membersin 2 minutes congrats vip members shared at 6 apr 0302 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-06 07:10:04+00:00 1.0 1342400398 26664 pump result nkn 68profitproof start price 600 weve reached 1010 ✅✅✅quick profit 68 to all vip membersin 17 minutes congrats vip members shared at 5 apr 1045 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-05 19:21:11+00:00 1.0 1342400398 26663 pump result nkn 68profit start price 600 weve reached 1010 ✅✅✅quick profit 68 to all vip membersin 17 minutes congrats vip members shared at 5 apr 1045 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-05 19:00:50+00:00 1.0 1342400398 26653 pump result nkn 68profitproof start price 600 weve reached 1010 ✅✅✅quick profit 68 to all vip membersin 17 minutes congrats vip members shared at 5 apr 1045 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-05 17:06:10+00:00 1.0 1342400398 26652 pump result nkn 68profit start price 600 weve reached 1010 ✅✅✅quick profit 68 to all vip membersin 17 minutes congrats vip members shared at 5 apr 1045 am est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-04-05 15:12:26+00:00 1.0 1342400398 26238 pump result vib 40profitproof start price 172 weve reached 240 ✅✅✅quick profit 40 to all vip membersin 16 minutes congrats vip members shared at 30 mar 1059 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-03-31 07:19:19+00:00 1.0 1342400398 26237 pump result vib 40profit start price 172 weve reached 240 ✅✅✅quick profit 40 to all vip membersin 16 minutes congrats vip members shared at 30 mar 1059 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-03-31 07:18:04+00:00 1.0 1342400398 26112 pump result powr 38profitproof start price 803 weve reached 1110 ✅✅✅quick profit 38 to all vip membersin 9 minutes congrats vip members shared at 29 mar 0218 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-03-29 19:00:41+00:00 1.0 1342400398 26111 pump result powr 38profit start price 803 weve reached 1110 ✅✅✅quick profit 38 to all vip membersin 9 minutes congrats vip members shared at 29 mar 0218 pm est as per newyork timezone to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-03-29 18:39:13+00:00 1.0 1342400398 24434 pump result scrt 42profitproof start price 5820 weve reached 8260 ✅quick profit 42 to all vip membersin just 20 minutes congrats vip members shared at 20 feb 0215 pm est as per newyork timezone to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-02-20 20:35:55+00:00 1.0 1342400398 24433 pump result scrt 42profit start price 5820 weve reached 8260 ✅quick profit 42 to all vip membersin just 20 minutes congrats vip members shared at 20 feb 0215 pm est as per newyork timezone to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-02-20 19:43:35+00:00 1.0 1342400398 23805 pump result mtl 24profitproof start price 1454 weve reached 1800 ✅quick profit 24 to all vip membersin just 1 minutes congrats vip members shared at 9 feb 0704 am est as per newyork timezone to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-02-09 14:50:13+00:00 1.0 1342400398 23804 pump result mtl 24profit start price 1454 weve reached 1800 ✅quick profit 24 to all vip membersin just 1 minutes congrats vip members shared at 9 feb 0704 am est as per newyork timezone to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-02-09 12:48:22+00:00 1.0 1342400398 23345 pump result wabi 32profitproof start price 300 weve reached 395 ✅quick profit 32 in 3 minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-01-30 21:39:25+00:00 1.0 1342400398 23344 pump result wabi 32profit start price 300 weve reached 395 ✅quick profit 32 in 3 minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-01-30 21:37:45+00:00 1.0 1342400398 22429 january month profit summary ⏰ 010121 010921 ✅congratulations vips✅ ⏰ 1 january ✅crv 30 in 1 day 19 hours ✅uni 16 in 9 hours 36 minutes ✅sushi 24 in 1 day 16 hours ✅mdt 24 in 1 day 3 hours ✅rune 20 in 2 days 6 hours ✅ksm 60 in few days ✅poly 20 in 3 hours ✅rune 8 in 4 hours 2 minutes ✅xlm 11 in 1 day 10 hours ✅aave 14 in 1 day 22 hours ✅ast 24 in 3 days ⏰ 2 january ✅vib 28 in 3 days ✅ost 10 in 23 minutes ✅srm 10 in 16 hours 28 minutes ✅stx 8 in 8 hours 21 minutes ✅mdt 10 in 16 hours 20 minutes ✅vib 10 in 2 hours 23 minutes ✅nebl 1000 in 1 minutes ⏰ 3 january ✅matic 10 in 1 hour 1 minute ✅mdt 18 in 2 hour 29 minutes ✅grs 24 in 9 minutes ✅ltc 14 in 18 hours 30 minutes ✅vet 18 in 24 hours ✅vib 12 in 4 hours 57 minutes ✅zec 10 in 2 hours 42 minutes ✅yfi 18 in 23 hours 6 minutes ✅ppt 18 in 28 minutes ✅unfi 7 in 5 minutes ✅rsr 9 in 43 minutes ✅vib 16 in 12 hours ⏰ 4 january ✅vet 45 in 24 hours ✅ltc 30 in 1 day 6 hours ✅crv 28 in 1 day 11 hours ✅matic 30 in 1 day 5 hours ✅eos 27 in 1 day 7 hours ✅yfi 38 in 1 day 10 hours ✅sushi 48 in 4 days 21 hours ✅dlt 24 in 1 day 7 hours ✅lrc 100 in 5 days 1 hour ✅zec 22 in 18 hours ✅aave 40 in 4 days 12 hours ✅lto 22 in 25 minutes ✅ast 30 in 1 day 17 hours ✅bnb 26 in 2 days 10 hours ✅dock 16 in 18 minutes ✅rsr 18 in 17 hours 18 minutes ✅fio 20 in 7 minutes ✅matic 40 in 1 day 20 hours ✅xlm 25 in 4 days ✅srm 20 in 3 days ✅iota 54 in 4 days ⏰ 5 january ✅rune 16 in 17 hours ✅ftm 20 in 5 days ✅lto 35 in 20 hours ✅mdt 16 in 9 hours 28 minutes ✅rune 15 in 3 days 22 hours ✅ast 32 in 2 days 16 hours ✅rlc 12 in 19 hours ✅srm 15 in 18 hours ✅xlm 30 in 5 days ✅tfuel 7 in 7 hours ✅uni 15 in 4 days ✅aave 30 in 5 days ✅band 7 in 1 hour 59 minutes ✅ast 30 in 3 days 5 hours ✅rsr 30 in 2 days 2 hours ⏰ 6 january ✅xem 55 in 12 hours ✅chz 14 in 18 minutes ✅snt 50 in 4 hours 16 minutes ✅nano 30 in 2 hours 49 minutes ✅mdt 6 in 16 hours ✅rlc 15 in 1 day 23 hours ✅crv 15 in 4 days ✅eos 15 in 3 days 21 hours ✅uma 5 in 13 hours ✅bqx 7 in 7 minutes ✅rdn 7 in 3 minutes ✅matic 15 in 23 minutes ✅mkr 7 in 3 minutes ✅ftm 6 in 11 hours ⏰ 7 january ✅sol 7 in 7 minutes ✅snt 15 in 1 hours 20 minutes ✅uma 12 in 1 day 2 hours ✅ftm 14 in 16 hours 11 minutes ✅rlc 15 in 13 hours ✅mana 58 in 18 hours 22 minutes ✅yfi 50 in 4 days 20 hours ✅sol 25 in 2 hours 44 minutes ✅nano 56 in 9 hours 35 minutes ✅bqx 28 in 22 hours ✅xvs 30 in 1 day 7 hours ⏰ 8 january ✅sol 52 in 23 hours 50 minutes ✅hbar 78 in 3 days 2 hours ✅ppt 52 in 4 days 22 hours ✅vib 45 in few days ⏰ 9 january ✅avax 64 in few days ✅bcpt 50 in 2 days ✅trx 8 in 1 hours 38 minutes ✅mkr 38 in 4 hours 37 minutes ✅gvt 38 in 10 hours 19 minutes ✅rdn 38 in 2 hours ✅btg 15 in 4 hours 20 minutes ✅zec 10 in 5 hours 1 minutes ✅evx 9 in 1 hours 14 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️80 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ⏰ december profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2021-01-14 18:28:12+00:00 1.0 1342400398 22330 january month profit summary ⏰ 010121 010921 ✅congratulations vips✅ ⏰ 1 january ✅crv 30 in 1 day 19 hours ✅uni 16 in 9 hours 36 minutes ✅sushi 24 in 1 day 16 hours ✅mdt 24 in 1 day 3 hours ✅rune 20 in 2 days 6 hours ✅ksm 60 in few days ✅poly 20 in 3 hours ✅rune 8 in 4 hours 2 minutes ✅xlm 11 in 1 day 10 hours ✅aave 14 in 1 day 22 hours ✅ast 24 in 3 days ⏰ 2 january ✅vib 28 in 3 days ✅ost 10 in 23 minutes ✅srm 10 in 16 hours 28 minutes ✅stx 8 in 8 hours 21 minutes ✅mdt 10 in 16 hours 20 minutes ✅vib 10 in 2 hours 23 minutes ✅nebl 1000 in 1 minutes ⏰ 3 january ✅matic 10 in 1 hour 1 minute ✅mdt 18 in 2 hour 29 minutes ✅grs 24 in 9 minutes ✅ltc 14 in 18 hours 30 minutes ✅vet 18 in 24 hours ✅vib 12 in 4 hours 57 minutes ✅zec 10 in 2 hours 42 minutes ✅yfi 18 in 23 hours 6 minutes ✅ppt 18 in 28 minutes ✅unfi 7 in 5 minutes ✅rsr 9 in 43 minutes ✅vib 16 in 12 hours ⏰ 4 january ✅vet 45 in 24 hours ✅ltc 30 in 1 day 6 hours ✅crv 28 in 1 day 11 hours ✅matic 30 in 1 day 5 hours ✅eos 27 in 1 day 7 hours ✅yfi 38 in 1 day 10 hours ✅sushi 48 in 4 days 21 hours ✅dlt 24 in 1 day 7 hours ✅lrc 100 in 5 days 1 hour ✅zec 22 in 18 hours ✅aave 40 in 4 days 12 hours ✅lto 22 in 25 minutes ✅ast 30 in 1 day 17 hours ✅bnb 26 in 2 days 10 hours ✅dock 16 in 18 minutes ✅rsr 18 in 17 hours 18 minutes ✅fio 20 in 7 minutes ✅matic 40 in 1 day 20 hours ✅xlm 25 in 4 days ✅srm 20 in 3 days ✅iota 54 in 4 days ⏰ 5 january ✅rune 16 in 17 hours ✅ftm 20 in 5 days ✅lto 35 in 20 hours ✅mdt 16 in 9 hours 28 minutes ✅rune 15 in 3 days 22 hours ✅ast 32 in 2 days 16 hours ✅rlc 12 in 19 hours ✅srm 15 in 18 hours ✅xlm 30 in 5 days ✅tfuel 7 in 7 hours ✅uni 15 in 4 days ✅aave 30 in 5 days ✅band 7 in 1 hour 59 minutes ✅ast 30 in 3 days 5 hours ✅rsr 30 in 2 days 2 hours ⏰ 6 january ✅xem 55 in 12 hours ✅chz 14 in 18 minutes ✅snt 50 in 4 hours 16 minutes ✅nano 30 in 2 hours 49 minutes ✅mdt 6 in 16 hours ✅rlc 15 in 1 day 23 hours ✅crv 15 in 4 days ✅eos 15 in 3 days 21 hours ✅uma 5 in 13 hours ✅bqx 7 in 7 minutes ✅rdn 7 in 3 minutes ✅matic 15 in 23 minutes ✅mkr 7 in 3 minutes ✅ftm 6 in 11 hours ⏰ 7 january ✅sol 7 in 7 minutes ✅snt 15 in 1 hours 20 minutes ✅uma 12 in 1 day 2 hours ✅ftm 14 in 16 hours 11 minutes ✅rlc 15 in 13 hours ✅mana 58 in 18 hours 22 minutes ✅yfi 50 in 4 days 20 hours ✅sol 25 in 2 hours 44 minutes ✅nano 56 in 9 hours 35 minutes ✅bqx 28 in 22 hours ✅xvs 30 in 1 day 7 hours ⏰ 8 january ✅sol 52 in 23 hours 50 minutes ✅hbar 78 in 3 days 2 hours ✅ppt 52 in 4 days 22 hours ✅vib 45 in few days ⏰ 9 january ✅avax 64 in few days ✅bcpt 50 in 2 days ✅trx 8 in 1 hours 38 minutes ✅mkr 38 in 4 hours 37 minutes ✅gvt 38 in 10 hours 19 minutes ✅rdn 38 in 2 hours ✅btg 15 in 4 hours 20 minutes ✅zec 10 in 5 hours 1 minutes ✅evx 9 in 1 hours 14 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️80 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ⏰ december profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2021-01-12 13:21:29+00:00 1.0 1342400398 22321 january month profit summary ⏰ 010121 010921 ✅congratulations vips✅ ⏰ 1 january ✅crv 30 in 1 day 19 hours ✅uni 16 in 9 hours 36 minutes ✅sushi 24 in 1 day 16 hours ✅mdt 24 in 1 day 3 hours ✅rune 20 in 2 days 6 hours ✅ksm 60 in few days ✅poly 20 in 3 hours ✅rune 8 in 4 hours 2 minutes ✅xlm 11 in 1 day 10 hours ✅aave 14 in 1 day 22 hours ✅ast 24 in 3 days ⏰ 2 january ✅vib 28 in 3 days ✅ost 10 in 23 minutes ✅srm 10 in 16 hours 28 minutes ✅stx 8 in 8 hours 21 minutes ✅mdt 10 in 16 hours 20 minutes ✅vib 10 in 2 hours 23 minutes ✅nebl 1000 in 1 minutes ⏰ 3 january ✅matic 10 in 1 hour 1 minute ✅mdt 18 in 2 hour 29 minutes ✅grs 24 in 9 minutes ✅ltc 14 in 18 hours 30 minutes ✅vet 18 in 24 hours ✅vib 12 in 4 hours 57 minutes ✅zec 10 in 2 hours 42 minutes ✅yfi 18 in 23 hours 6 minutes ✅ppt 18 in 28 minutes ✅unfi 7 in 5 minutes ✅rsr 9 in 43 minutes ✅vib 16 in 12 hours ⏰ 4 january ✅vet 45 in 24 hours ✅ltc 30 in 1 day 6 hours ✅crv 28 in 1 day 11 hours ✅matic 30 in 1 day 5 hours ✅eos 27 in 1 day 7 hours ✅yfi 38 in 1 day 10 hours ✅sushi 48 in 4 days 21 hours ✅dlt 24 in 1 day 7 hours ✅lrc 100 in 5 days 1 hour ✅zec 22 in 18 hours ✅aave 40 in 4 days 12 hours ✅lto 22 in 25 minutes ✅ast 30 in 1 day 17 hours ✅bnb 26 in 2 days 10 hours ✅dock 16 in 18 minutes ✅rsr 18 in 17 hours 18 minutes ✅fio 20 in 7 minutes ✅matic 40 in 1 day 20 hours ✅xlm 25 in 4 days ✅srm 20 in 3 days ✅iota 54 in 4 days ⏰ 5 january ✅rune 16 in 17 hours ✅ftm 20 in 5 days ✅lto 35 in 20 hours ✅mdt 16 in 9 hours 28 minutes ✅rune 15 in 3 days 22 hours ✅ast 32 in 2 days 16 hours ✅rlc 12 in 19 hours ✅srm 15 in 18 hours ✅xlm 30 in 5 days ✅tfuel 7 in 7 hours ✅uni 15 in 4 days ✅aave 30 in 5 days ✅band 7 in 1 hour 59 minutes ✅ast 30 in 3 days 5 hours ✅rsr 30 in 2 days 2 hours ⏰ 6 january ✅xem 55 in 12 hours ✅chz 14 in 18 minutes ✅snt 50 in 4 hours 16 minutes ✅nano 30 in 2 hours 49 minutes ✅mdt 6 in 16 hours ✅rlc 15 in 1 day 23 hours ✅crv 15 in 4 days ✅eos 15 in 3 days 21 hours ✅uma 5 in 13 hours ✅bqx 7 in 7 minutes ✅rdn 7 in 3 minutes ✅matic 15 in 23 minutes ✅mkr 7 in 3 minutes ✅ftm 6 in 11 hours ⏰ 7 january ✅sol 7 in 7 minutes ✅snt 15 in 1 hours 20 minutes ✅uma 12 in 1 day 2 hours ✅ftm 14 in 16 hours 11 minutes ✅rlc 15 in 13 hours ✅mana 58 in 18 hours 22 minutes ✅yfi 50 in 4 days 20 hours ✅sol 25 in 2 hours 44 minutes ✅nano 56 in 9 hours 35 minutes ✅bqx 28 in 22 hours ✅xvs 30 in 1 day 7 hours ⏰ 8 january ✅sol 52 in 23 hours 50 minutes ✅hbar 78 in 3 days 2 hours ✅ppt 52 in 4 days 22 hours ✅vib 45 in few days ⏰ 9 january ✅avax 64 in few days ✅bcpt 50 in 2 days ✅trx 8 in 1 hours 38 minutes ✅mkr 38 in 4 hours 37 minutes ✅gvt 38 in 10 hours 19 minutes ✅rdn 38 in 2 hours ✅btg 15 in 4 hours 20 minutes ✅zec 10 in 5 hours 1 minutes ✅evx 9 in 1 hours 14 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️80 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ⏰ december profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2021-01-12 09:37:42+00:00 1.0 1342400398 22304 january month profit summary ⏰ 010121 010921 ✅congratulations vips✅ ⏰ 1 january ✅crv 30 in 1 day 19 hours ✅uni 16 in 9 hours 36 minutes ✅sushi 24 in 1 day 16 hours ✅mdt 24 in 1 day 3 hours ✅rune 20 in 2 days 6 hours ✅ksm 60 in few days ✅poly 20 in 3 hours ✅rune 8 in 4 hours 2 minutes ✅xlm 11 in 1 day 10 hours ✅aave 14 in 1 day 22 hours ✅ast 24 in 3 days ⏰ 2 january ✅vib 28 in 3 days ✅ost 10 in 23 minutes ✅srm 10 in 16 hours 28 minutes ✅stx 8 in 8 hours 21 minutes ✅mdt 10 in 16 hours 20 minutes ✅vib 10 in 2 hours 23 minutes ✅nebl 1000 in 1 minutes ⏰ 3 january ✅matic 10 in 1 hour 1 minute ✅mdt 18 in 2 hour 29 minutes ✅grs 24 in 9 minutes ✅ltc 14 in 18 hours 30 minutes ✅vet 18 in 24 hours ✅vib 12 in 4 hours 57 minutes ✅zec 10 in 2 hours 42 minutes ✅yfi 18 in 23 hours 6 minutes ✅ppt 18 in 28 minutes ✅unfi 7 in 5 minutes ✅rsr 9 in 43 minutes ✅vib 16 in 12 hours ⏰ 4 january ✅vet 45 in 24 hours ✅ltc 30 in 1 day 6 hours ✅crv 28 in 1 day 11 hours ✅matic 30 in 1 day 5 hours ✅eos 27 in 1 day 7 hours ✅yfi 38 in 1 day 10 hours ✅sushi 48 in 4 days 21 hours ✅dlt 24 in 1 day 7 hours ✅lrc 100 in 5 days 1 hour ✅zec 22 in 18 hours ✅aave 40 in 4 days 12 hours ✅lto 22 in 25 minutes ✅ast 30 in 1 day 17 hours ✅bnb 26 in 2 days 10 hours ✅dock 16 in 18 minutes ✅rsr 18 in 17 hours 18 minutes ✅fio 20 in 7 minutes ✅matic 40 in 1 day 20 hours ✅xlm 25 in 4 days ✅srm 20 in 3 days ✅iota 54 in 4 days ⏰ 5 january ✅rune 16 in 17 hours ✅ftm 20 in 5 days ✅lto 35 in 20 hours ✅mdt 16 in 9 hours 28 minutes ✅rune 15 in 3 days 22 hours ✅ast 32 in 2 days 16 hours ✅rlc 12 in 19 hours ✅srm 15 in 18 hours ✅xlm 30 in 5 days ✅tfuel 7 in 7 hours ✅uni 15 in 4 days ✅aave 30 in 5 days ✅band 7 in 1 hour 59 minutes ✅ast 30 in 3 days 5 hours ✅rsr 30 in 2 days 2 hours ⏰ 6 january ✅xem 55 in 12 hours ✅chz 14 in 18 minutes ✅snt 50 in 4 hours 16 minutes ✅nano 30 in 2 hours 49 minutes ✅mdt 6 in 16 hours ✅rlc 15 in 1 day 23 hours ✅crv 15 in 4 days ✅eos 15 in 3 days 21 hours ✅uma 5 in 13 hours ✅bqx 7 in 7 minutes ✅rdn 7 in 3 minutes ✅matic 15 in 23 minutes ✅mkr 7 in 3 minutes ✅ftm 6 in 11 hours ⏰ 7 january ✅sol 7 in 7 minutes ✅snt 15 in 1 hours 20 minutes ✅uma 12 in 1 day 2 hours ✅ftm 14 in 16 hours 11 minutes ✅rlc 15 in 13 hours ✅mana 58 in 18 hours 22 minutes ✅yfi 50 in 4 days 20 hours ✅sol 25 in 2 hours 44 minutes ✅nano 56 in 9 hours 35 minutes ✅bqx 28 in 22 hours ✅xvs 30 in 1 day 7 hours ⏰ 8 january ✅sol 52 in 23 hours 50 minutes ✅hbar 78 in 3 days 2 hours ✅ppt 52 in 4 days 22 hours ✅vib 45 in few days ⏰ 9 january ✅avax 64 in few days ✅bcpt 50 in 2 days ✅trx 8 in 1 hours 38 minutes ✅mkr 38 in 4 hours 37 minutes ✅gvt 38 in 10 hours 19 minutes ✅rdn 38 in 2 hours ✅btg 15 in 4 hours 20 minutes ✅zec 10 in 5 hours 1 minutes ✅evx 9 in 1 hours 14 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️80 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ⏰ december profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2021-01-11 18:13:33+00:00 1.0 1342400398 22269 january month profit summary ⏰ 010121 010921 ✅congratulations vips✅ ⏰ 1 january ✅crv 30 in 1 day 19 hours ✅uni 16 in 9 hours 36 minutes ✅sushi 24 in 1 day 16 hours ✅mdt 24 in 1 day 3 hours ✅rune 20 in 2 days 6 hours ✅ksm 60 in few days ✅poly 20 in 3 hours ✅rune 8 in 4 hours 2 minutes ✅xlm 11 in 1 day 10 hours ✅aave 14 in 1 day 22 hours ✅ast 24 in 3 days ⏰ 2 january ✅vib 28 in 3 days ✅ost 10 in 23 minutes ✅srm 10 in 16 hours 28 minutes ✅stx 8 in 8 hours 21 minutes ✅mdt 10 in 16 hours 20 minutes ✅vib 10 in 2 hours 23 minutes ✅nebl 1000 in 1 minutes ⏰ 3 january ✅matic 10 in 1 hour 1 minute ✅mdt 18 in 2 hour 29 minutes ✅grs 24 in 9 minutes ✅ltc 14 in 18 hours 30 minutes ✅vet 18 in 24 hours ✅vib 12 in 4 hours 57 minutes ✅zec 10 in 2 hours 42 minutes ✅yfi 18 in 23 hours 6 minutes ✅ppt 18 in 28 minutes ✅unfi 7 in 5 minutes ✅rsr 9 in 43 minutes ✅vib 16 in 12 hours ⏰ 4 january ✅vet 45 in 24 hours ✅ltc 30 in 1 day 6 hours ✅crv 28 in 1 day 11 hours ✅matic 30 in 1 day 5 hours ✅eos 27 in 1 day 7 hours ✅yfi 38 in 1 day 10 hours ✅sushi 48 in 4 days 21 hours ✅dlt 24 in 1 day 7 hours ✅lrc 100 in 5 days 1 hour ✅zec 22 in 18 hours ✅aave 40 in 4 days 12 hours ✅lto 22 in 25 minutes ✅ast 30 in 1 day 17 hours ✅bnb 26 in 2 days 10 hours ✅dock 16 in 18 minutes ✅rsr 18 in 17 hours 18 minutes ✅fio 20 in 7 minutes ✅matic 40 in 1 day 20 hours ✅xlm 25 in 4 days ✅srm 20 in 3 days ✅iota 54 in 4 days ⏰ 5 january ✅rune 16 in 17 hours ✅ftm 20 in 5 days ✅lto 35 in 20 hours ✅mdt 16 in 9 hours 28 minutes ✅rune 15 in 3 days 22 hours ✅ast 32 in 2 days 16 hours ✅rlc 12 in 19 hours ✅srm 15 in 18 hours ✅xlm 30 in 5 days ✅tfuel 7 in 7 hours ✅uni 15 in 4 days ✅aave 30 in 5 days ✅band 7 in 1 hour 59 minutes ✅ast 30 in 3 days 5 hours ✅rsr 30 in 2 days 2 hours ⏰ 6 january ✅xem 55 in 12 hours ✅chz 14 in 18 minutes ✅snt 50 in 4 hours 16 minutes ✅nano 30 in 2 hours 49 minutes ✅mdt 6 in 16 hours ✅rlc 15 in 1 day 23 hours ✅crv 15 in 4 days ✅eos 15 in 3 days 21 hours ✅uma 5 in 13 hours ✅bqx 7 in 7 minutes ✅rdn 7 in 3 minutes ✅matic 15 in 23 minutes ✅mkr 7 in 3 minutes ✅ftm 6 in 11 hours ⏰ 7 january ✅sol 7 in 7 minutes ✅snt 15 in 1 hours 20 minutes ✅uma 12 in 1 day 2 hours ✅ftm 14 in 16 hours 11 minutes ✅rlc 15 in 13 hours ✅mana 58 in 18 hours 22 minutes ✅yfi 50 in 4 days 20 hours ✅sol 25 in 2 hours 44 minutes ✅nano 56 in 9 hours 35 minutes ✅bqx 28 in 22 hours ✅xvs 30 in 1 day 7 hours ⏰ 8 january ✅sol 52 in 23 hours 50 minutes ✅hbar 78 in 3 days 2 hours ✅ppt 52 in 4 days 22 hours ✅vib 45 in few days ⏰ 9 january ✅avax 64 in few days ✅bcpt 50 in 2 days ✅trx 8 in 1 hours 38 minutes ✅mkr 38 in 4 hours 37 minutes ✅gvt 38 in 10 hours 19 minutes ✅rdn 38 in 2 hours ✅btg 15 in 4 hours 20 minutes ✅zec 10 in 5 hours 1 minutes ✅evx 9 in 1 hours 14 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️80 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ⏰ december profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2021-01-10 19:23:17+00:00 1.0 1342400398 22266 january month profit summary ⏰ 010121 010921 ✅congratulations vips✅ ⏰ 1 january ✅crv 30 in 1 day 19 hours ✅uni 16 in 9 hours 36 minutes ✅sushi 24 in 1 day 16 hours ✅mdt 24 in 1 day 3 hours ✅rune 20 in 2 days 6 hours ✅ksm 60 in few days ✅poly 20 in 3 hours ✅rune 8 in 4 hours 2 minutes ✅xlm 11 in 1 day 10 hours ✅aave 14 in 1 day 22 hours ✅ast 24 in 3 days ⏰ 2 january ✅vib 28 in 3 days ✅ost 10 in 23 minutes ✅srm 10 in 16 hours 28 minutes ✅stx 8 in 8 hours 21 minutes ✅mdt 10 in 16 hours 20 minutes ✅vib 10 in 2 hours 23 minutes ✅nebl 1000 in 1 minutes ⏰ 3 january ✅matic 10 in 1 hour 1 minute ✅mdt 18 in 2 hour 29 minutes ✅grs 24 in 9 minutes ✅ltc 14 in 18 hours 30 minutes ✅vet 18 in 24 hours ✅vib 12 in 4 hours 57 minutes ✅zec 10 in 2 hours 42 minutes ✅yfi 18 in 23 hours 6 minutes ✅ppt 18 in 28 minutes ✅unfi 7 in 5 minutes ✅rsr 9 in 43 minutes ✅vib 16 in 12 hours ⏰ 4 january ✅vet 45 in 24 hours ✅ltc 30 in 1 day 6 hours ✅crv 28 in 1 day 11 hours ✅matic 30 in 1 day 5 hours ✅eos 27 in 1 day 7 hours ✅yfi 38 in 1 day 10 hours ✅sushi 48 in 4 days 21 hours ✅dlt 24 in 1 day 7 hours ✅lrc 100 in 5 days 1 hour ✅zec 22 in 18 hours ✅aave 40 in 4 days 12 hours ✅lto 22 in 25 minutes ✅ast 30 in 1 day 17 hours ✅bnb 26 in 2 days 10 hours ✅dock 16 in 18 minutes ✅rsr 18 in 17 hours 18 minutes ✅fio 20 in 7 minutes ✅matic 40 in 1 day 20 hours ✅xlm 25 in 4 days ✅srm 20 in 3 days ✅iota 54 in 4 days ⏰ 5 january ✅rune 16 in 17 hours ✅ftm 20 in 5 days ✅lto 35 in 20 hours ✅mdt 16 in 9 hours 28 minutes ✅rune 15 in 3 days 22 hours ✅ast 32 in 2 days 16 hours ✅rlc 12 in 19 hours ✅srm 15 in 18 hours ✅xlm 30 in 5 days ✅tfuel 7 in 7 hours ✅uni 15 in 4 days ✅aave 30 in 5 days ✅band 7 in 1 hour 59 minutes ✅ast 30 in 3 days 5 hours ✅rsr 30 in 2 days 2 hours ⏰ 6 january ✅xem 55 in 12 hours ✅chz 14 in 18 minutes ✅snt 50 in 4 hours 16 minutes ✅nano 30 in 2 hours 49 minutes ✅mdt 6 in 16 hours ✅rlc 15 in 1 day 23 hours ✅crv 15 in 4 days ✅eos 15 in 3 days 21 hours ✅uma 5 in 13 hours ✅bqx 7 in 7 minutes ✅rdn 7 in 3 minutes ✅matic 15 in 23 minutes ✅mkr 7 in 3 minutes ✅ftm 6 in 11 hours ⏰ 7 january ✅sol 7 in 7 minutes ✅snt 15 in 1 hours 20 minutes ✅uma 12 in 1 day 2 hours ✅ftm 14 in 16 hours 11 minutes ✅rlc 15 in 13 hours ✅mana 58 in 18 hours 22 minutes ✅yfi 50 in 4 days 20 hours ✅sol 25 in 2 hours 44 minutes ✅nano 56 in 9 hours 35 minutes ✅bqx 28 in 22 hours ✅xvs 30 in 1 day 7 hours ⏰ 8 january ✅sol 52 in 23 hours 50 minutes ✅hbar 78 in 3 days 2 hours ✅ppt 52 in 4 days 22 hours ✅vib 45 in few days ⏰ 9 january ✅avax 64 in few days ✅bcpt 50 in 2 days ✅trx 8 in 1 hours 38 minutes ✅mkr 38 in 4 hours 37 minutes ✅gvt 38 in 10 hours 19 minutes ✅rdn 38 in 2 hours ✅btg 15 in 4 hours 20 minutes ✅zec 10 in 5 hours 1 minutes ✅evx 9 in 1 hours 14 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️80 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ⏰ december profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2021-01-10 18:55:07+00:00 1.0 1342400398 22188 amazing one more huge profit for vip member in 4 hour 37 minutes 2021-01-09 18:45:29+00:00 1.0 1342400398 22184 amazing one more huge profit for vip member in 1 hour 48 minutes 2021-01-09 15:18:15+00:00 1.0 1342400398 21877 pump result nebl x profit proof start price 2749 weve reached 27810 ✅quick profit 1000 in 1 minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-01-03 07:00:52+00:00 1.0 1342400398 21875 pump result nebl x profit proof start price 2749 weve reached 27810 ✅quick profit 1000 in 1 minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-01-02 21:45:43+00:00 1.0 1342400398 21872 pump result nebl x profit proof start price 2749 weve reached 27810 ✅quick profit 1000 in 1 minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2021-01-02 21:08:54+00:00 1.0 1342400398 21866 5 minutes left till the binance com pump 2021-01-02 20:55:57+00:00 1.0 1342400398 21865 10 minutes left carefully study these steps 1 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 2 keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 3 like mentioned above share positive news about the coin on social media to create an even bigger amount of fomo fear of missing out 2021-01-02 20:50:29+00:00 1.0 1342400398 21861 ⏰ 45 minutes left for our mega pump event ‼️ ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-01-02 20:16:02+00:00 1.0 1342400398 21860 ⏰ 60 minutes left for our mega pump event ‼️ ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2021-01-02 20:03:57+00:00 1.0 1342400398 21747 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 100 2020-12-31 17:00:54+00:00 1.0 1342400398 21745 5 minutes left the next message will be the coin to buy target is 100+ 2020-12-31 16:55:19+00:00 1.0 1342400398 21744 15 minutes left be ready on binance 2020-12-31 16:45:14+00:00 1.0 1342400398 21743 ‼️30 minutes left for binance pump 2020-12-31 16:31:01+00:00 1.0 1342400398 21742 1 hour left until our pump on binance here are a few tips you should know before the pump we will be using the btc pairing on binance to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up if you are using market buy and plan to use your whole balance use anything less than 100 of your balance for example 75 to make sure it works lastly enjoy the ride up we can say for sure that this pump will be a 100 legit pump and our whales will do everything in their power to make sure every single member will profit from it 2020-12-31 15:58:18+00:00 1.0 1342400398 21741 ‼️1 hour 15 minutes left for binance pump 2020-12-31 15:46:31+00:00 1.0 1342400398 21690 amazing one more huge profit for vip member in 1 hour 3 minutes 2020-12-29 20:16:14+00:00 1.0 1342400398 21678 ‼️5 minutes left next post is the coin name 2020-12-29 17:55:37+00:00 1.0 1342400398 21637 amazing one more huge profit for vip member in 1 hour 22 minutes 2020-12-28 10:03:50+00:00 1.0 1342400398 21633 amazing one more huge profit for vip member in 4 hour 56 minutes 2020-12-28 09:48:22+00:00 1.0 1342400398 21609 december month profit summary ⏰ 120120 122320 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ⏰ 21 december ✅oxt 68 in 17 minutes ✅bcpt 30 in 2 hours ✅chz 25 in 36 minutes ⏰ 22 december ✅ankr 25 in 2 hours 2 minutes ✅inj 26 in 1 hour 39 minutes ✅tfuel 15 in 2 hours 21 minutes ✅gvt 16 in 17 minutes ✅brd 38 in 2 days 22 hours ✅gto 19 in 3 minutes ✅pnt 25 in 6 hours ⏰ 23 december ✅theta 18 in 13 hours ✅dock 8 in 21 minutes ✅yoyo 10 in 16 minutes ✅snx 25 in 7 hours 14 minutes ✅inj 50 in 1 day 1 hour ✅ppt 28 in 2 hours 39 minutes ✅tfuel 34 in 1 day 5 hours ✅mdt 10 in 3 hours ✅zil 25 in 15 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-27 20:43:14+00:00 1.0 1342400398 21563 amazing one more huge profit for vip member in 1 hour 10 minutes 2020-12-26 18:34:34+00:00 1.0 1342400398 21549 december month profit summary ⏰ 120120 122320 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ⏰ 21 december ✅oxt 68 in 17 minutes ✅bcpt 30 in 2 hours ✅chz 25 in 36 minutes ⏰ 22 december ✅ankr 25 in 2 hours 2 minutes ✅inj 26 in 1 hour 39 minutes ✅tfuel 15 in 2 hours 21 minutes ✅gvt 16 in 17 minutes ✅brd 38 in 2 days 22 hours ✅gto 19 in 3 minutes ✅pnt 25 in 6 hours ⏰ 23 december ✅theta 18 in 13 hours ✅dock 8 in 21 minutes ✅yoyo 10 in 16 minutes ✅snx 25 in 7 hours 14 minutes ✅inj 50 in 1 day 1 hour ✅ppt 28 in 2 hours 39 minutes ✅tfuel 34 in 1 day 5 hours ✅mdt 10 in 3 hours ✅zil 25 in 15 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-25 16:34:54+00:00 1.0 1342400398 21527 december month profit summary ⏰ 120120 122320 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ⏰ 21 december ✅oxt 68 in 17 minutes ✅bcpt 30 in 2 hours ✅chz 25 in 36 minutes ⏰ 22 december ✅ankr 25 in 2 hours 2 minutes ✅inj 26 in 1 hour 39 minutes ✅tfuel 15 in 2 hours 21 minutes ✅gvt 16 in 17 minutes ✅brd 38 in 2 days 22 hours ✅gto 19 in 3 minutes ✅pnt 25 in 6 hours ⏰ 23 december ✅theta 18 in 13 hours ✅dock 8 in 21 minutes ✅yoyo 10 in 16 minutes ✅snx 25 in 7 hours 14 minutes ✅inj 50 in 1 day 1 hour ✅ppt 28 in 2 hours 39 minutes ✅tfuel 34 in 1 day 5 hours ✅mdt 10 in 3 hours ✅zil 25 in 15 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-24 16:53:49+00:00 1.0 1342400398 21487 december month profit summary ⏰ 120120 122320 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ⏰ 21 december ✅oxt 68 in 17 minutes ✅bcpt 30 in 2 hours ✅chz 25 in 36 minutes ⏰ 22 december ✅ankr 25 in 2 hours 2 minutes ✅inj 26 in 1 hour 39 minutes ✅tfuel 15 in 2 hours 21 minutes ✅gvt 16 in 17 minutes ✅brd 38 in 2 days 22 hours ✅gto 19 in 3 minutes ✅pnt 25 in 6 hours ⏰ 23 december ✅theta 18 in 13 hours ✅dock 8 in 21 minutes ✅yoyo 10 in 16 minutes ✅snx 25 in 7 hours 14 minutes ✅inj 50 in 1 day 1 hour ✅ppt 28 in 2 hours 39 minutes ✅tfuel 34 in 1 day 5 hours ✅mdt 10 in 3 hours ✅zil 25 in 15 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-23 18:03:37+00:00 1.0 1342400398 21480 december month profit summary ⏰ 120120 122320 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ⏰ 21 december ✅oxt 68 in 17 minutes ✅bcpt 30 in 2 hours ✅chz 25 in 36 minutes ⏰ 22 december ✅ankr 25 in 2 hours 2 minutes ✅inj 26 in 1 hour 39 minutes ✅tfuel 15 in 2 hours 21 minutes ✅gvt 16 in 17 minutes ✅brd 38 in 2 days 22 hours ✅gto 19 in 3 minutes ✅pnt 25 in 6 hours ⏰ 23 december ✅theta 18 in 13 hours ✅dock 8 in 21 minutes ✅yoyo 10 in 16 minutes ✅snx 25 in 7 hours 14 minutes ✅inj 50 in 1 day 1 hour ✅ppt 28 in 2 hours 39 minutes ✅tfuel 34 in 1 day 5 hours ✅mdt 10 in 3 hours ✅zil 25 in 15 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-23 11:40:50+00:00 1.0 1342400398 21434 december month profit summary ⏰ 120120 122020 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-22 11:21:18+00:00 1.0 1342400398 21416 amazing one more huge profit for vip member in 1 hour 39 minutes 2020-12-22 05:07:22+00:00 1.0 1342400398 21408 amazing one more huge profit for vip member in 2 hour 2 minutes 2020-12-22 03:59:28+00:00 1.0 1342400398 21406 december month profit summary ⏰ 120120 122020 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-21 21:00:54+00:00 1.0 1342400398 21400 december month profit summary ⏰ 120120 122020 ✅congratulations vips✅ ✅last 18 days profit✅ ⏰ 19 december ✅rose 9 in 2 hours ✅tfuel 10 in 10 hours ✅snx 20 in 20 hours ✅algo 8 in 7 minutes ✅coti 25 in 1 day 19 hours ✅sand 6 in 1 minute ✅brd 6 in 1 minute ✅grs 250 in few minutes ✅tfuel 8 in 6 hours ✅rdn 6 in 2 minutes ✅vib 30 in 2 days ✅fet 20 in 1 day 16 hours ✅chz 8 in 2 hours ✅evx 16 in 10 minutes ✅via 16 in 5 minute ✅zil 48 in 3 days ✅omg 6 in 1 minutes ⏰ 20 december ✅ltc 30 in few days ✅rose 15 in 13 hours ✅poly 30 in 17 hours ✅xvs 17 in 21 hours ✅bts 42 in 10 minutes ✅akro 25 in 1 hour 15 minutes ✅tct 72 in 15 minutes ✅dock 25 in 15 minutes ✅go 15 in 2 minutes ✅gto 100 in 2 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️70 on vip membeship limited seats avaialble now ⏰ november profit summary⏰ ⏰ october profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-12-21 17:06:44+00:00 1.0 1342400398 21155 ⏰ less than 60 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-12-15 17:09:49+00:00 1.0 1342400398 21154 ⏰ less than 90 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-12-15 16:34:44+00:00 1.0 1342400398 20991 ⏰ 30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-12-10 17:29:03+00:00 1.0 1342400398 20990 ⏰ 45 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-12-10 17:16:26+00:00 1.0 1342400398 20846 only 5 minutes to go❗️ we have choosed best coin our whales will push it to the moon global fomo warming up next post will be the x2 coin login binance and keep an eye here 2020-12-06 17:55:10+00:00 1.0 1342400398 20845 ⏰ 15 minutes left for our mega pump event ‼️ ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-12-06 17:45:44+00:00 1.0 1342400398 20844 ⏰ 30 minutes left for our mega pump event ‼️ ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-12-06 17:30:45+00:00 1.0 1342400398 20843 ⏰ 60 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-12-06 17:00:57+00:00 1.0 1342400398 20444 november month profit summary ⏰ 110120 112120 ✅congratulations vips✅ ⏰ 15 november ✅bal 16 in 1 day 21 hours ✅enj 9 in 1 day ✅snm 16 in 12 hours ✅dia 12 in 15 hours ⏰ 16 november ✅trb 12 in 3 days ✅comp 15 in 1 day 14 hours ✅nas 6 in 1 minute ✅dia 25 in 1 day 14 hours ✅ltc 6 in 7 hours ✅waves 15 in 2 days ✅mdt 15 in 1 day 12 hours ✅snm 5 in 4 hours ✅vib 5 in 4 hours ✅etc 6 in 30 minutes ⏰ 17 november ✅ltc 15 in 1 day 4 hours ✅trb 32 in 5 days ✅vet 6 in 9 hours ⏰ 18 november ✅mdt 6 in 5 minutes ✅dgb 18 in 8 hours ✅btg 15 in 6 hours ✅sys 25 in 4 hours ⏰ 19 november ✅dock 5 in 6 minutes ✅gto 5 in 5 minutes ✅ark 13 in 42 minutes ✅dgb 6 in 8 hours ✅iotx 5 in 9 minutes ✅fet 12 in 5 days ✅mdt 6 in 1 day ✅tomo 6 in 21 hours ✅wpr 6 in 30 minutes ⏰ 20 november ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅mdt 6 in 1 day ✅qtum 6 in 4 days ✅ankr 25 in 21 hours ✅tomo 15 in 1 day 17 hours ✅yfii 21 in 2 days 14 hours ⏰ 21 november ✅bal 15 in 9 hours ✅xlm 15 in 1 day 16 hours ✅knc 6 in 21 hours ✅lto 10 in 1 day ✅sol 11 in 17 hours ✅ftm 10 in 1 day ✅ada 5 in 4 days ✅xlm 6 in 3 days ✅trx 6 in 1 day ✅bts 6 in 1 day 5 hours ✅gnt 6 in 1 day 23 hours ✅algo 12 in 4 days ✅band 12 in 5 days ✅link 6 in 1 day 7 hours ✅bnt 6 in 6 hours ✅bts 15 in 1 day 8 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-23 13:39:47+00:00 1.0 1342400398 20389 november month profit summary ⏰ 110120 112120 ✅congratulations vips✅ ⏰ 15 november ✅bal 16 in 1 day 21 hours ✅enj 9 in 1 day ✅snm 16 in 12 hours ✅dia 12 in 15 hours ⏰ 16 november ✅trb 12 in 3 days ✅comp 15 in 1 day 14 hours ✅nas 6 in 1 minute ✅dia 25 in 1 day 14 hours ✅ltc 6 in 7 hours ✅waves 15 in 2 days ✅mdt 15 in 1 day 12 hours ✅snm 5 in 4 hours ✅vib 5 in 4 hours ✅etc 6 in 30 minutes ⏰ 17 november ✅ltc 15 in 1 day 4 hours ✅trb 32 in 5 days ✅vet 6 in 9 hours ⏰ 18 november ✅mdt 6 in 5 minutes ✅dgb 18 in 8 hours ✅btg 15 in 6 hours ✅sys 25 in 4 hours ⏰ 19 november ✅dock 5 in 6 minutes ✅gto 5 in 5 minutes ✅ark 13 in 42 minutes ✅dgb 6 in 8 hours ✅iotx 5 in 9 minutes ✅fet 12 in 5 days ✅mdt 6 in 1 day ✅tomo 6 in 21 hours ✅wpr 6 in 30 minutes ⏰ 20 november ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅mdt 6 in 1 day ✅qtum 6 in 4 days ✅ankr 25 in 21 hours ✅tomo 15 in 1 day 17 hours ✅yfii 21 in 2 days 14 hours ⏰ 21 november ✅bal 15 in 9 hours ✅xlm 15 in 1 day 16 hours ✅knc 6 in 21 hours ✅lto 10 in 1 day ✅sol 11 in 17 hours ✅ftm 10 in 1 day ✅ada 5 in 4 days ✅xlm 6 in 3 days ✅trx 6 in 1 day ✅bts 6 in 1 day 5 hours ✅gnt 6 in 1 day 23 hours ✅algo 12 in 4 days ✅band 12 in 5 days ✅link 6 in 1 day 7 hours ✅bnt 6 in 6 hours ✅bts 15 in 1 day 8 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-22 17:59:05+00:00 1.0 1342400398 20318 november month profit summary ⏰ 110120 112120 ✅congratulations vips✅ ⏰ 15 november ✅bal 16 in 1 day 21 hours ✅enj 9 in 1 day ✅snm 16 in 12 hours ✅dia 12 in 15 hours ⏰ 16 november ✅trb 12 in 3 days ✅comp 15 in 1 day 14 hours ✅nas 6 in 1 minute ✅dia 25 in 1 day 14 hours ✅ltc 6 in 7 hours ✅waves 15 in 2 days ✅mdt 15 in 1 day 12 hours ✅snm 5 in 4 hours ✅vib 5 in 4 hours ✅etc 6 in 30 minutes ⏰ 17 november ✅ltc 15 in 1 day 4 hours ✅trb 32 in 5 days ✅vet 6 in 9 hours ⏰ 18 november ✅mdt 6 in 5 minutes ✅dgb 18 in 8 hours ✅btg 15 in 6 hours ✅sys 25 in 4 hours ⏰ 19 november ✅dock 5 in 6 minutes ✅gto 5 in 5 minutes ✅ark 13 in 42 minutes ✅dgb 6 in 8 hours ✅iotx 5 in 9 minutes ✅fet 12 in 5 days ✅mdt 6 in 1 day ✅tomo 6 in 21 hours ✅wpr 6 in 30 minutes ⏰ 20 november ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅mdt 6 in 1 day ✅qtum 6 in 4 days ✅ankr 25 in 21 hours ✅tomo 15 in 1 day 17 hours ✅yfii 21 in 2 days 14 hours ⏰ 21 november ✅bal 15 in 9 hours ✅xlm 15 in 1 day 16 hours ✅knc 6 in 21 hours ✅lto 10 in 1 day ✅sol 11 in 17 hours ✅ftm 10 in 1 day ✅ada 5 in 4 days ✅xlm 6 in 3 days ✅trx 6 in 1 day ✅bts 6 in 1 day 5 hours ✅gnt 6 in 1 day 23 hours ✅algo 12 in 4 days ✅band 12 in 5 days ✅link 6 in 1 day 7 hours ✅bnt 6 in 6 hours ✅bts 15 in 1 day 8 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-21 18:51:14+00:00 1.0 1342400398 20314 november month profit summary ⏰ 110120 112120 ✅congratulations vips✅ ⏰ 15 november ✅bal 16 in 1 day 21 hours ✅enj 9 in 1 day ✅snm 16 in 12 hours ✅dia 12 in 15 hours ⏰ 16 november ✅trb 12 in 3 days ✅comp 15 in 1 day 14 hours ✅nas 6 in 1 minute ✅dia 25 in 1 day 14 hours ✅ltc 6 in 7 hours ✅waves 15 in 2 days ✅mdt 15 in 1 day 12 hours ✅snm 5 in 4 hours ✅vib 5 in 4 hours ✅etc 6 in 30 minutes ⏰ 17 november ✅ltc 15 in 1 day 4 hours ✅trb 32 in 5 days ✅vet 6 in 9 hours ⏰ 18 november ✅mdt 6 in 5 minutes ✅dgb 18 in 8 hours ✅btg 15 in 6 hours ✅sys 25 in 4 hours ⏰ 19 november ✅dock 5 in 6 minutes ✅gto 5 in 5 minutes ✅ark 13 in 42 minutes ✅dgb 6 in 8 hours ✅iotx 5 in 9 minutes ✅fet 12 in 5 days ✅mdt 6 in 1 day ✅tomo 6 in 21 hours ✅wpr 6 in 30 minutes ⏰ 20 november ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ✅mdt 6 in 1 day ✅qtum 6 in 4 days ✅ankr 25 in 21 hours ✅tomo 15 in 1 day 17 hours ✅yfii 21 in 2 days 14 hours ⏰ 21 november ✅bal 15 in 9 hours ✅xlm 15 in 1 day 16 hours ✅knc 6 in 21 hours ✅lto 10 in 1 day ✅sol 11 in 17 hours ✅ftm 10 in 1 day ✅ada 5 in 4 days ✅xlm 6 in 3 days ✅trx 6 in 1 day ✅bts 6 in 1 day 5 hours ✅gnt 6 in 1 day 23 hours ✅algo 12 in 4 days ✅band 12 in 5 days ✅link 6 in 1 day 7 hours ✅bnt 6 in 6 hours ✅bts 15 in 1 day 8 hours ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-21 15:58:59+00:00 1.0 1342400398 20272 november month profit summary ⏰ 110120 112020 ✅congratulations vips✅ ⏰ 15 november ✅bal 16 in 1 day 21 hours ✅enj 9 in 1 day ✅snm 16 in 12 hours ✅dia 12 in 15 hours ⏰ 16 november ✅trb 12 in 3 days ✅comp 15 in 1 day 14 hours ✅nas 6 in 1 minute ✅dia 25 in 1 day 14 hours ✅ltc 6 in 7 hours ✅waves 15 in 2 days ✅mdt 15 in 1 day 12 hours ✅snm 5 in 4 hours ✅vib 5 in 4 hours ✅etc 6 in 30 minutes ⏰ 17 november ✅ltc 15 in 1 day 4 hours ✅trb 32 in 5 days ✅vet 6 in 9 hours ⏰ 18 november ✅mdt 6 in 5 minutes ✅dgb 18 in 8 hours ✅btg 15 in 6 hours ✅sys 25 in 4 hours ⏰ 19 november ✅dock 5 in 6 minutes ✅gto 5 in 5 minutes ✅ark 13 in 42 minutes ✅dgb 6 in 8 hours ✅iotx 5 in 9 minutes ✅fet 12 in 5 days ✅mdt 6 in 1 day ✅tomo 6 in 21 hours ✅wpr 6 in 30 minutes ⏰ 20 november ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ⏰ october profit summary⏰ ⏰ september profit summary⏰ ⏰ august profit summary⏰ ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-20 17:25:38+00:00 1.0 1342400398 20255 november month profit summary ⏰ 110120 112020 ✅congratulations vips✅ ⏰ 15 november ✅bal 16 in 1 day 21 hours ✅enj 9 in 1 day ✅snm 16 in 12 hours ✅dia 12 in 15 hours ⏰ 16 november ✅trb 12 in 3 days ✅comp 15 in 1 day 14 hours ✅nas 6 in 1 minute ✅dia 25 in 1 day 14 hours ✅ltc 6 in 7 hours ✅waves 15 in 2 days ✅mdt 15 in 1 day 12 hours ✅snm 5 in 4 hours ✅vib 5 in 4 hours ✅etc 6 in 30 minutes ⏰ 17 november ✅ltc 15 in 1 day 4 hours ✅trb 32 in 5 days ✅vet 6 in 9 hours ⏰ 18 november ✅mdt 6 in 5 minutes ✅dgb 18 in 8 hours ✅btg 15 in 6 hours ✅sys 25 in 4 hours ⏰ 19 november ✅dock 5 in 6 minutes ✅gto 5 in 5 minutes ✅ark 13 in 42 minutes ✅dgb 6 in 8 hours ✅iotx 5 in 9 minutes ✅fet 12 in 5 days ✅mdt 6 in 1 day ✅tomo 6 in 21 hours ✅wpr 6 in 30 minutes ⏰ 20 november ✅ankr 5 in 14 minutes ✅rsr 15 in 8 days ✅yfii 12 in 1 day 21 hours ✅mth 14 in 1 hour 55 minutes ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ⏰ october profit summary⏰ ⏰ september profit summary⏰ ⏰ august profit summary⏰ ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-20 03:30:26+00:00 1.0 1342400398 20189 november month profit summary ⏰ 110120 111420 ✅congratulations vips✅ ⏰ 1 november ✅vet 9 in 10 hours ✅yoyo 27 in 1 minute pump result ⏰ 2 november ✅nmr 45 in 4 days ✅coti 6 in 6 hours ✅dlt 12 in 13 hours ✅theta 10 in 13 hours ✅xzc 12 in 4 hours ✅dlt 22 in 14 hours ✅mdt 7 in 1 day ✅ardr 62 in 1 minute pump result ⏰ 3 november ✅dlt 20 in 1 hours 48 minutes ⏰ 4 november ✅ppt 6 in 1 minute ✅appc 21 in 1 minute ⏰ 5 november ✅nas 20 in 2 minutes ✅ankr 32 in 3 days ✅rcn 17 in 45 minutes ✅oax 20 in 1 minute ✅snx 13 in 3 hours ⏰ 6 november ✅nas 30 in 24 hours ✅snx 20 in 12 hours ✅cvc 44 in 9 hours ✅ftm 15 in 14 hours ✅tct 30 in 1 hour 41 minutes ✅ada 13 in 7 hour 27 minutes ✅dlt 32 in 18 hours ⏰ 7 november ✅arpa 6 in 1 minute ✅neo 6 in 19 hours ✅egld 6 in 1 day ✅fet 6 in 7 hours ✅zrx 6 in 16 hours ✅vet 12 in 2 days ✅snm 24 in 11 hours ✅coti 5 in 5 hours ✅sushi 6 in 2 hours ✅ftm 25 in 1 day 4 hours ✅qtum 6 in 1 day 10 hours ✅sxp 12 in 4 days ✅ocean 12 in 3 days ✅snx 6 in 2 hours ✅snx 25 in 1 day 11 hours ✅vib 6 in 4 hours ✅fet 15 in 21 hours ✅eos 6 in 1 day 2 hours ✅mdt 14 in 1 day 13 hours ✅adx 15 in 6 hours ✅sxp 21 in 4 days ✅arpa 15 in 22 hours ✅snm 6 in 1 minute ⏰ 8 november ✅mdt 25 in 2 days ✅pnt 5 in 5 hours ✅vib 14 in 19 hours ⏰ 9 november ✅dnt 25 in 5 hours ⏰ 10 november ✅dock 25 in 2 days ✅gnt 25 in 7 hours ✅ogn 20 in 16 minutes ✅dlt 32 in 1 day 2 hours ✅dock 14 in 1 day 10 hours ✅cos 5 in 4 hours ✅matic 6 in 21 hours ✅ocean 21 in 6 days ✅poly 15 in 1 hour 25 minutes ✅vib 6 in 1 day 9 hours ✅vet 6 in 8 hours ✅strat 25 in 7 days ✅gnt 25 in 7 hours ✅snt 15 in 3 days ✅beam 6 in 4 hours ✅strat 15 in 7 hours ✅mdt 11 in 1 day ✅nxs 6 in 15 minutes ✅matic 6 in 13 hours ✅ogn 15 in 16 minutes ✅rsr 6 in 7 minutes ⏰ 11 november ✅ant 20 in 3 days ✅arpa 31 in 3 days ✅lrc 6 in 2 hours ✅vib 25 in 3 days ✅ogn 25 in 5 hours ✅xem 21 in 12 days ✅lrc 15 in 3 hours ✅vite 15 in 5 days ✅coti 24 in 4 days ✅ankr 6 in 19 hours ✅comp 6 in 15 hours ✅ast 6 in 8 hours ✅omg 6 in 1 day 8 hours ✅sushi 25 in 4 days ✅lto 13 in 3 days ⏰ 12 november ✅ont 6 in 4 days ✅fet 20 in 6 days ✅sys 25 in 1 day ✅yoyo 6 in 1 hour ✅vib 15 in 2 days ✅omg 15 in 1 day 23 hours ✅strat 6 in 4 hours ✅stx 12 in 1 day 4 hours ✅dash 6 in 28 minutes ✅zec 6 in 1 hour 20 minutes ⏰ 13 november ✅stx 32 in 2 days ✅bal 7 in 4 hours ✅chr 15 in 4 hours ⏰ 14 november ✅comp 8 in 10 minutes ✅ark 28 in 2 hours ✅mtl 11 in 10 hours ✅vib 6 in 1 day ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ⏰ october profit summary⏰ ⏰ september profit summary⏰ ⏰ august profit summary⏰ ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-16 18:45:20+00:00 1.0 1342400398 20179 november month profit summary ⏰ 110120 111420 ✅congratulations vips✅ ⏰ 1 november ✅vet 9 in 10 hours ✅yoyo 27 in 1 minute pump result ⏰ 2 november ✅nmr 45 in 4 days ✅coti 6 in 6 hours ✅dlt 12 in 13 hours ✅theta 10 in 13 hours ✅xzc 12 in 4 hours ✅dlt 22 in 14 hours ✅mdt 7 in 1 day ✅ardr 62 in 1 minute pump result ⏰ 3 november ✅dlt 20 in 1 hours 48 minutes ⏰ 4 november ✅ppt 6 in 1 minute ✅appc 21 in 1 minute ⏰ 5 november ✅nas 20 in 2 minutes ✅ankr 32 in 3 days ✅rcn 17 in 45 minutes ✅oax 20 in 1 minute ✅snx 13 in 3 hours ⏰ 6 november ✅nas 30 in 24 hours ✅snx 20 in 12 hours ✅cvc 44 in 9 hours ✅ftm 15 in 14 hours ✅tct 30 in 1 hour 41 minutes ✅ada 13 in 7 hour 27 minutes ✅dlt 32 in 18 hours ⏰ 7 november ✅arpa 6 in 1 minute ✅neo 6 in 19 hours ✅egld 6 in 1 day ✅fet 6 in 7 hours ✅zrx 6 in 16 hours ✅vet 12 in 2 days ✅snm 24 in 11 hours ✅coti 5 in 5 hours ✅sushi 6 in 2 hours ✅ftm 25 in 1 day 4 hours ✅qtum 6 in 1 day 10 hours ✅sxp 12 in 4 days ✅ocean 12 in 3 days ✅snx 6 in 2 hours ✅snx 25 in 1 day 11 hours ✅vib 6 in 4 hours ✅fet 15 in 21 hours ✅eos 6 in 1 day 2 hours ✅mdt 14 in 1 day 13 hours ✅adx 15 in 6 hours ✅sxp 21 in 4 days ✅arpa 15 in 22 hours ✅snm 6 in 1 minute ⏰ 8 november ✅mdt 25 in 2 days ✅pnt 5 in 5 hours ✅vib 14 in 19 hours ⏰ 9 november ✅dnt 25 in 5 hours ⏰ 10 november ✅dock 25 in 2 days ✅gnt 25 in 7 hours ✅ogn 20 in 16 minutes ✅dlt 32 in 1 day 2 hours ✅dock 14 in 1 day 10 hours ✅cos 5 in 4 hours ✅matic 6 in 21 hours ✅ocean 21 in 6 days ✅poly 15 in 1 hour 25 minutes ✅vib 6 in 1 day 9 hours ✅vet 6 in 8 hours ✅strat 25 in 7 days ✅gnt 25 in 7 hours ✅snt 15 in 3 days ✅beam 6 in 4 hours ✅strat 15 in 7 hours ✅mdt 11 in 1 day ✅nxs 6 in 15 minutes ✅matic 6 in 13 hours ✅ogn 15 in 16 minutes ✅rsr 6 in 7 minutes ⏰ 11 november ✅ant 20 in 3 days ✅arpa 31 in 3 days ✅lrc 6 in 2 hours ✅vib 25 in 3 days ✅ogn 25 in 5 hours ✅xem 21 in 12 days ✅lrc 15 in 3 hours ✅vite 15 in 5 days ✅coti 24 in 4 days ✅ankr 6 in 19 hours ✅comp 6 in 15 hours ✅ast 6 in 8 hours ✅omg 6 in 1 day 8 hours ✅sushi 25 in 4 days ✅lto 13 in 3 days ⏰ 12 november ✅ont 6 in 4 days ✅fet 20 in 6 days ✅sys 25 in 1 day ✅yoyo 6 in 1 hour ✅vib 15 in 2 days ✅omg 15 in 1 day 23 hours ✅strat 6 in 4 hours ✅stx 12 in 1 day 4 hours ✅dash 6 in 28 minutes ✅zec 6 in 1 hour 20 minutes ⏰ 13 november ✅stx 32 in 2 days ✅bal 7 in 4 hours ✅chr 15 in 4 hours ⏰ 14 november ✅comp 8 in 10 minutes ✅ark 28 in 2 hours ✅mtl 11 in 10 hours ✅vib 6 in 1 day ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ⏰ october profit summary⏰ ⏰ september profit summary⏰ ⏰ august profit summary⏰ ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-16 10:59:50+00:00 1.0 1342400398 20161 november month profit summary ⏰ 110120 111420 ✅congratulations vips✅ ⏰ 1 november ✅vet 9 in 10 hours ✅yoyo 27 in 1 minute pump result ⏰ 2 november ✅nmr 45 in 4 days ✅coti 6 in 6 hours ✅dlt 12 in 13 hours ✅theta 10 in 13 hours ✅xzc 12 in 4 hours ✅dlt 22 in 14 hours ✅mdt 7 in 1 day ✅ardr 62 in 1 minute pump result ⏰ 3 november ✅dlt 20 in 1 hours 48 minutes ⏰ 4 november ✅ppt 6 in 1 minute ✅appc 21 in 1 minute ⏰ 5 november ✅nas 20 in 2 minutes ✅ankr 32 in 3 days ✅rcn 17 in 45 minutes ✅oax 20 in 1 minute ✅snx 13 in 3 hours ⏰ 6 november ✅nas 30 in 24 hours ✅snx 20 in 12 hours ✅cvc 44 in 9 hours ✅ftm 15 in 14 hours ✅tct 30 in 1 hour 41 minutes ✅ada 13 in 7 hour 27 minutes ✅dlt 32 in 18 hours ⏰ 7 november ✅arpa 6 in 1 minute ✅neo 6 in 19 hours ✅egld 6 in 1 day ✅fet 6 in 7 hours ✅zrx 6 in 16 hours ✅vet 12 in 2 days ✅snm 24 in 11 hours ✅coti 5 in 5 hours ✅sushi 6 in 2 hours ✅ftm 25 in 1 day 4 hours ✅qtum 6 in 1 day 10 hours ✅sxp 12 in 4 days ✅ocean 12 in 3 days ✅snx 6 in 2 hours ✅snx 25 in 1 day 11 hours ✅vib 6 in 4 hours ✅fet 15 in 21 hours ✅eos 6 in 1 day 2 hours ✅mdt 14 in 1 day 13 hours ✅adx 15 in 6 hours ✅sxp 21 in 4 days ✅arpa 15 in 22 hours ✅snm 6 in 1 minute ⏰ 8 november ✅mdt 25 in 2 days ✅pnt 5 in 5 hours ✅vib 14 in 19 hours ⏰ 9 november ✅dnt 25 in 5 hours ⏰ 10 november ✅dock 25 in 2 days ✅gnt 25 in 7 hours ✅ogn 20 in 16 minutes ✅dlt 32 in 1 day 2 hours ✅dock 14 in 1 day 10 hours ✅cos 5 in 4 hours ✅matic 6 in 21 hours ✅ocean 21 in 6 days ✅poly 15 in 1 hour 25 minutes ✅vib 6 in 1 day 9 hours ✅vet 6 in 8 hours ✅strat 25 in 7 days ✅gnt 25 in 7 hours ✅snt 15 in 3 days ✅beam 6 in 4 hours ✅strat 15 in 7 hours ✅mdt 11 in 1 day ✅nxs 6 in 15 minutes ✅matic 6 in 13 hours ✅ogn 15 in 16 minutes ✅rsr 6 in 7 minutes ⏰ 11 november ✅ant 20 in 3 days ✅arpa 31 in 3 days ✅lrc 6 in 2 hours ✅vib 25 in 3 days ✅ogn 25 in 5 hours ✅xem 21 in 12 days ✅lrc 15 in 3 hours ✅vite 15 in 5 days ✅coti 24 in 4 days ✅ankr 6 in 19 hours ✅comp 6 in 15 hours ✅ast 6 in 8 hours ✅omg 6 in 1 day 8 hours ✅sushi 25 in 4 days ✅lto 13 in 3 days ⏰ 12 november ✅ont 6 in 4 days ✅fet 20 in 6 days ✅sys 25 in 1 day ✅yoyo 6 in 1 hour ✅vib 15 in 2 days ✅omg 15 in 1 day 23 hours ✅strat 6 in 4 hours ✅stx 12 in 1 day 4 hours ✅dash 6 in 28 minutes ✅zec 6 in 1 hour 20 minutes ⏰ 13 november ✅stx 32 in 2 days ✅bal 7 in 4 hours ✅chr 15 in 4 hours ⏰ 14 november ✅comp 8 in 10 minutes ✅ark 28 in 2 hours ✅mtl 11 in 10 hours ✅vib 6 in 1 day ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ⏰ october profit summary⏰ ⏰ september profit summary⏰ ⏰ august profit summary⏰ ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-15 16:21:12+00:00 1.0 1342400398 20143 november month profit summary ⏰ 110120 111420 ✅congratulations vips✅ ⏰ 1 november ✅vet 9 in 10 hours ✅yoyo 27 in 1 minute pump result ⏰ 2 november ✅nmr 45 in 4 days ✅coti 6 in 6 hours ✅dlt 12 in 13 hours ✅theta 10 in 13 hours ✅xzc 12 in 4 hours ✅dlt 22 in 14 hours ✅mdt 7 in 1 day ✅ardr 62 in 1 minute pump result ⏰ 3 november ✅dlt 20 in 1 hours 48 minutes ⏰ 4 november ✅ppt 6 in 1 minute ✅appc 21 in 1 minute ⏰ 5 november ✅nas 20 in 2 minutes ✅ankr 32 in 3 days ✅rcn 17 in 45 minutes ✅oax 20 in 1 minute ✅snx 13 in 3 hours ⏰ 6 november ✅nas 30 in 24 hours ✅snx 20 in 12 hours ✅cvc 44 in 9 hours ✅ftm 15 in 14 hours ✅tct 30 in 1 hour 41 minutes ✅ada 13 in 7 hour 27 minutes ✅dlt 32 in 18 hours ⏰ 7 november ✅arpa 6 in 1 minute ✅neo 6 in 19 hours ✅egld 6 in 1 day ✅fet 6 in 7 hours ✅zrx 6 in 16 hours ✅vet 12 in 2 days ✅snm 24 in 11 hours ✅coti 5 in 5 hours ✅sushi 6 in 2 hours ✅ftm 25 in 1 day 4 hours ✅qtum 6 in 1 day 10 hours ✅sxp 12 in 4 days ✅ocean 12 in 3 days ✅snx 6 in 2 hours ✅snx 25 in 1 day 11 hours ✅vib 6 in 4 hours ✅fet 15 in 21 hours ✅eos 6 in 1 day 2 hours ✅mdt 14 in 1 day 13 hours ✅adx 15 in 6 hours ✅sxp 21 in 4 days ✅arpa 15 in 22 hours ✅snm 6 in 1 minute ⏰ 8 november ✅mdt 25 in 2 days ✅pnt 5 in 5 hours ✅vib 14 in 19 hours ⏰ 9 november ✅dnt 25 in 5 hours ⏰ 10 november ✅dock 25 in 2 days ✅gnt 25 in 7 hours ✅ogn 20 in 16 minutes ✅dlt 32 in 1 day 2 hours ✅dock 14 in 1 day 10 hours ✅cos 5 in 4 hours ✅matic 6 in 21 hours ✅ocean 21 in 6 days ✅poly 15 in 1 hour 25 minutes ✅vib 6 in 1 day 9 hours ✅vet 6 in 8 hours ✅strat 25 in 7 days ✅gnt 25 in 7 hours ✅snt 15 in 3 days ✅beam 6 in 4 hours ✅strat 15 in 7 hours ✅mdt 11 in 1 day ✅nxs 6 in 15 minutes ✅matic 6 in 13 hours ✅ogn 15 in 16 minutes ✅rsr 6 in 7 minutes ⏰ 11 november ✅ant 20 in 3 days ✅arpa 31 in 3 days ✅lrc 6 in 2 hours ✅vib 25 in 3 days ✅ogn 25 in 5 hours ✅xem 21 in 12 days ✅lrc 15 in 3 hours ✅vite 15 in 5 days ✅coti 24 in 4 days ✅ankr 6 in 19 hours ✅comp 6 in 15 hours ✅ast 6 in 8 hours ✅omg 6 in 1 day 8 hours ✅sushi 25 in 4 days ✅lto 13 in 3 days ⏰ 12 november ✅ont 6 in 4 days ✅fet 20 in 6 days ✅sys 25 in 1 day ✅yoyo 6 in 1 hour ✅vib 15 in 2 days ✅omg 15 in 1 day 23 hours ✅strat 6 in 4 hours ✅stx 12 in 1 day 4 hours ✅dash 6 in 28 minutes ✅zec 6 in 1 hour 20 minutes ⏰ 13 november ✅stx 32 in 2 days ✅bal 7 in 4 hours ✅chr 15 in 4 hours ⏰ 14 november ✅comp 8 in 10 minutes ✅ark 28 in 2 hours ✅mtl 11 in 10 hours ✅vib 6 in 1 day ♦️all results shared above with screenshot ♦️amazing profits and calls shared in vip channel ♦️most trusted channel for binance pump and signals ‍♂️ ♦️you can cover your fees in a day ♦️ cornix bot made it very easy for trade 2 weeks free ♦️50 on vip membeship limited seats avaialble now ⏰ october profit summary⏰ ⏰ september profit summary⏰ ⏰ august profit summary⏰ ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-11-15 04:46:26+00:00 1.0 1342400398 19866 ⏰45 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-11-04 16:15:01+00:00 1.0 1342400398 19839 ‼️next post will be coin name 2020-11-02 15:54:41+00:00 1.0 1342400398 19838 ⏰20 minutes left for our next pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-11-02 15:39:42+00:00 1.0 1342400398 19794 ‼️5 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin 2020-11-01 17:55:05+00:00 1.0 1342400398 19793 ‼️10 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin 2020-11-01 17:49:36+00:00 1.0 1342400398 19792 ⏰ 15 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-11-01 17:45:51+00:00 1.0 1342400398 19776 ‼️next pump scheduled‼️ ⏰ sunday 11012020 at 0600 pm gmt ⏰ sunday 11012020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-31 15:00:38+00:00 1.0 1342400398 19771 ‼️next pump scheduled‼️ ⏰ sunday 11012020 at 0600 pm gmt ⏰ sunday 11012020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-30 18:21:56+00:00 1.0 1342400398 19766 ‼️next pump scheduled‼️ ⏰ sunday 11012020 at 0600 pm gmt ⏰ sunday 11012020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-30 06:31:03+00:00 1.0 1342400398 19758 ‼️next pump scheduled‼️ ⏰ sunday 11012020 at 0600 pm gmt ⏰ sunday 11012020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-29 21:34:23+00:00 1.0 1342400398 19736 ‼️next pump scheduled‼️ ⏰ sunday 11012020 at 0600 pm gmt ⏰ sunday 11012020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-28 19:37:15+00:00 1.0 1342400398 19728 ‼️next pump scheduled‼️ ⏰ sunday 11012020 at 0600 pm gmt ⏰ sunday 11012020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-28 06:30:31+00:00 1.0 1342400398 19566 ⏰ 20 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-21 17:40:50+00:00 1.0 1342400398 19565 ⏰ 60 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-21 17:00:09+00:00 1.0 1342400398 19564 ⏰ 90 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-21 16:32:18+00:00 1.0 1342400398 19500 ⏰30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-18 17:31:14+00:00 1.0 1342400398 19487 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-18 04:45:13+00:00 1.0 1342400398 19483 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-17 22:51:52+00:00 1.0 1342400398 19474 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-17 16:13:50+00:00 1.0 1342400398 19469 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-17 06:26:34+00:00 1.0 1342400398 19450 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-16 17:58:02+00:00 1.0 1342400398 19434 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-16 02:56:42+00:00 1.0 1342400398 19422 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-15 18:13:20+00:00 1.0 1342400398 19405 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-15 04:03:40+00:00 1.0 1342400398 19372 ‼️next pump scheduled‼️ ⏰ sunday 10182020 at 0600 pm gmt ⏰ sunday 10182020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂join vip membership ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-14 02:08:57+00:00 1.0 1342400398 19294 ⏰less than 60 minutes for our next pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-11 17:03:25+00:00 1.0 1342400398 19287 ‼️next pump scheduled‼️ ⏰ sunday 10112020 at 0600 pm gmt ⏰ sunday 10112020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-11 05:49:15+00:00 1.0 1342400398 19280 ‼️next pump scheduled‼️ ⏰ sunday 10112020 at 0600 pm gmt ⏰ sunday 10112020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-10 21:44:05+00:00 1.0 1342400398 19270 ‼️next pump scheduled‼️ ⏰ sunday 10112020 at 0600 pm gmt ⏰ sunday 10112020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-10 17:59:22+00:00 1.0 1342400398 19268 ‼️next pump scheduled‼️ ⏰ sunday 10112020 at 0600 pm gmt ⏰ sunday 10112020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-10 15:33:15+00:00 1.0 1342400398 19266 ‼️next pump scheduled‼️ ⏰ sunday 10112020 at 0600 pm gmt ⏰ sunday 10112020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-10 07:07:22+00:00 1.0 1342400398 19239 ‼️next pump scheduled‼️ ⏰ sunday 10112020 at 0600 pm gmt ⏰ sunday 10112020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-09 22:52:07+00:00 1.0 1342400398 19185 ‼️ next post will be coin name only in vip channel 2020-10-08 17:53:27+00:00 1.0 1342400398 19184 ⏰60 minutes left for our next pump event ‼️ ✅ exclusively for vip members only ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-08 17:03:33+00:00 1.0 1342400398 19099 ‼️15 minutes left to binance pump 2020-10-04 17:48:26+00:00 1.0 1342400398 19098 ⏰40 minutes left for our next pump event ‼️ ✅ exclusively for vip members only ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-04 17:20:35+00:00 1.0 1342400398 19096 ‼️next pump scheduled‼️ ⏰ sunday 10042020 at 0600 pm gmt ⏰ sunday 10042020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-04 17:18:39+00:00 1.0 1342400398 19080 ‼️next pump scheduled‼️ ⏰ sunday 10042020 at 0600 pm gmt ⏰ sunday 10042020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-04 05:49:53+00:00 1.0 1342400398 19076 ‼️next pump scheduled‼️ ⏰ sunday 10042020 at 0600 pm gmt ⏰ sunday 10042020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-04 03:12:27+00:00 1.0 1342400398 19071 ‼️next pump scheduled‼️ ⏰ sunday 10042020 at 0600 pm gmt ⏰ sunday 10042020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-03 19:10:48+00:00 1.0 1342400398 19066 ‼️next pump scheduled‼️ ⏰ sunday 10042020 at 0600 pm gmt ⏰ sunday 10042020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-03 05:24:41+00:00 1.0 1342400398 19059 ‼️next pump scheduled‼️ ⏰ sunday 10042020 at 0600 pm gmt ⏰ sunday 10042020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-02 17:49:03+00:00 1.0 1342400398 19055 ‼️next pump scheduled‼️ ⏰ sunday 10042020 at 0600 pm gmt ⏰ sunday 10042020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 ppt 50 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-02 05:03:56+00:00 1.0 1342400398 19036 ‼️ next post will be coin name only in vip channel 2020-10-01 17:52:38+00:00 1.0 1342400398 19035 ⏰30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-10-01 17:30:14+00:00 1.0 1342400398 18850 ‼️ next post will be coin name only in vip channel 2020-09-27 17:54:51+00:00 1.0 1342400398 18849 ⏰15 minutes left for our next pump event ‼️ ✅ exclusively for vip members only ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-27 17:46:34+00:00 1.0 1342400398 18848 ⏰30 minutes left for our next pump event ‼️ ✅ exclusively for vip members only ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-27 17:30:51+00:00 1.0 1342400398 18843 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-27 16:07:15+00:00 1.0 1342400398 18834 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-27 06:00:42+00:00 1.0 1342400398 18814 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-27 01:39:11+00:00 1.0 1342400398 18808 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-26 22:02:36+00:00 1.0 1342400398 18792 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-26 17:58:41+00:00 1.0 1342400398 18758 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-26 03:24:04+00:00 1.0 1342400398 18752 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-25 21:00:24+00:00 1.0 1342400398 18713 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-25 05:41:22+00:00 1.0 1342400398 18672 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-24 04:21:45+00:00 1.0 1342400398 18668 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-23 23:34:34+00:00 1.0 1342400398 18637 ‼️next pump scheduled‼️ ⏰ sunday 09272020 at 0600 pm gmt ⏰ sunday 09272020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-23 04:29:40+00:00 1.0 1342400398 18567 ‼️10 minutes left for next pump in binance for vip members only 2020-09-20 17:49:07+00:00 1.0 1342400398 18566 ‼️20 minutes left for next pump in binance for vip members only 2020-09-20 17:42:05+00:00 1.0 1342400398 18541 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-20 04:32:20+00:00 1.0 1342400398 18533 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-20 01:22:10+00:00 1.0 1342400398 18531 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-20 00:10:04+00:00 1.0 1342400398 18524 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-19 17:18:38+00:00 1.0 1342400398 18519 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-19 14:28:31+00:00 1.0 1342400398 18505 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-18 23:55:42+00:00 1.0 1342400398 18495 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-18 21:36:01+00:00 1.0 1342400398 18490 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-18 18:48:27+00:00 1.0 1342400398 18473 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-18 05:24:01+00:00 1.0 1342400398 18462 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-17 18:37:17+00:00 1.0 1342400398 18458 ‼️5 minutes left the next post will be the coin to buy 2020-09-17 17:55:46+00:00 1.0 1342400398 18391 ‼️next pump scheduled‼️ ⏰ sunday 09202020 at 0600 pm gmt ⏰ sunday 09202020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-15 04:17:09+00:00 1.0 1342400398 18339 ⏰ 15 minutes left for our mega pump event ‼️ ✅ exclusively for vip members only 2020-09-13 17:47:33+00:00 1.0 1342400398 18338 ⏰ 30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members only ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-13 17:27:54+00:00 1.0 1342400398 18337 ⏰ 60 minutes left for our mega pump event ‼️ ✅ exclusively for vip members only ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-13 17:03:08+00:00 1.0 1342400398 18333 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-13 16:19:29+00:00 1.0 1342400398 18324 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-13 07:00:27+00:00 1.0 1342400398 18320 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-13 06:00:40+00:00 1.0 1342400398 18290 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-13 00:02:33+00:00 1.0 1342400398 18283 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-12 21:45:10+00:00 1.0 1342400398 18232 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-12 05:57:43+00:00 1.0 1342400398 18217 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-12 01:08:06+00:00 1.0 1342400398 18206 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-11 20:37:04+00:00 1.0 1342400398 18131 ‼️next post will be coin name 2020-09-10 17:54:59+00:00 1.0 1342400398 18130 ⏰ 15 minutes left for our mega pump event ‼️ ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-10 17:45:39+00:00 1.0 1342400398 18129 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-10 17:31:08+00:00 1.0 1342400398 18128 ⏰ 35 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-10 17:24:03+00:00 1.0 1342400398 18103 ⏰ 2 hours left before the pump everyone the markets are looking great for our pumppush bitcoin is sideways and all altcoins are on the rise today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-10 16:01:28+00:00 1.0 1342400398 17966 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-08 21:27:14+00:00 1.0 1342400398 17956 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-08 17:49:45+00:00 1.0 1342400398 17943 ‼️next pump scheduled‼️ ⏰ sunday 09132020 at 0600 pm gmt ⏰ sunday 09132020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-08 05:38:15+00:00 1.0 1342400398 17915 ⏰ 20 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ✅ exclusively for vip members ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-06 17:38:19+00:00 1.0 1342400398 17914 ⏰ 60 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-06 17:01:01+00:00 1.0 1342400398 17906 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-05 21:38:22+00:00 1.0 1342400398 17902 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-05 18:24:44+00:00 1.0 1342400398 17898 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-05 06:09:47+00:00 1.0 1342400398 17893 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-05 03:41:43+00:00 1.0 1342400398 17870 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-04 20:15:49+00:00 1.0 1342400398 17863 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-04 01:18:07+00:00 1.0 1342400398 17859 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-03 19:21:46+00:00 1.0 1342400398 17848 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-03 07:53:43+00:00 1.0 1342400398 17821 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-02 04:34:06+00:00 1.0 1342400398 17817 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-01 13:02:14+00:00 1.0 1342400398 17791 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-09-01 00:37:51+00:00 1.0 1342400398 17783 ‼️next pump scheduled‼️ ⏰ sunday 09062020 at 0600 pm gmt ⏰ sunday 09062020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 go 15 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-31 17:19:14+00:00 1.0 1342400398 17717 ⏰ 10 minutes left for our mega pump event ‼️ ✅exclusively for vip members ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-30 17:49:25+00:00 1.0 1342400398 17715 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ✅exclusively for vip members ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-30 17:32:33+00:00 1.0 1342400398 17709 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-30 16:18:09+00:00 1.0 1342400398 17695 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-30 02:39:16+00:00 1.0 1342400398 17666 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-29 18:55:10+00:00 1.0 1342400398 17639 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-29 06:41:17+00:00 1.0 1342400398 17634 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-29 02:31:52+00:00 1.0 1342400398 17622 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-28 20:33:02+00:00 1.0 1342400398 17597 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-28 07:40:42+00:00 1.0 1342400398 17583 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-27 18:37:02+00:00 1.0 1342400398 17570 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-27 05:53:21+00:00 1.0 1342400398 17560 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-27 01:17:32+00:00 1.0 1342400398 17544 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-26 04:01:02+00:00 1.0 1342400398 17536 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-26 02:25:48+00:00 1.0 1342400398 17534 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-25 21:58:18+00:00 1.0 1342400398 17530 ‼️next pump scheduled‼️ ⏰ sunday 08302020 at 0600 pm gmt ⏰ sunday 08302020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 loom 17 rdn 38 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-25 20:50:27+00:00 1.0 1342400398 17508 ‼️5 minutes left the next post will be the coin to buy 2020-08-25 17:55:35+00:00 1.0 1342400398 17393 15 minutes left for binance pump event exclusive for vip members only ☎️contact bitcoinadmin for vip membership ☎️for vip group contact 2020-08-23 17:45:54+00:00 1.0 1342400398 17392 25 minutes left for binance pump event exclusive for vip members only ☎️contact bitcoinadmin for vip membership ☎️for vip group contact 2020-08-23 17:35:34+00:00 1.0 1342400398 17380 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-23 05:28:07+00:00 1.0 1342400398 17378 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-23 03:54:20+00:00 1.0 1342400398 17359 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-22 20:32:36+00:00 1.0 1342400398 17347 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-22 06:07:48+00:00 1.0 1342400398 17304 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-21 06:16:14+00:00 1.0 1342400398 17187 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-20 06:11:39+00:00 1.0 1342400398 17179 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-20 02:37:09+00:00 1.0 1342400398 17155 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-19 06:24:59+00:00 1.0 1342400398 17144 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-18 18:06:14+00:00 1.0 1342400398 17111 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-18 12:09:06+00:00 1.0 1342400398 17109 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-18 04:44:16+00:00 1.0 1342400398 17087 ‼️next pump scheduled‼️ ⏰ sunday 08232020 at 0600 pm gmt ⏰ sunday 08232020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 cdt 25 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-17 23:10:30+00:00 1.0 1342400398 16975 5 minutes left for binance breakout event exclusive for vip members only ☎️contact bitcoinadmin for vip membership ☎️for vip group contact 2020-08-16 17:54:13+00:00 1.0 1342400398 16974 30 minutes left for binance breakout event exclusive for vip members only ☎️contact bitcoinadmin for vip membership ☎️for vip group contact 2020-08-16 17:31:53+00:00 1.0 1342400398 16961 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-16 04:05:00+00:00 1.0 1342400398 16942 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-15 06:10:56+00:00 1.0 1342400398 16940 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-15 03:31:21+00:00 1.0 1342400398 16934 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-14 22:25:47+00:00 1.0 1342400398 16899 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-14 05:32:02+00:00 1.0 1342400398 16880 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-13 21:54:56+00:00 1.0 1342400398 16847 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-13 05:36:05+00:00 1.0 1342400398 16818 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-12 19:00:54+00:00 1.0 1342400398 16799 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-12 05:03:42+00:00 1.0 1342400398 16793 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-11 23:32:28+00:00 1.0 1342400398 16790 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-11 20:56:01+00:00 1.0 1342400398 16773 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-11 07:26:47+00:00 1.0 1342400398 16748 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-11 05:59:05+00:00 1.0 1342400398 16742 gxspump result 125 profit✅ ♦️shared in vip 2 minutes before start price 5499 weve reached 6186 ✅profit 125+ congrats vip members to know next pump coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-11 02:53:05+00:00 1.0 1342400398 16736 ‼️next pump scheduled‼️ ⏰ sunday 08162020 at 0600 pm gmt ⏰ sunday 08162020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-11 02:08:39+00:00 1.0 1342400398 16562 aug month profit summary ⏰ 080120 080820 ✅congratulations vips✅ ⏰ 1 aug ✅zec 30 in 1 day ✅xem 13 in 4 days ✅tfuel 8 in 6 hours ⏰ 2 aug ✅dgb 10 in 4 days ✅ark 30 in 4 hours ✅nxs 32 in 1 minute pump result ✅vib 15 in 12 hours ✅lrc 34 in 6 days ✅ark 48 in 25 hours ⏰ 3 aug ✅blz 23 in 4 hours ✅mco 50 in 7 hours ✅bnt 45 in 7 days ✅ctsi 28 in 2 days ✅dusk 12 in 11 hours ✅eng 16 in 2 days ⏰ 4 aug ✅link 30 in 2 days ✅band 45 in 8 days ✅ppt 50 in 1 minute pump result ✅vet 15 in 1 day ✅tomo 13 in 1 day ✅qtum 14 in 1 day ✅dock 24 in 1 day ✅vite 21 in 1 day ✅tfuel 28 in 8 days ⏰ 5 aug ✅enj 7 in 19 hours ✅agi 32 in 2 days ✅dusk 30 in 2 days ⏰ 6 aug ✅ctsi 38 in 5 days ✅ast 40 in 9 days ✅zil 16 in 4 days ✅evx 30 in 3 days ✅iris 10 in 13 hours ✅zec 38 in 6 days ✅vite 50 in 3 days ✅dock 50 in 4 days ✅arpa 10 in 2 hours ✅xem 28 in 9 days ✅mana 42 in 9 days ✅mith 11 in 12 hours ⏰ 7 aug ✅mana 15 in 60 minutes ✅lsk 12 in 5 days ✅nkn 22 in 7 days ✅tomo 13 in 20 hours ✅ctsi 15 in 1 hour 58 minutes ⏰ 8 aug ✅waves 25 in 5 days ✅zil 45 in 5 days ✅tomo 24 in 5 days ✅kava 36 in 1 day ✅chr 22 in 5 days ✅vib 22 in 1 day ✅lto 16 in 1 day ✅rune 26 in 1 day ✅go 20 in 5 days ✅nuls 15 in 5 days ✅agi 42 in 5 days ✅rlc 50 in 9 days ✅lsk 25 in 6 days ✅link 82 in 6 days ✅ogn 16 in 1 day ✅vet 26 in 5 days ✅sxp 22 in 3 days ✅theta 12 in 1 day all results shared above with screenshot 50 on lifetime membership hurry up amazing profits and calls shared in vip channel ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-08-09 04:10:41+00:00 1.0 1342400398 16554 aug month profit summary ⏰ 080120 080820 ✅congratulations vips✅ ⏰ 1 aug ✅zec 30 in 1 day ✅xem 13 in 4 days ✅tfuel 8 in 6 hours ⏰ 2 aug ✅dgb 10 in 4 days ✅ark 30 in 4 hours ✅nxs 32 in 1 minute pump result ✅vib 15 in 12 hours ✅lrc 34 in 6 days ✅ark 48 in 25 hours ⏰ 3 aug ✅blz 23 in 4 hours ✅mco 50 in 7 hours ✅bnt 45 in 7 days ✅ctsi 28 in 2 days ✅dusk 12 in 11 hours ✅eng 16 in 2 days ⏰ 4 aug ✅link 30 in 2 days ✅band 45 in 8 days ✅ppt 50 in 1 minute pump result ✅vet 15 in 1 day ✅tomo 13 in 1 day ✅qtum 14 in 1 day ✅dock 24 in 1 day ✅vite 21 in 1 day ✅tfuel 28 in 8 days ⏰ 5 aug ✅enj 7 in 19 hours ✅agi 32 in 2 days ✅dusk 30 in 2 days ⏰ 6 aug ✅ctsi 38 in 5 days ✅ast 40 in 9 days ✅zil 16 in 4 days ✅evx 30 in 3 days ✅iris 10 in 13 hours ✅zec 38 in 6 days ✅vite 50 in 3 days ✅dock 50 in 4 days ✅arpa 10 in 2 hours ✅xem 28 in 9 days ✅mana 42 in 9 days ✅mith 11 in 12 hours ⏰ 7 aug ✅mana 15 in 60 minutes ✅lsk 12 in 5 days ✅nkn 22 in 7 days ✅tomo 13 in 20 hours ✅ctsi 15 in 1 hour 58 minutes ⏰ 8 aug ✅waves 25 in 5 days ✅zil 45 in 5 days ✅tomo 24 in 5 days ✅kava 36 in 1 day ✅chr 22 in 5 days ✅vib 22 in 1 day ✅lto 16 in 1 day ✅rune 26 in 1 day ✅go 20 in 5 days ✅nuls 15 in 5 days ✅agi 42 in 5 days ✅rlc 50 in 9 days ✅lsk 25 in 6 days ✅link 82 in 6 days ✅ogn 16 in 1 day ✅vet 26 in 5 days ✅sxp 22 in 3 days ✅theta 12 in 1 day all results shared above with screenshot 50 on lifetime membership hurry up amazing profits and calls shared in vip channel ⏰ july profit summary⏰ ⏰ june profit summary⏰ ☎️ join vip membership bitcoinadmin ☎️ free public channel link 2020-08-09 00:56:13+00:00 1.0 1342400398 16498 ‼️next pump scheduled‼️ ⏰ sunday 08092020 at 0600 pm gmt ⏰ sunday 08092020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-08 03:33:00+00:00 1.0 1342400398 16488 ‼️next pump scheduled‼️ ⏰ sunday 08092020 at 0600 pm gmt ⏰ sunday 08092020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-07 18:13:28+00:00 1.0 1342400398 16457 ‼️next pump scheduled‼️ ⏰ sunday 08092020 at 0600 pm gmt ⏰ sunday 08092020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-07 00:29:58+00:00 1.0 1342400398 16424 ‼️next pump scheduled‼️ ⏰ sunday 08092020 at 0600 pm gmt ⏰ sunday 08092020 at 0200 pm est ‼️last pump result sys 400 ++ via 188 ctxc 250 qsp 27 poa 45 edo 47 rlc 42 gnt 45 nxs 26 ppt 50 ✅to know the name of coin earlier join vip membership hurry up guys ‍♂‍♂‍♂dont miss this time ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-08-06 00:27:34+00:00 1.0 1342400398 16372 ‼️next post will be coin name 2020-08-04 17:53:27+00:00 1.0 1342400398 16371 ⏰30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link hi 2020-08-04 17:31:14+00:00 1.0 1342400398 16308 next post will be coin name 2020-08-02 15:54:54+00:00 1.0 1342400398 16249 5 minutes left the next post will be the coin to buy 2020-07-30 17:55:33+00:00 1.0 1342400398 16248 ‼️10 minutes left for binance pump 2020-07-30 17:50:58+00:00 1.0 1342400398 16247 ⏰30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-07-30 17:31:21+00:00 1.0 1342400398 15775 ‼️next post will be coin name 2020-07-21 15:55:40+00:00 1.0 1342400398 15508 ‼️next post will be coin name 2020-07-16 17:54:56+00:00 1.0 1342400398 15358 pump coin name snm 2020-07-13 15:55:27+00:00 1.0 1342400398 15357 ‼️next post will be coin name 2020-07-13 15:52:25+00:00 1.0 1342400398 15356 ‼️20 minutes left for binance pump 2020-07-13 15:41:07+00:00 1.0 1342400398 15355 ‼️45 minutes left for binance pump 2020-07-13 15:14:06+00:00 1.0 1342400398 15046 ‼️next post will be coin name 2020-07-07 15:51:58+00:00 1.0 1342400398 15045 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-07-07 15:31:26+00:00 1.0 1342400398 14628 ‼️next post will be coin name 2020-06-24 15:59:14+00:00 1.0 1342400398 14627 ⏰ 15 minutes left for binance pump event 2020-06-24 15:43:28+00:00 1.0 1342400398 14626 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-06-24 15:32:03+00:00 1.0 1342400398 14625 ⏰ 45 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-06-24 15:14:20+00:00 1.0 1342400398 14338 ⏰ 15 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-06-15 15:45:59+00:00 1.0 1342400398 14318 nebl pump result huge profit 27 start price 6401 weve reached 8190 ✅huge profit 27 in few minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2020-06-14 16:31:48+00:00 1.0 1342400398 14316 next post will be coin name 2020-06-14 15:57:08+00:00 1.0 1342400398 14315 ‼️ 10 minutes left to breakout on binance to know coin name earlier join vip channel and recover your losses ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-06-14 15:49:51+00:00 1.0 1342400398 14270 next post will be coin name 2020-06-13 15:59:24+00:00 1.0 1342400398 14269 ‼️ 5 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact bitcoinadmin 2020-06-13 15:55:30+00:00 1.0 1342400398 14268 ‼️ 10 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact bitcoinadmin 2020-06-13 15:49:58+00:00 1.0 1342400398 14187 ‼️next post will be coin name 2020-06-10 15:54:50+00:00 1.0 1342400398 14186 ⏰ 10 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-06-10 15:50:40+00:00 1.0 1342400398 14098 ‼️next post will be the coin name 2020-06-08 16:03:11+00:00 1.0 1342400398 14097 ‼️next pump coin anytime in vip channel between 4pm 5 pm gmt ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-06-08 15:27:18+00:00 1.0 1342400398 13330 amazing may2020 profits summary ⏰ 050120 051420 congratulations vips ⏰ 1 may ✅band 30 in 24 hours ✅hbar 28 in few days ✅bqx 16 in 5 hours ⏰ 2 may ✅theta 23 in 1 day ✅qsp 12 in 19 hours ✅bqx 30 in 20 hours ⏰ 3 may ✅edo 30 in few days ✅hive 20 in 5 hours ✅zil 30 in 2 days ⏰ 4 may ✅mda 10 in few minutes ✅data 20 in 20 hours ✅zil 44 in 4 days ⏰ 5 may ✅snt 20 in 20 hours ⏰ 6 may ✅snt 52 in 1 day 20 hours ⏰ 7 may ✅zrx 45 in 13 days ⏰ 8 may ✅zrx 120 in 13 days ✅rcn 45 in few days ✅bat 45 in 2 days ⏰ 9 may ✅poa 25 in 2 days ✅tomo 13 in 4 days ⏰ 10 may ✅snt 30 in 17 hours ✅arpa 18 in 11 hours ✅data 13 in 1 day ⏰ 11may ✅arpa 26 in 2 days ⏰ 12 may ✅theta 47 in 11 days ✅fun 36 in few days ✅matic 15 in 20 hours ✅zil 6 in 2 hours ✅enj 10 in 5 hours ⏰ 13 may ✅ogn 10 in 8 hours ✅edo 45 in few days ✅zil 30 in 11 hours ✅waves 10 in 11 hours ✅matic 15 in 1 day 17 hours ✅eng 11 in 40 minutes ⏰ 14 may ✅via 17 in 2 day 19 hours ✅omg 42 in 2 day 4 hours ✅lto 12 in 1 hour 20 minutes ✅eng 34 in 16 hours ✅iota 18 in 4 days ✅zil 31 in 2 days ✅dusk 20 in 12 hours ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ ⏰ april profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-05-17 07:05:07+00:00 1.0 1342400398 13319 amazing may2020 profits summary ⏰ 050120 051420 congratulations vips ⏰ 1 may ✅band 30 in 24 hours ✅hbar 28 in few days ✅bqx 16 in 5 hours ⏰ 2 may ✅theta 23 in 1 day ✅qsp 12 in 19 hours ✅bqx 30 in 20 hours ⏰ 3 may ✅edo 30 in few days ✅hive 20 in 5 hours ✅zil 30 in 2 days ⏰ 4 may ✅mda 10 in few minutes ✅data 20 in 20 hours ✅zil 44 in 4 days ⏰ 5 may ✅snt 20 in 20 hours ⏰ 6 may ✅snt 52 in 1 day 20 hours ⏰ 7 may ✅zrx 45 in 13 days ⏰ 8 may ✅zrx 120 in 13 days ✅rcn 45 in few days ✅bat 45 in 2 days ⏰ 9 may ✅poa 25 in 2 days ✅tomo 13 in 4 days ⏰ 10 may ✅snt 30 in 17 hours ✅arpa 18 in 11 hours ✅data 13 in 1 day ⏰ 11may ✅arpa 26 in 2 days ⏰ 12 may ✅theta 47 in 11 days ✅fun 36 in few days ✅matic 15 in 20 hours ✅zil 6 in 2 hours ✅enj 10 in 5 hours ⏰ 13 may ✅ogn 10 in 8 hours ✅edo 45 in few days ✅zil 30 in 11 hours ✅waves 10 in 11 hours ✅matic 15 in 1 day 17 hours ✅eng 11 in 40 minutes ⏰ 14 may ✅via 17 in 2 day 19 hours ✅omg 42 in 2 day 4 hours ✅lto 12 in 1 hour 20 minutes ✅eng 34 in 16 hours ✅iota 18 in 4 days ✅zil 31 in 2 days ✅dusk 20 in 12 hours ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ ⏰ april profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-05-16 22:46:08+00:00 1.0 1342400398 13298 amazing may2020 profits summary ⏰ 050120 051420 congratulations vips ⏰ 1 may ✅band 30 in 24 hours ✅hbar 28 in few days ✅bqx 16 in 5 hours ⏰ 2 may ✅theta 23 in 1 day ✅qsp 12 in 19 hours ✅bqx 30 in 20 hours ⏰ 3 may ✅edo 30 in few days ✅hive 20 in 5 hours ✅zil 30 in 2 days ⏰ 4 may ✅mda 10 in few minutes ✅data 20 in 20 hours ✅zil 44 in 4 days ⏰ 5 may ✅snt 20 in 20 hours ⏰ 6 may ✅snt 52 in 1 day 20 hours ⏰ 7 may ✅zrx 45 in 13 days ⏰ 8 may ✅zrx 120 in 13 days ✅rcn 45 in few days ✅bat 45 in 2 days ⏰ 9 may ✅poa 25 in 2 days ✅tomo 13 in 4 days ⏰ 10 may ✅snt 30 in 17 hours ✅arpa 18 in 11 hours ✅data 13 in 1 day ⏰ 11may ✅arpa 26 in 2 days ⏰ 12 may ✅theta 47 in 11 days ✅fun 36 in few days ✅matic 15 in 20 hours ✅zil 6 in 2 hours ✅enj 10 in 5 hours ⏰ 13 may ✅ogn 10 in 8 hours ✅edo 45 in few days ✅zil 30 in 11 hours ✅waves 10 in 11 hours ✅matic 15 in 1 day 17 hours ✅eng 11 in 40 minutes ⏰ 14 may ✅via 17 in 2 day 19 hours ✅omg 42 in 2 day 4 hours ✅lto 12 in 1 hour 20 minutes ✅eng 34 in 16 hours ✅iota 18 in 4 days ✅zil 31 in 2 days ✅dusk 20 in 12 hours ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ ⏰ april profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-05-15 23:18:52+00:00 1.0 1342400398 13293 amazing may2020 profits summary ⏰ 050120 051420 congratulations vips ⏰ 1 may ✅band 30 in 24 hours ✅hbar 28 in few days ✅bqx 16 in 5 hours ⏰ 2 may ✅theta 23 in 1 day ✅qsp 12 in 19 hours ✅bqx 30 in 20 hours ⏰ 3 may ✅edo 30 in few days ✅hive 20 in 5 hours ✅zil 30 in 2 days ⏰ 4 may ✅mda 10 in few minutes ✅data 20 in 20 hours ✅zil 44 in 4 days ⏰ 5 may ✅snt 20 in 20 hours ⏰ 6 may ✅snt 52 in 1 day 20 hours ⏰ 7 may ✅zrx 45 in 13 days ⏰ 8 may ✅zrx 120 in 13 days ✅rcn 45 in few days ✅bat 45 in 2 days ⏰ 9 may ✅poa 25 in 2 days ✅tomo 13 in 4 days ⏰ 10 may ✅snt 30 in 17 hours ✅arpa 18 in 11 hours ✅data 13 in 1 day ⏰ 11may ✅arpa 26 in 2 days ⏰ 12 may ✅theta 47 in 11 days ✅fun 36 in few days ✅matic 15 in 20 hours ✅zil 6 in 2 hours ✅enj 10 in 5 hours ⏰ 13 may ✅ogn 10 in 8 hours ✅edo 45 in few days ✅zil 30 in 11 hours ✅waves 10 in 11 hours ✅matic 15 in 1 day 17 hours ✅eng 11 in 40 minutes ⏰ 14 may ✅via 17 in 2 day 19 hours ✅omg 42 in 2 day 4 hours ✅lto 12 in 1 hour 20 minutes ✅eng 34 in 16 hours ✅iota 18 in 4 days ✅zil 31 in 2 days ✅dusk 20 in 12 hours ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ ⏰ april profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-05-15 06:06:14+00:00 1.0 1342400398 13274 amazing may2020 profits summary ⏰ 050120 051420 congratulations vips ⏰ 1 may ✅band 30 in 24 hours ✅hbar 28 in few days ✅bqx 16 in 5 hours ⏰ 2 may ✅theta 23 in 1 day ✅qsp 12 in 19 hours ✅bqx 30 in 20 hours ⏰ 3 may ✅edo 30 in few days ✅hive 20 in 5 hours ✅zil 30 in 2 days ⏰ 4 may ✅mda 10 in few minutes ✅data 20 in 20 hours ✅zil 44 in 4 days ⏰ 5 may ✅snt 20 in 20 hours ⏰ 6 may ✅snt 52 in 1 day 20 hours ⏰ 7 may ✅zrx 45 in 13 days ⏰ 8 may ✅zrx 120 in 13 days ✅rcn 45 in few days ✅bat 45 in 2 days ⏰ 9 may ✅poa 25 in 2 days ✅tomo 13 in 4 days ⏰ 10 may ✅snt 30 in 17 hours ✅arpa 18 in 11 hours ✅data 13 in 1 day ⏰ 11may ✅arpa 26 in 2 days ⏰ 12 may ✅theta 47 in 11 days ✅fun 36 in few days ✅matic 15 in 20 hours ✅zil 6 in 2 hours ✅enj 10 in 5 hours ⏰ 13 may ✅ogn 10 in 8 hours ✅edo 45 in few days ✅zil 30 in 11 hours ✅waves 10 in 11 hours ✅matic 15 in 1 day 17 hours ✅eng 11 in 40 minutes ⏰ 14 may ✅via 17 in 2 day 19 hours ✅omg 25 in 1 day 19 hours ✅lto 12 in 1 hour 20 minutes ✅eng 34 in 16 hours ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ ⏰ april profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-05-14 18:02:51+00:00 1.0 1342400398 13103 pump result mda start price 4241 weve reached 4661 ✅quick profit 10 in few minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership ☎️free public channel link 2020-05-04 19:24:57+00:00 1.0 1342400398 13101 next post will be coin name 2020-05-04 18:56:38+00:00 1.0 1342400398 13100 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-05-04 18:31:12+00:00 1.0 1342400398 12891 april2020 profits summary ⏰040120 042220 congratulations vips ⏰ 1 april ✅ast 28 in 3 days 7 hours ✅stx 20 in 2 days 1 hours ⏰ 2 april ✅grs 45 in 6 minutes pump result ✅wrx 45 in 10 days ⏰ 3 april ✅rcn 13 in 3 days ⏰ 4 april ✅chz 20 in 6 days ✅ctxc 38 in 9 hours ✅ren 12 in 3 days ✅tct 10 in 13 hours ✅gvt 19 in 2 minutes pump result ✅nxs 28 in 8 days ✅gvt 60 in 7 days ✅arpa 12 in 6 days 22 hours ⏰ 5 april ✅kava 11 in 11 hours ⏰ 6 april ✅zec 12 in 6 days ✅mith 15 in 6 days ⏰ 7 april ✅bcpt 23 in few days ✅vet 13 in few days ⏰ 8 april ✅iost 10 in few days ✅matic 10 in few days ✅fun 10 in 1 days ⏰ 9 april ✅pivx 15 in 12 days ✅ont 13 in 3 days ✅iotx 30 in 10 days ⏰ 10 april ✅ae 10 in 8 days ✅zen 24 in 10 days ✅etc 10 in 7 days ✅hbar 15 in 2 days ⏰ 11 april ✅gnt 45 in 10 minutes pump result ✅nav 15 in 7 days ✅appc 30 in 4 days 21 hours ⏰ 12 april ✅nebl 20 in 6 days ⏰ 13 april ✅data 15 in 2 days ⏰ 14 april ✅mith 40 in 14 days pump result ⏰ 15 april ✅gvt 31 in 23 hours ⏰ 17 april ✅lrc 28 in few days ✅ren 16 in 4 days ✅lto 16 in 2 days 23 hours ⏰ 18 april ✅adx 30 in few days ✅req 38 in few days ✅celr 10 in 5 days ✅lto 25 in 4 days 9 hour ✅ren 25 in 5 days ✅cnd 60 in 4 days ⏰ 19 april ✅req 38 in few days ✅zec 34 in few days ✅coti 10 in 17 hours ✅pivx 10 in 1 days 20 hour ⏰ 20 april ✅mtl 36 in 5 days ✅qkc 20 in 5 days ✅theta 15 in 5 days ✅enj 15 in few days ⏰ 21 april ✅band 15 in 10 hours ✅enj 23 in few days ✅omg 15 in few days ⏰ 22 april ✅nav 54 in few days ✅data 30 in few days ✅arpa 42 in few days ✅drep 31 in few days ✅xlm 14 in few days ✅rcn 40 in few days ✅lend 12 in 1 day ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-25 05:33:01+00:00 1.0 1342400398 12866 april2020 profits summary ⏰040120 042220 congratulations vips ⏰ 1 april ✅ast 28 in 3 days 7 hours ✅stx 20 in 2 days 1 hours ⏰ 2 april ✅grs 45 in 6 minutes pump result ✅wrx 45 in 10 days ⏰ 3 april ✅rcn 13 in 3 days ⏰ 4 april ✅chz 20 in 6 days ✅ctxc 38 in 9 hours ✅ren 12 in 3 days ✅tct 10 in 13 hours ✅gvt 19 in 2 minutes pump result ✅nxs 28 in 8 days ✅gvt 60 in 7 days ✅arpa 12 in 6 days 22 hours ⏰ 5 april ✅kava 11 in 11 hours ⏰ 6 april ✅zec 12 in 6 days ✅mith 15 in 6 days ⏰ 7 april ✅bcpt 23 in few days ✅vet 13 in few days ⏰ 8 april ✅iost 10 in few days ✅matic 10 in few days ✅fun 10 in 1 days ⏰ 9 april ✅pivx 15 in 12 days ✅ont 13 in 3 days ✅iotx 30 in 10 days ⏰ 10 april ✅ae 10 in 8 days ✅zen 24 in 10 days ✅etc 10 in 7 days ✅hbar 15 in 2 days ⏰ 11 april ✅gnt 45 in 10 minutes pump result ✅nav 15 in 7 days ✅appc 30 in 4 days 21 hours ⏰ 12 april ✅nebl 20 in 6 days ⏰ 13 april ✅data 15 in 2 days ⏰ 14 april ✅mith 40 in 14 days pump result ⏰ 15 april ✅gvt 31 in 23 hours ⏰ 17 april ✅lrc 28 in few days ✅ren 16 in 4 days ✅lto 16 in 2 days 23 hours ⏰ 18 april ✅adx 30 in few days ✅req 38 in few days ✅celr 10 in 5 days ✅lto 25 in 4 days 9 hour ✅ren 25 in 5 days ✅cnd 60 in 4 days ⏰ 19 april ✅req 38 in few days ✅zec 34 in few days ✅coti 10 in 17 hours ✅pivx 10 in 1 days 20 hour ⏰ 20 april ✅mtl 36 in 5 days ✅qkc 20 in 5 days ✅theta 15 in 5 days ✅enj 15 in few days ⏰ 21 april ✅band 15 in 10 hours ✅enj 23 in few days ✅omg 15 in few days ⏰ 22 april ✅nav 54 in few days ✅data 30 in few days ✅arpa 42 in few days ✅drep 31 in few days ✅xlm 14 in few days ✅rcn 40 in few days ✅lend 12 in 1 day ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-24 06:00:19+00:00 1.0 1342400398 12835 april2020 profits summary ⏰040120 042220 congratulations vips ⏰ 1 april ✅ast 28 in 3 days 7 hours ✅stx 20 in 2 days 1 hours ⏰ 2 april ✅grs 45 in 6 minutes pump result ✅wrx 45 in 10 days ⏰ 3 april ✅rcn 13 in 3 days ⏰ 4 april ✅chz 20 in 6 days ✅ctxc 38 in 9 hours ✅ren 12 in 3 days ✅tct 10 in 13 hours ✅gvt 19 in 2 minutes pump result ✅nxs 28 in 8 days ✅gvt 60 in 7 days ✅arpa 12 in 6 days 22 hours ⏰ 5 april ✅kava 11 in 11 hours ⏰ 6 april ✅zec 12 in 6 days ✅mith 15 in 6 days ⏰ 7 april ✅bcpt 23 in few days ✅vet 13 in few days ⏰ 8 april ✅iost 10 in few days ✅matic 10 in few days ✅fun 10 in 1 days ⏰ 9 april ✅pivx 15 in 12 days ✅ont 13 in 3 days ✅iotx 30 in 10 days ⏰ 10 april ✅ae 10 in 8 days ✅zen 24 in 10 days ✅etc 10 in 7 days ✅hbar 15 in 2 days ⏰ 11 april ✅gnt 45 in 10 minutes pump result ✅nav 15 in 7 days ✅appc 30 in 4 days 21 hours ⏰ 12 april ✅nebl 20 in 6 days ⏰ 13 april ✅data 15 in 2 days ⏰ 14 april ✅mith 40 in 14 days pump result ⏰ 15 april ✅gvt 31 in 23 hours ⏰ 17 april ✅lrc 28 in few days ✅ren 16 in 4 days ✅lto 16 in 2 days 23 hours ⏰ 18 april ✅adx 30 in few days ✅req 38 in few days ✅celr 10 in 5 days ✅lto 25 in 4 days 9 hour ✅ren 25 in 5 days ✅cnd 60 in 4 days ⏰ 19 april ✅req 38 in few days ✅zec 34 in few days ✅coti 10 in 17 hours ✅pivx 10 in 1 days 20 hour ⏰ 20 april ✅mtl 36 in 5 days ✅qkc 20 in 5 days ✅theta 15 in 5 days ✅enj 15 in few days ⏰ 21 april ✅band 15 in 10 hours ✅enj 23 in few days ✅omg 15 in few days ⏰ 22 april ✅nav 54 in few days ✅data 30 in few days ✅arpa 42 in few days ✅drep 31 in few days ✅xlm 14 in few days ✅rcn 40 in few days ✅lend 12 in 1 day ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-23 02:16:22+00:00 1.0 1342400398 12806 april2020 profits summary ⏰040120 042020 congratulations vips ⏰ 1 april ✅ast 28 in 3 days 7 hours ✅stx 20 in 2 days 1 hours ⏰ 2 april ✅grs 45 in 6 minutes pump result ✅wrx 45 in 10 days ⏰ 3 april ✅rcn 13 in 3 days ⏰ 4 april ✅chz 20 in 6 days ✅ctxc 38 in 9 hours ✅ren 12 in 3 days ✅tct 10 in 13 hours ✅gvt 19 in 2 minutes pump result ✅nxs 28 in 8 days ✅gvt 60 in 7 days ✅arpa 12 in 6 days 22 hours ⏰ 5 april ✅kava 11 in 11 hours ⏰ 6 april ✅zec 12 in 6 days ✅mith 15 in 6 days ⏰ 7 april ✅bcpt 23 in few days ✅vet 13 in few days ⏰ 8 april ✅iost 10 in few days ✅matic 10 in few days ✅fun 10 in 1 days ⏰ 9 april ✅pivx 15 in 12 days ✅ont 13 in 3 days ✅iotx 30 in 10 days ⏰ 10 april ✅ae 10 in 8 days ✅zen 24 in 10 days ✅etc 10 in 7 days ✅hbar 15 in 2 days ⏰ 11 april ✅gnt 45 in 10 minutes pump result ✅nav 15 in 7 days ✅appc 30 in 4 days 21 hours ⏰ 12 april ✅nebl 20 in 6 days ⏰ 13 april ✅data 15 in 2 days ⏰ 14 april ✅mith 40 in 14 days pump result ⏰ 15 april ✅gvt 31 in 23 hours ⏰ 17 april ✅lrc 28 in few days ✅ren 16 in 4 days ✅lto 16 in 2 days 23 hours ⏰ 18 april ✅adx 30 in few days ✅req 38 in few days ✅celr 10 in 5 days ✅lto 25 in 4 days 9 hour ✅ren 25 in 5 days ✅cnd 60 in 4 days ⏰ 19 april ✅req 38 in few days ✅zec 34 in few days ✅coti 10 in 17 hours ✅pivx 10 in 1 days 20 hour ⏰ 20 april ✅mtl 36 in 5 days ✅qkc 20 in 5 days ✅theta 15 in 5 days ✅enj 15 in few days ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-22 06:19:20+00:00 1.0 1342400398 12804 april2020 profits summary ⏰040120 042020 congratulations vips ⏰ 1 april ✅ast 28 in 3 days 7 hours ✅stx 20 in 2 days 1 hours ⏰ 2 april ✅grs 45 in 6 minutes pump result ✅wrx 45 in 10 days ⏰ 3 april ✅rcn 13 in 3 days ⏰ 4 april ✅chz 20 in 6 days ✅ctxc 38 in 9 hours ✅ren 12 in 3 days ✅tct 10 in 13 hours ✅gvt 19 in 2 minutes pump result ✅nxs 28 in 8 days ✅gvt 60 in 7 days ✅arpa 12 in 6 days 22 hours ⏰ 5 april ✅kava 11 in 11 hours ⏰ 6 april ✅zec 12 in 6 days ✅mith 15 in 6 days ⏰ 7 april ✅bcpt 23 in few days ✅vet 13 in few days ⏰ 8 april ✅iost 10 in few days ✅matic 10 in few days ✅fun 10 in 1 days ⏰ 9 april ✅pivx 15 in 12 days ✅ont 13 in 3 days ✅iotx 30 in 10 days ⏰ 10 april ✅ae 10 in 8 days ✅zen 24 in 10 days ✅etc 10 in 7 days ✅hbar 15 in 2 days ⏰ 11 april ✅gnt 45 in 10 minutes pump result ✅nav 15 in 7 days ✅appc 30 in 4 days 21 hours ⏰ 12 april ✅nebl 20 in 6 days ⏰ 13 april ✅data 15 in 2 days ⏰ 14 april ✅mith 40 in 14 days pump result ⏰ 15 april ✅gvt 31 in 23 hours ⏰ 17 april ✅lrc 28 in few days ✅ren 16 in 4 days ✅lto 16 in 2 days 23 hours ⏰ 18 april ✅adx 30 in few days ✅req 38 in few days ✅celr 10 in 5 days ✅lto 25 in 4 days 9 hour ✅ren 25 in 5 days ✅cnd 60 in 4 days ⏰ 19 april ✅req 38 in few days ✅zec 34 in few days ✅coti 10 in 17 hours ✅pivx 10 in 1 days 20 hour ⏰ 20 april ✅mtl 36 in 5 days ✅qkc 20 in 5 days ✅theta 15 in 5 days ✅enj 15 in few days ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-21 17:56:38+00:00 1.0 1342400398 12792 april2020 profits summary ⏰040120 042020 congratulations vips ⏰ 1 april ✅ast 28 in 3 days 7 hours ✅stx 20 in 2 days 1 hours ⏰ 2 april ✅grs 45 in 6 minutes pump result ✅wrx 45 in 10 days ⏰ 3 april ✅rcn 13 in 3 days ⏰ 4 april ✅chz 20 in 6 days ✅ctxc 38 in 9 hours ✅ren 12 in 3 days ✅tct 10 in 13 hours ✅gvt 19 in 2 minutes pump result ✅nxs 28 in 8 days ✅gvt 60 in 7 days ✅arpa 12 in 6 days 22 hours ⏰ 5 april ✅kava 11 in 11 hours ⏰ 6 april ✅zec 12 in 6 days ✅mith 15 in 6 days ⏰ 7 april ✅bcpt 23 in few days ✅vet 13 in few days ⏰ 8 april ✅iost 10 in few days ✅matic 10 in few days ✅fun 10 in 1 days ⏰ 9 april ✅pivx 15 in 12 days ✅ont 13 in 3 days ✅iotx 30 in 10 days ⏰ 10 april ✅ae 10 in 8 days ✅zen 24 in 10 days ✅etc 10 in 7 days ✅hbar 15 in 2 days ⏰ 11 april ✅gnt 45 in 10 minutes pump result ✅nav 15 in 7 days ✅appc 30 in 4 days 21 hours ⏰ 12 april ✅nebl 20 in 6 days ⏰ 13 april ✅data 15 in 2 days ⏰ 14 april ✅mith 40 in 14 days pump result ⏰ 15 april ✅gvt 31 in 23 hours ⏰ 17 april ✅lrc 28 in few days ✅ren 16 in 4 days ✅lto 16 in 2 days 23 hours ⏰ 18 april ✅adx 30 in few days ✅req 38 in few days ✅celr 10 in 5 days ✅lto 25 in 4 days 9 hour ✅ren 25 in 5 days ✅cnd 60 in 4 days ⏰ 19 april ✅req 38 in few days ✅zec 34 in few days ✅coti 10 in 17 hours ✅pivx 10 in 1 days 20 hour ⏰ 20 april ✅mtl 36 in 5 days ✅qkc 20 in 5 days ✅theta 15 in 5 days ✅enj 15 in few days ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ march profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-20 23:58:07+00:00 1.0 1342400398 12690 ‼️ next post will be coin name 2020-04-15 15:55:05+00:00 1.0 1342400398 12688 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-04-15 15:29:32+00:00 1.0 1342400398 12683 march2020 profits summary ⏰030120 033120 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ 29march ✅ctxc 12 in 9 hours ✅blz 50 in 4 day 13 hours ✅grs 13 in 4 days ⏰ 30march ✅chz 10 in 2 day 17 hours ✅perl 20 in 2 day 18 hours ✅coti 18 in 18 hours ✅nkn 28 in 1 day 22 hour ⏰ 31march ✅ast 13 in 2 days 4 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-14 21:48:59+00:00 1.0 1342400398 12675 ‼️next post will be coin name 2020-04-14 15:56:11+00:00 1.0 1342400398 12640 ‼️next post will be coin name 2020-04-10 15:50:59+00:00 1.0 1342400398 12639 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-04-10 15:30:59+00:00 1.0 1342400398 12551 ‼️next post will be coin name 2020-04-04 15:52:21+00:00 1.0 1342400398 12549 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-04-04 15:31:23+00:00 1.0 1342400398 12527 march2020 profits summary ⏰030120 033120 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ 29march ✅ctxc 12 in 9 hours ✅blz 50 in 4 day 13 hours ✅grs 13 in 4 days ⏰ 30march ✅chz 10 in 2 day 17 hours ✅perl 20 in 2 day 18 hours ✅coti 18 in 18 hours ✅nkn 28 in 1 day 22 hour ⏰ 31march ✅ast 13 in 2 days 4 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-03 07:52:56+00:00 1.0 1342400398 12509 ‍♂‍♂next post will be coin name 2020-04-02 15:54:47+00:00 1.0 1342400398 12504 march2020 profits summary ⏰030120 033120 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ 29march ✅ctxc 12 in 9 hours ✅blz 50 in 4 day 13 hours ✅grs 13 in 4 days ⏰ 30march ✅chz 10 in 2 day 17 hours ✅perl 20 in 2 day 18 hours ✅coti 18 in 18 hours ✅nkn 28 in 1 day 22 hour ⏰ 31march ✅ast 13 in 2 days 4 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-02 00:23:38+00:00 1.0 1342400398 12499 march2020 profits summary ⏰030120 033120 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ 29march ✅ctxc 12 in 9 hours ✅blz 50 in 4 day 13 hours ✅grs 13 in 4 days ⏰ 30march ✅chz 10 in 2 day 17 hours ✅perl 20 in 2 day 18 hours ✅coti 18 in 18 hours ✅nkn 28 in 1 day 22 hour ⏰ 31march ✅ast 13 in 2 days 4 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-01 18:54:39+00:00 1.0 1342400398 12497 march2020 profits summary ⏰030120 033120 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ 29march ✅ctxc 12 in 9 hours ✅blz 50 in 4 day 13 hours ✅grs 13 in 4 days ⏰ 30march ✅chz 10 in 2 day 17 hours ✅perl 20 in 2 day 18 hours ✅coti 18 in 18 hours ✅nkn 28 in 1 day 22 hour ⏰ 31march ✅ast 13 in 2 days 4 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-01 18:54:23+00:00 1.0 1342400398 12494 march2020 profits summary ⏰030120 033120 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ 29march ✅ctxc 12 in 9 hours ✅blz 50 in 4 day 13 hours ✅grs 13 in 4 days ⏰ 30march ✅chz 10 in 2 day 17 hours ✅perl 20 in 2 day 18 hours ✅coti 18 in 18 hours ✅nkn 28 in 1 day 22 hour ⏰ 31march ✅ast 13 in 2 days 4 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-04-01 04:23:20+00:00 1.0 1342400398 12485 last 29 days profit march2020 profits summary ⏰030120 032920 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ 29march ✅ctxc 12 in 9 hours ✅blz 50 in 4 day 13 hours ✅grs 13 in 4 days ✅chz 10 in 2 day 17 hours ✅perl 20 in 2 day 18 hours ✅coti 18 in 18 hours ✅nkn 28 in 1 day 22 hour ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-31 04:38:31+00:00 1.0 1342400398 12446 last 28 days profit march2020 profits summary ⏰030120 032820 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-29 23:56:47+00:00 1.0 1342400398 12438 last 28 days profit march2020 profits summary ⏰030120 032820 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-29 15:58:46+00:00 1.0 1342400398 12429 last 28 days profit march2020 profits summary ⏰030120 032820 congratulations vips ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ 22march ✅brd 18 in 8 days ⏰ 23march ✅tct 50 in 6 minutes pump result ✅brd 20 in 9 days ✅steem 16 in 8 hours 32 minutes ⏰ 24march ✅nav 13 in 1 days 20 hours ✅brd 37 in 10 days ✅oax 20 in 5 minutes pump result ✅bat 10 in 45 minutes ⏰ 25march ✅via 29 in 3 days 9 hours ⏰ 26march ✅lun 45 in 1 day 2 hours ✅edo 41 in 10 minutes ✅qsp 27 in 6 days ✅rdn 28 in 1 day 22 hours ⏰ 27march ✅dlt 13 in 1 day 3 hours ✅nav 23 in 4 days ✅nas 18 in few days ✅vet 15 in few days ✅rlc 42 in 5 minutes pump result ✅lrc 8 in 2 minutes ⏰ 28march ✅wpr 21 in 5 days 14 hours ✅dlt 32 in 2 days 17 hours ✅snt 15 in 22 hours ✅gvt 12 in 19 hours ✅vibe 20 in 4 days ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ ⏰ feburary profit summary⏰ first 20 days all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-29 00:06:10+00:00 1.0 1342400398 12399 ‼️get ready next post will be coin name 2020-03-27 20:51:49+00:00 1.0 1342400398 12398 ⏰15 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-27 20:45:02+00:00 1.0 1342400398 12397 ⏰30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-27 20:31:06+00:00 1.0 1342400398 12383 ⏰ 10 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-27 15:50:15+00:00 1.0 1342400398 12350 only 1 minutes to go❗️ our experts choosed bottom based strong tafa coin our whales will pump it to the moon global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-03-26 15:58:57+00:00 1.0 1342400398 12349 ⏰ 10 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-26 15:51:02+00:00 1.0 1342400398 12348 ⏰ 60 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-26 15:04:16+00:00 1.0 1342400398 12347 ⏰ 1 hour 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-26 14:26:14+00:00 1.0 1342400398 12334 last 21 days profit march2020 profits summary ⏰030120 032120 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ⏰ 16march ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ 17march ✅tomo 40 in 4 day 2 hours ⏰ 18march ✅ark 65 in 6 days ✅steem 350 in 3 weeks ✅nas 10 in 5 day 8 hours ⏰ 19march ✅cdt 21 in 6 day 3 hours ✅data 300 in 3 weeks ✅ast 23 in 6 day 6 hours ✅rcn 31 in 7 day 7 hours ✅rdn 15 in 2 hours 19 minutes ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-25 01:20:55+00:00 1.0 1342400398 12323 ‼️next post will be coin name 2020-03-24 15:53:52+00:00 1.0 1342400398 12322 ⏰ 15 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-24 15:45:10+00:00 1.0 1342400398 12316 last 21 days profit march2020 profits summary ⏰030120 032120 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ⏰ 16march ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ 17march ✅tomo 40 in 4 day 2 hours ⏰ 18march ✅ark 65 in 6 days ✅steem 350 in 3 weeks ✅nas 10 in 5 day 8 hours ⏰ 19march ✅cdt 21 in 6 day 3 hours ✅data 300 in 3 weeks ✅ast 23 in 6 day 6 hours ✅rcn 31 in 7 day 7 hours ✅rdn 15 in 2 hours 19 minutes ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-24 04:19:06+00:00 1.0 1342400398 12300 ‼️next post will be coin name 2020-03-23 15:54:19+00:00 1.0 1342400398 12298 ⏰ 1 hour 20 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-23 14:42:43+00:00 1.0 1342400398 12285 last 21 days profit march2020 profits summary ⏰030120 032120 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ⏰ 16march ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ 17march ✅tomo 40 in 4 day 2 hours ⏰ 18march ✅ark 65 in 6 days ✅steem 350 in 3 weeks ✅nas 10 in 5 day 8 hours ⏰ 19march ✅cdt 21 in 6 day 3 hours ✅data 300 in 3 weeks ✅ast 23 in 6 day 6 hours ✅rcn 31 in 7 day 7 hours ✅rdn 15 in 2 hours 19 minutes ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-22 14:02:34+00:00 1.0 1342400398 12277 last 21 days profit march2020 profits summary ⏰030120 032120 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ⏰ 16march ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ 17march ✅tomo 40 in 4 day 2 hours ⏰ 18march ✅ark 65 in 6 days ✅steem 350 in 3 weeks ✅nas 10 in 5 day 8 hours ⏰ 19march ✅cdt 21 in 6 day 3 hours ✅data 300 in 3 weeks ✅ast 23 in 6 day 6 hours ✅rcn 31 in 7 day 7 hours ✅rdn 15 in 2 hours 19 minutes ⏰ 20march ✅vite 30 in 1 hour 12 minutes ✅tfuel 10 in 6 hours ✅appc 30 in 5 hour 20 minutes ✅bcpt 28 in 6 day 14 hours ✅nebl 30 in 8 day 1 hours ⏰ 21march ✅bcpt 85 in 7 days 17 hours ✅loom 24 in 1 day 6 hours ✅ast 30 in 7 days 21 hours ✅dnt 13 in 1 day 17 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-21 17:20:41+00:00 1.0 1342400398 12262 ‼️next post will be coin name 2020-03-21 15:54:02+00:00 1.0 1342400398 12261 ⏰ 10 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-21 15:50:09+00:00 1.0 1342400398 12260 ⏰ 20 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-21 15:40:35+00:00 1.0 1342400398 12259 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-21 15:25:29+00:00 1.0 1342400398 12249 last 19 days profit march2020 profits summary ⏰030120 031920 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ⏰ 16march ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ 17march ✅tomo 40 in 4 day 2 hours ⏰ 18march ✅ark 65 in 6 days ✅steem 350 in 3 weeks ✅nas 10 in 5 day 8 hours ⏰ 19march ✅cdt 21 in 6 day 3 hours ✅data 300 in 3 weeks ✅ast 23 in 6 day 6 hours ✅rcn 31 in 7 day 7 hours ✅rdn 15 in 2 hours 19 minutes ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-21 01:26:46+00:00 1.0 1342400398 12226 last 19 days profit march2020 profits summary ⏰030120 031920 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ⏰ 16march ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ 17march ✅tomo 40 in 4 day 2 hours ⏰ 18march ✅ark 65 in 6 days ✅steem 350 in 3 weeks ✅nas 10 in 5 day 8 hours ⏰ 19march ✅cdt 21 in 6 day 3 hours ✅data 300 in 3 weeks ✅ast 23 in 6 day 6 hours ✅rcn 31 in 7 day 7 hours ✅rdn 15 in 2 hours 19 minutes ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-20 08:14:29+00:00 1.0 1342400398 12220 last 19 days profit march2020 profits summary ⏰030120 031920 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ⏰ 16march ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ 17march ✅tomo 40 in 4 day 2 hours ⏰ 18march ✅ark 65 in 6 days ✅steem 350 in 3 weeks ✅nas 10 in 5 day 8 hours ⏰ 19march ✅cdt 21 in 6 day 3 hours ✅data 300 in 3 weeks ✅ast 23 in 6 day 6 hours ✅rcn 31 in 7 day 7 hours ✅rdn 15 in 2 hours 19 minutes ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ free public channel link 2020-03-20 04:11:55+00:00 1.0 1342400398 12184 last 15 days profit march2020 profits summary ⏰030120 031520 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-18 23:31:31+00:00 1.0 1342400398 12178 last 15 days profit march2020 profits summary ⏰030120 031520 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-18 00:22:44+00:00 1.0 1342400398 12168 last 15 days profit march2020 profits summary ⏰030120 031520 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ 15march ✅ost 56 in few days ✅ong 100 in 1 day 15 hours ✅bcpt 13 in 1 day 16 hours ✅cdt 12 in 1 day 18 hours ✅ark 27 in 3 day 2 hours ✅nebl 25 in 3 days 12 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-16 21:40:02+00:00 1.0 1342400398 12165 last 14 days profit march2020 profits summary ⏰030120 031420 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-16 03:48:09+00:00 1.0 1342400398 12146 last 14 days profit march2020 profits summary ⏰030120 031420 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-15 04:10:11+00:00 1.0 1342400398 12138 last 14 days profit march2020 profits summary ⏰030120 031420 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ⏰ 14march ✅knc 10 in 8 hours ✅tomo 17 in 8 hours ✅rvn 11 in 8 hours 32 minutes ✅rcn 27 in 1 day 12 hours ✅ast 125 in 13 hours 17 minutes ✅tct 24 in 13 hours 33 minutes ✅ong 18 in 18 hours 50 minutes ✅drep 22 in 21 hours 52 minutes ✅algo 18 in 22 hours 35 minutes ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-14 21:31:31+00:00 1.0 1342400398 12103 last 13 days profit march2020 profits summary ⏰030120 031320 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ✅knc 10 in 8 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-14 06:28:23+00:00 1.0 1342400398 12095 last 13 days profit march2020 profits summary ⏰030120 031320 congratulations vips ⏰ 1march ✅matic 20 in 7 days ✅cmt 34 in 4 days ✅knc 100 in 5 days ✅nkn 15 in 3 days 14 hours ⏰ 2march ✅bqx 24 in 2 days 22 hours ✅hbar 15 in 4 days 1 hours ✅perl 24 in 5 days 23 hours ⏰ 3march ✅rdn 26 in 6 days ✅theta 10 in 24 hours ✅dlt 10 in 3 days ✅matic 57 in 10 days ✅algo 14 in 1 day 13 hours ⏰ 4march ✅cvc 54 in 7 days ✅hbar 30 in 6 days ✅lto 45 in 2 days ✅dlt 10 in 3 days ✅xtz 25 in 8 days ⏰ 5march ✅ins 13 in 8 days ✅vib 13 in 9 days ✅lun 20 in 9 days ✅lend 135 in 8 days ✅waves 14 in 8 days ⏰ 6march ✅gto 24 in 10 days ✅waves 20 in 9 days ⏰ 7march ✅drep 62 in 11 days ✅zil 20 in 20 hours ⏰ 8march ✅sngls 22 in 12 days ✅cos 37 in few days ⏰ 9march ✅sngls 65 in 13 days ✅qkc 50 in 6 days ⏰ 10march ✅waves 44 in 13 days ⏰ 11march ✅lend 74 in 14 days ✅bqx 32 in 11 days ✅band 200 in few days ⏰ 12march ✅hbar 12 in 8 hours ✅poa 45 in 10 minutes ✅oax 10 in 10 minutes ✅qkc 10 in 1 hour 55 minutes ✅ftt 100 in 13 days ⏰ 13march ✅xtz 22 in 20 hours ✅zrx 22 in 26 hours ✅ardr 16 in 18 hours ✅eos 13 in 7 hours ✅band 42 in 11 hours ✅iotx 8 in 1 hours 14 minutes ✅ftt 100 in 12 hours ✅doge 15 in few days ✅qkc 10 in 1 hour 55 minutes ✅drep 12 in 2 hours 45 minutes ✅algo 8 in 4 hours 5 minutes ✅lto 15 in 4 hours 34 minutes ✅stx 10 in 4 hours 35 minutes ✅celr 8 in 4 hours 43 minutes ✅hbar 53 in 1 day 17 hours ✅knc 10 in 8 hours ⏰ october profit summary⏰ ⏰ november profit summary⏰ ⏰ january profit summary⏰ ⏰ feburary profit summary⏰ all results shared above with screenshot ☎️ vip membership bitcoinadmin ☎️ channel link 2020-03-14 01:45:01+00:00 1.0 1342400398 12035 ⏰ 10 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-12 18:50:23+00:00 1.0 1342400398 12034 ⏰ 20 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-12 18:38:32+00:00 1.0 1342400398 12033 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-12 18:28:42+00:00 1.0 1342400398 12032 ⏰ 40 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier ☎️contact bitcoinadmin for vip membership ☎️free public channel link 2020-03-12 18:20:11+00:00 1.0 1342400398 10275 pump result vib start price 261 weve reached 320 quick profit 22 to know next pump coin name ☎️contact bitcoinadmin for vip membership 2020-01-12 20:14:59+00:00 1.0 1342400398 10273 5 minutes left for our mega pump event 2020-01-12 19:56:57+00:00 1.0 1342400398 10272 15 minutes left to pump on binance 2020-01-12 19:46:46+00:00 1.0 1342400398 10271 20 minutes left to pump on binance 2020-01-12 19:41:58+00:00 1.0 1342400398 10269 less than 2 hours left for our mega pump event ‼️ 2020-01-12 18:17:28+00:00 1.0 1342400398 10268 ‼️next pump scheduled‼️ ⏰ saturday 12012020 at 0800 pm gmt ‼️last pump result dlt 50 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2020-01-12 15:24:18+00:00 1.0 1342400398 10185 breakout result dlt proof in 5 minutes start price 568 weve reached 792 huge quick profit 40 in 5 minutes congrats vip members to know next breakout coin name ☎️ contact bitcoinadmin for vip membership 2020-01-04 20:13:44+00:00 1.0 1342400398 9901 ‼️next pump scheduled‼️ ⏰ sunday 01122019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-12-01 10:02:15+00:00 1.0 1342400398 9892 ‼️next pump scheduled‼️ ⏰ sunday 01122019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-12-01 05:24:59+00:00 1.0 1342400398 9890 30 minutes left for binance breakout event exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ✅50 discount on lifetime membership ☎️ bitcoinadmin 2019-11-30 17:36:41+00:00 1.0 1342400398 9873 ‼️next pump scheduled‼️ ⏰ saturday 30112019 at 0600 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-29 17:39:15+00:00 1.0 1342400398 9869 ‼️next pump scheduled‼️ ⏰ saturday 30112019 at 0600 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-29 11:39:40+00:00 1.0 1342400398 9867 ‼️next pump scheduled‼️ ⏰ saturday 30112019 at 0600 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-28 18:59:48+00:00 1.0 1342400398 9858 ‼️next pump scheduled‼️ ⏰ saturday 30112019 at 0600 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-28 10:23:40+00:00 1.0 1342400398 9769 vib free breakout result start price 548 weve reached 633 ✅quick profit 16 in 5 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-11-25 12:06:44+00:00 1.0 1342400398 9603 next post will be coin name in vip channel to know the name of coin join vip membership contact ☎️ bitcoinadmin 2019-11-17 16:56:20+00:00 1.0 1342400398 9602 30 minutes left for binance breakout event exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ✅50 discount on lifetime membership ☎️ bitcoinadmin 2019-11-17 16:34:02+00:00 1.0 1342400398 9458 ‼️next pump scheduled‼️ ⏰ thursday 14112019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-13 11:42:58+00:00 1.0 1342400398 9428 10 minutes left for binance pump exclusive for vip members only ‼️want to know coin before pump contact ☎️ bitcoinadmin 2019-11-12 17:50:05+00:00 1.0 1342400398 9427 30 minutes left for binance pump exclusive for vip members only ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-12 17:31:53+00:00 1.0 1342400398 9426 45 minutes left for binance pump exclusive for vip members only targets 3050 ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-12 17:16:34+00:00 1.0 1342400398 9425 1 hour left for binance pump exclusive for vip members targets 3050 ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-12 16:56:40+00:00 1.0 1342400398 9424 2 hour left for binance pump exclusive for vip members targets 3050 ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-12 15:40:55+00:00 1.0 1342400398 9422 3 hour left for binance pump exclusive for vip members targets 3050 ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-12 14:39:49+00:00 1.0 1342400398 9421 ‼️next pump scheduled‼️ ⏰ tuesday 12112019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-12 14:35:57+00:00 1.0 1342400398 9386 ‼️next pump scheduled‼️ ⏰ tuesday 12112019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-11 14:54:58+00:00 1.0 1342400398 9385 november month profits summary so far ⏰011119 111119 congratulations vips ⏰ 1 november ✅cnd 7 in 6 minutes ✅wabi 34 in few days ✅ardr 103 in 30 hours ⏰ 2 november ✅mtl 26 in 7 days ⏰ 3 november ✅kava 41 in 24 hours ✅dusk 10 in 48 hours ⏰ 4 november ✅kmd 14 in 2 hours ✅ae 7 in 30 minutes ✅gto 11 in 3 hours ✅stx 23 in few days ⏰ 5 november ✅cdt 10 in 40 minutes ✅band 10 in 1 days ✅perl 10 in 2 days ✅cnd 20 in 4 days ⏰ 6 november ✅wan 67 in 40 minutes ✅wtc 7 in 2 days ✅iotx 38 in 3 days ✅mda 5 in 14 hours ✅iotx 38 in 3 days ✅ren 32 in few days ⏰ 7 november ✅vet 12 in 10 minutes ✅xtz 52 in 6 hours ✅bcpt 16 in 3 days ⏰ 8 november ✅zen 10 in 2 hours ✅dlt 10 in few days ✅kava 10 in 2 hours ⏰ 9 november ✅cdt 21 in 4 days ✅beam 5 in 15 minutes ✅arpa 14 in 14 hours ✅nuls 7 in few days ⏰ 10 november ✅xlm 30 in few days ✅kava16 in few days ⏰ 11 november ✅pivx 114 in 80 minutes ✅data 19 in few days ⏰ october profit summary⏰ new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️contact admin for vip membership hurry up ‍♂‍♂‍♂ bitcoinadmin 2019-11-11 13:56:18+00:00 1.0 1342400398 9366 november month profits summary so far ⏰011119 91119 congratulations vips ⏰ 1 november ✅cnd 7 in 6 minutes ✅wabi 34 in few days ✅ardr 103 in 30 hours ⏰ 2 november ✅mtl 26 in 7 days ⏰ 3 november ✅kava 41 in 24 hours ✅dusk 10 in 48 hours ⏰ 4 november ✅kmd 14 in 2 hours ✅ae 7 in 30 minutes ✅gto 11 in 3 hours ✅stx 23 in few days ⏰ 5 november ✅cdt 10 in 40 minutes ✅band 10 in 1 days ✅perl 10 in 2 days ✅cnd 20 in 4 days ⏰ 6 november ✅wan 67 in 40 minutes ✅wtc 7 in 2 days ✅iotx 38 in 3 days ✅mda 5 in 14 hours ✅iotx 38 in 3 days ✅ren 32 in few days ⏰ 7 november ✅vet 12 in 10 minutes ✅xtz 52 in 6 hours ✅bcpt 16 in 3 days ⏰ 8 november ✅zen 10 in 2 hours ✅dlt 10 in few days ✅kava 10 in 2 hours ⏰ 9 november ✅cdt 21 in 4 days ✅beam 5 in 15 minutes ✅arpa 14 in 14 hours ✅nuls 7 in few days ⏰ october profit summary⏰ new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact admin bitcoinadmin 2019-11-11 09:27:09+00:00 1.0 1342400398 9363 ‼️next pump scheduled‼️ ⏰ tuesday 12112019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-10 16:57:43+00:00 1.0 1342400398 9354 november month profits summary so far ⏰011119 91119 congratulations vips ⏰ 1 november ✅cnd 7 in 6 minutes ✅wabi 34 in few days ✅ardr 103 in 30 hours ⏰ 2 november ✅mtl 26 in 7 days ⏰ 3 november ✅kava 41 in 24 hours ✅dusk 10 in 48 hours ⏰ 4 november ✅kmd 14 in 2 hours ✅ae 7 in 30 minutes ✅gto 11 in 3 hours ✅stx 23 in few days ⏰ 5 november ✅cdt 10 in 40 minutes ✅band 10 in 1 days ✅perl 10 in 2 days ✅cnd 20 in 4 days ⏰ 6 november ✅wan 67 in 40 minutes ✅wtc 7 in 2 days ✅iotx 38 in 3 days ✅mda 5 in 14 hours ✅iotx 38 in 3 days ✅ren 32 in few days ⏰ 7 november ✅vet 12 in 10 minutes ✅xtz 52 in 6 hours ✅bcpt 16 in 3 days ⏰ 8 november ✅zen 10 in 2 hours ✅dlt 10 in few days ✅kava 10 in 2 hours ⏰ 9 november ✅cdt 21 in 4 days ✅beam 5 in 15 minutes ✅arpa 14 in 14 hours ✅nuls 7 in few days ⏰ october profit summary⏰ new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact admin bitcoinadmin 2019-11-10 03:50:16+00:00 1.0 1342400398 9348 ‼️next pump scheduled‼️ ⏰ tuesday 12112019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-10 03:39:01+00:00 1.0 1342400398 9326 ‼️next pump scheduled‼️ ⏰ tuesday 12112019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-09 05:57:33+00:00 1.0 1342400398 9314 3 hour left for binance pump exclusive for vip members targets 3050 ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-08 14:25:32+00:00 1.0 1342400398 9313 4 hour left for binance pump exclusive for vip members targets 3050 ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-08 13:02:34+00:00 1.0 1342400398 9312 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-08 13:02:34+00:00 1.0 1342400398 9306 4 hour left for binance pump exclusive for vip members targets 3050 ‼️want to know coin before pump contact with ☎️ bitcoinadmin 2019-11-08 12:35:35+00:00 1.0 1342400398 9304 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-08 12:33:33+00:00 1.0 1342400398 9300 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-08 09:36:49+00:00 1.0 1342400398 9298 november month profits summary so far ⏰011119 71119 congratulations vips ⏰ 1 november ✅cnd 7 in 6 minutes ✅wabi 34 in few days ✅ardr 103 in 30 hours ⏰ 2 november ✅mtl 26 in 7 days ⏰ 3 november ✅kava 41 in 24 hours ✅dusk 10 in 48 hours ⏰ 4 november ✅kmd 14 in 2 hours ✅ae 7 in 30 minutes ✅gto 11 in 3 hours ✅stx 23 in few days ⏰ 5 november ✅cdt 10 in 40 minutes ✅band 10 in 1 days ✅perl 10 in 2 days ✅cnd 20 in 4 days ⏰ 6 november ✅wan 67 in 40 minutes ✅wtc 7 in 2 days ✅iotx 38 in 3 days ✅mda 5 in 14 hours ✅iotx 38 in 3 days ✅ren 32 in few days ⏰ 7 november ✅vet 12 in 10 minutes ✅xtz 52 in 6 hours ✅bcpt 16 in 3 days new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-11-08 04:26:46+00:00 1.0 1342400398 9293 november month profits summary so far ⏰011119 71119 congratulations vips ⏰ 1 november ✅cnd 7 in 6 minutes ✅wabi 34 in few days ✅ardr 103 in 30 hours ⏰ 2 november ✅mtl 26 in 7 days ⏰ 3 november ✅kava 41 in 24 hours ✅dusk 10 in 48 hours ⏰ 4 november ✅kmd 14 in 2 hours ✅ae 7 in 30 minutes ✅gto 11 in 3 hours ✅stx 23 in few days ⏰ 5 november ✅cdt 10 in 40 minutes ✅band 10 in 1 days ✅perl 10 in 2 days ✅cnd 20 in 4 days ⏰ 6 november ✅wan 67 in 40 minutes ✅wtc 7 in 2 days ✅iotx 38 in 3 days ✅mda 5 in 14 hours ✅iotx 38 in 3 days ✅ren 32 in few days ⏰ 7 november ✅vet 12 in 10 minutes ✅xtz 52 in 6 hours ✅bcpt 16 in 3 days new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-11-07 16:08:04+00:00 1.0 1342400398 9292 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-07 16:03:49+00:00 1.0 1342400398 9283 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-07 13:39:04+00:00 1.0 1342400398 9266 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-06 11:36:37+00:00 1.0 1342400398 9258 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-06 07:09:40+00:00 1.0 1342400398 9240 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-05 18:20:02+00:00 1.0 1342400398 9233 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-05 08:31:56+00:00 1.0 1342400398 9224 ‼️next pump scheduled‼️ ⏰ friday 08112019 at 0500 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-11-04 12:53:39+00:00 1.0 1342400398 9190 october month profits summary so far ⏰011019 311019 congratulations vips ⏰ 30 october ✅snt 20 in 1 minute ✅dock 7 in 6 hours ⏰ 29 october ✅band 14 in 20 hours ⏰ 28 october ✅ren 13 in 24 hours ✅lun 40 in few days ✅kava 35 in 9 hours ✅stx 5 in 40 minutes ✅pivx 10 in 10 minutes ✅vet 25 in few days ✅nuls 20 in few days ⏰ 27 october ✅gxs 23 in 5 days ✅cmt 17 in 8 hours ✅iost 25 in few days ✅qtum 22 in few days ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-11-02 16:11:42+00:00 1.0 1342400398 9181 october month profits summary so far ⏰011019 311019 congratulations vips ⏰ 30 october ✅snt 20 in 1 minute ✅dock 7 in 6 hours ⏰ 29 october ✅band 14 in 20 hours ⏰ 28 october ✅ren 13 in 24 hours ✅lun 40 in few days ✅kava 35 in 9 hours ✅stx 5 in 40 minutes ✅pivx 10 in 10 minutes ✅vet 25 in few days ✅nuls 20 in few days ⏰ 27 october ✅gxs 23 in 5 days ✅cmt 17 in 8 hours ✅iost 25 in few days ✅qtum 22 in few days ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-11-01 17:45:20+00:00 1.0 1342400398 9153 october month profits summary so far ⏰011019 311019 congratulations vips ⏰ 30 october ✅snt 20 in 1 minute ✅dock 7 in 6 hours ⏰ 29 october ✅band 14 in 20 hours ⏰ 28 october ✅ren 13 in 24 hours ✅lun 40 in few days ✅kava 35 in 9 hours ✅stx 5 in 40 minutes ✅pivx 10 in 10 minutes ✅vet 25 in few days ✅nuls 20 in few days ⏰ 27 october ✅gxs 23 in 5 days ✅cmt 17 in 8 hours ✅iost 25 in few days ✅qtum 22 in few days ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-31 19:38:09+00:00 1.0 1342400398 9137 only 5 minutes left until the huge binance pump 2019-10-30 19:55:42+00:00 1.0 1342400398 9136 10 minutes left make sure you are logged in wih everything ready 2019-10-30 19:50:15+00:00 1.0 1342400398 9135 only 15 minutes left until the huge binance pump 2019-10-30 19:45:18+00:00 1.0 1342400398 9134 only 30 minutes left until the huge binance pump 2019-10-30 19:30:16+00:00 1.0 1342400398 9133 ‼️40 minutes left for binance pump to know the name of coin contact targets 3070✅✅✅ ☎️ bitcoinadmin 2019-10-30 19:20:57+00:00 1.0 1342400398 9132 october amazing profits summary so far ⏰011019 291019 congratulations vips ⏰ 28 october ✅ren 13 in 24 hours ✅lun 40 in few days ✅kava 35 in 9 hours ✅stx 5 in 40 minutes ✅pivx 10 in 10 minutes ✅vet 25 in few days ✅nuls 20 in few days ⏰ 27 october ✅gxs 23 in 5 days ✅cmt 17 in 8 hours ✅iost 25 in few days ✅qtum 22 in few days ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-30 19:09:55+00:00 1.0 1342400398 9131 ‼️1 hours left for binance pump to know the name of coin contact targets 3070✅✅✅ ☎️ bitcoinadmin 2019-10-30 19:01:45+00:00 1.0 1342400398 9130 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-30 19:01:25+00:00 1.0 1342400398 9128 ‼️2 hours left for binance pump to know the name of coin contact targets 3070✅✅✅ ☎️ bitcoinadmin 2019-10-30 17:52:41+00:00 1.0 1342400398 9127 ‼️3 hours left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-10-30 16:50:18+00:00 1.0 1342400398 9126 ‼️5 hours left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-10-30 14:28:31+00:00 1.0 1342400398 9125 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-30 14:28:02+00:00 1.0 1342400398 9123 ‼️8 hours left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-10-30 11:55:14+00:00 1.0 1342400398 9122 ‼️10 hours left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-10-30 10:15:50+00:00 1.0 1342400398 9121 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-30 03:04:36+00:00 1.0 1342400398 9120 october amazing profits summary so far ⏰011019 291019 congratulations vips ⏰ 28 october ✅ren 13 in 24 hours ✅lun 40 in few days ✅kava 35 in 9 hours ✅stx 5 in 40 minutes ✅pivx 10 in 10 minutes ✅vet 25 in few days ✅nuls 20 in few days ⏰ 27 october ✅gxs 23 in 5 days ✅cmt 17 in 8 hours ✅iost 25 in few days ✅qtum 22 in few days ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-29 16:04:38+00:00 1.0 1342400398 9118 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-29 12:48:38+00:00 1.0 1342400398 9117 october amazing profits summary so far ⏰011019 291019 congratulations vips ⏰ 28 october ✅ren 13 in 24 hours ✅lun 40 in few days ✅kava 35 in 9 hours ✅stx 5 in 40 minutes ✅pivx 10 in 10 minutes ✅vet 25 in few days ✅nuls 20 in few days ⏰ 27 october ✅gxs 23 in 5 days ✅cmt 17 in 8 hours ✅iost 25 in few days ✅qtum 22 in few days ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-29 11:54:03+00:00 1.0 1342400398 9116 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-29 09:40:05+00:00 1.0 1342400398 9110 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-29 05:07:32+00:00 1.0 1342400398 9108 october amazing profits summary so far ⏰011019 291019 congratulations vips ⏰ 28 october ✅ren 13 in 24 hours ✅lun 40 in few days ✅kava 35 in 9 hours ✅stx 5 in 40 minutes ✅pivx 10 in 10 minutes ✅vet 25 in few days ✅nuls 20 in few days ⏰ 27 october ✅gxs 23 in 5 days ✅cmt 17 in 8 hours ✅iost 25 in few days ✅qtum 22 in few days ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-29 04:06:42+00:00 1.0 1342400398 9058 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-27 09:22:01+00:00 1.0 1342400398 9055 ‼️next pump scheduled‼️ ⏰ wednesday 30102019 at 0800 pm gmt ‼️last pump result kava 100 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-26 20:15:28+00:00 1.0 1342400398 9054 october amazing profits summary so far ⏰011019 251019 congratulations vips ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-26 17:21:25+00:00 1.0 1342400398 9050 october amazing profits summary so far ⏰011019 251019 congratulations vips ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-25 17:27:48+00:00 1.0 1342400398 9044 october amazing profits summary so far ⏰011019 251019 congratulations vips ⏰ 25 october ✅kava 100 in 10 minutes breakout signal ⏰ 24 october ✅theta 32 in few days ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-25 07:55:32+00:00 1.0 1342400398 9031 october amazing profits summary so far ⏰011019 251019 congratulations vips ⏰ 25 october ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 24 october ✅theta 32 in few days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-24 19:38:44+00:00 1.0 1342400398 9024 october amazing profits summary so far ⏰011019 251019 congratulations vips ⏰ 25 october ✅link 16 in 4 days ✅wabi 16 in 4 days ⏰ 24 october ✅theta 32 in few days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-24 18:05:43+00:00 1.0 1342400398 9010 october amazing profits summary so far ⏰011019 241019 congratulations vips ⏰ 24 october ✅theta 32 in few days ⏰ 23 october ✅bat 30 free breakout signal ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-24 08:53:23+00:00 1.0 1342400398 9003 october amazing profits summary so far ⏰011019 221019 congratulations vips ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅bat 9 free breakout signal ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-23 18:28:52+00:00 1.0 1342400398 8997 october amazing profits summary so far ⏰011019 221019 congratulations vips ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅bat 9 free breakout signal ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-23 13:58:06+00:00 1.0 1342400398 8978 october amazing profits summary so far ⏰011019 221019 congratulations vips ⏰ 22 october ✅adx 118 in few days ✅xzc 7 in 2 hours ✅bat 9 free breakout signal ✅powr 7 in 45 minutes ✅gxs 86 in 1 hour ✅bcpt 18 in few days ✅link 9 in 24 hours ✅ost 125 pump result ⏰ 21 october ✅appc 107 in few days ✅erd 11 in 24 hours ⏰ 20 october ✅zen 19 in 12 hours free signal ✅nkn 6 in 3 days ✅cdt 25 in 4 days ⏰ 19 october ✅steem 34 in 3 days ⏰ 18 october ✅chz 126 in few days free signal ✅nxs 58 in 3 days ✅tnt 50 in few days ⏰ 17 october ✅gas 12 in 5 minutes ✅steem 10 in 12 hours ⏰ 16 october ✅perl 101 in 26 hours ✅ae 22 in few days ✅mana 101 in 18 hours ⏰ 15 october ✅gxs 22 in 15 hours breakout signal ✅tnt 22 in 4 days ✅lrc 93 in 40 minutes ⏰ 14 october ✅nkn 139 in days ✅dock 24 in 20 hours ✅xlm 16 in few days ⏰ 13 october ✅ark 27 in 2 days ✅lun 125 in 2 days ⏰ 11 october ✅ong 27 in 5 minutes ✅matic 51 in 2 day ✅fet 18 in 24 hours ⏰ 10 october ✅rvn 14 free signal in 24 hours ⏰ 9 october ✅qkc 75 in 15 hours ✅ren 62 in 7 days ✅matic 26 in 22 hours ✅mtl 71 in 18 hours ✅cdt 29 in 11 days ⏰ 8 october ✅one 10 in 10 hours ✅ftm 11 in 11 hours ✅ins 10 in 1 day ✅tomo 20 in 10 days ✅aion 37 in few days ✅req 34 in few days ⏰ 7 october ✅eos 155 in 10 days ✅bcpt 22 in 10 days ✅ost 10 in 18 hours ✅agi 18 in 10 days ✅mco 75 in 3 days ⏰ 6 october ✅ast 18 in 2 days free signal ✅link 40 in 10 days ✅ae 10 in 12 hours ✅ren 17 in 4 days ✅theta 112 in 3 days ⏰ 5 october ✅brd 18 in few days ✅appc 42 in 9 days ✅kmd 10 in few days ✅gto 8 in 24 hours ⏰ 4 october ✅phb 100 in 7 days ✅adx 76 in 3 days ✅eng 50 in 5 days ✅wabi 47 in 10 days ✅dlt 11 in 4 days ✅edo 40 in 7 day ⏰ 3 october ✅vibe 10 in just 1 hour 30 minutes ✅poa 58 in 30 minutes ✅cos 34 in 7 days ⏰ 2 october ✅pivx 43 in 25 minutes new signals added in vip channel all results shared above with screenshot ❓ask us any proof ❓ you could earn vip fees within a day ☎️ contact bitcoinadmin 2019-10-22 19:01:33+00:00 1.0 1342400398 8974 5 minutes left the next message will be the coin name 2019-10-22 17:55:23+00:00 1.0 1342400398 8973 ‼️1 hour left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-10-22 17:00:56+00:00 1.0 1342400398 8972 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-22 16:59:22+00:00 1.0 1342400398 8962 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-22 15:31:27+00:00 1.0 1342400398 8957 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-22 13:27:57+00:00 1.0 1342400398 8943 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-22 10:44:57+00:00 1.0 1342400398 8938 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-22 09:34:54+00:00 1.0 1342400398 8932 ‼️12 hour left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-10-22 06:14:55+00:00 1.0 1342400398 8931 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-22 06:11:40+00:00 1.0 1342400398 8927 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-21 19:11:34+00:00 1.0 1342400398 8922 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-21 16:19:36+00:00 1.0 1342400398 8909 ‼️next pump scheduled‼️ ⏰ tuesday 22102019 at 0600 pm gmt ‼️last pump result bnt 40 to know the name of coin earlier join vip membership ☎️ contact bitcoinadmin 2019-10-21 04:27:30+00:00 1.0 1342400398 8864 ✅gas breakout proof✅ start price 1850 weve reached 2090 ✅quick profit 12 in 5 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-17 15:04:47+00:00 1.0 1342400398 8862 ✅gas breakout proof✅ start price 1850 weve reached 2090 ✅quick profit 12 in 5 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-17 10:52:38+00:00 1.0 1342400398 8861 ✅gas breakout result start price 1850 weve reached 2090 ✅quick profit 12 in 5 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-17 10:52:07+00:00 1.0 1342400398 8803 ‼️ dock profit 24 in less than 20 hours ✅1st target done in 20 minutes ✅2nd target done in 20 hour congratulations vip to know the name of next breakout coin ☎️ bitcoinadmin 2019-10-15 06:10:31+00:00 1.0 1342400398 8790 ‼️ dock profit 16 in less than 20 minutes ✅1st target done in 20 minutes join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-10-14 10:54:11+00:00 1.0 1342400398 8789 ‼️ dock profit 16 in less than 20 minutes ✅1st target done in 20 minutes join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-10-14 10:53:08+00:00 1.0 1342400398 8763 ✅ong breakout result start price 1950 weve reached 2490 ✅✅✅quick profit 27 in 5 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-13 05:27:13+00:00 1.0 1342400398 8753 ✅ong breakout result start price 1950 weve reached 2490 ✅✅✅quick profit 27 in 5 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-11 17:53:36+00:00 1.0 1342400398 8751 ✅ong breakout result start price 1950 weve reached 2490 ✅✅✅quick profit 27 in 5 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-11 17:24:44+00:00 1.0 1342400398 8733 next post will be coin name in vip channel to know the name of coin contact ☎️ bitcoinadmin 2019-10-10 16:56:57+00:00 1.0 1342400398 8732 ‼️10 minutes left for binance breakout event to know the name of coin contact ☎️ bitcoinadmin 2019-10-10 16:51:05+00:00 1.0 1342400398 8730 ‼️30 minutes left for binance breakout event to know the name of coin contact ☎️ bitcoinadmin 2019-10-10 16:38:02+00:00 1.0 1342400398 8517 ✅vibe shared at 1003 am as per est newyork timezone start price 308 weve reached 341 ✅✅✅quick profit 10 in just 1 hour 30 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-03 16:41:05+00:00 1.0 1342400398 8513 updated pump result poa start price 213 weve reached 337 ✅✅✅quick profit 58 in just 30 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-03 07:16:55+00:00 1.0 1342400398 8507 updated pump result poa start price 213 weve reached 337 ✅✅✅quick profit 58 in just 30 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-02 18:13:51+00:00 1.0 1342400398 8505 updated pump result poa start price 213 weve reached 337 ✅✅✅quick profit 58 in just 30 minutes congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-10-02 18:02:55+00:00 1.0 1342400398 8502 poa pump proof 5 minutes before in vip channel amazing profit 2019-10-02 17:38:40+00:00 1.0 1342400398 8487 ‼️12 hour left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-10-02 06:08:17+00:00 1.0 1342400398 8457 ‼️4 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-30 13:42:32+00:00 1.0 1342400398 8454 ‼️6 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-30 12:03:18+00:00 1.0 1342400398 8453 ‼️7 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-30 10:46:35+00:00 1.0 1342400398 8442 ‼️12 hour left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-09-30 05:37:09+00:00 1.0 1342400398 8440 ‼️24 hour left for binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-09-29 17:35:31+00:00 1.0 1342400398 8391 ‼️ dlt profit 10 in 10 minutes ✅1st target done in 10 minutes join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-09-27 12:18:03+00:00 1.0 1342400398 8390 ‼️ dlt profit 10 in 10 minutes ✅1st target done in 10 minutes join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-09-27 12:17:30+00:00 1.0 1342400398 8382 ‼️ gxs profit 5 in 5 minutes ✅1st target done in 5 minutes join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-09-27 11:05:48+00:00 1.0 1342400398 8378 ‼️ edo profit 22 in 5 minutes ✅2nd target done in 5 minutes join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-09-27 09:54:12+00:00 1.0 1342400398 8365 next post will be coin name in vip channel 2019-09-26 17:57:11+00:00 1.0 1342400398 8364 ‼️30 minutes left for binance coin of the day exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ☎️ bitcoinadmin 2019-09-26 17:31:24+00:00 1.0 1342400398 8318 ‼️5 minutes left for vip breakout last breakout mith 18 to know the name of coin contact ☎️ bitcoinadmin 2019-09-24 16:55:04+00:00 1.0 1342400398 8294 ‼️ agi quick profit 10 in 5 minutes ✅1st target done in 10 minutes congratulations vip join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-09-23 13:59:28+00:00 1.0 1342400398 8293 ‼️ agi quick profit 10 in 5 minutes ✅1st target done in 5 minutes congratulations vip join vip membership ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-09-23 13:59:16+00:00 1.0 1342400398 8252 ‼️3 hour 30 minutes left for binance breakout event exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ✅50 discount on lifetime membership ☎️ bitcoinadmin 2019-09-21 13:26:14+00:00 1.0 1342400398 8214 pump result ong start price 1871 weve reached 2150 huge quick profit 15 congrats guys to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-09-19 17:39:58+00:00 1.0 1342400398 8208 ‼️next post will be coin name 2019-09-19 16:55:18+00:00 1.0 1342400398 8195 ‼️7 hours 30 minutes left for binance breakout event exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ✅50 discount on lifetime membership ☎️ bitcoinadmin 2019-09-19 09:25:01+00:00 1.0 1342400398 8190 ‼️binance breakout scheduled‼️ ⏰ thursday 19092019 at 0500 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️last pump result bnt 40 ‼️last pump result poa 34 ☎️ contact bitcoinadmin 2019-09-18 18:39:42+00:00 1.0 1342400398 8172 pump result poa start price 181 weve reached 245 huge quick profit 35 congrats guys next pump in next 5 hours to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-09-18 13:25:04+00:00 1.0 1342400398 8156 ‼️next pump scheduled‼️ ⏰ wednesday 18092019 at 0100 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️last pump result bnt 40 ☎️ contact bitcoinadmin 2019-09-18 06:03:40+00:00 1.0 1342400398 8113 ‼️next pump scheduled‼️ ⏰ wednesday 18092019 at 0100 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️last pump result bnt 40 ☎️ contact bitcoinadmin 2019-09-17 17:51:51+00:00 1.0 1342400398 8072 next post will be coin name in vip channel 2019-09-16 17:58:45+00:00 1.0 1342400398 8050 ‼️next pump scheduled‼️ ⏰ sunday 16092019 at 0600 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️last pump result bnt 40 ☎️ contact bitcoinadmin 2019-09-16 04:31:34+00:00 1.0 1342400398 8027 ‼️next pump scheduled‼️ ⏰ sunday 15092019 at 0500 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️last pump result bnt 40 ☎️ contact bitcoinadmin 2019-09-15 04:15:32+00:00 1.0 1342400398 8017 ‼️next post will be coin name 2019-09-13 16:57:49+00:00 1.0 1342400398 8014 ‼️25 minutes left for binance pump exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ✅50 discount on lifetime membership ☎️ bitcoinadmin 2019-09-13 16:35:44+00:00 1.0 1342400398 8013 ‼️45 minutes left for binance pump exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ✅50 discount on lifetime membership ☎️ bitcoinadmin 2019-09-13 16:17:23+00:00 1.0 1342400398 7983 ‼️45 minutes left for binance pump exclusive for vip members ‍♂‍♂‍♂‍♂join vip fast and recover your btc ✅50 discount on lifetime membership ☎️ bitcoinadmin 2019-09-11 16:20:02+00:00 1.0 1342400398 7960 ‼️ cdt proofprofit 115 ✅ in 10 minutes shared at 306 pm est timezone ✅ congratulations vip join vip fast ‍♂‍♂‍♂ to know the name of next breakout coin ☎️ bitcoinadmin 2019-09-10 19:32:21+00:00 1.0 1342400398 7879 only 5 minutes to go next post will be the coin name 2019-09-09 19:55:04+00:00 1.0 1342400398 7878 10 minutes left make sure you are logged in wih everything ready 2019-09-09 19:50:06+00:00 1.0 1342400398 7877 only 30 minutes left until the huge binance pump the coin name will come as an image 2019-09-09 19:30:03+00:00 1.0 1342400398 7876 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team ☎️ bitcoinadmin 2019-09-09 18:00:04+00:00 1.0 1342400398 7874 ‼️next pump scheduled‼️ ⏰ monday 09092019 at 0800 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️yesterday pump result data 28 ☎️ contact bitcoinadmin 2019-09-09 15:21:19+00:00 1.0 1342400398 7865 ‼️next pump scheduled‼️ ⏰ monday 09092019 at 0800 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️yesterday pump result data 28 ☎️ contact bitcoinadmin 2019-09-09 09:00:15+00:00 1.0 1342400398 7862 ‼️next pump scheduled‼️ ⏰ monday 09092019 at 0800 pm gmt ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ‼️yesterday pump result data 28 ☎️ contact bitcoinadmin 2019-09-09 06:56:30+00:00 1.0 1342400398 7855 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot lets hold this pump near peak for as long as we can 2019-09-08 20:05:04+00:00 1.0 1342400398 7852 ‼️pump announcement next pump monday 9 september 2000 gmt exchange pairing btc the recent movement on bitcoin has created desirable conditions or one of our pumps we have also moved to a completely new day in order to attract new crowds of outsiders ☎️ bitcoinadmin 2019-09-08 18:48:08+00:00 1.0 1342400398 7846 5 minutes left the next message will be the coin name 2019-09-08 17:54:37+00:00 1.0 1342400398 7803 pump announcement next pump monday 9 september 2000 gmt exchange pairing btc the recent movement on bitcoin has created desirable conditions or one of our pumps we have also moved to a completely new day in order to attract new crowds of outsiders more info to come with the 48hr reminder but be ready or a big pump ☎️ bitcoinadmin 2019-09-06 21:12:49+00:00 1.0 1342400398 7779 next post will be coin name 2019-09-04 16:57:44+00:00 1.0 1342400398 7774 ‼️15 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-04 15:27:04+00:00 1.0 1342400398 7768 ‼️35 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-04 13:36:13+00:00 1.0 1342400398 7766 ‼️4 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-04 12:43:23+00:00 1.0 1342400398 7764 ‼️6 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-04 11:16:08+00:00 1.0 1342400398 7762 ‼️7 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-04 09:51:56+00:00 1.0 1342400398 7742 next post will be coin name 2019-09-02 15:50:09+00:00 1.0 1342400398 7739 ‼️1 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-02 14:59:54+00:00 1.0 1342400398 7737 ‼️2 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-02 14:08:46+00:00 1.0 1342400398 7736 ‼️3 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-02 13:00:49+00:00 1.0 1342400398 7735 ‼️6 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-02 10:21:38+00:00 1.0 1342400398 7731 ‼️9 hour left for mega binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-02 07:01:29+00:00 1.0 1342400398 7728 ‼️next post will be coin name in vip channel dont miss it ☎️ bitcoinadmin 2019-09-01 16:49:55+00:00 1.0 1342400398 7726 ‼️1 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-01 16:15:03+00:00 1.0 1342400398 7725 ‼️2 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-01 15:02:00+00:00 1.0 1342400398 7724 ‼️5 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-01 11:47:46+00:00 1.0 1342400398 7723 ‼️9 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-01 08:04:06+00:00 1.0 1342400398 7722 ‼️12 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-09-01 05:08:31+00:00 1.0 1342400398 7721 ‼️24 hour left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-08-31 17:24:13+00:00 1.0 1342400398 7720 ‼️next pump scheduled‼️ ⏰ sunday 01092019 at 0500 pm gmt ✅last pump results qsp 40 cvc 75 bcpt 100 snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ☎️ contact bitcoinadmin 2019-08-31 13:45:45+00:00 1.0 1342400398 7685 next message will be coin name 2019-08-29 17:53:37+00:00 1.0 1342400398 7675 ‼️next pump scheduled‼️ ⏰ thursday 29082019 at 1800 gmt ✅last pump results cvc 75 bcpt 100 snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ☎️ contact bitcoinadmin 2019-08-29 06:40:45+00:00 1.0 1342400398 7659 ‼️next pump scheduled‼️ ⏰ thursday 29082019 at 1800 gmt ✅last pump results cvc 75 bcpt 100 snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 ✅vip lifetime membership discount 50 ✅ hurry up ‍♂‍♂‍♂‍♂ ☎️ contact bitcoinadmin 2019-08-28 19:12:38+00:00 1.0 1342400398 7575 pump result powr start price 612 weve reached 750 quick profit 22✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-24 17:20:26+00:00 1.0 1342400398 7572 next post will be coin name 2019-08-24 16:55:36+00:00 1.0 1342400398 7571 ‼️35 minutes left for next breakout to know the name of coin 50 discount for vip membership ☎️ bitcoinadmin 2019-08-24 16:24:47+00:00 1.0 1342400398 7538 pump result snt start price 187 weve reached 270 quick profit 45✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-23 17:21:43+00:00 1.0 1342400398 7536 next post will be coin name in vip 2019-08-23 16:52:16+00:00 1.0 1342400398 7507 pump result snt start price 187 weve reached 270 quick profit 45✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-22 20:33:04+00:00 1.0 1342400398 7504 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-22 19:55:02+00:00 1.0 1342400398 7503 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-22 19:50:04+00:00 1.0 1342400398 7502 only 30 minutes left the coin name will come as an image 2019-08-22 19:30:03+00:00 1.0 1342400398 7500 ‼️only 25 hours left team this is an important message 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned ☎️ bitcoinadmin 2019-08-22 17:39:15+00:00 1.0 1342400398 7494 ‼️only 4 hours left team this is an important message 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned ☎️ bitcoinadmin 2019-08-22 16:20:13+00:00 1.0 1342400398 7491 ‼️only 4 hours left team this is an important message 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned ☎️ bitcoinadmin 2019-08-22 16:00:03+00:00 1.0 1342400398 7487 ‼️amazing calls with all proofs dont want to miss next 6 hour left for next pump contact ☎️ bitcoinadmin 2019-08-22 14:13:45+00:00 1.0 1342400398 7459 ‼️14 hours left to next pump to know the name of coin ✅cvc 75 pump result ✅bcpt 100 pump result ✅vib 44 pump result ☎️ bitcoinadmin 2019-08-22 06:09:33+00:00 1.0 1342400398 7454 ‼️26 hours left to next pump to know the name of coin ✅cvc 75 pump result ✅bcpt 100 pump result ✅vib 44 pump result ☎️ bitcoinadmin 2019-08-21 18:49:45+00:00 1.0 1342400398 7446 pump result vib start price 167 weve reached 240 quick profit 44✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-21 18:04:59+00:00 1.0 1342400398 7443 5 minutes left the next message will be the coin name 2019-08-21 17:54:15+00:00 1.0 1342400398 7438 pump result cvc we have shared cvc 8 hours before in vip start price 370 weve reached 650 quick profit 75✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-21 16:48:47+00:00 1.0 1342400398 7437 ‼️less than 2 hours left remaining until the next pump on binance be ready to know the name of coin ☎️ bitcoinadmin 2019-08-21 16:21:59+00:00 1.0 1342400398 7429 ‼️3 hours left remaining until the next pump on binance be ready to know the name of coin ☎️ bitcoinadmin 2019-08-21 15:02:04+00:00 1.0 1342400398 7428 ‼️4 hours left remaining until the next pump on binance be ready to know the name of coin ☎️ bitcoinadmin 2019-08-21 13:52:57+00:00 1.0 1342400398 7427 ‼️less than 5 hours remaining until the next pump on binance be ready to know the name of coin ☎️ bitcoinadmin 2019-08-21 12:53:26+00:00 1.0 1342400398 7413 pump result cvc we have shared cvc 8 hours before in vip start price 370 weve reached 650 quick profit 75✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-20 18:48:46+00:00 1.0 1342400398 7361 pump result via start price 242 weve reached 298 quick profit 216✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-16 16:10:34+00:00 1.0 1342400398 7347 ‼️next pump scheduled‼️ ⏰ friday 16082019 at 400pm gmt ✅last pump results cvc 75 bcpt 100 snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-16 14:00:24+00:00 1.0 1342400398 7340 ‼️next pump scheduled‼️ ⏰ friday 16082019 at 400pm gmt ✅last pump results cvc 75 bcpt 100 snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-16 13:00:20+00:00 1.0 1342400398 7339 ‼️ less than 4 hour left for next binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-08-16 12:26:59+00:00 1.0 1342400398 7334 ‼️6 hour left for next binance pump to know the name of coin contact ☎️ sbitcoinadmin 2019-08-16 09:54:46+00:00 1.0 1342400398 7333 ‼️10 hour left for next binance pump to know the name of coin contact ☎️ bitcoinadmin 2019-08-16 06:16:28+00:00 1.0 1342400398 7332 ‼️next pump scheduled‼️ ⏰ friday 16082019 at 400pm gmt ✅last pump results cvc 75 bcpt 100 snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-15 18:07:13+00:00 1.0 1342400398 7299 pump result cvc we have shared cvc 8 hours before in vip start price 370 weve reached 650 quick profit 75✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-13 20:29:25+00:00 1.0 1342400398 7290 pump result cvc we have shared cvc 8 hours before in vip start price 370 weve reached 650 quick profit 75✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-13 20:07:34+00:00 1.0 1342400398 7285 next post will be coin name 2019-08-13 19:55:42+00:00 1.0 1342400398 7284 ‼️10 minutes left for next pump 2019-08-13 19:51:00+00:00 1.0 1342400398 7283 ‼️15 minutes left for next pump 2019-08-13 19:44:22+00:00 1.0 1342400398 7281 ‼️1 hours left for next binance pump targets 3050 to know the name of coin ☎️ bitcoinadmin 2019-08-13 19:00:43+00:00 1.0 1342400398 7278 ‼️2 hours left for next binance pump targets 3050 to know the name of coin ☎️ bitcoinadmin 2019-08-13 17:57:06+00:00 1.0 1342400398 7267 ‼️4 hours left for next binance pump to know the name of coin ☎️ bitcoinadmin 2019-08-13 16:03:01+00:00 1.0 1342400398 7266 last pump result bcpt start price 288 weve reached 444 quick profit 100✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-13 15:19:54+00:00 1.0 1342400398 7249 last pump result bcpt start price 288 weve reached 444 quick profit 100✅✅✅ next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-12 17:14:02+00:00 1.0 1342400398 7227 pump result bcpt start price 288 weve reached 339 quick profit 15 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-12 06:40:39+00:00 1.0 1342400398 7185 next post will be coin name only in vip channel to catch the name of coin ☎️ bitcoinadmin 2019-08-10 16:55:52+00:00 1.0 1342400398 7184 ‼️10 minutes left for next pump 2019-08-10 16:49:28+00:00 1.0 1342400398 7183 ‼️24 minutes left for next pump 2019-08-10 16:36:26+00:00 1.0 1342400398 7182 ‼️40 minutes left for next pump to know the name of coin join vip contact ☎️ bitcoinadmin 2019-08-10 16:12:23+00:00 1.0 1342400398 7181 ‼️3 hour left for next pump to know the name of coin join vip contact ☎️ bitcoinadmin 2019-08-10 13:56:34+00:00 1.0 1342400398 7174 ‼️less than 5 hour left for next pump to know the name of coin join vip contact ☎️ bitcoinadmin 2019-08-10 12:24:45+00:00 1.0 1342400398 7171 ‼️7 hour left for next pump to know the name of coin join vip contact ☎️ bitcoinadmin 2019-08-10 10:00:03+00:00 1.0 1342400398 7168 ‼️next pump scheduled‼️ ⏰ saturday 10082019 at 500pm gmt exchange binance this pump is going to be huge dont miss it snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-10 07:44:21+00:00 1.0 1342400398 7156 next post will be coin name 2019-08-09 14:51:47+00:00 1.0 1342400398 7155 ‼️30 minutes left for binance pump free for all 2019-08-09 14:27:22+00:00 1.0 1342400398 7150 ‼️next breakout scheduled‼️ ⏰ friday 09082019 at 300pm gmt exchange binance to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-09 07:29:40+00:00 1.0 1342400398 7147 pump result req start price 116 weve reached 127 quick profit 9 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-08 18:16:58+00:00 1.0 1342400398 7142 next post will be coin name 2019-08-08 17:57:05+00:00 1.0 1342400398 7141 ‼️10 minutes left for binance pump 2019-08-08 17:50:06+00:00 1.0 1342400398 7140 ‼️15 minutes left for binance pump 2019-08-08 17:44:29+00:00 1.0 1342400398 7139 ‼️30 minutes left for binance pump to know the name of coin earlier last pump result snm 20 ☎️ contact bitcoinadmin 2019-08-08 17:31:07+00:00 1.0 1342400398 7138 ‼️45 minutes left for binance pump to know the name of coin earlier last pump result snm 20 ☎️ contact bitcoinadmin 2019-08-08 17:18:54+00:00 1.0 1342400398 7137 ‼️15 hours left for binance pump to know the name of coin earlier last pump result snm 20 ☎️ contact bitcoinadmin 2019-08-08 16:29:22+00:00 1.0 1342400398 7136 ‼️25 hours left for binance pump to know the name of coin earlier last pump result snm 20 ☎️ contact bitcoinadmin 2019-08-08 15:31:53+00:00 1.0 1342400398 7135 ‼️less than 5 hours left for binance pump to know the name of coin earlier last pump result snm 20 ☎️ contact bitcoinadmin 2019-08-08 13:30:57+00:00 1.0 1342400398 7133 ‼️8 hour left for binance pump to know the name of coin earlier ☎️ bitcoinadmin 2019-08-08 08:28:51+00:00 1.0 1342400398 7128 ‼️12 hour left for binance pump to know the name of coin earlier ☎️ bitcoinadmin 2019-08-08 04:35:39+00:00 1.0 1342400398 7127 ‼️next pump scheduled‼️ ⏰ thursday 08082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-07 18:28:35+00:00 1.0 1342400398 7120 ‼️next pump scheduled‼️ ⏰ thursday 08082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it snm 20 cnd 37 nav 62 lrc 83 grs 33 blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-07 17:48:12+00:00 1.0 1342400398 7119 pump result snm start price 113 weve reached 137 huge quick profit 20 congrats guys next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-07 17:05:31+00:00 1.0 1342400398 7116 next post will be coin name 2019-08-07 16:54:43+00:00 1.0 1342400398 7115 10 minutes left for binance pump 2019-08-07 16:50:59+00:00 1.0 1342400398 7114 15 minutes left for binance pump 2019-08-07 16:45:01+00:00 1.0 1342400398 7113 25 minutes left for binance pump 2019-08-07 16:35:28+00:00 1.0 1342400398 7101 ♦️9 hour left for next binance breakout in vip channel targets 3050 last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 join vip in 50 discounted price ‼️to know the name of coin earlier contact ☎️ bitcoinadmin 2019-08-07 07:24:52+00:00 1.0 1342400398 7100 ♦️12 hour left for next binance breakout in vip channel targets 3050 last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 join vip in 50 discounted price ‼️to know the name of coin earlier contact ☎️ bitcoinadmin 2019-08-07 05:31:58+00:00 1.0 1342400398 7096 ♦️12 hour left for next binance breakout in vip channel targets 3050 last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 join vip in 50 discounted price ‼️to know the name of coin earlier contact ☎️ bitcoinadmin 2019-08-07 04:54:38+00:00 1.0 1342400398 7093 ‼️next pump scheduled‼️ ⏰ wednesday 07082019 at 500pm gmt exchange binance this pump is going to be huge dont miss it last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-06 19:51:02+00:00 1.0 1342400398 7089 ‼️next pump scheduled‼️ ⏰ wednesday 07082019 at 500pm gmt exchange binance this pump is going to be huge dont miss it last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-06 19:29:24+00:00 1.0 1342400398 7086 ‼️next pump scheduled‼️ ⏰ wednesday 07082019 at 500pm gmt exchange binance this pump is going to be huge dont miss it last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-06 16:57:51+00:00 1.0 1342400398 7028 pump result appc start price 412 weve reached 455 huge quick profit 104 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-05 07:10:54+00:00 1.0 1342400398 7026 pump result appc start price 412 weve reached 455 huge quick profit 104 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-04 18:57:43+00:00 1.0 1342400398 7022 pump result appc start price 412 weve reached 455 huge quick profit 104 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-04 17:16:19+00:00 1.0 1342400398 7017 next post will be coin name 2019-08-04 16:56:35+00:00 1.0 1342400398 7011 pump result cnd start price 87 weve reached 120 huge quick profit 37 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-04 13:42:38+00:00 1.0 1342400398 7000 ‼️next pump scheduled‼️ ⏰ sunday 04082019 at 500pm gmt exchange binance this pump is going to be huge dont miss it last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-03 11:41:47+00:00 1.0 1342400398 6998 ‼️next pump scheduled‼️ ⏰ sunday 04082019 at 500pm gmt exchange binance this pump is going to be huge dont miss it last pump result cnd 37 last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-03 05:19:25+00:00 1.0 1342400398 6997 pump result cnd start price 87 weve reached 120 huge quick profit 37 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-08-02 17:51:12+00:00 1.0 1342400398 6984 ‼️next pump scheduled‼️ ⏰ friday 02082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-02 09:23:21+00:00 1.0 1342400398 6979 ‼️next pump scheduled‼️ ⏰ friday 02082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-02 08:20:25+00:00 1.0 1342400398 6976 ‼️next pump scheduled‼️ ⏰ friday 02082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-02 05:53:07+00:00 1.0 1342400398 6973 ‼️next pump scheduled‼️ ⏰ friday 02082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it last pump result nav 62 last pump result lrc 83 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-08-02 00:56:52+00:00 1.0 1342400398 6971 pump result nav start price 128 weve reached 208 quick profit 625 next pump will be announced soon to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-08-01 20:07:49+00:00 1.0 1342400398 6966 next post will be coin name 2019-08-01 19:56:56+00:00 1.0 1342400398 6942 ‼️next pump scheduled‼️ ⏰ friday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it last pump result lrc 80 last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-07-31 02:28:16+00:00 1.0 1342400398 6938 ‼️next pump scheduled‼️ ⏰ friday 02082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-07-30 17:38:03+00:00 1.0 1342400398 6930 ‼️next pump scheduled‼️ ⏰ friday 02082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it last pump result grs 33 last pump result blz 19 to know the name of coin earlier ☎️ contact bitcoinadmin 2019-07-30 13:08:30+00:00 1.0 1342400398 6929 ‼️next pump scheduled‼️ ⏰ friday 02082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it to know the name of coin earlier last pump result grs 33 last pump result blz 19 ☎️ contact bitcoinadmin 2019-07-30 13:07:45+00:00 1.0 1342400398 6900 10 minutes left for binance pump 2019-07-29 14:51:34+00:00 1.0 1342400398 6899 20 minutes left for binance pump last pump result blz 19 to know the name of coin earlier ☎️ bitcoinadmin 2019-07-29 14:38:57+00:00 1.0 1342400398 6898 40 minutes left for binance pump last pump result blz 19 to know the name of coin earlier ☎️ bitcoinadmin 2019-07-29 14:19:39+00:00 1.0 1342400398 6897 1 hour left for binance pump last pump result blz 19 to know the name of coin earlier ☎️ bitcoinadmin 2019-07-29 13:59:43+00:00 1.0 1342400398 6894 less than 3 hour left for binance pump last pump result blz 19 to know the name of coin earlier ☎️ bitcoinadmin 2019-07-29 12:22:14+00:00 1.0 1342400398 6893 ‼️next pump scheduled‼️ ⏰ monday 29072019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know the name of coin earlier targets 3050 ☎️ contact bitcoinadmin 2019-07-29 12:21:51+00:00 1.0 1342400398 6881 5 hour left for binance pump last pump result blz 19 to know the name of coin earlier ☎️ bitcoinadmin 2019-07-29 10:04:17+00:00 1.0 1342400398 6880 ‼️next pump scheduled‼️ ⏰ monday 29072019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know the name of coin earlier targets 3050 ☎️ contact bitcoinadmin 2019-07-29 10:04:01+00:00 1.0 1342400398 6873 9 hour left for binance pump last pump result blz 19 to know the name of coin earlier ☎️ bitcoinadmin 2019-07-29 05:44:18+00:00 1.0 1342400398 6872 ‼️next pump scheduled‼️ ⏰ monday 29072019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know the name of coin earlier targets 3050 ☎️ contact bitcoinadmin 2019-07-29 04:24:51+00:00 1.0 1342400398 6865 pump result blz start price 402 weve reached 478 quick profit 19 next pump will be announced soon to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-07-28 17:06:22+00:00 1.0 1342400398 6862 next post will be coin name 2019-07-28 16:55:10+00:00 1.0 1342400398 6859 1 hour left for binance pump free for all ☎️ bitcoinadmin 2019-07-28 16:07:14+00:00 1.0 1342400398 6857 4 hour left for binance pump free for all ☎️ bitcoinadmin 2019-07-28 12:47:12+00:00 1.0 1342400398 6855 ‼️this pump will be free for all meaning that everyone will receive the pump signal at the exact same time with the strategy our team has put in place this upcoming pump will be one of the best pumps we have ever done as we get closer to the pump time more details will follow stay tuned ☎️ bitcoinadmin 2019-07-28 07:18:24+00:00 1.0 1342400398 6854 ‼️next pump scheduled‼️ ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know the name of coin earlier targets 3050 ☎️ contact bitcoinadmin 2019-07-28 02:59:32+00:00 1.0 1342400398 6848 ‼️next pump scheduled‼️ ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know the name of coin earlier targets 3050 ☎️ contact bitcoinadmin 2019-07-27 17:58:35+00:00 1.0 1342400398 6845 free for allpump ‼️next pump scheduled‼️ ⏰ saturday 27072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it ☎️ contact bitcoinadmin 2019-07-27 14:59:12+00:00 1.0 1342400398 6844 4 hour left for binance pump ☎️ bitcoinadmin 2019-07-27 12:56:49+00:00 1.0 1342400398 6839 free for allpump ‼️next pump scheduled‼️ ⏰ saturday 27072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it ☎️ contact bitcoinadmin 2019-07-27 09:23:29+00:00 1.0 1342400398 6815 free for allpump ‼️next pump scheduled‼️ ⏰ saturday 27072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it ☎️ contact bitcoinadmin 2019-07-26 13:15:40+00:00 1.0 1342400398 6800 free for allpump ‼️next pump scheduled‼️ ⏰ saturday 27072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it ☎️ contact bitcoinadmin 2019-07-26 09:09:53+00:00 1.0 1342400398 6799 pump result appc start price 496 weve reached 530 quick profit 7 next pump will be announced soon to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-07-26 09:09:23+00:00 1.0 1342400398 6757 ‼️this pump will be free for all meaning that everyone will receive the pump signal at the exact same time with the strategy our team has put in place this upcoming pump will be one of the best pumps we have ever done as we get closer to the pump date more details will follow stay tuned ☎️ bitcoinadmin 2019-07-25 18:34:02+00:00 1.0 1342400398 6756 free for allpump ‼️next pump scheduled‼️ ⏰ saturday 27072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it ☎️ contact bitcoinadmin 2019-07-25 18:31:42+00:00 1.0 1342400398 6753 pump result appc start price 496 weve reached 530 quick profit 7 next pump will be announced soon to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-07-25 17:41:57+00:00 1.0 1342400398 6750 next post is coin name 2019-07-25 16:57:33+00:00 1.0 1342400398 6718 ‼️next pump scheduled‼️ ⏰thursday 25072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-25 04:51:57+00:00 1.0 1342400398 6706 ‼️next pump scheduled‼️ ⏰thursday 25072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-24 16:44:04+00:00 1.0 1342400398 6701 ‼️next pump scheduled‼️ ⏰thursday 25072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-24 15:53:50+00:00 1.0 1342400398 6691 ‼️next pump scheduled‼️ ⏰thursday 25072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-24 14:10:48+00:00 1.0 1342400398 6651 10 minutes left for next breakout 2019-07-23 15:51:42+00:00 1.0 1342400398 6599 next post will be coin name 2019-07-22 16:52:52+00:00 1.0 1342400398 6593 45 minutes left for binance pump to know the name of coin earlier contact ✅vip membership plans ✅ ‼️50℅ off on lifetime vip membership ‼️ 002 btc for monthly membership hurry up‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-07-22 16:18:37+00:00 1.0 1342400398 6546 26 hours left for binance pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-07-21 14:57:40+00:00 1.0 1342400398 6545 ‼️next pump scheduled ⏰monday 22072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-21 11:11:05+00:00 1.0 1342400398 6521 ‼️next pump scheduled ⏰monday 22072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-19 21:41:27+00:00 1.0 1342400398 6515 30 minutes left for binance pump 2019-07-19 17:29:58+00:00 1.0 1342400398 6510 ‼️next pump scheduled ⏰thursday 19072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it free for all ☎️ contact bitcoinadmin 2019-07-19 08:54:12+00:00 1.0 1342400398 6495 next post will be coin name 2019-07-18 16:57:23+00:00 1.0 1342400398 6494 10 minutes left for binance pump 2019-07-18 16:50:12+00:00 1.0 1342400398 6493 20 minutes left for binance pump 2019-07-18 16:40:02+00:00 1.0 1342400398 6492 30 minutes left for binance pump to know the name of coin earlier contact last pump result rdn 103 via 83 ☎️ bitcoinpumpgroup 2019-07-18 16:30:50+00:00 1.0 1342400398 6491 1 hours left for binance pump to know the name of coin earlier contact last pump result rdn 103 via 83 ☎️ bitcoinadmin 2019-07-18 16:04:33+00:00 1.0 1342400398 6490 2 hours left for binance pump to know the name of coin earlier contact last pump result rdn 103 via 83 ☎️ bitcoinadmin 2019-07-18 15:03:51+00:00 1.0 1342400398 6488 3 hours left for binance pump to know the name of coin earlier contact last pump result rdn 103 via 83 ☎️ bitcoinadmin 2019-07-18 14:01:54+00:00 1.0 1342400398 6487 4 hours left for binance pump to know the name of coin earlier contact last pump result rdn 103 via 83 ☎️ bitcoinadmin 2019-07-18 13:14:38+00:00 1.0 1342400398 6477 8 hours left for binance pump to know the name of coin earlier contact last pump result rdn 103 via 83 ☎️ bitcoinadmin 2019-07-18 08:47:52+00:00 1.0 1342400398 6471 8 hours left for binance pump to know the name of coin earlier contact last pump result rdn 103 via 83 ☎️ bitcoinadmin 2019-07-18 08:16:25+00:00 1.0 1342400398 6465 ‼️next pump scheduled ⏰thursday 18072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-18 05:00:29+00:00 1.0 1342400398 6460 13 hours left for binance pump to know the name of coin earlier contact last pump result rdn 103 ☎️ bitcoinadmin 2019-07-18 03:44:40+00:00 1.0 1342400398 6459 ‼️next pump scheduled ⏰thursday 18072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-18 03:43:59+00:00 1.0 1342400398 6415 ‼️next pump scheduled ⏰thursday 18072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-17 09:29:54+00:00 1.0 1342400398 6401 next post will be coin name 2019-07-16 16:55:44+00:00 1.0 1342400398 6395 1 hour left for pump ✅50 discount on lifetime membership targets 30 60 to know the name of coin earlier contact admin and join vip contact ☎️ bitcoinadmin 2019-07-16 16:06:22+00:00 1.0 1342400398 6391 ‼️next pump scheduled ⏰tuesday 16072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-16 13:45:55+00:00 1.0 1342400398 6373 ‼️next pump scheduled ⏰tuesday 16072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-15 20:43:35+00:00 1.0 1342400398 6363 ‼️next pump scheduled ⏰tuesday 16072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-15 17:42:59+00:00 1.0 1342400398 6352 ‼️next pump scheduled ⏰tuesday 16072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-15 06:46:16+00:00 1.0 1342400398 6337 next post will be coin name 2019-07-14 16:57:15+00:00 1.0 1342400398 6309 ‼️next pump scheduled ⏰sunday 14072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-13 20:03:54+00:00 1.0 1342400398 6302 pump result nav start price 155 weve reached 198 quick profit 29 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-13 18:15:32+00:00 1.0 1342400398 6301 ‼️next pump scheduled ⏰sunday 14072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-13 17:22:59+00:00 1.0 1342400398 6300 pump result nav start price 155 weve reached 198 quick profit 29 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-13 17:11:34+00:00 1.0 1342400398 6294 next post will be coin name 2019-07-13 16:54:22+00:00 1.0 1342400398 6293 15 minutes left for pump ✅50 discount on lifetime membership targets 30 60 to know the name of coin earlier contact admin and join vip contact ☎️ bitcoinadmin 2019-07-13 16:44:52+00:00 1.0 1342400398 6292 30 minutes left for pump ✅50 discount on lifetime membership targets 30 60 to know the name of coin earlier contact admin and join vip contact ☎️ bitcoinadmin 2019-07-13 16:29:24+00:00 1.0 1342400398 6287 1 hour left for pump ✅50 discount on lifetime membership targets 30 60 to know the name of coin earlier contact admin and join vip contact ☎️ bitcoinadmin 2019-07-13 15:58:53+00:00 1.0 1342400398 6264 ‼️next pump scheduled ⏰saturday 13072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-13 04:01:36+00:00 1.0 1342400398 6255 ‼️next pump scheduled ⏰saturday 13072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-12 17:51:37+00:00 1.0 1342400398 6241 ‼️next pump scheduled ⏰saturday 13072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-12 07:41:13+00:00 1.0 1342400398 6226 ‼️next pump scheduled ⏰saturday 13072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-11 18:45:01+00:00 1.0 1342400398 6219 ‼️next pump scheduled ⏰saturday 13072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-11 12:55:13+00:00 1.0 1342400398 6209 ‼️next pump scheduled ⏰saturday 13072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-11 08:50:56+00:00 1.0 1342400398 6192 ‼️next pump scheduled ⏰saturday 13072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-11 03:48:04+00:00 1.0 1342400398 6152 ‼️next pump scheduled ⏰sunday 14072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-10 06:50:04+00:00 1.0 1342400398 6145 pump result cnd start price 97 weve reached 142 ‼️quick profit 44 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-09 21:15:17+00:00 1.0 1342400398 6142 pump result cnd start price 97 weve reached 142 ‼️quick profit 44 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-09 19:16:59+00:00 1.0 1342400398 6138 pump result cnd start price 97 weve reached 116 quick profit 19 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-09 17:17:02+00:00 1.0 1342400398 6132 next post will be coin name 2019-07-09 16:56:07+00:00 1.0 1342400398 6096 ‼️next pump scheduled ⏰tuesday 09072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-09 06:38:53+00:00 1.0 1342400398 6093 ‼️next pump scheduled ⏰sunday 14072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-08 18:25:51+00:00 1.0 1342400398 6087 ‼️next pump scheduled ⏰sunday 14072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-08 15:57:56+00:00 1.0 1342400398 6080 ‼️next pump scheduled ⏰sunday 14072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-08 10:39:14+00:00 1.0 1342400398 6066 ‼️next pump scheduled ⏰sunday 14072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-08 06:17:46+00:00 1.0 1342400398 6042 next post will be coin name 2019-07-07 17:55:52+00:00 1.0 1342400398 6037 40 minutes left for pump targets 20 30 to know the name of coin earlier join vip contact ☎️ bitcoinadmin 2019-07-07 17:10:44+00:00 1.0 1342400398 6030 pump result pivx start price 551 weve reached 620 quick profit 123 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-07 13:08:19+00:00 1.0 1342400398 6029 5 hours left for pump targets 20 30 to know the name of coin earlier join vip contact ☎️ bitcoinadmin 2019-07-07 13:08:02+00:00 1.0 1342400398 6016 ‼️next pump scheduled ⏰07072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-06 17:50:50+00:00 1.0 1342400398 6010 ‼️ waves 1st target in just 5 minutes we nailed it again get ready for next breakout in vip ☎️ bitcoinadmin 2019-07-06 13:19:02+00:00 1.0 1342400398 6009 ‼️ waves 1st target in just 5 minutes we nailed it again get ready for next breakout in vip ☎️ bitcoinadmin 2019-07-06 13:04:15+00:00 1.0 1342400398 6006 pump result pivx start price 551 weve reached 620 quick profit 123 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-06 11:44:48+00:00 1.0 1342400398 5990 pump result pivx start price 551 weve reached 620 quick profit 123 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-05 18:47:53+00:00 1.0 1342400398 5987 pump result pivx start price 551 weve reached 620 quick profit 123 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-05 16:06:02+00:00 1.0 1342400398 5981 next post will be coin name 2019-07-05 15:55:37+00:00 1.0 1342400398 5976 1 hour left for pump targets 20 30 to know the name of coin earlier join vip contact ☎️ bitcoinadmin 2019-07-05 15:03:40+00:00 1.0 1342400398 5971 5 hours left for pump targets 20 30 to know the name of coin earlier join vip contact ☎️ bitcoinadmin 2019-07-05 11:44:06+00:00 1.0 1342400398 5961 ‼️next pump scheduled ⏰friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-05 09:18:26+00:00 1.0 1342400398 5953 ‼️next pump scheduled ⏰friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-05 06:51:48+00:00 1.0 1342400398 5951 pump result powr start price 970 weve reached 1497 quick profit 58 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-07-05 06:02:56+00:00 1.0 1342400398 5943 ‼️next pump scheduled ⏰friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-05 04:41:34+00:00 1.0 1342400398 5940 ‼️next pump scheduled ⏰friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-04 17:43:30+00:00 1.0 1342400398 5937 pump result powr start price 970 weve reached 1497 quick profit 58 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-07-04 13:58:54+00:00 1.0 1342400398 5922 ‼️next pump scheduled ⏰friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-04 05:53:47+00:00 1.0 1342400398 5920 pump result powr start price 970 weve reached 1497 quick profit 58 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-07-04 03:44:29+00:00 1.0 1342400398 5918 pump result powr start price 970 weve reached 1497 quick profit 58 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-07-03 21:24:09+00:00 1.0 1342400398 5914 pump result powr start price 970 weve reached 1497 quick profit 58 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-07-03 21:09:09+00:00 1.0 1342400398 5902 ‼️next pump scheduled ⏰wednesday 03072019 at 900pm gmt exchange binance this pump is going to be huge dont miss it 2019-07-03 15:48:09+00:00 1.0 1342400398 5887 pump result vib start price 380 weve reached 440 quick profit 157 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-07-02 17:43:40+00:00 1.0 1342400398 5880 next post will be coin name 2019-07-02 16:57:24+00:00 1.0 1342400398 5858 ‼️next pump scheduled ⏰tuesday 02072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-02 12:32:39+00:00 1.0 1342400398 5844 ‼️next pump scheduled ⏰tuesday 02072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-02 08:36:00+00:00 1.0 1342400398 5839 ‼️ren we have shared this coin 10 days before on 19th june pump 90 huge profit for all the holders we keep remind you to hold our pump coin same with req shared on 1st july keep holding req for huge profit join vip for next breakout coin ☎️ bitcoinadmin 2019-07-02 05:53:36+00:00 1.0 1342400398 5838 ren we have shared this coin on 19th june pump 90 huge profit for all the holders we keep remind you to hold our pump coin same with req shared on 1st july keep holding req for huge profit join vip for next breakout coin ☎️ bitcoinadmin 2019-07-02 05:53:18+00:00 1.0 1342400398 5811 next post will be coin name 2019-07-01 16:55:35+00:00 1.0 1342400398 5792 ‼️ last pump result dnt start price 131 weve reached 166 quick profit 25 next pump will be announced soon keep holding till targets to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-07-01 13:08:36+00:00 1.0 1342400398 5768 ‼️next pump scheduled ⏰monday 01072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-07-01 05:18:01+00:00 1.0 1342400398 5758 ‼️ last pump result dnt start price 131 weve reached 166 quick profit 25 next pump will be announced soon keep holding till targets to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-30 18:46:06+00:00 1.0 1342400398 5756 ‼️next pump scheduled ⏰monday 01072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-30 11:30:38+00:00 1.0 1342400398 5733 ‼️ last pump result dnt start price 131 weve reached 166 quick profit 25 next pump will be announced soon keep holding till targets to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-29 18:09:15+00:00 1.0 1342400398 5730 next post will be coin name 2019-06-29 15:49:48+00:00 1.0 1342400398 5725 pump result sngls start price 119 weve reached 144 quick profit 21 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-06-29 14:54:32+00:00 1.0 1342400398 5720 ‼️next pump scheduled ⏰ saturday 29062019 at 400pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-29 10:30:44+00:00 1.0 1342400398 5709 ‼️next pump scheduled ⏰ saturday 29062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-28 19:10:51+00:00 1.0 1342400398 5703 ‼️next pump scheduled ⏰ saturday 29062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-28 18:18:58+00:00 1.0 1342400398 5702 pump result sngls start price 119 weve reached 144 quick profit 21 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-06-28 18:14:09+00:00 1.0 1342400398 5699 pump result sngls start price 119 weve reached 144 quick profit 21 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-06-28 17:22:37+00:00 1.0 1342400398 5691 next post will be coin name 2019-06-28 16:55:38+00:00 1.0 1342400398 5681 ‼️ pump result dnt start price 111 weve reached 142 quick profit 27 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-28 13:33:11+00:00 1.0 1342400398 5676 next pump scheduled ⏰ friday 28062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-28 07:44:00+00:00 1.0 1342400398 5675 ‼️ pump result dnt start price 111 weve reached 142 quick profit 27 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-28 07:37:15+00:00 1.0 1342400398 5674 ‼️next pump scheduled ⏰ saturday 29062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-28 04:16:48+00:00 1.0 1342400398 5659 ‼️next pump scheduled ⏰ saturday 29062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-27 15:40:13+00:00 1.0 1342400398 5632 ‼️ pump result dnt start price 111 weve reached 142 quick profit 27 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-27 03:13:01+00:00 1.0 1342400398 5630 ‼️ pump result dnt start price 111 weve reached 142 quick profit 27 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-26 17:07:59+00:00 1.0 1342400398 5624 next post will be coin name 2019-06-26 16:56:13+00:00 1.0 1342400398 5582 next pump scheduled ⏰ wednesday 26062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-26 04:46:58+00:00 1.0 1342400398 5570 next pump scheduled ⏰ wednesday 26062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-26 02:03:45+00:00 1.0 1342400398 5542 ‼️next pump scheduled ⏰ saturday 29062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-24 19:34:33+00:00 1.0 1342400398 5540 ‼️next pump scheduled ⏰ saturday 29062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-24 19:34:09+00:00 1.0 1342400398 5534 5 minutes left ‼️ next post is coin name 2019-06-24 18:26:05+00:00 1.0 1342400398 5529 ‼️ pump result nav start price 201 weve reached 253 quick profit 25 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-24 17:45:24+00:00 1.0 1342400398 5527 ‼️ pump result nav start price 201 weve reached 253 quick profit 25 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-24 17:18:00+00:00 1.0 1342400398 5521 next post will be coin name 2019-06-24 16:55:33+00:00 1.0 1342400398 5510 ‼️todays special announcent ‼️1 priority pump at 5 pm gmt ‼️2 free pump for all at 6 pm gmt ‼️3 50℅ off in joining vip for next 5 hour only ☎️ bitcoinadmin 2019-06-24 14:09:52+00:00 1.0 1342400398 5502 ‼️todays special announcent ‼️1 priority pump at 5 pm gmt ‼️2 free pump for all at 6 pm gmt ‼️3 50℅ off in joining vip for next 5 hour only ☎️ bitcoinadmin 2019-06-24 12:32:44+00:00 1.0 1342400398 5493 ‼️todays special announcent ‼️1 priority pump at 5 pm gmt ‼️2 free pump for all at 6 pm gmt ‼️3 50℅ off in joining vip for next 5 hour only ☎️ bitcoinadmin 2019-06-24 11:05:37+00:00 1.0 1342400398 5476 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-23 17:49:51+00:00 1.0 1342400398 5445 ‼️next pump scheduled ⏰ saturday 29062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-23 06:21:21+00:00 1.0 1342400398 5442 ‼️ gxs proof 108 profit share in vip less than 30 minutes before hit 2550 sats ⏰above date and timezone snapshot from vip group in nyc timezone ✅1st target done in less than 30 minutes dont miss profits every hour minutes contact us and follow us in vip group ☎️ bitcoinadmin 2019-06-23 04:42:11+00:00 1.0 1342400398 5440 ‼️ gxs proof 108 profit share in vip less than 30 minutes before hit 2550 sats ⏰above date and timezone snapshot from vip group in nyc timezone ✅1st target done in less than 30 minutes dont miss profits every hour minutes contact us and follow us in vip group ☎️ bitcoinadmin 2019-06-23 04:40:49+00:00 1.0 1342400398 5426 ‼️next pump scheduled ⏰ saturday 22062019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-22 08:03:45+00:00 1.0 1342400398 5424 ‼️next pump scheduled ⏰ saturday 22062019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-21 18:13:32+00:00 1.0 1342400398 5422 ‼️next pump scheduled ⏰ saturday 22062019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-21 06:41:30+00:00 1.0 1342400398 5373 ‼️ pump result ren start price 517 weve reached 588 quick profit 135 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-19 16:03:03+00:00 1.0 1342400398 5366 next post will be coin name 2019-06-19 14:56:12+00:00 1.0 1342400398 5351 ‼️next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-19 08:48:31+00:00 1.0 1342400398 5345 ‼️next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-19 07:32:52+00:00 1.0 1342400398 5338 ‼️next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-19 03:23:31+00:00 1.0 1342400398 5336 ‼️next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-18 18:18:04+00:00 1.0 1342400398 5332 ‼️next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-18 16:24:23+00:00 1.0 1342400398 5311 ‼️next pump scheduled ⏰ wednesday 19062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-18 04:57:37+00:00 1.0 1342400398 5301 ‼️next pump scheduled ⏰ wednesday 19062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-17 16:45:23+00:00 1.0 1342400398 5299 ‼️next pump scheduled ⏰ wednesday 19062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-17 09:16:46+00:00 1.0 1342400398 5293 why we cancelled last pump many people messaging us for the coin name nebl pump coin they lost money on this huge pump because it suddenly pumped then dumped there is no time advantage in this pumpwhales already bought nebl in huge quantititygetting into the right time to buy we always tell you coin name before pump we are here to earn not to loose moneydont go for big pumps use our signals or breakout signals or small pump risky where we gave coin name in vip channel earlier we will schedule next pump soon and give you coin name earlier in vip channel dont get lured by big pumpsbig pums are like big whales they just eat your money dont become their prey next time be cautious new coins added in vip channel use those and earn 1020 within 23 days ☎️ bitcoinadmin 2019-06-17 03:34:55+00:00 1.0 1342400398 5285 ‼️ pump result storj start price 3498 weve reached 6100 quick profit 75 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-16 12:06:32+00:00 1.0 1342400398 5278 ‼️next pump scheduled ⏰ sunday 16062019 at 900pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-16 06:16:42+00:00 1.0 1342400398 5253 ‼️ pump result storj start price 3498 weve reached 6100 quick profit 75 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-15 11:10:09+00:00 1.0 1342400398 5250 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-15 04:32:32+00:00 1.0 1342400398 5249 ‼️ pump result storj start price 3498 weve reached 6100 quick profit 75 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-14 19:38:23+00:00 1.0 1342400398 5248 1 day left for pump ‼️want to know coin before pump contact with bitcoinadmin 2019-06-14 18:48:58+00:00 1.0 1342400398 5247 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-14 18:40:18+00:00 1.0 1342400398 5236 1 day left for pump ‼️want to know coin before pump contact with bitcoinadmin 2019-06-14 06:08:40+00:00 1.0 1342400398 5235 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-14 06:08:00+00:00 1.0 1342400398 5230 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-14 04:23:39+00:00 1.0 1342400398 5227 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-13 16:56:53+00:00 1.0 1342400398 5220 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-13 11:31:53+00:00 1.0 1342400398 5218 ‼️ pump result storj start price 3498 weve reached 6100 quick profit 75 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-13 09:02:03+00:00 1.0 1342400398 5212 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-13 06:46:50+00:00 1.0 1342400398 5203 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-13 02:24:52+00:00 1.0 1342400398 5198 ‼️next pump scheduled ⏰ saturday 15062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-06-12 16:51:33+00:00 1.0 1342400398 5196 agi proof so far 23 profit hit 736 satoshi in 5 hours above date and timezone snapshot from vip group in nyc timezone ✅all target done in 5 hours dont miss profits every hour minutes contact us and follow us in vip group ☎️ bitcoinadmin 2019-06-12 15:47:25+00:00 1.0 1342400398 5195 agi proof so far 23 profit hit 736 satoshi in 5 hours above date and timezone snapshot from vip group ✅all target done in 5 hours dont miss profits every hour minutes contact us and follow us in vip group ☎️ bitcoinadmin 2019-06-12 15:18:01+00:00 1.0 1342400398 5192 lun proof so far 6 profit hit 3512 satoshi in 5 hours above date and timezone snapshot from vip group ✅1st target done in 5 hours dont miss profits every hour minutes contact us and follow us in vip group ☎️ bitcoinadmin 2019-06-12 12:09:20+00:00 1.0 1342400398 5178 next breakout coin name announced in vip channel easy 1020 profit in just one day you want to know name of coin we will announce the next pump soon ☎️ bitcoinadmin 2019-06-12 06:45:44+00:00 1.0 1342400398 5173 ‼️ pump result storj start price 3498 weve reached 6100 quick profit 75 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-12 03:48:56+00:00 1.0 1342400398 5172 lend so far 811 profit hit 140 satoshi in 30 minutes dont miss profits every hour minutes contact us and follow us in vip group ☎️ bitcoinadmin 2019-06-11 20:17:32+00:00 1.0 1342400398 5168 ‼️ pump result storj start price 3498 weve reached 6100 quick profit 75 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-11 19:12:13+00:00 1.0 1342400398 5160 ‼️ pump result storj start price 3498 weve reached 6100 quick profit 75 next pump will be announced soon to know next coin name earlier thanks vip for making is successful ☎️contact bitcoinadmin for vip membership 2019-06-11 18:27:35+00:00 1.0 1342400398 5153 ‼️next post will be coin name 2019-06-11 17:56:00+00:00 1.0 1342400398 5146 ‼️3 hour left for mega breakout to know the name the name of coin join vip channel for more information ☎️ bitcoinadmin 2019-06-11 15:04:00+00:00 1.0 1342400398 5145 ‼️next pump scheduled ⏰ tuesday 11062019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-11 15:03:52+00:00 1.0 1342400398 5144 ‼️4 hour left for mega breakout to know the name the name of coin join vip channel for more information ☎️ bitcoinadmin 2019-06-11 14:03:52+00:00 1.0 1342400398 5143 ‼️6 hour left for mega breakout to know the name the name of coin join vip channel for more information ☎️ bitcoinadmin 2019-06-11 11:11:04+00:00 1.0 1342400398 5142 ‼️8 hour left for mega breakout to know the name the name of coin join vip channel for more information ☎️ bitcoinadmin 2019-06-11 10:03:11+00:00 1.0 1342400398 5137 ‼️9 hour left for mega breakout to know the name the name of coin join vip channel for more information ☎️ bitcoinadmin 2019-06-11 09:10:07+00:00 1.0 1342400398 5136 ‼️11 hour left for mega breakout to know the name the name of coin join vip channel for more information ☎️ bitcoinadmin 2019-06-11 07:13:45+00:00 1.0 1342400398 5135 ‼️next pump scheduled ⏰ tuesday 11062019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-11 07:12:17+00:00 1.0 1342400398 5122 ‼️next pump scheduled ⏰ tuesday 11062019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-10 17:20:21+00:00 1.0 1342400398 5118 ‼️next pump scheduled ⏰ tuesday 11062019 at 600pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-10 14:10:03+00:00 1.0 1342400398 5090 5 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-09 15:38:39+00:00 1.0 1342400398 5089 7 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-09 13:26:09+00:00 1.0 1342400398 5087 9 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-09 11:31:18+00:00 1.0 1342400398 5086 13 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-09 07:26:19+00:00 1.0 1342400398 5085 next pump scheduled ⏰ sunday 09062019 at 900pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-09 04:00:47+00:00 1.0 1342400398 5070 next post will be coin name 2019-06-08 16:48:15+00:00 1.0 1342400398 5065 1 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-08 15:58:39+00:00 1.0 1342400398 5064 ‼️evx hit 11000 3rd target hit ✅30 awesome profit ✅ next pump in 1 hour join vip ☎️ bitcoinadmin 2019-06-08 15:46:04+00:00 1.0 1342400398 5062 2 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-08 14:59:26+00:00 1.0 1342400398 5061 3 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-08 14:02:10+00:00 1.0 1342400398 5060 4 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-08 12:26:41+00:00 1.0 1342400398 5055 5 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-08 11:23:09+00:00 1.0 1342400398 5054 7 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-08 09:58:16+00:00 1.0 1342400398 5052 12 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-08 03:38:05+00:00 1.0 1342400398 5051 24 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-07 18:52:54+00:00 1.0 1342400398 5049 24 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-07 17:48:17+00:00 1.0 1342400398 5047 24 hour left for the binance pump to know the coin name earlier contact ☎️ bitcoinadmin 2019-06-07 16:14:02+00:00 1.0 1342400398 5031 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-07 05:54:32+00:00 1.0 1342400398 5025 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-06 18:20:32+00:00 1.0 1342400398 5022 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-06 12:02:24+00:00 1.0 1342400398 5016 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-06 07:06:00+00:00 1.0 1342400398 5005 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-05 19:38:09+00:00 1.0 1342400398 4991 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-05 11:12:32+00:00 1.0 1342400398 4987 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-05 08:28:38+00:00 1.0 1342400398 4978 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-04 16:32:27+00:00 1.0 1342400398 4943 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-03 17:27:30+00:00 1.0 1342400398 4942 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 2 minutes earlier happy trading ☎️ contact bitcoinadmin 2019-06-03 15:00:06+00:00 1.0 1342400398 4940 next pump scheduled ⏰ saturday 08062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-06-03 14:08:10+00:00 1.0 1342400398 4885 last pump result ardr start price 993 weve reached 1054 quick profit 6 next pump will announce soon to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-05-31 17:35:16+00:00 1.0 1342400398 4879 next post will be coin name 2019-05-31 16:56:20+00:00 1.0 1342400398 4875 ‼️35 minutes left to binance pump‼️ to know the name of coin earlier contact ☎️ bitcoinprofitadmin 2019-05-31 16:25:39+00:00 1.0 1342400398 4874 ‼️90 minutes left to binance pump‼️ to know the name of coin earlier contact ☎️ bitcoinadmin 2019-05-31 15:30:45+00:00 1.0 1342400398 4872 last pump result blz start price 742 weve reached 820 quick profit 105 next pump schedule check pinned message to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-05-31 14:46:54+00:00 1.0 1342400398 4853 last pump result blz start price 742 weve reached 820 quick profit 105 next pump schedule check pinned message to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-05-31 09:19:12+00:00 1.0 1342400398 4850 ‼️9 hour left to binance pump‼️ check out last pump results in pinned message to know the name of coin earlier contact ☎️ bitcoinadmin 2019-05-31 08:03:48+00:00 1.0 1342400398 4846 last pump result blz start price 742 weve reached 820 quick profit 105 next pump schedule check pinned message to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-05-31 03:58:39+00:00 1.0 1342400398 4845 next pump scheduled ⏰ friday 31052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-05-30 18:17:57+00:00 1.0 1342400398 4842 last pump result blz start price 742 weve reached 820 quick profit 105 next pump schedule check pinned message to know next coin name earlier ☎️contact bitcoinadmin for vip membership 2019-05-30 16:32:07+00:00 1.0 1342400398 4837 next pump scheduled ⏰ friday 31052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact bitcoinadmin 2019-05-30 14:53:29+00:00 1.0 1342400398 4779 ‼️next breakout scheduled ⏰ 28052019 at 300pm gmt exchange binance free pump for alll ☎️ contact bitcoinadmin 2019-05-28 10:02:17+00:00 1.0 1342400398 4776 ‼️next breakout scheduled ⏰ 28052019 at 300pm gmt exchange binance free pump for alll ☎️ contact bitcoinadmin 2019-05-28 09:02:23+00:00 1.0 1342400398 4769 pump result blz start price 742 weve reached 820 quick profit 105 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-05-28 01:08:15+00:00 1.0 1342400398 4761 next post will be coin name 2019-05-27 16:56:09+00:00 1.0 1342400398 4756 1 hour left to pump on binance to know coin name earlier join premium ☎ contact bitcoinadmin 2019-05-27 16:03:31+00:00 1.0 1342400398 4751 ‼️next pump scheduled ⏰ 27052019 at 500pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-27 13:09:35+00:00 1.0 1342400398 4732 ‼️next pump scheduled ⏰ 27052019 at 500pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-26 13:44:26+00:00 1.0 1342400398 4661 next post will be coin name 2019-05-23 16:56:30+00:00 1.0 1342400398 4656 ‼️next pump scheduled ⏰ 23052019 at 500pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-23 16:07:51+00:00 1.0 1342400398 4628 ‼️next pump scheduled ⏰ 23052019 at 500pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-23 06:26:52+00:00 1.0 1342400398 4559 ‼️next pump scheduled ⏰ 23052019 at 500pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-22 08:29:21+00:00 1.0 1342400398 4541 via amazing pump guys next breakout alerts coin name ‍♂‍♂hurry to know the name of coin ☎️ contact bitcoinadmin 2019-05-21 18:16:45+00:00 1.0 1342400398 4535 ‼️next breakout scheduled ⏰ 21052019 at 600pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-21 17:58:01+00:00 1.0 1342400398 4528 ‼️next breakout scheduled ⏰ 21052019 at 600pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-21 14:56:08+00:00 1.0 1342400398 4453 20 minute left to pump on binance next post will be coin name 2019-05-18 16:50:38+00:00 1.0 1342400398 4449 next pump scheduled ⏰ saturday 18052019 at 500pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-18 08:13:13+00:00 1.0 1342400398 4440 next pump scheduled ⏰ saturday 18052019 at 500pm gmt exchange binance to know coin name earlier join vip ☎️ contact bitcoinadmin 2019-05-18 01:34:27+00:00 1.0 1342400398 4368 ❤️next breakout pump signal will be announced only in vip channel in next 1 hour join vip and earn huge ☎️ contact bitcoinadmin 2019-05-16 03:07:58+00:00 1.0 1342400398 4347 ❤️next breakout pump signal will be announced only in vip channel in next 1 hour join vip and earn huge ☎️ contact bitcoinadmin 2019-05-15 13:52:49+00:00 1.0 1342400398 4316 ‼️next breakout pump signal will be announced only in vip channel in next 1 hour join vip and earn huge ☎️ contact bitcoinadmin 2019-05-14 03:59:50+00:00 1.0 1342400398 4312 next post will be coin name 2019-05-13 14:55:45+00:00 1.0 1342400398 4311 10 minutes left for binance pump 2019-05-13 14:51:52+00:00 1.0 1342400398 4310 30 minutes left for binance pump 2019-05-13 14:31:12+00:00 1.0 1342400398 4301 next breakout pump signal will be announced only in vip channel in next 1 hour join vip and earn huge ☎️ contact bitcoinadmin 2019-05-13 10:25:45+00:00 1.0 1342400398 4299 ♦️ binance pump announcement♦️ date 13th may time 300 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-13 09:37:10+00:00 1.0 1342400398 4292 next breakout pump signal will be announced only in vip channel in next 1 hour join vip and earn huge ☎️ contact bitcoinadmin 2019-05-12 08:17:21+00:00 1.0 1342400398 4290 pump result rdn start price 4288 weve reached 4950 quick profit 15 next pump will be announced soon to know next coin name earlier contact bitcoinadmin for vip membership 2019-05-10 16:24:00+00:00 1.0 1342400398 4288 20 minutes left to binance pump 2019-05-10 15:39:35+00:00 1.0 1342400398 4287 30 minutes left to binance pump 2019-05-10 15:30:43+00:00 1.0 1342400398 4286 ‼️3 hour left to next pump on binance 2019-05-10 12:09:42+00:00 1.0 1342400398 4279 ♦️ binance pump announcement♦️ date 10th may time 300 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-10 03:47:07+00:00 1.0 1342400398 4252 ♦️ binance announcement♦️ date 7th may time 200 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-07 04:33:23+00:00 1.0 1342400398 4248 ♦️ binance announcement♦️ date 7th may time 200 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-06 17:12:25+00:00 1.0 1342400398 4243 ♦️ binance announcement♦️ date 7th may time 200 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-06 13:21:51+00:00 1.0 1342400398 4241 ♦️ binance announcement♦️ date 7th may time 200 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-06 13:10:58+00:00 1.0 1342400398 4235 last pump result mth start price 330 weve reached 364 quick profit 103 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-05-06 09:59:17+00:00 1.0 1342400398 4219 last pump result mth start price 330 weve reached 364 quick profit 103 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-05-06 03:22:10+00:00 1.0 1342400398 4214 next pump coin name announced in vip hurry join vip to know the name of coin ☎️ bitcoinadmin 2019-05-05 17:46:46+00:00 1.0 1342400398 4209 ‼️2 hour 20 minutes left for binance pump‼️ to know the name of coin ☎️ bitcoinadmin 2019-05-05 15:41:06+00:00 1.0 1342400398 4204 ♦️ binance pump announcement♦️ date 5th may time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-05 06:30:25+00:00 1.0 1342400398 4197 ♦️ binance pump announcement♦️ date 5th may time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-04 18:06:51+00:00 1.0 1342400398 4194 ♦️ binance pump announcement♦️ date 5th may time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-04 11:30:40+00:00 1.0 1342400398 4190 ♦️ binance pump announcement♦️ date 5th may time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-05-04 10:12:31+00:00 1.0 1342400398 4140 next breakout signals will be announce soon in vip market looks ready for pump to know the coin name join vip ☎️ bitcoinadmin 2019-05-01 13:37:24+00:00 1.0 1342400398 4137 next breakout signals will be announce soon in vip market looks ready for pump to know the coin name join vip ☎️ bitcoinadmin 2019-05-01 07:23:19+00:00 1.0 1342400398 4133 next pump will be announce soon market looks ready for pump to know the coin name ☎️ bitcoinadmin 2019-04-30 18:14:59+00:00 1.0 1342400398 4122 as 40 of members stuck in alt coins and didnt participate in pump we will expect next pump will be huge but 8 quick profit within 5 minutes is really good in this bear market also btc started fluctuating few hours ago and all coins went down which also affected pump as req holders selling fast join premium and earn huge ☎️ contact bitcoinadmin 2019-04-29 16:11:06+00:00 1.0 1342400398 4116 next post will be coin name 2019-04-29 14:55:31+00:00 1.0 1342400398 4104 last pump result snm start price 510 weve reached 556 quick profit 9 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-04-29 05:10:38+00:00 1.0 1342400398 4101 ♦️ binance pump announcement♦️ date 29 april time 300 pm gmt exchange binance to know the name of coin earlier before pump join vip last pump result snm start price 510 weve reached 556 quick profit 9 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership ☎️ bitcoinadmin 2019-04-28 16:49:19+00:00 1.0 1342400398 4100 are you ready for next pump anonymous poll yes – 92 62 no stuck in alt coins – 57 38 149 people voted so far 2019-04-28 12:20:13+00:00 1.0 1342400398 4080 are you ready for next pump anonymous poll no still stuck in alt coins – 82 58 yes – 59 42 141 people voted so far 2019-04-24 18:33:26+00:00 1.0 1342400398 4064 pump result snm start price 510 weve reached 556 quick profit 9 next pump will be announced soon to know next coin name earlier ☎️ contact bitcoinadmin for vip membership 2019-04-23 15:35:31+00:00 1.0 1342400398 4057 next post will be coin name 2019-04-23 14:57:26+00:00 1.0 1342400398 4053 30 minutes left for the binance pump ‼️dont want to miss profit ❤️to know coin name earlier join vip ☎ contact bitcoinadmin 2019-04-23 14:33:29+00:00 1.0 1342400398 4052 45 minutes left for the binance pump ‼️dont want to miss profit ❤️to know coin name earlier join vip ☎ contact bitcoinadmin 2019-04-23 14:15:25+00:00 1.0 1342400398 4041 5 hours left for the binance pump ‼️dont want to miss profit ❤️to know coin name earlier join vip ☎ contazct bitcoinadmin 2019-04-23 09:55:52+00:00 1.0 1342400398 4039 6 hours left for the binance pump ‼️dont want to miss profit ❤️to know coin name earlier join vip ☎ contazct bitcoinadmin 2019-04-23 08:51:08+00:00 1.0 1342400398 4030 ♦️ binance pump announcement♦️ date 23rd april time 300 pm gmt exchange binance 2019-04-22 10:21:45+00:00 1.0 1342400398 4020 ♦️ binance pump announcement♦️ date 23rd april time 300 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-22 08:16:29+00:00 1.0 1342400398 4013 next post will be coin name 2019-04-21 18:55:23+00:00 1.0 1342400398 4010 1 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-04-21 18:16:36+00:00 1.0 1342400398 4009 2 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-04-21 16:48:19+00:00 1.0 1342400398 4008 3 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-04-21 16:22:06+00:00 1.0 1342400398 4007 3 hour left to pump on binance 2019-04-21 15:46:57+00:00 1.0 1342400398 4004 4 hour left to pump on binance 2019-04-21 15:04:59+00:00 1.0 1342400398 3916 next post is coin name 2019-04-17 16:51:31+00:00 1.0 1342400398 3914 ‼️30 minutes left for the pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-04-17 16:28:43+00:00 1.0 1342400398 3913 ‼️2 hour left for the pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-04-17 14:42:52+00:00 1.0 1342400398 3911 ‼️5 hour left for the pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-04-17 11:34:55+00:00 1.0 1342400398 3909 ‼️8 hour left for the pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-04-17 08:59:27+00:00 1.0 1342400398 3907 ‼️12 hour left for the pump to know the name of coin earlier contact ☎️ bitcoinadmin 2019-04-17 04:19:28+00:00 1.0 1342400398 3906 ♦️ binance pump announcement♦️ date 17th april time 500 pm gmt exchange binance ✅last pump profit 18℅✅blz ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-17 02:48:31+00:00 1.0 1342400398 3897 next breakout 7 hours left coin name will be announced hurry join vip ‍♂‍♂ ☎️ bitcoinadmin 2019-04-16 12:05:48+00:00 1.0 1342400398 3886 ♦️ binance pump announcement♦️ date 17th april time 500 pm gmt exchange binance ✅last pump profit 18℅✅blz ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-15 18:30:09+00:00 1.0 1342400398 3884 ♦️ binance pump announcement♦️ date 17th april time 500 pm gmt exchange binance ✅last pump profit 18℅✅blz ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-15 16:04:45+00:00 1.0 1342400398 3871 next post will be coin name 2019-04-14 18:47:36+00:00 1.0 1342400398 3869 ‼️ 30 minutes left until the coin name announcement to know the name of coin early join vip membership ☎️ bitcoinadmin 2019-04-14 18:25:58+00:00 1.0 1342400398 3867 ‼️ 1 hour left until the coin name announcement to know the name of coin early join vip membership ☎️ bitcoinadmin 2019-04-14 17:43:46+00:00 1.0 1342400398 3866 ‼️ 2 hour left until the coin name announcement to know the name of coin early join vip membership ☎️ bitcoinadmin 2019-04-14 17:14:03+00:00 1.0 1342400398 3863 ‼️ 3 hour left until the coin name announcement to know the name of coin early join vip membership ☎️ bitcoinadmin 2019-04-14 15:58:47+00:00 1.0 1342400398 3862 ‼️ 4 hour left until the coin name announcement to know the name of coin early join vip membership ☎️ bitcoinadmin 2019-04-14 15:19:30+00:00 1.0 1342400398 3860 ‼️ 5 hour left until the coin name announcement to know the name of coin early join vip membership ☎️ bitcoinadmin 2019-04-14 14:33:16+00:00 1.0 1342400398 3858 ‼️ 6 hour left until the coin name to know the name of coin early join vip membership ☎️ bitcoinadmin 2019-04-14 13:17:43+00:00 1.0 1342400398 3856 ‼️ 6 hour left until the pump on binance 2019-04-14 13:10:41+00:00 1.0 1342400398 3849 ‼️ 7 hour left to pump on binance to know coin name earlier join premium ☎️ contacts bitcoinadmin 2019-04-14 12:11:32+00:00 1.0 1342400398 3846 ‼️ 10 hour left until the pump on binance 2019-04-14 09:27:33+00:00 1.0 1342400398 3843 ‼️ 10 hour left until the pump on binance 2019-04-14 09:23:23+00:00 1.0 1342400398 3841 ♦️ binance pump announcement♦️ date 14th april time 700 pm gmt exchange binance ✅last pump profit 18℅✅blz ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-14 08:05:13+00:00 1.0 1342400398 3828 ♦️ binance pump announcement♦️ date 14th april time 700 pm gmt exchange binance ✅last pump profit 18℅✅blz ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-14 06:04:38+00:00 1.0 1342400398 3806 ♦️ binance pump announcement♦️ date 14th april time 700 pm gmt exchange binance ✅last pump profit 18℅✅blz ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-13 19:03:23+00:00 1.0 1342400398 3803 next post is coin name 2019-04-13 16:26:32+00:00 1.0 1342400398 3800 ‼️ 15 hour left until the pump on binance 2019-04-13 15:36:05+00:00 1.0 1342400398 3798 ‼️ 3 hour left until the pump on binance 2019-04-13 13:52:35+00:00 1.0 1342400398 3793 ‼️ 10 hour left until the pump on binance 2019-04-13 06:44:16+00:00 1.0 1342400398 3790 ♦️ binance pump announcement♦️ date 13th april time 500 pm gmt exchange binance ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-12 10:55:37+00:00 1.0 1342400398 3780 ♦️ binance pump announcement♦️ date 13th april time 500 pm gmt exchange binance ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ ✅last pump profit 96℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-12 04:23:33+00:00 1.0 1342400398 3766 coin to pump is snm exchange yobitnet target +200 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-11 17:00:34+00:00 1.0 1342400398 3764 next post is coin name 2019-04-11 16:55:50+00:00 1.0 1342400398 3763 ‼️ 10 minutes ‼️ so close now make sure you are ready to buy coin on yobitnet 2019-04-11 16:50:21+00:00 1.0 1342400398 3762 ‼️ 20 minutes ‼️ so close now make sure you are ready to buy coin on yobitnet 2019-04-11 16:41:20+00:00 1.0 1342400398 3760 ☺️1 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-11 16:01:47+00:00 1.0 1342400398 3759 ☺️2 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-11 15:06:09+00:00 1.0 1342400398 3758 ☺️3 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-11 14:13:01+00:00 1.0 1342400398 3756 ‼️5 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-11 11:31:40+00:00 1.0 1342400398 3755 ‼️7 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-11 09:57:43+00:00 1.0 1342400398 3753 ‼️10 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-11 08:27:51+00:00 1.0 1342400398 3752 ‼️12 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-11 04:28:34+00:00 1.0 1342400398 3751 ♦️ pump announcement♦️ date 11th april time 500 pm gmt exchange yobit ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-10 18:56:47+00:00 1.0 1342400398 3744 ‼️40 minutes left for pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-10 16:22:07+00:00 1.0 1342400398 3743 ‼️less than 2 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-10 15:37:11+00:00 1.0 1342400398 3742 ‼️less than 3 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-10 14:29:12+00:00 1.0 1342400398 3740 ‼️3 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-10 13:40:19+00:00 1.0 1342400398 3739 ‼️5 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-10 12:20:12+00:00 1.0 1342400398 3735 ‼️5 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-10 11:54:57+00:00 1.0 1342400398 3734 ♦️binance pump announcement date 10th april time 500 pm gmt exchange binance ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-10 11:54:05+00:00 1.0 1342400398 3729 ♦️binance pump announcement date 10th april time 500 pm gmt exchange binance ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-10 10:16:57+00:00 1.0 1342400398 3724 last pump result rdn start price 7075 weve reached 7610 ✅quick profit 9✅ next pump scheduled tomorrow to know coin name earlier ☎️ bitcoinadmin 2019-04-10 08:38:45+00:00 1.0 1342400398 3712 ♦️binance pump announcement date 10th april time 500 pm gmt exchange binance ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-10 03:31:22+00:00 1.0 1342400398 3711 last pump result rdn start price 7075 weve reached 7610 ✅quick profit 9✅ next pump scheduled tomorrow to know coin name earlier ☎️ bitcoinadmin 2019-04-09 19:39:26+00:00 1.0 1342400398 3710 ♦️binance pump announcement date 10th april time 500 pm gmt exchange binance ✅last pump profit 9℅✅rdn ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-09 19:25:50+00:00 1.0 1342400398 3709 last pump result rdn start price 7075 weve reached 7610 ✅quick profit 9✅ next pump scheduled tomorrow to know coin name earlier ☎️ bitcoinadmin 2019-04-09 19:24:32+00:00 1.0 1342400398 3699 ‼️30 minutes left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-09 18:31:15+00:00 1.0 1342400398 3698 ‼️1 hour left for the pump ‼️to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-04-09 18:00:32+00:00 1.0 1342400398 3685 ‼️hello everyone 5 hours left until our next pump on binance reminder that we are using the btc pairing for our pumps ‼️to know the name of coin ☎️ bitcoinadmin 2019-04-09 13:23:18+00:00 1.0 1342400398 3679 ♦️7 hour left ♦️ ‼️binance pump announcement date 9th april time 700 pm gmt exchange binance ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-09 11:16:50+00:00 1.0 1342400398 3677 last pump result nebl start price 3313 weve reached 4290 ✅quick profit 30✅ next pump scheduled to know coin name earlier ☎️ bitcoinadmin 2019-04-09 09:16:58+00:00 1.0 1342400398 3676 ♦️binance pump announcement♦️ date 10th april time 500 pm gmt exchange binance ✅last pump profit 30℅✅nebl ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-09 08:14:15+00:00 1.0 1342400398 3668 pump result nebl start price 3313 weve reached 4290 ✅quick profit 30✅ next pump will be announced soon to know coin name earlier ☎️ bitcoinadmin 2019-04-08 17:56:35+00:00 1.0 1342400398 3666 pump result nebl start price 3313 weve reached 4290 ✅quick profit 30✅ next pump will be announced soon to know coin name earlier ☎️ bitcoinadmin 2019-04-08 17:02:05+00:00 1.0 1342400398 3661 next post will be coin name 2019-04-08 16:21:29+00:00 1.0 1342400398 3660 30 minutes left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-04-08 16:03:32+00:00 1.0 1342400398 3659 1 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-04-08 15:33:02+00:00 1.0 1342400398 3658 pump result vib start price 714 weve reached 883 ✅total profit 23 ✅ to know coin name earlier contact bitcoinadmin for premium membership ‼️next pump will be in 1 hour book your place in vip ☎️ bitcoinadmin 2019-04-08 15:18:17+00:00 1.0 1342400398 3655 2 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-04-08 14:26:47+00:00 1.0 1342400398 3654 4 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-04-08 13:20:00+00:00 1.0 1342400398 3653 ♦️binance pump announcement♦️ ‼️next pump reschedule date 8th april time 430 pm gmt exchange binance ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-08 09:21:00+00:00 1.0 1342400398 3648 ♦️binance pump announcement♦️ ‼️next pump reschedule date 8th april time 430 pm gmt exchange binance ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-08 01:45:10+00:00 1.0 1342400398 3636 ♦️binance pump announcement♦️ ‼️next pump schedule date 7th april time 900 pm gmt exchange binance ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-07 08:51:51+00:00 1.0 1342400398 3624 ♦️binance pump announcement♦️ ‼️next pump schedule date 7th april time 900 pm gmt exchange binance ✅last pump profit 85℅✅ ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-06 17:18:08+00:00 1.0 1342400398 3623 pump result proof bnt start price 14000 weve reached 26000 ✅total profit 85 ✅ to know coin name earlier contact bitcoinadmin for premium membership ‼️next pump will be announced in few minutes hurry ‍♂‍♂‍♂ book your place in vip ☎️ bitcoinadmin 2019-04-06 17:08:43+00:00 1.0 1342400398 3615 next post will be coin name 2019-04-06 16:58:44+00:00 1.0 1342400398 3614 10 min left for pump on yobit 2019-04-06 16:51:09+00:00 1.0 1342400398 3613 15 min left for pump on yobit 2019-04-06 16:44:56+00:00 1.0 1342400398 3612 30 min left for pump on yobit 2019-04-06 16:38:17+00:00 1.0 1342400398 3609 ♦️pump announcement♦️ ‼️next pump schedule date 6th april time 500 pm gmt exchange yobit ‼️expected profit 200 ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-06 13:52:11+00:00 1.0 1342400398 3604 ‼️7 hour left to pump ✅last pump profit 108✅ to know the coin name earlier join vip ☎️ bitcoinadmin 2019-04-06 09:53:55+00:00 1.0 1342400398 3599 ‼️9 hour left to pump ✅last pump profit 108✅ to know the coin name earlier join vip ☎️ bitcoinadmin 2019-04-06 07:58:26+00:00 1.0 1342400398 3598 ‼️12 hour left to pump ✅last pump profit 108✅ to know the coin name earlier join vip ☎️ bitcoinadmin 2019-04-06 05:14:59+00:00 1.0 1342400398 3595 ♦️pump announcement♦️ ‼️next pump schedule date 6th april time 500 pm gmt exchange yobit ‼️expected profit 200 ✅last pump profit 107℅✅ to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-06 03:15:00+00:00 1.0 1342400398 3585 coin to pump is hqx exchange yobitnet target +300 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-04-05 17:00:18+00:00 1.0 1342400398 3584 ‼️ 5 minutes ‼️ the next post will be the coin to buy on yobit 2019-04-05 16:55:22+00:00 1.0 1342400398 3582 ℹ️ 15 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-04-05 16:44:22+00:00 1.0 1342400398 3581 ℹ️ 45 minute until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-05 16:17:01+00:00 1.0 1342400398 3579 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-04-05 13:37:02+00:00 1.0 1342400398 3578 ‼️3 hour left for next pump ♦️pump announcement♦️ ‼️next pump schedule date 5th april time 500 pm gmt exchange yobit ‼️expected profit 200 to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-05 13:31:12+00:00 1.0 1342400398 3576 next post will be coin name 2019-04-05 12:37:27+00:00 1.0 1342400398 3572 ‼️6 hour left for next pump ♦️pump announcement♦️ ‼️next pump schedule date 5th april time 500 pm gmt exchange yobit ‼️expected profit 200 to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-05 10:10:15+00:00 1.0 1342400398 3569 ♦️pump announcement♦️ ‼️next pump schedule date 5th april time 500 pm gmt exchange yobit ‼️expected profit 200 to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-05 07:27:14+00:00 1.0 1342400398 3567 ♦️pump announcement♦️ ‼️next pump schedule date 5th april time 500 pm gmt exchange yobit ‼️expected profit 200 to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-05 05:46:07+00:00 1.0 1342400398 3545 less than 1 hour to pump to know the coin name ☎️ bitcoinadmin 2019-04-04 17:20:42+00:00 1.0 1342400398 3541 3 hour left for binance pump to know the name of coin ☎️ bitcoinadmin 2019-04-04 14:21:24+00:00 1.0 1342400398 3514 ‼️10 hour left for binance pump ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-04 08:01:35+00:00 1.0 1342400398 3513 ‼️12 hour left for binance pump ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-04 03:06:35+00:00 1.0 1342400398 3510 ‼️1 day left for binance pump ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-03 17:49:29+00:00 1.0 1342400398 3498 ‼️1day left for binance pump ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-03 14:49:32+00:00 1.0 1342400398 3482 ‼️1day left for binance pump ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-03 12:08:16+00:00 1.0 1342400398 3479 ‼️1day left for binance pump ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-03 10:45:24+00:00 1.0 1342400398 3467 ‼️1day left for binance pump ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-03 05:36:42+00:00 1.0 1342400398 3461 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-03 03:53:51+00:00 1.0 1342400398 3459 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-02 17:13:07+00:00 1.0 1342400398 3453 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-02 13:45:31+00:00 1.0 1342400398 3450 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-02 11:01:25+00:00 1.0 1342400398 3437 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance last pump result xmr start price 13550 sats weve reached 14800 sats ✅ 92 profit ✅ volume 1000 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-02 08:00:24+00:00 1.0 1342400398 3422 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-01 18:46:09+00:00 1.0 1342400398 3420 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-01 18:10:26+00:00 1.0 1342400398 3415 ♦️pump announcement♦️ ‼️next pump schedule date 4th april time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-04-01 15:43:39+00:00 1.0 1342400398 3406 ♦️ 15 minutes left for next signal ♦️ contact admin to know the name ☎️ bitcoinadmin 2019-04-01 12:42:12+00:00 1.0 1342400398 3386 next post will be coin name 2019-03-31 17:59:18+00:00 1.0 1342400398 3385 ‼️4 minutes left coin name already shared in vip 2019-03-31 17:56:35+00:00 1.0 1342400398 3379 ♦️1 hour left for pump to know the name of coin earlier hurry join vip ‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-31 16:53:35+00:00 1.0 1342400398 3370 5 hours left for pump to know the name of coin earlier hurry join vip ‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-31 13:00:14+00:00 1.0 1342400398 3369 7 hours left for pump to know the name of coin earlier hurry join vip ‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-31 11:10:17+00:00 1.0 1342400398 3363 10 hours left for pump to know the name of coin earlier hurry join vip ‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-31 08:04:36+00:00 1.0 1342400398 3358 ♦️pump announcement♦️ ‼️next pump schedule date 31st march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-31 04:49:35+00:00 1.0 1342400398 3347 ♦️24 hour left for binance pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-30 17:42:33+00:00 1.0 1342400398 3345 ♦️pump announcement♦️ ‼️next pump schedule date 31st march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-30 10:02:55+00:00 1.0 1342400398 3340 ♦️pump announcement♦️ ‼️next pump schedule date 31st march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-30 05:31:25+00:00 1.0 1342400398 3336 ♦️pump announcement♦️ ‼️next pump schedule date 31st march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-29 16:44:06+00:00 1.0 1342400398 3327 ♦️pump announcement♦️ ‼️next pump schedule date 31st march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-29 13:41:08+00:00 1.0 1342400398 3291 15 minutes left for binance breakout to know the coin name now ☎️ bitcoinadmin 2019-03-28 17:48:07+00:00 1.0 1342400398 3290 30 minutes left for binance breakout to know the coin name now ☎️ bitcoinadmin 2019-03-28 17:26:04+00:00 1.0 1342400398 3288 45 minutes left for binance breakout to know the coin name now ☎️ bitcoinadmin 2019-03-28 17:17:54+00:00 1.0 1342400398 3287 1 hour left for binance breakout ✅last pump results to know the coin name now ☎️ bitcoinadmin 2019-03-28 17:04:01+00:00 1.0 1342400398 3279 4 hour left for binance breakout ✅last pump results to know the coin name now ☎️ bitcoinadmin 2019-03-28 14:27:50+00:00 1.0 1342400398 3275 4 hour left for binance pump ✅last pump results to know the coin name now ☎️ bitcoinadmin 2019-03-28 13:53:47+00:00 1.0 1342400398 3274 5 hour left for binance pump ✅last pump results to know the coin name now ☎️ bitcoinadmin 2019-03-28 13:09:54+00:00 1.0 1342400398 3273 gxs pump ✅✅ to know the name of coin ☎️ bitcoinadmin 2019-03-28 12:43:52+00:00 1.0 1342400398 3271 6 hour left for binance pump ✅last pump results to know the coin name now ☎️ bitcoinadmin 2019-03-28 11:41:16+00:00 1.0 1342400398 3261 8 hour left for binance pump to know the coin name now ☎️ bitcoinadmin 2019-03-28 10:21:05+00:00 1.0 1342400398 3259 9 hour left for binance pump to know the coin name now ☎️ bitcoinadmin 2019-03-28 08:57:54+00:00 1.0 1342400398 3258 11 hour left for binance pump to know the coin name now ☎️ bitcoinadmin 2019-03-28 06:54:17+00:00 1.0 1342400398 3257 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-28 05:52:56+00:00 1.0 1342400398 3249 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-27 17:10:26+00:00 1.0 1342400398 3246 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-27 15:44:01+00:00 1.0 1342400398 3242 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-27 14:14:38+00:00 1.0 1342400398 3238 14 minutes left for pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-27 13:46:50+00:00 1.0 1342400398 3237 20 minutes left for pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-27 13:40:11+00:00 1.0 1342400398 3236 1 hour left for pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-27 13:00:16+00:00 1.0 1342400398 3235 1 hour 15 minutes left for pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-27 12:47:52+00:00 1.0 1342400398 3221 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-27 10:01:44+00:00 1.0 1342400398 3209 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-27 07:31:33+00:00 1.0 1342400398 3199 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-26 19:24:01+00:00 1.0 1342400398 3192 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-26 18:01:25+00:00 1.0 1342400398 3179 ♦️pump announcement♦️ ‼️next pump schedule date 28th march time 600 pm gmt exchange binance to know the name of coin earlier join vip contact admin below ☎️ bitcoinadmin 2019-03-26 11:28:06+00:00 1.0 1342400398 3135 ‼️pump announcement‼️ ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-25 13:54:51+00:00 1.0 1342400398 3126 5 hour left for binance pump ‼️hurry join vip to know the name of coin ☎️ bitcoinadmin 2019-03-25 12:29:08+00:00 1.0 1342400398 3118 7 hour left for binance pump ‼️hurry join vip to know the name of coin ☎️ bitcoinadmin 2019-03-25 11:08:17+00:00 1.0 1342400398 3117 8 hour left for binance pump hurry join vip to know the name of coin ☎️ bitcoinadmin 2019-03-25 09:44:01+00:00 1.0 1342400398 3111 ‼️pump announcement‼️ ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-25 07:10:49+00:00 1.0 1342400398 3105 ‼️pump announcement‼️ ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-25 02:50:31+00:00 1.0 1342400398 3104 ‼️pump announcement‼️ ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-24 18:40:18+00:00 1.0 1342400398 3098 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-24 15:50:37+00:00 1.0 1342400398 3089 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-24 09:30:42+00:00 1.0 1342400398 3080 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-24 06:29:43+00:00 1.0 1342400398 3078 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-23 18:13:22+00:00 1.0 1342400398 3068 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-23 11:27:41+00:00 1.0 1342400398 3064 ‼️next pump schedule date 25th march time 600 pm gmt exchange binance last pump result ont start price 3100 sat weve reached 3488 sat ✅ 125 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-23 02:42:14+00:00 1.0 1342400398 3042 next post will be coin name 2019-03-21 03:25:07+00:00 1.0 1342400398 3038 30 minutes left for binance pump coin name will be for vips only ☎️ bitcoinadmin 2019-03-20 17:32:02+00:00 1.0 1342400398 3037 ❤️1 hour remaining for next binance pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 16:56:55+00:00 1.0 1342400398 3035 ❤️2 hours remaining for next binance pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 14:42:26+00:00 1.0 1342400398 3034 ❤️3 hours remaining for next binance pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 13:36:44+00:00 1.0 1342400398 3029 ❤️6 hours remaining for next binance pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 11:58:31+00:00 1.0 1342400398 3028 ❤️7 hours remaining for next binance pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 10:54:06+00:00 1.0 1342400398 3027 ❤️8 hours remaining for next binance pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 09:16:20+00:00 1.0 1342400398 3025 ❤️9 hours remaining for next binance pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 08:21:36+00:00 1.0 1342400398 3014 ❤️12 hours remaining for next pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 05:25:37+00:00 1.0 1342400398 3013 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance last pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-20 05:22:20+00:00 1.0 1342400398 3005 ❤️12 hours remaining for next pump to know the name of earlier ☎️ bitcoinadmin 2019-03-20 02:55:54+00:00 1.0 1342400398 3004 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance last pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-20 02:39:57+00:00 1.0 1342400398 3000 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance last pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-19 20:27:20+00:00 1.0 1342400398 2996 ✅happy vips feedback 24 hour left for next pump hurry join us‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-19 17:27:51+00:00 1.0 1342400398 2995 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance last pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-19 17:01:58+00:00 1.0 1342400398 2985 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-19 09:42:22+00:00 1.0 1342400398 2976 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-19 01:55:13+00:00 1.0 1342400398 2960 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-18 13:20:47+00:00 1.0 1342400398 2957 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-18 10:50:41+00:00 1.0 1342400398 2951 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-18 07:43:19+00:00 1.0 1342400398 2948 ‼️next pump schedule date 20th march time 600 pm gmt exchange binance todays pump result bnt start price 14990 sat weve reached 17200 sat ✅ 147 profit ✅ volume 600 btc next pump will be announced soon contact bitcoinadmin for vip membership ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-18 04:32:48+00:00 1.0 1342400398 2925 10 minutes left for binance pump to know the coin name earlier join vip now‍♂‍♂ ☎️ bitcoinadmin 2019-03-17 13:49:58+00:00 1.0 1342400398 2924 1 hours left for binance pump to know the coin name earlier join vip now‍♂‍♂ ☎️ bitcoinadmin 2019-03-17 12:41:56+00:00 1.0 1342400398 2921 2 hours left for binance pump to know the coin name earlier join vip now‍♂‍♂ ☎️ bitcoinadmin 2019-03-17 11:56:25+00:00 1.0 1342400398 2919 3 hours left for binance pump to know the coin name earlier join vip now‍♂‍♂ ☎️ bitcoinadmin 2019-03-17 10:40:54+00:00 1.0 1342400398 2915 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-17 07:33:42+00:00 1.0 1342400398 2914 8 hours left for binance pump to know the coin name earlier join vip now‍♂‍♂ ☎️ bitcoinadmin 2019-03-17 05:06:45+00:00 1.0 1342400398 2913 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-17 05:04:16+00:00 1.0 1342400398 2911 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-16 17:27:11+00:00 1.0 1342400398 2906 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-16 16:07:51+00:00 1.0 1342400398 2901 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-16 11:11:58+00:00 1.0 1342400398 2896 30 minutes left for binance pump to know the coin name earlier ☎️ bitcoinadmin 2019-03-16 09:05:54+00:00 1.0 1342400398 2891 ‼️next pump date 17th march time 200pm gmt exchange binance it will achieve all targets in short time frame‼️ ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-16 02:47:33+00:00 1.0 1342400398 2882 ⏰ less than 15 minutes left to binance pump get ready for bomb for blast hurry ‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-15 15:15:39+00:00 1.0 1342400398 2881 ⏰ less than 30 minutes left to binance pump get ready for bomb for blast hurry ‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-15 15:00:14+00:00 1.0 1342400398 2880 ⏰ less than 1 hour left to binance pump get ready for bomb for blast hurry ‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-15 14:31:18+00:00 1.0 1342400398 2877 happy vips good to see such feedbacks ✅ 15 profit in 2 minutes what are you waiting for hurry join us next pump in 2 hour ☎️ bitcoinadmin 2019-03-15 13:50:22+00:00 1.0 1342400398 2876 ⏰ less than 2 hour left to binance pump get ready for bomb for blast ☎️ bitcoinadmin 2019-03-15 13:34:12+00:00 1.0 1342400398 2873 ‼️dear members today at 330pm gmt we will going to share a news based moon signal date 15th march time 330pm gmt exchange binance info no time advantage for anyone it will achieve all targets in short time frame‼️ the signal will be based on news so can go for 2x to 3x in shorter time frames ✅dont miss this one ✅ ☎️ bitcoinadmin 2019-03-15 11:11:54+00:00 1.0 1342400398 2869 dear members today at 330pm gmt we will going to share a news based moon signal date 15th march time 330pm gmt exchange binance info the signal will be freeforall no time advantage for anyone it will achieve all targets in short time frame‼️ the signal will be based on news so can go for 2x to 3x in shorter time frames 2019-03-15 09:19:09+00:00 1.0 1342400398 2862 next pump scheduled ⏰ time and date 17032019 0200 pm gmt utc time target 50 80 to know the coin name earlier contact below ‍♂hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-15 08:19:07+00:00 1.0 1342400398 2858 next pump scheduled ⏰ time and date 17032019 0200 pm gmt utc time target 50 80 to know the coin name earlier contact below ‍♂hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-15 07:08:11+00:00 1.0 1342400398 2852 10 minutes left for next breakout coin name will be announced in vip only ☎️ bitcoinadmin 2019-03-15 02:50:34+00:00 1.0 1342400398 2851 15 minutes left for next breakout coin name will be announced in vip only ☎️ bitcoinadmin 2019-03-15 02:47:50+00:00 1.0 1342400398 2850 45 minutes left for next breakout coin name will be announced in vip only ☎️ bitcoinadmin 2019-03-15 02:25:26+00:00 1.0 1342400398 2836 30 minutes left for the pump last pump result bnt start price 14700 sat weve reached 20500 sat ✅ 44 profit ✅ volume 1200 btc ☎️contact bitcoinadmin for vip membership 2019-03-14 14:29:54+00:00 1.0 1342400398 2816 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-14 07:57:26+00:00 1.0 1342400398 2802 24 hours left to binance pump to know the name of coin ☎️ bitcoinadmin 2019-03-13 16:57:59+00:00 1.0 1342400398 2794 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-13 16:18:15+00:00 1.0 1342400398 2769 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-13 04:23:21+00:00 1.0 1342400398 2767 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-13 03:04:30+00:00 1.0 1342400398 2757 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-12 16:54:17+00:00 1.0 1342400398 2752 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-12 16:00:54+00:00 1.0 1342400398 2729 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-12 08:56:40+00:00 1.0 1342400398 2726 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-12 03:27:48+00:00 1.0 1342400398 2721 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-11 16:56:46+00:00 1.0 1342400398 2711 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-11 06:20:23+00:00 1.0 1342400398 2704 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-11 02:12:26+00:00 1.0 1342400398 2701 coin name announced hurry dont miss this one ☎️ bitcoinadmin 2019-03-10 15:16:04+00:00 1.0 1342400398 2684 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-10 07:32:06+00:00 1.0 1342400398 2676 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-09 22:29:58+00:00 1.0 1342400398 2666 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-09 17:11:43+00:00 1.0 1342400398 2647 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-09 13:34:00+00:00 1.0 1342400398 2640 next pump scheduled ⏰ time and date 14032019 0300 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-09 12:03:49+00:00 1.0 1342400398 2618 8 minutes left for binance pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-08 17:52:41+00:00 1.0 1342400398 2610 5 hours left for binance pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-08 12:55:55+00:00 1.0 1342400398 2607 8 hours left for binance pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-08 09:11:15+00:00 1.0 1342400398 2605 12 hours left for binance pump to know the name of coin earlier ☎️ bitcoinadmin 2019-03-08 06:19:05+00:00 1.0 1342400398 2573 next pump scheduled ⏰ time and date08032019 0630 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-07 13:02:28+00:00 1.0 1342400398 2567 next pump scheduled ⏰ time and date08032019 0630 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-07 07:27:15+00:00 1.0 1342400398 2555 next pump scheduled ⏰ time and date08032019 0630 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-07 04:05:38+00:00 1.0 1342400398 2549 next pump scheduled ⏰ time and date08032019 0630 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-06 12:51:44+00:00 1.0 1342400398 2538 next pump scheduled ⏰ time and date08032019 0630 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-06 08:15:16+00:00 1.0 1342400398 2531 next post will be coin name 2019-03-05 16:24:58+00:00 1.0 1342400398 2529 only 1 hour left to know coin name earlier ☎️ bitcoinadmin 2019-03-05 15:22:11+00:00 1.0 1342400398 2528 only 2 hours left to know coin name earlier ☎️ bitcoinadmin 2019-03-05 14:38:58+00:00 1.0 1342400398 2526 only 3 hours left to know coin name earlier ☎️ bitcoinadmin 2019-03-05 13:36:06+00:00 1.0 1342400398 2524 only 4 hours left to know coin name earlier ☎️ bitcoinadmin 2019-03-05 12:41:23+00:00 1.0 1342400398 2510 ⏰less then 10 hour left to binance pump to know the coin name earlier ☎️ bitcoinadmin 2019-03-05 06:41:25+00:00 1.0 1342400398 2506 next pump scheduled ⏰ time and date05032019 0430 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-05 03:32:46+00:00 1.0 1342400398 2486 next pump scheduled ⏰ time and date05032019 0430 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-04 13:23:00+00:00 1.0 1342400398 2481 next pump scheduled ⏰ time and date05032019 0430 pm gmt utc time target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-04 09:35:19+00:00 1.0 1342400398 2437 next post will be coin name 2019-03-02 13:49:25+00:00 1.0 1342400398 2436 15 minutes left ‼️ binance is warming up market is on fire today 2019-03-02 13:48:40+00:00 1.0 1342400398 2435 1 hour left for binance pump 2019-03-02 13:00:20+00:00 1.0 1342400398 2434 2 hour left for binance pump 2019-03-02 12:03:41+00:00 1.0 1342400398 2432 ‼️special offer contact 4 hour left for binance pump ☎️ bitcoinadmin 2019-03-02 09:56:04+00:00 1.0 1342400398 2429 announcement pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ ✅to know coin name earlier ☎️ bitcoinadmin 2019-03-02 09:10:37+00:00 1.0 1342400398 2425 announcement pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ ✅to know coin name earlier ☎️ bitcoinadmin 2019-03-02 05:27:59+00:00 1.0 1342400398 2409 to know the next pump coin ☎️ bitcoinadmin 2019-03-01 16:50:01+00:00 1.0 1342400398 2403 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ ✅to know coin name earlier ☎️ bitcoinadmin 2019-03-01 09:34:22+00:00 1.0 1342400398 2398 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ ✅to know coin name earlier ☎️ bitcoinadmin 2019-03-01 06:55:07+00:00 1.0 1342400398 2391 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ ✅to know coin name earlier ☎️ bitcoinadmin 2019-03-01 01:31:17+00:00 1.0 1342400398 2390 next pump scheduled ⏰ time and date03032019 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-03-01 01:25:00+00:00 1.0 1342400398 2386 next pump scheduled ⏰ time and date03032019 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-02-28 17:31:15+00:00 1.0 1342400398 2382 next pump scheduled ⏰ time and date03032019 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-02-28 09:16:23+00:00 1.0 1342400398 2371 to know the coin name earlier before pump contact admin ☎️ bitcoinadmin 2019-02-28 04:08:34+00:00 1.0 1342400398 2369 next pump scheduled ⏰ time and date03032019 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-02-28 01:58:05+00:00 1.0 1342400398 2351 next pump scheduled ⏰ time and date03032019 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 80 to know the coin name earlier contact below hurry join us‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-02-27 13:29:16+00:00 1.0 1342400398 2245 binance pump analysis coin hc low 3025 high 3339 win volume 102 btc exchange binance profit 1038 amazing ☎️ bitcoinadmin 2019-02-23 17:16:43+00:00 1.0 1342400398 2243 next post will be coin name 2019-02-23 16:50:36+00:00 1.0 1342400398 2242 15 minutes hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 16:45:12+00:00 1.0 1342400398 2240 1 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 15:49:42+00:00 1.0 1342400398 2237 2 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 15:00:48+00:00 1.0 1342400398 2234 3 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 14:39:52+00:00 1.0 1342400398 2232 6 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 11:22:45+00:00 1.0 1342400398 2231 8 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 10:28:07+00:00 1.0 1342400398 2229 10 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 07:41:09+00:00 1.0 1342400398 2228 11 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 06:31:23+00:00 1.0 1342400398 2227 12 hour left to pump on binance to know the name of coin earlier ☎️ bitcoinadmin 2019-02-23 03:32:14+00:00 1.0 1342400398 2180 be ready for the next pump coin ☎️ bitcoinadmin 2019-02-19 17:25:15+00:00 1.0 1342400398 2112 next post will be coin name 2019-02-16 17:34:23+00:00 1.0 1342400398 2111 1 hour left to pump on binance to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-02-16 17:18:40+00:00 1.0 1342400398 2110 2 hour left to pump on binance to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-02-16 16:25:08+00:00 1.0 1342400398 2104 2 hours left until the pump on binance 2019-02-16 16:06:47+00:00 1.0 1342400398 2103 8 hour left to pump on binance to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-02-16 09:58:03+00:00 1.0 1342400398 2100 12 hour left to pump on binance to know the name of coin earlier ‼️‼️hurry contact admin ☎️ bitcoinadmin 2019-02-16 06:08:32+00:00 1.0 1342400398 2097 24 hour left to pump on binance to know the name of coin earlier contact admin ☎️ bitcoinadmin 2019-02-15 18:40:42+00:00 1.0 1342400398 2088 6 hour left for binance pump to know the name of coin earlier contact below to join vip✅ ☎️ bitcoinadmin 2019-02-15 11:43:17+00:00 1.0 1342400398 2082 8 hour left for binance pump to know the name of coin earlier contact below to join vip✅ ☎️ bitcoinadmin 2019-02-15 09:44:52+00:00 1.0 1342400398 2079 9 hour left for binance pump to know the name of coin earlier contact below to join vip✅ ☎️ bitcoinadmin 2019-02-15 08:33:02+00:00 1.0 1342400398 2075 12 hour left for binance pump to know the name of coin earlier contact below to join vip✅ ☎️ bitcoinadmin 2019-02-15 03:40:27+00:00 1.0 1342400398 1992 next post will be coin name 2019-02-10 17:51:54+00:00 1.0 1342400398 1988 2 hour left to pump on binance huge pump this time dont miss the chance of 6080 profit ‍♂‍♂get ready guys hurry to join vip contact below ☎️ bitcoinadmin 2019-02-10 16:05:58+00:00 1.0 1342400398 1984 7 hour left to pump on binance huge pump this time dont miss the chance of 6080 profit ‍♂‍♂get ready guys hurry to join vip contact below ☎️ bitcoinadmin 2019-02-10 10:46:36+00:00 1.0 1342400398 1976 11 hour left to pump on binance huge pump this time dont miss the chance of 6080 profit ‍♂‍♂get ready guys hurry to join vip ☎️ bitcoinadmin 2019-02-10 07:01:24+00:00 1.0 1342400398 1969 12 hour left to pump on binance huge pump this time dont miss the chance of 6080 profit ‍♂‍♂get ready guys hurry to join vip ☎️ bitcoinadmin 2019-02-10 06:12:56+00:00 1.0 1342400398 1916 next pump scheduled ⏳ time and date 09022019 at 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-02-07 03:57:18+00:00 1.0 1342400398 1879 ‼️ storj signal shared today in vip amazimg pump all targets hit ✅✅✅ next pump coin join vip contact ☎️ bitcoinadmin 2019-02-04 17:02:59+00:00 1.0 1342400398 1872 next post will be coin name 2019-02-04 16:27:25+00:00 1.0 1342400398 1871 15 minutes left to pump on binance 2019-02-04 16:15:19+00:00 1.0 1342400398 1870 ‼️ gxs signal shared today in vip amazimg pump next pump coin join vip contact ☎️ bitcoinadmin 2019-02-04 15:29:02+00:00 1.0 1342400398 1865 to know the name of coin before pump contact below admin ☎️ bitcoinadmin 2019-02-04 10:32:56+00:00 1.0 1342400398 1858 10 hour left for binance pump to know the name of coin earlier contact below ☎️ bitcoinadmin 2019-02-04 06:03:03+00:00 1.0 1342400398 1854 12 hour left for binance pump to know the name of coin earlier contact below ☎️ bitcoinadmin 2019-02-04 03:29:11+00:00 1.0 1342400398 1849 the next pump scheduled ⏳ time and date 04022019 at 0430 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-02-03 13:01:16+00:00 1.0 1342400398 1845 the next pump scheduled ⏳ time and date 04022019 at 0430 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-02-03 08:23:39+00:00 1.0 1342400398 1830 next post will be coin name 2019-02-02 17:55:49+00:00 1.0 1342400398 1828 1 hour left for binance pump to know the name of coin earlier contact below ☎️ bitcoinadmin 2019-02-02 17:00:07+00:00 1.0 1342400398 1823 12 hour left for binance pump to know the name of coin earlier contact below ☎️ bitcoinadmin 2019-02-02 04:04:27+00:00 1.0 1342400398 1807 ❤️next pump scheduled ⏳ time and date 222019 at 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-02-01 05:24:17+00:00 1.0 1342400398 1803 ❤️next pump scheduled ⏳ time and date 222019 at 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-01-31 14:24:31+00:00 1.0 1342400398 1790 the next pump scheduled ⏳ time and date 222019 at 0600 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-01-31 06:37:22+00:00 1.0 1342400398 1778 the next pump scheduled ⏳ time and date 222019 at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-01-30 13:02:02+00:00 1.0 1342400398 1776 the next pump scheduled ⏳ time and date 222019 at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-01-30 07:59:18+00:00 1.0 1342400398 1772 the next pump scheduled ⏳ time and date 222019 at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-01-30 02:02:12+00:00 1.0 1342400398 1766 next post will be coin name 2019-01-29 13:59:08+00:00 1.0 1342400398 1763 1 hour left for pump on binance to know the coin name earlier ☎️ bitcoinadmin 2019-01-29 13:09:24+00:00 1.0 1342400398 1760 4 hour 30 minute left for pump on binance ☎️ bitcoinadmin 2019-01-29 09:24:09+00:00 1.0 1342400398 1757 5 hour 30 minute left for pump on binance ☎️ bitcoinadmin 2019-01-29 08:34:49+00:00 1.0 1342400398 1756 the next pump scheduled ⏳ time and date29th december at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 50 join vip for amazing pump hurry to join vip ‍♂‍♂‍♂ contact admin ☎️ bitcoinadmin 2019-01-29 07:51:34+00:00 1.0 1342400398 1736 next post will be coin name 2019-01-27 17:54:23+00:00 1.0 1342400398 1733 1 hour left for pump last pump result bnt start price 14915 sat weve reached 27800 sat ✅ 85 profit ✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-27 16:58:57+00:00 1.0 1342400398 1732 2 hour left for pump last pump result bnt start price 14915 sat weve reached 27800 sat ✅ 85 profit ✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-27 15:44:06+00:00 1.0 1342400398 1731 5 hour left for pump last pump result bnt start price 14915 sat weve reached 27800 sat ✅ 85 profit ✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-27 13:01:28+00:00 1.0 1342400398 1724 24 hour left for pump join vip fast to know the name of coin earlier ☎️ bitcoinadmin 2019-01-26 18:05:48+00:00 1.0 1342400398 1718 get ready for the next binance signal ⏰14 minutes left contact fast to know the name of coin ☎️ bitcoinadmin 2019-01-26 16:18:20+00:00 1.0 1342400398 1713 next pump schedule ⏰time 6 pm gmt exchange binance more than 10000 crypto investors ‍♂‍♂ join vip soon ‍♂‍♂‍♂for amazing profits last pump result hc start price 2975 sat weve reached 3759 sat ✅ 26 profit ✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-26 06:21:21+00:00 1.0 1342400398 1710 next pump schedule ⏰time 6 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits last pump result hc start price 2975 sat weve reached 3759 sat ✅ 26 profit ✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-26 05:02:06+00:00 1.0 1342400398 1705 next post will be coin name 2019-01-25 17:54:27+00:00 1.0 1342400398 1703 3 hour left to pump on binance to know the name of coin earlier and earn profits contact ‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-01-25 15:04:52+00:00 1.0 1342400398 1702 6 hour left to pump on binance to know the name of coin earlier and earn profits contact ‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-01-25 12:16:13+00:00 1.0 1342400398 1699 nuls no 1 in binance thanks all for make this pump great to know the next no 1 coin ☎️ bitcoinadmin 2019-01-25 10:26:12+00:00 1.0 1342400398 1697 10 hour left to pump on binance to know the name of coin earlier and earn profits contact ‍♂‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-01-25 09:18:13+00:00 1.0 1342400398 1695 11 hour left to pump on binance to know the name of coin earlier and earn profits contact ☎️ bitcoinadmin 2019-01-25 07:18:54+00:00 1.0 1342400398 1682 ❤️14 hour left to pump on binance join vip to participate in binance pump contact bitcoinadmin last pump results in pinned message evx 60✅✅✅ ☎️ bitcoinadmin 2019-01-25 04:09:30+00:00 1.0 1342400398 1681 ❤️24 hour left to pump on binance join vip to participate in binance pump contact bitcoinadmin last pump results in pinned message evx 60✅✅✅ ☎️ bitcoinadmin 2019-01-24 14:19:48+00:00 1.0 1342400398 1679 1 day left to pump on binance join vip to participate in binance pump last pump results in pinned message evx 60✅✅✅ ☎️ bitcoinadmin 2019-01-24 12:19:51+00:00 1.0 1342400398 1678 1 day left to pump ok no binance join vip to participate in binance pump last pump results in pinned message evx 60✅✅✅ ☎️ bitcoinadmin 2019-01-24 10:00:41+00:00 1.0 1342400398 1672 next pump schedule ⏰time 6 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results last pump results evx 60 target done ✅✅✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-23 16:35:49+00:00 1.0 1342400398 1663 next pump schedule ⏰time 6 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results last pump results evx 60 target done ✅✅✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-23 11:24:36+00:00 1.0 1342400398 1662 next pump schedule ⏰time 6 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results last pump results evx 60 target done ✅✅✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-23 03:54:27+00:00 1.0 1342400398 1659 next pump schedule ⏰time 6 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results last pump results evx 60 target done ✅✅✅ to know the coin name earlier ☎️ bitcoinadmin 2019-01-22 19:04:45+00:00 1.0 1342400398 1655 ‼️next pump schedule exchange binance to know the name of coin earlier contact below and join vip ☎️ bitcoinadmin 2019-01-21 12:26:39+00:00 1.0 1342400398 1654 ‼️next pump schedule exchange binance to know the name of coin earlier contact below and join vip ☎️ bitcoinadmin 2019-01-21 06:10:43+00:00 1.0 1342400398 1533 2 hour left to pump on binance 2019-01-14 15:07:47+00:00 1.0 1342400398 1532 5 hour left to pump on binance 2019-01-14 11:49:10+00:00 1.0 1342400398 1527 to know the name of next coin for pump contact and join vip ☎️ bitcoinadmin 2019-01-14 08:05:17+00:00 1.0 1342400398 1524 ‼️next pump schedule ❤️less than 12 hour left for the pump exchange binance to know the name of coin earlier contact below and join vip ☎️ bitcoinadmin 2019-01-14 03:54:01+00:00 1.0 1342400398 1522 ‼️next pump schedule ❤️less than 24 hour left for the pump exchange binance to know the name of coin contact below and join vip ☎️ bitcoinadmin 2019-01-13 14:37:53+00:00 1.0 1342400398 1513 ‼️next pump schedule ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact for vip ☎️ bitcoinadmin 2019-01-12 14:09:47+00:00 1.0 1342400398 1512 ‼️next pump schedule ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact for vip ☎️ bitcoinadmin 2019-01-11 13:03:48+00:00 1.0 1342400398 1508 ‼️next pump schedule ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact for vip ☎️ bitcoinadmin 2019-01-11 03:51:47+00:00 1.0 1342400398 1507 ‼️next pump schedule ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact for vip ☎️ bitcoinadmin 2019-01-10 14:59:28+00:00 1.0 1342400398 1503 ‼️next pump schedule ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact for vip ☎️ bitcoinadmin 2019-01-10 06:48:11+00:00 1.0 1342400398 1497 ‼️next pump schedule ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact for vip ☎️ bitcoinadmin 2019-01-10 02:38:19+00:00 1.0 1342400398 1494 ‼️next pump schedule ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact for vip ☎️ bitcoinadmin 2019-01-09 13:05:11+00:00 1.0 1342400398 1479 next post will be coin name 2019-01-08 15:58:57+00:00 1.0 1342400398 1467 dlt 2nd target hit amazing profits for ☎️vip✅✅ hurry for next pump signal contact below admin ☎️ bitcoinadmin 2019-01-08 08:31:39+00:00 1.0 1342400398 1461 ‼️next pump schedule today ⏰time 4 pm gmt exchange binance join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact ☎️ bitcoinadmin 2019-01-08 03:43:56+00:00 1.0 1342400398 1460 next pump schedule tomorrow join vip soon ‍♂‍♂‍♂for amazing profits check pinned message for last pump results contact ☎️ bitcoinadmin 2019-01-07 17:16:04+00:00 1.0 1342400398 1458 last pump profit bnt spot no2 in binance ✅✅✅ amazing pump to know the name of next coin earlier contact hurry to join vip‍♂‍♂‍♂ ☎️ bitcoinadmin 2019-01-07 14:22:42+00:00 1.0 1342400398 1445 ❤️1 hour left for binance pump to know the name of coin contact below and join vip hurry to join vip ‍♂‍♂‍♂‍♂‍♂ join fast before btc breakout contact ☎️ bitcoinadmin 2019-01-06 20:12:17+00:00 1.0 1342400398 1444 ❤️2 hour left for binance pump to know the name of coin contact below and join vip hurry to join vip ‍♂‍♂‍♂‍♂‍♂ join fast before btc breakout contact ☎️ bitcoinadmin 2019-01-06 18:50:19+00:00 1.0 1342400398 1441 ❤️3 hour left for binance pump to know the name of coin contact below and join vip join fast before btc breakout ☎️ bitcoinadmin 2019-01-06 17:26:19+00:00 1.0 1342400398 1435 ❤️5 hour left for binance pump to know the name of coin contact below and join vip ☎️ bitcoinadmin 2019-01-06 16:08:15+00:00 1.0 1342400398 1434 ❤️7 hour left for binance pump to know the name of coin contact below and join vip ☎️ bitcoinadmin 2019-01-06 14:04:12+00:00 1.0 1342400398 1433 ❤️9 hour left for binance pump to know the name of coin contact below and join vip ☎️ bitcoinadmin 2019-01-06 12:20:36+00:00 1.0 1342400398 1432 ❤️few hour left for the pump to know the name of coin contact below and join vip ☎️ bitcoinadmin 2019-01-06 03:02:03+00:00 1.0 1342400398 1430 ❤️less than 24 hour left for the pump to know the name of coin contact below and join vip ☎️ bitcoinadmin 2019-01-05 17:03:53+00:00 1.0 1342400398 1422 ❤️the next pump scheduled 1 day left for the pump ⏳ time and date tuesday6 jan 2019 exchange binance ‍♀‍♀ hurry to join vip ☎️ bitcoinadmin 2019-01-05 07:48:56+00:00 1.0 1342400398 1421 ❤️24 hour left for the pump to know the name of coin contact below and join vip ☎️ bitcoinadmin 2019-01-05 03:10:54+00:00 1.0 1342400398 1418 to know the next name of next coin for pump contact ☎️ bitcoinadmin 2019-01-04 11:36:01+00:00 1.0 1342400398 1404 ❤️the next pump scheduled ⏳ time and date tuesday11 jan 2019 exchange binance ‍♀‍♀ hurry to join vip bitcoinadmin 2019-01-02 15:31:27+00:00 1.0 1342400398 1402 ‼️breakout coin shared in vip✅✅✅✅✅❤️✅‍♀ few minutes back to know the name of coin contact below before too late ☎️ bitcoinadmin 2019-01-02 10:47:44+00:00 1.0 1342400398 1387 ❤️to know the name of coin before pump contact ☎️ bitcoinadmin 2019-01-01 11:46:45+00:00 1.0 1342400398 1385 ❤️to know the name of coin before pump contact ☎️ bitcoinadmin 2019-01-01 07:34:27+00:00 1.0 1342400398 1384 ‼️ only pump no dump few hours left for pump in binance to know the next pump coin in binance contact below few seats available for todays pump ☎️ bitcoinadmin 2019-01-01 04:37:41+00:00 1.0 1342400398 1383 ❤️the next pump scheduled ⏳ time and date tuesday1 jan 2019 exchange binance ‍♀‍♀ hurry to join vip bitcoinadmin 2018-12-31 16:53:50+00:00 1.0 1342400398 1376 ❤️the next pump scheduled ⏳ time and date tuesday1 jan 2019 exchange binance ‍♀‍♀ hurry to join vip bitcoinadmin 2018-12-31 02:12:19+00:00 1.0 1342400398 1373 ❤️the next pump scheduled ⏳ time and date tuesday1 jan 2019 exchange binance ‍♀‍♀ hurry to join vip bitcoinadmin 2018-12-30 08:38:23+00:00 1.0 1342400398 1372 to know the coin name before pump ‍♀‍♀ ☎️ bitcoinadmin 2018-12-30 07:25:09+00:00 1.0 1342400398 1371 ❤️the next pump scheduled ⏳ time and date tuesday1 jan 2019 exchange binance ‍♀‍♀ hurry to join vip bitcoinadmin 2018-12-30 04:17:16+00:00 1.0 1342400398 1368 the next pump scheduled ⏳ time and date tuesday1 jan 2019 exchange binance ‍♀‍♀ hurry to join vip bitcoinadmin 2018-12-30 03:27:52+00:00 1.0 1342400398 1359 vip signal shared to know the next pump coin bitcoinadmin 2018-12-28 13:54:37+00:00 1.0 1342400398 1355 next pump scheduled ⏳ time and date bitcoinadmin exchange binance 2018-12-28 07:13:34+00:00 1.0 1342400398 1345 next pump scheduled ⏳ time and date monday 27th december exchange binance 2018-12-27 14:46:18+00:00 1.0 1342400398 1343 next pump scheduled ⏳ time and date monday 27th december exchange binance 2018-12-27 10:36:47+00:00 1.0 1342400398 1337 next pump scheduled ⏳ time and date monday 27th december exchange binance 2018-12-26 07:25:47+00:00 1.0 1342400398 1322 ❤️again dgd no 1 in binance we made this pump great to know the next no 1 coin ☎️ bitcoinadmin 2018-12-23 05:17:09+00:00 1.0 1342400398 1289 few signals shared in vip few minutes back to know the name of coin before pump contact ☎️ bitcoinadmin 2018-12-21 02:41:36+00:00 1.0 1342400398 1264 the next pump will be scheduled ⏳ time and date monday 19th december at 0500 pm gmt utc time exchange binance 2018-12-19 13:52:47+00:00 1.0 1342400398 1262 3 hour left to pump on binance to know the coin name before pump ☎️ bitcoinadmin 2018-12-19 13:39:25+00:00 1.0 1342400398 1258 4 hour left to pump on binance to know the coin name before pump ☎️ bitcoinadmin 2018-12-19 13:05:52+00:00 1.0 1342400398 1257 8 hour left to pump on binance to know the coin name before pump ☎️ bitcoinadmin 2018-12-19 09:04:39+00:00 1.0 1342400398 1256 11 hour left to pump on binance to know the coin name before pump ☎️ bitcoinadmin 2018-12-19 05:32:07+00:00 1.0 1342400398 1254 the next pump will be scheduled ⏳ time and date monday 19th december at 0500 pm gmt utc time exchange binance 2018-12-19 03:58:42+00:00 1.0 1342400398 1250 4 hour left to pump on binance to know the name of coin bitcoinadmin 2018-12-17 12:40:04+00:00 1.0 1342400398 1244 the next pump will be scheduled ⏳ time and date monday 17th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 to join vip bitcoinadmin 2018-12-16 17:47:14+00:00 1.0 1342400398 1212 next post will be coin name 2018-12-04 14:56:23+00:00 1.0 1342400398 1205 2 hour left to pump on cryptopia to know the coin name before pump ☎️ bitcoinadmin 2018-12-04 12:35:40+00:00 1.0 1342400398 1204 6 hour left to pump on cryptopia to know the coin name before pump ☎️ bitcoinadmin 2018-12-04 09:01:47+00:00 1.0 1342400398 1203 8 hour left to pump on cryptopia to know the coin name before pump ☎️ bitcoinadmin 2018-12-04 07:17:44+00:00 1.0 1342400398 1201 24 hour left to pump on cryptopia to know the coin name before pump ☎️ bitcoinadmin 2018-12-03 15:05:41+00:00 1.0 1342400398 1198 next pump scheduled ⏰ tuesday 04122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-03 07:03:26+00:00 1.0 1342400398 1172 next post will be coin name 2018-11-30 14:56:57+00:00 1.0 1342400398 1166 1 hour left to pump on cryptopia to know the name of coin bitcoinadmin 2018-11-30 13:38:09+00:00 1.0 1342400398 1165 4 hour left to pump on cryptopia to know the name of coin bitcoinadmin 2018-11-30 10:23:34+00:00 1.0 1342400398 1156 to know the name of coin before pump in vip channel contact for enquiry ❤️ ☎️ bitcoinadmin 2018-11-30 04:03:32+00:00 1.0 1342400398 1154 to know the name of coin before pump in vip channel contact for enquiry ❤️ ☎️ bitcoinadmin 2018-11-29 18:28:49+00:00 1.0 1342400398 1149 next pump scheduled ⏰ friday 30112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-29 17:01:50+00:00 1.0 1342400398 1124 ❤️to know the name of coin before pump ☎️ bitcoinpumpgroupadmin 2018-11-28 05:01:10+00:00 1.0 1342400398 1110 next post will be coin name 2018-11-27 14:57:18+00:00 1.0 1342400398 1104 ❤️to know the name of coin before pump ☎️ bitcoinpumpgroupadmin 2018-11-27 12:44:07+00:00 1.0 1342400398 1102 ❤️to know the name of coin before pump ☎️ bitcoinpumpgroupadmin 2018-11-27 09:52:43+00:00 1.0 1342400398 1099 ❤️to know the name of coin before pump ☎️ bitcoinpumpgroupadmin 2018-11-27 04:46:50+00:00 1.0 1342400398 1096 ❤️to know the name of coin before pump ☎️ bitcoinpumpgroupadmin 2018-11-26 17:46:54+00:00 1.0 1342400398 1091 ❤️to know the name of coin before pump ☎️ bitcoinpumpgroupadmin 2018-11-26 08:17:37+00:00 1.0 1342400398 1088 next pump scheduled ⏰ tuesday 27112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-26 07:51:45+00:00 1.0 1342400398 1071 next post will be coin name 2018-11-24 14:57:10+00:00 1.0 1342400398 1062 next pump scheduled ⏰ saturday 24112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-23 10:10:24+00:00 1.0 1342400398 1048 next post will be coin name 2018-11-20 14:57:19+00:00 1.0 1342400398 1043 1 hour left to pump on cryptopia ☎️ bitcoinpumpgroupadmin best time to join vip btc down 2018-11-20 13:49:05+00:00 1.0 1342400398 1042 8 hour left to pump on cryptopia ☎️ bitcoinpumpgroupadmin best time to join vip 2018-11-20 08:27:53+00:00 1.0 1342400398 1041 11 hour left to pump on cryptopia ☎️ bitcoinpumpgroupadmin best time to join vip 2018-11-20 03:49:11+00:00 1.0 1342400398 1039 next pump scheduled ⏰ tuesday 20112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-19 11:49:03+00:00 1.0 1342400398 1015 pump result ctic3 start price 16 sat weve reached 34 sat ✅ 112 profit ✅ amazing pump next pump will be announced soon to know the name of coin bitcoinpumpgroupadmin 2018-11-16 06:47:35+00:00 1.0 1342400398 1007 to know name of coin before pump bitcoinpumpgroupadmin 2018-11-14 08:44:55+00:00 1.0 1342400398 1000 to know name of coin before pump bitcoinpumpgroupadmin 2018-11-13 17:01:18+00:00 1.0 1342400398 989 next post will be coin name 2018-11-13 14:57:33+00:00 1.0 1342400398 983 to know name of coin before pump bitcoinpumpgroupadmin 2018-11-13 14:18:32+00:00 1.0 1342400398 979 to know name of coin before pump bitcoinpumpgroupadmin 2018-11-13 07:20:06+00:00 1.0 1342400398 969 next pump scheduled ⏰ tuesday 13112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-11 16:48:50+00:00 1.0 1342400398 954 next post will be coin name 2018-11-10 14:56:25+00:00 1.0 1342400398 938 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:32+00:00 1.0 1342400398 936 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-11-09 16:55:04+00:00 1.0 1342400398 935 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:01+00:00 1.0 1342400398 934 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:02+00:00 1.0 1342400398 933 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:02+00:00 1.0 1342400398 932 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:11+00:00 1.0 1342400398 931 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:30:10+00:00 1.0 1342400398 929 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:45+00:00 1.0 1342400398 926 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 13:01:26+00:00 1.0 1342400398 925 next pump scheduled ⏰ friday 9112018 at 5pm gmt exchange yobit this pump is going to be huge dont miss it if you dont have account on yobit create now 2018-11-09 11:08:19+00:00 1.0 1342400398 918 next pump scheduled ⏰ saturday 10112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-08 16:18:10+00:00 1.0 1342400398 915 pump result tix start price 3041 sat weve reached 6688 sat ✅ 120 profit ✅ amazing pump this channel gives the best pump of coins and make profit to 2x3x your btc exchanges cryptopiabinancebittrex we also provide binance signal as well to join premium channel and to know the coin name before contact bitcoinpumpgroupadmin next pump will be announced soon 2018-11-06 17:23:08+00:00 1.0 1342400398 904 next post will be coin name 2018-11-06 14:57:47+00:00 1.0 1342400398 890 next pump scheduled ⏰ tuesday 06112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-05 04:04:21+00:00 1.0 1342400398 873 next post will be coin name 2018-11-03 14:56:31+00:00 1.0 1342400398 860 next pump scheduled ⏰ saturday 03112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-02 03:15:25+00:00 1.0 1342400398 836 next post will be coin name 2018-10-30 14:56:33+00:00 1.0 1342400398 829 to know the name of pump coin early ☎️ bhugoy quick 2018-10-30 13:17:53+00:00 1.0 1342400398 819 5 hour left to pump on cryptopia hurry up guys for premium and make it to the moon 2018-10-30 09:57:27+00:00 1.0 1342400398 817 to know the name of coin before pump ☎️ bhugoy 2018-10-30 07:38:19+00:00 1.0 1342400398 794 next pump scheduled ⏰ tuesday 30102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-29 06:06:22+00:00 1.0 1342400398 779 next post will be coin name 2018-10-27 14:57:02+00:00 1.0 1342400398 763 next pump scheduled ⏰ saturday 27102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-26 05:09:48+00:00 1.0 1342400398 743 next post will be coin name 2018-10-23 14:56:46+00:00 1.0 1342400398 727 next pump scheduled ⏰ tuesday 23102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-22 10:41:07+00:00 1.0 1342400398 724 next pump scheduled ⏰ tuesday 23102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-22 06:58:24+00:00 1.0 1342400398 708 next post will be coin name 2018-10-20 14:56:50+00:00 1.0 1342400398 700 next pump scheduled ⏰ saturday 20102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-19 06:34:50+00:00 1.0 1342400398 682 next post will be coin name 2018-10-16 14:58:04+00:00 1.0 1342400398 668 next pump scheduled ⏰ tuesday 16102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-16 05:36:46+00:00 1.0 1342400398 664 next pump scheduled ⏰ tuesday 16102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-15 16:20:48+00:00 1.0 1342400398 659 next pump scheduled ⏰ tuesday 16102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-15 05:21:55+00:00 1.0 1342400398 645 next post will be coin name 2018-10-10 14:56:38+00:00 1.0 1342400398 629 next pump scheduled ⏰ wednesday 10102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-09 05:58:22+00:00 1.0 1342400398 613 next post will be coin name 2018-10-07 14:57:27+00:00 1.0 1342400398 604 next pump scheduled ⏰ sunday 07102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-07 12:01:59+00:00 1.0 1342400398 570 next post will be coin name 2018-10-03 14:56:07+00:00 1.0 1342400398 557 next pump scheduled ⏰ wednesd 03102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-02 12:02:51+00:00 1.0 1342400398 544 next post will be coin name 2018-09-30 14:56:40+00:00 1.0 1342400398 533 next pump scheduled ⏰ sunday 30092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-29 13:45:23+00:00 1.0 1342400398 519 next post will be coin name 2018-09-27 14:56:47+00:00 1.0 1342400398 510 24 hour left to pump on cryptopia be ready with your btc 2018-09-26 15:00:34+00:00 1.0 1342400398 495 next post will be coin name 2018-09-24 14:56:21+00:00 1.0 1342400398 482 next pump scheduled ⏰ monday 24092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-23 05:07:30+00:00 1.0 1342400398 467 next post will be coin name 2018-09-20 14:58:28+00:00 1.0 1342400398 453 next pump scheduled ⏰ thursday 20092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-18 15:14:51+00:00 1.0 1342400398 440 next post will be coin name 2018-09-17 14:57:04+00:00 1.0 1342400398 429 24 hour left to pump on cryptopia be ready with your btc 2018-09-16 15:00:19+00:00 1.0 1342400398 426 next pump scheduled ⏰ monday 17092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-15 16:37:06+00:00 1.0 1342400398 412 next post will be coin name 2018-09-13 14:57:54+00:00 1.0 1342400398 399 next pump scheduled ⏰ thursday 13092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-12 05:31:37+00:00 1.0 1342400398 385 next post will be coin name 2018-09-10 14:57:31+00:00 1.0 1342400398 374 next pump scheduled ⏰ monday 10092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-08 14:22:47+00:00 1.0 1342400398 361 next post will be coin name 2018-09-06 14:57:01+00:00 1.0 1342400398 348 next pump scheduled ⏰ thursday 06092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-05 05:17:28+00:00 1.0 1342400398 334 next post will be coin name 2018-09-03 14:56:31+00:00 1.0 1342400398 319 next pump scheduled ⏰ monday 03092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-01 15:02:42+00:00 1.0 1342400398 308 next post will be coin name 2018-08-30 14:56:20+00:00 1.0 1342400398 295 next pump scheduled ⏰ thursday 30082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-29 05:00:44+00:00 1.0 1342400398 282 get ready next post will be coin name 2018-08-27 14:56:58+00:00 1.0 1342400398 268 next pump scheduled ⏰ monday 27082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-26 04:54:32+00:00 1.0 1342400398 255 next post will be coin name 2018-08-23 14:57:37+00:00 1.0 1342400398 243 next pump scheduled ⏰ thursday 23082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-22 05:25:24+00:00 1.0 1342400398 230 next post will be coin name be ready to bang bang 2018-08-20 14:57:07+00:00 1.0 1342400398 217 next pump scheduled ⏰ monday 20082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-18 15:16:50+00:00 1.0 1342400398 205 next post will be coin name 2018-08-16 14:58:40+00:00 1.0 1342400398 193 next pump scheduled ⏰ thursday 16082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-15 03:45:35+00:00 1.0 1342400398 171 next pump scheduled ⏰ monday 13082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-12 06:12:54+00:00 1.0 1342400398 159 next post will be coin name 2018-08-10 14:56:00+00:00 1.0 1342400398 144 next pump scheduled ⏰ friday 10082018 at 3pm gmt exchange cryptopia other pump group is also participating so this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-09 04:59:52+00:00 1.0 1342400398 123 next pump scheduled ⏰ tuesday 07082018 at 3pm gmt exchange cryptopia other pump group is also participating so this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-06 06:07:22+00:00 1.0 1342400398 112 next post will be coin name be ready to ride on moon 2018-08-04 14:55:17+00:00 1.0 1342400398 99 next pump scheduled ⏰ saturday 04082018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-03 05:58:20+00:00 1.0 1342400398 88 next post will be coin name 2018-07-31 14:57:30+00:00 1.0 1342400398 77 next pump scheduled ⏰ tuesday 31072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-30 07:05:27+00:00 1.0 1342400398 62 next pump scheduled ⏰ saturday 28072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-27 06:41:38+00:00 1.0 1342400398 47 next pump scheduled ⏰ wednesday 25072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon contact bhugoy for premium membership 2018-07-24 08:51:03+00:00 1.0 1342400398 37 next post will be coin name be ready 2018-07-21 14:56:18+00:00 1.0 1342400398 26 next pump scheduled saturday 21072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon premium membership contact bhugoy 2018-07-20 05:29:14+00:00 1.0 1342400398 17 be ready hold your seat to ride to moon next post will be coin name 2018-07-18 14:56:31+00:00 1.0 1342400398 3 pump scheduled ⏰ wednesday 18072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-17 05:47:50+00:00 1.0 1449657884 8508 5 months there is a coin having the same price to a hard pump coin today guess the name next setup for this 2021-08-21 10:24:31+00:00 1.0 1449657884 8216 buying sky here we have detected heavy buys in it as well volume growing up slowly we can get a bag here and hold untill few hours big pump likely to be happen very soon and this one also have rumors about todays possible wsb pump coin targets 287034004700+ 870 within 9 hours 27 minutes stoploss none trade will be invalid after 9 hours 27 minutes by drvkichleaks 2021-07-11 07:35:00+00:00 1.0 1449657884 8215 buying via here we have detected heavy buys recently volume growing up slowly we can get a bag here and hold untill few hours big pump likely to be happen very soon and rumors about todays wsb pump coin targets 147016802300+ 870 within 11 hours 33 minutes stoploss none trade will be invalid after 11 hours 33 minutes by drvkichleaks 2021-07-11 05:48:44+00:00 1.0 1449657884 8209 there is rumors that tomorrows wsb pump coin is via sky both can pump upto 10120 within next 26 hours 19 minutes worth buy for short term quick profits via 1370 satoshi sky 2663 satoshi add both in your portfolio for 26 hours 19 minutes short term trading and this trade setup will be invalid after 11th of july 1700 pm gmt by drvkichleaks 2021-07-10 14:49:01+00:00 1.0 1449657884 8000 there is rumors that tomorrows wsb pump coin is via rdn both can pump upto 10140 within next 23 hours 12 minutes worth buy for short term quick profits via 1935 satoshi rdn 1141 satoshi add both in your portfolio for 23 hours 12 minutes short term trading and this trade setup will be invalid after 20th of june 1700 pm gmt by drvkichleaks 2021-06-19 17:58:33+00:00 1.0 1449657884 7911 tomorrow 1 coin will pump hard im suggesting you possible pump able coin expected gains 70 to 250 so if you buy any of coin put sell bids on your desired targets these coins have the highest chances to be pumped you can take part in any of it now or you can invest small small in all gvt 60 chance cmp 1000 dlt 15 chance cmp 277 nebl 15 chance cmp 5839 nxs 05 chance cmp 1985 grs 05 chance cmp 2137 these trades will be valid till 23 hours 8 minutes from now note sell all these coins immediately after 13th of june 1700 pm gmt good luck by drvkichleaks 2021-06-12 18:17:02+00:00 1.0 1449657884 7776 tomorrow 1 coin will pump hard im suggesting you possible pump able coin expected gains 2x to 4x so if you buy any of coin put sell bids on your desired targets these coins have the highest chances to be pumped you can take part in any of it now or you can invest small small in all ppt 65 chance cmp 6246 sky 15 chance cmp 4415 oax 10 chance cmp 742 mda 05 chance cmp 2341 fio 05 chance cmp 521 these trades will be valid till 23 hours 40 minutes from now note sell all these coins immediately after 30th of may 1700 pm gmt good luck by drvkichleaks 2021-05-29 17:36:39+00:00 1.0 1449657884 7631 bts buying here ready to big pump u have 13 mins left to buy it before posting in public 2021-05-16 07:20:18+00:00 1.0 1449657884 7617 doggy buy and hold it target 02 risky signal so book profits at every pump spike if you dont have account use this 2021-05-15 05:30:32+00:00 1.0 1449657884 7303 tomorrow 1 coin will pump hard im suggesting you possible pump able coin expected gains 2x to 4x so if you buy any of coin put sell bids on your desired targets these coins have the highest chances to be pumped you can take part in any of it now or you can invest small small in all evx 65 chance cmp 2222 rdm 15 chance cmp 2090 appc 10 chance cmp 400 nxs 05 chance cmp 2609 wnxm 05 chance cmp 1387 these trades will be valid till 43 hours 8 minutes from now note sell all these coins immediately after 25th of april 1700 pm gmt those picks this time valid till 25th of april good luck by drvkichleaks 2021-04-23 22:33:28+00:00 1.0 1449657884 7302 there is rumors that tomorrows bps pump coin is rdn evx both can pump upto 12240 within next 47 hours 22 minutes worth buy for short term quick profits rdn 2200 satoshi evx 2360 satoshi add both in your portfolio for 48 hours short term trading and this trade setup will be invalid after 25th of april gmt by drvkichleaks 2021-04-23 16:57:19+00:00 1.0 1449657884 7005 dont forget to hold some amount of avax big pump coming soon 2021-04-10 10:07:15+00:00 1.0 1449657884 6755 we dont sale this coin until 2 because they announce deto coin staking very soon then this coin pump like hell this own coin of delta exchange buy coin from here for 10 rebate 2021-04-02 10:12:44+00:00 1.0 1449657884 6438 this not pump and dump coin so try to hold minimum 3x profit our team taken lot of time to find this coin 2021-03-23 14:06:18+00:00 1.0 1449657884 6430 in just 4hrs we are announcing next 3 to 5x ultra low cap coin fyi its not pump and dump coin lets all make money together hodl only till minimum 3x 2021-03-23 10:06:01+00:00 1.0 1449657884 6415 hello fam good news for your all drvkich team researched and found one hidden gem coin its easily make 3x to 5x profit returns in very short term hold till minimum 3x because its not pump and dump coin we are announcing this coin tomorrow 1000pm sgt 730 pm ist 2pm gmt 1000am est exclusively only for drvkich family 2021-03-22 16:23:40+00:00 1.0 1449657884 6079 gobtc looks like ready to explose forming cup handle in 1d timeframe rsi still looking bullish ema 50 support decent volume ️ break above the resistance pump hard buy some around 51 54 satoshi 2021-03-11 03:53:31+00:00 1.0 1449657884 5790 important update due to massive request from our premium members we will share our upcoming pump call 72 hours earlier for premium members we will share this coin within next 60 minutes you guys can buy some and hold for moon ride dont leak this coin‼️ stay tuned by drvkichleaks 2021-02-26 02:35:01+00:00 1.0 1449657884 5679 tomorrow 1 coin will pump hard im suggesting you possible pump able coin expected gains 2x to 4x so if you buy any of coin put sell bids on your desired targets these coins have the highest chances to be pumped you can take part in any of it now or you can invest small small in all nebl 80 chance cmp 4281 oax 05 chance cmp 638 nxs 05 chance cmp 1797 grs 05 chance cmp 1323 fio 05 chance cmp 319 these trades will be valid till 22 hours 48 minutes from now note sell all these coins immediately after 20th of february 9pm gmt good luck by drvkichleaks 2021-02-20 03:22:43+00:00 1.0 1449657884 5585 guys dont miss todays pump coin dlt buy on cp 260 target 310 380 410 565 600+ by drvkichleaks 2021-02-13 13:08:02+00:00 1.0 1449657884 5172 buying gxs here we have detected heavy buys recently volume growing up slowly we can get a bag here and hold for 20 hours 45 minutes big pump likely to be happen very soon targets 1440179026703700+ 20200 within 20 hours 45 minutes stoploss none trade will be invalid after 20 hours 45 minutes by drvkichleaks 2021-02-03 01:40:54+00:00 1.0 1449657884 5068 small update nav dusk trade will be invalid after 36 minutes if you want nav you can hold after this time or can buy dip as short term it will pump big very soon we will hold it for big profit by drvkichleaks 2021-02-01 06:31:22+00:00 1.0 1449657884 5059 nav pump will be epic within 3 hours 10 minutes mark my words by drvkichleaks 2021-01-31 17:20:24+00:00 1.0 1449657884 4715 you can buy the coin as soon as it is released or read up on the project first if you prefer supporting links and some info will be given the coin will post in about 10 minutes 2021-01-21 02:37:47+00:00 1.0 1449657884 4624 6 pump after signal thats why im telling just one trade is enough to recover 2021-01-16 16:54:16+00:00 1.0 1449657884 4314 gvt keep pumping 10 profit currently but dont sell earlier as you can make 2x to 7x within next 10 hours if it will not pump at 9pm gmt today then sell it immediately the rules is same for all coins by drvkichleaks 2021-01-09 13:50:19+00:00 1.0 1449657884 4313 tomorrow 1 coin will pump hard im suggesting you possible pump able coin expected gains 2x to 7x so if you buy any of coin put sell bids on your desired targets you can take part in any of it before few minutes of 5pm gmt gvt 95 chance cmp 0725 nxs 04 chance cmp 0915 evx 0050 chance cmp 1026 ppt 0050 chance cmp 2304 good luck cryptoleaksdrvkich 2021-01-09 13:50:19+00:00 1.0 1449657884 4101 last time it did fast drop to test base 2 after massive pump so lets buy it if it test base 2 again ok 2021-01-03 15:05:58+00:00 1.0 1449657884 3993 6 minutes left till the binance pump 2020-12-29 14:44:15+00:00 1.0 1449657884 3988 3 hour left until the volcanic eription coin todays call will be a low cap call supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 30 120 2020-12-29 12:43:28+00:00 1.0 1449657884 2851 poa bi̇nance buy around 90103 sel119134150+245 buy it on binance poa network looks very bullish in all time frames technically strong poa is a gem buy a bag wait for the pump strongsignal stoploss 7 from entry 2020-12-01 08:33:14+00:00 1.0 1449657884 2394 boom coin 15 minutes left big jump coin 2020-11-29 13:26:51+00:00 1.0 1449657884 1231 next si̇gnal boom coin 3 hours left by 2020-10-11 10:48:14+00:00 1.0 1449657884 966 i think ftm can blast any time because that is pump coin 2020-09-27 05:47:35+00:00 1.0 1449657884 795 you should remember the volatility hours that market usually moves with volume 3 factors 1 nyse openingclosing 2 shanghai market openingclosing 3 funding time 8 hours cycle 4 asian market openingclosing weekends are usually pump and dump situation we see pump on a saturday just to dump on sundays but this doesnt happen most of the time 2020-09-15 06:34:13+00:00 1.0 1449657884 438 buying hc here✅ looking good on higher timeframe retest after successfully breakout on higher timeframe now ready for next legup same fractal like ae before 100 expecting insane return from this coin wtihin few weeks remember what happened with qtum due to hardfork news‼️ hc not pumped much from bottom in this bull market with strong fundamentals it can really pump hard 2020-08-25 08:05:58+00:00 1.0 1234654233 2581 10 minutes left ❗️ afterwards the new price will be effective 2020-05-09 20:51:09+00:00 1.0 1234654233 2174 pump coin name rdn 2020-04-21 13:58:56+00:00 1.0 1234654233 2173 next post will be coin name 2020-04-21 13:56:01+00:00 1.0 1234654233 2170 40 minutes for mega pump alert❗ 2020-04-21 13:20:53+00:00 1.0 1234654233 2169 only 3 hours left for mega pump alert❗ 2020-04-21 11:02:15+00:00 1.0 1234654233 2168 mega pump alert❗ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 22:25:14+00:00 1.0 1234654233 2151 pump coin name lun 2020-04-17 13:57:22+00:00 1.0 1234654233 2148 premium members will get coin name a few hours early so join now dont miss this huge pump 2020-04-17 05:07:30+00:00 1.0 1234654233 2140 new pump alert❗️ date 17th april ⏱ time 1600 pm gmt exchange binance 2020-04-17 04:10:52+00:00 1.0 1234654233 2116 less than 2 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-04-02 14:46:49+00:00 1.0 1234654233 2115 less than 5 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-04-02 11:41:19+00:00 1.0 1234654233 2114 pump coin name nebl 2020-03-22 16:00:02+00:00 1.0 1234654233 2113 next post will be the coin name 2020-03-22 15:45:18+00:00 1.0 1234654233 2112 less than 50 minutes left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-22 15:14:42+00:00 1.0 1234654233 2111 about 2 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-22 13:56:26+00:00 1.0 1234654233 2110 less than 18 hours left❗ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-21 22:54:58+00:00 1.0 1234654233 2109 pump coin name nebl 2020-03-20 15:59:59+00:00 1.0 1234654233 2108 next post will be the coin name 2020-03-20 15:50:33+00:00 1.0 1234654233 2106 only 1 hour left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-20 15:01:12+00:00 1.0 1234654233 2105 less than 5 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-20 11:29:04+00:00 1.0 1234654233 2104 less than 18 hours left❗ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-19 23:07:06+00:00 1.0 1234654233 2103 pump coin name bnt 2020-03-17 15:55:12+00:00 1.0 1234654233 2102 next post will be the coin name 2020-03-17 15:40:06+00:00 1.0 1234654233 2100 only 40 minutes left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-17 15:21:55+00:00 1.0 1234654233 2099 less than 2 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-17 14:07:25+00:00 1.0 1234654233 2098 less than 20 hours left❗ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-16 20:05:51+00:00 1.0 1234654233 2097 pump coin name nebl 2020-03-15 20:00:13+00:00 1.0 1234654233 2096 next post will be the coin name 2020-03-15 19:53:09+00:00 1.0 1234654233 2094 less than 1 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 19:15:52+00:00 1.0 1234654233 2093 less than 2 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 18:06:01+00:00 1.0 1234654233 2092 less than 4 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 16:25:03+00:00 1.0 1234654233 2091 only 7 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 13:02:06+00:00 1.0 1234654233 2090 less than 24 hours left❗ tomorrow at 2000 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-14 20:51:28+00:00 1.0 1234654233 2089 pump coin name brd 2020-03-11 19:57:24+00:00 1.0 1234654233 2088 next post will be pump coin name 2020-03-11 19:46:05+00:00 1.0 1234654233 2087 less than 30 minutes left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time 2020-03-11 19:32:45+00:00 1.0 1234654233 2086 less than 1 hour left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time 2020-03-11 19:01:44+00:00 1.0 1234654233 2085 less than 2 hours left❗ about 2000 pm gmt a heavy pump will happen coin name will be posted here between 1955 2000 pm gmt randomly make sure to buy the dipped coin before pump time 2020-03-11 18:13:54+00:00 1.0 1234654233 2078 ‼️attention‼️ log in your binance account be ready with spare btc next post will be coin name pinourchannelontopandbereadyforblast 2019-11-30 16:54:25+00:00 1.0 1234654233 2077 ⏱ 15 minutes left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc pinourchannelontop regards 2019-11-30 16:45:17+00:00 1.0 1234654233 2076 ⏱ 1 hour left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 16:00:15+00:00 1.0 1234654233 2074 ⏱ 2 hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 15:00:39+00:00 1.0 1234654233 2071 are you ready for this pump join premium and get coin name earlier than free channel be fast only few hours left‍♂‍♂‍♂ 2019-11-30 12:10:06+00:00 1.0 1234654233 2068 ⏱ 6 hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 11:00:39+00:00 1.0 1234654233 2067 ⏱ less than 12hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 05:10:05+00:00 1.0 1234654233 2066 ⏱ 24 hours left for coinofthemonth⏱ more than 500k people are going to join and this can be the biggest moment in near future which will be expected 70100 we will post more information on how to get profit out of this event soon sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-29 17:00:42+00:00 1.0 1234654233 2065 mega event is here on binance our team is here with the most awaited coinofthemonth exchange binance date 30112019 ⏱time 5pm gmt pump will be free for all more than 500k people are going to join this coinof themonth and this can be the biggest moment in near future we will post more information on how to get profit out of this event soon alts are pumping heavily nowadays lets take advantage of that and get some crazy profits with pump pinourchannelontop beready4blast staytuned 2019-11-28 16:47:20+00:00 1.0 1234654233 1428 pump result lrc start price 330 weve reached 359 huge quick profit 10 congrats guys next pump will be announced soon to know next coin name earlier contact ricandbpump for premium membership 2019-09-05 16:16:28+00:00 1.0 1234654233 1419 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 15 minutes left 2019-09-05 15:45:41+00:00 1.0 1234654233 1416 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 30 minutes left ☎️ contact ricandbpump 2019-09-05 15:33:22+00:00 1.0 1234654233 1298 announcement dear members the wait is over since our previous mega calls were a great success we have decided to make more mega profits for all of you this big bang call will be freeforall meaning that everyone will receive the signal at the same time big bang call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next big bang call exchange binance date 05092019 thursday time 4 pm gmt target 4070 have a great weekend and prepare yourself for upcoming big bang call nav pumped here 70 cvc pumped here 70+ data pumped here 70 vib pumped here 46+ via pumped here 22 rcn pumped here 328+ to know coin name earlier join premium ☎️ contact ricandbpump 2019-08-30 16:43:41+00:00 1.0 1234654233 964 one more huge profit for our premium members within 1 hour and 30 minutes 2019-08-22 07:08:54+00:00 1.0 1234654233 865 pump result ong start price 1781 weve reached 1999 quick profit 122 congrats guys today 34 coins pumped at same time thats why outsiders diverted on other coins and we manage to get only 12 profit but its good profit within few minutes next pump will be announced soon to know next coin name earlier contact ricandbpump for premium membership 2019-08-19 16:25:07+00:00 1.0 1234654233 859 the next post will be coin name login to binance be ready with your btc 2019-08-19 15:56:09+00:00 1.0 1234654233 858 10 minutes left ‍♀‍♀‍♀ be ready with your btc 2019-08-19 15:49:48+00:00 1.0 1234654233 856 only 1 hour left to pump on binance to know coin name earlier join premium ☎ contact ricandbpump 2019-08-19 15:01:48+00:00 1.0 1234654233 681 pump result via start price 244 weve reached 298 huge quick profit 22 congrats guys next pump will be announced soon to know next coin name earlier contact ricandbpump for premium membership 2019-08-16 16:11:19+00:00 1.0 1234654233 669 1 hour left to pump on binance breakout alert 2019-08-16 15:04:28+00:00 1.0 1234654233 665 3 hour left to pump on binance breakout alert 2019-08-16 13:09:51+00:00 1.0 1234654233 648 6 hour left to pump on binance breakout alert 2019-08-16 10:29:18+00:00 1.0 1234654233 557 pump result cvc start price 388 weve reached 650 huge quick profit 80 congrats guys next pump will be announced soon to know next coin name earlier contact ricandbpump for premium membership 2019-08-13 20:32:16+00:00 1.0 1234654233 424 pump result rcn start price 140 weve reached 186 huge quick profit 328 congrats guys next pump will be announced soon to know next coin name earlier contact ricandbpump for premium membership 2019-08-10 17:04:21+00:00 1.0 1234654233 414 next post will be coin name be ready with you btc 2019-08-10 15:57:01+00:00 1.0 1234654233 412 guys be ready 10 minutes left this pump can get you from 10100 2019-08-10 15:50:55+00:00 1.0 1234654233 411 we are going to push one coin after 30 minutes be ready guys we will post coin name in this free channel to get coin name 10 minutes earlier contact ricandbpump 2019-08-10 15:33:18+00:00 1.0 1234654233 96 pump result pivx start price 547 weve reached 620 quick profit 133 next pump will be announced soon to know next coin name earlier 2019-07-06 13:30:04+00:00 1.0 1234654233 86 next post will be coin name 2019-07-06 13:30:04+00:00 1.0 1234654233 80 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact ricandbpump 2019-07-06 13:30:04+00:00 1.0 1499216392 6 ‍‍‍ we are a collective cryptocurrency pump group on kucoinbinance and hotbit where members from all over the world join up to push a target cointoken all at the same time so we can collectively profit this will cause the coin to increase rapidly in price this price volume boost will trigger algo bots as well as outside traders to notice the break out and also buy the coin which increases the price further our coin will become the top gainer for the day and get even more attention meanwhile we are promoting this rise along side the news given about the coin by our team to bring in even more investors now it is time to sell our coins which we bought just as they began to rise remember our mas influx of buy orders is what started all this once they have reached our target and all members can profit do not forget to join our discord server for tutorials pump results chat giveaways and of course our moonbot in order to grow our community we are running a giveaway you can join here ⏰ we will start posting pumps soon stay tuned and do not forget to check our telegram and discord frequently 2021-03-31 02:40:24+00:00 1.0 1240071142 5570 new binance pump announcement ⏳date ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2022-01-06 18:01:28+00:00 1.0 1240071142 5569 today binance pump analysis coin nebl low 2366 high 4058 exchange binance profit 5169 profit the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit coin is phb 7959 profit coin is snm 2479 profit coin is nebl 5149 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2022-01-02 17:07:29+00:00 1.0 1240071142 5566 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus joining the free pump is very risky please be careful as a vip member you can make big profits without risk 2022-01-02 16:55:10+00:00 1.0 1240071142 5564 1 hours left until the massive pump on binance be prepared 2022-01-02 16:00:42+00:00 1.0 1240071142 5562 2 hours left until the massive pump on binance be prepared 2022-01-02 15:04:34+00:00 1.0 1240071142 5561 3 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2022-01-02 14:03:07+00:00 1.0 1240071142 5560 24 hours remaining until the big pump on binance the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 100 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 100 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2022-01-01 16:10:41+00:00 1.0 1240071142 5559 3 days left until the big pump on binance 2021-12-30 15:29:26+00:00 1.0 1240071142 5558 new binance pump announcement ⏳date sunday january 2 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-12-12 15:59:04+00:00 1.0 1240071142 5557 today binance pump analysis coin snm low 621 high 775 exchange binance profit 2479 profit the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit coin is phb 7959 profit coin is snm 2479 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-12-07 16:06:39+00:00 1.0 1240071142 5555 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus joining the free pump is very risky please be careful as a vip member you can make big profits without risk 2021-12-07 15:54:48+00:00 1.0 1240071142 5553 20 mins left until the big pump on binance only 20mins left hope u ready for this massive mountain spot signal event get your spare btc ready exchange binance 2021-12-07 15:40:34+00:00 1.0 1240071142 5551 2 hours left until the big pump on binance hope u ready for this massive mountain spot signal event get your binance accounts ready with spare btc exchange binance today 4 pm gmt ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-12-07 14:09:13+00:00 1.0 1240071142 5550 new binance pump announcement ⏳date dec 7 tomorrow ⏰time 4 pm gmt exchange binance +40 whale channels target 50 110 profit biggest mountain spot signal is coming tomorrow we are going to see the biggest mountain spot signal ever the spot signal has a huge upside potential its coming with a strong technicals and fundamentals exchange binance 7th december 4 pm gmt ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-12-06 19:26:42+00:00 1.0 1240071142 5549 today binance pump analysis coin phb low 1236 high 1348 exchange binance profit 7959 profit pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit coin is phb 7959 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-28 18:53:49+00:00 1.0 1240071142 5546 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus joining the free pump is very risky please be careful as a vip member you can make big profits without risk 2021-11-28 16:55:09+00:00 1.0 1240071142 5544 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:16:52+00:00 1.0 1240071142 5543 2 hours left until the massive pump on binance 2021-11-28 15:15:56+00:00 1.0 1240071142 5541 24 hours remaining until the big pump on binance the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-27 17:07:33+00:00 1.0 1240071142 5540 2 days remaining until the big pump on binance 2021-11-26 16:18:29+00:00 1.0 1240071142 5538 we offer a black friday discount on our vip memberships last 4 days send a message now and complete the membership process buy the coin name for the big pump on november 28th 3 days or 1 day in time and earn big bucks lets hurry up black friday discounts are limited the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit next pump november 28 ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-23 16:26:40+00:00 1.0 1240071142 5534 new binance pump announcement ⏳date november 28 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-10 16:21:08+00:00 1.0 1240071142 5532 today binance pump analysis coin mth low 55 high 132 exchange binance profit 14199 profit you can see our vip channel evidence above please dont ask me amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-07 17:21:49+00:00 1.0 1240071142 5527 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus joining the free pump is very risky please be careful as a vip member you can make big profits without risk 2021-11-07 16:56:34+00:00 1.0 1240071142 5525 30 minutes left until the big pump on binance 2021-11-07 16:30:09+00:00 1.0 1240071142 5524 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-07 16:13:37+00:00 1.0 1240071142 5521 24 hours left until the big pump on binance the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-06 17:10:47+00:00 1.0 1240071142 5516 new binance pump announcement ⏳date sunday november 7 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-11-01 15:50:58+00:00 1.0 1240071142 5513 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-10-31 16:55:10+00:00 1.0 1240071142 5512 25 mins left until the big pump on binance 2021-10-31 16:35:05+00:00 1.0 1240071142 5507 6 hours left until the big pump on binance 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-31 11:03:09+00:00 1.0 1240071142 5506 tomorrow big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared ⏰time 1700 pm gmt ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-30 13:14:33+00:00 1.0 1240071142 5505 new binance pump announcement ⏳date sunday october 31 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit next pump october 31 ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-27 21:13:53+00:00 1.0 1240071142 5504 today binance pump analysis coin evx low 1125 high 2008 exchange binance profit 8488 profit pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-24 19:16:06+00:00 1.0 1240071142 5502 some of our members want vip channel evidence id like to share this screenshot with you vip membership is a great advantage you buy the coin name 3 days or 1 day ago sign up now to avoid missing out on the 84 profit rate at the next pump invest in your future please check the dates 2021-10-24 17:21:30+00:00 1.0 1240071142 5497 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-10-24 16:55:06+00:00 1.0 1240071142 5496 15 minutes left until the massive pump on binance 2021-10-24 16:45:13+00:00 1.0 1240071142 5494 30 mins remaining until the big binance pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss our official target will be 80+ 2021-10-24 16:31:38+00:00 1.0 1240071142 5486 new binance pump announcement ⏳date sunday october 24 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit the last five recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit next pump october 24 ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-12 10:27:50+00:00 1.0 1240071142 5483 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-10-10 16:55:06+00:00 1.0 1240071142 5482 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:30:09+00:00 1.0 1240071142 5481 1 hours left until the big pump on binance 2021-10-10 16:00:48+00:00 1.0 1240071142 5480 2 hours left until the big pump on binance the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance premium member contact pumpadminroys 2021-10-10 15:01:35+00:00 1.0 1240071142 5478 4 hours left until the big pump on binance 2021-10-10 13:06:03+00:00 1.0 1240071142 5477 8 hours left until the big pump on binance the big day has arrived 8 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 8 hours be prepared ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-10 09:01:54+00:00 1.0 1240071142 5471 new binance pump announcement ⏳date sunday october 10 ⏰time 1700 pm gmt exchange binance +40 whale channels target 100 220 profit the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-04 13:35:22+00:00 1.0 1240071142 5466 next post will be the binance coin 1 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-10-03 16:59:33+00:00 1.0 1240071142 5464 prepare for the second pump well share in three minutes 2021-10-03 16:58:17+00:00 1.0 1240071142 5457 6 hours left until the big pump on binance the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 6 hours be prepared we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-10-03 12:01:11+00:00 1.0 1240071142 5453 new binance pump announcement ⏳date sunday october 3 ⏰time 5 pm gmt exchange binance +40 whale channels target 100 220 profit the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned to buy vip of next pump contact pumpadminroys we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-09-20 17:10:16+00:00 1.0 1240071142 5451 today binance pump analysis coin fxs low 10544 high 20597 exchange binance profit 9534 profit pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump it is very difficult to pump in this bad market but our vip members made a big profit by buying coini 1 day ago and 3 days ago congratulations to all our courageous vip members ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-09-19 18:12:48+00:00 1.0 1240071142 5447 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-09-19 16:55:17+00:00 1.0 1240071142 5444 1 hours 30 mins remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:31:57+00:00 1.0 1240071142 5442 8 hour left until the binance pump ready the big day has arrived 8hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 8 hours be prepared we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-09-19 04:00:19+00:00 1.0 1240071142 5437 new binance pump announcement ⏳date sunday sep 19 ⏰time 5 pm gmt exchange binance +40 whale channels target 100 220 profit with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the successful previous pump and discussion with our team we have decided to schedule our next pump on sept12 to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to buy vip of next pump contact pumpadminroys we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-09-06 18:57:27+00:00 1.0 1240071142 5433 today binance pump analysis pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-09-05 17:58:18+00:00 1.0 1240071142 5429 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-09-05 16:56:51+00:00 1.0 1240071142 5426 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-09-05 13:00:30+00:00 1.0 1240071142 5425 24 hour left until the binance pump ready dear members this is a basic stepbystepguide for new members 1 ten min before 5pm gmt tomorrow have binancecom telegram open 2 at exactly 5pm gmt there will a message including the name of a coin in the telegram 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can read the socialmediaguide on prepare for tomorrows pump the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-09-04 17:00:15+00:00 1.0 1240071142 5422 new binance pump announcement ⏳date sunday september 5 ⏰time 5 pm gmt exchange binance +40 whale channels target 200 520 profit 40 whale channels target 200 to 520 profit for vip premium coin earlier contact pumpadminroys with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the successful previous pump and discussion with our team we have decided to schedule our next pump on sept5 to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to buy vip of next pump contact pumpadminroys we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-08-26 15:59:48+00:00 1.0 1240071142 5421 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-08-22 18:02:33+00:00 1.0 1240071142 5418 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-08-22 11:01:31+00:00 1.0 1240071142 5414 new binance pump announcement ⏳date sunday 22 august ⏰time 5 pm gmt exchange binance +26 whale channels target 80 120 profit the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-08-13 15:39:22+00:00 1.0 1240071142 5401 new binance pump announcement ⏳date sunday 22 august ⏰time 5 pm gmt exchange binance +26 whale channels target 80 120 profit with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on july 25 we will be pumping again with a 500 + target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed poa ppt nxs and sky which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-07-16 16:48:05+00:00 1.0 1240071142 5394 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-07-11 16:55:05+00:00 1.0 1240071142 5388 7 hours remaining until the big pump on binance our target dwill be 100 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready ⏳date sunday july 11 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-07-11 09:00:53+00:00 1.0 1240071142 5380 new binance pump announcement ⏳date sunday july 11 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on july 11 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 11 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-06-27 18:08:46+00:00 1.0 1240071142 5378 today binance pump analysis coin mth low 48 high 63 exchange binance profit 3124 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump it is very difficult to pump in this bad market but our vip members made a big profit by buying coini 1 day ago and 3 days ago congratulations to all our courageous vip members ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-06-27 17:06:56+00:00 1.0 1240071142 5373 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-06-27 16:55:20+00:00 1.0 1240071142 5367 new binance pump announcement ⏳date sunday june 27 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal pump will be on the weekend this usually has a higher volume and higher chances of bigger gains share and spread this post✅ invite your friends more members bigger the pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-06-06 19:33:38+00:00 1.0 1240071142 5365 today binance pump analysis coin cnd low 55 high 91 exchange binance profit 6545 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump our february success rates are ✅ 6545 cnd binance 06 june ✅ 6610 binance 09 june ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-06-06 17:59:32+00:00 1.0 1240071142 5361 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-06-06 16:55:24+00:00 1.0 1240071142 5356 new binance pump announcement ⏳date sunday june 6 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal pump will be on the weekend this usually has a higher volume and higher chances of bigger gains share and spread this post✅ invite your friends more members bigger the pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-06-01 19:52:13+00:00 1.0 1240071142 5343 new binance pump announcement ⏳date sunday june 6 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal pump will be on the weekend this usually has a higher volume and higher chances of bigger gains share and spread this post✅ invite your friends more members bigger the pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-05-09 18:10:14+00:00 1.0 1240071142 5336 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-05-09 16:55:23+00:00 1.0 1240071142 5329 new binance pump announcement ⏳date sunday 9 may ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit with our high volumes averaging 200 to 500 btc per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump on sunday to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit next week we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 100 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-05-02 17:53:02+00:00 1.0 1240071142 5327 today binance pump analysis coin dlt low 371 high 730 exchange binance profit 9676 profit we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-05-01 17:02:51+00:00 1.0 1240071142 5324 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-05-01 16:55:24+00:00 1.0 1240071142 5318 new binance pump announcement ⏳date saturday may 1 ⏰time 1700 pm gmt exchange binance +26 whale channels target 80 140 profit only 2 days left in two days youll see a pump which is not usual in our business with the dubai pump group we have the best support from middle east with our big whales we are sure that we will change something in this business please make sure you are a part of it we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-30 16:18:14+00:00 1.0 1240071142 5316 today binance pump analysis coin idex low 242 high 500 exchange binance profit 10661 profit pump result 700 btc volume which is around 35 million the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 80 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 200500 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-25 18:31:47+00:00 1.0 1240071142 5311 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-04-25 16:55:44+00:00 1.0 1240071142 5307 new binance pump today announcement 6 hours left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-25 10:58:04+00:00 1.0 1240071142 5302 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-04-24 20:58:11+00:00 1.0 1240071142 5297 today binance pump analysis coin via low 3275 high 8430 exchange binance profit 15740 profit great pump again the peak was over 250 the volume in the first hour was amazing over 12k btc especially for a weekday pump because of the enormous amount of positive feedback through twitter and other channels we have decided to schedule a new pump details of the next pump exchange binancecom international date 24april2021 saturday time 9pm gmt next pump will be in the weekend this usually has a higher volume we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-21 23:14:51+00:00 1.0 1240071142 5290 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-04-21 20:55:42+00:00 1.0 1240071142 5288 1 hour left until the binance pump take this 1 hour to read all the channels and prepare your all your social media channels so you can promote the coin instantly at 9 pm gmt we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-21 20:00:44+00:00 1.0 1240071142 5286 2 hour left until the binance pump ready 2021-04-21 19:04:07+00:00 1.0 1240071142 5284 24 hour left until the binance pump ready dear members this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt tomorrow have binancecom telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in the telegram 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can read the socialmediaguide on prepare for tomorrows pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-20 21:26:49+00:00 1.0 1240071142 5282 the new date and time for the pump exchange binancecom date 21april2021 time 9pm gmt in the past week the server has grown a lot therefore we can expect an insane volume comparable to the dlt pump a few weeks ago which gained more than 2500 btc volume in two hours 2021-04-17 14:02:20+00:00 1.0 1240071142 5281 new binance pump announcement ⏳date april 24 ⏰time 9 pm gmt exchange binance +26 whale channels target 80 140 profit with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 10 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-16 18:47:35+00:00 1.0 1240071142 5279 today binance pump analysis coin ong low 1879 high 2191 exchange binance profit 1660 profit due to the intense insistence of our vip members we chose a high volume coin we didnt choose the right coin our vip members have made good profits but i cant say the same for our free members thats why well be choosing lowvolume coins at our next pumps our next pump target will be 250 profit our april success rates are ✅ 1660 ong binance 12 april ✅ binance april we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-12 17:06:31+00:00 1.0 1240071142 5275 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-04-12 16:55:03+00:00 1.0 1240071142 5274 only 15 minutes left log in your binance accounts be ready with spare btc we are about to fly exchange binance 2021-04-12 16:45:42+00:00 1.0 1240071142 5272 binance pump starts in 1 hour ready guys do get this seriously understand when over 132k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt exchange binance we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-12 16:03:47+00:00 1.0 1240071142 5271 attention only about 6 hours left mountain pump is going to get insanely fomo you guys can hype the coin in twitter also to bring more fomo be ready guys with spare btc exchange binance 6 hrs remaining today 5 pm gmt 2021-04-12 11:02:10+00:00 1.0 1240071142 5270 today binance pump starts ready hey guys only about 10 hours left hope u ready for this massive mountain pump event get your binance accounts ready with spare btc this mountain pump signal will also be promoted in twitter exchange binance 10 hrs remaining today 5 pm gmt our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ 29536 pivx binance 28 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-12 07:05:50+00:00 1.0 1240071142 5264 new binance pump announcement ⏳date 12th april ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 11 we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ 29536 pivx binance 28 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-04-04 19:08:23+00:00 1.0 1240071142 5261 today binance pump analysis coin pivx low 2937 high 11612 exchange binance profit 29536 profit pump results 1400 btc volume which is around 80m with this amount of volume we should normally be able to pump coins above 500+ fairly easily although the volume was massive we did not manage to reach our target of 5001000 after looking carefully at the data we saw that the sell pressure came from the eth pairing we are not quite sure exactly where those sells were coming from but we will look further into it to make sure it doesnt happen in our next pump and reach the result we were meant to reach in this pump thank you all for participating we will announce our next date shortly our february success rates are 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ 29536 pivx binance 28 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-28 17:08:05+00:00 1.0 1240071142 5255 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-03-28 16:59:57+00:00 1.0 1240071142 5253 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-03-28 16:56:16+00:00 1.0 1240071142 5251 new binance pump announcement ⏳date march 28 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit biggest mountain pump signal we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this our february success rates are 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ binance 28 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-23 16:10:01+00:00 1.0 1240071142 5249 new binance pump announcement ⏳date march 28 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit biggest mountain pump signal we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this our february success rates are 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ binance 28 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-21 18:24:48+00:00 1.0 1240071142 5235 today binance pump analysis coin ctxc low 484 high 749 exchange binance profit 5475 profit next pump 21 march our february success rates are 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ binance 21 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-18 17:56:48+00:00 1.0 1240071142 5228 wooow good pump weve been on top for five minutes 2021-03-18 17:05:25+00:00 1.0 1240071142 5226 next post will be the binance coin 4 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-03-18 16:56:22+00:00 1.0 1240071142 5225 only 15 minutes left log in your binance accounts be ready with spare btc we are about to fly exchange binance 2021-03-18 16:45:16+00:00 1.0 1240071142 5224 binance pump starts in 22 mins ready understand when over 102k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 22 mins remaining today 5 pm gmt exchange binance we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-18 16:38:25+00:00 1.0 1240071142 5222 binance pump starts in 6 hours ready only about 6 hours left mountain pump is going to get insanely fomo you guys can hype the coin in twitter also to bring more fomo be ready guys with spare btc exchange binance 6 hrs remaining today 5 pm gmt we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-18 11:02:34+00:00 1.0 1240071142 5221 binance pump starts in 12 hours ready hope u ready for this massive mountain pump event get your binance accounts ready with spare btc this mountain pump signal will also be promoted in twitter exchange binance 12 hrs remaining today 5 pm gmt we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-18 05:13:13+00:00 1.0 1240071142 5219 attention new pump announcement biggest mountain pump signal is coming at 18th march tomorrow we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this exchange binance 18th march 5 pm gmt our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ binance 21 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-17 16:35:57+00:00 1.0 1240071142 5216 new binance pump announcement ⏳date sunday march 21 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit biggest mountain pump signal we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this our february success rates are 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ binance 21 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-09 17:33:28+00:00 1.0 1240071142 5213 today binance pump analysis coin ppt low 6274 high 35000 exchange binance profit 45785 profit pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned our february success rates are 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 07 march ✅ binance march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-07 17:13:12+00:00 1.0 1240071142 5207 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-03-07 16:56:08+00:00 1.0 1240071142 5204 binance pump starts in 1 hours ready 1 hour remaining until our pump on binance our reposter bot had a few issues and it is fixed now everything is looking perfect now and we are more than ready to pump be ready premium member contact pumpadminroys 2021-03-07 16:00:28+00:00 1.0 1240071142 5201 binance pump starts in 4 hours ready our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready our march success rates are ✅ 5111sky binance 01 march ✅ binance 07 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-07 13:01:55+00:00 1.0 1240071142 5200 binance pump starts in 24 hours ready everyone only 24 hours left until our next pump on binancecom our last pump of sky was huge going to over 51 and attaining nearly 1000 btc of volume tomorrow we will look to grow the pump even larger our signal will reach a much larger audience of up to 1 million people as all groups have continued to grow over these past 2 weeks by now you know the drill but if you dont check out the howtopump guide we pump on binancecom we use the btc pair for our coin we buy the coin quickly with massive volume causing a huge spike and gaining the attention of the outside trading world please see all available information so you can be fully prepared to earn maximum profit our february success rates are ✅ 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ binance 07 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-06 17:12:35+00:00 1.0 1240071142 5196 new binance pump announcement ⏳date 7 march ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit our february success rates are ✅ 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ binance 06 march ✅ binance 07 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-05 18:37:03+00:00 1.0 1240071142 5190 next post will be the binance coin 10 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-03-01 16:50:35+00:00 1.0 1240071142 5188 binance pump starts in 1 hours ready understand when traders from all over the globe join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt exchange binance we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-01 16:01:03+00:00 1.0 1240071142 5187 binance pump starts in 6 hours ready hope u ready for this massive mountain pump event get your binance accounts ready with spare btc this mountain pump signal will also be promoted in twitter expected gain 500 exchange binance 6 hrs remaining today 5 pm gmt we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-03-01 08:04:39+00:00 1.0 1240071142 5186 success rates for the last 4 months weve finished february we have now signed a collaboration with our very big whale partners for march well be back soon with very large pumps ill share the next pump date soon our vip members have won all the profit rates you see below take advantage of this opportunity our november success rates are 39543 total profit our december success rates are 106034 total profit our january success rates are 356084 total profit our february success rates are 388935 total profit next pump ⏳date 1 march ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profi ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-28 17:41:05+00:00 1.0 1240071142 5181 new binance pump announcement ⏳date 1 march ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit our next pump will be in 48 hours from now after the huge success of nxs and continued growth of our group we will pump again this weekend using the same methods same time same place new coin same story last pump we combined the power of several channels to overpower the market and dominate all trades the results from this were amazing this time we will be posting our coin in even more places to further extend the reach of our pump and set our goals even higher bitcoin has settled to a new level making altcoins are ready to explode altcoins are much easier to push than they were even a week ago traders are eager to jump into green coins and ride them to the top this makes getting outsiders for our pump very easy this pump we will include solid news about the coin supported by major social accounts andor crypto news websites help spread this news to support the longevity of the pump we want this pump to be one of our longest lasting ever our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ 39975 nxs binance 21 february ✅ 8246 rdn binance 22 february ✅ 8636 brd binance 24 february ✅ binance 1 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-26 18:48:12+00:00 1.0 1240071142 5168 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-24 16:55:21+00:00 1.0 1240071142 5166 binance pump starts in 1 hours ready guys do get this seriously understand when over 400k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt exchange binance we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-24 16:00:33+00:00 1.0 1240071142 5165 binance pump starts in 3 hours ready attention guys around 3 hours left alts market is showing very positive move fomo is expected to jump in todays mountain pump 500 pm 1700 gmt for mountain pump signal target 500 exchange binance we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-24 14:05:24+00:00 1.0 1240071142 5163 binance pump starts in 8 hours ready hope u ready for this massive mountain pump event get your binance accounts ready with spare btc this mountain pump signal will also be promoted in twitter with over 400k participants expect 500 gain we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-24 09:02:45+00:00 1.0 1240071142 5153 binance pump starts in 1 hours ready guys do get this seriously understand when over 400k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 1 hr remaining today 5 pm gmt exchange binance international we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-22 16:00:57+00:00 1.0 1240071142 5152 new binance pump announcement ⏳date tomorrow 22th february ⏰time 5 pm gmt exchange binance +26 whale channels target 30 80 profit biggest mountain pump signal is coming tomorrow with more than 400k participants we are going to see the biggest mountain pump ever the volume push will be so hard that it will easily hit 500 get yourself ready for this our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ 39975 nxs binance 21 february ✅ binance february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-21 18:06:11+00:00 1.0 1240071142 5150 today binance pump analysis coin nxs low 2001 high 10000 exchange binance profit 39975 profit pump result 1000 btc volume in a few minutes which is close to 60 million with a peak of 350 amazing pump everyone we are receiving unbelievable amounts of messages of appreciation and we are glad many of you managed to make massive profits in this pump we are officially the biggest pump community in the world our whales did their part once again and pushed the price up to 10000 satoshi for all our members to profit our volume keeps getting bigger every pump and we are confident that in the next pump we will be able to hit 5001000 profit for all our members stay tuned for the next pump announcement our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump wooowww good pump yes yes yesss our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ 39975 nxs binance 21 february ✅ binance february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-21 17:41:15+00:00 1.0 1240071142 5143 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-21 16:55:01+00:00 1.0 1240071142 5138 binance pump starts in 2 hours ready for todays pump our strategy is to overpower the market with massive volume and buying power to crush any early sell orders by over powering them with even more buy orders our tools have been set to rebuy any dips to keep the coin pushing for much longer this method will work great and you will clearly see the difference we will be using the btc pairing on binancecom to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-21 15:03:27+00:00 1.0 1240071142 5135 new binance pump announcement ⏳date 21feb2021 sunday ⏰time 5 pm gmt exchange binance +26 whale channels target 30 80 profit with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-20 20:03:55+00:00 1.0 1240071142 5132 today binance pump analysis coin gvt low 906 high 1651 exchange binance profit 8222 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump with a volume over 100 btc for this pump we peaked gvt at 79 the volume was incredible the peak was incredible the duration to peak will be improved upon and more pumps even better than the last are yet to come our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-20 17:05:36+00:00 1.0 1240071142 5127 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-20 16:55:30+00:00 1.0 1240071142 5124 binance pump starts in 30 mins ready after the coin posts help promote the pump coins by posting it on social media liking rt tweets about the coin youtube comments sharing it in other groups etc this will help drive the pump even more we are very excited for this pump and hope you are all ready for this massive event in 1 hour our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-20 16:32:04+00:00 1.0 1240071142 5117 new binance pump announcement ⏳date saturday feb 20th ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we are growing at an incredible rate meanwhile crypto markets are all pumping this sets us up for a very successful pump saturday our goal is not to reach the highest gain possible our goal is for all members to profit greatly and hold the pump as long as possible we want to buy low pump the coin 70150 and sell high because 70150 is where the most outsiders will buy from us to keep the pump going earning the most people the most profit our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-18 17:51:12+00:00 1.0 1240071142 5114 new binance pump announcement ⏳date 21feb2021 sunday ⏰time 5 pm gmt exchange binance +26 whale channels target 30 80 profit with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-16 20:19:01+00:00 1.0 1240071142 5113 today binance pump analysis coin nebl low 4371 high 10000 exchange binance profit 12878 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ binance february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-13 21:03:08+00:00 1.0 1240071142 5109 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-13 20:55:11+00:00 1.0 1240071142 5104 binance pump starts in 4 hours ready this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignalfebruary13 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together target 800 profit ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-13 17:04:04+00:00 1.0 1240071142 5078 new binance pump announcement ⏳date saturday february 13 ⏰time 9 pm gmt exchange binance +26 whale channels target 80 90 profit we have been pumping quite often this week with most pumps being successful and our members making massive amounts of profits we have been in talks with a few large groups that have done successful 400 pumps in the past and we have decided to combine our power to create one of the biggest and most successful pump in the history of our group in this pump we can guarantee a 500 pump for all our members we will be promoting our pump all over reddit and across all social media hundreds of thousands of people all across the world will attend this pump and we welcome everyone to join us as we create one of the most powerful pump binance has seen lately on top of that many new binance whales will be joining us to make sure every single member in our group will profit we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of wallstreetbets we will be giving out more information about our upcoming pump in the upcoming days stay tuned our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ binance 13 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-06 19:01:20+00:00 1.0 1240071142 5076 today binance pump analysis coin vib low 104 high 688 exchange binance profit 56153 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-05 21:03:54+00:00 1.0 1240071142 5071 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-05 20:55:22+00:00 1.0 1240071142 5064 binance pump starts in 12 hours ready checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have the telegram open have all your social media channels twitter reddit etc open and ready to start the hype the coin will be announced in the pumpsignalfebruary5 and the telegram our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ binance 05 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-05 09:03:34+00:00 1.0 1240071142 5063 new binance pump announcement ⏳date 05feb2021 friday ⏰time 9 pm gmt exchange binance +26 whale channels target 500 800 profit what an insane pump our helper is getting flooded with positive messages todays pump saw a peak of 1600 and is still up a lot as of right now like last pump there is still plenty of upside potential last pump had price swings of 300 the day after because of the enormous amount of positive feedback through discord twitter and other channels we have decided to schedule a new pump the social media campaign has been very effective today more than 1600 btc flowed into sky in the first hour after the call which is insane the next pump will be even bigger we got over 3000 messages of members that only had usdt and did not have btc in their wallet always trade the btc pair our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ binance 05 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact pumpadminroys 2021-02-04 21:01:29+00:00 1.0 1240071142 5061 today binance pump analysis coin fio low 219 high 355 exchange binance profit 6210 profit next pump tomorrow our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ binance 05 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-04 17:05:40+00:00 1.0 1240071142 5055 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-04 16:55:11+00:00 1.0 1240071142 5053 binance pump starts in 1 hours ready understand when over 350k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time pin our channel on top 1 hr remaining today 5 pm gmt ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-04 16:01:18+00:00 1.0 1240071142 5051 binance pump starts in 10 hours ready hope u ready for this massive mountain pump event get your binance accounts ready this time this mountain pump alt will also be promoted in twitter too with over 350k participants expect 500 gain ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-04 07:17:23+00:00 1.0 1240071142 5050 new binance pump announcement ⏳date 4th february ⏰time 5 pm gmt exchange binance +26 whale channels target 500 800 profit biggest mountain pump signal is coming tomorrow with more than 350k participants we are going to see the biggest mountain pump ever the volume push will be so hard that it will easily hit 500 get yourself ready for this tomorrow 4th february 5 pm gmt our february success rates are ✅ 248215 sky binance 03 february ✅ binance 04 february ✅ binance 05 february the social media campaign has been very effective today more than 1600 btc flowed into sky in the first hour after the call which is insane the next pump will be even bigger we got over 3000 messages of members that only had usdt and did not have btc in their wallet always trade the btc pair ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-03 22:20:08+00:00 1.0 1240071142 5047 today binance pump analysis coin sky low 1880 high 48560 exchange binance profit 248215 profit please review our vip channel image above sign up now and dont miss the next pump our february success rates are ✅ 248215 sky binance 03 february ✅ binance 04 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-03 21:11:37+00:00 1.0 1240071142 5038 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-03 20:55:15+00:00 1.0 1240071142 5033 binance pump starts in 5 hours ready this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignalfebruary3 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-03 16:06:54+00:00 1.0 1240071142 5029 binance pump starts in 10 hours ready checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have the telegram open have all your social media channels twitter reddit etc open and ready to start the hype the coin will be announced in the pumpsignalfebruary3 and the telegram ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-03 11:00:21+00:00 1.0 1240071142 5028 new binance pump announcement ⏳date 03feb2021 tuesday ⏰time 9 pm gmt exchange binance +26 whale channels target 500 800 profit f we would pump right now we would lose nearly 50 of the volume waiting 24 hours is more than worth it we hope you understand why postponing the pump is better at this moment we understand everyone was hyped but this is for the better this also gives new us users time to create an account on binance global ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-02 21:33:32+00:00 1.0 1240071142 5016 new binance pump announcement ⏳date 02feb2021 tuesday ⏰time 9 pm gmt exchange binance +26 whale channels target 500 800 profit todays pump saw a peak of 1100 and is still up 120 as of right now additionally there is still plenty of upside potential because of the enormous amount of positive feedback through telegram twitter and other channels we have decided to schedule a new pump the social media campaign has been very effective today more than 110 million usd flowed into pnt in the first hour after the call which is insane the next pump will be even bigger ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact royalpumpadmins 2021-02-01 13:39:01+00:00 1.0 1240071142 5003 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-31 20:55:04+00:00 1.0 1240071142 5002 binance pump starts in 30 mins ready 30 minutes left everybody this is the time we have been waiting for prepare yourself prepare all your social media accounts if we want to have a perfect result all the 320000 members of big pump signal will have to to promote the coin on all the social media platforms do everything you can to get the coin trending use hashtags create youtube videos create tiktoks if we work well together we can push the coin to the moon and beyond 2021-01-31 20:31:18+00:00 1.0 1240071142 5000 binance pump starts in 1 hours ready take this 1 hour to read all the channels and prepare your social media campaign the pump team 2021-01-31 20:01:13+00:00 1.0 1240071142 4999 binance pump starts in 2 hours ready 1 hour and 55 minutes left until the big pump we are getting a lot of questions regarding the trading pair during the pump we will be using the btc trading pair example if the coin is xxx buy the coin with bitcoin on the xxxbtc market start preparing all your social media channels so you can promote the coin instantly at 9 pm gmt 2021-01-31 19:07:54+00:00 1.0 1240071142 4997 binance pump starts in 5 hours ready 1 ten miutes before 9 pm gmt have binancecom telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in the telegram 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can 2021-01-31 16:00:55+00:00 1.0 1240071142 4995 binance pump starts in 6 hours ready ⁉️❓⁉️ big big big binance pump be ready ⁉️❓⁉️ we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc 2021-01-31 15:06:05+00:00 1.0 1240071142 4994 binance pump starts in 9 hours ready with all social media channels combined big pump signal has over 350000 members we might all be small investors but we have an insane social media presence tonight at 9 pm gmt we will coordinately buy hype and push up the price of a coin 2021-01-31 12:03:22+00:00 1.0 1240071142 4992 binance pump starts in 1 day 24 hours ready 1 day 24 hours left until our big pump on binance things are looking great we are confident we have picked the best coin to pump today to attract outsider fomo our whales have given us a target for this pump of more than100 spread the word about our pump 2021-01-29 17:00:15+00:00 1.0 1240071142 4990 new binance pump announcement ⏳date 31jan2021 sunday ⏰time 9 pm gmt exchange binance +26 whale channels target 40 60 profit we just bought the channel soon we will come up with a new vision the first pump date will be january 31st our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ 5057 nxs binance 15 jauary ✅3043 idex binance 17 jauary ✅ 12349 gvt binance 23 jauary ✅ binance 31 jauary 2021-01-27 19:23:00+00:00 1.0 1240071142 4981 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-23 20:54:20+00:00 1.0 1240071142 4979 2 hours left until our big pump on binance a basic explanation of tonights pump have binance discord and telegram open at exactly 9pm gmt there will a call in the pumpsignal23january channel on discord and on the telegram at the same time for example the coin we picked is xxx after we announced the coin buy it and wait for the price to increase in the meanwhile we will push out a lot of social media posts everyone in the group can help us by sharing the coin on their social media reddit posting it twitter and using hashtags head over to socialmediaguide steps to follow for a successful pump 1 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market to not instantly drop 2 keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 3 like mentioned above share positive news about the coin on social media to create an even bigger amount of fomo fear of missing out if we all work together we will be able to create an amazing and healthy pump we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before 2021-01-23 19:03:56+00:00 1.0 1240071142 4975 edit 6 hours left until our big pump on binance 2021-01-23 15:31:04+00:00 1.0 1240071142 4974 6 hours left until our big pump on binance instructions to complete your buy order on time free pump is risky please be careful to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this big pump our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-23 15:01:54+00:00 1.0 1240071142 4968 24 hours left until our big pump on binance let the countdown begin ⏳date january 22 ⏰time 5 pm gmt dont miss the last pump in december were going to build some big pumps in the new year please be careful because free pumps are very risky if you dont want to take risks you can become a vip member 3 days ago or 1 day ago we tell you the name of the coin sign up now and dont lose any more money in 2021 the only way to achieve and gain is to become a vip member we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-21 17:34:26+00:00 1.0 1240071142 4960 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-17 16:55:30+00:00 1.0 1240071142 4959 20 mins left until our big pump on binance our push today is going to be massive the expected target is 80100 we have surpassed 10000 active members and already reached 11000 in the past 2 days we expect this push to be one of the biggest we have done to date be ready get ready for todays big binance pump our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-17 16:40:39+00:00 1.0 1240071142 4956 22 hours left until our big pump on binance to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-16 19:01:01+00:00 1.0 1240071142 4955 new binance pump announcement ⏳date sunday january 17 ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we are ready for our next big push our target for this push will be up to 200 with the success of our previous push we expect our volume to be much bigger as well our group has grown a lot as we have gained thousands of new members over the past few days we welcome everyone to join us as we create the ultimate mega push binance has been waiting for in our last push we mentioned that we would have our big whale push the price up for us after our members bought we will be doing the same thing in this upcoming push to make sure all our members make a good profit our expectations for this push are big we want multiple waves and a action packed push with multiple opportunities to make profit we will be giving out more information about our upcoming push before the push stay tuned our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ 5057 nxs binance 15 jauary ✅ binance 17 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-15 18:22:43+00:00 1.0 1240071142 4944 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-15 16:55:53+00:00 1.0 1240071142 4943 we will be using the btc pair only for this push make sure you are using btc to buy the coin 10 minutes left until our big push 2021-01-15 16:50:07+00:00 1.0 1240071142 4942 1 hours left until our big pump on binance our push today is going to be massive the expected target is 80100 we have surpassed 10000 active members and already reached 11000 in the past 2 days we expect this push to be one of the biggest we have done to date be ready get ready for todays big binance pump our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-15 16:00:12+00:00 1.0 1240071142 4940 22 hours left until our big pump on binance to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-14 19:00:54+00:00 1.0 1240071142 4939 new binance pump announcement ⏳date friday 15 january ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ binance 15 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-13 17:06:54+00:00 1.0 1240071142 4932 new binance pump announcement ⏳date friday 15 january ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ binance 15 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-12 16:00:59+00:00 1.0 1240071142 4925 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-11 15:58:28+00:00 1.0 1240071142 4922 new binance pump announcement ⏳date 11 january ⏰time 4 pm gmt exchange binance +26 whale channels target 60 90 profit as you can see alt markets are picking up people started investing in altcoins exactly three years back this was the time where alts made 4x7x growth in a couple of days but this time we are with you after thoroughly scanning all the alts we will post the next possible multibagger her on 11th jan 4 pm gmt the titanium signal our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ binance 11 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-10 19:28:34+00:00 1.0 1240071142 4914 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-10 16:55:29+00:00 1.0 1240071142 4908 new binance pump announcement ⏳date sunday 10 january ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ binance 10 jauary ✅ binance 11 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-10 09:13:02+00:00 1.0 1240071142 4900 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-09 20:55:33+00:00 1.0 1240071142 4895 3 hours left until our big pump on binance target 260 360 profit todays pump is going to be very very big our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-09 18:07:02+00:00 1.0 1240071142 4891 new binance pump announcement ⏳date 09 january 2020 ⏰time 9 pm gmt exchange binance +26 whale channels target 260 360 profit we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ binance 09 jauary ✅ binance 11 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-08 19:03:05+00:00 1.0 1240071142 4889 today binance pump analysis coin rcn low 48 high 70 exchange binance profit 4583 profit amazing push on vib our volume was great and it managed to hold the top at 70 for a few minutes meaning most of our members were able to sell at a good profit our pushes are getting better lately and we expect them to keep getting better we have done 120 on idex which by the way is still trending today and could still go for another big push our next push we will attempt to do something similar with a target of almost 100 our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ binance 09 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-08 18:03:26+00:00 1.0 1240071142 4887 ✔️ill share detailed analysis soon get ready for the new pump date this ones going to be huge 2021-01-08 17:04:32+00:00 1.0 1240071142 4883 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-08 16:54:36+00:00 1.0 1240071142 4878 4 hours left until our big pump on binance to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-08 12:03:00+00:00 1.0 1240071142 4876 new binance today pump announcement ⏳date 08 january 2020 ⏰time 5 pm gmt exchange binance +26 whale channels target 60 160 profit 6 hours left until our big pump on binance please be careful because free pumps are very risky if you dont want to take risks you can become a vip member 3 days before or 1 day before we tell you the name of the coin sign up now and dont lose any more money in 2021 the only way to achieve and gain is to become a vip member our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ binance 08 jauary ✅ binance 09 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-08 10:17:41+00:00 1.0 1240071142 4873 today binance pump analysis coin rcn low 122 high 363 exchange binance profit 19754 profit it goes without saying but the rcn pump went up too quickly and did not sustain its value for long enough the devs are pulling apart the order book for rcn to see why this could have happened so fast if perhaps there were hidden iceberg orders or a whale purposely dumping on our pump to hurt the group we hope most members realized we were in the expected gain and sold quickly to ensure profit there was some good to this pump as well the good 1️⃣ rcn went up from 141 to 363 sats which is over 157 this is even higher than our expected gain 2️⃣ over 60 btc of volume was added to rcn roughly 22 million our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ binance 09 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-07 21:06:26+00:00 1.0 1240071142 4866 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-07 20:55:10+00:00 1.0 1240071142 4862 todays flash pump 3 hours left until our big pump on binance ⏳date today ⏰time 2100 gmt 4pm est exchange binance +30 whale channels target 80 160 profit exchange binance com not binance us we saw a great profit opportunity today were going to have a great pump our vip members purchased it during the day the pump will start in three hours please follow the countdown in addition tomorrows pump which we shared above is active were going to have another pump tomorrow but first lets start the countdown to our pump which begins in three hours we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-07 18:00:33+00:00 1.0 1240071142 4860 new binance pump announcement 24 hours left until our big pump on binance please be careful because free pumps are very risky if you dont want to take risks you can become a vip member 3 days before or 1 day before we tell you the name of the coin sign up now and dont lose any more money in 2021 the only way to achieve and gain is to become a vip member ⏳date friday 08 january ⏰time 5 pm gmt exchange binance +26 whale channels target 30 60 profit our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 07 jauary ✅ binance 08 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-07 17:03:19+00:00 1.0 1240071142 4857 today binance pump analysis coin ctxc low 217 high 435 exchange binance profit 10046 profit our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 07 jauary ✅ binance 08 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-07 16:09:41+00:00 1.0 1240071142 4853 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-07 15:57:22+00:00 1.0 1240071142 4847 24 hours left until our big pump on binance only 24 hours to go until pump time we pump on binance in the btc market you will need bitcoin to use to trade for our target coin altcoins are on fire today which sets up our pump perfectly all this new money flowing into altcoins will also flow into our coin tomorrow we expect whichever coin we do to rise over 100 and sustain most of this rise for some time the markets are looking that good if you have not yet seen our howtopump guide please familiarize yourself with our methods they have worked over 90 times and will work incredibly well again tomorrow we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-06 21:03:57+00:00 1.0 1240071142 4845 new binance pump announcement we have decided to postpone our push to protect all our members and make sure our push goes according to plan the new date will be as following ⏳date 7 january and 8 january ⏰time 4 pm gmt or 9 pm gmt exchange binance +26 whale channels target 30 60 profit our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ binance 07 jauary ✅ binance 08 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-06 16:40:45+00:00 1.0 1240071142 4837 new binance pump announcement ⏳date 7 january and 8 january ⏰time 5 pm gmt exchange binance +26 whale channels target 30 60 profit unlucky for us the mda whale dumped us we tried to recover the price many times but the sell pressure was too much finally did manage to do a peak of 18 after we announced the signal and wednesday you will recover all your losses and profit more you can be sure of that we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very very huge stay tuned our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ binance 07 jauary ✅ binance 08 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-03 19:02:27+00:00 1.0 1240071142 4835 today binance pump analysis coin mda low 1606 high 2652 exchange binance profit 5664 profit he result of todays push was unexpected we saw alot of good activity interest and support on mda and decided it was a good time to push it with our group unfortunately we were a little bit unlucky and the previous whales that were in this coin have sold on us we tried to bring it back up but the sell pressure was just too much we were able to reach a peak of 18 before the drop luckily in our next push we will make sure that this doesnt happen again we will stay try to aim for 200 in our next one to recover from mda our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-03 17:07:27+00:00 1.0 1240071142 4830 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-03 16:55:19+00:00 1.0 1240071142 4824 8 hours left until our big pump on binance 8 hours left until our big pump on binance things are looking great we are confident we have picked the best coin to pump today to attract outsider fomo our whales have given us a target for this pump of more than100 spread the word about our pump we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-03 09:04:54+00:00 1.0 1240071142 4823 new binance pump announcement ⏳date sunday 03 january ⏰time 5 pm gmt exchange binance +26 whale channels target 30 60 profit we completed december with 11 pumps our total profit rate for december 106034 profit its the biggest monthly profit rate weve ever earned our vip members entered 2021 very happily due to this profit rate invest in your future and send me a message immediately january pumps begin our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ binance 03 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-02 22:20:02+00:00 1.0 1240071142 4813 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-02 20:55:29+00:00 1.0 1240071142 4807 7 hours left until our big pump on binance ⏳date saturday 02 january ⏰time 9 pm gmt today pumps things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the push team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-02 14:01:37+00:00 1.0 1240071142 4805 new binance 2 pump announcement ⏳date saturday 02 january ⏰time 9 pm gmt exchange binance +26 whale channels target 30 60 profit we completed december with 11 pumps our total profit rate for december 106034 profit its the biggest monthly profit rate weve ever earned our vip members entered 2021 very happily due to this profit rate invest in your future and send me a message immediately january pumps begin our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ binance 02 jauary 9 pm gmt ✅ binance 03 jauary 5 pm gmt our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2021-01-01 14:57:20+00:00 1.0 1240071142 4803 today binance pump analysis coin idex low 116 high 270 exchange binance profit 13275 profit amazing pump on idex around 200 btc volume with a peak of 120 after giving the signal the amount of good messages we are getting is amazing we have to say we gained alot of experience pumping idex and we will have to make a few changes that will give everyone even more profits on the next pump next pump we will target anywhere from 200 to possibly 400 depending on the market we will be posting the video of the pump shortly this way everyone can be prepared for the next pump the last pump of 2020 was incredible the entire cryptocurrency community will talk about us very soon i will share the pump date for january 2021 our vip members won huge profit rates in january soon ill share our total profit rate our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ 3529 vib binance 20 december ✅ 4166 nas binance 23 december ✅ 3875 evx binance 26 december ✅ 60266 dlt binance 26 december omg ✅ 2845 evx binance 29 december ✅ 13275 idex binance 31 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-31 17:17:24+00:00 1.0 1240071142 4796 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-31 16:55:22+00:00 1.0 1240071142 4794 30 mins left until our big pump on binance instructions to complete your buy order on time free pump is risky please be careful to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this big pump vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-31 16:31:58+00:00 1.0 1240071142 4792 3 hours left until our big pump on binance 3 hours left until our big pump on binance things are looking great we are confident we have picked the best coin to pump today to attract outsider fomo our whales have given us a target for this pump of more than100 spread the word about our pump we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-31 14:06:11+00:00 1.0 1240071142 4791 6 hours left until our big pump on binance our mission during the push 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 5075 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 75 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media we will send you 25 post which you can directly copypaste about good charting and info to buy the coin 3 our principal mission is to push the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and push to a new higher this time we are sure that we will push to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the push this could be up to an hour or more we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-31 11:01:20+00:00 1.0 1240071142 4790 24 hours left until our big pump on binance let the countdown begin ⏳date thursday 31 december 2020 ⏰time 5 pm gmt dont miss the last pump in december were going to build some big pumps in the new year please be careful because free pumps are very risky if you dont want to take risks you can become a vip member 3 days ago or 1 day ago we tell you the name of the coin sign up now and dont lose any more money in 2021 the only way to achieve and gain is to become a vip member we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-30 17:00:32+00:00 1.0 1240071142 4781 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-29 17:55:06+00:00 1.0 1240071142 4780 30 mins left until our big pump on binance instructions to complete your buy order on time free pump is risky please be careful to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this big pump vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-29 17:30:45+00:00 1.0 1240071142 4777 3 hours left until our big pump on binance our mission during the push 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 5075 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 75 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media we will send you 25 post which you can directly copypaste about good charting and info to buy the coin 3 our principal mission is to push the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and push to a new higher this time we are sure that we will push to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the push this could be up to an hour or more we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-29 15:04:10+00:00 1.0 1240071142 4776 24 hours left until our big pump on binance ⏳date tuesday 29 december ⏰time 6 pm gmt things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the push team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-28 18:00:37+00:00 1.0 1240071142 4775 new binance pump announcement ⏳date tuesday 29 december ⏰time 1800 pm gmt exchange binance +26 whale channels target 30 60 profit great news for all to celebrate this great altseason our whales decided to organize a globalfomocall backed by our whales which is sitting on fking bottom and waiting for a kick to moon on binance exchange our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ 3529 vib binance 20 december ✅ 4166 nas binance 23 december ✅ 3875 evx binance 26 december ✅ 60266 dlt binance 26 december omg ✅ binance 29 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-27 11:29:05+00:00 1.0 1240071142 4773 today binance pump analysis coin dlt low 150 high 1054 exchange binance profit 60266 profit omgggggg tomorrow the entire cryptocurrency community will talk about us weve proven to be the big pump community in the worldits the biggest pump of late this was an amazing pump the pump started at 000000160 and went all the way to 000001054 ideally it should have gone a little bit lower which will make it more sustainable nevertheless more than 90 of the group has made big profits a lot of people have shared screenshots which we will send in a new channel in the discord dlt is still 100 up which is amazing a new pump will be announced soon our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ 3529 vib binance 20 december ✅ 4166 nas binance 23 december ✅ 3875 evx binance 26 december ✅ 60266 dlt binance 26 december omg our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-26 21:16:30+00:00 1.0 1240071142 4765 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-26 20:56:00+00:00 1.0 1240071142 4764 30 mins left until our big pump on binance instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this big pump vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-26 20:30:11+00:00 1.0 1240071142 4762 new binance pump announcement ⏳date 26122020 today pump ⏰time 9 pm gmt exchange binance +26 whale channels target 80 120 profit our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ 3529 vib binance 20 december ✅ 4166 nas binance 23 december ✅ 3875 evx binance 26 december ✅ binance 26 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-26 19:32:42+00:00 1.0 1240071142 4755 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-26 17:55:14+00:00 1.0 1240071142 4753 3 hours left until our big pump on binance first pump of the day things are getting hot market looks good u can join the 100 gainer party all of binance will take notice this push which is about to start in 60 mins we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-26 15:07:00+00:00 1.0 1240071142 4751 6 hours left until our big pump on binance first pump of the day things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the push team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-26 12:00:39+00:00 1.0 1240071142 4750 8 hours left until our big pump on binance first pump of the day ⏳date 26122020 ⏰time 6 pm gmt and 9 pm gmt today pumps get ready for todays big big big binance pump vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-26 10:00:17+00:00 1.0 1240071142 4747 new binance pump announcement ⏳date 26122020 ⏰time 6 pm gmt and 9 pm gmt exchange binance +26 whale channels target 80 120 profit were organizing two pumps on 26 august one will be at 6pm gmt and the other at 9pm gmt for the first time in the history of the pump we are organizing 2 pumps on the same day our last push we did 22 on nas where a lot of outsiders joined the push and the high was hit 6min after we announced the signal so every of our members profited our target for the saturday push is +50 this push is free for everyone everyone will get a coin at the same time we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very very huge stay tuned our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ 3529 vib binance 20 december ✅ 4166 nas binance 23 december ✅ binance 26 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-24 15:45:48+00:00 1.0 1240071142 4745 today binance pump analysis coin nas low 120 high 170 exchange binance profit 4166profit todays pump was really amazing it was the best pump of recent memory both vip members and our free members made a profit everybody won today im so happy im really happy were a great family wow very good push on nas we are backing to pushes from few months ago its very good thing the next push will be very soon and we really want to hit 50+ this time so guys buy more btc prepare your teams and enjoy profits we are working hard on our discord everyday and he will be opened in few days congratulations to everyone guys good pumps our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ 3529 vib binance 20 december ✅ 4166 nas binance 23 december ✅ binance december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-23 18:13:47+00:00 1.0 1240071142 4736 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-23 17:55:41+00:00 1.0 1240071142 4732 2 hours left until our big pump on binance things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the push team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-23 16:01:34+00:00 1.0 1240071142 4726 new binance pump announcement ⏳date wednesday 23 december ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit this push is free for everyone everyone will get a coin at the same time we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very very huge stay tuned our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ 3529 vib binance 20 december ✅ binance 23 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-20 21:18:19+00:00 1.0 1240071142 4717 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-20 17:55:23+00:00 1.0 1240071142 4711 5 hours left until our big pump on binance things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the push team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-20 13:00:12+00:00 1.0 1240071142 4708 new binance pump announcement ⏳date sunday 20 december ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit this push is free for everyone everyone will get a coin at the same time we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very very huge if you dont want to take risks we give you the coin name 1 day or 3 day before please send a message from us to find out the coin name pump coini will be announced on our vip channel in two hour stay tuned our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ binance 20 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-18 18:27:34+00:00 1.0 1240071142 4705 today binance pump analysis coin nebl low 2307 high 2850 exchange binance profit 2353 profit amazing push on nebl around 40 btc traded after giving the signal at 2574 it hitted few times 2850 with a 12 profit peak congratulations for all members stay tuned next push soon guys good pumps our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ 2353 nebl binance 15 december ✅ binance december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-15 18:07:42+00:00 1.0 1240071142 4699 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-15 17:55:21+00:00 1.0 1240071142 4691 24 hours left until our big pump on binance ⏳date tuesday 15 december ⏰time 6 pm gmt we have new members i want to welcome you all we continue our pumps rapidly with our major investor partners whale channels and vip members our new members can see our success rates by going up the channel see for yourself that we are the worlds big pump channel tomorrow at this sharing time our pump signal will start follow the countdown be sure to watch or join if you dont want to take risks we give you the coin name 1 day or 3 day before please send a message from us to find out the coin name pump coini will be announced on our vip channel in two hour we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-14 18:00:16+00:00 1.0 1240071142 4688 new binance pump announcement ⏳date tuesday 15 december ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december has just started and we will do our 4th big push this weekend the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our vip members have won the total of the following profit rates 39543 profit you can join our team for new achievements in december our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ binance 15 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-12 14:18:13+00:00 1.0 1240071142 4683 today binance pump analysis coin pivx low 1918 high 2325 exchange binance profit 2122 profit the pump stayed up for eight minutes amazing push on pivx the price made a new high after 11 minutes so everyone that bought when we signaled it made profit the volume was huge around 50btc and a lot of outsiders joined the push the next push will be very soon and it will be something big our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ 2122 pivx binance 11 december ✅ binance december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-11 18:14:15+00:00 1.0 1240071142 4675 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-11 17:55:10+00:00 1.0 1240071142 4667 new binance pump announcement ⏳date friday 11 december 2020 ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit our vip members have won the total of the following profit rates 39543 profit you can join our team for new achievements in december please follow our countdowns keep in mind that joining the free pump carries risks if you do not want to take risks please become a vip member we give you the name of the coin 1 day ago or 3 days ago youre buying it in advance we give you a 247 special counsel hell give you all the technical information invest in your future and contact us our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ binance 11 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact bigbinancepumpadmins 2020-12-09 17:00:58+00:00 1.0 1240071142 4655 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-06 17:55:34+00:00 1.0 1240071142 4654 15 mins left until our big pump on binance the market is amazing the push of today is going to be something very very big login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast rebuy the dips hold for maximum profit huge fomo warming up vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-06 17:45:03+00:00 1.0 1240071142 4652 3 hours left until our big pump on binance things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the push team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-06 15:00:36+00:00 1.0 1240071142 4649 9 hours left until our big pump on binance dear members around 9 hours left until the big binance pump this is an important post first a basic explanation of tonights pump have binance telegram open at exactly 6 pm gmt there will a call in the pumpsignal channel for example the coin we picked is xxx after we announced the coin buy it and wait for the price to increase in the meanwhile we will push out a lot of social media posts we have a big reach everyone in the group can help us by sharing the coin on their social media reddit posting it twitter and using hashtags this so called social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea some basics 1 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 2 keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 3 we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out the pump team we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-06 09:02:38+00:00 1.0 1240071142 4646 new binance pump announcement ⏳date sunday 06 december ⏰time 6 pm gmt exchange binance +26 whale channels target 30 50 profit tomorrow the pump will be incredible its going to be the biggest pump of late our vip members have won the total of the following profit rates 39543 profit you can join our team for new achievements in december our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ binance 6 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-12-05 12:18:28+00:00 1.0 1240071142 4637 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-04 22:55:04+00:00 1.0 1240071142 4634 1 hours left until our big pump on binance want to lose money in bitcoin or do you want to make money in 15 minutes you never know if bitcoin will fall but were telling you the coin name the day before we guarantee a profit ratio invest in your future or get ready to lose because you can never compete with whales join us and be a real whale we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-04 22:00:50+00:00 1.0 1240071142 4630 9 hours left until our big pump on binance dear members around 9 hours left until the big binance pump this is an important post first a basic explanation of tonights pump have binance telegram open at exactly 11pm gmt there will a call in the pumpsignal channel for example the coin we picked is xxx after we announced the coin buy it and wait for the price to increase in the meanwhile we will push out a lot of social media posts we have a big reach everyone in the group can help us by sharing the coin on their social media reddit posting it twitter and using hashtags this so called social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea some basics 1 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 2 keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 3 we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out the pump team we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-04 14:20:47+00:00 1.0 1240071142 4620 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-02 17:55:06+00:00 1.0 1240071142 4617 15 mins left until our big pump on binance the binance pump will start in 15 minutes please follow the countdown login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast rebuy the dips hold for maximum profit premium member contact bigbinancepumpadmins 2020-12-02 17:45:19+00:00 1.0 1240071142 4616 1 hours left until our big pump on binance things are getting hot market looks good u can join the 100 gainer party all of binance will take notice this push which is about to start in 60 minutes we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact bigbinancepumpadmins 2020-12-02 17:01:20+00:00 1.0 1240071142 4611 24 hours left until our big pump on binance we have new members i want to welcome you all we continue our pumps rapidly with our major investor partners whale channels and vip members our new members can see our success rates by going up the channel see for yourself that we are the worlds big pump channel tomorrow at this sharing time our pump signal will start follow the countdown be sure to watch or join if you dont want to take risks we give you the coin name 1 day ago please send a message from us to find out the coin name pump coini will be announced on our vip channel in an hour our december success rates are ✅ binance 2 december ✅ binance 3 december we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-12-01 18:10:51+00:00 1.0 1240071142 4609 new binance pump announcement ⏳date wednesday 02 december ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates 39543 profit you can join our team for new achievements in december our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ 2419 appc binance18november ✅ 2167 mda binance 27 november —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ binance 2 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-29 11:45:02+00:00 1.0 1240071142 4606 today binance pump analysis coin mda low 2856 high 3475 exchange binance profit 2167profit good pump the pump continues to be resistant 8 minutes later hes back on the youre great edit 16 minutes later the 2 wave began is the rise woooowww amazing pump fomo 2205 profit our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ 2419 appc binance18november ✅ 2167 mda binance 27 november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-27 21:08:53+00:00 1.0 1240071142 4599 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-27 20:55:08+00:00 1.0 1240071142 4596 1 hours left until our big pump on binance things are getting hot market looks good u can join the 60 gainer party all of binance will take notice this push which is about to start in 60 minutes vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-27 20:00:29+00:00 1.0 1240071142 4593 3 hours left until our big pump on binance less than 3 hours left until bigpushcallbang ‼️ things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the push team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-27 18:00:42+00:00 1.0 1240071142 4577 today binance pump analysis coin appc low 124 high 154 exchange binance profit 2419 profit the pump continues to be resistant 10 minutes later hes back on the youre great the advantages of being a vip member are very important please invest in your future and join our team the pump was amazing today all our vip members made a profit its going great this month our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ 2419 appc binance 18 november ✅ binance november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-18 18:10:10+00:00 1.0 1240071142 4570 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-18 17:55:08+00:00 1.0 1240071142 4565 4 hours left until our big pump on binance our whales are more than ready… are you btc crossed to 179k and alts dumped hard is the perfect moment to push be ready at 6pm gmt today read the push plan in the pinned post less than 4 hours left until the bigpushcallbang we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-18 14:00:08+00:00 1.0 1240071142 4557 new binance pump announcement ⏳date wednesday 18 november ⏰time 6 pm gmt exchange binance +26 whale channels target 80 90 profit this push is free for everyone everyone will get a coin at the same time we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tuned our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ binance 18 november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-15 12:25:19+00:00 1.0 1240071142 4555 today binance pump analysis coin bcpt low 115 high 157 exchange binance profit 3652 profit the pump continues to be resistant 10 minutes later hes back on the youre great the advantages of being a vip member are very important please invest in your future and join our team the pump was amazing today all our vip members made a profit its going great this month our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ binance november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-14 18:10:43+00:00 1.0 1240071142 4549 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-14 17:55:54+00:00 1.0 1240071142 4536 new binance pump announcement ⏳date saturday 14 november ⏰time 1800 pm gmt exchange binance +26 whale channels target 80 90 profit we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tuned our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november amazing ✅ binance 14 november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-10 14:44:30+00:00 1.0 1240071142 4527 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-09 15:57:01+00:00 1.0 1240071142 4514 new binance pump announcement ⏳date monday 9 november ⏰time 4 pm gmt exchange binance +26 whale channels target 90 160 profit trust is very important in the vip membership system ask us for evidence for the latest pump the nxs coin well give you the information take advantage of discount opportunities for vip membership and send messages now are u ready for the next mountain alt its gonna be huge and a sure 80 gainer alts are having very very less volume and all of them are going to pump hard from this level btc is now resting best time for 80 mountain alt signal monday | 9th nov 4 pm gmt stay tuned✌️ our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ binance 9 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmins 2020-11-08 09:14:10+00:00 1.0 1240071142 4506 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-06 19:58:19+00:00 1.0 1240071142 4504 15 mins left until the binance pump everyone 15 mins left… until bigpushcallbang login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast rebuy the dips hold for maximum profit huge fomo warming up vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin target 100+ 2020-11-06 19:45:28+00:00 1.0 1240071142 4502 1 hours left until the binance pump things are getting hot market looks good u can join the 100 gainer party all of binance will take notice this push which is about to start in 60 mins today 6th nov 20 pm gmt read the push plan in the pinned post vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-06 19:04:30+00:00 1.0 1240071142 4495 new binance pump announcement ⏳date friday 6 november ⏰time 2000 pm gmt exchange binance +20 whale channels target 30 60 profit the pump today was amazing we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tuned stay tuned✌️ our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ binance 6 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-05 18:19:52+00:00 1.0 1240071142 4489 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-05 15:55:54+00:00 1.0 1240071142 4485 3 hours left until our big pump on binance feeling excited the strong reversal alt is coming only 3h left 4 pm gmt today vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-05 13:04:37+00:00 1.0 1240071142 4483 new binance pump announcement ⏳date tomorrow november 5 ⏰time 4pm gmt exchange binance +20 whale channels target 30 60 profit the pump today was amazing strong reversal alt tommorow at 4pm gmt nov 5th bitcoin dominance is looking healthy for now and alts are settling or even reversing from the recent dips these conditions are optimal to take dip entries altcoins at low levels with little resistance to spike extremely high with an easy ride to the top due to these factors we expect upcoming strong reversal alt to peak higher and gain a lot of outside attention stay tuned✌️ our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ binance 5 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-04 20:00:33+00:00 1.0 1240071142 4479 today binance pump analysis coin appc low 230 high 301 exchange binance profit 3086 profit pump result around 200 btc traded with a 215 profit peak it peaked multiple times 3 minutes after the signal was sent liquidity is very low right now we believe that is why it has gone down below 250 after our pump ended we hope binance can fix this issue soon and we hope many of you managed to sell at 300 our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ binance 5 november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-04 17:06:53+00:00 1.0 1240071142 4472 next post will be the binance coin 5 mins to the binance pump time to shake the market up i̇ç login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-04 16:54:38+00:00 1.0 1240071142 4470 our whales are ready are you ready 15 minutes left be ready to buy when we announce the coin that will get pumped 2020-11-04 16:46:31+00:00 1.0 1240071142 4468 2 hours 30 mins left until our big pump on binance be ready to buy the pump coin on binance at exactly 1700 pm gmt our target is high our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ binance 4 november ✅ binance 5 november vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-04 14:33:04+00:00 1.0 1240071142 4467 24 hours left until our big pump on binance be sure to watch our pump tomorrow you wont believe your eyes our mission during the push 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 5075 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 75 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media we will send you 25 post which you can directly copypaste about good charting and info to buy the coin 3 our principal mission is to push the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and push to a new higher this time we are sure that we will push to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the push this could be up to an hour or more if you dont want to take risks you can become our vip member we named it coin a day ago thats a big advantage our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ binance 4 november tomorrow 4st nov 1700 pm gmt vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-03 17:00:16+00:00 1.0 1240071142 4464 new binance pump announcement ⏳date wednesday november 4 ⏰time 1700 pm gmt exchange binance +20 whale channels target 30 60 profit the pump today was amazing we are finally ready to pump again our target for this pump will be at least 70 gain altcoins are currently very oversold and alot of people have been waiting for our next pump we see a lot of good opportunities in the market and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently our whales will do their part in the pump and buy after all our members to help pump the price up our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ binance 4 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-02 17:51:48+00:00 1.0 1240071142 4455 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-02 15:55:20+00:00 1.0 1240071142 4453 3 hours left until the binance pump bring the 80 gainer on binance today we think it could happen with toadys mountain alt see u in 3 hrs today | 4 pm gmt vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-02 13:00:33+00:00 1.0 1240071142 4452 6 hours left until the binance pump alts market are showing impressive moves most bleed out alts are pumping today so expect some major movement from our mountain alt signal are u excited enough for our next mountain alt hell yeah right just below 6 hrs remaining today | 4 pm gmt exchange binance we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-02 10:02:41+00:00 1.0 1240071142 4451 new binance pump announcement ⏳date today 2 november ⏰time 4 pm gmt exchange binance +20 whale channels target 30 60 profit 9 hours left until the binance pump hope u guys didnt forget mountain alt signal is happening today our last one dusk did a whopping 2x can the next one be 250 or more we will see 9 hrs remaining today | 4 pm gmt we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-02 07:14:23+00:00 1.0 1240071142 4443 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-01 17:55:01+00:00 1.0 1240071142 4437 2 hours 30 mins left until the binance pump our mission during the push 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 5075 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 75 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media we will send you 25 post which you can directly copypaste about good charting and info to buy the coin 3 our principal mission is to push the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and push to a new higher this time we are sure that we will push to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the push this could be up to an hour or more today 1st nov 1800 pm gmt vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-01 15:34:34+00:00 1.0 1240071142 4435 7 hours left until the binance pump our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon less than 7 hrs left until bigpushcallbang ‼️ today 1st nov 18 pm gmt read the push plan in the pinned post we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-11-01 11:05:53+00:00 1.0 1240071142 4433 new binance pump announcement ⏳date sunday 1 november ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit volume in altcoins is very low the pump will be spectacular on sunday 1 november be sure to watch and join besides our vip membership is now very cheap because the value of bitcoin has fallen its time to join up you can find out the coin name a day in advance dont miss this opportunity we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-30 19:01:36+00:00 1.0 1240071142 4431 today binance pump analysis coin dusk low 296 high 585 exchange binance profit 9763 profit market is on fire and we are approaching 100 btc of volume now is the dip to rebuy if you were waiting wooowwww amazing pump youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-30 16:54:04+00:00 1.0 1240071142 4425 1 hours left until the binance pump things are getting hot market looks good u can join the 250 gainer party which is about to start in 1 hr today 30th oct 4 pm gmt vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-30 15:07:17+00:00 1.0 1240071142 4423 12 hours left until the binance pump today is a special day the mountain alt signal day be prepared to see the next 250+ gainer on binance only 12 hrs left today 30th oct 4 pm gmt vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-30 04:04:03+00:00 1.0 1240071142 4421 heyyy guys new 2 binance pump announcement the mountain alt signal is coming we are going to see 250 + gain on binance 24hrs to see so ⏳date tomorrow 30th october ⏰time 4 pm gmt exchange binance +20 whale channels target 30 60 profit ⏳date sunday 1 november ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-29 16:56:37+00:00 1.0 1240071142 4418 new binance pump announcement ⏳date sunday 1 november ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit volume in altcoins is very low the pump will be spectacular on sunday 1 november be sure to watch and join besides our vip membership is now very cheap because the value of bitcoin has fallen its time to join up you can find out the coin name a day in advance dont miss this opportunity we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-29 13:45:25+00:00 1.0 1240071142 4401 today binance pump analysis coin oax low 563 high 829 exchange binance profit 4724 profit market is on fire and we are approaching 100 btc of volume now is the dip to rebuy if you were waiting wooowwww amazing pump youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-18 18:08:25+00:00 1.0 1240071142 4395 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-10-18 17:55:05+00:00 1.0 1240071142 4386 new binance pump announcement ⏳date sunday october 18 ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit 24 hours left until the push our mission during the push 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 50 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 50 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media we will send you 35 post which you can directly copypaste about good charting and info to buy the coin 3 our principal mission is to push the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and push to a new higher this time we are sure that we will push to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the push this could be up to an hour or more the advantages during the push 1 push bot will market buy 1002500 every 23 seconds to raise the price and create more fomo 2 my bot will market buy 12 every second which will also help create fomo also 3 when the coin submits a crash we will put big limits in the dip and start buying more to repost higher so when you see big walls buy during a dip this is the moment to rebuy 4 members of the best push groups will also be joining us to increase our power even further this is gong to be a huge deal all of binance will take notice things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and follow along closely for rebuying and selling 4 help promote the coin news 5 profit and brag to your friends to help us grow our october success rates are ✅ 5419 rdn binance 17 october ✅ binance 18 october vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-17 18:04:39+00:00 1.0 1240071142 4381 today binance pump analysis coin rdn low 1630 high 2483 exchange binance profit 5419 profit its an amazing pump our vip members bought it a day ago and made a full profit of 5419 o it was a great day you can find out our vip membership options for the next pump send a message right now our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-17 16:04:06+00:00 1.0 1240071142 4376 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-10-17 15:56:17+00:00 1.0 1240071142 4374 2 hours left until the binance pump our goal for todays call is to become binances top gainer and hold there for as long as we can we want all members who join in the call to be able to earn nice profits and be ready for our next call to enter simply watch here in 2 hours and promptly buy the posted coin on binance working together we will pump this coin to our target 50 and profit amazingly this is a pump with strong ta bot everyone has a equal chance to buy low and sell high this service is and always will be free to thank you for being a member here everyone has a equal chance to buy low and sell high stat tuned✌️ we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-17 14:04:18+00:00 1.0 1240071142 4372 21 hours left until the binance pump bitcoin is looking healthy for now and alts are settling or even recovering from the recent dips these conditions are optimal to buy near bottom and sell near peak altcoins are at low levels with little resistance to spike extremely high with an easy ride to the top due to these factors we expect this dip bottom call to peak very high and gain a lot of outside attention tomorrow at 1600 gmt 12 est will be our strong ta pumpdip call weve decided to hold a pumping event tomorrow and sunday ⏳date saturday october 17 ⏰time 1600 gmt exchange binance +20 whale channels target 30 60 profit ⏳date sunday october 18 ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-16 19:00:23+00:00 1.0 1240071142 4369 new binance pump announcement we are planning for a huge weekend ⏳date sunday october 18 ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit pump planned for saturday 1600 gmt coin push planned for sunday 1800 gmt binance is ripe with opportunity and we will fully take advantage of it saturday will be our pump partnered with large telegram groups to make it even larger and more effective sunday will be a huge coin push last one took 22 min to peak near 50 more info on each event will be posted clear your calendars this will be our biggest weekend ever our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ 3719 gvt binance 17 september 18542 total profit vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-10-15 21:44:02+00:00 1.0 1240071142 4353 today binance pump analysis coin gvt low 1312 high 1800 exchange binance profit 3719 profit its an amazing pump our vip members bought it a day ago and made a full profit of 3719 o it was a great day you can find out our vip membership options for the next pump send a message right now dont forget to ask for our vip channel image evidence is always important our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ 3719 gvt binance 17 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-17 18:04:51+00:00 1.0 1240071142 4350 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-09-17 17:55:20+00:00 1.0 1240071142 4349 1 hours left until the binance pump we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profited still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc there is a lot of fomo in altcoin today and its likely we hold our coin up for hours or even days we advise to hold for targets and limit sell withing the expected gain range which will be given with the coin we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-17 17:00:34+00:00 1.0 1240071142 4347 2 hours left until the binance pump the markets are looking great for our pumppush bitcoin is strong and altcoins markets are turning positive today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit conditions are optimal for a pump altcoins are at low levels with little resistance to spike extremely high each of the past 3 days a coin on binance has gone over +700 making investors even more eager to buy the next rising coin we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-17 16:03:46+00:00 1.0 1240071142 4342 48 hours left until the binance pump many altcoins are dipping near key resistance levels the sell walls in all markets are near historic lows which will give us an easier ride to the top due to these factors we expect higher peaks than normal our pump should be able to do 6080 or even more date thursday september 17th time 1800 gmt 2 pm est if we were to repeat our typical volume there are over 10 coins that would go twice as high as usual we have upgraded the hosting of our signal bot and can promise an issue free delivery of the pump signal in addition we are adding hq news sources to promo the coin to keep the push rising and rising for as long as we can we will push this coin higher and longer than ever before our team is committed to make this pump one of the best ever to pump you must have a binancecom account and own btc in order to trade with we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-15 18:30:54+00:00 1.0 1240071142 4341 new binance pump announcement ⏳date september 17th ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit our team is scanning binance for next 2x unicorn sitting in fking dip and waiting for a kick to moon a sweet coin we will pick from the bottom and pump it past the moon be ready with your btc for moonride this is one you will not want to miss we expect a lot of follow up action after our initial pump with lots of profit to be made dip call is coming sept 17th at 4pm gmt‼️ our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ binance 17 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-12 15:08:01+00:00 1.0 1240071142 4337 today binance pump analysis coin qsp low 343 high 494 exchange binance profit 4402 profit its an amazing pump our vip members bought it a day ago and made a full profit of 4402 our free members made a profit of 2020 it was a great day you can find out our vip membership options for the next pump send a message right now dont forget to ask for our vip channel image evidence is always important our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ binance september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-10 18:10:24+00:00 1.0 1240071142 4327 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-09-10 17:55:12+00:00 1.0 1240071142 4321 4 hours left until the binance pump in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits be ready to buy the target coin quickly when it is announced 4 hours from now everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-10 14:06:05+00:00 1.0 1240071142 4319 24 hours left until the pump this will be one of the highest calls we give this year extreme profits are on the way tomorrows pumppush is shaping up to be amazing an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising buy support walls will be added to entice outside orders to join in above it which helps the price rise higher things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-09 18:02:24+00:00 1.0 1240071142 4314 new binance pump announcement ⏳date thursday september 10th ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 30 60 profit the time is here again our next big binance pump family is coming in 48 hours from now we were great on september 6th and september 8th guys we started september great would you like to add another one to this great success then join us and buy your dream lambo soon bitcoin has dropped and altcoins followed the sell resistance in all markets is near historic lows which will give us an easier ride to the top we expect higher peaks than normal due to these factors our pump should be able to do 6080 or even more if we were to repeat our volume from last pump there are over 10 coins that would go twice as high in addition we are adding hq news sources to promo the coin to keep the push rising and rising for as long as we can we will push this coin higher and longer than ever before our team is committed to make this pump one of the best ever to pump you must have a binancecom account and own btc in order to trade with our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ binance 10 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-08 18:03:25+00:00 1.0 1240071142 4312 today binance pump analysis coin stpt low 182 high 262 exchange binance profit 4395 profit its an amazing pump our vip members bought it a day ago and made a full profit of 4395 our free members made a profit of 2395 it was a great day you can find out our vip membership options for the next pump send a message right now our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ stpt binance september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-08 16:09:22+00:00 1.0 1240071142 4303 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-09-08 15:55:18+00:00 1.0 1240071142 4297 new binance pump announcement ⏳date today ⏰time 4pm gmt exchange binance +20 whale channels target 30 60 profit new dip call is coming today at 4pm gmt 8 hours from now⏰ dont forget about the mountain signal that is coming today just need to wait for 8 hrs more today | 4 pm gmt our september success rates are ✅ 6026 qlc binance 6 september ✅ binance 8 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-08 08:00:34+00:00 1.0 1240071142 4294 today binance pump analysis coin qlc low 251 high 242 exchange binance profit 6026 profit its an amazing pump our vip members bought it a day ago and made a full profit of 6026 our free members made a profit of 2620 it was a great day you can find out our vip membership options for the next pump send a message right now dont forget to ask for our vip channel image evidence is always important our september success rates are ✅ 6026 qlc binance 6 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-09-06 16:12:11+00:00 1.0 1240071142 4284 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-09-06 15:55:26+00:00 1.0 1240071142 4265 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-08-25 17:55:06+00:00 1.0 1240071142 4262 1 hours left until the binance pump we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-25 17:01:09+00:00 1.0 1240071142 4260 2 hours left until the binance pump 2 hours left before the pump everyone the markets are looking great for our pumppush today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-25 16:01:22+00:00 1.0 1240071142 4258 4 hours left until the binance pump 4 hours left before our pump on binance com in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-25 14:21:10+00:00 1.0 1240071142 4256 24 hours left until the binance pump exchange binance com date tuesday 1800 gmt 2pm est tomorrows pumppush is shaping up to be amazing an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising buy support walls will be added from multiple sources this time blackout proof to entice outside orders to join in above it which keeps the price rising and rising things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-24 18:02:38+00:00 1.0 1240071142 4253 new binance pump announcement ⏳date tuesday august 25th ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 50 60 profit the time is here our next big pump is coming these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call we all know how well sys ending up doing unbelievable 427 vib almost 70 and ppt almost 50 since then many alts have pumped naturally or off some news our coin will mimic this and we aim to pump it higher than them all in addition we are adding hq news sources again to promo the coin and buy support from multiple sources to keep the push rising and rising for as long as we can to pump you must have a binancecom account and own btc in order to trade with get ready for tuesday this will be historic more info will be posted in the coming days for now please prepare yourself for the push and see our help channels if you havent already our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july ✅ 2230 elf binance 24 july ✅ 8005 vib binance 30 july our august success rates are ✅ 4234 evt binance 2 august ✅ 5642 ppt binance 4 august ✅ binance 25 august we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-22 17:19:10+00:00 1.0 1240071142 4228 today binance pump analysis coin ppt low 2554 high 3995 exchange binance profit 5642 profit today we had some issues with leo internet power outages and found out that our community which is around 40 with usa members had the same issues for the tornado coming unlucky overall it wasnt one of our best pumps and the quality we always provide we will make sure to provide a perfect pump next time as we are always doing hoperfully without that power outages we hope everyone in the us is safe from the hurricane we didnt take into account that weather events could effect our pump this much some users still did very well and good job to you but we dont like pumps peaking in the first minute as ppt did if we were at full volume this would not have happened and you can be sure it will not happen again if you want to invest in your future dont miss this membership opportunitypray our august success rates are ✅ 4234 evt binance 2 august ✅ 5642 ppt binance 4 august our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-08-04 18:09:38+00:00 1.0 1240071142 4221 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-08-04 17:58:13+00:00 1.0 1240071142 4214 new binance pump announcement ⏳date august 4 ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 50 60 profit the time is here again our next big signals pump is coming in one day these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call thursday we all know how well sys ending up doing unbelievable 427 and vib almost 70 bitcoin has been rising pushing the price of most altcoins down this means by pump day whichever coin ends up being our target will be near its bottom and ready to be pushed to the the moon currently there are many good opportunities lots of hype around us from our recent success and an influx of new users to increase our buyingshilling power even further all of these factors will make our next pump even more incredible than the last in addition we are adding hq news sources again to promo the coin to keep the push rising and rising for as long as we can to pump you must have a binancecom account and own btc in order to trade with get ready for tuesday this will be historic once more more info will be posted in the coming days please ready yourself for the push and see our help channels if you havent already we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-03 11:10:46+00:00 1.0 1240071142 4203 next post will be the binance coin 4 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-08-02 15:56:56+00:00 1.0 1240071142 4202 10 minutes left until the dip call login binance have everything ready team the trick to make some amazing profits is be focused to buy fast hold promote the coin profit and brag to your friends expected gain range 100 vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-02 15:49:18+00:00 1.0 1240071142 4196 new binance pump announcement ⏳date august 2 ⏰time 4 pm gmt exchange binance +20 whale channels target 3060 profit after the impressive rally for btc were expecting an even more impressive relief rally in trending alts and you know what our team is scanning binance for next 2x unicorn sitting in fking dip and waiting for a kick to moon a sweet coin we will pick from the bottom and pump it past the moon be ready with your btc for moonride this is one you will not want to miss we expect a lot of follow up action after our initial pump with lots of profit to be made dip call is coming tomorrow at 4pm gmt‼️ global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-08-01 20:21:53+00:00 1.0 1240071142 4187 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-07-30 17:55:11+00:00 1.0 1240071142 4185 3 hours left before our pump on binance in 3 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-30 15:18:35+00:00 1.0 1240071142 4183 24 hours left until the binance pump exchange binancecom date july 30th thursday 1800 gmt 2pm est this next pumppush is shaping up to be among the best we have ever done an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-29 18:00:32+00:00 1.0 1240071142 4177 new binance pump announcement ⏳date july 30 ⏰time 6 pm gmt exchange binance +20 whale channels target 3060 profit the market is going great we found a great coin at our meeting together were seeing a great opportunity were going to have a fomo effect our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july ✅ 2230 elf binance 24 july ✅ binance 30 july global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-26 09:06:38+00:00 1.0 1240071142 4171 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-07-24 16:55:11+00:00 1.0 1240071142 4165 new binance pump announcement ⏳date today july 24 ⏰time 5 pm gmt exchange binance +20 whale channels target 3060 profit alts have been performing unbelievably strong and we all were waiting for this time right well there is also a big signal coming which u might not forget mountain alt signal next potentially 2 3x alt about 5 hrs left today july 24 | 5 pm gmt global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-24 11:58:43+00:00 1.0 1240071142 4150 today binance pump analysis coin nxs low 2235 high 3100 exchange binance profit 3870 profit the pump went on for 5 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-21 16:09:08+00:00 1.0 1240071142 4144 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-07-21 15:55:07+00:00 1.0 1240071142 4142 30 mins left until the binance pump login binance now the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit promote the coin as a united team huge fomo warming up target 2x+ vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-21 15:31:29+00:00 1.0 1240071142 4136 quick alert new 2 binance pump announcement ⏳date july 21tomorrow ⏰time 4 pm gmt 24h left exchange binance +20 whale channels target 4080 profit and ⏳date wednesday july 22 ⏰time 4 pm gmt exchange binance +20 whale channels target 3060 profit a new global fomo call scheduled for tommorow at 4pm gmt as the alt market is on fire more than ready for a new fomo call this trendy call will be big we expect 2x+ spikes in short term this will be a different massive trendy call with a lot of volume fomo be ready this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-20 16:06:13+00:00 1.0 1240071142 4134 new binance pump announcement ⏳date wednesday july 22 ⏰time 4 pm gmt exchange binance +20 whale channels target 3060 profit coin name will be posted on vip channel 24 hours earlier this time we have 4 days to prepare for this pump share our group on social media and invite everyone you our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ binance 21 july ✅ binance 22 july click here to see our older past achievements — link we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-19 15:25:12+00:00 1.0 1240071142 4132 today binance pump analysis coin sys low 345 high 450 exchange binance profit 3043 profit the pump went on for 5 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ binance july our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-16 18:09:58+00:00 1.0 1240071142 4125 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-07-16 17:55:20+00:00 1.0 1240071142 4115 new binance pump announcement ⏳date thursday july 16th ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 80100 profit hi team i hope you like our new channel name and our new logo were back in front of you with very large pump signals in honor of our renewal we will discount prices in our vip memberships register now take advantage of great benefits you can buy 1 day before the pump starts thats a huge advantage the time is here our next push will be a binance pump signal these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call thursday since there has been some time since our last big binance pump we will be releasing as much helpful info as we can in the next few days to make sure everyone is fully prepared to join and profit make sure you own bitcoin now and are ready to transfer it into your binancecom account see our help channels and previous pump results on our link this pump will be even better our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ binance 16 july click here to see our older past achievements — link we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact bigbinancepumpadmin 2020-07-14 16:00:49+00:00 1.0 1240071142 4104 today binance pump analysis coin ctxc low 1185 high 1486 exchange binance profit 2540 profit the pump went on for 5 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-10 17:11:31+00:00 1.0 1240071142 4099 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-07-10 16:57:14+00:00 1.0 1240071142 4095 3 hours left until the binance pump we know its hard to wait when it comes to mountain alt signal chill guys it will come to the given time the binance top gainer will be our todays mountain alt just 3 hrs before the storm mountain alt | 5 pm gmt advice vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-10 14:14:38+00:00 1.0 1240071142 4094 6 hours left until the binance pump every alt is going 3x 5x some even gone up 10x in this alt season the mountain alt which we are gonna share today will be one of those 2x 3x coin stay alert its coming 6 hrs left mountain alt | 5 pm gmt advice vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-10 11:02:30+00:00 1.0 1240071142 4089 new binance pump announcement ⏳date friday july 10th ⏰time 5 pm gmt exchange binance +20 whale channels target 80100 profit we are thrilled to announce that there will be a mountain al signal going to come this friday july 10th as you know our previous mountain alts hit 2x within few hrs so expect something like that or even more from the upcoming one the mountain alt july 10 | 5 pm gmt our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ 5967 qsp binance 12 june ✅ 5030 gxs binance 15 june ✅ 3564 qsp binance 29 july our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ binance 10 july click here to see our older past achievements — link we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-08 08:37:18+00:00 1.0 1240071142 4087 today binance pump analysis coin adx low 1075 high 1400 exchange binance profit 3023 profit the pump went on for 5 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-07 16:07:07+00:00 1.0 1240071142 4080 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-07-07 15:55:49+00:00 1.0 1240071142 4078 40 mins left until the binance pump those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 40 minutes are left for todays 2x strong ta+fa call advice vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-07 15:21:49+00:00 1.0 1240071142 4077 4 hours left until the binance pump todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets our alt whale team is ready and our call will be on top of the binance for next 24h atleast advice vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-07 12:01:05+00:00 1.0 1240071142 4076 6 hours left until the binance pump today at 4pm gmt our whales will push another strong tafa based coin to the moon and you all will be able to make massive profits in short term our previous call oax was a pure gem❤️ well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 12 hours left until the most awaiting strong tafa call backed by our whales‼️ advice vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-07 10:01:11+00:00 1.0 1240071142 4074 new binance pump announcement ⏳date july 7tomorrow ⏰time 4 pm gmt exchange binance +20 whale channels target 80100 profit great news for all to celebrate this great ongoing altseason our whales decided to push most awaiting strong ta+fa call which is sitting on fking bottom and waiting for a kick to moon on binance exchange our previous call gvt was a pure gem were expecting 2x gain in short term this time as big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ 5967 qsp binance 12 june ✅ 5030 gxs binance 15 june ✅ 3564 qsp binance 29 july our july success rates are ✅ 2616 gvt binance 4 june ✅ binance 7 july we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-06 14:30:09+00:00 1.0 1240071142 4071 today binance pump analysis coin gvt low 1203 high 1525 exchange binance profit 2634 profit the pump went on for 8 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our july success rates are ✅ 2616 gvt binance 4 june ✳️ pumping hard on binance ✳️ huge volume spike ✳️ fomo getting in ✳️ top gainer on binance our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-04 16:08:57+00:00 1.0 1240071142 4064 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-07-04 15:55:46+00:00 1.0 1240071142 4060 35 hours left until the binance pump stay online today bcoz you dont wanna miss todays galaxy beast alt and you dont wanna miss massive profits right the wait is about to get over bcoz about 35 hrs left galaxy beast alt today 4th jul | 4 pm gmt advice vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-04 12:30:18+00:00 1.0 1240071142 4058 new binance pump announcement ⏳date 4 july today ⏰time 4 pm gmt exchange binance +20 whale channels target 80100 profit i know youve been waiting a long time market conditions are very important for the pump we decided with our vip members and determined the next pump date by voting method you can join our team we determine the name of coin by voting method join us before its too late we are excited to announce that we are bringing yet another galaxy beast alt this galaxy beast signal will be posted here today at 4 pm gmt our previous calls did very well so expect something big from the upcoming one this one will be best of amongst galaxy beast alt 4 july | 4 pm gmt our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ 5967 qsp binance 12 june ✅ 5030 gxs binance 15 june ✅ 3564 qsp binance 29 july our july success rates are ✅ binance 4 july we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-07-04 09:09:31+00:00 1.0 1240071142 4038 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-06-29 15:55:04+00:00 1.0 1240071142 4033 4 hours left until the binance pump btc recoverd also alts recovering well its the time to buy these alts so we are going to share the galaxy beast alt 4 hrs remaining today | 4 pm gmt advice vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-29 12:07:54+00:00 1.0 1240071142 4027 new binance pump announcement ⏳date 29 jun ⏰time 4 pm gmt exchange binance +20 whale channels target 100200 profit i know youve been waiting a long time market conditions are very important for the pump we decided with our vip members and determined the next pump date by voting method you can join our team we determine the name of coin by voting method join us before its too late we are excited to announce that we are bringing a different type of signal called as galaxy beast alt this galaxy beast signal will be posted here on this coming monday jun 29th the pump will be free for all meaning everyone will receive the signal at the same time this one will be best of these above wait for monday our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ 5967 qsp binance 12 june ✅ 5030 gxs binance 15 june ✅ binance 29 june we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-27 08:07:55+00:00 1.0 1240071142 4015 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-06-15 15:55:03+00:00 1.0 1240071142 4012 binance pump will start in 30 mins time is running faster cant go slow anyways we gotta hurry bcoz everyone is waiting for mountain alt exchange binance only 30 mins remaining mountain alt | 4 pm gmt vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-15 15:31:19+00:00 1.0 1240071142 4010 binance pump will start in 5 hours and 30 minutes do you know what time it is i think you have forgotten its the mountain alt signal day wake up as alts are going to moon the mountain signal will also go the moon today this is coming today guys via hit 188 ctxc hit 220 todays mountain alt250 5 hrs left mountain alt | 4 pm gmt vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-15 10:30:33+00:00 1.0 1240071142 4009 new binance pump announcement ⏳date jun 15th ⏰time 4 pm gmt exchange binance +20 whale channels target 100200 profit here we bring you yet another mountain alt signal which is coming tomorrow the very next mountain alt can be seen with whopping 200 250 ++ gain with massive fomo can we see guys a 250 + mountain alt tomorrow time will tell the pump will be free for all meaning everyone will receive the signal at the same time the mountain alt 15th jun | 4 pm gmt on binance our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ 5967 qsp binance 12 june ✅ binance 15 june vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-14 08:36:43+00:00 1.0 1240071142 4005 today binance pump analysis coin qsp low 187 high 298 exchange binance profit 5967 profit were the best pump channel in the world the pump went on for 10 minutes all our members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ 5967 qsp binance 12 june ✅ binance june ✳️ pumping hard on binance ✳️ huge volume spike ✳️ fomo getting in ✳️ top gainer on binance our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago we have the option to buy premium member contact whalepumpadmins 2020-06-13 16:09:49+00:00 1.0 1240071142 3997 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-06-13 15:55:49+00:00 1.0 1240071142 3995 30 mins left until the binance pump 30 minutes left globalfomocall login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ there will be a pump today and june 15th 4 pm gmt vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-13 15:31:40+00:00 1.0 1240071142 3994 1 hours left until the binance pump those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x globalfomocall vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-13 15:00:23+00:00 1.0 1240071142 3992 6 hours left until the binance pump many of you guys missed recent 2x5x opportunities in this altseason but todays global fomo call will be a big opportunity and you all will be able to make massive profits in short term with our whale team well share a low cap fomo unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until globalfomocall ‼️ vip members have the option to buy 1 day ago premium member contact whalepumpadmins 2020-06-13 10:03:08+00:00 1.0 1240071142 3973 new binance pump announcement ⏳date mon jun 13th ⏰time 4 pm gmt exchange binance +20 whale channels target 100130 profit here we bring you yet another mountain alt signal which is coming tomorrow the very next mountain alt can be seen with whopping 200 250 ++ gain with massive fomo can we see guys a 250 + mountain alt tomorrow time will tell the pump will be free for all meaning everyone will receive the signal at the same time mountain alt mon jun 13th | 4 pm gmt on binance our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ binance 13 june 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-09 19:49:44+00:00 1.0 1240071142 3970 today binance pump analysis coin ppt low 4097 high 7700 exchange binance profit 8794 profit were the best pump channel in the world the pump went on for 20 minutes all our members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our june success rates are ✅ 23857 ctxc binance 3 june ✅ 8794 ppt binance 8 june ✅ binance june ✳️ pumping hard on binance ✳️ huge volume spike ✳️ fomo getting in ✳️ top gainer on binance our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-08 16:22:28+00:00 1.0 1240071142 3957 binance pump will start in 6 or 7 hours what is up guys are you excited todaybut wait what for the excitement is bcoz mountain alt is coming this will have a slow and steady growth we are gonna kill those trading bots can we see 200 + gain today ✅ ong ✅ 108 ✅ via ✅ 188 ✅ ctxc ✅ 220 ✅ ✅will it go for 200++ but its coming with a different strategy to kill bot traders today mountain will be shared within 4 5 pm gmt between this 1 hr anytime wake up mountain alt | 4 5 pm gmt 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-08 10:00:37+00:00 1.0 1240071142 3955 new binance pump announcement ⏳date mon jun 8th ⏰time 4 or 5 pm gmt exchange binance +16 whale channels target 100150 profit good day traders you know what time it is time for yet another mountain alt signal but this time with bit different strategy what is it this time the mountain alt wont come at a fixed time it will come within 4 5 pm gmt you need to stay online and alert in this 1 hr time trading bots wont be able to catch this time our signal our june success rates are ✅ 23857 ctxc binance 3 june ✅ binance 8 june getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-07 08:09:04+00:00 1.0 1240071142 3951 we can guarantee that our next pump will have the same good results as via and ong ctxc was still 220 with over 400 btc in volume which is bigger in terms of gains the only difference is that it went down much quicker because this was a bad coin we will announce the next pump date once we are ready stay tuned 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-03 16:58:01+00:00 1.0 1240071142 3947 the name coin was announced on june 1 check the date information and send us a message for vip membership the next pump is coming soon 2020-06-03 16:10:08+00:00 1.0 1240071142 3941 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-06-03 15:55:13+00:00 1.0 1240071142 3935 6 hours left until the binance pump instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 100150 lets beat this big pump 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-03 10:01:46+00:00 1.0 1240071142 3933 new binance pump announcement ⏳date 3nd june tomorrow ⏰time 400 pm gmt exchange binance +16 whale channels target 100150 profit great news for all the team is back we have collaborated with some of the biggest whales in market for the megamoonsignal celebrating the altseason and waiting for the opportunity to kick to moon alt on binance exchange we are expecting more than 100150 gain this time after our previous nas 90 pump as the collaboration is more bigger and better than ever alts are primed for huge spikes and we belive the fomo will be huge more this time therefore we recommend that you should get in as soon as possible and hold for maximum profit and make sure you have your binance account ready and loaded for tomorrow our may success rates are ✅ 1307 mda binance 4 may ✅ 11134 ong binance 26 may ✅ 21400 via binance 29 may ✅ 9390 nas binance 30 may our june success rates are ✅ binance 3 june getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-02 16:51:35+00:00 1.0 1240071142 3927 new binance pump announcement ⏳date 3nd june tomorrow ⏰time 400 pm gmt exchange binance +16 whale channels target 100150 profit great news for all the team is back we have collaborated with some of the biggest whales in market for the megamoonsignal celebrating the altseason and waiting for the opportunity to kick to moon alt on binance exchange we are expecting more than 100150 gain this time after our previous nas 90 pump as the collaboration is more bigger and better than ever alts are primed for huge spikes and we belive the fomo will be huge more this time therefore we recommend that you should get in as soon as possible and hold for maximum profit and make sure you have your binance account ready and loaded for tomorrow our may success rates are ✅ 1307 mda binance 4 may ✅ 11134 ong binance 26 may ✅ 21400 via binance 29 may ✅ 9390 nas binance 30 may our june success rates are ✅ binance 3 june getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-06-01 16:33:25+00:00 1.0 1240071142 3912 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-05-30 15:55:10+00:00 1.0 1240071142 3911 15 mins left until the binance pump login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit huge fomo warming up advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-05-30 15:45:02+00:00 1.0 1240071142 3905 new binance pump announcement ⏳date may 30 today ⏰time 4 pm gmt exchange binance +16 whale channels target 40 100 profit great news for all to celebrate this great altseason our whales decided to organize a globalfomocall backed by our whales which is sitting on fking bottom and waiting for a kick to moon on binance exchange were expecting more than 100 gain in short term as 20 big whales are working with us and we will make sure to reach more than 100 this time alts are primed for huge spikes and we believe the fomo will be huge therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ our may success rates are ✅ 1307 mda binance 4 may ✅ 11134 ong binance 26 may ✅ 21400 via binance 29 may ✅ binance 30 may getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-29 20:40:56+00:00 1.0 1240071142 3894 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-05-29 15:55:30+00:00 1.0 1240071142 3892 15 mins left until the binance pump market is doing great today the fomo will be attractive login binance and get ready advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-05-29 15:45:18+00:00 1.0 1240071142 3889 4 hours left until the binance pump our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details our may success rates are ✅ 1307 mda binance 4 may ✅ 11134 ong binance 26 may ✅ binance 29 may 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-29 12:11:26+00:00 1.0 1240071142 3888 7 hours left until the binance pump make sure you have btc ready in your binance account check the help channels if you havent before so how do i pump 1 watch for the coin signal at 4 pm gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 85+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-29 09:04:12+00:00 1.0 1240071142 3885 24 hours left until the binance pump its going to be a very very big pump be sure to join while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in pump whales fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple for now all we can say is get ready practise and read all the advice we gave you today is the day that we will stand up and show the whales how to pump a coin vip advantages tired of losing money dont you want to lose when you trade you can make money without risk in 30 minutes at most how is that as a vip member you can make money without risk make your choice the quota for our vip membership is still open 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-28 16:03:25+00:00 1.0 1240071142 3884 new binance pump announcement ⏳date may 29th ⏰time 4 pm gmt exchange binance +16 whale channels target 90 120 profit hope you are having a great day | guess what we are going to bring yet another alt signal tomorrow | may 29th our previous mountain alt 《 ong 》 hit whopping 106 with all targets chased in below 20 mins the next mountain alt 150 stay tuned for more updates our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april ✅ 1174 elf binance 10 april ✅ 3346 gvtbinance 15 april ✅ 1779 bnt binance 24 april our may success rates are ✅ 1307 mda binance 4 may ✅ 11134 ong binance 26 may ✅ binance 29 may getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-28 09:53:15+00:00 1.0 1240071142 3865 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-05-26 15:55:06+00:00 1.0 1240071142 3863 15 mins left until the binance pump market is doing great today the fomo will be attractive 400 pm gmt login binance and get ready advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-05-26 15:45:37+00:00 1.0 1240071142 3862 40 mins left until the binance pump the clock is ticking guys hope you all are staying online final 40 minutes for the mountain alt signal exchange binance 400 pm gmt advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-05-26 15:20:10+00:00 1.0 1240071142 3857 4 hours left until the binance pump as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 400 pm gmt 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-26 12:14:09+00:00 1.0 1240071142 3855 todays binance pump announcemen ⏳date today pump ⏰time 400 pm gmt exchange binance +16 whale channels target 35 50 profit stay alert its only about 5 hrs remaining the mountain alt is on its way by the time keep your btc ready for blast and sell your alts as soon as possible pump will be expected 3050 so be ready with spare btc 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-26 11:03:32+00:00 1.0 1240071142 3841 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-05-04 18:55:02+00:00 1.0 1240071142 3835 25 hours left until the binance pump as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 1900 gmt 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-04 16:30:33+00:00 1.0 1240071142 3834 24 hours left until the binance pump the pump will start once the signal bot posts the coin name here and everyone starts buying the coin will keep rising bc of our spike added volume and other factors see faq if you want to learn more about how it works coin news will also be supplied for everyone to spread around to help promote the coin and push it even higher our method of buying as a team and promoting as a team has worked over 60 times and it will work again tomorrow even better than usual in this market a lot of eyes on crypto right now and we will take full advantage of that our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-03 19:03:01+00:00 1.0 1240071142 3832 new binance pump announcemen ⏳date monday may 4 ⏰time 1900 gmt exchange binance +16 whale channels target 35 50 profit more than 300k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 5080 so be ready with spare btc bitcoin has risen and alts have bottomed out this is the perfect time to pump we can and will do amazing things in this pump our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april ✅ 1174 elf binance 10 april ✅ 3346 gvtbinance 15 april ✅ 1779 bnt binance 24 april 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-05-02 19:28:05+00:00 1.0 1240071142 3820 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-04-24 15:55:26+00:00 1.0 1240071142 3815 new binance pump announcemen ⏳date april 24 ⏰time 4 pm gmt exchange binance +16 whale channels target 35 50 profit more than 300k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 5080 so be ready with spare btc our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april ✅ 1174 elf binance 10 april ✅ 3346 gvtbinance 15 april ✅ binance 24 april 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-23 16:16:39+00:00 1.0 1240071142 3789 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-04-15 15:55:04+00:00 1.0 1240071142 3785 40 mins left until the binance pump todays strong ta call will be biggest till date this means that the coin signal will be at the exact same time for everyone expected spike 5070 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-15 15:20:13+00:00 1.0 1240071142 3782 new binance pump announcemen ⏳date april 15 wednesday ⏰time 4 pm gmt exchange binance +16 whale channels target 35 50 profit everyone as we promised earlier our whales are more than ready to push another strong coin on binance to the moon we will share the coin name today around 4pm gmt so everyone can make maximum benifits in short term the market is more than ready for upcoming strong ta call this free for all call will be big like edo grs we are expecting higher spikes as usual we expect a big second wave as the upcoming call will be supported by big whales global fomo going to join this event rocket we will make sure to reach as high as possible make sure you have your binance account ready and loaded with btc for today our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april ✅ 1174 elf binance 10 april ✅ binance 15 april 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-15 09:20:31+00:00 1.0 1240071142 3772 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-04-10 15:55:23+00:00 1.0 1240071142 3766 7 hours left until the binance pump our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 4hours left until strong ta call share the channel link on friends and telegram chat pages channel link b3vr6ehiuhq advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-10 09:02:28+00:00 1.0 1240071142 3765 new binance pump announcemen ⏳date tuesday 10 april ⏰time 1600 gmt exchange binance +16 whale channels target 65 70 profit getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april ✅ binance 10 april join vip and earn huge +16 whale channels collaboration pumps zero effort required overnight success 100 legit free income 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-08 09:26:14+00:00 1.0 1240071142 3762 today binance pump analysis coin arn low 1382 high 1790 exchange binance profit 2952 profit our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-07 18:06:56+00:00 1.0 1240071142 3757 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus expected gain 4065 2020-04-07 17:55:20+00:00 1.0 1240071142 3754 1 hours left until the binance pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-07 17:16:18+00:00 1.0 1240071142 3753 2 hours left until the binance pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-07 16:06:02+00:00 1.0 1240071142 3752 3 hours left until the binance pump as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304080 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 1800 gmt less than 3 hours left until strong ta call advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-07 15:07:57+00:00 1.0 1240071142 3751 24 hours left until the binance pump as usual this is a free for all pump everyone receives the coin at the same time after our massive 300 btc volume last pump and incredible rise to 73 the pump before we can say with full confidence we expect this next pump to be one of the best ever our goal will be high and high volume but also to hold the coin near peak for as long as possible to do this we ask all members to add buy walls to the coin after you have sold your stack and profited simply place a limit buy for the coin 1015 below the last price if the price drops move your order down this will trick trading bots into adding buys above ours and moving holding the price higher for longer do this after you have already bought and sold for profit this will also cause waves where you can rebuy and resell again for double the profit our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-06 18:05:03+00:00 1.0 1240071142 3750 new binance pump announcemen ⏳date tuesday 7 april ⏰time 1800 gmt exchange binance +26 whale channels target 65 70 profit previous pump information gvt binance pump results peak 3595 massive volume near 100 btc peaking at 35 more than 1 min from the start with a good second wave after the initial drop our coin grs held near 20 for about 10 minutes target 70100 stay tuned for more updates getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community see you 7 april stay tuned 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-05 11:19:23+00:00 1.0 1240071142 3748 today binance pump analysis coin gvt low 1118 high 1520 exchange binance profit 3595 profit our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-04 16:12:53+00:00 1.0 1240071142 3740 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-04-04 15:55:46+00:00 1.0 1240071142 3737 1 hours left until the binance pump as always we are going to see this on binance top gainer list with great volume only 1hours left 400pm1600 gmt for rock bottom whale signal target 70 100 advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-04 15:05:37+00:00 1.0 1240071142 3735 5 hours left until the binance pump our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 5 hours left until strong ta call advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-04 11:20:52+00:00 1.0 1240071142 3732 new binance pump announcemen ⏳date thursday 4 april ⏰time 1600 gmt exchange binance +26 whale channels target 65 70 profit previous pump information grs binance pump results peak 4808 massive volume near 300 btc peaking at 48 more than 2 min from the start with a good second wave after the initial drop our coin grs held near 20 for about 20 minutes highly demanded rock bottom whale signal is schedule at 400pm gmt 0404202 4th april target 70100 stay tuned for more updates getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community see you 4 april stay tuned 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-03 11:55:01+00:00 1.0 1240071142 3729 today binance pump analysis coin grs low 2319 high 3434 exchange binance profit 4808 profit woww we didnt expect such a big rise oh my god everybody made money today im getting great messages youre great i am very happy i think our vip members are rich our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-04-02 16:09:26+00:00 1.0 1240071142 3722 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-04-02 15:55:10+00:00 1.0 1240071142 3719 1 hours left until the binance pump those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x breakout coin advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-02 15:00:09+00:00 1.0 1240071142 3718 4 hours left until the binance pump our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 4hours left until strong ta call advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-02 12:01:16+00:00 1.0 1240071142 3717 6 hours left until the binance pump everyone as promised earlier our whales are more than ready to push another strong coin on binance up to 2x we will share the coin name tomorrow around 4pm gmt so everyone can make maximum benifits in short term the market is more than ready for upcoming strong ta call this free for all call will be big like edo we are expecting 2x spikes we actually expect a big second wave again as the upcoming call will be supported by big whales around 500k people are going to join this event we will make sure to reach as high as possible and will make sure to achieve target 1 within few minutes as we did in our previous calls make sure you have your binance account ready and loaded with btc for today‼️ advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-02 10:02:02+00:00 1.0 1240071142 3716 23 hours left until the binance pump this pump should reflect greatly increased volume and we have secured promotion of our coin news across other social platforms to an audience of 100k crypto enthusiasts this means a large amount of outsiders which is great for our pump remember to buy quickly promote hard and sell for profit we should easily see 40+ and probably much higher join vip and earn huge +16 whale channels collaboration pumps zero effort required overnight success 100 legit free income advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-04-01 17:07:17+00:00 1.0 1240071142 3714 new binance pump announcemen ⏳date thursday 2 april ⏰time 1600 gmt exchange binance +16 whale channels target 35 45 profit previous pump information coin rlc 40 peak first few min50 peak after 18 min and 60 peak 16 min after start great volume and great effort from our whales and everyone out there we will work hard to grow every time so next call will be even bigger than this one peak price 6790 expected gain 44 peak gain 60 getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community see you 2 april stay tuned 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-03-31 18:32:48+00:00 1.0 1240071142 3704 new binance pump analysis coin rlc low 4258 high 6790 exchange binance profit 6049 profit woww we didnt expect such a big rise oh my god everybody made money today im getting great messages youre great i am very happy i think our vip members are rich i shared the vip channel image above our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-03-27 16:14:56+00:00 1.0 1240071142 3700 2 wave amazing pump weve been on top for five minutes everybodys talking about us 2020-03-27 16:05:28+00:00 1.0 1240071142 3689 next post will be the binance coin 10 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-03-27 15:50:20+00:00 1.0 1240071142 3687 1 hours left until the binance pump those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x breakout coin the coin name will come as an image and text advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-27 15:00:40+00:00 1.0 1240071142 3684 3 hours left until the binance pump as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304080 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 1600 gmt advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-27 13:12:10+00:00 1.0 1240071142 3678 new binance pump announcemen ⏳date march 27 ⏰time 1600 gmt exchange binance +16 whale channels target 35 45 profit previous pump information coin edo 40 peak first few min 60 peak after 18 min and 77 peak 26 min after start great volume and great effort from our whales and everyone out there we will work hard to grow every time so next call will be even bigger than this one peak price 2446 expected gain 77 peak gain 73 getting so many positive feedbacks in few minutes of call is so satisfying it feels good to do something for our community see you tomorrow stay tuned 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-03-26 18:20:11+00:00 1.0 1240071142 3676 new binance pump analysis coin edo low 1381 high 2446 exchange binance profit 7711 profit woww we didnt expect such a big rise oh my god everybody made money today im getting great messages youre great i am very happy i think our vip members are rich i shared the vip channel image above our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-03-26 16:40:13+00:00 1.0 1240071142 3670 binance pump analysis coin edo low 1381 high 2058 exchange binance profit 4902 profit 2020-03-26 16:06:13+00:00 1.0 1240071142 3664 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-03-26 15:57:00+00:00 1.0 1240071142 3662 1 hours left until the binance pump vip price 50 discount the discount will only last 1 hour those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x breakout coin the coin name will come as an image and text advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-26 15:03:36+00:00 1.0 1240071142 3659 4 hours left until the binance pump as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 1600 gmt advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-26 11:59:51+00:00 1.0 1240071142 3658 6 hours left until the binance pump alts are showing bullish momentum due to recent btc pump and our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until strong ta call advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-26 10:06:51+00:00 1.0 1240071142 3657 new binance pump announcemen ⏳date march 26 ⏰time 1600 gmt exchange binance +16 whale channels target 35 45 profit great news for all everyone as promised earlier our whales are more than ready to push a strong coin on binance up to 2x we will share the coin name tomorrow at 4pm gmt so everyone can make maximum benifits in short term the market is more than ready for upcoming strong ta call this free for all call will be big we are expecting 2x spikes we actually expect a big second wave this time as the upcoming call will be supported by big whales more than 500k people are going to join this event we will make sure to reach as high as possible and will make sure to achieve target 1 within few minutes as we did in our previous calls make sure you have your binance account ready and loaded with btc for tommorow‼️ advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-25 18:14:59+00:00 1.0 1240071142 3655 binance pump analysis coin nxs low 1975 high 2835 exchange binance profit 4354 profit the pump continued for 10 minutes great we had a really great pump please review the chart above unfortunately only our vip members made a profit it is very advantageous to buy 1 day ago it didnt go well for our members who attended the free pump we miss our old pump days it wasnt bad though our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8march ✅ 6796 poa binance 12 march ✅ 2161 nebl binance 15 march ✅ 1123 bnt binance 17 march ✅ 3030 lun binance 18 march ✅ 2352 tnb binance 21 march ✅ 4379 brd binance 24 march ✅ 4354 nxs binance 25 march our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-03-25 16:08:02+00:00 1.0 1240071142 3647 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-25 15:55:07+00:00 1.0 1240071142 3645 1 hours left until the binance pump get ready today invite your friends this event will be mega stay tuned advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-25 15:03:34+00:00 1.0 1240071142 3637 binance pump analysis coin brd low 1838 high 2643 exchange binance profit 4379 profit the pump continued for 20 minutes great we had a really great pump please review the chart above unfortunately only our vip members made a profit it is very advantageous to buy 1 day ago it didnt go well for our members who attended the free pump we miss our old pump days it wasnt bad though our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8march ✅ 6796 poa binance 12 march ✅ 2161 nebl binance 15 march ✅ 1123 bnt binance 17 march ✅ 3030 lun binance 18 march ✅ 2352 tnb binance 21 march ✅ 4379 brd binance 24 march wow our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago ago we have the option to buy premium member contact whalepumpadmins 2020-03-24 16:25:34+00:00 1.0 1240071142 3625 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-24 15:55:42+00:00 1.0 1240071142 3603 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-21 15:55:37+00:00 1.0 1240071142 3596 new binance pump announcemen ⏳date 21 march ⏰time 1600 gmt exchange binance +16 whale channels target 35 45 profit our pumps continue unabated become a vip member and dont take risks our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8march ✅ 6796 poa binance 12 march ✅ 2161 nebl binance 15 march ✅ 1123 bnt binance 17 march ✅ 3030 lun binance 18 march ✅ binance 21 march advice 1 day ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-19 10:57:26+00:00 1.0 1240071142 3592 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-18 18:55:14+00:00 1.0 1240071142 3585 new binance pump announcemen ⏳date 18 march today ⏰time 9 pm gmt exchange binance +16 whale channels target 35 45 profit the market is in decline but our pump signals have not stopped we havent raised our vip membership price dont miss this opportunity when bitcoin was 10000 our friends who were members regretted it☺️ because we havent raised our membership prices 12 months later when bitcoin rises again dont regret it and sign up now membership is very very cheap our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8march ✅ 6796 poa binance 12 march ✅ 2161 nebl binance 15 march ✅ 1123 bnt binance 17 march ✅ binance 18 march advice 1 day ago ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-17 18:50:32+00:00 1.0 1240071142 3577 only 40 minutes left until binance pump ❗️ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-17 15:22:17+00:00 1.0 1240071142 3576 only 40 minutes left until binance pump ❗️ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-17 15:21:44+00:00 1.0 1240071142 3574 6 hours left until the binance pump instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3050 lets beat this big pump advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-17 10:00:52+00:00 1.0 1240071142 3573 less than 20 hours left binance pump❗️ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-16 20:08:58+00:00 1.0 1240071142 3572 the pump date has been updated the pump starts tomorrow 2020-03-16 19:42:05+00:00 1.0 1240071142 3570 new binance pump announcemen ⏳date 17 march ⏰time 1600 gmt exchange binance +16 whale channels target 35 45 profit the market is in decline but our pump signals have not stopped we havent raised our vip membership price dont miss this opportunity when bitcoin was 10000 our friends who were members regretted it☺️ because we havent raised our membership prices 12 months later when bitcoin rises again dont regret it and sign up now membership is very very cheap our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8 march ✅ 6796 poa binance 12 march ✅ 2161 nebl binance 15 march ✅ binance 17 march advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-16 15:06:05+00:00 1.0 1240071142 3562 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-15 19:55:18+00:00 1.0 1240071142 3555 6 hours left until the binance pump instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3050 lets beat this big pump advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-15 14:02:21+00:00 1.0 1240071142 3554 8 hours 30 mins left until the binance pump theres a binance pump today send a message to become a vip member the mission of us the pump group today is to get outsiders in via official news and social media channels we will make sure the news about the coin we picked will be posted all over twitter and on reddit lets show the whales what a big group of small traders can do the chat is open if you have any questions head over to the chat more information will follow in the next hours the pump team advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-15 10:31:14+00:00 1.0 1240071142 3552 new binance pump announcemen ⏳date march 15 ⏰time 2000 pm gmt exchange binance +16 whale channels target 35 45 profit volume in altcoins is very low the pump will be spectacular on march 15th be sure to watch and join besides our vip membership is now very cheap because the value of bitcoin has fallen its time to join up you can find out the coin name a day in advance dont miss this opportunity our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb ✅ 2727 dnt binance 27 feb our march success rates are our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8march ✅ 6796 poa binance 12 march ✅ binance 15 march advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-14 18:54:09+00:00 1.0 1240071142 3540 a great pump on this bad day of the market buy buy buy 2020-03-12 19:01:40+00:00 1.0 1240071142 3538 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-12 18:55:24+00:00 1.0 1240071142 3534 1 hours left until the binance pump so how do i pump 1 watch for the coin signal at 1600 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 35+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin advice 1 day ago or 1 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-12 18:00:09+00:00 1.0 1240071142 3533 new binance pump announcemen ⏳date march 12 ⏰time 1900 pm gmt exchange binance +16 whale channels target 35 45 profit we are finally ready to pump again our target for this pump will be at least 5070 the market is good and alot of people have been anxiously waiting for our next pump we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb ✅ 2727 dnt binance 27 feb our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8march ✅ binance 12 march advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-09 12:01:12+00:00 1.0 1240071142 3525 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-08 18:55:08+00:00 1.0 1240071142 3520 6 hours left until binance pump its going to be a very very big pump be sure to join while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in pump factory fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple for now all we can say is get ready practise and read all the advice we gave you today is the day that we will stand up and show the whales how to pump a coin vip advantages arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ binance 8march advice 1 day ago or 1 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-08 12:50:06+00:00 1.0 1240071142 3515 binance pump announcemen ⏳date sunday march 8 ⏰time 1900 pm gmt exchange binance +16 whale channels target 35 45 profit we are finally ready to pump again our target for this pump will be at least 5070 the market is good and alot of people have been anxiously waiting for our next pump we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb ✅ 2727 dnt binance 27 feb our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ binance 8march advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-06 15:06:04+00:00 1.0 1240071142 3505 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-04 18:56:05+00:00 1.0 1240071142 3499 9 hours left until binance pump as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 1900 gmt our march success rates are ✅ 4442 nxs binance 3 march ✅ binance 4 march advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-04 10:18:03+00:00 1.0 1240071142 3495 we had a great pump today im proud of all our members we did a great job give yourself a round of applause they talk about nxs coin in all forums this success is yours congratulations the next pump day and time will be announced shortly 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-03 17:02:29+00:00 1.0 1240071142 3485 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-03 15:55:02+00:00 1.0 1240071142 3483 1 hours left until the binance pump have btc available on binancecom and be watching here for the coin name buy in and watch the price soar whales will be supporting us and massive buy support will hold the coin price up as long as possible conditions are prime for this ta based signal +16 whale channels target 35 45 profit advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-03 15:00:19+00:00 1.0 1240071142 3481 4 hours left until the binance pump so how do i pump 1 watch for the coin signal at 1600 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 35+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 2 mins ago premium member contact whalepumpadmins 2020-03-03 12:01:41+00:00 1.0 1240071142 3480 6 hours left until the binance pump binance pump information in this event we will pump bottom alt coin that still didnt make significant recovery as u guys know that alts market has been crushed badly lately due to btc dumps which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular pump team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their coin price and market cap we will provide safe buy zone area this time as we are working with cooperation with team whales ❗️posted earlier on vip channel❗️ advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-03 10:00:30+00:00 1.0 1240071142 3479 binance pump tomorrow ⏳date 3 march 2020 ⏰time 1600 gmt exchange binance +16 whale channels target 35 45 profit the market is on the rise thats why were going to start the pump on march 3rd tomorrow make your preparations according to tomorrow and keep channel notifications open the march 4 pump is validwe will pump it on binance on march 3 and march 4 advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-02 13:58:10+00:00 1.0 1240071142 3474 binance pump analysis coin dnt low 66 high84 win wooow exchange binance profit 2727 profit todays pump was a surprise pump we shared the news of the pump on the free channel today a lot of our members didnt know thats why we didnt get over 30 but we still made a good profit on this downward trend one later that the pump will be larger 34 days ago we will share the news of the pump with you please keep notifications open our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb ✅ 2727 dnt binance 27 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-27 16:14:13+00:00 1.0 1240071142 3465 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-02-27 15:56:14+00:00 1.0 1240071142 3463 20 mins left until the binance pump in this event we will pump bottom alt coin that still didnt make significant recovery as u guys know that alts market has been crushed badly lately due to btc dumps which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular token team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their token price and market cap we will provide safe buy zone area this time as we are working with cooperation with team whales ❗️posted earlier on vip channel❗️ advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-27 15:40:55+00:00 1.0 1240071142 3461 binance pump today next pump scheduled date 27th february ⏱ time 400 pm gmt exchange binance the surprise pump of the day is in 40 minutes we had a great opportunity advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-27 15:22:00+00:00 1.0 1240071142 3456 we had a great pump yesterday currently nav is trading around 1400 satoshi with a volume of 350 btc it is still 15 up i see a lot of people following our advice of riding waves buying the dip and selling the top great work everyone our coin was nav which bounced around 4617 from our buy zone our experts believe it will go for a moon ride in shorter time frame as our previous calls did were excited about the next binance pump but first were going to enjoy our profits and spend some money best regards 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-21 11:20:04+00:00 1.0 1240071142 3454 binance pump analysis coin nav low 1163 high1700 win wooow exchange binance profit 4617 profit please check the vip channel above to gain confidence in us our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-20 16:18:59+00:00 1.0 1240071142 3445 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-02-20 15:55:19+00:00 1.0 1240071142 3443 2 hour left until the binance pump instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3050 lets beat this big pump 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-20 14:02:21+00:00 1.0 1240071142 3441 5 hour left until the binance pump well share strong breakout unicorn waiting for a kick to moon read the pinned post for details we will share the strong ta call today for sure as its highly requested and our targets are 502x for short term 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-20 11:00:42+00:00 1.0 1240071142 3440 binance pump announcement ⏳date 20feb2020 ⏰time 4 pm gmt exchange binance +13 whale channels target 35 45 profit signal alert the market is going great we found a great coin at our meeting together were seeing a great opportunity were going to have a fomo effect our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb lets make the next pump go down in history as one of the greatest pumps advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-19 19:34:40+00:00 1.0 1240071142 3438 in our meeting with the channel owners and vip members we dont want to organize a pump when bitcoin falls so when the market improves were going to pump it on the binance exchange keep watching us next pump binance the date of the binance pump will be announced soon our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-17 13:31:47+00:00 1.0 1240071142 3436 pump analysis coin cgen low 3 high 8 win exchange crex24 profit 67941 profit ——————————————————— next pump binance the date of the binance pump will be announced soon our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-16 10:10:39+00:00 1.0 1240071142 3428 next post will be the crex24 coin 5 mins to the crex24 pump time to shake the market up 2020-02-16 09:56:37+00:00 1.0 1240071142 3427 30 minutes until crex24 pump next message will be the coin name make sure to buy the coin as fast as you see the coin name the pump will be on crex24 on btc coin +13 whale channels collab pump 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-16 09:31:59+00:00 1.0 1240071142 3425 24 hours left until the crex24 pump prepare for atleast 100200 pump this upcoming pump will be big we have managed to reach over 3091 2 times in a row the previous month on binance and we believe that we can do it again in our upcoming pump as our volume has been increasing and has been great lately we think that pump on a small exchange crex24 will touch atleast 200 profit for the fast traders lets make the next pump go down in history as one of the greatest pumps we will make the same rise at the binance pump on february 17 keep watching us next pump binance ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-15 22:20:48+00:00 1.0 1240071142 3424 today pump announcement we made a big deal were going to set up a pump on the crex24 exchange before the binance pump17 feb everyone deposit btc on crex24 and prepare we talk with crex24 admins and everything is fine it was just a exchange uptade on few wallets last time prepare for atleast 100200 pump this upcoming pump will be big we have managed to reach over 3091 2 times in a row the previous month on binance and we believe that we can do it again in our upcoming pump as our volume has been increasing and has been great lately we think that pump on a small exchange crex24 will touch atleast 200 profit for the fast traders ⏳date sunday february 16 ⏰time 1000 am gmt exchange crex24 +13 whale channels target 100 200 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more binance 13 feb ✅ crex24 16 feb ✅ binance 17 feb lets make the next pump go down in history as one of the greatest pumps we will make the same rise at the binance pump on february 17 keep watching us 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-15 19:11:08+00:00 1.0 1240071142 3422 coin more low 337 high 699 win exchange bittrex profit 10741 profit next pump binance ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit we will make the same rise at the binance pump on february 17 keep watching us 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 22:18:31+00:00 1.0 1240071142 3418 bittrex pump analysis coin more low 337 high 699 win exchange bittrex profit 10741 profit next pump binance ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more binance 13 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 20:06:26+00:00 1.0 1240071142 3413 next post will be the bittrex coin 5 mins to the bittrex pump time to shake the market up 2020-02-13 19:55:07+00:00 1.0 1240071142 3412 15 mins left until the bittrex pump the binance pump will take place on february 17 those who dont have a balance on the bittrex exchange should watch the pump its going to be great today stay on track are we ready for today ✊as 10 whales channel we are ready ⏰please set your alarms ⏱today2000 gmt there will be a very very big pump watch you wont believe your eyes if you want to become a vip member please send a message coin name will be announced in our vip channel after 1 hour ⏰today is the big day 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 19:46:22+00:00 1.0 1240071142 3410 1 hours left until the next pump on bittrex our pump time will now be 2000 gmt the team is totally ready our team had contact with various news channels once the initial pump is done the buys of you guys and outsiders see the coin going up we will spread news via various news channels which make outsiders interested and slowly buy in on the coin this gives our members a perfect window to sell their coins with a decent profit 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 19:02:25+00:00 1.0 1240071142 3407 binance pump announcement ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit the market is going great we found a great coin at our meeting together were seeing a great opportunity were going to have a fomo effect our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 9166 wpr binance 10 feb lets make the next pump go down in history as one of the greatest pumps advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-12 12:48:29+00:00 1.0 1240071142 3405 yesterday we had a great pump the echoes are still going on all our members made a profit and completed the pump our vip members made 90 profit based on our research our free members achieved a 40 profit rate this was the best pump weve had lately well do it again as soon as possible some of our members are curious about the vip channel and the sharing times im sending you this information upstairs if you want to join pumps with 0 risks and make money within 15 minutes you can send a message our special advisers will take care of you coin wpr low 84 high 161 win exchange binance profit 9166 profit amazing our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 9166 wpr binance 10 feb 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-11 18:52:16+00:00 1.0 1240071142 3389 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-02-10 19:55:50+00:00 1.0 1240071142 3387 binance pump in 1 hour the team is totally ready our team had contact with various news channels once the initial pump is done the buys of you guys and outsiders see the coin going up we will spread news via various news channels which make outsiders interested and slowly buy in on the coin this gives our members a perfect window to sell their coins with a decent profit 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-10 19:00:54+00:00 1.0 1240071142 3386 2 hour left until the binance pump we are working very hard to get the social media campaign and the cordination ready for the pump we hope to finish everything in time which means we would not have to delay the pump more information coming soon 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-10 17:57:22+00:00 1.0 1240071142 3385 4 hours left until the next pump on binance our pump time will now be 2000 gmt coin vip channel with 50 discount you will earn huge lots of pump and vip signals in pro vip channel you can start investment even with 005 or more less we will make your little money into huge amount as 1520 btc in 4 week maximum if u have more you will earn massive just message to atlantismanager to join premium 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-10 16:09:28+00:00 1.0 1240071142 3384 6 hours left until the binance pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 35+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-02-10 14:02:41+00:00 1.0 1240071142 3383 24 hours left until binance pump ⏳date 10feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit join vip and earn huge +13 whale channels collaboration pumps zero effort required overnight success 100 legit free income 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-09 20:01:02+00:00 1.0 1240071142 3381 binance pump announcement ⏳date 10 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit the market is going great our vip members requested a pump tomorrow we found a great coin at our meeting together the pump will be shared on our free channel tomorrow were seeing a great opportunity were going to have a fomo effect our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrc bittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb lets make the next pump go down in history as one of the greatest pumps advice send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-09 14:49:18+00:00 1.0 1240071142 3371 hello everyone we would like to update all our members about our upcoming pump the current market conditions are perfect but our team is currently waiting to find the perfect candidates for coins to pump many coins have already gone up considerably and we will wait for a small dip in altcoins first to make sure we pump them from their bottom rather from the top as all our pumps will have at least 4070 targets the quality of our pumps will always be our 1 priority rather than the quantity which is the reason why we pump only when we see good opportunities stay tuned for more updates soon our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrc bittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb vip group this gives you an advantage buy 1 day before the pump which you buy the first person and sell the first person after the currency grows most of our pump is great up to 40 or 30 send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-03 15:18:14+00:00 1.0 1240071142 3369 important explanations for the binance pump today we pumped a great pump weve received great messages from our members thats why were so happy were excited about the next pump you can buy coin before pump 1 day and can sell when pump start after put coin in free chanel and alot of people in free chanel buy coin vip group this gives you an advantage buy 1 day before the pump which you buy the first person and sell the first person after the currency grows most of our pump is great up to 40 or 30 our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-01 17:16:55+00:00 1.0 1240071142 3367 binance pump analysis coin rdn low 1312 high 1713 win exchange binance profit 3056 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-01 14:23:36+00:00 1.0 1240071142 3366 what an amazing pump 5 minutes it went up non stop now consolidates at new level of 1500+ very good pump 150 volume 3552 profit 2020-02-01 14:22:46+00:00 1.0 1240071142 3355 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-02-01 12:55:12+00:00 1.0 1240071142 3354 30 minutes left to binance pump on ⏳date 1st february ⏰time 1300 pm gmt exchange binance +15 whale channels target 25 30 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-01 12:32:05+00:00 1.0 1240071142 3353 flash binance pump alert less than 1 hours left ‼️ 1st february 1300 pm gmt + 0 on binance exchange make sure to be ready with free btc we expect to see 50100 pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-01 12:01:36+00:00 1.0 1240071142 3349 bittrex pump analysis coin vrc low 511 high 958 win exchange bittrex profit 8447 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-30 21:39:54+00:00 1.0 1240071142 3338 next post will be the coin 5 mins to the bittrex pump time to shake the market up binance pump will start in 1 hour 2020-01-30 19:54:50+00:00 1.0 1240071142 3337 25 minutes left to pump on bittrex exchange pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange bittrex +3 whale channels target 15 25 profit binance pump will start in 1 hour 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 19:35:49+00:00 1.0 1240071142 3336 30 minutes left to pump on bittrex pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange bittrex +3 whale channels target 15 25 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 19:31:06+00:00 1.0 1240071142 3333 2 hours left to pump on bittrex 2 hours left remember to buy quickly and promote hard news will be supplied during the pump that everyone should spread around the crypto world this will help bring more attention to our coin and send the value up even higher working together we can accomplish great things as we have done many times before ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex +3 whale channels target 15 25 profit 3 hours left to pump on binance ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance +3 whale channels target 15 25 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 18:00:22+00:00 1.0 1240071142 3332 next pump today binance and bittrex 3 hours 30 mins left until the big bittrex pump 4 hours 30 mins left until the big binance pump boss freaked out we will organize 3 pumps today bittrex pump ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex binance pump ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance advantages arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-01-30 17:15:49+00:00 1.0 1240071142 3330 binance pump analysis coin nuls low 2887 high 3184 win exchange binance profit 932 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-30 17:09:37+00:00 1.0 1240071142 3322 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-30 16:55:14+00:00 1.0 1240071142 3321 30 minutes left to pump on binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance +3 whale channels target 15 25 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 16:31:16+00:00 1.0 1240071142 3320 binance pump 1 hours left until the big binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance +3 whale channels target 10 20 profit bittrex pump 4 hours left until the big bittrex pump ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex +5 whale channels target 30 60 profit binance pump 5 hours left until the big binance pump ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance +15 whale channels target 20 30 profit join our pumps according to percentage ratios risk levels are different take advantage of vip membership 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 16:01:40+00:00 1.0 1240071142 3317 6 hours left until the big binance pump 9 hours left until the big bittrex pump 10 hours left until the big binance pump boss freaked out we will organize 3 pumps today binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance bittrex pump ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex binance pump ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance advantages arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-01-30 10:28:08+00:00 1.0 1240071142 3313 the pump will start in 24 hours we will organize 2 pumps tomorrow binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance +15 whale channels target 20 30 profit bittrex pump ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex +15 whale channels target 40 60 profit advantages arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-01-29 20:16:45+00:00 1.0 1240071142 3309 new pump announcement ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex +15 whale channels target 40 60 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ binance 30 jan we had a great pump last night youve all witnessed this great ascension were organizing a big pump again follow our instructions arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-27 14:46:46+00:00 1.0 1240071142 3288 binance pump analysis coin nxs low 1931 high 2395 win exchange binance profit 2402 profit woooowwww our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 19:09:58+00:00 1.0 1240071142 3285 congratulations the analysis will come soon we are the worlds best pump channel send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 19:05:10+00:00 1.0 1240071142 3282 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-20 18:55:09+00:00 1.0 1240071142 3279 2 hours to go binanced pump and we will unite and mass buy a coin while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in pump factory fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple for now all we can say is get ready practise and read all the advice we gave you today is the day that we will stand up and show the whales how to pump a coin our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ binance 20 jan send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 17:02:14+00:00 1.0 1240071142 3276 binance pump analysis coin brd low 2616 high 3374 win exchange binance profit 2897 profit woooowwww our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world next pump tomarrow ⏳date 21 january ⏰time 2000 gmt exchange binance send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 16:09:18+00:00 1.0 1240071142 3273 congratulations you guys are great the analysis will come soon we are the worlds best pump channel send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 16:04:45+00:00 1.0 1240071142 3268 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-20 15:56:07+00:00 1.0 1240071142 3267 25 minutes left until the huge binanced pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 15:36:26+00:00 1.0 1240071142 3265 3 hours left until the binance pump so how do i pump 1 watch for the coin signal at 1900 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 60+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin today were going to have two binance pumps ⏳date 20 january ⏰time 1600 gmt exchange binance —————————————— ⏳date 20 january ⏰time 1900 gmt exchange binance the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win do you have questions regarding tonights pump then you can always reach us here you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-20 13:01:19+00:00 1.0 1240071142 3263 today surprise binance pump today were going to have two pumps on 1900 gmt we will be pumping a low market cap coin at binance on 1600 gmt we will be pumping a low market cap coin at binance our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ binance 20 jan ✅ binance 20 jan make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win do you have questions regarding tonights pump then you can always reach us here you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-20 10:40:24+00:00 1.0 1240071142 3261 new binance pump announcement ⏳date 26 jan 2020 ⏰time 9 pm gmt exchange binance +15 whale channels target 30 40 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ binance 26 jan we had a great pump last night youve all witnessed this great ascension were organizing a big pump again follow our instructions arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-19 21:33:50+00:00 1.0 1240071142 3259 big bitcoin pump news we made a great pump yesterday☝ huge gains were made both vip members and free members made huge gains in honor of this we offer a 50 discount on vip memberships this is a great opportunity for the next pump the 50 discount will only last 4 days •registrations for the vip and vip + group are open enjoy it as soon as possible for insured and riskfree winnings our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ binance 26 jan send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-17 07:41:06+00:00 1.0 1240071142 3257 binance pump analysis coin nav low 1104 high 1504 win exchange binance profit 3600 profit woooowwww our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 19:10:44+00:00 1.0 1240071142 3254 you guys are great even our free members have made a lot of money hahahahahaha congratulations the analysis will come soon we are the worlds best pump channel send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 19:05:10+00:00 1.0 1240071142 3249 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-16 18:55:17+00:00 1.0 1240071142 3248 10 mins left until the binance pump arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 18:50:27+00:00 1.0 1240071142 3247 30 minutes left until the huge binance pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 18:29:39+00:00 1.0 1240071142 3246 1 hours left until the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 17:57:39+00:00 1.0 1240071142 3245 2 hours left until the binance pump so how do i pump 1 watch for the coin signal at 1900 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 60+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 16:53:48+00:00 1.0 1240071142 3244 5 hours left until our pump on binance our team is ready and we hope you are too send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 14:15:26+00:00 1.0 1240071142 3243 23 hours left until the binance pump we are finally ready to pump again the currentd market condition is perfect for a pump as outsider activity is very strong and we expect it to continue for the next few days our target for this pump will be between 5070 we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently we are confident that we will be able to hit our target today and go even higher possibly this is going to be the pump you will not want to miss ⏳date 16 jan 2020 ⏰time 1900 pm gmt exchange binance +15 whale channels target 30 40 profit our jan success rates are ✅ 3061 vib binance 12 dec ✅ binance 16 dec send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-15 20:00:44+00:00 1.0 1240071142 3242 new binance pump announcement ⏳date 16 jan 2020 ⏰time 2000 gmt exchange binance +15 whale channels target 30 40 profit our jan success rates are ✅ 3061 vib binance 12 dec ✅ binance 16 dec we had a great pump last night youve all witnessed this great ascension were organizing a big pump again follow our instructions arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-13 08:35:14+00:00 1.0 1240071142 3238 binance pump analysis coin vib low 245 high 320 win exchange binance profit 3061 profit woooowwww global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 20:19:25+00:00 1.0 1240071142 3236 you guys are great even our free members have made a lot of money hahahahahaha congratulations the analysis will come soon we are the worlds best pump channel send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 20:03:39+00:00 1.0 1240071142 3229 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-12 19:56:19+00:00 1.0 1240071142 3228 10 mins left until the binance pump arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 19:51:29+00:00 1.0 1240071142 3227 only 28 minutes left until the huge binance pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 19:32:51+00:00 1.0 1240071142 3226 1 hours left until the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 18:59:27+00:00 1.0 1240071142 3224 2 hours left until the binance pump make sure you buy quickly to get he lowest prices and always sell for a profit binance profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 17:59:20+00:00 1.0 1240071142 3223 3 hours left until the binance pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 17:04:07+00:00 1.0 1240071142 3221 4 hours left binance pump the market is looking great lets create the hype the more people we have tonight the bigger the pump and the bigger the profit invite everyone you know friends family and people on social media lets do this send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 16:06:54+00:00 1.0 1240071142 3220 7 hours left big binance pump make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 60 would make sure you get in every time see howtobuyfast the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win buy quick sell smart promote hard ⏳date 12 jan 2020 ⏰time 2000 gmt exchange binance +15 whale channels target 50 70 profit dont forget to take advantage of vip membership options send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 13:00:50+00:00 1.0 1240071142 3218 new binance pump announcement ⏳date 12 jan 2020 ⏰time 2000 gmt exchange binance +15 whale channels target 50 70 profit bitcoin is in good shape again we see great opportunities to pump we are finally ready to pump again this upcoming pump will be big we have managed to reach over 5070 3 times in a row the previous month and we believe that we can do it again in our upcoming pump as our volume has been increasing and has been great lately we also have big upcoming plans for our group soon that will benefit all our members stay tuned more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-09 20:22:53+00:00 1.0 1240071142 3194 bittrex pump analysis coin cure low 501 high 904 win exchange bittrex profit 7801 profit woooowwww global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-12 20:15:11+00:00 1.0 1240071142 3186 next post will be the coin 5 mins to the bittrex pump time to shake the market up 2019-12-12 19:56:47+00:00 1.0 1240071142 3183 only 30 minutes left until the huge bittrex pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-12 19:30:21+00:00 1.0 1240071142 3182 1 hours left until the bittrex pump make sure you buy quickly to get he lowest prices and always sell for a profit bittrex profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-12 19:00:54+00:00 1.0 1240071142 3181 2 hours left until the bittrex pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-12 18:01:02+00:00 1.0 1240071142 3180 4 hours left until the bittrex pump today there will be provided news for everyone to spread around post this on social media forums telegram or anywhere people are interested in crypto we will also be able to pump our coin to make bittrex front page as the top gainrer of the day which will attract a of additional investment altcoin markets are primed and many people are looking to trade make sure your bittrex account is loaded and ready send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-12 16:01:42+00:00 1.0 1240071142 3178 24 hours left until the bittrex pump markets look great and primed for a pump make sure you buy in quickly and sell in the expected gain range some tips to help keep the pump near peak sell your coins in bunches maybe half right away and half a little later or 13 at a time add buy offers just under the market price these buy walls will entice day traders from outside our group and even some trading bots to buy up more coins above our orders which causes waves and mutliple price spikes ride these waves for extra profit promote the coin usuing the supplied news this will help bring more investment into the coin which greatly benifits the pump everything is looking great for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits remember bittrex pumps can go 100250 on average send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-11 20:02:21+00:00 1.0 1240071142 3177 before the pump on the binance exchange we decided to regulate the pump at the bittrex exchange it will be a lowvolume coin join the pump with a low amount of btc the target will be 140 profit the percentage is going to be great with little money you will be able to make a lot of profit you can become our vip member primarily to find out the name coin bittrex pump ⏳ date 12dec2019 ⏰ time 9pm gmt exchange bittrex partners more than 150000 cryptomembers +6 whale channels target 140 160 profit binance pump ⏳ date 14dec2019 ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 30 60 profit you can buy the name coin before the pump starts you can take advantage of your options 1 hour before or 1 day before premium member contact atlantismanager 2019-12-11 14:53:34+00:00 1.0 1240071142 3167 binance pump analysis coin edo low 3200 high 4450 win exchange binance profit 3710 profit woooowwww global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-08 21:19:56+00:00 1.0 1240071142 3158 congratulations the analysis will come soon we are the worlds best pump channel send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-08 21:10:16+00:00 1.0 1240071142 3152 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-12-08 20:56:09+00:00 1.0 1240071142 3150 30 minutes left some members will be live streaming this pump we will share some links soon premium member contact atlantismanager 2019-12-08 20:29:39+00:00 1.0 1240071142 3149 1 hour and 30 minutes left the signal will be send in the pumpsignal and the telegram for the nonranked members and for the members with a counselor rank or higher in the channels which are created for them take the 1 hour and 30 minutes to practise buying quickly and to download the binance desktop app added to that we highly advice new members to spectate this pump take a piece of paper and note down the price you could have bought and sold at lets get the hype going the pump team premium member contact atlantismanager 2019-12-08 19:33:34+00:00 1.0 1240071142 3147 1 hours and 50 minutes left until the pump the market is looking healthy last week and has been quite stable today send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-08 19:12:35+00:00 1.0 1240071142 3146 25 hours left big binance pump make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time see howtobuyfast the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win buy quick sell smart promote hard send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-08 18:33:54+00:00 1.0 1240071142 3144 5 hours left until the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-08 16:02:49+00:00 1.0 1240071142 3143 the pump will be in 9 hours the market is still looking good lets make this pump one for in the books the more people we have tonight the bigger the pump and the bigger the profit you can still buy vip membership for today pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-08 12:11:04+00:00 1.0 1240071142 3141 the pump has been postponed until tomorrow for the safety of our members sunday december 08 900pm gmt you can still buy vip membership for tomorrows pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 19:52:00+00:00 1.0 1240071142 3140 2 hours left for all the new members we always recommend the binance desktop client over the web client at this moment in time the difference is not too big but the desktop client can be faster for people in the us maybe using a vpn can work to acces binance global during the pump the price of the chosen coin will increase very fast this means that when a limit offer is set too low it will not fill you could try market buying 75 which has a far larger chance of success although it does also have a slightly higher risk added to that i want to advice the new members that do not feel comfortable pumping yet to spectate and join next pump the pump team send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 19:00:49+00:00 1.0 1240071142 3138 dear members since the last pump we gained 12000 new members with a unique ip adress this is an insane amount so we are looking at a good amount of volume tonight since a lot of new members do not have any experience with pumping we have some advice 1 we advice you to not buy in if you are way too late you might buy in too high 2 it is very important to never panic sell the prices fluctuate a lot dont lose money by panic selling 3 after the initial pumps a lot of money can be made by riding the waves this means buy the bottom sell the top so when it dips be sure to have buy offers to buy and when it peaks be sure to sell the second peak might even go higher than the first one you still have three hours to invite use them wisely the pump team send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 17:57:32+00:00 1.0 1240071142 3136 3 hours left till the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 17:28:55+00:00 1.0 1240071142 3135 5 hours left till the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 16:00:21+00:00 1.0 1240071142 3134 7 hours left till the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 14:09:29+00:00 1.0 1240071142 3133 9 hours left binance pump the market is looking great lets create the hype the more people we have tonight the bigger the pump and the bigger the profit invite everyone you know friends family and people on social media lets do this send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 12:04:04+00:00 1.0 1240071142 3132 12 hours left untill the binance pump i promised to write a small article about todays strategy and predictions with these two points we will get a good hold during the pump 1 after you bought do not sell 100 at once slowly sell 25 at a time doing this will not cause panic on the market and will aid the pump a lot 2 also important is to assist the pump set buy walls during the pump what are buy walls example when the coin is up lets say 100 put up buy walls buy offers just under the market price a lot of outsiders people who are not in crypto atlantis will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits so the mission of us the pump group today is to get outsiders in via official news and social media channels we will make sure the news about the coin we picked will be posted all over twitter and on reddit lets show the whales what a big group of small traders can do the chat is open if you have any questions head over to the chat more information will follow in the next hours the pump team advice send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-07 09:01:08+00:00 1.0 1240071142 3131 binance pump announcement dear members next pump will be in 1 days 10 hours and 8 minutes ⏰sat dec 07 900 pm gmt london ⏰sat dec 07 400 pm est new york ⏰sun dec 08 600 am gmt+9 seoul exchange is binance +15 whale channels target 50 80 profit in the next 24 hours we will be sharing information about tomorrows pump and i will make a small article about the strategy that we will follow during the pump lets make the next pump go down in history as one of the greatest pumps have a great day the pump team advice send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-06 11:03:32+00:00 1.0 1240071142 3129 new binance pump announcement ⏳date december 07 saturday ⏰time 900 pm gmt exchange binance +15 whale channels target 50 80 profit weve been interrupting the pump signals for a long time weve decided to activate the pump signals again we signed a contract with the big telegram channels pump signals will be made via binance share this information with your surroundings more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected minimum 3050 profit send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-05 09:42:22+00:00 1.0 1240071142 3127 bitcoin rose to 7800 today the buy signal continues i hope youve purchased from the lower areas ill let you know when the sell signal comes in by the bot when the market goes up we binance pump a lot of people have been messaging me about the exchange the pump will be on we are currently doubting between bittrex and binance so be sure to register to those as soon as possible daily signals you can text me for advice these signals are given to the free group 12 hours sometimes 1 day late pump signals send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-12-04 16:23:36+00:00 1.0 1240071142 3098 2 days left until the big pump on binance ⏳date tuesday november 12 ⏰time 1800 pm gmt exchange binance +15 whale channels target 50 80 profit send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-11-10 15:25:55+00:00 1.0 1240071142 3097 new binance pump announcement weve been interrupting the pump signals for a long time weve decided to activate the pump signals again we signed a contract with the big telegram channels pump signals will be made via binance share this information with your surroundings more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected minimum 3050 profit pump announcement ⏳date tuesday november 12 ⏰time 1800 pm gmt exchange binance +15 whale channels target 50 80 profit send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2019-11-09 08:08:32+00:00 1.0 1240071142 3034 at 8821 the tp close order sales signal came from bot but within 30 minutes pump and dump was effective and a big drop came im so glad i told you not to buy it because it would be impossible for you to capture this sales signal youll see in the next image ive repeatedly told you about the ma200 region and its impossible to get a permanent rise unless you can close a permanent bar on it 2019-10-11 10:00:31+00:00 1.0 1240071142 3005 dear members our team is currently fully focused on finding a great opportunity for our next binance pump with the instability of bitcoin currently the market condition is not ideal for a pump but we can guarantee that a pump will take place this week make sure you keep an eye on our channel we will announce our next pump very soon 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-09-04 15:46:40+00:00 1.0 1240071142 2991 dear members as you all know we should have a pump tonight we will postpone the pump there is a reason for this the reason is that our analysts expect to high sell walls on the choosen coin bitcoin can go in any direction right now which causes huge sell walls on altcoins so we are postponing todays pump we care a lot about our members we want our members to make the biggest amount of profit possible and we see a better opportunity in a few days because of the reason named above please keep in mind that most of the times our pumps go above 50 up this is only possible in better market conditions because of the delay of our pump we decided to give 20 discount on vip and vip+ until the next pump thanks for understanding the announcement will be soon 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-09-02 12:50:05+00:00 1.0 1240071142 2989 pump analysis binance pump coin qsp low 102 high 160 win exchange binance profit 5686 profit woooowwww why dont you still be a vip member why are you taking risks global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-29 18:10:03+00:00 1.0 1240071142 2980 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-08-29 17:55:08+00:00 1.0 1240071142 2979 15 mins left until the pump be ready we have a clear path to top gainer place buy orders to support the price the longer the pump lasts the more outsiders will join in our news team is ready to spread the news everywhere on social media the signal will be posted as an image to counter the bots 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-29 17:47:35+00:00 1.0 1240071142 2977 1 hour to go before we pump on binance since we have a lot of new members if you are not familiar with pumping or do not feel comfortable yet the best advice we can give you is to try it out with a small portion of your funds or watch from the sidelines and join in next pump 2019-08-29 17:01:16+00:00 1.0 1240071142 2976 2 hour left for binance pump the day of the pump has arrived on 1800 gmt we will be pumping a low market cap coin at binance please look at the results of the last pumps on snt vib the volume was huge and we will experience that again this time we give you 3 targets today so place a few sell orders instead of 1 sell order this will allow you to achieve the most profit the expected volume during our pump will be + 50 60 btc we therefore do not give a maximum bet for this pump do you have questions regarding tonights pump or do you want to become vip then you can always reach us here pumpadmins 2019-08-29 16:01:37+00:00 1.0 1240071142 2972 24 hour left until the pump the pump will be on binance at 1800 gmt using the btc pairing meaning that we will use btc to buy the coin our goal tomorrow will be to trigger a reaction from outsiders tomorrow after we post the coin signal the price will went up really fast this will get the coin trending bring many more outsiders into the pump and create bigger waves directives be ready to buy quickly when the coin signal is given we have thousands of members trading at once and the price will go up very fast the best way to buy is to buy at market price using the options in the market tab not 100 because the price will have already go up and wont work the earlier you buy in the better if you are too late to buy and the price has risen alot already it is recommended to sit it out it is preferable trading on the binance desktop app because the amount of volume we will generate might make the binance browser slower 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-28 18:00:46+00:00 1.0 1240071142 2969 48 hours left for binance pump massive daily volume of 1 billion+ for extremely liquidity most popular exchange in the world for huge number of outsiders market buys for quick action easier exchange to promote during pumps more users have accounts there no upper limit on investing means you can enter with 5 or even 10 btc if you wanted safer percent gains of 3090 instead of 200 this pump will be enormous and incredible we have over 200 new users since the last pump and have secured promotion of our signal to 7000+ telegram users and coin promotion to 100000+ social media accounts who are known binance users and we got a few extra days now to promote create and ready your account on binance and as questions if needed we aim for every single user to profit and this is easily possible on binance please do your best to be prepared last pump results on binance snt vib was insane everyone did insane profits lets get the next pump even bigger 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-27 18:09:56+00:00 1.0 1240071142 2968 dear members many people are asking about our vip group we are limiting the amount of people that can join our vip for a reason as long as we have more volume coming in outside our vip group the pump will always be a success because it will easily attract more outsiders vip members are sophisticated investors and will not make much of a difference in your profits in fact we believe that they will help the pump by bringing in more volume we have gained alot of new members since the success of our last pump we expect this one to be even better its very rare these days to see a coin go up more than +50 on binance but we have spent alot of ressources on marketing and we will do the same again this time we will try to go above 80 we still have spots open for our vip group if you would like to join our private club send a message to pumpadmins ⏳ date thursday august 29 ⏰ time 1800 gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 50 80 profit 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-25 18:05:20+00:00 1.0 1240071142 2963 pump announcement binance ⏳ date tuesday august 27 ⏰ time 1800 gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 40 60 profit after our successful 70 rdncvcdata pumps and our 50 vib pump we will schedule our next pump this tuesday alot of people have been asking some questions to clarify our pumps are free for all and everyone receives the signal at the same time the previous time the signal was sent at 180000 on our end but on binances end it was still 175958 we have taken this into consideration for the next pump to post exactly at 18 gmt next time one more asked question is when we post the pump signal it will show as forwarded from pump signal it is simply a private channel that we use to forward the signal to all our channels at the same time and not a vip channel if you have any more questions feel free to ask us we have a active discord server with over 460 000 members ready to help if you would like to join us the link is in the channel information our august success rates are ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august ✅ 8232 cvc binance 13 august ✅ 8085 data binance 15 august ✅ 5686 vib binance 21 august ✅ 5517 snm t binance 23 august 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-23 15:03:12+00:00 1.0 1240071142 2962 pump analysis binance pump coin snt low 174 high 270 win exchange binance profit 5517 profit woooowwww why dont you still be a vip member why are you taking risks global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-22 20:11:10+00:00 1.0 1240071142 2958 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-08-22 19:55:05+00:00 1.0 1240071142 2956 1 hour left for binance pump ️want to know coin before pump contact with 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-22 19:00:22+00:00 1.0 1240071142 2955 3 hours left pump on binance 3 hours to go and we will unite and mass buy a coin while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in global pumps fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple the hype is growing the amount of social media messages is booming the pump after the rebirth has always been one of the biggest a lot of people were watching from the sidelines last pump but since last pump was so succesful this pump might get even bigger for now all we can say is get ready practise and read all the advice we gave you today is the day that we will stand up and show the whales how to pump a coin please be aware that you can know the coin name earlier by joining our vip or vip+ channel contact pumpadmins for the possibilities we can let you take a quick look in our vip room so that you can see for yourself that the coin name is published there earlier every pump 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-22 17:18:02+00:00 1.0 1240071142 2954 4 hours left pump on binance make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time see howtobuyfast the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win buy quick sell smart promote hard 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-22 16:00:41+00:00 1.0 1240071142 2953 12 hours left until the next pump on binance our pump time will now be 2000 gmt coin vip channel with 50 discount you will earn huge lots of pump and vip signals in pro vip channel you can start investment even with 005 or more less we will make your little money into huge amount as 1520 btc in 4 week maximum if u have more you will earn massive just message to pumpadmins to join premium 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-22 08:21:33+00:00 1.0 1240071142 2952 tomorrow pump announcement binance ⏳ date thursday august 22 ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 60 80 profit ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july +++++++++++++++++++++++++++++ ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august ✅ 8232 cvc binance 13 august ✅ 8085 data binance 15 august ✅ 5686 vib binance 21 august 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 19:48:40+00:00 1.0 1240071142 2951 tomorrow pump announcement binance ⏳ date thursday august 22 ⏰ time 2000 pm gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 60 80 profit ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july +++++++++++++++++++++++++++++ ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august ✅ 8232 cvc binance 13 august ✅ 8085 data binance 15 august ✅ 5686 vib binance 21 august 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 19:48:25+00:00 1.0 1240071142 2950 pump result another successful pump around 50 gains on vib with amazing volume as expected as you can see alot of coins were pumped today our initial coin pumped and we picked vib at the last minute instead of postponing it which was the right decision to make initially we noticed some selling pressure at the top coming from the eth market but we our buying power was high and we managed to get through it the 2nd wave happened quickly to 240 after everyone was done buying we hope everyone sold at the top and made nice profits today we will announce the next pump tomorrow stay tuned 2019-08-21 18:19:14+00:00 1.0 1240071142 2949 pump analysis binance pump coin vib low 153 high 240 win exchange binance profit 5686 profit woooowwww why dont you still be a vip member why are you taking risks global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 18:07:13+00:00 1.0 1240071142 2943 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-08-21 17:54:13+00:00 1.0 1240071142 2941 1 hour left for binance pump ️want to know coin before pump contact with 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 16:59:23+00:00 1.0 1240071142 2940 our goal today will be to create the same mega binance pump as our previous one and hold top gainer for many hours only 3 hours left before the pump signal 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 15:00:39+00:00 1.0 1240071142 2939 close to 4 hours left we are confident that this pump will be massive 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 14:20:23+00:00 1.0 1240071142 2937 dear members the pump will be on binance at 1800 gmt using the btc pairing meaning that we will use btc to buy the coin our goal today will be to trigger a reaction from outsiders today after we post the coin signal the price will went up really fast this will get the coin trending bring many more outsiders into the pump and create bigger waves directives be ready to buy quickly when the coin signal is given we have thousands of members trading at once and the price will go up very fast the best way to buy is to buy at market price using the options in the market tab not 100 because the price will have already go up and wont work the earlier you buy in the better if you are too late to buy and the price has risen alot already it is recommended to sit it out it is preferable trading on the binance desktop app because the amount of volume we will generate might make the binance browser slower 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 13:11:33+00:00 1.0 1240071142 2936 5 hours left until the pump on binance be ready after our successful 70 data pump we expect our volume to be at least 3 times bigger on this upcoming pump we always try to aim higher our objective for next pump is to make it even bigger this pump will be free for all again and everyone will receive the signal at the same time 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-21 12:59:42+00:00 1.0 1240071142 2931 dear members 1 day to go before our pump 1 will take place this pump is going to be ranked so our vip members will receive the coin name earlier the pump 2 that will take place the day after tomorrow will also be ranked so we will see 2 strong vip pumps in the next 2 days make sure you are ready in time for these pumps you dont want to miss these events 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-20 13:22:09+00:00 1.0 1240071142 2930 new 2 pump announcement binance ⏳ date wednesday august 21 ⏰ time 1800 pm gmt exchange binance partners more than 550000 cryptomembers +6 whale channels target 20 30 profit and ⏳ date thursday august 22 ⏰ time 2000 pm gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 60 80 profit ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august ✅ 8232 cvc binance 13 august ✅ 8085 data binance 15 august 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-20 10:42:43+00:00 1.0 1240071142 2925 new 2 pump announcement binance ⏳ date wednesday august 21 ⏰ time 1800 pm gmt exchange binance partners more than 550000 cryptomembers +6 whale channels target 20 30 profit and ⏳ date thursday august 22 ⏰ time 2000 pm gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 60 80 profit ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august ✅ 8232 cvc binance 13 august ✅ 8085 data binance 15 august 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-18 14:33:31+00:00 1.0 1240071142 2924 ❤ everyone vote the time for the next pump it will stay online for few hours only 2019-08-17 14:12:17+00:00 1.0 1240071142 2923 hello everyone we know many people are patiently waiting for our next pump before we announce the next pump date we would like to explain the dynamics of the last pump in order for our members to understand clearly how we managed to pump data to 70 and to be better prepared for the next pump first we announced the pump signal this is when all our members initially bought after announcing the signal this is when our team comes in and attempts to hold the price high as long as possible we have been doing pumps since early 2018 and statistically we know that it takes between 1 to 2 minutes for outsider fomo traders on binance that are outside our group to kick in when that happens it will artificially keep the price up above where all our members bought and with the power of our team and outsiders combined take it even higher which in this case was 70 as you saw even after our pump ended the price was still holding strong above 4050 this is mainly because outsiders got in after us at that price which is something we need to keep doing every pump the next pump we will attempt the same thing but this time with even bigger results the date will be announced soon stay tuned 2019-08-17 12:41:59+00:00 1.0 1240071142 2919 pump analysis binance pump coin data low 94 high 170 win exchange binance profit 8085 profit woooowwww why dont you still be a vip member why are you taking risks global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-15 20:15:01+00:00 1.0 1240071142 2907 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-08-15 19:54:29+00:00 1.0 1240071142 2906 only 10 minutes left binance pump login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-15 19:50:37+00:00 1.0 1240071142 2903 less than 2 hours left our target for this pump is very high the market is looking ready for a great pump 2019-08-15 18:13:12+00:00 1.0 1240071142 2902 close to 4 hours left we are confident that this pump will be massive 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-15 16:08:55+00:00 1.0 1240071142 2900 24 hours left until the next pump on binance our pump time will now be 2000 gmt coin vip channel with 50 discount you will earn huge lots of pump and vip signals in pro vip channel you can start investment even with 005 or more less we will make your little money into huge amount as 1520 btc in 4 week maximum if u have more you will earn massive just message to pumpadmins to join premium 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-14 20:00:13+00:00 1.0 1240071142 2899 pump announcement binance ⏳ date thursday august 15 ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +6 whale channels target 20 30 profit our july and august success rates are ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august ✅ 8232 cvc binance 13 august 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-08-14 14:35:02+00:00 1.0 1240071142 2898 pump analysis binance pump coin cvc low 362 high 660 win exchange binance profit 8232 profit woooowwww why dont you still be a vip member why are you taking risks global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-13 20:12:45+00:00 1.0 1240071142 2892 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-08-13 19:55:05+00:00 1.0 1240071142 2891 only 10 minutes left binance pump login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-13 19:50:18+00:00 1.0 1240071142 2887 2 hour left until the pump be ready on binance 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-13 18:01:18+00:00 1.0 1240071142 2886 get ready for 5080 profit oin vip channel with 50 discount you will earn huge lots of pump and vip signals in pro vip channel you can start investment even with 005 or more less we will make your little money into huge amount as 1520 btc in 4 week maximum if u have more you will earn massive just message to pumpadmins to join premium ⏳ date today ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 50 80 profit 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-13 17:05:32+00:00 1.0 1240071142 2885 3 hour 20 mins left until the pump be ready on binance make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time see howtobuyfast the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win buy quick sell smart promote hard 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-13 16:40:18+00:00 1.0 1240071142 2884 24 hour left until the pump be ready on binance as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more make sure you buy in quickly to get the best available price we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-12 20:28:51+00:00 1.0 1240071142 2882 dear members the team would like to inform you about next pump the pump will be done in collaboration with the biggest bitcoin investment group telegram channels the last time we did a collaboration was on 2nd august the pump was on a coin called nav which was one of the biggest pumps we have done with gains over 85 coming tuesday we expect something big and bigger than the nav the amount of people that want to pump want to make profits and are tired of losing money trading against whales are not that big yet ⏳ date tuesday 13 august ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 60 80 profit 50 discount offer for next 5 hours vip membership 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-11 19:37:16+00:00 1.0 1240071142 2881 2 days left until our next free for all pump on binance we can guarantee that this upcoming pump will have amazing results we are expecting at least a minimum of 50 and more on the initial spike and multiple waves to follow through this pump will have alot of support as we get closer to the pump more details will follow stay tuned 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-08-11 11:47:54+00:00 1.0 1240071142 2880 new binance pump announcement ⏳ date tuesday 13 august ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 60 80 profit our july and august success rates are ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-08-10 16:57:40+00:00 1.0 1240071142 2874 new binance pump announcement ⏳ date tuesday 13 august ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 60 80 profit our july and august success rates are ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july ✅ 8319 rdnbinance 1 august ✅ 3047 snm binance 7 august 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-08-08 16:38:19+00:00 1.0 1240071142 2870 pump analysis binance pump coin snm low 105 high 137 win exchange binance profit 3047 profit woooowwww why dont you still be a vip member why are you taking risks global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-07 17:11:37+00:00 1.0 1240071142 2864 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-08-07 16:55:36+00:00 1.0 1240071142 2863 15 mins left until the pump be ready we have a clear path to top gainer place buy orders to support the price the longer the pump lasts the more outsiders will join in our news team is ready to spread the news everywhere on social media the signal will be posted as an image to counter the bots 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-07 16:45:35+00:00 1.0 1240071142 2859 1 day left until our pump on binance our discord group is growing very fast we have thousands of new members that are ready to join this upcoming pump we expect a very high amount of volume with expected gains that could range anywhere from 50 to 70 depending on how the market reacts we have also put in place a team of people that will shill the coin with news everywhere on social media quickly after the signal is given to ensure that a bigger amount of outsiders will join the pump many members are asking if we use btc or eth to buy the coin we will be using the btc pairing to buy the coin 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-08-06 13:29:22+00:00 1.0 1240071142 2858 2 days left until our next free for all pump on binance we can guarantee that this upcoming pump will have amazing results we are expecting at least a minimum of 50 and more on the initial spike and multiple waves to follow through this pump will have alot of support as we get closer to the pump more details will follow stay tuned 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-08-05 13:05:31+00:00 1.0 1240071142 2854 new binance pump announcement ⏳ date wednesday august 7 ⏰ time 1700 pm gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 50 80 profit our july success rates are ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july ✅ 8919 nav binance tomorrow 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-08-02 07:39:55+00:00 1.0 1240071142 2853 pump analysis nav coin binance coin rdn low 119 high 218 win exchange binance profit 8319 profit woooowwww we are still up 25 15 min later the price is holding strong why dont you still be a vip member why are you taking risks global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-01 20:17:44+00:00 1.0 1240071142 2845 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-08-01 19:55:51+00:00 1.0 1240071142 2841 3 hours 30 mins left until binance pump make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time see howtobuyfast the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win buy quick sell smart promote hard 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-08-01 16:36:42+00:00 1.0 1240071142 2839 24 hours left until binance signal event exchange binance pairing btc as promised we are again going above and beyond for this event and have secured promotion of our signal to 100000+ social media accounts who are known binance users our previous signal event lrc spiked more than 75 we are expecting again great initial volume and even greater follow up volume to send the coin to 506070 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 2000 gmt our join channel link to add your friends rocketpumptrader 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-31 20:11:36+00:00 1.0 1240071142 2837 48 hours left until one of the largest binance pump exchange binance pairing btc pros of binance massive daily volume of 1 billion+ for extremely liquidity most popular exchange in the world for huge number of outsiders market buys for quick action easier exchange to promote during pumps more users have accounts there no upper limit on investing means you can enter with 5 or even 10 btc if you wanted safer percent gains of 3090 instead of 200 this pump will be enormous and incredible we have over 2000 new users since the last pump and have secured promotion of our signal to 40000+ telegram users and coin promotion to 100000+ social media accounts who are known binance users create and ready your account on binance check the help channels and as questions if needed we aim for every single user to profit and this is easily possible on binance please do your best to be prepared last pump result on binance lrc was insane we did in few minutes 130 btc getting the coin at 76 then we had a lot incredible waves and after 5 days the coin was still trading at +40 from start pump price everyone did insane profits lrc did around 350400 btc trading volume after our pump and right now it have 200+ btc traded everyday lets get the next pump even bigger 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-30 20:06:04+00:00 1.0 1240071142 2835 after 5 days from our pump lrc its still trading at +40 and at around 550 sats it was an incredible pump everyone its in a huge profit next pump will be even bigger 2019-07-30 10:57:50+00:00 1.0 1240071142 2834 new binance pump announcement ⏳ date thursday 1 august ⏰ time 2000 gmt exchange binance partners more than 150000 cryptomembers +5 whale channels target 50 80 profit our july success rates are ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july ✅ 663 blz binance 29 july 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-29 18:22:29+00:00 1.0 1240071142 2833 new binance pump analysis coin rdn low 2381 high 2539 win exchange binance profit 663 profit global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-07-29 15:05:56+00:00 1.0 1240071142 2830 next post will be the coin 2 mins to the binance pump time to shake the market up 2019-07-29 14:58:32+00:00 1.0 1240071142 2826 binance pump announcement ⏳ date monday tomorrow 29th july ⏰ time 0300 pm gmt utc time exchange binance partners more than 550000 cryptomembers +15 whale channels target 15 20 profit our july success rates are ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july ✅ 2287 blz binance 28 july 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-28 19:21:17+00:00 1.0 1240071142 2824 new binance pump analysis coin blz low 389 high 478 win exchange binance profit 2287 profit wooow ⏰please see the photo above 2287 profit do not you want that global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-07-28 17:09:42+00:00 1.0 1240071142 2818 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-07-28 16:55:34+00:00 1.0 1240071142 2814 5 hours left until the next pump on binance todays pump will be free for all meaning that everyone will receive the signal at the same time the signal will be given in the pumpsignal channel on telegram since alot of new members are asking which strategy is best to use when buying and selling buying the fastest way to buy is to use the market buy option shown in the picture below using the 100 buy option wont work since the price is moving up quickly instead use 75 to make sure your order fills and below selling the best way to sell is to sell slowly in parts as the price is moving up 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-28 12:06:04+00:00 1.0 1240071142 2813 guys you missed last 75 pump 3 days ago dont miss today our lot of pro vips get pump coin name 1 day ago and got almost doubled who invested 1 btc he turned it into 175 btc almost 7500 profit in single pump and who invested 5+ btcs got doubled as 875 btc 37500 profif its only single pump game and you will get lots of pumps in pro vip channel bitcoin now under 10k its on up trend now it will toch 30k soon next year 2020 so you have good chance to collect some btcs before its price high and this pump method is best way to collect fast btcs as almost doubled every time than waiting for 510 signal profit after waiting long ⏳ date thursday 28 july ⏰ time 1700 gmt exchange binance join now and start your journey 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-28 08:16:01+00:00 1.0 1240071142 2811 24 hours left until binance pump ⏳ date thursday 28 july ⏰ time 1700 gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 40 45 profit 50 discount for next 5 hour 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-27 17:12:01+00:00 1.0 1240071142 2808 hello team yesterday was spectacular rise in the pump the market is ready we reorganize the pump you can see the information below binance pump announcement ⏳ date thursday 28 july ⏰ time 1700 gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 40 45 profit ✅list of last 16 pumps result ✅ 34 snm binance ✅ 21 blz binance ✅ 19 ardr binance ✅ 18 rdn binance ✅ 10 req binance ✅ 15 storj binance ✅ 27 rdn binance ✅ 20 cdt binance ✅ 38 nav binance 18 may ✅ 70 nav binance 27 may ✅ 22504 pink bittrex 20 june ✅ 1875 ins binance 25 june ✅ 23057 nlg bittrex 27 june ✅ 6578 powr binance 4 july ✅ 3943 nav binance 13 july ✅ 8750 lrc binance 25 july total 94514 in 16 pumps 1 day ago or 1 hour ago we have the option to buy premium member contact pumpadmins 2019-07-26 13:46:59+00:00 1.0 1240071142 2805 new binance pump analysis coin lrc low 384 high 720 win exchange binance profit 875 profit wooow we bought our vip channel 1 day ago ⏰please see the photo above 875 profit do not you want that global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact pumpadmins 2019-07-25 20:20:04+00:00 1.0 1240071142 2797 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-07-25 19:55:23+00:00 1.0 1240071142 2791 23 hours left until binance pump ⏳ date thursday 25 july ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 30 40 profit as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 2000 gmt 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-24 21:00:25+00:00 1.0 1240071142 2788 hello everyone as you already know the current market conditions for altcoins is not looking very good compared to what we would like it to be btcs current dominance has taken the spotlight however we have a strong belief that one of the only ways to start the altcoin season has to come from big groups rather than outsiders as one of the biggest pump groups on binance it is our duty to make efforts in restoring altcoins to where we want them to be and the only way to do it is to provide good and long lasting pumps to restore faith in altcoins we must reunite together as a community and create strong powerful pumps to show outsiders that there is still hope in altcoins which is why our next pump will be special our team will do everything in their power to make sure that the next pump will be one of the best pumps we have done so far for this pump to work we will need to wait for better market conditions to show up which should be very soon we will invest heavily into marketing to bring an even bigger number of investors to our group as well if you would like to do your part you can invite anyone you know to our group or share our link on social media more details will follow soon stay tuned 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-17 12:13:04+00:00 1.0 1240071142 2787 hello everyone we are glad to find out that many people are messaging us saying that they still made some profits in the previous pump even though the pump signal was ranked we believe that we could have touched near 250 satoshis had we posted the signal exactly on time since many more people would have been ready and joined the pump which would have represented over a 50 gain and reached our target we will start preparing for the next pump and take all the necessary steps to make sure that the upcoming pump is perfect for everyone the next pump will be big we have already come up with our next strategy to make it bigger we will announce the new date very shortly stay tuned 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-15 14:48:28+00:00 1.0 1240071142 2785 new pump analysis coin nav low 142 high 198 win exchange binance profit 3943 profit wooow the next pump binance exchange we bought our vip channel 1 day ago 3943 profit do not you want that global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-13 17:06:09+00:00 1.0 1240071142 2781 next post will be the coin 5 mins to the binance pump lets make our coin the biggest gainer on binance time to shake the market up 2019-07-13 16:54:15+00:00 1.0 1240071142 2776 6 hour left until the binance pump ⏳ date 13 july today ⏰ time 1700 pm gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 20 30 profit 50 discount 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-13 11:20:10+00:00 1.0 1240071142 2775 binance pump announcement ⏳ date 13 july saturday ⏰ time 1700 pm gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 80 90 profit ✅list of last 14 pumps result ✅ 34 snm binance ✅ 21 blz binance ✅ 19 ardr binance ✅ 18 rdn binance ✅ 10 req binance ✅ 15 storj binance ✅ 27 rdn binance ✅ 20 cdt binance ✅ 38 nav binance 18 may ✅ 70 nav binance 27 may ✅ 22504 pink bittrex 20 june ✅ 1875 ins binance 25 june ✅ 23057 nlg bittrex 27 june ✅ 6578 powr binance 4 july total 81214 in 14 pumps 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-10 15:54:04+00:00 1.0 1240071142 2774 new pump analysis coin geo low 2533 high 7594 win exchange bittrex profit 199 profit wooow the next pump binance exchange we bought our vip channel 1 day ago 199 profit do not you want that global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-09 20:24:37+00:00 1.0 1240071142 2769 next post will be the coin 5 mins to the bittrex pump time to shake the market up 2019-07-09 19:56:01+00:00 1.0 1240071142 2763 surprise bittrex pump announcement ⏳ date tuesday 9 july todayyyy ⏰ time 2000 gmt exchange binance partners more than 550000 cryptomembers +5 whale channels target 180 290 profit few members joined some other premium channel because of lower fees and now they regret discuss with us and we will prove that we are best choose wisely 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-09 06:08:23+00:00 1.0 1240071142 2752 binance pump announcement ⏳ date 13 july saturday ⏰ time 1700 pm gmt exchange binance partners more than 550000 cryptomembers +15 whale channels target 80 90 profit ✅list of last 14 pumps result ✅ 34 snm binance ✅ 21 blz binance ✅ 19 ardr binance ✅ 18 rdn binance ✅ 10 req binance ✅ 15 storj binance ✅ 27 rdn binance ✅ 20 cdt binance ✅ 38 nav binance 18 may ✅ 70 nav binance 27 may ✅ 22504 pink bittrex 20 june ✅ 1875 ins binance 25 june ✅ 23057 nlg bittrex 27 june ✅ 6578 powr binance 4 july total 81214 in 14 pumps 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-06 06:06:40+00:00 1.0 1240071142 2750 new pump analysis coin powr low 903 high 1497 win exchange binance profit 6578 wooow we bought our vip channel 1 day ago 6578 profit do not you want that global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-03 21:12:43+00:00 1.0 1240071142 2743 next post will be the coin 5 mins to the binance pump target 70 80 profit time to shake the market up 2019-07-03 20:55:06+00:00 1.0 1240071142 2742 last 15 mins to the binance pump target 70 80 profit exchange binance take the time to relax and practise 1 day ago or 1 hour ago we have the vip option to buy premium member contact globalpumpadmin 2019-07-03 20:44:20+00:00 1.0 1240071142 2740 1 hour left until the binance pump we are close to ready however the most important thing is that the members are ready tonight everyone has to be more patient and focussed like we said we will be focussing on taking profits in the initial spike during the pump 1 when selling do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will all need to set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 the more walls the more support instead of just buying and selling there are a lot of things you can do to help make the pump succesful create buy walls shill on social media never panic sell the pump team 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-03 20:00:22+00:00 1.0 1240071142 2739 2 hour left until the binance pump we are working very hard to get the social media campaign and the coördination ready for the pump we hope to finish everything in time which means we would not have to delay the pump more information coming soon 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-03 18:57:06+00:00 1.0 1240071142 2738 6 hour left until the binance pump tonight we will be focussing on the initial spike rather than the second wave since altcoins are losing dominance an initial spike of 85+ will be easy to create the second wave will follow by itself since this is a coördinated pump it will be easy to take profits in the initial spike the pump signal at exactly 9 pm gmt will be given in two messages a lot of people requested information on why we picked that particular coin this will be in the first message without the coin name in it in the second message we will post the coin name the buy area and the targets after that the team will start spreading fomo news via social media a total of 10 million social media followers will be seeing the news and will fomo in in a few seconds be sure to look at all the last pumps and learn from them go one year back in the chat and look at the coördinated pumps the pump team 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-03 15:10:34+00:00 1.0 1240071142 2734 dear members 1 day left until the binance pump at this moment the market is in a fomo zone this means that every little move an altcoin makes is followed by a lot of people that want to hedge btc good examples were link and matic this is the perfect moment for a pump the market is insecure and does not know what to do sell bitcoin altseason a lot of questions are being asked this is the perfect time for us to act on that if we manage to pump a coin above 70 tomorrow with a nice hold outsiders will jump on instantly ⏳ date july 2 ⏰ time 9 pm gmt exchange binance partners more than 550000 cryptomembers +15 whale channels even better this pump will be coördinated like back in the days there will be a clear job for everyone there will be a buy area and a sell area cloudflare is having network performance issues so the discord is down for now keep inviting tomorrow will be amazing the pump team 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-07-02 18:56:05+00:00 1.0 1240071142 2733 hello everyone we have decided to postpone our pump for friday because of btcs current unstability as you know we have plans to make this pump one of the biggest pump in global pump group history and for this we needed all the good market conditions to be met the altcoin market has slowed down a little because of btcs current downturn one thing we know for sure is that it will be worth the wait the safety of our users funds is our 1 priority and it will always be we are sorry for the delay we can confirm that we will 100 be pumping on friday with no more delay thank you for understanding the new pump date will be date friday july 5 time 1700 pm gmt exchange binance 2019-06-30 17:31:16+00:00 1.0 1240071142 2729 24 hours left until the binance pump we made discounts on vip member prices do not miss this opportunity ⏳ date sunday june 30 ⏰ time 1800 pm gmt exchange binance partners more than 250000 cryptomembers +8 whale channels we made discounts on vip member prices do not miss this opportunity 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-06-29 18:22:34+00:00 1.0 1240071142 2726 new pump analysis coin nlg low 121 high 400 win exchange bittrex profit 23057 wooow we bought our vip channel 1 day ago 23057 profit do not you want that global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-06-27 20:07:21+00:00 1.0 1240071142 2720 next post will be the coin 5 mins to the bittrex pump time to shake the market up 2019-06-27 19:55:15+00:00 1.0 1240071142 2712 today bittrex pump we will organize a pump at the bittrex exchange in line with the high demand from our members we will do this together with a very very big pump channel committee you will not believe your eyes according to the committee decision vip member limit was determined closing soon so hurry ‍♂️‍♂️‍♂️ pump information ⏳ date today ⏰ time 2000 gmt exchange bittrex partners more than 350000 cryptomembers +5 whale channels target 120 140 profit 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-06-26 21:28:11+00:00 1.0 1240071142 2711 binance pump announcement hello everyone the next official pump will be scheduled for date sunday june 30 time 1800 pm gmt exchange binance we expect the altcoin market to have recovered by that time over the last few weeks we have gained thousands of new members we expect our volume to be big this upcoming pump will be free for all meaning it will be a fair pump and everyone will receive the signal at the same time 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-06-26 06:04:19+00:00 1.0 1240071142 2708 new pump analysis coin ins low 320 high 380 win exchange binance profit 1875 we bought our vip channel 1 day ago 1875 profit do not you want that global pump care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-06-25 16:06:18+00:00 1.0 1240071142 2705 next post will be the coin 2 mins to the binance pump time to shake the market up 2019-06-25 15:58:46+00:00 1.0 1240071142 2699 new pump announcement we are organizing a pump today at 16gmt on binance we expect to see at least 3050 pump all you have to do is buy and hold and wait for the fomo which will lead the price to be moved to 2030 according to the committee decision vip member limit was determined closing soon so hurry ‍♂️‍♂️‍♂️ pump information ⏳ date 25 june ⏰ time 1600 gmt exchange binance partners more than 350000 cryptomembers +5 whale channels target 20 30 profit 1 day ago or 1 hour ago we have the option to buy premium member contact globalpumpadmin 2019-06-25 09:50:29+00:00 1.0 1240071142 2682 the date of our next signal is coming soon will be two signal this week with two different targets exchange binance and bittrex 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-22 10:05:32+00:00 1.0 1240071142 2678 pink rose to 215 meanwhile our goal was only 130 huge pump in terms of volume and next pump will have deeper order books to slow down the rise and make sure everyone get in at lower prices good job 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-20 21:03:37+00:00 1.0 1240071142 2677 new pump analysis coin pink low 19 high 63 win exchange bittrex profit 22504 ✅ friends please check please see the above images we bought our vip channel 1 day ago 22504 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-20 20:26:35+00:00 1.0 1240071142 2668 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-06-20 19:55:45+00:00 1.0 1240071142 2663 2 hours left until the pump things are looking incredible for todays pump 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-20 18:05:42+00:00 1.0 1240071142 2659 new pump announcement we will organize a pump at the bittrex exchange in line with the high demand from our members we will do this together with a very very big pump channel committee you will not believe your eyes according to the committee decision vip member limit was determined closing soon so hurry ‍♂️‍♂️‍♂️ pump information ⏳ date thursday 20 june ⏰ time 2000 gmt exchange bittrex partners more than 350000 cryptomembers +5 whale channels target 120 140 profit 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-19 17:47:58+00:00 1.0 1240071142 2658 dear members the date of our next signal is coming soon will be two signal this week with two different targets exchange binance •registrations for the vip and vip + group are open enjoy it as soon as possible for insured and riskfree winnings •win by pump free group 2100 vip group 2058 1 hour before vip+ group 2100 1 day before 1 day ago or 1 hour ago we have the option to buy do not miss this chance the places are limited contact rocketsupportadmin 2019-06-19 14:39:18+00:00 1.0 1240071142 2657 new pump analysis coin brd low 4692 high 5358 win exchange binance profit 1104 ✅ friends please check please see the above images we bought our vip channel 1 day ago 1104 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-17 15:14:04+00:00 1.0 1240071142 2652 next post will be the coin 2 mins to the binance pump time to shake the market up 2019-06-17 14:58:19+00:00 1.0 1240071142 2648 pump announcement btc pump so hard and alt season is coming its the time for us to buy more and more altcoin now the next pump will be scheduled ⏳ date monday 17th june ⏰ time 0300 pm gmt utc time exchange binance partners more than 350000 cryptomembers +10 whale channels premium member contact rocketsupportadmin and rocketsupportadmins 2019-06-16 21:30:39+00:00 1.0 1240071142 2627 new pump analysis coin snm low 345 high 586 win exchange binance profit 8143 ✅ friends please check please see the above images we bought our vip channel 1 day ago 8143 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-02 22:00:01+00:00 1.0 1240071142 2626 1 hour after the initial pump this is a great pump so far it is still going and 40 up the pump started at 345 and reached 586 so far that is a gain of 75+ this is incredible the chart is looking great and we created 600btc volume so far the resistance is at 500 at the moment if we break that we could see a lot of upside 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-02 21:58:43+00:00 1.0 1240071142 2622 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-06-02 20:55:09+00:00 1.0 1240071142 2617 remember the success of poa coin 7394 profit 5 hours left untill the binance pump more information will follow after 5 hours it will still be the same you will not believe your eyes vip membership prices will rise today hurry up to become a member 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-02 16:03:41+00:00 1.0 1240071142 2615 last 8 hours to the binance pump dear members today is the day 8 hours left and we will mass buy a coin the team is totally ready the strategy will be the same as last pump our team had contact with various news channels once the initial pump is done the buys of you guys and outsiders see the coin going up we will spread news via various news channels which make outsiders interested and slowly buy in on the coin this gives our members a perfect window to sell their coins with a decent profit the pump team ⏳ date 02062019 today ⏰ time 9pm gmt exchange binance partners more than 350000 cryptomembers target 55 85 profit +10 whale channels 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-02 13:12:07+00:00 1.0 1240071142 2613 dear members less than one days left until the big pump less than one days and we will unite and mass buy a coin while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in rocketpumpsignals fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple the hype is growing the amount of social media messages is booming the pump after the rebirth has always been one of the biggest a lot of people were watching from the sidelines last pump but since last pump was so succesful and created a total of 3000 btc volume this pump will be a lot bigger in the coming days we will announce all the details for sundays pump for now all we can say is get ready practise and read all the advice we gave you sunday is the day that we will stand up and show the whales how to pump a coin the pump team ⏳ date 02062019 sunday ⏰ time 9pm gmt exchange binance partners more than 350000 cryptomembers target 55 85 profit +10 whale channels 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-06-01 10:53:22+00:00 1.0 1240071142 2612 on sunday there will be a much big pump like poa coin our target is 80 our pump target today was 20 but our vip members could do 16 on sunday there will be a lucrative pump for everyone target 80 ⏳ date 02062019 sunday ⏰ time 9pm gmt exchange binance partners more than 350000 cryptomembers target 55 85 profit +10 whale channels 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-31 15:18:00+00:00 1.0 1240071142 2611 new pump analysis coin ppt low 1124 high 1311 win exchange binance profit 1663 ✅ friends please check ♻️ ask for proof photos from us please see the above images we bought our vip channel 1 day ago 1663 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-31 15:10:40+00:00 1.0 1240071142 2607 next post will be the coin 2 mins to the binance pump time to shake the market up 2019-05-31 14:58:09+00:00 1.0 1240071142 2597 dear members of crypto pump signals less than three days left in the coming days we will inform you about how the next pump is going to look like the exact strategy and our prediction one question is constantly asked to our helpers ”why did you decide to pump last week” the main reason for this is that we saw an opportunity the bitcoin price was going up which means more people entering the market coming sunday we expect something bigger we expect more volume and a higher price rise the amount of active members is growing quick we highly advice you to join the vip membership have a good day the pump team 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-30 22:37:28+00:00 1.0 1240071142 2594 last 21 hours to the binance pump instructions open binance + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button binance will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors or as a vip member buy the coin name 1 day ago in advance or 1 hour ago in advance enjoy a comfortable way of making money the choice is yours please notify your friends ⏳ date 31th may friday tomorrow ⏰ time 3 pm gmt utc time exchange binance ‍‍‍ participants more than 200000 cryptoinvestors target 25 35 +10 whale channels and ⏳ date 02062019 sunday ⏰ time 9pm gmt exchange binance partners more than 350000 cryptomembers target 55 85 profit +10 whale channels lets do this the pump team 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-30 18:25:36+00:00 1.0 1240071142 2592 31th may pump announcement we will change some rules to improve the experiance of everyone now lets talk about the signals on binance we will make 2 this week the 1st will have a power of + 20 31 may to + 802 june the second will be much stronger be ready everyone and have a good day btc pump so hard and alt season is coming its the time for us to buy more and more altcoin now the next pump will be scheduled ⏳ time and date friday tomorrow 31th may at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 200000 cryptoinvestors target 25 35 +10 whale channels 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-30 12:14:29+00:00 1.0 1240071142 2591 pump announcement hi guys we organize a very very big pump last pump increased by 70 our target is sunday day 80 ✅ last 2 pumps result ✅ 38 nav coin 18 may ✅ 70 poa coin 26 may ❓ 80 coin 02 june a lot of people are asking us what is like to be a member of vip paradise room well more relevant question would be how different are we from other vip rooms what else make us different from other crypto vip channels we dont post signals just like that and leave it on luck that it will raise we are doing difficult technical analysis and fundamental analysis for each our signal also we give updates on each call so you do not need to worry that you will get stuck in some coin like in other vip channels we heard people did ⏳ date 02062019 sunday ⏰ time 9pm gmt exchange binance partners more than 350000 cryptomembers target 55 85 profit 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-30 08:24:08+00:00 1.0 1240071142 2587 announcement dear members vip membership option approached the member limit were receiving alerts from our partners we wont get more vips to make the pump better prices will increase after june 1 last 3 days after july 1 no new vip member will be accepted become a partner in this huge investment ⏳ date 02062019 sunday ⏰ time 9pm gmt exchange binance partners more than 350000 cryptomembers target 55 85 profit 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-28 21:03:51+00:00 1.0 1240071142 2586 new pump announcement dear members the last pump was around 23 hours ago rocket pump signals created 3000 bitcoin in volume and a steady price of 50 up while poa is still moving we like to schedule our next pump we can organize a pump by this date we will decide according to the market situation ⏳ date 02062019 ⏰ time 9pm gmt exchange binance partners more than 350000 cryptomembers target 55 85 profit join vip and earn huge zero effort required overnight success 100 legit free income 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsupportadmin 2019-05-28 17:49:58+00:00 1.0 1240071142 2584 dear members poa is still making a lot of waves and moves it is far from finished the next pump will be scheduled soon one last message a lot of people are proud of the fact that we as a group pulled this of tonight btc was rising this means more people want to stay in bitcoin instead of buying into alts we still did an amazing job rocket is back the pumps will only be growing from now poa is still making moves new pump announced soon start inviting to grow the group for an even bigger pump and a time advantage next pump this was a great start the pump team 1 day ago or 1 ago before we have the option to buy premium member contact rocketsadmins 2019-05-26 23:14:13+00:00 1.0 1240071142 2583 1 hour after the initial pump this was one of the best pumps we had it is still going and 30 up the pump started at 380 and reached 696 so far that is a gain of 80+ this is incredible the chart is looking great and we created 700btc volume so far for a rebirth of rockets this is more than amazing we expected something big but the group got something even bigger the chat is now opened thanks for all the positive direct messages see this beautiful message from our vip members 2019-05-26 22:21:11+00:00 1.0 1240071142 2581 new pump analysis coin poa low 390 high 696 win exchange binance profit 7394 ✅ friends please check ♻️ ask for proof photos from us please see the above images we bought our vip channel 1 day ago 7394 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits 1 day before or 1 hour before we have the option to buy premium member contact rocketsadmins 2019-05-26 21:50:51+00:00 1.0 1240071142 2579 poa coin amazing pump 2019-05-26 21:50:26+00:00 1.0 1240071142 2569 next post will be the coin 4 mins to the binance pump time to shake the market up 2019-05-26 20:56:28+00:00 1.0 1240071142 2565 last 1 hour 20 mins to big pump bitcoin pump was done woooww it was great for us pump will be great target 60 profit great we got a lot of direct messages of people buying bitcoin just for our pump this small pump in btc is perfect for tonights pump 1 day before or 1 hour before we have the option to buy premium member contact rocketsadmins 2019-05-26 19:43:27+00:00 1.0 1240071142 2559 7 hours left until the pump on binance a lot of people are asking us what is like to be a member of vip paradise room well more relevant question would be how different are we from other vip rooms first of all we do care about you it is not like you just join us and we let you in our vip room with 59 signals and pump signals with 98 accuracy daily updates on market situation and with bitcoin insider info just like that at the time you join our vip paradise room we also give you a personal trading coach who is really ready to help you with anything anytime all day long he will help you with your crypto portfolio trading strategy and much more also once you join you will get a special education material 510 minutes of reading which will teach you how to follow our signals properly and how to maximize you profits what else make us different from other crypto vip channels we dont post signals just like that and leave it on luck that it will raise we are doing difficult technical analysis and fundamental analysis for each our signal also we give updates on each call so you do not need to worry that you will get stuck in some coin like in other vip channels we heard people did the pump team 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsadmins 2019-05-26 14:01:46+00:00 1.0 1240071142 2557 9 hours 30 mins left until the pump on binance dear members we are ready for today only 9 hours and 30 minutes left yesterday i spoke about a longterm strategy a lot of people dmed me about it it is a quite simple strategy our team had contact with various news channels once the initial pump is done the buys of you guys and outsiders see the coin going up we will spread news via various news channels which make outsiders interested and slowly buy in on the coin this gives our members a perfect window to sell their coins with a decent profit ⏳ date today ⏰time 9 pm gmt exchange binance ‍‍‍ participants more than 400000 cryptoinvestors +10 whale channels target 30 40 the pump team 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsadmins 2019-05-26 11:30:44+00:00 1.0 1240071142 2556 1 day left until the pump on binance dear members one more day until the pump the team is working overtime to make sure tomorrow will be the best and the safest pump we are nearly ready are you some good advice to prepare have both the web app and the desktop app of binance opened put limit sell orders after you bought if we set a buy and sell goal try not to buy or sell above that goal practise buying quickly 1 day and 9 hours left ⏳ date may 26052019 ⏰time 9 pm gmt exchange binance ‍‍‍ participants more than 400000 cryptoinvestors +10 whale channels target 20 30 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsadmins 2019-05-25 11:40:24+00:00 1.0 1240071142 2555 dear members the day of the pump is approaching three more days and we will unite and mass buy a coin while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in rocket pump signals fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple more people means a bigger rise in price which means a bigger profit so do not forget to invite people to our telegram your pump team ⏳ date may 26052019 ⏰time 9 pm gmt exchange binance ‍‍‍ participants more than 400000 cryptoinvestors +10 whale channels target 20 30 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsadmins 2019-05-23 18:51:20+00:00 1.0 1240071142 2553 important dear members 4 more days until the pump the team would like to inform you about next pump the pump will be done in collaboration with the biggest bitcoin investment group the last time we did a collaboration was in 2018 the pump was on a coin called dgd which was one of the biggest pumps we have done with gains over 600 weekly chart will be posted above this is one of the pumps that made our group like it is today coming sunday we expect something big but a lot smaller than the dgd pump in the start of 2018 the reason for this is that right now we are in a different point of the bearbull market cycle the amount of people that want to pump want to make profits and are tired of losing money trading against whales are not that big yet in conclusion right now we are a pretty small group compared to the whales however we need to be more united than ever we want everyone to let their voice be heard more in discussions about how we all together can lead the market this is a group for the people the discussion channel on vip channel is fully opened right now and the invites are aswell once the real bull run for bitcoin starts the member count will exponentially grow with it we are here for you do you want to get all of this gain then join these pumps as vip members 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsadmins 2019-05-22 10:02:35+00:00 1.0 1240071142 2541 overall a great pump we managed to hit top gainer and hold it for a few minutes at 38 today we picked a coin that was uptrending which was the right thing to do in this type of market we are currently still uptrending nicely and we are on our way to the 3rd wave as you can see the 2nd wave formed after we hit the bottom and the price went right back up when the fomo started to kick in alot of profit potential if you bought early and bought each time after the price went down we are already receiving many messages of appreciation thank you for participating we will announce our next pump soon stay tuned 1 day before or 1 hour before we have the option to buy premium member contact rocketsadmins 2019-05-18 19:15:38+00:00 1.0 1240071142 2540 new pump analysis coin nav low 282 high 389 win exchange binance profit 3794 ✅ friends please check ♻️ ask for proof photos from us we bought our vip channel 1 day ago 3794 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits 1 day before or 1 hour before we have the option to buy premium member contact rocketsadmins 2019-05-18 17:18:20+00:00 1.0 1240071142 2532 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-05-18 16:55:54+00:00 1.0 1240071142 2530 10 minutes left be ready all the altcoins are currently uptrending our chances of making this pump a good success is very high 2019-05-18 16:50:53+00:00 1.0 1240071142 2527 last 3 hours to the binance pump join vip and earn huge +10 whale channels collaboration pumps zero effort required overnight success 100 legit free income last 3 hours to the binance pump 1 day before or 1 hour before we have the option to buy premium member contact rocketsadmins 2019-05-18 14:17:36+00:00 1.0 1240071142 2525 new binance pump announcement ⏳ date may 18 saturday ⏰time 1700 pm gmt exchange binance ‍‍‍ participants more than 400000 cryptoinvestors +10 whale channels target 20 30 everything is in our favor for a great pump if the market conditions are the same on saturday and if our volume is big enough we can create one of the biggest pumps binance has seen recently and for this we need as many people as possible to participate spread the word we are your rocketteam and we do care about you 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsadmins 2019-05-17 20:21:21+00:00 1.0 1240071142 2517 new binance pump announcement ⏳ date may 18 saturday ⏰time 1700 pm gmt exchange binance ‍‍‍ participants more than 400000 cryptoinvestors +10 whale channels target 20 30 everything is in our favor for a great pump if the market conditions are the same on saturday and if our volume is big enough we can create one of the biggest pumps binance has seen recently and for this we need as many people as possible to participate spread the word we are your rocketteam and we do care about you 1 day ago or 1 hour ago we have the option to buy premium member contact rocketsadmins 2019-05-15 16:58:05+00:00 1.0 1240071142 2510 new pump analysis coin cdt low 105 high 132 win exchange binance profit 2045 ✅ friends please check ♻️ ask for proof photos from us we bought our vip channel 1 day ago 2045 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits next pump tomorrow 1 day before or 1 hour before we have the option to buy premium member contact rocketsadmin 2019-05-13 15:15:04+00:00 1.0 1240071142 2505 next post will be the coin 10 mins to the binance pump time to shake the market up 2019-05-13 14:52:28+00:00 1.0 1240071142 2500 last 6 hours to the binance pump ⏳ time and date today at 300 pm gmt utc time exchange binance our vip members buying the coin name 1 day ago please ask for a photo of our vip channel and the price is now very balanced it stands in a beautiful spot ⏰a great environment for the pump this business is investment into the future send us a message if you want to cooperate with us join vip and earn huge +10 whale channels collaboration pumps zero effort required overnight success 100 legit free income last 6 hours to the binance pump 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-05-13 10:05:10+00:00 1.0 1240071142 2499 a lot of people are asking us what is like to be a member of vip paradise room well more relevant question would be how different are we from other vip rooms first of all we do care about you it is not like you just join us and we let you in our vip room with 59 signals and pump signals with 98 accuracy daily updates on market situation and with bitcoin insider info just like that at the time you join our vip paradise room we also give you a personal trading coach who is really ready to help you with anything anytime all day long he will help you with your crypto portfolio trading strategy and much more also once you join you will get a special education material 510 minutes of reading which will teach you how to follow our signals properly and how to maximize you profits what else make us different from other crypto vip channels we dont post signals just like that and leave it on luck that it will raise we are doing difficult technical analysis and fundamental analysis for each our signal also we give updates on each call so you do not need to worry that you will get stuck in some coin like in other vip channels we heard people did it all sounds good doesnt it but it may not be true you can think because of that we have made a result channel where we post our profits we make in our vip paradise room everything is directly forwarded from our vip room so you can be sure we are real and not like some other channels which are just scam if you join our vip result channel link bellow you can get a small feel of how it is to be a part of our vip paradise family but the real feeling of what is it to be in our vip paradise family with all that bonuses along with the best profitable signals available you get after joining us yeah we have special chatroom for vip members only as well and also as only channel on the telegram we offer you a possibility to give you your money for entry back if you are not satisfied because we are so confident that once you join you will never leave us we are your paradiseteam and we do care about you pump announcement 1 ⏳ time and date monday 13th may at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 +10 whale channels and 2 ⏳ time and date monday 14th may at 0200 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 +10 whale channels join vip and earn huge zero effort required overnight success 100 legit free income 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-05-12 14:10:00+00:00 1.0 1240071142 2497 new binance pump announcement ⏳ time and date monday 13th may at 0300 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 +10 whale channels pump result rdn start price 3868 sat weve reached 4950 sat profit 2797 although most of altcoin dumped so much yesterday rdn pumped so hard near 70 btc volume joined our pump and 2797profit in the red market is great weve also received many positive comments from members who made between 10 and 27 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target join vip and earn huge zero effort required overnight success 100 legit free income 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-05-11 14:16:42+00:00 1.0 1240071142 2494 new binance pump analysis coin rdn low 3868 high 4950 win exchange binance profit 2797 ✅ friends please check ♻ ask for proof photos from us we bought our vip channel 1 day ago 2719 profit do not you want that rocket pump signals care about your money our vip members buy 1 day ago provided great profits 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-05-10 16:23:11+00:00 1.0 1240071142 2488 next post will be the coin 10 mins to the binance pump time to shake the market up 2019-05-10 15:50:33+00:00 1.0 1240071142 2484 last 2 hours to the binance pump are we ready for today ✊as 10 whales channel we are ready ⏰please set your alarms ⏱today 3 pm gmt there will be a very very big pump watch you wont believe your eyes if you want to become a vip member please send a message coin name will be announced in our vip channel after 1 hour ⏰today is the big day 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-05-10 13:00:19+00:00 1.0 1240071142 2481 new binance pump announcement ⏳ date friday tomorrow 10th may ⏰ time 300pm gmt exchange binance partners more than 350000 cryptomembers btc pump so hard all of altcoins are in the bottom now so its the time for us to buy the cheap altcoin join vip and earn huge zero effort required overnight success 100 legit free income 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-05-09 13:40:35+00:00 1.0 1240071142 2480 hello everyone you know were partnering with pump organizations partner with big whale groups and every day we add strength to our power we made great deals quick update on our upcoming pump we know many people are patiently waiting we are currently still waiting for better market conditions before scheduling our next pump we want to make sure that our next pump goes perfectly according to plan and for that we need better market conditions with the recent altcoin selloff alot of the selling pressure is gone and many coins have easy orderbooks which makes it easier to pump any coin to above 50 however we believe that since outsider activity is not at an optimal level we prefer to wait for everything to return to normal we will keep you updated once we are ready 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-05-08 15:13:11+00:00 1.0 1240071142 2426 hello everyone we will be planning our next pump soon the official date will be announced once the market conditions are stable and suitable for a pump which should be within a few days stay tuned 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-30 17:43:00+00:00 1.0 1240071142 2422 hello everyone we will be planning our next pump soon the official date will be announced once the market conditions are stable and suitable for a pump which should be within a few days stay tuned 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-30 14:06:01+00:00 1.0 1240071142 2408 new binance pump analysis coin req low 381 high 417 win exchange binance profit 944 our vip members buy 1 day ago provided great profits rocket pump signals is not just a name but its a brand the only channel which provides more accurate and exact signals than others rocket pump signals care about your money risk of vip membership is zero 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-29 15:04:26+00:00 1.0 1240071142 2403 next post will be the coin 10 mins to the binance pump time to shake the market up 2019-04-29 14:50:29+00:00 1.0 1240071142 2399 3 hour left until the pump on binance ⏳ date monday 29042019 ⏰ time 300pm gmt exchange binance partners more than 350000 cryptomembers 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-29 12:07:23+00:00 1.0 1240071142 2398 new binance pump announcement ⏳ date monday 29042019 ⏰ time 300pm gmt exchange binance partners more than 350000 cryptomembers we have spotted a great opportunity therefore we will schedule our next pump quickly with the success of our previous pump we are expecting this one to have even more volume and reach higher gains join vip and earn huge zero effort required overnight success 100 legit free income premium member contact bullpumptrader 2019-04-28 18:01:56+00:00 1.0 1240071142 2385 thank you all for participating normally to protect our members assets we would not schedule a pump during these market conditions however we decided to pick a coin that was deeply oversold and we decided to keep going with the pump even during these market conditions because we believed that we could overcome them and redirect all the attention from traders on binance to our coin since 95 of the coins are currently in the red understandably our volume reflected the current state in which the market is result we peaked at around 17 on rdn if you are still holding we recommend to not sell the price will recover shortly we will wait until the market is stable before scheduling our next pump premium member contact bullpumptrader 2019-04-24 18:27:28+00:00 1.0 1240071142 2384 new binance pump analysis coin rdn low 5498 high 6491 win exchange binance profit 1806 our vip members buy 1 day ago provided great profits rocket pump signals is not just a name but its a brand the only channel which provides more accurate and exact signals than others rocket pump signals care about your money risk of vip membership is zero 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-24 17:06:26+00:00 1.0 1240071142 2379 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-04-24 16:54:53+00:00 1.0 1240071142 2374 4 hour left until the mega pump on binance ⏳ date wednesday april 24 ⏰ time 1700 pm gmt exchange binance partners more than 350000 cryptomembers target 25 35 45 profit your profit is guranteed do not forget to ask for proof join vip and earn huge zero effort required overnight success 100 legit free income 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-24 13:06:01+00:00 1.0 1240071142 2373 6 hours left until the pump on binance with the current market conditions our coin will easily get alot more attraction our goal today will be to maintain top gainer position and get as much activity as possible on our coin 2019-04-24 10:55:01+00:00 1.0 1240071142 2369 1 day left before the next pump on binance the market is looking ready for a nice pump ⏳ date wednesday april 24 ⏰ time 1700 pm gmt exchange binance partners more than 350000 cryptomembers target 25 35 45 profit 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-23 13:51:21+00:00 1.0 1240071142 2352 new binance pump announcement ⏳ date wednesday april 24 ⏰ time 1700 pm gmt exchange binance partners more than 350000 cryptomembers target 25 35 45 profit we have spotted a great opportunity therefore we will schedule our next pump quickly with the success of our previous pump we are expecting this one to have even more volume and reach higher gains join vip and earn huge zero effort required overnight success 100 legit free income premium member contact bullpumptrader 2019-04-20 14:11:38+00:00 1.0 1240071142 2344 + 1995 in a few seconds we will try to do better for the next signal yes as before the + 100 we miss it too around 180 btc was bought during our pump it is very unfortunate that we picked a bad coin today because any good coin could have gone up over 100 with this amount of volume we will make it up for everyone on the next pump it is a promise but very good result congratulations to you all please review join vip and earn huge zero effort required overnight success 100 legit free income premium member contact bullpumptrader 2019-04-17 18:06:25+00:00 1.0 1240071142 2343 new binance pump analysis coin ardr low 1488 high 1785 win exchange binance profit 1995 as you can see we shared btc pump signal before any others channel and its pumping hard now the only channel you know whose signal and trend is more accurate and perfect than others when everyone is posting about dump we got a secret news about pump and if you had followed our signal then sure you are now in good profit stay tuned for more ✌✌✌ our vip members buy 1 day ago provided great profits rocket pump signals is not just a name but its a brand the only channel which provides more accurate and exact signals than others rocket pump signals care about your money risk of vip membership is zero 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-17 17:08:20+00:00 1.0 1240071142 2338 next post will be the coin rocket pump presents 5 mins to the binance pump time to shake the market up 2019-04-17 16:55:15+00:00 1.0 1240071142 2335 3 hours left until the pump on binance 2019-04-17 14:06:43+00:00 1.0 1240071142 2334 5 hours and 30 minutes left until the pump on binance 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-17 11:32:25+00:00 1.0 1240071142 2330 are we ready for tomorrow ⏰please set your alarms ⏱tomorrow 5 pm gmt there will be a very very big pump watch you wont believe your eyes if you want to become a vip member please send a message coin name will be announced in our vip channel after 1 hour ⏰tomorrow is the big day binance pump this is why we decide to have a pump this sunday ⏳ date wednesday april 17 ⏰ time 1700 pm gmt exchange binance partners more than 350000 cryptomembers target 25 35 45 profit 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-16 18:06:25+00:00 1.0 1240071142 2327 new binance pump announcement ⏳ date wednesday april 17 ⏰ time 1700 pm gmt exchange binance partners more than 350000 cryptomembers target 25 35 45 profit we have spotted a great opportunity therefore we will schedule our next pump quickly with the success of our previous pump we are expecting this one to have even more volume and reach higher gains join vip and earn huge zero effort required overnight success 100 legit free income premium member contact bullpumptrader 2019-04-14 17:29:19+00:00 1.0 1240071142 2323 binance pump analysis coin blz low 1340 high 1630 win exchange binance profit 2164 amazing looking chart this is the type of chart we want to look for in every pump we have recently stopped advertising our vip group because we have capped the amount of members we are accepting today we will allow 10 more members to join our vip group if you would like to join contact bullpumptrader risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-13 18:00:26+00:00 1.0 1240071142 2317 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-04-13 16:55:03+00:00 1.0 1240071142 2315 last 15 mins to the binance pump time 1700 pm gmt 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-13 16:44:12+00:00 1.0 1240071142 2313 1 day left until the mega pump on binance date saturday april 13 time 1700 pm gmt exchange binance ⌚ make sure youre ready last 24 hours target 25 35 40 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-12 14:38:33+00:00 1.0 1240071142 2311 binance pump announcement hello everyone we are ready to start pumping again and we will start doing 2 to 3 pumps every week as we used to starting this week the next pump will be scheduled for date saturday april 13 time 1700 pm gmt exchange binance we will be expecting great volume as usual risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-08 16:46:42+00:00 1.0 1240071142 2302 friends have made a great pump today please see the photo above many of our members concern is that they lost much in crypto world and willing to earn good profit after losing money or scam by other group people come back to us and joined premium membership now they are earning huge so please beware of scammers before joining premium you can ask for proof of any coin whose result is posted here we mentioned multiple times that the longer you wait more you lose profit next pump ⏳ date 07042019 ⏳ 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-04 17:15:22+00:00 1.0 1240071142 2300 pump analysis coin snm low 571 high 770 win exchange binance profit 3485 risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-04 14:07:03+00:00 1.0 1240071142 2294 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-04-04 13:25:21+00:00 1.0 1240071142 2288 dear members we scheduled the rocket pump for today on 4th of april date 4th of april time 130 pm gmt participants 300k+ telegram users exchange binance info it will take approximately 1530 minutes to reach target ‼ you gotta be fast enough to buy that coin and our target is at least 40100+ market is good right now btc jumped over 1200 in past 48 hours alts are available in dip due to this thing it will help you to get good profit because you will get dip entry and can make quick profit through our this event stay tuned 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-04 01:57:11+00:00 1.0 1240071142 2284 yes friends march pumps are finished its about to meet in april ast binance 4743 02032019 grs binance 3489 05032019 blz binance 1420 15032019 brd binance 797 17032019 cure bittrex 12503 19032019 rdn binance 403 24032019 you can check from our previous shares or exchange sites next breakout coin available in premium still thinking premium members earning huge the longer you wait more you lose profit book your slot now ‍♂️ some of you may think that we are sharing highlow results after breakout but reality is that we share these buy and sell targets in premium channel before breakout if you are interested in premium membership you can ask proof of any coin name whose results were posted in this channel we provide you with date and time we made 23352 profit in 30 days our vip members won all of this rate 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-04-02 11:51:17+00:00 1.0 1240071142 2281 new binance pump analysis coin rdn low 8190 high 8581 win exchange binance profit 403 please see the above photo risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-24 19:22:06+00:00 1.0 1240071142 2273 next post will be the coin 5 mins to the bittrex pump time to shake the market up 2019-03-24 18:55:51+00:00 1.0 1240071142 2268 new binance pump announcement ⏳ date 24032019 ⏰ time 1900 gmt exchange binance partners more than 350000 cryptoinvestors many of our members concern is that they lost much in crypto world and willing to earn good profit after losing money or scam by other group people come back to us and joined premium membership now they are earning huge so please beware of scammers before joining premium you can ask for proof of any coin whose result is posted here we mentioned multiple times that the longer you wait more you lose profit 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-23 15:12:24+00:00 1.0 1240071142 2267 march pump data and profit success table ast binance 4743 02032019 grs binance 3489 05032019 blz binance 1420 15032019 brd binance 797 17032019 cure bittrex 12503 19032019 we made 22952 profit in 20 days our vip members won all of this rate you can check from our previous shares or exchange sites vip members have earned 22952 on 20 days next binance pump date it will be announced soon a signal advantage for our pumps guaranteed profits guaranteed bitmex and binance profits occasionnal vip signals by technical analysis expert 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-20 19:10:44+00:00 1.0 1240071142 2265 new bittrex pump analysis coin cure low 1318 high 2966 win exchange bittrex profit 12503 please see the above photo risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-19 20:16:19+00:00 1.0 1240071142 2261 next post will be the coin 5 mins to the bittrex pump time to shake the market up 2019-03-19 19:55:06+00:00 1.0 1240071142 2259 1 hour left before the pump make sure you help promote the coin during the pump 2019-03-19 19:04:07+00:00 1.0 1240071142 2257 last 4 hours to the bittrex pump alright guys brace your seatbelt just a few hours left for the rocket that will depart for the moon are you ready you better be pump time 2000 gmt 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-19 16:00:27+00:00 1.0 1240071142 2256 new bittrex pump announcement ⏳ date 19032019 ⏰ time 2000 gmt exchange bittrex partners more than 350000 cryptoinvestors crypto is in a great place right now some alts soaring and btc is strong we can make this our best bittrex pump yet please notify your friends click here to see the profit rate in february 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-18 21:50:56+00:00 1.0 1240071142 2254 march pump data and profit success table ast binance 4743 02032019 grs binance 3489 05032019 blz binance 1420 15032019 brd binance 797 17032019 we made 10449 profit in 17 days our vip members won all of this rate target in march 25030 profit you can check from our previous shares or exchange sites who achieved 10449 profit in 17 days i think no one our vip members have earned 10449 on 17 days next pump date it will be announced soon a signal advantage for our pumps guaranteed profits guaranteed bitmex and binance profits occasionnal vip signals by technical analysis expert 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-17 20:33:07+00:00 1.0 1240071142 2253 new binance pump analysis coin brd low 6471 high 6987 win exchange binance profit 797 please see the above photo risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-17 19:07:52+00:00 1.0 1240071142 2245 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-03-17 18:55:18+00:00 1.0 1240071142 2241 last 9 hours to the binance pump waiting for a big uptrend the market is very suitable today ⌚ make sure youre ready last 9 hours target 25 35 40 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-17 09:22:17+00:00 1.0 1240071142 2237 the 17 march pump will rise to 30 40 in 3 minutes 17 march target detailed information above 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-15 16:15:28+00:00 1.0 1240071142 2236 new binance pump analysis coin blz low 1410 high 1680 win exchange binance profit 1420 please see the above photo our moon signal is here for you blz having strong news in upcoming days so buy and hold for decent profits like grs our vip members received 14 profit our medium term is the signal for free risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-15 15:58:52+00:00 1.0 1240071142 2231 last 4 hours to the binance pump alright guys brace your seatbelt just a few hours left for the rocket that will depart for the moon only 4 hours left pump time 330 pm gmt 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-15 11:36:02+00:00 1.0 1240071142 2230 dear members pump news today at 330pm gmt we will going to share a news based moon signal date 15th march time 330pm gmt exchange binance info it will achieve all targets in short time frame‼️ the signal will be based on news so can go for 2x to 3x in shorter time frames 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-15 09:39:11+00:00 1.0 1240071142 2229 new binance pump announcement ⏳ date 17032019 ⏰ time 7 pm gmt exchange binance partners more than 350000 cryptoinvestors target 25 35 profit this pump is going to be huge dont miss it please notify your friends click here to see the profit rate in february 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-14 20:27:56+00:00 1.0 1240071142 2224 new binance pump announcement ⏳ date thursday 14032019 ⏰ time 300pm gmt exchange binance partners more than 350000 cryptoinvestors target 25 35 profit this pump is going to be huge dont miss it please notify your friends click here to see the profit rate in february 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-10 18:16:15+00:00 1.0 1240071142 2210 btc update critical levels for the rise of bitcoin 4250 binance 4248 bitmex critical levels for bitcoin fall 3667 binance 3672 bitmex now the bitcoin level 3848 binance 06032019 3835 bitmex 06032019 buylong signal continues our indicators will tell you when the sellshort signal is received pay attention to these levels please send us a message if you would like to obtain high earnings with leveraged transactions on the bitmex exchange in addition our binance pumps will continue we had a great rise yesterday 3489 profit binance pump date will be announced soon 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-06 14:04:46+00:00 1.0 1240071142 2209 new binance pump analysis coin grs low 5978 high 8064 win volume 1300 btc exchange binance profit 3489 amazing please see the above photo overall great pump +3489 with 1300 btc volume we had very high expectations expecting to reach above 100 but we have run into many unconditionnal sell orders as you know binance is filled with hidden sell orders and bots trading we are receiving many messages of appreciation and we are glad many of you managed to turn a good profit on it it still is a very good pump as we have managed to go a little higher than the first wave meaning that everyone was in the profit if they had sold at the top risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-05 17:08:38+00:00 1.0 1240071142 2196 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-03-05 16:25:11+00:00 1.0 1240071142 2195 last 15 mins to the binance pump opportunities are the gifts given by god but for those who avail them are you ready for the next opportunity target 300 to 500 were expecting at least 1500 btc in volume 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-05 16:16:07+00:00 1.0 1240071142 2193 last 3 hours to the binance pump alright guys brace your seatbelt just a few hours left for the rocket that will depart for the moon were expecting at least 1500 btc in volume are you ready you better be only 3 hours left pump time 430 pm gmt 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-05 13:33:10+00:00 1.0 1240071142 2192 last 5 hours 30 mins to the binance pump waiting for a big uptrend the market is very suitable today ⌚ make sure youre ready last 2 hours target 25 35 40 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-05 11:02:28+00:00 1.0 1240071142 2191 last 8 hours to the binance pump 8 hours left be ready for the big pump remember to deposit your btc into binance and verify the account 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-05 09:08:08+00:00 1.0 1240071142 2181 new binance pump announcement ⏳ date tuesday 05032019 ⏰ time 430pm gmt exchange binance partners more than 350000 cryptoinvestors target 25 35 profit please notify your friends 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-04 14:06:58+00:00 1.0 1240071142 2179 february our success table yes friends january pumps are finished its about to meet in february grs binance 2536 02022019 via binance 2075 03022019 gxs binance 2793 10022019 edo binance 1824 16022019 gam bittrex 13920 19022019 gbg bittrex 20250 21022019 hc binance 1038 24022019 ast binance 1824 02032019 we made 65030 profit in 1 month our vip members won all of this rate target in march 65030 profit you can check from our previous shares or exchange sites this will make a fantastic investment for your life and your future next pump date it will be announced soon a signal advantage for our pumps guaranteed profits occasionnal vip signals by technical analysis expert 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-02 16:51:15+00:00 1.0 1240071142 2178 new binance pump analysis coin ast low 898 high 1334 win volume 302 btc exchange binance profit 4743 amazing please see the above photo the reason we picked ast from end of march airbnb is planning to accept payment by air swap ast tokens as part of its anonymous payments system this is a huge news for ast and for whole crypto risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-02 14:16:37+00:00 1.0 1240071142 2172 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-03-02 13:55:36+00:00 1.0 1240071142 2170 15 minutes left ‼ binance is warming up market is on fire today 2019-03-02 13:45:22+00:00 1.0 1240071142 2169 last 30 mins to the binance pump recommended to buy and hold for maximum profits huge volume will be injected which will cause outsiders to join and make more waves and legs up over the next 24 hours since coin name was posted ‼ our record is 400 percentage with phx when we all grouped up like that last time get ready for a take off to the moon 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-02 13:31:07+00:00 1.0 1240071142 2166 hello everyone we have decided to schedule the pump for tomorrow saturday march 2 at 2 pm gmt date saturday march 2 time 200 pm gmt exchange binance directions buy and hold for maximum profit 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-03-01 18:38:29+00:00 1.0 1240071142 2165 new binance pump announcement ⏳ date sunday march 3 ⏰ time 1800 gmt exchange binance participants more than 350000 cryptoinvestors target 25 35 profit please notify your friends 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-27 17:19:01+00:00 1.0 1240071142 2162 it seems that btc started pumping exactly at the same time as our pump a very coincidental event that might have played a role in the pump since all traders on binance were focused on btc and as you know when btc pumps some altcoins instantly get dumped by bots the first coin we picked today was rdn but it had already been pumped and we decided to switch for hc according to our estimates we thought hc was a good coin to pump but it turns out it was not our volume was big enough to make any coin go up over 40 but it seems that we have picked the wrong coin today the good news is that the pump did not go high enough it means that the loss is very minimal for everyone if you did not make profit do not sell for a loss we will either bring back the price back up soon for everyone once it stabilizes and everyone will be in the profit or the market will pump it soon as it always does after all our pumps is it a guarantee and a promise we are making for all our members many people are asking why the price went up a little before the announcement it is because we have a vip group the vip group is essential in creating more volume and allowing the market to react better to pumps we have done +45 on gxs +40 on wings and +30 on hc and +35 on wabi previously we still have some spots available if you would like to join contact bullpumptrader once again dont sell for a loss even if its very minimal the price will recover very soon we will announce the new pump date when we are ready premium member contact bullpumptrader 2019-02-23 17:28:59+00:00 1.0 1240071142 2161 binance pump analysis coin hc low 3025 high 3339 win volume 102 btc exchange binance profit 1038 amazing please see the above photo risk of vip membership is zero earnings 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-23 17:15:16+00:00 1.0 1240071142 2156 are you ready after 1 minute the coin name will be announced 2019-02-23 16:59:33+00:00 1.0 1240071142 2155 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-02-23 16:54:39+00:00 1.0 1240071142 2153 last 5 hours to the binance pump 5 hours left be ready for the big pump remember to deposit your btc into binance and verify the account 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-23 12:03:10+00:00 1.0 1240071142 2151 new binance pump announcement ⏳ date tuesday 23 february ⏰ time 1700 gmt exchange binance participants more than 350000 cryptoinvestors target 25 35 profit please notify your friends 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-22 14:10:38+00:00 1.0 1240071142 2148 bittrex pump analysis coin gbg low 226 high 684 win volume 92 btc exchange bittrex profit 202 amazing the next pump date will be announced soon risk of vip membership is zero gain 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-21 20:30:17+00:00 1.0 1240071142 2142 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-02-21 19:55:28+00:00 1.0 1240071142 2141 30 mins left be ready for the big pump remember to deposit your btc into bittrex and verify the account premium member contact bullpumptrader 2019-02-21 19:30:18+00:00 1.0 1240071142 2137 last 3 hours to the bittrex pump target 125 200 3 hours left be ready for the big pump remember to deposit your btc into bittrex and verify the account 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-21 16:04:29+00:00 1.0 1240071142 2136 last 6 hours to the bittrex pump and be an initial part of global fomo ⏳ date today ⏰ time 2000 pm gmt target 125 200 6 hours left be ready for the big pump remember to deposit your btc into bittrex and verify the account for instructions please read the above information 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-21 13:01:04+00:00 1.0 1240071142 2135 pump announcement ⏳ date thursday 21 february ⏰ time 2000 gmt exchange bittrex participants more than 350000 cryptoinvestors target 125 200 profit bittrex pump date thursday 21 february 2000 gmt binance pump date tuesday 23 february 1700 gmt please notify your friends 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-20 16:11:44+00:00 1.0 1240071142 2134 hey team together with our big investment partner we will organize a pump at the bittrex exchange tested on a previously regulated pump approved i share the data with you on the binance exchange our pumps will continue rapidly bittrex pump date thursday 21 february 2000 gmt the data of the first pump is above 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-19 20:28:12+00:00 1.0 1240071142 2131 gam bittrex pump results start price 00035960 peak price 00086000 gain 139 date tuesday 12 february 2000 gmt old pump date this was incredible for our first bittrex pump gam repeaked 6 minutes later on the second wave to 125 as plenty of outsiders jumped in 2019-02-19 20:27:47+00:00 1.0 1240071142 2130 hello everyone we hope you are making great profits from this bull run the market is looking ready for a great pump we will announce the new pump date soon 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-18 14:09:21+00:00 1.0 1240071142 2128 new binance pump analysis coin edo low 2050 high 2424 win volume 85 btc profit 1824 amazing the next pump date will be announced soon risk of vip membership is zero gain 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-16 18:07:23+00:00 1.0 1240071142 2124 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-02-16 17:55:54+00:00 1.0 1240071142 2120 last 4 hours to the binance pump ⏳ date today ⏰ time 6 pm gmt target 25 35 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-16 14:03:00+00:00 1.0 1240071142 2115 last 24 hours to the binance pump instructions open binance + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button binance will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors or as a vip member buy the coin name 1 day in advance or 1 hour in advance enjoy a comfortable way of making money the choice is yours please notify your friends ⏳ date saturday february 16 ⏰ time 1800 pm gmt exchange binance partners more than 350000 cryptoinvestors target 25 35 lets do this the pump team 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-15 18:02:10+00:00 1.0 1240071142 2114 detailed information last 2 days for the binance pump thousands of people will receive the signal creating a huge volume and price increase the coin will hit the 1 spot on binance attracting outside investors after posting the signal it will be shared by influential social media profiles generating a delayed wave of buyers the pump is in 2 day get the word out there we need to make this event as big as possible we are aiming for 300 bitcoin+ volume ✅ once the price has increased we will take profits while keeping the price high and attractive to investors please notify your friends ⏳ date saturday february 16 ⏰ time 1800 pm gmt exchange binance partners more than 350000 cryptoinvestors target 25 35 lets do this the pump team 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-14 18:43:31+00:00 1.0 1240071142 2113 binance pump announcement ⏳ date saturday february 16 ⏰ time 1800 pm gmt exchange binance participants more than 350000 cryptoinvestors target 25 35 please notify your friends 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-13 14:28:09+00:00 1.0 1240071142 2109 new binance pump analysis coin gxs low 1575 high 2015 win volume 218 btc profit 2793 amazing friends please see the above picture the next pump date will be announced soon risk of vip membership is zero gain 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-10 18:19:16+00:00 1.0 1240071142 2104 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-02-10 17:55:11+00:00 1.0 1240071142 2100 last 3 hours to the binance pump and be an initial part of global fomo ⏳ date today ⏰ time 6 pm gmt target 30 45 please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-10 15:07:52+00:00 1.0 1240071142 2099 last 7 hours to the binance pump the big day is today the rise of these fake bitcoin will benefit us and be an initial part of global fomo ⏳ date today ⏰ time 6 pm gmt exchange binance partners more than 250000 cryptoinvestors target 30 45 big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-10 11:01:04+00:00 1.0 1240071142 2098 hello everyone we have decided to reschedule the pump for tomorrow sunday february 10 at 1800 pm gmt to protect our members assets from the current market activity being one of the biggest pump groups we know there is alot of speculation on which coin we choose for our pumps and it is in the best interest for our group to reschedule for tomorrow sunday is also generally a better day to pump pump announcement date sunday 10 february time 1800 gmt exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-09 16:57:59+00:00 1.0 1240071142 2092 last 2 day to the binance pump ⏳ date saturday 9 february ⏰ time 6 pm gmt exchange binance partners more than 250000 cryptoinvestors target 30 45 and be an initial part of global fomo the countdown has begun for the pump we will perform with our big investment partners our minimum target is 3045 profit areas please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-07 17:42:12+00:00 1.0 1240071142 2089 updating anouncement hello everyone at this moment btt has all the attention and we decided that it is wiser to postpone the pump to saturday this way we have a much higher chance of attracting outsiders during our pump and generate alot more volume we hope that many of you managed to make good profits on it so far as it has managed to go up nearly 200 in only 3 days pump announcement the next pump will be scheduled for ⏳ date saturday 9 february ⏰ time 1800 pm gmt exchange binance partners more than 250000 cryptoinvestors target 30 45 risk of vip membership is zero 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-05 15:57:59+00:00 1.0 1240071142 2088 binance pump announcement ⏳ date thursday 7 february ⏰ time 1800 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 before we move on from our grs and via pump we would also like to add that it still managed to reach 20 25 with over 200 btc in volume which is low for our standards but acceptable in a bear market our loyal members that have been with us since the start of our group know how big and profitable our pumps can be during the bull market patience and discipline is not only important in trading but also in pumping once the bull market starts we will be able to provide everyone with consistant profits our main goal when we started this group was to become the 1 and most successful pump group on binance and give everyone a chance to make fast profits which is something we have acheived many times during the past year and we will continue to do so in the near future and in the upcoming pump on thursday risk of vip membership is zero 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-04 19:47:10+00:00 1.0 1240071142 2085 new binance pump analysis coin via low 795 high 960 win volume 48 btc profit 2075 amazing the next pump date will be announced soon risk of vip membership is zero gain 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-03 15:07:56+00:00 1.0 1240071142 2082 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-02-03 14:55:15+00:00 1.0 1240071142 2079 today evening 1530pm gmt be ready call on binance make sure you have funds on binance less than 3 hours remaining for special binance signal 2019-02-03 12:13:23+00:00 1.0 1240071142 2078 binance pump announcement ⏳ date today ⏰ time 3 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 we organized a great pump understand the advantages of vip membership please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-03 08:36:45+00:00 1.0 1240071142 2077 new binance pump analysis coin grs low 5742 high 6980 win volume 60 btc profit 2536 amazing the next pump date will be announced soon risk of vip membership is zero gain 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-02 18:05:56+00:00 1.0 1240071142 2073 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-02-02 17:56:50+00:00 1.0 1240071142 2070 last 2 hours to the binance pump big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-02 16:13:19+00:00 1.0 1240071142 2068 last 5 hours to the binance pump ⏳ date today exchange binance participants more than 250000 cryptoinvestors target 30 45 and be an initial part of global fomo our minimum target is 3045 profit areas big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-02 13:10:05+00:00 1.0 1240071142 2067 last 24 hours to the binance pump you can follow the countdown timer ⏳ date saturday february 2 ⏰ time 6 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 guarantee big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-02-01 18:00:09+00:00 1.0 1240071142 2066 binance pump announcement ⏳ date saturday february 2 ⏰ time 6 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 we organized a great pump understand the advantages of vip membership please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-31 17:12:32+00:00 1.0 1240071142 2063 new binance pump analysis coin bqx low 3911 high 5133 win volume 100 btc profit 31 56 amazing the next pump date will be announced soon risk of vip membership is zero gain 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-29 15:19:45+00:00 1.0 1240071142 2059 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-01-29 13:55:02+00:00 1.0 1240071142 2055 last 2 hours to the binance pump ⏳ date today exchange binance participants more than 250000 cryptoinvestors target 30 45 and be an initial part of global fomo our minimum target is 3045 profit areas big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-29 12:15:00+00:00 1.0 1240071142 2053 binance pump announcement ⏳ date 29012019 tuesday ⏰ time 14 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 we are expecting more this time please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-28 21:00:58+00:00 1.0 1240071142 2050 new binance pump analysis coin wings low 2495 high 3480 win volume 200 btc profit 3912 amazing once again a great pump wings peaked at around 40 with around 200 btc in volume it would have been much more of a success if the pump lasted a little longer but with todays market condition we will take that as a win congratulations to our vip members up to 40 in potential profits the next pump date will be announced soon risk of vip membership is zero gain 100 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-27 18:22:39+00:00 1.0 1240071142 2047 next post will be the coin 5 mins to the binance pump time to shake the market up 2019-01-27 17:55:23+00:00 1.0 1240071142 2044 40 mins left be ready on binance pump time 6 pm gmt today premium member contact bullpumptrader 2019-01-27 17:20:27+00:00 1.0 1240071142 2043 last 1 hours 30 mins to the binance pump pump time 6 pm gmt today spread the word we are expecting great results lets try to go above 50 this time and beat our gxs pump the last 8 binance pump data in our channel brd binance 1826 30122018 amb binance 2326 01012019 bnt binance 3501 06012019 loom binance 2033 07012019 evx binance 979 08012019 wabi binance 1175 09012019 gxs binance 4585 20012019 hc binance 2665 25012019 last 1 hours 30 mins to the big binance pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-27 16:30:40+00:00 1.0 1240071142 2040 last 8 hours to the binance pump ⏳ date today ⏰ time 6 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-27 11:12:02+00:00 1.0 1240071142 2039 last 24 hours to the binance pump ⏳ date sunday january 27 ⏰ time 6 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 big pump the last 8 binance pump data in our channel brd binance 1826 30122018 amb binance 2326 01012019 bnt binance 3501 06012019 loom binance 2033 07012019 evx binance 979 08012019 wabi binance 1175 09012019 gxs binance 4585 20012019 hc binance 2665 25012019 please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-26 18:20:03+00:00 1.0 1240071142 2037 binance pump announcement ⏳ date sunday january 27 ⏰ time 6 pm gmt exchange binance participants more than 250000 cryptoinvestors target 30 45 weekend pumps are usually alot better because there is alot more outsiders trading on binance and that is why we believe gxs managed to hit 45 last sunday hopefully this sunday we can break the 50 gains did you watch the pump yesterday we organized a great pump tomorrow well do it again please see the photo above understand the advantages of vip membership please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-26 10:49:27+00:00 1.0 1240071142 2036 binance pump analysis coin hc low 2968 high 3759 win volume 200 btc profit 2665 amazing a total of 200 btc volume in only 15 mins amazing the last 8 binance pump data in our channel brd binance 1826 30122018 amb binance 2326 01012019 bnt binance 3501 06012019 loom binance 2033 07012019 evx binance 979 08012019 wabi binance 1175 09012019 gxs binance 4585 20012019 hc binance 2665 25012019 wait for the news from us for the next pump those who want to come to our vip channel for a daily trade or pump without risk please send a message you are making a big mistake by not being a vip member 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-25 18:18:06+00:00 1.0 1240071142 2035 peaked at 25 200 btc volume in 5 minutes so far congratulations there is no other pump group that provides better profit than we do the analysis will come soon please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-25 18:06:19+00:00 1.0 1240071142 2030 next post will be the coin 5 mins to the binance pump 2019-01-25 17:55:08+00:00 1.0 1240071142 2029 last 15 mins to the binance pump big pump premium member contact bullpumptrader 2019-01-25 17:46:57+00:00 1.0 1240071142 2027 1 hours left until our next pump on binance here is the official countdown timer big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-25 17:01:51+00:00 1.0 1240071142 2026 2 hours left until our next pump on binance here is the official countdown timer big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-25 15:20:29+00:00 1.0 1240071142 2025 4 hours left until our next pump on binance here is the official countdown timer big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-25 14:13:53+00:00 1.0 1240071142 2024 8 hours left until our next pump on binance reminder that we are using the btc pairing for our pumps we will try to aim above 50 this time here is the official countdown timer big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-25 10:00:28+00:00 1.0 1240071142 2023 last 24 hours to the binance pump ⏳ date friday january 25 ⏰ time 6 pm gmt exchange binance participants more than 50000 cryptoinvestors target 30 45 big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-24 18:00:18+00:00 1.0 1240071142 2021 binance pump announcement ⏳ date friday january 25 ⏰ time 6 pm gmt exchange binance participants more than 50000 cryptoinvestors target 30 45 info we picked friday because we believe that there will be more high activity that day on altcoins we will also do another one sunday after the upcoming pump if you have any questions join our community on discord we have over 55 000 members please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-22 18:06:51+00:00 1.0 1240071142 2016 binance pump analysis coin gxs low 1482 high 2122 win volume 220 btc profit 4575 amazing a total of 225 btc volume in only 10 mins amazing the last 7 binance pump data in our channel brd binance 1826 30122018 amb binance 2326 01012019 bnt binance 3501 06012019 loom binance 2033 07012019 evx binance 979 08012019 wabi binance 1175 09012019 gxs binance 4585 20012019 wait for the news from us for the next pump those who want to come to our vip channel for a daily trade or pump without risk please send a message you are making a big mistake by not being a vip member 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-20 18:25:48+00:00 1.0 1240071142 2010 next post will be the coin 5 mins to the binance pump 2019-01-20 17:55:13+00:00 1.0 1240071142 2008 1 hours left before the binance pump signal we are expecting this pump to have a big amount of volume the signal will be posted here at exactly 175930 pm gmt the reason we are posting 30 seconds before is to create a good second candle on the 1 minute chart right after the first moonshot please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2019-01-20 17:00:19+00:00 1.0 1240071142 2006 5 hours left until the pump on binance ⏳ time and date today at 6 pm gmt exchange binance participants more than 100000 cryptoinvestors please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-20 13:00:08+00:00 1.0 1240071142 2004 last 24 hours to the binance pump ⏳ time and date sunday 20th january at 6 pm gmt exchange binance participants more than 100000 cryptoinvestors target 50 60 big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-19 18:00:21+00:00 1.0 1240071142 2003 hello everyone 2 days left until the pump on binance the coin will be announced at exactly 1800 pm gmt on sunday a quick update about our wabi pump which we are very proud about its currently up 50 and broke past the resistance today which is remarkable we are expecting a great pump if the market can stay like this the amount of outsider activity is very high at this moment on altcoins down below is a picture explaining the mechanics of a pump as you can see the success of a pump can depend alot on how strong the outsider reaction is this is exactly what we try to achieve every pump 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-18 15:39:52+00:00 1.0 1240071142 2001 big pump were going through a bad time but we must be strong its time to turn the crisis into an opportunity we arrange the pump after 3 days ⏳ time and date sunday 20th january at 6 pm gmt exchange binance participants more than 100000 cryptoinvestors target 50 60 there will be a big pump if you would like to know the coin name early please send a message 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-17 18:28:41+00:00 1.0 1240071142 1997 binance pump announcement ⏳ time and date sunday 20th january at 5 pm gmt utc time exchange binance participants more than 100000 cryptoinvestors target 20 30 the last 6 binance pump data in our channel pump data brd binance 1826 30122018 amb binance 2326 01012019 bnt binance 3501 06012019 loom binance 2033 07012019 evx binance 979 08012019 wabi binance 1175 09012019 total 125 profit great success in 11 days you can check all data from our channel please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-13 14:53:50+00:00 1.0 1240071142 1981 binance pump announcement last 1 hours 15 mins to the binance pump ⏳ time and date today 09th at 2 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 today pump best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-09 12:45:00+00:00 1.0 1240071142 1975 binance pump analysis coin evx low 5858 high 6432 win profit 979 the last 6 binance pump data in our channel brd binance 1826 30122018 amb binance 2326 01012019 bnt binance 3501 06012019 loom binance 2033 07012019 evx binance 979 08012019 total 115 profit great success in 10 days today unfortunately we achieved a 9 increase bitcoin and market decline took place at 4 pm gmt we didnt have a chance today wait for the news from us for the next pump those who want to come to our vip channel for a daily trade or pump without risk please send a message 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-08 16:08:26+00:00 1.0 1240071142 1973 next post will be the coin 5 mins to the binance pump 2019-01-08 15:55:11+00:00 1.0 1240071142 1969 last 4 hours to the binance pump ⏳ time and date today at 4 pm gmt please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2019-01-08 12:02:54+00:00 1.0 1240071142 1967 binance pump announcement ⏳ time and date tuesday tomorrow 08th january at 0400 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-07 20:29:34+00:00 1.0 1240071142 1964 binance pump announcement ⏳ time and date tuesday tomorrow 08th january at 0400 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-07 16:05:27+00:00 1.0 1240071142 1956 next post will be the coin 5 mins to the binance pump 2019-01-07 14:25:06+00:00 1.0 1240071142 1953 today evening 1430 pm gmt be ready call on binance make sure you have funds on binance less than 1 hours 30 mins remaining for special binance signal 2019-01-07 13:00:47+00:00 1.0 1240071142 1940 next post will be the coin 5 mins to the binance pump 2019-01-06 20:55:04+00:00 1.0 1240071142 1934 last 2 hours to the binance pump today at 9 pm gmt ❤ market green looking good like our analysts said we see a big opportunity please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2019-01-06 19:02:29+00:00 1.0 1240071142 1932 last 5 hours to the binance pump ⏳ time and date today at 9 pm gmt the last 3 pump data in our channel brd binance 1826 amb binance 2326 dzc cryptopia 43426 1 week in total 475 profit our vip members earn all profit rates please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2019-01-06 16:00:19+00:00 1.0 1240071142 1930 last 10 hours to the binance pump ⏳ time and date today at 9 pm gmt exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3060 lets beat this big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-06 11:06:53+00:00 1.0 1240071142 1929 who wants to join the vip as a big binance pump tomorrow today at 9 pm gmt the name of the coin from our vip channel will be announced the details are as follows date 06012019 time 9 pm gmt exchange binance 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-05 16:16:20+00:00 1.0 1240071142 1928 we have been getting a lot of positive messages from everyone noone expected a pump any time soon we also got a lot of questions about why we would be pumping so quickly after the announcement the main reason for this is that we see an opportunity in the market which can go away anytime since we have not pumped in a while i have the feeling we lost a bit of unity in our group we need to work together to reach the best result the reasons we think this pump will be good and useful after a long period of bear market for bitcoin this time period is quite long people want to see a light in the dark a coin that spikes up a lot of people will react on this and want to be in on this which will create a chainreaction and fomo people want to earn back what they lost in the bear market the most important factor that will decide sundays pump is the market sentiment the last few weeks the market sentiment has switched people will be following any opportunity they see as bitcoin is still in a bearmarket we do not expect a big initial spike we expect small moves up and we will aim for over 100 we have never pumped in such a market before so this is new for us aswell we have seen many groups do it succesfully back in the day have a great day and prepare for tomorrow the pump team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-05 13:36:36+00:00 1.0 1240071142 1927 binance pump announcement dear members instead of the cryptopia pump we decided to build a binance pump since there was a bear market pumping would not have made a lot of sense anyway however our analysts looked at the market the past week and saw a big opportunity this opportunity is so big that we decide to pump this weekend and our analysts think the pump will be very succesful even in this market the details are as follows date 06012019 time 9 pm gmt exchange binance thanks for reading your pump team best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-05 10:25:31+00:00 1.0 1240071142 1925 pump announcement date 6st january time 9 pm gmt exchange binance best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-04 11:50:55+00:00 1.0 1240071142 1924 the last 3 pump data in our channel brd binance 1826 amb binance 2326 dzc cryptopia 43426 1 week in total 475 profit our vip members earn all profit rates the most effective membership option is to buy the coin name 1 day ago wait for my message for the next pump❤ please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-03 20:34:57+00:00 1.0 1240071142 1918 next post will be the coin 5 mins to the pump 2019-01-03 20:05:14+00:00 1.0 1240071142 1916 last 20 mins to the pump today will be a huge pump with a higher goal than usual these reminders have been coming 10 minutes past the hour because we will pump today 10 minutes past the hour at 2010 gmt exchange cryptopia premium member contact bullpumptrader 2019-01-03 19:50:17+00:00 1.0 1240071142 1912 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains premium member contact bullpumptrader 2019-01-03 16:13:16+00:00 1.0 1240071142 1911 last 9 hours to the today pump date 3st january today time 8 pm gmt exchange cryptopia target 200+ after a long break we decided to build a pump at the cryptopia stock exchange our pumps will continue on the binance exchange please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-03 11:00:17+00:00 1.0 1240071142 1910 pump announcement date 3st january time 8 pm gmt exchange cryptopia target 200 after a long break we decided to build a pump at the cryptopia stock exchange our pumps will continue on the binance exchange best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-02 15:52:20+00:00 1.0 1240071142 1901 next post will be the coin 10 mins to the pump be very ready guys login binance and keep an eye here second pump time 330 pm gmt exchange binance 2019-01-01 14:21:00+00:00 1.0 1240071142 1900 last 15 mins to the binance pump after the pump we will share in 15 minutes we will do another pump please follow second pump time 330 pm gmt exchange binance please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2019-01-01 14:15:14+00:00 1.0 1240071142 1899 last 30 mins to the binance pump second pump time 330 pm gmt ex binance please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2019-01-01 14:01:44+00:00 1.0 1240071142 1898 today were going to do two special pumps for christmas today first pump time 230 pm gmt after 2 hours second pump time 330 pm gmt after 3 hours follow us please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2019-01-01 12:30:05+00:00 1.0 1240071142 1897 last 4 hours 30 mins to the binance pump 4 hours 30 mins left until the big pump on binance be ready lets finish the year with a good pump ⏳ time 330 pm gmt exchange binance target 30 50 exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2019-01-01 11:00:20+00:00 1.0 1240071142 1896 binance pump announcement date 1st january time 330pm gmt to celebrate the new year 2019 exchange binance info our bot will give us a breakout coin all you need to do is buy and hold for 50 to 100 profit ❗ best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-31 09:57:28+00:00 1.0 1240071142 1895 binance pump analysis coin brd low 5200 high 6178 win profit 1826 volume 100 btc the market was very bad though it was a great pump we are the best pump group in the world we proved that again please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-30 18:53:22+00:00 1.0 1240071142 1888 2 minutes left the next post will be the coin 2018-12-30 16:57:47+00:00 1.0 1240071142 1887 5 minutes left reminder that the coin we picked has a sell wall at less than 5 gain which represents a great opportunity for everyone you will be able to buy at a good price before outsiders start to pickup on it 2018-12-30 16:54:17+00:00 1.0 1240071142 1886 10 minutes left login to binance and be ready 2018-12-30 16:50:32+00:00 1.0 1240071142 1885 last 1 hours to the binance pump ⏳ time 5 pm gmt exchange binance please send us a message if you want to know your coin name earlier premium member contact bullpumptrader 2018-12-30 16:06:58+00:00 1.0 1240071142 1884 last 3 hours to the binance pump 3 hours left until the big pump on binance be ready lets finish the year with a good pump ⏳ time 5 pm gmt exchange binance target 30 50 exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-30 14:00:28+00:00 1.0 1240071142 1883 binance pump announcement ⏳date sunday 30th december ⏳time 5 pm gmt exchange binance participants more than 200000 cryptoinvestors target 18 30 best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-28 14:00:15+00:00 1.0 1240071142 1882 binance pump analysis coin hc low 2170 high 2516 win profit 1526 volume 25 btc the market was very bad though it was a great pump we are the best pump group in the world we proved that again please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-27 17:12:14+00:00 1.0 1240071142 1876 next post will be the coin 5 mins to the pump 2018-12-27 16:55:05+00:00 1.0 1240071142 1874 last 1 hours to the binance pump ⏳ time 5 pm gmt exchange binance target 30 50 exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-27 16:01:59+00:00 1.0 1240071142 1873 last 2 hours to the binance pump ⏳ time 5 pm gmt exchange binance target 30 50 exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-27 15:17:51+00:00 1.0 1240071142 1872 last 6 hours to the binance pump ⏳ time 5 pm gmt exchange binance target 30 50 exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-27 11:03:05+00:00 1.0 1240071142 1871 binance pump announcement ⏳date friday 27th december ⏳time 5 pm gmt exchange binance participants more than 100000 cryptoinvestors target 30 50 best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-26 09:29:11+00:00 1.0 1240071142 1860 binance pump analysis coin evx low 5902 high 6982 win profit 1826 volume 35 btc we are the best pump group in the world we proved that again please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-10 17:17:30+00:00 1.0 1240071142 1856 next post will be the coin 5 mins to the pump 2018-12-10 16:55:08+00:00 1.0 1240071142 1855 less than 30 minutes before our co pump exchange binance 2018-12-10 16:31:51+00:00 1.0 1240071142 1854 last 1 hours to the binance pump be ready after 1 hour with 3 pumps per week we are the worlds largest pump signal channel market is bad but we like to turn crises into opportunities please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-10 16:00:52+00:00 1.0 1240071142 1853 last 2 hours to the binance pump ⏳ time 5 pm gmt exchange binance target 30 50 exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-10 15:02:11+00:00 1.0 1240071142 1852 last 3 hours to the binance pump ⏳ time 5 pm gmt exchange binance target 30 50 exchange binance please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-10 15:00:51+00:00 1.0 1240071142 1850 last 24 hours to the binance pump ⏳ time and date monday 10th december at 5 pm gmt exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3060 lets beat this big pump please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-09 17:10:41+00:00 1.0 1240071142 1849 pump result oax start price 2260 sat weve reached 2750 sat profit 22 although btc and most of altcoin dumped so much yesterday oax pumped so hard near 100 btc volume joined our pump and 22 profit in the red market is great as i promised it ranked top 2 of binance for a long time and now its up again weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target the next pump will be scheduled ⏳ time and date monday 10th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-08 12:03:34+00:00 1.0 1240071142 1848 binance pump analysis coin oax low 2222 high 2750 win profit 2086 volume 25 btc we are the best pump group in the world we proved that again please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-07 17:25:15+00:00 1.0 1240071142 1840 next post will be the coin 3 mins to the pump 2018-12-07 16:57:21+00:00 1.0 1240071142 1839 less than 10 minutes before our solo pump exchange binance 2018-12-07 16:50:37+00:00 1.0 1240071142 1838 less than 30 minutes before our solo pump exchange binance 2018-12-07 16:32:52+00:00 1.0 1240071142 1836 binance pump last 2 hours to the binance pump target 30 50 please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-07 15:12:43+00:00 1.0 1240071142 1835 last 3 hours to the binance pump coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 30 gain max 50 gain ⏳date friday 07th december ⏳time 5 pm gmt exchange binance participants more than 100000 cryptoinvestors target 30 50 best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-07 14:04:48+00:00 1.0 1240071142 1829 binance pump announcement big day friday set your watches set up alarms our goal is to stay up for 30 minutes we will achieve this together and we will not sell early ⏳date friday 07th december ⏳time 5 pm gmt exchange binance participants more than 100000 cryptoinvestors target 30 50 best of luck team please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact bullpumptrader 2018-12-05 15:25:35+00:00 1.0 1240071142 1811 the pump date has changed the new pump date is below pump result rdn start price 5660 sat weve reached 6950 sat profit 25 as i said yesterday is the day of rdn it pumped so hard near 100 btc volume joined our pump as i promised it ranked top 1 of binance for a long time and now its up again weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target the next pump will be scheduled ⏳ time and date friday 30th november at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 30 50 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-28 14:53:59+00:00 1.0 1240071142 1796 next post will be the coin 4 mins to the pump 2018-11-27 16:57:13+00:00 1.0 1240071142 1794 last 30 mins to the binance pump ⏳ time 0500 pm gmt utc time exchange binance target 30 50 exchange binance want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-27 16:30:08+00:00 1.0 1240071142 1793 are you ready for the binance pump today bitcoin and market are falling if the volume is too low this can be a great opportunity last 1 hours to the binance pump ⏳ time and date today 27th november at 0500 pm gmt utc time ⏳ exchange binance want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-27 16:01:15+00:00 1.0 1240071142 1792 less than 5 hours before our solo pump ⏳ time and date friday 27th november at 0500 pm gmt utc time exchange binance participants more than 100000 cryptoinvestors target 30 50 exchange binance want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-27 12:01:17+00:00 1.0 1240071142 1791 binance pump last 7 hours to the binance pump target 30 50 want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-27 10:00:05+00:00 1.0 1240071142 1760 binance pump analysis coin brd low 5238 high 6348 win profit 1886 volume 102 btc we are the best pump group on the market anybody claiming otherwise we organize 20 pumps in 1 month this is a record want to buy coin 1 day or 1 hours in advance premium member contact bullpumptrader 2018-11-13 17:23:31+00:00 1.0 1240071142 1751 next post will be the coin 5 mins to the pump 2018-11-13 16:55:25+00:00 1.0 1240071142 1748 last 1 hours to the binance pump coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 30 gain max 50 gain want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-13 16:01:10+00:00 1.0 1240071142 1747 binance pump last 2 hours to the binance pump want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-13 15:00:24+00:00 1.0 1240071142 1746 less than 3 hours before pump exchange binance want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-13 14:13:27+00:00 1.0 1240071142 1745 7 hours to the pump exchange binance are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3060 lets beat this big pump want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-13 09:54:43+00:00 1.0 1240071142 1743 new binance pump announcement date tuesday 13th november time 5pm gmt participants more than 100000 cryptoinvestors exchange binance target 30 50 friends the market will recover by 13 november a suitable time for the pump we do the coin selection 1 week in advance and our technical team is doing a great deal of research vip conditions 1 day before or 1 hour before the conditions we say the name of the coin if the market is not going well we do not buy we say wait the pump will take place on november 13th prepare yourself weve got a great coin waiting for the big rise we are grateful for your trust in us do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 3050 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-12 14:27:01+00:00 1.0 1240071142 1729 2 pump analysis coin zny 8 pm gmt low 55 high 204 win profit 277 and coin block 830 pm gmt low 61535 high 280000 win profit 355 2 pump total profit 632 next pump date 11 november binance want to buy coin 1 day or 1 hours in advance premium member contact bullpumptrader 2018-11-09 20:34:05+00:00 1.0 1240071142 1724 5 minutes left the next message will be the coin 2018-11-09 20:25:03+00:00 1.0 1240071142 1723 10 minutes to go get ready to go to the moon today is going to be massive get your btc ready 2018-11-09 20:20:05+00:00 1.0 1240071142 1722 15 mins left be ready to moon remember to spam into the cryptopia chat its important at 830 pm gmt the coin to buy will be posted 2018-11-09 20:14:29+00:00 1.0 1240071142 1720 a surprise pump will take place get ready exchange cryptopia at 830 pm gmt the coin to buy will be posted premium member contact bullpumptrader 2018-11-09 20:06:11+00:00 1.0 1240071142 1712 5 minutes left the next message will be the coin 2018-11-09 19:55:32+00:00 1.0 1240071142 1710 30 minutes left we are ready outsiders are waiting and potential is super high lets set new records today 2018-11-09 19:30:15+00:00 1.0 1240071142 1708 2 hours until the pump read the above instructions today will be huge today pump exchange cryptopia we have a good news today we will share this news when the pump is finished we are organizing a binance pump on november 11th want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-09 18:04:24+00:00 1.0 1240071142 1707 5 hours 30 minutes until the pump read the above instructions today will be huge today pump exchange cryptopia we have a good news today we will share this news when the pump is finished we are organizing a binance pump on november 11th want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-09 14:58:06+00:00 1.0 1240071142 1706 pump announcement date 09112018 friday time 800 pm gmt participants 250k+ telegram users exchange cryptopia do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 450600 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-08 16:08:52+00:00 1.0 1240071142 1705 binance pump analysis coin wings 5 pm gmt low 2481 high 4173 win profit 68 volume 200 btc and coin evx 6 pm gmt low 7759 high 8562 win profit 10 volume 80 btc 2 pump total profit 78 want to buy coin 1 day or 1 hours in advance premium member contact bullpumptrader 2018-11-07 18:05:16+00:00 1.0 1240071142 1702 next post will be the coin 5 mins to the pump 2018-11-07 17:55:05+00:00 1.0 1240071142 1699 ▪️the binance pump will start in 30 mins be ready everyone sign up to the binance exchange wwwbinancecom send btc to your binance wallet ℹ️ practice using the search bar buy and sell forms open binance + telegram at 1845gmt ant to buy coin 1 day or 1 hours in advance premium member contact bullpumptrader 2018-11-07 17:32:19+00:00 1.0 1240071142 1692 next post will be the coin 5 mins to the pump 2018-11-07 16:55:10+00:00 1.0 1240071142 1688 1 hours to the pump 5pm gmt exchange binance want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-11-07 16:05:01+00:00 1.0 1240071142 1687 5 hours 30 mins to the pump 5pm gmt exchange binance want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-11-07 11:30:09+00:00 1.0 1240071142 1686 binance pump announcement date 7 november time 5pm gmt+0 participants 200k+ telegram users exchange binance do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-06 13:20:21+00:00 1.0 1240071142 1685 yeah friends its a big pump on wednesday the market will go well under favorable conditions the pump will go wellour goal is to arrange 20 pumps within 1 month in fact we provide our members with discounts as much as we can we have new options for people who have difficulty buyingbuying please contact us we will always win we are a big family 07112018 binance pump 5 pm gmt 08112018 cryptopia pump 730 pm gmt want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-05 20:46:24+00:00 1.0 1240071142 1684 binance pump announcement date 7 november time 5pm gmt+0 participants 200k+ telegram users exchange binance do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-05 15:08:40+00:00 1.0 1240071142 1683 pump analysis coin cno low 10 high 45 win profit 350 exchange cryptopia after posting cno we saw the coin spike above the 100 mark the coin then climbed to its peak of 300 before finding resistance with a nice support of buy orders this allowed the channel to sell near the peak and close some massive profits another great signal congratulations to everyone who participated have a good week enjoy your gains and stay tuned for information regarding the next signal next pump binance date 7 november time 3pm gmt+0 participants 150k telegram users exchange binance want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-05 10:20:05+00:00 1.0 1240071142 1681 next post will be the coin 5 mins to the pump 2018-11-04 17:54:41+00:00 1.0 1240071142 1679 ℹ️ 1 hour todays image will be posted at exactly 6pm gmt open cryptopia + telegram 20 minutes early and get ready to search for the coins name in the btc market ✅ to complete your order quickly click a high sell order followed by your available btc balance and the buy button cryptopia will calculate the amount and meet the lowest available sell order – wait as we market the coin and the price increases when the price hits the peak and theres a strong wave of buy orders start to sell slowly while keeping the price high and attractive to outside investors 2018-11-04 17:01:07+00:00 1.0 1240071142 1677 5 hours to the pump 6pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-11-04 14:05:50+00:00 1.0 1240071142 1676 today pump announcement date saturday 4 november time 1800 gmt participants 200k+ telegram users exchange cryptopia next pump binance date 7 november time 3pm gmt+0 participants 150k telegram users exchange binance do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 250300 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-04 07:52:23+00:00 1.0 1240071142 1670 next post will be the coin 5 mins to the pump 2018-11-03 17:55:41+00:00 1.0 1240071142 1668 30 minutes left we are ready outsiders are waiting and potential is super high lets set new records today 2018-11-03 17:28:08+00:00 1.0 1240071142 1666 1 hours to the pump exchange cryptopia be ready 6 pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-11-03 17:01:22+00:00 1.0 1240071142 1665 2 hours left until the huge pump we hope everyone is primed ad ready to go today will be enormous gains endless outsiders and maximun profits want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-11-03 16:01:46+00:00 1.0 1240071142 1664 3 hours to the pump 6pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-11-03 15:07:25+00:00 1.0 1240071142 1662 today pump announcement date saturday 3 november time 1800 gmt participants 200k+ telegram users exchange cryptopia do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 350500 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-03 13:13:19+00:00 1.0 1240071142 1653 dear members a lot of people have been wondering when the next pump will be the pump will be held next week on sunday we are currently setting up a big campaign following up to next weekend more details will follow soon the pump team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-28 17:51:54+00:00 1.0 1240071142 1647 next post will be the coin 6 mins to the pump 2018-10-24 18:54:15+00:00 1.0 1240071142 1646 30 mins to the pump exchange binance be ready 7pm gmt premium member contact bullpumptrader 2018-10-24 18:29:13+00:00 1.0 1240071142 1645 1 hours to the pump exchange binance be ready 7pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-24 18:10:53+00:00 1.0 1240071142 1644 2 hours to the pump exchange binance be ready 7pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-24 17:00:59+00:00 1.0 1240071142 1643 3 hours to the pump exchange binance be ready 7pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-24 16:01:10+00:00 1.0 1240071142 1642 6 hours to the pump exchange binance be ready 7pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-24 13:00:38+00:00 1.0 1240071142 1641 8 hours to the pump exchange binance be ready 7pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-24 10:59:00+00:00 1.0 1240071142 1640 binance pump announcement date 24 october time 7pm gmt participants 200k+ telegram users exchange binance do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-23 19:53:38+00:00 1.0 1240071142 1639 dear members after the success of our last binancesignal we are planning the next binancesignal date 24 october time 7pm gmt participants 200k+ telegram users exchange binance big pump want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-23 19:44:15+00:00 1.0 1240071142 1631 pump analysis coin fans low 330 high 1800 win profit 433 exchange cryptopia vip member advantages vip members buy the coin name from the lowest price point and they make a realistic profit if you want to be a member please send a message want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-22 19:38:56+00:00 1.0 1240071142 1626 next post will be the coin 5 mins to the pump 2018-10-22 19:25:18+00:00 1.0 1240071142 1625 ️ 10 minutes start getting logged in 2018-10-22 19:20:07+00:00 1.0 1240071142 1623 for cryptopia users we will arrange the pump after 25 hours those who want to participate please send btc to the accounts we chose a wonderful coin exchange wwwcryptopiaconz date 22102018 monday time 730 pm gmt target 250 want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-22 17:03:45+00:00 1.0 1240071142 1622 binance pump announcement date 24 october time 7pm gmt 72 hours left participants 200k+ telegram users exchange binance do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1day and 1 hours before in advance premium member contact bullpumptrader 2018-10-22 16:58:32+00:00 1.0 1240071142 1621 binance pump announcement 24 october 7pm gmt+0 ⚖️ exchange binance do not forget to invite your friends to the pump well always win together it will take approximately 1530 minutes to reach target ‼️ event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1day and 1 hours before in advance premium member contact bullpumptrader 2018-10-21 08:59:28+00:00 1.0 1240071142 1617 2 minutes left till the pump next message will be the coin signal 2018-10-20 20:03:21+00:00 1.0 1240071142 1616 we will send the coin in 5 minutes 2018-10-20 20:00:41+00:00 1.0 1240071142 1615 next post will be the coin 5 mins to the pump 2018-10-20 19:55:09+00:00 1.0 1240071142 1614 30 mins to the pump exchange binance be ready want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-20 19:30:55+00:00 1.0 1240071142 1613 1 hours to the pump exchange binance be ready want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-20 19:03:52+00:00 1.0 1240071142 1612 2 hours to the pump exchange binance be ready want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-20 18:12:23+00:00 1.0 1240071142 1611 5 hours to the pump exchange binance be ready 8pm gmt want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-20 15:01:55+00:00 1.0 1240071142 1610 9 hours 30 mins to the pump exchange binance be ready 8pm gmt todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 50 100 want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-20 10:30:01+00:00 1.0 1240071142 1609 binance pump announcement 20102018 8pm gmt ⚖ exchange binance do not forget to invite your friends to the pump well always win together it will take approximately 1530 minutes to reach target ‼ event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-19 13:06:55+00:00 1.0 1240071142 1608 dear members since last pump was a succes a lot of people have been requesting a new pump after a long discussion with the team we decided to do a weekend pump because this was highly requested the pump team has a question to you every pump we get a lot of kind direct messages with pictures of the profits would you like us to make a channel a halloffame channel where we post the biggest gainers from the pump and award the biggest gainer with a prize we will have to keep a close look at the market but for now next pump is scheduled for this saturday more news on the pump will follow details for the next pump exchange binance date 20102018 advantage ranked time 8pm gmt have a great day the pump team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-19 04:57:09+00:00 1.0 1240071142 1607 dear members this is an important message for all of you we are incredibly sorry to tell you that well be cancelling tonights pump first off we would like to apologize for getting this information out this late we think that the current market situation is not a healthy one to pump in there are no good coin at this time and we are sure that if we pump today the coin we choose will dump quickly we hope you all understand this decision and we think it is for the better for all of you as pumping right now is a risky move thanks a lot for the ongoing support for our team we hope to bring more great pumps to you very soon your pump team 2018-10-18 14:47:47+00:00 1.0 1240071142 1603 binance pump announcement 18102018 5pm gmt participants 200k+ telegram users ⚖ exchange binance do not forget to invite your friends to the pump well always win together it will take approximately 1530 minutes to reach target ‼ event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1day and 1 hours before in advance premium member contact bullpumptrader 2018-10-17 20:08:23+00:00 1.0 1240071142 1602 pump analysis coin poly low 3000 high 5450 win profit 90 very good result we start at 3000 to finish at 5450 + 90 in a few seconds a second wave soon do not sell too fast vip registration is open again so far a great pump a great volume 500 bitcoin already it held great at 90 and is still holding the pump peaked at 81 so far want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-17 19:18:42+00:00 1.0 1240071142 1595 next post will be the coin 5 mins to the pump 2018-10-17 18:56:08+00:00 1.0 1240071142 1593 1 hours to the pump exchange binance participants more than 200000 cryptoinvestors target 30 80 want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-17 17:36:58+00:00 1.0 1240071142 1592 2 hours to the pump exchange binance participants more than 200000 cryptoinvestors target 30 80 want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-17 17:13:19+00:00 1.0 1240071142 1591 3 hours to the pump exchange binance participants more than 200000 cryptoinvestors target 30 80 want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-17 15:56:05+00:00 1.0 1240071142 1590 8 hours to the pump exchange binance the next pump will be scheduled ⏳ time and date tomorrow 18th october at 4 pm gmt and 5 pm gmt exchange binance ‍‍‍ participants more than 200000 cryptoinvestors target 30 80 want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-10-17 11:17:31+00:00 1.0 1240071142 1589 binance pump announcement 17102018 and 18102018 7pm gmt participants 200k+ telegram users ⚖ exchange binance do not forget to invite your friends to the pump well always win together it will take approximately 1530 minutes to reach target ‼ event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-10-16 21:59:21+00:00 1.0 1240071142 1581 next post will be the coin 2 mins to the pump 2018-10-14 18:58:04+00:00 1.0 1240071142 1580 5 minutes left ⭕️ remember to search for the circled coin in the btc market ℹ️ after posting the signal heavy marketing will generate a delayed wave of buyers make sure you take profits while keeping the price high and attractive to investors 2018-10-14 18:55:13+00:00 1.0 1240071142 1579 those who did not enter the pump please just watch there will be a big cryptopia pump last 10 minutes 2018-10-14 18:50:12+00:00 1.0 1240071142 1570 binance pump 5 hours to the pump exchange binance 7 pm gmt be ready instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 85 lets beat this big pump want to buy coin 1 hours before in advance premium member contact rptrader 2018-10-14 14:03:42+00:00 1.0 1240071142 1569 binance pump announcement 14 october 2018 7pm gmt participants 200k+ telegram users ⚖️ exchange binance the market is very good we chose a wonderful coin cryptopia pump canceled after 6 hours there will be a binance pump do not forget to invite your friends to the pump well always win together it will take approximately 1530 minutes to reach target ‼️ event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 hours before in advance premium member contact rptrader 2018-10-14 13:09:08+00:00 1.0 1240071142 1549 next post will be the coin 2 mins to the pump 2018-10-12 19:28:59+00:00 1.0 1240071142 1548 4 mins the pump will start please get ready exchange cryptopia 2018-10-12 19:26:22+00:00 1.0 1240071142 1547 10 mins the pump will start please get ready exchange cryptopia 2018-10-12 19:20:31+00:00 1.0 1240071142 1546 20 mins the pump will start please get ready exchange cryptopia 2018-10-12 19:12:33+00:00 1.0 1240071142 1541 we found a nice coin in cryptopia were making a surprise pump today 45 mins the pump will start please get ready 2018-10-12 18:45:00+00:00 1.0 1240071142 1539 binance pump announcement 13 october 2018 7pm gmt participants 200k+ telegram users ⚖️ exchange binance do not forget to invite your friends to the pump well always win together it will take approximately 1530 minutes to reach target ‼️ event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 day before in advance premium member contact rptrader 2018-10-11 19:41:53+00:00 1.0 1240071142 1536 binance pump analysis 1 coin qlc low 985 high 1047 win profit 13 exchange binance ———————————————————— 2 coin oax low 3237 high 3928 win profit 21 exchange binance ————————————————————— total profit 34 enjoy your profits and await the next signal vip member advantages vip members buy the coin name from the lowest price point and they make a realistic profit if you want to be a member please send a message want to buy coin 1 day or 1 hours before in advance premium member contact rptrader 2018-10-09 19:06:38+00:00 1.0 1240071142 1532 next post will be the coin 5 mins to the pump 2018-10-09 18:55:04+00:00 1.0 1240071142 1531 10 minutes the pump will start 2018-10-09 18:50:09+00:00 1.0 1240071142 1530 30 mins the pump will start please get ready exchange binance 2018-10-09 18:28:32+00:00 1.0 1240071142 1529 we are following qlc coin tomorrow will be testnet were waiting for the rise by tomorrow when the second pump is finished we will share the pump analysis 40 mins the pump will start please get ready exchange binance 2018-10-09 18:23:23+00:00 1.0 1240071142 1528 1 hours the pump will start please get ready exchange binance when team coin is announced we buy the name coin very quicklynot selling for at least 10 minutes the external investor will come you can sell it after a convenient time get ready for the big pump exchange binance 1 hours the pump will start please get ready want to buy coin 1 hours or 1 day before in advance premium member contact rptrader 2018-10-09 18:00:22+00:00 1.0 1240071142 1526 the next pump is in 2 hours people who receive the rate of profit may come out good pump team want to buy coin 1 hours before in advance premium member contact rptrader 2018-10-09 17:03:52+00:00 1.0 1240071142 1523 next post will be the coin 5 mins to the pump 2018-10-09 16:55:24+00:00 1.0 1240071142 1522 10 minutes the pump will start 2018-10-09 16:50:12+00:00 1.0 1240071142 1520 less than 30 min before our pump signal exchange binance 2018-10-09 16:30:36+00:00 1.0 1240071142 1519 40 minutes the pump will start please get ready exchange binance when team coin is announced we buy the name coin very quicklynot selling for at least 10 minutes the external investor will come you can sell it after a convenient time get ready for the big pump exchange binance 40 minutes the pump will start please get ready the next pump then today 7 pm gmt 2018-10-09 16:23:36+00:00 1.0 1240071142 1518 today there will be 2 binance pumps al less than 1 hour before our pump signal and al less than 3 hour before our pump signal exchange binance want to buy coin 1 hours before in advance premium member contact rptrader 2018-10-09 16:08:14+00:00 1.0 1240071142 1517 binance pump 3 hours 25 mins to the pump exchange binance 7 pm gmt be ready instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 85 lets beat this big pump want to buy coin 1 hours before in advance premium member contact rptrader 2018-10-09 15:35:04+00:00 1.0 1240071142 1512 binance pump announcement 09102018 tuesday 7pm gmt do not forget to invite your friends to the pump well always win together goal 3050 ⏳ datetime tuesday 9 at 7pm gmt time ⚖️ exchange binance unmute our channel to stay updated the market is looking good for a pump best of luck team want to buy coin 1 day before in advance premium member contact rptrader 2018-10-08 18:46:40+00:00 1.0 1240071142 1511 pump analysis coin boli low 120 high 242 win profit 10153 exchange cryptopia enjoy your profits and await the next signal want to buy coin 1 day before in advance premium member contact rptrader 2018-10-08 18:38:46+00:00 1.0 1240071142 1508 next post will be the coin 5 mins to the pump 2018-10-08 18:25:04+00:00 1.0 1240071142 1507 10 minutes the pump will start please get ready 2018-10-08 18:20:03+00:00 1.0 1240071142 1504 30 minutes the pump will start please get ready exchange cryptopia 630 pm gmt when team coin is announced we buy the name coin very quicklynot selling for at least 10 minutes the external investor will come you can sell it after a convenient time get ready for the big pump exchange cryptopia 630 pm gmt 30 minutes the pump will start please get ready 2018-10-08 18:02:08+00:00 1.0 1240071142 1502 3 hours to the pump exchange cryptopia share your coin name with cryptopia chat box this will provide a wonderful opportunity the more people hear the more we earn are you ready for a big victory premium member contact rptrader 2018-10-08 16:04:27+00:00 1.0 1240071142 1499 8 hours 30 mins to the pump exchange cryptopia todays pump information the team everyone will transfer bitcoin to the cryptopia stock exchange there will be a big pump wait for instructions weil make a quick purchase please enter the coin name in chat box the foreign investor will enter and the coin will rise were gonna win big bucks tonight all together we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 200 want to buy coin 5 hour or 1 day before in advance premium member contact rptrader 2018-10-08 10:31:20+00:00 1.0 1240071142 1498 ❗️ 24 hours to go until our next signal ▪️ instructions reminder for new members sign up and send your btc to cryptopia share your coin name with cryptopia chat box this will provide a wonderful opportunity the more people hear the more we earn are you ready for a big victory get familiar with the exchange search bar and buy sell order forms ⏰ at 700pm gmt exactly we will post the coin name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coin name in the btc market ✅ to buy quickly click on a sell order much higher than the current market rate click your available btc value and cryptopia will calculate the correct amount with certainty your buy order meets the lowest price first complete your order hold while the marketing is ongoing and the price increasing at a great rate after posting the signal it will be advertised on social medias and the exchange platform resulting in a huge wave of investorsbuyers when the price has increased greatly and the marketing team has promoted the coin we advise you to sell in pieces not all at once that is at your best profits interest this also keeps the price high and attractive to outside investors the channel members get to sell at highest prices want to buy coin 1 hour or 1 day before in advance premium member contact rptrader 2018-10-07 19:09:50+00:00 1.0 1240071142 1497 cryptopia pump announcement 08102018 monday 700 pm gmt do not forget to invite your friends to the pump well always win together pump target 250 profit exchange cryptopia premium member contact rptrader 2018-10-06 19:46:40+00:00 1.0 1240071142 1495 binance pump analysis coin evx low 7500 high 14190 win profit 9853 volume 200 btc exchange binance we stayed at the summit for 15 minutes enjoy your profits and await the next signal want to buy coin 1 hour or 1 day before in advance premium member contact rptrader 2018-10-06 19:08:19+00:00 1.0 1240071142 1492 binance pump analysis coin evx low 7500 high 14190 win profit 9853 volume 200 btc exchange binance we stayed at the summit for 15 minutes enjoy your profits and await the next signal want to buy coin 1 hour or 1 day before in advance premium member contact rptrader 2018-10-06 19:07:49+00:00 1.0 1240071142 1487 next post will be the coin name only 5 minute to go 2018-10-06 18:56:03+00:00 1.0 1240071142 1486 15 mins to the pump exchange binance premium member contact rptrader 2018-10-06 18:45:35+00:00 1.0 1240071142 1484 2 hours to the pump exchange binance coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 50 gain max 95 gain premium member contact rptrader 2018-10-06 17:06:55+00:00 1.0 1240071142 1483 after todays pump the whole world will talk to us binance pump target profit 1 50 2 80 3 95 we chose a wonderful coin today there will be a big explosion • next signal will be in 3 hours ⏰ 2018-10-06 16:07:37+00:00 1.0 1240071142 1482 • next signal will be in 4 hours ⏰ thousands of people will receive the signal creating a huge volume and price increase the coin will hit the 1 spot on binance attracting outside investors after posting the signal it will be shared by influential social media profiles generating a delayed wave of buyers the pump is in 4 hours get the word out there we need to make this event as big as possible we are aiming for 500 bitcoin+ volume ✅ once the price has increased we will take profits while keeping the price high and attractive to investors lets do this the pump team want to buy coin 1 hours in advance premium member contact rptrader 2018-10-06 15:01:27+00:00 1.0 1240071142 1481 24 hours to the pump exchange binance be ready instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 510 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 85 volume target 500 btc lets beat this big pump are you ready to make money want to buy coin 1 day before or 1 hours in advance premium member contact rptrader 2018-10-05 19:01:47+00:00 1.0 1240071142 1479 pump announcement • date 06102018 • ⏰ • time 7 pm gmt+0 • ⏰ exchange binance dear members the past week we have been analysing the last three pumps we have mostly looked at what we could improve we have seen that there are points for us to improve on for example we have looked at our last few social media campaigns and noticed that they were not as effective to get outsiders to buy the coin as we hoped therefore we have been busy trying to contact experts and listen to their opinions also we have some new ideas for coming pump the last few pumps were pretty good however since we took a lot of time to learn and try things out the past week we have a great feeling about coming pump we will try to implement all our learnings into the pump added to that we are always open for suggestions we are a community group which has to work together to reach the maximum potential the dms of the helpers are always open if you have any questions or suggestions more information about this weekends pump will follow stay tuned have a great day the pump team want to buy coin 1 day before in advance premium member contact rptrader 2018-10-05 14:22:06+00:00 1.0 1240071142 1477 binance pump analysis coin brd low 5800 high 7610 win profit 4053 volume 98 btc exchange binance we stayed at the summit for 5 minutes you are wonderful enjoy your profits and await the next signal want to buy coin 1 hour or 1 day before in advance premium member contact rptrader 2018-10-04 19:18:54+00:00 1.0 1240071142 1471 only 1 minute to go next post will be the coin name 2018-10-04 18:59:17+00:00 1.0 1240071142 1469 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused 2018-10-04 18:50:42+00:00 1.0 1240071142 1464 5 hours for our binancepump this time were going to have a social media strategy and announce the coin among multiple channels at once to make outsiders get in remember to make some sweet btc profits enter the trade early and make profit well share the same call again in the future until we reach the target read the pinned post for details date 04 october time 7pm gmt 22 hours left participants 150k+ telegram users exchange binance want to buy coin 1 hours before in advance premium member contact rptrader 2018-10-04 13:53:55+00:00 1.0 1240071142 1463 22 hours for our binancepump this time were going to have a social media strategy and announce the coin among multiple channels at once to make outsiders get in important read the pinned post for all details date 04 october time 7pm gmt 22 hours left participants 150k+ telegram users exchange binance 2018-10-03 21:03:53+00:00 1.0 1240071142 1459 pump announcement • date 04102018 • ⏰ • time 7 pm gmt+0 • ⏰ participants 150k+ telegram user exchange binance were expecting a great signal today because of the market situation and growing user numbers move funds to binance now to be ready you gotta be fast enough to buy that coin and our target is at least 50100 it will take approximately 1550 minutes to reach target ‼️ good luck team lets make some bags of want to buy coin 1 day before in advance premium member contact rptrader 2018-10-02 12:54:52+00:00 1.0 1240071142 1458 binance pump analysis coin cloak low 3620 high 5283 win profit 5053 volume 128 btc exchange binance we stayed at the summit for 15 minutes you are wonderful enjoy your profits and await the next signal want to buy coin 1 hour or 1 day before in advance premium member contact rptrader 2018-10-01 19:26:30+00:00 1.0 1240071142 1451 5 minutes the next post will be the coin to buy 2018-10-01 18:55:01+00:00 1.0 1240071142 1450 less than 30mins before our pump exchange binance 2018-10-01 18:31:34+00:00 1.0 1240071142 1448 binance less than 1 hour before our massive signal exchange binance 2018-10-01 18:00:32+00:00 1.0 1240071142 1447 less than 2 hours before our pump exchange binance 2018-10-01 17:08:24+00:00 1.0 1240071142 1445 binance pump • date 01102018 • ⏰ • time 7 pm gmt+0 • ⏰ were expecting a great signal today because of the market situation and growing user numbers move funds to binance now to be ready goal 2050+ time 1 october at 7 pm gmt+0 exchange binance good luck team lets make some bags of want to buy coin 1 hours before in advance premium member contact rptrader 2018-10-01 13:38:58+00:00 1.0 1240071142 1442 pump analysis coin synx low 850 high 2100 win profit 13653 exchange cryptopia we stayed at the summit for 5 minutes you are wonderful enjoy your profits and await the next signal want to buy coin 1 hour or 1 day before in advance premium member contact rptrader 2018-09-30 19:07:41+00:00 1.0 1240071142 1437 5 minutes the next post will be the coin to buy premium member contact rptrader 2018-09-30 18:55:19+00:00 1.0 1240071142 1436 ️ 30 minutes start getting logged in 2018-09-30 18:30:54+00:00 1.0 1240071142 1435 1 hours to the pump exchange cryptopia be ready are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 285 lets beat this big pump premium member contact rptrader 2018-09-30 18:01:49+00:00 1.0 1240071142 1430 todays pump in cryptopia • next signal will be in 5 hours ⏰ thousands of people will receive the signal creating a huge volume and price increase the coin will hit the 1 spot on cryptopia attracting outside investors after posting the signal it will be shared by influential social media profiles generating a delayed wave of buyers the pump is in 5 hours get the word out there we need to make this event as big as possible we are aiming for 100 bitcoin+ volume ✅ once the price has increased we will take profits while keeping the price high and attractive to investors lets do this the pump team premium member contact rptrader 2018-09-30 14:08:27+00:00 1.0 1240071142 1429 binance pump analysis coin data low 488 high 1384 win profit 134 exchange binance we stayed at the summit for 10 minutes you are wonderful enjoy your profits and await the next signal want to buy coin 1 hour in advance premium member contact rptrader 2018-09-29 19:27:53+00:00 1.0 1240071142 1420 ⚠ 5 minutes ✅ get ready the next message will be the coin 2018-09-29 18:55:23+00:00 1.0 1240071142 1419 10 minutes left be sure to be logged in to binance also never 100 market buy they will not work during pumps if you want to market buy go for 75 or 50 2018-09-29 18:51:45+00:00 1.0 1240071142 1415 binance pump 2 hours to the pump exchange binance be ready are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 85 lets beat this big pump premium member contact rptrader 2018-09-29 17:11:46+00:00 1.0 1240071142 1414 todays pump in binance • next signal will be in 3 hours ⏰ thousands of people will receive the signal creating a huge volume and price increase the coin will hit the 1 spot on binance attracting outside investors after posting the signal it will be shared by influential social media profiles generating a delayed wave of buyers the pump is in 3 hours get the word out there we need to make this event as big as possible we are aiming for 100 bitcoin+ volume ✅ once the price has increased we will take profits while keeping the price high and attractive to investors lets do this the pump team premium member contact rptrader 2018-09-29 16:01:11+00:00 1.0 1240071142 1410 results coin blockmason bcptbtc low 000000958 high 000002380 increase 150+ volume 05 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 200+ 2018-09-28 18:09:08+00:00 1.0 1240071142 1406 pump starts the coin to pump is bcpt blockmason bcptbtc exchange cryptopia target +80 market url trollbox 2018-09-28 18:00:45+00:00 1.0 1240071142 1405 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-09-28 17:55:16+00:00 1.0 1240071142 1401 1 hour left to pump it will be on cryptopia exchange ⚠️ 35 groups more than 200000 members will participate ⚠️ todays pump is going to be great so get ready ✊ 2018-09-28 16:58:37+00:00 1.0 1240071142 1398 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 35 groups will participate around 200k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-09-27 18:05:56+00:00 1.0 1240071142 1396 big co pump announcement 28th sep friday 1800 gmt cryptopia exchange you can find details in the photo below 2018-09-27 18:00:13+00:00 1.0 1240071142 1393 pump analysis coin neva low 281 high 1000 win profit 250 exchange cryptopia we stayed at the summit for 10 minutes you are wonderful enjoy your profits and await the next signal want to buy coin 1 hour in advance premium member contact rptrader 2018-09-25 19:12:35+00:00 1.0 1240071142 1382 ⚠️ 5 minutes ✅ get ready the next message will be the coin 2018-09-25 18:55:32+00:00 1.0 1240071142 1378 1 hour later cryptopia pump ℹ 1 hour todays image will be posted at exactly 7pm gmt ⭕ remember to search for the circled coin in the btc market 2018-09-25 18:01:24+00:00 1.0 1240071142 1377 pump analysis coin yovi low 300 high 790 win profit 157 exchange cryptopia send a message if total rise of 157 today was a faster rise but a bigger peak we held for 6 minutes which was a longer hold we will be taking time to help increase our volume even more enjoy your profits and await the next signal want to become a vip member premium member contact rptrader 2018-09-24 19:22:37+00:00 1.0 1240071142 1369 5 minutes the next post will be the coin to buy premium member contact rptrader 2018-09-24 18:55:30+00:00 1.0 1240071142 1367 30 minutes start getting logged in 2018-09-24 18:30:21+00:00 1.0 1240071142 1364 7 hours left until our massive pump exchange cryptopia huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-09-24 12:12:09+00:00 1.0 1240071142 1363 todays signal info ➡️ make sure you sign up to cryptopia and send your btc to your wallet wwwcryptopiaconzexchange at 7 pm gmt i will post the coin to buy in text format ➡️ in the search bar type the coins name in to buy in click on a sell order higher than the current market price then click on total next to the price this will accumulate all of your btc press buy the time to buy is in the first 5 minutes this is when it will reach its peaks we will then hold for 10 minutes while outside investors buy us all out ➡️ everyone must go onto cryptopia chat box after buying to create more fomo i will create a post to send here link below tips buy any dips these are cheap prices first 5 minutes hold for up to 15 minutes be logged in 20 minutes before ️ 8 hours until the buy signal ️ 2018-09-24 11:01:59+00:00 1.0 1240071142 1361 pump announcement 24092018 exchange cryptopia 7pm gmt have you been missing out on these huge profits above make sure you are ready for the next one this group buys cryptocoins all at the same time to increase its value we then sell the increased price for huge profits do not forget to invite your friends to the pump well always win together pump target 200 profit premium member contact rptrader 2018-09-23 20:32:56+00:00 1.0 1240071142 1351 5 minutes the next post will be the coin to buy vip members 150 profit free our members we expect 20 profit margin premium member contact rptrader 2018-09-23 17:55:08+00:00 1.0 1240071142 1348 ⏱ 1 hour to go❗️ make sure you log on to your cryptopia early enough ✅ reminder after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract several delayed waves of investorsbuyers do 2018-09-23 17:03:41+00:00 1.0 1240071142 1342 today pump date sunday 23rd september ⏱ time 600pm gmt exchange cryptopia huge signal upcoming get ready after posting the coin it will be heavily advertised on several social media platforms and will be ranking first on cryptopia market resulting in waves of outside investors among cryptopia community lets be ready for sunday ℹ️ stay tuned for further informations broadcast premium member contact rptrader 2018-09-23 12:37:57+00:00 1.0 1240071142 1339 dear members the pump team took some rest after a day of hard work yesterdays pump made a massive impact on the market and it is just the start after a succesful pump on vibe we had a great pump on nav with a volume of over 1725 btc nav is just one spot below vibe and nav looks like its volume is growing there were a lot of people that profitted and started inviting the invitng count is surging up this is a great thing the more members the bigger the impact we can make currently nav is the biggest gainer the past 24 hours it is still 61 up i see a lot of people following my advice of riding waves buying the dip and selling the top great work everyone the pump team premium member contact rptrader 2018-09-23 12:19:15+00:00 1.0 1240071142 1334 10 minutes the next post will be the coin to buy again vip members 70 profit free our members we expect 30 profit margin premium member contact rptrader 2018-09-22 18:50:16+00:00 1.0 1240071142 1332 30 mins to the pump be ready for the big rise exchange binance target 60 profit premium member contact rptrader 2018-09-22 18:30:57+00:00 1.0 1240071142 1331 team will soon be a big binance pump 7 pm gmt 2018-09-22 18:23:13+00:00 1.0 1240071142 1328 tomorrow there will be 2 pumps cryptopia and bitmex date sunday 23rd september ⏱ time 600pm gmt exchange cryptopia huge signal upcoming get ready after posting the coin it will be heavily advertised on several social media platforms and will be ranking first on cryptopia market resulting in waves of outside investors among cryptopia community lets be ready for sunday ℹ️ stay tuned for further informations broadcast premium member contact rptrader 2018-09-21 22:38:19+00:00 1.0 1240071142 1326 osc has been trading between 200465 for the last 90 minutes holding the 1 spot on cryptopia see you in the next pump 2018-09-21 20:41:12+00:00 1.0 1240071142 1325 pump analysis coin osc low 80 high 234 win profit 369 volume 8 btc good pump send a message if you want to become a vip member you can buy coins 1 hour in advance premium member contact rptrader 2018-09-21 19:22:57+00:00 1.0 1240071142 1318 10 minutes the next post will be the coin to buy were selling in 2 minutes after this pump we will do another pump again vip members 100 profit free our members we expect 40 profit margin premium member contact rptrader 2018-09-21 18:50:14+00:00 1.0 1240071142 1316 and also cryptopia pump 20 minutes make sure you are logged in with your btc ready 2018-09-21 18:30:31+00:00 1.0 1240071142 1315 ℹ️ 45 minutes todays will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market 2018-09-21 18:16:02+00:00 1.0 1240071142 1313 • next signal 2 days ⏰ date 23 sep 2018 ⚠️ exchange binance or cryptopia targets 100 • get ready premium member contact rptrader 2018-09-21 17:40:11+00:00 1.0 1240071142 1311 binance pump analysis coin kmd low 1727 high 1950 win profit 14 volume 12 btc good trade pump tomorrow will be the binance pump follow the instructions investor contact rptrader 2018-09-20 20:26:35+00:00 1.0 1240071142 1302 after 10 minutes our technical analysis will begin well work on the coin and we can explain the coin name in about half an hour please be ready in 30 minutes and wait for instructions from us were gonna make a big win 2018-09-20 19:51:27+00:00 1.0 1240071142 1300 40 minutes left until the binance pump 2018-09-20 19:23:41+00:00 1.0 1240071142 1297 the pump clock has changed 800 pm gmt 3 hours 30 mins to go pump were going to the moon in binance premium member contact rptrader 2018-09-20 16:29:38+00:00 1.0 1240071142 1296 binance pump announcement pump today 600 pm gmt exchange binance binance pump is given to you by technical analysis yesterday we increased the icn coin 13 were gonna do better today partner with us for this profit rate a coine pump will be made from the first 100 coins in the marketcap do not forget to invite your friends to the pump well always win together pump target 10 20 30 profit exchange binance for all your questions please send a message rptrader 2018-09-20 11:44:02+00:00 1.0 1240071142 1295 binance pump analysis coin icn low 5725 high 6482 win profit 13 volume 10 btc good trade pump tomorrow will be the binance pump follow the instructions investor contact rptrader 2018-09-19 19:29:06+00:00 1.0 1240071142 1294 cryptopia pump analysis coin btcrevain r low 1552 peak buy 3306 total rise of 113 we saw a slow rise today which was good and a hold for over 5 minutes we will be taking some time to make sure the next coin picked is perfect next signal to be confirmed do not miss it investor contact rptrader 2018-09-19 19:28:29+00:00 1.0 1240071142 1285 4 minutes the next post will be the coin to buy 2018-09-19 18:56:09+00:00 1.0 1240071142 1284 10 minutes to go cryptopia pump 2018-09-19 18:50:28+00:00 1.0 1240071142 1283 and also cryptopia pump 20 minutes make sure you are logged in with your btc ready 2018-09-19 18:41:51+00:00 1.0 1240071142 1278 binance pump icn coin to the moon 2018-09-19 18:24:00+00:00 1.0 1240071142 1274 the name binance pump coin will be one of these 4 coins gntbtc icnbtc wavesbtc xvgbtc get ready for the binance pump do not sell for 15 minutes 2018-09-19 18:14:41+00:00 1.0 1240071142 1273 get ready for the binance pump do not sell for 15 minutes 2018-09-19 18:10:58+00:00 1.0 1240071142 1272 binance pump cryptopia pump more information binance pump it will be between 6pm gmt 7pm gmt binance pump will be made according to trade rules the selected coin will be given to you in the presence of indicators volume too large you can buy high quantity sales will be very easy volume is high we will try a pump with our big investment partners your participation is important cryptopia pump 1 hours until the coin to buy is released volume is low the amount you enter belongs to you target 100 increase 2018-09-19 18:01:09+00:00 1.0 1240071142 1270 hello team today we will try the binance pump at the same time as the cryptopia pump it will be between 6pm gmt 7pm gmt please follow our page if our binance signal goes well were going to build a pump at binance 2018-09-19 16:32:25+00:00 1.0 1240071142 1269 3 hours to go pump time get your btc transfered to cryptopia 2018-09-19 16:11:03+00:00 1.0 1240071142 1268 information for today date wednesday 19092018 hour 700pm gmt exchange wwwcryptopiaconz 1 i will post a signal at exactly 7pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i entice outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia set your alarms you will not want to miss today we will be creating news for everyone to post into the cryptopia chat box once the signal has been made today 2018-09-19 15:53:12+00:00 1.0 1240071142 1259 ⏱ 5 mins to go❗️ next post will be the coin make sure you log on to cryptopia early enough ✅ be ready huge signal upcoming its going to skyrocket we have a great marketing team massive gains are going to be made premium member contact rptrader 2018-09-16 18:25:08+00:00 1.0 1240071142 1257 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 630pm gmt exactly an image of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar then click it ▶️ to buy in click on sell orders higher than the current market rate then click your available btc value cryptopia will calculate the equivalent amount of coins click buy button and your order will meet the lowest prices first after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market this will attract several delayed waves of investorsbuyers among cryptopia community and push the coin to moon hold while the price is increasing rapidly to sell out you can either gradually meet the strong waves of buy orders or list your sell orders at your target price levels we advise you to sell in pieces to keep the price high and very engaging to the outside investors the price will then keep raising up much higher allowing all of our channel members to clear the greatest profits on this signal opportunity ⏱ 50 mins left to go❗ 2018-09-16 17:48:25+00:00 1.0 1240071142 1246 9 minutes are you ready to go to the moon next post will be the coin 2018-09-12 18:21:45+00:00 1.0 1240071142 1245 1 hours until the coin to buy is released make sure you are logged in at least 20 minutes before 2018-09-12 17:35:47+00:00 1.0 1240071142 1243 6 hours until the coin to buy is released set your alarms today will be huge 2018-09-12 12:31:54+00:00 1.0 1240071142 1242 pump announcement 7 hours 30 mins to the pump have you been missing out on these huge profits above make sure you are ready for the next one this group buys cryptocoins all at the same time to increase its value we then sell the increased price for huge profits next coin signal today exchange wwwcryptopiaconz date 12092018 wednesday time 630 pm gmt today will be another huge rise above 200 dont miss your chance to join in transfer your btc to cryptopia today and await further instructions on how to take part premium member contact rptrader 2018-09-12 10:49:49+00:00 1.0 1240071142 1241 pump announcement have you been missing out on these huge profits above make sure you are ready for the next one this group buys cryptocoins all at the same time to increase its value we then sell the increased price for huge profits next coin signal today exchange wwwcryptopiaconz date 12092018 wednesday time 630 pm gmt today will be another huge rise above 200 dont miss your chance to join in transfer your btc to cryptopia today and await further instructions on how to take part premium member contact rptrader 2018-09-11 22:17:09+00:00 1.0 1240071142 1232 ℹ️ just 10 minutes remaining todays will be posted at exactly 7pm gmt ⭕️ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-09-09 18:50:25+00:00 1.0 1240071142 1229 1 hour until the coin to buy is released be ready to take todays coin to the moon 2018-09-09 15:55:43+00:00 1.0 1240071142 1228 todays signal info ➡ make sure you sign up to cryptopia and send your btc to your wallet wwwcryptopiaconzexchange at 5 pm gmt i will post the coin to buy in text format ➡ in the search bar type the coins name in to buy in click on a sell order higher than the current market price then click on total next to the price this will accumulate all of your btc press buy the time to buy is in the first 5 minutes this is when it will reach its peaks we will then hold for 10 minutes while outside investors buy us all out ➡ everyone must go onto cryptopia chat box after buying to create more fomo i will create a post to send here link below tips buy any dips these are cheap prices first 5 minutes hold for up to 15 minutes be logged in 20 minutes before premium member contact rptrader 2018-09-09 09:47:48+00:00 1.0 1240071142 1223 next coin signal sunday have you been missing out on these huge profits above make sure you are ready for the next one this group buys cryptocoins all at the same time to increase its value we then sell the increased price next coin signal sunday exchange wwwcryptopiaconz date 09092018 sunday time 5 pm gmt preparations have been going well only 2 days to go set your reminders now instructions to be posted tomorrow afternoon premium member contact rptrader 2018-09-07 20:06:59+00:00 1.0 1240071142 1218 5 minutes to go next post will be the coin ⚠ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-07 18:55:29+00:00 1.0 1240071142 1216 1 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain premium member contact rptrader 2018-09-07 18:00:35+00:00 1.0 1240071142 1214 3 hours to the pump target 280 320 profit exchange cryptopia double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-09-07 16:10:16+00:00 1.0 1240071142 1211 informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ tomorrow at 700pm gmt exactly an image of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits fees 004 btc 1 year access regards admin rptrader 2018-09-06 20:58:21+00:00 1.0 1240071142 1210 upcoming signal announcement❗ great news team the next broadcast is on date 789th september ⏱ time 7pm gmt exchange wwwcryptopiaconz the next bullish altcoins signal will be released on that date as the markets timing momentum will technically be held ideally for another massive price rally +346 on the previous one cryptopia investors are loading up with altcoins having very bullish price patterns as well as the market is getting crowded back from summer break team work is key we will clear some huge gains with these market buyers because of the big decline in bitcoin we made the membership price 004 btc it will only last 7 days hurry up vip membership limited slots buy now only 6 slots open ✅ coin name before pump ✅ professional daily help ✅ premium signals this membership allows you to pump coins with buying opportunities 1 day before in advance fees 004 btc 1 year access regards admin rptrader 2018-09-06 15:26:01+00:00 1.0 1240071142 1198 4 minutes the next post will be the coin to buy 2018-09-05 18:26:43+00:00 1.0 1240071142 1193 21 hours 30 mins left until our massive pump information for tomorrow 1 i will post a signal at exactly 630 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i entice outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia we are only 24 hours away from the coin to buy being released the last coin worked perfectly be ready for another big rise lets take it to the moon premium member contact rptrader 2018-09-04 21:00:18+00:00 1.0 1240071142 1191 pump announcement wednesday 5th of september 630 pm gmt do not forget to invite your friends to the pump well always win together pump target 500 profit exchange cryptopia premium member contact rptrader 2018-09-04 15:50:52+00:00 1.0 1240071142 1185 pump announcement wednesday 5th of september 630 pm gmt do not forget to invite your friends to the pump well always win together pump target 500 profit exchange cryptopia it is important to educate yourselves on how to trade on cryptopia and familiarise yourself with their buying and selling on wednesday at 630pm gmt exactly i will announce a coin for all of us to buy once we have bought it we must hold it for at least 15 minutes this will enable us to have enough time to stabilise the price and bring in some investors that are not in this group we can then start selling in little pieces this will prevent any big dips and keep the price holding high and keep people investing into it while we exit the bitcoin market looking much better which means bigger investors i want everyone in this group to have as much bitcoin as possible by the end of this year remember team work is key premium member contact rptrader 2018-09-02 19:20:08+00:00 1.0 1240071142 1166 just 1 minutes left next post will be the coin 2018-08-31 18:29:50+00:00 1.0 1240071142 1164 15 minutes make sure you are logged in and ready 2018-08-31 18:15:28+00:00 1.0 1240071142 1157 7 hours 30 mins left until our massive pump exchange cryptopia huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date target 500 profit premium member contact rptrader 2018-08-31 12:00:05+00:00 1.0 1240071142 1155 pump announcement friday 31st august 630 pm gmt do not forget to invite your friends to the pump well always win together pump target 500 profit exchange cryptopia premium member contact rptrader 2018-08-30 22:44:29+00:00 1.0 1240071142 1148 the next pump will be tomorrow coin name is coming soon be ready 2018-08-30 18:58:21+00:00 1.0 1240071142 1147 just 5 minutes left next post will be the coin 2018-08-30 18:55:17+00:00 1.0 1240071142 1145 ⚠ 30 minutes todays image will be posted at exactly 7pm gmt ⭕ remember to search for the circled coin in the btc market make sure you log on to cryptopia in good time 2018-08-30 18:30:27+00:00 1.0 1240071142 1143 the pump was delayed 1 hour ahead ❗️ just 1 hour and 30 minutes remaining premium member contact rptrader 2018-08-30 17:33:39+00:00 1.0 1240071142 1138 7 hours 30 mins left until our massive pump exchange cryptopia huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date target 250 profit premium member contact rptrader 2018-08-30 10:30:20+00:00 1.0 1240071142 1133 binance pump announcement date 29 aug time 3pm gmt+0 participants 107k users exchange binance market is looking bullish great terms to push coins back to their normal price pinchanneltotop premium member contact rptrader 2018-08-28 13:22:50+00:00 1.0 1240071142 1132 coin xxx start 175 high 999 a total rise of 318 this coin rose up quickly tonight it then held at 140 for 7 minutes while bouncing between 140 and 219 before dropping back down the next coin announcement will allow a much bigger rise back above 400 a few days will be taken to allow us to place ourselves in contact with outside investors next signal coming soon do not miss it join premium and earn more so many queries but we have limited slot grab the opportunity again only 2 slots left hurry up last pump profit 380 400 premium member contact rptrader 2018-08-28 09:44:30+00:00 1.0 1240071142 1131 coin xxx low 175 high 999 win profit + 380 profit good pump wait for the next pump date premium member contact rptrader 2018-08-26 17:29:24+00:00 1.0 1240071142 1126 5 minutes next post will be the coin 2018-08-26 16:55:05+00:00 1.0 1240071142 1125 ℹ️ 10 minutes are you ready to buy a coin to the moon 2018-08-26 16:51:33+00:00 1.0 1240071142 1123 1 hours left until our massive pump exchange cryptopia huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-08-26 16:00:04+00:00 1.0 1240071142 1122 2 hours until the coin to buy is released make sure you are logged in 20 minutes early premium member contact rptrader 2018-08-26 15:15:10+00:00 1.0 1240071142 1119 information for today 1 i will post a signal at exactly 5pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ♦ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tomorrows coin offers an opportunity for all members to invest 8 hours until the coin to buy is released premium member contact rptrader 2018-08-26 09:07:09+00:00 1.0 1240071142 1117 pump announcement sunday 26th of august 500 pm gmt do not forget to invite your friends to the pump well always win together pump target 500 profit exchange cryptopia great news another signal coming your way tomorrows signal information set your alarms tomorrow will be a great opportunity to invest premium member contact rptrader 2018-08-25 09:28:44+00:00 1.0 1240071142 1114 coin xzx low 4906 high 40000 win profit + 500 profit good pump wait for the next pump date premium member contact rptrader 2018-08-22 18:21:54+00:00 1.0 1240071142 1108 5 minutes the next post will be the coin to buy 2018-08-22 17:55:57+00:00 1.0 1240071142 1103 2 hours until the coin to buy is released make sure you are logged in 20 minutes early 2018-08-22 16:08:59+00:00 1.0 1240071142 1101 information for today 1 i will post a signal at exactly 6pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members lets make today a huge record 8 hours until the coin to buy is released 2018-08-22 10:16:13+00:00 1.0 1240071142 1099 pump announcement wednesday 22nd of august 600 pm gmt do not forget to invite your friends to the pump well always win together pump target 500 profit exchange cryptopia premium member contact rptrader discount was made 2018-08-21 15:12:08+00:00 1.0 1240071142 1098 great news another signal coming your way tomorrows signal information date wednesday 22nd of august hour 600 pm gmt exchange cryptopia wwwcryptopiaconz set your alarms and see you all tomorrow when we will break that 500 again contact for pump investment trust rptrader 2018-08-21 12:58:29+00:00 1.0 1240071142 1079 pump starts the coin to pump is bip bipcoin bipbtc exchange cryptopia target +200 market url trollbox 2018-08-16 18:00:17+00:00 1.0 1240071142 1078 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-08-16 17:55:24+00:00 1.0 1240071142 1075 just 30 minutes to fly get ready and fasten your seatbelts dont sell your coin from the low prices hold it at least 15 minutes ❗️❗️❗️ 2018-08-16 17:30:23+00:00 1.0 1240071142 1074 1 hour left to pump it will be on cryptopia exchange 100 groups and 300000 members will participate todays pump is going to be great so get ready ✊ 2018-08-16 16:59:06+00:00 1.0 1240071142 1070 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 100 groups will participate around 300k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-08-15 18:10:19+00:00 1.0 1240071142 1067 crazy co pump announcement 16th aug thursday 1800 gmt cryptopia exchange you can find details in the photo below 2018-08-15 15:58:38+00:00 1.0 1240071142 1061 results coin bitcoal coalbtc low 000000089 high 000000137 increase 55+ volume 03 btc it was a good pump but we should do better one thanks for your believe to us congratulations to all who participated today and thanks for your support and positive feedback stay tuned for info regarding the next big copump our next profit target more than 100+ 2018-08-13 19:09:34+00:00 1.0 1240071142 1056 pump starts the coin to pump is coal bitcoal coalbtc exchange cryptopia target +100 market url trollbox 2018-08-13 19:01:24+00:00 1.0 1240071142 1055 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-08-13 18:54:27+00:00 1.0 1240071142 1052 just 30 minutes to fly get ready and fasten your seatbelts dont sell your coin from the low prices hold it at least 15 minutes ❗️❗️❗️ 2018-08-13 18:31:26+00:00 1.0 1240071142 1051 1 hour left to pump it will be on cryptopia exchange 20 groups and 100000 members will participate todays pump is going to be great so get ready ✊ 2018-08-13 18:00:56+00:00 1.0 1240071142 1045 coin opcx low 51 high 390 volume 6 btc a total rise of 664 a top 3 for biggest coin signal ever recorded from a single group there were glimpses of 700 well done for executing this perfectly we are still sitting up 40 30 minutes on our next signal will have resistance lower down to allow a slower rise for more profits next signal coming soon do not miss another you can become a vip member and buy it 1 day in advance contact for pump investment trust rptrader 2018-08-12 19:05:13+00:00 1.0 1240071142 1038 5 minutes the next post will be the coin to buy 2018-08-12 16:54:41+00:00 1.0 1240071142 1032 pump announcement 12th of august 5 pm gmt its what you have all been waiting for lots of hard work is going on to prepare for the perfect signal on sunday where of course we will expect an even bigger rise than our last 694 exchangecryptopia premium member contact rptrader 2018-08-12 14:56:07+00:00 1.0 1240071142 1026 big co pump announcement 13rd aug monday 1900 gmt cryptopia exchange you can find details in the photo below 2018-08-11 17:58:56+00:00 1.0 1240071142 1025 ℹ️ information for tomorrow ℹ️ date sunday 12th of august hour 500pm gmt exchange wwwcryptopiaconz 1 i will post a signal at exactly 5pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 510 minutes before to enable enough time to be prepared 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i entice outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 510 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ we are only 24 hours away from the coin to buy being released lots of planning has gone into tomorrow and we are ready to see a bigger rise than the last set your alarms contact for pump investment trust rptrader 2018-08-11 16:59:46+00:00 1.0 1240071142 1020 pump announcement 12th of august 5 pm gmt its what you have all been waiting for lots of hard work is going on to prepare for the perfect signal on sunday where of course we will expect an even bigger rise than our last 694 exchangecryptopia premium member contact rptrader 2018-08-10 17:59:01+00:00 1.0 1240071142 1008 last 5 mins to pump be logged in to cryptopia next post will be the coin 2018-08-08 17:55:22+00:00 1.0 1240071142 1007 30 mins until the pump 1 i will post a signal at exactly 6pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i entice outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia we are only 30 mins away from the coin to buy being released the last coin worked perfectly but we will be going higher today premium member contact rptrader 2018-08-08 17:30:03+00:00 1.0 1240071142 1004 1 hour 20 minutes until the coin to buy is released make sure you are logged in 20 minutes early contact for pump investment trust rptrader 2018-08-08 16:40:21+00:00 1.0 1240071142 1003 4 hours until the pump read the instructions above it is going to be as big as ever contact for pump investment trust rptrader 2018-08-08 13:52:18+00:00 1.0 1240071142 1001 todays signal information date wednesday 8th of august hour 600 pm gmt exchange cryptopia wwwcryptopiaconz set your alarms for today the signal is 8 hours away the group is attracting a lot of new members due to our success i expect today to be a top 3 record rise from this group see you all later contact for pump investment trust rptrader 2018-08-08 10:15:34+00:00 1.0 1240071142 992 pump announcement wednesday 8th of august 6 pm gmt do not forget to invite your friends to the pump well always win together pump target 400 profit exchange cryptopia last signal we saw a huge rise to 438 with another good amount of volume 68btc make sure you are here for wednesday we plan to rise up higher again you wont want to miss it we are taking a few days to plan for this one to make it perfect the goal is to hold for double the time and reach new highs we encourage you to practice trading on cryptopia to make sure your orders are all filled on wednesday see you all in two days premium member contact rptrader 2018-08-07 18:26:38+00:00 1.0 1240071142 976 start 10100 sats peak 55600 sats 550 profit x55 if you think you are not fast enough during pumps and you want to get the coin before pump starts you can join our vip programs today we saw a huge rise go up to 438 with a big volume again we smashed through barriers and held very high for over 10 minutes bigger analysis coming soon with the next signal announcement for more info about vip programs contact rptrader enjoy your profits and keep on following us 2018-08-05 18:39:18+00:00 1.0 1240071142 969 ℹ️ 5 minutes the next post will be the coin to buy 2018-08-05 17:55:15+00:00 1.0 1240071142 967 ℹ️ 15 minutes are you ready 2018-08-05 17:45:57+00:00 1.0 1240071142 966 ℹ️ 25 minutes start getting logged in and ready 2018-08-05 17:34:57+00:00 1.0 1240071142 965 1 hours until the coin to buy is released exchange cryptopia contact for pump investment trust rptrader 2018-08-05 17:11:59+00:00 1.0 1240071142 964 2 hours until the coin to buy is released read the instructions above and be ready exchange cryptopia contact for pump investment trust rptrader 2018-08-05 16:00:02+00:00 1.0 1240071142 961 todays signal information date sunday 5th of august hour 600 pm gmt exchange cryptopia wwwcryptopiaconz set your alarms for today the signal is 7 hours away the group is attracting a lot of new members due to our success expect this to be big 2018-08-05 11:02:38+00:00 1.0 1240071142 960 information for tomorrow date sunday 5th of august hour 600pm gmt exchange wwwcryptopiaconz 1 i will post a signal at exactly 6pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i entice outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia we are only 22 hours away from the coin to buy being released the last coin worked perfectly be ready for another big rise lets take it to the moon premium member contact rptrader 2018-08-04 20:08:37+00:00 1.0 1240071142 959 pump announcement sunday 5th of august 1800 pm gmt do not forget to invite your friends to the pump well always win together pump target 320 profit exchange cryptopia premium member contact rptrader 2018-08-03 15:40:06+00:00 1.0 1240071142 955 5 min to start our signal pump next post is coin 2018-08-03 14:55:09+00:00 1.0 1240071142 953 around 20 min to start our signal pump 2018-08-03 14:40:59+00:00 1.0 1240071142 951 around 2 hours and 30 min to start our signal pump be ready on binance 2018-08-03 12:29:36+00:00 1.0 1240071142 950 ☄️ binance pump we are doing collaboration pump tomorrow on binance with 50 goal over 100k participants there will be moon date tomorrow time 1500 gmt exchange binance good luck team contact for pump investment trust rptrader 2018-08-02 14:44:21+00:00 1.0 1240071142 922 results coin sooncoin soonbtc low 000000064 high 000000120 increase 88+ volume 09 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 150+ 2018-07-28 18:39:17+00:00 1.0 1240071142 920 pump starts the coin to pump is soon sooncoin soonbtc exchange cryptopia target +100 market url trollbox 2018-07-28 18:01:03+00:00 1.0 1240071142 918 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-07-28 17:55:25+00:00 1.0 1240071142 913 1 hour left to pump it will be on cryptopia exchange ⚠️ 35 groups more than 130000 members will participate ⚠️ todays pump is going to be great so get ready ✊ 2018-07-28 17:00:32+00:00 1.0 1240071142 905 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 35 groups will participate around 130k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-27 18:10:54+00:00 1.0 1240071142 895 big co pump announcement 28th july saturday 1800 gmt cryptopia exchange you can find details in the photo below 2018-07-26 20:30:04+00:00 1.0 1240071142 894 results coin cubits qbtbtc low 000000022 high 000000051 increase 132+ volume 10 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 200+ 2018-07-25 18:30:59+00:00 1.0 1240071142 890 pump starts the coin to pump is qbt cubits qbtbtc exchange cryptopia target +100 market url trollbox 2018-07-25 18:00:45+00:00 1.0 1240071142 888 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-07-25 17:54:56+00:00 1.0 1240071142 884 1 hour left to pump it will be on cryptopia exchange ⚠️ 33 groups more than 110000 members will participate ⚠️ todays pump is going to be great so get ready ✊ 2018-07-25 17:03:25+00:00 1.0 1240071142 879 5 hours left to cryptopia pump stay tuned and wait for the flight exchange cryptopia be ready when the coin is announced buy as fast as possible to push the price up and keep the momentum going ✈️ place your buy orders as high as possible to catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed from the best available price ️⃣ as an example lets say the coin has sell orders at 200 205 and 208 sats put a buy order to 2000 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buy those lowest orders than you will buy from 211 215 and 218 which is again pretty good otherwise if youd put your order to 200 sats youd be failed to buy at the initial moment and miss the train to the moon ️⃣ after you buy promote the coin on cryptopia trollbox to attract other people dont sell early exit price is your decision but our recommendation for you to wait till coin gets at least 1012x value ✅ ➡️ a direct link to the market will be shared in the announcement premium member contact rptrader 2018-07-25 13:02:07+00:00 1.0 1240071142 877 our vip membership ✅ coin before pump last 2 hours ago ✅ professional daily help ✅ vip signals binancebittrex ✅ join our vip channel fees btc lifetime next pump today 6 pm gmt contact rptrader 2018-07-25 11:49:06+00:00 1.0 1240071142 870 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 33 groups will participate around 110k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-24 17:59:44+00:00 1.0 1240071142 869 hi team the pump has been postponed to tomorrow big co pump announcement 25th july wednesday time 6 pm gmt exchange cryptopia premium member contact rptrader 2018-07-24 17:25:49+00:00 1.0 1240071142 859 big co pump announcement 25th july wednesday 1800 gmt cryptopia exchange you can find details in the photo below 2018-07-23 17:44:12+00:00 1.0 1240071142 854 pump announcement date time tuesday 24th july at 600pm gmt exchange cryptopia markup price +300 to 400 massive trades ahead the trading instructions will be broadcast soon stay tuned premium member contact rptrader 2018-07-23 08:50:01+00:00 1.0 1240071142 853 coin btcopcx first buy 89 peak buy 376 profit 400 wooow vips got coin name 30 mins before pump volume 33 btc today rise was huge incredible work tonight we saw the percentage smash records tonight i hope you enjoyed taking part if you missed it do not miss another points to work on lots of sell occurred even when the coin still went up hold these sells for increased profits while investors flood in we could have easily hit 500 tonight if we held on the next coin signal will be given in image form to slow down our massive rises and allow all the buy orders to be completed premium member contact rptrader 2018-07-22 18:42:28+00:00 1.0 1240071142 848 4 minutes next post will be the name of the coin 2018-07-22 16:56:39+00:00 1.0 1240071142 845 2 hours 45 mins until the coin pump today is going to be another big one read the instructions above and be ready premium member contact rptrader 2018-07-22 14:15:14+00:00 1.0 1240071142 844 5 hours 30 mins left until our massive pump exchange cryptopia pairing btc vips got coin name 1 hour before pump huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-07-22 11:30:16+00:00 1.0 1240071142 842 pump announcement 22st july saturday 5 pm gmt exchangecryptopia premium member contact rptrader 2018-07-21 21:44:00+00:00 1.0 1240071142 841 results coin granite grnbtc low 000000036 high 000000086 increase 139+ volume 08 btc it was an amazing pump well done everyone it was really good job congratulations to all who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next big copump our next profit target is 200+ 2018-07-21 19:15:50+00:00 1.0 1240071142 840 pump coin grn low 36 high 86 win profit 115 guys remember there is no risk of vip membership congratulations message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-07-21 18:21:19+00:00 1.0 1240071142 832 pump starts the coin to pump is grn granite grnbtc exchange cryptopia target +100 market url trollbox 2018-07-21 18:00:23+00:00 1.0 1240071142 830 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-07-21 17:55:55+00:00 1.0 1240071142 826 1 hour left to pump it will be on cryptopia exchange 25 groups more than 80000 members will participate todays pump is going to be great so get ready ✊ 2018-07-21 17:01:02+00:00 1.0 1240071142 824 todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold contact rptrader and join our vip channel vips got coin name 1 hour before pump investment consultant contact rptrader 2018-07-21 14:18:19+00:00 1.0 1240071142 819 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 25 groups will participate around 80k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-20 18:06:22+00:00 1.0 1240071142 816 big co pump announcement 21st july saturday 1800 gmt cryptopia exchange you can find details in the photo below 2018-07-20 12:12:00+00:00 1.0 1240071142 813 pump announcement 07212018 6 pm gmt do not forget to invite your friends to the pump well always win together exchange cryptopia premium member contact rptrader 2018-07-18 18:40:52+00:00 1.0 1240071142 800 coin osc low 114 high 295 win volume 1 btc todays pump did not go very well but we still have profitable members guys remember there is no risk of vip membership message for information double your btc within few minutes with no risk check pump results and then decide for premium membership vip membership for 1 week 0 btc lifetime premium member contact rptrader 2018-07-14 19:15:22+00:00 1.0 1240071142 796 ❗️ 5 minutes ✅ the next message will be the coin 2018-07-14 18:55:47+00:00 1.0 1240071142 793 1 hours until the coin pump exchange cryptopiaconz today is going to be huge read the instructions above and be ready 700 pm gmt premium member contact rptrader 2018-07-14 18:03:53+00:00 1.0 1240071142 792 pump announcement today pump cryptopia 7 pm gmt do not forget to invite your friends to the pump well always win together pump target 250 profit exchange cryptopia premium member contact rptrader 2018-07-14 17:04:41+00:00 1.0 1240071142 791 binance pump coin vibe low 1090 high 13654 win profit 25 volume 24 btc guys remember there is no risk of vip membership congratulations message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-07-14 17:02:30+00:00 1.0 1240071142 789 5 minuets left binance pump next post is coin premium member contact rptrader 2018-07-14 16:55:03+00:00 1.0 1240071142 788 10 minutes left login to binance now lets moon this coin its a gem good luck team lets make some great profits 2018-07-14 16:50:32+00:00 1.0 1240071142 787 14 minutes left binance pump are youre ready for a pump today 2018-07-14 16:46:59+00:00 1.0 1240071142 786 30 minutes left are you logged in do you have a clear mind and are hydrated good mood then youre ready for a pump today read the pinned post for details if you want to make some today team market looking good premium member contact rptrader 2018-07-14 16:30:54+00:00 1.0 1240071142 777 7 hours to the pump 1900 pm gmt exchange cryptopia vip only for special individuals who want to earn serious cash double your btc within few minutes with no risk check our signal results and then decide for premium membership spots opened for vip membership because on high demand for short time ✅ vip membership we will give coin name to vip groups before free signal channel so you will always be firstfast and earn in few seconds with no risk monthly btc please ask the fee yearly btc please ask the fee vip price only 50 spots open then we close the doors and cant promise whenif we will have vip price again lifetime btc please ask the fee so hurry dont be sorry later premium member contact rptrader 2018-07-14 12:03:45+00:00 1.0 1240071142 776 10 hours until the coin pump today is going to be huge read the instructions above and be ready 700 pm gmt premium member contact rptrader 2018-07-14 09:07:55+00:00 1.0 1240071142 773 pump announcement tomorrow 13th of july 1900 pm gmt do not forget to invite your friends to the pump well always win together pump target 250 profit exchange cryptopia premium member contact rptrader 2018-07-13 20:20:38+00:00 1.0 1240071142 772 coin cap low 8 high 44 win profit 300 wooooooow volume 3 btc guys remember there is no risk of vip membership congratulations message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-07-13 19:43:31+00:00 1.0 1240071142 765 5 mins to the pump next post will be the coin be ready 2018-07-13 19:25:05+00:00 1.0 1240071142 763 1 hours until the coin pump today is going to be huge read the instructions above and be ready 730 pm gmt premium member contact rptrader 2018-07-13 18:32:22+00:00 1.0 1240071142 762 2 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-07-13 17:32:47+00:00 1.0 1240071142 761 5 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold premium member contact rptrader 2018-07-13 14:31:08+00:00 1.0 1240071142 760 8 hours 30 mins left until our massive pump exchange cryptopia pump time 730 pm gmt today x2 earning opportunity 1target 190 200 2target 250 280 3target 300 320 discounts on vip memberships started ✅ premium member contact rptrader 2018-07-13 11:00:03+00:00 1.0 1240071142 759 the pump will be tomorrow 1930 pm gmt exchange cryptopia huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date vip only for special individuals who want to earn serious cash double your btc within few minutes with no risk check our signal results and then decide for premium membership spots opened for vip membership because on high demand for short time ✅ vip membership we will give coin name to vip groups before free signal channel so you will always be firstfast and earn in few seconds with no risk monthly btc please ask the fee yearly btc please ask the fee vip price only 50 spots open then we close the doors and cant promise whenif we will have vip price again lifetime btc please ask the fee so hurry dont be sorry later premium member contact rptrader 2018-07-12 16:33:40+00:00 1.0 1240071142 757 pump announcement date friday 13072018 time below 2030pm gmt+1 london 1530pm est new york 2230pm gmt+3 moscow 2130pm gmt+2 rome 0530am aest sydney 0100am ist delhi 0430am jst tokyo exchange wwwcryptopiaconz pairing btc premium member contact rptrader 2018-07-12 07:37:13+00:00 1.0 1240071142 756 coin riya low 8913 high 19813 win congratulations message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-07-08 19:11:13+00:00 1.0 1240071142 752 5 mins to the pump next post will be the coin be ready 2018-07-08 18:55:14+00:00 1.0 1240071142 750 1 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-07-08 18:00:34+00:00 1.0 1240071142 749 the surprise pump will start in 1 hours 45 minutes we got a great coin stay tuned become a vip member before its too late coin name will be given 1 minute before target 220 profit 3 btc premium member contact rptrader 2018-07-08 17:15:59+00:00 1.0 1240071142 748 coin bon low 2245 high 5499 win volume 3 btc congratulations message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-07-08 17:08:48+00:00 1.0 1240071142 744 5 mins to the pump next post will be the coin be ready 2018-07-08 16:55:04+00:00 1.0 1240071142 742 1 hours left until our massive pump exchange cryptopia pairing btc premium member contact rptrader 2018-07-08 16:05:26+00:00 1.0 1240071142 741 2 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-07-08 15:05:35+00:00 1.0 1240071142 739 pump announcement dear members sunday is the day of another pump on cryptopia the bitcoin market is stable we hope you invested in the dip last week collecting these small profits is always good cryptopias coin walls look great for another signal meaning an easier rise like we saw last time we will follow the same tactic as usual as it is working perfectly i will repost the instructions on how to take part tomorrow see you all sunday next coin signal date sunday 08072018 time 1700pm gmt exchange wwwcryptopiaconz for now have your btc ready in your cryptopia wallet and await further instructions discounts on vip memberships started ✅ premium member contact rptrader 2018-07-06 11:18:36+00:00 1.0 1240071142 738 coin abc low 455484 high 1037583 win volume 2 btc message for information double your btc within few minutes with no risk check pump results and then decide for premium membership discounts on vip memberships started ✅ premium member contact rptrader 2018-07-05 19:07:10+00:00 1.0 1240071142 735 ❗️ 3 minutes only the next message will be the coin 2018-07-05 18:57:36+00:00 1.0 1240071142 733 ❗️ 10 minutes left ✅ be ready to go its going to moon 2018-07-05 18:50:44+00:00 1.0 1240071142 731 1 hours left until our massive pump exchange cryptopia pump btc premium member contact rptrader 2018-07-05 18:02:30+00:00 1.0 1240071142 729 6 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-07-05 13:09:01+00:00 1.0 1240071142 728 pump announcement thursday 5th of july 1900 pm gmt do not forget to invite your friends to the pump well always win together pump target 250 profit exchange cryptopia premium member contact rptrader 2018-07-04 19:53:12+00:00 1.0 1240071142 727 coin cc low 415 high 1430 win volume 34 btc next pump tomorrow message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-07-04 19:35:03+00:00 1.0 1240071142 718 5 mins to the pump next post will be the coin be ready 2018-07-04 18:57:00+00:00 1.0 1240071142 716 1 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this premium member contact rptrader 2018-07-04 18:00:10+00:00 1.0 1240071142 715 9 hours 40mins left until our massive pump exchange cryptopia pairing btc we are going to take advantage of this market and have our best pump to date information for today 1 i will post a signal at exactly 7pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members lets make today a record premium member contact rptrader 2018-07-04 09:20:32+00:00 1.0 1240071142 713 24 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-07-03 19:15:22+00:00 1.0 1240071142 712 pump announcement wednesday 4th of july 1900 pm gmt do not forget to invite your friends to the pump well always win together pump target 320 profit exchange cryptopia premium member contact rptrader 2018-07-02 19:17:09+00:00 1.0 1240071142 711 coin skin low 200 high 580 win volume 4 btc wait for the next pump date 2018-07-02 17:46:24+00:00 1.0 1240071142 710 we are a wonderful pump group team we are a wonderful pump group the analysis will come soon message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-07-02 17:02:27+00:00 1.0 1240071142 707 5 mins to the pump next post will be the coin be ready 2018-07-02 16:55:01+00:00 1.0 1240071142 705 1 hours left until our massive pump exchange cryptopia pump btc premium member contact rptrader 2018-07-02 16:03:20+00:00 1.0 1240071142 704 3 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this premium member contact rptrader 2018-07-02 14:03:39+00:00 1.0 1240071142 703 5 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this we are going to take advantage of this market and have our best pump to date premium member contact rptrader 2018-07-02 12:06:25+00:00 1.0 1240071142 702 pump announcement monday 2 july 1700 gmt 2000 gmt+3 moscow 1900 gmt+2 rome 1800 gmt+1 london 1300 est new york 0300 aest sydney 2300 ist delhi 0200 jst tokyo exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked all pumpers will receive coin at the same time premium member contact rptrader 2018-07-01 20:21:03+00:00 1.0 1240071142 684 coin umo low 580 high 987 win good pump wait for the next pump date 2018-06-25 19:03:36+00:00 1.0 1240071142 681 5 mins to the pump next post will be the coin be ready 2018-06-25 18:55:01+00:00 1.0 1240071142 680 30 mins to the pump 30 mins left dont forget to keep on holding and wait for outside investors its special coin profit target +220 be logged on 2018-06-25 18:32:00+00:00 1.0 1240071142 679 1 hours to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-25 18:01:12+00:00 1.0 1240071142 678 2 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-25 17:06:47+00:00 1.0 1240071142 676 4 hours to the pump friends do not miss todays pump the lowest level of coin we choose is at the fibonachi boundary we expect a huge increase it always wins with us exchange cryptopia 2018-06-25 15:00:34+00:00 1.0 1240071142 675 6 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 220 profit 2018-06-25 13:00:58+00:00 1.0 1240071142 674 8 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 2018-06-25 11:09:56+00:00 1.0 1240071142 673 tomorrow our pump time has changed 25062018 7 pm gmt 1 sign up to cryptopia and send your btc to your wallet today cryptopiaconz 2 at 1900pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once see you all tomorrow exchange wwwcryptopiaconz date 25062018 monday time 7 pm gmt read above for previous signals results they are the consistently biggest on cryptopia be a part of it premium member contact rptrader 2018-06-24 13:37:07+00:00 1.0 1240071142 672 1500 membersthanks guys next pump 25 june 2018 big pump 2018-06-23 18:15:01+00:00 1.0 1240071142 671 pump announcement 25062018 6 pm gmt do not forget to invite your friends to the pump well always win together pump target 220 profit a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors have you been missing out on these huge profits above make sure you are ready for the next one 2018-06-23 17:30:34+00:00 1.0 1240071142 666 this months pump profit rates are as follows coin irl low 90 high 260 profit + 198 coin zse low 90 high 190 profit + 110 coin umo low 600 high 1914 profit + 219 coin gpl low 2604 high 4500 win profit + 75 coin cc low 363 high 647 win profit + 78 coin das low 460 high 1460 win profit + 220 coin das low 646 high 1980 win profit + 300 coin bvb low 30 high 71 win profit + 75 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership the next pump is monday follow us premium member contact rptrader 2018-06-23 12:22:34+00:00 1.0 1240071142 665 coin bvb low 30 high 71 win profit + 75 good pump wait for the next pump date 2018-06-21 19:11:10+00:00 1.0 1240071142 664 coin name bvb buy and hold 2018-06-21 19:00:17+00:00 1.0 1240071142 663 5 mins to the pump next post will be the coin keep the caps lock key open while typing the name coin be ready 2018-06-21 18:55:06+00:00 1.0 1240071142 662 30 mins to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 18:31:39+00:00 1.0 1240071142 661 do not miss this pump today 1 hours 30 mins to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-21 17:29:52+00:00 1.0 1240071142 660 3 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 16:03:48+00:00 1.0 1240071142 658 9 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 premium member contact rptrader 2018-06-21 09:59:47+00:00 1.0 1240071142 657 24 hours until the coin to buy is released 21062018 7 pm gmt 1 sign up to cryptopia and send your btc to your wallet today cryptopiaconz 2 at 1900pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once see you all tomorrow exchange wwwcryptopiaconz date 21062018 tuesday time 7 pm gmt read above for previous signals results they are the consistently biggest on cryptopia be a part of it premium member contact rptrader 2018-06-20 19:00:24+00:00 1.0 1240071142 656 pump announcement 21062018 7 pm gmt do not forget to invite your friends to the pump well always win together pump target 220 profit exchangecryptopiarocket a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 7pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors premium member contact rptrader 2018-06-19 20:07:28+00:00 1.0 1240071142 654 coin das low 646 high 1980 win profit + 300 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-19 18:17:13+00:00 1.0 1240071142 653 we are a wonderful pump group team we are a wonderful pump group the analysis will come soon message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-19 18:11:04+00:00 1.0 1240071142 650 10 mins to the pump next post will be the coin be ready 2018-06-19 17:50:36+00:00 1.0 1240071142 646 4 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 320 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-19 14:04:55+00:00 1.0 1240071142 645 6 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain premium member contact rptrader 2018-06-19 12:05:43+00:00 1.0 1240071142 644 instructions 1 sign up to cryptopia and send your btc to your wallet today cryptopiaconz 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ see you all tomorrow ℹ️ exchange wwwcryptopiaconz date 19062018 tuesday time 6 pm gmt read above for previous signals results they are the consistently biggest on cryptopia be a part of it premium member contact rptrader 2018-06-18 15:43:39+00:00 1.0 1240071142 641 binance main pump signal now‼️ 5 minutes left 1500 gmt next post is coin name and targets 2018-06-18 14:55:26+00:00 1.0 1240071142 640 binance pump signal today‼️ 10 minutes left 1500 gmt this coin is related to the btc in some way 2018-06-18 14:51:13+00:00 1.0 1240071142 639 we will give pump signal in 25 minutes this coin is well know to be strong when btc is not 2018-06-18 14:34:11+00:00 1.0 1240071142 638 ℹ️ 1 hours left for the binance pump ℹ️ 2018-06-18 14:03:16+00:00 1.0 1240071142 637 ℹ️ 2 hours left for the binance pump ℹ️ remember last pump hit 10 2018-06-18 13:06:04+00:00 1.0 1240071142 636 ℹ️ 2 hours 30 mins left for the binance pump ℹ️ 2018-06-18 12:31:52+00:00 1.0 1240071142 635 have you been missing our those awesome profits mth 12 25btc icn 9 53btc oax 12 13btc mda 10 18btc ℹ next signal monday ℹ️ exchange binance date 18062018 monday time 15 pm gmt ℹ the last coin mda hit 10 in 8 minutes so do not miss the next one 2018-06-18 09:40:54+00:00 1.0 1240071142 634 attention all and read this hey guys we are back again and this time with more powerful team we have decided to pump on binance on tomorrow date 18062018 day monday time 15 gmt 830 pm ist tomorrow we will announce a coin on 15 gmt and you need to buy and hold that coin for few minutes only expected profit 50100 in short time total participants 800k exchange binance check remaining time here 2018-06-17 18:26:35+00:00 1.0 1240071142 633 coin das low 460 high 1460 win profit + 220 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-17 18:04:56+00:00 1.0 1240071142 630 10 mins to the pump next post will be the coin be ready 2018-06-17 17:50:02+00:00 1.0 1240071142 626 7 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain contack rptrader 2018-06-17 11:03:53+00:00 1.0 1240071142 625 pump announcement 16062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia premium member contact rptrader 2018-06-16 20:14:01+00:00 1.0 1240071142 622 10 mins to the pump next post will be the coin be ready 2018-06-16 17:49:19+00:00 1.0 1240071142 621 30 mins to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain 2018-06-16 17:29:52+00:00 1.0 1240071142 620 1 hours to the pump exchange cryptopia be ready todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 320 2018-06-16 16:59:06+00:00 1.0 1240071142 619 2 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 320 profit premium member contact rptrader 2018-06-16 16:00:01+00:00 1.0 1240071142 618 3 hours to the pump remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ todays pump will last around 15 minutes while all outside investors pile on hold your coins until this happens for maximum profits ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days sign up and send btc to the cryptopia exchange cryptopiaconz premium member contact rptrader 2018-06-16 14:59:34+00:00 1.0 1240071142 617 4 hours to the pump exchange cryptopia be ready pump time 6 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 4 hours exchange cryptopia premium member contact rptrader 2018-06-16 14:01:08+00:00 1.0 1240071142 616 4 hours to the pump exchange cryptopia be ready pump time 6 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 4 hours exchange cryptopia premium member contact rptrader 2018-06-16 14:00:47+00:00 1.0 1240071142 612 8 hours 30 mins to the pump exchange cryptopia be ready todays pump information keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 premium member contact rptrader 2018-06-16 09:22:25+00:00 1.0 1240071142 608 21 hours to the pump a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors premium member contact rptrader 2018-06-15 20:14:59+00:00 1.0 1240071142 607 pump announcement 16062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-15 15:13:47+00:00 1.0 1240071142 603 binance hold and pump today‼️ 5 minutes left 1500 gmt next post is coin picture chart and targets buy as fast as you can and hold for targets 2018-06-15 14:55:01+00:00 1.0 1240071142 602 binance hold and pump today‼️ 10 minutes left 1500 gmt pinchanneltotop 2018-06-15 14:50:03+00:00 1.0 1240071142 601 binance hold and pump today‼️ 15 minutes left 1500 gmt the coin is just waiting there for us to make it green prepare your btc on binance this will be freeforall pump no affilate rankings by site pinchanneltotop cryptosignalpump 2018-06-15 14:45:01+00:00 1.0 1240071142 600 binance hold and pump today‼️ 30 minutes left 1500 gmt the coin made huge dip the last few weeks reached resistance line and expect to breakout anytime we will help the breakout happens today this will be freeforall pump no affilate rankings by site ‼️hold coin untill we reach targets do not sell before ‼️ this is really important so other binance users will help lift it up to the moon 2018-06-15 14:30:03+00:00 1.0 1240071142 599 binance hold and pump today‼️ 45 minutes left 1500 gmt the coin made huge dip last few weeks reached resistance line and expect to breakout anytime we will help the breakout happens today this will be freeforall pump no affilate rankings by site ‼️hold coin untill we reach targets do not sell before‼️ 2018-06-15 14:15:01+00:00 1.0 1240071142 598 less than 1 hour remaining until our new insane binance alert is here 11am est 3pm gmt 15 gmt view the countdown clock by clicking this link our new huge binance alert could explode today 15 gmt hurry up and get ready immediately do not miss this super awesome binance pump signal ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users 2018-06-15 14:00:01+00:00 1.0 1240071142 597 less than 2 hours remaining until our new insane binance alert is here 11am est 3pm gmt 15 gmt our new huge binance alert could explode today 15 gmt hurry up and get ready immediately do not miss this super awesome binance pump signal ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users 2018-06-15 13:00:06+00:00 1.0 1240071142 596 message for information binance pump double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-15 12:06:14+00:00 1.0 1240071142 595 less than 4 hours remaining until our new super juicy binance alert is here 11am est 3pm gmt 15 gmt view the countdown clock by clicking this link our new huge binance alert could explode today 15 gmt hurry up and get ready immediately do not miss this super awesome binance pump signal ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users 2018-06-15 11:00:03+00:00 1.0 1240071142 594 less than 8 hours remaining until our new super juicy binance alert is here 11am est 3pm gmt 15 gmt view the countdown clock by clicking this link our new huge binance alert could explode today 15 gmt‼️ hurry up and get ready immediately do not miss it ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users instructions for our new insane binance alert 1️⃣ once you receive the coin name you need to place your buy orders immediately 2️⃣ after your buy orders fill you need to hold your coins so the price of the coin can rise so we can reach our targets and maximize our profits 3️⃣ this is extremely important for all of us to make great money tomorrow 4️⃣ when all of us hold our coins the price of the coin attracts many outsiders which creates more volume for the price of the coin to skyrocket 2018-06-15 07:00:06+00:00 1.0 1240071142 593 ‼️‼️less than 21 hours remaining until our new super mega binance alert is here 11am est 3pm gmt 15 gmt view the countdown clock by clicking this link the market finally got some great news therefore we scheduled our next mega binance pump for tomorrow‼️ date 06152018 time 15 gmt target 50 participants 1m binance users instructions for our new insane binance alert 1️⃣ once you receive the coin name you need to place your buy orders immediately 2️⃣ after your buy orders fill you need to hold your coins so the price of the coin can rise so we can reach our targets and maximize our profits 3️⃣ this is extremely important for all of us to make great money tomorrow 4️⃣ when all of us hold our coins the price of the coin attracts many outsiders which creates more volume for the price of the coin to skyrocket ‼️get ready right now‼️ 2018-06-14 18:05:04+00:00 1.0 1240071142 592 market got some good news therefore we scheduled binance pump tomorrow ‼️ date 15062018 time 1500 gmt+0 target 50 volume target 6 btc participants 1m users collab pump i will share the details soon premium member contact rptrader 2018-06-14 17:25:43+00:00 1.0 1240071142 590 coin cc low 363 high 647 win profit + 78 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-14 17:14:29+00:00 1.0 1240071142 583 5 mins to the pump next post will be the coin be ready 2018-06-14 16:54:18+00:00 1.0 1240071142 582 15 mins to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain premium member contact rptrader 2018-06-14 16:45:16+00:00 1.0 1240071142 581 30 mins to the pump remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ todays pump will last around 15 minutes while all outside investors pile on hold your coins until this happens for maximum profits ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days premium member contact rptrader 2018-06-14 16:31:05+00:00 1.0 1240071142 579 2 hours to the pump exchange cryptopia be ready pump time 5 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 2 hours exchange cryptopia premium member contact rptrader 2018-06-14 15:09:44+00:00 1.0 1240071142 577 5 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain premium member contact rptrader 2018-06-14 12:00:52+00:00 1.0 1240071142 576 6 hours to the pump exchange cryptopia be ready todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 280 premium member contact rptrader 2018-06-14 11:00:07+00:00 1.0 1240071142 575 friends after the big cryptopia pump today tomorrow will be our pump in the binance market it will be our common pump with 16 great trader and pump channel message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-14 09:32:17+00:00 1.0 1240071142 574 friends after the big cryptopia pump today tomorrow will be our pump in the binance market it will be our common pump with 16 large trader and pump channel message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-14 09:30:10+00:00 1.0 1240071142 572 pump announcement 14062018 5 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia premium member contact rptrader 2018-06-13 19:24:02+00:00 1.0 1240071142 571 coin pasl low 485 high 1891 win profit + 373 sellers came in after a huge rise to 373 tonight and 93 btc of trade volume message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-13 19:08:52+00:00 1.0 1240071142 565 5 mins to the pump next post will be the coin be ready 2018-06-13 17:55:06+00:00 1.0 1240071142 563 1 hours to the pump start logging in to your cryptopia accounts and have bitcoin ready biggest pump to date coming up exchange cryptopiaconz be ready we are all about to make some money premium member contact rptrader 2018-06-13 17:00:12+00:00 1.0 1240071142 561 5 hours to the pump exchange cryptopia be ready when the coin is announced buy as fast as possible to push the price up and keep the momentum going ✈️ place your buy orders as high as possible to catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed from the best available price ️⃣ as an example lets say the coin has sell orders at 200 205 and 208 sats put a buy order to 2000 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buy those lowest orders than you will buy from 211 215 and 218 which is again pretty good otherwise if youd put your order to 200 sats youd be failed to buy at the initial moment and miss the train to the moon ️⃣ after you buy promote the coin on cryptopia trollbox to attract other people dont sell early exit price is your decision but our recommendation for you to wait till coin gets at least 1012x value ✅ ➡️ a direct link to the market will be shared in the announcement premium member contact rptrader 2018-06-13 13:01:50+00:00 1.0 1240071142 558 pump announcement 13062018 6 pm gmt and 14062018 7 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia premium member contact rptrader 2018-06-12 12:27:27+00:00 1.0 1240071142 556 coin gpl low 2604 high 4500 win profit + 75 your other pumps did not go well but we have winners thank you for coming back you know the market has fallen thats why there was not much participation we will pause for a few days and pump again the market needs to come to itself message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-11 15:22:50+00:00 1.0 1240071142 555 the pump lasted 15 minutes team we are a wonderful pump group the analysis will come soon 2018-06-11 15:16:17+00:00 1.0 1240071142 550 5 mins to the pump next post will be the coin be ready 2018-06-11 14:55:03+00:00 1.0 1240071142 549 15 mins to the pump alright less than 15 minutes now be sure to have your cryptopia opened dont forget to hold the coin at least 510 mins premium member contact rptrader 2018-06-11 14:45:04+00:00 1.0 1240071142 547 1 hours to the pump start logging in to your cryptopia accounts and have bitcoin ready biggest pump to date coming up exchange cryptopiaconz be ready we are all about to make some money premium member contact rptrader 2018-06-11 14:00:06+00:00 1.0 1240071142 546 2 hours to the pump exchange cryptopia be ready when the coin is announced buy as fast as possible to push the price up and keep the momentum going ✈️ place your buy orders as high as possible to catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed from the best available price ⃣ as an example lets say the coin has sell orders at 200 205 and 208 sats put a buy order to 2000 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buy those lowest orders than you will buy from 211 215 and 218 which is again pretty good otherwise if youd put your order to 200 sats youd be failed to buy at the initial moment and miss the train to the moon ⃣ after you buy promote the coin on cryptopia trollbox to attract other people dont sell early exit price is your decision but our recommendation for you to wait till coin gets at least 1012x value ✅ ➡️ a direct link to the market will be shared in the announcement premium member contact rptrader 2018-06-11 13:00:15+00:00 1.0 1240071142 544 3 hours to the super pump exchange cryptopia be ready today is going to be huge guys for everyone who has been waiting for the perfect pump to join this is it we are going to smash our record pump today have you ever wondered what the perfect pump looks like you will be joining one in 3 hours join us at 3pm gmt on cryptopia have btc ready premium member contact rptrader 2018-06-11 12:00:14+00:00 1.0 1240071142 543 4 hours to the pump exchange cryptopia be ready pump time 3 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 4 hours exchange cryptopia premium member contact rptrader 2018-06-11 11:00:06+00:00 1.0 1240071142 542 6 hours to the pump exchange cryptopia be ready todays pump information keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 premium member contact rptrader 2018-06-11 09:02:08+00:00 1.0 1240071142 541 pump announcement 11062018 3 pm gmt do not forget to invite your friends to the pump well always win together our pump target 360 profit exchangecryptopia premium member contact rptrader 2018-06-10 17:30:08+00:00 1.0 1240071142 540 coin abc low 337382 high 1641800 win profit + 400 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-10 17:26:37+00:00 1.0 1240071142 538 we are a wonderful pump group team we are a wonderful pump group the analysis will come soon message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-10 17:12:17+00:00 1.0 1240071142 533 5 mins to the pump next post will be the coin be ready premium member contact rptrader 2018-06-10 16:55:03+00:00 1.0 1240071142 529 4 hours to go until our next massive signal a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 500pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors premium member contact rptrader 2018-06-10 13:00:03+00:00 1.0 1240071142 527 pump announcement 10062018 5 pm gmt do not forget to invite your friends to the pump well always win together our pump target 300 profit exchangecryptopia premium member contact rptrader 2018-06-08 17:19:23+00:00 1.0 1240071142 526 coin pcoin low 160 high 900 win profit + 370 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-06 19:11:12+00:00 1.0 1240071142 524 sellers in around the 9 minute mark after an initial rise to 370 amazing results the biggest rise this month as promised lets see where the market takes it the market history is still moving analysis to follow team we are a wonderful pump group the analysis will come soon double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-06 18:11:33+00:00 1.0 1240071142 519 5 mins to the pump next post will be the coin be ready premium member contact rptrader 2018-06-06 17:55:01+00:00 1.0 1240071142 517 1 hours to the pump target 280 320 profit exchange cryptopia double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-06 17:00:01+00:00 1.0 1240071142 514 yesterdays pump information coin umo low 600 high 1914 increase rate 219+ volume 37 btc umo hit a peak of 220+ this time more importantly umo always presented great technical pump outcome according to the software algorithmic analysis the huge rise of umo on cryptopia attracted a good amount of investors and triggered bots to place multiple small buy orders quickly this was shown by the nice first wave of buy orders at around +180 to 220 if we held the price up any longer than 10 minutes like todays we could have seen that second wave of outsiders buy orders at +250 to 350+ but some of you preferred to close profits earlier and outsiders kept buying in cheaper instead at around +7090 ❗️ holding to keep the price up longer allows the marketing team time to deliver better results by bringing in outsiders on time this hold results in much larger gains for the whole channel ✅ overall the coins been trading between 200 220 for the first 5 to 10 minutes then from 30 to 79 at last before everyone cleared the sells good trades team congratulations to everyone who participated enjoy your gains today pump 06062018 6 pm gmt exchangecryptopia double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-06 09:25:25+00:00 1.0 1240071142 512 pump announcement 06062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 300 profit exchangecryptopia premium member contact rptrader 2018-06-05 19:21:55+00:00 1.0 1240071142 504 5 mins to the pump next post will be the coin be ready premium member contact rptrader 2018-06-05 18:55:01+00:00 1.0 1240071142 498 pump announcement 05062018 7 pm gmt do not forget to invite your friends to the pump well always win together our pump target 320 profit exchangecryptopia premium member contact rptrader 2018-06-04 07:34:51+00:00 1.0 1240071142 497 we did a great job today zse 97 satoshi 190 satoshi win congratulations it will come next those who are vip members the coin gets the name 1 minutes in advance rptrader 2018-06-03 21:44:11+00:00 1.0 1240071142 488 5 mins to the pump next post will be the coin be ready remember we can easily reach 250 premium member contact rptrader 2018-06-03 17:55:00+00:00 1.0 1240071142 487 15 mins to the pump alright less than 15 minutes now be sure to have your cryptopia opened dont forget to hold the coin at least 510 mins premium member contact rptrader 2018-06-03 17:45:01+00:00 1.0 1240071142 485 todays pump information 1 hours to the pump we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 250 please remeber we all together will win we should be as one man and act like that premium member contact rptrader 2018-06-03 17:04:08+00:00 1.0 1240071142 483 3 hours to the pump exchange cryptopia instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 198 lets beat this premium member contact rptrader 2018-06-03 15:02:29+00:00 1.0 1240071142 482 5 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain premium member contact rptrader 2018-06-03 13:01:31+00:00 1.0 1240071142 481 7 hours to go until our next massive signal a quick to do list for new members sign up and send your btc to cryptopia get familiar with the exchange search bar and buy sell order forms ⏰ at 600pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 15 35 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors its special coin profit target +250 contact rptrader with any questions 2018-06-03 11:00:01+00:00 1.0 1240071142 479 pump announcement 03062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 220 profit exchangecryptopia premium member contact rptrader 2018-06-01 19:35:26+00:00 1.0 1240071142 478 we did a great job today 90 satoshi 260 satoshi win congratulations it will come next those who are vip members the coin gets the name 1 minutes in advance rptrader 2018-05-31 21:18:43+00:00 1.0 1240071142 477 coin irl low 90 high 260 profit + 198 sellers in at 30 minutes still sitting higher than the original buy in annoying cryptopia lagged the buy orders to nearly 10 seconds for some of you slowing down the rise a little bit that didnt hold us back though we hit 300 with 15 btc of trade volume lets see where the market takes it amazing result after holding at 220 for 30 minutes the pump is still in good condition message for information premium member contact rptrader 2018-05-31 19:32:01+00:00 1.0 1240071142 470 5 mins to the pump next post will be the coin be ready premium member contact rptrader 2018-05-31 18:55:07+00:00 1.0 1240071142 469 15 mins to the pump be ready for the big rise target 280 profit exchange premium member contact rptrader 2018-05-31 18:45:07+00:00 1.0 1240071142 468 30 mins to the pump are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 exchange cryptopia premium member contact rptrader 2018-05-31 18:31:58+00:00 1.0 1240071142 466 2 hours to the pump exchange cryptopia be ready pump time 7 pm gmt be logged in and ready 30 minutes before its going to be huge exchange premium member contact rptrader 2018-05-31 17:00:09+00:00 1.0 1240071142 464 3 hours to the pump exchange cryptopia be ready pump time 7 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 3 hours exchange cryptopia premium member contact rptrader 2018-05-31 16:00:09+00:00 1.0 1240071142 463 4 hours 30 mins to the pump exchange cryptopia be ready todays pump information keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 premium member contact rptrader 2018-05-31 14:30:14+00:00 1.0 1240071142 458 pump announcement today pump may 31st 7 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-30 20:44:47+00:00 1.0 1240071142 457 coin hal low 1000 high 3432 profit + 300 the next pump is tomorrow sellers in at 15 minutes still sitting higher than the original buy in annoying cryptopia lagged the buy orders to nearly 10 seconds for some of you slowing down the rise a little bit that didnt hold us back though we hit 300 with 51 btc of trade volume lets see where the market takes it amazing result after holding at 237 for 10 minutes message for information premium member contact rptrader 2018-05-30 18:34:39+00:00 1.0 1240071142 447 5 mins to the pump next post will be the coin be ready premium member contact rptrader 2018-05-30 17:55:04+00:00 1.0 1240071142 440 pump announcement 24 hours to the pump exchange cryptopia be ready are you ready to make moneybtc 1 sign up to cryptopia and send your btc to your wallet 2 at 6pm gmt the coin to buy will be posted here 3 search for the coins name in the btc market on cryptopia 4 to execute your buy order as fast as possible click on a sell order slightly higher than the market price shown click total to accumulate all of your bitcoin and press buy 5 make sure your order has gone through then hold while the coin price increases keep buying up until it hits 300400 then hold 6 when the price levels out at its highest and the outside investors start buying sell in pieces not all at once premium member contact rptrader 2018-05-29 18:06:08+00:00 1.0 1240071142 439 pump announcement may 30st 6 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-28 13:32:44+00:00 1.0 1240071142 437 coin lemon low 630 high 188 profit + 300 profit the next pump is 30 may it was a wonderful pump to get feedback or premium member contact rptrader 2018-05-27 18:12:31+00:00 1.0 1240071142 434 5 mins to the pump next post will be the coin be ready premium member contact rptrader 2018-05-27 16:55:01+00:00 1.0 1240071142 423 5 mins to the pump next post will be the coin be ready premium member contact rptrader 2018-05-27 15:55:02+00:00 1.0 1240071142 414 pump announcement may 27st 4 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-26 13:11:00+00:00 1.0 1240071142 407 3 mins to the pump next post will be the coin exchange cryptopia be ready next post will be the coin premium member contact rptrader 2018-05-25 18:57:11+00:00 1.0 1240071142 405 30 mins to the pump exchange cryptopia be ready you can log in to your cryptopia account 20 minutes early keep the caps lock key open while typing the name coin get ready its going to the moon hard premium member contact rptrader 2018-05-25 18:30:02+00:00 1.0 1240071142 404 1 hours to the pump exchange cryptopia be ready todays pump information keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 350 premium member contact rptrader 2018-05-25 18:04:54+00:00 1.0 1240071142 403 pump announcement 3 hours to the pump exchange cryptopia be ready are you ready to make moneybtc 1 sign up to cryptopia and send your btc to your wallet wwwcryptopiaconzexchange 2 at 7pm gmt the coin to buy will be posted here 3 search for the coins name in the btc market on cryptopia 4 to execute your buy order as fast as possible click on a sell order slightly higher than the market price shown click total to accumulate all of your bitcoin and press buy 5 make sure your order has gone through then hold while the coin price increases keep buying up until it hits 300400 then hold 6 when the price levels out at its highest and the outside investors start buying sell in pieces not all at once premium member contact rptrader 2018-05-25 16:00:33+00:00 1.0 1240071142 402 4 hours to the pump exchange cryptopia be ready last 1 hour ago we will share pump instructions follow us premium member contact rptrader 2018-05-25 15:07:22+00:00 1.0 1240071142 396 pump announcement may 25st 7 pm gmt exchangecryptopia are you ready to make money 1 sign up to cryptopia and send your btc to your wallet wwwcryptopiaconzexchange 2 at 7pm gmt the coin to buy will be posted here 3 search for the coins name in the btc market on cryptopia 4 to execute your buy order as fast as possible click on a sell order slightly higher than the market price shown click total to accumulate all of your bitcoin and press buy 5 make sure your order has gone through then hold while the coin price increases keep buying up until it hits 300400 then hold 6 when the price levels out at its highest and the outside investors start buying sell in pieces not all at once premium member contact rptrader 2018-05-24 14:18:12+00:00 1.0 1240071142 386 5 mins to the pump next post will be the coin premium member contact rptrader 2018-05-23 17:55:09+00:00 1.0 1240071142 382 todays instructions 1 sign up to cryptopia and send your btc to your wallet wwwcryptopiaconzexchange 2 at 1800pm gmt the coin to buy will be posted here 3 search for the coins name in the btc market on cryptopia 4 to execute your buy order as fast as possible click on a sell order slightly higher than the market price shown click total to accumulate all of your bitcoin and press buy 5 make sure your order has gone through then hold while the coin price increases keep buying up until it hits 300400 then hold 6 when the price levels out at its highest and the outside investors start buying sell in pieces not all at once 4 hours to the pump premium member contact rptrader 2018-05-23 14:00:06+00:00 1.0 1240071142 379 pump announcement may 23st 6 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-22 19:10:52+00:00 1.0 1240071142 377 pump announcement may 23st 6 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-21 00:40:00+00:00 1.0 1240071142 368 big day today join the absolute pump today 2 hours to the pump exchange cryptopia be ready premium member contact rptrader 2018-05-20 15:59:51+00:00 1.0 1240071142 362 pump announcement may 20st 6 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-19 12:35:57+00:00 1.0 1240071142 350 5 mins to the pump next post will be the coin 2018-05-18 18:55:01+00:00 1.0 1240071142 335 5 mins to the pump next post will be the coin premium member contact rptrader 2018-05-16 17:55:02+00:00 1.0 1240071142 328 pump announcement may 16st 6 pm gmt exchangecryptopia great news another pump premium member contact rptrader 2018-05-15 16:42:42+00:00 1.0 1240071142 317 the pump was delayed to 1 hour later the pump is at 6 pm gmt today 2018-05-14 16:23:53+00:00 1.0 1240071142 313 two pumps today do not miss 1 5 pm gmt will start in 6 hours 2 7 pm gmt will start in 8 hours premium member contact rptrader 2018-05-14 11:03:11+00:00 1.0 1240071142 312 yesterdays analysis last nights coin pump was again a perfect result we saw an initial rise of 300 with 45 bitcoin of volume start price 976 peak price 3900 for 13 minutes it settled at 137 after the peak lots of trading followed in the hours after finally at 3am gmt the last of the sellers brought the price down the volume ended up at 6 bitcoins over the whole time now cryptopia is back to normal bigger volumes are being seen there was still 3 bitcoin of volume stuck in the buy orders over the pump yesterday make sure you execute your orders to enable a higher rise and to not miss the way up for the next one well done to all who profitted pump announcement may 14st 5 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-14 09:05:37+00:00 1.0 1240071142 311 9 hours to the pump exchange cryptopia be ready get ready to make some massive gains this one is going to moon premium member contact rptrader 2018-05-14 08:00:14+00:00 1.0 1240071142 309 pump announcement may 14st 5 pm gmt exchangecryptopia are you ready to make money premium member contact rptrader 2018-05-13 20:19:16+00:00 1.0 1240071142 302 5 minutes to the pump next post will be the coin premium member contact rptrader 2018-05-13 16:54:19+00:00 1.0 1240071142 297 today we are organizing an extra pump pump announcement may 13st 5 pm gmt 8 hours 30 mins to the pump exchangecryptopia premium member contact rptrader 2018-05-13 09:32:15+00:00 1.0 1240071142 295 9 may pump analysis das coin last nights coin pump was an amazing result we saw an initial rise to 230 with 3 bitcoins of volume over the pump after settling it still sits above the starting price and has a total of 4 btc still being traded wednesday pump again lasted hours unfortunately cryptopia had lag wednesday and took nearly 30 seconds to fill orders we have our trading programme running to test order speeds for the next one to make sure it is perfect for all of you over 4 bitcoins of volume got stuck in orders a huge amount to come into play for next time well done to all who profitted then next pump will be announced very soon be there and enjoy your profits premium member contact rptrader 2018-05-11 12:02:52+00:00 1.0 1240071142 291 coin das low 499 high 1693 profit + 320 over 20 minutes in holding well above 100 i saw lots of stuck buy orders today over 4 btc worth due to the delay lag on cryptopia today lets hope they fix this asap either way amazing work so far it hit 230 initially and is now holding above 100 with more volume by the minute thanx team it was a wonderful pump to get feedback or premium member contact rptrader 2018-05-09 18:22:31+00:00 1.0 1240071142 285 5 mins to the pump next post will be coin premium member contact rptrader 2018-05-09 17:55:17+00:00 1.0 1240071142 277 information for the today date 9th may hour 1800pm gmt 6pm exchange wwwcryptopiaconz 1 we will post a signal at exactly 6pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared we recommend setting a phone reminder so you dont miss the next one 2 after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before we entice outside investors to get in on it 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 3 we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia before wednesday ℹ️ the last coin went to 288 and stayed up for a long period of time today the multiple waves will make it another great one do not miss it please read the instructions 7 hours until the final countdown to get feedback vip rptrader 2018-05-09 11:05:18+00:00 1.0 1240071142 275 pump announcement big pump may 9st 6 pm gmt exchangecryptopia 320 profit are you ready to make money premium member contact rptrader 2018-05-08 08:43:38+00:00 1.0 1240071142 256 pump announcement big pump may 5st 7 pm gmt exchangecryptopia 320 profit premium member contact rptrader 2018-05-04 07:31:55+00:00 1.0 1240071142 246 5 mins to the pump exchange cryptopia next post will be coin 2018-05-02 18:55:08+00:00 1.0 1240071142 237 pump announcement may 2st 7 pm gmt exchange cryptopia 120 profit or 180 profit premium member contact rptrader 2018-05-02 08:08:58+00:00 1.0 1240071142 235 today we will again pump target will be notified yesterday we put the target of 320 was 370 fantastic great work today everyone as you can see the uptrend and popularity of this group is still growing once again today we saw a peak at 5 minutes 42 seconds this was a lot of time for everyone to buy as i recommend to buy in the first 5 minutes plenty of buys then happened in the 5 minutes following improvement statement is to hold for 5 minutes longer than the marketing team pushes the coin if you have been missing out we are going up and up every time make sure you are on the rise next time buy hold and then sell amazing work is done to all participants keep sharing this group premium member contact rptrader 2018-05-01 21:07:32+00:00 1.0 1240071142 234 what is your preferred time for the next pump on today 7 pm gmt – 13 68 5 pm gmt – 5 26 6 pm gmt – 1 5 19 people voted so far 2018-05-01 20:57:53+00:00 1.0 1240071142 221 2 hours to the pump exchange cryptopia be ready to get feedback rptrader you can write in all languages‍ 2018-05-01 17:10:47+00:00 1.0 1240071142 220 3 hours to the pump exchange cryptopia be ready to get feedback rptrader you can write in all languages‍ 2018-05-01 16:04:01+00:00 1.0 1240071142 219 5 hours to the pump exchange cryptopia be ready target 320 profitx3 3 will be our partners pumps with best pump group today be the winner are you ready to make money to get feedback rptrader you can write in all languages‍ 2018-05-01 14:00:16+00:00 1.0 1240071142 215 pump announcement may 1st 7 pm gmt exchange cryptopia 320 profit a quick to do list for new members sign up and send your btc to wwwcryptopiaconzexchange at 700pm gmt we will post the coins name ₿ search for the coins name in the btc market to buy quickly click on a sell order 15 35 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase when the price hits the peak and outside investors start buying sell in pieces not all at once for vip membership information rptrader with questions 2018-04-30 10:25:24+00:00 1.0 1240071142 208 2 mins to the pump next post will be coin be ready 2018-04-28 18:58:06+00:00 1.0 1240071142 197 rocket team according to the voting result todays pump time is 7 pm gmt information for today pump 1 we will post a signal at exactly 7pm gmt this will be for a low market cap coin in cryptopia the reason for this is a bigger percentage rise for all of you you will want to have your btc available in your account make sure you are at your computer at least 20 minutes before you have enough time to be prepared 2nd after announcing the coin here we will all buy in as soon as possible it is important to know how fast you are 3 once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when you will be able to make a profit and you will be able to make a profit ❗️ we will be posting over twitter and cryptopia chat to spread fomo ❗️ 4 we are going to hold for at least 51015 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell ​​it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ❗️you must read this and the pinned advice above all new members ❗️ we want the next pump to have two waves us buying in and the outside investors not just holding it up but pushing it up like we have seen plenty before so we can not sell until the designated time frame is up we have seen lots of different speed pumps with the growth of the group and the influence we are putting on coins we have already chosen this is aimed at all new members and anyone seeking advice pump announcement april 28th 7 pm gmt exchange cryptopia 190 profit 2018-04-28 09:28:57+00:00 1.0 1240071142 196 pump announcement are you ready to make money april 28th pm gmt exchange cryptopia 2018-04-27 22:35:23+00:00 1.0 1240071142 195 what is your preferred time for the next pump on today anonymous poll 7 pm gmt – 23 70 5 pm gmt – 5 15 4 pm gmt – 3 9 6 pm gmt – 2 6 33 people voted so far 2018-04-27 21:33:26+00:00 1.0 1240071142 187 5 mins to the pump next post will be coin 2018-04-27 18:55:05+00:00 1.0 1240071142 182 2 hours to the pump are you ready to make money 2018-04-27 17:00:05+00:00 1.0 1240071142 181 3 hours to the pump exchange cryptopia be ready please open channel notifications 2018-04-27 16:01:09+00:00 1.0 1240071142 180 4 hours to the pump exchange cryptopia be ready please open channel notifications 2018-04-27 15:01:35+00:00 1.0 1240071142 177 6 hours to the pump exchange cryptopia be ready please open channel notifications 2018-04-27 13:00:10+00:00 1.0 1240071142 176 10 hours to the pump exchange cryptopia be ready are you ready to make money 2018-04-27 09:00:05+00:00 1.0 1240071142 174 pump announcement are you ready to make money april 27th 7 pm gmt exchange cryptopia 2018-04-26 08:26:47+00:00 1.0 1240071142 170 i hope everyone has earned money over 300 after 15 mins we will share the analysis of the pump soon a wonderful team 2018-04-23 19:24:06+00:00 1.0 1240071142 160 rpt team the marketcap today is very convenient for the pump do not miss this pump prepare your btc balances on cryptopia to buy in click on a sell order higher than the current market price then click on the total price this will accumulate all of your btc press buy the time to buy is in the first 5 minutes we will then hold for 10 minutes everyone must go onto cryptopia chat box after buying to create more fomo link below today pump 7 pm gmt get feedback or vip rptrader ✔️ 2018-04-23 13:06:02+00:00 1.0 1240071142 159 pump announcement april 23th 7 pm gmt exchange cryptopia 2018-04-22 20:18:10+00:00 1.0 1240071142 158 survey result 1 binance 1 cryptopia 1 yobit we will soon agree with a very strong partner for binance pump until then our pumps will continue in crytptopia the reason is low volume and pump up to 2 times trust us if you want to win more you should become a vip member vip members are buying 1 minute before normal member 50 100 120 profit guaranteed vip member 200 230 250 300 profit guaranteed pump is tomorrow stay here and invite your friends get feedback or vip rptrader ✔️ 2018-04-22 12:21:52+00:00 1.0 1240071142 149 2 mins to the pump the next post will be coin 2018-04-19 18:58:08+00:00 1.0 1240071142 141 pump announcement april 19th 7 pm gmt exchange cryptopia 2018-04-18 20:00:26+00:00 1.0 1240071142 139 results coin boli low 351 high 750 increase +233 volume 221 btc we held strong today outside investors kept coming with orders of 150+ 7 minutes in the maketing team did an amazing job again enjoy your earnings congratulations to everyone who participated today and thanks for your support and your positive feedback enjoy your earnings stay tuned for info regarding the next signal sign up to find the coin name given to vip members 1 minute before the pump starts send me feedback telegram contact rptrader mail contact rocketpumpvipgmailcom 2018-04-18 19:15:58+00:00 1.0 1240071142 129 2 minutes left the next post will show you the coin 2018-04-18 18:58:22+00:00 1.0 1240071142 119 todays pump hours 2100 gmt+2 rome 18 april 2200 gmt istanbul 18 april 2000 gmt+1 london 18 april 1500 est new york 18 april 0500 aest sydney 19 april 2200 gmt+3 moscow18 april 0400 jst tokyo 19 april pump announcement today pump april 18th 7 pm gmt exchange cryptopia 100200 guaranteed vip group mail contact rocketpumpvipgmailcom or telegram contact rptrader 2018-04-18 12:12:05+00:00 1.0 1240071142 118 pump announcement today pump april 18th 7 pm gmt exchange cryptopia 2018-04-18 10:53:27+00:00 1.0 1240071142 108 5 mins to the pump the next post will be the coin 2018-04-15 17:55:02+00:00 1.0 1240071142 103 pump announcement today pump april 15th 6 pm gmt exchange cryptopia contact rocketpumpvipgmailcom 2018-04-15 12:36:58+00:00 1.0 1240071142 102 you decide where we pump the next pump 1 cryptopia 2 binance 3 yobit contact rocketpumpvipgmailcom for any feedback 2018-04-15 09:57:13+00:00 1.0 1240071142 86 pump announcement today pump april 14th 7 pm gmt exchange cryptopia contact rocketpumpvipgmailcom 2018-04-13 23:26:32+00:00 1.0 1240071142 85 it was great pump at all but it was really quick wich is not good please after you buy the coin promote it and let outsiders buy from us our point is not to sell the coin to each other we should buy low and sell high to outsiders wait for the next pump 2018-04-13 17:29:43+00:00 1.0 1240071142 58 pump announcement 09042018 8 pm gmt exchange cryptopia 2018-04-08 14:42:15+00:00 1.0 1240071142 21 next big pump 30 march 100200 guaranteed 2018-03-28 12:28:06+00:00 1.0 1240071142 20 pump announcement march 30th 8 pm gmt exchange cryptopia 2018-03-27 21:09:15+00:00 1.0 1240071142 9 pump announcement march 21th 7 pm gmt exchange cryptopia hazır olun 2018-03-19 22:41:45+00:00 1.0 1204405170 8967 pro tip dont buy any altcoinusdt pair until it prove the clear breakout with volume the best way to checkout the current trend is our exclusive trend analyzer tool here is the more details about it select any exchange binance select usdtbinance provide usdt select eth or any coin keep eyes on 4 hour timeframe if trend says reversal then keep eye on breakout and enter toanalyzecryptomarkettrendsamp go and check it out 2021-05-29 19:12:09+00:00 1.0 1204405170 8866 analysisallinonecrypto rndr rndr rendertoken render token is one of my holding token and i sold my gem report at just 20 here we have bough render token at 02 and currently at 121 it touched 268 though currently this coin is listed on huobi kucoin uniswap get list of the exchanges here coingecko technical analysis recently it breakout from the resistance and turning that as flip support fundamental based on recent listing of the coin in various exchange binance still didnt listed this coin i believe the hype of binance listing would make another all time high for this token hodl is must if you want to gain 2021-05-18 06:58:29+00:00 1.0 1204405170 5292 grs update 24 pump well to be honest guys such kind of coins only provides 8 15 profit in such situation like this pumping of coin is always loss of money for 80 of fud buyers so i always tell you guys please do not participate in pumps as just a prebuyers will will such as admin and close to them in binancepremiumsignals and allinonecryptoapp i never allow any pump dump i only provides ta which is valid as fuck 2020-03-05 07:05:54+00:00 1.0 1204405170 1130 there is a pump by many asian channels in next 5 min please dont participate be safe 2018-04-23 16:55:53+00:00 1.0 1204405170 791 some channels will pump the coin on 5 pm gmt and i will share the coin on bittrexbinance name before some time of pump in premium channel to join contact digiwhale » 0010 btc for one month » 0025 btc for three month » 0047 btc for six month » 02 btc for life time step 1 send me btc 3htyxbkiujpm5jztmtxrrtixncyjohwbpd step 2 send me transaction id and screenshot step 3 give your telegram username and full name there are some other benifits of paid channel listed below you will get more signals then free channel 510 quality signals in normal days and 1 3 signals in red days learning stuffs tips to avoid loss tricks to cost down the coin price portfolio management fund management support 24x7 best icos 2018-03-14 07:00:38+00:00 1.0 1204405170 779 see the live pumping on bittrex coin name clam announce coinname before 6 min of pump 2018-03-12 16:01:30+00:00 1.0 1204405170 626 guys stay tuned breakout signal register on huobi fund with btc we will give you coin name in 2 hours 2018-02-25 08:16:56+00:00 1.0 1204405170 262 exchange binance coin name ppt ⭕️ buy around 0003650 0003750 sell 100042 sell200047 sell300057 stop loss00032 2018-01-18 17:58:31+00:00 1.0 1204405170 255 dear all members lets play a game now you will all have a great profit up to 1x 2x 3x or more if you will follow my instruction this game is pump the coin register your self on here as there are more currency here are our basic rules and steps for the game ✔️ we make our pumps on abovegiven link ✔️ no prepumps or vip buyers we all buy at once ✔️ we are going to try to hold the coin longer and promote it to others outside of the group for all of our members to make profits how it works step 1 at a set time ex 8 pm est we set the coin that is to be pumped it will be a smaller coin we all buy within 5 minutes at the same price no one sells to any buy orders step 2 from all of us pumping volume into this coin it will skyrocket 400500 within 10 minutes but we dont sell there this is important not to sell here tell more people outside the group about the coin on social media it will allow the coin to increase to over 1000 in the hour step 3 we sell together at the same time which is at least 1 hour after the pump started to allow the coin to go up 1000 otherwise youre dumping on youre own group in order for us to be a team as a whole we cant sell early for any questions or suggestions you can contact me digiwealth 2018-01-18 09:46:04+00:00 1.0 1204405170 244 exchange binance coin name mtl ⭕️ buy around 3400 sell 1 3800 sell24500 sell35200+ 2018-01-17 09:51:31+00:00 1.0 1204405170 216 coin name qsp exchange binance target 15x within 13 month ❗️❗️this is not pump dump coin❗️❗️ current price 3617 2018-01-15 02:54:03+00:00 1.0 1204405170 215 exchange binance coin name hsr ⭕️ buy below 132 sell 1150 sell2165 sell3190 or 2x 3x capability coin short to mid term 2018-01-15 02:51:51+00:00 1.0 1204405170 174 exchange binance coin name bqx below 59500 sell target 65000 pin our channel for more 2018-01-12 11:20:26+00:00 1.0 1204405170 3 coin name xst ⭕️ buy around 8500 sell 19600 sell2 10800 sell312100 stop loss5600 super fast signal 2018-01-02 06:12:56+00:00 1.0 1368778720 325 sfp is the hype over after the massive pump early last month there has been very little action from the volume indicator we can see that since the spike in october the volume has decreased substantially this could mean one of two things the hype is over could mean that this was just a pump and dump and this coin is pretty much finished something big is coming some of the time when theres very little volume its because the market is setting up for something spectacular similarly to what we saw in october there was very little volume before the spike we have to structures on the chart and will be looking for a breakout either way full chart 2021-11-08 20:09:03+00:00 1.0 1231720573 2225 i dont give any shit coin dump or pump you know what no failure in all signal recently all maximum gains 2021-02-21 23:29:27+00:00 1.0 1144292688 1076 coin name vc exchange coinealcom market usdt market call is long term target 300600 buy and hold 2019-06-25 20:00:21+00:00 1.0 1144292688 1075 10 mintues left coin name next message 2019-06-25 19:51:15+00:00 1.0 1144292688 1074 1 hour left until coineal pump usdt market 2019-06-25 19:02:06+00:00 1.0 1144292688 1072 2 hours left until coineal pump usdt market 2019-06-25 18:03:56+00:00 1.0 1144292688 1069 megacryptocall time remaining 24 hours target will be 200400 at least i have big insider news about coin first call will be released in tuesday 25 june exchange coinealcom market usdt market✅ sign up and move some funds to buy this low dip coin coin will be released at 8 pm gmt tomorrow staytuned 2019-06-24 19:07:26+00:00 1.0 1144292688 872 pump announcement next pump thursday 30 may 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time bitcoin is up almost 40 since we last pumped some of the bigger alts are having amazing runs and our coin will moon in the middle of all this we will be back with a strong pump and a+ marketing plan dont miss it 2019-05-18 14:18:03+00:00 1.0 1144292688 845 the coin to pump is met exchange yobitnet target +500 market metbtc 2019-04-11 20:00:05+00:00 1.0 1144292688 844 5 minutes left the next message will be the coin make sure you are logged in yobitnet 2019-04-11 19:55:43+00:00 1.0 1144292688 842 30 minutes until the pump be ready for huge gains 2019-04-11 19:31:04+00:00 1.0 1144292688 841 1 hour left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-04-11 19:00:45+00:00 1.0 1144292688 840 1 hour 30 mins left until the pump are you ready for another huge success 2019-04-11 18:33:34+00:00 1.0 1144292688 839 4 hours left until the pump be sure to have enough btc available everything is looking amazing today here we come yobit 2019-04-11 16:02:09+00:00 1.0 1144292688 838 24 hours left until the yobit pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot 2019-04-10 20:00:54+00:00 1.0 1144292688 836 pyx pump game wave 1 pyrexcoin coinmarketcap tiker pyx place stex exchange starting date10042019 3 pm by moscow time trading pair btcpyx pump goal x10 chat for discussions reward rules 1all completed buy orders of pyx will be rewarded in this conditions 100 in btc 1000gpyx 2all resistance buy walls of pyx buy that will be hold on till 1804 will be rewarded in this conditions 1 in btc 5gpyxcanceled walls before end date will be not rewarded golden pyrex coin gpyx erc20 will be tradeablle on our pyrexchange cryptocurrency exchange 1804 and used in services like launchpad vippass discounted trading fees information to get reward shoud be provided to telegram group admin pyrexcoincom 1 screenshot of completed orders your trade history 2 account detailsemail for resistance buy wall will be cheked with stex team if wall is still on hold 2019-04-10 12:29:49+00:00 1.0 1144292688 835 new pump announcement ✅ the next signal will be on thursday the 11 th of april 2000 8 pm gmt exchange yobitnet ⚖️pair btc welcome to all the new members on thursday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices you should sign up and send btc to yobitnet to be ready for the pump 2019-04-07 16:56:36+00:00 1.0 1144292688 833 5 minutes left the next message will be the coin expected gain 70150 2019-04-04 19:55:32+00:00 1.0 1144292688 831 30 minutes until the pump be ready for huge gains 2019-04-04 19:29:31+00:00 1.0 1144292688 830 1 hour left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-04-04 19:00:36+00:00 1.0 1144292688 829 2 hours left until the pump are you ready for another huge success 2019-04-04 17:59:50+00:00 1.0 1144292688 828 6 hours left until the pump be sure to have enough btc available everything is looking amazing today here we come bitrrex 2019-04-04 14:03:11+00:00 1.0 1144292688 827 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot bittrex has 40 million daily volume and we will claim as much of that as we can for our group be sure to have your account loaded and verified and be ready to help promote the coin tomorrow 2019-04-03 20:25:32+00:00 1.0 1144292688 826 pump announcement next pump thursday 3 apr 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2019-03-31 12:02:55+00:00 1.0 1144292688 823 5 minutes left the next message will be the coin expected gain up to 180 2019-03-28 19:55:58+00:00 1.0 1144292688 818 1 hour left before the pump make sure you help promote the coin during the pump 2019-03-28 19:12:52+00:00 1.0 1144292688 817 2 hours left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-03-28 18:01:22+00:00 1.0 1144292688 814 24 hours left before the pump alt coins are going crazy right now a lot of natural pumps and large daily gains this is the best environment to pump in 2019-03-27 20:56:56+00:00 1.0 1144292688 813 48 hours left until the bittrex pump 2000 gmt check your local time daylight savings may have changed your local time exchange bittrex pairing btc free for all pump all pumpers receive the signal at the same time via our bot this pump its going to be huge lot of alt coins are pumping lately outisders will fomo into add all your friends to pump through this link 2019-03-26 20:08:54+00:00 1.0 1144292688 812 pump announcement next pump thursday 28 march 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2019-03-22 21:08:17+00:00 1.0 1144292688 799 cure bittrex pump results start price 1468 peak price 2966 gain 102 2019-03-19 20:34:59+00:00 1.0 1144292688 795 everyone 5 minutes left the next message will be the coin expected gain up to 200 2019-03-19 19:56:28+00:00 1.0 1144292688 792 1 hour left before the pump make sure you help promote the coin during the pump 2019-03-19 19:03:23+00:00 1.0 1144292688 790 2 hours left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-03-19 17:58:56+00:00 1.0 1144292688 785 brx pump results start price 2321 sats peak price 4800 sats gain 107 volume 6 btc 2019-02-26 20:49:37+00:00 1.0 1144292688 784 2 hours left until the pump are you ready for another huge success kindly join our channel coin will be posted there firstly 2019-02-26 18:04:14+00:00 1.0 1144292688 783 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot our volume is increasing every pump with a little more we can be on the bittrex front page as both the top gain and top volume gain by this would be huge for our pump the coin will be released as an image this time to deter bots news will also be given during the pump to spread around in a coordinated effort to increase the buzz around our coin and send the price volume even higher kindly join our channel coin will be posted there firstly 2019-02-25 20:06:22+00:00 1.0 1144292688 781 48 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot altough we are strong and doing very well we encourage you to invite others the more members in our group the more powerful we become and even more effective our coin promoting can be when there are that many more people doing it 2019-02-25 01:01:32+00:00 1.0 1144292688 780 gbg pump results start price 235 sats peak price 684 sats gain 191 volume 864 btc 2019-02-21 20:30:03+00:00 1.0 1144292688 778 1 hour left before the pump make sure you help promote the coin during the pump join other this channel coin will be posted there firstly 2019-02-21 19:09:41+00:00 1.0 1144292688 776 2 hours left until the pump everything is looking amazing today last time we under estimated our reach and could have easily handled double the volume with the amount of outsiders we brought in today we expect double the volume or even more 2019-02-21 17:37:41+00:00 1.0 1144292688 775 3 hours left until the pump everything is looking amazing today last time we under estimated our reach and could have easily handled double the volume with the amount of outsiders we brought in today we expect double the volume or even more 2019-02-21 16:52:44+00:00 1.0 1144292688 773 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot bittrex has 40 million daily volume and we will claim as much of that as we can for our group be sure to have your account loaded and verified and be ready to help promote the coin tomorrow 2019-02-20 20:11:45+00:00 1.0 1144292688 772 pump announcement next pump thursday 21 february 2000 gmt check your local time exchange bittrex pairing btc lets make this pump even better after the huge success of the last pump be ready register your account on bittrex and verify it 2019-02-16 11:24:49+00:00 1.0 1144292688 770 gam bittrex pump results start price 00035960 peak price 00086000 gain 139 this was incredible for our first bittrex pump gam repeaked 6 minutes later on the second wave to 125 as plenty of outsiders jumped in cmc chart looks so pretty as well great job everyone 2019-02-12 21:20:32+00:00 1.0 1144292688 768 2 hours left until the pump everyone today should be nothing short of special our new modified approach will bring even more users incredible gains be sure to send in your success stories and spread the word about your profits and our group afterwards kindly join our this channel coin will be posted there firstly 2019-01-11 18:03:03+00:00 1.0 1144292688 766 everyone 24hours left until our massive pump 2000 gmt check your local time exchange pairing btc we will adjust our goal from trying to give max gains to people to giving gains to max people if you enter this pump you will profit we are looking to receive successstories from almost every user this pump as always the pump is ffa 2019-01-10 20:13:20+00:00 1.0 1144292688 765 otn cryptopia pump results start price 4802 peak price 18293 gain 294 great job promoting today the pump rose very slow and steady and held for almost 10 min 2018-12-06 20:15:58+00:00 1.0 1144292688 756 24 hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump 2018-12-03 20:03:00+00:00 1.0 1144292688 755 48 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-12-02 21:00:22+00:00 1.0 1144292688 754 ℹ️ coin signal info ℹ️ exchange cryptopiaconz date5112018 day monday time 6 pm 1800 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 fuzz 110 bsty 237 flax 224 magn 280 mbrs 100 umo 108 market condition is very optimistic to make huge profit in monday be ready to profit btc 2018-11-29 19:34:32+00:00 1.0 1144292688 749 5 minutes left the next message will be the coin exected gain up to 300 2018-11-24 18:55:04+00:00 1.0 1144292688 747 everyone 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-11-24 18:30:04+00:00 1.0 1144292688 743 everyone 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz market condition is ideal today btc stable between 45005000 and expected good profits be ready and dont miss todays profits 2018-11-24 17:00:02+00:00 1.0 1144292688 742 everyone 4 hours left until our big pump informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 700pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-11-24 15:00:04+00:00 1.0 1144292688 740 ℹ️ coin signal info ℹ️ exchange cryptopia date24112018 day saturday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 fuzz 110 bsty 237 flax 224 magn 280 mbrs 100 umo 108 2018-11-24 11:55:39+00:00 1.0 1144292688 732 5 minutes left the next message will be the coin exected gain up to 300 2018-11-22 18:55:00+00:00 1.0 1144292688 730 everyone 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-11-22 18:30:01+00:00 1.0 1144292688 727 everyone 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-11-22 17:00:03+00:00 1.0 1144292688 726 4 hours left until our huge pump exchange cryptopia pairing btc 2018-11-22 15:00:06+00:00 1.0 1144292688 725 everyone 24 hours left until our big pump informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 700pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-11-21 19:00:01+00:00 1.0 1144292688 724 next pump thursday 22 november 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 0 prepump be ready guys share our link with your friends 2018-11-20 16:34:03+00:00 1.0 1144292688 723 coin mbrs start price 33 peak price 66 although low volume bc of crashed market today but coin hold at 47 for 7 minutes today we will start to pump again one we see a good chance for outsiders to join 2018-11-15 19:17:53+00:00 1.0 1144292688 720 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-15 18:55:01+00:00 1.0 1144292688 717 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-15 18:00:01+00:00 1.0 1144292688 715 everyone 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-15 15:00:03+00:00 1.0 1144292688 714 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked no prepump ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a thursday pump should be full of outsiders 2018-11-14 19:00:04+00:00 1.0 1144292688 713 everyone next pump thursday 15 november 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 0 prepump be ready guys share our link with your friends 2018-11-13 19:00:01+00:00 1.0 1144292688 712 flax cryptopia pump results peak price 234 gain 260 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 1 and 2 minutes later good job today guys 2018-11-12 19:19:00+00:00 1.0 1144292688 707 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-12 18:55:02+00:00 1.0 1144292688 704 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-12 18:00:00+00:00 1.0 1144292688 702 everyone 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-12 15:00:00+00:00 1.0 1144292688 701 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked no prepump ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a monday pump should be full of outsiders 2018-11-11 19:00:00+00:00 1.0 1144292688 700 47 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a wedenesday pump should be full of outsiders 2018-11-10 20:00:28+00:00 1.0 1144292688 699 next pump monday 12 november 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 0 prepump be ready guys share our link with your friends 2018-11-09 11:46:01+00:00 1.0 1144292688 696 bsty cryptopia pump results peak price 197 gain 207 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 1 and 2 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-11-07 19:24:43+00:00 1.0 1144292688 690 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-07 18:55:03+00:00 1.0 1144292688 686 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-11-07 18:00:02+00:00 1.0 1144292688 683 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-07 15:00:02+00:00 1.0 1144292688 681 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-11-06 19:00:02+00:00 1.0 1144292688 679 the coin of the next pump will be posted here firstly 2018-11-05 19:25:35+00:00 1.0 1144292688 678 48 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-11-05 19:00:04+00:00 1.0 1144292688 677 the coin of the next pump will be posted here firstly 2018-11-04 22:04:55+00:00 1.0 1144292688 676 next pump wednesday 7 november 1900 gmt 2200 gmt+3 moscow 7 nov 2100 gmt+2 rome 7 nov 2000 gmt+1 london 7 nov 1500 est new york 7 nov 0500 aest sydney 8 nov 0030 ist delhi 8 nov 0400 jst tokyo 8 nov exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-11-04 22:04:11+00:00 1.0 1144292688 675 the coin of the next pump will be posted here firstly 2018-11-03 17:33:36+00:00 1.0 1144292688 674 30 minutes left we are ready outsiders are waiting and potential is super high lets set new records today 2018-11-03 17:33:15+00:00 1.0 1144292688 673 the coin of the next pump will be posted here firstly 2018-11-03 14:34:54+00:00 1.0 1144292688 672 everyone 4 hours left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-03 14:34:42+00:00 1.0 1144292688 671 the coin of the next pump will be posted here firstly 2018-11-02 18:16:06+00:00 1.0 1144292688 670 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot this will be a saturday pump for the ages all tools triple checked and working optimally weeks ago we shot ivy over 790 with huge volume and extreme outsider buy ins tomorrow we have a very strong chance to do even better than this everyone be ready together we will make this an amazing success 2018-11-02 18:15:22+00:00 1.0 1144292688 668 all cryptopia pump results peak price 339 gain 265 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 2 and 3 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-11-01 19:31:42+00:00 1.0 1144292688 663 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-01 18:55:03+00:00 1.0 1144292688 661 the coin of the next pump will be posted here firstly 2018-11-01 18:30:34+00:00 1.0 1144292688 658 the coin of the next pump will be posted here firstly 2018-11-01 15:01:54+00:00 1.0 1144292688 657 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-01 15:01:42+00:00 1.0 1144292688 655 everyone 23 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-10-31 20:08:42+00:00 1.0 1144292688 654 the coin of the next pump will be posted here firstly 2018-10-30 19:05:03+00:00 1.0 1144292688 653 next pump thursday 1 november 1900 gmt 2200 gmt+3 moscow 1 nov 2100 gmt+2 rome 1 nov 2000 gmt+1 london 1 nov 1500 est new york 1 nov 0500 aest sydney 2 nov 0030 ist delhi 2 nov 0400 jst tokyo 2 nov exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-30 19:03:11+00:00 1.0 1144292688 651 the coin of the next pump will be posted here firstly 2018-10-29 19:31:56+00:00 1.0 1144292688 650 magn cryptopia pump results peak price 1506 gain 286 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 3 and 4 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-10-29 19:29:32+00:00 1.0 1144292688 642 everyone 5 minutes left the next post will be the coin be ready guys 2018-10-29 18:55:03+00:00 1.0 1144292688 639 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-10-29 18:00:03+00:00 1.0 1144292688 635 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-29 15:00:04+00:00 1.0 1144292688 633 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-10-28 19:04:32+00:00 1.0 1144292688 629 everyone 3 hours left until the pump we have been doing amazing lately but today will be even bigger and better than normal great volume tons of outsiders max profits 2018-10-27 14:58:53+00:00 1.0 1144292688 627 private group for pump announcement next pump saturday 27 october 1800 gmt 2100 gmt+3 moscow 27 oct 2000 gmt+2 rome 27 oct 1900 gmt+1 london 27 oct 1400 est new york 27 oct 2330 ist delhi 27 oct 0400 aest sydney 28 oct 0300 jst tokyo 28 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time due to our recent success and by popular demand we will pump this saturday another huge pump coming notice the pump time 1800 gmt 2018-10-26 17:15:54+00:00 1.0 1144292688 625 xptx cryptopia pump results peak price 12403 gain 530 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 3 and 4 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-10-25 20:36:53+00:00 1.0 1144292688 622 3 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-25 16:28:16+00:00 1.0 1144292688 620 everyone 22 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great for this pump lets beat our goal and bring in max outsiders 2018-10-24 21:28:14+00:00 1.0 1144292688 613 everyone 1 hour left until our huge pump remember to 1 buy in quickly 2 list your sell in the expected gain range 3 help promote the coin in the cryptopia chat box we have been doing incredible lately and that trend will continue today 2018-10-18 18:31:08+00:00 1.0 1144292688 611 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-18 15:30:47+00:00 1.0 1144292688 610 after the amazing bubo pump we had a generous member donate a portion of their profits so for todays pump we are doing something special and giving it back to the community 1 the user who invests the most in todays pump will recieve a 10 bonus on what they invest if you invested 5 btc and win you will get 05 btc from us on top of your profits 2 a second winner wil be chosen at random from all the entries and win 10 as well become the mvp most valuable pumper submit your orderbook to mvpump so it can be compared to the official logs of the coin max payout 05 btc 2018-10-18 14:40:47+00:00 1.0 1144292688 608 24 hours left until our massive pump exchange sign up pairing btc load account huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we have amazing promotional material ready with our greatest shilling power yet expect 400 gain or more + coin staying up for a long time + tons of outsiders again 2018-10-17 19:30:00+00:00 1.0 1144292688 606 48 hours left until our massive pump exchange cryptopia pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot last pump we held 250 for over 20 minutes and had record amount of outsiders buying in this next pump will be even bigger with a huge goal again expect 400 or more + coin staying up for longer + tons of outsiders again 2018-10-16 19:30:03+00:00 1.0 1144292688 604 next pump thursday 18 october 1930 gmt 2230 gmt+3 moscow 18 oct 2130 gmt+2 rome 18 oct 2030 gmt+1 london 18 oct 1530 est new york 19 oct 0530 aest sydney 19 oct 0100 ist delhi 19 oct 0430 jst tokyo 19 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-14 14:25:41+00:00 1.0 1144292688 598 bubo cryptopia pump results start price 68 peak price 273 gain 301 today was amazing for outsiders as we predicted keep up the good work everyone 2018-10-11 20:03:02+00:00 1.0 1144292688 594 30 minutes left news to promote in the cryptopia chatbox and all over social media will be supplied shortly after the coin annuoncement 2018-10-11 19:00:03+00:00 1.0 1144292688 593 1 hour left until our massive pump this will be huge 2018-10-11 18:30:03+00:00 1.0 1144292688 592 2 hours left until our massive pump we have great coin news and shilling prepared for today along with 2000 new members make sure you are doing your part and helping promote the coin in the chatbox after you are bought in this pump will be huge and filmed to use as promotional material help us make this the best pump ever lets blast over our goal again this pump 2018-10-11 17:30:03+00:00 1.0 1144292688 591 4 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-11 15:30:02+00:00 1.0 1144292688 590 24 hours left until our massive pump exchange cryptopia wwwcryptopiaconz pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot together our family has grown by over 2000 users in 1 week this says a lot about our past success but also about our future success we are stronger than ever and will have an incredible pump tomorrow improved shilling for this pump featured website hosting the coin news social media influencers promoting our shilling tools at full strength 2000 more users to spread fomo about the coin bringing in outsiders is how we maximize earnings and tomorrow we will do the best weve ever done at that be ready for huge profits 2018-10-10 19:30:05+00:00 1.0 1144292688 589 due to our recent success and relentless advertising our family of groups has grown a lot this past week 2000 new members this means our market power and coin promoting reach is the largest its ever been our next pump will be the biggest and most successful pump in this groups history you will not want to miss it you can expect the most volume highest percent gain highest member profits ever we will push our coin well above 200 and then promote it with our highly improved method featuring real websites custom build tools and our chatbox shill next pump thursday 11 october 1930 gmt exchange wwwcryptopiaconz pairing btc 2018-10-10 11:55:00+00:00 1.0 1144292688 580 everyone 5 minutes left next message will be the coin 2018-10-09 16:55:00+00:00 1.0 1144292688 579 10 minutes left expected gains up to 300 470 2018-10-09 16:50:04+00:00 1.0 1144292688 577 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-09 16:00:01+00:00 1.0 1144292688 576 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-10-09 15:00:03+00:00 1.0 1144292688 575 4 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 500 pm gmt 2018-10-09 13:00:00+00:00 1.0 1144292688 574 ℹ️ coin signal info ℹ️ exchange cryptopia date9102018 day tuesday time 5 pm 1700 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 fuzz 110 support us please and invite your friends to join us and increase our pump power 2018-10-08 20:36:55+00:00 1.0 1144292688 573 analysis well done again today guys coin fuzz low 101 high 213 profit 110 remember for tomorrow pump buy and hold never panic sell you see holders profit today share our link and invite your friends to profit with us 2018-10-08 18:08:02+00:00 1.0 1144292688 567 everyone 5 minutes left next message will be the coin 2018-10-08 16:55:04+00:00 1.0 1144292688 566 10 minutes left expected gains up to 300 470 2018-10-08 16:50:03+00:00 1.0 1144292688 564 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-08 15:59:04+00:00 1.0 1144292688 563 4 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 500 pm gmt 2018-10-08 13:08:40+00:00 1.0 1144292688 562 ℹ️ coin signal info ℹ️ exchange cryptopia date8102018 day monday time 5 pm 1700 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 support us please and invite your friends to join us and increase our pump power 2018-10-07 20:04:00+00:00 1.0 1144292688 561 analysis well done again today guys coin yovi start 323 high 775 profit 140 remember for tomorrow pump buy and hold never panic sell you see holders profit today share our link and invite your friends to profit with us 2018-10-07 17:54:58+00:00 1.0 1144292688 555 everyone 5 minutes left next message will be the coin 2018-10-07 16:55:03+00:00 1.0 1144292688 554 10 minutes left expected gains up to 300 470 2018-10-07 16:50:03+00:00 1.0 1144292688 552 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-07 16:00:01+00:00 1.0 1144292688 551 2 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-07 15:04:43+00:00 1.0 1144292688 550 4 hours left until our huge pump exchange cryptopia pairing btc 2018-10-07 13:00:01+00:00 1.0 1144292688 549 10 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 500 pm gmt 2018-10-07 07:00:00+00:00 1.0 1144292688 548 ℹ️ coin signal info ℹ️ exchange cryptopia date7102018 day sunday time 5 pm 1700 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 support us please and invite your friends to join us and increase our pump power 2018-10-06 21:30:00+00:00 1.0 1144292688 547 analysis well done again today guys coin dope start 148 high 330 profit 123 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-10-06 20:36:53+00:00 1.0 1144292688 544 everyone 5 minutes left next message will be the coin 2018-10-06 19:25:00+00:00 1.0 1144292688 543 10 minutes left expected gains up to 300 470 2018-10-06 19:20:04+00:00 1.0 1144292688 541 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-06 18:30:04+00:00 1.0 1144292688 540 2 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-06 17:30:00+00:00 1.0 1144292688 539 under 4 hours left until the huge pump exchange cryptopia pairing btc todays pump will be historical make sure you have much btc in your balance to maximize your profits and invite all your friends to our pump through this link 2018-10-06 15:30:00+00:00 1.0 1144292688 538 just under 19 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this this will be a historic pump pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we are aiming to make it the largest pump ever done on cryptopia tuesdays pump was outstanding with a goal of 300450 we blasted all the way through to 796 can we do this again theres only 1 way to find out invite your friends through below link quickly 2018-10-05 23:46:59+00:00 1.0 1144292688 537 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot our coin promoting will be the best its ever been this pump and all members should see their best gains there are 48 hours left to invite friends to help increase our power even more also invite your friends and be ready with all btc 2018-10-04 18:58:29+00:00 1.0 1144292688 536 hey guys next pump saturday 6 october 1930 gmt 2230 gmt+3 moscow 6 oct 2130 gmt+2 rome 6 oct 2030 gmt+1 london 6 oct 1530 est new york 6 oct 0530 aest sydney 7 oct 0100 ist delhi 7 oct 0430 jst tokyo 7 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time lets do this new pump epic as the today one also invite your friends by sharing this link to get more power to our pump 2018-10-02 21:07:53+00:00 1.0 1144292688 535 analysis well done again today guys coin egc start 945 high 1939 profit 105 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-10-02 20:28:03+00:00 1.0 1144292688 532 5 minutes left the next message will be the coin exected gain up to 500 2018-10-02 18:55:01+00:00 1.0 1144292688 531 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-10-02 18:30:01+00:00 1.0 1144292688 529 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-10-02 17:00:02+00:00 1.0 1144292688 528 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-10-02 16:30:42+00:00 1.0 1144292688 527 3 hours left until our huge pump in cryptopia time 7 pm gmt 2018-10-02 16:00:01+00:00 1.0 1144292688 526 6 hours left until our huge pump time 7 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-10-02 13:00:00+00:00 1.0 1144292688 525 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 700 pm gmt 2018-10-02 07:00:07+00:00 1.0 1144292688 524 ℹ️ coin signal info ℹ️ exchange cryptopia date2102018 day tuesday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 support us please and invite your friends to join us and increase our pump power 2018-10-01 22:23:55+00:00 1.0 1144292688 523 analysis well done again today guys coin hst start 1837 high 4225 profit 138 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-10-01 22:00:13+00:00 1.0 1144292688 520 5 minutes left the next message will be the coin exected gain up to 500 2018-10-01 18:55:06+00:00 1.0 1144292688 519 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-10-01 18:30:00+00:00 1.0 1144292688 517 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-10-01 17:00:03+00:00 1.0 1144292688 516 3 hours left until our huge pump in cryptopia time 7 pm gmt 2018-10-01 16:00:01+00:00 1.0 1144292688 515 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-10-01 14:30:00+00:00 1.0 1144292688 514 6 hours left until our huge pump time 7 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-10-01 13:00:02+00:00 1.0 1144292688 513 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 700 pm gmt 2018-10-01 07:00:04+00:00 1.0 1144292688 512 ℹ️ coin signal info ℹ️ exchange cryptopia date1102018 day monday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 support us please and invite your friends to join us and increase our pump power 2018-09-30 21:42:42+00:00 1.0 1144292688 511 analysis well done again today guys coin can start 773 high 1945 profit 151 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-09-30 19:19:35+00:00 1.0 1144292688 508 5 minutes left the next message will be the coin exected gain 150400 2018-09-30 18:25:04+00:00 1.0 1144292688 507 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-30 18:00:02+00:00 1.0 1144292688 505 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-30 16:30:03+00:00 1.0 1144292688 504 3 hours left until our huge pump in cryptopia time 630 pm gmt 2018-09-30 15:30:01+00:00 1.0 1144292688 503 6 hours left until our huge pump time 630 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-30 12:30:01+00:00 1.0 1144292688 502 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 630 pm gmt 2018-09-30 06:30:03+00:00 1.0 1144292688 501 ℹ️ coin signal info ℹ️ exchange cryptopia date3092018 day sunday time 630 pm 1830 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 support us please and invite your friends to join us and increase our pump power 2018-09-29 21:20:23+00:00 1.0 1144292688 500 analysis well done again today guys coin oxy start 594 high 1200 profit 102 voulme 2 btc wait us for tomorrow pump at 630 pm gmt again share our link and invite your friends to profit with us 2018-09-29 20:36:20+00:00 1.0 1144292688 494 5 minutes left the next message will be the coin exected gain 150400 2018-09-29 18:25:01+00:00 1.0 1144292688 493 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-29 18:00:03+00:00 1.0 1144292688 491 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-29 16:30:02+00:00 1.0 1144292688 490 3 hours left until our huge pump in cryptopia time 630 pm gmt 2018-09-29 15:30:00+00:00 1.0 1144292688 489 6 hours left until our huge pump time 630 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-29 12:30:02+00:00 1.0 1144292688 488 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 630 pm gmt 2018-09-29 06:30:01+00:00 1.0 1144292688 487 ℹ️ coin signal info ℹ️ exchange cryptopia date2992018 day saturday time 630 pm 1830 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 support us please and invite your friends to join us and increase our pump power 2018-09-28 19:57:40+00:00 1.0 1144292688 485 analysis well done again today guys coin rep one of top 100 coins of coinmarketcap start 000200 high 0004927 profit 146 voulme 35 btc we profit in one pump what others dont profit in 1000 trade wait us for tomorrow pump at 630 pm gmt again share our link and invite your friends to profit with us 2018-09-28 18:58:58+00:00 1.0 1144292688 484 too pretty pump today guys coin till now holding its position at 0004455 love you all guys cuz you follow instructions volume 3 btc 2018-09-28 18:44:19+00:00 1.0 1144292688 480 5 minutes left the next message will be the coin exected gain 150400 2018-09-28 18:25:04+00:00 1.0 1144292688 479 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-28 18:00:02+00:00 1.0 1144292688 477 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-28 16:30:00+00:00 1.0 1144292688 476 3 hours left until our huge pump in cryptopia time 630 pm gmt 2018-09-28 15:30:03+00:00 1.0 1144292688 475 6 hours left until our huge pump time 630 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-28 12:30:04+00:00 1.0 1144292688 474 11 hours 30 mins left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 630 pm gmt 2018-09-28 07:01:58+00:00 1.0 1144292688 473 ℹ️ coin signal info ℹ️ exchange cryptopia date2892018 day friday time 630 pm 1830 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 support us please and invite your friends to join us and increase our pump power 2018-09-27 23:09:50+00:00 1.0 1144292688 468 5 minutes left the next message will be the coin exected gain 150300 2018-09-27 18:55:02+00:00 1.0 1144292688 467 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-27 18:30:04+00:00 1.0 1144292688 464 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-27 17:00:00+00:00 1.0 1144292688 463 3 hours left until our huge pump 2018-09-27 16:00:01+00:00 1.0 1144292688 461 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-09-27 14:37:52+00:00 1.0 1144292688 460 6 hours left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-27 13:00:00+00:00 1.0 1144292688 459 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-09-27 07:00:03+00:00 1.0 1144292688 458 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profit ℹ️ coin signal info ℹ️ exchange cryptopia date2792018 day thursday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 support us please and invite your friends to join us and increase our pump power 2018-09-26 22:30:09+00:00 1.0 1144292688 443 5 minutes left the next message will be the coin exected gain 150300 2018-09-26 18:55:01+00:00 1.0 1144292688 442 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-26 18:30:02+00:00 1.0 1144292688 439 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-26 17:00:03+00:00 1.0 1144292688 438 3 hours left until our huge pump 2018-09-26 16:00:03+00:00 1.0 1144292688 437 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-09-26 15:33:03+00:00 1.0 1144292688 436 6 hours left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-26 13:12:12+00:00 1.0 1144292688 431 10 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-09-26 08:55:58+00:00 1.0 1144292688 430 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2692018 day wedensday time 7 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 support us please and invite your friends to join us and increase our pump power 2018-09-25 23:26:30+00:00 1.0 1144292688 424 the coin to pump is spr exchange cryptopiaconz target +500 market sprbtc 2018-09-25 17:00:01+00:00 1.0 1144292688 423 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-25 16:55:01+00:00 1.0 1144292688 422 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-25 16:50:00+00:00 1.0 1144292688 418 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-25 13:00:01+00:00 1.0 1144292688 415 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-25 06:30:00+00:00 1.0 1144292688 414 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2592018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 support us please and invite your friends to join us and increase our pump power 2018-09-24 20:30:00+00:00 1.0 1144292688 413 analysis coin aur start 4848 high 9123 profit 88 after we initiated its price surge on time the altcoin aur got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors aur surged more by then to +88 as investors orders were listed gradually we witnessed a strong support levels between +70 and +83 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 200300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-24 19:29:22+00:00 1.0 1144292688 410 the coin to pump is aur exchange cryptopiaconz target +500 market aurbtc 2018-09-24 17:00:01+00:00 1.0 1144292688 409 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-24 16:55:00+00:00 1.0 1144292688 408 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-24 16:50:04+00:00 1.0 1144292688 404 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-24 13:00:01+00:00 1.0 1144292688 402 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-24 06:30:03+00:00 1.0 1144292688 401 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2492018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 gno 137 support us please and invite your friends to join us and increase our pump power 2018-09-23 20:15:00+00:00 1.0 1144292688 400 analysis coin gno start 000398 high 000944 profit 137 after we initiated its price surge on time the altcoin gno got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors gno surged more by then to +137 as investors orders were listed gradually we witnessed a strong support levels between +98 and +110 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-23 19:13:07+00:00 1.0 1144292688 397 the coin to pump is gno exchange cryptopiaconz target +500 market gnobtc 2018-09-23 17:00:03+00:00 1.0 1144292688 396 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-23 16:55:02+00:00 1.0 1144292688 395 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-23 16:50:01+00:00 1.0 1144292688 391 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-23 13:00:02+00:00 1.0 1144292688 389 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-23 06:35:04+00:00 1.0 1144292688 388 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2392018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 support us please and invite your friends to join us and increase our pump power 2018-09-22 19:23:36+00:00 1.0 1144292688 387 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2392018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 support us please and invite your friends to join us and increase our pump power 2018-09-22 19:23:32+00:00 1.0 1144292688 382 the coin to pump is skr exchange cryptopiaconz target +500 market skrbtc 2018-09-22 17:00:03+00:00 1.0 1144292688 381 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-22 16:55:01+00:00 1.0 1144292688 380 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-22 16:50:00+00:00 1.0 1144292688 376 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-22 13:00:00+00:00 1.0 1144292688 374 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-22 06:30:04+00:00 1.0 1144292688 373 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2292018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 support us please and invite your friends to join us and increase our pump power 2018-09-21 20:56:24+00:00 1.0 1144292688 372 analysis coin zny start 97 high 300 profit 209 volume 163 btc after we initiated its price surge on time the altcoin zny got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors zny surged more by then to +209 as investors orders were listed gradually we witnessed a strong support levels between +150 and +170 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-21 19:32:29+00:00 1.0 1144292688 368 the coin to pump is zny exchange cryptopiaconz target +500 market znybtc 2018-09-21 17:00:02+00:00 1.0 1144292688 367 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-21 16:55:01+00:00 1.0 1144292688 366 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-21 16:50:01+00:00 1.0 1144292688 362 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-21 13:00:00+00:00 1.0 1144292688 360 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-21 06:30:00+00:00 1.0 1144292688 359 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2192018 day friday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 support us please and invite your friends to join us and increase our pump power 2018-09-20 21:30:01+00:00 1.0 1144292688 358 analysis coin xst start 2213 high 4268 volume 18 btc after we initiated its price surge on time the altcoin xst got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors egc surged more by then to +101 as investors orders were listed gradually we witnessed a strong support levels between +73 and +90 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-20 20:00:03+00:00 1.0 1144292688 352 the coin to pump is xst exchange cryptopiaconz target +500 market xstbtc 2018-09-20 17:00:02+00:00 1.0 1144292688 351 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-20 16:55:01+00:00 1.0 1144292688 350 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-20 16:50:00+00:00 1.0 1144292688 346 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-20 13:00:04+00:00 1.0 1144292688 344 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-20 06:30:09+00:00 1.0 1144292688 341 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2092018 day thursday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 support us please and invite your friends to join us and increase our pump power 2018-09-19 22:01:48+00:00 1.0 1144292688 340 analysis coin egc start 843 high 1901 increase +125 after we initiated its price surge on time the altcoin egc got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors egc surged more by then to +138 as investors orders were listed gradually we witnessed a strong support levels between +120 and +125 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-19 21:01:41+00:00 1.0 1144292688 336 the coin to pump is egc exchange cryptopiaconz target +500 market egcbtc 2018-09-19 17:00:02+00:00 1.0 1144292688 335 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-19 16:55:01+00:00 1.0 1144292688 334 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-19 16:50:01+00:00 1.0 1144292688 330 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-19 13:00:01+00:00 1.0 1144292688 328 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-19 06:30:04+00:00 1.0 1144292688 327 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1992018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 support us please and invite your friends to join us and increase our pump power 2018-09-18 20:30:02+00:00 1.0 1144292688 326 analysis coin tx start 3400 high 7998 increase +138 after we initiated its price surge on time the altcoin tx got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors tx surged more by then to +138 as investors orders were listed gradually we witnessed a strong support levels between +79 and +116 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-18 19:00:00+00:00 1.0 1144292688 322 the coin to pump is tx exchange cryptopiaconz target +500 market txbtc 2018-09-18 17:00:00+00:00 1.0 1144292688 321 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-18 16:55:03+00:00 1.0 1144292688 320 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-18 16:50:03+00:00 1.0 1144292688 316 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-18 13:00:01+00:00 1.0 1144292688 314 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-18 06:30:01+00:00 1.0 1144292688 313 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1892018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 support us please and invite your friends to join us and increase our pump power 2018-09-17 21:09:57+00:00 1.0 1144292688 312 good job guys coin name xmg today we did it again with volume16 btc pump started at 1100 reached max at 2618 profit 138 second wave push coin again till nowfrom 2000 to 2618 satoshi good job today guys and congratulation for holders who sold at high rate we expect more jump tommorrow be ready as our pump is the best way to profit in this bear market 2018-09-17 18:52:43+00:00 1.0 1144292688 308 the coin to pump is xmg exchange cryptopiaconz target +500 market xmgbtc 2018-09-17 17:00:02+00:00 1.0 1144292688 307 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-17 16:55:01+00:00 1.0 1144292688 306 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-17 16:50:00+00:00 1.0 1144292688 302 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-17 13:00:02+00:00 1.0 1144292688 300 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-17 06:30:02+00:00 1.0 1144292688 299 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1792018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 support us please and invite your friends to join us and increase our pump power 2018-09-16 19:56:09+00:00 1.0 1144292688 295 the coin to pump is soil exchange cryptopiaconz target +500 market soilbtc 2018-09-16 17:00:04+00:00 1.0 1144292688 294 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin it will be huge signal today buy fast when announced 2018-09-16 16:55:03+00:00 1.0 1144292688 293 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-16 16:50:02+00:00 1.0 1144292688 289 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-16 13:00:01+00:00 1.0 1144292688 287 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-16 06:30:02+00:00 1.0 1144292688 286 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1692018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 support us please and invite your friends to join us and increase our pump power 2018-09-15 20:06:49+00:00 1.0 1144292688 282 the coin to pump is amp exchange cryptopiaconz target +500 market ampbtc 2018-09-15 17:00:11+00:00 1.0 1144292688 281 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-15 16:55:02+00:00 1.0 1144292688 280 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-15 16:50:01+00:00 1.0 1144292688 276 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-15 13:00:02+00:00 1.0 1144292688 274 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-15 06:30:01+00:00 1.0 1144292688 273 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1592018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 support us please and invite your friends to join us and increase our pump power 2018-09-14 20:34:58+00:00 1.0 1144292688 268 the coin to pump is bnc exchange cryptopiaconz target +500 market bncbtc 2018-09-14 17:00:00+00:00 1.0 1144292688 267 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-14 16:55:03+00:00 1.0 1144292688 266 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-14 16:50:02+00:00 1.0 1144292688 262 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-14 13:00:04+00:00 1.0 1144292688 260 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-14 06:30:02+00:00 1.0 1144292688 259 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1492018 day friday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 support us please and invite your friends to join us and increase our pump power 2018-09-13 21:00:02+00:00 1.0 1144292688 258 analysis coin ltcu start 173 high 386 increase +116 after we initiated its price surge on time the altcoin ltcu got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors ltcu surged more by then to +116 as investors orders were listed gradually we witnessed a strong support levels between +98 and +116 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-13 19:00:05+00:00 1.0 1144292688 254 the coin to pump is ltcu exchange cryptopiaconz target +500 market ltcubtc 2018-09-13 17:00:03+00:00 1.0 1144292688 253 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-13 16:55:02+00:00 1.0 1144292688 252 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-13 16:50:07+00:00 1.0 1144292688 248 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-13 13:00:02+00:00 1.0 1144292688 246 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-13 06:30:01+00:00 1.0 1144292688 245 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1392018 day thursday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 support us please and invite your friends to join us and increase our pump power 2018-09-12 22:40:09+00:00 1.0 1144292688 243 analysis coin chess start 37 high 105 increase +184 after we initiated its price surge on time the altcoin chess got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors chess surged more by then to +184 as investors orders were listed gradually we witnessed a strong support levels between +157 and +184 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-12 19:30:03+00:00 1.0 1144292688 239 the coin to pump is chess exchange cryptopiaconz target +500 market chessbtc 2018-09-12 17:00:04+00:00 1.0 1144292688 238 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-12 16:55:03+00:00 1.0 1144292688 237 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-12 16:50:01+00:00 1.0 1144292688 233 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-12 13:00:02+00:00 1.0 1144292688 231 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-12 06:30:01+00:00 1.0 1144292688 230 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1292018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 support us please and invite your friends to join us and increase our pump power 2018-09-11 21:00:03+00:00 1.0 1144292688 229 analysis coin opal start 293 high 750 increase +156 after we initiated its price surge on time the altcoin opal got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors opal surged more by then to +137 as investors orders were listed gradually we witnessed a strong support levels between +137 and +156 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-11 18:39:25+00:00 1.0 1144292688 224 the coin to pump is opal exchange cryptopiaconz target +500 market opalbtc 2018-09-11 17:00:04+00:00 1.0 1144292688 223 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-11 16:55:03+00:00 1.0 1144292688 222 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-11 16:50:01+00:00 1.0 1144292688 218 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-11 13:00:05+00:00 1.0 1144292688 216 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-11 06:27:41+00:00 1.0 1144292688 215 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1192018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 support us please and invite your friends to join us and increase our pump power 2018-09-10 21:00:06+00:00 1.0 1144292688 210 the coin to pump is alt exchange cryptopiaconz target +500 market altbtc 2018-09-10 17:00:02+00:00 1.0 1144292688 209 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-10 16:55:01+00:00 1.0 1144292688 208 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-10 16:50:00+00:00 1.0 1144292688 204 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-10 13:00:03+00:00 1.0 1144292688 202 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-10 05:56:24+00:00 1.0 1144292688 201 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1092018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 support us please and invite your friends to join us and increase our pump power 2018-09-09 22:00:04+00:00 1.0 1144292688 195 the coin to pump is chan exchange cryptopiaconz target +500 market chanbtc 2018-09-09 17:00:00+00:00 1.0 1144292688 194 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-09 16:55:04+00:00 1.0 1144292688 193 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-09 16:50:03+00:00 1.0 1144292688 189 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-09 13:00:08+00:00 1.0 1144292688 187 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-09 06:18:37+00:00 1.0 1144292688 186 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date992018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 coin of tomorrows pump will be added here 2018-09-08 22:01:40+00:00 1.0 1144292688 185 analysis coin fuzz start 108 high 241 increase +123 after we initiated its price surge on time the altcoin fuzz got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors fuzz surged more by then to +123 as investors orders were listed gradually we witnessed a strong support levels between +90 and +123 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-08 20:28:33+00:00 1.0 1144292688 179 the coin to pump is fuzz exchange cryptopiaconz target +500 market fuzzbtc 2018-09-08 17:00:01+00:00 1.0 1144292688 178 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-08 16:55:00+00:00 1.0 1144292688 177 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-08 16:50:03+00:00 1.0 1144292688 173 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-08 13:00:03+00:00 1.0 1144292688 171 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-08 05:59:07+00:00 1.0 1144292688 170 important note there wont be any picture for coin name captcha of tommorows pump we will send coin name + link only as we did before 2018-09-07 18:46:40+00:00 1.0 1144292688 169 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date892018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 coin of tomorrows pump will be added here 2018-09-07 18:43:28+00:00 1.0 1144292688 164 the coin to pump is dope exchange cryptopiaconz target +500 market dopebtc 2018-09-07 17:00:04+00:00 1.0 1144292688 162 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-07 16:55:03+00:00 1.0 1144292688 160 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-07 16:40:01+00:00 1.0 1144292688 159 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-07 16:30:03+00:00 1.0 1144292688 158 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-07 16:00:03+00:00 1.0 1144292688 157 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-07 14:00:02+00:00 1.0 1144292688 156 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-07 12:00:01+00:00 1.0 1144292688 155 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hours 30 mins until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-07 06:38:26+00:00 1.0 1144292688 154 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date792018 day firday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 vrv 106 ccn 130 coin of tomorrow pump will be added here 2018-09-06 19:30:04+00:00 1.0 1144292688 149 the coin to pump is ccn exchange cryptopiaconz target +500 market ccnbtc 2018-09-06 17:00:04+00:00 1.0 1144292688 147 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-06 16:55:03+00:00 1.0 1144292688 145 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-06 16:40:01+00:00 1.0 1144292688 144 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-06 16:30:00+00:00 1.0 1144292688 143 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-06 16:00:03+00:00 1.0 1144292688 142 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-06 14:01:05+00:00 1.0 1144292688 141 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-06 12:11:56+00:00 1.0 1144292688 140 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours 30 mins until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-06 09:20:56+00:00 1.0 1144292688 139 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date592018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 vrv 106 umo 122 coin of todays pump will be added here 2018-09-06 06:38:49+00:00 1.0 1144292688 134 the coin to pump is umo exchange cryptopiaconz target +500 market umobtc 2018-09-05 17:00:04+00:00 1.0 1144292688 132 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-05 16:55:03+00:00 1.0 1144292688 130 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-05 16:40:02+00:00 1.0 1144292688 128 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-05 16:30:04+00:00 1.0 1144292688 127 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-05 16:00:08+00:00 1.0 1144292688 126 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-05 14:01:42+00:00 1.0 1144292688 125 ℹ️ 4 hours 30 mins until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-05 12:29:30+00:00 1.0 1144292688 124 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 05092018 wedensday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-05 10:08:38+00:00 1.0 1144292688 123 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date592018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 vrv 106 coin of tomorrow pump will be added here 2018-09-04 20:24:11+00:00 1.0 1144292688 118 the coin to pump is vrc exchange cryptopiaconz target +500 market vrcbtc 2018-09-04 17:00:01+00:00 1.0 1144292688 117 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-04 16:55:03+00:00 1.0 1144292688 115 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-04 16:40:02+00:00 1.0 1144292688 114 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-04 16:30:03+00:00 1.0 1144292688 113 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-04 16:00:01+00:00 1.0 1144292688 112 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-04 14:00:07+00:00 1.0 1144292688 111 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-04 12:00:10+00:00 1.0 1144292688 110 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 04092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-04 09:28:31+00:00 1.0 1144292688 109 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date492018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 coin of tomorrow pump will be added here 2018-09-03 19:08:32+00:00 1.0 1144292688 104 the coin to pump is duo exchange cryptopiaconz target +500 market duobtc 2018-09-03 17:00:03+00:00 1.0 1144292688 103 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-03 16:55:01+00:00 1.0 1144292688 101 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-03 16:40:03+00:00 1.0 1144292688 100 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-03 16:30:02+00:00 1.0 1144292688 99 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-03 16:00:01+00:00 1.0 1144292688 98 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-03 14:00:02+00:00 1.0 1144292688 97 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-03 11:59:46+00:00 1.0 1144292688 96 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 03092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-03 09:01:14+00:00 1.0 1144292688 95 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date392018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 coin of tomorrow pump will be added here 2018-09-02 23:12:57+00:00 1.0 1144292688 90 the coin to pump is emc2 exchange cryptopiaconz target +500 market emc2btc 2018-09-02 17:00:03+00:00 1.0 1144292688 89 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-02 16:55:02+00:00 1.0 1144292688 87 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-02 16:40:04+00:00 1.0 1144292688 86 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-02 16:30:03+00:00 1.0 1144292688 85 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-02 16:00:03+00:00 1.0 1144292688 84 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-02 14:00:02+00:00 1.0 1144292688 83 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-02 12:00:03+00:00 1.0 1144292688 82 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 02092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-02 09:00:04+00:00 1.0 1144292688 81 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date292018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 cloak142 coin of tomorrow pump will be added here 2018-09-02 09:00:03+00:00 1.0 1144292688 80 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date292018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 cloak142 coin of tomorrow pump will be added here 2018-09-01 19:08:57+00:00 1.0 1144292688 75 the coin to pump is cloak exchange cryptopiaconz target +500 market cloakbtc 2018-09-01 17:00:03+00:00 1.0 1144292688 74 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-01 16:55:00+00:00 1.0 1144292688 72 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-01 16:40:01+00:00 1.0 1144292688 71 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-01 16:30:01+00:00 1.0 1144292688 70 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-01 16:00:02+00:00 1.0 1144292688 69 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-01 14:00:04+00:00 1.0 1144292688 68 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-01 12:00:01+00:00 1.0 1144292688 67 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-01 09:10:37+00:00 1.0 1144292688 66 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date192018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 coin of tomorrow pump will be added here 2018-08-31 19:52:25+00:00 1.0 1144292688 61 the coin to pump is game exchange cryptopiaconz target +500 market gamebtc 2018-08-31 17:00:01+00:00 1.0 1144292688 60 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-31 16:55:00+00:00 1.0 1144292688 58 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-31 16:40:02+00:00 1.0 1144292688 57 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-31 16:30:02+00:00 1.0 1144292688 56 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-08-31 16:00:02+00:00 1.0 1144292688 55 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-08-31 15:00:03+00:00 1.0 1144292688 54 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-08-31 13:00:01+00:00 1.0 1144292688 53 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 31082018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-08-31 09:09:15+00:00 1.0 1144292688 52 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date3182018 day friday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 coin of todays pump will be added here 2018-08-31 06:06:42+00:00 1.0 1144292688 46 the coin to pump is bcpt exchange cryptopiaconz target +500 market bcptbtc 2018-08-30 17:00:01+00:00 1.0 1144292688 45 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-30 16:55:04+00:00 1.0 1144292688 43 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-30 16:40:00+00:00 1.0 1144292688 42 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-30 16:30:02+00:00 1.0 1144292688 41 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-08-30 16:00:02+00:00 1.0 1144292688 40 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-08-30 15:00:04+00:00 1.0 1144292688 39 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-08-30 13:08:54+00:00 1.0 1144292688 38 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-08-30 08:33:34+00:00 1.0 1144292688 30 the coin to pump is rep exchange cryptopiaconz target +500 market repbtc 2018-08-29 17:00:06+00:00 1.0 1144292688 29 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-29 16:55:03+00:00 1.0 1144292688 27 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-29 16:40:03+00:00 1.0 1144292688 26 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-29 16:30:01+00:00 1.0 1144292688 25 ℹ️ 1 hour 30 mins until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-08-29 15:30:04+00:00 1.0 1144292688 24 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-08-29 14:00:01+00:00 1.0 1144292688 23 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-08-29 11:02:30+00:00 1.0 1144292688 22 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 29082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-08-29 08:58:50+00:00 1.0 1144292688 21 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2982018 day wedensday time 5 pm gmt our succfull pumps bnc 450 dalc 350 coin of todays pump will be added here 2018-08-29 06:24:01+00:00 1.0 1144292688 13 the coin to pump is bnc exchange cryptopiaconz target +500 market bncbtc 2018-08-28 17:00:03+00:00 1.0 1144292688 12 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-28 16:55:01+00:00 1.0 1144292688 10 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-28 16:40:02+00:00 1.0 1144292688 9 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-28 16:30:01+00:00 1.0 1144292688 8 ℹ️ 1 hour 30 mins until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join also whales group 2018-08-28 15:30:05+00:00 1.0 1144292688 7 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join also whales group 2018-08-28 14:00:01+00:00 1.0 1144292688 6 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ join also here 2018-08-28 09:22:27+00:00 1.0 1144292688 4 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2882018 day tuesday time 5 pm gmt 2018-08-28 06:20:36+00:00 1.0 1129771868 12295 hello dear members we have a hot coin that can pump 200 within next 1015 days with no matter hot coin we are going to post this coin in goldpremiumclub now join now with 50 discount message to johnsimon to join gold premium club 2021-09-19 10:36:32+00:00 1.0 1129771868 12183 3 new coin posted just now in goldpremiumclub that will pump 3050+ within 24 hours results will be share here soon 2021-08-29 07:42:33+00:00 1.0 1129771868 12181 from now 29082021 no coin will be post in public channel except 1 signal day or in 2 day ✅all 45 best coin will be post in goldpremiumclub daily that will pump 50200 and some 5x10x only results will be share here to get maximum signals join gold club to join goldpremiumclub message now johnsimon 2021-08-29 07:39:51+00:00 1.0 1129771868 12179 my target at least 200 300 10x whales going to pump it massively audio gem coin 2021-08-29 06:34:15+00:00 1.0 1129771868 12133 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-23 08:03:51+00:00 1.0 1129771868 12116 just 1 hour 43 minutes left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold premium club message to johnsimon to join gold premium club 2021-08-22 15:17:28+00:00 1.0 1129771868 12114 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time our target is 100 our target is 100 our target is 100 pump schedule time 22 august today ⏰ at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-08-22 15:16:41+00:00 1.0 1129771868 12097 who need 100 profit in 1 hour message johnsimon now 2 minutes time if u have 10k100k 2021-08-11 13:25:18+00:00 1.0 1129771868 12066 axs smashed up heavily massive uptrend hit 6150 given 3rd time at 52 3 hour ago 200 profit with 10x in 3 hours join now gold premium club 360 message us johnsimon binance mega pump 360™ 2021-08-10 18:42:02+00:00 1.0 1129771868 12057 pump result possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 300 with great volume once again which means all members had a chance to make up to 300 profit within the first 2 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement 2021-08-08 17:55:59+00:00 1.0 1129771868 12054 just 9 minutes left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold premium club message to johnsimon to join gold premium club 2021-08-08 16:51:10+00:00 1.0 1129771868 12053 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time our target is 100 our target is 100 our target is 100 pump schedule time 08 august today ⏰ at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-08-08 16:50:24+00:00 1.0 1129771868 12050 hello guys as market turn into bullish again last time lot of coins pump 5x20x this time will be same lot of coins will pump 5x10x and btc want to go 100k in december 2021 15 hot coins we are going to share 15 hot coins in goldpremiumclub that will pump 3x5x in next 1520 days maximum only within 1520 days 15 hot coin will be posted in gold premium club at 10 am gmt today we offering 50 discount on gold premium club membership for next 24 hours only join now just message us johnsimon grab membership and increase your portfolio 5x10x in next 15 days with guarantee mega pump team 2021-08-08 06:47:51+00:00 1.0 1129771868 12049 who want 50 pump coin free within next 6 hours message us johnsimon 2021-08-07 11:09:46+00:00 1.0 1129771868 12033 axs smashed up heavily massive uptrend hit 53 given at 1440 2900 profit with 10x join now gold premium club 360 message us johnsimon binance mega pump 360™ 2021-07-31 03:54:14+00:00 1.0 1129771868 11981 10 minutes left 80 offer you will never get again 2021-05-16 07:51:57+00:00 1.0 1129771868 11932 just 11 minutes left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold premium club message to johnsimon to join gold premium club 2021-04-30 15:49:34+00:00 1.0 1129771868 11930 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time our target is 100 our target is 100 our target is 100 pump schedule time 30 april today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-04-30 15:48:57+00:00 1.0 1129771868 11856 who holding bnb with verified binance account they have chance 5x50x portfolio today 39 minutes left for purchase token just message us johnsimon 2021-04-07 03:22:00+00:00 1.0 1129771868 11654 30 minutes left only 3 position left you will get ftm 400 profit call in 20 hour 2021-03-01 08:58:20+00:00 1.0 1129771868 11563 lit going to list on future after 10 minutes we can go 10x with 1000 at 115012 around target 131350 10 minutes left get ready just buy fast 2021-02-18 06:52:23+00:00 1.0 1129771868 11451 pump results 30 coin name fio ✅30 ✳start price 000000272 price went 000000355 start price for gold vips 000000265 good 33 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-02-04 17:09:22+00:00 1.0 1129771868 11446 just 13 minutes left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold premium club message to johnsimon to join gold premium club 2021-02-04 16:47:00+00:00 1.0 1129771868 11445 just 1 hour and 48 minutes left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold premium club message to johnsimon to join gold premium club 2021-02-04 15:12:02+00:00 1.0 1129771868 11443 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time our target is 100 our target is 100 our target is 100 pump schedule time 04 february today ⏰ at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-02-04 15:11:14+00:00 1.0 1129771868 11404 1st target achieved ✅ srm hit 223 it was given at 2 ✅ 65 profit with 5x in 15 hour join us in vip channel to get pump coin early message to johnsimon 2021-01-27 02:27:13+00:00 1.0 1129771868 11351 pump results 42 coin name appc ✅42 ✳start price 000000083 price went 000000118 start price for gold vips 000000080 good 45 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-01-13 21:08:58+00:00 1.0 1129771868 11344 just last 30 minutes left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-13 20:30:35+00:00 1.0 1129771868 11342 just last 60 minutes left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-13 20:00:57+00:00 1.0 1129771868 11341 hello guys once again we have cancelled our pump because of coin we picked got leak and pumped if we post that coin you may loss so for to protect our user asset we made this decision dont worry guys we will do our next pump soon with good strategy sorry for any inconveniences 360 pump team 2021-01-13 17:05:19+00:00 1.0 1129771868 11339 just 4 hour left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join gold premium club 2021-01-13 16:45:55+00:00 1.0 1129771868 11336 just 6 hour left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-13 14:47:38+00:00 1.0 1129771868 11332 just 7 hour left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-13 14:11:30+00:00 1.0 1129771868 11331 just 8 hour left for 100 mega pump100 our target is 100 our target is 100 our target is 100 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-13 13:07:47+00:00 1.0 1129771868 11330 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time our target is 100 our target is 100 our target is 100 pump schedule time 14 january today ⏰ at 0900 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-01-13 10:02:39+00:00 1.0 1129771868 11324 all guys attention please as you know decemberjanuary usually bullish and good for alts spiking everyone coin spiking 100500 in a day you have a best chance to do your portfolio 20x50x in next 30 days i would like to recommend to join gold premium club the benefit of joining is you will get pump coin name early 2030 minutes before that coin jump to 100500 our last 5 pump look on that in last 10 days ✅ 50 mda 3 january ✅ 110 qlc 6 january ✅ 65 ctxc 7 january ✅ 133 bcpt 9 january ✅ 250 evx 9 january every coin jump 100+ except mda mda also good not bad its 65 you can start even little like 5001k if you have 500 1k 2k 5k 10k 50k or 510 btc if pump go minimum 100 your 2000 will turn 4000 and if u have more like 50000 into turn into 100000 pump is a way to turn your portfolio into 2x5x in a some minutes not like signal that went 520 just after waiting long time dont disappoint from previous loss you can recover in a day plus huge profit as you know crypto mean rich in a single night think about something best you can do in your life and become pro by joining best gold premium team message to johnsimon to join gold premium club 360 pump team 2021-01-12 13:50:24+00:00 1.0 1129771868 11315 pump results 33 coin name ong ✅33 price went 000000632 ✳start price 000000850 start price for gold vips 000000620 good 33 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-01-11 17:00:22+00:00 1.0 1129771868 11311 just last 13 minutes left for 300 mega pump300 login your binance account our target is 300 our target is 300 our target is 300 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-11 15:47:22+00:00 1.0 1129771868 11305 just last 34 minutes left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-11 15:26:18+00:00 1.0 1129771868 11304 just 2 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-11 14:00:04+00:00 1.0 1129771868 11299 just 8 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-11 08:02:52+00:00 1.0 1129771868 11298 10 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-11 05:41:33+00:00 1.0 1129771868 11296 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time our target is 500 our target is 500 our target is 500 pump schedule time 11 january today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-01-11 05:31:25+00:00 1.0 1129771868 11279 pump results 250 coin name evx ✅250 price went 000001300 ✳start price 000004463 start price for gold vips 000001280 good 250 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-01-09 21:11:14+00:00 1.0 1129771868 11273 next post will be coin name 2021-01-09 20:55:24+00:00 1.0 1129771868 11272 just last 10 minutes left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 20:50:10+00:00 1.0 1129771868 11271 just last 20 minutes left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 20:40:14+00:00 1.0 1129771868 11270 just 60 minutes left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 20:00:41+00:00 1.0 1129771868 11269 guys you can miss lifetime chance to miss this one because its going to 500+ 5x your money you never did in your all trading time imagine if u have 20000 u join vip buy coin before pump and pump go 500+ and you will be 120000 in 15 minutes amazing ☝☝ you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 19:36:14+00:00 1.0 1129771868 11268 2 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 19:01:03+00:00 1.0 1129771868 11266 3 hour and 30 minutes left for 500 mega pump500 our target is 500 our target is 500 our target ise 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 17:30:04+00:00 1.0 1129771868 11265 5 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 15:41:28+00:00 1.0 1129771868 11263 8 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 13:24:43+00:00 1.0 1129771868 11260 pump results 133 coin name bcpt ✅133 price went 000000133 ✳start price 000000079 start price for gold vips 00000057 good 133 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-01-09 13:11:38+00:00 1.0 1129771868 11254 4 minutes left for 300 mega pump you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 12:56:18+00:00 1.0 1129771868 11250 18 hour left for 500 mega pump500 2 pumps today 1st 1 pm gmt 2nd 9 pm gmt 1st pump target our target is 500 our target is 500 our target is 500 9 hour left for 300 mega pump300 2nd pump target our target is 300 our target is 300 our target is 300 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-09 04:33:26+00:00 1.0 1129771868 11244 25 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-08 20:00:27+00:00 1.0 1129771868 11242 27 hour left for 500 mega pump500 our target is 500 our target is 500 our target is 500 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-08 18:15:01+00:00 1.0 1129771868 11240 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time our target is 500 our target is 500 our target is 500 pump schedule time 09 january ⏰ at 0900 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-01-08 18:12:43+00:00 1.0 1129771868 11227 pump results 65 coin name ctxc ✅65 price went 000000265 ✳start price 000000435 start price for gold vips 000000255 good 65 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-01-07 17:04:23+00:00 1.0 1129771868 11224 just 25 minutes left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-07 15:35:05+00:00 1.0 1129771868 11223 just 50 minutes left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-07 15:10:20+00:00 1.0 1129771868 11221 less than 3 hour left ‼️ binance is warming up market is on fire today yesterday qlc 110 in 1 minute target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-07 13:07:53+00:00 1.0 1129771868 11218 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2021-01-06 16:58:06+00:00 1.0 1129771868 11217 we have decided to postpone our pump to protect all our members and make sure our push goes according to plan the new date will be as following pump announcement ◽️date friday 08 january ◽️time 1600 pm gmt ◽️exchange binancecom 2021-01-06 16:56:44+00:00 1.0 1129771868 11214 just 48 minutes left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-06 16:12:21+00:00 1.0 1129771868 11212 pump results 110 coin name qlc ✅110 price went 000000089 ✳start price 000000043 start price for gold vips 000000041 good 110 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-01-06 16:11:22+00:00 1.0 1129771868 11205 login binance next post will be coin name expected gain 100 2021-01-06 15:57:05+00:00 1.0 1129771868 11203 we will do 2 pumps 1st pump at 4 gmt pm 2nd pump at 5 gmt on 6 minutes left for 1st pump 66 minutes left for 2nd pumps 2021-01-06 15:53:59+00:00 1.0 1129771868 11201 less than 5 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-06 12:25:41+00:00 1.0 1129771868 11200 less than 8 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-06 09:32:32+00:00 1.0 1129771868 11198 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 06 january today ⏰ at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-01-06 09:32:00+00:00 1.0 1129771868 11156 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2021-01-03 17:13:22+00:00 1.0 1129771868 11155 pump results 50 coin name mda ✅50 price went 000002652 ✳start price 000002100 in premium start price for gold vips 000001800 good 50 profit for vips they got much early coin name best of luck all guys binancemegapump360 2021-01-03 17:12:47+00:00 1.0 1129771868 11150 10 minutes left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join gold vip channel 2021-01-03 16:51:04+00:00 1.0 1129771868 11149 25 minutes left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join gold vip channel 2021-01-03 16:35:39+00:00 1.0 1129771868 11148 35 minutes left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join gold vip channel 2021-01-03 16:25:32+00:00 1.0 1129771868 11147 1 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join gold vip channel 2021-01-03 16:00:22+00:00 1.0 1129771868 11146 less than 2 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-03 15:13:39+00:00 1.0 1129771868 11145 guys are you excited for today new year 50100 pump our gold premium members will get coin name 30 minutes early 2021-01-03 14:07:21+00:00 1.0 1129771868 11144 3 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join gold vip channel 2021-01-03 14:02:10+00:00 1.0 1129771868 11143 less than 4 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-03 13:25:58+00:00 1.0 1129771868 11142 less than 5 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2021-01-03 12:43:46+00:00 1.0 1129771868 11140 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 03 january today ⏰ at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2021-01-03 12:42:37+00:00 1.0 1129771868 11129 double money magic signal reef buy at 8090 satoshi targets 170180 join us in vip channel to get pump coin early message to johnsimon binancemegapump360 2020-12-29 06:49:01+00:00 1.0 1129771868 11121 in 3 minutes we are going to announce big coin that will pump huge 2020-12-23 17:57:00+00:00 1.0 1129771868 11114 binance 360° magic signal bnt ✅ buy bnt at 123 at current price targets 137149161173 buy now in spot buy in future after 1 hour with 10x leverage join us in vip channel to get pump coin early message to johnsimon binancemegapump360 2020-12-22 06:06:40+00:00 1.0 1129771868 11104 hello guys join premium channel to get 20 best coin list for binance exchange that all will pump 150300 in next 2030 days join before alt season start you can miss most cheapest price of thats coins we have 50 discount on premium membership for today so dont miss to get involve in premium club message to johnsimon 2020-12-17 07:55:37+00:00 1.0 1129771868 11096 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-12-07 16:25:29+00:00 1.0 1129771868 11031 who have btc on kucoin exchange he can get pump coin free from me today at 3 pm gmt message me johnsimon 2020-11-16 09:50:04+00:00 1.0 1129771868 11007 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-11-09 16:29:19+00:00 1.0 1129771868 11005 pump results 50 coin name brd ✅50 price went 000000749 ✳start price 000000500 start price for vips 000000584 good 50 profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-11-09 16:24:59+00:00 1.0 1129771868 11001 last 3 minutes left ‼️ binance is warming up market is on fire today target 150200 login your binance account be ready below will be the coin name you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-09 15:57:08+00:00 1.0 1129771868 11000 last 22 minutes left ‼️ binance is warming up market is on fire today target 150200 login your binance account be ready below will be the coin name you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-09 15:38:23+00:00 1.0 1129771868 10999 do u guys think 300 is coming today to our mountain alt signal if not then time to think so bcoz its gonna be huge binance top gainer 1 hr remaining today | 4 pm gmt 2020-11-09 15:02:17+00:00 1.0 1129771868 10998 2 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-09 14:01:49+00:00 1.0 1129771868 10996 seems like time is going away faster today isnt it bcoz of 300 big gainer mountain alt signal is arriving in less than 6 hrs today | 4 pm gmt 2020-11-09 10:49:34+00:00 1.0 1129771868 10995 less than 6 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-09 10:38:48+00:00 1.0 1129771868 10993 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 09 november today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-11-09 10:38:20+00:00 1.0 1129771868 10976 pump results 27 coin name appc ✅27 price went 000000300 ✳start price 000000245 start price for vips 000000240 good 27 profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-11-05 05:13:24+00:00 1.0 1129771868 10972 our whales are ready are you ready 15 minutes left be ready to buy when we announce the coin that will get pumped 2020-11-04 16:49:02+00:00 1.0 1129771868 10970 last 38 minutes left ‼️ binance is warming up market is on fire today target 150200 login your binance account be ready below will be the coin name you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-04 16:22:16+00:00 1.0 1129771868 10967 less than 2 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-04 15:03:59+00:00 1.0 1129771868 10966 less than 4 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-04 13:38:43+00:00 1.0 1129771868 10965 less than 7 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-04 10:13:50+00:00 1.0 1129771868 10964 less than 9 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-04 08:41:36+00:00 1.0 1129771868 10962 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 04 november today ⏰ at 0500 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-11-04 08:41:11+00:00 1.0 1129771868 10958 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-11-02 16:10:23+00:00 1.0 1129771868 10956 pump results 60 coin name ardr ✅60 price went 000000603 ✳start price 000000377 start price for vips 0000000350 good 60 profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-11-02 16:08:34+00:00 1.0 1129771868 10946 last 10 minutes left ‼️ binance is warming up market is on fire today target 150200 login your binance account be ready below will be the coin name you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-02 15:50:23+00:00 1.0 1129771868 10944 last 15 minutes left ‼️ binance is warming up market is on fire today target 150200 login your binance account be ready below will be the coin name you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-02 15:44:46+00:00 1.0 1129771868 10943 4 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-02 12:00:48+00:00 1.0 1129771868 10942 less than 7 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-11-02 09:45:29+00:00 1.0 1129771868 10940 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 02 november today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-11-02 09:26:40+00:00 1.0 1129771868 10932 pump results 93 coin name dusk ✅93 price went 000000585 ✳start price 000000303 start price for vips 0000000296 good 93 profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-10-31 05:49:53+00:00 1.0 1129771868 10931 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-10-30 16:09:09+00:00 1.0 1129771868 10925 last 5 minutes left ‼️ binance is warming up market is on fire today target 150200 login your binance account be ready below will be the coin name you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-10-30 15:55:44+00:00 1.0 1129771868 10924 less than 2 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-10-30 14:23:44+00:00 1.0 1129771868 10923 less than 6 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-10-30 10:47:24+00:00 1.0 1129771868 10922 less than 8 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-10-30 08:14:23+00:00 1.0 1129771868 10921 less than 9 hour left ‼️ binance is warming up market is on fire today target 150200 you can get pump coin name 30 minutes early by joining gold vip channel message to johnsimon to join vip channel 2020-10-30 07:38:12+00:00 1.0 1129771868 10918 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 30 october today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-10-30 07:35:06+00:00 1.0 1129771868 10917 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-10-29 04:29:46+00:00 1.0 1129771868 10886 pump results coin name oax ✅43 price went 000000829 ✳start price 000000587 start price for vips 0000000583 good 43 profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-10-18 18:11:26+00:00 1.0 1129771868 10877 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-10-18 17:59:20+00:00 1.0 1129771868 10876 10 minutes left… bigpushcall login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy your initial buy quickly rebuy the dips hold for maximum profit huge fomo warming up everyone target 100+ 2020-10-18 17:50:42+00:00 1.0 1129771868 10875 last 60 minutes left until the binance pump what is up guys are you excited todaybut wait what for the excitement is bcoz bigpushcallbang is coming ‼️ this will have a slow and steady growth we are gonna kill those trading bots can we see 200 + gain today we are gonna see read the push plan in the pinned post only 60 minutes left until bigpushcallbang | 18 pm gmt message to johnsimon to join vip channel 2020-10-18 17:02:53+00:00 1.0 1129771868 10874 those who wants to make some profits are excited be ready at your computer and focused follow up posts will come after the coin is announced to help everyone during the push promo material and charting info will be supplied as well our coin has been chosen and is fundamentally very strong and ready for a breakout ✌️ only 60 minutes are left for todays 2x bigpushcall 2020-10-18 17:01:49+00:00 1.0 1129771868 10873 3 hours left until the binance pump what is up guys are you excited todaybut wait what for the excitement is bcoz bigpushcallbang is coming ‼️ this will have a slow and steady growth we are gonna kill those trading bots can we see 200 + gain today we are gonna see read the push plan in the pinned post less than 3h left until bigpushcallbang | 18 pm gmt 2020-10-18 15:18:50+00:00 1.0 1129771868 10870 less than 5 hours left until the binance pump many of you guys missed recent the +427 sys push and the +50 gvt push this week but todays push will be a better opportunity and you all will be able to make massive profits in short term well share a low cap fomo unicorn waiting for a kick to moon read the pinned post for the push plan ‼️ less than 6h left until bigpushcallbang‼️ message to johnsimon to join vip channel 2020-10-18 13:26:24+00:00 1.0 1129771868 10865 10 hours left until the binance pump hey do you remember what day is it its bigpushcallbang day‼️ hope you guy are ready for this less than 10 hours left until this coordinated push read the push instruction in the pinned post today | 06 pm gmt stat tuned✌️ 2020-10-18 09:05:58+00:00 1.0 1129771868 10864 pump results coin name rdn ✅50 price went 000002483 ✳start price 000001660 start price for vips 0000001600 good 50profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-10-18 07:06:00+00:00 1.0 1129771868 10856 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-10-17 04:02:37+00:00 1.0 1129771868 10853 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 17 october today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-10-17 04:00:46+00:00 1.0 1129771868 10848 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-10-09 16:18:04+00:00 1.0 1129771868 10840 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-09-19 14:20:28+00:00 1.0 1129771868 10836 bel pump call given 19 hour early in vip channel these screen shots are proof join vip channel to get massive pump coin early 2020-09-19 14:19:37+00:00 1.0 1129771868 10832 hello guys attention who want free 40 pump coin in next 1 hour message us johnsimon 2020-09-18 19:10:38+00:00 1.0 1129771868 10829 hello guys attention who want free 40 pump coin in next 1 hour message us johnsimon 2020-09-18 03:15:00+00:00 1.0 1129771868 10677 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-09-09 03:31:24+00:00 1.0 1129771868 10676 pump results ✅40 price went 000000262 ✳start price 000000186 start price for vips 000000186 good 40profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-09-09 03:31:02+00:00 1.0 1129771868 10669 1 hour 52 minutes left ‼️ binance is warming up market is on fire today target 150200 2020-09-08 14:08:36+00:00 1.0 1129771868 10667 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 08 september today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-09-08 14:08:15+00:00 1.0 1129771868 10666 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-09-07 04:43:28+00:00 1.0 1129771868 10665 this is proof that we have post pump coin name 10 minutes early 2020-09-06 16:25:13+00:00 1.0 1129771868 10664 qlc poa coin is our pump coin guys buy it now fast and keep online to sell high it will post around after 30 minutes into public channel good luck ❤ 2020-09-06 16:21:59+00:00 1.0 1129771868 10662 pump results ✅30 price went 000000242 ✳start price 000000186 1 minute early start price for vips 000000150 good 65profit for vips they got much early coin name best of luck all guys binancemegapump360 2020-09-06 16:11:52+00:00 1.0 1129771868 10655 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-09-06 15:58:36+00:00 1.0 1129771868 10653 1 hour 50 minutes left ‼️ binance is warming up market is on fire today target 150200 2020-09-06 14:10:41+00:00 1.0 1129771868 10651 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 06 september today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-09-06 14:09:49+00:00 1.0 1129771868 10631 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-08-24 07:24:53+00:00 1.0 1129771868 10622 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-08-16 17:57:54+00:00 1.0 1129771868 10621 10 minutes left ‼️ binance is warming up market is on fire today target 150200 2020-08-16 17:50:05+00:00 1.0 1129771868 10620 guys important note 90 of people got losses everytime 10 are experienced they made 10x20x in last 1 month our lot of vips made their 10000 in 100000 or 200000 huge huge profit in crypto in small time frame lot of vips got 20x on sand ico or in new coins so dont waste your time guys what if u get coin name 30 minutes early before that coin pump heavily as 50500 your investment will be double in today pump if u have 1 btc as 12000 and pump go 100 your 12000 will turn in 24000 in 12 minutes pump time its mean crypto mean rich in a night join vip membership message to johnsimon 2020-08-16 14:24:09+00:00 1.0 1129771868 10619 03 hours 43 minutes left ‼️ binance is warming up market is on fire today target 150200 2020-08-16 14:16:58+00:00 1.0 1129771868 10617 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-08-15 04:22:39+00:00 1.0 1129771868 10615 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 16 august tomorrow ⏰ at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-08-15 04:22:22+00:00 1.0 1129771868 10614 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-08-06 05:03:15+00:00 1.0 1129771868 10613 hello guys get ready for next pump join vip channel to get pump coin name 30 minutes early message to johnsimon 2020-08-06 05:02:56+00:00 1.0 1129771868 10612 today binance pump analysis coin ppt low 2554 high 3995 exchange binance profit 5642 profit 2020-08-04 18:17:17+00:00 1.0 1129771868 10608 30 minutes left tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2020-08-04 17:31:23+00:00 1.0 1129771868 10604 1 hours 25 minutes left ‼️ binance is warming up market is on fire today target 150200 2020-08-04 16:35:21+00:00 1.0 1129771868 10601 2 hours 17 minutes left ‼️ binance is warming up market is on fire today target 150200 2020-08-04 15:43:18+00:00 1.0 1129771868 10597 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 04 august tomorrow ⏰ at 0600 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-08-03 10:52:23+00:00 1.0 1129771868 10594 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-07-21 16:16:38+00:00 1.0 1129771868 10593 pump results ✅30 price went 00003100 ✳start price 2526 1 minute early start price for vips 2200 good profit for vips they got 38 minutes early coin name best of luck all guys binancemegapump360 2020-07-21 16:16:27+00:00 1.0 1129771868 10587 pump coin name is nxs 2020-07-21 16:00:42+00:00 1.0 1129771868 10586 next post will be coin name 2020-07-21 15:56:05+00:00 1.0 1129771868 10582 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-07-21 11:57:22+00:00 1.0 1129771868 10579 quick alert new 2 binance pump announcement ⏳date july 21tomorrow ⏰time 4 pm gmt 24h left exchange binance +20 whale channels target 4080 profit and ⏳date wednesday july 22 ⏰time 4 pm gmt exchange binance +20 whale channels target 3060 profit a new global fomo call scheduled for tommorow at 4pm gmt as the alt market is on fire more than ready for a new fomo call this trendy call will be big we expect 2x+ spikes in short term this will be a different massive trendy call with a lot of volume fomo be ready this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 30 minutes early premium member contact johnsimon 2020-07-21 11:52:05+00:00 1.0 1129771868 10576 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-07-07 11:35:54+00:00 1.0 1129771868 10569 pump results ✅20 price went 00001526 good profit for vips they got 30 minutes early coin name best of luck all guys binancemegapump360 2020-07-04 16:16:53+00:00 1.0 1129771868 10568 pump coin name is gvt 2020-07-04 16:00:28+00:00 1.0 1129771868 10567 stay online | and keep an eye over here only 10 minutes left the next post will be galaxy beast alt name today 4 pm gmt 2020-07-04 15:50:30+00:00 1.0 1129771868 10565 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-07-04 10:28:04+00:00 1.0 1129771868 10562 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 04 july today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-07-04 10:25:12+00:00 1.0 1129771868 10561 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-07-01 14:22:15+00:00 1.0 1129771868 10556 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-06-16 08:35:05+00:00 1.0 1129771868 10555 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-06-04 08:03:15+00:00 1.0 1129771868 10553 pump results ✅225 price went 3599 good profit for vips they got 30 minutes early coin name best of luck all guys binancemegapump360 2020-06-04 08:02:54+00:00 1.0 1129771868 10546 last 5 minutes left ‼️ binance is warming up market is on fire today target 150200 2020-06-03 15:55:33+00:00 1.0 1129771868 10543 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-06-02 13:40:15+00:00 1.0 1129771868 10540 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 02 june tomorrow ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 2020-06-02 13:38:36+00:00 1.0 1129771868 10538 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-05-29 12:21:02+00:00 1.0 1129771868 10533 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-05-23 08:46:18+00:00 1.0 1129771868 10526 fun very much possible to see a pump it can follow fuel pump all double digit low satoshi coin pumping fun is still at lower zone current price 2930 satoshi targeting “33 34 37 40 43 49+” stop at 7 below buy zone 2020-05-22 06:01:44+00:00 1.0 1129771868 10525 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-05-21 12:22:02+00:00 1.0 1129771868 10515 you can buy nav around 1100 satoshi avalible on the strong support on weekly time frame also this coin shows big moves often likely that it will get a pump on few days from here targets 1198124513501547+ stoploss 1016 satoshi 2020-05-17 14:18:30+00:00 1.0 1129771868 10513 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-05-15 01:51:54+00:00 1.0 1129771868 10472 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-04-30 09:03:12+00:00 1.0 1129771868 10441 vip membership offer ✅benifits ❤vip channel premium channel private zone admins group info personal connect portfolio manager group discussion ⏰ this offer for next 60 minutes golden chance to join you will get pump coin name 30 minutes early in vip channel before public channel message to johnsimon to join vip channel 2020-04-28 04:52:29+00:00 1.0 1129771868 10409 pump results ✅27 price went 14000 good profit for vips they got 30 minutes early coin name best of luck all guys binancemegapump360 sagga 2020-04-15 16:05:40+00:00 1.0 1129771868 10395 pump announcement hello guys we have scheduled our next mega pump get ready yourself prepare your btc in binance and make sure you ready before pump to get huge profit in à minute time pump schedule time 14th april today ⏰ at 0400 pm gmt participants 300k+ 10+ whale channels exchange binance best luck binancemegapump360 sagga 2020-04-14 03:36:37+00:00 1.0 1129771868 10394 pump results ✅19 price went 157188 good profit for vips they got 30 minutes early coin name best of luck all guys binancemegapump360 2020-04-13 12:07:09+00:00 1.0 1129771868 10391 5 minutes left next post is the coin for todays event 2020-04-13 11:54:37+00:00 1.0 1129771868 10386 our experts chose bottom based strong tafa coin we will pump it to the moon global fomo warming up 2020-04-13 11:43:16+00:00 1.0 1129771868 10384 alright guys btc dumping and alts are stable raising we will have a cyber monday pump event today ‼️‼️ time 1200 pm binance exchange freeforall pump event ❗️ we have some good picks for you bottomed coins with beautiful potential all you have to do is buy and hold for whoooping 3070 profit binancemegapump360 sagga 2020-04-13 08:09:42+00:00 1.0 1129771868 10110 ✈️✈️✈️ast✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-03-02 13:19:08+00:00 1.0 1129771868 10060 today pump at 2 pm gmt 2019-03-02 13:17:03+00:00 1.0 1129771868 9922 ✈️✈️✈️mtl✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-02-23 16:07:22+00:00 1.0 1129771868 9827 ✈️✈️✈️cmt✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-02-16 17:26:16+00:00 1.0 1129771868 9738 pump announcement the next pump will be sechedule 16 february saturday ⏰ at 0600pm gmt time exchange binance participants 100k+ target50+ ☑️secret pump team 2019-02-15 08:58:46+00:00 1.0 1129771868 9732 guys this is pump coin buy it 2019-02-10 17:18:34+00:00 1.0 1129771868 9688 ✈️✈️✈️gxs✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-02-10 17:18:19+00:00 1.0 1129771868 9577 pump announcement the next pump will be rechedule 10 february sunday ⏰ at 0600pm gmt time exchange binance participants 100k+ target50+ ☑️secret pump team 2019-02-09 17:12:01+00:00 1.0 1129771868 9299 ✈️✈️✈️wings✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-01-27 17:00:19+00:00 1.0 1129771868 9247 24 minutes left to removing free members 34 minutes left to pump coin leak here 94 minutes left to mega binance pump 2019-01-27 16:26:57+00:00 1.0 1129771868 9243 pump announcement the next pump will be scheduled 27 january sunday ⏰ at 0600pm gmt time exchange binance participants 100k+ target50+ ☑️secret pump team 2019-01-27 03:17:31+00:00 1.0 1129771868 9234 ✈️✈️✈️hc✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-01-25 17:13:54+00:00 1.0 1129771868 9083 pump announcement the next pump will be scheduled 25 january friday ⏰ at 0600pm gmt time exchange binance participants 100k+ target50+ ☑️secret pump team 2019-01-25 03:20:09+00:00 1.0 1129771868 8556 guys this is our today mega pump coin buy it fast 2019-01-06 20:10:08+00:00 1.0 1129771868 8532 ✈️✈️✈️bnt✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2019-01-06 20:09:43+00:00 1.0 1129771868 8396 pump announcement the next pump will be scheduled 6 january sunday tomorrow ⏰ at 0900pm gmt time exchange binance participants 80k+ target40 ☑️secret pump team 2019-01-05 18:19:16+00:00 1.0 1129771868 8312 ✈️✈️✈️hc✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-12-27 16:00:32+00:00 1.0 1129771868 8214 82 minutes left to coin leak here 142 minutes left to pump 52 minutes to removing free members 2018-12-27 14:38:47+00:00 1.0 1129771868 8212 pump announcement the next pump will be scheduled 27 december thurseday ⏰ at 0500 pm gmt time exchange binance ☑️secret pump team 2018-12-26 06:58:51+00:00 1.0 1129771868 8127 ✈️✈️✈️nebl✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-12-23 16:00:52+00:00 1.0 1129771868 8041 6 minutes left to coin leak here 66 minutes left to pump 5 minutes to removing free members 2018-12-23 15:54:22+00:00 1.0 1129771868 8029 pump announcement the next pump will be scheduled 23 december sunday ⏰ at 0500 pm gmt time exchange binance ☑️secret pump team 2018-12-19 18:30:17+00:00 1.0 1129771868 7867 ✈️✈️✈️wabi✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-12-16 16:13:48+00:00 1.0 1129771868 7808 ready for pump coin name 2018-12-16 16:11:37+00:00 1.0 1129771868 7794 get ready for big pump you will get coin name 1 hour ago before posted in public it will go huge like our all previous pumps 2018-12-12 15:06:43+00:00 1.0 1129771868 7790 pump announcement the next pump will be scheduled for sunday december 16 at 1700 pm gmt time on binance using btc pairing we are expecting to have at least 2x the volume for our next pump big pump team 2018-12-12 15:02:58+00:00 1.0 1129771868 7625 ✈️✈️✈️storj✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-12-08 18:12:53+00:00 1.0 1129771868 7605 pump announcement dear members the market has adjusting itself now after downness people wants a breakout pump for some profit after loss so we decided to schedule a new pump to help you make more profit ⏳ time and date 08th december at 0645 pm gmt utc time exchange binance target 50+ 2018-12-08 13:29:36+00:00 1.0 1129771868 7239 rdn not in top 5 coin before 1 minutes of pump after pump start see this 2018-11-27 17:26:36+00:00 1.0 1129771868 7238 see comparison in top 5 coin in screen shots before 1 minutes of pump and after pump 2018-11-27 17:25:45+00:00 1.0 1129771868 7233 46 minutes left to mega binance pump 2018-11-27 16:14:47+00:00 1.0 1129771868 7150 ✈️✈️✈️rdn✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-11-27 16:12:33+00:00 1.0 1129771868 7073 guys this is our pump coin buy now you will get surely good huge profit in beerish market 2018-11-27 16:12:31+00:00 1.0 1129771868 7056 2 and half hour left to mega pump 2018-11-27 14:29:29+00:00 1.0 1129771868 7051 pump announcement dear members the market has adjusting itself now after downness people wants a breakout pump for some profit after loss so we decided to schedule a new pump to help you make more profit ⏳ time and date 27th november at 0500 pm gmt utc time exchange binance target 50+ sagga 2018-11-24 17:38:18+00:00 1.0 1129771868 7009 price hit 6310 amazing pump 2018-11-13 17:07:02+00:00 1.0 1129771868 6977 ✈️✈️✈️brd✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-11-13 16:03:59+00:00 1.0 1129771868 6841 142 minutes left to pump 82 minutes left to coin leak here 65 minutes left to removing free members 2018-11-13 14:38:44+00:00 1.0 1129771868 6838 less than 3 hour left to pump get ready to double your money 2018-11-13 14:35:38+00:00 1.0 1129771868 6837 less than 14 hour left to mega binance pump 2018-11-13 03:23:57+00:00 1.0 1129771868 6835 pump announcement dear members the market has stabilized in recent days altcoin has adjusted and everything is almost at the bottom this is a good time for us to do a pump so we decided to schedule a new pump to help you make more profit ⏳ time and date 13th november at 0500 pm gmt utc time exchange binance 2018-11-12 03:41:02+00:00 1.0 1129771868 6524 ✈️✈️✈️wings✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-11-07 15:56:16+00:00 1.0 1129771868 6471 ⏰ almost 1 hour and 45 minutes left to mega binance pump 2018-11-07 15:15:31+00:00 1.0 1129771868 6466 ⏰3 hour and 42 minutes left to mega binance pump 2018-11-07 13:18:42+00:00 1.0 1129771868 6462 ⏰12 hour left to mega binance pump 2018-11-07 05:00:05+00:00 1.0 1129771868 6458 pump announcement dear members the market has stabilized in recent days altcoin has adjusted and everything is almost at the bottom this is a good time for us to do a pump so we decided to schedule a new pump to help you make more profit ⏳ time and date 7th november at 0300 pm gmt utc time exchange binance 2018-11-04 06:33:55+00:00 1.0 1129771868 6373 big pump signal usually go obove 30150 partners pump usually went 3100 partners pump usually held in every 23 days big pump usually held in every 13 week big pump always do mega blast like 50+ always 2018-10-27 02:55:51+00:00 1.0 1129771868 6370 we will announce big pump soon in next week as we are running campaign about pump to go huge stay updates 2018-10-27 02:47:27+00:00 1.0 1129771868 6221 ✈️✈️✈️dlt✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-10-24 18:00:08+00:00 1.0 1129771868 6195 2 hour left to pump start 53 minutes left to coin name posted here in vip 23 minutes left to removing free members 2018-10-24 17:07:54+00:00 1.0 1129771868 6187 tomorrow vip members get coin name 1 hour ago before pump on the other hands free members will be removed before 4 pm gmt right 3 hour early before pump 2018-10-23 16:25:40+00:00 1.0 1129771868 6183 pump announcement dear members the market has stabilized in recent days altcoin has adjusted and everything is almost at the bottom this is a good time for us to do a pump so we decided to schedule a new pump to help you make more profit ⏳ time and date 24th october at 0700 pm gmt utc time exchange binance 2018-10-23 12:38:34+00:00 1.0 1129771868 6152 this is our pump coin buy fast 2018-10-20 17:21:41+00:00 1.0 1129771868 6143 ✈️✈️✈️xzc✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-10-20 17:21:11+00:00 1.0 1129771868 6002 6 hour left to pump get ready to double your money 2018-10-20 14:10:11+00:00 1.0 1129771868 6001 dear members since last pump was a succes a lot of people have been requesting a new pump after a long discussion with the team we decided to do a weekend pump because this was highly requested the pump team has a question to you every pump we get a lot of kind direct messages with pictures of the profits would you like us to make a channel a halloffame channel where we post the biggest gainers from the pump and award the biggest gainer with a prize we will have to keep a close look at the market but for now next pump is scheduled for this saturday more news on the pump will follow details for the next pump exchange binance date 20102018 advantage ranked time 8pm gmt have a great day the pump team 2018-10-20 14:09:23+00:00 1.0 1129771868 5828 vip members get coin name 1 hour ago 2018-10-15 07:20:15+00:00 1.0 1129771868 5824 we think we made the perfect choice looking at the market for example looking at mda what just happened was far from natural we will be scheduling the pump now date 17102018 time 7pm gmt it is still a freeforall pump so prepare this is going to be big we hope the market situation will be better on wednessday the pump team 2018-10-15 07:18:23+00:00 1.0 1129771868 5798 guys this is our pump coin buy fast 2018-10-14 18:03:49+00:00 1.0 1129771868 5765 ✈️✈️✈️req✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-10-14 18:03:29+00:00 1.0 1129771868 5494 pump announcement dear members the market has stabilized in recent days altcoin has adjusted and everything is almost at the bottom this is a good time for us to do a pump so we decided to schedule a new pump to help you make more profit ⏳ time and date 14th october at 0700 pm gmt utc time exchange binance 2018-10-12 15:26:16+00:00 1.0 1129771868 5320 amazing pump today happy guys we posted pump coin name hour ago happy with us hope you are 2018-10-06 19:12:50+00:00 1.0 1129771868 5289 ✈️✈️✈️evx✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-10-06 18:09:35+00:00 1.0 1129771868 5142 less than 2 hour left to mega pump get ready to double your money 2018-10-06 17:06:36+00:00 1.0 1129771868 5140 get ready to double your money coin will be posted 1 hour early before pump start in next 5 days we will do also 1 or 2 more our partners pumps before our mega pump on 6th 2018-10-01 17:57:00+00:00 1.0 1129771868 5139 dear vips members details for the next pump exchange binance date 06102018 time 7pm gmt 2018-10-01 17:54:51+00:00 1.0 1129771868 5120 this our our today pump coin i am telling u advance as 1 hour ago 2018-09-29 18:02:37+00:00 1.0 1129771868 5027 ✈️✈️✈️data✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-09-29 18:00:16+00:00 1.0 1129771868 4972 less than 2 hour left to pump get ready yourself to double your money 2018-09-29 17:18:35+00:00 1.0 1129771868 4971 2 days left to pump huge mega pump 2018-09-27 14:17:44+00:00 1.0 1129771868 4969 dear members the pump is still going and we are planning the next pump already so many positive people here details for the next pump exchange binance date 29092018 time 7pm gmt advantage ranked we will analyse this pump soon and do not forget to ride the waves 2018-09-27 14:15:41+00:00 1.0 1129771868 4968 we have scheduled our own huge mega pump on 29th 2018-09-27 14:13:14+00:00 1.0 1129771868 4948 guys this is our today pump coin i am telling u in advance buy it now at current price 2018-09-27 13:19:06+00:00 1.0 1129771868 4848 ✈️✈️✈️bcc✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-09-27 13:17:13+00:00 1.0 1129771868 4798 you can get permanent vip membership for 003 btc lifetime fee coin will posted here in vip 1 hour ago before every pump 2018-09-27 13:12:16+00:00 1.0 1129771868 4783 guys this is our pump coin buy it now at current price and sell fast after pump 2018-09-27 12:40:36+00:00 1.0 1129771868 4773 ✈️✈️✈️trig✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-09-27 12:39:10+00:00 1.0 1129771868 4635 hello guys get ready for today pump just almost 3 hour left to pump 2018-09-27 09:52:16+00:00 1.0 1129771868 4633 pump announcement dear members the market has stabilized in recent days altcoin has adjusted and everything is almost at the bottom this is a good time for us to do a pump so we decided to schedule a new pump to help you make more profit ⏳ time and date tomorrow 27th september at 0200 pm gmt utc time exchange binance 2018-09-27 09:51:21+00:00 1.0 1129771868 4566 guys this is our mega pump coin buy this at current price 2018-08-24 16:05:48+00:00 1.0 1129771868 4561 ✈️✈️✈️evx✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-08-24 16:05:09+00:00 1.0 1129771868 4415 less than 3 hour left to huge mega plus+ pump dont miss get ready to double your money 2018-08-24 14:31:08+00:00 1.0 1129771868 4412 pump announcement dear members the market has stabilized in recent days altcoin has adjusted and everything is almost at the bottom this is a good time for us to do a pump so we decided to schedule a new pump to help you make more profit ⏳ time and date tomorrow 24th august at 0500 pm gmt utc time exchange binance 2018-08-24 14:28:05+00:00 1.0 1129771868 4340 ✈️✈️✈️rdn✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-08-21 15:00:31+00:00 1.0 1129771868 4090 pump announcement dear members the market is green again altcoin season is coming its the best time to do a pump today so we decided to schedule a new pump to help members make more profit ⏳ time and date today 21th august at 0400 pm gmt utc time exchange binance 2018-08-21 05:51:42+00:00 1.0 1129771868 4022 ✈️✈️✈️icn✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-08-18 16:39:03+00:00 1.0 1129771868 3926 pump announcement dear members the market is green again altcoin season is coming its the best time to do a pump today so we decided to schedule a new pump to help members make more profit ⏳ time and date today 18th august at 0500 pm gmt utc time exchange binance 2018-08-18 14:51:42+00:00 1.0 1129771868 3886 ✈️✈️✈️oax✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-08-17 15:45:06+00:00 1.0 1129771868 3768 45 minutes left to next pump 2018-08-17 15:15:18+00:00 1.0 1129771868 3752 this is our pump coin buy now at current price 2018-08-17 14:05:00+00:00 1.0 1129771868 3615 ✈️✈️✈️tnb✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-08-17 14:03:36+00:00 1.0 1129771868 3598 pump announcement dear members the market is green again altcoin season is coming its the best time to do a pump today so we decided to schedule a new pump to help members make more profit ⏳ time and date today 17th august at 0400 pm gmt utc time exchange binance 2018-08-17 03:51:40+00:00 1.0 1129771868 3597 pump announcement dear members the market is green again altcoin season is coming its the best time to do a pump today so we decided to schedule a new pump to help members make more profit ⏳ time and date today 17th august at 0300 pm gmt utc time exchange binance 200k participants big pump 2018-08-17 03:51:23+00:00 1.0 1129771868 3595 helo guys wellcome to 17th august as there is 2 pump today expecting 3060 each totle target in both pump 100 2018-08-17 03:48:47+00:00 1.0 1129771868 3532 ✈️✈️✈️ast✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-08-16 16:27:27+00:00 1.0 1129771868 3368 ✈️✈️✈️rdn✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-08-11 15:52:06+00:00 1.0 1129771868 3226 coin will be posted here 1 hour ago before pump time 2018-08-11 13:00:37+00:00 1.0 1129771868 3224 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date saturday 11 august at 0430 pm gmt utc time exchange binance were expected minimum target is 40 the cryptomarket back to big green transfer funds to binance to be ready 2018-08-11 12:59:22+00:00 1.0 1129771868 3196 its surprisingly signal for us as we expected 2040 pump but it go 192 amazing price went from 640 to 1870 2018-08-07 08:14:13+00:00 1.0 1129771868 2816 buy fast guys this is our pump coin today 2018-07-28 18:05:09+00:00 1.0 1129771868 2798 ✈️✈️✈️qlc✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-07-28 18:01:00+00:00 1.0 1129771868 2632 pump result evx start price 9000 sat weve reached 11262 sat profit 2513 we had a wonderful day with evx yesterday more than 100 btc volume joined our pump was great it kept on top 2 and top 3 of binance for a long time weve also received many positive comments from members who made between 10 and 25 in a couple of minutes pretty great during these times we are working hard day by day to make our pump greater next time we expect it will rise higher and higher 40 profit is our next target 2018-07-24 12:00:38+00:00 1.0 1129771868 2620 ✈️✈️✈️evx✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-07-23 15:05:29+00:00 1.0 1129771868 2475 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date monday 23 july at 0400 pm gmt utc time exchange binance were expected minimum target is 40 the cryptomarket back to big green transfer funds to binance to be ready 2018-07-22 16:27:15+00:00 1.0 1129771868 2464 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date sundaytoday 22 july at 0400 pm gmt utc time exchange binance were expected minimum target is 40 the cryptomarket back to big green transfer funds to binance to be ready 2018-07-22 10:19:29+00:00 1.0 1129771868 2458 about 1 hour some minutes left to pump 2018-07-21 14:47:15+00:00 1.0 1129771868 2456 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date saturdaytoday 21 july at 0400 pm gmt utc time exchange binance were expected minimum target is 40 the cryptomarket back to big green transfer funds to binance to be ready 2018-07-21 12:12:00+00:00 1.0 1129771868 2375 ✈️✈️✈️mth✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-07-20 15:51:34+00:00 1.0 1129771868 2296 yesterday pump went 18 in 2 minutes time today 3050 expected as i post coin here buy fast and put sell order of 30 2018-07-20 11:51:14+00:00 1.0 1129771868 2290 coin will be posted here exact 1 hour before pump today so that our vips got coin much early 2018-07-20 04:35:09+00:00 1.0 1129771868 2286 pump announcement btc has rally and the market is turning green volume rise up so much in near some days so we have decided to schedule a new pump ⏳ time and date friday 20 july at 0400 pm gmt utc time exchange binance were expected minimum target is 40 the cryptomarket back to big green transfer funds to binance to be ready 2018-07-20 04:31:13+00:00 1.0 1129771868 2213 ✈️✈️✈️wpr✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-07-19 15:53:41+00:00 1.0 1129771868 2120 some free users will be removed today at 2 pm gmt before pump and channel link will be revoke 2018-07-19 06:52:04+00:00 1.0 1129771868 2109 its parners pump we will anounce our pump big pump signal soon in this week our last pump was 57 in 20 second we usually post here in vip channel our partners channels pump secret coin info here 2018-07-19 02:28:10+00:00 1.0 1129771868 2108 this time we will not post much early coin here we post coin name here just 5 minutes before pump 2018-07-19 02:24:55+00:00 1.0 1129771868 2105 pump signal this pumpsignal will do even better than before date 19 july time 4pm gmt+0 participants 200k users exchange binance 2018-07-19 02:22:03+00:00 1.0 1129771868 2102 it was slow pump reached 2605 call was at 2510 6 pumped only it initial pumped 3 then again after 10 minutes 3 2018-07-18 17:11:44+00:00 1.0 1129771868 2097 ✈️✈️✈️ada✈️✈️✈️ coin is our pump coin ✅✅ buy it now under 2510 it will go huge as it announce in public after 28 minutes then sell it fast 2018-07-18 15:32:55+00:00 1.0 1129771868 2090 pump announcement ⏳ time and date today 18 july at 0400 pm gmt exchange binance target 50+ transfer funds to binance to be ready 2018-07-18 04:51:53+00:00 1.0 1129771868 2060 this is our next pump coin 2018-07-16 16:56:28+00:00 1.0 1129771868 2059 buy fast guys 5 minutes left 2018-07-16 16:56:04+00:00 1.0 1129771868 2017 ✈️✈️✈️wings✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-07-16 16:55:37+00:00 1.0 1129771868 1914 get ready for next pump 48 minutes left 2018-07-16 16:12:35+00:00 1.0 1129771868 1847 ✈️✈️✈️icn✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-07-16 15:14:07+00:00 1.0 1129771868 1747 our next pump will tomorrow at 5 pm gmt target 2050 get ready 2018-07-15 11:53:44+00:00 1.0 1129771868 661 hurrah wow amazing pump 57 in 1 minutes time we got huge profit 2018-07-04 19:04:48+00:00 1.0 1129771868 628 ✈️✈️✈️nxs✈️✈️✈️ coin is our pump coin ✅✅ buy it now it will go huge as it announce in public after 1 hour then sell it fast 2018-07-04 18:10:00+00:00 1.0 1129771868 339 ✈️✈️✈️cloak✈️✈️✈️ guys cloak coin is our pump coin ✅✅ buy it now under 6200 it will go huge as it announce in public after 1 hour then sell it fast 2018-07-03 18:16:19+00:00 1.0 1129771868 144 pump announcement exchange binance time 17gmt ♥️ date 20 april 2018 get ready for profit ride 2018-04-20 11:11:29+00:00 1.0 1129771868 140 daily pump announcement get high profit within some hours participate in new daily mega pump earn 100 to 300 get info about every unique signal on binance cryptopia all other see grs co 2018-04-20 06:51:48+00:00 1.0 1129771868 134 lets go the coin to pump is plx direct link buy buy buy hold and promote the coin on the chatbox 2018-04-19 17:00:39+00:00 1.0 1129771868 133 39 minutes left the coin that we have chosen for today can break 205 gain you would never like to miss this kind of pump please prepare your btc on cryptopia 2018-04-19 16:21:16+00:00 1.0 1129771868 130 big pump is coming next hold pump april 19 5 gmt pm exchange cryptopia pair btc please prepare your btc on cryptopia be ready to visit the moon 2018-04-19 04:20:34+00:00 1.0 1129771868 117 less than 10 hours left before mega binance pump be ready 2018-04-18 07:19:54+00:00 1.0 1129771868 112 pump announcement exchange binance time 17gmt date 18 april 2018 get ready for profit ride 2018-04-18 05:53:47+00:00 1.0 1129771868 99 coin name is grs buy and hold 2018-04-13 04:49:07+00:00 1.0 1129771868 98 as the market is looking amazing right now we have scheduled our pump the details are as follows exchange binance date 14042018 time 5pm gmt advantage the pump will be freeforall ffa for a live countdown refer to our website and register v103wlb1sr 2018-04-13 04:48:29+00:00 1.0 1270892711 1334 100 pump after news in matter of minutes 2018-06-25 14:19:28+00:00 1.0 1230368984 28143 10 minutes left for our live voice ama with umberto canessa cerchi founder ceo of kryptomon and we go live‼️ 2021-12-12 08:50:00+00:00 1.0 1230368984 28108 10 minutes left for our live voice ama with marco calamassi founder of streeth streeth and we go live‼️ 2021-12-09 19:50:03+00:00 1.0 1230368984 28057 10 minutes left for our live voice ama with hanwen chen founder of litentry lit and we go live‼️ 2021-12-05 08:50:02+00:00 1.0 1230368984 27928 10 minutes left for our live voice ama with ioana surpateanu cso at diadata and principal at dia labs dia and we go live‼️ 2021-11-24 19:50:01+00:00 1.0 1230368984 27900 10 minutes left for our live voice ama with tyler zhou head of growth partnerships at safepal sfp and we go live‼️ 2021-11-23 06:50:00+00:00 1.0 1230368984 27794 pump ast dont sell below 1500 sats 2021-11-17 10:28:46+00:00 1.0 1230368984 27773 10 minutes left for our live voice ama with joe grech head of crypto at chiliz chz and we go live‼️ 2021-11-15 19:50:02+00:00 1.0 1230368984 27723 10 minutes left for our live voice ama with benji cofounder of cyball and we go live‼️ 2021-11-10 19:50:03+00:00 1.0 1230368984 27558 10 minutes left for our live voice ama with vitaliy tyan head of marketing of usm radio caca and we go live‼️ 2021-10-24 08:50:00+00:00 1.0 1230368984 27498 10 minutes left for our live voice ama with allen lee founder of beta finance and we go live‼️ 2021-10-18 18:50:03+00:00 1.0 1230368984 27476 10 minutes left for our live voice ama with ben morris director of business development growth of nervos network and we go live‼️ 2021-10-17 06:50:03+00:00 1.0 1230368984 26926 10 minutes left for our live voice ama with michael wagner ceo and cofounder of star atlas and we go live 2021-08-31 16:50:01+00:00 1.0 1230368984 26752 10 minutes left for our live voice ama with adriaan brink ceo of funtoken fun and we go live 2021-08-09 12:50:02+00:00 1.0 1230368984 26715 10 minutes left for our live voice ama with jesse johnson founder coo of aavegotchi ghst and we go live 2021-08-05 12:50:04+00:00 1.0 1230368984 26697 10 minutes left for our live voice ama with vishnu korde founder ceo and chief architect of stackos and we go live‼️ 2021-08-04 12:50:01+00:00 1.0 1230368984 26653 10 minutes left for our live voice ama with arthur breitman cofounder early architect of tezos and we go live‼️ 2021-07-29 15:50:04+00:00 1.0 1230368984 26640 10 minutes left for our live voice ama with ginés sánchez navarro operations and strategy manager of chromia and we go live ‼️ 2021-07-28 15:50:04+00:00 1.0 1230368984 26394 4 minutes left for our live voice ama and we go live ‼️ 2021-07-04 10:55:01+00:00 1.0 1230368984 26376 10 minutes left for our live voice ama with the ceo of dock nick lambert and we go live ‼️ 2021-07-02 13:49:26+00:00 1.0 1230368984 26199 btc at the last minutes what 1200 pump in 3 minutes thats like 3 in 3minutes 2021-06-16 18:04:24+00:00 1.0 1230368984 26194 5 minutes left for our live voice ama with marvin janssen technical lead at stacks and louise ivan growth lead at stacks from stx and we go live‼️ 2021-06-16 13:54:59+00:00 1.0 1230368984 26177 10 minutes left for our live voice ama with the head of business development at solana sol dominic tsang and we go live ‼️ 2021-06-15 13:51:07+00:00 1.0 1230368984 26108 btc huge pump in 5 minutes 2021-06-09 15:04:39+00:00 1.0 1230368984 25988 tight fight big pump and dumps expected both sides lose futures traders 2021-05-29 11:14:36+00:00 1.0 1230368984 25529 less than 30 minutes left for our live voice ama with the lead developer of nav alex vázquez and we go live ‼️ 2021-05-07 15:33:37+00:00 1.0 1230368984 25467 special update 10x potential nft gem of the century for the next 10x potential coin you can submit your proposals to cccpayments for review make sure to include cmc link and any other details you have about the project 10x nft event date 9th may 2021 time 800 am utc exchange binancepancakeswapbakery swap pair name to be decided last suggestions nft gem pet profit 5x so far coin of the year waves 100 in few days cryptocoinscoach professionaltradingguide 2021-05-04 06:43:46+00:00 1.0 1230368984 25463 special announcement 10x project on binance smart chain bsc nft gem since bsc is getting all the hype in the world and tokenscoins there are doing multiple x we have decided to organize an event well post a coin worth 10x potential from current market price we started researching for the next 10x potential coin you can submit your proposals to cccpayments for review make sure to include cmc link and any other details you have about the project 10x nft event date 9th may 2021 time 800 am utc exchange binancepancakeswapbakery swap pair name to be decided last suggestion pet profit 5x so far make sure to have funds on specified exchange all you guys have to do is buy and hold for 10x profits time frame 14 months cryptocoinscoach professionaltradingguide 2021-05-03 12:02:45+00:00 1.0 1230368984 25369 10 minutes left for our live voice ama with the ceo cofounder of band soravis srinawakoon and we go live‼️ 2021-04-27 14:50:30+00:00 1.0 1230368984 25330 special announcement hello dear cryptocoinscoach followers ❗️ we have found the next best coin for 2021 post alt season coin in binancecom are you ready for it it will be shared here on the first of may 1200 pm gmt time can we reach 100000 users in our channel until then ❓ rules 1 leverage entries is a must 2 hodlers only no pump and dump players 3 hodl for targets for maximum gains 4 if you join then you must share this message and every other news related to the project tmecryptocoinscoach 2021-04-25 13:22:20+00:00 1.0 1230368984 25140 10 minutes left for our ama with ankr ceo cofounder chandler song and we go live ‼️ 2021-04-13 18:50:56+00:00 1.0 1230368984 24851 30 minutes left for the ama to start we stop posting for now make sure to be here in 30mins put your alarms ready this is the ever first live ama for crypto over telegram voice cryptocoinscoach 2021-03-31 17:32:14+00:00 1.0 1230368984 23687 pump signal for dusk arpa 2021-02-04 11:43:08+00:00 1.0 1230368984 23672 after pnt pump signal here are some of the sky pump signal winners 2021-02-04 11:02:14+00:00 1.0 1230368984 22383 binance futures bch unusual activity 558m usdt in 5 minutes 10 l 23934000000 053 24h vol 608m usdt last signal 3 days ago 17d 2020-11-15 10:28:41+00:00 1.0 1230368984 22203 jesus what a pump for alts since alerts on average you should have made 3060 profit on each coin 2020-11-07 08:57:10+00:00 1.0 1230368984 22066 easy is on binance completed 160 pump why because alts are bottomed and that coin market cap was 80btc only ❗️ cryptocoinscoach 2020-10-30 00:08:59+00:00 1.0 1230368984 21891 ✅ xlm 15 pump hit 739 2020-10-17 10:49:04+00:00 1.0 1230368984 21355 announcement new binance listing event 12 hours left ‼️ to celebrate bel listing on binance we will schedule bel pump today at 800 am utc launchpool is the launchpad 20 bella will moon and lead the defi market bella is going to lead the defi market because it is the first project of the launchpool and since this is the first coin listing from binance launchpool we believe the fomo will be huge therefore we recommend to buy as fast as possible and hold for 50500 from the buy price some data total token supply 100 millions bel total tokens allocated to binance launchpool 5 millions bel private token sale price 1 bel 075usd date 15th september 2020 time 800 pm utc exchange binance pair name belbtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only entries 1 000070000 15 highly risky entry 2 000055000 25 little risky entry 3 000045000 30 comfortable entry 4 000030000 30 safest entry we suggest you guys to follow our buy zones only and get amazing short term profits like we did with our earlier binance ieo pumps believe us if you will follow us properly youll make handsome profits with bel so please read all info play safe cryptocoinscoach professionaltradingguide 2020-09-14 20:09:05+00:00 1.0 1230368984 20634 announcement new binance listing ieo event 34 mins left ‼️ to celebrate sand listing on binance we will schedule sand pump today at 1 pm utc since all the ieos have pumped 5x40x especially band kava erd fet we believe the fomo will be huge therefore we recommend to buy as fast as possible and hold for 40500 from the buy price some data total token supply 3 billions sand total tokens allocated to binance launchpad 360 millions sand public token sale price 1 sand 000833 usd token allocated per ticket 24000 sand date 14th august 2020 time 100 pm utc exchange binance pair name sandbtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only price analysis we made some research and found that it was sold on the binance launchpad at 71 satoshis approx 000000071 btc this price is in approximation as it was sold in bnb session only entries 1 425 15 highly risky entry 2 350 25 little risky entry 3 260 30 comfortable entry 4 180 30 safest entry we suggest you guys to follow our buy zones only and get amazing short term profits like we did with our earlier binance ieo pumps believe us if you will follow us properly youll make handsome profits with sand so please read all info play safe cryptocoinscoach professionaltradingguide 2020-08-14 12:26:34+00:00 1.0 1230368984 20584 30 sats was claimed twice on the next time i hope to see a pump hard to move those sell walls people dont want money when they scalp it for 3 gain ‍♂️ 2020-08-12 11:35:19+00:00 1.0 1230368984 20503 you guys are whales next news based team pump coin will be delivered here with hodl targets so you guys will make 100200 easy without having to worry on your position stay tuned cryptocoinscoach 2020-08-10 09:18:50+00:00 1.0 1230368984 19834 xlm hit 897 3 points below our range now traded above 970 ❗️ guys this coin should pump if btc will behave hold for my targets dont sell for less 2020-07-10 20:55:07+00:00 1.0 1230368984 19669 after taking 2 loss on ont binance posted news will see how we close the weekly before joining it again we truly believe this coin has huge potential but the problem is there is not enough volume to pump it ont team gotta step in and lead that coin back to its average price 2020-07-05 12:52:34+00:00 1.0 1230368984 19189 iq looking quite promising listing today would have a major pump as market is bullish for small cap alts at the moment 2020-06-18 07:58:45+00:00 1.0 1230368984 19112 time is running faster cant go slow anyways we gotta hurry bcoz everyone is waiting for mountain alt via hit 188 ctxc hit 220 todays mountain alt250 exchange binance only 1 hr remaining mountain alt | 4 pm gmt 2020-06-15 15:00:08+00:00 1.0 1230368984 19102 there will be a binance top gainer coming on the way even we cant wait to see that but we gotta wait via hit 188 ctxc hit 220 todays mountain alt250 only 3 hrs remaining mountain alt | 4 pm gmt 2020-06-15 13:00:09+00:00 1.0 1230368984 19052 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-13 09:33:29+00:00 1.0 1230368984 18980 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 250 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-06-10 15:59:17+00:00 1.0 1230368984 18979 just about 15 mins guys the mountain alt signal is on the way market is doing great today the fomo will be attractive the next post will be name of the mountain alt coin stay online folks 2020-06-10 15:45:08+00:00 1.0 1230368984 18978 the mountain alt or shall we call it the next binance top gainer is just about to arrive last mountainalt not enough right todays one can get to 250easily exchange binance about 1 hr remaining today | 4 pm gmt 2020-06-10 15:00:09+00:00 1.0 1230368984 18976 alts are making savage moves in this alt season so our mountain alt will do the same todays mountain alt is going to see 250 growth with massive fomo exchange binance 3 hrs remaining today | 4 pm gmt 2020-06-10 13:00:10+00:00 1.0 1230368984 18968 the clock is running faster guys hope you ready for this the mountain alt is cominggg the last mountain alt had major fomo and reached binance top gainer what to expect todayyes 250 strong gainer exchange binance about 6 hrs left today | 4 pm gmt 2020-06-10 10:00:08+00:00 1.0 1230368984 18956 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this todays mountain alt is gonna see 250 growth less than 12 hrs to see the mountain alt today | 4 pm gmt 2020-06-10 04:00:50+00:00 1.0 1230368984 18874 hey folks guess whats coming today yes guess it the mountain alt our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 ctxc 》220 《 xxx 》will it go for 200++ but its coming with a different strategy to kill bot traders today mountain will be shared within 4 5 pm gmt between this 1 hr anytime wake up mountain alt | 4 5 pm gmt 2020-06-08 04:00:09+00:00 1.0 1230368984 18863 good day traders you know what time it is time for yet another mountain alt signal but this time with bit different strategy what is it this time the mountain alt wont come at a fixed time it will come within 4 5 pm gmt you need to stay online and alert in this 1 hr time trading bots wont be able to catch this time our signal its coming mon jun 8th | 4 5 pm gmt mountain alt 2020-06-07 13:24:50+00:00 1.0 1230368984 18849 people are asking about the next alt mountain pump signal cryptocoinswaves declared new signal tomorrow follow them and pin channel to top to get the signal 2020-06-07 08:17:27+00:00 1.0 1230368984 18784 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:07+00:00 1.0 1230368984 18780 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:09+00:00 1.0 1230368984 18773 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:09+00:00 1.0 1230368984 18761 have you set the timer yet bcoz its the day for mountain alt signal ong went for 108 via went for 188 can todays mountain alt hit 250 12 hrs remaining today | 4 pm gmt 2020-06-03 04:00:10+00:00 1.0 1230368984 18740 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:11:03+00:00 1.0 1230368984 18664 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 15:59:45+00:00 1.0 1230368984 18662 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:07+00:00 1.0 1230368984 18661 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:09+00:00 1.0 1230368984 18658 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:00:10+00:00 1.0 1230368984 18600 massive drop in alts hope you guys didnt fomo buy high and lost some btc wait for the king to dictate the next move we told you it will flip flop to green and it did 300 pump in less than a hour 2020-05-27 12:06:41+00:00 1.0 1230368984 18557 just about 15 mins guys the mountain alt signal market is doing great today the fomo will be attractive 400 pm gmt login binance and get ready 2020-05-26 15:45:03+00:00 1.0 1230368984 18556 the clock is ticking guys hope you all are staying online final 45 minutes for the mountain alt signal exchange binance 400 pm gmt 2020-05-26 15:15:48+00:00 1.0 1230368984 18553 the clock is ticking guys hope you all are staying online final 1 hr for the mountain alt signal 400 pm gmt 2020-05-26 15:00:08+00:00 1.0 1230368984 18552 are you online today you better be bcoz only 3 hrs remaining for the mountain alt signal 400 pm gmt 2020-05-26 13:00:07+00:00 1.0 1230368984 18531 hey guys today is the day for mountain alt signal keep yourself prepared for this major alt signal it will go beyond 70 to 80 in no time only 115 hrs left today 4 pm gmt 2020-05-26 04:30:09+00:00 1.0 1230368984 17956 some fa and ta 1 us30 brokeout after btc interesting 2 4hr rsi is over bought extremely 3 daily rsi going to over bought area 4 buying pressure is strong and pump is expected + volume increasing 5 halving in less than 2 weeks 2020-04-29 13:01:39+00:00 1.0 1230368984 17547 announcement new coin listing pump event ‼️ to celebrate sol listing on binance we will schedule sol pump on 09042020 at 4 am utc the main reason for announcing this pump is circulation supply of this coin which is just 16 percent of total token supply therefore we believe that fomo will be huge as it could end up being another ogn renowned for its insane pumping history we recommend to buy as fast as possible and hold for 10100 from the buy price some data total token supply 500 millions sol total circulation supply 8 millions sol coin list auction sale price 1 sol 022 usd approx 3000 satoshis date 9th april 2020 time 400 am utc exchange binance pair name solbtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only entries 1 70007200 15 highly risky entry 2 60006200 25 little risky entry 3 54005500 30 comfortable entry 4 42004400 30 safest entry we suggest you guys to follow our buy zones only and get amazing short term profits like we did with our earlier binance ieo pumps believe us if you will follow us properly youll make handsome profits with sol so please read all info play safe cryptocoinscoach professionaltradingguide 2020-04-08 04:24:05+00:00 1.0 1230368984 17368 mtl whales pumped this coin for 5 days already they will pump it and exit do not hold it while it bleeds ‼️ 2020-03-30 10:08:06+00:00 1.0 1230368984 17343 next post is coin name in a picture 2020-03-28 11:55:18+00:00 1.0 1230368984 17333 hi guys we will join cryptocoinswaves pump signal event today at 1200 pm 2 hours left ‼️ those guys are pumping coins 50100 throughout the last week easy money get ready in 2 hours we start 2020-03-28 09:43:48+00:00 1.0 1230368984 17324 10 minutes left for the main event ‼️ next post is the coin name 2020-03-27 20:50:08+00:00 1.0 1230368984 17320 ⏰ 2 hours left for the breakout coin we expect to see 100 120 at least ‼️ make sure to be ready on binance with free btc 2020-03-27 19:00:08+00:00 1.0 1230368984 17134 wow cryptocoinswaves channel offer his users the chance to decide which coin will pump next time 2020-03-18 20:50:55+00:00 1.0 1230368984 17124 stay away from steem manipulated by cz and their team will pump and dump binance btc pairs steem dump price 000003364 change 292 ❌ 1842 btc in 5 minutes 87 24h volume 21161 btc 2020-03-18 13:57:16+00:00 1.0 1230368984 16885 and lastly our pump event for wrx pure gold coin 2020-03-07 09:59:48+00:00 1.0 1230368984 16545 bcpt breaking out keep an eye whos gonna be the next pump coin 2020-02-12 19:16:32+00:00 1.0 1230368984 16356 announcement new binance listing ieo event 6 hours left ‼️ to celebrate wrx listing on binance we will schedule wrx pump tomorrow at 2am utc we believe the fomo will be huge therefore we recommend to buy as fast as possible and hold for 10100 from the buy price some data total token supply 1 billion wrx total tokens allocated to binance launchpad 100 millions wrx public token sale price 1 wrx 002 usd token allocated per ticket 10000 wrx date 5th feb 2020 time 200 am utc exchange binance pair name wrxbtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only background wrx is a coin which belongs to indian crypto exchange wazirx wazirx is top indian crypto exchange with very good reputation in 2018 when indian govt imposed banking restrictions on crypto exchanges many top crypto exchanges of that time like zebpay packed their bags and left india wazirx came up with unique concept of peer to peer sale and purchase of crypto which kept crypto movement alive in india wazirx p2p is the goto method for depositing and withdrawing inr fiat for 1 billion people of india after tremendous success in india wazirx plans to solve the fiat cryptocurrency conversion problem globally for many more countries price analysis we made some research and found that it was sold on the binance launchpad at 213 satoshis approx 000000213 btc this price is in approximation as it was sold in bnb session only since wrx has very strong and good fundaments behind it also market is on fire lately therefore we believe its going to pump hard unlike some recent launchpads entries 1 420 475 15 highly risky entry 2 380 420 25 little risky entry 3 340 380 30 comfortable entry 4 300 340 30 safest entry we suggest you guys to follow our buy zones only and get amazing short term profits like we did with our earlier binance ieo pumps believe us if you will follow us properly youll make handsome profits with wrx so please read all info play safe cryptocoinscoach professionaltradingguide 2020-02-04 19:58:04+00:00 1.0 1230368984 15583 announcement new binance listing ieo event 8 hours left ‼️ to celebrate troy listing on binance we will schedule troy pump tomorrow at 2am utc we believe the fomo will be huge therefore we recommend to buy as fast as possible and hold for 50100 from the buy price some data total token supply 10 billions troy total tokens allocated to binance launchpad 800 millions troy public token sale price 1 troy 0005 usd 00032875 bnb token allocated per ticket 40000 troy date 5th dec 2019 time 200 am utc exchange binance pair name troybtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only we made some research and found that it was sold on the binance launchpad at 69 satoshis approx 000000069 btc this price is in approximation as it was sold in bnb session only starting price will be atleast 15x 2x higher than price at which it was available on binance launchpad but due to high demand we still think its going to pump hard especially when we are talking about a coin that is listed through launchpad sale and after successful listing of btt 1000 from sale price fet 600 celr 600 matic 1100 one 1000erd 1500win 700perl 110 band80 and kava 260 entries 1 140 170 15 highly risky entry 2 120 140 35 little risky entry 3 102 120 50 safe risky one thing noteworthy is that it has been distributed through a lottery system just like matic one erd kava and others but our analysts have made research that troy ticket were allocated to binance whales since 2 single tail digit numbers were selected therefore chances of mass dumping is a little more than you guys compare it with kava we suggest you guys to follow our buy zones only and get amazing short term profits like we did woth kava 100 in 20 mins from our entry so please read all info play safe cryptocoincoach professionaltradingguide 2019-12-04 18:00:05+00:00 1.0 1230368984 15577 wtf 3 minutes 600 pump btc shitcoin 2019-12-04 13:26:27+00:00 1.0 1230368984 15307 amb team fomo continues as they used market makers to pump their coin 2019-11-13 11:22:48+00:00 1.0 1230368984 15093 announcement new binance listing ieo event to celebrate kava listing on binance we will schedule kava pump tomorrow at 2am utc we believe the fomo will be huge therefore we recommend to buy as fast as possible and hold for 50100 from the buy price some data total token supply 100000000 kava total tokens allocated to binance launchpad 65 million kava public token sale price 1 kava 046 usd 0258 bnb date 25th oct time 200 am utc exchange binance pair name kavabtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only we made some research and found that it was sold on the binance launchpad at 5800 satoshis approx 000005800 btc this price is in approximation as it was sold in bnb session only starting price will be atleast 15x 2x higher than price at which it was available on binance launchpad but due to high demand we still think its going to pump hard especially when we are talking about a coin that is listed through launchpad sale and after successful listing of btt 1000 from sale price fet 600 celr 600 matic 1100 one 1000erd 1500win 700perl 110 and band80 entries 1 870010000 50 safe entry 2 1000012000 30 risky entry 3 12000 14500 20 highly risky one thing noteworthy is that it has been distributed through a lottery system just like maticoneerd and others but kava coins allocated per ticket is less therefore chances of mass dumping is less fomo is huge as number of tickets distributed in this case is less than previous ieos so please read all info play safe cryptocoincoach professionaltradingguide 2019-10-24 19:25:08+00:00 1.0 1230368984 14768 epic monday pump date 30th september time 6pm gmt exchange binance as u guys know that alts market has been crushed badly due to btc pump which has resulted in huge depreciation to their price and market cap so we are in collaboration with our us hedge fund going to invest in a specific coin for the pump and the days afterwards backed up with the token team following are the latest examples of humangous pumps when token team pumped their own token over big period of time 1waves pushed from 2300 sats to 12000 sats which is approximately 500 push 2rvn pushed from 266 sats to 1724 sats which is approximately 750 push following are our last successful pumps on our own phx 350 mda 400 arn 200 dlt 100 appc 100 now imagine when token team is working with us what will be results one word explosion our join channel link to add your friends 2019-09-26 13:43:37+00:00 1.0 1230368984 14715 snm huge volume spike in the last hour keep an eye might pump 2019-09-23 10:37:37+00:00 1.0 1230368984 14457 btc supports level are 91009400 if it wont hold there are 2 options 1 massive dump lower towards 78k zone ❗️ 2 fake dump and big pump leaving behind everyone we will start sending out alts signals soon 2019-08-29 09:05:37+00:00 1.0 1230368984 14228 less than 10 minutes left ‼️ next post is our green coin for the weekend ✅ 2019-08-09 14:51:23+00:00 1.0 1230368984 14226 about 2 hours left for our ✅green✅ coin today that will pump all over the weekend as it looks btc is trying to get stable we will forward our btc update soon as well not looking great at the moment as it failed to break 12k several times already 2019-08-09 12:49:37+00:00 1.0 1230368984 13908 thursday breakout event date 11 july time 4 pm gmt exchange binance in this event we will pump about to breakout coin our last successful pumps on our own phx 350 mda 400 arn 200 dlt 100 appc 100 event will take place only if btc stays stable our join channel link to add your friends 2019-07-08 08:00:46+00:00 1.0 1230368984 13861 4 pm gmt our big event is on and it will go crazy approximately 8 hours from now ‼️ 2019-07-02 07:36:46+00:00 1.0 1230368984 13828 bullish tuesday event date 2nd july time 4 pm gmt exchange binance in this event we will pump bottom alt coin that still didnt make significant recovery as u guys know that alts market has been crushed badly in june due to btc pumps which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular token team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their token price and market cap following are the latest examples of humangous pumps when token team pumped their own token over big period of time 1waves pushed from 2300 sats to 12000 sats which is approximately 500 push 2rvn pushed from 266 sats to 1724 sats which is approximately 750 push following are our last successful pumps on our own phx 350 mda 400 arn 200 dlt 100 appc 100 now imagine when token team is working with us what will be results one word explosion event will take place only if btc stays stable our join channel link to add your friends 2019-06-30 11:20:20+00:00 1.0 1230368984 13709 epic monday summary we saw some heavy sell orders and pump got stuck at 50 and went down afterwards no doubt market was not ready yet with many bag holders thats why our us hedge fund partners took over and bought with us as they are now spreading the word blz is their new coin for this month on top of that btc dumped and pumped which cause huge bot selling pressure we will schedule the next pump when market is ready stay tuned 2019-06-24 19:39:24+00:00 1.0 1230368984 13706 5 minutes left ‼️ next post is coin name 2019-06-24 18:25:10+00:00 1.0 1230368984 13702 30 minutes left ‼️ some tips 1 use small amount so you can hold for the moon without panic 2 market is bottomed alts recovery is started last days and we are here to speed the market every green market starts after 1 coin humangous pump for example evx 400 pump 3 due to some issues with pictures loading we will send scrumble text and you will find the coin bots wont be able to read it 4 we will see multiple waves always rebuy the dip to keep this coin pumped more and more 2019-06-24 17:30:54+00:00 1.0 1230368984 13698 7 hours and 30 minutes left for epic monday pump lets wake up the alts market ‼️ 2019-06-24 10:31:05+00:00 1.0 1230368984 13667 epic monday pump date 24th june time 6pm gmt exchange binance its a freeforall event with 0 pre pump coin as u guys know that alts market has been crushed badly due to btc pump which has resulted in huge depreciation to their price and market cap so we are in collaboration with our us hedge fund going to invest in a specific coin for the pump and the days afterwards backed up with the token team following are the latest examples of humangous pumps when token team pumped their own token over big period of time 1waves pushed from 2300 sats to 12000 sats which is approximately 500 push 2rvn pushed from 266 sats to 1724 sats which is approximately 750 push following are our last successful pumps on our own phx 350 mda 400 arn 200 dlt 100 appc 100 now imagine when token team is working with us what will be results one word explosion our join channel link to add your friends 2019-06-22 11:06:28+00:00 1.0 1230368984 13545 5 minutes left ‼️ next post is the picure of the coin name to buy 2019-06-11 17:55:03+00:00 1.0 1230368984 13540 less than 3 hours left ‼️ get ready to shake binance alts market looking great make sure to read the original post and the pinned one 2019-06-11 15:17:38+00:00 1.0 1230368984 13532 guys are you ready for the biggest freeforall pump event we expect to see at least 50 pump the most important thing is not to dump afterwards and give some time for the outsiders to join bots will buy more and will take us to 100 in the same day if we work as a team if we hold price for more than 24hours we can also see humangous pump to 400 in total so read it carefully and get ready for 6 pm gmt team 9 hours left ‼️ 2019-06-11 08:59:28+00:00 1.0 1230368984 13528 bullish tuesday event date 11th june time 600pm gmt exchange binance in this event we will pump 0 pre pump coin and will be backed by hyped news from token team like binance dex listing and many more as u guys know that alts market has been crushed badly in april due to btc pump and dump which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular token team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their token price and market cap following are the latest examples of humangous pumps when token team pumped their own token over big period of time 1waves pushed from 2300 sats to 12000 sats which is approximately 500 push 2rvn pushed from 266 sats to 1724 sats which is approximately 750 push following are our last successful pumps on our own phx 350 mda 400 arn 200 dlt 100 appc 100 now imagine when token team is working with us what will be results one word explosion our join channel link to add your friends 2019-06-10 13:06:48+00:00 1.0 1230368984 13346 guys our analysts say that btc expected to move soon therefore our pump would not go as planned we prepared 3 legs up 1 is the pump itself second after small correction and 3rd when the team will share their news to the public sadly if btc will pump all alts will dip again and will ruin the trend we will anounce a new date soon happy btc festival for now‼️ play safe cryptocoincoach 2019-05-28 12:14:15+00:00 1.0 1230368984 13323 bullish tuesday event date 28th may time 4pm gmt exchange binance its a freeforall event with 0 pre pump coin and will be backed by hyped news from token team like binance dex listing and many more as u guys know that alts market has been crushed badly in april due to btc pump and dump which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular token team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their token price and market cap following are the latest examples of humangous pumps when token team pumped their own token over big period of time 1waves pushed from 2300 sats to 12000 sats which is approximately 500 push 2rvn pushed from 266 sats to 1724 sats which is approximately 750 push following are our last successful pumps on our own phx 350 mda 400 arn 200 dlt 100 appc 100 now imagine when token team is working with us what will be results one word explosion our join channel link to add your friends 2019-05-26 15:10:58+00:00 1.0 1230368984 13251 ▪️flash pump alert ▪️ after the succesful poa and wpr pump and the good feedbacks we got we will run another free pump in 30 minutes from now ‼️ we will choose a small coin that is green but didnt make much gains and we will kick it to our targets which are 50 and 80 in few minutes binance exchange btc pair cryptocoincoach 2019-05-22 15:58:23+00:00 1.0 1230368984 13116 10 minutes left ‼️ get ready with some btc at binance we recommend to use small amount 2019-05-15 14:50:35+00:00 1.0 1230368984 13114 ▪️flash pump alert ▪️ after the succesful poa pump and the good feedbacks we got we will run another free pump in 30 minutes from now ‼️ we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair cryptocoincoach 2019-05-15 14:29:42+00:00 1.0 1230368984 13059 pump event date 14th may time 2pm gmt exchange binance free for all event info our bot will give us a dip in red coin all you need to do is buy and hold for 100 profit in short term ❗️❗️❗️❗️ last successful breakouts alerts phx 350 mda 400 arn 200 dlt 100 appc 100 our join channel link to add your friends 2019-05-11 19:17:59+00:00 1.0 1230368984 13036 5 minutes left ‼️ next post is coin image and chart with two hodl targets 2019-05-10 11:55:20+00:00 1.0 1230368984 13035 15 minutes left ‼️ get ready with some btc at binance we recommend to use small amount so you can hold without panic 2019-05-10 11:45:05+00:00 1.0 1230368984 13033 ▪️pump alert ▪️ to celebrate the alts party we will pump today in 30 minutes a bottom coin that can do easily 50 all you have to do is buy as fast as you can and hold 24 hours for maximum gains ‼️ the coin will be freeforall 2019-05-10 11:33:15+00:00 1.0 1230368984 12982 bullish tuesday event date 7th may time 2pm gmt exchange binance its a freeforall event with 0 pre pump coin and will be backed by hyped news from token team like binance dex listing and many more as u guys know that alts market has been crushed badly in april due to btc pump and dump which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular token team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their token price and market cap following are the latest examples of humangous pumps when token team pumped their own token over big period of time 1waves pushed from 2300 sats to 12000 sats which is approximately 500 push 2rvn pushed from 266 sats to 1724 sats which is approximately 750 push following are our last successful pumps on our own phx 350 mda 400 arn 200 dlt 100 appc 100 now imagine when token team is working with us what will be results one word explosion our join channel link to add your friends 2019-05-06 10:28:36+00:00 1.0 1230368984 12839 announcement newbinancelistingpumpevent to celebrate matic listing on binance we will schedule matic pump tomorrow at 3 pm utc time we belive the fomo will be huge therefore we recommend to buy as fast as possible and hold for 15100 from the buy price some data total token supply 10000000000 matic total tokens allocated to binance launchpad 1900000000 matic public token sale price 1 matic 000263 usd 000119 bnb date 26th april time 3 pm utc time exchange binance pair name maticbtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only we made some research and found that it was sold on the binance launchpad at 50 satoshis approx this price is in approximation as it was sold in bnb session only starting price will be atleast 4x 6x higher than price at which it was available on binance launchpad but due to high demand we still think its going to pump hard especially when we are talking about a coin that is listed through launchpad sale and after successful listing of btt 1000 from sale price fet 600 and celr 600 try to catch it at 170190 sats at first when itll be listed on binance tomorrow however well update buy zones and three entries that time also one thing noteworthy is that it may not dump initially like celr because celr was distributed to just 3000 contributors but matic is distributed between 16666 people 5 times more than celr therefore chance of mass dumping is less so please read all info we provided before tomorrow play safe cryptocoincoach professional trading guide 2019-04-25 19:20:48+00:00 1.0 1230368984 12717 pump event date 19 april time 2pm gmt exchange binance info our bot will give us a dip in red coin all you need to do is buy and hold for 100 profit in short term ❗️❗️❗️❗️ last successful breakouts alerts phx 350 mda 400 arn 200 dlt 100 appc 100 our join channel link to add your friends 2019-04-18 08:21:30+00:00 1.0 1230368984 12511 interesting thing cdt is one of the only small cap coin that didnt recover from its all time low even the btc pump and dump didnt affect it the last days since no one is selling this coin for so cheap many holders and now us waiting for moon lets hope its going to be the next evx 2019-04-05 13:32:14+00:00 1.0 1230368984 12352 pump event date 27th march time 2pm gmt 3 hours from now ‼️ exchange binance info our bot will give us a breakout coin all you need to do is buy and hold for 100400 profit ❗️❗️❗️❗️ as you guys know market is crazy from past two days since evx pump our pump could actually go 100400 this time just buy and hold for targets last successful breakouts alerts phx 350 mda 400 arn 200 dlt 100 appc 100 our join channel link to add your friends 2019-03-27 10:59:54+00:00 1.0 1230368984 12295 ◽️ announcement ◽️ pumpsignal event cryptocoincoach to celebrate celr listing in binance we will schedule celr pump tomorrow 4 am utc time we belive the fomo will be huge therefore we recommend to buy as fast as possible and hold for 100 from the starting price some data binance will open trading for celrbnb celrbtc and celrusdt trading pairs at 20190325 400 am utc its official in the bnb session all 597 million celr were sold to token sale participants within 10 minutes and 25 seconds total token supply 10000000000 celr total tokens allocated to binance launchpad 597014925 celr public token sale price 1 celr 00067 usd 000434 bnb date 25th march time 4 am utc time exchange binance pair name celrbtc or celrbnb or celrusdt rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only we made some research and found that it was sold on the binance launchpad at 170 satoshis on approx this price is in approximation as it was sold in bnb session only starting price will be 3x 4x higher than price at which it was available on binance launchpad but due to high demand we still think its going to pump hard especially when we are talking about a coin that is listed through launchpad sale and after successful listing of btt 1000 from sale price and fet 600 try to catch it at 450600 sats when itll be listed on binance tomorrow however well update buy zone that time also so please read all info we provided before tomorrow play safe cryptocoincoach professional trading guide 2019-03-24 20:11:36+00:00 1.0 1230368984 12017 ◽️ announcement ◽️ breakout event date 14 march time 3 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ we will give a breakout coin as you know lately once breakout is confirmed its just a matter of time until it goes 100200 up sometimes it happens instantly if the partcipants are holding and sometimes it take even few days but in the end moon is guaranteed last successful breakout alerts are phx 350 mda 400 arn 200 dlt 100 appc 100 link to join your friends ◽️ announcement ◽️ 2019-03-09 11:40:19+00:00 1.0 1230368984 11921 ast update after pump we saw 4 hr candle correction and afterwards 3 green candles that couldnt hold the trend because of selling pressure it will be like appc further correction and then big pump breakout happened but volume is gone 2019-03-03 15:11:30+00:00 1.0 1230368984 11891 15 minutes left ‼️ binance is warming up market is on fire today 2019-03-02 13:45:10+00:00 1.0 1230368984 11890 30 minutes left ‼️ binance is warming up market is on fire today 2019-03-02 13:30:01+00:00 1.0 1230368984 11889 1 hour left for the big pumpsignal event on binance️ recommended to buy and hold for maximum profits huge volume will be injected which will cause outsiders to join and make more waves and legs up over the next 24 hours since coin name was posted ‼️ our record is 400 percentage with phx when we all grouped up like that last time get ready for a take off to the moon 2019-03-02 13:00:10+00:00 1.0 1230368984 11398 few words about it it may be a good project by bittorrent but rest asure there were a lot of protections corruption and many other things to make this coin come to what it is we made some research and found that it was sold in the ico time at 2 satoshis and was sold in the binance presale at 35 satoshis on average starting price will probably be higher then that which is not right but due to high demand we still think its going to pump hard especially when we are talking about a coin that worths few sats only and after hot 400 price increase a lot of people would want to buy it so please read all info we provided before tomorrow cryptocoincoach 2019-01-30 14:45:43+00:00 1.0 1230368984 11396 ◽️ announcement ◽️ pumpsignal event cryptocoincoach to celebrate btt listing in binance we will schedule btt pump tomorrow 10 am utc time we belive the fomo will be huge therefore we recommend to buy as fast as possible and hold for 100 from the starting price some data binance will open trading for bttbnb bttbtc and bttusdt trading pairs at 20190131 1000 am utc users can now start depositing btt in preparation for trading its official in the bnb session all 2376 billion btt were sold to token sale participants within 13 minutes and 25 seconds meanwhile in the tron session all 3564 billion btt were sold within 14 minutes and 41 seconds token type trc10 ico token price 1 btt 00001 usd fundraising goal 7200000 usd all sold total tokens 990000000000 available for token sale 17 date 31 january time 10 am utc time exchange binance pair name bttbtc or bttbnb or bttusdt rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only ◽️ announcement ◽️ 2019-01-30 13:42:57+00:00 1.0 1366515184 8083 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact tradersebastian100 for premium membership 2022-01-19 09:29:37+00:00 1.0 1366515184 2099 30 minutes left to pump on binance to know coin name join premium and recover your losses ☎ contact tradersebastian100 2020-11-03 15:38:36+00:00 1.0 1366515184 1314 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact tradersebastian100 for premium membership 2020-09-09 21:49:04+00:00 1.0 1366515184 1100 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact tradersebastian for premium membership 2020-08-31 15:55:58+00:00 1.0 1366515184 495 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact tradersebastian100 2020-08-09 13:42:47+00:00 1.0 1366515184 411 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact tradersebastian100 for premium membership 2020-08-09 13:29:45+00:00 1.0 1366515184 396 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact tradersebastian100 for premium membership 2020-08-09 13:27:26+00:00 1.0 1366515184 133 15 minutes left to pump on binance 2020-08-09 07:09:18+00:00 1.0 1366515184 132 4 hour left to pump on binance to know coin name earlier join premium ☎ contact tradersebastian100 2020-08-09 07:08:53+00:00 1.0 1366515184 109 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact tradersebastian100 2020-08-09 06:56:57+00:00 1.0 1366515184 101 pump coin name gvt 2020-08-09 06:52:00+00:00 1.0 1366515184 100 15 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact tradersebastian100 2020-08-09 06:51:33+00:00 1.0 1345038659 728 new binance pump announcement ⏳date january 24 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2022-01-06 18:10:36+00:00 1.0 1345038659 727 today binance pump analysis coin nebl low 2366 high 4058 exchange binance profit 5169 profit the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit coin is nebl 5149 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2022-01-02 17:12:13+00:00 1.0 1345038659 724 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus joining the free pump is very risky please be careful as a vip member you can make big profits without risk 2022-01-02 16:55:35+00:00 1.0 1345038659 722 30 minutes left until the massive pump on binance be prepared 2022-01-02 16:31:39+00:00 1.0 1345038659 721 1 hour left until the massive pump on binance be prepared 2022-01-02 16:00:18+00:00 1.0 1345038659 720 1 hour 17 minutes left until the massive pump on binance be prepared 2022-01-02 15:43:49+00:00 1.0 1345038659 718 new binance pump announcement ⏳date sunday january 2 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-12-14 18:00:56+00:00 1.0 1345038659 717 today binance pump analysis coin phb low 1236 high 1348 exchange binance profit 7959 profit pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit coin is phb 7959 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-11-29 07:49:03+00:00 1.0 1345038659 714 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus joining the free pump is very risky please be careful as a vip member you can make big profits without risk 2021-11-28 16:55:38+00:00 1.0 1345038659 712 10 minutes left until the massive pump on binance 2021-11-28 16:50:14+00:00 1.0 1345038659 711 15 minutes left until the massive pump on binance 2021-11-28 16:45:46+00:00 1.0 1345038659 710 26 minutes left until the massive pump on binance 2021-11-28 16:34:03+00:00 1.0 1345038659 709 1 hour left until the massive pump on binance 2021-11-28 16:01:18+00:00 1.0 1345038659 707 new binance pump announcement ⏳date november 28 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-11-10 16:37:07+00:00 1.0 1345038659 706 today binance pump analysis coin mth low 55 high 132 exchange binance profit 14199 profit you can see our vip channel evidence above please dont ask me amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit coin is ez 9094 profit coin is mth 14199 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-11-07 18:58:16+00:00 1.0 1345038659 702 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus joining the free pump is very risky please be careful as a vip member you can make big profits without risk 2021-11-07 16:56:54+00:00 1.0 1345038659 701 new binance pump announcement ⏳date sunday november 7 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-11-01 15:51:51+00:00 1.0 1345038659 697 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-10-31 16:57:52+00:00 1.0 1345038659 696 6 hours left until the big pump on binance 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-31 12:06:33+00:00 1.0 1345038659 695 tomorrow big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared ⏰time 1700 pm gmt ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-30 13:45:50+00:00 1.0 1345038659 694 new binance pump announcement ⏳date sunday october 31 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit next pump october 31 ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-27 21:14:34+00:00 1.0 1345038659 693 today binance pump analysis coin evx low 1125 high 2008 exchange binance profit 8488 profit pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned the last recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit coin is evx 8488 profit next pump coming soon ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-24 19:16:30+00:00 1.0 1345038659 692 some of our members want vip channel evidence id like to share this screenshot with you vip membership is a great advantage you buy the coin name 3 days or 1 day ago sign up now to avoid missing out on the 84 profit rate at the next pump invest in your future please check the dates 2021-10-24 17:35:04+00:00 1.0 1345038659 687 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-10-24 16:55:20+00:00 1.0 1345038659 686 10 minutes left until the massive pump on binance 2021-10-24 16:50:22+00:00 1.0 1345038659 685 1 hour and 26 minutes left until the big pump on binance ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-24 15:34:15+00:00 1.0 1345038659 683 new binance pump announcement ⏳date sunday october 24 ⏰time 1700 pm gmt exchange binance +40 whale channels target 50 110 profit the last five recently completed pumps coin is vib 10428 profit coin is fxs 9534 profit coin is ez 7937 profit coin is wnxm 4525 profit next pump october 24 ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-12 11:36:21+00:00 1.0 1345038659 679 14 minutes remaining until the big pump a massive pump is about to happen in only 14 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:46:59+00:00 1.0 1345038659 678 1 hour left until the big pump on binance the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance premium member contact binancepumpadmin 2021-10-10 15:59:58+00:00 1.0 1345038659 677 7 hours and 30 minutes left until the big pump on binance the big day has arrived 7 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 8 hours be prepared ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-10 09:33:39+00:00 1.0 1345038659 673 new binance pump announcement ⏳date sunday october 10 ⏰time 1700 pm gmt exchange binance +40 whale channels target 100 220 profit the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-04 13:36:45+00:00 1.0 1345038659 665 10 mins left until the big pump on binance 2021-10-03 16:50:01+00:00 1.0 1345038659 664 25 mins left until the big pump on binance 2021-10-03 16:35:03+00:00 1.0 1345038659 662 4 hours left until the big pump on binance the big day has arrived 4 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 6 hours be prepared we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-10-03 13:20:25+00:00 1.0 1345038659 658 new binance pump announcement ⏳date sunday october 3 ⏰time 5 pm gmt exchange binance +40 whale channels target 100 220 profit the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned to buy vip of next pump contact binancepumpadmin we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-09-20 17:11:42+00:00 1.0 1345038659 655 today binance pump analysis coin fxs low 10544 high 20597 exchange binance profit 9534 profit pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump it is very difficult to pump in this bad market but our vip members made a big profit by buying coini 1 day ago and 3 days ago congratulations to all our courageous vip members ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-09-19 22:05:59+00:00 1.0 1345038659 644 dear members we have decided to postpone the sunday pump after hours of discussions with the team the market looks bearish the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect your and all member capitals we are aiming for an extremely high for the next pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 1 day after the call as an apology for the postponement best regards the binance royal pump team we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-09-12 13:53:13+00:00 1.0 1345038659 643 20 hour left until the binance pump ready dear members this is a basic stepbystepguide for new members 1 ten min before 5pm gmt tomorrow have binancecom telegram open 2 at exactly 5pm gmt there will a message including the name of a coin in the telegram 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can read the socialmediaguide on prepare for tomorrows pump the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 150 to 200 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-09-11 20:49:08+00:00 1.0 1345038659 642 new binance pump announcement ⏳date september 19 ⏰time 5 pm gmt exchange binance +40 whale channels target 100 220 profit with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the successful previous pump and discussion with our team we have decided to schedule our next pump on sept12 to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to buy vip of next pump contactbinancepumpadmin 2021-09-06 21:46:22+00:00 1.0 1345038659 641 today binance pump analysis pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contactbinancepumpadmin 2021-09-05 18:30:40+00:00 1.0 1345038659 638 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-09-05 16:58:25+00:00 1.0 1345038659 636 3 hours and 20 minutes remaining until the big pump on binance the market is on fire today expect a massive pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-09-05 13:39:50+00:00 1.0 1345038659 635 24 hour left until the binance pump ready dear members this is a basic stepbystepguide for new members 1 ten min before 5pm gmt tomorrow have binancecom telegram open 2 at exactly 5pm gmt there will a message including the name of a coin in the telegram 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can read the socialmediaguide on prepare for tomorrows pump the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-09-04 17:04:46+00:00 1.0 1345038659 633 new binance pump announcement ⏳date sunday september 5 ⏰time 5 pm gmt exchange binance +40 whale channels target 200 520 profit 40 whale channels target 200 to 520 profit for vip premium coin earlier contact binancepumpadmin 2021-08-28 14:21:03+00:00 1.0 1345038659 615 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-07-11 16:55:20+00:00 1.0 1345038659 611 6 hours remaining until the big pump on binance our target dwill be 100 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready ⏳date sunday july 11 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-07-11 10:14:01+00:00 1.0 1345038659 606 new binance pump announcement ⏳date sunday july 11 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on july 11 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 11 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-06-27 20:26:49+00:00 1.0 1345038659 605 new binance pump announcement ⏳date sunday 04 july ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 the alt season of july is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended june with a huge profit rate our vip members have won the total of the following profit rates we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-06-27 20:17:35+00:00 1.0 1345038659 604 today binance pump analysis coin mth low 48 high 63 exchange binance profit 3124 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-06-27 17:07:36+00:00 1.0 1345038659 600 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-06-27 16:56:02+00:00 1.0 1345038659 593 new binance pump announcement ⏳date sunday june 27 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal pump will be on the weekend this usually has a higher volume and higher chances of bigger gains share and spread this post✅ invite your friends more members bigger the pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-06-06 19:38:46+00:00 1.0 1345038659 591 today binance pump analysis coin cnd low 55 high 91 exchange binance profit 6545 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump our february success rates are ✅ 6545 cnd binance 06 june ✅ 6610 binance 09 june ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-06-06 19:37:31+00:00 1.0 1345038659 588 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-06-06 16:55:43+00:00 1.0 1345038659 587 10 minutes left until the biggest binance pump 2021-06-06 16:50:17+00:00 1.0 1345038659 586 15 minutes left until the biggest binance pump 2021-06-06 16:45:01+00:00 1.0 1345038659 584 4 hours and 30 minutes left until the biggest binance pump signal of all time be ready target 80 140 profit we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-06-06 12:25:25+00:00 1.0 1345038659 583 new binance pump announcement ⏳date sunday june 6 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal pump will be on the weekend this usually has a higher volume and higher chances of bigger gains share and spread this post✅ invite your friends more members bigger the pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-06-01 22:16:23+00:00 1.0 1345038659 578 new binance pump announcement ⏳date sunday june 6 ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal pump will be on the weekend this usually has a higher volume and higher chances of bigger gains share and spread this post✅ invite your friends more members bigger the pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-05-17 04:22:46+00:00 1.0 1345038659 575 1 hour left until the biggest binance pump signal of all time 2021-05-16 16:01:42+00:00 1.0 1345038659 572 new binance pump announcement ⏳date 16 may ⏰time 5 pm gmt exchange binance +26 whale channels target 50 100 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal pump will be on the weekend this usually has a higher volume and higher chances of bigger gains share and spread this post✅ invite your friends more members bigger the pump we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-05-12 10:45:21+00:00 1.0 1345038659 565 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-05-09 16:55:40+00:00 1.0 1345038659 562 1 hour left until the biggest binance pump signal of all time we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-05-09 16:01:26+00:00 1.0 1345038659 561 1 hour 37 minutes left until the biggest binance pump signal of all time we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-05-09 15:24:18+00:00 1.0 1345038659 560 4 hours 15 minutes left until the biggest binance pump signal of all time be ready target 80 140 profit we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-05-09 12:44:22+00:00 1.0 1345038659 558 new binance pump announcement ⏳date sunday 9 may ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-05-05 19:38:54+00:00 1.0 1345038659 556 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-05-02 16:55:24+00:00 1.0 1345038659 555 10 minutes left until the binance pump are you ready 2021-05-02 16:50:33+00:00 1.0 1345038659 554 11 minutes left until the binance pump are you ready 2021-05-02 16:49:03+00:00 1.0 1345038659 553 30 minutes left until the binance pump are you ready 2021-05-02 16:30:28+00:00 1.0 1345038659 552 1 hour left until the binance pump are you ready 2021-05-02 16:00:08+00:00 1.0 1345038659 551 4 hours left until the binance pump 2021-05-02 13:00:49+00:00 1.0 1345038659 550 new binance pump announcement ⏳date may 02 ⏰time 5 pm gmt exchange binance +26 whale channels target 150 profit 2021-05-01 22:27:49+00:00 1.0 1345038659 547 we shared the coin name in our vip channel 18 hours before the pump 2021-04-26 17:28:40+00:00 1.0 1345038659 539 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-04-26 16:54:58+00:00 1.0 1345038659 535 1 hour left until the binance pump 2021-04-26 16:01:42+00:00 1.0 1345038659 531 new binance pump announcement ⏳date april 26 ⏰time 5 pm gmt exchange binance +26 whale channels target 300 profit 2021-04-25 20:49:18+00:00 1.0 1345038659 527 we shared the coin name at 205919 41 seconds before the time just to prove its our signal 2021-04-24 22:04:10+00:00 1.0 1345038659 524 we shared the coin name in our vip at 1700 gmt today 4 hours before the pump 2021-04-24 21:15:41+00:00 1.0 1345038659 521 we shared coin name in vip channel 4 hours before the pump 2021-04-24 21:13:16+00:00 1.0 1345038659 518 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-04-24 20:55:02+00:00 1.0 1345038659 514 1 hour 29 mins left until the binance pump 2021-04-24 19:32:00+00:00 1.0 1345038659 505 we shared the coin name on our vip channel on sunday april18th 2021 1800 gmt 2021-04-22 19:37:14+00:00 1.0 1345038659 500 next post will be the coin name ready 2021-04-21 20:58:29+00:00 1.0 1345038659 499 5 minutes left until the binance pump ready 2021-04-21 20:54:35+00:00 1.0 1345038659 498 10 minutes left until the binance pump ready 2021-04-21 20:49:49+00:00 1.0 1345038659 497 15 minutes left until the binance pump ready 2021-04-21 20:44:46+00:00 1.0 1345038659 496 30 minutes left until the binance pump ready 2021-04-21 20:30:39+00:00 1.0 1345038659 495 55 minutes left until the binance pump ready 2021-04-21 20:04:37+00:00 1.0 1345038659 494 1 hour and 30 minutes left until the binance pump ready 2021-04-21 19:31:18+00:00 1.0 1345038659 488 the new date and time for the pump exchange binancecom date 21april2021 time 9pm gmt in the past week the server has grown a lot therefore we can expect an insane volume comparable to the dlt pump a few weeks ago which gained more than 2500 btc volume in two hours 2021-04-17 16:41:35+00:00 1.0 1345038659 487 new binance pump announcement ⏳date april 24 ⏰time 9 pm gmt exchange binance +26 whale channels target 80 140 profit with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 10 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-16 19:16:12+00:00 1.0 1345038659 486 today binance pump analysis coin ong low 1879 high 2191 exchange binance profit 1660 profit due to the intense insistence of our vip members we chose a high volume coin we didnt choose the right coin our vip members have made good profits but i cant say the same for our free members thats why well be choosing lowvolume coins at our next pumps our next pump target will be 250 profit our april success rates are ✅ 1660 ong binance 12 april ✅ binance april we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-12 17:07:33+00:00 1.0 1345038659 484 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-04-12 16:55:50+00:00 1.0 1345038659 483 only 10 minutes left log in your binance accounts be ready with spare btc we are about to fly exchange binance 2021-04-12 16:50:44+00:00 1.0 1345038659 482 binance pump starts in 55 minutes ready guys do get this seriously understand when over 132k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time 55 minutes remaining today 5 pm gmt exchange binance we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-12 16:05:47+00:00 1.0 1345038659 481 new binance pump announcement ⏳date 12th april ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 12 we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we had 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-12 08:20:49+00:00 1.0 1345038659 478 55 minutes left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-11 16:05:38+00:00 1.0 1345038659 477 3 hours and 30 minutes left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-11 13:31:38+00:00 1.0 1345038659 476 binance pump starts in 21 hours ready the day has arrived 21 hours remaining until our biggest pump signal event of all time we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-10 20:21:53+00:00 1.0 1345038659 474 new binance pump announcement ⏳date sunday april 11 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 11 we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-04-04 20:15:57+00:00 1.0 1345038659 473 last binance pump analysis coin pivx low 2937 high 11612 exchange binance profit 29536 profit pump results 1400 btc volume which is around 80m with this amount of volume we should normally be able to pump coins above 500+ fairly easily although the volume was massive we did not manage to reach our target of 5001000 after looking carefully at the data we saw that the sell pressure came from the eth pairing we are not quite sure exactly where those sells were coming from but we will look further into it to make sure it doesnt happen in our next pump and reach the result we were meant to reach in this pump thank you all for participating we will announce our next date shortly we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-31 18:36:45+00:00 1.0 1345038659 469 new binance pump announcement ⏳date march 28 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit biggest mountain pump signal we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-23 17:35:58+00:00 1.0 1345038659 468 new binance pump announcement ⏳date march 28 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit biggest mountain pump signal we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-21 18:49:02+00:00 1.0 1345038659 467 new binance pump announcement ⏳date march 22 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit biggest mountain pump signal we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this our february success rates are 388935 total profit our march success rates are ✅ 5111sky binance 01 march ✅ 45785 ppt binance 7 march ✅ 5475 ctxc binance 18 march ✅ binance 22 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-21 18:44:12+00:00 1.0 1345038659 465 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:02:20+00:00 1.0 1345038659 464 today binance pump analysis coin ctxc low 484 high 749 exchange binance profit 5475 profit next pump 21 march we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-18 21:38:40+00:00 1.0 1345038659 461 wooow good pump weve been on top for five minutes 2021-03-18 17:19:12+00:00 1.0 1345038659 459 next post will be the binance coin 4 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-03-18 16:56:39+00:00 1.0 1345038659 458 only 7 minutes left log in your binance accounts be ready with spare btc we are about to fly exchange binance 2021-03-18 16:53:51+00:00 1.0 1345038659 457 binance pump starts in 1 hour ready only about 1 hour left mountain pump is going to get insanely fomo you guys can hype the coin in twitter also to bring more fomo be ready guys with spare btc exchange binance 6 hrs remaining today 5 pm gmt we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-18 16:52:02+00:00 1.0 1345038659 456 binance pump starts in 6 hours ready only about 6 hours left mountain pump is going to get insanely fomo you guys can hype the coin in twitter also to bring more fomo be ready guys with spare btc exchange binance 6 hrs remaining today 5 pm gmt we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message premium member contact binancepumpadmin 2021-03-18 11:19:26+00:00 1.0 1345038659 455 attention new pump announcement biggest mountain pump signal is coming at 18th march tomorrow we are going to see the biggest mountain pump ever with 102k participants get yourself ready for this exchange binance 18th march 5 pm gmt we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-17 16:56:42+00:00 1.0 1345038659 453 new binance pump announcement ⏳date sunday march 21 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit with all of our members making more than 200 and 300 profit consecutively with 2 of our last pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 21 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-14 16:02:08+00:00 1.0 1345038659 452 new binance pump announcement ⏳date sunday march 21 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit with all of our members making more than 200 and 300 profit consecutively with 2 of our last pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 21 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-09 19:27:39+00:00 1.0 1345038659 451 today binance pump analysis coin ppt low 6274 high 35000 exchange binance profit 45785 profit pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-07 17:59:08+00:00 1.0 1345038659 447 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-03-07 16:56:19+00:00 1.0 1345038659 446 binance pump starts in 30 minutes ready 30 minutes remaining until our pump on binance our reposter bot had a few issues and it is fixed now everything is looking perfect now and we are more than ready to pump be ready premium member contact binancepumpadmin 2021-03-07 16:31:36+00:00 1.0 1345038659 445 binance pump starts in 1 hours ready 1 hour remaining until our pump on binance our reposter bot had a few issues and it is fixed now everything is looking perfect now and we are more than ready to pump be ready premium member contact binancepumpadmin 2021-03-07 16:04:54+00:00 1.0 1345038659 443 binance pump starts in 24 hours ready everyone only 24 hours left until our next pump on binancecom our last pump of sky was huge going to over 51 and attaining nearly 1000 btc of volume tomorrow we will look to grow the pump even larger our signal will reach a much larger audience of up to 1 million people as all groups have continued to grow over these past 2 weeks by now you know the drill but if you dont check out the howtopump guide we pump on binancecom we use the btc pair for our coin we buy the coin quickly with massive volume causing a huge spike and gaining the attention of the outside trading world please see all available information so you can be fully prepared to earn maximum profit we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-06 20:01:55+00:00 1.0 1345038659 442 new binance pump announcement ⏳date 7 march ⏰time 5 pm gmt exchange binance +26 whale channels target 80 140 profit we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-03-05 20:06:30+00:00 1.0 1345038659 438 today binance pump analysis coin nxs low 2001 high 10000 exchange binance profit 39975 profit pump result 1000 btc volume in a few minutes which is close to 60 million with a peak of 350 amazing pump everyone we are receiving unbelievable amounts of messages of appreciation and we are glad many of you managed to make massive profits in this pump we are officially the biggest pump community in the world our whales did their part once again and pushed the price up to 10000 satoshi for all our members to profit our volume keeps getting bigger every pump and we are confident that in the next pump we will be able to hit 5001000 profit for all our members stay tuned for the next pump announcement our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump wooowww good pump yes yes yesss our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ 39975 nxs binance 21 february ✅ binance february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-21 18:27:27+00:00 1.0 1345038659 433 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-21 16:55:25+00:00 1.0 1345038659 430 new binance pump announcement ⏳date 21feb2021 sunday ⏰time 5 pm gmt exchange binance +26 whale channels target 30 80 profit with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-21 12:09:38+00:00 1.0 1345038659 429 new binance pump announcement ⏳date 21feb2021 sunday ⏰time 5 pm gmt exchange binance +26 whale channels target 30 80 profit with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-20 20:34:05+00:00 1.0 1345038659 428 today binance pump analysis coin gvt low 906 high 1651 exchange binance profit 8222 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump with a volume over 100 btc for this pump we peaked gvt at 79 the volume was incredible the peak was incredible the duration to peak will be improved upon and more pumps even better than the last are yet to come our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ 8222 gvt binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-20 20:33:28+00:00 1.0 1345038659 424 next post will be the binance coin 4 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-20 16:56:30+00:00 1.0 1345038659 423 binance pump starts in 10 mins ready after the coin posts help promote the pump coins by posting it on social media liking rt tweets about the coin youtube comments sharing it in other groups etc this will help drive the pump even more we are very excited for this pump and hope you are all ready for this massive event in 1 hour our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-20 16:49:42+00:00 1.0 1345038659 422 binance pump starts in 1 hour ready bitcoin hit yet another all time high today this is a huge indicator of how much interest there is in crypto right now whichever altcoin we choose to pump will quickly dominate all other coins and become the top gainer and most trending coin of the day the value of our coin will sky rocket and we will all make great profit buy in quickly to get the lowest price as the coin will start rising as soon as its posted use limit sells to sell the coin when it reaches the expected gain for max profit see the help channels or ask in the chat if you need further guidance notes 1 we trade on binancecom only you need an account on binancecom to enter the pump 2 we tade bitcoin for our chosen coins you need bitcoin in your account to trade with 3 usa users can join binancecom using a vpn our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-20 16:03:24+00:00 1.0 1345038659 421 new binance pump announcement ⏳date saturday feb 20th ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we are growing at an incredible rate meanwhile crypto markets are all pumping this sets us up for a very successful pump saturday our goal is not to reach the highest gain possible our goal is for all members to profit greatly and hold the pump as long as possible we want to buy low pump the coin 70150 and sell high because 70150 is where the most outsiders will buy from us to keep the pump going earning the most people the most profit our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ 12878 nebl binance 13 february ✅ binance 20 february ✅ binance 21 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-18 18:38:33+00:00 1.0 1345038659 420 new binance pump announcement ⏳date 21feb2021 sunday ⏰time 5 pm gmt exchange binance +26 whale channels target 30 80 profit with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ binance 21 february ✅ binance february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-16 20:52:24+00:00 1.0 1345038659 415 new binance pump announcement ⏳date saturday february 13 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 90 profit we have been pumping quite often this week with most pumps being successful and our members making massive amounts of profits we have been in talks with a few large groups that have done successful 400 pumps in the past and we have decided to combine our power to create one of the biggest and most successful pump in the history of our group in this pump we can guarantee a 500 pump for all our members we will be promoting our pump all over reddit and across all social media hundreds of thousands of people all across the world will attend this pump and we welcome everyone to join us as we create one of the most powerful pump binance has seen lately on top of that many new binance whales will be joining us to make sure every single member in our group will profit we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of wallstreetbets we will be giving out more information about our upcoming pump in the upcoming days stay tuned our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ binance 13 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-12 22:32:50+00:00 1.0 1345038659 414 new binance pump announcement ⏳date saturday february 13 ⏰time 5 pm gmt exchange binance +26 whale channels target 80 90 profit we have been pumping quite often this week with most pumps being successful and our members making massive amounts of profits we have been in talks with a few large groups that have done successful 400 pumps in the past and we have decided to combine our power to create one of the biggest and most successful pump in the history of our group in this pump we can guarantee a 500 pump for all our members we will be promoting our pump all over reddit and across all social media hundreds of thousands of people all across the world will attend this pump and we welcome everyone to join us as we create one of the most powerful pump binance has seen lately on top of that many new binance whales will be joining us to make sure every single member in our group will profit we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of wallstreetbets we will be giving out more information about our upcoming pump in the upcoming days stay tuned our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ binance 19 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-10 21:19:58+00:00 1.0 1345038659 413 today binance pump analysis coin vib low 104 high 688 exchange binance profit 56153 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-10 21:19:03+00:00 1.0 1345038659 410 binance pump starts in 7 hours ready target 800 profit checklist for todays pump have an account on binance global so not binanceus at 9 pm gmt have telegram open have all your social media channels twitter reddit etc open and ready to start the hype more information will follow soon target 800 profit ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-10 14:01:57+00:00 1.0 1345038659 408 new binance pump announcement ⏳date 10feb2021 wednessday ⏰time 9 pm gmt exchange binance +26 whale channels target 80 90 profit we have been pumping quite often this week with most pumps being successful and our members making massive amounts of profits we have been in talks with a few large groups that have done successful 400 pumps in the past and we have decided to combine our power to create one of the biggest and most successful pump in the history of our group in this pump we can guarantee a 500 pump for all our members we will be promoting our pump all over reddit and across all social media hundreds of thousands of people all across the world will attend this pump and we welcome everyone to join us as we create one of the most powerful pump binance has seen lately on top of that many new binance whales will be joining us to make sure every single member in our group will profit we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of wallstreetbets we will be giving out more information about our upcoming pump in the upcoming days stay tuned our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ binance 10 february we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-08 18:23:26+00:00 1.0 1345038659 407 because of the doge coin pump were going to postpone todays pump ill share the pump date and time soon 2021-02-07 20:51:34+00:00 1.0 1345038659 404 binance pump starts in 9 hours ready this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in the pumpsignalfebruary7 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-07 12:06:06+00:00 1.0 1345038659 403 binance pump starts in 9 hours ready with all social media channels combined big pump signal has over 350000 members we might all be small investors but we have an insane social media presence tonight at 9 pm gmt we will coordinately buy hype and push up the price of a coin target 800 profit ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-07 11:58:10+00:00 1.0 1345038659 402 ⏳date sunday 7 febuary ⏰time 9 pm gmt exchange binance +16 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ binance 07 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-07 11:57:14+00:00 1.0 1345038659 398 today binance pump analysis coin vib low 104 high 688 exchange binance profit 56153 profit our vip members made big gains but our free members didnt win at this pump were sorry about that well make it up to you at the next pump our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ 56153 vib binance 05 february ✅ binance 06 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-05 21:04:51+00:00 1.0 1345038659 395 binance pump starts in 4 hours ready this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignalfebruary5 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-05 17:11:21+00:00 1.0 1345038659 392 new binance pump announcement ⏳date 05feb2021 friday ⏰time 9 pm gmt exchange binance +26 whale channels target 500 800 profit what an insane pump our helper is getting flooded with positive messages todays pump saw a peak of 1600 and is still up a lot as of right now like last pump there is still plenty of upside potential last pump had price swings of 300 the day after because of the enormous amount of positive feedback through discord twitter and other channels we have decided to schedule a new pump the social media campaign has been very effective today more than 1600 btc flowed into sky in the first hour after the call which is insane the next pump will be even bigger we got over 3000 messages of members that only had usdt and did not have btc in their wallet always trade the btc pair our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ binance 05 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-05 10:26:10+00:00 1.0 1345038659 391 today binance pump analysis coin fio low 219 high 355 exchange binance profit 6210 profit next pump tomorrow our february success rates are ✅ 248215 sky binance 03 february ✅ 6610 fio binance 04 february ✅ binance 05 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-04 17:12:05+00:00 1.0 1345038659 387 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-04 16:55:30+00:00 1.0 1345038659 385 binance pump starts in 30 minutes ready understand when over 350k traders join the mountain pump and when later the entire crypto twitter joins the mountain pump party just imagine what will happen its gonna gain over 1000+ btc volume price will go mad with that massive volume just remember the time pin our channel on top 1 hr remaining today 5 pm gmt ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-04 16:31:14+00:00 1.0 1345038659 384 binance pump starts in 02 hours and 30 minutes ready hope u ready for this massive mountain pump event get your binance accounts ready this time this mountain pump alt will also be promoted in twitter too with over 350k participants expect 500 gain ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-04 14:28:46+00:00 1.0 1345038659 383 new binance pump announcement ⏳date 4th february ⏰time 5 pm gmt exchange binance +26 whale channels target 500 800 profit biggest mountain pump signal is coming tomorrow with more than 350k participants we are going to see the biggest mountain pump ever the volume push will be so hard that it will easily hit 500 get yourself ready for this tomorrow 4th february 5 pm gmt our february success rates are ✅ 248215 sky binance 03 february ✅ binance 04 february ✅ binance 05 february the social media campaign has been very effective today more than 1600 btc flowed into sky in the first hour after the call which is insane the next pump will be even bigger we got over 3000 messages of members that only had usdt and did not have btc in their wallet always trade the btc pair ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-03 22:20:50+00:00 1.0 1345038659 382 today binance pump analysis coin sky low 1880 high 48560 exchange binance profit 248215 profit please review our vip channel image above sign up now and dont miss the next pump our february success rates are ✅ 248215 sky binance 03 february ✅ binance 04 february ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-03 21:37:13+00:00 1.0 1345038659 375 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-02-03 20:55:31+00:00 1.0 1345038659 371 binance pump starts in 4 hours and 10 minutes ready this is a basic stepbystepguide for new members 1 ten minutes before 9 pm gmt have binancecom telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignalfebruary3 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can weve seen what a group of small investors can do in our past pumps tonight is going to be huge if we work together ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-03 16:50:17+00:00 1.0 1345038659 370 details exchange binancecom international date 03feb2021 tuesday time 9pm gmt take these 24 hours to invite more people 2021-02-02 20:58:43+00:00 1.0 1345038659 369 dear members sad announcement we will postpone tonights pump to tomorrow 9 pm gmt as we are experiencing problems with discord due to the high number of members the server is experiencing extreme outages and we need to contact discord to fix this takes around 12 hours if we would pump right now we would lose nearly 50 of the volume waiting 24 hours is more than worth it we hope you understand why postponing the pump is better at this moment we understand everyone was hyped but this is for the better this also gives new us users time to create an account on binance global the pump team 2021-02-02 20:57:39+00:00 1.0 1345038659 366 binance pump starts in 39 mins ready 1 ten minutes before 9 pm gmt have binancecom discord and telegram open 2 at exactly 9pm gmt there will be a message including the name of a coin in pumpsignal2february and telegram 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-02 20:21:26+00:00 1.0 1345038659 365 binance pump starts in 3 hours ready 3 hours and 40 minutes left until the pump this is a basic stepbystepguide for new members 1 ten miutes before 9 pm gmt have binancecom telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in pumpsignal2february and telegram 3 after we announce the coin buy it with bitcoin on the spot market 4 after buying the coin push out as many social media posts as you can as fast as you can ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-02 17:22:04+00:00 1.0 1345038659 364 new binance pump announcement ⏳date 02feb2021 tuesday ⏰time 9 pm gmt exchange binance +26 whale channels target 500 800 profit todays pump saw a peak of 1100 and is still up 120 as of right now additionally there is still plenty of upside potential because of the enormous amount of positive feedback through telegram twitter and other channels we have decided to schedule a new pump the social media campaign has been very effective today more than 110 million usd flowed into pnt in the first hour after the call which is insane the next pump will be even bigger ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-02-01 14:46:50+00:00 1.0 1345038659 356 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-31 20:55:33+00:00 1.0 1345038659 355 binance pump starts in 5 hours ready 1 ten miutes before 9 pm gmt have binancecom telegram open 2 at exactly 9pm gmt there will a message including the name of a coin in the telegram 3 after we announced the coin quickly buy it 4 after buying the coin push out as many social media posts as you can as fast as you can ☄️☄️ we explain the name of the coin to our vip members on our vip channel 1 day or 3 days before and they buy it primarily take advantage of this privilege send a message now premium member contact binancepumpadmin 2021-01-31 16:07:11+00:00 1.0 1345038659 354 new binance pump announcement ⏳date 31jan2021 sunday ⏰time 9 pm gmt exchange binance +26 whale channels target 40 60 profit we just bought the channel soon we will come up with a new vision the first pump date will be january 31st our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ 5057 nxs binance 15 jauary ✅3043 idex binance 17 jauary ✅ 12349 gvt binance 23 jauary ✅ binance 31 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-27 20:48:30+00:00 1.0 1345038659 349 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-23 20:54:43+00:00 1.0 1345038659 347 30 minutes left until our big pump on binance ⁉️❓⁉️ be ready ⁉️❓⁉️ our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-23 20:30:34+00:00 1.0 1345038659 346 2 hours left until our big pump on binance a basic explanation of tonights pump have binance discord and telegram open at exactly 9pm gmt there will a call in the pumpsignal23january channel on discord and on the telegram at the same time for example the coin we picked is xxx after we announced the coin buy it and wait for the price to increase in the meanwhile we will push out a lot of social media posts everyone in the group can help us by sharing the coin on their social media reddit posting it twitter and using hashtags head over to socialmediaguide steps to follow for a successful pump 1 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market to not instantly drop 2 keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 3 like mentioned above share positive news about the coin on social media to create an even bigger amount of fomo fear of missing out if we all work together we will be able to create an amazing and healthy pump we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-23 19:12:53+00:00 1.0 1345038659 345 5 hours and 25 minutes left until our big pump on binance instructions to complete your buy order on time free pump is risky please be careful to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this big pump our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-23 15:35:48+00:00 1.0 1345038659 342 24 hours left until our big pump on binance let the countdown begin ⏳date january 22 ⏰time 5 pm gmt dont miss the last pump in december were going to build some big pumps in the new year please be careful because free pumps are very risky if you dont want to take risks you can become a vip member 3 days ago or 1 day ago we tell you the name of the coin sign up now and dont lose any more money in 2021 the only way to achieve and gain is to become a vip member we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-21 17:40:05+00:00 1.0 1345038659 340 new binance pump announcement ⏳date january 22 ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we can say the next titanium alt is going to be huge bcoz this is freaking alt season alts rising 50 80 within days so our today titanium alt is going to rise 500+or not we will see time will tell see you all today 5 pm gmt with our titanium alt signal our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ 5057 nxs binance 15 jauary ✅3043 idex binance 17 jauary ✅ binance 20 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-17 19:17:34+00:00 1.0 1345038659 334 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-17 16:57:09+00:00 1.0 1345038659 333 15 mins left until our big pump on binance our push today is going to be massive the expected target is 80100 we expect this push to be one of the biggest we have done to date be ready get ready for todays big binance pump our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-17 16:44:25+00:00 1.0 1345038659 330 7 hours and 30 minutes left until our big pump on binance to buy quickly click on a buy order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher buy order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest buy order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-17 09:28:54+00:00 1.0 1345038659 327 new binance pump announcement ⏳date sunday january 17 ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we are ready for our next big push our target for this push will be up to 200 with the success of our previous push we expect our volume to be much bigger as well our group has grown a lot as we have gained thousands of new members over the past few days we welcome everyone to join us as we create the ultimate mega push binance has been waiting for in our last push we mentioned that we would have our big whale push the price up for us after our members bought we will be doing the same thing in this upcoming push to make sure all our members make a good profit our expectations for this push are big we want multiple waves and a action packed push with multiple opportunities to make profit we will be giving out more information about our upcoming push before the push stay tuned our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ 5057 nxs binance 15 jauary ✅ binance 17 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-15 19:50:17+00:00 1.0 1345038659 318 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-15 16:58:23+00:00 1.0 1345038659 317 5 minute left until our big pump on binance 2021-01-15 16:56:05+00:00 1.0 1345038659 316 30 minute left until our big pump on binance 2021-01-15 16:30:39+00:00 1.0 1345038659 315 1 hours left until our big pump on binance our push today is going to be massive the expected target is 80100 we have surpassed 10000 active members and already reached 11000 in the past 2 days we expect this push to be one of the biggest we have done to date be ready get ready for todays big binance pump our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-15 16:02:08+00:00 1.0 1345038659 314 1 hour 25 minutes left until our big pump on binance ⁉️❓⁉️ be ready ⁉️❓⁉️ our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-15 15:36:28+00:00 1.0 1345038659 313 new binance pump announcement ⏳date friday 15 january ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ binance 15 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-13 17:44:30+00:00 1.0 1345038659 309 new binance pump announcement ⏳date wednesday 13 january ⏰time 5 pm gmt exchange binance +26 whale channels target 60 90 profit we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ 5260 ong binance 11 jauary ✅ binance 13 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-12 17:26:00+00:00 1.0 1345038659 303 new binance pump announcement ⏳date 11 january ⏰time 4 pm gmt exchange binance +26 whale channels target 60 90 profit as you can see alt markets are picking up people started investing in altcoins exactly three years back this was the time where alts made 4x7x growth in a couple of days but this time we are with you after thoroughly scanning all the alts we will post the next possible multibagger her on 11th jan 4 pm gmt the titanium signal our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ 35080 evx binance 09 jauary ✅ 3920 rcn binance 10 jauary ✅ binance 11 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-10 19:35:07+00:00 1.0 1345038659 297 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-09 20:55:59+00:00 1.0 1345038659 294 new binance pump announcement ⏳date 09 january 2020 ⏰time 9 pm gmt exchange binance +26 whale channels target 260 360 profit we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ binance 09 jauary ✅ binance 11 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-08 20:09:54+00:00 1.0 1345038659 293 today binance pump analysis coin rcn low 48 high 70 exchange binance profit 4583 profit amazing push on vib our volume was great and it managed to hold the top at 70 for a few minutes meaning most of our members were able to sell at a good profit our pushes are getting better lately and we expect them to keep getting better we have done 120 on idex which by the way is still trending today and could still go for another big push our next push we will attempt to do something similar with a target of almost 100 our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ 4583 vib binance 08 jauary ✅ binance 09 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-08 20:09:31+00:00 1.0 1345038659 292 ✔️ill share detailed analysis soon get ready for the new pump date this ones going to be huge 2021-01-08 17:05:10+00:00 1.0 1345038659 289 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-08 16:55:58+00:00 1.0 1345038659 287 4 hours left until our big pump on binance to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 80100 lets beat this our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-08 13:06:54+00:00 1.0 1345038659 286 new binance today pump announcement ⏳date 08 january 2020 ⏰time 5 pm gmt exchange binance +26 whale channels target 60 160 profit 6 hours left until our big pump on binance please be careful because free pumps are very risky if you dont want to take risks you can become a vip member 3 days before or 1 day before we tell you the name of the coin sign up now and dont lose any more money in 2021 the only way to achieve and gain is to become a vip member our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 08 jauary ✅ 19754 rcn binance 08 jauary ✅ binance 08 jauary ✅ binance 09 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-08 13:06:22+00:00 1.0 1345038659 281 next post will be the binance coin 2 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2021-01-07 20:58:47+00:00 1.0 1345038659 279 todays flash pump ⏳date today ⏰time 2100 gmt 4pm est exchange binance +30 whale channels target 80 160 profit exchange binance com not binance us we saw a great profit opportunity today were going to have a great pump our vip members purchased it during the day the pump will start in three hours please follow the countdown in addition tomorrows pump which we shared above is active were going to have another pump tomorrow but first lets start the countdown to our pump which begins in three hours we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-07 20:53:22+00:00 1.0 1345038659 278 today binance pump analysis coin ctxc low 217 high 435 exchange binance profit 10046 profit our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ 10046 ctxc binance 07 jauary ✅ binance 08 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-07 16:15:38+00:00 1.0 1345038659 272 new binance pump announcement ⏳date 7 january and 8 january ⏰time 5 pm gmt exchange binance +26 whale channels target 30 60 profit unlucky for us the mda whale dumped us we tried to recover the price many times but the sell pressure was too much finally did manage to do a peak of 18 after we announced the signal and wednesday you will recover all your losses and profit more you can be sure of that we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very very huge stay tuned our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary ✅ binance 07 jauary ✅ binance 08 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-06 18:58:47+00:00 1.0 1345038659 270 today binance pump analysis coin mda low 1606 high 2652 exchange binance profit 5664 profit our vip members won huge profit rates in today soon ill share our next pump our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ 5664 mda binance 03 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-03 17:10:48+00:00 1.0 1345038659 262 5 hours left until our big pump on binance 5 hours left until our big pump on binance things are looking great we are confident we have picked the best coin to pump today to attract outsider fomo our whales have given us a target for this pump of more than100 spread the word about our pump we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-03 10:34:40+00:00 1.0 1345038659 261 new binance pump announcement ⏳date sunday 03 january ⏰time 5 pm gmt exchange binance +26 whale channels target 30 60 profit we completed december with 11 pumps our total profit rate for december 106034 profit its the biggest monthly profit rate weve ever earned our vip members entered 2021 very happily due to this profit rate invest in your future and send me a message immediately january pumps begin our november success rates are —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are —+—+—+—+—+—+—+—+—+—+—+ 106034 total profit yees amazing month an amazing month —+—+—+—+—+—+—+—+—+—+—+ our january success rates are ✅ 125658 nebl binance 02 jauary ✅ binance 03 jauary our vip members buy 1 day before or 3 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2021-01-03 10:34:10+00:00 1.0 1345038659 250 35 minutes left until our big pump on binance login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast rebuy the dips hold for maximum profit huge fomo warming up vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2020-12-11 17:24:12+00:00 1.0 1345038659 249 5 hours and 23 minutes left until our big pump on binance things are getting hot alts market looks good u can join the 100 gainer party all of binance will take notice this push vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2020-12-11 12:37:27+00:00 1.0 1345038659 248 new binance pump announcement ⏳date friday 11 december 2020 ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit our vip members have won the total of the following profit rates 39543 profit you can join our team for new achievements in december please follow our countdowns keep in mind that joining the free pump carries risks if you do not want to take risks please become a vip member we give you the name of the coin 1 day ago or 3 days ago youre buying it in advance we give you a 247 special counsel hell give you all the technical information invest in your future and contact us our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december ✅ binance 11 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day before premium member contact binancepumpadmin 2020-12-09 17:21:53+00:00 1.0 1345038659 247 today binance pump analysis coin brd low 391 high 503 exchange binance profit 3094 profit the pump stayed up for eight minutes everybody made money our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ 2419 appc binance18november ✅ 2167 mda binance 27 november —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ 3094 brd binance 6 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact binancepumpadmin 2020-12-06 18:10:16+00:00 1.0 1345038659 241 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-06 17:56:13+00:00 1.0 1345038659 240 1 hours left until our big pump on binance things are getting hot market looks good u can join the 100 gainer party all of binance will take notice this push the markets are looking great for our push today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today which is about to start in 60 minutes vip members have the option to buy 1 day or 3 day ago premium member contact binancepumpadmin 2020-12-06 17:02:13+00:00 1.0 1345038659 238 new binance pump announcement ⏳date sunday 06 december ⏰time 6 pm gmt exchange binance +26 whale channels target 30 50 profit tomorrow the pump will be incredible its going to be the biggest pump of late our vip members have won the total of the following profit rates 39543 profit you can join our team for new achievements in december our december success rates are ✅ 3458 nebl binance 2 december ✅ 7021 pnt binance 5 december ✅ binance 6 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact binancepumpadmin 2020-12-05 12:22:37+00:00 1.0 1345038659 232 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-04 22:55:38+00:00 1.0 1345038659 231 1 hours left until our big pump on binance want to lose money in bitcoin or do you want to make money in 15 minutes you never know if bitcoin will fall but were telling you the coin name the day before we guarantee a profit ratio invest in your future or get ready to lose because you can never compete with whales join us and be a real whale we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact binancepumpadmin 2020-12-04 22:06:23+00:00 1.0 1345038659 230 5 hours and 30 minutes left until our big pump on binance dear members around 5 hours and 30 minutes left until the big binance pump this is an important post first a basic explanation of tonights pump have binance telegram open at exactly 11pm gmt there will a call in the pumpsignal channel for example the coin we picked is xxx after we announced the coin buy it and wait for the price to increase in the meanwhile we will push out a lot of social media posts we have a big reach everyone in the group can help us by sharing the coin on their social media reddit posting it twitter and using hashtags this so called social media effect does not hit instantly it will take around 20 minutes to hit so buying bottoms during the pump is never a bad idea some basics 1 after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop 2 keep the pump alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 100 price 10 minutes after the pump 200 set buy wall at 150 3 we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out the pump team we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact binancepumpadmin 2020-12-04 17:37:10+00:00 1.0 1345038659 223 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-12-02 17:55:38+00:00 1.0 1345038659 222 1 hours left until our big pump on binance things are getting hot market looks good u can join the 100 gainer party all of binance will take notice this push which is about to start in 60 minutes we are the most reliable and best pump channel in the world vip members have the option to buy 1 day or 3 day ago premium member contact binancepumpadmin 2020-12-02 17:02:17+00:00 1.0 1345038659 221 22 hours left until our big pump on binance we have new members i want to welcome you all we continue our pumps rapidly with our major investor partners whale channels and vip members our new members can see our success rates by going up the channel see for yourself that we are the worlds big pump channel tomorrow at this sharing time our pump signal will start follow the countdown be sure to watch or join if you dont want to take risks we give you the coin name 1 day ago please send a message from us to find out the coin name pump coini will be announced on our vip channel in an hour our december success rates are ✅ binance 2 december ✅ binance 3 december we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact binancepumpadmin 2020-12-01 20:31:51+00:00 1.0 1345038659 220 new binance pump announcement ⏳date wednesday 02 december ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates 39543 profit you can join our team for new achievements in december our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ 2419 appc binance18november ✅ 2167 mda binance 27 november —+—+—+—+—+—+—+—+—+—+—+ 39543 total profit wooow an amazing month —+—+—+—+—+—+—+—+—+—+—+ our december success rates are ✅ binance 2 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact binancepumpadmin 2020-11-29 12:18:13+00:00 1.0 1345038659 219 today binance pump analysis coin mda low 2856 high 3475 exchange binance profit 2167profit good pump the pump continues to be resistant 8 minutes later hes back on the youre great our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ 2419 appc binance18november ✅ 2167 mda binance 27 november ✅ binance 28 november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact binancepumpadmin 2020-11-27 21:10:27+00:00 1.0 1345038659 215 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-27 20:55:51+00:00 1.0 1345038659 214 1 hours left until our big pump on binance things are getting hot market looks good u can join the 60 gainer party all of binance will take notice this push which is about to start in 60 minutes vip members have the option to buy 1 day ago premium member contact binancepumpadmin 2020-11-27 20:15:45+00:00 1.0 1345038659 212 today binance pump analysis coin appc low 124 high 154 exchange binance profit 2419 profit the pump continues to be resistant 10 minutes later hes back on the youre great the advantages of being a vip member are very important please invest in your future and join our team the pump was amazing today all our vip members made a profit its going great this month our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ 2419 appc binance 18 november ✅ binance november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-19 08:34:36+00:00 1.0 1345038659 208 4 hours left until our big pump on binance our whales are more than ready… are you btc crossed to 179k and alts dumped hard is the perfect moment to push be ready at 6pm gmt today read the push plan in the pinned post less than 4 hours left until the bigpushcallbang we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-18 14:01:04+00:00 1.0 1345038659 206 new binance pump announcement ⏳date wednesday 18 november ⏰time 6 pm gmt exchange binance +26 whale channels target 80 90 profit this push is free for everyone everyone will get a coin at the same time we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tuned our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ binance 18 november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-15 12:27:22+00:00 1.0 1345038659 205 today binance pump analysis coin bcpt low 115 high 157 exchange binance profit 3652 profit the pump continues to be resistant 10 minutes later hes back on the youre great the advantages of being a vip member are very important please invest in your future and join our team the pump was amazing today all our vip members made a profit its going great this month our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november ✅ 3652 bcpt binance 14 november ✅ binance november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-14 18:22:22+00:00 1.0 1345038659 199 4 hours left until our big pump on binance the markets are looking great for our pumppush bitcoin is sideways and all altcoins are on the rise today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today go go gothe time is coming for bigpushcallbang vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-14 14:06:33+00:00 1.0 1345038659 196 new binance pump announcement ⏳date saturday 14 november ⏰time 1800 pm gmt exchange binance +26 whale channels target 80 90 profit we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tuned our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ 7582 brd binance 9 november amazing ✅ binance 14 november our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-10 14:58:41+00:00 1.0 1345038659 190 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-11-09 15:57:59+00:00 1.0 1345038659 188 3 hours left until our big pump on binance alts are showing big jumps from supports after the correction great time to see our mountain alt rising 300 today lets hope so 3 hrs remaining today | 4 pm gmt vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-09 13:13:30+00:00 1.0 1345038659 187 3 hours left until our big pump on binance seems like time is going away faster today isnt it bcoz of 80 big gainer mountain alt signal is arriving in less than 3 hrs today | 4 pm gmt vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-09 12:54:40+00:00 1.0 1345038659 186 5 hours and 30 minutes left until our big pump on binance we are pretty much sure about our mountain alt is going to hit 80+ today be ready to see that about 8hrs remaining today | 4 pm gmt exchange binance our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ binance 9 november vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-09 10:29:27+00:00 1.0 1345038659 185 new binance pump announcement ⏳date monday 9 november ⏰time 4 pm gmt exchange binance +26 whale channels target 90 160 profit trust is very important in the vip membership system ask us for evidence for the latest pump the nxs coin well give you the information take advantage of discount opportunities for vip membership and send messages now are u ready for the next mountain alt its gonna be huge and a sure 80 gainer alts are having very very less volume and all of them are going to pump hard from this level btc is now resting best time for 80 mountain alt signal monday | 9th nov 4 pm gmt stay tuned✌️ our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ 4601 nxs binance 6 november ✅ binance 9 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-08 09:49:13+00:00 1.0 1345038659 181 4 hours left until the binance pump everyone tik tok tik tok the time is moving faster and we are only 4 hrs away from bigpushcallbang today 6th nov 20 pm gmt read the push plan in the pinned post vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-06 16:01:47+00:00 1.0 1345038659 180 new binance pump announcement ⏳date friday 6 november ⏰time 2000 pm gmt exchange binance +20 whale channels target 30 60 profit the pump today was amazing we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tuned stay tuned✌️ our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ 3857 oax binance 5 november ✅ binance 6 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-05 18:57:57+00:00 1.0 1345038659 174 new binance pump announcement ⏳date tomorrow november 5 ⏰time 4pm gmt exchange binance +20 whale channels target 30 60 profit the pump today was amazing strong reversal alt tommorow at 4pm gmt nov 5th bitcoin dominance is looking healthy for now and alts are settling or even reversing from the recent dips these conditions are optimal to take dip entries altcoins at low levels with little resistance to spike extremely high with an easy ride to the top due to these factors we expect upcoming strong reversal alt to peak higher and gain a lot of outside attention stay tuned✌️ our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ 3086 appc binance 4 november ✅ binance 5 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-04 20:03:44+00:00 1.0 1345038659 167 2 hours left until our big pump on binance be ready to buy the pump coin on binance at exactly 1700 pm gmt our target is high our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ binance 4 november ✅ binance 5 november vip members have the option to buy 1 day ago 2020-11-04 15:10:32+00:00 1.0 1345038659 166 24 hours left until our big pump on binance be sure to watch our pump tomorrow you wont believe your eyes our mission during the push 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 5075 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 75 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media we will send you 25 post which you can directly copypaste about good charting and info to buy the coin 3 our principal mission is to push the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and push to a new higher this time we are sure that we will push to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the push this could be up to an hour or more if you dont want to take risks you can become our vip member we named it coin a day ago thats a big advantage our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ binance 4 november tomorrow 4st nov 1700 pm gmt vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-03 17:41:25+00:00 1.0 1345038659 165 new binance pump announcement ⏳date wednesday november 4 ⏰time 1700 pm gmt exchange binance +20 whale channels target 30 60 profit the pump today was amazing we are finally ready to pump again our target for this pump will be at least 70 gain altcoins are currently very oversold and alot of people have been waiting for our next pump we see a lot of good opportunities in the market and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently our whales will do their part in the pump and buy after all our members to help pump the price up our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ 9763 dusk binance 30 october our november success rates are ✅ 4444 yoyo binance 1 november ✅ 7735 ardr binance 2 november ✅ binance 4 november we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-02 18:06:33+00:00 1.0 1345038659 160 4 hours left until the binance pump alts market are showing impressive moves most bleed out alts are pumping today so expect some major movement from our mountain alt signal are u excited enough for our next mountain alt hell yeah right just below 6 hrs remaining today | 4 pm gmt exchange binance we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-02 12:06:50+00:00 1.0 1345038659 159 new binance pump announcement ⏳date today 2 november ⏰time 4 pm gmt exchange binance +20 whale channels target 30 60 profit 9 hours left until the binance pump hope u guys didnt forget mountain alt signal is happening today our last one dusk did a whopping 2x can the next one be 250 or more we will see 9 hrs remaining today | 4 pm gmt we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-02 07:20:38+00:00 1.0 1345038659 150 6 hours left until the binance pump our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon less than 6 hrs left until bigpushcallbang ‼️ today 1st nov 18 pm gmt read the push plan in the pinned post we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-11-01 12:17:55+00:00 1.0 1345038659 148 new binance pump announcement ⏳date sunday 1 november ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit volume in altcoins is very low the pump will be spectacular on sunday 1 november be sure to watch and join besides our vip membership is now very cheap because the value of bitcoin has fallen its time to join up you can find out the coin name a day in advance dont miss this opportunity we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago binancepumpadmin 2020-10-31 11:53:02+00:00 1.0 1345038659 147 today binance pump analysis coin dusk low 296 high 585 exchange binance profit 9763 profit market is on fire and we are approaching 100 btc of volume now is the dip to rebuy if you were waiting wooowwww amazing pump youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-10-30 17:42:11+00:00 1.0 1345038659 143 12 hours left until the binance pump today is a special day the mountain alt signal day be prepared to see the next 250+ gainer on binance only 12 hrs left today 30th oct 4 pm gmt vip members have the option to buy 1 day ago 12 hours left until the binance pump today is a special day the mountain alt signal day be prepared to see the next 250+ gainer on binance only 12 hrs left today 30th oct 4 pm gmt vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-10-30 07:39:08+00:00 1.0 1345038659 142 heyyy guys new 2 binance pump announcement the mountain alt signal is coming we are going to see 250 + gain on binance 24hrs to see so ⏳date tomorrow 30th october ⏰time 4 pm gmt exchange binance +20 whale channels target 30 60 profit ⏳date sunday 1 november ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-10-29 17:06:59+00:00 1.0 1345038659 141 new binance pump announcement ⏳date sunday 1 november ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit volume in altcoins is very low the pump will be spectacular on sunday 1 november be sure to watch and join besides our vip membership is now very cheap because the value of bitcoin has fallen its time to join up you can find out the coin name a day in advance dont miss this opportunity we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-10-29 14:05:52+00:00 1.0 1345038659 137 today binance pump analysis coin oax low 563 high 829 exchange binance profit 4724 profit market is on fire and we are approaching 100 btc of volume now is the dip to rebuy if you were waiting wooowwww amazing pump youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our october success rates are ✅ 5419 rdn binance 17 october ✅ 4724 oax binance 18 october ✅ binance october our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago ☎️ contact binancepumpadmin 2020-10-18 18:29:36+00:00 1.0 1345038659 134 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-10-18 17:58:40+00:00 1.0 1345038659 131 new binance pump announcement ⏳date sunday october 18 ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit 24 hours left until the push our mission during the push 1 when you buy the coin do not buy 100 market directly in the first minute instead buy try buying with 50 of your balance and later use the rest for rebuying the dip the aim is to buy and rebuy slowly for continued growth we advise to not invest more than 50 of your capital in the first minute 2 after you have invested the first part of your funds start promoting the coin everywhere on social media we will send you 35 post which you can directly copypaste about good charting and info to buy the coin 3 our principal mission is to push the coin and sell to binance outsiders over 100 never panic sell if the coin drops in short time you dont need to be scarred its not the moment to sell but rebuy the dip and push to a new higher this time we are sure that we will push to 100 with the combined power of everyone do not look to sell quickly look to sell for max gains over the course of the push this could be up to an hour or more the advantages during the push 1 push bot will market buy 1002500 every 23 seconds to raise the price and create more fomo 2 my bot will market buy 12 every second which will also help create fomo also 3 when the coin submits a crash we will put big limits in the dip and start buying more to repost higher so when you see big walls buy during a dip this is the moment to rebuy 4 members of the best push groups will also be joining us to increase our power even further this is gong to be a huge deal all of binance will take notice things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and follow along closely for rebuying and selling 4 help promote the coin news 5 profit and brag to your friends to help us grow our october success rates are ✅ 5419 rdn binance 17 october ✅ binance 18 october vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-10-18 12:13:47+00:00 1.0 1345038659 129 new binance pump announcement we are planning for a huge weekend ⏳date sunday october 18 ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit pump planned for saturday 1600 gmt coin push planned for sunday 1800 gmt binance is ripe with opportunity and we will fully take advantage of it saturday will be our pump partnered with large telegram groups to make it even larger and more effective sunday will be a huge coin push last one took 22 min to peak near 50 more info on each event will be posted clear your calendars this will be our biggest weekend ever our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ 3719 gvt binance 17 september 18542 total profit vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-10-16 07:49:35+00:00 1.0 1345038659 122 today binance pump analysis coin gvt low 1312 high 1800 exchange binance profit 3719 profit its an amazing pump our vip members bought it a day ago and made a full profit of 3719 o it was a great day you can find out our vip membership options for the next pump send a message right now dont forget to ask for our vip channel image evidence is always important our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ 3719 gvt binance 17 september ✅ binance 17 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-17 18:06:08+00:00 1.0 1345038659 118 1 hours left until the binance pump we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profited still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc there is a lot of fomo in altcoin today and its likely we hold our coin up for hours or even days we advise to hold for targets and limit sell withing the expected gain range which will be given with the coin we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-17 17:04:58+00:00 1.0 1345038659 117 2 hours left until the binance pump the markets are looking great for our pumppush bitcoin is strong and altcoins markets are turning positive today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit conditions are optimal for a pump altcoins are at low levels with little resistance to spike extremely high each of the past 3 days a coin on binance has gone over +700 making investors even more eager to buy the next rising coin we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-17 16:11:23+00:00 1.0 1345038659 116 19 hours left until the binance pump tomorrows pumppush is shaping up to be amazing an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising buy support walls will be added to entice outside orders to join in above it which helps the price rise higher date thursday september 17th time 1800 gmt 2 pm est things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-16 21:57:49+00:00 1.0 1345038659 115 new binance pump announcement ⏳date september 17th ⏰time 1800 gmt exchange binance +20 whale channels target 30 60 profit our team is scanning binance for next 2x unicorn sitting in fking dip and waiting for a kick to moon a sweet coin we will pick from the bottom and pump it past the moon be ready with your btc for moonride this is one you will not want to miss we expect a lot of follow up action after our initial pump with lots of profit to be made dip call is coming sept 17th at 4pm gmt‼️ our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ binance 17 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world premium member ☎️ contact binancepumpadmin 2020-09-14 09:52:31+00:00 1.0 1345038659 113 today binance pump analysis coin qsp low 343 high 494 exchange binance profit 4402 profit its an amazing pump our vip members bought it a day ago and made a full profit of 4402 our free members made a profit of 2020 it was a great day you can find out our vip membership options for the next pump send a message right now dont forget to ask for our vip channel image evidence is always important our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ 4402 qsp binance 10 september ✅ binance september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-10 18:42:01+00:00 1.0 1345038659 108 1 hours left until the binance pump we are working very hard to have our tools and team ready to push the targets coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc there is a lot of fomo in altcoin today and its likely we hold our coin up for hours or even days we advise to hold for targets and limit sell withing the expected gain range which will be given with the coin our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago ☎️ contact binancepumpadmin 2020-09-10 17:03:48+00:00 1.0 1345038659 106 2 hours and 30 minutes left until the binance pump in 2 hours and 30 minutes we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits be ready to buy the target coin quickly when it is announced 2 hours from now everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-10 15:30:37+00:00 1.0 1345038659 104 24 hours left until the binance pump the mission of us the pump group today is to get outsiders in via official news and social media channels we will make sure the news about the coin we picked will be posted all over twitter and on reddit lets show the whales what a big group of small traders can do the chat is open if you have any questions head over to the chat more information will follow in the next hours theres a binance pump today send a message to become a vip member the pump team our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ binance 10 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago 2020-09-09 16:07:55+00:00 1.0 1345038659 103 new binance pump announcement ⏳date thursday september 10th ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 30 60 profit the time is here again our next big binance pump family is coming in 48 hours from now we were great on september 6th and september 8th guys we started september great would you like to add another one to this great success then join us and buy your dream lambo soon bitcoin has dropped and altcoins followed the sell resistance in all markets is near historic lows which will give us an easier ride to the top we expect higher peaks than normal due to these factors our pump should be able to do 6080 or even more if we were to repeat our volume from last pump there are over 10 coins that would go twice as high in addition we are adding hq news sources to promo the coin to keep the push rising and rising for as long as we can we will push this coin higher and longer than ever before our team is committed to make this pump one of the best ever to pump you must have a binancecom account and own btc in order to trade with our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ binance 10 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-08 18:13:10+00:00 1.0 1345038659 102 today binance pump analysis coin stpt low 182 high 262 exchange binance profit 4395 profit its an amazing pump our vip members bought it a day ago and made a full profit of 4395 our free members made a profit of 2395 it was a great day you can find out our vip membership options for the next pump send a message right now dont forget to ask for our vip channel image evidence is always important our september success rates are ✅ 6026 qlc binance 6 september ✅ 4395 stpt binance 8 september ✅ stpt binance september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-08 16:09:30+00:00 1.0 1345038659 97 40 minutes left until the binance pump 2020-09-08 15:19:32+00:00 1.0 1345038659 95 2 hours left until the binance pump the market is looking very crazy today as btc is recovering so alts are recovering hard too wait for 2 more hrs then we gonna reveal the big mountain alt exchange binance today | 4 pm gmt vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-08 14:06:27+00:00 1.0 1345038659 93 new binance pump announcement ⏳date today ⏰time 4pm gmt exchange binance +20 whale channels target 30 60 profit new dip call is coming today at 4pm gmt 8 hours from now⏰ dont forget about the mountain signal that is coming today just need to wait for 8 hrs more today | 4 pm gmt our september success rates are ✅ 6026 qlc binance 6 september ✅ binance 8 september our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-09-08 11:02:14+00:00 1.0 1345038659 92 today binance pump analysis coin qlc low 251 high 242 exchange binance profit 6026 profit its an amazing pump our vip members bought it a day ago and made a full profit of 6026 our free members made a profit of 2620 it was a great day you can find out our vip membership options for the next pump send a message right now dont forget to ask for our vip channel image evidence is always important our september success rates are ✅ 6026 qlc binance 6 september 2020-09-06 16:51:18+00:00 1.0 1345038659 87 next post will be the coin name 2020-09-06 15:54:49+00:00 1.0 1345038659 78 45 minutes left until the binance pump we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 2020-08-25 17:14:47+00:00 1.0 1345038659 75 24 hours left until the binance pump exchange binance com date tuesday 1800 gmt 2pm est tomorrows pumppush is shaping up to be amazing an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising buy support walls will be added from multiple sources this time blackout proof to entice outside orders to join in above it which keeps the price rising and rising things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 2020-08-24 19:35:30+00:00 1.0 1345038659 74 new binance pump announcement ⏳date tuesday august 25th ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 50 60 profit the time is here our next big pump is coming these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call we all know how well sys ending up doing unbelievable 427 vib almost 70 and ppt almost 50 since then many alts have pumped naturally or off some news our coin will mimic this and we aim to pump it higher than them all in addition we are adding hq news sources again to promo the coin and buy support from multiple sources to keep the push rising and rising for as long as we can to pump you must have a binancecom account and own btc in order to trade with get ready for tuesday this will be historic more info will be posted in the coming days for now please prepare yourself for the push and see our help channels if you havent already our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july ✅ 2230 elf binance 24 july ✅ 8005 vib binance 30 july our august success rates are ✅ 4234 evt binance 2 august ✅ 5642 ppt binance 4 august ✅ binance 25 august 2020-08-22 18:04:16+00:00 1.0 1345038659 72 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-08-16 17:55:08+00:00 1.0 1345038659 71 12 minutes left for binance breakout event 2020-08-16 17:48:10+00:00 1.0 1345038659 69 2 hours left before the binance pump in 2 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further with huge global attention expected gain range 100 vip members have the option to buy 1 day ago 2020-08-16 16:12:59+00:00 1.0 1345038659 66 new binance pump announcement ⏳date august 12 ⏰time 4 pm gmt exchange binance +20 whale channels target 50 60 profit were continuing our pumps without slowing down dont you want to be a partner in this big win dont you want to invest in your future our membership system is a lifetime you only pay once dont miss this opportunity and send us a message to sign up immediately our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july ✅ 2230 elf binance 24 july ✅ 8005 vib binance 30 july our august success rates are ✅ 4234 evt binance 2 august ✅ 5642 ppt binance 4 august ✅ binance 12 august 2020-08-11 19:29:50+00:00 1.0 1345038659 64 today binance pump analysis coin ppt low 2554 high 3995 exchange binance profit 5642 profit our vip members buying the coin name 1 day ago please ask for a photo of our vip channel and the price is now very balanced it stands in a beautiful spot ⏰a great environment for the pump this business is investment into the future send us a message if you want to cooperate with us if you want to invest in your future dont miss this membership opportunitypray our august success rates are ✅ 4234 evt binance 2 august ✅ 5642 ppt binance 4 august our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 2020-08-04 18:24:24+00:00 1.0 1345038659 61 30 minutes left until the binance pump we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc 2020-08-04 17:28:01+00:00 1.0 1345038659 60 2 hours left until the binance pump the markets are looking great for our pumppush today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today 2020-08-04 16:01:45+00:00 1.0 1345038659 59 4 hours left until the binance pump date august 4th tuesday 1800 gmt 2pm est in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits 2020-08-04 14:46:23+00:00 1.0 1345038659 58 new binance pump announcement ⏳date august 4 ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 50 60 profit the time is here again our next big signals pump is coming in one day these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call thursday we all know how well sys ending up doing unbelievable 427 and vib almost 70 bitcoin has been rising pushing the price of most altcoins down this means by pump day whichever coin ends up being our target will be near its bottom and ready to be pushed to the the moon currently there are many good opportunities lots of hype around us from our recent success and an influx of new users to increase our buyingshilling power even further all of these factors will make our next pump even more incredible than the last in addition we are adding hq news sources again to promo the coin to keep the push rising and rising for as long as we can to pump you must have a binancecom account and own btc in order to trade with get ready for tuesday this will be historic once more more info will be posted in the coming days please ready yourself for the push and see our help channels if you havent already we are the most reliable and best pump channel in the world 2020-08-04 14:46:13+00:00 1.0 1345038659 54 10 minutes left until the dip call login binance have everything ready team the trick to make some amazing profits is be focused to buy fast hold promote the coin profit and brag to your friends expected gain range 100 2020-08-02 15:49:28+00:00 1.0 1345038659 50 new binance pump announcement ⏳date august 2 ⏰time 4 pm gmt exchange binance +20 whale channels target 3060 profit after the impressive rally for btc were expecting an even more impressive relief rally in trending alts and you know what our team is scanning binance for next 2x unicorn sitting in fking dip and waiting for a kick to moon a sweet coin we will pick from the bottom and pump it past the moon be ready with your btc for moonride this is one you will not want to miss we expect a lot of follow up action after our initial pump with lots of profit to be made dip call is coming tomorrow at 4pm gmt‼️ global fomo call we are the most reliable and best pump channel in the world 2020-08-01 20:30:36+00:00 1.0 1345038659 49 today binance pump analysis coin vib low 160 high 288 exchange binance profit 8005 profit hahahah niceee wooowwww amazing pump youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july ✅ 2230 elf binance 24 july ✅ 8005 vib binance 30 july amazing pump our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 2020-07-30 18:29:02+00:00 1.0 1345038659 44 new binance pump announcement ⏳date july 30 ⏰time 6 pm gmt exchange binance +20 whale channels target 3060 profit the market is going great we found a great coin at our meeting together were seeing a great opportunity were going to have a fomo effect our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july ✅ 2230 elf binance 24 july ✅ binance 30 july global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago 2020-07-28 10:27:21+00:00 1.0 1345038659 39 today binance pump analysis coin nxs low 2235 high 3100 exchange binance profit 3870 profit the pump went on for 5 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ 3870 nxs binance 21 july next pump tomorrow ✅ binance 22 july our vip members buy 1 day ago provided great profits 2020-07-21 16:37:31+00:00 1.0 1345038659 37 09 mins left until the binance pump login binance now the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit promote the coin as a united team 2020-07-21 15:51:33+00:00 1.0 1345038659 34 quick alert new 2 binance pump announcement ⏳date july 21tomorrow ⏰time 4 pm gmt 24h left exchange binance +20 whale channels target 4080 profit and ⏳date wednesday july 22 ⏰time 4 pm gmt exchange binance +20 whale channels target 3060 profit a new global fomo call scheduled for tommorow at 4pm gmt as the alt market is on fire more than ready for a new fomo call this trendy call will be big we expect 2x+ spikes in short term this will be a different massive trendy call with a lot of volume fomo be ready this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready global fomo call we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-07-20 18:06:26+00:00 1.0 1345038659 33 new binance pump announcement ⏳date wednesday july 22 ⏰time 4 pm gmt exchange binance +20 whale channels target 80100 profit coin name will be posted on vip channel 24 hours earlier this time we have 4 days to prepare for this pump share our group on social media and invite everyone you our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ binance 22 july we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact binancepumpadmin 2020-07-19 19:03:18+00:00 1.0 1345038659 31 today binance pump analysis coin sys low 345 high 450 exchange binance profit 3043 profit the pump went on for 5 minutes youre great all our vip members made a profit it was a great day our vip members in particular have made big gains join our team if you want to make gains without risk our july success rates are ✅ 2616 gvt binance 4 june ✅ 3523 adx binance 7 july ✅ 2540 ctxc binance 10 july ✅ 3043 sys binance 16 july ✅ binance july our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member ☎️ contact binancepumpadmin 2020-07-16 18:30:55+00:00 1.0 1345038659 29 coin is sys we are anouncing the pump 1 hour in advance this time 2020-07-16 16:58:18+00:00 1.0 1345038659 28 90 minutes left until the binance pump 2020-07-16 16:30:05+00:00 1.0 1345038659 27 4 hours left until the binance pump 2020-07-16 14:01:13+00:00 1.0 1345038659 23 reminder of todays pump ⏰time 1800 gmt 2020-07-16 11:30:30+00:00 1.0 1345038659 21 7 hours left until the binance pump 2020-07-16 11:12:48+00:00 1.0 1345038659 9 new binance pump announcement ⏳date thursday july 16th ⏰time 1800 gmt 2 pm est exchange binance +20 whale channels target 80100 profit 2020-07-14 16:49:29+00:00 1.0 1249251103 3164 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy for max profit on kucoincom 2020-10-31 16:55:05+00:00 1.0 1249251103 3163 ℹ️ 10 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:50:06+00:00 1.0 1249251103 3162 ℹ️ 20 minutes ℹ️ get ready with your kucoincom trading account coin is low level buy with us 2020-10-31 16:40:07+00:00 1.0 1249251103 3161 ℹ️ 30 minutes ℹ️ start getting logged in kucoincom now 2020-10-31 16:30:04+00:00 1.0 1249251103 3160 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 16:00:06+00:00 1.0 1249251103 3159 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 15:00:07+00:00 1.0 1249251103 3158 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 13:00:04+00:00 1.0 1249251103 3157 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 11:00:48+00:00 1.0 1249251103 3156 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange kucoincom time 5 pm gmt read the instructions above and be ready 2020-10-31 09:00:03+00:00 1.0 1249251103 3155 ❗ read instructions below❗ 1 sign up to kucoin and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt indian time 1030 pm this will be highly profitable sleeping giant market cap coin on kucoin the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast to get cheap 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members 4we are going to hold coin as we get strong info of big announcement by coin developer after our pump that could lead the coin to moon in between when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and more ✨✨✨ i will post the coin strong upcoming news so that you may know why we choose this coinwhy there is need to hold this coin for few more days to get x2 x3 profit ✨✨✨✨✨ or otherwise use your discretion to have small profit we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on kucoin ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest 2020-10-31 04:03:06+00:00 1.0 1249251103 3150 pump results coin was loom low 144 high 399 welldone guys more than 2 x times repump count ✨3rd ✨time on your massive request analysis you need to create lower sell orders guys rather than dumping on buy orders dumping on buy orders generate red colors which fails the pump and prevent outsiders joining our pump we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-05-19 17:17:52+00:00 1.0 1249251103 3143 the coin to pump is loom exchange yobitnet target +200300 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-05-19 17:00:03+00:00 1.0 1249251103 3142 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-05-19 16:55:04+00:00 1.0 1249251103 3141 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-05-19 16:50:03+00:00 1.0 1249251103 3140 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-05-19 16:40:03+00:00 1.0 1249251103 3139 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-05-19 16:30:04+00:00 1.0 1249251103 3138 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 16:00:18+00:00 1.0 1249251103 3137 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 15:00:11+00:00 1.0 1249251103 3136 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-05-19 13:00:04+00:00 1.0 1249251103 3135 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-05-19 11:00:09+00:00 1.0 1249251103 3134 ℹ coin signal information ℹ date tuesday 190520 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-05-19 09:00:08+00:00 1.0 1249251103 3133 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19052020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-05-19 06:07:44+00:00 1.0 1249251103 3132 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190520 tuesday time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-05-18 18:29:53+00:00 1.0 1249251103 3129 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 aoa 165 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-22 17:31:33+00:00 1.0 1249251103 3128 pump results coin was aoa low 16 high 53 welldone guys 3 x times repump count ✨4th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-22 17:20:20+00:00 1.0 1249251103 3121 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-22 17:00:41+00:00 1.0 1249251103 3120 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-22 16:55:03+00:00 1.0 1249251103 3119 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-22 16:50:06+00:00 1.0 1249251103 3118 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-22 16:40:10+00:00 1.0 1249251103 3117 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-22 16:30:07+00:00 1.0 1249251103 3116 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 16:00:05+00:00 1.0 1249251103 3115 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 15:00:13+00:00 1.0 1249251103 3114 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-22 13:00:04+00:00 1.0 1249251103 3113 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-22 11:00:12+00:00 1.0 1249251103 3112 ℹ coin signal information ℹ date wednesday 220420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-22 09:00:07+00:00 1.0 1249251103 3111 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 22042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-22 05:53:17+00:00 1.0 1249251103 3109 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt note we dont have any vipbeware of scamdont give your money to anyone dont fall in trap of fake profitfake profit screenshots 2020-04-19 18:21:40+00:00 1.0 1249251103 3108 pump results coin was wpr open 70 high 206 welldone guys 3 x times on your demandwe listen you guys repump count 3rd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-19 17:36:43+00:00 1.0 1249251103 3101 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-19 17:00:04+00:00 1.0 1249251103 3100 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-19 16:55:02+00:00 1.0 1249251103 3099 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-19 16:50:04+00:00 1.0 1249251103 3098 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-19 16:40:02+00:00 1.0 1249251103 3097 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-19 16:30:05+00:00 1.0 1249251103 3096 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 16:00:14+00:00 1.0 1249251103 3095 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 15:00:08+00:00 1.0 1249251103 3094 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-19 13:00:05+00:00 1.0 1249251103 3093 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-19 11:00:10+00:00 1.0 1249251103 3092 ℹ coin signal information ℹ date sunday 190420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-19 10:00:16+00:00 1.0 1249251103 3091 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest be ready to buy at low level with us ℹ️ coin signal information ℹ️ exchange yobit date 19042020 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-19 08:38:30+00:00 1.0 1249251103 3090 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 snt 100 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day 190420 sunday time 5 pm gmt 2020-04-18 18:14:49+00:00 1.0 1249251103 3088 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins which naturally rise by the time 2020-04-14 17:51:49+00:00 1.0 1249251103 3087 pump results coin was snt low 222 high 440 welldone guys almost 2x timed on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin we dont pump scam coins we pump strong coins which naturally rise by the time ✅ 2020-04-14 17:45:35+00:00 1.0 1249251103 3080 the coin to pump is snt exchange yobitnet target +100200 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-14 17:00:06+00:00 1.0 1249251103 3079 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-14 16:55:02+00:00 1.0 1249251103 3078 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-14 16:50:04+00:00 1.0 1249251103 3077 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-14 16:40:03+00:00 1.0 1249251103 3076 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-14 16:30:02+00:00 1.0 1249251103 3075 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 16:00:05+00:00 1.0 1249251103 3074 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 15:00:15+00:00 1.0 1249251103 3073 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-14 13:00:19+00:00 1.0 1249251103 3072 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-14 11:00:04+00:00 1.0 1249251103 3071 ℹ coin signal information ℹ date tuesday 140420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-14 10:00:12+00:00 1.0 1249251103 3070 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 14042020 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-14 08:16:41+00:00 1.0 1249251103 3068 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 wpr 200 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date day announced soon time 5 pm gmt 2020-04-11 03:11:14+00:00 1.0 1249251103 3067 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-10 17:35:49+00:00 1.0 1249251103 3066 pump results coin was wpr open 70 high 210 welldone guys 3 x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-10 17:27:40+00:00 1.0 1249251103 3059 coin to pump is wpr exchange yobitnet target 100300 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-10 17:00:02+00:00 1.0 1249251103 3058 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-10 16:55:02+00:00 1.0 1249251103 3057 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-10 16:50:03+00:00 1.0 1249251103 3056 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-10 16:40:04+00:00 1.0 1249251103 3055 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-10 16:30:02+00:00 1.0 1249251103 3054 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 16:00:03+00:00 1.0 1249251103 3053 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 15:00:03+00:00 1.0 1249251103 3052 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-10 13:00:09+00:00 1.0 1249251103 3051 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-10 11:00:05+00:00 1.0 1249251103 3050 ℹ coin signal information ℹ date friday 100420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-10 10:00:09+00:00 1.0 1249251103 3049 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10042020 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-10 07:50:30+00:00 1.0 1249251103 3047 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 mth118 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 100420 day friday time 5 pm gmt 2020-04-09 09:23:18+00:00 1.0 1249251103 3046 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repump with screenshot ✅ we will surely repump itas we usually doon your requestall coins pumped multiple times to secure profit for everyone remember we donot pump scam coins pump only in strong coins 2020-04-08 04:05:55+00:00 1.0 1249251103 3045 pump results coin was mth low 85 high 185 welldone guys more than 2 x times on your demandwe listen you guys repump count 5th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-04 22:41:58+00:00 1.0 1249251103 3040 the coin to pump is mth exchange yobitnet target +100 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-04 17:01:03+00:00 1.0 1249251103 3037 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-04 16:55:02+00:00 1.0 1249251103 3036 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-04 16:50:02+00:00 1.0 1249251103 3035 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-04 16:40:02+00:00 1.0 1249251103 3034 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-04 16:30:02+00:00 1.0 1249251103 3033 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 16:00:06+00:00 1.0 1249251103 3032 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 15:00:17+00:00 1.0 1249251103 3031 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-04 13:00:02+00:00 1.0 1249251103 3030 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-04 11:00:15+00:00 1.0 1249251103 3029 ℹ coin signal information ℹ date saturday 040420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-04 10:00:17+00:00 1.0 1249251103 3028 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 04042020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-04 09:00:07+00:00 1.0 1249251103 3027 have you been missing out on these huge profits in our previous pumps 2020 pump history fun 100 fun 300 aoa 218 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history created by us ℹ️ coin signal info ℹ️ exchange yobit date 040420 day saturday time 5 pm gmt 2020-04-03 16:27:39+00:00 1.0 1249251103 3025 pump results coin was aoa open 22 high 70 welldone guys 3 x times repump count ✨3rd ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-04-01 17:16:21+00:00 1.0 1249251103 3020 coin to pump is aoa exchange yobitnet target +300500 market aoabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-04-01 17:00:17+00:00 1.0 1249251103 3017 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-04-01 16:55:04+00:00 1.0 1249251103 3016 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-04-01 16:50:05+00:00 1.0 1249251103 3015 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-04-01 16:40:05+00:00 1.0 1249251103 3014 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-04-01 16:30:04+00:00 1.0 1249251103 3013 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 16:00:08+00:00 1.0 1249251103 3012 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 15:00:06+00:00 1.0 1249251103 3011 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-04-01 13:00:18+00:00 1.0 1249251103 3010 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-04-01 11:00:13+00:00 1.0 1249251103 3009 ℹ coin signal information ℹ date wednesday 010420 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-04-01 10:00:16+00:00 1.0 1249251103 3008 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pumpℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01042020 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-04-01 08:00:05+00:00 1.0 1249251103 3005 pump results coin was fun open 40 high 128 welldone guys more than 3x times repump count ✨8th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-03-28 17:28:34+00:00 1.0 1249251103 3000 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-03-28 17:00:28+00:00 1.0 1249251103 2997 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-03-28 16:55:04+00:00 1.0 1249251103 2996 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-03-28 16:50:06+00:00 1.0 1249251103 2995 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-03-28 16:40:11+00:00 1.0 1249251103 2994 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-03-28 16:30:07+00:00 1.0 1249251103 2993 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 16:00:17+00:00 1.0 1249251103 2992 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 15:00:11+00:00 1.0 1249251103 2991 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-03-28 13:00:03+00:00 1.0 1249251103 2990 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2020-03-28 11:00:06+00:00 1.0 1249251103 2988 ℹ coin signal information ℹ date saturday 280320 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-03-28 06:59:38+00:00 1.0 1249251103 2987 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for upcoming pump on 280320 ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members our coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28032020 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-03-27 13:41:30+00:00 1.0 1249251103 2976 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-15 19:55:42+00:00 1.0 1249251103 2970 6 hours left until the binance pump instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3050 lets beat this big pump advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-15 14:02:47+00:00 1.0 1249251103 2969 8 hours 30 mins left until the binance pump theres a binance pump today send a message to become a vip member the mission of us the pump group today is to get outsiders in via official news and social media channels we will make sure the news about the coin we picked will be posted all over twitter and on reddit lets show the whales what a big group of small traders can do the chat is open if you have any questions head over to the chat more information will follow in the next hours the pump team advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-15 10:31:55+00:00 1.0 1249251103 2968 new binance pump announcemen ⏳date march 15 ⏰time 2000 pm gmt exchange binance +16 whale channels target 35 45 profit volume in altcoins is very low the pump will be spectacular on march 15th be sure to watch and join besides our vip membership is now very cheap because the value of bitcoin has fallen its time to join up you can find out the coin name a day in advance dont miss this opportunity our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb ✅ 2727 dnt binance 27 feb our march success rates are our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ 4272 sngls binance 8march ✅ 6796 poa binance 12 march ✅ binance 15 march advice 1 day ago or 1 mins ago we have the option to coin buy premium member contact whalepumpadmins 2020-03-14 18:55:48+00:00 1.0 1249251103 2962 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-12 18:55:43+00:00 1.0 1249251103 2959 1 hours left until the binance pump so how do i pump 1 watch for the coin signal at 1600 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 35+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin advice 1 day ago or 1 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-12 18:00:55+00:00 1.0 1249251103 2956 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-08 18:55:26+00:00 1.0 1249251103 2951 6 hours left until binance pump its going to be a very very big pump be sure to join while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in pump factory fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple for now all we can say is get ready practise and read all the advice we gave you today is the day that we will stand up and show the whales how to pump a coin vip advantages arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ binance 8march advice 1 day ago or 1 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-08 12:50:56+00:00 1.0 1249251103 2946 binance pump announcemen ⏳date sunday march 8 ⏰time 1900 pm gmt exchange binance +16 whale channels target 35 45 profit we are finally ready to pump again our target for this pump will be at least 5070 the market is good and alot of people have been anxiously waiting for our next pump we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb ✅ 2727 dnt binance 27 feb our march success rates are ✅ 4442 nxs binance 3 march ✅ 2222 dnt binance 4 march ✅ binance 8march advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-06 15:06:34+00:00 1.0 1249251103 2942 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-04 18:56:19+00:00 1.0 1249251103 2936 9 hours left until binance pump as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 1900 gmt our march success rates are ✅ 4442 nxs binance 3 march ✅ binance 4 march advice 1 day ago or 2 mins ago we have the option to buy premium member contact whalepumpadmins 2020-03-04 10:18:49+00:00 1.0 1249251103 2935 we had a great pump today im proud of all our members we did a great job give yourself a round of applause they talk about nxs coin in all forums this success is yours congratulations the next pump day and time will be announced shortly 1 day ago or 2 mins ago we have the option to buy premium member contact atlantismanager 2020-03-03 17:03:16+00:00 1.0 1249251103 2930 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-03-03 15:55:28+00:00 1.0 1249251103 2928 1 hours left until the binance pump have btc available on binancecom and be watching here for the coin name buy in and watch the price soar whales will be supporting us and massive buy support will hold the coin price up as long as possible conditions are prime for this ta based signal +16 whale channels target 35 45 profit advice 1 day ago or 2 mins ago we have the option to buy premium member contact atlantismanager 2020-03-03 15:00:47+00:00 1.0 1249251103 2926 4 hours left until the binance pump so how do i pump 1 watch for the coin signal at 1600 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 35+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 2 mins ago premium member contact atlantismanager 2020-03-03 12:02:02+00:00 1.0 1249251103 2925 6 hours left until the binance pump binance pump information in this event we will pump bottom alt coin that still didnt make significant recovery as u guys know that alts market has been crushed badly lately due to btc dumps which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular pump team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their coin price and market cap we will provide safe buy zone area this time as we are working with cooperation with team whales ❗️posted earlier on vip channel❗️ advice 1 day ago or 2 mins ago we have the option to buy premium member contact atlantismanager 2020-03-03 10:01:11+00:00 1.0 1249251103 2924 binance pump tomorrow ⏳date 3 march 2020 ⏰time 1600 gmt exchange binance +16 whale channels target 35 45 profit the market is on the rise thats why were going to start the pump on march 3rd tomorrow make your preparations according to tomorrow and keep channel notifications open the march 4 pump is validwe will pump it on binance on march 3 and march 4 advice 1 day ago or 2 mins ago we have the option to buy premium member contact atlantismanager 2020-03-02 13:58:40+00:00 1.0 1249251103 2921 binance pump analysis coin dnt low 66 high84 win wooow exchange binance profit 2727 profit todays pump was a surprise pump we shared the news of the pump on the free channel today a lot of our members didnt know thats why we didnt get over 30 but we still made a good profit on this downward trend one later that the pump will be larger 34 days ago we will share the news of the pump with you please keep notifications open our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb ✅ 2727 dnt binance 20 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-27 16:14:38+00:00 1.0 1249251103 2915 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-02-27 15:56:31+00:00 1.0 1249251103 2913 20 mins left until the binance pump in this event we will pump bottom alt coin that still didnt make significant recovery as u guys know that alts market has been crushed badly lately due to btc dumps which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular token team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their token price and market cap we will provide safe buy zone area this time as we are working with cooperation with team whales ❗️posted earlier on vip channel❗️ advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-27 15:41:18+00:00 1.0 1249251103 2911 binance pump today next pump scheduled date 27th february ⏱ time 400 pm gmt exchange binance the surprise pump of the day is in 40 minutes we had a great opportunity advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-27 15:22:39+00:00 1.0 1249251103 2908 we had a great pump yesterday currently nav is trading around 1400 satoshi with a volume of 350 btc it is still 15 up i see a lot of people following our advice of riding waves buying the dip and selling the top great work everyone our coin was nav which bounced around 4617 from our buy zone our experts believe it will go for a moon ride in shorter time frame as our previous calls did were excited about the next binance pump but first were going to enjoy our profits and spend some money best regards 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-21 11:31:19+00:00 1.0 1249251103 2907 binance pump analysis coin nav low 1163 high1700 win wooow exchange binance profit 4617 profit please check the vip channel above to gain confidence in us our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ 4617 nav binance 20 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-20 16:20:00+00:00 1.0 1249251103 2902 next post will be the binance coin 5 mins to the binance pump time to shake the market up 2020-02-20 15:56:18+00:00 1.0 1249251103 2900 2 hour left until the binance pump instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and binance will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 10 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 3050 lets beat this big pump 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-20 14:08:29+00:00 1.0 1249251103 2898 5 hour left until the binance pump well share strong breakout unicorn waiting for a kick to moon read the pinned post for details we will share the strong ta call today for sure as its highly requested and our targets are 502x for short term 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-20 11:01:04+00:00 1.0 1249251103 2897 binance pump announcement ⏳date 20feb2020 ⏰time 4 pm gmt exchange binance +13 whale channels target 35 45 profit signal alert the market is going great we found a great coin at our meeting together were seeing a great opportunity were going to have a fomo effect our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb lets make the next pump go down in history as one of the greatest pumps advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-19 19:35:23+00:00 1.0 1249251103 2896 in our meeting with the channel owners and vip members we dont want to organize a pump when bitcoin falls so when the market improves were going to pump it on the binance exchange keep watching us next pump binance the date of the binance pump will be announced soon our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-17 13:32:58+00:00 1.0 1249251103 2895 pump analysis coin cgen low 3 high 8 win exchange crex24 profit 67941 profit ——————————————————— next pump binance ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more bittrex 13 feb ✅ 67941 cgen crex24 16 feb ✅ binance 17 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-16 10:13:40+00:00 1.0 1249251103 2892 next post will be the crex24 coin 5 mins to the crex24 pump time to shake the market up 2020-02-16 09:56:52+00:00 1.0 1249251103 2891 30 minutes until crex24 pump next message will be the coin name make sure to buy the coin as fast as you see the coin name the pump will be on crex24 on btc coin +13 whale channels collab pump 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-16 09:33:13+00:00 1.0 1249251103 2890 only 2 hours until our pump on crex24 exchange deposit your btc on crex24 and wait our signal pump rules 1 buy as fast as possible 2 hold 15 mins for targets 3 targets are 100200 from current price before pump 4 press buy market for best results 5 do not add sell walls 6 add buy orders below price to push the price up with market and other bots 7 do not dump on targets just sell slowly on outsiders +13 whale channels collab pump 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-16 09:01:33+00:00 1.0 1249251103 2889 24 hours left until the crex24 pump prepare for atleast 100200 pump this upcoming pump will be big we have managed to reach over 3091 2 times in a row the previous month on binance and we believe that we can do it again in our upcoming pump as our volume has been increasing and has been great lately we think that pump on a small exchange crex24 will touch atleast 200 profit for the fast traders lets make the next pump go down in history as one of the greatest pumps we will make the same rise at the binance pump on february 17 keep watching us next pump binance ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-15 22:21:25+00:00 1.0 1249251103 2888 today pump announcement we made a big deal were going to set up a pump on the crex24 exchange before the binance pump17 feb everyone deposit btc on crex24 and prepare we talk with crex24 admins and everything is fine it was just a exchange uptade on few wallets last time prepare for atleast 100200 pump this upcoming pump will be big we have managed to reach over 3091 2 times in a row the previous month on binance and we believe that we can do it again in our upcoming pump as our volume has been increasing and has been great lately we think that pump on a small exchange crex24 will touch atleast 200 profit for the fast traders ⏳date sunday february 16 ⏰time 1000 am gmt exchange crex24 +13 whale channels target 35 45 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more binance 13 feb ✅ crex24 15 feb ✅ binance 17 feb lets make the next pump go down in history as one of the greatest pumps we will make the same rise at the binance pump on february 17 keep watching us 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-15 19:11:58+00:00 1.0 1249251103 2887 coin more low 337 high 699 win exchange bittrex profit 10741 profit next pump binance ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit we will make the same rise at the binance pump on february 17 keep watching us 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 22:19:16+00:00 1.0 1249251103 2886 bittrex pump analysis coin more low 337 high 699 win exchange bittrex profit 10741 profit next pump binance ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 6404 wpr binance 10 feb ✅ 10741 more binance 13 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 20:07:27+00:00 1.0 1249251103 2884 next post will be the bittrex coin 5 mins to the bittrex pump time to shake the market up 2020-02-13 19:56:10+00:00 1.0 1249251103 2883 15 mins left until the bittrex pump the binance pump will take place on february 17 those who dont have a balance on the bittrex exchange should watch the pump its going to be great today stay on track are we ready for today ✊as 10 whales channel we are ready ⏰please set your alarms ⏱today2000 gmt there will be a very very big pump watch you wont believe your eyes if you want to become a vip member please send a message coin name will be announced in our vip channel after 1 hour ⏰today is the big day 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 19:46:45+00:00 1.0 1249251103 2881 1 hours left until the next pump on bittrex our pump time will now be 2000 gmt the team is totally ready our team had contact with various news channels once the initial pump is done the buys of you guys and outsiders see the coin going up we will spread news via various news channels which make outsiders interested and slowly buy in on the coin this gives our members a perfect window to sell their coins with a decent profit 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 19:03:04+00:00 1.0 1249251103 2880 binance pump announcement ⏳date monday 17 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit the market is going great we found a great coin at our meeting together were seeing a great opportunity were going to have a fomo effect our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 9166 wpr binance 10 feb lets make the next pump go down in history as one of the greatest pumps advice 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-13 16:02:09+00:00 1.0 1249251103 2877 yesterday we had a great pump the echoes are still going on all our members made a profit and completed the pump our vip members made 90 profit based on our research our free members achieved a 40 profit rate this was the best pump weve had lately well do it again as soon as possible some of our members are curious about the vip channel and the sharing times im sending you this information upstairs if you want to join pumps with 0 risks and make money within 15 minutes you can send a message our special advisers will take care of you coin wpr low 84 high 161 win exchange binance profit 9166 profit amazing our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb ✅ 9166 wpr binance 10 feb 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-11 18:54:35+00:00 1.0 1249251103 2876 yesterday we had a great pump the echoes are still going on all our members made a profit and completed the pump our vip members made 90 profit based on our research our free members achieved a 40 profit rate this was the best pump weve had lately well do it again as soon as possible some of our members are curious about the vip channel and the sharing times im sending you this information upstairs if you want to join pumps with 0 risks and make money within 15 minutes you can send a message our special advisers will take care of you coin wpr low 84 high 161 win exchange binance profit 9166 profit amazing 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-11 18:53:36+00:00 1.0 1249251103 2869 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-02-10 19:55:58+00:00 1.0 1249251103 2867 binance pump in 1 hour the team is totally ready our team had contact with various news channels once the initial pump is done the buys of you guys and outsiders see the coin going up we will spread news via various news channels which make outsiders interested and slowly buy in on the coin this gives our members a perfect window to sell their coins with a decent profit 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-10 19:01:22+00:00 1.0 1249251103 2866 2 hour left until the binance pump we are working very hard to get the social media campaign and the cordination ready for the pump we hope to finish everything in time which means we would not have to delay the pump more information coming soon 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-10 17:58:03+00:00 1.0 1249251103 2865 4 hours left until the next pump on binance our pump time will now be 2000 gmt coin vip channel with 50 discount you will earn huge lots of pump and vip signals in pro vip channel you can start investment even with 005 or more less we will make your little money into huge amount as 1520 btc in 4 week maximum if u have more you will earn massive just message to atlantismanager to join premium 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-10 16:09:58+00:00 1.0 1249251103 2864 6 hours left until the binance pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-02-10 14:23:47+00:00 1.0 1249251103 2863 24 hours left until binance pump ⏳date 10feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 35 45 profit join vip and earn huge +13 whale channels collaboration pumps zero effort required overnight success 100 legit free income 1 day ago or 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-09 20:01:26+00:00 1.0 1249251103 2861 binance pump announcement ⏳date 10 feb2020 ⏰time 2000 gmt exchange binance +13 whale channels target 15 25 profit the market is going great our vip members requested a pump tomorrow we found a great coin at our meeting together the pump will be shared on our free channel tomorrow were seeing a great opportunity were going to have a fomo effect our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrc bittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb lets make the next pump go down in history as one of the greatest pumps advice send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-09 14:49:55+00:00 1.0 1249251103 2860 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2020-02-08 04:43:32+00:00 1.0 1249251103 2858 hello everyone we would like to update all our members about our upcoming pump the current market conditions are perfect but our team is currently waiting to find the perfect candidates for coins to pump many coins have already gone up considerably and we will wait for a small dip in altcoins first to make sure we pump them from their bottom rather from the top as all our pumps will have at least 4070 targets the quality of our pumps will always be our 1 priority rather than the quantity which is the reason why we pump only when we see good opportunities stay tuned for more updates soon our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrc bittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb vip group this gives you an advantage buy 1 day before the pump which you buy the first person and sell the first person after the currency grows most of our pump is great up to 40 or 30 send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-03 15:19:08+00:00 1.0 1249251103 2857 important explanations for the binance pump today we pumped a great pump weve received great messages from our members thats why were so happy were excited about the next pump you can buy coin before pump 1 day and can sell when pump start after put coin in free chanel and alot of people in free chanel buy coin vip group this gives you an advantage buy 1 day before the pump which you buy the first person and sell the first person after the currency grows most of our pump is great up to 40 or 30 our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-01 17:17:44+00:00 1.0 1249251103 2856 binance pump analysis coin rdn low 1312 high 1713 win exchange binance profit 3056 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan our feb success rates are ✅ 3056 rdn binance 1 feb our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-01 14:26:40+00:00 1.0 1249251103 2855 what an amazing pump 5 minutes it went up non stop now consolidates at new level of 1500+ very good pump 150 volume 3552 profit 2020-02-01 14:26:34+00:00 1.0 1249251103 2852 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-02-01 12:56:01+00:00 1.0 1249251103 2851 30 minutes left to binance pump on ⏳date 1st february ⏰time 1300 pm gmt exchange binance +15 whale channels target 25 30 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-02-01 12:32:50+00:00 1.0 1249251103 2850 flash binance pump alert less than 1 hours left ‼️ 1st february 1300 pm gmt + 0 on binance exchange make sure to be ready with free btc we expect to see 50100 pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-02-01 12:01:56+00:00 1.0 1249251103 2848 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-30 20:55:44+00:00 1.0 1249251103 2847 binance pump will start in 30 mins 30 mins left to pump on binance ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance +3 whale channels target 15 25 profit our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-30 20:32:22+00:00 1.0 1249251103 2846 bittrex pump analysis coin vrc low 511 high 958 win exchange bittrex profit 8447 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan ✅ 8747 vrcbittrex 30 jan binance pump will start in 50 mins 50 mins left to pump on binance ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance +3 whale channels target 15 25 profit our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-30 20:11:58+00:00 1.0 1249251103 2844 next post will be the coin 5 mins to the bittrex pump time to shake the market up binance pump will start in 1 hour 2020-01-30 19:55:58+00:00 1.0 1249251103 2843 25 minutes left to pump on bittrex exchange pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange bittrex +3 whale channels target 15 25 profit binance pump will start in 1 hour 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 19:36:33+00:00 1.0 1249251103 2842 30 minutes left to pump on bittrex pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange bittrex +3 whale channels target 15 25 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 19:31:47+00:00 1.0 1249251103 2841 2 hours left to pump on bittrex 2 hours left remember to buy quickly and promote hard news will be supplied during the pump that everyone should spread around the crypto world this will help bring more attention to our coin and send the value up even higher working together we can accomplish great things as we have done many times before ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex +3 whale channels target 15 25 profit 3 hours left to pump on binance ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance +3 whale channels target 15 25 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 18:00:52+00:00 1.0 1249251103 2840 binance pump analysis coin nuls low 2887 high 3184 win exchange binance profit 932 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ 932 nuls binance 30 jan our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-30 17:17:23+00:00 1.0 1249251103 2836 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-30 16:55:27+00:00 1.0 1249251103 2835 30 minutes left to pump on binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance +3 whale channels target 15 25 profit 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 16:31:43+00:00 1.0 1249251103 2834 binance pump 1 hours left until the big binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance +3 whale channels target 10 20 profit bittrex pump 4 hours left until the big bittrex pump ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex +5 whale channels target 30 60 profit binance pump 5 hours left until the big binance pump ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance +15 whale channels target 20 30 profit join our pumps according to percentage ratios risk levels are different take advantage of vip membership 1 day ago and 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-30 16:02:16+00:00 1.0 1249251103 2833 4 hours left until the big binance pump 7 hours left until the big bittrex pump 8 hours left until the big binance pump so how do i pump 1 watch for the coin signal at 1900 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 60+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-01-30 13:23:01+00:00 1.0 1249251103 2832 6 hours left until the big binance pump 9 hours left until the big bittrex pump 10 hours left until the big binance pump boss freaked out we will organize 3 pumps today binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance bittrex pump ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex binance pump ⏳date 30 jan2020 ⏰time 2100 gmt exchange binance advantages arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-01-30 10:30:25+00:00 1.0 1249251103 2831 the pump will start in 24 hours we will organize 2 pumps tomorrow binance pump ⏳date 30 jan2020 ⏰time 5 pm gmt exchange binance +15 whale channels target 20 30 profit bittrex pump ⏳date 30 jan2020 ⏰time 2000 gmt exchange bittrex +15 whale channels target 40 60 profit advantages arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 1 hours ago premium member contact atlantismanager 2020-01-29 20:17:04+00:00 1.0 1249251103 2830 new pump announcement ⏳date 30 jan2020 ⏰time 9 pm gmt exchange binance or bittrex +15 whale channels target 40 60 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ binance 30 jan we had a great pump last night youve all witnessed this great ascension were organizing a big pump again follow our instructions arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-27 14:47:10+00:00 1.0 1249251103 2825 new binance pump announcement ⏳date 26 jan 2020 ⏰time 9 pm gmt exchange binance +15 whale channels target 30 40 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ binance 26 jan we had a great pump last night youve all witnessed this great ascension were organizing a big pump again follow our instructions arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-21 20:00:46+00:00 1.0 1249251103 2823 1 hour left for binance pump ️want to know coin before pump contact with 1 day ago 1 hour ago we have the option to buy premium member contact atlantismanager 2020-01-21 19:01:17+00:00 1.0 1249251103 2820 today binance pump announcement ⏳date 21 jan 2020 ⏰time 2000 gmt exchange binance +15 whale channels target 30 40 profit our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan ✅ binance 21 jan we had a great pump last night youve all witnessed this great ascension were organizing a big pump again follow our instructions arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-21 00:55:38+00:00 1.0 1249251103 2818 binance pump analysis coin nxs low 1931 high 2395 win exchange binance profit 2402 profit woooowwww our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ 2402 nxs binance 20 jan our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 19:12:23+00:00 1.0 1249251103 2816 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-20 18:55:24+00:00 1.0 1249251103 2815 10 mins left until the binance pump arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 18:50:36+00:00 1.0 1249251103 2814 1 hours left until the binance pump we have a small change in our pump time our pump today will take place 1 hour earlier make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ binance 20 jan the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win do you have questions regarding tonights pump then you can always reach us here send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 18:00:47+00:00 1.0 1249251103 2813 2 hours to go binanced pump and we will unite and mass buy a coin while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in pump factory fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple for now all we can say is get ready practise and read all the advice we gave you today is the day that we will stand up and show the whales how to pump a coin our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ 2897 brd binance 20 jan ✅ binance 20 jan send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 17:02:43+00:00 1.0 1249251103 2811 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-20 15:56:34+00:00 1.0 1249251103 2810 1 hours left until the binance pump today were going to have two binance pumps ⏳date 20 january ⏰time 1600 gmt exchange binance —————————————— ⏳date 20 january ⏰time 1900 gmt exchange binance send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-20 15:02:05+00:00 1.0 1249251103 2809 3 hours left until the binance pump so how do i pump 1 watch for the coin signal at 1900 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 60+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin today were going to have two binance pumps ⏳date 20 january ⏰time 1600 gmt exchange binance —————————————— ⏳date 20 january ⏰time 1900 gmt exchange binance the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win do you have questions regarding tonights pump then you can always reach us here you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-20 13:02:06+00:00 1.0 1249251103 2808 4 hours left until the binance pump today were going to have two binance pumps ⏳date 20 january ⏰time 1600 gmt exchange binance —————————————— ⏳date 20 january ⏰time 1900 gmt exchange binance the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win do you have questions regarding tonights pump then you can always reach us here you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-20 12:06:07+00:00 1.0 1249251103 2807 today surprise binance pump on 2000 gmt we will be pumping a low market cap coin at binance our jan success rates are ✅ 3061 vib binance 12 jan ✅ 3600 nav binance 16 jan ✅ binance 20 jan make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 75 would make sure you get in every time the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win do you have questions regarding tonights pump then you can always reach us here you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-20 10:40:59+00:00 1.0 1249251103 2806 big bitcoin pump news we made a great pump yesterday☝ huge gains were made both vip members and free members made huge gains in honor of this we offer a 50 discount on vip memberships this is a great opportunity for the next pump the 50 discount will only last 4 days •registrations for the vip and vip + group are open enjoy it as soon as possible for insured and riskfree winnings our jan success rates are ✅ 3061 vib binance 12 dec ✅ 3600 nav binance 16 dec ✅ binance 26 dec send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-17 07:42:12+00:00 1.0 1249251103 2805 binance pump analysis coin nav low 1104 high 1504 win exchange binance profit 3600 profit woooowwww our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 19:11:35+00:00 1.0 1249251103 2804 you guys are great even our free members have made a lot of money hahahahahaha congratulations the analysis will come soon we are the worlds best pump channel send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 19:05:31+00:00 1.0 1249251103 2800 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-16 18:55:58+00:00 1.0 1249251103 2799 10 mins left until the binance pump arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 18:51:03+00:00 1.0 1249251103 2798 30 minutes left until the huge binance pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 18:30:48+00:00 1.0 1249251103 2797 1 hours left until the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 17:58:18+00:00 1.0 1249251103 2796 5 hours left until our pump on binance our team is ready and we hope you are too send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-16 14:15:51+00:00 1.0 1249251103 2795 23 hours left until the binance pump we are finally ready to pump again the currentd market condition is perfect for a pump as outsider activity is very strong and we expect it to continue for the next few days our target for this pump will be between 5070 we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently we are confident that we will be able to hit our target today and go even higher possibly this is going to be the pump you will not want to miss ⏳date 16 jan 2020 ⏰time 1900 pm gmt exchange binance +15 whale channels target 30 40 profit our jan success rates are ✅ 3061 vib binance 12 dec ✅ binance 16 dec send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-15 20:01:15+00:00 1.0 1249251103 2794 pump results coin was fun open 33 high 68 welldone guys almost 2x times repump count ✨7th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2020-01-15 17:23:55+00:00 1.0 1249251103 2789 coin to pump is fun exchange yobitnet target upto 100200 above market funbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2020-01-15 17:00:22+00:00 1.0 1249251103 2786 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2020-01-15 16:55:04+00:00 1.0 1249251103 2785 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2020-01-15 16:50:03+00:00 1.0 1249251103 2784 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2020-01-15 16:40:05+00:00 1.0 1249251103 2783 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2020-01-15 16:30:04+00:00 1.0 1249251103 2782 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 16:00:03+00:00 1.0 1249251103 2781 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 15:00:03+00:00 1.0 1249251103 2780 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2020-01-15 13:00:02+00:00 1.0 1249251103 2779 ℹ coin signal information ℹ date wednesday 15012020 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2020-01-15 11:00:06+00:00 1.0 1249251103 2777 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150120 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2020-01-15 08:18:57+00:00 1.0 1249251103 2775 new binance pump announcement ⏳date 16 jan 2020 ⏰time 2000 gmt exchange binance +15 whale channels target 30 40 profit our jan success rates are ✅ 3061 vib binance 12 dec ✅ binance 16 dec we had a great pump last night youve all witnessed this great ascension were organizing a big pump again follow our instructions arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-13 08:36:23+00:00 1.0 1249251103 2774 binance pump analysis coin vib low 245 high 320 win exchange binance profit 3061 profit woooowwww global pump care about your money our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 20:27:22+00:00 1.0 1249251103 2771 next post will be the coin 5 mins to the binance pump time to shake the market up 2020-01-12 19:56:38+00:00 1.0 1249251103 2770 10 mins left until the binance pump arent you tired of losing money in bitcoin with a vip membership you can join the pump in 10 minutes and raise your balance yes its in your hands make your choice the quota for our vip membership is still open send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 19:51:46+00:00 1.0 1249251103 2769 only 28 minutes left until the huge binance pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 19:33:12+00:00 1.0 1249251103 2768 1 hours left until the binance pump send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 18:59:46+00:00 1.0 1249251103 2767 2 hours left until the binance pump make sure you buy quickly to get he lowest prices and always sell for a profit binance profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 18:07:37+00:00 1.0 1249251103 2766 1 hours left until the binance pump make sure you buy quickly to get he lowest prices and always sell for a profit binance profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 17:59:34+00:00 1.0 1249251103 2765 2 hours left until the binance pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 17:04:38+00:00 1.0 1249251103 2764 3 hours left binance pump the market is looking great lets create the hype the more people we have tonight the bigger the pump and the bigger the profit invite everyone you know friends family and people on social media lets do this send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 16:07:49+00:00 1.0 1249251103 2763 7 hours left big binance pump make sure you have btc ready in your binance account for those using market buys to get in quickly there are sometimes issues with using 100 of your balance during a pump 60 would make sure you get in every time see howtobuyfast the goal for each pump is for everyone to profit as much as possible if you need help ask if you need practice practice we want absolutely every member of the group to win buy quick sell smart promote hard ⏳date 12 jan 2020 ⏰time 2000 gmt exchange binance +15 whale channels target 50 70 profit dont forget to take advantage of vip membership options send a message if you want to buy the name coin 1 day before or 30 minutes ago premium member contact atlantismanager 2020-01-12 13:01:18+00:00 1.0 1249251103 2762 new binance pump announcement ⏳date 12 jan 2020 ⏰time 2000 gmt exchange binance +15 whale channels target 50 70 profit bitcoin is in good shape again we see great opportunities to pump we are finally ready to pump again this upcoming pump will be big we have managed to reach over 5070 3 times in a row the previous month and we believe that we can do it again in our upcoming pump as our volume has been increasing and has been great lately we also have big upcoming plans for our group soon that will benefit all our members stay tuned more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible you can learn and buy the name coin 1 day or 1 hour before premium member contact atlantismanager 2020-01-09 20:23:44+00:00 1.0 1249251103 2761 pump results coin was bnt open 3291 high 7600 profit approx x 2 repump count ✨8th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-29 17:26:39+00:00 1.0 1249251103 2756 the coin to pump is bnt exchange yobitnet target +100 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-29 17:00:19+00:00 1.0 1249251103 2753 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-29 16:55:02+00:00 1.0 1249251103 2752 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-29 16:50:04+00:00 1.0 1249251103 2751 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-29 16:40:02+00:00 1.0 1249251103 2750 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-29 16:30:07+00:00 1.0 1249251103 2749 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 16:00:13+00:00 1.0 1249251103 2748 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 15:00:06+00:00 1.0 1249251103 2747 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-29 13:00:03+00:00 1.0 1249251103 2746 ℹ coin signal information ℹ date sunday 291219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-29 11:00:09+00:00 1.0 1249251103 2744 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 291219 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-29 09:53:38+00:00 1.0 1249251103 2742 dear members we hope you all had a great christmas this year unfortunately we will have to cancel this pump the market is looking decent but some of the options we had in mind already went up we will reschedule the pump once we see new opportunities we are sorry we also wanted to have a great binance pump tonight but better safe than sorry we do not want our members to lose massive amounts of bitcoin because the coin was pumped already there will be a lot of holders who will be watching the market ready to dump on us i hope you guys understand we wish you all a happy new year with the hope that you will have many blessings in the year to come thanks for understanding the pump team 1 day ago 1 hour ago we have the option to buy premium member contact atlantismanager 2019-12-27 20:41:04+00:00 1.0 1249251103 2741 2 days left we see a couple of good opportunities ⏳ date 27dec2019 ⏰ time 9 pm gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 30 60 profit 1 day ago 1 hour ago we have the option to buy premium member contact atlantismanager 2019-12-25 19:42:55+00:00 1.0 1249251103 2739 binance pump announcement ⏳ date 27dec2019 ⏰ time 9 pm gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 30 60 profit dear members it is christmas today a day full of joy and peace christmas is an expensive period so we want to give you all a present we all know that you have been waiting for a pump so our present to you we will pump we will pump so everyone can end the year on a good note and earn money to spend on the holiday season we will introduce third christmas day pump day so 27 december at exactly 9pm gmt we will be having a special pump this will not be a normal pump and we will explain why soon to make sure this pump will be as great as possible invite people to the telegram happy christmas guys 1 day ago 1 hour ago we have the option to buy premium member contact atlantismanager 2019-12-24 14:15:37+00:00 1.0 1249251103 2737 24 hours left pump on binance with these two points we will get a good hold during the pump 1 after you bought do not sell 100 at once slowly sell 25 at a time doing this will not cause panic on the market and will aid the pump a lot 2 also important is to assist the pump set buy walls during the pump what are buy walls example when the coin is up lets say 100 put up buy walls buy offers just under the market price a lot of outsiders people who are not in rocket pump wave will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits so the mission of us the pump group today is to get outsiders in via official news and social media channels we will make sure the news about the coin we picked will be posted all over twitter and on reddit lets show the whales what a big group of small traders can do the chat is open if you have any questions head over to the chat more information will follow in the next hours our dec success rates are ✅ 3710 edo binance 9 dec ✅ 7801 cure bittrex 12 dec ✅ binance 21 dec 1 day ago 1 hour ago we have the option to buy premium member contact atlantismanager 2019-12-20 21:00:39+00:00 1.0 1249251103 2736 tomorrow big binance pump bitcoin has long remained over 7000 this is a great situation for the pump were going to surprise the foreign investor and its going to be a great pump if you want to be a part of this opportunity dont miss the big pump tomorrow you can become a vip member if you like and learn the name coin today ⏳ date 21dec2019 ⏰ time 9 pm gmt exchange binance partners more than 550000 cryptomembers +16 whale channels target 40 60 profit send a message today to find out the name coin 1 day ago or 1 hour ago premium member contact atlantismanager 2019-12-20 14:07:02+00:00 1.0 1249251103 2735 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2019-12-18 17:27:49+00:00 1.0 1249251103 2734 pump results coin was ren open 486 high 1380 profit approx x 3 repump count ✨4th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-17 17:24:54+00:00 1.0 1249251103 2729 the coin to pump is ren exchange yobitnet target +100 market renbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-17 17:00:18+00:00 1.0 1249251103 2726 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-17 16:55:03+00:00 1.0 1249251103 2725 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-17 16:50:03+00:00 1.0 1249251103 2724 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-17 16:40:16+00:00 1.0 1249251103 2723 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-17 16:30:05+00:00 1.0 1249251103 2722 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 16:00:05+00:00 1.0 1249251103 2721 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 15:00:04+00:00 1.0 1249251103 2720 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-17 13:00:11+00:00 1.0 1249251103 2719 ℹ coin signal information ℹ date tuesday 171219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-17 11:00:02+00:00 1.0 1249251103 2717 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 171219 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-17 08:27:33+00:00 1.0 1249251103 2715 pump results coin was bnt open 3611 high 8995 profit approx x 2 repump count ✨7th ✨time on your massive request curativeconsecutive pump on your massive demand ✨ we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-12-13 17:24:04+00:00 1.0 1249251103 2710 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-12-13 17:00:15+00:00 1.0 1249251103 2707 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-12-13 16:55:03+00:00 1.0 1249251103 2706 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-12-13 16:50:04+00:00 1.0 1249251103 2705 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-12-13 16:40:28+00:00 1.0 1249251103 2704 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-12-13 16:30:02+00:00 1.0 1249251103 2703 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 16:00:11+00:00 1.0 1249251103 2702 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 15:00:06+00:00 1.0 1249251103 2701 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-12-13 13:00:16+00:00 1.0 1249251103 2700 ℹ coin signal information ℹ date friday 131219 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-12-13 10:56:27+00:00 1.0 1249251103 2698 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 131219 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-12-13 08:42:10+00:00 1.0 1249251103 2696 binance vip club be whale mega profit in every signal get coin name just before pump and make huge profit join fast link is open for few seconds 2019-12-01 07:56:20+00:00 1.0 1249251103 2695 pump results coin was bnt open 3490 high 9500 profit approx x 3 repump count ✨6th ✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-15 17:28:13+00:00 1.0 1249251103 2691 the coin to pump is bnt exchange yobitnet target +300 market bntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-15 17:02:04+00:00 1.0 1249251103 2687 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-15 16:55:05+00:00 1.0 1249251103 2686 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-15 16:50:07+00:00 1.0 1249251103 2685 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-15 16:40:04+00:00 1.0 1249251103 2684 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-15 16:30:06+00:00 1.0 1249251103 2683 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 16:00:07+00:00 1.0 1249251103 2682 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 15:00:04+00:00 1.0 1249251103 2681 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-15 13:00:28+00:00 1.0 1249251103 2680 ℹ coin signal information ℹ date friday 151119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-15 11:00:05+00:00 1.0 1249251103 2678 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 151119 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-15 09:22:56+00:00 1.0 1249251103 2676 pump analysis coin was mda low 7800 high 65000 profit 700 guys more than 8x times repump count 4th time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-11-12 17:43:30+00:00 1.0 1249251103 2671 the coin to pump is mda exchange yobitnet target +100200 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-11-12 17:00:16+00:00 1.0 1249251103 2668 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-11-12 16:55:03+00:00 1.0 1249251103 2667 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-11-12 16:50:03+00:00 1.0 1249251103 2666 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-11-12 16:40:04+00:00 1.0 1249251103 2665 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-11-12 16:30:03+00:00 1.0 1249251103 2664 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 16:00:16+00:00 1.0 1249251103 2663 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 15:00:05+00:00 1.0 1249251103 2662 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-11-12 13:00:06+00:00 1.0 1249251103 2660 ℹ coin signal information ℹ date tuesday 121119 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-11-12 11:00:03+00:00 1.0 1249251103 2658 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121119 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-11-12 08:01:44+00:00 1.0 1249251103 2655 pump analysis coin was mda low 8736 high 19000 guys more than 2x times as we choose this coin on your demand your early selling in beginning of pump halts the pumpvery less volume produced appearance of red colors created bottleneck in pumpinganyways repump count 3rd time ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-24 17:22:01+00:00 1.0 1249251103 2649 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-24 16:55:03+00:00 1.0 1249251103 2648 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-24 16:50:02+00:00 1.0 1249251103 2647 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-24 16:40:02+00:00 1.0 1249251103 2646 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-24 16:30:03+00:00 1.0 1249251103 2645 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 16:00:06+00:00 1.0 1249251103 2644 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 15:00:05+00:00 1.0 1249251103 2643 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-24 13:00:07+00:00 1.0 1249251103 2641 ℹ coin signal information ℹ date thursday 241019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-24 11:00:04+00:00 1.0 1249251103 2639 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 241019 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-24 09:56:27+00:00 1.0 1249251103 2637 pump results coin was fun low 40 high 70 welldone guys almost 2x times repump count ✨6th✨time on your massive request ✨curativeconsecutive✨ pump on massive demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-22 17:35:31+00:00 1.0 1249251103 2630 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-22 16:55:03+00:00 1.0 1249251103 2629 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-22 16:50:02+00:00 1.0 1249251103 2628 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-22 16:40:03+00:00 1.0 1249251103 2627 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-22 16:30:03+00:00 1.0 1249251103 2626 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 16:00:03+00:00 1.0 1249251103 2625 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 15:00:06+00:00 1.0 1249251103 2624 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-22 13:00:05+00:00 1.0 1249251103 2622 ℹ coin signal information ℹ date tuesday 221019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-22 11:21:29+00:00 1.0 1249251103 2620 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 221019 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-22 10:09:04+00:00 1.0 1249251103 2618 pump results coin was blz low 281 high 580 welldone guys almost 2x times repump count ✨5th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-12 17:47:27+00:00 1.0 1249251103 2611 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-12 16:55:02+00:00 1.0 1249251103 2610 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-12 16:50:02+00:00 1.0 1249251103 2609 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-12 16:40:02+00:00 1.0 1249251103 2608 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-12 16:30:03+00:00 1.0 1249251103 2607 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 16:00:04+00:00 1.0 1249251103 2606 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 15:00:03+00:00 1.0 1249251103 2605 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-12 13:00:06+00:00 1.0 1249251103 2603 ℹ coin signal information ℹ date saturday 121019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-12 11:40:26+00:00 1.0 1249251103 2601 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 121019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-12 06:55:19+00:00 1.0 1249251103 2599 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-10-06 17:43:09+00:00 1.0 1249251103 2598 pump results coin was snt low 149 high 355 welldone guys more than 2x times repump count 2nd time within 02 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-05 17:16:01+00:00 1.0 1249251103 2593 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-05 17:00:16+00:00 1.0 1249251103 2590 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-05 16:55:02+00:00 1.0 1249251103 2589 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-05 16:50:02+00:00 1.0 1249251103 2588 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-05 16:40:02+00:00 1.0 1249251103 2587 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-05 16:30:04+00:00 1.0 1249251103 2586 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 16:00:08+00:00 1.0 1249251103 2585 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 15:00:04+00:00 1.0 1249251103 2584 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-05 13:00:09+00:00 1.0 1249251103 2582 ℹ coin signal information ℹ date saturday 051019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-05 09:55:18+00:00 1.0 1249251103 2580 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 051019 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-05 06:46:19+00:00 1.0 1249251103 2578 pump results coin was snt low 149 high 517 welldone guys more than 3x times we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-10-02 17:26:12+00:00 1.0 1249251103 2573 the coin to pump is snt exchange yobitnet target +300 market sntbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-10-02 17:00:19+00:00 1.0 1249251103 2570 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-10-02 16:55:03+00:00 1.0 1249251103 2569 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-10-02 16:50:03+00:00 1.0 1249251103 2568 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-10-02 16:40:03+00:00 1.0 1249251103 2567 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-10-02 16:30:05+00:00 1.0 1249251103 2566 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 16:00:06+00:00 1.0 1249251103 2565 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 15:00:04+00:00 1.0 1249251103 2564 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-10-02 13:00:09+00:00 1.0 1249251103 2563 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:56:04+00:00 1.0 1249251103 2561 ℹ coin signal information ℹ date wednesday 021019 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-10-02 09:54:31+00:00 1.0 1249251103 2559 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 021019 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-10-02 01:38:16+00:00 1.0 1249251103 2557 newbbies if any loss in any coin which we pumped may inform cryptohoyden for repumpwe will surely repump itas we doon your request we donot pump scam coins pump only in strong coins 2019-09-30 19:12:03+00:00 1.0 1249251103 2556 pump results coin was mda low 9501 high 22286 welldone guys more than 2x times repump count 2nd time within 15 days ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-30 17:50:02+00:00 1.0 1249251103 2551 the coin to pump is mda exchange yobitnet target +300 market mdabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-30 17:00:11+00:00 1.0 1249251103 2549 ℹ️ 5 минут ℹ️ следующим постом будет покупка монеты на yobit ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-30 16:55:03+00:00 1.0 1249251103 2548 ℹ️ 10 минут ℹ️ будьте готовы с вашей учетной записью yobit «монета это покупка на низком уровне у нас» ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-30 16:50:03+00:00 1.0 1249251103 2547 ℹ️ 20 минут ℹ️ так близко сейчас убедитесь что вы готовы купить монету на yobitnet ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-30 16:40:03+00:00 1.0 1249251103 2546 ℹ️ 30 минут ℹ️ начните регистрироваться в yobitnet сейчас ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-30 16:30:03+00:00 1.0 1249251103 2545 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 1 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 16:00:05+00:00 1.0 1249251103 2544 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 2 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 15:00:15+00:00 1.0 1249251103 2543 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready ℹ️ 4 часа пока не будет выпущена монета чтобы купить bu обмен yobitnet прочитайте инструкции выше и будьте готовы 2019-09-30 13:00:04+00:00 1.0 1249251103 2541 ℹ coin signal information ℹ date monday 300919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height 2019-09-30 11:00:04+00:00 1.0 1249251103 2539 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains✅ make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 300919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-30 06:28:41+00:00 1.0 1249251103 2537 pump results coin was fun open 46 high 125 welldone guys almost 3x times repump count ✨5th✨time on your massive request ✨curativeconsecutive✨ pump on demand we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-28 17:13:14+00:00 1.0 1249251103 2531 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-28 16:55:03+00:00 1.0 1249251103 2530 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-28 16:50:04+00:00 1.0 1249251103 2529 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-28 16:40:03+00:00 1.0 1249251103 2528 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-28 16:30:03+00:00 1.0 1249251103 2527 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 16:00:03+00:00 1.0 1249251103 2526 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 15:00:11+00:00 1.0 1249251103 2525 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-28 13:00:08+00:00 1.0 1249251103 2524 ℹ coin signal information ℹ date saturday 280919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-28 11:00:03+00:00 1.0 1249251103 2523 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 280919 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-28 07:53:13+00:00 1.0 1249251103 2520 pump results coin was gvt low 11201 high 23000 as we got lot of message to pump out previous coin gvt so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-26 17:15:28+00:00 1.0 1249251103 2512 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-26 16:55:04+00:00 1.0 1249251103 2511 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-26 16:50:04+00:00 1.0 1249251103 2510 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-26 16:40:04+00:00 1.0 1249251103 2509 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-26 16:30:05+00:00 1.0 1249251103 2508 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 16:00:05+00:00 1.0 1249251103 2507 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 15:00:10+00:00 1.0 1249251103 2506 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-26 13:00:05+00:00 1.0 1249251103 2505 ℹ coin signal information ℹ date thursday 260919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-26 11:00:06+00:00 1.0 1249251103 2504 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 260919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-26 07:59:41+00:00 1.0 1249251103 2502 pump results coin was bat low 1834 high 3776 as we got lot of message to pump out last coin bat so on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-24 17:13:23+00:00 1.0 1249251103 2497 coin to pump is bat exchange yobitnet target +200 market batbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-24 17:00:05+00:00 1.0 1249251103 2496 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-24 16:55:03+00:00 1.0 1249251103 2495 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-24 16:50:03+00:00 1.0 1249251103 2494 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-24 16:40:03+00:00 1.0 1249251103 2493 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-24 16:30:07+00:00 1.0 1249251103 2492 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 16:00:06+00:00 1.0 1249251103 2491 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 15:00:08+00:00 1.0 1249251103 2490 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-24 13:00:04+00:00 1.0 1249251103 2489 ℹ coin signal information ℹ date tuesday 240919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-24 10:14:14+00:00 1.0 1249251103 2488 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 240919 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-24 08:44:15+00:00 1.0 1249251103 2486 pump results coin was mana low 300 high 600 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-23 17:26:49+00:00 1.0 1249251103 2481 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-23 17:00:05+00:00 1.0 1249251103 2480 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-23 16:55:05+00:00 1.0 1249251103 2479 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-23 16:50:03+00:00 1.0 1249251103 2478 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-23 16:40:03+00:00 1.0 1249251103 2477 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-23 16:30:04+00:00 1.0 1249251103 2476 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 16:00:10+00:00 1.0 1249251103 2475 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 15:00:09+00:00 1.0 1249251103 2474 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-23 13:00:25+00:00 1.0 1249251103 2473 ℹ coin signal information ℹ date monday 230919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-23 11:16:13+00:00 1.0 1249251103 2472 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 230919 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-23 08:41:41+00:00 1.0 1249251103 2469 pump results coin was qkc open 74 reached 200 welldone guys almost 3 x times repump count ✨4th✨time on your massive request we always listen you guys thats why we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-15 17:26:44+00:00 1.0 1249251103 2462 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-15 16:55:01+00:00 1.0 1249251103 2461 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-15 16:50:01+00:00 1.0 1249251103 2460 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-15 16:40:01+00:00 1.0 1249251103 2459 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-15 16:30:02+00:00 1.0 1249251103 2458 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 16:00:03+00:00 1.0 1249251103 2457 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 15:00:04+00:00 1.0 1249251103 2456 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-15 13:00:03+00:00 1.0 1249251103 2455 ℹ coin signal information ℹ date friday 150919 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in yobit chat box so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2019-09-15 11:00:02+00:00 1.0 1249251103 2454 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1 i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 5 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created ❌ never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone remember you need to post coin name in yobit chat box for huge gains make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 150919 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-15 08:17:35+00:00 1.0 1249251103 2452 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 18:29:13+00:00 1.0 1249251103 2447 the coin to pump is link exchange yobitnet target +300500 market linkbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-12 17:00:15+00:00 1.0 1249251103 2444 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-12 16:55:03+00:00 1.0 1249251103 2443 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-12 16:50:01+00:00 1.0 1249251103 2442 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-12 16:40:01+00:00 1.0 1249251103 2441 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-12 16:30:01+00:00 1.0 1249251103 2440 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 16:00:05+00:00 1.0 1249251103 2439 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 15:00:03+00:00 1.0 1249251103 2438 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-12 13:00:11+00:00 1.0 1249251103 2437 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 120919 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2019-09-12 07:27:23+00:00 1.0 1249251103 2431 buy coin bnt binance ▶️ tradeindexsymbolbntbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold 2019-09-07 17:01:03+00:00 1.0 1249251103 2429 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on binance 2019-09-07 16:55:02+00:00 1.0 1249251103 2428 10 minutes left make sure you are logged in your binance account❗️ 2019-09-07 16:50:03+00:00 1.0 1249251103 2427 30 minutes left thats it team were ready prepared for this giant that is coming 2019-09-07 16:30:04+00:00 1.0 1249251103 2424 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big wave this time 2019-09-07 13:00:16+00:00 1.0 1249251103 2422 pump results coin was mth low 123 high 362 welldone guys 25 x times on your demandwe listen you guys repump count 4th time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-06 18:10:33+00:00 1.0 1249251103 2417 the coin to pump is mth exchange yobitnet target +300500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-06 17:00:09+00:00 1.0 1249251103 2414 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-06 16:55:01+00:00 1.0 1249251103 2413 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-06 16:50:01+00:00 1.0 1249251103 2412 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-06 16:40:01+00:00 1.0 1249251103 2411 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-06 16:30:02+00:00 1.0 1249251103 2410 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 16:00:04+00:00 1.0 1249251103 2409 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 15:00:08+00:00 1.0 1249251103 2408 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-06 13:00:04+00:00 1.0 1249251103 2407 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-06 11:00:11+00:00 1.0 1249251103 2404 pump results coin was snm low 90 high 330 welldone guys 3x times on your demandwe listen you guys repump count 2nd time on your massive request we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-04 17:27:30+00:00 1.0 1249251103 2399 coin to pump is snm exchange yobitnet target +500 market snmbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-09-04 17:00:15+00:00 1.0 1249251103 2396 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-04 16:55:01+00:00 1.0 1249251103 2395 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-09-04 16:50:02+00:00 1.0 1249251103 2394 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-09-04 16:40:01+00:00 1.0 1249251103 2393 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-09-04 16:30:04+00:00 1.0 1249251103 2392 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 16:00:02+00:00 1.0 1249251103 2391 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 15:00:05+00:00 1.0 1249251103 2390 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-09-04 13:00:03+00:00 1.0 1249251103 2389 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-09-04 11:00:02+00:00 1.0 1249251103 2386 pump results coin was gvt open 14000 high 49999 welldone guys more than 3x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-24 18:37:03+00:00 1.0 1249251103 2381 the coin to pump is gvt exchange yobitnet target +200400 market gvtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-24 17:00:15+00:00 1.0 1249251103 2378 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-24 16:55:02+00:00 1.0 1249251103 2377 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-24 16:50:02+00:00 1.0 1249251103 2376 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-24 16:40:01+00:00 1.0 1249251103 2375 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-24 16:30:01+00:00 1.0 1249251103 2374 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 16:00:02+00:00 1.0 1249251103 2373 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 15:00:01+00:00 1.0 1249251103 2372 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-24 13:00:03+00:00 1.0 1249251103 2371 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-24 11:00:04+00:00 1.0 1249251103 2368 pump results coin was tfd open 28 high 120 welldone guys more than 4x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-17 17:12:54+00:00 1.0 1249251103 2363 coin to pump is tfd exchange yobitnet target +300 market tfdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-17 17:00:15+00:00 1.0 1249251103 2360 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-17 16:55:02+00:00 1.0 1249251103 2359 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-17 16:50:01+00:00 1.0 1249251103 2358 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-17 16:40:02+00:00 1.0 1249251103 2357 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-17 16:30:02+00:00 1.0 1249251103 2356 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 16:00:04+00:00 1.0 1249251103 2355 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 15:00:02+00:00 1.0 1249251103 2354 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-17 13:00:01+00:00 1.0 1249251103 2351 pump results coin was dlt open 452 high 1180 welldone guys more than 2x times on your demandwe listen you guys repump count 4th time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-16 17:13:21+00:00 1.0 1249251103 2346 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-16 17:00:16+00:00 1.0 1249251103 2343 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-16 16:55:03+00:00 1.0 1249251103 2342 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-16 16:50:03+00:00 1.0 1249251103 2341 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-16 16:40:01+00:00 1.0 1249251103 2340 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-16 16:30:02+00:00 1.0 1249251103 2339 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 16:00:08+00:00 1.0 1249251103 2338 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 15:00:04+00:00 1.0 1249251103 2337 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-16 13:00:20+00:00 1.0 1249251103 2336 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-16 11:02:21+00:00 1.0 1249251103 2333 pump results coin was dlt open 460 high 1186 welldone guys more than 2x times on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump in same coin on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-15 17:09:00+00:00 1.0 1249251103 2328 the coin to pump is dlt exchange yobitnet target +100200 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-15 17:00:19+00:00 1.0 1249251103 2325 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-15 16:55:03+00:00 1.0 1249251103 2324 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-15 16:50:06+00:00 1.0 1249251103 2323 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-15 16:40:02+00:00 1.0 1249251103 2322 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-15 16:30:03+00:00 1.0 1249251103 2321 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 16:00:08+00:00 1.0 1249251103 2320 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 15:00:11+00:00 1.0 1249251103 2319 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-15 13:00:08+00:00 1.0 1249251103 2318 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-15 11:03:18+00:00 1.0 1249251103 2315 pump results coin was wpr open 60 high 150 on your demandwe listen you guys ✨ more than 2 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-12 17:14:31+00:00 1.0 1249251103 2310 coin to pump is wpr exchange yobitnet target 100200 market wprbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-12 17:00:15+00:00 1.0 1249251103 2307 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-12 16:55:02+00:00 1.0 1249251103 2306 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-12 16:50:02+00:00 1.0 1249251103 2305 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-12 16:40:02+00:00 1.0 1249251103 2304 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-12 16:30:05+00:00 1.0 1249251103 2303 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 16:00:06+00:00 1.0 1249251103 2302 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 15:00:04+00:00 1.0 1249251103 2301 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-12 13:00:07+00:00 1.0 1249251103 2300 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-12 12:00:15+00:00 1.0 1249251103 2297 pump results coin was mana open 340 high 649 as we got lot of message to pump out last coin mana so on your demandwe listen you guys repump count 3rd time on your massive request ✨curativeconsecutive pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-11 17:21:13+00:00 1.0 1249251103 2292 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-11 17:00:14+00:00 1.0 1249251103 2289 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-11 16:55:02+00:00 1.0 1249251103 2288 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-11 16:50:02+00:00 1.0 1249251103 2287 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-11 16:40:02+00:00 1.0 1249251103 2286 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-11 16:30:03+00:00 1.0 1249251103 2285 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 16:00:09+00:00 1.0 1249251103 2284 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 15:00:02+00:00 1.0 1249251103 2283 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-11 13:00:11+00:00 1.0 1249251103 2282 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-11 11:00:06+00:00 1.0 1249251103 2279 pump results on binance coin was storj open 1315 high 1440 profit 10 2019-08-11 04:14:20+00:00 1.0 1249251103 2278 05 minutes left the next message will be the coin name with targets❗️ 2019-08-10 19:55:12+00:00 1.0 1249251103 2275 dear members 4 hours left the market is more than ready for this freeforall event this free for all pump will be big we expect big spikes and we expect a big second wave this time 2019-08-10 16:00:03+00:00 1.0 1249251103 2271 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:33:59+00:00 1.0 1249251103 2270 bullish saturday event date 10th august time 8pm gmt exchange binance info the event will be freeforall no time advantage for anyone a sweet coin strong ta+fa we will pick from the bottom and pump to the heavens whales are working with us in the event what will be results one word explosion our join channel link to add your friends 2019-08-09 17:33:53+00:00 1.0 1249251103 2269 pump results coin was mana open 292 high 800 welldone guys nearly 3 x times on your demandwe listen you guys repump count 2nd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-09 17:13:15+00:00 1.0 1249251103 2264 coin to pump is mana exchange yobitnet target 100200 market manabtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-09 17:00:17+00:00 1.0 1249251103 2261 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-09 16:55:01+00:00 1.0 1249251103 2260 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-09 16:50:05+00:00 1.0 1249251103 2259 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-09 16:40:02+00:00 1.0 1249251103 2258 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-09 16:30:05+00:00 1.0 1249251103 2257 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 16:00:01+00:00 1.0 1249251103 2256 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 15:00:02+00:00 1.0 1249251103 2255 ℹ️ 4 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-09 13:00:04+00:00 1.0 1249251103 2254 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2019-08-09 11:00:25+00:00 1.0 1249251103 2251 pump results coin was req open 138 high 194 second wave open 192 high 245 welldone guys on your demandwe listen you guys repump count 3rd time on your massive request ✨curative pump on your demand✨ we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-08-04 17:17:55+00:00 1.0 1249251103 2246 the coin to pump is req exchange yobitnet target 100200 market reqbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2019-08-04 17:00:13+00:00 1.0 1249251103 2243 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-08-04 16:55:01+00:00 1.0 1249251103 2242 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2019-08-04 16:50:01+00:00 1.0 1249251103 2241 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2019-08-04 16:40:01+00:00 1.0 1249251103 2240 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2019-08-04 16:30:02+00:00 1.0 1249251103 2239 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 16:00:03+00:00 1.0 1249251103 2238 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2019-08-04 15:00:01+00:00 1.0 1249251103 2187 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:50+00:00 1.0 1249251103 2185 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-11-09 16:55:15+00:00 1.0 1249251103 2184 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:10+00:00 1.0 1249251103 2183 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:12+00:00 1.0 1249251103 2182 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:18+00:00 1.0 1249251103 2181 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:23+00:00 1.0 1249251103 2180 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:30:19+00:00 1.0 1249251103 2179 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:54+00:00 1.0 1249251103 2178 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 13:01:52+00:00 1.0 1249251103 2177 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 10:00:35+00:00 1.0 1249251103 2176 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 08:00:51+00:00 1.0 1249251103 2175 ℹ coin signal information ℹ date friday 09112018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-11-09 07:45:20+00:00 1.0 1249251103 2174 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09112018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-11-09 06:21:09+00:00 1.0 1249251103 2173 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 091118 day friday time 5 pm gmt 2018-11-09 06:14:46+00:00 1.0 1249251103 2172 binance pump analysis coin wings 5 pm gmt low 2481 high 4173 win profit 68 volume 200 btc and coin evx 6 pm gmt low 7759 high 8562 win profit 10 volume 80 btc 2 pump total profit 78 want to buy coin 1 day or 1 hours in advance premium member contact bullpumptrader 2018-11-07 18:05:37+00:00 1.0 1249251103 2169 next post will be the coin 5 mins to the pump premium member contact bullpumptrader 2018-11-07 17:54:31+00:00 1.0 1249251103 2167 ▪️the binance pump will start in 30 mins be ready everyone sign up to the binance exchange wwwbinancecom send btc to your binance wallet ℹ️ practice using the search bar buy and sell forms open binance + telegram at 1845gmt ant to buy coin 1 day or 1 hours in advance premium member contact bullpumptrader 2018-11-07 17:32:45+00:00 1.0 1249251103 2162 next post will be the coin 10 mins to the pump 2018-11-07 16:51:32+00:00 1.0 1249251103 2160 5 hours 30 mins to the pump 5pm gmt exchange binance want to buy coin 1 hours before in advance premium member contact bullpumptrader 2018-11-07 11:30:19+00:00 1.0 1249251103 2159 binance pump announcement date 7 november time 3pm gmt+0 participants 200k+ telegram users exchange binance do not forget to invite your friends to the pump well always win together event concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 unmute our channel to stay updated best of luck team want to buy coin 1 day or 1 hours before in advance premium member contact bullpumptrader 2018-11-05 15:10:14+00:00 1.0 1249251103 2147 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-27 17:01:39+00:00 1.0 1249251103 2146 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-27 16:55:20+00:00 1.0 1249251103 2145 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-27 16:50:24+00:00 1.0 1249251103 2144 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-27 16:40:20+00:00 1.0 1249251103 2143 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-27 16:30:33+00:00 1.0 1249251103 2142 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 16:00:29+00:00 1.0 1249251103 2141 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:30:20+00:00 1.0 1249251103 2140 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:00:33+00:00 1.0 1249251103 2139 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 13:00:27+00:00 1.0 1249251103 2138 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 10:00:37+00:00 1.0 1249251103 2137 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 08:04:24+00:00 1.0 1249251103 2136 ℹ coin signal information ℹ date saturday 27102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-27 04:04:26+00:00 1.0 1249251103 2135 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-27 03:30:58+00:00 1.0 1249251103 2132 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 271018 day saturday time 5 pm gmt 2018-10-26 16:54:57+00:00 1.0 1249251103 2130 pump analysis coin ufr coin rose to 50 approximately from low level our team members banned by yobit chat admin could not rose furtherdue to this ban n account blocked by yobit chat admin as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate i see you all at the next signal 2018-10-19 17:58:28+00:00 1.0 1249251103 2123 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:55+00:00 1.0 1249251103 2122 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:11+00:00 1.0 1249251103 2121 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-19 16:50:13+00:00 1.0 1249251103 2120 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-19 16:40:09+00:00 1.0 1249251103 2119 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-19 16:30:08+00:00 1.0 1249251103 2118 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 16:00:42+00:00 1.0 1249251103 2117 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:30:10+00:00 1.0 1249251103 2116 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:00:23+00:00 1.0 1249251103 2115 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 13:00:33+00:00 1.0 1249251103 2114 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 10:00:26+00:00 1.0 1249251103 2113 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:31+00:00 1.0 1249251103 2112 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-19 05:31:46+00:00 1.0 1249251103 2111 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 191018 day friday time 5 pm gmt 2018-10-19 05:09:45+00:00 1.0 1249251103 2110 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:40+00:00 1.0 1249251103 2105 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:22+00:00 1.0 1249251103 2104 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-18 16:55:12+00:00 1.0 1249251103 2103 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-18 16:50:10+00:00 1.0 1249251103 2102 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-18 16:40:08+00:00 1.0 1249251103 2101 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-18 16:32:01+00:00 1.0 1249251103 2100 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 16:02:14+00:00 1.0 1249251103 2099 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:30:09+00:00 1.0 1249251103 2098 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:00:23+00:00 1.0 1249251103 2097 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 13:01:34+00:00 1.0 1249251103 2096 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 10:01:07+00:00 1.0 1249251103 2095 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 08:00:32+00:00 1.0 1249251103 2094 ℹ coin signal information ℹ date thursday18102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-18 03:34:47+00:00 1.0 1249251103 2093 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18102018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-18 01:34:35+00:00 1.0 1249251103 2091 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:11+00:00 1.0 1249251103 2090 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:33+00:00 1.0 1249251103 2084 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:14+00:00 1.0 1249251103 2082 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:09+00:00 1.0 1249251103 2081 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-13 16:50:10+00:00 1.0 1249251103 2080 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:09+00:00 1.0 1249251103 2079 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-13 16:30:10+00:00 1.0 1249251103 2078 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:29+00:00 1.0 1249251103 2077 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:30:13+00:00 1.0 1249251103 2076 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:22+00:00 1.0 1249251103 2075 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 13:00:20+00:00 1.0 1249251103 2074 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 10:01:42+00:00 1.0 1249251103 2073 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 09:02:13+00:00 1.0 1249251103 2072 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 06:11:26+00:00 1.0 1249251103 2071 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:48+00:00 1.0 1249251103 2068 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:54+00:00 1.0 1249251103 2064 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:32+00:00 1.0 1249251103 2062 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:29+00:00 1.0 1249251103 2061 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:24+00:00 1.0 1249251103 2060 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:17+00:00 1.0 1249251103 2059 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:24+00:00 1.0 1249251103 2058 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:30+00:00 1.0 1249251103 2057 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:22+00:00 1.0 1249251103 2056 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:14+00:00 1.0 1249251103 2055 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:10+00:00 1.0 1249251103 2054 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:28+00:00 1.0 1249251103 2053 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:10+00:00 1.0 1249251103 2052 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:55:01+00:00 1.0 1249251103 2051 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:30+00:00 1.0 1249251103 2050 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:51+00:00 1.0 1249251103 2049 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:46+00:00 1.0 1249251103 2044 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:13+00:00 1.0 1249251103 2043 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:19+00:00 1.0 1249251103 2042 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:09+00:00 1.0 1249251103 2041 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:12+00:00 1.0 1249251103 2040 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:27+00:00 1.0 1249251103 2039 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:41+00:00 1.0 1249251103 2038 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:22+00:00 1.0 1249251103 2037 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:12+00:00 1.0 1249251103 2036 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:12+00:00 1.0 1249251103 2035 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:14+00:00 1.0 1249251103 2034 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:22+00:00 1.0 1249251103 2033 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 09:33:38+00:00 1.0 1249251103 2032 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:27+00:00 1.0 1249251103 2031 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:26:04+00:00 1.0 1249251103 2030 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:20+00:00 1.0 1249251103 2029 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:06+00:00 1.0 1249251103 2025 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:47+00:00 1.0 1249251103 2023 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:15+00:00 1.0 1249251103 2022 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:12+00:00 1.0 1249251103 2021 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:12+00:00 1.0 1249251103 2020 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:30+00:00 1.0 1249251103 2019 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:16+00:00 1.0 1249251103 2018 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:23+00:00 1.0 1249251103 2017 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:19+00:00 1.0 1249251103 2016 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:26+00:00 1.0 1249251103 2015 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:35+00:00 1.0 1249251103 2014 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:24+00:00 1.0 1249251103 2013 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:23:10+00:00 1.0 1249251103 2012 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:20+00:00 1.0 1249251103 2011 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:55+00:00 1.0 1249251103 2005 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:20+00:00 1.0 1249251103 2003 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:13+00:00 1.0 1249251103 2002 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:17+00:00 1.0 1249251103 2001 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:10+00:00 1.0 1249251103 2000 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:11+00:00 1.0 1249251103 1999 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:14+00:00 1.0 1249251103 1998 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:20+00:00 1.0 1249251103 1997 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:25+00:00 1.0 1249251103 1996 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:17+00:00 1.0 1249251103 1995 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:20+00:00 1.0 1249251103 1994 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:26+00:00 1.0 1249251103 1993 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:13+00:00 1.0 1249251103 1992 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:11+00:00 1.0 1249251103 1991 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:55+00:00 1.0 1249251103 1987 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:28+00:00 1.0 1249251103 1985 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:13+00:00 1.0 1249251103 1984 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:09+00:00 1.0 1249251103 1983 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:11+00:00 1.0 1249251103 1982 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:12+00:00 1.0 1249251103 1981 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:15+00:00 1.0 1249251103 1980 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:22+00:00 1.0 1249251103 1979 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:31+00:00 1.0 1249251103 1978 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:29+00:00 1.0 1249251103 1977 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:24+00:00 1.0 1249251103 1976 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:15+00:00 1.0 1249251103 1975 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:17+00:00 1.0 1249251103 1974 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:54+00:00 1.0 1249251103 1973 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:02:01+00:00 1.0 1249251103 1972 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:28+00:00 1.0 1249251103 1966 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:05+00:00 1.0 1249251103 1965 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:17+00:00 1.0 1249251103 1964 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:10+00:00 1.0 1249251103 1963 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:10+00:00 1.0 1249251103 1962 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:16+00:00 1.0 1249251103 1961 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:48+00:00 1.0 1249251103 1960 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:19+00:00 1.0 1249251103 1959 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:19+00:00 1.0 1249251103 1958 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:14+00:00 1.0 1249251103 1957 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:18+00:00 1.0 1249251103 1956 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:17+00:00 1.0 1249251103 1955 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:10+00:00 1.0 1249251103 1954 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:18+00:00 1.0 1249251103 1953 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:15+00:00 1.0 1249251103 1952 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:05+00:00 1.0 1249251103 1946 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:31+00:00 1.0 1249251103 1944 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:13+00:00 1.0 1249251103 1943 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:15+00:00 1.0 1249251103 1942 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:12+00:00 1.0 1249251103 1941 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:49+00:00 1.0 1249251103 1940 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:23+00:00 1.0 1249251103 1939 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:26+00:00 1.0 1249251103 1938 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:37+00:00 1.0 1249251103 1937 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:19+00:00 1.0 1249251103 1936 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:24+00:00 1.0 1249251103 1935 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:13+00:00 1.0 1249251103 1934 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:12+00:00 1.0 1249251103 1933 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:27+00:00 1.0 1249251103 1932 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:38+00:00 1.0 1249251103 1930 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:23+00:00 1.0 1249251103 1925 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:31+00:00 1.0 1249251103 1923 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:17+00:00 1.0 1249251103 1921 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:26+00:00 1.0 1249251103 1920 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:15+00:00 1.0 1249251103 1919 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:18+00:00 1.0 1249251103 1918 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:40+00:00 1.0 1249251103 1917 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:45+00:00 1.0 1249251103 1916 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:18+00:00 1.0 1249251103 1915 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:26+00:00 1.0 1249251103 1914 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:16+00:00 1.0 1249251103 1913 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 19092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:23+00:00 1.0 1249251103 1911 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:47+00:00 1.0 1249251103 1910 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:41+00:00 1.0 1249251103 1903 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:39+00:00 1.0 1249251103 1901 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:10+00:00 1.0 1249251103 1900 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:11+00:00 1.0 1249251103 1899 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:34+00:00 1.0 1249251103 1898 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:37+00:00 1.0 1249251103 1897 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:25+00:00 1.0 1249251103 1896 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:17+00:00 1.0 1249251103 1895 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:37+00:00 1.0 1249251103 1894 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:12+00:00 1.0 1249251103 1893 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 08:00:17+00:00 1.0 1249251103 1892 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:10+00:00 1.0 1249251103 1891 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:28+00:00 1.0 1249251103 1889 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:11:00+00:00 1.0 1249251103 1888 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:03+00:00 1.0 1249251103 1880 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:26+00:00 1.0 1249251103 1879 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:13+00:00 1.0 1249251103 1878 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:23+00:00 1.0 1249251103 1877 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:18+00:00 1.0 1249251103 1876 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:28+00:00 1.0 1249251103 1875 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:26+00:00 1.0 1249251103 1874 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:37+00:00 1.0 1249251103 1873 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:16+00:00 1.0 1249251103 1872 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:39+00:00 1.0 1249251103 1871 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:40+00:00 1.0 1249251103 1870 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:35+00:00 1.0 1249251103 1869 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:19+00:00 1.0 1249251103 1868 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:27+00:00 1.0 1249251103 1867 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:37+00:00 1.0 1249251103 1858 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:40+00:00 1.0 1249251103 1857 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:09+00:00 1.0 1249251103 1856 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:10+00:00 1.0 1249251103 1855 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:12+00:00 1.0 1249251103 1854 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:24+00:00 1.0 1249251103 1853 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:16+00:00 1.0 1249251103 1852 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:28+00:00 1.0 1249251103 1851 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:41+00:00 1.0 1249251103 1850 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:15+00:00 1.0 1249251103 1849 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:09+00:00 1.0 1249251103 1848 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:15+00:00 1.0 1249251103 1847 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:23+00:00 1.0 1249251103 1845 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:16+00:00 1.0 1249251103 1844 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:17+00:00 1.0 1249251103 1840 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:45+00:00 1.0 1249251103 1839 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:17+00:00 1.0 1249251103 1838 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:14+00:00 1.0 1249251103 1837 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:11+00:00 1.0 1249251103 1836 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:13+00:00 1.0 1249251103 1835 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:14+00:00 1.0 1249251103 1834 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:15+00:00 1.0 1249251103 1833 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:25+00:00 1.0 1249251103 1832 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:24+00:00 1.0 1249251103 1831 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:19+00:00 1.0 1249251103 1830 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:11+00:00 1.0 1249251103 1828 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:07:58+00:00 1.0 1249251103 1827 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:26+00:00 1.0 1249251103 1821 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:43+00:00 1.0 1249251103 1820 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:13+00:00 1.0 1249251103 1819 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:19+00:00 1.0 1249251103 1818 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:10+00:00 1.0 1249251103 1817 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:22+00:00 1.0 1249251103 1816 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:27+00:00 1.0 1249251103 1815 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:21+00:00 1.0 1249251103 1814 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:16+00:00 1.0 1249251103 1813 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:14+00:00 1.0 1249251103 1812 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:17+00:00 1.0 1249251103 1811 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:16+00:00 1.0 1249251103 1810 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:23+00:00 1.0 1249251103 1808 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:49+00:00 1.0 1249251103 1807 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:41+00:00 1.0 1249251103 1801 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:31+00:00 1.0 1249251103 1800 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:10+00:00 1.0 1249251103 1799 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:12+00:00 1.0 1249251103 1798 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:13+00:00 1.0 1249251103 1797 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:13+00:00 1.0 1249251103 1796 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:21+00:00 1.0 1249251103 1795 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:16+00:00 1.0 1249251103 1794 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:48+00:00 1.0 1249251103 1793 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:22+00:00 1.0 1249251103 1792 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:16+00:00 1.0 1249251103 1791 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:40+00:00 1.0 1249251103 1790 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:49+00:00 1.0 1249251103 1788 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:41+00:00 1.0 1249251103 1786 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:46+00:00 1.0 1249251103 1779 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:20+00:00 1.0 1249251103 1778 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:11+00:00 1.0 1249251103 1777 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:11+00:00 1.0 1249251103 1776 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:16+00:00 1.0 1249251103 1775 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:19+00:00 1.0 1249251103 1774 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:24+00:00 1.0 1249251103 1773 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:36+00:00 1.0 1249251103 1772 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:21+00:00 1.0 1249251103 1771 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:28+00:00 1.0 1249251103 1770 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:14+00:00 1.0 1249251103 1769 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:09+00:00 1.0 1249251103 1768 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:04+00:00 1.0 1249251103 1760 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:37+00:00 1.0 1249251103 1759 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:20+00:00 1.0 1249251103 1758 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:13+00:00 1.0 1249251103 1757 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:13+00:00 1.0 1249251103 1756 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:13+00:00 1.0 1249251103 1755 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:18+00:00 1.0 1249251103 1754 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:15+00:00 1.0 1249251103 1753 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:19+00:00 1.0 1249251103 1752 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:17+00:00 1.0 1249251103 1751 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:19+00:00 1.0 1249251103 1750 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:11+00:00 1.0 1249251103 1749 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:10+00:00 1.0 1249251103 1747 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:07+00:00 1.0 1249251103 1745 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:11+00:00 1.0 1249251103 1744 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:20+00:00 1.0 1249251103 1743 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:11+00:00 1.0 1249251103 1742 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:20+00:00 1.0 1249251103 1741 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:21+00:00 1.0 1249251103 1740 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:46+00:00 1.0 1249251103 1739 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:17+00:00 1.0 1249251103 1738 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:13+00:00 1.0 1249251103 1737 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:34:02+00:00 1.0 1249251103 1736 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:52+00:00 1.0 1249251103 1734 coin all low 116 high 280 win good pump next pump tomorrow if you want to earn x2 earnings become a vip member communication for binance signals and cryptopia pumps premium member contact rptrader 2018-09-09 19:04:25+00:00 1.0 1249251103 1733 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:42+00:00 1.0 1249251103 1725 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:16+00:00 1.0 1249251103 1724 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:15+00:00 1.0 1249251103 1723 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:14+00:00 1.0 1249251103 1722 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:09+00:00 1.0 1249251103 1721 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:25+00:00 1.0 1249251103 1720 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:19+00:00 1.0 1249251103 1719 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:16+00:00 1.0 1249251103 1718 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:21+00:00 1.0 1249251103 1717 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:20+00:00 1.0 1249251103 1716 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:13+00:00 1.0 1249251103 1715 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:11+00:00 1.0 1249251103 1714 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:18+00:00 1.0 1249251103 1712 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:17+00:00 1.0 1249251103 1705 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:36+00:00 1.0 1249251103 1704 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:18+00:00 1.0 1249251103 1703 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:18+00:00 1.0 1249251103 1702 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:29+00:00 1.0 1249251103 1701 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:27+00:00 1.0 1249251103 1700 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:34+00:00 1.0 1249251103 1699 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:24+00:00 1.0 1249251103 1698 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:14+00:00 1.0 1249251103 1697 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:10+00:00 1.0 1249251103 1696 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:12+00:00 1.0 1249251103 1695 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:18+00:00 1.0 1249251103 1694 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:24+00:00 1.0 1249251103 1692 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:20+00:00 1.0 1249251103 1686 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:23+00:00 1.0 1249251103 1685 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:11+00:00 1.0 1249251103 1684 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:10+00:00 1.0 1249251103 1683 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:12+00:00 1.0 1249251103 1682 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:10+00:00 1.0 1249251103 1681 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:00:58+00:00 1.0 1249251103 1680 upcoming signal announcement❗ great news team the next broadcast is on date 789th september ⏱ time 7pm gmt exchange wwwcryptopiaconz the next bullish altcoins signal will be released on that date as the markets timing momentum will technically be held ideally for another massive price rally +346 on the previous one cryptopia investors are loading up with altcoins having very bullish price patterns as well as the market is getting crowded back from summer break team work is key we will clear some huge gains with these market buyers because of the big decline in bitcoin we made the membership price 004 btc it will only last 7 days hurry up vip membership limited slots buy now only 6 slots open ✅ coin name before pump ✅ professional daily help ✅ premium signals this membership allows you to pump coins with buying opportunities 1 day before in advance fees 004 btc 1 year access regards admin rptrader 2018-09-06 15:26:44+00:00 1.0 1249251103 1679 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:14+00:00 1.0 1249251103 1678 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:14+00:00 1.0 1249251103 1677 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:20+00:00 1.0 1249251103 1676 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:18+00:00 1.0 1249251103 1675 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:19+00:00 1.0 1249251103 1674 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:45+00:00 1.0 1249251103 1672 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:06+00:00 1.0 1249251103 1667 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-02 01:15:44+00:00 1.0 1249251103 1657 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:01:01+00:00 1.0 1249251103 1656 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:11+00:00 1.0 1249251103 1655 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:11+00:00 1.0 1249251103 1654 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:15+00:00 1.0 1249251103 1653 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:14+00:00 1.0 1249251103 1652 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:36+00:00 1.0 1249251103 1651 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:00:58+00:00 1.0 1249251103 1650 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:15+00:00 1.0 1249251103 1649 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:23+00:00 1.0 1249251103 1648 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:20+00:00 1.0 1249251103 1647 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:17+00:00 1.0 1249251103 1646 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:17+00:00 1.0 1249251103 1644 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:43+00:00 1.0 1249251103 1642 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:28+00:00 1.0 1249251103 1636 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:27+00:00 1.0 1249251103 1633 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:14+00:00 1.0 1249251103 1632 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:13+00:00 1.0 1249251103 1631 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:17+00:00 1.0 1249251103 1630 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:19+00:00 1.0 1249251103 1629 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:17+00:00 1.0 1249251103 1628 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:29+00:00 1.0 1249251103 1627 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:12+00:00 1.0 1249251103 1626 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:12+00:00 1.0 1249251103 1625 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:18+00:00 1.0 1249251103 1624 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:12+00:00 1.0 1249251103 1623 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:29+00:00 1.0 1249251103 1621 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:27+00:00 1.0 1249251103 1612 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:48+00:00 1.0 1249251103 1610 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:11+00:00 1.0 1249251103 1609 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:11+00:00 1.0 1249251103 1608 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:11+00:00 1.0 1249251103 1607 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:15+00:00 1.0 1249251103 1606 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:32+00:00 1.0 1249251103 1605 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:54+00:00 1.0 1249251103 1604 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:20+00:00 1.0 1249251103 1603 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:15+00:00 1.0 1249251103 1602 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:23+00:00 1.0 1249251103 1601 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:15+00:00 1.0 1249251103 1600 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:17+00:00 1.0 1249251103 1598 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:34+00:00 1.0 1249251103 1592 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:35+00:00 1.0 1249251103 1589 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:10+00:00 1.0 1249251103 1587 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:10+00:00 1.0 1249251103 1586 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:15+00:00 1.0 1249251103 1582 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:14+00:00 1.0 1249251103 1580 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:12+00:00 1.0 1249251103 1579 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:30+00:00 1.0 1249251103 1578 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:06+00:00 1.0 1249251103 1577 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:38+00:00 1.0 1249251103 1570 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:11+00:00 1.0 1249251103 1569 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:14+00:00 1.0 1249251103 1568 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:22+00:00 1.0 1249251103 1567 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:10+00:00 1.0 1249251103 1566 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:23+00:00 1.0 1249251103 1565 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:13+00:00 1.0 1249251103 1564 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:21+00:00 1.0 1249251103 1563 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:18+00:00 1.0 1249251103 1562 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:18+00:00 1.0 1249251103 1561 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:19+00:00 1.0 1249251103 1560 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:11+00:00 1.0 1249251103 1559 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:19+00:00 1.0 1249251103 1558 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:21+00:00 1.0 1249251103 1557 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:29+00:00 1.0 1249251103 1555 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:13+00:00 1.0 1249251103 1553 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-24 14:42:38+00:00 1.0 1249251103 1552 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 13:57:15+00:00 1.0 1249251103 1551 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 10:03:41+00:00 1.0 1249251103 1550 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 08:00:27+00:00 1.0 1249251103 1549 ℹ coin signal information ℹ date friday 24082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-24 03:00:15+00:00 1.0 1249251103 1548 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-24 02:00:21+00:00 1.0 1249251103 1546 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info shortly ℹ️ exchange yobit 2018-08-24 01:05:46+00:00 1.0 1249251103 1545 scheduled pump is cancelled due to high sell wall coin is not near to 24 hr low which is our speciality to signal low level we will reschedule with good coin again low level thanks for keeping patience 2018-08-23 17:06:48+00:00 1.0 1249251103 1544 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-23 17:05:06+00:00 1.0 1249251103 1543 ℹ️ 20 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:54:16+00:00 1.0 1249251103 1542 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:37:37+00:00 1.0 1249251103 1541 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 16:02:24+00:00 1.0 1249251103 1540 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:16:33+00:00 1.0 1249251103 1539 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:08:51+00:00 1.0 1249251103 1538 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 13:01:46+00:00 1.0 1249251103 1537 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 10:01:33+00:00 1.0 1249251103 1536 ℹ coin signal information ℹ date thursday 23082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-23 09:05:28+00:00 1.0 1249251103 1535 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 23082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-23 08:48:57+00:00 1.0 1249251103 1534 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 23 august 2018 day thursday time 5 pm gmt 2018-08-23 07:59:20+00:00 1.0 1249251103 1530 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:24+00:00 1.0 1249251103 1520 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:17+00:00 1.0 1249251103 1519 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:11+00:00 1.0 1249251103 1518 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-22 16:51:14+00:00 1.0 1249251103 1517 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-22 16:41:10+00:00 1.0 1249251103 1516 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-22 16:31:18+00:00 1.0 1249251103 1515 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 16:01:17+00:00 1.0 1249251103 1514 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 15:01:23+00:00 1.0 1249251103 1513 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:13+00:00 1.0 1249251103 1512 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:12+00:00 1.0 1249251103 1511 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:17+00:00 1.0 1249251103 1510 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:31+00:00 1.0 1249251103 1509 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:48+00:00 1.0 1249251103 1508 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always remember pump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:03+00:00 1.0 1249251103 1497 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:22+00:00 1.0 1249251103 1495 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:26+00:00 1.0 1249251103 1494 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:16+00:00 1.0 1249251103 1493 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:14+00:00 1.0 1249251103 1492 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:13+00:00 1.0 1249251103 1491 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:03:00+00:00 1.0 1249251103 1490 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:19+00:00 1.0 1249251103 1489 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:13+00:00 1.0 1249251103 1488 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:11+00:00 1.0 1249251103 1487 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:13+00:00 1.0 1249251103 1486 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:51+00:00 1.0 1249251103 1485 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:06+00:00 1.0 1249251103 1483 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:29+00:00 1.0 1249251103 1482 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:20:00+00:00 1.0 1249251103 1472 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:08+00:00 1.0 1249251103 1470 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:17+00:00 1.0 1249251103 1469 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:13+00:00 1.0 1249251103 1468 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:09+00:00 1.0 1249251103 1467 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:33+00:00 1.0 1249251103 1466 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:26+00:00 1.0 1249251103 1465 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:17+00:00 1.0 1249251103 1464 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:28+00:00 1.0 1249251103 1463 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:11+00:00 1.0 1249251103 1462 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:20+00:00 1.0 1249251103 1461 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:46+00:00 1.0 1249251103 1460 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:32+00:00 1.0 1249251103 1459 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:46+00:00 1.0 1249251103 1457 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:19:57+00:00 1.0 1249251103 1448 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:52+00:00 1.0 1249251103 1446 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:12+00:00 1.0 1249251103 1445 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:08+00:00 1.0 1249251103 1444 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:13+00:00 1.0 1249251103 1443 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:13+00:00 1.0 1249251103 1442 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:13+00:00 1.0 1249251103 1441 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:09+00:00 1.0 1249251103 1440 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:10+00:00 1.0 1249251103 1439 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:13+00:00 1.0 1249251103 1438 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 07:59:56+00:00 1.0 1249251103 1436 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:10+00:00 1.0 1249251103 1435 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:29+00:00 1.0 1249251103 1433 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:52:57+00:00 1.0 1249251103 1423 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:24+00:00 1.0 1249251103 1421 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-16 15:56:09+00:00 1.0 1249251103 1420 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-16 15:51:18+00:00 1.0 1249251103 1419 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-16 15:41:08+00:00 1.0 1249251103 1418 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-16 15:31:20+00:00 1.0 1249251103 1417 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 15:01:19+00:00 1.0 1249251103 1416 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 14:31:15+00:00 1.0 1249251103 1415 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-16 13:01:12+00:00 1.0 1249251103 1414 coin signal coin name bip exchange cryptopia expected pump within 24 hrs expected profit 40 to 70 percent 2018-08-16 08:46:07+00:00 1.0 1249251103 1413 ℹ coin signal information ℹ date thursday 16082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-16 08:01:21+00:00 1.0 1249251103 1411 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 16082018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-16 02:27:00+00:00 1.0 1249251103 1410 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:28+00:00 1.0 1249251103 1408 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:03+00:00 1.0 1249251103 1395 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:03+00:00 1.0 1249251103 1394 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-14 16:56:16+00:00 1.0 1249251103 1393 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-14 16:50:09+00:00 1.0 1249251103 1392 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-14 16:41:23+00:00 1.0 1249251103 1391 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-14 16:30:18+00:00 1.0 1249251103 1390 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 16:00:19+00:00 1.0 1249251103 1389 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 14:00:16+00:00 1.0 1249251103 1388 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 13:04:16+00:00 1.0 1249251103 1387 ℹ coin signal information ℹ date tuesday 14082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-14 12:02:42+00:00 1.0 1249251103 1386 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 14082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-14 11:37:36+00:00 1.0 1249251103 1384 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:48+00:00 1.0 1249251103 1380 hold post coin name in yobit chatboxhaving rumour of airdrop 2018-08-13 18:07:09+00:00 1.0 1249251103 1373 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:00:58+00:00 1.0 1249251103 1372 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-13 17:56:08+00:00 1.0 1249251103 1371 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-13 17:51:07+00:00 1.0 1249251103 1370 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-13 17:41:08+00:00 1.0 1249251103 1369 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-13 17:31:10+00:00 1.0 1249251103 1368 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 17:01:10+00:00 1.0 1249251103 1367 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 15:01:09+00:00 1.0 1249251103 1366 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 13:01:10+00:00 1.0 1249251103 1365 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 10:01:14+00:00 1.0 1249251103 1364 ℹ coin signal information ℹ date monday 13082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 10 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-13 08:01:10+00:00 1.0 1249251103 1363 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 13082018 monday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-13 03:28:53+00:00 1.0 1249251103 1361 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:27+00:00 1.0 1249251103 1350 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 16:00:00+00:00 1.0 1249251103 1349 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-12 15:56:08+00:00 1.0 1249251103 1348 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-12 15:51:09+00:00 1.0 1249251103 1347 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-12 15:41:08+00:00 1.0 1249251103 1346 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-12 15:31:14+00:00 1.0 1249251103 1345 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 15:01:20+00:00 1.0 1249251103 1344 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 14:31:13+00:00 1.0 1249251103 1343 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 13:01:10+00:00 1.0 1249251103 1342 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 10:01:28+00:00 1.0 1249251103 1341 ℹ coin signal information ℹ date sunday 12082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-12 08:01:08+00:00 1.0 1249251103 1340 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 12082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-12 02:38:16+00:00 1.0 1249251103 1338 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:05:54+00:00 1.0 1249251103 1324 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:10+00:00 1.0 1249251103 1323 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-09 17:56:08+00:00 1.0 1249251103 1322 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-09 17:51:07+00:00 1.0 1249251103 1321 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-09 17:41:08+00:00 1.0 1249251103 1320 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-09 17:31:09+00:00 1.0 1249251103 1319 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 17:01:21+00:00 1.0 1249251103 1318 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 15:01:32+00:00 1.0 1249251103 1317 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 13:01:33+00:00 1.0 1249251103 1316 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 10:01:09+00:00 1.0 1249251103 1315 ℹ coin signal information ℹ date thursday 09082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 9 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-09 08:56:19+00:00 1.0 1249251103 1314 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 09082018 thursday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-09 08:29:33+00:00 1.0 1249251103 1307 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:42+00:00 1.0 1249251103 1306 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-08 15:56:12+00:00 1.0 1249251103 1305 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-08 15:51:08+00:00 1.0 1249251103 1304 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-08 15:41:11+00:00 1.0 1249251103 1303 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-08 15:31:13+00:00 1.0 1249251103 1302 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 15:01:08+00:00 1.0 1249251103 1301 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 14:31:08+00:00 1.0 1249251103 1300 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 13:01:08+00:00 1.0 1249251103 1299 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 10:01:08+00:00 1.0 1249251103 1298 ℹ coin signal information ℹ date wednesday 08082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-08 08:01:07+00:00 1.0 1249251103 1297 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-08 00:34:08+00:00 1.0 1249251103 1295 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:25+00:00 1.0 1249251103 1294 results coin cubits qbtbtc low 000000018 high 000000031 increase 72+ volume 03 btc it was a good pump but we should do better one thanks for your believe to us congratulations to all who participated today and thanks for your support and positive feedback stay tuned for info regarding the next big copump our next profit target more than 100+ 2018-08-07 18:45:43+00:00 1.0 1249251103 1293 the coin to pump is qbt cubits qbtbtc exchange cryptopia target +150 2018-08-07 18:14:32+00:00 1.0 1249251103 1292 pump starts the coin to pump is qbt cubits qbtbtc exchange cryptopia target +150 market url trollbox 2018-08-07 18:14:23+00:00 1.0 1249251103 1287 1 hour left to pump it will be on cryptopia exchange ⚠️ 40 groups more than 160000 members will participate ⚠️ todays pump is going to be huge so get ready ✊ 2018-08-07 17:03:24+00:00 1.0 1249251103 1279 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 40 groups will participate around 160k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-08-06 18:00:18+00:00 1.0 1249251103 1277 next post coin name 2018-08-06 17:58:22+00:00 1.0 1249251103 1273 countdown its almost time to pump 30 minutes to go 2018-08-06 17:30:10+00:00 1.0 1249251103 1269 2 hours left to pump ⏰ time 600 pm gmt exchange cryptopia 2018-08-06 16:00:18+00:00 1.0 1249251103 1267 o w time to profit in this red market bigcryptopump group pumps selective coins again and again so that not a single member loses their hard earned btc we do only 001 pre pump to cover our discord server maintenance fee of which we provide screenshots proof this is how we stand out from other scam pump groups last few results iqt pumped twice over 60 percent each time bvb pumped thrice over 90 percent each time bits pumped once over 80 percent each time ℹ️ next signal monday ℹ️ exchange wwwcryptopiaconz date 06082018 monday time 6 pm gmt ℹ️be ready for another bang signalℹ️ 2018-08-06 10:33:11+00:00 1.0 1249251103 1257 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:33+00:00 1.0 1249251103 1256 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-05 15:57:08+00:00 1.0 1249251103 1255 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-05 15:52:10+00:00 1.0 1249251103 1254 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-05 15:42:08+00:00 1.0 1249251103 1253 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-05 15:32:17+00:00 1.0 1249251103 1252 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 15:02:11+00:00 1.0 1249251103 1251 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 14:32:09+00:00 1.0 1249251103 1250 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-05 13:02:10+00:00 1.0 1249251103 1249 ℹ coin signal information ℹ date sunday 05082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-05 11:04:07+00:00 1.0 1249251103 1248 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 05082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-05 10:16:13+00:00 1.0 1249251103 1246 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:22+00:00 1.0 1249251103 1237 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:23+00:00 1.0 1249251103 1236 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-04 15:57:18+00:00 1.0 1249251103 1235 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-04 15:51:16+00:00 1.0 1249251103 1234 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-04 15:41:21+00:00 1.0 1249251103 1233 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-04 15:32:27+00:00 1.0 1249251103 1232 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 15:04:12+00:00 1.0 1249251103 1229 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 14:33:59+00:00 1.0 1249251103 1228 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-04 13:03:13+00:00 1.0 1249251103 1224 ℹ coin signal information ℹ date saturday 04082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 6 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-04 09:59:37+00:00 1.0 1249251103 1223 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 04082018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-04 09:45:55+00:00 1.0 1249251103 1221 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:24+00:00 1.0 1249251103 1212 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:36+00:00 1.0 1249251103 1211 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-03 15:57:17+00:00 1.0 1249251103 1210 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-03 15:52:19+00:00 1.0 1249251103 1209 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-03 15:41:16+00:00 1.0 1249251103 1208 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-03 15:31:21+00:00 1.0 1249251103 1207 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 15:01:17+00:00 1.0 1249251103 1206 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 14:32:32+00:00 1.0 1249251103 1205 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 13:02:31+00:00 1.0 1249251103 1204 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 10:02:26+00:00 1.0 1249251103 1203 ℹ coin signal information ℹ date friday 03082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-03 08:02:19+00:00 1.0 1249251103 1202 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 03082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-03 01:34:26+00:00 1.0 1249251103 1200 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:16:10+00:00 1.0 1249251103 1198 pump starts the coin to pump is ltb litebar ltbbtc exchange cryptopia target +100 market url trollbox 2018-08-01 17:59:53+00:00 1.0 1249251103 1197 just 5 minutes to fly open your cryptopia account next post will be coin name ⚠⚠⚠ 2018-08-01 17:54:19+00:00 1.0 1249251103 1193 1 hour left to pump it will be on cryptopia exchange ⚠️40 groups more than 150000 members will participate ⚠️ todays pump is going to be hugeee so get ready ✊ 2018-08-01 17:00:14+00:00 1.0 1249251103 1188 24 hours left to pump time 1800 gmt ⏰ exchange cryptopia 40 groups will participate around 150k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-31 17:59:25+00:00 1.0 1249251103 1177 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:00:57+00:00 1.0 1249251103 1176 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-28 15:57:20+00:00 1.0 1249251103 1175 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-28 15:51:16+00:00 1.0 1249251103 1174 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-28 15:41:20+00:00 1.0 1249251103 1173 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-28 15:31:24+00:00 1.0 1249251103 1172 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 15:01:18+00:00 1.0 1249251103 1171 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 14:32:17+00:00 1.0 1249251103 1170 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 13:01:23+00:00 1.0 1249251103 1169 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 10:02:27+00:00 1.0 1249251103 1168 ℹ coin signal information ℹ date saturday 28 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-28 08:02:31+00:00 1.0 1249251103 1167 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 28072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-28 01:34:18+00:00 1.0 1249251103 1165 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:46+00:00 1.0 1249251103 1156 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:46+00:00 1.0 1249251103 1155 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-26 15:56:16+00:00 1.0 1249251103 1154 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-26 15:52:16+00:00 1.0 1249251103 1153 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-26 15:42:19+00:00 1.0 1249251103 1152 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-26 15:32:28+00:00 1.0 1249251103 1151 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 15:02:19+00:00 1.0 1249251103 1150 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 14:32:23+00:00 1.0 1249251103 1149 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 13:02:18+00:00 1.0 1249251103 1148 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 10:02:16+00:00 1.0 1249251103 1147 ℹ coin signal information ℹ date thursday 26 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-26 08:02:18+00:00 1.0 1249251103 1146 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-26 01:34:17+00:00 1.0 1249251103 1144 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:21:14+00:00 1.0 1249251103 1132 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 15:59:59+00:00 1.0 1249251103 1131 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-21 15:57:03+00:00 1.0 1249251103 1130 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-21 15:51:02+00:00 1.0 1249251103 1129 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-21 15:41:03+00:00 1.0 1249251103 1128 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-21 15:31:11+00:00 1.0 1249251103 1127 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 15:01:03+00:00 1.0 1249251103 1126 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 14:31:10+00:00 1.0 1249251103 1125 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 13:01:07+00:00 1.0 1249251103 1124 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 10:00:02+00:00 1.0 1249251103 1123 ℹ coin signal information ℹ date saturday 21 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-21 08:01:01+00:00 1.0 1249251103 1122 23 hours 30mins left to pump time 1800 gmt ⏰ exchange cryptopia 25 groups will participate around 80k members‍‍‍ london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 india 000 china 200 tokyo 100 stay tuned and wait for the flight 2018-07-20 18:29:49+00:00 1.0 1249251103 1121 big co pump announcement 21st july saturday 1800 gmt cryptopia exchange 2018-07-20 15:39:45+00:00 1.0 1249251103 1120 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-20 15:32:03+00:00 1.0 1249251103 1118 have you been missing out on these huge profits in our last pump on yobit having 600 profit in snpt coin make sure you are ready for the next one this group buys crypto coins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt 2018-07-20 11:48:26+00:00 1.0 1249251103 1113 coin umo low 580 high 987 win good pump wait for the next pump date 2018-06-25 19:03:38+00:00 1.0 1249251103 1111 5 mins to the pump next post will be the coin be ready 2018-06-25 18:55:03+00:00 1.0 1249251103 1110 30 mins to the pump 30 mins left dont forget to keep on holding and wait for outside investors its special coin profit target +220 be logged on 2018-06-25 18:32:02+00:00 1.0 1249251103 1109 1 hours to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-25 18:01:14+00:00 1.0 1249251103 1108 2 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-25 17:06:49+00:00 1.0 1249251103 1107 3 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-25 17:04:07+00:00 1.0 1249251103 1106 4 hours to the pump friends do not miss todays pump the lowest level of coin we choose is at the fibonachi boundary we expect a huge increase it always wins with us exchange cryptopia 2018-06-25 15:00:37+00:00 1.0 1249251103 1105 6 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 220 profit 2018-06-25 13:01:01+00:00 1.0 1249251103 1104 8 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 2018-06-25 11:10:50+00:00 1.0 1249251103 1099 tomorrow our pump time has changed 25062018 7 pm gmt 1 sign up to cryptopia and send your btc to your wallet today cryptopiaconz 2 at 1900pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once see you all tomorrow exchange wwwcryptopiaconz date 25062018 monday time 7 pm gmt read above for previous signals results they are the consistently biggest on cryptopia be a part of it 2018-06-24 13:45:27+00:00 1.0 1249251103 1098 pump announcement 25062018 6 pm gmt do not forget to invite your friends to the pump well always win together pump target 220 profit a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors have you been missing out on these huge profits above make sure you are ready for the next one 2018-06-23 17:40:34+00:00 1.0 1249251103 1097 coin bvb low 30 high 71 win profit + 75 good pump wait for the next pump date 2018-06-21 19:11:15+00:00 1.0 1249251103 1096 coin name bvb buy and hold 2018-06-21 19:00:24+00:00 1.0 1249251103 1095 5 mins to the pump next post will be the coin keep the caps lock key open while typing the name coin be ready 2018-06-21 18:55:08+00:00 1.0 1249251103 1094 30 mins to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 18:31:40+00:00 1.0 1249251103 1093 do not miss this pump today 1 hours 30 mins to the pump exchange cryptopiaconz today pump to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 220 lets beat this big pump last 1 hours be ready for the big rise target 220 profit 2018-06-21 17:29:53+00:00 1.0 1249251103 1092 3 hours to the pump be ready for the big rise target 220 profit exchange cryptopiaconz today pump 2018-06-21 16:03:50+00:00 1.0 1249251103 1090 9 hours to the pump exchange cryptopia todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 220 premium member contact rptrader 2018-06-21 09:59:45+00:00 1.0 1249251103 1089 24 hours until the coin to buy is released 21062018 7 pm gmt 1 sign up to cryptopia and send your btc to your wallet today cryptopiaconz 2 at 1900pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on cryptopia 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once see you all tomorrow exchange wwwcryptopiaconz date 21062018 tuesday time 7 pm gmt read above for previous signals results they are the consistently biggest on cryptopia be a part of it premium member contact rptrader 2018-06-20 19:00:26+00:00 1.0 1249251103 1088 pump announcement 21062018 7 pm gmt do not forget to invite your friends to the pump well always win together pump target 220 profit exchangecryptopia a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors premium member contact rptrader 2018-06-19 20:05:18+00:00 1.0 1249251103 1083 coin das low 460 high 1460 win profit + 220 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-17 18:05:15+00:00 1.0 1249251103 1081 10 mins to the pump next post will be the coin be ready 2018-06-17 17:50:11+00:00 1.0 1249251103 1077 7 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain contack rptrader 2018-06-17 11:04:17+00:00 1.0 1249251103 1076 pump announcement 16062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia premium member contact rptrader 2018-06-16 20:14:04+00:00 1.0 1249251103 1073 10 mins to the pump next post will be the coin be ready 2018-06-16 17:49:18+00:00 1.0 1249251103 1072 30 mins to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain 2018-06-16 17:29:54+00:00 1.0 1249251103 1071 1 hours to the pump exchange cryptopia be ready todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 320 2018-06-16 16:59:05+00:00 1.0 1249251103 1070 2 hours to the pump step 1 make sure you register on the cryptopia exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying target 320 profit 2018-06-16 16:00:03+00:00 1.0 1249251103 1069 3 hours to the pump remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ todays pump will last around 15 minutes while all outside investors pile on hold your coins until this happens for maximum profits ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days sign up and send btc to the cryptopia exchange cryptopiaconz 2018-06-16 14:59:35+00:00 1.0 1249251103 1068 4 hours to the pump exchange cryptopia be ready pump time 6 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 4 hours exchange cryptopia premium member contact rptrader 2018-06-16 14:00:10+00:00 1.0 1249251103 1066 8 hours 30 mins to the pump exchange cryptopia be ready todays pump information keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 premium member contact rptrader 2018-06-16 09:22:34+00:00 1.0 1249251103 1065 21 hours to the pump a quick to do list for new members sign up and send your btc to cryptopia 1️⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 6pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 45 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors premium member contact rptrader 2018-06-15 20:15:00+00:00 1.0 1249251103 1064 pump announcement 16062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia premium member contact rptrader 2018-06-15 15:13:50+00:00 1.0 1249251103 1062 5 mins to the pump next post will be the coin be ready 2018-06-15 14:55:00+00:00 1.0 1249251103 1061 binance hold and pump today‼️ 45 minutes left 1500 gmt the coin made huge dip last few weeks reached resistance line and expect to breakout anytime we will help the breakout happens today this will be freeforall pump no affilate rankings by site ‼️hold coin untill we reach targets do not sell before‼️ premium member contact rptrader 2018-06-15 14:15:31+00:00 1.0 1249251103 1060 less than 1 hour remaining until our new insane binance alert is here 11am est 3pm gmt 15 gmt view the countdown clock by clicking this link our new huge binance alert could explode today 15 gmt hurry up and get ready immediately do not miss this super awesome binance pump signal ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users premium member contact rptrader 2018-06-15 14:00:50+00:00 1.0 1249251103 1059 less than 2 hours remaining until our new insane binance alert is here 11am est 3pm gmt 15 gmt our new huge binance alert could explode today 15 gmt hurry up and get ready immediately do not miss this super awesome binance pump signal ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users 2018-06-15 13:00:46+00:00 1.0 1249251103 1058 message for information binance pump double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-15 12:06:26+00:00 1.0 1249251103 1057 less than 3 hours remaining until our new super juicy binance alert is here 11am est 3pm gmt 15 gmt our new huge binance alert could explode today 15 gmt hurry up and get ready immediately do not miss this super awesome binance pump signal ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users 2018-06-15 12:00:09+00:00 1.0 1249251103 1056 less than 6 hours 30 mins remaining until our new super juicy binance alert is here 11am est 3pm gmt 15 gmt our new huge binance alert could explode today 15 gmt‼️ hurry up and get ready immediately do not miss it ✅ date 06152018 ✅ time 15 gmt ✅ target 50 ✅ participants 1m binance users instructions for our new insane binance alert 1️⃣ once you receive the coin name you need to place your buy orders immediately 2️⃣ after your buy orders fill you need to hold your coins so the price of the coin can rise so we can reach our targets and maximize our profits 3️⃣ this is extremely important for all of us to make great money tomorrow 4️⃣ when all of us hold our coins the price of the coin attracts many outsiders which creates more volume for the price of the coin to skyrocket 2018-06-15 08:26:55+00:00 1.0 1249251103 1055 ‼️‼️less than 21 hours remaining until our new super mega binance alert is here 11am est 3pm gmt 15 gmt view the countdown clock by clicking this link the market finally got some great news therefore we scheduled our next mega binance pump for tomorrow‼️ date 06152018 time 15 gmt target 50 participants 1m binance users instructions for our new insane binance alert 1️⃣ once you receive the coin name you need to place your buy orders immediately 2️⃣ after your buy orders fill you need to hold your coins so the price of the coin can rise so we can reach our targets and maximize our profits 3️⃣ this is extremely important for all of us to make great money tomorrow 4️⃣ when all of us hold our coins the price of the coin attracts many outsiders which creates more volume for the price of the coin to skyrocket ‼️get ready right now‼️ 2018-06-14 18:11:08+00:00 1.0 1249251103 1054 market got some good news therefore we scheduled binance pump tomorrow ‼️ date 15062018 time 1500 gmt+0 target 50 volume target 6 btc participants 1m users collab pump i will share the details soon premium member contact rptrader 2018-06-14 17:26:23+00:00 1.0 1249251103 1053 coin cc low 363 high 647 win profit + 78 message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-14 17:14:34+00:00 1.0 1249251103 1049 5 mins to the pump next post will be the coin be ready 2018-06-14 16:54:19+00:00 1.0 1249251103 1048 15 mins to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain premium member contact rptrader 2018-06-14 16:45:19+00:00 1.0 1249251103 1047 30 mins to the pump remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ todays pump will last around 15 minutes while all outside investors pile on hold your coins until this happens for maximum profits ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days premium member contact rptrader 2018-06-14 16:31:08+00:00 1.0 1249251103 1045 2 hours to the pump exchange cryptopia be ready pump time 5 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 2 hours exchange cryptopia premium member contact rptrader 2018-06-14 15:09:45+00:00 1.0 1249251103 1042 5 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain premium member contact rptrader 2018-06-14 12:00:54+00:00 1.0 1249251103 1041 6 hours to the pump exchange cryptopia be ready todays pump information we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 280 premium member contact rptrader 2018-06-14 11:00:09+00:00 1.0 1249251103 1040 friends after the big cryptopia pump today tomorrow will be our pump in the binance market it will be our common pump with 16 great trader and pump channel message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-14 09:30:26+00:00 1.0 1249251103 1038 pump announcement 14062018 5 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia premium member contact rptrader 2018-06-13 19:24:57+00:00 1.0 1249251103 1036 pump announcement 14062018 7 pm gmt do not forget to invite your friends to the pump well always win together our pump target 280 profit exchangecryptopia premium member contact rptrader 2018-06-12 12:21:59+00:00 1.0 1249251103 1034 coin gpl low 2604 high 4500 win profit + 75 your other pumps did not go well but we have winners thank you for coming back you know the market has fallen thats why there was not much participation we will pause for a few days and pump again the market needs to come to itself message for information double your btc within few minutes with no risk check pump results and then decide for premium membership premium member contact rptrader 2018-06-11 15:22:54+00:00 1.0 1249251103 1033 the pump lasted 15 minutes team we are a wonderful pump group the analysis will come soon 2018-06-11 15:16:21+00:00 1.0 1249251103 1029 5 mins to the pump next post will be the coin be ready 2018-06-11 14:55:04+00:00 1.0 1249251103 1028 15 mins to the pump alright less than 15 minutes now be sure to have your cryptopia opened dont forget to hold the coin at least 510 mins premium member contact rptrader 2018-06-11 14:45:06+00:00 1.0 1249251103 1026 1 hours to the pump start logging in to your cryptopia accounts and have bitcoin ready biggest pump to date coming up exchange cryptopiaconz be ready we are all about to make some money premium member contact rptrader 2018-06-11 14:00:08+00:00 1.0 1249251103 1025 2 hours to the pump exchange cryptopia be ready when the coin is announced buy as fast as possible to push the price up and keep the momentum going ✈️ place your buy orders as high as possible to catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed from the best available price ⃣ as an example lets say the coin has sell orders at 200 205 and 208 sats put a buy order to 2000 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buy those lowest orders than you will buy from 211 215 and 218 which is again pretty good otherwise if youd put your order to 200 sats youd be failed to buy at the initial moment and miss the train to the moon ⃣ after you buy promote the coin on cryptopia trollbox to attract other people dont sell early exit price is your decision but our recommendation for you to wait till coin gets at least 1012x value ✅ ➡️ a direct link to the market will be shared in the announcement premium member contact rptrader 2018-06-11 13:00:25+00:00 1.0 1249251103 1024 3 hours to the super pump exchange cryptopia be ready today is going to be huge guys for everyone who has been waiting for the perfect pump to join this is it we are going to smash our record pump today have you ever wondered what the perfect pump looks like you will be joining one in 3 hours join us at 3pm gmt on cryptopia have btc ready premium member contact rptrader 2018-06-11 12:00:17+00:00 1.0 1249251103 1023 4 hours to the pump exchange cryptopia be ready pump time 3 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 4 hours exchange cryptopia premium member contact rptrader 2018-06-11 11:00:09+00:00 1.0 1249251103 1022 6 hours to the pump exchange cryptopia be ready todays pump information keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 premium member contact rptrader 2018-06-11 09:02:10+00:00 1.0 1249251103 1021 pump announcement 11062018 3 pm gmt do not forget to invite your friends to the pump well always win together our pump target 300 profit exchangecryptopia 24 hours to go until our next massive signal a quick to do list for new members sign up and send your btc to cryptopiaconz 1⃣ register an account at cryptopiaconz deposit btc into your account all our coin pairings will be in btc get familiar with the exchange search bar and buy sell order forms ⏰ at 3 pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 25 35 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount our pump target 300 profit ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors premium member contact rptrader 2018-06-10 15:03:26+00:00 1.0 1249251103 1010 5 mins to the pump next post will be the coin be ready remember we can easily reach 250 2018-06-03 17:55:09+00:00 1.0 1249251103 1009 15 mins to the pump alright less than 15 minutes now be sure to have your cryptopia opened dont forget to hold the coin at least 510 mins 2018-06-03 17:45:03+00:00 1.0 1249251103 1007 todays pump information 1 hours to the pump we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 250 please remeber we all together will win we should be as one man and act like that premium member contact rptrader 2018-06-03 17:04:13+00:00 1.0 1249251103 1006 3 hours to the pump exchange cryptopia instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 198 lets beat this 2018-06-03 15:02:33+00:00 1.0 1249251103 1005 5 hours to the pump exchange cryptopia coin is really good one please ensure you are going to be part of this pump the coin that we have chosen for today can break 220 gain max 320 gain 2018-06-03 13:01:34+00:00 1.0 1249251103 1004 7 hours to go until our next massive signal a quick to do list for new members sign up and send your btc to cryptopia get familiar with the exchange search bar and buy sell order forms ⏰ at 700pm gmt exactly we will post the coins name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coins name in the btc market to buy quickly click on a sell order 15 35 higher than the current market rate click your available btc value and cryptopia will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase at a great rate ⚠️ after posting the signal it will be shared by influential social media profiles resulting in a huge wave of investorsbuyers when the price hits the peak and the marketing team has promoted the coin we advise you to sell in pieces not all at once this keeps the price high and attractive to outside investors its special coin profit target +250 contact rptrader with any questions 2018-06-03 11:00:08+00:00 1.0 1249251103 1003 24 hours to the pump be ready for the big rise target 300 profit exchange cryptopia 2018-06-02 18:03:10+00:00 1.0 1249251103 1002 pump announcement 03062018 6 pm gmt do not forget to invite your friends to the pump well always win together our pump target 220 profit exchangecryptopia 2018-06-01 19:35:50+00:00 1.0 1249251103 996 coin irl low 90 high 260 profit + 198 sellers in at 30 minutes still sitting higher than the original buy in annoying cryptopia lagged the buy orders to nearly 10 seconds for some of you slowing down the rise a little bit that didnt hold us back though we hit 300 with 15 btc of trade volume lets see where the market takes it amazing result after holding at 220 for 30 minutes the pump is still in good condition 2018-05-31 19:32:14+00:00 1.0 1249251103 990 5 mins to the pump next post will be the coin be ready 2018-05-31 18:55:09+00:00 1.0 1249251103 989 15 mins to the pump be ready for the big rise target 280 profit exchange 2018-05-31 18:45:10+00:00 1.0 1249251103 988 30 mins to the pump are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this keep the caps lock key open while typing the name coin we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 300 exchange cryptopia 2018-05-31 18:32:03+00:00 1.0 1249251103 987 1 hours to the pump be ready for the big rise target 280 profit exchange 2018-05-31 18:00:14+00:00 1.0 1249251103 986 2 hours to the pump exchange cryptopia be ready pump time 7 pm gmt be logged in and ready 30 minutes before its going to be huge exchange 2018-05-31 17:00:15+00:00 1.0 1249251103 985 3 hours to the pump exchange cryptopia be ready pump time 7 pm gmt are you ready to make money instructions to complete your buy order on time to buy quickly click on a sell order higher than the current market rate click your available btc value and cryptopia will calculate the correct amount of coins by selecting a higher sell order you will have much more chances to complete your order at the best rate and as fast as possible you will always meet the lowest sell order first on the list even if you put a higher buy pricebe logged in and ready 30 minutes before its going to be huge read the instructions above it is going to be the biggest yet remember the last one hit 300 lets beat this big pump last 3 hours exchange cryptopia 2018-05-31 16:00:15+00:00 1.0 1249251103 984 4 hours 30 mins left to pump ⏰ time 700 pm gmt exchange wwwcryptopiaconz pair btc big pump 7 pm gmt ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often 2018-05-31 14:30:19+00:00 1.0 1249251103 983 dear members it was not the best pump today it was interrupted buy ugly trading bots at very beginning some of you noticed bad stard and didnt participate as well btc price is in trouble all who stayed with coin set sell orders with +1020 and leave it there someone will buy in 1 month time until now we will wait for crypto market to recover better next pump will be anounce when conditions are good stay tuned 2018-05-22 17:37:20+00:00 1.0 1249251103 978 5 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ next post is coin name ⭐️ 2018-05-22 16:54:03+00:00 1.0 1249251103 977 10 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:49:06+00:00 1.0 1249251103 976 15 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:44:17+00:00 1.0 1249251103 975 30 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:44:13+00:00 1.0 1249251103 974 30 minutes left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 16:29:04+00:00 1.0 1249251103 973 1 hour left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 15:59:01+00:00 1.0 1249251103 972 2 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 14:59:01+00:00 1.0 1249251103 971 3 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 13:59:32+00:00 1.0 1249251103 970 5 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 11:59:01+00:00 1.0 1249251103 969 7 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you ⭐️ never sell in loss our coins are pumped again very often no prepump no vips no dump honest pump 2018-05-22 09:59:02+00:00 1.0 1249251103 968 less than 10 hours left to pump ⏰ time 1700 gmt exchange wwwcryptopiaconz pair btc london 1800 new york 1300 paris 1900 moscow 2000 amsterdam 1900 ankara 2000 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-22 07:12:12+00:00 1.0 1249251103 965 the coins name is all allion pump hold guys promote the coin in chat box good luck everyone 2018-05-20 17:00:04+00:00 1.0 1249251103 964 3 minutes to go till hold signal⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-20 16:57:10+00:00 1.0 1249251103 951 5 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ next post is coin name ⭐️ 2018-05-19 14:54:05+00:00 1.0 1249251103 950 10 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:49:11+00:00 1.0 1249251103 949 15 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:44:01+00:00 1.0 1249251103 948 30 minutes left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 14:29:18+00:00 1.0 1249251103 947 1 hour left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 13:59:01+00:00 1.0 1249251103 946 2 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 12:59:17+00:00 1.0 1249251103 945 3 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 11:59:01+00:00 1.0 1249251103 944 5 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 09:59:07+00:00 1.0 1249251103 943 less than 7 hours left to pump ⏰ time 1500 gmt exchange wwwcryptopiaconz pair btc london 1600 new york 1100 paris 1700 moscow 1800 amsterdam 1700 ankara 1800 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you no prepump no vips no dump just like last time honest pump 2018-05-19 08:15:25+00:00 1.0 1249251103 941 ❗️ the next huge trading signal announcement is here ❗️ date sunday 20th time 5pm gmt exchange cryptopia next target150200 huge profits are predicted for this one 2018-05-18 09:17:23+00:00 1.0 1249251103 935 5 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ next post is coin name ⭐️ 2018-05-17 17:55:03+00:00 1.0 1249251103 934 10 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:50:22+00:00 1.0 1249251103 933 15 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:45:41+00:00 1.0 1249251103 931 30 minutes left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:30:05+00:00 1.0 1249251103 930 1 hour left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 17:01:37+00:00 1.0 1249251103 929 2 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 16:01:47+00:00 1.0 1249251103 927 its pumpintime the coin to pump is sev exchange yobit market sevbtc link 2018-05-17 15:04:43+00:00 1.0 1249251103 926 its pumpintime the coin to pump is sev exchange yobit market sevbtc link 2018-05-17 15:03:02+00:00 1.0 1249251103 925 3 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 15:01:10+00:00 1.0 1249251103 924 〽️〽️〽️〽️〽️〽️2 minutes left get ready next post will be the coin yobitnet pumpintime post 2018-05-17 14:59:00+00:00 1.0 1249251103 922 〽️〽️〽️〽️10 minutes prepare your btc for pumpintime pump on yobit 2018-05-17 14:51:01+00:00 1.0 1249251103 921 〽️〽️〽️15 minutes to pumpintime collaborative pump on yobitnet 2018-05-17 14:46:02+00:00 1.0 1249251103 920 〽️〽️30 minutes to yobitnet pumpintime collaborative pump 2018-05-17 14:31:39+00:00 1.0 1249251103 918 wwwyobitnet pump instructions 1 make sure you have btc ready to go in your yobit wallet it can take a while to transfer so give it time 2 when the coin is announced buy as fast as possible to push the price up and keep the momentum going 3 important place your buy orders above the current price or simply scroll to the bottom of the sell chart and click on a price to ensure your order is filled and you catch the best price if you set lower orders someone else may clear sell walls before you and your order wont be filled dont worry your order will be executed for the lowest possible price 4 as soon as you have bought your coins go to the yobit chat their chat forum to promote the coin and create excitement about the coin movement dont mention it is a pump and dump just “wow what is going on with xxx” chat up in any other forums you are a member in as well creating excitement is key 5 dont sell too early hodling is the key to getting outsiders to buy in exit price is entirely your decision but our recommendation for you to wait till coin gets at least 150 the original value 6 the coin name and a direct link to the market will be shared in the final announcement on the day register and send some btc 2018-05-17 13:31:33+00:00 1.0 1249251103 917 〽️2 hours left prepare btc for yobitnet pumpintime pump coming up at 1500 gmt〽️ 2018-05-17 13:01:07+00:00 1.0 1249251103 916 5 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz pair btc xxx london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 13:00:24+00:00 1.0 1249251103 915 〽️3 hours left prepare btc for yobitnet pumpintime pump coming up at 1500 gmt〽️ 2018-05-17 12:01:09+00:00 1.0 1249251103 914 10 hours left to pump ⏰ time 1800 gmt exchange wwwcryptopiaconz london 1900 new york 1400 paris 2000 moscow 2100 amsterdam 2000 ankara 2100 ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you 2018-05-17 08:01:49+00:00 1.0 1249251103 902 the coins name is gun guncoin pump hold guys promote the coin in chat box good luck everyone 2018-05-14 20:59:59+00:00 1.0 1249251103 901 3 minutes to go till hold signal⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-14 20:57:25+00:00 1.0 1249251103 895 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-14 19:34:29+00:00 1.0 1249251103 888 ❗️ the next huge trading signal announcement is here date monday the 14th of may at 9pm gmt exchange cryptopia expected price increase 150 awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-13 18:26:42+00:00 1.0 1249251103 885 the coins name is gun guncoin pump hold guys promote the coin in chat box good luck everyone 2018-05-12 15:00:02+00:00 1.0 1249251103 884 3 minutes to go till hold signal⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-12 14:57:05+00:00 1.0 1249251103 881 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-12 14:46:33+00:00 1.0 1249251103 874 just under 4 hour to go till pump hold⏳ correcting last post promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-12 11:21:54+00:00 1.0 1249251103 869 ❗️ the next huge trading signal announcement is here date saturday the 12th of may at 3pm gmt exchange cryptopia expected price increase 130170+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-11 19:32:58+00:00 1.0 1249251103 863 the coins name is frn francs pump hold guys promote the coin in chat box good luck everyone 2018-05-10 21:00:02+00:00 1.0 1249251103 862 3 minutes to go till hold signal⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-10 20:57:08+00:00 1.0 1249251103 859 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-10 20:45:18+00:00 1.0 1249251103 853 just under 3 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-10 18:01:18+00:00 1.0 1249251103 851 ❗️ the next huge trading signal announcement is here date thursday the 9th of may at 9pm gmt exchange cryptopia expected price increase 150200+ awesome coin get ready to make some big gains its going to moon and remember hold big win 2018-05-08 19:08:19+00:00 1.0 1249251103 848 the coins name is hac hackspace pump hold guys promote the coin in chat box good luck everyone 2018-05-07 21:00:06+00:00 1.0 1249251103 847 3 minutes to go till pump hold⏳ remember to hold everyone hold big win for all we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-07 20:57:16+00:00 1.0 1249251103 846 5 minutes to go pump hold⏳ this coin will go 200 nice easy walls to smash thru guys please remember it is important to keep posting about the coin going up in price in the yobits chat box this will gain outside investment from outside investors 2018-05-07 20:55:05+00:00 1.0 1249251103 845 just 10 minuets to go till pump hold⏳ promote the coin in yobits chat box and wait for outside investors✔️ get ready for some big gains hold big win for all 2018-05-07 20:50:32+00:00 1.0 1249251103 843 just 30 minuets to go till pump hold⏳ promote the coin in yobits chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-07 20:30:15+00:00 1.0 1249251103 841 just 15 minuets to go till pump hold⏳ promote the coin in yobits chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-07 20:15:54+00:00 1.0 1249251103 840 1 hour to go until the pump have bitcoin in your account ready 2100 gmt btc trading pair 2018-05-07 20:02:42+00:00 1.0 1249251103 838 just 3 hour to go till pump hold⏳ this coin will go 200 with easy guys get ready with some big wins for everyone promote the coin in yobits chat box and wait for outside investors✔️ 2018-05-07 18:00:36+00:00 1.0 1249251103 837 just 5 hour to go till pump hold⏳ this coin will go 200 with easy guys get ready with some big wins for everyone promote the coin in yobits chat box and wait for outside investors✔️ 2018-05-07 16:01:28+00:00 1.0 1249251103 834 ❗️ announcement ❗️ due to the fact that cryptopia hasnt been the best lately with how much its been lagging and how strict they have been getting with the banned hammers we have decided to try out some pump holds on yobit exchange this dose not mean that that we will stop our pump on cryptopia but that we will be adding an exchange to our pump holds the platforms are very similar in how they work if you do not have a yobits exchange account here is a link for you to create an account we will conduct a pump hold tomorrow at 900 pm gmt see you all there date monday 7th time 9pm gmt exchange yobit target 200 this coin is going to hit great highs and hold its gains this pump we will hit 200+ 2018-05-07 01:40:57+00:00 1.0 1249251103 829 the coins name is sak sharkcoin pump hold guys promote the coin in chat box good luck everyone 2018-05-06 21:00:06+00:00 1.0 1249251103 828 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-06 20:57:48+00:00 1.0 1249251103 825 just 15 minuets to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-06 20:45:49+00:00 1.0 1249251103 824 just 30 minuets to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ make sure after you buy to hold for the outside investors lets make this a big win for all 2018-05-06 20:30:12+00:00 1.0 1249251103 820 just under 2 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-06 19:15:09+00:00 1.0 1249251103 819 just under 5 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-06 19:14:27+00:00 1.0 1249251103 816 just under 5 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-06 16:05:30+00:00 1.0 1249251103 813 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-06 13:36:09+00:00 1.0 1249251103 809 ❗️ announcement ❗️ date sunday 6th time 9pm gmt exchange cryptopia target 150 this coin is going to hit great highs and hold its gains this pump we will hit 150+ 2018-05-05 12:25:58+00:00 1.0 1249251103 805 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-04 20:57:15+00:00 1.0 1249251103 802 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-04 20:48:44+00:00 1.0 1249251103 798 just 1 hour to go till pump hold⏳ please remember everone we need to work together for this to work so we must buy and hold we cant sell off right away after buying then we need to talk the coin up in chat so we can get out side investors 2018-05-04 20:00:23+00:00 1.0 1249251103 797 just 3 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-04 18:01:42+00:00 1.0 1249251103 794 ❗️ pump announcement❗️ date friday 4th time 9pm gmt exchange cryptopia we are going to change things up a bit and instead of posting a link and the name of the coin we are going to post a picture wit with the name of the coin remember to hold the coin for at lease 1030 minutes for our marketing team to be able to do there job target 170 this coin is going to hit great highs and hold its gains this pump we will hit 170+ 2018-05-03 18:43:23+00:00 1.0 1249251103 788 the coins name is hac hackspace pump hold guys promote the coin in chat box good luck everyone 2018-05-02 21:00:00+00:00 1.0 1249251103 787 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-05-02 20:57:11+00:00 1.0 1249251103 781 we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold 2018-05-02 20:25:30+00:00 1.0 1249251103 779 just 1 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-05-02 20:01:29+00:00 1.0 1249251103 771 ❗️ pump announcement❗️ date wednesday 2nd time 9pm gmt exchange cryptopia target 190 this coin is going to hit great highs and hold its gains this pump we will hit 190+ 2018-05-02 00:14:25+00:00 1.0 1249251103 765 3 min left next post coin name 2018-05-01 15:57:51+00:00 1.0 1249251103 760 less than 1 hours left till pump transfer some btc and lets profit pump exchange cryptopia 1 may ⏱hour 4pm gmt exchange cryptopia transfer some btc and lets profit 2018-05-01 15:01:31+00:00 1.0 1249251103 750 the coins name is hac hackspace pump hold guys promote the coin in chat box good luck everyone 2018-04-30 21:00:02+00:00 1.0 1249251103 749 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-30 20:57:11+00:00 1.0 1249251103 720 ❗️ pump announcement❗️ date monday 30th time 9pm gmt exchange cryptopia target 185 this coin is going to hit great highs and hold its gains this pump we will hit 185+ 2018-04-29 23:53:30+00:00 1.0 1249251103 711 3 minutes to go till pump hold⏳ remember to hold everyone we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-29 20:57:33+00:00 1.0 1249251103 704 45 minutes to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-04-29 20:15:22+00:00 1.0 1249251103 703 just 1 hour to go till pump hold⏳ promote the coin in cryptopia chat box and wait for outside investors✔️ 2018-04-29 20:02:59+00:00 1.0 1249251103 694 ❗️surprise pump announcement❗️ we have found a excellent coin with nice thin walls so we decided to bring you a surprise pump hold exchange cryptopia time 900pm gmt target +150 + we are going to make this another awesome pump get ready for some big wins get ready everyone 2018-04-29 14:55:49+00:00 1.0 1249251103 693 111 open 3950 sats high 8369 sats volume 07 btc well done and congratulations to everyone who joined although this is still decent profits i would like to apologise for the speed of this pump we will iron out these problems and be back bigger and better than ever with our next pump 2018-04-28 22:17:31+00:00 1.0 1249251103 692 guys no body held the coin as soon as people were buying they were instantly selling and i saw hardly anyone commenting in the chat box for this to work we have to work together as a team and hold for outside investment i will write an in depth article on how exactly to pump successfully to top it off we pumped at exactly the same time as one of the largest pump groups on telegram so they took most of the investment our time will change back to 9pm gmt for now a very fast 111 2018-04-28 20:23:09+00:00 1.0 1249251103 689 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-28 19:57:10+00:00 1.0 1249251103 681 just under 4 hours to go till pump hold⏳ remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days 2018-04-28 16:13:23+00:00 1.0 1249251103 679 ❗️pump announcement❗️ date saturday 28th please note new time time 800pm gmt exchange cryptopia target +190 + we are going to make this another awesome pump get ready for some big wins 2018-04-27 18:59:03+00:00 1.0 1249251103 678 coin name ant aragon exchange bittrex ⭕️ buy below 445 sell1 0475 ✅ sell2 0560 ✅ sell3 0690 stop loss 0425 ✅ant coin target 2 completed it reached 600 satoshi 40 gain in four days hold for more next big signal will be on sunday 1800 gmt 2018-04-27 01:24:24+00:00 1.0 1249251103 677 75 open 1110 sats high 1950 sats volume 098 btc well done and congratulations to everyone who joined although this is still decent profits i would like to apologise for this pump and promise our next pump will have huge profit for us all 2018-04-26 23:11:23+00:00 1.0 1249251103 673 the coins name is slg sterlingcoin pump hold guys promote the coin in chat box good luck everyone 2018-04-26 20:00:02+00:00 1.0 1249251103 672 3 minutes to go till pump hold⏳ we are ready for lift off eyes on the screens next message will be the coin next post will be the coin ❗️❗️❗️ 2018-04-26 19:57:13+00:00 1.0 1249251103 663 juut 3 hours to go till pump hold⏳ remember buy 5 sell orders down the order book to ensure you dont miss out and hold✔️ promote the coin in cryptopia chat box and wait for outside investors✔️ ❌do not panic sell we will make sure holders dont loose anything if the price does drop by repumping the coin in a few days 2018-04-26 17:03:28+00:00 1.0 1249251103 662 just under 5 hours to go our latest results have been amazing this pump target 170 ❗dont miss this one its going to be huge❗ 2018-04-26 15:21:29+00:00 1.0 1249251103 654 ❗️pump announcement❗️ date thursday 26th please note new time time 800pm gmt exchange cryptopia target +180 + we have a great coin we pick with nice thin walls this will easily smash thru 2018-04-25 18:09:08+00:00 1.0 1249251103 647 only 3 hours left till the given signal be ready next post will be the exchange to buy 2018-04-22 14:59:23+00:00 1.0 1249251103 502 less than 06 hours left till pump exchange yobit 11 april ⏱hour 7pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-11 13:01:20+00:00 1.0 1249251103 501 yobit pump time ➖ 700 gmt date ➖ 11042017 exchange ➖ yobit holdtime hold until everyone makes profits ❗️ important ❗️ sign up here if you havent got a yobit account if you dont get a mail after the registration then register again with an other mail adress sometimes yobit has problems with sending mails if it says registration is temporarily off then youve probably made already an account you have to wait some time in order to register again 2018-04-11 11:21:09+00:00 1.0 1249251103 499 less than 12 hours left till pump exchange yobit 11 april ⏱hour 7pm gmt exchange yobit if you dont have yobit you can sign up through here wwwyobitnet transfer some btc and lets profit 2018-04-11 07:30:23+00:00 1.0 1249251103 492 big co pump announcement 11st april wednesday 1800 gmt cryptopia exchange you can find details in the photo below 2018-04-09 15:17:59+00:00 1.0 1249251103 487 3 min next post coin name 2018-04-05 15:57:54+00:00 1.0 1249251103 482 hold pump announcement less than 1 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 15:00:19+00:00 1.0 1249251103 480 hold pump announcement less than 3 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 13:00:27+00:00 1.0 1249251103 479 hold pump announcement less than 6 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 10:00:19+00:00 1.0 1249251103 475 hold pump announcement less than 12 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 04:00:14+00:00 1.0 1249251103 474 hold pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-04 23:00:12+00:00 1.0 1249251103 429 pump starts the coin to pump is bta bata coin btabtc exchange cryptopia target +100 market url trollbox 2018-04-03 18:01:04+00:00 1.0 1249251103 428 just 5 minutes to fly next post will be coin name ⚠⚠⚠ 2018-04-03 17:55:22+00:00 1.0 1249251103 424 1 hour left to pump it will be on cryptopia exchange 20 groups more than 50000 members will participate it will be huge ✊ 2018-04-03 16:59:26+00:00 1.0 1249251103 418 pump results coin guess open sat 00000153 high sat 00000229 volume 008 btc overall gain 4967 ✅we hope you all got some extra profits 2018-04-03 14:17:48+00:00 1.0 1249251103 414 next post is the coin to pump 2018-04-03 13:55:04+00:00 1.0 1249251103 413 pump incoming 15 minutes left stay tuned hold your coins till we hit the target ✅ 2018-04-03 13:45:01+00:00 1.0 1249251103 412 pump incoming 30 minutes left stay tuned hold your coins till we hit the target ✅ 2018-04-03 13:30:06+00:00 1.0 1249251103 403 just about 3 hours to the pump get ready with some btc on yobit we will go to moon 2018-04-03 11:01:04+00:00 1.0 1249251103 340 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 only 10 minutes left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 17:50:45+00:00 1.0 1249251103 339 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 only 30 minutes left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 17:30:45+00:00 1.0 1249251103 338 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 only 1 hour left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 17:00:29+00:00 1.0 1249251103 337 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 2 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 16:02:53+00:00 1.0 1249251103 336 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 3 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 15:00:48+00:00 1.0 1249251103 335 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 4 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 14:00:30+00:00 1.0 1249251103 332 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 6 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 12:01:02+00:00 1.0 1249251103 328 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 12 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-29 06:01:01+00:00 1.0 1249251103 315 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 24 hours left ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-28 18:00:40+00:00 1.0 1249251103 306 our megacoin signal 29th march 〰〰〰 18 gmt 〰〰〰 ❗️❗️❗️stay tuned ❗️❗️❗️ ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-28 11:26:12+00:00 1.0 1249251103 266 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 only 10 minutes left 2018-03-26 17:50:20+00:00 1.0 1249251103 265 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 only 30 minutes left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 17:30:43+00:00 1.0 1249251103 264 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 only 1 hour left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 17:00:22+00:00 1.0 1249251103 257 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 2 hours left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 16:00:17+00:00 1.0 1249251103 254 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 3 hours left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 15:00:38+00:00 1.0 1249251103 252 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 4 hours left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 14:00:25+00:00 1.0 1249251103 249 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 6 hours left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 12:00:33+00:00 1.0 1249251103 247 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 12 hours left we will give the coin name just before its going to the exchange cryptopia 2018-03-26 06:00:36+00:00 1.0 1249251103 243 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 24 hours left ️ we will give the coin name just before its going to the exchange cryptopia 2018-03-25 18:01:49+00:00 1.0 1249251103 230 our megacoin signal 26th march 〰〰〰 18 gmt 〰〰〰 ❗️❗️❗️stay tuned ❗️❗️❗️ ✔️ we will give the coin name just before its going to the exchange cryptopia 2018-03-25 13:52:03+00:00 1.0 1249251103 226 new pump announcement date march 27th time3pm gmt exchangeyobit infinity team 2018-03-25 02:33:50+00:00 1.0 1249251103 112 giant co pump announcement 26th march wednesday 1800 gmt cryptopia exchange 20 groups around 50000 members will participate it will be huge you can find details in the photo below 2018-03-23 08:59:45+00:00 1.0 1249251103 63 summary russiacoin rcbtc start price 000006000 btc high price 000011000 btc change 85 volume 08 btc we have reached 85 profit this evening it was really huge and we are so happy to hear from our members that they made amazing profits with rc coin ✔ wait for the next pump next target is 150⏳ 2018-03-21 18:18:11+00:00 1.0 1249251103 61 pump starts the coin to pump is rc russiacoin exchange cryptopia target +150 market url trollbox 2018-03-21 17:59:17+00:00 1.0 1249251103 60 just 5 minutes to fly next post will be coin name ⚠⚠⚠ 2018-03-21 17:56:03+00:00 1.0 1249251103 55 55 minutes left to pump it will be on cryptopia exchange 20 groups more than 50000 members will participate it will be huge ✊ 2018-03-21 17:05:44+00:00 1.0 1249251103 37 giant co pump announcement 21st march wednesday 1800 gmt cryptopia exchange 2018-03-20 16:41:58+00:00 1.0 1249251103 27 30 mins left for pump exchange yobit btc pairing coin is really special today we are set and ready with over 100k subs its going to +500 mega admins club 2018-03-19 15:30:40+00:00 1.0 1249251103 24 1 hour left for pump exchange yobit btc pairing coin is really special today we are set and ready with over 100k subs its going to +500 mega admins club 2018-03-19 15:01:16+00:00 1.0 1249251103 19 3 hours left for pump exchange yobit btc pairing coin is really special today we are set and ready with over 100k subs its going to +500 mega admins club 2018-03-19 13:02:33+00:00 1.0 1267170242 29511 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 17:50:58+00:00 1.0 1267170242 29499 5 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2022-01-02 11:59:58+00:00 1.0 1267170242 29495 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:08:38+00:00 1.0 1267170242 29492 3 days left until the big pump on binance 2021-12-30 14:45:19+00:00 1.0 1267170242 29468 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:28+00:00 1.0 1267170242 29424 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:14+00:00 1.0 1267170242 29373 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:03+00:00 1.0 1267170242 29370 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:05+00:00 1.0 1267170242 29369 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:02+00:00 1.0 1267170242 29368 15 minutes remaining until the big pump be ready 2021-11-28 16:45:54+00:00 1.0 1267170242 29366 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:23+00:00 1.0 1267170242 29365 2 hours left until the massive pump on binance 2021-11-28 15:01:07+00:00 1.0 1267170242 29364 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:20:47+00:00 1.0 1267170242 29363 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:11+00:00 1.0 1267170242 29357 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:01+00:00 1.0 1267170242 29356 2 days remaining until the big pump on binance 2021-11-26 16:18:05+00:00 1.0 1267170242 29334 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:02+00:00 1.0 1267170242 29261 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:23+00:00 1.0 1267170242 29258 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:03+00:00 1.0 1267170242 29257 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:55+00:00 1.0 1267170242 29255 30 minutes left until the big pump on binance 2021-11-07 16:30:00+00:00 1.0 1267170242 29254 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:01+00:00 1.0 1267170242 29252 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:09:56+00:00 1.0 1267170242 29250 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:02+00:00 1.0 1267170242 29248 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:00+00:00 1.0 1267170242 29244 2 days left until the big pump on binance be prepared 2021-11-05 14:30:36+00:00 1.0 1267170242 29226 4 days remaining until the big pump on binance 2021-11-03 13:56:14+00:00 1.0 1267170242 29215 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:07+00:00 1.0 1267170242 29209 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1267170242 29204 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:05+00:00 1.0 1267170242 29202 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:03+00:00 1.0 1267170242 29200 30 minutes left until the big pump 2021-10-31 16:29:23+00:00 1.0 1267170242 29199 55 minutes left until the big pump on binance 2021-10-31 16:06:16+00:00 1.0 1267170242 29198 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:45+00:00 1.0 1267170242 29193 4 hours left until the big pump on binance 2021-10-31 13:02:10+00:00 1.0 1267170242 29192 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:39+00:00 1.0 1267170242 29188 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:27+00:00 1.0 1267170242 29172 3 days left until the big pump on binance 2021-10-28 13:02:59+00:00 1.0 1267170242 29162 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:46+00:00 1.0 1267170242 29160 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:47+00:00 1.0 1267170242 29154 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:07+00:00 1.0 1267170242 29152 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:55+00:00 1.0 1267170242 29151 15 minutes left until the massive pump on binance 2021-10-24 16:44:54+00:00 1.0 1267170242 29150 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:02+00:00 1.0 1267170242 29149 2 hours left until the big pump on binance 2021-10-24 15:00:00+00:00 1.0 1267170242 29148 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:03+00:00 1.0 1267170242 29147 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:03+00:00 1.0 1267170242 29146 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:10+00:00 1.0 1267170242 29137 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:51+00:00 1.0 1267170242 29125 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:47+00:00 1.0 1267170242 29116 7 days left until the big pump on binance 2021-10-17 14:50:21+00:00 1.0 1267170242 29077 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:08+00:00 1.0 1267170242 29072 15 minutes left screens on and have btc ready 2021-10-14 14:45:22+00:00 1.0 1267170242 29070 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:06:26+00:00 1.0 1267170242 29067 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:00+00:00 1.0 1267170242 29055 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:00+00:00 1.0 1267170242 29043 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:40:00+00:00 1.0 1267170242 29042 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:37+00:00 1.0 1267170242 29039 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:05+00:00 1.0 1267170242 29037 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1267170242 29035 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:29:53+00:00 1.0 1267170242 29034 1 hour left until the big pump on binance 2021-10-10 16:00:19+00:00 1.0 1267170242 29033 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:02+00:00 1.0 1267170242 29032 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:31+00:00 1.0 1267170242 29031 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:41+00:00 1.0 1267170242 29030 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:53+00:00 1.0 1267170242 29023 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:02+00:00 1.0 1267170242 28996 3 days left until the big pump on binance 2021-10-07 14:33:53+00:00 1.0 1267170242 28984 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:04+00:00 1.0 1267170242 28979 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:32+00:00 1.0 1267170242 28976 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:07+00:00 1.0 1267170242 28970 the coin we have picked to pump today is ilv 2021-10-03 16:50:24+00:00 1.0 1267170242 28966 12 minutes left until the pump on binance 2021-10-03 16:48:36+00:00 1.0 1267170242 28965 the coin we have picked to pump today is nxs 2021-10-03 16:47:51+00:00 1.0 1267170242 28955 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:04+00:00 1.0 1267170242 28953 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:03+00:00 1.0 1267170242 28939 3 days left until the big pump on binance 2021-09-30 15:23:37+00:00 1.0 1267170242 28929 7 days left until the big pump on binance 2021-09-26 14:35:59+00:00 1.0 1267170242 28916 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:14+00:00 1.0 1267170242 28907 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1267170242 28906 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:11+00:00 1.0 1267170242 28904 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:07+00:00 1.0 1267170242 28901 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:09+00:00 1.0 1267170242 28900 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:02+00:00 1.0 1267170242 28899 4 hours left until the big pump on binance 2021-09-19 13:01:14+00:00 1.0 1267170242 28898 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:01:57+00:00 1.0 1267170242 28897 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:12+00:00 1.0 1267170242 28885 3 days left until the big pump on binance 2021-09-16 15:14:42+00:00 1.0 1267170242 28863 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:54+00:00 1.0 1267170242 28825 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:10+00:00 1.0 1267170242 28820 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:05+00:00 1.0 1267170242 28818 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:45+00:00 1.0 1267170242 28815 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1267170242 28814 2 hours left until the big pump on binance 2021-09-05 15:00:08+00:00 1.0 1267170242 28813 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:04+00:00 1.0 1267170242 28811 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:40+00:00 1.0 1267170242 28801 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:54+00:00 1.0 1267170242 28781 2 days left until the big pump on binance be prepared 2021-09-03 14:05:05+00:00 1.0 1267170242 28752 mega pump group 280821 0707 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 8 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-28 22:34:08+00:00 1.0 1267170242 28729 5 minutes left next post is us our coin date tuesday august 24 2021 today time 1500 utc in 5 mints exchange binance coin type spot btc pair 2021-08-24 14:55:01+00:00 1.0 1267170242 28728 15 minutes left have your binance account logged in and be ready to make at least a 7x profit on spot… our coin is just btc paired so have btc ready date tuesday august 24 2021 today time 1500 utc in 15 mints exchange binance coin type spot btc pair 2021-08-24 14:45:02+00:00 1.0 1267170242 28727 1 hour left be prepared you really dont want to watch this from the sidelines the coin is a btc paid only meaning it can only be purchased with btc so hurry and get that btc bag ready date tuesday august 24 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-24 14:00:01+00:00 1.0 1267170242 28725 3 hours left 3 hours left for the 700+ pump we told you about have btc in you binance account get some caffeine in your system and hold on tight… because its going to explode date tuesday august 24 2021 today time 1500 utc in 3 hours exchange binance 2021-08-24 12:00:01+00:00 1.0 1267170242 28724 5 hours left 5 hours left for the pump announcement of the year this beast is expected to make all other pumps so far bite the dust by far date tuesday august 24 2021 today time 1500 utc in 5 hours exchange binance 2021-08-24 10:00:01+00:00 1.0 1267170242 28714 24 hours left date tuesday august 24 2021 time 1500 utc exchange binance 24 hours left for our minimum 7x pump this time weve got a coin so good that after it starts moving nothing will be able to stop it it will break through every single resistance short mid and long term as it builds momentum and creates a wave of outside buyers in binance be ready for further updates and turn on your notifications date tuesday august 24 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-23 15:01:22+00:00 1.0 1267170242 28666 pump announcement date tuesday august 24 2021 time 1500 utc exchange binance you witnessed our fun pump make over 50 and our brd pump make over 110 in a matter of minutes everyone had the chance to ride this free for all wave thats why we want to congratulate you all now we dont have time to lose and profits wont wait for those getting left out of these ridiculously profitable moves… thats why were here to announce our next mega pump this one will easily make a 300 move within the first few hours and could reach 10x that in a matter of weeksmonths so be prepared youll know more about whats coming in the next few days date tuesday august 24 2021 time 1500 utc exchange binance 2021-08-18 15:59:06+00:00 1.0 1267170242 28656 15 minutes left next post is us our coin date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance 2021-08-17 14:45:01+00:00 1.0 1267170242 28653 1 hour left yes 60 minutes left for the move of the year youre either riding it or regretting it so be prepared date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-17 14:00:02+00:00 1.0 1267170242 28652 3 hours left 3 hours left for the biggest pump of the year have btc in you binance account get yourself some coffee and tighten your seatbelt… because were going for a ride date tuesday august 17 2021 today time 1500 utc in 3 hours exchange binance 2021-08-17 12:00:27+00:00 1.0 1267170242 28649 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance 24 hours left for the biggest pump of the year as you already know the pump will take place on binance just as a tip its a btc only spot no leverage pair so have btc ready on your spot binance account and be prepared for the 300+ steady pump weve been waiting for too long date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-16 15:00:01+00:00 1.0 1267170242 28635 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance less then 48 hours left for the biggest pump that has ever been seen on binance be ready for further announcements and dont forget to turn on your push notifications date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-15 17:26:22+00:00 1.0 1267170242 28547 15 minutes left —btc our next post will be the coin name date monday august 2 2021 today time 1200 utc in 15 minutes 2021-08-02 11:45:07+00:00 1.0 1267170242 28541 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-01 13:44:04+00:00 1.0 1267170242 28513 pump result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-07-25 18:05:53+00:00 1.0 1267170242 28507 the coin we have picked to pump today is drep drep is looking perfect for a pump right now the target is 500 2021-07-25 17:00:01+00:00 1.0 1267170242 28506 5 minutes left the next post will be the coin to buy 2021-07-25 16:55:00+00:00 1.0 1267170242 28503 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 500 profit and beyond be ready 2021-07-25 16:00:01+00:00 1.0 1267170242 28502 2 hours remaining until the big pump on binance 2021-07-25 15:01:03+00:00 1.0 1267170242 28500 4 hours left until our big pump everything is still looking good still with our coin being bottomed which means all members will be able to buy early we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in last time we were able to get a few thousands retweet which means a big commitment from our community this time we want the effect to be bigger by asking all of our members to post on twitter after our signal we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-25 13:00:22+00:00 1.0 1267170242 28499 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump with the market being good we can guarantee a good pump this time as our team will support it in a massive way by injecting volume after our members bought in 2 hours we will post a few directives in order to coordinate our coin to trend on twitter our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-25 11:00:28+00:00 1.0 1267170242 28496 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-24 17:01:25+00:00 1.0 1267170242 28487 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible this pump will have a big amount of support from the team and we can confirm with absolute certainty that this will be the biggest profit maker pump of all time be prepared 2021-07-23 14:15:02+00:00 1.0 1267170242 28468 4 days remaining until our big pump on binance 2021-07-21 12:36:37+00:00 1.0 1267170242 28405 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time this is the pump that you will not want to miss you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-10 17:00:00+00:00 1.0 1267170242 28398 2 days left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-07-09 13:54:53+00:00 1.0 1267170242 28311 pump announcement hello everyone the next official pump will be scheduled for date sunday july 11 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on july 11 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 11 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-30 12:45:05+00:00 1.0 1267170242 28184 5 minutes left the next message will be the coin to buy 2021-06-13 16:54:45+00:00 1.0 1267170242 28159 4 days left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it 2021-06-09 14:33:04+00:00 1.0 1267170242 28111 pump announcement hello everyone the next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on june 13 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 12 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-01 18:12:23+00:00 1.0 1267170242 28102 pump result amazing pump with more than 500 btc volume which is amazing in this market we hit the peak almost 1 minute after the signal was given which gave enough time for members to make profit our volume is still very big despite the short term market sentiment and the recent btc drop specially after having not pumped for 1 month we can say for sure that we are back and hopefully with the market starting to recover you can expect the next one to be much bigger we will be taking all the necessary precautionary measures on the next pump in order to make sure the signal is given at the absolute bottom as well the next pump will be massive stay tuned for our next announcement 2021-05-30 18:32:29+00:00 1.0 1267170242 28100 the coin we have picked to pump today is oax oax is looking perfect for a pump right now 2021-05-30 17:00:02+00:00 1.0 1267170242 28099 5 minutes left the next message will be the coin to buy 2021-05-30 16:54:36+00:00 1.0 1267170242 28098 15 minutes left until the pump on binance we will be using the btc pairing to pump make sure you have btc in your account to buy the coin 2021-05-30 16:44:07+00:00 1.0 1267170242 28095 2 hours remaining until the big pump on binance 2021-05-30 15:00:25+00:00 1.0 1267170242 28094 2 hours and 55 minutes left until the pump on binance in 2 hours and 55 minutes we will be posting the coin to buy for the pump you will need to have btc in your account to buy the given coin be prepared 2021-05-30 14:04:42+00:00 1.0 1267170242 28093 4 hours left until the big pump on binance 2021-05-30 13:02:46+00:00 1.0 1267170242 28092 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-05-30 10:56:51+00:00 1.0 1267170242 28091 the day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-05-29 16:57:47+00:00 1.0 1267170242 28087 2 days left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it 2021-05-28 13:35:16+00:00 1.0 1267170242 28056 pump announcement hello everyone the next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on may 8 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 8 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-05-22 16:28:22+00:00 1.0 1267170242 27816 hello everyone we are currently waiting for the best and most optimal market conditions before scheduling our next big pump in order to make sure that we can execute a massive pump with our usual volume and hit our 500+ profit target for all our members we will be making the announcement once our team and the market is ready for it stay tuned 2021-04-29 12:46:23+00:00 1.0 1267170242 27770 pump result 700 btc volume which is around 35 million the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 80 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 200500 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned 2021-04-25 18:11:01+00:00 1.0 1267170242 27766 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 500+ 2021-04-25 17:00:10+00:00 1.0 1267170242 27759 7 hours left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-25 10:00:37+00:00 1.0 1267170242 27754 the day has arrived 24 hours remaining until our biggest pump signal event of all time 2021-04-24 16:58:07+00:00 1.0 1267170242 27750 2 days left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-23 15:43:24+00:00 1.0 1267170242 27745 3 days remaining until our big pump on binance 2021-04-22 15:11:08+00:00 1.0 1267170242 27744 everyon 3 days remaining until our big pump on binance be prepared 2021-04-22 15:07:57+00:00 1.0 1267170242 27726 4 days remaining until our big pump on binance more information about our upcoming pump will follow in the next few days 2021-04-21 14:39:09+00:00 1.0 1267170242 27717 6 days left until our big pump on binance 2021-04-19 13:19:34+00:00 1.0 1267170242 27666 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 10 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-04-15 13:37:31+00:00 1.0 1267170242 27628 pump result 1120 btc volume in total which is around 67 million with a peak of 160 we have given the signal at the absolute bottom in order to make sure everyone has the best opportunity of buying at a low price we hope many of you managed to make decent profit although we didnt reach our 500 target we will be doing something new in the next pump to make sure we hit our 500 target stay tuned 2021-04-11 19:37:54+00:00 1.0 1267170242 27624 the coin we have picked to pump today is via via is looking perfect for a pump right now our target is 500+ 2021-04-11 17:00:05+00:00 1.0 1267170242 27616 6 hours left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-11 10:59:50+00:00 1.0 1267170242 27598 2 days remaining until our biggest pump signal event on binance 2021-04-09 13:46:06+00:00 1.0 1267170242 27569 5 days left until our big pump on binance 2021-04-06 14:55:36+00:00 1.0 1267170242 27541 knc my pump signal 376 hit✅ 2021-04-03 15:45:28+00:00 1.0 1267170242 27540 comp my pump signal 500 hit✅ 2021-04-03 14:32:24+00:00 1.0 1267170242 27511 my pump signal comp boom 2021-04-01 17:24:54+00:00 1.0 1267170242 27499 my 2 big pump coin comp badger big target long term hold 2021-04-01 06:50:32+00:00 1.0 1267170242 27498 my 2 big pump coin comp badger big target long term hold 2021-04-01 06:50:15+00:00 1.0 1267170242 27492 bel my pump signal 377 to 499➕ hit only 2021-04-01 01:20:46+00:00 1.0 1267170242 27491 qtum my pump signal 68 to 107+ hit only 2021-04-01 01:15:32+00:00 1.0 1267170242 27490 qtum my pump signal 68 to 107+ hit only 2021-04-01 01:02:44+00:00 1.0 1267170242 27438 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 11 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 11 we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-29 15:13:54+00:00 1.0 1267170242 27411 pump results 1400 btc volume which is around 80m with this amount of volume we should normally be able to pump coins above 500+ fairly easily although the volume was massive we did not manage to reach our target of 5001000 after looking carefully at the data we saw that the sell pressure came from the eth pairing we are not quite sure exactly where those sells were coming from but we will look further into it to make sure it doesnt happen in our next pump and reach the result we were meant to reach in this pump thank you all for participating we will announce our next date shortly 2021-03-28 18:27:47+00:00 1.0 1267170242 27408 the coin we have picked to pump today is pivx pivx is looking perfect for a pump right now our target is 1000 2021-03-28 17:00:04+00:00 1.0 1267170242 27407 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-03-28 16:59:05+00:00 1.0 1267170242 27403 1 hour left until our big pump on binance 2021-03-28 16:00:03+00:00 1.0 1267170242 27399 1 hour and 55 minutes remaining this will be the biggest pump event we have ever done more than a million traders around the world will be watching and participating be prepared 2021-03-28 15:05:04+00:00 1.0 1267170242 27387 6 hours left until the big pump on binance everything is looking great and we are more than ready we will give more instructions in order to be prepared in a few hours be ready 2021-03-28 11:00:07+00:00 1.0 1267170242 27364 24 hours remaining until our biggest pump signal event of all time 2021-03-27 16:59:42+00:00 1.0 1267170242 27324 2 days remaining until the big pump signal ever done on binance here is everything you need to know about this pump in order to be prepared we will be pumping a coin with only 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up for those trading from the us you can use a vpn to make a binance account millions of traders worldwide will be watching we have put into place a few measures to spread the word out after our signal we will attempt to make our pump last as long as possible this pump will be the biggest we have done so far be ready and be prepared 2021-03-26 13:17:51+00:00 1.0 1267170242 27313 tomobtc buy now big pump 2021-03-26 10:24:38+00:00 1.0 1267170242 27306 coti qtum my pump signal top gainers 2021-03-26 09:09:39+00:00 1.0 1267170242 27257 sand buy now big pump 2021-03-24 17:23:34+00:00 1.0 1267170242 27250 zil buy now big pump 2021-03-24 15:03:50+00:00 1.0 1267170242 27245 one qtum 2 signal pump and all time hiii hold✍️ 2021-03-24 14:32:22+00:00 1.0 1267170242 27242 qtum buy now big pump 2021-03-24 14:24:20+00:00 1.0 1267170242 27208 pump announcement hello everyone the next official pump will be scheduled for date sunday march 28 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 5 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-23 15:21:31+00:00 1.0 1267170242 27171 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:00:23+00:00 1.0 1267170242 27166 2 hours left things are looking great the market is currently amazing and we are confident that we will be able to surpass our 500+ target reminder that we will be pumping a coin that only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin be prepared 2021-03-21 15:00:09+00:00 1.0 1267170242 27164 4 hours and 10 minutes remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible we will be pumping a coin with only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-21 12:49:26+00:00 1.0 1267170242 27162 24 hours left until the biggest pump signal in the history of our group our target will be more than 500 tomorrow is a big day for us more information about the pump will come tomorrow 2021-03-20 16:57:14+00:00 1.0 1267170242 27153 2 days left until the big pump on binance be prepared 2021-03-19 13:24:45+00:00 1.0 1267170242 27084 6 days left until our big pump on binance 2021-03-15 12:55:57+00:00 1.0 1267170242 26994 pump announcement hello everyone the next official pump will be scheduled for date sunday march 21 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 21 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 12 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-09 15:54:47+00:00 1.0 1267170242 26959 people pump coin in the name of nft 2021-03-08 17:49:46+00:00 1.0 1267170242 26935 pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned 2021-03-07 17:40:59+00:00 1.0 1267170242 26931 the coin we have picked to pump today is ppt ppt is looking perfect for a pump right now our target is 1000 2021-03-07 17:00:04+00:00 1.0 1267170242 26930 5 minutes left next post will be the coin name 2021-03-07 16:55:48+00:00 1.0 1267170242 26929 10 minutes left be ready on binance 2021-03-07 16:51:04+00:00 1.0 1267170242 26926 1 hour remaining until our pump on binance our reposter bot had a few issues and it is fixed now everything is looking perfect now and we are more than ready to pump be ready 2021-03-07 16:00:13+00:00 1.0 1267170242 26924 1 hour and 15 minutes left until the our big pump on binance 2021-03-07 15:15:20+00:00 1.0 1267170242 26921 2 hours left until the pump on binance 2021-03-07 15:01:54+00:00 1.0 1267170242 26918 3 hours left until the big pump on binance 2021-03-07 13:59:22+00:00 1.0 1267170242 26917 5 hours remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-07 11:54:57+00:00 1.0 1267170242 26912 24 hours left until the biggest pump signal in the history of our group our target will be more than 500 tomorrow is a big day for us more information about the pump will come tomorrow 2021-03-06 17:03:51+00:00 1.0 1267170242 26795 pump announcement hello everyone the next official pump will be scheduled for date sunday march 7 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with our last 2 pumps and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump on march 7 we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits we have 1 week and a half to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we will be targeting 500 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-02-25 18:46:07+00:00 1.0 1267170242 26703 pump result 1000 btc volume in a few minutes which is close to 60 million with a peak of 350 amazing pump everyone we are receiving unbelievable amounts of messages of appreciation and we are glad many of you managed to make massive profits in this pump we are officially the biggest pump community in the world our whales did their part once again and pushed the price up to 10000 satoshi for all our members to profit our volume keeps getting bigger every pump and we are confident that in the next pump we will be able to hit 5001000 profit for all our members stay tuned for the next pump announcement 2021-02-21 17:31:02+00:00 1.0 1267170242 26701 the coin we have picked to pump today is nxs nxs is looking perfect for a pump right now our target is high 2021-02-21 17:00:04+00:00 1.0 1267170242 26700 2 minutes left the coin only has a btc pairing make sure you have btc to buy the next message will be the coin to buy be ready 2021-02-21 16:58:07+00:00 1.0 1267170242 26695 2 hours left we will be using the btc pairing on binancecom to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up 2021-02-21 14:58:15+00:00 1.0 1267170242 26694 4 hours left until the big pump on binance be ready 2021-02-21 12:58:14+00:00 1.0 1267170242 26691 1 day left until our big pump on binance 2021-02-20 17:00:28+00:00 1.0 1267170242 26578 pump announcement hello everyone the next official pump will be scheduled for date sunday february 21 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate mega pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we are expecting hundreds of thousands of people all across the world to attend this pump we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-02-15 15:31:54+00:00 1.0 1267170242 26550 pump result 600 btc volume which is close to 30 million in a few minutes the price managed to stay at the peak for a very long time which means that outsider reaction was really good our whales did their work and held it high for all our members we are receiving many messages of appreciation and we are happy to hear that most people made up to 200 profit congratulations to everyone that participated we will be planning our next pump soon and try go to for 400500 on the next one stay tuned 2021-02-13 17:28:23+00:00 1.0 1267170242 26549 one of the best pump we have seen to date the price managed to stay at +200 for a very long time we will be posting the pump results shortly 2021-02-13 17:22:11+00:00 1.0 1267170242 26545 the coin we have picked to pump today is sky sky is looking perfect for a pump right now our target is high 2021-02-13 17:00:05+00:00 1.0 1267170242 26544 5 minutes left the next message will be the coin name 2021-02-13 16:54:12+00:00 1.0 1267170242 26541 2 hours left until our pump signal make sure you are using btc to buy the coin 2021-02-13 15:00:52+00:00 1.0 1267170242 26538 3 hours left until the pump on binance for us users make sure you are using binancecom the pump will be free for all meaning everyone will get the signal at the same time 2021-02-13 14:05:55+00:00 1.0 1267170242 26537 4 hours left until the big pump on binance be ready 2021-02-13 13:01:17+00:00 1.0 1267170242 26492 pump announcement hello everyone the next official pump will be scheduled for date saturday february 13 time 1700 pm gmt exchange binance advantage free for all we are finally ready to pump again after our successful +122 pump on idex with the current hype revolving wallstreetbets our target for this pump will be much higher up to 500 being one of the biggest signal group and leaders when it comes to signals in general we have been in talks with a few large groups and we have decided to combine our power to create one of the biggest and most successful pump in the history of our group with the success of our previous pump we expect our volume to be much bigger as well our group has grown a lot as we have gained thousands of new members over the past few weeks we welcome everyone to join us as we create the ultimate pump binance has been waiting for in our last pump we mentioned that we would have our big whale push the price up for us after our members bought we will be doing the same thing in this upcoming pump to make sure all our members make a good profit our expectations for this pump are big we want multiple waves and a action packed pump with multiple opportunities to make profit we have 2 days to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we are expecting hundreds of thousands of people all across the world to attend this pump we will be giving out more information about our upcoming pump tomorrow stay tuned 2021-02-11 14:54:39+00:00 1.0 1267170242 26027 pump announcement hello everyone the next official pump will be scheduled for date sunday january 17 time 1700 pm gmt exchange binance advantage free for all we are finally ready to pump again after our successful +122 pump on idex our target for this pump will be up to 200 with the success of our previous pump we expect our volume to be much bigger as well our group has grown a lot as we have gained thousands of new members over the past few days we welcome everyone to join us as we create the ultimate mega pump binance has been waiting for in our last pump we mentioned that we would have our big whale push the price up for us after our members bought we will be doing the same thing in this upcoming pump to make sure all our members make a good profit our expectations for this pump are big we want multiple waves and a action packed pump with multiple opportunities to make profit we will be giving out more information about our upcoming pump before the pump stay tuned 2021-01-15 13:56:09+00:00 1.0 1267170242 25770 amazing pump on idex around 200 btc volume with a peak of 120 after giving the signal the amount of good messages we are getting is amazing we have to say we gained alot of experience pumping idex and we will have to make a few changes that will give everyone even more profits on the next pump next pump we will target anywhere from 200 to possibly 400 depending on the market we will be posting the video of the pump shortly this way everyone can be prepared for the next pump 2020-12-31 18:11:56+00:00 1.0 1267170242 25762 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 100 2020-12-31 17:00:19+00:00 1.0 1267170242 25761 5 minutes left the next message will be the coin to buy target is 100+ 2020-12-31 16:55:06+00:00 1.0 1267170242 25760 15 minutes left be ready on binance 2020-12-31 16:44:58+00:00 1.0 1267170242 25759 1 hour left until our pump on binance here are a few tips you should know before the pump we will be using the btc pairing on binance to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up if you are using market buy and plan to use your whole balance use anything less than 100 of your balance for example 75 to make sure it works lastly enjoy the ride up we can say for sure that this pump will be a 100 legit pump and our whales will do everything in their power to make sure every single member will profit from it 2020-12-31 15:57:46+00:00 1.0 1267170242 25757 5 hours left until our big pump on binance things are looking great we are confident we have picked the best coin to pump today to attract outsider fomo our whales have given us a target for this pump of more than100 spread the word about our pump 2020-12-31 11:59:53+00:00 1.0 1267170242 25740 pump announcement hello everyone the next official pump will be scheduled for date thursday december 31 time 1700 pm gmt exchange binance advantage free for all we are finally ready to pump again we have decided to pump on the 31st of december to close out the year with a strong pump for everyone our target for this pump will be at least 100+ altcoins are currently very oversold and alot of people have been waiting for our next pump we see a lot of good opportunities in the market and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time this pump will be as big as dlt dont miss it 2020-12-30 18:49:37+00:00 1.0 1267170242 24115 ankr pump price 000000066 change 476 ✅ 5873 btc in 5 minutes 49 24h volume 120291 btc 2020-07-14 01:09:22+00:00 1.0 1267170242 23879 adx adx adx lets 2x spike with our whales adx is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-07-07 16:00:07+00:00 1.0 1267170242 23878 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call our goal is more than 2x login binance and keep an eye here 2020-07-07 15:55:04+00:00 1.0 1267170242 23859 great news for all to celebrate this great ongoing altseason our whales decided to push most awaiting strong ta+fa call which is sitting on fking bottom and waiting for a kick to moon on binance exchange our previous call oax was a pure gem were expecting 2x gain in short term this time as big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date july 7tomorrow exchange binance time 4pm gmt target 2x 2020-07-06 14:03:00+00:00 1.0 1267170242 23724 oax oax oax lets 2x spike with our whales oax is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-06-28 16:00:08+00:00 1.0 1267170242 23716 hey folks today at 4pm gmt our whales will push a strong tafa based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 12 hours left until the most awaiting strong tafa call backed by our whales‼️ 2020-06-28 04:00:28+00:00 1.0 1267170242 23713 great news for all to celebrate this great ongoing altseason our whales decided to push a strong tafa based unicorn which is sitting on fking bottom and waiting for a kick to moon on binance exchange were expecting 2x gain in short term this time as big big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date june 28tomorrow exchange binance target 2x time 4pm gmt 2020-06-27 10:17:38+00:00 1.0 1267170242 23268 ark ark ark target 100150+ ark is whales favorite coin now they pump it to the moon so buy hold ark is going to perform crazy today like never before buy fast this trendy coin and make profit 2020-06-02 16:00:26+00:00 1.0 1267170242 23267 only 5 minutes to go❗️ we have choosed the best coin which is available on true bottom our whales will pump it to the moon global fomos warming up and whole market eyes on mega moon signal next post will be coin name megamoonsignal login binance and keep an eye here 2020-06-02 15:55:08+00:00 1.0 1267170242 23250 24 hours remaining the team is back we have collaborated with some of the biggest whales in market for the megamoonsignal celebrating the altseason and waiting for the opportunity to kick to moon alt on binance exchange we are expecting more than 100150 gain this time after our previous nas 90 pump as the collaboration is more bigger and better than ever alts are primed for huge spikes and we belive the fomo will be huge more this time therefore we recommend that you should get in as soon as possible and hold for maximum profit and make sure you have your binance account ready and loaded for tomorrow date 2nd june tomorrow time 400 pm gmt exchange binance target 100150 megamoonsignal 2020-06-01 16:00:07+00:00 1.0 1267170242 22584 next post will be coin name in between 5 min any time coin name will be in image to avoid bots we assure you this will not be pre pump and it will be organic pump stay tuned 2020-04-20 15:55:00+00:00 1.0 1267170242 22582 around 30 mins left ”hodl event gem call” this gem call will give big potential gains in this month make sure you guys buy and hold we assure you this will not be pre pump and it will be organic pump you have to buy and hold because of coin is on bottom and will be pump huge so do not miss this chance and grab this opportunity stay tuned for more updates 2020-04-20 15:30:03+00:00 1.0 1267170242 22578 hodl event today today will be given special ta based call which is hodl based and we are expecting big profit to holding this coin be ready today around 4 pm gmt stay tuned 2020-04-20 08:44:24+00:00 1.0 1267170242 22568 hodl event dear members we decided to give you a coin tomorrow which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready tomorrow around 4 pm gmt 2020-04-18 10:14:54+00:00 1.0 1267170242 22479 so far its good almost 9 coin up from the hodl event almost generated 25 btc volume and coin was not pre pump next time will try for 50100 btc volume and coin spike up to 2040 stay tuned elfbtc is great coin do not forget if it closed above 1000 satoshi it will directly spike to 11001300 satoshi that is massive 2050 profit so dont forget about elf hold and keep it in watchlist 2020-04-10 16:17:26+00:00 1.0 1267170242 22471 coin will be posted within 35 min next post of hodl coin name make sure you guys will buy fast and hold for maximum profit 2020-04-10 15:55:45+00:00 1.0 1267170242 22465 hello guys alts started taking dips seems good time todays our hodl event gem call which is in good buying zone to be signalled the coin will not be pre pump and this mega event will be huge you have to buy and hold for maximum gain coming around in 2hrs 2020-04-10 14:09:45+00:00 1.0 1267170242 22463 hodl event dear members we decided to give you a coin today which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready today around 4 pm gmt 2020-04-10 07:19:16+00:00 1.0 1267170242 22376 attention as always we are going to see this on binance top gainer list with great volume only 1hours left 400pm1600 gmt for rock bottom whale signal target 70 100 2020-04-04 15:04:37+00:00 1.0 1267170242 22266 rlcbtc new update strong support level 44004600 satoshi so buy and hold till 80 target dont sell guys if you want to huge profit so buy and hold strategy is very good for now remember target 80 so buy and hold 2020-03-27 16:02:34+00:00 1.0 1267170242 22260 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:57:40+00:00 1.0 1267170242 22218 adx pump buy hold sell targets 1050|1150|1250|1350 2020-03-26 11:04:13+00:00 1.0 1267170242 22216 adx big pump buy hold 2020-03-26 10:35:14+00:00 1.0 1267170242 22194 less than 15 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2020-03-25 15:45:08+00:00 1.0 1267170242 22164 less than 05 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2020-03-24 15:56:16+00:00 1.0 1267170242 22144 alright folks here is another rock bottom whale signal details this signal will come on 24nd mar at 400 pm gmt alts are going good as btc is stable above 65k keep the date and time in mind mar 24 | 400 pm gmt today 2020-03-24 03:45:11+00:00 1.0 1267170242 22122 alright folks here is another rock bottom whale signal details this signal will come on 22nd mar at 400 pm gmt alts are going good as btc is stable above 6k keep the date and time in mind mar 22 | 400 pm gmt 2020-03-21 17:09:55+00:00 1.0 1267170242 22055 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours left 400pm1600 gmt 2020-03-19 14:02:54+00:00 1.0 1267170242 22054 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours 40min left 400pm1600 gmt 2020-03-19 13:20:55+00:00 1.0 1267170242 21977 only 5 minutes to go❗️ our experts choosed bottom based strong tafa coin our whales will pump it to the moon global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-03-13 15:55:03+00:00 1.0 1267170242 21976 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast expected spike 100 2020-03-13 15:30:06+00:00 1.0 1267170242 21975 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x breakout coin the coin name will come as an image and text 2020-03-13 15:00:05+00:00 1.0 1267170242 21973 todays strong ta call will be freeforall this means that the coin signal will be at the exact same time for everyone expected target 2x less than 4h left note coin will be posted in picture to avoid bots 2020-03-13 12:00:06+00:00 1.0 1267170242 21972 alts are bottomed out due to recent btc dump and our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until strong ta call 2020-03-13 10:00:05+00:00 1.0 1267170242 21971 great news for all today at 4pm gmt we will share a strongta based unicorn sitting on fking bottom and waiting for a kick to moon alts are bottomed out due to recent btc dump and our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term were expecting 100 gain in short term this time as the upcoming call will be scanned by our technical analysts and supported by big binance whales more than 500k people are going to join this event we will make sure to reach as high as possible and will make sure to achieve target 1 within few minutes as we did in nxs make sure you have your binance account ready and loaded with btc for today‼️ date march 13 today time 4 pm gmt exchange binance 2020-03-13 01:49:03+00:00 1.0 1267170242 21952 pump results around 150 btc was traded in total which is very good considering the fact that we pumped while btc was dumping first of all we would like to explain clearly what happened before and after the pump for full transparency to all our members as you know there are thousands of traders speculating on which coin will be pumped everytime we pump and this time it seems that a little bit of buying from the market in our coin created a big chain reaction before the pump started we noticed alot of buying up to 125 from the market at this point our team had taken the decision to cancel the pump because it was going up too fast but when it reached 138 we saw it started picking up alot of activity from outsiders and we believed that by announcing the signal at this height we could have reached over 70+ easier which was our initial target with even much bigger market activity than we initially expected the official signal was announced at 133 satoshis and reached 157 slowly after before going back down which is still almost a 20 potential profit that could have been made after that there was a multiple waves of around 10 which was also a bonus for those who bought the dip overall we cannot say for sure that it was a bad pump but it was definitely not our original plan in the next pump we will make sure to change the coin if this happens again or simply postpone the pump to a better time thank you all for participating we will announce the next pump once we are ready 2020-03-08 21:49:00+00:00 1.0 1267170242 21946 5 minutes left the next message will be the coin signal 2020-03-08 18:55:13+00:00 1.0 1267170242 21945 15 minutes left until our pump signal be ready 2020-03-08 18:45:01+00:00 1.0 1267170242 21942 3 hours left until the pump on binance our team has decided to still pump in this market condition our reasoning is that we will take this opportunity to attract all binance traders to our coin while other coins are suffering we are confident that we will still have big enough volume to make a successful pump for everyone 2020-03-08 15:51:44+00:00 1.0 1267170242 21941 6 hours left until the pump on binance we have big expectations for this pump since many coins are not in the green today we should be able to attract all outsiders attention to our coin once they see us as top gainer 2020-03-08 12:50:45+00:00 1.0 1267170242 21929 pump announcement hello everyone the next official pump will be scheduled for date sunday march 8 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again our target for this pump will be at least 5070 the market is good and alot of people have been anxiously waiting for our next pump we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-03-06 17:58:08+00:00 1.0 1267170242 21927 just 02hrs left gurus call date today around 500 gmt exchange binance make sure guys buy and hold until targets we hope the market situation will be better today stay tuned 2020-03-06 15:00:03+00:00 1.0 1267170242 21924 gurus call make massive profit in short term with guru call based on strong technical analysis date today around 500 gmt exchange binance all you have to do buy and hold until targets 2020-03-06 08:35:16+00:00 1.0 1267170242 21903 gurus call make massive profit in short term with guru call based on strong technical analysis date tomorrow exchange binance 2020-03-05 09:28:37+00:00 1.0 1267170242 21849 only 5 minutes to go❗️ our experts choosed best strong tafa coin we will share here the targets of that coin for short term global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-03-03 15:55:45+00:00 1.0 1267170242 21848 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast expected profit 100 2020-03-03 15:29:52+00:00 1.0 1267170242 21847 only 60 minutes left the coin name will come as an image and text 2020-03-03 15:00:05+00:00 1.0 1267170242 21845 4 hour left until the strong ta call todays strong ta call will be freeforall this means that the coin signal will be at the exact same time for everyone expected target 2x note coin will be posted in picture to avoid bots 2020-03-03 12:00:04+00:00 1.0 1267170242 21839 great news for all as promised our analysts scanned binance exchange and found strongta based unicorn which is sitting on fking bottom and waiting for a kick to moon were expecting 100 gain in short term this time as big binance whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we will be able to make massive profits in short term make sure you have your binance account ready and loaded with btc for tommorow‼️ date march 3rdtomorrow exchange binance target 2x 2020-03-02 16:49:15+00:00 1.0 1267170242 21742 our experts choosed best strong tafa coin we will share here the targets of that coin for short term only 5 minutes to go❗️ global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-02-20 15:55:04+00:00 1.0 1267170242 21741 those who made quick profit from previous calls adx rlc edo are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for another strong ta call 2020-02-20 15:30:04+00:00 1.0 1267170242 21739 important announcement striving for little gains in this bear market dont miss our most anticipated binancestrongtasignal and be an initial part of golbal fomo our minimumtarget is 50100 profit areas just 4 hours left for the signal remember its gmt 400 pm 2020-02-20 12:00:09+00:00 1.0 1267170242 21732 guys we have decided to postpone the upcoming strong ta event due to bi̇nance system maintenance we will share the strong ta call tommorow for sure as its highly requested and our targets are 502x for short term new details date 20th febtommorow time 4pm gmt exchange bi̇nance 2020-02-19 16:56:20+00:00 1.0 1267170242 21731 strong ta update due to bi̇nance system maintenance your favourite strong ta call will announce here at 5 pm gmt instead of 4 pm gmt less than 1 hour 15 minutes left‼️ 2020-02-19 15:45:46+00:00 1.0 1267170242 21730 those who made quick profit from previous calls adx rlc edo are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for another strong ta call 2020-02-19 15:30:05+00:00 1.0 1267170242 21720 great news for all as promised our analysts scanned binance exchange and found strongta based unicorn which is sitting on fking bottom and waiting for a kick to moon were expecting 40 to 2x gain in short term as we did earlier in adx rlc edo and many more❕ alts are primed for huge spikes and we will be able to make massive profits in short term make sure you have your binance account ready and loaded with btc for today‼️ date february 19 today time 4 pm gmt exchange binance 2020-02-19 03:33:48+00:00 1.0 1267170242 21474 our experts choosed best strong tafa coin we will share here the targets of that coin for short term only 5 minutes to go❗️ global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-01-20 15:55:41+00:00 1.0 1267170242 21461 quick note we will postpone tonights strong ta call our experts closely monitoring the current market situation and believe that bitcoin is about to break 9000 resistance so its better to postpone we will probably share strong ta on monday new details are as follows date 20 january time 4 pm gmt exchange binance we hope you understand postponing the strong ta is better at this moment if not feel free to contact us thanks for understanding❤️ 2020-01-18 14:51:28+00:00 1.0 1267170242 21457 great news for all a lot of people have been wondering when the next strong ta will be❓ as promised our analysts scanned binance exchange and found strongta based unicorn which is sitting on fking bottom and waiting for a kick to moon were expecting 40 to 2x gain in short term as we did earlier in adx rlc edo and many more❕ market is looking more than ready have a great day prepare yourself for upcoming strong ta call‼️ date jan 18 time 4 pm gmt exchange binance 2020-01-18 09:17:55+00:00 1.0 1267170242 21451 pump results around 115 btc in volume which is amazing our buy power in the first few minutes was very big and we managed to pump it over 30 the amount of action was also very intense and there was alot of possibility to make profits during the pump after the initial spike we believe we could have hit 5070 easily if we didnt face the sell pressure at the start in fact after analyzing the data someone sold from 1500 to 1162 in 1 single 8 btc sell order which is something we have never seen happen before but we managed to bounce back from it with the help of our team bringing the price back at around 13001400 our initial plan was for our team to push the price up to 2000 satoshis if this didnt happen which is unfortunate the next pump hopefully we can avoid this overall it was a great pump with alot of action we will announce the next pump soon stay tuned 2020-01-16 20:08:36+00:00 1.0 1267170242 21437 pump announcement hello everyone the next official pump will be scheduled for date thursday january 16 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again the current market condition is perfect for a pump as outsider activity is very strong and we expect it to continue for the next few days our target for this pump will be between 5070 we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-01-15 06:04:48+00:00 1.0 1267170242 21207 hello everyone unfortunately we will have to postpone our pump today due to bad market conditions we are receiving alot of messages from our community and from other communities waiting for our pump that the best choice would be to postpone it even though we all would have liked to have a pump we are noticing alot of unstability on many coins including btc we believe that if we pumped a coin in this market outsiders will would easily sell their bags on us our team had big plans for this pump and was prepared for better market conditions our plan to pump a coin to a really high percentage will remain on the upcoming pump we are sure all our members will support our decision which is why we decided it is in our best interest to postpone it be assured that it will be worth the wait thank for you understanding 2019-12-17 17:16:56+00:00 1.0 1267170242 21185 this big bang call hello everyone the next official event will be scheduled for tomorrow date tuesday december 17 time 1900 pm gmt exchange binance advantage free for all after our successful edo signal our goal is to make another signal of that magnitude for this we will need 3 things good market conditions a good coin and finally a good coin and finally the collaboration of all our community members this signal will be free for all meaning that everyone will receive the signal at the same time 2019-12-16 17:39:17+00:00 1.0 1267170242 21170 those who made quick profit from previous calls adx rlc are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for another strong ta call 2019-12-16 15:30:05+00:00 1.0 1267170242 21167 great news for all as promised our analysts scanned binance exchange and found a gem strongta based gem will be posted today stay tuned for the time zone were expecting 40 to 60 gain in short term as we did earlier in go adx rlc etc market is lookin good for alts at the moment time 4 pm gmt stay tuned 2019-12-16 10:25:12+00:00 1.0 1267170242 20997 those who made 5x profit from previous call rlc are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for another strong ta call 2019-12-01 15:29:29+00:00 1.0 1267170242 20968 sky this coin will pump up you hold it this is my opinion 2019-11-27 10:25:21+00:00 1.0 1267170242 20659 grs heavy pump price went high till 2850 huge 15 profit within few minutes 2019-10-30 15:01:30+00:00 1.0 1267170242 20652 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:08:54+00:00 1.0 1267170242 20460 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:35:47+00:00 1.0 1267170242 20459 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:34:55+00:00 1.0 1267170242 20411 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:17+00:00 1.0 1267170242 19983 pump result our volume today was amazing around 80 btc however the pump did not go according to plan the pump started out great but a few seconds later we noticed alot of conditionnal sell walls appear during the pump normally we like to pump low satoshi coins because they are much easier pump and our team can easily support it and help the pump reach higher gains but today we decided to try something different and picked a high satoshi coin instead which was the wrong decision unfortunately with the big hidden sell walls our team was not able to support the pump like we always did in our previous ones from our 5 previous pumps we had 4 successful ones and only 1 bad one which was today pumping is all about consistency which is something we try to achieve everytime to make up for this situation we can guarantee 1 thing the next pump our team will guarantee profits for all our members by pushing the price higher for everyone after all our members are done buying and support the pump in a big way as we usually do we will announce the next pump date soon stay tuned 2019-10-02 18:42:41+00:00 1.0 1267170242 19979 pin us on top and be ready 30 minutes left until the pump on binance the cryptocoachsignals™ team 2019-10-02 17:30:05+00:00 1.0 1267170242 19934 pump announcement hello everyone the next official pump will be scheduled for date wednesday october 2 time 1800 pm gmt exchange binance advantage free for all we are finally ready to schedule our next pump during the past few days we have been waiting for btc to make its move and now that we have more confirmation of short term fluctuations in altcoins we can safely say that it is looking very good right now for the upcoming weeks our next pump will be big as always as many members have been waiting for it and as always the pump will be free for all meaning that everyone will receive the signal at the same time 2019-09-29 14:47:13+00:00 1.0 1267170242 19755 coin name ongbtc exchange binance 2019-09-19 17:00:25+00:00 1.0 1267170242 19740 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:56:58+00:00 1.0 1267170242 19714 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top with our current estimates we expect the next pump date to be maximum within a few days we hope you can understand that our decision is purely based on protecting our members and providing the best results possible in every pump we do the new pump date will be announced shortly 2019-09-18 16:14:53+00:00 1.0 1267170242 19710 dear members 3 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the cryptocoachsignals™ team 2019-09-18 15:00:00+00:00 1.0 1267170242 19699 dear members 6 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the cryptocoachsignals™ team 2019-09-18 12:00:00+00:00 1.0 1267170242 19603 pump announcement hello everyone the next official pump will be scheduled for date wednesday september 18 time 1800 pm gmt exchange binance advantage free for all the altcoin market is looking great our team has been analyzing every aspect of the market closely and the order books are looking clear in many coins with not many hidden walls which gives us a big opportunity to easily pump any coin to a high percentage gain we expect our upcoming pump to be big more details will follow as we get closer to the pump 2019-09-13 16:27:53+00:00 1.0 1267170242 19594 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 17:46:38+00:00 1.0 1267170242 19587 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2019-09-12 16:55:06+00:00 1.0 1267170242 19523 pump result around 30 gains on data which is much less than our previous 70 gains on this coin but still good enough it could be due to the fact that today is a sunday and alot of coins are going sideways perhaps we can confirm that pumping on a weekday is much better we can also see that pivx pumped at the exact same time which means some extra needed volume was taken from us which could have helped the coin go up around 20 more overall great pump thank you all for participating our next pump will be on a weekday as usual we will announce the date soon stay tuned 2019-09-08 19:18:57+00:00 1.0 1267170242 19520 pin us on top and be ready 10 minutes left the next message will be the coin name the cryptocoachsignals™ team 2019-09-08 17:50:05+00:00 1.0 1267170242 19518 pin us on top and be ready 30 minutes left until the pump on binance the cryptocoachsignals™ team 2019-09-08 17:30:05+00:00 1.0 1267170242 19512 less than 3 hours left for the binance biggest pump call 2019-09-08 15:00:05+00:00 1.0 1267170242 19505 dear members 6 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you share your favorite channel with your friends the cryptocoachsignals™ team 2019-09-08 11:00:04+00:00 1.0 1267170242 19414 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-06 13:39:53+00:00 1.0 1267170242 19352 6 minutes left the next message will be the coin name 2019-08-29 17:53:27+00:00 1.0 1267170242 19350 1 hour left until the pump be ready on binance 2019-08-29 17:10:24+00:00 1.0 1267170242 19348 less than 3 hours left for the binance biggest pump call 2019-08-29 15:10:48+00:00 1.0 1267170242 19344 hello everyone we have decided to postpone the pump date for the following reasons alot of good coins were pumped yesterday and today and we believe it is wiser to pump coins from their bottom rather from their top with our current estimates we believe that pumping thursday is a better option the new pump date will be pump announcement the next official pump will be scheduled for date thursday august 29 time 1800 pm gmt exchange binance advantage free for all 2019-08-27 18:54:06+00:00 1.0 1267170242 19282 viball target 6️⃣➕ hit 240 ✅profit 5200 pump coin hit 2019-08-21 18:23:22+00:00 1.0 1267170242 19277 1 hours left until the pump on binance be ready 2019-08-21 17:00:06+00:00 1.0 1267170242 19271 11 hours left until the pump on binance 2019-08-21 07:00:40+00:00 1.0 1267170242 19268 guys are you ready for the biggest freeforallevent we expect to see at least 50 spike info date wednesday august 21 time 1800 pm gmt exchange binance 1 day 6 hour left share your favourite channel with your friends 2019-08-20 12:41:39+00:00 1.0 1267170242 19250 pump announcement hello everyone the next official pump will be scheduled for date wednesday august 21 time 1800 pm gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge share your favourite channel with your friends 2019-08-18 18:46:22+00:00 1.0 1267170242 18792 binance upcoming dip call announcement dear members the wait is over since our previous dip calls were a great success a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip call because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time dip call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 22072019 monday time 4 pm gmt target 50100 have a great weekend and prepare yourself for upcoming dip call the dip call team 2019-07-20 07:52:09+00:00 1.0 1267170242 18526 important announcement for all members we are organising today hodlcall after 4pm gmt make sure you guys will buy and hold for maximum profit keep in mind this is hodlcall means to hold coin for midterm untill our selling targets also be careful on btc when holding alts 2019-06-25 07:50:33+00:00 1.0 1267170242 18496 guys i am giving a coin name with huge potential in next 15 minutes i am very bullish on it in short term only buy it and hold it and keep shifting stoplosses up as it raises stay tuned 2019-06-23 14:45:02+00:00 1.0 1267170242 18424 binance upcoming dip call update dear members the wait is over since our previous dip calls was a great succes a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 18062019 tuesday time 4 pm gmt target 50100 have a great day the dip call team 2019-06-16 17:29:03+00:00 1.0 1267170242 18162 15 min left next post coin name ‼️ if you want to make some sweet btc profits you must enter the dip call early and be confident 2019-05-16 16:45:08+00:00 1.0 1267170242 18152 binance dip call update guys the wait is over on 16th may at 4 pm gmt we are organising our next binance dip call our previous binancedipsignal results 1st dlt around 95 2nd lets join and lead the global fomo again 2019-05-15 16:21:28+00:00 1.0 1267170242 18029 15 minutes left login on binance now have everything ready team the trick to make some amazing profits is to be focused and early coin already in bottom the next message will be the coin❗️ 2019-05-05 15:45:06+00:00 1.0 1267170242 18014 first coin of may month coin name will be posted tomorrow before 06 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-05-02 16:52:55+00:00 1.0 1267170242 17920 next post coin name 2019-04-22 17:28:22+00:00 1.0 1267170242 17919 10 minutes left team be ready for the dip mega call 2019-04-22 17:19:43+00:00 1.0 1267170242 17915 15 minutes left team be ready for the dip mega call 2019-04-22 16:45:03+00:00 1.0 1267170242 17914 just 01 hour left dip call today at 500 pm gmt remember it will be a dip call so quick profit expected be ready guys 2019-04-22 16:00:14+00:00 1.0 1267170242 17826 next post coin name 2019-04-12 15:52:56+00:00 1.0 1267170242 17757 coin of week will be posted today date 6thapril time before 6pm gmt 2019-04-06 08:26:37+00:00 1.0 1267170242 17616 less than 10 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-04-01 16:54:12+00:00 1.0 1267170242 17613 guys less than 01 hour left today 5 pm gmt coin of april month be ready and move your funds on binance 2019-04-01 16:11:57+00:00 1.0 1267170242 17611 few hours left thats it team were ready prepared for this giant that is coming this coin of month signal is going to be epic because its a damn great gem just waiting for some steam to breakout 2019-04-01 14:15:54+00:00 1.0 1267170242 17476 big pump coin now dip pivx isnt he going to come o time watch 2019-03-28 18:33:11+00:00 1.0 1267170242 17420 final 5 minutes left will announce a strong mega signal 2019-03-27 15:56:30+00:00 1.0 1267170242 17409 did you miss oax evx eng dont worry we are going to tell you a premium mega coin at 4 pm gmt which target is 2x those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 2019-03-27 13:33:24+00:00 1.0 1267170242 16947 attention guys be ready for highly profitable signal potenial coin with big upcoiming news hold for maximum profit multiply your btc with us next post will be coin name 2019-03-15 09:28:29+00:00 1.0 1267170242 16704 one more coin month march coin name will be posted today before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 13:27:49+00:00 1.0 1267170242 16668 one more coin month march coin name will be posted tomorrow before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-07 17:39:51+00:00 1.0 1267170242 16543 hey folks‼ important announcement on 5th march at 430 pm gmt we are organising special signal called binance titanic signal the binance titanic signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 100150 profit areas our recent binancetitanicsignal results 1st bnt around 85 2nd storj around 102 3rd hold for some hours let the fomo arrive into it 2019-03-04 16:16:46+00:00 1.0 1267170242 16534 bear or bull doesnt matter we have already seen what happened in the last binancetitanicsignal almost 1400 btc in an hour in volume our recent binancetitanicsignal results 1st bnt around 85 2nd storj around 102 3rd lets join and lead the global fomo again the wait will be over on 5th march at 430pm gmt cheers 2019-03-04 12:45:08+00:00 1.0 1267170242 16531 hey folks‼️ important announcement on 5th march at 430 pm gmt we are organising special signal called binance titanic signal the binance titanic signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 100150 profit areas our recent binancetitanicsignal results 1st bnt around 85 2nd storj around 102 3rd hold for some hours let the fomo arrive into it 2019-03-04 12:15:21+00:00 1.0 1267170242 16415 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ 2019-03-01 09:18:46+00:00 1.0 1267170242 16381 coin of month march coin name will be posted today before 06 pm gmt rdn was feb month posted on 31stjan gave upto 60 profit make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 09:00:13+00:00 1.0 1267170242 16007 hey folks❗️❗️ important announcement tomorrow 10th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-09 17:29:01+00:00 1.0 1267170242 15985 sub looks good for pump buy and hold for maximum profits 2019-02-08 16:55:12+00:00 1.0 1267170242 15955 important announcement guys as market is in uptrend we are going to share special call today at 430 pm gmt undervalued solid gem which can give you 30 to 100 profit log in your binance account and be ready at 430pm gmt exchange binance time 430 pm gmt 1000 pm ist stay tuned 2019-02-08 09:19:55+00:00 1.0 1267170242 15842 hey folks❗️❗️ important announcement tomorrow 4th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-03 17:06:04+00:00 1.0 1267170242 15673 next post coin name we recommend all you need to do is buy and hold for upto 3050 profit 2019-01-27 14:28:15+00:00 1.0 1267170242 15268 guys less than 1 hour left be ready with your btc on binance we will share a huge potential coin for short term profit staytuned 2019-01-13 12:45:52+00:00 1.0 1267170242 15258 hey guys pay attention we are going to share a short term call here on binance exchange that call will come here at 145 pm gmt 715 pm ist you can buy that particular coin and hold for targets to get achieved remember that short term call not a pump so it can blast anytime we have analyzed throughly based on technical analysis so make sure you will buy fast and hold for maximum profit sit back and relax we are coming at 145 pm gmt 715 pm ist 2019-01-13 05:49:14+00:00 1.0 1267170242 15063 ❗️guyz as market is in uptrend we are going to share our big call today at 345pm gmt undervalued solid gem which can give you 30 to 50 profit hodl requirement log in your binance account and be ready at 345pm gmt exchange binance time 345 pm gmt 915 pm ist stay tuned 2019-01-03 10:23:31+00:00 1.0 1267170242 15037 best signal of the week the coin is brd target 1 6350 target 2 6650 target 3 7200++ buy and hold tight till target achieve 2019-01-02 15:45:21+00:00 1.0 1267170242 15035 less than 15 min left of signal of the week be ready with you btc on binance next message will the coin name remember it will the best signal of the week so you need to buy and hold till target achieve 2019-01-02 15:31:19+00:00 1.0 1267170242 15034 hey guys pay attention today our team will give you best signal of the week the coin will be announced here at 345pm gmt remember that best signal of the week so it can blast anytime we have analyzed throughly based on technical analysis so make you sure you will buy fast and hold it for maximum profit stay tuned we will share call here at 345pm gmt 2019-01-02 13:43:36+00:00 1.0 1267170242 14956 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 12:26:27+00:00 1.0 1267170242 14950 binance mega signal event on today guys less than 5 hours left be ready with your btc on binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 07:29:58+00:00 1.0 1267170242 14933 binance mega signal event on date 30thdecember exact time 1230 pm gmt participants upto 500k telegram users exchange binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-29 13:20:11+00:00 1.0 1267170242 14892 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 12:27:53+00:00 1.0 1267170242 14886 binance mega signal today ℹ️ 530 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 07:03:21+00:00 1.0 1267170242 14872 binance mega signal event on date 27thdecember exact time 1230 pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-26 15:49:12+00:00 1.0 1267170242 14572 pump results x2 coin was eqt started 00000616 reached 000001400 great job guys note we always repump our coins 2018-12-09 19:43:19+00:00 1.0 1267170242 14567 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-09 19:00:17+00:00 1.0 1267170242 14565 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-09 18:55:07+00:00 1.0 1267170242 14552 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09122018 sunday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-09 11:52:46+00:00 1.0 1267170242 14529 pump results x2 coin was plr started 000001270 reached 000002500 great job guys 2018-12-07 20:04:22+00:00 1.0 1267170242 14507 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-07 19:00:24+00:00 1.0 1267170242 14505 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-07 18:55:12+00:00 1.0 1267170242 14494 ℹ coin signal information ℹ date friday 07122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt 8 hrs remaining for mega signal ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-07 11:00:23+00:00 1.0 1267170242 14460 pump results 300 gain coin was xptx open 000002144 reached 000006450 buy order for long timen still exists greenery in xptx noteyou did great job guyz we always repump our coin so hold if u buy high 2018-12-05 19:44:49+00:00 1.0 1267170242 14457 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-05 19:00:24+00:00 1.0 1267170242 14455 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-05 18:55:13+00:00 1.0 1267170242 14451 ℹ️ 1 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 18:00:15+00:00 1.0 1267170242 14447 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 13:00:07+00:00 1.0 1267170242 14446 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 11:00:15+00:00 1.0 1267170242 14445 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-05 09:01:21+00:00 1.0 1267170242 14443 ℹ coin signal information ℹ date wednesday 05122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-05 06:30:14+00:00 1.0 1267170242 14051 binance pump signal event on date 20november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit 2018-11-18 19:37:27+00:00 1.0 1267170242 13947 binance pump signal event on date 15november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit our join channel link to add your friends 2018-11-13 17:45:20+00:00 1.0 1267170242 13932 binance pump signal event on date 15november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit our join channel link to add your friends 2018-11-13 08:02:23+00:00 1.0 1267170242 2956 binance update suddenly all binance alts dumped and at the same time via coin pumped up to 48x50x the reason for this dump » api related attack something wrong happened with binance api keys api keys are useful to trade with bots and other apps without using binance exchange itself and those who used api keys to trade with bots and other apps their accounts automatically bought via coin also some of their alts bag might got sold out automatically thats the reason of via massive pump and thats why binance exchange suspended their withdrawal temporary 2018-03-07 17:43:43+00:00 1.0 1125222122 8233 wtf with data 1230 pump looks like alt season is abt to begin 2019-11-25 06:19:54+00:00 1.0 1125222122 7536 as ive told you so no big surprises if low satoshi coins started to get pump whales can easily buy or sell due to low prices and high volume 2019-05-13 06:57:54+00:00 1.0 1125222122 6462 scam alert breaking down the loom pump yesterday some big channels organised pump on loom coin at 8 pm +530 gmt in the beginning we were thinking that this pump was organised by a youtube channel money guru but now weve found that some big crypto channels are also involved in this pd activity all this channels showed above has huge crypto community which can create huge intensity in volume for pumping prices obviously not for the commoners but for their own profits so we strongly recommend you to ignore their calls and pump signals most probably theres a group of whales behind this which has united this channel admins and organising pumps loom price already increased by +17 at the time of pump and continued to drop without any recovery so if you think that you can make profits from their pumps than youre definitely wrong coz theyre not working for your profits but for their own see the chart above for pump analysis weve noticed that this pump was definitely not well prepared by its organisers maybe due to lack of collaboration most probably their paid members also got rekt in this pump but with its intensity one thing is clear that this was like a test pump they will start to pump coins with more preparation and better collaboration in coming days well highly recommend you to stay away from this channels and any other kind of pd activities dont gamble your hardly earned money thanks you team coinguru 2019-01-08 10:01:05+00:00 1.0 1125222122 3395 hey guys looks like they are back to pump huge pump is gonna happen after 15 min countdown signals are also a type of pumps because all wait for timing and at the time of announcement all run towards the dig i urge you all to stay away from them and save your valuable money thanks team coinguru 2017-12-12 13:44:58+00:00 1.0 1125222122 2355 a huge channel will announce a coin today on 230 gmt doesnt it acts like a pump remember guys countdown signals are nothing but just pump i highly recommend you to stay away from this dirty game trade wisely earn well 2017-11-20 09:40:37+00:00 1.0 1125222122 1529 lesson 6 this lesson will be helpful when market is bearish ♦️hey guys this is coinguru with an important message the most important thing ive earned till is all of you and your trust i heartily thanks to all of you plz note some points ♦️the whole crypto market is in the blood bath so i suggest you to avoid investing your all bitcoins invest only 20 of your capital ♦️do not take part in pump and dump ♦️avoid huge groups short signals because they work as pump and dump they all dump you for their paid members ♦️dont buy the coin at the time of signal coz all run to the dig you stay watch and then hit wait for 1530 minutes ♦️instead all of this bitcoin is still the best investment for your money so keep learning keep growing ♦️best of luck to all of you team coinguru 2017-11-02 11:59:03+00:00 1.0 1125222122 1431 lesson 6 this lesson will be helpful when market is bearish ♦️hey guys this is coinguru with an important message the most important thing ive earned till is all of you and your trust i heartily thanks to all of you plz note some points ♦️the whole crypto market is in the blood bath so i suggest you to avoid investing your all bitcoins invest only 20 of your capital ♦️do not take part in pump and dump ♦️avoid huge groups short signals because they work as pump and dump they all dump you for their paid members ♦️dont buy the coin at the time of signal coz all run to the dig you stay watch and then hit wait for 1530 minutes ♦️instead all of this bitcoin is still the best investment for your money so keep learning keep growing ♦️best of luck to all of you team coinguru 2017-10-31 14:02:11+00:00 1.0 1125222122 851 lesson 6 this lesson will be helpful when market is bearish ♦️hey guys this is coinguru with an important message the most important thing ive earned till is all of you and your trust i heartily thanks to all of you plz note some points ♦️the whole crypto market is in the blood bath so i suggest you to avoid investing your all bitcoins invest only 20 of your capital ♦️do not take part in pump and dump ♦️avoid huge groups short signals because they work as pump and dump they all dump you for their paid members ♦️dont buy the coin at the time of signal coz all run to the dig you stay watch and then hit wait for 1530 minutes ♦️instead all of this bitcoin is still the best investment for your money so keep learning keep growing ♦️best of luck to all of you team coinguru 2017-10-17 07:31:16+00:00 1.0 1125222122 532 for those who read this post here is the next leasson save this message in your evernote and always read it ♦️in previous lesson we learn that how a pump works now well learn that how we can be more smarter than dumpers ♦️everytime when you buy the coin it starts dipping yeah thats happened to everyone me too ♦️now am gonna tell you the way by which youll surely earn upto 2030 by dumping shits ♦️first of all check those coins and their graph which are top loosers and dipping continously from last 30 days and have not been boosted more than 10 in those days ♦️coins market cap rank should be below top 75 and volume should be less than 15 btc ♦️when you find some coins having this quality you can randomly buy any coin ♦️there must be 810 coins having this qualities so dont worry for a long list ♦️after buying it at cheaper rates place your sell order above 20 and wait patiently‍♂ sure it will be pumped within 10 days ♦️put stop loss of 35 and dont worry for going more dipper bcoz the coin is already undervalued ♦️this process will take 3045 min thats fair for 2030 profit ♦️dont use more than 20of your capital ♦️use coinmarketcapcom additional info ♦️in the end am here to help you coinguru1‍ 2017-10-11 07:23:09+00:00 1.0 1125222122 500 hey guys this is coinguru with an important message the most important thing ive earned till is all of you and your trust i heartily thanks to all of you plz note some points ♦️the whole crypto market is in the blood bath so i suggest you to avoid investing your all bitcoins invest only 20 of your capital ♦️do not take part in pump and dump ♦️avoid huge groups short signals because they work as pump and dump they all dump you for their paid members ♦️dont buy the coin at the time of signal coz all run to the dig you stay watch and then hit wait for 1530 minutes ♦️instead all of this bitcoin is still the best investment for your money so keep learning keep growing ♦️best of luck to all of you team coinguru 2017-10-09 11:16:33+00:00 1.0 1125222122 486 hey guys this is coinguru with an important message the most important thing ive earned till is all of you and your trust i heartily thanks to all of you plz note some points the whole crypto market from some days is in the blood bath so i suggest you to avoid investing your all bitcoins invest only 20 of your capital do not take part in pump and dump avoid huge groups short signals because they work as pump and dump they all dump you for their paid members dont buy the coin at the time of signal coz all run to the dig you stay watch and then hit wait for 1530 minutes instead all of this bitcoin is still the best investment for your money so keep learning keep growing best of luck to all of you team coinguru 2017-10-09 07:17:43+00:00 1.0 1125222122 348 hey guys this is coinguru with an important message the most important thing ive earned till is all of you and your trust i heartily thanks to all of you plz note some points the whole crypto market from some days is in the blood bath so i suggest you to avoid investing your all bitcoins invest only 20 of your capital do not take part in pump and dump avoid huge groups short signals because they work as pump and dump they all dump you for their paid members dont buy the coin at the time of signal coz all run to the dig you stay watch and then hit wait for 1530 minutes instead all of this bitcoin is still the best investment for your money so keep learning keep growing best of luck to all of you team coinguru 2017-10-06 02:33:25+00:00 1.0 1125222122 330 hey guys this is coinguru with an important message the most important thing ive earned till is all of you and your trust i heartily thanks to all of you plz note some points the whole crypto market from some days is in the blood bath so i suggest you to avoid investing your all bitcoins invest only 20 of your capital do not take part in pump and dump avoid huge groups short signals because they work as pump and dump they all dump you for their paid members dont buy the coin at the time of signal coz all run to the dig you stay watch and then hit wait for 1530 minutes instead all of this bitcoin is still the best investment for your money so keep learning keep growing best of luck to all of you team coinguru 2017-10-05 14:06:05+00:00 1.0 1125222122 278 coin name slr buy price 5100 5150 profit 1 5 period 612 hours 2017-10-04 14:07:32+00:00 1.0 1318722500 2731 loom bull flag on smaller time frame short term scalp trade can expect 10 15 pump from here current price 262 satoshi targeting 282 296 315 345 380+ last 2 targets for hodl purpose stop at 5 7 below buy zone 2020-02-07 08:12:00+00:00 1.0 1318722500 2709 a coin i hold very close to muh heart neo looks like its trying to break a large inverse hs neckline resistance target would be a +40 pump im hodling bags well see how it goes altcoins crypto cryptocurrency neo 2020-02-06 19:55:46+00:00 1.0 1222664368 754 30 minutes until the pump be ready for huge gains 2019-02-21 19:34:08+00:00 1.0 1222664368 752 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-02-21 19:00:21+00:00 1.0 1222664368 750 4 hours left until the pump everything is looking amazing today last time we under estimated our reach and could have easily handled double the volume with the amount of outsiders we brought in today we expect double the volume or even more 2019-02-21 16:03:43+00:00 1.0 1222664368 749 everyone 8 hours left be ready for the big pump remember to deposit your btc into bittrex and verify the account 2019-02-21 12:01:33+00:00 1.0 1222664368 748 everyone 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot bittrex has 40 million daily volume and we will claim as much of that as we can for our group be sure to have your account loaded and verified and be ready to help promote the coin tomorrow check back on past results or help channels if you are new 2019-02-20 20:00:19+00:00 1.0 1222664368 747 everyone 48 hours left until another great bittrex pump previous results 139 12 min to peak 2 huge waves dont miss out conditions keep getting better and better in the market and so will our pumps 2019-02-19 20:01:25+00:00 1.0 1222664368 746 be ready for the next pump it will be huge 2019-02-17 16:37:33+00:00 1.0 1222664368 745 everyone pump announcement next pump thursday 21 february 2000 gmt check your local time exchange bittrex pairing btc lets make this pump even better after the huge success of the last pump be ready register your account on bittrex and verify it 2019-02-15 18:10:54+00:00 1.0 1222664368 726 30 minutes until the pump be ready for huge gains 2019-02-12 19:30:22+00:00 1.0 1222664368 725 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-02-12 19:00:22+00:00 1.0 1222664368 724 2 hours left until the pump everyone we strongly believe we will dominate bittrex like we dominated cryptopia dont miss this pump 2019-02-12 18:00:30+00:00 1.0 1222664368 721 everyone 4 hours left until the pump be sure to have enough btc available everything is looking amazing today here we come bitrrex 2019-02-12 16:12:32+00:00 1.0 1222664368 720 everyone 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot bittrex has 40 million daily volume how much of that can we take home with us tomorrow 2019-02-11 20:00:23+00:00 1.0 1222664368 719 just under 48hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal the same time via our bot bittrex is 10x larger by volume than cryptopia and used by millions of more users bittrex also advertises the top gainer of the day on their front page which means 10s of thousands of users will see our coin first when they log into bittrex during the pump this is huge and will be very successful you will not want to miss it 2019-02-10 20:27:00+00:00 1.0 1222664368 716 everyone pump announcement next pump tuesday 12 february 2000 gmt check your local time exchange bittrex pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we will be pulling out all the stops for this pump to make sure we jump on the scene as the best pump group on bittrex right away our op shilling tools meant for binance will be used for this pump instead bittrex is a huge step up from cryptopia much larger much more trusted many more outsiders you can feel safe investing up to 3 btc into pumps here 2019-02-07 02:01:58+00:00 1.0 1222664368 704 1 hour left until the pump everyone help promote the coin in the cryptopia chatbox during the pump 2019-01-11 19:00:47+00:00 1.0 1222664368 701 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in help hype in the cryptopia chat hodl together we are the best coin promoting group never panic we will get all orders sold to outsiders this may take several minutes normal pump peaks are 23 min after the pump start 2019-01-11 16:00:33+00:00 1.0 1222664368 700 everyone 24hours left until our massive pump 2000 gmt check your local time exchange pairing btc we will adjust our goal from trying to give max gains to people to giving gains to max people if you enter this pump you will profit we are looking to receive successstories from almost every user this pump as always the pump is ffa 2019-01-10 20:02:21+00:00 1.0 1222664368 697 everyone pump announcement next pump friday 11 january 2000 gmt check your local time exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2019-01-09 17:23:20+00:00 1.0 1222664368 692 1 minutes left next message will be picture with the coin name 2019-01-03 20:09:00+00:00 1.0 1222664368 688 30 minutes left today will be a huge pump with a higher goal than usual as always the expected gain range will be announced 5 min before the coin 2019-01-03 19:40:27+00:00 1.0 1222664368 687 1 hour left until the pump these reminders have been coming 10 minutes past the hour because we will pump today 10 minutes past the hour at 2010 gmt be sure to have btc available in your account and check the help channels if this will be one of your first pumps today we expect a huge success 2019-01-03 19:10:24+00:00 1.0 1222664368 685 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2019-01-03 16:11:00+00:00 1.0 1222664368 684 24hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot again this will be a huge pump that you will not want to miss 2019-01-02 20:00:29+00:00 1.0 1222664368 683 47 hours left until our pump 2019 will start off right with the best pump possible higher goal elite promo and more outsiders 2019-01-01 21:01:15+00:00 1.0 1222664368 681 everyone pump announcement next pump thursday 03 january 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time this pump will see a higher goal than nomral to leave even more room for everyone to profit we have been developing our promo approach for an entire week and believe we will see huge outsider volume this is truly a pump you will not want to miss 2018-12-30 20:11:37+00:00 1.0 1222664368 674 5 minutes until the pump next message will be the coin everyone expected gain 200250 2018-12-20 19:55:41+00:00 1.0 1222664368 672 1 hour left until the pump news will be supplied to spread about the coin in order to bring outside investment into the pump we ask you to promote this coin news in the cryptopia chat here 2018-12-20 19:04:18+00:00 1.0 1222664368 670 4 hours left before the pump bitcoin and the alts are looking very strong we will have a great pump today 2018-12-20 16:00:16+00:00 1.0 1222664368 669 everyone 23 hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot bitcoin and most crypto are on the way up we can make this a huge pump 2018-12-19 21:02:24+00:00 1.0 1222664368 667 everyone pump announcement next pump thursday 20 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have been doing great lately lets keep this up pre holiday pump time to put a little more cash in your pocket before christmas 2018-12-18 20:40:56+00:00 1.0 1222664368 665 can cryptopia pump results start price 375 peak price 1235 gain 229 2018-12-13 20:12:46+00:00 1.0 1222664368 658 everyone 5 minutes left the next message will be the coin expected gain 200300 2018-12-13 19:55:07+00:00 1.0 1222664368 654 everyone 1 hour left until our massive pump be sure to help promote the coin in the cryptopia chatbox and on social media durring the pump 2018-12-13 19:00:26+00:00 1.0 1222664368 653 everyone 2 hours left until our massive pump have btc loading in your cryptopia account before then pump 2018-12-13 18:00:19+00:00 1.0 1222664368 652 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-12-13 16:00:28+00:00 1.0 1222664368 651 everyone 24 hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump 2018-12-12 20:03:04+00:00 1.0 1222664368 649 everyone pump announcement next pump thursday 13 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have been doing great lately lets keep this up 2018-12-10 21:04:01+00:00 1.0 1222664368 647 ont cryptopia pump results start price 15804 peak price 70999 gain 342 peak buy came at 3 min 15 sec today great job bringing in those outsiders 2018-12-10 20:42:27+00:00 1.0 1222664368 639 everyone 5 minutes left the next message will be the coin expected gain 300450 2018-12-10 19:55:05+00:00 1.0 1222664368 635 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon today we expect much larger than normal gains and huge percentage rise 2018-12-10 19:00:20+00:00 1.0 1222664368 634 2 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media 2018-12-10 18:02:09+00:00 1.0 1222664368 633 4 hours left before the pump last pump was amazing we went way over our goal and held for a nice amount of time today will be an enormous pump higher gains more outsiders more profits 2018-12-10 16:00:22+00:00 1.0 1222664368 632 everyone 24 hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump 2018-12-09 20:00:30+00:00 1.0 1222664368 631 everyone family pump announcement next pump monday 10 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time last pump we saw amazing results of 294 with a slow climb outsiders buying in late the coin holding for a long time and great success stories sent in by many members make sure to mark your calendars as this will be another pump you wont want to miss 2018-12-07 22:03:31+00:00 1.0 1222664368 629 otn cryptopia pump results start price 4802 peak price 18293 gain 294 great job promoting today the pump rose very slow and steady and held for almost 10 min 2018-12-06 20:14:17+00:00 1.0 1222664368 618 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon with our great shilling outsiders will be ready to invest right after us and bring in some huge profits 2018-12-06 19:00:17+00:00 1.0 1222664368 616 22 hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump 2018-12-05 21:59:21+00:00 1.0 1222664368 607 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon with our great shilling outsiders will be ready to invest right after us and bring in some huge profits 2018-12-04 19:00:19+00:00 1.0 1222664368 606 everyone 2 hours left until our massive pump 2018-12-04 18:00:20+00:00 1.0 1222664368 605 everyone 4 hours left until our massive pump remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump as we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump check the help channels or ask questions if you need 2018-12-04 16:00:13+00:00 1.0 1222664368 603 everyone 24 hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump 2018-12-03 20:00:43+00:00 1.0 1222664368 602 48 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-12-02 21:00:02+00:00 1.0 1222664368 600 everyone pump announcement next pump tuesday 4 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time the time has come we are back and ready to bring those profits we all got used to the market went through a tough time but we are here to succeed once again 2018-11-27 18:42:10+00:00 1.0 1222664368 594 5 minutes left the next message will be the coin 2018-11-09 19:55:20+00:00 1.0 1222664368 585 everyone just under 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot 2018-11-07 20:50:37+00:00 1.0 1222664368 584 everyone pump announcement next pump thursday 8 november 1930 gmt 2230 gmt+3 moscow 8 nov 2130 gmt+2 rome 8 nov 2030 gmt+1 london 8 nov 1530 est new york 8 nov 0530 aest sydney 9 nov 0100 ist delhi 9 nov 0430 jst tokyo 9 nov exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-11-05 20:40:05+00:00 1.0 1222664368 575 everyone 5 minutes left the next message will be the coin make sure you are watching here as the coin will announce at any point up to 1 minute early 2018-11-03 17:55:14+00:00 1.0 1222664368 573 30 minutes left we are ready outsiders are waiting and potential is super high lets set new records today 2018-11-03 17:27:47+00:00 1.0 1222664368 571 1 hour left until our massive pump 2018-11-03 17:00:22+00:00 1.0 1222664368 569 2 hours left until the huge pump we hope everyone is primed ad ready to go today will be enormous gains endless outsiders and maximun profits 2018-11-03 16:01:14+00:00 1.0 1222664368 568 4 hours left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-03 14:00:24+00:00 1.0 1222664368 565 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot this will be a saturday pump for the ages all tools triple checked and working optimally weeks ago we shot ivy over 790 with huge volume and extreme outsider buy ins tomorrow we have a very strong chance to do even better than this everyone be ready together we will make this an amazing success 2018-11-02 18:00:22+00:00 1.0 1222664368 563 everyone pump announcement next pump saturday 3 november 1800 gmt 2100 gmt+3 moscow flagru 3 nov 2000 gmt+2 rome flagit 3 nov 1900 gmt+1 london flaggb 3 nov 1400 est new york flagus 3 nov 2330 ist delhi flagin 3 nov 0400 aest sydney flagau 4 nov 0300 jst tokyo flagjp 4 nov exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time a saturday pump will be huge we expect more volume more outsiders and more profit for everyone 2018-11-01 19:44:20+00:00 1.0 1222664368 554 5 minutes left the next message will be the coin make sure you are watching here as the coin will announce at any point up to 1 minute early 2018-10-30 19:25:10+00:00 1.0 1222664368 552 30 minutes left be sure to help promote the coin our news is great and we will be able to bring in a ot of outsiders for max profits 2018-10-30 19:00:18+00:00 1.0 1222664368 551 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-10-30 18:30:17+00:00 1.0 1222664368 550 2 hours left until the huge pump we hope everyone is primed ad ready to go today will be a huge success 2018-10-30 17:30:24+00:00 1.0 1222664368 549 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-30 15:30:38+00:00 1.0 1222664368 548 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump so we are sure it will be even bigger and better than we expect 2018-10-29 19:35:19+00:00 1.0 1222664368 547 next pump tuesday 30 october 1930 gmt 2230 gmt+3 moscow 30 oct 2130 gmt+2 rome 30 oct 2030 gmt+1 london 30 oct 1530 est new york 30 oct 0530 aest sydney 31 oct 0100 ist delhi 31 oct 0430 jst tokyo 31 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time another huge pump coming 2018-10-29 05:53:11+00:00 1.0 1222664368 538 everyone 5 minutes left the next post will be the coin make sure you are watching here as the coin can come up to 1 minute early 2018-10-27 17:55:23+00:00 1.0 1222664368 534 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-10-27 17:03:17+00:00 1.0 1222664368 532 under 4 hours left until the pump 1800 gmt we have been doing amazing lately but today will be even bigger and better than normal great volume tons of outsiders max profits 2018-10-27 14:19:42+00:00 1.0 1222664368 531 everyone 6 hour left until our huge pump 5 hours and 53 mins exactly remember to 1 buy in quickly 2 list your sell in the expected gain range 3 help promote the coin in the cryptopia chat box we have been doing incredible lately and that trend will continue today 2018-10-27 12:07:27+00:00 1.0 1222664368 527 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-10-26 18:04:40+00:00 1.0 1222664368 525 everyone pump announcement next pump saturday 27 october 1800 gmt 2100 gmt+3 moscow flagru 27 oct 2000 gmt+2 rome flagit 27 oct 1900 gmt+1 london flaggb 27 oct 1400 est new york flagus 27 oct 2330 ist delhi flagin 27 oct 0400 aest sydney flagau 28 oct 0300 jst tokyo flagjp 28 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time due to our recent success and by popluar demand we will pump this saturday another huge pump coming 2018-10-26 03:42:12+00:00 1.0 1222664368 518 we are back so strong xptx cryptopia pump results peak price 12403 gain 530 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 3 and 4 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-10-25 19:51:55+00:00 1.0 1222664368 510 everyone 5 minutes left the next message will be the coin make sure you are watching here as the coin will announce at any point up to 1 minute early that is what i loaded 2018-10-25 19:25:20+00:00 1.0 1222664368 508 everyone 30 minutes left until the pump lets work hard to keep our volume up and surpass our goal to maximize profits for everyone 2018-10-25 19:00:46+00:00 1.0 1222664368 507 everyone 1 hour left until our huge pump remember to 1 buy in quickly 2 list your sell in the expected gain range 3 help promote the coin in the cryptopia chat box we have been doing incredible lately and that trend will continue today 2018-10-25 18:30:47+00:00 1.0 1222664368 505 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-25 15:30:14+00:00 1.0 1222664368 503 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great for this pump lets beat our goal and bring in max outsiders 2018-10-24 19:31:51+00:00 1.0 1222664368 498 next pump thursday 25 october 1930 gmt 2230 gmt+3 moscow 25 oct 2130 gmt+2 rome 25 oct 2030 gmt+1 london 25 oct 1530 est new york 25 oct 0530 aest sydney 26 oct 0100 ist delhi 26 oct 0430 jst tokyo 26 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-23 15:46:41+00:00 1.0 1222664368 495 everyone 24 hours left until our massive pump exchange sign up pairing btc load account huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot market conditions are looking great for another pump 2018-10-22 19:31:26+00:00 1.0 1222664368 492 everyone cryptofamily pump announcement next pump tuesday 23 october 1930 gmt 2230 gmt+3 moscow 23 oct 2130 gmt+2 rome 23 oct 2030 gmt+1 london 23 oct 1530 est new york 23 oct 0530 aest sydney 24 oct 0100 ist delhi 24 oct 0430 jst tokyo 24 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time this will be another huge pump then we will rest while we focus hard on our binance pump oct 30th 2018-10-21 21:24:27+00:00 1.0 1222664368 483 everyone 30 minutes left until the pump exchange cryptopia pairing btc today is a great day for a pump we have analyzed 4 coins with great potential and although we have our favorite we will monitor all 4 closesly until the last second before the pump to make sure we are giving the absolute best of the best good luck today everyone 2018-10-18 19:02:15+00:00 1.0 1222664368 482 everyone 1 hour left until our huge pump remember to 1 buy in quickly 2 list your sell in the expected gain range 3 help promote the coin in the cryptopia chat box we have been doing incredible lately and that trend will continue today 2018-10-18 18:30:19+00:00 1.0 1222664368 481 everyone 2 hours left until our massive pump todays forecast is simply incredible 2 weeks ago we pumped ivy and it went 794 with amazing volume last week we pumped bubo and it held near peak for 20+ minutes today we will do even better with max outsiders again and huge profits 2018-10-18 17:30:35+00:00 1.0 1222664368 480 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-18 15:30:22+00:00 1.0 1222664368 478 everyone 24 hours left until our massive pump exchange sign up pairing btc load account huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we have amazing promotional material ready with our greatest shilling power yet expect 400 gain or more + coin staying up for a long time + tons of outsiders again to tips learn to pump see our website 2018-10-17 19:32:59+00:00 1.0 1222664368 477 48 hours left until our massive pump exchange cryptopia pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot last pump we held 250 for over 20 minutes and had record amount of outsiders buying in this next pump will be even bigger with a huge goal again expect 400 or more + coin staying up for longer + tons of outsiders again 2018-10-16 19:30:26+00:00 1.0 1222664368 475 everyone cryptofamily pump announcement next pump thursday 18 october 1930 gmt 2230 gmt+3 moscow 18 oct 2130 gmt+2 rome 18 oct 2030 gmt+1 london 18 oct 1530 est new york 19 oct 0530 aest sydney 19 oct 0100 ist delhi 19 oct 0430 jst tokyo 19 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-14 14:23:02+00:00 1.0 1222664368 465 bubo cryptopia pump results start price 68 peak price 273 gain 301 today was amazing for outsiders as we predicted keep up the good work everyone 2018-10-11 20:02:20+00:00 1.0 1222664368 458 30 minutes left news to promote in the cryptopia chatbox and all over social media will be supplied shortly after the coin annuoncement 2018-10-11 19:00:54+00:00 1.0 1222664368 457 1 hour left until our massive pump this will be huge 2018-10-11 18:30:03+00:00 1.0 1222664368 456 2 hour left until our massive pump we have great coin news and shilling prepared for today along with 2000 new members make sure you are doing your part and helping promote the coin in the chatbox after you are bought in this pump will be huge and filmed to use as promotional material help us make this the best pump ever lets blast over our goal again this pump rocket 2018-10-11 17:32:42+00:00 1.0 1222664368 455 4 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-11 15:31:02+00:00 1.0 1222664368 454 24 hours left until our massive pump exchange cryptopia pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot together our family has grown by over 2000 users in 1 week this says a lot about our past success but also about our future success we are stronger than ever and will have an incredible pump tomorrow improved shilling for this pump featured website hosting the coin news social media influencers promoting our shilling tools at full strength 2000 more users to spread fomo about the coin bringing in outsiders is how we maximize earnings and tomorrow we will do the best weve ever done at that be ready for huge profits 2018-10-10 19:30:56+00:00 1.0 1222664368 453 our next pump could be so huge dont miss it 2018-10-10 17:42:46+00:00 1.0 1222664368 452 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot pumps have been very good lately and we are stepping our shilling game up again expect this pump to be nothing short of amazing 2018-10-09 19:30:33+00:00 1.0 1222664368 451 everyone cryptofamily pump announcement next pump thursday 11 october 1930 gmt 2230 gmt+3 moscow 11 oct 2130 gmt+2 rome 11 oct 2030 gmt+1 london 11 oct 1530 est new york 12 oct 0530 aest sydney 12 oct 0100 ist delhi 12 oct 0430 jst tokyo 12 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time a other huge pump is coming 2018-10-08 18:16:32+00:00 1.0 1222664368 448 sib cryptopia pump results start price 2444 peak price 9784 gain 300 volume 55 btc 2018-10-06 15:23:48+00:00 1.0 1222664368 444 everyone 3 minutes left next message will be the coin 2018-10-05 19:27:14+00:00 1.0 1222664368 443 10 minutes left expected gain 300 370 2018-10-05 19:20:09+00:00 1.0 1222664368 441 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump rocket 2018-10-05 18:30:23+00:00 1.0 1222664368 440 2 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-05 17:32:10+00:00 1.0 1222664368 439 under 4 hours left until the huge pump exchange cryptopia pairing btc last time was our bestbiggest pump ever and today we can keep up that trend be ready for another massive pump with higher than typical goals and even greater potential profits 2018-10-05 15:36:44+00:00 1.0 1222664368 438 just under 24 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this this will be a historic pump pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we are aiming to make it the largest pump ever done on cryptopia tuesdays pump was outstanding with a goal of 300450 we blasted all the way through to 796 can we do this again theres only 1 way to find out 2018-10-04 19:30:26+00:00 1.0 1222664368 437 everyone cryptofamily pump announcement next pump friday 5 october 1930 gmt 2230 gmt+3 moscow 5 oct 2130 gmt+2 rome 5 oct 2030 gmt+1 london 5 oct 1530 est new york 5 oct 0530 aest sydney 6 oct 0100 ist delhi 6 oct 0430 jst tokyo 6 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time lets do this new pump epic as the today one 2018-10-02 20:46:09+00:00 1.0 1222664368 435 ivy cryptopia pump results start price 294 sats peal price 2400 sats gain 794 that was an amazing job and it is thanks to everyone working together to promote the coin we held it over 300 for 6 minutes and lower percents even longer we raccomanded to dont buy above 450 pay attention to that guys total volume 8 btc 2018-10-02 20:22:17+00:00 1.0 1222664368 427 10 minutes left expected gain 300450 with enough outsider volume we could easily push this coin to historic percentages and take home unbelievable gains 2018-10-02 19:20:26+00:00 1.0 1222664368 426 30 minutes left news will be supplied shortly after the coin announcement spread this news everywhere and promote in in the cryptopia chat box 2018-10-02 19:00:22+00:00 1.0 1222664368 424 2 hour left until our massive pump 2018-10-02 17:32:09+00:00 1.0 1222664368 423 remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-02 17:14:24+00:00 1.0 1222664368 422 everyone just under 24 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this this will be a historic pump pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we are aiming to make it the largest pump ever done on cryptopia forget 100 or even 200 gains think bigger our shilling could literally pump this coin to the moon the news we have prepared is outstanding and will be corroberated by 2 websites promoted heavily on social media and hyped very hard by all of you in the chat box outsiders will be drooling over this opportunity 2018-10-01 19:43:32+00:00 1.0 1222664368 421 the tomorrow pump will be huge guys we will be recording a video for youtube and socials be sure to dont miss it 2018-10-01 18:15:19+00:00 1.0 1222664368 420 everyone 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot our coin promoting will be the best its ever been this pump and all members should see their best gains there are 48 hours left to invite friends to help increase our power even more 2018-09-30 19:30:39+00:00 1.0 1222664368 418 everyone cryptofamily pump announcement next pump tuesday 2 october 1930 gmt 2230 gmt+3 moscow 4 oct 2130 gmt+2 rome 4 oct 2030 gmt+1 london 4 oct 1530 est new york 4 oct 0530 aest sydney 5 oct 0100 ist delhi 5 oct 0430 jst tokyo 5 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have plans to make this a truly historic pump that you will be proud to be a part of we will flex our muscle as a dominant force on cryptopia members can expect their largest gains ever 2018-09-28 15:11:39+00:00 1.0 1222664368 416 spr cryptopia pump results start price 1329 peak price 4516 gain 239 total 55 volume again we had many outsiders buying the peak 3+ minutes later great job promoting the coin everyone 2018-09-25 20:48:48+00:00 1.0 1222664368 413 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-25 19:00:37+00:00 1.0 1222664368 411 2 hours left until our huge pump 2018-09-25 17:30:24+00:00 1.0 1222664368 410 4 hours left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-25 15:30:51+00:00 1.0 1222664368 409 24 hours left until the pump remember buy in once you see the coin announced for tips check buyfastoncrytopia in our discord set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-09-24 19:30:52+00:00 1.0 1222664368 408 48 hours left until our huge pump 2018-09-23 19:31:13+00:00 1.0 1222664368 407 everyone cryptofamily pump announcement next pump tuesday 25 september 1930 gmt 2230 gmt+3 moscow flagru 25 sept 2130 gmt+2 rome flagit 25 sept 2030 gmt+1 london flaggb 25sept 1530 est new york flagus 26 sept 0530 aest sydney flagau 26sept 0100 ist delhi flagin 26 sept 0430 jst tokyo flagjp 26 sept exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-09-21 20:51:34+00:00 1.0 1222664368 397 1 hour left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-20 18:31:43+00:00 1.0 1222664368 395 remember buy in once you see the coin announced for tips check buyfastoncrytopia in our discord set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again 2018-09-20 15:32:25+00:00 1.0 1222664368 394 4 hours left until our pump 2018-09-20 15:30:41+00:00 1.0 1222664368 392 everyone cryptofamily pump announcement next pump thursday 20 september 1930 gmt 2230 gmt+3 moscow 20 sept 2130 gmt+2 rome 20 sept 2030 gmt+1 london 20 sept 1530 est new york 20 sept 0530 aest sydney 21 sept 0100 ist delhi 21 sept 0430 jst tokyo 21 sept exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-09-15 07:43:54+00:00 1.0 1222664368 390 great slow rising pump bcs cryptopia pump results start price 2999 peak price 11000 gain 267 total volume 3 btc 2018-09-15 07:41:40+00:00 1.0 1222664368 388 3 minutes left the next message will be the coin 2018-09-13 19:27:11+00:00 1.0 1222664368 386 everyone 30 minutes left the coin will be paired with btc after you buy be sure to have the cryptopia chatbox open so you can help promote the coin to outsiders 2018-09-13 19:00:13+00:00 1.0 1222664368 383 4 hours left until the pump remember buy in once you see the coin announced for tips check buyfastoncrytopia in our discord set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-09-13 15:29:59+00:00 1.0 1222664368 380 17 hours left until the pump we have grown a lot these past weeks this pump should be huge 2018-09-13 02:37:04+00:00 1.0 1222664368 379 everyone cryptofamily pump announcement next pump thursday 13 september 1930 gmt 2230 gmt+3 moscow 13 sept 2130 gmt+2 rome 13 sept 2030 gmt+1 london 13 sept 1530 est new york 13 sept 0530 aest sydney 14 sept 0100 ist delhi 14 sept 0430 jst tokyo 14 sept exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-09-09 15:47:11+00:00 1.0 1222664368 377 everyone cryptofamily pump announcement next pump thursday 13 september 1930 gmt 2230 gmt+3 moscow 13 sept 2130 gmt+2 rome 13 sept 2030 gmt+1 london 13 sept 1530 est new york 13 sept 0530 aest sydney 14 sept 0100 ist delhi 14 sept 0430 jst tokyo 14 sept exchange to define cryptopia or binance pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-09-05 14:10:39+00:00 1.0 1222664368 374 spr cryptopia pump results start price 1281 sats peak price 8000 sats gain 524 our volume needs to increase for next pump but this rise was spectacular great job everyone 2018-08-24 14:03:36+00:00 1.0 1222664368 370 3 minutes left the next message will be the coin news to spread will be supplied shortly after the coin is announced 2018-08-21 19:27:06+00:00 1.0 1222664368 369 10 minutes left expected gain 475550 yes 475 + be sure to have the cryptopia chatbox open so you can help promote the coin to outsiders 2018-08-21 19:20:24+00:00 1.0 1222664368 368 30 minutes left until the pump we will need to do the best shilling we can to raise this coin even higher than our stated goal max profits for everyone 2018-08-21 19:00:13+00:00 1.0 1222664368 366 2 hours left until the pump with our high goal we will need everyone to help promote the coin in the cryptopia chatbox while our tools promote off site to bring in outsiders 2018-08-21 17:30:11+00:00 1.0 1222664368 364 24 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot everyone remember this will be an extreme gain 350450 minimum 2018-08-20 19:30:35+00:00 1.0 1222664368 363 cryptofamily pump announcement next pump tuesday 21 august 1930 gmt 2230 gmt+3 moscow 21 aug 2130 gmt+2 rome 21 aug 2030 gmt+1 london 21 aug 1530 est new york 21 aug 0530 aest sydney 22 aug 0100 ist delhi 22 aug 0430 jst tokyo 22 aug exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time this will be our highest percent pump ever the goal will be somewhere between 350450 2018-08-20 00:34:40+00:00 1.0 1222664368 353 1 hour left until the pump make sure you have your account loaded with btc and are ready to help with the shill 2018-08-14 18:30:17+00:00 1.0 1222664368 351 24 hours left until our pump exchange cryptopia pairing btc we are back stonger than ever goal will be over 250 for this pump 2018-08-13 19:36:29+00:00 1.0 1222664368 350 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot with 2 weeks off for prep and growth we are poised for another amazing pump 2018-08-12 19:32:16+00:00 1.0 1222664368 349 cryptofamily pump announcement next pump tuesday 14 august 1930 gmt 2230 gmt+3 moscow flagru 14 aug 2130 gmt+2 rome flagit 14 aug 2030 gmt+1 london flaggb 14 aug 1530 est new york flagus 14 aug 0530 aest sydney flagau 15 aug 0100 ist delhi flagin 15 aug 0430 jst tokyo flagjp 15 aug exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time after 2 weeks off lets make this an amazing pump again 2018-08-12 13:41:23+00:00 1.0 1222664368 341 everyone 8 hours left for the big pump move your funds in cryptopia and have btc ready 2018-07-26 11:30:37+00:00 1.0 1222664368 340 everyone 24 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this btc is doing great right now we are prime for another amazing pump 2018-07-25 19:30:57+00:00 1.0 1222664368 339 everyone 48 hours left for the next pump into cryptopia the market conditions are perfectly for a pump and to have a huge fomo from outsiders lets pump it up 2018-07-24 19:34:10+00:00 1.0 1222664368 338 everyone cryptofamily pump announcement next pump thursday 26 july 1930 gmt 2230 gmt+3 moscow 26 july 2130 gmt+2 rome 26 july 2030 gmt+1 london 26 july 1530 est new york 26 july 0530 aest sydney 27 july 0100 ist delhi 27 july 0430 jst tokyo 27 july exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-07-20 22:07:31+00:00 1.0 1222664368 336 nice pump and shilling gze cryptopia pump results start price 430 sats peak price 1350 sats gain 214 this image close to peak but a bit off as the price kept rising after 2018-07-19 20:24:56+00:00 1.0 1222664368 333 everyone 5 minutes left goal 200400 once we break 200 the price will move quickly towards 350+ with very little resistance 2018-07-19 19:25:01+00:00 1.0 1222664368 332 everyone 10 minutes left in some seconds i will put some info and goal 2018-07-19 19:20:05+00:00 1.0 1222664368 327 everyone 4 hours left for our pump in cryptopia be ready 2018-07-19 15:30:52+00:00 1.0 1222664368 326 everyone 8 hours left for the pump move your btc in cryptopia and be ready the coin will be released as a picture in discord and telegram at the same time today its a really good day for having a pump be sure to dont miss it it will be something huge 2018-07-19 11:37:13+00:00 1.0 1222664368 325 24 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot btc and all markets are doing great right now we are prime for another amazing pump 2018-07-18 19:31:37+00:00 1.0 1222664368 324 everyone cryptofamily pump announcement next pump thursday 19 july 1930 gmt 2230 gmt+3 moscow 19 july 2130 gmt+2 rome 19 july 2030 gmt+1 london 19 july 1530 est new york 19 july 0530 aest sydney 20 july 0100 ist delhi 20 july 0430 jst tokyo 20 july exchange cryptopia pairing btc this pump might be our best you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time 2018-07-17 09:04:06+00:00 1.0 1222664368 309 8 hours left for the big pump move your btc in cryptopia and be ready the coin to buy will be told here and in discord with a picture for have an example of the picture scroll up this chat everytime the picture will be different 2018-07-12 11:30:01+00:00 1.0 1222664368 308 everyone 23 hours left until our massive pump exchange cryptopia pairing btc huge pump again you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot our 1 shill tool is working at full force again and our news combined with the timing of the bwc event is expected to push our outsider volume to a new all time high 2018-07-11 20:32:43+00:00 1.0 1222664368 306 everyone cryptofamily pump announcement next pump thursday 12 july 1930 gmt 2230 gmt+3 moscow 12 july 2130 gmt+2 rome 12 july 2030 gmt+1 london 12 july 1530 est new york 12 july 0530 aest sydney 13 july 0100 ist delhi 13 july 0430 jst tokyo 13 july exchange cryptopia pairing btc this pump might be our best you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time 2018-07-07 07:48:34+00:00 1.0 1222664368 282 3 hours left until the pump make sure you have btc loaded in your cryptopia account this will be a huge pump with great availability for everyone to get in at a good price chartwithupwardstrend once we shill this coin as hard as we usually do everyone should profit greatly rocket if you are going to use the web redirect to view the coin make sure you are previously logged in to cryptopia with btc available we will have another practice run of this method about 1 hour before the pump to help familiarize members with it the coin will still be announced in an image here as well this new web feature is only to give more options as everyone has thier own style and may prefer different things 2018-06-21 16:30:32+00:00 1.0 1222664368 280 under 22 hours left until our pump 2018-06-20 21:51:34+00:00 1.0 1222664368 279 cryptofamily pump announcement next pump thursday 21 june 1930 gmt 2230 gmt+3 moscow flagru 21 june 2130 gmt+2 rome flagit 21 june 2030 gmt+1 london flaggb 21 june 1530 est new york flagus 21 june 0530 aest sydney flagau 22 june 0100 ist delhi flagin 22 june 0430 jst tokyo flagjp 22 june exchange cryptopia pairing btc chartwithupwardstrend huge pump as always chartwithupwardstrend moneybag you will not want to miss this moneybag pump will be unranked free for all all pumpers will receive coin at the same time we are doing our best to make sure every single member can profit greatly therefore the walls will be larger and price rise more slowly this pump but our expected gain will still be in our preferred range 2018-06-19 19:45:48+00:00 1.0 1222664368 267 everyone 2 hours left for the big pump move your funds in cryptopia 2018-06-18 17:30:01+00:00 1.0 1222664368 264 everyone cryptofamily pump announcement next pump monday 18 june 1930 gmt 2230 gmt+3 moscow 18 june 2130 gmt+2 rome 18 june 2030 gmt+1 london 18 june 1530 est new york 18 june 0530 aest sydney 19 june 0100 ist delhi 19 june 0430 jst tokyo 19 june exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time we are working for a binance pump soon 2018-06-14 19:41:33+00:00 1.0 1222664368 262 we outpreformed our goal again skin cryptopia pump results start price 195 sats peak price 750 sats gain 284 goal was only 230270 this screenshot is from slightly after the peak total volume 7 btc 2018-06-11 20:00:08+00:00 1.0 1222664368 260 5 minutes left expected gain 230270 2018-06-11 19:25:03+00:00 1.0 1222664368 253 everyone 6 hours left until our massive pump exchange cryptopia pairing btc free for all unranked pump all member will recieve the coin at the same time there is still time to load up top off your account 2018-06-11 13:30:00+00:00 1.0 1222664368 252 everyone 14 hours left until our massive pump exchange cryptopia be sure to have funds ready pairing btc 2018-06-11 05:31:36+00:00 1.0 1222664368 250 everyone 48 hours left until our massive pump exchange cryptopia be sure to have funds ready pairing btc 2018-06-09 19:30:26+00:00 1.0 1222664368 249 everyone cryptofamily pump announcement next pump monday 11 june 1930 gmt 2230 gmt+3 moscow 11 june 2130 gmt+2 rome 11 june 2030 gmt+1 london 11 june 1530 est new york 11 june 0530 aest sydney 12 june 0100 ist delhi 12 june 0430 jst tokyo 12 june exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time after our short break to grow and increase our numbers we expect a huge turnout and great success 2018-06-09 08:01:52+00:00 1.0 1222664368 242 our best percent volume pump hac cryptopia pump results start price 138 sats peak price 600 sats gain 334 we all did amazingly and got it up to over 300 after 725btc buy volume total volume 12 btc 2018-06-07 20:17:56+00:00 1.0 1222664368 228 3 minutes the next message will be the coin 2018-06-07 19:27:12+00:00 1.0 1222664368 226 everyone 10 minutes left be ready to moon 2018-06-07 19:20:02+00:00 1.0 1222664368 224 everyone 30 minutes left i will post in 1 minute the new pump strategy be sure to follow it 2018-06-07 19:00:00+00:00 1.0 1222664368 220 everyone 24 hours left until our massive pump exchange cryptopia be sure to have funds ready pairing btc 2018-06-06 19:36:58+00:00 1.0 1222664368 219 everyone 46 hours left until our next pump exchange cryptopia be sure to have funds ready pairing btc huge pump again you will not want to miss this 2018-06-05 21:31:22+00:00 1.0 1222664368 218 cryptofamily pump announcement next pump thursday 7 june 1930 gmt 2230 gmt+3 moscow 7 june 2130 gmt+2 rome 7 june 2030 gmt+1 london 7 june 1530 est new york 7 june 0530 aest sydney 8 june 0100 ist delhi 8 june 0430 jst tokyo 8 june exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time after our short break to grow and increase our numbers we expect a huge turnout and great success we are still planning a binance pump 2018-06-04 18:02:57+00:00 1.0 1222664368 203 10 minutes left this is the perfect time to pump cryptopia looks good now 2018-05-30 19:20:12+00:00 1.0 1222664368 198 everyone 10 hours left until our massive pump exchange cryptopia btc pair 2018-05-30 09:30:11+00:00 1.0 1222664368 197 only 24 hours left until our next pump exchange cryptopia be sure to have funds ready pairing btc pump will be unranked ffa we have a great stradegy for pumping in this market and our coin will be the biggest ever done by us do not miss this pump 2018-05-29 19:30:58+00:00 1.0 1222664368 195 next pump wednesday 30 may 1930 gmt 2230 gmt+3 moscow 30 may 2130 gmt+2 rome 30 may 2030 gmt+1 london 30 may 1530 est new york 30 may 0530 aest sydney 31 may 0100 ist delhi 31 may 0430 jst tokyo 31 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time 2018-05-28 18:59:45+00:00 1.0 1222664368 185 2 minutes left next message will be the coin 2018-05-27 18:28:11+00:00 1.0 1222664368 183 everyone 15 minutes left be ready to moon 2018-05-27 18:15:01+00:00 1.0 1222664368 181 everyone 1 hour left until the massive pump there is still time to transfer funds to cryptopia 2018-05-27 17:30:01+00:00 1.0 1222664368 179 everyone 4 hours untill our pump make sure your cryptopia account is ready with funds loaded 2018-05-27 14:30:01+00:00 1.0 1222664368 176 everyone cryptofamily pump announcement next pump sunday 27 may 1830 gmt 2130 gmt+3 moscow 27 may 2030 gmt+2 rome 27 may 1930 gmt+1 london 27 may 1430 est new york 27 may 0430 aest sydney 28 may 0000 ist delhi 28 may 0330 jst tokyo 28 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time great job shilling last everyone lets keep it up 2018-05-25 19:29:23+00:00 1.0 1222664368 158 everyone 1 hour left until the massive pump there is still time to transfer funds to cryptopia 2018-05-24 18:30:59+00:00 1.0 1222664368 154 everyone only 24 hours left until our next pump exchange cryptopia be sure to have funds ready pairing btc huge pump again you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot last pumps results 262 205 331 455 this time we expect a bigger volume again 2018-05-23 19:30:13+00:00 1.0 1222664368 153 cryptofamily pump announcement next pump thursday 24 may 1930 gmt 2230 gmt+3 moscow 24 may 2130 gmt+2 rome 24 may 2030 gmt+1 london 24 may 1530 est new york 24 may 0530 aest sydney 25 may 0100 ist delhi 25 may 0430 jst tokyo 25 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time remember to never put a sell order under your buy order great job shilling last everyone lets keep it up 2018-05-22 00:19:16+00:00 1.0 1222664368 148 post cryptopia pump results start price 187 peak price 677 gain 262 371 btc buy volume 2018-05-20 19:09:06+00:00 1.0 1222664368 140 everyone 10 minutes left goal is 200250 2018-05-20 18:19:58+00:00 1.0 1222664368 139 20 minutes left rdy to moon remember to shill the coin in chat its very important if everyone is doing it we can bring lot of people into 2018-05-20 18:10:09+00:00 1.0 1222664368 138 everyone 1 hour left until the massive pump there is still time to transfer funds to cryptopia be ready to shill shill shill we have a rep of being the best at bringing in outsiders and we will continue that today 2018-05-20 17:31:20+00:00 1.0 1222664368 136 everyone 4 hours untill our pump make sure your cryptopia account is ready with funds loaded this one will be huge 2018-05-20 14:30:19+00:00 1.0 1222664368 134 everyone 12 hours left until our massive pump exchange cryptopia pairing btc huge pump as always you will not want to miss this free for all unranked pump all member will recieve the coin at the same time 2018-05-20 06:32:49+00:00 1.0 1222664368 133 22 hr 15 min left until our next pump exchange cryptopia — be sure to have funds ready pairing btc huge pump again you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot last pumps results 455 164 aim for this pump 200250 our shilling is a+ lets keep being the best at what we do this time we expect a bigger volume again 2018-05-19 20:15:02+00:00 1.0 1222664368 131 everyone cryptofamily collab pump announcement next pump sunday 20 may 1830 gmt 2130 gmt+3 moscow flagru 20 may 2030 gmt+2 rome flagit 20 may 1930 gmt+1 london flaggb 20 may 1430 est new york flagus 20 may 0430 aest sydney flagau 21 may 0000 ist delhi flagin 21 may 0330 jst tokyo flagjp 21 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time never put a sell order under your buy order last pump we shot right past our goal great job shilling last pump everyone lets keep it up 2018-05-19 08:05:27+00:00 1.0 1222664368 125 good volume again cor cryptopia pump results start price 1425 peak price 4348 gain 205 302 btc buy volume to the peak price 2018-05-17 20:08:24+00:00 1.0 1222664368 123 2 minutes next message will be the coin 2018-05-17 19:28:13+00:00 1.0 1222664368 119 everyone 30 minutes left this is going to be so huge remember to spam in cryptopia chat the news we will provide 2018-05-17 19:00:06+00:00 1.0 1222664368 118 everyone 1 hour left for the big pump be ready you still got time to send now btc to cryptopia it takes max 20 mins to transfer your btc 2018-05-17 18:30:18+00:00 1.0 1222664368 117 everyone 2 hour left for the big pump be ready you still got time to send now btc to cryptopia 2018-05-17 17:37:50+00:00 1.0 1222664368 116 everyone 4 hours and 22 minutes left until the pump move your btc into cryptopia 2018-05-17 15:08:27+00:00 1.0 1222664368 114 everyone cryptofamily pump announcement next pump thursday 17 may 1930 gmt 2230 gmt+3 moscow flagru 17 may 2130 gmt+2 rome flagit 17 may 2030 gmt+1 london flaggb 17 may 1530 est new york flagus 17 may 0530 aest sydney flagau 18 may 0100 ist delhi flagin 18 may 0430 jst tokyo flagjp 18 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time never put a sell order under your buy order put your sell order always higher than your buy order last pump we shot right past our goal great job shilling last pump everyone lets keep it up 2018-05-16 14:07:33+00:00 1.0 1222664368 109 this was our best pump yet hav cryptopia pump results start price 973 peak price 4200 max gain 1st wave 331 2nd wave 247 we had 35btc buy volume to the first peak 2018-05-15 20:19:22+00:00 1.0 1222664368 105 5 minutes left the next message will be the picture with the coin 2018-05-15 19:25:00+00:00 1.0 1222664368 102 everyone 1 hour and 50 minutes left be ready btc takes 1020 minutes to transfer in cryptopia 2018-05-15 17:43:20+00:00 1.0 1222664368 99 everyone only 24 hours left until our next pump exchange cryptopia be sure to have funds ready pairing btc huge pump again you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot last pumps results 455 262 247 with increased volume each time our shilling is a+ lets keep being the best at what we do 2018-05-14 19:30:39+00:00 1.0 1222664368 97 everyone cryptofamily pump announcement next pump tuesday 15 may 1930 gmt 2230 gmt+3 moscow 15 may 2130 gmt+2 rome 15 may 2030 gmt+1 london 15 may 1530 est new york 15 may 0530 aest sydney 16 may 0100 ist delhi 16 may 0430 jst tokyo 16 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time never put a sell order under your buy order put your sell order always higher than your buy order last pump we shot right past our goal great job shilling last pump everyone lets keep it up 2018-05-14 17:03:56+00:00 1.0 1222664368 94 wow 455 spike mage cryptopia pump results start price 1503 peak price 8338 gain 455 wow our expected gain was 200250 so we hope our members all bought under there and made great profits 2018-05-13 20:14:48+00:00 1.0 1222664368 92 5 minutes left the next message will be the coin 2018-05-13 19:25:00+00:00 1.0 1222664368 91 14 minutes left the coin will be sent as last time as picture 2018-05-13 19:16:56+00:00 1.0 1222664368 86 everyone 12 hours left until our massive pump exchange cryptopia pairing btc huge pump as always you will not want to miss this free for all unranked pump all members will recieve the coin at the same time be ready the same time tomorrow to increase our volume bring in more outsiders and set a new all time high volume 2018-05-13 07:36:24+00:00 1.0 1222664368 84 everyone only 24 hours left for our big pump exchange cryptopia be sure to have funds ready pairing btc huge pump again no prepump as always you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot last pumps results 262 247 with increased volume each time our shilling is a+ lets keep being the best at what we do 2018-05-12 19:30:49+00:00 1.0 1222664368 82 everyone cryptofamily is back with another pump next pump sunday 13 may 1930 gmt 2230 gmt+3 moscow flagru 13 may 2130 gmt+2 rome flagit 13 may 2030 gmt+1 london flaggb 13 may 1530 est new york flagus 13 may 0530 aest sydney flagau 14 may 0100 ist delhi flagin 14 may 0430 jst tokyo flagjp 14 may exchange cryptopia pairing btc huge pump as always moneybag chartwithupwardstrend you will not want to miss this chartwithupwardstrend moneybag pump will be unranked free for all all pumpers will receive coin at the same time never put a sell order under your buy order put your sell order always higher than your buy order great job shilling last pump everyone lets keep it up last pump did a nice 262 2018-05-11 22:15:24+00:00 1.0 1222664368 79 seriously this pump was awesome mci cryptopia pump results start price 414 sats peak price 1800 sats gain 335 total volume 48 btc great buy volume this time plus our news and shilling brought in plenty of outsiders there was also a second wave 2018-05-10 20:12:05+00:00 1.0 1222664368 77 3 minutes left everyone the next post will be the coin it will be a picture 2018-05-10 19:27:06+00:00 1.0 1222664368 74 everyone 1 hour left to the big pump be ready 2018-05-10 18:31:16+00:00 1.0 1222664368 71 everyone 8 hours left until our massive pump cryptopia have fixed all their laggs and orders are instant right now another great news the cryptopia chat have around 10000 active members great for shilling exchange cryptopia pairing btc huge pump as always you will not want to miss this free for all unranked pump all member will recieve the coin at the same time you will be provided news and links to spread in the cryptopia chatbox reddit and wherever else you can remember the more outsiders we bring in the higher the price goes lets do this time too a other good 200250 2018-05-10 11:32:12+00:00 1.0 1222664368 68 everyone due to recent cryptopia laggs we choose to postpone the pump tomorrow in the same time next pump thursday 10 may 1930 gmt 2230 gmt+3 moscow 10 may 2130 gmt+2 rome 10 may 2030 gmt+1 london 10 may 1530 est new york 10 may 0530 aest sydney 11 may 0100 ist delhi 11 may 0430 jst tokyo 11 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time never put a sell order under your buy order put your sell order always higher than your buy order great job shilling last pump everyone lets keep it up last pump did a nice 250 2018-05-09 18:31:59+00:00 1.0 1222664368 67 just under 4 hours left until the pump we have added antibot measures and expect everyone to profit greatly from this pump from now on the coin will be posted in a captcha style image like below coin is 2018-05-09 15:32:22+00:00 1.0 1222664368 60 cryptofamily and pumpkings are back with another pump next pump wednesday 9 may 1930 gmt 2230 gmt+3 moscow 9 may 2130 gmt+2 rome 9 may 2030 gmt+1 london 9 may 1530 est new york 9 may 0530 aest sydney 10 may 0100 ist delhi 10 may 0430 jst tokyo 10 may exchange cryptopia pairing btc huge pump as always you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time never put a sell order under your buy order put your sell order always higher than your buy order great job shilling last pump everyone lets keep it up last pump did a nice 250 2018-05-07 19:45:26+00:00 1.0 1222664368 56 great pump and great shill xid cryptopia pump results start price 1435 peak price 4990 gain 247 2018-05-06 14:34:12+00:00 1.0 1222664368 54 2 minutes left the next message will be the coin 2018-05-06 13:58:08+00:00 1.0 1222664368 52 10 minutes left we expect a 200300 rise the coin will be posted in this channel today cryptopia its not lagging 2018-05-06 13:50:14+00:00 1.0 1222664368 51 30 minutes left be ready with your btc in cryptopia 2018-05-06 13:33:03+00:00 1.0 1222664368 50 today we will post the coin name + link to cryptopia be ready 2018-05-06 13:22:26+00:00 1.0 1222664368 47 3 hours and 30 minutes left until the pump exchange cryptopia pairing btc we expect a very successful pump you will not want to miss it the market conditions are perfect for us it will be extraordinarily helpful bring in as many outsiders as possible be sure to have the cryptopia chatbox open in a second window to shill you will be provided news and links to spread in the cryptopia chatbox reddit and wherever else you can remember the more outsiders we bring in the higher the price goes 2018-05-06 10:30:20+00:00 1.0 1222664368 45 everyone only 19 hours and 35 mins left until our massive pump exchange cryptopia sign up if you havent be sure to have funds ready pairing btc huge pump again you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot market conditions and btc rise make this timing perfect for a pump remember to spam in the chat box to bring in outsiders anyway you can last pumps results 200 200 160 237 219 2018-05-05 18:25:23+00:00 1.0 1222664368 44 cryptofamily and pumpkings announce our first weekend pump next pump sunday 6 may 1400 gmt 1000 est new york flagus 6 may 1500 gmt+1 london flaggb 6 may 1600 gmt+2 rome flagit 6 may 1700 gmt+3 moscow flagru 6 may 1930 ist delhi flagin 6 may 2300 jst tokyo flagjp 6 may 0000 aest sydney flagau 7 may exchange cryptopia pairing btc huge pump no prepump again you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same time never put a sell order under your buy order put your sell order always higher than your buy order great job shilling last pump everyone lets keep it up market conditions are prime for outside volume 2018-05-04 20:54:41+00:00 1.0 1222664368 42 amazing job everyone pcoin cryptopia pump results start price 372 sats peak price 1000 sats gain 170 volume 3 btc 2018-05-03 20:46:29+00:00 1.0 1222664368 35 10 minutes left we expect a 200300 rise 2018-05-03 19:20:31+00:00 1.0 1222664368 33 1 hour left for the big pump last time we did a perfect pump with 9 waves where there were dips and a big spikes after 9 hours the coin was still up at 100 i would remind everyone that we will provide a text + website link to shill in cryptopia chat thats the most important thing everyone matters in that everyone must do that if we do so we all will be able to profit remember to shill the coin in the cryptopia chat even when you have sold to help the other members 2018-05-03 18:30:04+00:00 1.0 1222664368 31 1 hour and 48 mins left for the big pump transfer your funds now into cryptopia you cant miss it everyone will receive the coin in the same time 2018-05-03 17:42:50+00:00 1.0 1222664368 29 only 24 hours left until our massive pump exchange cryptopia sign up if you havent be sure to have funds ready pairing btc huge pump again you will not want to miss this pump will be unranked ffa all pumpers will receive coin at the same time via our bot remember to spam in the chat box to bring in outsiders anyway you can last pumps results 150 200 200 160 237 219 last pump we generated some nice waves and the coin was still at 100 after 9 hours with many dips 2018-05-02 19:30:22+00:00 1.0 1222664368 28 crypto family pumpsquad is back with a new pump next pump thursday 3 may 1930 gmt 2230 gmt+3 moscow flagru 3 may 2130 gmt+2 rome flagit 3 may 2030 gmt+1 london flaggb 3 may 1530 est new york flagus 3 may 0530 aest sydney flagau 4 may 0100 ist delhi flagin 4 may 0430 jst tokyo flagjp 4 may exchange cryptopia pairing btc huge pump no prepump again you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same there will be no advantage for anyone never put a sell order under your buy order put your sell order always higher than your buy order we are back on cryptopia where we have had amazing results 2018-05-02 16:45:51+00:00 1.0 1222664368 25 amazing job everyone edc cryptopia pump results start price 21 sats peak price 67 sats gain 219 volume 3 btc we had also 5 waves pump from outsiders 219 dip 100 dip 100 dip 114 104 dip to 66 right now this shows we brought in many outsiders great shilling remember the price was still at +114 after 47 mins 2018-05-01 20:38:37+00:00 1.0 1222664368 19 30 minutes left remember to hype the coin everywhere you can especially into the cryptopia chat 2018-05-01 19:00:00+00:00 1.0 1222664368 18 1 hour left for the big pump be sure to put your buy order at 1215x actual price to be sure it gets filled cryptopia btc pair 2018-05-01 18:32:03+00:00 1.0 1222664368 17 3 hour left for the big pump transfer your funds now into cryptopia you cant miss it 2018-05-01 16:30:27+00:00 1.0 1222664368 14 crypto family pumpsquad is back with a new pump next pump tuesday 1 may 1930 gmt 2130 gmt+2 rome 1 may 2030 gmt+1 london 1 may 1530 est new york 1 may 0530 aest sydney 2 may 2230 gmt+3 moscow 1 may 0100 ist delhi 2 may 0430 jst tokyo 2 may exchange cryptopia pairing btc huge pump no prepump again you will not want to miss this pump will be unranked free for all all pumpers will receive coin at the same there will be no advantage for anyone never put a sell order under your buy order put your sell order always higher than your buy order we are back on cryptopia where we have had amazing results last 3 pumps 200 160 230 with increased volume each time 2018-04-30 05:36:46+00:00 1.0 1222664368 6 last pump coal cryptopia pump results start price 266 sats peak price 878 sats gain 237 volume 318 btc 2018-04-26 18:26:39+00:00 1.0 1480242121 3550 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact mumpersman 2021-08-17 20:47:22+00:00 1.0 1480242121 3549 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 120 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact mumpersman 2021-08-17 20:47:22+00:00 1.0 1480242121 3378 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-28 20:09:01+00:00 1.0 1480242121 3377 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 3000 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact crypto3031 2021-07-28 20:09:01+00:00 1.0 1480242121 3374 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-28 18:03:57+00:00 1.0 1480242121 3373 big pump 25 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-28 18:03:56+00:00 1.0 1480242121 3372 big pump 4 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-28 16:21:13+00:00 1.0 1480242121 3371 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-28 14:38:20+00:00 1.0 1480242121 3370 big pump 6 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-28 14:38:19+00:00 1.0 1480242121 3368 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-28 13:40:01+00:00 1.0 1480242121 3367 big pump 7 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-28 13:40:01+00:00 1.0 1480242121 3364 big pump 9 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-27 13:28:33+00:00 1.0 1480242121 3363 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-27 10:56:40+00:00 1.0 1480242121 3362 big pump 10 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-27 10:56:39+00:00 1.0 1480242121 3361 pump schedule details of the next pump exchange binancecom international date 27 72021 time 20 pm gmt we put a coin 30 minutes before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-07-27 10:56:39+00:00 1.0 1480242121 3360 big pump 3 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-26 15:41:22+00:00 1.0 1480242121 3358 big pump 7 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-26 13:42:42+00:00 1.0 1480242121 3356 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-26 11:15:51+00:00 1.0 1480242121 3355 big pump 9 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-26 11:15:50+00:00 1.0 1480242121 3353 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-25 17:12:43+00:00 1.0 1480242121 3352 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 50 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-25 17:12:42+00:00 1.0 1480242121 3351 the coin we have picked to pump today is drep drep is looking perfect for a pump right now the target is 500 2021-07-25 17:12:42+00:00 1.0 1480242121 3350 big pump 2 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-25 15:21:41+00:00 1.0 1480242121 3348 big pump 4 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-25 13:13:59+00:00 1.0 1480242121 3347 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-25 11:10:58+00:00 1.0 1480242121 3346 big pump 6 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-25 11:10:57+00:00 1.0 1480242121 3345 pump schedule details of the next pump exchange binancecom international date 25 72021 time 17 pm gmt we put a coin 30 minutes before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-07-25 11:10:57+00:00 1.0 1480242121 3343 big pump 5 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-24 15:08:35+00:00 1.0 1480242121 3342 big pump 8 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-24 13:06:06+00:00 1.0 1480242121 3341 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-24 11:42:42+00:00 1.0 1480242121 3339 big pump 9 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-24 11:42:41+00:00 1.0 1480242121 3338 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-21 19:14:05+00:00 1.0 1480242121 3337 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 15000 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-21 19:14:05+00:00 1.0 1480242121 3336 the coin we have picked to pump today is mbonk mbonk is looking perfect for a pump right now our target is 1000+ 2021-07-21 19:14:04+00:00 1.0 1480242121 3335 big pump 3 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-21 16:06:03+00:00 1.0 1480242121 3333 big pump 5 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-21 14:36:51+00:00 1.0 1480242121 3332 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-21 12:22:41+00:00 1.0 1480242121 3330 big pump 7 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-21 12:22:41+00:00 1.0 1480242121 3329 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 5000 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-14 20:10:36+00:00 1.0 1480242121 3325 big pump 1 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-14 19:29:50+00:00 1.0 1480242121 3324 big pump 6 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-14 14:22:32+00:00 1.0 1480242121 3323 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-14 11:45:35+00:00 1.0 1480242121 3321 big pump 9 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-14 11:45:34+00:00 1.0 1480242121 3320 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-11 17:09:02+00:00 1.0 1480242121 3319 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 70 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-11 17:09:02+00:00 1.0 1480242121 3318 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:09:01+00:00 1.0 1480242121 3317 big pump 1 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-11 16:12:38+00:00 1.0 1480242121 3316 big pump 4hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-11 13:42:16+00:00 1.0 1480242121 3315 big pump 5 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-11 12:00:43+00:00 1.0 1480242121 3314 today big pump in binance will go more 200 2021-07-11 10:53:49+00:00 1.0 1480242121 3313 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-11 10:53:48+00:00 1.0 1480242121 3311 big pump 8 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-11 10:53:47+00:00 1.0 1480242121 3310 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-10 20:17:55+00:00 1.0 1480242121 3309 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 2000 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-10 20:17:55+00:00 1.0 1480242121 3307 big pump 4 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-10 16:20:23+00:00 1.0 1480242121 3306 big pump 7 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-10 14:15:29+00:00 1.0 1480242121 3304 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-10 13:34:22+00:00 1.0 1480242121 3303 big pump 8 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-10 13:34:21+00:00 1.0 1480242121 3302 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-07 20:21:25+00:00 1.0 1480242121 3301 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 3000 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-07 20:21:25+00:00 1.0 1480242121 3298 big pump 2 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-07 17:48:25+00:00 1.0 1480242121 3296 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-07 16:10:22+00:00 1.0 1480242121 3295 big pump 4 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-07 16:10:21+00:00 1.0 1480242121 3294 big pump 6 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-07 14:35:10+00:00 1.0 1480242121 3292 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-07 12:19:53+00:00 1.0 1480242121 3291 big pump 9 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-07 12:19:52+00:00 1.0 1480242121 3290 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 3000 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-06 19:15:13+00:00 1.0 1480242121 3289 the coin we have picked to pump today is star mctp is looking perfect for a pump right now our target is 1000+ 2021-07-06 19:15:12+00:00 1.0 1480242121 3288 20 minutes big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-06 18:46:33+00:00 1.0 1480242121 3287 4 hour big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-06 13:35:53+00:00 1.0 1480242121 3285 5 hour big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-06 12:08:27+00:00 1.0 1480242121 3284 3 hour big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-03 17:12:30+00:00 1.0 1480242121 3282 we put coin before pump 30 minutes in vip group and we pump coin in future so our members in vip group buy coin by 20x and coin rise 10 after our members buy it so coin go to 300 profit 2021-07-03 17:12:29+00:00 1.0 1480242121 3280 big pump 30 minutes left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-03 16:32:40+00:00 1.0 1480242121 3278 big pump 45 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-03 15:37:55+00:00 1.0 1480242121 3277 big pump 6 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-03 14:13:03+00:00 1.0 1480242121 3275 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-07-03 12:24:41+00:00 1.0 1480242121 3274 big pump 9 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-07-03 12:24:41+00:00 1.0 1480242121 3273 pump schedule details of the next pump exchange binancecom international date 372021 time 20 pm gmt we put a coin 30 minutes before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-07-03 12:24:40+00:00 1.0 1480242121 3271 4 hour big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-30 18:12:29+00:00 1.0 1480242121 3270 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-30 14:57:52+00:00 1.0 1480242121 3269 7 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-30 14:57:51+00:00 1.0 1480242121 3268 8 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-30 13:08:16+00:00 1.0 1480242121 3267 8 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-30 12:03:10+00:00 1.0 1480242121 3266 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-29 13:18:07+00:00 1.0 1480242121 3265 we put coin before pump 30 minutes in vip group and we pump coin in future so our members in vip group buy coin by 20x and coin rise 10 after our members buy it so coin go to 300 profit 2021-06-29 13:18:07+00:00 1.0 1480242121 3261 15 minutes about big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-29 12:50:01+00:00 1.0 1480242121 3260 3 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-29 10:12:48+00:00 1.0 1480242121 3259 we will do pump in future binance we willl buy coin by 10x or 20x when coin rise 25 we will get more 300 profit so in our vip group we will put coin before pump 30 minutes so sure will buy coin before pump 30 minutes and buy coin when low price and wait 30 minutes and selll coin by profit 300 when coin rise any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-29 09:14:41+00:00 1.0 1480242121 3258 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-29 09:14:40+00:00 1.0 1480242121 3257 4 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-29 09:14:40+00:00 1.0 1480242121 3256 pump schedule details of the next pump exchange binancecom international date 2962021 time 13 pm gmt we put a coin 30 minutes before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-06-29 09:14:39+00:00 1.0 1480242121 3255 3 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-26 17:13:04+00:00 1.0 1480242121 3254 5 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-26 15:09:25+00:00 1.0 1480242121 3253 7 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-26 14:04:42+00:00 1.0 1480242121 3252 75 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-26 12:25:45+00:00 1.0 1480242121 3250 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-26 11:19:00+00:00 1.0 1480242121 3249 8 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-26 11:19:00+00:00 1.0 1480242121 3248 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-25 11:56:28+00:00 1.0 1480242121 3247 9 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-25 11:56:28+00:00 1.0 1480242121 3246 pump schedule details of the next pump exchange binancecom international date 2562021 time 20 pm gmt we put a coin 30 minutes before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-06-25 11:56:27+00:00 1.0 1480242121 3243 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-23 20:18:13+00:00 1.0 1480242121 3242 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 1700 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-23 20:18:13+00:00 1.0 1480242121 3237 1 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-23 18:57:23+00:00 1.0 1480242121 3236 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-23 10:21:28+00:00 1.0 1480242121 3235 9 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-23 10:21:28+00:00 1.0 1480242121 3234 pump schedule details of the next pump exchange binancecom international date 2362021 time 20 pm gmt we put a coin 30 minutes before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-06-23 10:21:27+00:00 1.0 1480242121 3233 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-20 17:10:23+00:00 1.0 1480242121 3232 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 70 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-20 17:10:22+00:00 1.0 1480242121 3231 the coin we have picked to pump today is wabi wabi is looking perfect for a pump right now 2021-06-20 17:10:22+00:00 1.0 1480242121 3230 2 hour big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-20 15:23:33+00:00 1.0 1480242121 3229 4 big pump hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-20 13:10:03+00:00 1.0 1480242121 3227 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-20 12:04:31+00:00 1.0 1480242121 3226 big pump 5 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-20 12:04:31+00:00 1.0 1480242121 3225 big pump 6 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-20 11:20:33+00:00 1.0 1480242121 3224 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-20 11:20:32+00:00 1.0 1480242121 3223 pump schedule details of the next pump exchange binancecom international date 2062021 time 17 pm gmt we put a coin 30 minutes before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-06-20 11:20:32+00:00 1.0 1480242121 3218 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-19 20:24:03+00:00 1.0 1480242121 3215 big pump 2 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-19 18:12:48+00:00 1.0 1480242121 3214 big pump 5 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-19 15:20:45+00:00 1.0 1480242121 3212 pump schedule details of the next pump exchange binancecom international date 1962021 time 20 pm gmt we put a coin 5 hour before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-06-18 20:10:04+00:00 1.0 1480242121 3210 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-18 19:12:35+00:00 1.0 1480242121 3209 big pump 1 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-18 19:12:35+00:00 1.0 1480242121 3207 see you put the coin 4 hours before the pump we will put it now whoever wants to join the pump write to us opptraade 2021-06-18 16:31:44+00:00 1.0 1480242121 3206 big pump 4 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-18 16:31:43+00:00 1.0 1480242121 3205 big pump 6 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-18 13:52:44+00:00 1.0 1480242121 3204 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-18 12:17:15+00:00 1.0 1480242121 3203 big pump 8 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-18 12:17:14+00:00 1.0 1480242121 3202 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-18 09:19:23+00:00 1.0 1480242121 3201 big pump 11 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-06-18 09:19:22+00:00 1.0 1480242121 3200 any member who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact opptraade 2021-06-17 20:58:55+00:00 1.0 1480242121 3199 pump schedule details of the next pump exchange binancecom international date 1862021 time 20 pm gmt we put a coin 5 hour before the pump then we start buying and wait for the pump to start and start selling at a profit of 100 you can join us with it and you can also see the vip group before joining in order to see the credibility of our work contact with us if you join opptraade 2021-06-17 20:58:55+00:00 1.0 1480242121 3193 hello everyone we are currently waiting for the best and most optimal market conditions before scheduling our next big pump in order to make sure that we can execute a massive pump with our usual volume and hit our 500+ profit target for all our members we will be making the announcement once our team and the market is ready for it stay tuned pump soon 2021-06-03 23:03:23+00:00 1.0 1480242121 3169 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-14 17:43:36+00:00 1.0 1480242121 3168 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 50 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-14 17:43:36+00:00 1.0 1480242121 3165 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-14 14:15:12+00:00 1.0 1480242121 3163 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-14 13:12:21+00:00 1.0 1480242121 3162 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-14 12:27:45+00:00 1.0 1480242121 3156 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-12 17:18:38+00:00 1.0 1480242121 3155 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 50 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-12 17:18:36+00:00 1.0 1480242121 3153 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-12 15:16:44+00:00 1.0 1480242121 3152 mega pump fast pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-12 15:16:44+00:00 1.0 1480242121 3151 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-12 13:30:32+00:00 1.0 1480242121 3149 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-12 11:26:19+00:00 1.0 1480242121 3148 mega pump fast pump 6 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-12 11:26:19+00:00 1.0 1480242121 3147 dear members ⛷️ the details of the next big pump are as follows date 1252021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-12 11:26:18+00:00 1.0 1480242121 3144 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-11 16:09:33+00:00 1.0 1480242121 3142 mega pump fast pump 1 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-11 15:17:04+00:00 1.0 1480242121 3140 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-11 13:13:42+00:00 1.0 1480242121 3139 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-11 13:13:41+00:00 1.0 1480242121 3134 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-08 14:18:41+00:00 1.0 1480242121 3133 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-08 13:25:33+00:00 1.0 1480242121 3132 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-08 13:25:33+00:00 1.0 1480242121 3126 dear members ⛷️ the details of the next big pump are as follows date 852021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-06 17:21:09+00:00 1.0 1480242121 3124 mega pump fast pump 1 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-06 16:15:36+00:00 1.0 1480242121 3123 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-06 14:28:56+00:00 1.0 1480242121 3122 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-06 14:28:56+00:00 1.0 1480242121 3121 mega pump fast pump 5 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-06 12:06:54+00:00 1.0 1480242121 3120 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-06 10:52:28+00:00 1.0 1480242121 3119 mega pump fast pump 6 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-06 10:52:28+00:00 1.0 1480242121 3116 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-05 17:28:53+00:00 1.0 1480242121 3115 mega pump fast pump 24 hour left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-05 17:28:52+00:00 1.0 1480242121 3114 dear members ⛷️ the details of the next big pump are as follows date 652021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-05-05 17:28:50+00:00 1.0 1480242121 3106 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-02 18:04:18+00:00 1.0 1480242121 3105 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 50 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact maniiiiiop 2021-05-02 18:04:18+00:00 1.0 1480242121 3103 mega pump fast pump 30 minutes left for pump ‼️want to know coin before pump contact with ☎️ maniiiiiop expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-02 18:04:17+00:00 1.0 1480242121 3095 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 50 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-05-01 17:08:45+00:00 1.0 1480242121 3094 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-05-01 17:08:45+00:00 1.0 1480242121 3093 mega pump fast pump 30 minutes left for pump ‼️want to know coin before pump contact with ☎️ lorinaff expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-01 16:29:02+00:00 1.0 1480242121 3092 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-05-01 16:29:01+00:00 1.0 1480242121 3091 big pump 1 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-05-01 16:07:27+00:00 1.0 1480242121 3090 big pump 2 hour left until the biggest pump signal of all time if you want know coin before pump 30 minutes contact with ☎️ opptraade targets pump go more 300 2021-05-01 15:09:33+00:00 1.0 1480242121 3089 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ lorinaff expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-01 14:05:29+00:00 1.0 1480242121 3088 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ lorinaff expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-01 13:12:14+00:00 1.0 1480242121 3087 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-05-01 13:12:14+00:00 1.0 1480242121 3086 mega pump fast pump 5 hour left for pump ‼️want to know coin before pump contact with ☎️ lorinaff expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-01 12:06:09+00:00 1.0 1480242121 3085 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-05-01 10:52:25+00:00 1.0 1480242121 3084 mega pump fast pump 6 hour left for pump ‼️want to know coin before pump contact with ☎️ lorinaff expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-05-01 10:52:24+00:00 1.0 1480242121 3082 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-04-30 07:51:39+00:00 1.0 1480242121 3081 dear members ⛷️ the details of the next big pump are as follows date 2942021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaff 2021-04-30 07:51:39+00:00 1.0 1480242121 3080 crypto pump 15 day left for pump ‼️want to know coin before pump contact with ☎️ lorinaff expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-30 07:51:39+00:00 1.0 1480242121 3075 crypto pump 15 day left for pump ‼️want to know coin before pump contact with ☎️ lorinaf expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-27 22:55:57+00:00 1.0 1480242121 3074 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaf 2021-04-27 22:55:57+00:00 1.0 1480242121 3073 dear members ⛷️ the details of the next big pump are as follows date 2942021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact lorinaf 2021-04-27 22:55:57+00:00 1.0 1480242121 3067 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-25 17:07:50+00:00 1.0 1480242121 3066 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 100 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-25 17:07:50+00:00 1.0 1480242121 3065 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 500+ 2021-04-25 17:07:50+00:00 1.0 1480242121 3064 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-25 15:13:15+00:00 1.0 1480242121 3063 crypto pump 1 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-25 15:13:15+00:00 1.0 1480242121 3062 crypto pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-25 14:08:01+00:00 1.0 1480242121 3061 crypto pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-25 13:03:38+00:00 1.0 1480242121 3060 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-25 12:18:04+00:00 1.0 1480242121 3059 crypto pump 5 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-25 12:18:04+00:00 1.0 1480242121 3058 dear members ⛷️ the details of the next big pump are as follows date 2542021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-25 12:18:04+00:00 1.0 1480242121 3055 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 150 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-24 21:09:24+00:00 1.0 1480242121 3054 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-24 21:09:24+00:00 1.0 1480242121 3053 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-24 19:09:40+00:00 1.0 1480242121 3052 crypto pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-24 19:09:40+00:00 1.0 1480242121 3049 crypto pump 375 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-24 17:29:03+00:00 1.0 1480242121 3048 crypto pump 35 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-24 17:29:03+00:00 1.0 1480242121 3047 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact polooa 2021-04-24 17:29:03+00:00 1.0 1480242121 3046 crypto pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ polooa expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-24 17:29:03+00:00 1.0 1480242121 3045 crypto pump 5 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-24 16:07:16+00:00 1.0 1480242121 3044 crypto pump 7 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-24 14:16:37+00:00 1.0 1480242121 3043 crypto pump 8 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-24 13:04:48+00:00 1.0 1480242121 3042 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-24 13:04:48+00:00 1.0 1480242121 3041 dear members ⛷️ the details of the next big pump are as follows date 2342021 time 2100 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-24 13:04:48+00:00 1.0 1480242121 3038 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 150 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-23 16:07:17+00:00 1.0 1480242121 3037 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-23 16:07:17+00:00 1.0 1480242121 3036 crypto pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-23 14:08:32+00:00 1.0 1480242121 3035 crypto pump 3hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-23 13:11:35+00:00 1.0 1480242121 3034 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-23 13:11:35+00:00 1.0 1480242121 3030 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-21 21:08:09+00:00 1.0 1480242121 3029 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 150 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-21 21:08:09+00:00 1.0 1480242121 3025 crypto pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-21 19:06:12+00:00 1.0 1480242121 3022 crypto pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-21 18:07:25+00:00 1.0 1480242121 3021 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-21 18:07:25+00:00 1.0 1480242121 3020 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-21 15:26:32+00:00 1.0 1480242121 3019 crypto pump 6 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-21 15:26:32+00:00 1.0 1480242121 3018 dear members ⛷️ the details of the next big pump are as follows date 2142021 time 2100 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 1 hour will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-21 13:19:02+00:00 1.0 1480242121 3017 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pololinau 2021-04-21 13:19:02+00:00 1.0 1480242121 3016 crypto pump 8 hour left for pump ‼️want to know coin before pump contact with ☎️ pololinau expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-21 13:19:02+00:00 1.0 1480242121 2993 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact leaders999 2021-04-12 14:06:41+00:00 1.0 1480242121 2992 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ leaders999 expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-12 14:06:41+00:00 1.0 1480242121 2991 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ leaders999 expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-12 13:09:37+00:00 1.0 1480242121 2990 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact leaders999 2021-04-12 12:38:45+00:00 1.0 1480242121 2989 mega pump fast pump 5 hour left for pump ‼️want to know coin before pump contact with ☎️ leaders999 expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-12 12:38:45+00:00 1.0 1480242121 2988 dear members ⛷️ the details of the next big pump are as follows date 1242021 time 1700 pm gmt exchange binancecom advantage 200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact leaders999 2021-04-12 12:38:45+00:00 1.0 1480242121 2983 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-04-11 17:07:32+00:00 1.0 1480242121 2982 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 150 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-04-11 17:07:32+00:00 1.0 1480242121 2981 the coin we have picked to pump today is via via is looking perfect for a pump right now our target is 500+ 2021-04-11 17:07:32+00:00 1.0 1480242121 2980 mega pump fast pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-11 15:09:17+00:00 1.0 1480242121 2979 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-04-11 15:09:16+00:00 1.0 1480242121 2978 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-11 14:26:14+00:00 1.0 1480242121 2977 mega pump fast pump 5 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-11 12:03:16+00:00 1.0 1480242121 2976 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-04-11 10:17:18+00:00 1.0 1480242121 2975 mega pump fast pump 7 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-04-11 10:17:17+00:00 1.0 1480242121 2974 dear members ⛷️ the details of the next big pump are as follows date 1142021 time 1700 pm gmt exchange binancecom advantage 200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-04-11 10:17:17+00:00 1.0 1480242121 2941 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 250 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-28 21:54:31+00:00 1.0 1480242121 2940 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-28 21:54:30+00:00 1.0 1480242121 2939 the coin we have picked to pump today is pivx pivx is looking perfect for a pump right now our target is 1000 2021-03-28 21:54:29+00:00 1.0 1480242121 2938 mega pump fast pump 1 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-28 16:07:11+00:00 1.0 1480242121 2937 mega pump fast pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-28 15:04:03+00:00 1.0 1480242121 2935 mega pump fast pump 6 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-28 13:04:06+00:00 1.0 1480242121 2933 mega pump fast pump 7 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-28 11:04:08+00:00 1.0 1480242121 2932 dear members ⛷️ the details of the next big pump are as follows date 2832021 time 1700 pm gmt exchange binancecom advantage 200 also any person who wants to join the vip group and know coin before pump 7 hour will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-28 10:09:25+00:00 1.0 1480242121 2931 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-28 10:09:25+00:00 1.0 1480242121 2930 mega pump fast pump 8 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-28 10:09:25+00:00 1.0 1480242121 2918 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:11:54+00:00 1.0 1480242121 2917 mega pump fast pump 1 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-21 16:03:15+00:00 1.0 1480242121 2915 mega pump fast pump 3 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-21 14:07:04+00:00 1.0 1480242121 2914 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-21 13:10:39+00:00 1.0 1480242121 2913 mega pump fast pump 7 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-21 11:04:49+00:00 1.0 1480242121 2912 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-21 10:11:29+00:00 1.0 1480242121 2911 mega pump fast pump 9 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-21 10:11:29+00:00 1.0 1480242121 2910 dear members ⛷️ the details of the next big pump are as follows date 21 32021 time 1700 pm gmt exchange binancecom advantage 200 also any person who wants to join the vip group and know coin before pump 7 hour will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-21 10:11:29+00:00 1.0 1480242121 2908 mega pump fast pump 9 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-20 11:05:09+00:00 1.0 1480242121 2907 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-20 10:35:39+00:00 1.0 1480242121 2906 mega pump fast pump 10 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-20 10:35:39+00:00 1.0 1480242121 2905 dear members ⛷️ the details of the next big pump are as follows date 20 32021 time 1700 pm gmt exchange binancecom advantage 200 also any person who wants to join the vip group and know coin before pump 7 hour will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-20 10:35:39+00:00 1.0 1480242121 2901 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-18 17:15:04+00:00 1.0 1480242121 2900 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 70 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-18 17:15:04+00:00 1.0 1480242121 2899 the mountain pump signal is ctxc cortex 2021-03-18 17:05:10+00:00 1.0 1480242121 2898 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-18 16:37:56+00:00 1.0 1480242121 2897 mega pump fast pump 30 minutes left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-18 16:37:56+00:00 1.0 1480242121 2896 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-18 13:35:11+00:00 1.0 1480242121 2895 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-18 13:35:11+00:00 1.0 1480242121 2894 mega pump fast pump 6 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-18 11:14:33+00:00 1.0 1480242121 2893 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-18 10:09:20+00:00 1.0 1480242121 2892 dear members ⛷️ the details of the next big pump are as follows date 1832021 time 1700 pm gmt exchange binancecom advantage 200 also any person who wants to join the vip group and know coin before pump 7 hour will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-18 10:09:20+00:00 1.0 1480242121 2891 mega pump fast pump 8 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-18 10:09:20+00:00 1.0 1480242121 2874 mega pump fast pump 30 minutes left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-13 16:31:57+00:00 1.0 1480242121 2873 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-13 13:32:40+00:00 1.0 1480242121 2871 mega pump fast pump 8 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-13 12:11:02+00:00 1.0 1480242121 2870 mega pump fast pump 7 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-13 12:11:02+00:00 1.0 1480242121 2869 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-13 12:11:02+00:00 1.0 1480242121 2868 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-13 10:45:28+00:00 1.0 1480242121 2867 dear members ⛷️ the details of the next big pump are as follows date 1332021 time 1700 pm gmt exchange binancecom advantage 200 also any person who wants to join the vip group and know coin before pump 7 hour will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-13 10:45:28+00:00 1.0 1480242121 2866 mega pump fast pump 8 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-13 10:45:28+00:00 1.0 1480242121 2845 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-07 17:14:13+00:00 1.0 1480242121 2843 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 300 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-07 17:14:13+00:00 1.0 1480242121 2842 the coin we have picked to pump today is ppt ppt is looking perfect for a pump right now our target is 1000 2021-03-07 17:03:06+00:00 1.0 1480242121 2839 mega pump fast pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-07 14:47:21+00:00 1.0 1480242121 2838 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-07 13:10:42+00:00 1.0 1480242121 2837 mega pump fast pump 4 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-07 13:10:42+00:00 1.0 1480242121 2836 mega pump fast pump 5 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-07 12:13:43+00:00 1.0 1480242121 2835 mega pump fast pump 7 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-07 12:13:43+00:00 1.0 1480242121 2834 mega pump fast pump 7 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-07 10:06:36+00:00 1.0 1480242121 2833 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-07 09:20:12+00:00 1.0 1480242121 2832 mega pump fast pump 8 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-07 09:20:12+00:00 1.0 1480242121 2831 dear members ⛷️ the details of the next big pump are as follows date 732021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 7 hour will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-07 09:20:12+00:00 1.0 1480242121 2819 we amazing guys as we put coin in vip group befour pump 30 minutes as we put plan expect coin willl go 60 congratulations guys so happy alll get good profit also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-03 15:57:13+00:00 1.0 1480242121 2817 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-03 15:52:11+00:00 1.0 1480242121 2815 mega pump fast pump 1 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-03 15:51:54+00:00 1.0 1480242121 2814 mega pump fast pump 2 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-03 15:51:54+00:00 1.0 1480242121 2813 mega pump fast pump 45 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-03 15:51:53+00:00 1.0 1480242121 2812 mega pump fast pump 6 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-03 15:51:53+00:00 1.0 1480242121 2811 alll ready to pump who wants know coin before pump 30 minutes call pumpsmoon 2021-03-03 15:51:53+00:00 1.0 1480242121 2810 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-03 15:51:53+00:00 1.0 1480242121 2809 mega pump fast pump 10 hour left for pump ‼️want to know coin before pump contact with ☎️ pumpsmoon expect coin will go more 250 period pump we put coin in vip group befour pump 30 minutes 2021-03-03 15:51:53+00:00 1.0 1480242121 2808 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-03 15:51:53+00:00 1.0 1480242121 2807 dear members ⛷️ the details of the next big pump are as follows date 2722021 time 1700 pm gmt exchange binancecom advantage 1200 also any person who wants to join the vip group and know coin before pump 30 minutes will send me a message and will send him the group before payment until he sees our sincerity and our credibility contact pumpsmoon 2021-03-03 15:51:53+00:00 1.0 1546775540 290 i knew the token name already but i was not sure cause token owner contacted me few days ago they shared coin name at same time in vip+public also services resumed as pump is done now 2021-08-02 12:07:56+00:00 1.0 1546775540 288 message from admin binance killers are going to do a pump and dump in a hour basically a paid promotion of a project that is listed on binance but i dont support pump and dump and i dont want our members to lose money so were shutting down our forwarding bots for a hour thank you 2021-08-02 11:05:19+00:00 1.0 1368682672 48953 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-18 17:22:09+00:00 1.0 1368682672 48751 pump result glmr start price 20267 weve reached 32498 all targets achieved in just 30 hour ✅✅✅✅ huge quick profit 60 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-13 14:54:18+00:00 1.0 1368682672 48702 iris result hit 267 2nd target achieved in just 25 hour✅✅ huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2022-01-12 05:57:35+00:00 1.0 1368682672 48662 santos hit 10292 finally all targets achieved in just 2 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-11 10:29:12+00:00 1.0 1368682672 48660 pump result santos start price 7159 weve reached 9500 3rd target achieved in just 51 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-11 09:04:34+00:00 1.0 1368682672 48594 pump result phb start price 882 weve reached 1155 3rd target achieved in just 30 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 09:02:07+00:00 1.0 1368682672 48587 pump result powr start price 1160 weve reached 1797 all targets achieved in just 20 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 06:54:39+00:00 1.0 1368682672 48515 pump result iris start price 206 weve reached 348 all targets achieved in just 55 hour ✅✅✅✅ huge quick profit 68 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-07 17:39:19+00:00 1.0 1368682672 48445 alcx result hit 9616 2nd target achieved in just 8 hour✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-06 06:43:26+00:00 1.0 1368682672 48340 pump result gxs start price 4283 weve reached 5694 3rd targets achieved in just 30 minutes ✅✅✅ huge quick profit 32 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-03 10:31:02+00:00 1.0 1368682672 48278 pump result nebl start price 2634 weve reached 4058 huge quick profit 53 in just 75 hour to know next pump coin name contact apglobals for premium membership 2022-01-02 17:31:51+00:00 1.0 1368682672 48258 ardr result hit 820 3rd target achieved in just 16 minutes ✅✅✅ huge quick profit 33 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2022-01-02 15:05:47+00:00 1.0 1368682672 48142 fxs result hit 90972 3rd target achieved in just 27 hour✅✅✅ huge quick profit 48 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-31 16:42:54+00:00 1.0 1368682672 48081 pump result gxs start price 4068 weve reached 5664 all targets achieved in just 31 minutes ✅✅✅✅ huge quick profit 39 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-29 13:07:20+00:00 1.0 1368682672 48058 pump result farm start price 1999 weve reached 5800 huge quick profit 190 in just 20 hour to know next pump coin name contact apglobals for premium membership 2021-12-28 16:49:27+00:00 1.0 1368682672 48053 pump result quick start price 5420 weve reached 11562 huge quick profit 106 in just 28 minutes to know next pump coin name contact apglobals for premium membership 2021-12-28 16:20:25+00:00 1.0 1368682672 48040 pump result hard start price 1704 weve reached 2718 all targets achieved in just 19 minutes ✅✅✅✅ huge quick profit 59 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-28 06:57:23+00:00 1.0 1368682672 48006 pump result utk start price 680 weve reached 979 all targets achieved in just 28 minutes ✅✅✅✅ huge quick profit 131 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-27 17:41:43+00:00 1.0 1368682672 47954 pump result lina start price 83 weve reached 111 all targets achieved in just 6 hour ✅✅✅✅ huge quick profit 101 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-26 11:28:21+00:00 1.0 1368682672 47920 pump result pha start price 825 weve reached 1290 all targets achieved in just 20 minutes ✅✅✅✅ huge quick profit 56 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 19:07:15+00:00 1.0 1368682672 47909 pump result flux start price 3404 weve reached 5828 all targets achieved in just 23 hour ✅✅✅✅ huge quick profit 71 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 17:25:11+00:00 1.0 1368682672 47883 mdt result hit 282 3rd target achieved in just 17 hour✅✅✅ huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-25 04:41:48+00:00 1.0 1368682672 47872 pump result appc start price 73 weve reached 105 3rd targets achieved in just 1 hour ✅✅✅ huge quick profit 43 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-24 17:34:19+00:00 1.0 1368682672 47865 pump result rdn start price 435 weve reached 816 huge quick profit 87 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 17:07:32+00:00 1.0 1368682672 47860 pump result evx start price 383 weve reached 540 huge quick profit 40 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 16:56:40+00:00 1.0 1368682672 47816 om result hit 431 3rd target achieved in just 14 minutes ✅✅✅ huge quick profit 23 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-23 15:53:28+00:00 1.0 1368682672 47781 pump result coti start price 634 weve reached 948 all targets achieved in just 36 hour ✅✅✅✅ huge quick profit 148 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-23 05:46:33+00:00 1.0 1368682672 47728 pump result ren start price 1058 weve reached 1543 all targets achieved in just 45 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-22 05:16:01+00:00 1.0 1368682672 47722 pump result jamsy start price 148 weve reached 251 all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 69 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-21 19:35:29+00:00 1.0 1368682672 47677 pump result any start price 4166 weve reached 6057 all targets achieved in just 29 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-20 18:15:53+00:00 1.0 1368682672 47642 dusk result hit 1339 3rd target achieved in just 15 hour✅✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-20 08:06:30+00:00 1.0 1368682672 47630 any result hit 5511 3rd target achieved in just 21 hour✅✅✅ huge quick profit 32 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-20 07:24:17+00:00 1.0 1368682672 47617 pump result appc start price 161 weve reached 222 huge quick profit 37 in just 9 minutes to know next pump coin name contact apglobals for premium membership 2021-12-19 15:07:36+00:00 1.0 1368682672 47605 wan result hit 1818 3rd target achieved in just 11 minutes ✅✅✅ huge quick profit 1818 amazing pump calls by our team advance buy and sell targets ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-19 08:57:13+00:00 1.0 1368682672 47585 farm result hit 2700 3rd target achieved in just 2 minutes ✅✅✅ huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:45:18+00:00 1.0 1368682672 47574 fis result hit 3524 2nd target achieved in just 2 minutes ✅✅ one more huge quick profit 25 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:15:42+00:00 1.0 1368682672 47568 pump result tru start price 805 weve reached 1194 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 18:01:11+00:00 1.0 1368682672 47555 pump result cfx start price 496 weve reached 650 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 11:36:32+00:00 1.0 1368682672 47540 pump result qlc start price 75 weve reached 114 all targets achieved in just 40 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 10:07:44+00:00 1.0 1368682672 47536 pump result tct start price 70 weve reached 109 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 09:27:20+00:00 1.0 1368682672 47489 tct result hit 87 3rd target achieved in just 10 minutes ✅✅✅ huge quick profit 24 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-17 12:59:36+00:00 1.0 1368682672 47482 high result hit 8500 2nd target achieved in just 7 minutes ✅✅ huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-17 07:58:32+00:00 1.0 1368682672 47406 pump result gxs start price 2720 weve reached 4150 all targets achieved in just 25 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-16 10:44:24+00:00 1.0 1368682672 47377 ramp result hit 582 3rd target achieved in just 65 hour✅✅✅ huge quick profit 48 amazing pump calls by our team you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-15 16:49:36+00:00 1.0 1368682672 47360 pump result voxel start price 5353 weve reached 8250 all targets achieved in just 18 hour ✅✅✅✅ huge quick profit 54 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-15 09:09:25+00:00 1.0 1368682672 47349 pump result doge start price 330 weve reached 463 all targets achieved in just 185 hour ✅✅✅✅ huge quick profit 120 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-14 20:00:01+00:00 1.0 1368682672 47346 voxel result hit 6595 3rd target achieved in just 24 minutes ✅✅✅ huge quick profit 23 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-14 13:39:03+00:00 1.0 1368682672 47184 pump result flux start price 6000 weve reached 9900 all targets achieved in just 33 minutes ✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-10 08:36:27+00:00 1.0 1368682672 47119 pump result mdt start price 129 weve reached 231 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 237 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-09 05:08:44+00:00 1.0 1368682672 47106 pump result ant start price 9002 weve reached 13000 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 44 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 18:58:24+00:00 1.0 1368682672 47079 pump result xtz start price 8322 weve reached 11567 all targets achieved in just 7 hour ✅✅✅✅ huge quick profit 115 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 06:55:31+00:00 1.0 1368682672 47047 pump result dusk start price 412 weve reached 855 all targets achieved in just 225 hour ✅✅✅✅ huge quick profit 107 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-07 14:07:44+00:00 1.0 1368682672 47025 pump result elf start price 980 weve reached 1781 all targets achieved in just 4 minutes✅✅✅✅ huge quick profit 81 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-06 17:27:03+00:00 1.0 1368682672 47020 grs result hit 2179 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 33 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-06 17:22:47+00:00 1.0 1368682672 47010 porto hit 11695 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 87 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-05 17:47:50+00:00 1.0 1368682672 46984 pump result lazio start price 8618 weve reached 13000 all targets achieved in just 50 minutes✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-05 07:57:17+00:00 1.0 1368682672 46979 santos result hit 13299 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-05 04:22:21+00:00 1.0 1368682672 46919 fio result hit 799 all targets achieved in 4 days✅✅✅✅ one more huge profit 142 ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-03 19:41:13+00:00 1.0 1368682672 46910 pump result mdt start price 112 weve reached 159 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 41 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 17:18:12+00:00 1.0 1368682672 46891 pump result gto start price 121 weve reached 192 all targets achieved in just 74 minutes✅✅✅✅ huge quick profit 58 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 10:24:31+00:00 1.0 1368682672 46873 pump result nuls start price 934 weve reached 3253 huge quick profit 248 to know next pump coin name contact apglobals for premium membership 2021-12-02 17:46:50+00:00 1.0 1368682672 46856 pump result gxs start price 1171 weve reached 2790 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 138 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-02 13:16:58+00:00 1.0 1368682672 46829 brd result hit 2830 all targets achieved in nust 2 days✅✅✅✅ one more huge profit 60 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-02 06:15:52+00:00 1.0 1368682672 46806 santos result hit 64967 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 48 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-12-01 11:23:25+00:00 1.0 1368682672 46802 pump result req start price 822 weve reached 1340 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-01 11:19:12+00:00 1.0 1368682672 46762 pump result agix start price 417 weve reached 578 huge quick profit 38 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-11-30 18:42:43+00:00 1.0 1368682672 46666 pump result mda start price 1144 weve reached 1999 all targets achieved in just 8 minutes✅✅✅✅ huge quick profit 74 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 17:05:17+00:00 1.0 1368682672 46659 pump result evx start price 1180 weve reached 1931 all targets achieved in just 43 minutes✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 16:45:51+00:00 1.0 1368682672 46657 evx result hit 1544 3rd target achieved in just 9 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-28 15:09:21+00:00 1.0 1368682672 46627 pump result pnt start price 2315 weve reached 3471 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 07:41:42+00:00 1.0 1368682672 46529 pump result nu start price 1592 weve reached 2460 huge quick profit 54 to know next pump coin name contact apglobals for premium membership 2021-11-27 06:38:07+00:00 1.0 1368682672 46496 pump result pyr start price 5631 weve reached 9298 all targets achieved in just 75 hour✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:32:38+00:00 1.0 1368682672 46494 pump result gtc start price 1956 weve reached 2784 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:07:28+00:00 1.0 1368682672 46475 pump result storj start price 3836 weve reached 6116 huge quick profit 59 in just 12 hour to know next pump coin name contact apglobals for premium membership 2021-11-26 17:25:21+00:00 1.0 1368682672 46400 pump result aion start price 315 weve reached 623 huge quick profit 97 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-11-25 17:42:31+00:00 1.0 1368682672 46372 amb result hit 113 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump coin name 2021-11-25 10:50:22+00:00 1.0 1368682672 46357 pump result wabi start price 434 weve reached 1056 huge quick profit 143 in just 41 minutes to know next pump coin name contact apglobals for premium membership 2021-11-25 08:54:46+00:00 1.0 1368682672 46351 pump result brd start price 353 weve reached 2931 all targets achieved in just 3 minutes✅✅✅✅ and pumped hard huge quick profit 730 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-25 04:29:57+00:00 1.0 1368682672 46339 pump result ramp start price 591 weve reached 844 all targets achieved in just 49 minutes✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 17:49:56+00:00 1.0 1368682672 46301 pump result drep start price 1886 weve reached 2799 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 06:33:39+00:00 1.0 1368682672 46246 pump result mda start price 1610 weve reached 2211 3rd target achieved in just 2 hour ✅✅✅ huge quick profit 37 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-23 15:03:43+00:00 1.0 1368682672 46241 next pump signal just shared in premium channel 2021-11-23 15:00:06+00:00 1.0 1368682672 46227 pump result iris start price 212 weve reached 373 huge quick profit 75 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-11-22 18:45:48+00:00 1.0 1368682672 46165 pump result dego start price 1583 weve reached 2373 all target achieved in just 22 hour ✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 14:44:33+00:00 1.0 1368682672 46153 pump result nav start price 707 weve reached 1059 all target achieved in just 15 hour ✅✅✅✅ huge quick profit 49 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 10:23:46+00:00 1.0 1368682672 46110 pump result tct start price 60 weve reached 108 all target achieved in just 17 hour ✅✅✅✅ huge quick profit 80 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:52:51+00:00 1.0 1368682672 46106 pump result powr start price 1084 weve reached 1592 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:50:37+00:00 1.0 1368682672 46090 pump result gto start price 96 weve reached 156 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 62 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:38:27+00:00 1.0 1368682672 46083 pump result drep start price 1495 weve reached 3152 huge quick profit 110 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-11-20 18:24:47+00:00 1.0 1368682672 46078 pump result mith start price 88 weve reached 307 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 248 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:03:19+00:00 1.0 1368682672 46050 poly result hit 1500 3rd target achieved in just 5 hour✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-20 13:56:59+00:00 1.0 1368682672 46031 pump result mith start price 88 weve reached 153 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 73 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 08:16:02+00:00 1.0 1368682672 45991 mith result hit 114 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 17:25:12+00:00 1.0 1368682672 45978 lazio result hit 15493 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 14:25:04+00:00 1.0 1368682672 45973 dar result hit 5375 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:48:54+00:00 1.0 1368682672 45963 idex result hit 860 3rd target achieved in just 54 minutes ✅✅✅ one more huge quick profit 33 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:31:42+00:00 1.0 1368682672 45957 pump result idex start price 455 weve reached 669 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-19 06:46:56+00:00 1.0 1368682672 45939 pump result storj start price 2794 weve reached 4089 all target achieved in just 34 hour ✅✅✅✅ huge quick profit 138 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 17:55:24+00:00 1.0 1368682672 45900 aergo result hit 856 3rd target achieved in just 39 minutes ✅✅✅ one more huge quick profit 37 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-18 05:47:25+00:00 1.0 1368682672 45886 pump result rose start price 344 weve reached 512 all target achieved in just 14 hour ✅✅✅✅ huge quick profit 146 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 05:10:56+00:00 1.0 1368682672 45836 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-17 03:01:29+00:00 1.0 1368682672 45832 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-17 03:00:39+00:00 1.0 1368682672 45794 pump result porto start price 17066 weve reached 28188 all target achieved in just 8 minutes✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 12:24:26+00:00 1.0 1368682672 45778 pump result powr start price 606 weve reached 1244 all target achieved in just 15 minutes✅✅✅✅ huge quick profit 105 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 03:58:24+00:00 1.0 1368682672 45699 pump result nas start price 87 weve reached 142 all target achieved in just 1 minute✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-14 15:08:52+00:00 1.0 1368682672 45547 adx result hit 1485 2nd target achieved in just 8 minutes ✅✅ one more huge quick profit 22 amazing calls by our team so much quick profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-11 14:39:45+00:00 1.0 1368682672 45519 pump result ens start price 9137 weve reached 18000 all target achieved in just 185 hour✅✅✅✅ huge quick profit 97 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-11 06:13:24+00:00 1.0 1368682672 45416 pump result lpt start price 5769 weve reached 15220 huge quick profit 163 to know next pump coin name contact apglobals for premium membership 2021-11-09 18:25:03+00:00 1.0 1368682672 45367 pump result uma start price 2225 weve reached 3519 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-11-08 06:44:53+00:00 1.0 1368682672 45313 adx result hit 1796 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-07 06:40:25+00:00 1.0 1368682672 45292 pump result rgt start price 7585 weve reached 11482 all target achieved in just 30 minutes✅✅✅✅ huge quick profit 51 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-06 06:46:23+00:00 1.0 1368682672 45290 you missed one more profit here is one more profit for premium members in just 30 minutes pump result 2021-11-06 06:46:23+00:00 1.0 1368682672 45260 pump result sys start price 540 weve reached 897 all target achieved in just 18 hour ✅✅✅✅ huge quick profit 66 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-05 11:54:56+00:00 1.0 1368682672 45215 fis result hit 4000 3rd target achieved in just 17 minutes ✅✅✅ one more huge quick profit 35 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-04 07:45:35+00:00 1.0 1368682672 45188 pump result badger start price 5302 weve reached 9063 all target achieved in just 13 minutes✅✅✅✅ huge quick profit 70 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-03 20:07:59+00:00 1.0 1368682672 45127 wrx result hit 3319 3rd target achieved in just 59 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-02 19:05:55+00:00 1.0 1368682672 45107 pump result oxt start price 820 weve reached 1222 one more huge profit 49 to know next pump coin name contact apglobals for premium membership 2021-11-02 16:08:28+00:00 1.0 1368682672 45028 pump result ast start price 403 weve reached 634 all target achieved in 2 days✅✅✅✅ one more huge profit 57 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-10-31 14:56:48+00:00 1.0 1368682672 44946 pump result mana start price 2237 weve reached 3713 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 199 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-30 13:43:42+00:00 1.0 1368682672 44935 pump result vite start price 189 weve reached 257 3rd target achieved in just 15 minutes ✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-10-30 12:21:26+00:00 1.0 1368682672 44928 pump result dlt start price 103 weve reached 197 huge quick profit 91 within 75 hour to know next pump coin name contact apglobals for premium membership 2021-10-30 11:20:55+00:00 1.0 1368682672 44869 pump result mana start price 1423 weve reached 1978 huge quick profit 39 in just 95 hour to know next pump coin name contact apglobals for premium membership 2021-10-29 08:41:03+00:00 1.0 1368682672 44854 pump result gto start price 78 weve reached 108 all targets achieved in just 23 minutes ✅✅✅✅ huge quick profit 115 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-29 04:47:27+00:00 1.0 1368682672 44800 go hit 93 now 3rd target achieved in just 215 hour✅✅✅ huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-27 08:11:26+00:00 1.0 1368682672 44796 pump result 1inch start price 6787 weve reached 10323 1inch binance top gainer all targets achieved in just 12 minutes ✅✅✅✅ huge quick profit 156 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-27 08:01:04+00:00 1.0 1368682672 44690 pump result evx start price 1110 weve reached 2094 huge quick profit 88 to know next pump coin name contact apglobals for premium membership 2021-10-24 17:15:51+00:00 1.0 1368682672 44656 pump result go start price 71 weve reached 98 huge quick profit 38 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-10-23 10:58:14+00:00 1.0 1368682672 44568 pump result auction start price 6090 weve reached 9710 all targets achieved in just 10 hour ✅✅✅✅ huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2021-10-21 16:36:58+00:00 1.0 1368682672 44561 pump result firo start price 1352 weve reached 1885 3rd targets achieved in just 10 minutes ✅✅✅ huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-21 09:09:11+00:00 1.0 1368682672 44538 dnt result hit 376 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 81 using 3x leverage amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-21 05:09:53+00:00 1.0 1368682672 44438 pump result req start price 408 weve reached 586 all targets achieved in just 9 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-10-17 13:02:24+00:00 1.0 1368682672 44433 pump result sys start price 518 weve reached 820 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-10-17 10:57:37+00:00 1.0 1368682672 44368 pump result nu start price 519 weve reached 4649 huge quick profit 792 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 13:01:19+00:00 1.0 1368682672 44334 pump result wabi start price 572 weve reached 800 huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-14 15:14:33+00:00 1.0 1368682672 44086 stx result hit 3289 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 56 using 3x leverage amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-09 14:21:39+00:00 1.0 1368682672 44074 pump result klay start price 3197 weve reached 7899 huge quick profit 146 in just 4 minutes to know next pump coin name contact apglobals for premium membership 2021-10-09 14:03:01+00:00 1.0 1368682672 44069 pump result data start price 249 weve reached 406 huge quick profit 63 to know next pump coin name contact apglobals for premium membership 2021-10-09 13:46:16+00:00 1.0 1368682672 43990 juv hit 3790 now 3rd target achieved in just 19 hour✅✅✅ huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-10-07 18:31:23+00:00 1.0 1368682672 43923 ong result hit 3580 3rd target achieved in just 27 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-07 05:31:34+00:00 1.0 1368682672 43866 pump result hive start price 1425 weve reached 3056 huge quick profit 114 in just 42 minutes to know next pump coin name contact apglobals for premium membership 2021-10-06 06:10:52+00:00 1.0 1368682672 43856 ardr result hit 878 3rd target achieved in just 125 hour✅✅✅ one more huge quick profit 36 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-06 05:34:35+00:00 1.0 1368682672 43817 stpt to the moon hit 235 huge quick profit 94 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-05 11:54:25+00:00 1.0 1368682672 43774 pump result ez start price 13499 weve reached 21000 huge quick profit 56 in just 5 hour to know next pump coin name contact apglobals for premium membership 2021-10-03 17:05:31+00:00 1.0 1368682672 43620 pump result stpt start price 117 weve reached 188 huge quick profit 60 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 14:31:56+00:00 1.0 1368682672 43610 pump result poly start price 1333 weve reached 1815 huge quick profit 36 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 09:54:22+00:00 1.0 1368682672 43496 pump result adx start price 1153 weve reached 1688 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-09-26 19:53:18+00:00 1.0 1368682672 43476 pump result lto start price 549 weve reached 850 huge quick profit 164 using 3x leverage in just 34 hour to know next pump coin name contact apglobals for premium membership 2021-09-26 18:19:51+00:00 1.0 1368682672 43436 pump result nuls start price 1071 weve reached 1600 huge quick profit 49 in just 11 hour to know next pump coin name contact apglobals for premium membership 2021-09-25 18:06:13+00:00 1.0 1368682672 43414 pump result celr start price 293 weve reached 447 all targets achieved in just 115 hour ✅✅✅ huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-09-25 05:15:48+00:00 1.0 1368682672 43235 pump result nmr start price 967 weve reached 1377 3rd targets achieved in just 15 hour ✅✅✅ huge quick profit 127 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-09-22 05:01:46+00:00 1.0 1368682672 43202 acm result hit 2768 3rd target achieved in just 8 minutes ✅✅✅ one more huge quick profit 27 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-21 09:07:31+00:00 1.0 1368682672 43134 pump result oax start price 407 weve reached 631 all targets achieved in just 21 hour ✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-19 17:44:54+00:00 1.0 1368682672 43067 om result hit 882 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-09-18 19:45:56+00:00 1.0 1368682672 43057 pump result cfx start price 675 weve reached 1064 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-09-18 17:27:06+00:00 1.0 1368682672 43040 nmr result hit 1298 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 76 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-18 06:19:11+00:00 1.0 1368682672 42896 front result hit 4300 3rd target achieved in just 26 hour✅✅✅ one more huge quick profit 40 amazing pump calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 16:54:07+00:00 1.0 1368682672 42891 quick result hit 13000 3rd target achieved in just 4 hour✅✅✅ one more huge quick profit 32 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 11:29:32+00:00 1.0 1368682672 42790 pump result poly start price 1997 weve reached 1378 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-09-13 06:55:31+00:00 1.0 1368682672 42643 pond result hit 273 all targets achieved in 3 days✅✅✅✅ one more huge profit 50 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-10 15:24:43+00:00 1.0 1368682672 42588 nav result hit 1282 3rd target achieved in 2 days✅✅✅ one more huge profit 37 amazing profits for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 17:42:45+00:00 1.0 1368682672 42568 front result hit 4770 3rd target achieved in just 45 hour✅✅✅ one more huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 16:41:38+00:00 1.0 1368682672 42492 elf result hit 2138 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-08 04:31:17+00:00 1.0 1368682672 42441 pump result rose start price 501 weve reached 717 all targets achieved in just 55 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-09-07 10:33:11+00:00 1.0 1368682672 42379 pump result cdt start price 88 weve reached 137 all targets achieved in just 5 hour✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-06 09:48:01+00:00 1.0 1368682672 42347 rose hit 417 finally all targets achieved in just 17 hour✅✅✅✅ huge quick profit 148 using 3x leverage amazing pump calls by our team the longer you wait more you lose profit still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-06 04:57:05+00:00 1.0 1368682672 42338 pump result vib start price 155 weve reached 286 huge quick profit 84 to know next pump coin name contact apglobals for premium membership 2021-09-05 17:24:02+00:00 1.0 1368682672 42285 idex result hit 195 3rd target achieved in just 15 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-05 08:43:32+00:00 1.0 1368682672 42249 ctxc result hit 725 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 32 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-05 04:17:59+00:00 1.0 1368682672 42176 om result hit 649 3rd target achieved in just 12 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-03 06:46:19+00:00 1.0 1368682672 42139 sys result hit 661 3rd target achieved in just 44 minutes ✅✅✅ one more huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-02 14:03:51+00:00 1.0 1368682672 42079 elf result hit 1260 3rd target achieved in just 12 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-01 12:24:36+00:00 1.0 1368682672 42016 pump result ar start price 8674 weve reached 14000 huge quick profit 60 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:13:32+00:00 1.0 1368682672 42011 pump result rose start price 238 weve reached 308 huge quick profit 30 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:07:02+00:00 1.0 1368682672 41973 pump result nas start price 108 weve reached 144 3rd targets achieved in just 17 minutes ✅✅✅ huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2021-08-30 16:23:09+00:00 1.0 1368682672 41966 celo hit 22800 finally all targets achieved in 3 days✅✅✅✅ one more huge profit 192 amazing pump calls by our team the longer you wait more you lose profit hope you understood ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-30 14:49:06+00:00 1.0 1368682672 41732 aergo result hit 750 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 37 so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-25 06:52:27+00:00 1.0 1368682672 41674 firo result hit 1968 3rd target achieved in just 25 hour✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-23 14:55:00+00:00 1.0 1368682672 41652 pump result fxs start price 853 weve reached 1240 huge quick profit 45 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-08-23 06:59:35+00:00 1.0 1368682672 41647 pump result lrc start price 768 weve reached 1257 huge quick profit 63 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-23 06:53:09+00:00 1.0 1368682672 41635 nano result hit 1571 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 19 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-22 14:06:22+00:00 1.0 1368682672 41249 twt hit 1658 finally all targets achieved in just 115 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-15 10:02:01+00:00 1.0 1368682672 41115 clv result hit 4035 3rd target achieved in just 41 hour✅✅✅ one more huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-12 07:09:46+00:00 1.0 1368682672 41054 pump result req start price 175 weve reached 300 huge quick profit 71 in just 16 hour to know next pump coin name contact apglobals for premium membership 2021-08-11 03:38:06+00:00 1.0 1368682672 41038 pump result iotx start price 71 weve reached 122 huge quick profit 71 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-08-10 16:38:09+00:00 1.0 1368682672 40982 pump result quick start price 947 weve reached 1496 all targets achieved in just 33 hour ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-08-09 17:24:40+00:00 1.0 1368682672 40974 og result hit 1778 3rd target achieved in just 95 hour✅✅✅ one more huge quick profit 43 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-09 15:11:39+00:00 1.0 1368682672 40951 pump result atm start price 3658 weve reached 4956 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-08-09 07:12:29+00:00 1.0 1368682672 40900 pump result torn start price 10112 weve reached 14700 all targets achieved in just 7 minutes ✅✅✅✅ huge quick profit 45 to know next pump coin name contact apglobals for premium membership 2021-08-07 17:26:49+00:00 1.0 1368682672 40857 psg result hit 9463 all targets achieved in just 27 hour✅✅✅✅ one more huge quick profit 63 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-08-07 03:29:21+00:00 1.0 1368682672 40825 pump result gxs start price 1351 weve reached 2129 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-08-06 12:55:09+00:00 1.0 1368682672 40817 pump result om start price 449 weve reached 598 huge quick profit 33 in just 39 minutes to know next pump coin name contact apglobals for premium membership 2021-08-06 09:35:00+00:00 1.0 1368682672 40792 pump result om start price 368 weve reached 647 huge quick profit 75 in just 8 hour to know next pump coin name contact apglobals for premium membership 2021-08-05 15:15:08+00:00 1.0 1368682672 40773 tru pumped hard hit 3060 huge quick profit 595 from our entry price of 440 to know next pump coin name ☎️ contact apglobals 2021-08-05 09:29:03+00:00 1.0 1368682672 40756 pump result tru start price 440 weve reached 1237 huge quick profit 181 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-05 06:01:06+00:00 1.0 1368682672 40741 pump result tvk start price 563 weve reached 723 huge quick profit 28 in just 55 minutes to know next pump coin name contact apglobals for premium membership 2021-08-05 04:38:45+00:00 1.0 1368682672 40655 nmr pump result start price 1009 price hit 1450 all targets achieved in just 33 minutes ✅✅✅✅ one more huge quick profit 44 amazing pump call for premium members advance buy and sell targets given to them to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-03 05:09:46+00:00 1.0 1368682672 40609 rep result hit 7382 2nd target achieved in just 12 minutes ✅✅ one more huge quick profit 51 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-02 03:47:14+00:00 1.0 1368682672 40549 ardr result hit 870 all targets achieved in just 32 hour✅✅✅✅ one more huge quick profit 97 amazing pump calls by our team told you you could recover fees in just 24 hour but i think you hate money to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-31 04:54:40+00:00 1.0 1368682672 40460 qnt result hit 3700 2nd target achieved in just 2 hour✅✅ one more huge quick profit 28 amazing pump calls by our team to know next pump signal ☎️ contact apglobals 2021-07-29 12:06:18+00:00 1.0 1368682672 40403 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-28 18:38:34+00:00 1.0 1368682672 40359 pump result lto start price 525 weve reached 698 huge quick profit 32 in just 15 minutes to know next pump coin name contact apglobals for premium membership 2021-07-27 10:00:33+00:00 1.0 1368682672 40311 gas result hit 2675 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 29 amazing pump call given to premium members huge quick profit to know next pump coin name ☎️ contact apglobals 2021-07-26 14:24:20+00:00 1.0 1368682672 40263 pump result drep start price 1901 weve reached 2859 huge quick profit 50 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-07-25 17:42:31+00:00 1.0 1368682672 40253 rdn hit 1380 finally all targets achieved in just 7 hour✅✅✅✅ huge quick profit 58 amazing calls by our team amazing pump call ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-25 17:02:31+00:00 1.0 1368682672 40198 rep pump result start price 5237 price hit 8461 huge quick profit 61 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-24 08:44:23+00:00 1.0 1368682672 40162 c98 result hit 3449 3rd target achieved in just 11 hour ✅✅✅ one more huge quick profit 33 amazing calls by our team told you you could recover fees in just 24 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-24 04:13:05+00:00 1.0 1368682672 40132 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-23 11:37:10+00:00 1.0 1368682672 39951 pump result klay start price 3099 weve reached 4199 huge quick profit 35 in just 6 minutes to know next pump coin name contact apglobals for premium membership 2021-07-20 07:03:57+00:00 1.0 1368682672 39924 pump result dash start price 3732 weve reached 5928 huge quick profit 58 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-07-19 16:27:43+00:00 1.0 1368682672 39734 fis result start price 2441 price hit 3285 huge quick profit 34 in just 19 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-15 16:02:26+00:00 1.0 1368682672 39503 pump result poa start price 129 weve reached 210 huge quick profit 62 in just 9 hour to know next pump coin name contact apglobals for premium membership 2021-07-11 17:04:58+00:00 1.0 1368682672 39464 pump result beam start price 1394 weve reached 1952 huge quick profit 40 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-07-11 06:43:25+00:00 1.0 1368682672 39432 auction hit 8671 now 2nd target achieved in just 27 minutes ✅✅ huge quick profit 20 ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-10 17:27:57+00:00 1.0 1368682672 39406 pump result auction start price 4339 weve reached 7177 huge quick profit 65 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-07-09 16:22:04+00:00 1.0 1368682672 39373 forth result start price 5059 price hit 7271 one more huge quick profit 43 in just 29 hour the longer you wait more you lose profit what are you waiting for join premium and grab next pump signal ☎️ contact apglobals 2021-07-08 16:23:22+00:00 1.0 1368682672 39367 oxt result start price 848 price hit 1201 huge quick profit 41 in just 7 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-08 15:01:36+00:00 1.0 1368682672 39335 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-07 15:31:05+00:00 1.0 1368682672 39236 mln result 3rd target achieved in just 29 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members join premium and grab next pump signal ☎️ contact apglobals for premium membership 2021-07-05 08:09:06+00:00 1.0 1368682672 39219 grs result start price 1855 price hit 2486 one more huge quick profit 34 in just 22 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-05 05:44:10+00:00 1.0 1368682672 39205 glm result start price 887 price hit 1174 one more huge quick profit 32 in just 40 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-04 01:49:47+00:00 1.0 1368682672 39170 qkc result start price 49 price hit 64 one more huge quick profit 30 in just 1 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-02 03:30:47+00:00 1.0 1368682672 39030 snt result 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 22 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-29 06:19:52+00:00 1.0 1368682672 39013 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-28 19:45:07+00:00 1.0 1368682672 39009 pump result ppt start price 4108 weve reached 6685 huge quick profit 62 in just 28 hour to know next pump coin name contact apglobals for premium membership 2021-06-28 19:40:07+00:00 1.0 1368682672 38970 icp result 3rd target achieved in just 135 hour✅✅✅ one more huge quick profit 30 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-28 04:40:54+00:00 1.0 1368682672 38955 ctsi breakout result start price 1117 price hit 1770 huge quick profit 58 in just 20 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-06-27 19:06:54+00:00 1.0 1368682672 38932 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-27 10:54:32+00:00 1.0 1368682672 38913 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-26 13:24:46+00:00 1.0 1368682672 38909 pump result cfx start price 671 weve reached 1000 huge quick profit 49 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-06-26 12:45:23+00:00 1.0 1368682672 38903 pump result dnt start price 385 weve reached 480 huge quick profit 24 in just 22 minutes to know next pump coin name contact apglobals for premium membership 2021-06-26 12:38:40+00:00 1.0 1368682672 38893 pump result snm start price 431 weve reached 701 huge quick profit 61 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-06-26 04:36:33+00:00 1.0 1368682672 38812 lpt result start price 6757 price hit 12463 huge quick profit 85 in just 9 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-06-23 08:25:05+00:00 1.0 1368682672 38763 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-21 15:21:28+00:00 1.0 1368682672 38748 dnt pump result start price 359 price hit 560 huge quick profit 55 in just 16 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-21 04:52:44+00:00 1.0 1368682672 38728 pump result wabi start price 900 weve reached 1249 huge quick profit 38 in just 3 minutes to know next pump coin name contact apglobals for premium membership 2021-06-20 17:07:37+00:00 1.0 1368682672 38697 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-19 18:09:24+00:00 1.0 1368682672 38694 pols pump result start price 3612 price hit 4740 huge quick profit 31 in just 4 minutes to know next pump coin name ☎️ contact apglobals 2021-06-19 17:21:09+00:00 1.0 1368682672 38637 mir result start price 1198 price hit 1928 huge quick profit 61 in just 19 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-18 11:00:13+00:00 1.0 1368682672 38610 pump result nu start price 788 weve reached 1100 huge quick profit 39 in just 19 minutes to know next pump coin name contact apglobals for premium membership 2021-06-17 17:06:03+00:00 1.0 1368682672 38605 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-17 15:23:44+00:00 1.0 1368682672 38519 pump result ava start price 779 weve reached 1003 huge quick profit 28 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-06-16 14:05:24+00:00 1.0 1368682672 38480 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-16 03:50:23+00:00 1.0 1368682672 38415 hard result 2nd target achieved in just 34 hour ✅✅ one more huge quick profit 30 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-14 18:45:08+00:00 1.0 1368682672 38379 ata pump result start price 1866 price hit 2780 all targets achieved in just 66 minutes ✅✅✅✅ huge quick profit 49 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-13 06:13:51+00:00 1.0 1368682672 38322 chz result 2nd target achieved in just 33 minutes ✅✅ huge quick profit 60 using 5x leverage amazing calls by our team the longer you wait more you lose profit what are you waiting for ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-11 09:08:00+00:00 1.0 1368682672 38308 pump result asr start price 1517 weve reached 2736 huge quick profit 80 in just 145 hour to know next pump coin name contact apglobals for premium membership 2021-06-11 07:16:01+00:00 1.0 1368682672 38290 stpt pump result start price 136 price hit 213 all targets achieved in just 23 hour✅✅✅✅ one more huge quick profit 57 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-11 05:17:37+00:00 1.0 1368682672 38283 gtc pump result start price 3107 price hit 4863 all targets achieved in just 75 hour✅✅✅✅ one more huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-11 04:32:36+00:00 1.0 1368682672 38255 idex pump result start price 150 price hit 246 all targets achieved in just 2 hour✅✅✅✅ one more huge quick profit 64 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-10 10:44:57+00:00 1.0 1368682672 38206 hard pump result start price 1902 price hit 2985 all targets achieved in just 26 minutes ✅✅✅✅ huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-10 04:26:39+00:00 1.0 1368682672 38163 pump result data start price 269 weve reached 737 huge quick profit 173 in just 13 hour to know next pump coin name contact apglobals for premium membership 2021-06-09 13:44:59+00:00 1.0 1368682672 38103 bcd hit 11520 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 69 amazing calls by our team told you we have shared breakout pump signal which will give you 2060 profit in few hours did you take it seriously no i think you hate money ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-09 03:53:34+00:00 1.0 1368682672 38025 pump result ar start price 4740 weve reached 6280 huge quick profit 32 in just 4 hour to know next pump coin name contact apglobals for premium membership 2021-06-07 15:16:59+00:00 1.0 1368682672 38014 pump result dock start price 184 weve reached 293 huge quick profit 59 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-06-07 02:43:32+00:00 1.0 1368682672 37990 pump result pond start price 250 weve reached 503 huge quick profit 101 in just 19 minutes to know next pump coin name contact apglobals for premium membership 2021-06-06 18:35:44+00:00 1.0 1368682672 37969 perl result all targets achieved in just 68 minutes ✅✅✅✅ one more huge quick profit signals 103 amazing calls by our team congrats premium members you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-06 16:51:43+00:00 1.0 1368682672 37927 pump result iris start price 222 weve reached 456 huge quick profit 105 in just 10 minutes to know next pump coin name contact apglobals for premium membership 2021-06-06 07:48:20+00:00 1.0 1368682672 37919 nbs result all targets achieved in just 8 minutes ✅✅✅✅ huge quick profit 70 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-06 07:05:12+00:00 1.0 1368682672 37847 nu result start price 1052 price hit 1386 one more huge quick profit 31 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-04 09:48:12+00:00 1.0 1368682672 37797 pump result sun start price 792 weve reached 1022 huge quick profit 29 in just 1 hour to know next pump coin name contact apglobals for premium membership 2021-06-03 13:07:12+00:00 1.0 1368682672 37769 gxs pump result all targets achieved in just 5 hour ✅✅✅✅ one more huge quick profit 54 amazing pump by our team still thinking and losing daily huge profit we share advance buy and sell targets to premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-03 06:08:01+00:00 1.0 1368682672 37672 doge result start price 927 price hit 1211 huge quick profit 31 in just 16 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-02 13:11:49+00:00 1.0 1368682672 37575 pump result eps start price 2165 weve reached 3180 huge quick profit 47 to know next pump coin name contact apglobals for premium membership 2021-05-31 08:07:17+00:00 1.0 1368682672 37513 pump result axs start price 13286 weve reached 17220 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-29 16:23:29+00:00 1.0 1368682672 37408 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-28 04:14:36+00:00 1.0 1368682672 37383 pump result bar start price 4243 weve reached 6133 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-05-27 12:42:26+00:00 1.0 1368682672 37268 pump result skl start price 908 weve reached 1471 huge quick profit 62 to know next pump coin name contact apglobals for premium membership 2021-05-26 18:00:55+00:00 1.0 1368682672 37262 pump result nxs start price 2487 weve reached 3631 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-05-26 17:06:09+00:00 1.0 1368682672 37240 pump result tvk start price 445 weve reached 699 huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-05-26 12:29:27+00:00 1.0 1368682672 37226 pump result ramp start price 502 weve reached 968 huge quick profit 93 to know next pump coin name contact apglobals for premium membership 2021-05-26 10:26:46+00:00 1.0 1368682672 37138 dock result 3rd target achieved in just 19 minutes ✅✅✅ huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-25 18:05:08+00:00 1.0 1368682672 37129 pump result hard start price 1664 weve reached 2595 huge quick profit 56 to know next pump coin name contact apglobals for premium membership 2021-05-25 16:41:54+00:00 1.0 1368682672 37103 pump result oxt start price 1009 weve reached 1430 huge quick profit 41 to know next pump coin name contact apglobals for premium membership 2021-05-25 14:25:21+00:00 1.0 1368682672 37048 pump result via start price 2070 weve reached 2677 huge quick profit 29 to know next pump coin name contact apglobals for premium membership 2021-05-24 18:15:09+00:00 1.0 1368682672 37042 pump result tct start price 76 weve reached 96 huge quick profit 26 to know next pump coin name contact apglobals for premium membership 2021-05-24 18:10:35+00:00 1.0 1368682672 37018 pump result rdn start price 1039 weve reached 1464 huge quick profit 40 to know next pump coin name contact apglobals for premium membership 2021-05-24 13:47:52+00:00 1.0 1368682672 36942 pump result unfi start price 18678 weve reached 39410 huge quick profit 111 to know next pump coin name contact apglobals for premium membership 2021-05-24 03:31:46+00:00 1.0 1368682672 36768 pump result fis start price 3785 weve reached 6754 huge quick profit 78 to know next pump coin name contact apglobals for premium membership 2021-05-21 12:32:16+00:00 1.0 1368682672 36743 pump result elf start price 828 weve reached 1111 huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-05-21 09:12:27+00:00 1.0 1368682672 36721 pump result ong start price 1939 weve reached 8000 huge quick profit 312 to know next pump coin name contact apglobals for premium membership 2021-05-21 04:22:35+00:00 1.0 1368682672 36712 pump result cvc start price 965 weve reached 1298 huge quick profit 34 to know next pump coin name contact apglobals for premium membership 2021-05-21 02:34:46+00:00 1.0 1368682672 36577 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-19 16:27:13+00:00 1.0 1368682672 36566 ethusdt result 2nd target achieved in just 22 minutes ✅✅ one more huge quick profit 57 using 5x leverage ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-19 16:02:30+00:00 1.0 1368682672 36516 ong result 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 25 ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-19 10:00:34+00:00 1.0 1368682672 36502 pump result celr start price 128 weve reached 194 huge quick profit 51 to know next pump coin name contact apglobals for premium membership 2021-05-19 07:01:08+00:00 1.0 1368682672 36466 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-18 18:49:18+00:00 1.0 1368682672 36431 pump result ark start price 3497 weve reached 5325 huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-05-18 15:07:46+00:00 1.0 1368682672 36368 pump result celo start price 10402 weve reached 14997 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-05-17 18:24:07+00:00 1.0 1368682672 36362 pump result alice start price 23448 weve reached 30504 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-17 16:11:56+00:00 1.0 1368682672 36287 nmr hit 1980 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 told you you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-16 10:53:56+00:00 1.0 1368682672 36277 nmr result 3rd target achieved in just 6 minutes ✅✅✅ one more huge quick profit 31 amazing pump call by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-16 10:00:41+00:00 1.0 1368682672 36255 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-15 20:02:41+00:00 1.0 1368682672 36225 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-15 09:08:26+00:00 1.0 1368682672 36200 pump result juv start price 3222 weve reached 4605 huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-05-15 06:13:44+00:00 1.0 1368682672 36178 pump result atm start price 4682 weve reached 9787 huge quick profit 109 to know next pump coin name contact apglobals for premium membership 2021-05-15 05:11:11+00:00 1.0 1368682672 36073 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-13 19:15:31+00:00 1.0 1368682672 36055 pump result chr start price 572 weve reached 814 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2021-05-13 11:56:38+00:00 1.0 1368682672 36049 pump result nano start price 1619 weve reached 3595 huge quick profit 122 to know next pump coin name contact apglobals for premium membership 2021-05-13 11:27:55+00:00 1.0 1368682672 36020 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-12 17:13:50+00:00 1.0 1368682672 36015 pump result iris start price 297 weve reached 427 huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-05-12 16:46:53+00:00 1.0 1368682672 36008 pump result atm start price 1942 weve reached 2630 huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-05-12 16:34:17+00:00 1.0 1368682672 36002 pump result nas start price 195 weve reached 255 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-12 15:27:24+00:00 1.0 1368682672 35970 pump result lrc start price 965 weve reached 1527 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-05-12 07:55:51+00:00 1.0 1368682672 35944 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-11 19:16:39+00:00 1.0 1368682672 35880 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-10 19:32:31+00:00 1.0 1368682672 35857 ckb hit 71 finally all targets achieved in just 32 minutes ✅✅✅✅ huge quick profit 57 amazing calls by our team congrats premium members so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-10 10:27:12+00:00 1.0 1368682672 35799 pump result rlc start price 11423 weve reached 20409 huge quick profit 78 to know next pump coin name contact apglobals for premium membership 2021-05-10 05:38:13+00:00 1.0 1368682672 35791 pump result vidt start price 2221 weve reached 3130 huge quick profit 40 to know next pump coin name contact apglobals for premium membership 2021-05-10 04:23:59+00:00 1.0 1368682672 35786 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-09 19:21:01+00:00 1.0 1368682672 35701 ctsi result 2nd target achieved in just 33 minutes ✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-08 16:59:26+00:00 1.0 1368682672 35696 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-08 14:36:12+00:00 1.0 1368682672 35638 pump result aion start price 734 weve reached 1150 huge quick profit 56 to know next pump coin name contact apglobals for premium membership 2021-05-07 16:30:51+00:00 1.0 1368682672 35633 bcd hit 18000 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-07 14:48:53+00:00 1.0 1368682672 35616 firo result start price 2943 price hit 4326 huge quick profit 47 in just 1 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-07 12:44:13+00:00 1.0 1368682672 35555 etc result start price 13954 price hit 25690 huge quick profit 84 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-06 16:06:19+00:00 1.0 1368682672 35480 sys result start price 1195 price hit 1600 huge quick profit 33 in just 18 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 15:02:15+00:00 1.0 1368682672 35463 pnt hit 6722 finally all targets achieved in just 58 minutes ✅✅✅✅ huge quick profit 78 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 12:55:11+00:00 1.0 1368682672 35458 pnt result 2nd target achieved in just 39 minutes ✅✅ one more huge quick profit 22 ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 12:28:38+00:00 1.0 1368682672 35354 iris result all targets achieved in just 225 hour✅✅✅✅ huge quick profit 56 amazing calls by our team congrats premium members you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-03 17:27:22+00:00 1.0 1368682672 35347 wabi result start price 1038 price hit 1400 huge quick profit 34 in just 13 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-03 16:50:29+00:00 1.0 1368682672 35252 twt result start price 1372 price hit 2075 huge quick profit 51 in just 12 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-05-02 18:51:07+00:00 1.0 1368682672 35206 nano result start price 1604 price hit 2118 huge quick profit 31 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump coin name 2021-05-02 07:22:00+00:00 1.0 1368682672 35148 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 19:15:14+00:00 1.0 1368682672 35143 fis result start price 4592 price hit 7900 huge quick profit 72 in just 2 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-04-30 18:00:08+00:00 1.0 1368682672 35138 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 12:05:30+00:00 1.0 1368682672 35109 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 06:37:52+00:00 1.0 1368682672 35106 pump result rcn start price 244 weve reached 356 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-04-30 05:32:41+00:00 1.0 1368682672 35100 iotx result start price 97 price hit 160 huge quick profit 64 in just 3 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-04-30 05:05:18+00:00 1.0 1368682672 35091 vite hit 500 finally all target achieved in 3 days✅✅✅✅ one more huge profit 80 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-30 04:29:41+00:00 1.0 1368682672 35045 eps result start price 3557 price hit 5789 huge quick profit 62 in just 195 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-29 14:47:16+00:00 1.0 1368682672 35034 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-29 12:04:46+00:00 1.0 1368682672 35020 vite hit 400 now 3rd target achieved in 3 days✅✅✅ one more huge profit 44 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-29 10:01:12+00:00 1.0 1368682672 35015 pump result sys start price 641 weve reached 978 huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-04-29 09:14:02+00:00 1.0 1368682672 34970 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-28 19:41:08+00:00 1.0 1368682672 34935 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-28 13:36:07+00:00 1.0 1368682672 34919 ppt result start price 9614 price hit 12282 huge quick profit 26 in just 27 minutes ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-28 07:47:58+00:00 1.0 1368682672 34693 rvn result 1st target achieved in just 2 minutes ✅ one more huge quick profit 50 using 5x leverage join premium and grab next pump signal ☎️ contact apglobals 2021-04-26 09:02:01+00:00 1.0 1368682672 34652 idex result all targets achieved in just 51 minutes ✅✅✅✅ huge quick profit 69 told you you could recover fees in just few hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-25 17:09:49+00:00 1.0 1368682672 34645 pump result pivx start price 3084 weve reached 4455 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-04-25 16:58:50+00:00 1.0 1368682672 34639 pump result pnt start price 2704 weve reached 4016 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2021-04-25 16:16:23+00:00 1.0 1368682672 34587 pump result alice start price 16688 weve reached 24876 huge quick profit 49 to know next pump coin name contact apglobals for premium membership 2021-04-25 08:58:11+00:00 1.0 1368682672 34569 as you guys know now who is the real telegram channel in this crypto world we shared rdn signal 45 hour ago to premium members and posted here in free channel 30 minutes ago from now all other channels are just scam beware ‼️ ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-24 21:03:08+00:00 1.0 1368682672 34465 pump result qlc start price 134 weve reached 212 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-04-23 16:14:12+00:00 1.0 1368682672 34394 pump result btg start price 1438 weve reached 3053 huge quick profit 113 to know next pump coin name contact apglobals for premium membership 2021-04-23 04:55:16+00:00 1.0 1368682672 34304 pump result wpr start price 73 weve reached 132 huge quick profit 80 to know next pump coin name contact apglobals for premium membership 2021-04-21 16:09:23+00:00 1.0 1368682672 34298 nkn result start price 1116 price hit 1578 huge quick profit 41 in just 16 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-21 16:03:38+00:00 1.0 1368682672 34292 bar result 2nd target achieved in just 7 minutes ✅✅ one more huge quick 21 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-21 12:48:15+00:00 1.0 1368682672 34186 stpt hit 240 finally all targets achieved in just 43 minutes ✅✅✅✅ huge quick profit 57 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking dont miss next pump signal ☎️ contact apglobals 2021-04-20 13:00:24+00:00 1.0 1368682672 33554 pump result via start price 4100 weve reached 10680 huge quick profit 160 to know next pump coin name contact apglobals for premium membership 2021-04-11 17:06:33+00:00 1.0 1368682672 33497 beam result start price 256 price hit 349 one more huge quick profit 36 in just 12 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-11 07:38:46+00:00 1.0 1368682672 33457 ctxc result start price 688 price hit 978 one more huge quick profit 42 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-10 05:07:21+00:00 1.0 1368682672 33377 grs result all targets achieved in just 58 minutes ✅✅✅✅ one more huge quick profit 131 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump coin 2021-04-09 09:04:38+00:00 1.0 1368682672 32958 we also share daily 25 special signal in premium channel only those coin will going to pump within 24 hour or very short duration 2021-04-04 03:37:57+00:00 1.0 1368682672 32613 pump result wan start price 2653 weve reached 3927 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2021-03-30 03:36:55+00:00 1.0 1368682672 32594 pump result mtl start price 3656 weve reached 10025 huge quick profit 174 to know next pump coin name contact apglobals for premium membership 2021-03-29 18:19:05+00:00 1.0 1368682672 32558 pump result rdn start price 1446 weve reached 3500 huge quick profit 142 to know next pump coin name contact apglobals for premium membership 2021-03-28 19:11:26+00:00 1.0 1368682672 32551 pump result pivx start price 3590 weve reached 11612 huge quick profit 223 to know next pump coin name contact apglobals for premium membership 2021-03-28 17:05:37+00:00 1.0 1368682672 30319 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-27 12:47:43+00:00 1.0 1368682672 28444 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-06 17:46:35+00:00 1.0 1368682672 28378 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-05 18:56:41+00:00 1.0 1368682672 28284 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-05 06:10:55+00:00 1.0 1368682672 28137 brd result all targets achieved in just 21 minutes ✅✅✅✅ one more huge quick profit 117 amazing calls by our team dont get stuck in other pump groups ☎️ contact apglobals for premium membership and grab next breakout signal before it pump 2021-02-03 19:10:33+00:00 1.0 1368682672 26977 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-01-23 16:15:54+00:00 1.0 1368682672 25926 bcpt result start price 64 price hit 133 huge quick profit 107 in just 8 hour to know next pump coin name ☎️ contact apglobals 2021-01-09 13:06:54+00:00 1.0 1368682672 25836 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-01-08 13:56:24+00:00 1.0 1368682672 25673 qlc result start price 50 price hit 89 huge quick profit 78 in just 3 minutes to know next pump coin name ☎️ contact apglobals 2021-01-06 16:08:17+00:00 1.0 1368682672 25464 nxs result start price 639 price hit 1000 one more huge quick profit 56 in just 5 hour to know next pump coin name ☎️ contact apglobals 2021-01-03 17:54:51+00:00 1.0 1368682672 25457 ppt result start price 1700 price hit 2413 one more huge quick profit 41 in just 5 hour to know next pump coin name ☎️ contact apglobals 2021-01-03 17:49:37+00:00 1.0 1368682672 25451 pivx result start price 997 price hit 1423 one more huge quick profit 43 in just 13 minutes to know next pump coin name ☎️ contact apglobals 2021-01-03 17:34:27+00:00 1.0 1368682672 25414 grs result start price 1072 price hit 1560 one more huge quick profit 45 in just 26 minutes to know next pump coin name ☎️ contact apglobals 2021-01-03 09:41:08+00:00 1.0 1368682672 25390 nebl pump result start price 2500 price hit 27810 huge quick profit 1000 in just 15 hour hope you guys dont stuck in other pump group we are the only channel who know pump coin name earliest still thinking you missed huge profit today hope to see you soon in our premium channel ☎️ contact apglobals for premium membership 2021-01-02 21:07:06+00:00 1.0 1368682672 25325 atm result start price 2584 price hit 4150 huge quick profit 60 in just 7 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-02 05:44:23+00:00 1.0 1368682672 25319 aergo result start price 146 price hit 270 huge quick profit 84 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-02 04:26:23+00:00 1.0 1368682672 25293 fun pump result start price 31 price hit 87 huge quick profit 180 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-01 15:19:53+00:00 1.0 1368682672 25259 poly result start price 290 price hit 376 huge quick profit 29 in just 35 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-01 06:42:17+00:00 1.0 1368682672 25221 idex pump result start price 132 price hit 270 huge quick profit 104 in just 9 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-31 17:09:54+00:00 1.0 1368682672 25168 mith result start price 47 price hit 65 one more huge quick profit 38 in just 25 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-30 03:55:43+00:00 1.0 1368682672 25063 via result start price 1054 price hit 1350 one more huge quick profit 28 in just 15 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:52:40+00:00 1.0 1368682672 25056 vibe result start price 60 price hit 82 one more huge quick profit 36 in just 31 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:45:16+00:00 1.0 1368682672 25036 dlt pump result all targets achieved in just 2 minutes✅✅✅✅ one more huge quick profit 546 in just 2 minutes amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:07:56+00:00 1.0 1368682672 24972 nbs result start price 57 price hit 84 one more huge quick profit 47 in just 2 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-24 20:57:51+00:00 1.0 1368682672 24950 dnt pump result start price 187 price hit 382 one more huge quick profit 104 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-24 03:18:05+00:00 1.0 1368682672 24582 via pump result start price 1049 price hit 1493 one more huge quick profit 42 in just 23 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 13:30:33+00:00 1.0 1368682672 24566 dcr pump result start price 1434 price hit 1841 one more huge quick profit 28 in just 3 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 09:15:28+00:00 1.0 1368682672 24540 grt pump result start price 450 price hit 760 one more huge quick profit 68 in just 75 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 04:49:26+00:00 1.0 1368682672 24479 aergo pump result start price 208 price hit 260 one more huge quick profit 25 in just 19 minutes to know next pump coin name ☎️ contact apglobals 2020-12-17 06:10:11+00:00 1.0 1368682672 24289 ctxc pump result start price 454 price hit 572 one more huge quick profit 25 in just 3 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-12 18:36:45+00:00 1.0 1368682672 24282 utk pump result start price 592 price hit 825 huge quick profit 39 in just 4 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-12 16:20:17+00:00 1.0 1368682672 24223 idex result start price 174 price hit 235 one more huge quick profit 35in just 5 hour to know next pump coin name ☎️ contact apglobals 2020-12-10 12:57:52+00:00 1.0 1368682672 24188 wing result start price 691 price hit 1304 one more huge quick profit 88 in just 12 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-09 08:11:26+00:00 1.0 1368682672 24137 mtl pump result start price 2012 price hit 3338 huge quick profit 65 in just 15 hour amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-08 02:04:51+00:00 1.0 1368682672 24085 breakout pump coin brd 2020-12-06 18:00:25+00:00 1.0 1368682672 24072 pnt pump result start price 2049 price hit 2890 one more huge quick profit 41 to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-06 10:08:28+00:00 1.0 1368682672 24023 pnt pump result start price 2132 price hit 3258 one more huge profit 40 to know next pump coin name ☎️ contact apglobals 2020-12-05 04:37:26+00:00 1.0 1368682672 23931 dcr pump result start price 1421 price hit 2182 huge quick profit 53in just 36 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-03 04:05:57+00:00 1.0 1368682672 23914 nebl pump result start price 2355 price hit 3000 one more huge quick profit 27 within 19 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-02 18:22:36+00:00 1.0 1368682672 23838 steem pump result start price 972 price hit 1300 one more huge quick profit 34 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 16:14:13+00:00 1.0 1368682672 23822 sun pump result start price 558 price hit 717 one more huge quick profit 28 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 04:22:52+00:00 1.0 1368682672 23816 jst pump result start price 128 price hit 200 one more huge quick profit 56 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 04:13:29+00:00 1.0 1368682672 23779 stpt pump result start price 87 price hit 127 one more huge quick profit 46 in just 38 minutes to know next pump coin name ☎️ contact apglobals 2020-11-30 09:55:37+00:00 1.0 1368682672 23727 ong result start price 1298 price hit 1518 one more quick profit 16 in just 4 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-28 15:29:39+00:00 1.0 1368682672 23685 gnt pump result start price 680 price hit 830 one more huge quick profit 22 to know next pump coin name ☎️ contact apglobals 2020-11-27 16:16:05+00:00 1.0 1368682672 23539 ong pump result start price 778 price hit 1189 one more huge quick profit 52 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-11-25 15:23:34+00:00 1.0 1368682672 23474 strax pump result start price 2252 price hit 4255 huge quick profit 90 within 16 hour to know next pump coin name ☎️ contact apglobals 2020-11-25 05:12:16+00:00 1.0 1368682672 23455 xvg pump result start price 36 price hit 46 huge quick profit 27 within 6 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 16:42:41+00:00 1.0 1368682672 23448 snt pump result start price 213 price hit 260 huge quick profit 22 within 25 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 16:03:56+00:00 1.0 1368682672 23441 xlm pump result start price 784 price hit 966 huge quick profit 23 within 5 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 15:49:41+00:00 1.0 1368682672 23338 zen pump result start price 4465 price hit 5913 one more huge quick profit 34 within 24 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-23 06:26:06+00:00 1.0 1368682672 23314 sand result 3rd target achieved in just 4 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-11-22 17:51:11+00:00 1.0 1368682672 23304 fio result start price 475 price hit 650 one more huge quick profit 36 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 16:45:52+00:00 1.0 1368682672 23290 nmr result start price 1630 price hit 2399 one more huge quick profit 47 in just 26 minutes to know next pump coin name ☎️ contact apglobals 2020-11-22 15:28:21+00:00 1.0 1368682672 23276 ant result start price 1776 price hit 2222 one more huge quick profit 25 within 28 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 13:36:10+00:00 1.0 1368682672 23270 snt result start price 168 price hit 229 one more huge quick profit 36 within 12 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 13:10:24+00:00 1.0 1368682672 23157 wpr pump result start price 43 price hit 53 huge quick profit 23 in just 4 minutes to know next pump coin name ☎️ contact apglobals 2020-11-19 14:38:40+00:00 1.0 1368682672 23142 unfi result all targets achieved in just 5 minutes ✅✅✅ one more huge quick profit 38 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals 2020-11-19 06:50:31+00:00 1.0 1368682672 22933 sun result start price 562 price hit 732 huge quick profit 30 in just 9 hour to know next pump coin name ☎️ contact apglobals 2020-11-15 18:25:31+00:00 1.0 1368682672 22927 bot result start price 2519 price hit 3500 huge quick profit 38 in just 25 minutes to know next pump coin name ☎️ contact apglobals 2020-11-15 18:20:01+00:00 1.0 1368682672 22705 poa result start price 131 price hit 155 one more quick profit 18 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-11-12 03:57:21+00:00 1.0 1368682672 22673 ogn result start price 934 price hit 1349 one more huge quick profit 44 in just 6 hour to know next pump coin name ☎️ contact apglobals 2020-11-11 10:52:00+00:00 1.0 1368682672 22563 gnt result start price 636 price hit 927 one more huge quick profit 45 in just 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-10 08:02:43+00:00 1.0 1368682672 22557 loom result start price 167 price hit 311 one more huge quick profit 86 in just 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-10 07:57:27+00:00 1.0 1368682672 22496 pump result brd start price 471 weve reached 749 huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2020-11-09 16:12:45+00:00 1.0 1368682672 22488 pump coin name brd 2020-11-09 16:00:27+00:00 1.0 1368682672 22487 15 minutes left to pump on binance 2020-11-09 15:45:39+00:00 1.0 1368682672 22486 30 minutes left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-09 15:33:39+00:00 1.0 1368682672 22476 next pump scheduled ⏰ monday 09112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-09 14:10:00+00:00 1.0 1368682672 22446 next pump scheduled ⏰ monday 09112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-09 07:08:05+00:00 1.0 1368682672 22406 pump result dlt start price 279 weve reached 410 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2020-11-08 15:21:09+00:00 1.0 1368682672 22370 axs result start price 1020 price hit 1390 one more huge quick profit 36 within 7 hour to know next pump coin name ☎️ contact apglobals 2020-11-08 09:48:03+00:00 1.0 1368682672 22364 dnt result start price 159 price hit 238 huge quick profit 49 within 10 hour to know next pump coin name ☎️ contact apglobals 2020-11-08 09:39:03+00:00 1.0 1368682672 22291 poa result start price 115 price hit 158 one more huge quick profit 37 in just 8 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-07 05:54:43+00:00 1.0 1368682672 22210 aave result start price 1970 price hit 2541 huge quick profit 29 within 23 hour to know next pump coin name ☎️ contact apglobals 2020-11-06 13:42:46+00:00 1.0 1368682672 22149 yoyo result 3rd target achieved in just 25 minutes ✅✅✅ one more huge quick profit 34 to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-06 02:29:47+00:00 1.0 1368682672 22142 and dnt hit 140 102 profit in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-05 19:41:47+00:00 1.0 1368682672 22073 pump result appc start price 248 weve reached 301 huge quick profit 21 to know next pump coin name contact apglobals for premium membership 2020-11-04 17:27:36+00:00 1.0 1368682672 22067 pump coin name appc 2020-11-04 17:00:22+00:00 1.0 1368682672 22066 next post will be coin name 2020-11-04 16:55:14+00:00 1.0 1368682672 22065 5 minutes left to pump on binance 2020-11-04 16:55:14+00:00 1.0 1368682672 22063 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-04 16:03:27+00:00 1.0 1368682672 22061 next pump scheduled ⏰ wednesday 04112020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-04 15:04:00+00:00 1.0 1368682672 22052 7 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-04 10:00:33+00:00 1.0 1368682672 22043 next pump scheduled ⏰ wednesday 04112020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-03 18:23:39+00:00 1.0 1368682672 22031 gto proof coin name shared earlier in premium channel to know next pump coin name ☎️ contact apglobals 2020-11-03 16:15:05+00:00 1.0 1368682672 22030 pump result gto start price 36 weve reached 48 huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2020-11-03 16:11:07+00:00 1.0 1368682672 22021 pump coin name gto 2020-11-03 16:00:13+00:00 1.0 1368682672 22020 next post will be coin name 2020-11-03 15:55:21+00:00 1.0 1368682672 22019 5 minutes left to pump on binance 2020-11-03 15:55:08+00:00 1.0 1368682672 22018 10 minutes left to pump on binance 2020-11-03 15:50:17+00:00 1.0 1368682672 22016 20 minutes left to pump on binance 2020-11-03 15:40:28+00:00 1.0 1368682672 22012 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-03 15:00:08+00:00 1.0 1368682672 22001 3 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-03 13:01:29+00:00 1.0 1368682672 21986 next pump scheduled ⏰ tuesday 03112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-02 18:51:46+00:00 1.0 1368682672 21972 pump result ardr start price 372 weve reached 603 huge quick profit 62 to know next pump coin name contact apglobals for premium membership 2020-11-02 16:13:05+00:00 1.0 1368682672 21968 pump coin name ardr 2020-11-02 16:00:40+00:00 1.0 1368682672 21967 next post will be coin name 2020-11-02 15:55:16+00:00 1.0 1368682672 21966 5 minutes left to pump on binance 2020-11-02 15:55:16+00:00 1.0 1368682672 21965 20 minutes left to pump on binance 2020-11-02 15:40:29+00:00 1.0 1368682672 21964 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-02 15:00:56+00:00 1.0 1368682672 21956 4 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-02 12:12:42+00:00 1.0 1368682672 21955 next pump scheduled ⏰ monday 02112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-02 12:12:42+00:00 1.0 1368682672 21920 next pump scheduled ⏰ monday 02112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-01 07:23:23+00:00 1.0 1368682672 21863 pump result dusk start price 304 weve reached 585 huge quick profit 92 to know next pump coin name contact apglobals for premium membership 2020-10-30 16:12:16+00:00 1.0 1368682672 21857 after 3 minutes dusk still at top price amazing pump now hit 510 good time to book profit 2020-10-30 16:03:39+00:00 1.0 1368682672 21853 pump coin name dusk 2020-10-30 16:00:36+00:00 1.0 1368682672 21852 3 minutes left to pump on binance next post will be coin name 2020-10-30 15:57:12+00:00 1.0 1368682672 21851 30 minutes left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-10-30 15:31:16+00:00 1.0 1368682672 21850 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-10-30 15:05:40+00:00 1.0 1368682672 21841 next pump scheduled ⏰ friday 30102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-30 10:02:26+00:00 1.0 1368682672 21832 ctxc result start price 575 price hit 753 one more huge quick profit 31 within 7 hour to know next pump coin name ☎️ contact apglobals 2020-10-30 05:51:54+00:00 1.0 1368682672 21767 next pump scheduled ⏰ friday 30102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-29 16:57:55+00:00 1.0 1368682672 21718 idex result start price 409 price hit 548 one more huge quick profit 33 in just 25 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-27 18:34:23+00:00 1.0 1368682672 21702 nebl result start price 3276 price hit 4106 one more huge quick profit 25 in just 11 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-27 09:56:47+00:00 1.0 1368682672 21672 ocean pump result start price 3249 price hit 3956 one more huge quick profit 22 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 17:00:52+00:00 1.0 1368682672 21644 adx pump result start price 1993 price hit 2573 one more huge quick profit 29 in just 17 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 06:05:54+00:00 1.0 1368682672 21638 sys pump result start price 339 price hit 435 one more huge quick profit 28 in just 145 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 06:02:29+00:00 1.0 1368682672 21623 idex pump result start price 427 price hit 570 one more huge quick profit 33 in just 10 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-25 14:52:22+00:00 1.0 1368682672 21590 poly pump result start price 362 price hit 549 one more huge quick profit 51 in just 20 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-24 04:59:19+00:00 1.0 1368682672 21547 poa pump result start price 138 price hit 174 one more huge quick profit 26 within 6 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-23 03:55:11+00:00 1.0 1368682672 21523 vibe pump result start price 102 price hit 166 one more huge quick to 62 in just 23 minutes to know next pump coin name ☎️ contact apglobals 2020-10-22 13:48:43+00:00 1.0 1368682672 21465 pump result ppt start price 1842 weve reached 2400 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2020-10-21 18:13:50+00:00 1.0 1368682672 21462 pump coin name ppt 2020-10-21 18:01:04+00:00 1.0 1368682672 21460 30 minutes left to pump on binance 2020-10-21 17:32:05+00:00 1.0 1368682672 21452 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-21 16:31:49+00:00 1.0 1368682672 21443 xvs result start price 2446 price hit 2923 one more quick to 20 within 18 hour to know next pump coin name ☎️ contact apglobals 2020-10-21 16:07:09+00:00 1.0 1368682672 21425 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-21 08:23:26+00:00 1.0 1368682672 21420 inj result 1st target achieved within 70 minutes ✅ one more huge quick profit 27 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-10-21 05:52:28+00:00 1.0 1368682672 21398 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-20 13:57:16+00:00 1.0 1368682672 21378 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-19 18:28:51+00:00 1.0 1368682672 21355 oax proof coin name shared few minutes earlier in premium channel 2020-10-18 18:23:36+00:00 1.0 1368682672 21354 pump result oax start price 581 weve reached 829 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2020-10-18 18:10:27+00:00 1.0 1368682672 21350 pump coin name oax 2020-10-18 18:00:23+00:00 1.0 1368682672 21349 5 minutes left to pump on binance next post will be coin name 2020-10-18 17:55:11+00:00 1.0 1368682672 21348 15 minutes left to pump on binance 2020-10-18 17:45:40+00:00 1.0 1368682672 21347 30 minutes left to pump on binance 2020-10-18 17:30:39+00:00 1.0 1368682672 21345 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-18 16:05:31+00:00 1.0 1368682672 21329 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-18 10:11:45+00:00 1.0 1368682672 21310 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-17 16:18:23+00:00 1.0 1368682672 21306 rdn pump result start price 1735 price hit 2483 one more huge quick profit 43 to know next pump coin name ☎️ contact apglobals 2020-10-17 16:12:01+00:00 1.0 1368682672 21301 pump coin name rdn 2020-10-17 16:00:18+00:00 1.0 1368682672 21300 5 minutes left to pump on binance next pump will be pump coin name 2020-10-17 15:54:42+00:00 1.0 1368682672 21299 15 minutes left to pump on binance 2020-10-17 15:45:05+00:00 1.0 1368682672 21298 30 minutes left to pump on binance 2020-10-17 15:30:36+00:00 1.0 1368682672 21292 xvs pump result start price 2852 price hit 4300 one more huge quick profit 50 within 95 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-17 12:05:03+00:00 1.0 1368682672 21286 alhpa pump result start price 312 price hit 397 one more huge quick profit 27 within 11 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-17 11:49:58+00:00 1.0 1368682672 21274 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-17 10:20:16+00:00 1.0 1368682672 21262 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-16 18:41:30+00:00 1.0 1368682672 21240 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-16 03:16:42+00:00 1.0 1368682672 21229 fio pump result start price 991 price hit 1178 one more huge quick profit 18 in just 36 minutes to know next pump coin name ☎️ contact apglobals 2020-10-15 14:56:17+00:00 1.0 1368682672 21203 gvt pump result start price 1232 price hit 1690 one more huge quick profit 37 to know next pump coin name ☎️ contact apglobals 2020-10-14 18:32:18+00:00 1.0 1368682672 21173 xvs pump result start price 2412 price hit 2870 one more very quick profit 19 to know next pump coin name ☎️ contact apglobals 2020-10-14 07:21:42+00:00 1.0 1368682672 21081 iris pump result start price 577 price hit 680 one more quick profit 18 in just 3 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-12 08:23:22+00:00 1.0 1368682672 21075 nebl pump result start price 4226 price hit 5500 one more huge quick profit 30 in just 3 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-12 05:57:24+00:00 1.0 1368682672 21026 dnt pump result start price 81 price hit 107 huge quick profit 32 in just 25 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-11 10:37:33+00:00 1.0 1368682672 21020 qsp result all targets achieved in just 35 hour ✅✅✅✅ one more huge quick profit 50 amazing calls by our team join premium and grab next pump signal hurry up ‍♂ ☎️ contact apglobals 2020-10-11 03:12:07+00:00 1.0 1368682672 20990 cvc result 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 30 to know next pump coin name earlier ☎️ contact apglobals for premium membership 2020-10-10 09:24:14+00:00 1.0 1368682672 20959 uma pump result start price 723 price hit 907 huge quick profit 25 in just11 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 17:24:51+00:00 1.0 1368682672 20951 mth pump result start price 62 price hit 81 huge quick profit 30 in just 35 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 16:46:32+00:00 1.0 1368682672 20934 ost pump result start price 71 price hit 132 huge quick profit 85 in just 26 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 12:36:36+00:00 1.0 1368682672 20906 perl pump result start price 197 price hit 239 huge quick profit 21 in just 18 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 08:59:46+00:00 1.0 1368682672 20899 yfii pump result start price 13533 price hit 18832 huge quick profit 39 in just 9 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 05:59:05+00:00 1.0 1368682672 20872 via pump result start price 1620 price hit 2498 huge quick profit 54 in just 15 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 03:31:52+00:00 1.0 1368682672 20786 orn result start price 1635 price hit 1984 one more quick profit 21 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-07 14:38:51+00:00 1.0 1368682672 20702 req result start price 190 price hit 240 one more huge quick profit 26 in just 33 minutes to know next pump coin name ☎️ contact apglobals 2020-10-05 06:30:39+00:00 1.0 1368682672 20695 bcpt binance top gainer amazing pump signal given to premium members 2020-10-05 04:17:57+00:00 1.0 1368682672 20651 scrt was our pump coin amazing calls by our team 2020-10-04 02:36:16+00:00 1.0 1368682672 20650 scrt next pump coin 2020-10-04 02:35:15+00:00 1.0 1368682672 20617 nbs result start price 67 price hit 106 huge very quick profit 58 in just 20 minutes to know next pump coin name ☎️ contact apglobals 2020-10-02 03:34:34+00:00 1.0 1368682672 20531 5 minutes left to pump on binance 2020-09-30 16:55:08+00:00 1.0 1368682672 20530 15 minutes left to pump on binance 2020-09-30 16:45:39+00:00 1.0 1368682672 20528 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-30 16:04:37+00:00 1.0 1368682672 20520 next pump coin name shared in premium channel 2020-09-30 14:07:49+00:00 1.0 1368682672 20509 orn result 3rd target achieved in just 5 minutes ✅✅✅ one more huge very quick profit 19 amazing breakout signal given to premium members to know next pump coin name ☎️ contact apglobals 2020-09-30 10:22:25+00:00 1.0 1368682672 20491 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-30 05:13:53+00:00 1.0 1368682672 20476 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-29 18:26:24+00:00 1.0 1368682672 20461 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-29 16:36:21+00:00 1.0 1368682672 20429 omg result start price 2984 price hit 3947 huge quick profit 32 in just 20 hour to know next pump coin name ☎️ contact apglobals 2020-09-28 17:50:13+00:00 1.0 1368682672 20343 poa result start price 170 price hit 241 huge quick profit 41 in just 20 hour to know next pump coin name ☎️ contact apglobals 2020-09-26 16:40:26+00:00 1.0 1368682672 20320 req result 3rd target achieved in just 6 minutes ✅✅✅ one more huge very quick profit signals 25 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-09-26 06:35:52+00:00 1.0 1368682672 20194 trb result start price 1991 price hit 2500 one more huge quick profit 26 in just 7 minutes to know next pump coin name ☎️ contact apglobals 2020-09-23 17:01:59+00:00 1.0 1368682672 20147 nbs result start price 104 price hit 138 one more huge quick profit 32 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-09-22 05:29:28+00:00 1.0 1368682672 20135 req result start price 170 price hit 313 one more huge quick profit 84 in just 53 minutes to know next pump coin name ☎️ contact apglobals 2020-09-22 04:26:36+00:00 1.0 1368682672 20102 req result start price 188 price hit 230 one more huge quick profit 22 in just 6 minutes to know next pump coin name ☎️ contact apglobals 2020-09-20 17:51:09+00:00 1.0 1368682672 20096 vite result start price 162 price hit 217 one more huge quick profit 33 in just 12 minutes to know next pump coin name ☎️ contact apglobals 2020-09-20 17:32:06+00:00 1.0 1368682672 20089 nkn result start price 189 price hit 299 one more huge quick profit 58 in just 26 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-09-20 16:48:28+00:00 1.0 1368682672 20043 nmr result start price 2753 price hit 3659 huge quick profit 32 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-09-20 04:40:02+00:00 1.0 1368682672 20003 qlc result all targets achieved in just 34 minutes ✅✅✅✅ huge quick profit 38 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals 2020-09-19 05:55:47+00:00 1.0 1368682672 19916 pump result gvt start price 1340 weve reached 1800 quick profit 34 to know next pump coin name contact apglobals for premium membership 2020-09-17 18:17:24+00:00 1.0 1368682672 19912 pump coin name gvt 2020-09-17 18:00:25+00:00 1.0 1368682672 19911 next post will be coin name 2020-09-17 17:55:39+00:00 1.0 1368682672 19910 5 minutes left to pump on binance 2020-09-17 17:55:39+00:00 1.0 1368682672 19909 15 minutes left to pump on binance 2020-09-17 17:45:07+00:00 1.0 1368682672 19908 45 minutes left to pump on binance to know coin name join premium and recover your losses ☎ contact apglobals 2020-09-17 17:15:06+00:00 1.0 1368682672 19907 next pump scheduled ⏰ thursday 17092020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-17 17:14:15+00:00 1.0 1368682672 19885 next pump scheduled ⏰ thursday 17092020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-17 12:12:30+00:00 1.0 1368682672 19847 next pump scheduled ⏰ thursday 17092020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-16 18:18:35+00:00 1.0 1368682672 19831 next post will be coin name 2020-09-16 15:55:11+00:00 1.0 1368682672 19830 5 minutes left to pump on binance 2020-09-16 15:55:11+00:00 1.0 1368682672 19828 15 minutes left to pump on binance 2020-09-16 15:46:20+00:00 1.0 1368682672 19827 30 minutes left to pump on binance 2020-09-16 15:30:12+00:00 1.0 1368682672 19814 next pump scheduled ⏰ wednesday 16092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-16 09:44:50+00:00 1.0 1368682672 19777 iris result start price 630 price hit 872 one more quick profit 38 in just 15 minutes to know next pump coin name ☎️ contact apglobals 2020-09-15 14:23:25+00:00 1.0 1368682672 19743 3 hour 40 minutes left to pump on binance to know coin name join premium and recover your losses ☎ contact apglobals 2020-09-15 04:20:36+00:00 1.0 1368682672 19742 next pump scheduled ⏰ tuesday 15092020 at 8 am gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-15 04:20:36+00:00 1.0 1368682672 19728 wnxm result start price 4780 price hit 6700 one more huge quick profit 40 in just 11 hour to know next pump coin name ☎️ contact apglobals 2020-09-14 17:45:59+00:00 1.0 1368682672 19629 yfii result start price 41280 price hit 57896 huge quick profit 40 in just 14 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-12 10:27:10+00:00 1.0 1368682672 19578 adx result start price 1564 price hit 3306 one more huge quick profit 111 in just 13 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-11 04:47:14+00:00 1.0 1368682672 19560 pump coin name qsp 2020-09-10 18:00:40+00:00 1.0 1368682672 19557 next pump scheduled ⏰ thursday 10092020 at 6 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-10 15:03:37+00:00 1.0 1368682672 19539 next pump scheduled ⏰ thursday 10092020 at 6 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-10 13:16:11+00:00 1.0 1368682672 19537 elf hit 1479 finally all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 33 to know next pump coin name ☎️ contact apglobals 2020-09-10 13:14:43+00:00 1.0 1368682672 19477 sushi result start price 2390 price hit 3107 huge quick profit 30 within 17 hour to know next pump coin name ☎️ contact apglobals 2020-09-09 17:44:57+00:00 1.0 1368682672 19457 sol result 2nd target achieved in just 11 minutes ✅✅ huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-09 15:10:58+00:00 1.0 1368682672 19456 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-09 14:57:25+00:00 1.0 1368682672 19451 next pump coin name shared in premium channel 2020-09-09 14:48:48+00:00 1.0 1368682672 19415 pump coin name stpt 2020-09-08 16:15:15+00:00 1.0 1368682672 19413 next pump scheduled ⏰ tuesday 08092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-08 16:15:15+00:00 1.0 1368682672 19401 next pump scheduled ⏰ tuesday 08092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-08 13:05:36+00:00 1.0 1368682672 19346 chr result start price 509 price hit 585 one more quick profit 15 to know next pump coin name ☎️ contact apglobals 2020-09-07 12:16:07+00:00 1.0 1368682672 19323 pump result qlc start price 175 weve reached 242 huge quick profit 38 to know next pump coin name contact apglobals for premium membership 2020-09-06 16:30:19+00:00 1.0 1368682672 19318 dip buy pump coin name qlc 2020-09-06 16:00:49+00:00 1.0 1368682672 19314 next pump scheduled ⏰ sunday 06092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-06 13:14:56+00:00 1.0 1368682672 19289 next pump scheduled ⏰ sunday 06092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-06 10:09:41+00:00 1.0 1368682672 19175 dnt next pump coin name hurry up 2020-09-04 18:01:45+00:00 1.0 1368682672 19167 because of btc fluctuation pump did not go well but price was at top after 3 minutes everyone is in profit 2020-09-04 17:05:49+00:00 1.0 1368682672 19156 next post will be coin name 2020-09-04 15:55:57+00:00 1.0 1368682672 19155 5 minutes left to pump on binance 2020-09-04 15:55:44+00:00 1.0 1368682672 19154 15 minutes left to pump on binance 2020-09-04 15:45:44+00:00 1.0 1368682672 19153 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-09-04 15:30:57+00:00 1.0 1368682672 19146 next pump scheduled ⏰ friday 04092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-04 08:23:31+00:00 1.0 1368682672 19129 next pump scheduled ⏰ friday 04092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-04 03:52:54+00:00 1.0 1368682672 19098 qsp result start price 409 price hit 619 one more huge quick profit 50 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-09-03 05:35:02+00:00 1.0 1368682672 18893 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-31 15:30:33+00:00 1.0 1368682672 18874 bts result start price 273 price hit 360 one more huge quick profit 31 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-08-31 10:43:32+00:00 1.0 1368682672 18825 tct result start price 111 price hit 140 one more huge quick profit 26 in just 8 minutes to know next pump coin name ☎️ contact apglobals 2020-08-30 07:55:14+00:00 1.0 1368682672 18819 gvt result start price 1936 price hit 3333 one more huge quick profit 72 in just 5 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-30 07:33:46+00:00 1.0 1368682672 18686 cmt result start price 132 price hit 184 huge quick profit 39 in just 3 hour to know next pump coin name ☎️ contact apglobals 2020-08-27 17:10:01+00:00 1.0 1368682672 18662 cnd result start price 109 price hit 136 huge quick profit 24 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-08-27 12:56:37+00:00 1.0 1368682672 18541 pump result rdn start price 3750 weve reached 5194 huge quick profit 38 to know next pump coin name contact apglobals for premium membership 2020-08-25 18:15:36+00:00 1.0 1368682672 18535 pump coin name rdn 2020-08-25 18:00:13+00:00 1.0 1368682672 18534 next post will be coin name 2020-08-25 17:56:43+00:00 1.0 1368682672 18533 5 minutes left to pump on binance 2020-08-25 17:55:12+00:00 1.0 1368682672 18532 15 minutes left to pump on binance 2020-08-25 17:45:30+00:00 1.0 1368682672 18521 cnd result start price 111 price hit 133 one more quick profit 20 in just 25 hour to know next pump coin name earlier ☎️ contact apglobals 2020-08-25 16:29:30+00:00 1.0 1368682672 18515 gxs result start price 7386 price hit 8840 one more quick profit 20 in just 5 hour to know next pump coin name ☎️ contact apglobals 2020-08-25 16:08:03+00:00 1.0 1368682672 18510 2 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 16:00:35+00:00 1.0 1368682672 18508 4 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 14:02:51+00:00 1.0 1368682672 18507 7 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 11:16:36+00:00 1.0 1368682672 18506 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-25 11:16:06+00:00 1.0 1368682672 18504 135 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 04:34:32+00:00 1.0 1368682672 18481 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-24 18:20:48+00:00 1.0 1368682672 18418 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-23 17:22:22+00:00 1.0 1368682672 18399 agi result start price 560 price hit 786 one more huge quick profit 40 in just 20 hour to know next pump coin name ☎️ contact apglobals 2020-08-23 10:26:24+00:00 1.0 1368682672 18371 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-22 15:41:31+00:00 1.0 1368682672 18354 next pump scheduled ⏰ saturday 22082020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-22 10:14:01+00:00 1.0 1368682672 18337 gnt result start price 823 price hit 1518 one more huge quick profit 84 in just 5 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-08-22 04:45:33+00:00 1.0 1368682672 18326 next pump scheduled ⏰ saturday 22082020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-22 01:28:03+00:00 1.0 1368682672 18296 qtum result start price 3309 price hit 4650 one more huge quick profit 40 in just 9 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-08-21 07:41:40+00:00 1.0 1368682672 18290 zrx result start price 5115 price hit 7022 one more huge quick profit 37 in just 10 hour to know next pump coin name ☎️ contact apglobals 2020-08-21 07:21:29+00:00 1.0 1368682672 18243 omg result start price 2527 price hit 4171 huge quick profit 65 in just 29 hour amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-20 16:44:05+00:00 1.0 1368682672 18193 poa result start price 463 price hit 579 one more quick profit 25 in just 53 minutes to know next pump coin name ☎️ contact apglobals 2020-08-19 15:20:48+00:00 1.0 1368682672 18158 ren result start price 3361 price hit 4572 one more huge quick profit 36 in just 24 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-18 18:34:28+00:00 1.0 1368682672 18120 ctsi result start price 935 price hit 1210 one more huge quick profit 29 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-08-18 11:50:25+00:00 1.0 1368682672 18054 eng result start price 4357 price hit 5760 one more huge profit 32 in 245 hour more quick profit signals available in premium channel hurry up ‍♂ to know next pump coin name ☎️ contact apglobals 2020-08-17 11:46:37+00:00 1.0 1368682672 18041 rdn result start price 3965 price hit 5490 huge quick profit 38 in 18 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-17 09:32:07+00:00 1.0 1368682672 18020 omg result start price 1945 price hit 2689 one more huge quick profit 38 in just 65 hour amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-08-17 06:40:44+00:00 1.0 1368682672 17839 qtum result 2nd target achieved in just 37 minutes ✅✅ one more huge profit 38 using 5x leverage amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-08-14 08:28:35+00:00 1.0 1368682672 17742 waves result all targets achieved in just 24 minutes ✅✅✅✅ one more huge quick profit 43 to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-13 10:02:41+00:00 1.0 1368682672 17522 iris result all targets achieved in just 52 minutes ✅✅✅✅ one more huge quick profit 65 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-10 13:43:41+00:00 1.0 1368682672 17414 band result start price 90620 price hit 118879 one more huge quick profit 31 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-09 11:41:33+00:00 1.0 1368682672 17183 pump result ppt start price 2684 weve reached 3995 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2020-08-04 18:16:48+00:00 1.0 1368682672 17178 pump coin name ppt 2020-08-04 18:00:26+00:00 1.0 1368682672 17177 next post will be coin name 2020-08-04 17:55:12+00:00 1.0 1368682672 17176 5 minutes left to pump on binance 2020-08-04 17:55:12+00:00 1.0 1368682672 17175 15 minutes left to pump on binance 2020-08-04 17:45:05+00:00 1.0 1368682672 17171 next pump scheduled ⏰ tuesday 04082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-04 12:45:39+00:00 1.0 1368682672 17148 next pump scheduled ⏰ tuesday 04082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-03 18:52:07+00:00 1.0 1368682672 17135 mco result start price 3863 price hit 5039 huge quick profit 30 in just 30 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-03 07:28:13+00:00 1.0 1368682672 17127 next pump scheduled ⏰ tuesday 04082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-03 05:19:28+00:00 1.0 1368682672 17125 ark hit 5517 finally all targets achieved in just 215 hour ✅✅✅✅ huge quick profit 36 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-03 04:59:05+00:00 1.0 1368682672 17018 fio result 2nd target achieved in just 1 hour ✅✅ one more very quick huge profit 28 to know next pump coin name ☎️ contact apglobals 2020-07-31 10:35:21+00:00 1.0 1368682672 16929 via result start price 2029 price hit 3285 one more huge quick profit 61 in just 1 hour amazing breakout signal given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-30 08:15:25+00:00 1.0 1368682672 16857 adx result start price 1431 price hit 2241 huge quick profit 56 in just 2 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-29 05:39:07+00:00 1.0 1368682672 16827 adx result start price 1117 price hit 1799 huge quick profit 61 in just 45 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-28 18:08:12+00:00 1.0 1368682672 16814 oax result start price 784 price hit 1159 huge quick profit 47 in just 8 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-28 17:36:11+00:00 1.0 1368682672 16801 pump result poa start price 141 weve reached 175 huge quick profit 24 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2020-07-28 16:11:39+00:00 1.0 1368682672 16788 next post will be coin name 2020-07-28 15:50:48+00:00 1.0 1368682672 16787 10 minutes left to pump on binance 2020-07-28 15:50:34+00:00 1.0 1368682672 16784 25 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-07-28 15:35:03+00:00 1.0 1368682672 16783 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-28 15:32:58+00:00 1.0 1368682672 16780 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact apglobals 2020-07-28 15:23:56+00:00 1.0 1368682672 16772 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-28 14:11:34+00:00 1.0 1368682672 16769 sys result start price 669 price hit 1157 huge quick profit 72 in just 8 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-28 12:32:54+00:00 1.0 1368682672 16762 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-28 10:37:39+00:00 1.0 1368682672 16748 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-27 16:37:27+00:00 1.0 1368682672 16710 bnt result start price 13798 price hit 17010 one more huge quick profit 23 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-07-26 15:50:11+00:00 1.0 1368682672 16703 perl result start price 548 price hit 709 one more huge quick profit 29 within 9 hour to know next pump coin name ☎️ contact apglobals 2020-07-26 14:59:37+00:00 1.0 1368682672 16604 pump coin name elf 2020-07-24 17:00:24+00:00 1.0 1368682672 16603 next post will be coin name 2020-07-24 16:55:23+00:00 1.0 1368682672 16602 5 minutes left to pump on binance 2020-07-24 16:55:12+00:00 1.0 1368682672 16601 14 minutes left to pump on binance 2020-07-24 16:46:52+00:00 1.0 1368682672 16599 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-24 16:02:07+00:00 1.0 1368682672 16586 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-24 11:58:35+00:00 1.0 1368682672 16565 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-24 05:04:15+00:00 1.0 1368682672 16532 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-23 14:25:51+00:00 1.0 1368682672 16524 sys hit 1655 finally all targets achieved in just 2 hour 8 minutes ✅✅✅✅ huge quick profit 56 next breakout pump signal will be shared in few hours only in premium channel hurry up ☎ contact apglobals 2020-07-23 13:29:46+00:00 1.0 1368682672 16522 sys unstoppable amazing breakout pump signal given to premium members 2020-07-23 13:00:26+00:00 1.0 1368682672 16501 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-22 16:39:36+00:00 1.0 1368682672 16487 amb result start price 206 price hit 255 one more huge quick profit 23 in just 45 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-22 14:32:28+00:00 1.0 1368682672 16442 nxs result start price 2490 price hit 3100 one more huge quick profit 24 in just 31 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-21 16:06:18+00:00 1.0 1368682672 16421 dlt hit 808 finally all targets achieved within 2 hour 45 minutes ✅✅✅✅ huge very quick profit 49 amazing pump call shared in premium channel to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-21 13:17:55+00:00 1.0 1368682672 16390 mana result start price 471 price hit 600 one more huge quick profit 27 within 15 hour to know next pump coin name ☎️ contact apglobals 2020-07-21 09:11:36+00:00 1.0 1368682672 16368 blz result start price 671 price hit 1045 one more huge quick profit 55in just 25 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-20 17:31:44+00:00 1.0 1368682672 16248 ftm breakout pump result start price 114 price hit 144 huge quick profit 26 within 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-18 05:00:02+00:00 1.0 1368682672 16127 blz pumped hard price hit 619 huge quick profit 48 amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-07-15 03:33:49+00:00 1.0 1368682672 16090 lrc result start price 1319 price hit 1756 one more huge quick profit 33 in just 6 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-13 14:59:56+00:00 1.0 1368682672 16084 arn result start price 563 price hit 1838 huge very quick profit 226 in just 10 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-13 13:57:01+00:00 1.0 1368682672 15967 arpa unstoppable proce hit 397 huge quick profit 126 in just 16 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-10 03:23:59+00:00 1.0 1368682672 15956 arpa result start price 175 price hit 237 huge quick profit 35 in just 45 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership and earn huge with 2020-07-09 14:32:58+00:00 1.0 1368682672 15780 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-07-04 16:13:54+00:00 1.0 1368682672 15415 pump coin name evx 2020-06-24 16:00:21+00:00 1.0 1368682672 15414 next post will be coin name 2020-06-24 15:55:20+00:00 1.0 1368682672 15413 5 minutes left to pump on binance 2020-06-24 15:55:06+00:00 1.0 1368682672 15412 15 minutes left to pump on binance 2020-06-24 15:45:36+00:00 1.0 1368682672 15411 30 minutes left to pump on binance 2020-06-24 15:30:59+00:00 1.0 1368682672 15399 next pump scheduled ⏰ wednesday 24062020 at 4 pm gmt exchange binance last pump results gxs 31 qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-24 08:35:22+00:00 1.0 1368682672 15391 next pump scheduled ⏰ wednesday 24062020 at 4 pm gmt exchange binance last pump results gxs 31 qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-24 04:13:16+00:00 1.0 1368682672 15185 ark result start price 3099 price hit 4300 one more huge quick profit 38 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-18 07:12:49+00:00 1.0 1368682672 15120 pump result gxs start price 6350 weve reached 8306 huge quick profit 31 to know next pump coin name contact apglobals for premium membership 2020-06-15 16:12:14+00:00 1.0 1368682672 15117 gxs proof call shared 3 minutes before pump in premium channel 2020-06-15 16:09:12+00:00 1.0 1368682672 15110 next post will be coin name 2020-06-15 15:57:25+00:00 1.0 1368682672 15109 15 minutes left to pump on binance 2020-06-15 15:46:11+00:00 1.0 1368682672 15105 next pump scheduled ⏰ monday 15062020 at 4 pm gmt exchange binance last pump results qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-15 04:11:24+00:00 1.0 1368682672 15072 pump result qsp start price 210 weve reached 299 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2020-06-13 16:31:49+00:00 1.0 1368682672 15064 pump coin name qsp 2020-06-13 16:00:41+00:00 1.0 1368682672 15063 next post will be coin name 2020-06-13 15:54:02+00:00 1.0 1368682672 15062 15 minutes left to pump on binance 2020-06-13 15:45:36+00:00 1.0 1368682672 15061 30 minutes left to pump on binance 2020-06-13 15:32:21+00:00 1.0 1368682672 15059 next pump scheduled ⏰ saturday 13062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-13 15:01:31+00:00 1.0 1368682672 15043 next pump scheduled ⏰ saturday 13062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-13 10:10:22+00:00 1.0 1368682672 14992 tfuel result start price 72 price hit 102 huge quick profit 41 in just 2 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-12 10:53:03+00:00 1.0 1368682672 14941 pump coin name via 2020-06-10 16:00:03+00:00 1.0 1368682672 14940 next post will be coin name 2020-06-10 15:56:01+00:00 1.0 1368682672 14939 about 5 minutes left to pump on binance 2020-06-10 15:55:48+00:00 1.0 1368682672 14938 about 10 minutes left to pump on binance 2020-06-10 15:52:12+00:00 1.0 1368682672 14937 about 15 minutes left to pump on binance 2020-06-10 15:45:34+00:00 1.0 1368682672 14933 next pump scheduled ⏰ wednesday 10062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-10 14:11:33+00:00 1.0 1368682672 14922 next pump scheduled ⏰ wednesday 10062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-10 05:58:01+00:00 1.0 1368682672 14919 lun result start price 1162 price hit 1610 huge quick profit 38in just 15 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-10 04:01:45+00:00 1.0 1368682672 14913 gvt result start price 1151 price hit 1465 one more huge profit 27 within 5 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-09 13:26:41+00:00 1.0 1368682672 14873 pump coin name ppt by cryptopumpisland admin apglobals 2020-06-08 16:06:11+00:00 1.0 1368682672 14872 coin name will be posted in premium channel anytime soon within next 1 hour this time coin name will be posted at random time within next 1 hour to avoid bots involve in pump so that our members will earn huge expecting 100200 pump to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-06-08 15:55:20+00:00 1.0 1368682672 14869 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-08 13:12:22+00:00 1.0 1368682672 14858 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-08 09:54:13+00:00 1.0 1368682672 14849 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-08 04:05:55+00:00 1.0 1368682672 14721 pump result ctxc start price 1155 weve reached 3599 huge quick profit 211 to know next pump coin name contact apglobals for premium membership 2020-06-03 16:24:44+00:00 1.0 1368682672 14717 pump coin name ctxc 2020-06-03 16:00:34+00:00 1.0 1368682672 14716 next post will be coin name 2020-06-03 15:55:39+00:00 1.0 1368682672 14715 5 minutes left to pump on binance 2020-06-03 15:55:25+00:00 1.0 1368682672 14714 15 minutes left to pump on binance 2020-06-03 15:45:33+00:00 1.0 1368682672 14713 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-06-03 15:30:13+00:00 1.0 1368682672 14710 1 hour 10 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-06-03 14:49:42+00:00 1.0 1368682672 14708 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-03 14:49:14+00:00 1.0 1368682672 14691 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-03 07:40:20+00:00 1.0 1368682672 14664 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-03 03:46:31+00:00 1.0 1368682672 14535 pump result via start price 1813 weve reached 5200 huge quick profit 186 to know next pump coin name contact apglobals for premium membership 2020-05-29 16:18:08+00:00 1.0 1368682672 14533 pump coin name via 2020-05-29 16:00:05+00:00 1.0 1368682672 14532 next post will be coin name 2020-05-29 15:55:41+00:00 1.0 1368682672 14531 5 minutes left to pump on binance 2020-05-29 15:55:11+00:00 1.0 1368682672 14530 15 minutes left to pump on binance 2020-05-29 15:45:08+00:00 1.0 1368682672 14527 next pump scheduled ⏰ friday 29052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-29 13:11:18+00:00 1.0 1368682672 14517 next pump scheduled ⏰ friday 29052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-29 05:28:51+00:00 1.0 1368682672 14458 band result start price 14800 price hit 23010 huge quick profit 55 in just 50 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-05-27 11:53:21+00:00 1.0 1368682672 14435 pump result ong start price 1209 weve reached 2534 huge quick profit 109 to know next pump coin name contact apglobals for premium membership 2020-05-26 16:27:32+00:00 1.0 1368682672 14428 breakout pump coin name ong 2020-05-26 16:01:05+00:00 1.0 1368682672 14426 next pump signal will be shared in only in premium channel in few minutes ☎️ contact apglobals for premium membership 2020-05-26 14:33:32+00:00 1.0 1368682672 14040 next post will be coin name 2020-05-21 15:55:52+00:00 1.0 1368682672 14039 15 minutes left to pump on binance 2020-05-21 15:46:00+00:00 1.0 1368682672 14038 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-05-21 15:30:23+00:00 1.0 1368682672 14025 next pump scheduled ⏰ thursday 21052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-21 10:44:14+00:00 1.0 1368682672 13994 next pump scheduled ⏰ thursday 21052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-21 07:17:43+00:00 1.0 1368682672 13762 30 minutes left hurry up ‍♂ 2020-05-14 17:53:55+00:00 1.0 1368682672 13759 pump result yoyo start price 76 weve reached 90 huge quick profit 18 to know next pump coin name contact apglobals for premium membership 2020-05-14 16:29:25+00:00 1.0 1368682672 13744 next post will be coin name 2020-05-14 15:55:51+00:00 1.0 1368682672 13743 5 minutes left to pump on binance 2020-05-14 15:55:10+00:00 1.0 1368682672 13741 15 minutes left to pump on binance 2020-05-14 15:45:18+00:00 1.0 1368682672 13733 next pump scheduled ⏰ thursday 14052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-14 11:57:20+00:00 1.0 1368682672 13713 next pump scheduled ⏰ thursday 14052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-14 07:32:51+00:00 1.0 1368682672 13645 next post will be coin name 2020-05-09 15:50:34+00:00 1.0 1368682672 13644 10 minutes left to pump on binance 2020-05-09 15:50:10+00:00 1.0 1368682672 13643 30 minutes left to pump on binance 2020-05-09 15:32:08+00:00 1.0 1368682672 13640 next pump scheduled ⏰ saturday 09052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-09 14:35:07+00:00 1.0 1368682672 13543 next post will be coin name 2020-05-05 15:57:06+00:00 1.0 1368682672 13542 5 minutes left to pump on binance be ready with you btc 2020-05-05 15:55:49+00:00 1.0 1368682672 13541 15 minutes left to pump on binance 2020-05-05 15:45:06+00:00 1.0 1368682672 13539 30 minutes left to pump on binance 2020-05-05 15:30:44+00:00 1.0 1368682672 13536 next pump scheduled ⏰ tuesday 05052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-05 14:01:01+00:00 1.0 1368682672 13528 next pump scheduled ⏰ tuesday 05052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-05 12:25:21+00:00 1.0 1368682672 13519 next pump scheduled ⏰ tuesday 05052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-05 11:11:09+00:00 1.0 1368682672 13317 breakout pump coin ark 2020-04-25 14:26:16+00:00 1.0 1368682672 13296 pump coin name bnt 2020-04-24 15:59:29+00:00 1.0 1368682672 13295 next post will be coin name 2020-04-24 15:56:58+00:00 1.0 1368682672 13294 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-04-24 15:31:08+00:00 1.0 1368682672 13287 next pump scheduled ⏰ friday 24042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-24 13:41:00+00:00 1.0 1368682672 13273 next pump scheduled ⏰ friday 24042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-24 07:26:45+00:00 1.0 1368682672 13173 gvt signals shared in premium channel 20 minutes before pump 2020-04-15 16:19:57+00:00 1.0 1368682672 13169 pump coin name gvt 2020-04-15 15:56:53+00:00 1.0 1368682672 13168 next post will be coin name 2020-04-15 15:54:14+00:00 1.0 1368682672 13167 ⏰ 10 minutes left to pump on binance 2020-04-15 15:50:13+00:00 1.0 1368682672 13166 ⏰ 30 minutes left to pump on binance 2020-04-15 15:31:18+00:00 1.0 1368682672 13164 next pump scheduled ⏰ wednesday 15042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-15 09:03:40+00:00 1.0 1368682672 13157 pump coin name mith 2020-04-14 16:00:31+00:00 1.0 1368682672 13156 next post will be coin name 2020-04-14 15:53:17+00:00 1.0 1368682672 13155 ⏰ 15 minutes left to pump on binance 2020-04-14 15:45:09+00:00 1.0 1368682672 13144 next pump scheduled ⏰ tuesday 14042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-14 08:10:40+00:00 1.0 1368682672 13132 ⏰ 15 minutes left to pump on binance 2020-04-13 11:46:30+00:00 1.0 1368682672 13131 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-04-13 11:31:58+00:00 1.0 1368682672 13128 next pump scheduled ⏰ monday 13042020 at 1200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-13 09:03:08+00:00 1.0 1368682672 13078 pump result gnt start price 508 weve reached 739 huge quick profit 45 to know next pump coin name contact apglobals for premium membership 2020-04-10 16:25:47+00:00 1.0 1368682672 13073 next post will be coin name 2020-04-10 15:52:09+00:00 1.0 1368682672 13072 10 minutes left to pump on binance 2020-04-10 15:51:41+00:00 1.0 1368682672 13065 next pump scheduled ⏰ friday 10042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-10 08:20:10+00:00 1.0 1368682672 12975 next post will be coin name 2020-04-04 15:49:43+00:00 1.0 1368682672 12974 10 minutes left to pump on binance 2020-04-04 15:49:14+00:00 1.0 1368682672 12973 30 minutes left to pump on binance 2020-04-04 15:31:49+00:00 1.0 1368682672 12967 next pump scheduled ⏰ saturday 04042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-04 07:26:30+00:00 1.0 1368682672 12915 pump result grs start price 2380 weve reached 3434 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2020-04-02 16:22:47+00:00 1.0 1368682672 12907 next post will be coin name 2020-04-02 15:54:50+00:00 1.0 1368682672 12904 30 minutes left to pump on binance 2020-04-02 15:31:52+00:00 1.0 1368682672 12894 next pump scheduled ⏰ thursday 02042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-02 07:28:43+00:00 1.0 1368682672 12775 next pump signal will be shared in only in premium channel in few minutes ☎️ contact apglobals for premium membership 2020-03-28 11:55:58+00:00 1.0 1368682672 12744 pump result rlc start price 4560 weve reached 6790 huge quick profit 49 to know next pump coin name contact apglobals for premium membership 2020-03-27 16:13:17+00:00 1.0 1368682672 12737 next pump signal will be shared in only in premium channel in few minutes ☎️ contact apglobals for premium membership 2020-03-27 15:55:03+00:00 1.0 1368682672 12702 pump result edo start price 1730 weve reached 2446 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2020-03-26 16:36:04+00:00 1.0 1368682672 12694 next post will be coin name 2020-03-26 15:58:29+00:00 1.0 1368682672 12693 15 minutes left to pump on binance 2020-03-26 15:45:59+00:00 1.0 1368682672 12692 50 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-03-26 15:10:31+00:00 1.0 1368682672 12683 next pump scheduled ⏰ thursday 26032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-26 10:14:44+00:00 1.0 1368682672 12637 next post will be coin name 2020-03-24 15:47:42+00:00 1.0 1368682672 12636 20 minutes left to pump on binance 2020-03-24 15:38:02+00:00 1.0 1368682672 12635 next pump scheduled ⏰ tuesday 24032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-24 12:29:09+00:00 1.0 1368682672 12375 next post will be coin name be ready with you btc 2020-03-13 15:55:49+00:00 1.0 1368682672 12374 5 minutes left to pump on binance be ready with you btc 2020-03-13 15:55:07+00:00 1.0 1368682672 12372 30 minutes left to pump on binance be ready with you btc 2020-03-13 15:31:04+00:00 1.0 1368682672 12366 next pump scheduled ⏰ friday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-13 14:05:17+00:00 1.0 1368682672 12365 3 hour left to pump on binance last pump result qlc 27 to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-03-13 13:03:17+00:00 1.0 1368682672 12337 next pump scheduled ⏰ friday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-13 09:59:41+00:00 1.0 1368682672 12314 next pump scheduled ⏰ friday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-13 04:18:15+00:00 1.0 1368682672 12287 pump result qlc start price 136 weve reached 173 huge quick profit 27 to know next pump coin name contact apglobals for premium membership 2020-03-12 16:15:00+00:00 1.0 1368682672 12275 if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-03-12 15:57:17+00:00 1.0 1368682672 12274 5 minutes left to pump on binance be ready with you btc 2020-03-12 15:55:08+00:00 1.0 1368682672 12273 10 minutes left to pump on binance be ready with you btc 2020-03-12 15:50:14+00:00 1.0 1368682672 12272 30 minutes left to pump on binance 2020-03-12 15:30:05+00:00 1.0 1368682672 12268 if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-03-12 12:23:02+00:00 1.0 1368682672 12261 next pump scheduled ⏰ thursday 12032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-12 10:02:35+00:00 1.0 1368682672 12247 next pump scheduled ⏰ thursday 12032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-12 06:54:08+00:00 1.0 1368682672 12244 pivx result start price 4949 price hit 7400 huge quick profit 49 in just 21 minutes to know next pump coin name ☎️ contact apglobals 2020-03-12 06:33:36+00:00 1.0 1368682672 12171 band hit 9656 huge quick profit 84 within 17 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-03-11 03:06:27+00:00 1.0 1368682672 11882 next post will be coin name 2020-02-26 17:55:26+00:00 1.0 1368682672 11881 5 minutes left to pump on binance 2020-02-26 17:55:15+00:00 1.0 1368682672 11879 15 minutes left to pump on binance 2020-02-26 17:45:32+00:00 1.0 1368682672 11878 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-02-26 17:39:44+00:00 1.0 1368682672 11877 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-02-26 17:31:29+00:00 1.0 1368682672 11869 next pump scheduled ⏰ wednesday 26022020 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-02-26 11:53:48+00:00 1.0 1368682672 10852 snt now hit 159 3rd target achieved within 13 hour ✅✅✅✅ huge quick profit 32 amazing breakout pump signal congrats premium members to know next pump coin ☎️ contact apglobals 2020-02-02 00:36:44+00:00 1.0 1368682672 10797 btc 200 dumped and pumped just before pump many outsiders didnt participated in pump we will schedule next pump soon still me managed to grab quick 7 within 2 minutes and price was up for about 5 minutes good coin to hold 2020-01-30 17:13:08+00:00 1.0 1368682672 10789 next post will be coin name 2020-01-30 16:55:18+00:00 1.0 1368682672 10788 5 minutes left to pump on binance 2020-01-30 16:55:18+00:00 1.0 1368682672 10787 10 minutes left to pump on binance 2020-01-30 16:50:11+00:00 1.0 1368682672 10786 15 minutes left to pump on binance 2020-01-30 16:45:22+00:00 1.0 1368682672 10785 30 minutes left to pump on binance 2020-01-30 16:30:10+00:00 1.0 1368682672 10784 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-30 16:30:10+00:00 1.0 1368682672 10776 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-30 15:31:58+00:00 1.0 1368682672 10772 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-30 14:13:48+00:00 1.0 1368682672 10743 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-30 05:07:14+00:00 1.0 1368682672 10730 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-29 18:22:36+00:00 1.0 1368682672 10721 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-29 17:13:32+00:00 1.0 1368682672 10720 next pump scheduled ⏰ thursday 29012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-29 16:48:55+00:00 1.0 1368682672 10093 gnt price hit 394 many are stuck in other alt coin thats why may not participated in pump also btc pumped today made sell pressure on all alt coins 2020-01-10 18:07:38+00:00 1.0 1368682672 10087 next post will be coin name 2020-01-10 17:55:24+00:00 1.0 1368682672 10086 5 minutes left to pump on binance 2020-01-10 17:55:15+00:00 1.0 1368682672 10085 10 minutes left to pump on binance 2020-01-10 17:50:09+00:00 1.0 1368682672 10083 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-10 17:20:32+00:00 1.0 1368682672 10074 next pump scheduled ⏰ friday 10012020 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-10 10:05:19+00:00 1.0 1368682672 10052 next post will be coin name 2020-01-09 16:55:17+00:00 1.0 1368682672 10051 5 minutes left to pump on binance 2020-01-09 16:55:07+00:00 1.0 1368682672 10050 10 minutes left to pump on binance 2020-01-09 16:50:08+00:00 1.0 1368682672 10049 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-09 16:45:47+00:00 1.0 1368682672 10048 15 minutes left to pump on binance 2020-01-09 16:45:07+00:00 1.0 1368682672 10047 30 minutes left to pump on binance 2020-01-09 16:29:52+00:00 1.0 1368682672 10038 next pump scheduled ⏰ thursday 09012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-09 10:00:48+00:00 1.0 1368682672 10017 next pump scheduled ⏰ thursday 09012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-09 05:08:39+00:00 1.0 1368682672 10013 ong hit 3350 huge quick profit 52 within 32 minutes to know next pump coin ☎️ contact apglobals for premium membership 2020-01-09 03:40:24+00:00 1.0 1368682672 10001 next pump scheduled ⏰ thursday 09012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-08 17:20:58+00:00 1.0 1368682672 9993 next post will be coin name 2020-01-08 16:55:56+00:00 1.0 1368682672 9992 5 minutes left to pump on binance 2020-01-08 16:55:42+00:00 1.0 1368682672 9991 10 minutes left to pump on binance 2020-01-08 16:50:27+00:00 1.0 1368682672 9990 15 minutes left to pump on binance 2020-01-08 16:45:05+00:00 1.0 1368682672 9989 30 minutes left to pump on binance 2020-01-08 16:30:10+00:00 1.0 1368682672 9988 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-08 16:04:20+00:00 1.0 1368682672 9979 next pump scheduled ⏰ wednesday 08012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-08 13:06:26+00:00 1.0 1368682672 9963 next pump scheduled ⏰ wednesday 08012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-08 10:15:28+00:00 1.0 1368682672 9424 pump result nav start price 1159 weve reached 1450 huge quick profit 25 to know next pump coin name contact apglobals for premium membership 2019-12-20 03:09:49+00:00 1.0 1368682672 9421 pump result nav start price 1159 weve reached 1450 huge quick profit 25 to know next pump coin name contact apglobals for premium membership 2019-12-19 18:10:42+00:00 1.0 1368682672 9416 pump result nav start price 1159 weve reached 1450 huge quick profit 25 to know next pump coin name contact apglobals for premium membership 2019-12-19 17:38:45+00:00 1.0 1368682672 9401 next post will be coin name 2019-12-19 16:55:35+00:00 1.0 1368682672 9400 5 minutes left to pump on binance 2019-12-19 16:55:15+00:00 1.0 1368682672 9399 10 minutes left to pump on binance 2019-12-19 16:50:09+00:00 1.0 1368682672 9398 15 minutes left to pump on binance 2019-12-19 16:45:22+00:00 1.0 1368682672 9397 30 minutes left to pump on binance 2019-12-19 16:32:41+00:00 1.0 1368682672 9395 next pump scheduled ⏰ thursday 19122019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-12-19 16:03:20+00:00 1.0 1368682672 9377 next pump scheduled ⏰ thursday 19122019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-12-19 11:15:07+00:00 1.0 1368682672 9138 go and cnd north top gainer on binance amazing calls by our team to know next pump coin name ☎️ contact apglobals 2019-12-11 05:45:10+00:00 1.0 1368682672 9096 matic result 3rd target achieved within 53 minutes ✅✅✅ huge quick profit 32 so far to know next pump coin ☎️ contact apglobals 2019-12-10 05:41:44+00:00 1.0 1368682672 8282 key result update all targets achieved within 18 hour✅✅✅✅ huge huge quick profit 68 in just 18 hour amazing breakout pump signal shared in premium channel you can earn back fees within 1 day to know next breakout pump signal ☎️ contact apglobals 2019-11-22 06:19:24+00:00 1.0 1368682672 8265 pump result edo start price 3342 weve reached 3680 quick profit 10 many members are holding other alt coins thats why only few members participated next pump will be huge to know next pump coin name contact apglobals for premium membership 2019-11-21 18:21:38+00:00 1.0 1368682672 8257 next post will be coin name 2019-11-21 17:58:48+00:00 1.0 1368682672 8256 5 minutes left to pump on binance 2019-11-21 17:55:09+00:00 1.0 1368682672 8255 10 minutes left to pump on binance 2019-11-21 17:50:05+00:00 1.0 1368682672 8254 15 minutes left to pump on binance 2019-11-21 17:45:23+00:00 1.0 1368682672 8253 30 minutes left to pump on binance 2019-11-21 17:32:49+00:00 1.0 1368682672 8239 next pump scheduled ⏰ thursday 21112019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-21 13:14:15+00:00 1.0 1368682672 7921 next post will be coin name 2019-11-11 16:56:35+00:00 1.0 1368682672 7920 5 minutes left to pump on binance 2019-11-11 16:56:04+00:00 1.0 1368682672 7919 10 minutes left to pump on binance 2019-11-11 16:50:50+00:00 1.0 1368682672 7918 15 minutes left to pump on binance 2019-11-11 16:47:15+00:00 1.0 1368682672 7917 30 minutes left to pump on binance 2019-11-11 16:31:25+00:00 1.0 1368682672 7911 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-11 15:58:03+00:00 1.0 1368682672 7892 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-11 10:59:30+00:00 1.0 1368682672 7884 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-11 10:33:11+00:00 1.0 1368682672 7853 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-11 05:04:01+00:00 1.0 1368682672 7845 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-10 09:41:07+00:00 1.0 1368682672 7714 next post will be coin name 2019-11-05 15:55:30+00:00 1.0 1368682672 7713 5 minutes left to pump on binance 2019-11-05 15:55:24+00:00 1.0 1368682672 7712 10 minutes left to pump on binance 2019-11-05 15:50:34+00:00 1.0 1368682672 7711 guys btc on move and alts have huge sell orders lets see if we find good coin to pump 2019-11-05 15:36:02+00:00 1.0 1368682672 7710 30 minutes left to pump on binance 2019-11-05 15:30:09+00:00 1.0 1368682672 7707 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-05 14:44:41+00:00 1.0 1368682672 7693 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-05 06:17:44+00:00 1.0 1368682672 7523 pump result ong start price 1764 weve reached 1881 quick profit 7 many members are holding other alt coins thats why only few members participated next pump will be huge to know next pump coin name contact apglobals for premium membership 2019-10-29 18:31:26+00:00 1.0 1368682672 7513 next post will be coin name 2019-10-29 17:55:26+00:00 1.0 1368682672 7512 5 minutes left to pump on binance 2019-10-29 17:55:04+00:00 1.0 1368682672 7508 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-29 17:02:23+00:00 1.0 1368682672 7498 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-29 11:06:24+00:00 1.0 1368682672 7489 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-29 05:46:14+00:00 1.0 1368682672 7296 pump coin name ost 2019-10-22 18:00:29+00:00 1.0 1368682672 7295 next post will be coin name 2019-10-22 17:55:59+00:00 1.0 1368682672 7288 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-22 15:07:00+00:00 1.0 1368682672 7275 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-22 10:50:35+00:00 1.0 1368682672 7255 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-22 06:03:53+00:00 1.0 1368682672 7242 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-21 18:54:16+00:00 1.0 1368682672 7226 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-21 15:08:55+00:00 1.0 1368682672 7113 breakout pump signal gas 2019-10-17 10:39:12+00:00 1.0 1368682672 6914 we postponed yesterdays breakout pump signal for premium members as btc started pumping and all alts pulled back today we are going to pump coin for premium members 2019-10-10 05:08:08+00:00 1.0 1368682672 6674 next post will be coin name 2019-10-02 17:55:21+00:00 1.0 1368682672 6670 poa was our breakout signal which gave 16 profit for premium members within 3 minutes pump signal remaining hurry up‍♂‍♂ join premium ☎️ contact apglobals 2019-10-02 17:43:59+00:00 1.0 1368682672 6667 poa breakout result 2nd target achieved within 3 minutes✅✅ very quick profit 16 congrats premium members join premium to know next pump coin 20 minutes left to pump on binance ☎️ contact apglobals 2019-10-02 17:40:32+00:00 1.0 1368682672 6658 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-02 09:58:47+00:00 1.0 1368682672 6652 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-01 19:25:53+00:00 1.0 1368682672 6628 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-30 17:26:17+00:00 1.0 1368682672 6620 next pump scheduled ⏰ monday 30092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-30 06:33:58+00:00 1.0 1368682672 6613 next pump scheduled ⏰ monday 30092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-29 15:30:13+00:00 1.0 1368682672 6515 next post will be coin name be ready with you btc 2019-09-26 15:56:00+00:00 1.0 1368682672 6508 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-26 12:19:33+00:00 1.0 1368682672 6493 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-26 06:11:44+00:00 1.0 1368682672 6476 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-25 16:30:36+00:00 1.0 1368682672 6475 pump result edo start price 3404 weve reached 3802 quick profit 117 price was at top for about 4 minutes congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-09-25 16:13:26+00:00 1.0 1368682672 6468 next post will be coin name be ready with you btc 2019-09-25 15:55:39+00:00 1.0 1368682672 6458 next pump scheduled ⏰ wednesday 25092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-25 12:08:03+00:00 1.0 1368682672 6435 next pump scheduled ⏰ wednesday 25092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-25 03:55:45+00:00 1.0 1368682672 6216 poa breakout update 2nd target achieved in 2 hour 30 minutes prince hit 245 near our 3rd target ✅✅✅ huge quick profit 36 amazing breakout signal congrats premium members i told you you can recover your losses within ttodays breakout and pump signals still thinking pump signal remaining hurry up‍♂ dont miss pump signal join premium to know pump coin name earlier ☎️ contact apglobals 2019-09-18 15:41:19+00:00 1.0 1368682672 6209 next pump scheduled ⏰ wednesday 18092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-18 13:17:41+00:00 1.0 1368682672 6198 next breakout signal scheduled ⏰ wednesday 18082019 at 100pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-18 10:01:52+00:00 1.0 1368682672 6190 next breakout signal scheduled ⏰ wednesday 18082019 at 100pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-18 06:11:35+00:00 1.0 1368682672 6150 next pump scheduled ⏰ wednesday 18092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-17 17:44:01+00:00 1.0 1368682672 6136 next post will be coin name be ready with you btc 2019-09-17 15:55:47+00:00 1.0 1368682672 6130 next pump scheduled ⏰ tuesday 17092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-17 15:00:22+00:00 1.0 1368682672 6117 next pump scheduled ⏰ tuesday 17092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-17 11:03:38+00:00 1.0 1368682672 6114 next pump scheduled ⏰ tuesday 17082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-17 10:59:45+00:00 1.0 1368682672 6091 next pump scheduled ⏰ tuesday 17082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-16 15:49:55+00:00 1.0 1368682672 6070 next pump scheduled ⏰ monday 16082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-15 18:14:13+00:00 1.0 1368682672 6054 next pump scheduled ⏰ monday 16082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-15 05:03:22+00:00 1.0 1368682672 6053 next pump scheduled ⏰ monday 16082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-15 05:03:13+00:00 1.0 1368682672 6052 next pump scheduled ⏰ monday 15082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-15 04:22:46+00:00 1.0 1368682672 5938 next breakout signal scheduled ⏰ wednesday 11082019 at 500pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-11 11:09:28+00:00 1.0 1368682672 5917 next breakout signal scheduled ⏰ wednesday 11082019 at 500pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-11 05:44:52+00:00 1.0 1368682672 5831 pump result bnt start price 3650 weve reached 5156 huge profit 41 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-09-09 20:05:24+00:00 1.0 1368682672 5827 next post will be coin name be ready with you btc 2019-09-09 19:55:41+00:00 1.0 1368682672 5823 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-09 19:41:42+00:00 1.0 1368682672 5795 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-09 18:57:57+00:00 1.0 1368682672 5779 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-09 07:09:14+00:00 1.0 1368682672 5760 pump result data start price 128 weve reached 166 huge profit 296 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-09-08 18:06:29+00:00 1.0 1368682672 5756 next post will be coin name be ready with you btc 2019-09-08 17:56:14+00:00 1.0 1368682672 5750 next pump scheduled ⏰ sunday 08082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-08 17:03:07+00:00 1.0 1368682672 5743 4 hour left to pump on binance to know coin name earlier join premium profit target 3060 hurry up ♂ ☎ contact apglobals 2019-09-08 14:13:58+00:00 1.0 1368682672 5741 next pump scheduled ⏰ sunday 08082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-08 11:47:10+00:00 1.0 1368682672 5740 edo pump result update huge profit 33 holders always in profit congrats everyone 6 hour left to next pump on binance to know coin name earlier join premium ☎️ contact apglobals 2019-09-08 11:46:29+00:00 1.0 1368682672 5737 less than 12 hour left to pump on binance 2019-09-08 06:25:51+00:00 1.0 1368682672 5695 next post will be coin name be ready with you btc 2019-09-06 17:56:13+00:00 1.0 1368682672 5687 next pump scheduled ⏰ friday 06082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-06 16:03:20+00:00 1.0 1368682672 5666 next pump scheduled ⏰ friday 06082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-05 17:26:28+00:00 1.0 1368682672 5646 next post will be coin name be ready with you btc 2019-09-04 15:55:45+00:00 1.0 1368682672 5640 1 hour left to pump on binance to know coin name earlier join premium hurry up ♂ ☎ contact apglobals 2019-09-04 15:02:27+00:00 1.0 1368682672 5638 next pump scheduled ⏰ wednesday 04082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-04 14:02:27+00:00 1.0 1368682672 5627 next pump scheduled ⏰ wednesday 04082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-04 04:00:25+00:00 1.0 1368682672 5619 next pump scheduled ⏰ wednesday 04082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-03 17:06:04+00:00 1.0 1368682672 5594 next post will be coin name be ready with you btc 2019-09-02 15:55:50+00:00 1.0 1368682672 5583 only 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-09-02 14:59:55+00:00 1.0 1368682672 5573 next pump scheduled ⏰ monday 02082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-31 17:54:30+00:00 1.0 1368682672 5531 last 12 hour profit results ✅ qsp 39 pump result ✅ blz 16 within 2 minutes ✅ qlc 8 within 5 minutes ✅ ins 17 within 10 hour ✅ bqx 66 within 30 minutes ✅ gnt 77 within 17 minutes todays total profit 943 in last 12 hour all results shared above with screenshot you can scroll up and check will any other group give this much return no❗ then what you are waiting for you could earn premium fees within a day ☎ contact apglobals 2019-08-29 18:39:00+00:00 1.0 1368682672 5521 more quick profit for premium members just before pump within 5 minutes 2019-08-29 18:34:57+00:00 1.0 1368682672 5509 next post will be coin name be ready with you btc 2019-08-29 17:58:57+00:00 1.0 1368682672 5503 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-29 17:01:33+00:00 1.0 1368682672 5480 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-28 11:55:47+00:00 1.0 1368682672 5238 guys if you find any channel pumping coin at same date and time please beware of him they are just going to copy our pump signals and scamming people 2019-08-21 18:12:19+00:00 1.0 1368682672 5233 next post will be coin name be ready with you btc 2019-08-21 17:55:57+00:00 1.0 1368682672 5213 next pump scheduled ⏰ wednesday 21082019 at 600pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-21 12:05:53+00:00 1.0 1368682672 5206 next pump scheduled ⏰ wednesday 21082019 at 600pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-20 17:59:09+00:00 1.0 1368682672 5176 next pump scheduled ⏰ wednesday 21082019 at 600pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-20 10:51:11+00:00 1.0 1368682672 5159 pump result ong start price 1781 weve reached 1999 quick profit 122 congrats guys today 34 coins pumped at same time thats why outsiders diverted on other coins and we manage to get only 12 profit but its good profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-19 16:23:31+00:00 1.0 1368682672 5155 next post will be coin name be ready with you btc 2019-08-19 15:56:12+00:00 1.0 1368682672 5146 next pump scheduled ⏰ monday 19082019 at 400pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-19 12:58:07+00:00 1.0 1368682672 5127 next pump scheduled ⏰ monday 19082019 at 400pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-19 06:00:09+00:00 1.0 1368682672 5114 next pump scheduled ⏰ monday 19082019 at 400pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-18 10:53:08+00:00 1.0 1368682672 5080 pump result via start price 244 weve reached 298 huge quick profit 22 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-16 16:09:40+00:00 1.0 1368682672 5051 next pump scheduled ⏰ friday 16082019 at 400pm gmt exchange binance last pump results rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-16 10:02:36+00:00 1.0 1368682672 5037 next pump scheduled ⏰ friday 16082019 at 400pm gmt exchange binance last pump results rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-15 15:56:54+00:00 1.0 1368682672 4949 last few pump results rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 to know coin name earlier join premium ☎️ contact apglobals 2019-08-12 05:19:21+00:00 1.0 1368682672 4933 pump result rcn start price 140 weve reached 186 huge quick profit 328 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-10 16:35:00+00:00 1.0 1368682672 4924 next post will be coin name be ready with you btc 2019-08-10 15:56:31+00:00 1.0 1368682672 4918 our each and every pump coin pump again within few days by market 2019-08-10 15:24:56+00:00 1.0 1368682672 4910 next pump scheduled ⏰ saturday 10082019 at 400pm gmt exchange binance last pump results yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-10 06:18:16+00:00 1.0 1368682672 4888 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-08-09 05:56:35+00:00 1.0 1368682672 4883 pump result yoyo start price 119 weve reached 147 huge quick profit 235 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-08 16:13:26+00:00 1.0 1368682672 4878 next post will be coin name be ready with you btc 2019-08-08 15:56:05+00:00 1.0 1368682672 4863 next pump scheduled ⏰ thursday 08082019 at 400pm gmt exchange binance last pump results poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-07 17:17:46+00:00 1.0 1368682672 4842 pump result poa start price 140 weve reached 193 huge quick profit 37 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-06 16:13:54+00:00 1.0 1368682672 4837 next post will be coin name 2019-08-06 15:56:02+00:00 1.0 1368682672 4830 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-06 13:59:10+00:00 1.0 1368682672 4810 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-06 10:00:13+00:00 1.0 1368682672 4773 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-05 17:48:49+00:00 1.0 1368682672 4757 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-05 08:47:47+00:00 1.0 1368682672 4756 next post will be coin name 2019-08-05 05:16:08+00:00 1.0 1368682672 4746 pump result snm start price 112 weve reached 139 huge quick profit 24 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-04 18:14:19+00:00 1.0 1368682672 4740 next post will be coin name 2019-08-04 17:56:06+00:00 1.0 1368682672 4733 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-08-04 17:04:22+00:00 1.0 1368682672 4731 3 hour left to pump on binance 2019-08-04 14:57:11+00:00 1.0 1368682672 4730 next pump scheduled ⏰ sunday 04082019 at 600pm gmt exchange binance last pump results wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-04 14:31:08+00:00 1.0 1368682672 4720 next pump scheduled ⏰ sunday 04082019 at 600pm gmt exchange binance last pump results wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-04 11:59:31+00:00 1.0 1368682672 4700 next pump scheduled ⏰ sunday 04082019 at 600pm gmt exchange binance last pump results wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-03 16:01:12+00:00 1.0 1368682672 4690 pump result wabi start price 1311 weve reached 1511 quick profit 15 most important price was up for about 5 minutes and hope everyone made quick profit congrats everyone wabi pump very often good coin to hold as well next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-02 18:34:06+00:00 1.0 1368682672 4684 next post will be coin name 2019-08-02 17:55:41+00:00 1.0 1368682672 4677 1 hour left to pump on binance 2019-08-02 17:01:13+00:00 1.0 1368682672 4676 2 hour left to pump on binance 2019-08-02 16:01:16+00:00 1.0 1368682672 4675 next pump scheduled ⏰ friday 02082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-02 16:01:16+00:00 1.0 1368682672 4653 next pump scheduled ⏰ friday 02082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-02 05:29:39+00:00 1.0 1368682672 4646 pump result nav start price 128 weve reached 208 huge quick profit 62 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-01 20:08:26+00:00 1.0 1368682672 4642 next post will be coin name 2019-08-01 19:56:21+00:00 1.0 1368682672 4635 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-08-01 18:11:28+00:00 1.0 1368682672 4634 3 hour left to pump on binance to know coin name earlier join premium pump target 3060 ☎ contact apglobals 2019-08-01 16:55:41+00:00 1.0 1368682672 4619 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-08-01 08:57:58+00:00 1.0 1368682672 4588 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-07-31 11:07:09+00:00 1.0 1368682672 4574 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-07-30 13:12:40+00:00 1.0 1368682672 4501 1 hour left to pump on binance to know coin name earlier join premium todays pump target 2040 ☎ contact apglobals 2019-07-28 15:58:50+00:00 1.0 1368682672 4500 next pump scheduled ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-28 15:58:50+00:00 1.0 1368682672 4467 next pump scheduled ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-27 17:19:57+00:00 1.0 1368682672 4451 next pump scheduled ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-27 03:36:03+00:00 1.0 1368682672 4438 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-26 16:58:59+00:00 1.0 1368682672 4437 2 hour left to pump on binance 2019-07-26 16:11:17+00:00 1.0 1368682672 4435 4 hour left to pump on binance 2019-07-26 14:08:26+00:00 1.0 1368682672 4434 next pump scheduled ⏰ friday 26072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snt quick profit 216 to know coin name earlier join premium ☎️ contact apglobals 2019-07-26 14:08:26+00:00 1.0 1368682672 4416 next pump scheduled ⏰ friday 26072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snt quick profit 216 to know coin name earlier join premium ☎️ contact apglobals 2019-07-26 10:03:01+00:00 1.0 1368682672 4403 next pump scheduled ⏰ friday 26072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snt quick profit 216 to know coin name earlier join premium ☎️ contact apglobals 2019-07-25 17:07:45+00:00 1.0 1368682672 4292 next post will be coin name 2019-07-22 15:55:52+00:00 1.0 1368682672 4286 next pump scheduled ⏰ monday 22072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result bts quick profit 207 to know coin name earlier join premium ☎️ contact apglobals 2019-07-22 15:26:44+00:00 1.0 1368682672 4269 1 hour left to pump on binance 2019-07-22 15:03:27+00:00 1.0 1368682672 4266 next pump scheduled ⏰ monday 22072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result bts quick profit 207 to know coin name earlier join premium ☎️ contact apglobals 2019-07-22 10:44:12+00:00 1.0 1368682672 4234 next pump scheduled ⏰ monday 22072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result bts quick profit 207 to know coin name earlier join premium ☎️ contact apglobals 2019-07-21 16:59:20+00:00 1.0 1368682672 4198 pump result bts start price 432 weve reached 472 quick profit 92 as soon as pump started seller bots activated and coin couldnt pump much higher from past few hours many alt coins were pumping 10 thats why sellers were active during pump time but we manage to get quick 92 profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-19 17:19:36+00:00 1.0 1368682672 4193 next post will be coin name 2019-07-19 16:55:39+00:00 1.0 1368682672 4180 next pump scheduled ⏰ friday 19072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result sys quick profit 13 + 10 to know coin name earlier join premium ☎️ contact apglobals 2019-07-19 16:21:06+00:00 1.0 1368682672 4164 less than 2 hour left to pump on binance 2019-07-19 15:12:48+00:00 1.0 1368682672 4160 next pump scheduled ⏰ friday 19072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result sys quick profit 13 + 10 to know coin name earlier join premium ☎️ contact apglobals 2019-07-19 09:07:52+00:00 1.0 1368682672 4148 next pump scheduled ⏰ friday 19072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result sys quick profit 13 + 10 to know coin name earlier join premium ☎️ contact apglobals 2019-07-18 14:54:23+00:00 1.0 1368682672 4100 next post will be coin name 2019-07-17 16:56:11+00:00 1.0 1368682672 4089 only 1 hour left to pump on binance to know coin name earlier join premium get your lifetime premium membership at exclusive 50 off offer will expire in next 30 minutes ☎ contact apglobals 2019-07-17 16:03:11+00:00 1.0 1368682672 4084 next pump scheduled ⏰ wednesday 17072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result dlt quick profit 17 quick profit for premium 30 to know coin name earlier join premium ☎️ contact apglobals 2019-07-17 11:49:12+00:00 1.0 1368682672 4069 next pump scheduled ⏰ wednesday 17072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result dlt quick profit 17 quick profit for premium 30 to know coin name earlier join premium ☎️ contact apglobals 2019-07-17 04:58:15+00:00 1.0 1368682672 4058 next pump scheduled ⏰ wednesday 17072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result dlt quick profit 17 quick profit for premium 30 to know coin name earlier join premium ☎️ contact apglobals 2019-07-16 07:53:52+00:00 1.0 1368682672 4050 premium members made one more very quick profit within 15 minutes after pump profit 2019-07-15 17:50:29+00:00 1.0 1368682672 4044 pump result dlt start price 630 weve reached 736 quick profit 17 call shared in premium 8 hour ago in premium channel as well premium members profit 30 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-15 17:25:14+00:00 1.0 1368682672 4037 next post will be coin name 2019-07-15 16:55:30+00:00 1.0 1368682672 4018 next pump scheduled ⏰ monday 15072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snm huge quick profit 22 + 22 to know coin name earlier join premium ☎️ contact apglobals 2019-07-15 05:13:27+00:00 1.0 1368682672 3932 snm price again hit 166 exactly same as it hit yesterday in our pump again quick profit 22 for everyone double profit 44 within 24 hour amazing calls to know next pump coin name earlier ☎️ contact apglobals for premium membership 2019-07-12 12:57:10+00:00 1.0 1368682672 3870 next post will be coin name 2019-07-11 16:55:33+00:00 1.0 1368682672 3865 perfect time for pump alts making move 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-11 16:01:18+00:00 1.0 1368682672 3862 perfect time for pump alts making move 2 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-11 15:08:25+00:00 1.0 1368682672 3860 perfect time for pump alts making move 4 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-11 13:18:54+00:00 1.0 1368682672 3848 pump result cnd start price 98 weve reached 116 2nd wave 142 huge quick profit 44 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-11 11:26:36+00:00 1.0 1368682672 3847 next pump scheduled ⏰ thursday 11072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result cnd huge quick profit 44 to know coin name earlier join premium ☎️ contact apglobals 2019-07-11 11:25:51+00:00 1.0 1368682672 3840 perfect time for pump alts making move 7 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-11 10:17:11+00:00 1.0 1368682672 3829 next pump scheduled ⏰ thursday 11072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result cnd huge quick profit 44 to know coin name earlier join premium ☎️ contact apglobals 2019-07-11 06:47:44+00:00 1.0 1368682672 3768 pump result cnd start price 98 weve reached 116 2nd wave 142 huge quick profit 44 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-10 12:39:20+00:00 1.0 1368682672 3748 pump result cnd start price 98 weve reached 116 2nd wave 142 huge quick profit 44 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-10 03:23:18+00:00 1.0 1368682672 3733 next post will be coin name 2019-07-09 16:56:08+00:00 1.0 1368682672 3722 perfect time for pump alts making move 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-09 16:02:45+00:00 1.0 1368682672 3721 next pump scheduled ⏰ tuesday 09072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-09 16:02:45+00:00 1.0 1368682672 3714 perfect time for pump alts making move 1 hour 30 minutes left to pump on binance to know coin name earlier join premium dont miss opportunity again and again you could earn back fees within 1 day ☎ contact apglobals 2019-07-09 15:28:34+00:00 1.0 1368682672 3701 next pump scheduled ⏰ tuesday 09072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-09 13:01:08+00:00 1.0 1368682672 3681 less than 12 hour left to pump on binance 2019-07-09 05:36:47+00:00 1.0 1368682672 3679 next pump scheduled ⏰ tuesday 09072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-09 05:36:03+00:00 1.0 1368682672 3627 pump result sys start price 371 weve reached 410 quick profit 105 as you all know btc started pumping before our pump which makes alt coins down and huge sell order was placed by bots but you guys manage get good profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-07 18:14:49+00:00 1.0 1368682672 3621 next post will be coin name 2019-07-07 17:55:53+00:00 1.0 1368682672 3611 next pump scheduled ⏰ sunday 07072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-07 12:05:52+00:00 1.0 1368682672 3597 next pump scheduled ⏰ sunday 07072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-07 04:47:46+00:00 1.0 1368682672 3587 next pump scheduled ⏰ sunday 06072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-06 17:37:58+00:00 1.0 1368682672 3549 next post will be coin name 2019-07-05 15:55:37+00:00 1.0 1368682672 3541 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-05 14:08:17+00:00 1.0 1368682672 3537 5 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-05 11:04:14+00:00 1.0 1368682672 3510 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-05 08:00:14+00:00 1.0 1368682672 3490 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-04 17:44:09+00:00 1.0 1368682672 3474 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-04 05:14:22+00:00 1.0 1368682672 3449 breakout pump signal powr 2019-07-03 21:01:02+00:00 1.0 1368682672 3412 pump result vib start price 380 weve reached 440 quick profit 157 as you all know btc started pumped a bit which makes alt coins down and huge sell order was placed but you guys manage get good profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-02 17:17:14+00:00 1.0 1368682672 3407 next post will be coin name 2019-07-02 16:57:25+00:00 1.0 1368682672 3400 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-02 16:01:18+00:00 1.0 1368682672 3399 next pump scheduled ⏰ tuesday 02072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-02 16:01:18+00:00 1.0 1368682672 3379 next pump scheduled ⏰ tuesday 02072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-02 11:08:26+00:00 1.0 1368682672 3368 next pump scheduled ⏰ tuesday 02072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-02 08:29:19+00:00 1.0 1368682672 3280 next post will be coin name 2019-06-28 16:55:38+00:00 1.0 1368682672 3275 1 hour left to pump on binancez to know coin name earlier join premium ☎ contact apglobals 2019-06-28 16:00:05+00:00 1.0 1368682672 3270 next pump scheduled ⏰ friday 28062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-28 07:41:17+00:00 1.0 1368682672 3187 next post will be coin name 2019-06-26 16:56:14+00:00 1.0 1368682672 3182 next pump scheduled ⏰ wednesday 26062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-26 16:36:01+00:00 1.0 1368682672 3126 next pump scheduled ⏰ wednesday 26062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-25 19:42:17+00:00 1.0 1368682672 3063 next post will be coin name 2019-06-24 16:55:33+00:00 1.0 1368682672 3054 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-06-24 16:10:25+00:00 1.0 1368682672 3053 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-24 16:10:25+00:00 1.0 1368682672 3051 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-24 14:55:27+00:00 1.0 1368682672 3029 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-23 17:47:56+00:00 1.0 1368682672 2867 next post will be coin name 2019-06-19 14:56:13+00:00 1.0 1368682672 2849 next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance last pump result nebl 65 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-19 08:59:44+00:00 1.0 1368682672 2841 next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance last pump result nebl 65 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-18 16:20:09+00:00 1.0 1368682672 2801 pump result nebl start price 1470 weve reached 2436 huge quick profit 65 next pump will be announced soon also we shared nebl coin name signal 10 hour ago in premium channel when was around 14001430 and we pumped that coin huge profit from our buy zone 74 to know next coin name earlier contact apglobals for premium membership 2019-06-16 21:26:07+00:00 1.0 1368682672 2797 10 minutes left to the pump next post will be coin name 2019-06-16 20:50:38+00:00 1.0 1368682672 2795 1 hour left to pump on binance to know coin name earlier join premium pump profit target 3080 ☎ contact apglobals 2019-06-16 19:58:43+00:00 1.0 1368682672 2793 next pump scheduled ⏰ sunday 16062019 at 900pm gmt exchange binance last pump result snm 68 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-16 18:13:04+00:00 1.0 1368682672 2787 less than 6 hour left to pump on binance to know coin name earlier join premium pump profit target 3080 ☎ contact apglobals 2019-06-16 15:27:21+00:00 1.0 1368682672 2784 next pump scheduled ⏰ sunday 16062019 at 900pm gmt exchange binance last pump result snm 68 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-16 07:04:05+00:00 1.0 1368682672 2532 next pump scheduled ⏰ sunday 09052019 at 900pm gmt exchange binance last pump result snm 68 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-09 03:07:20+00:00 1.0 1368682672 2487 todays quick profit result ark 9 within 30 minute fet 17 within 24 hour dlt 10 within 24 hour one 37 within 11 hour lun 8 within 15 minutes snt 11 within 14 hour matic 19 within 5 hour todays more profit results theta 8 in 2 days ost 12 in 2 days tnt 15 in 2 days phb 13 in 2 days gxs 58 in 2 week congrats premium members join premium and grab all quick profit signals dont miss next breakout signal ☎ contact apglobals 2019-06-05 17:36:42+00:00 1.0 1368682672 2331 pump result snm start price 347 weve reached 586 huge quick profit 68 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-06-02 22:13:43+00:00 1.0 1368682672 2326 next post will be coin name 2019-06-02 20:57:21+00:00 1.0 1368682672 2323 hurry up♂♂ 1 hour left to pump on binance 2019-06-02 19:59:37+00:00 1.0 1368682672 2318 next pump scheduled ⏰ sunday 02052019 at 900pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-02 16:56:23+00:00 1.0 1368682672 2253 pump result ardr start price 994 weve reached 1054 quick profit 6 we have seen huge sell order by bots bots were not allowing price to move above 1050 but still we manage to hold price above 1050 for sometime apart from pump we have more quick profit signals available in premium channel which gives you good profit in short term next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-05-31 17:23:09+00:00 1.0 1368682672 2250 next post will be coin name 2019-05-31 16:56:21+00:00 1.0 1368682672 2246 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-05-31 16:03:47+00:00 1.0 1368682672 2245 less than 2 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-05-31 15:14:02+00:00 1.0 1368682672 2227 next pump scheduled ⏰ friday 31052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-30 14:27:20+00:00 1.0 1368682672 2074 next post will be coin name 2019-05-27 16:56:09+00:00 1.0 1368682672 2066 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-05-27 16:17:36+00:00 1.0 1368682672 2065 next pump scheduled ⏰ monday 27052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-27 16:17:36+00:00 1.0 1368682672 2047 next pump scheduled ⏰ monday 27052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-26 11:27:17+00:00 1.0 1368682672 1881 next post will be coin name 2019-05-23 16:56:31+00:00 1.0 1368682672 1878 1 hour left to pump on binance 2019-05-23 16:00:43+00:00 1.0 1368682672 1877 3 hour left to pump on binance 2019-05-23 14:16:05+00:00 1.0 1368682672 1876 next pump scheduled ⏰ thursday 23052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-23 14:16:05+00:00 1.0 1368682672 1771 next pump scheduled ⏰ thursday 23052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-22 08:20:25+00:00 1.0 1368682672 1748 pump result nav start price 324 weve reached 389 quick profit 20 after that price move up 710 3 times next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-05-18 18:48:14+00:00 1.0 1368682672 1744 next post will be coin name 2019-05-18 16:51:15+00:00 1.0 1368682672 1742 next pump scheduled ⏰ saturday 18052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-18 09:02:41+00:00 1.0 1368682672 1685 next post will be coin name 2019-05-13 14:54:16+00:00 1.0 1368682672 1683 next pump scheduled ⏰ monday 13052019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-13 14:54:07+00:00 1.0 1368682672 1674 next pump scheduled ⏰ friday 10052019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-09 18:10:47+00:00 1.0 1368682672 1659 next post will be coin name 2019-04-29 14:55:49+00:00 1.0 1368682672 1657 next pump scheduled ⏰ monday 29042019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-04-28 16:31:32+00:00 1.0 1368682672 1654 as 40 of members stuck in alt coins and didnt participate in pump we will expect next pump will be huge but 9 quick profit within 5 minutes is really good in this bear market 2019-04-23 15:31:57+00:00 1.0 1368682672 1648 next pump scheduled ⏰ tuesday 23042019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-22 07:46:20+00:00 1.0 1368682672 1645 next pump scheduled ⏰ friday 19042019 at 200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-18 10:34:28+00:00 1.0 1368682672 1639 next post will be coin name 2019-04-17 16:55:22+00:00 1.0 1368682672 1638 30 minutes left to pump on binance 2019-04-17 16:28:23+00:00 1.0 1368682672 1637 1 hour left to pump on binance 2019-04-17 16:02:12+00:00 1.0 1368682672 1634 next pump schedule ⏰ wednesday 17042019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-15 15:29:13+00:00 1.0 1368682672 1629 next post will be coin name 2019-04-14 18:55:26+00:00 1.0 1368682672 1628 15 minutes left to pump on binance 2019-04-14 18:46:02+00:00 1.0 1368682672 1627 1 hour left to pump on binance 2019-04-14 18:00:40+00:00 1.0 1368682672 1623 next post will be coin name get ready with your btc 2019-04-13 16:57:13+00:00 1.0 1368682672 1622 15 minutes left to pump on binance 2019-04-13 16:47:09+00:00 1.0 1368682672 1621 1 hour left to pump on binance 2019-04-13 16:02:13+00:00 1.0 1368682672 1620 3 hour left to pump on binance 2019-04-13 13:54:40+00:00 1.0 1368682672 1619 5 hour 30 minutes left to pump on binance join premium and earn huge ☎️ contact apglobals 2019-04-13 11:30:29+00:00 1.0 1368682672 1616 next pump schedule ⏰ saturday 13042019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-11 06:02:54+00:00 1.0 1368682672 1610 30 minutes left to pump on binance 2019-04-08 16:01:51+00:00 1.0 1368682672 1607 next pump scheduled ⏰ thursday 04042019 at 130pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-04 08:26:07+00:00 1.0 1368682672 1572 who dont have get ready to take part in pump 2019-03-25 07:34:34+00:00 1.0 1368682672 1569 next pump signal will be announced in 45 minutes only in premium channel ☎️ contact apglobals 2019-03-25 03:48:58+00:00 1.0 1368682672 1554 we will be sharing special signal based on newsfomo in premium channel only date 15th march time 330pm gmt exchange binance 5 hour left to pump 2019-03-15 10:22:20+00:00 1.0 1368682672 1545 next pump scheduled ⏰ thursday 14032019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-10 04:12:59+00:00 1.0 1368682672 1521 next post will be coin name be ready for huge pump 2019-03-05 16:25:45+00:00 1.0 1368682672 1517 1 hour left to pump on binance 2019-03-05 15:34:00+00:00 1.0 1368682672 1514 next pump scheduled ⏰ tuesday 05032019 at 430pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-04 12:27:00+00:00 1.0 1368682672 1503 next post will be coin name 2019-03-02 13:55:16+00:00 1.0 1368682672 1502 5 minutes left to pump on binance 2019-03-02 13:54:53+00:00 1.0 1368682672 1501 15 minutes left to pump on binance 2019-03-02 13:46:17+00:00 1.0 1368682672 1500 30 minutes left to pump on binance 2019-03-02 13:30:32+00:00 1.0 1368682672 1499 1 hour left to pump on binance 2019-03-02 13:00:33+00:00 1.0 1368682672 1498 2 hour left to pump on binance 2019-03-02 12:01:23+00:00 1.0 1368682672 1494 next pump scheduled ⏰ saturday 02032019 at 200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-01 18:50:32+00:00 1.0 1368682672 1491 next pump scheduled ⏰ sunday 03032019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-28 10:58:14+00:00 1.0 1368682672 1476 next post will be coin name 2019-02-23 16:55:51+00:00 1.0 1368682672 1475 5 minutes left to pump on binance 2019-02-23 16:55:27+00:00 1.0 1368682672 1474 15 minutes left to pump on binance 2019-02-23 16:45:14+00:00 1.0 1368682672 1473 1 hour left to pump on binance 2019-02-23 16:00:20+00:00 1.0 1368682672 1472 2 hour left to pump on binance 2019-02-23 15:00:18+00:00 1.0 1368682672 1464 next pump scheduled ⏰ saturday 23022019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-20 17:06:20+00:00 1.0 1368682672 1445 next post will be coin name 2019-02-16 17:56:53+00:00 1.0 1368682672 1444 5 minutes left to pump on binance 2019-02-16 17:55:27+00:00 1.0 1368682672 1443 15 minutes left to pump on binance 2019-02-16 17:45:24+00:00 1.0 1368682672 1442 30 minutes left to pump on binance 2019-02-16 17:31:31+00:00 1.0 1368682672 1441 4 hour left to pump on binance 2019-02-16 14:03:28+00:00 1.0 1368682672 1434 next pump scheduled ⏰ saturday 16022019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-13 14:20:02+00:00 1.0 1368682672 1417 next post will be coin name 2019-02-10 17:55:28+00:00 1.0 1368682672 1414 30 minutes left to pump on binance 2019-02-10 17:30:17+00:00 1.0 1368682672 1412 1 hour left to pump on binance 2019-02-10 16:59:12+00:00 1.0 1368682672 1406 next pump scheduled ⏰ sunday 10022019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-09 17:29:30+00:00 1.0 1368682672 1404 1 hour left to pump on binance 2019-02-09 17:00:41+00:00 1.0 1368682672 1402 3 hour left to pump on binance 2019-02-09 15:07:38+00:00 1.0 1368682672 1395 next pump scheduled ⏰ saturday 09022019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-07 05:10:58+00:00 1.0 1368682672 1377 next post will be coin name 2019-02-04 16:27:06+00:00 1.0 1368682672 1376 5 minutes left to pump on binance 2019-02-04 16:25:44+00:00 1.0 1368682672 1375 15 minutes left to pump on binance 2019-02-04 16:15:57+00:00 1.0 1368682672 1374 30 minutes left to pump on binance 2019-02-04 16:00:15+00:00 1.0 1368682672 1365 next pump scheduled ⏰ monday 04022019 at 430pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-03 07:56:36+00:00 1.0 1368682672 1352 next post will be coin name 2019-02-02 17:56:53+00:00 1.0 1368682672 1351 5 minutes left to pump on binance 2019-02-02 17:55:07+00:00 1.0 1368682672 1350 15 minutes left to pump on binance 2019-02-02 17:45:23+00:00 1.0 1368682672 1349 30 minutes left to pump on binance 2019-02-02 17:30:59+00:00 1.0 1368682672 1348 1 hour left to pump on binance 2019-02-02 17:01:38+00:00 1.0 1368682672 1347 2 hour left to pump on binance 2019-02-02 16:05:56+00:00 1.0 1368682672 1346 3 hour left to pump on binance 2019-02-02 14:48:42+00:00 1.0 1368682672 1339 next pump scheduled ⏰ saturday 02022019 at 6pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-01-30 05:49:49+00:00 1.0 1368682672 1323 next post will be coin name be ready with your btc 2019-01-27 17:55:55+00:00 1.0 1368682672 1322 5 minutes left to pump on binance 2019-01-27 17:55:28+00:00 1.0 1368682672 1321 15 minutes left to pump on binance 2019-01-27 17:45:23+00:00 1.0 1368682672 1320 30 minutes left to pump on binance 2019-01-27 17:30:21+00:00 1.0 1368682672 1319 1 hour left to pump on binance 2019-01-27 16:58:16+00:00 1.0 1368682672 1318 2 hour left to pump on binance 2019-01-27 16:04:00+00:00 1.0 1368682672 1317 4 hour left to pump on binance 2019-01-27 14:01:02+00:00 1.0 1368682672 1311 next pump scheduled ⏰ sunday 27012019 at 6pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-01-26 10:21:22+00:00 1.0 1368682672 1295 next post will be coin name 2019-01-25 17:55:28+00:00 1.0 1368682672 1294 5 minutes left to pump on binance 2019-01-25 17:55:12+00:00 1.0 1368682672 1293 10 minutes left to pump on binance 2019-01-25 17:50:16+00:00 1.0 1368682672 1292 30 minutes left to pump on binance 2019-01-25 17:30:50+00:00 1.0 1368682672 1282 next pump scheduled ⏰ friday 25012019 at 6pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-01-23 07:58:03+00:00 1.0 1368682672 1277 we will wait till 12 pm gmt if maintenance will still going on we need to postpone todays pump 2019-01-15 04:33:41+00:00 1.0 1368682672 1270 next pump scheduled ⏰ tuesday 15012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-13 11:42:14+00:00 1.0 1368682672 1255 next post will be coin name 2019-01-11 14:55:45+00:00 1.0 1368682672 1241 next pump scheduled ⏰ friday 11012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-10 02:35:03+00:00 1.0 1368682672 1223 next post will be coin name 2019-01-08 14:56:34+00:00 1.0 1368682672 1209 next pump scheduled ⏰ tuesday 08012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-07 05:10:41+00:00 1.0 1368682672 1193 next post will be coin name 2019-01-04 14:55:53+00:00 1.0 1368682672 1180 next pump scheduled ⏰ friday 04012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-03 03:09:05+00:00 1.0 1368682672 1164 next post will be coin name 2019-01-01 14:57:39+00:00 1.0 1368682672 1149 next pump scheduled ⏰ tuesday 01012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-31 02:33:45+00:00 1.0 1368682672 1131 next post will be coin name 2018-12-28 14:56:00+00:00 1.0 1368682672 1117 next pump scheduled ⏰ friday 28122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-27 02:42:32+00:00 1.0 1368682672 1100 next post will be coin name 2018-12-25 14:57:50+00:00 1.0 1368682672 1084 next pump scheduled ⏰ tuesday 25122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-24 05:09:29+00:00 1.0 1368682672 1066 next post will be coin name 2018-12-21 14:56:10+00:00 1.0 1368682672 1050 next pump scheduled ⏰ friday 21122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-19 17:40:42+00:00 1.0 1368682672 1031 next post will be coin name 2018-12-18 14:56:46+00:00 1.0 1368682672 1017 next pump scheduled ⏰ tuesday 18122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-17 05:17:15+00:00 1.0 1368682672 1002 next post will be coin name 2018-12-15 14:56:46+00:00 1.0 1368682672 989 next pump scheduled ⏰ saturday 15122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-13 16:22:55+00:00 1.0 1368682672 972 next post will be coin name 2018-12-12 14:56:26+00:00 1.0 1368682672 959 next pump scheduled ⏰ wednesday 12122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-10 20:07:53+00:00 1.0 1368682672 934 8 hour left to pump on cryptopia to know coin name earlier ☎contact apglobals 2018-12-08 07:01:01+00:00 1.0 1368682672 928 next pump scheduled ⏰ saturday 08122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-06 15:49:41+00:00 1.0 1368682672 912 next post will be coin name 2018-12-04 14:56:11+00:00 1.0 1368682672 905 we have selected great coin expecting 500 profit in todays pump if not pumped before our pump time to know coin name earlier join premium ☎contact apglobals 2018-12-04 13:39:10+00:00 1.0 1368682672 893 next pump scheduled ⏰ tuesday 04122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-02 16:18:59+00:00 1.0 1368682672 873 next post will be coin name 2018-11-30 14:56:45+00:00 1.0 1368682672 859 next pump scheduled ⏰ friday 30112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-29 16:36:31+00:00 1.0 1368682672 844 next post will be coin name 2018-11-27 14:57:02+00:00 1.0 1368682672 827 next pump scheduled ⏰ tuesday 27112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-26 05:29:18+00:00 1.0 1368682672 812 next post will be coin name 2018-11-24 14:56:53+00:00 1.0 1368682672 800 next pump scheduled ⏰ saturday 24112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-23 06:46:58+00:00 1.0 1368682672 784 next post will be coin name 2018-11-20 14:57:03+00:00 1.0 1368682672 770 next pump scheduled ⏰ tuesday 20112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-19 11:17:44+00:00 1.0 1368682672 751 next post will be coin name 2018-11-13 14:57:27+00:00 1.0 1368682672 740 next pump scheduled ⏰ tuesday 13112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-11 16:48:39+00:00 1.0 1368682672 723 next post will be coin name 2018-11-10 14:56:20+00:00 1.0 1368682672 710 next pump scheduled ⏰ saturday 10112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-08 17:12:48+00:00 1.0 1368682672 694 next post will be coin name 2018-11-06 14:57:41+00:00 1.0 1368682672 681 next pump scheduled ⏰ tuesday 06112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-05 04:04:08+00:00 1.0 1368682672 666 next post will be coin name 2018-11-03 14:56:31+00:00 1.0 1368682672 650 next pump scheduled ⏰ saturday 03112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-02 03:14:52+00:00 1.0 1368682672 633 next post will be coin name 2018-10-30 14:56:33+00:00 1.0 1368682672 617 next pump scheduled ⏰ tuesday 30102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-29 06:06:13+00:00 1.0 1368682672 601 next post will be coin name 2018-10-27 14:57:02+00:00 1.0 1368682672 585 next pump scheduled ⏰ saturday 27102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-26 05:07:09+00:00 1.0 1368682672 567 next post will be coin name 2018-10-23 14:56:46+00:00 1.0 1368682672 553 next pump scheduled ⏰ tuesday 23102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-22 06:58:48+00:00 1.0 1368682672 537 next post will be coin name 2018-10-20 14:56:49+00:00 1.0 1368682672 521 next pump scheduled ⏰ saturday 20102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-19 06:32:02+00:00 1.0 1368682672 502 next post will be coin name 2018-10-16 14:58:04+00:00 1.0 1368682672 490 next pump scheduled ⏰ tuesday 16102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-15 05:21:21+00:00 1.0 1368682672 473 next post will be coin name 2018-10-10 14:56:38+00:00 1.0 1368682672 455 next pump scheduled ⏰ wednesday 10102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-09 05:56:46+00:00 1.0 1368682672 437 next post will be coin name 2018-10-07 14:57:27+00:00 1.0 1368682672 425 next pump scheduled ⏰ sunday 07102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-05 19:06:32+00:00 1.0 1368682672 401 next post will be coin name 2018-10-03 14:56:07+00:00 1.0 1368682672 386 next pump scheduled ⏰ wednesd 03102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-02 12:04:01+00:00 1.0 1368682672 367 next post will be coin name 2018-09-30 14:56:40+00:00 1.0 1368682672 350 next pump scheduled ⏰ sunday 30092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-29 13:46:37+00:00 1.0 1368682672 327 next post will be coin name 2018-09-27 14:56:47+00:00 1.0 1368682672 312 24 hour left to pump on cryptopia be ready with your btc 2018-09-26 15:00:21+00:00 1.0 1368682672 308 next pump scheduled ⏰ thursday 27092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-26 05:18:53+00:00 1.0 1368682672 286 next post will be coin name 2018-09-24 14:56:21+00:00 1.0 1368682672 269 next pump scheduled ⏰ monday 24092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-23 05:11:57+00:00 1.0 1368682672 252 next post will be coin name 2018-09-20 14:58:27+00:00 1.0 1368682672 233 next pump scheduled ⏰ thursday 20092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-18 15:13:59+00:00 1.0 1368682672 214 next post will be coin name 2018-09-17 14:57:04+00:00 1.0 1368682672 198 24 hour left to pump on cryptopia be ready with your btc 2018-09-16 15:00:07+00:00 1.0 1368682672 194 next pump scheduled ⏰ monday 17092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-15 16:35:34+00:00 1.0 1368682672 175 next post will be coin name 2018-09-13 14:57:53+00:00 1.0 1368682672 158 next pump scheduled ⏰ thursday 13092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-12 05:30:36+00:00 1.0 1368682672 139 next post will be coin name 2018-09-10 14:57:31+00:00 1.0 1368682672 124 next pump scheduled ⏰ monday 10092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-08 14:22:05+00:00 1.0 1368682672 107 next post will be coin name 2018-09-06 14:57:01+00:00 1.0 1368682672 90 next pump scheduled ⏰ thursday 06092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-05 05:16:29+00:00 1.0 1368682672 73 next post will be coin name 2018-09-03 14:56:31+00:00 1.0 1368682672 51 next pump scheduled ⏰ monday 03092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-01 15:00:26+00:00 1.0 1368682672 33 next post will be coin name 2018-08-30 14:56:20+00:00 1.0 1368682672 7 next pump scheduled ⏰ thursday 30082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-29 06:18:40+00:00 1.0 1219293084 1461 dear members we have decided to postpone the sunday pump after hours of discussions with the team the market looks bearish the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect your and all member capitals we are aiming for an extremely high for the next pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 2 minutes after the call as an apology for the postponement best regards the binance pump signals team 2022-01-22 06:47:41+00:00 1.0 1219293084 1443 new binance pump announcement ⏳date sunday 23 january ⏰time 3 pm gmt exchange binance com +26 whale channels target 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance kucoin we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 7 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2022-01-15 20:09:13+00:00 1.0 1219293084 1442 orc kucoin pump results start price 24 peak price 043 peak gain 440 orc amassed over 15 million volume within the first few minutes as it rose all the way to 440 minimum projection even in this market our volume continues to grow and our peaks have become even more impressive thank you to all members who participated you can expect our next pump to be even bigger great job to everyone 2022-01-15 20:06:49+00:00 1.0 1219293084 1439 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in usdt pair login kucoin and keep an eye here 2022-01-15 16:55:14+00:00 1.0 1219293084 1438 15 minutes left until our pump on kucoin pump will be in usdt pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2022-01-15 16:45:02+00:00 1.0 1219293084 1416 new kucoin pump announcement ⏳date saturday 15 january ⏰time 5 pm gmt exchange kucoin com +26 whale channels target 40 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance kucoin we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 7 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2022-01-08 18:38:06+00:00 1.0 1219293084 1414 unic kucoin pump results start price 10607 peak price 98700 peak gain 831 unic amassed over 17 million volume within the first few minutes as it rose all the way to 831 well over our 500 minimum projection even in this market our volume continues to grow and our peaks have become even more impressive thank you to all members who participated you can expect our next pump to be even bigger great job to everyone 2022-01-08 18:36:07+00:00 1.0 1219293084 1411 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in usdt pair login kucoin and keep an eye here 2022-01-08 16:54:58+00:00 1.0 1219293084 1410 15 minutes left until our pump on kucoin pump with usdt pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2022-01-08 16:45:00+00:00 1.0 1219293084 1386 new kucoin com pump announcement ⏳date saturday 8 january ⏰time 5 pm gmt exchange kucoin com +26 whale channels target 40 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2022-01-02 20:10:04+00:00 1.0 1219293084 1385 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 19:02:28+00:00 1.0 1219293084 1383 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:02:02+00:00 1.0 1219293084 1381 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2022-01-02 16:55:14+00:00 1.0 1219293084 1380 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2022-01-02 16:45:01+00:00 1.0 1219293084 1373 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:15:45+00:00 1.0 1219293084 1353 new binance pump announcement ⏳date sunday 2 january ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-28 15:50:17+00:00 1.0 1219293084 1352 oax update not exactly the pump we expected we had a third party dump on us after the initial pump announcement which pushed oax down and didnt give us all the chance we expected to ride it to our targets were currently holding this coin as we can expect to see a move up higher in the next weeks be ready for further announcements as 2022 will be our most profitable year yet 2021-12-28 15:47:53+00:00 1.0 1219293084 1350 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-12-28 14:55:02+00:00 1.0 1219293084 1349 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-12-28 14:44:58+00:00 1.0 1219293084 1338 new binance pump announcement ⏳date tuesday 28 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit dear members we have decided to postpone the pump after hours of discussions with the team we have received many inquiries to make the pump on a different day because of christmas many members will not be available to take part in the pump even though the market looks bullish this holiday period may affect the pump and the volume in a negative way moreover the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect the capital of our members we are aiming for an extremely high gains for this pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 2 minutes after the call as an apology for the postponement stay tuned for our further announcements 2021-12-26 05:55:04+00:00 1.0 1219293084 1326 special offer just 30 hours the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are confident to say the upcoming sunday pump will be one of the biggest pumps we have done so far our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are also doing a private event exclusively for our vip members this week bpandmin only 4 slots left please find the membership form here qqedituspformshomethstrue 2021-12-23 08:32:36+00:00 1.0 1219293084 1304 new binance pump announcement ⏳date sunday 26 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-12-19 20:21:36+00:00 1.0 1219293084 1302 pump result amazing pump with more than 133 btc volume which is close to 7 million in volume with a peak of 45 that lasted more than 1 minute we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding appc with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-12-19 17:29:57+00:00 1.0 1219293084 1300 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-12-19 14:55:10+00:00 1.0 1219293084 1299 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-12-19 14:44:59+00:00 1.0 1219293084 1298 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-12-19 14:31:34+00:00 1.0 1219293084 1265 new binance pump announcement ⏳date sunday 19 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-12-11 14:27:29+00:00 1.0 1219293084 1264 dear members we have decided to postpone the sunday pump after hours of discussions with the team even though the market looks bullish the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect your and all member capitals we are aiming for an extremely high for the next pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 2 minutes after the call as an apology for the postponement best regards the binance pump signals team 2021-12-11 06:14:30+00:00 1.0 1219293084 1253 new binance pump announcement ⏳date sunday 12 december ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-12-07 05:48:30+00:00 1.0 1219293084 1225 new binance pump announcement ⏳date sunday 5 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-11-28 17:48:33+00:00 1.0 1219293084 1224 pump result amazing pump with more than 489 btc volume which is close to 27 million in volume with a peak of 67 that lasted more than 1 minute we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding phb with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-11-28 17:44:41+00:00 1.0 1219293084 1222 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:29+00:00 1.0 1219293084 1220 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-28 16:55:01+00:00 1.0 1219293084 1219 10 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-11-28 16:50:02+00:00 1.0 1219293084 1218 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-11-28 16:30:02+00:00 1.0 1219293084 1198 new binance pump announcement ⏳date sunday 28 november ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-11-23 16:27:53+00:00 1.0 1219293084 1197 pump result amazing pump with more than 183 btc volume which is close to 11million in volume with a peak of 52 that lasted more than 1 minute we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mda with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-11-23 16:25:35+00:00 1.0 1219293084 1195 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-23 14:55:04+00:00 1.0 1219293084 1194 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-11-23 14:45:35+00:00 1.0 1219293084 1193 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-11-23 14:30:10+00:00 1.0 1219293084 1183 new binance pump announcement ⏳date tuesday 23 november ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-11-20 09:48:29+00:00 1.0 1219293084 1181 hello everyone after a very long discussion with our our team we have decided to postpone our pump because we will coloborate our pump with other big channel to make more wolume in pumpcoins have already pumped and we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do next pum will be after 3 days on 24 of november so we have 3 days to prepare for it volume should be around 20 milions usd 2021-11-20 09:36:54+00:00 1.0 1219293084 1160 new binance pump announcement ⏳date tuesday 24 november ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-11-14 16:26:44+00:00 1.0 1219293084 1159 pump result amazing pump with more than 167 btc volume which is close to 11million in volume with a peak of 67 that lasted more than 2 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding nas with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-11-14 16:25:36+00:00 1.0 1219293084 1156 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-14 14:54:58+00:00 1.0 1219293084 1155 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-11-14 14:45:10+00:00 1.0 1219293084 1133 new binance pump announcement ⏳date sunday 14 november ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-11-07 17:56:58+00:00 1.0 1219293084 1132 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:54:50+00:00 1.0 1219293084 1129 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-07 16:55:06+00:00 1.0 1219293084 1128 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-11-07 16:45:00+00:00 1.0 1219293084 1102 new binance pump announcement ⏳date sunday 7 november ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership qqedituspformshomethstrue 2021-10-31 18:14:22+00:00 1.0 1219293084 1101 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:08:32+00:00 1.0 1219293084 1099 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:37+00:00 1.0 1219293084 1097 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-10-31 16:55:08+00:00 1.0 1219293084 1095 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join bpandmin qqedituspformshomethstrue 2021-10-31 16:29:56+00:00 1.0 1219293084 1065 new binance pump announcement ⏳date sunday 31 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-10-24 18:45:14+00:00 1.0 1219293084 1061 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 18:43:22+00:00 1.0 1219293084 1060 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:51+00:00 1.0 1219293084 1058 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-10-24 16:55:02+00:00 1.0 1219293084 1057 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join n35hgviewformuspsflink 2021-10-24 16:45:01+00:00 1.0 1219293084 1030 new binance pump announcement ⏳date sunday 24 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-10-17 09:50:09+00:00 1.0 1219293084 1029 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently some of the good coins have already pumped and the other ones lack pattern formation for a decent pump we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-10-17 09:32:46+00:00 1.0 1219293084 1004 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:44:26+00:00 1.0 1219293084 1000 new binance pump announcement ⏳date sunday 17 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-10-10 17:37:30+00:00 1.0 1219293084 999 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:01:00+00:00 1.0 1219293084 997 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-10-10 16:54:56+00:00 1.0 1219293084 996 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join mikekarper ⬇️ n35hgviewformuspsflink 2021-10-10 16:45:02+00:00 1.0 1219293084 995 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join mikekarper ⬇️ n35hgviewformuspsflink 2021-10-10 16:29:58+00:00 1.0 1219293084 970 special offer just 30 hours the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are confident to say the upcoming sunday pump will be one of the biggest pumps we have done so far our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are also doing a private event exclusively for our vip members this week mikekarper only 5 slots left please find the membership form here n35hgviewformuspsflink 2021-10-06 07:06:09+00:00 1.0 1219293084 959 new binance pump announcement ⏳date sunday 10 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-10-03 18:23:53+00:00 1.0 1219293084 955 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:54+00:00 1.0 1219293084 953 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join mikekarper ⬇️ n35hgviewformuspsflink 2021-10-03 16:45:04+00:00 1.0 1219293084 927 new binance pump announcement ⏳date sunday 3 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-09-25 18:50:32+00:00 1.0 1219293084 926 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently some of the good coins have already pumped and the other ones lack pattern formation for a decent pump we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-09-25 18:48:17+00:00 1.0 1219293084 901 new binance pump announcement ⏳date sunday 26 september ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of september is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended august with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-09-19 18:54:24+00:00 1.0 1219293084 897 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:34:31+00:00 1.0 1219293084 895 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-09-19 16:55:19+00:00 1.0 1219293084 894 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join mikekarper ⬇️ n35hgviewformuspsflink 2021-09-19 16:45:11+00:00 1.0 1219293084 893 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join mikekarper ⬇️ n35hgviewformuspsflink 2021-09-19 16:30:18+00:00 1.0 1219293084 858 new binance pump announcement ⏳date sunday 19 september ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of september is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended august with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-09-11 17:48:54+00:00 1.0 1219293084 857 dear members we have decided to postpone the sunday pump after hours of discussions with the team the market looks bearish the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect your and all member capitals we are aiming for an extremely high for the next pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 2 minutes after the call as an apology for the postponement best regards the binance pump signals team 2021-09-11 17:13:31+00:00 1.0 1219293084 834 new binance pump announcement ⏳date sunday 12 september ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of september is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended august with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-09-05 18:28:05+00:00 1.0 1219293084 833 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump 2021-09-05 18:27:19+00:00 1.0 1219293084 831 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-09-05 16:54:50+00:00 1.0 1219293084 830 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join mikekarper ⬇️ n35hgviewformuspsflink 2021-09-05 16:45:05+00:00 1.0 1219293084 828 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join mikekarper ⬇️ n35hgviewformuspsflink 2021-09-05 16:30:09+00:00 1.0 1219293084 793 new binance pump announcement ⏳date sunday 5 september ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of september is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended august with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership n35hgviewformuspsflink 2021-08-29 17:34:31+00:00 1.0 1219293084 792 pump result another casual pump with at least 50 gain potential and a massive amount of volume in the first few minutes around 13 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are receiving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate and triple the result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-29 17:31:02+00:00 1.0 1219293084 790 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-08-29 16:55:11+00:00 1.0 1219293084 789 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join contact mikekarper ⬇️ 2021-08-29 16:30:05+00:00 1.0 1219293084 767 new binance pump announcement ⏳date sunday 29 august ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of august is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended july with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-08-22 18:07:33+00:00 1.0 1219293084 764 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-08-22 16:55:05+00:00 1.0 1219293084 739 new binance pump announcement ⏳date sunday 22 august ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of august is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended july with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-08-14 17:31:51+00:00 1.0 1219293084 738 dear members we have decided to postpone the sunday pump after hours of discussions with the team even though the market looks bullish the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect your and all member capitals we are aiming for an extremely high for the next pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 2 minutes after the call as an apology for the postponement best regards the binance pump signals team 2021-08-14 17:29:49+00:00 1.0 1219293084 726 new binance pump announcement ⏳date sunday 15 august ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of august is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended july with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-08-09 15:13:38+00:00 1.0 1219293084 714 new binance pump announcement ⏳date sunday 8 august ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of august is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended july with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-08-01 17:17:07+00:00 1.0 1219293084 713 dear members during todays pump a whale that was in nxs before the pump dumped on us when we were just starting the fomo this will not happen again it was a mistake from one of our partner who didnt track the whales wallets our next pump will be successful and we will buy 100000 worth of the coin two minutes after we release the coin name as an apology 2021-08-01 17:12:22+00:00 1.0 1219293084 711 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-08-01 16:55:03+00:00 1.0 1219293084 689 new binance pump announcement ⏳date sunday 1 august ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of august is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended july with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership click here 2021-07-26 06:16:53+00:00 1.0 1219293084 688 pump result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-07-25 18:13:06+00:00 1.0 1219293084 684 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-07-25 16:54:57+00:00 1.0 1219293084 683 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-07-25 16:45:44+00:00 1.0 1219293084 682 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-07-25 16:30:20+00:00 1.0 1219293084 681 1 hour left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-07-25 16:00:04+00:00 1.0 1219293084 669 new binance pump announcement ⏳date sunday 25 july ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of july is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended june with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before mikekarper 2021-07-21 04:07:21+00:00 1.0 1219293084 663 new kucoincom pump announcement ⏳date wednesday 21 july ⏰time 7 pm gmt exchange kucoincom +26 whale channels target 300 500 profit the alt season of july is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended june with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-07-18 14:28:34+00:00 1.0 1219293084 662 dear members we decided today postone our pump for bitcoin direction we decided to do the pump in kucoincom mobile app tooplatform where you can choose the purchase of usdt with our volumes averaging 5 to 10 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 3 days to make sure that we are fully prepared on july 21 we will be pumping with a 500 + target we will also try reaching more than 5 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of usdt will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on kucoincom big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen 2021-07-18 14:25:54+00:00 1.0 1219293084 650 new binance pump announcement ⏳date sunday 18 july ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of july is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended june with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-07-12 06:14:57+00:00 1.0 1219293084 648 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-07-11 16:55:02+00:00 1.0 1219293084 647 10 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-07-11 16:50:03+00:00 1.0 1219293084 646 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-07-11 16:29:47+00:00 1.0 1219293084 645 1 hour left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-07-11 16:00:02+00:00 1.0 1219293084 639 new binance pump announcement ⏳date sunday 11 july ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of july is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended june with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-07-10 12:15:31+00:00 1.0 1219293084 630 new binance pump announcement ⏳date sunday 04 july ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of july is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended june with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-06-27 18:07:13+00:00 1.0 1219293084 626 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-06-27 16:55:02+00:00 1.0 1219293084 625 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-06-27 16:45:02+00:00 1.0 1219293084 624 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-06-27 16:30:19+00:00 1.0 1219293084 622 1 hour 30 minutes left until our pump on binance invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day ago and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-06-27 15:35:53+00:00 1.0 1219293084 613 new binance pump announcement ⏳date sunday 27 june ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of june is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended may with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-06-20 17:27:27+00:00 1.0 1219293084 612 pump result update wabi start price 602 weve reached 1249 huge quick profit 108 to know next pump coin name 1 day before pump join vip channel contact mikekarper for vip membership 2021-06-20 17:12:46+00:00 1.0 1219293084 609 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-06-20 16:55:11+00:00 1.0 1219293084 608 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-06-20 16:30:01+00:00 1.0 1219293084 598 new binance pump announcement ⏳date sunday 20 june ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of june is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended may with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-06-13 18:21:08+00:00 1.0 1219293084 594 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-06-13 16:55:03+00:00 1.0 1219293084 593 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-06-13 16:44:36+00:00 1.0 1219293084 578 new binance pump announcement ⏳date sunday 13 june ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of june is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended may with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-06-06 17:10:20+00:00 1.0 1219293084 576 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-06-06 16:55:03+00:00 1.0 1219293084 575 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-06-06 16:30:51+00:00 1.0 1219293084 574 1 hour left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day ago and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-06-06 16:00:10+00:00 1.0 1219293084 562 new binance pump announcement ⏳date sundday 6 june ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of june is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended may with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-05-31 04:50:08+00:00 1.0 1219293084 559 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-05-30 16:55:03+00:00 1.0 1219293084 558 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-05-30 16:30:11+00:00 1.0 1219293084 547 new binance pump announcement ⏳date sundday 30 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago mikekarper 2021-05-26 21:44:41+00:00 1.0 1219293084 545 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-05-26 16:55:02+00:00 1.0 1219293084 544 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact mikekarper 2021-05-26 16:31:00+00:00 1.0 1219293084 542 1hour 50 minutes left until our pump on binance invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day ago and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-05-26 15:10:23+00:00 1.0 1219293084 536 new binance pump announcement ⏳date wednesday 26 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago 2021-05-23 15:03:37+00:00 1.0 1219293084 535 dear members we have discussed all morning and we finally came to a decision as you all know we should have a pump tonight however we will postpone the pump to next week sunday 2021 may 30 5 pm gmt the experience teaches us that in day that bitcoins price droped significantly the pumps always turn out the be worse the reason for this is the amount of outsiders out of bitcoin instead of buying altcoins thich causes insecurity on the altcoins order books we are sorry for the people that really wanted a pump today we care a lot about our members and pumping now would be too risky we want our members to make the biggest amount of profit possible and we see a better opportunity coming wednesday because of the reason named above again we would love to pump today however we can better be safe than sorry i know there is a lot of hype and excitement for the pump but we can guarantee that the pump next sunday would be a lot better than today therefor the hype and excitement would be bigger 2021-05-23 15:02:23+00:00 1.0 1219293084 526 new binance pump announcement ⏳date sunday 23 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago 2021-05-16 17:15:11+00:00 1.0 1219293084 522 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-05-16 16:55:03+00:00 1.0 1219293084 521 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before premium member contact mikekarper 2021-05-16 16:45:50+00:00 1.0 1219293084 510 new binance pump announcement ⏳date sunday 16 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-05-10 04:18:30+00:00 1.0 1219293084 505 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-05-09 16:55:04+00:00 1.0 1219293084 500 5 hours 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-05-09 11:26:08+00:00 1.0 1219293084 492 new binance pump announcement ⏳date sunday 9 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-05-02 15:51:15+00:00 1.0 1219293084 491 dear members we will postpone tonights pump as we are experiencing problems with the discord server the server has been growing a lot past week and this is causing server issues we are communicating with discord to increase the server capacity but this wont be solved until monday we have decided to push back the pump a few days the new details are as follows exchange binancecom date 9may2021 time 5 pm gmt 2021-05-02 15:48:55+00:00 1.0 1219293084 483 new binance pump announcement ⏳date sunday 2 may ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-04-26 07:15:01+00:00 1.0 1219293084 480 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-04-25 16:55:26+00:00 1.0 1219293084 472 new binance pump announcement ⏳date sunday 25 april ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of april is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed march with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-04-22 04:19:45+00:00 1.0 1219293084 470 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-04-21 20:55:05+00:00 1.0 1219293084 463 new binance pump announcement ⏳date wednesday 21 april ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of april is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed march with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-04-18 15:22:47+00:00 1.0 1219293084 462 dear members we have discussed all morning and we finally came to a decision as you all know we should have a pump tonight however we will postpone the pump to next week wednesday april 2021 9 pm gmt the experience teaches us that in day that bitcoins price droped significantly the pumps always turn out the be worse the reason for this is the amount of outsiders out of bitcoin instead of buying altcoins thich causes insecurity on the altcoins order books we are sorry for the people that really wanted a pump today we care a lot about our members and pumping now would be too risky we want our members to make the biggest amount of profit possible and we see a better opportunity coming wednesday because of the reason named above again we would love to pump today however we can better be safe than sorry i know there is a lot of hype and excitement for the pump but we can guarantee that the pump next wednesday would be a lot better than today therefor the hype and excitement would be bigger 2021-04-18 15:19:45+00:00 1.0 1219293084 458 new binance pump announcement ⏳date sunday 18 april ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of april is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed march with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-04-14 11:27:28+00:00 1.0 1219293084 455 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-04-11 16:55:02+00:00 1.0 1219293084 444 new binance pump announcement ⏳date sunday 11 april ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of april is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed march with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-04-04 16:13:04+00:00 1.0 1219293084 443 dear members we will postpone tonights pump as we are experiencing problems with the discord server the server has been growing a lot past week and this is causing server issues we are communicating with discord to increase the server capacity but this wont be solved until monday we have decided to push back the pump a few days the new details are as follows exchange binancecom date 11april2021 time 5 pm gmt 2021-04-04 15:29:45+00:00 1.0 1219293084 439 new binance pump announcement ⏳date sunday 4 april ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of april is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed march with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-03-29 14:36:58+00:00 1.0 1219293084 435 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-03-28 16:55:01+00:00 1.0 1219293084 426 new binance pump announcement ⏳date sunday 28 march ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of march is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-03-23 15:23:34+00:00 1.0 1219293084 425 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:01:03+00:00 1.0 1219293084 424 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-03-21 16:55:29+00:00 1.0 1219293084 414 new binance pump announcement ⏳date sunday 21 march ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of march is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-03-11 06:29:26+00:00 1.0 1219293084 411 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-03-07 16:55:04+00:00 1.0 1219293084 406 new binance pump announcement ⏳date sunday 7 march ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of march is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-03-06 21:58:40+00:00 1.0 1219293084 405 dear members sad announcement we will postpone tonights pump to tomorrow 5 pm gmt as we are experiencing problems with discord due to the high number of members the server is experiencing extreme outages and we need to contact discord to fix this takes around 12 hours if we would pump right now we would lose nearly 50 of the volume waiting 24 hours is more than worth it we hope you understand why postponing the pump is better at this moment we understand everyone was hyped but this is for the better this also gives new us users time to create an account on binance global 2021-03-06 20:12:47+00:00 1.0 1219293084 404 7hours 30 minutes left until our pump on binance invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day ago and they buy it we lowered the price of our membership fee send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-03-06 13:29:32+00:00 1.0 1219293084 399 new binance pump announcement ⏳date saturday 6 march ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of march is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-28 08:02:33+00:00 1.0 1219293084 398 dear members we will postpone tonights pump as we are experiencing problems with the discord server the server has been growing a lot past week and this is causing server issues we are communicating with discord to increase the server capacity but this wont be solved until monday we have decided to push back the pump a few days the new details are as follows exchange binancecom date 06mar2021 time 9pm gmt 2021-02-27 19:37:29+00:00 1.0 1219293084 391 new binance pump announcement ⏳date saturday 27 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-23 04:52:57+00:00 1.0 1219293084 388 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-02-21 16:55:01+00:00 1.0 1219293084 384 new binance pump announcement ⏳date sunday 21 febuary ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-20 17:13:45+00:00 1.0 1219293084 383 dear members sad announcement we will postpone tonights pump to tomorrow 5 pm gmt as we are experiencing problems with discord due to the high number of members the server is experiencing extreme outages and we need to contact discord to fix this takes around 12 hours if we would pump right now we would lose nearly 50 of the volume waiting 24 hours is more than worth it we hope you understand why postponing the pump is better at this moment we understand everyone was hyped but this is for the better this also gives new us users time to create an account on binance global 2021-02-20 17:11:52+00:00 1.0 1219293084 378 new binance pump announcement ⏳date saturday 20 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-15 18:40:55+00:00 1.0 1219293084 376 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-02-13 20:55:01+00:00 1.0 1219293084 373 1 hour 30 minutes left until our pump on binance invest in your future and be a partner in this great familywe inform our vip members of the coin name 1 day ago and they buy it we lowered the price of our membership fee send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-13 19:30:28+00:00 1.0 1219293084 367 new binance pump announcement ⏳date saturday 13 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-11 05:13:51+00:00 1.0 1219293084 365 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-02-10 20:55:03+00:00 1.0 1219293084 358 new binance pump announcement ⏳date wednesday 10 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-08 17:00:03+00:00 1.0 1219293084 348 new binance pump announcement ⏳date sunday 7 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-05 21:59:05+00:00 1.0 1219293084 346 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-02-05 20:55:02+00:00 1.0 1219293084 339 new binance pump announcement ⏳date friday 5 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-03 22:20:46+00:00 1.0 1219293084 337 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-02-03 20:55:02+00:00 1.0 1219293084 331 new binance pump announcement ⏳date wednesday 3 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-02 21:02:00+00:00 1.0 1219293084 330 dear members sad announcement we will postpone tonights pump to tomorrow 9 pm gmt as we are experiencing problems with discord due to the high number of members the server is experiencing extreme outages and we need to contact discord to fix this takes around 12 hours if we would pump right now we would lose nearly 50 of the volume waiting 24 hours is more than worth it we hope you understand why postponing the pump is better at this moment we understand everyone was hyped but this is for the better this also gives new us users time to create an account on binance global 2021-02-02 20:53:52+00:00 1.0 1219293084 322 new binance pump announcement ⏳date tuesday 2 febuary ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of febuary is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed january with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-02-01 06:37:06+00:00 1.0 1219293084 320 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-31 20:55:03+00:00 1.0 1219293084 313 new binance pump announcement ⏳date sunday 31 january ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of january is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed december with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-29 17:42:58+00:00 1.0 1219293084 310 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-27 18:55:09+00:00 1.0 1219293084 305 new binance pump announcement ⏳date wednesday 27 january ⏰time 7 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of january is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed december with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-27 14:06:56+00:00 1.0 1219293084 303 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-23 20:54:27+00:00 1.0 1219293084 296 new binance pump announcement ⏳date saturday 23 january ⏰time 21 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of january is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed december with great success we ended december with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-21 19:44:54+00:00 1.0 1219293084 293 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-20 16:55:55+00:00 1.0 1219293084 287 new binance pump announcement ⏳date wednesday 20 january ⏰time 17 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-19 17:08:35+00:00 1.0 1219293084 285 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-18 16:55:12+00:00 1.0 1219293084 278 new binance pump announcement ⏳date monday 18 january ⏰time 17 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-18 07:09:17+00:00 1.0 1219293084 276 new binance pump announcement ⏳date sunday 17 january ⏰time 17 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-15 17:20:50+00:00 1.0 1219293084 272 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-14 20:55:02+00:00 1.0 1219293084 264 new binance pump announcement ⏳date thursday 14 january ⏰time 21 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-11 18:43:33+00:00 1.0 1219293084 262 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-11 15:55:02+00:00 1.0 1219293084 256 new binance pump announcement ⏳date monday 11 january ⏰time 4 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2021-01-09 21:19:06+00:00 1.0 1219293084 254 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-09 20:55:09+00:00 1.0 1219293084 246 dear members the details of the next pump are as follows exchange binance date 09jan2021 time 9pm gmt we have learned a lot from last pump a lot of people did not follow the strategy that we planned as i have mentioned before it is hard to get a well orchestrated pump which is logical in a group this big we are working on a new strategy which will improve the pumps 2021-01-07 21:14:55+00:00 1.0 1219293084 244 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2021-01-07 20:55:08+00:00 1.0 1219293084 239 24 hours left until the pump 7th jan 2100 gmt 4pm est almost every altcoin on binance is green today investors are starting to gain interest in the altcoins we pump instead of buying more bitcoin this is exactly what we want to see leading up to a pump many more outsiders than normal will be active in the altcoin markets which makes our pumps more effective and last much longer this will be one of our best pumps ever i can already feel it make sure you have a binancecom account and btc ready to trade with as always our goals are to all buy in quickly causing the coin to pump to its expected gain range where we will sell for profit to outsiders as we promote the coin news to bring maximum attention to our coin im reposting this guide because it is very important to remember our goals and to work as a team 2021-01-06 21:03:29+00:00 1.0 1219293084 237 48 hours left until the pump 7th jan 2100 gmt 4pm est almost every altcoin on binance is green today investors are starting to gain interest in the altcoins we pump instead of buying more bitcoin this is exactly what we want to see leading up to a pump many more outsiders than normal will be active in the altcoin markets which makes our pumps more effective and last much longer this will be one of our best pumps ever i can already feel it make sure you have a binancecom account and btc ready to trade with as always our goals are to all buy in quickly causing the coin to pump to its expected gain range where we will sell for profit to outsiders as we promote the coin news to bring maximum attention to our coin im reposting this guide because it is very important to remember our goals and to work as a team 2021-01-05 21:05:00+00:00 1.0 1219293084 236 new binance pump announcement ⏳date 7 january ⏰time 9 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2020-12-29 16:34:43+00:00 1.0 1219293084 232 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-12-27 17:56:04+00:00 1.0 1219293084 227 new binance pump announcement ⏳date sunday 27 december ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2020-12-12 21:16:16+00:00 1.0 1219293084 222 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-12-02 17:55:02+00:00 1.0 1219293084 217 new binance pump announcement ⏳date wednesday 02 december ⏰time 6 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 50+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed november with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our december success rates are ✅ binance 2 december our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2020-11-29 12:04:19+00:00 1.0 1219293084 214 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-11-27 20:55:02+00:00 1.0 1219293084 212 1 hour left until pump on binance the market is excellent today push will be amazing vip members have the option to buy 1 day ago 2020-11-27 20:00:03+00:00 1.0 1219293084 209 new binance pump announcement ⏳date 27 november ⏰time 7 pm gmt exchange binance +26 whale channels target 80 90 profit this push is free for everyone everyone will get a coin at the same time we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tune our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2020-11-20 19:07:23+00:00 1.0 1219293084 205 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-11-18 17:55:02+00:00 1.0 1219293084 202 3 hours left until our pump on binance 2020-11-18 15:01:09+00:00 1.0 1219293084 200 new binance pump announcement ⏳date wednesday 18 november ⏰time 6 pm gmt exchange binance +26 whale channels target 80 90 profit this push is free for everyone everyone will get a coin at the same time we recommend to buy coin as soon as possible to avoid losses when bitcoin rises alts prices fall and it will take about 2 weeks before people make sales offers sales offers are the most limiting before the price rises so the next push can be very huge stay tune our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day ago premium member contact muratsaltuntas 2020-11-16 09:34:47+00:00 1.0 1219293084 192 1 or 2 hours left until the binance pump stay online the mountain alt will be shared anytime today this is going to be one of the best signals ever today we are not gonna let bot traders buy the signal thats why we are not setting up the exact time this will have a steady growth to binance top gainer anytime between 4 5 pm gmt 2020-06-08 15:02:52+00:00 1.0 1219293084 191 3 or4 hours left until the binance pump alts are getting hot today and to add a bit of extra hottness we are gonna see the mountain alt today the strategy is different to see a slow and steady growth 200 ++ with top gainer on binance about few hrs mountain alt | 4 5 pm gmt 1 day ago ago we have the option to buy 2020-06-08 13:03:29+00:00 1.0 1219293084 188 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 16:00:22+00:00 1.0 1219293084 187 next post will be the binance coin 3 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-05-29 15:57:36+00:00 1.0 1219293084 185 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:04:47+00:00 1.0 1219293084 184 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:14:38+00:00 1.0 1219293084 182 new binance pump announcement ⏳date may 29th ⏰time 4 pm gmt exchange binance +16 whale channels target 90 120 profit hope you are having a great day | guess what we are going to bring yet another alt signal tomorrow | may 29th our previous mountain alt 《 ong 》 hit whopping 106 with all targets chased in below 20 mins the next mountain alt 150 stay tuned for more updates our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april ✅ 1174 elf binance 10 april ✅ 3346 gvtbinance 15 april ✅ 1779 bnt binance 24 april our may success rates are ✅ 1307 mda binance 4 may 1 day ago ago we have the option to buy 2020-05-28 12:56:05+00:00 1.0 1219293084 177 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-05-04 18:55:29+00:00 1.0 1219293084 176 everyone 10 minutes left login binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast sell at maximum profit 2020-05-04 18:51:18+00:00 1.0 1219293084 175 30 mins left until the binance pump folks today at 19gmt we will share bottom based breakout coin for quick profit in short term we will see that coin in top gainers within fraction of seconds be ready with your btc on binance and dont miss the call by the time keep your btc ready for blast✅ 2020-05-04 18:30:34+00:00 1.0 1219293084 174 everyone 2 hours left until the pump with altcoins bottomed out because of bitcoins recent actions the markets are looking amazing for our pump the coins we pump are near recent lows and can skyrocket easily this pump can be incredible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-05-04 17:12:48+00:00 1.0 1219293084 173 everyone 4 hours left until the pump today we will be using the combined power of all our discords cryptofamily + telegram channel united pump binance profit signals + telegram channel crypto pump squad + telegram channel there are currently over 7500 users online and we expect this number to be closer to 10k come pump time our buying power will be massive and the coin markets are looking like they did in summer 2019 when our pumps were absolutely incredible reaching as high as 76 make sure you buy in quickly to get the best price before the coin keeps rising and follow the help provided we are very excited for today and looking forward to a great pump 2020-05-04 15:04:38+00:00 1.0 1219293084 172 24 hours left until the binance pump the pump will start once the signal bot posts the coin name here and everyone starts buying the coin will keep rising bc of our spike added volume and other factors see faq if you want to learn more about how it works coin news will also be supplied for everyone to spread around to help promote the coin and push it even higher our method of buying as a team and promoting as a team has worked over 60 times and it will work again tomorrow even better than usual in this market a lot of eyes on crypto right now and we will take full advantage of that 2020-05-03 18:49:56+00:00 1.0 1219293084 171 everyone binance pump announcement next pump monday 4 may 1900 gmt exchange pairing btc bitcoin has risen and alts have bottomed out this is the perfect time to pump we can and will do amazing things in this pump 2020-05-02 19:19:59+00:00 1.0 1219293084 168 as we are sure everyone is aware bitcoin pumped to over 8500 usd today and is still looking strong this is a great thing for the crypto world as a whole but not for our scheduled pump alts are unsafe on binance only 4 altcoins are not negative today we want to pump but we also want to make sure every pump we do is the best it can be for everyone involved so we will have to reschedule the pump for sometime next week this is the best move and gives everyone more time to get ready those who bought btc just for this pump are already up over 10 so good job 2020-04-30 01:07:25+00:00 1.0 1219293084 167 next pump thursday 30 april 1900 gmt exchange pairing btc bitcoin has risen we expect it to settle and the market to be prime for alts to rise this is a great situation to pump in and we will do all we can to make this the best so far this yearbinance pump update there is very high uncertainity in market today as per the rules when market is uncertain it is good to not do anything than making stupid decision it is very wise decision to secure your portfolio not buying anything unwillingly when we are unsure therefore we decided to postpone the hold event the event will be held again whenever we find a good coin worth buying you can find out vip membership information by sending a message 1 day ago ago we have the option to buy premium member contact muratsaltuntas 2020-04-28 19:12:22+00:00 1.0 1219293084 164 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-04-24 15:55:50+00:00 1.0 1219293084 162 3 hours left until the binance pump we will see multiple waves today around 3hr left for most awaited ”historic signal event” sell your alts fund your binance wallets to not miss this great opportunity ✌️ 1 day ago ago we have the option to buy 2020-04-24 13:04:22+00:00 1.0 1219293084 161 new binance pump announcemen ⏳date april 24 ⏰time 4 pm gmt exchange binance +16 whale channels target 35 50 profit more than 300k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 5080 so be ready with spare btc our april success rates are ✅ 4808 grs binance 1 april ✅ 3595 gvt binance 4 april ✅ 2952 arn binance 7 april ✅ 1174 elf binance 10 april ✅ 3346 gvtbinance 15 april ✅ binance 24 april 1 day ago ago we have the option to buy 2020-04-23 16:22:13+00:00 1.0 1219293084 160 the pump didnt go well today we had technical problems well make it up to you at the next pump coin rlc low 4220 high 4423 exchange binance profit 481 profit you will soon see rlc on 55006000 level because of huge volume spike advice 1 day ago we have the option to coin buy 2020-04-20 16:16:51+00:00 1.0 1219293084 158 next post will be the binance coin + 4 mins to the binance pump time to shake the market up 2020-04-20 15:56:59+00:00 1.0 1219293084 157 40 minutes left until the binance pump today will be given special ta based call which is hodl based and we are expecting big profit to holding this coin be ready today around 4 pm gmt our whales will pump a strong ta based coin up to 5x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details advice 1 day ago we have the option to coin buy 2020-04-20 15:20:01+00:00 1.0 1219293084 156 5 hours left until the binance pump today will be given special ta based call which is hodl based and we are expecting big profit to holding this coin be ready today around 4 pm gmt our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details advice 1 day ago we have the option to coin buy 2020-04-20 11:02:03+00:00 1.0 1219293084 155 binance pump update there is very high uncertainity in market today as per the rules when market is uncertain it is good to not do anything than making stupid decision it is very wise decision to secure your portfolio not buying anything unwillingly when we are unsure therefore we decided to postpone the hold event the event will be held again whenever we find a good coin worth buying ⏳date april 20 ⏰time 4 pm gmt exchange binance +16 whale channels target 35 50 profit you can find out vip membership information by sending a message 1 day ago ago we have the option to buy premium member contact muratsaltuntas 2020-04-19 16:19:58+00:00 1.0 1219293084 154 7 hours left until the binance pump our whales will pump a strong ta based coin up to 2x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 7hours left until strong ta call advice 1 day ago we have the option to coin buy premium member contact muratsaltuntas 2020-04-19 09:08:09+00:00 1.0 1219293084 153 new binance pump announcemen ⏳date april 19 ⏰time 4 pm gmt exchange binance +16 whale channels target 35 50 profit we will make sure to reach as high as possible make sure you have your binance account ready and loaded with btc for today advice 1 day ago we have the option to coin buy premium member contact muratsaltuntas 2020-04-17 18:43:22+00:00 1.0 1219293084 150 next post will be the binance coin 5 mins to the binance pump time to shake the market up login binance now have everything ready team the trick to make some amazing profits is to be focus 2020-04-15 15:55:03+00:00 1.0 1219293084 149 30 mins left until the binance pump todays strong ta call will be biggest till date this means that the coin signal will be at the exact same time for everyone expected spike 5070 1 day ago ago we have the option to buy premium member contact muratsaltuntas 2020-04-15 15:30:03+00:00 1.0 1219293084 148 2 hours left until the binance pump our whales will pump a strong ta based coin up to 6x and you all will be able to make massive profits in short term well share strong breakout unicorn waiting for a kick to moon read the pinned post for details less than 2hours left until strong ta call advice 1 day ago we have the option to coin buy premium member contact muratsaltuntas 2020-04-15 14:00:11+00:00 1.0 1219293084 147 4 hour left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected spike 6080 2020-04-15 12:02:13+00:00 1.0 1219293084 146 the next pump will take place the 15th of aprill exchange binance 1600 gmt ⚖️ pair btc targets 50 100 welcome to all the new members we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices this pump will be huge again 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact muratsaltuntas 2020-04-13 14:32:15+00:00 1.0 1219293084 145 the next pump will take place monday the 2th of september exchange binance 2000 gmt ⚖️ pair btc targets 50 100 welcome to all the new members monday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices this pump will be huge again 1 day ago 1 hour ago and 30 mins we have the option to buy premium member contact muratsaltuntas 2019-08-31 17:25:44+00:00 1.0 1219293084 138 everyone pump announcement next pump thursday 20 december 2000 gmt exchange cryptopia pairing btc please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contactmuratsaltuntas 2018-12-18 21:33:27+00:00 1.0 1219293084 137 can cryptopia pump results start price 375 peak price 1235 gain 229 please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contactmuratsaltuntas 2018-12-13 20:27:41+00:00 1.0 1219293084 135 everyone 5 minutes left the next message will be the coin expected gain 200300 2018-12-13 19:55:29+00:00 1.0 1219293084 134 everyone 10 minutes left until our massive pump be sure to help promote the coin in the cryptopia chatbox and on social media durring the pump 2018-12-13 19:50:17+00:00 1.0 1219293084 132 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contactmuratsaltuntas 2018-12-13 16:05:29+00:00 1.0 1219293084 130 next pump thursday 13 december 2000 gmt exchange cryptopia pairing btc please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contactmuratsaltuntas 2018-12-11 07:42:34+00:00 1.0 1219293084 129 binance pump analysis coin evx low 5902 high 6982 win profit 1826 volume 35 btc please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contactmuratsaltuntas 2018-12-10 17:18:45+00:00 1.0 1219293084 127 next post will be the coin 5 mins to the pump 2018-12-10 16:55:32+00:00 1.0 1219293084 126 10 minutes till binance pump be ready 2018-12-10 16:50:50+00:00 1.0 1219293084 125 last 30 minutes to the binance pump be ready after 30 minutes market is bad but we like to turn crises into opportunities please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact muratsaltuntas 2018-12-10 16:30:19+00:00 1.0 1219293084 124 2 hours 30 minutes till the binance pump target 50 70 please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact muratsaltuntas 2018-12-10 14:29:30+00:00 1.0 1219293084 123 the next pump will be scheduled ⏳ time and date monday 10th december at 0500 pm gmt utc time exchange binance ‍‍‍ participants more than 100000 cryptoinvestors target 5070 please send us a message if you want to know your coin name earlier 1 day before or 1 hour before we have the option to buy premium member contact muratsaltuntas 2018-12-08 12:06:57+00:00 1.0 1219293084 119 otn cryptopia pump results start price 4802 peak price 18293 gain 294 great job promoting today the pump rose very slow and steady and held for almost 10 min 2018-12-06 20:15:17+00:00 1.0 1219293084 111 3 hours 54 minutes left until our pump 2018-12-06 16:06:09+00:00 1.0 1219293084 103 1 hour left until our pump 2018-12-04 19:00:21+00:00 1.0 1219293084 102 3 hours and 50 minutes left until our massive pump remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump as we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump ask questions if you need 2018-12-04 16:09:58+00:00 1.0 1219293084 100 less than 48 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-12-03 13:07:26+00:00 1.0 1219293084 97 pump announcement tuesday 4 december 2000 gmt exchange cryptopia 2018-11-28 21:22:31+00:00 1.0 1219293084 91 results coin abc low 001037583 high 000455484 increase +128 as some of you requested we went for a slightly larger volume coin with some great early buying opportunities we managed to hold at +128 while outside investors came in although a lot of you are happy with todays signal we were aiming to raise the price up higher and longer when marketing team launches the promotional campaign it creates fomo resulting in waves of buy orders coming in at peak prices the result is huge as seen in our previous operations which have hit up to +685 outside investors are always looking for strong signals to get in the next signal will be on a smaller cap with a higher raise +128 is still good and people made nice gains but it could have been much bigger like our previous signals ☑️ we are ready to launch our new advertising campaign stay tuned for informations regarding our next one 2018-07-06 04:02:54+00:00 1.0 1219293084 89 ❗️ 3 minutes only the next message will be the of the coin 2018-07-05 18:57:04+00:00 1.0 1219293084 84 ❗️ next signal on schedule thursday the 5th of july at 700pm gmt cryptopia exchange ✅ get ready dont miss out on this one its going to be a massive opportunity 2018-07-03 15:51:59+00:00 1.0 1219293084 78 ❗️ less than 1 hour left todays coin will be posted at exactly 7pm gmt make sure you log on to cryptopia in good time 2018-06-27 18:07:07+00:00 1.0 1219293084 74 ✅ the next signal will be broadcast tomorrow ℹ️ date time and place date wednesday the 27th of june 2018 time 1900 gmt exchange cryptopia its going to be massive make sure you dont miss this one 2018-06-26 18:04:41+00:00 1.0 1219293084 70 ❗️ 4 minutes only the next message will be the image of the coin 2018-06-21 17:56:16+00:00 1.0 1219293084 69 ❗️ 10 minutes left ✅ get ready to go 2018-06-21 17:50:12+00:00 1.0 1219293084 65 ❗️ under 24 hours to go until our next signal ☑️ instructions reminder for members sign up and send your btc to wwwcryptopiaconzexchange get familiar with the exchange search bar and buy sell order forms ⏰ at 600pm gmt exactly we will post the coin name be at your computer 20 minutes early open telegram and log in to cryptopia ₿ search for the coin name in the btc market ✅ to buy quickly click on a sell order much higher than the current market rate click your available btc value and cryptopia will calculate the correct amount with certainty your buy order meets the lowest price first complete your order hold while the marketing is ongoing and the price increasing at a great rate after posting the signal it will be advertised on social medias and the exchange platform resulting in a huge wave of investorsbuyers when the price has increased greatly and the marketing team has promoted the coin we advise you to sell in pieces not all at once that is at your best profits interest this also keeps the price high and attractive to outside investors the channel members get to sell at highest prices 2018-06-20 18:51:05+00:00 1.0 1219293084 64 ❗️ next signal on schedule thursday the 21st of june at 600pm gmt cryptopia exchange ✅ been missing out on the big gains from previous signals be ready for this one stay tuned for upcoming info if have any quastions contact admin 2018-06-19 18:02:50+00:00 1.0 1219293084 61 ❗️ 3 minutes only the next message will be the image of the coin 2018-06-17 17:57:51+00:00 1.0 1219293084 56 signal on schedule sunday the 17th of june at 1800 gmt cryptopia exchange opportunity for huge gains not to be missed stay tuned 2018-06-16 04:18:03+00:00 1.0 1219293084 42 2 minutes left to the binance pump 2018-05-20 18:57:49+00:00 1.0 1219293084 41 5 minutes left to the binance pump 2018-05-20 18:55:43+00:00 1.0 1219293084 40 8 minutes left to the binance pump 2018-05-20 18:52:05+00:00 1.0 1219293084 39 15 minutes left to the binance pump 2018-05-20 18:45:26+00:00 1.0 1219293084 38 20 minutes left to the binance pump 2018-05-20 18:41:05+00:00 1.0 1219293084 37 30 minutes left to the binance pump 2018-05-20 18:31:15+00:00 1.0 1219293084 36 1 hours and 24 minutes left to the binance pump 2018-05-20 17:36:25+00:00 1.0 1219293084 35 3 hours left to the binance pump 2018-05-20 16:10:16+00:00 1.0 1219293084 32 dear members we are seeing some great opportunities the next pump will be exchange binance date 20052018 time 7pm gmt 2018-05-20 06:03:21+00:00 1.0 1319961055 1134 ont breakout failed‼️ buy hold it this time can see big pump 2019-02-15 03:05:25+00:00 1.0 1319961055 822 will cardano break the resistance area if breakout then we can see big pump so keep an eye on ada 2018-12-24 00:14:53+00:00 1.0 1319961055 127 coming days are looking good after 12 days we can see good growth on market then we have to decide hodl or sell current situation looks like september 2017 if btc suddenly pump grow continuesly towards ath then alts can fall to previous low lets wait for btc next movements 2018-09-07 15:45:02+00:00 1.0 1195248520 9017 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact thomastrader200 for premium membership 2022-01-19 09:29:37+00:00 1.0 1195248520 3106 uma result update 2nd target achieved in 8 hours 20 minutes ✅✅ one more huge profit 7 to know next pump coin name ☎️ contact thomastrader100 for premium membership 2020-10-09 02:55:30+00:00 1.0 1195248520 3064 scrt result update 2nd target achieved in 1 hour 33 minutes✅✅ one more huge profit 8 to know next pump coin name ☎️ contact thomastrader100 for premium membership and grab all quick profit signals 2020-10-05 23:20:42+00:00 1.0 1195248520 2546 elf hit 1479 finally all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 33 to know next pump coin name ☎️ contact kevintrader 2020-09-10 13:29:36+00:00 1.0 1195248520 2498 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact kevintrader for premium membership 2020-09-09 15:01:24+00:00 1.0 1195248520 2493 next pump coin name shared in premium channel 2020-09-09 14:55:15+00:00 1.0 1195248520 2140 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact viptrader01 for premium membership 2020-08-31 15:47:54+00:00 1.0 1195248520 1646 qtum result 2nd target achieved in just 37 minutes ✅✅ one more huge profit 38 using 5x leverage amazing calls by our team to know next pump coin name ☎️ contact viptrader01 2020-08-14 10:25:07+00:00 1.0 1195248520 1181 fio result 2nd target achieved in just 1 hour ✅✅ one more very quick huge profit 28 to know next pump coin name ☎️ contact viptrader01 2020-07-31 10:58:52+00:00 1.0 1195248520 1054 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact viptrader01 2020-07-28 15:32:53+00:00 1.0 1195248520 965 next post will be coin name 2020-07-24 16:56:31+00:00 1.0 1195248520 964 14 minutes left to pump on binance 2020-07-24 16:48:01+00:00 1.0 1195248520 963 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact viptrader01 2020-07-24 16:42:21+00:00 1.0 1195248520 960 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact viptrader01 2020-07-24 12:59:18+00:00 1.0 1195248520 948 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact viptrader01 2020-07-24 07:38:33+00:00 1.0 1195248520 923 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact viptrader01 for premium membership 2020-07-23 15:14:33+00:00 1.0 1195248520 912 sys hit 1655 finally all targets achieved in just 2 hour 8 minutes ✅✅✅✅ huge quick profit 56 next breakout pump signal will be shared in few hours only in premium channel hurry up ☎ contact viptrader01 2020-07-23 13:31:33+00:00 1.0 1195248520 873 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact viptrader01 for premium membership 2020-07-22 17:33:56+00:00 1.0 1195248520 496 15 minutes left to pump on binance 2020-07-07 15:50:49+00:00 1.0 1195248520 495 4 hour left to pump on binance to know coin name earlier join premium ☎ contact viptrader01 2020-07-07 12:06:18+00:00 1.0 1195248520 460 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact viptrader01 2020-07-04 17:02:12+00:00 1.0 1195248520 451 pump coin name gvt 2020-07-04 16:59:51+00:00 1.0 1195248520 450 15 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact viptrader01 2020-07-04 15:56:22+00:00 1.0 1195248520 170 pump coin name evx 2020-06-24 16:14:44+00:00 1.0 1195248520 169 30 minutes left to pump on binance 2020-06-24 15:32:19+00:00 1.0 1195248520 131 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact viptrader01 2020-06-24 05:49:26+00:00 1.0 1237041098 55958 oax pump almost every week good coin to buy and hold mark my words ‼️ 2022-01-22 17:03:17+00:00 1.0 1237041098 55950 next post will be coin name 2022-01-22 16:59:15+00:00 1.0 1237041098 55949 5 minutes left to pump on binance be ready with you btc 2022-01-22 16:55:07+00:00 1.0 1237041098 55948 15 minutes left to pump on binance 2022-01-22 16:45:48+00:00 1.0 1237041098 55947 30 minutes left to pump on binance 2022-01-22 16:30:02+00:00 1.0 1237041098 55940 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 13:54:23+00:00 1.0 1237041098 55915 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 08:28:32+00:00 1.0 1237041098 55782 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-18 17:21:59+00:00 1.0 1237041098 55584 pump result glmr start price 20267 weve reached 32498 all targets achieved in just 30 hour ✅✅✅✅ huge quick profit 60 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-13 14:53:17+00:00 1.0 1237041098 55531 iris result hit 267 2nd target achieved in just 25 hour✅✅ huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2022-01-12 05:46:46+00:00 1.0 1237041098 55489 santos hit 10292 finally all targets achieved in just 2 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-11 10:29:06+00:00 1.0 1237041098 55487 pump result santos start price 7159 weve reached 9500 3rd target achieved in just 51 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-11 09:03:30+00:00 1.0 1237041098 55420 pump result phb start price 882 weve reached 1155 3rd target achieved in just 30 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 08:59:31+00:00 1.0 1237041098 55413 pump result powr start price 1160 weve reached 1797 all targets achieved in just 20 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 06:53:49+00:00 1.0 1237041098 55343 pump result iris start price 206 weve reached 348 all targets achieved in just 55 hour ✅✅✅✅ huge quick profit 68 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-07 17:39:05+00:00 1.0 1237041098 55265 alcx result hit 9616 2nd target achieved in just 8 hour✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-06 06:42:36+00:00 1.0 1237041098 55163 pump result gxs start price 4283 weve reached 5694 3rd targets achieved in just 30 minutes ✅✅✅ huge quick profit 32 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-03 10:30:08+00:00 1.0 1237041098 55101 pump result nebl start price 2634 weve reached 4058 huge quick profit 53 in just 75 hour to know next pump coin name contact apglobals for premium membership 2022-01-02 17:19:04+00:00 1.0 1237041098 55081 ardr result hit 820 3rd target achieved in just 16 minutes ✅✅✅ huge quick profit 33 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2022-01-02 15:04:36+00:00 1.0 1237041098 54962 fxs result hit 90972 3rd target achieved in just 27 hour✅✅✅ huge quick profit 48 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-31 16:40:56+00:00 1.0 1237041098 54900 pump result gxs start price 4068 weve reached 5664 all targets achieved in just 31 minutes ✅✅✅✅ huge quick profit 39 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-29 12:56:23+00:00 1.0 1237041098 54877 pump result farm start price 1999 weve reached 5800 huge quick profit 190 in just 20 hour to know next pump coin name contact apglobals for premium membership 2021-12-28 16:49:15+00:00 1.0 1237041098 54872 pump result quick start price 5420 weve reached 11562 huge quick profit 106 in just 28 minutes to know next pump coin name contact apglobals for premium membership 2021-12-28 16:15:33+00:00 1.0 1237041098 54859 pump result hard start price 1704 weve reached 2718 all targets achieved in just 19 minutes ✅✅✅✅ huge quick profit 59 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-28 06:56:37+00:00 1.0 1237041098 54825 pump result utk start price 680 weve reached 979 all targets achieved in just 28 minutes ✅✅✅✅ huge quick profit 131 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-27 17:30:43+00:00 1.0 1237041098 54772 pump result lina start price 83 weve reached 111 all targets achieved in just 6 hour ✅✅✅✅ huge quick profit 101 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-26 11:27:54+00:00 1.0 1237041098 54737 pump result pha start price 825 weve reached 1290 all targets achieved in just 20 minutes ✅✅✅✅ huge quick profit 56 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 19:06:19+00:00 1.0 1237041098 54724 pump result flux start price 3404 weve reached 5828 all targets achieved in just 23 hour ✅✅✅✅ huge quick profit 71 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 17:25:04+00:00 1.0 1237041098 54698 mdt result hit 282 3rd target achieved in just 17 hour✅✅✅ huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-25 04:41:01+00:00 1.0 1237041098 54687 pump result appc start price 73 weve reached 105 3rd targets achieved in just 1 hour ✅✅✅ huge quick profit 43 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-24 17:33:50+00:00 1.0 1237041098 54680 pump result rdn start price 435 weve reached 816 huge quick profit 87 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 17:07:18+00:00 1.0 1237041098 54675 pump result evx start price 383 weve reached 540 huge quick profit 40 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 16:56:30+00:00 1.0 1237041098 54631 om result hit 431 3rd target achieved in just 14 minutes ✅✅✅ huge quick profit 23 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-23 15:52:35+00:00 1.0 1237041098 54595 pump result coti start price 634 weve reached 948 all targets achieved in just 36 hour ✅✅✅✅ huge quick profit 148 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-23 05:45:36+00:00 1.0 1237041098 54541 pump result ren start price 1058 weve reached 1543 all targets achieved in just 45 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-22 05:15:53+00:00 1.0 1237041098 54535 pump result jamsy start price 148 weve reached 251 all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 69 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-21 19:35:18+00:00 1.0 1237041098 54491 pump result any start price 4166 weve reached 6057 all targets achieved in just 29 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-20 18:15:44+00:00 1.0 1237041098 54454 dusk result hit 1339 3rd target achieved in just 15 hour✅✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-20 08:05:12+00:00 1.0 1237041098 54441 any result hit 5511 3rd target achieved in just 21 hour✅✅✅ huge quick profit 32 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-20 07:22:20+00:00 1.0 1237041098 54428 pump result appc start price 161 weve reached 222 huge quick profit 37 in just 9 minutes to know next pump coin name contact apglobals for premium membership 2021-12-19 15:04:42+00:00 1.0 1237041098 54416 wan result hit 1818 3rd target achieved in just 11 minutes ✅✅✅ huge quick profit 1818 amazing pump calls by our team advance buy and sell targets ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-19 08:56:15+00:00 1.0 1237041098 54398 farm result hit 2700 3rd target achieved in just 2 minutes ✅✅✅ huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:32:38+00:00 1.0 1237041098 54387 fis result hit 3524 2nd target achieved in just 2 minutes ✅✅ one more huge quick profit 25 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:14:10+00:00 1.0 1237041098 54381 pump result tru start price 805 weve reached 1194 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 18:01:02+00:00 1.0 1237041098 54366 pump result cfx start price 496 weve reached 650 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 11:35:01+00:00 1.0 1237041098 54351 pump result qlc start price 75 weve reached 114 all targets achieved in just 40 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 10:06:33+00:00 1.0 1237041098 54347 pump result tct start price 70 weve reached 109 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 09:27:09+00:00 1.0 1237041098 54302 tct result hit 87 3rd target achieved in just 10 minutes ✅✅✅ huge quick profit 24 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-17 12:58:43+00:00 1.0 1237041098 54295 high result hit 8500 2nd target achieved in just 7 minutes ✅✅ huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-17 07:57:30+00:00 1.0 1237041098 54225 pump result gxs start price 2720 weve reached 4150 all targets achieved in just 25 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-16 10:43:22+00:00 1.0 1237041098 54197 ramp result hit 582 3rd target achieved in just 65 hour✅✅✅ huge quick profit 48 amazing pump calls by our team you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-15 16:48:14+00:00 1.0 1237041098 54183 pump result voxel start price 5353 weve reached 8250 all targets achieved in just 18 hour ✅✅✅✅ huge quick profit 54 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-15 09:09:18+00:00 1.0 1237041098 54172 pump result doge start price 330 weve reached 463 all targets achieved in just 185 hour ✅✅✅✅ huge quick profit 120 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-14 19:59:49+00:00 1.0 1237041098 54168 voxel result hit 6595 3rd target achieved in just 24 minutes ✅✅✅ huge quick profit 23 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-14 13:37:05+00:00 1.0 1237041098 54014 pump result flux start price 6000 weve reached 9900 all targets achieved in just 33 minutes ✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-10 08:36:07+00:00 1.0 1237041098 53951 pump result mdt start price 129 weve reached 231 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 237 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-09 05:08:16+00:00 1.0 1237041098 53936 pump result ant start price 9002 weve reached 13000 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 44 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 18:58:08+00:00 1.0 1237041098 53911 pump result xtz start price 8322 weve reached 11567 all targets achieved in just 7 hour ✅✅✅✅ huge quick profit 115 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 06:55:22+00:00 1.0 1237041098 53878 pump result dusk start price 412 weve reached 855 all targets achieved in just 225 hour ✅✅✅✅ huge quick profit 107 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-07 14:07:38+00:00 1.0 1237041098 53855 pump result elf start price 980 weve reached 1781 all targets achieved in just 4 minutes✅✅✅✅ huge quick profit 81 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-06 17:26:04+00:00 1.0 1237041098 53850 grs result hit 2179 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 33 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-06 17:21:44+00:00 1.0 1237041098 53837 porto hit 11695 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 87 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-05 17:47:39+00:00 1.0 1237041098 53812 pump result lazio start price 8618 weve reached 13000 all targets achieved in just 50 minutes✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-05 07:56:29+00:00 1.0 1237041098 53807 santos result hit 13299 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-05 04:21:34+00:00 1.0 1237041098 53745 fio result hit 799 all targets achieved in 4 days✅✅✅✅ one more huge profit 142 ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-03 19:25:11+00:00 1.0 1237041098 53736 pump result mdt start price 112 weve reached 159 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 41 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 17:18:02+00:00 1.0 1237041098 53718 pump result gto start price 121 weve reached 192 all targets achieved in just 74 minutes✅✅✅✅ huge quick profit 58 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 10:23:18+00:00 1.0 1237041098 53700 pump result nuls start price 934 weve reached 3253 huge quick profit 248 to know next pump coin name contact apglobals for premium membership 2021-12-02 17:46:39+00:00 1.0 1237041098 53683 pump result gxs start price 1171 weve reached 2790 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 138 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-02 13:15:15+00:00 1.0 1237041098 53657 brd result hit 2830 all targets achieved in nust 2 days✅✅✅✅ one more huge profit 60 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-02 06:10:51+00:00 1.0 1237041098 53633 santos result hit 64967 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 48 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-12-01 11:22:21+00:00 1.0 1237041098 53629 pump result req start price 822 weve reached 1340 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-01 11:19:06+00:00 1.0 1237041098 53590 pump result agix start price 417 weve reached 578 huge quick profit 38 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-11-30 18:41:30+00:00 1.0 1237041098 53495 pump result mda start price 1144 weve reached 1999 all targets achieved in just 8 minutes✅✅✅✅ huge quick profit 74 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 17:02:19+00:00 1.0 1237041098 53488 pump result evx start price 1180 weve reached 1931 all targets achieved in just 43 minutes✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 16:45:45+00:00 1.0 1237041098 53486 evx result hit 1544 3rd target achieved in just 9 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-28 15:08:18+00:00 1.0 1237041098 53455 pump result pnt start price 2315 weve reached 3471 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 07:41:35+00:00 1.0 1237041098 53356 pump result nu start price 1592 weve reached 2460 huge quick profit 54 to know next pump coin name contact apglobals for premium membership 2021-11-27 06:29:20+00:00 1.0 1237041098 53322 pump result pyr start price 5631 weve reached 9298 all targets achieved in just 75 hour✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:32:29+00:00 1.0 1237041098 53319 pump result gtc start price 1956 weve reached 2784 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:07:07+00:00 1.0 1237041098 53303 pump result storj start price 3836 weve reached 6116 huge quick profit 59 in just 12 hour to know next pump coin name contact apglobals for premium membership 2021-11-26 17:25:09+00:00 1.0 1237041098 53229 pump result aion start price 315 weve reached 623 huge quick profit 97 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-11-25 17:42:20+00:00 1.0 1237041098 53201 amb result hit 113 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump coin name 2021-11-25 10:48:53+00:00 1.0 1237041098 53187 pump result wabi start price 434 weve reached 1056 huge quick profit 143 in just 41 minutes to know next pump coin name contact apglobals for premium membership 2021-11-25 08:54:25+00:00 1.0 1237041098 53181 pump result brd start price 353 weve reached 2931 all targets achieved in just 3 minutes✅✅✅✅ and pumped hard huge quick profit 730 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-25 04:19:27+00:00 1.0 1237041098 53169 pump result ramp start price 591 weve reached 844 all targets achieved in just 49 minutes✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 17:49:52+00:00 1.0 1237041098 53132 pump result drep start price 1886 weve reached 2799 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 06:32:48+00:00 1.0 1237041098 53077 pump result mda start price 1610 weve reached 2211 3rd target achieved in just 2 hour ✅✅✅ huge quick profit 37 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-23 15:03:34+00:00 1.0 1237041098 53057 pump result iris start price 212 weve reached 373 huge quick profit 75 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-11-22 18:45:07+00:00 1.0 1237041098 52994 pump result dego start price 1583 weve reached 2373 all target achieved in just 22 hour ✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 14:44:13+00:00 1.0 1237041098 52983 pump result nav start price 707 weve reached 1059 all target achieved in just 15 hour ✅✅✅✅ huge quick profit 49 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 10:22:53+00:00 1.0 1237041098 52943 pump result tct start price 60 weve reached 108 all target achieved in just 17 hour ✅✅✅✅ huge quick profit 80 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:52:41+00:00 1.0 1237041098 52939 pump result powr start price 1084 weve reached 1592 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:50:22+00:00 1.0 1237041098 52924 pump result gto start price 96 weve reached 156 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 62 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:38:16+00:00 1.0 1237041098 52919 pump result drep start price 1495 weve reached 3152 huge quick profit 110 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-11-20 18:17:46+00:00 1.0 1237041098 52914 pump result mith start price 88 weve reached 307 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 248 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:03:09+00:00 1.0 1237041098 52887 poly result hit 1500 3rd target achieved in just 5 hour✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-20 13:55:58+00:00 1.0 1237041098 52868 pump result mith start price 88 weve reached 153 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 73 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 08:15:48+00:00 1.0 1237041098 52832 mith result hit 114 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 17:24:17+00:00 1.0 1237041098 52818 lazio result hit 15493 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 14:24:04+00:00 1.0 1237041098 52813 dar result hit 5375 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:47:09+00:00 1.0 1237041098 52803 idex result hit 860 3rd target achieved in just 54 minutes ✅✅✅ one more huge quick profit 33 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:30:53+00:00 1.0 1237041098 52797 pump result idex start price 455 weve reached 669 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-19 06:46:48+00:00 1.0 1237041098 52780 pump result storj start price 2794 weve reached 4089 all target achieved in just 34 hour ✅✅✅✅ huge quick profit 138 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 17:54:01+00:00 1.0 1237041098 52739 aergo result hit 856 3rd target achieved in just 39 minutes ✅✅✅ one more huge quick profit 37 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-18 05:46:20+00:00 1.0 1237041098 52725 pump result rose start price 344 weve reached 512 all target achieved in just 14 hour ✅✅✅✅ huge quick profit 146 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 05:10:48+00:00 1.0 1237041098 52676 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-17 03:00:15+00:00 1.0 1237041098 52638 pump result porto start price 17066 weve reached 28188 all target achieved in just 8 minutes✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 12:24:17+00:00 1.0 1237041098 52622 pump result powr start price 606 weve reached 1244 all target achieved in just 15 minutes✅✅✅✅ huge quick profit 105 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 03:58:09+00:00 1.0 1237041098 52545 pump result nas start price 87 weve reached 142 all target achieved in just 1 minute✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-14 15:08:34+00:00 1.0 1237041098 52387 adx result hit 1485 2nd target achieved in just 8 minutes ✅✅ one more huge quick profit 22 amazing calls by our team so much quick profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-11 14:38:57+00:00 1.0 1237041098 52362 pump result ens start price 9137 weve reached 18000 all target achieved in just 185 hour✅✅✅✅ huge quick profit 97 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-11 06:13:16+00:00 1.0 1237041098 52262 pump result lpt start price 5769 weve reached 15220 huge quick profit 163 to know next pump coin name contact apglobals for premium membership 2021-11-09 18:24:54+00:00 1.0 1237041098 52214 pump result uma start price 2225 weve reached 3519 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-11-08 06:44:34+00:00 1.0 1237041098 52160 adx result hit 1796 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-07 06:36:04+00:00 1.0 1237041098 52138 pump result rgt start price 7585 weve reached 11482 all target achieved in just 30 minutes✅✅✅✅ huge quick profit 51 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-06 06:43:46+00:00 1.0 1237041098 52136 you missed one more profit here is one more profit for premium members in just 30 minutes pump result 2021-11-06 06:41:22+00:00 1.0 1237041098 52104 pump result sys start price 540 weve reached 897 all target achieved in just 18 hour ✅✅✅✅ huge quick profit 66 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-05 11:54:01+00:00 1.0 1237041098 52058 fis result hit 4000 3rd target achieved in just 17 minutes ✅✅✅ one more huge quick profit 35 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-04 07:43:33+00:00 1.0 1237041098 52031 pump result badger start price 5302 weve reached 9063 all target achieved in just 13 minutes✅✅✅✅ huge quick profit 70 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-03 20:06:49+00:00 1.0 1237041098 51969 wrx result hit 3319 3rd target achieved in just 59 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-02 19:04:35+00:00 1.0 1237041098 51948 pump result oxt start price 820 weve reached 1222 one more huge profit 49 to know next pump coin name contact apglobals for premium membership 2021-11-02 16:07:16+00:00 1.0 1237041098 51863 pump result ast start price 403 weve reached 634 all target achieved in 2 days✅✅✅✅ one more huge profit 57 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-10-31 14:55:11+00:00 1.0 1237041098 51779 pump result mana start price 2237 weve reached 3713 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 199 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-30 13:42:05+00:00 1.0 1237041098 51768 pump result vite start price 189 weve reached 257 3rd target achieved in just 15 minutes ✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-10-30 12:20:17+00:00 1.0 1237041098 51761 pump result dlt start price 103 weve reached 197 huge quick profit 91 within 75 hour to know next pump coin name contact apglobals for premium membership 2021-10-30 11:20:37+00:00 1.0 1237041098 51698 pump result mana start price 1423 weve reached 1978 huge quick profit 39 in just 95 hour to know next pump coin name contact apglobals for premium membership 2021-10-29 08:40:50+00:00 1.0 1237041098 51683 pump result gto start price 78 weve reached 108 all targets achieved in just 23 minutes ✅✅✅✅ huge quick profit 115 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-29 04:37:34+00:00 1.0 1237041098 51630 go hit 93 now 3rd target achieved in just 215 hour✅✅✅ huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-27 08:11:16+00:00 1.0 1237041098 51627 pump result 1inch start price 6787 weve reached 10323 1inch binance top gainer all targets achieved in just 12 minutes ✅✅✅✅ huge quick profit 156 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-27 06:38:27+00:00 1.0 1237041098 51520 pump result evx start price 1110 weve reached 2094 huge quick profit 88 to know next pump coin name contact apglobals for premium membership 2021-10-24 17:15:43+00:00 1.0 1237041098 51487 pump result go start price 71 weve reached 98 huge quick profit 38 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-10-23 10:55:35+00:00 1.0 1237041098 51401 pump result auction start price 6090 weve reached 9710 all targets achieved in just 10 hour ✅✅✅✅ huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2021-10-21 16:36:40+00:00 1.0 1237041098 51395 pump result firo start price 1352 weve reached 1885 3rd targets achieved in just 10 minutes ✅✅✅ huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-21 09:08:02+00:00 1.0 1237041098 51372 dnt result hit 376 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 81 using 3x leverage amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-21 04:37:17+00:00 1.0 1237041098 51276 pump result req start price 408 weve reached 586 all targets achieved in just 9 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-10-17 13:00:42+00:00 1.0 1237041098 51271 pump result sys start price 518 weve reached 820 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-10-17 10:54:44+00:00 1.0 1237041098 51208 pump result nu start price 519 weve reached 4649 huge quick profit 792 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 12:54:29+00:00 1.0 1237041098 51203 pump result keep start price 716 weve reached 2010 huge quick profit 180 in just 65 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 10:49:35+00:00 1.0 1237041098 51169 pump result wabi start price 572 weve reached 800 huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-14 15:12:48+00:00 1.0 1237041098 50920 stx result hit 3289 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 56 using 3x leverage amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-09 14:19:33+00:00 1.0 1237041098 50908 pump result klay start price 3197 weve reached 7899 huge quick profit 146 in just 4 minutes to know next pump coin name contact apglobals for premium membership 2021-10-09 13:57:38+00:00 1.0 1237041098 50903 pump result data start price 249 weve reached 406 huge quick profit 63 to know next pump coin name contact apglobals for premium membership 2021-10-09 13:46:06+00:00 1.0 1237041098 50821 juv hit 3790 now 3rd target achieved in just 19 hour✅✅✅ huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-10-07 18:31:15+00:00 1.0 1237041098 50757 ong result hit 3580 3rd target achieved in just 27 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-07 05:30:34+00:00 1.0 1237041098 50702 pump result hive start price 1425 weve reached 3056 huge quick profit 114 in just 42 minutes to know next pump coin name contact apglobals for premium membership 2021-10-06 05:47:25+00:00 1.0 1237041098 50692 ardr result hit 878 3rd target achieved in just 125 hour✅✅✅ one more huge quick profit 36 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-06 05:33:26+00:00 1.0 1237041098 50654 stpt to the moon hit 235 huge quick profit 94 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-05 11:54:19+00:00 1.0 1237041098 50608 pump result ez start price 13499 weve reached 21000 huge quick profit 56 in just 5 hour to know next pump coin name contact apglobals for premium membership 2021-10-03 17:05:06+00:00 1.0 1237041098 50456 pump result stpt start price 117 weve reached 188 huge quick profit 60 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 14:31:37+00:00 1.0 1237041098 50450 pump result poly start price 1333 weve reached 1815 huge quick profit 36 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 08:59:07+00:00 1.0 1237041098 50336 pump result adx start price 1153 weve reached 1688 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-09-26 19:51:11+00:00 1.0 1237041098 50315 pump result lto start price 549 weve reached 850 huge quick profit 164 using 3x leverage in just 34 hour to know next pump coin name contact apglobals for premium membership 2021-09-26 18:19:37+00:00 1.0 1237041098 50276 pump result nuls start price 1071 weve reached 1600 huge quick profit 49 in just 11 hour to know next pump coin name contact apglobals for premium membership 2021-09-25 18:05:49+00:00 1.0 1237041098 50256 pump result celr start price 293 weve reached 447 all targets achieved in just 115 hour ✅✅✅ huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-09-25 05:15:37+00:00 1.0 1237041098 50072 pump result nmr start price 967 weve reached 1377 3rd targets achieved in just 15 hour ✅✅✅ huge quick profit 127 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-09-22 04:57:17+00:00 1.0 1237041098 50039 acm result hit 2768 3rd target achieved in just 8 minutes ✅✅✅ one more huge quick profit 27 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-21 09:06:25+00:00 1.0 1237041098 49967 pump result oax start price 407 weve reached 631 all targets achieved in just 21 hour ✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-19 17:44:46+00:00 1.0 1237041098 49901 om result hit 882 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-09-18 19:44:37+00:00 1.0 1237041098 49891 pump result cfx start price 675 weve reached 1064 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-09-18 17:26:54+00:00 1.0 1237041098 49874 nmr result hit 1298 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 76 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-18 06:18:27+00:00 1.0 1237041098 49733 front result hit 4300 3rd target achieved in just 26 hour✅✅✅ one more huge quick profit 40 amazing pump calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 16:53:18+00:00 1.0 1237041098 49728 quick result hit 13000 3rd target achieved in just 4 hour✅✅✅ one more huge quick profit 32 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 11:28:38+00:00 1.0 1237041098 49621 pump result poly start price 1997 weve reached 1378 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-09-13 06:55:23+00:00 1.0 1237041098 49460 pond result hit 273 all targets achieved in 3 days✅✅✅✅ one more huge profit 50 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-10 15:24:00+00:00 1.0 1237041098 49407 nav result hit 1282 3rd target achieved in 2 days✅✅✅ one more huge profit 37 amazing profits for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 17:41:57+00:00 1.0 1237041098 49387 front result hit 4770 3rd target achieved in just 45 hour✅✅✅ one more huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 16:39:32+00:00 1.0 1237041098 49311 elf result hit 2138 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-08 04:30:53+00:00 1.0 1237041098 49260 pump result rose start price 501 weve reached 717 all targets achieved in just 55 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-09-07 10:31:48+00:00 1.0 1237041098 49194 pump result cdt start price 88 weve reached 137 all targets achieved in just 5 hour✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-06 09:47:45+00:00 1.0 1237041098 49163 rose hit 417 finally all targets achieved in just 17 hour✅✅✅✅ huge quick profit 148 using 3x leverage amazing pump calls by our team the longer you wait more you lose profit still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-06 04:56:09+00:00 1.0 1237041098 49155 pump result vib start price 155 weve reached 286 huge quick profit 84 to know next pump coin name contact apglobals for premium membership 2021-09-05 17:23:50+00:00 1.0 1237041098 49102 idex result hit 195 3rd target achieved in just 15 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-05 08:43:23+00:00 1.0 1237041098 49063 ctxc result hit 725 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 32 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-05 04:17:01+00:00 1.0 1237041098 48988 om result hit 649 3rd target achieved in just 12 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-03 06:45:20+00:00 1.0 1237041098 48948 sys result hit 661 3rd target achieved in just 44 minutes ✅✅✅ one more huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-02 14:02:33+00:00 1.0 1237041098 48887 elf result hit 1260 3rd target achieved in just 12 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-01 12:22:38+00:00 1.0 1237041098 48823 pump result ar start price 8674 weve reached 14000 huge quick profit 60 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:12:26+00:00 1.0 1237041098 48818 pump result rose start price 238 weve reached 308 huge quick profit 30 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:06:48+00:00 1.0 1237041098 48778 pump result nas start price 108 weve reached 144 3rd targets achieved in just 17 minutes ✅✅✅ huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2021-08-30 16:22:13+00:00 1.0 1237041098 48771 celo hit 22800 finally all targets achieved in 3 days✅✅✅✅ one more huge profit 192 amazing pump calls by our team the longer you wait more you lose profit hope you understood ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-30 14:48:55+00:00 1.0 1237041098 48537 aergo result hit 750 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 37 so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-25 06:50:43+00:00 1.0 1237041098 48477 firo result hit 1968 3rd target achieved in just 25 hour✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-23 14:54:04+00:00 1.0 1237041098 48455 pump result fxs start price 853 weve reached 1240 huge quick profit 45 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-08-23 06:58:38+00:00 1.0 1237041098 48449 pump result lrc start price 768 weve reached 1257 huge quick profit 63 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-23 06:51:28+00:00 1.0 1237041098 48437 nano result hit 1571 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 19 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-22 14:05:35+00:00 1.0 1237041098 48054 twt hit 1658 finally all targets achieved in just 115 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-15 10:01:41+00:00 1.0 1237041098 47917 clv result hit 4035 3rd target achieved in just 41 hour✅✅✅ one more huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-12 07:09:35+00:00 1.0 1237041098 47854 pump result req start price 175 weve reached 300 huge quick profit 71 in just 16 hour to know next pump coin name contact apglobals for premium membership 2021-08-11 03:37:50+00:00 1.0 1237041098 47837 pump result iotx start price 71 weve reached 122 huge quick profit 71 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-08-10 16:37:21+00:00 1.0 1237041098 47775 pump result quick start price 947 weve reached 1496 all targets achieved in just 33 hour ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-08-09 17:23:13+00:00 1.0 1237041098 47768 og result hit 1778 3rd target achieved in just 95 hour✅✅✅ one more huge quick profit 43 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-09 15:10:25+00:00 1.0 1237041098 47745 pump result atm start price 3658 weve reached 4956 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-08-09 07:12:03+00:00 1.0 1237041098 47687 pump result torn start price 10112 weve reached 14700 all targets achieved in just 7 minutes ✅✅✅✅ huge quick profit 45 to know next pump coin name contact apglobals for premium membership 2021-08-07 17:26:06+00:00 1.0 1237041098 47644 psg result hit 9463 all targets achieved in just 27 hour✅✅✅✅ one more huge quick profit 63 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-08-07 03:28:22+00:00 1.0 1237041098 47610 pump result gxs start price 1351 weve reached 2129 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-08-06 12:36:28+00:00 1.0 1237041098 47602 pump result om start price 449 weve reached 598 huge quick profit 33 in just 39 minutes to know next pump coin name contact apglobals for premium membership 2021-08-06 09:34:48+00:00 1.0 1237041098 47577 pump result om start price 368 weve reached 647 huge quick profit 75 in just 8 hour to know next pump coin name contact apglobals for premium membership 2021-08-05 15:14:56+00:00 1.0 1237041098 47558 tru pumped hard hit 3060 huge quick profit 595 from our entry price of 440 to know next pump coin name ☎️ contact apglobals 2021-08-05 09:28:52+00:00 1.0 1237041098 47543 pump result tru start price 440 weve reached 1237 huge quick profit 181 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-05 06:00:03+00:00 1.0 1237041098 47528 pump result tvk start price 563 weve reached 723 huge quick profit 28 in just 55 minutes to know next pump coin name contact apglobals for premium membership 2021-08-05 04:38:36+00:00 1.0 1237041098 47441 nmr pump result start price 1009 price hit 1450 all targets achieved in just 33 minutes ✅✅✅✅ one more huge quick profit 44 amazing pump call for premium members advance buy and sell targets given to them to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-03 05:08:43+00:00 1.0 1237041098 47395 rep result hit 7382 2nd target achieved in just 12 minutes ✅✅ one more huge quick profit 51 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-02 03:46:19+00:00 1.0 1237041098 47334 ardr result hit 870 all targets achieved in just 32 hour✅✅✅✅ one more huge quick profit 97 amazing pump calls by our team told you you could recover fees in just 24 hour but i think you hate money to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-31 04:54:13+00:00 1.0 1237041098 47246 qnt result hit 3700 2nd target achieved in just 2 hour✅✅ one more huge quick profit 28 amazing pump calls by our team to know next pump signal ☎️ contact apglobals 2021-07-29 12:05:46+00:00 1.0 1237041098 47189 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-28 18:38:02+00:00 1.0 1237041098 47142 pump result lto start price 525 weve reached 698 huge quick profit 32 in just 15 minutes to know next pump coin name contact apglobals for premium membership 2021-07-27 10:00:15+00:00 1.0 1237041098 47091 gas result hit 2675 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 29 amazing pump call given to premium members huge quick profit to know next pump coin name ☎️ contact apglobals 2021-07-26 14:23:28+00:00 1.0 1237041098 47044 pump result drep start price 1901 weve reached 2859 huge quick profit 50 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-07-25 17:42:19+00:00 1.0 1237041098 47034 rdn hit 1380 finally all targets achieved in just 7 hour✅✅✅✅ huge quick profit 58 amazing calls by our team amazing pump call ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-25 17:02:27+00:00 1.0 1237041098 46980 rep pump result start price 5237 price hit 8461 huge quick profit 61 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-24 08:36:30+00:00 1.0 1237041098 46947 c98 result hit 3449 3rd target achieved in just 11 hour ✅✅✅ one more huge quick profit 33 amazing calls by our team told you you could recover fees in just 24 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-24 04:12:35+00:00 1.0 1237041098 46917 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-23 11:37:00+00:00 1.0 1237041098 46721 pump result klay start price 3099 weve reached 4199 huge quick profit 35 in just 6 minutes to know next pump coin name contact apglobals for premium membership 2021-07-20 07:03:52+00:00 1.0 1237041098 46692 pump result dash start price 3732 weve reached 5928 huge quick profit 58 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-07-19 16:27:37+00:00 1.0 1237041098 46497 fis result start price 2441 price hit 3285 huge quick profit 34 in just 19 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-15 16:02:04+00:00 1.0 1237041098 46272 pump result poa start price 129 weve reached 210 huge quick profit 62 in just 9 hour to know next pump coin name contact apglobals for premium membership 2021-07-11 17:04:49+00:00 1.0 1237041098 46232 pump result beam start price 1394 weve reached 1952 huge quick profit 40 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-07-11 06:43:22+00:00 1.0 1237041098 46199 auction hit 8671 now 2nd target achieved in just 27 minutes ✅✅ huge quick profit 20 ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-10 17:27:53+00:00 1.0 1237041098 46171 pump result auction start price 4339 weve reached 7177 huge quick profit 65 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-07-09 16:22:00+00:00 1.0 1237041098 46134 forth result start price 5059 price hit 7271 one more huge quick profit 43 in just 29 hour the longer you wait more you lose profit what are you waiting for join premium and grab next pump signal ☎️ contact apglobals 2021-07-08 16:23:17+00:00 1.0 1237041098 46128 oxt result start price 848 price hit 1201 huge quick profit 41 in just 7 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-08 15:01:33+00:00 1.0 1237041098 46096 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-07 15:30:57+00:00 1.0 1237041098 45989 mln result 3rd target achieved in just 29 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members join premium and grab next pump signal ☎️ contact apglobals for premium membership 2021-07-05 08:09:03+00:00 1.0 1237041098 45972 grs result start price 1855 price hit 2486 one more huge quick profit 34 in just 22 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-05 05:44:01+00:00 1.0 1237041098 45956 glm result start price 887 price hit 1174 one more huge quick profit 32 in just 40 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-04 01:49:42+00:00 1.0 1237041098 45924 qkc result start price 49 price hit 64 one more huge quick profit 30 in just 1 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-02 03:29:23+00:00 1.0 1237041098 45784 snt result 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 22 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-29 06:19:48+00:00 1.0 1237041098 45766 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-28 19:44:58+00:00 1.0 1237041098 45762 pump result ppt start price 4108 weve reached 6685 huge quick profit 62 in just 28 hour to know next pump coin name contact apglobals for premium membership 2021-06-28 19:40:01+00:00 1.0 1237041098 45721 icp result 3rd target achieved in just 135 hour✅✅✅ one more huge quick profit 30 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-28 04:40:50+00:00 1.0 1237041098 45704 ctsi breakout result start price 1117 price hit 1770 huge quick profit 58 in just 20 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-06-27 19:06:48+00:00 1.0 1237041098 45681 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-27 10:54:20+00:00 1.0 1237041098 45661 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-26 13:24:39+00:00 1.0 1237041098 45657 pump result cfx start price 671 weve reached 1000 huge quick profit 49 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-06-26 12:45:04+00:00 1.0 1237041098 45651 pump result dnt start price 385 weve reached 480 huge quick profit 24 in just 22 minutes to know next pump coin name contact apglobals for premium membership 2021-06-26 12:38:21+00:00 1.0 1237041098 45641 pump result snm start price 431 weve reached 701 huge quick profit 61 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-06-26 04:36:29+00:00 1.0 1237041098 45556 lpt result start price 6757 price hit 12463 huge quick profit 85 in just 9 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-06-23 08:25:01+00:00 1.0 1237041098 45504 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-21 15:21:15+00:00 1.0 1237041098 45485 dnt pump result start price 359 price hit 560 huge quick profit 55 in just 16 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-21 04:52:39+00:00 1.0 1237041098 45463 pump result wabi start price 900 weve reached 1249 huge quick profit 38 in just 3 minutes to know next pump coin name contact apglobals for premium membership 2021-06-20 17:07:32+00:00 1.0 1237041098 45430 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-19 18:09:15+00:00 1.0 1237041098 45427 pols pump result start price 3612 price hit 4740 huge quick profit 31 in just 4 minutes to know next pump coin name ☎️ contact apglobals 2021-06-19 17:20:56+00:00 1.0 1237041098 45370 mir result start price 1198 price hit 1928 huge quick profit 61 in just 19 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-18 10:59:46+00:00 1.0 1237041098 45340 pump result nu start price 788 weve reached 1100 huge quick profit 39 in just 19 minutes to know next pump coin name contact apglobals for premium membership 2021-06-17 17:05:54+00:00 1.0 1237041098 45335 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-17 15:23:31+00:00 1.0 1237041098 45251 pump result ava start price 779 weve reached 1003 huge quick profit 28 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-06-16 14:05:16+00:00 1.0 1237041098 45214 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-16 03:50:11+00:00 1.0 1237041098 45148 hard result 2nd target achieved in just 34 hour ✅✅ one more huge quick profit 30 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-14 18:44:36+00:00 1.0 1237041098 45110 ata pump result start price 1866 price hit 2780 all targets achieved in just 66 minutes ✅✅✅✅ huge quick profit 49 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-13 06:13:45+00:00 1.0 1237041098 45044 chz result 2nd target achieved in just 33 minutes ✅✅ huge quick profit 60 using 5x leverage amazing calls by our team the longer you wait more you lose profit what are you waiting for ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-11 09:07:52+00:00 1.0 1237041098 45030 pump result asr start price 1517 weve reached 2736 huge quick profit 80 in just 145 hour to know next pump coin name contact apglobals for premium membership 2021-06-11 07:15:56+00:00 1.0 1237041098 45011 stpt pump result start price 136 price hit 213 all targets achieved in just 23 hour✅✅✅✅ one more huge quick profit 57 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-11 05:17:25+00:00 1.0 1237041098 45004 gtc pump result start price 3107 price hit 4863 all targets achieved in just 75 hour✅✅✅✅ one more huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-11 04:32:22+00:00 1.0 1237041098 44968 idex pump result start price 150 price hit 246 all targets achieved in just 2 hour✅✅✅✅ one more huge quick profit 64 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-10 10:44:45+00:00 1.0 1237041098 44917 hard pump result start price 1902 price hit 2985 all targets achieved in just 26 minutes ✅✅✅✅ huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-10 04:26:27+00:00 1.0 1237041098 44875 pump result data start price 269 weve reached 737 huge quick profit 173 in just 13 hour to know next pump coin name contact apglobals for premium membership 2021-06-09 13:44:53+00:00 1.0 1237041098 44816 bcd hit 11520 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 69 amazing calls by our team told you we have shared breakout pump signal which will give you 2060 profit in few hours did you take it seriously no i think you hate money ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-09 03:53:24+00:00 1.0 1237041098 44728 pump result ar start price 4740 weve reached 6280 huge quick profit 32 in just 4 hour to know next pump coin name contact apglobals for premium membership 2021-06-07 15:16:36+00:00 1.0 1237041098 44719 pump result dock start price 184 weve reached 293 huge quick profit 59 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-06-07 02:43:24+00:00 1.0 1237041098 44693 pump result pond start price 250 weve reached 503 huge quick profit 101 in just 19 minutes to know next pump coin name contact apglobals for premium membership 2021-06-06 18:35:14+00:00 1.0 1237041098 44669 perl result all targets achieved in just 68 minutes ✅✅✅✅ one more huge quick profit signals 103 amazing calls by our team congrats premium members you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-06 16:51:31+00:00 1.0 1237041098 44625 pump result iris start price 222 weve reached 456 huge quick profit 105 in just 10 minutes to know next pump coin name contact apglobals for premium membership 2021-06-06 07:48:15+00:00 1.0 1237041098 44616 nbs result all targets achieved in just 8 minutes ✅✅✅✅ huge quick profit 70 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-06 07:05:06+00:00 1.0 1237041098 44545 nu result start price 1052 price hit 1386 one more huge quick profit 31 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-04 09:48:04+00:00 1.0 1237041098 44499 pump result sun start price 792 weve reached 1022 huge quick profit 29 in just 1 hour to know next pump coin name contact apglobals for premium membership 2021-06-03 13:01:47+00:00 1.0 1237041098 44471 gxs pump result all targets achieved in just 5 hour ✅✅✅✅ one more huge quick profit 54 amazing pump by our team still thinking and losing daily huge profit we share advance buy and sell targets to premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-03 06:07:55+00:00 1.0 1237041098 44376 doge result start price 927 price hit 1211 huge quick profit 31 in just 16 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-02 13:11:44+00:00 1.0 1237041098 44271 pump result eps start price 2165 weve reached 3180 huge quick profit 47 to know next pump coin name contact apglobals for premium membership 2021-05-31 08:07:03+00:00 1.0 1237041098 44210 pump result axs start price 13286 weve reached 17220 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-29 16:23:24+00:00 1.0 1237041098 44103 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-28 04:14:30+00:00 1.0 1237041098 44085 pump result bar start price 4243 weve reached 6133 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-05-27 12:42:19+00:00 1.0 1237041098 43980 pump result skl start price 908 weve reached 1471 huge quick profit 62 to know next pump coin name contact apglobals for premium membership 2021-05-26 17:52:35+00:00 1.0 1237041098 43974 pump result nxs start price 2487 weve reached 3631 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-05-26 17:06:00+00:00 1.0 1237041098 43956 pump result tvk start price 445 weve reached 699 huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-05-26 12:29:23+00:00 1.0 1237041098 43942 pump result ramp start price 502 weve reached 968 huge quick profit 93 to know next pump coin name contact apglobals for premium membership 2021-05-26 10:26:39+00:00 1.0 1237041098 43865 dock result 3rd target achieved in just 19 minutes ✅✅✅ huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-25 18:04:54+00:00 1.0 1237041098 43856 pump result hard start price 1664 weve reached 2595 huge quick profit 56 to know next pump coin name contact apglobals for premium membership 2021-05-25 16:41:50+00:00 1.0 1237041098 43830 pump result oxt start price 1009 weve reached 1430 huge quick profit 41 to know next pump coin name contact apglobals for premium membership 2021-05-25 14:24:34+00:00 1.0 1237041098 43783 pump result via start price 2070 weve reached 2677 huge quick profit 29 to know next pump coin name contact apglobals for premium membership 2021-05-24 18:14:54+00:00 1.0 1237041098 43777 pump result tct start price 76 weve reached 96 huge quick profit 26 to know next pump coin name contact apglobals for premium membership 2021-05-24 18:10:27+00:00 1.0 1237041098 43753 pump result rdn start price 1039 weve reached 1464 huge quick profit 40 to know next pump coin name contact apglobals for premium membership 2021-05-24 13:47:13+00:00 1.0 1237041098 43675 pump result unfi start price 18678 weve reached 39410 huge quick profit 111 to know next pump coin name contact apglobals for premium membership 2021-05-24 03:31:38+00:00 1.0 1237041098 43502 pump result fis start price 3785 weve reached 6754 huge quick profit 78 to know next pump coin name contact apglobals for premium membership 2021-05-21 12:32:13+00:00 1.0 1237041098 43475 pump result elf start price 828 weve reached 1111 huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-05-21 09:12:23+00:00 1.0 1237041098 43451 pump result ong start price 1939 weve reached 8000 huge quick profit 312 to know next pump coin name contact apglobals for premium membership 2021-05-21 04:22:31+00:00 1.0 1237041098 43442 pump result cvc start price 965 weve reached 1298 huge quick profit 34 to know next pump coin name contact apglobals for premium membership 2021-05-21 02:34:41+00:00 1.0 1237041098 43304 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-19 16:27:05+00:00 1.0 1237041098 43293 ethusdt result 2nd target achieved in just 22 minutes ✅✅ one more huge quick profit 57 using 5x leverage ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-19 16:02:26+00:00 1.0 1237041098 43243 ong result 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 25 ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-19 10:00:23+00:00 1.0 1237041098 43223 pump result celr start price 128 weve reached 194 huge quick profit 51 to know next pump coin name contact apglobals for premium membership 2021-05-19 07:01:05+00:00 1.0 1237041098 43187 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-18 18:49:12+00:00 1.0 1237041098 43152 pump result ark start price 3497 weve reached 5325 huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-05-18 15:07:26+00:00 1.0 1237041098 43093 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-17 18:47:04+00:00 1.0 1237041098 43086 pump result celo start price 10402 weve reached 14997 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-05-17 18:24:04+00:00 1.0 1237041098 43080 pump result alice start price 23448 weve reached 30504 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-17 16:11:51+00:00 1.0 1237041098 43003 nmr hit 1980 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 told you you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-16 10:53:50+00:00 1.0 1237041098 42993 nmr result 3rd target achieved in just 6 minutes ✅✅✅ one more huge quick profit 31 amazing pump call by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-16 10:00:35+00:00 1.0 1237041098 42974 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-15 20:02:36+00:00 1.0 1237041098 42944 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-15 09:08:21+00:00 1.0 1237041098 42918 pump result juv start price 3222 weve reached 4605 huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-05-15 06:13:36+00:00 1.0 1237041098 42901 pump result atm start price 4682 weve reached 9787 huge quick profit 109 to know next pump coin name contact apglobals for premium membership 2021-05-15 05:11:08+00:00 1.0 1237041098 42787 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-13 19:15:25+00:00 1.0 1237041098 42765 pump result chr start price 572 weve reached 814 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2021-05-13 11:56:25+00:00 1.0 1237041098 42759 pump result nano start price 1619 weve reached 3595 huge quick profit 122 to know next pump coin name contact apglobals for premium membership 2021-05-13 11:27:47+00:00 1.0 1237041098 42727 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-12 17:13:34+00:00 1.0 1237041098 42721 pump result iris start price 297 weve reached 427 huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-05-12 16:46:48+00:00 1.0 1237041098 42714 pump result atm start price 1942 weve reached 2630 huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-05-12 16:34:06+00:00 1.0 1237041098 42708 pump result nas start price 195 weve reached 255 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-12 15:26:43+00:00 1.0 1237041098 42675 pump result lrc start price 965 weve reached 1527 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-05-12 07:55:30+00:00 1.0 1237041098 42653 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-11 19:16:32+00:00 1.0 1237041098 42585 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-10 19:32:25+00:00 1.0 1237041098 42563 ckb hit 71 finally all targets achieved in just 32 minutes ✅✅✅✅ huge quick profit 57 amazing calls by our team congrats premium members so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-10 10:27:06+00:00 1.0 1237041098 42504 pump result rlc start price 11423 weve reached 20409 huge quick profit 78 to know next pump coin name contact apglobals for premium membership 2021-05-10 05:38:07+00:00 1.0 1237041098 42495 pump result vidt start price 2221 weve reached 3130 huge quick profit 40 to know next pump coin name contact apglobals for premium membership 2021-05-10 04:23:56+00:00 1.0 1237041098 42489 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-09 19:20:57+00:00 1.0 1237041098 42400 ctsi result 2nd target achieved in just 33 minutes ✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-08 16:59:21+00:00 1.0 1237041098 42395 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-08 14:36:02+00:00 1.0 1237041098 42338 pump result aion start price 734 weve reached 1150 huge quick profit 56 to know next pump coin name contact apglobals for premium membership 2021-05-07 16:30:39+00:00 1.0 1237041098 42333 bcd hit 18000 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-07 14:48:48+00:00 1.0 1237041098 42320 firo result start price 2943 price hit 4326 huge quick profit 47 in just 1 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-07 12:44:09+00:00 1.0 1237041098 42262 etc result start price 13954 price hit 25690 huge quick profit 84 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-06 16:05:59+00:00 1.0 1237041098 42195 sys result start price 1195 price hit 1600 huge quick profit 33 in just 18 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 15:02:08+00:00 1.0 1237041098 42177 pnt hit 6722 finally all targets achieved in just 58 minutes ✅✅✅✅ huge quick profit 78 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 12:55:07+00:00 1.0 1237041098 42172 pnt result 2nd target achieved in just 39 minutes ✅✅ one more huge quick profit 22 ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 12:28:30+00:00 1.0 1237041098 42067 iris result all targets achieved in just 225 hour✅✅✅✅ huge quick profit 56 amazing calls by our team congrats premium members you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-03 17:27:07+00:00 1.0 1237041098 42060 wabi result start price 1038 price hit 1400 huge quick profit 34 in just 13 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-03 16:50:20+00:00 1.0 1237041098 41968 twt result start price 1372 price hit 2075 huge quick profit 51 in just 12 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-05-02 18:50:21+00:00 1.0 1237041098 41926 nano result start price 1604 price hit 2118 huge quick profit 31 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump coin name 2021-05-02 07:21:54+00:00 1.0 1237041098 41868 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 18:50:12+00:00 1.0 1237041098 41862 fis result start price 4592 price hit 7900 huge quick profit 72 in just 2 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-04-30 17:59:53+00:00 1.0 1237041098 41856 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 12:05:24+00:00 1.0 1237041098 41822 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 06:37:45+00:00 1.0 1237041098 41819 pump result rcn start price 244 weve reached 356 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-04-30 05:32:36+00:00 1.0 1237041098 41813 iotx result start price 97 price hit 160 huge quick profit 64 in just 3 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-04-30 05:05:14+00:00 1.0 1237041098 41807 vite hit 500 finally all target achieved in 3 days✅✅✅✅ one more huge profit 80 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-30 04:29:31+00:00 1.0 1237041098 41766 eps result start price 3557 price hit 5789 huge quick profit 62 in just 195 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-29 14:45:35+00:00 1.0 1237041098 41755 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-29 12:04:39+00:00 1.0 1237041098 41741 vite hit 400 now 3rd target achieved in 3 days✅✅✅ one more huge profit 44 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-29 10:01:00+00:00 1.0 1237041098 41738 pump result sys start price 641 weve reached 978 huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-04-29 09:13:57+00:00 1.0 1237041098 41703 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-28 19:42:41+00:00 1.0 1237041098 41676 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-28 13:36:01+00:00 1.0 1237041098 41660 ppt result start price 9614 price hit 12282 huge quick profit 26 in just 27 minutes ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-28 07:47:47+00:00 1.0 1237041098 41473 rvn result 1st target achieved in just 2 minutes ✅ one more huge quick profit 50 using 5x leverage join premium and grab next pump signal ☎️ contact apglobals 2021-04-26 09:01:51+00:00 1.0 1237041098 41430 idex result all targets achieved in just 51 minutes ✅✅✅✅ huge quick profit 69 told you you could recover fees in just few hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-25 17:09:45+00:00 1.0 1237041098 41423 pump result pivx start price 3084 weve reached 4455 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-04-25 16:58:47+00:00 1.0 1237041098 41417 pump result pnt start price 2704 weve reached 4016 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2021-04-25 16:15:50+00:00 1.0 1237041098 41366 pump result alice start price 16688 weve reached 24876 huge quick profit 49 to know next pump coin name contact apglobals for premium membership 2021-04-25 08:57:07+00:00 1.0 1237041098 41347 as you guys know now who is the real telegram channel in this crypto world we shared rdn signal 45 hour ago to premium members and posted here in free channel 30 minutes ago from now all other channels are just scam beware ‼️ ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-24 21:03:00+00:00 1.0 1237041098 41250 pump result qlc start price 134 weve reached 212 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-04-23 16:14:05+00:00 1.0 1237041098 41176 pump result btg start price 1438 weve reached 3053 huge quick profit 113 to know next pump coin name contact apglobals for premium membership 2021-04-23 04:54:18+00:00 1.0 1237041098 41082 pump result wpr start price 73 weve reached 132 huge quick profit 80 to know next pump coin name contact apglobals for premium membership 2021-04-21 16:09:01+00:00 1.0 1237041098 41076 nkn result start price 1116 price hit 1578 huge quick profit 41 in just 16 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-21 16:03:35+00:00 1.0 1237041098 41070 bar result 2nd target achieved in just 7 minutes ✅✅ one more huge quick 21 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-21 12:48:10+00:00 1.0 1237041098 40958 stpt hit 240 finally all targets achieved in just 43 minutes ✅✅✅✅ huge quick profit 57 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking dont miss next pump signal ☎️ contact apglobals 2021-04-20 13:00:19+00:00 1.0 1237041098 40351 pump result via start price 4100 weve reached 10680 huge quick profit 160 to know next pump coin name contact apglobals for premium membership 2021-04-11 17:06:29+00:00 1.0 1237041098 40290 beam result start price 256 price hit 349 one more huge quick profit 36 in just 12 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-11 07:38:43+00:00 1.0 1237041098 40249 ctxc result start price 688 price hit 978 one more huge quick profit 42 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-10 05:07:18+00:00 1.0 1237041098 40166 grs result all targets achieved in just 58 minutes ✅✅✅✅ one more huge quick profit 131 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump coin 2021-04-09 09:04:33+00:00 1.0 1237041098 39404 pump result wan start price 2653 weve reached 3927 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2021-03-30 03:36:50+00:00 1.0 1237041098 39387 pump result mtl start price 3656 weve reached 10025 huge quick profit 174 to know next pump coin name contact apglobals for premium membership 2021-03-29 18:18:59+00:00 1.0 1237041098 39351 pump result rdn start price 1446 weve reached 3500 huge quick profit 142 to know next pump coin name contact apglobals for premium membership 2021-03-28 19:11:20+00:00 1.0 1237041098 39344 pump result pivx start price 3590 weve reached 11612 huge quick profit 223 to know next pump coin name contact apglobals for premium membership 2021-03-28 17:05:32+00:00 1.0 1237041098 37089 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-27 12:47:36+00:00 1.0 1237041098 35310 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-06 17:46:04+00:00 1.0 1237041098 35243 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-05 18:56:34+00:00 1.0 1237041098 35164 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-05 06:10:46+00:00 1.0 1237041098 35013 brd result all targets achieved in just 21 minutes ✅✅✅✅ one more huge quick profit 117 amazing calls by our team dont get stuck in other pump groups ☎️ contact apglobals for premium membership and grab next breakout signal before it pump 2021-02-03 19:06:40+00:00 1.0 1237041098 33893 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-01-23 16:15:46+00:00 1.0 1237041098 32892 bcpt result start price 64 price hit 133 huge quick profit 107 in just 8 hour to know next pump coin name ☎️ contact apglobals 2021-01-09 13:06:50+00:00 1.0 1237041098 32808 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-01-08 13:56:18+00:00 1.0 1237041098 32650 qlc result start price 50 price hit 89 huge quick profit 78 in just 3 minutes to know next pump coin name ☎️ contact apglobals 2021-01-06 16:07:54+00:00 1.0 1237041098 32453 nxs result start price 639 price hit 1000 one more huge quick profit 56 in just 5 hour to know next pump coin name ☎️ contact apglobals 2021-01-03 17:54:46+00:00 1.0 1237041098 32446 ppt result start price 1700 price hit 2413 one more huge quick profit 41 in just 5 hour to know next pump coin name ☎️ contact apglobals 2021-01-03 17:49:33+00:00 1.0 1237041098 32440 pivx result start price 997 price hit 1423 one more huge quick profit 43 in just 13 minutes to know next pump coin name ☎️ contact apglobals 2021-01-03 17:34:21+00:00 1.0 1237041098 32402 grs result start price 1072 price hit 1560 one more huge quick profit 45 in just 26 minutes to know next pump coin name ☎️ contact apglobals 2021-01-03 09:41:04+00:00 1.0 1237041098 32378 nebl pump result start price 2500 price hit 27810 huge quick profit 1000 in just 15 hour hope you guys dont stuck in other pump group we are the only channel who know pump coin name earliest still thinking you missed huge profit today hope to see you soon in our premium channel ☎️ contact apglobals for premium membership 2021-01-02 21:06:54+00:00 1.0 1237041098 32313 atm result start price 2584 price hit 4150 huge quick profit 60 in just 7 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-02 05:44:19+00:00 1.0 1237041098 32307 aergo result start price 146 price hit 270 huge quick profit 84 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-02 04:26:17+00:00 1.0 1237041098 32282 fun pump result start price 31 price hit 87 huge quick profit 180 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-01 15:19:51+00:00 1.0 1237041098 32250 poly result start price 290 price hit 376 huge quick profit 29 in just 35 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-01 06:42:13+00:00 1.0 1237041098 32210 idex pump result start price 132 price hit 270 huge quick profit 104 in just 9 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-31 17:09:49+00:00 1.0 1237041098 32156 mith result start price 47 price hit 65 one more huge quick profit 38 in just 25 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-30 03:55:37+00:00 1.0 1237041098 32114 reef pump result start price 70 price hit 158 huge quick profit 125 in just 2 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-29 11:11:21+00:00 1.0 1237041098 32051 via result start price 1054 price hit 1350 one more huge quick profit 28 in just 15 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:52:16+00:00 1.0 1237041098 32044 vibe result start price 60 price hit 82 one more huge quick profit 36 in just 31 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:45:08+00:00 1.0 1237041098 32024 dlt pump result all targets achieved in just 2 minutes✅✅✅✅ one more huge quick profit 546 in just 2 minutes amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:07:51+00:00 1.0 1237041098 31960 nbs result start price 57 price hit 84 one more huge quick profit 47 in just 2 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-24 20:57:47+00:00 1.0 1237041098 31938 dnt pump result start price 187 price hit 382 one more huge quick profit 104 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-24 03:18:01+00:00 1.0 1237041098 31572 via pump result start price 1049 price hit 1493 one more huge quick profit 42 in just 23 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 13:30:25+00:00 1.0 1237041098 31555 dcr pump result start price 1434 price hit 1841 one more huge quick profit 28 in just 3 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 09:15:23+00:00 1.0 1237041098 31529 grt pump result start price 450 price hit 760 one more huge quick profit 68 in just 75 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 04:48:42+00:00 1.0 1237041098 31467 aergo pump result start price 208 price hit 260 one more huge quick profit 25 in just 19 minutes to know next pump coin name ☎️ contact apglobals 2020-12-17 06:10:02+00:00 1.0 1237041098 31276 ctxc pump result start price 454 price hit 572 one more huge quick profit 25 in just 3 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-12 18:36:41+00:00 1.0 1237041098 31266 utk pump result start price 592 price hit 825 huge quick profit 39 in just 4 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-12 16:20:13+00:00 1.0 1237041098 31207 idex result start price 174 price hit 235 one more huge quick profit 35in just 5 hour to know next pump coin name ☎️ contact apglobals 2020-12-10 12:57:47+00:00 1.0 1237041098 31172 wing result start price 691 price hit 1304 one more huge quick profit 88 in just 12 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-09 08:11:21+00:00 1.0 1237041098 31126 mtl pump result start price 2012 price hit 3338 huge quick profit 65 in just 15 hour amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-08 02:04:46+00:00 1.0 1237041098 31079 breakout pump coin brd 2020-12-06 18:00:26+00:00 1.0 1237041098 31066 pnt pump result start price 2049 price hit 2890 one more huge quick profit 41 to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-06 10:08:23+00:00 1.0 1237041098 31017 pnt pump result start price 2132 price hit 3258 one more huge profit 40 to know next pump coin name ☎️ contact apglobals 2020-12-05 04:37:16+00:00 1.0 1237041098 30928 dcr pump result start price 1421 price hit 2182 huge quick profit 53in just 36 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-03 04:05:53+00:00 1.0 1237041098 30911 nebl pump result start price 2355 price hit 3000 one more huge quick profit 27 within 19 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-02 18:22:31+00:00 1.0 1237041098 30845 ost pump result start price 71 price hit 92 one more huge quick profit 29 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-02 03:19:11+00:00 1.0 1237041098 30836 steem pump result start price 972 price hit 1300 one more huge quick profit 34 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 16:14:07+00:00 1.0 1237041098 30820 sun pump result start price 558 price hit 717 one more huge quick profit 28 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 04:22:49+00:00 1.0 1237041098 30814 jst pump result start price 128 price hit 200 one more huge quick profit 56 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 04:13:27+00:00 1.0 1237041098 30777 stpt pump result start price 87 price hit 127 one more huge quick profit 46 in just 38 minutes to know next pump coin name ☎️ contact apglobals 2020-11-30 09:55:23+00:00 1.0 1237041098 30725 ong result start price 1298 price hit 1518 one more quick profit 16 in just 4 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-28 15:29:32+00:00 1.0 1237041098 30679 gnt pump result start price 680 price hit 830 one more huge quick profit 22 to know next pump coin name ☎️ contact apglobals 2020-11-27 16:16:02+00:00 1.0 1237041098 30530 ong pump result start price 778 price hit 1189 one more huge quick profit 52 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-11-25 15:23:27+00:00 1.0 1237041098 30465 strax pump result start price 2252 price hit 4255 huge quick profit 90 within 16 hour to know next pump coin name ☎️ contact apglobals 2020-11-25 05:12:09+00:00 1.0 1237041098 30447 xvg pump result start price 36 price hit 46 huge quick profit 27 within 6 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 16:42:37+00:00 1.0 1237041098 30438 snt pump result start price 213 price hit 260 huge quick profit 22 within 25 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 16:03:53+00:00 1.0 1237041098 30431 xlm pump result start price 784 price hit 966 huge quick profit 23 within 5 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 15:49:35+00:00 1.0 1237041098 30335 zen pump result start price 4465 price hit 5913 one more huge quick profit 34 within 24 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-23 06:25:55+00:00 1.0 1237041098 30309 sand result 3rd target achieved in just 4 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-11-22 17:51:02+00:00 1.0 1237041098 30299 fio result start price 475 price hit 650 one more huge quick profit 36 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 16:45:34+00:00 1.0 1237041098 30284 nmr result start price 1630 price hit 2399 one more huge quick profit 47 in just 26 minutes to know next pump coin name ☎️ contact apglobals 2020-11-22 15:28:15+00:00 1.0 1237041098 30270 ant result start price 1776 price hit 2222 one more huge quick profit 25 within 28 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 13:36:05+00:00 1.0 1237041098 30264 snt result start price 168 price hit 229 one more huge quick profit 36 within 12 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 13:09:59+00:00 1.0 1237041098 30165 wpr pump result start price 43 price hit 53 huge quick profit 23 in just 4 minutes to know next pump coin name ☎️ contact apglobals 2020-11-19 14:38:34+00:00 1.0 1237041098 30150 unfi result all targets achieved in just 5 minutes ✅✅✅ one more huge quick profit 38 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals 2020-11-19 06:49:27+00:00 1.0 1237041098 29937 sun result start price 562 price hit 732 huge quick profit 30 in just 9 hour to know next pump coin name ☎️ contact apglobals 2020-11-15 18:25:23+00:00 1.0 1237041098 29930 bot result start price 2519 price hit 3500 huge quick profit 38 in just 25 minutes to know next pump coin name ☎️ contact apglobals 2020-11-15 18:19:57+00:00 1.0 1237041098 29706 poa result start price 131 price hit 155 one more quick profit 18 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-11-12 03:57:17+00:00 1.0 1237041098 29667 ogn result start price 934 price hit 1349 one more huge quick profit 44 in just 6 hour to know next pump coin name ☎️ contact apglobals 2020-11-11 10:51:52+00:00 1.0 1237041098 29547 gnt result start price 636 price hit 927 one more huge quick profit 45 in just 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-10 08:02:33+00:00 1.0 1237041098 29541 loom result start price 167 price hit 311 one more huge quick profit 86 in just 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-10 07:57:23+00:00 1.0 1237041098 29476 pump result brd start price 471 weve reached 749 huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2020-11-09 16:12:23+00:00 1.0 1237041098 29468 pump coin name brd 2020-11-09 16:00:27+00:00 1.0 1237041098 29467 next post will be coin name 2020-11-09 15:55:32+00:00 1.0 1237041098 29466 5 minutes left to pump on binance 2020-11-09 15:55:32+00:00 1.0 1237041098 29465 15 minutes left to pump on binance 2020-11-09 15:45:33+00:00 1.0 1237041098 29464 30 minutes left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-09 15:33:20+00:00 1.0 1237041098 29453 next pump scheduled ⏰ monday 09112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-09 14:09:36+00:00 1.0 1237041098 29422 next pump scheduled ⏰ monday 09112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-09 07:08:00+00:00 1.0 1237041098 29384 pump result dlt start price 279 weve reached 410 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2020-11-08 15:20:58+00:00 1.0 1237041098 29346 axs result start price 1020 price hit 1390 one more huge quick profit 36 within 7 hour to know next pump coin name ☎️ contact apglobals 2020-11-08 09:46:38+00:00 1.0 1237041098 29340 dnt result start price 159 price hit 238 huge quick profit 49 within 10 hour to know next pump coin name ☎️ contact apglobals 2020-11-08 09:38:55+00:00 1.0 1237041098 29264 poa result start price 115 price hit 158 one more huge quick profit 37 in just 8 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-07 05:54:38+00:00 1.0 1237041098 29184 aave result start price 1970 price hit 2541 huge quick profit 29 within 23 hour to know next pump coin name ☎️ contact apglobals 2020-11-06 13:42:33+00:00 1.0 1237041098 29120 yoyo result 3rd target achieved in just 25 minutes ✅✅✅ one more huge quick profit 34 to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-05 19:51:48+00:00 1.0 1237041098 29114 and dnt hit 140 102 profit in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-05 19:41:41+00:00 1.0 1237041098 29096 dnt result start price 69 price hit 86 huge quick profit 24 in just 6 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-05 19:04:12+00:00 1.0 1237041098 29040 pump result appc start price 248 weve reached 301 huge quick profit 21 to know next pump coin name contact apglobals for premium membership 2020-11-04 17:27:03+00:00 1.0 1237041098 29031 pump coin name appc 2020-11-04 17:00:22+00:00 1.0 1237041098 29030 next post will be coin name 2020-11-04 16:55:05+00:00 1.0 1237041098 29029 5 minutes left to pump on binance 2020-11-04 16:55:05+00:00 1.0 1237041098 29027 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-04 16:03:24+00:00 1.0 1237041098 29025 next pump scheduled ⏰ wednesday 04112020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-04 15:03:44+00:00 1.0 1237041098 29016 7 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-04 10:00:29+00:00 1.0 1237041098 29007 next pump scheduled ⏰ wednesday 04112020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-03 18:23:35+00:00 1.0 1237041098 28995 gto proof coin name shared earlier in premium channel to know next pump coin name ☎️ contact apglobals 2020-11-03 16:15:01+00:00 1.0 1237041098 28994 pump result gto start price 36 weve reached 48 huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2020-11-03 16:10:58+00:00 1.0 1237041098 28985 pump coin name gto 2020-11-03 16:00:14+00:00 1.0 1237041098 28984 next post will be coin name 2020-11-03 15:55:17+00:00 1.0 1237041098 28983 5 minutes left to pump on binance 2020-11-03 15:55:03+00:00 1.0 1237041098 28982 10 minutes left to pump on binance 2020-11-03 15:50:11+00:00 1.0 1237041098 28981 20 minutes left to pump on binance 2020-11-03 15:40:22+00:00 1.0 1237041098 28977 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-03 15:00:01+00:00 1.0 1237041098 28966 3 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-03 13:01:22+00:00 1.0 1237041098 28949 next pump scheduled ⏰ tuesday 03112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-02 18:51:37+00:00 1.0 1237041098 28933 pump result ardr start price 372 weve reached 603 huge quick profit 62 to know next pump coin name contact apglobals for premium membership 2020-11-02 16:12:40+00:00 1.0 1237041098 28929 pump coin name ardr 2020-11-02 16:00:40+00:00 1.0 1237041098 28928 next post will be coin name 2020-11-02 15:55:10+00:00 1.0 1237041098 28927 5 minutes left to pump on binance 2020-11-02 15:55:09+00:00 1.0 1237041098 28926 20 minutes left to pump on binance 2020-11-02 15:40:26+00:00 1.0 1237041098 28925 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-02 15:00:50+00:00 1.0 1237041098 28917 4 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-02 12:12:35+00:00 1.0 1237041098 28916 next pump scheduled ⏰ monday 02112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-02 12:12:25+00:00 1.0 1237041098 28881 next pump scheduled ⏰ monday 02112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-01 07:23:18+00:00 1.0 1237041098 28826 pump result dusk start price 304 weve reached 585 huge quick profit 92 to know next pump coin name contact apglobals for premium membership 2020-10-30 16:11:51+00:00 1.0 1237041098 28820 after 3 minutes dusk still at top price amazing pump now hit 510 good time to book profit 2020-10-30 16:03:34+00:00 1.0 1237041098 28816 pump coin name dusk 2020-10-30 16:00:37+00:00 1.0 1237041098 28815 3 minutes left to pump on binance next post will be coin name 2020-10-30 15:57:06+00:00 1.0 1237041098 28814 30 minutes left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-10-30 15:31:13+00:00 1.0 1237041098 28813 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-10-30 15:05:31+00:00 1.0 1237041098 28804 next pump scheduled ⏰ friday 30102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-30 10:01:45+00:00 1.0 1237041098 28794 ctxc result start price 575 price hit 753 one more huge quick profit 31 within 7 hour to know next pump coin name ☎️ contact apglobals 2020-10-30 05:51:43+00:00 1.0 1237041098 28729 next pump scheduled ⏰ friday 30102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-29 16:57:08+00:00 1.0 1237041098 28681 idex result start price 409 price hit 548 one more huge quick profit 33 in just 25 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-27 18:34:18+00:00 1.0 1237041098 28665 nebl result start price 3276 price hit 4106 one more huge quick profit 25 in just 11 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-27 09:56:35+00:00 1.0 1237041098 28635 ocean pump result start price 3249 price hit 3956 one more huge quick profit 22 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 17:00:45+00:00 1.0 1237041098 28607 adx pump result start price 1993 price hit 2573 one more huge quick profit 29 in just 17 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 06:05:49+00:00 1.0 1237041098 28601 sys pump result start price 339 price hit 435 one more huge quick profit 28 in just 145 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 06:02:26+00:00 1.0 1237041098 28584 idex pump result start price 427 price hit 570 one more huge quick profit 33 in just 10 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-25 14:52:04+00:00 1.0 1237041098 28550 poly pump result start price 362 price hit 549 one more huge quick profit 51 in just 20 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-24 04:59:16+00:00 1.0 1237041098 28507 poa pump result start price 138 price hit 174 one more huge quick profit 26 within 6 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-23 03:55:06+00:00 1.0 1237041098 28483 vibe pump result start price 102 price hit 166 one more huge quick to 62 in just 23 minutes to know next pump coin name ☎️ contact apglobals 2020-10-22 13:48:31+00:00 1.0 1237041098 28424 pump result ppt start price 1842 weve reached 2400 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2020-10-21 18:13:40+00:00 1.0 1237041098 28420 pump coin name ppt 2020-10-21 18:00:56+00:00 1.0 1237041098 28418 next post will be coin name 2020-10-21 17:55:10+00:00 1.0 1237041098 28417 5 minutes left to pump on binance 2020-10-21 17:55:10+00:00 1.0 1237041098 28416 30 minutes left to pump on binance 2020-10-21 17:31:57+00:00 1.0 1237041098 28408 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-21 16:31:11+00:00 1.0 1237041098 28399 xvs result start price 2446 price hit 2923 one more quick to 20 within 18 hour to know next pump coin name ☎️ contact apglobals 2020-10-21 16:06:52+00:00 1.0 1237041098 28383 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-21 08:23:17+00:00 1.0 1237041098 28377 inj result 1st target achieved within 70 minutes ✅ one more huge quick profit 27 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-10-21 05:52:22+00:00 1.0 1237041098 28353 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-20 13:57:16+00:00 1.0 1237041098 28331 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-19 18:28:44+00:00 1.0 1237041098 28306 oax proof coin name shared few minutes earlier in premium channel 2020-10-18 18:23:33+00:00 1.0 1237041098 28305 pump result oax start price 581 weve reached 829 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2020-10-18 18:10:15+00:00 1.0 1237041098 28300 pump coin name oax 2020-10-18 18:00:23+00:00 1.0 1237041098 28299 5 minutes left to pump on binance next post will be coin name 2020-10-18 17:55:02+00:00 1.0 1237041098 28298 15 minutes left to pump on binance 2020-10-18 17:45:37+00:00 1.0 1237041098 28297 30 minutes left to pump on binance 2020-10-18 17:30:29+00:00 1.0 1237041098 28295 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-18 16:05:08+00:00 1.0 1237041098 28279 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-18 10:11:05+00:00 1.0 1237041098 28260 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-17 16:18:18+00:00 1.0 1237041098 28256 rdn pump result start price 1735 price hit 2483 one more huge quick profit 43 to know next pump coin name ☎️ contact apglobals 2020-10-17 16:11:39+00:00 1.0 1237041098 28250 pump coin name rdn 2020-10-17 16:00:19+00:00 1.0 1237041098 28249 5 minutes left to pump on binance next pump will be pump coin name 2020-10-17 15:54:36+00:00 1.0 1237041098 28248 15 minutes left to pump on binance 2020-10-17 15:45:01+00:00 1.0 1237041098 28247 30 minutes left to pump on binance 2020-10-17 15:30:31+00:00 1.0 1237041098 28241 xvs pump result start price 2852 price hit 4300 one more huge quick profit 50 within 95 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-17 12:04:59+00:00 1.0 1237041098 28235 alhpa pump result start price 312 price hit 397 one more huge quick profit 27 within 11 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-17 11:49:46+00:00 1.0 1237041098 28212 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-16 18:41:24+00:00 1.0 1237041098 28190 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-16 03:16:31+00:00 1.0 1237041098 28179 fio pump result start price 991 price hit 1178 one more huge quick profit 18 in just 36 minutes to know next pump coin name ☎️ contact apglobals 2020-10-15 14:56:07+00:00 1.0 1237041098 28151 gvt pump result start price 1232 price hit 1690 one more huge quick profit 37 to know next pump coin name ☎️ contact apglobals 2020-10-14 18:32:15+00:00 1.0 1237041098 28123 xvs pump result start price 2412 price hit 2870 one more very quick profit 19 to know next pump coin name ☎️ contact apglobals 2020-10-14 07:21:36+00:00 1.0 1237041098 28029 iris pump result start price 577 price hit 680 one more quick profit 18 in just 3 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-12 08:22:40+00:00 1.0 1237041098 28023 nebl pump result start price 4226 price hit 5500 one more huge quick profit 30 in just 3 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-12 05:56:46+00:00 1.0 1237041098 27976 dnt pump result start price 81 price hit 107 huge quick profit 32 in just 25 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-11 10:37:29+00:00 1.0 1237041098 27969 i told you did you take it seriously no i think you hate money dont miss next pump signal ☎️ contact apglobals 2020-10-11 03:13:43+00:00 1.0 1237041098 27968 qsp result all targets achieved in just 35 hour ✅✅✅✅ one more huge quick profit 50 amazing calls by our team join premium and grab next pump signal hurry up ‍♂ ☎️ contact apglobals 2020-10-11 03:11:54+00:00 1.0 1237041098 27936 cvc result 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 30 to know next pump coin name earlier ☎️ contact apglobals for premium membership 2020-10-10 09:24:01+00:00 1.0 1237041098 27905 uma pump result start price 723 price hit 907 huge quick profit 25 in just11 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 17:24:41+00:00 1.0 1237041098 27897 mth pump result start price 62 price hit 81 huge quick profit 30 in just 35 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 16:46:25+00:00 1.0 1237041098 27879 ost pump result start price 71 price hit 132 huge quick profit 85 in just 26 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 12:36:29+00:00 1.0 1237041098 27845 perl pump result start price 197 price hit 239 huge quick profit 21 in just 18 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 08:59:40+00:00 1.0 1237041098 27837 yfii pump result start price 13533 price hit 18832 huge quick profit 39 in just 9 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 05:58:17+00:00 1.0 1237041098 27810 via pump result start price 1620 price hit 2498 huge quick profit 54 in just 15 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 03:31:43+00:00 1.0 1237041098 27723 orn result start price 1635 price hit 1984 one more quick profit 21 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-07 14:38:47+00:00 1.0 1237041098 27663 xvs result all targets achieved in just 6 minutes ✅✅✅✅ huge very quick profit 46 amazing pump call given to premium members to know next pump coin name ☎️ contact apglobals 2020-10-06 05:33:07+00:00 1.0 1237041098 27638 req result start price 190 price hit 240 one more huge quick profit 26 in just 33 minutes to know next pump coin name ☎️ contact apglobals 2020-10-05 06:30:36+00:00 1.0 1237041098 27631 bcpt binance top gainer amazing pump signal given to premium members 2020-10-05 04:17:54+00:00 1.0 1237041098 27587 scrt was our pump coin amazing calls by our team 2020-10-04 02:35:59+00:00 1.0 1237041098 27586 scrt next pump coin 2020-10-04 02:35:09+00:00 1.0 1237041098 27550 nbs result start price 67 price hit 106 huge very quick profit 58 in just 20 minutes to know next pump coin name ☎️ contact apglobals 2020-10-02 03:34:21+00:00 1.0 1237041098 27461 5 minutes left to pump on binance 2020-09-30 16:54:58+00:00 1.0 1237041098 27460 15 minutes left to pump on binance 2020-09-30 16:45:32+00:00 1.0 1237041098 27458 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-30 16:04:21+00:00 1.0 1237041098 27450 next pump coin name shared in premium channel 2020-09-30 14:07:46+00:00 1.0 1237041098 27437 orn result 3rd target achieved in just 5 minutes ✅✅✅ one more huge very quick profit 19 amazing breakout signal given to premium members to know next pump coin name ☎️ contact apglobals 2020-09-30 10:22:20+00:00 1.0 1237041098 27418 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-30 05:13:23+00:00 1.0 1237041098 27402 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-29 18:26:24+00:00 1.0 1237041098 27387 next pump scheduled ⏰ wednesday 30092020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-29 16:36:11+00:00 1.0 1237041098 27357 omg result start price 2984 price hit 3947 huge quick profit 32 in just 20 hour to know next pump coin name ☎️ contact apglobals 2020-09-28 17:50:08+00:00 1.0 1237041098 27267 poa result start price 170 price hit 241 huge quick profit 41 in just 20 hour to know next pump coin name ☎️ contact apglobals 2020-09-26 16:39:55+00:00 1.0 1237041098 27247 eng hit 6777 finally all target achieved in just 36 hour ✅✅✅✅ huge quick profit 43 to know next pump coin name ☎️ contact apglobals 2020-09-26 09:27:15+00:00 1.0 1237041098 27243 req result 3rd target achieved in just 6 minutes ✅✅✅ one more huge very quick profit signals 25 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-09-26 06:35:43+00:00 1.0 1237041098 27116 trb result start price 1991 price hit 2500 one more huge quick profit 26 in just 7 minutes to know next pump coin name ☎️ contact apglobals 2020-09-23 16:57:48+00:00 1.0 1237041098 27063 nbs result start price 104 price hit 138 one more huge quick profit 32 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-09-22 05:29:23+00:00 1.0 1237041098 27051 req result start price 170 price hit 313 one more huge quick profit 84 in just 53 minutes to know next pump coin name ☎️ contact apglobals 2020-09-22 04:26:25+00:00 1.0 1237041098 27016 req result start price 188 price hit 230 one more huge quick profit 22 in just 6 minutes to know next pump coin name ☎️ contact apglobals 2020-09-20 17:50:58+00:00 1.0 1237041098 27010 vite result start price 162 price hit 217 one more huge quick profit 33 in just 12 minutes to know next pump coin name ☎️ contact apglobals 2020-09-20 17:31:27+00:00 1.0 1237041098 27003 nkn result start price 189 price hit 299 one more huge quick profit 58 in just 26 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-09-20 16:47:57+00:00 1.0 1237041098 26954 nmr result start price 2753 price hit 3659 huge quick profit 32 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-09-20 04:39:55+00:00 1.0 1237041098 26914 qlc result all targets achieved in just 34 minutes ✅✅✅✅ huge quick profit 38 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals 2020-09-19 05:54:29+00:00 1.0 1237041098 26821 pump result gvt start price 1340 weve reached 1800 quick profit 34 to know next pump coin name contact apglobals for premium membership 2020-09-17 18:17:11+00:00 1.0 1237041098 26817 pump coin name gvt 2020-09-17 18:00:25+00:00 1.0 1237041098 26816 next post will be coin name 2020-09-17 17:55:31+00:00 1.0 1237041098 26815 5 minutes left to pump on binance 2020-09-17 17:55:31+00:00 1.0 1237041098 26814 15 minutes left to pump on binance 2020-09-17 17:45:02+00:00 1.0 1237041098 26813 45 minutes left to pump on binance to know coin name join premium and recover your losses ☎ contact apglobals 2020-09-17 17:14:59+00:00 1.0 1237041098 26812 next pump scheduled ⏰ thursday 17092020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-17 17:14:08+00:00 1.0 1237041098 26788 next pump scheduled ⏰ thursday 17092020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-17 12:12:04+00:00 1.0 1237041098 26748 next pump scheduled ⏰ thursday 17092020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-16 18:18:31+00:00 1.0 1237041098 26732 next post will be coin name 2020-09-16 15:55:03+00:00 1.0 1237041098 26731 5 minutes left to pump on binance 2020-09-16 15:55:03+00:00 1.0 1237041098 26729 15 minutes left to pump on binance 2020-09-16 15:46:14+00:00 1.0 1237041098 26728 30 minutes left to pump on binance 2020-09-16 15:30:05+00:00 1.0 1237041098 26715 next pump scheduled ⏰ wednesday 16092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-16 09:44:42+00:00 1.0 1237041098 26703 next pump scheduled ⏰ wednesday 16092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-16 05:03:02+00:00 1.0 1237041098 26674 iris result start price 630 price hit 872 one more quick profit 38 in just 15 minutes to know next pump coin name ☎️ contact apglobals 2020-09-15 14:23:18+00:00 1.0 1237041098 26640 3 hour 40 minutes left to pump on binance to know coin name join premium and recover your losses ☎ contact apglobals 2020-09-15 04:20:13+00:00 1.0 1237041098 26639 next pump scheduled ⏰ tuesday 15092020 at 8 am gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-15 04:19:24+00:00 1.0 1237041098 26623 wnxm result start price 4780 price hit 6700 one more huge quick profit 40 in just 11 hour to know next pump coin name ☎️ contact apglobals 2020-09-14 17:45:52+00:00 1.0 1237041098 26521 yfii result start price 41280 price hit 57896 huge quick profit 40 in just 14 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-12 10:26:13+00:00 1.0 1237041098 26470 adx result start price 1564 price hit 3306 one more huge quick profit 111 in just 13 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-11 04:44:30+00:00 1.0 1237041098 26448 pump coin name qsp 2020-09-10 18:00:31+00:00 1.0 1237041098 26435 next pump scheduled ⏰ thursday 10092020 at 6 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-10 15:03:14+00:00 1.0 1237041098 26416 next pump scheduled ⏰ thursday 10092020 at 6 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-10 13:15:27+00:00 1.0 1237041098 26414 elf hit 1479 3rd targets achieved in just 65 hour ✅✅✅✅ huge quick profit 33 to know next pump coin name ☎️ contact apglobals 2020-09-10 13:14:38+00:00 1.0 1237041098 26343 sushi result start price 2390 price hit 3107 huge quick profit 30 within 17 hour to know next pump coin name ☎️ contact apglobals 2020-09-09 17:44:53+00:00 1.0 1237041098 26321 sol result 2nd target achieved in just 11 minutes ✅✅ huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-09 15:10:53+00:00 1.0 1237041098 26320 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-09-09 14:57:20+00:00 1.0 1237041098 26315 next pump coin name shared in premium channel 2020-09-09 14:48:03+00:00 1.0 1237041098 26273 pump coin name stpt 2020-09-08 16:09:05+00:00 1.0 1237041098 26261 next pump scheduled ⏰ tuesday 08092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-08 13:05:16+00:00 1.0 1237041098 26202 chr result start price 509 price hit 585 one more quick profit 15 to know next pump coin name ☎️ contact apglobals 2020-09-07 12:16:03+00:00 1.0 1237041098 26173 pump result qlc start price 175 weve reached 242 huge quick profit 38 to know next pump coin name contact apglobals for premium membership 2020-09-06 16:29:20+00:00 1.0 1237041098 26168 dip buy pump coin name qlc 2020-09-06 16:00:49+00:00 1.0 1237041098 26163 next pump scheduled ⏰ sunday 06092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-06 13:14:21+00:00 1.0 1237041098 26135 next pump scheduled ⏰ sunday 06092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact apglobals 2020-09-06 10:09:27+00:00 1.0 1237041098 26019 dnt next pump coin name hurry up 2020-09-04 18:01:45+00:00 1.0 1237041098 26011 because of btc fluctuation pump did not go well but price was at top after 3 minutes everyone is in profit 2020-09-04 17:05:42+00:00 1.0 1237041098 25999 next post will be coin name 2020-09-04 15:55:52+00:00 1.0 1237041098 25998 5 minutes left to pump on binance 2020-09-04 15:55:38+00:00 1.0 1237041098 25997 15 minutes left to pump on binance 2020-09-04 15:45:39+00:00 1.0 1237041098 25996 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-09-04 15:30:53+00:00 1.0 1237041098 25986 next pump scheduled ⏰ friday 04092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-04 08:23:23+00:00 1.0 1237041098 25968 next pump scheduled ⏰ friday 04092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-09-04 03:52:47+00:00 1.0 1237041098 25932 qsp result start price 409 price hit 619 one more huge quick profit 50 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-09-03 05:34:58+00:00 1.0 1237041098 25713 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-31 15:28:51+00:00 1.0 1237041098 25697 bts result start price 273 price hit 360 one more huge quick profit 31 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-08-31 10:43:02+00:00 1.0 1237041098 25650 tct result start price 111 price hit 140 one more huge quick profit 26 in just 8 minutes to know next pump coin name ☎️ contact apglobals 2020-08-30 07:55:09+00:00 1.0 1237041098 25644 gvt result start price 1936 price hit 3333 one more huge quick profit 72 in just 5 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-30 07:33:34+00:00 1.0 1237041098 25507 cmt result start price 132 price hit 184 huge quick profit 39 in just 3 hour to know next pump coin name ☎️ contact apglobals 2020-08-27 17:09:52+00:00 1.0 1237041098 25480 cnd result start price 109 price hit 136 huge quick profit 24 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-08-27 12:56:34+00:00 1.0 1237041098 25368 pump result rdn start price 3750 weve reached 5194 huge quick profit 38 to know next pump coin name contact apglobals for premium membership 2020-08-25 18:15:11+00:00 1.0 1237041098 25362 pump coin name rdn 2020-08-25 18:00:13+00:00 1.0 1237041098 25361 next post will be coin name 2020-08-25 17:56:38+00:00 1.0 1237041098 25360 5 minutes left to pump on binance 2020-08-25 17:55:04+00:00 1.0 1237041098 25359 15 minutes left to pump on binance 2020-08-25 17:45:24+00:00 1.0 1237041098 25347 cnd result start price 111 price hit 133 one more quick profit 20 in just 25 hour to know next pump coin name earlier ☎️ contact apglobals 2020-08-25 16:29:27+00:00 1.0 1237041098 25341 gxs result start price 7386 price hit 8840 one more quick profit 20 in just 5 hour to know next pump coin name ☎️ contact apglobals 2020-08-25 16:07:55+00:00 1.0 1237041098 25336 2 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 16:00:28+00:00 1.0 1237041098 25333 4 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 14:02:45+00:00 1.0 1237041098 25331 7 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 11:16:26+00:00 1.0 1237041098 25330 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-25 11:15:59+00:00 1.0 1237041098 25328 135 hour left to pump on binance to know pump coin name earlier ☎️ contact apglobals for premium membership 2020-08-25 04:34:02+00:00 1.0 1237041098 25309 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-24 18:20:17+00:00 1.0 1237041098 25235 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-23 17:22:15+00:00 1.0 1237041098 25216 agi result start price 560 price hit 786 one more huge quick profit 40 in just 20 hour to know next pump coin name ☎️ contact apglobals 2020-08-23 10:26:17+00:00 1.0 1237041098 25189 next pump scheduled ⏰ tuesday 25082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-22 15:41:23+00:00 1.0 1237041098 25174 next pump scheduled ⏰ saturday 22082020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-22 10:13:40+00:00 1.0 1237041098 25155 gnt result start price 823 price hit 1518 one more huge quick profit 84 in just 5 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-08-22 04:45:16+00:00 1.0 1237041098 25142 next pump scheduled ⏰ saturday 22082020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-22 01:27:57+00:00 1.0 1237041098 25110 qtum result start price 3309 price hit 4650 one more huge quick profit 40 in just 9 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-08-21 07:41:21+00:00 1.0 1237041098 25103 zrx result start price 5115 price hit 7022 one more huge quick profit 37 in just 10 hour to know next pump coin name ☎️ contact apglobals 2020-08-21 07:21:23+00:00 1.0 1237041098 25057 snt result start price 315 price hit 382 one more huge quick profit signals 21 within 85 hour to know next pump coin name ☎️ contact apglobals 2020-08-20 18:14:57+00:00 1.0 1237041098 25051 omg result start price 2527 price hit 4171 huge quick profit 65 in just 29 hour amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-20 16:43:43+00:00 1.0 1237041098 24997 poa result start price 463 price hit 579 one more quick profit 25 in just 53 minutes to know next pump coin name ☎️ contact apglobals 2020-08-19 15:20:41+00:00 1.0 1237041098 24962 ren result start price 3361 price hit 4572 one more huge quick profit 36 in just 24 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-18 18:34:18+00:00 1.0 1237041098 24926 ctsi result start price 935 price hit 1210 one more huge quick profit 29 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-08-18 11:50:11+00:00 1.0 1237041098 24861 eng result start price 4357 price hit 5760 one more huge profit 32 in 245 hour more quick profit signals available in premium channel hurry up ‍♂ to know next pump coin name ☎️ contact apglobals 2020-08-17 11:45:29+00:00 1.0 1237041098 24851 rdn result start price 3965 price hit 5490 huge quick profit 38 in 18 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-17 09:32:01+00:00 1.0 1237041098 24831 omg result start price 1945 price hit 2689 one more huge quick profit 38 in just 65 hour amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-08-17 06:40:27+00:00 1.0 1237041098 24649 qtum result 2nd target achieved in just 37 minutes ✅✅ one more huge profit 38 using 5x leverage amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-08-14 08:28:31+00:00 1.0 1237041098 24542 waves result all targets achieved in just 24 minutes ✅✅✅✅ one more huge quick profit 43 to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-13 10:02:36+00:00 1.0 1237041098 24319 iris result all targets achieved in just 52 minutes ✅✅✅✅ one more huge quick profit 65 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-10 13:43:04+00:00 1.0 1237041098 24204 band result start price 90620 price hit 118879 one more huge quick profit 31 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-09 11:41:30+00:00 1.0 1237041098 23965 pump result ppt start price 2684 weve reached 3995 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2020-08-04 18:16:42+00:00 1.0 1237041098 23959 pump coin name ppt 2020-08-04 18:00:26+00:00 1.0 1237041098 23958 next post will be coin name 2020-08-04 17:55:03+00:00 1.0 1237041098 23956 5 minutes left to pump on binance 2020-08-04 17:55:03+00:00 1.0 1237041098 23955 15 minutes left to pump on binance 2020-08-04 17:45:01+00:00 1.0 1237041098 23951 next pump scheduled ⏰ tuesday 04082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-04 12:45:12+00:00 1.0 1237041098 23929 next pump scheduled ⏰ tuesday 04082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-03 18:52:01+00:00 1.0 1237041098 23918 mco result start price 3863 price hit 5039 huge quick profit 30 in just 30 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-03 07:28:10+00:00 1.0 1237041098 23909 next pump scheduled ⏰ tuesday 04082020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-08-03 05:19:23+00:00 1.0 1237041098 23907 ark hit 5517 finally all targets achieved in just 215 hour ✅✅✅✅ huge quick profit 36 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-08-03 04:58:55+00:00 1.0 1237041098 23794 fio result 2nd target achieved in just 1 hour ✅✅ one more very quick huge profit 28 to know next pump coin name ☎️ contact apglobals 2020-07-31 10:32:45+00:00 1.0 1237041098 23783 adx result 3rd target achieved in just 57 minutes ✅✅✅ one more very quick profit 25 to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-31 08:41:11+00:00 1.0 1237041098 23699 via result start price 2029 price hit 3285 one more huge quick profit 61 in just 1 hour amazing breakout signal given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-30 08:15:22+00:00 1.0 1237041098 23625 adx result start price 1431 price hit 2241 huge quick profit 56 in just 2 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-29 05:39:04+00:00 1.0 1237041098 23595 adx result start price 1117 price hit 1799 huge quick profit 61 in just 45 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-28 18:08:08+00:00 1.0 1237041098 23582 oax result start price 784 price hit 1159 huge quick profit 47 in just 8 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-28 17:36:08+00:00 1.0 1237041098 23569 pump result poa start price 141 weve reached 175 huge quick profit 24 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2020-07-28 16:11:32+00:00 1.0 1237041098 23553 next post will be coin name 2020-07-28 15:50:43+00:00 1.0 1237041098 23552 10 minutes left to pump on binance 2020-07-28 15:50:31+00:00 1.0 1237041098 23549 25 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-07-28 15:35:00+00:00 1.0 1237041098 23548 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-28 15:32:51+00:00 1.0 1237041098 23545 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact apglobals 2020-07-28 15:23:52+00:00 1.0 1237041098 23535 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-28 14:11:02+00:00 1.0 1237041098 23532 sys result start price 669 price hit 1157 huge quick profit 72 in just 8 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-28 12:32:28+00:00 1.0 1237041098 23525 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-28 10:37:32+00:00 1.0 1237041098 23510 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-27 16:37:20+00:00 1.0 1237041098 23477 bnt result start price 13798 price hit 17010 one more huge quick profit 23 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-07-26 15:50:08+00:00 1.0 1237041098 23470 perl result start price 548 price hit 709 one more huge quick profit 29 within 9 hour to know next pump coin name ☎️ contact apglobals 2020-07-26 14:59:33+00:00 1.0 1237041098 23372 pump coin name elf 2020-07-24 17:00:24+00:00 1.0 1237041098 23371 next post will be coin name 2020-07-24 16:55:19+00:00 1.0 1237041098 23370 5 minutes left to pump on binance 2020-07-24 16:55:09+00:00 1.0 1237041098 23369 14 minutes left to pump on binance 2020-07-24 16:46:45+00:00 1.0 1237041098 23367 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-24 16:01:43+00:00 1.0 1237041098 23355 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-24 11:58:05+00:00 1.0 1237041098 23334 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-07-24 05:04:08+00:00 1.0 1237041098 23301 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-23 14:25:34+00:00 1.0 1237041098 23293 sys hit 1655 finally all targets achieved in just 2 hour 8 minutes ✅✅✅✅ huge quick profit 56 next breakout pump signal will be shared in few hours only in premium channel hurry up ☎ contact apglobals 2020-07-23 13:29:40+00:00 1.0 1237041098 23291 sys unstoppable amazing breakout pump signal given to premium members 2020-07-23 13:00:23+00:00 1.0 1237041098 23269 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-22 16:39:19+00:00 1.0 1237041098 23253 amb result start price 206 price hit 255 one more huge quick profit 23 in just 45 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-22 14:32:24+00:00 1.0 1237041098 23208 nxs result start price 2490 price hit 3100 one more huge quick profit 24 in just 31 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-21 16:06:06+00:00 1.0 1237041098 23185 dlt hit 808 finally all targets achieved within 2 hour 45 minutes ✅✅✅✅ huge very quick profit 49 amazing pump call shared in premium channel to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-21 13:17:50+00:00 1.0 1237041098 23154 mana result start price 471 price hit 600 one more huge quick profit 27 within 15 hour to know next pump coin name ☎️ contact apglobals 2020-07-21 09:11:32+00:00 1.0 1237041098 23131 blz result start price 671 price hit 1045 one more huge quick profit 55in just 25 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-20 17:31:31+00:00 1.0 1237041098 23010 ftm breakout pump result start price 114 price hit 144 huge quick profit 26 within 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-18 04:59:59+00:00 1.0 1237041098 22884 blz pumped hard price hit 619 huge quick profit 48 amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-07-15 03:33:43+00:00 1.0 1237041098 22845 lrc result start price 1319 price hit 1756 one more huge quick profit 33 in just 6 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-13 14:59:48+00:00 1.0 1237041098 22839 arn result start price 563 price hit 1838 huge very quick profit 226 in just 10 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-13 13:56:45+00:00 1.0 1237041098 22704 arpa unstoppable proce hit 397 huge quick profit 126 in just 16 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-07-10 03:23:44+00:00 1.0 1237041098 22691 arpa result start price 175 price hit 237 huge quick profit 35 in just 45 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership and earn huge with 2020-07-09 14:32:53+00:00 1.0 1237041098 22510 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-07-04 16:13:48+00:00 1.0 1237041098 22105 pump coin name evx 2020-06-24 16:00:22+00:00 1.0 1237041098 22104 next post will be coin name 2020-06-24 15:55:15+00:00 1.0 1237041098 22103 5 minutes left to pump on binance 2020-06-24 15:55:02+00:00 1.0 1237041098 22102 15 minutes left to pump on binance 2020-06-24 15:45:32+00:00 1.0 1237041098 22101 30 minutes left to pump on binance 2020-06-24 15:30:55+00:00 1.0 1237041098 22089 next pump scheduled ⏰ wednesday 24062020 at 4 pm gmt exchange binance last pump results gxs 31 qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-24 08:35:17+00:00 1.0 1237041098 22081 next pump scheduled ⏰ wednesday 24062020 at 4 pm gmt exchange binance last pump results gxs 31 qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-24 04:13:08+00:00 1.0 1237041098 22058 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals 2020-06-23 18:17:30+00:00 1.0 1237041098 21856 ark result start price 3099 price hit 4300 one more huge quick profit 38 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-18 07:12:37+00:00 1.0 1237041098 21789 pump result gxs start price 6350 weve reached 8306 huge quick profit 31 to know next pump coin name contact apglobals for premium membership 2020-06-15 16:11:54+00:00 1.0 1237041098 21786 gxs proof call shared 3 minutes before pump in premium channel 2020-06-15 16:09:09+00:00 1.0 1237041098 21779 next post will be coin name 2020-06-15 15:57:20+00:00 1.0 1237041098 21778 15 minutes left to pump on binance 2020-06-15 15:46:00+00:00 1.0 1237041098 21774 next pump scheduled ⏰ monday 15062020 at 4 pm gmt exchange binance last pump results qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-15 04:11:16+00:00 1.0 1237041098 21737 pump result qsp start price 210 weve reached 299 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2020-06-13 16:31:40+00:00 1.0 1237041098 21729 pump coin name qsp 2020-06-13 16:00:41+00:00 1.0 1237041098 21728 next post will be coin name 2020-06-13 15:53:57+00:00 1.0 1237041098 21727 15 minutes left to pump on binance 2020-06-13 15:45:32+00:00 1.0 1237041098 21726 30 minutes left to pump on binance 2020-06-13 15:32:17+00:00 1.0 1237041098 21724 next pump scheduled ⏰ saturday 13062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-13 15:01:07+00:00 1.0 1237041098 21704 next pump scheduled ⏰ saturday 13062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-13 10:10:16+00:00 1.0 1237041098 21652 tfuel result start price 72 price hit 102 huge quick profit 41 in just 2 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-12 10:52:38+00:00 1.0 1237041098 21600 pump coin name via 2020-06-10 16:00:03+00:00 1.0 1237041098 21599 next post will be coin name 2020-06-10 15:55:57+00:00 1.0 1237041098 21598 about 5 minutes left to pump on binance 2020-06-10 15:55:44+00:00 1.0 1237041098 21597 about 10 minutes left to pump on binance 2020-06-10 15:52:05+00:00 1.0 1237041098 21596 about 15 minutes left to pump on binance 2020-06-10 15:45:29+00:00 1.0 1237041098 21592 next pump scheduled ⏰ wednesday 10062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-10 14:11:12+00:00 1.0 1237041098 21583 next pump scheduled ⏰ wednesday 10062020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-10 05:57:36+00:00 1.0 1237041098 21580 lun result start price 1162 price hit 1610 huge quick profit 38in just 15 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-10 04:01:39+00:00 1.0 1237041098 21573 gvt result start price 1151 price hit 1465 one more huge profit 27 within 5 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-06-09 13:26:04+00:00 1.0 1237041098 21535 pump coin name ppt by cryptopumpisland admin apglobals 2020-06-08 16:06:12+00:00 1.0 1237041098 21534 coin name will be posted in premium channel anytime soon within next 1 hour this time coin name will be posted at random time within next 1 hour to avoid bots involve in pump so that our members will earn huge expecting 100200 pump to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-06-08 15:55:12+00:00 1.0 1237041098 21531 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-08 13:11:50+00:00 1.0 1237041098 21520 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-08 09:54:07+00:00 1.0 1237041098 21511 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-08 04:05:49+00:00 1.0 1237041098 21385 pump result ctxc start price 1155 weve reached 3599 huge quick profit 211 to know next pump coin name contact apglobals for premium membership 2020-06-03 16:24:34+00:00 1.0 1237041098 21381 pump coin name ctxc 2020-06-03 16:00:35+00:00 1.0 1237041098 21380 next post will be coin name 2020-06-03 15:55:33+00:00 1.0 1237041098 21379 5 minutes left to pump on binance 2020-06-03 15:55:18+00:00 1.0 1237041098 21378 15 minutes left to pump on binance 2020-06-03 15:45:28+00:00 1.0 1237041098 21377 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-06-03 15:30:07+00:00 1.0 1237041098 21374 1 hour 10 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-06-03 14:49:39+00:00 1.0 1237041098 21372 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-03 14:49:07+00:00 1.0 1237041098 21355 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-03 07:40:14+00:00 1.0 1237041098 21327 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-06-03 03:46:20+00:00 1.0 1237041098 21187 pump result via start price 1813 weve reached 5200 huge quick profit 186 to know next pump coin name contact apglobals for premium membership 2020-05-29 16:13:20+00:00 1.0 1237041098 21182 pump coin name via 2020-05-29 16:00:05+00:00 1.0 1237041098 21181 next post will be coin name 2020-05-29 15:55:36+00:00 1.0 1237041098 21180 5 minutes left to pump on binance 2020-05-29 15:55:06+00:00 1.0 1237041098 21179 15 minutes left to pump on binance 2020-05-29 15:45:02+00:00 1.0 1237041098 21173 next pump scheduled ⏰ friday 29052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-29 13:10:49+00:00 1.0 1237041098 21162 next pump scheduled ⏰ friday 29052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-29 05:28:43+00:00 1.0 1237041098 21097 band result start price 14800 price hit 23010 huge quick profit 55 in just 50 minutes amazing alert given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-05-27 11:53:13+00:00 1.0 1237041098 21067 pump result ong start price 1209 weve reached 2534 huge quick profit 109 to know next pump coin name contact apglobals for premium membership 2020-05-26 16:27:23+00:00 1.0 1237041098 21058 breakout pump coin name ong 2020-05-26 16:01:05+00:00 1.0 1237041098 21054 next pump signal will be shared in only in premium channel in few minutes ☎️ contact apglobals for premium membership 2020-05-26 14:33:22+00:00 1.0 1237041098 20623 next post will be coin name 2020-05-21 15:55:48+00:00 1.0 1237041098 20621 15 minutes left to pump on binance 2020-05-21 15:45:55+00:00 1.0 1237041098 20620 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-05-21 15:30:18+00:00 1.0 1237041098 20604 next pump scheduled ⏰ thursday 21052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-21 10:44:07+00:00 1.0 1237041098 20573 next pump scheduled ⏰ thursday 21052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-21 07:17:38+00:00 1.0 1237041098 20336 30 minutes left hurry up ‍♂ 2020-05-14 17:53:49+00:00 1.0 1237041098 20333 pump result yoyo start price 76 weve reached 90 huge quick profit 18 to know next pump coin name contact apglobals for premium membership 2020-05-14 16:28:59+00:00 1.0 1237041098 20317 next post will be coin name 2020-05-14 15:55:47+00:00 1.0 1237041098 20316 5 minutes left to pump on binance 2020-05-14 15:55:05+00:00 1.0 1237041098 20314 15 minutes left to pump on binance 2020-05-14 15:45:12+00:00 1.0 1237041098 20306 next pump scheduled ⏰ thursday 14052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-14 11:56:58+00:00 1.0 1237041098 20285 next pump scheduled ⏰ thursday 14052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-14 07:32:43+00:00 1.0 1237041098 20220 next post will be coin name 2020-05-09 15:50:30+00:00 1.0 1237041098 20219 10 minutes left to pump on binance 2020-05-09 15:50:05+00:00 1.0 1237041098 20218 30 minutes left to pump on binance 2020-05-09 15:31:58+00:00 1.0 1237041098 20215 next pump scheduled ⏰ saturday 09052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-09 14:35:01+00:00 1.0 1237041098 20117 next post will be coin name 2020-05-05 15:57:02+00:00 1.0 1237041098 20116 5 minutes left to pump on binance be ready with you btc 2020-05-05 15:55:48+00:00 1.0 1237041098 20114 15 minutes left to pump on binance 2020-05-05 15:45:03+00:00 1.0 1237041098 20112 30 minutes left to pump on binance 2020-05-05 15:30:40+00:00 1.0 1237041098 20109 next pump scheduled ⏰ tuesday 05052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-05 14:00:40+00:00 1.0 1237041098 20101 next pump scheduled ⏰ tuesday 05052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-05 12:25:12+00:00 1.0 1237041098 20092 next pump scheduled ⏰ tuesday 05052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-05-05 11:11:04+00:00 1.0 1237041098 19886 breakout pump coin ark 2020-04-25 14:25:04+00:00 1.0 1237041098 19867 pump coin name bnt 2020-04-24 15:59:29+00:00 1.0 1237041098 19866 next post will be coin name 2020-04-24 15:56:53+00:00 1.0 1237041098 19865 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-04-24 15:31:01+00:00 1.0 1237041098 19858 next pump scheduled ⏰ friday 24042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-24 13:40:54+00:00 1.0 1237041098 19844 next pump scheduled ⏰ friday 24042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-24 07:26:37+00:00 1.0 1237041098 19742 gvt signals shared in premium channel 20 minutes before pump 2020-04-15 16:19:47+00:00 1.0 1237041098 19738 pump coin name gvt 2020-04-15 15:56:53+00:00 1.0 1237041098 19737 next post will be coin name 2020-04-15 15:54:09+00:00 1.0 1237041098 19736 ⏰ 10 minutes left to pump on binance 2020-04-15 15:50:05+00:00 1.0 1237041098 19735 ⏰ 30 minutes left to pump on binance 2020-04-15 15:31:13+00:00 1.0 1237041098 19733 next pump scheduled ⏰ wednesday 15042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-15 09:03:31+00:00 1.0 1237041098 19726 pump coin name mith 2020-04-14 16:00:31+00:00 1.0 1237041098 19725 next post will be coin name 2020-04-14 15:53:07+00:00 1.0 1237041098 19724 ⏰ 15 minutes left to pump on binance 2020-04-14 15:45:01+00:00 1.0 1237041098 19710 next pump scheduled ⏰ tuesday 14042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-14 08:10:32+00:00 1.0 1237041098 19698 ⏰ 15 minutes left to pump on binance 2020-04-13 11:46:24+00:00 1.0 1237041098 19697 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-04-13 11:31:54+00:00 1.0 1237041098 19694 next pump scheduled ⏰ monday 13042020 at 1200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-13 09:02:33+00:00 1.0 1237041098 19642 pump result gnt start price 508 weve reached 739 huge quick profit 45 to know next pump coin name contact apglobals for premium membership 2020-04-10 16:25:14+00:00 1.0 1237041098 19637 next post will be coin name 2020-04-10 15:51:50+00:00 1.0 1237041098 19636 10 minutes left to pump on binance 2020-04-10 15:51:32+00:00 1.0 1237041098 19629 next pump scheduled ⏰ friday 10042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-10 08:20:03+00:00 1.0 1237041098 19535 next post will be coin name 2020-04-04 15:49:32+00:00 1.0 1237041098 19534 10 minutes left to pump on binance 2020-04-04 15:49:10+00:00 1.0 1237041098 19533 30 minutes left to pump on binance 2020-04-04 15:31:44+00:00 1.0 1237041098 19527 next pump scheduled ⏰ saturday 04042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-04 07:26:24+00:00 1.0 1237041098 19471 pump result grs start price 2380 weve reached 3434 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2020-04-02 16:18:15+00:00 1.0 1237041098 19463 next post will be coin name 2020-04-02 15:54:13+00:00 1.0 1237041098 19460 30 minutes left to pump on binance 2020-04-02 15:31:48+00:00 1.0 1237041098 19450 next pump scheduled ⏰ thursday 02042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-04-02 07:28:35+00:00 1.0 1237041098 19322 next pump signal will be shared in only in premium channel in few minutes ☎️ contact apglobals for premium membership 2020-03-28 11:55:49+00:00 1.0 1237041098 19290 pump result rlc start price 4560 weve reached 6790 huge quick profit 49 to know next pump coin name contact apglobals for premium membership 2020-03-27 16:12:39+00:00 1.0 1237041098 19283 next pump signal will be shared in only in premium channel in few minutes ☎️ contact apglobals for premium membership 2020-03-27 15:54:59+00:00 1.0 1237041098 19245 pump result edo start price 1730 weve reached 2446 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2020-03-26 16:35:56+00:00 1.0 1237041098 19237 next post will be coin name 2020-03-26 15:58:25+00:00 1.0 1237041098 19236 15 minutes left to pump on binance 2020-03-26 15:45:54+00:00 1.0 1237041098 19235 50 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-03-26 15:10:27+00:00 1.0 1237041098 19225 next pump scheduled ⏰ thursday 26032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-26 10:14:36+00:00 1.0 1237041098 19180 next post will be coin name 2020-03-24 15:47:42+00:00 1.0 1237041098 19179 next post will be coin name 2020-03-24 15:47:35+00:00 1.0 1237041098 19178 20 minutes left to pump on binance 2020-03-24 15:38:03+00:00 1.0 1237041098 19177 20 minutes left to pump on binance 2020-03-24 15:37:55+00:00 1.0 1237041098 19176 next pump scheduled ⏰ tuesday 24032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-24 12:29:03+00:00 1.0 1237041098 18926 next post will be coin name be ready with you btc 2020-03-13 15:55:47+00:00 1.0 1237041098 18925 5 minutes left to pump on binance be ready with you btc 2020-03-13 15:55:05+00:00 1.0 1237041098 18923 10 minutes left to pump on binance be ready with you btc 2020-03-13 15:50:04+00:00 1.0 1237041098 18922 30 minutes left to pump on binance be ready with you btc 2020-03-13 15:31:03+00:00 1.0 1237041098 18914 next pump scheduled ⏰ friday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-13 14:05:02+00:00 1.0 1237041098 18913 3 hour left to pump on binance last pump result qlc 27 to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-03-13 13:03:11+00:00 1.0 1237041098 18884 next pump scheduled ⏰ friday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-13 09:58:46+00:00 1.0 1237041098 18859 next pump scheduled ⏰ friday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-13 04:18:07+00:00 1.0 1237041098 18831 pump result qlc start price 136 weve reached 173 huge quick profit 27 to know next pump coin name contact apglobals for premium membership 2020-03-12 16:14:34+00:00 1.0 1237041098 18819 if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-03-12 15:57:17+00:00 1.0 1237041098 18818 5 minutes left to pump on binance be ready with you btc 2020-03-12 15:55:06+00:00 1.0 1237041098 18817 10 minutes left to pump on binance be ready with you btc 2020-03-12 15:50:09+00:00 1.0 1237041098 18816 15 minutes left to pump on binance be ready with you btc 2020-03-12 15:47:41+00:00 1.0 1237041098 18815 30 minutes left to pump on binance 2020-03-12 15:30:01+00:00 1.0 1237041098 18811 if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-03-12 12:22:56+00:00 1.0 1237041098 18804 next pump scheduled ⏰ thursday 12032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-12 10:02:35+00:00 1.0 1237041098 18788 next pump scheduled ⏰ thursday 12032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-03-12 06:54:01+00:00 1.0 1237041098 18785 pivx result start price 4949 price hit 7400 huge quick profit 49 in just 21 minutes to know next pump coin name ☎️ contact apglobals 2020-03-12 06:33:32+00:00 1.0 1237041098 18706 band hit 9656 huge quick profit 84 within 17 hour amazing alert given to premium members to know next pump coin name ☎️ contact apglobals 2020-03-11 03:06:22+00:00 1.0 1237041098 18408 next post will be coin name 2020-02-26 17:55:22+00:00 1.0 1237041098 18407 5 minutes left to pump on binance 2020-02-26 17:55:10+00:00 1.0 1237041098 18406 15 minutes left to pump on binance 2020-02-26 17:45:27+00:00 1.0 1237041098 18405 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-02-26 17:39:39+00:00 1.0 1237041098 18404 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact apglobals 2020-02-26 17:31:20+00:00 1.0 1237041098 18396 next pump scheduled ⏰ wednesday 26022020 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-02-26 11:53:41+00:00 1.0 1237041098 17619 just told 40 minutes ago and pump 50 more within 40 minutes price hit 2941 we shared signal when price was 1420 huge profit 107 within 15 hour 2020-02-06 19:07:47+00:00 1.0 1237041098 17344 snt now hit 159 3rd target achieved within 13 hour ✅✅✅✅ huge quick profit 32 amazing breakout pump signal congrats premium members to know next pump coin ☎️ contact apglobals 2020-02-02 00:36:39+00:00 1.0 1237041098 17279 btc 200 dumped and pumped just before pump many outsiders didnt participated in pump we will schedule next pump soon still me managed to grab quick 7 within 2 minutes and price was up for about 5 minutes good coin to hold 2020-01-30 17:12:58+00:00 1.0 1237041098 17271 next post will be coin name 2020-01-30 16:55:08+00:00 1.0 1237041098 17270 5 minutes left to pump on binance 2020-01-30 16:55:08+00:00 1.0 1237041098 17268 10 minutes left to pump on binance 2020-01-30 16:50:04+00:00 1.0 1237041098 17267 15 minutes left to pump on binance 2020-01-30 16:45:18+00:00 1.0 1237041098 17266 30 minutes left to pump on binance 2020-01-30 16:30:02+00:00 1.0 1237041098 17265 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-30 16:29:29+00:00 1.0 1237041098 17257 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-30 15:31:55+00:00 1.0 1237041098 17251 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-30 14:13:20+00:00 1.0 1237041098 17220 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-30 05:06:57+00:00 1.0 1237041098 17210 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-29 18:22:31+00:00 1.0 1237041098 17198 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-29 17:13:29+00:00 1.0 1237041098 16525 gnt price hit 394 many are stuck in other alt coin thats why may not participated in pump also btc pumped today made sell pressure on all alt coins 2020-01-10 18:07:34+00:00 1.0 1237041098 16519 next post will be coin name 2020-01-10 17:55:20+00:00 1.0 1237041098 16518 5 minutes left to pump on binance 2020-01-10 17:55:11+00:00 1.0 1237041098 16517 10 minutes left to pump on binance 2020-01-10 17:50:04+00:00 1.0 1237041098 16515 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-10 17:20:33+00:00 1.0 1237041098 16503 next pump scheduled ⏰ friday 10012020 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-10 10:05:12+00:00 1.0 1237041098 16481 next post will be coin name 2020-01-09 16:55:13+00:00 1.0 1237041098 16480 5 minutes left to pump on binance 2020-01-09 16:55:01+00:00 1.0 1237041098 16478 10 minutes left to pump on binance 2020-01-09 16:50:01+00:00 1.0 1237041098 16477 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-09 16:45:45+00:00 1.0 1237041098 16476 15 minutes left to pump on binance 2020-01-09 16:45:03+00:00 1.0 1237041098 16475 30 minutes left to pump on binance 2020-01-09 16:29:48+00:00 1.0 1237041098 16462 next pump scheduled ⏰ thursday 09012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-09 10:00:26+00:00 1.0 1237041098 16438 ong hit 3350 huge quick profit 52 within 32 minutes to know next pump coin ☎️ contact apglobals for premium membership 2020-01-09 03:40:21+00:00 1.0 1237041098 16426 next pump scheduled ⏰ thursday 09012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-08 17:19:17+00:00 1.0 1237041098 16415 next post will be coin name 2020-01-08 16:55:54+00:00 1.0 1237041098 16414 5 minutes left to pump on binance 2020-01-08 16:55:39+00:00 1.0 1237041098 16413 10 minutes left to pump on binance 2020-01-08 16:50:24+00:00 1.0 1237041098 16412 15 minutes left to pump on binance 2020-01-08 16:45:02+00:00 1.0 1237041098 16411 30 minutes left to pump on binance 2020-01-08 16:30:02+00:00 1.0 1237041098 16410 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-08 16:03:57+00:00 1.0 1237041098 16381 next pump scheduled ⏰ wednesday 08012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-01-08 10:15:19+00:00 1.0 1237041098 15800 pump result nav start price 1159 weve reached 1450 huge quick profit 25 to know next pump coin name contact apglobals for premium membership 2019-12-20 03:09:49+00:00 1.0 1237041098 15790 pump result nav start price 1159 weve reached 1450 huge quick profit 25 to know next pump coin name contact apglobals for premium membership 2019-12-19 17:38:40+00:00 1.0 1237041098 15773 next post will be coin name 2019-12-19 16:55:31+00:00 1.0 1237041098 15772 5 minutes left to pump on binance 2019-12-19 16:55:11+00:00 1.0 1237041098 15771 10 minutes left to pump on binance 2019-12-19 16:50:03+00:00 1.0 1237041098 15770 15 minutes left to pump on binance 2019-12-19 16:45:18+00:00 1.0 1237041098 15769 30 minutes left to pump on binance 2019-12-19 16:32:36+00:00 1.0 1237041098 15767 next pump scheduled ⏰ thursday 19122019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-12-19 16:02:57+00:00 1.0 1237041098 15753 next pump scheduled ⏰ thursday 19122019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-12-19 11:14:59+00:00 1.0 1237041098 15490 go and cnd north top gainer on binance amazing calls by our team to know next pump coin name ☎️ contact apglobals 2019-12-11 05:45:01+00:00 1.0 1237041098 15447 matic result 3rd target achieved within 53 minutes ✅✅✅ huge quick profit 32 so far to know next pump coin ☎️ contact apglobals 2019-12-10 05:41:40+00:00 1.0 1237041098 14578 key result update all targets achieved within 18 hour✅✅✅✅ huge huge quick profit 68 in just 18 hour amazing breakout pump signal shared in premium channel you can earn back fees within 1 day to know next breakout pump signal ☎️ contact apglobals 2019-11-22 06:19:19+00:00 1.0 1237041098 14561 pump result edo start price 3342 weve reached 3680 quick profit 10 many members are holding other alt coins thats why only few members participated next pump will be huge to know next pump coin name contact apglobals for premium membership 2019-11-21 18:21:25+00:00 1.0 1237041098 14553 next post will be coin name 2019-11-21 17:58:48+00:00 1.0 1237041098 14552 5 minutes left to pump on binance 2019-11-21 17:55:09+00:00 1.0 1237041098 14551 10 minutes left to pump on binance 2019-11-21 17:50:15+00:00 1.0 1237041098 14550 15 minutes left to pump on binance 2019-11-21 17:45:23+00:00 1.0 1237041098 14548 30 minutes left to pump on binance 2019-11-21 17:32:45+00:00 1.0 1237041098 14533 next pump scheduled ⏰ thursday 21112019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-21 13:14:07+00:00 1.0 1237041098 14176 next post will be coin name 2019-11-11 16:56:35+00:00 1.0 1237041098 14175 5 minutes left to pump on binance 2019-11-11 16:56:04+00:00 1.0 1237041098 14174 10 minutes left to pump on binance 2019-11-11 16:50:50+00:00 1.0 1237041098 14173 15 minutes left to pump on binance 2019-11-11 16:47:15+00:00 1.0 1237041098 14172 30 minutes left to pump on binance 2019-11-11 16:31:25+00:00 1.0 1237041098 14165 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-11 15:58:03+00:00 1.0 1237041098 14142 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-11 10:58:48+00:00 1.0 1237041098 14108 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-11 05:03:27+00:00 1.0 1237041098 14099 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-10 09:41:01+00:00 1.0 1237041098 13952 next post will be coin name 2019-11-05 15:55:30+00:00 1.0 1237041098 13951 5 minutes left to pump on binance 2019-11-05 15:55:24+00:00 1.0 1237041098 13950 10 minutes left to pump on binance 2019-11-05 15:50:34+00:00 1.0 1237041098 13949 guys btc on move and alts have huge sell orders lets see if we find good coin to pump 2019-11-05 15:36:02+00:00 1.0 1237041098 13948 30 minutes left to pump on binance 2019-11-05 15:30:09+00:00 1.0 1237041098 13945 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-05 14:37:22+00:00 1.0 1237041098 13926 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-11-05 06:17:34+00:00 1.0 1237041098 13726 pump result ong start price 1764 weve reached 1881 quick profit 7 many members are holding other alt coins thats why only few members participated next pump will be huge to know next pump coin name contact apglobals for premium membership 2019-10-29 18:31:18+00:00 1.0 1237041098 13716 next post will be coin name 2019-10-29 17:55:26+00:00 1.0 1237041098 13715 5 minutes left to pump on binance 2019-10-29 17:55:04+00:00 1.0 1237041098 13711 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-29 17:02:06+00:00 1.0 1237041098 13700 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-29 11:06:01+00:00 1.0 1237041098 13691 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-29 05:46:06+00:00 1.0 1237041098 13476 pump coin name ost 2019-10-22 18:00:29+00:00 1.0 1237041098 13475 next post will be coin name 2019-10-22 17:56:02+00:00 1.0 1237041098 13468 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-22 15:06:39+00:00 1.0 1237041098 13455 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-22 10:49:45+00:00 1.0 1237041098 13423 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-21 18:54:16+00:00 1.0 1237041098 13406 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-21 15:08:50+00:00 1.0 1237041098 13285 breakout pump signal gas 2019-10-17 10:39:12+00:00 1.0 1237041098 13064 we postponed yesterdays breakout pump signal for premium members as btc started pumping and all alts pulled back today we are going to pump coin for premium members 2019-10-10 05:07:40+00:00 1.0 1237041098 12810 next post will be coin name 2019-10-02 17:55:21+00:00 1.0 1237041098 12806 poa was our breakout signal which gave 16 profit for premium members within 3 minutes pump signal remaining hurry up‍♂‍♂ join premium ☎️ contact apglobals 2019-10-02 17:43:55+00:00 1.0 1237041098 12803 poa breakout result 2nd target achieved within 3 minutes✅✅ very quick profit 16 congrats premium members join premium to know next pump coin 20 minutes left to pump on binance ☎️ contact apglobals 2019-10-02 17:40:28+00:00 1.0 1237041098 12795 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-10-02 15:08:06+00:00 1.0 1237041098 12759 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-30 17:26:12+00:00 1.0 1237041098 12742 next pump scheduled ⏰ monday 30092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-29 15:30:01+00:00 1.0 1237041098 12625 next post will be coin name be ready with you btc 2019-09-26 15:55:57+00:00 1.0 1237041098 12618 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-26 12:19:27+00:00 1.0 1237041098 12601 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-26 06:11:39+00:00 1.0 1237041098 12582 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-25 16:30:36+00:00 1.0 1237041098 12580 pump result edo start price 3404 weve reached 3802 quick profit 117 price was at top for about 4 minutes congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-09-25 16:13:20+00:00 1.0 1237041098 12573 next post will be coin name be ready with you btc 2019-09-25 15:55:27+00:00 1.0 1237041098 12562 next pump scheduled ⏰ wednesday 25092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-25 12:07:33+00:00 1.0 1237041098 12537 next pump scheduled ⏰ wednesday 25092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-25 03:55:38+00:00 1.0 1237041098 12292 blz again pumped within 24 hour price hit 381 again quick profit 17 every one is in profit congrats everyone our every pump signal again pump in next few days dont stuck in other pump group ☎️ contact apglobals and discuss with us 2019-09-18 18:21:54+00:00 1.0 1237041098 12284 poa breakout update 2nd target achieved in 2 hour 30 minutes prince hit 245 near our 3rd target ✅✅✅ huge quick profit 36 amazing breakout signal congrats premium members i told you you can recover your losses within ttodays breakout and pump signals still thinking pump signal remaining hurry up‍♂ dont miss pump signal join premium to know pump coin name earlier ☎️ contact apglobals 2019-09-18 15:39:16+00:00 1.0 1237041098 12277 next pump scheduled ⏰ wednesday 18092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-18 13:17:42+00:00 1.0 1237041098 12265 next breakout signal scheduled ⏰ wednesday 18082019 at 100pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-18 10:01:16+00:00 1.0 1237041098 12257 next breakout signal scheduled ⏰ wednesday 18082019 at 100pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-18 06:10:54+00:00 1.0 1237041098 12210 next pump scheduled ⏰ wednesday 18092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-17 17:43:53+00:00 1.0 1237041098 12191 next post will be coin name be ready with you btc 2019-09-17 15:55:45+00:00 1.0 1237041098 12185 next pump scheduled ⏰ tuesday 17092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-17 14:59:59+00:00 1.0 1237041098 12163 next pump scheduled ⏰ tuesday 17092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-17 11:03:12+00:00 1.0 1237041098 12129 next pump scheduled ⏰ tuesday 17092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-16 15:49:19+00:00 1.0 1237041098 12104 next pump scheduled ⏰ monday 16082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-15 18:14:08+00:00 1.0 1237041098 12084 next pump scheduled ⏰ monday 16082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-15 05:03:13+00:00 1.0 1237041098 11947 next breakout signal scheduled ⏰ wednesday 11082019 at 500pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-11 11:09:06+00:00 1.0 1237041098 11925 next breakout signal scheduled ⏰ wednesday 11082019 at 500pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact apglobals 2019-09-11 05:44:24+00:00 1.0 1237041098 11824 pump result bnt start price 3650 weve reached 5156 huge profit 41 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-09-09 20:05:19+00:00 1.0 1237041098 11820 next post will be coin name be ready with you btc 2019-09-09 19:55:39+00:00 1.0 1237041098 11816 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-09 19:41:36+00:00 1.0 1237041098 11790 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-09 18:57:15+00:00 1.0 1237041098 11770 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-09 07:09:04+00:00 1.0 1237041098 11749 pump result data start price 128 weve reached 166 huge profit 296 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-09-08 18:06:05+00:00 1.0 1237041098 11745 next post will be coin name be ready with you btc 2019-09-08 17:56:11+00:00 1.0 1237041098 11739 next pump scheduled ⏰ sunday 08082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-08 17:02:38+00:00 1.0 1237041098 11731 4 hour left to pump on binance to know coin name earlier join premium profit target 3060 hurry up ♂ ☎ contact apglobals 2019-09-08 14:13:55+00:00 1.0 1237041098 11728 edo pump result update huge profit 33 holders always in profit congrats everyone 6 hour left to next pump on binance to know coin name earlier join premium ☎️ contact apglobals 2019-09-08 11:46:24+00:00 1.0 1237041098 11725 less than 12 hour left to pump on binance 2019-09-08 06:25:47+00:00 1.0 1237041098 11724 next pump scheduled ⏰ sunday 08082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-07 19:59:57+00:00 1.0 1237041098 11667 next post will be coin name be ready with you btc 2019-09-06 17:56:11+00:00 1.0 1237041098 11659 next pump scheduled ⏰ friday 06082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-06 16:03:20+00:00 1.0 1237041098 11654 4 hour left to pump on binance to know coin name earlier join premium hurry up ♂ ☎ contact apglobals 2019-09-06 14:09:33+00:00 1.0 1237041098 11632 next pump scheduled ⏰ friday 06082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-05 17:26:18+00:00 1.0 1237041098 11606 next post will be coin name be ready with you btc 2019-09-04 15:55:44+00:00 1.0 1237041098 11600 1 hour left to pump on binance to know coin name earlier join premium hurry up ♂ ☎ contact apglobals 2019-09-04 15:02:23+00:00 1.0 1237041098 11598 next pump scheduled ⏰ wednesday 04082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-04 14:01:32+00:00 1.0 1237041098 11574 next pump scheduled ⏰ wednesday 04082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-09-03 15:24:21+00:00 1.0 1237041098 11544 next post will be coin name be ready with you btc 2019-09-02 15:55:47+00:00 1.0 1237041098 11533 only 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-09-02 14:59:47+00:00 1.0 1237041098 11522 next pump scheduled ⏰ monday 02082019 at 400pm gmt exchange binance last pump results qsp 39 vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-31 17:54:23+00:00 1.0 1237041098 11466 last 12 hour profit results ✅ qsp 39 pump result ✅ blz 16 within 2 minutes ✅ qlc 8 within 5 minutes ✅ ins 17 within 10 hour ✅ bqx 66 within 30 minutes ✅ gnt 77 within 17 minutes todays total profit 943 in last 12 hour all results shared above with screenshot you can scroll up and check will any other group give this much return no❗ then what you are waiting for you could earn premium fees within a day ☎ contact apglobals 2019-08-29 18:38:53+00:00 1.0 1237041098 11456 more quick profit for premium members just before pump within 5 minutes 2019-08-29 18:27:19+00:00 1.0 1237041098 11444 next post will be coin name be ready with you btc 2019-08-29 17:58:55+00:00 1.0 1237041098 11438 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-29 17:01:04+00:00 1.0 1237041098 11418 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-29 06:10:11+00:00 1.0 1237041098 11409 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-28 11:55:40+00:00 1.0 1237041098 11320 dock update earlier 2nd target achieved within 30 minutes now price went down to our buy zone and again pumped hard within 6 hour now 3rd target achieved ✅✅✅ huge profit 28 premium members earning huge join premium before our next signal pump ☎️ contact apglobals 2019-08-26 11:10:28+00:00 1.0 1237041098 11114 guys if you find any channel pumping coin at same date and time please beware of him they are just going to copy our pump signals and scamming people 2019-08-21 18:12:19+00:00 1.0 1237041098 11109 next post will be coin name be ready with you btc 2019-08-21 17:55:56+00:00 1.0 1237041098 11104 i told you about breakout signal and pump signal breakout signal gave premium members 31profit within 3 hour now pump is in 1 hour still have chance to earn huge 1 hour left to pump on binance to know coin name earlier join premium get your lifetime premium membership at exclusive 50 off offer valid for next 5 slot3 slots filled ☎️ contact apglobals 2019-08-21 16:58:33+00:00 1.0 1237041098 11084 next pump scheduled ⏰ wednesday 21082019 at 600pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-21 12:04:49+00:00 1.0 1237041098 11026 next pump scheduled ⏰ wednesday 21082019 at 600pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-20 10:50:57+00:00 1.0 1237041098 11005 pump result ong start price 1781 weve reached 1999 quick profit 122 congrats guys today 34 coins pumped at same time thats why outsiders diverted on other coins and we manage to get only 12 profit but its good profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-19 16:23:04+00:00 1.0 1237041098 10997 next post will be coin name be ready with you btc 2019-08-19 15:56:10+00:00 1.0 1237041098 10988 next pump scheduled ⏰ monday 19082019 at 400pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-19 12:57:26+00:00 1.0 1237041098 10967 next pump scheduled ⏰ monday 19082019 at 400pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-19 05:58:11+00:00 1.0 1237041098 10952 next pump scheduled ⏰ monday 19082019 at 400pm gmt exchange binance last pump results via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-18 10:52:55+00:00 1.0 1237041098 10908 pump result via start price 244 weve reached 298 huge quick profit 22 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-16 16:09:34+00:00 1.0 1237041098 10887 next pump scheduled ⏰ friday 16082019 at 400pm gmt exchange binance last pump results rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-16 14:01:42+00:00 1.0 1237041098 10867 next pump scheduled ⏰ friday 16082019 at 400pm gmt exchange binance last pump results rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-16 10:01:52+00:00 1.0 1237041098 10850 next pump scheduled ⏰ friday 16082019 at 400pm gmt exchange binance last pump results rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-15 15:56:43+00:00 1.0 1237041098 10739 last few pump results rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 to know coin name earlier join premium ☎️ contact apglobals 2019-08-12 06:23:44+00:00 1.0 1237041098 10703 pump result rcn start price 140 weve reached 186 huge quick profit 328 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-10 16:34:56+00:00 1.0 1237041098 10690 next post will be coin name be ready with you btc 2019-08-10 15:56:29+00:00 1.0 1237041098 10683 our each and every pump coin pump again within few days by market 2019-08-10 15:24:50+00:00 1.0 1237041098 10672 next pump scheduled ⏰ saturday 10082019 at 400pm gmt exchange binance last pump results yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-10 06:15:36+00:00 1.0 1237041098 10648 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-08-09 05:56:36+00:00 1.0 1237041098 10642 pump result yoyo start price 119 weve reached 147 huge quick profit 235 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-08 16:13:22+00:00 1.0 1237041098 10632 next post will be coin name be ready with you btc 2019-08-08 15:56:03+00:00 1.0 1237041098 10625 next pump scheduled ⏰ thursday 08082019 at 400pm gmt exchange binance last pump results poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-08 14:57:20+00:00 1.0 1237041098 10598 next pump scheduled ⏰ thursday 08082019 at 400pm gmt exchange binance last pump results poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-07 17:17:21+00:00 1.0 1237041098 10537 pump result poa start price 140 weve reached 193 huge quick profit 37 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-06 16:13:42+00:00 1.0 1237041098 10527 next post will be coin name 2019-08-06 15:56:00+00:00 1.0 1237041098 10517 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-06 13:58:52+00:00 1.0 1237041098 10498 guys if you find any channel pumping coin at same date and time please beware of him they are just going to copy our pump signals and scamming people 2019-08-06 12:27:29+00:00 1.0 1237041098 10487 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-06 09:59:33+00:00 1.0 1237041098 10449 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-05 17:48:25+00:00 1.0 1237041098 10430 next pump scheduled ⏰ tuesday 06082019 at 400pm gmt exchange binance last pump results snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-05 08:47:41+00:00 1.0 1237041098 10415 pump result snm start price 112 weve reached 139 huge quick profit 24 congrats guys next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-04 18:14:14+00:00 1.0 1237041098 10405 next post will be coin name 2019-08-04 17:56:04+00:00 1.0 1237041098 10398 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-08-04 17:04:20+00:00 1.0 1237041098 10395 2 hour left to pump on binance 2019-08-04 16:06:38+00:00 1.0 1237041098 10392 next pump scheduled ⏰ sunday 04082019 at 600pm gmt exchange binance last pump results wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-04 14:31:09+00:00 1.0 1237041098 10380 next pump scheduled ⏰ sunday 04082019 at 600pm gmt exchange binance last pump results wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-04 11:59:31+00:00 1.0 1237041098 10358 next pump scheduled ⏰ sunday 04082019 at 600pm gmt exchange binance last pump results wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-03 16:01:07+00:00 1.0 1237041098 10346 wabi still 10 up after 1 hour 30 minutes 2019-08-02 19:32:51+00:00 1.0 1237041098 10343 pump result wabi start price 1311 weve reached 1511 quick profit 15 most important price was up for about 5 minutes and hope everyone made quick profit congrats everyone wabi pump very often good coin to hold as well next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-02 18:33:54+00:00 1.0 1237041098 10333 next post will be coin name 2019-08-02 17:55:40+00:00 1.0 1237041098 10326 1 hour left to pump on binance 2019-08-02 17:01:08+00:00 1.0 1237041098 10324 2 hour left to pump on binance 2019-08-02 16:01:07+00:00 1.0 1237041098 10323 next pump scheduled ⏰ friday 02082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-02 16:00:41+00:00 1.0 1237041098 10291 next pump scheduled ⏰ friday 02082019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-08-02 05:29:35+00:00 1.0 1237041098 10283 pump result nav start price 128 weve reached 208 huge quick profit 62 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-08-01 20:07:38+00:00 1.0 1237041098 10278 next post will be coin name 2019-08-01 19:56:20+00:00 1.0 1237041098 10271 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-08-01 18:11:28+00:00 1.0 1237041098 10270 3 hour left to pump on binance to know coin name earlier join premium pump target 3060 ☎ contact apglobals 2019-08-01 16:55:32+00:00 1.0 1237041098 10255 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-08-01 08:57:21+00:00 1.0 1237041098 10218 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-07-31 11:06:11+00:00 1.0 1237041098 10198 next pump scheduled ⏰ thursday 01082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now target 3060 to know coin name earlier join premium ☎️ contact apglobals 2019-07-30 13:12:31+00:00 1.0 1237041098 10108 1 hour left to pump on binance to know coin name earlier join premium todays pump target 2040 ☎ contact apglobals 2019-07-28 15:58:25+00:00 1.0 1237041098 10107 next pump scheduled ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-28 15:58:25+00:00 1.0 1237041098 10090 3 hour left to pump on binance to know coin name earlier join premium todays pump target 2040 ☎ contact apglobals 2019-07-28 13:49:14+00:00 1.0 1237041098 10084 next pump scheduled ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-27 17:18:00+00:00 1.0 1237041098 10065 next pump scheduled ⏰ sunday 28072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-27 03:35:56+00:00 1.0 1237041098 10046 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-26 16:58:59+00:00 1.0 1237041098 10042 next pump scheduled ⏰ friday 26072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snt quick profit 216 to know coin name earlier join premium ☎️ contact apglobals 2019-07-26 14:08:02+00:00 1.0 1237041098 10017 next pump scheduled ⏰ friday 26072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snt quick profit 216 to know coin name earlier join premium ☎️ contact apglobals 2019-07-26 10:02:26+00:00 1.0 1237041098 10000 next pump scheduled ⏰ friday 26072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snt quick profit 216 to know coin name earlier join premium ☎️ contact apglobals 2019-07-25 17:29:59+00:00 1.0 1237041098 9842 next post will be coin name 2019-07-22 15:55:51+00:00 1.0 1237041098 9836 next pump scheduled ⏰ monday 22072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result bts quick profit 207 to know coin name earlier join premium ☎️ contact apglobals 2019-07-22 15:26:39+00:00 1.0 1237041098 9819 1 hour left to pump on binance 2019-07-22 15:03:25+00:00 1.0 1237041098 9816 next pump scheduled ⏰ monday 22072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result bts quick profit 207 to know coin name earlier join premium ☎️ contact apglobals 2019-07-22 10:44:04+00:00 1.0 1237041098 9779 next pump scheduled ⏰ monday 22072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result bts quick profit 207 to know coin name earlier join premium ☎️ contact apglobals 2019-07-21 16:58:40+00:00 1.0 1237041098 9730 pump result bts start price 432 weve reached 472 quick profit 92 as soon as pump started seller bots activated and coin couldnt pump much higher from past few hours many alt coins were pumping 10 thats why sellers were active during pump time but we manage to get quick 92 profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-19 17:19:22+00:00 1.0 1237041098 9721 next post will be coin name 2019-07-19 16:55:36+00:00 1.0 1237041098 9708 next pump scheduled ⏰ friday 19072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result sys quick profit 13 + 10 to know coin name earlier join premium ☎️ contact apglobals 2019-07-19 16:19:51+00:00 1.0 1237041098 9692 less than 2 hour left to pump on binance 2019-07-19 15:12:46+00:00 1.0 1237041098 9688 next pump scheduled ⏰ friday 19072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result sys quick profit 13 + 10 to know coin name earlier join premium ☎️ contact apglobals 2019-07-19 09:07:19+00:00 1.0 1237041098 9674 next pump scheduled ⏰ friday 19072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result sys quick profit 13 + 10 to know coin name earlier join premium ☎️ contact apglobals 2019-07-18 14:54:18+00:00 1.0 1237041098 9642 sys pump result update again quick profit 104 total profit 13 + 104 234 within 13 hour amazing results to know next pump coin name join premium ☎️ contact apglobals 2019-07-18 06:06:21+00:00 1.0 1237041098 9627 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-07-17 19:06:37+00:00 1.0 1237041098 9603 next post will be coin name 2019-07-17 16:56:09+00:00 1.0 1237041098 9597 next pump scheduled ⏰ wednesday 17072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result dlt quick profit 17 quick profit for premium 30 to know coin name earlier join premium ☎️ contact apglobals 2019-07-17 16:30:39+00:00 1.0 1237041098 9562 next pump scheduled ⏰ wednesday 17072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result dlt quick profit 17 quick profit for premium 30 to know coin name earlier join premium ☎️ contact apglobals 2019-07-17 04:58:10+00:00 1.0 1237041098 9543 next pump scheduled ⏰ wednesday 17072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result dlt quick profit 17 quick profit for premium 30 to know coin name earlier join premium ☎️ contact apglobals 2019-07-16 07:53:44+00:00 1.0 1237041098 9532 premium members made one more very quick profit within 15 minutes after pump profit 2019-07-15 17:44:45+00:00 1.0 1237041098 9524 pump result dlt start price 630 weve reached 736 quick profit 17 call shared in premium 8 hour ago in premium channel as well premium members profit 30 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-15 17:23:30+00:00 1.0 1237041098 9513 next post will be coin name 2019-07-15 16:55:28+00:00 1.0 1237041098 9502 next pump scheduled ⏰ monday 15072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snm huge quick profit 22 + 22 to know coin name earlier join premium ☎️ contact apglobals 2019-07-15 12:46:16+00:00 1.0 1237041098 9487 next pump scheduled ⏰ monday 15072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result snm huge quick profit 22 + 22 to know coin name earlier join premium ☎️ contact apglobals 2019-07-15 05:13:24+00:00 1.0 1237041098 9373 snm price again hit 166 exactly same as it hit yesterday in our pump again quick profit 22 for everyone double profit 44 within 24 hour amazing calls to know next pump coin name earlier ☎️ contact apglobals for premium membership 2019-07-12 12:57:02+00:00 1.0 1237041098 9303 next post will be coin name 2019-07-11 16:55:31+00:00 1.0 1237041098 9298 perfect time for pump alts making move 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-11 16:01:04+00:00 1.0 1237041098 9293 pump result cnd start price 98 weve reached 116 2nd wave 142 huge quick profit 44 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-11 14:39:14+00:00 1.0 1237041098 9279 pump result cnd start price 98 weve reached 116 2nd wave 142 huge quick profit 44 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-11 11:26:17+00:00 1.0 1237041098 9277 next pump scheduled ⏰ thursday 11072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now last pump result cnd huge quick profit 44 to know coin name earlier join premium ☎️ contact apglobals 2019-07-11 11:25:14+00:00 1.0 1237041098 9267 perfect time for pump alts making move 7 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-11 10:07:51+00:00 1.0 1237041098 9173 pump result cnd start price 98 weve reached 116 2nd wave 142 huge quick profit 44 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-09 18:48:10+00:00 1.0 1237041098 9150 next post will be coin name 2019-07-09 16:56:03+00:00 1.0 1237041098 9139 perfect time for pump alts making move 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-09 16:02:38+00:00 1.0 1237041098 9138 next pump scheduled ⏰ tuesday 09072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-09 16:02:04+00:00 1.0 1237041098 9131 perfect time for pump alts making move 1 hour 30 minutes left to pump on binance to know coin name earlier join premium dont miss opportunity again and again you could earn back fees within 1 day ☎ contact apglobals 2019-07-09 15:28:21+00:00 1.0 1237041098 9118 next pump scheduled ⏰ tuesday 09072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-09 13:00:27+00:00 1.0 1237041098 9093 less than 12 hour left to pump on binance 2019-07-09 05:36:45+00:00 1.0 1237041098 9091 next pump scheduled ⏰ tuesday 09072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-09 05:35:53+00:00 1.0 1237041098 9027 pump result sys start price 371 weve reached 410 quick profit 105 as you all know btc started pumping before our pump which makes alt coins down and huge sell order was placed by bots but you guys manage get good profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-07 18:14:25+00:00 1.0 1237041098 9016 next post will be coin name 2019-07-07 17:55:50+00:00 1.0 1237041098 9003 next pump scheduled ⏰ sunday 07072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-07 12:05:18+00:00 1.0 1237041098 8989 next pump scheduled ⏰ sunday 07072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-07 04:47:31+00:00 1.0 1237041098 8979 next pump scheduled ⏰ sunday 06072019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-06 17:37:53+00:00 1.0 1237041098 8906 next post will be coin name 2019-07-05 15:55:35+00:00 1.0 1237041098 8898 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-05 14:07:37+00:00 1.0 1237041098 8864 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-05 07:59:24+00:00 1.0 1237041098 8839 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-04 17:43:35+00:00 1.0 1237041098 8815 next pump scheduled ⏰ friday 05072019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-04 05:14:16+00:00 1.0 1237041098 8746 pump result vib start price 380 weve reached 440 quick profit 157 as you all know btc started pumped a bit which makes alt coins down and huge sell order was placed but you guys manage get good profit within few minutes next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-07-02 17:17:08+00:00 1.0 1237041098 8737 next post will be coin name 2019-07-02 16:57:21+00:00 1.0 1237041098 8729 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-07-02 16:00:40+00:00 1.0 1237041098 8728 next pump scheduled ⏰ tuesday 02072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-02 16:00:05+00:00 1.0 1237041098 8693 next pump scheduled ⏰ tuesday 02072019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-07-02 08:29:14+00:00 1.0 1237041098 8616 less than 1 hour left coin name will be announced only in premium channel 2019-06-29 15:15:52+00:00 1.0 1237041098 8594 next post will be coin name 2019-06-28 16:55:36+00:00 1.0 1237041098 8589 1 hour left to pump on binancez to know coin name earlier join premium ☎ contact apglobals 2019-06-28 15:59:58+00:00 1.0 1237041098 8583 next pump scheduled ⏰ friday 28062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-28 07:41:06+00:00 1.0 1237041098 8473 next post will be coin name 2019-06-26 16:56:10+00:00 1.0 1237041098 8468 next pump scheduled ⏰ wednesday 26062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-26 16:36:02+00:00 1.0 1237041098 8457 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-06-26 16:00:25+00:00 1.0 1237041098 8412 next pump scheduled ⏰ wednesday 26062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-26 03:39:45+00:00 1.0 1237041098 8402 next pump scheduled ⏰ wednesday 26062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-25 19:42:01+00:00 1.0 1237041098 8317 next post will be coin name 2019-06-24 16:55:31+00:00 1.0 1237041098 8308 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-06-24 16:03:22+00:00 1.0 1237041098 8306 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-24 14:54:59+00:00 1.0 1237041098 8299 5 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-06-24 11:57:42+00:00 1.0 1237041098 8276 next pump scheduled ⏰ monday 24062019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-23 17:47:46+00:00 1.0 1237041098 8087 next post will be coin name 2019-06-19 14:56:09+00:00 1.0 1237041098 8068 next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance last pump result nebl 65 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-19 08:59:13+00:00 1.0 1237041098 8057 next pump scheduled ⏰ wednesday 19062019 at 300pm gmt exchange binance last pump result nebl 65 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-18 16:19:22+00:00 1.0 1237041098 8011 pump result nebl start price 1470 weve reached 2436 huge quick profit 65 next pump will be announced soon also we shared nebl coin name signal 10 hour ago in premium channel when was around 14001430 and we pumped that coin huge profit from our buy zone 74 to know next coin name earlier contact apglobals for premium membership 2019-06-16 21:23:17+00:00 1.0 1237041098 8006 10 minutes left to the pump next post will be coin name 2019-06-16 20:50:25+00:00 1.0 1237041098 8004 1 hour left to pump on binance to know coin name earlier join premium pump profit target 3080 ☎ contact apglobals 2019-06-16 19:58:36+00:00 1.0 1237041098 8002 next pump scheduled ⏰ sunday 16062019 at 900pm gmt exchange binance last pump result snm 68 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-16 18:12:37+00:00 1.0 1237041098 7995 less than 6 hour left to pump on binance to know coin name earlier join premium pump profit target 3080 ☎ contact apglobals 2019-06-16 15:26:54+00:00 1.0 1237041098 7987 next pump scheduled ⏰ sunday 16062019 at 900pm gmt exchange binance last pump result snm 68 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-16 05:21:33+00:00 1.0 1237041098 7642 next pump scheduled ⏰ sunday 09052019 at 900pm gmt exchange binance last pump result snm 68 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-09 15:04:56+00:00 1.0 1237041098 7623 next pump scheduled ⏰ sunday 09062019 at 900pm gmt exchange binance last pump result snm 68 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-09 03:06:58+00:00 1.0 1237041098 7491 todays quick profit result ark 9 within 30 minute fet 17 within 24 hour dlt 10 within 24 hour one 37 within 11 hour lun 8 within 15 minutes snt 11 within 14 hour matic 19 within 5 hour todays more profit results theta 8 in 2 days ost 12 in 2 days tnt 15 in 2 days phb 13 in 2 days gxs 58 in 2 week congrats premium members join premium and grab all quick profit signals dont miss next breakout signal ☎ contact apglobals 2019-06-05 17:35:35+00:00 1.0 1237041098 7323 pump result snm start price 347 weve reached 586 huge quick profit 68 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-06-02 22:13:40+00:00 1.0 1237041098 7318 next post will be coin name 2019-06-02 20:57:24+00:00 1.0 1237041098 7315 hurry up♂♂ 1 hour left to pump on binance 2019-06-02 19:59:29+00:00 1.0 1237041098 7308 next pump scheduled ⏰ sunday 02052019 at 900pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-06-02 16:55:35+00:00 1.0 1237041098 7204 pump result ardr start price 994 weve reached 1054 quick profit 6 we have seen huge sell order by bots bots were not allowing price to move above 1050 but still we manage to hold price above 1050 for sometime apart from pump we have more quick profit signals available in premium channel which gives you good profit in short term next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-05-31 17:21:29+00:00 1.0 1237041098 7196 next post will be coin name 2019-05-31 16:56:19+00:00 1.0 1237041098 7191 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-05-31 16:03:30+00:00 1.0 1237041098 7186 next pump scheduled ⏰ friday 31052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-31 10:43:38+00:00 1.0 1237041098 7154 next pump scheduled ⏰ friday 31052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-30 14:27:08+00:00 1.0 1237041098 6963 next post will be coin name 2019-05-27 16:56:08+00:00 1.0 1237041098 6955 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-05-27 16:03:06+00:00 1.0 1237041098 6954 next pump scheduled ⏰ monday 27052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-27 16:02:51+00:00 1.0 1237041098 6952 this channel is going to copy our pump signal and scamming people please beware of him 2019-05-27 15:02:38+00:00 1.0 1237041098 6905 next pump scheduled ⏰ monday 27052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-27 05:13:06+00:00 1.0 1237041098 6878 next pump scheduled ⏰ monday 27052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-26 11:27:10+00:00 1.0 1237041098 6661 next post will be coin name 2019-05-23 16:56:28+00:00 1.0 1237041098 6657 1 hour left to pump on binance 2019-05-23 16:00:37+00:00 1.0 1237041098 6655 3 hour left to pump on binance 2019-05-23 14:04:31+00:00 1.0 1237041098 6654 next pump scheduled ⏰ thursday 23052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-23 14:04:12+00:00 1.0 1237041098 6573 next pump scheduled ⏰ thursday 23052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-22 17:48:32+00:00 1.0 1237041098 6504 next pump scheduled ⏰ thursday 23052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-22 08:19:34+00:00 1.0 1237041098 6184 pump result nav start price 324 weve reached 389 quick profit 20 after that price move up 710 3 times next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-05-18 18:48:12+00:00 1.0 1237041098 6179 next post will be coin name 2019-05-18 16:51:10+00:00 1.0 1237041098 6177 30 minutes left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-05-18 16:28:26+00:00 1.0 1237041098 6176 next pump scheduled ⏰ saturday 18052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-18 16:28:09+00:00 1.0 1237041098 6152 next pump scheduled ⏰ saturday 18052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-18 09:02:37+00:00 1.0 1237041098 6125 next pump scheduled ⏰ saturday 18052019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-17 19:40:30+00:00 1.0 1237041098 6070 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-05-17 06:45:00+00:00 1.0 1237041098 5830 next post will be coin name 2019-05-13 14:53:57+00:00 1.0 1237041098 5828 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-05-13 14:07:06+00:00 1.0 1237041098 5796 next pump scheduled ⏰ monday 13052019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-13 08:32:44+00:00 1.0 1237041098 5736 pump result rdn start price 4288 weve reached 4950 quick profit 15 next pump will be announced soon to know next coin name earlier contact apglobals for premium membership 2019-05-10 16:09:52+00:00 1.0 1237041098 5731 5 minutes left for coin name 2019-05-10 15:56:19+00:00 1.0 1237041098 5726 next breakout pump signal will be announced only in premium channel in next 1 hour join premium and earn huge ☎️ contact apglobals 2019-05-10 15:09:16+00:00 1.0 1237041098 5724 all alt coin already started pumping we have cancelled this pump sorry for inconvenience but we made huge profit in bat and poa 2019-05-10 14:02:32+00:00 1.0 1237041098 5711 next pump scheduled ⏰ friday 10052019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-10 08:09:24+00:00 1.0 1237041098 5702 next pump scheduled ⏰ friday 10052019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-05-09 18:10:44+00:00 1.0 1237041098 5509 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-05-04 07:22:13+00:00 1.0 1237041098 5316 as 40 of members stuck in alt coins and didnt participate in pump we will expect next pump will be huge but 8 quick profit within 5 minutes is really good in this bear market also btc started fluctuating few hours ago and all coins went down which also affected pump as req holders selling fast join premium and earn huge ☎️ contact apglobals 2019-04-29 15:23:58+00:00 1.0 1237041098 5307 next post will be coin name 2019-04-29 14:55:31+00:00 1.0 1237041098 5293 next pump scheduled ⏰ monday 29042019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-04-29 09:05:24+00:00 1.0 1237041098 5287 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-04-28 18:49:49+00:00 1.0 1237041098 5284 next pump scheduled ⏰ monday 29042019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2019-04-28 16:31:26+00:00 1.0 1237041098 5281 are you ready for next pump anonymous poll yes – 91 61 no stuck in alt coins – 57 39 148 people voted so far 2019-04-28 12:20:06+00:00 1.0 1237041098 5245 are you ready for next pump anonymous poll no still stuck in alt coins – 85 58 yes – 61 42 146 people voted so far 2019-04-25 15:34:20+00:00 1.0 1237041098 5214 are you ready for next pump anonymous poll no still stuck in alt coins – 85 59 yes – 60 41 145 people voted so far 2019-04-24 18:33:15+00:00 1.0 1237041098 5199 as 40 of members stuck in alt coins and didnt participate in pump we will expect next pump will be huge but 9 quick profit within 5 minutes is really good in this bear market 2019-04-23 15:31:51+00:00 1.0 1237041098 5189 next post will be coin name 2019-04-23 14:57:24+00:00 1.0 1237041098 5186 30 minutes left to pump on binance to know coin name earlier join premium and earn huge ☎ contact apglobals 2019-04-23 14:32:44+00:00 1.0 1237041098 5172 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-04-23 08:59:01+00:00 1.0 1237041098 5144 next pump scheduled ⏰ tuesday 23042019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-22 07:46:13+00:00 1.0 1237041098 5099 we will announce new date for pump soon but premium members are not waiting for pump they are earning daily huge profit join our premium team and you can also recover losses and earn huge ☎️ contact apglobals 2019-04-19 15:30:49+00:00 1.0 1237041098 5094 looks like we need to cancel todays pump as many of the coins already pumped on binance and outsiders are involved in those coins still we are trying hard to find good coin 2019-04-19 13:34:37+00:00 1.0 1237041098 5068 3 hour left to pump on binance 2019-04-19 11:00:15+00:00 1.0 1237041098 5066 next pump scheduled ⏰ friday 19042019 at 200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-19 10:59:51+00:00 1.0 1237041098 5007 next pump scheduled ⏰ friday 19042019 at 200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-18 10:34:00+00:00 1.0 1237041098 4989 next post will be coin name 2019-04-17 16:55:13+00:00 1.0 1237041098 4988 5 minutes left to pump on binance 2019-04-17 16:55:05+00:00 1.0 1237041098 4987 30 minutes left to pump on binance 2019-04-17 16:28:19+00:00 1.0 1237041098 4986 1 hour left to pump on binance 2019-04-17 16:02:07+00:00 1.0 1237041098 4984 next pump schedule ⏰ wednesday 17042019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-17 15:04:36+00:00 1.0 1237041098 4980 4 hour left to pump on binance 2019-04-17 12:58:04+00:00 1.0 1237041098 4975 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-04-17 05:45:54+00:00 1.0 1237041098 4955 next pump schedule ⏰ wednesday 17042019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-15 15:29:06+00:00 1.0 1237041098 4936 next post will be coin name 2019-04-14 18:55:30+00:00 1.0 1237041098 4935 15 minutes left to pump on binance 2019-04-14 18:45:55+00:00 1.0 1237041098 4932 1 hour left to pump on binance 2019-04-14 18:00:35+00:00 1.0 1237041098 4928 2 hour left to pump on binance 2019-04-14 17:09:04+00:00 1.0 1237041098 4904 next pump schedule ⏰ sunday 14042019 at 700pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-13 18:30:37+00:00 1.0 1237041098 4888 next post will be coin name get ready with your btc 2019-04-13 16:57:07+00:00 1.0 1237041098 4887 15 minutes left to pump on binance 2019-04-13 16:47:05+00:00 1.0 1237041098 4886 1 hour left to pump on binance 2019-04-13 16:02:08+00:00 1.0 1237041098 4883 next pump schedule ⏰ saturday 13042019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-13 14:37:38+00:00 1.0 1237041098 4871 3 hour left to pump on binance 2019-04-13 13:54:34+00:00 1.0 1237041098 4870 5 hour 30 minutes left to pump on binance join premium and earn huge ☎️ contact apglobals 2019-04-13 11:30:24+00:00 1.0 1237041098 4799 next pump schedule ⏰ saturday 13042019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-11 06:02:45+00:00 1.0 1237041098 4724 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading ☎️ contact apglobals 2019-04-08 19:19:50+00:00 1.0 1237041098 4715 next post will be coin name 2019-04-08 16:20:57+00:00 1.0 1237041098 4714 10 minutes left to pump on binance 2019-04-08 16:20:20+00:00 1.0 1237041098 4713 30 minutes left to pump on binance 2019-04-08 16:01:39+00:00 1.0 1237041098 4710 2 hour left to pump on binance 2019-04-08 14:30:15+00:00 1.0 1237041098 4687 pump reschedule ⏰ monday 08042019 at 430pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-07 20:38:19+00:00 1.0 1237041098 4647 next pump scheduled ⏰ sunday 07042019 at 900pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-07 04:45:15+00:00 1.0 1237041098 4578 ❗️beware from scammers❗️ guys there are many pump channel which may scam you by saying that they will give you coin name 1 hour or 1 day earlier dont lose your money no legit pump channel will give you coin name so early they give you max 5 minutes earlier happy trading 2019-04-04 14:58:16+00:00 1.0 1237041098 4572 next post will be coin name 2019-04-04 13:22:05+00:00 1.0 1237041098 4571 15 minutes left to pump on binance 2019-04-04 13:16:11+00:00 1.0 1237041098 4563 2 hour left to pump on binance 2019-04-04 11:33:45+00:00 1.0 1237041098 4551 next pump scheduled ⏰ thursday 04042019 at 130pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-04-04 07:47:48+00:00 1.0 1237041098 4348 next post will be coin name 2019-03-29 07:16:15+00:00 1.0 1237041098 4275 although whole market is pumping next breakout signal is scheduled time 2pm gmt call will be shared in premium channel only 1 hour 20 minutes remaining 2019-03-27 12:38:50+00:00 1.0 1237041098 4114 who dont have get ready to take part in pump 2019-03-25 06:22:58+00:00 1.0 1237041098 4109 next pump signal will be announced in 45 minutes only in premium channel ☎️ contact apglobals 2019-03-25 03:14:17+00:00 1.0 1237041098 3974 we will be sharing special signal based on newsfomo in premium channel only date 15th march time 330pm gmt exchange binance 5 hour left to pump 2019-03-15 10:22:07+00:00 1.0 1237041098 3936 btc is unstable we need to postpone todays pump and next date will announce soon 2019-03-14 12:50:16+00:00 1.0 1237041098 3923 next pump scheduled ⏰ thursday 14032019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-14 04:43:53+00:00 1.0 1237041098 3831 next pump scheduled ⏰ thursday 14032019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-11 06:59:01+00:00 1.0 1237041098 3795 to know next pump coin name contact apglobals 2019-03-10 06:05:32+00:00 1.0 1237041098 3791 next pump scheduled ⏰ thursday 14032019 at 300pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-10 04:11:10+00:00 1.0 1237041098 3750 still thinking of joining premium membership every minutes you are missing huge profit dont wait and join now hurry up ‍♂‍♂ few more signals added in premium and next pump will announce soon ☎️ contact apglobals 2019-03-09 04:37:40+00:00 1.0 1237041098 3601 next post will be coin name be ready for huge pump 2019-03-05 16:25:42+00:00 1.0 1237041098 3597 1 hour left to pump on binance 2019-03-05 15:33:56+00:00 1.0 1237041098 3592 5 hour left to pump on binance 2019-03-05 11:35:33+00:00 1.0 1237041098 3573 next pump scheduled ⏰ tuesday 05032019 at 430pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-05 04:26:47+00:00 1.0 1237041098 3554 next pump scheduled ⏰ tuesday 05032019 at 430pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-04 12:26:56+00:00 1.0 1237041098 3503 next post will be coin name 2019-03-02 13:55:14+00:00 1.0 1237041098 3502 5 minutes left to pump on binance 2019-03-02 13:54:48+00:00 1.0 1237041098 3501 15 minutes left to pump on binance 2019-03-02 13:46:13+00:00 1.0 1237041098 3500 30 minutes left to pump on binance 2019-03-02 13:30:29+00:00 1.0 1237041098 3499 1 hour left to pump on binance 2019-03-02 13:00:29+00:00 1.0 1237041098 3498 2 hour left to pump on binance 2019-03-02 12:01:19+00:00 1.0 1237041098 3497 5 hour left to pump on binance 2019-03-02 09:05:35+00:00 1.0 1237041098 3496 next pump scheduled ⏰ saturday 02032019 at 200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-02 09:05:29+00:00 1.0 1237041098 3475 next pump scheduled ⏰ saturday 02032019 at 200pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-03-01 18:45:05+00:00 1.0 1237041098 3435 next pump scheduled ⏰ sunday 03032019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-28 10:57:29+00:00 1.0 1237041098 3366 we share these special signal in vip only these coin will going to pump within 24 hour or very short duration ☎️ contact apglobals 2019-02-26 05:53:54+00:00 1.0 1237041098 3310 next post will be coin name 2019-02-23 16:55:47+00:00 1.0 1237041098 3309 5 minutes left to pump on binance 2019-02-23 16:55:22+00:00 1.0 1237041098 3308 15 minutes left to pump on binance 2019-02-23 16:45:06+00:00 1.0 1237041098 3307 1 hour left to pump on binance 2019-02-23 16:00:11+00:00 1.0 1237041098 3302 next pump scheduled ⏰ saturday 23022019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-23 05:03:46+00:00 1.0 1237041098 3284 next pump scheduled ⏰ saturday 23022019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-20 17:00:11+00:00 1.0 1237041098 3219 next post will be coin name 2019-02-16 17:56:50+00:00 1.0 1237041098 3218 5 minutes left to pump on binance 2019-02-16 17:55:14+00:00 1.0 1237041098 3217 15 minutes left to pump on binance 2019-02-16 17:45:13+00:00 1.0 1237041098 3216 30 minutes left to pump on binance 2019-02-16 17:31:27+00:00 1.0 1237041098 3214 1 hour left to pump on binance to know coin name earlier join premium ☎ contact apglobals 2019-02-16 16:58:41+00:00 1.0 1237041098 3212 4 hour left to pump on binance 2019-02-16 14:03:28+00:00 1.0 1237041098 3186 next pump scheduled ⏰ saturday 16022019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-13 14:19:55+00:00 1.0 1237041098 3162 next post will be coin name 2019-02-10 17:55:23+00:00 1.0 1237041098 3159 30 minutes left to pump on binance 2019-02-10 17:30:12+00:00 1.0 1237041098 3157 1 hour left to pump on binance 2019-02-10 16:59:09+00:00 1.0 1237041098 3149 next pump scheduled ⏰ sunday 10022019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-09 17:29:07+00:00 1.0 1237041098 3101 next post will be coin name 2019-02-04 16:26:57+00:00 1.0 1237041098 3100 5 minutes left to pump on binance 2019-02-04 16:25:30+00:00 1.0 1237041098 3099 15 minutes left to pump on binance 2019-02-04 16:15:47+00:00 1.0 1237041098 3098 30 minutes left to pump on binance 2019-02-04 16:00:12+00:00 1.0 1237041098 3096 1 hour left to pump on binance 2019-02-04 15:34:04+00:00 1.0 1237041098 3085 next pump scheduled ⏰ monday 04022019 at 430pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-02-03 07:56:32+00:00 1.0 1237041098 3072 next post will be coin name 2019-02-02 17:56:51+00:00 1.0 1237041098 3071 5 minutes left to pump on binance 2019-02-02 17:55:03+00:00 1.0 1237041098 3070 15 minutes left to pump on binance 2019-02-02 17:45:20+00:00 1.0 1237041098 3069 30 minutes left to pump on binance 2019-02-02 17:30:55+00:00 1.0 1237041098 3067 1 hour left to pump on binance 2019-02-02 17:01:24+00:00 1.0 1237041098 3066 2 hour left to pump on binance 2019-02-02 16:05:49+00:00 1.0 1237041098 3049 next pump scheduled ⏰ saturday 02022019 at 6pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-01-30 05:49:11+00:00 1.0 1237041098 3029 next post will be coin name be ready with your btc 2019-01-27 17:55:48+00:00 1.0 1237041098 3028 5 minutes left to pump on binance 2019-01-27 17:55:06+00:00 1.0 1237041098 3027 15 minutes left to pump on binance 2019-01-27 17:45:13+00:00 1.0 1237041098 3026 30 minutes left to pump on binance 2019-01-27 17:30:06+00:00 1.0 1237041098 3025 1 hour left to pump on binance 2019-01-27 16:58:11+00:00 1.0 1237041098 3023 2 hour left to pump on binance 2019-01-27 16:03:26+00:00 1.0 1237041098 3021 4 hour left to pump on binance 2019-01-27 14:00:55+00:00 1.0 1237041098 3011 next pump scheduled ⏰ sunday 27012019 at 6pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-01-26 10:21:18+00:00 1.0 1237041098 2995 next post will be coin name 2019-01-25 17:55:19+00:00 1.0 1237041098 2994 5 minutes left to pump on binance 2019-01-25 17:55:03+00:00 1.0 1237041098 2993 10 minutes left to pump on binance 2019-01-25 17:50:04+00:00 1.0 1237041098 2992 30 minutes left to pump on binance 2019-01-25 17:30:46+00:00 1.0 1237041098 2974 next pump scheduled ⏰ friday 25012019 at 6pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now 2019-01-23 07:57:31+00:00 1.0 1237041098 2948 we will wait till 12 pm gmt if maintenance will still going on we need to postpone todays pump 2019-01-15 04:33:33+00:00 1.0 1237041098 2937 next pump scheduled ⏰ tuesday 15012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-13 11:42:09+00:00 1.0 1237041098 2915 next post will be coin name 2019-01-11 14:55:44+00:00 1.0 1237041098 2898 next pump scheduled ⏰ friday 11012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-10 02:34:55+00:00 1.0 1237041098 2876 next post will be coin name 2019-01-08 14:56:33+00:00 1.0 1237041098 2860 next pump scheduled ⏰ tuesday 08012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-07 05:10:26+00:00 1.0 1237041098 2838 next post will be coin name 2019-01-04 14:55:53+00:00 1.0 1237041098 2821 next pump scheduled ⏰ friday 04012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2019-01-03 03:08:58+00:00 1.0 1237041098 2800 next post will be coin name 2019-01-01 14:57:39+00:00 1.0 1237041098 2782 next pump scheduled ⏰ tuesday 01012019 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-31 02:33:29+00:00 1.0 1237041098 2754 next post will be coin name 2018-12-28 14:56:00+00:00 1.0 1237041098 2734 next pump scheduled ⏰ friday 28122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-27 02:42:21+00:00 1.0 1237041098 2717 next post will be coin name 2018-12-25 14:57:50+00:00 1.0 1237041098 2696 next pump scheduled ⏰ tuesday 25122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-24 05:08:02+00:00 1.0 1237041098 2673 next post will be coin name 2018-12-21 14:56:10+00:00 1.0 1237041098 2649 next pump scheduled ⏰ friday 21122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-19 17:40:36+00:00 1.0 1237041098 2625 next post will be coin name 2018-12-18 14:56:46+00:00 1.0 1237041098 2609 next pump scheduled ⏰ tuesday 18122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-17 05:17:05+00:00 1.0 1237041098 2587 next post will be coin name 2018-12-15 14:56:46+00:00 1.0 1237041098 2571 next pump scheduled ⏰ saturday 15122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-13 16:22:46+00:00 1.0 1237041098 2553 next post will be coin name 2018-12-12 14:56:26+00:00 1.0 1237041098 2537 next pump scheduled ⏰ wednesday 12122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-10 20:07:34+00:00 1.0 1237041098 2511 8 hour left to pump on cryptopia to know coin name earlier ☎contact apglobals for premium membership 2018-12-08 07:00:54+00:00 1.0 1237041098 2506 next pump scheduled ⏰ saturday 08122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-06 15:49:27+00:00 1.0 1237041098 2486 next post will be coin name 2018-12-04 14:56:10+00:00 1.0 1237041098 2479 we have selected great coin expecting 500 profit in todays pump if not pumped before our pump time to know coin name earlier join premium ☎contact apglobals 2018-12-04 13:38:53+00:00 1.0 1237041098 2470 next pump scheduled ⏰ tuesday 04122018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-12-02 16:18:40+00:00 1.0 1237041098 2446 next post will be coin name 2018-11-30 14:56:45+00:00 1.0 1237041098 2430 next pump scheduled ⏰ friday 30112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-29 16:36:17+00:00 1.0 1237041098 2410 next post will be coin name 2018-11-27 14:57:01+00:00 1.0 1237041098 2394 next pump scheduled ⏰ tuesday 27112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-26 05:28:59+00:00 1.0 1237041098 2371 next post will be coin name 2018-11-24 14:56:53+00:00 1.0 1237041098 2356 next pump scheduled ⏰ saturday 24112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-23 06:46:19+00:00 1.0 1237041098 2336 next post will be coin name 2018-11-20 14:57:03+00:00 1.0 1237041098 2318 next pump scheduled ⏰ tuesday 20112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-19 11:15:03+00:00 1.0 1237041098 2287 next post will be coin name 2018-11-13 14:57:27+00:00 1.0 1237041098 2271 next pump scheduled ⏰ tuesday 13112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-11 16:48:28+00:00 1.0 1237041098 2254 next post will be coin name 2018-11-10 14:56:19+00:00 1.0 1237041098 2238 next pump scheduled ⏰ saturday 10112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-08 16:17:51+00:00 1.0 1237041098 2220 next post will be coin name 2018-11-06 14:57:41+00:00 1.0 1237041098 2204 next pump scheduled ⏰ tuesday 06112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-05 04:03:57+00:00 1.0 1237041098 2185 next post will be coin name 2018-11-03 14:56:31+00:00 1.0 1237041098 2168 next pump scheduled ⏰ saturday 03112018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-11-02 03:14:33+00:00 1.0 1237041098 2144 next post will be coin name 2018-10-30 14:56:32+00:00 1.0 1237041098 2127 next pump scheduled ⏰ tuesday 30102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-29 06:06:02+00:00 1.0 1237041098 2109 next post will be coin name 2018-10-27 14:57:02+00:00 1.0 1237041098 2092 next pump scheduled ⏰ saturday 27102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-26 05:06:10+00:00 1.0 1237041098 2067 next post will be coin name 2018-10-23 14:56:46+00:00 1.0 1237041098 2046 next pump scheduled ⏰ tuesday 23102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-22 06:57:40+00:00 1.0 1237041098 2021 next post will be coin name 2018-10-20 14:56:49+00:00 1.0 1237041098 2003 next pump scheduled ⏰ saturday 20102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-19 06:31:46+00:00 1.0 1237041098 1976 next post will be coin name 2018-10-16 14:58:04+00:00 1.0 1237041098 1958 next pump scheduled ⏰ tuesday 16102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-15 05:21:12+00:00 1.0 1237041098 1928 next post will be coin name 2018-10-10 14:56:37+00:00 1.0 1237041098 1910 next pump scheduled ⏰ wednesday 10102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-09 05:56:16+00:00 1.0 1237041098 1891 next post will be coin name 2018-10-07 14:57:27+00:00 1.0 1237041098 1873 next pump scheduled ⏰ sunday 07102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-05 18:40:43+00:00 1.0 1237041098 1850 next post will be coin name 2018-10-03 14:56:07+00:00 1.0 1237041098 1849 buy hold and sell in parts troll on chat box about coin name 2018-10-03 14:55:34+00:00 1.0 1237041098 1831 next pump scheduled ⏰ wednesd 03102018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-10-02 12:02:51+00:00 1.0 1237041098 1812 next post will be coin name 2018-09-30 14:56:40+00:00 1.0 1237041098 1796 next pump scheduled ⏰ sunday 30092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-29 13:45:23+00:00 1.0 1237041098 1773 next post will be coin name 2018-09-27 14:56:46+00:00 1.0 1237041098 1758 24 hour left to pump on cryptopia be ready with your btc 2018-09-26 15:00:14+00:00 1.0 1237041098 1755 next pump scheduled ⏰ thursday 27092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-26 05:02:43+00:00 1.0 1237041098 1731 next post will be coin name 2018-09-24 14:56:20+00:00 1.0 1237041098 1712 next pump scheduled ⏰ monday 24092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now 2018-09-23 05:07:30+00:00 1.0 1237041098 1693 next post will be coin name 2018-09-20 14:58:27+00:00 1.0 1237041098 1673 next pump scheduled ⏰ thursday 20092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-18 15:13:44+00:00 1.0 1237041098 1655 next post will be coin name 2018-09-17 14:57:03+00:00 1.0 1237041098 1640 24 hour left to pump on cryptopia be ready with your btc 2018-09-16 15:00:02+00:00 1.0 1237041098 1636 next pump scheduled ⏰ monday 17092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-15 16:35:16+00:00 1.0 1237041098 1615 next post will be coin name 2018-09-13 14:57:53+00:00 1.0 1237041098 1596 next pump scheduled ⏰ thursday 13092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-12 05:30:25+00:00 1.0 1237041098 1575 next post will be coin name 2018-09-10 14:57:31+00:00 1.0 1237041098 1559 next pump scheduled ⏰ monday 10092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-08 14:21:54+00:00 1.0 1237041098 1538 next post will be coin name 2018-09-06 14:57:00+00:00 1.0 1237041098 1520 next pump scheduled ⏰ thursday 06092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-05 05:16:21+00:00 1.0 1237041098 1500 next post will be coin name 2018-09-03 14:56:30+00:00 1.0 1237041098 1475 next pump scheduled ⏰ monday 03092018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-09-01 15:00:17+00:00 1.0 1237041098 1459 next post will be coin name 2018-08-30 14:56:20+00:00 1.0 1237041098 1443 next pump scheduled ⏰ thursday 30082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-29 04:57:05+00:00 1.0 1237041098 1425 get ready next post will be coin name 2018-08-27 14:56:54+00:00 1.0 1237041098 1407 next pump scheduled ⏰ monday 27082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-26 04:53:37+00:00 1.0 1237041098 1388 next post will be coin name 2018-08-23 14:57:36+00:00 1.0 1237041098 1369 next pump scheduled ⏰ thursday 23082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-22 05:23:06+00:00 1.0 1237041098 1351 next post will be coin name be ready to bang bang 2018-08-20 14:56:58+00:00 1.0 1237041098 1332 next pump scheduled ⏰ monday 20082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-18 15:12:30+00:00 1.0 1237041098 1312 next post will be coin name 2018-08-16 14:58:14+00:00 1.0 1237041098 1296 next pump scheduled ⏰ thursday 16082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-15 03:44:17+00:00 1.0 1237041098 1254 next pump scheduled ⏰ monday 13082018 at 3pm gmt exchange cryptopia this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-12 06:11:49+00:00 1.0 1237041098 1236 next post will be coin name 2018-08-10 14:56:07+00:00 1.0 1237041098 1216 next pump scheduled ⏰ friday 10082018 at 3pm gmt exchange cryptopia other pump group is also participating so this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-09 05:00:21+00:00 1.0 1237041098 1173 next pump scheduled ⏰ tuesday 07082018 at 3pm gmt exchange cryptopia other pump group is also participating so this pump is going to be huge dont miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-06 06:06:35+00:00 1.0 1237041098 1156 next post will be coin name be ready to ride on moon 2018-08-04 14:55:16+00:00 1.0 1237041098 1140 important this time we have collaborated with some other pump group also so this pump is going to be huge dont miss the opportunity to grab huge profit contact apglobals for premium membership and book your huge profit in few minutes in this red market 2018-08-03 12:00:47+00:00 1.0 1237041098 1138 next pump scheduled ⏰ saturday 04082018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-08-03 03:23:18+00:00 1.0 1237041098 1113 be ready next post will be coin name 2018-07-31 14:56:09+00:00 1.0 1237041098 1096 next pump scheduled ⏰ tuesday 31072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-30 06:54:22+00:00 1.0 1237041098 1065 next pump scheduled ⏰ saturday 28072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-27 06:39:41+00:00 1.0 1237041098 1061 pump result beez start price 27 sat weve reached 49 sat ✅ 82 profit ✅ price went up twice huge profit amazing pump in red market next pump will be announced soon contact apglobals for premium membership 2018-07-25 17:29:34+00:00 1.0 1237041098 1036 be ready to double your btc next post will be coin name 2018-07-25 14:57:14+00:00 1.0 1237041098 1016 next pump scheduled ⏰ wednesday 25072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon contact apglobals for premium membership 2018-07-23 11:24:49+00:00 1.0 1237041098 1002 be ready to double your btc next post will be coin name 2018-07-21 14:55:47+00:00 1.0 1237041098 986 next pump scheduled ⏰ saturday 21072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon contact apglobals for premium membership 2018-07-20 05:24:51+00:00 1.0 1237041098 969 be ready hold your seat to ride to moon next post will be coin name 2018-07-18 14:56:03+00:00 1.0 1237041098 953 next pump scheduled ⏰ wednesday 18072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-17 05:36:21+00:00 1.0 1237041098 942 coin price 100 up even after 15 minutes 2018-07-15 15:14:45+00:00 1.0 1237041098 932 next post will be coin name 2018-07-15 14:56:20+00:00 1.0 1237041098 916 next pump scheduled ⏰ sunday 15072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-14 15:21:32+00:00 1.0 1237041098 897 get ready next post will be coin name 2018-07-12 14:55:42+00:00 1.0 1237041098 883 next pump scheduled ⏰ thursday 12072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-11 05:10:14+00:00 1.0 1237041098 864 next post will be coin name be ready 2018-07-09 14:56:16+00:00 1.0 1237041098 849 next pump scheduled ⏰ monday 09072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-07-07 04:09:25+00:00 1.0 1237041098 835 next post will be coin name 2018-07-04 14:55:51+00:00 1.0 1237041098 818 next pump scheduled ⏰ wednesday 04072018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it ✅ market is green if you dont have account on cryptopia create now and transfer your btc soon 2018-07-03 10:04:06+00:00 1.0 1237041098 797 next post will be coin name 2018-06-30 14:55:33+00:00 1.0 1237041098 780 next pump scheduled ⏰ saturday 30062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-29 05:05:03+00:00 1.0 1237041098 762 next post will be coin name 2018-06-26 14:55:39+00:00 1.0 1237041098 744 next pump scheduled ⏰ tuesday 26062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-25 07:23:08+00:00 1.0 1237041098 731 next post will be coin name 2018-06-23 14:57:16+00:00 1.0 1237041098 708 next pump scheduled ⏰ saturday 23062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-22 07:38:40+00:00 1.0 1237041098 692 next post will be coin name 2018-06-20 14:56:01+00:00 1.0 1237041098 678 next pump scheduled ⏰ wednesday 20062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-19 10:28:03+00:00 1.0 1237041098 676 announcement guys btc looks bullish we have postpone todays pump and scheduled tomorrow at same time hoping more members will participate in pump as many are stuck with their btc in some or other coins 2018-06-19 06:25:36+00:00 1.0 1237041098 654 next post will be coin name 2018-06-15 14:55:21+00:00 1.0 1237041098 637 next pump scheduled ⏰ friday 15062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-13 11:47:48+00:00 1.0 1237041098 619 next post will be coin name 2018-06-12 14:56:11+00:00 1.0 1237041098 605 loosing your btc in market crash double your btc within few minutes with no risk check pump results and then decide for premium membership 2018-06-11 17:42:27+00:00 1.0 1237041098 603 next pump scheduled ⏰ tuesday 12062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-11 17:36:19+00:00 1.0 1237041098 593 double your btc within few minutes with no risk check pump results and then decide for premium membership 2018-06-09 16:22:38+00:00 1.0 1237041098 582 next post will be coin name 2018-06-09 14:55:29+00:00 1.0 1237041098 568 next pump scheduled ⏰ saturday 09062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-08 05:22:38+00:00 1.0 1237041098 553 5 minutes left to pump next post will be coin name 2018-06-05 14:55:46+00:00 1.0 1237041098 540 next pump scheduled ⏰ tuesday 05062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-06-04 11:42:27+00:00 1.0 1237041098 534 double your btc within few minutes with no risk check pump results and then decide for premium membership 2018-06-01 17:31:48+00:00 1.0 1237041098 520 next post will be coin name 2018-06-01 14:56:33+00:00 1.0 1237041098 506 next pump scheduled ⏰ friday 01062018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-31 11:55:08+00:00 1.0 1237041098 493 next post will be coin name let make it more bigger dont sell in panic just hold and take huge profit 2018-05-29 14:56:00+00:00 1.0 1237041098 477 next pump scheduled ⏰ tuesday 29052018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-27 12:24:16+00:00 1.0 1237041098 466 2 minutes left to pump next post will be coin name 2018-05-25 14:58:45+00:00 1.0 1237041098 455 next pump scheduled ⏰ friday 25052018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-24 17:54:08+00:00 1.0 1237041098 394 next pump scheduled ⏰ friday 18052018 at 5pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-17 14:56:16+00:00 1.0 1237041098 364 5 minutes left to pump next post will be coin name 2018-05-16 14:55:44+00:00 1.0 1237041098 352 less than 20 hours left to pump be ready with your btc on cryptopia 2018-05-15 19:17:13+00:00 1.0 1237041098 348 next pump scheduled ⏰ wednesday 16052018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-14 12:33:28+00:00 1.0 1237041098 328 5 minutes left to pump next post will be coin name 2018-05-12 14:55:50+00:00 1.0 1237041098 305 next pump scheduled ⏰ saturday 12052018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-10 05:52:35+00:00 1.0 1237041098 275 next post will be coin name 2018-05-09 14:57:12+00:00 1.0 1237041098 258 next pump scheduled ⏰ wednesday 09052018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-07 11:46:50+00:00 1.0 1237041098 235 next post will be coin name 2018-05-05 14:57:26+00:00 1.0 1237041098 220 next pump scheduled ⏰ saturday 05052018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-04 11:39:27+00:00 1.0 1237041098 196 2 mins left next post will be coin name 2018-05-02 14:58:06+00:00 1.0 1237041098 176 next pump scheduled ⏰ saturday 02052018 at 3pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-05-01 15:25:12+00:00 1.0 1237041098 147 next post will be coin name 2018-04-28 16:58:38+00:00 1.0 1237041098 135 our pump is scheduled ⏰ saturday 28042018 at 5pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-04-28 02:08:16+00:00 1.0 1237041098 126 our pump is scheduled ⏰ saturday 28042018 at 5pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-04-25 05:22:53+00:00 1.0 1237041098 96 we are scheduling next pump today our pump is scheduled ⏰ friday 21042018 at 4pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-04-21 03:43:19+00:00 1.0 1237041098 60 our pump is scheduled ⏰ friday 20042018 at 5pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-04-19 12:54:29+00:00 1.0 1237041098 48 edc coin pump result start price 22 sat weve reached 47 sat 113 great cryptopia pump good job everyone congrats to those who joined us and made profits thank you we are happy for you next pump will be announced soon 2018-04-14 17:50:50+00:00 1.0 1237041098 33 5 min left we will announce coin name and direct link to that coin trading page next post will be coin name 2018-04-14 16:55:36+00:00 1.0 1237041098 30 pump rules buy in as quickly as possbile dont sell straight away you can set your sellorder after a minute set it above the marketprice this way the coin wont dump then everyone has to promote the coin in the chatbox if available and social media we all are going to sell the coins to the outside investors and not to ourselves sell pieces of your coins with different marketprices to prevent big sell walls even if the coin dumps dont panic sell we will always make sure that the true holders gonna profit there is always a chance that a different pump group or even our group might pump the same coin again 2018-04-14 16:44:33+00:00 1.0 1237041098 25 our pump is scheduled ⏰ saturday 14042018 at 5pm gmt exchange cryptopia this one will be huge you dont want to miss it if you dont have account on cryptopia create now and transfer your btc soon 2018-04-13 18:19:11+00:00 1.0 1237041098 17 be ready for pump this weekend we will finalize exchange soon according to the market before 24 hour of pump till then create your account on following exchanges hitbtc cryptopia yobit 2018-04-12 05:38:03+00:00 1.0 1237041098 5 pump rules buy in as quickly as possbile dont sell straight away you can set your sellorder after a minute set it above the marketprice this way the coin wont dump then everyone has to promote the coin in the chatbox if available and social media we all are going to sell the coins to the outside investors and not to ourselves sell pieces of your coins with different marketprices to prevent big sell walls even if the coin dumps dont panic sell we will always make sure that the true holders gonna profit there is always a chance that a different pump group or even our group might pump the same coin again 2018-02-19 13:07:50+00:00 1.0 1341737830 333 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-05-04 18:55:08+00:00 1.0 1341737830 332 everyone 10 minutes left login binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast sell at maximum profit 2020-05-04 18:51:06+00:00 1.0 1341737830 330 everyone 30 minutes to go we are very hyped for this pump things are looking better than they have in forever we hope you make all the profits you desire remember to help promote the coin during the pump so it can keep rising and rising 2020-05-04 18:30:42+00:00 1.0 1341737830 329 1 hour left for the binance pump we have added 2 more large telegrams to repost our coin and news at pump time this will make our pump even bigger they are eager to get in on the action since the markets are so perfect right now make sure you buy in quickly for the lowest price pay attention to the expected gain range so you know a safe place to sell enjoy your profits 2020-05-04 18:05:27+00:00 1.0 1341737830 328 i was wrong the pump hours start in an hour and 17 minutes 2020-05-04 17:43:12+00:00 1.0 1341737830 326 47 minutes left until the pump with altcoins bottomed out because of bitcoins recent actions the markets are looking amazing for our pump the coins we pump are near recent lows and can skyrocket easily this pump can be incredible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-05-04 17:13:34+00:00 1.0 1341737830 325 everyone binance pump announcement next pump monday 4 may 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin has risen and alts have bottomed out this is the perfect time to pump we can and will do amazing things in this pump 2020-05-04 17:13:05+00:00 1.0 1341737830 226 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:08+00:00 1.0 1341737830 148 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:08+00:00 1.0 1341737830 146 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:08+00:00 1.0 1341737830 145 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:09+00:00 1.0 1341737830 144 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:08+00:00 1.0 1341737830 143 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:07+00:00 1.0 1341737830 142 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:08+00:00 1.0 1341737830 140 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:08+00:00 1.0 1341737830 138 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:12+00:00 1.0 1341737830 136 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:09+00:00 1.0 1341737830 134 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:08+00:00 1.0 1341737830 133 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:08+00:00 1.0 1341737830 131 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:07+00:00 1.0 1341737830 130 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:08+00:00 1.0 1341737830 129 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:07+00:00 1.0 1341737830 128 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:07+00:00 1.0 1341737830 119 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:09+00:00 1.0 1341737830 115 ae 30 minutes left 2020-04-09 13:36:57+00:00 1.0 1341737830 99 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:44+00:00 1.0 1341737830 86 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:50+00:00 1.0 1341737830 81 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:47+00:00 1.0 1341737830 76 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:08+00:00 1.0 1341737830 74 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:07+00:00 1.0 1341737830 72 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:06+00:00 1.0 1341737830 71 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:15+00:00 1.0 1341737830 70 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 14:00:30+00:00 1.0 1341737830 66 huge pump announcement next pump 22 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-06 20:10:04+00:00 1.0 1341737830 64 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:08+00:00 1.0 1341737830 62 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:06+00:00 1.0 1341737830 60 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:06+00:00 1.0 1341737830 59 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:06+00:00 1.0 1341737830 58 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:08+00:00 1.0 1341737830 57 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:06+00:00 1.0 1341737830 56 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:06+00:00 1.0 1341737830 55 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:07+00:00 1.0 1341737830 53 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:07+00:00 1.0 1341737830 52 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:06+00:00 1.0 1341737830 51 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:07+00:00 1.0 1341737830 50 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:07+00:00 1.0 1341737830 49 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:06+00:00 1.0 1341737830 48 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:05+00:00 1.0 1341737830 45 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:04+00:00 1.0 1341737830 43 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:05+00:00 1.0 1341737830 41 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:53+00:00 1.0 1341737830 39 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:04+00:00 1.0 1341737830 36 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:55:00+00:00 1.0 1341737830 33 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:04+00:00 1.0 1341737830 31 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:05+00:00 1.0 1341737830 29 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:04+00:00 1.0 1341737830 28 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:05+00:00 1.0 1341737830 27 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:19+00:00 1.0 1341737830 26 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:11+00:00 1.0 1341737830 24 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:10+00:00 1.0 1341737830 20 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:04+00:00 1.0 1341737830 18 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:05+00:00 1.0 1341737830 17 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:04+00:00 1.0 1341737830 15 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:05+00:00 1.0 1341737830 14 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:04+00:00 1.0 1341737830 13 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:06+00:00 1.0 1341737830 12 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:07+00:00 1.0 1341737830 11 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:06+00:00 1.0 1341737830 10 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:05+00:00 1.0 1341737830 9 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:01:25+00:00 1.0 1341737830 8 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 19:13:48+00:00 1.0 1341737830 6 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 19:13:48+00:00 1.0 1341737830 5 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-30 19:13:48+00:00 1.0 1276304238 1083 did you see like this hint in other channels doge pump signal before elon musk tweet 2021-05-14 11:32:08+00:00 1.0 1276304238 665 iotx tomorrow big news huge volume flowing into i̇otx on the breakout pump upcoming cryptocurrencycoinsignals 2021-02-27 21:01:10+00:00 1.0 1276304238 613 whalescrypto buying qlc here btc we have detected heavy buys recently volume growing up slowly we can get a bag here and hold for 21 hours 3 minutes big pump likely to be happen very soon targets 141170244340+ 11165 within 21 hours stoploss none cryptocurrencycoinsignals 2021-02-20 21:08:46+00:00 1.0 1158196698 2314 البامب القادم التاريخ 10 7 2021 الوقت 0400gmt مساءًا المنصة hotbitcom العملة مقابل usdt next pump date 10 7 2021 time 0400gmt pm platform hotbitcom pair usdt 2021-07-10 14:39:48+00:00 1.0 1158196698 2024 البمب القادم التاريخ 27 6 2021 الوقت 0200 gmt مساءًا المنصة hotbit العملة مقابل usdt next pump date 27 6 2021 time 0200 gmt pm platform hotbit pair usdt 2021-06-26 21:58:59+00:00 1.0 1158196698 1928 البامب القادم التاريخ 25 6 2021 الوقت 1800gmt مساءًا المنصة bitmartcom العملة مقابل usdt next pump date 25 6 2021 time 1800gmt pm platform bitmartcom pair usdt 2021-06-23 20:10:55+00:00 1.0 1158196698 1879 البامب القادم التاريخ 23 6 2021 الوقت 1800gmt مساءًا المنصة bitmartcom العملة مقابل usdt next pump date 23 6 2021 time 1800gmt pm platform bitmartcom pair usdt 2021-06-22 20:38:05+00:00 1.0 1158196698 1866 the pump date is coming date 22 6 2021 time 0400 gmt pm opposite usdt platform hotbit موعد الاعلان عن اسم العملة التاريخ 22 6 2021 الوقت 0400 gmt pm مقابل usdt المنصة hotbit 2021-06-22 14:19:07+00:00 1.0 1158196698 1781 the pump date is coming date 20 6 2021 time 0300 gmt pm opposite usdt platform hotbit موعد الاعلان عن اسم العملة التاريخ 20 6 2021 الوقت 0300 gmt pm مقابل usdt المنصة hotbit 2021-06-19 18:11:00+00:00 1.0 1158196698 1769 the pump date is coming date 19 6 2021 time 0300 gmt pm opposite usdt platform hotbit موعد الاعلان عن اسم العملة التاريخ 19 6 2021 الوقت 0300 gmt pm مقابل usdt المنصة hotbit 2021-06-19 12:46:22+00:00 1.0 1158196698 1713 the pump date is coming date 18 6 2021 time 0800 gmt pm opposite usdt platform hotbit موعد الاعلان عن اسم العملة التاريخ 18 6 2021 الوقت 0800 gmt pm مقابل usdt المنصة hotbit 2021-06-18 12:11:04+00:00 1.0 1158196698 1701 1 hour left on the pump البمب بعد ساعة علي منصة hotbit 2021-06-18 11:06:16+00:00 1.0 1158196698 1654 the pump date is coming date 17 6 2021 time 2000 gmt pm opposite usdt platform hotbit موعد الاعلان عن اسم العملة التاريخ 17 6 2021 الوقت 2000 gmt pm مقابل usdt المنصة hotbit 2021-06-17 12:43:17+00:00 1.0 1420299757 109 its time to buy bitshiba again very big news is coming soon by the way we are aware that all of our members are waiting patiently for our next big pump we will be scheduling our next pump very soon possibly this upcoming week stay tuned for our official announcement buy bitshiba contract address 0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7 buy on pancakeswap click here live chart click here telegram tmebitshibatoken 2021-11-18 15:00:06+00:00 1.0 1420299757 89 only 15 minutes left in order for this signal to be successful and for everyone to make a profit please do the following once the coin has been announced 1 buy the coin using your bitcoins btc pair only 2 promote the coin to all available social media reddit telegram discord twitter facebook instagram 3 only sell in parts do not dump 4 enjoy the profits 2021-08-29 16:45:06+00:00 1.0 1420299757 78 crypto signal announcement hello everyone our next signal will be scheduled for date sunday august 29 time 1700 pm gmt exchange binancecom advantage freeforall the crypto world has evolved and we need to update ourselves we have around 50 days to prepare this signal and were aiming for the 1000 target of profit for all our members we will improve a lot of things and especially make a big promotion over all the social media to bring the whole crypto community into our group dont miss this chance because it will change your whole life in just few minutes all together stronger 2021-07-13 12:00:10+00:00 1.0 1420299757 69 important info in 15 hours it will be time the next big dubaipump is coming soon there will be many traders buying in large quantities so make sure you buy early before the outsiders buy in we are pumping a btc paring today so please make sure you have enough btc in your account on binancecom coinnamebtc not binanceus our whales will buy during the pump and support so you will have the opportunity to make profit more often during the pump be ready we will start on time dubaipump 2021-06-06 15:30:02+00:00 1.0 1420299757 56 dubai team pump announcement hello everyone our next pump will be scheduled for date sunday june 6 time 1700 pm gmt exchange binancecom advantage freeforall dear members its finally time again we have been working for a long time on a new and even more profitable strategy taking into calculation the power and volume of our first pump we are sure that this pump will now set new standards the volume will increase 23x and we expect a result of + 500 make sure that you also profit of it we give you in the course of the next few days still precise instructions on how to make the most profits stay tuned 2021-05-26 09:00:06+00:00 1.0 1420299757 48 next post coin name 1 minute left 2021-05-01 16:59:01+00:00 1.0 1420299757 43 in order for this pump to be successful and for everyone to make a profit please do the following once the coin has been announced 1 buy the coin using your bitcoins btc pair only 2 promote the coin to all available social media reddit telegram discord twitter facebook instagram 3 wait for the high of second wave before start selling 4 only sell in parts do not dump 5 enjoy the profits 2021-05-01 16:10:03+00:00 1.0 1420299757 35 only 2 days left in two days youll see a pump which is not usual in our business with the dubai pump group we have the best support from middle east with our big whales we are sure that we will change something in this business please make sure you are a part of it 2021-04-29 17:00:06+00:00 1.0 1420299757 30 dubai team pump announcement hello everyone our first pump will be scheduled for date saturday may 1 time 1700 pm gmt exchange binancecom advantage freeforall 2021-04-22 14:00:10+00:00 1.0 1420299757 25 dear members since our group is still at the beginning and we want to be absolutely sure that profits will be made we decided not to take part in the last pump after a long discussion with the whole team we fear that the coin has already been leaked because the price has increased too much it is very important to us that all members generate profits well be posting our next pump date soon stay tuned 2021-04-21 08:00:06+00:00 1.0 1420299757 23 4 hours left things to not forget 1 after buying do not sell 100 at once slowly sell 25 at a time which causes the market not to instantly drop 2 we will set buy walls when the price is going up be sure to set some lower buy walls to create waves example starting price 100 price 30 seconds after pump 200 set buy wall at 150 3 the pump team will look for a coin with good technical analysis so more outsiders will buy into the coin furthermore we will be sharing positive news about the coin on social media to create an even bigger amount of fomo fear of missing out 2021-04-11 13:00:06+00:00 1.0 1420299757 8 dubai team pump announcement hello everyone our first pump will be scheduled for date sunday april 11 time 1700 pm gmt exchange binancecom advantage freeforall 2021-03-28 00:47:21+00:00 1.0 1236764008 12999 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2022-01-18 17:22:10+00:00 1.0 1236764008 12806 pump result glmr start price 20267 weve reached 32498 all targets achieved in just 30 hour ✅✅✅✅ huge quick profit 60 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2022-01-13 14:53:48+00:00 1.0 1236764008 12754 iris result hit 267 2nd target achieved in just 25 hour✅✅ huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2022-01-12 05:47:15+00:00 1.0 1236764008 12713 santos hit 10292 finally all targets achieved in just 2 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2022-01-11 10:29:42+00:00 1.0 1236764008 12711 pump result santos start price 7159 weve reached 9500 3rd target achieved in just 51 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2022-01-11 09:03:43+00:00 1.0 1236764008 12646 pump result phb start price 882 weve reached 1155 3rd target achieved in just 30 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2022-01-09 08:59:36+00:00 1.0 1236764008 12639 pump result powr start price 1160 weve reached 1797 all targets achieved in just 20 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2022-01-09 06:54:01+00:00 1.0 1236764008 12571 pump result iris start price 206 weve reached 348 all targets achieved in just 55 hour ✅✅✅✅ huge quick profit 68 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2022-01-07 17:39:13+00:00 1.0 1236764008 12495 alcx result hit 9616 2nd target achieved in just 8 hour✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2022-01-06 06:42:44+00:00 1.0 1236764008 12395 pump result gxs start price 4283 weve reached 5694 3rd targets achieved in just 30 minutes ✅✅✅ huge quick profit 32 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2022-01-03 10:30:12+00:00 1.0 1236764008 12335 pump result nebl start price 2634 weve reached 4058 huge quick profit 53 in just 75 hour to know next pump coin name contact traderwilliams100 for premium membership 2022-01-02 17:19:12+00:00 1.0 1236764008 12315 ardr result hit 820 3rd target achieved in just 16 minutes ✅✅✅ huge quick profit 33 amazing pump calls by our team to know next pump signal ☎️ contact traderwilliams100 for premium membership 2022-01-02 15:04:45+00:00 1.0 1236764008 12222 fxs result hit 90972 3rd target achieved in just 27 hour✅✅✅ huge quick profit 48 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-12-31 16:41:09+00:00 1.0 1236764008 12162 pump result gxs start price 4068 weve reached 5664 all targets achieved in just 31 minutes ✅✅✅✅ huge quick profit 39 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-29 12:56:34+00:00 1.0 1236764008 12140 pump result farm start price 1999 weve reached 5800 huge quick profit 190 in just 20 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-12-28 16:49:18+00:00 1.0 1236764008 12135 pump result quick start price 5420 weve reached 11562 huge quick profit 106 in just 28 minutes to know next pump coin name contact traderwilliams100 for premium membership 2021-12-28 16:15:45+00:00 1.0 1236764008 12122 pump result hard start price 1704 weve reached 2718 all targets achieved in just 19 minutes ✅✅✅✅ huge quick profit 59 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-28 06:57:03+00:00 1.0 1236764008 12089 pump result utk start price 680 weve reached 979 all targets achieved in just 28 minutes ✅✅✅✅ huge quick profit 131 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-27 17:30:47+00:00 1.0 1236764008 12037 pump result lina start price 83 weve reached 111 all targets achieved in just 6 hour ✅✅✅✅ huge quick profit 101 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-26 11:27:55+00:00 1.0 1236764008 12002 pump result pha start price 825 weve reached 1290 all targets achieved in just 20 minutes ✅✅✅✅ huge quick profit 56 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-25 19:06:25+00:00 1.0 1236764008 11990 pump result flux start price 3404 weve reached 5828 all targets achieved in just 23 hour ✅✅✅✅ huge quick profit 71 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-25 17:25:06+00:00 1.0 1236764008 11964 mdt result hit 282 3rd target achieved in just 17 hour✅✅✅ huge quick profit 41 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-25 04:41:03+00:00 1.0 1236764008 11954 pump result appc start price 73 weve reached 105 3rd targets achieved in just 1 hour ✅✅✅ huge quick profit 43 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-24 17:34:02+00:00 1.0 1236764008 11947 pump result rdn start price 435 weve reached 816 huge quick profit 87 in just 6 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-12-24 17:07:21+00:00 1.0 1236764008 11942 pump result evx start price 383 weve reached 540 huge quick profit 40 in just 7 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-12-24 16:56:42+00:00 1.0 1236764008 11899 om result hit 431 3rd target achieved in just 14 minutes ✅✅✅ huge quick profit 23 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-23 15:53:03+00:00 1.0 1236764008 11863 pump result coti start price 634 weve reached 948 all targets achieved in just 36 hour ✅✅✅✅ huge quick profit 148 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-23 05:45:49+00:00 1.0 1236764008 11810 pump result ren start price 1058 weve reached 1543 all targets achieved in just 45 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-22 05:16:11+00:00 1.0 1236764008 11806 pump result jamsy start price 148 weve reached 251 all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 69 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-21 19:35:25+00:00 1.0 1236764008 11762 pump result any start price 4166 weve reached 6057 all targets achieved in just 29 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-20 18:15:52+00:00 1.0 1236764008 11725 dusk result hit 1339 3rd target achieved in just 15 hour✅✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-20 08:05:32+00:00 1.0 1236764008 11712 any result hit 5511 3rd target achieved in just 21 hour✅✅✅ huge quick profit 32 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-12-20 07:22:52+00:00 1.0 1236764008 11700 pump result appc start price 161 weve reached 222 huge quick profit 37 in just 9 minutes to know next pump coin name contact traderwilliams100 for premium membership 2021-12-19 15:04:57+00:00 1.0 1236764008 11688 wan result hit 1818 3rd target achieved in just 11 minutes ✅✅✅ huge quick profit 1818 amazing pump calls by our team advance buy and sell targets ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-19 08:56:35+00:00 1.0 1236764008 11671 farm result hit 2700 3rd target achieved in just 2 minutes ✅✅✅ huge quick profit 35 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-18 18:32:45+00:00 1.0 1236764008 11660 fis result hit 3524 2nd target achieved in just 2 minutes ✅✅ one more huge quick profit 25 amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-18 18:14:36+00:00 1.0 1236764008 11655 pump result tru start price 805 weve reached 1194 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-18 18:01:19+00:00 1.0 1236764008 11640 pump result cfx start price 496 weve reached 650 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-18 11:35:35+00:00 1.0 1236764008 11625 pump result qlc start price 75 weve reached 114 all targets achieved in just 40 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-18 10:06:59+00:00 1.0 1236764008 11621 pump result tct start price 70 weve reached 109 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-18 09:27:32+00:00 1.0 1236764008 11577 tct result hit 87 3rd target achieved in just 10 minutes ✅✅✅ huge quick profit 24 amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-17 12:58:58+00:00 1.0 1236764008 11570 high result hit 8500 2nd target achieved in just 7 minutes ✅✅ huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-12-17 07:57:34+00:00 1.0 1236764008 11501 pump result gxs start price 2720 weve reached 4150 all targets achieved in just 25 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-16 10:43:32+00:00 1.0 1236764008 11460 pump result voxel start price 5353 weve reached 8250 all targets achieved in just 18 hour ✅✅✅✅ huge quick profit 54 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-15 09:09:23+00:00 1.0 1236764008 11450 pump result doge start price 330 weve reached 463 all targets achieved in just 185 hour ✅✅✅✅ huge quick profit 120 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-14 20:00:07+00:00 1.0 1236764008 11446 voxel result hit 6595 3rd target achieved in just 24 minutes ✅✅✅ huge quick profit 23 amazing calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-12-14 13:37:10+00:00 1.0 1236764008 11296 pump result flux start price 6000 weve reached 9900 all targets achieved in just 33 minutes ✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-10 08:36:37+00:00 1.0 1236764008 11234 pump result mdt start price 129 weve reached 231 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 237 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-09 05:08:29+00:00 1.0 1236764008 11220 pump result ant start price 9002 weve reached 13000 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 44 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-08 18:58:16+00:00 1.0 1236764008 11195 pump result xtz start price 8322 weve reached 11567 all targets achieved in just 7 hour ✅✅✅✅ huge quick profit 115 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-08 06:55:23+00:00 1.0 1236764008 11163 pump result dusk start price 412 weve reached 855 all targets achieved in just 225 hour ✅✅✅✅ huge quick profit 107 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-07 14:07:42+00:00 1.0 1236764008 11141 pump result elf start price 980 weve reached 1781 all targets achieved in just 4 minutes✅✅✅✅ huge quick profit 81 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-06 17:26:06+00:00 1.0 1236764008 11136 grs result hit 2179 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 33 amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-06 17:21:48+00:00 1.0 1236764008 11124 porto hit 11695 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 87 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-12-05 17:47:48+00:00 1.0 1236764008 11094 santos result hit 13299 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-05 04:21:35+00:00 1.0 1236764008 11024 pump result mdt start price 112 weve reached 159 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 41 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-03 17:18:23+00:00 1.0 1236764008 11006 pump result gto start price 121 weve reached 192 all targets achieved in just 74 minutes✅✅✅✅ huge quick profit 58 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-03 10:23:32+00:00 1.0 1236764008 10989 pump result nuls start price 934 weve reached 3253 huge quick profit 248 to know next pump coin name contact traderwilliams100 for premium membership 2021-12-02 17:46:51+00:00 1.0 1236764008 10972 pump result gxs start price 1171 weve reached 2790 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 138 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-02 13:15:30+00:00 1.0 1236764008 10946 brd result hit 2830 all targets achieved in nust 2 days✅✅✅✅ one more huge profit 60 amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-12-02 06:11:13+00:00 1.0 1236764008 10923 santos result hit 64967 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 48 amazing pump calls by our team to know next pump signal ☎️ contact traderwilliams100 for premium membership 2021-12-01 11:22:31+00:00 1.0 1236764008 10919 pump result req start price 822 weve reached 1340 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-12-01 11:19:13+00:00 1.0 1236764008 10882 pump result agix start price 417 weve reached 578 huge quick profit 38 in just 3 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-11-30 18:41:39+00:00 1.0 1236764008 10789 pump result mda start price 1144 weve reached 1999 all targets achieved in just 8 minutes✅✅✅✅ huge quick profit 74 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-28 17:02:25+00:00 1.0 1236764008 10782 pump result evx start price 1180 weve reached 1931 all targets achieved in just 43 minutes✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-28 16:46:11+00:00 1.0 1236764008 10780 evx result hit 1544 3rd target achieved in just 9 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-11-28 15:08:19+00:00 1.0 1236764008 10749 pump result pnt start price 2315 weve reached 3471 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-28 07:41:52+00:00 1.0 1236764008 10651 pump result nu start price 1592 weve reached 2460 huge quick profit 54 to know next pump coin name contact traderwilliams100 for premium membership 2021-11-27 06:29:37+00:00 1.0 1236764008 10615 pump result gct start price 1956 weve reached 2784 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-26 18:07:16+00:00 1.0 1236764008 10599 pump result storj start price 3836 weve reached 6116 huge quick profit 59 in just 12 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-11-26 17:25:19+00:00 1.0 1236764008 10526 pump result aion start price 315 weve reached 623 huge quick profit 97 in just 15 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-11-25 17:42:26+00:00 1.0 1236764008 10498 amb result hit 113 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump coin name 2021-11-25 10:49:16+00:00 1.0 1236764008 10484 pump result wabi start price 434 weve reached 1056 huge quick profit 143 in just 41 minutes to know next pump coin name contact traderwilliams100 for premium membership 2021-11-25 08:54:51+00:00 1.0 1236764008 10479 pump result brd start price 353 weve reached 2931 all targets achieved in just 3 minutes✅✅✅✅ and pumped hard huge quick profit 730 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-25 04:19:46+00:00 1.0 1236764008 10431 pump result drep start price 1886 weve reached 2799 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-24 06:33:05+00:00 1.0 1236764008 10377 pump result mda start price 1610 weve reached 2211 3rd target achieved in just 2 hour ✅✅✅ huge quick profit 37 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-23 15:03:35+00:00 1.0 1236764008 10372 next pump signal just shared in premium channel 2021-11-23 15:00:23+00:00 1.0 1236764008 10358 pump result iris start price 212 weve reached 373 huge quick profit 75 in just 10 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-11-22 18:45:08+00:00 1.0 1236764008 10296 pump result dego start price 1583 weve reached 2373 all target achieved in just 22 hour ✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-21 14:44:14+00:00 1.0 1236764008 10285 pump result nav start price 707 weve reached 1059 all target achieved in just 15 hour ✅✅✅✅ huge quick profit 49 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-21 10:23:15+00:00 1.0 1236764008 10245 pump result tct start price 60 weve reached 108 all target achieved in just 17 hour ✅✅✅✅ huge quick profit 80 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-21 08:53:14+00:00 1.0 1236764008 10241 pump result powr start price 1084 weve reached 1592 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-21 08:50:28+00:00 1.0 1236764008 10227 pump result gto start price 96 weve reached 156 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 62 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-20 18:38:27+00:00 1.0 1236764008 10222 pump result drep start price 1495 weve reached 3152 huge quick profit 110 in just 2 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-11-20 18:17:48+00:00 1.0 1236764008 10217 pump result mith start price 88 weve reached 307 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 248 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-20 18:03:31+00:00 1.0 1236764008 10171 pump result mith start price 88 weve reached 153 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 73 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-20 08:15:49+00:00 1.0 1236764008 10136 mith result hit 114 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-11-19 17:24:23+00:00 1.0 1236764008 10122 lazio result hit 15493 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-11-19 14:24:06+00:00 1.0 1236764008 10117 dar result hit 5375 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team so much profit for premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-11-19 12:47:12+00:00 1.0 1236764008 10107 idex result hit 860 3rd target achieved in just 54 minutes ✅✅✅ one more huge quick profit 33 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-11-19 12:31:03+00:00 1.0 1236764008 10101 pump result idex start price 455 weve reached 669 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-19 06:47:08+00:00 1.0 1236764008 10084 pump result storj start price 2794 weve reached 4089 all target achieved in just 34 hour ✅✅✅✅ huge quick profit 138 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-18 17:54:08+00:00 1.0 1236764008 10043 arrgo result hit 856 3rd target achieved in just 39 minutes ✅✅✅ one more huge quick profit 37 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-11-18 05:46:29+00:00 1.0 1236764008 10029 pump result rose start price 344 weve reached 512 all target achieved in just 14 hour ✅✅✅✅ huge quick profit 146 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-18 05:11:06+00:00 1.0 1236764008 9981 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-17 03:00:16+00:00 1.0 1236764008 9944 pump result porto start price 17066 weve reached 28188 all target achieved in just 8 minutes✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-16 12:24:24+00:00 1.0 1236764008 9928 pump result powr start price 606 weve reached 1244 all target achieved in just 15 minutes✅✅✅✅ huge quick profit 105 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-16 03:58:18+00:00 1.0 1236764008 9695 adx result hit 1485 2nd target achieved in just 8 minutes ✅✅ one more huge quick profit 22 amazing calls by our team so much quick profit for premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-11-11 14:39:07+00:00 1.0 1236764008 9572 pump result lpt start price 5769 weve reached 15220 huge quick profit 163 to know next pump coin name contact traderwilliams100 for premium membership 2021-11-09 18:24:55+00:00 1.0 1236764008 9524 pump result uma start price 2225 weve reached 3519 huge quick profit 58 to know next pump coin name contact traderwilliams100 for premium membership 2021-11-08 06:44:50+00:00 1.0 1236764008 9470 adx result hit 1796 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-11-07 06:36:05+00:00 1.0 1236764008 9448 pump result rgt start price 7585 weve reached 11482 all target achieved in just 30 minutes✅✅✅✅ huge quick profit 51 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-06 06:44:02+00:00 1.0 1236764008 9446 you missed one more profit here is one more profit for premium members in just 30 minutes pump result 2021-11-06 06:41:26+00:00 1.0 1236764008 9414 pump result sys start price 540 weve reached 897 all target achieved in just 18 hour ✅✅✅✅ huge quick profit 66 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-05 11:54:04+00:00 1.0 1236764008 9368 fis result hit 4000 3rd target achieved in just 17 minutes ✅✅✅ one more huge quick profit 35 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-11-04 07:43:45+00:00 1.0 1236764008 9341 pump result badger start price 5302 weve reached 9063 all target achieved in just 13 minutes✅✅✅✅ huge quick profit 70 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-03 20:06:50+00:00 1.0 1236764008 9279 wrx result hit 3319 3rd target achieved in just 59 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-11-02 19:05:07+00:00 1.0 1236764008 9274 pump result arpa start price 233 weve reached 382 all target achieved in just 15 hour✅✅✅✅ one more huge quick profit 211 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-11-02 18:11:44+00:00 1.0 1236764008 9258 pump result oxt start price 820 weve reached 1222 one more huge profit 49 to know next pump coin name contact traderwilliams100 for premium membership 2021-11-02 16:07:17+00:00 1.0 1236764008 9175 pump result ast start price 403 weve reached 634 all target achieved in 2 days✅✅✅✅ one more huge profit 57 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact traderwilliams100 for premium membership 2021-10-31 14:55:14+00:00 1.0 1236764008 9092 pump result mana start price 2237 weve reached 3713 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 199 using 3x leverage to know next pump coin name contact traderwilliams100 for premium membership 2021-10-30 13:42:09+00:00 1.0 1236764008 9081 pump result vite start price 189 weve reached 257 3rd target achieved in just 15 minutes ✅✅✅ huge quick profit 35 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-30 12:20:29+00:00 1.0 1236764008 9074 pump result dlt start price 103 weve reached 197 huge quick profit 91 within 75 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-10-30 11:20:39+00:00 1.0 1236764008 9012 pump result mana start price 1423 weve reached 1978 huge quick profit 39 in just 95 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-10-29 08:40:51+00:00 1.0 1236764008 8997 pump result gto start price 78 weve reached 108 all targets achieved in just 23 minutes ✅✅✅✅ huge quick profit 115 using 3x leverage to know next pump coin name contact traderwilliams100 for premium membership 2021-10-29 04:37:47+00:00 1.0 1236764008 8946 go hit 93 now 3rd target achieved in just 215 hour✅✅✅ huge quick profit 34 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-10-27 08:11:21+00:00 1.0 1236764008 8943 pump result 1inch start price 6787 weve reached 10323 fxs binance top gainer all targets achieved in just 12 minutes ✅✅✅✅ huge quick profit 156 using 3x leverage to know next pump coin name contact traderwilliams100 for premium membership 2021-10-27 06:38:30+00:00 1.0 1236764008 8839 pump result evx start price 1110 weve reached 2094 huge quick profit 88 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-24 17:15:50+00:00 1.0 1236764008 8807 pump result go start price 71 weve reached 98 huge quick profit 38 in just 25 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-10-23 10:55:59+00:00 1.0 1236764008 8723 pump result auction start price 6090 weve reached 9710 all targets achieved in just 10 hour ✅✅✅✅ huge quick profit 59 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-21 16:37:11+00:00 1.0 1236764008 8717 pump result firo start price 1352 weve reached 1885 3rd targets achieved in just 10 minutes ✅✅✅ huge quick profit 39 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-21 09:08:03+00:00 1.0 1236764008 8695 dnt result hit 376 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 81 using 3x leverage amazing calls by our team congrats premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-10-21 04:37:19+00:00 1.0 1236764008 8602 pump result req start price 408 weve reached 586 all targets achieved in just 9 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-17 13:00:46+00:00 1.0 1236764008 8597 pump result sys start price 518 weve reached 820 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 58 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-17 10:54:47+00:00 1.0 1236764008 8536 pump result nu start price 519 weve reached 4649 huge quick profit 792 in just 6 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-10-15 12:54:33+00:00 1.0 1236764008 8531 pump result keep start price 716 weve reached 2010 huge quick profit 180 in just 65 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-10-15 10:49:43+00:00 1.0 1236764008 8498 pump result wabi start price 572 weve reached 800 huge quick profit 39 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-14 15:12:50+00:00 1.0 1236764008 8255 stx result hit 3289 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 56 using 3x leverage amazing calls by our team so much profit for premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-10-09 14:19:40+00:00 1.0 1236764008 8243 pump result klay start price 3197 weve reached 7899 huge quick profit 146 in just 4 minutes to know next pump coin name contact traderwilliams100 for premium membership 2021-10-09 13:57:39+00:00 1.0 1236764008 8238 pump result data start price 249 weve reached 406 huge quick profit 63 to know next pump coin name contact traderwilliams100 for premium membership 2021-10-09 13:46:07+00:00 1.0 1236764008 8158 juv hit 3790 now 3rd target achieved in just 19 hour✅✅✅ huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-10-07 18:31:19+00:00 1.0 1236764008 8094 ong result hit 3580 3rd target achieved in just 27 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-10-07 05:30:36+00:00 1.0 1236764008 8039 pump result hive start price 1425 weve reached 3056 huge quick profit 114 in just 42 minutes to know next pump coin name contact traderwilliams100 for premium membership 2021-10-06 05:47:31+00:00 1.0 1236764008 8029 ardr result hit 878 3rd target achieved in just 125 hour✅✅✅ one more huge quick profit 36 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-10-06 05:33:28+00:00 1.0 1236764008 7992 stpt to the moon hit 235 huge quick profit 94 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-10-05 11:54:51+00:00 1.0 1236764008 7948 pump result ez start price 13499 weve reached 21000 huge quick profit 56 in just 5 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-10-03 17:05:16+00:00 1.0 1236764008 7800 pump result stpt start price 117 weve reached 188 huge quick profit 60 in just 15 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-09-30 14:31:38+00:00 1.0 1236764008 7794 pump result poly start price 1333 weve reached 1815 huge quick profit 36 in just 3 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-09-30 08:59:15+00:00 1.0 1236764008 7684 pump result adx start price 1153 weve reached 1688 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 46 to know next pump coin name contact traderwilliams100 for premium membership 2021-09-26 19:51:26+00:00 1.0 1236764008 7663 pump result lto start price 549 weve reached 850 huge quick profit 164 using 3x leverage in just 34 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-09-26 18:20:30+00:00 1.0 1236764008 7625 pump result nuls start price 1071 weve reached 1600 huge quick profit 49 in just 11 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-09-25 18:05:58+00:00 1.0 1236764008 7605 pump result celr start price 293 weve reached 447 all targets achieved in just 115 hour ✅✅✅ huge quick profit 52 to know next pump coin name contact traderwilliams100 for premium membership 2021-09-25 05:15:38+00:00 1.0 1236764008 7424 pump result nmr start price 967 weve reached 1377 3rd targets achieved in just 15 hour ✅✅✅ huge quick profit 127 using 3x leverage to know next pump coin name contact traderwilliams100 for premium membership 2021-09-22 04:57:19+00:00 1.0 1236764008 7392 acm result hit 2768 3rd target achieved in just 8 minutes ✅✅✅ one more huge quick profit 27 amazing calls by our team congrats premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-21 09:06:42+00:00 1.0 1236764008 7322 pump result oax start price 407 weve reached 631 all targets achieved in just 21 hour ✅✅✅✅ huge quick profit 55 to know next pump coin name contact traderwilliams100 for premium membership 2021-09-19 17:44:53+00:00 1.0 1236764008 7257 om result hit 882 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-09-18 19:44:39+00:00 1.0 1236764008 7247 pump result cfx start price 675 weve reached 1064 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 57 to know next pump coin name contact traderwilliams100 for premium membership 2021-09-18 17:27:09+00:00 1.0 1236764008 7230 nmr result hit 1298 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 76 using 3x leverage amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-18 06:18:34+00:00 1.0 1236764008 7092 front result hit 4300 3rd target achieved in just 26 hour✅✅✅ one more huge quick profit 40 amazing pump calls by our team so much profit for premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-15 16:54:18+00:00 1.0 1236764008 7087 quick result hit 13000 3rd target achieved in just 4 hour✅✅✅ one more huge quick profit 32 amazing pump calls by our team congrats premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-15 11:29:11+00:00 1.0 1236764008 6824 pond result hit 273 all targets achieved in 3 days✅✅✅✅ one more huge profit 50 amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-10 15:24:08+00:00 1.0 1236764008 6752 front result hit 4770 3rd target achieved in just 45 hour✅✅✅ one more huge quick profit 35 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-09 16:39:37+00:00 1.0 1236764008 6677 elf result hit 2138 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump signal ☎️ contact traderwilliams100 for premium membership 2021-09-08 04:31:45+00:00 1.0 1236764008 6627 pump result rose start price 501 weve reached 717 all targets achieved in just 55 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact traderwilliams100 for premium membership 2021-09-07 10:32:21+00:00 1.0 1236764008 6562 pump result cdt start price 88 weve reached 137 all targets achieved in just 5 hour✅✅✅✅ huge quick profit 55 to know next pump coin name contact traderwilliams100 for premium membership 2021-09-06 09:47:50+00:00 1.0 1236764008 6531 rose hit 417 finally all targets achieved in just 17 hour✅✅✅✅ huge quick profit 148 using 3x leverage amazing pump calls by our team the longer you wait more you lose profit still thinking ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-06 04:56:31+00:00 1.0 1236764008 6524 pump result vib start price 155 weve reached 286 huge quick profit 84 to know next pump coin name contact traderwilliams100 for premium membership 2021-09-05 17:23:55+00:00 1.0 1236764008 6471 idex result hit 195 3rd target achieved in just 15 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-05 08:43:34+00:00 1.0 1236764008 6432 ctxc result hit 725 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 32 amazing pump calls by our team to know next pump signal ☎️ contact traderwilliams100 for premium membership 2021-09-05 04:17:07+00:00 1.0 1236764008 6359 om result hit 649 3rd target achieved in just 12 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-03 06:45:21+00:00 1.0 1236764008 6320 sys result hit 661 3rd target achieved in just 44 minutes ✅✅✅ one more huge quick profit 28 amazing pump calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-02 14:02:36+00:00 1.0 1236764008 6260 elf result hit 1260 3rd target achieved in just 12 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-09-01 12:23:21+00:00 1.0 1236764008 6199 pump result ar start price 8674 weve reached 14000 huge quick profit 60 in just 10 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-08-31 10:12:37+00:00 1.0 1236764008 6194 pump result rose start price 238 weve reached 308 huge quick profit 30 in just 7 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-08-31 10:06:50+00:00 1.0 1236764008 6155 pump result nas start price 108 weve reached 144 3rd targets achieved in just 17 minutes ✅✅✅ huge quick profit 33 to know next pump coin name contact traderwilliams100 for premium membership 2021-08-30 16:22:30+00:00 1.0 1236764008 6148 celo hit 22800 finally all targets achieved in 3 days✅✅✅✅ one more huge profit 192 amazing pump calls by our team the longer you wait more you lose profit hope you understood ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-08-30 14:49:08+00:00 1.0 1236764008 5919 aergo result hit 750 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 37 so much profit for premium members ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-08-25 06:50:59+00:00 1.0 1236764008 5839 pump result fxs start price 853 weve reached 1240 huge quick profit 45 in just 5 minutes to know next pump coin name contact traderwilliams100 for premium membership 2021-08-23 06:58:45+00:00 1.0 1236764008 5833 pump result lrc start price 768 weve reached 1257 huge quick profit 63 in just 7 hour to know next pump coin name contact traderwilliams100 for premium membership 2021-08-23 06:51:31+00:00 1.0 1236764008 5822 nano result hit 1571 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 19 amazing calls by our team ☎️ contact traderwilliams100 for premium membership and grab next pump signal 2021-08-22 14:05:37+00:00 1.0 1236764008 5446 twt hit 1658 finally all targets achieved in just 115 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2021-08-15 10:01:55+00:00 1.0 1236764008 190 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact traderwilliams100 for premium membership 2020-10-14 09:22:54+00:00 1.0 1449335962 1218 crypto pump alert 24h 20191026 161015 karatgold coin kbc 24h +1831 1h +334 7d +1370 1m +095 ▶ 24h volume change 001 current volume us140m previous volume us140m ▶ major exchange pair current price dominance lbank kbcbtc us0025 2360 lbank kbcusdt us0024 1573 coinbene kbcusdt us0023 1261 coin 2019-10-26 07:10:15+00:00 1.0 1449335962 1075 crypto pump alert 24h 20191026 040516 karatgold coin kbc 24h +1599 1h +283 7d +1099 1m 1151 ▶ 24h volume change +1679 current volume us135m previous volume us115m ▶ major exchange pair current price dominance lbank kbcbtc us0021 1278 coinbe kbcbtc us011 1260 coinbene kbcusdt us0022 1226 coin 2019-10-25 19:05:17+00:00 1.0 1350915658 33453 ‼️ attention everyone ‼️ have you missed iotx 3x big pump this whale channel nailed it next huge 5x potential coin posted in this whales private channel and link is open only for limited time‼️ join fast ad 2021-11-12 08:54:45+00:00 1.0 1409557641 2399 are you ready this alt has bottomed out and is ready for a big pump dont miss it 2021-10-26 06:58:45+00:00 1.0 1409557641 2351 buy mtl and hold it now next pump coin will be mtl 2021-10-17 15:01:11+00:00 1.0 1409557641 2316 whats next coin web3 will pump 2021-10-16 05:01:16+00:00 1.0 1409557641 2279 klay still in buying range now you have 5 minutes to fill it full your bag my whales begin pump it 2021-10-14 07:30:33+00:00 1.0 1409557641 2148 time to buy when market bull run whale will pump bzrx first dont miss it guys 2021-10-01 17:54:32+00:00 1.0 1409557641 1754 take profit nkn now and buy keep for next coin pump 2021-08-03 08:43:24+00:00 1.0 1409557641 1706 remember dont pump dump call blz is hold coin signal so i need you all guys to hold it for big profit lets do it buy and hold 2021-08-01 07:02:14+00:00 1.0 1409557641 1667 special attention you have 5 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime transfer money to spot right now 5 mins left there we go 2021-07-30 10:55:24+00:00 1.0 1409557641 1665 30 minutes left to mega pump stay tuned 2021-07-30 10:30:43+00:00 1.0 1409557641 1663 this time is good to pump only so we have pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 30072021 monday time 1000 gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-07-30 08:00:52+00:00 1.0 1409557641 1658 market bullish decrease from 85 to 71 and bearish increases from 15 to 29 now btc doing a big pump again dump doing this multiple time at future trade you can gain huge profit to learn btc movements 2021-07-29 17:26:21+00:00 1.0 1409557641 1655 nfts grow strongly so dont miss chance buy coin not pump yet buying more coti before it moon 2021-07-29 12:16:55+00:00 1.0 1409557641 1590 market very bullish after btc make a big pump 48k dont open short now just buy 2021-07-26 06:24:03+00:00 1.0 1409557641 1531 bts will be next pump coin after axs 2021-07-21 07:41:16+00:00 1.0 1409557641 1501 i will share very big news of dodo in minutes buy it now before it pump hard 2021-07-19 06:32:24+00:00 1.0 1409557641 1434 lit can be next pump like axs buy and hold lit now 2021-07-14 07:13:30+00:00 1.0 1409557641 1359 buy dip and dont sell early target 200500 whales starting pump now 2021-07-05 13:04:32+00:00 1.0 1409557641 1357 buy nkn big pump 2021-07-05 13:00:14+00:00 1.0 1409557641 1355 special attention you have 5 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime transfer money to spot right now 5 mins left there we go 2021-07-05 12:55:24+00:00 1.0 1409557641 1351 stay tuned asian whale pump coming only 40 minutes left use binance future 10x20x leverage 2021-07-05 12:19:14+00:00 1.0 1409557641 1350 alts dip again now very good to pump signal our pump also coming soon less than 1h to big pump today asian whales team 2021-07-05 12:00:41+00:00 1.0 1409557641 1348 our pump coming soon less than 2h to big pump today asian whales team 2021-07-05 11:01:12+00:00 1.0 1409557641 1347 this time is good to pump only so we have pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 05072021 monday time 1300 gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-07-05 09:07:20+00:00 1.0 1409557641 1332 this time is good to pump only so we have pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 05072021 monday time 1300 gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-07-04 11:04:35+00:00 1.0 1409557641 1308 our pump also coming soon less than 1h to big pump today asian whales team 2021-06-29 12:00:38+00:00 1.0 1409557641 1307 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump less then 2h left to our moon pump 2021-06-29 11:19:41+00:00 1.0 1409557641 1306 our pump coming soon less than 2h to big pump today asian usa whales team korea china usa stay tuned and pin this channel to get fast signals 2021-06-29 11:03:49+00:00 1.0 1409557641 1305 our pump coming soon less than 3h to big pump today asian usa whales team korea china usa stay tuned and pin this channel to get fast signals 2021-06-29 10:15:20+00:00 1.0 1409557641 1299 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 29062021 tuesday time 1300 gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-06-28 14:19:38+00:00 1.0 1409557641 1298 our coin was prepumped its so bad so we decided to postpone this pump stay tuned further information will be announced soon 2021-06-28 13:01:26+00:00 1.0 1409557641 1297 special attention you have 5 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime transfer money to spot right now 5 mins left there we go 2021-06-28 12:55:23+00:00 1.0 1409557641 1294 our pump also coming soon less than 1h to big pump today asian whales team 2021-06-28 12:01:56+00:00 1.0 1409557641 1293 our pump also coming soon less than 2h to big pump today asian whales team 2021-06-28 11:01:40+00:00 1.0 1409557641 1292 wow market looking so good today our pump also coming soon less than 7h to big pump today asian whales team 2021-06-28 06:14:48+00:00 1.0 1409557641 1289 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 28062021 monday time 1300 gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-06-26 14:17:29+00:00 1.0 1409557641 1261 special attention you have 5 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime transfer money to spot right now 5 mins left there we go 2021-06-21 10:55:39+00:00 1.0 1409557641 1258 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 1h left to our pump 2021-06-21 10:01:04+00:00 1.0 1409557641 1257 less than 3h to big pump today transfer money to spot and wait ready big pump today 2021-06-21 08:05:12+00:00 1.0 1409557641 1256 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance spot international date 21062021 monday time 1100 gmt remember it no prepump very important no dump no guess coin our pump we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team cz binance 2021-06-21 06:32:24+00:00 1.0 1409557641 1250 pump annoucement after the last 2 pumps stmx 100200 blz 230460 profit im happy to announce exchange binance futures international date 20062021 sunday time 1000h gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team cz binance 2021-06-19 16:36:34+00:00 1.0 1409557641 1249 celr tomorrow we will pump it at 10h gmt buy setup now we adding big money in celr china mega pump cz binance 2021-06-19 15:20:47+00:00 1.0 1409557641 1243 login and get ready use lev x1020 i will post coin name and link 2021-06-19 14:44:54+00:00 1.0 1409557641 1225 look at the picture and you can see we sent coins here earlier than all the other channels and almost no prepump with more than 60m vol was generated and besides nkn was on top 1 grow today more than 130260 profit with lev x1020 we firmly believe that it is really powerful and most of my members here have the best possible profit and especially in times when the market is not as good as it is now a pump like this is a great success china mega pump cz binance 2021-06-17 12:37:30+00:00 1.0 1409557641 1217 login and get ready use lev x1020 i will post coin name and link 2021-06-17 11:59:04+00:00 1.0 1409557641 1216 special attention you have 5 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 5 mins left there we go 2021-06-17 11:55:22+00:00 1.0 1409557641 1213 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 1h left to our pump galaxy 2021-06-17 11:00:28+00:00 1.0 1409557641 1212 less than 4h left to big pump today asian whales team 2021-06-17 08:22:29+00:00 1.0 1409557641 1210 pump annoucement after the last 2 pumps stmx 100200 blz 230460 profit im happy to announce exchange binance futures international date 17062021 thursday time 1200h gmt remember it no prepump very important no dump no guess coin our pump we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team cz binance 2021-06-17 06:04:24+00:00 1.0 1409557641 1208 like i said we sent the pump signal a little earlier than all the other channels with over 60 million usd we made it grow 220440 with leverage x1020 as announced look at this picture im sure you feel great im very happy about this and well be sure to bring more china mega pump cz binance 2021-06-16 13:14:14+00:00 1.0 1409557641 1201 buy blz fast china mega pump cz binancepump 2021-06-16 11:30:11+00:00 1.0 1409557641 1200 login and get ready use lev x1020 i will post coin name and link 2021-06-16 11:28:47+00:00 1.0 1409557641 1199 share this post and ill send the coin here a little sooner china mega pump cz binance 2021-06-16 11:26:36+00:00 1.0 1409557641 1195 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 1h left to our pump galaxy 2021-06-16 10:32:18+00:00 1.0 1409557641 1194 less than 3h left to big pump today asian whales team 2021-06-16 08:30:43+00:00 1.0 1409557641 1193 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 16062021 wednesday time 1130h gmt remember it no prepump very important no dump no guess coin our pump we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team cz binance 2021-06-16 05:14:14+00:00 1.0 1409557641 1191 read i told everyone many time i dont want any of my members to suffer so i want all to be fair i hope those who believe and wait for my pump are not upset by the cancellation of this pump i do this to protect you i hope you understand china mega pump cz binancepump 2021-06-15 11:39:43+00:00 1.0 1409557641 1189 the whole market is going up i think a lot of people are anticipating the coin we pump and buy it in advance i want to remind you again never to guess and buy anything before i post it here because if it violates rule number 1 prepump we will immediately cancel it read the instructions carefully and prepare well 2021-06-15 11:25:09+00:00 1.0 1409557641 1186 our team has always wanted to deliver the very best pumps so there are a few things everyone should pay attention to no prepump very important no dump no guess coin our pump only 1h left to our pump galaxy 2021-06-15 10:30:27+00:00 1.0 1409557641 1183 pump annoucement so that everyone can participate in pumping today im happy to announce exchange binance futures international date 15062021 tuesday time 1130h gmt we promise a more powerful pump than last time we are constantly calling for sharks to join my team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits asian whales team 2021-06-15 05:09:29+00:00 1.0 1409557641 1169 3 mins to buy it before we adding more money to pump it big power by china vs asian team 2021-06-14 13:03:09+00:00 1.0 1409557641 1162 everything was carefully prepared we will invest a large amount of money in the pump this time only 30 minutes left get ready and keep one thing in mind never guess the coin before i tell you 2021-06-14 12:31:35+00:00 1.0 1409557641 1161 less than 1h to big pump today super by china vs asian whales team 2021-06-14 12:00:42+00:00 1.0 1409557641 1160 less than 2h to big pump today asian whales team 2021-06-14 11:02:14+00:00 1.0 1409557641 1158 less than 4h to big pump today asian whales team 2021-06-14 09:03:09+00:00 1.0 1409557641 1155 less than 6h to big pump today big power by asian whales team 2021-06-14 07:06:41+00:00 1.0 1409557641 1154 dear everyone pump annoucement exchange binance international date 14062021 monday time 13h gmt the market condition for a pump is more than perfect lots of new people getting into crypto keep inviting ❤️ 2021-06-14 04:52:25+00:00 1.0 1409557641 1151 he is pumper china pump big team asian whales big pump is coming soon sponsoredad 2021-06-13 11:56:46+00:00 1.0 1409557641 1137 again again and again everyone always guess the pump coin and buy before we pump this is extremely bad for our pumping results and it will cost us all money its really bad we will have to keep delaying until things get better 2021-06-12 13:03:19+00:00 1.0 1409557641 1125 when we announced the pump today a lot of people paid attention to our pump and they were guessing the coin we pumped so it prepumped and the worst thing about a pump is the prepump we once again had to delay to make sure the pump worked at its best further announcement will be announced as soon as possible 2021-06-11 10:03:18+00:00 1.0 1409557641 1118 pump annoucement ⏳date today 11 june ⏰time 10h gmt exchange binance futures + spot +50 whale channels target 100200 profit korea big pump signal 2021-06-11 05:05:21+00:00 1.0 1409557641 1099 if you like pump signal then join here just dyor sponsor 2021-06-10 07:29:31+00:00 1.0 1409557641 772 dont short in this bull time you will be liquid easily look skl and now rlc is next pump buy and hold it now 2021-04-30 09:13:17+00:00 1.0 1409557641 733 btc correction but alts small down it means market ready for big pump buy akro at dip and hold now 2021-04-28 06:57:59+00:00 1.0 1356364264 16114 buying mln here now reversal from the double bottom formation in longer time frames with good volume rsi oversold in medium time frameswe also have detected whales activity in it from past few days looks like its ready for a parabolic move now we are expecting a big pump because it didnt shown up big move till now worth buy for immediate short term quick profits targets 1970219023402790+ 2021-12-14 16:07:37+00:00 1.0 1356364264 16024 rdn more then 20 in 4 hours dont worry if you missed it next coin is coming in 30 minutes stay tuned 2021-10-03 14:16:20+00:00 1.0 1356364264 16022 big insider todays wsb pump coin is rdn not sure if correct but i am buying it buy rdn below 1350 sats target sell when pump 2021-10-03 09:40:59+00:00 1.0 1356364264 15985 fxs dip looks to be done ready to fly now hope you all have boarded and dca at given range if not you can buy fxs now its pump time for fxs 2021-09-18 09:43:46+00:00 1.0 1356364264 15968 1 inch 4h 1d has reclaimed 100 day ema that can be a launchpad for next big pump like keep 2021-09-15 13:29:01+00:00 1.0 1356364264 15866 we have made huge huge huge profit today and its time to end the day with one more profitable trade stay tuned for 5 minutes 2021-08-22 15:57:05+00:00 1.0 1356364264 15818 hnt 90 profit with 10x leverage guys get ready for todays profitable trade in next 10 minutes 2021-08-15 09:46:07+00:00 1.0 1356364264 15799 flm new road map is out get ready for flm big pump 2021-08-11 14:19:53+00:00 1.0 1356364264 15773 looks like something big is cooking behind adx big pump coming soon 2021-08-07 15:55:21+00:00 1.0 1356364264 15735 we have witnessed 2 small cap pumps these days for grs nuls next low cap big pump coin is nebl buy nebl below 2700 sats target 3500 2021-07-30 09:24:28+00:00 1.0 1356364264 15730 its weekend time and ppt has started weekend low cap pump race now nuls is looking ready for huge pump ahead buy nuls below 1000 sats this looks bullish and can breakout anytime soon buy and hold nuls 2021-07-29 06:36:25+00:00 1.0 1356364264 15713 there is rumors that tomorrows wsb pump coin is grs it can pump upto 9100 within next 24 hours 10 minutes worth buy for short term quick profits buy grs below 1900 sats add grs in your portfolio for 24 hours 10 minutes short term trading and this trade setup will be invalid after 25th of july 1700 pm gmt 2021-07-24 16:58:49+00:00 1.0 1356364264 15682 chz flipping the major resistance breakout confirmed big pump on the way for chz 2021-07-15 10:15:17+00:00 1.0 1356364264 15629 if nav pumps today its just 30 minutes left for pump buy nav if you dont have it and hold till pump if you have it nav❤️ 2021-06-20 16:33:46+00:00 1.0 1356364264 15626 and its time for some insider for you guys we have information that wsbs todays coin is nav must buy nav below 1200 sats and just hold for next 6 hours nav will pump huge tonight target 2500 sats 2021-06-20 11:00:22+00:00 1.0 1356364264 15578 huge quick profit signal is brd buy brd below 580 sats buy and hold brd for next 1 hours and 11 minutes we have some insider that brd may pump huge tonight dont miss this opportunity buy and hold brd 2021-05-30 16:06:01+00:00 1.0 1356364264 15370 be ready this is huge breakout call and will give very huge sure profit ❗️30 minutes left 2021-04-11 16:00:01+00:00 1.0 1356364264 15368 fundamental based huge profit call coming in next 60 minutes stay tuned with your btc on binance 60 minutes left 2021-04-11 15:33:05+00:00 1.0 1356364264 15224 fxs getting ready for big pump 2021-03-27 05:28:30+00:00 1.0 1356364264 15176 guys again remember one thingthis is not a pump call twt is fundamentally very strong coin just buy and hold twt 2021-03-19 10:04:06+00:00 1.0 1356364264 15161 ❗️we are going to post a fundamental based undervalued coin in next 1 hour exchange binance 2021-03-18 15:32:09+00:00 1.0 1356364264 15072 i m buying via here looks like there is gonna huge pump in via in sometime some whales might pump via buy via below 1450 hild for few hours via can be huge today 2021-03-07 16:00:09+00:00 1.0 1356364264 15070 buy nav 950990 sell 107011301250++ slow accumulation detected from some hours and its indicating a big pump coming any momentum dont miss this type of deal this coin can increase your portfolio in short term period 2021-03-07 12:52:06+00:00 1.0 1356364264 15040 rdn will follow axs 50 pump in next 3 days dont miss this huge opportunity 2021-03-04 11:25:14+00:00 1.0 1356364264 14897 this is great altszn and almost all alts have gone huge from its dip ark is one undervalued coin also ark is in whales favorite zone to pump from here buying arkbtc here buy below 1600 sats target 180020002200240026002800 2021-02-17 04:16:04+00:00 1.0 1356364264 14827 ⌛5 minutes left for the big daddy push⏳ btc has pumped and altcoins have went downwhich is exactly what we were waiting for many buy opportunities have presented themselves now and you can expect this push to be phenomenal the fomo is going to be huge we are totally ready are you 2021-02-07 13:55:09+00:00 1.0 1356364264 14826 30 minutes left here is how to buy fast on binance 1 select market order 2 select percent of your total btc you wish to use 75 is best to use to avoid conflicts with orders not filling 3press buy 4enjoy moom 2021-02-07 13:30:10+00:00 1.0 1356364264 14825 1 hours until the big daddy push a guide about how to buy the coin during the push at exactly 1400 pm gmt there will be a message including the name of a coin in our channel we will be coordinately buying the coin in the btc pair so make sure you have free btc in your wallet if you are using market buy and plan to use your whole balance use anything less than 100 of your balance for example 75 to make sure it works when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up dont panic sell ‼️our push will have many waves as our whales will actively be buying with our members to support the price we all may be small investors but together we can make it to the moon lets do this 2021-02-07 13:00:11+00:00 1.0 1356364264 14824 ⚡3 hours until the big daddy push event what you can do to help make the push successful keep the push alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 1000 price 3 minutes after the pump 1800 set buy wall at 1500 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags lastly enjoy the ride to the moon we can say for sure that this push will be insane and our whales will do everything in their power to make sure every single member will profit from it 2021-02-07 11:00:09+00:00 1.0 1356364264 14820 the big daddy push hello everyone the biggest big daddy push will be scheduled for date sunday february 7 time 1400 pm gmt exchange binance advantage free for all we will be giving out more information about our upcoming pump before the pump stay tuned 2021-02-06 16:21:52+00:00 1.0 1356364264 14771 glmbtc buy 370385 sell 405430470+ a old gem coin with good records forming bullish pattern now and ready for a big pump rsi and macd looking extremely bullish expecting minimum 2x profit in short term 2021-01-28 15:50:41+00:00 1.0 1356364264 14770 buy wpr at 35 only 2 sats coin yet to pump it will follow doge soon buy wpr 2021-01-28 15:48:23+00:00 1.0 1356364264 14726 when altszn is at its peak its very advisable to get any coin that is not yet pumped and hold for 2 3 days cmt is yet to pump and it will surely get pumped buy cmt below 36 sats target 40444852606570 2021-01-20 16:48:45+00:00 1.0 1356364264 14244 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:41+00:00 1.0 1356364264 14243 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:59+00:00 1.0 1356364264 14242 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just 6 hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:40+00:00 1.0 1356364264 14241 exchange binance coin name wrxbtc entry price 1400 target 150016501800 volume 301 time frame 15 minutes long wrxbtc binance 2020-06-03 09:12:39+00:00 1.0 1356364264 14239 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about mountain alt signal jun 3rd | 4 pm gmt 2020-06-03 06:42:08+00:00 1.0 1356364264 14229 ark ark ark target 100150+ ark is whales favorite coin now they pump it to the moon so buy hold ark is going to perform crazy today like never before buy fast this trendy coin and make profit 2020-06-02 16:00:26+00:00 1.0 1356364264 14228 only 5 minutes to go❗️ we have choosed the best coin which is available on true bottom our whales will pump it to the moon global fomos warming up and whole market eyes on mega moon signal next post will be coin name megamoonsignal login binance and keep an eye here 2020-06-02 15:55:09+00:00 1.0 1356364264 14227 final 30 minutes left megamoonsignal login binance now have everything ready team the trick to make some amazing profits is to be focused and be ready to buy fast hold for maximum profit target 100150 2020-06-02 15:30:09+00:00 1.0 1356364264 14226 those who wants to make big profits and are excited be ready your computer chair table go to quiet space for a while ✌️ only 60 minutes are left for todays 2x signal the btc dump gave us opportunity to buy prime alt from the dip and sell on the targets for 2x profit megamoonsignal 2020-06-02 15:00:40+00:00 1.0 1356364264 14224 6 hour left until the megamoonsignal todays call will be the biggest till date supported by the big whales this means that the coin will be on top of the binance within a matter of minutes make sure buy fast hold for the targets target 100150+ 2020-06-02 10:00:25+00:00 1.0 1356364264 14221 many of you guys missed recent 2x opportunities in this altseason so our whales will push a coin to the moon and you all will be able to make massive profits in short term well share a low cap fomo unicorn waiting for a kick to moon from the deepest entry after this btc rise so all of you can make some decent profit with it read the pinned post for details less than 12 hours left until megamoonsignal ‼️ 2020-06-02 04:00:07+00:00 1.0 1356364264 14218 24 hours remaining the team is back we have collaborated with some of the biggest whales in market for the megamoonsignal celebrating the altseason and waiting for the opportunity to kick to moon alt on binance exchange we are expecting more than 100150 gain this time after our previous nas 90 pump as the collaboration is more bigger and better than ever alts are primed for huge spikes and we belive the fomo will be huge more this time therefore we recommend that you should get in as soon as possible and hold for maximum profit and make sure you have your binance account ready and loaded for tomorrow date 2nd june tomorrow time 400 pm gmt exchange binance target 100150 megamoonsignal 2020-06-01 16:09:44+00:00 1.0 1356364264 14215 great news for all to celebrate this great altseason our whales decided to organize a megamoonsignal backed by our whales which is sitting on bottom and waiting for a kick to the moon on binance exchange were expecting more than 100130 gain in matter of minutes so just buy fast to get the maximum profit alts are primed for huge spikes and we are believing that the fomo power will be huge therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for 2nd of june‼️ date 2 june exchange binance target 100+ time 4pm gmt megamoonsignal 2020-06-01 03:30:33+00:00 1.0 1356364264 14081 coin name bntbtc expected gain 5080 buy and hold for huge profit 2020-04-24 15:59:22+00:00 1.0 1356364264 13084 evx pump signal shared here 12 hours before and now hit 4122 satoshi 11 profit so far and counting ✅ 2019-12-07 05:48:59+00:00 1.0 1356364264 13078 only 4 minutes to go fomo warming up guys next post will be based on strong technical analysis login to your binance account and keep an eye here for the dip entry coin 2019-12-06 16:25:55+00:00 1.0 1356364264 13073 hello everyone we have decided the pump today to make sure that the market conditions are perfectly optimal for our pump since we want to be 100 sure that we can pump our next coin above 5060 the new date will be pump announcement date friday 6 december time 430 pm gmt exchange binance advantage free for all 2019-12-06 09:26:00+00:00 1.0 1356364264 12896 ‼️attention‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ next post will be coin name pinourchannelontopandbereadyforblast 2019-11-02 17:26:27+00:00 1.0 1356364264 12884 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ some information about the most awaited mega signal ‼️exchange binance ❗️❗️date 02112019 ❗️❗️time 530pm gmt pump will be free for all ❗️❗️more than 500k people are going to join this history event and this can be the biggest moment in near future ‼️by the time keep your btc ready for blast and sell your alts as soon as possible ‼️we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc buy hold till our targets achieve pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-11-01 09:03:23+00:00 1.0 1356364264 12798 pump results coin edo low 3800 high 4800 welldone guys more than 26 the power of amazing viewers and buyers cannot go unnoticed keep earning as much as you can✨✨ get ready for the next boom boom✅✅ 2019-10-18 16:56:43+00:00 1.0 1356364264 12786 ‼️we are going to organise historic signal event today at 430 pm gmt‼️ ❗️❗️exchange binance ❗❗time 0430 pm gmt 1000 pm ist pump will be free for all more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 100200 so be ready with spare btc ❗️❗️only 12 hours left for historic signal event ❗️❗️ pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-10-18 04:35:16+00:00 1.0 1356364264 12776 ‼we are back again with historic signal event‼️ ❗️❗️exchange binance date 18102019 time 430pm gmt pump will be free for all more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-10-16 18:15:45+00:00 1.0 1356364264 12749 pump results coin bnt low 4020 high 5702 welldone guys more than 45 the power of amazing viewers and buyers cannot go unnoticed keep earning as much as you can✨✨ get ready for the next boom boom✅✅ 2019-10-14 17:28:21+00:00 1.0 1356364264 12745 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 2x very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 2x ++ bcoz hodlers are the ones who win this crypto game always regards 2019-10-14 15:48:42+00:00 1.0 1356364264 12744 ‼️only 1 hour left for our special call‼️ ❗️❗historic signal event is expected to go 50100 sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 15:31:02+00:00 1.0 1356364264 12743 ‼️only 2 hours left for our special call‼️ ❗️❗historic signal event is expected to go 50100 300k members are joining this historic event sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 14:32:05+00:00 1.0 1356364264 12742 ‼️only 65 hours left for our special call‼️ ❗️❗historic signal event is expected to go 50100 sell your alts be ready with spare btc pinourchannelontop regards 2019-10-14 10:04:25+00:00 1.0 1356364264 12736 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ some information about the most awaited historic event exchange time 14102019 430pm gmt pump will be free for all more than 300000 people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon beready4blast ✈✈✈✈ staytuned 2019-10-13 07:46:06+00:00 1.0 1356364264 12735 historic announcement historic binance blast exchange pairing btc pump will be ffa are you nostalgic about the pumps of the golden era of alts here is good news for you we have partnered with the biggest group of that golden era of pumps and we are going to blast on binance later next week by the time keep your btc ready for blast and sell your shits as soon as possible beready4blast ✈✈✈✈ 2019-10-13 05:47:03+00:00 1.0 1356364264 11896 alts are pumping nicely next pump coin will be shared in few minutes 2019-07-01 14:18:35+00:00 1.0 1356364264 11864 mth looks a good scalp trade it can pump in a candle n give east 10 profits buy and hold 2019-06-28 06:14:26+00:00 1.0 1356364264 11684 coin name nuls ranges 92009500 zones targets 9750 10100 10700 11300+ stop 8700‍ reasons for nuls 1 news for mainnet 20 date for julu august releasing this month 2partner aleph going to use the tech this month onwards 3chain factory release 4insider info is team is planning to pump it gradually to 20k sats over a period of some weeks if btc remain stablenuls will going to be a decent gainer in upcoming days 2019-06-04 16:02:06+00:00 1.0 1356364264 11625 buy cdt 140150 sell 165180200 looks like cdt is ready to pump hard expecting 50 gains in next coming days 2019-05-30 05:38:35+00:00 1.0 1356364264 11197 as you can see we shared btc pump signal before any others channel and its pumping hard now the only channel you know whose signal and trend is more accurate and perfect than others when everyone is posting about dump we got a secret news about pump and if you had followed our signal then sure you are now in good profit stay tuned for more ✌✌✌ american whales is not just a name but its a brand the only channel which provides more accurate and exact signals than others american whales care about your money contact isteve 2019-04-16 17:46:20+00:00 1.0 1356364264 11064 less than 5 minutes remaining login to your binance account and be ready coin name anytime will announce here next post will be coin name ✌️ 2019-04-04 13:25:22+00:00 1.0 1356364264 11057 dear members we scheduled the megamoonsignal for today on 4th of april date 4th of april time 130 pm gmt participants 300k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1530 minutes to reach target ‼️ megamoonsignal concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 40100+ as a channel member you are also requested to promote this upcoming megamoonsignal event on crypto groups fb twitter etc and make this signal big bigger and the biggest as our goal megamoonsignal are winwin for everyone thanks for all the feedback from last megamoonsignal market is good right now btc jumped over 1200 in past 48 hours alts are available in dip due to this thing it will help you to get good profit because you will get dip entry and can make quick profit through our this event stay tuned 2019-04-04 04:52:32+00:00 1.0 1356364264 10926 fet is a must buy btcfet orderbook binance the buybook is stronger than the sellbook buy sell 1689 1149 only 11 btc sell wall any whale can pump it anytime only coin left to pump + news based buy fet guys before it starts his show 2019-03-26 19:45:26+00:00 1.0 1356364264 10784 dear members today at 330pm gmt we will going to share a news based moon signal date 15th march time 330pm gmt exchange binance info the signal will be freeforall no time advantage for anyone it will achieve all targets in short time frame‼️ the signal will be based on news so can go for 2x to 3x in shorter time frames 2019-03-15 07:17:41+00:00 1.0 1356364264 10698 coin of the day 5 mins remaining next post will be coin name 2019-03-08 16:25:51+00:00 1.0 1356364264 10666 signal of the day time 1630 gmt exchange binance 2019-03-06 12:27:55+00:00 1.0 1356364264 10616 signal of the day time 14 gmt exchange binance 2019-03-03 11:14:46+00:00 1.0 1356364264 10589 signal of the day time 1730 gmt exchange binance 2019-03-01 12:56:16+00:00 1.0 1356364264 10555 people were thinking that we going to pump a coin lolz why to always seek pump if we can grow organically we choosed a strong coin so that our community remains safe and no dumping can happen to our investors thats what our priorities are we will bring technically filtered and safe coins to you always 2019-02-27 18:33:14+00:00 1.0 1356364264 10488 signal of the day time 1630 gmt exchange binance 2019-02-23 12:55:26+00:00 1.0 1356364264 10271 signal of the day time 1630 gmt exchange binance 2019-02-08 13:57:24+00:00 1.0 1356364264 10232 only 3 minutes remaining next post will be coin name 2019-02-03 14:57:53+00:00 1.0 1356364264 10228 today evening 1530pm gmt be ready call on binance make sure you have funds on binance less than 3 hours remaining for special binance signal 2019-02-03 12:06:42+00:00 1.0 1356364264 10225 dear members we scheduled the binancesignalevent on 3rd of february 2019 binancesignalevent date 03 february time 3 pm gmt 12 hours left participants 200k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1530 minutes to reach target ‼️ binancesignalevent concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 40100+ as a channel member you are also requested to promote this upcoming binancesignalevent event on crypto groups fb twitter etc and make this signal big bigger and the biggest as our goal binancesignalevent are winwin for everyone thanks for all the feedback from last binancesignalevent 2019-02-03 02:58:20+00:00 1.0 1356364264 9734 today evening 1430 pm gmt be ready call on binance make sure you have funds on binance less than 2 hours remaining for special binance signal 2019-01-07 12:39:56+00:00 1.0 1356364264 9614 only 2 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-01-01 14:28:24+00:00 1.0 1356364264 9612 only 30 minutes are left for todays binancesignalevent be ready and move your funds on binance 2019-01-01 14:00:41+00:00 1.0 1356364264 9611 those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ only 60 minutes are left for todays binancesignalevent be ready and move your funds on binance 2019-01-01 13:31:29+00:00 1.0 1356364264 9607 this time were going to have a social media strategy and announce the coin among multiple channels at once to make outsiders get in important read the pinned post for all details date 01 january time 230pm gmt 19 hours left participants 200k+ telegram users exchange binance staytuned 2018-12-31 19:37:57+00:00 1.0 1356364264 9596 dear members we scheduled the binancesignalevent on 1st january 2019 binancesignalevent date 01 january time 230 gmt 48 hours left participants 200k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1530 minutes to reach target ‼️ binancesignalevent concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 40100+ as a channel member you are also requested to promote this upcoming binancesignalevent event on crypto groups fb twitter etc and make this signal big bigger and the biggest as our goal binancesignalevent are winwin for everyone thanks for all the feedback from last binancesignalevent 2018-12-30 14:33:20+00:00 1.0 1356364264 8613 only 1 minute to go next post will be the coin name 2018-10-24 18:59:35+00:00 1.0 1356364264 8612 only 5 minutes to go be very ready guys login binance and keep an eye here 2018-10-24 18:55:50+00:00 1.0 1356364264 8610 only 30 minutes are left for todays binancesignalevent be ready and move your funds on binance 2018-10-24 18:30:41+00:00 1.0 1356364264 8545 dear members after the success of our last binancesignalevent we are planning the next binancesignalevent date 24 october time 7pm gmt 72 hours left participants 200k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1530 minutes to reach target ‼️ binancesignalevent concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 as a channel member you are also requested to promote this upcoming binancesignalevent event on crypto groups fb twitter etc and make this signal big bigger and the biggest as our goal binancesignalevent are winwin for everyone thanks for all the feedback from last binancesignalevent 2018-10-21 19:00:20+00:00 1.0 1356364264 8384 only 1 minute to go next post will be the coin name 2018-10-13 18:59:22+00:00 1.0 1356364264 8383 only 5 minutes to go be very ready guys login binance and keep an eye here 2018-10-13 18:55:09+00:00 1.0 1356364264 8381 those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ only 30 minutes are left for todays binancesignalevent be ready and move your funds on binance 2018-10-13 18:30:05+00:00 1.0 1356364264 8379 dear members in next post well discuss what the strategies will be in todays signal event which is in less than 1 hour and 45 minutes be sure to keep inviting staytuned 2018-10-13 17:16:58+00:00 1.0 1356364264 8371 binancesignalevent important read the pinned post for all details date 13 october time 7pm gmt less than 12 hours left participants 200k+ telegram users exchange binance staytuned 2018-10-13 07:03:05+00:00 1.0 1356364264 8307 dear members after the big success of our last 1 oax 74 binancesignalevent we are planning the next binancesignalevent date 13 october time 7pm gmt less than 48 hours left participants 200k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1530 minutes to reach target ‼️ binancesignalevent concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 as a channel member you are also requested to promote this upcoming binancesignalevent event on crypto groups fb twitter etc like our oax recommendation and make this signal big bigger and the biggest as previous it is our goal binancesignalevent are winwin for everyone thanks for all the feedback from last binancesignalevent 2018-10-11 19:14:23+00:00 1.0 1356364264 8271 our binancesignalevent coin oax reached 000004497 its approx 43 after pump signal announcement now you can close it 2018-10-11 06:26:30+00:00 1.0 1356364264 8186 dear members after the big success of our last 1 brd 40 binancesignalevent we are planning the next binancesignalevent date 09 october time 7pm gmt 35 hours left participants 200k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1530 minutes to reach target ‼️ binancesignalevent concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 as a channel member you are also requested to promote this upcoming binancesignalevent event on crypto groups fb twitter etc and make this signal big bigger and the biggest as our goal binancesignalevent are winwin for everyone thanks for all the feedback from last binancesignalevent 2018-10-08 07:48:46+00:00 1.0 1356364264 8107 22 hours for our binancesignalevent this time were going to have a social media strategy and announce the coin among multiple channels at once to make outsiders get in important read the pinned post for all details date 04 october time 7pm gmt 22 hours left participants 150k+ telegram users exchange binance staytuned 2018-10-03 21:03:21+00:00 1.0 1356364264 8091 binancesignalevent date 04 october time 7pm gmt 48 hours left participants 150k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1550 minutes to reach target ‼️ binancesignalevent concept is to buy and hold you gotta be fast enough to buy that coin and our target is at least 50100 as a channel member you are also requested to promote this upcoming binancesignalevent event on crypto groups fb twitter etc and make this signal big bigger and the biggest as our goal binancesignalevent are winwin for everyone 2018-10-01 19:07:21+00:00 1.0 1356364264 6798 a simple guide on alt pumps 1 dont fomo into coins that already pumped 2 look for coins that did pump 3 check their chart history how they looked before they pumped 4 buy the ones that look similar 5 profit 6 24h contact support wolfofwallstreet 2018-08-28 13:02:21+00:00 1.0 1356364264 2726 ocn broke out of the upwards channel a close above it would be super bullish and most likely trigger a mega pump hold your bags buy given at 330 sats profit from buying point 25 still counting one of my biggest holding as of now 2018-05-12 16:53:44+00:00 1.0 1356364264 1819 this coin was pumped yesterday from some korean group total btc volume gained after pump 180+ this signal was our insider info 2018-04-28 07:52:07+00:00 1.0 1356364264 336 check here which coin going to pump on binance today join this link ⚓⚓ 2018-01-13 12:40:54+00:00 1.0 1358301965 2543 zrx big pump incoming buy more 2021-03-18 01:58:11+00:00 1.0 1358301965 2260 엘프 11월 강하게 상승할수있는 코인입니다 rsi 상승다이버젼스를 보여주고 있으며 1시간 봉은 상승이탈하였습니다 또한 좋은소식이 있습니다 elf is a potential coin capable of strong growth in the next november we can see the rsi is oversold and the reversal signal is clear as the 1 hour breakout the market is going to be very active as capitalization increases the elf is very popular with sharks so it may be pushed up in price soon there is a rumor that there will be a big news coming out 2020-11-06 09:01:21+00:00 1.0 1358301965 2144 ost 와같이 업비트에 지분이 많은 코인입니다 시빅 cvc 매수하세요 as u can see upbit pumping a lot alts they pumped ost 300 next coin pump is cvc it will follow ost buy and hold 2020-10-10 08:44:24+00:00 1.0 1358301965 1525 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 16:00:21+00:00 1.0 1358301965 1334 pump results coin bnt low 4020 high 5702 welldone guys more than 45 the power of amazing viewers and buyers cannot go unnoticed keep earning as much as you can✨✨ get ready for the next boom boom✅✅ 실험적인 바이낸스 펌핑도 성공적으로 끝나게되었습니다 2019-10-14 17:28:20+00:00 1.0 1358301965 1308 please sign up bittrex for the next pump ill make a big pump for u send some btc to there 업비트 btc 마켓에 주목하시길 바랍니다 업비트에 비트코인 전송후 대기하세요 큰수익드리도록 하겠습니다 2019-10-09 12:09:11+00:00 1.0 1358301965 598 안녕하세요 어제 모든코인의 기록을 뛰어넘을 엄청나게 큰 상승할 코인을 소개합니다 krwmtl 메탈코인 buy mtl now it will go with big pump 2019-02-20 13:00:01+00:00 1.0 1529195300 1707 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ⭐️ 2022-01-22 18:15:18+00:00 1.0 1529195300 1705 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2120 2022-01-22 17:50:14+00:00 1.0 1529195300 1690 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ⭐️ 2022-01-20 18:15:20+00:00 1.0 1529195300 1688 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2120 2022-01-20 17:50:19+00:00 1.0 1529195300 1664 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ⭐️ 2022-01-15 16:55:36+00:00 1.0 1529195300 1662 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2000 2022-01-15 16:30:39+00:00 1.0 1529195300 1659 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2000 exchange kucoi̇n target 500✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2022-01-15 13:06:30+00:00 1.0 1529195300 1640 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2022-01-11 18:05:16+00:00 1.0 1529195300 1637 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2110 2022-01-11 17:40:10+00:00 1.0 1529195300 1634 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2110 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2022-01-11 14:10:23+00:00 1.0 1529195300 1623 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2022-01-07 18:05:14+00:00 1.0 1529195300 1621 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2110 2022-01-07 17:40:17+00:00 1.0 1529195300 1618 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2110 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2022-01-07 14:10:24+00:00 1.0 1529195300 1606 ⭐️pump time remaining 3 minutes son 3 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2022-01-04 18:07:39+00:00 1.0 1529195300 1604 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2110 2022-01-04 17:40:20+00:00 1.0 1529195300 1601 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2110 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2022-01-04 15:10:27+00:00 1.0 1529195300 1588 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2022-01-02 18:05:03+00:00 1.0 1529195300 1586 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2110 2022-01-02 17:40:08+00:00 1.0 1529195300 1583 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2110 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2022-01-02 14:10:27+00:00 1.0 1529195300 1571 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-30 17:55:13+00:00 1.0 1529195300 1569 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-30 17:30:10+00:00 1.0 1529195300 1566 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-30 15:00:17+00:00 1.0 1529195300 1549 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-27 17:56:20+00:00 1.0 1529195300 1547 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-27 17:30:12+00:00 1.0 1529195300 1543 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-27 14:05:32+00:00 1.0 1529195300 1535 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-25 17:55:19+00:00 1.0 1529195300 1533 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-25 17:30:14+00:00 1.0 1529195300 1530 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-25 14:00:20+00:00 1.0 1529195300 1521 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-23 17:56:07+00:00 1.0 1529195300 1519 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-23 17:30:19+00:00 1.0 1529195300 1516 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-23 14:00:37+00:00 1.0 1529195300 1492 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-19 17:55:16+00:00 1.0 1529195300 1490 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-19 17:30:20+00:00 1.0 1529195300 1487 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-19 15:00:13+00:00 1.0 1529195300 1486 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-19 13:00:24+00:00 1.0 1529195300 1473 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-17 17:55:23+00:00 1.0 1529195300 1471 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-17 17:30:13+00:00 1.0 1529195300 1468 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-17 15:00:15+00:00 1.0 1529195300 1457 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-15 17:30:31+00:00 1.0 1529195300 1454 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-15 15:00:04+00:00 1.0 1529195300 1443 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-13 17:55:15+00:00 1.0 1529195300 1440 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-13 17:30:19+00:00 1.0 1529195300 1437 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-13 14:00:19+00:00 1.0 1529195300 1425 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-11 17:55:12+00:00 1.0 1529195300 1423 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-11 17:30:21+00:00 1.0 1529195300 1420 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-11 14:00:26+00:00 1.0 1529195300 1394 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-07 17:55:14+00:00 1.0 1529195300 1392 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-07 17:30:17+00:00 1.0 1529195300 1388 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-07 14:00:30+00:00 1.0 1529195300 1378 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-05 17:55:16+00:00 1.0 1529195300 1376 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-05 17:30:12+00:00 1.0 1529195300 1371 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-05 14:00:23+00:00 1.0 1529195300 1344 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-12-01 17:55:13+00:00 1.0 1529195300 1343 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-12-01 17:30:21+00:00 1.0 1529195300 1340 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-12-01 15:00:57+00:00 1.0 1529195300 1329 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-30 17:55:16+00:00 1.0 1529195300 1327 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-30 17:30:29+00:00 1.0 1529195300 1323 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-30 14:19:24+00:00 1.0 1529195300 1315 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not emi̇rsi̇z satiş yapmayalim arkadaşlar bi̇rçok defa al sat verecek coi̇n değerlendi̇reli̇m tali̇matlara uyalim lütfen ⭐️ 2021-11-28 16:55:30+00:00 1.0 1529195300 1313 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2000 2021-11-28 16:32:54+00:00 1.0 1529195300 1310 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2000 exchange bi̇nance target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not btc pari̇tesi̇nde olacaktir alim 2021-11-28 14:00:18+00:00 1.0 1529195300 1309 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2000 exchange bi̇nance target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not btc pari̇tesi̇nde olacaktir alim 2021-11-28 13:00:34+00:00 1.0 1529195300 1284 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-23 17:55:21+00:00 1.0 1529195300 1282 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-23 17:30:12+00:00 1.0 1529195300 1279 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-23 15:00:33+00:00 1.0 1529195300 1278 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-23 14:00:21+00:00 1.0 1529195300 1277 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-23 13:00:44+00:00 1.0 1529195300 1253 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-19 17:55:30+00:00 1.0 1529195300 1251 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-19 17:30:10+00:00 1.0 1529195300 1248 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-19 15:00:25+00:00 1.0 1529195300 1247 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-19 14:00:33+00:00 1.0 1529195300 1246 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-19 13:00:32+00:00 1.0 1529195300 1149 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-09 17:55:23+00:00 1.0 1529195300 1147 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-09 17:30:22+00:00 1.0 1529195300 1142 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-09 15:00:18+00:00 1.0 1529195300 1141 ⭐️ pump remai̇ni̇ng time 4hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-09 14:12:23+00:00 1.0 1529195300 1130 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not emi̇rsi̇z satiş yapmayalim arkadaşlar bi̇rçok defa al sat verecek coi̇n değerlendi̇reli̇m tali̇matlara uyalim lütfen ⭐️ 2021-11-07 16:55:00+00:00 1.0 1529195300 1128 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2000 2021-11-07 16:30:02+00:00 1.0 1529195300 1123 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2000 exchange bi̇nance target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not btc pari̇tesi̇nde olacaktir alim 2021-11-07 13:01:02+00:00 1.0 1529195300 1113 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-06 17:55:10+00:00 1.0 1529195300 1111 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-06 17:30:03+00:00 1.0 1529195300 1108 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-06 15:00:00+00:00 1.0 1529195300 1107 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-06 13:02:22+00:00 1.0 1529195300 1095 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-05 17:56:07+00:00 1.0 1529195300 1093 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-05 17:30:25+00:00 1.0 1529195300 1090 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-05 15:00:06+00:00 1.0 1529195300 1089 ⭐️ pump remai̇ni̇ng time 4 hours⭐️ ⭐️pumpa kalan süre 4 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-05 14:08:59+00:00 1.0 1529195300 1087 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-05 13:00:01+00:00 1.0 1529195300 1074 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-03 17:55:48+00:00 1.0 1529195300 1072 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-03 17:30:01+00:00 1.0 1529195300 1069 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-03 15:00:18+00:00 1.0 1529195300 1068 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-03 13:00:33+00:00 1.0 1529195300 1054 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-11-02 17:55:04+00:00 1.0 1529195300 1052 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-11-02 17:30:06+00:00 1.0 1529195300 1049 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 200✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-11-02 13:02:08+00:00 1.0 1529195300 1037 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not emi̇rsi̇z satiş yapmayalim arkadaşlar bi̇rçok defa al sat verecek coi̇n değerlendi̇reli̇m tali̇matlara uyalim lütfen ⭐️ 2021-10-31 16:55:46+00:00 1.0 1529195300 1035 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2000 2021-10-31 16:32:23+00:00 1.0 1529195300 1032 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2000 exchange bi̇nance target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not btc pari̇tesi̇nde olacaktir alim 2021-10-31 14:05:12+00:00 1.0 1529195300 1022 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-10-30 17:55:05+00:00 1.0 1529195300 1020 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-30 17:30:11+00:00 1.0 1529195300 1017 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-10-30 15:07:39+00:00 1.0 1529195300 1016 ⭐️ pump remai̇ni̇ng time 5 hours⭐️ ⭐️pumpa kalan süre 5 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-10-30 13:00:10+00:00 1.0 1529195300 1004 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-10-29 17:55:19+00:00 1.0 1529195300 1002 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-29 17:30:21+00:00 1.0 1529195300 999 ⭐️ pump remai̇ni̇ng time 3 hours⭐️ ⭐️pumpa kalan süre 3 saat⭐️ ti̇me gmt+3 2100 exchange gatei̇o target 150✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ not usdt pari̇tesi̇nde olacaktir alim 2021-10-29 15:00:08+00:00 1.0 1529195300 987 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-10-27 17:55:06+00:00 1.0 1529195300 985 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-27 17:30:03+00:00 1.0 1529195300 965 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir not hedefe gelmeden satiş vermeyeli̇m emi̇rsi̇z satiş yapmayalim ve coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazalim tahtada kaldiğimiz heran yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim⭐️ 2021-10-26 17:55:04+00:00 1.0 1529195300 964 pump time remaining 10 minutes ⭐️ 2021-10-26 17:50:06+00:00 1.0 1529195300 963 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-26 17:31:51+00:00 1.0 1529195300 944 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-24 16:55:13+00:00 1.0 1529195300 943 pump time remaining 10 minutes ⭐️ 2021-10-24 16:50:11+00:00 1.0 1529195300 942 ⭐️ pump remai̇ni̇ng time 1 hours ⭐️ ⭐️pumpa kalan süre 1 saat⭐️ ti̇me gmt+3 2000 exchange bi̇nance target 100✅ bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ 2021-10-24 16:02:50+00:00 1.0 1529195300 927 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-22 17:55:16+00:00 1.0 1529195300 926 pump time remaining 10 minutes ⭐️ 2021-10-22 17:50:22+00:00 1.0 1529195300 925 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-22 17:29:47+00:00 1.0 1529195300 913 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-20 17:55:01+00:00 1.0 1529195300 911 pump time remaining 10 minutes ⭐️ si̇zden ri̇cam tali̇matlara uyum sağlayalim çok güzel bi̇r pump bi̇zi̇ bekli̇yor emi̇rsi̇z satiş vermeyeli̇m ve coi̇ni̇ aldiktan sonra adini hep bi̇rli̇kte gatei̇o haberler kismina yazalim gücümüzü göstereceği̇mi̇z bi̇r pump olacak tahtada kaldiğimiz her daki̇ka yabanci yatirimci çekmek demek bi̇li̇nci̇nde olalim ⭐️ 2021-10-20 17:50:02+00:00 1.0 1529195300 910 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-20 17:30:06+00:00 1.0 1529195300 895 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-19 17:55:13+00:00 1.0 1529195300 894 pump time remaining 10 minutes ⭐️ gücümüzü göstereceği̇mi̇z bi̇r pump olsun coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yazmayi unutmayalim erken satış vermediğimiz heran kazanç demek tahtada kaldığımız heran yabancı yatırımcı çekmemiz demek coin buna gayet elverişli talimatlara uyalım lütfen 2021-10-19 17:50:14+00:00 1.0 1529195300 893 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-19 17:30:03+00:00 1.0 1529195300 879 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-17 17:55:22+00:00 1.0 1529195300 878 pump time remaining 10 minutes ⭐️ 2021-10-17 17:50:01+00:00 1.0 1529195300 877 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-17 17:31:02+00:00 1.0 1529195300 863 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-16 17:55:19+00:00 1.0 1529195300 861 ⭐️ pump remaining time 10 minutes pumpa kalan süre 10 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-16 17:50:00+00:00 1.0 1529195300 860 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-16 17:31:44+00:00 1.0 1529195300 841 ⭐️pump time remaining 2 minutes son 2 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-15 17:58:16+00:00 1.0 1529195300 840 pump time remaining 10 minutes ⭐️ 2021-10-15 17:50:11+00:00 1.0 1529195300 839 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-15 17:28:59+00:00 1.0 1529195300 823 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-13 17:55:02+00:00 1.0 1529195300 822 pump time remaining 10 minutes ⭐️ 2021-10-13 17:50:02+00:00 1.0 1529195300 820 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-13 17:29:43+00:00 1.0 1529195300 781 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-09 17:55:05+00:00 1.0 1529195300 780 pump time remaining 10 minutes ⭐️ 2021-10-09 17:50:16+00:00 1.0 1529195300 779 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-09 17:31:00+00:00 1.0 1529195300 733 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-05 17:55:05+00:00 1.0 1529195300 732 pump time remaining 10 minutes ⭐️ not after receiving the coin we write your name together in the gateio news section coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yaziyoruz 2021-10-05 17:50:04+00:00 1.0 1529195300 731 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-05 17:30:03+00:00 1.0 1529195300 714 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-03 16:55:03+00:00 1.0 1529195300 713 pump time remaining 10 minutes ⭐️ 2021-10-03 16:50:05+00:00 1.0 1529195300 712 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2000 2021-10-03 16:30:07+00:00 1.0 1529195300 711 ⭐️ pump remai̇ni̇ng time 1 hours ⭐️ ⭐️pumpa kalan süre 1 saat⭐️ ti̇me gmt+3 2000 exchange bi̇nance target 200✅ pari̇ty btc bildirimleriniz açık olsun kardeşlerim keep your natifications on ⭐️⭐️⭐️ 2021-10-03 16:00:01+00:00 1.0 1529195300 709 in our binance pump the parity will be btc so you will enter with btc there will be btc pair so be ready it will be supported with heavy purchases it will give 20 percent buy and sell opportunities many times standing on the board even for 5 minutes in the worlds number 1 stock market will attract many investors to coins you will determine your profit margin in this pump you can make your purchases in parts while the sounds of the bull season are heard this pump will take us to many different placesbinance pumpımızda parite btc olacak yani btc ile gireceksiniz btc çifti olacak o yüzden hazır olun yüklü alımlarla destek verilecek birçok defa yüzde 20 lik al sat fırsatları verecek dünyanın 1 numaralı borsasında 5 dakika bile tahtada durmak birçok yatırımcıyı coine çekecektir ses getirecek bu pumpta kar marjınızı kendiniz belirleyeceksiniz alım satımlarınızı parçalı halde yapabilirsiniz boğa sezonun sesleri duyulurken yapacağımız bu pump bizi çok farklı yerlere götürecek ⭐️ 2021-10-03 09:42:35+00:00 1.0 1529195300 707 bi̇nance global next pump day tomorrow ⭐️sunday⭐️ yarin ⭐️pazar⭐️ ti̇me gmt+3 2000 exchange bi̇nance target 200✅ bildirimleriniz açık olsun kardeşlerim keep your notifications on not pump ti̇me gmt+3 2000 2021-10-02 18:36:26+00:00 1.0 1529195300 687 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-10-01 17:55:05+00:00 1.0 1529195300 686 pump time remaining 10 minutes ⭐️ not after receiving the coin we write your name together in the gateio news section coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yaziyoruz 2021-10-01 17:50:38+00:00 1.0 1529195300 685 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-10-01 17:30:07+00:00 1.0 1529195300 669 ⭐️pump time remaining 5 minutes son 5 daki̇ka⭐️ ⭐️⭐️⭐️ the next message will be the coin namebundan sonraki̇ mesaj coi̇n i̇smi̇ olacaktir 2021-09-30 17:55:10+00:00 1.0 1529195300 668 pump time remaining 10 minutes ⭐️ not after receiving the coin we write your name together in the gateio news section coi̇ni̇ aldiktan sonra hep bi̇rli̇kte adini gatei̇o haberler kismina yaziyoruz 2021-09-30 17:50:20+00:00 1.0 1529195300 666 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-09-30 17:30:08+00:00 1.0 1529195300 652 pump time remaining 10 minutes ⭐️ 2021-09-29 17:50:48+00:00 1.0 1529195300 651 ⭐️ pump remaining time 30 minutes pumpa kalan süre 30 daki̇ka ⭐️ ❗️lets stand by ❗️ pump time 2100 2021-09-29 17:35:03+00:00 1.0 1529195300 106 bundan sonraki mesaj coin ismi olacaktır son 5 daki̇ka bugün rekor bi̇r pump yapacağiz 2021-08-20 18:25:14+00:00 1.0 1239798543 4926 ✴️ btc update btcupdate whats new since the last update my dear community well btc has been evolving around its 35000 zone for two sessions with no clear direction for the moment the exchange volume in the previous session was higher than its average level but nothing compared to the selloff of the previous session the daily technical situation is now negative with a macd and a wavetrend that have already crossed downwards over a 4 hour time horizon the situation is reversed with a buy signal given on the wavetrend and a macd that is about to cross on the upside what can be done for the moment it is absolutely necessary that btc closes in 4 hours and for a few candles above its 35000 zone we will then be able to open a position on retracement in the meantime remain cautious i wish you all an excellent day 2021-01-13 08:56:55+00:00 1.0 1239798543 2921 ❗️btc update two rejections❗️ last update i mentioned how we could see a rejection at 10770 well right now were doing just that so whats next bitcoin bull trap right now were seeing almost no volume on this move up and on the 15min timeframe we saw lower volume on every small pump im leaning a bit bearish right now higher timeframe im still looking bullish but looks like were gonna go lower now and if we do pump i dont think well have enough strength to crush 11k surely we need to refuel short and simple enjoy our analysis your 4ctrading team check us out www4ctradingcom 2019-08-19 19:47:46+00:00 1.0 1239798543 2300 ❗️❗️ small update to yesterdays update ❗️❗️ the fractal played out exactly as expected we dumped and were now waiting for the next step to play out the pump so why would we pump hard after dumping like this many dumb traders will most likely short here thinking well have continuation which is the perfect situation to trap tons of people in unprofitable shorts which makes money for bitmex and large whales who are coordinating this next step at the moment is most likely a pump to previous highs 136138usd on ethereum followed by a rejection from there to new lows 2019-03-04 20:45:46+00:00 1.0 1239798543 2233 ❗️bitcoins sideways serenade❗️ after our most recent pump bitcoin has continued its usual business of going sideways and boring everyone who is trading it since the pump weve been stuck in a 2 range for the past 4 days and as you know when bitcoin is slow it gives alts the time to move around on their own without bitcoin affecting them one alt that has seen this sort of action is eos which is up 87 in the past 4 days most other alts have followed btc and gone sideways though some alts have pulled decent increases with alts as ada and ethbtc going up over 2 the sore loser one alt that has suffered largely throughout all of this is trx which has fallen 10 in the past 4 days falling from 730+ to 650 though this was bound to happen eventually after that massive 50 pump we saw on trx ✅btc on btc on the other hand were starting to stabilize on support after the slow grind after the pump now the question is do we go up or do we fall last update 75 voted that we were going to fall down again in trading majority often loses as the whales and market makers make sure to liquidate them as that helps them in various ways do you think the majority is correct or is the majority wrong 2019-02-12 23:04:48+00:00 1.0 1314235217 1080 coin name vc exchange coinealcom market usdt market call is long term target 300600 buy and hold 2019-06-25 20:00:20+00:00 1.0 1314235217 1079 10 mintues left coin name next message 2019-06-25 19:51:15+00:00 1.0 1314235217 1078 1 hour left until coineal pump usdt market 2019-06-25 19:02:06+00:00 1.0 1314235217 1076 2 hours left until coineal pump usdt market 2019-06-25 18:03:58+00:00 1.0 1314235217 1073 megacryptocall time remaining 24 hours target will be 200400 at least i have big insider news about coin first call will be released in tuesday 25 june exchange coinealcom market usdt market✅ sign up and move some funds to buy this low dip coin coin will be released at 8 pm gmt tomorrow staytuned 2019-06-24 19:07:25+00:00 1.0 1314235217 875 pump announcement next pump thursday 30 may 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time bitcoin is up almost 40 since we last pumped some of the bigger alts are having amazing runs and our coin will moon in the middle of all this we will be back with a strong pump and a+ marketing plan dont miss it 2019-05-18 14:18:03+00:00 1.0 1314235217 848 the coin to pump is met exchange yobitnet target +500 market metbtc 2019-04-11 20:00:05+00:00 1.0 1314235217 847 5 minutes left the next message will be the coin make sure you are logged in yobitnet 2019-04-11 19:55:42+00:00 1.0 1314235217 845 30 minutes until the pump be ready for huge gains 2019-04-11 19:31:02+00:00 1.0 1314235217 844 1 hour left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-04-11 19:00:46+00:00 1.0 1314235217 843 1 hour 30 mins left until the pump are you ready for another huge success 2019-04-11 18:33:33+00:00 1.0 1314235217 842 4 hours left until the pump be sure to have enough btc available everything is looking amazing today here we come yobit 2019-04-11 16:02:11+00:00 1.0 1314235217 841 24 hours left until the yobit pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot 2019-04-10 20:00:52+00:00 1.0 1314235217 839 pyx pump game wave 1 pyrexcoin coinmarketcap tiker pyx place stex exchange starting date10042019 3 pm by moscow time trading pair btcpyx pump goal x10 chat for discussions reward rules 1all completed buy orders of pyx will be rewarded in this conditions 100 in btc 1000gpyx 2all resistance buy walls of pyx buy that will be hold on till 1804 will be rewarded in this conditions 1 in btc 5gpyxcanceled walls before end date will be not rewarded golden pyrex coin gpyx erc20 will be tradeablle on our pyrexchange cryptocurrency exchange 1804 and used in services like launchpad vippass discounted trading fees information to get reward shoud be provided to telegram group admin pyrexcoincom 1 screenshot of completed orders your trade history 2 account detailsemail for resistance buy wall will be cheked with stex team if wall is still on hold 2019-04-10 12:29:48+00:00 1.0 1314235217 838 new pump announcement ✅ the next signal will be on thursday the 11 th of april 2000 8 pm gmt exchange yobitnet ⚖️pair btc welcome to all the new members on thursday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices you should sign up and send btc to yobitnet to be ready for the pump 2019-04-07 16:56:36+00:00 1.0 1314235217 836 5 minutes left the next message will be the coin expected gain 70150 2019-04-04 19:55:33+00:00 1.0 1314235217 834 30 minutes until the pump be ready for huge gains 2019-04-04 19:29:31+00:00 1.0 1314235217 833 1 hour left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-04-04 19:00:36+00:00 1.0 1314235217 832 2 hours left until the pump are you ready for another huge success 2019-04-04 17:59:50+00:00 1.0 1314235217 831 6 hours left until the pump be sure to have enough btc available everything is looking amazing today here we come bitrrex 2019-04-04 14:03:10+00:00 1.0 1314235217 830 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot bittrex has 40 million daily volume and we will claim as much of that as we can for our group be sure to have your account loaded and verified and be ready to help promote the coin tomorrow 2019-04-03 20:25:32+00:00 1.0 1314235217 829 pump announcement next pump thursday 3 apr 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2019-03-31 12:02:54+00:00 1.0 1314235217 826 5 minutes left the next message will be the coin expected gain up to 180 2019-03-28 19:55:59+00:00 1.0 1314235217 821 1 hour left before the pump make sure you help promote the coin during the pump 2019-03-28 19:12:52+00:00 1.0 1314235217 820 2 hours left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-03-28 18:01:22+00:00 1.0 1314235217 817 24 hours left before the pump alt coins are going crazy right now a lot of natural pumps and large daily gains this is the best environment to pump in 2019-03-27 20:56:55+00:00 1.0 1314235217 816 48 hours left until the bittrex pump 2000 gmt check your local time daylight savings may have changed your local time exchange bittrex pairing btc free for all pump all pumpers receive the signal at the same time via our bot this pump its going to be huge lot of alt coins are pumping lately outisders will fomo into add all your friends to pump through this link 2019-03-26 20:08:55+00:00 1.0 1314235217 815 pump announcement next pump thursday 28 march 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2019-03-22 21:08:16+00:00 1.0 1314235217 802 cure bittrex pump results start price 1468 peak price 2966 gain 102 2019-03-19 20:34:58+00:00 1.0 1314235217 798 everyone 5 minutes left the next message will be the coin expected gain up to 200 2019-03-19 19:56:28+00:00 1.0 1314235217 795 1 hour left before the pump make sure you help promote the coin during the pump 2019-03-19 19:03:24+00:00 1.0 1314235217 793 2 hours left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-03-19 17:58:56+00:00 1.0 1314235217 785 brx pump results start price 2321 sats peak price 4800 sats gain 107 volume 6 btc 2019-02-26 20:49:37+00:00 1.0 1314235217 784 2 hours left until the pump are you ready for another huge success kindly join our channel coin will be posted there firstly 2019-02-26 18:04:14+00:00 1.0 1314235217 783 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot our volume is increasing every pump with a little more we can be on the bittrex front page as both the top gain and top volume gain by this would be huge for our pump the coin will be released as an image this time to deter bots news will also be given during the pump to spread around in a coordinated effort to increase the buzz around our coin and send the price volume even higher kindly join our channel coin will be posted there firstly 2019-02-25 20:06:22+00:00 1.0 1314235217 781 48 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot altough we are strong and doing very well we encourage you to invite others the more members in our group the more powerful we become and even more effective our coin promoting can be when there are that many more people doing it 2019-02-25 01:01:32+00:00 1.0 1314235217 780 gbg pump results start price 235 sats peak price 684 sats gain 191 volume 864 btc 2019-02-21 20:29:26+00:00 1.0 1314235217 778 1 hour left before the pump make sure you help promote the coin during the pump join other this channel coin will be posted there firstly 2019-02-21 19:09:41+00:00 1.0 1314235217 776 2 hours left until the pump everything is looking amazing today last time we under estimated our reach and could have easily handled double the volume with the amount of outsiders we brought in today we expect double the volume or even more 2019-02-21 17:37:41+00:00 1.0 1314235217 775 3 hours left until the pump everything is looking amazing today last time we under estimated our reach and could have easily handled double the volume with the amount of outsiders we brought in today we expect double the volume or even more 2019-02-21 16:52:45+00:00 1.0 1314235217 773 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot bittrex has 40 million daily volume and we will claim as much of that as we can for our group be sure to have your account loaded and verified and be ready to help promote the coin tomorrow 2019-02-20 20:11:45+00:00 1.0 1314235217 772 pump announcement next pump thursday 21 february 2000 gmt check your local time exchange bittrex pairing btc lets make this pump even better after the huge success of the last pump be ready register your account on bittrex and verify it 2019-02-16 11:24:49+00:00 1.0 1314235217 770 gam bittrex pump results start price 00035960 peak price 00086000 gain 139 this was incredible for our first bittrex pump gam repeaked 6 minutes later on the second wave to 125 as plenty of outsiders jumped in cmc chart looks so pretty as well great job everyone 2019-02-12 21:20:32+00:00 1.0 1314235217 768 2 hours left until the pump everyone today should be nothing short of special our new modified approach will bring even more users incredible gains be sure to send in your success stories and spread the word about your profits and our group afterwards kindly join our this channel coin will be posted there firstly 2019-01-11 18:03:03+00:00 1.0 1314235217 766 everyone 24hours left until our massive pump 2000 gmt check your local time exchange pairing btc we will adjust our goal from trying to give max gains to people to giving gains to max people if you enter this pump you will profit we are looking to receive successstories from almost every user this pump as always the pump is ffa 2019-01-10 20:13:20+00:00 1.0 1314235217 765 otn cryptopia pump results start price 4802 peak price 18293 gain 294 great job promoting today the pump rose very slow and steady and held for almost 10 min 2018-12-06 20:15:58+00:00 1.0 1314235217 756 24 hours left until our massive pump 2000 gmt check your local time exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump 2018-12-03 20:03:00+00:00 1.0 1314235217 755 48 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-12-02 21:00:21+00:00 1.0 1314235217 754 ℹ️ coin signal info ℹ️ exchange cryptopiaconz date5112018 day monday time 6 pm 1800 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 fuzz 110 bsty 237 flax 224 magn 280 mbrs 100 umo 108 market condition is very optimistic to make huge profit in monday be ready to profit btc 2018-11-29 19:34:33+00:00 1.0 1314235217 749 5 minutes left the next message will be the coin exected gain up to 300 2018-11-24 18:55:04+00:00 1.0 1314235217 747 everyone 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-11-24 18:30:04+00:00 1.0 1314235217 743 everyone 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz market condition is ideal today btc stable between 45005000 and expected good profits be ready and dont miss todays profits 2018-11-24 17:00:02+00:00 1.0 1314235217 742 everyone 4 hours left until our big pump informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 700pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-11-24 15:00:04+00:00 1.0 1314235217 740 ℹ️ coin signal info ℹ️ exchange cryptopia date24112018 day saturday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 fuzz 110 bsty 237 flax 224 magn 280 mbrs 100 umo 108 2018-11-24 11:55:39+00:00 1.0 1314235217 732 5 minutes left the next message will be the coin exected gain up to 300 2018-11-22 18:55:00+00:00 1.0 1314235217 730 everyone 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-11-22 18:30:01+00:00 1.0 1314235217 727 everyone 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-11-22 17:00:04+00:00 1.0 1314235217 726 4 hours left until our huge pump exchange cryptopia pairing btc 2018-11-22 15:00:06+00:00 1.0 1314235217 725 everyone 24 hours left until our big pump informations regarding tomorrows signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 700pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-11-21 19:00:01+00:00 1.0 1314235217 724 next pump thursday 22 november 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 0 prepump be ready guys share our link with your friends 2018-11-20 16:34:03+00:00 1.0 1314235217 723 coin mbrs start price 33 peak price 66 although low volume bc of crashed market today but coin hold at 47 for 7 minutes today we will start to pump again one we see a good chance for outsiders to join 2018-11-15 19:17:52+00:00 1.0 1314235217 720 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-15 18:55:01+00:00 1.0 1314235217 717 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-15 18:00:01+00:00 1.0 1314235217 715 everyone 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-15 15:00:03+00:00 1.0 1314235217 714 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked no prepump ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a thursday pump should be full of outsiders 2018-11-14 19:00:04+00:00 1.0 1314235217 713 everyone next pump thursday 15 november 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 0 prepump be ready guys share our link with your friends 2018-11-13 19:00:01+00:00 1.0 1314235217 712 flax cryptopia pump results peak price 234 gain 260 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 1 and 2 minutes later good job today guys 2018-11-12 19:19:00+00:00 1.0 1314235217 707 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-12 18:55:02+00:00 1.0 1314235217 704 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-12 18:00:00+00:00 1.0 1314235217 702 everyone 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-12 15:00:00+00:00 1.0 1314235217 701 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked no prepump ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a monday pump should be full of outsiders 2018-11-11 19:00:00+00:00 1.0 1314235217 700 47 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a wedenesday pump should be full of outsiders 2018-11-10 20:00:28+00:00 1.0 1314235217 699 next pump monday 12 november 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 0 prepump be ready guys share our link with your friends 2018-11-09 11:46:01+00:00 1.0 1314235217 696 bsty cryptopia pump results peak price 197 gain 207 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 1 and 2 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-11-07 19:24:43+00:00 1.0 1314235217 690 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-07 18:55:03+00:00 1.0 1314235217 686 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-11-07 18:00:02+00:00 1.0 1314235217 683 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-07 15:00:02+00:00 1.0 1314235217 681 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-11-06 19:00:02+00:00 1.0 1314235217 679 the coin of the next pump will be posted here firstly 2018-11-05 19:25:35+00:00 1.0 1314235217 678 48 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-11-05 19:00:04+00:00 1.0 1314235217 677 the coin of the next pump will be posted here firstly 2018-11-04 22:04:54+00:00 1.0 1314235217 676 next pump wednesday 7 november 1900 gmt 2200 gmt+3 moscow 7 nov 2100 gmt+2 rome 7 nov 2000 gmt+1 london 7 nov 1500 est new york 7 nov 0500 aest sydney 8 nov 0030 ist delhi 8 nov 0400 jst tokyo 8 nov exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-11-04 22:04:12+00:00 1.0 1314235217 675 the coin of the next pump will be posted here firstly 2018-11-03 17:33:35+00:00 1.0 1314235217 674 30 minutes left we are ready outsiders are waiting and potential is super high lets set new records today 2018-11-03 17:33:15+00:00 1.0 1314235217 673 the coin of the next pump will be posted here firstly 2018-11-03 14:34:54+00:00 1.0 1314235217 672 everyone 4 hours left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-03 14:34:42+00:00 1.0 1314235217 671 the coin of the next pump will be posted here firstly 2018-11-02 18:16:06+00:00 1.0 1314235217 670 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot this will be a saturday pump for the ages all tools triple checked and working optimally weeks ago we shot ivy over 790 with huge volume and extreme outsider buy ins tomorrow we have a very strong chance to do even better than this everyone be ready together we will make this an amazing success 2018-11-02 18:15:22+00:00 1.0 1314235217 668 all cryptopia pump results peak price 339 gain 265 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 2 and 3 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-11-01 19:31:42+00:00 1.0 1314235217 663 everyone 5 minutes left the next post will be the coin be ready guys 2018-11-01 18:55:03+00:00 1.0 1314235217 661 the coin of the next pump will be posted here firstly 2018-11-01 18:30:34+00:00 1.0 1314235217 658 the coin of the next pump will be posted here firstly 2018-11-01 15:01:54+00:00 1.0 1314235217 657 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-11-01 15:01:42+00:00 1.0 1314235217 655 everyone 23 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-10-31 20:08:42+00:00 1.0 1314235217 654 the coin of the next pump will be posted here firstly 2018-10-30 19:05:03+00:00 1.0 1314235217 653 next pump thursday 1 november 1900 gmt 2200 gmt+3 moscow 1 nov 2100 gmt+2 rome 1 nov 2000 gmt+1 london 1 nov 1500 est new york 1 nov 0500 aest sydney 2 nov 0030 ist delhi 2 nov 0400 jst tokyo 2 nov exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-30 19:03:11+00:00 1.0 1314235217 651 the coin of the next pump will be posted here firstly 2018-10-29 19:31:56+00:00 1.0 1314235217 650 magn cryptopia pump results peak price 1506 gain 286 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 3 and 4 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-10-29 19:29:32+00:00 1.0 1314235217 642 everyone 5 minutes left the next post will be the coin be ready guys 2018-10-29 18:55:04+00:00 1.0 1314235217 639 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-10-29 18:00:03+00:00 1.0 1314235217 635 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-29 15:00:04+00:00 1.0 1314235217 633 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-10-28 19:04:32+00:00 1.0 1314235217 629 everyone 3 hours left until the pump we have been doing amazing lately but today will be even bigger and better than normal great volume tons of outsiders max profits 2018-10-27 14:58:53+00:00 1.0 1314235217 627 private group for pump announcement next pump saturday 27 october 1800 gmt 2100 gmt+3 moscow 27 oct 2000 gmt+2 rome 27 oct 1900 gmt+1 london 27 oct 1400 est new york 27 oct 2330 ist delhi 27 oct 0400 aest sydney 28 oct 0300 jst tokyo 28 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time due to our recent success and by popular demand we will pump this saturday another huge pump coming notice the pump time 1800 gmt 2018-10-26 17:15:54+00:00 1.0 1314235217 625 xptx cryptopia pump results peak price 12403 gain 530 seriously an amazing job by everyone promoting the initial peak was high but the second and third peaks 3 and 4 minutes later are great signs of outsiders mooning the coin and feeding us profit 2018-10-25 20:36:52+00:00 1.0 1314235217 622 3 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-25 16:28:16+00:00 1.0 1314235217 620 everyone 22 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great for this pump lets beat our goal and bring in max outsiders 2018-10-24 21:28:15+00:00 1.0 1314235217 613 everyone 1 hour left until our huge pump remember to 1 buy in quickly 2 list your sell in the expected gain range 3 help promote the coin in the cryptopia chat box we have been doing incredible lately and that trend will continue today 2018-10-18 18:31:08+00:00 1.0 1314235217 611 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-18 15:30:47+00:00 1.0 1314235217 610 after the amazing bubo pump we had a generous member donate a portion of their profits so for todays pump we are doing something special and giving it back to the community 1 the user who invests the most in todays pump will recieve a 10 bonus on what they invest if you invested 5 btc and win you will get 05 btc from us on top of your profits 2 a second winner wil be chosen at random from all the entries and win 10 as well become the mvp most valuable pumper submit your orderbook to mvpump so it can be compared to the official logs of the coin max payout 05 btc 2018-10-18 14:40:47+00:00 1.0 1314235217 608 24 hours left until our massive pump exchange sign up pairing btc load account huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we have amazing promotional material ready with our greatest shilling power yet expect 400 gain or more + coin staying up for a long time + tons of outsiders again 2018-10-17 19:30:00+00:00 1.0 1314235217 606 48 hours left until our massive pump exchange cryptopia pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot last pump we held 250 for over 20 minutes and had record amount of outsiders buying in this next pump will be even bigger with a huge goal again expect 400 or more + coin staying up for longer + tons of outsiders again 2018-10-16 19:30:03+00:00 1.0 1314235217 604 next pump thursday 18 october 1930 gmt 2230 gmt+3 moscow 18 oct 2130 gmt+2 rome 18 oct 2030 gmt+1 london 18 oct 1530 est new york 19 oct 0530 aest sydney 19 oct 0100 ist delhi 19 oct 0430 jst tokyo 19 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-14 14:25:41+00:00 1.0 1314235217 598 bubo cryptopia pump results start price 68 peak price 273 gain 301 today was amazing for outsiders as we predicted keep up the good work everyone 2018-10-11 20:03:02+00:00 1.0 1314235217 594 30 minutes left news to promote in the cryptopia chatbox and all over social media will be supplied shortly after the coin annuoncement 2018-10-11 19:00:03+00:00 1.0 1314235217 593 1 hour left until our massive pump this will be huge 2018-10-11 18:30:03+00:00 1.0 1314235217 592 2 hours left until our massive pump we have great coin news and shilling prepared for today along with 2000 new members make sure you are doing your part and helping promote the coin in the chatbox after you are bought in this pump will be huge and filmed to use as promotional material help us make this the best pump ever lets blast over our goal again this pump 2018-10-11 17:30:03+00:00 1.0 1314235217 591 4 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-11 15:30:02+00:00 1.0 1314235217 590 24 hours left until our massive pump exchange cryptopia wwwcryptopiaconz pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot together our family has grown by over 2000 users in 1 week this says a lot about our past success but also about our future success we are stronger than ever and will have an incredible pump tomorrow improved shilling for this pump featured website hosting the coin news social media influencers promoting our shilling tools at full strength 2000 more users to spread fomo about the coin bringing in outsiders is how we maximize earnings and tomorrow we will do the best weve ever done at that be ready for huge profits 2018-10-10 19:30:04+00:00 1.0 1314235217 589 due to our recent success and relentless advertising our family of groups has grown a lot this past week 2000 new members this means our market power and coin promoting reach is the largest its ever been our next pump will be the biggest and most successful pump in this groups history you will not want to miss it you can expect the most volume highest percent gain highest member profits ever we will push our coin well above 200 and then promote it with our highly improved method featuring real websites custom build tools and our chatbox shill next pump thursday 11 october 1930 gmt exchange wwwcryptopiaconz pairing btc 2018-10-10 11:55:00+00:00 1.0 1314235217 580 everyone 5 minutes left next message will be the coin 2018-10-09 16:55:00+00:00 1.0 1314235217 579 10 minutes left expected gains up to 300 470 2018-10-09 16:50:04+00:00 1.0 1314235217 577 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-09 16:00:01+00:00 1.0 1314235217 576 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-10-09 15:00:03+00:00 1.0 1314235217 575 4 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 500 pm gmt 2018-10-09 13:00:00+00:00 1.0 1314235217 574 ℹ️ coin signal info ℹ️ exchange cryptopia date9102018 day tuesday time 5 pm 1700 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 fuzz 110 support us please and invite your friends to join us and increase our pump power 2018-10-08 20:36:55+00:00 1.0 1314235217 573 analysis well done again today guys coin fuzz low 101 high 213 profit 110 remember for tomorrow pump buy and hold never panic sell you see holders profit today share our link and invite your friends to profit with us 2018-10-08 18:08:02+00:00 1.0 1314235217 567 everyone 5 minutes left next message will be the coin 2018-10-08 16:55:04+00:00 1.0 1314235217 566 10 minutes left expected gains up to 300 470 2018-10-08 16:50:03+00:00 1.0 1314235217 564 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-08 15:59:04+00:00 1.0 1314235217 563 4 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 500 pm gmt 2018-10-08 13:08:40+00:00 1.0 1314235217 562 ℹ️ coin signal info ℹ️ exchange cryptopia date8102018 day monday time 5 pm 1700 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 yovi 140 support us please and invite your friends to join us and increase our pump power 2018-10-07 20:04:00+00:00 1.0 1314235217 561 analysis well done again today guys coin yovi start 323 high 775 profit 140 remember for tomorrow pump buy and hold never panic sell you see holders profit today share our link and invite your friends to profit with us 2018-10-07 17:54:58+00:00 1.0 1314235217 555 everyone 5 minutes left next message will be the coin 2018-10-07 16:55:03+00:00 1.0 1314235217 554 10 minutes left expected gains up to 300 470 2018-10-07 16:50:03+00:00 1.0 1314235217 552 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-07 16:00:02+00:00 1.0 1314235217 551 2 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-07 15:04:43+00:00 1.0 1314235217 550 4 hours left until our huge pump exchange cryptopia pairing btc 2018-10-07 13:00:01+00:00 1.0 1314235217 549 10 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 500 pm gmt 2018-10-07 07:00:07+00:00 1.0 1314235217 548 ℹ️ coin signal info ℹ️ exchange cryptopia date7102018 day sunday time 5 pm 1700 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 egc 105 dope 123 support us please and invite your friends to join us and increase our pump power 2018-10-06 21:30:00+00:00 1.0 1314235217 547 analysis well done again today guys coin dope start 148 high 330 profit 123 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-10-06 20:36:53+00:00 1.0 1314235217 544 everyone 5 minutes left next message will be the coin 2018-10-06 19:25:00+00:00 1.0 1314235217 543 10 minutes left expected gains up to 300 470 2018-10-06 19:20:04+00:00 1.0 1314235217 541 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump 2018-10-06 18:30:04+00:00 1.0 1314235217 540 2 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-10-06 17:30:00+00:00 1.0 1314235217 539 under 4 hours left until the huge pump exchange cryptopia pairing btc todays pump will be historical make sure you have much btc in your balance to maximize your profits and invite all your friends to our pump through this link 2018-10-06 15:30:00+00:00 1.0 1314235217 538 just under 19 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this this will be a historic pump pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we are aiming to make it the largest pump ever done on cryptopia tuesdays pump was outstanding with a goal of 300450 we blasted all the way through to 796 can we do this again theres only 1 way to find out invite your friends through below link quickly 2018-10-05 23:46:59+00:00 1.0 1314235217 537 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot our coin promoting will be the best its ever been this pump and all members should see their best gains there are 48 hours left to invite friends to help increase our power even more also invite your friends and be ready with all btc 2018-10-04 18:58:29+00:00 1.0 1314235217 536 hey guys next pump saturday 6 october 1930 gmt 2230 gmt+3 moscow 6 oct 2130 gmt+2 rome 6 oct 2030 gmt+1 london 6 oct 1530 est new york 6 oct 0530 aest sydney 7 oct 0100 ist delhi 7 oct 0430 jst tokyo 7 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time lets do this new pump epic as the today one also invite your friends by sharing this link to get more power to our pump 2018-10-02 21:07:53+00:00 1.0 1314235217 535 analysis well done again today guys coin egc start 945 high 1939 profit 105 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-10-02 20:28:03+00:00 1.0 1314235217 532 5 minutes left the next message will be the coin exected gain up to 500 2018-10-02 18:55:01+00:00 1.0 1314235217 531 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-10-02 18:30:01+00:00 1.0 1314235217 529 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-10-02 17:00:02+00:00 1.0 1314235217 528 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-10-02 16:30:42+00:00 1.0 1314235217 527 3 hours left until our huge pump in cryptopia time 7 pm gmt 2018-10-02 16:00:01+00:00 1.0 1314235217 526 6 hours left until our huge pump time 7 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-10-02 13:00:00+00:00 1.0 1314235217 525 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 700 pm gmt 2018-10-02 07:00:07+00:00 1.0 1314235217 524 ℹ️ coin signal info ℹ️ exchange cryptopia date2102018 day tuesday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 hst 138 support us please and invite your friends to join us and increase our pump power 2018-10-01 22:23:56+00:00 1.0 1314235217 523 analysis well done again today guys coin hst start 1837 high 4225 profit 138 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-10-01 22:00:13+00:00 1.0 1314235217 520 5 minutes left the next message will be the coin exected gain up to 500 2018-10-01 18:55:06+00:00 1.0 1314235217 519 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-10-01 18:30:00+00:00 1.0 1314235217 517 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-10-01 17:00:03+00:00 1.0 1314235217 516 3 hours left until our huge pump in cryptopia time 7 pm gmt 2018-10-01 16:00:01+00:00 1.0 1314235217 515 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-10-01 14:30:00+00:00 1.0 1314235217 514 6 hours left until our huge pump time 7 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-10-01 13:00:02+00:00 1.0 1314235217 513 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 700 pm gmt 2018-10-01 07:00:04+00:00 1.0 1314235217 512 ℹ️ coin signal info ℹ️ exchange cryptopia date1102018 day monday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 can 151 support us please and invite your friends to join us and increase our pump power 2018-09-30 21:42:42+00:00 1.0 1314235217 511 analysis well done again today guys coin can start 773 high 1945 profit 151 woow good profits for today again wait us in the next pump share our link and invite your friends to profit with us 2018-09-30 19:19:35+00:00 1.0 1314235217 508 5 minutes left the next message will be the coin exected gain 150400 2018-09-30 18:25:05+00:00 1.0 1314235217 507 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-30 18:00:02+00:00 1.0 1314235217 505 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-30 16:30:03+00:00 1.0 1314235217 504 3 hours left until our huge pump in cryptopia time 630 pm gmt 2018-09-30 15:30:01+00:00 1.0 1314235217 503 6 hours left until our huge pump time 630 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-30 12:30:02+00:00 1.0 1314235217 502 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 630 pm gmt 2018-09-30 06:30:03+00:00 1.0 1314235217 501 ℹ️ coin signal info ℹ️ exchange cryptopia date3092018 day sunday time 630 pm 1830 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 oxy 102 support us please and invite your friends to join us and increase our pump power 2018-09-29 21:20:23+00:00 1.0 1314235217 500 analysis well done again today guys coin oxy start 594 high 1200 profit 102 voulme 2 btc wait us for tomorrow pump at 630 pm gmt again share our link and invite your friends to profit with us 2018-09-29 20:36:20+00:00 1.0 1314235217 494 5 minutes left the next message will be the coin exected gain 150400 2018-09-29 18:25:01+00:00 1.0 1314235217 493 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-29 18:00:03+00:00 1.0 1314235217 491 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-29 16:30:02+00:00 1.0 1314235217 490 3 hours left until our huge pump in cryptopia time 630 pm gmt 2018-09-29 15:30:00+00:00 1.0 1314235217 489 6 hours left until our huge pump time 630 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-29 12:30:02+00:00 1.0 1314235217 488 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 630 pm gmt 2018-09-29 06:30:01+00:00 1.0 1314235217 487 ℹ️ coin signal info ℹ️ exchange cryptopia date2992018 day saturday time 630 pm 1830 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 rep 146 support us please and invite your friends to join us and increase our pump power 2018-09-28 19:57:40+00:00 1.0 1314235217 485 analysis well done again today guys coin rep one of top 100 coins of coinmarketcap start 000200 high 0004927 profit 146 voulme 35 btc we profit in one pump what others dont profit in 1000 trade wait us for tomorrow pump at 630 pm gmt again share our link and invite your friends to profit with us 2018-09-28 18:58:58+00:00 1.0 1314235217 484 too pretty pump today guys coin till now holding its position at 0004455 love you all guys cuz you follow instructions volume 3 btc 2018-09-28 18:44:19+00:00 1.0 1314235217 480 5 minutes left the next message will be the coin exected gain 150400 2018-09-28 18:25:04+00:00 1.0 1314235217 479 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-28 18:00:02+00:00 1.0 1314235217 477 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-28 16:30:00+00:00 1.0 1314235217 476 3 hours left until our huge pump in cryptopia time 630 pm gmt 2018-09-28 15:30:03+00:00 1.0 1314235217 475 6 hours left until our huge pump time 630 pm gmt news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-28 12:30:04+00:00 1.0 1314235217 474 11 hours 30 mins left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains remember pump time at 630 pm gmt 2018-09-28 07:01:58+00:00 1.0 1314235217 473 ℹ️ coin signal info ℹ️ exchange cryptopia date2892018 day friday time 630 pm 1830 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 synx 171 support us please and invite your friends to join us and increase our pump power 2018-09-27 23:09:50+00:00 1.0 1314235217 468 5 minutes left the next message will be the coin exected gain 150300 2018-09-27 18:55:02+00:00 1.0 1314235217 467 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-27 18:30:04+00:00 1.0 1314235217 464 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-27 17:00:00+00:00 1.0 1314235217 463 3 hours left until our huge pump 2018-09-27 16:00:01+00:00 1.0 1314235217 461 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-09-27 14:37:52+00:00 1.0 1314235217 460 6 hours left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-27 13:00:00+00:00 1.0 1314235217 459 12 hours left until the pump for new members sign up in cryptopia exchange from here remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-09-27 07:00:03+00:00 1.0 1314235217 458 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profit ℹ️ coin signal info ℹ️ exchange cryptopia date2792018 day thursday time 7 pm 1900 gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 xid 381 support us please and invite your friends to join us and increase our pump power 2018-09-26 22:30:08+00:00 1.0 1314235217 443 5 minutes left the next message will be the coin exected gain 150300 2018-09-26 18:55:01+00:00 1.0 1314235217 442 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-26 18:30:02+00:00 1.0 1314235217 439 2 hours left until our huge pump make sure your btc is ready in cryptopiaconz 2018-09-26 17:00:03+00:00 1.0 1314235217 438 3 hours left until our huge pump 2018-09-26 16:00:03+00:00 1.0 1314235217 437 hello guys some members dont know spam spam after you buy the coin of the pump you go to cryptpia chatbox here then you post coin name with some hype 1 coin is mooning 2 coin on fire 3 coin has 1000 pieces give away like this examples you can say whatever you see is good to attract investors today if we all spam in chat i think volume will be at least 23 btc then after we spam we will sell at the top pice after outsiders buy our top prices good luck and be ready with your btc ❤️ 2018-09-26 15:33:03+00:00 1.0 1314235217 436 6 hours left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-26 13:12:12+00:00 1.0 1314235217 431 10 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains 2018-09-26 08:55:58+00:00 1.0 1314235217 430 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2692018 day wedensday time 7 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 spr 211 support us please and invite your friends to join us and increase our pump power 2018-09-25 23:26:30+00:00 1.0 1314235217 424 the coin to pump is spr exchange cryptopiaconz target +500 market sprbtc 2018-09-25 17:00:01+00:00 1.0 1314235217 423 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-25 16:55:01+00:00 1.0 1314235217 422 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-25 16:50:00+00:00 1.0 1314235217 418 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-25 13:00:01+00:00 1.0 1314235217 415 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-25 06:30:00+00:00 1.0 1314235217 414 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2592018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 aur 88 gno 137 support us please and invite your friends to join us and increase our pump power 2018-09-24 20:30:00+00:00 1.0 1314235217 413 analysis coin aur start 4848 high 9123 profit 88 after we initiated its price surge on time the altcoin aur got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors aur surged more by then to +88 as investors orders were listed gradually we witnessed a strong support levels between +70 and +83 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 200300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-24 19:29:22+00:00 1.0 1314235217 410 the coin to pump is aur exchange cryptopiaconz target +500 market aurbtc 2018-09-24 17:00:01+00:00 1.0 1314235217 409 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-24 16:55:00+00:00 1.0 1314235217 408 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-24 16:50:04+00:00 1.0 1314235217 404 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-24 13:00:01+00:00 1.0 1314235217 402 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-24 06:30:03+00:00 1.0 1314235217 401 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2492018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 gno 137 support us please and invite your friends to join us and increase our pump power 2018-09-23 20:15:00+00:00 1.0 1314235217 400 analysis coin gno start 000398 high 000944 profit 137 after we initiated its price surge on time the altcoin gno got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors gno surged more by then to +137 as investors orders were listed gradually we witnessed a strong support levels between +98 and +110 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-23 19:13:07+00:00 1.0 1314235217 397 the coin to pump is gno exchange cryptopiaconz target +500 market gnobtc 2018-09-23 17:00:03+00:00 1.0 1314235217 396 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-23 16:55:02+00:00 1.0 1314235217 395 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-23 16:50:01+00:00 1.0 1314235217 391 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-23 13:00:02+00:00 1.0 1314235217 389 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-23 06:35:04+00:00 1.0 1314235217 388 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2392018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 support us please and invite your friends to join us and increase our pump power 2018-09-22 19:23:36+00:00 1.0 1314235217 387 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2392018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 support us please and invite your friends to join us and increase our pump power 2018-09-22 19:23:32+00:00 1.0 1314235217 382 the coin to pump is skr exchange cryptopiaconz target +500 market skrbtc 2018-09-22 17:00:03+00:00 1.0 1314235217 381 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-22 16:55:01+00:00 1.0 1314235217 380 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-22 16:50:00+00:00 1.0 1314235217 376 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-22 13:00:00+00:00 1.0 1314235217 374 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-22 06:30:04+00:00 1.0 1314235217 373 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2292018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 zny 209 support us please and invite your friends to join us and increase our pump power 2018-09-21 20:56:24+00:00 1.0 1314235217 372 analysis coin zny start 97 high 300 profit 209 volume 163 btc after we initiated its price surge on time the altcoin zny got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors zny surged more by then to +209 as investors orders were listed gradually we witnessed a strong support levels between +150 and +170 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-21 19:32:29+00:00 1.0 1314235217 368 the coin to pump is zny exchange cryptopiaconz target +500 market znybtc 2018-09-21 17:00:02+00:00 1.0 1314235217 367 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-21 16:55:01+00:00 1.0 1314235217 366 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-21 16:50:01+00:00 1.0 1314235217 362 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-21 13:00:00+00:00 1.0 1314235217 360 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-21 06:30:00+00:00 1.0 1314235217 359 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2192018 day friday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 xst 101 support us please and invite your friends to join us and increase our pump power 2018-09-20 21:30:01+00:00 1.0 1314235217 358 analysis coin xst start 2213 high 4268 volume 18 btc after we initiated its price surge on time the altcoin xst got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors egc surged more by then to +101 as investors orders were listed gradually we witnessed a strong support levels between +73 and +90 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-20 20:00:03+00:00 1.0 1314235217 352 the coin to pump is xst exchange cryptopiaconz target +500 market xstbtc 2018-09-20 17:00:02+00:00 1.0 1314235217 351 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-20 16:55:01+00:00 1.0 1314235217 350 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-20 16:50:00+00:00 1.0 1314235217 346 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-20 13:00:04+00:00 1.0 1314235217 344 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-20 06:30:09+00:00 1.0 1314235217 341 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2092018 day thursday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 egc 125 support us please and invite your friends to join us and increase our pump power 2018-09-19 22:01:48+00:00 1.0 1314235217 340 analysis coin egc start 843 high 1901 increase +125 after we initiated its price surge on time the altcoin egc got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors egc surged more by then to +138 as investors orders were listed gradually we witnessed a strong support levels between +120 and +125 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-19 21:01:41+00:00 1.0 1314235217 336 the coin to pump is egc exchange cryptopiaconz target +500 market egcbtc 2018-09-19 17:00:02+00:00 1.0 1314235217 335 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-19 16:55:01+00:00 1.0 1314235217 334 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-19 16:50:01+00:00 1.0 1314235217 330 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-19 13:00:01+00:00 1.0 1314235217 328 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-19 06:30:04+00:00 1.0 1314235217 327 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1992018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 tx 135 support us please and invite your friends to join us and increase our pump power 2018-09-18 20:30:02+00:00 1.0 1314235217 326 analysis coin tx start 3400 high 7998 increase +138 after we initiated its price surge on time the altcoin tx got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors tx surged more by then to +138 as investors orders were listed gradually we witnessed a strong support levels between +79 and +116 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-18 19:00:00+00:00 1.0 1314235217 322 the coin to pump is tx exchange cryptopiaconz target +500 market txbtc 2018-09-18 17:00:00+00:00 1.0 1314235217 321 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-18 16:55:03+00:00 1.0 1314235217 320 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-18 16:50:03+00:00 1.0 1314235217 316 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-18 13:00:01+00:00 1.0 1314235217 314 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-18 06:30:01+00:00 1.0 1314235217 313 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1892018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 xmg 138 support us please and invite your friends to join us and increase our pump power 2018-09-17 21:09:57+00:00 1.0 1314235217 312 good job guys coin name xmg today we did it again with volume16 btc pump started at 1100 reached max at 2618 profit 138 second wave push coin again till nowfrom 2000 to 2618 satoshi good job today guys and congratulation for holders who sold at high rate we expect more jump tommorrow be ready as our pump is the best way to profit in this bear market 2018-09-17 18:52:43+00:00 1.0 1314235217 308 the coin to pump is xmg exchange cryptopiaconz target +500 market xmgbtc 2018-09-17 17:00:02+00:00 1.0 1314235217 307 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-17 16:55:01+00:00 1.0 1314235217 306 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-17 16:50:00+00:00 1.0 1314235217 302 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-17 13:00:02+00:00 1.0 1314235217 300 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-17 06:30:02+00:00 1.0 1314235217 299 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1792018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 amp 101 soil 96 support us please and invite your friends to join us and increase our pump power 2018-09-16 19:56:09+00:00 1.0 1314235217 295 the coin to pump is soil exchange cryptopiaconz target +500 market soilbtc 2018-09-16 17:00:04+00:00 1.0 1314235217 294 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin it will be huge signal today buy fast when announced 2018-09-16 16:55:03+00:00 1.0 1314235217 293 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-16 16:50:02+00:00 1.0 1314235217 289 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-16 13:00:01+00:00 1.0 1314235217 287 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-16 06:30:02+00:00 1.0 1314235217 286 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1692018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 support us please and invite your friends to join us and increase our pump power 2018-09-15 20:06:49+00:00 1.0 1314235217 282 the coin to pump is amp exchange cryptopiaconz target +500 market ampbtc 2018-09-15 17:00:11+00:00 1.0 1314235217 281 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-15 16:55:02+00:00 1.0 1314235217 280 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-15 16:50:01+00:00 1.0 1314235217 276 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-15 13:00:02+00:00 1.0 1314235217 274 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-15 06:30:01+00:00 1.0 1314235217 273 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1592018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 support us please and invite your friends to join us and increase our pump power 2018-09-14 20:34:58+00:00 1.0 1314235217 268 the coin to pump is bnc exchange cryptopiaconz target +500 market bncbtc 2018-09-14 17:00:00+00:00 1.0 1314235217 267 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-14 16:55:03+00:00 1.0 1314235217 266 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-14 16:50:02+00:00 1.0 1314235217 262 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-14 13:00:04+00:00 1.0 1314235217 260 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-14 06:30:02+00:00 1.0 1314235217 259 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1492018 day friday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 ltcu 116 support us please and invite your friends to join us and increase our pump power 2018-09-13 21:00:03+00:00 1.0 1314235217 258 analysis coin ltcu start 173 high 386 increase +116 after we initiated its price surge on time the altcoin ltcu got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors ltcu surged more by then to +116 as investors orders were listed gradually we witnessed a strong support levels between +98 and +116 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-13 19:00:04+00:00 1.0 1314235217 254 the coin to pump is ltcu exchange cryptopiaconz target +500 market ltcubtc 2018-09-13 17:00:03+00:00 1.0 1314235217 253 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-13 16:55:02+00:00 1.0 1314235217 252 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-13 16:50:06+00:00 1.0 1314235217 248 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-13 13:00:02+00:00 1.0 1314235217 246 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-13 06:30:01+00:00 1.0 1314235217 245 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1392018 day thursday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 chess 184 support us please and invite your friends to join us and increase our pump power 2018-09-12 22:40:09+00:00 1.0 1314235217 243 analysis coin chess start 37 high 105 increase +184 after we initiated its price surge on time the altcoin chess got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors chess surged more by then to +184 as investors orders were listed gradually we witnessed a strong support levels between +157 and +184 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-12 19:30:03+00:00 1.0 1314235217 239 the coin to pump is chess exchange cryptopiaconz target +500 market chessbtc 2018-09-12 17:00:04+00:00 1.0 1314235217 238 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-12 16:55:03+00:00 1.0 1314235217 237 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-12 16:50:01+00:00 1.0 1314235217 233 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-12 13:00:02+00:00 1.0 1314235217 231 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-12 06:30:01+00:00 1.0 1314235217 230 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1292018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 opal 156 support us please and invite your friends to join us and increase our pump power 2018-09-11 21:00:03+00:00 1.0 1314235217 229 analysis coin opal start 293 high 750 increase +156 after we initiated its price surge on time the altcoin opal got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors opal surged more by then to +137 as investors orders were listed gradually we witnessed a strong support levels between +137 and +156 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-11 18:39:26+00:00 1.0 1314235217 224 the coin to pump is opal exchange cryptopiaconz target +500 market opalbtc 2018-09-11 17:00:04+00:00 1.0 1314235217 223 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-11 16:55:03+00:00 1.0 1314235217 222 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-11 16:50:01+00:00 1.0 1314235217 218 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-11 13:00:05+00:00 1.0 1314235217 216 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-11 06:27:41+00:00 1.0 1314235217 215 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1192018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 alt 100 support us please and invite your friends to join us and increase our pump power 2018-09-10 21:00:06+00:00 1.0 1314235217 210 the coin to pump is alt exchange cryptopiaconz target +500 market altbtc 2018-09-10 17:00:02+00:00 1.0 1314235217 209 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-10 16:55:01+00:00 1.0 1314235217 208 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-10 16:50:00+00:00 1.0 1314235217 204 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-10 13:00:03+00:00 1.0 1314235217 202 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-10 05:56:24+00:00 1.0 1314235217 201 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date1092018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 chan 132 support us please and invite your friends to join us and increase our pump power 2018-09-09 22:00:04+00:00 1.0 1314235217 195 the coin to pump is chan exchange cryptopiaconz target +500 market chanbtc 2018-09-09 17:00:01+00:00 1.0 1314235217 194 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-09 16:55:04+00:00 1.0 1314235217 193 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-09 16:50:03+00:00 1.0 1314235217 189 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-09 13:00:08+00:00 1.0 1314235217 187 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-09 06:18:37+00:00 1.0 1314235217 186 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date992018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 fuzz 123 coin of tomorrows pump will be added here 2018-09-08 22:01:40+00:00 1.0 1314235217 185 analysis coin fuzz start 108 high 241 increase +123 after we initiated its price surge on time the altcoin fuzz got pushed to the 1 on cryptopias market ranking marketing team advertised the signal simultaneously which resulted in great attention from markets community investors fuzz surged more by then to +123 as investors orders were listed gradually we witnessed a strong support levels between +90 and +123 as you were clearing out your sell orders with good profits this signal will strongly remind all of us to hold the price higher on the next one this way we can clear sells with outsiders at over 300++ easily again congratulations to members who took part today enjoy your earnings and stay tuned for further information about tomorrows pump 2018-09-08 20:28:33+00:00 1.0 1314235217 179 the coin to pump is fuzz exchange cryptopiaconz target +500 market fuzzbtc 2018-09-08 17:00:01+00:00 1.0 1314235217 178 ⚠️ only 5 minutes until we get the signal ℹ️ the next post will be the coin name + link 2018-09-08 16:55:00+00:00 1.0 1314235217 177 ⏱ only 10 minutes left❗️ ⚠️ we are all logged in to cryptopia now and ready on btc market remember to follow the instructions 2018-09-08 16:50:03+00:00 1.0 1314235217 173 ⏱ under 4 hours to go ℹ️ huge signal coming our way again market insiders bringing us a very bullish altcoin massive price rally is expected +346 on the previous one dont miss out on the big profits ahead be ready on time 2018-09-08 13:00:03+00:00 1.0 1314235217 171 informations regarding todays signal sign up and send your btc to your wallet wwwcryptopiaconzexchange ⏱ today at 500pm gmt exactly name of the coin will be broadcast here be at your computer early open telegram and log in to your cryptopia account ℹ️ on btc market type the coin name in the search bar ▶️ to buy in click on sell orders higher than the first ones listed then click your available btc value cryptopia will calculate the amount of coins click buy and complete your order quickly after posting the signal the coin will be heavily advertised and will have a strong market impact ranking 1 on cryptopia market resulting in waves of investorsbuyers among cryptopia community hold while the price will be increasing at a great rate to sell out you can either list your order at the peak price levels or you can meet gradually the strong waves of buy orders we advise you to sell in pieces to keep the price very attractive to the outside investors the price will keep raising up allowing all of us to sell at great profits 2018-09-08 05:59:07+00:00 1.0 1314235217 170 important note there wont be any picture for coin name captcha of tommorows pump we will send coin name + link only as we did before 2018-09-07 18:46:40+00:00 1.0 1314235217 169 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date892018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak 142 duo 232 vrc 106 umo 122 dope 128 coin of tomorrows pump will be added here 2018-09-07 18:43:28+00:00 1.0 1314235217 164 the coin to pump is dope exchange cryptopiaconz target +500 market dopebtc 2018-09-07 17:00:04+00:00 1.0 1314235217 162 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-07 16:55:03+00:00 1.0 1314235217 160 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-07 16:40:01+00:00 1.0 1314235217 159 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-07 16:30:04+00:00 1.0 1314235217 158 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-07 16:00:03+00:00 1.0 1314235217 157 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-07 14:00:02+00:00 1.0 1314235217 156 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-07 12:00:01+00:00 1.0 1314235217 155 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hours 30 mins until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-07 06:38:26+00:00 1.0 1314235217 154 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date792018 day firday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 vrv 106 ccn 130 coin of tomorrow pump will be added here 2018-09-06 19:30:04+00:00 1.0 1314235217 149 the coin to pump is ccn exchange cryptopiaconz target +500 market ccnbtc 2018-09-06 17:00:04+00:00 1.0 1314235217 147 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-06 16:55:03+00:00 1.0 1314235217 145 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-06 16:40:01+00:00 1.0 1314235217 144 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-06 16:30:00+00:00 1.0 1314235217 143 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-06 16:00:03+00:00 1.0 1314235217 142 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-06 14:01:05+00:00 1.0 1314235217 141 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-06 12:11:56+00:00 1.0 1314235217 140 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours 30 mins until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-06 09:20:56+00:00 1.0 1314235217 139 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date592018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 vrv 106 umo 122 coin of todays pump will be added here 2018-09-06 06:38:49+00:00 1.0 1314235217 134 the coin to pump is umo exchange cryptopiaconz target +500 market umobtc 2018-09-05 17:00:04+00:00 1.0 1314235217 132 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-05 16:55:03+00:00 1.0 1314235217 130 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-05 16:40:02+00:00 1.0 1314235217 128 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-05 16:30:04+00:00 1.0 1314235217 127 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-05 16:00:08+00:00 1.0 1314235217 126 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-05 14:01:42+00:00 1.0 1314235217 125 ℹ️ 4 hours 30 mins until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-05 12:29:30+00:00 1.0 1314235217 124 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 05092018 wedensday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-05 10:08:38+00:00 1.0 1314235217 123 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date592018 day wednesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 vrv 106 coin of tomorrow pump will be added here 2018-09-04 20:24:11+00:00 1.0 1314235217 118 the coin to pump is vrc exchange cryptopiaconz target +500 market vrcbtc 2018-09-04 17:00:01+00:00 1.0 1314235217 117 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-04 16:55:03+00:00 1.0 1314235217 115 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-04 16:40:02+00:00 1.0 1314235217 114 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-04 16:30:04+00:00 1.0 1314235217 113 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-04 16:00:01+00:00 1.0 1314235217 112 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-04 14:00:07+00:00 1.0 1314235217 111 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-04 12:00:10+00:00 1.0 1314235217 110 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 04092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-04 09:28:31+00:00 1.0 1314235217 109 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date492018 day tuesday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 duo 232 coin of tomorrow pump will be added here 2018-09-03 19:08:32+00:00 1.0 1314235217 104 the coin to pump is duo exchange cryptopiaconz target +500 market duobtc 2018-09-03 17:00:03+00:00 1.0 1314235217 103 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-03 16:55:01+00:00 1.0 1314235217 101 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-03 16:40:03+00:00 1.0 1314235217 100 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-03 16:30:02+00:00 1.0 1314235217 99 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-03 16:00:01+00:00 1.0 1314235217 98 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-03 14:00:02+00:00 1.0 1314235217 97 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-03 11:59:46+00:00 1.0 1314235217 96 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 03092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-03 09:01:14+00:00 1.0 1314235217 95 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date392018 day monday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 emc2 117 cloak142 coin of tomorrow pump will be added here 2018-09-02 23:12:57+00:00 1.0 1314235217 90 the coin to pump is emc2 exchange cryptopiaconz target +500 market emc2btc 2018-09-02 17:00:03+00:00 1.0 1314235217 89 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-02 16:55:02+00:00 1.0 1314235217 87 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-02 16:40:04+00:00 1.0 1314235217 86 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-02 16:30:03+00:00 1.0 1314235217 85 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-02 16:00:03+00:00 1.0 1314235217 84 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-02 14:00:02+00:00 1.0 1314235217 83 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-02 12:00:03+00:00 1.0 1314235217 82 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 02092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-02 09:00:04+00:00 1.0 1314235217 81 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date292018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 cloak142 coin of tomorrow pump will be added here 2018-09-02 09:00:03+00:00 1.0 1314235217 80 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date292018 day sunday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 cloak142 coin of tomorrow pump will be added here 2018-09-01 19:08:57+00:00 1.0 1314235217 75 the coin to pump is cloak exchange cryptopiaconz target +500 market cloakbtc 2018-09-01 17:00:04+00:00 1.0 1314235217 74 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-01 16:55:00+00:00 1.0 1314235217 72 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-01 16:40:02+00:00 1.0 1314235217 71 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-01 16:30:01+00:00 1.0 1314235217 70 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-09-01 16:00:02+00:00 1.0 1314235217 69 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-09-01 14:00:04+00:00 1.0 1314235217 68 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-09-01 12:00:01+00:00 1.0 1314235217 67 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-09-01 09:10:37+00:00 1.0 1314235217 66 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date192018 day saturday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 game 130 coin of tomorrow pump will be added here 2018-08-31 19:52:25+00:00 1.0 1314235217 61 the coin to pump is game exchange cryptopiaconz target +500 market gamebtc 2018-08-31 17:00:01+00:00 1.0 1314235217 60 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-31 16:55:00+00:00 1.0 1314235217 58 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-31 16:40:02+00:00 1.0 1314235217 57 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-31 16:30:02+00:00 1.0 1314235217 56 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-08-31 16:00:02+00:00 1.0 1314235217 55 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-08-31 15:00:03+00:00 1.0 1314235217 54 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-08-31 13:00:01+00:00 1.0 1314235217 53 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 31082018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-08-31 09:09:15+00:00 1.0 1314235217 52 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date3182018 day friday time 5 pm gmt our succfull pumps bnc 450 dalc 350 rep 450 bcpt 370 coin of todays pump will be added here 2018-08-31 06:06:43+00:00 1.0 1314235217 46 the coin to pump is bcpt exchange cryptopiaconz target +500 market bcptbtc 2018-08-30 17:00:01+00:00 1.0 1314235217 45 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-30 16:55:04+00:00 1.0 1314235217 43 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-30 16:40:00+00:00 1.0 1314235217 42 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-30 16:30:02+00:00 1.0 1314235217 41 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-08-30 16:00:02+00:00 1.0 1314235217 40 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-08-30 15:00:04+00:00 1.0 1314235217 39 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-08-30 13:08:54+00:00 1.0 1314235217 38 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-08-30 08:33:34+00:00 1.0 1314235217 30 the coin to pump is rep exchange cryptopiaconz target +500 market repbtc 2018-08-29 17:00:06+00:00 1.0 1314235217 29 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-29 16:55:03+00:00 1.0 1314235217 27 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-29 16:40:03+00:00 1.0 1314235217 26 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-29 16:30:01+00:00 1.0 1314235217 25 ℹ️ 1 hour 30 mins until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready we are moving our channel here 2018-08-29 15:30:04+00:00 1.0 1314235217 24 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join now fast because coin will be announced here 2018-08-29 14:00:01+00:00 1.0 1314235217 23 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready and we are moving to this channelcoin will be posted here 2018-08-29 11:03:23+00:00 1.0 1314235217 22 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 29082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ also we are moving to this channel 2018-08-29 08:58:50+00:00 1.0 1314235217 21 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2982018 day wedensday time 5 pm gmt our succfull pumps bnc 450 dalc 350 coin of todays pump will be added here 2018-08-29 06:24:01+00:00 1.0 1314235217 13 the coin to pump is bnc exchange cryptopiaconz target +500 market bncbtc 2018-08-28 17:00:03+00:00 1.0 1314235217 12 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-28 16:55:01+00:00 1.0 1314235217 10 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-28 16:40:02+00:00 1.0 1314235217 9 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-28 16:30:01+00:00 1.0 1314235217 8 ℹ️ 1 hour 30 mins until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join also whales group 2018-08-28 15:30:05+00:00 1.0 1314235217 7 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange cryptopia time 5 pm gmt read the instructions above and be ready join also whales group 2018-08-28 14:00:01+00:00 1.0 1314235217 6 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ join also here 2018-08-28 09:22:27+00:00 1.0 1314235217 4 after continuous successful pumping on cryptopiaon high demandwe r going to pump on cryptopia again alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date2882018 day tuesday time 5 pm gmt 2018-08-28 06:20:36+00:00 1.0 1217177161 20768 5 minutes before public sale launch are you ready heres a stepbystep video on how to buy agvs for public sale kzhzgwakki 2021-12-10 13:57:07+00:00 1.0 1353568791 475 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:02+00:00 1.0 1353568791 448 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:03+00:00 1.0 1353568791 446 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:03+00:00 1.0 1353568791 445 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:04+00:00 1.0 1353568791 444 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:04+00:00 1.0 1353568791 443 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:04+00:00 1.0 1353568791 442 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:04+00:00 1.0 1353568791 441 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:04+00:00 1.0 1353568791 440 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:04+00:00 1.0 1353568791 439 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:04+00:00 1.0 1353568791 438 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:04+00:00 1.0 1353568791 437 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:04+00:00 1.0 1353568791 436 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:03+00:00 1.0 1353568791 435 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:03+00:00 1.0 1353568791 434 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:03+00:00 1.0 1353568791 433 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:03+00:00 1.0 1353568791 424 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:04+00:00 1.0 1353568791 420 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:41+00:00 1.0 1353568791 416 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:46+00:00 1.0 1353568791 412 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:11+00:00 1.0 1353568791 408 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1353568791 406 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:04+00:00 1.0 1353568791 405 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:03+00:00 1.0 1353568791 404 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:12+00:00 1.0 1353568791 403 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:33+00:00 1.0 1353568791 401 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:05+00:00 1.0 1353568791 400 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:03+00:00 1.0 1353568791 398 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:01+00:00 1.0 1353568791 396 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:01+00:00 1.0 1353568791 395 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:02+00:00 1.0 1353568791 394 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:03+00:00 1.0 1353568791 393 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:02+00:00 1.0 1353568791 392 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:02+00:00 1.0 1353568791 391 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:02+00:00 1.0 1353568791 389 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:02+00:00 1.0 1353568791 388 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:02+00:00 1.0 1353568791 387 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:02+00:00 1.0 1353568791 386 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:02+00:00 1.0 1353568791 385 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:01+00:00 1.0 1353568791 384 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:01+00:00 1.0 1353568791 383 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:00+00:00 1.0 1353568791 381 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:00+00:00 1.0 1353568791 380 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:48+00:00 1.0 1353568791 379 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:00+00:00 1.0 1353568791 378 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:55+00:00 1.0 1353568791 375 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:54:59+00:00 1.0 1353568791 373 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:49:59+00:00 1.0 1353568791 371 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:00+00:00 1.0 1353568791 370 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:00+00:00 1.0 1353568791 369 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:15+00:00 1.0 1353568791 368 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:05+00:00 1.0 1353568791 366 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:05+00:00 1.0 1353568791 363 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:54:59+00:00 1.0 1353568791 361 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:49:59+00:00 1.0 1353568791 360 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:00+00:00 1.0 1353568791 358 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:00+00:00 1.0 1353568791 357 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:00+00:00 1.0 1353568791 356 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:00+00:00 1.0 1353568791 355 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:00+00:00 1.0 1353568791 354 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:00+00:00 1.0 1353568791 353 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:00+00:00 1.0 1353568791 352 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:00+00:00 1.0 1353568791 351 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:00+00:00 1.0 1353568791 350 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:00+00:00 1.0 1353568791 349 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:00+00:00 1.0 1353568791 348 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:05+00:00 1.0 1353568791 347 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 17:59:59+00:00 1.0 1353568791 346 binance pump reminder ⏰ date friday 03 april 1800 gmt exchange binance binance us register if you havent yet 2020-04-01 20:20:42+00:00 1.0 1353568791 345 binance pump reminder ⏰ date friday 03 april 1800 gmt exchange binance binance us register if you havent yet please read the available help channels on discord and learn the tips of pumping you will want to know how to buy fast to maximize your profit and as always if you have questions just ask ❗️things you need to do before the pump 1 register on binancecom or the app 2 deposit bitcoin onto your account 3 watch here for the pump signal friday at 1800 gmt 4 follow the given advice or use your best judgement and profit huge 2020-04-01 19:42:21+00:00 1.0 1353568791 344 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:18+00:00 1.0 1353568791 342 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:07+00:00 1.0 1353568791 337 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 16:54:37+00:00 1.0 1353568791 336 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 14:01:20+00:00 1.0 1353568791 331 pump announcement next pump friday 03 april 2100 pm gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-03-27 22:08:40+00:00 1.0 1353568791 325 ⏰ 5 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:55:00+00:00 1.0 1353568791 323 ⏰ 10 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:50:00+00:00 1.0 1353568791 321 ⏰ 15 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:45:28+00:00 1.0 1353568791 319 ⏰ 30 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:30:00+00:00 1.0 1353568791 316 everyone who will invest more than 1 btc in this pump will get to know coin in the next pump 20 seconds faster you will just have to show order history from this pump to the admin 2020-03-27 20:05:40+00:00 1.0 1353568791 315 ⏰ 1 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:00:00+00:00 1.0 1353568791 314 ⏰ 2 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 19:05:00+00:00 1.0 1353568791 312 ❕ are you a member and want to receive coin 10 sec faster in next pump ❕ its simple just invest more than 3 btc in our todays pump and you will have to send us your order history from todays which will cost above 3 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 10 seconds faster 2020-03-27 18:47:00+00:00 1.0 1353568791 311 ⏰ 4 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 17:00:00+00:00 1.0 1353568791 310 ⏰ 6 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 15:00:00+00:00 1.0 1353568791 309 ❕ are you a member and want to receive coin 3 sec faster in next pump ❕ its simple just invest more than 1 btc in our todays pump and you will have to send us your order history from todays which will cost above 1 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 3 seconds faster 2020-03-27 14:34:52+00:00 1.0 1353568791 308 ⏰ 8 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 13:00:58+00:00 1.0 1353568791 307 ⏰ 1 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-26 21:46:12+00:00 1.0 1353568791 306 ⏰ 2 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-25 22:59:47+00:00 1.0 1353568791 305 ⏰ 3 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-24 13:02:42+00:00 1.0 1353568791 302 ⏰ 4 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-23 13:41:26+00:00 1.0 1353568791 298 pump announcement next pump friday 27 march 2100 pm gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-03-21 12:16:52+00:00 1.0 1353568791 284 everyone only 5 minutes left the next post will be the coin 2020-03-18 18:55:05+00:00 1.0 1353568791 282 everyone 1 hour left this binance pump will have positive coin news supplied for us all to promote in addition to the conditions being near perfect for a pump all of us promoting this coin news together will greatly increase the volume and longevity of the pump do your part and watch your profits soar 2020-03-18 18:00:03+00:00 1.0 1353568791 281 everyone 3 hours left until the pump bicoin has been fairly stable while alts remain bottomed out now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while 2020-03-18 16:02:35+00:00 1.0 1353568791 280 everyone pump announcement next pump wednesday 18 march 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin is expected to stay in this range for the next few days but due to the recent sell off by weak hands many alts are extremely pumpable in a market with so much red eager traders jump all over anything green we can easily bring an extreme amount of attention to whichever coin we pump by making it binancecoms top gainer of the day adding an influx of volume and promoting the supplied coin news this will lead to massive profits as the pump should go higher than normal stay tuned for more announcements and be ready for the pump 2020-03-17 19:08:40+00:00 1.0 1353568791 278 pump coin name bnt 2020-03-17 15:55:13+00:00 1.0 1353568791 277 next post will be the coin name 2020-03-17 15:40:08+00:00 1.0 1353568791 276 only 30 minutes left❗️ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-17 15:32:20+00:00 1.0 1353568791 274 17032020 1600 gmt binance pump only 40 minutes left❗️ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-17 15:21:58+00:00 1.0 1353568791 269 pump coin name nebl 2020-03-15 20:00:14+00:00 1.0 1353568791 268 next post will be the coin name 2020-03-15 19:53:11+00:00 1.0 1353568791 266 less than 1 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 19:15:54+00:00 1.0 1353568791 265 less than 2 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 18:06:03+00:00 1.0 1353568791 264 almost 3 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 16:56:41+00:00 1.0 1246270015 10157 2 minutes until the pump everyone projected gain will be given with the coin name the next post will be the coin 2022-01-15 16:58:00+00:00 1.0 1246270015 10156 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one today is going to be huge rocket 2022-01-15 16:50:01+00:00 1.0 1246270015 10154 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2022-01-15 16:00:00+00:00 1.0 1246270015 10153 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump 2022-01-15 15:00:00+00:00 1.0 1246270015 10152 4 hours left until the pump everyone exchange kucoincom pairing usdt since our last pump we have grown to over 11 million total members kucoin has gained many new users and is more widely considered the top exchange for altcoin trading worldwide our past results and successes have gone viral around the internet which has greatly increased our popularityfollowing to participate make sure you have usdt in your trading account on kucoin our volume and participation today will be massive markets are in our favor conditions today are incredible be ready for the start in 4 hours from now 2022-01-15 13:00:00+00:00 1.0 1246270015 10151 24 hours left everyone exaclty 24 hours left until our pump 1700 gmt 12pm est tomorrow saturday jan 15th in order to join the pump you must be using kucoin have usdt in your trading account and be watching this channel for the coin name working together as a team we have huge influence over the markets on kucoin tomorrow we will likely have the most volume we have ever done which will overpower any coin we choose and send it to outer space the key to pumping is to prepare stay calm and reasonable never panic and never sell yourself short review the help docs and familiarize yourself with trading on kucoin 2022-01-14 17:00:08+00:00 1.0 1246270015 10150 48 hours until the pump date saturday january 15th time 1700 gmt 12pm est exchange kucoin pair usdt in 48 hours from now the pump coin will be chosen and posted here by our signal bot buy the coin quickly to get in at the best possible price once all members start buying the price will begin to rise and will keep rising as more members active investors spiketrading bots outsiders market makers etc continue to buy along with the coin there will also be a projected gain posted to give members an idea of the best place to sell our projected gain has been hit or passed on over 95 of our pumps often times doubling or tripling expectations see the postedpinned howtopump guides register a kucoin account and have usdt ready for the pump the growth of our groups have been fantastic we are now at over 1 million total members bitcoin and other cryptos are rebounding at the perfect time for us as well everyone 2022-01-13 17:00:17+00:00 1.0 1246270015 10149 pump announcement date saturday january 15th time 1700 gmt 12pm est exchange kucoin pair usdt bitcoin and all of crypto are on the rise a massive amount of new money is flowing to exchanges especially to kucoin as it is the fastest growing exchange in the world conditions are optimal for a pump and with an abundance of profit to be made we will pump again this weekend reasons we pump on kucoin inclusivity kucoin allows users from anywhere in the world to trade usa included no kyc users can trade an unlimited amount and withdraw up to 1 btc worth of funds per 24hrs without verification massive volume kucoin is a top 5 crypto exchange boasting over 3 billion dollars worth of trades daily incredible growth kucoin grew by over 900 in 2021 all these added users means more people to join our pumps to buy our rising coins to support and add to our gains best coins large selection of high quality coins to pump no whales to interfere and higher pumps compared to other exchanges with improved market conditions plus our added growth we expect this upcoming pump to have nearly double the volume as our last we look forward to another fantastic pump more info to come everyone 2022-01-12 19:13:59+00:00 1.0 1246270015 10147 unic kucoin pump results start price 10607 peak price 98700 peak gain 831 unic amassed over 17 million volume within the first few minutes as it rose all the way to 831 well over our 500 minimum projection even in this market our volume continues to grow and our peaks have become even more impressive thank you to all members who participated you can expect our next pump to be even bigger great job to everyone 2022-01-09 01:05:53+00:00 1.0 1246270015 10144 2 minutes until the pump everyone projected gain will be given with the coin name the next post will be the coin 2022-01-08 16:58:01+00:00 1.0 1246270015 10143 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one today is going to be huge rocket 2022-01-08 16:50:00+00:00 1.0 1246270015 10141 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2022-01-08 16:00:01+00:00 1.0 1246270015 10140 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump 2022-01-08 15:00:00+00:00 1.0 1246270015 10139 4 hours left until the pump everyone exchange kucoincom pairing usdt since our last pump we have grown by over 40000 members kucoin has gained many new users and is more widely considered the top exchange for altcoin trading worldwide surpassing 10 million total users our past results and successes have gone viral around the internet which has greatly increased our popularityfollowing as expected altcoins are seeing a lot of added attention today which is great to help bring outsiders into our pump we expect great volume and even greater results to participate make sure you have usdt in your trading account on kucoin our volume and participation today will be massive be ready for the start in 4 hours from now 2022-01-08 13:00:12+00:00 1.0 1246270015 10137 48 hours left everyone date saturday jan 8th time 1700 gmt 12pm est exchange kucoin pair usdt bitcoin price has swong wildly the past few days we expect bitcoin to settle and begin to rise which will strengthen the markets prior to our pump money flows from bitcoin to altcoins which we will be taking advantage of our immense power and targetted volume will attract traders to our coin as it stands out as the top gainer of the day on kucoin to our many many new members we urge you to read the help docs so you are ready for the pump with all the added usersvolume this pump will be truly spectacular see you all in 48 hours from now 2022-01-06 17:05:41+00:00 1.0 1246270015 10135 3 days left everyone altcoin markets are looking very healthy leading up to our pump this saturday over the next 3 days conditions are expected to improve even more this pump is being highly anticipated by users everywhere especially with our membership numbers being so strong and our volume trending toward a new all time high mark your calendars for this saturday january 8th at 1700 gmt 12pm est 2022-01-05 18:55:36+00:00 1.0 1246270015 10134 6 days left until our pump date saturday january 8th time 1700 gmt 12pm est exchange kucoin with 6 days left until our first pump of 2022 we are very impressed with all the growth we are seeing over 400 users a day are joinging our discord and thousands more joining our telegrams with the great success of our past pumps and all this added power we expect this next pump to be massive make sure you are ready this saturday by reading the help info past results and practicing trading on kucoin we are the largest most powerful group by far and this next pump will solidify that even further everyone 2022-01-02 17:23:19+00:00 1.0 1246270015 10133 pump announcement date saturday jan 8th time 1700 gmt 12pm est exchange kucoin our next pump will be saturday january 8th on kucoin due to the incredible growth of both kucoin itself and our group we are planning the next pump 10 days in advance to give all members ample time to prepare review our past results successstories and helpful guides ask questions in the chat and practice trading on kucoin to make sure you are a pro before pump time there are many indicators that the next alt season is about to begin which of course is the optimal time to pump altcoins we expect record volume a large number of outsiders and huge profit for all members more updates to come in the mean time make sure you are ready for the next big pump in 10 days from now everyone 2021-12-29 19:51:32+00:00 1.0 1246270015 10130 cream kucoin pump results start price 3268 peak price 33303 peak gain 919 cream rose to 919 passing our entire target gain of 600900 the absolute peak held for nearly an entire minute so there was plenty of time to sell for even more profit than expected those who bought the dip could have also earned an addition 3x profit during the second wave which brought cream all the way back to our projected gain over 3 minutes later high profit potential combined with high probability of success always makes for a great pump great job to everyone who participated 2021-12-19 20:45:23+00:00 1.0 1246270015 10124 2 minutes until the pump everyone projected gain will be given with the coin name the next post will be the coin 2021-12-18 16:58:00+00:00 1.0 1246270015 10123 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one today is going to be huge rocket 2021-12-18 16:50:00+00:00 1.0 1246270015 10121 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-12-18 16:00:00+00:00 1.0 1246270015 10120 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump be ready for one of the biggest ever in 2 hours from now 2021-12-18 14:59:29+00:00 1.0 1246270015 10119 4 hours left until the pump everyone exchange kucoincom pairing usdt since our last pump we have grown by over 25000 members kucoin has gained many new users and is more widely considered the top exchange for altcoin trading worldwide our past results and successes have gone viral around the internet which has greatly increased our popularityfollowing to participate make sure you have usdt in your trading account on kucoin our volume and participation today will be massive be ready for the start in 4 hours from now 2021-12-18 12:59:29+00:00 1.0 1246270015 10118 24 hours left everyone exaclty 24 hours left until our pump 1700 gmt 12pm est tomorrow saturday dec 18th in order to join the pump you must be using kucoin have usdt in your trading account and be watching this channel for the coin name working together as a team we have huge influence over the markets on kucoin tomorrow we will likely have the most volume we have ever done which will overpower any coin we choose and send it to outer space the key to pumping is to prepare stay calm and reasonable never panic and never sell yourself short please review the help docs and familiarize yourself with trading on kucoin as this will likely be our last pump of 2021 due to the holidays we want to make sure it has an incredible worldwide impact and is extremely profitable for all members 2021-12-17 17:07:31+00:00 1.0 1246270015 10117 48 hours left until our pump in 48 hours from now the pump coin will be chosen and posted here by our signal bot buy the coin quickly to get in at the best possible price once all members start buying the price will begin to rise and will keep rising as more members active investors spiketrading bots outsiders market makers etc continue to buy along with the coin there will also be a projected gain posted to give members an idea of the best place to sell our projected gain has been hit or passed on over 95 of our pumps often times doubling or tripling expectations see the postedpinned howtopump guides register a kucoin account and have usdt ready for the pump the growth of our groups have been fantastic we are now at over 1 million total members bitcoin and other cryptos are rebounding at the perfect time for us as well this will likely be our last pump of 2021 and it will for sure be one you wont want to miss everyone 2021-12-16 17:23:16+00:00 1.0 1246270015 10116 3 days until our pump day saturday december 18th time 1700 gmt 12pm est exchange kucoin pair usdt in 72 hours from now the pump signal will post here be ready to buy the target coin with usdt as it begins to rise to our projected level this upcoming pump signal will reach more users than it ever has before and likely have the most volume we have ever done the growth of our groups over the past few weeks has been astounding this pump will be huge you wont want to miss it everyone 2021-12-15 17:06:04+00:00 1.0 1246270015 10115 6 days until our pump bitcoin is climbing recently passing 50k which is an important level the improving health of the overall crypto market is a great sign that many outsiders and day traders will be active on kucoin ready to buy breakout coins and invest in our pump if this trend stays steady or continues as it should we will have fantastic conditions for our pump in 6 days from now set your calendars for this saturday at 1700 gmt everyone 2021-12-12 20:29:40+00:00 1.0 1246270015 10113 pump announcement day saturday december 18th time 1700 gmt 12pm est exchange kucoin the upcoming pump is planned long in advance to give everyone ample time to prepare and allow our huge influx of new members to get ready to join in for the next 9 days we will post daily updates about the markets our group trading guides and more if you are seeing this message you are in the worlds largest and most successful kucoin pump group of all time we are pleased to have you as a member please see our posted help guides review our past results and get ready for the big pump in 9 days from now everyone 2021-12-09 20:46:49+00:00 1.0 1246270015 10112 swp managed really good volume and a peak of 1680 from a 289 start price thats a gain of 481 although we had impressive volume and a gain better than almost any other group we know we could do better swp was riddled with hidden walls likely from the swp team themselves this is a coin based on the kava blockchain which is not a type of coin we normally pump all other factors pointed to this being a great pump but unfortunately there was no way for us to know that the swp team was watching so closely and was going to dump so many of their own coins during our pump without the swp team selling we would have easily seen a peak of 10002500+ our group will come back bigger stronger stick to our proven gameplan for our next pump and inject as much extra volume as we need in order to reach our targets no matter the cost we all wanted an a+ pump today but for most that didnt happen next pump we promise an a+++ pump to get us back on the right track and some of the most impressive results anyone has ever seen everyone 2021-11-27 17:29:55+00:00 1.0 1246270015 10110 2 minutes until the pump everyone projected gain will be given with the coin name the next post will be the coin 2021-11-27 16:57:57+00:00 1.0 1246270015 10109 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one today is going to be huge rocket 2021-11-27 16:49:59+00:00 1.0 1246270015 10107 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-11-27 16:01:00+00:00 1.0 1246270015 10106 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with incredible results market conditions are extremely good so be ready for one of the best ever today in 2 hours from now 2021-11-27 15:00:01+00:00 1.0 1246270015 10105 4 hours left until the pump everyone exchange kucoincom pairing usdt to participate make sure you have usdt in your trading account on kucoin our volume and participation today will be massive our peaks will be high the market reaction will be fantastic this will be an amazing pump since our last pump we have grown by over 30000 members kucoin has gained many new users and is more widely considered the top exchange for altcoin trading worldwide our past results and successes have gone viral around the internet which has greatly increased our popularity these factors combined with our recent explosive pumps make todays potential limitless how high of a peak can we see how much volume how much profit to be shared by all members one thing is for sure today will be a truly epic pump event with massive volume and an astonishing peak be ready for the start in 4 hours from now 2021-11-27 13:00:00+00:00 1.0 1246270015 10104 24 hours left until the pump everyone date saturday november 27th time 1700 gmt 12pm est exchange kucoincom pairing usdt we expect the volume in this pump to be the most we have ever done and the outside attention to be enormous as always you need to be trading on kucoincom and with usdt to enter the pump we will truly overpower the market tomorrow and cause an extended effect all throughout the crypto world please see the postedpinned guides if you have any questions tomorrow is going to be a massive event which you will not want to miss 2021-11-26 17:03:00+00:00 1.0 1246270015 10100 4 days left until our pump day saturday november 27th time 1700 gmt 12pm est exchange kucoin pair usdt our 2 most recent pumps have had over 10 million combined volume and over 2050 total gain since then our growth has been astronomical nearly 30000 new members have joined our group this upcoming pump will likely be the biggest weve ever done 2021-11-23 20:20:15+00:00 1.0 1246270015 10099 pump announcement day saturday november 27th time 1700 gmt 12pm est exchange kucoin after taking last week off to let the market settle down we are ready for our next pump with 7 days until our pump we are sure altcoin trading will be very healthy leading to optimal conditions for our pump and max profit for all members our last pump had the highest first minute volume of any pump ever done on kucoin this shows the immense power of our group and is just the beginning next pump we will look to break our own record again and do the biggest pump ever done by volume stay tuned for more updates and mark your calendars for 1 week from today 2021-11-21 00:27:06+00:00 1.0 1246270015 10094 2 minutes until the pump everyone projected gain will be given with the coin name the next post will be the coin 2021-11-13 16:57:59+00:00 1.0 1246270015 10093 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-11-13 16:49:59+00:00 1.0 1246270015 10091 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-11-13 16:00:01+00:00 1.0 1246270015 10090 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with incredible results market conditions are extremely good so be ready for one of the best ever today in 2 hours from now 2021-11-13 15:00:01+00:00 1.0 1246270015 10089 4 hours left until the pump everyone exchange kucoincom pairing usdt to participate make sure you have usdt in your trading account on kucoin our volume and participation today will be massive our peaks will be super high the market reaction will be fantastic this will be an amazing pump our goals for our last pumps were 1million volume with 1000 gain since our last pump we have grown by over 40000 member total to 2x the size bitcoin has risen from 35k to over 47k the markets are prime for a pump kucoin has gained millions of new users and is more widely considered the top exchange for altcoin trading worldwide our past results and successes have gone viral around the internet making our group into somewhat of a legend these factors and a perfect day for a pump like today make todays potential limitless how high of a peak can we see how much volume how much profit to be shared by all members one thing is for sure today will be a truly epic pump event be ready for the start in 4 hours from now 2021-11-13 13:00:01+00:00 1.0 1246270015 10088 24 hours left everyone exchange kucoin pair usdt time 1700 gmt 12pm est date saturday november 13th only 1 day left until our massive pump altcoins are gaining a lot of traction in this wild market we are sure to attract huge investment and attention when our coin starts pumping everything leading up to tomorrow leads us to believe this will likely be our biggest pump yet our growth has sped up our volume is increasing each pump and our combined buying power can cause havoc in the market sending our target coin to an insane high make sure you have usdt in your trading account on kucoin in order to enter see you all in 24 hours from now 2021-11-12 17:18:27+00:00 1.0 1246270015 10087 48 hours left until our pump day saturday november 13th time 1700 gmt 12pm est exchange kucoin pair usdt with huge growth and stable markets we fully expect this pump to be one of the biggest ever our past results have been fantastic and our volume has significantly risen each time we pump be prepared for the next huge pump in 48 hours from now everyone 2021-11-11 17:05:32+00:00 1.0 1246270015 10086 3 days left until our pump day saturday november 13th time 1700 gmt 12pm est exchange kucoin bitcoin reached a new all time high today crypto trading volumes are way up and alt season is just around the corner these conditions plus our continued growth are very strong positive factors we expect the upcoming pump on saturday to be truly epic make sure you have your kucoin account ready no need to verify and have read the posted help docs to be prepared everyone 2021-11-10 19:39:48+00:00 1.0 1246270015 10085 pump announcement day saturday november 13th time 1700 gmt 12pm est exchange kucoin with bitcoin sideways altcoins will soon be ready to explode a pump this weekend would be a bit premature as the preferred coin metrics are not quite there yet as our long time users know we prefer quality quantity for our pumps and will plan our next pump for 1 week from today our user numbers are still growing very rapidly our volume has been increasing significantly each pump and for our next pump we will likely have the most power weve ever had more info to come everyone 2021-11-06 16:07:54+00:00 1.0 1246270015 10079 2 minutes until the pump everyone projected gain will be given with the coin name the next post will be the coin 2021-10-23 16:58:01+00:00 1.0 1246270015 10078 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-10-23 16:50:01+00:00 1.0 1246270015 10076 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-10-23 16:00:01+00:00 1.0 1246270015 10075 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with incredible results market conditions are extremely good so be ready for one of the best ever today in 2 hours from now 2021-10-23 15:00:05+00:00 1.0 1246270015 10074 4 hours left until our pump bitcoin is up over 61k and our group has grown by over 5000 users this week alone our past 2 pumps have been massive and successful today will even more massive some things to remember we pump on kucoin website or app coin might not be listed elsewhere we use the usdt pair when buyingselling our target coin we are a team and operate as such the goal is for every member of this group to earn as much profit as possible be sure to have usdt in your trading account on kucoin and be ready for the call in 4 hours from now everyone 2021-10-23 13:07:32+00:00 1.0 1246270015 10073 24 hours left everyone exchange kucoin pair usdt time 1700 gmt 1pm est date saturday october 23rd only 1 day left until our massive pump altcoins are gaining a lot of traction in this wild market we are sure to attract huge investment and attention when our coin starts pumping everything leading up to tomorrow leads us to believe this will likely be our biggest pump yet our growth has sped up our volume is increasing each pump and our combined buying power can cause havoc in the market sending our target coin to an insane high make sure you have usdt in your trading account on kucoin in order to enter see you all in 24 hours from now 2021-10-22 17:06:25+00:00 1.0 1246270015 10072 48 hours left until our pump everyone in 48 hours from now we will all work together to push the price of a target coin on kucoin to extreme highs as we have done so many times before the pump will begin from our large influx of buy orders in a short time which will start the coin on a very impressive rise to an extreme peak last peaks 570 and 1590 breakout traders fomo traders auto algorithms day trading bots and other active kucoin users will see our coin rising and jump right in the amount of trades in crypto are extraordinarily high right now bc of the recent new all time high for btc considers that our recent success and our impressive growth we can confidently say this upcoming pump will be truly epic make sure you are ready confident and calm so you can take part in the massive profits 48 hours from now reminder we pump on kucoin only we use the usdt base pair for our pumps so you must be trading usdt for the target coin please review the help docs or ask questions if you are unsure of any aspect our goal is always for members here to earn as much profit as possible the team and community are here to help every member is important 2021-10-21 17:05:39+00:00 1.0 1246270015 10071 3 days until our pump our next pump will be saturday october 23rd at 1700 gmt on kucoincom or the kucoin app we are sticking to our normal time slot and base pair of usdt for this pump to repeat and improve upon the success of past pumps pair usdt everyone bitcoin hit a new all time high today which is fantastic for our pump millions more eyes are on crypto right now and everyone is trying to get a part of the crazy gains they are seeing on saturday when we pump our coin this will help prolong the pump as outsiders rush to buy our spiking coin our effect on the target coins has been immense lately with bug second and third waves this pump should have the biggest effect yet please create a kucoin account if you dont already have one and take time to review the howtopump guide understanding the exchange and how our pumps work will help you earn more profit 2021-10-20 17:11:10+00:00 1.0 1246270015 10070 pump announcement day saturday october 23rd time 1700 gmt 1pm est exchange kucoin in light of our last 2 hugely successful pumps dino +570 route +1590 with a combined volume of over 16 million we will pump again this upcoming saturday sticking to the same time slot 1700 gmt our groups are growing to very impressive sizes the recent rise of bitcoin and explosion of kucoins popularity are really creating epic conditions for us as the worlds top group on kucoin we are in a special place to keep improving our volume gains and member profits each time we pump this will again be another pump you wont want to miss the base pair for the coin will be announced shortly with plenty of time to prepare many of us are day traders and we dont want anyone closing positions early just for us go get your profits and use them saturday 2021-10-19 19:32:41+00:00 1.0 1246270015 10067 route kucoin pump results start price 349 peak price 5900 peak gain 1590 amassing over 4 million in volume and rising all the way to 1590 route was an awesome pump we shattered our goal of 500 and everyone should have been able to profit off the steady rise route stayed around the 500 mark 20 for over 2 min we will keep building from here great job everyone 2021-10-09 18:25:32+00:00 1.0 1246270015 10061 2 minutes until the pump everyone projected gain 500+ the next post will be the coin 2021-10-09 16:58:00+00:00 1.0 1246270015 10060 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-10-09 16:50:00+00:00 1.0 1246270015 10058 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-10-09 16:00:02+00:00 1.0 1246270015 10057 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with incredible results market conditions are extremely good so be ready for one of the best ever today in 2 hours from now 2021-10-09 15:00:01+00:00 1.0 1246270015 10056 4 hours until our pump these are likely the best conditions we have ever pumped in coming off a great success 15000 new members since last pump bitcoin mooning to 54k+ overall everything looks incredible for today some things to remember we pump on kucoin website or app coin might not be listed elsewhere we use the usdt pair when buyingselling our target coin we are a team and operate as such the goal is for every member of this group to earn as much profit as possible be sure to have usdt in your trading account on kucoin and be ready for the call in 4 hours from now everyone 2021-10-09 13:02:07+00:00 1.0 1246270015 10055 24 hours left until our pump conditions only continue to improve leading up to what will surely be one of our greatest pumps ever we promised a great pump last week and delivered this week we promise an even better pump with even more volume more participants and more profit for everyone just like last week there will be no admin order and tons of support to keep our coin rising as high and for as long as possible lets do the greatest pump ever done see you all in 24 hours from now 2021-10-08 17:01:49+00:00 1.0 1246270015 10053 pump announcement date saturday october 9th time 1700 gmt 1pm est exchange kucoincom after our incredible success last pump pushing dino 570 and gathering over 11 million total volume we will pump a new coin this saturday at 1700 gmt alongside our massive growth and the establishing of kucoin as the worlds premier place to trade altcoins bitcoin has also been pumping hard to over 54000 these conditions will lead to an even more powerful pump with even more outsider attention and of course even more profit be ready for another incredible pump event in just 3 days from now everyone 2021-10-06 17:18:55+00:00 1.0 1246270015 10049 1 hour and 20 min after our pump dino is holding strong over 200 what an amzing ride today 2021-10-02 18:22:31+00:00 1.0 1246270015 10043 the coin was dino posted here by our bot a thread was created by a rougue user on discord who tried to post a different coin lon 450k of volume went to lon but we still managed to pump dino to 249 with over 630k volume in under 1 min all thread permissions have been disabled and the user banned 2021-10-02 17:06:40+00:00 1.0 1246270015 10040 2 minutes until the pump everyone projected gain 500900 the next post will be the coin 2021-10-02 16:58:01+00:00 1.0 1246270015 10039 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-10-02 16:50:02+00:00 1.0 1246270015 10037 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-10-02 16:00:02+00:00 1.0 1246270015 10036 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with incredible results market conditions are extremely good so be ready for one of the best ever today in 2 hours from now 2021-10-02 15:00:01+00:00 1.0 1246270015 10035 4 hours left until the pump everyone exchange kucoincom pairing usdt to participate make sure you have usdt in your trading account on kucoin our volume and participation today will be massive our peaks will be super high the market reaction will be fantastic this will be an amazing pump our goals for our last pumps were 1million volume with 1000 gain since our last pump we have grown by over 40000 member total to 2x the size bitcoin has risen from 35k to over 47k the markets are prime for a pump kucoin has gained millions of new users and is more widely considered the top exchange for altcoin trading worldwide our past results and successes have gone viral around the internet making our group into somewhat of a legend these factors and a perfect day for a pump like today make todays potential limitless how high of a peak can we see how much volume how much profit to be shared by all members one thing is for sure today will be a truly epic pump event be ready for the start in 4 hours from now 2021-10-02 13:05:16+00:00 1.0 1246270015 10034 24 hours left everyone bitcoin and the markets have blessed us with optimal conditions for our pump cryptos are soaring today bringing a very positive sentiment into this weekend where our chosen coin will become the top gainer of them all as we push our coin to the top spot outside investment breakout buyers auto algo tools bots and fomo traders will continue to help us climb to once of the highest peaks we have ever done although there will be no admin order for this pump there will still be plenty of support to keep driving the price up and holding our peaks for as long as possible the weekend timeslot showcases our group even more we expect this to be a huge event make sure you have usdt and your kucoin account ready in 24 hours from now so you can participate 2021-10-01 17:08:34+00:00 1.0 1246270015 10033 48 hours left everyone in 48 hours from now the top coin will be chosen and posted here it will begin to climb in price from us all mass buying it driving its value up 510x or even more exact details will be given closer to the pump when more info is available you should be buying the coin using market orders for speed and selling with limit sells at your desired profit please refer to the pump guide as why to not market sell during a pump this pump will be truly free for all there will be absolutely 0 buying before the coin is announced no admin orders and no activity which could trigger spike bots the first buyers will be members and profits will be absurdly high as this is our first pump back in a while we want it to be 100 member focused since there are no outside partners to pay there is no need for an admin order we want to make a big splash and show the community we are back stronger than ever because of our growth this pump signal will reach more users than it ever has before the anticipation is huge and the result will be even more huge be ready for one of the best pumps ever done see you all in 48 hours 2021-09-30 17:01:10+00:00 1.0 1246270015 10031 pump announcement date saturday october 2nd time 1700 gmt 1pm est exchange kucoincom pair usdt after some time off to ride out market conditions we are back with what will be one of the best pumps we ever do since our last pump kucoin itself has seen a massive rise in daily active users and volume meaning there is more money than ever before on the table kucoin is becoming the main home for altcoin trading as binance fades away in addition to that our groups have grown in size by over 2x meaning we are more powerful than ever before there is a lot more info to come about this pump so please read all following announcements for now mark your calendars for the pump in 4 days from now 2021-09-28 22:21:40+00:00 1.0 1246270015 10029 postponed kucoin pump the kucoin pump is postponed to a later date we wanted to give plenty of time ahead of the pump and hope 3 hours is sufficient for everyone to get on with their day along this sad but necessary news although our growth has been fantastic and the markets are great right now the coins themselves are in a weird spot moving sideways in price the team has decided that there are too many unknowns to force a pump today we strongly believe in quality quantity and will only pump when we are certain of great success as was mentioned yesterday this next pump will be worth the wait we promise it will happen under optimal conditions for everyone to profit safely we will not risk or force anything this is for the better and will make our pump even stronger when it does happen pump postponed stay tuned for a new date everyone 2021-09-01 16:18:34+00:00 1.0 1246270015 10028 24 hours left everyone our big pump is scheduled for just 24 hours from now we have added 50000 new members several very large groups to repost us and there is a lot of anticipation for this pump along with btc being up and altcoins making some huge gains since our last pump all signs point to something truly historic happening tomorrow we are 100 sure this one will be worth the long wait make sure you have your kucoin account ready and loaded with usdt pump in 24 hours from now 2021-08-31 19:03:01+00:00 1.0 1246270015 10027 48 hours left until the pump everyone as we continue to grow our group to increase the power of our pumps we will see bigger and better results than ever before after 4 weeks of growth market watch and crypto rising we are approaching the perfect time for our pump stay tuned for more reminders 2021-08-30 19:01:22+00:00 1.0 1246270015 10026 3 days left until our massive pump everyone since our last pump bitcoin has risen more than 12k we have gained over 40k new users binance has shut its doors and kucoin has exploded with popularity these are all extremely positive signs for us more participants more money and more outsiders will make our pump spectacular to prepare for the pump make sure you have done all the following have a registered kucoin account no need to verify have usdt in your trading account we will use usdt to pump the coin practice trading and read the howtopump guides see you all in 3 days 2021-08-29 20:20:46+00:00 1.0 1246270015 10022 kucoin pump announcement wednesday september 1st 1900 gmt 3pm est exchange kucoincom everyone we are ready to announce our next kucoin pump with extreme confidence and 10 days to prepare our overall member count has exploded crypto markets are rising and the pumping scene is ready for its return to glory a lot of money is flowing into crypto right now many good opportunities are prime for a pump the number of unique users in our discords has passed 70000 and our telegrams now have over 150000 users combined you can expect over 1 million in volume and a gain of at least 400+ for our pump more info guides and further updates to come 2021-08-22 22:13:54+00:00 1.0 1246270015 10013 2 minutes until the pump everyone target gain 1000 the next post will be the coin 2021-07-28 18:58:01+00:00 1.0 1246270015 10012 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-07-28 18:50:02+00:00 1.0 1246270015 10010 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-07-28 17:59:53+00:00 1.0 1246270015 10009 2 hours left until our pump we expect a fantastic pump today given the a++ conditions and our expanded reach in order to participate make sure you have usdt available in your trading account on kucoin the target coin will post in this channel 2 hours from now ask any questions you may have or see the howtopump guide if you need further assistance everyone 2021-07-28 16:59:58+00:00 1.0 1246270015 10008 4 hours left 4 more hours until our pump on kucoin exchange activity on kucoin has been growing steadily for months crypto markets are currently booming and our user numbers have increased drastically this means more volume more outsiders longer pumps and higher profits after taking off several weeks to wait for the perfect time we have finally reached the perfect time to pump that time is today in 4 hours from now everyone 2021-07-28 15:02:11+00:00 1.0 1246270015 10007 24 hours left 24 hours from now the coin will post here we will all start buying it and the coin will begin to pump we are expecting amazing turn out and incredible results be prepared for one of our best ever everyone 2021-07-27 19:00:35+00:00 1.0 1246270015 10006 48 hours left 2 days left until our big pump on kucoin as you all can see bitcoin and the overall market are in a boom right now conditions are amazing for our pump and we will see more volume outsiders and higher peaks because of this if you wanted to know how to make already great pumps even better this is how perfect timing please review the howtopump guide and have usdt ready in your kucoin account for wednesday we are very excited for this one 2021-07-26 19:05:38+00:00 1.0 1246270015 10005 pump announcement wednesday july 28th 1900 gmt 3pm est echange kucoin pairing usdt markets are in great shape for a pump again bitcoin and others are rising bringing in more money and attention to crypto this will increase the number of active traders and volume for our pump in 3 days from now our results are head and shoulders above any other group and they will only keep improving from here invite friends and lets make this next pump our biggest yet 1+ million volume with 1000+ are the bars we are setting for ourselves we are looking forward to a fantastic pump 2021-07-25 23:04:39+00:00 1.0 1246270015 10002 48 hours left everyone wednesday july 21st 1900 gmt 3pm est echange kucoin pairing usdt 48 hours left until our massive pump you need to have usdt in your trading account on kucoin in order to participate with our recent pumps hitting 1000 we expect this pump to reach that level or even higher it will be our main objective to have a flawless pump where all members can earn huge profit as we surge our coin to an insane value familiarize yourself with how our pumps work so you can earn the most possible profit potential for this pump will be massive make sure you are here in 48 hours to take your piece 2021-07-19 19:01:55+00:00 1.0 1246270015 10000 5 days left until our pump wednesday july 21st 1900 gmt 3pm est as always our pump will be on the kucoin exchange kucoincom or mobile app and will use the udst pair for our target coin in order to prepare yourself for the pump please see our posted guides the past pumpresults and member successstories so you know what to expect our pumps generally go 1000 with up to 1 million or more in volume our growth and overall reach are quickly expanding to make our upcoming pump much bigger than the last we will prepare this pump with modest goals in mind and look to shatter them on pump day stay tuned for more updates everyone 2021-07-16 18:11:05+00:00 1.0 1246270015 9999 pump announcement wednesday july 21st 1900 gmt 3pm est echange kucoin pairing usdt we have decided to plan our next pump 8 days in advance to allow maximum time for everyone to prepare user growth addition of promotional outlets and further market analysis with this much time to prepare we are sure to have an extremely effective pump with a+ results you may see our ads posted please like and share them if you do our results are head and shoulders above any other group and they will only keep improving from here invite friends and lets make this next pump our biggest yet 1+ million volume with 1000+ are the bars we are setting for ourselves more info to come 2021-07-13 20:36:24+00:00 1.0 1246270015 9995 our typical volume is 3x higher than what we saw today last pump had over 1 million and today closer to 400k xava still pumped over 1000 and lots of profit was made but we will investigate why the volume was lower possibly the day or new time or some kucoin issue that said we still did incredible and will do all we can to be back over 1 million next pump great job everyone we were still over 450 in the second minute wow 2021-07-05 17:14:47+00:00 1.0 1246270015 9993 2 minutes until the pump everyone projected gain 900+ the next post will be the coin 2021-07-05 16:58:02+00:00 1.0 1246270015 9992 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-07-05 16:50:03+00:00 1.0 1246270015 9990 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-07-05 16:00:02+00:00 1.0 1246270015 9989 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with incredible results market conditions are extremely good so be ready for one of the best ever today in 2 hours from now 2021-07-05 15:00:03+00:00 1.0 1246270015 9987 24 hours left everyone markets are still rising altcoins are on fire our members numbers are higher than ever and conditions remain perfect for our pump 24 hours from now we will all begin to buy our target coin to send its price flying extremely high see the posted guides if you need any tips to be prepared for one of the most epic pumps ever done we pump on kucoincom using the usdt pair only so you must have a kucoin account and usdt there in order to participate 2021-07-04 17:01:58+00:00 1.0 1246270015 9986 48 hours left everyone pump is monday july 5th at 1700 gmt check this against your local time we pump on kucoincom using the usdt pair for our target coin kucoin is the absolute best place to pump since it allows users from anywhere in the world has a wide selection of coins limited to no intervention from whales and nearly 2 billion of daily volume we have mastered the pumps here they will continue to get better and better the market is perfect for another pump with bitcoin and other coins rising even more since our last pump and investors loving trendingrising coins right now we are looking forward to a bigger longer even more insane pump monday with well over 1 million in volume be ready for the next epic event see you all then 2021-07-03 17:03:39+00:00 1.0 1246270015 9985 pump announcement monday july 5th 1700 gmt 1pm est exchange kucoincom pair usdt after a very successful last pump to 400 with over 1 million volume we have seen massive growth in just under 24 hours this added power combined with perfect market conditions means more frequent and a++ pumps monday is an observed holiday in the us so we expect nearly all members to be available to join the pump which will increase our volume even more we will continue to provide the best pumps possible and truly believe monday will be one of our biggest and best ever invite friends and be ready in 3 days from now this will be huge everyone 2021-07-02 17:34:35+00:00 1.0 1246270015 9984 nord kucoin pump results start price 486 peak price 2434 peak gain 401 after a few weeks off our nord pump has signaled the beginning of a new wave of great pumps we managed over 105 million in volume and over 400 for nord the chart shows a nice steady rise great job everyone 2021-07-01 22:11:29+00:00 1.0 1246270015 9982 today we chose nord as it was gaining a lot of traction and action from swing traders we teased them into following this coin nord was having a nice climb all day then a small correction before the pump to our start price of 486 we were able to push nord to over 24 and the 1 sec chart shows these outside traders following us to help push the price even further great job everyone also of note the projected gain is given from the daily low so its simpler for members to calculate it quickly during the pump 2021-07-01 19:50:56+00:00 1.0 1246270015 9980 2 minutes until the pump everyone expected gain 500900 the next post will be the coin 2021-07-01 18:58:02+00:00 1.0 1246270015 9979 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-07-01 18:50:02+00:00 1.0 1246270015 9977 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump today and extended push right after 2021-07-01 18:00:02+00:00 1.0 1246270015 9976 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with incredible results market conditions are perfect so be ready for one of the best ever today in 2 hours from now 2021-07-01 17:00:02+00:00 1.0 1246270015 9975 4 hours left everyone in 4 hours from now our target coin will post here we will all begin to buy it up quickly which starts the pump we will post a projected gain range before the pump as the coin is rising its best to set a limit sell within this range to ensure good profit ask questions if you have them see our guides review past pumps and successstories in our opinion there has never been a better time to pump than right now we expect incredible results today make sure you have usdt in your trading account on kucoin and are ready to join in 4 hours from now 2021-07-01 15:02:14+00:00 1.0 1246270015 9974 24 hours left everyone posted above are some past pump results it has been a couple weeks since our last pump so we want to make sure all new users are prepared the current market conditions are optimal for the pumps we do coins rebounding off recent lows and ready for us to send them to the moon our coin tomorrow will likely be one of our highest pumps ever and be greatly supported at its increased price by outsiders market makers buy quickly to get the lowest buy price and use limit sells on the way up to ensure your order fills where you want it to our goal is for absolutely everyone to send in their profit stories after doing one of the best pumps we have ever done be prepared for tomorrow as its shaping up to be amazing things you need a kucoincom account usdt in your trading account to be watching this channel in 24 hours from now for the target coin to post to be ready to buy and sell for optimal profit 2021-06-30 19:04:01+00:00 1.0 1246270015 9969 48 hours left everyone 2 days left until our massive pump on kucoincom crypto prices are rising across the board with markets looking healthy as ever this new momentum for crypto comes at the perfect time for our pump we will ride this wave of green to easily send our target coin to extremely high prices because of all the money flowing into crypto especially into altcoins we can expect massive profits from this pump outsiders trading bots and market makers will all jump into our coin we are also adding as much promotion as possible the most users ever will see our pump signal and view our promo posts on social media this will be an insane pump right at the perfect time please review the howtopump we pump on kucoincom only we use the usdt pair for our coins to ensure higher quality pump signal will come in this channel 48 hours from now 2021-06-29 19:04:28+00:00 1.0 1246270015 9968 pump announcement thursday july 1st 1900 gmt 3pm est exchange kucoincom pair usdt after a couple weeks of downs the markets are all on the way up again this is the perfect scenario we have been waiting for as altcoin start rising from their recent lows we can ride this momentum to the top during our pump money is flooding back into crypto and investors are looking for good coins to invest in on thursday we will make sure our target coin gets the most attention as top gainer and earns us all massive profit pumping from recent lows to new extreme highs is exaxtly what we waited all this time for be ready for this pump as it will be one for the ages more info to come soon 2021-06-28 22:06:27+00:00 1.0 1246270015 9967 on top of this we also had an issue reposting our signal to other partners here on discord which ould have meant less volume the 2 combined are what lead to the final decision pumping an already risen coin with less volume that expected could have been very dangerous for everyone so we took the safest option we hope you know that this was to protect everyone it was also mentioned that some bots actually read the link posted 15 seconds after the pump being cancelled this was not intentional if it were the link would have been in the first message the link was posted so everyone can go see proof of the main reason we had to cancel 2021-06-17 19:18:44+00:00 1.0 1246270015 9963 pump postponed we are going to have to postpone the pump today we will share the coin in the next post so you can see the reason why the coin we chose is rumored to be listing on binance from a credible source we trust we wanted to pump this coin before it does but news is already getting out early see the chart and all the buying happening this is unfortunate timing as if our pump was a little earlier things would have been perfect pump postponed 2021-06-17 18:59:51+00:00 1.0 1246270015 9962 2 minutes until the pump everyone expected gain 5001000 the next post will be the coin 2021-06-17 18:58:02+00:00 1.0 1246270015 9961 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-06-17 18:50:02+00:00 1.0 1246270015 9959 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump today and extended push right after our coin will have a great amount of hype and coin news surrounding it 2021-06-17 18:00:02+00:00 1.0 1246270015 9958 2 hours left everyone today is looking beyond perfect for our pump high impressive peaks and holding the coin at a majorly inflated value for much longer than normal we expect our pump to shake the entire market and push our coin to a new ath and hold 23x the price for hours or even days after our first peak as we promote all over the crypto world advertisers are standing by waiting for our announcement outsiders will be eagerly jumping in and all of us will be earning huge profit coin news will be posted here as well so everyone can help shill 2021-06-17 17:03:01+00:00 1.0 1246270015 9957 4 hours left everyone in 4 hours from now the coin to pump will post here as we all start to buy it the coin will begin to pump like crazy to our projected gain range buy the coin low as soon as you can and resell in the projected gain range see our howtopump guide if you need any help or ask questions in the chat this will be a historic pump as conditions are fantastic see you all in 4 hours for the pump 2021-06-17 15:03:35+00:00 1.0 1246270015 9955 24 hours left until our pump everyone the coins and conditions on kucoincom are extremely favorable for our pump there are at least a dozen coins which could pump over 500 and we will surely pump one much higher we are at full power with even more people seeing our signal tomorrow than have ever before telegram promotion discord promotion and a full on social media campaign will mean hundreds of thousands of people will witness our pump and be ready to buy in to push it higher and longer than previous pumps this will be a truly massive pump thing to remember 1 we pump on kucoincom so you must be trading there other places may not have the coin available sign up for an account if you havent already 2 we use the usdt pair to ensure quality you will need usdt in your trading account in order to participate 3 we are a team the power of the community is in its numbers help your fellow members by not selling until targets are reached and by shilling the coin all over social media 4 read the posted howtopump guides they are meant to help you and include very useful information on how to make the most profit when pumping 2021-06-16 19:12:42+00:00 1.0 1246270015 9954 48 hours left thursday june 17th 1900 gmt 3pm est exchange kucoincom pair usdt 2 days left until our massive pump on kucoin exchange the crypto rally continues as bitcoin passed 41k today and investor interest is rising daily this positive attitude about crypto means greater willingness of traders to invest more money into rising coins especially the coin we choose thursday as it will be a shining start for the day with news and hype surrounding it we will launch an ad campaign for our coin right after the pump starts to bring in as many outsiders as we can with our full power back and the heavy telegram promotions we are doing for this pump it will be much larger than previous pumps be ready for thursday at 1900 gmt as we bring greatness to kucoin pumps once again everyone 2021-06-15 19:05:29+00:00 1.0 1246270015 9953 thursday june 17th 1900 gmt 3pm est exchange kucoincom pair usdt after 2 weeks of tracking the markets we are back with our next pump bitcoin is up to over 40k and crypto communties are growing tremendously this surge in the market will greatly increase the effectiveness of our pumps we have also secured promotion for this pump in several other large groups and all over telegram to make sure its huge we pump on kucoin bc its the absolute best place to pump all users worldwide are accepted even usa with no kyc less bots no whales more coins and nearly 2 billion daily volume to learn how the pumps work see our past pumpresults and review the howtopump guide more info to come and a great pump on the way this thursday 2021-06-15 03:40:22+00:00 1.0 1246270015 9951 the gain was great 531 there was absolutely 0 prepump which is another great sign but this was way too quick the discord connection issues could have caused us to have less volume combined with a multi pair coin not performing well will less volume the speed in which this pump was over was no ones fault but the teams and we will fix it next pump this is something we will make priority 1 for the next pump with a goal to peak after 1 min into the pump 2021-06-02 19:25:37+00:00 1.0 1246270015 9947 2 minutes until the pump everyone expected gain 400700 the next post will be the coin 2021-06-02 18:58:04+00:00 1.0 1246270015 9946 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-06-02 18:50:04+00:00 1.0 1246270015 9944 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we expect an incredible pump 2021-06-02 18:00:04+00:00 1.0 1246270015 9943 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available in your trading account on kucoin log in early to be sure everything is ready we expect a fantastic pump today with more users more participation and more outsiders than ever before this will be a great pump follow the howtopump and you are sure to profit buy quickly for the lowest prices and list a limit sell as the coin is rising through the projected gain range after our impressive recent growth we expect a monstrous pump today with glorious results be ready for one of the best ever today in 2 hours from now 2021-06-02 17:00:01+00:00 1.0 1246270015 9941 4 hours left until the pump we are very excited for todays pump with more members and more power than ever before coins on kucoin are looking prime to be pumped to higher gains and attract even more outsiders this means a better pump and more profit for everyone remember 1 we trade only on kucoincom other exchanges dont have the same coins listed 2 we use the usdt pair for the coin since these coins are better quality and have more liquidity than btc pairs this means you need to have usdt to trade with on kucoin 3 make sure the usdt is in your trading account 4 read the guide and ask questions if you have any the posted info and community are here to help 5 get hype today will be an incredible pump be ready to share the results and brag to your friends so we grow even more powerful next time good luck and see you in 4 hours from now 2021-06-02 15:07:04+00:00 1.0 1246270015 9940 24 hours left everyone bitcoin price has remained steady which forms premium conditions for altcoins to pump if you notice the overall market sentiment for altcoins is very good with many going green lately this is exactly what we want to see leading up to a pump our increased member numbers and overall power will truly dominate the coin we choose tomorrow leading to a fantastic pump be ready with usdt on kucoin to take part and earn incredible profits here are things to know 1 we pump on kucoincom you must have an account there to enter 2 we trade coins with their usdt pair you will need usdt in your trading account 3 the signal will be posted here exactly at 1900 gmt wednesday 24 hours from now 4 buy the coin quickly to get the best price and set a limit sell withing the projected gain range to make sure you profit review the howtopump if you need help creating a kucoin account or want advice on the best way to trade 2021-06-01 19:03:59+00:00 1.0 1246270015 9939 48 hours left until the pump wednesday june 2nd 1900 gmt 3pm est exchange kucoincom pair usdt the markets are getting great for our pump while at the same time we are growing very quickly we are now much stronger than we ever have been there will be a lot of excitement come wednesday more than enough room for everyone to profit a clean signal with no prepump and an extremely impressive percent gain making sure the peak lasts long so everyone can earn extreme profits is our main goal to make sure this happens please review the past pumps like lon posted above and read the howtopump guide 2021-05-31 19:04:12+00:00 1.0 1246270015 9937 pump announcement wednesday june 2nd 1900 gmt 3pm est exchange kucoincom pair usdt with nearly 2 weeks of growth 20k+ new members since our last pump and the markets finally headed green its time for our next huge pump conditions are looking great and there are many outstanding coins to pump right now for this pump we have decided to not use partners except the leo groups as we bought perpetual rights to always post there and they have a massive audience to add to our volume we will look to break 2 million volume and over 1000 for the 4th pump in a row several steps have been taken to make sure this pump will be extremely user friendly like lon just without 47k gains or maybe there will be zero prepump and likely our longest lasting pump ever take your time to read the posted help info and practice trades on kucoincom we look forward to our most successful pump yet with thousands of members sending in `successstories` more info to come see everyone wednesday 2021-05-30 20:52:12+00:00 1.0 1246270015 9929 2 minutes until the pump everyone safe buy zone up to 1500 target 10000+ the next post will be the coin 2021-05-23 15:58:01+00:00 1.0 1246270015 9928 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal this coin wil explode today 2021-05-23 15:50:01+00:00 1.0 1246270015 9927 30 minutes left until the pump everyone we are very excited for today and look toward our most massive pump ever with the highest gains ever done by any group a high percent rise is fantastis but members profits are even better be reasonable with your sells and secure that profit due to the extreme nature of the pump today we will post a safe buy zone and a target buy within this safe buy zone and sell at up to the target for max profits 2021-05-23 15:30:00+00:00 1.0 1246270015 9926 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we expect our best pump yet coins are bottomed out and sell walls thin meaning we can pump them from the cheapest prices to their absolute max for extreme gains 2021-05-23 15:00:00+00:00 1.0 1246270015 9925 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available log in early and make sure everything is ready we expect a fantastic pump today with more users and more outsiders than ever before making this the biggest pump we have ever done markets are fantastic for a pump today with altcoins ready to explode follow the howtopump and you are sure to profit we have shattered our expected gain to as high as 47000 and gained volume each pump to over 36 million the projected gain range for today will be posted 2 min before the pump you should sell in that range unless you are a seasoned pro ready to take added risks for extreme profit the eyes of the entire pumping world are on us and soon so will be the eyes of every kucoin user be ready for the most massive pump ever done 2021-05-23 14:01:00+00:00 1.0 1246270015 9924 4 hours left until the pump everyone today looks perfect for our pump coins will pump much easier than normal which means higher gains and more attention from traders on kucoin we expect an epic pump to the highest gains we have ever done with more usdt being held in wallets than ever before the amount of outsiders in this pump will be plentiful details we will empty the market making orders for our coin and be able to fully control the price this means most members buying in low and being able to sell very high we have tested this method using multiple orders and it has been 100 successful the signal bot system time is synced now meaning the pump and the signal will happen at the same time this will be an epic pump with huge gains for everyone follow the howtopump guide you must be trading on kucoincom you need usdt in your trading account most of us will remember this day forever as the greatest pump of all time see you in 4 hours 2021-05-23 12:07:44+00:00 1.0 1246270015 9922 pump anniuncement sunday may 23rd 1600 gmt 12pm est exchange kucoincom pair usdt we have found and tested extremely profitable opportunities in this current market situation and want to pump asap the pump tomorrow will have our highest projected gain ever as it is on a weekend we expect more volume than normal and more trading activity on kucoin in general the amount of usdt held in wallets on kucoin is near all time highs meaning more outsiders buying into our pump the narket making method we used on lon 47000 pump will be used again tomorrow will we pass 47000 most likely will we pass 10000 this is practically guaranteed this will be our most epic pump of all time with the highest user profits we know this is short notice but these opportunities are too good to pass up get ready for a crazy pump set aside an hour of your day for the best gains youll ever make everyone 2021-05-22 15:27:43+00:00 1.0 1246270015 9921 after further testing we have found over 10 coins on which we can use the same method we used on lon to empty the market making orders and send the coins flying to insane gains of 10000+ we are studying the buy supports of these coins to determine which will hold its pumped price the longest next pump we will pass 10000 again and likely hold x5 the start price for 23 minutes greatest pump ever incoming stay tuned for details everyone 2021-05-20 17:14:56+00:00 1.0 1246270015 9916 2 minutes until the pump everyone projected gain 9002500 the next post will be the coin 2021-05-19 18:58:01+00:00 1.0 1246270015 9915 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-05-19 18:50:02+00:00 1.0 1246270015 9914 30 minutes left until the pump everyone we are very excited for today and look toward our most massive pump ever 2021-05-19 18:30:01+00:00 1.0 1246270015 9913 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we expect our best pump yet coins are quickly recovering but still lower than normal meaning everyone can buy in low to earn even more profit today is a great time for a pump we have been blessed 2021-05-19 18:00:02+00:00 1.0 1246270015 9912 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available log in early and make sure everything is ready we expect a fantastic pump today with more users more volume and more outsiders than ever before making this the biggest pump we have ever done markets are fantastic for a pump today with altcoins ready to explode follow the howtopump and you are sure to profit we have shattered our expected gain to as high as 47000 and gained volume each pump to over 36 million the projected gain range for today will be posted 2 min before the pump you should sell in that range unless you are a seasoned pro ready to take added risks for extreme profit the eyes of the entire pumping world are on us and soon so will be the eyes of every kucoin user be ready for a massive pump 2021-05-19 17:00:01+00:00 1.0 1246270015 9911 3 hours left everyone bitcoin and the crypto market are already recovering nicely we will make sure our target coin is the most attractive to traders buying back into altcoins and hold our coin as the top gainer all day long these market conditions along with more volume and participants than ever before set the stage for our pump today to be the most massive ever done make sure you are trading on kucoincom and have usdt in your trading account this will be a historic event that you wont want to miss 2021-05-19 16:02:02+00:00 1.0 1246270015 9909 4 hours left everyone the selloff in the crypto market means there is now more usdt than ever being held by traders fortunately for us we trade in the usdt market these markets have more activity today than ever before more usdt and more activity means more traders ready to buy our coin today as we make it a green gem in this sea of red our coin will easily become the top gainer of the day and gain a lot of attention we expect the most volume ever in our pump and by far the most volume from outside traders we will all be able to buy the target coin from a low price as we send it extraordinarily high these factors mean our coin will likely hold its inflated value for much longer than normal we hope you are ready for a great pump today because it will be one of our best yet 2021-05-19 15:04:36+00:00 1.0 1246270015 9907 48 hours left until our pump this wednesday will be our huge pump on kucoin our signal will reach the most people it ever has and our volume will likely be the biggest its ever been the drop of btc has a lot more people holding usdt instead which is great news for us since we pump in the usdt market many investors traders are looking to scoop up hot altcoins and we will make sure ours is the hottest here are things to know everyone 1 we pump on kucoincom you must have an account there to enter 2 we trade coins with their usdt pair you will need usdt in your trading account 3 the signal will be posted here exactly at 1900 gmt wednesday 4 buy the coin quickly to get the best price and set a limit sell withing the projected gain range to make sure you profit see you all in 48 hours 2021-05-17 19:02:22+00:00 1.0 1246270015 9906 pump announcement wednesday may 19th 1900 gmt 3pm est exchange kucoincom after doing what we consider the most successful pump ever done on kucoin to 47000 with 36 million volume we have seen extraordinary growth and interest in our group our next pump will be even bigger than our last with the signal going to the most people it ever has be ready for another huge event this wednesday everyone 2021-05-16 16:13:45+00:00 1.0 1246270015 9903 lon kucoin pump results start price 967 at signal peak price 455999 peak gain 47156 this was by far the biggest and best pump ever done on kucoin the percent gain was an incredible 47156 thats not a typo 47k gain pump volume reached over 36 million which is also our highest ever today we employed a unique strategy to beat market making bots and attract outsiders it worked flawlessly besides the impressive stats the feedback and support from members is what makes this pump special over 90 of the responses were of profit with some extreme profits mixed in a special thanks to all of you for making today incredible we work hard to have the best pumps possible and promise we will always do things to set us apart from any other groups thank you for being here 2021-05-12 22:05:13+00:00 1.0 1246270015 9894 2 minutes until the pump everyone projected gain 300400 the next post will be the coin 2021-05-12 18:58:03+00:00 1.0 1246270015 9893 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-05-12 18:50:04+00:00 1.0 1246270015 9891 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we expect our best pump yet 2021-05-12 18:00:03+00:00 1.0 1246270015 9890 2 hours left everyone we pump on kucoincom not anywhere else you must be trading on kucoin we use usdt to buy the target coin because usdt has the best markets make sure your usdt is in your trading account in 2 hours the coin to buy will be posted here by the signal bot and we will all begin to pump it make sure you are familiar with trading on kucoin so you can earn yourself the most profit conditions for today are extremely favorable to pumping outsiders are jumping in on anything nowadays 2021-05-12 17:00:42+00:00 1.0 1246270015 9889 4 hours left everyone crypto markets are booming and trading activity is at an all time high this is fantastic news for our pump as we will have the most interest and outsiders ever inside of our groups we have grown by more than 20000 members since last pump the volume today will be huge and profits massive come prepared to have one of the best pumps we have ever done 2021-05-12 15:01:05+00:00 1.0 1246270015 9888 24 hours left everyone in 24 hours from now the target coin will post here we will all begin to buy the target coin on kucoincom and its value will increase dramatically our average gain in a pump is 485 our highest ever has been 947 tomorrow we will look to set a new record by doing our biggest pump ever a truly massive pump to gain the attention of every trader on kucoin exchange prepare for this event study past results and be confident in yourself now is our chance to make the most profit we have ever done good luck everyone see you in 24 hours things to know 1 we pump on kucoincom you must have an account there to enter 2 we trade coins with their usdt pair you will need usdt in your trading account 3 the signal will be posted here exactly at 1900 gmt 4 buy the coin quickly to get the best price and set a limit sell withing the projected gain range to make sure you profit howtopump guide 2021-05-11 19:00:09+00:00 1.0 1246270015 9887 48 hours left until our pump this wednesday will be our huge pump on kucoin our signal will reach the most people it ever has and our volume will likely be the biggest its ever been here are things to know everyone 1 we pump on kucoincom you must have an account there to enter 2 we trade coins with their usdt pair you will need usdt in your trading account 3 the signal will be posted here exactly at 1900 gmt wednesday 4 buy the coin quickly to get the best price and set a limit sell withing the projected gain range to make sure you profit see you all in 48 hours here is a link to the how to pump guide 2021-05-10 19:13:56+00:00 1.0 1246270015 9882 1 hour left everyone when pump times comes make sure you are logged in with your trading pin already entered if you use one buying as quickly as possible will secure you the best buy in price the projected gain range will be posted 2 min before the pump selling within that range will net you the most profit always use limit sell orders during a pump get ready for a huge event 2021-05-08 15:59:20+00:00 1.0 1246270015 9881 2 hours left everyone we pump on kucoincom not anywhere else you must be trading on kucoin we use usdt to buy the target coin because usdt has the best markets make sure your usdt is in your trading account in 2 hours the coin to buy will be posted here by the signal bot and we will all begin to pump it make sure you are familiar with trading on kucoin so you can earn yourself the most profit conditions for today are literally the best they have ever been this will be an awesome pump 2021-05-08 15:01:27+00:00 1.0 1246270015 9880 4 hours left everyone crypto markets are booming and trading activity is at an all time high this is fantastic news for our pump as we will have the most interest and outsiders ever inside of our groups we have grown by more than 20000 members since last pump the volume today will be huge and profits massive come prepared to have one of the best pumps we have ever done 2021-05-08 13:04:31+00:00 1.0 1246270015 9879 24 hours left everyone in 24 hours from now the target coin will post here we will all begin to buy the target coin on kucoincom and its value will increase dramatically our average gain in a pump is 485 our highest ever has been 947 tomorrow we will look to set a new record in terms of gain and volume a truly massive pump to gain the attention of every trader on kucoin exchange prepare for this event study past results and be confident in yourself now is our chance to make the most profit we have ever done good luck everyone see you in 24 hours 2021-05-07 17:03:38+00:00 1.0 1246270015 9878 under 48hrs until the pump this saturday will be our huge pump on kucoin our signal will reach the most people it ever has and our volume will be the biggest its ever been here are things to know 1 we pump on kucoincom you must have an account there to enter 2 we trade coins with their usdt pair you will need usdt in your trading account 3 the signal will be posted here exactly at 1700 gmt saturday 4 buy the coin quickly to get the best price and set a limit sell withing the projected gain range to make sure you profit 2021-05-06 20:13:12+00:00 1.0 1246270015 9877 3 days left until the pump saturday may 8th at 1700 gmt exactly 3 days from now we pump on kucoincom only and use the usdt pair to ensure higher quality coins please review the howtopump guide help info and past results to prepare yourself to earn the most profit possible success stories can be huge some users are earning 10s of thousands of dollars each pump be prepared and focused and this could be you as well after our strong growth and optimal market conditions our volume this pump should exceed 2 million easily everyone 2021-05-05 17:04:55+00:00 1.0 1246270015 9876 pump announcement saturday may 8th 1700 gmt 1pm est exchange kucoincom pair usdt bitcoin is sideways and the best altcoins are pumping hard with 4 days to prepare this will be an epic pump our telegrams and second server are growing rapidly with our total reach now over 100000 members last pump our new signal bot posted the coin at the exact scheduled time volume was a bit down since we pumped on a weekday but by pumping on a weekend again and with over 2 weeks of growth since last time this will be a huge pump we anticipate well over 1 million in volume again more info to follow everyone 2021-05-04 19:36:51+00:00 1.0 1246270015 9867 very interestingly 2 other coins spiked at the time of our signal 160k of volume added to previous pump coins instead of the main coin volatility hunters seemed to have put all their volume into the wrong coins costing us some volume but overall mlk had about 800k of volume during the pump 2021-04-24 16:27:23+00:00 1.0 1246270015 9865 2 minutes until the pump everyone expected gain 350700 the next post will be the coin 2021-04-24 15:58:05+00:00 1.0 1246270015 9864 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-04-24 15:50:04+00:00 1.0 1246270015 9862 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we expect our best pump yet 2021-04-24 15:00:04+00:00 1.0 1246270015 9861 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available log in early and make sure everything is ready we expect a fantastic pump today with more users more volume and more outsiders than ever before making this the biggest pump we have ever done markets are great for a pump today with altcoins goin green and ready to explode follow the howtopump and you are sure to profit we have shattered our expected gain to as high as 947 and gained volume each pump to over 2 million also note the signal bot will post the coin at the exact scheduled time meanign we will have an extremely clean pump 2021-04-24 14:00:04+00:00 1.0 1246270015 9860 4 hours left until the pump everyone exchange kucoincom pairing usdt to participate make sure you have usdt in your trading account on kucoin our pumps have often surpassed our projected gain and increased in volume each time today will be our biggest and best pump yet outside interest is very high and pump coins are ready to moon 2021-04-24 12:00:06+00:00 1.0 1246270015 9858 under 24 hours left until the pump exchange kucoincom pairing usdt our pumps will be always be ffa freeforall make sure you check the time for your location we have been fortunate with market conditions leading to amazing pump opportunities tomorrow we will be able to pump more massively than we ever have before the drop in bitcoin caused sell walls to dissapear on most coins so we will be able to pump to our highest percent gain ever we expect the volume in this pump to be massive again as always you need to be trading on kucoincom and with usdt 2021-04-23 18:44:45+00:00 1.0 1246270015 9857 48 hours left until the pump everyone date saturday april 24th at 1600gmt exchange kucoincom pairing usdt this pump will be freeforall as usual everybody gets the coin signal at exactly the same time so many users have been asking for the next pump there is great interest in altcoins right now and perfect conditions for another pump we expect this pump to be even bigger and even better be ready for another great pump in 48 hours from now things to remember we trade on kucoincom not anywhere else we trade with usdt not btc make sure your usdt is in your trading account not main or futures account prepare yourself have the pages open and trading pin entered if you use one be focused and ready to go at pump time most people use a market buy order with 75 of their available usdt this is best practice when selling make sure you use a limit orders and are selling within the projected gain do not market sell during a pump use a limit order as it is safer and will get you far more profit 2021-04-22 16:00:03+00:00 1.0 1246270015 9856 pump announcement date saturday april 24th time 1600 gmt 12pm est exchange kucoincom pair usdt our next pump will be posted exactly at the scheduled time using our new tool no more delay the tool will also post all reminders on pump day so you can see it in action before pump time this will make sure the pump starts exactly on time and all the volume is concentrated right after the signal posts the same massive pumps you are used to just got even better see everyone this weekend 2021-04-21 19:32:51+00:00 1.0 1246270015 9855 very important announcements 1️⃣ from now on we will be using a bot to post the pump signal this way it posts exactly at the scheduled time many users have asked for this so we felt it necessary to comply this will remove any delay between buying and posting meaning all pumps will always start after the signal is posted and therefore market volatility bots can never buy before our signal again 2️⃣ we have secured advertisements in crypto groups top pump groups telegram and all over the internet which will begin today the growth between now and next pump will be massive leading to even more volume for next pump 3️⃣ next pump will be announced asap thank you everyone 2021-04-19 12:22:54+00:00 1.0 1246270015 9847 10 minutes left everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-04-17 15:50:41+00:00 1.0 1246270015 9846 30 minutes left until our pump everyone 2021-04-17 15:30:03+00:00 1.0 1246270015 9845 1 hour left today keeps getting better and better this will surely be our most massive pump ever make sure you are logged in prior to the pump with usdt available in your trading account we trade our coins with the usdt pair and on kucoin only if you use a trading pin also be sure to enter before the pump begins to save yourself time 2 min before the coin signal we will share a projected gain this is the range we expect the coin to reach use this info when determining your buyssells everyone 2021-04-17 15:03:10+00:00 1.0 1246270015 9838 pump announcement date saturday april 17th time 1600 gmt 12pm est exchange kucoincom as you all know the overall crypto market is booming this weekend will be fantastic for another pump with more interest than ever before i can personally guarantee this will be our biggest pump of all time this group has done extremely well and now its time to reinvest all proceeds to make this the most outstanding pump possible for everyone to make sure of this we have secured promotion in 2 of the largest pump groups from binance who wish to showcase our kucoin pump these are paid promotions only as always we will handle the pumps fully inhouse our signal will be seen by more people than it ever has been before the overall crypto marketcap will be higher than it has ever been before and the amount of volume we generate will be much higher than ever before saturday will be a truly amazing day see you all then 2021-04-13 21:38:49+00:00 1.0 1246270015 9835 bittrex sib results start price 95 peak price 176 gain 85 volume 08btc as you can see the volume was not there the coin was selected based on more anticipated volume which didnt come unfortunately the result is showing us the true market conditions so we will wait until the conditions improve before we do our next pump 2021-03-02 20:28:05+00:00 1.0 1246270015 9832 everyone only 5 minutes left the next post will be the coin 2021-03-02 19:55:05+00:00 1.0 1246270015 9831 everyone 10 minutes left until the pump be sure to be logged into bittrex and ready for the pump the expected gain will be given with the coin 2021-03-02 19:50:01+00:00 1.0 1246270015 9830 everyone 30 minutes left until the pump 2021-03-02 19:30:04+00:00 1.0 1246270015 9829 everyone 1 hour left until the pump exchange pairing btc the best advice to maximize profits is to be focused and be ready to buy as fast as possible this is the perfect opportunity for the choosen coin to make top gainer of the day and demand an influx of outsider buying to help you with your sell we will add the expected gain with the coin signal 1 hour to go be logged in and ready to pump 2021-03-02 19:00:02+00:00 1.0 1246270015 9828 everyone 2 hours left until the pump exchange bittrexcom pairing btc make sure you have your btc available log in early and make sure everything is ready bittrex markets are looking extremely good many altcoins are ready to breakout and ours will be among the strongest today is the perfect day for a pump lets all make huge gains remember buying as quickly as possible gets you a lower price and potential for bigger profits 2021-03-02 18:00:03+00:00 1.0 1246270015 9827 everyone 4 hours left until the pump exchange bittrexcom pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to succeed its a green market and today we can bring in a lot of outside traders to hold our boosted price as long as possible 2021-03-02 16:00:04+00:00 1.0 1246270015 9826 everyone 8 hours left until the pump exchange bittrexcom pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time the market is still bullish so alts will be pumping altseason is still here everyone in the group can profit just make sure you buy in quickly to get the best price while the coin is rising and set your sell order in the expected gain range we are very excited for today and looking forward to a great pump 2021-03-02 12:00:02+00:00 1.0 1246270015 9825 everyone 12 hours left until the pump exchange bittrexcom pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal is to get the selected coin trending on the front page of bittrex under biggest gain with the expected volume to be good again this will definitely be attainable we want the coin highlighted to draw the attention of outside investors and trading bots we anticipate this to be a huge pump in the current market remember that you get the chance to get in first so buy as quickly as you can and sell around the expected gain for personal profit use the help channels for guidance and be well prepared before the scheduled pump time 2021-03-02 08:00:05+00:00 1.0 1246270015 9824 everyone 24 hours left until the pump date march 2nd at 2000gmt exchange bittrexcom pairing btc pumps will be always be freeforall make sure you check the time for your location the markets have been performing well so it is our time to push a coin from the bottom to new highs we have a lot of new members and the goal is to improve on last pumps volume and push for a nice rise to peak over several minutes our last 2 pumps went 114 and 128 and we expect the same again make sure you have your bittrex account ready and loaded with btc for tomorrow everyone in the group has the potential to make substantial gains just buy as quickly as possible and set your sell order higher than your entry price and make sure you are familiar with the bittrex interface to give yourself the best possible chance of getting in at a lower price and exiting with sizable profit 2021-03-01 20:00:05+00:00 1.0 1246270015 9823 everyone 48 hours left until the pump reminder date tues march 2nd at 2000gmt exchange bittrexcom pairing btc this pump will be freeforall everybody gets the coin signal at exactly the same time altseason is still officially on so we are excited to be pumping in 2 days the markets are strong and coins can fly at any time our volume last pump was huge but we want to go even bigger this time and push the chosen coin to new highs bittrex remains a great alternative to other big exchanges for pumping weve seen the potential already and were excited to keep providing fair pumps that are not ruined by bots these pumps are extremely easy to profit from and require less capital to get a great return follow the steps below and if you need further help please ask how to pump 1 make sure you are registered on bittrexcom 2 have btc available to trade with 3 read the help channels and guide on how to buy fast 4 watch this channel for the reminders and the coin signal 48 hours from now dont leave it till the last minute to prepare 2021-02-28 20:00:03+00:00 1.0 1246270015 9822 pump announcement this is the rescheduled time bittrex pump details when tuesday march 2nd 2000 gmt where bittrexcom pairing btc our last two pumps went better than expected aeon climbed to peak after 3 mins and had good volume excl had 25 btc volume and held around our expected gain for 3 minutes with an initial peak around 115 it then returned to our expected levels after 7 minutes we aim to have the peak come after 35 minutes every time and expect no different this time everybody should have been be able to profit as the volume from outsiders has been substantial enough to fill sell orders once the coin starts trending we see the influx of new investors so if you bought with the signal chances are your portfolio is healthier now please invite people to the community the bigger our group the bigger pushes we do and the results will favor everyone 2021-02-28 01:08:41+00:00 1.0 1246270015 9820 everyone 48 hours left until the pump reminder date thurs february 25th at 2000gmt exchange pairing btc this pump will be freeforall everybody gets the coin signal at exactly the same time btc is having an active week but should settle by thursday the markets might be red now but that can only be good as most coins will be ready to explode our volume last pump was huge but we want to go even bigger this time after seeing steady growth in the server over the last week bittrex remains a great alternative to binance for pumping weve seen the potential already and were excited to keep providing fair pumps that are not ruined by bots these pumps are extremely easy to profit from and require less capital to get a great return follow the steps below and if you need further help please ask refresher on how to pump 1 make sure you are registered on bittrexcom 2 have btc available to trade with 3 read the help channels and guide on how to buy fast 4 watch this channel for the reminders and the coin signal 48 hours from now dont leave it till the last minute to prepare 2021-02-23 20:00:05+00:00 1.0 1246270015 9819 pump announcement lets keep the momentum going our next scheduled bittrex pump when thursday february 25th 2000 gmt where bittrexcom pairing btc our last two pumps went better than expected aeon climbed to peak after 3 mins and had good volume excl had 25 btc volume and held around our expected gain for 3 minutes with an initial peak around 115 it then returned to our expected levels after 7 minutes we aim to have the peak come after 35 minutes every time and expect no different this time everybody should have been be able to profit as the volume from outsiders has been substantial enough to fill sell orders once the coin starts trending we see the influx of new investors so if you bought with the signal chances are your portfolio is healthier now the markets are still very strong and we thank btc for that please invite people to the community the bigger our group the bigger pushes we do and the results will favor everyone 2021-02-22 00:46:38+00:00 1.0 1246270015 9817 bittrex excl results start price 327 peak price 700 gain 114 volume 23btc excl went higher than expected with the volume we had the candle wick was the peak at 700 but the mark we set was around 500550 which is reflected in the chart we even got a 2nd wave after 7 mins to this level so overall this was a perfect pump and well adjust the expected gain for next pump knowing we have this volume 2021-02-16 20:30:20+00:00 1.0 1246270015 9814 everyone only 5 minutes left the next post will be the coin 2021-02-16 19:55:05+00:00 1.0 1246270015 9813 everyone 10 minutes left until the pump be sure to be logged into bittrex and ready for the pump the expected gain will be given with the coin 2021-02-16 19:50:03+00:00 1.0 1246270015 9812 everyone 30 minutes left until the pump 2021-02-16 19:30:05+00:00 1.0 1246270015 9811 everyone 1 hour left until the pump exchange pairing btc the best advice to maximize profits is to be focused and be ready to buy as fast as possible this is the perfect opportunity for the choosen coin to make top gainer of the day and demand an influx of outsider buying to help you with your sell we will add the expected gain with the coin signal 1 hour to go be logged in and ready to pump 2021-02-16 19:00:02+00:00 1.0 1246270015 9810 everyone 2 hours left until the pump exchange pairing btc make sure you have your btc available still plenty of time to get ready bittrex markets are looking extremely good many altcoins are ready to breakout and ours will be among the strongest today is the perfect day for a pump lets all make huge gains remember buying as quickly as possible gets you a lower price and potential for bigger profits 2021-02-16 18:00:03+00:00 1.0 1246270015 9809 everyone 4 hours left until the pump exchange pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to succeed its a green market and today we can bring in a lot of outside traders to hold our boosted price as long as possible 2021-02-16 16:00:02+00:00 1.0 1246270015 9808 everyone 8 hours left until the pump exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time the market is still bullish so alts will be pumping the conditions are perfect everyone in the group can profit just make sure you buy in quickly to get the best price while the coin is rising and set your sell order in the expected gain range we are very excited for today and looking forward to a great pump 2021-02-16 12:00:05+00:00 1.0 1246270015 9807 everyone 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump the last coin we pumped made it on the bittrex trending coins list on the front page under biggest gain our goal again is to get the coin trending and draw the attention of outside investors with additional volume coming from algorithm bots we anticipate this to be a huge pump remember that you get the chance to get in first so buy as quickly as you can and sell around the expected gain for personal profit use the help channels for guidance and be well prepared before the scheduled pump time 2021-02-16 08:00:03+00:00 1.0 1246270015 9806 everyone 24 hours left until the pump date february 16th at 2000gmt exchange pairing btc pumps will be always be freeforall make sure you check the time for your location we have a lot of new members and the goal is to improve on last pumps volume and push for a nice rise to peak over several minutes the market is still bullish and a lot of eyes are on crypto right now make sure you have your bittrex account ready and loaded with btc for tomorrow everyone in the group has the potential to make substantial gains just buy as quickly as possible and set your sell order higher than your entry price and make sure you are familiar with the bittrex interface to give yourself the best possible chance of getting in at a lower price and exiting with sizable profit 2021-02-15 20:00:05+00:00 1.0 1246270015 9805 everyone 48 hours left until the pump reminder date february 16th at 2000gmt exchange pairing btc pump will be freeforall everyone will receive the coin signal at exactly the same time following on from our last awesome pump which saw aeon peak after 3 minutes at 128 we want to go bigger and better this time thats why bittrex is a great place to pump there are sufficient traders ready to jump on a good opportunity but the pump is not ruined by bots so results like this will be common these pumps are extremely easy to profit from and require less capital to get a great return follow the steps below and if you need further help please ask lets light up the front page again how to pump 1 make sure you are registered on bittrexcom 2 have btc available to trade with 3 read the help channels and guide on how to buy fast 4 watch this channel for the reminders and the coin signal 48 hours from now 2021-02-14 20:00:03+00:00 1.0 1246270015 9804 pump announcement everyone one week from now lets follow on from the last great pump with our next scheduled one when tuesday february 16th 2000 gmt where bittrexcom pairing btc our last pump went better than expected and it will be the same again but bigger we aim to have the peak come after 35 minutes every time and the last pump was a great example of this everybody should have been about to exit the pump with profits as the volume from outside buying kicked in when the coin started trending the markets are all still strong and great for pumping we will take the time this week to update the help channels and provide assistance to anyone wanting to get set up to join the next one please invite people to the community the bigger our group the bigger pushes we do and the results will favor everyone 2021-02-10 00:53:14+00:00 1.0 1246270015 9796 everyone only 5 minutes left the next post will be the coin 2021-02-04 19:55:02+00:00 1.0 1246270015 9795 everyone 10 minutes left until the pump be sure to be logged into bittrex and ready for the pump the expected gain will be given with the coin 2021-02-04 19:50:03+00:00 1.0 1246270015 9794 everyone 30 minutes left until the pump 2021-02-04 19:30:05+00:00 1.0 1246270015 9793 everyone 1 hour left until the pump exchange pairing btc the best advice to maximize profits is to be focused and be ready to buy as fast as possible this is the perfect opportunity for the choosen coin to make top gainer of the day and demand an influx of outsider buying to help you with your sell we will add the expected gain with the coin signal 1 hour to go be logged in and ready to pump 2021-02-04 19:00:05+00:00 1.0 1246270015 9792 everyone 2 hours left until the pump exchange pairing btc make sure you have your btc available still plenty of time to get ready bittrex markets are looking extremely good many altcoins are ready to breakout and ours will be among the strongest today is the perfect day for a pump lets all make huge gains remember buying as quickly as possible gets you a lower price and potential for bigger profits 2021-02-04 18:00:03+00:00 1.0 1246270015 9791 everyone 4 hours left until the pump exchange pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to succeed its a green market and today we can bring in a lot of outside traders to hold our boosted price as long as possible 2021-02-04 16:00:02+00:00 1.0 1246270015 9790 everyone 8 hours left until the pump exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time these pumps are extremely easy to profit from and require less capital to get a great return it is very important to read the help channels so you know what to expect make sure you buy in quickly to get the best price before the coin keeps rising and and set your sell order in the expected gain range everyone in the group can profit from this pump we are very excited for today and looking forward to a great pump 2021-02-04 12:00:03+00:00 1.0 1246270015 9789 everyone 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal is to get on the bittrex trending coins list on the front page under biggest gain this will get a lot of attention as we also entice automatic orders from the volume and algorithm bots and of course investment from online traders everyone in the group can make substantial gains just buy as quickly as possible and set your sell order higher than your entry price 2021-02-04 08:00:05+00:00 1.0 1246270015 9788 everyone 24 hours left until the pump reminder date february 4th at 2000gmt exchange bittrexcom pairing btc pumps will be always be freeforall alt season is definitely upon us it is a regular occurrence to see a coin spontaneously pump and traders are always looking to jump on an opportunity our signal will provide this and our members will be able to buy first the pump will start when the coin name is posted to this channel this is when you buy the coin will keep rising because our initial spike will generate a lot of outside interest and the coin price will keep increasing this is when you sell even better if the coin becomes a top gainer as it will hold nicely at elevated levels we pump as a team and profit as a team 2021-02-03 20:00:02+00:00 1.0 1246270015 9787 everyone 48 hours left until the pump date february 4th at 2000gmt exchange pairing btc pump will be freeforall everyone will receive the coin signal at exactly the same time this is our first pump for 2021 historically we have done massive pumps after a break and this will be no exception our previous pumps all held over 80 for several minutes these pumps are extremely easy to profit from and require less capital to get a great return please allow plenty of time to prepare yourself for the pump bittrex pumps can be extremely profitable if done correctly how to pump 1 make sure you are registered on bittrexcom 2 have btc available to trade with 3 read the help channels and guide on how to buy fast 4 watch this channel for the reminders and the coin signal 48 hours from now 2021-02-02 20:00:03+00:00 1.0 1246270015 9786 pump announcement bittrex pumps are back and we are ready for our next big pump when thursday february 4th 2000 gmt where bittrexcom the markets have all been performing well and the hype surrounding crypto is deafening so many alts have been pumping it is our time for us to push a coin to new highs if alt season is here we need to take full advantage of it our previous pumps were all around the 100 gain mark and we expect this to be the case again see the help channels and be ready to make insane profits 2021-02-01 12:02:59+00:00 1.0 1246270015 9767 everyone only 5 minutes to go❗️ we have choosed best coin our whales will push it to the moon global fomo warming up next post will be the x2 coin login binance and keep an eye here 2020-11-06 19:55:01+00:00 1.0 1246270015 9762 everyone those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 15 minutes are left for todays 2x bigpushcallbang 2020-11-06 19:45:01+00:00 1.0 1246270015 9760 everyone things are getting hot market looks good u can join the 100 gainer party all of binance will take notice this push which is about to start in 60 mins today 6th nov 20 pm gmt read the push plan in the pinned post 2020-11-06 19:00:02+00:00 1.0 1246270015 9755 everyone our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 8 hours left until bigpushcallbang ‼️ 2020-11-06 12:00:13+00:00 1.0 1246270015 9744 only 5 minutes to go next post strong reversal alt login binance 2020-11-05 15:55:49+00:00 1.0 1246270015 9741 everyone only 1 hour left for the pump our partners are calling this the strong reversal alt as this pump will change the direction of the coin from negative to very very green be ready on binance to enter 2020-11-05 15:02:17+00:00 1.0 1246270015 9740 feeling excited the strong reversal alt is coming only 3h left 4 pm gmt today 2020-11-05 13:08:05+00:00 1.0 1246270015 9739 bitcoin is incredibly strong bringing in new money to crypto altcoin sell supports are virtually gone meaning our strong reversal alt can reverse hard and remain on top✌️ only 4 hr left 4 pm gmt today 2020-11-05 12:04:47+00:00 1.0 1246270015 9727 everyone 5 minutes left the next post will be the coin to buy 2020-11-04 16:54:29+00:00 1.0 1246270015 9726 everyone our whales are ready are you ready 15 minutes left be ready to buy when we announce the coin that will get pumped 2020-11-04 16:45:08+00:00 1.0 1246270015 9723 everyone 4 hours left until our pump be ready to buy the pump coin on binance at exactly 1700 pm gmt our target is high 2020-11-04 13:06:46+00:00 1.0 1246270015 9722 everyone 24 hours left until our big pump on binance 2020-11-03 17:00:23+00:00 1.0 1246270015 9721 everyone partnered pump announcement hello everyone the next official pump will be scheduled for 48 hours from now date wednesday november 4 time 1700 pm gmt exchange binance advantage free for all we are finally ready to pump again with our original collab our target for this pump will be at least 70 gain altcoins are currently very oversold and a lot of people have been waiting for our next pump we see a lot of good opportunities in the market and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time our whales will do their part in the pump and buy after all our members to help pump the price up 2020-11-02 17:01:39+00:00 1.0 1246270015 9701 only 5 minutes to go❗️ we have choosed best coin our whales will push it to the moon global fomo warming up next post will be the x2 coin login binance and keep an eye here 2020-11-01 17:55:02+00:00 1.0 1246270015 9693 things are getting hot market looks good u can join the 100 gainer party all of binance will take notice this push which is about to start in 1 hr today 1st nov 18 pm gmt read the push plan in the pinned post 2020-11-01 17:00:01+00:00 1.0 1246270015 9692 are you guys as excited as we are you should be bcoz the 100+ gainer is coming just below 2 hrs left today 1st nov 18 pm gmt read the push plan in the pinned post it 2020-11-01 16:00:02+00:00 1.0 1246270015 9691 go go gothe time is coming for bigpushcallbang only 4 hrs left today 1st nov 18 pm gmt read the push plan in the pinned post 2020-11-01 14:00:04+00:00 1.0 1246270015 9678 only 5 minutes to go❗️ we have choosed best coin our whales will push it to the moon global fomo warming up next post will be the x2 coin login binance and keep an eye here 2020-10-21 17:55:12+00:00 1.0 1246270015 9673 15 minutes left be sure to be logged in and ready tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news do not sell early we will push this coin all the way to our target 2020-10-21 17:45:07+00:00 1.0 1246270015 9672 30 minutes left… until bigpushcallbang login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast rebuy the dips hold for maximum profit huge fomo warming up target 100+ 2020-10-21 17:30:05+00:00 1.0 1246270015 9671 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x bigpushcallbang 2020-10-21 17:00:10+00:00 1.0 1246270015 9665 everyone due to the success and positive feedback received from the community we will be planning another big coin push bigpushcall exchange binance com date wednesday 1800 gmt 200 pm est 48 hours from now more info and repost of push instructions to follow 2020-10-19 18:00:23+00:00 1.0 1246270015 9651 15 minutes left be sure to be logged in and ready tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news do not sell early we will push this coin all the way to our target 2020-10-18 17:46:12+00:00 1.0 1246270015 9650 30 minutes left… bigpushcall login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy your initial buy quickly rebuy the dips hold for maximum profit huge fomo warming up everyone target 100+ 2020-10-18 17:30:28+00:00 1.0 1246270015 9649 those who wants to make some profits are excited be ready at your computer and focused follow up posts will come after the coin is announced to help everyone during the push promo material and charting info will be supplied as well our coin has been chosen and is fundamentally very strong and ready for a breakout ✌️ only 60 minutes are left for todays 2x bigpushcall everyone 2020-10-18 17:00:59+00:00 1.0 1246270015 9638 everyone this strong ta bot pump call is coming in just under an hour make sure you have funds ready on binance com and are focused on this channel markets are reacting incredibly well to upward price movements on alts today and tomorrow should turn out very profitable for all 2020-10-17 15:02:46+00:00 1.0 1246270015 9636 everyone 4 hours left until the `strong ta` pump call our goal for todays call is to become binances top gainer and hold there for as long as we can we want all members who join in the call to be able to earn nice profits and be ready for our next call to enter simply watch here in 4 hours and promptly buy the posted coin on binance working together we will pump this coin to our target 50 and profit amazingly this is a free for all event a parnered pump with strong ta bot everyone has a equal chance to buy low and sell high this service is and always will be free to thank you for being a member here 2020-10-17 11:58:59+00:00 1.0 1246270015 9634 everyone we are planning for a huge weekend pump planned for saturday 1600 gmt coin push planned for sunday 1800 gmt binance is ripe with opportunity and we will fully take advantage of it saturday will be our pump partnered with large telegram groups to make it even larger and more effective sunday will be a huge coin push last one took 22 min to peak near 50 more info on each event will be posted clear your calendars this will be our biggest weekend ever 2020-10-15 20:40:17+00:00 1.0 1246270015 9623 5 minutes left the next post will be the coin to buy 2020-09-17 17:55:10+00:00 1.0 1246270015 9622 everyone 10 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin after buying in do not under sell your coins the markets are all rising and look very healthy 2020-09-17 17:50:07+00:00 1.0 1246270015 9621 everyone 30 minutes left tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2020-09-17 17:30:11+00:00 1.0 1246270015 9620 everyone 1 hour left rocket we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profited still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc there is a lot of fomo in altcoin today and its likely we hold our coin up for hours or even days we advise to hold for targets and limit sell withing the expected gain range which will be given with the coin 2020-09-17 17:00:08+00:00 1.0 1246270015 9619 2 hours left before the pump everyone the markets are looking great for our pumppush bitcoin is strong and altcoins markets are turning positive today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit conditions are optimal for a pump altcoins are at low levels with little resistance to spike extremely high each of the past 3 days a coin on binance has gone over +700 making investors even more eager to buy the next rising coin 2020-09-17 16:00:06+00:00 1.0 1246270015 9618 4 hours left before our pump on binancecom a little info about our pumppush call in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits be ready to buy the target coin quickly when it is announced 4 hours from now everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit 2020-09-17 14:00:46+00:00 1.0 1246270015 9617 24 hours left until the pump this will be one of the highest calls we give this year extreme profits are on the way for everyone exchange binance com date thursday 1800 gmt 2pm est tomorrows pumppush is shaping up to be amazing an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising buy support walls will be added to entice outside orders to join in above it which helps the price rise higher things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends 2020-09-16 18:03:06+00:00 1.0 1246270015 9615 everyone our next cf signals pumppush is coming in 48 hours from now exchange not binanceus date thursday september 17th time 1800 gmt 2 pm est many altcoins are dipping near key resistance levels the sell walls in all markets are near historic lows which will give us an easier ride to the top due to these factors we expect higher peaks than normal our pump should be able to do 6080 or even more if we were to repeat our typical volume there are over 10 coins that would go twice as high as usual we have upgraded the hosting of our signal bot and can promise an issue free delivery of the pump signal in addition we are adding hq news sources to promo the coin to keep the push rising and rising for as long as we can we will push this coin higher and longer than ever before our team is committed to make this pump one of the best ever to pump you must have a binancecom account and own btc in order to trade with 2020-09-15 18:00:18+00:00 1.0 1246270015 9602 5 minutes left the next post will be the coin to buy 2020-09-10 17:55:10+00:00 1.0 1246270015 9601 everyone 10 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin 2020-09-10 17:50:04+00:00 1.0 1246270015 9600 everyone 30 minutes left tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2020-09-10 17:30:05+00:00 1.0 1246270015 9599 everyone 1 hour left rocket we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc there is a lot of fomo in altcoin today and its likely we hold our coin up for hours or even days we advise to hold for targets and limit sell withing the expected gain range which will be given with the coin 2020-09-10 17:00:06+00:00 1.0 1246270015 9598 2 hours left before the pump everyone the markets are looking great for our pumppush bitcoin is sideways and all altcoins are on the rise today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today 2020-09-10 16:00:06+00:00 1.0 1246270015 9597 4 hours left before our pump on binancecom a little info about our pumppush call in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits be ready to buy the target coin quickly when it is announced 4 hours from now everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit 2020-09-10 14:00:11+00:00 1.0 1246270015 9595 everyone 24 hours left until the pump this will be one of the highest calls we give this year extreme profits are on the way exchange binancecom date thursday 1800 gmt 2pm est tomorrows pumppush is shaping up to be amazing an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising buy support walls will be added to entice outside orders to join in above it which helps the price rise higher things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends 2020-09-09 18:00:09+00:00 1.0 1246270015 9594 the time is here again our next cf signals pump is coming in 48 hours from now exchange not binanceus date thursday september 10th time 1800 gmt 2 pm est bitcoin has dropped and altcoins followed the sell resistance in all markets is near historic lows which will give us an easier ride to the top we expect higher peaks than normal due to these factors our pump should be able to do 6080 or even more if we were to repeat our volume from last pump there are over 10 coins that would go twice as high in addition we are adding hq news sources to promo the coin to keep the push rising and rising for as long as we can we will push this coin higher and longer than ever before our team is committed to make this pump one of the best ever to pump you must have a binancecom account and own btc in order to trade with 2020-09-08 18:10:34+00:00 1.0 1246270015 9592 rdn binance pump results start price 3775 peak price 5194 gain 375 rdn initial peak was 5190 then after 6 minutes it peaked again even higher to 5194 this means anyone who bought in the first wave and listed a sell under the first peak should have profited the initial wave was nothing special but the second wave was very impressive great job to all those who did well 2020-08-25 18:53:12+00:00 1.0 1246270015 9584 5 minutes left the next post will be the coin to buy 2020-08-25 17:55:07+00:00 1.0 1246270015 9583 everyone 10 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin 2020-08-25 17:50:39+00:00 1.0 1246270015 9582 everyone 30 minutes left tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2020-08-25 17:30:39+00:00 1.0 1246270015 9581 everyone 1 hour left rocket we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc 2020-08-25 17:00:14+00:00 1.0 1246270015 9580 2 hours left before the pump everyone the markets are looking great for our pumppush today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today 2020-08-25 16:00:02+00:00 1.0 1246270015 9579 4 hours left before our pump on binancecom in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit 2020-08-25 14:00:04+00:00 1.0 1246270015 9578 everyone 24 hours left until the pump exchange binancecom date tuesday 1800 gmt 2pm est tomorrows pumppush is shaping up to be amazing an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising buy support walls will be added from multiple sources this time blackout proof to entice outside orders to join in above it which keeps the price rising and rising things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends 2020-08-24 18:00:22+00:00 1.0 1246270015 9577 everyone there are 46 hours until the coin push the markets for altcoins are very healthy right now the recent bitcoin movement has set us up nicely and we are going to ride this momentum to make sure our coin rises the highest of all each pumppush our volume and power have been increasing we expect to be even stronger again this time see our past results user success stories and help channels if you need an idea how our methods work make sure you have a binancecom account ready with btc tuesday at 1800 gmt 2pm est 46 hours from now 2020-08-23 20:04:26+00:00 1.0 1246270015 9576 the time is here our next cf signals pump is coming these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call we all know how well sys ending up doing unbelievable 427 vib almost 70 and ppt almost 50 since then many alts have pumped naturally or off some news our coin will mimic this and we aim to pump it higher than them all exchange not binanceus date tuesday august 25th time 1800 gmt 2 pm est in addition we are adding hq news sources again to promo the coin and buy support from multiple sources to keep the push rising and rising for as long as we can to pump you must have a binancecom account and own btc in order to trade with get ready for tuesday this will be historic more info will be posted in the coming days for now please prepare yourself for the push and see our help channels if you havent already 2020-08-22 16:52:31+00:00 1.0 1246270015 9565 5 minutes left the next post will be the coin to buy 2020-08-04 17:55:04+00:00 1.0 1246270015 9564 everyone 10 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin 2020-08-04 17:50:05+00:00 1.0 1246270015 9563 everyone 30 minutes left tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2020-08-04 17:30:06+00:00 1.0 1246270015 9562 everyone 1 hour left rocket we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc 2020-08-04 17:00:05+00:00 1.0 1246270015 9561 2 hours left before the pump everyone the markets are looking great for our pumppush today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today 2020-08-04 16:00:08+00:00 1.0 1246270015 9560 4 hours left before our pump on binancecom in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits everyone who wishes to enter the pump must have a binancecom account with bitcoin available there is still time to join and deposit 2020-08-04 14:03:58+00:00 1.0 1246270015 9559 everyone 24 hours left until the pump exchange binancecom date august 4th tuesday 1800 gmt 2pm est the markets for altcoins are very healthy right now the recent bitcoin movement has pushed prices down and now they are ready to surge back up past what they were we are going to ride this momentum and make sure our coin rises the highest each pumppush our volume and power have been increasing we expect to be even stronger again this time 2020-08-03 18:00:02+00:00 1.0 1246270015 9558 the time is here again our next cf signal pump is coming in under 48 hours from now these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call thursday we all know how well sys ending up doing unbelievable 427 and vib almost 70 exchange not binanceus date tuesday august 4th time 1800 gmt 2 pm est bitcoin has been rising pushing the price of most altcoins down this means by pump day whichever coin ends up being our target will be near its bottom and ready to be pushed to the the moon currently there are many good opportunities lots of hype around us from our recent success and an influx of new users to increase our buyingshilling power even further all of these factors will make our next pump even more incredible than the last in addition we are adding hq news sources again to promo the coin to keep the push rising and rising for as long as we can to pump you must have a binancecom account and own btc in order to trade with get ready for tuesday this will be historic once more more info will be posted in the coming days please ready yourself for the push and see our help channels if you havent already 2020-08-02 20:07:45+00:00 1.0 1246270015 9553 very nice pump and vib is settling +40 over 15 minutes later 2020-07-30 18:17:41+00:00 1.0 1246270015 9535 5 minutes left the next post will be the coin to buy 2020-07-30 17:55:06+00:00 1.0 1246270015 9534 everyone 10 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin 2020-07-30 17:50:03+00:00 1.0 1246270015 9533 everyone 30 minutes left tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2020-07-30 17:30:06+00:00 1.0 1246270015 9532 everyone 1 hour left rocket we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc 2020-07-30 17:00:04+00:00 1.0 1246270015 9531 2 hours left before the pump everyone the markets are looking great for our pumppush today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit we can easily moon our coin today 2020-07-30 16:00:05+00:00 1.0 1246270015 9530 4 hours left before our pump on binancecom in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today all those who join can expect great profits everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit 2020-07-30 14:00:03+00:00 1.0 1246270015 9529 everyone 24 hours left until the pump exchange binancecom date july 30th thursday 1800 gmt 2pm est the markets for altcoins are better than they have been in a long time the recent bitcoin rise has pushed prices down and now they are ready to surge back up past what they were we are going to ride this momentum and make sure our coin rises the highest 2020-07-29 18:00:26+00:00 1.0 1246270015 9528 everyone 48 hours left until the pump exchange binancecom date july 30th thursday 1800 gmt 2pm est this next pumppush is shaping up to be among the best we have ever done an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 48 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends 2020-07-28 18:00:25+00:00 1.0 1246270015 9527 the time is here our next cf signal pump is here these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call thursday we all know how well sys ending up doing unbelievable 427 exchange not binanceus date thursday july 30th time 1800 gmt 2 pm est bitcoin has been rising pushing the price of most altcoins down this means by pump day whichever coin ends up being our target will be near its bottom and ready to be pushed to the the moon currently there are many good opportunities lots of hype around us from our recent success and an influx of new users to increase our buyingshilling power even further all of these factors will make our next pump even more incredible than the last in addition we are adding more hq news sources to promo the coin to keep the push rising and rising for as long as we can to pump you must have a binancecom account and own btc in order to trade with get ready for thursday this will be historic more info will be posted in the coming days please ready yourself for the push and see our help channels if you havent already 2020-07-27 19:07:47+00:00 1.0 1246270015 9514 5 minutes left the next post will be the coin to buy 2020-07-16 17:55:04+00:00 1.0 1246270015 9513 everyone 10 minutes left be sure to be logged in and ready the coin news to promote will be posted shortly after the bot posts our target coin 2020-07-16 17:50:04+00:00 1.0 1246270015 9512 everyone 30 minutes left tips have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2020-07-16 17:30:02+00:00 1.0 1246270015 9511 everyone 1 hour left rocket we are working very hard to have our tools and team ready to push the target coin to the moon please do your part to help promote the coin news during the pump which helps push the price even higher if you have already profitted still promote and help others we are a team and we profit as a team next time they may be the ones helping you good places to repost the coin news include reddit crypto forums other telegramdiscord groups popular twitter accounts posts youtube comments etc 2020-07-16 17:00:04+00:00 1.0 1246270015 9510 2 hours left before the pump everyone the markets are looking great for our pumppush today we will see good volume and impressive peaks buy quickly before the price rises too much promote sell profit lets get this money 2020-07-16 16:00:04+00:00 1.0 1246270015 9509 4 hours left before our pump on binancecom in 4 hours we will all begin buying the target coin causing a large influx of buy orders volume this will cause the coin to start to rise and trigger automated trading tools algos and day traders to take notice and also invest in the coin pushing the price up further our promotion campaign + our users will post positive news about the same target coin all over social media and in trade chatsforums which will again continue to push the price up our whales will place large trailing limit buys which will entice all new buys to happen above them so the price continues to rise and rise this method has worked over 60 times and will work amazingly again today we expect great profits for all those involed everyone who wishes to enter the pump must have a binancecom account with bitcoin avaialable there is still time to join and deposit 2020-07-16 14:00:08+00:00 1.0 1246270015 9508 everyone 24 hours left until the pump exchange binancecom date thursday 1800 gmt 2pm est tomorrows pumppush is shaping up to be among the best we have ever done an expected gain range will be given along with the coin aim to set your sells within this range for the best results hq coin news will also be released shortly after the pump starts spread this news anywhere there are crypto users forums telegrams social media this will help the push keep rising and rising things you need in order to join 1 a binancecom account loaded with bitcoin 2 to watch this channel 24 hours from now 3 buy the target coin asap after the announcement and resell within the expected gain 4 help promote the coin news 5 profit and brag to your friends 2020-07-15 19:00:10+00:00 1.0 1246270015 9507 under 48 hours left until the pump upcoming is our cryptofamily pump which have always been the best of the best 2020-07-14 19:30:34+00:00 1.0 1246270015 9505 the time is here our next push will be a cf pump signal these have the greatest results of all our pumps highest peaks longest climb times and best member success stories you will not want to miss this call thursday exchange not binanceus date thursday july 16th tentative time 1800 gmt 2 pm est vote here to share the time that works best for you since there has been some time since our last cf pump signal we will be releasing as much helpful info as we can in the next few days to make sure everyone is fully prepared to join and profit make sure you own bitcoin now and are ready to transfer it into your binancecom account see our help channels and previous pump results on our website this pump will be even better 2020-07-14 09:34:00+00:00 1.0 1246270015 9503 everyone 30 minutes left until the pump 2020-06-18 19:30:05+00:00 1.0 1246270015 9502 everyone 1 hour left until the pump exchange pairing btc the best advice to maximize profits is to be focused and be ready to buy as fast as possible this is the perfect opportunity for the choosen coin to take top gainer of the day slot and warrant an influx of outsider buying to help you with your sell we will add the expected gain with the coin signal so be ready and set your aim high for this pump 2020-06-18 19:00:01+00:00 1.0 1246270015 9501 everyone 2 hours left until the pump exchange pairing btc make sure you have your btc available still plenty of time to get ready bittrex markets are looking extremely good many altcoins are ready to breakout and ours will be among the strongest today is the perfect day for a pump lets all make huge gains remember buying as quickly as possible gets you a lower price and potential for bigger profits 2020-06-18 18:00:02+00:00 1.0 1246270015 9500 everyone 4 hours left until the pump exchange pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to succeed today we can bring in a lot of outside traders to hold our boosted price as long as possible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-06-18 16:00:03+00:00 1.0 1246270015 9499 8 hours left until the pump exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time these pumps are extremely easy to profit from and require less capital to get a great return it is very important to read the help channels so you know what to expect make sure you buy in quickly to get the best price before the coin keeps rising and and set your sell order in the expected gain range everyone in the group can profit from this pump we are very excited for today and looking forward to a great pump 2020-06-18 12:00:05+00:00 1.0 1246270015 9498 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal as always is to boost the coin onto bittrex front page under biggest gain to get immediate attention as we also entice automatic orders from the volume and spike bots and of course investment from online traders everyone in the group can make substantial gains just buy as quickly as possible and set your sell order higher than your entry price there is definitely potential for huge profits 2020-06-18 08:00:02+00:00 1.0 1246270015 9497 everyone 24 hours left until the pump date 18th june 2000 gmt exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time the pump will start when the bittrex signal bot posts the coin name here and everyone starts buying the coin will keep rising because our initial spike will generate a lot of outside interest and the coin price will keep increasing coin news will be supplied to spread around to help promote the coin and push it even higher this method has worked for this group time and time again and will work again tomorrow we pump as a team and profit as a team how to pump 1 make sure you are registered on bittrexcom 2 have btc available to trade with 3 read the faq channels and guide on how to buy fast 4 watch this channel for the reminders and the coin at 2000gmt 24 hours from now 2020-06-17 20:00:03+00:00 1.0 1246270015 9495 bittrex more pump results start price 139 peak price 259 gain 86 2020-05-19 20:22:13+00:00 1.0 1246270015 9491 everyone only 5 minutes left the next post will be the coin 2020-05-19 19:55:04+00:00 1.0 1246270015 9490 everyone 10 minutes left until the pump be sure to be logged into bittrex and ready for the pump the expected gain will be given with the coin 2020-05-19 19:49:58+00:00 1.0 1246270015 9489 everyone 30 minutes left until the pump 2020-05-19 19:30:02+00:00 1.0 1246270015 9488 everyone 1 hour left until the pump exchange pairing btc the best advice to maximize profits is to be focused and be ready to buy as fast as possible this is the perfect opportunity for the choosen coin to take top gainer of the day slot and warrant an increase of outsider buying to help you with your sell we will add the expected gain with the coin signal so be ready and set your aim high for this pump 2020-05-19 19:00:02+00:00 1.0 1246270015 9487 everyone 2 hours left until the pump exchange pairing btc make sure you have your btc available still plenty of time to get ready right now all markets are looking very good its the perfect time to maximize your profits while the conditions remain this ideal today we hope to see a higher than usual peak that holds nicely for everyone to buy and sell comfortably remember buying as quickly as possible gets you a lower price and potential for bigger profits 2020-05-19 18:00:05+00:00 1.0 1246270015 9486 everyone 4 hours left until the pump exchange pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to succeed today we can bring in a lot of outside traders to hold our boosted price as long as possible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-05-19 16:00:02+00:00 1.0 1246270015 9485 everyone 8 hours left until the pump exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time the current state of the market is perfect and coins on bittrex are in a prime position to capatalize on the bullish trend it is very important to read the help channels so you know what to expect make sure you get ready well before the pump everyone in the group can profit from this pump make sure you buy in quickly to get the best price before the coin keeps rising and and set your sell order in the expected gain range we are very excited for today and looking forward to a great pump 2020-05-19 12:00:01+00:00 1.0 1246270015 9484 everyone 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal as always is to boost the coin onto bittrex front page under biggest gain to get immediate attention as we also entice automatic orders from the volume and spike bots and of course investment from online traders we are aiming to reach much higher peaks than before and dont be surprised to see coins here go over 100150 easily everyone in the group can make substantial gains just buy as quickly as possible and set your sell order higher than your entry price 2020-05-19 08:00:02+00:00 1.0 1246270015 9483 everyone 24 hours left until the pump date 19th may 2000 gmt exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time the pump will start when the signal bot posts the coin name here and everyone starts buying the coin will keep rising because our initial spike will generate a lot of outside interest and the coin price will keep increasing coin news will be supplied for everyone to spread around to help promote the coin and push it even higher this method has worked for this group time and time again and will work again tomorrow we pump as a team and profit as a team a lot of eyes on crypto right now and we will take full advantage of that how to pump 1 make sure you are registered on bittrexcom 2 have btc available to trade with 3 read the faq channels and guide on how to buy fast 4 watch this channel for the reminders and target coin at 2000gmt 24 hours from now 2020-05-18 20:00:03+00:00 1.0 1246270015 9482 next pump announcement 48 hours from now tuesday 19 may 2000 gmt exchange last pump went very well again 107 rise peak after 1 min 14 sec nice buy support and over 3 btc volume our volume is increasing each pump and the pumps continue to get stronger and stronger look for this pump to be even bigger and even better than the last everyone make sure your bittrex account is loaded and ready 2020-05-17 20:00:05+00:00 1.0 1246270015 9481 sib bittrex pump results start price 210 sats peak price 435 sats gain 107 sib peaked after 1 min 14 sec and had great buy support even over 100 from start price this means everyone should have been able to make nice profits form the 85130 expected gain great job everyone 2020-05-14 22:51:08+00:00 1.0 1246270015 9478 everyone only 5 minutes left the next post will be the coin 2020-05-14 19:55:01+00:00 1.0 1246270015 9477 everyone 10 minutes left until the pump be sure to be logged into bittrex and ready for the pump the expected gain will be given with the coin 2020-05-14 19:50:02+00:00 1.0 1246270015 9476 everyone 30 minutes left until the pump 2020-05-14 19:30:02+00:00 1.0 1246270015 9475 everyone 1 hour left until the pump exchange pairing btc make sure you are prepared for the pump the best advice to maximize profits is to be focused and be ready to buy as fast as possible this is the perfect opportunity for the choosen coin to take top gainer of the day slot and warrant an increase of outsider attention to help you with your sell we will add the expected gain with the coin signal so be ready and set your aim high for this pump 2020-05-14 19:00:04+00:00 1.0 1246270015 9474 everyone 2 hours left until the pump exchange pairing btc make sure you have your btc available still plenty of time to get ready right now all markets are looking very good its the perfect time to maximize your profits while the conditions remain this ideal today we hope to see a higher than usual peak that holds nicely for everyone to buy and sell comfortably remember buying as quickly as possible gets you a lower price and potential for bigger profits 2020-05-14 18:00:04+00:00 1.0 1246270015 9473 everyone 4 hours left until the pump exchange pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to succeed today we can bring in a lot of outside traders to hold our boosted price as long as possible this regularly happens if the coin is promoted on the front page of bittrex as the top gainer lots of eyes are on crypto right now lets bring them to the pump 2020-05-14 16:00:02+00:00 1.0 1246270015 9472 everyone 8 hours left until the pump exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time the current state of the market is perfect and coins on bittrex are in a prime position to capatalize on the bullish sentiment it is very important to read the help channels so you know what to expect make sure you get ready well before the pump everyone in the group can profit from this pump buy as quickly as possible and set your sell order in the expected gain range 2020-05-14 12:00:04+00:00 1.0 1246270015 9471 everyone 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal as always is to boost the coin onto bittrex front page under biggest gain to get immediate attention as we also entice automatic orders from the volume and spike bots and of course investment from online traders we are aiming to reach much higher peaks than before and dont be surprised to see coins here go over 100150 easily there is definitely potential for huge profits how to pump 1 make sure you are registered on bittrexcom 2 have btc available to trade with 3 read the faq channels and guide on how to buy fast 4 watch this channel for the reminders and target coin at 2000gmt 12 hours from now 2020-05-14 08:00:05+00:00 1.0 1246270015 9470 everyone 24 hours left until the pump date 14th may 2000 gmt exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time we have a lot of new members and our goal is to improve on last pumps volume and push for an even higher percentage the market is perfect right now after btc halving and the pump tomorrow will capatilize on a bullish trend and we will be able to make massive profits make sure you have your bittrex account ready and loaded with btc for tomorrow check the help channels too for guidance everyone in the group can make substantial gains just buy as quickly as possible and set your sell order higher than your entry price we pump as a team and profit as a team 2020-05-13 20:00:05+00:00 1.0 1246270015 9469 everyone 48 hours left until the pump date 14th may 2000 gmt exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time after our last pump that peaked at 2min 8sec and the one before that which reached 146 we hope this pump goes even bigger the pumps give everyone more than enough time to buy low and resell these pumps are extremely easy to profit from and require less capital to get a great return we will aim to pump this next coin over 100 again bittrex pumps can be extremely profitable if done correctly 2020-05-12 20:00:03+00:00 1.0 1246270015 9468 after a lot of volatile action bitcoin has halved and we can now safely pump altcoins have already started moving in positive directions and all indicators suggest they will continue to do so making them prime to be pumped by us we expect this alt season to be very strong and are preparing to take full advantage of it now for the good stuff next pump announcement thursday 14 may 2000 gmt exchange make sure your account is loaded and ready 2020-05-12 13:53:28+00:00 1.0 1246270015 9461 more bittrex pump results start price 186 sats peak price 369 sats gain 983 our peak came 2 min 8 sec after the start which is what we were shooting for more volume and held up nicer than last pump great job everyone 2020-04-21 22:16:20+00:00 1.0 1246270015 9457 everyone only 5 minutes left the next post will be the coin 2020-04-21 19:55:03+00:00 1.0 1246270015 9456 everyone 10 minutes left until the pump be sure to be logged into bittrex and ready for the pump the expected gain will be given with the coin 2020-04-21 19:50:08+00:00 1.0 1246270015 9455 everyone 30 minutes left until the pump 2020-04-21 19:30:03+00:00 1.0 1246270015 9454 everyone 1 hour left until the pump exchange pairing btc make sure you are prepared for the pump the best advice to maximize profits is to be focused and be ready to buy as fast as possible this is the perfect opportunity for the choosen coin to take top gainer of the day slot and warrant an increase of outsider attention to help you with your sell we will add the expected gain with the coin signal so be ready and set your aim high for this pump 2020-04-21 19:00:02+00:00 1.0 1246270015 9453 everyone 2 hours left until the pump exchange pairing btc make sure you have your btc available still plenty of time to get ready right now all markets are looking very good its the perfect time to maximize your profits while the conditions remain this ideal today we hope to see a higher than usual peak that holds nicely for everyone to buy and sell comfortably remember buying as quickly as possible gets you a lower price and potential for bigger profits 2020-04-21 18:00:02+00:00 1.0 1246270015 9452 everyone 4 hours left until the pump exchange pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to win today we can bring in a lot of outside traders to hold our boosted price as long as possible this regularly happens if the coin makes the top gainer on the front page of bittrex lots of eyes are on crypto right now lets bring them to the pump 2020-04-21 16:00:05+00:00 1.0 1246270015 9451 everyone 8 hours left until the pump exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time the current state of the market is perfect and coins on bittrex are in a prime position to capatalize on the bullish sentiment it is very important to read the help channels so you know what to expect make sure you get ready well before the pump everyone in the group can profit from this pump buy as quickly as possible and set your sell order in the expected gain range 2020-04-21 12:00:05+00:00 1.0 1246270015 9450 everyone 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal as always is to boost the coin onto bittrex front page under top gainer of the day to gain immediate attention as we also entice automatic orders from the volume and spike bots and of course investment from online traders we are aiming to reach much higher peaks than before and dont be surprised to see coins here go over 100150 easily there is definitely potential for huge profits 2020-04-21 08:00:03+00:00 1.0 1246270015 9449 everyone 24 hours left until the pump date 21st april 2000 gmt exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time after last pump we have a lot of new members and our goal is to improve on last pumps volume and push for an even higher the market is perfect right now and the pump tomorrow will capatilize on a bullish trend and we will be able to make massive profits make sure you have your bittrex account ready and loaded with btc for tomorrow check the help channels too for guidance everyone in the group can make substantial gains just buy as quickly as possible and set your sell order higher than your entry price we pump as a team and profit as a team 2020-04-20 20:00:05+00:00 1.0 1246270015 9448 everyone 48 hours left until the pump date 21st april 2000 gmt exchange pairing btc pump will be freeforall all pumpers will receive the coin signal at exactly the same time our last pump went better than expected peaking at 146 and staying up over 80 for 4+ minutes the peak came 46 seconds after the start which was more than enough time for everyone to buy low and resell these pumps are extremely easy to profit from and require less capital to get a great return we will aim to pump this next coin over 100 again please read the help channels to the left and prepare yourself for the pump bittrex pumps can be extremely profitable if done correctly 2020-04-19 20:00:02+00:00 1.0 1246270015 9447 bittrex pump announcement next pump tuesday 21 april 2000 gmt we are looking to build off our last pump and hold our peaks higher and longer for everyone to profit even greater pumps require knowhow so check the help channels and make sure you have a verified bittrex account loaded with how much btc you wish to use typical bittrex pumps go 75150 and will always be free for all be ready for huge profits 2020-04-19 01:30:19+00:00 1.0 1246270015 9446 aeon bittrex pump results start price 2029 sats peak price 4995 sats gain 146 great pump back on bittrex peaking at 146 and staying up over 80 for 4+ min our peak came 46 seconds after start which should have been more than enough time for everyone to buy low and resell in the expected gain range 2020-04-09 21:14:36+00:00 1.0 1246270015 9441 everyone only 5 minutes left the next post will be the coin 2020-04-09 19:55:05+00:00 1.0 1246270015 9440 everyone 10 minutes left until the pump be sure to be logged into bittrex and ready for the pump the expected gain will be given with the coin 2020-04-09 19:50:05+00:00 1.0 1246270015 9439 everyone 30 minutes left until the pump 2020-04-09 19:30:04+00:00 1.0 1246270015 9438 everyone 1 hour left until the pump exchange pairing btc coins are flying on bittrex percentage and volumes are way up this is the perfect opportunity for our coin to blend right in take top gainer of the day slot and warrant tons of outsider attention we will add the expected gain with the coin signal so be ready and set your aim high for this pump 2020-04-09 19:00:05+00:00 1.0 1246270015 9437 everyone 2 hours left until the pump make sure you have btc available still plenty of time to get ready exchange pairing btc bittrex markets are looking extremely good with the way btc and alts are right now we need to maximize our profits while the conditions remain this ideal today is the perfect day for a bittrex pump lets all make huge profits 2020-04-09 18:00:02+00:00 1.0 1246270015 9436 everyone 4 hours left until the pump exchange pairing btc make sure you have btc ready in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to win today we can bring in a lot of outside traders to hold our boosted price as long as possible this will definitely happen if the coin makes the top gainer on the front page of bittrex lots of eyes are on crypto right now lets bring them to the pump 2020-04-09 16:00:04+00:00 1.0 1246270015 9435 everyone 8 hours left until the pump exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time the current state of the market is perfect and coins on bittrex are in a prime position to capatalize on the trending upswing it is very important to read the help channels so you know what to expect everyone in the group can profit from this pump buy as quickly as possible and set your sell order in the expected gain range 2020-04-09 12:00:01+00:00 1.0 1246270015 9434 everyone 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal as always is to boost the coin onto bittrex front page under top gainer of the day to gain attention as we also entice automatic orders from the volume and spike traders and of course outside investment from promoting the coin the bittrex pump will reach much higher peaks than binance coins have dont be surprised to see coins here go over 100 easily even 150 there is huge potential for huge profits 2020-04-09 08:00:05+00:00 1.0 1246270015 9433 everyone 24 hours left until our pump date 9th april 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time everything is looking amazing for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits make sure you have your bittrex account ready and loaded with btc for tomorrow check the help channels too for guidance everyone in the group can make substantial gains just buy as quickly as possible and set your sell order higher than your entry price we pump as a team and profit as a team 2020-04-08 20:00:01+00:00 1.0 1246270015 9429 everyone the next pump will be in 48 hours from now date april 9th 2000 gmt exchange please read the help channels to the left and prepare yourself for the pump bittrex pumps can be extremely profitable if done correctly we will aim to pump the coin a minimum of 100 2020-04-07 20:02:40+00:00 1.0 1246270015 9426 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1246270015 9424 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:04+00:00 1.0 1246270015 9423 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:02+00:00 1.0 1246270015 9422 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:12+00:00 1.0 1246270015 9421 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:32+00:00 1.0 1246270015 9418 just over 2 hours left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected target 2x note coin will be posted in picture to avoid bots 2020-04-02 13:45:47+00:00 1.0 1246270015 9417 everyone under 22 hours left until the pump exchange binance we have grown by over 2500 unique users since last pump on discord this pump should reflect greatly increased volume and we have secured promotion of our coin news across other social platforms to an audience of 100k crypto enthusiasts this means a large amount of outsiders which is great for our pump remember to buy quickly promote hard and sell for profit we should easily see 40+ and probably much higher 2020-04-01 20:43:17+00:00 1.0 1246270015 9416 our tools are working in full force so we will be able to promote the pumped coin news to 10s of thousands of additional investors during the pump on top of this the markets look great and all is ready to go make sure you are registered and loaded with btc on binance the pump will be thursday 2 april 1600 gmt we promise this is the final date check out the help channels and get accustomed to the exchange this can help you increase your profits even more 2020-03-31 19:20:36+00:00 1.0 1246270015 9414 binance pump announcement date monday 30 march 1800 gmt 46 hours from now exchange register if you havent yet our last pump of edo with our telegram partners went incredibly well with a peak of 73 and over 200 btc of volume we will be adding our discords to the pump this time to make it even bigger please read the available help channels on discord and learn the tips of pumping you will want to know how to buy fast to maximize your profit and as always if you have questions just ask things you need to do before the pump 1 register on binancecom or the app 2 deposit bitcoin onto your account 3 watch here for the pump signal monday at 1800 gmt 4 follow the given advice or use your best judgement and profit huge 2020-03-28 20:19:43+00:00 1.0 1246270015 9411 everyone only 5 minutes left the next post will be the coin 2020-03-18 18:55:05+00:00 1.0 1246270015 9409 everyone 1 hour left this binance pump will have positive coin news supplied for us all to promote in addition to the conditions being near perfect for a pump all of us promoting this coin news together will greatly increase the volume and longevity of the pump do your part and watch your profits soar 2020-03-18 18:00:03+00:00 1.0 1246270015 9408 everyone 3 hours left until the pump bicoin has been fairly stable while alts remain bottomed out now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while 2020-03-18 16:02:34+00:00 1.0 1246270015 9407 everyone 24 hours until the binance pump a lot of people are home from work and off of school right now this means more people in and observing our pump with a strong push and good promoting we can moon this coin and keep it at its inflated price all day tomorrow please do your part to buysell smart and promote this could be a historic pump for binance check out the help channels on discord for tips and to review the strategies we use familiarizing yourself and buying quickly can make a positive impact on your profits 2020-03-17 19:00:33+00:00 1.0 1246270015 9405 everyone pump announcement next pump wednesday 18 march 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin is expected to stay in this range for the next few days but due to the recent sell off by weak hands many alts are extremely pumpable in a market with so much red eager traders jump all over anything green we can easily bring an extreme amount of attention to whichever coin we pump by making it binancecoms top gainer of the day adding an influx of volume and promoting the supplied coin news this will lead to massive profits as the pump should go higher than normal stay tuned for more announcements and be ready for the pump 2020-03-16 14:52:26+00:00 1.0 1246270015 9403 everyone only 5 minutes left the next post will be the coin 2020-02-13 19:55:05+00:00 1.0 1246270015 9402 everyone 10 minutes left be sure to be logged in and ready the expected gain will be given with the coin 2020-02-13 19:50:05+00:00 1.0 1246270015 9400 everyone 1 hour left make sure you help promote the coin news and to help push the price even higher during the pump if you have already profited still promote and help others we are a team and next time they may be the ones helping you the coin news is relevant and current supported by a website and should help bring many outsiders into the pump today could be our best bittrex pump in a while 2020-02-13 19:02:03+00:00 1.0 1246270015 9399 everyone 3 hours left until the pump bittrex markets are looking extremely well coins have gone up over 100 each of the previous 2 days and volumes are way up this is the perfect opportunity for our coin to blend right in take top gainer of the day slot and warrant tons of outsider attention this means a higher peak longer pump and more profits in addition to this we will have great coin news backed up by a crypto website and link which we can share while promoting today is the perfect day for a bittrex pump lets all make huge profits 2020-02-13 17:00:39+00:00 1.0 1246270015 9398 everyone 24 hours left until the pump 13th feb 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time everything is looking amazing for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits make sure you have your bittrex account ready and loaded with btc for tomorrow check the help channels too for guidance if needed everyone in the group can make substantial gains just buy as quickly as possible and set your sell order in the expected gain range 2020-02-12 20:00:40+00:00 1.0 1246270015 9396 everyone 48 hours left until our pump 13th feb 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time the current state of the market is allowing alts to fly and bittrex is perfect to capitalize on the trending upswing our first pump for 2020 went great the coin reached peak after 57s and the volume was more than anticipated volume and gain will continue to rise for each of the upcoming pumps with the way bitcoin and crypto are right now we need to maximize our profits while the conditions remain this ideal sign up and load up a bittrex account if you havent yet you wont want to miss any more pumps 2020-02-11 20:00:27+00:00 1.0 1246270015 9395 pump announcement next pump thursday 13 february 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time crypto markets are in an incredible upswing bitcoin is doing great and our group is growing larger and stronger by the day now is the perfect time to pump look for more updates in the upcoming announcements and be ready for another great pump 2020-02-10 02:40:05+00:00 1.0 1246270015 9390 everyone only 5 minutes left the next post will be the coin 2020-01-30 19:55:03+00:00 1.0 1246270015 9387 everyone 1 hour left make sure you help promote the coin news and to help push the pump even higher during the pump even if you have already profitted still promote and help others we are a team and next time they may be the ones helping you 2020-01-30 18:57:53+00:00 1.0 1246270015 9385 under 2 hours left remember to buy quickly and promote hard news will be supplied during the pump that everyone should spread around the crypto world this will help bring more attention to our coin and send the value up even higher working together we can accomplish great things as we have done many times before 2020-01-30 18:28:45+00:00 1.0 1246270015 9384 12 hours left until the pump exchange pairing btc make sure to check your local time 2000gmt further reminders will be sent out closer to the pump our goal as always is to boost the coin onto bittrex front page under top gainer of the day to gain attention as we also entice automatic orders from the volume and spike traders and of course outside investment from promoting the coin the bittrex pump will reach much higher peaks than binance coins have dont be surprised to see coins here go over 100 easily even 150 there is huge potential for huge profits 2020-01-30 08:04:59+00:00 1.0 1246270015 9383 24 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot everything is looking great for our pump tomorrow our audience for this pump has grown on both discord and telegram and the market looks perfect make sure you have your bittrex account ready and loaded with bitcoin for tomorrow check out the help channels and ask questions if you have them we pump as a team and profit as a team strong community partnership is very important as we want to all work together toward the same goal and return great profits 2020-01-29 20:03:57+00:00 1.0 1246270015 9382 everyone there are 47 hours left until our pump 30 jan 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time interest in crypto in general is way up and the conditions are prime for an amazing pump our first pumps back after a break have historically been our best we are posting across all 4 discord servers and on multiple telegrams as always we aim for a great sustainable spike in price for long enough for all members to profit 2020-01-28 21:28:40+00:00 1.0 1246270015 9380 everyone pump announcement next pump thursday 30 january 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time after some time to let the market settle we have decided now is the best time to start pumping again bitcoin is up over 1000 since our last pump interest in crypto in general is way up and the conditions are prime for an amazing pump our first pumps back after a break have historically been our best we have had time to plan additional advertising for whichever coin we do secure reposting partners on telegram and develop strategies to further our pumps jan 30th will be a great pump 2020-01-25 19:40:34+00:00 1.0 1246270015 9377 only 5 minutes to go next post will be the coin name 2019-12-12 19:55:03+00:00 1.0 1246270015 9376 only 30 minutes left until the huge bittrex pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer 2019-12-12 19:30:02+00:00 1.0 1246270015 9375 1 hour left until the pump make sure you buy quickly to get he lowest prices and always sell for a profit bittrex profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer 2019-12-12 19:00:03+00:00 1.0 1246270015 9374 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 2019-12-12 18:00:04+00:00 1.0 1246270015 9373 4 hours left until the pump today there will be provided news for everyone to spread around post this on social media forums telegram or anywhere people are interested in crypto we will also be able to pump our coin to make bittrex front page as the top gainrer of the day which will attract a of additional investment altcoin markets are primed and many people are looking to trade make sure your bittrex account is loaded and ready 2019-12-12 16:00:06+00:00 1.0 1246270015 9372 24 hours left until the pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot everything is looking great for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits remember bittrex pumps can go 100250 on average 2019-12-11 20:00:04+00:00 1.0 1246270015 9371 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot markets look great and primed for a pump make sure you buy in quickly and sell in the expected gain range some tips to help keep the pump near peak sell your coins in bunches maybe half right away and half a little later or 13 at a time add buy offers just under the market price these buy walls will entice day traders from outside our group and even some trading bots to buy up more coins above our orders which causes waves and mutliple price spikes ride these waves for extra profit promote the coin usuing the supplied news this will help bring more investment into the coin which greatly benifits the pump 2019-12-10 20:00:04+00:00 1.0 1246270015 9370 pump announcement next pump thursday 12 december 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we have grown significantly in the past 2 weeks 500+ new members technically everything looks incredible for a pump this week and we should be able to push a coin even higher and hold for even longer than usual look forward to another great pump 2019-12-09 23:46:19+00:00 1.0 1246270015 9366 only 5 minutes to go next post will be the coin name 2019-11-27 19:55:03+00:00 1.0 1246270015 9365 only 30 minutes left until the huge bittrex pump 2019-11-27 19:30:02+00:00 1.0 1246270015 9364 1 hour left until the pump make sure you buy quickly to get he lowest prices and always sell for a profit bittrex profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer 2019-11-27 19:00:03+00:00 1.0 1246270015 9363 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 2019-11-27 18:00:04+00:00 1.0 1246270015 9362 4 hours left until the pump today there will be provided news for everyone to spread around post this on social media forums telegram or anywhere people are interested in crypto we will also be able to pump our coin to make bittrex front page as the top gainrer of the day which will attract a of additional investment altcoin markets are primed and many people are looking to trade make sure your bittrex account is loaded and ready 2019-11-27 16:00:04+00:00 1.0 1246270015 9361 24 hours left until the pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot everything is looking great for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits remember bittrex pumps can go 100250 on average 2019-11-26 20:00:03+00:00 1.0 1246270015 9360 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot the current state of the market allowing for alts to sky rocket the additional marketing we have secured for the coin news and the readiness of many coins on bittrex will make sure we have an incredible pump this will be one you dont want to miss 2019-11-25 20:00:05+00:00 1.0 1246270015 9358 pump announcement next pump wednesday 27 november 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time signs are pointing toward the begining of alt season and some markets are already beginning to spike this is the perfect time to pump there will be many options and a lot more money going ino altcoins than usual lets take advantage of this and have a huge pump 2019-11-25 17:26:53+00:00 1.0 1246270015 9355 unfortunatly we have decided it is best and safest to cancel todays pump this is for the protection of everyone if we pump we want it to be first class with no issues and huge profits for everyone no other groups would cancel last minute to protect their users we appologize for the inconvenience but hope you understand this is for the best the pump will be rescheduled asap thank you for your support 2019-11-21 20:18:03+00:00 1.0 1246270015 9353 the pump has been delayed 30 minutes sorry for any inconvenience 2019-11-21 19:56:16+00:00 1.0 1246270015 9352 only 30 minutes left until the huge bittrex pump 2019-11-21 19:30:02+00:00 1.0 1246270015 9351 1 hour left until the pump pink is still up over 40 from our pump 1 week ago thats incredible lets push todays coin to a new all time high make sure you buy quickly to get he lowest prices and always sell for a profit bittrex profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer 2019-11-21 19:00:04+00:00 1.0 1246270015 9350 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 2019-11-21 18:00:05+00:00 1.0 1246270015 9348 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot for the first time ever on bittrex we have secured additional marketting to enhance the pump further by bringing in even more outsiders be ready for another huge pump tomorrow remember bittrex pumps can go 100250 on average 2019-11-20 20:00:04+00:00 1.0 1246270015 9343 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot sending pink 126 last week we showed we can still dominate bittrex markets but we can do even better more users and more volume means higher pumps and larger cap coins invite others and have a solid plan for promoting the coin news from us all doing our part we will grow larger and larger and earn more profits for everyone we could see 34500 pumps 2019-11-19 20:00:04+00:00 1.0 1246270015 9342 pump announcement next pump thursday 21 november 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we are back on bittrex last pump peaked at 126 and the coin pink is sill trading 40 over its normal price we dominated the market and will again be ready for another huge bittrex pump 2019-11-19 01:02:54+00:00 1.0 1246270015 9341 only 5 minutes to go next post will be the coin name 2019-11-14 19:55:03+00:00 1.0 1246270015 9340 10 minutes left make sure you are logged in wih everything ready 2019-11-14 19:50:03+00:00 1.0 1246270015 9339 only 30 minutes left until the huge bittrex pump 2019-11-14 19:30:03+00:00 1.0 1246270015 9338 1 hour left until the pump everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer 2019-11-14 19:00:03+00:00 1.0 1246270015 9337 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 2019-11-14 18:00:04+00:00 1.0 1246270015 9335 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot make sure to check your local time 2000gmt further reminders will be sent out tomorrow also our goal as always is to boost the coin onto bittrex front page under top gainer of the day to gain attention as we also entice automatic trading from the spike and entice outside investment from promoting the coin after buying in bittrex pump will reach much higher peaks than binance coins have dont be surprised to see coins here go 150 easily there is huge potential for huge profits tomorrow 2019-11-13 20:00:03+00:00 1.0 1246270015 9333 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot bittrex pumps are back as we know and have proven already bittrex is a place we can truly dominate the market for a coin some held for days and all pumps there went well over 100 2019-11-12 21:02:21+00:00 1.0 1246270015 9332 everyone pump announcement next pump thursday 14 november 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we are back on bittrex where our pumps went from 100240 bittrex pumps are a whole different animal the coins have much more potential to reach crazy heights up to 250 at times with more focused volume the prices typically hold higher for longer giving us more time to shill and sell our coins for profit if you have been with us for a few months you know how amazing these bittrex pumps can be and if not then read back through the results to familiarize yourself everyone should be very excited for thursday 2019-11-12 03:39:47+00:00 1.0 1246270015 9331 10 minutes left make sure you are logged in wih everything ready 2019-10-30 19:50:03+00:00 1.0 1246270015 9330 only 30 minutes left until the huge binance pump 2019-10-30 19:30:03+00:00 1.0 1246270015 9329 1 hour left before the pump everyone make sure you help promote the coin during the pump this is make outsiders buy our sell orders and keep the pump going for much longer 2019-10-30 19:00:04+00:00 1.0 1246270015 9328 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit 2019-10-30 18:00:04+00:00 1.0 1246270015 9326 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot pumps can be extremely profitable for all those involved scroll up to familiarize yourself with the process and be ready for massive gains 2019-10-29 20:00:03+00:00 1.0 1246270015 9325 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot bitcoin is up where we need it to be alts are free to make massive moves and we are back at full force these factors along with our renewed shilling power will make this a great pump the first pump afer a long break have historically been our best pumps and so will this one dont miss it 2019-10-28 20:00:04+00:00 1.0 1246270015 9323 everyone pump announcement next pump wednesday 30 october 2000 gmt exchange wwwbinancecom pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we have taken a long time between pumps to assure this upcoming pump can be huge and extremely profitable for everyone bitcoin rising and the state of the market have made this the perfect time to pump 2019-10-26 19:53:03+00:00 1.0 1246270015 9321 only 5 minutes to go next post will be the coin name 2019-09-09 19:55:03+00:00 1.0 1246270015 9320 10 minutes left make sure you are logged in wih everything ready 2019-09-09 19:50:03+00:00 1.0 1246270015 9319 only 30 minutes left until the huge binance pump the coin name will come as an image 2019-09-09 19:30:03+00:00 1.0 1246270015 9318 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-09-09 19:00:03+00:00 1.0 1246270015 9315 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot lets hold this pump near peak for as long as we can 2019-09-08 20:00:03+00:00 1.0 1246270015 9314 everyone 48 hours left until binance pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot the goal is for absolutely everyone to profit lets work as a team to make this happen once again 2019-09-07 20:00:04+00:00 1.0 1246270015 9312 pump announcement next pump monday 9 september 2000 gmt exchange wwwbinancecom pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time the recent movement on bitcoin has created desirable conditions or one of our pumps we have also moved to a completely new day in order to attract new crowds of outsiders more info to come with the 48hr reminder but be ready or a big pump 2019-09-06 23:09:57+00:00 1.0 1246270015 9309 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-22 19:55:02+00:00 1.0 1246270015 9308 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-22 19:50:03+00:00 1.0 1246270015 9307 only 30 minutes left the coin name will come as an image 2019-08-22 19:30:02+00:00 1.0 1246270015 9306 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-08-22 19:00:02+00:00 1.0 1246270015 9303 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts we expect great initial volume and even greater follow up volume to send the coin to 50 or more make sure you buy in quickly to get the best available price we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 2019-08-21 20:00:03+00:00 1.0 1246270015 9302 everyone 48 hours left until binance pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot our ocr bot buying problem is over the new syle coin images are completely bot proof and will allow for everyone to buy in reasonably with little to no chance of a quick spike this means lower buy ins and more profits our newest postpump tool will also spread the buying signal to dozens of other investment groups linked to our op website to greatly increase the effectiveness of our coin promoting this should allow for the pumped price to hold for a much longer time so we can all sell as close to the peak as possible 2019-08-20 20:00:04+00:00 1.0 1246270015 9300 pump announcement next pump thursday 22 august 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we are gaining partners to repost our coin during the pump everywhere we can think of and aiming to secure a giant twitter to advertise for us with the ultimate goal of 250k additional users seeing the coin signal news after he pump begins in addition the generated news to promote will be the most real and biggest it ever has been hosted on a premium domain and the days of ocr bots reading our coin are over the coin image will be tested against the top 3 ocr we can find and must pass all 3 to be considered acceptable to us all this is being done to ensure the pump peaks long after the start and everyone can profit huge we will continue to grow bigger and better each time 2019-08-17 22:18:51+00:00 1.0 1246270015 9295 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-13 19:55:02+00:00 1.0 1246270015 9294 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-13 19:50:03+00:00 1.0 1246270015 9293 only 30 minutes left the coin name will come as an image 2019-08-13 19:30:03+00:00 1.0 1246270015 9292 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-08-13 19:00:03+00:00 1.0 1246270015 9287 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more make sure you buy in quickly to get the best available price we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 2019-08-12 20:00:03+00:00 1.0 1246270015 9286 48 hours left until binance pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot we are quicky rising to become the top group on binance 70 and 130+ btc average per pump and tuesday we will reach for a new milestones everyone has been showing good profits in their successstories lets keep this up and make them even bigger it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 2000 gmt then help promote the coin and watch it continue to grow 2019-08-11 20:00:03+00:00 1.0 1246270015 9284 everyone pump announcement next pump tuesday 13 august 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin is doing great and giving us amazing opportunities to pump the last 2 pumps were incredible 76 and 66 with over 100 btc volume each time this pump can be even bigger we have 1 week to plan prepare and continue to grow inviting others and exploring new places to shill can help the group become even stronger 2019-08-06 15:18:31+00:00 1.0 1246270015 9281 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-01 19:55:03+00:00 1.0 1246270015 9280 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-01 19:50:04+00:00 1.0 1246270015 9279 those who wants to make some profits are excited be ready your computer chair table go to quiet space only 30 minutes left the coin name will come as an image 2019-08-01 19:30:03+00:00 1.0 1246270015 9278 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-08-01 19:00:03+00:00 1.0 1246270015 9274 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users and 40000+ on discord we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 2000 gmt make sure you buy in quickly to get the best available price we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 2019-07-31 20:00:03+00:00 1.0 1246270015 9272 everyone pump announcement next pump thursday 1 august 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time our last pump was truly incredible 76 price spike over 100 btc volume coin up 25 for 20min + and waves happeneing for days to as high as 35 again we expect the pumps to keep getting even bigger and better from here dont miss it note new usa users can still register on binance with a vpn or proxy from another country then trade on their home ip 2019-07-29 20:13:39+00:00 1.0 1246270015 9269 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-07-25 19:55:02+00:00 1.0 1246270015 9268 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and early 2019-07-25 19:50:03+00:00 1.0 1246270015 9266 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-07-25 19:00:03+00:00 1.0 1246270015 9263 24 hours left until binance event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot as promised we are going above and beyond for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 2000 gmt 2019-07-24 20:00:00+00:00 1.0 1246270015 9261 everyone pump announcement next pump thursday 25 july 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time note the exchange is binance this means the pump will be 510x larger on the worlds largest exchange in the coming days we will be adding info and tips about binance a user rewards program for helping us grow and planning mass ads for the pump make sure you register at binance if you havent yet and start getting ready for this huge pump more info coming 2019-07-18 20:37:08+00:00 1.0 1246270015 9257 everyone 5 minutes left the next message will be the coin 2019-07-09 19:55:02+00:00 1.0 1246270015 9254 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-07-09 19:00:03+00:00 1.0 1246270015 9252 4 hours left until the pump be sure to have your bittrex account ready for trading 2019-07-09 16:00:03+00:00 1.0 1246270015 9251 24 hours left until the pump exchange pairing btc last 3 pumps 215 217 242 what will tomorrow be 2019-07-08 20:00:03+00:00 1.0 1246270015 9249 48 hours left until the pump exchange bittrex pair btc another huge pump incoming 2019-07-07 20:25:51+00:00 1.0 1246270015 9247 everyone pump announcement next pump tuesday 9 july 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time this may be one of our final bittrex pumps before we add binance pumps also so make sure you dont miss it we will be going all out and using absolutely every single resource we can to make this pump special another great pump on tuesday will allow us to pump weekly on bittrex while adding a few binance pumps per moth also lets make this huge 2019-07-05 16:03:04+00:00 1.0 1246270015 9246 nlg pump results exceeded the 150200 range we were expecting excellent volume but it moved a bit to fast well work on the signal image for next time 2019-06-28 15:10:16+00:00 1.0 1246270015 9244 everyone 5 minutes left the next message will be the coin 2019-06-27 19:54:56+00:00 1.0 1246270015 9241 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-06-27 18:59:56+00:00 1.0 1246270015 9239 everyone 24 hours left until the pump exchange pairing btc 2019-06-26 19:59:57+00:00 1.0 1246270015 9237 pump announcement next pump thursday 27 june 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time as we continue to grow pump will only get better and better more buying and shilling power are great things lets keep up the good work and get ready for another great pump 2019-06-25 21:09:00+00:00 1.0 1246270015 9232 everyone 5 minutes left the next message will be the coin 2019-06-25 19:54:56+00:00 1.0 1246270015 9229 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-06-25 18:59:56+00:00 1.0 1246270015 9227 4 hours left until the pump be sure to have your bittrex account ready for trading 2019-06-25 15:59:56+00:00 1.0 1246270015 9226 everyone 24 hours left until the pump exchange pairing btc 2019-06-24 19:59:57+00:00 1.0 1246270015 9225 everyone 48 hours left until the pump exchange pairing btc 2019-06-23 19:59:57+00:00 1.0 1246270015 9223 everyone pump announcement next pump tuesday 25 june 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time last pump was truly incredible so many people sent in great successsories with really nice profits as we continue to grow pump will only get better and better more buying and shilling power are great things lets keep up the good work and get ready for another great pump 2019-06-22 17:30:04+00:00 1.0 1246270015 9221 pink bittrex pump results start price 20 sats peak price 63 sats gain 215 pink rose to 215 meanwhile our goal was only 130 huge pump in terms of volume and next pump will have deeper order books to slow down the rise and make sure everyone get in at lower prices good job 2019-06-20 20:59:24+00:00 1.0 1246270015 9216 everyone 5 minutes left the next message will be the coin 2019-06-20 19:55:03+00:00 1.0 1246270015 9213 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-06-20 19:00:03+00:00 1.0 1246270015 9211 4 hours left until the pump be sure to have your bittrex account ready for trading 2019-06-20 16:00:03+00:00 1.0 1246270015 9210 everyone 24 hours left until the pump exchange pairing btc 2019-06-19 20:00:04+00:00 1.0 1246270015 9209 everyone 48 hours left until the pump exchange pairing btc we are still continuing to grow and expect this pump to be even bigger than the last 2019-06-18 20:00:03+00:00 1.0 1246270015 9207 everyone pump announcement next pump thursday 20 june 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time last pump was truly incredible so many people sent in great successsories with really nice profits as we continue to grow pump will only get better and better more buying and shilling power are great things lets keep up the good work and get ready for another great pump 2019-06-17 14:02:03+00:00 1.0 1246270015 9203 everyone 5 minutes left the next message will be the coin 2019-06-13 19:55:03+00:00 1.0 1246270015 9200 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-06-13 19:00:02+00:00 1.0 1246270015 9198 4 hours left until the pump be sure to have your bittrex account ready for trading 2019-06-13 16:00:02+00:00 1.0 1246270015 9197 everyone 24 hours left until the bittrex pump exchange pairing btc 2019-06-12 20:00:04+00:00 1.0 1246270015 9196 everyone 48 hours left until the bittrex pump exchange pairing btc things you need to join the pump bittrex account with btc available in it and to be watching here when the pump starts have bittrex and this group open side by side to save time faster orders get better prices the signal bot will announce the coin we all buy it quickly check the channel in the main discord called howtobuyfast for tips coin price increases and akes it to the top gainer of the day on bittrex front page list your sell order higher than your buy in within the expected gain range news is provided by the team help pomote this news about the coin to bring outsiders into the pump which boost the price even further profit this process has worked over 40 times for us and it will work again be ready for a great pump 2019-06-11 20:00:03+00:00 1.0 1246270015 9194 everyone pump announcement next pump thursday 13 june 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we hope postponing last pump gave more people time to learn about pumps and review our history this should make the pump even bigger with more participants and greating promoting power 2019-06-11 00:35:07+00:00 1.0 1246270015 9191 everyone pump is postponed we saw weird buy activity in the coin next announcement coming soon 2019-06-06 20:02:02+00:00 1.0 1246270015 9190 everyone 5 minutes left the next message will be the coin 2019-06-06 19:55:02+00:00 1.0 1246270015 9187 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-06-06 19:00:02+00:00 1.0 1246270015 9185 4 hours left until the pump be sure to have your bittrex account ready for trading 2019-06-06 16:00:03+00:00 1.0 1246270015 9184 everyone 24 hours left until the bittrex pump exchange pairing btc things you need to join the pump bittrex account with btc available in it and to be watching here when the pump starts have bittrex and this group open side by side to save time faster orders get better prices the signal bot will announce the coin we all buy it quickly check the channel in the main discord called howtobuyfast for tips coin price increases and akes it to the top gainer of the day on bittrex front page list your sell order higher than your buy in within the expected gain range news is provided by the team help pomote this news about the coin to bring outsiders into the pump which boost the price even further profit this process has worked over 40 times for us and it will work again be ready for a great pump 2019-06-05 20:00:04+00:00 1.0 1246270015 9183 everyone 48 hours left until the bittrex pump exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot please check out the help channels also a brief explaination was posted in announcements to help explain what to expect for any newcomers with the addition of 500+ new members to increase our power over the market we are sure this pump will be one of the best 2019-06-04 20:00:04+00:00 1.0 1246270015 9181 everyone pump announcement next pump thursday 06 june 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have been growing a lot during this current crypto surge since last pump we have added over 400 members on discord alone this next pump should be bigger and better than ever please check out the help channels if you need and work on shilling techniques get hype 2019-06-02 23:50:27+00:00 1.0 1246270015 9177 everyone 5 minutes left the next message will be the coin expected gain 80150 2019-05-23 19:55:04+00:00 1.0 1246270015 9174 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-05-23 19:00:03+00:00 1.0 1246270015 9171 less than 4 hours until the pump on bittrex dont miss it 2019-05-23 16:42:17+00:00 1.0 1246270015 9170 everyone 48 hours left until the pump make sure you have a bittrex account loaded and ready for trading the signal will be given im this channel and seen by thousands of users be prepared for a huge pump we can push 100 or higher 2019-05-21 20:21:39+00:00 1.0 1246270015 9168 everyone pump announcement next pump thursday 23 may 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time bitcoin is up almost 40 since we last pumped some of the bigger alts are having amazing runs and our coin will moon in the middle of all this we will be back with a strong pump and a+ marketing plan dont miss it 2019-05-19 13:00:54+00:00 1.0 1246270015 9147 cure bittrex pump results start price 1468 peak price 2966 gain 102 2019-03-19 20:31:46+00:00 1.0 1246270015 9144 everyone 5 minutes left the next message will be the coin expected gain up to 200 2019-03-19 19:54:45+00:00 1.0 1246270015 9141 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-03-19 18:59:46+00:00 1.0 1246270015 9140 2 hours left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-03-19 17:57:47+00:00 1.0 1246270015 9138 everyone 24 hours left until the bittrex pump 2000 gmt check your local time daylight savings may have changed your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot there have been several huge things happen for crypto since our last pump the enj partnership with samgsung the grs card backed by mastercard what will be next our coin will be thinking big we can play off the recent news and pump and hold our coin just like the others be ready for tomorrow 2019-03-18 20:00:06+00:00 1.0 1246270015 9137 everyone pump announcement next pump tuesday 19 march 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time crypto is in a great place right now some alts soaring and btc is strong we can make this our best bittrex pump yet 2019-03-18 14:31:04+00:00 1.0 1246270015 9136 due to unforeseen movement on our target coin we decided it is best and safest for everyone to not pump today we take this very seriously and would not risk anyone losing money after all we are here to all make profits together this is unfortunate but a healthy reminder that users come first pump will be rescheduled for as soon as possible 2019-03-14 20:04:45+00:00 1.0 1246270015 9132 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-03-14 19:00:15+00:00 1.0 1246270015 9131 2 hours left until the pump over the past 2 weeks several coins have sky rocketed 100+ from amazing news of partnerships in this environment our pump will look more natural than ever be persistent and even a little patient we control our coin market the pump will hold as long as we hold and promote it outsiders will come and everyone will profit especially today everything is perfect 2019-03-14 18:00:15+00:00 1.0 1246270015 9129 everyone 24 hours left until the bittrex pump 2000 gmt check your local time daylight savings may have changed your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot there have been several huge things happen for crypto since our last pump the enj partnership with samgsung the grs card backed by mastercard what will be next our coin will be thinking big we can play off the recent news and pump and hold our coin just like the others be ready for tomorrow 2019-03-13 21:00:03+00:00 1.0 1246270015 9128 everyone 48 hours left until the bittrex pump 2000 gmt check your local time daylight savings may have changed your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot there have been several huge things happen for crypto since our last pump the enj partnership with samgsung the grs card backed by mastercard what will be next our coin will be thinking big we can play off the recent news and pump and hold our coin just like the others remember to do your part spreading the coin news the more people who see it the more people who will buy it 2019-03-12 20:18:35+00:00 1.0 1246270015 9126 everyone pump announcement next pump thursday 14 march 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2019-03-08 20:37:04+00:00 1.0 1246270015 9123 a solid pump today we didnt get as much volume as last pump or as much as we were expecting today using the image instead of textlink to announce the coin removed a lot of fast telegramdiscord reader bots also it looks like we got less outsiders than our last two pumps probably due to some traders withdrawing funds early ahead of the planned maintenance all in all a decent pump and plenty of chance to make some good profit 2019-02-26 20:32:12+00:00 1.0 1246270015 9122 brx pump results start price 2321 sats peak price 4800 sats gain 107 volume 6 btc 2019-02-26 20:31:47+00:00 1.0 1246270015 9119 everyone 5 minutes left the next message will be the coin expected gain 90160 2019-02-26 19:55:02+00:00 1.0 1246270015 9116 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-02-26 19:00:04+00:00 1.0 1246270015 9115 2 hours left until the pump are you ready for another huge success 2019-02-26 18:00:04+00:00 1.0 1246270015 9114 4 hours left until the pump our volume keep increasing today we should see even more we urge you to do your part and spread the coin news during the pump this will help bring in max outsiders coin news will be posted 3040 sec after the coin 2019-02-26 16:00:04+00:00 1.0 1246270015 9113 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot our volume is increasing every pump with a little more we can be on the bittrex front page as both the top gain and top volume gain by this would be huge for our pump the coin will be released as an image this time to deter bots news will also be given during the pump to spread around in a coordinated effort to increase the buzz around our coin and send the price volume even higher 2019-02-25 20:00:04+00:00 1.0 1246270015 9112 48 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot altough we are strong and doing very well we encourage you to invite others the more members in our group the more powerful we become and even more effective our coin promoting can be when there are that many more people doing it 2019-02-24 20:00:04+00:00 1.0 1246270015 9111 everyone pump announcement next pump tuesday 26 february 2000 gmt check your local time exchange pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have been doing amazing things on bittrex 12 minutes to peak first pump spikes over 175 second pump what will we accomplish this time the best thing you can do for yourself and the group is to find a place to shill the coin durung the pump a forum a telegram group social media or elsewhere working together we can bring even more outside volume into our pumps and profit a great deal more 2019-02-22 22:34:04+00:00 1.0 1246270015 9109 gbg pump results start price 235 sats peak price 684 sats gain 191 volume 864 btc 2019-02-21 20:22:55+00:00 1.0 1246270015 9107 everyone 5 minutes left the next message will be the coin expected gain 90140 2019-02-21 19:55:04+00:00 1.0 1246270015 9105 30 minutes until the pump be ready for huge gains 2019-02-21 19:30:04+00:00 1.0 1246270015 9104 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-02-21 19:00:04+00:00 1.0 1246270015 9103 2 hours left until the pump are you ready for another huge success 2019-02-21 18:00:04+00:00 1.0 1246270015 9102 4 hours left until the pump everything is looking amazing today last time we under estimated our reach and could have easily handled double the volume with the amount of outsiders we brought in today we expect double the volume or even more 2019-02-21 16:00:04+00:00 1.0 1246270015 9101 everyone 24 hours left until the bittrex pump 2000 gmt check your local time exchange pairing btc free for all pump all pumpers receive the signal at the same time via our bot bittrex has 40 million daily volume and we will claim as much of that as we can for our group be sure to have your account loaded and verified and be ready to help promote the coin tomorrow 2019-02-20 20:00:04+00:00 1.0 1246270015 9099 less than 48 hours until the pump make sure you create a bittrex account and verify it thursday 21 february 2000 gmt check your local time exchange bittrex pairing btc 2019-02-19 20:23:21+00:00 1.0 1246270015 9096 pump announcement next pump thursday 21 february 2000 gmt check your local time exchange bittrex pairing btc lets make this pump even better after the huge success of the last pump be ready register your account on bittrex and verify it 2019-02-15 18:15:49+00:00 1.0 1246270015 9094 gam pump results start price 38404 sats max price 86000 sats max gain 124 volume 39 btc great job everyone our first pump on bittrex was a smashing success weve been quiet for a while since the crytpopia hack but it looks like weve found a new home at bittrex this pump had two really good follow up waves after the first wave enjoy your profits 2019-02-12 20:28:07+00:00 1.0 1246270015 9092 everyone 5 minutes left the next message will be the coin expected gain 80150 2019-02-12 19:55:03+00:00 1.0 1246270015 9090 30 minutes until the pump be ready for huge gains 2019-02-12 19:30:03+00:00 1.0 1246270015 9089 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-02-12 19:00:03+00:00 1.0 1246270015 9088 2 hours left until the pump today may define us as a group we strongly believe we will dominate bittrex like we dominated cryptopia dont miss this pump 2019-02-12 18:00:03+00:00 1.0 1246270015 9086 4 hours left until the pump be sure to have enough btc available everything is looking amazing today here we come bitrrex 2019-02-12 16:08:04+00:00 1.0 1246270015 9083 next pump is on bittrex make sure to get account verified date february 12 2019 tuesday time 2000 gmt exchange bittrex pairing btc you need to register and verify your account to be able to deposit trade and withdraw at bittrex it is a fairly simple process and takes only a few minutes you can learn more about the verification process here usarticles115005329167creatingabittrexaccountandperformingverification if you have any questions or need any help before the pump ask us in the general chat channel in the discord server pump will be announced in the pumpsignal channel in discord and in this telegram channel see you then 2019-02-10 03:20:06+00:00 1.0 1246270015 9080 pump announcement next pump tuesday 12 february 2000 gmt check your local time exchange bittrex pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we will be pulling out all the stops for this pump to make sure we jump on the scene as the best pump group on bittrex right away our op shilling tools meant for binance will be used for this pump instead bittrex is a huge step up from cryptopia much larger much more trusted many more outsiders you can feel safe investing up to 3 btc into pumps here 2019-02-07 02:03:31+00:00 1.0 1246270015 9075 everyone 5 minutes left the next message will be the coin expected gain as high as we can get 2019-01-11 19:55:03+00:00 1.0 1246270015 9073 30 minutes until the pump be ready for huge gains 2019-01-11 19:30:04+00:00 1.0 1246270015 9072 1 hour left before the pump everyone make sure you help promote the coin in the cryptopia chat during the pump 2019-01-11 19:00:04+00:00 1.0 1246270015 9070 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in help hype in the cryptopia chat hodl together we are the best coin promoting group never panic we will get all orders sold to outsiders this may take several minutes normal pump peaks are 23 min after the pump start 2019-01-11 16:00:03+00:00 1.0 1246270015 9069 everyone 24hours left until our massive pump 2000 gmt check your local time exchange pairing btc we will adjust our goal from trying to give max gains to people to giving gains to max people if you enter this pump you will profit we are looking to receive successstories from almost every user this pump as always the pump is ffa 2019-01-10 20:05:04+00:00 1.0 1246270015 9068 everyone 24hours left until our massive pump 2000 gmt check your local time exchange pairing btc we will adjust our goal from trying to give max gains to people to giving gains to max people if you enter this pump you will profit we are looking to receive successstories from almost every user this pump as always the pump is ffa 2019-01-10 20:00:04+00:00 1.0 1246270015 9066 pump announcement next pump friday 11 january 2000 gmt check your local time exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2019-01-09 18:04:19+00:00 1.0 1246270015 9065 dzc pump results start price 581 peak price 1875 total rise 223 volume 3 btc our volume was disappointing for this pump we were expecting more than double but it didnt materialize 2019-01-03 23:24:42+00:00 1.0 1246270015 9062 5 minutes until the pump next message will be the coin everyone expected gain 400550 2019-01-03 20:05:04+00:00 1.0 1246270015 9060 30 minutes until the pump todays goal will be higher than usual so be ready for a huge pump 2019-01-03 19:40:03+00:00 1.0 1246270015 9059 under 1 hour left before the pump everyone as you probably have noticed these reminders are coming 10 minutes after the hour the pump will start at 2010 gmt as we have noticed the cryptopia chat mods are more active at the top of every hour and less active inbetween 2019-01-03 19:10:03+00:00 1.0 1246270015 9058 2 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media 2019-01-03 18:10:02+00:00 1.0 1246270015 9055 less than 4 hours until our massive pump 2000 gmt today exchange cryptopia pairing btc 2019-01-03 16:02:35+00:00 1.0 1246270015 9054 24 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains 2019-01-02 20:00:02+00:00 1.0 1246270015 9053 48 hours left until our pump 2019 will start off right with the best pump possible higher goal elite promo more outsiders 2019-01-01 20:00:01+00:00 1.0 1246270015 9051 pump announcement next pump thursday 03 january 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time this pump will see a higher goal than nomral to leave even more room for everyone to profit we have been developing our promo approach for an entire week and believe we will see huge outsider volume this is truly a pump you will not want to miss 2018-12-30 21:36:20+00:00 1.0 1246270015 9050 xbp pump results start price 17 sats peak price 61 sats gain 258 2018-12-21 04:27:53+00:00 1.0 1246270015 9047 5 minutes until the pump next message will be the coin everyone expected gain 200250 2018-12-20 19:55:03+00:00 1.0 1246270015 9044 under 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box here 2018-12-20 19:08:03+00:00 1.0 1246270015 9043 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box here 2018-12-20 19:00:03+00:00 1.0 1246270015 9042 2 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media 2018-12-20 18:00:02+00:00 1.0 1246270015 9041 4 hours left before the pump bitcoin and the alts are looking very strong we will have a great pump today 2018-12-20 16:00:02+00:00 1.0 1246270015 9038 next pump thursday 20 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have been doing great lately lets keep this up pre holiday pump time to put a little more cash in your pocket before christmas 2018-12-19 01:53:32+00:00 1.0 1246270015 9037 can cryptopia pump results start price 375 peak price 1235 gain 229 2018-12-13 21:41:17+00:00 1.0 1246270015 9034 5 minutes until the pump next message will be the coin everyone expected gain 200300 2018-12-13 19:55:00+00:00 1.0 1246270015 9031 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon 2018-12-13 19:00:00+00:00 1.0 1246270015 9030 2 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media 2018-12-13 18:00:01+00:00 1.0 1246270015 9028 24 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gainshave btc ready in your cryptopia account a few hours before the pump 2018-12-12 20:00:00+00:00 1.0 1246270015 9025 pump announcement next pump thursday 13 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have been doing great lately lets keep this up 2018-12-10 21:10:34+00:00 1.0 1246270015 9024 ont cryptopia pump results start price 17235 peak price 70999 gain 312 volume 342 btc peak buy came at 3 min 15 sec today great job bringing in those outsiders 2018-12-10 21:09:11+00:00 1.0 1246270015 9021 5 minutes until the pump next message will be the coin everyone expected gain 300450 2018-12-10 19:55:00+00:00 1.0 1246270015 9018 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon today we expect much larger than normal gains and huge percentage rise 2018-12-10 19:00:00+00:00 1.0 1246270015 9017 2 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media 2018-12-10 18:00:01+00:00 1.0 1246270015 9016 4 hours left before the pump last pump was amazing we went way over our goal and held for a nice amount of time today will be an enormous pump higher gains more outsiders more profits 2018-12-10 16:00:01+00:00 1.0 1246270015 9015 24 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gainshave btc ready in your cryptopia account a few hours before the pump 2018-12-09 20:00:00+00:00 1.0 1246270015 9013 pump will be unranked free for all all pumpers will receive coin at the same time last pump we saw amazing results of 294 with a slow climb outsiders buying in late the coin holding for a long time and great success stories sent in by many members make sure to mark your calendars as this will be another pump you wont want to miss 2018-12-07 22:17:00+00:00 1.0 1246270015 9011 everyone family pump announcement next pump monday 10 december 2000 gmt 2018-12-07 22:16:58+00:00 1.0 1246270015 9010 otn cryptopia pump results start price 4802 peak price 18293 gain 294 great job promoting today the pump rose very slow and steady and held for almost 10 min 2018-12-06 20:30:08+00:00 1.0 1246270015 9008 5 minutes until the pump next message will be the coin everyone expected gain 200250 2018-12-06 19:55:01+00:00 1.0 1246270015 9005 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon with our great shilling outsiders will be ready to invest right after us and bring in some huge profits 2018-12-06 19:00:01+00:00 1.0 1246270015 8997 5 minutes until the pump next message will be the coin everyone 2018-12-04 19:55:00+00:00 1.0 1246270015 8994 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon with our great shilling outsiders will be ready to invest right after us and bring in some huge profits 2018-12-04 19:00:00+00:00 1.0 1246270015 8992 12 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gains have btc ready in your cryptopia account a few hours before the pump 2018-12-04 08:00:00+00:00 1.0 1246270015 8988 pump announcement next pump tuesday 4 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time the time has come we are back and ready to bring those profits we all got used to the market went through a tough time but we are here to succeed once again 2018-11-27 18:45:38+00:00 1.0 1246270015 8974 oxy pump results start price 80 sats peak price 425 sats gain 432 volume 4 btc total 2018-11-05 00:41:59+00:00 1.0 1246270015 8970 everyone 5 minutes left the next message will be the coin make sure you are watching here as the coin will announce at any point up to 1 minute early 2018-11-03 17:55:04+00:00 1.0 1246270015 8968 everyone 30 minutes left we are ready outsiders are waiting and potential is super high lets set new records today 2018-11-03 17:26:43+00:00 1.0 1246270015 8967 everyone 1 hour left until our massive pump 2018-11-03 17:00:02+00:00 1.0 1246270015 8966 everyone 2 hours left until the huge pump we hope everyone is primed ad ready to go today will be enormous gains endless outsiders and maximun profits 2018-11-03 16:01:02+00:00 1.0 1246270015 8965 everyone 4 hours left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon 2018-11-03 14:00:04+00:00 1.0 1246270015 8964 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot this will be a saturday pump for the ages all tools triple checked and working optimally weeks ago we shot ivy over 790 with huge volume and extreme outsider buy ins tomorrow we have a very strong chance to do even better than this everyone be ready together we will make this an amazing success 2018-11-02 18:00:02+00:00 1.0 1246270015 8962 pump announcement next pump saturday 3 november 1800 gmt 2100 gmt+3 moscow 3 nov 2000 gmt+2 rome 3 nov 1900 gmt+1 london 3 nov 1400 est new york 3 nov 2330 ist delhi 3 nov 0400 aest sydney 4 nov 0300 jst tokyo 4 nov exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time a saturday pump will be huge we expect more volume more outsiders and more profit for everyone 2018-11-01 19:44:03+00:00 1.0 1246270015 8960 ett pump results starting price 350 sats peak price 1500 sats gain 329 2018-10-30 20:32:18+00:00 1.0 1246270015 8954 everyone 5 minutes left the next message will be the coin make sure you are watching here as the coin will announce at any point up to 1 minute early 2018-10-30 19:25:02+00:00 1.0 1246270015 8952 everyone 30 minutes left be sure to help promote the coin our news is great and we will be able to bring in a ot of outsiders for max profits 2018-10-30 19:00:06+00:00 1.0 1246270015 8951 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-10-30 18:30:02+00:00 1.0 1246270015 8950 everyone 2 hours left until the huge pump we hope everyone is primed ad ready to go today will be a huge success 2018-10-30 17:30:06+00:00 1.0 1246270015 8949 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-30 15:30:03+00:00 1.0 1246270015 8948 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump so we are sure it will be even bigger and better than we expect 2018-10-29 19:30:03+00:00 1.0 1246270015 8946 cryptofamily cryptopia pump squad pump announcement next pump tuesday 30 october 1930 gmt 2230 gmt+3 moscow 27 oct 2130 gmt+2 rome 27 oct 2030 gmt+1 london 27 oct 1530 est new york 27 oct 0100 ist delhi 28 oct 0530 aest sydney 28 oct 0430 jst tokyo 28 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-28 17:43:29+00:00 1.0 1246270015 8941 everyone 5 minutes left the next post will be the coin make sure you are watching here as the coin can come up to 1 minute early 2018-10-27 17:55:01+00:00 1.0 1246270015 8938 everyone 1 hour left until our massive pump remember to help promote the coin in the cryptopia chat box and on social media our tools will be working hard but you should too lets push this coin to the moon send in your success stories after the pump to be put in the hall of fame 2018-10-27 17:03:03+00:00 1.0 1246270015 8936 everyone 4 hours left until the pump we have been doing amazing lately but today will be even bigger and better than normal great volume tons of outsiders max profits 2018-10-27 14:00:10+00:00 1.0 1246270015 8935 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great again for this pump huge gains and a saturday pump should be full of outsiders 2018-10-26 18:00:04+00:00 1.0 1246270015 8933 cryptofamily cryptopia pump squad pump announcement next pump saturday 27 october 1800 gmt 2100 gmt+3 moscow 27 oct 2000 gmt+2 rome 27 oct 1900 gmt+1 london 27 oct 1400 est new york 27 oct 2330 ist delhi 27 oct 0400 aest sydney 28 oct 0300 jst tokyo 28 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time due to our recent success and by popular demand we will pump this saturday another huge pump coming notice the pump time 1800 gmt 2018-10-26 13:55:51+00:00 1.0 1246270015 8930 xptx pump results starting price 2106 sats peak price 12403 sats gain 489 volume 6 btc 2018-10-25 20:03:32+00:00 1.0 1246270015 8924 everyone 5 minutes left the next message will be the coin make sure you are watching here as the coin will announce at any point up to 1 minute early 2018-10-25 19:25:02+00:00 1.0 1246270015 8923 everyone 10 minutes left remember to help hype the coin in the chatbox durring the pump 2018-10-25 19:20:02+00:00 1.0 1246270015 8922 everyone 30 minutes left until the pump lets work hard to keep our volume up and surpass our goal to maximize profits for everyone 2018-10-25 19:00:02+00:00 1.0 1246270015 8921 everyone 1 hour left until our huge pump remember to 1 buy in quickly 2 list your sell in the expected gain range 3 help promote the coin in the cryptopia chat box we have been doing incredible lately and that trend will continue today 2018-10-25 18:30:02+00:00 1.0 1246270015 8919 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-25 15:30:06+00:00 1.0 1246270015 8918 everyone 24 hours left until our massive pump exchange pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot conditions are great for this pump lets beat our goal and bring in max outsiders 2018-10-24 19:30:04+00:00 1.0 1246270015 8916 cryptofamily cryptopia pump squad pump announcement next pump thursday 25 october 1930 gmt 2230 gmt+3 moscow 25 oct 2130 gmt+2 rome 25 oct 2030 gmt+1 london 25 oct 1530 est new york 25 oct 0530 aest sydney 26 oct 0100 ist delhi 26 oct 0430 jst tokyo 26 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-23 15:43:23+00:00 1.0 1246270015 8913 everyone 22 hours left until our massive pump exchange sign up pairing btc load account huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot market conditions are looking great for another pump 2018-10-22 21:30:01+00:00 1.0 1246270015 8912 everyone cryptofamily pump announcement next pump tuesday 23 october 1930 gmt 2230 gmt+3 moscow flagru 23 oct 2130 gmt+2 rome flagit 23 oct 2030 gmt+1 london flaggb 23 oct 1530 est new york flagus 23 oct 0530 aest sydney flagau 24 oct 0100 ist delhi flagin 24 oct 0430 jst tokyo flagjp 24 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time this will be another huge pump then we will rest while we focus hard on our binance pump oct 30th 2018-10-21 21:24:03+00:00 1.0 1246270015 8907 everyone 5 minutes left the next message will be the coin expected gain 400650 2018-10-18 19:25:01+00:00 1.0 1246270015 8905 everyone 1 hour left until our huge pump remember to 1 buy in quickly 2 list your sell in the expected gain range 3 help promote the coin in the cryptopia chat box we have been doing incredible lately and that trend will continue today 2018-10-18 18:30:03+00:00 1.0 1246270015 8904 everyone 2 hours left until our massive pump todays forecast is simply incredible 2 weeks ago we pumped ivy and it went 794 with amazing volume last week we pumped bubo and it held near peak for 20+ minutes today we will do even better with max outsiders again and huge profits 2018-10-18 17:30:03+00:00 1.0 1246270015 8903 4 hours left until the pump remember buy in once you see the coin announced coin will be on cryptoptia paired with btc set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 33+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-18 15:30:03+00:00 1.0 1246270015 8902 everyone 24 hours left until our massive pump exchange sign up pairing btc load account huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we have amazing promotional material ready with our greatest shilling power yet expect 400 gain or more + coin staying up for a long time + tons of outsiders again to tips learn to pump see our website 2018-10-17 19:30:08+00:00 1.0 1246270015 8901 everyone 48 hours left until our massive pump exchange cryptopia pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot last pump we held 250 for over 20 minutes and had record amount of outsiders buying in this next pump will be even bigger with a huge goal again expect 400 or more + coin staying up for longer + tons of outsiders again 2018-10-16 19:30:02+00:00 1.0 1246270015 8899 cryptofamily cryptopia pump squad pump announcement next pump thursday 18 october 1930 gmt 2230 gmt+3 moscow 18 oct 2130 gmt+2 rome 18 oct 2030 gmt+1 london 18 oct 1530 est new york 19 oct 0530 aest sydney 19 oct 0100 ist delhi 19 oct 0430 jst tokyo 19 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-14 20:01:22+00:00 1.0 1246270015 8898 bubo pump results start price 68 peak price 273 gain 301 today was amazing for outsiders as we predicted keep up the good work everyone 2018-10-11 20:03:51+00:00 1.0 1246270015 8896 everyone 3 minutes left the next message will be the coin news to spread will be supplied shortly after the coin is announced 2018-10-11 19:27:08+00:00 1.0 1246270015 8894 everyone 30 minutes left news to promote in the cryptopia chatbox and all over social media will be supplied shortly after the coin annuoncement 2018-10-11 19:00:02+00:00 1.0 1246270015 8892 everyone 1 hour left until our massive pump this will be huge 2018-10-11 18:30:01+00:00 1.0 1246270015 8891 everyone 2 hour left until our massive pump we have great coin news and shilling prepared for today along with 2000 new members make sure you are doing your part and helping promote the coin in the chatbox after you are bought in this pump will be huge and filmed to use as promotional material help us make this the best pump ever lets blast over our goal again this pump rocket 2018-10-11 17:30:04+00:00 1.0 1246270015 8890 4 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-11 15:30:02+00:00 1.0 1246270015 8889 everyone 24 hours left until our massive pump exchange cryptopia pairing btc huge pump you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot together our family has grown by over 2000 users in 1 week this says a lot about our past success but also about our future success we are stronger than ever and will have an incredible pump tomorrow improved shilling for this pump featured website hosting the coin news social media influencers promoting our shilling tools at full strength 2000 more users to spread fomo about the coin bringing in outsiders is how we maximize earnings and tomorrow we will do the best weve ever done at that be ready for huge profits 2018-10-10 19:30:02+00:00 1.0 1246270015 8888 everyone 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot pumps have been very good lately and we are stepping our shilling game up again expect this pump to be nothing short of amazing 2018-10-09 19:30:02+00:00 1.0 1246270015 8886 cryptofamily cryptopia pump squad pump announcement next pump thursday 11 october 1930 gmt 2230 gmt+3 moscow 11 oct 2130 gmt+2 rome 11 oct 2030 gmt+1 london 11 oct 1530 est new york 12 oct 0530 aest sydney 12 oct 0100 ist delhi 12 oct 0430 jst tokyo 12 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time a other huge pump is coming be ready 2018-10-08 18:25:28+00:00 1.0 1246270015 8883 everyone 3 minutes left next message will be the coin 2018-10-05 19:27:00+00:00 1.0 1246270015 8882 everyone 10 minutes left expected gain 300 370 2018-10-05 19:20:01+00:00 1.0 1246270015 8880 everyone 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in lets blast over our goal again this pump rocket 2018-10-05 18:30:01+00:00 1.0 1246270015 8879 2 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-05 17:30:01+00:00 1.0 1246270015 8878 everyone 4 hours left until the huge pump exchange cryptopia pairing btc last time was our bestbiggest pump ever and today we can keep up that trend be ready for another massive pump with higher than typical goals and even greater potential profits 2018-10-05 15:30:02+00:00 1.0 1246270015 8877 everyone just under 24 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this this will be a historic pump pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we are aiming to make it the largest pump ever done on cryptopia tuesdays pump was outstanding with a goal of 300450 we blasted all the way through to 796 can we do this again theres only 1 way to find out 2018-10-04 19:30:05+00:00 1.0 1246270015 8875 everyone cryptofamily pump announcement next pump friday 5 october 1930 gmt 2230 gmt+3 moscow flagru 5 oct 2130 gmt+2 rome flagit 5 oct 2030 gmt+1 london flaggb 5 oct 1530 est new york flagus 5 oct 0530 aest sydney flagau 6 oct 0100 ist delhi flagin 6 oct 0430 jst tokyo flagjp 6 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-10-02 20:43:05+00:00 1.0 1246270015 8871 everyone 3 minutes left the next message will be the coin 2018-10-02 19:27:01+00:00 1.0 1246270015 8870 everyone 10 minutes left expected gain 300450 with enough outsider volume we could easily push this coin to historic percentages and take home unbelievable gains 2018-10-02 19:20:01+00:00 1.0 1246270015 8869 everyone 30 minutes left news will be supplied shortly after the coin announcement spread this news everywhere and promote in in the cryptopia chat box 2018-10-02 19:00:01+00:00 1.0 1246270015 8868 everyone 1 hour left until our massive pump make sure you have btc available and help promote the coin in the chatbox after you are bought in the sky is the limit working together we can make this one of the best pumps ever 2018-10-02 18:30:01+00:00 1.0 1246270015 8867 everyone 2 hour left until our massive pump 2018-10-02 17:30:02+00:00 1.0 1246270015 8866 4 hours left until the pump remember buy in once you see the coin announced set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-10-02 15:30:11+00:00 1.0 1246270015 8864 just under 24 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this this will be a historic pump pump will be unranked ffa all pumpers will receive coin signal at the same time via our bot we are aiming to make it the largest pump ever done on cryptopia forget 100 or even 200 gains think bigger our shilling could literally pump this coin to the moon the news we have prepared is outstanding and will be corroborated by 2 websites promoted heavily on social media and hyped very hard by all of you in the chat box outsiders will be drooling over this opportunity 2018-10-01 19:52:45+00:00 1.0 1246270015 8862 everyone 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot our coin promoting will be the best its ever been this pump and all members should see their best gains there are 48 hours left to invite friends to help increase our power even more 2018-09-30 19:30:02+00:00 1.0 1246270015 8860 cryptofamily cryptopia pump squad pump announcement next pump tuesday 2 october 1930 gmt 2230 gmt+3 moscow 4 oct 2130 gmt+2 rome 4 oct 2030 gmt+1 london 4 oct 1530 est new york 4 oct 0530 aest sydney 5 oct 0100 ist delhi 5 oct 0430 jst tokyo 5 oct exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time we have plans to make this a truly historic pump that you will be proud to be a part of we will flex our muscle as a dominant force on cryptopia members can expect their largest gains ever 2018-09-28 18:08:52+00:00 1.0 1246270015 8857 spr pump results starting price 1394 sats peak price 4516 sats gain 224 volume 524 btc 2018-09-25 20:49:43+00:00 1.0 1246270015 8855 everyone 5 minutes left the next message will be the coin exected gain 200280 2018-09-25 19:25:01+00:00 1.0 1246270015 8854 everyone 30 minutes left be sure to have your btc ready and help promote the coin in cryptopias chat box after you are bought in with a sell listed 2018-09-25 19:00:03+00:00 1.0 1246270015 8852 everyone 1 hour left until our huge pump 2018-09-25 18:30:02+00:00 1.0 1246270015 8851 everyone 2 hours left until our huge pump 2018-09-25 17:30:01+00:00 1.0 1246270015 8850 everyone 4 hours left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-25 15:30:02+00:00 1.0 1246270015 8848 24 hours left until the pump remember buy in once you see the coin announced for tips check buyfastoncrytopia in our discord set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-09-24 19:30:14+00:00 1.0 1246270015 8846 everyone 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot our last pump was simply amazing again with tons of member success and plenty of outsiders buying in this pump will be even bigger again 2018-09-23 19:30:02+00:00 1.0 1246270015 8845 cryptofamily cryptopia pump squad collab pump announcement next pump tuesday 25 september 1930 gmt 2230 gmt+3 moscow 25 sept 2130 gmt+2 rome 25 sept 2030 gmt+1 london 25sept 1530 est new york 26 sept 0530 aest sydney 26sept 0100 ist delhi 26 sept 0430 jst tokyo 26 sept exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-09-22 17:51:41+00:00 1.0 1246270015 8841 everyone 3 minutes left the next message will be the coin 2018-09-20 19:27:00+00:00 1.0 1246270015 8838 everyone 1 hour left until our huge pump news will be supplied shortly after the coin announcement help spread this news in the chat box and across any social medias 2018-09-20 18:30:02+00:00 1.0 1246270015 8837 everyone 2 hours left until our huge pump exchange cryptopia pairing btc 2018-09-20 17:30:02+00:00 1.0 1246270015 8834 24 hours left until the pump remember buy in once you see the coin announced for tips check buyfastoncrytopia in our discord set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-09-19 19:30:02+00:00 1.0 1246270015 8833 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot our last pump was simply amazing with tons of member success stories sent in this pump will be even bigger 2018-09-18 19:30:02+00:00 1.0 1246270015 8831 cryptofamily cryptopia pump squad collab pump announcement next pump thursday 20 september 1930 gmt 2230 gmt+3 moscow 20 sept 2130 gmt+2 rome 20 sept 2030 gmt+1 london 20 sept 1530 est new york 20 sept 0530 aest sydney 21 sept 0100 ist delhi 21 sept 0430 jst tokyo 21 sept exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-09-15 15:01:03+00:00 1.0 1246270015 8827 everyone 3 minutes left the next message will be the coin 2018-09-13 19:27:00+00:00 1.0 1246270015 8825 everyone 30 minutes left the coin will be paired with btc after you buy be sure to have the cryptopia chatbox open so you can help promote the coin to outsiders 2018-09-13 19:00:02+00:00 1.0 1246270015 8824 less than 50 minutes to go before the pump be ready 2018-09-13 18:42:13+00:00 1.0 1246270015 8823 4 hours left until the pump remember buy in once you see the coin announced for tips check buyfastoncrytopia in our discord set your sell above your buy in never sell below your buy in an expected gain range from the start price will be released shortly before the pump begins sell in that range for max profits help hype in the cryptopia chat it is important to work as a team to bring in as many outsiders as possible more outsiders more profit for everyone the chatbox is located in the bottom left corner of your screen while on cryptopia hodl together we are the best shilling group on cryptopia and can get all reasonable orders filled with a little persistence dumping helps no one so do not panic sell trust the system it has worked 30+ times and will work again after the pump feel free to brag about your profits or ask questions if you need future help pumping is an art and may take a couple tries before you perfect your style and see those big gains rocket 2018-09-13 15:30:02+00:00 1.0 1246270015 8822 24 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot everyone we have grown a lot these past weeks this pump should be huge 2018-09-12 19:30:07+00:00 1.0 1246270015 8821 48 hours left until our massive pump exchange cryptopia pairing btc you will not want to miss this huge pump again pump will be unranked ffa all pumpers will receive coin at the same time via our bot everyoneto be ready have btc availably in your cryptopia balance 2018-09-11 19:30:03+00:00 1.0 1246270015 8819 pump announcement cryptofamily cryptopia pump squad collab next pump thursday 13 september 1930 gmt 2230 gmt+3 moscow 13 sept 2130 gmt+2 rome 13 sept 2030 gmt+1 london 13 sept 1530 est new york 13 sept 0530 aest sydney 14 sept 0100 ist delhi 14 sept 0430 jst tokyo 14 sept exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time its gonna be huge you dont want to miss it 2018-09-09 22:50:14+00:00 1.0 1246270015 8818 our big pump so far great work everyone we smashed through 100 and also 200 keep following and keep the channel unmuted keep a look out for our next pump announcement 2018-09-06 20:08:32+00:00 1.0 1246270015 8813 5 minutes until the pump next message will be the coin be ready everyone 2018-09-06 19:10:01+00:00 1.0 1246270015 8812 10 minutes until the pump shut down all nonpump related programs make sure your internet is fast its time to make some huge profits baby everyone 2018-09-06 19:05:01+00:00 1.0 1246270015 8810 1 hour left before the pump almost time for liftoff everyone 2018-09-06 18:15:01+00:00 1.0 1246270015 8803 pump announcement date september 6 2018 thursday time 1915 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-09-04 13:19:44+00:00 1.0 1246270015 8802 another solid pump with more volume than last week unfortunately we did have a few pumpers sell early right in the middle of the rise which cut our gain to maximize profit for yourself and the rest of the squad it is best to ride the pump to the top and place your sells there and shill that way everyone in the squad gets a fair chance at good profit thanks to everyone who participated look for our next pump announcement on monday 2018-08-30 19:40:50+00:00 1.0 1246270015 8794 5 minutes until the pump next message will be the coin be ready everyone 2018-08-30 18:55:00+00:00 1.0 1246270015 8793 10 minutes until the pump shut down all nonpump related programs make sure your internet is fast its time to make some huge profits baby everyone 2018-08-30 18:50:00+00:00 1.0 1246270015 8790 1 hour left before the pump almost time for liftoff everyone 2018-08-30 18:00:01+00:00 1.0 1246270015 8782 pump announcement date august 30 2018 thursday time 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-08-27 21:30:01+00:00 1.0 1246270015 8771 5 minutes until the pump next message will be the coin be ready everyone 2018-08-23 18:55:00+00:00 1.0 1246270015 8770 10 minutes until the pump shut down all nonpump related programs make sure your internet is fast its time to make some huge profits baby everyone 2018-08-23 18:50:01+00:00 1.0 1246270015 8768 1 hour left before the pump almost time for liftoff everyone 2018-08-23 18:00:01+00:00 1.0 1246270015 8761 pump announcement date august 23 2018 thursday time 1900 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-08-20 22:06:46+00:00 1.0 1246270015 8759 weekly update our fourth week of recruitment on discord was another great week we added just over 150 new members we have grown our group substantially over the last month and we are ready for our next free for all pump on cryptopia this week cryptopia pump will be announced later today keep following the channel and keep us unmuted so you dont miss our pump announcements we will post the pump signal in the telegram channel and discord server make sure you are in both 2018-08-20 16:17:38+00:00 1.0 1246270015 8745 5 minutes until the pump next message will be the coin be ready 2018-07-05 17:25:00+00:00 1.0 1246270015 8744 10 minutes until the pump shut down all nonpump related programs make sure your internet it fast its time to make some huge profits baby 2018-07-05 17:20:00+00:00 1.0 1246270015 8741 1 hour left before the pump almost time for liftoff 2018-07-05 16:30:01+00:00 1.0 1246270015 8734 pump announcement date july 5 2018 thursday time 1730 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-07-02 21:23:38+00:00 1.0 1246270015 8731 great job pump squad we will post pump results shortly 2018-06-28 17:42:38+00:00 1.0 1246270015 8725 5 minutes until the pump next message will be the coin be ready 2018-06-28 17:25:00+00:00 1.0 1246270015 8723 10 minutes until the pump shut down all nonpump related programs make sure your internet it fast its time to make some huge profits baby 2018-06-28 17:20:00+00:00 1.0 1246270015 8721 1 hour left before the pump almost time for liftoff 2018-06-28 16:30:01+00:00 1.0 1246270015 8714 pump announcement date june 28 2018 thursday time 1730 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-06-26 13:32:12+00:00 1.0 1246270015 8706 pump announcement date june 22 2018 friday time 1730 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time 2018-06-18 18:38:01+00:00 1.0 1246270015 8705 beware scammer pump groups on telegram there are some big scammer pump groups operating on cryptopia at the moment here are the four biggest that you should avoid otherwise you will lose your btc scammers donald pump hit pump signals strategies official mcafee pump signals vote pump these groups admins buy up the coin the instant it is announced they buy about as much as what they expect their members to buy then they sell into their members buys members buy the top and the price dumps dont believe me just copy and paste the orderbook each time they pump and graph the buys and sells or if you dont care to lose a little btc participate in their pumps with 0001 you will buy the top every time and lose big 2018-06-17 18:21:38+00:00 1.0 1246270015 7919 everyone 2 hours left until our massive pump exchange cryptopia pairing btc chartwithupwardstrend huge pump as always chartwithupwardstrend moneybag you will not want to miss this moneybag free for all unranked pump all member will recieve the coin at the same time 2018-05-27 16:30:10+00:00 1.0 1246270015 6720 bytecoin binance listing – the most coordonated pump and dump of 2018 usethebitcoincom ⬇ 5 31 minutes ago 2018-05-08 16:03:56+00:00 1.0 1246270015 6045 eos rising a new paradigm or just a pump cryptovestcom ⬇ 4 42 minutes ago 2018-04-30 08:52:14+00:00 1.0 1246270015 4853 cardano price set to rise as huobi exchange adds ada coin coingapecom ⬆ +3 15 minutes ago 2018-04-16 14:42:55+00:00 1.0 1246270015 4480 max keiser says his bitcoin price target of 100000 would be realized on a soros pump zycryptocom ⬆ +3 20 minutes ago 2018-04-11 20:19:56+00:00 1.0 1246270015 2477 initial coin offering ban in south korea could soon have an end usethebitcoincom ⬆ +10 5 minutes ago 2018-03-13 10:55:09+00:00 1.0 1246270015 1445 2 hours left in next pump join fast♂♂♂♂♂♂ wkhnozc4ssq 2018-02-23 16:54:46+00:00 1.0 1246270015 1069 how to spot a pump and dump and avoid it cryptobriefingcom ⚠ 5 ⬆ +1 24 minutes ago 2018-02-17 21:42:22+00:00 1.0 1246270015 285 guys check out mega pump on discord they are doing unranked pumps on thursday and saturday at 1800 gmt join now and profit tomorrow 2018-02-07 21:12:41+00:00 1.0 1335862163 27752 members only 15mins left hope u ready for this massive mountain spot signal event get your spare btc ready exchange binance 2021-12-07 15:45:38+00:00 1.0 1335862163 27750 attention around 1hour left alts market is showing very positive move fomo is expected to jump in todays mountain spot signal exchange binance 2021-12-07 15:00:25+00:00 1.0 1335862163 27748 members only about 3 hours 30mins left hope u ready for this massive mountain spot signal event get your binance accounts ready with spare btc exchange binance today 4 pm gmt 2021-12-07 12:32:57+00:00 1.0 1335862163 27740 attention guys around 5hours 50mins left alts market is showing very positive move fomo is expected to jump in todays mountain pump exchange binance 2021-12-07 10:11:50+00:00 1.0 1335862163 27734 attention only about 12 hours left hope u ready for this massive mountain spot event get your binance accounts ready with spare btc this mountain spot signal exchange binance 1030 hrs remaining today 4pm gmt 2021-12-07 05:27:31+00:00 1.0 1335862163 27571 15 minutes left screens on and have btc ready 2021-11-14 14:45:01+00:00 1.0 1335862163 27569 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:01+00:00 1.0 1335862163 27567 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:00:01+00:00 1.0 1335862163 27560 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales our ready our team is ready… are you ready 2021-11-13 15:00:01+00:00 1.0 1335862163 27555 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:25:10+00:00 1.0 1335862163 27546 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:00:02+00:00 1.0 1335862163 27528 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:12:41+00:00 1.0 1335862163 27472 15 minutes left screens on and have btc ready 2021-10-31 14:45:01+00:00 1.0 1335862163 27470 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:07+00:00 1.0 1335862163 27469 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:02+00:00 1.0 1335862163 27464 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:02+00:00 1.0 1335862163 27416 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 15:07:58+00:00 1.0 1335862163 27318 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:10+00:00 1.0 1335862163 27260 sky update congratulations everyone this is currently our longest sustaining and strongest pump yes… we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy 2021-10-05 15:19:19+00:00 1.0 1335862163 27252 15 minutes left dont forget our instructions to maximize your profits from this pump 2021-10-05 14:45:07+00:00 1.0 1335862163 27250 1 hour left 1 hour left for our biggest pump yet be ready 2021-10-05 14:00:06+00:00 1.0 1335862163 27249 3 hours 30 min left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-05 11:30:06+00:00 1.0 1335862163 27244 15 hours left date tuesday october 5 2021 time 1500 gmt exchange binance 15 hours left for the most massive pump binance has seen… our whales are ready for it let the final countdown begin⏳ 2021-10-05 00:01:44+00:00 1.0 1335862163 27238 pump announcement date tuesday october 5 2021 time 1500 gmt exchange binance youve seen fun pump 50 brd pump 110 nebl pump 93 and even pix pump over 40… if you think those were “great pumps” its because you havent seen what were preparing for you yet our october 5th pump will not only be the largest winner weve had so far expecting at least 200 on it it will also be the largest volume one 400+ btc and the most resilient one as were expecting it to pump without any serious correction between waves this pump is unique because its being organized and backed up by all the largest crypto channels and groups reddit twitter telegram and by the largest whales in the market holding between 500 and 1500 btc each if you missed our previous pumps this is your chance to ride the most profitable ride of the year be ready for it 2021-10-04 04:51:09+00:00 1.0 1335862163 26757 announcement members we will provide you the strong tafa based future signal in less than 30 minutes transfer your fundsusdt and be ready 2021-08-05 15:08:52+00:00 1.0 1335862163 26551 we found a good coin to buy and hold we will send in next 15 minutes stay tuned 2021-07-24 13:45:38+00:00 1.0 1335862163 26527 premium vip membership price lifetime membership fee 170 discounted price regular price is 300 benifits you will get coin name before pump we guide you about buy and sell target 3 5 daily signals pm me kim800 2021-07-23 08:19:12+00:00 1.0 1335862163 25403 buy and hold its dont sell wait for big pump 2021-04-05 12:58:19+00:00 1.0 1335862163 16861 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-13 12:21:48+00:00 1.0 1335862163 16607 good day traders you know what time it is time for yet another mountain alt signal but this time with bit different strategy what is it this time the mountain alt wont come at a fixed time it will come within 4 5 pm gmt you need to stay online and alert in this 1 hr time trading bots wont be able to catch this time our signal its coming mon jun 8th | 4 5 pm gmt mountain alt 2020-06-07 06:47:03+00:00 1.0 1335862163 12653 alright folks here is another rock bottom whale signal details this signal will come on 22nd mar at 400 pm gmt alts are going good as btc is stable above 6k keep the date and time in mind mar 22 | 400 pm gmt 2020-03-21 17:06:00+00:00 1.0 1335862163 7969 there will be strong technical analysis signal coming today watch out stay online today between 330 pm gmt 430 pm gmt massive fomo will appear and will be on top of binance target is 80 100 2019-12-04 09:26:31+00:00 1.0 1335862163 7150 btc update hi guys‼️ btc again pump if you follow my provious long call then surely right now getting good profit right now btc again 8800 looking bullish in 4 hour 1 hour candlewe may expect next target 8850890090009050 either fast pullback approx 85008300 lets see guys more signal updates will provide soon thanks 2019-11-13 00:06:29+00:00 1.0 1335862163 6621 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:09:17+00:00 1.0 1335862163 6436 bnt big fest in singapore name is cryptodefinancesingapore so this is also very bullish news for bnt growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit 7500 satoshi is very small target bntstrongtechnicalanalysissignal 2019-10-21 14:34:08+00:00 1.0 1335862163 6402 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:27+00:00 1.0 1335862163 6392 ❇ its about the push hodl signal ❇ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 07:17:29+00:00 1.0 1335862163 6377 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:45:56+00:00 1.0 1335862163 5355 coin name ongbtc exchange binance 2019-09-19 17:00:30+00:00 1.0 1335862163 5354 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:55+00:00 1.0 1335862163 5348 ready to join the global hodl team well you must be were sure that the global fomo will enter in our most waited binanceblastingsignal cheers only 4 hours 15 minutes left 2019-09-19 12:43:33+00:00 1.0 1335862163 5329 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:57:04+00:00 1.0 1335862163 4956 pump result around 30 gains on data which is much less than our previous 70 gains on this coin but still good enough it could be due to the fact that today is a sunday and alot of coins are going sideways perhaps we can confirm that pumping on a weekday is much better we can also see that pivx pumped at the exact same time which means some extra needed volume was taken from us which could have helped the coin go up around 20 more overall great pump thank you all for participating our next pump will be on a weekday as usual we will announce the date soon stay tuned 2019-09-08 19:14:53+00:00 1.0 1335862163 4953 5 minutes left the next message will be the coin name 2019-09-08 17:57:02+00:00 1.0 1335862163 4951 1 hours left until the pump on binance get ready to boom 2019-09-08 16:58:29+00:00 1.0 1335862163 4950 4 hours left until the pump on binance 2019-09-08 14:03:40+00:00 1.0 1335862163 4948 5 hours left until the pump on binance 2019-09-08 13:17:34+00:00 1.0 1335862163 4919 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-08 06:39:13+00:00 1.0 1335862163 4905 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-07 13:04:19+00:00 1.0 1335862163 4827 pump announcement hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time 2019-09-05 16:34:35+00:00 1.0 1335862163 4658 6 minutes left the next message will be the coin name 2019-08-29 17:53:50+00:00 1.0 1335862163 4642 3 hours and 33 minutes left until the pump on binance 2019-08-29 14:27:42+00:00 1.0 1335862163 4524 hello everyone we have decided to postpone the pump date for the following reasons alot of good coins were pumped yesterday and today and we believe it is wiser to pump coins from their bottom rather from their top with our current estimates we believe that pumping thursday is a better option the new pump date will be pump announcement the next official pump will be scheduled for date thursday august 29 time 1800 pm gmt exchange binance advantage free for all 2019-08-26 13:13:15+00:00 1.0 1335862163 4004 pump result 70 gain on data as you can see everyone that bought in the first minute made almost 50 profit which is amazing in this market as we promised this pump had 0 prepump and our team helped push the price higher for everyone the mega pump group is officially back congratulations to everyone who bought we will announce the next pump soon stay tuned 2019-08-15 20:28:50+00:00 1.0 1335862163 4002 5 minutes left the next message will be the coin name 2019-08-15 19:57:28+00:00 1.0 1335862163 4000 20 minutes left be ready on binance 2019-08-15 19:40:27+00:00 1.0 1335862163 3999 1 hour left our target for this pump is very high 2019-08-15 19:00:59+00:00 1.0 1335862163 3994 6 hours left until the pump on binance 2019-08-15 14:05:44+00:00 1.0 1335862163 3984 8 hours left until the pump on binance 2019-08-15 11:57:46+00:00 1.0 1335862163 3953 1 day left until the next pump on binance our pump time will now be at 2000 pm gmt 2019-08-15 02:48:53+00:00 1.0 1335862163 3939 hello everyone the next official pump will be scheduled for date thursday august 15 time 2000 pm gmt exchange binance advantage free for all this pump will have 0 prepump meaning that 100 of the profits will go towards all our members and it will ensure that the pump results are as optimal as possible and fair for everyone we will pick the coin right before the pump to make sure that we pick the best possible coin given the market conditions and order books at that point in time the pump will also be free for all and everyone will receive the signal at the exact same time ‼️ 2019-08-14 16:59:42+00:00 1.0 1335862163 231 alright guys wait is over our binance titanic signal is here for you the coin name is storj storj our targets is above 100 to 150 2019-02-04 16:30:20+00:00 1.0 1335862163 223 statistics of last binancetitanicsignal hello dear subscribers our last binancetitanicsignal reached 85 and was an amazing volume we attracted the global fomo as we said and over 1400 btc got attracted into bnt in an hour and it stayed above our entry point for 2 days this time it will be bigger and better we expect 100 to 150 in the next binancetitanicsignal so stay tuned our next binancetitanicsignal would be on feb 4th today at 430 pm gm 1630 cheers 2019-02-04 07:31:08+00:00 1.0 1259400586 4591 5 minutes left next post is the coin name and links to buy with btc usdt busd respectively buy small amount and wait for binance bots to fomo in 2021-12-24 12:55:03+00:00 1.0 1259400586 4590 less than 25 minutes left to hit the moon we suggest to buy small amount and hold for outsiders to fomo in and buy our bags get ready on binance with btc usdt busd 2021-12-24 12:35:45+00:00 1.0 1259400586 4543 christmas pump signal event date 24 december 2021 time 1pm gmt exchanges binancecom join your friends and get ready with btc on binancecom and pancakeswap 2021-12-16 14:18:57+00:00 1.0 1259400586 4542 christmas pump signal event date 24 december 2021 time 1pm gmt exchanges binancecom our whales around the world will inject money to a specific coin and our targets are around 100 200 join your friends and get ready with btc on binancecom and pancakeswap 2021-12-16 14:00:48+00:00 1.0 1259400586 4369 cyber monday pump signal event date 29 november 2021 time 1pm gmt exchanges binancecom guys because of the many requests we have received from you all we have scheduled the biggest cyber monday pump event our whales around the world will inject money to a specific coin and our targets are around 100 200 join your friends and get ready with btc on binancecom and pancakeswap 2021-11-18 11:10:11+00:00 1.0 1259400586 4277 guys we can only tell you whales moved support to 55k and they want to see a big pump 2021-10-19 18:30:27+00:00 1.0 1259400586 4104 our whales are buying the cake dip for the big pump next month 2021-09-20 16:41:46+00:00 1.0 1259400586 4007 doge coin to the moon pump it up coach 2021-09-05 08:59:02+00:00 1.0 1259400586 3669 hi guys get ready to buy bark we will pump it like ginu 1000x 2021-05-24 06:52:09+00:00 1.0 1259400586 3093 10 minutes left ❗️ next post is the coin name buy link recent news and general info for the reason we chose it 2021-03-23 16:50:37+00:00 1.0 1259400586 3088 we will share in 6 hours from now 5 pm gmt time the 10x nftgamefi project on bsc already news are coming out perfect timing to buy so make sure to have bake and some bnb in your metamask bake better for liquidity and bnb is must for fees 2021-03-23 11:04:55+00:00 1.0 1259400586 3002 uniswap pump signal nft gem coin name digicol token dgcl 0072 volume low volume coin ☄️this coin will keep on pumping for next 30 days expected 7 big news in coming weeks new exchange listing is confirmed available on uniswap swapoutputcurrency0x63b8b7d4a3efd0735c4bffbd95b332a55e4eb851 make sure you buy for next 30 days as 210x is easy here cryptocoinswaves uniswap pump signal event 2021-03-15 13:01:12+00:00 1.0 1259400586 3001 5 minutes left ❗️ next post is the coin name + link to buy on uniswap 2021-03-15 12:56:07+00:00 1.0 1259400586 2996 today we have pump event on uniswap ❗️ 3 hours left 2021-03-15 09:40:32+00:00 1.0 1259400586 2986 12 hours left for our pump signal event on uniswap❗️ 2021-03-15 01:00:11+00:00 1.0 1259400586 2983 uniswap pump signal event date 15 march 2021 time 1300 gmt+0 exchanges uniswap coin to be posted in this event we will pump trendy alt we expect that this project will go 5x in the next months since the new trend started in crypto nft our join channel link to add your friends 2021-03-14 20:29:57+00:00 1.0 1259400586 2556 kava pump signal 2021-02-04 13:58:06+00:00 1.0 1259400586 2520 ltc breakout buy and hold pump it up moonz it with us 2021-02-02 09:05:11+00:00 1.0 1259400586 2447 10 minutes left to get a closer look of the moon this one is for wbs sub reddit forum cryptocoinswaves ready for launch 2021-01-30 12:47:37+00:00 1.0 1259400586 2375 5 minutes left get ready on binance 2021-01-28 15:24:59+00:00 1.0 1259400586 2373 dip pump event doge market effect is huge we expect all low sats coins to go to the moon with a little help hello guys ❗️ our whales will inject total 50btc for a coin that is in its all time low ❗️ it will happen in 4 hours time frame each hour we will buy 125btc to hold and wait for wallstreet fomo injection last year we did it with ast it went up from 150 sats to 3000 sats 20x 2000 pump was made during alts season event time is today ❗️ in 15 minutes ❗️ rules use btc pair low cap buy what you can hold ⬛️cryptocoinswaves announcement ⬛️ 2021-01-28 15:15:24+00:00 1.0 1259400586 2228 10 minutes left ⏰ next post is the coin name and link for buying 2021-01-09 12:50:06+00:00 1.0 1259400586 2227 get ready for launch market is on fire today we expect at least 100 pump make sure to buy with limit buy orders only as we expect a big volume injection from outsiders as well cryptocoinswaves 2021-01-09 12:39:03+00:00 1.0 1259400586 2225 30 minutes left for the coin name⏰ get ready with free btc on binancecom 2021-01-09 12:30:10+00:00 1.0 1259400586 2223 1 hour and 30 minutes left for the main event ⏰ join us for the biggest money injection since 2020 market rush cryptocoinswaves 2021-01-09 11:30:06+00:00 1.0 1259400586 1767 another look of this fantastic pump peak reached after 10 minutes slowly and steady ready for second wave 2020-11-08 15:49:46+00:00 1.0 1259400586 1766 275btc market cap what a shit coin can pump it 100 easy 2020-11-08 15:36:26+00:00 1.0 1259400586 1761 ⏰ 5 minutes left❗️ next post is coin name we will gradually inject 120btc to that coin in the next 72 hours we recommend to buy slowly with us and not instantly slow trend safe profit 2020-11-08 14:55:09+00:00 1.0 1259400586 1754 ok guys whales will play alts today 6 hours left to the 120 btc injection 6 hours to the coin name activate our bot to get it 12 seconds earlier pumprankedbot 2020-11-08 08:55:32+00:00 1.0 1259400586 1741 hello guys whales busy again supporting btc will delay pump in 19 hours to november 8th 3pm gmt+0 as a bonus we will inject 120btc to that coin over 1 week after the pump time cryptocoinswaves whales team 2020-11-07 14:54:16+00:00 1.0 1259400586 1733 hope you all ready for tomorrow going to be huge pump 2020-11-06 19:20:39+00:00 1.0 1259400586 1687 6 hours left for the dip signal we are going to inject 20btc on the start event and another 20 btc in every 24hours for 3 days we will do the same as ava cryptocoinswaves dip pump signal 2020-11-03 09:54:31+00:00 1.0 1259400586 1674 4 hrs left for the dip pump signal 2020-11-02 11:50:17+00:00 1.0 1259400586 1246 next post will be the name of the cyber thursday coin get ready with your binance account stay online 2020-06-25 15:55:07+00:00 1.0 1259400586 1245 cyber thursday pump event 10 minutes left we are close to ready however the most important thing is that the members are ready huge liquidity and fomo in market today cryptocoinswaves 2020-06-25 15:50:07+00:00 1.0 1259400586 1244 cyber thursday pump event‼️‼️ 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-06-25 15:30:09+00:00 1.0 1259400586 1243 cyber thursday pump event ‼️‼️ we have some good picks for you based on ur choice all you have to do is buy and hold for whoooping 30 to 100 profit cryptocoinswaves 1 hour left 2020-06-25 15:00:08+00:00 1.0 1259400586 1238 announcement ‼️‼️ great news for all cyber thursday event this event will be ranked event get the coin name early by starting our bot pumprankedbot we are going to pump hard a special coin ❗️ date 25th june 2020 today time 4pm gmt+0 exchange binance now the btc halving effect is over and alts are starting to recover so it is high time for us to pump again short term target around 30 100 cryptocoinswaves 2020-06-25 08:36:04+00:00 1.0 1259400586 1222 those who wants to make some profits are excited be ready with your computer chair table go to quiet space ✌️ alts are thriving as btc is trading in safe range for alts its time to 3x ur portfolio 30 minutes left mountain alt | 4 pm gmt 2020-06-24 15:30:10+00:00 1.0 1259400586 1221 time is running faster cant go slow anyways we gotta hurry bcoz everyone is waiting for mountain alt via hit 188 ctxc hit 220 todays mountain alt250 exchange binance 1 hour left mountain alt | 4 pm gmt 2020-06-24 15:00:09+00:00 1.0 1259400586 1220 our big whales are more than ready are you alts are showing insane momentum against btc its a perfect opportunity for us all to make maximum benifits today with our whale team make sure to pin our channel on top turn on notification be ready at 4pm gmt today 2 hours left mountain alt | 4 pm gmt 2020-06-24 14:00:08+00:00 1.0 1259400586 1219 there will be a binance top gainer coming on the way even we cant wait to see that but we gotta wait via hit 188 ctxc hit 220 todays mountain alt250 3 hrs left mountain alt | 4 pm gmt 2020-06-24 13:00:08+00:00 1.0 1259400586 1215 the clock is running faster guys hope you ready for this the mountain alt is cominggg the last mountain alt had major fomo and reached binance top gainer what to expect todayyes 250 strong gainer exchange binance about 6 hrs left today | 4 pm gmt 2020-06-24 10:00:07+00:00 1.0 1259400586 1213 u know what time it is i think u have forgotten its the mountain alt signal day wake up alt are going to moon mountain signal will also go moon today this is coming today guys via hit 188 ctxc hit 220 todays mountain alt250 less than 8 hours left‼️‼️ mountain alt | 4 pm gmt 2020-06-24 08:27:46+00:00 1.0 1259400586 1210 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal and we are gonna see massive fomo into it stay tuned for this one the mountain alt 24th jun | 4 pm gmt 2020-06-23 18:21:48+00:00 1.0 1259400586 1206 hello guys we will schedule our mega 400 pump event this month if you want to get the coin name a bit earlier start our bot and invite your friends pumprankedbot 2020-06-21 15:12:47+00:00 1.0 1259400586 1205 hello guys towards our mega 400 pump event we have made a list of coins our whales can pump and we are giving you the option to choose the coin and see afterwards the charts with statistics about the coin that will be chosen to get ranked towards our pump event start pumprankedbot and invite your friends under my account cryptocoinswaves team 2020-06-21 15:12:02+00:00 1.0 1259400586 1175 time is running faster cant go slow anyways we gotta hurry bcoz everyone is waiting for mountain alt via hit 188 ctxc hit 220 todays mountain alt250 exchange binance only 1 hr remaining mountain alt | 4 pm gmt 2020-06-15 15:00:10+00:00 1.0 1259400586 1174 there will be a binance top gainer coming on the way even we cant wait to see that but we gotta wait via hit 188 ctxc hit 220 todays mountain alt250 only 3 hrs remaining mountain alt | 4 pm gmt 2020-06-15 13:00:11+00:00 1.0 1259400586 1168 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-14 06:25:05+00:00 1.0 1259400586 1136 qsp qsp qsp target 100+ qsp is our alt whales favorite coin now they pump it to the moon so buy hold qsp is going to perform crazy today as we did earlier buy fast this trendy coin 2020-06-13 16:00:18+00:00 1.0 1259400586 1135 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon huge global fomo warming up next post will be globalfomocall login binance and keep an eye here 2020-06-13 15:55:05+00:00 1.0 1259400586 1134 30 minutes left globalfomocall login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-06-13 15:31:18+00:00 1.0 1259400586 1133 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x globalfomocall 2020-06-13 15:00:04+00:00 1.0 1259400586 1131 4 hour left until the globalfomocall todays call will be a low cap call supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ 2020-06-13 12:00:10+00:00 1.0 1259400586 1126 great news for all the 20 whale team is back in action and has decided to organize our next globalfomocall backed by 20 alt whales which is sitting on fking bottom and waiting for a kick to moon with huge global fomo were expecting more than 100 gain in short term as 20 big alt whales are working with us and we will make sure to reach more than 2x spike as we did in our previous global fomo call alts are primed for huge spikes and we believe the fomo will be huge therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date june 13tomorrow exchange binance target 100+ time 4pm gmt globalfomocall 2020-06-12 12:38:27+00:00 1.0 1259400586 1115 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 250 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-06-10 15:59:23+00:00 1.0 1259400586 1114 just about 15 mins guys the mountain alt signal is on the way market is doing great today the fomo will be attractive the next post will be name of the mountain alt coin stay online folks 2020-06-10 15:45:13+00:00 1.0 1259400586 1113 the mountain alt or shall we call it the next binance top gainer is just about to arrive last mountainalt not enough right todays one can get to 250easily exchange binance about 1 hr remaining today | 4 pm gmt 2020-06-10 15:00:14+00:00 1.0 1259400586 1112 alts are making savage moves in this alt season so our mountain alt will do the same todays mountain alt is going to see 250 growth with massive fomo exchange binance 3 hrs remaining today | 4 pm gmt 2020-06-10 13:00:15+00:00 1.0 1259400586 1110 the clock is running faster guys hope you ready for this the mountain alt is cominggg the last mountain alt had major fomo and reached binance top gainer what to expect todayyes 250 strong gainer exchange binance about 6 hrs left today | 4 pm gmt 2020-06-10 10:00:13+00:00 1.0 1259400586 1109 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this todays mountain alt is gonna see 250 growth less than 12 hrs to see the mountain alt today | 4 pm gmt 2020-06-10 04:00:55+00:00 1.0 1259400586 1077 hey folks guess whats coming today yes guess it the mountain alt our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 ctxc 》220 《 xxx 》will it go for 200++ but its coming with a different strategy to kill bot traders today mountain will be shared within 4 5 pm gmt between this 1 hr anytime wake up mountain alt | 4 5 pm gmt 2020-06-08 04:00:12+00:00 1.0 1259400586 1073 good day traders you know what time it is time for yet another mountain alt signal but this time with bit different strategy what is it this time the mountain alt wont come at a fixed time it will come within 4 5 pm gmt you need to stay online and alert in this 1 hr time trading bots wont be able to catch this time our signal its coming mon jun 8th | 4 5 pm gmt mountain alt 2020-06-07 07:44:07+00:00 1.0 1259400586 1065 hello guys towards our mega 400 pump event we have made a list of coins our whales can pump and we are giving you the option to choose the coin and see afterwards the charts with statistics about the coin that will be chosen to get ranked towards our pump event start pumprankedbot and invite your friends under my account cryptocoinswaves team 2020-06-03 19:26:32+00:00 1.0 1259400586 1051 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:09+00:00 1.0 1259400586 1048 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:10+00:00 1.0 1259400586 1047 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:10+00:00 1.0 1259400586 1045 have you set the timer yet bcoz its the day for mountain alt signal ong went for 108 via went for 188 can todays mountain alt hit 250 12 hrs remaining today | 4 pm gmt 2020-06-03 04:00:11+00:00 1.0 1259400586 1040 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:11:04+00:00 1.0 1259400586 1013 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 15:59:46+00:00 1.0 1259400586 1011 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:08+00:00 1.0 1259400586 1010 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:10+00:00 1.0 1259400586 1009 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:00:11+00:00 1.0 1259400586 1007 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this less than 9 hours 30 minutes left to see the mountain alt today | 4 pm gmt 2020-05-29 06:30:07+00:00 1.0 1259400586 974 just about 15 mins guys the mountain alt signal market is doing great today the fomo will be attractive 400 pm gmt login binance and get ready 2020-05-26 15:45:04+00:00 1.0 1259400586 973 the clock is ticking guys hope you all are staying online final 45 minutes for the mountain alt signal exchange binance 400 pm gmt 2020-05-26 15:15:41+00:00 1.0 1259400586 972 the clock is ticking guys hope you all are staying online final 1 hr for the mountain alt signal 400 pm gmt 2020-05-26 15:00:06+00:00 1.0 1259400586 971 are you online today you better be bcoz only 3 hrs remaining for the mountain alt signal 400 pm gmt 2020-05-26 13:00:06+00:00 1.0 1259400586 967 stay alert its only about 6 hrs remaining the mountain alt is on its way exchange binance 400 pm gmt 2020-05-26 10:00:09+00:00 1.0 1259400586 965 hey guys today is the day for mountain alt signal keep yourself prepared for this major alt signal it will go beyond 70 to 80 in no time only 12 hrs left today 4 pm gmt 2020-05-26 04:00:07+00:00 1.0 1259400586 950 damn btc screwed us we knew btc will dump and unfortunately it happened with our pump event cannot cantrol btc today alt coins pumped one after another and we noticed that this is a great oppurtunity to make huge gains but btc dumped which also dumped alts gto is a solid coin we will push it when btc gets stable we are holding huge bags of gto and u guys also hold for bigger gains dont sell cheap targets posted will hit eventually 2020-05-21 16:23:20+00:00 1.0 1259400586 943 next post is coin picture we are going to pump 2020-05-21 15:55:07+00:00 1.0 1259400586 941 cyber thursday pump event 10 minutes left we are close to ready however the most important thing is that the members are ready huge liquidity and fomo in market today cryptocoinswaves 2020-05-21 15:50:08+00:00 1.0 1259400586 940 cyber thursday pump event‼️‼️ 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-05-21 15:30:07+00:00 1.0 1259400586 939 cyber thursday pump event ‼️‼️ we have some good picks for you bottomed coins with beautiful potential all you have to do is buy and hold for whoooping 70 to 100 profit cryptocoinswaves 1 hour left 2020-05-21 15:00:08+00:00 1.0 1259400586 938 guys btc correcting and btc dominance falling which means alts season started and u can see alts pumping like a popcorn global fomo warming up for cyber thursday pump event 15 hours left 2020-05-21 14:30:08+00:00 1.0 1259400586 933 announcement ‼️‼️ great news for all cyber thursday event date 21st may 2020 today time 4pm gmt+0 exchange binance guys because of the many requests we have received from you all we have scheduled an cyber thursday pump event today the alts market has been crushed lately due to the btc pump now the btc halving effect is over and alts are starting to recover so it is high time for us to pump again target around 70 100 cryptocoinswaves 2020-05-21 05:20:06+00:00 1.0 1259400586 913 7296 users will join the next pump 21 may start getting ranked towards the pump this time our whales will help making 100 to get the coin name early for free pumprankedbot start it and invite your friends with your personal referral link 2030 profit 2020-05-13 09:32:36+00:00 1.0 1259400586 894 10 minutes left for the dip pump event‼️ cryptocoinswaves 2020-05-09 15:50:06+00:00 1.0 1259400586 892 those who wants to make some profits are excited be ready your computerphone chair table go to quiet space ✌️ only 60 minutes are left for todays dip pump coin 2020-05-09 15:00:09+00:00 1.0 1259400586 890 ⬛️ announcement ⬛️ dip pump event is today market is hot and we decided to pump one of the dippest coins in binance today 4 pm gmt exchange binance cryptocoinswaves 2020-05-09 14:32:48+00:00 1.0 1259400586 882 ok guys we already have some coins on our radar we decided that our next pump will be ranked via our bot pumprankedbot to get the coin name earlier start and run the bot and invite your friends with your personal link under my account 2020-05-05 16:56:04+00:00 1.0 1259400586 874 so many bottomed coins to pump next pump coin will be soon after we made huge profit on data pump 100 free for all guys wait for btc to get stable and lets make money 2020-05-04 16:10:03+00:00 1.0 1259400586 867 get ranked towards our next pump event 100 all time low coin 2020-04-30 18:50:33+00:00 1.0 1259400586 837 2 minutes left ❗️ next post is the coin picture we are going to repump this coin had good news and now its time to recover so buy and hold do not dump it because market is on fire and will buy on top 2020-04-25 13:58:06+00:00 1.0 1259400586 833 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays repump coin 2020-04-25 13:00:09+00:00 1.0 1259400586 830 ⬛️ announcement ⬛️ repump event is today market is hot and we decided to pump one of the last successful pumps today 2 pm gmt exchange binance we might do double repump event if it will go good cryptocoinswaves 2020-04-25 08:58:32+00:00 1.0 1259400586 814 coin name bntbtc expected gain 5080 buy and hold for huge profit 2020-04-24 15:59:08+00:00 1.0 1259400586 813 ‼️final 5 minutes left log in your binance account and be ready with spare btc next post will be coin name with link staytuned 2020-04-24 15:55:03+00:00 1.0 1259400586 810 there are times when opportunity knocks the door and masterminds never let it go as king btc has put on the dancing shoes and the noobs round the world is selling alts at low this is the time to surprise the world with historic signal ‼only 12 hours to go for the biggest historic signal‼ ❗️exchange binance ❗️date 24 april ❗time 0400 pm gmt pump will be free for all staytuned 2020-04-24 04:01:19+00:00 1.0 1259400586 809 ‼️we are going to organise historic signal event tomorrow at 4 pm gmt‼️ ❗️❗️exchange binance ❗️❗️date 24 april ❗❗time 0400 pm gmt pump will be free for all more than 300k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 5080 so be ready with spare btc ❗️❗️only 24 hours left for historic signal event ❗️❗️ pinourchannelontop beready4blast ✈✈✈✈ staytuned 2020-04-23 15:59:41+00:00 1.0 1259400586 772 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit 2020-04-15 15:29:58+00:00 1.0 1259400586 771 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 60 minutes are left for todays 2x breakout coin the coin name will come as an image and text 2020-04-15 15:03:47+00:00 1.0 1259400586 769 4 hour left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected spike 6080 note coin will be posted in picture to avoid bots 2020-04-15 12:00:57+00:00 1.0 1259400586 766 our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 6 hours left until strong ta call‼️ 2020-04-15 10:01:30+00:00 1.0 1259400586 764 great news for all everyone our whales are more than ready to push another strong coin on binance to the moon we will share the coin name today around 4pm gmt so everyone can make maximum benifits in short term the market is more than ready for upcoming strong ta call this free for all call will be big like edo grs we are expecting higher spikes as usual we expect a big second wave as the upcoming call will be supported by big whales global fomo going to join this event we will make sure to reach as high as possible make sure you have your binance account ready and loaded with btc for today‼️ date april 15 wednesday time around 4 pm gmt exchange binance 2020-04-15 07:08:29+00:00 1.0 1259400586 761 this is our gold coin whales will pump it hard buy and hold guys open target above 80 2020-04-14 16:19:29+00:00 1.0 1259400586 758 5 minutes left next post is the coin name in a picture 2020-04-14 15:54:22+00:00 1.0 1259400586 755 this coin has the most potential pump recovery over binance with almost 90 drop to its ico price its time to buy and hold to see the moon 2020-04-14 15:48:24+00:00 1.0 1259400586 752 gold pumping btc pumping alts pumping our event is gold bottom our whales are ready to pump gold coin are u ready u guys better be bcoz nobody should miss humangous profits less than 1 hour left 2020-04-14 15:06:45+00:00 1.0 1259400586 748 the market is more than ready for the gold bottom event this event will be big we expect big spikes and we expect a big strong second wave this time this is the event that you are going to need all the practice you did this will be the massive event with a lot of volume be ready 5 hours left 2020-04-14 11:00:10+00:00 1.0 1259400586 745 what is gold bottom event as u all know that gold has reached new high so our whales choose the coin which is gold but bottomed they will pump the coin to the new high 7 hours left 2020-04-14 09:00:10+00:00 1.0 1259400586 739 next time we share picture for coin name because bots are pumping the coins too fast we noticed 2020-04-13 12:39:18+00:00 1.0 1259400586 736 5 minutes left next post is the coin for todays event 2020-04-13 11:53:55+00:00 1.0 1259400586 735 10 minutes left we are close to ready however the most important thing is that the members are ready our target is to grab the top gainer spot in binance and stay there for 24 hours atleast huge liquidity and fomo in market today 2020-04-13 11:50:07+00:00 1.0 1259400586 730 our experts chose bottom based strong tafa coin we will pump it to the moon global fomo warming up 2 hours left 2020-04-13 10:00:10+00:00 1.0 1259400586 728 alright guys btc dumping and alts are stable raising we will have a cyber monday pump event today ‼️‼️ time 1200 pm binance exchange freeforall pump event ❗️ we have some good picks for you bottomed coins with beautiful potential all you have to do is buy and hold for whoooping 3070 profit cryptocoinswaves 2020-04-13 07:50:47+00:00 1.0 1259400586 724 hello guys towards our mega 400 pump event we have made a list of coins our whales can pump and we are giving you the option to choose the coin and see afterwards the charts with statistics about the coin that will be chosen to get ranked towards our pump event start pumprankedbot and invite your friends under my account cryptocoinswaves team 2020-04-11 11:46:24+00:00 1.0 1259400586 712 5 minutes left ‼️ next post is coin name no picture 2020-04-10 15:55:08+00:00 1.0 1259400586 711 10 minutes left we are close to ready however the most important thing is that the members are ready huge liquidity and fomo in market today 2020-04-10 15:50:09+00:00 1.0 1259400586 709 important pump signal is expected around 80 to 100 just 30min left 400pm1600gmt fund your binance accounts stay tuned for more updates 2020-04-10 15:30:10+00:00 1.0 1259400586 706 our experts chose bottom based strong tafa coin we will pump it to the moon global fomo warming up 2 hours left 2020-04-10 14:00:02+00:00 1.0 1259400586 699 pump alert ‼️ date 10th april today time 4 pm gmt exchange binance 9 hours left 2020-04-10 07:00:06+00:00 1.0 1259400586 689 our sngls pump coin is still on uptrend that was a great coin pick 2020-04-05 19:56:12+00:00 1.0 1259400586 676 announcement around 7 hours 50 minutes left for the most awaited rock bottom whale signal because of high demand we scheduled it on 4th april at 400pm gmt target around 70 100 stay tuned for more updates 2020-04-04 08:11:01+00:00 1.0 1259400586 650 only 5 minutes to go❗️ our experts choosed bottom based strong tafa coin our whales will pump it to the moon global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-04-02 15:55:06+00:00 1.0 1259400586 649 less than 30 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit expected spike 70100 2020-04-02 15:33:54+00:00 1.0 1259400586 645 4 hour left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected target 2x note coin will be posted in picture to avoid bots 2020-04-02 11:59:26+00:00 1.0 1259400586 643 great news for all everyone as promised earlier our whales are more than ready to push another strong coin on binance up to 2x we will share the coin name today around 4pm gmt so everyone can make maximum benifits in short term the market is more than ready for upcoming strong ta call this free for all call will be big like edo we are expecting 2x spikes we actually expect a big second wave again as the upcoming call will be supported by big whales around 500k people are going to join this event we will make sure to reach as high as possible and will make sure to achieve target 1 within few minutes as we did in our previous calls make sure you have your binance account ready and loaded with btc for today‼️ date april 2 thursday time around 4 pm gmt exchange binance 2020-04-02 07:24:39+00:00 1.0 1259400586 640 5 minutes left ‼️ next post is the coin name 2020-04-01 11:53:04+00:00 1.0 1259400586 632 hello guys towards our mega 400 pump event we have made a list of coins our whales can pump and we are giving you the option to choose the coin and see afterwards the charts with statistics about the coin that will be chosen to get ranked towards our pump event start pumprankedbot and invite your friends under my account cryptocoinswaves team 2020-03-29 14:05:35+00:00 1.0 1259400586 625 next post is coin name in a picture 2020-03-28 11:55:26+00:00 1.0 1259400586 618 guys we will make double pump event today ‼️‼️ pump time 1200 pm and pump time 1500 pm 3 hours left for the first round ‼️ get ranked with our bot pumprankedbot 2020-03-28 09:01:45+00:00 1.0 1259400586 608 rlc pump analysis for about 10 minutes the pump kept going up our last pump of edo went on over 30 minutes amazing profits people reported average profit of 30 second wave in the next 48hours for rlc and oax 2020-03-27 17:44:05+00:00 1.0 1259400586 600 rlcbtc new update strong support level 44004600 satoshi so buy and hold till 80 target dont sell guys if you want to huge profit so buy and hold strategy is very good for now remember target 80 so buy and hold 2020-03-27 16:02:22+00:00 1.0 1259400586 595 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:57:32+00:00 1.0 1259400586 579 only 1 minutes to go❗️ our experts choosed bottom based strong tafa coin we will pump it to the moon global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-03-26 15:58:40+00:00 1.0 1259400586 576 alright guys i hope you are ready for another 50 easy profit this coin will be great 1 hour and 30 minutes left 2020-03-26 14:24:03+00:00 1.0 1259400586 574 also we would like to announce another freeforall pump event date march 26 thursday time 4 pm gmt exchange binance 2020-03-25 19:59:02+00:00 1.0 1259400586 566 4 minutes left next post is our coin 2020-03-24 15:54:28+00:00 1.0 1259400586 564 btc dump didnt affect much the market pump is on in 20 minutes ‼️‼️ 2020-03-24 15:36:42+00:00 1.0 1259400586 562 guys flash pump alert many people want another free for all pump so lets do it we got few nominates from the list above pump in 3 hours and 30 minutes from now ‼️ 2020-03-24 12:22:25+00:00 1.0 1259400586 561 hello guys towards our mega 400 pump event we have made a list of coins our whales can pump and we are giving you the option to choose the coin and see afterwards the charts with statistics about the coin that will be chosen 2020-03-23 17:45:53+00:00 1.0 1259400586 554 amazing pump in this market price pumped from 81 to 123 approx 50 and still trading at 110 we dont do pnd now whales have started the planning for 400 mega pump event‼️ so get ur rank higher by inviting ur friends to pumprankedbot 2020-03-23 16:33:24+00:00 1.0 1259400586 550 next post is coin name 2020-03-23 15:58:53+00:00 1.0 1259400586 549 7 minutes left for coin name it will be posted here only ‼️ 2020-03-23 15:53:34+00:00 1.0 1259400586 548 1 hour and 30 minutes for the freeforall pump event wont be posted in bot and vip channel only here on cryptocoinswaves 2020-03-23 14:29:03+00:00 1.0 1259400586 547 keep voting for the mega pump event coin the date of the mega pump will be set soon our whales waiting for btc first to get stable you saw btc dumped pumped and dumped we need btc to stay in place for a while so market can thrive 2020-03-23 14:21:40+00:00 1.0 1259400586 546 less than 4 hours left for our freeforall pump event ‼️ 2020-03-23 12:07:44+00:00 1.0 1259400586 545 start getting ranked towards the mega pump event pumprankedbot 2020-03-23 10:21:51+00:00 1.0 1259400586 544 the date of the mega pump will be set soon our whales waiting for btc first to get stable 2020-03-23 10:19:10+00:00 1.0 1259400586 542 24 hours left for our free for all pump ‼️ coin name will be posted here on cryptocoinswaves 2020-03-22 16:00:06+00:00 1.0 1259400586 540 hello guys towards our mega 400 pump event we have made a list of coins our whales can pump and we are giving you the option to choose the coin and see afterwards the charts with statistics about the coin that will be chosen 2020-03-22 12:56:53+00:00 1.0 1259400586 539 guys tnb is big coin also drep many people ask for us to pump them but its impossible with those sell walls drep has good news soon make your own research and consider holding it if you are in it seems good to our team tnb stands on alltimelow most likely some whale will pump it x5 just a matter of time again dyor but most importantly make sure to have free btc when we make the mega 400 pump event cryptocoinswaves 2020-03-21 20:20:40+00:00 1.0 1259400586 538 hello guys we have scheduled our next free pump no rankings this time date march 23 monday time 4 pm gmt exchange binance target up to 100 2020-03-21 20:06:03+00:00 1.0 1259400586 535 this is the epic pump our whales did on evx there were big news at that time went to the moon this is how you pick a coin guys check the sell walls first 2020-03-21 16:57:40+00:00 1.0 1259400586 534 guys sorry but you dont know to choose pump coin maybe we will give you to choose when our whales will help us in the mega 400 pump event ‼️ 2020-03-21 16:45:42+00:00 1.0 1259400586 531 coin name is evx the multi pump coin check history 2020-03-21 16:39:54+00:00 1.0 1259400586 530 we found a new coin guys 15btc to 50 lets hope market wont pump it 4 minutes left ‼️ 2020-03-21 16:36:44+00:00 1.0 1259400586 526 ok we do round 2 flush pump event better coin team scan now pump in 25minutes 2020-03-21 16:05:43+00:00 1.0 1259400586 523 10 minutes left next post is the coin you guys chose ‼️ 2020-03-21 15:50:51+00:00 1.0 1259400586 519 still those 4 are in the lead very close fight we guess you all stuck in those coins try to exit them on the next bull run and keep some btc free for our mega pump event ‼️ 2020-03-21 14:39:36+00:00 1.0 1259400586 518 2 hours left accepting more votes for the coin until 10 minutes before the pump time the coin you chose will be posted here 2020-03-21 14:15:38+00:00 1.0 1259400586 517 5 hours left for our main pump event the coin that you guys chose is almost chosen waiting for more votes to wavesadmin ‼️ whales trying to support 6k they cant help us now but maybe after pump and they promise they will be here for the mega pump event once we schedule it 2020-03-21 10:49:04+00:00 1.0 1259400586 516 pump date 21march1600gmt+0 2020-03-20 14:46:48+00:00 1.0 1259400586 511 pump date set 2020-03-19 19:48:36+00:00 1.0 1259400586 504 guys we got many many messages keep them coming we count them all ‼️ some coins we cant pump are hot trx xtz bnb matic dont give us big coins with big sell walls keep voting through wavesadmin one more thing we saw you guys are investing in many coins if you all would invest your money in 1 coin we could make much more than 100 pump event ‼️ consider selling your alts when they bounce up and follow our mega pump event when we will do it with our whales you will double up your money for sure currently leading coins are tnb ast bcpt drep vib vibe adx kmd and again poa and dnt‍♂ dont try to buy them all lol market is still not stable 2020-03-18 20:47:30+00:00 1.0 1259400586 492 contact wavesadmin to join good news for the next pump our whales will join us pumping as they say while btc is below 6k its the time to invest in alt coins because there is better risk reward ratio there now so we will schedule our next big pump event soon make sure to get ranked via our bot pumprankedbot to get the coin name few seconds earlier cryptocoinswaves team 2020-03-14 11:06:40+00:00 1.0 1259400586 483 next post is the coin name follow cryptocoinswaves to get it 2020-03-12 18:57:26+00:00 1.0 1259400586 454 guys our pump today 1900 pm gmt + 0 less than 10 hours left 2020-03-04 09:10:12+00:00 1.0 1259400586 451 pump date set 4march1900gmt+0 2020-03-02 10:33:41+00:00 1.0 1259400586 449 successful pump signal guys buy zone was eaten very fast went up and then back down to buy zone 2 waves only so far going good and trading around 80 sats with 20 up lets see the moon we will schedule a whales event soon with higher rate of pump so stay tuned 2020-02-27 17:33:56+00:00 1.0 1259400586 445 30 minutes left for our coin guys 2020-02-27 15:31:11+00:00 1.0 1259400586 443 pump signal event date 27 february today time 4 pm gmt exchange binancecom in this event we will pump bottom alt coin that still didnt make significant recovery as u guys know that alts market has been crushed badly lately due to btc dumps which has resulted in huge depreciation to their price and market cap so we are in collaboration with particular token team organising a event in which they will provide support with huge money to make the pump humangous which will eventually increase their token price and market cap we will provide safe buy zone area this time as we are working with cooperation with team whales following are our last successful pumps on our own dlt 70 wpr 80 we recommend to hold our coin for the next 14 weeks minimum for heavy results ❗️ our join channel link to add your friends our bot to get ranked and get coin 12 seconds earlier pumprankedbot 2020-02-27 12:40:42+00:00 1.0 1259400586 434 hello guys sorry to disappoint you all but market is really bad the pump wont take place tomorrow and we will schedule a new pump signal event once the market will get active once we see binancecom general alts volume going up we can schedule a pump with less than 24 hours notice ❗️ so make sure to pin channel to top and keep notifications on we do not spam a lot anyway whales tip keep an eye on tomo 2020-02-24 17:14:03+00:00 1.0 1259400586 429 dont fall for scammers offering you coin before pump because nobody has it ‼️ 2020-02-21 10:16:41+00:00 1.0 1259400586 422 over 4500 users joined the next pump via our bot pumprankedbot and started getting ranked up towards the next pump signal event get ranked up and get the next pump signal earlier than the free channel ‼️ what a wonderful dip the last two days new opportunities for 100200 pump we wont stop until we do 400 pump in this year of the bulls 2020 so start inviting friends and make more btc towards the halving on may 2020 rumors say we might see 20k again pumprankedbot pump signal 2020-02-16 19:27:35+00:00 1.0 1259400586 419 pump date will be set soon make sure to get ranked up before our next event which will be fully supported by whales and this time we will do 100 by hook or by crook cryptocoinswaves team 2020-02-15 17:18:03+00:00 1.0 1259400586 414 hello all our next successful pump will be held soon we recently fixed the bot we got overloaded and it crushed press this link to start again make sure to get ranked up before our next event which will be fully supported by whales and this time we will do 100 by hook or by crook cryptocoinswaves team 2020-02-14 08:47:43+00:00 1.0 1259400586 409 hi guys we have received many comments about opening vip channel currently you can get ranked via our bot pumprankedbot and receive the coin name 12 seconds earlier if you are looking for 3 seconds advance send wavesadmin a message dont fall for scammers offering you coin before pump because nobody has it ‼️ we garauntee zero prepump and no coin leaks no other vip options and no bullshit no pain no gain guys remember that we had 2 successful pumps so far and we will repump soon vib rdn and oax because we care about our members wont be the next pump because we leaked waves team 2020-02-12 07:33:18+00:00 1.0 1259400586 392 pumpsignal event binancecom ⏰ 1 hour left ‼️ get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ also make sure to share the coin news to everyone on telegram after the pump you can get the news from cryptonews dont forget to read the rules 2020-02-10 19:00:13+00:00 1.0 1259400586 391 pumpsignal event 10 february 2000 pm gmt+0 ⏰ about 2 hours left ‼️ get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 17:56:06+00:00 1.0 1259400586 390 pumpsignal event 10 february 2000 pm gmt+0 ⏰ about 3 hours left ‼️ pump rules 1 buy as fast as possible 2 hold 2472 hours for targets 3 targets are 100200 from current price before pump 4 press buy market for best results 5 do not add sell walls 6 add buy orders below price to push the price up with market and other bots 7 do not dump on targets just sell slowly on outsiders get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 16:58:22+00:00 1.0 1259400586 389 pumpsignal event 10 february 2000 pm gmt+0 ⏰ about 4 hours left ‼️ market is hot and we are going to the moon the pump will last between 2472 hours and we recommend to hold for 100200 profit because as mentioned market is on fire exchange binancecom get ready with free btc we recommend to buy fast and hold for maximum gains get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 15:57:09+00:00 1.0 1259400586 387 guys set your alarms 6 hours left ‼️ market is hot and we are going to the moon the pump will last between 2472 hours and we recommend to hold for 100200 profit because again market is on fire nowadays get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 14:00:09+00:00 1.0 1259400586 385 guys set your alarms less than 10 hours left ‼️ market is hot and we are going to the moon the pump will last between 2472 hours and we recommend to hold because again market is hot get ranked via our bot pumprankedbot to get the coin few seconds earlier 2020-02-10 10:26:20+00:00 1.0 1259400586 383 pump date set 10 feb 2020 2000 gmt +0 pumprankedbot 2020-02-10 08:32:58+00:00 1.0 1259400586 381 hi guys we really wanted to pump today but all coins are already prepumped and our whales busy trading btc we wont pump without them as your guys volume is low we wanted tnb as it was perfect coin for breakout but sadly it already pumped and signalled by other groups for example cryptocoinscoach 2020-02-07 08:43:32+00:00 1.0 1259400586 373 alts market is on fire make sure to get ranked towards our next pump event pumprankedbot 2020-02-04 16:29:28+00:00 1.0 1259400586 365 our whales supporting rdn guys we will never let a coin dump after we pump it waves team to the moon also they said next time we should do a dump event when btc is pumping so make sure to know how to short on binance margin and get ready for double profit event waves team 2020-02-02 15:26:23+00:00 1.0 1259400586 360 what an amazing pump 5 minutes it went up non stop now consolidates at new level of 1500+ might see another leg up as our whales from cryptocoinswaves are helping while btc is dumping rebuy zone to those who asked 14001500 zone targets 1700 1880 2000 2200 make sure to be first and get yourself a quick 30 profit next time by joining your friends 2020-02-01 13:50:10+00:00 1.0 1259400586 358 what a great pump by our bot cryptocoinswaves whales are helping now to pump it higher in the next 24 hours from 1350 to 1700 first binance gainer can we see 50 coming to get the coin name earlier next time make sure to start pumprankedbot and invite friends 2020-02-01 13:22:13+00:00 1.0 1259400586 356 4 minutes left for our mega pump event ‼️ next post is coin name in a picture to avoid bots also it will show current price before pump was started 2020-02-01 12:56:18+00:00 1.0 1259400586 354 pump bot less than 30 minutes left for our mega pump event ‼️ to get ranked and enjoy coin name few seconds earlier start our bot pumprankedbot dont miss 50100 profit chance guys ‼️ 2020-02-01 12:30:33+00:00 1.0 1259400586 351 flash pump alert 1 hour left ‼️ its not too late to get ranked via our bot pumprankedbot make sure to buy fast as possible we expect big pump event 2020-02-01 12:00:57+00:00 1.0 1259400586 350 flash pump alert less than 2 hours left ‼️ pump event will take place via pumprankedbot binance pump bot 1st february 1300 pm gmt + 0 on binance exchange make sure to be ready with free btc we expect to see 50100 pump 2020-02-01 11:01:37+00:00 1.0 1259400586 347 less than 4 hours left ‼️ make sure to get ready its not too late to invite 10 friends to join us and get ranked as vip via binance pump bot pumprankedbot 2020-02-01 09:18:12+00:00 1.0 1259400586 338 ok guys seems like we will have a pump event today 1900 pm gmt if you didnt got ranked yet do it with binance pumps bot for telegram pumprankedbot 2020-01-30 10:07:18+00:00 1.0 1259400586 329 just a clarification our whales still hold 20btc in dlt it will pump again if anyone rebought you dont have to sell 2020-01-23 14:40:49+00:00 1.0 1259400586 327 we want to share with you that our coin yesterday was oax to help those who got stuck last pump we will repump coins that didnt reach 50 for example our first pump dlt which hit 60 or more and stayed up for 48 hours wont be pumped again any time soon waves team 2020-01-22 19:53:18+00:00 1.0 1259400586 326 hi guys sorry we delayed the pump somehow 20 minutes before the main event btc started dumping and pumping right afterwards this usually cause the alts to crush and our whales suggested we will delay the pump event also they had to focus btc trading and couldnt help us pumping that time our whales told us its a good sign for alts now as btc pump and dump but every time goes back to 8600 zone this signals stability for the alternative coins we will act to schedule a pump really soon we will post a poll about the best time you prefer on the day to pump also wavesadmin wants to clear 1 thing there is no paid channel that gives the coin name before pump those are scammers pretending to be waves team the only way to get the coin name 12 seconds ahead of free channel is by referring friends via our pump bot pumprankedbot start inviting and get ranked waves whales team 2020-01-22 10:23:22+00:00 1.0 1259400586 322 less than 30 minutes left for our mega pump event ‼️ 2020-01-21 19:30:46+00:00 1.0 1259400586 319 less than 2 hours left for our mega pump event ‼️ 2020-01-21 18:07:31+00:00 1.0 1259400586 317 less than 4 hours left for our mega pump event ‼️ via cryptocoinswaves 2020-01-21 16:10:12+00:00 1.0 1259400586 300 great time for our pump event get ranked via our pumprankedbot our whales shorted successfully and will rebuy btc around 8k zone enough time until our pump event ‼️ 2020-01-19 11:45:33+00:00 1.0 1259400586 292 wow btc pumping hard our whales said we will have to delay the pump so they can join us we wont pump without them as our general volume is still very low together pump date changed to the 22 jan guys make sure to invite friends we are going to the moon next pump event cryptocoinswaves 2020-01-17 07:54:55+00:00 1.0 1259400586 289 next pump date is set make sure to invite friends to get ranked up ‼️ 2020-01-14 19:57:34+00:00 1.0 1259400586 288 not bad for 15minutes alert next time we need more people and we will ask our whales to pump the coin higher your volume is low guys to be honest stay tuned btc will slowly stop pumping and we will pump big time 2020-01-14 19:12:58+00:00 1.0 1259400586 284 5 minutes left next post is coin name with chart and price index 2020-01-14 18:55:26+00:00 1.0 1259400586 283 quick pump alert ‼️ 15 minutes for flash pump dip buy coin guaranteed market is on fire 2020-01-14 18:47:07+00:00 1.0 1259400586 281 guys we are happy to announce that our whales will join us next pump as they are starting to short btc from 87779300 means they will have time for playing alts and you guys can expect a serious alts party next pump our target is 100 start joining your friends pumprankedbot 2020-01-14 17:31:35+00:00 1.0 1259400586 274 5 minutes left for our mega pump event ‼️ next post is coin name in a picture to avoid bots 2020-01-12 19:56:17+00:00 1.0 1259400586 273 15 minutes left for our first mega pump event ‼️ 2020-01-12 19:45:03+00:00 1.0 1259400586 271 1 hour left for our mega pump event ‼️ 2020-01-12 19:00:27+00:00 1.0 1259400586 269 less than 2 hours left for our mega pump event ‼️ 2020-01-12 18:06:05+00:00 1.0 1259400586 268 less than 4 hours left for our mega pump event ‼️ 2020-01-12 16:05:01+00:00 1.0 1259400586 263 pump date set 12 jan 2020 2000 gmt +0 2020-01-09 11:04:04+00:00 1.0 1259400586 262 great conditions for our next pump date 12 jan until then we know market will get stable and we will catch a dip coin and make whooping 50 100 profit again make sure to get ranked via our bot bugs fixed pumprankedbot 2020-01-08 18:33:57+00:00 1.0 1259400586 255 amazing feedbacks from members that made 40 in 10 minutes coin is still pumping and dumping every few minutes ride those waves general volume stands on 450 btc ‼️‼️‼️ we already look forward our next pump the next one will be ranked you will get invitation link to the ranked groups via our bot pumprankedbot so make sure to start the bot and refer friends to get ranked you will get advantage next time and of course we are looking for more profits our target is 100 pump next time cryptocoinswaves pump whales 2020-01-04 21:56:14+00:00 1.0 1259400586 252 amazing pump is not stopping we can see 100 in the next 24 hours 2020-01-04 20:09:59+00:00 1.0 1259400586 250 5 minutes left for our first mega pump event ‼️ next post is coin name in a picture to avoid bots also it will show current price before pump was started 2020-01-04 19:55:04+00:00 1.0 1259400586 249 20 minutes left for our first mega pump event ‼️ 2020-01-04 19:40:04+00:00 1.0 1259400586 247 2 hours left for our first mega pump event ‼️ 2020-01-04 18:00:07+00:00 1.0 1259400586 246 less than 4 hours left for our first mega pump event ‼️ 2020-01-04 16:17:20+00:00 1.0 1259400586 244 ◽️ announcement ◽️ pumpsignal event cryptocoinswaves with cooperation with our whales our first pump signal will be freeforall and the rankings system of the pumprankedbot wont be available this means everyone will get the coin name at the same time date 4th january time 2000 gmt+0 time exchange binance rules buy as fast as you can we recommend to use 75 of the available amount and not 100 make sure to hodl for maximum profit if you missed the first pump join the other waves any round minute there will be one and eventually follow the elliott wave pattern that are whales will follow ◽️ announcement ◽️ 2020-01-04 10:01:40+00:00 1.0 1259400586 232 hello guys soon we will start pumping with our whales we will give the coin few seconds early to those who will help us join more members via our pumprankedbot all you need to do is invite few friends to get a vip membership and get coin name 1 second earlier than free channel if you invite more than 50 you will get premium badge and get the coin name 2 seconds earlier every second counts as we are talking about 100 pump in few seconds our whales are very excited to start and once btc will stay stable we will choose randomly low cap coins that dumped in the last months and we will pump them to the moon our goal is 400 pump start inviting pumprankedbot 2019-12-23 12:58:00+00:00 1.0 1259400586 215 announcement new binance listing ieo event 8 hours left ‼️ to celebrate troy listing on binance we will schedule troy pump tomorrow at 2am utc we believe the fomo will be huge therefore we recommend to buy as fast as possible and hold for 50100 from the buy price some data total token supply 10 billions troy total tokens allocated to binance launchpad 800 millions troy public token sale price 1 troy 0005 usd 00032875 bnb token allocated per ticket 40000 troy date 5th dec 2019 time 200 am utc exchange binance pair name troybtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only we made some research and found that it was sold on the binance launchpad at 69 satoshis approx 000000069 btc this price is in approximation as it was sold in bnb session only starting price will be atleast 15x 2x higher than price at which it was available on binance launchpad but due to high demand we still think its going to pump hard especially when we are talking about a coin that is listed through launchpad sale and after successful listing of btt 1000 from sale price fet 600 celr 600 matic 1100 one 1000erd 1500win 700perl 110 band80 and kava 260 entries 1 140 170 15 highly risky entry 2 120 140 35 little risky entry 3 102 120 50 safe risky one thing noteworthy is that it has been distributed through a lottery system just like matic one erd kava and others but our analysts have made research that troy ticket were allocated to binance whales since 2 single tail digit numbers were selected therefore chances of mass dumping is a little more than you guys compare it with kava we suggest you guys to follow our buy zones only and get amazing short term profits like we did woth kava 100 in 20 mins from our entry so please read all info play safe cryptocoincoach professionaltradingguide 2019-12-04 18:12:12+00:00 1.0 1445772267 15751 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact dustinpump 2022-01-22 08:28:34+00:00 1.0 1445772267 15613 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2022-01-18 17:22:11+00:00 1.0 1445772267 15408 pump result glmr start price 20267 weve reached 32498 all targets achieved in just 30 hour ✅✅✅✅ huge quick profit 60 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2022-01-13 14:53:48+00:00 1.0 1445772267 15356 iris result hit 267 2nd target achieved in just 25 hour✅✅ huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2022-01-12 05:47:15+00:00 1.0 1445772267 15315 santos hit 10292 finally all targets achieved in just 2 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2022-01-11 10:29:42+00:00 1.0 1445772267 15313 pump result santos start price 7159 weve reached 9500 3rd target achieved in just 51 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2022-01-11 09:03:43+00:00 1.0 1445772267 15245 pump result phb start price 882 weve reached 1155 3rd target achieved in just 30 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2022-01-09 08:59:36+00:00 1.0 1445772267 15238 pump result powr start price 1160 weve reached 1797 all targets achieved in just 20 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2022-01-09 06:54:01+00:00 1.0 1445772267 15167 pump result iris start price 206 weve reached 348 all targets achieved in just 55 hour ✅✅✅✅ huge quick profit 68 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2022-01-07 17:39:13+00:00 1.0 1445772267 15082 alcx result hit 9616 2nd target achieved in just 8 hour✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2022-01-06 06:42:44+00:00 1.0 1445772267 14979 pump result gxs start price 4283 weve reached 5694 3rd targets achieved in just 30 minutes ✅✅✅ huge quick profit 32 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2022-01-03 10:30:12+00:00 1.0 1445772267 14919 pump result nebl start price 2634 weve reached 4058 huge quick profit 53 in just 75 hour to know next pump coin name contact dustinpump for premium membership 2022-01-02 17:19:12+00:00 1.0 1445772267 14899 ardr result hit 820 3rd target achieved in just 16 minutes ✅✅✅ huge quick profit 33 amazing pump calls by our team to know next pump signal ☎️ contact dustinpump for premium membership 2022-01-02 15:04:45+00:00 1.0 1445772267 14802 fxs result hit 90972 3rd target achieved in just 27 hour✅✅✅ huge quick profit 48 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-12-31 16:41:09+00:00 1.0 1445772267 14736 pump result gxs start price 4068 weve reached 5664 all targets achieved in just 31 minutes ✅✅✅✅ huge quick profit 39 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-29 12:56:34+00:00 1.0 1445772267 14711 pump result farm start price 1999 weve reached 5800 huge quick profit 190 in just 20 hour to know next pump coin name contact dustinpump for premium membership 2021-12-28 16:49:18+00:00 1.0 1445772267 14706 pump result quick start price 5420 weve reached 11562 huge quick profit 106 in just 28 minutes to know next pump coin name contact dustinpump for premium membership 2021-12-28 16:15:45+00:00 1.0 1445772267 14689 pump result hard start price 1704 weve reached 2718 all targets achieved in just 19 minutes ✅✅✅✅ huge quick profit 59 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-28 06:57:03+00:00 1.0 1445772267 14653 pump result utk start price 680 weve reached 979 all targets achieved in just 28 minutes ✅✅✅✅ huge quick profit 131 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-27 17:30:53+00:00 1.0 1445772267 14599 pump result lina start price 83 weve reached 111 all targets achieved in just 6 hour ✅✅✅✅ huge quick profit 101 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-26 11:27:55+00:00 1.0 1445772267 14564 pump result pha start price 825 weve reached 1290 all targets achieved in just 20 minutes ✅✅✅✅ huge quick profit 56 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-25 19:06:25+00:00 1.0 1445772267 14552 pump result flux start price 3404 weve reached 5828 all targets achieved in just 23 hour ✅✅✅✅ huge quick profit 71 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-25 17:25:06+00:00 1.0 1445772267 14526 mdt result hit 282 3rd target achieved in just 17 hour✅✅✅ huge quick profit 41 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-25 04:41:03+00:00 1.0 1445772267 14514 pump result appc start price 73 weve reached 105 3rd targets achieved in just 1 hour ✅✅✅ huge quick profit 43 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-24 17:34:02+00:00 1.0 1445772267 14507 pump result rdn start price 435 weve reached 816 huge quick profit 87 in just 6 hour to know next pump coin name contact dustinpump for premium membership 2021-12-24 17:07:21+00:00 1.0 1445772267 14502 pump result evx start price 383 weve reached 540 huge quick profit 40 in just 7 hour to know next pump coin name contact dustinpump for premium membership 2021-12-24 16:56:42+00:00 1.0 1445772267 14457 om result hit 431 3rd target achieved in just 14 minutes ✅✅✅ huge quick profit 23 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-23 15:53:03+00:00 1.0 1445772267 14419 pump result coti start price 634 weve reached 948 all targets achieved in just 36 hour ✅✅✅✅ huge quick profit 148 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-23 05:45:49+00:00 1.0 1445772267 14366 pump result ren start price 1058 weve reached 1543 all targets achieved in just 45 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-22 05:16:11+00:00 1.0 1445772267 14359 pump result jamsy start price 148 weve reached 251 all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 69 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-21 19:35:25+00:00 1.0 1445772267 14315 pump result any start price 4166 weve reached 6057 all targets achieved in just 29 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-20 18:15:52+00:00 1.0 1445772267 14278 dusk result hit 1339 3rd target achieved in just 15 hour✅✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-20 08:05:32+00:00 1.0 1445772267 14265 any result hit 5511 3rd target achieved in just 21 hour✅✅✅ huge quick profit 32 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-12-20 07:22:52+00:00 1.0 1445772267 14253 pump result appc start price 161 weve reached 222 huge quick profit 37 in just 9 minutes to know next pump coin name contact dustinpump for premium membership 2021-12-19 15:04:57+00:00 1.0 1445772267 14241 wan result hit 1818 3rd target achieved in just 11 minutes ✅✅✅ huge quick profit 1818 amazing pump calls by our team advance buy and sell targets ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-19 08:56:35+00:00 1.0 1445772267 14224 farm result hit 2700 3rd target achieved in just 2 minutes ✅✅✅ huge quick profit 35 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-18 18:32:45+00:00 1.0 1445772267 14213 fis result hit 3524 2nd target achieved in just 2 minutes ✅✅ one more huge quick profit 25 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-18 18:14:36+00:00 1.0 1445772267 14208 pump result tru start price 805 weve reached 1194 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-18 18:01:19+00:00 1.0 1445772267 14193 pump result cfx start price 496 weve reached 650 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-18 11:35:35+00:00 1.0 1445772267 14178 pump result qlc start price 75 weve reached 114 all targets achieved in just 40 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-18 10:06:59+00:00 1.0 1445772267 14174 pump result tct start price 70 weve reached 109 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-18 09:27:32+00:00 1.0 1445772267 14130 tct result hit 87 3rd target achieved in just 10 minutes ✅✅✅ huge quick profit 24 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-17 12:58:58+00:00 1.0 1445772267 14123 high result hit 8500 2nd target achieved in just 7 minutes ✅✅ huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-12-17 07:57:34+00:00 1.0 1445772267 14054 pump result gxs start price 2720 weve reached 4150 all targets achieved in just 25 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-16 10:43:32+00:00 1.0 1445772267 14013 pump result voxel start price 5353 weve reached 8250 all targets achieved in just 18 hour ✅✅✅✅ huge quick profit 54 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-15 09:09:23+00:00 1.0 1445772267 14003 pump result doge start price 330 weve reached 463 all targets achieved in just 185 hour ✅✅✅✅ huge quick profit 120 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-14 20:00:07+00:00 1.0 1445772267 13999 voxel result hit 6595 3rd target achieved in just 24 minutes ✅✅✅ huge quick profit 23 amazing calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-12-14 13:37:09+00:00 1.0 1445772267 13849 pump result flux start price 6000 weve reached 9900 all targets achieved in just 33 minutes ✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-10 08:36:37+00:00 1.0 1445772267 13787 pump result mdt start price 129 weve reached 231 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 237 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-09 05:08:29+00:00 1.0 1445772267 13773 pump result ant start price 9002 weve reached 13000 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 44 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-08 18:58:16+00:00 1.0 1445772267 13748 pump result xtz start price 8322 weve reached 11567 all targets achieved in just 7 hour ✅✅✅✅ huge quick profit 115 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-08 06:55:23+00:00 1.0 1445772267 13716 pump result dusk start price 412 weve reached 855 all targets achieved in just 225 hour ✅✅✅✅ huge quick profit 107 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-07 14:07:42+00:00 1.0 1445772267 13694 pump result elf start price 980 weve reached 1781 all targets achieved in just 4 minutes✅✅✅✅ huge quick profit 81 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-06 17:26:06+00:00 1.0 1445772267 13689 grs result hit 2179 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 33 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-06 17:21:48+00:00 1.0 1445772267 13677 porto hit 11695 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 87 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-12-05 17:47:48+00:00 1.0 1445772267 13647 santos result hit 13299 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-05 04:21:35+00:00 1.0 1445772267 13577 pump result mdt start price 112 weve reached 159 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 41 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-03 17:18:23+00:00 1.0 1445772267 13559 pump result gto start price 121 weve reached 192 all targets achieved in just 74 minutes✅✅✅✅ huge quick profit 58 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-03 10:23:32+00:00 1.0 1445772267 13542 pump result nuls start price 934 weve reached 3253 huge quick profit 248 to know next pump coin name contact dustinpump for premium membership 2021-12-02 17:46:51+00:00 1.0 1445772267 13525 pump result gxs start price 1171 weve reached 2790 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 138 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-02 13:15:30+00:00 1.0 1445772267 13499 brd result hit 2830 all targets achieved in nust 2 days✅✅✅✅ one more huge profit 60 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-12-02 06:11:13+00:00 1.0 1445772267 13476 santos result hit 64967 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 48 amazing pump calls by our team to know next pump signal ☎️ contact dustinpump for premium membership 2021-12-01 11:22:31+00:00 1.0 1445772267 13472 pump result req start price 822 weve reached 1340 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-12-01 11:19:13+00:00 1.0 1445772267 13435 pump result agix start price 417 weve reached 578 huge quick profit 38 in just 3 hour to know next pump coin name contact dustinpump for premium membership 2021-11-30 18:41:39+00:00 1.0 1445772267 13342 pump result mda start price 1144 weve reached 1999 all targets achieved in just 8 minutes✅✅✅✅ huge quick profit 74 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-28 17:02:25+00:00 1.0 1445772267 13335 pump result evx start price 1180 weve reached 1931 all targets achieved in just 43 minutes✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-28 16:46:11+00:00 1.0 1445772267 13333 evx result hit 1544 3rd target achieved in just 9 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-11-28 15:08:19+00:00 1.0 1445772267 13302 pump result pnt start price 2315 weve reached 3471 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-28 07:41:52+00:00 1.0 1445772267 13204 pump result nu start price 1592 weve reached 2460 huge quick profit 54 to know next pump coin name contact dustinpump for premium membership 2021-11-27 06:29:37+00:00 1.0 1445772267 13168 pump result gct start price 1956 weve reached 2784 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-26 18:07:16+00:00 1.0 1445772267 13152 pump result storj start price 3836 weve reached 6116 huge quick profit 59 in just 12 hour to know next pump coin name contact dustinpump for premium membership 2021-11-26 17:25:19+00:00 1.0 1445772267 13079 pump result aion start price 315 weve reached 623 huge quick profit 97 in just 15 hour to know next pump coin name contact dustinpump for premium membership 2021-11-25 17:42:26+00:00 1.0 1445772267 13051 amb result hit 113 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump coin name 2021-11-25 10:49:16+00:00 1.0 1445772267 13037 pump result wabi start price 434 weve reached 1056 huge quick profit 143 in just 41 minutes to know next pump coin name contact dustinpump for premium membership 2021-11-25 08:54:51+00:00 1.0 1445772267 13032 pump result brd start price 353 weve reached 2931 all targets achieved in just 3 minutes✅✅✅✅ and pumped hard huge quick profit 730 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-25 04:19:46+00:00 1.0 1445772267 12984 pump result drep start price 1886 weve reached 2799 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-24 06:33:05+00:00 1.0 1445772267 12930 pump result mda start price 1610 weve reached 2211 3rd target achieved in just 2 hour ✅✅✅ huge quick profit 37 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-23 15:03:35+00:00 1.0 1445772267 12925 next pump signal just shared in premium channel 2021-11-23 15:00:23+00:00 1.0 1445772267 12911 pump result iris start price 212 weve reached 373 huge quick profit 75 in just 10 hour to know next pump coin name contact dustinpump for premium membership 2021-11-22 18:45:08+00:00 1.0 1445772267 12849 pump result dego start price 1583 weve reached 2373 all target achieved in just 22 hour ✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-21 14:44:14+00:00 1.0 1445772267 12838 pump result nav start price 707 weve reached 1059 all target achieved in just 15 hour ✅✅✅✅ huge quick profit 49 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-21 10:23:15+00:00 1.0 1445772267 12798 pump result tct start price 60 weve reached 108 all target achieved in just 17 hour ✅✅✅✅ huge quick profit 80 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-21 08:53:14+00:00 1.0 1445772267 12794 pump result powr start price 1084 weve reached 1592 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-21 08:50:28+00:00 1.0 1445772267 12780 pump result gto start price 96 weve reached 156 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 62 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-20 18:38:27+00:00 1.0 1445772267 12775 pump result drep start price 1495 weve reached 3152 huge quick profit 110 in just 2 hour to know next pump coin name contact dustinpump for premium membership 2021-11-20 18:17:48+00:00 1.0 1445772267 12770 pump result mith start price 88 weve reached 307 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 248 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-20 18:03:31+00:00 1.0 1445772267 12724 pump result mith start price 88 weve reached 153 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 73 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-20 08:15:49+00:00 1.0 1445772267 12689 mith result hit 114 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-11-19 17:24:23+00:00 1.0 1445772267 12675 lazio result hit 15493 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-11-19 14:24:05+00:00 1.0 1445772267 12670 dar result hit 5375 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team so much profit for premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-11-19 12:47:12+00:00 1.0 1445772267 12660 idex result hit 860 3rd target achieved in just 54 minutes ✅✅✅ one more huge quick profit 33 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-11-19 12:31:03+00:00 1.0 1445772267 12654 pump result idex start price 455 weve reached 669 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-19 06:47:08+00:00 1.0 1445772267 12637 pump result storj start price 2794 weve reached 4089 all target achieved in just 34 hour ✅✅✅✅ huge quick profit 138 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-18 17:54:08+00:00 1.0 1445772267 12596 arrgo result hit 856 3rd target achieved in just 39 minutes ✅✅✅ one more huge quick profit 37 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-11-18 05:46:29+00:00 1.0 1445772267 12582 pump result rose start price 344 weve reached 512 all target achieved in just 14 hour ✅✅✅✅ huge quick profit 146 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-18 05:11:06+00:00 1.0 1445772267 12534 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-17 03:00:16+00:00 1.0 1445772267 12497 pump result porto start price 17066 weve reached 28188 all target achieved in just 8 minutes✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-16 12:24:24+00:00 1.0 1445772267 12481 pump result powr start price 606 weve reached 1244 all target achieved in just 15 minutes✅✅✅✅ huge quick profit 105 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-16 03:58:18+00:00 1.0 1445772267 12248 adx result hit 1485 2nd target achieved in just 8 minutes ✅✅ one more huge quick profit 22 amazing calls by our team so much quick profit for premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-11-11 14:39:07+00:00 1.0 1445772267 12125 pump result lpt start price 5769 weve reached 15220 huge quick profit 163 to know next pump coin name contact dustinpump for premium membership 2021-11-09 18:24:55+00:00 1.0 1445772267 12077 pump result uma start price 2225 weve reached 3519 huge quick profit 58 to know next pump coin name contact dustinpump for premium membership 2021-11-08 06:44:50+00:00 1.0 1445772267 12023 adx result hit 1796 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-11-07 06:36:05+00:00 1.0 1445772267 12001 pump result rgt start price 7585 weve reached 11482 all target achieved in just 30 minutes✅✅✅✅ huge quick profit 51 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-06 06:44:02+00:00 1.0 1445772267 11999 you missed one more profit here is one more profit for premium members in just 30 minutes pump result 2021-11-06 06:41:26+00:00 1.0 1445772267 11967 pump result sys start price 540 weve reached 897 all target achieved in just 18 hour ✅✅✅✅ huge quick profit 66 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-05 11:54:04+00:00 1.0 1445772267 11921 fis result hit 4000 3rd target achieved in just 17 minutes ✅✅✅ one more huge quick profit 35 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact dustinpump for premium membership 2021-11-04 07:43:45+00:00 1.0 1445772267 11894 pump result badger start price 5302 weve reached 9063 all target achieved in just 13 minutes✅✅✅✅ huge quick profit 70 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-03 20:06:50+00:00 1.0 1445772267 11832 wrx result hit 3319 3rd target achieved in just 59 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-11-02 19:05:07+00:00 1.0 1445772267 11827 pump result arpa start price 233 weve reached 382 all target achieved in just 15 hour✅✅✅✅ one more huge quick profit 211 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-11-02 18:11:44+00:00 1.0 1445772267 11811 pump result oxt start price 820 weve reached 1222 one more huge profit 49 to know next pump coin name contact dustinpump for premium membership 2021-11-02 16:07:17+00:00 1.0 1445772267 11728 pump result ast start price 403 weve reached 634 all target achieved in 2 days✅✅✅✅ one more huge profit 57 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact dustinpump for premium membership 2021-10-31 14:55:14+00:00 1.0 1445772267 11645 pump result mana start price 2237 weve reached 3713 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 199 using 3x leverage to know next pump coin name contact dustinpump for premium membership 2021-10-30 13:42:09+00:00 1.0 1445772267 11634 pump result vite start price 189 weve reached 257 3rd target achieved in just 15 minutes ✅✅✅ huge quick profit 35 to know next pump coin name contact dustinpump for premium membership 2021-10-30 12:20:29+00:00 1.0 1445772267 11627 pump result dlt start price 103 weve reached 197 huge quick profit 91 within 75 hour to know next pump coin name contact dustinpump for premium membership 2021-10-30 11:20:39+00:00 1.0 1445772267 11565 pump result mana start price 1423 weve reached 1978 huge quick profit 39 in just 95 hour to know next pump coin name contact dustinpump for premium membership 2021-10-29 08:40:51+00:00 1.0 1445772267 11550 pump result gto start price 78 weve reached 108 all targets achieved in just 23 minutes ✅✅✅✅ huge quick profit 115 using 3x leverage to know next pump coin name contact dustinpump for premium membership 2021-10-29 04:37:47+00:00 1.0 1445772267 11499 go hit 93 now 3rd target achieved in just 215 hour✅✅✅ huge quick profit 34 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-10-27 08:11:21+00:00 1.0 1445772267 11496 pump result 1inch start price 6787 weve reached 10323 fxs binance top gainer all targets achieved in just 12 minutes ✅✅✅✅ huge quick profit 156 using 3x leverage to know next pump coin name contact dustinpump for premium membership 2021-10-27 06:38:30+00:00 1.0 1445772267 11392 pump result evx start price 1110 weve reached 2094 huge quick profit 88 to know next pump coin name contact dustinpump for premium membership 2021-10-24 17:15:50+00:00 1.0 1445772267 11357 pump result go start price 71 weve reached 98 huge quick profit 38 in just 25 hour to know next pump coin name contact dustinpump for premium membership 2021-10-23 10:55:59+00:00 1.0 1445772267 11267 pump result firo start price 1352 weve reached 1885 3rd targets achieved in just 10 minutes ✅✅✅ huge quick profit 39 to know next pump coin name contact dustinpump for premium membership 2021-10-21 09:08:03+00:00 1.0 1445772267 11245 dnt result hit 376 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 81 using 3x leverage amazing calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-10-21 04:37:19+00:00 1.0 1445772267 11152 pump result req start price 408 weve reached 586 all targets achieved in just 9 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact dustinpump for premium membership 2021-10-17 13:00:46+00:00 1.0 1445772267 11147 pump result sys start price 518 weve reached 820 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 58 to know next pump coin name contact dustinpump for premium membership 2021-10-17 10:54:47+00:00 1.0 1445772267 11080 pump result nu start price 519 weve reached 4649 huge quick profit 792 in just 6 hour to know next pump coin name contact dustinpump for premium membership 2021-10-15 12:54:33+00:00 1.0 1445772267 11075 pump result keep start price 716 weve reached 2010 huge quick profit 180 in just 65 hour to know next pump coin name contact dustinpump for premium membership 2021-10-15 10:49:43+00:00 1.0 1445772267 11042 pump result wabi start price 572 weve reached 800 huge quick profit 39 to know next pump coin name contact dustinpump for premium membership 2021-10-14 15:12:50+00:00 1.0 1445772267 10790 stx result hit 3289 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 56 using 3x leverage amazing calls by our team so much profit for premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-10-09 14:19:40+00:00 1.0 1445772267 10778 pump result klay start price 3197 weve reached 7899 huge quick profit 146 in just 4 minutes to know next pump coin name contact dustinpump for premium membership 2021-10-09 13:57:39+00:00 1.0 1445772267 10773 pump result data start price 249 weve reached 406 huge quick profit 63 to know next pump coin name contact dustinpump for premium membership 2021-10-09 13:46:07+00:00 1.0 1445772267 10693 juv hit 3790 now 3rd target achieved in just 19 hour✅✅✅ huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-10-07 18:31:19+00:00 1.0 1445772267 10626 ong result hit 3580 3rd target achieved in just 27 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact dustinpump for premium membership and grab next pump signal 2021-10-07 05:30:36+00:00 1.0 1445772267 10571 pump result hive start price 1425 weve reached 3056 huge quick profit 114 in just 42 minutes to know next pump coin name contact dustinpump for premium membership 2021-10-06 05:47:31+00:00 1.0 1445772267 10561 ardr result hit 878 3rd target achieved in just 125 hour✅✅✅ one more huge quick profit 36 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-10-06 05:33:28+00:00 1.0 1445772267 10524 stpt to the moon hit 235 huge quick profit 94 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-10-05 11:54:51+00:00 1.0 1445772267 10474 pump result ez start price 13499 weve reached 21000 huge quick profit 56 in just 5 hour to know next pump coin name contact dustinpump for premium membership 2021-10-03 17:05:16+00:00 1.0 1445772267 10326 pump result stpt start price 117 weve reached 188 huge quick profit 60 in just 15 hour to know next pump coin name contact dustinpump for premium membership 2021-09-30 14:31:38+00:00 1.0 1445772267 10320 pump result poly start price 1333 weve reached 1815 huge quick profit 36 in just 3 hour to know next pump coin name contact dustinpump for premium membership 2021-09-30 08:59:15+00:00 1.0 1445772267 10207 pump result adx start price 1153 weve reached 1688 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 46 to know next pump coin name contact dustinpump for premium membership 2021-09-26 19:51:26+00:00 1.0 1445772267 10186 pump result lto start price 549 weve reached 850 huge quick profit 164 using 3x leverage in just 34 hour to know next pump coin name contact dustinpump for premium membership 2021-09-26 18:20:30+00:00 1.0 1445772267 10145 pump result nuls start price 1071 weve reached 1600 huge quick profit 49 in just 11 hour to know next pump coin name contact dustinpump for premium membership 2021-09-25 18:05:58+00:00 1.0 1445772267 10125 pump result celr start price 293 weve reached 447 all targets achieved in just 115 hour ✅✅✅ huge quick profit 52 to know next pump coin name contact dustinpump for premium membership 2021-09-25 05:15:38+00:00 1.0 1445772267 9938 pump result nmr start price 967 weve reached 1377 3rd targets achieved in just 15 hour ✅✅✅ huge quick profit 127 using 3x leverage to know next pump coin name contact dustinpump for premium membership 2021-09-22 04:57:19+00:00 1.0 1445772267 9903 acm result hit 2768 3rd target achieved in just 8 minutes ✅✅✅ one more huge quick profit 27 amazing calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-21 09:06:42+00:00 1.0 1445772267 9831 pump result oax start price 407 weve reached 631 all targets achieved in just 21 hour ✅✅✅✅ huge quick profit 55 to know next pump coin name contact dustinpump for premium membership 2021-09-19 17:44:53+00:00 1.0 1445772267 9766 om result hit 882 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact dustinpump for premium membership 2021-09-18 19:44:39+00:00 1.0 1445772267 9756 pump result cfx start price 675 weve reached 1064 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 57 to know next pump coin name contact dustinpump for premium membership 2021-09-18 17:27:09+00:00 1.0 1445772267 9736 nmr result hit 1298 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 76 using 3x leverage amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-18 06:18:34+00:00 1.0 1445772267 9589 front result hit 4300 3rd target achieved in just 26 hour✅✅✅ one more huge quick profit 40 amazing pump calls by our team so much profit for premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-15 16:54:18+00:00 1.0 1445772267 9584 quick result hit 13000 3rd target achieved in just 4 hour✅✅✅ one more huge quick profit 32 amazing pump calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-15 11:29:10+00:00 1.0 1445772267 9310 pond result hit 273 all targets achieved in 3 days✅✅✅✅ one more huge profit 50 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-10 15:24:08+00:00 1.0 1445772267 9238 front result hit 4770 3rd target achieved in just 45 hour✅✅✅ one more huge quick profit 35 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-09 16:39:37+00:00 1.0 1445772267 9163 elf result hit 2138 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump signal ☎️ contact dustinpump for premium membership 2021-09-08 04:31:45+00:00 1.0 1445772267 9113 pump result rose start price 501 weve reached 717 all targets achieved in just 55 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact dustinpump for premium membership 2021-09-07 10:32:21+00:00 1.0 1445772267 9045 pump result cdt start price 88 weve reached 137 all targets achieved in just 5 hour✅✅✅✅ huge quick profit 55 to know next pump coin name contact dustinpump for premium membership 2021-09-06 09:47:50+00:00 1.0 1445772267 9014 rose hit 417 finally all targets achieved in just 17 hour✅✅✅✅ huge quick profit 148 using 3x leverage amazing pump calls by our team the longer you wait more you lose profit still thinking ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-06 04:56:31+00:00 1.0 1445772267 9007 pump result vib start price 155 weve reached 286 huge quick profit 84 to know next pump coin name contact dustinpump for premium membership 2021-09-05 17:23:55+00:00 1.0 1445772267 8954 idex result hit 195 3rd target achieved in just 15 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-05 08:43:34+00:00 1.0 1445772267 8915 ctxc result hit 725 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 32 amazing pump calls by our team to know next pump signal ☎️ contact dustinpump for premium membership 2021-09-05 04:17:07+00:00 1.0 1445772267 8842 om result hit 649 3rd target achieved in just 12 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-03 06:45:21+00:00 1.0 1445772267 8803 sys result hit 661 3rd target achieved in just 44 minutes ✅✅✅ one more huge quick profit 28 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-02 14:02:36+00:00 1.0 1445772267 8741 elf result hit 1260 3rd target achieved in just 12 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-09-01 12:23:21+00:00 1.0 1445772267 8680 pump result ar start price 8674 weve reached 14000 huge quick profit 60 in just 10 hour to know next pump coin name contact dustinpump for premium membership 2021-08-31 10:12:37+00:00 1.0 1445772267 8675 pump result rose start price 238 weve reached 308 huge quick profit 30 in just 7 hour to know next pump coin name contact dustinpump for premium membership 2021-08-31 10:06:50+00:00 1.0 1445772267 8636 pump result nas start price 108 weve reached 144 3rd targets achieved in just 17 minutes ✅✅✅ huge quick profit 33 to know next pump coin name contact dustinpump for premium membership 2021-08-30 16:22:30+00:00 1.0 1445772267 8629 celo hit 22800 finally all targets achieved in 3 days✅✅✅✅ one more huge profit 192 amazing pump calls by our team the longer you wait more you lose profit hope you understood ☎️ contact dustinpump for premium membership and grab next pump signal 2021-08-30 14:49:08+00:00 1.0 1445772267 8394 aergo result hit 750 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 37 so much profit for premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-08-25 06:50:59+00:00 1.0 1445772267 8309 pump result fxs start price 853 weve reached 1240 huge quick profit 45 in just 5 minutes to know next pump coin name contact dustinpump for premium membership 2021-08-23 06:58:45+00:00 1.0 1445772267 8303 pump result lrc start price 768 weve reached 1257 huge quick profit 63 in just 7 hour to know next pump coin name contact dustinpump for premium membership 2021-08-23 06:51:31+00:00 1.0 1445772267 8292 nano result hit 1571 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 19 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-08-22 14:05:37+00:00 1.0 1445772267 7901 twt hit 1658 finally all targets achieved in just 115 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team to know next pump coin name ☎️ contact dustinpump for premium membership 2021-08-15 10:01:55+00:00 1.0 1445772267 7764 clv result hit 4035 3rd target achieved in just 41 hour✅✅✅ one more huge quick profit 41 amazing pump calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-08-12 07:10:11+00:00 1.0 1445772267 7702 pump result req start price 175 weve reached 300 huge quick profit 71 in just 16 hour to know next pump coin name contact dustinpump for premium membership 2021-08-11 03:39:11+00:00 1.0 1445772267 7686 pump result iotx start price 71 weve reached 122 huge quick profit 71 in just 35 hour to know next pump coin name contact dustinpump for premium membership 2021-08-10 16:37:42+00:00 1.0 1445772267 7625 pump result quick start price 947 weve reached 1496 all targets achieved in just 33 hour ✅✅✅✅ huge quick profit 58 to know next pump coin name contact dustinpump for premium membership 2021-08-09 17:23:14+00:00 1.0 1445772267 7618 og result hit 1778 3rd target achieved in just 95 hour✅✅✅ one more huge quick profit 43 amazing pump calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-08-09 15:10:43+00:00 1.0 1445772267 7595 pump result atm start price 3658 weve reached 4956 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 35 to know next pump coin name contact dustinpump for premium membership 2021-08-09 07:12:31+00:00 1.0 1445772267 7540 pump result torn start price 10112 weve reached 14700 all targets achieved in just 7 minutes ✅✅✅✅ huge quick profit 45 to know next pump coin name contact dustinpump for premium membership 2021-08-07 17:26:37+00:00 1.0 1445772267 7494 psg result hit 9463 all targets achieved in just 27 hour✅✅✅✅ one more huge quick profit 63 amazing pump calls by our team to know next pump signal ☎️ contact dustinpump for premium membership 2021-08-07 03:29:10+00:00 1.0 1445772267 7458 pump result om start price 368 weve reached 647 huge quick profit 75 in just 8 hour to know next pump coin name contact dustinpump for premium membership 2021-08-05 15:15:00+00:00 1.0 1445772267 7439 tru pumped hard hit 3060 huge quick profit 595 from our entry price of 440 to know next pump coin name ☎️ contact dustinpump 2021-08-05 09:29:16+00:00 1.0 1445772267 7424 pump result tru start price 440 weve reached 1237 huge quick profit 181 in just 7 hour to know next pump coin name contact dustinpump for premium membership 2021-08-05 06:00:12+00:00 1.0 1445772267 7409 pump result tvk start price 563 weve reached 723 huge quick profit 28 in just 55 minutes to know next pump coin name contact dustinpump for premium membership 2021-08-05 04:38:40+00:00 1.0 1445772267 7322 nmr pump result start price 1009 price hit 1450 all targets achieved in just 33 minutes ✅✅✅✅ one more huge quick profit 44 amazing pump call for premium members advance buy and sell targets given to them to know next pump coin name ☎️ contact dustinpump for premium membership 2021-08-03 05:08:43+00:00 1.0 1445772267 7278 rep result hit 7382 2nd target achieved in just 12 minutes ✅✅ one more huge quick profit 51 using 3x leverage amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-08-02 03:46:41+00:00 1.0 1445772267 7218 ardr result hit 870 all targets achieved in just 32 hour✅✅✅✅ one more huge quick profit 97 amazing pump calls by our team told you you could recover fees in just 24 hour but i think you hate money to know next pump coin name ☎️ contact dustinpump for premium membership 2021-07-31 04:54:18+00:00 1.0 1445772267 7130 qnt result hit 3700 2nd target achieved in just 2 hour✅✅ one more huge quick profit 28 amazing pump calls by our team to know next pump signal ☎️ contact dustinpump 2021-07-29 12:05:49+00:00 1.0 1445772267 7070 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-07-28 18:38:15+00:00 1.0 1445772267 7025 pump result lto start price 525 weve reached 698 huge quick profit 32 in just 15 minutes to know next pump coin name contact dustinpump for premium membership 2021-07-27 10:00:16+00:00 1.0 1445772267 6972 gas result hit 2675 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 29 amazing pump call given to premium members huge quick profit to know next pump coin name ☎️ contact dustinpump 2021-07-26 14:23:32+00:00 1.0 1445772267 6925 pump result drep start price 1901 weve reached 2859 huge quick profit 50 in just 25 hour to know next pump coin name contact dustinpump for premium membership 2021-07-25 17:42:20+00:00 1.0 1445772267 6915 rdn hit 1380 finally all targets achieved in just 7 hour✅✅✅✅ huge quick profit 58 amazing calls by our team amazing pump call ☎️ contact dustinpump for premium membership and grab next pump signal 2021-07-25 17:02:28+00:00 1.0 1445772267 6856 rep pump result start price 5237 price hit 8461 huge quick profit 61 in just 1 hour to know next pump coin name ☎️ contact dustinpump for premium membership 2021-07-24 08:36:47+00:00 1.0 1445772267 6823 c98 result hit 3449 3rd target achieved in just 11 hour ✅✅✅ one more huge quick profit 33 amazing calls by our team told you you could recover fees in just 24 hour ☎️ contact dustinpump for premium membership and grab next pump signal 2021-07-24 04:12:45+00:00 1.0 1445772267 6800 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-07-23 11:37:07+00:00 1.0 1445772267 6605 pump result klay start price 3099 weve reached 4199 huge quick profit 35 in just 6 minutes to know next pump coin name contact dustinpump for premium membership 2021-07-20 07:03:53+00:00 1.0 1445772267 6575 pump result dash start price 3732 weve reached 5928 huge quick profit 58 in just 5 minutes to know next pump coin name contact dustinpump for premium membership 2021-07-19 16:27:44+00:00 1.0 1445772267 6381 fis result start price 2441 price hit 3285 huge quick profit 34 in just 19 hour ☎️ contact dustinpump for premium membership and grab next pump signal 2021-07-15 16:02:09+00:00 1.0 1445772267 6156 pump result poa start price 129 weve reached 210 huge quick profit 62 in just 9 hour to know next pump coin name contact dustinpump for premium membership 2021-07-11 17:05:03+00:00 1.0 1445772267 6118 pump result beam start price 1394 weve reached 1952 huge quick profit 40 in just 35 hour to know next pump coin name contact dustinpump for premium membership 2021-07-11 06:43:24+00:00 1.0 1445772267 6086 auction hit 8671 now 2nd target achieved in just 27 minutes ✅✅ huge quick profit 20 ☎️ contact dustinpump for premium membership and grab next pump signal 2021-07-10 17:28:13+00:00 1.0 1445772267 6057 pump result auction start price 4339 weve reached 7177 huge quick profit 65 in just 35 hour to know next pump coin name contact dustinpump for premium membership 2021-07-09 16:22:06+00:00 1.0 1445772267 6018 forth result start price 5059 price hit 7271 one more huge quick profit 43 in just 29 hour the longer you wait more you lose profit what are you waiting for join premium and grab next pump signal ☎️ contact dustinpump 2021-07-08 16:23:23+00:00 1.0 1445772267 6009 oxt result start price 848 price hit 1201 huge quick profit 41 in just 7 hour to know next pump coin name ☎️ contact dustinpump for premium membership 2021-07-08 15:01:47+00:00 1.0 1445772267 5978 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-07-07 15:30:58+00:00 1.0 1445772267 5870 mln result 3rd target achieved in just 29 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members join premium and grab next pump signal ☎️ contact dustinpump for premium membership 2021-07-05 08:09:06+00:00 1.0 1445772267 5854 grs result start price 1855 price hit 2486 one more huge quick profit 34 in just 22 hour ☎️ contact dustinpump for premium membership and grab next pump signal 2021-07-05 05:44:06+00:00 1.0 1445772267 5838 glm result start price 887 price hit 1174 one more huge quick profit 32 in just 40 minutes to know next pump coin name ☎️ contact dustinpump for premium membership 2021-07-04 01:49:57+00:00 1.0 1445772267 5801 qkc result start price 49 price hit 64 one more huge quick profit 30 in just 1 hour ☎️ contact dustinpump for premium membership and grab next pump signal 2021-07-02 03:29:36+00:00 1.0 1445772267 5662 snt result 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 22 amazing calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-29 06:20:31+00:00 1.0 1445772267 5649 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-06-28 19:45:00+00:00 1.0 1445772267 5645 pump result ppt start price 4108 weve reached 6685 huge quick profit 62 in just 28 hour to know next pump coin name contact dustinpump for premium membership 2021-06-28 19:40:13+00:00 1.0 1445772267 5589 ctsi breakout result start price 1117 price hit 1770 huge quick profit 58 in just 20 hour to know next pump signal ☎️ contact dustinpump for premium membership 2021-06-27 19:07:24+00:00 1.0 1445772267 5566 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-06-27 10:54:23+00:00 1.0 1445772267 5544 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-06-26 13:24:46+00:00 1.0 1445772267 5540 pump result cfx start price 671 weve reached 1000 huge quick profit 49 in just 2 hour to know next pump coin name contact dustinpump for premium membership 2021-06-26 12:45:13+00:00 1.0 1445772267 5534 pump result dnt start price 385 weve reached 480 huge quick profit 24 in just 22 minutes to know next pump coin name contact dustinpump for premium membership 2021-06-26 12:38:44+00:00 1.0 1445772267 5526 pump result snm start price 431 weve reached 701 huge quick profit 61 in just 7 hour to know next pump coin name contact dustinpump for premium membership 2021-06-26 04:36:54+00:00 1.0 1445772267 5439 lpt result start price 6757 price hit 12463 huge quick profit 85 in just 9 hour to know next pump signal ☎️ contact dustinpump for premium membership 2021-06-23 08:25:14+00:00 1.0 1445772267 5388 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-06-21 15:21:23+00:00 1.0 1445772267 5369 dnt pump result start price 359 price hit 560 huge quick profit 55 in just 16 hour to know next pump coin name ☎️ contact dustinpump for premium membership 2021-06-21 04:52:44+00:00 1.0 1445772267 5348 pump result wabi start price 900 weve reached 1249 huge quick profit 38 in just 3 minutes to know next pump coin name contact dustinpump for premium membership 2021-06-20 17:07:35+00:00 1.0 1445772267 5313 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-06-19 18:09:27+00:00 1.0 1445772267 5310 pols pump result start price 3612 price hit 4740 huge quick profit 31 in just 4 minutes to know next pump coin name ☎️ contact dustinpump 2021-06-19 17:21:05+00:00 1.0 1445772267 5253 mir result start price 1198 price hit 1928 huge quick profit 61 in just 19 hour ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-18 10:59:57+00:00 1.0 1445772267 5222 pump result nu start price 788 weve reached 1100 huge quick profit 39 in just 19 minutes to know next pump coin name contact dustinpump for premium membership 2021-06-17 17:06:14+00:00 1.0 1445772267 5217 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-06-17 15:23:35+00:00 1.0 1445772267 5136 pump result ava start price 779 weve reached 1003 huge quick profit 28 in just 3 hour to know next pump coin name contact dustinpump for premium membership 2021-06-16 14:05:17+00:00 1.0 1445772267 5096 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-06-16 03:50:14+00:00 1.0 1445772267 5033 hard result 2nd target achieved in just 34 hour ✅✅ one more huge quick profit 30 amazing calls by our team ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-14 18:44:40+00:00 1.0 1445772267 4998 ata pump result start price 1866 price hit 2780 all targets achieved in just 66 minutes ✅✅✅✅ huge quick profit 49 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact dustinpump for premium membership 2021-06-13 06:14:00+00:00 1.0 1445772267 4933 chz result 2nd target achieved in just 33 minutes ✅✅ huge quick profit 60 using 5x leverage amazing calls by our team the longer you wait more you lose profit what are you waiting for ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-11 09:07:58+00:00 1.0 1445772267 4920 pump result asr start price 1517 weve reached 2736 huge quick profit 80 in just 145 hour to know next pump coin name contact dustinpump for premium membership 2021-06-11 07:16:00+00:00 1.0 1445772267 4901 stpt pump result start price 136 price hit 213 all targets achieved in just 23 hour✅✅✅✅ one more huge quick profit 57 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact dustinpump for premium membership 2021-06-11 05:17:32+00:00 1.0 1445772267 4894 gtc pump result start price 3107 price hit 4863 all targets achieved in just 75 hour✅✅✅✅ one more huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact dustinpump for premium membership 2021-06-11 04:32:25+00:00 1.0 1445772267 4860 idex pump result start price 150 price hit 246 all targets achieved in just 2 hour✅✅✅✅ one more huge quick profit 64 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact dustinpump for premium membership 2021-06-10 10:44:46+00:00 1.0 1445772267 4809 hard pump result start price 1902 price hit 2985 all targets achieved in just 26 minutes ✅✅✅✅ huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members to know next pump coin name ☎️ contact dustinpump for premium membership 2021-06-10 04:26:32+00:00 1.0 1445772267 4768 pump result data start price 269 weve reached 737 huge quick profit 173 in just 13 hour to know next pump coin name contact dustinpump for premium membership 2021-06-09 13:45:06+00:00 1.0 1445772267 4707 bcd hit 11520 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 69 amazing calls by our team told you we have shared breakout pump signal which will give you 2060 profit in few hours did you take it seriously no i think you hate money ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-09 03:53:29+00:00 1.0 1445772267 4621 pump result ar start price 4740 weve reached 6280 huge quick profit 32 in just 4 hour to know next pump coin name contact dustinpump for premium membership 2021-06-07 15:16:51+00:00 1.0 1445772267 4613 pump result dock start price 184 weve reached 293 huge quick profit 59 in just 3 hour to know next pump coin name contact dustinpump for premium membership 2021-06-07 02:43:43+00:00 1.0 1445772267 4588 pump result pond start price 250 weve reached 503 huge quick profit 101 in just 19 minutes to know next pump coin name contact dustinpump for premium membership 2021-06-06 18:35:20+00:00 1.0 1445772267 4566 perl result all targets achieved in just 68 minutes ✅✅✅✅ one more huge quick profit signals 103 amazing calls by our team congrats premium members you could recover fees in just 24 hour still thinking ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-06 16:51:34+00:00 1.0 1445772267 4524 pump result iris start price 222 weve reached 456 huge quick profit 105 in just 10 minutes to know next pump coin name contact dustinpump for premium membership 2021-06-06 07:48:31+00:00 1.0 1445772267 4515 nbs result all targets achieved in just 8 minutes ✅✅✅✅ huge quick profit 70 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact dustinpump for premium membership 2021-06-06 07:05:16+00:00 1.0 1445772267 4441 nu result start price 1052 price hit 1386 one more huge quick profit 31 in just 25 hour ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-04 09:48:07+00:00 1.0 1445772267 4392 pump result sun start price 792 weve reached 1022 huge quick profit 29 in just 1 hour to know next pump coin name contact dustinpump for premium membership 2021-06-03 13:02:00+00:00 1.0 1445772267 4365 gxs pump result all targets achieved in just 5 hour ✅✅✅✅ one more huge quick profit 54 amazing pump by our team still thinking and losing daily huge profit we share advance buy and sell targets to premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-03 06:08:03+00:00 1.0 1445772267 4268 doge result start price 927 price hit 1211 huge quick profit 31 in just 16 hour ☎️ contact dustinpump for premium membership and grab next pump signal 2021-06-02 13:11:50+00:00 1.0 1445772267 4164 pump result eps start price 2165 weve reached 3180 huge quick profit 47 to know next pump coin name contact dustinpump for premium membership 2021-05-31 08:07:06+00:00 1.0 1445772267 4100 pump result axs start price 13286 weve reached 17220 huge quick profit 30 to know next pump coin name contact dustinpump for premium membership 2021-05-29 16:23:36+00:00 1.0 1445772267 3992 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-05-28 04:14:46+00:00 1.0 1445772267 3972 pump result bar start price 4243 weve reached 6133 huge quick profit 44 to know next pump coin name contact dustinpump for premium membership 2021-05-27 12:42:28+00:00 1.0 1445772267 3943 pond result all targets achieved in just 29 hour✅✅✅✅ one more huge quick profit 60 amazing calls by our team congrats premium members you could recover fees in just 24 hour hurry up ‍♂ ☎️ contact dustinpump for premium membership and grab next pump signal 2021-05-27 06:26:23+00:00 1.0 1445772267 3866 pump result skl start price 908 weve reached 1471 huge quick profit 62 to know next pump coin name contact dustinpump for premium membership 2021-05-26 17:53:00+00:00 1.0 1445772267 3860 pump result nxs start price 2487 weve reached 3631 huge quick profit 46 to know next pump coin name contact dustinpump for premium membership 2021-05-26 17:06:06+00:00 1.0 1445772267 3843 pump result tvk start price 445 weve reached 699 huge quick profit 57 to know next pump coin name contact dustinpump for premium membership 2021-05-26 12:29:28+00:00 1.0 1445772267 3827 pump result ramp start price 502 weve reached 968 huge quick profit 93 to know next pump coin name contact dustinpump for premium membership 2021-05-26 10:26:47+00:00 1.0 1445772267 3753 dock result 3rd target achieved in just 19 minutes ✅✅✅ huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-05-25 18:05:01+00:00 1.0 1445772267 3744 pump result hard start price 1664 weve reached 2595 huge quick profit 56 to know next pump coin name contact dustinpump for premium membership 2021-05-25 16:41:52+00:00 1.0 1445772267 3719 pump result oxt start price 1009 weve reached 1430 huge quick profit 41 to know next pump coin name contact dustinpump for premium membership 2021-05-25 14:24:39+00:00 1.0 1445772267 3674 pump result via start price 2070 weve reached 2677 huge quick profit 29 to know next pump coin name contact dustinpump for premium membership 2021-05-24 18:14:55+00:00 1.0 1445772267 3668 pump result tct start price 76 weve reached 96 huge quick profit 26 to know next pump coin name contact dustinpump for premium membership 2021-05-24 18:10:32+00:00 1.0 1445772267 3644 pump result rdn start price 1039 weve reached 1464 huge quick profit 40 to know next pump coin name contact dustinpump for premium membership 2021-05-24 13:47:16+00:00 1.0 1445772267 3569 pump result unfi start price 18678 weve reached 39410 huge quick profit 111 to know next pump coin name contact dustinpump for premium membership 2021-05-24 03:31:40+00:00 1.0 1445772267 3393 pump result fis start price 3785 weve reached 6754 huge quick profit 78 to know next pump coin name contact dustinpump for premium membership 2021-05-21 12:32:22+00:00 1.0 1445772267 3364 pump result elf start price 828 weve reached 1111 huge quick profit 35 to know next pump coin name contact dustinpump for premium membership 2021-05-21 09:12:35+00:00 1.0 1445772267 3340 pump result ong start price 1939 weve reached 8000 huge quick profit 312 to know next pump coin name contact dustinpump for premium membership 2021-05-21 04:22:45+00:00 1.0 1445772267 3331 pump result cvc start price 965 weve reached 1298 huge quick profit 34 to know next pump coin name contact dustinpump for premium membership 2021-05-21 02:34:50+00:00 1.0 1445772267 3195 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-05-19 16:27:05+00:00 1.0 1445772267 3184 ethusdt result 2nd target achieved in just 22 minutes ✅✅ one more huge quick profit 57 using 5x leverage ☎️ contact dustinpump for premium membership and grab next pump signal 2021-05-19 16:02:27+00:00 1.0 1445772267 3136 ong result 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 25 ☎️ contact dustinpump for premium membership and grab next pump signal 2021-05-19 10:00:38+00:00 1.0 1445772267 3116 pump result celr start price 128 weve reached 194 huge quick profit 51 to know next pump coin name contact dustinpump for premium membership 2021-05-19 07:01:42+00:00 1.0 1445772267 3080 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-05-18 18:49:21+00:00 1.0 1445772267 3043 pump result ark start price 3497 weve reached 5325 huge quick profit 52 to know next pump coin name contact dustinpump for premium membership 2021-05-18 15:07:43+00:00 1.0 1445772267 2978 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-05-17 18:47:14+00:00 1.0 1445772267 2973 pump result celo start price 10402 weve reached 14997 huge quick profit 44 to know next pump coin name contact dustinpump for premium membership 2021-05-17 18:25:48+00:00 1.0 1445772267 2967 pump result alice start price 23448 weve reached 30504 huge quick profit 30 to know next pump coin name contact dustinpump for premium membership 2021-05-17 16:11:52+00:00 1.0 1445772267 2885 nmr hit 1980 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 told you you could recover fees in just 24 hour still thinking ☎️ contact dustinpump for premium membership and grab next pump signal 2021-05-16 10:53:55+00:00 1.0 1445772267 2875 nmr result 3rd target achieved in just 6 minutes ✅✅✅ one more huge quick profit 31 amazing pump call by our team congrats premium members ☎️ contact dustinpump for premium membership and grab next pump signal 2021-05-16 10:00:48+00:00 1.0 1445772267 2853 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-05-15 20:03:00+00:00 1.0 1445772267 2824 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact dustinpump 2021-05-15 09:09:58+00:00 1.0 1445772267 2798 pump result juv start price 3222 weve reached 4605 huge quick profit 43 to know next pump coin name contact dustinpump for premium membership 2021-05-15 06:13:40+00:00 1.0 1445772267 2781 pump result atm start price 4682 weve reached 9787 huge quick profit 109 to know next pump coin name contact dustinpump for premium membership 2021-05-15 05:11:10+00:00 1.0 1445772267 2665 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-05-13 19:16:03+00:00 1.0 1445772267 2644 pump result chr start price 572 weve reached 814 huge quick profit 42 to know next pump coin name contact for premium membership 2021-05-13 11:56:26+00:00 1.0 1445772267 2638 pump result nano start price 1619 weve reached 3595 huge quick profit 122 to know next pump coin name contact for premium membership 2021-05-13 11:27:50+00:00 1.0 1445772267 2603 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-05-12 17:13:39+00:00 1.0 1445772267 2589 pump result atm start price 1942 weve reached 2630 huge quick profit 35 to know next pump coin name contact for premium membership 2021-05-12 16:34:45+00:00 1.0 1445772267 2583 pump result nas start price 195 weve reached 255 huge quick profit 30 to know next pump coin name contact for premium membership 2021-05-12 15:26:47+00:00 1.0 1445772267 2577 inj result 2nd target achieved in just 5 minutes ✅✅ one more huge quick profit 33 told you the longer you wait more you lose profit what are you waiting for ☎️ contact for premium membership and grab next pump signal 2021-05-12 13:49:32+00:00 1.0 1445772267 2550 pump result lrc start price 965 weve reached 1527 huge quick profit 58 to know next pump coin name contact for premium membership 2021-05-12 07:55:40+00:00 1.0 1445772267 2528 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-05-11 19:16:39+00:00 1.0 1445772267 2455 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-05-10 19:32:30+00:00 1.0 1445772267 2431 ckb hit 71 finally all targets achieved in just 32 minutes ✅✅✅✅ huge quick profit 57 amazing calls by our team congrats premium members so much profit for premium members ☎️ contact for premium membership and grab next pump signal 2021-05-10 10:27:13+00:00 1.0 1445772267 2372 pump result rlc start price 11423 weve reached 20409 huge quick profit 78 to know next pump coin name contact for premium membership 2021-05-10 05:38:15+00:00 1.0 1445772267 2363 pump result vidt start price 2221 weve reached 3130 huge quick profit 40 to know next pump coin name contact for premium membership 2021-05-10 04:24:01+00:00 1.0 1445772267 2357 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-05-09 19:21:28+00:00 1.0 1445772267 2264 ctsi result 2nd target achieved in just 33 minutes ✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact for premium membership and grab next pump signal 2021-05-08 16:59:26+00:00 1.0 1445772267 2259 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-05-08 14:36:09+00:00 1.0 1445772267 2200 pump result aion start price 734 weve reached 1150 huge quick profit 56 to know next pump coin name contact for premium membership 2021-05-07 16:30:44+00:00 1.0 1445772267 2192 bcd hit 18000 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 amazing calls by our team congrats premium members ☎️ contact for premium membership and grab next pump signal 2021-05-07 14:49:13+00:00 1.0 1445772267 2179 firo result start price 2943 price hit 4326 huge quick profit 47 in just 1 hour ☎️ contact for premium membership and grab next pump signal 2021-05-07 12:44:16+00:00 1.0 1445772267 2116 etc result start price 13954 price hit 25690 huge quick profit 84 in just 25 hour ☎️ contact for premium membership and grab next pump signal 2021-05-06 16:06:14+00:00 1.0 1445772267 2045 sys result start price 1195 price hit 1600 huge quick profit 33 in just 18 hour ☎️ contact for premium membership and grab next pump signal 2021-05-05 15:02:21+00:00 1.0 1445772267 2027 pnt hit 6722 finally all targets achieved in just 58 minutes ✅✅✅✅ huge quick profit 78 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking ☎️ contact for premium membership and grab next pump signal 2021-05-05 12:55:13+00:00 1.0 1445772267 2022 pnt result 2nd target achieved in just 39 minutes ✅✅ one more huge quick profit 22 ☎️ contact for premium membership and grab next pump signal 2021-05-05 12:28:36+00:00 1.0 1445772267 1967 ctsi hit 1876 now 3rd target achieved in just 11 hour✅✅✅ huge quick profit 40 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking ☎️ contact for premium membership and grab next pump signal 2021-05-04 17:12:01+00:00 1.0 1445772267 1903 wabi result start price 1038 price hit 1400 huge quick profit 34 in just 13 hour ☎️ contact for premium membership and grab next pump signal 2021-05-03 16:50:28+00:00 1.0 1445772267 1806 twt result start price 1372 price hit 2075 huge quick profit 51 in just 12 hour to know next pump signal ☎️ contact for premium membership 2021-05-02 18:50:28+00:00 1.0 1445772267 1761 nano result start price 1604 price hit 2118 huge quick profit 31 in just 25 hour ☎️ contact for premium membership and grab next pump coin name 2021-05-02 07:22:01+00:00 1.0 1445772267 1702 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-04-30 18:50:16+00:00 1.0 1445772267 1694 fis result start price 4592 price hit 7900 huge quick profit 72 in just 2 hour to know next pump signal ☎️ contact for premium membership 2021-04-30 18:00:00+00:00 1.0 1445772267 1688 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-04-30 12:05:28+00:00 1.0 1445772267 1651 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact 2021-04-30 06:37:46+00:00 1.0 1445772267 1645 pump result rcn start price 244 weve reached 356 huge quick profit 46 to know next pump coin name contact for premium membership 2021-04-30 05:32:54+00:00 1.0 1445772267 1639 iotx result start price 97 price hit 160 huge quick profit 64 in just 3 hour to know next pump signal ☎️ contact for premium membership 2021-04-30 05:05:25+00:00 1.0 1445772267 1633 vite hit 500 finally all target achieved in 3 days✅✅✅✅ one more huge profit 80 amazing calls by our team ☎️ contact for premium membership and grab next pump signal 2021-04-30 04:29:35+00:00 1.0 1445772267 1591 eps result start price 3557 price hit 5789 huge quick profit 62 in just 195 hour ☎️ contact for premium membership and grab next pump signal 2021-04-29 14:45:38+00:00 1.0 1211795583 14367 lpt pump result price hit 12463 all targets achieved ✅✅✅✅✅ one more huge quick profit 79 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact waglobals for premium membership 2021-06-23 12:34:08+00:00 1.0 1211795583 14343 hard pump result start price 1717 price hit 4012 all targets achieved ✅✅✅✅✅ one more huge quick profit 134 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact waglobals for premium membership 2021-06-10 18:54:18+00:00 1.0 1211795583 14329 iota pump result 2nd target achieved in just 21 hour ✅✅ one more huge quick profit 150 using 10x leverage amazing pump by our team still thinking and losing daily huge profit we share advance buy and sell targets to premium members ☎️ contact waglobals for premium membership and grab next pump signal 2021-06-03 16:57:01+00:00 1.0 1211795583 14008 ogn result 2nd target achieved in just 19 minutes ✅✅ one more huge quick profit 17 you could earn back fees within 24 hour ☎️ contact waglobals for premium membership and grab next pump signal 2021-04-06 07:30:43+00:00 1.0 1211795583 13236 uma pumped hard uma result update now all targets achieved in just 23 hour ✅✅✅✅✅✅ huge quick profit 119 amazing calls by our team dont get stuck in other pump groups ☎️ contact waglobals for premium membership and grab next breakout signal before it pump 2021-02-03 23:13:33+00:00 1.0 1211795583 13233 uma result now 4th target achieved in just 20 hour ✅✅✅✅ one more huge quick profit 28 amazing calls by our team dont get stuck in other pump groups ☎️ contact waglobals for premium membership and grab next breakout signal before it pump 2021-02-03 20:10:22+00:00 1.0 1211795583 11501 inj result 2nd target achieved within 50 minutes ✅✅ one more huge quick profit 17 amazing calls by our team to know next pump coin name ☎️ contact waglobals 2020-10-21 07:56:37+00:00 1.0 1211795583 11070 eng hit 6777 finally all target achieved in just 36 hour ✅✅✅✅ huge quick profit 43 to know next pump coin name ☎️ contact waglobals 2020-09-26 09:29:46+00:00 1.0 1211795583 10860 pump result gvt start price 1340 weve reached 1800 quick profit 34 to know next pump coin name contact waglobals for premium membership 2020-09-17 18:27:00+00:00 1.0 1211795583 10856 pump coin name is gvt 2020-09-17 18:00:37+00:00 1.0 1211795583 10855 next post will be coin name 2020-09-17 17:55:53+00:00 1.0 1211795583 10854 15 minutes left to pump on binance 2020-09-17 17:46:39+00:00 1.0 1211795583 10850 next pump scheduled ⏰ thursday 17092020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-09-17 15:17:02+00:00 1.0 1211795583 10822 pump coin name is cdt 2020-09-16 16:00:25+00:00 1.0 1211795583 10821 next post will be coin name 2020-09-16 15:55:22+00:00 1.0 1211795583 10820 15 minutes left to pump on binance 2020-09-16 15:46:38+00:00 1.0 1211795583 10819 30 minutes left to pump on binance 2020-09-16 15:31:21+00:00 1.0 1211795583 10807 next pump scheduled ⏰ wednesday 06092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-09-16 09:47:52+00:00 1.0 1211795583 10798 next pump scheduled ⏰ wednesday 06092020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-09-16 07:07:51+00:00 1.0 1211795583 10762 next pump scheduled ⏰ tuesday 15092020 at 8 am gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact waglobals 2020-09-15 07:14:07+00:00 1.0 1211795583 10609 sol result 2nd target achieved in just 11 minutes ✅✅ huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact waglobals for premium membership 2020-09-09 16:18:47+00:00 1.0 1211795583 10553 next pump scheduled ⏰ tuesday 08092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact waglobals 2020-09-08 13:05:52+00:00 1.0 1211795583 10472 next pump scheduled ⏰ sunday 06092020 at 4 pm gmt exchange binance for premium members only‼️ to know coin name join premium ☎️ contact waglobals 2020-09-06 10:51:49+00:00 1.0 1211795583 10410 dnt next pump coin name hurry up 2020-09-04 18:05:07+00:00 1.0 1211795583 10237 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact waglobals for premium membership 2020-08-31 15:31:57+00:00 1.0 1211795583 9723 qtum result 2nd target achieved in just 37 minutes ✅✅ one more huge profit 38 using 5x leverage amazing calls by our team to know next pump coin name ☎️ contact waglobals 2020-08-14 10:19:31+00:00 1.0 1211795583 9331 pump result ppt start price 2684 weve reached 3995 huge quick profit 48 to know next pump coin name contact waglobals for premium membership 2020-08-04 18:28:12+00:00 1.0 1211795583 9325 next post will be coin name 2020-08-04 17:56:01+00:00 1.0 1211795583 9324 15 minutes left to pump on binance 2020-08-04 17:45:48+00:00 1.0 1211795583 9233 fio result 2nd target achieved in just 1 hour ✅✅ one more very quick huge profit 28 to know next pump coin name ☎️ contact waglobals 2020-07-31 10:36:57+00:00 1.0 1211795583 9120 pump result poa start price 145 weve reached 175 huge quick profit 24 in just 5 minutes to know next pump coin name contact waglobals for premium membership 2020-07-28 16:57:10+00:00 1.0 1211795583 9111 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact waglobals 2020-07-28 15:29:01+00:00 1.0 1211795583 9104 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-07-28 10:48:22+00:00 1.0 1211795583 9090 next pump scheduled ⏰ tuesday 28072020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-07-27 16:40:38+00:00 1.0 1211795583 9035 next post will be coin name 2020-07-24 16:56:00+00:00 1.0 1211795583 9034 14 minutes left to pump on binance 2020-07-24 16:47:30+00:00 1.0 1211795583 9032 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-07-24 16:06:19+00:00 1.0 1211795583 9027 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-07-24 12:58:56+00:00 1.0 1211795583 9012 next pump scheduled ⏰ friday 24072020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-07-24 07:28:26+00:00 1.0 1211795583 8997 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact waglobals for premium membership 2020-07-23 15:09:18+00:00 1.0 1211795583 8989 sys hit 1655 finally all targets achieved in just 2 hour 8 minutes ✅✅✅✅ huge quick profit 56 next breakout pump signal will be shared in few hours only in premium channel hurry up ☎ contact waglobals 2020-07-23 13:30:45+00:00 1.0 1211795583 8965 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact waglobals for premium membership 2020-07-22 16:47:05+00:00 1.0 1211795583 8923 dlt hit 808 finally all targets achieved within 2 hour 45 minutes ✅✅✅✅ huge very quick profit 49 amazing pump call shared in premium channel to know next pump coin name ☎️ contact waglobals for premium membership 2020-07-21 13:18:52+00:00 1.0 1211795583 8451 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact waglobals 2020-07-04 16:15:57+00:00 1.0 1211795583 8147 pump coin name evx 2020-06-24 16:00:35+00:00 1.0 1211795583 8146 next post will be coin name 2020-06-24 15:55:47+00:00 1.0 1211795583 8145 15 minutes left to pump on binance 2020-06-24 15:46:08+00:00 1.0 1211795583 8144 30 minutes left to pump on binance 2020-06-24 15:31:33+00:00 1.0 1211795583 8132 next pump scheduled ⏰ wednesday 24062020 at 4pm gmt exchange binance last pump results gxs 31 qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-24 06:43:43+00:00 1.0 1211795583 8108 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact waglobals 2020-06-23 20:46:10+00:00 1.0 1211795583 7917 pump result gxs start price 6506 weve reached 8306 huge quick profit 31 to know next pump coin name contact waglobals for premium membership 2020-06-15 16:18:49+00:00 1.0 1211795583 7912 pump coin name gxs 2020-06-15 16:00:45+00:00 1.0 1211795583 7911 15 minutes left to pump on binance 2020-06-15 15:46:53+00:00 1.0 1211795583 7908 next pump scheduled ⏰ monday 15062020 at 4pm gmt exchange binance last pump results qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-15 11:18:34+00:00 1.0 1211795583 7902 next pump scheduled ⏰ monday 15062020 at 4pm gmt exchange binance last pump results qsp 42 ppt 62 ctxc 211 via 186 ong 109 this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-15 05:28:39+00:00 1.0 1211795583 7859 pump result qsp start price 210 weve reached 299 huge quick profit 42 to know next pump coin name contact waglobals for premium membership 2020-06-13 16:36:31+00:00 1.0 1211795583 7851 pump coin name qsp 2020-06-13 16:00:46+00:00 1.0 1211795583 7850 next post will be coin name 2020-06-13 15:55:54+00:00 1.0 1211795583 7849 15 minutes left to pump on binance 2020-06-13 15:46:49+00:00 1.0 1211795583 7848 30 minutes left to pump on binance 2020-06-13 15:32:58+00:00 1.0 1211795583 7846 next pump scheduled ⏰ saturday 13062020 at 4pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-13 15:01:52+00:00 1.0 1211795583 7837 next pump scheduled ⏰ saturday 13062020 at 4pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-13 10:15:55+00:00 1.0 1211795583 7756 pump coin name via 2020-06-10 15:59:50+00:00 1.0 1211795583 7755 next post will be coin name 2020-06-10 15:56:22+00:00 1.0 1211795583 7754 about 15 minutes left to pump on binance 2020-06-10 15:46:01+00:00 1.0 1211795583 7750 next pump scheduled ⏰ wednesday 10062020 at 4pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-10 14:12:02+00:00 1.0 1211795583 7740 next pump scheduled ⏰ wednesday 10062020 at 4pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-10 07:19:21+00:00 1.0 1211795583 7708 pump coin name ppt 2020-06-08 16:06:20+00:00 1.0 1211795583 7707 coin name will be posted in premium channel anytime soon within next 1 hour this time coin name will be posted at random time within next 1 hour to avoid bots involve in pump so that our members will earn huge expecting 100200 pump to know coin name earlier join premium and recover your losses ☎ contact waglobals 2020-06-08 15:56:13+00:00 1.0 1211795583 7704 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-08 13:12:20+00:00 1.0 1211795583 7693 next pump scheduled ⏰ monday 08062020 at 45 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-08 05:45:49+00:00 1.0 1211795583 7572 pump result ctxc start price 1155 weve reached 3599 huge quick profit 211 to know next pump coin name contact waglobals for premium membership 2020-06-03 16:30:33+00:00 1.0 1211795583 7568 pump coin name ctxc 2020-06-03 16:00:38+00:00 1.0 1211795583 7567 next post will be coin name 2020-06-03 15:56:26+00:00 1.0 1211795583 7566 15 minutes left to pump on binance 2020-06-03 15:46:12+00:00 1.0 1211795583 7565 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact waglobals 2020-06-03 15:31:11+00:00 1.0 1211795583 7560 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-03 07:43:47+00:00 1.0 1211795583 7532 next pump scheduled ⏰ wednesday 03062020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-06-02 19:00:08+00:00 1.0 1211795583 7428 pump coin name nas 2020-05-30 16:00:43+00:00 1.0 1211795583 7401 pump result via start price 1813 weve reached 5200 huge quick profit 186 to know next pump coin name contact waglobals for premium membership 2020-05-29 16:19:28+00:00 1.0 1211795583 7396 pump coin name via 2020-05-29 16:00:13+00:00 1.0 1211795583 7395 next post will be coin name 2020-05-29 15:56:05+00:00 1.0 1211795583 7394 5 minutes left to pump on binance 2020-05-29 15:55:33+00:00 1.0 1211795583 7393 15 minutes left to pump on binance 2020-05-29 15:45:22+00:00 1.0 1211795583 7387 next pump scheduled ⏰ friday 29052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-05-29 13:11:11+00:00 1.0 1211795583 7377 next pump scheduled ⏰ friday 29052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-05-29 05:35:29+00:00 1.0 1211795583 7323 pump result ong start price 1209 weve reached 2534 huge quick profit 109 to know next pump coin name contact waglobals for premium membership 2020-05-26 16:29:34+00:00 1.0 1211795583 7313 breakout pump coin name ong 2020-05-26 16:01:37+00:00 1.0 1211795583 7310 next pump signal will be shared in only in premium channel in few minutes ☎️ contact waglobals for premium membership 2020-05-26 14:42:20+00:00 1.0 1211795583 6698 pump result yoyo start price 76 weve reached 90 huge quick profit 18 to know next pump coin name contact waglobals for premium membership 2020-05-14 16:52:35+00:00 1.0 1211795583 6683 next post will be coin name 2020-05-14 15:56:04+00:00 1.0 1211795583 6681 15 minutes left to pump on binance 2020-05-14 15:45:44+00:00 1.0 1211795583 6675 next pump scheduled ⏰ thursday 14052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-05-14 12:06:35+00:00 1.0 1211795583 6661 next pump scheduled ⏰ thursday 14052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals 2020-05-14 09:13:18+00:00 1.0 1211795583 6611 next post will be coin name 2020-05-09 15:52:27+00:00 1.0 1211795583 6610 10 minutes left to pump on binance 2020-05-09 15:52:07+00:00 1.0 1211795583 6609 30 minutes left to pump on binance 2020-05-09 15:32:36+00:00 1.0 1211795583 6605 next pump scheduled ⏰ saturday 9052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals for premium membership 2020-05-09 14:59:27+00:00 1.0 1211795583 6531 5 minutes left to pump on binance be ready with you btc 2020-05-05 15:56:09+00:00 1.0 1211795583 6529 15 minutes left to pump on binance 2020-05-05 15:45:37+00:00 1.0 1211795583 6527 30 minutes left to pump on binance 2020-05-05 15:31:28+00:00 1.0 1211795583 6523 next pump scheduled ⏰ tuesday 5052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals for premium membership 2020-05-05 14:00:54+00:00 1.0 1211795583 6514 next pump scheduled ⏰ tuesday 5052020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals for premium membership 2020-05-05 11:13:43+00:00 1.0 1211795583 6242 pump coin name bnt 2020-04-24 15:59:36+00:00 1.0 1211795583 6241 next post will be coin name 2020-04-24 15:57:17+00:00 1.0 1211795583 6240 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact waglobals 2020-04-24 15:32:35+00:00 1.0 1211795583 6232 next pump scheduled ⏰ friday 24042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals for premium membership 2020-04-24 13:42:46+00:00 1.0 1211795583 6216 next pump scheduled ⏰ friday 24042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals for premium membership 2020-04-24 12:05:54+00:00 1.0 1211795583 6201 next pump scheduled ⏰ friday 24042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to get coin name earlier than others join premium ☎️ contact waglobals for premium membership 2020-04-24 07:29:36+00:00 1.0 1211795583 6023 pump coin name gvt 2020-04-15 15:57:07+00:00 1.0 1211795583 6022 next post will be coin name 2020-04-15 15:54:47+00:00 1.0 1211795583 6021 ⏰ 10 minutes left to pump on binance 2020-04-15 15:51:09+00:00 1.0 1211795583 6019 ⏰ 30 minutes left to pump on binance 2020-04-15 15:31:27+00:00 1.0 1211795583 6014 next pump scheduled ⏰ wednesday 15042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals for premium membership 2020-04-15 09:05:45+00:00 1.0 1211795583 6005 pump coin name mith 2020-04-14 16:00:43+00:00 1.0 1211795583 6004 next post will be coin name 2020-04-14 15:53:20+00:00 1.0 1211795583 6003 ⏰ 15 minutes left to pump on binance 2020-04-14 15:45:42+00:00 1.0 1211795583 5992 next pump scheduled ⏰ tuesday 14042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals for premium membership 2020-04-14 08:35:13+00:00 1.0 1211795583 5943 pump result gnt start price 508 weve reached 739 huge quick profit 45 to know next pump coin name contact waglobals for premium membership 2020-04-10 16:40:34+00:00 1.0 1211795583 5938 next post will be coin name 2020-04-10 15:53:11+00:00 1.0 1211795583 5937 10 minutes left to pump on binance 2020-04-10 15:51:53+00:00 1.0 1211795583 5931 next pump scheduled ⏰ fridaytoday 10042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-04-10 08:27:21+00:00 1.0 1211795583 5847 next post will be coin name 2020-04-04 15:50:15+00:00 1.0 1211795583 5846 10 minutes left to pump on binance 2020-04-04 15:49:50+00:00 1.0 1211795583 5845 30 minutes left to pump on binance 2020-04-04 15:31:48+00:00 1.0 1211795583 5838 next pump scheduled ⏰ saturday 04042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-04-04 12:59:58+00:00 1.0 1211795583 5832 next pump scheduled ⏰ saturday 04042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-04-04 07:32:19+00:00 1.0 1211795583 5797 pump result grs start price 2380 weve reached 3434 huge quick profit 44 to know next pump coin name contact waglobals for premium membership 2020-04-02 16:21:41+00:00 1.0 1211795583 5789 next post will be coin name 2020-04-02 15:54:35+00:00 1.0 1211795583 5786 30 minutes left to pump on binance 2020-04-02 15:32:09+00:00 1.0 1211795583 5776 next pump scheduled ⏰ thursday 02042020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-04-02 07:30:26+00:00 1.0 1211795583 5648 pump result edo start price 1720 weve reached 2446 huge quick profit 42 to know next pump coin name contact waglobals for premium membership 2020-03-26 16:47:22+00:00 1.0 1211795583 5640 next post will be coin name 2020-03-26 15:57:14+00:00 1.0 1211795583 5639 10 minutes left to pump on binance 2020-03-26 15:50:29+00:00 1.0 1211795583 5638 20 minutes left to pump on binance 2020-03-26 15:41:13+00:00 1.0 1211795583 5637 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact waglobals 2020-03-26 15:30:10+00:00 1.0 1211795583 5635 50 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact waglobals 2020-03-26 15:12:38+00:00 1.0 1211795583 5625 next pump scheduled ⏰ thursday 26032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-03-26 10:25:54+00:00 1.0 1211795583 5595 next post will be coin name 2020-03-24 15:48:02+00:00 1.0 1211795583 5594 20 minutes left to pump on binance 2020-03-24 15:38:15+00:00 1.0 1211795583 5592 next pump scheduled ⏰ tuesdaytoday 24032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-03-24 12:31:11+00:00 1.0 1211795583 5394 next post will be coin name be ready with you btc 2020-03-13 15:56:06+00:00 1.0 1211795583 5393 5 minutes left to pump on binance be ready with you btc 2020-03-13 15:55:27+00:00 1.0 1211795583 5392 10 minutes left to pump on binance be ready with you btc 2020-03-13 15:50:19+00:00 1.0 1211795583 5391 30 minutes left to pump on binance be ready with you btc 2020-03-13 15:31:24+00:00 1.0 1211795583 5385 next pump scheduled ⏰ fridaytoday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-03-13 14:05:37+00:00 1.0 1211795583 5369 next pump scheduled ⏰ fridaytoday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-03-13 10:03:47+00:00 1.0 1211795583 5339 next pump scheduled ⏰ fridaytoday 13032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-03-13 05:15:49+00:00 1.0 1211795583 5316 pump result qlc start price 136 weve reached 173 huge quick profit 27 to know next pump coin name contact waglobals for premium membership 2020-03-12 16:18:40+00:00 1.0 1211795583 5305 if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-03-12 15:57:52+00:00 1.0 1211795583 5304 5 minutes left to pump on binance be ready with you btc 2020-03-12 15:55:39+00:00 1.0 1211795583 5303 10 minutes left to pump on binance be ready with you btc 2020-03-12 15:50:32+00:00 1.0 1211795583 5301 30 minutes left to pump on binance 2020-03-12 15:30:50+00:00 1.0 1211795583 5299 if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-03-12 12:23:14+00:00 1.0 1211795583 5293 next pump scheduled ⏰ thursdaytoday 12032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-03-12 10:05:07+00:00 1.0 1211795583 5278 next pump scheduled ⏰ thursdaytoday 12032020 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2020-03-12 07:06:18+00:00 1.0 1211795583 4945 next post will be coin name 2020-02-26 17:56:47+00:00 1.0 1211795583 4944 5 minutes left to pump on binance 2020-02-26 17:55:39+00:00 1.0 1211795583 4943 15 minutes left to pump on binance 2020-02-26 17:45:42+00:00 1.0 1211795583 4942 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-02-26 17:40:31+00:00 1.0 1211795583 4941 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact waglobals 2020-02-26 17:33:21+00:00 1.0 1211795583 4935 next pump scheduled ⏰ wednesday 26022020 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2020-02-26 12:21:17+00:00 1.0 1211795583 4516 just told 30 minutes ago and pump 50 more within 30 minutes price hit 2941 we shared signal when price was 1420 huge profit 107 within 15 hour 2020-02-06 19:09:11+00:00 1.0 1211795583 4335 snt now hit 159 3rd target achieved within 13 hour ✅✅✅✅ huge quick profit 32 amazing breakout pump signal congrats premium members to know next pump coin ☎️ contact waglobals 2020-02-02 00:39:13+00:00 1.0 1211795583 4297 btc 200 dumped and pumped just before pump many outsiders didnt participated in pump we will schedule next pump soon still me managed to grab quick 7 within 2 minutes and price was up for about 5 minutes good coin to hold 2020-01-30 17:14:25+00:00 1.0 1211795583 4291 next post will be coin name 2020-01-30 16:55:50+00:00 1.0 1211795583 4290 5 minutes left to pump on binance 2020-01-30 16:55:24+00:00 1.0 1211795583 4289 15 minutes left to pump on binance 2020-01-30 16:45:54+00:00 1.0 1211795583 4282 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-30 15:32:54+00:00 1.0 1211795583 4276 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2020-01-30 14:13:43+00:00 1.0 1211795583 4260 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2020-01-30 07:17:06+00:00 1.0 1211795583 4256 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2020-01-29 23:58:23+00:00 1.0 1211795583 4253 next pump scheduled ⏰ thursday 30012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2020-01-29 17:29:05+00:00 1.0 1211795583 3816 pump result gnt start price 362 weve reached 394 quick profit 88 to know next pump coin name contact waglobals for vip membership 2020-01-10 18:47:13+00:00 1.0 1211795583 3815 gnt price hit 394 many are stuck in other alt coin thats why may not participated in pump also btc pumped today made sell pressure on all alt coins 2020-01-10 18:08:42+00:00 1.0 1211795583 3809 next post will be coin name 2020-01-10 17:56:18+00:00 1.0 1211795583 3808 5 minutes left to pump on binance 2020-01-10 17:55:53+00:00 1.0 1211795583 3807 10 minutes left to pump on binance 2020-01-10 17:50:24+00:00 1.0 1211795583 3805 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-10 17:25:29+00:00 1.0 1211795583 3803 1 hour left to pump on binance to know coin name earlier join vip and recover your losses ☎ contact waglobals 2020-01-10 17:05:45+00:00 1.0 1211795583 3797 5 hour left to pump on binance to know coin name earlier join vip and recover your losses ☎ contact waglobals 2020-01-10 13:02:49+00:00 1.0 1211795583 3796 next pump scheduled ⏰ friday 10012020 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance wwwbinancecom to know coin name earlier join vip group ☎️ contact waglobals 2020-01-10 10:33:25+00:00 1.0 1211795583 3784 pump result ong start price 1260 weve reached 1422 quick profit 13 to know next pump coin name contact waglobals for vip membership 2020-01-09 17:37:47+00:00 1.0 1211795583 3776 next post will be coin name pin our channel to top to get cion name faster 2020-01-09 16:55:28+00:00 1.0 1211795583 3775 5 minutes left to pump on binance 2020-01-09 16:55:23+00:00 1.0 1211795583 3774 10 minutes left to pump on binance 2020-01-09 16:50:25+00:00 1.0 1211795583 3773 guys be ready with your btc if you are holding alt coin you can sell them and take part in pump and then rebuy same coin after pump 2020-01-09 16:46:18+00:00 1.0 1211795583 3772 15 minutes left to pump on binance 2020-01-09 16:45:24+00:00 1.0 1211795583 3771 30 minutes left to pump on binance 2020-01-09 16:31:45+00:00 1.0 1211795583 3770 1 hour left to pump on binance to know coin name earlier join vip and recover your losses ☎ contact waglobals 2020-01-09 16:04:08+00:00 1.0 1211795583 3763 next pump scheduled ⏰ thursday 09012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip channel ☎️ contact waglobals 2020-01-09 10:01:42+00:00 1.0 1211795583 3745 next pump scheduled ⏰ thursday 09012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip channel ☎️ contact waglobals 2020-01-08 17:24:26+00:00 1.0 1211795583 3742 pump result edo start price 2206 weve reached 2486 quick profit 13 to know next pump coin name contact waglobals for vip membership 2020-01-08 17:22:33+00:00 1.0 1211795583 3737 next post will be coin name pin our channel to top to get cion name faster 2020-01-08 16:57:22+00:00 1.0 1211795583 3736 5 minutes left to pump on binance 2020-01-08 16:56:22+00:00 1.0 1211795583 3735 10 minutes left to pump on binance 2020-01-08 16:50:58+00:00 1.0 1211795583 3734 15 minutes left to pump on binance 2020-01-08 16:45:14+00:00 1.0 1211795583 3733 30 minutes left to pump on binance 2020-01-08 16:31:59+00:00 1.0 1211795583 3732 1 hour left to pump on binance to know coin name earlier join vip and recover your losses ☎ contact waglobals 2020-01-08 16:05:11+00:00 1.0 1211795583 3730 next pump scheduled ⏰ wednesday 08012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip channel ☎️ contact waglobals 2020-01-08 15:00:16+00:00 1.0 1211795583 3722 5 hour left to pump on binance to know coin name earlier join vip and recover your losses ☎ contact waglobals 2020-01-08 11:57:40+00:00 1.0 1211795583 3720 next pump scheduled ⏰ wednesday 08012020 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip channel ☎️ contact waglobals 2020-01-08 10:35:02+00:00 1.0 1211795583 3253 pump result nav start price 1159 weve reached 1450 huge quick profit 25 to know next pump coin name contact waglobals for vip membership 2019-12-19 17:45:55+00:00 1.0 1211795583 3237 next post will be coin name 2019-12-19 16:55:50+00:00 1.0 1211795583 3236 5 minutes left to pump on binance 2019-12-19 16:55:32+00:00 1.0 1211795583 3235 10 minutes left to pump on binance 2019-12-19 16:50:41+00:00 1.0 1211795583 3234 15 minutes left to pump on binance 2019-12-19 16:45:32+00:00 1.0 1211795583 3233 30 minutes left to pump on binance 2019-12-19 16:32:50+00:00 1.0 1211795583 3231 next pump scheduled ⏰ thursday 19122019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip channel now ☎️ contact waglobals 2019-12-19 16:10:10+00:00 1.0 1211795583 3225 next pump scheduled ⏰ thursday 19122019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip channel now ☎️ contact waglobals 2019-12-19 11:18:00+00:00 1.0 1211795583 3022 go and cnd north top gainer on binance amazing calls by our team to know next pump coin name ☎️ contact waglobals 2019-12-11 05:47:03+00:00 1.0 1211795583 2269 pump result edo start price 3342 weve reached 3680 quick profit 10 many members are holding other alt coins thats why only few members participated next pump will be huge to know next pump coin name contact waglobals for premium membership 2019-11-21 19:14:24+00:00 1.0 1211795583 2262 next post will be coin name 2019-11-21 17:59:02+00:00 1.0 1211795583 2261 5 minutes left to pump on binance 2019-11-21 17:55:46+00:00 1.0 1211795583 2260 10 minutes left to pump on binance 2019-11-21 17:51:15+00:00 1.0 1211795583 2259 15 minutes left to pump on binance 2019-11-21 17:46:15+00:00 1.0 1211795583 2258 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact waglobals 2019-11-21 17:34:32+00:00 1.0 1211795583 2243 next pump scheduled ⏰ thursday 21112019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on create wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-11-21 13:15:49+00:00 1.0 1211795583 2046 8 hour left to pump on binance to know coin name earlier join vip group and recover your losses cion will be given vip members 2 minutes before pump begins ☎ contact waglobals 2019-11-15 05:22:22+00:00 1.0 1211795583 2045 ❗breakout alert❗ date 15th november ⏱ time 400 pm gmt exchange binance are you guys ready for the biggest breakout alert when the 4h candle closes a strong ta signal will be posted on this channel coin will reach +70 quickly so you should buy hold as soon as possible be ready tomorrow at 400 pm gmt contact waglobals to get coin name on time in vip group 2019-11-15 05:20:06+00:00 1.0 1211795583 2025 ❗breakout alert❗ date 15th november ⏱ time 400 pm gmt exchange binance are you guys ready for the biggest breakout alert when the 4h candle closes a strong ta signal will be posted on this channel coin will reach +70 quickly so you should buy hold as soon as possible be ready tomorrow at 400 pm gmt contact waglobals to get coin name on time in vip group 2019-11-14 13:23:11+00:00 1.0 1211795583 1908 next post will be coin name 2019-11-11 16:56:48+00:00 1.0 1211795583 1907 5 minutes left to pump on binance pinourchannelontopandbereadyforblast 2019-11-11 16:56:17+00:00 1.0 1211795583 1906 10 minutes left to pump on binance pinourchannelontopandbereadyforblast 2019-11-11 16:51:12+00:00 1.0 1211795583 1905 15 minutes left to pump on binance pinourchannelontopandbereadyforblast 2019-11-11 16:48:12+00:00 1.0 1211795583 1904 30 minutes left to pump on binance 2019-11-11 16:35:38+00:00 1.0 1211795583 1897 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-11-11 16:01:34+00:00 1.0 1211795583 1875 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-11-11 12:11:22+00:00 1.0 1211795583 1868 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-11-11 10:36:22+00:00 1.0 1211795583 1839 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-11-11 05:09:22+00:00 1.0 1211795583 1831 next pump scheduled ⏰ monday 11112019 at 500pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-11-10 10:07:02+00:00 1.0 1211795583 1692 next post will be coin name 2019-11-05 15:56:10+00:00 1.0 1211795583 1691 5 minutes left to pump on binance 2019-11-05 15:55:42+00:00 1.0 1211795583 1690 10 minutes left to pump on binance 2019-11-05 15:51:01+00:00 1.0 1211795583 1689 guys btc on move and alts have huge sell orders lets see if we find good coin to pump 2019-11-05 15:36:29+00:00 1.0 1211795583 1688 30 minutes left to pump on binance 2019-11-05 15:31:39+00:00 1.0 1211795583 1686 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip group ☎️ contact waglobals 2019-11-05 15:02:24+00:00 1.0 1211795583 1680 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip group ☎️ contact waglobals 2019-11-05 11:58:40+00:00 1.0 1211795583 1670 next pump scheduled ⏰ tuesday 05112019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join vip group ☎️ contact waglobals 2019-11-05 06:18:43+00:00 1.0 1211795583 1473 pump result ong start price 1766 weve reached 1881 quick profit 7 many members are holding other alt coins thats why only few members participated next pump will be huge to know next pump coin name contact waglobals for premium membership 2019-10-29 18:34:40+00:00 1.0 1211795583 1464 next post will be coin name 2019-10-29 17:56:06+00:00 1.0 1211795583 1463 5 minutes left to pump on binance 2019-10-29 17:55:52+00:00 1.0 1211795583 1461 30 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact waglobals 2019-10-29 17:32:38+00:00 1.0 1211795583 1459 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-10-29 17:06:10+00:00 1.0 1211795583 1453 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-10-29 11:12:21+00:00 1.0 1211795583 1444 next pump scheduled ⏰ tuesday 29102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now wwwbinancecom to know coin name earlier join premium ☎️ contact waglobals 2019-10-29 05:47:24+00:00 1.0 1211795583 1233 pump coin name ost 2019-10-22 18:00:46+00:00 1.0 1211795583 1232 next post will be coin name 2019-10-22 17:56:08+00:00 1.0 1211795583 1225 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now binance to know coin name earlier join premium ☎️ contact waglobals 2019-10-22 15:24:22+00:00 1.0 1211795583 1212 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now binance to know coin name earlier join premium ☎️ contact waglobals 2019-10-22 10:53:36+00:00 1.0 1211795583 1196 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now binance to know coin name earlier join premium ☎️ contact waglobals 2019-10-21 18:54:37+00:00 1.0 1211795583 1191 next pump scheduled ⏰ tuesday 22102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now binance to know coin name earlier join premium ☎️ contact waglobals 2019-10-21 15:32:53+00:00 1.0 1211795583 1071 breakout pump signal gas 2019-10-17 10:39:21+00:00 1.0 1211795583 897 we postponed yesterdays breakout pump signal for premium members as btc started pumping and all alts pulled back today we are going to pump coin for premium members 2019-10-10 05:15:52+00:00 1.0 1211795583 770 next post will be coin name 2019-10-02 17:55:54+00:00 1.0 1211795583 766 poa was our breakout signal which gave 16 profit for premium members within 3 minutes pump signal remaining hurry up‍♂‍♂ join premium ☎️ contact waglobals 2019-10-02 17:44:19+00:00 1.0 1211795583 763 poa breakout result 2nd target achieved within 3 minutes✅✅ very quick profit 16 congrats premium members join premium to know next pump coin 20 minutes left to pump on binance ☎️ contact waglobals 2019-10-02 17:41:30+00:00 1.0 1211795583 756 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-10-02 15:41:13+00:00 1.0 1211795583 748 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-10-01 18:20:35+00:00 1.0 1211795583 723 next pump scheduled ⏰ wednesday 02102019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-30 18:12:53+00:00 1.0 1211795583 711 next pump scheduled ⏰ monday 30092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-29 15:37:19+00:00 1.0 1211795583 635 next post will be coin name be ready with you btc 2019-09-26 15:56:25+00:00 1.0 1211795583 632 30 minutes left to pump join fast now 2019-09-26 15:32:50+00:00 1.0 1211795583 627 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-26 12:38:48+00:00 1.0 1211795583 615 next pump scheduled ⏰ thursday 26092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-26 06:24:56+00:00 1.0 1211795583 606 pump result edo start price 3404 weve reached 3802 quick profit 117 price was at top for about 4 minutes congrats guys next pump will be announced soon to know next coin name earlier contact waglobals for premium membership 2019-09-25 19:27:22+00:00 1.0 1211795583 601 next post will be coin name be ready with your btc 2019-09-25 15:56:12+00:00 1.0 1211795583 577 next pump scheduled ⏰ wednesday 25092019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-25 03:58:37+00:00 1.0 1211795583 455 blz again pumped within 24 hour price hit 381 again quick profit 17 every one is in profit congrats everyone our every pump signal again pump in next few days dont stuck in other pump group ☎️ contact waglobals and discuss with us 2019-09-18 18:28:37+00:00 1.0 1211795583 448 poa breakout update 2nd target achieved in 2 hour 30 minutes prince hit 245 near our 3rd target ✅✅✅ huge quick profit 36 amazing breakout signal congrats premium members i told you you can recover your losses within ttodays breakout and pump signals still thinking pump signal remaining hurry up‍♂ dont miss pump signal join premium to know pump coin name earlier ☎️ contact waglobals 2019-09-18 15:46:32+00:00 1.0 1211795583 441 next pump scheduled ⏰ wednesday 18092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-18 13:18:48+00:00 1.0 1211795583 431 next breakout signal scheduled ⏰ wednesday 18082019 at 100pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact waglobals 2019-09-18 10:02:27+00:00 1.0 1211795583 425 next breakout signal scheduled ⏰ wednesday 18082019 at 100pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact waglobals 2019-09-18 07:09:51+00:00 1.0 1211795583 416 next pump scheduled ⏰ wednesday 18092019 at 600pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-17 17:44:38+00:00 1.0 1211795583 400 next post will be coin name be ready with you btc 2019-09-17 15:55:59+00:00 1.0 1211795583 367 next pump scheduled ⏰ tuesday 17082019 at 400pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-16 16:03:36+00:00 1.0 1211795583 279 next breakout signal scheduled ⏰ wednesday 11082019 at 500pm gmt exchange binance exclusively for premium members to know coin name join premium ☎️ contact waglobals 2019-09-11 05:46:06+00:00 1.0 1211795583 239 pump result bnt start price 3636 weve reached 5156 huge profit 41 congrats guys next pump will be announced soon to know next coin name earlier contact waglobals for premium membership 2019-09-09 20:16:38+00:00 1.0 1211795583 230 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-09 18:58:58+00:00 1.0 1211795583 214 next pump scheduled ⏰ monday 09082019 at 800pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-09-09 08:10:47+00:00 1.0 1211795583 191 next post will be coin name be ready with you btc 2019-08-29 17:59:15+00:00 1.0 1211795583 186 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-08-29 17:01:47+00:00 1.0 1211795583 166 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-08-29 06:12:37+00:00 1.0 1211795583 157 next pump scheduled ⏰ thursday 29082019 at 600pm gmt exchange binance last pump results vib 44 via 22 rcn 328 yoyo 235 poa 37 snm 24 wabi 15 nav 62 this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact waglobals 2019-08-28 12:00:43+00:00 1.0 1211795583 148 mth update earlier 1st target achieved within 10 minutes now price went down to our buy zone and again pumped hard within 6 hour now 2nd target achieved ✅✅✅ huge profit 14 premium members earning huge join premium before our next signal pump ☎️ contact waglobals 2019-08-27 20:02:11+00:00 1.0 1211795583 60 dock update earlier 2nd target achieved within 30 minutes now price went down to our buy zone and again pumped hard within 6 hour now 3rd target achieved ✅✅✅ huge profit 28 premium members earning huge join premium before our next signal pump ☎️ contact waglobals 2019-08-26 11:25:26+00:00 1.0 1211795583 30 we also share daily 25 special signal in premium channel only those coin will going to pump within 24 hour or very short duration 2019-08-25 13:07:23+00:00 1.0 1367634633 2741 next msg will be coin name buy asap exchange binance in pair of btc 2019-08-18 16:29:49+00:00 1.0 1367634633 2364 call type shortterm midterm exchange binance coin pair lrcbtc lrcbtc lrcbtc ₿ current price 000000520 buy aroundbtw 000000520 000000540 targets target 1 000000600 11 target 2 000000794 5600 target 3 000000860 69 target 4 000000914 79 target 5 000001084 113 stoploss 000000400 1061 refer chart more info lrc available at rock bottom with bullish indications it will be a good buy at this price a small alt rally will pump this coin massively 2019-07-01 10:30:11+00:00 1.0 1367634633 2360 call type shortterm exchange binance coin pair engbtc engbtc engbtc ₿ current price 000004839 buy aroundbtw 000004800 000004900 targets target 1 000005010 15 target 2 000005480 26 target 3 000005860 35 target 4 000006240 43 stoploss 000004126 5 2019-06-30 18:05:27+00:00 1.0 1367634633 2130 important video coming in next 5 minutes with free giveaway of 50 free activation of z special + all indicators for 1 year dont miss it 2019-06-09 15:15:28+00:00 1.0 1367634633 1930 great profit great mood sunday special offer buy zspecial today get below indicators free offer valid till 1159pm 3152019 ist avail it today if you want dont ask me tomorrow contact ziaopen4profitcom 1 magic rsi 2 black bull td 3 dmi adx trend signal 4 cyclic indicator 5 altcoin pump dump 2019-05-26 13:37:52+00:00 1.0 1367634633 1917 great profit great mood sunday special offer buy zspecial today get below indicators free offer valid till 1159pm 2652019 ist avail it today if you want dont ask me tomorrow contact ziaopen4profitcom 1 magic rsi 2 black bull td 3 dmi adx trend signal 4 cyclic indicator 5 altcoin pump dump 2019-05-26 07:09:51+00:00 1.0 1367634633 1274 call type shortterm exchange binance coin pair ostbtc ost ost ₿ current price 000000647 buy around 000000640 000000660 targets target 1 00000070 10 target 2 00000074 15 target 3 00000077 20 target 4 00000080 25 target 5 00000083 30 moonshot 00000096 50 stoploss 00000061 5 refer chart more info 34 important ost news on way will be sharing soon in next post keep target for min 1015 profit rest upto you 2019-03-08 05:36:16+00:00 1.0 1367634633 893 short+mid term binance call long term holding 600 profit expected exchange binance bcdbtc hurry up quick profit coin bcdbtc around 218230 ⏬targets⏬ target 1 240 15 target 2 259 20 target 3 284 31 target 4 300++ 40++ stoploss 200 or hodl or ladder position because of all time low 2019-01-20 07:56:08+00:00 1.0 1367634633 852 exchange binance phxbtc 2030 profit expected coin phxbtc 228258 ⏬targets⏬ target 1 271 target 2 288 target 3 300 stoploss 180 mdr perfect 11+ buyer increased 24hr 1058+ 2019-01-17 16:32:22+00:00 1.0 1367634633 851 next binance special call in 5 minutes this coin always gave 30+ profit in up rally right now at bottom 2019-01-17 16:17:53+00:00 1.0 1367634633 834 td seq 9 candles completed fresh will start on 4h chart in uptrend short term call 30 expected exchange binance vibebtc coin vibebtc ✅buy around 11001130 ⏬targets⏬ target 1 1170 target 2 1210 target 3 1330 target 4 1420++ stoploss 990 or ladder buy or hold if possible 2019-01-17 09:15:41+00:00 1.0 1367634633 697 gem call mega pump binance tonight 8 pm ist 230 pm gmt minimum profit 305080 be prepared ready coin name btc at 8 pm 2019-01-07 11:09:33+00:00 1.0 1367634633 671 coin name in next 2 minutes 2019-01-05 13:29:06+00:00 1.0 1367634633 573 exchange binance agibtc coin agi btc ✅buy 000001200000001500 ⏬targets⏬ target 1 000001300 target 2 000001400 target 3 000001900 target 4 000002000++ stoploss 000001212 mdr 44 thats great buyers 3461+ 2018-12-29 15:33:32+00:00 1.0 1367634633 567 exchange binance linkbtc coin linkbtc ✅buy 76507750 ⏬targets⏬ target 1 8000 target 2 8700 target 3 9200 target 4 9600++ stoploss 7250 mdr 84 thats great buyers 461+ buy pressure is more than sell pressure for any help contact telegram or email on ziaopen4profitcom 2018-12-29 14:14:50+00:00 1.0 1367634633 445 quick 812 profit buy signal exchange binance rlcbtc coin rlcbtc ✅buy around 535550 ⏬targets⏬ target 1 580 target 2 670 target 3 800 stoploss 518 too much buying pressure 2018-12-13 19:38:56+00:00 1.0 1367634633 370 exchange binance thetabtc coin thetabtc ✅buy 16201750 target target 1 1900 target 2 2000 target 3 2100 target 4 2200 stoploss 1500 mdr 185 + theta is at breakout point 9 candles finished about to pump again time to make some more profit after 1st 2nd target book profits at your will 2018-12-03 12:17:39+00:00 1.0 1394568162 1758 pump announcement hello everyone our next official pump will be scheduled for date sunday january 23 time 1500 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared on january 23 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 200 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2022-01-19 15:04:10+00:00 1.0 1394568162 1745 4 minutes be ready next post will be x coin 2022-01-18 14:56:03+00:00 1.0 1394568162 1744 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2022-01-18 14:50:08+00:00 1.0 1394568162 1739 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining usdt balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 300 400 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2022-01-18 14:11:04+00:00 1.0 1394568162 1728 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2022-01-18 11:30:23+00:00 1.0 1394568162 1727 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2022-01-18 09:00:28+00:00 1.0 1394568162 1722 pump announcement hello everyone our next official pump will be scheduled for date tuesday january 18 time 1500 pm gmt exchange kucoin target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 400 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 2 days to make sure that we are fully prepared on january 18 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of usdt will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on kucoin big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into kucoin if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2022-01-16 21:29:27+00:00 1.0 1394568162 1709 4 minutes be ready next post will be x coin 2022-01-15 16:56:20+00:00 1.0 1394568162 1708 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2022-01-15 16:50:45+00:00 1.0 1394568162 1702 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining usdt balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 300 400 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2022-01-15 16:22:57+00:00 1.0 1394568162 1691 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2022-01-15 13:00:05+00:00 1.0 1394568162 1690 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2022-01-15 11:00:21+00:00 1.0 1394568162 1685 pump announcement hello everyone our next official pump will be scheduled for date saturday january 15 time 1700 pm gmt exchange kucoin target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 400 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 1 days to make sure that we are fully prepared on january 15 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on kucoin big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into kucoin if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2022-01-14 14:12:57+00:00 1.0 1394568162 1681 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place best regards signed whales team 2022-01-09 14:00:24+00:00 1.0 1394568162 1645 pump announcement hello everyone our next official pump will be scheduled for date sunday january 9 time 1500 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared on january 9 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 200 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2022-01-03 18:42:29+00:00 1.0 1394568162 1632 4 minutes be ready next post will be x coin 2022-01-02 16:56:03+00:00 1.0 1394568162 1631 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2022-01-02 16:50:08+00:00 1.0 1394568162 1626 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 100 120 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2022-01-02 16:36:36+00:00 1.0 1394568162 1615 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2022-01-02 13:40:02+00:00 1.0 1394568162 1614 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2022-01-02 13:30:18+00:00 1.0 1394568162 1600 pump announcement hello everyone our next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 400 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared on january 2 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 200 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-12-29 21:07:15+00:00 1.0 1394568162 1586 4 minutes be ready next post will be x coin 2021-12-28 14:56:07+00:00 1.0 1394568162 1585 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-12-28 14:47:05+00:00 1.0 1394568162 1579 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 100 120 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-12-28 14:12:06+00:00 1.0 1394568162 1568 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2021-12-28 11:31:17+00:00 1.0 1394568162 1567 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-12-28 11:00:57+00:00 1.0 1394568162 1564 pump announcement hello everyone our next official pump will be scheduled for date sunday december 28 time 1500 pm gmt exchange binance target 230 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 200 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 2 days to make sure that we are fully prepared on december 28 we will be pumping again with a 230 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 200 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-12-26 22:47:47+00:00 1.0 1394568162 1561 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place best regards signed whales team 2021-12-26 12:54:40+00:00 1.0 1394568162 1533 pump announcement hello everyone our next official pump will be scheduled for date sunday december 26 time 1500 pm gmt exchange binance target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 400 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared on december 26 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 200 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-12-20 22:34:25+00:00 1.0 1394568162 1520 4 minutes be ready next post will be x coin 2021-12-19 14:56:02+00:00 1.0 1394568162 1519 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-12-19 14:47:15+00:00 1.0 1394568162 1512 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 100 120 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-12-19 14:16:54+00:00 1.0 1394568162 1500 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2021-12-19 11:30:26+00:00 1.0 1394568162 1499 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-12-19 11:00:04+00:00 1.0 1394568162 1463 pump announcement hello everyone our next official pump will be scheduled for date sunday december 19 time 1500 pm gmt exchange binance target 230 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 200 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on december 19 we will be pumping again with a 230 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 200 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately into binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-12-12 11:20:37+00:00 1.0 1394568162 1451 4 minutes be ready next post will be x coin 2021-12-05 14:56:07+00:00 1.0 1394568162 1450 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-12-05 14:43:16+00:00 1.0 1394568162 1442 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 100 120 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-12-05 14:14:44+00:00 1.0 1394568162 1431 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2021-12-05 11:42:38+00:00 1.0 1394568162 1430 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-12-05 11:04:01+00:00 1.0 1394568162 1393 pump announcement hello everyone our next official pump will be scheduled for date sunday december 5 time 1700 pm gmt exchange binance target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on december 5 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-11-28 18:44:19+00:00 1.0 1394568162 1391 phb pump result 101 profit +500 btc pumped we didnt get our target 340 but our members made a good profit a slow and gradual peak of almost 100 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-11-28 17:54:26+00:00 1.0 1394568162 1377 4 minutes be ready next post will be x coin 2021-11-28 16:56:03+00:00 1.0 1394568162 1376 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-28 16:47:55+00:00 1.0 1394568162 1369 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 100 120 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-11-28 16:15:58+00:00 1.0 1394568162 1357 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2021-11-28 13:00:17+00:00 1.0 1394568162 1356 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-28 12:00:28+00:00 1.0 1394568162 1353 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 300 to 340 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 340 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-11-28 11:01:01+00:00 1.0 1394568162 1320 brd update 479 right now thats amazing boooom we told you to buy brd not once but twice in the last few months we couldnt tell you exactly why because that would have cancelled this entire move we received insider information about brd that it was in negotiations to be acquired by coinbase which is exactly why we couldnt stress enough the fact that it was an extreme high potential gem we hope you all made amazing profits on this trade and expect to see a similar pump on december 5th … be ready for the official gem announcement signed whales team 2021-11-24 23:00:12+00:00 1.0 1394568162 1305 pump announcement hello everyone our next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared on november 28 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 300 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-11-23 22:06:55+00:00 1.0 1394568162 1301 mda pump result 211 profit +200 btc pumped target was 120 but we get +200 thats amazing all our members made a good profit a slow and gradual peak of almost 100 with great volume once again which means all members had a chance to make up to 200 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-11-23 22:01:40+00:00 1.0 1394568162 1290 4 minutes be ready next post will be x coin 2021-11-23 14:56:05+00:00 1.0 1394568162 1289 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-23 14:45:18+00:00 1.0 1394568162 1282 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 1030 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 100 120 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-11-23 14:16:29+00:00 1.0 1394568162 1270 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2021-11-23 11:00:26+00:00 1.0 1394568162 1269 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-23 10:00:28+00:00 1.0 1394568162 1266 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 100 to 420 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 100 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-11-23 09:01:02+00:00 1.0 1394568162 1261 pump announcement hello everyone our next official pump will be scheduled for date tuesday november 23 time 1500 pm gmt exchange binance target 120 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 1 days to make sure that we are fully prepared on november 23 we will be pumping again with a 120 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 100 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-11-22 18:29:04+00:00 1.0 1394568162 1258 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place best regards signed whales team 2021-11-21 14:55:13+00:00 1.0 1394568162 1218 pump announcement hello everyone our next official pump will be scheduled for date sunday november 21 time 1700 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on november 21 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 300 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-11-14 22:31:04+00:00 1.0 1394568162 1214 nas pump result 117 profit +180 btc pumped we didnt get our target 420 but our members made a good profit a slow and gradual peak of almost 100 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-11-14 22:12:05+00:00 1.0 1394568162 1202 4 minutes be ready next post will be x coin 2021-11-14 14:56:03+00:00 1.0 1394568162 1200 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-14 14:35:28+00:00 1.0 1394568162 1195 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 400 430 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-11-14 14:10:46+00:00 1.0 1394568162 1182 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2021-11-14 11:00:28+00:00 1.0 1394568162 1181 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-14 10:07:09+00:00 1.0 1394568162 1178 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 400 to 420 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 420 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-11-14 09:01:02+00:00 1.0 1394568162 1132 pump announcement hello everyone our next official pump will be scheduled for date sunday november 14 time 1700 pm gmt exchange binance target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on november 14 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-11-07 21:12:54+00:00 1.0 1394568162 1128 mth pump result 150 profit +300 btc pumped we didnt get our target 340 but our members made a good profit a slow and gradual peak of almost 150 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-11-07 20:55:39+00:00 1.0 1394568162 1117 4 minutes be ready next post will be x coin 2021-11-07 16:56:04+00:00 1.0 1394568162 1116 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-07 16:30:08+00:00 1.0 1394568162 1110 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 300 340 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-11-07 16:09:49+00:00 1.0 1394568162 1106 all our team ready for this amazing pump 2021-11-07 15:39:47+00:00 1.0 1394568162 1099 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin signed whales team 2021-11-07 13:00:02+00:00 1.0 1394568162 1098 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-11-07 12:00:13+00:00 1.0 1394568162 1095 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 300 to 340 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 340 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-11-07 11:00:23+00:00 1.0 1394568162 1057 pump announcement hello everyone our next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on november 7 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 300 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-10-31 17:38:39+00:00 1.0 1394568162 1055 ez pump result 100 profit +400 btc pumped we didnt get our target 230 but our members made a good profit a slow and gradual peak of almost 150 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-10-31 17:26:51+00:00 1.0 1394568162 1044 4 minutes be ready next post will be x coin 2021-10-31 16:56:11+00:00 1.0 1394568162 1041 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-10-31 16:20:57+00:00 1.0 1394568162 1037 next pump 1 hour and 30 minutes from now be ready 2021-10-31 15:30:17+00:00 1.0 1394568162 1025 4 minutes be ready next post will be x coin 2021-10-31 14:56:03+00:00 1.0 1394568162 1018 pump information ℹ️ we already know what happens when we involve the biggest of whales in the market price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 200 230 the main objective of this pump is for all our members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers signed whales team 2021-10-31 14:06:14+00:00 1.0 1394568162 1012 big gift from our whales we have 2 pumps today first pump at 1500 pm gmt second pump at 1700 pm gmt signed whales team 2021-10-31 13:26:38+00:00 1.0 1394568162 1005 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-10-31 11:31:28+00:00 1.0 1394568162 1003 our big pump on binance so make sure you have account there verified account signed whales team 2021-10-31 11:26:18+00:00 1.0 1394568162 1001 4 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 200 to 230 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 230 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 4 hours from now be prepared signed whales team 2021-10-31 10:00:47+00:00 1.0 1394568162 971 pump announcement hello everyone our next official pump will be scheduled for date sunday october 31 time 1500 pm gmt exchange binance target 230 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on october 31 we will be pumping again with a 230 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-10-24 18:40:38+00:00 1.0 1394568162 969 evx pump result 170 profit +370 btc pumped we didnt get our target 340 but our members made a good profit a slow and gradual peak of almost 150 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-10-24 18:13:01+00:00 1.0 1394568162 957 4 minutes be ready next post will be x coin 2021-10-24 16:56:04+00:00 1.0 1394568162 943 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-10-24 13:00:02+00:00 1.0 1394568162 942 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-10-24 12:00:07+00:00 1.0 1394568162 939 7 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 300 to 340 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 340 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 7 hours from now be prepared signed whales team 2021-10-24 10:01:23+00:00 1.0 1394568162 900 pump announcement hello everyone our next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared on october 24 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-10-14 15:03:13+00:00 1.0 1394568162 897 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place best regards signed whales team 2021-10-14 13:09:01+00:00 1.0 1394568162 883 3 days countdown if you want to have access to the coin names 1 hour before each pump we invite you to join our secret vip channel limited slots take advantage of this offer which will allow you to become financially free contact team thewhalesteam 2021-10-11 11:28:48+00:00 1.0 1394568162 880 pump announcement hello everyone our next official pump will be scheduled for date thursday october 14 time 1500 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared on october 14 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 300 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-10-10 22:09:25+00:00 1.0 1394568162 865 4 minutes be ready next post will be x coin 2021-10-10 16:56:04+00:00 1.0 1394568162 851 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-10-10 13:00:05+00:00 1.0 1394568162 850 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-10-10 12:10:00+00:00 1.0 1394568162 848 our big pump on binance so make sure you have account there verified account signed whales team 2021-10-10 11:50:05+00:00 1.0 1394568162 846 the big day has arrived 8 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 200 to 230 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 230 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 8 hours from now be prepared signed whales team 2021-10-10 09:09:33+00:00 1.0 1394568162 822 3 days countdown if you want to have access to the coin names 1 hour before each pump we invite you to join our secret vip channel limited slots take advantage of this offer which will allow you to become financially free contact team thewhalesteam 2021-10-07 10:00:56+00:00 1.0 1394568162 818 pump announcement hello everyone our next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance target 230 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared on october 10 we will be pumping again with a 230 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 300 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-10-06 10:21:26+00:00 1.0 1394568162 816 sky pump result 67 profit +100 btc pumped we didnt get our target 340 but our members made a good profit a slow and gradual peak of almost 150 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-10-05 16:42:07+00:00 1.0 1394568162 810 sky is a bonus pump ⚡ congratulations this is currently our longest sustaining and strongest pump we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy signed whales team 2021-10-05 15:25:42+00:00 1.0 1394568162 794 4 minutes be ready next post will be x coin 2021-10-05 14:56:03+00:00 1.0 1394568162 785 we have a special offer we will let you to know the coin pump for free before all our public channel send message whales only 5 random luck people send message thewhalesteam dont miss to be the lucky one selected signed whales team 2021-10-05 13:01:13+00:00 1.0 1394568162 781 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-10-05 11:00:02+00:00 1.0 1394568162 780 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-10-05 10:00:09+00:00 1.0 1394568162 777 ⚠️ the big day has arrived ⚠️ our big pump on binance 1500 pm gmt so make sure you have account there verified account 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 300 to 340 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 340 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-10-05 09:00:45+00:00 1.0 1394568162 767 we are pleased to inform our members that our team has added another mega whale from canada to our team the new whale have 800k 5 october 1500 pm gmt he will bring us the most amazing pump for sure note our vip subscription is open signed whales team 2021-10-04 09:39:30+00:00 1.0 1394568162 766 2 days countdown if you want to have access to the coin names 1 hour before each pump we invite you to join our secret vip channel limited slots take advantage of this offer which will allow you to become financially free contact team thewhalesteam 2021-10-03 20:18:34+00:00 1.0 1394568162 764 pump announcement hello everyone our next official pump will be scheduled for date thursday october 5 time 1700 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 2 days to make sure that we are fully prepared on october 5 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 300 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-10-03 19:49:57+00:00 1.0 1394568162 760 the result of our pump ez should have been similar to this pump we did a few weeks ago luckily we can guarantee with 100 certainty that we will be deploying all our resources and buying power towards making a massive pump on the next one for our members to recover and make a big amount of profits signed whales team 2021-10-03 19:37:15+00:00 1.0 1394568162 759 ez pump result 117 profit +400 btc pumped we didnt get our target 420 but our members made a good profit a slow and gradual peak of almost 150 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-10-03 19:34:01+00:00 1.0 1394568162 747 4 minutes be ready next post will be x coin 2021-10-03 16:56:26+00:00 1.0 1394568162 735 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-10-03 13:00:04+00:00 1.0 1394568162 734 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-10-03 12:00:12+00:00 1.0 1394568162 731 the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 400 to 420 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 420 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-10-03 11:07:55+00:00 1.0 1394568162 726 our big pump on binance so make sure you have account there verified account signed whales team 2021-10-01 11:29:03+00:00 1.0 1394568162 725 2 days countdown if you want to have access to the coin names 1 hour before each pump we invite you to join our secret vip channel limited slots take advantage of this offer which will allow you to become financially free contact team thewhalesteam 2021-10-01 10:07:53+00:00 1.0 1394568162 703 pump announcement hello everyone our next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance target 420 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on october 3 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-09-26 17:10:27+00:00 1.0 1394568162 701 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place best regards signed whales team 2021-09-26 17:02:26+00:00 1.0 1394568162 695 4 minutes be ready next post will be x coin 2021-09-26 16:56:10+00:00 1.0 1394568162 686 we have a special offer we will let you to know the coin pump for free before all our public channel send message whales only 5 random luck people send message thewhalesteam dont miss to be the lucky one selected signed whales team 2021-09-26 15:10:34+00:00 1.0 1394568162 682 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-09-26 13:05:49+00:00 1.0 1394568162 681 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-09-26 11:52:46+00:00 1.0 1394568162 678 the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 300 to 340 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 340 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-09-26 11:14:09+00:00 1.0 1394568162 665 5 days countdown if you want to have access to the coin names 1 hour before each pump we invite you to join our secret vip channel take advantage of this offer which will allow you to become financially free contact team thewhalesteam 2021-09-21 13:01:13+00:00 1.0 1394568162 661 pump announcement hello everyone our next official pump will be scheduled for date sunday september 26 time 1700 pm gmt exchange binance target 340 with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared on september 26 we will be pumping again with a 340 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 300 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-09-21 10:00:59+00:00 1.0 1394568162 657 here is fxs pump video everyone has been waiting for the replay of the first minute of our amazing pump today we will be announcing the next pump date shortly for vip membership contact thewhalesteam 2021-09-19 20:15:17+00:00 1.0 1394568162 656 fxs pump result 100 profit 437 btc pumped we didnt get our target 420 but our members made a good profit a slow and gradual peak of almost 150 with great volume once again which means all members had a chance to make up to 100 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-09-19 19:36:08+00:00 1.0 1394568162 645 4 minutes be ready next post will be x coin 2021-09-19 16:56:03+00:00 1.0 1394568162 633 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-09-19 13:00:53+00:00 1.0 1394568162 632 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-09-19 11:30:09+00:00 1.0 1394568162 629 the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 400 to 420 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 420 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-09-19 11:00:03+00:00 1.0 1394568162 626 1 day countdown if you want to have access to the coin names 1 hour before each pump we invite you to join our secret vip channel take advantage of this offer which will allow you to become financially free contact team thewhalesteam 2021-09-18 11:05:04+00:00 1.0 1394568162 621 2 days countdown if you want to have access to the coin names 1 hour before each pump we invite you to join our secret vip channel take advantage of this offer which will allow you to become financially free contact team thewhalesteam 2021-09-16 23:34:00+00:00 1.0 1394568162 612 pump announcement hello everyone our next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on september 19 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-09-12 21:26:53+00:00 1.0 1394568162 610 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place best regards signed whales team 2021-09-12 18:40:44+00:00 1.0 1394568162 604 4 minutes be ready next post will be x coin 2021-09-12 16:56:10+00:00 1.0 1394568162 595 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-09-12 14:03:28+00:00 1.0 1394568162 594 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-09-12 11:18:58+00:00 1.0 1394568162 592 the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 400 to 420 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 420 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-09-12 11:00:16+00:00 1.0 1394568162 588 results one of our vip membership alex from brazil budget 1k 3k in 3 minutes vib pump our last pump is amazing 2021-09-10 22:58:15+00:00 1.0 1394568162 582 results one of our vip membership abubakar from egypt budget 800 25k in 3 minutes vib pump our last pump is amazing 2021-09-07 22:54:31+00:00 1.0 1394568162 581 results one of our vip membership aayush from india budget 2k 7k in 3 minutes vib pump our last pump is amazing 2021-09-07 22:50:39+00:00 1.0 1394568162 570 pump announcement hello everyone the next official pump will be scheduled for date sunday september 12 time 1700 pm gmt exchange binance with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on september 12 we will be pumping again with a 420 target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 400 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-09-05 21:59:59+00:00 1.0 1394568162 566 vib pump result 196 profit 500 btc pumped we didnt get our target 340 but our members made a good profit a slow and gradual peak of almost 200 with great volume once again which means all members had a chance to make up to 196 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-09-05 17:32:59+00:00 1.0 1394568162 559 4 minutes be ready next post will be x coin 2021-09-05 16:56:02+00:00 1.0 1394568162 550 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-09-05 13:54:38+00:00 1.0 1394568162 549 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-09-05 11:53:46+00:00 1.0 1394568162 547 the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 300 to 340 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 340 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-09-05 11:00:04+00:00 1.0 1394568162 537 results one of our vip membership jaden from usa budget 400 1k in 3 minutes brd pump our last pump is amazing 2021-08-30 22:26:37+00:00 1.0 1394568162 534 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on september 5 we will be pumping again with a 340 + target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 340 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-08-29 17:45:52+00:00 1.0 1394568162 532 brd pump result 129 btc pumped we didnt get our target +400 but our members made a good profit a slow and gradual peak of almost 200 with great volume once again which means all members had a chance to make up to 180 profit within the first 3 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a good amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a amazing pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-08-29 17:37:02+00:00 1.0 1394568162 525 4 minutes be ready next post will be x coin 2021-08-29 16:56:02+00:00 1.0 1394568162 523 we received more than 11082 message on dm our team selected 5 random people with successfully sending coin name on dm 2021-08-29 16:17:57+00:00 1.0 1394568162 516 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin 2021-08-29 13:56:00+00:00 1.0 1394568162 514 the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 400 to 420 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 420 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-08-29 11:00:09+00:00 1.0 1394568162 511 results one of our vip membership jallal from egypt budget 6k 25k in 3 minutes nas pump our last pump is amazing 2021-08-27 21:37:27+00:00 1.0 1394568162 510 results one of our vip membership justin from usa budget 17k 60k in 3 minutes for pump our last pump is amazing 2021-08-27 21:30:29+00:00 1.0 1394568162 502 pump announcement hello everyone the next official pump will be scheduled for date sunday august 29 time 1700 pm gmt exchange binance with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared on august 29 we will be pumping again with a 420 + target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 420 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-08-22 22:28:01+00:00 1.0 1394568162 499 nas pump result 650 btc pumped possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 230 with great volume once again which means all members had a chance to make up to 230 profit within the first 2 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-08-22 20:44:38+00:00 1.0 1394568162 491 4 minutes be ready next post will be x coin 2021-08-22 16:56:09+00:00 1.0 1394568162 489 we received more than 5782 message on dm our team selected 5 random people with successfully sending coin name on dm 2021-08-22 16:30:27+00:00 1.0 1394568162 484 ⚠️ important note ⚠️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin ✨ only 3 hours left to our pump ✨ 2021-08-22 14:00:02+00:00 1.0 1394568162 483 4 hours left until our pump on binance tik tok tik tok 2021-08-22 13:01:00+00:00 1.0 1394568162 482 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-08-22 12:36:57+00:00 1.0 1394568162 480 the big day has arrived 6 hours remaining until the biggest and most spectacular pump signal of all time our target this time will be anywhere between 200 to 230 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 300 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 6 hours from now be prepared signed whales team 2021-08-22 11:20:14+00:00 1.0 1394568162 476 results one of our vip membership david from canada budget 3500 10k in 3 minutes for pump 2021-08-20 00:29:06+00:00 1.0 1394568162 475 results one of our vip membership ahmed from egypt budget 800 3k in 3 minutes for pump 2021-08-20 00:27:15+00:00 1.0 1394568162 474 2 days before the big pump 2021-08-19 23:17:59+00:00 1.0 1394568162 470 we are pleased to inform our members that our team has added another mega whale from egypt egyptian to our team the new whale have 187 btc 22 august 1700 pm gmt he will bring us the most amazing pump for sure signed whales team 2021-08-18 23:16:00+00:00 1.0 1394568162 458 results vip membership 50k in 3 minutes on our ez pump thats why our vip secret is important contact our team thewhalesteam 2021-08-14 00:25:31+00:00 1.0 1394568162 454 pump announcement hello everyone the next official pump will be scheduled for date sunday august 22 time 1700 pm gmt exchange binance with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared on august 22 we will be pumping again with a 230 + target we will also try reaching more than 150 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 230 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky and our last pump ez which was 4 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-08-12 21:07:08+00:00 1.0 1394568162 450 here is ez pump video everyone has been waiting for the replay of the first minute of our amazing pump yesterday we will be announcing the next pump date shortly for vip membership contact thewhalesteam 2021-08-09 15:15:09+00:00 1.0 1394568162 448 ez pump result possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 329 with great volume once again which means all members had a chance to make up to 300 profit within the first 2 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement signed whales team 2021-08-08 18:34:43+00:00 1.0 1394568162 445 4 minutes be ready next post will be x coin 2021-08-08 16:56:14+00:00 1.0 1394568162 443 ⌛ 15 minutes left ⏳ until the big pump make sure that you have btc on your binance account 2021-08-08 16:45:10+00:00 1.0 1394568162 439 3 hours left until our pump on binance tik tok tik tok 2021-08-08 14:00:05+00:00 1.0 1394568162 438 important notes ️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin ✨ only 4 hours left to our pump ✨ 2021-08-08 13:00:04+00:00 1.0 1394568162 436 ⚠️ 7 hours left ⚠️ until the pump make sure that you have btc on your binance account vip information we are open vip subscription just 33 people can join us people ask why vip channel is important we share the coin name 1 hour before all our public channels more profits 100 winner take action now contact team thewhalesteam 2021-08-08 11:08:28+00:00 1.0 1394568162 435 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell u signed whales team 2021-08-08 10:01:17+00:00 1.0 1394568162 433 we are pleased to inform our members that our team has added another mega whale from dubai emirate to our team the new whale have 214 btc 8 august 1700 pm gmt he will bring us the most amazing pump again signed whales team 2021-08-06 13:31:04+00:00 1.0 1394568162 429 3 days ⚠️ before the big pump ever 2021-08-05 11:41:07+00:00 1.0 1394568162 427 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance with our volumes averaging 40 to 80 million per pump and peaks reaching up to 300 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared on august 8 we will be pumping again with a 230 + target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 230 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky which was 3 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-08-04 19:57:08+00:00 1.0 1394568162 425 pump drep result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned signed whales team 2021-07-25 18:14:12+00:00 1.0 1394568162 417 4 minutes be ready next post will be x coin 2021-07-25 16:56:12+00:00 1.0 1394568162 415 ⌛ 30 minutes left ⏳ until the big pump make sure that you have btc on your binance account 2021-07-25 16:30:02+00:00 1.0 1394568162 412 we have a special offer we will let you to know the coin pump before all our public channel just send a message only 5 random luck people contact us on thewhalesteam dont miss to be the lucky one selected signed whales team 2021-07-25 15:07:01+00:00 1.0 1394568162 411 2 hours left until our pump on binance tik tok tik tok 2021-07-25 15:01:06+00:00 1.0 1394568162 410 important notes ️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin ✨ only 3 hours left to our pump ✨ 2021-07-25 14:00:02+00:00 1.0 1394568162 408 ⚠️ 4 hours left ⚠️ until the pump make sure that you have btc on your binance account vip information we are open vip subscription just 7 people can join us people ask why vip channel is important we share the coin name 1 hour before all our public channels more profits 100 winner take action now contact team thewhalesteam 2021-07-25 13:00:03+00:00 1.0 1394568162 407 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell u signed whales team 2021-07-25 12:41:30+00:00 1.0 1394568162 391 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 1700 pm gmt exchange binance with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on july 25 we will be pumping again with a 500 + target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs sky which was 3 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-07-12 12:20:01+00:00 1.0 1394568162 388 pump result the volume was amazing once again with a great 2nd wave that lasted a good amount of time however the pump did not go as we had initially planned we did manage to almost get our coin trending on twitter as we can see thousands of posts about it which is great and confirms that there is a big commitment from our members we will attempt to make that effect much bigger on the next one and coordinate it much better before the signal there was a lot of activity on our coin and our team had to decide between postponing the pump or doing the pump we decided to still do the pump which was unfortunately not the right decision in order to make sure this never happens again we can guarantee that we will be taking the following measures on the next pump the coin will be given at the absolute bottom in order to guarantee bigger profits for our members our team will support the price after all our members have bought by injecting a massive amount of btc this will guarantee that all our members can start with a good profit regardless of where they bought last but not least we will make sure that our targets will be met in order to guarantee a great pump for everyone we will announce the next official pump date soon stay tuned signed whales team 2021-07-11 18:09:20+00:00 1.0 1394568162 383 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:00:22+00:00 1.0 1394568162 382 2 minutes be ready next post will be x coin 2021-07-11 16:58:26+00:00 1.0 1394568162 378 ⌛ 30 minutes left ⏳ until the big pump make sure that you have btc on your binance account 2021-07-11 16:30:09+00:00 1.0 1394568162 377 we have a special offer we will let you to know the coin pump before all our public channel just send a message only 5 random luck people contact us on thewhalesteam dont miss to be the lucky one selected signed whales team 2021-07-11 16:06:10+00:00 1.0 1394568162 375 2 hours left until our pump on binance tik tok tik tok 2021-07-11 15:00:58+00:00 1.0 1394568162 374 important notes ️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin ✨ only 3 hours left to our pump ✨ 2021-07-11 14:01:18+00:00 1.0 1394568162 373 ⚠️ 6 hours left ⚠️ until the pump make sure that you have btc on your binance account vip information we are open vip subscription just 7 people can join us people ask why vip channel is important we share the coin name 1 hour before all our public channels more profits 100 winner take action now contact team thewhalesteam 2021-07-11 11:00:02+00:00 1.0 1394568162 372 everything was carefully prepared we will invest a big large amount of money in the pump this time get ready and keep one thing in mind never guess the coin before we tell u signed whales team 2021-07-11 09:53:37+00:00 1.0 1394568162 351 reminding our big pump 5 days from now target 230 2021-07-06 15:42:02+00:00 1.0 1394568162 340 4 minutes be ready next post will be x coin 2021-07-05 12:56:04+00:00 1.0 1394568162 336 ⚠️ 30 minutes left ⚠️ until the pump make sure that you have money on your binance futures 2021-07-05 12:30:39+00:00 1.0 1394568162 333 important note ️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin ✨ only 1 hours left to our pump ✨ 2021-07-05 12:00:02+00:00 1.0 1394568162 332 2 hours left until our pump on binance futures tik tok tik tok 2021-07-05 11:08:39+00:00 1.0 1394568162 331 this time is good to pump so we have bonus pump annoucement so that everyone can participate in pumping tomorrow we are happy to announce this bonus pump exchange binance futures date 05072021 monday time 1300 pm gmt we promise a more powerful pump than last time we are constantly calling for our new whales to join our team so we can make even more powerful pumps share and invite your friends to join our channel to get the benefits signed whales team 2021-07-04 11:12:46+00:00 1.0 1394568162 326 our next big pump ever date sunday july 11 time 1700 pm gmt our target +230 this pump free for all 2021-07-01 22:25:29+00:00 1.0 1394568162 317 note message this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 200 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-06-30 14:32:22+00:00 1.0 1394568162 316 hello everyone the next official pump date sunday july 11 time 1700 pm gmt exchange binance with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members on july 11 we will be pumping again with the same 230 target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social media 2021-06-30 14:30:25+00:00 1.0 1394568162 310 ⚠️ 30 minutes left ⚠️ until the pump make sure that you have money on your binance futures 2021-06-29 12:30:07+00:00 1.0 1394568162 309 important note ️ our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess pump coin ✨ only 1 hours left to our pump ✨ 2021-06-29 12:00:31+00:00 1.0 1394568162 308 2 hours left until our pump on binance futures tik tok tik tok 2021-06-29 11:00:15+00:00 1.0 1394568162 307 2 hours 30 minutes left market green amazing pump 2021-06-29 10:30:13+00:00 1.0 1394568162 306 binance futures international date 29062021 tomorrow time 1300 pm gmt stay tuned tomorrow 2021-06-28 14:49:39+00:00 1.0 1394568162 302 our coin was prepumped its so bad so we decided to postpone this pump stay tuned further information will be announced soon signed whales team 2021-06-28 13:03:58+00:00 1.0 1394568162 300 4 minutes be ready next post will be x coin 2021-06-28 12:56:08+00:00 1.0 1394568162 299 ⚠️ 30 minutes left ⚠️ until the pump make sure that you have money on your binance futures 2021-06-28 12:30:01+00:00 1.0 1394568162 297 our team has always wanted to deliver best pumps so there are a few things everyone should pay attention to no prepump very important no dump dont guess coin pump ✨ only 2 hours left to our pump ✨ 2021-06-28 11:06:19+00:00 1.0 1394568162 291 2 hours left until our pump on binance futures tik tok tik tok 2021-06-28 10:00:06+00:00 1.0 1394568162 289 dear members we apologize but our team has decided to postpone this pump because recently the activity on the altcoin market is less optimal for a big pump and our pump may be less effective since we will be targeting a very high gain in the next pump we are waiting for the alts market to stabilize and we will inform you as soon as possible about the new date when the pump will take place most likely our next pump will be in 23 weeks but dont worry tomorrow futures pump binance futures international date 28062021 monday time 1300 pm gmt best regards signed whales team 2021-06-27 17:32:35+00:00 1.0 1394568162 288 4 minutes be ready next post will be x coin 2021-06-27 16:56:02+00:00 1.0 1394568162 287 ⚠️ 30 minutes left ⚠️ until the pump make sure that you have btc on your binance account 2021-06-27 16:30:06+00:00 1.0 1394568162 285 everything was carefully prepared we will invest a large amount of money in the big pump this time only 4 hours left get ready and keep one thing in mind never guess the coin before we tell you signed whales team 2021-06-27 13:00:04+00:00 1.0 1394568162 284 6 hours left until our big pump on binance exchange tik tok tik tok 2021-06-27 11:00:01+00:00 1.0 1394568162 280 our target will be 230 1 we will be using the btc 2 hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do 3 if you plan to use your whole balance you can buy using 50 or 70 of your balance initially at market price use the remaining of your balance to place buy orders 4 when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up 5 our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump 6 after buying we highly suggest to place buy orders below the market price as the price moves up 7 millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible signed whales team 2021-06-25 12:29:12+00:00 1.0 1394568162 278 ✉️ message ✉️ share our channel with your friends family more people big pump more profit remember that signed whales team 2021-06-23 23:07:57+00:00 1.0 1394568162 276 our old and gold pump nxs amazing profit our next pump 100 gonna be like nxs because our team work hard for it we are open vip subscription just 10 people can join us people ask why vip channel is important we share the coin name 1 hour before all our public channels more profits 100 winner take action now contact team thewhalesteam 2021-06-23 18:51:25+00:00 1.0 1394568162 271 wabibtc pump result total volume was over 560 btc which is around 18 million which is still good for the current market before the signal the market had sold a big amount of wabi which affected the expected results by probably around 90 108 however in exchange it did give a better buying opportunity for our members the pump had a good and slow rise to the peak allowing our members to make a good amount of profit we also had multiple waves which allowed a lot of dip opportunities to be bought and sold back at a higher price despite the current bad market we are currently trying to match our big expectations as we have been able to reach on average 200290 results in the past while the market was still good with volumes reaching up 80 million we are aware that those are the big results that everyone wants and would like to let our members know that our team is working hard to try to provide those results again we have a strong team of whales big community leaders and the biggest traders in the cryptocurrency ecosystem with us and you can be sure that we will be able to provide those big results again once the market has returned back to normal before announcing our pump we will make sure that we will be able to reach each at least 170250 in our next pump and for that we will need the market to be a little more bullish again once we see that the market is good and ready for a pump we will make our big announcement on that note we received alot of messages of appreciation for this pump and we are glad many members managed to make profit stay tuned signed whales team 2021-06-21 06:51:46+00:00 1.0 1394568162 266 dont forget this pump date thats biggest pump remember that signed whales team 2021-06-20 18:33:16+00:00 1.0 1394568162 261 4 minutes be ready next post will be x coin 2021-06-20 16:56:04+00:00 1.0 1394568162 260 ⚠️ 30 minutes left ⚠️ until the pump make sure that you have btc on your binance account 2021-06-20 16:30:03+00:00 1.0 1394568162 258 everything was carefully prepared we will invest a large amount of money in the pump this time only 2 hours left get ready and keep one thing in mind never guess the coin before we tell u signed whales team 2021-06-20 15:00:18+00:00 1.0 1394568162 257 5 hours left until our pump tik tok tik tok 2021-06-20 12:00:07+00:00 1.0 1394568162 255 6 hours left until the biggest pump our target will be 100 profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 30 or 50 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible signed whales team 2021-06-20 11:00:03+00:00 1.0 1394568162 245 bonus pump date sunday 20 june time 5 pm gmt exchange binance the alt season of june is coming and we will start this month strong bonus with a huge 100 profit the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended may with a huge profit rate our vip memberships have won the total of the following profit rates our vip members buy the coin 1 hour and provided a great profits we are the most reliable and best pump channel in the world contact team thewhalesteam 2021-06-16 20:31:42+00:00 1.0 1394568162 241 free pump announcement this pump will take place on the binance exchange on sunday june 27 at 1700 pmgmt dear members we are more than ready for this pump this time our pump is joined by other groups of investors thanks to which we will achieve a better result one of them with 2 millions members we have also developed a new workflow to prevent price surges in addition weve been making a lot of marketing moves recently that will also add volume to us over time several thousand investors joined our vip channel on telegram in the last 24 hours this pump is definitely going to be huge signed whales team 2021-06-15 00:13:14+00:00 1.0 1394568162 238 btc pumping hard next to our pump coin stmx 2021-06-14 13:18:02+00:00 1.0 1394568162 232 4 minutes be ready next post will be x coin 2021-06-14 12:56:19+00:00 1.0 1394568162 231 ⚠️ 9 minutes left ⚠️ until the big pump make sure that you have btc on your binance account 2021-06-14 12:51:20+00:00 1.0 1394568162 230 everything was carefully prepared we will invest a large amount of money in the pump this time only 20 minutes left get ready and keep one thing in mind never guess the coin before we tell u signed whales team 2021-06-14 12:40:02+00:00 1.0 1394568162 228 important information in 1 hour it will be time the next big pump is coming soon there will be many traders buying in large quantities so make sure you buy early before the outsiders buy in we are pumping a btc paring today so please make sure you have enough btc in your account on binancecom coinnamebtc not binanceus our whales team will buy during the pump and support so you will have the opportunity to make profit more often during the pump be ready we will start on time signed whales team 2021-06-14 12:00:55+00:00 1.0 1394568162 227 2 hours left until our big pump tik tok tik tok 2021-06-14 11:02:35+00:00 1.0 1394568162 226 less than 3 hours to our big pump 2021-06-14 10:01:10+00:00 1.0 1394568162 223 pump bonus tomorrow exchange binance international date 14062021 monday time 1300 pm gmt the market condition for a pump is more than perfect lots of new people getting into crypto keep inviting signed whales team 2021-06-13 20:56:46+00:00 1.0 1394568162 214 4 minutes be ready next post will be x coin 2021-06-13 16:54:05+00:00 1.0 1394568162 213 ⚠️ 10 minutes left ⚠️ until the big pump make sure that you have btc on your binance account 2021-06-13 16:50:03+00:00 1.0 1394568162 211 important information in 1 hour it will be time the next big pump is coming soon there will be many traders buying in large quantities so make sure you buy early before the outsiders buy in we are pumping a btc paring today so please make sure you have enough btc in your account on binancecom coinnamebtc not binanceus our whales team will buy during the pump and support so you will have the opportunity to make profit more often during the pump be ready we will start on time signed whales team 2021-06-13 16:00:03+00:00 1.0 1394568162 209 3 hours left until our big pump tik tok tik tok 2021-06-13 14:00:02+00:00 1.0 1394568162 208 4 hours and 30 minutes left until the biggest pump of all time our target will be +300 profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 50 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible signed whales team 2021-06-13 10:30:13+00:00 1.0 1394568162 207 today our big pump on binance invest in your future and be a partner in this great family we inform to our vip membership the coin name 1 hour before our public channel send a message now hurry up we are the most reliable and best pump channel in the world premium dm thewhalesteam 2021-06-13 09:02:58+00:00 1.0 1394568162 206 the day has arrived tomorrow our biggest pump coin of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready signed whales team 2021-06-12 18:54:36+00:00 1.0 1394568162 197 pump announcement date sunday jun 13 time 1700 pm gmt exchange binance with our volumes averaging 70 to 80 million per pump and peaks reaching up to 478 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance exchange we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 5 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed whales team 2021-06-08 20:49:59+00:00 1.0 1394568162 192 4 minutes be ready for it next post will be the coin name 2021-06-06 16:56:03+00:00 1.0 1394568162 191 ⚠️ 10 minutes left ⚠️ until the big pump make sure that you have btc on your binance account 2021-06-06 16:50:02+00:00 1.0 1394568162 189 important info in 1 hour it will be time the next big is coming soon there will be many traders buying in large quantities so make sure you buy early before the outsiders buy in we are pumping a btc paring today so please make sure you have enough btc in your account on binancecom coinnamebtc not binanceus our whales will buy during the pump and support so you will have the opportunity to make profit more often during the pump be ready we will start on time signed whales team 2021-06-06 16:02:29+00:00 1.0 1394568162 188 2 hours and 40 minutes left until the biggest pump of all time our target will be +400 profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 50 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible signed whales team 2021-06-06 14:23:09+00:00 1.0 1394568162 186 5 hours left until the pump tik tok tik tok 2021-06-06 12:00:36+00:00 1.0 1394568162 185 our big pump today at 17 pm gmt we gonna share the coin name 1 hour on vip before our public channel 2021-06-05 23:00:03+00:00 1.0 1394568162 180 what do we do differently we want to educate our community to become successful crypto investors therefore we want to deliver more value in this group than in any other group in the industry whales stands for success whales stands for innovation we will revolutionize this industry and want you to be a part of it we had a very successful pump on the 1st of may and received a lot of positive feedback on dm it is very important to us that you all achieve positive results accordingly you must prepare perfectly for a pump step 1 we usually pump in btc pairing means it is very important that you have enough btc available step 2 open telegramdiscord and binance in splitscreen so that you can see both windows at a glance on your screen step 3 do not buy everything at oncebuy in increments for example 2btc 1btc 05btc 05btc step 4 dont sell too early because that might scare off slower investors and you sell to cheap in the following days we will keep you updated with all kinds of information so that you are ready for the next big pump stay tuned signed whales team 2021-06-03 12:17:39+00:00 1.0 1394568162 176 5 days left until our big pump every pump is bigger than before time is moving faster 2021-06-01 01:29:47+00:00 1.0 1394568162 175 ⚠️ pump coin announcement ⚠️ hello everyone our next pump will be scheduled date date sunday june 6 time 1700 pm gmt exchange binancecom dear members its finally time again we have been working for a long time on a this pump with more profitable strategy taking into calculation the power and volume of our next pump we are sure that this pump will now set new standards the volume will increase 35x and we expect a result of + 500 make sure that you also profit of it we give you information on the next few days still precise instructions on how to make the most profits stay tuned signed whales team 2021-05-31 08:04:28+00:00 1.0 1394568162 173 pump result 600 btc volume which is around 21 million price market now the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 90 120 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 300 500 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned signed whales team 2021-05-30 18:05:43+00:00 1.0 1394568162 169 the coin we have picked to pump today is oax oax is looking perfect for a pump right now 2021-05-30 17:00:22+00:00 1.0 1394568162 168 4 minutes be ready for it next post will be the coin name 2021-05-30 16:57:26+00:00 1.0 1394568162 167 ⚠️ 10 minutes left ⚠️ until the big pump make sure that you have btc on your binance 2021-05-30 16:50:11+00:00 1.0 1394568162 165 130 minutes left until the big pump make sure that you have btc on your balance 2021-05-30 15:30:06+00:00 1.0 1394568162 164 5 hours and minutes left until the biggest pump signal of all time our target will be +300 profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible signed whales team 2021-05-30 12:04:27+00:00 1.0 1394568162 163 binance pump today at 17 pm gmt 2021-05-30 10:28:08+00:00 1.0 1394568162 160 2 days left until the biggest pump of all time our target will be 300+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it signed whales team 2021-05-28 13:39:06+00:00 1.0 1394568162 159 pump announcement date sunday may 30 time 1700 pm gmt exchange binance with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 3 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance exchange we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 3 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned signed thewhalesteam 2021-05-27 09:42:28+00:00 1.0 1394568162 158 pump result 200 btc volume which is around 76 million the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 98 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 200 500 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned 2021-05-26 19:56:58+00:00 1.0 1394568162 154 the coin we have picked to pump today is nxs nxs is looking perfect for a pump right now our target is high 2021-05-26 17:00:25+00:00 1.0 1394568162 153 4 minutes be ready for it next post will be the coin name 2021-05-26 16:56:05+00:00 1.0 1394568162 152 10 minutes left until the pump make sure that you have btc on your balance 2021-05-26 16:50:34+00:00 1.0 1394568162 151 15 minutes left until the pump we will be pumping a coin with only 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 200+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up for those trading from the us you can use a vpn to make a binance account signed whales team 2021-05-26 16:45:24+00:00 1.0 1394568162 150 60 minutes left until the pump in our next post you will get more information on how to pump 2021-05-26 16:00:53+00:00 1.0 1394568162 147 6 hours left until the pump tik tok tik tok 2021-05-26 11:08:00+00:00 1.0 1394568162 143 pump announcement date wednesday 26 may time 5 pm gmt 1700 gmt exchange binance we decided to pump earlier because all the coins are at an amazing price low with the current market condition we will be able to make a profit of 200 or even more as for the previous pump announcement we will keep you updated it is possible that we will organize a second pump on the same day we informed you earlier signed whales team 2021-05-25 12:17:38+00:00 1.0 1394568162 137 dear members we have discussed all morning and we finally came to a decision as you all know we should have a pump tonight however we will postpone the pump to next week sunday 2021 may 30 at 17 pm gmt the experience teaches us that in day that bitcoins price droped significantly the pumps always turn out the be worse the reason for this is the amount of outsiders out of bitcoin instead of buying alts thich causes insecurity on the altcoins order books we are sorry for the people that really wanted a pump today we care a lot about our members and pumping now would be too risky we want our members to make the biggest amount of profit possible and we see a better opportunity coming wednesday because of the reason named above again we would love to pump today however we can better be safe than sorry i know there is a lot of hype and excitement for the pump but we can guarantee that the pump 30 may would be a lot better than today signed whales team 2021-05-23 16:02:35+00:00 1.0 1394568162 136 4 minutes be ready for it next post will be the coin name 2021-05-23 15:57:16+00:00 1.0 1394568162 121 4 minutes be ready for it next post will be the coin name 2021-05-09 16:56:04+00:00 1.0 1394568162 118 5 hours 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great family we inform our vip members the coin name before the public channel and they buy it send a message now hurry up we are the most reliable and best pump channel in the world premium member contact thewhalesteam 2021-05-09 11:32:30+00:00 1.0 1394568162 116 4500 btc pumped on bcd thats our big pump on may whales team thewhalesteam 2021-05-06 23:23:02+00:00 1.0 1394568162 113 whales 4 days in order for this pump to be successful and for everyone to make a profit please do the following once the coin has been announced 1 buy the coin using your bitcoins btc pair only 2 promote the post pump to all available social media reddit telegram discord twitter facebook instagram 3 wait for the high of second wave before start selling 4 only sell in parts do not dump 5 enjoy the profits 2021-05-04 22:41:08+00:00 1.0 1394568162 112 dear members we will postpone tonights pump as we are experiencing problems with the discord server the server has been growing a lot past week and this is causing server issues we are communicating with discord to increase the server capacity but this wont be solved until monday we have decided to push back the pump a few days the new details are as follows exchange binancecom date 9 may 2021 time 5 pm gmt thanks for understanding us the whales team 2021-05-02 16:09:15+00:00 1.0 1394568162 110 tik tok tik tok ⌛ 1 day before the big pump ✈️ the time is moving faster 2021-05-01 15:07:37+00:00 1.0 1394568162 107 bonus binance pump announcement date sunday 2 may time 5 pm gmt exchange binance target 80 120 the alt season of may is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed april with great success we ended april with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day ago provided great profits we are the most reliable and best pump channel in the world premium membership thewhalesteam 2021-04-28 12:51:52+00:00 1.0 1394568162 105 pump result 850 btc volume which is around 45 million the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 120 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 200 600 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned the whales team 2021-04-25 20:26:12+00:00 1.0 1394568162 100 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 500+ 2021-04-25 17:00:23+00:00 1.0 1394568162 99 1 minutes left the next message will be the coin name 2021-04-25 16:59:06+00:00 1.0 1394568162 93 free binance pump announcement date today just 3 hours left time 1700 pm gmt exchange binance 3 hous from now we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we will make sure that all of our members make amazing profits we have 30 days to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we will be targeting 600 profit once again we will combine the power of all our groups and partners to bring the very best pump possible ⚠️ free pump for all world ⚠️ join us now and invite your friends to make pump bigger join us on telegram binancewhalespumpssignals telegram username 2021-04-25 14:26:07+00:00 1.0 1394568162 92 ⏳ 1 day left ⌛ our target will be 600+ profit we will be using the btc for pump hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible the whales team 2021-04-24 12:43:44+00:00 1.0 1394568162 90 25 april sunday at 17 pmgmt we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we will make sure that all of our members make amazing profits we have 30 days to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we will be targeting 600 profit once again we will combine the power of all our groups and partners to bring the very best pump possible ⚠️ pump free for all ⚠️ join us now and invite your friends to make pump bigger join us on telegram binancewhalespumpssignals telegram username 2021-04-22 14:08:44+00:00 1.0 1394568162 87 binance pump announcement date sunday april 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 6 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned our vip members have won the total of the following profit rates we are the most reliable and best pump channel in the world ⭐ benefits for our vip ⭐ all vip users will get coin name 1 hour or 1 day before public channel and they have chances to gain 300500 profit 3 signals everyday coaching 30 minutes a week vip pumps every week limited people to joined vip 5 only and well closed contact team thewhalesteam 2021-04-18 23:40:58+00:00 1.0 1394568162 84 whales pump result 1450 btc volume in total which is around 90 million with a peak of 160 we have given the signal at the absolute bottom in order to make sure everyone has the best opportunity of buying at a low price we hope many of you managed to make decent profit although we didnt reach our 500 target we will be doing something new in the next pump to make sure we hit our 500 target stay tuned ✈️ 2021-04-11 22:56:17+00:00 1.0 1394568162 83 thats what im talking about our new ⭐ vip membership ⭐ 8k just in 1 minutes of our pump happy members ✈️ the whales team 2021-04-11 18:24:24+00:00 1.0 1394568162 82 +1300 btc boosted to via coin just in 2 minutes ✈️ this is the power of whales team ⭐ benefits for our vip ⭐ all vip users will get coin name 1 hour or 1 day before public channel and they have chances to gain 300500 profit 3 signals everyday coaching 30 minutes a week vip pumps every week limited people to joined vip 5 only and well closed contact us thewhalesteam 2021-04-11 17:30:32+00:00 1.0 1394568162 77 the coin we have picked to pump today is via via is looking perfect for a pump right now our target is 500+ 2021-04-11 17:00:32+00:00 1.0 1394568162 73 free binance pump announcement date today time 1700 pm gmt exchange binance today we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we will make sure that all of our members make amazing profits we have 30 days to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we will be targeting 700 profit once again we will combine the power of all our groups and partners to bring the very best pump possible ⚠️ pump is free ⚠️ join us now and invite your friends to make pump bigger join us on telegram binancewhalespumpssignals telegram username 2021-04-11 10:00:12+00:00 1.0 1394568162 72 1 day remaining until our biggest pump signal event on binance the whales team 2021-04-10 00:44:01+00:00 1.0 1394568162 71 ⭐ benefits for our vip ⭐ all vip users will get coin name 1 hour or 1 day before public channel and they have chances to gain 300500 profit 3 signals everyday ☕ coaching 30 minutes a week vip pumps every week benefits for our free group free members will get coin name few seconds before pump and they can gain 1030 from pump no coaching no signals limited people to joining vip 3 only and well closed contact us thewhalesteam 2021-04-10 00:36:23+00:00 1.0 1394568162 67 4 days left until our biggest pump on binance be ready 2021-04-07 00:28:02+00:00 1.0 1394568162 66 our next history free pump date +++++++++++++++++++++++++ note message share this announcement with all your friends to make this pump bigger that ever ✈️ +++++++++++++++++++++++++ whales team 2021-04-06 01:56:57+00:00 1.0 1394568162 52 another pump coin name the coin we have picked to pump today is pptbtc pptbtc is looking perfect for a pump right now our target is 200 2021-04-04 15:24:16+00:00 1.0 1394568162 51 another pump coin name the coin we have picked to pump today is wrxbtc wrxbtc is looking perfect for a pump right now our target is 400 2021-04-04 15:21:49+00:00 1.0 1394568162 49 2 minutes left next post will be coin name 2021-04-04 15:15:01+00:00 1.0 1394568162 48 pump moved pump will start for 5 minutes be prepared 2021-04-04 15:11:33+00:00 1.0 1394568162 47 8 hours remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up last time offer to join vip before pump ✉️ contact ✉️ thewhalesteam lastly enjoy the ride up 2021-04-04 08:08:41+00:00 1.0 1394568162 45 tomorrow vip pump ⛽ time 17 pm gmt 24 hours left until the binance vip pump tomorrow is a huge day more information about the pump will come tomorrow review the previous pumps and all posted helpful content so you are fully prepared and can make max gains note we will share the coin name here for free this is a gift pump for you guys the biggest pump ⛽ on april 11 so be ready for it 1 hour before public ☕ dm ☕ thewhalesteam 2021-04-03 16:32:58+00:00 1.0 1394568162 39 official pump announcement hello everyone the next official pump will be scheduled for date sunday april 11 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on the 4th of april we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 6 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned for more profits join us on official vip group 1 hour before posting coin name on free group dm thewhalesteam 2021-03-29 15:16:18+00:00 1.0 1394568162 34 pump results 1400 btc volume which is around 80m with this amount of volume we should normally be able to pump coins above 500+ fairly easily although the volume was massive we did not manage to reach our target of 5001000 after looking carefully at the data we saw that the sell pressure came from the eth pairing we are not quite sure exactly where those sells were coming from but we will look further into it to make sure it doesnt happen in our next pump and reach the result we were meant to reach in this pump thank you all for participating we will announce our next date shortly 2021-03-28 18:31:31+00:00 1.0 1394568162 31 the coin we have picked to pump today is pivx pivx is looking perfect for a pump right now our target is 1000 2021-03-28 17:07:42+00:00 1.0 1394568162 30 1 hour left until our big pump on binance 2021-03-28 16:02:14+00:00 1.0 1394568162 29 2 hour left things are looking great the market is currently amazing and we are confident that we will be able to surpass our 500+ target reminder that we will be pumping a coin that only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin the next post will be the coin name be prepared 2021-03-28 14:53:22+00:00 1.0 1394568162 28 6 hours left until the big pump on binance everything is looking great and we are more than ready we will give more instructions in order to be prepared in a few hours be ready 2021-03-28 11:04:59+00:00 1.0 1394568162 25 pump announcement hello everyone the next official pump will be scheduled for date sunday march 28 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 5 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-23 16:44:09+00:00 1.0 1394568162 21 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 17:07:36+00:00 1.0 1394568162 20 next post will be coin name 2021-03-21 16:57:07+00:00 1.0 1394568162 17 1 hour left things are looking great the market is currently amazing and we are confident that we will be able to surpass our 500+ target reminder that we will be pumping a coin that only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin be prepared 2021-03-21 16:00:02+00:00 1.0 1394568162 14 5 hours remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binancecom to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up 2021-03-21 11:46:04+00:00 1.0 1394568162 12 5 days left until our big pump on binance 2021-03-16 00:20:08+00:00 1.0 1394568162 10 official pump announcement hello everyone the next official pump date will be scheduled for date sunday march 21 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 profit with our previous pump and thousands of messages of appreciation coming from our community and traders all over the world we are ready to announce our next big pump this sunday we will be pumping again with much bigger expectations we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump binance has been waiting for our whales will do their part once again in this pump to make sure that all of our members make amazing profits we have 1 week to prepare for this pump we are confident enough to say that this pump event will be one of the biggest that we have done in the history of our group we are expecting hundreds of thousands of people all across the world to attend this pump we will be giving out more information about our upcoming pump in the upcoming days stay tuned to join vip channel dm our team thewhalesteam 2021-03-12 13:26:35+00:00 1.0 1394568162 8 our last pump result 1000 btc volume in a few minutes which is close to 60 million with a peak of 350 amazing pump everyone we are receiving unbelievable amounts of messages of appreciation and we are glad many of you managed to make massive profits in this pump we are officially the biggest pump community in the world our whales did their part once again and pushed the price up to 10000 satoshi for all our members to profit our volume keeps getting bigger every pump and we are confident that in the next pump we will be able to hit 5001000 profit for all our members stay tuned for the next pump 21 mar 1700 pm gmt 2021-03-12 13:20:03+00:00 1.0 1394568162 7 our last pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit stay tuned 2021-03-12 02:10:45+00:00 1.0 1120083950 5167 open future in binance time to buy we found a good coin to buy and hold we will send in next some minutes stay tuned 2021-10-26 18:32:59+00:00 1.0 1120083950 4793 we will give a pump signal soon it will support 7 more groups with us our group will take it from the front be ready type of purchase usdt 2021-10-17 14:57:29+00:00 1.0 1120083950 4237 i talked to whales and they said that a coin that is currently in support will be a pump are you ready 2021-10-08 16:17:02+00:00 1.0 1120083950 3805 kava i̇s pump coin buy and hold 2021-10-02 15:11:53+00:00 1.0 1120083950 2210 bal i̇s pump coin fast buy 2021-09-02 11:16:15+00:00 1.0 1120083950 2085 last 45 minutes next pump contact me spotsignalsvip 2021-08-29 15:21:34+00:00 1.0 1165772174 167 exchange bitmex coin xbtusd time frame 15 minutes 2020-07-23 12:12:59+00:00 1.0 1165772174 104 best indicator for quick scalping on this market exchange bitmex coin xbtusd time frame 5 minutes ⏰ profit 300 in less than 10 mn after indicator sent alert buy dont miss your chance to get best opportunity daily on this market 2020-06-02 01:35:25+00:00 1.0 1165772174 102 our indicator detecting last pump before price moving with high ✅ time frame 15 minutes ⏰ 2020-06-01 21:01:44+00:00 1.0 1457701461 55639 ┌qtum selling activity ├413 btc traded in 1 min 151 ├217 times the average volume ├net 1m volume 176 btc ├boost score 110 ├24h vol 2743 btc └last price 000021060 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 15:40:00+00:00 1.0 1457701461 55637 ┌zrx selling activity ├441 btc traded in 5 min 220 ├63 times the average volume ├net 5m volume 232 btc ├boost score 110 ├24h vol 2002 btc └last price 000001856 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 15:17:18+00:00 1.0 1457701461 55626 ┌theta buying activity ├133 btc traded in 15 min 101 ├10 times the average volume ├net 15m volume +234 btc ❇️ ├boost score 110 ├24h vol 13136 btc └last price 000011610 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 12:01:36+00:00 1.0 1457701461 55624 ┌dash selling activity ├357 btc traded in 1 min 108 ├155 times the average volume ├net 1m volume 182 btc ├boost score 110 ├24h vol 3311 btc └last price 000299400 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 11:26:32+00:00 1.0 1457701461 55620 ┌omg buying activity ├430 btc traded in 1 min 411 ├59 times the average volume ├net 1m volume +251 btc ❇️ ├boost score 110 ├24h vol 10465 btc └last price 000021460 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 06:58:30+00:00 1.0 1457701461 55619 ┌trx buying activity ├691 btc traded in 1 min 484 ├70 times the average volume ├net 1m volume +691 btc ❇️ ├boost score 210 ├24h vol 14285 btc └last price 000000167 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 06:45:51+00:00 1.0 1457701461 55618 ┌neo selling activity ├411 btc traded in 5 min 144 ├42 times the average volume ├net 5m volume 310 btc ├boost score 110 ├24h vol 2848 btc └last price 000069500 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 04:33:23+00:00 1.0 1457701461 55613 ┌rune buying activity ├698 btc traded in 1 min 441 ├64 times the average volume ├net 1m volume +683 btc ❇️ ├boost score 310 ├24h vol 15823 btc └last price 000022850 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 00:11:25+00:00 1.0 1457701461 55612 ┌powr buying activity ├386 btc traded in 5 min 150 ├43 times the average volume ├net 5m volume +0805 btc ❇️ ├boost score 810 ├24h vol 2573 btc └last price 000000623 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 00:09:41+00:00 1.0 1457701461 55611 ┌poly buying activity ├672 btc traded in 5 min 311 ├90 times the average volume ├net 5m volume +0604 btc ❇️ ├boost score 810 ├24h vol 2162 btc └last price 000001192 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-30 00:02:25+00:00 1.0 1457701461 55608 ┌reef selling activity ├489 btc traded in 1 min 777 ├112 times the average volume ├net 1m volume 484 btc ├boost score 110 ├24h vol 6290 btc └last price 000000054 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-29 22:42:47+00:00 1.0 1457701461 55604 ┌qsp buying activity ├359 btc traded in 1 min 227 ├327 times the average volume ├net 1m volume +253 btc ❇️ ├boost score 910 ├24h vol 1581 btc └last price 000000108 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-29 18:18:26+00:00 1.0 1457701461 55603 ┌ast buying activity ├500 btc traded in 15 min 196 ├19 times the average volume ├net 15m volume +132 btc ❇️ ├boost score 410 ├24h vol 2551 btc └last price 000000441 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-29 18:12:46+00:00 1.0 1457701461 55602 ┌nano selling activity ├461 btc traded in 15 min 131 ├13 times the average volume ├net 15m volume 251 btc ├boost score 110 ├24h vol 3528 btc └last price 000008950 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-29 17:19:44+00:00 1.0 1457701461 55601 ┌dego buying activity ├402 btc traded in 5 min 191 ├55 times the average volume ├net 5m volume +328 btc ❇️ ├boost score 510 ├24h vol 2098 btc └last price 000013770 binance signal before pump | make x2 x3 profit become a whale follow 2021-10-29 16:54:46+00:00 1.0 1457701461 40419 ┌dock buying activity ├124 btc traded in 15 min 101 ├10 times the average volume ├net 15m volume +435 btc ❇️ ├boost score 310 ├24h vol 12274 btc └last price 000000218 binance join the pump channel owned by dubai whales dubaipumpgroup ad 2021-04-26 20:20:52+00:00 1.0 1457701461 40417 ┌tomo selling activity ├697 btc traded in 15 min 101 ├10 times the average volume ├net 15m volume 411 btc ├boost score 110 ├24h vol 6918 btc └last price 000004060 binance join the pump channel owned by dubai whales dubaipumpgroup ad 2021-04-26 19:09:29+00:00 1.0 1457701461 40411 ┌atom buying activity ├260 btc traded in 15 min 101 ├10 times the average volume ├net 15m volume +751 btc ❇️ ├boost score 110 ├24h vol 25851 btc └last price 000040380 binance join the pump channel owned by dubai whales dubaipumpgroup ad 2021-04-26 16:50:26+00:00 1.0 1457701461 40410 ┌nkn buying activity ├186 btc traded in 15 min 101 ├10 times the average volume ├net 15m volume +440 btc ❇️ ├boost score 410 ├24h vol 18331 btc └last price 000001271 binance join the pump channel owned by dubai whales dubaipumpgroup ad 2021-04-26 16:19:02+00:00 1.0 1457701461 37368 next pump announcement date sunday march 28th time 500 pm gmt 800 pm ksa exchange binancecom pair btc موعد البامب القادم التاريخ الأحد 28 مارس الساعة 500 مساءاً بتوقيت غرينتش 800 مساءاً بتوقيت مكة المكرمة المنصة binancecom العملة مقابل btc share it menapump 2021-03-25 01:21:50+00:00 1.0 1457701461 32967 ┌storj buying activity ├526 btc traded in 15 min 184 ├18 times the average volume ├net 15m volume +100 btc ❇️ ├boost score 110 ├24h vol 2865 btc └last price 000001164 binance promo missed sand 3x pump this whale channel nailed it 2021-01-21 14:19:46+00:00 1.0 1457701461 1603 snm snmbtc binance 33 times the average volume 8779 btc traded in 5 minutes 116 net 5m volume +15408 btc last price 000000355 2019-06-16 14:55:07+00:00 1.0 1457701461 1598 dlt dltbtc binance 31 times the average volume 9270 btc traded in 5 minutes 106 net 5m volume +15696 btc last price 000001409 2019-06-16 12:36:32+00:00 1.0 1457701461 1595 sky skybtc binance 29 times the average volume 8046 btc traded in 5 minutes 101 net 5m volume +26226 btc last price 000018400 2019-06-16 12:00:02+00:00 1.0 1457701461 1585 lsk lskbtc 36 times the average volume over 1428 btc traded in 5 minutes 125 of 24h net 5m volume +15053 btc last price 000023360 binance 2019-06-16 07:14:49+00:00 1.0 1457701461 1553 snt sntbtc 61 times the average volume over 7291 btc traded in 5 minutes 211 of 24h net 5m volume +38694 btc last price 000000361 binance 2019-06-14 11:13:42+00:00 1.0 1457701461 1551 wpr wprbtc 36 times the average volume over 7045 btc traded in 5 minutes 125 of 24h net 5m volume +27577 btc last price 000000191 binance 2019-06-14 10:20:52+00:00 1.0 1457701461 1545 zec zecbtc 35 times the average volume over 8726 btc traded in 5 minutes 121 of 24h net 5m volume +58892 btc last price 001114600 binance 2019-06-14 09:02:17+00:00 1.0 1457701461 1538 via viabtc 48 times the average volume over 7187 btc traded in 5 minutes 167 of 24h net 5m volume +25603 btc last price 000007370 binance 2019-06-14 05:29:28+00:00 1.0 1457701461 1522 poe poebtc 41 times the average volume over 9480 btc traded in 5 minutes 141 of 24h net 5m volume +52489 btc last price 000000071 binance 2019-06-14 03:48:14+00:00 1.0 1457701461 1510 ren renbtc 140 times the average volume over 1541 btc traded in 5 minutes 485 of 24h net 5m volume +15237 btc last price 000000568 binance 2019-06-14 00:04:11+00:00 1.0 1457701461 1490 dnt dntbtc 71 times the average volume over 7280 btc traded in 5 minutes 248 of 24h net 5m volume +17586 btc last price 000000238 binance 2019-06-13 14:14:18+00:00 1.0 1457701461 1488 cmt cmtbtc 40 times the average volume over 7012 btc traded in 5 minutes 139 of 24h net 5m volume +47580 btc last price 000000486 binance 2019-06-13 13:47:43+00:00 1.0 1457701461 1486 edo edobtc 76 times the average volume over 7034 btc traded in 5 minutes 264 of 24h net 5m volume +37949 btc last price 000011490 binance 2019-06-13 13:00:36+00:00 1.0 1457701461 1458 etc etcbtc 35 times the average volume over 3210 btc traded in 5 minutes 122 of 24h net 5m volume +36281 btc last price 000106400 binance 2019-06-12 16:39:43+00:00 1.0 1457701461 1450 agi agibtc 42 times the average volume over 1301 btc traded in 5 minutes 146 of 24h net 5m volume +15730 btc last price 000000627 binance 2019-06-12 13:50:22+00:00 1.0 1457701461 1429 bnt bntbtc 36 times the average volume over 7903 btc traded in 5 minutes 126 of 24h net 5m volume +17792 btc last price 000009000 binance 2019-06-11 23:48:32+00:00 1.0 1457701461 1424 iotx iotxbtc 47 times the average volume over 7008 btc traded in 5 minutes 164 of 24h net 5m volume +30603 btc last price 000000140 binance 2019-06-11 21:30:13+00:00 1.0 1457701461 1412 edo edobtc 94 times the average volume over 1254 btc traded in 5 minutes 326 of 24h net 5m volume +15191 btc last price 000011140 binance 2019-06-11 16:04:19+00:00 1.0 1457701461 1399 appc appcbtc 36 times the average volume over 7028 btc traded in 5 minutes 127 of 24h net 5m volume +46207 btc last price 000001256 binance 2019-06-11 05:09:50+00:00 1.0 1457701461 1381 rdn rdnbtc 49 times the average volume over 7009 btc traded in 5 minutes 169 of 24h net 5m volume +51483 btc last price 000004432 binance 2019-06-10 20:47:20+00:00 1.0 1457701461 1376 mtl mtlbtc 72 times the average volume over 6273 btc traded in 5 minutes 250 of 24h net 5m volume +62268 btc last price 000006570 binance 2019-06-10 19:17:24+00:00 1.0 1457701461 1361 nuls nulsbtc 35 times the average volume over 1394 btc traded in 5 minutes 121 of 24h net 5m volume +98560 btc last price 000012450 binance 2019-06-10 10:12:59+00:00 1.0 1457701461 1357 mith mithbtc 35 times the average volume over 1492 btc traded in 5 minutes 121 of 24h net 5m volume +27472 btc last price 000000800 binance 2019-06-10 09:46:46+00:00 1.0 1457701461 1342 bcd bcdbtc 35 times the average volume over 9494 btc traded in 5 minutes 121 of 24h net 5m volume +40442 btc last price 000015900 binance 2019-06-10 06:39:17+00:00 1.0 1457701461 1327 xzc xzcbtc 40 times the average volume over 8808 btc traded in 5 minutes 140 of 24h net 5m volume +15051 btc last price 000110800 binance 2019-06-10 03:55:47+00:00 1.0 1457701461 1320 adx adxbtc 52 times the average volume over 7285 btc traded in 5 minutes 179 of 24h net 5m volume +15029 btc last price 000002007 binance 2019-06-10 00:35:23+00:00 1.0 1457701461 1307 snm snmbtc 37 times the average volume over 7548 btc traded in 5 minutes 130 of 24h net 5m volume +18591 btc last price 000000344 binance 2019-06-09 16:16:06+00:00 1.0 1457701461 1305 gxs gxsbtc 35 times the average volume over 7343 btc traded in 5 minutes 121 of 24h net 5m volume +17711 btc last price 000029000 binance 2019-06-09 16:06:49+00:00 1.0 1457701461 1294 brd brdbtc 56 times the average volume over 7036 btc traded in 5 minutes 196 of 24h net 5m volume +36651 btc last price 000005656 binance 2019-06-09 08:45:19+00:00 1.0 1457701461 1223 ong ongbtc 41 times the average volume over 7218 btc traded in 5 minutes 142 of 24h net 5m volume +16928 btc last price 000005671 binance 2019-06-08 00:14:34+00:00 1.0 1457701461 1219 gnt gntbtc 40 times the average volume over 7904 btc traded in 5 minutes 139 of 24h net 5m volume +38333 btc last price 000001202 binance 2019-06-08 00:04:52+00:00 1.0 1457701461 1197 storj storjbtc 42 times the average volume over 7000 btc traded in 5 minutes 147 of 24h net 5m volume +46196 btc last price 000003450 binance 2019-06-07 11:51:04+00:00 1.0 1457701461 1193 adx adxbtc 39 times the average volume over 8505 btc traded in 5 minutes 136 of 24h net 5m volume +38172 btc last price 000002067 binance 2019-06-07 10:39:13+00:00 1.0 1457701461 1190 blz blzbtc 39 times the average volume over 9095 btc traded in 5 minutes 136 of 24h net 5m volume +44646 btc last price 000000852 binance 2019-06-07 09:57:30+00:00 1.0 1457701461 1188 omg omgbtc 40 times the average volume over 1724 btc traded in 5 minutes 139 of 24h net 5m volume +26942 btc last price 000025600 binance 2019-06-07 08:43:27+00:00 1.0 1457701461 1172 snt sntbtc 46 times the average volume over 7003 btc traded in 5 minutes 161 of 24h net 5m volume +45756 btc last price 000000365 binance 2019-06-07 07:09:40+00:00 1.0 1457701461 1148 rlc rlcbtc 49 times the average volume over 7013 btc traded in 5 minutes 169 of 24h net 5m volume +40404 btc last price 000005470 binance 2019-06-06 15:24:08+00:00 1.0 1457701461 1131 fuel fuelbtc 78 times the average volume over 5215 btc traded in 5 minutes 272 of 24h net 5m volume +19750 btc last price 000000114 binance 2019-06-06 05:02:23+00:00 1.0 1457701461 1110 sky skybtc 36 times the average volume over 1081 btc traded in 5 minutes 125 of 24h net 5m volume +72372 btc last price 000021100 binance 2019-06-05 13:41:12+00:00 1.0 1457701461 1105 ost ostbtc 37 times the average volume over 1537 btc traded in 5 minutes 130 of 24h net 5m volume +29493 btc last price 000000346 binance 2019-06-05 11:11:11+00:00 1.0 1457701461 1103 tnt tntbtc 37 times the average volume over 7024 btc traded in 5 minutes 129 of 24h net 5m volume +46996 btc last price 000000388 binance 2019-06-05 10:46:30+00:00 1.0 1457701461 1077 ins insbtc 48 times the average volume over 7003 btc traded in 5 minutes 167 of 24h net 5m volume +64053 btc last price 000004490 binance 2019-06-05 01:20:12+00:00 1.0 1457701461 1070 kmd kmdbtc 35 times the average volume over 2709 btc traded in 5 minutes 121 of 24h net 5m volume +57903 btc last price 000020490 binance 2019-06-04 22:09:10+00:00 1.0 1457701461 1067 ren renbtc 35 times the average volume over 7030 btc traded in 5 minutes 121 of 24h net 5m volume +46287 btc last price 000000513 binance 2019-06-04 19:48:37+00:00 1.0 1457701461 1041 knc kncbtc 35 times the average volume over 73813 btc traded in 5 minutes net 5m volume 38943 btc last price 000003306 binance 2019-06-04 00:56:55+00:00 1.0 1457701461 1007 blz blzbtc 43 times the average volume over 70443 btc traded in 5 minutes net 5m volume 049110 btc last price 000000765 binance 2019-06-03 07:35:01+00:00 1.0 1457701461 992 ardr ardrbtc 47 times the average volume over 72670 btc traded in 5 minutes net 5m volume 57878 btc last price 000001100 binance 2019-06-03 00:03:41+00:00 1.0 1457701461 971 qsp qspbtc 35 times the average volume over 77493 btc traded in 5 minutes net 5m volume 42897 btc last price 000000327 binance 2019-06-02 16:33:01+00:00 1.0 1457701461 968 pivx pivxbtc 36 times the average volume over 70250 btc traded in 5 minutes net 5m volume 13576 btc last price 000008950 binance 2019-06-02 16:00:08+00:00 1.0 1457701461 963 ast astbtc 45 times the average volume over 70088 btc traded in 5 minutes net 5m volume 28600 btc last price 000000628 binance 2019-06-02 15:46:26+00:00 1.0 1457701461 901 dock dockbtc 35 times the average volume over 76357 btc traded in 5 minutes net 5m volume 66969 btc last price 000000155 binance 2019-06-01 09:29:52+00:00 1.0 1457701461 882 nuls nulsbtc 35 times the average volume over 50379 btc traded in 5 minutes net 5m volume 42680 btc last price 000009350 binance 2019-06-01 02:30:27+00:00 1.0 1457701461 679 data databtc over 15624 btc traded in 5 minutes 45 times the average volume net 5m volume 68898 btc last price 000000321 binance 2019-05-21 07:55:00+00:00 1.0 1457701461 676 nuls nulsbtc over 75216 btc traded in 5 minutes 45 times the average volume net 5m volume 61664 btc last price 000009481 binance 2019-05-21 07:29:41+00:00 1.0 1457701461 674 gnt gntbtc over 56074 btc traded in 5 minutes 46 times the average volume net 5m volume 40878 btc last price 000001219 binance 2019-05-21 07:28:13+00:00 1.0 1457701461 671 vib vibbtc over 26276 btc traded in 5 minutes 46 times the average volume net 5m volume 26051 btc last price 000000572 binance 2019-05-21 07:06:11+00:00 1.0 1457701461 658 ncash ncashbtc over 94829 btc traded in 5 minutes 45 times the average volume net 5m volume 60809 btc last price 000000028 binance 2019-05-21 04:42:35+00:00 1.0 1457701461 655 brd brdbtc over 19720 btc traded in 5 minutes 45 times the average volume net 5m volume 91683 btc last price 000006644 binance 2019-05-21 04:32:06+00:00 1.0 1457701461 643 mth mthbtc over 86697 btc traded in 5 minutes 45 times the average volume net 5m volume 56470 btc last price 000000300 binance 2019-05-21 02:47:45+00:00 1.0 1457701461 641 nuls nulsbtc over 44269 btc traded in 5 minutes 45 times the average volume net 5m volume 41075 btc last price 000009014 binance 2019-05-21 02:35:52+00:00 1.0 1457701461 635 brd brdbtc over 70356 btc traded in 5 minutes 46 times the average volume net 5m volume 28117 btc last price 000006045 binance 2019-05-21 01:17:42+00:00 1.0 1457701461 633 gto gtobtc over 33106 btc traded in 5 minutes 45 times the average volume net 5m volume 27120 btc last price 000000430 binance 2019-05-21 01:12:43+00:00 1.0 1457701461 627 xzc xzcbtc over 87720 btc traded in 5 minutes 64 times the average volume net 5m volume 25599 btc last price 000087000 binance 2019-05-21 00:08:57+00:00 1.0 1457701461 623 via viabtc over 90078 btc traded in 5 minutes 45 times the average volume net 5m volume 53479 btc last price 000009250 binance 2019-05-20 22:03:45+00:00 1.0 1457701461 620 ast astbtc over 90352 btc traded in 5 minutes 49 times the average volume net 5m volume 27248 btc last price 000000540 binance 2019-05-20 21:21:12+00:00 1.0 1457701461 614 mtl mtlbtc over 87298 btc traded in 5 minutes 50 times the average volume net 5m volume 81143 btc last price 000005380 binance 2019-05-20 17:18:59+00:00 1.0 1457701461 612 via viabtc over 61561 btc traded in 5 minutes 45 times the average volume net 5m volume 46615 btc last price 000009060 binance 2019-05-20 14:06:29+00:00 1.0 1457701461 610 tnt tntbtc over 58759 btc traded in 5 minutes 47 times the average volume net 5m volume 58029 btc last price 000000260 binance 2019-05-20 13:34:49+00:00 1.0 1457701461 606 bnt bntbtc over 51948 btc traded in 5 minutes 72 times the average volume net 5m volume 30064 btc last price 000009313 binance 2019-05-20 13:15:02+00:00 1.0 1457701461 604 dock dockbtc over 24192 btc traded in 5 minutes 45 times the average volume net 5m volume 51804 btc last price 000000181 binance 2019-05-20 13:07:28+00:00 1.0 1457701461 599 phx phxbtc over 41430 btc traded in 5 minutes 46 times the average volume net 5m volume 26273 btc last price 000000198 binance 2019-05-20 12:44:58+00:00 1.0 1457701461 593 key keybtc over 99215 btc traded in 5 minutes 63 times the average volume net 5m volume 99062 btc last price 000000045 binance 2019-05-20 10:21:39+00:00 1.0 1457701461 588 phx phxbtc over 20943 btc traded in 5 minutes 45 times the average volume net 5m volume 89805 btc last price 000000179 binance 2019-05-20 08:44:23+00:00 1.0 1457701461 585 iost iostbtc over 85244 btc traded in 5 minutes 45 times the average volume net 5m volume 56922 btc last price 000000153 binance 2019-05-20 08:32:20+00:00 1.0 1457701461 583 iost iostbtc over 71015 btc traded in 5 minutes 46 times the average volume net 5m volume 54611 btc last price 000000155 binance 2019-05-20 06:46:18+00:00 1.0 1457701461 569 iotx iotxbtc over 90787 btc traded in 5 minutes 46 times the average volume net 5m volume 71251 btc last price 000000130 binance 2019-05-20 03:09:16+00:00 1.0 1457701461 556 sc scbtc over 81299 btc traded in 5 minutes 49 times the average volume net 5m volume 81299 btc last price 000000042 binance 2019-05-19 09:38:41+00:00 1.0 1457701461 554 rdn rdnbtc over 77851 btc traded in 5 minutes 87 times the average volume net 5m volume 25051 btc last price 000003833 binance 2019-05-19 09:26:23+00:00 1.0 1457701461 552 powr powrbtc over 75403 btc traded in 5 minutes 45 times the average volume net 5m volume 38250 btc last price 000001487 binance 2019-05-19 09:22:09+00:00 1.0 1457701461 545 nuls nulsbtc over 27594 btc traded in 5 minutes 45 times the average volume net 5m volume 21363 btc last price 000009085 binance 2019-05-19 07:38:25+00:00 1.0 1457701461 541 nuls nulsbtc over 24666 btc traded in 5 minutes 45 times the average volume net 5m volume 23949 btc last price 000009257 binance 2019-05-19 02:30:33+00:00 1.0 1457701461 539 pivx pivxbtc over 11133 btc traded in 5 minutes 45 times the average volume net 5m volume 36667 btc last price 000008190 binance 2019-05-19 02:24:34+00:00 1.0 1457701461 529 nas nasbtc over 17140 btc traded in 5 minutes 100 times the average volume net 5m volume 17140 btc last price 000014840 binance 2019-05-18 22:08:55+00:00 1.0 1457701461 526 ren renbtc over 84428 btc traded in 5 minutes 45 times the average volume net 5m volume 63314 btc last price 000000430 binance 2019-05-18 21:18:26+00:00 1.0 1457701461 522 mith mithbtc over 15164 btc traded in 5 minutes 45 times the average volume net 5m volume 64727 btc last price 000000617 binance 2019-05-18 20:23:13+00:00 1.0 1457701461 518 appc appcbtc over 81072 btc traded in 5 minutes 45 times the average volume net 5m volume 43420 btc last price 000001115 binance 2019-05-18 17:00:10+00:00 1.0 1457701461 517 nav navbtc over 91392 btc traded in 5 minutes 48 times the average volume net 5m volume 64007 btc last price 000003730 binance 2019-05-18 17:00:04+00:00 1.0 1457701461 514 adx adxbtc over 88491 btc traded in 5 minutes 45 times the average volume net 5m volume 31537 btc last price 000001953 binance 2019-05-18 16:43:12+00:00 1.0 1457701461 511 qsp qspbtc over 62713 btc traded in 5 minutes 46 times the average volume net 5m volume 39911 btc last price 000000314 binance 2019-05-18 16:03:52+00:00 1.0 1457701461 509 hc hcbtc over 15569 btc traded in 5 minutes 46 times the average volume net 5m volume 42649 btc last price 000018370 binance 2019-05-18 15:30:19+00:00 1.0 1457701461 505 nebl neblbtc over 66908 btc traded in 5 minutes 87 times the average volume net 5m volume 66908 btc last price 000017550 binance 2019-05-18 14:02:03+00:00 1.0 1457701461 502 cvc cvcbtc over 62799 btc traded in 5 minutes 47 times the average volume net 5m volume 28642 btc last price 000001029 binance 2019-05-18 11:36:26+00:00 1.0 1457701461 499 agi agibtc over 20586 btc traded in 5 minutes 52 times the average volume net 5m volume 20502 btc last price 000000589 binance 2019-05-18 11:29:58+00:00 1.0 1457701461 495 dlt dltbtc over 27677 btc traded in 5 minutes 45 times the average volume net 5m volume 89479 btc last price 000001710 binance 2019-05-18 08:41:53+00:00 1.0 1457701461 491 lrc lrcbtc over 71628 btc traded in 5 minutes 46 times the average volume net 5m volume 37313 btc last price 000000845 binance 2019-05-18 06:35:53+00:00 1.0 1457701461 486 gto gtobtc over 17996 btc traded in 5 minutes 45 times the average volume net 5m volume 13241 btc last price 000000390 binance 2019-05-18 04:55:48+00:00 1.0 1457701461 478 nuls nulsbtc over 31734 btc traded in 5 minutes 49 times the average volume net 5m volume 30451 btc last price 000009700 binance 2019-05-18 02:28:46+00:00 1.0 1457701461 470 storm stormbtc over 68887 btc traded in 5 minutes 55 times the average volume net 5m volume 68360 btc last price 000000040 binance 2019-05-17 19:45:20+00:00 1.0 1457701461 466 ost ostbtc over 16182 btc traded in 5 minutes 45 times the average volume net 5m volume 67760 btc last price 000000312 binance 2019-05-17 16:05:17+00:00 1.0 1457701461 464 cdt cdtbtc over 71645 btc traded in 5 minutes 46 times the average volume net 5m volume 33467 btc last price 000000123 binance 2019-05-17 15:59:54+00:00 1.0 1457701461 454 edo edobtc over 81061 btc traded in 5 minutes 45 times the average volume net 5m volume 41583 btc last price 000009410 binance 2019-05-17 07:10:00+00:00 1.0 1457701461 443 hc hcbtc over 40161 btc traded in 5 minutes 101 times the average volume net 5m volume 27237 btc last price 000021660 binance 2019-05-16 16:59:57+00:00 1.0 1457701461 431 gxs gxsbtc over 10569 btc traded in 5 minutes 45 times the average volume net 5m volume 48133 btc last price 000016270 binance 2019-05-16 06:15:40+00:00 1.0 1457701461 427 nuls nulsbtc over 35650 btc traded in 5 minutes 45 times the average volume net 5m volume 31077 btc last price 000010073 binance 2019-05-16 05:08:04+00:00 1.0 1457701461 418 poe poebtc over 14696 btc traded in 5 minutes 46 times the average volume net 5m volume 10087 btc last price 000000080 binance 2019-05-16 03:23:26+00:00 1.0 1457701461 414 ae aebtc over 15910 btc traded in 5 minutes 45 times the average volume net 5m volume 88471 btc last price 000007860 binance 2019-05-16 02:50:19+00:00 1.0 1457701461 410 iotx iotxbtc over 20272 btc traded in 5 minutes 48 times the average volume net 5m volume 17384 btc last price 000000153 binance 2019-05-16 02:32:10+00:00 1.0 1457701461 407 gnt gntbtc over 14344 btc traded in 5 minutes 46 times the average volume net 5m volume 34992 btc last price 000001460 binance 2019-05-16 02:27:58+00:00 1.0 1457701461 403 xem xembtc over 84580 btc traded in 5 minutes 45 times the average volume net 5m volume 64378 btc last price 000001390 binance 2019-05-16 02:16:51+00:00 1.0 1457701461 389 ncash ncashbtc over 65576 btc traded in 5 minutes 48 times the average volume net 5m volume 61835 btc last price 000000028 binance 2019-05-15 21:04:10+00:00 1.0 1457701461 386 ardr ardrbtc over 50263 btc traded in 5 minutes 50 times the average volume net 5m volume 43292 btc last price 000001089 binance 2019-05-15 20:59:21+00:00 1.0 1457701461 382 steem steembtc over 63683 btc traded in 5 minutes 45 times the average volume net 5m volume 36171 btc last price 000004720 binance 2019-05-15 20:18:47+00:00 1.0 1457701461 380 mtl mtlbtc over 19417 btc traded in 5 minutes 52 times the average volume net 5m volume 26820 btc last price 000005960 binance 2019-05-15 20:12:39+00:00 1.0 1457701461 377 dnt dntbtc over 80083 btc traded in 5 minutes 46 times the average volume net 5m volume 31148 btc last price 000000217 binance 2019-05-15 20:01:23+00:00 1.0 1457701461 375 ost ostbtc over 10335 btc traded in 5 minutes 45 times the average volume net 5m volume 33786 btc last price 000000307 binance 2019-05-15 20:00:05+00:00 1.0 1457701461 371 data databtc over 70872 btc traded in 5 minutes 45 times the average volume net 5m volume 31072 btc last price 000000267 binance 2019-05-15 19:56:46+00:00 1.0 1457701461 367 nav navbtc over 13689 btc traded in 5 minutes 104 times the average volume net 5m volume 25272 btc last price 000002710 binance 2019-05-15 19:49:10+00:00 1.0 1457701461 365 nebl neblbtc over 70358 btc traded in 5 minutes 67 times the average volume net 5m volume 25130 btc last price 000018190 binance 2019-05-15 19:39:19+00:00 1.0 1457701461 364 go gobtc over 19648 btc traded in 5 minutes 45 times the average volume net 5m volume 66269 btc last price 000000305 binance 2019-05-15 19:38:45+00:00 1.0 1457701461 363 ast astbtc over 10675 btc traded in 5 minutes 45 times the average volume net 5m volume 56632 btc last price 000000466 binance 2019-05-15 19:38:21+00:00 1.0 1457701461 360 req reqbtc over 24145 btc traded in 5 minutes 92 times the average volume net 5m volume 25335 btc last price 000000295 binance 2019-05-15 19:33:36+00:00 1.0 1457701461 358 amb ambbtc over 15238 btc traded in 5 minutes 46 times the average volume net 5m volume 54493 btc last price 000000559 binance 2019-05-15 19:30:25+00:00 1.0 1457701461 355 blz blzbtc over 62753 btc traded in 5 minutes 45 times the average volume net 5m volume 45659 btc last price 000000790 binance 2019-05-15 19:21:35+00:00 1.0 1457701461 350 sky skybtc over 12402 btc traded in 5 minutes 45 times the average volume net 5m volume 39161 btc last price 000022700 binance 2019-05-15 18:31:14+00:00 1.0 1457701461 340 etc etcbtc over 42437 btc traded in 5 minutes 49 times the average volume net 5m volume 33046 btc last price 000091900 binance 2019-05-15 16:12:39+00:00 1.0 1457701461 338 rlc rlcbtc over 31645 btc traded in 5 minutes 45 times the average volume net 5m volume 91252 btc last price 000010510 binance 2019-05-15 16:09:02+00:00 1.0 1457701461 336 brd brdbtc over 68194 btc traded in 5 minutes 45 times the average volume net 5m volume 25167 btc last price 000006620 binance 2019-05-15 16:03:03+00:00 1.0 1457701461 334 iost iostbtc over 68674 btc traded in 5 minutes 48 times the average volume net 5m volume 19014 btc last price 000000182 binance 2019-05-15 15:57:47+00:00 1.0 1457701461 326 tnb tnbbtc over 21622 btc traded in 5 minutes 45 times the average volume net 5m volume 96408 btc last price 000000072 binance 2019-05-15 15:22:10+00:00 1.0 1457701461 324 iotx iotxbtc over 17353 btc traded in 5 minutes 45 times the average volume net 5m volume 16709 btc last price 000000136 binance 2019-05-15 15:18:43+00:00 1.0 1457701461 322 wan wanbtc over 16113 btc traded in 5 minutes 45 times the average volume net 5m volume 10413 btc last price 000005250 binance 2019-05-15 15:16:05+00:00 1.0 1457701461 317 poa poabtc over 50015 btc traded in 5 minutes 60 times the average volume net 5m volume 29688 btc last price 000000443 binance 2019-05-15 15:03:18+00:00 1.0 1457701461 315 rdn rdnbtc over 65056 btc traded in 5 minutes 45 times the average volume net 5m volume 31506 btc last price 000004400 binance 2019-05-15 15:00:29+00:00 1.0 1457701461 313 wpr wprbtc over 55178 btc traded in 5 minutes 45 times the average volume net 5m volume 43764 btc last price 000000157 binance 2019-05-15 15:00:20+00:00 1.0 1457701461 308 evx evxbtc over 38315 btc traded in 5 minutes 45 times the average volume net 5m volume 93569 btc last price 000010002 binance 2019-05-15 14:44:11+00:00 1.0 1457701461 306 fuel fuelbtc over 36993 btc traded in 5 minutes 47 times the average volume net 5m volume 15761 btc last price 000000113 binance 2019-05-15 14:36:43+00:00 1.0 1457701461 305 qlc qlcbtc over 10213 btc traded in 5 minutes 45 times the average volume net 5m volume 96479 btc last price 000000443 binance 2019-05-15 14:34:56+00:00 1.0 1457701461 301 ncash ncashbtc over 57538 btc traded in 5 minutes 46 times the average volume net 5m volume 46221 btc last price 000000026 binance 2019-05-15 14:27:31+00:00 1.0 1457701461 297 oax oaxbtc over 15072 btc traded in 5 minutes 45 times the average volume net 5m volume 68829 btc last price 000002730 binance 2019-05-15 14:04:13+00:00 1.0 1457701461 295 rep repbtc over 66135 btc traded in 5 minutes 45 times the average volume net 5m volume 34086 btc last price 000286700 binance 2019-05-15 14:01:35+00:00 1.0 1457701461 292 vibe vibebtc over 73266 btc traded in 5 minutes 48 times the average volume net 5m volume 30789 btc last price 000000545 binance 2019-05-15 13:57:35+00:00 1.0 1457701461 290 sngls snglsbtc over 50140 btc traded in 5 minutes 49 times the average volume net 5m volume 42625 btc last price 000000198 binance 2019-05-15 13:53:13+00:00 1.0 1457701461 288 bqx bqxbtc over 10991 btc traded in 5 minutes 45 times the average volume net 5m volume 53411 btc last price 000001773 binance 2019-05-15 13:46:38+00:00 1.0 1457701461 281 iotx iotxbtc over 24302 btc traded in 5 minutes 45 times the average volume net 5m volume 21461 btc last price 000000126 binance 2019-05-15 02:30:13+00:00 1.0 1457701461 279 agi agibtc over 33398 btc traded in 5 minutes 49 times the average volume net 5m volume 28563 btc last price 000000562 binance 2019-05-15 02:13:41+00:00 1.0 1457701461 275 nuls nulsbtc over 41736 btc traded in 5 minutes 45 times the average volume net 5m volume 35038 btc last price 000009106 binance 2019-05-15 01:34:51+00:00 1.0 1457701461 270 via viabtc over 10311 btc traded in 5 minutes 46 times the average volume net 5m volume 53743 btc last price 000009650 binance 2019-05-14 21:12:09+00:00 1.0 1457701461 265 knc kncbtc over 18933 btc traded in 5 minutes 58 times the average volume net 5m volume 27899 btc last price 000003809 binance 2019-05-14 09:13:35+00:00 1.0 1457701461 258 iost iostbtc over 16750 btc traded in 5 minutes 48 times the average volume net 5m volume 11894 btc last price 000000172 binance 2019-05-14 06:49:21+00:00 1.0 1457701461 255 agi agibtc over 23271 btc traded in 5 minutes 49 times the average volume net 5m volume 22990 btc last price 000000515 binance 2019-05-14 03:02:58+00:00 1.0 1457701461 245 key keybtc over 19460 btc traded in 5 minutes 54 times the average volume net 5m volume 10254 btc last price 000000047 binance 2019-05-13 17:16:24+00:00 1.0 1457701461 242 mft mftbtc over 33021 btc traded in 5 minutes 48 times the average volume net 5m volume 15285 btc last price 000000055 binance 2019-05-13 17:12:03+00:00 1.0 1457701461 234 ae aebtc over 33855 btc traded in 5 minutes 116 times the average volume net 5m volume 26016 btc last price 000006800 binance 2019-05-13 12:57:06+00:00 1.0 1457701461 226 poly polybtc over 27991 btc traded in 5 minutes 49 times the average volume net 5m volume 15970 btc last price 000001471 binance 2019-05-13 12:36:56+00:00 1.0 1457701461 213 storm stormbtc over 58077 btc traded in 5 minutes 59 times the average volume net 5m volume 57139 btc last price 000000039 binance 2019-05-13 08:47:57+00:00 1.0 1457701461 206 nuls nulsbtc over 45793 btc traded in 5 minutes 48 times the average volume net 5m volume 36057 btc last price 000009722 binance 2019-05-13 07:05:19+00:00 1.0 1457701461 205 agi agibtc over 23140 btc traded in 5 minutes 49 times the average volume net 5m volume 22188 btc last price 000000578 binance 2019-05-13 07:05:18+00:00 1.0 1457701461 187 iotx iotxbtc over 13980 btc traded in 5 minutes 48 times the average volume net 5m volume 13040 btc last price 000000137 binance 2019-05-13 03:23:19+00:00 1.0 1457701461 180 nuls nulsbtc over 30246 btc traded in 5 minutes 48 times the average volume net 5m volume 25963 btc last price 000009702 binance 2019-05-13 02:18:40+00:00 1.0 1457701461 179 qlc qlcbtc over 12755 btc traded in 5 minutes 51 times the average volume net 5m volume 43963 btc last price 000000456 binance 2019-05-13 02:18:10+00:00 1.0 1457701461 177 agi agibtc over 33212 btc traded in 5 minutes 54 times the average volume net 5m volume 32954 btc last price 000000557 binance 2019-05-13 02:14:22+00:00 1.0 1457701461 171 brd brdbtc over 66597 btc traded in 5 minutes 49 times the average volume net 5m volume 48276 btc last price 000006789 binance 2019-05-12 20:32:45+00:00 1.0 1457701461 166 sngls snglsbtc over 50588 btc traded in 5 minutes 65 times the average volume net 5m volume 27277 btc last price 000000198 binance 2019-05-12 18:18:49+00:00 1.0 1457701461 162 hc hcbtc over 50377 btc traded in 5 minutes 61 times the average volume net 5m volume 0054616 btc last price 000016800 binance 2019-05-12 17:00:50+00:00 1.0 1457701461 159 fuel fuelbtc over 54922 btc traded in 5 minutes 49 times the average volume net 5m volume 19856 btc last price 000000112 binance 2019-05-12 16:23:12+00:00 1.0 1457701461 150 nxs nxsbtc over 51689 btc traded in 5 minutes 49 times the average volume net 5m volume 16487 negative last price 000004020 binance 2019-05-12 09:42:31+00:00 1.0 1457701461 143 celr celrbtc over 13117 btc traded in 5 minutes 48 times the average volume net 5m volume 10119 positive last price 000000133 binance 2019-05-12 08:09:00+00:00 1.0 1457701461 136 celr celrbtc over 46290 btc traded in 5 minutes 48 times the average volume net 5m volume 41487 positive last price 000000121 binance 2019-05-12 06:50:34+00:00 1.0 1457701461 133 agi agibtc over 22047 btc traded in 5 minutes 49 times the average volume net 5m volume 21707 positive last price 000000587 binance 2019-05-12 06:41:30+00:00 1.0 1457701461 130 lsk lskbtc over 15597 btc traded in 5 minutes 49 times the average volume net 5m volume 11643 negative last price 000026880 binance 2019-05-12 06:23:53+00:00 1.0 1457701461 127 agi agibtc over 25754 btc traded in 5 minutes 49 times the average volume net 5m volume 25030 positive last price 000000582 binance 2019-05-12 03:58:53+00:00 1.0 1457701461 96 fuel fuelbtc over 33271 btc traded in 5 minutes 58 times the average volume last price 000000115 net 5m volume 17373positive 2019-05-11 16:39:57+00:00 1.0 1457701461 91 fuel fuelbtc over 17511 btc traded in 5 minutes 48 times the average volume last price 000000113 net 5m volume positive 11189 2019-05-11 16:33:02+00:00 1.0 1457701461 88 qsp qspbtc over 14533 btc traded in 5 minutes 49 times the average volume last price 000000376 net 5m volume positive 51719 2019-05-11 16:26:01+00:00 1.0 1457701461 82 edo edobtc over 52088 btc traded in 5 minutes 68 times the average volume last price 000008400 net 5m volume negative 18844979579999999 2019-05-11 15:46:46+00:00 1.0 1457701461 81 edo edobtc over 52088 btc traded in 5 minutes 68 times the average volume last price 000008400 net 5m volume negative 18844979579999999 2019-05-11 15:46:45+00:00 1.0 1457701461 72 ark arkbtc over 11546 btc traded in 5 minutes net 5m volume positive 48 times the average volume last price 000008400 2019-05-11 13:57:34+00:00 1.0 1457701461 65 storm stormbtc over 13776 btc traded in 5 minutes negative volume 90 times the average volume last price 000000039 2019-05-11 11:54:13+00:00 1.0 1457701461 56 iotx iotxbtc over 41410 btc traded in 5 minutes positive volume 48 times the average volume last price 000000151 2019-05-11 09:29:42+00:00 1.0 1457701461 54 ren renbtc over 82265 btc traded in 5 minutes positive volume 48 times the average volume last price 000000446 2019-05-11 09:07:16+00:00 1.0 1457701461 48 sc scbtc over 78257 btc traded in 5 minutes negative volume 48 times the average volume last price 000000038 2019-05-11 07:38:28+00:00 1.0 1457701461 37 iotx iotxbtc over 33006 btc traded in 5 minutes positive volume 49 times the average volume last price 000000144 2019-05-11 05:45:53+00:00 1.0 1457701461 20 agi agibtc over 15481 btc traded in 5 minutes 41 times the average volume last price 000000577 2019-05-11 03:58:37+00:00 1.0 1457701461 15 nuls nulsbtc over 13819 btc traded in 5 minutes 38 times the average volume last price 000009738 2019-05-11 01:40:46+00:00 1.0 1457701461 12 omg omgbtc over 11194 btc traded in 5 minutes 48 times the average volume last price 000024900 2019-05-11 00:23:58+00:00 1.0 1457701461 10 ong ongbtc over 60096 btc traded in 5 minutes 86 times the average volume last price 000005823 2019-05-11 00:05:30+00:00 1.0 1415708335 209 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 23:01:08+00:00 1.0 1415708335 208 2 days left until the big pump on binance be prepared 2021-09-03 17:54:52+00:00 1.0 1415708335 205 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all 2021-08-28 17:13:08+00:00 1.0 1415708335 204 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-22 18:28:14+00:00 1.0 1415708335 201 the coin we have picked to pump today is nas nas is looking perfect for a massive pump right now 2021-08-22 17:00:32+00:00 1.0 1415708335 200 5 minutes left the next message will be the coin to buy 2021-08-22 16:55:41+00:00 1.0 1415708335 198 2 hours remaining until the big pump on binance 2021-08-22 15:10:51+00:00 1.0 1415708335 197 4 hours left until the big pump on binance 2021-08-22 13:02:47+00:00 1.0 1415708335 196 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-08-21 18:29:07+00:00 1.0 1415708335 195 4 days remaining until the big pump on binance 2021-08-18 17:01:25+00:00 1.0 1415708335 192 pump announcement hello everyone the next official pump will be scheduled for date sunday august 22 time 1700 pm gmt exchange binance advantage free for all 2021-08-09 19:32:42+00:00 1.0 1415708335 190 here is the video everyone has been waiting for the replay of the first minute of our amazing pump yesterday we will be announcing the next pump date shortly 2021-08-09 14:27:23+00:00 1.0 1415708335 189 pump result possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 300 with great volume once again which means all members had a chance to make up to 300 profit within the first 2 minutes the amount of appreciation and feedback we are receiving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beginning of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement 2021-08-08 17:50:42+00:00 1.0 1415708335 185 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-08-08 17:00:26+00:00 1.0 1415708335 183 5 minutes left be ready the next message will be the coin to buy 2021-08-08 16:55:40+00:00 1.0 1415708335 181 30 minutes remaining until the big pump on binance get ready 2021-08-08 16:30:27+00:00 1.0 1415708335 180 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 400 profit + be ready 2021-08-08 16:01:10+00:00 1.0 1415708335 177 6 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-08 10:14:48+00:00 1.0 1415708335 176 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being back and volumes being high the odds of reaching 400 profit will be very high this time we will do everything in our power to make sure we reach this target this is officially the pump you will want to be part of and not miss be prepared 2021-08-07 19:10:51+00:00 1.0 1415708335 175 2 days remaining until our biggest pump signal of all time be prepared 2021-08-06 11:47:52+00:00 1.0 1415708335 174 4 days remaining until the big pump on binance 2021-08-04 15:16:47+00:00 1.0 1415708335 172 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance advantage free for all 2021-08-01 19:16:40+00:00 1.0 1415708335 171 pump result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-07-25 18:07:17+00:00 1.0 1415708335 165 the coin we have picked to pump today is drep drep is looking perfect for a pump right now the target is 500 2021-07-25 17:00:16+00:00 1.0 1415708335 164 2 minutes left the next post will be the coin to buy 2021-07-25 16:58:40+00:00 1.0 1415708335 161 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 500 profit and beyond be ready 2021-07-25 16:00:15+00:00 1.0 1415708335 160 2 hours remaining until the big pump on binance 2021-07-25 15:02:47+00:00 1.0 1415708335 159 4 hours left until our big pump everything is still looking good still with our coin being bottomed which means all members will be able to buy early we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in last time we were able to get a few thousands retweet which means a big commitment from our community this time we want the effect to be bigger by asking all of our members to post on twitter after our signal we will be using these hashtags pump our coin name here bitcoin binance 2021-07-25 13:01:49+00:00 1.0 1415708335 158 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump with the market being good we can guarantee a good pump this time as our team will support it in a massive way by injecting volume after our members bought in 2 hours we will post a few directives in order to coordinate our coin to trend on twitter our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-25 11:28:48+00:00 1.0 1415708335 157 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-24 17:05:40+00:00 1.0 1415708335 156 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible this pump will have a big amount of support from the team and we can confirm with absolute certainty that this will be the biggest profit maker pump of all time be prepared 2021-07-23 15:51:24+00:00 1.0 1415708335 155 7 days remaining until our big pump on binance we can say with 100 certainty that we will be able to do a massive pump like we did on ppt nxs and sky our official target for this pump will be 500 in a few days we will give our members more information on how to be ready for it in order to maximize your profits 2021-07-18 13:18:02+00:00 1.0 1415708335 153 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 1700 pm gmt exchange binance advantage free for all 2021-07-12 15:12:56+00:00 1.0 1415708335 152 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:01:41+00:00 1.0 1415708335 151 1 hour left until our big pump on binance be prepared 2021-07-11 16:00:50+00:00 1.0 1415708335 150 4 hours left until our big pump we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in we will be using these hashtags pump our coin name here bitcoin binancepump247 binance 2021-07-11 13:01:42+00:00 1.0 1415708335 149 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time this is the pump that you will not want to miss you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-10 17:03:43+00:00 1.0 1415708335 148 2 days left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-07-09 20:39:26+00:00 1.0 1415708335 147 4 days left until the biggest pump signal of all time on binance in a few days we will be posting more information in order to be prepared for the pump 2021-07-07 14:18:56+00:00 1.0 1415708335 145 pump announcement hello everyone the next official pump will be scheduled for date sunday july 11 time 1700 pm gmt exchange binance advantage free for all 2021-07-02 12:50:15+00:00 1.0 1415708335 144 pump result total volume was over 400 btc which is around 14 million which is still good for the current market before the signal the market had sold a big amount of wabi which affected the expected results by probably around 4050 however in exchange it did give a better buying opportunity for our members the pump had a good and slow rise to the peak allowing our members to make a good amount of profit we also had multiple waves which allowed a lot of dip opportunities to be bought and sold back at a higher price despite the current bad market we are currently trying to match our big expectations as we have been able to reach on average 200450 results in the past while the market was still good with volumes reaching up 80 million we are aware that those are the big results that everyone wants and would like to let our members know that our team is working hard to try to provide those results again we have a strong team of whales big community leaders and the biggest traders in the cryptocurrency ecosystem with us and you can be sure that we will be able to provide those big results again once the market has returned back to normal before announcing our pump we will make sure that we will be able to reach each at least 300500 in our next pump and for that we will need the market to be a little more bullish again once we see that the market is good and ready for a pump we will make our big announcement on that note we received alot of messages of appreciation for this pump and we are glad many members managed to make profit stay tuned for our next announcement 2021-06-21 04:17:58+00:00 1.0 1415708335 142 the coin we have picked to pump today is wabi wabi is looking perfect for a pump right now 2021-06-20 17:00:29+00:00 1.0 1415708335 141 5 minutes left the next message will be the coin to buy 2021-06-20 16:55:55+00:00 1.0 1415708335 138 1 hour left until our big pump on binance 2021-06-20 16:00:58+00:00 1.0 1415708335 137 2 hours and 10 minutes left until our big pump on binance the market is staring to recover which is a good sign for us be ready 2021-06-20 14:50:02+00:00 1.0 1415708335 136 4 hours remaining until our big pump with the current market conditions all buying power and attention from the market will go towards our pump coin be prepared 2021-06-20 13:07:04+00:00 1.0 1415708335 135 the big day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-06-19 17:39:31+00:00 1.0 1415708335 134 2 days left until the big pump on binance 2021-06-18 19:48:15+00:00 1.0 1415708335 131 pump announcement hello everyone the next official pump will be scheduled for date sunday june 20 time 1700 pm gmt exchange binance advantage free for all 2021-06-13 18:08:43+00:00 1.0 1415708335 130 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets and make sure we are able to reach our 500 targetwe hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly stay tuned 2021-06-13 17:22:11+00:00 1.0 1415708335 129 5 minutes left the next message will be the coin to buy 2021-06-13 16:55:07+00:00 1.0 1415708335 125 2 hours and 15 minutes remaining until the big pump on binance 2021-06-13 14:44:55+00:00 1.0 1415708335 123 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-06-13 11:08:38+00:00 1.0 1415708335 122 the day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-06-12 17:04:44+00:00 1.0 1415708335 121 2 days left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible reminder that will only be using the btc pairing to buy the coin you will need to have btc on binance to buy the coin stay tuned 2021-06-11 15:49:39+00:00 1.0 1415708335 120 4 days left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it 2021-06-09 19:30:31+00:00 1.0 1415708335 119 6 days left until our big pump 2021-06-07 16:31:35+00:00 1.0 1415708335 117 pump announcement hello everyone the next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binance advantage free for all 2021-06-01 18:25:10+00:00 1.0 1415708335 116 pump result amazing pump with more than 500 btc volume which is amazing in this market we hit the peak almost 1 minute after the signal was given which gave enough time for members to make profit our volume is still very big despite the short term market sentiment and the recent btc drop specially after having not pumped for 1 month we can say for sure that we are back and hopefully with the market starting to recover you can expect the next one to be much bigger we will be taking all the necessary precautionary measures on the next pump in order to make sure the signal is given at the absolute bottom as well the next pump will be massive stay tuned for our next announcement 2021-05-30 19:05:26+00:00 1.0 1415708335 114 the coin we have picked to pump today is oax oax is looking perfect for a pump right now 2021-05-30 17:00:16+00:00 1.0 1415708335 113 5 minutes left the next message will be the coin to buy 2021-05-30 16:54:58+00:00 1.0 1415708335 112 15 minutes left until the pump on binance we will be using the btc pairing to pump make sure you have btc in your account to buy the coin 2021-05-30 16:44:37+00:00 1.0 1415708335 109 2 hours remaining until the big pump on binance 2021-05-30 15:01:57+00:00 1.0 1415708335 107 the coin we have picked to pump today is nxs nxs is looking perfect for a pump right now our target is high 2021-05-26 17:01:21+00:00 1.0 1415708335 106 30 minutes left until the pump we will be pumping a coin with only 1 pairing btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 200+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up for those trading from the us you can use a vpn to make a binance account millions of traders worldwide will be watch 2021-05-26 16:31:05+00:00 1.0 1415708335 104 new datepump announcement date wednesday 26 may ⏰ time 5 pm gmt 1700 gmt exchange binance we decided to pump earlier because all the coins are at an amazing price low with the current market condition we will be able to make a profit of 200 or even more 2021-05-25 05:58:03+00:00 1.0 1415708335 102 pump announcement hello everyone the next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance advantage free for all 2021-05-23 06:24:52+00:00 1.0 1415708335 99 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 500+ 2021-04-25 17:00:22+00:00 1.0 1415708335 98 2 minutes left the next message will be the coin name 2021-04-25 16:57:49+00:00 1.0 1415708335 94 2 hours left until the biggest pump signal in the history of our group 2021-04-25 14:58:08+00:00 1.0 1415708335 90 pump announcement hello everyone the next official pump will be scheduled for date sunday april 25 time 1700 pm gmt exchange binance advantage free for all 2021-04-22 06:29:35+00:00 1.0 1415708335 89 the coin we have picked to pump today is via via is looking perfect for a pump right now our target is 500+ 2021-04-11 17:22:59+00:00 1.0 1415708335 85 2 hours and 30 minutes left until the biggest pump signal in the history of our group 2021-04-11 14:36:55+00:00 1.0 1415708335 84 the day has arrived 24 hours remaining until our biggest pump signal event of all time 2021-04-11 05:07:47+00:00 1.0 1415708335 79 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 11 time 1700 pm gmt exchange binance advantage free for all 2021-04-06 15:24:50+00:00 1.0 1415708335 78 5 days left until our big pump on binance 2021-04-06 15:24:00+00:00 1.0 1415708335 77 1 hour left until our big pump on binance 2021-03-28 16:00:26+00:00 1.0 1415708335 76 1 hour and 37 minutes remaining this will be the biggest pump event we have ever done more than a million traders around the world will be watching and participating be prepared 2021-03-28 15:23:02+00:00 1.0 1415708335 74 24 hours remaining until our biggest pump signal event of all time 2021-03-27 18:13:35+00:00 1.0 1415708335 71 with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 4 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 29 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for 2021-03-24 05:38:53+00:00 1.0 1415708335 68 ⚜️pump announcement⚜️ date sunday march 28 time 1700 pm gmt exchange binance 2021-03-23 15:36:26+00:00 1.0 1415708335 67 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently alot good coins have already pumped and 95 of the coins are already highly in the green we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-03-21 22:19:01+00:00 1.0 1415708335 66 4 hours and 10 minutes remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible we will be pumping a coin with only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-21 13:06:20+00:00 1.0 1415708335 49 pump announcement hello everyone the next official pump will be scheduled for date sunday march 22 time 100am gmt+8 exchange binance advantage free for all 2021-03-09 19:22:22+00:00 1.0 1415708335 48 pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned 2021-03-07 17:41:31+00:00 1.0 1415708335 44 the coin we have picked to pump today is ppt ppt is looking perfect for a pump right now our target is 1000 2021-03-07 17:00:21+00:00 1.0 1415708335 43 5 minutes left next post will be the coin name 2021-03-07 16:56:09+00:00 1.0 1415708335 42 10 minutes left be ready on binance 2021-03-07 16:51:23+00:00 1.0 1415708335 38 1 hour and 45 min until the big pump today here is everything you need to know about this pump in order to make the most profit possible our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do we will be using the btc pairing on binance to pump meaning that you need to have btc in your account to buy the coin if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-07 15:16:45+00:00 1.0 1415708335 35 2 days left we will be using the btc pairing on binancecom to pump when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up 2021-03-05 03:25:12+00:00 1.0 1415708335 15 pump announcement the next official pump will be scheduled on date sunday march 7 time 1700 pm gmt exchange binancecom advantage free for all countdown shorturlatdhse5 get your binance account 2021-02-27 08:30:53+00:00 1.0 1415708335 11 how does the pump work create your binance account and prepare btc all pumps will be in btc example xxxbtc on the selected date time we will announce a coin name on telegram everyone will buy this coin at the same time leading the coin to pump to insane levels +1000 sell with profit some basic tips on buying and selling during a pump when the pump starts the price of the coin can spike pretty fast if you limit buy a coin we advise you to buy 75 a 100 limit buy does not go through most of the time since the price is up if you market buy the coin the order will always go through after buying the given coin do not sell 100 of the given coin at once slowly sell 25 at a time which causes the market not to instantly drop do not panic sell we have seen in the past that a lot of people will panic sell when theyre down on their initial investment just know pumps come in waves so there should be plenty of times within the pump that you will be able to sell with profit so do not panic 2021-02-24 15:55:43+00:00 1.0 1491366103 2129 next pump scheduled ⏰ thursday 20jan2022 at 230 pm gmt expecting btc price increase by 500 2022-01-20 14:50:28+00:00 1.0 1491366103 2128 position margin 01487 btc 6316 usd net profit within 45 minutes +01487 btc +6316 usd +186 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2022-01-19 23:56:14+00:00 1.0 1491366103 2123 next pump scheduled ⏰ tuesday 18jan2022 at 845 pm gmt expecting btc price increase by 1000 2022-01-18 21:36:11+00:00 1.0 1491366103 2118 position margin 01078 btc 4672 usd net profit within 45 minutes +02268 btc +9829 usd +210 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2022-01-15 16:03:39+00:00 1.0 1491366103 2113 next pump scheduled ⏰ friday 14jan2022 at 235 pm gmt expecting btc price increase by 1000 2022-01-14 15:24:24+00:00 1.0 1491366103 2108 good results with pretty solid margin position margin 01489 btc 6389 usd net profit within 47 minutes +04121 btc +17684 usd +276 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2022-01-12 23:16:36+00:00 1.0 1491366103 2103 next pump scheduled ⏰ tuesday 11jan2022 at 343 pm gmt expecting btc price increase by 1000 2022-01-11 16:34:55+00:00 1.0 1491366103 2099 next pump scheduled ⏰ monday 10jan2022 at 236 pm gmt expecting btc price increase by 1500 2022-01-10 15:03:47+00:00 1.0 1491366103 2098 position margin 01069 btc 4495 usd net profit within 46 minutes +02313 btc +9726 usd +216 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2022-01-09 17:22:29+00:00 1.0 1491366103 2069 next pump scheduled ⏰ tuesday 4jan2022 at 224 pm gmt expecting btc price increase by 500 2022-01-04 15:45:00+00:00 1.0 1491366103 2042 position margin 01252 btc 6388 usd net profit within 39 minutes +02186 btc +11155 usd +174 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-12-27 21:58:51+00:00 1.0 1491366103 2037 next pump scheduled ⏰ sunday 26dec2021 at 915 pm gmt expecting btc price increase by 1000 2021-12-26 22:15:39+00:00 1.0 1491366103 2029 position margin 01414 btc 7153 usd net profit within 55 minutes +03362 btc +17008 usd +237 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-12-24 12:49:19+00:00 1.0 1491366103 2024 next pump scheduled ⏰ thursday 23dec2021 at 522 pm gmt expecting btc price increase by 1500 2021-12-23 18:21:46+00:00 1.0 1491366103 2014 pretty small margin here position margin 01328 btc 6413 usd net profit within 9 minutes +02731 btc +13188 usd +205 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-12-21 00:00:10+00:00 1.0 1491366103 2009 next pump scheduled ⏰ sunday 19dec2021 at 152 pm gmt expecting btc price increase by 1000 2021-12-19 14:22:50+00:00 1.0 1491366103 1995 weve got inside information about upcoming pump within 1 hour next pump scheduled ⏰ wednesday 15dec2021 at 701 pm gmt expecting btc price increase by 2000 performed not by our team dont use high leverage at this time 2021-12-15 19:29:00+00:00 1.0 1491366103 1994 position margin 01069 btc 5127 usd net profit within 46 minutes +02169 btc +10403 usd +202 per one pump signal thats x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-12-15 17:50:08+00:00 1.0 1491366103 1989 next pump scheduled ⏰ tuesday 14dec2021 at 753 pm gmt expecting btc price increase by 1000 2021-12-14 21:05:59+00:00 1.0 1491366103 1970 position margin 007622 btc 3859 usd net profit within 16 minutes +01806 btc +9147 usd +236 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-12-07 18:34:30+00:00 1.0 1491366103 1965 next pump scheduled ⏰ monday 6dec2021 at 935 pm gmt expecting btc price increase by 2000 2021-12-06 22:15:22+00:00 1.0 1491366103 1941 next pump scheduled ⏰ monday 29nov2021 at 507 pm gmt expecting btc price increase by 1000 2021-11-29 18:07:41+00:00 1.0 1491366103 1940 position margin 00805 btc 4449 usd net profit within 58 minutes +01140 btc +6301 usd +141 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-11-28 11:36:49+00:00 1.0 1491366103 1930 next pump scheduled ⏰ monday 8nov2021 at 320 pm gmt expecting btc price increase by 1000 2021-11-08 16:29:42+00:00 1.0 1491366103 1894 position margin 00911 btc 5729 usd net profit within 32 minutes +01151 btc +7239 usd +126 per one pump signal it is more than x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-10-26 10:31:39+00:00 1.0 1491366103 1888 position margin 01165 btc 7181 usd net profit within 7 minutes +03109 btc +19166 usd +266 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-10-24 16:19:18+00:00 1.0 1491366103 1874 weve got inside information about upcoming pump within 1 hour next pump scheduled ⏰ wednesday 20oct2021 at 140 pm gmt expecting btc price increase by 2000 performed not by our team dont use high leverage at this time 2021-10-20 15:30:11+00:00 1.0 1491366103 1862 position margin 01376 btc 8659 usd net profit within 15 minutes +02722 btc +17129 usd +197 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-10-16 12:52:57+00:00 1.0 1491366103 1857 next pump scheduled ⏰ friday 15oct2021 at 810 pm gmt expecting btc price increase by 2000 dont use high leverage at this time 2021-10-15 22:24:46+00:00 1.0 1491366103 1856 position margin 00987 btc 5653 usd net profit within 28 minutes +01375 btc +7876 usd +139 per one pump signal its x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-10-14 12:32:32+00:00 1.0 1491366103 1851 next pump scheduled ⏰ wednesday 13oct2021 at 435 pm gmt expecting btc price increase by 1000 2021-10-13 17:16:22+00:00 1.0 1491366103 1835 here we go position margin 01193 btc 6709 usd net profit within 57 minutes +02978 btc +16749 usd +249 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-10-09 17:42:33+00:00 1.0 1491366103 1823 position margin 01291 btc 6389 usd net profit within 30 minutes +02321 btc +11487 usd +179 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-10-05 16:23:09+00:00 1.0 1491366103 1818 next pump scheduled ⏰ monday 4oct2021 at 522 pm gmt expecting btc price increase by 1000 2021-10-04 18:02:06+00:00 1.0 1491366103 1813 great results with solid margin position margin 01856 btc 8868 usd net profit within 16 minutes +08981 btc +42913 usd +483 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-10-02 17:53:13+00:00 1.0 1491366103 1808 weve got inside information about upcoming pump within 1 hour next pump scheduled ⏰ friday 1oct2021 at 1025 am gmt expecting btc price increase by 3000 here we go again dont use high leverage at this time 2021-10-01 11:11:56+00:00 1.0 1491366103 1796 solid pl with pretty small margin position margin 01119 btc 4894 usd net profit within 34 minutes +04296 btc +18791 usd +433 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-09-27 16:50:52+00:00 1.0 1491366103 1781 next pump scheduled ⏰ thursday 23sep2021 at 500 pm gmt expecting btc price increase by 1000 2021-09-23 18:21:57+00:00 1.0 1491366103 1779 position margin 01687 btc 7224 usd net profit within 21 minutes +03698 btc +15837 usd +245 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-09-22 11:32:09+00:00 1.0 1491366103 1774 next pump scheduled ⏰ tuesday 21sep2021 at 555 pm gmt expecting btc price increase by 1000 2021-09-21 18:26:14+00:00 1.0 1491366103 1764 pretty small position margin 00739 btc 3570 usd net profit within 50 minutes +01041 btc +5029 usd +157 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-09-17 14:49:49+00:00 1.0 1491366103 1738 next pump scheduled ⏰ thursday 9sep2021 at 1247 pm gmt expecting btc price increase by 1500 2021-09-09 15:35:15+00:00 1.0 1491366103 1727 position margin 00688 btc 3565 usd net profit within 14 minutes +00894 btc +4632 usd +145 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-09-06 08:15:49+00:00 1.0 1491366103 1722 next pump scheduled ⏰ sunday 5sep2021 at 846 pm gmt expecting btc price increase by 1000 2021-09-05 22:15:45+00:00 1.0 1491366103 1715 position margin 01169 btc 5692 usd net profit within 20 minutes +02237 btc +10892 usd +214 per one pump signal its x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-09-02 14:44:45+00:00 1.0 1491366103 1710 next pump scheduled ⏰ wednesday 1sept2021 at 427 pm gmt expecting btc price increase by 1000 lets begin a new month with a pump 2021-09-01 16:56:31+00:00 1.0 1491366103 1696 position margin 01408 btc 6790 usd net profit within 59 minutes +02478 btc +11951 usd +198 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-08-28 23:13:02+00:00 1.0 1491366103 1691 next pump scheduled ⏰ friday 27aug2021 at 146 pm gmt expecting btc price increase by 500 2021-08-27 14:07:23+00:00 1.0 1491366103 1690 position margin 01331 btc 6466 usd net profit within 57 minutes +02416 btc +11737 usd +203 per one pump signal its x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-08-26 19:32:06+00:00 1.0 1491366103 1685 next pump scheduled ⏰ wednesday 25aug2021 at 211 pm gmt expecting btc price increase by 1000 performed not by our team dont use high leverage at this time 2021-08-25 16:35:52+00:00 1.0 1491366103 1666 next pump scheduled ⏰ friday 20aug2021 at 950 pm gmt expecting btc price increase by 500 2021-08-20 22:03:54+00:00 1.0 1491366103 1662 next pump scheduled ⏰ thursday 19aug2021 at 615 pm gmt expecting btc price increase by 1000 2021-08-19 20:57:31+00:00 1.0 1491366103 1646 next pump scheduled ⏰ sunday 15aug2021 at 145 pm gmt expecting btc price increase by 1000 2021-08-15 15:44:11+00:00 1.0 1491366103 1638 next pump scheduled ⏰ friday 13aug2021 at 801 pm gmt expecting btc price increase by 1500 2021-08-13 22:52:45+00:00 1.0 1491366103 1633 next pump scheduled ⏰ thursday 12aug2021 at 1057 pm gmt expecting btc price increase by 500 2021-08-12 23:50:02+00:00 1.0 1491366103 1626 thats x4 position margin 01161 btc 5294 usd net profit within 55 minutes +03391 btc +15463 usd +325 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-08-10 16:12:28+00:00 1.0 1491366103 1620 here we go position margin 01518 btc 6765 usd net profit within 25 minutes +02241 btc +9988 usd +166 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-08-08 15:34:46+00:00 1.0 1491366103 1615 next pump scheduled ⏰ saturday 7aug2021 at 1201 pm gmt expecting btc price increase by 500 2021-08-07 12:29:34+00:00 1.0 1491366103 1611 next pump scheduled ⏰ friday 6aug2021 at 316 pm gmt expecting btc price increase by 2000 this time you can use leverage up to x90 2021-08-06 18:43:36+00:00 1.0 1491366103 1590 thats x3 position margin 00899 btc 3764 usd net profit within 4 minutes +02379 btc +9962 usd +295 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-31 19:03:09+00:00 1.0 1491366103 1585 next pump scheduled ⏰ friday 30july2021 at 847 pm gmt expecting btc price increase by 1500 2021-07-30 21:10:22+00:00 1.0 1491366103 1580 position margin 01219 btc 4804 usd net profit within 25 minutes +02489 btc +9809 usd +228 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-28 17:35:41+00:00 1.0 1491366103 1575 next pump scheduled ⏰ tuesday 27july2021 at 1030 pm gmt expecting btc price increase by 1000 2021-07-28 00:36:17+00:00 1.0 1491366103 1574 nothing to say just take a look position margin 00826 btc 3294 usd net profit within 11 minutes +05521 btc +22019 usd insane +743 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-27 11:57:06+00:00 1.0 1491366103 1567 position margin 01927 btc 6647 usd net profit within 56 minutes +02524 btc +8706 usd +146 per one pump signal thats more than x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-25 18:06:58+00:00 1.0 1491366103 1562 next pump scheduled ⏰ saturday 24july2021 at 413 pm gmt expecting btc price increase by 500 2021-07-24 19:05:58+00:00 1.0 1491366103 1558 next pump scheduled ⏰ friday 23july2021 at 1030 pm gmt expecting btc price increase by 500 2021-07-23 23:10:40+00:00 1.0 1491366103 1556 pretty good results with solid initial margin position margin 02608 btc 8031 usd net profit within 30 minutes +05810 btc +17892 usd +249 per one pump signal thats more than x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-22 13:04:36+00:00 1.0 1491366103 1540 position margin 01626 btc 5193 usd net profit within 13 minutes +02421 btc +7733 usd +168 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-18 11:29:14+00:00 1.0 1491366103 1527 position margin 01662 btc 5760 usd net profit within 60 minutes +03234 btc +11209 usd +218 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-12 14:49:23+00:00 1.0 1491366103 1522 next pump scheduled ⏰ sunday 11july2021 at 905 pm gmt expecting btc price increase by 1000 2021-07-11 22:23:43+00:00 1.0 1491366103 1509 position margin 01375 btc 7785 usd net profit within 50 minutes +02505 btc +8718 usd +204 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-07 10:31:09+00:00 1.0 1491366103 1498 position margin 01028 btc 3562 usd net profit within 39 minutes +02103 btc +7288 usd +229 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-07-04 14:11:50+00:00 1.0 1491366103 1480 position margin 02136 btc 7002 usd net profit within 18 minutes +06953 btc +23882 usd +364 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-06-28 21:52:27+00:00 1.0 1491366103 1475 next pump scheduled ⏰ sunday 27june2021 at 959 pm gmt expecting btc price increase by 1500 2021-06-28 00:13:32+00:00 1.0 1491366103 1474 here we go position margin 01367 btc 4202 usd net profit within 25 minutes +03031 btc +9615 usd +248 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-06-27 18:45:06+00:00 1.0 1491366103 1463 position margin 01310 btc 4345 usd net profit within 68 minutes +02692 btc +9204 usd +229 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-06-25 12:16:06+00:00 1.0 1491366103 1433 position margin 00708 btc 2874 usd net profit within 37 minutes +01316 btc +5343 usd +208 per one pump signal thats x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-06-15 21:41:11+00:00 1.0 1491366103 1428 next pump scheduled ⏰ monday 14june2021 at 101 pm gmt expecting btc price increase by 1000 2021-06-14 14:14:57+00:00 1.0 1491366103 1424 next pump scheduled ⏰ sunday 13june2021 at 410 pm gmt expecting btc price increase by 1000 2021-06-13 19:04:12+00:00 1.0 1491366103 1413 next pump scheduled ⏰ wednesday 9june2021 at 300 pm gmt expecting btc price increase by 2000 2021-06-09 15:40:07+00:00 1.0 1491366103 1387 next pump scheduled ⏰ tuesday 1jun2021 at 115 pm gmt expecting btc price increase by 1500 2021-06-01 16:40:56+00:00 1.0 1491366103 1374 position margin 01871 btc 7204 usd net profit within 2 minutes +03736 btc +14385 usd +223 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-05-26 14:51:12+00:00 1.0 1491366103 1369 next pump scheduled ⏰ tuesday 25may2021 at 335 pm gmt expecting btc price increase by 1000 2021-05-25 16:26:39+00:00 1.0 1491366103 1365 we have inside information about upcoming pump next pump scheduled ⏰ monday 24may2021 at 737 pm gmt expecting btc price increase by 2000 dont use high leverage at this time 2021-05-24 21:26:27+00:00 1.0 1491366103 1364 position margin 01385 btc 5376 usd net profit within 26 minutes +04616 btc +17917 usd +373 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-05-24 01:28:23+00:00 1.0 1491366103 1347 position margin 01291 btc 6386 usd net profit within 23 minutes +02321 btc +11481 usd +201 per one pump signal thats x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-05-17 15:06:22+00:00 1.0 1491366103 1330 position margin 01264 btc 7418 usd net profit within 14 minutes +02025 btc +11885 usd +178 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-05-11 22:46:27+00:00 1.0 1491366103 1325 next pump scheduled ⏰ monday 10may2021 at 345 pm gmt expecting btc price increase by 1000 2021-05-10 17:45:32+00:00 1.0 1491366103 1324 position margin 00313 btc 1862 usd net profit within 65 minutes +00625 btc +3719 usd +222 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-05-09 21:24:11+00:00 1.0 1491366103 1298 pretty small position margin 00570 btc 3205 usd net profit within 42 minutes +01244 btc +6996 usd +244 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-05-01 13:23:05+00:00 1.0 1491366103 1293 next pump scheduled ⏰ friday 30apr2021 at 118 pm gmt expecting btc price increase by 1500 2021-04-30 16:47:13+00:00 1.0 1491366103 1291 pretty small position margin 00261 btc 1429 usd net profit within 72 minutes +00431 btc +2360 usd +184 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-04-28 17:32:43+00:00 1.0 1491366103 1277 position margin 00402 btc 2170 usd net profit within 9 minutes +00630 btc +3480 usd +174 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-04-23 21:53:27+00:00 1.0 1491366103 1268 next pump scheduled ⏰ wednesday 21apr2021 at 1209 pm gmt expecting btc price increase by 1000 2021-04-21 12:48:45+00:00 1.0 1491366103 1245 position margin 00733 btc 4522 usd net profit within 22 minutes +01994 btc +12303 usd +303 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-04-11 21:21:09+00:00 1.0 1491366103 1236 next pump scheduled ⏰ thursday 8apr2021 at 1202 pm gmt expecting btc price increase by 1000 2021-04-08 15:11:41+00:00 1.0 1491366103 1224 next pump scheduled ⏰ monday 5apr2021 at 200 pm gmt expecting btc price increase by 1000 2021-04-05 16:05:54+00:00 1.0 1491366103 1213 position margin 00622 btc 3572 usd net profit within 16 minutes +00912 btc +5238 usd +164 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-03-30 22:00:56+00:00 1.0 1491366103 1207 position margin 00848 btc 4560 usd net profit within 48 minutes +01349 btc +7254 usd +177 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-03-28 00:30:02+00:00 1.0 1491366103 1201 position margin 00260 btc 1444 usd net profit within 34 minutes +00609 btc +3384 usd +262 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-03-25 23:13:12+00:00 1.0 1491366103 1185 position margin 00241 btc 1444 usd net profit within 46 minutes +00548 btc +3283 usd +254 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-03-19 16:48:52+00:00 1.0 1491366103 1180 next pump scheduled ⏰ thursday 18mar2021 at 318 pm gmt expecting btc price increase by 2000 2021-03-18 17:55:29+00:00 1.0 1491366103 1169 position margin 01173 btc 7032 usd net profit within 26 minutes +02736 btc +16403 usd +256 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-03-14 18:19:33+00:00 1.0 1491366103 1149 position margin 01330 btc 6767 usd net profit within 40 minutes +02275 btc +11575 usd +190 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-03-08 22:39:33+00:00 1.0 1491366103 1058 here we go position margin 01197 btc 5361 usd net profit within 44 minutes +10125 btc +45348 usd +946 per one pump signal thats almost x10 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-02-09 15:42:07+00:00 1.0 1491366103 1038 position margin 01225 btc 4371 usd net profit within 31 minutes +03382 btc +12068 usd +309 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-02-03 18:35:22+00:00 1.0 1491366103 1027 nothing to say just take a look position margin 01224 btc 4673 usd net profit within 57 minutes +12044 btc +45988 usd +1087 per one pump signal thats x10 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-01-30 16:10:53+00:00 1.0 1491366103 989 position margin 01034 btc 3879 usd net profit within 28 minutes +03057 btc +11468 usd +329 per one pump signal thats x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-01-19 17:39:34+00:00 1.0 1491366103 950 position margin 02894 btc 10401 usd net profit within 43 minutes +11854 btc +42604 usd +458 per one pump signal thats x4 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2021-01-07 21:51:31+00:00 1.0 1491366103 875 position margin 02966 btc 5736 usd net profit within 73 minutes +04893 btc +9463 usd +184 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-12-14 17:02:36+00:00 1.0 1491366103 829 position margin 01758 btc 3187 usd net profit within 76 minutes +02983 btc 5409 usd +190 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-11-30 12:46:01+00:00 1.0 1491366103 812 pretty small initial margin but huge pl position margin 01395 btc 2676 usd net profit within 47 minutes +02791 btc 5355 usd +222 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-11-25 11:57:03+00:00 1.0 1491366103 762 position margin 02376 btc 3667 usd net profit within 31 minutes +01996 btc 3081 usd +93 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-11-09 17:22:16+00:00 1.0 1491366103 755 position margin 02123 btc 3390 usd net profit within 34 minutes +03886 btc 6206 usd +203 per one pump signal its x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-11-07 00:57:57+00:00 1.0 1491366103 752 ✅ successful pump bitcoin hit 15978 on bitmex price increased by 451 within 34 minutes we will hit 16000 soon 2020-11-06 01:20:17+00:00 1.0 1491366103 748 position margin 01074 btc 1478 usd net profit within 15 minutes +01496 btc 2059 usd +155 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-11-04 16:02:48+00:00 1.0 1491366103 731 last pump was pretty good position margin 01760 btc 2372 usd net profit within 75 minutes +03184 btc 4291 usd +201 per one pump signal x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-10-30 19:45:48+00:00 1.0 1491366103 725 position margin 01044 btc 1416 usd net profit within 19 minutes +01711 btc 2321 usd +183 per one pump signal almost x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-10-28 20:10:46+00:00 1.0 1491366103 704 good result with solid initial margin almost x3 position margin 04763 btc 6175 usd net profit within 7 minutes +12399 btc 16076 usd insane +289 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-10-22 12:11:12+00:00 1.0 1491366103 693 position margin 03224 btc 3769 usd net profit within 29 minutes +03399 btc 3974 usd +117 per one pump signal thats x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-10-20 12:22:32+00:00 1.0 1491366103 670 position margin 08754 btc 10106 usd net profit within 13 minutes +12311 btc 14213 usd insane +156 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-10-13 14:42:31+00:00 1.0 1491366103 664 position margin 06311 btc 7229 usd net profit within 2 minutes +14038 btc 16081 usd insane +249 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-10-11 11:59:48+00:00 1.0 1491366103 649 position margin 05561 btc 5994 usd net profit within 69 minutes +03649 btc 3933 usd +73 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-10-06 12:17:58+00:00 1.0 1491366103 643 next pump scheduled ⏰ monday 5oct2020 at 1250pm gmt expecting btc price increase by 100 dont use high leverage at this time 2020-10-05 14:59:37+00:00 1.0 1491366103 626 next pump scheduled ⏰ thursday 1oct2020 at 800am gmt expecting btc price increase by 150 dont use high leverage at this time 2020-10-01 10:47:39+00:00 1.0 1491366103 610 position margin 08653 btc 9058 usd net profit within 10 minutes +08495 btc 8893 usd +109 per one pump signal thats x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-09-25 11:31:24+00:00 1.0 1491366103 591 position margin 07286 btc 8152 usd net profit within 65 minutes +11050 btc 12363 usd +169 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-09-20 23:23:01+00:00 1.0 1491366103 579 position margin 06124 btc 6760 usd net profit within 70 minutes +03961 btc 4372 usd +72 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-09-19 10:14:20+00:00 1.0 1491366103 572 pretty small position margin 01575 btc 1712 usd net profit within 46 minutes +02109 btc 2293 usd +150 per one pump signal thats more than x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-09-16 14:07:23+00:00 1.0 1491366103 565 position margin 08720 btc 9223 usd net profit within 35 minutes +07945 btc 8403 usd +102 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-09-14 11:06:21+00:00 1.0 1491366103 546 position margin 03849 btc 4006 usd net profit within 32 minutes +05807 btc 6045 usd +169 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-09-08 13:52:26+00:00 1.0 1491366103 520 position margin 03838 btc 4525 usd net profit within 34 minutes +02602 btc 3068 usd +75 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-09-01 18:18:32+00:00 1.0 1491366103 501 position margin 06936 btc 8040 usd total profit within 45 minutes +12630 btc 14640 usd +203 per one pump signal thats x3 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-08-28 12:34:30+00:00 1.0 1491366103 483 position margin 03876 btc 4522 usd net profit within 7 minutes +02466 btc 2877 usd +71 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-08-24 18:22:31+00:00 1.0 1491366103 476 position margin 05780 btc 8807 usd total profit within 28 minutes +05045 btc 5941 usd +97 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-08-22 23:35:26+00:00 1.0 1491366103 448 position margin 04901 btc 5701 usd total profit within 40 minutes +07834 btc 9113 usd +177 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-08-14 13:50:04+00:00 1.0 1491366103 418 position margin 04845 btc 5631 usd total profit within 58 minutes +05647 btc 6564 usd +128 per one pump signal thats more than x2 you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-08-06 11:39:20+00:00 1.0 1491366103 397 july pumpdump results 〰️〰️〰️〰️2nd july 〰️〰️〰️ dump | price dropped by 224 within 13 minutes 〰️〰️〰️〰️5th july 〰️〰️〰️ dump | price dropped by 100 within 27 minutes 〰️〰️〰️〰️6th july 〰️〰️〰️ pump | price increased by 145 within 32 minutes 〰️〰️〰️〰️8th july 〰️〰️〰️ pump | price increased by 183 within 31 minutes 〰️〰️〰️〰️10th july 〰️〰️〰️ dump | price dropped by 100 within 17 minutes 〰️〰️〰️〰️13th july 〰️〰️〰️ dump | price dropped by 87 within 35 minutes 〰️〰️〰️〰️16th july 〰️〰️〰️ dump | price dropped by 138 within 32 minutes 〰️〰️〰️〰️18th july 〰️〰️〰️ pump | price increased by 100 within 11 minutes 〰️〰️〰️〰️21st july 〰️〰️〰️ pump | price increased by 200 within 47 minutes 〰️〰️〰️〰️23rd july 〰️〰️〰️ pump | price increased by 200 within 12 minutes 〰️〰️〰️〰️26th july 〰️〰️〰️ pump | price increased by 128 within 64 minutes 〰️〰️〰️〰️26th july 〰️〰️〰️ pump | price increased by 486 within 20 minutes 〰️〰️〰️〰️27th july 〰️〰️〰️ pump | price increased by 558 within 16 minutes 〰️〰️〰️〰️29th july〰️〰️〰️ dump | price dropped by 244 within 3 minutes average earning per one pump dump signal in july is +282 june results — link 2020-08-01 11:05:18+00:00 1.0 1491366103 389 good results with solid initial margin deposit is tripled after only one pump position margin 04247 btc 4659 usd net profit within 16 minutes +12674 btc 13904 usd insane +332 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-07-28 15:08:39+00:00 1.0 1491366103 382 last pump was pretty good position margin 01705 btc 1747 usd net profit within 20 minutes +05133 btc 5261 usd insane +335 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-07-27 11:14:40+00:00 1.0 1491366103 372 next pump scheduled ⏰ saturday 25july2020 at 420pm gmt expecting btc price increase by 100 dont use high leverage at this time 2020-07-26 00:13:35+00:00 1.0 1491366103 371 position margin 02148 btc 2055 usd net profit within 12 minutes +02852 btc 2728 usd +148 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-07-24 11:37:16+00:00 1.0 1491366103 364 position margin 07266 btc 6819 usd net profit within 47 minutes +10067 btc 9447 usd +154 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-07-22 17:02:12+00:00 1.0 1491366103 355 position margin 03048 btc 2812 usd net profit within 11 minutes +02225 btc 2053 usd +81 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-07-19 18:57:10+00:00 1.0 1491366103 316 position margin 04898 btc 4520 usd net profit within 32 minutes +04934 btc 4553 usd +112 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-07-07 09:20:00+00:00 1.0 1491366103 274 position margin 02078 btc 1920 usd net profit within 35 minutes +02105 btc 1945 usd +112 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-06-27 10:56:56+00:00 1.0 1491366103 250 position margin 02320 btc 2268 usd net profit within 30 minutes +02925 btc 2860 usd +140 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-06-23 11:32:02+00:00 1.0 1491366103 240 position margin 01435 btc 1355 usd total profit within 16 minutes +01474 btc 1392 usd +114 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-06-19 15:45:50+00:00 1.0 1491366103 190 position margin 02267 btc 2031 usd profit within 5 minutes +04950 btc 5024 usd +243 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-06-10 20:03:51+00:00 1.0 1491366103 182 position margin 03504 btc 3438 usd profit within 30 minutes +06785 btc 6657 usd +215 per one pump signal you can use such leverage because you will know the exact pumpdump time from our private whales group ⏰ 2020-06-08 10:28:24+00:00 1.0 1491366103 154 may pumpdump results 〰️〰️〰️〰️5th may〰️〰️〰️ dump price dropped by 266 within 15 minutes 〰️〰️〰️〰️14th may 〰️〰️〰️ pump price increased by 160 within 7 minutes 〰️〰️〰️〰️15th may 〰️〰️〰️ dump price dropped by 430 within 4 minutes 〰️〰️〰️〰️17th may 〰️〰️〰️ pump price increased by 263 within 12 minutes 〰️〰️〰️〰️18th may 〰️〰️〰️ dump price dropped by 500 within 11 minutes 〰️〰️〰️〰️19th may 〰️〰️〰️ pump price increased by 265 within 23 minutes 〰️〰️〰️〰️20th may 〰️〰️〰️ dump price dropped by 450 within 45 minutes 〰️〰️〰️〰️24th may 〰️〰️〰️ pump price increased by 100 within 16 minutes 〰️〰️〰️〰️27th may 〰️〰️〰️ pump price increased by 300 within 17 minutes 〰️〰️〰️〰️31st may 〰️〰️〰️ dump price dropped by 100 within 3 minutes average earning per one pump dump signal in may is +230 mayresults 2020-06-01 10:58:24+00:00 1.0 1491366103 141 todays pump profit from our private whales group member +220 within 17 minutes close price was around 9200 2020-05-27 15:56:46+00:00 1.0 1446175017 182 aluracoin futures marketing caluracoinbot hello people i come to invite you to a big event that will start today at 2100 utc +3 hours the calura futures bot is a binary trading style based on the bitcoin analysis at binance thats right you can do your bitcoin price analysis and make your entries with calura coin through the bot based on your analysis u can profit a lot by hitting your entries how it works inside the bot we have everything ready to facilitate your entries in long or short you will do your analysis and make your entry if the btc will rise or fall in the next few minutes each period lasts 15 minutes so every 15 minutes you can make up to 2 entries we leave buttons with added values to facilitate your entries without wasting time the event will work as follows the more coins you move the more chance you have of winning all your entry coins will be added to the ranking so the more trades you make the more chance you have the winners will receive as follows 1 15k clc 2 7k clc 3 3k clc and for all the other participants who move more than 5000 coins they will share a 10k clc prize among all the event will start at 900 pm on 105 and will end at 900 pm on 1013 good luck to everyone where to buy calura coin clc btc site channel 2020-05-10 22:37:24+00:00 1.0 1446175017 131 in 55 minutes we will start a pump today we will do alot works busydays 2020-04-24 14:06:00+00:00 1.0 1446175017 124 everyone 4 hours left until the pump exchange pairing btc make sure you have btc deposited in your bittrex account the goal for each pump is for everyone to profit as much as possible buy quick sell smart we want absolutely every member of the group to win today we can bring in a lot of outside traders to hold our boosted price as long as possible this regularly happens if the coin makes the top gainer on the front page of bittrex lots of eyes are on crypto right now lets bring them to the pump 2020-04-21 17:39:21+00:00 1.0 1446175017 110 announcement we will be doing the pump 1 hour early so 2am gmt as we will be doing another coin a few hours after we are giving you the best signals we could find today 2020-04-20 01:22:29+00:00 1.0 1446175017 107 signal announcement 3am gmt 6 hours 43 minutes from now get ready for the signal we decided to move it later to facilitate other groups 2020-04-19 19:18:14+00:00 1.0 1446175017 105 signal announcement 8pm gmt 4 hours 20 minutes from now get ready for a big increase 2020-04-19 15:41:17+00:00 1.0 1446175017 76 get ready 5 minutes to go we are forecasting a massive increase 2020-04-17 20:54:57+00:00 1.0 1446175017 72 we will once again make a super valuation on a great asset it is not just a pump but rather a sponential appreciation this asset will soon overcome the barriers of 100 sat believe and hold do not sell with low profit everyone can profit a lot in the near future we will announce the name of the asset at 2100 gmt brasiliam time 1800 horas crex24 excahnge 2020-04-17 20:09:26+00:00 1.0 1446175017 39 pump announcement at 2pm gmt get your funds ready in crex24 this will be a 200300 increase get ready to join in crex24signal 2020-04-13 11:21:50+00:00 1.0 1446175017 34 pump announcement today 7pm gmt everyone be ready crex24signal 2020-04-05 11:58:21+00:00 1.0 1446175017 28 35 minutes till our pump announcement 2020-04-04 17:25:21+00:00 1.0 1241378610 10840 web 30 next best altcoins which are in buying zone wait for the upcoming video buy them before mega pump like gxs 2021-12-03 12:48:36+00:00 1.0 1241378610 10834 gxsbtc premium signal top gainer at binance ✈✈ wow mega pump ✈✈ our buying price was 1053 satoshi price jumped to 2963 satoshi ✅ all targets achieved 181 amazing profit 2021-12-02 13:22:32+00:00 1.0 1241378610 10821 get ready for next 3 altcoins which are ready to pump web 30 top 3 altcoins we will rock in next trend buy these coins before massive pump video is on the way to you content passed aye tou share it kanjoosi mat kia karain ye content aap k liye he create kia jata hai i dont charge single penny for share these videos with others 2021-12-01 10:30:14+00:00 1.0 1241378610 10665 powr coin massive pump price pumped to 997 satoshi finally all targets achieved 71 mega profit 2021-11-15 21:03:04+00:00 1.0 1241378610 10558 are you ready for next coin slp ki tarha retweet krna hai wait for few minutes let me recheck the coin will post details soon 2021-11-04 09:52:48+00:00 1.0 1241378610 10516 are you ready buy these coins before pump video will come out within 5 min 2021-10-31 15:07:16+00:00 1.0 1241378610 10090 dock coin generated 55 profit recently ✅ now litcoin coin showered 40 profit in this month ✅ wait for 3rd coin for mega pump 2021-09-04 06:25:27+00:00 1.0 1241378610 10020 nas coin massive pump our suggested buying price was 84 satoshi nas pumped very hard from bouncy support level massive pump to 324 satoshi ✅ 285 mega profit 2021-08-22 17:18:56+00:00 1.0 1241378610 10018 keep an eye on ckb coin most awaiting pump coin current price 32 satoshi 2021-08-22 10:18:58+00:00 1.0 1241378610 9819 powr coin free signal was also shared in recent video at the price of 364 satoshi today price pumped to 939 and still bullish ✅ 158 mega profit from our buying price must watch this video other 2 altcoins are also about to jump at 710 in this video i clearly told everyone powr always jumped very hard in every 3 months and now time is near for big pump and result is in front of you 2021-07-30 02:44:46+00:00 1.0 1241378610 9374 tron coin can pump very hard any time short term analysis of trx coin very big news of tron coin new youtube video is on the way to you 2021-06-04 11:12:06+00:00 1.0 1241378610 8225 powr coin pump powr premium signal was shared at the price of 300 satoshi price pumped to 417 satoshi ✅ 3rd target achieved 39 juicy profit if you are satisfy then start to book profit 2021-02-06 02:44:23+00:00 1.0 1241378610 8210 all digits coins low satoshi coin are pumping trx when we can see 100 pump 2021-02-02 17:12:24+00:00 1.0 1241378610 7938 poly coin left the earth price is pumping very hard approx 58 pump 2020-12-20 03:02:09+00:00 1.0 1241378610 7926 alts are pumping one by one now what to do if your short term holding coin pumps then sell it because i am observing alts pump suddenly then come down approx 12 to 15 within an hour or two in that case buy them back again and increase the quantity or else enjoy the profit if anything unusual happen then i am here to help you grab a cup of tea and see the charts and enjor your weekend with family and friends ❤️‍‍ 2020-12-18 13:30:58+00:00 1.0 1241378610 7642 so btc is aggressive now after every big pump large cap coins start to pump first after market stablity 2020-10-21 15:05:48+00:00 1.0 1241378610 7515 guys there are chances kucoin exchange can pump the kcs coin kcs is a kucoin exchange coin just like bnb is of binance exchange coin you can buy kcs coin between 80008300 current price 8195 sell at 865090309970+ signal type short term hold this coin for few days i am expecting a good jump from here 2020-10-03 16:39:05+00:00 1.0 1241378610 7440 altcoins start to recover if your short term coin pump then take profit and stay in btc or invest in any large cap coins 2020-09-25 15:39:49+00:00 1.0 1241378610 6829 ogn coin start to pump 2020-07-09 12:50:56+00:00 1.0 1241378610 6101 guys may be bitcoin cash coin pump more but i dont care if bch pump more i have taken profit around 253 in 1 day 13 profit is not bad in voice message i have explained you that my target is 10 to 15 so i am stick to it 2020-04-06 20:19:15+00:00 1.0 1241378610 5910 mark my words zil coin the day when zil zilliqa coin break the level of 98 satoshi then you may see a very big pump in the price ❌ not a financial advice these are my personal views and analysis 2020-03-10 20:50:46+00:00 1.0 1241378610 5728 ardr boooooom juicy pump in ardr coin premium signal was shared yesterday at the price of 563 price pumped to 733 satoshi all targets achieved 30 amazing profit 2020-02-10 19:28:30+00:00 1.0 1241378610 5726 we did not see any pump in xvg coin yet keep an eye on xvg coin if btc remain stable then we can see big boom in price current price 45 satoshi 2020-02-10 15:18:18+00:00 1.0 1241378610 5710 arpa coin to the moon congratulations ❤️ 50 profit gain ❤️ top gainer at binance premium signal was shared at the price of 128 price took juicy pump to 192 and still pumping all targets achieved 2020-02-07 20:37:47+00:00 1.0 1241378610 5681 xrp coin ripple next important level is 029 todays high is 028 satoshi if price cross above 029 cent then price can pump to 031 below 029 cent if market crash then you can see the price at 024 cents 2020-02-05 15:27:01+00:00 1.0 1241378610 5669 low satoshi coin start pump keep an eye on low satoshi coin in your portfolio 2020-02-04 20:24:53+00:00 1.0 1241378610 4887 premium signal even in above video i have told you about sngl coin now its pump 2019-08-26 06:14:05+00:00 1.0 1241378610 4735 buy qsp coin between 8595 current price 89 sell at 105120150200+ signal type ••• short term just in case qsp coin pump then book profit then buy again in dip 2019-08-09 16:25:06+00:00 1.0 1241378610 4456 waves holders keep an eye on wave coin can pump any time 2019-07-06 12:59:37+00:00 1.0 1241378610 4032 a few members are asking me about electroneum etn coin update 24 hour volume is not much impressive team is not much active a lot of promises were made during the ico which are not fulfilled yet team couldnt list etn coin on any reputed exchange that why volume is very less future of this coin is not clear so i dont recommend to hold this coin for long term disclaimer please note that these are my personal honest views about electroneum coin please do not get offensive if you are a holder of this coin crypto market is unpredictable anything can happen in a future final advice if any big announcement about etn come in a market then buy this coin and when it pump then sell it on profit best of luck 2019-05-18 20:53:47+00:00 1.0 1241378610 3226 free signal buy amb coin between 14001430 current price is 1426 sell at 152016091770+ amb is a very undervalued coin at this time we need just a little bit more volume then price can pump there is a good support at 1375 holding time 04 weeks 2019-02-07 14:41:15+00:00 1.0 1241378610 3145 ✈️✈️are you happy guys ✈️✈️ finally a big pump in ncash i told you we can expect a good pump in ncash coin here we go free signal was shared 2 days ago our buying price was 51 satoshi price boom boom to 58 satoshi quick profit happy trading 2019-01-27 19:46:27+00:00 1.0 1241378610 2813 free signal qsp coin buy qsp coin between 370400 current price 394 grab some coins at current price too and trying to buy at different prices sell at 440495530600+ most of the time qsp price pump from this point only buy if you have patience to hold this coin for 04 weeks 2018-12-14 10:23:34+00:00 1.0 1241378610 2810 storm coin free signal buy between 7880 satoshi current price 80 satoshi we just need a little bit more volume then price will pump sell at 859299110+ holding time 04 weeks 2018-12-14 02:22:06+00:00 1.0 1241378610 2800 buy tnb coin between 8085 current price 85 sell at 8995103110+ volume is very low in this coin invest small amount in this altcoin and wait for pump holding time 04 weeks approx 2018-12-13 10:09:58+00:00 1.0 1241378610 2777 wpr coin free signal buy between 340365 current price is 363 sell at 390423470+ previously wpr coin price pump twice from this level very undervalued coin at this time 2018-12-09 18:43:17+00:00 1.0 1241378610 2751 anyone who is holding eos coin even bought on high prices i will just say dont worry about this investment some investments should be tension less eos coin has been sleeping since 3 months and can pump any time secondly this is a safe investment 2018-12-06 21:48:59+00:00 1.0 1241378610 2744 free signal amb coin buy amb coin between 18301865 current price is 1865 sell at 1966207022453000+ this coin can pump before 31 december mainnet 2018-12-06 00:14:11+00:00 1.0 1241378610 1388 ✅✅ in my yesterday video i suggested everyone to buy key coin today key coin is blasting price touched to 104 satoshi bcn coin also pump hard today price reached to 29 satoshi 2018-08-26 16:09:16+00:00 1.0 1241378610 1326 3 coins pump within minutes 2018-08-21 16:59:56+00:00 1.0 1241378610 1321 qlc coin pump how it is happening within minutes isnt 2018-08-21 16:57:12+00:00 1.0 1241378610 1157 buy stratis coin between 27502827 current price is 2827 try to buy in different prices can give you big profit within 04 weeks currently strat coin is in consolidation period if it break out then we can see big pump in price sell at 10 15 20 30 or more 2018-08-07 08:47:06+00:00 1.0 1241378610 217 trx tron market is respectively following my all resistance level that i gave you in my todays video prices are taking enough break to go down accordingly my technical analysis hopefully we will see a big pump till end of this month 2018-05-22 22:47:01+00:00 1.0 1431726415 4 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 10 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned crypto profit group 2021-04-17 23:24:27+00:00 1.0 1213000026 13 we have decided the coin of today is shibasword adress 0xbcf1a1feb018506e275cae21b0df37ccad26bd91 chart token address remember we try to last the pump at least 4 minutes so hold those 4 minutes for max profit 2021-05-29 18:00:47+00:00 1.0 1299055913 908 coin name — qsp buy qsp it will pump at least 100 from here 2019-11-25 16:00:39+00:00 1.0 1299055913 851 cnd rumor next binance chain coin expected pump 70 to 80 2019-06-23 08:33:59+00:00 1.0 1299055913 844 2 mins left next post will be coin name 2019-06-17 14:58:17+00:00 1.0 1299055913 842 official wolf pump signal announcement btc is making a rally recently and there are many altcoins such as dumped alots of as always this is good news because this implies recovery of investor confidence in altcoins everything is in our favor for a great pump with market conditions currently let wake up altcoin market today our last one result wpr 70 the details are below date 17062019 time 1500 gmt exchange binance 2019-06-17 13:14:43+00:00 1.0 1299055913 819 5 mins left next post will be coin name dont forget how wpr did before 2019-06-08 12:56:17+00:00 1.0 1299055913 817 ▪️flash pump alert ▪️ after the succesful wpr pump and the good feedbacks we got we will run another free pump in 87 minutes from now on 1300 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-06-08 11:33:37+00:00 1.0 1299055913 805 buy appc it will pump 100 next days 2019-06-04 12:08:01+00:00 1.0 1299055913 803 5 mins left next post will be coin name prepare for huge thing 2019-06-04 11:55:08+00:00 1.0 1299055913 796 5 mins left next post will be the coin name 2019-06-03 10:55:37+00:00 1.0 1299055913 783 5 mins left next post will be coin name 2019-05-31 14:55:42+00:00 1.0 1299055913 781 ▪️flash pump alert ▪️ after the succesful yoyo qsp pump and the good feedbacks we got we will run another free pump in 58 minutes from now on 1500 gmt we will choose a coin that is green but didnt make much gains and we will kick it to our targets which are 35 and 50 in short term binance exchange btc pair 2019-05-31 14:02:33+00:00 1.0 1299055913 753 official wolf pump signal announcement btc is making a major correction after the recent rally as always this is good news because this implies recovery of investor confidence in altcoins everything is in our favor for a great pump with market conditions currently let wake up altcoin market on tomorrow the details are below date 18052019 time 1700 gmt exchange binance countdown +pump+signalfontcursive pump coming soon join now lgtpvw 2019-05-17 14:15:45+00:00 1.0 1299055913 700 buy rfr it will moon next pump signal from our team 2019-03-21 11:45:09+00:00 1.0 1299055913 662 mega pump on binance 안녕하세요 메가시그널 팀입니다 어제 갑작스러운 하락을 맞아 많은분들께서 당혹스러우실거라 생각됩니다만 알트장은 오히려 반대로 나쁘지 않은 모습을 보이고 있습니다 금일 코인 공개는 새로운 접근 방식으로 공개할 예정입니다 최근 많은 분들의 관심을 가져주신 덕에 우리가 무슨 코인을 공개할지 많은 분들께서 예측하시려는 시도가 포착되고 있습니다 이에 따라 모든분들께서 수익을 얻으실 수 있도록 매수 한뒤 홀딩하는 방식을 통해 자연스럽게 해당 코인의 가격이 유지되도록 하겠습니다 현재같은 불안정한 장에서 우리의 메가시그널은 큰 수익을 얻을수 있는 가장 좋은 방법입니다 기대하시길 바라며 금일 오후 24시에 뵙겠습니다 ♻️ exchange binance time 24시 kst 1500 gmt date 000am thursday 23th november 2018-11-22 10:23:37+00:00 1.0 1299055913 658 mega pump on binance 안녕하세요 메가시그널 팀입니다 어제 갑작스러운 하락을 맞아 많은분들께서 당혹스러우실거라 생각됩니다만 알트장은 오히려 반대로 나쁘지 않은 모습을 보이고 있습니다 금일 코인 공개는 새로운 접근 방식으로 공개할 예정입니다 최근 많은 분들의 관심을 가져주신 덕에 우리가 무슨 코인을 공개할지 많은 분들께서 예측하시려는 시도가 포착되고 있습니다 이에 따라 모든분들께서 수익을 얻으실 수 있도록 매수 한뒤 홀딩하는 방식을 통해 자연스럽게 해당 코인의 가격이 유지되도록 하겠습니다 현재같은 불안정한 장에서 우리의 메가시그널은 큰 수익을 얻을수 있는 가장 좋은 방법입니다 기대하시길 바라며 금일 오후 24시에 뵙겠습니다 ♻️ exchange binance time 24시 kst 1500 gmt date 000am thursday 22th november 2018-11-21 03:13:25+00:00 1.0 1299055913 647 mega pump on binance 안녕하세요 메가시그널 팀입니다 어제 갑작스러운 하락을 맞아 많은분들께서 당혹스러우실거라 생각됩니다만 알트장은 오히려 반대로 나쁘지 않은 모습을 보이고 있습니다 금일 코인 공개는 새로운 접근 방식으로 공개할 예정입니다 최근 많은 분들의 관심을 가져주신 덕에 우리가 무슨 코인을 공개할지 많은 분들께서 예측하시려는 시도가 포착되고 있습니다 이에 따라 모든분들께서 수익을 얻으실 수 있도록 매수 한뒤 홀딩하는 방식을 통해 자연스럽게 해당 코인의 가격이 유지되도록 하겠습니다 현재같은 불안정한 장에서 우리의 메가시그널은 큰 수익을 얻을수 있는 가장 좋은 방법입니다 기대하시길 바라며 금일 오후 24시에 뵙겠습니다 ♻️ exchange binance time 24시 kst 1500 gmt date 000am thursday 12th november 2018-11-12 02:38:43+00:00 1.0 1299055913 626 보시다시피 알트코인들이 회복됨에 따라 저가에 좋은 알트코인을 매수하기에 좋은 시점이 다가왔습니다 이에 내일 29일 22시에 kst 모두 가 큰 수익을 얻으실 수 있는 저점에 위치한 코인을 공개하겠습니다 as you can see altcoins are recovering at the same time its a good time to buy good altcoins at low prices so tomorrow we will unveil a coin on the 29th at 2200 kst where everyone can make a big profit ♻️ exchange bittrex upbit btc market time 22시 kst 1300 gmt date monday 29th october ‍‍‍ participants more than 100000 cryptoinvestors target 70 150 2018-10-28 16:05:28+00:00 1.0 1299055913 419 2일 전 20일에 저희는 투자자분들 모두 수익을 누리실 수 있도록 메가 시그널을 공개하였고 타 채널같이 20 프리펌핑 및 덤핑을 보여준것이 아닌 프리펌핑 없는 70의 큰 상승률을 선보였습니다 금일 22일 수요일 22시에 우리는 한번더 70의 상승률에 버금가는 메가 시그널을 선보일 예정입니다 on the 20th we released the mega signal ans every investor enjoyed huge profits we showed the 70 increase without prepumping instead of showing 20 free pumping and dumping like other channels on the 22nd wednesday at 1300 gmt we will once again give you the mega signal that is similar to the 70 increase rate like the last time ♻️exchange bittrex upbit btc market time 1000 pm kst 22일 수 1300 gmt on 22nd wednesday ‍‍‍participants more than 100000 cryptoinvestors target 40100 2018-08-21 15:38:49+00:00 1.0 1350255053 11157 hi traders hows everyone doing today hope you all are good im going to be giving out binary live signals in some few minutes minutes rules to be followed 1 recommended timeframe is 5 minutes plus expiry time is also 5 minutes 2 wait for price to hit the sr before entering the trade and do not forget expiry time is 5 minutes once price has touched sr note the above rules is only for my session thanks 2021-12-01 08:52:16+00:00 1.0 1350255053 11074 hi traders hows everyone doing today hope you all are good im going to be giving out binary live signals in some few minutes minutes rules to be followed 1 recommended timeframe is 5 minutes plus expiry time is also 5 minutes 2 wait for price to hit the sr before entering the trade and do not forget expiry time is 5 minutes once price has touched sr note the above rules is only for my session thanks 2021-11-30 08:50:17+00:00 1.0 1350255053 11007 hi traders hows everyone doing today hope you all are good im going to be giving out binary live signals in some few minutes minutes rules to be followed 1 recommended timeframe is 5 minutes plus expiry time is also 5 minutes 2 wait for price to hit the sr before entering the trade and do not forget expiry time is 5 minutes once price has touched sr note the above rules is only for my session thanks 2021-11-29 08:54:37+00:00 1.0 1350255053 10953 1115 gmt was na as only 5 minutes were left 2021-11-26 11:26:12+00:00 1.0 1350255053 8242 if triggers in next 2 minutes 1100 gmt valid as well else na 2021-09-14 10:53:26+00:00 1.0 1350255053 7953 triggered only 3 minutes left na take for 1100 gmt 2021-09-02 10:43:11+00:00 1.0 1350255053 5290 hello blw members we remind you that our signal providers harry gq 5 minutes room and lesther ap binary will already be in their sessions to increase their profits so you dont miss their signals 2021-05-24 04:20:03+00:00 1.0 1137683620 1728 guys be ready we are going to give paid channel signal here in 10 minutes 2017-09-21 13:31:17+00:00 1.0 1137683620 1517 we are going to give a premium signal in 5 minutes be active here and please dont pump it buy and hold it 2017-09-14 17:17:34+00:00 1.0 1137683620 653 guys this is not a pump buy and hold for good profit 2017-09-01 12:53:25+00:00 1.0 1137683620 646 ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖ ❗️❗️❗️ premium vip signal ❗️❗️❗️ ➖➖➖➖➖➖➖➖➖➖➖➖➖➖➖ vip signal in 5 minutes exchange ➖ bittrex 2017-09-01 12:44:20+00:00 1.0 1137683620 272 guys be active here a little delay in the signal signal in 5 minutes exchange bittrex 2017-08-20 15:09:44+00:00 1.0 1137683620 182 vip signal coin name ptoy exchange bittrex buy and hold for good profit 2017-08-18 14:10:22+00:00 1.0 1137683620 36 vipsignals coin name sib buy under 40k 42k sell 47k 52k exchange bittrex term 1 weeks 2017-08-11 04:47:04+00:00 1.0 1274095237 9632 celo massive news with optivs v2 deployment thats so huge big pump is coming and expected for next weeks whalescryptovip 2021-11-29 14:34:19+00:00 1.0 1274095237 9586 we are buying akro now akro breakout confirmed it is breaking its triangle so more pump is expected now you can use 510x leverage targets ⬇️ 1 00350 2 00356 3 00370 4 00400 5 moon whalescryptovip 2021-11-24 13:27:00+00:00 1.0 1274095237 5799 trx big pump hold 2021-04-13 17:15:33+00:00 1.0 1310500575 141 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:03+00:00 1.0 1310500575 116 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:04+00:00 1.0 1310500575 114 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:04+00:00 1.0 1310500575 113 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:05+00:00 1.0 1310500575 112 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:04+00:00 1.0 1310500575 111 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:04+00:00 1.0 1310500575 110 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:04+00:00 1.0 1310500575 109 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:04+00:00 1.0 1310500575 108 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:07+00:00 1.0 1310500575 107 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:04+00:00 1.0 1310500575 106 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:04+00:00 1.0 1310500575 105 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:04+00:00 1.0 1310500575 104 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:04+00:00 1.0 1310500575 103 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:04+00:00 1.0 1310500575 102 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:04+00:00 1.0 1310500575 101 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:04+00:00 1.0 1310500575 92 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:05+00:00 1.0 1310500575 90 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:41+00:00 1.0 1310500575 86 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:46+00:00 1.0 1310500575 82 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:12+00:00 1.0 1310500575 78 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:06+00:00 1.0 1310500575 76 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:05+00:00 1.0 1310500575 75 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:03+00:00 1.0 1310500575 74 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:13+00:00 1.0 1310500575 73 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:33+00:00 1.0 1310500575 71 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:06+00:00 1.0 1310500575 70 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:04+00:00 1.0 1310500575 68 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:02+00:00 1.0 1310500575 66 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:02+00:00 1.0 1310500575 65 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:02+00:00 1.0 1310500575 64 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:04+00:00 1.0 1310500575 63 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:02+00:00 1.0 1310500575 62 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:02+00:00 1.0 1310500575 61 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:03+00:00 1.0 1310500575 59 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:03+00:00 1.0 1310500575 58 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:02+00:00 1.0 1310500575 57 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:02+00:00 1.0 1310500575 56 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:03+00:00 1.0 1310500575 55 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:01+00:00 1.0 1310500575 54 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:02+00:00 1.0 1310500575 53 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:01+00:00 1.0 1310500575 51 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:01+00:00 1.0 1310500575 50 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:49+00:00 1.0 1310500575 49 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:01+00:00 1.0 1310500575 48 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:56+00:00 1.0 1310500575 45 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:00+00:00 1.0 1310500575 43 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:00+00:00 1.0 1310500575 41 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:00+00:00 1.0 1310500575 40 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:01+00:00 1.0 1310500575 39 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:15+00:00 1.0 1310500575 38 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:06+00:00 1.0 1310500575 36 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:06+00:00 1.0 1310500575 33 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:00+00:00 1.0 1310500575 31 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:00+00:00 1.0 1310500575 30 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:01+00:00 1.0 1310500575 28 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:01+00:00 1.0 1310500575 27 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:00+00:00 1.0 1310500575 26 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:01+00:00 1.0 1310500575 25 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:01+00:00 1.0 1310500575 24 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:01+00:00 1.0 1310500575 23 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:01+00:00 1.0 1310500575 22 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:01+00:00 1.0 1310500575 21 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:00+00:00 1.0 1310500575 20 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:00+00:00 1.0 1310500575 19 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:00+00:00 1.0 1310500575 18 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:06+00:00 1.0 1310500575 17 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:00+00:00 1.0 1310500575 15 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:19+00:00 1.0 1310500575 13 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:08+00:00 1.0 1310500575 11 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 16:49:42+00:00 1.0 1310500575 7 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 16:54:38+00:00 1.0 1310500575 3 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 01:27:10+00:00 1.0 1085370787 7381 over 20000 views at tradingview i strongly believe that you will get at least one more time to buy bitcoin at ma 50 before the next big pump how please read my last btc chart update cryptoengineering on twitter areyouabtcinvestornottraderthispostisagoldmine 2019-07-04 23:14:44+00:00 1.0 1085370787 6877 remember btc will pump once more to liquidate early sellers so be ready for it and dont fomo once it happens signal by cjscrown 2019-05-03 20:23:04+00:00 1.0 1085370787 6416 sam100k do not miss the next big pump to moon new trade loom loomtimetomoon la4440 sam100k 2019-03-04 17:37:16+00:00 1.0 1085370787 5037 qtum looks goodlook for entry lost over 90 when alt season starts qtum will pump now is near to all time low trying to consolidate and increasing volume targets 65k sats 70k sats 80k sats stop bellow 495k sats 2018-09-27 14:48:26+00:00 1.0 1085370787 4521 big pump at adt when you miss a train dont run behind it wait for the next one we ask allah reconcile and repay 2018-07-23 10:36:14+00:00 1.0 1085370787 88 stellar is ready to pump but needs more volume targets 1800 2100 2400 2650 3000 3400 2017-06-07 09:11:38+00:00 1.0 1085370787 32 we will inform you of a massive upcoming pump in next 10 minutes please stay tuned 2017-05-29 18:15:11+00:00 1.0 1281858086 5122 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:51+00:00 1.0 1281858086 5120 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-11-09 16:55:16+00:00 1.0 1281858086 5119 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:10+00:00 1.0 1281858086 5118 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:12+00:00 1.0 1281858086 5117 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:19+00:00 1.0 1281858086 5116 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:24+00:00 1.0 1281858086 5115 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:30:20+00:00 1.0 1281858086 5114 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:55+00:00 1.0 1281858086 5112 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 13:01:52+00:00 1.0 1281858086 5111 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 10:00:35+00:00 1.0 1281858086 5109 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 08:00:52+00:00 1.0 1281858086 5108 ℹ coin signal information ℹ date friday 09112018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-11-09 07:45:21+00:00 1.0 1281858086 5106 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09112018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-11-09 06:21:10+00:00 1.0 1281858086 5105 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 091118 day friday time 5 pm gmt 2018-11-09 06:14:46+00:00 1.0 1281858086 5050 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-27 17:01:39+00:00 1.0 1281858086 5049 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-27 16:55:20+00:00 1.0 1281858086 5048 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-27 16:50:24+00:00 1.0 1281858086 5047 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-27 16:40:21+00:00 1.0 1281858086 5046 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-27 16:30:33+00:00 1.0 1281858086 5045 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 16:00:29+00:00 1.0 1281858086 5044 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:30:21+00:00 1.0 1281858086 5043 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-27 15:00:33+00:00 1.0 1281858086 5042 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 13:00:28+00:00 1.0 1281858086 5041 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 10:00:37+00:00 1.0 1281858086 5040 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-27 08:04:24+00:00 1.0 1281858086 5039 ℹ coin signal information ℹ date saturday 27102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-27 04:04:26+00:00 1.0 1281858086 5038 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-27 03:30:58+00:00 1.0 1281858086 5036 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 271018 day saturday time 5 pm gmt 2018-10-26 16:54:58+00:00 1.0 1281858086 5035 pump analysis coin ufr coin rose to 50 approximately from low level our team members banned by yobit chat admin could not rose furtherdue to this ban n account blocked by yobit chat admin as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate i see you all at the next signal 2018-10-19 17:58:28+00:00 1.0 1281858086 5028 coin to pump is ufr exchange yobitnet target +300 market ufrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-19 17:00:55+00:00 1.0 1281858086 5027 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-19 16:55:11+00:00 1.0 1281858086 5026 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-19 16:50:13+00:00 1.0 1281858086 5025 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-19 16:40:09+00:00 1.0 1281858086 5024 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-19 16:30:09+00:00 1.0 1281858086 5023 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 16:00:42+00:00 1.0 1281858086 5022 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:30:11+00:00 1.0 1281858086 5021 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-19 15:00:23+00:00 1.0 1281858086 5020 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 13:00:33+00:00 1.0 1281858086 5019 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 10:00:26+00:00 1.0 1281858086 5018 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-19 08:09:31+00:00 1.0 1281858086 5017 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-19 05:31:46+00:00 1.0 1281858086 5016 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 191018 day friday time 5 pm gmt 2018-10-19 05:09:45+00:00 1.0 1281858086 5015 pump analysis coin elc coin rose to 250 from low level our team members promoted the coin very well buy order 200 for long time coin dipped to 1365 n rose again to 3000 more than 100 second wavedue to marketing by our team members as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-18 18:13:40+00:00 1.0 1281858086 5010 coin to pump is elc exchange yobitnet target +300 market elcbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-18 17:00:22+00:00 1.0 1281858086 5009 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-18 16:55:12+00:00 1.0 1281858086 5008 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-18 16:50:11+00:00 1.0 1281858086 5007 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-18 16:40:08+00:00 1.0 1281858086 5006 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-18 16:32:01+00:00 1.0 1281858086 5005 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 16:02:15+00:00 1.0 1281858086 5004 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:30:10+00:00 1.0 1281858086 5003 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-18 15:00:23+00:00 1.0 1281858086 5002 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 13:01:35+00:00 1.0 1281858086 5001 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 10:01:08+00:00 1.0 1281858086 5000 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-18 08:00:33+00:00 1.0 1281858086 4999 ℹ coin signal information ℹ date thursday18102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-18 03:34:47+00:00 1.0 1281858086 4998 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18102018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-18 01:34:36+00:00 1.0 1281858086 4997 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 181018 day thursday time 5 pm gmt 2018-10-17 17:28:12+00:00 1.0 1281858086 4996 pump analysis coin srn coin rose to 170 from low level as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-13 17:42:33+00:00 1.0 1281858086 4990 the coin to pump is srn exchange yobitnet target +300 market srnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-13 17:00:15+00:00 1.0 1281858086 4988 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-13 16:55:10+00:00 1.0 1281858086 4987 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-13 16:50:11+00:00 1.0 1281858086 4986 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-13 16:40:09+00:00 1.0 1281858086 4985 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-13 16:30:11+00:00 1.0 1281858086 4984 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 16:00:29+00:00 1.0 1281858086 4983 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:30:14+00:00 1.0 1281858086 4982 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-13 15:00:22+00:00 1.0 1281858086 4981 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 13:00:20+00:00 1.0 1281858086 4980 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 10:01:43+00:00 1.0 1281858086 4979 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-13 09:02:14+00:00 1.0 1281858086 4978 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13102018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-13 06:11:27+00:00 1.0 1281858086 4977 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 131018 day saturdaytoday time 5 pm gmt 2018-10-13 06:05:49+00:00 1.0 1281858086 4971 pump analysis coin frn coin rose to 130 from low level our team members banned by yobit chat admincould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at lossor sell it on cryptopia for better rate else wait for our pumpas we pump highly pumpable coins see you all at the next signal 2018-10-05 18:28:54+00:00 1.0 1281858086 4967 the coin to pump is frn exchange yobitnet target +300 market frnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-05 17:00:33+00:00 1.0 1281858086 4965 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-05 16:55:30+00:00 1.0 1281858086 4964 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-05 16:50:25+00:00 1.0 1281858086 4963 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-05 16:40:18+00:00 1.0 1281858086 4962 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-05 16:30:25+00:00 1.0 1281858086 4961 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 16:00:31+00:00 1.0 1281858086 4960 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:30:23+00:00 1.0 1281858086 4959 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-05 15:00:15+00:00 1.0 1281858086 4958 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 13:00:11+00:00 1.0 1281858086 4957 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 11:00:29+00:00 1.0 1281858086 4956 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-05 10:00:11+00:00 1.0 1281858086 4955 ℹ coin signal information ℹ date friday 05102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-05 07:55:02+00:00 1.0 1281858086 4954 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 5102018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-05 06:47:31+00:00 1.0 1281858086 4953 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 051018 day fridaytoday time 5 pm gmt 2018-10-05 06:45:52+00:00 1.0 1281858086 4952 pump analysis coin r coin rose to 130 from low level our team members promoted it very well but due to short name difficult to find in search boxcould not rose further as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-10-02 18:00:47+00:00 1.0 1281858086 4947 the coin to pump is r exchange yobitnet target +300 market rbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-10-02 17:00:14+00:00 1.0 1281858086 4946 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-10-02 16:55:20+00:00 1.0 1281858086 4945 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-10-02 16:50:10+00:00 1.0 1281858086 4944 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-10-02 16:40:13+00:00 1.0 1281858086 4943 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-10-02 16:30:28+00:00 1.0 1281858086 4942 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 16:00:42+00:00 1.0 1281858086 4941 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:30:23+00:00 1.0 1281858086 4940 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-10-02 15:00:13+00:00 1.0 1281858086 4939 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 13:00:13+00:00 1.0 1281858086 4938 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 11:00:16+00:00 1.0 1281858086 4937 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-10-02 10:00:23+00:00 1.0 1281858086 4935 ℹ coin signal information ℹ date tuesday 02102018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-10-02 09:29:28+00:00 1.0 1281858086 4934 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 2102018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-10-02 09:26:05+00:00 1.0 1281858086 4933 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 021018 day tuesdaytoday time 5 pm gmt 2018-10-02 09:22:21+00:00 1.0 1281858086 4932 pump analysis coin plr coin rose to 160 from low leveln could not go at high level our team members banned in chatbox duringpromotion as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-30 17:57:07+00:00 1.0 1281858086 4928 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-30 17:01:48+00:00 1.0 1281858086 4926 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-30 16:55:16+00:00 1.0 1281858086 4925 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-30 16:50:13+00:00 1.0 1281858086 4924 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-30 16:40:12+00:00 1.0 1281858086 4923 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-30 16:30:31+00:00 1.0 1281858086 4922 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 16:00:17+00:00 1.0 1281858086 4921 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:30:24+00:00 1.0 1281858086 4920 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-30 15:00:20+00:00 1.0 1281858086 4919 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 13:00:27+00:00 1.0 1281858086 4918 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-30 11:00:36+00:00 1.0 1281858086 4917 ℹ coin signal information ℹ date sunday 30092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-30 10:00:25+00:00 1.0 1281858086 4916 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30092018 sunday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-30 09:23:11+00:00 1.0 1281858086 4915 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 300918 day sunday time 5 pm gmt 2018-09-30 09:21:21+00:00 1.0 1281858086 4914 pump analysis coin xptx buy order for long time at 143 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-29 18:11:56+00:00 1.0 1281858086 4908 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-29 17:00:20+00:00 1.0 1281858086 4906 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-29 16:55:14+00:00 1.0 1281858086 4905 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-29 16:50:18+00:00 1.0 1281858086 4904 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-29 16:40:10+00:00 1.0 1281858086 4903 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-29 16:30:12+00:00 1.0 1281858086 4902 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 16:00:15+00:00 1.0 1281858086 4901 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:30:21+00:00 1.0 1281858086 4900 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-29 15:00:26+00:00 1.0 1281858086 4899 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 13:00:18+00:00 1.0 1281858086 4898 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 10:00:21+00:00 1.0 1281858086 4897 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-29 08:00:27+00:00 1.0 1281858086 4896 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 20 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 29092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 21:04:14+00:00 1.0 1281858086 4895 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 290918 day saturday time 5 pm gmt 2018-09-28 20:04:12+00:00 1.0 1281858086 4894 pump analysis coin fire buy order for long time at 120 enough time to participants make money our team promoted the coin in chatbox very well as we promisewe always re pumpour coins ❌so never sell in loss ✅just average it at lowest rate if u are at loss n wait for pumpas we pump highly pumpable coins see you all at the next signal 2018-09-28 17:29:56+00:00 1.0 1281858086 4890 the coin to pump is fire exchange yobitnet target +300 market firebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-28 17:01:29+00:00 1.0 1281858086 4888 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-28 16:55:13+00:00 1.0 1281858086 4887 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-28 16:50:10+00:00 1.0 1281858086 4886 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-28 16:40:12+00:00 1.0 1281858086 4885 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-28 16:30:12+00:00 1.0 1281858086 4884 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 16:00:16+00:00 1.0 1281858086 4883 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:30:22+00:00 1.0 1281858086 4882 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-28 15:00:32+00:00 1.0 1281858086 4881 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 13:00:30+00:00 1.0 1281858086 4880 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 10:00:25+00:00 1.0 1281858086 4879 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-28 08:00:16+00:00 1.0 1281858086 4878 ℹ coin signal information ℹ date friday 28092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-28 06:00:18+00:00 1.0 1281858086 4877 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-28 03:00:55+00:00 1.0 1281858086 4876 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 280918 day friday time 5 pm gmt 2018-09-27 19:02:02+00:00 1.0 1281858086 4875 pump analysis coin xpro as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 300 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-27 17:22:29+00:00 1.0 1281858086 4869 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-27 17:00:06+00:00 1.0 1281858086 4868 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-27 16:55:17+00:00 1.0 1281858086 4867 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-27 16:50:15+00:00 1.0 1281858086 4866 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-27 16:40:11+00:00 1.0 1281858086 4865 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-27 16:30:17+00:00 1.0 1281858086 4864 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 16:00:49+00:00 1.0 1281858086 4863 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:30:19+00:00 1.0 1281858086 4862 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-27 15:00:20+00:00 1.0 1281858086 4861 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 13:00:14+00:00 1.0 1281858086 4860 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 10:00:19+00:00 1.0 1281858086 4859 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-27 08:00:17+00:00 1.0 1281858086 4858 ℹ coin signal information ℹ date thursday 27092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-27 06:00:11+00:00 1.0 1281858086 4857 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 27092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-27 03:00:19+00:00 1.0 1281858086 4856 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 270918 day thursday time 5 pm gmt 2018-09-26 18:17:15+00:00 1.0 1281858086 4855 pump analysis coin emp as we promisewe always re pumpour coins ❌so never sell in loss buy order for long time at 400 enough time to participants make money our team promoted the coin in chatbox very well see you all at the next signal 2018-09-26 17:53:06+00:00 1.0 1281858086 4849 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-26 17:00:32+00:00 1.0 1281858086 4847 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-26 16:55:14+00:00 1.0 1281858086 4846 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-26 16:50:15+00:00 1.0 1281858086 4845 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-26 16:40:13+00:00 1.0 1281858086 4844 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-26 16:30:49+00:00 1.0 1281858086 4843 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 16:00:23+00:00 1.0 1281858086 4842 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:30:27+00:00 1.0 1281858086 4841 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-26 15:00:38+00:00 1.0 1281858086 4840 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 13:00:20+00:00 1.0 1281858086 4839 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 10:00:25+00:00 1.0 1281858086 4838 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-26 08:00:14+00:00 1.0 1281858086 4837 ℹ coin signal information ℹ date wednesday 26092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-26 05:04:13+00:00 1.0 1281858086 4836 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-26 03:00:28+00:00 1.0 1281858086 4835 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 260918 day wednesday time 5 pm gmt 2018-09-25 23:48:39+00:00 1.0 1281858086 4834 pump analysis coin alis as we try to pump on cryptopia rather than yobit ppl think its yobitcoin pumped up to 150 on yobitwhereas it rises 30 on cryptopia so results r lower than expectations ✅we will make sure in future we will pump only on yobit as changing exchange creating confusions see you all at the next signal 2018-09-22 17:47:24+00:00 1.0 1281858086 4829 the coin to pump is alis exchange cryptopiaconz target +200 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-22 17:00:32+00:00 1.0 1281858086 4827 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-09-22 16:55:18+00:00 1.0 1281858086 4825 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-09-22 16:40:26+00:00 1.0 1281858086 4824 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-09-22 16:30:16+00:00 1.0 1281858086 4823 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 16:00:19+00:00 1.0 1281858086 4822 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 15:00:40+00:00 1.0 1281858086 4821 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 14:00:46+00:00 1.0 1281858086 4820 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 13:00:19+00:00 1.0 1281858086 4819 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange time 5 pm gmt read the instructions above and be ready 2018-09-22 10:00:26+00:00 1.0 1281858086 4818 ℹ coin signal information ℹ date saturday 22092018 hour 1700 pm gmt exchange cryptopia market btc trading pairbtc wwwcryptopiaconz ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on cryptopia on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-22 09:27:17+00:00 1.0 1281858086 4817 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 8 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 19092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-22 09:12:28+00:00 1.0 1281858086 4815 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date 22918 day saturday time 5 pm gmt 2018-09-22 09:00:48+00:00 1.0 1281858086 4814 pump analysis great guys coin xpro coin open 99 high after pump 239 a total rise of 140 seen during yobit chat admin banned our team members instantlyso results r lower than expectations see you all at the next signal 2018-09-21 18:20:42+00:00 1.0 1281858086 4807 the coin to pump is xpro exchange yobitnet target +300 market xprobtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-21 16:00:40+00:00 1.0 1281858086 4805 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-21 15:55:11+00:00 1.0 1281858086 4804 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-21 15:50:12+00:00 1.0 1281858086 4803 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-21 15:40:35+00:00 1.0 1281858086 4802 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-21 15:30:38+00:00 1.0 1281858086 4801 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 15:00:26+00:00 1.0 1281858086 4800 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-21 14:30:18+00:00 1.0 1281858086 4799 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 13:00:37+00:00 1.0 1281858086 4798 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-21 10:00:13+00:00 1.0 1281858086 4795 ℹ coin signal information ℹ date friday 21092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower price our trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-21 06:04:11+00:00 1.0 1281858086 4794 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell ❌but never sell it under the actual price otherwise it will lead to a dump ✅sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump ✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21092018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-21 03:00:29+00:00 1.0 1281858086 4792 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can maken money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 210918 day friday time 4 pm gmt 2018-09-20 15:11:01+00:00 1.0 1281858086 4791 pump analysis great guys coin alis coin open 600 high after pump 1495 a total rise of 150 seen during see you all at the next signal 2018-09-19 17:38:04+00:00 1.0 1281858086 4783 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-19 17:00:27+00:00 1.0 1281858086 4782 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-19 16:55:14+00:00 1.0 1281858086 4781 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-19 16:50:24+00:00 1.0 1281858086 4780 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-19 16:40:19+00:00 1.0 1281858086 4779 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-19 16:30:29+00:00 1.0 1281858086 4775 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 16:00:27+00:00 1.0 1281858086 4774 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:29:37+00:00 1.0 1281858086 4773 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-19 15:00:17+00:00 1.0 1281858086 4772 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 13:00:39+00:00 1.0 1281858086 4771 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-19 10:00:41+00:00 1.0 1281858086 4770 ℹ coin signal information ℹ date wednesday 19092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-19 08:38:36+00:00 1.0 1281858086 4769 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19092018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-19 07:04:20+00:00 1.0 1281858086 4768 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 190918 day wednesday time 5 pm gmt 2018-09-18 18:31:28+00:00 1.0 1281858086 4767 pump analysis great guys coin xmg low 24 hr 904 high after pump 2360 a total rise of 161 seen during pump this coin traded very wellteam promoted in chatbox very wellcoin dipped to 1000 n pumped again to 2200see you all at the next signal 2018-09-18 17:20:37+00:00 1.0 1281858086 4758 the coin to pump is xmg exchange yobitnet target +300 market xmgbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-18 16:00:41+00:00 1.0 1281858086 4757 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-18 15:55:10+00:00 1.0 1281858086 4756 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-18 15:50:10+00:00 1.0 1281858086 4755 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-18 15:40:13+00:00 1.0 1281858086 4754 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-18 15:30:24+00:00 1.0 1281858086 4753 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 15:00:16+00:00 1.0 1281858086 4752 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-18 14:30:29+00:00 1.0 1281858086 4751 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 13:00:42+00:00 1.0 1281858086 4750 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 10:00:16+00:00 1.0 1281858086 4749 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-18 08:00:10+00:00 1.0 1281858086 4748 ℹ coin signal information ℹ date tuesday 18092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-09-18 07:04:16+00:00 1.0 1281858086 4747 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 10 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 18092018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-18 06:00:24+00:00 1.0 1281858086 4745 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 180918 day tuesday time 4 pm gmt 2018-09-18 05:27:17+00:00 1.0 1281858086 4744 pump analysis great guys coin iqn low 24 hr 2231 high after pump 6500 quick n fast buy experienced a total rise of 426 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timecoin dipped to 22 n pumped again to 39see you all at the next signal 2018-09-17 17:02:18+00:00 1.0 1281858086 4740 the coin to pump is iqn exchange yobitnet target +300 market iqnbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-17 16:00:46+00:00 1.0 1281858086 4739 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-17 15:55:18+00:00 1.0 1281858086 4738 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-17 15:50:15+00:00 1.0 1281858086 4737 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-17 15:40:11+00:00 1.0 1281858086 4736 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-17 15:30:14+00:00 1.0 1281858086 4735 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 15:00:14+00:00 1.0 1281858086 4734 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-17 14:30:16+00:00 1.0 1281858086 4731 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 13:00:25+00:00 1.0 1281858086 4730 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 10:00:25+00:00 1.0 1281858086 4729 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-17 08:00:20+00:00 1.0 1281858086 4728 ℹ coin signal information ℹ date monday 17092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-17 03:04:12+00:00 1.0 1281858086 4726 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 170918 day monday time 4 pm gmt 2018-09-16 19:07:59+00:00 1.0 1281858086 4725 pump analysis great guys coin eqt low 24 hr 1071 high after pump 4841 a total rise of 352 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-16 17:22:27+00:00 1.0 1281858086 4719 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-16 16:00:44+00:00 1.0 1281858086 4718 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-16 15:55:14+00:00 1.0 1281858086 4717 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-16 15:50:20+00:00 1.0 1281858086 4716 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-16 15:40:10+00:00 1.0 1281858086 4715 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-16 15:30:23+00:00 1.0 1281858086 4714 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 15:00:27+00:00 1.0 1281858086 4713 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-16 14:30:21+00:00 1.0 1281858086 4712 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 13:00:17+00:00 1.0 1281858086 4711 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 10:00:15+00:00 1.0 1281858086 4710 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-16 08:00:18+00:00 1.0 1281858086 4709 ℹ coin signal information ℹ date sunday 16092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-16 06:04:16+00:00 1.0 1281858086 4708 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 13 hrs to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 16092018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-16 03:04:24+00:00 1.0 1281858086 4706 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ next coin signal info ℹ️ exchange yobit date 160918 day sunday time 4 pm gmt 2018-09-15 19:06:50+00:00 1.0 1281858086 4705 pump analysis great guys coin sel low before pump 2107 high after pump 8980 a total rise of 326 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timesee you all at the next signal 2018-09-15 16:23:41+00:00 1.0 1281858086 4699 the coin to pump is sel exchange yobitnet target +300 market selbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-15 16:00:32+00:00 1.0 1281858086 4698 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-15 15:55:11+00:00 1.0 1281858086 4697 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-15 15:50:13+00:00 1.0 1281858086 4696 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-15 15:40:14+00:00 1.0 1281858086 4695 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-15 15:30:14+00:00 1.0 1281858086 4694 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 15:00:22+00:00 1.0 1281858086 4693 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-15 14:30:17+00:00 1.0 1281858086 4692 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 13:00:49+00:00 1.0 1281858086 4691 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 10:01:23+00:00 1.0 1281858086 4690 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-15 08:00:17+00:00 1.0 1281858086 4689 ℹ coin signal information ℹ date saturday 15092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-15 02:00:40+00:00 1.0 1281858086 4688 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-14 17:46:50+00:00 1.0 1281858086 4686 have you been missing out on these huge profits above make sure you are ready for the next one this group signals cryptocoin at the low value n ✨promote it in various platforms to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 15092018 saturday time 4 pm gmt ℹ️ more instructions to come shortly we will be aiming for 300 this saturday do not miss it 2018-09-14 14:44:42+00:00 1.0 1281858086 4685 pump analysis great guys coin sbit 24 hr low 309 high 941 a total rise of 200 seen during pump this coin traded very wellgood buy orders for long timeteam promoted in chatbox very wellfor long timeit pumped again after 20 minutes389 to 819effects of our team trollingsee you all at the next signal 2018-09-13 17:00:46+00:00 1.0 1281858086 4678 the coin to pump is sbit exchange yobitnet target +300 market sbitbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-13 16:00:21+00:00 1.0 1281858086 4677 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-13 15:55:12+00:00 1.0 1281858086 4676 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-13 15:50:12+00:00 1.0 1281858086 4675 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-13 15:40:17+00:00 1.0 1281858086 4674 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-13 15:30:20+00:00 1.0 1281858086 4673 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 15:00:25+00:00 1.0 1281858086 4672 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-13 14:30:37+00:00 1.0 1281858086 4671 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 13:00:21+00:00 1.0 1281858086 4669 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 10:00:29+00:00 1.0 1281858086 4668 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-09-13 08:00:14+00:00 1.0 1281858086 4667 ℹ coin signal information ℹ date thursday 13092018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-13 04:07:10+00:00 1.0 1281858086 4666 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for tommorrows pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members tommorows coin offers an opportunity for all members to invest ℹ️ 1 day to go until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 13092018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-12 15:36:05+00:00 1.0 1281858086 4656 the coin to pump is beez exchange yobitnet target +300 market beezbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-11 17:00:38+00:00 1.0 1281858086 4655 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit at weeks low level 2018-09-11 16:55:21+00:00 1.0 1281858086 4654 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-11 16:50:14+00:00 1.0 1281858086 4653 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-11 16:40:14+00:00 1.0 1281858086 4652 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-11 16:30:16+00:00 1.0 1281858086 4651 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 16:00:19+00:00 1.0 1281858086 4650 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-11 15:00:16+00:00 1.0 1281858086 4649 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 13:00:20+00:00 1.0 1281858086 4648 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 10:00:18+00:00 1.0 1281858086 4647 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-11 08:01:20+00:00 1.0 1281858086 4646 ℹ coin signal information ℹ date tuesday 11092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-11 07:04:12+00:00 1.0 1281858086 4645 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 9 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 11092018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-11 05:59:11+00:00 1.0 1281858086 4643 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 110918 day tuesday time 5 pm gmt 2018-09-10 17:42:08+00:00 1.0 1281858086 4641 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-10 16:55:12+00:00 1.0 1281858086 4640 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-10 16:50:21+00:00 1.0 1281858086 4639 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-10 16:40:11+00:00 1.0 1281858086 4638 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-10 16:30:21+00:00 1.0 1281858086 4637 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 16:00:22+00:00 1.0 1281858086 4636 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-10 15:01:47+00:00 1.0 1281858086 4635 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 13:00:17+00:00 1.0 1281858086 4634 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-10 10:00:14+00:00 1.0 1281858086 4633 ℹ coin signal information ℹ date monday 10092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-10 06:34:03+00:00 1.0 1281858086 4632 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 1030 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 10092018 monday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-10 06:26:53+00:00 1.0 1281858086 4630 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 100918 day monday time 5 pm gmt 2018-09-09 12:27:43+00:00 1.0 1281858086 4621 the coin to pump is party exchange yobitnet target +300 market partybtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-08 17:00:17+00:00 1.0 1281858086 4620 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-08 16:55:16+00:00 1.0 1281858086 4619 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-08 16:50:14+00:00 1.0 1281858086 4618 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-08 16:40:10+00:00 1.0 1281858086 4617 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-08 16:30:26+00:00 1.0 1281858086 4616 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 16:00:20+00:00 1.0 1281858086 4615 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-08 15:00:17+00:00 1.0 1281858086 4614 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 13:00:22+00:00 1.0 1281858086 4613 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 10:00:21+00:00 1.0 1281858086 4612 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-08 08:00:14+00:00 1.0 1281858086 4611 ℹ coin signal information ℹ date saturday 08092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy orders ✅instead put lower sell ordersso that more buy n buy orders can b created 2018-09-08 06:00:12+00:00 1.0 1281858086 4610 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 08092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-08 03:00:19+00:00 1.0 1281858086 4608 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 080918 day saturday time 5 pm gmt 2018-09-07 19:00:17+00:00 1.0 1281858086 4601 the coin to pump is units exchange yobitnet target +300 market unitsbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-07 17:00:37+00:00 1.0 1281858086 4600 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-07 16:55:19+00:00 1.0 1281858086 4599 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-07 16:50:19+00:00 1.0 1281858086 4598 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-07 16:40:30+00:00 1.0 1281858086 4597 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-07 16:30:27+00:00 1.0 1281858086 4596 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 16:00:35+00:00 1.0 1281858086 4595 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-07 15:00:25+00:00 1.0 1281858086 4594 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 13:00:15+00:00 1.0 1281858086 4593 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 10:00:11+00:00 1.0 1281858086 4592 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-07 08:00:13+00:00 1.0 1281858086 4591 ℹ coin signal information ℹ date friday 07092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-07 06:00:19+00:00 1.0 1281858086 4590 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 07092018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-07 03:00:24+00:00 1.0 1281858086 4588 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 07918 day friday time 5 pm gmt 2018-09-06 19:15:21+00:00 1.0 1281858086 4582 the coin to pump is emp exchange yobitnet target +300 market empbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-06 17:00:24+00:00 1.0 1281858086 4581 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-06 16:55:12+00:00 1.0 1281858086 4580 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-06 16:50:11+00:00 1.0 1281858086 4579 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-06 16:40:13+00:00 1.0 1281858086 4578 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-06 16:30:11+00:00 1.0 1281858086 4577 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 16:00:59+00:00 1.0 1281858086 4576 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-06 15:00:15+00:00 1.0 1281858086 4575 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 13:00:15+00:00 1.0 1281858086 4574 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 10:00:21+00:00 1.0 1281858086 4573 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-06 08:00:18+00:00 1.0 1281858086 4572 ℹ coin signal information ℹ date thursday 06092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-06 06:00:20+00:00 1.0 1281858086 4571 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 06092018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-06 03:00:46+00:00 1.0 1281858086 4569 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 06918 day thursday time 5 pm gmt 2018-09-05 17:07:07+00:00 1.0 1281858086 4561 the coin to pump is tusd exchange yobitnet target +500 market tusdbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-09-01 17:01:02+00:00 1.0 1281858086 4560 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-09-01 16:55:12+00:00 1.0 1281858086 4559 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-09-01 16:50:12+00:00 1.0 1281858086 4558 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-09-01 16:40:15+00:00 1.0 1281858086 4557 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-09-01 16:30:14+00:00 1.0 1281858086 4556 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 16:00:37+00:00 1.0 1281858086 4555 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-09-01 15:01:00+00:00 1.0 1281858086 4554 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 13:00:16+00:00 1.0 1281858086 4553 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 10:00:24+00:00 1.0 1281858086 4552 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-09-01 08:00:21+00:00 1.0 1281858086 4551 ℹ coin signal information ℹ date thursday 01092018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-09-01 06:00:18+00:00 1.0 1281858086 4550 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 01092018 saturday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-09-01 03:00:19+00:00 1.0 1281858086 4548 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 01918 day saturday time 5 pm gmt 2018-08-31 16:19:44+00:00 1.0 1281858086 4547 great guys before pump 16000 24 hr high after pump 41800 profit 161 coin is highly active dipped to 2162 rose to 16000 again8 times of 24 hr lowstill trading on our buy zone 2018-08-30 17:41:29+00:00 1.0 1281858086 4541 the coin to pump is ae exchange yobitnet target +300 market aebtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-30 17:01:28+00:00 1.0 1281858086 4538 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-30 16:55:15+00:00 1.0 1281858086 4537 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-30 16:50:14+00:00 1.0 1281858086 4536 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-30 16:40:18+00:00 1.0 1281858086 4535 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-30 16:30:20+00:00 1.0 1281858086 4534 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 16:00:18+00:00 1.0 1281858086 4533 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-30 15:00:29+00:00 1.0 1281858086 4532 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 13:00:13+00:00 1.0 1281858086 4531 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 10:00:13+00:00 1.0 1281858086 4530 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-30 08:00:19+00:00 1.0 1281858086 4529 ℹ coin signal information ℹ date thursday 30082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-30 06:00:13+00:00 1.0 1281858086 4528 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 30082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-30 03:00:32+00:00 1.0 1281858086 4526 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 30818 day thursday time 5 pm gmt 2018-08-29 17:37:28+00:00 1.0 1281858086 4517 the coin to pump is hqx exchange yobitnet target +500 market hqxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-28 17:00:49+00:00 1.0 1281858086 4515 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-28 16:55:12+00:00 1.0 1281858086 4514 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-28 16:50:12+00:00 1.0 1281858086 4513 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-28 16:40:12+00:00 1.0 1281858086 4512 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-28 16:30:15+00:00 1.0 1281858086 4511 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 16:00:33+00:00 1.0 1281858086 4510 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-28 15:00:55+00:00 1.0 1281858086 4509 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 13:00:21+00:00 1.0 1281858086 4508 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 10:00:16+00:00 1.0 1281858086 4507 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-28 08:00:23+00:00 1.0 1281858086 4506 ℹ coin signal information ℹ date tuesday 28082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember donot sell on buy ordersinstead put lower sell ordersso that more buy n buy orders can b created 2018-08-28 06:04:16+00:00 1.0 1281858086 4505 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized bold it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be creatednever sell it lower buy orderselse it will lead to panic sellingn dumpinstead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 14 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 28082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-28 03:00:18+00:00 1.0 1281858086 4503 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date28818 day tuesday time 5 pm gmt 2018-08-27 17:13:35+00:00 1.0 1281858086 4497 the coin to pump is iqt exchange cryptopiaconz target +500 market iqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-26 16:00:36+00:00 1.0 1281858086 4495 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on cryptopia 2018-08-26 15:55:11+00:00 1.0 1281858086 4493 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on 2018-08-26 15:40:11+00:00 1.0 1281858086 4492 ℹ️ 30 minutes ℹ️ start getting logged in now 2018-08-26 15:30:16+00:00 1.0 1281858086 4489 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 13:00:15+00:00 1.0 1281858086 4487 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange time 4 pm gmt read the instructions above and be ready 2018-08-26 11:00:13+00:00 1.0 1281858086 4486 ❗ read instructions below❗ 1 sign up to cryptopia and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 4 pm gmt this will be for a low market cap coin in cryptopia the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 15 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces not in bulks make sure you understand the process and how to trade on cryptopia ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ 7 hours until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange cryptopia date 26082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-26 09:00:31+00:00 1.0 1281858086 4485 after continuous successful pumping on yobiton high demandwe r going to pump on cryptopia alsoas we signalled ✨ low level ✨n giving ample opportunity for everyoneto make profitwe always repump our coinsto check 100 profit for our subsso here is pump announcement on your demand ℹ️ coin signal info ℹ️ exchange cryptopia date26818 day sunday time 4 pm gmt 2018-08-26 07:44:07+00:00 1.0 1281858086 4484 great guys low before pump 1000 24 hr high after pump 3301 profit 230 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-25 18:41:39+00:00 1.0 1281858086 4477 the coin to pump is bnbx exchange yobitnet target +500 market bnbxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-25 18:00:12+00:00 1.0 1281858086 4476 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-25 17:55:15+00:00 1.0 1281858086 4475 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-25 17:50:23+00:00 1.0 1281858086 4474 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-25 17:40:11+00:00 1.0 1281858086 4473 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-25 17:30:24+00:00 1.0 1281858086 4472 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-25 17:00:14+00:00 1.0 1281858086 4471 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 16:00:22+00:00 1.0 1281858086 4470 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 15:00:19+00:00 1.0 1281858086 4469 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 14:00:18+00:00 1.0 1281858086 4468 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 13:00:20+00:00 1.0 1281858086 4467 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 10:00:12+00:00 1.0 1281858086 4466 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-25 08:00:20+00:00 1.0 1281858086 4465 ℹ coin signal information ℹ date saturday 25082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 6 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-25 01:30:30+00:00 1.0 1281858086 4464 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 25082018 saturday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-25 01:24:30+00:00 1.0 1281858086 4462 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date25818 day saturday time 6 pm gmt 2018-08-25 01:09:14+00:00 1.0 1281858086 4459 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-24 14:42:39+00:00 1.0 1281858086 4457 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 13:57:16+00:00 1.0 1281858086 4456 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 10:03:42+00:00 1.0 1281858086 4455 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-24 08:00:28+00:00 1.0 1281858086 4454 ℹ coin signal information ℹ date friday 24082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-24 03:00:16+00:00 1.0 1281858086 4453 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 24082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-24 02:00:22+00:00 1.0 1281858086 4451 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info shortly ℹ️ exchange yobit 2018-08-24 01:05:47+00:00 1.0 1281858086 4450 scheduled pump is cancelled due to high sell wall coin is not near to 24 hr low which is our speciality to signal low level we will reschedule with good coin again low level thanks for keeping patience 2018-08-23 17:06:49+00:00 1.0 1281858086 4449 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-23 17:05:07+00:00 1.0 1281858086 4448 ℹ️ 20 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:54:17+00:00 1.0 1281858086 4447 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-23 16:37:38+00:00 1.0 1281858086 4446 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 16:02:25+00:00 1.0 1281858086 4445 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:16:34+00:00 1.0 1281858086 4444 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-23 15:08:51+00:00 1.0 1281858086 4442 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 13:01:46+00:00 1.0 1281858086 4441 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-23 10:01:34+00:00 1.0 1281858086 4440 ℹ coin signal information ℹ date thursday 23082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-23 09:05:29+00:00 1.0 1281858086 4439 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 23082018 thursday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-23 08:48:58+00:00 1.0 1281858086 4438 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 23 august 2018 day thursday time 5 pm gmt 2018-08-23 07:59:21+00:00 1.0 1281858086 4436 great guys low before pump 1252 24 hr high after pump 3900 profit 211 + buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-22 18:08:25+00:00 1.0 1281858086 4426 the coin to pump is mnz exchange yobitnet target +500 market mnzbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-22 17:00:18+00:00 1.0 1281858086 4425 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-22 16:56:12+00:00 1.0 1281858086 4424 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-22 16:51:15+00:00 1.0 1281858086 4423 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-22 16:41:11+00:00 1.0 1281858086 4422 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-22 16:31:19+00:00 1.0 1281858086 4421 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 16:01:18+00:00 1.0 1281858086 4420 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-22 15:01:24+00:00 1.0 1281858086 4419 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 13:01:14+00:00 1.0 1281858086 4418 ℹ️ 7 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 10:01:13+00:00 1.0 1281858086 4417 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-22 08:01:18+00:00 1.0 1281858086 4416 ℹ coin signal information ℹ date wednesday 22082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-22 05:34:32+00:00 1.0 1281858086 4415 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 22082018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-22 02:35:49+00:00 1.0 1281858086 4414 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always remember pump our coin ℹ️ next coin signal info ℹ️ exchange yobit date 22 august 2018 day wednesday time 5 pm gmt 2018-08-22 02:25:03+00:00 1.0 1281858086 4403 the coin to pump is loom exchange yobitnet target +500 market loombtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-21 16:01:23+00:00 1.0 1281858086 4401 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-21 15:56:27+00:00 1.0 1281858086 4400 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-21 15:51:17+00:00 1.0 1281858086 4399 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-21 15:41:15+00:00 1.0 1281858086 4398 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-21 15:31:13+00:00 1.0 1281858086 4397 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 15:03:00+00:00 1.0 1281858086 4396 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-21 14:31:20+00:00 1.0 1281858086 4395 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 13:01:14+00:00 1.0 1281858086 4394 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 10:01:12+00:00 1.0 1281858086 4393 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-21 08:01:14+00:00 1.0 1281858086 4392 ℹ coin signal information ℹ date tuesday 21082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-21 01:37:52+00:00 1.0 1281858086 4391 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 21082018 tuesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-21 01:15:07+00:00 1.0 1281858086 4389 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 21 august 2018 day tuesday time 4 pm gmt 2018-08-21 00:04:31+00:00 1.0 1281858086 4388 great guys 24 hr low pump 350 24 hr high after pump 1224 profit 250 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-19 17:20:01+00:00 1.0 1281858086 4378 the coin to pump is mth exchange yobitnet target +500 market mthbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-19 16:01:09+00:00 1.0 1281858086 4376 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-19 15:56:18+00:00 1.0 1281858086 4375 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-19 15:51:14+00:00 1.0 1281858086 4374 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-19 15:41:09+00:00 1.0 1281858086 4373 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-19 15:31:34+00:00 1.0 1281858086 4372 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 15:01:27+00:00 1.0 1281858086 4371 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-19 14:31:17+00:00 1.0 1281858086 4370 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 13:01:29+00:00 1.0 1281858086 4369 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 10:01:12+00:00 1.0 1281858086 4368 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-19 07:58:21+00:00 1.0 1281858086 4367 ℹ coin signal information ℹ date sunday 19082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 4 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-19 03:18:47+00:00 1.0 1281858086 4366 ❗ read instructions below❗ u 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 19082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-19 01:02:33+00:00 1.0 1281858086 4365 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 19 august 2018 day sunday time 4 pm gmt 2018-08-19 00:59:47+00:00 1.0 1281858086 4363 great guys low before pump 70 24 hr high after pump 291 profit 315 as promised we repumped our previous coin hac buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-17 17:19:58+00:00 1.0 1281858086 4354 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-17 16:01:53+00:00 1.0 1281858086 4352 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-17 15:56:13+00:00 1.0 1281858086 4351 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-17 15:51:09+00:00 1.0 1281858086 4350 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-17 15:41:13+00:00 1.0 1281858086 4349 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-17 15:31:13+00:00 1.0 1281858086 4348 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 15:01:14+00:00 1.0 1281858086 4347 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-17 14:31:10+00:00 1.0 1281858086 4346 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 13:01:11+00:00 1.0 1281858086 4345 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-17 10:01:14+00:00 1.0 1281858086 4344 ℹ coin signal information ℹ date friday 17082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-17 07:59:56+00:00 1.0 1281858086 4342 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 17082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-17 00:34:11+00:00 1.0 1281858086 4341 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal info ℹ️ exchange yobit date 17 august 2018 day friday time 4 pm gmt 2018-08-16 18:47:29+00:00 1.0 1281858086 4340 great guys low before pump 2306 24 hr high after pump 12898 profit 460 buy low level with us guys always take part with us remember ✋we always repump our coins 2018-08-16 17:52:58+00:00 1.0 1281858086 4330 the coin to pump is coinv exchange yobitnet target +900 market coinvbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-16 16:01:25+00:00 1.0 1281858086 4328 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-16 15:56:10+00:00 1.0 1281858086 4327 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-16 15:51:19+00:00 1.0 1281858086 4326 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-16 15:41:09+00:00 1.0 1281858086 4325 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-16 15:31:20+00:00 1.0 1281858086 4324 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 15:01:19+00:00 1.0 1281858086 4323 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-16 14:31:16+00:00 1.0 1281858086 4322 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-16 13:01:12+00:00 1.0 1281858086 4321 ℹ coin signal information ℹ date thursday 16082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-16 08:01:22+00:00 1.0 1281858086 4319 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 16082018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-16 02:27:01+00:00 1.0 1281858086 4318 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits iii ℹ️ next coin signal today ℹ️ exchange yobit date 16 august 2018 day thursday time 4 pm gmt 2018-08-16 02:00:29+00:00 1.0 1281858086 4317 our pumps become more popular each day we give signals low level which is the main reason of our success if any of our members experience loss during our pump they should hold average it if bought too late higher rate we are always pumping highly pumpable coins pump of same coin again is inevitable pump with us is always profit 2018-08-15 14:13:04+00:00 1.0 1281858086 4306 the coin to pump is pro exchange yobitnet target +900 market probtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-14 17:00:04+00:00 1.0 1281858086 4305 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-14 16:56:17+00:00 1.0 1281858086 4304 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-14 16:50:10+00:00 1.0 1281858086 4303 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-14 16:41:24+00:00 1.0 1281858086 4302 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-14 16:30:19+00:00 1.0 1281858086 4301 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 16:00:20+00:00 1.0 1281858086 4300 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 14:00:17+00:00 1.0 1281858086 4299 ℹ️ 4 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-08-14 13:04:17+00:00 1.0 1281858086 4298 ℹ coin signal information ℹ date tuesday 14082018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-14 12:02:43+00:00 1.0 1281858086 4297 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1700pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 14082018 tuesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-14 11:37:37+00:00 1.0 1281858086 4295 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 14 august 2018 day tuesday time 5 pm gmt 2018-08-14 11:07:49+00:00 1.0 1281858086 4291 hold post coin name in yobit chatboxhaving rumour of airdrop 2018-08-13 18:07:09+00:00 1.0 1281858086 4284 the coin to pump is pai exchange yobitnet target +700 market paibtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-13 18:00:58+00:00 1.0 1281858086 4283 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-13 17:56:09+00:00 1.0 1281858086 4282 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-13 17:51:08+00:00 1.0 1281858086 4281 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-13 17:41:09+00:00 1.0 1281858086 4280 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-13 17:31:11+00:00 1.0 1281858086 4279 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 17:01:11+00:00 1.0 1281858086 4278 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 15:01:10+00:00 1.0 1281858086 4277 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 13:01:11+00:00 1.0 1281858086 4276 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-13 10:01:15+00:00 1.0 1281858086 4275 ℹ coin signal information ℹ date monday 13082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 10 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all ofb us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-13 08:01:11+00:00 1.0 1281858086 4274 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 13082018 monday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-13 03:28:54+00:00 1.0 1281858086 4272 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 13 august 2018 day monday time 6 pm gmt 2018-08-13 00:55:28+00:00 1.0 1281858086 4261 the coin to pump is hdg exchange yobitnet target +700 market hdgbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-12 16:00:01+00:00 1.0 1281858086 4260 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-12 15:56:09+00:00 1.0 1281858086 4259 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-12 15:51:09+00:00 1.0 1281858086 4258 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-12 15:41:09+00:00 1.0 1281858086 4257 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-12 15:31:14+00:00 1.0 1281858086 4256 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 15:01:21+00:00 1.0 1281858086 4255 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-12 14:31:15+00:00 1.0 1281858086 4254 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 13:01:11+00:00 1.0 1281858086 4253 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-12 10:01:29+00:00 1.0 1281858086 4252 ℹ coin signal information ℹ date sunday 12082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-12 08:01:09+00:00 1.0 1281858086 4251 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 12082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-12 02:38:17+00:00 1.0 1281858086 4249 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal today ℹ️ exchange yobit date 12 august 2018 day sunday time 4 pm gmt 2018-08-12 01:05:55+00:00 1.0 1281858086 4235 the coin to pump is torq exchange yobitnet target +700 market torqbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-09 18:00:10+00:00 1.0 1281858086 4234 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-09 17:56:09+00:00 1.0 1281858086 4233 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-09 17:51:08+00:00 1.0 1281858086 4232 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-09 17:41:09+00:00 1.0 1281858086 4231 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-09 17:31:10+00:00 1.0 1281858086 4230 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 17:01:22+00:00 1.0 1281858086 4229 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 15:01:32+00:00 1.0 1281858086 4228 ℹ️ 5 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 13:01:34+00:00 1.0 1281858086 4227 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange yobitnet time 6 pm gmt read the instructions above and be ready 2018-08-09 10:01:10+00:00 1.0 1281858086 4226 ℹ coin signal information ℹ date thursday 09082018 hour 1800 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 9 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 6 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-09 08:56:20+00:00 1.0 1281858086 4225 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1800pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 09082018 thursday time 6 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-09 08:29:34+00:00 1.0 1281858086 4218 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-08 15:59:43+00:00 1.0 1281858086 4217 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-08 15:56:13+00:00 1.0 1281858086 4216 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-08 15:51:09+00:00 1.0 1281858086 4215 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-08 15:41:12+00:00 1.0 1281858086 4214 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-08 15:31:14+00:00 1.0 1281858086 4213 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 15:01:08+00:00 1.0 1281858086 4212 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-08 14:31:09+00:00 1.0 1281858086 4211 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 13:01:09+00:00 1.0 1281858086 4210 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-08 10:01:09+00:00 1.0 1281858086 4209 ℹ coin signal information ℹ date wednesday 08082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-08 08:01:09+00:00 1.0 1281858086 4208 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-08 00:34:09+00:00 1.0 1281858086 4206 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 08082018 wednesday time 4 pm gmt 2018-08-07 19:34:26+00:00 1.0 1281858086 4196 the coin to pump is get exchange yobitnet target +700 market getbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-05 16:02:33+00:00 1.0 1281858086 4195 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-05 15:57:09+00:00 1.0 1281858086 4194 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-05 15:52:10+00:00 1.0 1281858086 4193 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-05 15:42:09+00:00 1.0 1281858086 4192 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-05 15:32:18+00:00 1.0 1281858086 4191 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 15:02:12+00:00 1.0 1281858086 4190 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-05 14:32:10+00:00 1.0 1281858086 4189 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-05 13:02:11+00:00 1.0 1281858086 4188 ℹ coin signal information ℹ date sunday 05082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 5 hours from now ℹ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-05 11:04:08+00:00 1.0 1281858086 4187 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 05082018 sunday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-05 10:16:14+00:00 1.0 1281858086 4185 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 05082018 sunday time 4 pm gmt 2018-08-05 10:06:23+00:00 1.0 1281858086 4176 the coin to pump is sig exchange yobitnet target +700 market sigbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-08-04 16:01:23+00:00 1.0 1281858086 4175 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-04 15:57:19+00:00 1.0 1281858086 4174 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-04 15:51:17+00:00 1.0 1281858086 4173 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-04 15:41:22+00:00 1.0 1281858086 4172 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-04 15:32:28+00:00 1.0 1281858086 4171 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 15:04:13+00:00 1.0 1281858086 4170 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-04 14:34:00+00:00 1.0 1281858086 4169 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-04 13:03:14+00:00 1.0 1281858086 4168 ℹ coin signal information ℹ date saturday 04082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 6 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-04 09:59:37+00:00 1.0 1281858086 4167 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 04082018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-04 09:45:56+00:00 1.0 1281858086 4165 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal todayℹ️ exchange yobit date 04082018 saturday time 4 pm gmt 2018-08-04 09:04:25+00:00 1.0 1281858086 4156 the coin to pump is cl exchange yobitnet target +500 market clbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-08-03 16:00:36+00:00 1.0 1281858086 4155 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-08-03 15:57:18+00:00 1.0 1281858086 4154 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-08-03 15:52:20+00:00 1.0 1281858086 4153 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-08-03 15:41:17+00:00 1.0 1281858086 4152 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-08-03 15:31:22+00:00 1.0 1281858086 4151 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 15:01:18+00:00 1.0 1281858086 4150 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-08-03 14:32:33+00:00 1.0 1281858086 4149 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 13:02:32+00:00 1.0 1281858086 4148 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-08-03 10:02:27+00:00 1.0 1281858086 4147 ℹ coin signal information ℹ date friday 03082018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-08-03 08:02:20+00:00 1.0 1281858086 4146 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 03082018 friday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-08-03 01:34:27+00:00 1.0 1281858086 4144 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal fridayℹ️ exchange yobit date 03082018 friday time 4 pm gmt 2018-08-02 18:16:11+00:00 1.0 1281858086 4135 the coin to pump is hac exchange yobitnet target +500 market hacbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-28 16:00:58+00:00 1.0 1281858086 4134 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-28 15:57:21+00:00 1.0 1281858086 4133 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-28 15:51:17+00:00 1.0 1281858086 4132 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-28 15:41:21+00:00 1.0 1281858086 4131 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-28 15:31:25+00:00 1.0 1281858086 4130 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 15:01:19+00:00 1.0 1281858086 4129 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-28 14:32:18+00:00 1.0 1281858086 4128 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 13:01:24+00:00 1.0 1281858086 4127 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-28 10:02:28+00:00 1.0 1281858086 4126 ℹ coin signal information ℹ date saturday 28 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-28 08:02:32+00:00 1.0 1281858086 4125 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 28072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-28 01:34:19+00:00 1.0 1281858086 4123 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturdayℹ️ exchange yobit date 28072018 saturday time 4 pm gmt 2018-07-27 18:41:46+00:00 1.0 1281858086 4114 the coin to pump is sling exchange yobitnet target +500 market slingbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-26 16:00:47+00:00 1.0 1281858086 4113 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-26 15:56:17+00:00 1.0 1281858086 4112 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-26 15:52:17+00:00 1.0 1281858086 4111 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-26 15:42:20+00:00 1.0 1281858086 4110 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-26 15:32:29+00:00 1.0 1281858086 4109 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 15:02:20+00:00 1.0 1281858086 4108 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-26 14:32:24+00:00 1.0 1281858086 4107 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 13:02:19+00:00 1.0 1281858086 4106 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-26 10:02:16+00:00 1.0 1281858086 4105 ℹ coin signal information ℹ date thursday 26 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-26 08:02:19+00:00 1.0 1281858086 4104 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is important to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal today ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-07-26 01:34:18+00:00 1.0 1281858086 4102 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 make sure you are ready for the next one this group buys crypto coins low level all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal thursday ℹ️ exchange yobit date 26072018 thursday time 4 pm gmt 2018-07-25 16:21:15+00:00 1.0 1281858086 4092 the coin to pump is infx exchange yobitnet target +500 market infxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-07-21 16:00:00+00:00 1.0 1281858086 4091 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-21 15:57:04+00:00 1.0 1281858086 4090 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-21 15:51:03+00:00 1.0 1281858086 4089 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-21 15:41:04+00:00 1.0 1281858086 4088 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-21 15:31:12+00:00 1.0 1281858086 4087 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 15:01:04+00:00 1.0 1281858086 4086 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-21 14:31:11+00:00 1.0 1281858086 4085 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 13:01:09+00:00 1.0 1281858086 4084 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-21 10:00:03+00:00 1.0 1281858086 4083 ℹ coin signal information ℹ date saturday 21 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-21 08:01:02+00:00 1.0 1281858086 4081 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-20 15:32:04+00:00 1.0 1281858086 4079 have you been missing out on these huge profits in our last pump on yobit having 600 profit in snpt coin make sure you are ready for the next one this group buys crypto coins all at the same time to increase its value we then sell the increased price for huge profits ℹ️ next coin signal saturday ℹ️ exchange yobit date 21072018 saturday time 4 pm gmt 2018-07-20 11:48:27+00:00 1.0 1281858086 4070 the coin to pump is snpt exchange yobitnet target +300 market snptbtc buy buy buy troll in chat box buy buy buy troll in chat box buy buy buy troll in chat box 2018-07-16 15:59:47+00:00 1.0 1281858086 4069 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-07-16 15:57:17+00:00 1.0 1281858086 4068 ℹ️ 10 minutes ℹ️ get ready with your yobit account 2018-07-16 15:52:00+00:00 1.0 1281858086 4067 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-07-16 15:42:07+00:00 1.0 1281858086 4066 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-07-16 15:32:01+00:00 1.0 1281858086 4065 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-16 15:02:05+00:00 1.0 1281858086 4064 ℹ️ 1 hour 30 minutes until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-07-16 14:32:01+00:00 1.0 1281858086 4063 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-16 13:02:03+00:00 1.0 1281858086 4062 ℹ️ 6 hours until the coin to buy is released ℹ️ exchange yobitnet time 4 pm gmt read the instructions above and be ready 2018-07-16 10:04:03+00:00 1.0 1281858086 4061 ℹ coin signal information ℹ date monday 16 july 2018 hour 1600 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ 8 hours from now ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 4 pm gmt exactly i will announce a coin for all of us to buy once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit 2018-07-16 08:02:04+00:00 1.0 1281858086 4059 ❗ 1 day to go instructions below❗ 1 sign up to yobit and send your btc to your wallet today 2 at 1600pm gmt the coin to buy will be posted here for everyone at the same time 3 search for the coins name in the btc market on yobit 4 the price will rise up quickly from us buying it up during the rise make sure we keep buying in the first 10 minutes to allow it to push through to a high percentage a few sells may occur and it is imporant to buy any dips these are cheap prices 5 make sure your order has gone through and then hold while the coin price increases 6 when the price levels out at its highest and the outside investors start buying sell in pieces and not all at once ℹ️ bitcoin has stabilised and made a jump from yesterday this is great for alt coins and means the pump tomorrow will be even better ℹ️ ℹ️ next coin signal tomorrow ℹ️ exchange yobit date 16072018 monday time 4 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time tomorrow you wont want to miss this one ℹ️ 2018-07-15 15:34:03+00:00 1.0 1281858086 4056 market situation is worse than we estimated we are forced to hold pumps for few days and work on improving our buy power still we did a great job considering how other channels are doing nowadays dont worry team we were going through bad times not once and not twice and we always managed to find a way to keep going red market or not we will be on top stay tuned next pump in few days 2018-06-26 04:31:20+00:00 1.0 1281858086 4049 the coin to pump is sig exchange yobitnet target +300 500 market sigbtc 2018-06-24 17:00:23+00:00 1.0 1281858086 4048 next post will be coin name 2018-06-24 16:59:26+00:00 1.0 1281858086 4047 under 2 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:58:25+00:00 1.0 1281858086 4046 under 3 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:57:24+00:00 1.0 1281858086 4045 under 5 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:55:38+00:00 1.0 1281858086 4044 under 10 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:50:43+00:00 1.0 1281858086 4043 under 15 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:45:43+00:00 1.0 1281858086 4042 under 30 mins till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:30:45+00:00 1.0 1281858086 4041 under 1 hour till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 16:00:37+00:00 1.0 1281858086 4040 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 15:00:55+00:00 1.0 1281858086 4039 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 14:02:28+00:00 1.0 1281858086 4038 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 13:02:34+00:00 1.0 1281858086 4037 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 12:02:42+00:00 1.0 1281858086 4036 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-24 11:35:58+00:00 1.0 1281858086 4035 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-06-24 02:34:38+00:00 1.0 1281858086 4034 under 24 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-23 17:22:32+00:00 1.0 1281858086 4033 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date sunday 24th june ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-06-23 15:18:54+00:00 1.0 1281858086 4024 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-06-22 17:02:05+00:00 1.0 1281858086 4015 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-22 16:01:05+00:00 1.0 1281858086 4008 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date friday 22th june ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-06-21 03:13:46+00:00 1.0 1281858086 4002 the coin to pump is chp exchange yobitnet target +300 500 market chpbtc 2018-06-20 17:00:10+00:00 1.0 1281858086 4001 next post will be coin name 2018-06-20 16:59:15+00:00 1.0 1281858086 3995 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-06-20 16:32:16+00:00 1.0 1281858086 3993 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-06-20 16:00:32+00:00 1.0 1281858086 3990 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-06-20 14:03:50+00:00 1.0 1281858086 3987 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date wednesday 20th june ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-06-18 11:35:01+00:00 1.0 1281858086 3978 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-27 17:00:09+00:00 1.0 1281858086 3977 next post will be coin name 2018-05-27 16:59:06+00:00 1.0 1281858086 3976 2 min till pump next post is coin 2018-05-27 16:58:40+00:00 1.0 1281858086 3975 under 2 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:58:10+00:00 1.0 1281858086 3974 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:57:05+00:00 1.0 1281858086 3973 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:55:05+00:00 1.0 1281858086 3972 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-27 16:54:54+00:00 1.0 1281858086 3971 under 10 mins till pump open up yobit and get ready for a great pump 2018-05-27 16:51:45+00:00 1.0 1281858086 3970 under 10 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:50:06+00:00 1.0 1281858086 3969 under 15 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:45:10+00:00 1.0 1281858086 3968 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:31:37+00:00 1.0 1281858086 3966 under 1 hour till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-27 16:01:07+00:00 1.0 1281858086 3963 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-27 14:46:44+00:00 1.0 1281858086 3959 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-27 11:20:31+00:00 1.0 1281858086 3958 next pump will be tomorrow 5 pm gmt 2018-05-26 15:01:49+00:00 1.0 1281858086 3957 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-26 06:40:28+00:00 1.0 1281858086 3945 the coin to pump is sling exchange yobitnet target +300 500 market slingbtc 2018-05-22 17:00:11+00:00 1.0 1281858086 3944 next post will be coin name 2018-05-22 16:59:17+00:00 1.0 1281858086 3943 under 2 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:58:12+00:00 1.0 1281858086 3942 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:57:17+00:00 1.0 1281858086 3941 under 3 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:57:05+00:00 1.0 1281858086 3940 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:55:07+00:00 1.0 1281858086 3939 under 10 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:50:19+00:00 1.0 1281858086 3938 under 15 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:45:56+00:00 1.0 1281858086 3936 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-22 16:00:22+00:00 1.0 1281858086 3932 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-22 06:57:43+00:00 1.0 1281858086 3928 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-20 17:00:17+00:00 1.0 1281858086 3927 next post will be coin name 2018-05-20 17:00:14+00:00 1.0 1281858086 3921 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-20 16:30:18+00:00 1.0 1281858086 3920 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-20 16:00:12+00:00 1.0 1281858086 3913 the coin to pump is qtg exchange yobitnet target +300 500 market qtgbtc 2018-05-19 17:00:18+00:00 1.0 1281858086 3912 next post will be coin name 2018-05-19 17:00:18+00:00 1.0 1281858086 3909 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:56:09+00:00 1.0 1281858086 3906 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:31:11+00:00 1.0 1281858086 3905 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-19 16:01:18+00:00 1.0 1281858086 3901 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-18 18:03:29+00:00 1.0 1281858086 3900 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-18 17:51:33+00:00 1.0 1281858086 3893 the coin to pump is vega exchange yobitnet target +300 500 market vegabtc 2018-05-18 17:00:29+00:00 1.0 1281858086 3892 next post will be coin name 2018-05-18 16:59:57+00:00 1.0 1281858086 3890 next post will be coin name 2018-05-18 16:59:19+00:00 1.0 1281858086 3888 under 5 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:56:05+00:00 1.0 1281858086 3885 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:31:07+00:00 1.0 1281858086 3884 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-18 16:01:07+00:00 1.0 1281858086 3876 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-17 13:30:39+00:00 1.0 1281858086 3870 the coin to pump is lion exchange yobitnet target +300 500 market lionbtc 2018-05-15 17:00:35+00:00 1.0 1281858086 3865 under 10 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:51:04+00:00 1.0 1281858086 3864 under 15 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:46:06+00:00 1.0 1281858086 3863 under 30 mins till pump guys we have found an amazing coin for today we are super excited ‍‍‍‍‍‍‍‍‍ 2018-05-15 16:31:31+00:00 1.0 1281858086 3855 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-15 04:09:50+00:00 1.0 1281858086 3854 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-14 17:32:08+00:00 1.0 1281858086 3848 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-14 17:00:26+00:00 1.0 1281858086 3847 next post will be coin name 2018-05-14 16:59:08+00:00 1.0 1281858086 3846 pump in 2 minutes time to make some real money 2018-05-14 16:58:07+00:00 1.0 1281858086 3845 pump in 3 minutes time to make some real money 2018-05-14 16:57:07+00:00 1.0 1281858086 3842 pump in 5 minutes time to make some real money 2018-05-14 16:55:04+00:00 1.0 1281858086 3841 pump in 10 minutes time to make some real money 2018-05-14 16:50:06+00:00 1.0 1281858086 3840 pump in 15 minutes time to make some real money 2018-05-14 16:45:06+00:00 1.0 1281858086 3839 pump in 30 minutes time to make some real money 2018-05-14 16:30:11+00:00 1.0 1281858086 3833 guys today pump will be at as usual time ie 5 pm gmt 2018-05-14 11:48:43+00:00 1.0 1281858086 3829 the coin to pump is ufr exchange yobitnet target +300 500 market ufrbtc btc 2018-05-13 17:15:19+00:00 1.0 1281858086 3828 next post will be coin name 2018-05-13 17:14:12+00:00 1.0 1281858086 3827 pump in 2 minutes time to make some real money 2018-05-13 17:13:09+00:00 1.0 1281858086 3826 pump in 3 minutes time to make some real money 2018-05-13 17:12:11+00:00 1.0 1281858086 3825 pump in 5 minutes time to make some real money 2018-05-13 17:10:12+00:00 1.0 1281858086 3824 pump in 10 minutes time to make some real money 2018-05-13 17:05:04+00:00 1.0 1281858086 3823 pump in 15 minutes time to make some real money 2018-05-13 17:00:50+00:00 1.0 1281858086 3822 pump in 30 minutes time to make some real money 2018-05-13 16:45:05+00:00 1.0 1281858086 3821 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-13 16:19:03+00:00 1.0 1281858086 3815 notice guysthe pump time was changed to 515 pm gmtearlier it was 5 pm gmt 2018-05-12 18:19:11+00:00 1.0 1281858086 3814 next pump tomorrow time 515 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-12 18:17:51+00:00 1.0 1281858086 3809 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-12 17:00:10+00:00 1.0 1281858086 3808 next post will be coin name 2018-05-12 16:59:06+00:00 1.0 1281858086 3807 pump in 2 minutes time to make some real money 2018-05-12 16:58:05+00:00 1.0 1281858086 3806 pump in 3 minutes time to make some real money 2018-05-12 16:57:09+00:00 1.0 1281858086 3805 pump in 5 minutes time to make some real money 2018-05-12 16:55:07+00:00 1.0 1281858086 3804 pump in 10 minutes time to make some real money 2018-05-12 16:50:09+00:00 1.0 1281858086 3803 pump in 15 minutes time to make some real money 2018-05-12 16:45:51+00:00 1.0 1281858086 3802 pump in 30 minutes time to make some real money 2018-05-12 16:30:13+00:00 1.0 1281858086 3795 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-11 23:15:59+00:00 1.0 1281858086 3794 there were many holders for this coin guys i apologise for this pump guys it was very bad pump recent times 2018-05-11 17:12:26+00:00 1.0 1281858086 3790 the coin to pump is loom exchange yobitnet target +300 500 market loombtc 2018-05-11 17:01:41+00:00 1.0 1281858086 3789 the coin to pump is loom exchange yobitnet target +300 500 market loombtc 2018-05-11 16:59:53+00:00 1.0 1281858086 3788 next post will be coin name 2018-05-11 16:59:07+00:00 1.0 1281858086 3787 pump in 2 minutes time to make some real money 2018-05-11 16:58:05+00:00 1.0 1281858086 3786 pump in 3 minutes time to make some real money 2018-05-11 16:57:05+00:00 1.0 1281858086 3784 pump in 5 minutes time to make some real money 2018-05-11 16:55:05+00:00 1.0 1281858086 3783 pump in 10 minutes time to make some real money 2018-05-11 16:50:04+00:00 1.0 1281858086 3782 pump in 15 minutes time to make some real money 2018-05-11 16:45:07+00:00 1.0 1281858086 3780 pump in 30 minutes time to make some real money 2018-05-11 16:30:29+00:00 1.0 1281858086 3772 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-11 07:29:53+00:00 1.0 1281858086 3769 so guys keep your focus on the coin name dont be hurry 2018-05-10 17:13:00+00:00 1.0 1281858086 3766 the coin to pump is units exchange yobitnet target +300 500 market unitsbtc 2018-05-10 17:03:03+00:00 1.0 1281858086 3764 next post will be coin name 2018-05-10 16:59:05+00:00 1.0 1281858086 3763 pump in 2 minutes time to make some real money 2018-05-10 16:58:06+00:00 1.0 1281858086 3762 pump in 3 minutes time to make some real money 2018-05-10 16:57:08+00:00 1.0 1281858086 3761 pump in 5 minutes time to make some real money 2018-05-10 16:55:05+00:00 1.0 1281858086 3760 pump in 10 minutes time to make some real money 2018-05-10 16:50:11+00:00 1.0 1281858086 3759 pump in 15 minutes time to make some real money 2018-05-10 16:45:05+00:00 1.0 1281858086 3758 pump in 30 minutes time to make some real money 2018-05-10 16:30:15+00:00 1.0 1281858086 3749 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-09 17:03:56+00:00 1.0 1281858086 3746 the coin to pump is zipt exchange yobitnet target +300 500 market ziptbtc 2018-05-09 17:01:52+00:00 1.0 1281858086 3745 next post will be coin name 2018-05-09 16:59:09+00:00 1.0 1281858086 3744 pump in 2 minutes time to make some real money 2018-05-09 16:58:16+00:00 1.0 1281858086 3743 pump in 3 minutes time to make some real money 2018-05-09 16:57:10+00:00 1.0 1281858086 3742 pump in 5 minutes time to make some real money 2018-05-09 16:55:08+00:00 1.0 1281858086 3741 pump in 10 minutes time to make some real money 2018-05-09 16:50:06+00:00 1.0 1281858086 3740 pump in 15 minutes time to make some real money 2018-05-09 16:45:17+00:00 1.0 1281858086 3739 pump in 30 minutes time to make some real money 2018-05-09 16:30:41+00:00 1.0 1281858086 3729 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-09 06:19:17+00:00 1.0 1281858086 3727 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-09 04:18:53+00:00 1.0 1281858086 3720 the coin to pump is mth exchange yobitnet target +300 500 market mthbtc 2018-05-08 17:00:54+00:00 1.0 1281858086 3719 next post will be coin name 2018-05-08 16:59:05+00:00 1.0 1281858086 3718 pump in 2 minutes time to make some real money 2018-05-08 16:58:06+00:00 1.0 1281858086 3717 pump in 3 minutes time to make some real money 2018-05-08 16:57:05+00:00 1.0 1281858086 3715 pump in 5 minutes time to make some real money 2018-05-08 16:55:06+00:00 1.0 1281858086 3714 pump in 10 minutes time to make some real money 2018-05-08 16:50:05+00:00 1.0 1281858086 3713 pump in 15 minutes time to make some real money 2018-05-08 16:45:05+00:00 1.0 1281858086 3712 pump in 30 minutes time to make some real money 2018-05-08 16:30:07+00:00 1.0 1281858086 3711 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-08 16:00:55+00:00 1.0 1281858086 3710 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-08 15:38:28+00:00 1.0 1281858086 3702 pump results coin was rr open 191 max 1385 exchange yobit price go to 10x after coin announcent 2018-05-07 17:48:12+00:00 1.0 1281858086 3695 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-05-07 17:01:24+00:00 1.0 1281858086 3694 next post will be coin name 2018-05-07 16:59:07+00:00 1.0 1281858086 3693 pump in 2 minutes time to make some real money 2018-05-07 16:58:07+00:00 1.0 1281858086 3692 pump in 3 minutes time to make some real money 2018-05-07 16:57:14+00:00 1.0 1281858086 3691 pump in 5 minutes time to make some real money 2018-05-07 16:55:05+00:00 1.0 1281858086 3689 pump in 10 minutes time to make some real money 2018-05-07 16:50:05+00:00 1.0 1281858086 3688 pump in 15 minutes time to make some real money 2018-05-07 16:45:12+00:00 1.0 1281858086 3687 pump in 30 minutes time to make some real money 2018-05-07 16:30:37+00:00 1.0 1281858086 3686 under 1 hour till pump guys we have found an am a in coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-07 16:00:09+00:00 1.0 1281858086 3684 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-07 14:46:39+00:00 1.0 1281858086 3678 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-07 04:40:15+00:00 1.0 1281858086 3669 the coin to pump is vega exchange yobitnet target +300 500 market vegabtc 2018-05-04 17:00:18+00:00 1.0 1281858086 3668 next post will be coin name 2018-05-04 16:59:08+00:00 1.0 1281858086 3667 pump in 2 minutes time to make some real money 2018-05-04 16:58:15+00:00 1.0 1281858086 3666 pump in 3 minutes time to make some real money 2018-05-04 16:57:17+00:00 1.0 1281858086 3665 pump in 2 minutes time to make some real money 2018-05-04 16:57:10+00:00 1.0 1281858086 3664 pump in 5 minutes time to make some real money 2018-05-04 16:57:00+00:00 1.0 1281858086 3663 pump in 8 minutes time to make some real money 2018-05-04 16:50:58+00:00 1.0 1281858086 3662 pump in 10 minutes time to make some real money 2018-05-04 16:50:05+00:00 1.0 1281858086 3661 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 16:00:08+00:00 1.0 1281858086 3660 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 15:00:43+00:00 1.0 1281858086 3659 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 14:02:34+00:00 1.0 1281858086 3658 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 13:00:12+00:00 1.0 1281858086 3657 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 12:00:20+00:00 1.0 1281858086 3656 under 6 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 11:01:01+00:00 1.0 1281858086 3655 under 8 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ get registered here 2018-05-04 09:20:44+00:00 1.0 1281858086 3654 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-03 18:50:44+00:00 1.0 1281858086 3633 the coin to pump is usdt exchange yobitnet target +300 500 market usdtbtc 2018-05-03 17:00:49+00:00 1.0 1281858086 3632 the coin to pump is usdt exchange yobitnet target +300 500 market usdtbtc 2018-05-03 17:00:08+00:00 1.0 1281858086 3631 next post will be coin name 2018-05-03 16:59:04+00:00 1.0 1281858086 3630 pump in 3 minutes time to make some real money 2018-05-03 16:57:13+00:00 1.0 1281858086 3629 pump in 5 minutes time to make some real money 2018-05-03 16:55:05+00:00 1.0 1281858086 3628 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-03 16:53:07+00:00 1.0 1281858086 3627 pump in 10 minutes time to make some real money 2018-05-03 16:50:14+00:00 1.0 1281858086 3624 pump in 15 minutes time to make some real money 2018-05-03 16:45:09+00:00 1.0 1281858086 3622 pump in 30 minutes time to make some real money 2018-05-03 16:30:33+00:00 1.0 1281858086 3621 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 16:00:28+00:00 1.0 1281858086 3620 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 15:00:23+00:00 1.0 1281858086 3619 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 14:00:08+00:00 1.0 1281858086 3614 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 13:00:43+00:00 1.0 1281858086 3601 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 12:00:30+00:00 1.0 1281858086 3590 under 6 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 11:00:25+00:00 1.0 1281858086 3585 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-03 09:57:03+00:00 1.0 1281858086 3584 under 8 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-03 09:02:23+00:00 1.0 1281858086 3577 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-03 00:09:35+00:00 1.0 1281858086 3561 pump results coin was ufr open 2243 max 6268 exchange yobit price go to 250++ after coin announcent 2018-05-02 17:16:52+00:00 1.0 1281858086 3557 the coin to pump is ufr exchange yobitnet target +300 500 market ufrbtc 2018-05-02 17:00:05+00:00 1.0 1281858086 3556 next post will be coin name 2018-05-02 16:59:09+00:00 1.0 1281858086 3555 pump in 3 minutes time to make some real money 2018-05-02 16:57:05+00:00 1.0 1281858086 3554 pump in 5 minutes time to make some real money 2018-05-02 16:55:07+00:00 1.0 1281858086 3553 pump in 10 minutes time to make some real money 2018-05-02 16:50:09+00:00 1.0 1281858086 3552 pump in 15 minutes time to make some real money 2018-05-02 16:45:42+00:00 1.0 1281858086 3551 pump in 20 minutes time to make some real money 2018-05-02 16:40:05+00:00 1.0 1281858086 3550 pump in 30 minutes time to make some real money 2018-05-02 16:29:24+00:00 1.0 1281858086 3549 pump in 45 minutes time to make some real money 2018-05-02 16:15:20+00:00 1.0 1281858086 3548 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 16:01:29+00:00 1.0 1281858086 3547 pump in 1 hour time to make some real money 2018-05-02 16:01:23+00:00 1.0 1281858086 3544 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it 2018-05-02 15:06:14+00:00 1.0 1281858086 3542 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 14:01:55+00:00 1.0 1281858086 3540 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ here is the link for yobit 2018-05-02 13:34:45+00:00 1.0 1281858086 3539 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 13:02:10+00:00 1.0 1281858086 3538 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 12:01:02+00:00 1.0 1281858086 3526 under 8 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-02 09:02:43+00:00 1.0 1281858086 3513 next pump today time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-05-01 17:48:38+00:00 1.0 1281858086 3504 the coin to pump is iost exchange yobitnet target +300 500 market iostbtc 2018-05-01 17:01:30+00:00 1.0 1281858086 3503 next post will be coin name 2018-05-01 16:59:44+00:00 1.0 1281858086 3502 pump in 5 minutes time to make some real money 2018-05-01 16:55:54+00:00 1.0 1281858086 3501 pump in 5 minutes time to make some real money 2018-05-01 16:55:26+00:00 1.0 1281858086 3500 pump in 10 minutes time to make some real money 2018-05-01 16:50:21+00:00 1.0 1281858086 3499 pump in 15 minutes time to make some real money 2018-05-01 16:44:49+00:00 1.0 1281858086 3498 pump in 30 minutes time to make some real money 2018-05-01 16:32:46+00:00 1.0 1281858086 3497 pump in 30 minutes time to make some real money 2018-05-01 16:30:27+00:00 1.0 1281858086 3496 pump in 45 minutes time to make some real money 2018-05-01 16:15:21+00:00 1.0 1281858086 3495 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-05-01 16:11:44+00:00 1.0 1281858086 3494 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 16:03:15+00:00 1.0 1281858086 3493 under 1 hours 30 minutes till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 15:31:14+00:00 1.0 1281858086 3491 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 14:00:17+00:00 1.0 1281858086 3490 under 4 hours 30 minutes till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 12:37:12+00:00 1.0 1281858086 3489 under 5 hours 50 minutes till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-05-01 11:10:44+00:00 1.0 1281858086 3486 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-04-30 17:36:02+00:00 1.0 1281858086 3483 the coin to pump is zrx exchange yobitnet target +300 500 market zrxbtc 2018-04-30 17:00:30+00:00 1.0 1281858086 3474 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 37x from the original value it has the possibility of going even further 815x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the pump time along with a link to it on the selected exchange ⏳ 2018-04-30 14:37:13+00:00 1.0 1281858086 3451 the coin to pump is loom exchange yobitnet target +300 500 market loombtc 2018-04-28 17:00:16+00:00 1.0 1281858086 3450 next post will be coin name 2018-04-28 16:59:14+00:00 1.0 1281858086 3449 pump in 2 minutes time to make some real money 2018-04-28 16:58:08+00:00 1.0 1281858086 3448 pump in 3 minutes time to make some real money 2018-04-28 16:57:20+00:00 1.0 1281858086 3447 pump in 5 minutes time to make some real money 2018-04-28 16:55:14+00:00 1.0 1281858086 3446 pump in 10 minutes time to make some real money 2018-04-28 16:50:25+00:00 1.0 1281858086 3445 pump in 15 minutes time to make some real money 2018-04-28 16:45:09+00:00 1.0 1281858086 3444 today is looking very promising we hope everyone is excited reminders get your yobit btc wallets ready be ready on yobit to buy before outsiders spread the news about the pump today 2018-04-28 16:33:08+00:00 1.0 1281858086 3443 pump in 30 minutes time to make some real money 2018-04-28 16:30:20+00:00 1.0 1281858086 3442 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-04-28 16:18:23+00:00 1.0 1281858086 3441 under 1 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-28 16:00:53+00:00 1.0 1281858086 3440 under 2 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-28 15:00:28+00:00 1.0 1281858086 3439 under 3 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-28 14:00:16+00:00 1.0 1281858086 3438 under 4 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-28 13:00:22+00:00 1.0 1281858086 3436 under 5 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-28 12:00:41+00:00 1.0 1281858086 3433 under 24 hours till pump guys we have found an amazing coin for today were super excited its going to reach some crazy heights if we all get behind it the sell walls are very very low so we could go as high as x3+ if all goes to plan make sure you have had a play around with yobit before hand if you arent familiar with it ‍‍‍‍‍‍‍‍‍ 2018-04-28 03:37:55+00:00 1.0 1281858086 3432 next pump tomorrow time 5 pm gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-04-27 18:09:46+00:00 1.0 1281858086 3422 the coin to pump is pkt exchange yobitnet target +300 500 market pktbtc 2018-04-27 17:02:40+00:00 1.0 1281858086 3421 next post will be coin name 2018-04-27 16:59:09+00:00 1.0 1281858086 3404 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date friday 27th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-26 18:52:03+00:00 1.0 1281858086 3396 the coin to pump is heal exchange yobitnet target +300 500 market healbtc 2018-04-26 17:00:18+00:00 1.0 1281858086 3395 next post will be coin name 2018-04-26 16:59:09+00:00 1.0 1281858086 3388 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-04-26 16:40:28+00:00 1.0 1281858086 3374 6 hours left to pump ⏰ time 5 pm gmt ⏰ exchange ➖ yobitio btc market attention please ‼️ trolling on chat and social media + spreading fomo are necessary for a successful pump everyone should do his part in writing on yobit chat or telegram groups or in person we are big family and every day we get more members so we all should do our part to participate in pumps and troll so no one get stuck and thats what the family do today i want you all to write on yobit chat and you will se the results long living fam 2018-04-26 11:00:50+00:00 1.0 1281858086 3373 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the yobit chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 810x from the original value it has the possibility of going even further 1525x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the start time along with a link to it on the selected exchange ⏳ 2018-04-26 09:16:04+00:00 1.0 1281858086 3357 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date thursday 26th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-26 06:50:14+00:00 1.0 1281858086 3356 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date thursday 26th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-26 02:39:51+00:00 1.0 1281858086 3352 guys we pumped this coin because even though we went to 200 profit yesterday some of you guys had some coins stuck because of some whale dumping their btc so we repumped this coin because we stick to our promises good luck and happy profits see you soon for next pump 2018-04-25 17:16:09+00:00 1.0 1281858086 3349 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-04-25 17:00:15+00:00 1.0 1281858086 3348 next post will be coin name 2018-04-25 16:59:04+00:00 1.0 1281858086 3326 for all our new members welcome you stepped into a very private community of rich and elite people who makes tons of money every week in order to join our todays pump make sure your accounts on yobit are ready with full of btcs in it 2018-04-24 18:01:35+00:00 1.0 1281858086 3310 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date wednesday 25th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-23 21:36:02+00:00 1.0 1281858086 3305 results coin rr low 00000190 high 00000600 increase 200++ target crossed successfully volume 004 btc thanks to the dedicated marketing team we succeeded in closing tremendous profits today the team is getting stronger and volume is consistently growing congratulations to everyone who participated today and thanks for your support and positive feedback enjoy your earnings stay tuned for info regarding the next signal 2018-04-23 17:20:55+00:00 1.0 1281858086 3293 the coin to pump is rr exchange yobitnet target +300 500 market rrbtc 2018-04-23 17:00:02+00:00 1.0 1281858086 3286 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-04-23 16:40:57+00:00 1.0 1281858086 3273 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date monday 23th april ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-23 11:53:42+00:00 1.0 1281858086 3272 holdtime hold until everyone makes profits ➕ we are going to choose a lowcapcoin which is going to reach high levels very easily the faster you buy the more you are going to profit here we are going to list the plan if everyone follows the plan then every member in this group is going to profit plan ➕ buyin as quickly as possible dont sell after 2 seconds straight away let the group firstly buyin you can even make a sell order after 1 minute but then place your order above the marketprice even if its only 1 satoshi remember we dont want to sell the coins to each other in the group we want to sell it to outside investors ➕ after buyingin and setting your sell order it is very important that everyone promotes the coin in the chatbox on yobitnet the chatbox is in the upper right corner of the site if noone sets a sellorder under the marketprice then the coin will pump even more and everyone is going to be able to sell it to the outside investors ➕ buy in bulks but sell it in little pieces set sellorders with 1020 of your coins at different prices this way there wont be big sell walls and the outside investors are going to fomo even more and the coin wont dump easily ➕ always buylow and sell high ➕ only participate with money you can afford to loose dont buyin with all of your money ➕ if you couldnt sell with profits and the coin is going to dump then dont panicsell there is always a chance that other pump groups or even our group might pump the same coin sooner or later again we always make sure that the true holders get their profits lets make together big money 2018-04-23 11:51:56+00:00 1.0 1281858086 3269 hello guys as promised we will make it a very special monday for you all weve signed agreements with big ventures on twitter with thousands of followers the pump is huge and big tomorrow remember that time is 500 pm gmt be prepared for big profits 2018-04-22 13:51:58+00:00 1.0 1281858086 3268 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date monday 23th avril ⏰time 500 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-22 13:20:11+00:00 1.0 1281858086 3266 pump starts the coin to pump is cl exchange yobitio target +300 500 market cl btc 2018-04-21 17:00:05+00:00 1.0 1281858086 3251 5 hours left to pump ⏰ time 5 pm gmt ⏰ exchange ➖ yobitio btc market attention please ‼️ trolling on chat and social media + spreading fomo are necessary for a successful pump everyone should do his part in writing on yobit chat or telegram groups or in person we are big family and every day we get more members so we all should do our part to participate in pumps and troll so no one get stuck and thats what the family do today i want you all to write on yobit chat and you will se the results long living fam 2018-04-21 12:08:26+00:00 1.0 1281858086 3245 pump announcement date 2142018 time 500 pm gmt exchange yobitio target 300+ sign up on yobitio get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-04-20 22:39:01+00:00 1.0 1281858086 3242 hello guys as promised we will make it a very special saturday for you all weve signed agreements with big ventures on twitter with thousands of followers the pump is huge and big tomorrow remember that time is 500 pm gmt be prepared for big profits 2018-04-20 14:43:46+00:00 1.0 1281858086 3241 pump tomorrow date 2142018 time 5 pm gmt exchange yobitio expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-04-20 13:40:05+00:00 1.0 1281858086 3159 3 min next post coin name 2018-04-05 15:57:54+00:00 1.0 1281858086 3154 hold pump announcement less than 1 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 15:00:18+00:00 1.0 1281858086 3151 hold pump announcement less than 3 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 13:00:26+00:00 1.0 1281858086 3148 hold pump announcement less than 6 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 10:00:18+00:00 1.0 1281858086 3144 hold pump announcement less than 12 hours left till pump ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-05 04:00:14+00:00 1.0 1281858086 3143 hold pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 5th april ⏰time 400pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates 2018-04-04 23:00:11+00:00 1.0 1281858086 3137 pump starts the coin to pump is fntb exchange yobitnet target +300 500 market fntbbtc 2018-04-04 19:00:02+00:00 1.0 1281858086 3126 pump in 2 hours time to make some real money насос за 2 час время чтобы сделать реальные деньги 2018-04-04 17:11:42+00:00 1.0 1281858086 3124 pump in 3 hours time to make some real money насос за 3 час время чтобы сделать реальные деньги 2018-04-04 16:09:38+00:00 1.0 1281858086 3117 pump in 5 hours time to make some real money насос за 5 час время чтобы сделать реальные деньги 2018-04-04 13:47:47+00:00 1.0 1281858086 3098 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 4th april wednesday ⏰time 700pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-04 04:52:07+00:00 1.0 1281858086 3091 pump starts the coin to pump is neu exchange yobitnet target +300 500 market neubtc 2018-04-03 19:00:09+00:00 1.0 1281858086 3090 2 minutes to go next post will be coin 2018-04-03 18:58:04+00:00 1.0 1281858086 3084 pump in 15 minutes time to make some real money насос за 15 mins время чтобы сделать реальные деньги 2018-04-03 18:45:09+00:00 1.0 1281858086 3083 as we can see today the market was stable trying to pull back its a good time today because even in the red market weve done legendary things as always so get ready for todays pump 2018-04-03 18:43:17+00:00 1.0 1281858086 3082 pump in 30 minutes time to make some real money насос за 30 mins время чтобы сделать реальные деньги 2018-04-03 18:31:57+00:00 1.0 1281858086 3081 pump in 45 minutes time to make some real money насос за 45 mins время чтобы сделать реальные деньги 2018-04-03 18:15:42+00:00 1.0 1281858086 3080 pump in 60 minutes time to make some real money насос за 60 mins время чтобы сделать реальные деньги 2018-04-03 17:57:19+00:00 1.0 1281858086 3079 pump in 2 hours time to make some real money насос за 2 час время чтобы сделать реальные деньги 2018-04-03 17:00:49+00:00 1.0 1281858086 3071 pump in 4 hours time to make some real money насос за 4 час время чтобы сделать реальные деньги 2018-04-03 15:01:40+00:00 1.0 1281858086 3068 pump in 5 hours time to make some real money насос за 5 час время чтобы сделать реальные деньги 2018-04-03 14:03:02+00:00 1.0 1281858086 3050 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 3nd april tuesday ⏰time 700pm gmt exchange yobitnet ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-02 19:13:14+00:00 1.0 1281858086 3037 pump starts the coin to pump is ing exchange yobitnet target +400 500 market ingbtc 2018-04-02 19:00:11+00:00 1.0 1281858086 3036 2 minutes to go next post will be the coin name 2018-04-02 18:58:01+00:00 1.0 1281858086 3033 10 minutes left to pump exchange➖ yobit btc market rocket 10 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:50:03+00:00 1.0 1281858086 3032 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:45:02+00:00 1.0 1281858086 3028 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:30:01+00:00 1.0 1281858086 3027 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 18:15:01+00:00 1.0 1281858086 3025 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-04-02 17:00:02+00:00 1.0 1281858086 3016 pump will be at the same time as yesterday ie 7 pm gmt reminders will be posted 2018-04-02 10:51:59+00:00 1.0 1281858086 2980 pump starts the coin to pump is mth exchange yobitnet target +700 2018-04-01 19:00:03+00:00 1.0 1281858086 2979 2 minutes to go next post will be the coin name 2018-04-01 18:58:03+00:00 1.0 1281858086 2974 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 18:45:05+00:00 1.0 1281858086 2970 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 18:30:02+00:00 1.0 1281858086 2969 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 18:15:02+00:00 1.0 1281858086 2964 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-04-01 17:00:04+00:00 1.0 1281858086 2949 pump will be at the same time as yesterday ie 7 pm gmt reminders will be posted 2018-04-01 09:48:34+00:00 1.0 1281858086 2929 next pump tomorrow time 1900 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-31 19:51:24+00:00 1.0 1281858086 2909 pump starts the coin to pump is vvi exchange yobitnet target +700 2018-03-31 19:00:08+00:00 1.0 1281858086 2908 2 minutes to go next post will be the coin 2018-03-31 18:58:03+00:00 1.0 1281858086 2904 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 18:45:14+00:00 1.0 1281858086 2902 we cannot wait enough for the pump to start we have really really selected an amazing coin we are ready to create history 2018-03-31 18:41:59+00:00 1.0 1281858086 2901 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 18:30:03+00:00 1.0 1281858086 2900 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 18:15:03+00:00 1.0 1281858086 2898 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-31 17:00:03+00:00 1.0 1281858086 2892 we have a great news for you we have selected an exceptional coin for the pump today it has no sell walls and will return huge profits participate today if you like btc 2018-03-31 14:31:23+00:00 1.0 1281858086 2886 pump will be at the same time as yesterday ie 7 pm gmt reminders will be posted 2018-03-31 09:22:45+00:00 1.0 1281858086 2851 pump starts the coin to pump is ssh exchange yobitnet target +400 500 market url sshbtc 2018-03-30 19:00:01+00:00 1.0 1281858086 2850 2 minutes to go next post will be the coin name 2018-03-30 18:58:01+00:00 1.0 1281858086 2846 14 minutes left to pump exchange➖ yobit btc market rocket 14 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:46:02+00:00 1.0 1281858086 2845 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:45:05+00:00 1.0 1281858086 2844 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:45:02+00:00 1.0 1281858086 2843 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:30:05+00:00 1.0 1281858086 2842 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 18:15:04+00:00 1.0 1281858086 2840 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-30 17:00:03+00:00 1.0 1281858086 2835 we have a great news for you we have selected an exceptional coin for the pump today it has no sell walls and will return huge profits participate today if you like btc 2018-03-30 12:32:48+00:00 1.0 1281858086 2820 pump will be at the same time as yesterday ie 7 pm gmt reminder will be posted 2018-03-30 07:17:12+00:00 1.0 1281858086 2778 pump starts pump starts the coin to pump is vvibtc exchange yobitnet target +700 2018-03-29 19:00:03+00:00 1.0 1281858086 2769 15 minutes left to pump exchange➖ yobit btc market rocket 15 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 18:45:05+00:00 1.0 1281858086 2768 30 minutes left to pump exchange➖ yobit btc market rocket 30 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 18:30:08+00:00 1.0 1281858086 2766 45 minutes left to pump exchange➖ yobit btc market rocket 45 минут до самого большого насоса rocket сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 18:15:06+00:00 1.0 1281858086 2762 2 hours left to pump exchange➖ yobit btc market ракета осталось 2 часа ракета сегодня монета действительно особенная yeobit мы собираемся 2018-03-29 16:59:10+00:00 1.0 1281858086 2754 clock is ticking time is approaching we will create history today our team has made special arrangements today dont miss out today 3 hours and 30 minutes to go 2018-03-29 15:30:47+00:00 1.0 1281858086 2752 we have a great news for you we have selected an exceptional coin for the pump today it has no sell walls and will return huge profits participate today if you like btc 2018-03-29 14:43:50+00:00 1.0 1281858086 2724 its big day we are going to have one big collaborative pump today time 7 pm gmt exchange yobit 2018-03-29 06:35:09+00:00 1.0 1281858086 2720 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date thursday 29th march ⏰time 700 pm gmt exchange yobit ➖➖➖➖➖➖➖➖ checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-03-28 17:41:16+00:00 1.0 1281858086 2719 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ dear all on the demand of most members we have decided to change our daily pump time our pump time will be 7pm gmt we are resuming our pumps from tomorrow in the past few days we were concentrating on active marketing we expect massive pumps with thousands joining from telegram twitter and other forums we will continue to pump at yobit coz we love it remember the time 7 pm gmt more details and reminders to follow soon 2018-03-28 16:52:09+00:00 1.0 1281858086 2717 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ dear all on the demand of most members we have decided to change our daily pump time our pump time will be 7pm gmt we are resuming our pumps from tomorrow in the past few days we were concentrating on active marketing we expect massive pumps with thousands joining from telegram twitter and other forums we will continue to pump at yobit coz we love it remember the time 7 pm gmt more details and reminders to follow soon 2018-03-28 16:47:59+00:00 1.0 1281858086 2583 pump starts the coin to pump is vega exchange yobitnet target +300 market url 2018-03-25 14:00:10+00:00 1.0 1281858086 2536 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-25 02:55:41+00:00 1.0 1281858086 2517 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-24 15:52:24+00:00 1.0 1281858086 2511 pump starts the coin to pump is qtg exchange yobitnet target +300 market url 2018-03-24 14:00:01+00:00 1.0 1281858086 2482 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-24 09:39:57+00:00 1.0 1281858086 2464 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-23 18:23:24+00:00 1.0 1281858086 2459 pump starts the coin to pump is qtg exchange yobitnet target +300 500 market url 2018-03-23 14:00:05+00:00 1.0 1281858086 2374 pump starts the coin to pump is lion exchange yobitnet target +300 market url 2018-03-21 14:00:10+00:00 1.0 1281858086 2373 2 minutes to go next post will be the coin 2018-03-21 13:58:01+00:00 1.0 1281858086 2354 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-20 15:02:32+00:00 1.0 1281858086 2353 pump anaylsis bln initial price 000001007 ✅ price change 000001007 to 000002840 volume 05 btc coin was at peak for 12 mins we did 280+ yobitpump 2018-03-20 14:28:47+00:00 1.0 1281858086 2352 pump anaylsis bln initial price 000001007 ✅ price change 000001007 to 000002840 volume 05 btc coin was at peak for 12 mins we did 280+ 2018-03-20 14:20:56+00:00 1.0 1281858086 2336 pump starts the coin to pump is bln exchange yobitnet target +300 market url 2018-03-20 14:00:07+00:00 1.0 1281858086 2335 2 minutes to go next post will be the coin 2018-03-20 13:58:02+00:00 1.0 1281858086 2316 5 hours left to pump exchange➖ yobit btc market 5 часов сегодня монета действительно особенная йобит мы идем 2018-03-20 08:47:17+00:00 1.0 1281858086 2298 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-19 17:30:09+00:00 1.0 1281858086 2296 pump anaylsis toqr initial price 000007514 ✅ price change 000010000 to 000023000 volume 5 btc coin was at peak for 8 mins we did 120+ 2018-03-19 14:10:57+00:00 1.0 1281858086 2288 pump starts the coin to pump is torq exchange yobitnet target +300 market url 2018-03-19 14:00:03+00:00 1.0 1281858086 2272 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-18 19:04:17+00:00 1.0 1281858086 2271 pump anaylsis mgo initial price 000000441 ✅ price change 000004412 to 00001130 volume 15 btc coin was at peak for 19 mins we did 300+ 2018-03-18 14:20:10+00:00 1.0 1281858086 2260 pump starts the coin to pump is mgo exchange yobitnet target +300 market url 2018-03-18 14:00:04+00:00 1.0 1281858086 2259 2 minutes to go next post will be the coin 2018-03-18 13:58:05+00:00 1.0 1281858086 2245 good morning everyone as promised we are going to make it a very special saturday for all of you we have made agreements with big ventures on twitter with thousands of followers it is deemed to be a huge and big pump today remember the time is 1400 hrs gmt 9 hours from now 2018-03-18 05:03:54+00:00 1.0 1281858086 2244 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-17 16:36:31+00:00 1.0 1281858086 2242 pump anaylsis yobit coin v v i btc market vol 03 btc ✅ from 000013604 to 000038600 almost x 3 profit 2018-03-17 15:07:25+00:00 1.0 1281858086 2236 pump anaylsis chsb initial price 000000591 ✅ price change 00000591 to 000001410 volume 080 btc coin was at peak for 7 mins we did 270+ 2018-03-17 14:15:18+00:00 1.0 1281858086 2225 pump starts the coin to pump is chsb exchange yobitnet target +300 market url 2018-03-17 13:59:09+00:00 1.0 1281858086 2224 2 minutes to go next post will be the coin 2018-03-17 13:58:01+00:00 1.0 1281858086 2206 good morning everyone as promised we are going to make it a very special saturday for all of you we have made agreements with big ventures on twitter with thousands of followers it is deemed to be a huge and big pump today remember the time is 1400 hrs gmt approx 8 hours and 15 minutes from now 2018-03-17 05:44:16+00:00 1.0 1281858086 2205 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-16 16:30:30+00:00 1.0 1281858086 2195 pump starts the coin to pump is ae exchange yobitnet target +300 market url 2018-03-16 14:00:10+00:00 1.0 1281858086 2194 2 minutes to go next post will be the coin 2018-03-16 13:58:07+00:00 1.0 1281858086 2188 pump announcement date tomorrow saturday 17 of march time 3 pm gmt 1500 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-16 13:40:29+00:00 1.0 1281858086 2180 good morning everyone as promised we are going to make it a very special friday for all of you we have made agreements with big ventures on twitter with thousands of followers it is deemed to be a huge and big pump today remember the time is 1400 hrs gmt approx 5 hours and 45 minutes from now 2018-03-16 08:17:37+00:00 1.0 1281858086 2175 pump anaylsis yobit coin ae btc market ✅ price change from 000018095 to 000039000 x 2 + profit 2018-03-15 15:21:58+00:00 1.0 1281858086 2171 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date friday 16th march ⏰time 2pm gmt exchange yobitnet target 300+ ➖➖➖➖➖➖➖➖ if you havent got an account yet set one up and transfer some btc to get ready checklist ✔️sign up to yobit wwwyobitnet ✔️transfer btc to your yobit wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates all we can say is this pump is going to be huge do not miss out or youll be kicking yourself more details and reminders to follow soon 2018-03-15 15:00:10+00:00 1.0 1281858086 2167 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-15 14:48:03+00:00 1.0 1281858086 2165 pump anaylsis ppt nitial price 000001501 ✅ price change 000350000 to 000160005 volume 042btc coin was at peak for 10 mins we did super great 2018-03-15 14:18:02+00:00 1.0 1281858086 2161 pump starts the coin to pump is ppt exchange yobitnet target +300 500 market url 2018-03-15 14:00:03+00:00 1.0 1281858086 2150 announcement this is going to be a huge pump we have got more than 50000 participants from twitter joining today coin has bee carefully selected and is going to be coin of the day on yobit you will miss a lot for not participating 2018-03-15 12:14:33+00:00 1.0 1281858086 2141 pump announcement date thursday 15 of march time 3 pm gmt 1500 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-14 18:57:12+00:00 1.0 1281858086 2123 pump starts the coin to pump is emt exchange yobitnet target +500 market url 2018-03-14 14:00:00+00:00 1.0 1281858086 2122 2 minutes to go next post will be the coin 2018-03-14 13:58:03+00:00 1.0 1281858086 2105 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-13 17:42:23+00:00 1.0 1281858086 2104 next pump tomorrow time 1500 hrs gmt 3 pm uk time exchange yobit yobit 2018-03-13 15:28:27+00:00 1.0 1281858086 2103 pump anaylsis yobit coin xbs btc market ✅ price change from 000089030 to 000185985 x 2 + profit 2018-03-13 15:22:08+00:00 1.0 1281858086 2089 pump starts the coin to pump is cl exchange yobitnet target +500 market url 2018-03-13 14:00:12+00:00 1.0 1281858086 2088 2 minutes to go next post will be the coin 2018-03-13 13:58:04+00:00 1.0 1281858086 2068 next pump today time 1500 hrs gmt exchange yobit 2018-03-13 05:14:40+00:00 1.0 1281858086 2063 next pump tomorrow time 1400 hrs gmt exchange yobit 2018-03-12 19:06:42+00:00 1.0 1281858086 2062 20 hours left to yobit pump yobit 3 pm gmt 1500 uk time 2018-03-12 19:00:54+00:00 1.0 1281858086 2061 next pump tomorrow time 1400 hrs gmt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-12 17:27:51+00:00 1.0 1281858086 2050 pump starts the coin to pump is chsb exchange yobitnet target +500 market url 2018-03-12 14:00:09+00:00 1.0 1281858086 2039 pump announcement date tuesday 13 of march time 3 pm gmt 1500 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-12 12:47:06+00:00 1.0 1281858086 2017 tomorrow our pump will be at the same time dont miss big profits 2018-03-11 14:19:04+00:00 1.0 1281858086 2006 pump starts the coin to pump is chsb exchange yobitnet target +500 market url 2018-03-11 13:59:59+00:00 1.0 1281858086 2005 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-03-11 13:58:03+00:00 1.0 1281858086 1994 huge collaborative pump coming on yobit time left 75 minutes more than 50000 members all over the world participating you dont want to miss this mega event countdown 2018-03-11 12:47:32+00:00 1.0 1281858086 1990 next pump time 1400 hrs gmt exchange yobit united states 0900 am est new york time dubaiabu dhabi 600 pm tokyo 1100 pm jst sydney 100 am aedt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-11 09:30:02+00:00 1.0 1281858086 1985 get ready for mega sunday pump at 1400 hrs gmt 2018-03-10 18:55:11+00:00 1.0 1281858086 1984 next pump time 1400 hrs gmt exchange yobit united states 0900 am est new york time dubaiabu dhabi 600 pm tokyo 1100 pm jst sydney 100 am aedt exchange yobit expected gain 300 or 500 + maybe more this will be an initiated pump of a lowcap coin on the yobit exchange you will want to have your btc available in yobit to buy the coin after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before outside investors get in once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when we promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell at a nice profit we will have announcements leading up to the pump so stay tuned and get ready to make some good money 2018-03-10 18:52:11+00:00 1.0 1281858086 1979 pump results coin nkt open sat 62 high sat 132 volume 043 btc overall gain 1129 we are happy to announce that yobit user aknk3 has won the surprise contest giveaway prize we randomly selected a lucky winner who trolled on the chat box we request aknk3 to contact the channel admin to claim the prize amazing just amazing we are growing and having a front row seat for the show is just bind blowing stay awesome see you again guys peace 2018-03-09 19:28:18+00:00 1.0 1281858086 1932 pump announcement date today friday 9th of march time 3 pm gmt 1500 uk time ⌚ exchange yobitnet countdown watch⌚ 2018-03-08 17:39:47+00:00 1.0 1281858086 1931 stk coin analysis before 000035545 after 000110001 exchange yobit 3x profit in this pump +320 pumpawesome 2018-03-08 15:12:51+00:00 1.0 1281858086 1914 pump announcement date today thursday 8th of march time 3 pm gmt 1500 uk time ⌚ exchange yobitnet countdown watch⌚ 2018-03-08 03:20:21+00:00 1.0 1281858086 1882 we have done something awesome today on hard coin thanks for all your amazing support lets meet again at tomorrows pump ❤️ 2018-03-06 17:44:23+00:00 1.0 1281858086 1851 pump announcement date tomorrow monday 5 th of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-04 18:24:34+00:00 1.0 1281858086 1824 pump analysis coin boom yobit start price 000047000 reached price 000135022 x 287 with peak 2018-03-04 16:26:34+00:00 1.0 1281858086 1808 pump announcement date today sunday 4th of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-04 05:56:31+00:00 1.0 1281858086 1788 pump announcement date saturday 3rd march time 6pm18h uk time gmt ⌚ exchange cryptopia reminders and new instructions to follow soon 2018-03-01 19:26:01+00:00 1.0 1281858086 1787 pump announcement date friday 2nd of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-03-01 17:29:43+00:00 1.0 1281858086 1769 pump announcement date thursday 1st of march time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-28 17:19:16+00:00 1.0 1281858086 1753 pump announcement date 28th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet 2018-02-28 07:00:38+00:00 1.0 1281858086 1703 pump announcement date tuesday 27 of february time 4 pm gmt 1600 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-26 12:13:44+00:00 1.0 1281858086 1655 pump announcement date sunday 25 of february hour 6 pm gmt 1800 uk time ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-24 19:52:00+00:00 1.0 1281858086 1644 lets go the coin to pump is smc smartcoin exchange cryptopia target 100300 or more market url go go go buy 2018-02-24 15:00:41+00:00 1.0 1281858086 1548 pump announcement date friday 23 of february hour 0800 pm 2000 uk time gmt ⌚ exchange yobitnet countdown watch⌚ +pumpsfontcursivecsz1 2018-02-23 06:00:48+00:00 1.0 1281858086 1348 pump anaylsis smc initial price 616 sat ✅ price change 000000616 to 000001000 623376623376 stayed at peak for about 5 minutes volume created by us 1 btc we made it again 2018-02-20 18:34:12+00:00 1.0 1281858086 1244 be ready only 21 hour left hodl announcement today 20022018 time 600 pm gmt 1130 pm ist 100 pm est exchange crytopia be ready for another bang bang signal its boom today very fast and powerful do not miss it if u want make huge btc pinourchannel to top so you will not miss this hodl stay tuned 2018-02-19 21:00:10+00:00 1.0 1281858086 1232 2 minutes to go next post will be the coin name 2 минуты следующий пост будет именем монеты 2018-02-19 16:58:02+00:00 1.0 1281858086 1224 ➖ yobit alert ⏰ 90 minutes left time ➖ 1700 gmt date ➖19022017 exchange➖ yobit btc market 2018-02-19 15:30:02+00:00 1.0 1281858086 1001 why we are different from others why we are always successful this is because we never prepump this is because nobody buys or knows the coin before pump everything is conducted by computer programs and bots this is the reason why we have all your trust if someone says that he will tell you the coin before pump they are lying dont believe on scammers we never prepump 2018-02-17 11:57:28+00:00 1.0 1281858086 988 good day everyone after a big success yesterday we are going to have another pump on yobit today remember we went more yesterday with huge volume we will push all limits today so get ready and participate in the pump today 2018-02-17 08:16:14+00:00 1.0 1281858086 970 teampumps admin pump announcement date saturday 17th of february hour 5pm17h uk time gmt ⌚️ exchange yobitnet countdown watch⌚️ +teamfontcursivecsz1 2018-02-16 19:06:15+00:00 1.0 1281858086 940 ➖ yobit alert ⏰ 60 minutes left time ➖ 1700 gmt date ➖16022017 exchange➖ yobit btc market 2018-02-16 16:00:02+00:00 1.0 1281858086 923 please note that our exclusive pump on yobit will be at 1700 hrs gmt today huge profits are on offer today join in big numbers approximately 6 hours to go exchange yobit 2018-02-16 10:44:32+00:00 1.0 1281858086 888 tomorrow we are going to have a massive pump on yobit exchange fund your accounts huge profits coming your way 2018-02-15 19:23:04+00:00 1.0 1281858086 765 coin → xco initial price → 160 satoshi highest → 239 satoshi pump analysis → 6089 ↑ decent enough hold could have been way better if some guys don t sell early if anyone stuck just put a sell order above buy price 2018-02-13 17:14:43+00:00 1.0 1281858086 757 next post coin name be ready this is a strong hold 2018-02-13 16:58:10+00:00 1.0 1281858086 680 pump starts the coin is vidz exchange cryptopia target +300 sats 2018-02-09 18:00:01+00:00 1.0 1281858086 646 coin → euc initial price → 300 satoshi highest → 599 satoshi pump analysis → 9999 ↑ amazing work 2018-02-07 17:12:58+00:00 1.0 1281858086 642 pump starts the coin is e u c exchange cryptopia target 800 sats market url 2018-02-07 16:00:16+00:00 1.0 1281858086 618 pump starts the coin is 888 exchange cryptopia target +600 sats market url 2018-02-06 18:00:02+00:00 1.0 1281858086 340 today 31012018 ❗pump announcement❗ date 31st of january hour 5 pm gmt exchange cryptopia be prepared its getting hot ✅exchange cryptopia✅ 2018-01-30 19:54:25+00:00 1.0 1281858086 312 pump announcement date tuesday 30th of january time 5 pm gmt uk time place cryptopia 2018-01-30 12:50:37+00:00 1.0 1281858086 7 ⭐️how to prepare for a pump⭐️ step 1 make sure you register on the exchange and have btc ready in your wallet keep in mind it can take a while to transfer btc so do it now step 2 to give everyone a fair chance we will announce the coin at the announced start time be sure to buy fast and keep pushing the price upwards ⚠️ step 3 important place your buy orders much higher 5x10x than the current price this will ensure that your order is filled and you get it at the best price if you set lower buy orders someone else may clear sell walls before you and your order wont go through you dont want to make this mistake set a higher buy order and it will be filled at the next best price ️⃣ example lets say the coin has sell orders at 300 and 305 sats put a buy order to 1500 sats with all of your btc and you will buy all 3 orders from their defined price if someone else acts before you and buys those lowest orders than you will buy from 311 and 315 which is pretty good but if you put your buy order at 300 sats you wont be able to buy at that moment due to the price fluctuating so fast be careful and get on that spaceship asap step 4 once you have bought your coins the next step is to promote the coin go to the cryptopia chatbox and hype up the coin wo giving away any suspicion of a pump and dump dont mention it is a pump and dump just big it up “wow what is going on with xxx” hype it up in any other forums you are a member of as well creating hype and momentum is key here is the link step 5 dont panic and sell too early when you want to exit is totally up to you we recommend for you to wait until the coin has at least goin up 810x from the original value it has the possibility of going even further 1525x as long as we keep our momentum strong and keep buying we will have a countdown 24 hrs before the pump the name of the coin being pumped will be released at the start time along with a link to it on the selected exchange ⏳ cryptopia registration ⭐️crypto pumpers⭐️ 2018-01-25 18:56:25+00:00 1.0 1220789766 2591 attention +1000 pump coin will be posted in binance whales leak link open only for limited time 24 hours left for biggest pump join fast sponsoredadv dyor 2021-11-24 22:01:17+00:00 1.0 1220789766 1800 15 minutes left —btc our next post will be the coin name date monday august 2 2021 today time 1200 utc in 15 minutes 2021-08-02 11:45:08+00:00 1.0 1220789766 1326 looking at a altcoin setup looks pretty good for potential 2050100200 coin name belusdt futures buy it target 18192222533545 have upcoming news aswell 2021-06-09 08:18:42+00:00 1.0 1256364096 279 5 دقيقه متبقيه على البمب 5 minutes left on the pump الرسالة القادمة اسم العملة next message is the name of the coin 2021-07-13 18:55:06+00:00 1.0 1145507351 94 incnt update weve lifted off the base support and now have a 45 btc support at 4950 satoshis weve been bouncing off the resistance at 2951 however the sell book is clearing for a run to 5123 satoshis 007 btc resistance a bit more volume should see us reach today unfortunately my top choice today received a pump by a few groups 15 minutes before however incnt should present us with a small profit regardless of any pump 2017-07-21 15:35:04+00:00 1.0 1145507351 79 emc2 update at 1500 gmt emc2 received a pump from around 4 groups however it truly was a pathetic pump despite increasing volume around 5 btc the groups failed to consistently hold which lead to an equal balance of resistance and support a previous group this week bought 3 btc to a pump on this coin which resulted in 17 increase with addition of being prepumped they only achieved 7 which is 15 higher than our entry price this morning i hope this was high enough to trigger your sell orders the price is current near our original entry price and will continue to rise there will higher resistance from around 1275 1325 so you may want to exit at a lower profit if youre looking very short term however there isnt any significant sell walls so hold for 16 48 hours if you want to aim for a higher gain next coin signal will be tomorrow at midday 1200pm gmt 2017-07-19 17:28:32+00:00 1.0 1145507351 74 pump signal ❗️einsteinium emc2❗️ emc2 emc2 has low volume with low resistance up to 100 the coin last received a pump on the 16th july when 3 btc was injected in increasing price to 17 current buy walls 000000500 22 btc 000000017 23btc 000000008 24 btc current sell resistance 0000030 30 btc 0000034 36 btc 0000035 36 btc 000004011 301 btc 000004942 42 btc ➡️ current volume 962 btc ➡️ resistance up to 50 454 btc ➡️ resistance up to 100 1657 btc 2017-07-19 11:00:53+00:00 1.0 1145507351 71 announcement so many new comers loose out on pump and dumps due to a lack of understanding and knowledge weve all been there the aim of this channel was to provide free unbiased advice on how where when to pump to maximise the chances of profit over the last couple of weeks it has become increasingly difficult to profit from the pumps i feel uncomfortable making recommendations on which pumps to partake in as the risk of loosing money is now too high over the last week i have introduced signals to trial if this would be an effective form of advice over trying to fight bots on a predetermined coin chosen by a coalition of pump groups the results have been ➡️ 7th july sphr +40 after 72 hours ➡️ 14th july synx 920 after 72 hours ➡️ 17th july dar 22 after 33 hours ➡️ today gld 14 after 9 hours as long as i can identify a good coin ill aim for a daily pump signal ill continue to provide full analysis throughout with advice on entry prices my goal remains to help out anyone looking for free unbiased trading advice i hope any of the information can secure you profit i only ask that you share the channel if the opperunity presents itself moving forward ill aim to provide the next pump signal on 19th july at 1100 gmt 2017-07-18 22:16:06+00:00 1.0 1145507351 67 pump signal coin goldcoin gld current 000003411 gld 2017-07-18 12:18:03+00:00 1.0 1145507351 64 pump candidate update on dar dar received a significant price increase within an hour of highlighting this coin a pump occurred yesterday from the pump it group the price is currently 12 higher than yesterdays notification the coin has very low volume and im confident we will continue to see a price increase today new pump signal candidate at 1200 gmt 2017-07-18 09:51:50+00:00 1.0 1145507351 63 pump signal coin darcrus dar current 000008390 dar 2017-07-17 09:22:17+00:00 1.0 1145507351 59 news ▶️ the largest telegram pump i witnessed yesterday was from cryptoinsiders they produced a 2100 increase on the price of xmg on yobit the coin is revealed on their website at next pump today at around 1440 gmt ▶️ rocket investments commence their second cryptopia pump today their last pump produced a 770 gain on wrc next pump today at 2000 gmt ▶️ the first major collaboration on yobit is today with thecryptomafia daypumpers tfpumps aaaaaerqal55zhopqihsq pumpndumpb yobitpumpit pump today at 1500 and 1700 gmt ▶️ the best gains on bittrex yesterday were from pumpnotifier just shy of 200 on trig 2017-07-13 08:55:46+00:00 1.0 1145507351 56 schedule for wednesday 12th july time 1430 gmt | 1030 edt | 2230 cst yobit high pumping yobitpumper yesterdays pump 450 giving away 02 btc for users participating in the pump time 1540 gmt | 1140 edt | 2340 cst crypto insiders cryptoinsiders the group have 1600 members but only around 100 seem active from yesterdays posts this yobit pump is being displayed on a website at time 1600 gmt | 1200 edt | 0000 cst pump notifier pumpnotifier back after a few days off only increased user count by 350 which is a decreased rate at user acquisition of late but still miles ahead of the competition returning to a bittrex pump today if this pump falls below expectation will we see another bittrex pump or complete migration over to yobit either way itll be nice to see a large volume pump again time 1630 gmt | 1230 edt | 0030 cst yobit pumpit yobitpumpit tried 2 pumps yesterday but the later one failed so going back to one at 430pm not too surprising as it suits best for multiple time zones time 1645 gmt | 1245 edt | 0045 cst pumpit dude pumpitdudee another web hosted pump however unsure if this is hosted on a shared server or how well itll handle the bandwidth the group have over a thousand members with an active member base i couldnt find anywhere that says what exchange is being used if the admin reads this clarification would be great thanks 2017-07-12 08:02:31+00:00 1.0 1145507351 55 schedule for tuesday 11th july time 1430 gmt | 1030 edt | 2230 cst yobitpumper yesterdays pump 870 yobit time 1500 gmt | 1100 edt | 2300 cst cryptomoon pumping today on bittrex should be a strong bittrex pump most likely the largest of the day on bittrex time 1800 gmt | 1400 edt | 0200 cst profitpump first pump on yobit but with 2152 members which appear active im looking forward to the results time 2100 gmt | 1700 edt | 0500 cst investrocket first pump after a few days off returning for a pump on cryptopia as many have resistance in switching exchange id like to see the groups unite to an alternative exchange 2 pumps 5pm and 8pm time zone to be confirmed yobitpumpit performing 2 pumps on yobit today 2017-07-11 07:04:57+00:00 1.0 1145507351 51 pump schedule for 10th july time 1300 gmt | 0900 edt | 2100 cst purepumps pumping on bittrex today last bittrex pump was x15 from low to high the pump the next day on yobit reached 350 time 1430 gmt | 1030 edt | 2230 cst yobitpumper pumping on yobit first pump hyperx 700 ie 7x second pump planet 1700 ie 17x third pump xpc 1450 ie 145x fourth pump cov 1800 ie 18x fifth pump arcx 800 ie 8x sixth pumpcredit 950 ie 95x seventh pumpmvr 950 ie 95x eighth pump sen 900 ie 9x time 1430 gmt | 1030 edt | 2230 cst pumpkings a relatively small pump last time however the price rebounded since will be interesting to see if any pattern forms from this time 1700 gmt | 1300 edt | 0100 cst nuclearpumps last bittrex pump bought 100btc volume to the pump time 1800 gmt | 1400 edt | 0200 cst profitpump first pump from this group with 2000 members pump on yobit 2017-07-10 09:15:34+00:00 1.0 1145507351 47 schedule for friday 7th june edited 0836gmt as a pump time changed time 1500 gmt | 1100 edt | 2300 cst a collaborated pump of pumpannouncements thecryptomafia purepumps and hundredx i remain be skeptical of the collaboration pumps the groups being informed 10 minutes before the pump is a large window of time for things to go wrong as they all keep falling out and forming new collaborations its difficult to form a strategy based on previous pumps that being said they had a 3 minute pump yesterday that gained 52 id be happy to keep an eye on any pump that doesnt dump by the end of the first minute time 1430 gmt | 1030 edt | 2230 cst yobitpumper yobit a lower pump for this group yesterday around 800 from the previous 1600 15 btc 24hr volume lets see if the group can grow to expand these numbers time 1500 gmt | 1100 edt | 2300 cst pumpkings formally part of a collaboration now going it alone lets see if they can bring enough volume to identify any trend a word of advice if the channel comes across this message i found the pump time buried in one of the previous messages post the pump time occasionally in clear dedicated messages itll help people plan for the pump 2017-07-07 07:47:59+00:00 1.0 1145507351 43 schedule for thursday 6th july honestly id avoid them all today but heres my picks to monitor time 1500 gmt | 1100 edt | 2300 cst group pump it ill be monitoring the trades in depth prior to the pump to see how badly the collaboration prepumps it seems every other message from a lot of groups are stating they are collaborating with others this prevents an additional risk as more people know the coin before the announcement we saw it happen yesterday and most likely will happen again soon time 1500 gmt | 1100 edt | 2300 cst group yobit high pumping they stated yesterday of a 1800 increase although it was 1600 the volume was only 29 btc with pump notifier moving over to yobit expect high volume over the upcoming weeks time 2000 gmt | 1600 edt | 0400 cst group after a car crash of a pump yesterday mentioned in previous message lets see what today brings the old pattern of a big wave 23 hours after has gone but you could catch a small wave within the hour of the pump yesterdays wave was 26 from low to high 2017-07-06 10:28:25+00:00 1.0 1145507351 39 yesterdays summary pump collective fall out i said it yesterday time to give up on the collective group sharing coin pumps pumpkings etc the coin was leaked before the announcement causing it to flop one of the groups stated they have launched an internal investigation and someone has been fired why the bloody hell would they make out its anything but 1 bloke just sat in his bedroom on the computer wonder if he wears a name badge now theyre all going separately ill monitor them to see if any can succeed independently 2017-07-06 08:02:19+00:00 1.0 1145507351 37 pump candidate curecoin cure cure this market is well positioned to receive a pump gain increase the coin only has 61 btc asks in total with under 5 btc up to 100 it has a 24hr volume of 1381btc and current margin of 617 current buy support smaller support at 000004 0000048 0000041 0000049 0000038 current sell walls 000007198 178 btc 000010000 21 btc 000011000 18 btc ✅please help spread the channel 2017-07-05 09:59:27+00:00 1.0 1145507351 36 schedule for wednesday 5th july time 1500 gmt | 1100 edt | 2300 cst group pump it see yesterday time 1500 gmt | 1100 edt | 2300 cst group collective + others as predicted the chosen coin was heavily prepumped 27 in 10 minutes leading up to the pump the group stated around 100 gains but in reality it was actually only 62 from when the coin was officially announced it did however cross the 90 btc volume i was looking to see the groups stated they changed their coin last minute and were going to research a few coins as a contingency for today so we will see how today goes if a trend persists of such high volume prepumps i wouldnt give these groups any more time time 1600 gmt | 1200 edt | 0000 cst group pump notifer after another relatively low pump yesterday we see the final pump today until the 12th july this pump will be taking place on yobit despite 79 of the group not wanting to move exchange when polled although people are happy with bittrex i can completely see the reasons to try yobit another group recently switched from bittrex below and with roughly the same volume pumped they increased profits from 30 on bittrex to 1700 on yobit the exchange performs incredibly high percentage pumps so im expecting big things from this additionally less bot are available for yobit so we should see a longer organic pump time 1600 gmt | 1200 edt | 0000 cst group yobit high pumping dont want to pump with pump notifier the group mentioned above are pumping at the same time on yobit first pump hyperx 700 second pump planet 1700 third pump xpc 1450 time 2000 gmt | 1600 edt | 0400 cst group the start of a back to back pump for today and tomorrow a good consistent pump and watch for 2 waves within the 23 hours after the pump 2017-07-05 09:35:33+00:00 1.0 1145507351 35 schedule for tuesday 4th july time 1500 gmt | 1100 edt | 2300 cst group collective + others be aware the coin may likely be prepumped i would like to see the pump put in over 90btc of volume today i havent witnessed consistency in a post pump pattern of late however profit has been obtained directly on the pump although its not confirmed messages in larger groups do not seem to all come through at once personally i have received messages up to 20 seconds later than others i believe the distribution of messages over the few groups will ease the congestion than if they were all in 1 group time 1500 gmt | 1100 edt | 2300 cst group pump it ill pick this group every day its fair automated and consistent usually a low pump but i hope its adopted more to increase this 9472 btc has been pumped into the last pick xvc within the last 24hrs however a pump occurred 30 minutes prior so the pump had high resistance leaving a 14 increase im going to make a small tool for our group to help speed up the purchase of the coin picks in the upcoming days time 1600 gmt | 1200 edt | 0000 cst group pump notifer i was monitoring a few coins which were in a good position prior to the pump all of them saw volume spikes in the minutes leading up to it i believe he selected enrg as it had very little volume increase to reduce claims of prepumping it isnt too surprising the coin only reached 200 id much rather see a coin with low volume and low sell resistance being selected the dilemma he faces is should he pick a good coin and face accusation of prepumping or pick a lower performing coin without prepump volume for a lower percent gain time will tell 2017-07-04 09:50:40+00:00 1.0 1145507351 32 just an update regarding the schedule earlier i mentioned that 3 groups have been providing the same coin and i was looking to identify the lead group copycats they have just completed the pump on gld gld all 3 groups provided the notification at exactly the same time 150101 because of this we can safely assume the pump is organised as a collective same owner links to all 3 are in the schedule above 2017-07-02 15:37:31+00:00 1.0 1145507351 29 schedule for sunday 2nd july time 1500 gmt | 1100 edt | 2300 cst group notes explained further in the last post try and get in when the coins are announced and set your sell orders before the pump is announced at 1500 time 1500 gmt | 1100 edt | 2300 cst group notes i believe a minimum of 3 separate groups are providing the same coin at the same time collectively they have 4200 i think the first to post is via but also involved are when they pumped yesterday the spread between the group lead to the 24hr high being set in the 4th minute of the pump i would not advice participating in this pump until i confirm which is the lead group but it could be worth watching time 1700 gmt | 1300 edt | 0100 cst group notes now currently at 17267 members no special approach here just hope that 17266 people are slower than you keep an eye on the sample link that is supplied 1 hour before the pump is usually gains 10 30 2017-07-02 07:44:32+00:00 1.0 1145507351 23 schedule for saturday 1st july time 1500 gmt | 1100 edt | 2300 cst group notes ive been monitoring this group for a few days and the pumps are slowing starting to pick up in volume i mentioned these briefly within my last article they pick a coin based on the last hash of the dogecoin mined block chain after 1500 gmt the 8 potential coins are revealed at 0900 gmt daily so you could look at investing in all coins for a pump tomorrow when theyre announced if you do decide this ensure you place stop orders shortly before the pump at 1500 the other coins understandably drop the coin yesterday pumped to 38 profit from the price at 0900gmt the risk factor in this is that the 7 other coins drop throughout the day wiping out any profit from the pump ill keep an eye on this and see what the outcome is time 1630 gmt | 1230 edt | 0030 cst group notes were yet to see a pump from this group on telegram theyre migrating over from slack and are sitting at over 4300 members i cant give predictions on this one yet but do keep an eye on it time 1700 gmt | 1300 edt | 0100 cst group notes yesterdays pump drew a profit of 60 however it broke a trend by reaching this within the first minute and descended for the following 10 minutes the pattern i noted in the schedule repeated once again with a large market swing occurring after the dump within 2 hours the price increased from 000005637 to 000015984 a gain of 18356 same again applies today id bypass the pump go for the dip and hold for a couple of hours ✅share the news help the channel 2017-07-01 13:45:29+00:00 1.0 1145507351 20 ⚠️the latest analysis is now online from yesterdays picks pumpanalysiscryptopumpanalysisfor29thjunebtaqtlvrc i hope you were able to take advantage of the 27 increase on vrc in the hours after the pump the price picked up roughly 30 minutes before i estimated it would but i believe we will see the trend repeat on the pump on monday ✅please help spread the channel 2017-06-30 13:21:41+00:00 1.0 1145507351 19 pump schedule for 30th june time 1500 gmt | 1100 edt | 0000 cst group notes yesterdays pump was on a coin that had already been pumped twice by 2 other groups in the same day unsurprisingly it faced large resistance due to high sell orders from the other pumps and reached a high of 9154 from the prepump before a sharp decent im hoping to see a better choice of coin from this group today my original advice applies again be conservative with investing on the pump and monitor the dip after when this group dumps it dumps hard time 1600 gmt | 1200 edt | 0100 cst group notes with now close to 17000 members on paper you should be excited about this pump im sure itll be another 1000+ increase with an appearance on the bittrex homepage my concern is will you actually see any of it im going to try and break the analysis of this pump into second by second rather than minute by minute to give us all a much clearer picture with the influx of volume the pump can produce opportunities to ping pong off the volatility for the hours after but i fear youll mainly be fighting bots in this pump time 1700 gmt | 1300 edt | 0200 cst group notes as i mentioned yesterday the pump had lower volume but a longer period before the price dropped this has been a consistent pattern so id expect more of the same consider this pump the polar opposite of pumpnotifier buying in 40 on top of the prepump price could give around 5 10 minutes before youd be selling at a loss based on the previous pumps full analysis from yesterday is on its way shortly 2017-06-30 10:08:42+00:00 1.0 1145507351 16 hi all here are the results from one of the scheduled pumps pumped 1700 gmt ▶️group ▶️results the prepump price on bta was 000027570 after the pump started it reached a high of 000044690 which represented a 621 increase the pump continued into the second minute where a new high was reached 000045000 23 minutes later the price consolidated at a new low of 000023510 before the price began to rise again ▶️conclusion as i mentioned in the schedule you had longer to hold but with a relatively low price increase its promising to see the price continuing to rise well into the second minute either members are more willing to hold and not selling straight away and or the group isnt plagued by bots shorting the pump id recommend keeping an eye on their next pump tomorrow to see if the volume of trade increases to improve the percentage gain ✅was this information useful let others know 2017-06-29 18:43:15+00:00 1.0 1145507351 8 ⚠️the latest analysis is now online from yesterdays signalspumps pump pumpanalysisdidacryptopumpgroupbringamarketwalletoffline a trend in their last 2 pumps is emerging that shows the price rallying roughly 3 hours after the initial pump you could look for investment during this time if you miss the initial pump their next pump is likely to be tomorrow at 2000 gmt 2017-06-28 10:32:23+00:00 1.0 1145507351 7 scheduled pumps for june 28th ▶️group 2368 members time 1500 gmt notes third pump in 24 hours ▶️group 15667 members time 1600 gmt notes get in fast or not at all youll need to sacrifice a higher percentage on top of the ask price to get in ▶️group 1054 members time 1800 gmt notes only 1 previous pump which increased 60 in the first minute before falling very sharply id suggest watching this one from the sideline until the group numbers increase ✅help spread the channel exclusive news for members when we reach 1000 2017-06-28 07:45:02+00:00 1.0 1145507351 6 upcoming pump in 15 minutes 2045 bst gmt+1 the group tried switching over to a website to present the pick however it crashed and they are now performing a second pump this evening via telegram the viewed message count has dropped from around 23k before the last pump to now around 500 11k because of this it could be assumed of a lower volume pump my advice would be to get in quick at a +1 on the ask price and sell within the minute if you cant get in quick sit this one out 2017-06-27 19:33:30+00:00 1.0 1432529525 8755 watching 9100 9300 for big short or 9400 for big pump to 10k we can open signal in right direction once btc get there currently 9000 is ma200 daily resistance so there is small rejection and btc will come up stronger 2020-01-17 06:52:17+00:00 1.0 1432529525 7677 it looks like btc is ready to make strong big move currently at 11k high possibility of breaking previous levels btc buy signal will be posted soon 2019-07-03 03:44:23+00:00 1.0 1205820037 55766 we are 5 big groups soon big pump 2021-09-25 10:00:39+00:00 1.0 1205820037 55748 next post will be coin name be ready 2021-08-13 16:56:11+00:00 1.0 1205820037 55735 new pump date 10aug 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm emmadonet profit minimum 10x with our pumps 2021-08-07 13:57:28+00:00 1.0 1205820037 55729 ready next post will be coin name 2021-07-29 16:55:37+00:00 1.0 1205820037 55728 10 minutes left be ready after 10 minutes we will post coin name and it will be big pump 2021-07-29 16:50:09+00:00 1.0 1205820037 55722 5 hours left on the pump be ready exchange hotibetio pair usdt 2021-07-29 12:05:44+00:00 1.0 1205820037 55721 today pump canceled of hotbitio serve tomorrow at 1700 gmt we will do big pump minimum +1000 10 x profits 2021-07-28 11:54:35+00:00 1.0 1205820037 55718 nwe pump big pump a way minimum +1000 10 x profits it will be on 2872021 sunday time zone 1500 gmt buy by usdt exchange hotbitio موعد الإعلان عن اسم العملة 2872021الاحد المنطقة الزمنية 1500 gmt الشراء عن طريق usdt المنصة hotbitio 2021-07-19 19:46:13+00:00 1.0 1205820037 55716 ready next post will be coin name 2021-07-17 16:55:06+00:00 1.0 1205820037 55711 sorry today pump canceled tomorrow at 1700 gmt we will do a big pump 2021-07-16 16:57:03+00:00 1.0 1205820037 55708 big pump a way date 16jul 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-07-15 18:34:42+00:00 1.0 1205820037 55706 ready next post will be coin name 2021-07-15 16:55:05+00:00 1.0 1205820037 55700 sorry today pump canceled tomorrow at 1700 gmt we will do big pump be ready 2021-07-14 17:10:35+00:00 1.0 1205820037 55695 ready next post will be coin name 2021-07-11 16:55:07+00:00 1.0 1205820037 55689 24 hours left our big pump 2021-07-10 17:01:01+00:00 1.0 1205820037 55685 big pump a way date 11jul 2021 time 1700 gmt exchange hotbitio pair usdt profit minimum 10x with our pumps 2021-07-09 12:09:34+00:00 1.0 1205820037 55681 ready next post will be coin name 2021-07-08 16:55:09+00:00 1.0 1205820037 55676 huge hotbit pump for you date 8jul 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 profit minimum 10x with our pumps 2021-07-07 12:12:23+00:00 1.0 1205820037 55673 ready next post will be coin name 2021-07-06 16:55:10+00:00 1.0 1205820037 55665 huge hotbit pump for you date 6jul 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 profit minimum 10x with our pumps 2021-07-03 11:03:48+00:00 1.0 1205820037 55662 ready next post will be coin name minimum 5x profit be ready 2021-06-30 16:55:04+00:00 1.0 1205820037 55649 ready next post will be coin name 2021-06-28 16:55:32+00:00 1.0 1205820037 55642 huge hotbit pump for you date 28jun 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 profit minimum 10x with our pumps 2021-06-27 23:22:59+00:00 1.0 1205820037 55638 ready next post will be coin name more 1000 2021-06-27 16:55:09+00:00 1.0 1205820037 55631 huge hotbit pump for you date 27jun 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 profit minimum 7x with our pumps 2021-06-26 11:36:30+00:00 1.0 1205820037 55628 be ready next post will be coin name 2021-06-25 16:55:18+00:00 1.0 1205820037 55625 1 hour left be rawa for big pump 2021-06-25 16:00:14+00:00 1.0 1205820037 55624 4 hours left exchange hotibetio vip members will know coin name before pump for vip dm jackcrypto1 2021-06-25 13:00:04+00:00 1.0 1205820037 55622 huge hotbit pump for you date 25jun 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 profit minimum 7x with our pumps 2021-06-24 12:43:02+00:00 1.0 1205820037 55618 ready next post will be coin name 2021-06-23 16:55:02+00:00 1.0 1205820037 55615 30 minutes left exchange hotibetio pair usdt minimum 200 be ready 2021-06-23 16:29:09+00:00 1.0 1205820037 55609 huge hotbit pump for you date 23jun 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 profit minimum 5x with our pumps 2021-06-21 12:40:52+00:00 1.0 1205820037 55602 ready next will be coin name 2021-06-17 16:55:03+00:00 1.0 1205820037 55593 huge hotbit pump for you date 17jun 2021 time 1700 gmt exchange hotbitio pair usdt we opened new vip group for vip dm jackcrypto1 profit minimum 5x with our pumps 2021-06-16 09:36:29+00:00 1.0 1205820037 55587 ready next post will be coin name 2021-06-14 16:55:07+00:00 1.0 1205820037 55585 30 minutes left profit x5 exchange hotbitio pair usdt 2021-06-14 16:30:02+00:00 1.0 1205820037 55583 5 hours left big pump a way minimum 5x profit exchange hotbitio 2021-06-14 11:58:18+00:00 1.0 1205820037 55576 huge hotbit pump for you date 14jun 2021 time 1700 gmt exchange hotbitio pair usdt we opened new vip group for vip dm jackcrypto1 profit minimum 5x with our pumps 2021-06-12 10:03:40+00:00 1.0 1205820037 55573 ready next post will be coin name 2021-06-11 15:55:11+00:00 1.0 1205820037 55572 10 minutes left +1000 hotbitio 10x profit be ready 2021-06-11 15:50:42+00:00 1.0 1205820037 55567 7 hours left big pump a way exchange hotbitio be ready 2021-06-11 09:00:16+00:00 1.0 1205820037 55560 huge hotbit pump for you date 11jun 2021 time 1600 gmt exchange hotbitio pair usdt we opened new vip group with good discount for 24 hours for vip dm jackcrypto1 profit minimum 5x with our pumps 2021-06-08 09:14:59+00:00 1.0 1205820037 55556 ready next post will be coin name 2021-06-05 15:55:14+00:00 1.0 1205820037 55551 5 hours left ✅ be ready pump in hotbitio 2021-06-05 11:02:44+00:00 1.0 1205820037 55550 7 hours left big pump a way exchange hotbitio pair usdt for vip send messages to jackcrypto1 2021-06-05 09:00:23+00:00 1.0 1205820037 55539 ready next post will be coin name 2021-06-01 15:55:02+00:00 1.0 1205820037 55528 huge hotbit pump for you date 1jun 2021 time 1600 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-05-31 07:58:34+00:00 1.0 1205820037 55525 ready next post will be coin name 2021-05-30 18:55:05+00:00 1.0 1205820037 55522 1 hour left for big pump 2021-05-30 18:00:01+00:00 1.0 1205820037 55519 ready next post will be coin name 2021-05-30 15:55:01+00:00 1.0 1205820037 55517 30 minutes left be ready exchange hotbitio 2021-05-30 15:30:11+00:00 1.0 1205820037 55511 huge hotbit pump for you date 30may 2021 time 1600 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-05-28 23:46:37+00:00 1.0 1205820037 55508 ready next post will be coin name 2021-05-28 15:55:57+00:00 1.0 1205820037 55502 big pump a way be ready exchange hotbitio for vip dm jackcrypto1 2021-05-28 11:08:17+00:00 1.0 1205820037 55498 huge hotbit pump for you date 28may 2021 time 1600 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-05-26 19:49:20+00:00 1.0 1205820037 55493 ready next post will be coin name 2021-05-25 16:55:30+00:00 1.0 1205820037 55486 huge hotbit pump for you date 25may 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-05-24 16:53:45+00:00 1.0 1205820037 55480 5 minutes left next post will be coin name be ready 2021-05-22 16:55:03+00:00 1.0 1205820037 55475 less than 5 hours left until pump on hotbit we will pump coin in usdt pair so get ready exchange hotbitio for vip dm jackcrypto1 2021-05-22 12:00:19+00:00 1.0 1205820037 55473 today at 17gmt we will go to moon big pump a way for vip dm jackcrypto1 2021-05-22 02:08:49+00:00 1.0 1205820037 55429 5 hours left big pump a way for vip contact jackcrypto1 2021-05-21 13:00:18+00:00 1.0 1205820037 55346 today at 18gmt we will go to moon big pump a way for vip dm jackcrypto1 2021-05-21 02:35:10+00:00 1.0 1205820037 55273 after our great last pump of +5000 which lasted for more than 2 minutes and our team has decided to conduct another huge hotbit pump for you date 21 may2021 time 1800 gmt exchange hotbitio pair usdt dm for vip jackcrypto1 2021-05-20 02:45:29+00:00 1.0 1205820037 54832 everyone 5 minutes left next post will be coin name keep an eye here we going to more +3000 2021-05-15 16:55:18+00:00 1.0 1205820037 54825 10 minutes left be ready exchange hotbitio 2021-05-15 16:50:03+00:00 1.0 1205820037 54726 after our amazing last hotbit pump with peak of +5000 and duration for more than 20 minutes our team continues with a tradition of hotbit pumps to provide another huge pump for you this time we expect minimum +1500 we double the amount of other pump groups participants so we are stronger than last time date 15 may 2021 time 1700 gmt exchange hotbitio pair usdt 2021-05-14 14:02:25+00:00 1.0 1205820037 54057 after our great last pump of +5000 which lasted for more than 2 minutes and our team has decided to conduct another huge hotbit pump for you this time we expect minimum 2000 stay tuned and spread that announcement to get as many participants as possible date 4 may2021 time 224000 gmt exchange probitcom pair usdt dm for vip jackcrypto1 2021-05-04 14:10:56+00:00 1.0 1205820037 54027 soon big pump last pump it was great pump +1900 join our vips to get the best crypto pumps signals and make huge profits contact me via dm jackcrypto1 join the vips 2021-05-02 13:05:24+00:00 1.0 1205820037 53966 5 minutes left next post will be coin name 2021-04-29 18:55:14+00:00 1.0 1205820037 53957 2 hours left we waiting for more 3500 our last pump it was +5000 get ready join our vips to get the best crypto pumps signals and make huge profits contact me via dm jackcrypto1 join the vips 3500+ in just one shot 2021-04-29 17:00:42+00:00 1.0 1205820037 53950 5 hours left we waiting for more 3500 our last pump it was +5000 get ready join our vips to get the best crypto pumps signals and make huge profits contact me via dm jackcrypto1 join the vips 3500+ in just one shot 2021-04-29 14:00:18+00:00 1.0 1205820037 53794 after our great last pump of +5000 which lasted for more than 2 minutes and our team has decided to conduct another huge hotbit pump for you this time we expect minimum 2000 stay tuned and spread that announcement to get as many participants as possible date 29 april 2021 time 1900 gmt exchange hotbitio pair usdt 2021-04-26 00:43:18+00:00 1.0 1205820037 53192 4 hours left be ready for big pump hotbitio usdt 2021-04-21 17:00:03+00:00 1.0 1205820037 53128 after our great last pump of 493 which lasted for more than 2 minutes and our team has decided to conduct another huge hotbit pump for you this time we expect minimum 2000 stay tuned and spread that announcement to get as many participants as possible date 21 april 2021 time 2100 gmt exchange hotbitio pair usdt 2021-04-20 23:00:18+00:00 1.0 1205820037 53052 10 minutes left we will do big pump after 10 minutes in hotbit exchange usdt 2021-04-20 18:50:01+00:00 1.0 1205820037 53026 be ready 30 minutes left minimum +1500 hotbitio usdt 2021-04-20 18:30:06+00:00 1.0 1205820037 52936 less than 7 hours guys get ready for hotbit pump at 1900 gmt today we will do big pump in the world +1500 invite your friends 2021-04-20 12:00:02+00:00 1.0 1205820037 52916 after our amazing last hotbit pump with peak of +1400 and duration for more than 20 minutes our team continues with a tradition of hotbit pumps to provide another huge pump for you this time we expect minimum 1500 we double the amount of other pump groups participants so we are stronger than last time date 20 april 2021 time 1900 gmt exchange hotbitio pair usdt 2021-04-20 08:14:13+00:00 1.0 1205820037 52796 30 minutes left until our pump hotbitio 2021-04-19 22:15:09+00:00 1.0 1205820037 52774 1 hour left until our pump hotbitio 2021-04-19 21:45:01+00:00 1.0 1205820037 52690 today we will have a big pump stay ready exchange hotbitio usdt 2021-04-19 14:25:23+00:00 1.0 1401539056 146 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:03+00:00 1.0 1401539056 121 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:04+00:00 1.0 1401539056 119 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:04+00:00 1.0 1401539056 118 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:05+00:00 1.0 1401539056 117 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:04+00:00 1.0 1401539056 116 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:04+00:00 1.0 1401539056 115 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:05+00:00 1.0 1401539056 114 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:04+00:00 1.0 1401539056 113 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:07+00:00 1.0 1401539056 112 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:04+00:00 1.0 1401539056 111 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:04+00:00 1.0 1401539056 110 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:04+00:00 1.0 1401539056 109 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:04+00:00 1.0 1401539056 108 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:04+00:00 1.0 1401539056 107 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:04+00:00 1.0 1401539056 106 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:04+00:00 1.0 1401539056 97 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:05+00:00 1.0 1401539056 94 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:40+00:00 1.0 1401539056 91 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:47+00:00 1.0 1401539056 87 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:11+00:00 1.0 1401539056 83 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1401539056 81 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:04+00:00 1.0 1401539056 80 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:02+00:00 1.0 1401539056 79 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:12+00:00 1.0 1401539056 78 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:32+00:00 1.0 1401539056 75 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:06+00:00 1.0 1401539056 74 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:04+00:00 1.0 1401539056 72 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:02+00:00 1.0 1401539056 70 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:02+00:00 1.0 1401539056 69 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:03+00:00 1.0 1401539056 68 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:05+00:00 1.0 1401539056 67 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:02+00:00 1.0 1401539056 66 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:03+00:00 1.0 1401539056 65 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:03+00:00 1.0 1401539056 63 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:03+00:00 1.0 1401539056 62 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:02+00:00 1.0 1401539056 61 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:03+00:00 1.0 1401539056 60 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:03+00:00 1.0 1401539056 59 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:01+00:00 1.0 1401539056 58 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:02+00:00 1.0 1401539056 57 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:01+00:00 1.0 1401539056 55 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:01+00:00 1.0 1401539056 54 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:49+00:00 1.0 1401539056 53 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:01+00:00 1.0 1401539056 52 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:56+00:00 1.0 1401539056 49 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:00+00:00 1.0 1401539056 47 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:00+00:00 1.0 1401539056 45 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:00+00:00 1.0 1401539056 44 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:01+00:00 1.0 1401539056 43 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:16+00:00 1.0 1401539056 42 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:07+00:00 1.0 1401539056 40 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:06+00:00 1.0 1401539056 37 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:00+00:00 1.0 1401539056 35 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:00+00:00 1.0 1401539056 34 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:01+00:00 1.0 1401539056 32 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:01+00:00 1.0 1401539056 31 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:00+00:00 1.0 1401539056 30 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:01+00:00 1.0 1401539056 29 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:01+00:00 1.0 1401539056 28 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:01+00:00 1.0 1401539056 27 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:01+00:00 1.0 1401539056 26 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:01+00:00 1.0 1401539056 25 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:01+00:00 1.0 1401539056 24 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:01+00:00 1.0 1401539056 23 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:01+00:00 1.0 1401539056 22 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:06+00:00 1.0 1401539056 21 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:00+00:00 1.0 1401539056 19 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:19+00:00 1.0 1401539056 17 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:08+00:00 1.0 1401539056 14 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 16:49:44+00:00 1.0 1401539056 10 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 16:54:38+00:00 1.0 1401539056 6 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 01:27:10+00:00 1.0 1249499797 740 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 17:50:58+00:00 1.0 1249499797 735 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:00:07+00:00 1.0 1249499797 734 5 minutes left the next message will be the coin to buy 2022-01-02 16:55:06+00:00 1.0 1249499797 733 15 minutes left until the big pump on binance be ready 2022-01-02 16:44:59+00:00 1.0 1249499797 731 2 hours left until the massive pump on binance be prepared 2022-01-02 15:00:20+00:00 1.0 1249499797 730 3 hours remaining until the big pump on binance 2022-01-02 14:01:57+00:00 1.0 1249499797 729 5 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2022-01-02 11:59:57+00:00 1.0 1249499797 728 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:08:38+00:00 1.0 1249499797 725 3 days left until the big pump on binance 2021-12-30 14:45:19+00:00 1.0 1249499797 719 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:28+00:00 1.0 1249499797 705 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:14+00:00 1.0 1249499797 681 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:03+00:00 1.0 1249499797 678 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:05+00:00 1.0 1249499797 677 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:02+00:00 1.0 1249499797 676 15 minutes remaining until the big pump be ready 2021-11-28 16:45:53+00:00 1.0 1249499797 674 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:23+00:00 1.0 1249499797 673 2 hours left until the massive pump on binance 2021-11-28 15:01:07+00:00 1.0 1249499797 672 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:20:47+00:00 1.0 1249499797 671 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:11+00:00 1.0 1249499797 670 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:01+00:00 1.0 1249499797 669 2 days remaining until the big pump on binance 2021-11-26 16:18:04+00:00 1.0 1249499797 663 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:02+00:00 1.0 1249499797 655 its time to buy bitshiba again very big news is coming soon by the way we are aware that all of our members are waiting patiently for our next big pump we will be scheduling our next pump very soon possibly this upcoming week stay tuned for our official announcement buy bitshiba contract address 0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7 buy on pancakeswap click here live chart click here telegram tmebitshibatoken 2021-11-18 15:00:06+00:00 1.0 1249499797 637 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:22+00:00 1.0 1249499797 634 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:03+00:00 1.0 1249499797 633 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:55+00:00 1.0 1249499797 631 30 minutes left until the big pump on binance 2021-11-07 16:30:00+00:00 1.0 1249499797 630 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:01+00:00 1.0 1249499797 629 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:09:56+00:00 1.0 1249499797 628 4 hours left until the big pump on binance 2021-11-07 13:00:26+00:00 1.0 1249499797 627 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:02+00:00 1.0 1249499797 625 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:00+00:00 1.0 1249499797 623 2 days left until the big pump on binance be prepared 2021-11-05 14:30:36+00:00 1.0 1249499797 621 4 days remaining until the big pump on binance 2021-11-03 13:56:14+00:00 1.0 1249499797 615 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:07+00:00 1.0 1249499797 614 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1249499797 609 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:05+00:00 1.0 1249499797 607 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:03+00:00 1.0 1249499797 605 30 minutes left until the big pump 2021-10-31 16:29:23+00:00 1.0 1249499797 604 55 minutes left until the big pump on binance 2021-10-31 16:06:16+00:00 1.0 1249499797 603 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:45+00:00 1.0 1249499797 602 4 hours left until the big pump on binance 2021-10-31 13:02:10+00:00 1.0 1249499797 601 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:39+00:00 1.0 1249499797 599 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:27+00:00 1.0 1249499797 595 3 days left until the big pump on binance 2021-10-28 13:02:59+00:00 1.0 1249499797 592 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:46+00:00 1.0 1249499797 588 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:47+00:00 1.0 1249499797 582 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:07+00:00 1.0 1249499797 580 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:55+00:00 1.0 1249499797 579 15 minutes left until the massive pump on binance 2021-10-24 16:44:54+00:00 1.0 1249499797 578 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:02+00:00 1.0 1249499797 577 2 hours left until the big pump on binance 2021-10-24 15:00:00+00:00 1.0 1249499797 576 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:03+00:00 1.0 1249499797 575 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:02+00:00 1.0 1249499797 573 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:11+00:00 1.0 1249499797 570 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:51+00:00 1.0 1249499797 555 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:47+00:00 1.0 1249499797 550 7 days left until the big pump on binance 2021-10-17 14:50:21+00:00 1.0 1249499797 541 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:40:00+00:00 1.0 1249499797 534 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:37+00:00 1.0 1249499797 531 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:05+00:00 1.0 1249499797 529 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1249499797 527 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:29:53+00:00 1.0 1249499797 526 1 hour left until the big pump on binance 2021-10-10 16:00:19+00:00 1.0 1249499797 525 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:02+00:00 1.0 1249499797 524 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:31+00:00 1.0 1249499797 523 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:41+00:00 1.0 1249499797 522 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:53+00:00 1.0 1249499797 520 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:02+00:00 1.0 1249499797 515 3 days left until the big pump on binance 2021-10-07 14:33:53+00:00 1.0 1249499797 504 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:04+00:00 1.0 1249499797 501 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:32+00:00 1.0 1249499797 498 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:07+00:00 1.0 1249499797 495 5 minutes left the real coin we are pumping will be posted in 5 minutes be ready 2021-10-03 16:54:56+00:00 1.0 1249499797 494 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:25+00:00 1.0 1249499797 492 the coin we have picked to pump today is ilv 2021-10-03 16:50:24+00:00 1.0 1249499797 488 12 minutes left until the pump on binance 2021-10-03 16:48:36+00:00 1.0 1249499797 484 30 minutes left until the big the pump on binance 2021-10-03 16:30:03+00:00 1.0 1249499797 483 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-10-03 16:00:02+00:00 1.0 1249499797 482 1 hour and 58 minutes left until the big pump on binance be ready 2021-10-03 15:03:00+00:00 1.0 1249499797 481 3 hours and 50 minutes left until the big pump on binance this pump will be massive be prepared 2021-10-03 13:09:43+00:00 1.0 1249499797 480 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:04+00:00 1.0 1249499797 478 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:03+00:00 1.0 1249499797 471 3 days left until the big pump on binance 2021-09-30 15:23:37+00:00 1.0 1249499797 465 7 days left until the big pump on binance 2021-09-26 14:35:59+00:00 1.0 1249499797 454 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:14+00:00 1.0 1249499797 436 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1249499797 435 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:11+00:00 1.0 1249499797 433 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:07+00:00 1.0 1249499797 430 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:09+00:00 1.0 1249499797 429 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:02+00:00 1.0 1249499797 428 4 hours left until the big pump on binance 2021-09-19 13:01:13+00:00 1.0 1249499797 427 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:01:56+00:00 1.0 1249499797 425 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:12+00:00 1.0 1249499797 422 3 days left until the big pump on binance 2021-09-16 15:14:42+00:00 1.0 1249499797 405 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:54+00:00 1.0 1249499797 387 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:10+00:00 1.0 1249499797 384 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:05+00:00 1.0 1249499797 382 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:45+00:00 1.0 1249499797 379 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1249499797 378 2 hours left until the big pump on binance 2021-09-05 15:00:08+00:00 1.0 1249499797 377 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:04+00:00 1.0 1249499797 376 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:40+00:00 1.0 1249499797 375 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:54+00:00 1.0 1249499797 373 2 days left until the big pump on binance be prepared 2021-09-03 14:05:05+00:00 1.0 1249499797 357 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 8 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-28 14:07:38+00:00 1.0 1249499797 353 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-22 18:00:51+00:00 1.0 1249499797 350 the coin we have picked to pump today is nas nas is looking perfect for a massive pump right now 2021-08-22 17:00:10+00:00 1.0 1249499797 348 5 minutes left the next message will be the coin to buy 2021-08-22 16:55:27+00:00 1.0 1249499797 346 30 minutes remaining until the big pump on binance we will be using the btc pairing to pump meaning you will need to use btc to buy the coin 2021-08-22 16:31:14+00:00 1.0 1249499797 343 2 hours remaining until the big pump on binance 2021-08-22 15:00:32+00:00 1.0 1249499797 341 4 hours left until the big pump on binance 2021-08-22 13:00:28+00:00 1.0 1249499797 340 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-22 11:00:05+00:00 1.0 1249499797 339 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-08-21 17:00:01+00:00 1.0 1249499797 335 4 days remaining until the big pump on binance 2021-08-18 15:01:34+00:00 1.0 1249499797 328 pump announcement hello everyone the next official pump will be scheduled for date sunday august 22 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on august 22 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 13 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-09 14:56:00+00:00 1.0 1249499797 326 here is the video everyone has been waiting for the replay of the first minute of our amazing pump yesterday we will be announcing the next pump date shortly 2021-08-09 14:03:41+00:00 1.0 1249499797 324 pump result possibly the biggest and most profitable pump we have seen on binance recently a slow and gradual peak of almost 300 with great volume once again which means all members had a chance to make up to 300 profit within the first 2 minutes the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that most members managed to make a big amount of profit after the previous pump we clearly mentioned that we will be guaranteeing a bigger pump today and we did for the next pump we can once again say that it will be even bigger than today the alt season for pumps has just started this is only the beggining of what we are about to achieve in our upcoming pumps expect much bigger results stay tuned for our next announcement 2021-08-08 17:43:55+00:00 1.0 1249499797 320 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-08-08 17:00:10+00:00 1.0 1249499797 317 5 minutes left be ready the next message will be the coin to buy 2021-08-08 16:55:27+00:00 1.0 1249499797 315 30 minutes remaining until the big pump on binance get ready 2021-08-08 16:30:00+00:00 1.0 1249499797 313 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 400 profit + be ready 2021-08-08 16:00:09+00:00 1.0 1249499797 310 5 hours left until the big pump on binance 2021-08-08 12:00:14+00:00 1.0 1249499797 309 6 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-08-08 10:14:14+00:00 1.0 1249499797 308 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being back and volumes being high the odds of reaching 400 profit will be very high this time we will do everything in our power to make sure we reach this target this is officially the pump you will want to be part of and not miss be prepared 2021-08-07 17:00:00+00:00 1.0 1249499797 307 2 days remaining until our biggest pump signal of all time be prepared 2021-08-06 11:47:20+00:00 1.0 1249499797 303 4 days remaining until the big pump on binance 2021-08-04 15:06:01+00:00 1.0 1249499797 300 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-01 13:44:04+00:00 1.0 1249499797 288 pump result amazing pump with 5 straight green candles for 5 minutes straight the uptrend was great and we would have needed a lot more volume to break through our high targets if everyone held for only 1 more minute we could have been able to go past 3000 sats and went straight to 4000 + but overall it was still very good as the pump held high for a good amount of time and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result but with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-07-25 18:05:53+00:00 1.0 1249499797 282 the coin we have picked to pump today is drep drep is looking perfect for a pump right now the target is 500 2021-07-25 17:00:01+00:00 1.0 1249499797 281 5 minutes left the next post will be the coin to buy 2021-07-25 16:55:00+00:00 1.0 1249499797 277 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 500 profit and beyond be ready 2021-07-25 16:00:00+00:00 1.0 1249499797 276 2 hours remaining until the big pump on binance 2021-07-25 15:01:03+00:00 1.0 1249499797 275 4 hours left until our big pump everything is still looking good still with our coin being bottomed which means all members will be able to buy early we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in last time we were able to get a few thousands retweet which means a big commitment from our community this time we want the effect to be bigger by asking all of our members to post on twitter after our signal we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-25 13:00:22+00:00 1.0 1249499797 274 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump with the market being good we can guarantee a good pump this time as our team will support it in a massive way by injecting volume after our members bought in 2 hours we will post a few directives in order to coordinate our coin to trend on twitter our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-25 11:00:27+00:00 1.0 1249499797 273 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-24 17:01:25+00:00 1.0 1249499797 272 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible this pump will have a big amount of support from the team and we can confirm with absolute certainty that this will be the biggest profit maker pump of all time be prepared 2021-07-23 14:15:02+00:00 1.0 1249499797 261 4 days remaining until our big pump on binance 2021-07-21 12:36:37+00:00 1.0 1249499797 254 7 days remaining until our big pump on binance we can say with 100 certainty that we will be able to do a massive pump like we did on ppt nxs and sky our official target for this pump will be 500 in a few days we will give our members more information on how to be ready for it in order to maximize your profits 2021-07-18 11:20:10+00:00 1.0 1249499797 246 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared on july 25 we will be pumping again with a 500 + target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we will be coordinating the pump with all our members as well to get the coin trending during the whole day of the pump we are expecting hundreds of thousands of people all across the world to attend this pump and with good coordination possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump by our team after our members bought in order to give the pump a boost and maximize profits for all our members with the collaboration of the biggest whales on binance big investors biggest crypto channels in the world and a experienced team of traders we can confidently say with 100 certainty that this will be one of the biggest pump we have seen lately on binance if youve missed ppt nxs and sky which was 3 of our biggest and most profitable pumps you will have the chance to make up for it on this one we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-07-12 12:05:28+00:00 1.0 1249499797 244 pump result the volume was amazing once again with a great 2nd wave that lasted a good amount of time however the pump did not go as we had initially planned we did manage to almost get our coin trending on twitter as we can see thousands of posts about it which is great and confirms that there is a big commitment from our members we will attempt to make that effect much bigger on the next one and coordinate it much better before the signal there was a lot of activity on our coin and our team had to decide between postponing the pump or doing the pump we decided to still do the pump which was unfortunately not the right decision in order to make sure this never happens again we can guarantee that we will be taking the following measures on the next pump the coin will be given at the absolute bottom in order to guarantee bigger profits for our members our team will support the price after all our members have bought by injecting a massive amount of btc this will guarantee that all our members can start with a good profit regardless of where they bought last but not least we will make sure that our targets will be met in order to guarantee a great pump for everyone we will announce the next official pump date soon stay tuned 2021-07-11 18:02:23+00:00 1.0 1249499797 243 the coin we have picked to pump today is poa poa is looking perfect for a pump right now 2021-07-11 17:00:02+00:00 1.0 1249499797 242 5 minutes left the next message will be the coin to buy 2021-07-11 16:54:47+00:00 1.0 1249499797 238 1 hour left until our big pump on binance be prepared 2021-07-11 16:00:01+00:00 1.0 1249499797 237 2 hours remaining until the big pump on binance 2021-07-11 15:00:02+00:00 1.0 1249499797 236 4 hours and 5 minutes left until our big pump we have put into place a lot of measures in order to spread the word after our pump signal in order to maximize profits for everyone this time we will ask all our members to do their part and help get our coin trending on twitter after the signal by using hashtags of the coin name with the power of hundreds of thousands of member tweeting about it we will be able to get it trending and make the pump last as long as possible with many more outsiders coming in we will be using these hashtags pump our coin name here bitcoin wallstreetbets binance 2021-07-11 12:55:01+00:00 1.0 1249499797 235 6 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done be ready 2021-07-11 11:00:02+00:00 1.0 1249499797 232 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time this is the pump that you will not want to miss you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-10 17:00:00+00:00 1.0 1249499797 230 2 days left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-07-09 13:54:52+00:00 1.0 1249499797 228 4 days left until the biggest pump signal of all time on binance in a few days we will be posting more information in order to be prepared for the pump 2021-07-07 14:01:01+00:00 1.0 1249499797 224 7 days remaining until the big pump on binance 2021-07-04 12:02:18+00:00 1.0 1249499797 215 pump announcement hello everyone the next official pump will be scheduled for date sunday july 11 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 11 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on july 11 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 11 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-30 12:45:05+00:00 1.0 1249499797 190 pump result total volume was over 400 btc which is around 14 million which is still good for the current market before the signal the market had sold a big amount of wabi which affected the expected results by probably around 4050 however in exchange it did give a better buying opportunity for our members the pump had a good and slow rise to the peak allowing our members to make a good amount of profit we also had multiple waves which allowed a lot of dip opportunities to be bought and sold back at a higher price despite the current bad market we are currently trying to match our big expectations as we have been able to reach on average 200450 results in the past while the market was still good with volumes reaching up 80 million we are aware that those are the big results that everyone wants and would like to let our members know that our team is working hard to try to provide those results again we have a strong team of whales big community leaders and the biggest traders in the cryptocurrency ecosystem with us and you can be sure that we will be able to provide those big results again once the market has returned back to normal before announcing our pump we will make sure that we will be able to reach each at least 300500 in our next pump and for that we will need the market to be a little more bullish again once we see that the market is good and ready for a pump we will make our big announcement on that note we received alot of messages of appreciation for this pump and we are glad many members managed to make profit stay tuned for our next announcement 2021-06-20 18:58:39+00:00 1.0 1249499797 188 the coin we have picked to pump today is wabi wabi is looking perfect for a pump right now 2021-06-20 17:00:04+00:00 1.0 1249499797 187 5 minutes left the next message will be the coin to buy 2021-06-20 16:54:53+00:00 1.0 1249499797 183 1 hour left until our big pump on binance 2021-06-20 15:59:39+00:00 1.0 1249499797 182 2 hours and 40 minutes left until our big pump on binance the market is staring to recover which is a good sign for us be ready 2021-06-20 14:20:07+00:00 1.0 1249499797 181 4 hours and 30 remaining until our big pump with the current market conditions all buying power and attention from the market will go towards our pump coin be prepared 2021-06-20 12:30:28+00:00 1.0 1249499797 180 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-06-20 10:54:48+00:00 1.0 1249499797 179 the big day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-06-19 16:59:11+00:00 1.0 1249499797 178 2 days left until the big pump on binance 2021-06-18 18:29:36+00:00 1.0 1249499797 168 pump announcement hello everyone the next official pump will be scheduled for date sunday june 20 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on june 13 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 7 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-13 18:07:40+00:00 1.0 1249499797 167 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets and make sure we are able to reach our 500 targetwe hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly stay tuned 2021-06-13 17:21:57+00:00 1.0 1249499797 164 5 minutes left the next message will be the coin to buy 2021-06-13 16:54:45+00:00 1.0 1249499797 159 2 hours and 15 minutes remaining until the big pump on binance 2021-06-13 14:44:22+00:00 1.0 1249499797 156 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-06-13 10:56:13+00:00 1.0 1249499797 154 the day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-06-12 17:00:01+00:00 1.0 1249499797 151 2 days left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible reminder that will only be using the btc pairing to buy the coin you will need to have btc on binance to buy the coin stay tuned 2021-06-11 12:47:39+00:00 1.0 1249499797 148 4 days left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it 2021-06-09 14:33:04+00:00 1.0 1249499797 143 pump announcement hello everyone the next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on june 13 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 12 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-01 18:12:23+00:00 1.0 1249499797 141 pump result amazing pump with more than 500 btc volume which is amazing in this market we hit the peak almost 1 minute after the signal was given which gave enough time for members to make profit our volume is still very big despite the short term market sentiment and the recent btc drop specially after having not pumped for 1 month we can say for sure that we are back and hopefully with the market starting to recover you can expect the next one to be much bigger we will be taking all the necessary precautionary measures on the next pump in order to make sure the signal is given at the absolute bottom as well the next pump will be massive stay tuned for our next announcement 2021-05-30 18:32:29+00:00 1.0 1249499797 139 the coin we have picked to pump today is oax oax is looking perfect for a pump right now 2021-05-30 17:00:02+00:00 1.0 1249499797 138 5 minutes left the next message will be the coin to buy 2021-05-30 16:54:36+00:00 1.0 1249499797 137 15 minutes left until the pump on binance we will be using the btc pairing to pump make sure you have btc in your account to buy the coin 2021-05-30 16:44:08+00:00 1.0 1249499797 133 2 hours remaining until the big pump on binance 2021-05-30 15:00:25+00:00 1.0 1249499797 132 2 hours and 55 minutes left until the pump on binance in 2 hours and 55 minutes we will be posting the coin to buy for the pump you will need to have btc in your account to buy the given coin be prepared 2021-05-30 14:04:43+00:00 1.0 1249499797 131 4 hours left until the big pump on binance 2021-05-30 13:02:46+00:00 1.0 1249499797 130 6 hours and 5 minutes left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-05-30 10:56:51+00:00 1.0 1249499797 128 the day has arrived 24 hours remaining until our biggest pump signal of all time we are about to initiate and ignite the bull market once again with our massive pumps millions of traders worldwide will be participating and watching this pump in real time as we reach very high targets and restore faith in the bull market you can expect to make massive profits in this pump make sure to be prepared and ready 2021-05-29 16:57:47+00:00 1.0 1249499797 126 2 days left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be the biggest pump of all time make sure you are well prepared for it 2021-05-28 13:35:16+00:00 1.0 1249499797 122 pump announcement hello everyone the next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on may 8 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 8 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-05-22 16:28:22+00:00 1.0 1249499797 90 hello everyone we are currently waiting for the best and most optimal market conditions before scheduling our next big pump in order to make sure that we can execute a massive pump with our usual volume and hit our 500+ profit target for all our members we will be making the announcement once our team and the market is ready for it stay tuned 2021-04-29 12:32:35+00:00 1.0 1249499797 82 pump result 700 btc volume which is around 35 million the pump managed to stay near the peak and high for 3 consecutive minutes which is amazing our usual volume is close to 80 million per pump if we had that volume we would have easily been able to break the peak on the 4th minute and go much higher the recent btc dump and altcoins going down in the recent week could explain the impact on the volume and we hope for the market to get better in the upcoming weeks to be able to reach our usual 80 million volume per pump and be able to easily break 200500 each time again we hope many of you managed to make good profits on this pump we will announce the next one soon stay tuned 2021-04-25 18:11:01+00:00 1.0 1249499797 78 the coin we have picked to pump today is idex idex is looking perfect for a pump right now our target is 500+ 2021-04-25 17:00:10+00:00 1.0 1249499797 77 2 minutes left the next message will be the coin name 2021-04-25 16:57:23+00:00 1.0 1249499797 72 2 hours left until the biggest pump signal in the history of our group 2021-04-25 14:57:28+00:00 1.0 1249499797 70 7 hours left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-25 10:00:37+00:00 1.0 1249499797 69 the day has arrived 24 hours remaining until our biggest pump signal event of all time 2021-04-24 16:58:07+00:00 1.0 1249499797 66 2 days left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-23 15:43:25+00:00 1.0 1249499797 63 3 days remaining until our big pump on binance 2021-04-22 15:11:08+00:00 1.0 1249499797 60 4 days remaining until our big pump on binance more information about our upcoming pump will follow in the next few days 2021-04-21 14:39:09+00:00 1.0 1249499797 57 6 days left until our big pump on binance 2021-04-19 13:19:34+00:00 1.0 1249499797 55 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday april 25 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 10 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-04-15 13:53:31+00:00 1.0 1249499797 39 4 hours and 10 minutes remaining until the big pump today here is everything you need to know about this pump in order to make the most profit possible we will be pumping a coin with only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin our target will be 500 profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up lastly enjoy the ride up this pump will be the biggest we have done so far be ready 2021-03-21 12:51:33+00:00 1.0 1249499797 29 pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 427 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned ➡️ join the next pump event 2021-03-10 12:53:57+00:00 1.0 1249499797 22 3 hours left until the binance pump fr2qjxz 2021-03-07 13:52:48+00:00 1.0 1122577430 8153 3 days left until the big pump on binance 2021-12-30 14:45:27+00:00 1.0 1122577430 8130 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:34+00:00 1.0 1122577430 8086 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:23+00:00 1.0 1122577430 8035 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:04+00:00 1.0 1122577430 8031 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:06+00:00 1.0 1122577430 8030 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:04+00:00 1.0 1122577430 8029 15 minutes remaining until the big pump be ready 2021-11-28 16:45:57+00:00 1.0 1122577430 8027 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:24+00:00 1.0 1122577430 8026 2 hours left until the massive pump on binance 2021-11-28 15:01:08+00:00 1.0 1122577430 8025 2 hours left until the massive pump on binance 2021-11-28 15:01:08+00:00 1.0 1122577430 8024 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:21:03+00:00 1.0 1122577430 8023 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:15+00:00 1.0 1122577430 8018 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:08+00:00 1.0 1122577430 8017 2 days remaining until the big pump on binance 2021-11-26 16:18:09+00:00 1.0 1122577430 7991 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:06+00:00 1.0 1122577430 7914 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:23+00:00 1.0 1122577430 7911 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:05+00:00 1.0 1122577430 7910 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:58+00:00 1.0 1122577430 7908 30 minutes left until the big pump on binance 2021-11-07 16:30:01+00:00 1.0 1122577430 7907 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:02+00:00 1.0 1122577430 7904 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:10:01+00:00 1.0 1122577430 7903 4 hours left until the big pump on binance 2021-11-07 13:00:30+00:00 1.0 1122577430 7902 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:05+00:00 1.0 1122577430 7900 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:03+00:00 1.0 1122577430 7894 2 days left until the big pump on binance be prepared 2021-11-05 14:30:46+00:00 1.0 1122577430 7875 4 days remaining until the big pump on binance 2021-11-03 13:56:22+00:00 1.0 1122577430 7862 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:09+00:00 1.0 1122577430 7854 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1122577430 7849 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:06+00:00 1.0 1122577430 7847 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:07+00:00 1.0 1122577430 7845 30 minutes left until the big pump 2021-10-31 16:29:26+00:00 1.0 1122577430 7844 55 minutes left until the big pump on binance 2021-10-31 16:06:17+00:00 1.0 1122577430 7843 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:46+00:00 1.0 1122577430 7837 4 hours left until the big pump on binance 2021-10-31 13:02:24+00:00 1.0 1122577430 7836 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:43+00:00 1.0 1122577430 7832 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:29+00:00 1.0 1122577430 7816 3 days left until the big pump on binance 2021-10-28 13:03:06+00:00 1.0 1122577430 7806 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:53+00:00 1.0 1122577430 7804 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:48+00:00 1.0 1122577430 7798 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:09+00:00 1.0 1122577430 7796 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:59+00:00 1.0 1122577430 7795 15 minutes left until the massive pump on binance 2021-10-24 16:45:00+00:00 1.0 1122577430 7794 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:09+00:00 1.0 1122577430 7793 2 hours left until the big pump on binance 2021-10-24 15:00:11+00:00 1.0 1122577430 7792 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:09+00:00 1.0 1122577430 7791 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:10+00:00 1.0 1122577430 7790 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:16+00:00 1.0 1122577430 7781 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:54+00:00 1.0 1122577430 7769 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:52+00:00 1.0 1122577430 7760 7 days left until the big pump on binance 2021-10-17 14:50:34+00:00 1.0 1122577430 7721 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:09+00:00 1.0 1122577430 7716 15 minutes left screens on and have btc ready 2021-10-14 14:45:24+00:00 1.0 1122577430 7714 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:06:33+00:00 1.0 1122577430 7711 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:05+00:00 1.0 1122577430 7699 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:00+00:00 1.0 1122577430 7689 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-12 13:40:09+00:00 1.0 1122577430 7688 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:42:44+00:00 1.0 1122577430 7685 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:00:06+00:00 1.0 1122577430 7683 5 minutes left the next message will be the name of the coin to buy 2021-10-10 16:54:52+00:00 1.0 1122577430 7681 30 minutes remaining until the big pump a massive pump is about to happen in only 30 minutes be prepared this is the pump you will not want to miss 2021-10-10 16:30:00+00:00 1.0 1122577430 7680 1 hour left until the big pump on binance 2021-10-10 16:00:20+00:00 1.0 1122577430 7679 the market conditions are looking perfect for a pump right now will this be the 100 million pump we all have been waiting for 2 hours remaining until the massive pump on binance 2021-10-10 15:00:05+00:00 1.0 1122577430 7678 2 hours and 40 minutes left until the big pump on binance be prepared 2021-10-10 14:19:36+00:00 1.0 1122577430 7677 3 hours and 55 minutes remaining until the big pump on binance be ready 2021-10-10 13:04:52+00:00 1.0 1122577430 7676 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-10 11:00:55+00:00 1.0 1122577430 7669 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-09 17:00:08+00:00 1.0 1122577430 7643 3 days left until the big pump on binance 2021-10-07 14:33:55+00:00 1.0 1122577430 7631 pump announcement hello everyone the next official pump will be scheduled for date sunday october 10 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-10-04 13:32:13+00:00 1.0 1122577430 7626 hello everyone we have a lot of explaining to do for what has happened today as this is the first time in the history of our organization that something of this magnitude happens as you may know we are using many advanced tools in order to spread the word about our pump all over the world in order to maximize profits for all our members and create the massive amount of volumes we are able to do unfortunately there was a small issue with our repost bot after an update that allowed some users to post willingly without our permission the good news is that we noticed a lot of our members took notice early and didnt enter the coins that were posted before our official coin in return a lot of volume has been lost and we werent able to achieve the 400 target we were aiming for this issue has now been fixed and we can guarantee it will never happen again as you may know we have managed to pump ez to 300 a few pumps ago which is the reason why we decided to pick it again we deeply apologize for this inconvenience and in return you can be assured that the next pump will be dedicated for our members and that every single person in our group will be able to make a good amount of profit to recover from todays events we will be announcing the next pump shortly stay tuned 2021-10-03 17:26:33+00:00 1.0 1122577430 7623 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-03 17:00:09+00:00 1.0 1122577430 7620 5 minutes left the real coin we are pumping will be posted in 5 minutes be ready 2021-10-03 16:54:57+00:00 1.0 1122577430 7619 8 minutes remaining until the pump we apologize for the recent posts our posting bot malfunctioned be prepared 2021-10-03 16:52:26+00:00 1.0 1122577430 7617 the coin we have picked to pump today is ilv 2021-10-03 16:50:26+00:00 1.0 1122577430 7613 12 minutes left until the pump on binance 2021-10-03 16:48:38+00:00 1.0 1122577430 7612 the coin we have picked to pump today is nxs 2021-10-03 16:47:52+00:00 1.0 1122577430 7608 30 minutes left until the big the pump on binance 2021-10-03 16:30:04+00:00 1.0 1122577430 7607 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-10-03 16:00:06+00:00 1.0 1122577430 7606 1 hour and 58 minutes left until the big pump on binance be ready 2021-10-03 15:03:07+00:00 1.0 1122577430 7603 3 hours and 50 minutes left until the big pump on binance this pump will be massive be prepared 2021-10-03 13:09:48+00:00 1.0 1122577430 7602 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-03 11:00:34+00:00 1.0 1122577430 7600 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-02 17:00:06+00:00 1.0 1122577430 7586 3 days left until the big pump on binance 2021-09-30 15:23:57+00:00 1.0 1122577430 7576 7 days left until the big pump on binance 2021-09-26 14:36:02+00:00 1.0 1122577430 7563 pump announcement hello everyone the next official pump will be scheduled for date sunday october 3 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 10 days to make sure that we are fully prepared this upcoming sunday on october 10 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 10 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned 2021-09-23 14:46:21+00:00 1.0 1122577430 7554 pump result one of the biggest volume pump we have ever done in terms of volume we have managed to generate over 65 million in volume with both btc and busd pairings combined which ranks this pump as the 2nd biggest pump we have done in the history of our organization the pump managed to stay at a peak of 100 for 4 candles in a row as well which means all members that bought within the first 3 minutes made a good amount of profit the amount of appreciation we are receiving right now is amazing and our team is happy to know that most members profited in this pump our next pump will be even bigger as we will try breaking the 100 million volume barrier that we have always been trying to achieve stay tuned for our announcement 2021-09-19 18:12:29+00:00 1.0 1122577430 7553 the coin we have picked to pump today is fxs fxs is looking perfect for a massive pump right now 2021-09-19 17:00:13+00:00 1.0 1122577430 7551 5 minutes left the next message will be the coin to buy this pump will possibly our biggest pump we have done to date 2021-09-19 16:55:11+00:00 1.0 1122577430 7548 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss 2021-09-19 16:00:09+00:00 1.0 1122577430 7547 2 hours remaining until the big pump on binance this pump will be massive be prepared 2021-09-19 15:00:10+00:00 1.0 1122577430 7546 4 hours left until the big pump on binance 2021-09-19 13:01:20+00:00 1.0 1122577430 7545 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-19 11:02:02+00:00 1.0 1122577430 7544 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-18 17:00:19+00:00 1.0 1122577430 7532 3 days left until the big pump on binance 2021-09-16 15:14:54+00:00 1.0 1122577430 7510 pump announcement hello everyone the next official pump will be scheduled for date sunday september 19 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared this upcoming sunday on september 19 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive like we did on ez as our team will use a lot of funds to boost the price up to 400 for our members stay tuned 2021-09-12 14:09:59+00:00 1.0 1122577430 7472 pump result our volume this time was big once again with around 25 million traded in the first few minutes however the pump did not go according to plan and like our previous pumps for a few reasons as you may have noticed our coins have gone unoticed before the pump the last 2 pumps in order to maximize the peak potential which has worked last week we have successfully managed to pump ez 300 and nas more than 150 with the first wave lasting a good amount of time and multiple big waves and members making massive amounts of profits this time there was activity before the announcement which is something we are trying to avoid and our team had to decide wether to postpone or do the pump we have decided to do the pump which was unfortunately not the right decision as the first candle did not manage to hold up a good amount of time we did however have a very strong second wave which peaked at 240 as our team decided to support the price back up for our members as we try to always achieve the best results and always try to provide the maximum amount of profits for our members we can guarantee that the coin will be given at the absolute bottom like ez and that our team will guarantee that we reach our 400 target by injecting a massive amount of btc after all our members on the first 2 candles during the pump stay tunned for our next official announcement 2021-09-05 17:56:11+00:00 1.0 1122577430 7467 the coin we have picked to pump today is vib vib is looking perfect for a pump right now 2021-09-05 17:00:07+00:00 1.0 1122577430 7465 5 minutes left the next message will be the coin to buy 2021-09-05 16:54:46+00:00 1.0 1122577430 7462 1 hour left until the big pump a massive pump is about to happen in only 60 minutes be prepared 2021-09-05 16:00:01+00:00 1.0 1122577430 7461 2 hours left until the big pump on binance 2021-09-05 15:00:11+00:00 1.0 1122577430 7460 4 hours remaining until the big pump on binance the market is on fire today expect a massive pump 2021-09-05 13:00:06+00:00 1.0 1122577430 7458 5 hours and 45 minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-09-05 11:15:44+00:00 1.0 1122577430 7448 the big day has arrived 24 hours remaining until the biggest and most spectacular pump signal of all time the target this time will be anywhere between 350 to 400 gains possibly even more if our volume can surpass the 70 million volume we did in the past this pump will be as big or even bigger than our previous one with the bull market being back and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous pump this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-09-04 17:00:57+00:00 1.0 1122577430 7428 2 days left until the big pump on binance be prepared 2021-09-03 14:05:11+00:00 1.0 1122577430 7400 mega pump group 280821 0707 pump announcement hello everyone the next official pump will be scheduled for date sunday september 5 time 1700 pm gmt exchange binance advantage free for all the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the success of our previous pumps and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared on september 5 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit once again we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 8 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-28 22:34:17+00:00 1.0 1122577430 7377 5 minutes left next post is us our coin date tuesday august 24 2021 today time 1500 utc in 5 mints exchange binance coin type spot btc pair 2021-08-24 14:55:03+00:00 1.0 1122577430 7376 15 minutes left have your binance account logged in and be ready to make at least a 7x profit on spot… our coin is just btc paired so have btc ready date tuesday august 24 2021 today time 1500 utc in 15 mints exchange binance coin type spot btc pair 2021-08-24 14:45:06+00:00 1.0 1122577430 7375 1 hour left be prepared you really dont want to watch this from the sidelines the coin is a btc paid only meaning it can only be purchased with btc so hurry and get that btc bag ready date tuesday august 24 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-24 14:00:02+00:00 1.0 1122577430 7373 3 hours left 3 hours left for the 700+ pump we told you about have btc in you binance account get some caffeine in your system and hold on tight… because its going to explode date tuesday august 24 2021 today time 1500 utc in 3 hours exchange binance 2021-08-24 12:00:08+00:00 1.0 1122577430 7372 5 hours left 5 hours left for the pump announcement of the year this beast is expected to make all other pumps so far bite the dust by far date tuesday august 24 2021 today time 1500 utc in 5 hours exchange binance 2021-08-24 10:00:02+00:00 1.0 1122577430 7362 24 hours left date tuesday august 24 2021 time 1500 utc exchange binance 24 hours left for our minimum 7x pump this time weve got a coin so good that after it starts moving nothing will be able to stop it it will break through every single resistance short mid and long term as it builds momentum and creates a wave of outside buyers in binance be ready for further updates and turn on your notifications date tuesday august 24 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-23 15:01:23+00:00 1.0 1122577430 7313 pump announcement date tuesday august 24 2021 time 1500 utc exchange binance you witnessed our fun pump make over 50 and our brd pump make over 110 in a matter of minutes everyone had the chance to ride this free for all wave thats why we want to congratulate you all now we dont have time to lose and profits wont wait for those getting left out of these ridiculously profitable moves… thats why were here to announce our next mega pump this one will easily make a 300 move within the first few hours and could reach 10x that in a matter of weeksmonths so be prepared youll know more about whats coming in the next few days date tuesday august 24 2021 time 1500 utc exchange binance 2021-08-18 15:59:07+00:00 1.0 1122577430 7303 15 minutes left next post is us our coin date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance 2021-08-17 14:45:03+00:00 1.0 1122577430 7300 1 hour left yes 60 minutes left for the move of the year youre either riding it or regretting it so be prepared date tuesday august 17 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-17 14:00:10+00:00 1.0 1122577430 7299 3 hours left 3 hours left for the biggest pump of the year have btc in you binance account get yourself some coffee and tighten your seatbelt… because were going for a ride date tuesday august 17 2021 today time 1500 utc in 3 hours exchange binance 2021-08-17 12:00:35+00:00 1.0 1122577430 7296 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance 24 hours left for the biggest pump of the year as you already know the pump will take place on binance just as a tip its a btc only spot no leverage pair so have btc ready on your spot binance account and be prepared for the 300+ steady pump weve been waiting for too long date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-16 15:00:03+00:00 1.0 1122577430 7282 pump announcement date tuesday august 17 2021 time 1500 utc exchange binance less then 48 hours left for the biggest pump that has ever been seen on binance be ready for further announcements and dont forget to turn on your push notifications date tuesday august 17 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-15 17:26:26+00:00 1.0 1122577430 6653 coti qtum my pump signal top gainers 2021-03-26 09:09:39+00:00 1.0 1122577430 4858 next post will be coin name in between 5 min any time coin name will be in image to avoid bots we assure you this will not be pre pump and it will be organic pump stay tuned 2020-04-20 15:55:01+00:00 1.0 1122577430 4856 around 30 mins left ”hodl event gem call” this gem call will give big potential gains in this month make sure you guys buy and hold we assure you this will not be pre pump and it will be organic pump you have to buy and hold because of coin is on bottom and will be pump huge so do not miss this chance and grab this opportunity stay tuned for more updates 2020-04-20 15:30:04+00:00 1.0 1122577430 4853 hodl event today today will be given special ta based call which is hodl based and we are expecting big profit to holding this coin be ready today around 4 pm gmt stay tuned 2020-04-20 08:44:25+00:00 1.0 1122577430 4849 hodl event dear members we decided to give you a coin tomorrow which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready tomorrow around 4 pm gmt 2020-04-18 10:14:57+00:00 1.0 1122577430 4830 so far its good almost 9 coin up from the hodl event almost generated 25 btc volume and coin was not pre pump next time will try for 50100 btc volume and coin spike up to 2040 stay tuned elfbtc is great coin do not forget if it closed above 1000 satoshi it will directly spike to 11001300 satoshi that is massive 2050 profit so dont forget about elf hold and keep it in watchlist 2020-04-10 16:17:28+00:00 1.0 1122577430 4822 coin will be posted within 35 min next post of hodl coin name make sure you guys will buy fast and hold for maximum profit 2020-04-10 15:55:46+00:00 1.0 1122577430 4818 hello guys alts started taking dips seems good time todays our hodl event gem call which is in good buying zone to be signalled the coin will not be pre pump and this mega event will be huge you have to buy and hold for maximum gain coming around in 2hrs 2020-04-10 14:09:46+00:00 1.0 1122577430 4816 hodl event dear members we decided to give you a coin today which u have to buy and hold for maximum gain we are expecting big profit from this coin we will choose gem call which will give you huge returns in this month this will be free for all and win win situation for everyone its a hodl event ta call be ready today around 4 pm gmt 2020-04-10 07:19:17+00:00 1.0 1122577430 4759 adx pump buy hold sell targets 1050|1150|1250|1350 2020-03-26 11:06:39+00:00 1.0 1122577430 4757 adx big pump buy hold 2020-03-26 10:35:30+00:00 1.0 1122577430 4694 just 02hrs left gurus call date today around 500 gmt exchange binance make sure guys buy and hold until targets we hope the market situation will be better today stay tuned 2020-03-06 15:00:03+00:00 1.0 1122577430 4693 gurus call make massive profit in short term with guru call based on strong technical analysis date today around 500 gmt exchange binance all you have to do buy and hold until targets 2020-03-06 08:35:18+00:00 1.0 1122577430 4691 gurus call make massive profit in short term with guru call based on strong technical analysis date tomorrow exchange binance 2020-03-05 09:28:38+00:00 1.0 1122577430 4574 sky this coin will pump up you hold it this is my opinion 2019-11-27 10:29:23+00:00 1.0 1122577430 4344 pump results coin was link low 15551 high 41999 welldone guys more than 25 x times we are successful community with huge fans followingalways trade with us for max profit✨✨ notewe always repump our coin 2019-09-12 17:46:35+00:00 1.0 1122577430 4290 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 15 minutes left 2019-09-05 15:45:41+00:00 1.0 1122577430 4289 do not miss to enter this mega call this will be huge and will have many waves so buy as soon as possible and wait for the moonshot 30 minutes left 2019-09-05 15:30:41+00:00 1.0 1122577430 4288 dear members just around 1 hour left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the dip call team 2019-09-05 15:07:12+00:00 1.0 1122577430 4287 dear members 5 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the dip call team 2019-09-05 11:08:50+00:00 1.0 1122577430 4271 announcement dear members the wait is over since our previous mega calls were a great success we have decided to make more mega profits for all of you this big bang call will be freeforall meaning that everyone will receive the signal at the same time big bang call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next big bang call exchange binance date 05092019 thursday time 4 pm gmt target 4070 have a great weekend and prepare yourself for upcoming big bang call nav pumped here 70 cvc pumped here 70+ data pumped here 70 vib pumped here 46+ snt pumped here 48 qsp pumped here 45+ 2019-08-30 16:11:07+00:00 1.0 1122577430 4238 viball target 6️⃣➕ hit 240 ✅profit 5200 pump coin hit 2019-08-21 18:24:35+00:00 1.0 1122577430 4112 05 minutes left the next message will be the coin name with targets❗️ 2019-07-22 15:55:03+00:00 1.0 1122577430 4101 binance upcoming dip call announcement dear members the wait is over since our previous dip calls were a great success a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip call because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time dip call means that coin tested his bottom and that its does not want to stay there in fucking dip a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 22072019 monday time 4 pm gmt target 50100 have a great weekend and prepare yourself for upcoming dip call the dip call team 2019-07-20 07:52:11+00:00 1.0 1122577430 4038 important announcement for all members we are organising today hodlcall after 4pm gmt make sure you guys will buy and hold for maximum profit keep in mind this is hodlcall means to hold coin for midterm untill our selling targets also be careful on btc when holding alts 2019-06-25 07:50:13+00:00 1.0 1122577430 4030 guys i am giving a coin name with huge potential in next 15 minutes i am very bullish on it in short term only buy it and hold it and keep shifting stoplosses up as it raises stay tuned 2019-06-23 14:45:03+00:00 1.0 1122577430 4022 guys only 05 minutes left next post will be coin name ‼️ if you guys seriously want to make some sweet btc profits you must enter the dip call early and be confident about it 2019-06-18 15:55:06+00:00 1.0 1122577430 4020 guys be ready binancedipcall is coming soon only 30 minutes left for our dip call 2019-06-18 15:30:06+00:00 1.0 1122577430 4016 binance upcoming dip call update dear members the wait is over since our previous dip calls was a great succes a lot of people have been requesting a dip call after a long discussion with the dip call team we decided to do organising our next dip because this was highly requested this dip call will be freeforall meaning that everyone will receive the signal at the same time a sweet coin we can pick from the bottom and pump to the heavens details for the next dip call exchange binance date 18062019 tuesday time 4 pm gmt target 50100 have a great day the dip call team 2019-06-16 17:29:04+00:00 1.0 1122577430 3879 15 min left next post coin name ‼️ if you want to make some sweet btc profits you must enter the dip call early and be confident 2019-05-16 16:45:08+00:00 1.0 1122577430 3871 binance dip call update guys the wait is over on 16th may at 4 pm gmt we are organising our next binance dip call our previous binancedipsignal results 1st dlt around 95 2nd lets join and lead the global fomo again 2019-05-15 16:21:28+00:00 1.0 1122577430 3853 15 minutes left login on binance now have everything ready team the trick to make some amazing profits is to be focused and early coin already in bottom the next message will be the coin❗️ 2019-05-05 15:45:06+00:00 1.0 1122577430 3842 15 mins left first coin of may month be ready with your btc next post coin name 2019-05-03 17:46:21+00:00 1.0 1122577430 3840 first coin of may month coin name will be posted today before 06 pm gmt be ready with your btc 2019-05-03 13:54:11+00:00 1.0 1122577430 3839 first coin of may month coin name will be posted tomorrow before 06 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-05-02 16:52:55+00:00 1.0 1122577430 3825 next post coin name 2019-04-22 17:28:23+00:00 1.0 1122577430 3824 10 minutes left team be ready for the dip mega call 2019-04-22 17:19:44+00:00 1.0 1122577430 3822 15 minutes left team be ready for the dip mega call 2019-04-22 16:45:03+00:00 1.0 1122577430 3821 just 01 hour left dip call today at 500 pm gmt remember it will be a dip call so quick profit expected be ready guys 2019-04-22 16:00:05+00:00 1.0 1122577430 3768 less than 10 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-04-01 16:54:12+00:00 1.0 1122577430 3766 guys less than 01 hour left today 5 pm gmt coin of april month be ready and move your funds on binance 2019-04-01 16:11:57+00:00 1.0 1122577430 3765 few hours left thats it team were ready prepared for this giant that is coming this coin of month signal is going to be epic because its a damn great gem just waiting for some steam to breakout 2019-04-01 14:15:55+00:00 1.0 1122577430 3751 big pump coin now dip pivx isnt he going to come o time watch 2019-03-28 18:33:11+00:00 1.0 1122577430 3740 final 5 minutes left will announce a strong mega signal 2019-03-27 15:56:31+00:00 1.0 1122577430 3738 did you miss oax evx eng dont worry we are going to tell you a premium mega coin at 4 pm gmt which target is 2x those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 2019-03-27 13:33:24+00:00 1.0 1122577430 3647 attention guys be ready for highly profitable signal potenial coin with big upcoiming news hold for maximum profit multiply your btc with us next post will be coin name 2019-03-15 09:28:28+00:00 1.0 1122577430 3617 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:45:12+00:00 1.0 1122577430 3616 coin of month march 30 minutes left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 15:31:43+00:00 1.0 1122577430 3615 one more coin month march coin name will be posted today before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-08 13:27:49+00:00 1.0 1122577430 3608 one more coin month march coin name will be posted tomorrow before 04 pm gmt make sure you guys will buy and hold for maximum profit be ready with your btc 2019-03-07 17:39:51+00:00 1.0 1122577430 3573 ◽️ announcement ◽️ pumpsignal event date 2 march time 2 pm gmt time exchange binance rules buy and hold for maximum profit ‼️ ◽️ announcement ◽️ 2019-03-01 09:18:46+00:00 1.0 1122577430 3565 coin of month march next post coin name 15 mins left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 17:45:06+00:00 1.0 1122577430 3564 coin of month march less than 130hrs left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 16:43:22+00:00 1.0 1122577430 3563 coin of month march less than 330hrs left make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 14:31:13+00:00 1.0 1122577430 3560 coin of month march coin name will be posted today before 06 pm gmt rdn was feb month posted on 31stjan gave upto 60 profit make sure you guys will buy and hold for maximum profit be ready with your btc 2019-02-28 09:00:13+00:00 1.0 1122577430 3492 hey folks❗️❗️ important announcement tomorrow 10th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-09 17:29:00+00:00 1.0 1122577430 3489 sub looks good for pump buy and hold for maximum profits 2019-02-08 16:55:11+00:00 1.0 1122577430 3486 alright guys only 30 minutes left for binancespecialcall coin is at rock bottom make sure you guys will fast and hold for the maximum profits be ready guys 2019-02-08 16:00:11+00:00 1.0 1122577430 3485 guys today we are organising a special call on binance exchange today we are expecting good gain we will give you coin at 430 pm gmt less than 2 hours left so make sure you will buy fast and hold for maximum profits be ready with your btc on binance 2019-02-08 14:31:21+00:00 1.0 1122577430 3483 important announcement guys as market is in uptrend we are going to share special call today at 430 pm gmt undervalued solid gem which can give you 30 to 100 profit log in your binance account and be ready at 430pm gmt exchange binance time 430 pm gmt 1000 pm ist stay tuned 2019-02-08 09:19:55+00:00 1.0 1122577430 3473 less than 10 mins left next post coin name make sure you guys will buy fast and hold for maximum profit 2019-02-04 15:51:57+00:00 1.0 1122577430 3468 hey folks❗️❗️ important announcement tomorrow 4th feb at 400 pm gmt we are organising a special signal called binance bang bang signal the binance bang bang signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 2035 profit areas dont sell quick hold for some hrs be ready with your btc 2019-02-03 17:06:03+00:00 1.0 1122577430 3443 next post coin name we recommend all you need to do is buy and hold for upto 3050 profit 2019-01-27 14:28:15+00:00 1.0 1122577430 3355 guys less than 1 hour left be ready with your btc on binance we will share a huge potential coin for short term profit staytuned 2019-01-13 12:45:52+00:00 1.0 1122577430 3353 hey guys pay attention we are going to share a short term call here on binance exchange that call will come here at 145 pm gmt 715 pm ist you can buy that particular coin and hold for targets to get achieved remember that short term call not a pump so it can blast anytime we have analyzed throughly based on technical analysis so make sure you will buy fast and hold for maximum profit sit back and relax we are coming at 145 pm gmt 715 pm ist 2019-01-13 05:49:13+00:00 1.0 1122577430 3318 less than 15 min left of signal of the week be ready with your btc on binance next message will the coin name remember it will the special gem of the week so you need to buy and hold till target achieve 2019-01-03 15:29:54+00:00 1.0 1122577430 3317 ❗️guyz as market is in uptrend we are going to share our big call today at 345pm gmt undervalued solid gem which can give you 30 to 50 profit hodl requirement log in your binance account and be ready at 345pm gmt exchange binance time 345 pm gmt 915 pm ist stay tuned 2019-01-03 10:23:31+00:00 1.0 1122577430 3311 best signal of the week the coin is brd target 1 6350 target 2 6650 target 3 7200++ buy and hold tight till target achieve 2019-01-02 15:45:20+00:00 1.0 1122577430 3310 less than 15 min left of signal of the week be ready with you btc on binance next message will the coin name remember it will the best signal of the week so you need to buy and hold till target achieve 2019-01-02 15:31:18+00:00 1.0 1122577430 3309 hey guys pay attention today our team will give you best signal of the week the coin will be announced here at 345pm gmt remember that best signal of the week so it can blast anytime we have analyzed throughly based on technical analysis so make you sure you will buy fast and hold it for maximum profit stay tuned we will share call here at 345pm gmt 2019-01-02 13:43:35+00:00 1.0 1122577430 3279 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 12:26:26+00:00 1.0 1122577430 3274 binance mega signal event on today guys less than 5 hours left be ready with your btc on binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-30 07:29:57+00:00 1.0 1122577430 3266 binance mega signal event on date 30thdecember exact time 1230 pm gmt participants upto 500k telegram users exchange binance we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-29 13:20:10+00:00 1.0 1122577430 3253 binance mega signal next post coin name exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 12:27:52+00:00 1.0 1122577430 3252 binance mega signal today ℹ️ 10 minutes left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 12:20:19+00:00 1.0 1122577430 3251 binance mega signal today ℹ️ 01 hour left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 11:29:59+00:00 1.0 1122577430 3250 binance mega signal today ℹ️ 04 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit cant wait much excited keep your funds ready in your binance accounts stay tuned 2018-12-27 08:43:36+00:00 1.0 1122577430 3249 binance mega signal today ℹ️ 530 hours left ℹ️ exact time 1230 pm gmt exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-27 07:03:20+00:00 1.0 1122577430 3248 binance mega signal event on date 27thdecember exact time 1230 pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 3050 profit 2018-12-26 15:49:11+00:00 1.0 1122577430 3197 pump results x2 coin was eqt started 00000616 reached 000001400 great job guys note we always repump our coins 2018-12-09 19:43:16+00:00 1.0 1122577430 3192 the coin to pump is eqt exchange yobitnet target +300 market eqtbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-09 19:00:15+00:00 1.0 1122577430 3190 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-09 18:55:04+00:00 1.0 1122577430 3181 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 7 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09122018 sunday time 7 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-12-09 11:52:43+00:00 1.0 1122577430 3176 pump results x2 coin was plr started 000001270 reached 000002500 great job guys 2018-12-07 20:04:19+00:00 1.0 1122577430 3170 the coin to pump is plr exchange yobitnet target +300 market plrbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-07 19:00:22+00:00 1.0 1122577430 3168 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-07 18:55:10+00:00 1.0 1122577430 3159 ℹ coin signal information ℹ date friday 07122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt 8 hrs remaining for mega signal ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-07 11:00:21+00:00 1.0 1122577430 3158 ℹ️ 10 hours until the coin to buy is released ℹ️ exchange yobitnet time 7 pm gmt read the instructions above and be ready 2018-12-07 09:01:01+00:00 1.0 1122577430 3151 pump results 300 gain coin was xptx open 000002144 reached 000006450 buy order for long timen still exists greenery in xptx noteyou did great job guyz we always repump our coin so hold if u buy high 2018-12-05 19:44:46+00:00 1.0 1122577430 3148 the coin to pump is xptx exchange yobitnet target +300 market xptxbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-05 19:00:21+00:00 1.0 1122577430 3146 ℹ️ 5 minutes ℹ️ the next post will be the coin to buy on yobit 2018-12-05 18:55:10+00:00 1.0 1122577430 3135 ℹ coin signal information ℹ date wednesday 05122018 hour 1900 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 7 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 7 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-05 06:30:11+00:00 1.0 1122577430 3073 binance pump signal event on date 20november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit 2018-11-18 19:37:26+00:00 1.0 1122577430 3054 binance pump signal event on date 15november exact time 4pm gmt participants upto 100k telegram users exchange binance note we recommend all you need to do is buy and hold for upto 50 profit our join channel link to add your friends 2018-11-13 08:08:50+00:00 1.0 1254489313 5374 ⚡️⚡️oaxbtc ⚡️⚡️ technically also this coin looks really great • also a coin which is always in eyes of whales strong support zone now available in dip demand zone and we are expecting another move up from here charts looks super bullish for itlooks like ready for a massive move worth buy for profits in short term this coin always move faster so have the position before it will pump hard 2021-11-30 10:38:10+00:00 1.0 1254489313 5347 ⚡️⚡️astusdt⚡️⚡️ buy it will big pump soon whales big pump coming ┌ astbtc ✳️ buying volume ├ 24473 ƀ volume in 25s ┊├ buy 78 19193 ƀ ┊└ sell 22 05281 ƀ 2021-11-22 12:18:41+00:00 1.0 1254489313 5255 pivx chart is very bullish right now im preparing chart and send in 1 minutes meanwhile buy pivx before it pump really hard 2021-10-24 16:03:02+00:00 1.0 1254489313 5249 next post will be pump coin name 2021-10-24 15:56:14+00:00 1.0 1254489313 5248 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 23 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 15:38:22+00:00 1.0 1254489313 5247 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership regards 2021-10-24 15:00:51+00:00 1.0 1254489313 5246 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership pinourchannelontop 2021-10-24 12:58:36+00:00 1.0 1254489313 5245 attention guys 5 hours biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 10:54:23+00:00 1.0 1254489313 5244 attention guys 11 hours 30 mint left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date sunday october 24 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-24 04:35:52+00:00 1.0 1254489313 5229 2 days left until the biggest pump event of all time be prepared • date sunday october 24 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-10-22 15:13:09+00:00 1.0 1254489313 5209 attention guys we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 24 october 2021 time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-10-21 07:18:19+00:00 1.0 1254489313 5034 ⚡️⚡️ cotiusdt ⚡️⚡️ coti just breaking out of the falling wedge pattern looks very bullish here like our previous signals we are expecting this coin to pump very hard 2021-10-05 04:40:01+00:00 1.0 1254489313 4962 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-10-02 13:14:09+00:00 1.0 1254489313 4727 wait a few hours again for the pump coin 2021-09-06 10:00:19+00:00 1.0 1254489313 4619 i will give you coin pump in 10 mins it will pump hard stay tuned 2021-08-28 06:21:06+00:00 1.0 1254489313 4470 special attention you have 25 minutes to buy from the time i submit the coin name before our team pumps it buy and hold dont put sell wall and dont sell early dont panic anytime 25 mins left there we go 2021-08-21 16:05:06+00:00 1.0 1254489313 4453 announcement members we will provide you the strong tafa based future signal with in 5 minutes transfer your fundsusdt and be ready 2021-08-21 13:56:17+00:00 1.0 1254489313 4451 vetbtc weekly update buy signal gajab looks weekly time frame on vet beautiful falling wedge on vet breakout + nicely retest done on weekly demend area low risk and high reword now moon time price getting ready towards my target 390 sats now it is ready to pump buy hold a bag of it • should pump soon pinnedourchannelontopforgreatprofit staytuned 2021-08-21 13:48:42+00:00 1.0 1254489313 4415 announcement members we will provide you the strong tafa based future signal with in 5 minutes transfer your fundsusdt and be ready 2021-08-16 14:00:39+00:00 1.0 1254489313 4381 announcement members we will provide you the strong tafa based future signal with in 20 minutes transfer your fundsusdt and be ready 2021-08-06 14:10:39+00:00 1.0 1254489313 4367 announcement members we will provide you the strong tafa based future signal with in 30 45 minutes transfer your fundsusdt and be ready 2021-08-05 15:06:49+00:00 1.0 1254489313 4305 iotausdt 30 m update buy signal looks great on iota chart 30m tf falling wedge printeding on iota breakout + nicely retest done low risk and high reword now moon time • now it is ready to pump • buy hold a bag of it • should hard pump soon 2021-07-29 16:24:46+00:00 1.0 1254489313 4303 iotausdt 30 m update buy signal looks great on iota chart 30m tf falling wedge printeding on iota breakout + nicely retest done low risk and high reword now moon time • now it is ready to pump • buy hold a bag of it • should hard pump soon 2021-07-29 16:24:17+00:00 1.0 1254489313 4250 5 minutes left for the titanic pump call on binance pinourchannelontop staytuned 2021-07-25 15:43:39+00:00 1.0 1254489313 4248 4 hours 30 minutes remaining until the big pump on binance 2021-07-25 11:30:21+00:00 1.0 1254489313 4246 the day has arrived 12 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 300 target this time possibly even higher if we can manage to do 40 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready 2021-07-25 04:01:17+00:00 1.0 1254489313 4232 we found a good coin to buy and hold we will send in next 10 minutes stay tuned 2021-07-24 13:50:05+00:00 1.0 1254489313 4196 pump announcement hello everyone the next official pump will be scheduled for date sunday july 25 time 400 gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-07-22 17:31:21+00:00 1.0 1254489313 4154 buy dip and dont sell early target 100200 whales starting pump now 2021-07-11 16:03:09+00:00 1.0 1254489313 4147 30 minutes remaining until the big pump on binance 2021-07-11 15:30:04+00:00 1.0 1254489313 4144 only 3 hours left for our special signals special signal event is expected to go 200400 sell your alts be ready with spare usdt special mega pump signal coin name will be received 2 minutes ago on vip channel for vip membership pinourchannelontop 2021-07-11 13:00:20+00:00 1.0 1254489313 4143 attention guys 7hours left biggest special pump signal is coming today we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-11 09:00:03+00:00 1.0 1254489313 4141 attention guys 21 hours 30 minutes left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-10 18:28:30+00:00 1.0 1254489313 4138 attention guys 45 hours 15 minutes left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th july time 4 pm gmt special mega pump signal coin name will be received 2 minutes ago on vip channel 2021-07-09 18:14:45+00:00 1.0 1254489313 4136 3 days left until the biggest pump signal of all time on binance in a few days we will be posting more information in order to be prepared for the pump 2021-07-08 16:32:13+00:00 1.0 1254489313 4118 special pump announcement special mega signals ⛅️ we have special futures signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday july 11th • goal 500800 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 1 minutes ago on vip channel 2021-07-06 17:44:38+00:00 1.0 1254489313 3880 ⚡️⚡️ theta ⚡️⚡️ theta just breaking out of the falling wedge pattern looks very bullish here like our previous signals we are expecting this coin to pump very hard 2021-06-20 20:22:51+00:00 1.0 1254489313 3712 next post will be pump coin name 2021-05-30 15:57:07+00:00 1.0 1254489313 3711 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop 2021-05-30 13:03:31+00:00 1.0 1254489313 3706 attention guys 23 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 30th may time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-29 17:21:29+00:00 1.0 1254489313 3704 pump announcement hello everyone the next official pump will be scheduled for date sunday may 30 time 1600 pm gmt exchange binance advantage special mega pump signal coin name will be received 5 minutes ago on vip channel with our volumes averaging 100200 btc per pump and peaks reaching up to 100200 we are ready to announce our next big pump we have 2 days to prepare for this pump as mentioned above we will be targeting at the very least 100200+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching stay tuned 2021-05-28 05:44:00+00:00 1.0 1254489313 3657 attention guys 315 hours left we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-23 12:48:10+00:00 1.0 1254489313 3655 attention guys 9 hours left we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-23 08:00:02+00:00 1.0 1254489313 3652 attention guys 24 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than 200000+ participants get yourself ready for this exchange binance date 23th may april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-22 16:00:20+00:00 1.0 1254489313 3647 special pump announcement special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday may 23th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-05-21 17:02:19+00:00 1.0 1254489313 3558 dlt chart is very bullish right now im preparing chart and send in 1 minutes meanwhile buy dlt before it pump really hard 2021-05-03 16:01:50+00:00 1.0 1254489313 3555 next post will be pump coin name 2021-05-03 15:54:35+00:00 1.0 1254489313 3554 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-03 15:31:56+00:00 1.0 1254489313 3553 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership regards 2021-05-03 15:01:08+00:00 1.0 1254489313 3552 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership pinourchannelontop 2021-05-03 13:01:55+00:00 1.0 1254489313 3551 hey guys stay alert less than 6 hours left for special pump remember special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal sell your alts be ready with spare btc for quick profit on mega pump signal the fomo is getting warm in alt market 4 pm gmt 2021-05-03 10:01:15+00:00 1.0 1254489313 3550 ‍♀ attached guys ‍♂ 10 hours left until our mega signal special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-03 06:00:04+00:00 1.0 1254489313 3547 ‍♀ attached guys ‍♂ 24 hours left until our mega signal special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-02 16:03:28+00:00 1.0 1254489313 3541 special pump announcement special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date monday may 3th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-05-01 14:53:35+00:00 1.0 1254489313 3530 exchange binance spot pivx update buy signal 4hours x 2 days time frame update pivx chart is super bullish now • bullish pennant on 12 hours timeframe • breaking out of the pennant resistance • we like pivx on all lovely traders also fomo pump coming soon price holding above ema ribbon support as well • 2 days time frame update pivx has broken the down trend resistance and started an uptrend as shown in chart on 4 he time pivx always bouncing after touching uptrend channel line as shown in chart now pivx is touching uptrend channel line again and it will pump hard this time with the help of our team buy pivx while my team is preparing pivx pump 2021-04-30 16:00:38+00:00 1.0 1254489313 3528 15 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit next post will be strong ta call 2021-04-30 15:45:10+00:00 1.0 1254489313 3527 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays breakout coin the coin name will come as an image and text special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 15:30:03+00:00 1.0 1254489313 3526 1 hour left until the strong ta call todays strong ta call will be biggest till date this means that the coin signal will be at the exact same time for everyone expected spike 6080 note coin will be posted in picture to avoid bots special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 15:00:58+00:00 1.0 1254489313 3525 only 2 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership pinourchannelontop 2021-04-30 14:01:52+00:00 1.0 1254489313 3523 our whales will push a strong ta based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 3 hours left until strong ta signal ‼️ special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 13:00:31+00:00 1.0 1254489313 3522 hey guys stay alert less than 6 hours left for special pump remember special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal sell your alts be ready with spare btc for quick profit on mega pump signal the fomo is getting warm in alt market 4 pm gmt 2021-04-30 09:59:10+00:00 1.0 1254489313 3519 hey guys only about 12 hours left hope u ready for this massive special pump event get your binance accounts ready with spare btc this special pump signal will also be promoted in twitter date 30th april time 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-30 03:59:20+00:00 1.0 1254489313 3516 attention guys 24 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 30th april time 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel 2021-04-29 16:12:29+00:00 1.0 1254489313 3506 2 days left until the biggest pump event of all time be prepared • date friday april 30 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 10 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-04-28 16:01:13+00:00 1.0 1254489313 3503 hey guys we are excited to announce that we are bringing a different type of signal called as special beast alt this special beast signal will be posted here on this coming friday april 30th expected target 100200 this one will be best of these above wait for monday exchange binance special beast alt 30th april | 4 pm gmt special mega pump signal coin name will be received 10 minutes ago on vip channel pinnedourchannelontop stayturned 2021-04-27 13:22:12+00:00 1.0 1254489313 3462 exchange binance spot navbtc daily update buy signal technically also this coin looks really great • also a coin which is always in eyes of whales • 8hr looks extremely bullish • nav is available at its strong support at moment and also showing a nice reaction • price holding above all ema support as well on 4hr charts • we can see a good growth from it here in short term buy zones are entry 1 1250 entry 2 1150 always buy coins in parts to average out your buy price take profits zones are as follows tp1 1380 tp2 1500 tp3 1750 tp3 1980 ⭕ stoploss is below 1050 put only 10 of your portfolio in this trade close you may keep closing 25 of your open positions at each target you may move position stoploss to trade entry price once target 1 is done and may move position stop loss to target 1 once target 2 is done keep moving stoploss accordingly nav ta vipsignals 2021-04-21 02:02:33+00:00 1.0 1254489313 3426 todays pump has been removed because before our pump the coin has been pumped that is why the pump has been removed new pump announcement soon remained as it is 2021-04-11 16:13:53+00:00 1.0 1254489313 3425 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ sell your alts be ready with spare btc for quick profit on mega pump signal only 15 minutes are left for pump next post will be coin name with link pinnedourchannelontop staytuned 2021-04-11 15:45:39+00:00 1.0 1254489313 3424 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 1 hour is left its time to make heavy profits special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership regards vipsignalsteam 2021-04-11 15:01:32+00:00 1.0 1254489313 3423 only 3 hours left for our special signals special signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop 2021-04-11 13:00:44+00:00 1.0 1254489313 3422 hey guys only about 12 hours left hope u ready for this massive special pump event get your binance accounts ready with spare btc this special pump signal will also be promoted in twitter date 11th april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-11 04:00:12+00:00 1.0 1254489313 3419 attention guys 24 hours left biggest special pump signal is coming tomorrow we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-10 16:04:47+00:00 1.0 1254489313 3414 attention guys biggest special pump signal is coming at 11th april we are going to see the biggest special ever with more than +300k participants get yourself ready for this exchange binance date 11th april time 4 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-09 14:41:41+00:00 1.0 1254489313 3362 special pump signal is ctxc cortex 2021-04-04 16:00:52+00:00 1.0 1254489313 3361 final 10 minutes left next post will be coin name with link pinnedourchannelontop staytuned 2021-04-04 15:50:29+00:00 1.0 1254489313 3360 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ sell your alts be ready with spare btc for quick profit on mega pump signal only 30 minutes are left for pump 2021-04-04 15:31:43+00:00 1.0 1254489313 3359 alright guys brace your seatbelt just one hours left for the rocket that will depart for the moon are you ready you better be binance special mega pump only 1 hours left special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-04-04 15:00:30+00:00 1.0 1254489313 3358 attention only about 2 hours left special pump is going to get insanely fomo you guys can hype the coin in twitter also to bring more fomo be ready guys with spare btc exchange binance 2 hrs remaining special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-04 13:59:54+00:00 1.0 1254489313 3357 hey guys stay alert less than 4 hours left for special pump remember special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal sell your alts be ready with spare btc for quick profit on mega pump signal the fomo is getting warm in alt market 4 pm gmt 2021-04-04 12:00:49+00:00 1.0 1254489313 3352 ‍♀ attached guys ‍♂ 24 hours left until our mega signal ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday april 4th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-03 16:00:01+00:00 1.0 1254489313 3343 ‍♀ attached guys ‍♂ 2 days left for special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday april 4th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-02 14:50:20+00:00 1.0 1254489313 3331 special pump announcement special mega signals ⛅️ we have special altcoin signals ⛅️ ⛈ just to let you know about it ⛈ will give you more details soon • remember to transfer funds to binance and pinunmute our channel ‍‍ participants people 200000+ • date sunday april 4th • goal 100200 • time 4 00 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-04-01 14:27:52+00:00 1.0 1254489313 3282 exchange binance spot lrcbtc daily update buy signal lrc looks good at daily chart the alts are going crazy as the altszn looking to be round the corner • big printed falling wedge on lrc • breaking out soon on higher timeframe for now testing strong support im expecting continuation from here toward moonshot • lrc team is very active and continuously working on the project • only low cap which havent pumped much from bottom expacting huge rally from lrc in short term ‼️ • imo it can go for 23x moon ride anytime • buying the dip opportunity here • buy live prices • take profits zones are as follows tp1 1800 tp2 2700 2021-03-28 16:01:45+00:00 1.0 1254489313 3279 only 15 minutes left log in your binance account be ready with spare btc or usdt for biggestpump next post will be pump coin name ❤️ be very ready guys 2021-03-28 15:44:49+00:00 1.0 1254489313 3278 alright guys brace your seatbelt just few hours left for the rocket that will depart for the moon were expecting at least 1000 btc in volume are you ready you better be binancevolcano eruption signal only 1 hours left special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-28 15:00:20+00:00 1.0 1254489313 3277 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 2 hour is left its time to make heavy profits special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership regards vipsignalsteam 2021-03-28 13:59:36+00:00 1.0 1254489313 3273 only 3 hours left for our special signals historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-28 13:00:48+00:00 1.0 1254489313 3272 only 10 hours left for our special signals historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-28 06:01:33+00:00 1.0 1254489313 3268 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 28032021 time 4 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-27 16:00:00+00:00 1.0 1254489313 3265 special mega pump less than 34 hours 30 minutes left 28th march at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-27 05:36:02+00:00 1.0 1254489313 3261 special mega pump less than 48 hours left 28th march at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-26 16:05:38+00:00 1.0 1254489313 3260 2 days left until the biggest pump event of all time be prepared • date sunday march 28 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-03-26 06:43:51+00:00 1.0 1254489313 3257 pump announcement hello everyone the next official pump will be scheduled for • date sunday march 28 • time 4 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-03-25 18:41:16+00:00 1.0 1254489313 3244 all shit coin today yoyo cnd pumped next big pump poa dont miss 2021-03-24 08:15:22+00:00 1.0 1254489313 3233 exchange binance spot pivxbtc 4hr tf update buy signal pivx looks good at 4hr chart the alts are going crazy as the altszn looking to be round the corner buying the dip opportunity here • bullish pennant printed on pivx • nice retested on resistance • 4hr macd also showing buying volume coming in • trade for very low risk • buy a bag and hold buy zones are entry 1 2130 entry 2 2050 always buy coins in parts to average out your buy price take profits zones are as follows tp1 2300 tp2 2480 tp3 2680 tp4 2800 ⭕ stoploss is below 1980 not recommended to invest more than 57 of your portfolio follow risk management pivx ta vipsignals 2021-03-22 09:25:24+00:00 1.0 1254489313 3230 final 10 minutes left next post will be coin name with link please not recommended to invest more than 57 of your portfolio pinnedourchannelontop staytuned 2021-03-21 16:49:35+00:00 1.0 1254489313 3229 1 hours left things are looking great the market is currently amazing and we are confident that we will be able to surpass our 200+ target reminder that we will be pumping a coin that only btc pairing on binancecom meaning that you need to have btc in your account to buy the coin be prepared special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread ‼️ pinnedourchannelontop staytuned 2021-03-21 15:59:08+00:00 1.0 1254489313 3228 only 3 hours left for our special signals historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop stayturn 2021-03-21 13:57:55+00:00 1.0 1254489313 3226 only 6 hours left for our special signals historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop stayturn 2021-03-21 10:59:43+00:00 1.0 1254489313 3221 hey guys stay alert less than 18 hours left remember special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 5 pm gmt 2021-03-20 23:01:13+00:00 1.0 1254489313 3217 attention 30 hours 30 minutes left biggest mega pump signal is coming we are going to see the biggest mountain pump ever with more 502k participants get yourself ready for this exchange binance 21th march 5 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinnedourchannelontop staytuned 2021-03-20 10:30:35+00:00 1.0 1254489313 3212 exchange binance futures litusdt 4hr tf update buy signal short term looking very good • 4h chart looks extremely bullish • ascending channel on lit • nicely retest on resistance • now it is ready to pump • long it hold a bag of it • should pump soon buy zones are entry 1 1198 entry 2 1162 always buy coins in parts to average out your buy price leverage 5x leverage tp1 1248 tp2 1350 tp3 1460 ⭕ stoploss is below 11 not recommended to invest more than 12 of your portfolio follow risk management lit ta vipsignals 2021-03-20 07:14:44+00:00 1.0 1254489313 3211 attention 35 hours 30 minutes left biggest mega pump signal is coming we are going to see the biggest mountain pump ever with more 502k participants get yourself ready for this exchange binance 21th march 5 pm gmt special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinnedourchannelontop staytuned 2021-03-20 05:26:30+00:00 1.0 1254489313 3207 48 hours left for pump • date sunday march 21 • time 5 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-03-19 16:58:25+00:00 1.0 1254489313 3201 pump announcement hello everyone the next official pump will be scheduled for • date sunday march 21 • time 5 pm gmt • exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread pinnedourchannelontop staytuned 2021-03-19 13:07:41+00:00 1.0 1254489313 3171 cndbtc cdt pump next pump cnd whales pump coming hold it for big profit binance btc market binance btc market cnd unusual buying activity 237 btc in 5 minutes 11 2021-03-16 11:17:35+00:00 1.0 1254489313 3164 exchange binance spot cndbtc daily chart update buy signal technically also this coin looks really great • all low sats pumping hard • alt season on point • keep an eye on all the low satoshi coins • you should buy a bag here and just hold it for short term buy zones are entry 1 50 entry 2 47 always buy coins in parts to average out your buy price take profits zones are as follows tp1 60 tp2 67 tp3 72 tp4 80 ⭕ i will update later stoploss not recommended to invest more than 57 of your portfolio follow risk management cnd ta vipsignals 2021-03-15 10:35:38+00:00 1.0 1254489313 3147 viabtc daily chart update buy signal viabtc bullish analysis chart according to chart we can see looking very bullish at this time • this green zone having very strong reversal support • price holding above 150 ma support as well on daily charts • daily macd is showing much bullishness • main resistance is 1450 satoshi • if this resistance breakout upward side then we can see next big move upward side • strong support1300 satoshi • i can expect 2 big bullish targets • buy market price take profits zones are as follows tp1 2500 satoshi tp2 3200 satoshi via ta vipsignalsteam 2021-03-13 17:01:20+00:00 1.0 1254489313 3145 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2021-03-13 16:59:54+00:00 1.0 1254489313 3144 final 10 minutes left next post will be coin name with link pinnedourchannelontop staytuned 2021-03-13 16:50:25+00:00 1.0 1254489313 3143 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ sell your alts be ready with spare btc for quick profit on mega pump signal only 30 minutes are left for pump 2021-03-13 16:28:24+00:00 1.0 1254489313 3141 be ready guys just 1 hour is left its time to make heavy profits do you know about the pump ✅ the pump for all dear members the coin will be shared based on technical analysis ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread ‼️ pinnedourchannelontop staytuned 2021-03-13 15:58:40+00:00 1.0 1254489313 3140 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 4 hour is left its time to make heavy profits special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership regards vipsignalsteam 2021-03-13 13:00:06+00:00 1.0 1254489313 3137 only 6 hours 30 minutes left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-13 10:30:18+00:00 1.0 1254489313 3136 only 12 hours left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-13 05:01:01+00:00 1.0 1254489313 3134 hey guys stay alert less than 14 hours left remember special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 5 pm gmt 2021-03-13 03:10:12+00:00 1.0 1254489313 3131 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 13032021 time 5 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-12 17:02:19+00:00 1.0 1254489313 3115 dear members 36 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 13032021 time 5 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-12 05:08:25+00:00 1.0 1254489313 3110 reef buy it will pump soon whales pump coming binance btc market reef unusual buying activity 2409 btc in 9 minutes 11 wah 2021-03-11 17:42:06+00:00 1.0 1254489313 3105 pump announcement hello everyone the next official pump will be scheduled for date saturday march 13 time 5 pm gmt exchange binance next pump will be help on saturday and the big news is that it will be a ranked pump where vip members will get 5 minute early access to pump coin be ready with your btc on binance and lets make this pump huge 2021-03-11 15:42:58+00:00 1.0 1254489313 3101 exchange binance spot reefbtc 4hr update buy signal technically also this coin looks really great • all low sats pumping hard • alt season on point • keep an eye on all the low satoshi coins local trendline is supporting the price nicely and it jumps off everytime from there so it can go for its next strong upward wave very soon risk level is also low you should buy a bag here and just hold it for short term buy zones are entry 1 65 entry 2 61 always buy coins in parts to average out your buy price take profits zones are as follows tp1 71 tp2 77 tp3 82 tp4 90 ⭕ stoploss is below 57 not recommended to invest more than 57 of your portfolio follow risk management reef ta vipsignals pinnedourchannelontop 2021-03-11 04:32:15+00:00 1.0 1254489313 3060 bts daily update buy signal looks great on bts chart 4hr tf • bts clear breakout • bts is breaking out the pennant on daily pattern and very bullish • bts will launch the dex before q1 and this is a big news • this is a big news and will send the coin to the moon • if you missed audio pump you can buy bts take profits zones are as follows tp1 218 satoshi tp2 350 satoshi bts ta vipsignalsteam 2021-03-07 16:05:28+00:00 1.0 1254489313 3058 bts buy it will pump soon whales pump coming ┌bts buying activity ├456 btc traded in 15 min 149 ├14 times the average volume ├net 15m volume +350 btc ❇️ ├boost score 310 ├24h vol 3070 btc └last price 000000110 binance 2021-03-07 16:03:14+00:00 1.0 1254489313 3055 final 10 minutes left next post will be coin name with link pinnedourchannelontop staytuned 2021-03-07 15:49:42+00:00 1.0 1254489313 3054 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ sell your alts be ready with spare btc for quick profit on mega pump signal only 30 minutes are left for todays 23x breakout coin 2021-03-07 15:28:56+00:00 1.0 1254489313 3053 be ready guys just 1 hour is left its time to make heavy profits do you know about the pump ✅ the pump for all dear members the coin will be shared based on technical analysis ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership share it with your friends other crypto groups let the hype spread ‼️ pinnedourchannelontop staytuned 2021-03-07 14:58:58+00:00 1.0 1254489313 3052 few things about historic signal event 1 you need to buy early asap 2 you need to hodl that coin for like at least 23 hrs to gain most profits 3 toady this coin will go beyond 100200 very likely expected just hodl this coin if you dont hold then you will be regretting later on when you see the coin is pumping hard expected target minimum 100200 bcoz hodlers are the ones who win this crypto game always be ready guys just 2 hour is left its time to make heavy profits special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership regards vipsignalsteam 2021-03-07 13:59:48+00:00 1.0 1254489313 3051 only 4 hours left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-07 11:57:40+00:00 1.0 1254489313 3050 only 9 hours left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership pinourchannelontop regards 2021-03-07 06:59:53+00:00 1.0 1254489313 3047 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 07032021 time 4 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership stay tuned mega pump signal is coming 2021-03-06 15:59:23+00:00 1.0 1254489313 3046 special mega pump less than 31 hours 30 minutes left tomorrow at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-06 08:28:58+00:00 1.0 1254489313 3042 special mega pump less than 48 hours left tomorrow at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-03-05 16:10:47+00:00 1.0 1254489313 3037 pump announcement special mega signals we have special altcoin signals just to let you know about it ⏰ will give you more details soon remember to transfer funds to binance and pinunmute our channel participants people 200000+ date sunday march 7th goal 200500 time 4 00 pm gmt exchange binance special mega pump signal coin name will be received 5 minutes ago on vip channel 2021-03-05 05:29:33+00:00 1.0 1254489313 2981 flmusdt also fundamentalally good coin the redesign asset flow will be launched on the flamingo website on 3 mar seeing big reversals flm should follow this pump season technicals • 4h chart looks extremely bullish • nicely breakout on down trend resistance • now it is ready to pump • buy hold a bag of it • should pump soon vipsignals 2021-02-25 08:44:03+00:00 1.0 1254489313 2864 fundamentally adx is very undervalued coin having only 7m cap with very active team adx is decentralized ad exchange plateform and a chinese project with strong development team adx having only 73million supply now our whales will pump it to the moon 2021-02-13 16:06:06+00:00 1.0 1254489313 2861 adx adx adx lets 2x spike with our whales daily chart looks extremely bullish breaking out on resistance adx is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2021-02-13 16:02:32+00:00 1.0 1254489313 2860 final 5 minutes left next post will be coin name with link stay tuned regards 2021-02-13 15:55:01+00:00 1.0 1254489313 2859 only 15 minutes left log in your binance account be ready with spare btc for special mega pump 2021-02-13 15:44:29+00:00 1.0 1254489313 2858 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ sell your alts be ready with spare btc for quick profit on mega pump signal only 30 minutes are left for todays 2x breakout coin 2021-02-13 15:31:33+00:00 1.0 1254489313 2857 hey guys stay alert remember special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 1 hours 30 minutes left 2021-02-13 14:31:07+00:00 1.0 1254489313 2856 only 5 hours left for our special signals ❗️❗historic signal event is expected to go 100200 sell your alts be ready with spare btc pinourchannelontop regards 2021-02-13 11:02:22+00:00 1.0 1254489313 2854 hey guys stay alert less than 12 hours left remember special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 4 pm gmt 2021-02-13 03:59:33+00:00 1.0 1254489313 2852 special mega pump less than 24 hours left tomorrow at 4 pm gmt a hevy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win special mega pump signal coin name will be received 5 minutes ago on vip channel for vip membership 2021-02-12 16:04:11+00:00 1.0 1254489313 2849 pump announcement special mega signals we have special altcoin signals just to let you know about it ⏰ will give you more details soon remember to transfer funds to binance and pinunmute our channel participants people 200000+ date saturday february 13 goal 200500 time 4 00 pm gmt exchange binance vip will get 5 min before 2021-02-12 06:55:06+00:00 1.0 1254489313 2789 ardr | binance big falling wedge 2210 down from all time high gem coin that can provide easy 200 300 gain just like nothing small cap coin has to go for a crazy ride ardr is the next vib 2x 3x coin from 2210 times down from ath buy from here 2021-02-09 16:00:11+00:00 1.0 1254489313 2788 only 5 minutes to go global fomo warming up next post will be pump coin name be very ready guys 2021-02-09 15:55:37+00:00 1.0 1254489313 2787 only 15 minutes left log in your binance account be ready with spare btc or usdt for biggestpump pinourchannelontopsoyouwillnotmisspump regards 2021-02-09 15:45:54+00:00 1.0 1254489313 2786 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays 2x breakout coin 2021-02-09 15:31:49+00:00 1.0 1254489313 2785 be ready guys just 1 hour is left its time to make heavy profits ✅ the pump is free for all the coin will be shared based on ta technical analysis ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well vip will get 5 min before share it with your friends other crypto groups let the hype spread ‼️ 2021-02-09 14:59:54+00:00 1.0 1254489313 2784 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 100300 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this cryptocoach10 doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2021-02-09 14:00:20+00:00 1.0 1254489313 2783 only 3 hours 30 minutes left for our special signals ❗️❗historic signal event is expected to go 100300 sell your alts be ready with spare btc pinourchannelontop regards 2021-02-09 12:30:01+00:00 1.0 1254489313 2781 only 12 hours 15 minutes left for our special signals ❗️❗historic signal event is expected to go 100300 sell your alts be ready with spare btc pinourchannelontop regards 2021-02-09 03:45:04+00:00 1.0 1254489313 2771 we are back again with historic signal event ❗️exchange binance date 09022020 time 4 pm gmt vip will get 5 min before more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out og this event soon pump will be expected minimum 100300 so be ready with spare btc pinourchannelontop beready4blast staytuned 2021-02-08 12:34:31+00:00 1.0 1254489313 2746 altcoin doesnt look good for mega pump so i have closed the mega pump signal today because btc again bull alts rekt dominance pumping hard the next pump will soon be announced stay tuned 2021-02-06 14:44:07+00:00 1.0 1254489313 2745 hey guys stay alert only 6 hours 30 minutes left team remember vip members will get few minute early access to pump to make some sweet btc profits enter the trade early for our rock mega signal the fomo is getting warm in alt market 500 pm gmt 2021-02-06 14:42:16+00:00 1.0 1254489313 2740 dear members 24 hours left until the this big bang signals the team is working overtime to make sure tomorrow will be the best and the safest pump the mega pump signal is scheduled at date 06022021 time 5 pm gmt exchange binance stay tuned mega pump signal is coming 2021-02-05 17:01:32+00:00 1.0 1254489313 2722 vips receive pump coin name few minutes before join us and get it now ☎️contact cryptotredingteacher for vip membership 2021-02-04 15:51:56+00:00 1.0 1254489313 2720 pump announcement hello everyone the next official pump will be scheduled for date saturday february 6 time 5 00 pm gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-02-04 14:58:47+00:00 1.0 1254489313 2687 pump announcement hello everyone the next official pump will be scheduled for date saturday february 6 time 5 00 pm gmt exchange binance advantage free for all this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge 2021-02-02 19:08:25+00:00 1.0 1254489313 2592 next post will be pump coin name 2021-01-30 15:55:08+00:00 1.0 1254489313 2591 we are going to tell you a vip mega coin at 4 pm gmt those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 15 min left 2021-01-30 15:45:03+00:00 1.0 1254489313 2590 dear members 30 minutes left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you the mega pump signals team 2021-01-30 15:30:07+00:00 1.0 1254489313 2587 alright guys brace your seatbelt just few hours left for the rocket that will depart for the moon were expecting at least 1000 btc in volume are you ready you better be binancevolcano eruption signal only 2 hours 30 min left 2021-01-30 13:30:02+00:00 1.0 1254489313 2584 big announcement are you excited for volcano eruption signal this signal will be purely based upon ta fa you will just have to buy that coin fastly as we declare its name and we will bring fomo to pump that coin 100 500 in no time we guarantee you that there will be no prepump or buying the volcano eruption signal is scheduled at date 30012021 time 4 pm gmt4 hours 30 min left exchange binance stay tuned volcano eruption signal is coming 2021-01-30 11:33:07+00:00 1.0 1254489313 2572 big announcement to celebrate the upcoming big alts season we are going to start a new type of signal which well call volcano eruption signal this signal will be purely based upon ta fa that is still bottomed out with very strong potential to pump hard you will just have to buy that coin fastly as we declare its name and we will bring fomo to pump that coin 100 500 in no time we guarantee you that there will be no prepump or buying the volcano eruption signal is scheduled at date 30012021 time 4 pm gmt24 hours left exchange binance stay tuned volcano eruption signal is coming 2021-01-29 16:10:47+00:00 1.0 1254489313 2535 vips receive pump coin name few minutes before join us and get it now ☎️contact cryptotredingteacher for vip membership 2021-01-28 01:42:07+00:00 1.0 1254489313 2534 big announcement we are going to organize a volcano eruption event on 30 th january we have gathered huge amount of btc to boom coin on binance making it reach top gainer on binance it will be free for all invite your friends for this volcano eruption signal day 30 jan time 4 gmt be ready coin name will be posted on vip channel few minutes earlier this time 2021-01-28 01:30:22+00:00 1.0 1254489313 2526 big announcement we are going to organize a volcano eruption event on 30 th january we have gathered huge amount of btc to boom coin on binance making it reach top gainer on binance it will be free for all invite your friends for this volcano eruption signal day 30 jan time 4 gmt be ready coin name will be posted on vip channel few minutes earlier this time 2021-01-27 15:37:59+00:00 1.0 1254489313 2114 next 100 pump coin will be posted here link is open for 15 minutes join him fast guys pro 2020-12-15 16:02:59+00:00 1.0 1254489313 2104 next 100 pump coin will be posted here link is open for 15 minutes join him fast guys pro 2020-12-09 19:12:14+00:00 1.0 1254489313 1581 next post will be pump coin name 2020-07-22 15:56:44+00:00 1.0 1254489313 1580 we are going to tell you a vip mega coin at 4 pm gmt those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 30 min left 2020-07-22 15:34:27+00:00 1.0 1254489313 1579 our dear members 1 hours left today will be the best and the safest pump we are nearly ready are you regards 2020-07-22 15:00:56+00:00 1.0 1254489313 1578 3 hours 30 minutes left for pump mega pump mega pump time 4pm gmt i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership 2020-07-22 12:32:14+00:00 1.0 1254489313 1577 10 hours left for pump i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership 2020-07-22 06:54:31+00:00 1.0 1254489313 1576 12 hours left for mega pump 2020-07-22 03:46:54+00:00 1.0 1254489313 1575 18 hours left for mega pump 2020-07-21 21:25:09+00:00 1.0 1254489313 1570 24 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-21 16:05:41+00:00 1.0 1254489313 1558 32 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-21 09:09:18+00:00 1.0 1254489313 1551 48 hours left for mega pump coin name will be posted on vip channel 24 hours earlier this time those members who are interested to know the coin name can contact me for vip membership 2020-07-20 16:37:51+00:00 1.0 1254489313 1541 pump announcement hello everyone the next official pump will be scheduled for date wednesday july 22 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 4 days to prepare for this pump share our group on social media and invite everyone you 2020-07-19 15:10:07+00:00 1.0 1254489313 1482 5 minutes left boom coin 2020-07-14 10:41:28+00:00 1.0 1254489313 1481 boom coin be ready with your binance account boom coin 1030 profit 1 hour left ⏰ be ready guys we will post coin name 10 minutes early in vip pinourchanneltotop staytuned 2020-07-14 09:28:06+00:00 1.0 1254489313 1447 next post will be pump coin name 2020-07-10 15:50:18+00:00 1.0 1254489313 1446 we are going to tell you a vip mega coin at 4 pm gmt which target is 5080 those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 30 min left 2020-07-10 15:29:54+00:00 1.0 1254489313 1445 our dear members 1 hours left today will be the best and the safest pump we are nearly ready are you regards 2020-07-10 14:58:22+00:00 1.0 1254489313 1444 3 hours left for mega pump 2020-07-10 12:56:53+00:00 1.0 1254489313 1443 5 hours left for mega pump join us and coin name get it now 2020-07-10 11:03:40+00:00 1.0 1254489313 1442 8 hours left for pump i have posted the already coin name it is not late yet people who are interested to know the coin name and those people can contact me for vip membership contact cryptotredingteacher 2020-07-10 08:09:18+00:00 1.0 1254489313 1441 11 hours left for mega pump 2020-07-10 04:58:38+00:00 1.0 1254489313 1439 24 hours left for mega pump the name mega pump coin is posted on our vip channel as i promised that 24 hours will post the coin name first and those members who are interested to know the coin name can contact me for vip membership 2020-07-09 16:21:17+00:00 1.0 1254489313 1426 pump announcement hello everyone the next official pump will be scheduled for date friday july 10 time 4 pm gmt exchange binance coin name will be posted on vip channel 24 hours earlier this time we have 3 days to prepare for this pump share our group on social media and invite everyone you 2020-07-07 08:08:55+00:00 1.0 1254489313 1394 next post will be coin name 2020-07-02 15:54:54+00:00 1.0 1254489313 1391 dear members 2 hours left until the this big bang call the team is working overtime to make sure today will be the best and the safest pump we are nearly ready are you 2020-07-02 13:57:40+00:00 1.0 1254489313 1389 pump scheduled date 2nd july ⏱ time 400 430 pm gmt exchange binance coin name will be posted on vip channel 1 hours earlier this time interested people contact me ☎️cryptotredingteacher now 2020-07-01 18:15:28+00:00 1.0 1254489313 1037 next post will be pump coin name rlc 2020-05-23 15:46:32+00:00 1.0 1254489313 1011 heavy pump alert❗️ date 23th may ⏱ time 1600 pm gmt exchange binance 2020-05-23 02:59:15+00:00 1.0 1254489313 950 heavy pump alert❗️ date 23th may ⏱ time 1600 pm gmt exchange binance 2020-05-20 09:53:20+00:00 1.0 1254489313 915 heavy pump alert❗️ date 23th may ⏱ time 1600 pm gmt exchange binance 2020-05-19 04:49:00+00:00 1.0 1254489313 886 heavy pump alert❗️ date 23th may ⏱ time 1600 pm gmt exchange binance 2020-05-18 06:30:40+00:00 1.0 1254489313 493 next post will be pump coin name 2020-04-28 15:54:24+00:00 1.0 1254489313 491 did you miss wabi lrc dont worry we are going to tell you a vip mega coin at 4 pm gmt which target is 3050 those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ be ready and move your funds on binance 30 min left 2020-04-28 15:28:25+00:00 1.0 1254489313 488 our dear members 1 hours left today will be the best and the safest pump we are nearly ready are you regards ══━━━━━✥ ❉ ✥━━━━━══ pinourchanneltotop staytuned ❤️ 2020-04-28 14:59:29+00:00 1.0 1254489313 425 next post will be pump coin name 2020-04-26 03:12:51+00:00 1.0 1254489313 416 pump scheduled date 26th april ⏱ time 4 am gmt exchange binance ────────────━❥ pinourchanneltotop staytuned ❤️ 2020-04-25 12:16:16+00:00 1.0 1254489313 353 pump coin name rdn 2020-04-21 13:58:58+00:00 1.0 1254489313 352 next post will be coin name 2020-04-21 13:56:02+00:00 1.0 1254489313 349 40 minutes for mega pump alert❗ 2020-04-21 13:20:55+00:00 1.0 1254489313 348 only 3 hours left for mega pump alert❗ 2020-04-21 11:02:17+00:00 1.0 1254489313 345 mega pump alert❗ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 22:25:16+00:00 1.0 1254489313 343 pump alert updated❗️ date 21st april ⏱ time 1400 pm gmt exchange binance 2020-04-20 19:54:27+00:00 1.0 1254489313 239 next post will be coin name 2020-04-15 14:45:26+00:00 1.0 1254489313 238 1hour 28 minutes left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected spike 6080 note coin will be posted in picture to avoid bots 2020-04-15 14:32:49+00:00 1.0 1254489313 233 4 hour left until the strong ta call todays strong ta call will be biggest till date freeforall this means that the coin signal will be at the exact same time for everyone expected spike 6080 note coin will be posted in picture to avoid bots 2020-04-15 12:06:02+00:00 1.0 1254489313 230 heavy pump alert❗️ date 15th april ⏱ time 1600 pm gmt exchange binance 2020-04-14 19:49:39+00:00 1.0 1254489313 114 announcement new coin listing pump event ‼️ to celebrate sol listing on binance we will schedule sol pump on 09042020 at 4 am utc the main reason for announcing this pump is circulation supply of this coin which is just 16 percent of total token supply therefore we believe that fomo will be huge as it could end up being another ogn renowned for its insane pumping history we recommend to buy as fast as possible and hold for 10100 from the buy price some data total token supply 500 millions sol total circulation supply 8 millions sol coin list auction sale price 1 sol 022 usd approx 3000 satoshis date 9th april 2020 time 400 am utc exchange binance pair name solbtc rules buy fast or dont buy at all ‼️ due to high risk we recommend to use small amount only entries 1 70007200 15 highly risky entry 2 60006200 25 little risky entry 3 54005500 30 comfortable entry 4 42004400 30 safest entry we suggest you guys to follow our buy zones only and get amazing short term profits like we did with our earlier binance ieo pumps believe us if you will follow us properly youll make handsome profits with sol so please read all info play safe cryptopumpanalytics professionaltradingguide 2020-04-08 05:32:47+00:00 1.0 1533705286 3 pump will be in thursday january 20th 730 pm gmt exchange hotbitio coin projected gain 300 hold time 24minutes 2022-01-19 19:22:51+00:00 1.0 1381990652 13507 mdt bi̇nance‼️ buy around 7485 sel97110130160+199 accumulation is going on in breaker zone falling wedge pattern is printed and about to breakout good to buy some here buy hold a bag for the pump 2021-06-15 08:36:09+00:00 1.0 1188252748 2940 everyone 5 minutes left global fomo warming up next post will be coin name login binance and keep an eye here 2020-05-04 18:55:09+00:00 1.0 1188252748 2939 everyone 10 minutes left login binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast sell at maximum profit 2020-05-04 18:51:07+00:00 1.0 1188252748 2937 everyone 30 minutes to go we are very hyped for this pump things are looking better than they have in forever we hope you make all the profits you desire remember to help promote the coin during the pump so it can keep rising and rising 2020-05-04 18:30:43+00:00 1.0 1188252748 2936 1 hour left for the binance pump we have added 2 more large telegrams to repost our coin and news at pump time this will make our pump even bigger they are eager to get in on the action since the markets are so perfect right now make sure you buy in quickly for the lowest price pay attention to the expected gain range so you know a safe place to sell enjoy your profits 2020-05-04 18:05:28+00:00 1.0 1188252748 2935 i was wrong the pump hours start in an hour and 17 minutes 2020-05-04 17:43:12+00:00 1.0 1188252748 2933 47 minutes left until the pump with altcoins bottomed out because of bitcoins recent actions the markets are looking amazing for our pump the coins we pump are near recent lows and can skyrocket easily this pump can be incredible dont forget to help promote the coin news when it is posted this will help everyone profit even more 2020-05-04 17:13:34+00:00 1.0 1188252748 2932 everyone binance pump announcement next pump monday 4 may 1900 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin has risen and alts have bottomed out this is the perfect time to pump we can and will do amazing things in this pump 2020-05-04 17:13:06+00:00 1.0 1188252748 2831 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:04+00:00 1.0 1188252748 2753 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:05+00:00 1.0 1188252748 2751 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:05+00:00 1.0 1188252748 2750 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:06+00:00 1.0 1188252748 2749 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:05+00:00 1.0 1188252748 2748 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:05+00:00 1.0 1188252748 2747 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:05+00:00 1.0 1188252748 2745 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:05+00:00 1.0 1188252748 2743 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:09+00:00 1.0 1188252748 2741 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:05+00:00 1.0 1188252748 2739 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:05+00:00 1.0 1188252748 2738 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:05+00:00 1.0 1188252748 2736 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:05+00:00 1.0 1188252748 2735 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:05+00:00 1.0 1188252748 2734 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:05+00:00 1.0 1188252748 2733 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:05+00:00 1.0 1188252748 2723 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:06+00:00 1.0 1188252748 2719 ae 30 minutes left 2020-04-09 13:36:55+00:00 1.0 1188252748 2703 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:41+00:00 1.0 1188252748 2689 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:47+00:00 1.0 1188252748 2683 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:43+00:00 1.0 1188252748 2678 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1188252748 2676 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:04+00:00 1.0 1188252748 2674 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:02+00:00 1.0 1188252748 2673 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:12+00:00 1.0 1188252748 2672 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 14:00:27+00:00 1.0 1188252748 2667 huge pump announcement next pump 22 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-06 20:10:01+00:00 1.0 1188252748 2665 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:05+00:00 1.0 1188252748 2663 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:03+00:00 1.0 1188252748 2661 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:03+00:00 1.0 1188252748 2660 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:03+00:00 1.0 1188252748 2659 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:05+00:00 1.0 1188252748 2658 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:03+00:00 1.0 1188252748 2657 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:03+00:00 1.0 1188252748 2656 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:04+00:00 1.0 1188252748 2654 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:03+00:00 1.0 1188252748 2653 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:03+00:00 1.0 1188252748 2652 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:03+00:00 1.0 1188252748 2651 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:03+00:00 1.0 1188252748 2650 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:02+00:00 1.0 1188252748 2649 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:03+00:00 1.0 1188252748 2648 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:01+00:00 1.0 1188252748 2646 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:02+00:00 1.0 1188252748 2643 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:50+00:00 1.0 1188252748 2638 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:01+00:00 1.0 1188252748 2635 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:56+00:00 1.0 1188252748 2632 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:01+00:00 1.0 1188252748 2630 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:01+00:00 1.0 1188252748 2628 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:01+00:00 1.0 1188252748 2627 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:02+00:00 1.0 1188252748 2626 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:16+00:00 1.0 1188252748 2625 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:07+00:00 1.0 1188252748 2623 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:06+00:00 1.0 1188252748 2619 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:00+00:00 1.0 1188252748 2617 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:01+00:00 1.0 1188252748 2616 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:01+00:00 1.0 1188252748 2614 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:02+00:00 1.0 1188252748 2613 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:01+00:00 1.0 1188252748 2612 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:02+00:00 1.0 1188252748 2611 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:01+00:00 1.0 1188252748 2610 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:02+00:00 1.0 1188252748 2609 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:02+00:00 1.0 1188252748 2608 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:02+00:00 1.0 1188252748 2607 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:01+00:00 1.0 1188252748 2606 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:01+00:00 1.0 1188252748 2605 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:01+00:00 1.0 1188252748 2604 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:07+00:00 1.0 1188252748 2603 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:01+00:00 1.0 1188252748 2595 binance pump reminder ⏰ date friday 03 april 1800 gmt exchange binancecom register if you havent yet please read the available help channels on discord and learn the tips of pumping you will want to know how to buy fast to maximize your profit and as always if you have questions just ask ❗️things you need to do before the pump 1 register on binancecom or the app 2 deposit bitcoin onto your account 3 watch here for the pump signal friday at 1800 gmt 4 follow the given advice or use your best judgement and profit huge 2020-04-01 23:27:51+00:00 1.0 1188252748 2586 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:20+00:00 1.0 1188252748 2583 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:43+00:00 1.0 1188252748 2567 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 22:54:13+00:00 1.0 1188252748 2566 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 22:54:13+00:00 1.0 1188252748 2556 results of appc pump profit 897 high 413 low 379 all members were able to profit on this pump we hit our high 1 minute after start pump in the free channel and 2 minutes after the post on our vip channel we are proud of you members want to know the coin earlier in the next pump — cryptowhale — 2020-03-27 22:38:41+00:00 1.0 1188252748 2549 ⏰ 5 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:55:00+00:00 1.0 1188252748 2547 ⏰ 10 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:50:00+00:00 1.0 1188252748 2545 ⏰ 15 minutes until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:45:29+00:00 1.0 1188252748 2540 everyone who will invest more than 1 btc in this pump will get to know coin in the next pump 20 seconds faster you will just have to show order history from this pump to the admin 2020-03-27 20:05:40+00:00 1.0 1188252748 2539 ⏰ 1 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 20:00:00+00:00 1.0 1188252748 2538 ⏰ 2 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 19:05:00+00:00 1.0 1188252748 2536 ❕ are you a member and want to receive coin 10 sec faster in next pump ❕ its simple just invest more than 3 btc in our todays pump and you will have to send us your order history from todays which will cost above 3 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 10 seconds faster 2020-03-27 18:47:00+00:00 1.0 1188252748 2535 ⏰ 4 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 17:00:00+00:00 1.0 1188252748 2533 ⏰ 6 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 15:00:00+00:00 1.0 1188252748 2532 ❕ are you a member and want to receive coin 3 sec faster in next pump ❕ its simple just invest more than 1 btc in our todays pump and you will have to send us your order history from todays which will cost above 1 btc if we will see that screenshot may be fake we will request connection on anydesk to live show us order history from todays pump after verification process we will add you to the channel which will receive coin 3 seconds faster 2020-03-27 14:34:53+00:00 1.0 1188252748 2531 ⏰ 8 hours until the pump ⏰ today at 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-27 13:00:58+00:00 1.0 1188252748 2530 ⏰ 1 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-26 21:46:25+00:00 1.0 1188252748 2529 ⏰ 2 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-25 22:59:53+00:00 1.0 1188252748 2528 ⏰ 3 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-24 12:39:48+00:00 1.0 1188252748 2527 the pump starts friday at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak if you want to get the coins before everyone else you must have vip please contact the admin to register you will get the coin 1020 seconds before everyone else and will profit immensly 2020-03-24 03:17:49+00:00 1.0 1188252748 2519 ⏰ 4 days until the pump ⏰ at friday 27032020 2100 pm gmt a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak 2020-03-23 13:41:53+00:00 1.0 1188252748 2516 pump announcement next pump friday 27 march 2100 pm gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-03-21 12:10:44+00:00 1.0 1188252748 2514 pump coin name nebl 2020-03-20 16:00:00+00:00 1.0 1188252748 2513 next post will be the coin name 2020-03-20 15:50:35+00:00 1.0 1188252748 2511 only 1 hour left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-20 15:01:13+00:00 1.0 1188252748 2510 less than 5 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-20 11:29:05+00:00 1.0 1188252748 2509 less than 18 hours left❗️ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-19 23:08:07+00:00 1.0 1188252748 2507 next pump scheduled date 20th march ⏱ time 1600 pm gmt exchange binance vip subscribers will get the coin earlier cryptowhale 2020-03-19 23:07:57+00:00 1.0 1188252748 2497 pump coin name bnt 2020-03-17 15:55:10+00:00 1.0 1188252748 2495 next post will be the coin name 2020-03-17 15:40:03+00:00 1.0 1188252748 2491 only 40 minutes left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-17 15:21:52+00:00 1.0 1188252748 2490 less than 2 hours left❗ today around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-17 14:07:27+00:00 1.0 1188252748 2485 less than 19 hours left❗ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak coin name will be posted here on vip channel earlier 2020-03-16 20:53:45+00:00 1.0 1188252748 2483 next pump scheduled date 17th march ⏱ time 1600 pm gmt exchange binance vip subscribers will get the coin earlier coinpumpcrew 2020-03-16 20:11:27+00:00 1.0 1188252748 2480 less than 20 hours left❗ tomorrow around 1600 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-16 20:05:32+00:00 1.0 1188252748 2472 pump coin name nebl 2020-03-15 20:00:09+00:00 1.0 1188252748 2471 next post will be the coin name 2020-03-15 19:53:11+00:00 1.0 1188252748 2467 less than 1 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 19:15:54+00:00 1.0 1188252748 2465 less than 2 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 18:06:03+00:00 1.0 1188252748 2463 less than 4 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 16:25:05+00:00 1.0 1188252748 2461 less than 5 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 15:40:50+00:00 1.0 1188252748 2458 hello vips today you receive the coin name 15 mins before the pump target 40 2020-03-15 13:24:58+00:00 1.0 1188252748 2456 only 7 hours left❗ today at 2000 pm gmt a heavy pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak the more experience the more chances to win 2020-03-15 13:02:03+00:00 1.0 1188252748 2455 next pump scheduled date 15th march ⏱ time 2000 pm gmt exchange binance vip subscribers will get the coin earlier cryptowhale 2020-03-14 20:51:13+00:00 1.0 1188252748 2067 quick note we will postpone tonights strong ta call our experts closely monitoring the current market situation and believe that bitcoin is about to break 9000 resistance so its better to postpone we will probably share strong ta on monday new details are as follows date 20 january time 4 pm gmt exchange binance we hope you understand postponing the strong ta is better at this moment if not feel free to contact us thanks for understanding❤️ 2020-01-18 15:05:47+00:00 1.0 1188252748 2066 great news for all a lot of people have been wondering when the next strong ta will be❓ as promised our analysts scanned binance exchange and found strongta based unicorn which is sitting on fking bottom and waiting for a kick to moon were expecting 40 to 2x gain in short term❕ market is looking more than ready have a great day prepare yourself for upcoming strong ta call‼️ date jan 18 time 4 pm gmt exchange binance 2020-01-18 04:00:18+00:00 1.0 1188252748 1575 only 5 minutes to go next post will be the coin name 2019-12-12 19:55:03+00:00 1.0 1188252748 1574 only 30 minutes left until the huge bittrex pump it is helpful to add extra buy orders just under the market price during the pump many outside investors act on these buy orders and will be willing to buy more of our sell orders if they see other existing buy orders adding these extra buy orders after you have bought in will help the pump hold much longer 2019-12-12 19:30:03+00:00 1.0 1188252748 1573 1 hour left until the pump make sure you buy quickly to get he lowest prices and always sell for a profit bittrex profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer 2019-12-12 19:00:03+00:00 1.0 1188252748 1572 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 2019-12-12 18:00:04+00:00 1.0 1188252748 1571 4 hours left until the pump today there will be provided news for everyone to spread around post this on social media forums telegram or anywhere people are interested in crypto we will also be able to pump our coin to make bittrex front page as the top gainrer of the day which will attract a of additional investment altcoin markets are primed and many people are looking to trade make sure your bittrex account is loaded and ready 2019-12-12 16:00:06+00:00 1.0 1188252748 1557 24 hours left until the pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot everything is looking great for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits remember bittrex pumps can go 100250 on average 2019-12-11 20:00:04+00:00 1.0 1188252748 1514 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot markets look great and primed for a pump make sure you buy in quickly and sell in the expected gain range some tips to help keep the pump near peak sell your coins in bunches maybe half right away and half a little later or 13 at a time add buy offers just under the market price these buy walls will entice day traders from outside our group and even some trading bots to buy up more coins above our orders which causes waves and mutliple price spikes ride these waves for extra profit promote the coin usuing the supplied news this will help bring more investment into the coin which greatly benifits the pump 2019-12-10 20:00:04+00:00 1.0 1188252748 1504 pump announcement next pump thursday 12 december 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we have grown significantly in the past 2 weeks 500+ new members technically everything looks incredible for a pump this week and we should be able to push a coin even higher and hold for even longer than usual look forward to another great pump 2019-12-10 07:17:21+00:00 1.0 1188252748 1033 more bitrex pump results start price 525 sats peak price 1284 sats gain 145 the pump spent over 6 min near 1000 sats 2019-11-27 20:57:35+00:00 1.0 1188252748 1027 only 5 minutes to go next post will be the coin name 2019-11-27 19:55:04+00:00 1.0 1188252748 1026 only 30 minutes left until the huge bittrex pump 2019-11-27 19:30:02+00:00 1.0 1188252748 1025 1 hour left until the pump make sure you buy quickly to get he lowest prices and always sell for a profit bittrex profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer 2019-11-27 19:00:03+00:00 1.0 1188252748 1024 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 2019-11-27 18:00:04+00:00 1.0 1188252748 1021 4 hours left until the pump today there will be provided news for everyone to spread around post this on social media forums telegram or anywhere people are interested in crypto we will also be able to pump our coin to make bittrex front page as the top gainrer of the day which will attract a of additional investment altcoin markets are primed and many people are looking to trade make sure your bittrex account is loaded and ready 2019-11-27 16:00:04+00:00 1.0 1188252748 1014 24 hours left until the pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot everything is looking great for our pump tomorrow alts are primed for huge spikes and we will be able to make massive profits remember bittrex pumps can go 100250 on average 2019-11-26 20:00:03+00:00 1.0 1188252748 999 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot the current state of the market allowing for alts to sky rocket the additional marketing we have secured for the coin news and the readiness of many coins on bittrex will make sure we have an incredible pump this will be one you dont want to miss 2019-11-25 20:00:05+00:00 1.0 1188252748 979 pump announcement next pump wednesday 27 november 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time signs are pointing toward the begining of alt season and some markets are already beginning to spike this is the perfect time to pump there will be many options and a lot more money going ino altcoins than usual lets take advantage of this and have a huge pump 2019-11-25 16:36:59+00:00 1.0 1188252748 892 unfortunatly we have decided it is best and safest to cancel todays pump this is for the protection of everyone if we pump we want it to be first class with no issues and huge profits for everyone no other groups would cancel last minute to protect their users we appologize for the inconvenience but hope you understand this is for the best the pump will be rescheduled asap thank you for your support 2019-11-21 20:18:03+00:00 1.0 1188252748 891 todays pump will be delayed 30 minutes the chosen coin and supplied news must be adjusted this is for everyones protection markets have changed and the lead coin must be abandoned for now we will keep you updated as we devolope the news for the secondary coins now thank you 2019-11-21 20:00:03+00:00 1.0 1188252748 890 only 30 minutes left until the huge bittrex pump 2019-11-21 19:30:02+00:00 1.0 1188252748 889 1 hour left until the pump pink is still up over 40 from our pump 1 week ago thats incredible lets push todays coin to a new all time high make sure you buy quickly to get he lowest prices and always sell for a profit bittrex profits could be huge if done correctly everyone is encouraged to promote the coin news after you are bought in the coin news will be posted here after the pump starts comment it on a popluar twitter page or post in an open telegram group forum this will bring outsiders to increase the price even more and keep the pump going much longer 2019-11-21 19:00:04+00:00 1.0 1188252748 888 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit look for the coin to go 100+ 4 help the team promote the coin everywhere and on social media by fomoing outsiders to buy the coin from us most if not all of the orders listed in the expected gain range will hit this can take several minutes at times as more investment comes into the coin 2019-11-21 18:00:05+00:00 1.0 1188252748 872 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot for the first time ever on bittrex we have secured additional marketting to enhance the pump further by bringing in even more outsiders be ready for another huge pump tomorrow remember bittrex pumps can go 100250 on average 2019-11-20 20:00:04+00:00 1.0 1188252748 861 48 hours left until the pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot more users and more volume means higher pumps and larger cap coins invite others and have a solid plan for promoting the coin news from us all doing our part we will grow larger and larger and earn more profits for everyone we could see 34500 pumps 2019-11-19 20:24:41+00:00 1.0 1188252748 853 ✅ the next pump will take place thursday the 21th of november exchange bittrex 2000 gmt ⚖ pair btc targets 100 150 welcome to all the new members thursday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices this pump will be huge again 2019-11-19 16:12:31+00:00 1.0 1188252748 291 dear members we are very sorry for the mishap the telegram bot got crashed right before the pump and only discord got the message the coin was not posted to any of our telegram groups who are the main source of volume over 100000 users who were expecting to see the coin were never given it due to a crash of the telegram posting bot this caused a large chunk of our buying power to be missing and therefore the pump never really took off but we did a good pump only with discord u can see the result here 2019-10-30 20:27:20+00:00 1.0 1188252748 290 only 4 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-30 19:56:30+00:00 1.0 1188252748 289 10 minutes left make sure you are logged in wih everything ready 2019-10-30 19:50:03+00:00 1.0 1188252748 288 only 30 minutes left until the huge binance pump 2019-10-30 19:30:04+00:00 1.0 1188252748 287 1 hour left before the pump make sure you help promote the coin during the pump this is make outsiders buy our sell orders and keep the pump going for much longer 2019-10-30 19:00:04+00:00 1.0 1188252748 286 2 hours left until the pump so how do i pump 1 watch for the coin signal at 20 gmt 2 buy the coin quickly to get the best prices 3 list your sell in the expected gain range to profit 2019-10-30 18:00:04+00:00 1.0 1188252748 279 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot pumps can be extremely profitable for all those involved scroll up to familiarize yourself with the process and be ready for massive gains 2019-10-29 20:24:39+00:00 1.0 1188252748 251 pump announcement next pump wednesday 30 october 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we assure this upcoming pump can be huge and extremely profitable for everyone bitcoin rising and the state of the market have made this the perfect time to pump 2019-10-26 19:43:26+00:00 1.0 1188252748 235 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-25 17:55:04+00:00 1.0 1188252748 234 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-10-25 17:50:04+00:00 1.0 1188252748 233 only 30 minutes left the coin name will come as an text 2019-10-25 17:30:04+00:00 1.0 1188252748 232 40 minutes left until the pump go to binance sell all your alts and buy btc 2019-10-25 17:20:08+00:00 1.0 1188252748 231 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-10-25 17:00:03+00:00 1.0 1188252748 230 2 hours until the pump and we will unite and mass buy a coin while mass buying our social media specialists will spread bullish news on some massive social media channels the news combined with the upgoing price will make outsiders people that are not in coin pump crew fomo this will make the coin rise even further after this price rise slowly sell your coins instead of one order place a couple for now all we can say is get ready practise and read all the advice we gave you 2019-10-25 16:00:03+00:00 1.0 1188252748 196 ✅ the next pump will take place friday the 25th of october exchange binance 1800 gmt ⚖ pair btc targets 50 100 welcome to all the new members friday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices this pump will be huge again 2019-10-23 08:30:41+00:00 1.0 1188252748 187 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-22 17:55:04+00:00 1.0 1188252748 186 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-10-22 17:50:04+00:00 1.0 1188252748 185 only 30 minutes left the coin name will come as an text 2019-10-22 17:30:03+00:00 1.0 1188252748 184 1 hour left before the pump make sure you help promote the coin during the pump 2019-10-22 17:00:05+00:00 1.0 1188252748 164 dear members 1 day left until our next binance pump our goal tomorrow will be to trigger a reaction from outsiders tomorrow after we post the coin signal the price will went up really fast this will get the coin trending bring many more outsiders into the pump and create bigger waves directives be ready to buy quickly when the coin signal is given we have thousands of members trading at once and the price will go up very fast the best way to buy is to buy at market price using the 75 option in the market tab not 100 because the price will have already go up and wont work the earlier you buy in the better if you are too late to buy and the price has risen alot already it is recommended to sit it out it is preferable trading on the binance desktop app because the amount of volume we will generate might make the binance browser slower • if you got any questions regarding our pumps feel free to ask us btc777 2019-10-21 09:27:47+00:00 1.0 1188252748 150 ✅ the next pump will take place tuesday the 22th of october exchange binance 1800 gmt ⚖ pair btc targets 50 100 welcome to all the new members tuesday we will choose a low market cap coin we will buy the coin causing the price to increase massively this will allow us to close some big gains by selling at peak prices this pump will be huge again 2019-10-19 12:32:07+00:00 1.0 1188252748 144 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-15 19:55:05+00:00 1.0 1188252748 143 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-10-15 19:50:04+00:00 1.0 1188252748 142 those who wants to make some profits are excited be ready your computer chair table go to quiet space only 30 minutes left the coin name will come as an text 2019-10-15 19:30:04+00:00 1.0 1188252748 141 1 hour left before the pump everyone make sure you help promote the coin during the pump 2019-10-15 19:00:04+00:00 1.0 1188252748 137 8 hours left until the pump have your btc ready on binance 2019-10-15 12:00:03+00:00 1.0 1188252748 135 1 day left until the big pump guys 2019-10-14 18:00:02+00:00 1.0 1188252748 133 hello everyone 3 days left until our next mega pump the market conditions are still looking great and will favor our upcoming pump we have gained alot of new members since the success of our last pump we expect this one to be even better its very rare these days to see a coin go up more than +45 on binance and as promised last time we have spent alot of ressources on marketing and we will do the same again this time we will try to go above 50 we still have spots open for our vip group if you would like to join our private club send a message to btc777 the fee is 0035 btc for a lifetime membership a signal advantage for our pumps guaranteed profits occasionnal vip signals by technical analysis expert to come soon more advantages to come that we will announce soon 2019-10-12 18:00:04+00:00 1.0 1188252748 130 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact btc777 2019-10-11 21:27:22+00:00 1.0 1188252748 123 only 5 minutes to go next post will be the coin name 2019-09-09 19:55:03+00:00 1.0 1188252748 122 10 minutes left make sure you are logged in wih everything ready 2019-09-09 19:50:06+00:00 1.0 1188252748 121 only 30 minutes left until the huge binance pump the coin name will come as an image 2019-09-09 19:30:03+00:00 1.0 1188252748 115 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot lets hold this pump near peak for as long as we can 2019-09-08 20:00:03+00:00 1.0 1188252748 107 pump announcement next pump monday 9 september 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time the recent movement on bitcoin has created desirable conditions or one of our pumps we have also moved to a completely new day in order to attract new crowds of outsiders more info to come with the 48hr reminder but be ready or a big pump 2019-09-06 21:23:46+00:00 1.0 1188252748 91 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-22 19:55:02+00:00 1.0 1188252748 90 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-22 19:50:03+00:00 1.0 1188252748 89 only 30 minutes left the coin name will come as an image 2019-08-22 19:30:03+00:00 1.0 1188252748 86 24 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts we expect great initial volume and even greater follow up volume to send the coin to 50 or more make sure you buy in quickly to get the best available price we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 2019-08-21 20:00:03+00:00 1.0 1188252748 85 everyone 48 hours left until binance pump exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot our ocr bot buying problem is over the new syle coin images are completely bot proof and will allow for everyone to buy in reasonably with little to no chance of a quick spike this means lower buy ins and more profits our newest postpump tool will also spread the buying signal to dozens of other investment groups linked to our op website to greatly increase the effectiveness of our coin promoting this should allow for the pumped price to hold for a much longer time so we can all sell as close to the peak as possible 2019-08-20 20:03:19+00:00 1.0 1188252748 79 pump announcement next pump thursday 22 august 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time we are gaining partners to repost our coin during the pump everywhere we can think of and aiming to secure a giant twitter to advertise for us with the ultimate goal of 250k additional users seeing the coin signal news after he pump begins in addition the generated news to promote will be the most real and biggest it ever has been hosted on a premium domain and the days of ocr bots reading our coin are over the coin image will be tested against the top 3 ocr we can find and must pass all 3 to be considered acceptable to us all this is being done to ensure the pump peaks long after the start and everyone can profit huge we will continue to grow bigger and better each time 2019-08-17 22:09:55+00:00 1.0 1188252748 78 everyone vote the time for the next pump it will stay online for few hours only 2019-08-17 13:50:56+00:00 1.0 1188252748 74 to join premium channel and to know the coin name before pump contact btc777 the next pump will be big ‼️ 2019-08-15 14:17:36+00:00 1.0 1188252748 66 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-13 19:55:03+00:00 1.0 1188252748 65 10 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-13 19:50:03+00:00 1.0 1188252748 64 only 30 minutes left the coin name will come as an image 2019-08-13 19:30:03+00:00 1.0 1188252748 60 24 hours left until binance pump event exchange pairing btc as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more make sure you buy the vip to get the best available price receive the coin 1hour earlier we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 2019-08-12 20:03:44+00:00 1.0 1188252748 57 hello everyone 2 days left until our next pump on binance we can guarantee that this upcoming pump will have amazing results we are expecting at least a minimum of 50 and more on the initial spike and multiple waves to follow through this pump will have alot of support as we get closer to the pump more details will follow stay tuned many members are asking if we use btc or eth to buy the coin we will be using the btc pairing to buy the coin to get pump coin name 1 hour ago in vip channel contact for vip membership btc777 2019-08-11 19:02:16+00:00 1.0 1188252748 50 everyone pump announcement next pump tuesday 13 august 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time bitcoin is doing great and giving us amazing opportunities to pump the last 2 pumps were incredible 76 and 66 with over 100 btc volume each time this pump can be even bigger we have 1 week to plan prepare and continue to grow inviting others and exploring new places to shill can help the group become even stronger 2019-08-06 17:53:29+00:00 1.0 1188252748 45 only 3 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-08-01 19:57:14+00:00 1.0 1188252748 44 5 minutes left login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast 2019-08-01 19:55:36+00:00 1.0 1188252748 35 20 hours left until binance pump event exchange pairing btc pump is free for all all pumpers receive coin signal at the same time via our bot as promised we are going above and beyond again for this pump and have secured promotion of our signal to 100000+ social media accounts who are known binance users and 40000+ on discord we expect great initial volume and even greater follow up volume to send the coin to 304050 or even more it is important to buy in quickly to get the best available prices so make sure you are here when the signal is released at 2000 gmt make sure you buy in quickly to get the best available price we reccomend a market buy with up to 75 of your available btc do not use 100 as it may cause the sale to fail while price is rising 2019-08-01 00:39:45+00:00 1.0 1188252748 32 everyone 48 hours left until one of the largest binance pump exchange pairing btc pros of binance massive daily volume of 1 billion+ for extremely liquidity most popular exchange in the world for huge number of outsiders market buys for quick action easier exchange to promote during pumps more users have accounts there no upper limit on investing means you can enter with 5 or even 10 btc if you wanted safer percent gains of 3090 instead of 200 this pump will be enormous and incredible we have over 2000 new users since the last pump and have secured promotion of our signal to 40000+ telegram users and coin promotion to 100000+ social media accounts who are known binance users create and ready your account on binance check the help channels and as questions if needed we aim for every single user to profit and this is easily possible on binance please do your best to be prepared last pump result on binance lrc was insane we did in few minutes 130 btc getting the coin at 76 then we had a lot incredible waves and after 5 days the coin was still trading at +40 from start pump price everyone did insane profits lrc did around 350400 btc trading volume after our pump and right now it have 200+ btc traded everyday lets get the next pump even bigger 2019-07-30 20:55:10+00:00 1.0 1188252748 30 after 5 days from our pump lrc its still trading at +40 and at around 550 sats it was an incredible pump everyone its in a huge profit next pump will be even bigger 2019-07-30 14:35:11+00:00 1.0 1188252748 28 everyone pump announcement next pump thursday 1 august 2000 gmt exchange pairing btc pump will be unranked free for all all pumpers will receive coin signal at the same time our last pump was truly incredible 76 price spike over 100 btc volume coin up 25 for 20min + and waves happeneing for days to as high as 35 again we expect the pumps to keep getting even bigger and better from here dont miss it note new usa users can still register on binance with a vpn or proxy from another country then trade on their home ip 2019-07-29 18:20:18+00:00 1.0 1188252748 14 last pump coal cryptopia pump results start price 266 sats peak price 878 sats gain 237 volume 318 btc 2019-07-29 02:29:19+00:00 1.0 1131371900 41378 trending news in crypto 400 million in eth now burned by ethereum eip1559 upgrade 54 minutes ago via decryptco➡ not just microstrategy these corporations hodl top 10 stocks with exposure to bitcoin 59 minutes ago via cryptopotatocom➡ is cardano finally ready to blast through 300 analyst benjamin cowen looks at state of ada 1 hour ago via dailyhodlcom➡ bitcoin struggles below 49k solana sol now top 8 surpassing polkadot market watch 2 hours ago via cryptopotatocom➡ bilaxy exchange hacked users urged not to deposit 2 hours ago via cryptopotatocom➡ 2021-08-29 11:00:01+00:00 1.0 1131371900 32500 trending news in crypto ethereum maximalism turns ugly with insensitive attack on binance smart chain 45 minutes ago via utoday➡ bitcoin selloff over strong buy the dip signal flashes for the first time in 5 months 1 hour ago via cointelegraphcom➡ cardano dominates exchange trading as charles hoskinson calls out salty haters 2 hours ago via utoday➡ xrp plunges to multiweek low tapping key support level 3 hours ago via utoday➡ bitcoin plunges below 44k as miners capitulate market watch 3 hours ago via cryptopotatocom➡ 2021-02-28 12:00:02+00:00 1.0 1251058940 11719 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact stephenandpump for premium membership 2022-01-19 09:29:34+00:00 1.0 1251058940 11680 new binance pump announcement ⏳date sunday 23 january ⏰time 5 pm gmt exchange binance com +26 whale channels target 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance kucoin we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 7 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2022-01-15 20:09:33+00:00 1.0 1251058940 11679 orc kucoin pump results start price 24 peak price 043 peak gain 440 orc amassed over 15 million volume within the first few minutes as it rose all the way to 440 minimum projection even in this market our volume continues to grow and our peaks have become even more impressive thank you to all members who participated you can expect our next pump to be even bigger great job to everyone 2022-01-15 20:07:33+00:00 1.0 1251058940 11676 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in usdt pair login kucoin and keep an eye here 2022-01-15 16:55:23+00:00 1.0 1251058940 11675 15 minutes left until our pump on kucoin pump will be in usdt pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2022-01-15 16:45:17+00:00 1.0 1251058940 11623 new binance pump announcement ⏳date sunday 16 january ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2022-01-08 18:38:54+00:00 1.0 1251058940 11621 unic kucoin pump results start price 10607 peak price 98700 peak gain 831 unic amassed over 17 million volume within the first few minutes as it rose all the way to 831 well over our 500 minimum projection even in this market our volume continues to grow and our peaks have become even more impressive thank you to all members who participated you can expect our next pump to be even bigger great job to everyone 2022-01-08 18:36:54+00:00 1.0 1251058940 11618 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in usdt pair login kucoin and keep an eye here 2022-01-08 16:55:26+00:00 1.0 1251058940 11617 15 minutes left until our pump on kucoin pump with usdt pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2022-01-08 16:45:13+00:00 1.0 1251058940 11583 new binance pump announcement ⏳date sunday 9 january ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2022-01-02 20:10:15+00:00 1.0 1251058940 11582 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 19:03:10+00:00 1.0 1251058940 11580 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:02:09+00:00 1.0 1251058940 11578 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2022-01-02 16:55:41+00:00 1.0 1251058940 11577 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2022-01-02 16:45:12+00:00 1.0 1251058940 11564 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:16:41+00:00 1.0 1251058940 11525 new binance pump announcement ⏳date sunday 2 january ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-28 15:50:24+00:00 1.0 1251058940 11524 oax update not exactly the pump we expected we had a third party dump on us after the initial pump announcement which pushed oax down and didnt give us all the chance we expected to ride it to our targets were currently holding this coin as we can expect to see a move up higher in the next weeks be ready for further announcements as 2022 will be our most profitable year yet 2021-12-28 15:48:03+00:00 1.0 1251058940 11522 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-12-28 14:55:15+00:00 1.0 1251058940 11521 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-12-28 14:45:15+00:00 1.0 1251058940 11502 new binance pump announcement ⏳date tuesday 28 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit dear members we have decided to postpone the pump after hours of discussions with the team we have received many inquiries to make the pump on a different day because of christmas many members will not be available to take part in the pump even though the market looks bullish this holiday period may affect the pump and the volume in a negative way moreover the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect the capital of our members we are aiming for an extremely high gains for this pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 2 minutes after the call as an apology for the postponement stay tuned for our further announcements 2021-12-26 05:55:31+00:00 1.0 1251058940 11481 special offer just 30 hours the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are confident to say the upcoming sunday pump will be one of the biggest pumps we have done so far our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are also doing a private event exclusively for our vip members this week stephenandpump only 4 slots left please find the membership form here 2021-12-23 08:32:53+00:00 1.0 1251058940 11454 new binance pump announcement ⏳date sunday 26 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-12-19 20:22:31+00:00 1.0 1251058940 11452 pump result amazing pump with more than 133 btc volume which is close to 7 million in volume with a peak of 45 that lasted more than 1 minute we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding appc with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-12-19 17:30:04+00:00 1.0 1251058940 11450 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-12-19 14:55:22+00:00 1.0 1251058940 11449 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-12-19 14:45:16+00:00 1.0 1251058940 11448 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-12-19 14:32:22+00:00 1.0 1251058940 11377 new binance pump announcement ⏳date sunday 19 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-12-11 14:27:44+00:00 1.0 1251058940 11372 dear members we have decided to postpone the sunday pump after hours of discussions with the team even though the market looks bullish the alts market is not stable enough for a big pump at this time and with the market information we have gathered from different groups of whales and pumps we have decided to postpone the pump to protect your and all member capitals we are aiming for an extremely high for the next pump and we are going to boost it with whales that will buy hundreds of thousands worth of the coin 2 minutes after the call as an apology for the postponement best regards the binance pump signals team 2021-12-11 06:14:44+00:00 1.0 1251058940 11334 binance pump signals pump result amazing pump with more than 489 btc volume which is close to 27 million in volume with a peak of 67 that lasted more than 1 minute we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding phb with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump new binance pump announcement ⏳date sunday 12 december ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-12-07 05:49:00+00:00 1.0 1251058940 11321 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-12-05 14:53:10+00:00 1.0 1251058940 11237 new binance pump announcement ⏳date sunday 5 december ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of december is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended november with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-11-28 17:48:55+00:00 1.0 1251058940 11236 pump result amazing pump with more than 489 btc volume which is close to 27 million in volume with a peak of 67 that lasted more than 1 minute we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding phb with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-11-28 17:44:54+00:00 1.0 1251058940 11234 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:43+00:00 1.0 1251058940 11232 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-28 16:55:14+00:00 1.0 1251058940 11231 10 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-11-28 16:50:14+00:00 1.0 1251058940 11230 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-11-28 16:30:14+00:00 1.0 1251058940 11159 new binance pump announcement ⏳date tuesday 30 november ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-11-23 16:28:09+00:00 1.0 1251058940 11158 pump result amazing pump with more than 183 btc volume which is close to 11million in volume with a peak of 52 that lasted more than 1 minute we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mda with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-11-23 16:26:14+00:00 1.0 1251058940 11156 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-23 14:55:12+00:00 1.0 1251058940 11155 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-11-23 14:46:04+00:00 1.0 1251058940 11154 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-11-23 14:30:23+00:00 1.0 1251058940 11113 new binance pump announcement ⏳date tuesday 24 november ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-11-20 09:48:49+00:00 1.0 1251058940 11112 hello everyone after a very long discussion with our our team we have decided to postpone our pump because we will coloborate our pump with other big channel to make more wolume in pumpcoins have already pumped and we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do next pum will be after 3 days on 24 of november so we have 3 days to prepare for it volume should be around 20 milions usd 2021-11-20 09:37:18+00:00 1.0 1251058940 11081 special offer just 30 hours the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are confident to say the upcoming sunday pump will be one of the biggest pumps we have done so far our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are also doing a private event exclusively for our vip members this week stephenandpump only 5 slots left please find the membership form here 2021-11-17 19:30:53+00:00 1.0 1251058940 11051 new binance pump announcement ⏳date sunday 21 november ⏰time 3 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-11-14 16:26:59+00:00 1.0 1251058940 11050 pump result amazing pump with more than 167 btc volume which is close to 11million in volume with a peak of 67 that lasted more than 2 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding nas with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump 2021-11-14 16:25:43+00:00 1.0 1251058940 11047 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-14 14:55:07+00:00 1.0 1251058940 11046 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-11-14 14:45:32+00:00 1.0 1251058940 10940 new binance pump announcement ⏳date sunday 14 november ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-11-07 17:57:01+00:00 1.0 1251058940 10939 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:55:20+00:00 1.0 1251058940 10936 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-11-07 16:55:23+00:00 1.0 1251058940 10935 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-11-07 16:45:16+00:00 1.0 1251058940 10839 new binance pump announcement ⏳date sunday 7 november ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of november is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended october with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-10-31 18:14:33+00:00 1.0 1251058940 10838 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:09:04+00:00 1.0 1251058940 10836 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:44+00:00 1.0 1251058940 10834 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-10-31 16:55:15+00:00 1.0 1251058940 10833 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-10-31 16:46:03+00:00 1.0 1251058940 10832 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump 2021-10-31 16:29:57+00:00 1.0 1251058940 10728 new binance pump announcement ⏳date sunday 31 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-10-24 18:45:15+00:00 1.0 1251058940 10724 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 18:43:25+00:00 1.0 1251058940 10723 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:01:16+00:00 1.0 1251058940 10721 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-10-24 16:55:08+00:00 1.0 1251058940 10720 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join 2021-10-24 16:45:03+00:00 1.0 1251058940 10657 special offer just 30 hours the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are confident to say the upcoming sunday pump will be one of the biggest pumps we have done so far our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are also doing a private event exclusively for our vip members this week stephenandpump only 3 slots left please find the membership form here 2021-10-20 04:51:51+00:00 1.0 1251058940 10638 new binance pump announcement ⏳date sunday 24 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-10-17 09:50:53+00:00 1.0 1251058940 10637 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets we know that this is the perfect market to schedule a pump in however currently some of the good coins have already pumped and the other ones lack pattern formation for a decent pump we strongly believe it is wiser to pump coins from their bottom rather from their top we hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly 2021-10-17 09:32:53+00:00 1.0 1251058940 10622 pump result the amount of volume generated in the first 2 minutes was enough to pump any good coin to more than 400 unfortunately we ran into an icerberg coin which means that this particular coin had unlimited sells no matter where the price moved to which prevented the possiblity of executing a decent pump our team has tried to keep the price up but was unsucessful due to the nature of this coin we invite everyone to take a look at the daily chart to understand more our reasoning behind this pick we decided to pick the coin that had the biggest dip in order to allow our members to buy at the cheapest possible price and maximize the amount of profits however this decision ended up backfiring as the pump did not succeed our team had the pure intention of boosting the price up to at least 400 in this pump for all our members but unfortunately it was impossible on this coin in the next pump we will make sure we pick a coin that we know for sure can be pumped to more than 400 and our team will make sure that we will reach that target once again by injecting a massive amount of btc during the pump after our members had bought already we hope some of our members managed to minimize the losses or make some profit at least during the multiple waves in the pump with that being said in the next pump we will absolutely make sure that we pick a coin we have experience in and that can definitely be pumped to a high price without facing any issue stay tuned for our next announcement 2021-10-10 18:44:36+00:00 1.0 1251058940 10620 new binance pump announcement ⏳date sunday 17 october ⏰time 5 pm gmt exchange binance +26 whale channels target 40 80 profit the alt season of october is coming and we will start this month strong with a huge 300+ push the signal will be free for all and everyone will be able to buy at a good price the fomo will be massive and we can be sure to see amazing results in our upcoming push we completed may with great success we ended september with a huge profit rate our vip members have won the total of the following profit rates our vip members buy 1 day before provided great profits we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group if you want to have access to the coin names 12 to 24 hours before each pump we invite you to join our vip group vip membership 2021-10-10 17:37:36+00:00 1.0 1251058940 10619 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:01:10+00:00 1.0 1251058940 10617 everyone 5 minutes left global fomo warming up next post will be coin name coin will be in btc pair login binance and keep an eye here 2021-10-10 16:55:35+00:00 1.0 1251058940 10616 15 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump ⬇️ 2021-10-10 16:45:29+00:00 1.0 1251058940 10615 30 minutes left until our pump on binance pump will be in btc pair invest in your future and be a partner in this great familywe i nform our vip members of the coin name 1 day before and they buy it send a message now hurry up we are the most reliable and best pump channel in the world vip members have the option to buy 1 day before — be on top of the market get our signals before everyone else for more details how to join stephenandpump ⬇️ 2021-10-10 16:30:04+00:00 1.0 1251058940 4945 sol hit 37941 huge quick profit 28 amazing pump call given to premium members to know next pump coin name ☎️ contact stephenandpump for premium membership 2020-09-09 19:29:25+00:00 1.0 1251058940 4716 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact stephenandpump for premium membership 2020-08-31 15:52:04+00:00 1.0 1251058940 3987 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact stephenandpump 2020-07-28 15:35:32+00:00 1.0 1251058940 3889 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact stephenandpump for premium membership 2020-07-23 15:23:01+00:00 1.0 1251058940 3874 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact stephenandpump for premium membership 2020-07-23 04:26:10+00:00 1.0 1251058940 3590 15 minutes left to pump on binance 2020-07-07 15:59:48+00:00 1.0 1251058940 3589 4 hour left to pump on binance to know coin name earlier join premium ☎ contact stephenandpump 2020-07-07 12:06:16+00:00 1.0 1251058940 3561 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact stephenandpump 2020-07-04 18:00:25+00:00 1.0 1251058940 3548 pump coin name gvt 2020-07-04 16:02:09+00:00 1.0 1251058940 3547 15 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact stephenandpump 2020-07-04 15:47:21+00:00 1.0 1251058940 3319 pump coin name evx 2020-06-24 16:02:26+00:00 1.0 1251058940 3318 30 minutes left to pump on binance 2020-06-24 15:33:31+00:00 1.0 1251058940 3275 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact stephenandpump 2020-06-24 03:39:11+00:00 1.0 1251058940 3138 10 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact stephenandpump 2020-06-15 15:52:40+00:00 1.0 1251058940 3108 pump result qsp start price 210 weve reached 299 huge quick profit 42 to know next pump coin name contact stephenandpump for premium membership 2020-06-14 00:57:44+00:00 1.0 1251058940 3102 pump coin name qsp 2020-06-13 16:01:01+00:00 1.0 1251058940 3101 5 minutes left to pump on binance 2020-06-13 15:57:09+00:00 1.0 1251058940 3028 pump coin name via 2020-06-10 16:00:38+00:00 1.0 1251058940 3027 next post will be coin name 2020-06-10 16:00:32+00:00 1.0 1251058940 3026 about 15 minutes left to pump on binance 2020-06-10 15:46:45+00:00 1.0 1251058940 2914 pump coin name ctxc 2020-06-03 16:09:18+00:00 1.0 1251058940 2913 next post will be coin name 2020-06-03 16:09:10+00:00 1.0 1251058940 2912 5 minutes left to pump on binance 2020-06-03 16:08:53+00:00 1.0 1251058940 1022 snt now hit 159 3rd target achieved within 13 hour ✅✅✅✅ huge quick profit 32 amazing breakout pump signal congrats premium members to know next pump coin ☎️ contact stephenandpump 2020-02-03 10:06:16+00:00 1.0 1251058940 194 go and cnd north top gainer on binance amazing calls by our team to know next pump coin name ☎️ contact stephenandpump 2019-12-11 16:02:45+00:00 1.0 1279502182 4726 mdt result 3rd target achieved in just 28 minutes ✅✅✅ huge quick profit 36 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact andrewwhales for premium membership 2020-09-01 03:54:56+00:00 1.0 1279502182 3902 evx result 2nd target achieved within 30 minutes ✅✅ one more very quick profit 20 to know next pump coin name earlier ☎️ contact andrewwhales 2020-07-28 19:29:02+00:00 1.0 1279502182 3812 cnd result 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 21 amazing calls by our team to know next pump coin name ☎️ contact andrewwhales for premium membership 2020-07-23 23:24:57+00:00 1.0 1279502182 3796 mith pump result all targets achieved within 115 hour ✅✅✅✅ one more huge quick profit 45 amazing pump call to premium members to know next pump coin name ☎️ contact andrewwhales for premium membership 2020-07-23 02:22:47+00:00 1.0 1279502182 3537 15 minutes left to pump on binance 2020-07-07 15:49:54+00:00 1.0 1279502182 3536 4 hour left to pump on binance to know coin name earlier join premium ☎ contact andrewwhales 2020-07-07 12:05:34+00:00 1.0 1279502182 3508 gvt result 2nd target achieved in just 21 minutes ✅✅ one more very quick profit 19 amazing calls by our team to know next pump coin name ☎️ contact andrewwhales 2020-07-04 17:11:14+00:00 1.0 1279502182 3506 pump coin name gvt 2020-07-04 17:09:17+00:00 1.0 1279502182 3505 15 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact andrewwhales 2020-07-04 17:08:49+00:00 1.0 1279502182 3269 pump coin name evx 2020-06-24 16:01:31+00:00 1.0 1279502182 3268 30 minutes left to pump on binance 2020-06-24 15:32:24+00:00 1.0 1279502182 3232 amb result 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 32 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact andrewwhales 2020-06-24 00:45:53+00:00 1.0 1279502182 3090 10 minutes left to pump on binance to know coin name earlier join premium and recover your losses ☎ contact andrewwhales 2020-06-15 16:55:00+00:00 1.0 1279502182 3056 pump result qsp start price 210 weve reached 299 huge quick profit 42 to know next pump coin name contact andrewwhales for premium membership 2020-06-14 01:33:57+00:00 1.0 1279502182 3050 pump coin name qsp 2020-06-13 16:02:11+00:00 1.0 1279502182 3048 5 minutes left to pump on binance 2020-06-13 16:00:51+00:00 1.0 1279502182 2977 pump coin name via 2020-06-10 18:30:57+00:00 1.0 1279502182 2850 pump coin name ctxc 2020-06-03 19:35:04+00:00 1.0 1279502182 2849 next post will be coin name 2020-06-03 19:29:30+00:00 1.0 1279502182 2848 5 minutes left to pump on binance 2020-06-03 19:29:09+00:00 1.0 1279502182 955 snt now hit 159 3rd target achieved within 13 hour ✅✅✅✅ huge quick profit 32 amazing breakout pump signal congrats premium members to know next pump coin ☎️ contact andrewwhales 2020-02-20 08:40:21+00:00 1.0 1279502182 168 go and cnd north top gainer on binance amazing calls by our team to know next pump coin name ☎️ contact andrewwhales 2020-02-18 01:02:49+00:00 1.0 1279502182 133 matic result 3rd target achieved within 53 minutes ✅✅✅ huge quick profit 32 so far to know next pump coin ☎️ contact andrewwhales 2020-02-17 13:54:55+00:00 1.0 1320118842 121424 oax pump almost every week good coin to buy and hold mark my words ‼️ 2022-01-22 17:03:22+00:00 1.0 1320118842 121418 next post will be coin name 2022-01-22 16:59:18+00:00 1.0 1320118842 121417 5 minutes left to pump on binance be ready with you btc 2022-01-22 16:55:11+00:00 1.0 1320118842 121415 15 minutes left to pump on binance 2022-01-22 16:45:53+00:00 1.0 1320118842 121414 30 minutes left to pump on binance 2022-01-22 16:30:09+00:00 1.0 1320118842 121407 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 13:54:48+00:00 1.0 1320118842 121380 next pump scheduled ⏰ saturday 22012022 at 5 pm gmt exchange binance this pump is going to be huge dont miss it to know coin name earlier join premium ☎️ contact apglobals 2022-01-22 08:28:48+00:00 1.0 1320118842 121229 pump result stx start price 4919 weve reached 6900 3rd targets achieved in just 4 hour ✅✅✅ huge quick profit 40 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-18 17:22:09+00:00 1.0 1320118842 121014 pump result glmr start price 20267 weve reached 32498 all targets achieved in just 30 hour ✅✅✅✅ huge quick profit 60 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-13 14:54:17+00:00 1.0 1320118842 120962 iris result hit 267 2nd target achieved in just 25 hour✅✅ huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2022-01-12 05:57:35+00:00 1.0 1320118842 120921 santos hit 10292 finally all targets achieved in just 2 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-11 10:29:12+00:00 1.0 1320118842 120919 pump result santos start price 7159 weve reached 9500 3rd target achieved in just 51 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-11 09:04:35+00:00 1.0 1320118842 120847 pump result phb start price 882 weve reached 1155 3rd target achieved in just 30 minutes ✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 09:02:07+00:00 1.0 1320118842 120839 pump result powr start price 1160 weve reached 1797 all targets achieved in just 20 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-09 06:54:40+00:00 1.0 1320118842 120766 pump result iris start price 206 weve reached 348 all targets achieved in just 55 hour ✅✅✅✅ huge quick profit 68 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-07 17:39:19+00:00 1.0 1320118842 120691 alcx result hit 9616 2nd target achieved in just 8 hour✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2022-01-06 06:43:26+00:00 1.0 1320118842 120559 pump result gxs start price 4283 weve reached 5694 3rd targets achieved in just 30 minutes ✅✅✅ huge quick profit 32 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2022-01-03 10:31:02+00:00 1.0 1320118842 120492 pump result nebl start price 2634 weve reached 4058 huge quick profit 53 in just 75 hour to know next pump coin name contact apglobals for premium membership 2022-01-02 17:31:51+00:00 1.0 1320118842 120472 ardr result hit 820 3rd target achieved in just 16 minutes ✅✅✅ huge quick profit 33 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2022-01-02 15:05:48+00:00 1.0 1320118842 120353 fxs result hit 90972 3rd target achieved in just 27 hour✅✅✅ huge quick profit 48 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-31 16:42:55+00:00 1.0 1320118842 120286 pump result gxs start price 4068 weve reached 5664 all targets achieved in just 31 minutes ✅✅✅✅ huge quick profit 39 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-29 13:07:19+00:00 1.0 1320118842 120263 pump result farm start price 1999 weve reached 5800 huge quick profit 190 in just 20 hour to know next pump coin name contact apglobals for premium membership 2021-12-28 16:49:27+00:00 1.0 1320118842 120258 pump result quick start price 5420 weve reached 11562 huge quick profit 106 in just 28 minutes to know next pump coin name contact apglobals for premium membership 2021-12-28 16:20:25+00:00 1.0 1320118842 120244 pump result hard start price 1704 weve reached 2718 all targets achieved in just 19 minutes ✅✅✅✅ huge quick profit 59 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-28 06:57:24+00:00 1.0 1320118842 120209 pump result utk start price 680 weve reached 979 all targets achieved in just 28 minutes ✅✅✅✅ huge quick profit 131 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-27 17:41:43+00:00 1.0 1320118842 120150 pump result lina start price 83 weve reached 111 all targets achieved in just 6 hour ✅✅✅✅ huge quick profit 101 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-26 11:28:21+00:00 1.0 1320118842 120115 pump result pha start price 825 weve reached 1290 all targets achieved in just 20 minutes ✅✅✅✅ huge quick profit 56 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 19:07:15+00:00 1.0 1320118842 120104 pump result flux start price 3404 weve reached 5828 all targets achieved in just 23 hour ✅✅✅✅ huge quick profit 71 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-25 17:25:11+00:00 1.0 1320118842 120078 mdt result hit 282 3rd target achieved in just 17 hour✅✅✅ huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-25 04:41:48+00:00 1.0 1320118842 120067 pump result appc start price 73 weve reached 105 3rd targets achieved in just 1 hour ✅✅✅ huge quick profit 43 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-24 17:34:19+00:00 1.0 1320118842 120060 pump result rdn start price 435 weve reached 816 huge quick profit 87 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 17:07:33+00:00 1.0 1320118842 120055 pump result evx start price 383 weve reached 540 huge quick profit 40 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-12-24 16:56:40+00:00 1.0 1320118842 120010 om result hit 431 3rd target achieved in just 14 minutes ✅✅✅ huge quick profit 23 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-23 15:53:29+00:00 1.0 1320118842 119970 pump result coti start price 634 weve reached 948 all targets achieved in just 36 hour ✅✅✅✅ huge quick profit 148 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-23 05:46:34+00:00 1.0 1320118842 119913 pump result ren start price 1058 weve reached 1543 all targets achieved in just 45 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-22 05:16:02+00:00 1.0 1320118842 119905 pump result jamsy start price 148 weve reached 251 all targets achieved in just 65 hour ✅✅✅✅ huge quick profit 69 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-21 19:35:29+00:00 1.0 1320118842 119853 pump result any start price 4166 weve reached 6057 all targets achieved in just 29 hour ✅✅✅✅ huge quick profit 45 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-20 18:15:53+00:00 1.0 1320118842 119817 dusk result hit 1339 3rd target achieved in just 15 hour✅✅✅ huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-20 08:06:30+00:00 1.0 1320118842 119805 any result hit 5511 3rd target achieved in just 21 hour✅✅✅ huge quick profit 32 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-20 07:24:17+00:00 1.0 1320118842 119787 pump result appc start price 161 weve reached 222 huge quick profit 37 in just 9 minutes to know next pump coin name contact apglobals for premium membership 2021-12-19 15:07:36+00:00 1.0 1320118842 119773 wan result hit 1818 3rd target achieved in just 11 minutes ✅✅✅ huge quick profit 1818 amazing pump calls by our team advance buy and sell targets ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-19 08:57:13+00:00 1.0 1320118842 119750 farm result hit 2700 3rd target achieved in just 2 minutes ✅✅✅ huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:45:18+00:00 1.0 1320118842 119739 fis result hit 3524 2nd target achieved in just 2 minutes ✅✅ one more huge quick profit 25 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-18 18:15:42+00:00 1.0 1320118842 119733 pump result tru start price 805 weve reached 1194 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 18:01:11+00:00 1.0 1320118842 119720 pump result cfx start price 496 weve reached 650 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 31 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 11:36:33+00:00 1.0 1320118842 119705 pump result qlc start price 75 weve reached 114 all targets achieved in just 40 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 10:07:44+00:00 1.0 1320118842 119701 pump result tct start price 70 weve reached 109 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 55 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-18 09:27:20+00:00 1.0 1320118842 119652 tct result hit 87 3rd target achieved in just 10 minutes ✅✅✅ huge quick profit 24 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-17 12:59:36+00:00 1.0 1320118842 119645 high result hit 8500 2nd target achieved in just 7 minutes ✅✅ huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-17 07:58:33+00:00 1.0 1320118842 119568 pump result gxs start price 2720 weve reached 4150 all targets achieved in just 25 hour ✅✅✅✅ huge quick profit 52 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-16 10:44:24+00:00 1.0 1320118842 119539 ramp result hit 582 3rd target achieved in just 65 hour✅✅✅ huge quick profit 48 amazing pump calls by our team you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-15 16:49:36+00:00 1.0 1320118842 119521 pump result voxel start price 5353 weve reached 8250 all targets achieved in just 18 hour ✅✅✅✅ huge quick profit 54 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-15 09:09:25+00:00 1.0 1320118842 119509 pump result doge start price 330 weve reached 463 all targets achieved in just 185 hour ✅✅✅✅ huge quick profit 120 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-14 20:00:01+00:00 1.0 1320118842 119504 voxel result hit 6595 3rd target achieved in just 24 minutes ✅✅✅ huge quick profit 23 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-14 13:39:03+00:00 1.0 1320118842 119328 pump result flux start price 6000 weve reached 9900 all targets achieved in just 33 minutes ✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-10 08:36:27+00:00 1.0 1320118842 119261 pump result mdt start price 129 weve reached 231 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 237 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-09 05:08:44+00:00 1.0 1320118842 119247 pump result ant start price 9002 weve reached 13000 all targets achieved in just 2 hour ✅✅✅✅ huge quick profit 44 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 18:58:24+00:00 1.0 1320118842 119219 pump result xtz start price 8322 weve reached 11567 all targets achieved in just 7 hour ✅✅✅✅ huge quick profit 115 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-08 06:55:30+00:00 1.0 1320118842 119185 pump result dusk start price 412 weve reached 855 all targets achieved in just 225 hour ✅✅✅✅ huge quick profit 107 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-07 14:07:44+00:00 1.0 1320118842 119161 pump result elf start price 980 weve reached 1781 all targets achieved in just 4 minutes✅✅✅✅ huge quick profit 81 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-06 17:27:03+00:00 1.0 1320118842 119156 grs result hit 2179 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 33 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-06 17:22:47+00:00 1.0 1320118842 119143 porto hit 11695 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 87 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-12-05 17:47:51+00:00 1.0 1320118842 119116 pump result lazio start price 8618 weve reached 13000 all targets achieved in just 50 minutes✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-05 07:57:17+00:00 1.0 1320118842 119111 santos result hit 13299 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-05 04:22:20+00:00 1.0 1320118842 119036 fio result hit 799 all targets achieved in 4 days✅✅✅✅ one more huge profit 142 ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-03 19:41:13+00:00 1.0 1320118842 119025 pump result mdt start price 112 weve reached 159 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 41 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 17:18:12+00:00 1.0 1320118842 119005 pump result gto start price 121 weve reached 192 all targets achieved in just 74 minutes✅✅✅✅ huge quick profit 58 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-03 10:24:31+00:00 1.0 1320118842 118984 pump result nuls start price 934 weve reached 3253 huge quick profit 248 to know next pump coin name contact apglobals for premium membership 2021-12-02 17:46:49+00:00 1.0 1320118842 118966 pump result gxs start price 1171 weve reached 2790 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 138 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-02 13:16:58+00:00 1.0 1320118842 118939 brd result hit 2830 all targets achieved in nust 2 days✅✅✅✅ one more huge profit 60 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-12-02 06:15:51+00:00 1.0 1320118842 118914 santos result hit 64967 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 48 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-12-01 11:23:25+00:00 1.0 1320118842 118910 pump result req start price 822 weve reached 1340 all targets achieved in just 5 hour ✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-12-01 11:19:12+00:00 1.0 1320118842 118869 pump result agix start price 417 weve reached 578 huge quick profit 38 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-11-30 18:42:43+00:00 1.0 1320118842 118765 pump result mda start price 1144 weve reached 1999 all targets achieved in just 8 minutes✅✅✅✅ huge quick profit 74 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 17:05:17+00:00 1.0 1320118842 118758 pump result evx start price 1180 weve reached 1931 all targets achieved in just 43 minutes✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 16:45:51+00:00 1.0 1320118842 118756 evx result hit 1544 3rd target achieved in just 9 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-28 15:09:21+00:00 1.0 1320118842 118725 pump result pnt start price 2315 weve reached 3471 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-28 07:41:42+00:00 1.0 1320118842 118624 pump result nu start price 1592 weve reached 2460 huge quick profit 54 to know next pump coin name contact apglobals for premium membership 2021-11-27 06:38:07+00:00 1.0 1320118842 118589 pump result pyr start price 5631 weve reached 9298 all targets achieved in just 75 hour✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:32:38+00:00 1.0 1320118842 118587 pump result gtc start price 1956 weve reached 2784 all targets achieved in just 8 hour✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-26 18:07:28+00:00 1.0 1320118842 118568 pump result storj start price 3836 weve reached 6116 huge quick profit 59 in just 12 hour to know next pump coin name contact apglobals for premium membership 2021-11-26 17:25:20+00:00 1.0 1320118842 118488 pump result aion start price 315 weve reached 623 huge quick profit 97 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-11-25 17:42:30+00:00 1.0 1320118842 118458 amb result hit 113 3rd target achieved in just 14 minutes ✅✅✅ one more huge quick profit 30 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump coin name 2021-11-25 10:50:22+00:00 1.0 1320118842 118443 pump result wabi start price 434 weve reached 1056 huge quick profit 143 in just 41 minutes to know next pump coin name contact apglobals for premium membership 2021-11-25 08:54:46+00:00 1.0 1320118842 118436 pump result brd start price 353 weve reached 2931 all targets achieved in just 3 minutes✅✅✅✅ and pumped hard huge quick profit 730 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-25 04:29:57+00:00 1.0 1320118842 118422 pump result ramp start price 591 weve reached 844 all targets achieved in just 49 minutes✅✅✅✅ huge quick profit 42 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 17:49:56+00:00 1.0 1320118842 118381 pump result drep start price 1886 weve reached 2799 all targets achieved in just 19 hour ✅✅✅✅ huge quick profit 48 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-24 06:33:39+00:00 1.0 1320118842 118325 pump result mda start price 1610 weve reached 2211 3rd target achieved in just 2 hour ✅✅✅ huge quick profit 37 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-23 15:03:44+00:00 1.0 1320118842 118320 next pump signal just shared in premium channel 2021-11-23 15:00:07+00:00 1.0 1320118842 118304 pump result iris start price 212 weve reached 373 huge quick profit 75 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-11-22 18:45:48+00:00 1.0 1320118842 118228 pump result dego start price 1583 weve reached 2373 all target achieved in just 22 hour ✅✅✅✅ huge quick profit 50 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 14:44:34+00:00 1.0 1320118842 118214 pump result nav start price 707 weve reached 1059 all target achieved in just 15 hour ✅✅✅✅ huge quick profit 49 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 10:23:46+00:00 1.0 1320118842 118170 pump result tct start price 60 weve reached 108 all target achieved in just 17 hour ✅✅✅✅ huge quick profit 80 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:52:51+00:00 1.0 1320118842 118166 pump result powr start price 1084 weve reached 1592 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-21 08:50:37+00:00 1.0 1320118842 118148 pump result gto start price 96 weve reached 156 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 62 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:38:27+00:00 1.0 1320118842 118141 pump result drep start price 1495 weve reached 3152 huge quick profit 110 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-11-20 18:24:47+00:00 1.0 1320118842 118136 pump result mith start price 88 weve reached 307 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 248 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 18:03:19+00:00 1.0 1320118842 118108 poly result hit 1500 3rd target achieved in just 5 hour✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-20 13:56:59+00:00 1.0 1320118842 118088 pump result mith start price 88 weve reached 153 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 73 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-20 08:16:02+00:00 1.0 1320118842 118044 mith result hit 114 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 17:25:12+00:00 1.0 1320118842 118031 lazio result hit 15493 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-19 14:25:04+00:00 1.0 1320118842 118026 dar result hit 5375 3rd target achieved in just 50 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:48:54+00:00 1.0 1320118842 118016 idex result hit 860 3rd target achieved in just 54 minutes ✅✅✅ one more huge quick profit 33 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-19 12:31:42+00:00 1.0 1320118842 118010 pump result idex start price 455 weve reached 669 all target achieved in just 145 hour ✅✅✅✅ huge quick profit 47 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-19 06:46:56+00:00 1.0 1320118842 117986 pump result storj start price 2794 weve reached 4089 all target achieved in just 34 hour ✅✅✅✅ huge quick profit 138 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 17:55:24+00:00 1.0 1320118842 117947 aergo result hit 856 3rd target achieved in just 39 minutes ✅✅✅ one more huge quick profit 37 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-18 05:47:25+00:00 1.0 1320118842 117933 pump result rose start price 344 weve reached 512 all target achieved in just 14 hour ✅✅✅✅ huge quick profit 146 using 3x leverage advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-18 05:10:56+00:00 1.0 1320118842 117874 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-17 03:01:29+00:00 1.0 1320118842 117870 pump result snm start price 808 weve reached 1180 all target achieved in just 35 hour ✅✅✅✅ huge quick profit 46 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-17 03:00:39+00:00 1.0 1320118842 117830 pump result porto start price 17066 weve reached 28188 all target achieved in just 8 minutes✅✅✅✅ huge quick profit 65 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 12:24:26+00:00 1.0 1320118842 117814 pump result powr start price 606 weve reached 1244 all target achieved in just 15 minutes✅✅✅✅ huge quick profit 105 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-16 03:58:24+00:00 1.0 1320118842 117716 pump result nas start price 87 weve reached 142 all target achieved in just 1 minute✅✅✅✅ huge quick profit 63 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-14 15:08:52+00:00 1.0 1320118842 117554 adx result hit 1485 2nd target achieved in just 8 minutes ✅✅ one more huge quick profit 22 amazing calls by our team so much quick profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-11 14:39:45+00:00 1.0 1320118842 117526 pump result ens start price 9137 weve reached 18000 all target achieved in just 185 hour✅✅✅✅ huge quick profit 97 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-11 06:13:24+00:00 1.0 1320118842 117423 pump result lpt start price 5769 weve reached 15220 huge quick profit 163 to know next pump coin name contact apglobals for premium membership 2021-11-09 18:25:03+00:00 1.0 1320118842 117374 pump result uma start price 2225 weve reached 3519 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-11-08 06:44:53+00:00 1.0 1320118842 117320 adx result hit 1796 3rd target achieved in just 11 minutes ✅✅✅ one more huge quick profit 29 amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-07 06:40:25+00:00 1.0 1320118842 117299 pump result rgt start price 7585 weve reached 11482 all target achieved in just 30 minutes✅✅✅✅ huge quick profit 51 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-06 06:46:23+00:00 1.0 1320118842 117297 you missed one more profit here is one more profit for premium members in just 30 minutes pump result 2021-11-06 06:46:23+00:00 1.0 1320118842 117267 pump result sys start price 540 weve reached 897 all target achieved in just 18 hour ✅✅✅✅ huge quick profit 66 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-05 11:54:56+00:00 1.0 1320118842 117222 fis result hit 4000 3rd target achieved in just 17 minutes ✅✅✅ one more huge quick profit 35 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-11-04 07:45:35+00:00 1.0 1320118842 117195 pump result badger start price 5302 weve reached 9063 all target achieved in just 13 minutes✅✅✅✅ huge quick profit 70 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-11-03 20:07:59+00:00 1.0 1320118842 117134 wrx result hit 3319 3rd target achieved in just 59 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-11-02 19:05:55+00:00 1.0 1320118842 117114 pump result oxt start price 820 weve reached 1222 one more huge profit 49 to know next pump coin name contact apglobals for premium membership 2021-11-02 16:08:29+00:00 1.0 1320118842 117035 pump result ast start price 403 weve reached 634 all target achieved in 2 days✅✅✅✅ one more huge profit 57 advance buy and sell targets given to premium members no pre pump to know next pump coin name contact apglobals for premium membership 2021-10-31 14:56:48+00:00 1.0 1320118842 116953 pump result mana start price 2237 weve reached 3713 all target achieved in just 24 hour ✅✅✅✅ huge quick profit 199 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-30 13:43:42+00:00 1.0 1320118842 116942 pump result vite start price 189 weve reached 257 3rd target achieved in just 15 minutes ✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-10-30 12:21:26+00:00 1.0 1320118842 116935 pump result dlt start price 103 weve reached 197 huge quick profit 91 within 75 hour to know next pump coin name contact apglobals for premium membership 2021-10-30 11:20:55+00:00 1.0 1320118842 116876 pump result mana start price 1423 weve reached 1978 huge quick profit 39 in just 95 hour to know next pump coin name contact apglobals for premium membership 2021-10-29 08:41:03+00:00 1.0 1320118842 116861 pump result gto start price 78 weve reached 108 all targets achieved in just 23 minutes ✅✅✅✅ huge quick profit 115 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-29 04:47:27+00:00 1.0 1320118842 116807 go hit 93 now 3rd target achieved in just 215 hour✅✅✅ huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-27 08:11:26+00:00 1.0 1320118842 116803 pump result 1inch start price 6787 weve reached 10323 1inch binance top gainer all targets achieved in just 12 minutes ✅✅✅✅ huge quick profit 156 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-10-27 08:01:04+00:00 1.0 1320118842 116697 pump result evx start price 1110 weve reached 2094 huge quick profit 88 to know next pump coin name contact apglobals for premium membership 2021-10-24 17:15:51+00:00 1.0 1320118842 116663 pump result go start price 71 weve reached 98 huge quick profit 38 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-10-23 10:58:14+00:00 1.0 1320118842 116575 pump result auction start price 6090 weve reached 9710 all targets achieved in just 10 hour ✅✅✅✅ huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2021-10-21 16:36:58+00:00 1.0 1320118842 116568 pump result firo start price 1352 weve reached 1885 3rd targets achieved in just 10 minutes ✅✅✅ huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-21 09:09:11+00:00 1.0 1320118842 116545 dnt result hit 376 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 81 using 3x leverage amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-21 05:09:53+00:00 1.0 1320118842 116445 pump result req start price 408 weve reached 586 all targets achieved in just 9 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-10-17 13:02:24+00:00 1.0 1320118842 116440 pump result sys start price 518 weve reached 820 all targets achieved in just 6 minutes ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-10-17 10:57:37+00:00 1.0 1320118842 116375 pump result nu start price 519 weve reached 4649 huge quick profit 792 in just 6 hour to know next pump coin name contact apglobals for premium membership 2021-10-15 13:01:19+00:00 1.0 1320118842 116341 pump result wabi start price 572 weve reached 800 huge quick profit 39 to know next pump coin name contact apglobals for premium membership 2021-10-14 15:14:33+00:00 1.0 1320118842 116093 stx result hit 3289 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 56 using 3x leverage amazing calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-09 14:21:39+00:00 1.0 1320118842 116081 pump result klay start price 3197 weve reached 7899 huge quick profit 146 in just 4 minutes to know next pump coin name contact apglobals for premium membership 2021-10-09 14:03:01+00:00 1.0 1320118842 116076 pump result data start price 249 weve reached 406 huge quick profit 63 to know next pump coin name contact apglobals for premium membership 2021-10-09 13:46:16+00:00 1.0 1320118842 115997 juv hit 3790 now 3rd target achieved in just 19 hour✅✅✅ huge quick profit 35 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-10-07 18:31:24+00:00 1.0 1320118842 115930 ong result hit 3580 3rd target achieved in just 27 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-07 05:31:35+00:00 1.0 1320118842 115873 pump result hive start price 1425 weve reached 3056 huge quick profit 114 in just 42 minutes to know next pump coin name contact apglobals for premium membership 2021-10-06 06:11:00+00:00 1.0 1320118842 115863 ardr result hit 878 3rd target achieved in just 125 hour✅✅✅ one more huge quick profit 36 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-06 05:35:29+00:00 1.0 1320118842 115824 stpt to the moon hit 235 huge quick profit 94 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-10-05 11:54:25+00:00 1.0 1320118842 115781 pump result ez start price 13499 weve reached 21000 huge quick profit 56 in just 5 hour to know next pump coin name contact apglobals for premium membership 2021-10-03 17:05:31+00:00 1.0 1320118842 115627 pump result stpt start price 117 weve reached 188 huge quick profit 60 in just 15 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 14:31:56+00:00 1.0 1320118842 115617 pump result poly start price 1333 weve reached 1815 huge quick profit 36 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-09-30 09:54:22+00:00 1.0 1320118842 115503 pump result adx start price 1153 weve reached 1688 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-09-26 19:53:18+00:00 1.0 1320118842 115483 pump result lto start price 549 weve reached 850 huge quick profit 164 using 3x leverage in just 34 hour to know next pump coin name contact apglobals for premium membership 2021-09-26 18:19:51+00:00 1.0 1320118842 115443 pump result nuls start price 1071 weve reached 1600 huge quick profit 49 in just 11 hour to know next pump coin name contact apglobals for premium membership 2021-09-25 18:06:14+00:00 1.0 1320118842 115421 pump result celr start price 293 weve reached 447 all targets achieved in just 115 hour ✅✅✅ huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-09-25 05:15:48+00:00 1.0 1320118842 115242 pump result nmr start price 967 weve reached 1377 3rd targets achieved in just 15 hour ✅✅✅ huge quick profit 127 using 3x leverage to know next pump coin name contact apglobals for premium membership 2021-09-22 05:01:46+00:00 1.0 1320118842 115209 acm result hit 2768 3rd target achieved in just 8 minutes ✅✅✅ one more huge quick profit 27 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-21 09:07:31+00:00 1.0 1320118842 115141 pump result oax start price 407 weve reached 631 all targets achieved in just 21 hour ✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-19 17:44:54+00:00 1.0 1320118842 115074 om result hit 882 3rd target achieved in just 2 minutes ✅✅✅ one more huge quick profit 40 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-09-18 19:45:56+00:00 1.0 1320118842 115064 pump result cfx start price 675 weve reached 1064 all targets achieved in just 13 minutes ✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-09-18 17:27:06+00:00 1.0 1320118842 115047 nmr result hit 1298 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 76 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-18 06:19:11+00:00 1.0 1320118842 114903 front result hit 4300 3rd target achieved in just 26 hour✅✅✅ one more huge quick profit 40 amazing pump calls by our team so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 16:54:07+00:00 1.0 1320118842 114898 quick result hit 13000 3rd target achieved in just 4 hour✅✅✅ one more huge quick profit 32 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-15 11:29:32+00:00 1.0 1320118842 114797 pump result poly start price 1997 weve reached 1378 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-09-13 06:55:31+00:00 1.0 1320118842 114650 pond result hit 273 all targets achieved in 3 days✅✅✅✅ one more huge profit 50 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-10 15:24:43+00:00 1.0 1320118842 114595 nav result hit 1282 3rd target achieved in 2 days✅✅✅ one more huge profit 37 amazing profits for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 17:42:44+00:00 1.0 1320118842 114575 front result hit 4770 3rd target achieved in just 45 hour✅✅✅ one more huge quick profit 35 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-09 16:41:38+00:00 1.0 1320118842 114499 elf result hit 2138 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 31 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-08 04:31:17+00:00 1.0 1320118842 114448 pump result rose start price 501 weve reached 717 all targets achieved in just 55 minutes ✅✅✅✅ huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-09-07 10:33:11+00:00 1.0 1320118842 114386 pump result cdt start price 88 weve reached 137 all targets achieved in just 5 hour✅✅✅✅ huge quick profit 55 to know next pump coin name contact apglobals for premium membership 2021-09-06 09:48:01+00:00 1.0 1320118842 114354 rose hit 417 finally all targets achieved in just 17 hour✅✅✅✅ huge quick profit 148 using 3x leverage amazing pump calls by our team the longer you wait more you lose profit still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-06 04:57:05+00:00 1.0 1320118842 114345 pump result vib start price 155 weve reached 286 huge quick profit 84 to know next pump coin name contact apglobals for premium membership 2021-09-05 17:24:02+00:00 1.0 1320118842 114292 idex result hit 195 3rd target achieved in just 15 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team still thinking and losing daily huge profit ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-05 08:43:32+00:00 1.0 1320118842 114256 ctxc result hit 725 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 32 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-09-05 04:17:58+00:00 1.0 1320118842 114183 om result hit 649 3rd target achieved in just 12 hour✅✅✅ one more huge quick profit 34 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-03 06:46:19+00:00 1.0 1320118842 114146 sys result hit 661 3rd target achieved in just 44 minutes ✅✅✅ one more huge quick profit 28 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-02 14:03:51+00:00 1.0 1320118842 114086 elf result hit 1260 3rd target achieved in just 12 minutes ✅✅✅ one more huge quick profit 26 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-09-01 12:24:36+00:00 1.0 1320118842 114023 pump result ar start price 8674 weve reached 14000 huge quick profit 60 in just 10 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:13:33+00:00 1.0 1320118842 114018 pump result rose start price 238 weve reached 308 huge quick profit 30 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-31 10:07:02+00:00 1.0 1320118842 113980 pump result nas start price 108 weve reached 144 3rd targets achieved in just 17 minutes ✅✅✅ huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2021-08-30 16:23:09+00:00 1.0 1320118842 113973 celo hit 22800 finally all targets achieved in 3 days✅✅✅✅ one more huge profit 192 amazing pump calls by our team the longer you wait more you lose profit hope you understood ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-30 14:49:06+00:00 1.0 1320118842 113739 aergo result hit 750 3rd target achieved in just 3 minutes ✅✅✅ one more huge quick profit 37 so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-25 06:52:27+00:00 1.0 1320118842 113681 firo result hit 1968 3rd target achieved in just 25 hour✅✅✅ one more huge quick profit 30 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-23 14:55:00+00:00 1.0 1320118842 113659 pump result fxs start price 853 weve reached 1240 huge quick profit 45 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-08-23 06:59:35+00:00 1.0 1320118842 113654 pump result lrc start price 768 weve reached 1257 huge quick profit 63 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-23 06:53:09+00:00 1.0 1320118842 113642 nano result hit 1571 2nd target achieved in just 7 minutes ✅✅ one more huge quick profit 19 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-22 14:06:22+00:00 1.0 1320118842 113256 twt hit 1658 finally all targets achieved in just 115 hour✅✅✅✅ huge quick profit 44 amazing pump calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-15 10:02:01+00:00 1.0 1320118842 113122 clv result hit 4035 3rd target achieved in just 41 hour✅✅✅ one more huge quick profit 41 amazing pump calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-12 07:09:46+00:00 1.0 1320118842 113061 pump result req start price 175 weve reached 300 huge quick profit 71 in just 16 hour to know next pump coin name contact apglobals for premium membership 2021-08-11 03:38:06+00:00 1.0 1320118842 113045 pump result iotx start price 71 weve reached 122 huge quick profit 71 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-08-10 16:38:09+00:00 1.0 1320118842 112989 pump result quick start price 947 weve reached 1496 all targets achieved in just 33 hour ✅✅✅✅ huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-08-09 17:24:40+00:00 1.0 1320118842 112981 og result hit 1778 3rd target achieved in just 95 hour✅✅✅ one more huge quick profit 43 amazing pump calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-09 15:11:39+00:00 1.0 1320118842 112958 pump result atm start price 3658 weve reached 4956 all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-08-09 07:12:28+00:00 1.0 1320118842 112907 pump result torn start price 10112 weve reached 14700 all targets achieved in just 7 minutes ✅✅✅✅ huge quick profit 45 to know next pump coin name contact apglobals for premium membership 2021-08-07 17:26:49+00:00 1.0 1320118842 112864 psg result hit 9463 all targets achieved in just 27 hour✅✅✅✅ one more huge quick profit 63 amazing pump calls by our team to know next pump signal ☎️ contact apglobals for premium membership 2021-08-07 03:29:21+00:00 1.0 1320118842 112832 pump result gxs start price 1351 weve reached 2129 all targets achieved in just 15 hour✅✅✅✅ huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-08-06 12:55:09+00:00 1.0 1320118842 112824 pump result om start price 449 weve reached 598 huge quick profit 33 in just 39 minutes to know next pump coin name contact apglobals for premium membership 2021-08-06 09:35:00+00:00 1.0 1320118842 112799 pump result om start price 368 weve reached 647 huge quick profit 75 in just 8 hour to know next pump coin name contact apglobals for premium membership 2021-08-05 15:15:08+00:00 1.0 1320118842 112780 tru pumped hard hit 3060 huge quick profit 595 from our entry price of 440 to know next pump coin name ☎️ contact apglobals 2021-08-05 09:29:03+00:00 1.0 1320118842 112763 pump result tru start price 440 weve reached 1237 huge quick profit 181 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-08-05 06:01:06+00:00 1.0 1320118842 112748 pump result tvk start price 563 weve reached 723 huge quick profit 28 in just 55 minutes to know next pump coin name contact apglobals for premium membership 2021-08-05 04:38:45+00:00 1.0 1320118842 112662 nmr pump result start price 1009 price hit 1450 all targets achieved in just 33 minutes ✅✅✅✅ one more huge quick profit 44 amazing pump call for premium members advance buy and sell targets given to them to know next pump coin name ☎️ contact apglobals for premium membership 2021-08-03 05:09:46+00:00 1.0 1320118842 112616 rep result hit 7382 2nd target achieved in just 12 minutes ✅✅ one more huge quick profit 51 using 3x leverage amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-08-02 03:47:14+00:00 1.0 1320118842 112556 ardr result hit 870 all targets achieved in just 32 hour✅✅✅✅ one more huge quick profit 97 amazing pump calls by our team told you you could recover fees in just 24 hour but i think you hate money to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-31 04:54:39+00:00 1.0 1320118842 112467 qnt result hit 3700 2nd target achieved in just 2 hour✅✅ one more huge quick profit 28 amazing pump calls by our team to know next pump signal ☎️ contact apglobals 2021-07-29 12:06:18+00:00 1.0 1320118842 112410 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-28 18:38:34+00:00 1.0 1320118842 112366 pump result lto start price 525 weve reached 698 huge quick profit 32 in just 15 minutes to know next pump coin name contact apglobals for premium membership 2021-07-27 10:00:32+00:00 1.0 1320118842 112318 gas result hit 2675 3rd target achieved in just 31 minutes ✅✅✅ one more huge quick profit 29 amazing pump call given to premium members huge quick profit to know next pump coin name ☎️ contact apglobals 2021-07-26 14:24:20+00:00 1.0 1320118842 112270 pump result drep start price 1901 weve reached 2859 huge quick profit 50 in just 25 hour to know next pump coin name contact apglobals for premium membership 2021-07-25 17:42:31+00:00 1.0 1320118842 112260 rdn hit 1380 finally all targets achieved in just 7 hour✅✅✅✅ huge quick profit 58 amazing calls by our team amazing pump call ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-25 17:02:32+00:00 1.0 1320118842 112205 rep pump result start price 5237 price hit 8461 huge quick profit 61 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-24 08:44:23+00:00 1.0 1320118842 112169 c98 result hit 3449 3rd target achieved in just 11 hour ✅✅✅ one more huge quick profit 33 amazing calls by our team told you you could recover fees in just 24 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-24 04:13:05+00:00 1.0 1320118842 112139 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-23 11:37:10+00:00 1.0 1320118842 111958 pump result klay start price 3099 weve reached 4199 huge quick profit 35 in just 6 minutes to know next pump coin name contact apglobals for premium membership 2021-07-20 07:03:57+00:00 1.0 1320118842 111931 pump result dash start price 3732 weve reached 5928 huge quick profit 58 in just 5 minutes to know next pump coin name contact apglobals for premium membership 2021-07-19 16:27:43+00:00 1.0 1320118842 111737 fis result start price 2441 price hit 3285 huge quick profit 34 in just 19 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-15 16:02:26+00:00 1.0 1320118842 111506 pump result poa start price 129 weve reached 210 huge quick profit 62 in just 9 hour to know next pump coin name contact apglobals for premium membership 2021-07-11 17:04:58+00:00 1.0 1320118842 111467 pump result beam start price 1394 weve reached 1952 huge quick profit 40 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-07-11 06:43:26+00:00 1.0 1320118842 111435 auction hit 8671 now 2nd target achieved in just 27 minutes ✅✅ huge quick profit 20 ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-10 17:27:57+00:00 1.0 1320118842 111409 pump result auction start price 4339 weve reached 7177 huge quick profit 65 in just 35 hour to know next pump coin name contact apglobals for premium membership 2021-07-09 16:22:04+00:00 1.0 1320118842 111376 forth result start price 5059 price hit 7271 one more huge quick profit 43 in just 29 hour the longer you wait more you lose profit what are you waiting for join premium and grab next pump signal ☎️ contact apglobals 2021-07-08 16:23:22+00:00 1.0 1320118842 111370 oxt result start price 848 price hit 1201 huge quick profit 41 in just 7 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-08 15:01:36+00:00 1.0 1320118842 111338 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-07-07 15:31:05+00:00 1.0 1320118842 111239 mln result 3rd target achieved in just 29 minutes ✅✅✅ one more huge quick profit 28 amazing calls by our team congrats premium members join premium and grab next pump signal ☎️ contact apglobals for premium membership 2021-07-05 08:09:07+00:00 1.0 1320118842 111222 grs result start price 1855 price hit 2486 one more huge quick profit 34 in just 22 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-05 05:44:10+00:00 1.0 1320118842 111208 glm result start price 887 price hit 1174 one more huge quick profit 32 in just 40 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2021-07-04 01:49:47+00:00 1.0 1320118842 111173 qkc result start price 49 price hit 64 one more huge quick profit 30 in just 1 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-07-02 03:30:47+00:00 1.0 1320118842 111033 snt result 3rd target achieved in just 15 minutes ✅✅✅ one more huge quick profit 22 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-29 06:19:53+00:00 1.0 1320118842 111016 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-28 19:45:07+00:00 1.0 1320118842 111012 pump result ppt start price 4108 weve reached 6685 huge quick profit 62 in just 28 hour to know next pump coin name contact apglobals for premium membership 2021-06-28 19:40:07+00:00 1.0 1320118842 110973 icp result 3rd target achieved in just 135 hour✅✅✅ one more huge quick profit 30 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-28 04:40:54+00:00 1.0 1320118842 110958 ctsi breakout result start price 1117 price hit 1770 huge quick profit 58 in just 20 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-06-27 19:06:54+00:00 1.0 1320118842 110935 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-27 10:54:32+00:00 1.0 1320118842 110916 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-26 13:24:46+00:00 1.0 1320118842 110912 pump result cfx start price 671 weve reached 1000 huge quick profit 49 in just 2 hour to know next pump coin name contact apglobals for premium membership 2021-06-26 12:45:24+00:00 1.0 1320118842 110906 pump result dnt start price 385 weve reached 480 huge quick profit 24 in just 22 minutes to know next pump coin name contact apglobals for premium membership 2021-06-26 12:38:40+00:00 1.0 1320118842 110896 pump result snm start price 431 weve reached 701 huge quick profit 61 in just 7 hour to know next pump coin name contact apglobals for premium membership 2021-06-26 04:36:33+00:00 1.0 1320118842 110815 lpt result start price 6757 price hit 12463 huge quick profit 85 in just 9 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-06-23 08:25:05+00:00 1.0 1320118842 110766 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-21 15:21:28+00:00 1.0 1320118842 110751 dnt pump result start price 359 price hit 560 huge quick profit 55 in just 16 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-21 04:52:44+00:00 1.0 1320118842 110731 pump result wabi start price 900 weve reached 1249 huge quick profit 38 in just 3 minutes to know next pump coin name contact apglobals for premium membership 2021-06-20 17:07:37+00:00 1.0 1320118842 110700 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-19 18:09:24+00:00 1.0 1320118842 110697 pols pump result start price 3612 price hit 4740 huge quick profit 31 in just 4 minutes to know next pump coin name ☎️ contact apglobals 2021-06-19 17:21:09+00:00 1.0 1320118842 110640 mir result start price 1198 price hit 1928 huge quick profit 61 in just 19 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-18 11:00:14+00:00 1.0 1320118842 110613 pump result nu start price 788 weve reached 1100 huge quick profit 39 in just 19 minutes to know next pump coin name contact apglobals for premium membership 2021-06-17 17:06:03+00:00 1.0 1320118842 110608 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-17 15:23:44+00:00 1.0 1320118842 110522 pump result ava start price 779 weve reached 1003 huge quick profit 28 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-06-16 14:05:24+00:00 1.0 1320118842 110483 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-06-16 03:50:23+00:00 1.0 1320118842 110418 hard result 2nd target achieved in just 34 hour ✅✅ one more huge quick profit 30 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-14 18:45:09+00:00 1.0 1320118842 110382 ata pump result start price 1866 price hit 2780 all targets achieved in just 66 minutes ✅✅✅✅ huge quick profit 49 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-13 06:13:51+00:00 1.0 1320118842 110325 chz result 2nd target achieved in just 33 minutes ✅✅ huge quick profit 60 using 5x leverage amazing calls by our team the longer you wait more you lose profit what are you waiting for ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-11 09:08:00+00:00 1.0 1320118842 110311 pump result asr start price 1517 weve reached 2736 huge quick profit 80 in just 145 hour to know next pump coin name contact apglobals for premium membership 2021-06-11 07:16:01+00:00 1.0 1320118842 110293 stpt pump result start price 136 price hit 213 all targets achieved in just 23 hour✅✅✅✅ one more huge quick profit 57 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-11 05:17:38+00:00 1.0 1320118842 110286 gtc pump result start price 3107 price hit 4863 all targets achieved in just 75 hour✅✅✅✅ one more huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-11 04:32:36+00:00 1.0 1320118842 110258 idex pump result start price 150 price hit 246 all targets achieved in just 2 hour✅✅✅✅ one more huge quick profit 64 amazing pump calls by our team advance buy and sell targets given to premium members still thinking and losing daily huge profit to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-10 10:44:57+00:00 1.0 1320118842 110209 hard pump result start price 1902 price hit 2985 all targets achieved in just 26 minutes ✅✅✅✅ huge quick profit 56 amazing pump calls by our team advance buy and sell targets given to premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-10 04:26:39+00:00 1.0 1320118842 110166 pump result data start price 269 weve reached 737 huge quick profit 173 in just 13 hour to know next pump coin name contact apglobals for premium membership 2021-06-09 13:45:00+00:00 1.0 1320118842 110106 bcd hit 11520 finally all targets achieved in just 11 hour✅✅✅✅ huge quick profit 69 amazing calls by our team told you we have shared breakout pump signal which will give you 2060 profit in few hours did you take it seriously no i think you hate money ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-09 03:53:34+00:00 1.0 1320118842 110028 pump result ar start price 4740 weve reached 6280 huge quick profit 32 in just 4 hour to know next pump coin name contact apglobals for premium membership 2021-06-07 15:16:59+00:00 1.0 1320118842 110017 pump result dock start price 184 weve reached 293 huge quick profit 59 in just 3 hour to know next pump coin name contact apglobals for premium membership 2021-06-07 02:43:32+00:00 1.0 1320118842 109993 pump result pond start price 250 weve reached 503 huge quick profit 101 in just 19 minutes to know next pump coin name contact apglobals for premium membership 2021-06-06 18:35:44+00:00 1.0 1320118842 109972 perl result all targets achieved in just 68 minutes ✅✅✅✅ one more huge quick profit signals 103 amazing calls by our team congrats premium members you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-06 16:51:44+00:00 1.0 1320118842 109930 pump result iris start price 222 weve reached 456 huge quick profit 105 in just 10 minutes to know next pump coin name contact apglobals for premium membership 2021-06-06 07:48:20+00:00 1.0 1320118842 109922 nbs result all targets achieved in just 8 minutes ✅✅✅✅ huge quick profit 70 amazing pump calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-06-06 07:05:12+00:00 1.0 1320118842 109850 nu result start price 1052 price hit 1386 one more huge quick profit 31 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-04 09:48:12+00:00 1.0 1320118842 109800 pump result sun start price 792 weve reached 1022 huge quick profit 29 in just 1 hour to know next pump coin name contact apglobals for premium membership 2021-06-03 13:07:12+00:00 1.0 1320118842 109772 gxs pump result all targets achieved in just 5 hour ✅✅✅✅ one more huge quick profit 54 amazing pump by our team still thinking and losing daily huge profit we share advance buy and sell targets to premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-03 06:08:02+00:00 1.0 1320118842 109675 doge result start price 927 price hit 1211 huge quick profit 31 in just 16 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-06-02 13:11:50+00:00 1.0 1320118842 109578 pump result eps start price 2165 weve reached 3180 huge quick profit 47 to know next pump coin name contact apglobals for premium membership 2021-05-31 08:07:16+00:00 1.0 1320118842 109516 pump result axs start price 13286 weve reached 17220 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-29 16:23:29+00:00 1.0 1320118842 109411 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-28 04:14:36+00:00 1.0 1320118842 109385 pump result bar start price 4243 weve reached 6133 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-05-27 12:42:26+00:00 1.0 1320118842 109270 pump result skl start price 908 weve reached 1471 huge quick profit 62 to know next pump coin name contact apglobals for premium membership 2021-05-26 18:00:55+00:00 1.0 1320118842 109264 pump result nxs start price 2487 weve reached 3631 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-05-26 17:06:09+00:00 1.0 1320118842 109242 pump result tvk start price 445 weve reached 699 huge quick profit 57 to know next pump coin name contact apglobals for premium membership 2021-05-26 12:29:27+00:00 1.0 1320118842 109228 pump result ramp start price 502 weve reached 968 huge quick profit 93 to know next pump coin name contact apglobals for premium membership 2021-05-26 10:26:46+00:00 1.0 1320118842 109140 dock result 3rd target achieved in just 19 minutes ✅✅✅ huge quick profit 28 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-25 18:05:08+00:00 1.0 1320118842 109131 pump result hard start price 1664 weve reached 2595 huge quick profit 56 to know next pump coin name contact apglobals for premium membership 2021-05-25 16:41:54+00:00 1.0 1320118842 109105 pump result oxt start price 1009 weve reached 1430 huge quick profit 41 to know next pump coin name contact apglobals for premium membership 2021-05-25 14:25:21+00:00 1.0 1320118842 109050 pump result via start price 2070 weve reached 2677 huge quick profit 29 to know next pump coin name contact apglobals for premium membership 2021-05-24 18:15:09+00:00 1.0 1320118842 109044 pump result tct start price 76 weve reached 96 huge quick profit 26 to know next pump coin name contact apglobals for premium membership 2021-05-24 18:10:35+00:00 1.0 1320118842 109020 pump result rdn start price 1039 weve reached 1464 huge quick profit 40 to know next pump coin name contact apglobals for premium membership 2021-05-24 13:47:52+00:00 1.0 1320118842 108944 pump result unfi start price 18678 weve reached 39410 huge quick profit 111 to know next pump coin name contact apglobals for premium membership 2021-05-24 03:31:46+00:00 1.0 1320118842 108770 pump result fis start price 3785 weve reached 6754 huge quick profit 78 to know next pump coin name contact apglobals for premium membership 2021-05-21 12:32:16+00:00 1.0 1320118842 108744 pump result elf start price 828 weve reached 1111 huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-05-21 09:12:28+00:00 1.0 1320118842 108718 pump result ong start price 1939 weve reached 8000 huge quick profit 312 to know next pump coin name contact apglobals for premium membership 2021-05-21 04:22:35+00:00 1.0 1320118842 108709 pump result cvc start price 965 weve reached 1298 huge quick profit 34 to know next pump coin name contact apglobals for premium membership 2021-05-21 02:34:46+00:00 1.0 1320118842 108557 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-19 16:27:13+00:00 1.0 1320118842 108546 ethusdt result 2nd target achieved in just 22 minutes ✅✅ one more huge quick profit 57 using 5x leverage ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-19 16:02:30+00:00 1.0 1320118842 108494 ong result 3rd target achieved in just 18 minutes ✅✅✅ one more huge quick profit 25 ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-19 10:00:34+00:00 1.0 1320118842 108475 pump result celr start price 128 weve reached 194 huge quick profit 51 to know next pump coin name contact apglobals for premium membership 2021-05-19 07:01:08+00:00 1.0 1320118842 108431 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-18 18:49:19+00:00 1.0 1320118842 108391 pump result ark start price 3497 weve reached 5325 huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-05-18 15:07:46+00:00 1.0 1320118842 108313 pump result celo start price 10402 weve reached 14997 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-05-17 18:24:07+00:00 1.0 1320118842 108306 pump result alice start price 23448 weve reached 30504 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-17 16:11:56+00:00 1.0 1320118842 108210 nmr hit 1980 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 told you you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-16 10:53:57+00:00 1.0 1320118842 108200 nmr result 3rd target achieved in just 6 minutes ✅✅✅ one more huge quick profit 31 amazing pump call by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-16 10:00:41+00:00 1.0 1320118842 108169 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-15 20:02:41+00:00 1.0 1320118842 108129 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-15 09:08:26+00:00 1.0 1320118842 108097 pump result juv start price 3222 weve reached 4605 huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-05-15 06:13:44+00:00 1.0 1320118842 108074 pump result atm start price 4682 weve reached 9787 huge quick profit 109 to know next pump coin name contact apglobals for premium membership 2021-05-15 05:11:11+00:00 1.0 1320118842 107951 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-13 19:15:31+00:00 1.0 1320118842 107927 pump result chr start price 572 weve reached 814 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2021-05-13 11:56:38+00:00 1.0 1320118842 107921 pump result nano start price 1619 weve reached 3595 huge quick profit 122 to know next pump coin name contact apglobals for premium membership 2021-05-13 11:27:55+00:00 1.0 1320118842 107883 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-12 17:13:50+00:00 1.0 1320118842 107878 pump result iris start price 297 weve reached 427 huge quick profit 43 to know next pump coin name contact apglobals for premium membership 2021-05-12 16:46:53+00:00 1.0 1320118842 107871 pump result atm start price 1942 weve reached 2630 huge quick profit 35 to know next pump coin name contact apglobals for premium membership 2021-05-12 16:34:18+00:00 1.0 1320118842 107865 pump result nas start price 195 weve reached 255 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2021-05-12 15:27:24+00:00 1.0 1320118842 107824 pump result lrc start price 965 weve reached 1527 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-05-12 07:55:51+00:00 1.0 1320118842 107787 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-11 19:16:39+00:00 1.0 1320118842 107700 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-10 19:32:31+00:00 1.0 1320118842 107670 ckb hit 71 finally all targets achieved in just 32 minutes ✅✅✅✅ huge quick profit 57 amazing calls by our team congrats premium members so much profit for premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-10 10:27:13+00:00 1.0 1320118842 107605 pump result rlc start price 11423 weve reached 20409 huge quick profit 78 to know next pump coin name contact apglobals for premium membership 2021-05-10 05:38:13+00:00 1.0 1320118842 107597 pump result vidt start price 2221 weve reached 3130 huge quick profit 40 to know next pump coin name contact apglobals for premium membership 2021-05-10 04:24:00+00:00 1.0 1320118842 107583 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-09 19:21:02+00:00 1.0 1320118842 107479 ctsi result 2nd target achieved in just 33 minutes ✅✅ one more huge quick profit 26 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-08 16:59:26+00:00 1.0 1320118842 107471 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-05-08 14:36:12+00:00 1.0 1320118842 107394 pump result aion start price 734 weve reached 1150 huge quick profit 56 to know next pump coin name contact apglobals for premium membership 2021-05-07 16:30:51+00:00 1.0 1320118842 107385 bcd hit 18000 finally all targets achieved in just 39 minutes ✅✅✅✅ huge quick profit 47 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-07 14:48:53+00:00 1.0 1320118842 107365 firo result start price 2943 price hit 4326 huge quick profit 47 in just 1 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-07 12:44:13+00:00 1.0 1320118842 107282 etc result start price 13954 price hit 25690 huge quick profit 84 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-06 16:06:20+00:00 1.0 1320118842 107194 sys result start price 1195 price hit 1600 huge quick profit 33 in just 18 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 15:02:15+00:00 1.0 1320118842 107176 pnt hit 6722 finally all targets achieved in just 58 minutes ✅✅✅✅ huge quick profit 78 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 12:55:12+00:00 1.0 1320118842 107171 pnt result 2nd target achieved in just 39 minutes ✅✅ one more huge quick profit 22 ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-05 12:28:38+00:00 1.0 1320118842 107038 iris result all targets achieved in just 225 hour✅✅✅✅ huge quick profit 56 amazing calls by our team congrats premium members you could recover fees in just 24 hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-03 17:27:22+00:00 1.0 1320118842 107031 wabi result start price 1038 price hit 1400 huge quick profit 34 in just 13 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-05-03 16:50:29+00:00 1.0 1320118842 106908 twt result start price 1372 price hit 2075 huge quick profit 51 in just 12 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-05-02 18:51:07+00:00 1.0 1320118842 106852 nano result start price 1604 price hit 2118 huge quick profit 31 in just 25 hour ☎️ contact apglobals for premium membership and grab next pump coin name 2021-05-02 07:22:01+00:00 1.0 1320118842 106743 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 19:15:14+00:00 1.0 1320118842 106738 fis result start price 4592 price hit 7900 huge quick profit 72 in just 2 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-04-30 18:00:08+00:00 1.0 1320118842 106726 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 12:05:31+00:00 1.0 1320118842 106690 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-30 06:37:52+00:00 1.0 1320118842 106687 pump result rcn start price 244 weve reached 356 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2021-04-30 05:32:41+00:00 1.0 1320118842 106680 iotx result start price 97 price hit 160 huge quick profit 64 in just 3 hour to know next pump signal ☎️ contact apglobals for premium membership 2021-04-30 05:05:18+00:00 1.0 1320118842 106671 vite hit 500 finally all target achieved in 3 days✅✅✅✅ one more huge profit 80 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-30 04:29:41+00:00 1.0 1320118842 106619 eps result start price 3557 price hit 5789 huge quick profit 62 in just 195 hour ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-29 14:47:16+00:00 1.0 1320118842 106606 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-29 12:04:47+00:00 1.0 1320118842 106590 vite hit 400 now 3rd target achieved in 3 days✅✅✅ one more huge profit 44 amazing calls by our team ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-29 10:01:12+00:00 1.0 1320118842 106585 pump result sys start price 641 weve reached 978 huge quick profit 52 to know next pump coin name contact apglobals for premium membership 2021-04-29 09:14:02+00:00 1.0 1320118842 106535 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-28 19:41:08+00:00 1.0 1320118842 106494 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-04-28 13:36:08+00:00 1.0 1320118842 106475 ppt result start price 9614 price hit 12282 huge quick profit 26 in just 27 minutes ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-28 07:47:58+00:00 1.0 1320118842 106216 rvn result 1st target achieved in just 2 minutes ✅ one more huge quick profit 50 using 5x leverage join premium and grab next pump signal ☎️ contact apglobals 2021-04-26 09:02:01+00:00 1.0 1320118842 106163 idex result all targets achieved in just 51 minutes ✅✅✅✅ huge quick profit 69 told you you could recover fees in just few hour still thinking ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-25 17:09:49+00:00 1.0 1320118842 106155 pump result pivx start price 3084 weve reached 4455 huge quick profit 44 to know next pump coin name contact apglobals for premium membership 2021-04-25 16:58:50+00:00 1.0 1320118842 106148 pump result pnt start price 2704 weve reached 4016 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2021-04-25 16:16:23+00:00 1.0 1320118842 106092 pump result alice start price 16688 weve reached 24876 huge quick profit 49 to know next pump coin name contact apglobals for premium membership 2021-04-25 08:58:11+00:00 1.0 1320118842 106068 as you guys know now who is the real telegram channel in this crypto world we shared rdn signal 45 hour ago to premium members and posted here in free channel 30 minutes ago from now all other channels are just scam beware ‼️ ☎️ contact apglobals for premium membership and grab next pump signal 2021-04-24 21:03:08+00:00 1.0 1320118842 105942 pump result qlc start price 134 weve reached 212 huge quick profit 58 to know next pump coin name contact apglobals for premium membership 2021-04-23 16:14:12+00:00 1.0 1320118842 105853 pump result btg start price 1438 weve reached 3053 huge quick profit 113 to know next pump coin name contact apglobals for premium membership 2021-04-23 04:55:16+00:00 1.0 1320118842 105731 pump result wpr start price 73 weve reached 132 huge quick profit 80 to know next pump coin name contact apglobals for premium membership 2021-04-21 16:09:24+00:00 1.0 1320118842 105725 nkn result start price 1116 price hit 1578 huge quick profit 41 in just 16 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-21 16:03:38+00:00 1.0 1320118842 105713 bar result 2nd target achieved in just 7 minutes ✅✅ one more huge quick 21 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-21 12:48:15+00:00 1.0 1320118842 105585 stpt hit 240 finally all targets achieved in just 43 minutes ✅✅✅✅ huge quick profit 57 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking dont miss next pump signal ☎️ contact apglobals 2021-04-20 13:00:24+00:00 1.0 1320118842 104769 pump result via start price 4100 weve reached 10680 huge quick profit 160 to know next pump coin name contact apglobals for premium membership 2021-04-11 17:06:33+00:00 1.0 1320118842 104705 beam result start price 256 price hit 349 one more huge quick profit 36 in just 12 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-11 07:38:47+00:00 1.0 1320118842 104649 ctxc result start price 688 price hit 978 one more huge quick profit 42 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-04-10 05:07:21+00:00 1.0 1320118842 104548 grs result all targets achieved in just 58 minutes ✅✅✅✅ one more huge quick profit 131 amazing calls by our team congrats premium members ☎️ contact apglobals for premium membership and grab next pump coin 2021-04-09 09:04:38+00:00 1.0 1320118842 104032 we also share daily 25 special signal in premium channel only those coin will going to pump within 24 hour or very short duration 2021-04-04 03:37:56+00:00 1.0 1320118842 103572 pump result wan start price 2653 weve reached 3927 huge quick profit 48 to know next pump coin name contact apglobals for premium membership 2021-03-30 03:36:55+00:00 1.0 1320118842 103545 pump result mtl start price 3656 weve reached 10025 huge quick profit 174 to know next pump coin name contact apglobals for premium membership 2021-03-29 18:19:05+00:00 1.0 1320118842 103490 pump result rdn start price 1446 weve reached 3500 huge quick profit 142 to know next pump coin name contact apglobals for premium membership 2021-03-28 19:11:26+00:00 1.0 1320118842 103480 pump result pivx start price 3590 weve reached 11612 huge quick profit 223 to know next pump coin name contact apglobals for premium membership 2021-03-28 17:05:37+00:00 1.0 1320118842 100683 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-27 12:47:43+00:00 1.0 1320118842 98256 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-06 17:46:36+00:00 1.0 1320118842 98158 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-05 18:56:41+00:00 1.0 1320118842 98046 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-02-05 06:10:55+00:00 1.0 1320118842 97837 brd result all targets achieved in just 21 minutes ✅✅✅✅ one more huge quick profit 117 amazing calls by our team dont get stuck in other pump groups ☎️ contact apglobals for premium membership and grab next breakout signal before it pump 2021-02-03 19:10:33+00:00 1.0 1320118842 96156 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-01-23 16:15:54+00:00 1.0 1320118842 93465 bcpt result start price 64 price hit 133 huge quick profit 107 in just 8 hour to know next pump coin name ☎️ contact apglobals 2021-01-09 13:06:54+00:00 1.0 1320118842 93232 next breakout pump signal will be shared within few hours in premium channel which will give you 2040 profit in just few hours join premium before it pump ☎️ contact apglobals 2021-01-08 13:56:24+00:00 1.0 1320118842 92811 qlc result start price 50 price hit 89 huge quick profit 78 in just 3 minutes to know next pump coin name ☎️ contact apglobals 2021-01-06 16:08:17+00:00 1.0 1320118842 92433 nxs result start price 639 price hit 1000 one more huge quick profit 56 in just 5 hour to know next pump coin name ☎️ contact apglobals 2021-01-03 17:54:51+00:00 1.0 1320118842 92426 ppt result start price 1700 price hit 2413 one more huge quick profit 41 in just 5 hour to know next pump coin name ☎️ contact apglobals 2021-01-03 17:49:38+00:00 1.0 1320118842 92420 pivx result start price 997 price hit 1423 one more huge quick profit 43 in just 13 minutes to know next pump coin name ☎️ contact apglobals 2021-01-03 17:34:27+00:00 1.0 1320118842 92337 grs result start price 1072 price hit 1560 one more huge quick profit 45 in just 26 minutes to know next pump coin name ☎️ contact apglobals 2021-01-03 09:41:08+00:00 1.0 1320118842 92301 nebl pump result start price 2500 price hit 27810 huge quick profit 1000 in just 15 hour hope you guys dont stuck in other pump group we are the only channel who know pump coin name earliest still thinking you missed huge profit today hope to see you soon in our premium channel ☎️ contact apglobals for premium membership 2021-01-02 21:07:06+00:00 1.0 1320118842 92070 atm result start price 2584 price hit 4150 huge quick profit 60 in just 7 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-02 05:44:23+00:00 1.0 1320118842 92064 aergo result start price 146 price hit 270 huge quick profit 84 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-02 04:26:24+00:00 1.0 1320118842 91855 fun pump result start price 31 price hit 87 huge quick profit 180 in just 4 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-01 15:19:53+00:00 1.0 1320118842 91817 poly result start price 290 price hit 376 huge quick profit 29 in just 35 hour to know next pump coin name ☎️ contact apglobals for premium membership 2021-01-01 06:42:17+00:00 1.0 1320118842 91657 idex pump result start price 132 price hit 270 huge quick profit 104 in just 9 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-31 17:09:54+00:00 1.0 1320118842 91478 mith result start price 47 price hit 65 one more huge quick profit 38 in just 25 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-30 03:55:43+00:00 1.0 1320118842 90839 via result start price 1054 price hit 1350 one more huge quick profit 28 in just 15 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:52:40+00:00 1.0 1320118842 90832 vibe result start price 60 price hit 82 one more huge quick profit 36 in just 31 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:45:16+00:00 1.0 1320118842 90811 dlt pump result all targets achieved in just 2 minutes✅✅✅✅ one more huge quick profit 546 in just 2 minutes amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-26 21:07:56+00:00 1.0 1320118842 90499 nbs result start price 57 price hit 84 one more huge quick profit 47 in just 2 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-24 20:57:51+00:00 1.0 1320118842 90471 dnt pump result start price 187 price hit 382 one more huge quick profit 104 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-24 03:18:05+00:00 1.0 1320118842 89052 via pump result start price 1049 price hit 1493 one more huge quick profit 42 in just 23 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 13:30:34+00:00 1.0 1320118842 88801 dcr pump result start price 1434 price hit 1841 one more huge quick profit 28 in just 3 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 09:15:28+00:00 1.0 1320118842 88773 grt pump result start price 450 price hit 760 one more huge quick profit 68 in just 75 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-18 04:49:26+00:00 1.0 1320118842 88440 aergo pump result start price 208 price hit 260 one more huge quick profit 25 in just 19 minutes to know next pump coin name ☎️ contact apglobals 2020-12-17 06:10:11+00:00 1.0 1320118842 87837 ctxc pump result start price 454 price hit 572 one more huge quick profit 25 in just 3 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-12 18:36:45+00:00 1.0 1320118842 87677 utk pump result start price 592 price hit 825 huge quick profit 39 in just 4 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-12 16:20:17+00:00 1.0 1320118842 87165 idex result start price 174 price hit 235 one more huge quick profit 35in just 5 hour to know next pump coin name ☎️ contact apglobals 2020-12-10 12:57:52+00:00 1.0 1320118842 87114 wing result start price 691 price hit 1304 one more huge quick profit 88 in just 12 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-09 08:11:26+00:00 1.0 1320118842 87047 mtl pump result start price 2012 price hit 3338 huge quick profit 65 in just 15 hour amazing calls by our team to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-08 02:04:51+00:00 1.0 1320118842 86756 breakout pump coin brd 2020-12-06 18:00:26+00:00 1.0 1320118842 86521 pnt pump result start price 2049 price hit 2890 one more huge quick profit 41 to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-06 10:08:28+00:00 1.0 1320118842 86270 pnt pump result start price 2132 price hit 3258 one more huge profit 40 to know next pump coin name ☎️ contact apglobals 2020-12-05 04:37:26+00:00 1.0 1320118842 85852 dcr pump result start price 1421 price hit 2182 huge quick profit 53in just 36 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-03 04:05:57+00:00 1.0 1320118842 85725 nebl pump result start price 2355 price hit 3000 one more huge quick profit 27 within 19 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-12-02 18:22:36+00:00 1.0 1320118842 85409 steem pump result start price 972 price hit 1300 one more huge quick profit 34 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 16:14:13+00:00 1.0 1320118842 85387 sun pump result start price 558 price hit 717 one more huge quick profit 28 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 04:22:52+00:00 1.0 1320118842 85381 jst pump result start price 128 price hit 200 one more huge quick profit 56 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-12-01 04:13:30+00:00 1.0 1320118842 85066 stpt pump result start price 87 price hit 127 one more huge quick profit 46 in just 38 minutes to know next pump coin name ☎️ contact apglobals 2020-11-30 09:55:37+00:00 1.0 1320118842 84606 ong result start price 1298 price hit 1518 one more quick profit 16 in just 4 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-28 15:29:39+00:00 1.0 1320118842 84517 gnt pump result start price 680 price hit 830 one more huge quick profit 22 to know next pump coin name ☎️ contact apglobals 2020-11-27 16:16:06+00:00 1.0 1320118842 83895 ong pump result start price 778 price hit 1189 one more huge quick profit 52 in just 25 hour to know next pump coin name ☎️ contact apglobals 2020-11-25 15:23:34+00:00 1.0 1320118842 83824 strax pump result start price 2252 price hit 4255 huge quick profit 90 within 16 hour to know next pump coin name ☎️ contact apglobals 2020-11-25 05:12:16+00:00 1.0 1320118842 83571 xvg pump result start price 36 price hit 46 huge quick profit 27 within 6 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 16:42:41+00:00 1.0 1320118842 83564 snt pump result start price 213 price hit 260 huge quick profit 22 within 25 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 16:03:56+00:00 1.0 1320118842 83557 xlm pump result start price 784 price hit 966 huge quick profit 23 within 5 hour to know next pump coin name ☎️ contact apglobals 2020-11-24 15:49:41+00:00 1.0 1320118842 83202 zen pump result start price 4465 price hit 5913 one more huge quick profit 34 within 24 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-23 06:26:06+00:00 1.0 1320118842 82946 sand result 3rd target achieved in just 4 minutes ✅✅✅ one more huge quick profit 25 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-11-22 17:51:11+00:00 1.0 1320118842 82936 fio result start price 475 price hit 650 one more huge quick profit 36 in just 2 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 16:45:52+00:00 1.0 1320118842 82919 nmr result start price 1630 price hit 2399 one more huge quick profit 47 in just 26 minutes to know next pump coin name ☎️ contact apglobals 2020-11-22 15:28:22+00:00 1.0 1320118842 82903 ant result start price 1776 price hit 2222 one more huge quick profit 25 within 28 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 13:36:10+00:00 1.0 1320118842 82897 snt result start price 168 price hit 229 one more huge quick profit 36 within 12 hour to know next pump coin name ☎️ contact apglobals 2020-11-22 13:10:25+00:00 1.0 1320118842 82234 wpr pump result start price 43 price hit 53 huge quick profit 23 in just 4 minutes to know next pump coin name ☎️ contact apglobals 2020-11-19 14:38:40+00:00 1.0 1320118842 82213 unfi result all targets achieved in just 5 minutes ✅✅✅ one more huge quick profit 38 amazing calls by our team congrats premium members to know next pump coin name ☎️ contact apglobals 2020-11-19 06:50:31+00:00 1.0 1320118842 81409 sun result start price 562 price hit 732 huge quick profit 30 in just 9 hour to know next pump coin name ☎️ contact apglobals 2020-11-15 18:25:32+00:00 1.0 1320118842 81403 bot result start price 2519 price hit 3500 huge quick profit 38 in just 25 minutes to know next pump coin name ☎️ contact apglobals 2020-11-15 18:20:01+00:00 1.0 1320118842 80439 poa result start price 131 price hit 155 one more quick profit 18 in just 15 hour to know next pump coin name ☎️ contact apglobals 2020-11-12 03:57:22+00:00 1.0 1320118842 80406 ogn result start price 934 price hit 1349 one more huge quick profit 44 in just 6 hour to know next pump coin name ☎️ contact apglobals 2020-11-11 10:52:00+00:00 1.0 1320118842 80289 gnt result start price 636 price hit 927 one more huge quick profit 45 in just 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-10 08:02:43+00:00 1.0 1320118842 80283 loom result start price 167 price hit 311 one more huge quick profit 86 in just 17 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-10 07:57:28+00:00 1.0 1320118842 79995 pump result brd start price 471 weve reached 749 huge quick profit 59 to know next pump coin name contact apglobals for premium membership 2020-11-09 16:12:45+00:00 1.0 1320118842 79987 pump coin name brd 2020-11-09 16:00:27+00:00 1.0 1320118842 79986 next post will be coin name 2020-11-09 15:55:44+00:00 1.0 1320118842 79985 5 minutes left to pump on binance 2020-11-09 15:55:44+00:00 1.0 1320118842 79984 15 minutes left to pump on binance 2020-11-09 15:45:39+00:00 1.0 1320118842 79983 30 minutes left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-09 15:33:39+00:00 1.0 1320118842 79973 next pump scheduled ⏰ monday 09112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-09 14:10:01+00:00 1.0 1320118842 79942 next pump scheduled ⏰ monday 09112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-09 07:08:05+00:00 1.0 1320118842 79745 pump result dlt start price 279 weve reached 410 huge quick profit 46 to know next pump coin name contact apglobals for premium membership 2020-11-08 15:21:09+00:00 1.0 1320118842 79698 axs result start price 1020 price hit 1390 one more huge quick profit 36 within 7 hour to know next pump coin name ☎️ contact apglobals 2020-11-08 09:48:03+00:00 1.0 1320118842 79692 dnt result start price 159 price hit 238 huge quick profit 49 within 10 hour to know next pump coin name ☎️ contact apglobals 2020-11-08 09:39:03+00:00 1.0 1320118842 79417 poa result start price 115 price hit 158 one more huge quick profit 37 in just 8 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-07 05:54:44+00:00 1.0 1320118842 79072 aave result start price 1970 price hit 2541 huge quick profit 29 within 23 hour to know next pump coin name ☎️ contact apglobals 2020-11-06 13:42:47+00:00 1.0 1320118842 79008 yoyo result 3rd target achieved in just 25 minutes ✅✅✅ one more huge quick profit 34 to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-06 02:29:47+00:00 1.0 1320118842 79000 and dnt hit 140 102 profit in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-11-05 19:41:47+00:00 1.0 1320118842 78714 pump result appc start price 248 weve reached 301 huge quick profit 21 to know next pump coin name contact apglobals for premium membership 2020-11-04 17:27:36+00:00 1.0 1320118842 78708 pump coin name appc 2020-11-04 17:00:22+00:00 1.0 1320118842 78707 next post will be coin name 2020-11-04 16:55:14+00:00 1.0 1320118842 78706 5 minutes left to pump on binance 2020-11-04 16:55:14+00:00 1.0 1320118842 78703 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-04 16:03:27+00:00 1.0 1320118842 78636 next pump scheduled ⏰ wednesday 04112020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-04 15:04:01+00:00 1.0 1320118842 78626 7 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-04 10:00:34+00:00 1.0 1320118842 78611 next pump scheduled ⏰ wednesday 04112020 at 5 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-03 18:23:39+00:00 1.0 1320118842 78597 gto proof coin name shared earlier in premium channel to know next pump coin name ☎️ contact apglobals 2020-11-03 16:15:06+00:00 1.0 1320118842 78596 pump result gto start price 36 weve reached 48 huge quick profit 33 to know next pump coin name contact apglobals for premium membership 2020-11-03 16:11:08+00:00 1.0 1320118842 78587 pump coin name gto 2020-11-03 16:00:14+00:00 1.0 1320118842 78586 next post will be coin name 2020-11-03 15:55:21+00:00 1.0 1320118842 78585 5 minutes left to pump on binance 2020-11-03 15:55:08+00:00 1.0 1320118842 78584 10 minutes left to pump on binance 2020-11-03 15:50:17+00:00 1.0 1320118842 78582 20 minutes left to pump on binance 2020-11-03 15:40:28+00:00 1.0 1320118842 78577 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-03 15:00:08+00:00 1.0 1320118842 78454 3 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-03 13:01:29+00:00 1.0 1320118842 78423 next pump scheduled ⏰ tuesday 03112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-02 18:51:46+00:00 1.0 1320118842 78404 pump result ardr start price 372 weve reached 603 huge quick profit 62 to know next pump coin name contact apglobals for premium membership 2020-11-02 16:13:05+00:00 1.0 1320118842 78400 pump coin name ardr 2020-11-02 16:00:40+00:00 1.0 1320118842 78399 next post will be coin name 2020-11-02 15:55:16+00:00 1.0 1320118842 78398 5 minutes left to pump on binance 2020-11-02 15:55:16+00:00 1.0 1320118842 78397 20 minutes left to pump on binance 2020-11-02 15:40:30+00:00 1.0 1320118842 78396 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-02 15:00:57+00:00 1.0 1320118842 78386 4 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-11-02 12:12:43+00:00 1.0 1320118842 78385 next pump scheduled ⏰ monday 02112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-02 12:12:42+00:00 1.0 1320118842 78316 next pump scheduled ⏰ monday 02112020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-11-01 07:23:24+00:00 1.0 1320118842 78095 pump result dusk start price 304 weve reached 585 huge quick profit 92 to know next pump coin name contact apglobals for premium membership 2020-10-30 16:12:17+00:00 1.0 1320118842 78089 after 3 minutes dusk still at top price amazing pump now hit 510 good time to book profit 2020-10-30 16:03:40+00:00 1.0 1320118842 78085 pump coin name dusk 2020-10-30 16:00:37+00:00 1.0 1320118842 78084 3 minutes left to pump on binance next post will be coin name 2020-10-30 15:57:13+00:00 1.0 1320118842 78083 30 minutes left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-10-30 15:31:17+00:00 1.0 1320118842 78082 1 hour left to pump on binance to know coin name join premium and recover your losses expected pump result 50100 ☎ contact apglobals 2020-10-30 15:05:40+00:00 1.0 1320118842 77930 next pump scheduled ⏰ friday 30102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-30 10:02:27+00:00 1.0 1320118842 77920 ctxc result start price 575 price hit 753 one more huge quick profit 31 within 7 hour to know next pump coin name ☎️ contact apglobals 2020-10-30 05:51:54+00:00 1.0 1320118842 77855 next pump scheduled ⏰ friday 30102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-29 16:57:55+00:00 1.0 1320118842 77704 idex result start price 409 price hit 548 one more huge quick profit 33 in just 25 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-27 18:34:23+00:00 1.0 1320118842 77685 nebl result start price 3276 price hit 4106 one more huge quick profit 25 in just 11 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-27 09:56:47+00:00 1.0 1320118842 77526 ocean pump result start price 3249 price hit 3956 one more huge quick profit 22 in just 1 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 17:00:52+00:00 1.0 1320118842 77495 adx pump result start price 1993 price hit 2573 one more huge quick profit 29 in just 17 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 06:05:54+00:00 1.0 1320118842 77489 sys pump result start price 339 price hit 435 one more huge quick profit 28 in just 145 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-26 06:02:29+00:00 1.0 1320118842 77318 idex pump result start price 427 price hit 570 one more huge quick profit 33 in just 10 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-25 14:52:22+00:00 1.0 1320118842 77122 poly pump result start price 362 price hit 549 one more huge quick profit 51 in just 20 minutes to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-24 04:59:20+00:00 1.0 1320118842 77019 poa pump result start price 138 price hit 174 one more huge quick profit 26 within 6 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-23 03:55:12+00:00 1.0 1320118842 76991 vibe pump result start price 102 price hit 166 one more huge quick to 62 in just 23 minutes to know next pump coin name ☎️ contact apglobals 2020-10-22 13:48:44+00:00 1.0 1320118842 76587 pump result ppt start price 1842 weve reached 2400 huge quick profit 30 to know next pump coin name contact apglobals for premium membership 2020-10-21 18:13:50+00:00 1.0 1320118842 76584 pump coin name ppt 2020-10-21 18:01:05+00:00 1.0 1320118842 76582 30 minutes left to pump on binance 2020-10-21 17:32:05+00:00 1.0 1320118842 76574 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-21 16:31:49+00:00 1.0 1320118842 76565 xvs result start price 2446 price hit 2923 one more quick to 20 within 18 hour to know next pump coin name ☎️ contact apglobals 2020-10-21 16:07:10+00:00 1.0 1320118842 76543 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-21 08:23:26+00:00 1.0 1320118842 76538 inj result 1st target achieved within 70 minutes ✅ one more huge quick profit 27 amazing calls by our team to know next pump coin name ☎️ contact apglobals 2020-10-21 05:52:28+00:00 1.0 1320118842 76516 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-20 13:57:16+00:00 1.0 1320118842 76491 next pump scheduled ⏰ wednesday 21102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-19 18:28:51+00:00 1.0 1320118842 76368 oax proof coin name shared few minutes earlier in premium channel 2020-10-18 18:23:37+00:00 1.0 1320118842 76367 pump result oax start price 581 weve reached 829 huge quick profit 42 to know next pump coin name contact apglobals for premium membership 2020-10-18 18:10:27+00:00 1.0 1320118842 76363 pump coin name oax 2020-10-18 18:00:23+00:00 1.0 1320118842 76362 5 minutes left to pump on binance next post will be coin name 2020-10-18 17:55:11+00:00 1.0 1320118842 76361 15 minutes left to pump on binance 2020-10-18 17:45:40+00:00 1.0 1320118842 76360 30 minutes left to pump on binance 2020-10-18 17:30:39+00:00 1.0 1320118842 76358 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-18 16:05:31+00:00 1.0 1320118842 76340 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-18 10:11:45+00:00 1.0 1320118842 76310 next pump scheduled ⏰ sunday 18102020 at 6 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-17 16:18:24+00:00 1.0 1320118842 76306 rdn pump result start price 1735 price hit 2483 one more huge quick profit 43 to know next pump coin name ☎️ contact apglobals 2020-10-17 16:12:02+00:00 1.0 1320118842 76301 pump coin name rdn 2020-10-17 16:00:19+00:00 1.0 1320118842 76300 15 minutes left to pump on binance 2020-10-17 15:45:05+00:00 1.0 1320118842 76299 30 minutes left to pump on binance 2020-10-17 15:30:36+00:00 1.0 1320118842 76292 xvs pump result start price 2852 price hit 4300 one more huge quick profit 50 within 95 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-17 12:05:04+00:00 1.0 1320118842 76286 alhpa pump result start price 312 price hit 397 one more huge quick profit 27 within 11 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-17 11:49:58+00:00 1.0 1320118842 76274 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-17 10:20:17+00:00 1.0 1320118842 76256 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-16 18:41:30+00:00 1.0 1320118842 76230 next pump scheduled ⏰ saturday 17102020 at 4 pm gmt exchange binance this pump is going to be huge dont miss it if you dont have account on binance create now to know coin name earlier join premium ☎️ contact apglobals 2020-10-16 03:16:42+00:00 1.0 1320118842 76219 fio pump result start price 991 price hit 1178 one more huge quick profit 18 in just 36 minutes to know next pump coin name ☎️ contact apglobals 2020-10-15 14:56:18+00:00 1.0 1320118842 76182 gvt pump result start price 1232 price hit 1690 one more huge quick profit 37 to know next pump coin name ☎️ contact apglobals 2020-10-14 18:32:18+00:00 1.0 1320118842 76150 xvs pump result start price 2412 price hit 2870 one more very quick profit 19 to know next pump coin name ☎️ contact apglobals 2020-10-14 07:21:43+00:00 1.0 1320118842 75754 iris pump result start price 577 price hit 680 one more quick profit 18 in just 3 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-12 08:23:22+00:00 1.0 1320118842 75748 nebl pump result start price 4226 price hit 5500 one more huge quick profit 30 in just 3 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-12 05:57:24+00:00 1.0 1320118842 75695 dnt pump result start price 81 price hit 107 huge quick profit 32 in just 25 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-11 10:37:33+00:00 1.0 1320118842 75687 qsp result all targets achieved in just 35 hour ✅✅✅✅ one more huge quick profit 50 amazing calls by our team join premium and grab next pump signal hurry up ‍♂ ☎️ contact apglobals 2020-10-11 03:12:07+00:00 1.0 1320118842 75654 cvc result 3rd target achieved in just 22 minutes ✅✅✅ one more huge quick profit 30 to know next pump coin name earlier ☎️ contact apglobals for premium membership 2020-10-10 09:24:14+00:00 1.0 1320118842 75448 uma pump result start price 723 price hit 907 huge quick profit 25 in just11 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 17:24:51+00:00 1.0 1320118842 75440 mth pump result start price 62 price hit 81 huge quick profit 30 in just 35 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 16:46:32+00:00 1.0 1320118842 75421 ost pump result start price 71 price hit 132 huge quick profit 85 in just 26 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 12:36:36+00:00 1.0 1320118842 75393 perl pump result start price 197 price hit 239 huge quick profit 21 in just 18 minutes amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 08:59:47+00:00 1.0 1320118842 75386 yfii pump result start price 13533 price hit 18832 huge quick profit 39 in just 9 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 05:59:06+00:00 1.0 1320118842 75358 via pump result start price 1620 price hit 2498 huge quick profit 54 in just 15 hour amazing pump call for our premium member to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-09 03:31:52+00:00 1.0 1320118842 75154 orn result start price 1635 price hit 1984 one more quick profit 21 in just 9 hour to know next pump coin name ☎️ contact apglobals for premium membership 2020-10-07 14:38:52+00:00 1.0 1320118842 74617 req result start price 190 price hit 240 one more huge quick profit 26 in just 33 minutes to know next pump coin name ☎️ contact apglobals 2020-10-05 06:30:39+00:00 1.0 1320118842 74610 bcpt binance top gainer amazing pump signal given to premium members 2020-10-05 04:17:58+00:00 1.0 1457621071 7526 noobs didnt buy there now they will buy 100 higher at current price and pump my bags 2021-02-14 09:56:35+00:00 1.0 1457621071 3193 tnt 16 easy you sold didnt you why would i shill a bloody coin if its not gonna pump hahahahahaha 2020-05-23 08:01:47+00:00 1.0 1457621071 2285 daddy gave everyone the free money hint 6 minutes before the pump 2020-04-13 11:38:02+00:00 1.0 1354862145 3161 dont buy market enj put limit orders and wait if you buy market the coin will not pump cause whales have algorithms and if they see that fishes are entering they will dump it more‼️ buy like a whale boys 2019-04-18 21:57:35+00:00 1.0 1143136828 20087 members are asking me to send a big profitable signal fast now im searching for a best coin with good analysis and some big news ill send big signal within 30 minutes everyone make sure to login your binance future account 2021-09-14 15:16:31+00:00 1.0 1143136828 20060 market is getting hot so we have decided to send our signal today our bot is searching for a bullish coin and we will inform you about it within 30 minutes this will be our special signal so make sure you dont miss it ❤️ 2021-09-03 14:55:58+00:00 1.0 1143136828 20013 must read this after great success of our last signals we decided to send 1 more high potential coin signal for free we are going to send our special high potential coin signal within 30 minutes market seems super bullish right now lets take advantage of it get ready your binance futures account and wait for us ✅ 2021-08-21 14:59:36+00:00 1.0 1143136828 19979 must read this after great success of our last signals lit and ctk we decided to send 1 more high potential coin signal for free our technical analyst confirmed that btc will pump and alts will pump hard too we are going to send our special high potential coin signal within 30 minutes get ready your binance futures account and wait for us ✅ 2021-08-16 13:58:18+00:00 1.0 1143136828 19965 must read this after great success of our last signals we decided to send 1 more high potential coin signal for free we are going to send our special high potential coin signal within 30 minutes market seems super bullish right now lets take advantage of it get ready your binance futures account and wait for us ✅ 2021-08-15 13:10:11+00:00 1.0 1143136828 19949 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-08-11 15:40:00+00:00 1.0 1143136828 19936 must read this after great success of our last calls unfi and ctk we decided to send 1 more high potential coin signal for free we are going to send our special high potential coin signal within 30 minutes get ready with your binance futures account ✅ 2021-08-06 15:22:20+00:00 1.0 1143136828 19891 btc dumped more then 1k and because of this most alts dumped too but now it looks like it gonna pump again i have found a really good dip entry in our one altcoin ✅ i will tell you about coin which is in good dip within 10 minutes 2021-07-30 12:15:46+00:00 1.0 1143136828 19878 ❤️ ok guys wait is over ❤️ we have detected a really good signal with very big potential and a very bullish chart we will send coin details within 30 minutes open your binance future account and stay online ✅ 2021-07-29 14:45:47+00:00 1.0 1143136828 19806 buy bel now bel coming out from the accumulation zone and can pump hard you can use 510x leverage targets ⬇️ 1 134 2 137 3 1435 4 15 5 moon 2021-07-14 15:21:11+00:00 1.0 1143136828 19764 blz big breakout here breakout is already confirmed on 4 hour timeframe chart so we are buying blz here dont miss it because breakout always send coin to moon 2021-07-07 16:19:12+00:00 1.0 1143136828 18756 big pump happened on nuls and it hit 3600 satoshi targets 12 done ✅ 50 profit in 1 week of holding congratulations to all members 2021-04-19 10:40:20+00:00 1.0 1143136828 18253 evxbtc buy 1200 1250 sell 1340 1480 1600 1800 after consolidating for last few days its ready now for a big pump you can buy and hold evx for mid term to get 100200 profit easily 2021-02-07 17:02:17+00:00 1.0 1143136828 18245 navbtc continuously going up and im expecting it to go up more volume also increasing for last few days its planning for a big pump in coming days buy at current price sell targets 12 50 2021-01-31 19:04:42+00:00 1.0 1143136828 17834 im giving you dip entry and you will not get any better price then this 465470 satoshi price is pretty cheap we have already seen a big pump in chr now we will see a bigger pump in coming days in chr because a lot of big news 2020-08-05 16:01:51+00:00 1.0 1143136828 17670 coin name poabtc buy fast and hold 2020-07-20 15:59:57+00:00 1.0 1143136828 17655 wpr looks bullish heres why price hit support line and bounced immediately and it is still in a very nice uptrend the doji candle shows that the buy signal is very positive and it may be a strong rally but it will test resistance once more that is why i recommend you to buy s r flip the volume is increasing significantly when an exhaust gate has made the price pop up immediately indicating that the market is very interested in wpr this is the right time for you to buy it will pump very strongly 2020-07-17 16:05:42+00:00 1.0 1143136828 17065 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 250 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-06-10 15:59:56+00:00 1.0 1143136828 16876 ark ark ark target 100150+ ark is whales favorite coin now they pump it to the moon so buy hold ark is going to perform crazy today like never before buy fast this trendy coin and make profit 2020-06-02 16:00:26+00:00 1.0 1143136828 16658 click on any coin name given in above list to see signal proof date and time we are 100 transparent 2020-05-23 15:20:15+00:00 1.0 1143136828 13797 hey folks‼ important announcement on 5th march at 430 pm gmt we are organising special signal called binance titanic signal the binance titanic signal will be posted here at given time above and you guys can buy it as soon as possible to get the most profits out of that coin our minimum target is 100150 profit areas our recent binancetitanicsignal results 1st bnt around 85 2nd storj around 102 3rd hold for some hours let the fomo arrive into it 2019-03-04 17:32:28+00:00 1.0 1143136828 7737 after signal lrc hit 9749 still you can buy and hold 2018-05-04 09:13:56+00:00 1.0 1143136828 7588 big pump signal coin pro propy upbit link pro bittrex link pro buy pro it will moon 100 2018-05-02 13:00:07+00:00 1.0 1143136828 7503 big pump signal coin dct decent bittrex link dct upbit link dct 2018-04-27 13:00:46+00:00 1.0 1143136828 7451 less then 2 minutes left next post will be coin name 2018-04-24 12:59:04+00:00 1.0 1143136828 7427 coin name btc dmt bittrex dmt upbit dmt asian team whales 2018-04-22 12:59:59+00:00 1.0 1143136828 7389 huge signal announcement the markets turning green we will give you huge signal 녹색으로 변하는 시장 우리는 당신에게 거대한 신호를 줄 것이다 계속 지켜봐 ➡️ we will give you a huge signal which coin has huge potential on tomorrow what to do buy and hodl until 100 profitable ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date thursday 19 april trades will be on bittrexupbit stay tuned check the countdown here +huge++signalfontcursive 2018-04-18 17:05:10+00:00 1.0 1143136828 7371 big pump signal coin exp expanse bittrex link exp upbit link exp 2018-04-17 13:00:09+00:00 1.0 1143136828 7361 big signal announcement bittrex has upgraded their system and reopened registrations for new users then outsiders are coming to bittrex upbit with more volume 비트렉스가 시스템을 개선하고 새로운 사용자에 대한 등록을 다시 하게 되면 외부인들이 더 많은 물량을 갖고 비트렉스 거래소에 오게 될 것이다 4월 17일 우리는 업비트 거래소 btc마켓에있는 종목에서 큰 상승이 예상되는 코인을 공개할 것이다 due to this huge demand and the markets very bullish were lauching big signal at bittrexupbit on tomorrow tuesday ➡️ we will give you a big signal which coin has huge potential on tomorrow what to do you need to buy and hodl that strong coin it easily goes 100 200 ⬅️ ️exchange bittrex upbit time 1300 gmt 1000 pm ktm date tuesday 17 april trades will be on bittrexupbit check the countdown here +singal+at+bittrex2fupbitfontserif 2018-04-16 17:14:14+00:00 1.0 1143136828 7338 be ready less then 15 minutes left we have a big special signal at bittrex ️exchange bittrex ➡️what you need to do buy that coin and hodl until 100200 profit coin will be announced in 15 minutes 2018-04-14 12:45:17+00:00 1.0 1143136828 7334 be ready less then 3 hours left we have a big special signal at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-14 10:00:18+00:00 1.0 1143136828 7330 be ready we have a big special signal on tomorrow at bittrex ️exchange bittrex time 1300 gmt 630pm ist date saturday 14 april transfer fund to bittrex and do not miss the chance to get 100200+ profit many members are ready to attend this signal ➡️what you need to do buy that particular coin and hodl until 100200 profit check the countdown below +call+at+bittrexfontcursive 2018-04-13 17:49:07+00:00 1.0 1143136828 7315 login bittrex next post will be coin name and link 2018-04-12 12:58:58+00:00 1.0 1143136828 7314 less then 5 minutes left in our special signal what you need to do buy and hold coin potential 100200 exchange bittrex 2018-04-12 12:56:01+00:00 1.0 1143136828 7313 less then 10 minutes left in our special call announcement on bittrex for 100200 profit special call means buy and hold that coin to get maximum profit while all coins are going down we will go up check remaining time here +call+at+bittrexfontcursive 2018-04-12 12:50:36+00:00 1.0 1143136828 7311 less then 30 minutes left in our special call announcement on bittrex for 100200 profit special call means buy and hold that coin to get maximum profit while all coins are going down we will go up check remaining time here +call+at+bittrexfontcursive 2018-04-12 12:30:39+00:00 1.0 1143136828 7226 login bittrex coin name is coming in less then 2 minutes 2018-04-05 14:28:47+00:00 1.0 1143136828 7217 be ready we have a big signal tomorrow for bittrex date 05042018 day thursday time 1430 gmt 8pm ist transfer fund to bittrex and dont miss this chance to get 50100+ profit many members are ready to attend this signal check remaining time here +bittrex+signalfontserifcsz1 2018-04-04 15:40:25+00:00 1.0 1143136828 7216 hello friends im thinking to start some special signals for fast profit like 50100+ within minutes whenever coin name announce just need to buy and sell in profit no need to hold for many days i want to know which exchange do you prefer most anonymous poll binance – 677 60 bittrex – 455 40 1132 people voted so far 2018-04-04 05:52:26+00:00 1.0 1143136828 5759 5 minutes left in big potential coin signal ready your bittrex account 2018-01-08 12:55:11+00:00 1.0 1143136828 5630 only 5 minutes left in big signal exchange bittrex be ready it will be huge 2018-01-06 12:55:24+00:00 1.0 1143136828 5606 be ready friends date 06012018 we have organized big signal for big profit for our members more then 190k+ members are participating in this signal and its going to be really huge signaltime 13 gmt or 630 ist platform bittrex pinchannelontop so you will not miss it wait for 13 gmt for big potential coin what you need to do buy coin at 13 gmt and promote it on every possible platform like twitter telegram chat box and facebook to get maximum profit in our previous signals we have achieved 50 100 and 180 profit respectively 2018-01-05 18:22:47+00:00 1.0 1143136828 5545 be ready friends date 04012018 we have organized big signal for big profit for our members more then 190k+ members are participating in this signal and its going to be really huge signal time 13 gmt or 630 ist platform bittrex pinchannelontop so you will not miss it wait for 13 gmt for big potential coin what you need to do buy coin at 13 gmt and promote it on every possible platform like twitter telegram chat box and facebook to get maximum profit in our previous signals we have achieved 50 100 and 180 profit respectively 2018-01-03 18:58:13+00:00 1.0 1143136828 5478 less then 5 minutes left in big potential coin be ready 2017-12-29 12:55:28+00:00 1.0 1143136828 5474 be ready friends only 1 hours left we have organized big signal today for big profit for our members more then 102k members are participating in this signal and its going to be really huge our last signal were blitz 180 profit byc 100 profit signal time 13 gmt or 630 ist platform bittrex for getting most profit hold coin and promote it on twitter facebook and telegram chats coin name will be announced in 1 hour 2017-12-29 12:00:30+00:00 1.0 1143136828 4987 be ready guys less then 30 minutes left for big signal this coin can be doubled in a day if you all cooperate 2017-12-15 13:17:58+00:00 1.0 1143136828 4985 be ready friends big signal coming in 1 hour platform bittrex time 1345 gmt 715 pm india time 2017-12-15 12:44:41+00:00 1.0 1143136828 4759 10 minutes left in big signal with many upcoming news 2017-12-04 14:57:10+00:00 1.0 1143136828 4758 be ready 30 minutes left in big signal 2017-12-04 14:36:17+00:00 1.0 1143136828 4739 our today free big signal is coming in 20 minutes this coin is very special because in this month many big news are coming so buy and sell with maximum profit 2017-12-04 10:52:09+00:00 1.0 1143136828 4698 signal in 5 minutes i want you to buy this coin first in low price before those secret information go out in public 2017-12-03 15:27:38+00:00 1.0 1143136828 4696 big signal coming in 10 minutes for 50100 profit in 3 days 2017-12-03 15:22:50+00:00 1.0 1143136828 4666 special free signal in 10 minute this is not pump this coin will not go up within 510 minute but you will get minimum 100300 profit in 24 weeks so buy and hold 2017-12-03 12:24:46+00:00 1.0 1143136828 3690 official hodl announcement dont miss the hodl movement more than 10 groups are doing on wednesday 15 november on bittrex as channel members you need to buy the coin and hold for a week at least wednesday to wednesday and promote the coin everyday on social media like twitter telegram slack claiming that the coin is clearly an uptrend that way we all gonna win✔️ ⌚️you must be ready by wednesday 1230 gmt because the coin will be announced at random time since that hour to avoid big green candle pump countdown to convert time zones +project+launchfontcursive groups participating in the hodl bitcoininsiders bittrexsignals cryptoworldmaster fastsignals cryptoexpertssignal cryptosmartsignals vipcryptoz cryptomasterminds moonlightsignal cryptobullet moonbowsignal moonsignal 2017-11-15 08:30:47+00:00 1.0 1143136828 3168 dear friends today the global hodl will take place what is the global hodl⁉️ ✔️one coin ✔️one day long ✔️150к participants thats insane mark this date in your calendar you dont want to miss it time 12 pm gmt less then 3 hours left stay tuned 2017-11-07 09:08:30+00:00 1.0 1143136828 3013 pump result coin dtb start price 5319 after pump 6541 total gain 23 ❤️ 2017-11-05 14:41:24+00:00 1.0 1143136828 3010 next post coin name and link 2017-11-05 14:29:38+00:00 1.0 1143136828 3006 less then 15 minutes left in our pump to get maximum profit buy and hold atleast 1 minute ❤️ 2017-11-05 14:15:14+00:00 1.0 1143136828 2992 pump announcement less then 1 hours left in pump to get maximum profit in pump buy fast and hold coin atleast for 1 minute and sell on top ❤️ pump time 1430 pm gmt exchange bittrex 1430 pm gmt timer +gmt+bittrex+pumpfontsanserifcsz1 2017-11-05 13:30:22+00:00 1.0 1143136828 2936 next post will be coin name and link 2017-11-04 15:59:05+00:00 1.0 1143136828 2926 pump announcement less then 2 hours left in 16 gmt pump exchange bittrex timer +gmt+bittrex+pumpfontsanserifcsz1 2017-11-04 14:03:25+00:00 1.0 1143136828 2920 pump result coin dmd starting price 93000 after pump 109700 starting vol 1005 after pump 162 total gain 18 this wasnt our best pump but still 18 gain is not bad if you are still holding then wait for few days and price will blast soon dmd is my favorite coin and i always buy it whenever it come down 2017-11-04 12:13:35+00:00 1.0 1143136828 2917 next post will be coin name and link ❤️ 2017-11-04 11:59:18+00:00 1.0 1143136828 2916 5 minutes left in pump to get maximum profit buy and hold for at least 1 minute to get maximum profit ❤️ exchange bittrex 2017-11-04 11:55:05+00:00 1.0 1143136828 2912 hurrey we are closed to our 12 pm gmt pump less then 1 hour left today i have found a natural growth coin for the pump so even if you hold it for some days you will easily get 50100 return for sure ❤️ to get maximum profit in pump buy and hold at least 1 minute ❤️ 2017-11-04 11:00:53+00:00 1.0 1143136828 2892 pump announcement date 4 november we have arranged two pumps on demand ❤️ 1st pump 12 pm gmt 2nd pump 16 pm gmt exchange bittrex 12 pm gmt timer +gmt+bittrex+pumpfontsanserifcsz1 16 pm gmt timer +gmt+bittrex+pumpfontsanserifcsz1 2017-11-04 06:41:26+00:00 1.0 1143136828 2865 please stop asking me to know coin name earlier otherwise i will start blocking everyone who pm me regrading early coin name 2017-11-03 16:35:29+00:00 1.0 1143136828 2864 guys dont pm me to know pump coin earlier it is free and only for free members i never charge for this 2017-11-03 16:30:34+00:00 1.0 1143136828 2860 next post will be coin name + link 2017-11-03 15:59:12+00:00 1.0 1143136828 2859 less then 5 min left in pump exchange bittrex 2017-11-03 15:55:07+00:00 1.0 1143136828 2847 pump announcement today pump at 16 gmt 3 november exchange bittrex less then 3 hours left timer +gmt+bittrex+pumpfontserifcsz1 2017-11-03 13:03:41+00:00 1.0 1143136828 2729 pump will be at 15 gmt 1 hour 30 minutes left be ready we will make it big exchange bittrex 2017-11-01 13:30:03+00:00 1.0 1143136828 2551 xel is now 8 up in just 5 minutes ❤️ 2017-10-29 05:44:01+00:00 1.0 1143136828 2485 i have told you friends i do pump same coin again depend on condition so never do panic sell i pumped byc few days before and next day of my pump byc reached 150+ profit yesterday i pumped gup and today gup is 65+ profit and more expected ❤️ stay with us and pin our channel on top ❤️ 2017-10-28 06:51:40+00:00 1.0 1143136828 2444 pump announcement pump time 0959 am gmt exchange bittrex stay tuned and earn fast in pump less then 2 hours left 2017-10-27 08:08:21+00:00 1.0 1143136828 2391 guys big signal is coming in 5 minutes 2017-10-25 14:01:11+00:00 1.0 1143136828 2323 next post coin name + link 2017-10-23 15:29:04+00:00 1.0 1143136828 2315 pump announcement time 1530 gmt today exchange bittrex 1 hour 6 minutes left 2017-10-23 14:24:28+00:00 1.0 1143136828 2237 less than 5 minutes left in our pump exchange bittrex 2017-10-20 16:55:07+00:00 1.0 1143136828 2231 pump announcement 17 gmt less than 2 hour left in our pump exchange bittrex timer +pump+17+gmtfontsanserifcsz1 2017-10-20 15:03:24+00:00 1.0 1143136828 2226 next post will be coin name and link 2017-10-20 13:59:01+00:00 1.0 1143136828 2224 less than 5 minutes left in our pump exchange bittrex 2017-10-20 13:55:02+00:00 1.0 1143136828 2219 pump announcement 14 gmt less than 1 hour left in our pump exchange bittrex timer +pump+14+gmtfontsanserifcsz1 2017-10-20 13:00:09+00:00 1.0 1143136828 2213 less than 5 minutes left in our pump exchange bittrex 2017-10-20 12:25:01+00:00 1.0 1143136828 2208 pump announcement less than 1 hour left in our pump exchange bittrex timer +pump+53a30+gmtfontsanserifcsz1 2017-10-20 11:30:15+00:00 1.0 1143136828 2150 next post will be coin name and link 2017-10-17 14:28:47+00:00 1.0 1143136828 2149 3 minutes left in bittrex pump 2017-10-17 14:27:11+00:00 1.0 1143136828 2145 20 minutes left in pump exchange bittrex 2017-10-17 14:10:43+00:00 1.0 1143136828 2140 announce passed 5 flash pump form our return we did gam 50 and vtr 42 and slr 35 emc 40 and byc 35 next huge flash pump is on oct 17 today tuesday at 1430 230 pm gmt exchange bittrex ⏱ countdown for our flash pump +flash+pumpfontcursive 2017-10-17 11:16:52+00:00 1.0 1143136828 2095 announce passed 3 flash pump form our return we did gam 50 and vtr 42 and slr 35 emc 40 next huge flash pump is on oct 16 today monday at 15 gmt exchange bittrex ⏱ countdown for our flash pump +pumpfontcursive 2017-10-16 09:45:05+00:00 1.0 1143136828 2076 ✈pump announcement✈ —— ⌛ date 16 th october ⌛ —— exchange – yobit and bittrex — ⏰ time – yobit pump 1355 gmt⏰ ⏰ time – bittrex pump 1530 gmt⏰ be ready for a big movement✈✈✈ —— bittrex pump countdown +pump+fontcursivecsz1 yobit pump countdown +pump+fontcursivecsz1 2017-10-15 18:15:00+00:00 1.0 1143136828 2067 next post will be coin name and link 2017-10-15 14:58:51+00:00 1.0 1143136828 2066 next post will be the coin name and link buy fast and hold for atleast 35 minutes for minimum 2030 profit 2017-10-15 14:58:41+00:00 1.0 1143136828 2065 3 minutes left bittrex pump be ready guys 2017-10-15 14:57:08+00:00 1.0 1143136828 2064 5 minutes left bittrex pump be ready guys 2017-10-15 14:55:01+00:00 1.0 1143136828 2063 10 minutes left in bittrex pump be ready guys 2017-10-15 14:50:02+00:00 1.0 1143136828 2058 pump announcement 1 hour left 15 gmt pump on bittrex 2017-10-15 14:03:00+00:00 1.0 1143136828 1966 5 min left till huge pump on yobit⚡ the next post will be the coin please use trollbox to maximize pump profits 2017-10-13 13:50:04+00:00 1.0 1143136828 1958 ✈pump announcement✈ —— ⌛ date 13 th october ⌛ —— exchange – yobit and bittrex — ⏰ time – yobit pump 1355 gmt ⏰ ⏰ time – bittrex pump 1530 gmt ⏰ be ready for a big movement✈✈✈ —— our last 2 days pump result coin song 500 yobit with peak over 20 minutes coin pkb 55 bittrex with peak coin bcm 1900 yobit coin enrg 50 bittrex with peak and high volume yobit pump +pump+fontcursivecsz1 bittrex pump +pump+ud1fontcursivecsz1 2017-10-13 11:10:14+00:00 1.0 1143136828 1882 5 min left till huge pump on bittrex⚡ the next post will be the coin 2017-10-11 15:11:03+00:00 1.0 1143136828 1878 1 hour left till huge pump on bittrex⚡ 2017-10-11 14:14:57+00:00 1.0 1143136828 1874 5 min left till huge pump on yobit⚡ the next post will be the coin please use trollbox to maximize pump profits 2017-10-11 13:49:59+00:00 1.0 1143136828 1863 ✈pump announcement✈ —— ⌛ date 11 th october ⌛ —— exchange – yobit and bittrex — ⏰ time – yobit pump 1355 gmt⏰ last pump yobit 1900 ⏰ time – bittrex pump 1515 gmt⏰ last pump bittrex 55 be ready for a big movement✈✈✈ —— yobit pump countdown +pump+fontcursivecsz1 bittrex pump countdown +pump+fontcursivecsz1 2017-10-11 11:44:20+00:00 1.0 1143136828 1819 mue hit 2761 after my signal profit 7 in just 5 minutes 2017-10-11 04:36:37+00:00 1.0 1143136828 1808 ✈pump announcement✈ —— ⌛ date 11 th october ⌛ —— exchange – yobit and bittrex — ⏰ time – yobit pump 1355 gmt⏰ last pump yobit 1900 ⏰ time – bittrex pump 1515 gmt⏰ last pump bittrex 55 be ready for a big movement✈✈✈ —— yobit pump countdown +pump+fontcursivecsz1 bittrex pump countdown +pump+fontcursivecsz1 2017-10-10 17:39:54+00:00 1.0 1143136828 1804 5 min left till huge pump on bittrex⚡ the next post will be the coin 2017-10-10 14:55:00+00:00 1.0 1143136828 1799 ➡ pump result ✈ yobit coin bcm ✈ start ‌‎ 000040001 high 000772230 potential 1900 2017-10-10 14:10:38+00:00 1.0 1143136828 1797 5 min left till huge pump on yobit⚡ the next post will be the coin please use trollbox to maximize pump profits 2017-10-10 13:50:04+00:00 1.0 1143136828 1795 15 min left till huge pump on yobit⚡ 2017-10-10 13:40:32+00:00 1.0 1143136828 1792 1 hour left till huge pump on yobit⚡ 2017-10-10 12:55:12+00:00 1.0 1143136828 1774 ✈pump announcement✈ ⌛ date 10 th october ⌛ exchange – yobit and bittrex ⏰ time – yobit pump 1355 gmt⏰ ⏰ time – bittrex pump 1500 gmt⏰ be ready for a big movement✈✈✈ bittrex pump countdown +pump+fontcursivecsz1 yobit pump countdown +pump+fontcursivecsz1 2017-10-10 07:11:59+00:00 1.0 1143136828 1568 vrc pump today no prepump price up for more then 5 minutes and still 4 price up from starting point 2017-10-04 16:22:10+00:00 1.0 1143136828 1564 next post will be coin name for pump 2017-10-04 15:58:27+00:00 1.0 1143136828 1559 20 minutes left in bittrex 16 pm gmt pump 2017-10-04 15:40:45+00:00 1.0 1143136828 1489 mue coin will be burned today anytime already 18 up in just 10 minutes and many chances to go up more 2017-10-03 08:51:37+00:00 1.0 1143136828 1445 next post will be coin name and link 2017-10-02 11:58:48+00:00 1.0 1143136828 1440 30 minutes left in bittrex 12 pm gmt pump 2017-10-02 11:30:09+00:00 1.0 1143136828 1394 ⚠️dear members be ready for next pump yobit 1530 gmt⚠️ 2017-10-01 14:18:42+00:00 1.0 1143136828 1340 3 minutes left in bittrex pump 2017-09-30 14:27:57+00:00 1.0 1143136828 1333 1 hour left in bittrex 1430 gmt pump 2017-09-30 13:30:26+00:00 1.0 1143136828 1328 bittrex pump today 30 september 1230 gmt ready friends d 2017-09-30 12:26:11+00:00 1.0 1143136828 1298 ➡️ pump result ✈️ yobit coin wrt ✈️ start ‌‎ 000000050 high 000000383 potential x 766 766 2017-09-29 16:01:20+00:00 1.0 1143136828 1296 ⚠️⚠️ next post will be coin link in 10 minutes 2017-09-29 15:19:18+00:00 1.0 1143136828 1295 ⚠️⚠️15 minutes left for yobit pump please remember to use trollbox to maximize pump profits 2017-09-29 15:14:43+00:00 1.0 1143136828 1293 ⚠️⚠️ 30 minutes left for yobit pump please remember to use trollbox to maximize pump profits 2017-09-29 14:59:13+00:00 1.0 1143136828 1261 ⚠️⚠️pump announcement⚠️⚠️ —29 september —— yobit pump ⏰ time 1530 gmt ➡️ yobit +pump+fontcursivecsz1 2017-09-28 20:06:06+00:00 1.0 1143136828 1223 ➡️ pump result ✈️ yobit coin xde2 ✈️ start ‌‎ 000031982 high 000128065 potential x 4 2017-09-28 12:19:28+00:00 1.0 1143136828 1218 next post will be coin link in 10 minutes 2017-09-28 11:49:28+00:00 1.0 1143136828 1217 ⚠️⚠️15 minutes left for yobit pump 2017-09-28 11:44:33+00:00 1.0 1143136828 1216 ⚠️⚠️30 minutes left for yobit pump please remember to use trollbox to maximize pump profits 2017-09-28 11:29:14+00:00 1.0 1143136828 1215 pump announcement today 28 september 2017 time 1200 gmt 1 hour left exchange yobit be ready 2017-09-28 11:01:27+00:00 1.0 1143136828 864 our next flash signal will be on today 1600 pm gmt exchange bittrex 2017-09-22 15:09:21+00:00 1.0 1143136828 636 ✈️ next pump ⏰5 mins left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-19 14:55:01+00:00 1.0 1143136828 611 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 19092017 exchange ➖ bittrex investment length ➖ short ⏰ timer +pump+15+gmtfontsanserifcsz1 2017-09-19 07:09:09+00:00 1.0 1143136828 537 next pump at bittrex later 1 min 15h gmt 2017-09-17 14:59:00+00:00 1.0 1143136828 533 next pump at bittrex later 1h 15 gmt 2017-09-17 14:00:02+00:00 1.0 1143136828 530 big pump today 2017-09-17 10:50:26+00:00 1.0 1143136828 422 ✈️ next pump ⏰1min left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-14 14:59:02+00:00 1.0 1143136828 418 ✈️ next pump ⏰1 hour left ⏰ bitrrex ⌛️ at 15h gmt 2017-09-14 14:00:03+00:00 1.0 1143136828 410 ✈️ just 5 mins left ⏰ bittrex mega pump ⌛️ be ready 2017-09-14 12:54:43+00:00 1.0 1143136828 397 high pump ☪️☪️☪️☪️☪️ time ➖ 15h gmt date ➖ 14092017 exchange ➖ bittrex investment length ➖ short +pump+fontcursivecsz1 2017-09-14 08:00:01+00:00 1.0 1143136828 376 ✈️ next pump ⏰1 hours left ⏰ bitrrex ⌛️ 2017-09-13 14:00:01+00:00 1.0 1143136828 375 ✈️ next pump ⏰2 hours left ⏰ bitrrex ⌛️ 2017-09-13 13:00:00+00:00 1.0 1143136828 273 ✈️ next pump ⏰1 hours left ⏰ bitrrex ⌛️ 2017-09-11 14:11:11+00:00 1.0 1143136828 253 high pump ☪️☪️☪️☪️☪️ time ➖ 1500gmt date ➖ 10092017 exchange ➖ bittrex investment length ➖ short +pump+fontcursivecsz1 2017-09-10 23:58:45+00:00 1.0 1143136828 229 ✈️ next pump ⏰1 hours left ⏰ bitrrex ⌛️ 2017-09-10 14:00:01+00:00 1.0 1143136828 228 next pump at bittrex in 1h timer +pump+fontcursivecsz1 today we will link one channel exchange ➖ bittrex all members ➖ 9k ❗️❗️ attention ❗️❗️ ➡️ buy and sell reasonably well to make a profit ⬅️ 2017-09-10 14:00:01+00:00 1.0 1143136828 224 ✈️ next pump ⏰2 hours left ⏰ bitrrex ⌛️ 2017-09-10 13:00:02+00:00 1.0 1143136828 223 friends we have 1 big signal within 2 hours and 1 pump within 3 hours 2017-09-10 12:07:48+00:00 1.0 1143136828 221 next pump at bittrex later 3h ☪️☪️☪️☪️ today we will link one channel exchange ➖ bittrex all members ➖ 9k ❗️❗️ attention ❗️❗️ ➡️ buy and sell reasonably well to make a profit ⬅️ 2017-09-10 12:00:04+00:00 1.0 1143136828 213 high pump ☪️☪️☪️☪️☪️ time ➖ 1500gmt date ➖ 10092017 exchange ➖ bittrex investment length ➖ short +pump+fontcursivecsz1 2017-09-10 01:00:02+00:00 1.0 1143136828 205 high pump ☪️☪️☪️☪️☪️ time ➖ 1500gmt date ➖ 10092017 exchange ➖ bittrex investment length ➖ short ⏰ timer ➖ 2017-09-09 16:00:01+00:00 1.0 1143136828 201 5 minutes ready go to the ☪️☪️☪️ today we will link one channel exchange ➖ bittrex all members ➖ 15k ⚠️ remember the strategy buy and sell fast with profit good luck 2017-09-09 14:55:03+00:00 1.0 1143136828 199 next pump at bittrex in 30 mins — attention ❗️❗️ 1️⃣ this is a free group we will announce the coin here 2️⃣ there are not any paid groups so this is the first and only channel we announce 3️⃣ to create fairness for everyone this can be verified when our signal is graphed after 1 minute 4️⃣encourage bot auto tool it helps you faster 5️⃣ so hurry to be the winner today we will link one channel exchange ➖ bittrex all members ➖ 7k ⚠️ remember the strategy buy and sell fast with profit good luck ⏰ timer ➖ 2017-09-09 14:30:01+00:00 1.0 1143136828 197 next pump at bittrex later 2h timer today we will link one channel exchange ➖ bittrex all members ➖ 7k ⚠️ remember the strategy buy and sell fast with profit 2017-09-09 13:00:02+00:00 1.0 1143136828 152 signal coming we will anouunce a fast moving coin which has huge potential and is showing growth please be here in 20 mins ps this is not a pump 2017-09-07 13:39:52+00:00 1.0 1143136828 79 seems like many people doesnt attend my signals and all those who attend always make profit so now i am thinking to create a paid channel in which i will tell you coin name earlier and you will get back your subscription fees in less then 12 days in paid channel i will tell you pump coin name and vip signal coin name earlier so you will earn 4050 easily in just 2030 minutes 2017-09-03 10:19:46+00:00 1.0 1354503053 4203 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:59:00+00:00 1.0 1354503053 4140 blz on binance‼️ ✳️1d chart looks extreme bullish ✳️bullish stoch rsi cross on 4hr ✳️bullish stoch rsi cross on 1hr ✳️i would say blz sitting at a good buying zone this time ✳️breakingout resistance will pump hard anytime buy 175 180 satoshi sell 195| 210 | 230 | 245 | 299 |330+ stoploss 5 2020-03-21 13:34:28+00:00 1.0 1354503053 4121 alts started to pump with btc very positive move our rock bottom whale signal is expected to give huge profits only 2hours left 400pm1600 gmt 2020-03-19 14:10:54+00:00 1.0 1354503053 3809 there will be strong technical analysis signal coming today watch out stay online today between 330 pm gmt 430 pm gmt massive fomo will appear and will be on top of binance target is 80 100 2019-12-04 09:25:26+00:00 1.0 1354503053 3711 next wave coming soon so buy now and wait for big pump buy now grs 2019-10-30 12:09:36+00:00 1.0 1354503053 3644 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:17+00:00 1.0 1354503053 3640 ❇ its about the push hodl signal ❇ our strong technical analysis signal too coming today between 430 pm gmt 530 pm gmt 1000 1100 pm ist 2019-10-19 06:58:39+00:00 1.0 1354503053 3638 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:10:51+00:00 1.0 1354503053 3404 coin name ongbtc exchange binance 2019-09-19 17:00:28+00:00 1.0 1354503053 3403 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:53+00:00 1.0 1354503053 3399 ready to join the global hodl team well you must be were sure that the global fomo will enter in our most waited binanceblastingsignal cheers only 4 hours 15 minutes left 2019-09-19 12:43:31+00:00 1.0 1354503053 3397 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:57:02+00:00 1.0 1354503053 3273 next post will be coin name log in binance ‼️ 2019-08-22 15:57:49+00:00 1.0 1354503053 3272 5mins more to go we gonna reveal the name of our pump coin its your time to make huge profits within few minutes kind request ✅ plz dont put a sell bid instantly after buying ✅ buy hold for lil time sell at market price your sell bid will restrict our coin to pump more more 2019-08-22 15:54:42+00:00 1.0 1354503053 3269 only 6hrs left for the pump we expect huge from this pump since alts market is green btc is stable lets moon today 2019-08-22 10:02:04+00:00 1.0 1354503053 3264 pump announcement hey folks the next pump is scheduled on 22 august 2019 time 4 pm gmt exchange binance lets make it huge 2019-08-21 16:31:08+00:00 1.0 1354503053 3245 login binance ‼️ next post would be coin name 2019-08-19 15:58:31+00:00 1.0 1354503053 3244 10 mins more we gonna reveal the name of our pump coin its your opportunity kind request plz dont put a sell bid instantly after buying buy hold for lil time sell at market price your sell bid will restrict our coin to pump more more 2019-08-19 15:50:03+00:00 1.0 1354503053 3242 be ready guys just 1 hour is left its time to make heavy profits ✅ the pump is free for all the coin will be shared based on ta news factor ⭕️ 0 prepump no bullshit everyone here in the channel lets participate in the pump make huge money ❤️ we will continue this service if everything goes well share it with your friends other crypto groups let the hype spread ‼️ 2019-08-19 15:00:13+00:00 1.0 1354503053 3229 pump announcement date august 19th ⏱ time 4 pm gmt 930 pm ist exchange hey subs ‼️ we our partners we are going to schedule a pump on binance this pump is free for all no one would receive the coin name earlier not even our vips ie no prepump all will get the coin name on same time collectively we gonna held this pump with other 200k members we expect it to go as high as possible you just need to buy hold for few minutes exit with heavy profits this fomo be gonna be real 2019-08-18 10:24:27+00:00 1.0 1354503053 2626 elf on binance ‼️ elf is having an awesome bouncing support available at 4150 satoshi from where it has bounced 4 times earlier once it breaksout it will pump harder best buy 4150 satoshi selling targets 5 | 10 | 15 2019-03-22 05:36:22+00:00 1.0 1354503053 2551 boom guys ‼️ nxs heading towards moon but at first we need to breakout the wall of 11000 satoshi fresh money is entering in nxs as you can see the volume is rapidly increasing lets go guys once its broken a healthy pump is expected grab it at any rate below this resistance 11000 satoshi and hold till news date for big profit 2019-03-12 15:51:51+00:00 1.0 1354503053 2047 the coin to pump is dlt exchange yobitnet target +500 market dltbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-12-26 17:00:18+00:00 1.0 1354503053 2038 ℹ coin signal information ℹ date wednesday 26122018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in thiso group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-12-26 10:58:07+00:00 1.0 1354503053 2037 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sell it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 26122018 wednesday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ note we always repump our coin to secure profit for everyone 2018-12-26 09:00:06+00:00 1.0 1354503053 1483 only 1 minute to go next post will be the coin name 2018-10-24 18:59:35+00:00 1.0 1354503053 1482 only 5 minutes to go be very ready guys login binance and keep an eye here 2018-10-24 18:55:50+00:00 1.0 1354503053 1480 only 30 minutes are left for todays binancesignalevent be ready and move your funds on binance 2018-10-24 18:30:41+00:00 1.0 1354503053 1469 dear members after the success of our last binancesignalevent we are planning the next binancesignalevent date 24 october time 7pm gmt participants 200k+ telegram users exchange binance info the event will be freeforall no time advantage for anyone it will take approximately 1530 minutes to reach target ‼️ binancesignalevent concept is to buy hold you gotta be fast enough to buy that coin and our target is at least 50100 as a channel member you are also requested to promote this upcoming binancesignalevent event on crypto groups fb twitter etc and make this signal big bigger and the biggest as our goal binancesignalevent are winwin for everyone thanks for all the feedback from last binancesignalevent 2018-10-24 12:22:58+00:00 1.0 1354503053 1335 only 1 minute to go next post will be the coin name 2018-10-13 18:59:22+00:00 1.0 1354503053 1334 only 5 minutes to go be very ready guys login binance and keep an eye here 2018-10-13 18:55:09+00:00 1.0 1354503053 1332 those who wants to make some profits is excited be ready your computer chair table go to a quiet space ✌️ only 30 minutes are left for todays binancesignalevent be ready and move your funds on binance 2018-10-13 18:30:05+00:00 1.0 1354503053 1329 dear members in next post well discuss what the strategies will be in todays signal event which is in less than 1 hour and 45 minutes be sure to keep inviting staytuned 2018-10-13 17:16:58+00:00 1.0 1143606804 1846 buy dnt now ‼ huge buys happened current rate 380 satoshi this coin also should pump up as only those coins are pumping which ones pumped up in last pump few days back 2018-09-20 14:44:27+00:00 1.0 1143606804 1612 here is a coin which has bottomed out cvc binance accumulate it between 26502750 satoshi strong and bottom support huge pump expected buy and wait for it to pump up sell above 3000 | 3300 | 4000+ 2018-07-14 06:24:45+00:00 1.0 1143606804 1283 premiumfreesignals 40 +401 winlosesopen 63501 winrate 55 average signal 7hours 0min up sell 000002154 1000 buy 000001958 now 000001958 000 bittrex stop 000001899 300 original signal quote buy wepower on binance sell at 10 15 quick profits reason to buy this coin is great for day tranding it keeps going up and down on daily basis ⚠️buy price is grabbed via api ⚠️stoploss is generated 3 2018-05-10 11:38:49+00:00 1.0 1143606804 907 coin name appc ▶️buy price 000006500 sale target market target 1 000007200 target 2 000008250 target 3 000015000 long term 2×3× potential 2018-03-01 17:00:10+00:00 1.0 1143606804 820 coin name eos ▶️buy price 92500 sats sale target target 1 98500 target 2 115000 target 3 130000 2018-02-17 20:26:45+00:00 1.0 1143606804 758 bit risky coin name pink ▶️buy price 325 sale target target 1 355 target 2 420 target 3 500+ 2018-02-11 19:43:59+00:00 1.0 1143606804 708 verifiedsignal here is a coin which we know a coin we traded over and over again in the past and a coin that we can make huge profits from but this time we make an exception it is not at the bottom and we will be aiming for longer term so if patience is not your virtue consider that last sentence a warning  we will be focusing on our technical analysis  but also add some fundamental analysis  which includes the news developers and fundamentals related to this coin yesterday it was only the charts today i will give you even more  fundamentals for potcoin pot  potcoin has been a pump dump coin for a while this coin was literally pumped and dumped over and over in the past sometimes seeing 700 increase in just a short period of time maybe just 30 minutes and then going all the way back down now this is a real pump dump but as time went by and the marijuana industry keeps on booming with marijuana now being legal in canada other countries and lots of states in the usa this coin thc and cann  other marijuana related coins are gaining some serious looks theyve become strong  pot has a very active developers team their website is awesome and they are always giving us updates on everything that is going on with their coin and industry in which they are involved  technical analysis for potcoin pot instructions buyin range 000001700 000002000 note the range is incredibly wide because this is a long trade you might come here in a few weeks and find a great price to buy in  stoploss 000001300  targets  1 000003333  2 000004033  3 000005165  4 000005971  5 000007000  5 000009963 new all time high  long term note i used the bittrex charts for this trade and charts there might be slight variation in prices compared to bittrex i also went back and forth between the charts when checking for errors  message my hope is that you make tons of money with this trade remember that this game is about patience all it takes is just to wait  remember that there are only three possible actions that is sell buy and hold  you wont have to use them in that order but if you buy hold and then sell you will definitely become a winner in with this trade  and remember that no matter what happens you deserve the best 2018-02-08 10:00:53+00:00 1.0 1143606804 651 coin name icx exchange binance buy zone between 58006200 satoshi 2018-02-03 17:58:36+00:00 1.0 1143606804 568 pump coin link coin name tle buy fast troll it guys exchange coin exchange coin should go to moooooon 2018-01-29 14:03:58+00:00 1.0 1143606804 560 coin name exp ideal entry ▶️ 4000044000 sale target target 1 48500 target 2 54500 target 3 60000+ dropd ico + rebranding 2018-01-28 16:49:15+00:00 1.0 1143606804 559 coin name trig ▶️buy price below 000022 sale target target 1 00002450 target 2 00002750 target 3 00003000 2018-01-28 16:12:53+00:00 1.0 1143606804 550 pasc has experienced a series of pumps in the last couple of weeks each pump took place approximately once in 4 days the next pump is expected in 2 days sell +10 poloniex cryptosignals cryptotrading tradingsignals 2018-01-28 11:27:07+00:00 1.0 1143606804 470 coin name bat ▶️buy price 45004700 sats sale target target 1 5250 target 2 6000 target 3 7000++ 2018-01-23 18:40:31+00:00 1.0 1143606804 413 miketopcryptosignals 5 +995 winlosesopen 261512 winrate 63 average signal 6hours 52min steem sell 000100000 19412 buy 000034000 now 000042550 2515 bittrex stop 000032980 300 original signal quote steem btc buy range 34k target 1 48k target 2 54k target 3 78k target 4 96k target 5 105k after massive correction touched 05 fib from last run and seems going up right now i think thats a gold coin for long runners and holders now we are on time to get it at cheaply price ⚠️stoploss is generated 3 2018-01-20 21:41:15+00:00 1.0 1143606804 406 cryptobullet 3 +1146 winlosesopen 1368912 winrate 60 average signal 7hours 31min bcy sell 000013500 4062 buy 000009600 now 000009773 180 bittrex stop 000008650 990 original signal quote coin bcy buy at 0000096 stoploss 000008650 sell targets 1st 0000135 2nd 0000243 3rd 000028 4th 000034 indicators on the daily chart you can see a small breakout today and all the indicators showing bullish signals thats 5 different indicators short term we will always have huge swings just like you would have huge swings if you look at the 5 minutes charts we will go up and down on the daily chart but on the weekly chart we are looking really strong the weekly chart is showing all the indicators turning bullish macd rsi stoch dmi obv and plenty of room for growth as well this is the type of chart we like with plenty of room for growth low trading volume is also a signal of plenty of room for growth 2018-01-20 15:09:41+00:00 1.0 1143606804 365 coin name greenf buy fast troll it guys exchange coin exchange coin should go to moooooon 2018-01-17 15:04:29+00:00 1.0 1143606804 317 coin name dnt ▶️buy price 1840 sale target target 1 2400 target 2 2850 target 3 4000+ 2018-01-14 10:53:10+00:00 1.0 1143606804 275 pump coin link coin name xzcd buy fast troll it guys exchange coin exchange coin should go to moooooon 2018-01-10 15:01:28+00:00 1.0 1411081801 70 only 1 minute left the next post will be the coin name 2021-06-05 17:59:11+00:00 1.0 1411081801 68 10 minutes left have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2021-06-05 17:50:09+00:00 1.0 1411081801 65 3 hours left we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 350 2021-06-05 15:00:10+00:00 1.0 1411081801 63 just 1 day to fly to mars on binance stepbystep instructions how to participate in our next pump 1️⃣ register an account at binance and deposit btc into your account all our coin pairings will be in btc 2️⃣ log into your binance account at least 10 minutes before every pump to make sure you are ready to act quickly when the coin announcement is made 3️⃣ as soon as you receive the coin announcement try to buy as much of the selected coin as possible at a low price the coins that we select are low market cap and they can shoot up in value very quickly after the announcement tip try to bid higher than the lowest price to make sure your order is filled 4️⃣ after you bought your coins wait a few minutes outsiders and bots will start to push the price higher because of the increased volume 5️⃣ when the price starts to stabilize at the highest point sell your coins and book your profits it is easy for the announced coins to rise in value by 100 and more but the usual profits will be 2050 6️⃣ thank you for participating invite your friends to our channel 2021-06-04 18:00:15+00:00 1.0 1411081801 62 2 days left until our huge pump 2021-06-03 18:00:13+00:00 1.0 1411081801 61 pump announcement june 5th 6 pm gmt exchange binance 320 profit a quick to do list for new members sign up and send your btc to binancecom at 600pm gmt we will post the coins name ₿ search for the coins name in the btc market to buy quickly click on a sell order 15 35 higher than the current market rate click your available btc value and binance will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase when the price hits the peak and outside investors start buying sell in pieces not all at once 2021-05-31 23:30:09+00:00 1.0 1411081801 58 only 1 minute left the next post will be the coin name 2021-05-22 16:59:08+00:00 1.0 1411081801 56 10 minutes left have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2021-05-22 16:50:07+00:00 1.0 1411081801 50 2 days left until our huge pump 2021-05-20 17:00:10+00:00 1.0 1411081801 49 hello everyone the next pump date saturday may 22 time 1700 pm gmt exchange binance 2021-05-16 17:00:11+00:00 1.0 1411081801 46 only 1 minute left the next post will be the coin name 2021-05-02 17:59:10+00:00 1.0 1411081801 44 10 minutes left have btc available and ready to use have this window and binance open side by side to speed up your buying help promote the coin news always sell within the expected gain range 2021-05-02 17:50:09+00:00 1.0 1411081801 41 3 hours left we are aiming to hold the price up longer with todays pump this allows our marketing team time to promote the coin bringing in outside investors this usually takes from 10 to 30 minutes when marketing team launches the campaign it creates fomo resulting in waves of buy orders coming in at peak prices outside investors are always looking for strong signals to get in and if the price is dropping they will wait for it to bottom out increasing the duration of the signal allows all of us to increase our profits greatly it is very important to hold and keep the price up for a longer more sustainable and attractive signal make sure you stick to our original strategy follow the channels rules and hold remember we can easily reach 350 2021-05-02 15:00:10+00:00 1.0 1411081801 39 just 1 day to fly to mars on binance stepbystep instructions how to participate in our next pump 1️⃣ register an account at binance and deposit btc into your account all our coin pairings will be in btc 2️⃣ log into your binance account at least 10 minutes before every pump to make sure you are ready to act quickly when the coin announcement is made 3️⃣ as soon as you receive the coin announcement try to buy as much of the selected coin as possible at a low price the coins that we select are low market cap and they can shoot up in value very quickly after the announcement tip try to bid higher than the lowest price to make sure your order is filled 4️⃣ after you bought your coins wait a few minutes outsiders and bots will start to push the price higher because of the increased volume 5️⃣ when the price starts to stabilize at the highest point sell your coins and book your profits it is easy for the announced coins to rise in value by 100 and more but the usual profits will be 2050 6️⃣ thank you for participating invite your friends to our channel 2021-05-01 18:00:11+00:00 1.0 1411081801 38 pump announcement may 2nd 6 pm gmt exchange binance 320 profit a quick to do list for new members sign up and send your btc to binancecom at 600pm gmt we will post the coins name ₿ search for the coins name in the btc market to buy quickly click on a sell order 15 35 higher than the current market rate click your available btc value and binance will calculate the correct amount ✅ complete your order hold while the marketing is ongoing and wait for the price to increase when the price hits the peak and outside investors start buying sell in pieces not all at once 2021-04-28 19:22:18+00:00 1.0 1157923690 93 huge hotbit pump for you date 11jun 2021 time 1600 gmt exchange hotbitio pair usdt we opened new vip group with good discount for 24 hours for vip dm jackcrypto1 profit minimum 5x with our pumps 2021-06-08 09:14:34+00:00 1.0 1157923690 91 7 hours left big pump a way exchange hotbitio pair usdt for vip send messages to jackcrypto1 2021-06-05 09:00:17+00:00 1.0 1157923690 89 huge hotbit pump for you date 5jun 2021 time 1600 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-06-03 08:56:45+00:00 1.0 1157923690 84 huge hotbit pump for you date 30may 2021 time 1600 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-05-29 08:40:32+00:00 1.0 1157923690 83 huge hotbit pump for you date 25may 2021 time 1700 gmt exchange hotbitio pair usdt for vip dm jackcrypto1 2021-05-24 16:53:03+00:00 1.0 1157923690 81 today at 17gmt we will go to moon big pump a way for vip dm jackcrypto1 2021-05-22 02:08:32+00:00 1.0 1157923690 67 after our amazing last hotbit pump with peak of +5000 and duration for more than 20 minutes our team continues with a tradition of hotbit pumps to provide another huge pump for you this time we expect minimum +1500 we double the amount of other pump groups participants so we are stronger than last time date 15 may 2021 time 1700 gmt exchange hotbitio pair usdt 2021-05-14 05:49:45+00:00 1.0 1157923690 66 hi our members we back to pumping coins soon we will post info ℹ️ for our big pump we will do a best pump and best profit for you stay tund +5000 2021-05-13 19:09:38+00:00 1.0 1157923690 62 today we will go to moon big pump a way soon big pump last pump it was great pump +3400 join our vips to get the best crypto pumps signals and make huge profits contact me via dm jackcrypto1 join the vip group 2021-05-04 05:22:02+00:00 1.0 1157923690 57 after our great last pump of +5000 which lasted for more than 2 minutes and our team has decided to conduct another huge hotbit pump for you this time we expect minimum 2000 stay tuned and spread that announcement to get as many participants as possible date 3 may2021 time 224000 gmt exchange probitcom pair usdt dm for vip jackcrypto1 2021-05-03 10:24:53+00:00 1.0 1157923690 56 soon big pump last pump it was great pump +1900 join our vips to get the best crypto pumps signals and make huge profits contact me via dm jackcrypto1 join the vips 2021-05-02 13:06:01+00:00 1.0 1157923690 53 last pump it was +1900 huge pump 1900 1001900 we will do a big pump for next time +2500 exchange ✅hotbit ✅bainace ✅kucoin join our vips to get the best crypto pumps signals and make huge profits contact me via dm jackcrypto1 join the vips 2021-04-30 12:12:06+00:00 1.0 1157923690 42 15 hours left we waiting for more 3500 our last pump it was +5000 get ready join our vips to get the best crypto pumps signals and make huge profits contact me via dm jackcrypto1 join the vips 3500+ in just one shot 2021-04-29 04:01:57+00:00 1.0 1157923690 41 24 hours left we waiting for more 2500 our last pump it was +5000 get ready 2021-04-28 19:00:05+00:00 1.0 1157923690 37 2 days until next huge pump on hotbit our last pump it was +5000 2021-04-27 18:59:45+00:00 1.0 1157923690 36 after our great last pump of +5000 which lasted for more than 2 minutes and our team has decided to conduct another huge hotbit pump for you this time we expect minimum 2000 stay tuned and spread that announcement to get as many participants as possible date 29 april 2021 time 1900 gmt exchange hotbitio pair usdt 2021-04-26 00:43:57+00:00 1.0 1222005393 6259 whalesvip|buying falcons here now reversal from the local bottom in shorter time frames with good volume the devloper team is very active and having lots of news upcoming which will enough to skyrocket its pricewe also have detected some unsual buying activity in it from past few hours looks like its ready for a parabolic move now we are expecting a big pump in it worth buy for short term and mid term profits targets 032038045060+ exchange kucoin premium list 2022-01-15 20:10:51+00:00 1.0 1222005393 6117 pump result nebl 60profit start price 2544 weve reached 4058 ✅✅quick profit 60 to all vip members in 1 minutes congrats vip members shared at 2 jan 1200 pm est as per newyork timezone to know next pump coin name ☎️contact bsboy for vip membership 2022-01-02 23:11:35+00:00 1.0 1222005393 6038 pump result pha 38profit start price 934 weve reached 1290 ✅✅quick profit 38 to all vip members in 8 minutes congrats vip members shared at 25 dec 0109 pm est as per newyork timezone to know next pump coin name ☎️contact bsboy for vip membership 2021-12-26 15:41:28+00:00 1.0 1222005393 6001 whalesvip|buying ctsi here you can buy in usdt as well also you can long in 2x to 3x leverage its ready for a big move in 8 days it will pump hard before 31st december buy it now and hold the news is big which is enough for a huge move worth buy for good profit in shorter time frames and it is now reversal from the strong support zone volume growing up now slowlyit will pump big because of news like idex iris lsk tfuel egld tru etc must buy call for big profit in given time frame its usually move faster so have your sell targets as well now time for historical movement whales preferred coin as well many alts performimg well and looks like ctsi can do same thing as chart is super bullish and it has big involvement of whales as well targets 1560178023002700+ targets usdt 077084092120 targets futures 075084094105 ctsi whales premium list 2021-12-22 17:57:00+00:00 1.0 1222005393 5963 pump result tru 48profitproof start price 806 weve reached 1194 ✅✅✅quick profit 48 to all vip members in 37 minutes congrats vip members shared at 18 dec 1216 pm est as per newyork timezone to know next pump coin name ☎️ contact bsboy for vip membership 2021-12-18 23:11:21+00:00 1.0 1222005393 5910 pump result doge 37profit start price 338 weve reached 463 ✅✅✅quick profit 37 to all vip members in 30 minutes congrats vip members shared at 14 dec 0534 am est 1034 am gmt to know next pump coin name ☎️ contact bsboy for vip membership 2021-12-14 15:33:09+00:00 1.0 1222005393 5909 pump result doge 28profit start price 338 weve reached 431 ✅✅quick profit 28 to all vip members in 6 minutes congrats vip members shared at 14 dec 0534 am est as per newyork timezone to know next pump coin name ☎️ contact bsboy for vip membership 2021-12-14 13:33:09+00:00 1.0 1222005393 5704 vip also received coin name 2 hours before pump 2021-11-28 13:26:11+00:00 1.0 1222005393 5703 mega pump | wallstreetbets on binance at 500pm gmt in 4 hours 311 profit in this pump our bot detects the coin and instantly trades for profits in milliseconds you could recover fees instantly ☎️ contact bsboy now 2021-11-28 13:21:40+00:00 1.0 1222005393 5600 pump result drep 165profit start price 1189 weve reached 3152 ✅✅✅quick profit 165 to all vip members congrats vip members shared at 19 nov 0358 pm est to know next pump coin name ☎️ contact bsboy for vip membership 2021-11-20 23:07:38+00:00 1.0 1222005393 5396 pump result mth 130profit start price 58 weve reached 133 ✅✅✅quick profit 130 to all vip members in 2 minutes congrats vip members shared at 7 nov 0500 pm gmt to know next pump coin name ☎️ contact bsboy for vip membership 2021-11-07 17:31:24+00:00 1.0 1222005393 5386 5 hours left until this pump see video for profit results or check 2021-11-07 11:47:58+00:00 1.0 1222005393 5347 mega pump | wallstreet bets pump this sunday see how we hit 320 instant profit using our pump tool ☎️ contact bsboy now note we have no affiliation with either groups 2021-11-04 13:31:42+00:00 1.0 1222005393 5075 ⏰ 5 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long ☎️contact bsboy for vip membership 2021-10-24 16:56:12+00:00 1.0 1222005393 5074 ⏰ 30 minutes left for our mega pump event ‼️ ✅ exclusively for vip members ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long ☎️contact bsboy for vip membership 2021-10-24 16:46:06+00:00 1.0 1222005393 5073 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long ☎️contact bsboy for vip membership 2021-10-24 16:31:51+00:00 1.0 1222005393 4699 the coin we have picked to pump today is wnxm wnxm is looking perfect for a massive pump right now 2021-10-10 17:03:28+00:00 1.0 1222005393 4696 ⏰ 30 minutes left for our mega pump event ‼️ ✅ to know the name of coin earlier after the movement of btc a lot of altcoins have sold off and are now in an excellent position to pump the resistance on these coins is lower than it has been in a long time meaning they can be pumped higher than ever ☎️contact bsboy for vip membership 2021-10-10 16:26:45+00:00 1.0 1222005393 4491 pump result evx 20profit start price 1354 weve reached 1625 ✅✅✅quick profit 20 to all vip members congrats vip members shared at 3 oct 1250 pm gmt to know next pump coin name ☎️ contact bsboy for vip membership 2021-10-03 19:17:17+00:00 1.0 1222005393 4136 whalesvip|buying ez here reversal from the support zone and now volume growing up significantly from past few hours whales favorite coin which will pump hard as its whales preferred coin worth buy for immediate short term quick profits targets 167001900023800 stoploss 14 2021-08-31 20:50:13+00:00 1.0 1222005393 4111 trending news in crypto 400 million in eth now burned by ethereum eip1559 upgrade 54 minutes ago via decryptco➡ not just microstrategy these corporations hodl top 10 stocks with exposure to bitcoin 59 minutes ago via cryptopotatocom➡ is cardano finally ready to blast through 300 analyst benjamin cowen looks at state of ada 1 hour ago via dailyhodlcom➡ bitcoin struggles below 49k solana sol now top 8 surpassing polkadot market watch 2 hours ago via cryptopotatocom➡ bilaxy exchange hacked users urged not to deposit 2 hours ago via cryptopotatocom➡ 2021-08-29 11:00:06+00:00 1.0 1222005393 4052 5 minutes left next post is us our coin date tuesday august 24 2021 today time 1500 utc in 5 mints exchange binance coin type spot btc pair 2021-08-24 14:55:49+00:00 1.0 1222005393 4050 15 minutes left have your binance account logged in and be ready to make at least a 7x profit on spot… our coin is just btc paired so have btc ready date tuesday august 24 2021 today time 1500 utc in 15 mints exchange binance coin type spot btc pair 2021-08-24 14:45:41+00:00 1.0 1222005393 4048 1 hour left be prepared you really dont want to watch this from the sidelines the coin is a btc paid only meaning it can only be purchased with btc so hurry and get that btc bag ready date tuesday august 24 2021 today time 1500 utc in 1 hour exchange binance coin type spot btc pair 2021-08-24 14:00:25+00:00 1.0 1222005393 4047 next pump coin name announced to premium yesterday easy 18 profit in just one day before the pump in 2 hours you want to know name of coin ☎️ contact bsboy for vip membership 2021-08-24 12:50:19+00:00 1.0 1222005393 4046 3 hours left 3 hours left for the 700+ pump we told you about have btc in you binance account get some caffeine in your system and hold on tight… because its going to explode date tuesday august 24 2021 today time 1500 utc in 3 hours exchange binance 2021-08-24 12:00:16+00:00 1.0 1222005393 4044 5 hours left 5 hours left for the pump announcement of the year this beast is expected to make all other pumps so far bite the dust by far date tuesday august 24 2021 today time 1500 utc in 5 hours exchange binance 2021-08-24 10:00:30+00:00 1.0 1222005393 4036 24 hours left date tuesday august 24 2021 time 1500 utc exchange binance 24 hours left for our minimum 7x pump this time weve got a coin so good that after it starts moving nothing will be able to stop it it will break through every single resistance short mid and long term as it builds momentum and creates a wave of outside buyers in binance be ready for further updates and turn on your notifications date tuesday august 24 2021 time 1500 utc exchange binance big pumps binance™ 2021-08-23 15:00:12+00:00 1.0 1222005393 4029 pump announcement date tuesday august 24 2021 time 1500 utc exchange binance we have inside info on an upcoming token with an estimated 50300 move within the first few hours potentially reaching 10x in a matter of weeks premium members will be notified of the coin name a day early contact bsboy for more info please standby for countdown date tuesday august 24 2021 time 1500 utc exchange binance 2021-08-22 11:10:28+00:00 1.0 1222005393 3989 whalesvip|buying big bag of fun here now breaking out the resistance with huge volume from long accumulation zone and volume growing up significantly in past few hours we are expecting huge breakout as this coin pump big time alwaysthis coin didnt did any significant move in this market but now looks like whales gonna pump it hard worth buy for short term big profits targets 596885120+ stoploss 20 2021-08-17 12:47:14+00:00 1.0 1222005393 3968 whalesvip|buying wing here you can buy in usdt as well it has been accumulated over recent period and also not showed up any significantly move yet but now volume growing up significantly and it is whales favorite coin which always pump big in shorter time frames so have your sell targets on given targets it will gonna pump hard bigger moves incoming targets 570660790980+ targets usdt 259028303344+ stoploss 16 in both pairs 2021-08-15 17:00:15+00:00 1.0 1222005393 3946 whalesvip|buying hard here you can buy in usdt as well it has been accumulated over recent period and not showed up any significantly move but now volume growing up and it is whales favorite coin which always pump bigger in shorter time frames so have your sell targets as well ready for bigger moves very soon targets 2240254029003590+ targets usdt 103120144170+ stoploss 1744 satoshi stoploss usdt 15 2021-08-13 17:27:46+00:00 1.0 1222005393 3852 whalesvip|buying lsk here ready for a big move in upcoming days it will pump hard before mainnet v3 migration buy it and hold mainnet v3 migration date 24th of august which is enough for a huge move worth buy for good profit in short and medium time frames and its in small accumulation zone as well volume growing up slowlyit will pump big because of news like lsk chz and tfuel poly tru etc must buy call for big profit in given time frame buy zone 830880 targets 934110013801600+ 2021-08-05 06:29:24+00:00 1.0 1222005393 3803 ozel|ogusdt buy 4 435 sell 466 5 55 6 7 sr flipped in h4 anytime pump can be seen buy hold stoploss 11 2021-07-31 13:06:10+00:00 1.0 1222005393 3592 whalesvip|tomorrow 1 coin will pump hard im suggesting you possible pump able coin expected gains 50 to 200 so if you buy any of coin put sell bids on your desired targets these coins have the highest chances to be pumped you can take part in any of it now or you can invest small small in all via 60 chance cmp 1364 sky 15 chance cmp 2680 nav 15 chance cmp 1174 ark 05 chance cmp 2748 mda 05 chance cmp 1850 these trades will be valid till 22 hours 24 minutes from now note sell all these coins immediately after 11th of july 1700 pm gmt good luck 2021-07-10 22:47:24+00:00 1.0 1222005393 3426 whalesvip|buying evx in dip here currently available in accumulation zone and and its volume growing up slowly it will pump big as its whales top priority coin charts looks bullish as wellworth buy for short term profits targets 1148138016902400+ 2021-06-30 15:18:47+00:00 1.0 1222005393 3304 ⭐️interested in our pump bot tool⭐️ here is an example of what it can do in this video the coin was directly extracted from the announcement channel we then exit the trade at around 180 profit it automatically places a buy order on the coin at its lowest then instantly sells at your specified profit target the bot is also able to detect prepumps to buy early hedge suspected coin and analyse what looks likely to pump for more info or to join premium contact ☎️ bsboy 2021-06-24 17:51:40+00:00 1.0 1222005393 3195 pump result scrt 45profit start price 3681 weve reached 5218 ✅✅✅quick profit 45 in 34 minutes to all vip members congrats vip members shared at 17 june 1003 am est as per newyork timezone to know next pump coin name ☎️ contact bsboy for vip membership 2021-06-17 16:49:38+00:00 1.0 1222005393 3057 pump announcement hello everyone the next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binance advantage free for all with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit on june 13 we will be pumping again with the same 500+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 12 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this time you can be sure that the signal will be given at the absolute bottom with everyone having a fair chance to make up to 500 profit or more a massive amount of btc will be injected into the pump after our members bought already in order to give the pump a boost and a maximum amount of profits to all our members with the collaboration of the biggest whales on binance big investors biggest cryptocurrency channels in the world and a experienced team of traders we can confidently say that this will be one of the biggest pump we have seen lately on binance we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-06-11 14:18:54+00:00 1.0 1222005393 2807 iota pump result 2nd target achieved in just 21 hour ✅✅ one more huge quick profit 150 using 10x leverage amazing pump by our team still thinking and losing daily huge profit we share advance buy and sell targets to premium members ☎️ contact bsboy for premium membership and grab next pump signal 2021-06-03 16:58:22+00:00 1.0 1222005393 2725 25 mins countdown until wallstreetbets pump a coin will be announced and pumped we will automatically buy at lowest point and sell high 37 instant profit last time with our pump tool you just set your profit target and press go still thinking you could recover fees instantly this is your chance ‍♂️ ☎️ contact bsboy 2021-05-30 16:38:03+00:00 1.0 1222005393 2683 pump announcement wallstreetbets todaywepush link ➜ sunday 30th may 5pm gmt more opportunity for huge profits with our pump tool we hit 35 profit on this pump just 3 days ago see video proof above and watch how easy it was we will also reveal the coin being pumped early as you can see you could recover join fees instantly still thinking and losing daily profit ☎️ contact bsboy 2021-05-29 11:56:06+00:00 1.0 1222005393 2598 6 hours left until the pump date wednesday 26 may today ⏰ time 5 pm gmt 1700 gmt exchange binancecom 2021-05-26 11:06:58+00:00 1.0 1222005393 2575 new pumps this week another chance for huge profits with our pump tool wallstreetbets pump wednesday 26th may big pump signal sunday 30th may we hit 326 profit on big pump signal last time see video proof above and watch how easy it was it automatically detects the coin and instantly buys sells we will also reveal the coin being pumped early as you can see you could recover join fees instantly still thinking and losing daily profit ☎️ contact bsboy 2021-05-25 13:01:11+00:00 1.0 1222005393 2554 pump announcement in 2 days from now date wednesday 26 may ⏰ time 5 pm gmt 1700 gmt exchange binancecom we decided to pump earlier because all the coins are at an amazing price low with the current market condition we will be able to make a profit of 200 or even more as for the previous pump announcement we will keep you updated it is possible that we will organize a second pump on the same day we informed you earlier 2021-05-24 21:05:07+00:00 1.0 1222005393 2520 25 mins countdown until big pump signal a coin will be announced and pumped we will buy at lowest point and sell high 326 instant profit last time with our pump tool you just set your profit target and press go still thinking you could recover fees instantly ☎️ contact bsboy 2021-05-23 20:37:06+00:00 1.0 1222005393 2511 big pump signal tonight 9 hour countdown 326 instant profit last time with our pump tool dont believe us just set your profit target and press go ✅ detects prepump coin ✅ automatically extract coin from message ✅ analyse suspicious tokens ✅ split or hedge into different coins ✅ can be used to trade manually instant order 30300 profit still thinking you could recover fees instantly ☎️ contact bsboy note we have no affiliation with big pump signal or other pump events 2021-05-23 11:52:17+00:00 1.0 1222005393 2480 pump announcement hello everyone the next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance advantage free for all with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on may 8 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 8 days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-05-22 20:14:06+00:00 1.0 1222005393 2459 fis result finally all targets achieved in just 7 hour ✅✅✅✅✅✅ huge quick profit 85 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking ☎️ contact bsboy for premium membership and grab next pump signal 2021-05-22 00:38:16+00:00 1.0 1222005393 2354 2 hour countdown until big pump signal 326 instant profit last time dont believe us see the video it automatically detects the coin and buys sells instantly at huge profit just set your profit target and press go we will also reveal which coin is being pumped early still thinking you could recover fees instantly ☎️ contact bsboy or see note if you are new to pumps or crypto we recommend watching from the side lines enter manually at your own risk 2021-05-16 18:52:52+00:00 1.0 1222005393 2343 6h30m hour countdown until big pump signal 326 instant profit last time dont believe us see the video it automatically detects the coin and buys sells instantly at huge profit just set your profit target and press go we will also reveal which coin is being pumped early still thinking you could recover fees instantly ☎️ contact bsboy or see 2021-05-16 14:32:58+00:00 1.0 1222005393 2340 9 hour countdown until big pump signal 326 instant profit last time dont believe us see the video it automatically detects the coin and buys sells instantly at huge profit just set your profit target and press go we will also reveal which coin is being pumped early still thinking you could recover fees instantly ☎️ contact bsboy or see 2021-05-16 11:47:58+00:00 1.0 1222005393 2272 2h30m left until surely big profit signal friday 14th may ➜ 5pm gmt we made 326 profit on big pump signal last time dont believe us check our pump tool to see how easy it was it instantly detects the coin and buys sells at huge targets we will also reveal which coin is being pumped early ☎️ contact bsboy 2021-05-14 14:36:53+00:00 1.0 1222005393 2270 pump countdown 8 hours left target +3000 profit date today ➜ 800pm gmt exchange hotbit volume +90000 members 15 servers previous pump 2663 profit see picture of results ☝️ explanation ✅ premium members receive insider time advantage you could recover join fees instantly still thinking and losing daily profit do not miss this opportunity huge volume and right conditions ☎️ contact bsboy 2021-05-14 11:19:10+00:00 1.0 1222005393 2255 2 new pumps announced friday 14th may ➜ 5pm gmt surely big profit signal sunday 16th may ➜ 9pm gmt big pump signal we made 326 profit on big pump signal last time dont believe us check our pump tool to see how easy it was it instantly detects the coin and buys sells at huge targets we will also reveal which coin is being pumped early as you can see you could recover join fees instantly still thinking and losing daily profit ☎️ contact bsboy 2021-05-13 17:53:00+00:00 1.0 1222005393 2251 vip premium access | 15 limited discount ⭐️ ⭐️ ⭐️ ✅ vip signals ➜ +658 profit in 24 hours ✅ pump tool ➜ +326 instant profit ✅ pump reveal ➜ wsb coin announced 12 minutes early ✅ crypto course ➜ our top pick with 27 indepth videos ✅ ranked pump ➜ +2600 profit on hotbit ✅ technical analysis + futures signals community and more no other channel can give you so much profit within 24 hour as you can see you will earn back fees within a day still thinking and losing daily profit bitcoin is down 15 today a great opportunity to grab premium access now ☎️ contact bsboy or check our website 2021-05-13 13:35:23+00:00 1.0 1222005393 2197 new pump announcement date 14th may ⏰ time 800pm gmt exchange hotbit participants +90000 15 servers target +3000 previous pump 2663 profit see picture of results ☝️ explanation ✅ premium members receive insider time advantage you could recover join fees instantly still thinking and losing daily profit ☎️ contact bsboy 2021-05-11 19:26:14+00:00 1.0 1222005393 2012 btg hit 2945 finally all targets achieved in just 42 hour ✅✅✅✅✅✅ huge quick profit 69 amazing calls by our team congrats premium members told you you could recover fees in just 24 hour still thinking ☎️ contact bsboy for premium membership and grab next pump signal 2021-05-06 05:46:38+00:00 1.0 1222005393 1862 only 2 hours left until big pump signal we made a quick 26 profit on dubai pump yesterday check video to see how easy it is we select coin manually this time and press go our tool also automatically detects pumps extracts coin name analyses the market hedges coin selections and much more we are also revealing early which coin is being pumped today to all our vip members no other channel offers the premium package we provide as you can see in no time you could recover join fees still thinking and losing daily profit ☎️ contact bsboy 2021-05-02 19:00:34+00:00 1.0 1222005393 1821 only 1 hour left until wsb dubai pump signal not sure what a pump is see image attached as explanation this pump is a collaboration with other servers and millions of members including wsb events the volume should be high again ensure you make a profit and avoid getting rekt with our pump tool we hit 30 profit last week and triple digits plenty of times see video proof to see how easy it works just select the coin announcement channel and press go still thinking you could recover fees instantly ☎️ contact bsboy or check for more details 2021-05-01 15:49:59+00:00 1.0 1222005393 1817 new pump alert 5 hours until dubai pump signal a new pump announced today at 500pm gmt and another opportunity for you to make a profit using our pump tool we hit +400 profit before on these see video proof to see how easy it works just select the coin announcement channel and press go you could recover fees instantly +profit ☎️ contact bsboy or check for more details pump link notice we have no affiliation with dubai pump group 2021-05-01 11:33:40+00:00 1.0 1222005393 1802 48 hours left until big pump signal our pump tool hit 320 instant profit on this same pump see video proof to see how easy it was just select the coin announcement channel and press go the bot also detects prepumps automatically trades and analyses the market stop missing out you could recover fees instantly +profit ☎️ contact bsboy or check for more details notice we have no affiliation with big pump signal if you are slow or new to this you may want to watch from the side lines 2021-04-30 20:46:57+00:00 1.0 1222005393 1766 3 days left until big pump signal our pump tool hit 320 instant profit on this same pump dont believe me see video to see how easy it was just select the coin announcement channel and press go stop missing out you could recover fees in a few hours ☎️ contact bsboy or check for details 2021-04-29 18:32:02+00:00 1.0 1222005393 1571 7 hours left until the biggest pump signal of all time our target will be 500+ profit we will be using the btc pairing to pump make sure you have btc to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-25 10:46:27+00:00 1.0 1222005393 1556 3 hours countdown big pump signal the volume should be twice as high as wednesdays which peaked at 89 warning if you are slow or new to this you will likely get rekt premium members can use our pump tool to limit exposure and maximise profit here is an example of what our pump tool achieved on another occasion 320 instant profit check video to see how easy it was just select the coin announcement channel and press go ☝️ you could recover your fees in an instant still thinking☝️ ☎️ contact bsbvip or check for more info 2021-04-24 17:48:49+00:00 1.0 1222005393 1464 big pump signal result the coin was narrowed down and predicted 4 mins ahead of time this was despite an uncoordinated pump announcement and nonplus volumes via hit 8430 in just 2 minutes ✅✅✅ huge quick profit 8889 join premium and grab all quick profit signals hurry up ‍♂️ ☎️ contact bsbvip 2021-04-21 22:34:53+00:00 1.0 1222005393 1441 12 hours countdown to ⭐️big pump signal⭐️ if you are new to pumps check it out this group can pump insane volumes we are talking excess of 2000 bitcoins the artificial increase in value usually results in mass hysteria using our pump tool we hit 320 instant profit last time dont believe me see video to see how easy it was just select the coin announcement channel and press go the pump tool automatically detects the coin and makes an instant transaction inout huge profits ☝️ do not miss this opportunity they dont come often☝️ ☎️ contact bsbvip for more details 2021-04-21 08:34:54+00:00 1.0 1222005393 1427 24 hours countdown to ⭐️big pump signal⭐️ if you are new to pumps check it out this group can pump insane volumes we are talking excess of 2000 bitcoins the artificial increase in value usually results in mass hysteria using our pump tool we hit 320 instant profit last time dont believe me see video to see how easy it was just select the coin announcement channel and press go the pump tool automatically detects the coin and makes an instant transaction inout huge profits ☝️ do not miss this opportunity they dont come often☝️ ☎️ contact bsbvip for more details 2021-04-20 20:42:59+00:00 1.0 1222005393 1390 reminder ⭐️big pump signal⭐️ returns this wednesday the biggest pump group host their first event since january using our pump tool we hit 320 instant profit last time dont believe me see video to see how easy it was just select the coin announcement channel and press go the pump tool automatically detects the coin and makes an instant transaction inout at huge profits ☝️ do not miss this opportunity☝️ ☎️ contact bsbvip for more details 2021-04-19 23:40:19+00:00 1.0 1222005393 1333 pump review 8pm gmt nebula wsb coin activity detected seconds to 8pm with minimal pre pump action volume set a 5 increase over 2 minutes undoubtedly a poor show wsb ⚠️ recent influx in binance users and capital means coin selection and manipulation require optimal conditions ✅ keep calm and follow our quick profit signals and daily insight march 2021 vip results 2021-04-17 21:16:23+00:00 1.0 1222005393 1314 ⭐️⭐️⭐️❗️8pm pump nebula wsb❗️⭐️⭐️⭐️ proof of coin via announced 12 mins ahead of time 11042021 2021-04-17 13:16:45+00:00 1.0 1222005393 1123 ❗️5 minutes left guys next post will be coin name 2021-04-11 16:29:03+00:00 1.0 1222005393 1122 be ready this is huge breakout call and will give very huge sure profit ❗️30 minutes left 2021-04-11 16:00:05+00:00 1.0 1222005393 1120 fundamental based huge profit call coming in next 60 minutes stay tuned with your btc on binance 60 minutes left 2021-04-11 15:33:08+00:00 1.0 1222005393 1118 6 hours left until the biggest pump signal of all time our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-11 14:52:29+00:00 1.0 1222005393 732 pump announcement date sunday march 28 time 1700 pm gmt exchange binance advantage free for all todays pump should hit around 400 do not miss out see to ensure you get in as early as possible or contact bsbvip 2021-03-28 13:04:52+00:00 1.0 1222005393 702 fxs getting ready for big pump 2021-03-27 05:33:32+00:00 1.0 1222005393 659 pump announcement relay hello everyone the next official pump will be scheduled for date sunday march 28 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for we have 5 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-03-23 21:26:17+00:00 1.0 1222005393 580 guys again remember one thingthis is not a pump call twt is fundamentally very strong coin just buy and hold twt 2021-03-19 10:33:10+00:00 1.0 1222005393 567 ❗️we are going to post a fundamental based undervalued coin in next 1 hour exchange binance 2021-03-18 15:42:27+00:00 1.0 1222005393 335 i m buying via here looks like there is gonna huge pump in via in sometime some whales might pump via buy via below 1450 hild for few hours via can be huge today 2021-03-07 16:46:12+00:00 1.0 1222005393 333 buy nav 950990 sell 107011301250++ slow accumulation detected from some hours and its indicating a big pump coming any momentum dont miss this type of deal this coin can increase your portfolio in short term period 2021-03-07 13:10:04+00:00 1.0 1222005393 270 rdn will follow axs 50 pump in next 3 days dont miss this huge opportunity 2021-03-04 13:37:33+00:00 1.0 1393225015 22792 members only 15mins left hope u ready for this massive mountain spot signal event get your spare btc ready exchange binance 2021-12-07 15:45:45+00:00 1.0 1393225015 22791 members only 15mins left hope u ready for this massive mountain spot signal event get your spare btc ready exchange binance 2021-12-07 15:45:41+00:00 1.0 1393225015 22784 attention around 1hour left alts market is showing very positive move fomo is expected to jump in todays mountain spot signal exchange binance 2021-12-07 15:00:32+00:00 1.0 1393225015 22783 attention around 1hour left alts market is showing very positive move fomo is expected to jump in todays mountain spot signal exchange binance 2021-12-07 15:00:28+00:00 1.0 1393225015 22778 members only about 3 hours 30mins left hope u ready for this massive mountain spot signal event get your binance accounts ready with spare btc exchange binance today 4 pm gmt 2021-12-07 12:33:07+00:00 1.0 1393225015 22777 members only about 3 hours 30mins left hope u ready for this massive mountain spot signal event get your binance accounts ready with spare btc exchange binance today 4 pm gmt 2021-12-07 12:33:03+00:00 1.0 1393225015 22776 members only about 3 hours 30mins left hope u ready for this massive mountain spot signal event get your binance accounts ready with spare btc exchange binance today 4 pm gmt 2021-12-07 12:32:59+00:00 1.0 1393225015 22775 attention guys around 5hours 50mins left alts market is showing very positive move fomo is expected to jump in todays mountain pump exchange binance 2021-12-07 10:11:59+00:00 1.0 1393225015 22774 attention guys around 5hours 50mins left alts market is showing very positive move fomo is expected to jump in todays mountain pump exchange binance 2021-12-07 10:11:54+00:00 1.0 1393225015 22772 attention only about 12 hours left hope u ready for this massive mountain spot event get your binance accounts ready with spare btc this mountain spot signal exchange binance 12 hrs remaining today 4pm gmt 2021-12-07 05:27:39+00:00 1.0 1393225015 22771 attention only about 12 hours left hope u ready for this massive mountain spot event get your binance accounts ready with spare btc this mountain spot signal exchange binance 12 hrs remaining today 4pm gmt 2021-12-07 05:27:35+00:00 1.0 1393225015 22465 15 minutes left screens on and have btc ready 2021-11-14 14:45:30+00:00 1.0 1393225015 22464 15 minutes left screens on and have btc ready 2021-11-14 14:45:21+00:00 1.0 1393225015 22463 15 minutes left screens on and have btc ready 2021-11-14 14:45:13+00:00 1.0 1393225015 22459 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:36+00:00 1.0 1393225015 22458 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:31+00:00 1.0 1393225015 22457 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-11-14 14:00:24+00:00 1.0 1393225015 22451 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:31:41+00:00 1.0 1393225015 22450 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:31:31+00:00 1.0 1393225015 22449 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:31:17+00:00 1.0 1393225015 22447 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:01:30+00:00 1.0 1393225015 22446 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:01:23+00:00 1.0 1393225015 22445 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-11-14 12:01:16+00:00 1.0 1393225015 22432 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales our ready our team is ready… are you ready 2021-11-13 15:01:29+00:00 1.0 1393225015 22431 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales our ready our team is ready… are you ready 2021-11-13 15:01:24+00:00 1.0 1393225015 22430 24 hours left date sunday november 14 2021 time 1500 gmt exchange binance the official 24 hours countdown has started for one of the biggest pumps binance has ever seen and by far the biggest volume were expecting to see in 24 hours for such an event our whales our ready our team is ready… are you ready 2021-11-13 15:01:18+00:00 1.0 1393225015 22415 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:26:10+00:00 1.0 1393225015 22414 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:26:05+00:00 1.0 1393225015 22413 less then 48 hours left date sunday november 14 2021 time 1500 gmt exchange binance exactly 2 days left for our pump our strategy is in place and well make sure everyone makes amazing profits with our new and curated pump strategy price wont drop so make sure you ride every single wave turn on your push notifications and make sure you dont have our channel on mute you really dont want to miss this pump 2021-11-12 15:25:58+00:00 1.0 1393225015 22401 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:00:38+00:00 1.0 1393225015 22400 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:00:28+00:00 1.0 1393225015 22399 3 days left date sunday november 14 2021 time 1500 gmt exchange binance yes thats right… just 72 hours left for one of the biggest and highest volume pumps binance has ever seen you already know how profitable our pumps are however were using strategies never used before this time and combining them with a hype only elon musk has been able to pull off… get ready for it everyone were going for a ride 2021-11-11 15:00:21+00:00 1.0 1393225015 22372 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:15:00+00:00 1.0 1393225015 22371 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:14:55+00:00 1.0 1393225015 22370 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:14:49+00:00 1.0 1393225015 22369 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:14:04+00:00 1.0 1393225015 22368 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:13:57+00:00 1.0 1393225015 22367 pump announcement date sunday november 14 2021 time 1500 gmt exchange binance you all saw brd make us ridiculous profits once again after making us 100+ on our first pump and a decent 70 on our second pump compared to any other pump group in the word were the only once holding prices 4060 in profit for well over 20 minute giving every single member to make amazing profits our strategy is unique our profitability is the highest and our community is priceless to thank each and every one of you for your trust in our channel were having what will go into history books as one of the strongest and longer lasting pumps veer to exist a pump like that should be making every single one of our members ridiculously amazing profits the strategy no prebuying only people from this channel start buying at the beginning of the pump before sending all the other traders and our whales to keep buying and supporting price get ready for it… its about to get very very profitable 2021-11-08 15:13:41+00:00 1.0 1393225015 22246 15 minutes left screens on and have btc ready 2021-10-31 14:47:13+00:00 1.0 1393225015 22244 15 minutes left screens on and have btc ready 2021-10-31 14:47:08+00:00 1.0 1393225015 22242 15 minutes left screens on and have btc ready 2021-10-31 14:47:03+00:00 1.0 1393225015 22233 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:37+00:00 1.0 1393225015 22232 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:30+00:00 1.0 1393225015 22231 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-31 14:00:24+00:00 1.0 1393225015 22230 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:59+00:00 1.0 1393225015 22229 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:49+00:00 1.0 1393225015 22228 3 hours left pump instructions we already know what happens when we involve the biggest of whales in the market… price explodes to ridiculous highs and remains up without dropping a penny meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-31 12:00:42+00:00 1.0 1393225015 22212 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:25+00:00 1.0 1393225015 22211 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:18+00:00 1.0 1393225015 22210 24 hours left date sunday october 31 2021 time 1500 gmt exchange binance 1 day left exactly 24 hours left before one of the most violent binance pumps ever were working nonstop to make this pump known in every single coring of the world people who will be entering after youve bought the coin to push it even higher this is why our pumps are so profitable 2021-10-30 15:00:13+00:00 1.0 1393225015 22129 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 15:08:29+00:00 1.0 1393225015 22128 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 15:08:01+00:00 1.0 1393225015 22127 pump announcement date sunday october 31 2021 time 1500 gmt exchange binance weve pretty much aced each and every single one of our mega calls so far and this one will be no exception in fact its likely about to be the strongest move weve seen in the year so far were now the largest pump network in the world and our pumps are the only ones that manage to hold their gains long enough for everyone to make incredible profits why because our strategy is unique and it has proven so over and over again first of all we have absolutely 0 prebuying second we buy and hold waiting for price to climb higher and outside traders to enter our coin before starting to sell and third the most important of all we have the biggest whales in the market with us in every pump gradually buying into sell walls and creating several pump waves and holding price up to lure outsiders and just as we promised… we now have something special for you a pump so perfectly executed that the least amount of profit you can expect is 170200 be ready for it were only 6 days away 2021-10-25 15:07:54+00:00 1.0 1393225015 21942 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:48+00:00 1.0 1393225015 21941 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:43+00:00 1.0 1393225015 21940 wabi charting update wabi has completely bottomed out making it a perfect coin for this pump its first major resistance is at 9800 sats at which point it would be already making us a 1800+ profit the 300 we mentioned before is just a low target were holding our wabi up to 1800 and 8000 40000 sats enjoy the ride 2021-10-14 15:01:36+00:00 1.0 1393225015 21922 15 minutes left screens on and btc ready 2021-10-14 14:45:31+00:00 1.0 1393225015 21921 15 minutes left screens on and btc ready 2021-10-14 14:45:26+00:00 1.0 1393225015 21920 15 minutes left screens on and btc ready 2021-10-14 14:45:20+00:00 1.0 1393225015 21912 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:00:31+00:00 1.0 1393225015 21911 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:00:23+00:00 1.0 1393225015 21910 1 hour left 1 hour left remember our pump instructions and remember the main objective of this pump selling in great profit after luring outside traders into our pump 2021-10-14 14:00:18+00:00 1.0 1393225015 21907 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:34+00:00 1.0 1393225015 21906 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:26+00:00 1.0 1393225015 21905 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-14 12:00:20+00:00 1.0 1393225015 21872 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:36+00:00 1.0 1393225015 21871 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:28+00:00 1.0 1393225015 21870 24 hours left date thursday october 14 2021 time 1500 gmt exchange binance 24 hours left for what will likely be the largest and highest volume pump of 2021 on binance our team has been planning this for weeks and were now ready for the freeforall pump that will make us all a profit well remember for the rest of our lives 2021-10-13 15:00:22+00:00 1.0 1393225015 21744 sky update congratulations everyone this is currently our longest sustaining and strongest pump yes… we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy 2021-10-05 15:19:38+00:00 1.0 1393225015 21743 sky update congratulations everyone this is currently our longest sustaining and strongest pump yes… we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy 2021-10-05 15:19:24+00:00 1.0 1393225015 21742 sky update congratulations everyone this is currently our longest sustaining and strongest pump yes… we told you we would have our whales constantly buying up sell orders in order to support price and lure outside traders into our pump over 15 minutes and wee still holding 45+ in profit you may take some profit and enjoy 2021-10-05 15:19:08+00:00 1.0 1393225015 21720 15 minutes left dont forget our instructions to maximize your profits from this pump 2021-10-05 14:45:31+00:00 1.0 1393225015 21719 15 minutes left dont forget our instructions to maximize your profits from this pump 2021-10-05 14:45:23+00:00 1.0 1393225015 21718 15 minutes left dont forget our instructions to maximize your profits from this pump 2021-10-05 14:45:17+00:00 1.0 1393225015 21713 1 hour left 1 hour left for our biggest pump yet be ready 2021-10-05 14:01:30+00:00 1.0 1393225015 21712 1 hour left 1 hour left for our biggest pump yet be ready 2021-10-05 14:01:23+00:00 1.0 1393225015 21711 1 hour left 1 hour left for our biggest pump yet be ready 2021-10-05 14:01:18+00:00 1.0 1393225015 21706 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-05 11:31:23+00:00 1.0 1393225015 21705 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-05 11:31:11+00:00 1.0 1393225015 21704 3 hours left pump instructions this is our first pump involving the biggest of whales in the market meaning well have buying support all throughout our pump we recommend initially market buying 5075 of balance at market price to catch the first and strongest wave then laddering the remaining btc balance as limit orders below current market prices were expecting at least 3 initial waves to this pump meaning well be market and limit buying and holding at different price points to get the best average entry when to sell in order to get the highest volume of outsider buying volume for this pump do not sell into buying walls set by other members instead sell small parts as price goes up and place limit orders above 150200 the main objective of this pump is for all big pumps binance members to make a huge profit meaning we need to hold price up while outside traders enter the market our whales will be taking care of continuously pushing price up by market buying until we get the most outside buyers in 2021-10-05 11:31:01+00:00 1.0 1393225015 21690 15 hours left date tuesday october 5 2021 time 1500 gmt exchange binance 15 hours left for the most massive pump binance has seen… our whales are ready for it let the final countdown begin⏳ 2021-10-05 00:02:06+00:00 1.0 1393225015 21689 15 hours left date tuesday october 5 2021 time 1500 gmt exchange binance 15 hours left for the most massive pump binance has seen… our whales are ready for it let the final countdown begin⏳ 2021-10-05 00:01:48+00:00 1.0 1393225015 21688 15 hours left date tuesday october 5 2021 time 1500 gmt exchange binance 15 hours left for the most massive pump binance has seen… our whales are ready for it let the final countdown begin⏳ 2021-10-05 00:01:36+00:00 1.0 1393225015 21668 pump announcement date tuesday october 5 2021 time 1500 gmt exchange binance youve seen fun pump 50 brd pump 110 nebl pump 93 and even pix pump over 40… if you think those were “great pumps” its because you havent seen what were preparing for you yet our october 5th pump will not only be the largest winner weve had so far expecting at least 200 on it it will also be the largest volume one 400+ btc and the most resilient one as were expecting it to pump without any serious correction between waves this pump is unique because its being organized and backed up by all the largest crypto channels and groups reddit twitter telegram and by the largest whales in the market holding between 500 and 1500 btc each if you missed our previous pumps this is your chance to ride the most profitable ride of the year be ready for it 2021-10-04 04:51:22+00:00 1.0 1393225015 21667 pump announcement date tuesday october 5 2021 time 1500 gmt exchange binance youve seen fun pump 50 brd pump 110 nebl pump 93 and even pix pump over 40… if you think those were “great pumps” its because you havent seen what were preparing for you yet our october 5th pump will not only be the largest winner weve had so far expecting at least 200 on it it will also be the largest volume one 400+ btc and the most resilient one as were expecting it to pump without any serious correction between waves this pump is unique because its being organized and backed up by all the largest crypto channels and groups reddit twitter telegram and by the largest whales in the market holding between 500 and 1500 btc each if you missed our previous pumps this is your chance to ride the most profitable ride of the year be ready for it 2021-10-04 04:51:12+00:00 1.0 1393225015 21666 pump announcement date tuesday october 5 2021 time 1500 gmt exchange binance youve seen fun pump 50 brd pump 110 nebl pump 93 and even pix pump over 40… if you think those were “great pumps” its because you havent seen what were preparing for you yet our october 5th pump will not only be the largest winner weve had so far expecting at least 200 on it it will also be the largest volume one 400+ btc and the most resilient one as were expecting it to pump without any serious correction between waves this pump is unique because its being organized and backed up by all the largest crypto channels and groups reddit twitter telegram and by the largest whales in the market holding between 500 and 1500 btc each if you missed our previous pumps this is your chance to ride the most profitable ride of the year be ready for it 2021-10-04 04:51:04+00:00 1.0 1393225015 20954 announcement members we will provide you the strong tafa based future signal in less than 30 minutes transfer your fundsusdt and be ready 2021-08-06 04:26:47+00:00 1.0 1393225015 20930 announcement members we will provide you the strong tafa based future signal in less than 30 minutes transfer your fundsusdt and be ready 2021-08-05 15:09:51+00:00 1.0 1393225015 20929 announcement members we will provide you the strong tafa based future signal in less than 30 minutes transfer your fundsusdt and be ready 2021-08-05 15:09:38+00:00 1.0 1393225015 18740 buy and hold its dont sell wait for big pump 2021-04-05 12:58:11+00:00 1.0 1393225015 12330 30 minutes left until the dip call login binance have everything ready team the trick to make some amazing profits is be focused to buy fast hold promote the coin profit and brag to your friends expected gain range 100 2020-08-02 15:31:43+00:00 1.0 1393225015 12329 30 minutes left until the dip call login binance have everything ready team the trick to make some amazing profits is be focused to buy fast hold promote the coin profit and brag to your friends expected gain range 100 2020-08-02 15:31:38+00:00 1.0 1393225015 12328 30 minutes left until the dip call login binance have everything ready team the trick to make some amazing profits is be focused to buy fast hold promote the coin profit and brag to your friends expected gain range 100 2020-08-02 15:31:27+00:00 1.0 1393225015 11980 only 5 minutes to go❗️ huge global fomo warming up next post will be globalfomocall login binance and keep an eye here‍ 2020-07-21 15:55:26+00:00 1.0 1393225015 11979 only 5 minutes to go❗️ huge global fomo warming up next post will be globalfomocall login binance and keep an eye here‍ 2020-07-21 15:55:21+00:00 1.0 1393225015 11978 only 5 minutes to go❗️ huge global fomo warming up next post will be globalfomocall login binance and keep an eye here‍ 2020-07-21 15:55:15+00:00 1.0 1393225015 11977 30 minutes left globalfomocall login binance now the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit promote the coin as a united team huge fomo warming up target 2x+ 2020-07-21 15:33:29+00:00 1.0 1393225015 11976 30 minutes left globalfomocall login binance now the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit promote the coin as a united team huge fomo warming up target 2x+ 2020-07-21 15:33:22+00:00 1.0 1393225015 11975 30 minutes left globalfomocall login binance now the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit promote the coin as a united team huge fomo warming up target 2x+ 2020-07-21 15:33:17+00:00 1.0 1393225015 11974 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ whales support will be there only 60 minutes are left for todays 2x global fomo call 2020-07-21 15:04:21+00:00 1.0 1393225015 11973 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ whales support will be there only 60 minutes are left for todays 2x global fomo call 2020-07-21 15:04:15+00:00 1.0 1393225015 11972 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ whales support will be there only 60 minutes are left for todays 2x global fomo call 2020-07-21 15:04:10+00:00 1.0 1393225015 11937 quick alert a new global fomo call scheduled for tommorow at 4pm gmt as the alt market is on fire more than ready for a new fomo call this trendy call will be big we expect 2x+ spikes in short term this will be a different massive trendy call with a lot of volume fomo be ready this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready date july 21tomorrow exchange binance expected target 2x time 4pm gmt 24h left global fomo call 2020-07-20 16:07:40+00:00 1.0 1393225015 11936 quick alert a new global fomo call scheduled for tommorow at 4pm gmt as the alt market is on fire more than ready for a new fomo call this trendy call will be big we expect 2x+ spikes in short term this will be a different massive trendy call with a lot of volume fomo be ready this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready date july 21tomorrow exchange binance expected target 2x time 4pm gmt 24h left global fomo call 2020-07-20 16:07:33+00:00 1.0 1393225015 11935 quick alert a new global fomo call scheduled for tommorow at 4pm gmt as the alt market is on fire more than ready for a new fomo call this trendy call will be big we expect 2x+ spikes in short term this will be a different massive trendy call with a lot of volume fomo be ready this time with a different strategy to bring in all the global fomo and we believe that the spike will be 2x for sure be ready date july 21tomorrow exchange binance expected target 2x time 4pm gmt 24h left global fomo call 2020-07-20 16:07:27+00:00 1.0 1393225015 11675 fundamentally adx is very undervalued coin having only 7m cap with very active team adx is decentralized ad exchange plateform and a chinese project with strong development team adx having only 73million supply now our whales will pump it to the moon 2020-07-07 16:08:32+00:00 1.0 1393225015 11672 fundamentally adx is very undervalued coin having only 7m cap with very active team adx is decentralized ad exchange plateform and a chinese project with strong development team adx having only 73million supply now our whales will pump it to the moon 2020-07-07 16:08:32+00:00 1.0 1393225015 11666 fundamentally adx is very undervalued coin having only 7m cap with very active team adx is decentralized ad exchange plateform and a chinese project with strong development team adx having only 73million supply now our whales will pump it to the moon 2020-07-07 16:04:04+00:00 1.0 1393225015 11661 adx adx adx lets 2x spike with our whales adx is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-07-07 16:01:05+00:00 1.0 1393225015 11660 adx adx adx lets 2x spike with our whales adx is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-07-07 16:00:45+00:00 1.0 1393225015 11659 adx adx adx lets 2x spike with our whales adx is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-07-07 16:00:35+00:00 1.0 1393225015 11658 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call our goal is more than 2x login binance and keep an eye here 2020-07-07 15:55:53+00:00 1.0 1393225015 11657 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call our goal is more than 2x login binance and keep an eye here 2020-07-07 15:55:45+00:00 1.0 1393225015 11656 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call our goal is more than 2x login binance and keep an eye here 2020-07-07 15:55:30+00:00 1.0 1393225015 11655 30 minutes left strong ta+fa call login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-07-07 15:30:44+00:00 1.0 1393225015 11654 30 minutes left strong ta+fa call login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-07-07 15:30:36+00:00 1.0 1393225015 11653 30 minutes left strong ta+fa call login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-07-07 15:30:29+00:00 1.0 1393225015 11652 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x strong ta+fa call 2020-07-07 15:00:55+00:00 1.0 1393225015 11651 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x strong ta+fa call 2020-07-07 15:00:38+00:00 1.0 1393225015 11650 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x strong ta+fa call 2020-07-07 15:00:26+00:00 1.0 1393225015 11645 4 hour left until the strong ta+fa call todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ our alt whale team is ready and our call will be on top of the binance for next 24h atleast 2020-07-07 12:00:30+00:00 1.0 1393225015 11644 4 hour left until the strong ta+fa call todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ our alt whale team is ready and our call will be on top of the binance for next 24h atleast 2020-07-07 12:00:13+00:00 1.0 1393225015 11618 great news for all to celebrate this great ongoing altseason our whales decided to push most awaiting strong ta+fa call which is sitting on fking bottom and waiting for a kick to moon on binance exchange our previous call oax was a pure gem were expecting 2x gain in short term this time as big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date july 7tomorrow exchange binance time 4pm gmt target 2x 2020-07-06 14:14:22+00:00 1.0 1393225015 11617 great news for all to celebrate this great ongoing altseason our whales decided to push most awaiting strong ta+fa call which is sitting on fking bottom and waiting for a kick to moon on binance exchange our previous call oax was a pure gem were expecting 2x gain in short term this time as big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date july 7tomorrow exchange binance time 4pm gmt target 2x 2020-07-06 14:14:13+00:00 1.0 1393225015 11415 oax oax oax lets 2x spike with our whales oax is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-06-28 16:00:24+00:00 1.0 1393225015 11414 oax oax oax lets 2x spike with our whales oax is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy coin sitting at bottom 2020-06-28 16:00:19+00:00 1.0 1393225015 11412 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call login binance and keep an eye here 2020-06-28 15:57:16+00:00 1.0 1393225015 11411 only 5 minutes to go❗️ our best alt whale team will support us hard to the moon we will be on top of the binance for 24h huge global fomo warming up next post will be strong ta+fa call login binance and keep an eye here 2020-06-28 15:57:11+00:00 1.0 1393225015 11409 30 minutes left strong ta+fa call login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-06-28 15:30:40+00:00 1.0 1393225015 11408 30 minutes left strong ta+fa call login binance now have everything ready team the trick to make some amazing profits is to be focused and ready to buy fast hold for maximum profit with our whale team huge fomo warming up target 100+ 2020-06-28 15:30:34+00:00 1.0 1393225015 11406 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x strong ta+fa call 2020-06-28 15:06:41+00:00 1.0 1393225015 11405 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ the whale team is ready only 60 minutes are left for todays 2x strong ta+fa call 2020-06-28 15:06:32+00:00 1.0 1393225015 11399 4 hour left until the strong ta+fa call todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ our alt whale team is ready and our call will be on top of the binance for next 24h atleast 2020-06-28 12:12:15+00:00 1.0 1393225015 11397 4 hour left until the strong ta+fa call todays call will be different and with a new massive fomo strategy supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ our alt whale team is ready and our call will be on top of the binance for next 24h atleast 2020-06-28 12:11:53+00:00 1.0 1393225015 11388 hey folks today at 4pm gmt our whales will push a strong tafa based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 12 hours left until the most awaiting strong tafa call backed by our whales‼️ 2020-06-28 04:03:05+00:00 1.0 1393225015 11387 hey folks today at 4pm gmt our whales will push a strong tafa based coin to the moon and you all will be able to make massive profits in short term well share strong ta+fa based unicorn waiting for a kick to moon read the pinned post for details less than 12 hours left until the most awaiting strong tafa call backed by our whales‼️ 2020-06-28 04:02:58+00:00 1.0 1393225015 11363 great news for all to celebrate this great ongoing altseason our whales decided to push a strong tafa based unicorn which is sitting on fking bottom and waiting for a kick to moon on binance exchange were expecting 2x gain in short term this time as big big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date june 28tomorrow exchange binance time 4pm gmt target 2x 2020-06-27 14:29:45+00:00 1.0 1393225015 11362 great news for all to celebrate this great ongoing altseason our whales decided to push a strong tafa based unicorn which is sitting on fking bottom and waiting for a kick to moon on binance exchange were expecting 2x gain in short term this time as big big whales are working with us and we will make sure to reach as high as possible alts are primed for huge spikes and we believe the fomo will be huge with massive volume therefore we recommended to buy as fast as possible and hold for maximum profit make sure you have your binance account ready and loaded with btc for tommorow‼️ date june 28tomorrow exchange binance time 4pm gmt target 2x 2020-06-27 14:29:37+00:00 1.0 1393225015 10888 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-13 12:27:22+00:00 1.0 1393225015 10887 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-13 12:26:48+00:00 1.0 1393225015 10349 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:49:25+00:00 1.0 1393225015 10348 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:49:20+00:00 1.0 1393225015 10167 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 16:00:39+00:00 1.0 1393225015 10162 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:59+00:00 1.0 1393225015 10161 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:54+00:00 1.0 1393225015 10160 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:01:01+00:00 1.0 1393225015 10158 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:48+00:00 1.0 1393225015 10157 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:02:56+00:00 1.0 1393225015 10155 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:02:42+00:00 1.0 1393225015 10142 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this less than 12 hours left to see the mountain alt today | 4 pm gmt 2020-05-29 04:07:54+00:00 1.0 1393225015 10140 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this less than 12 hours left to see the mountain alt today | 4 pm gmt 2020-05-29 04:06:55+00:00 1.0 1393225015 8334 alright folks here is another rock bottom whale signal details this signal will come on 24nd mar at 400 pm gmt alts are going good as btc is stable above 65k keep the date and time in mind mar 24 | 400 pm gmt today 2020-03-24 03:12:38+00:00 1.0 1393225015 8256 alright folks here is another rock bottom whale signal details this signal will come on 22nd mar at 400 pm gmt alts are going good as btc is stable above 6k keep the date and time in mind mar 22 | 400 pm gmt 2020-03-21 17:06:16+00:00 1.0 1393225015 6072 steem is also organising big fest in bangkok name is steemfest4bangkok so this is also very bullish news for steem growing up so buy now and wait for big pump dont sell and buy the dip and enjoy the profit steemstrongtechnicalanalysissignal 2019-10-19 16:56:27+00:00 1.0 1393225015 6056 alright guys there is a big push hodl strong technical analysis signal coming today this is gonna be a bit different we are gonna push it for few hrs and you will see this coin on top of binance like edo eng etc we will be promoting this coin so that it keeps moving up and fomo attracts dont sell early just buy asap and hodl this for some hrs then sell the top if you dont hodl then you gonna regret today between 430 530 pm gmt 1000 1100 pm ist massive push hodl 2019-10-18 04:45:56+00:00 1.0 1405131456 205 a new pump date has been decided we will be organising this well in advance to ensure the most participation there will be several huge discordtelegram servers joining us on this pump and we expect incredible profitsresults please check the detailed guide on this link on how to successfully pump on kucoin topumponkucoin0705 everyone saturday 18th september 7pm gmt exchange kucoincom coin pairing usdt 2021-09-06 16:50:34+00:00 1.0 1405131456 198 we will be aiming to hit our target of a 50 peak profits for this pump the next message will be the coin with a clickable link everyone 2021-08-26 18:58:05+00:00 1.0 1405131456 194 1 hour left reminder our last pump lasted over 30 minutes long so we anticipate there to be multiple opportunities to make profits dont panic sell too early and you will have your best chances of making profits everyone 2021-08-26 18:02:11+00:00 1.0 1405131456 192 just 6 hours remains until our next massive pump on kucoincom everyone 2021-08-26 13:01:45+00:00 1.0 1405131456 191 only 24 hours remain until our pump this signal will be sent to multiple servers combining over 100000 members we expect great results the market is looking fantastic and we have a large range of coins to select we can guarantee there will be absolutely no pre pump for tomorrow everyone 2021-08-25 19:00:47+00:00 1.0 1405131456 175 everyone loves memecoins especially ones that moon we have been fortunate enough to be sponsored by a memecoin that we are releasing information on in the timedate below this coin is picking up momentum and uptrending and we believe there is great profits to be made we will be holding huge giveaways in this coin soon also tuesday 24th august 7pm gmt exchange pancakeswap coin pairing bnb 8 hours from now 2021-08-24 10:52:06+00:00 1.0 1405131456 157 2 minutes until the pump everyone target gain 1000 the next post will be the coin 2021-07-28 18:58:01+00:00 1.0 1405131456 156 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-07-28 18:50:01+00:00 1.0 1405131456 154 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we will have a fantastic pump 2021-07-28 17:59:53+00:00 1.0 1405131456 153 2 hours left until our pump we expect a fantastic pump today given the a++ conditions and our expanded reach in order to participate make sure you have usdt available in your trading account on kucoin the target coin will post in this channel 2 hours from now ask any questions you may have or see the howtopump guide if you need further assistance everyone 2021-07-28 16:59:58+00:00 1.0 1405131456 151 48 hours left everyone wednesday july 21st 1900 gmt 3pm est echange kucoin pairing usdt 48 hours left until our massive pump you need to have usdt in your trading account on kucoin in order to participate with our recent pumps hitting 1000 we expect this pump to reach that level or even higher it will be our main objective to have a flawless pump where all members can earn huge profit as we surge our coin to an insane value familiarize yourself with how our pumps work so you can earn the most possible profit potential for this pump will be massive make sure you are here in 48 hours to take your piece 2021-07-19 19:01:55+00:00 1.0 1405131456 149 5 days left until our pump wednesday july 21st 1900 gmt 3pm est as always our pump will be on the kucoin exchange kucoincom or mobile app and will use the udst pair for our target coin in order to prepare yourself for the pump please see our posted guides the past pumpresults and member successstories so you know what to expect our pumps generally go 1000 with up to 1 million or more in volume our growth and overall reach are quickly expanding to make our upcoming pump much bigger than the last we will prepare this pump with modest goals in mind and look to shatter them on pump day stay tuned for more updates everyone 2021-07-16 18:11:04+00:00 1.0 1405131456 148 our next pump date has been decided we are fortunate enough to be pairing up with some of the biggest pump servers in the community for our next pump over 100000 members combined and we expect to hit well above 500 peak profits we are organising it 8 days in advance to ensure all our members are fully prepared everyone if you are new to pumping check out 825123301155667988 to participate as the coin will be selected from and pumped on kucoincom more details follow ⏰ wednesday 21st july 7pm gmt exchange kucoincom coin pairing usdt 2021-07-13 20:52:46+00:00 1.0 1405131456 145 6 hours left until our next massive kucoin pump coins on kucoin are currently rock bottom and are very easy to pump we are hoping this results in a fantastic gain the signal will be spread amongst several huge discord and telegram servers meaning well over 100000 members potentially taking part get ready with usdt in your trading account on kucoincom to participate everyone 2021-07-08 13:01:58+00:00 1.0 1405131456 138 next pump announcement now that the crypto market is back climbing we have decided to announce our next pump for the coming week we have accumulated several thousand new members across our servers in preparation for this next pump and there will be more buying power than ever before more details can be found below everyone ⏰ thursday 8th july 7pm gmt exchange kucoincom coin pairing usdt 2021-07-04 20:17:37+00:00 1.0 1405131456 135 2 minutes left the next message will be the coin in the form of a text and clickable link everyone 2021-06-27 16:58:02+00:00 1.0 1405131456 134 5 minutes left we are aiming to hit between 100200 profits today adjust your profits accordingly everyone 2021-06-27 16:55:19+00:00 1.0 1405131456 133 10 minutes left we will announce the targeted percentage increase in the next message at 5 minutes reminder that these pumps last a while you will have plenty of time to buy and sell do not panic sell early everyone 2021-06-27 16:51:30+00:00 1.0 1405131456 131 only 15 minutes remain the coin signal will be released in the form of a text and link that you can click an example is beneath everyone btcusdt usdt 2021-06-27 16:45:56+00:00 1.0 1405131456 130 30 minutes left if you havent already please familiarise yourself with the document beneath in order to maximise your profits during the pump we are expecting huge results today everyone 2021-06-27 16:30:20+00:00 1.0 1405131456 129 1 hour remaining we are super excited about this pump and hope you guys are too get your kucoincom accounts ready funding your trading account with usdt and trading password entered then youre ready to pump everyone 2021-06-27 16:00:28+00:00 1.0 1405131456 127 4 hours remaining if you are unfamiliar with kucoin please check the link beneath for an indepth guide on how to pump you still have plenty of time to sign up and familiarise yourself with the exchange everyone 2021-06-27 13:00:38+00:00 1.0 1405131456 126 6 hours remain until our huge kucoin pump this coin signal will be shared across multiple discordtelegram servers combining well over 100000 members in total we expect this to be a great success like our previous pump in this collaboration in the last pump the coin reached its peak price in over 6 minutes time so there will be plenty of time to buy and sell on multiple occasions for profit everyone 2021-06-27 11:01:17+00:00 1.0 1405131456 125 pump time update we want to make the most of the markets current uptrend so we will be pushing our pump forward 2 hours to 5pm gmt this is exactly 11 hours from now the coin pairing will be usdt please fund your trading account on kucoincom if you wish to participate everyone 2021-06-27 06:00:03+00:00 1.0 1405131456 123 24 hours remaining our next kucoin pump signal will be sent in this channel 24 hours from now there are plenty of very good looking coins for us to pump and just like our last pump we expect it to last several minutes again allowing multiple chances to profit reminder to fund your trading account on kucoincom with usdt in order to participate 2021-06-26 19:00:22+00:00 1.0 1405131456 117 everyone pump announcement keep your diaries clear we are heading back to our routes with another huge kucoin pump that we are leading our last pump peaked after 6 minutes time and lasted much longer there was enough time to buy and sell on multiple occasions to make profits we expect even better results this time after growing in numbers across our collab servers time and details are found beneath ⏰ sunday 27th june 7pm gmt exchange kucoincom coin pairing usdt 2021-06-24 18:03:03+00:00 1.0 1405131456 107 everyone 5 minutes left remember that the pairing for this pump is usdt hotbit pumps last a lot compared to others so dont be tricked into fast selling 2021-06-23 18:55:22+00:00 1.0 1405131456 104 everyone 30 minutes left remember the signal will be sent on this channel hotbit tip when you buy select a high sell order so your order executes faster the red orders 2021-06-23 18:30:36+00:00 1.0 1405131456 103 everyone 1 hour left with the marketing recovering and this beeing a massive collab we expect really good numbers you all better dont miss out this one groups of the collab mega pump signals 50k convined pump it up 34k convined apollo pumps 12k discord 2021-06-23 18:02:20+00:00 1.0 1405131456 102 everyone 6 hours 30 minutes left the coin wen are pumping will be posted in this channel remember hotbitio doesnt have market orders be sure you checked our youtube video on how to buy 2021-06-23 12:32:15+00:00 1.0 1405131456 100 everyone 6 hours left check out our video on how to buy and sell on hotbit during a pump 2021-06-23 04:50:52+00:00 1.0 1405131456 99 everyone almost 24 hours left date 23062021 1900 gmt register on hotbit if you are new you wont be able to participate if you dont have a hotbitio account binance kucoin etc wont work for this pump remember whitecheckmark the pump is on hotbit exchange not binancekucoin whitecheckmark the pairing is usdt whitecheckmark the signal will be given in this channel 2021-06-22 18:23:08+00:00 1.0 1405131456 98 everyone new pump date arrowforward wednesday | 23rd june | 1900 gmt arrowbackward be ready for a massive hotbit pump rocket just 1 hour change pump wont be at 2000 2021-06-21 21:05:58+00:00 1.0 1405131456 97 everyone next pump date as our first pump on hotbit went so successfully and so many people made profits we will be doing another hotbit pump with the same collab servers as last time the previous pump lasted a long time and we gained over 750 profits we expect the results to be even greater this time check out for help full details beneath ⏰ date wednesday 23rd june 2000gmt exchange hotbit pair usdt 2021-06-20 18:07:51+00:00 1.0 1405131456 92 2 minutes until the pump everyone expected gain 200400 the next post will be the coin 2021-06-19 20:58:08+00:00 1.0 1405131456 91 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal 2021-06-19 20:50:04+00:00 1.0 1405131456 90 30 minutes remaining until the big pump on kucoincom everyone 2021-06-19 20:30:13+00:00 1.0 1405131456 87 45 minutes remaining until the big pump on kucoincom everyone 2021-06-19 20:15:59+00:00 1.0 1405131456 86 1 hour remaining until the big pump on kucoincom with over 100000 traders joining us today from a network of telegram channels its safe to say this pump will be one of the largest our coin will reach 1 gainer on kucoin and global fomo will push us even higher everyone 2021-06-19 20:01:24+00:00 1.0 1405131456 85 2 hours remaining until the big pump on kucoincom get your usdt ready in your trading account everyone 2021-06-19 20:00:10+00:00 1.0 1405131456 84 2 hours remaining until the big pump on kucoincom get your usdt ready in your trading account everyone 2021-06-19 19:02:17+00:00 1.0 1405131456 83 3 hours left until the pump exchange kucoincom date 19june2021 today time 900 pm gmt 3 hours left pair usdt today is looking beyond perfect for our pump high impressive peaks and holding the coin at a majorly inflated value for much longer than normal we expect our pump to shake the entire market and push our coin to a new ath and hold 23x the price for hours or even days after our first peak as we promote all over the crypto world advertisers are standing by waiting for our announcement outsiders will be eagerly jumping in and all of us will be earning huge profit coin news will be posted here as well so everyone can help shill everyone 2021-06-19 18:12:46+00:00 1.0 1405131456 82 dear members 4 hours left until pump collab with over 75000 members exchange kucoincom date 19june2021 today time 900 pm gmt 4 hours left pair usdt in 4 hours from now the coin to pump will post here as we all start to buy it the coin will begin to pump like crazy to our projected gain range buy the coin low as soon as you can and resell in the projected gain range see our guide if you need any help or ask questions in the chat this will be a historic pump as conditions are fantastic see you all in 4 hours for the pump everyone 2021-06-19 16:57:53+00:00 1.0 1405131456 81 everyone 8 hours remaining this will no doubt be our biggest kucoin pump to date we are partnering with some massive discord servers and telegram to bring you a pump that reaches over 180000 members there are several great coins for us to choose and we can guarantee this pump will achieve over 100 gains 2021-06-19 13:00:05+00:00 1.0 1405131456 80 1 day left until the kucoin pump exchange kucoincom international date 19june2021 saturday time 900 pm gmt pair usdt the coins and conditions on kucoincom are extremely favorable for our pump there are at least a dozen coins which could pump over 500 and we will surely pump one much higher we are at full power with even more people seeing our signal tomorrow than have ever before telegram promotion discord promotion and a full on social media campaign will mean hundreds of thousands of people will witness our pump and be ready to buy in to push it higher and longer than previous pumps this will be a truly massive pump lastly were also partnering with a channel with over 90000 members this will be a pump to remember thing to remember 1 we pump on kucoincom so you must be trading there other places may not have the coin available sign up for an account if you havent already 2 we use the usdt pair to ensure quality you will need usdt in your trading account in order to participate 3 how to pump on kucoin please read this tutorial everyone 2021-06-18 17:32:21+00:00 1.0 1405131456 78 2 days left until the kucoin pump exchange kucoincom international date 19june2021 saturday time 900 pm gmt pair usdt 2 days left until our massive pump on kucoin exchange the crypto rally continues as bitcoin passed 41k this week and investor interest is rising daily this positive attitude about crypto means greater willingness of traders to invest more money into rising coins especially the coin we choose saturday as it will be a shining start for the day with news and hype surrounding it we will launch an ad campaign for our coin right after the pump starts to bring in as many outsiders as we can prepare and spread the word to friends and family everyone 2021-06-17 18:24:46+00:00 1.0 1405131456 77 dear members in 3 days from now this saturday at exactly 900 pm gmt we will push the price of a coin and create a hype that has never been seen before on kucoincom this is a basic stepbystep guide for new members 1 10 minutes before 900 pm gmt open kucoincom and discord 2 at exactly 900 pm gmt we will announce the coin in the this channel 3 right after we announced the coin buy it with usdt tether on the spot market 4 once you have bought the coin share it as quickly as possible on all your social networks everyone 2021-06-16 17:11:44+00:00 1.0 1405131456 76 pump announcement in 4 days from now because we received a lot of positive feedback from members regarding our last kucoin pumps we have decided to schedule the next pump this upcoming weekend details of the next pump exchange kucoincom international date 19june2021 saturday time 900 pm gmt we have 4 days to prepare this pump we are confident to say that this pump will be one of the biggest we have ever done more information will follow in the next few days stay tuned everyone 2021-06-15 21:42:41+00:00 1.0 1405131456 73 everyone what a fantastic pump the peak profit was a total of 76314 from the starting value and it lasted several minutes before being achieved we expect a huge influx of more people in our next hotbit pump after them seeing how successful our pump just was 2021-06-10 20:10:29+00:00 1.0 1405131456 67 everyone 3 minutes left expected gain for todays pump 10002000 2021-06-10 19:57:29+00:00 1.0 1405131456 65 everyone 10 minutes left the coin will be released in a captcha image you will need to have the hotbit exchange open and be ready to type in the coin name alternatively we will be releasing a link that you can click which will direct you straight to the coin 2021-06-10 19:50:08+00:00 1.0 1405131456 63 everyone 30 minutes familiarize yourself with before you enter todays pump there is no market buy option on hotbit 2021-06-10 19:30:09+00:00 1.0 1405131456 60 pump details date thursday 10th june 2000gmt exchange hotbit pair usdt 2021-06-10 14:14:51+00:00 1.0 1405131456 58 everyone 11 hours left until our massive pump on hotbit if you havent signed up yet the process of registration takes less than 2 minutes there is no kyc verification required and you can register from any country register link 2021-06-10 09:03:28+00:00 1.0 1405131456 57 everyone just under 24 hours left we cannot wait for the pump tomorrow this will be the biggest hotbit pump in history 2021-06-09 20:05:21+00:00 1.0 1405131456 56 pump details rocket alarmclock date thursday 10th june 2000gmt moneybag exchange hotbit fourleafclover pair usdt 2021-06-09 17:43:51+00:00 1.0 1405131456 53 everyone next pump announcement for this pump we will be transitioning over to hotbitio as we believe the lack of bots there will give us a longer natural pump where everyone can make profits this will be pumped in conjunction with apollo pumps mega pump signals totalling over 100000 members combined across discordtelegram servers please check the video beneath on how to correctly buysell on there as this is different from kucoin binance date time thursday 10th june 8pm gmt exchange hotbitio coin pairing usdt 2021-06-08 14:27:04+00:00 1.0 1405131456 51 important information everyone ❗ less than 3 minutes left until the massive pump on kucoin ❗ next message will be coin 2021-06-05 17:57:38+00:00 1.0 1405131456 50 important information everyone ❗ less than 5 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:55:20+00:00 1.0 1405131456 49 important information everyone ❗ less than 10 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:50:47+00:00 1.0 1405131456 48 important information everyone ❗ less than 15 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:45:38+00:00 1.0 1405131456 47 important information everyone ❗ less than 20 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:40:04+00:00 1.0 1405131456 46 important information everyone ❗ less than 30 minutes left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:30:24+00:00 1.0 1405131456 45 important information everyone ❗ less than 1 hour left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 17:07:09+00:00 1.0 1405131456 44 important information everyone ❗ less than 2 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 16:01:22+00:00 1.0 1405131456 43 important information everyone ❗ less than 3 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 15:03:05+00:00 1.0 1405131456 42 important information everyone ❗ less than 4 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 14:08:23+00:00 1.0 1405131456 40 important information everyone ❗ less than 5 hours left until the massive pump on kucoin ❗ ✏️ the market has been looking really good lately we believe that this could be a good one get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a pump ✏️ make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet lets go 2021-06-05 13:00:08+00:00 1.0 1405131456 33 next pump saturday june 5th 1900 gmt exchange kucoincom coin pairing will be announced later 2021-05-28 16:00:19+00:00 1.0 1405131456 22 2 minutes until the pump everyone safe buy zone up to 1500 target 10000+ the next post will be the coin 2021-05-23 15:58:01+00:00 1.0 1405131456 21 10 minutes left until the pump everyone make sure you are logged in with your trading pin already entered if you use one the projected gain will be posted 2 min before the coin signal this coin wil explode today 2021-05-23 15:50:01+00:00 1.0 1405131456 20 30 minutes left until the pump everyone we are very excited for today and look toward our most massive pump ever with the highest gains ever done by any group a high percent rise is fantastis but members profits are even better be reasonable with your sells and secure that profit due to the extreme nature of the pump today we will post a safe buy zone and a target buy within this safe buy zone and sell at up to the target for max profits 2021-05-23 15:30:00+00:00 1.0 1405131456 19 1 hour left until the pump everyone exchange kucoincom pairing usdt be sure you are logged in and ready have your trading pin entered and stay calm buying quickly will get you the best price but being preparedconfident will net you the most gains as always a projected gain will be given before the coin so everyone knows the best place to sell we are very excited for today as everything is looking perfect we expect our best pump yet coins are bottomed out and sell walls thin meaning we can pump them from the cheapest prices to their absolute max for extreme gains 2021-05-23 15:00:00+00:00 1.0 1405131456 18 2 hours left until the pump everyone exchange kucoincom pairing usdt make sure you have your usdt available log in early and make sure everything is ready we expect a fantastic pump today with more users and more outsiders than ever before making this the biggest pump we have ever done markets are fantastic for a pump today with altcoins ready to explode follow the howtopump and you are sure to profit we have shattered our expected gain to as high as 47000 and gained volume each pump to over 36 million the projected gain range for today will be posted 2 min before the pump you should sell in that range unless you are a seasoned pro ready to take added risks for extreme profit the eyes of the entire pumping world are on us and soon so will be the eyes of every kucoin user be ready for the most massive pump ever done 2021-05-23 14:01:00+00:00 1.0 1405131456 17 4 hours left until the pump everyone today looks perfect for our pump coins will pump much easier than normal which means higher gains and more attention from traders on kucoin we expect an epic pump to the highest gains we have ever done with more usdt being held in wallets than ever before the amount of outsiders in this pump will be plentiful details we will empty the market making orders for our coin and be able to fully control the price this means most members buying in low and being able to sell very high we have tested this method using multiple orders and it has been 100 successful the signal bot system time is synced now meaning the pump and the signal will happen at the same time this will be an epic pump with huge gains for everyone follow the howtopump guide you must be trading on kucoincom you need usdt in your trading account most of us will remember this day forever as the greatest pump of all time see you in 4 hours 2021-05-23 12:07:44+00:00 1.0 1405131456 15 everyone 3 minutes the expected profit range will be between 125250 for todays pump the next post will be the coin in a clickable link 2021-05-22 16:57:04+00:00 1.0 1405131456 14 everyone 5 minutes left we will be announcing the expected gains in the next two minutes this should be a fantastic pump 2021-05-22 16:55:07+00:00 1.0 1405131456 11 everyone 1 hour remaining until the next pump the market conditions are still fantastic and we are hosting this pump today so we should have an extremely big pump at this point you should have usdt ready in your trading account and we will inform you of our expected percentage target 3 minutes before the pump we will release the coin with a text and clickable link 2021-05-22 16:00:08+00:00 1.0 1405131456 10 pump announcement wednesday may 19th 1900 gmt 3pm est exchange kucoincom after doing what we consider the most successful pump ever done on kucoin to 47000 with 36 million volume we have seen extraordinary growth and interest in our group our next pump will be even bigger than our last with the signal going to the most people it ever has be ready for another huge event this wednesday everyone 2021-05-16 16:49:39+00:00 1.0 1405131456 8 2803 kucoincom pump over 300 gains and lasted 6 minutes straight 2021-04-09 00:00:33+00:00 1.0 1369399075 54067 binance futures qtum unusual selling activity 121m usdt in 5 minutes 10 l 927100000 411 24h vol 128m usdt last signal 4 hours ago 47d binancestreetbets channel vip whaleglobal 2021-08-07 03:05:42+00:00 1.0 1369399075 50034 binance futures bts unusual buying activity 12m usdt in 5 minutes 10 l 004 ❇ 110 24h vol 131m usdt last signal 4 hours ago 67d binancestreetbets channel vip whaleglobal 2021-07-18 08:28:11+00:00 1.0 1369399075 40897 binance futures dash unusual buying activity 431m usdt in 5 minutes 10 l 20536000000 ❇ 215 24h vol 471m usdt last signal 4 weeks ago binancestreetbets channel vip whaleglobal 2021-06-02 14:27:14+00:00 1.0 1369399075 32949 really satisfied revealing a secret to you our core team has just received the signal that the cash flow will move to 1 coin and will bring 100 300 profit buy and hold 2 days to 1 week it will not be long only 1⏰ hours left and we will make the name of the coin public✈️ join fast whaleglobal 2021-05-01 14:10:53+00:00 1.0 1369399075 32923 really satisfied revealing a secret to you our core team has just received the signal that the cash flow will move to 1 coin and will bring 100 300 profit buy and hold 2 days to 1 week it will not be long only 3⏰ hours left and we will make the name of the coin public✈️ join fast whaleglobal 2021-05-01 11:50:14+00:00 1.0 1369399075 32896 really satisfied revealing a secret to you our core team has just received the signal that the cash flow will move to 1 coin and will bring 100 300 profit buy and hold 2 days to 1 week it will not be long only 6⏰ hours left and we will make the name of the coin public✈️ join fast whaleglobal 2021-05-01 09:21:37+00:00 1.0 1369399075 23197 5 days left until our big pump on binance 2021-04-06 17:42:08+00:00 1.0 1369399075 18969 not big pump signal you stupid man 2021-03-31 08:57:51+00:00 1.0 1369399075 18968 5 minutes left not big pump signal 2021-03-31 08:57:18+00:00 1.0 1369399075 11209 channel binance big pump signal 2021-03-21 17:36:45+00:00 1.0 1369399075 9436 channel binance big pump signal 2021-03-21 07:33:46+00:00 1.0 1369399075 283 after we have implemented a perfect pump on og coin and now og is still on the top ranking list binance exchange there has been a lot of positive responses around the globe so we will resume 1 pump on saturday 13 march at 500 pm gmt lets share this group with everyone around the globe we are here for you best regards ✍✍✍ 2021-03-07 17:14:03+00:00 1.0 1485049716 3388 pump announcement we have got so many messages where members are asking for next pump so we have decided to bring a new massive pump signal we will host our next pump in this channel 2021-03-31 11:01:09+00:00 1.0 1485049716 3376 already breakout ath today and big pump is coming like enj coin both exchange 2021-02-11 10:06:34+00:00 1.0 1485049716 3367 ‼️1 minute left be ready with your btc next post will be the coin name 2021-02-07 13:59:01+00:00 1.0 1485049716 3366 ⌛5 minutes left for the big daddy push⏳ btc has pumped and altcoins have went downwhich is exactly what we were waiting for many buy opportunities have presented themselves now and you can expect this push to be phenomenal the fomo is going to be huge we are totally ready are you 2021-02-07 13:55:03+00:00 1.0 1485049716 3365 30 minutes left here is how to buy fast on binance 1 select market order 2 select percent of your total btc you wish to use 75 is best to use to avoid conflicts with orders not filling 3press buy 4enjoy moon 2021-02-07 13:30:04+00:00 1.0 1485049716 3364 1 hours until the big daddy push a guide about how to buy the coin during the push at exactly 1400 pm gmt there will be a message including the name of a coin in our channel we will be coordinately buying the coin in the btc pair so make sure you have free btc in your wallet if you are using market buy and plan to use your whole balance use anything less than 100 of your balance for example 75 to make sure it works when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up dont panic sell ‼️our push will have many waves as our whales will actively be buying with our members to support the price we all may be small investors but together we can make it to the moon lets do this 2021-02-07 13:00:04+00:00 1.0 1485049716 3363 ⚡3 hours until the big daddy push event what you can do to help make the push successful keep the push alive by setting buy walls when the price is going up set some lower buy walls to create waves example starting price 1000 price 3 minutes after the pump 1800 set buy wall at 1500 everyone in the group can help us by sharing the coin on their social media reddit posting it on twitter and using hashtags lastly enjoy the ride to the moon we can say for sure that this push will be insane and our whales will do everything in their power to make sure every single member will profit from it 2021-02-07 11:00:03+00:00 1.0 1485049716 3360 the big daddy push hello everyone the biggest big daddy push will be scheduled for date sunday february 7 time 1400 pm gmt exchange binance advantage free for all we will be giving out more information about our upcoming pump before the pump stay tuned 2021-02-06 16:21:43+00:00 1.0 1485049716 3351 when altszn is at its peak its very advisable to get any coin that is not yet pumped and hold for 2 3 days cmt is yet to pump and it will surely get pumped buy cmt below 36 sats target 40444852606570 2021-01-20 16:49:16+00:00 1.0 1485049716 3294 ardr ardr ardr lets 2x spike with our whales ardr is going to perform crazy today bcoz of the huge global fomo massive volume coming in buy fast this trendy low cap coin 2021-01-01 16:47:08+00:00 1.0 1485049716 3293 45 minutes remaining the team is back we have collaborated with some of the biggest whales in market for the megamoonsignal celebrating the altseason and waiting for the opportunity to kick to moon alt on binance exchange we are expecting more than 100150 gain this time after our previous nas 90 pump as the collaboration is more bigger and better than ever alts are primed for huge spikes and we belive the fomo will be huge more this time therefore we recommend that you should get in as soon as possible and hold for maximum profit and make sure you have your binance account ready and loaded for 50 minutes 2021-01-01 16:07:23+00:00 1.0 1485049716 3290 4 hour left until the globalfomocall todays call will be a low cap call supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 100+ 2021-01-01 12:16:09+00:00 1.0 1485049716 3288 7 hour left until the mega space travel signal todays call will be a low cap call supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 30 120 2021-01-01 10:46:44+00:00 1.0 1485049716 3254 sys sys target 30+ 100 sys is our alt whales favorite coin now they pump it to the moon so buy hold sys is going to perform crazy today as we did earlier buy fast this trendy coin 2020-12-29 14:50:38+00:00 1.0 1485049716 3253 6 minutes left till the binance pump 2020-12-29 14:42:48+00:00 1.0 1485049716 3251 those who wants to make big profits and are excited be ready your computer chair table go to quiet space for a while ✌️ only 55 minutes are left for todays 2x signal the btc pump gave us opportunity to buy prime alt from the dip and sell on the targets for mega profit big valconeeruption signal 2020-12-29 13:59:11+00:00 1.0 1485049716 3250 2 hour left until the volcanic eription coin todays call will be a low cap call supported by big whales this means that the coin will be on top of the binance within a matter of time make sure to buy fast hold for the targets target 30 120 2020-12-29 13:01:06+00:00 1.0 1485049716 3222 tecnical jump coin 10 minutes left 2020-12-21 12:12:36+00:00 1.0 1485049716 3218 boom coin ready 15 minutes rep 115 profit next coin 3 days same 2020-12-19 13:11:54+00:00 1.0 1485049716 3156 we are almost there guys for the mountain alt just about 15 mins remaining stay alert next post will be coin name below 2020-07-24 16:45:29+00:00 1.0 1485049716 3155 the wait is almost over guys we cant even wait to share the mountain alt but we need to wait for only 1 hr or so get ready to see the biggest fomo only 1 hr left today july 24 | 5 pm gmt 2020-07-24 16:00:53+00:00 1.0 1485049716 3154 its coming the fomo is heavy on market and mountain alt is gonna catch that fomo easily will take no time to reache binance top gainer list about 3 hrs left for the storm to come today july 24 | 5 pm gmt 2020-07-24 14:00:30+00:00 1.0 1485049716 3153 alts have been performing unbelievably strong and we all were waiting for this time right well there is also a big signal coming which u might not forget mountain alt signal next potentially 2 3x alt about 5 hrs 30min left today july 24 | 5 pm gmt 2020-07-24 11:30:11+00:00 1.0 1485049716 3111 just below 15 minutes guys here on the next post will be the coin name below mountain alt | 5 pm gmt 2020-07-10 16:45:27+00:00 1.0 1485049716 3110 time is passing faster cant wait to share the big signal today mountain alt is on its way guys exactly 1 hr left mountain alt | 5 pm gmt 2020-07-10 16:00:50+00:00 1.0 1485049716 3108 every alt is going 3x 5x some even gone up 10x in this alt season the mountain alt which we are gonna share today will be one of those 2x 3x coin stay alert its coming 6 hrs left mountain alt | 5 pm gmt 2020-07-10 11:01:30+00:00 1.0 1485049716 3056 stay online | and keep an eye over here only 15 minutes left the next post will be galaxy beast alt name today 4 pm gmt 2020-07-04 15:45:25+00:00 1.0 1485049716 3055 we are almost done and the wait is almost over less than 1 hr left galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 15:00:31+00:00 1.0 1485049716 3054 stay here guys the clock is running faster time for galaxy beast alt just about 2 hrs remaining galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 14:00:33+00:00 1.0 1485049716 3052 stay online today bcoz you dont wanna miss todays galaxy beast alt and you dont wanna miss massive profits right the wait is about to get over bcoz about 4 hrs left galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 12:02:37+00:00 1.0 1485049716 3050 the galaxy beast alt on its way this one going to be crazy one with major fomo with top gainer position on binance you know when a coin goes to top on binance gainer list the fomo arrives just about 6 hrs left galaxy beast alt today 4th jul | 4 pm gmt 2020-07-04 10:03:15+00:00 1.0 1485049716 3048 hey guys we are excited to announce that we are bringing yet another galaxy beast alt this galaxy beast signal will be posted here today at 4 pm gmt our previous calls did very well so expect something big from the upcoming one this one will be best of amongst galaxy beast alt 4 july | 4 pm gmt 2020-07-04 07:40:40+00:00 1.0 1485049716 3019 qsp strong gem hodl for tfuel like pump next 5x coin is qsp 2020-06-29 16:05:44+00:00 1.0 1485049716 3013 q s p quantstamp | binance the galaxy beast alt very possible breakout big volume coming in from last few days the trend which always follow is lower satoshi coins pump hard on alt season so qsp will have a major breakout anytime 2200 down from all time high we can expect a major bull run from qsp buy qsp here 2020-06-29 16:00:30+00:00 1.0 1485049716 3010 do you see any binance top gainer today if so then we are telling you that our signal will be in top gainer list today that is none other than the galaxy beast alt just about 1 hr reamaining today | 4 pm gmt 2020-06-29 15:00:46+00:00 1.0 1485049716 3009 the alt we are gonna talk about today has completely bottomed looks very good as per technical analysis that is called the galaxy beast alt just about to arrive stay alert today 25 hrs remaining today | 4 pm gmt 2020-06-29 13:30:10+00:00 1.0 1485049716 3004 btc recoverd also alts recovering well its the time to buy these alts so we are going to share the galaxy beast alt 6 hrs remaining today | 4 pm gmt 2020-06-29 10:01:01+00:00 1.0 1485049716 2997 hey traders hope you have not forgotten what day is it so today is galaxy beast alt day our last signals did perform massive and this one is going to beat the old ones 11 hrs remaining today | 4 pm gmt 2020-06-29 05:00:15+00:00 1.0 1485049716 2977 hey guys we are excited to announce that we are bringing a different type of signal called as galaxy beast alt this galaxy beast signal will be posted here on this coming monday jun 29th our previous calls did very good via188 ctxc220 expected target 100200 this one will be best of these above wait for monday exchange binance galaxy beast alt 29 jun | 4 pm gmt 2020-06-27 09:58:18+00:00 1.0 1485049716 2888 time is running faster cant go slow anyways we gotta hurry bcoz everyone is waiting for mountain alt via hit 188 ctxc hit 220 todays mountain alt250 exchange binance only 1 hr remaining mountain alt | 4 pm gmt 2020-06-15 15:00:15+00:00 1.0 1485049716 2886 there will be a binance top gainer coming on the way even we cant wait to see that but we gotta wait via hit 188 ctxc hit 220 todays mountain alt250 only 3 hrs remaining mountain alt | 4 pm gmt 2020-06-15 13:00:18+00:00 1.0 1485049716 2877 hellofolks since the alts market is rising and burning heavily coins going 2x 3x in no time so here we present u the very next mountain alt signal this one will be little different will go for given targets slowly but it will go for it not only 100 it will go for + 200 we will be looking for an alt thats still in bottom and fa wise looks cool and we are gonna see massive fomo into it stay tuned for this one the mountain alt 15th jun | 4 pm gmt 2020-06-13 12:21:52+00:00 1.0 1485049716 2860 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 250 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-06-10 15:59:50+00:00 1.0 1485049716 2859 just about 10 mins guys the mountain alt signal is on the way market is doing great today the fomo will be attractive the next post will be name of the mountain alt coin stay online folks 2020-06-10 15:50:23+00:00 1.0 1485049716 2858 the mountain alt or shall we call it the next binance top gainer is just about to arrive last mountainalt not enough right todays one can get to 250easily exchange binance about 1 hr remaining today | 4 pm gmt 2020-06-10 15:45:46+00:00 1.0 1485049716 2857 the mountain alt or shall we call it the next binance top gainer is just about to arrive last mountainalt not enough right todays one can get to 250easily exchange binance about 1 hr remaining today | 4 pm gmt 2020-06-10 15:00:33+00:00 1.0 1485049716 2856 alts are making savage moves in this alt season so our mountain alt will do the same todays mountain alt is going to see 250 growth with massive fomo exchange binance 3 hrs remaining today | 4 pm gmt 2020-06-10 13:00:35+00:00 1.0 1485049716 2855 the clock is running faster guys hope you ready for this the mountain alt is cominggg the last mountain alt had major fomo and reached binance top gainer what to expect todayyes 250 strong gainer exchange binance about 6 hrs left today | 4 pm gmt 2020-06-10 10:00:54+00:00 1.0 1485049716 2848 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this todays mountain alt is gonna see 250 growth less than 12 hrs to see the mountain alt today | 4 pm gmt 2020-06-10 04:19:07+00:00 1.0 1485049716 2809 hey folks guess whats coming today yes guess it the mountain alt our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 ctxc 》220 《 xxx 》will it go for 200++ but its coming with a different strategy to kill bot traders today mountain will be shared within 4 5 pm gmt between this 1 hr anytime wake up mountain alt | 4 5 pm gmt 2020-06-08 04:03:08+00:00 1.0 1485049716 2807 good day traders you know what time it is time for yet another mountain alt signal but this time with bit different strategy what is it this time the mountain alt wont come at a fixed time it will come within 4 5 pm gmt you need to stay online and alert in this 1 hr time trading bots wont be able to catch this time our signal its coming mon jun 8th | 4 5 pm gmt mountain alt 2020-06-07 19:55:46+00:00 1.0 1485049716 2768 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:44+00:00 1.0 1485049716 2767 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:01:03+00:00 1.0 1485049716 2765 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just 6 hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:36+00:00 1.0 1485049716 2756 have you set the timer yet bcoz its the day for mountain alt signal ong went for 108 via went for 188 can todays mountain alt hit 250 12 hrs remaining today | 4 pm gmt 2020-06-03 04:00:37+00:00 1.0 1485049716 2748 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:45:27+00:00 1.0 1485049716 2710 via | binance 2000 down from all time high what yeahwe can easily see it todays top gainer of binance 150 can we this coin has strong potential to move like this hodl this one via is going to go crazy today buy here 2020-05-29 16:00:19+00:00 1.0 1485049716 2708 alts market is hot crispy today so the mountain alt will be much more hotter crispier the fomo of 《ong》 going to kick in and not 106can we expect 150 or above just below 15 mins today | 4 pm gmt 2020-05-29 15:45:39+00:00 1.0 1485049716 2707 the mountain alt or shall we call it the next binance top gainer is just about to arrive 《ong》 106 not enough todays one can get to 150 about 1 hr remaining today | 4 pm gmt 2020-05-29 15:00:33+00:00 1.0 1485049716 2706 the clock is running faster hope you ready for this the mountain alt is cominggg about 3 hrs left today | 4 pm gmt 2020-05-29 13:02:34+00:00 1.0 1485049716 2704 hey do you remember what day is it its the mountain alt signal day hope you guy are ready for this less than 12 hours left to see the mountain alt today | 4 pm gmt 2020-05-29 04:00:47+00:00 1.0 1485049716 2671 are you online today you better be bcoz only 3 hrs remaining for the mountain alt signal 400 pm gmt 2020-05-26 13:02:24+00:00 1.0 1485049716 2663 hey guys today is the day for mountain alt signal keep yourself prepared for this major alt signal it will go beyond 70 to 80 in no time exchange binance only 12 hrs left today 4 pm gmt 2020-05-26 04:06:13+00:00 1.0 1485049716 2115 coin name bntbtc expected gain 5080 buy and hold for huge profit 2020-04-24 15:59:13+00:00 1.0 1485049716 2114 ‼️final 5 minutes left log in your binance account and be ready with spare btc next post will be coin name with link staytuned 2020-04-24 15:55:08+00:00 1.0 1485049716 2111 there are times when opportunity knocks the door and masterminds never let it go as king btc has put on the dancing shoes and the noobs round the world is selling alts at low this is the time to surprise the world with historic signal ‼only 12 hours to go for the biggest historic signal‼ ❗️exchange binance ❗️date 24 april ❗time 0400 pm gmt pump will be free for all staytuned 2020-04-24 04:01:20+00:00 1.0 1485049716 2103 ‼️we are going to organise historic signal event tomorrow at 4 pm gmt‼️ ❗️❗️exchange binance ❗️❗️date 24 april ❗❗time 0400 pm gmt pump will be free for all more than 300k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 5080 so be ready with spare btc ❗️❗️only 24 hours left for historic signal event ❗️❗️ pinourchannelontop beready4blast ✈✈✈✈ staytuned 2020-04-23 15:59:42+00:00 1.0 1485049716 1754 attention as always we are going to see this on binance top gainer list with great volume only 1hours left 400pm1600 gmt for rock bottom whale signal target 70 100 2020-04-04 15:04:58+00:00 1.0 1485049716 1719 rlcbtc new update strong support level 44004600 satoshi so buy and hold till 80 target dont sell guys if you want to huge profit so buy and hold strategy is very good for now remember target 80 so buy and hold 2020-03-27 16:02:24+00:00 1.0 1485049716 1716 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 16:00:19+00:00 1.0 1485049716 1715 strong ta and fa based call coin name rlcbtc buy and hold for huge profit target 80 2020-03-27 15:57:42+00:00 1.0 1485049716 1476 diamond members get the pump coin name early to get the coin name early contact erikjones1 2020-02-11 05:37:04+00:00 1.0 1485049716 1463 pumpsignal event binancecom ⏰ 1 hour left ‼️ get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ also make sure to share the coin news to everyone on telegram after the pump you can get the news from cryptonews dont forget to read the rules 2020-02-10 19:00:18+00:00 1.0 1485049716 1462 pumpsignal event 10 february 2000 pm gmt+0 ⏰ about 2 hours left ‼️ get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 17:56:09+00:00 1.0 1485049716 1461 pumpsignal event 10 february 2000 pm gmt+0 ⏰ about 3 hours left ‼️ pump rules 1 buy as fast as possible 2 hold 2472 hours for targets 3 targets are 100200 from current price before pump 4 press buy market for best results 5 do not add sell walls 6 add buy orders below price to push the price up with market and other bots 7 do not dump on targets just sell slowly on outsiders get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 16:58:26+00:00 1.0 1485049716 1460 pumpsignal event 10 february 2000 pm gmt+0 ⏰ about 4 hours left ‼️ market is hot and we are going to the moon the pump will last between 2472 hours and we recommend to hold for 100200 profit because as mentioned market is on fire exchange binancecom get ready with free btc we recommend to buy fast and hold for maximum gains get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 15:57:13+00:00 1.0 1485049716 1459 ⏰ guys set your alarms less than 6 hours left ‼️ market is hot and we are going to the moon the pump will last between 2472 hours and we recommend to hold for 100200 profit because as mentioned market is on fire get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 15:03:01+00:00 1.0 1485049716 1458 guys set your alarms 6 hours left ‼️ market is hot and we are going to the moon the pump will last between 2472 hours and we recommend to hold for 100200 profit because again market is on fire nowadays get ranked via our bot pumprankedbot to get the coin name few seconds earlier ‼️ 2020-02-10 14:00:12+00:00 1.0 1485049716 1457 pump date set 10 feb 2020 2000 gmt +0 pumprankedbot 2020-02-10 08:33:00+00:00 1.0 1485049716 1435 what an amazing pump 5 minutes it went up non stop now consolidates at new level of 1500+ might see another leg up as our whales from cryptocoinswaves are helping while btc is dumping rebuy zone to those who asked 14001500 zone targets 1700 1880 2000 2200 make sure to be first and get yourself a quick 30 profit next time by joining your friends 2020-02-01 13:50:13+00:00 1.0 1485049716 1433 what a great pump by our bot cryptocoinswaves whales are helping now to pump it higher in the next 24 hours from 1350 to 1700 first binance gainer can we see 50 coming to get the coin name earlier next time make sure to start pumprankedbot and invite friends 2020-02-01 13:22:16+00:00 1.0 1485049716 1431 4 minutes left for our mega pump event ‼️ next post is coin name in a picture to avoid bots also it will show current price before pump was started 2020-02-01 12:56:21+00:00 1.0 1485049716 1429 pump bot less than 30 minutes left for our mega pump event ‼️ to get ranked and enjoy coin name few seconds earlier start our bot pumprankedbot dont miss 50100 profit chance guys ‼️ 2020-02-01 12:30:36+00:00 1.0 1485049716 1427 flash pump alert 1 hour left ‼️ its not too late to get ranked via our bot pumprankedbot make sure to buy fast as possible we expect big pump event 2020-02-01 12:02:07+00:00 1.0 1485049716 1426 flash pump alert less than 2 hours left ‼️ pump event will take place via pumprankedbot binance pump bot 1st february 1300 pm gmt + 0 on binance exchange make sure to be ready with free btc we expect to see 50100 pump 2020-02-01 11:05:57+00:00 1.0 1485049716 1417 ⏱ less than 4 hours left for pumpcoin⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30012020 ⏱time 530pm gmt11pm ist pinourchannelontop regards 2020-01-30 13:45:16+00:00 1.0 1485049716 1415 ‼️we are going to organise a pump today at 530 pm gmt 11 pm ist‼️ ❗️which will be expected minimum 70100 ❗️ ❗date 30th january exchange binance ‼️log in your binance account before 10 minutes and be ready with your spare btc‼️ pinourchannelontopsoyoucangetearlypumpcoin thanks 2020-01-30 06:48:24+00:00 1.0 1485049716 1362 via this coin is heavily accumulated since many days and right now resting at rock bottom can start its moon ride anytime soon ❗️ buy via place buy bids 22002210 sell 245026002750 targett short exchange binance ❗️❗️ 2020-01-27 08:42:02+00:00 1.0 1485049716 1204 whales get ready 15 minutes left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 16:14:34+00:00 1.0 1485049716 1202 whales get ready 30 minutes left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 15:59:41+00:00 1.0 1485049716 1200 whales get ready 1 hour left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 15:30:34+00:00 1.0 1485049716 1198 whales get ready 3 hours left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 13:29:29+00:00 1.0 1485049716 1196 whales get ready 6 hours left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 10:29:26+00:00 1.0 1485049716 1193 whales get ready 12 hours 30 minutes left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-23 04:00:12+00:00 1.0 1485049716 1191 whales get ready 24 hours 30 minutes left for whalecall which will be expected 70100 sell your alts be ready with spare btc ⏰time 430 pm gmt 23 december pinourchannelontop regards 2019-12-22 16:00:12+00:00 1.0 1485049716 1114 ‼️attention‼️ log in your binance account be ready with spare btc next post will be coin name pinourchannelontopandbereadyforblast 2019-11-30 16:54:42+00:00 1.0 1485049716 1109 ⏱ 2 hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 15:00:21+00:00 1.0 1485049716 1105 ⏱ 6 hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 11:00:21+00:00 1.0 1485049716 1102 ⏱ less than 12hours left for coinofthemonth⏱ which will be expected 70100 sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-30 05:09:47+00:00 1.0 1485049716 1100 ⏱ 24 hours left for coinofthemonth⏱ more than 500k people are going to join and this can be the biggest moment in near future which will be expected 70100 we will post more information on how to get profit out of this event soon sell your alts be ready with spare btc exchange binance date 30112019 ⏱time 5pm gmt1030pm ist pinourchannelontop regards 2019-11-29 17:00:24+00:00 1.0 1485049716 1090 mega event is here on binance our team is here with the most awaited coinofthemonth exchange binance date 30112019 ⏱time 5pm gmt pump will be free for all more than 500k people are going to join this coinof themonth and this can be the biggest moment in near future we will post more information on how to get profit out of this event soon alts are pumping heavily nowadays lets take advantage of that and get some crazy profits with pump pinourchannelontop beready4blast staytuned 2019-11-28 16:47:02+00:00 1.0 1485049716 962 ‼️attention‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ next post will be coin name pinourchannelontopandbereadyforblast 2019-11-11 16:55:21+00:00 1.0 1485049716 961 ‼️only 15 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourchannelontopandbereadyforblast 2019-11-11 16:45:21+00:00 1.0 1485049716 959 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this megapump doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-11 15:00:21+00:00 1.0 1485049716 958 ‼️ 5 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc lets grab this opportunity to buy some cheap alts and ride the altszn ⏰time 5 pm gmt 11 november pinourchannelontop regards 2019-11-11 12:03:32+00:00 1.0 1485049716 955 ‼️ 12 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc lets grab this opportunity to buy some cheap alts and ride the altszn ⏰time 5 pm gmt 11 november pinourchannelontop regards 2019-11-11 05:00:20+00:00 1.0 1485049716 954 ‼️ 24 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 5 pm gmt 11 november pinourchannelontop regards 2019-11-10 17:30:20+00:00 1.0 1485049716 953 ‼️we are going to organise a pump on monday at 5 pm gmt 1030 pm ist‼️ ❗️which will be expected minimum 70100 ❗️ ❗date 11th november exchange binance ‼️log in your binance account before 10 minutes and be ready with your spare btc‼️ pinourchannelontopsoyoucangetearlypumpcoin thanks 2019-11-10 08:13:32+00:00 1.0 1485049716 949 ‼️ 5 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt 9 november pinourchannelontop regards 2019-11-09 12:30:21+00:00 1.0 1485049716 946 ‼️ 12 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt 9 november pinourchannelontop regards 2019-11-09 05:30:21+00:00 1.0 1485049716 945 ‼️ 24 hours left for megasignal ‼️ ❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt 9 november pinourchannelontop regards 2019-11-08 17:30:43+00:00 1.0 1485049716 938 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ we are back again with the most awaited mega signal ‼️exchange binance date 09112019 time 530pm gmt pump will be free for all ❗️more than 500k people are going to join this history event and this can be the biggest moment in near future ‼️by the time keep your btc ready for blast and sell your alts as soon as possible ‼️we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc buy hold till our targets achieve pinourchannelontop beready4blast ✈✈ staytuned 2019-11-08 08:19:55+00:00 1.0 1485049716 856 join our vip channel at 50 discount only for today benefits ❗️get daily 34 signals with 100 accuracy ❗️get pump coin 1 minutes early ❗️daily 4050 profit for vip members ❗️247 support which you can get advice for your holdings contact erikjones1 for vip channel thanks regards teamcryptogodfather 2019-11-02 19:04:53+00:00 1.0 1485049716 848 ‼️attention‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ next post will be coin name pinourchannelontopandbereadyforblast 2019-11-02 17:26:26+00:00 1.0 1485049716 847 ‼️only 15 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourchannelontopandbereadyforblast 2019-11-02 17:14:38+00:00 1.0 1485049716 846 ‼️only 30 minutes left for pump‼️ ❗️❗️log in your binance account be ready with spare btc ❗️❗️ pinourvipchannelontopandbereadyforblast 2019-11-02 17:04:52+00:00 1.0 1485049716 844 2 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this megapump doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-02 15:29:25+00:00 1.0 1485049716 841 attention everyone ‼️only 5 hours left for megasignal ‼️ ❗️❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt pinourchannelontop regards 2019-11-02 12:30:50+00:00 1.0 1485049716 836 ‼️only 10 hours left for megasignal ‼️ ❗️❗️which will be expected 70100 sell your alts be ready with spare btc ⏰time 530 pm gmt pinourchannelontop regards 2019-11-02 07:33:33+00:00 1.0 1485049716 822 join our vip channel at 50 discount only for today benefits ❗️get daily 34 signals with 100 accuracy ❗️get pump coin 1 minutes early ❗️daily 4050 profit for vip members ❗️247 support which you can get advice for your holdings contact erikjones1 for vip channel thanks regards teamcryptogodfather 2019-11-01 14:09:12+00:00 1.0 1485049716 814 ❗️❗️❗️❗️❗️❗️❗️❗️❗️ some information about the most awaited mega signal ‼️exchange binance ❗️❗️date 02112019 ❗️❗️time 530pm gmt pump will be free for all ❗️❗️more than 500k people are going to join this history event and this can be the biggest moment in near future ‼️by the time keep your btc ready for blast and sell your alts as soon as possible ‼️we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc buy hold till our targets achieve pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-11-01 09:03:23+00:00 1.0 1485049716 728 breakout coin name nebl dont miss the global fomo 2019-10-27 15:57:01+00:00 1.0 1485049716 727 only 5 minutes to go global fomo warming up next post will be the breakout coin name be very ready guys login binance and keep an eye here 2019-10-27 15:55:04+00:00 1.0 1485049716 726 those who wants to make some profits are excited be ready your computer chair table go to quiet space ✌️ only 30 minutes are left for todays 2x breakout coin 2019-10-27 15:30:03+00:00 1.0 1485049716 722 breakout event guys our team has decided to organise a win win opportunity to you all where you can recover your losses due to btc pump and make some decent profit with us date oct 27 time 16 pm gmt exchange binance tommorow we will share a breakout coin with 2x target so be ready with your btc on binance and dont miss the breakout event more than 500k people are going to join this breakout event by the time keep your btc ready for blast✅ 2019-10-26 16:33:52+00:00 1.0 1485049716 694 less than 12 hours left transfer funds to binance team at 4pm gmt time were going to share a strong breakout coin with all of you please read the pinned post for all details 2019-10-23 04:00:03+00:00 1.0 1485049716 692 breakout event date oct 23 time 16 gmt exchange binance tommorow we will share a breakout coin with 2x target so be ready with your btc on binance and dont miss the breakout event more than 500k people are going to join this breakout event by the time keep your btc ready for blast✅ 2019-10-22 19:27:15+00:00 1.0 1485049716 612 pump results coin edo low 3800 high 4800 welldone guys more than 26 the power of amazing viewers and buyers cannot go unnoticed keep earning as much as you can✨✨ get ready for the next boom boom✅✅ 2019-10-18 16:56:38+00:00 1.0 1485049716 609 ‼️final 2 minutes left ‼️ ❗️❗️next post will be coin name with link❗️❗️ staytuned regards 2019-10-18 16:27:19+00:00 1.0 1485049716 603 ‼️we are going to organise historic signal event today at 430 pm gmt‼️ ❗️❗️exchange binance ❗❗time 0430 pm gmt 1000 pm ist pump will be free for all more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected 100200 so be ready with spare btc ❗️❗️only 12 hours left for historic signal event ❗️❗️ pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-10-18 04:35:09+00:00 1.0 1485049716 598 ‼we are back again with historic signal event‼️ ❗️❗️exchange binance date 18102019 time 430pm gmt pump will be free for all more than 500k people are going to join this history event and this can be the biggest moment in near future by the time keep your btc ready for blast and sell your alts as soon as possible we will post more information on how to get profit out of this event soon pump will be expected minimum 70100 so be ready with spare btc pinourchannelontop beready4blast ✈✈✈✈ staytuned 2019-10-16 18:15:47+00:00 1.0 1485049716 456 coin name ongbtc exchange binance 2019-09-19 17:00:26+00:00 1.0 1485049716 455 5 minuts to go guys be ready login your binance next post would be coin name 2019-09-19 16:55:51+00:00 1.0 1485049716 451 ready to join the global hodl team well you must be were sure that the global fomo will enter in our most waited binanceblastingsignal cheers only 4 hours 15 minutes left 2019-09-19 12:43:29+00:00 1.0 1485049716 448 alright guys so whos excited just few more hours left for the next binance blasting signal be ready for the next 100 to 150 signal the wait will be over at gmt 500pm gmt 1030pm ist cheers 2019-09-19 08:57:00+00:00 1.0 1333146208 144 pump signal announcement today 14001600 pm gmt binance pairing btc it wont be a normal pump it will be a signal which will reach the high price after 1560 minutes please read details and rules to profit with no risk details about signal our last nonannounced pumpsignal reached 5670 profit many people didnt trust us but we did a huge profit if everyone will join today and dont sell until 5070 of gain we all will profit and only outsiders will lose if you can invest more than 5 btc contact the administrator to get the coin name faster without buying a vip if you want to join the signal faster as a whale 5 btc+ contact one of admins cryptofoxadmin or markzuckerberg rules of signal dont sell instantly after you get the signal it wont be a standard pumpsignal it will be more like a fomo coin event price will go up every few minutes if everyone will do what we tell you to do in upcoming posts dont sell until you get the signal so we all can profit more if you sell the coin before a post you will destroy a coin gain faster if you all will put limit buy orders 2050 sat before the price we all will be safe and profit to the moon why 14001600 pm gmt because it wont be a standard pump signal we will give a coin name in a random time between 1400 pm and 1600 pm of gmt time 2020-04-23 09:37:02+00:00 1.0 1333146208 119 5 minutes until the pump ❗️next post will be a coin name❗️ 2020-04-10 17:55:04+00:00 1.0 1333146208 117 10 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:50:04+00:00 1.0 1333146208 116 15 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:45:05+00:00 1.0 1333146208 115 30 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:30:04+00:00 1.0 1333146208 114 45 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:15:04+00:00 1.0 1333146208 113 60 minutes until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 17:00:04+00:00 1.0 1333146208 112 2 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 16:00:04+00:00 1.0 1333146208 111 3 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 15:00:06+00:00 1.0 1333146208 110 4 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 14:00:04+00:00 1.0 1333146208 109 5 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 13:00:04+00:00 1.0 1333146208 108 6 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 12:00:04+00:00 1.0 1333146208 107 7 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 11:00:04+00:00 1.0 1333146208 106 8 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 10:00:04+00:00 1.0 1333146208 105 12 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 06:00:04+00:00 1.0 1333146208 104 18 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-10 00:00:04+00:00 1.0 1333146208 95 24 hours until the pump date 10042020 today ⏱ time 1800 gmt exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-09 18:00:05+00:00 1.0 1333146208 93 2 days until the pump date 10042020 friday ⏱ time 1800 gmt in 47 hours exchange binancecom pairing btc this pump will be ffa free for all this means that everyone will get the coin at the same time it means no prepumps no pay2win 2020-04-08 18:50:41+00:00 1.0 1333146208 89 ffa pump announcement next pump friday 10 april 1800 gmt exchange pairing btc this pump will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time it means that there will be no prepumps pump guide about faq buy fast prepare for a pump 2020-04-07 22:45:46+00:00 1.0 1333146208 85 ✅ 2517 profit ⏰ next pump 10042020 1800 gmt 2020-04-07 18:11:11+00:00 1.0 1333146208 81 everyone only 5 minutes to go expected gain 4065 next post will be the coin login binance and keep an eye here 2020-04-07 17:55:05+00:00 1.0 1333146208 79 30 minutes left login binance now have everything ready the trick to making amazing profits is to be focused and ready to buy 2020-04-07 17:30:05+00:00 1.0 1333146208 78 everyone 1 hour left until the pump this binance pump will receive a lot of extra attention today 1 the coin will easily be the top gainer on binance today 2 we are posting the pump in some partner groups to bring in even more pumpers which means greater volume 3 the coin news will be promoted by many more people than usual and should bring a ton of outside investment these are all great for a pump invest what you are comfortable with and remember to buy fast promote sell in the expected gain range for max profit 2020-04-07 17:00:03+00:00 1.0 1333146208 77 everyone 2 hours left until the pump bitcoin and altcoin markets are looking great now is the perfect time for a pump many altcoins are ready to breakout and ours will be among the strongest we expect a lot of outside investment to follow us into this pump and the price to hold for quite a while be ready for huge profits 2020-04-07 16:01:12+00:00 1.0 1333146208 76 4 hours until the pump everyone todays pump will be freeforall this means that the coin signal will be at the exact same time for everyone during the pump news about the coin will be posted you are encouraged to share this news around the crypto world in order to bring even more investment into the pump this will help the coin to keep rising and rising 2020-04-07 13:59:33+00:00 1.0 1333146208 74 huge pump announcement next pump 15 hours from now on april 7th 1800 gmt we have added a giant telegram partner and together our volume will easily be over 100 btc and the coin will reach a min of 30 to as high as 70 this pump will go higher and hold longer than ever before it will be very easy to profit from and is for all of you we want our members to make max profits and spread the good word about our group we promise this is a pump you will not want to miss this is a free for all event no vip fair to everyone 2020-04-07 03:09:06+00:00 1.0 1333146208 73 ✅ our pump was successful ✅ coin bnt profit 8 this pump was a great opportunity for vips to earn huge profit because of that we want to announce next pump which will be ffa free for all it means that everyone partnersvips and members will get the coin at the same time few people told us that we made a prepump again but its just because vips entered really fast our competition which had this coin earlier dumped us for everything to ruin our pump thats the first reason why it dumped so fast the second reason is that bnt had a lot of hidden orders for sale if no one would sell this coin it would go to the moon 2020-04-06 18:27:04+00:00 1.0 1333146208 71 ⏰ 5 minutes until the pump ⏰ next post will be a coin name photo and text 2020-04-06 17:55:02+00:00 1.0 1333146208 69 ⏰ 10 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:50:02+00:00 1.0 1333146208 68 ⏰ 15 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:45:02+00:00 1.0 1333146208 67 ⏰ 30 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:30:04+00:00 1.0 1333146208 66 ⏰ 45 minutes until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster 2020-04-06 17:15:02+00:00 1.0 1333146208 65 ⏰ 1 hour until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 17:00:02+00:00 1.0 1333146208 64 ⏰ 2 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 16:00:03+00:00 1.0 1333146208 62 ⏰ 3 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 15:00:02+00:00 1.0 1333146208 61 ⏰ 4 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 14:00:02+00:00 1.0 1333146208 60 ⏰ 5 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 13:00:02+00:00 1.0 1333146208 59 ⏰ 6 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 12:00:02+00:00 1.0 1333146208 58 ⏰ 8 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 10:00:01+00:00 1.0 1333146208 57 ⏰ 12 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 06:00:02+00:00 1.0 1333146208 56 ⏰ 18 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-06 00:00:01+00:00 1.0 1333146208 54 ⏰ 24 hours until the pump ⏰ date 06042020 today ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-05 18:00:01+00:00 1.0 1333146208 53 ⏰ 48 hours until the pump ⏰ date 06042020 monday ⏱ time 1800 gmt exchange binancecom pairing btc vips will get a coin 34 seconds faster we wont do prepumps this time it was a bad idea this time we want our members to profit this pump will be amazing you guys need to trust us this time want to join vip more information in the channel description 2020-04-04 18:47:48+00:00 1.0 1333146208 52 pump announcement next pump monday 06 april 1800 gmt exchange pairing btc pump guide about faq buy fast prepare for a pump 2020-04-04 04:00:00+00:00 1.0 1333146208 51 we made 2564 profit in total our target was 4060+ but we didnt hit that because of a huge mistake on ark pump weve posted a bad coin on the photo we are very sorry about that our second mistake was bad coin to pump weve picked zen for the second pump which was hard to pump next time we will pick coin which will hit over 40 2020-04-03 19:54:55+00:00 1.0 1333146208 48 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 18:55:00+00:00 1.0 1333146208 46 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 18:50:00+00:00 1.0 1333146208 44 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1900 gmt exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 18:45:00+00:00 1.0 1333146208 43 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 18:30:00+00:00 1.0 1333146208 42 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 18:17:15+00:00 1.0 1333146208 41 we made 1714 but we could do like 4060 on this pump repump today 1900 gmt in 45 minutes 2020-04-03 18:16:06+00:00 1.0 1333146208 39 we gave a bad coin name on a photo biggest fail ever anyways we hit about 20 on this pump we were ready to profit 4060+ or even 100 but we did a huge mistake we are sorry for this 2020-04-03 18:07:05+00:00 1.0 1333146208 36 ⏰ 5 minutes until the pump ⏰ next post will be a coin name 2020-04-03 17:55:00+00:00 1.0 1333146208 34 ⏰ 10 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ dont sell coin instantly after a pump pump will reach up to 60100 if no one will sell 2020-04-03 17:50:00+00:00 1.0 1333146208 33 ⏰ 15 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ get ready for a pump 2020-04-03 17:45:00+00:00 1.0 1333146208 31 ⏰ 30 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc ℹ️ more buy orders more profit 2020-04-03 17:30:01+00:00 1.0 1333146208 30 ⏰ 45 minutes until the pump ⏰ date 03042020 today ⏱ time 1800 utc exchange binancecom binanceus pairing btc estimated profit 3060+ ℹ️ deposit bitcoins to your binance wallet 2020-04-03 17:15:00+00:00 1.0 1333146208 29 ⏰ 1 hour until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 17:00:00+00:00 1.0 1333146208 28 ⏰ 2 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 16:00:00+00:00 1.0 1333146208 27 ⏰ 3 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 15:00:00+00:00 1.0 1333146208 26 ⏰ 4 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 14:00:00+00:00 1.0 1333146208 25 ⏰ 5 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 13:00:00+00:00 1.0 1333146208 24 ⏰ 6 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 12:00:00+00:00 1.0 1333146208 23 ⏰ 8 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 10:00:00+00:00 1.0 1333146208 22 ⏰ 12 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 06:00:00+00:00 1.0 1333146208 21 ⏰ 18 hours until the pump ⏰ today at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated profit 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-03 00:01:06+00:00 1.0 1333146208 20 ⏰ 24 hours until the pump ⏰ tommorow at 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-02 18:00:00+00:00 1.0 1333146208 18 ⏰ 48 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 3060+ update dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-04-01 17:41:18+00:00 1.0 1333146208 16 ⏰ 72 hours until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-31 18:01:08+00:00 1.0 1333146208 14 ⏰ 4 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-30 16:49:40+00:00 1.0 1333146208 8 ⏰ 5 days until the pump ⏰ at friday 03042020 1800 utc a huge pump will happen you will be able to make profit from this by buying the selected coin as fast as possible and then sell it at the peak more investment means more profits exchange binance pairing btc estimated earnings 2030+ dont sell your coin after pumping just to earn 58 if you will wait will sell order coin will reach 30+ of profit trust us pe pumpexperts whalespumpadmins cryptopumpadmins 2020-03-29 16:54:38+00:00 1.0 1333146208 4 pump announcement next pump friday 03 april 1800 utc exchange pairing btc pm pumpmasters whalespumpadmins cryptopumpadmins pump guide about faq buy fast prepare for a pump 2020-03-29 01:27:10+00:00 1.0 1325010971 2568 the pump will now happen in the group join it and dont miss out on a big profit enter now join and watch 2021-12-25 19:06:21+00:00 1.0 1325010971 2567 the pump will now happen in the group join it and dont miss out on a big profit enter now join and watch 2021-12-25 16:57:11+00:00 1.0 1325010971 2556 everyone is ready we will tell you the date of the pump in the common group in the canal and everyone prepares for the pump we will send you the appointment within a few hours 2021-12-19 00:24:22+00:00 1.0 1325010971 2243 1 days left on the big pump 2021-09-14 20:10:29+00:00 1.0 1325010971 2239 2 days left on the big pump 2021-09-13 16:27:47+00:00 1.0 1325010971 2238 3 days left on the big pump 2021-09-12 14:47:35+00:00 1.0 1325010971 2093 1 days left on the big pump 2021-09-07 07:31:23+00:00 1.0 1325010971 2092 2 days left on the big pump 2021-09-06 21:28:17+00:00 1.0 1325010971 2076 3 days left on the big pump 2021-09-05 04:57:41+00:00 1.0 1325010971 1570 the pump is reacting well after 20 minutes of pumping it now profits are +131265 2021-06-30 20:23:18+00:00 1.0 1325010971 1373 the currency has been pumped for more than 10 minutes and great profits and in the event of a loss for any of you you should try to compensate for it next time 2021-06-09 20:17:44+00:00 1.0 1325010971 1295 we will put the name of the currency in a picture so that everyone can buy at one time and there is no bot that buys before you and share the pump until we reach a large number of profits 2021-06-02 14:02:44+00:00 1.0 1325010971 1047 the date of the announcement of the name of the currency todays time 1000 pm gmt buy by usdt platform bitmartcom موعد الاعلان عن اسم العملة اليوم الساعة 1000pm gmt الشراء بواسطة usdt المنصة bitmartcom 2021-05-15 09:00:11+00:00 1.0 1325010971 937 please let some the usdt currency in your wallet until it is ready to buy the currency he will do big pump soon we will announce its name to everyone for free there will be more than 500 profits يرجى تخزين عملة usdt حتى تصبح جاهزا لشراء العملة التي سوف تنفجر قريبا سنعلن اسمها للجميع مجانا و سيكون هناك أكثر من 500٪ أرباح 2021-05-06 12:42:06+00:00 1.0 1325010971 924 this pump will be on the bitmart platform because it is characterized by currencies with few orders in sale and is characterized by the lowest commissions in the conversion such as the trc20 network of only 100 commission in any quantity and the coin pump is expected to reach 500 of profits and morebobbing this is a direct link to the platform bitmartcom 2021-05-04 14:57:52+00:00 1.0 1325010971 923 i know that everyone here wants a large increase in the currency that will be pumped and therefore a safe platform has been chosen and it has many services for the trader so that a rise of more than 100 occurs and i know that many would like to document the pump before it occurs so a video will be recorded before publishing the currency is in the channel coin pump and after it is published so that many of you can confirm that the coin has no leakage or purchase except before the members who are in the channel this pump that we will announce will achieve profits higher than 100 and it will continue to rise for long enough from buying and selling and there will be a signal for you during the pumping follow it and whoever follows it well will come out with the best profit and a documentary video will be published for you that the pump is safe 2021-05-04 14:57:35+00:00 1.0 1325010971 911 40 minutes left on the pump when we post name of coin buy and share it in social media to do second wave 2021-05-03 21:20:10+00:00 1.0 1325010971 859 1 hours left on the pump platform huobi global 2021-05-01 21:00:06+00:00 1.0 1325010971 812 the date of announcing the name of the currency coinpump+500 it will be on 152021 saturday time zone 2200 gmt 1000pm buy by usdt platform hotbitio 2021-04-28 04:17:48+00:00 1.0 1325010971 57 ‎متبقي ١ ساعة و٤٩ دقيقه زوج العملة هو btc 1 hour and 49 minutes left for a pair is btc 2021-01-31 19:11:05+00:00 1.0 1325010971 34 there is a deal that i will announce a large pump i will mention the name of the coin after 30 minutes هناك صفقة سأعلن عنها مضخه كبري سأذكر اسم العمله بعد ٣٠ دقيقه 2021-01-30 23:33:52+00:00 1.0 1342151942 2724 pump result around 200 btc traded with a 215 profit peak it peaked multiple times 3 minutes after the signal was sent liquidity is very low right now we believe that is why it has gone down below 250 after our pump ended we hope binance can fix this issue soon and we hope many of you managed to sell at 300 for 20 profit 2020-11-04 19:22:11+00:00 1.0 1342151942 2719 5 minutes left the next post will be the coin to buy 2020-11-04 16:54:28+00:00 1.0 1342151942 2718 our whales are ready are you ready 15 minutes left be ready to buy when we announce the coin that will get pumped 2020-11-04 16:45:07+00:00 1.0 1342151942 2715 4 hours and 15 minutes left until our pump be ready to buy the pump coin on binance at exactly 1700 pm gmt our target is high 2020-11-04 12:47:52+00:00 1.0 1342151942 2714 24 hours left until our big pump on binance 2020-11-03 16:57:46+00:00 1.0 1342151942 2712 pump announcement hello everyone the next official pump will be scheduled for date wednesday november 4 time 1700 pm gmt exchange binance advantage free for all we are finally ready to pump again our target for this pump will be at least 70 gain altcoins are currently very oversold and alot of people have been waiting for our next pump we see a lot of good opportunities in the market and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time our whales will do their part in the pump and buy after all our members to help pump the price up 2020-11-02 13:21:25+00:00 1.0 1342151942 2705 hello everyone we are currently analyzing the market for our next potential pump coin once we have found the perfect opportunity we will schedule our next pump stay tuned 2020-07-08 08:38:28+00:00 1.0 1342151942 2678 are you online today you better be bcoz you dont wanna miss this superb gain that about to happen the mountain alt signal 1 hr remaining today | 4 pm gmt 2020-06-03 15:00:27+00:00 1.0 1342151942 2677 hey mate why the clock is going faster today even time doesnt wanna wait bcoz its mountain alt signal 3 hrs remaining today | 4 pm gmt 2020-06-03 13:00:42+00:00 1.0 1342151942 2675 hope you are having a great day today if not then a great day yet to come bcoz the mountain alt signal is just 6 hrs away from you 6 hrs remaining today | 4 pm gmt 2020-06-03 10:00:34+00:00 1.0 1342151942 2673 hello traders we are so stoked to announce that we will be going for another big mountain alt signal our previous mountain alts performed so crazy 《 ong 》108 《 via 》188 《 xxx 》will it go for 250 time to get excited about its coming tomorrow mountain alt signal jun 3rd | 4 pm gmt 2020-06-02 03:45:25+00:00 1.0 1342151942 2669 hello everyone we are currently looking for potential coins for our upcoming mega pump we see many good opportunities in the market and the volumes are back our big pump date is quickly approaching now be ready to take part of it when we announce the exact date 2020-05-15 13:46:40+00:00 1.0 1342151942 2656 pump results around 150 btc was traded in total which is very good considering the fact that we pumped while btc was dumping first of all we would like to explain clearly what happened before and after the pump for full transparency to all our members as you know there are thousands of traders speculating on which coin will be pumped everytime we pump and this time it seems that a little bit of buying from the market in our coin created a big chain reaction before the pump started we noticed alot of buying up to 125 from the market at this point our team had taken the decision to cancel the pump because it was going up too fast but when it reached 138 we saw it started picking up alot of activity from outsiders and we believed that by announcing the signal at this height we could have reached over 70+ easier which was our initial target with even much bigger market activity than we initially expected the official signal was announced at 133 satoshis and reached 157 slowly after before going back down which is still almost a 20 potential profit that could have been made after that there was a multiple waves of around 10 which was also a bonus for those who bought the dip overall we cannot say for sure that it was a bad pump but it was definitely not our original plan in the next pump we will make sure to change the coin if this happens again or simply postpone the pump to a better time thank you all for participating we will announce the next pump once we are ready 2020-03-08 21:40:43+00:00 1.0 1342151942 2654 5 minutes left next post will be the coin name 2020-03-08 18:55:03+00:00 1.0 1342151942 2653 15 minutes left be prepared log in your account and be ready 2020-03-08 18:45:03+00:00 1.0 1342151942 2651 6 hours left until the pump on binance we have big expectations for this pump since many coins are not in the green today we should be able to attract all outsiders attention to our coin once they see us as top gainer 2020-03-08 12:48:56+00:00 1.0 1342151942 2649 pump announcement hello everyone the next official pump will be scheduled for date sunday march 8 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again our target for this pump will be at least 5070 the market is good and alot of people have been anxiously waiting for our next pump we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-03-06 15:04:16+00:00 1.0 1342151942 2641 pump results around 115 btc in volume which is amazing our buy power in the first few minutes was very big and we managed to pump it over 30 the amount of action was also very intense and there was alot of possibility to make profits during the pump after the initial spike we believe we could have hit 5070 easily if we didnt face the sell pressure at the start in fact after analyzing the data someone sold from 1500 to 1162 in 1 single 8 btc sell order which is something we have never seen happen before but we managed to bounce back from it with the help of our team bringing the price back at around 13001400 our initial plan was for our team to push the price up to 2000 satoshis if this didnt happen which is unfortunate the next pump hopefully we can avoid this overall it was a great pump with alot of action we will announce the next pump soon stay tuned 2020-01-16 20:04:45+00:00 1.0 1342151942 2639 5 minutes left the next message will be the coin name to buy 2020-01-16 18:54:20+00:00 1.0 1342151942 2633 2 hours left until our pump on binance have your btc ready to buy the coin as soon as the signal is announced 2020-01-16 17:05:53+00:00 1.0 1342151942 2631 get ready today is the day 6 hours left for our huge binance pump bttm1 2020-01-16 13:00:02+00:00 1.0 1342151942 2630 1 day remaining until our big pump on binance we are confident that we will be able to hit our target tomorrow and go even higher possibly this is going to be the pump you will not want to miss bttm1 2020-01-15 14:35:10+00:00 1.0 1342151942 2627 pump announcement hello everyone the next official pump will be scheduled for date thursday january 16 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again the current market condition is perfect for a pump as outsider activity is very strong and we expect it to continue for the next few days our target for this pump will be between 5070 we see alot of good opportunities and we invite all our members to reunite and work together as a team to create one of the biggest pump binance has seen recently this pump will be free for all meaning that everyone will receive the signal at the exact same time 2020-01-14 20:30:21+00:00 1.0 1342151942 2616 hello everyone unfortunately we will have to postpone our pump today due to bad market conditions we are receiving alot of messages from our community and from other communities waiting for our pump that the best choice would be to postpone it even though we all would have liked to have a pump we are noticing alot of unstability on many coins including btc we believe that if we pumped a coin in this market outsiders will would easily sell their bags on us our team had big plans for this pump and was prepared for better market conditions our plan to pump a coin to a really high percentage will remain on the upcoming pump we are sure all our members will support our decision which is why we decided it is in our best interest to postpone it be assured that it will be worth the wait thank for you understanding 2019-12-17 17:22:21+00:00 1.0 1342151942 2612 ‼️pump announcement‼️ hello everyone the next official pump will be scheduled for date tuesday december 17 time 1900 pm gmt exchange binance advantage free for all we are finally ready to pump again this upcoming will be big if you remember our data pump we managed to pump it to 70 with the help of our team our goal is to make another pump of that magnitude for this we will need 3 things good market conditions a good coin and finally the collaboration of all our community members we will post more details before the pump this pump will be free for all meaning that everyone will receive the signal at the same time bttm1 2019-12-16 16:00:02+00:00 1.0 1342151942 2609 hello everyone we are actively analyzing the market to find the perfect coin to pump things are looking good and we should be able to schedule a pump very soon stay tuned for the official announcement 2019-12-06 15:08:48+00:00 1.0 1342151942 2599 coin we pump today is lrc 2019-11-16 05:01:23+00:00 1.0 1342151942 2598 only 5 minutes to go global fomo warming up next post will be the breakout coin name be very ready guys login binance and keep an eye here 2019-11-16 04:55:03+00:00 1.0 1342151942 2592 dear members 2 days left until our next binance pump our goal saturday will be to trigger a reaction from outsiders saturday after we post the coin signal the price will went up really fast this will get the coin trending bring many more outsiders into the pump and create bigger waves 2019-11-14 04:35:02+00:00 1.0 1342151942 2591 big pump event guys our team has decided to organise a win win opportunity to you all where you can recover your losses due to btc pump and make some decent profit with us date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event by the time keep your btc ready for blast✅ 2019-11-13 11:22:40+00:00 1.0 1342151942 2574 hello everyone we are almost ready to announce our next pump date we are currently doing extensive research to find the perfect coin our upcoming pump will be soon stay tuned‼️ 2019-11-05 23:27:18+00:00 1.0 1342151942 2568 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-15 19:55:05+00:00 1.0 1342151942 2567 those who wants to make some profits are excited be ready your computer chair table go to quiet space only 30 minutes left the coin name will come as an text 2019-10-15 19:30:04+00:00 1.0 1342151942 2564 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump bttm1 team 2019-10-12 08:00:25+00:00 1.0 1342151942 2529 hello everyone we have decided to postpone the pump date for the following reasons alot of good coins were pumped yesterday and today and we believe it is wiser to pump coins from their bottom rather from their top stay tuned for the next date 2019-09-22 16:05:59+00:00 1.0 1342151942 2527 24 hours left before the binance pump everyone we expected amazing results tomorrow bttm1 2019-09-21 17:00:04+00:00 1.0 1342151942 2522 ‼️pump announcement‼️ the altseason pump 2 hello everyone the next official pump will be scheduled for date sunday september 22 time 100 pm est wwwworldtimebuddycom exchange binance advantage free for all pair xxxbtc we expect the market conditions to be perfect‼️ we looking forward for an amazing pump‼️ bttm1 2019-09-19 17:09:58+00:00 1.0 1342151942 2509 pump result around 10 gains on rlc which is much less than our previous 30 gains on previous pump but still good enough it could be due to the fact that today is a wednesday and alot of coins and btc are going sideways means some extra needed volume was taken from us which could have helped the coin go up around 20 overall great pump with nice volume thank you all for participating we will announce the next date soon stay tuned 2019-09-11 20:00:03+00:00 1.0 1342151942 2506 10 minutes left ‼️ pin us on top log in to binance and be ready ‼️ next post will be the coin ‼️ 2019-09-11 18:50:03+00:00 1.0 1342151942 2505 30 minutes left for the binance pump‼️ bttm1 2019-09-11 18:30:04+00:00 1.0 1342151942 2501 ‼️pump announcement‼️ the altseason pump hello everyone the next official pump will be scheduled for date wednesday september 11 time 1900 pm gmt exchange binance advantage free for all bttm1 2019-09-10 17:06:21+00:00 1.0 1342151942 2498 pump result around 30 gains on data which is much less than our previous 70 gains on this coin but still good enough it could be due to the fact that today is a sunday and alot of coins are going sideways perhaps we can confirm that pumping on a weekday is much better we can also see that pivx pumped at the exact same time which means some extra needed volume was taken from us which could have helped the coin go up around 20 more overall great pump thank you all for participating our next pump will be on a weekday as usual we will announce the date soon stay tuned 2019-09-08 19:13:35+00:00 1.0 1342151942 2495 5 minutes left the next message will be the coin name 2019-09-08 17:54:23+00:00 1.0 1342151942 2491 pin us on top and be ready‼️ 2 hours left until the pump on binance‼️ bttm1 2019-09-08 16:00:03+00:00 1.0 1342151942 2487 ‼️pump announcement‼️ hello everyone the next official pump will be scheduled for date sunday september 8 time 1800 pm gmt exchange binance advantage free for all our last 3 pumps were all a big success 70 50 and 45 which 2 of them managed to stay up for hours after our pump signal was given and we were able to show everyone that pumping in this market is still profitable if it is done right this sunday we will all join forces once again and combine our power to create another big successful pump this pump will be free for all once again meaning that everyone will receive the signal at the same time bttm1 2019-09-05 21:13:36+00:00 1.0 1342151942 2471 6 minutes left the next message will be the coin name 2019-08-29 17:53:18+00:00 1.0 1342151942 2462 hello everyone we have decided to postpone the pump date for the following reasons alot of good coins were pumped yesterday and today and we believe it is wiser to pump coins from their bottom rather from their top with our current estimates we believe that pumping thursday is a better option the new pump date will be ‼️pump announcement‼️ the next official pump will be scheduled for date thursday august 29 time 1800 pm gmt exchange binance advantage free for all 2019-08-26 13:25:43+00:00 1.0 1342151942 2457 pump result another successful pump around 50 gains on vib with amazing volume as expected as you can see alot of coins were pumped today our initial coin pumped and we picked vib at the last minute instead of postponing it which was the right decision to make initially we noticed some selling pressure at the top coming from the eth market but we our buying power was high and we managed to get through it the 2nd wave happened quickly to 240 after everyone was done buying we hope everyone sold at the top and made nice profits today we will announce the next pump soon stay tuned 2019-08-21 18:18:25+00:00 1.0 1342151942 2455 next post is the coin name‼️ 5 minutes left‼️ 2019-08-21 17:54:13+00:00 1.0 1342151942 2453 1 hour left make sure you help promote the coin during the pump 2019-08-21 17:00:12+00:00 1.0 1342151942 2450 5 hours left until the pump on binance be ready 2019-08-21 12:54:36+00:00 1.0 1342151942 2448 ‼️pump announcement‼️ hello everyone the next official pump will be scheduled for date wednesday august 21 time 1800 pm gmt exchange binance advantage free for all after our successful 70 data pump we expect our volume to be at least 3 times bigger on this upcoming pump we always try to aim higher our objective for next pump is to make it even bigger this pump will be free for all again and everyone will receive the signal at the same time we have 3 days to prepare for this pump share our group on social media and invite everyone you know because next pump is going to be huge ‼️‼️‼️ 2019-08-18 14:11:55+00:00 1.0 1342151942 2442 pump result 70 gain on data as you can see everyone that bought in the first minute made almost 50 profit which is amazing in this market as we promised this pump had 0 prepump and our team helped push the price higher for everyone the mega pump group is officially back congratulations to everyone who bought we will announce the next pump soon stay tuned 2019-08-15 20:25:52+00:00 1.0 1342151942 2438 5 minutes left the next message will be the coin name 2019-08-15 19:54:38+00:00 1.0 1342151942 2436 1 hour left until the next pump on binance‼ 2019-08-15 18:58:35+00:00 1.0 1342151942 2435 2 hours left until the next pump on binance‼️ get ready‼️‼️ 2019-08-15 17:58:57+00:00 1.0 1342151942 2434 5 hours 30 mins left until the next pump on binance‼️ get ready‼️‼️ 2019-08-15 14:37:09+00:00 1.0 1342151942 2433 1 day left until the next pump on binance‼️ our pump time will now be at 2000 pm gmt‼️ 2019-08-14 18:11:49+00:00 1.0 1342151942 2432 ‼️pump announcement‼️ hello everyone the next official pump will be scheduled for date thursday august 15 time 2000 pm gmt exchange binance advantage free for all this pump will have 0 prepump meaning that 100 of the profits will go towards all our members and it will ensure that the pump results are as optimal as possible and fair for everyone we will pick the coin right before the pump to make sure that we pick the best possible coin given the market conditions and order books at that point in time 2019-08-11 13:00:30+00:00 1.0 1342151942 2431 pump result overall good pump we managed to hit top gainer for a brief moment and the volume was much bigger than the previous pump which was expected since it was a weekday pump we hoped to hit a higher gain this time but we believe that if the market conditions stayed the same as yesterday the result would have been a much bigger increase also before the pump our coin dipped almost 10 because btc was pumping this has caused alot of selling pressure and alot of added sells in the order book by the buy orders that were filled below we believe we would have hit our 50 easily if btc did not pump the next pump will be announced when the market is better and when we are ready stay tuned 2019-08-07 17:34:19+00:00 1.0 1342151942 2429 5 minutes left the next message will be the coin name 2019-08-07 16:54:22+00:00 1.0 1342151942 2428 20 minutes left be ready we have a clear path to top gainer place buy orders to support the price the longer the pump lasts the more outsiders will join in our news team is ready to spread the news everywhere on social media the signal will be posted as an image to counter the bots 2019-08-07 16:41:13+00:00 1.0 1342151942 2427 1 hour left until the pump be ready on binance 2019-08-07 15:57:30+00:00 1.0 1342151942 2425 6 hours left until the pump on binance 2019-08-07 10:59:50+00:00 1.0 1342151942 2423 ‼️1 day‼️ left until our pump on binancewe expect a very high amount of volume with expected gains that could range anywhere from 50 to 70 depending on how the market reacts we have also put in place a team of people that will shill the coin with news everywhere on social media quickly after the signal is given to ensure that a bigger amount of outsiders will join the pump many members are asking if we use btc or eth to buy the coin we will be using the btc pairing to buy the coin 2019-08-06 13:23:44+00:00 1.0 1342151942 2421 3 days left for our next official pump‼️ date wednesday august 7 time 1700 pm gmt exchange binance advantage free for all stay tuned‼️ 2019-08-04 10:53:15+00:00 1.0 1342151942 2418 ‼️pump announcement‼️ hello everyone the next official pump will be scheduled for date wednesday august 7 time 1700 pm gmt exchange binance advantage free for all the pump will be free for all meaning everyone will receive the signal at the same time we will be using an image to post the signal this time to counter the bots if you have any questions feel free to join our discord and chat with our community of more than 60 000 traders the link is in our channel description 2019-07-31 13:13:58+00:00 1.0 1342151942 2416 pump result we managed to hold strongly at around 440 satoshi as you can see on the chart even after 5 minute mark we were still holding steady volume was definetly big enough to pump it higher however after analzying further we saw that alot of members bought on the eth pairing as it pumped much higher on eth over 30 we invite everyone to look at the blz chart posted above from the eth market this is actually very remarkable as it managed to pump to the top 3 times in a row note that all our pumps are done on the btc pairing something to keep in mind for the next pump 2019-07-29 10:28:24+00:00 1.0 1342151942 2409 3 hours left the current market conditions are perfect for a pump btc is stable and traders are starting to be interested in altcoins again be ready on binance today will be big 2019-07-28 14:02:31+00:00 1.0 1342151942 2408 hello everyone less than 4 hours left until the next pump on binance todays pump will be free for all meaning that everyone will receive the signal at the same time the signal will be given in the pumpsignal channel on discord and in our telegram since alot of new members are asking which strategy is best to use when buying and selling buying the fastest way to buy is to use the market buy option shown in the picture below using the 100 buy option wont work since the price is moving up quickly instead use 75 to make sure your order fills and below selling the best way to sell is to sell slowly in parts as the price is moving up 2019-07-28 13:53:41+00:00 1.0 1342151942 2406 ‼️pump announcement‼️ hello everyone the next official pump will be scheduled for date sunday july 28 time 1700 pm gmt exchange binance advantage free for all bttm1 2019-07-23 12:56:11+00:00 1.0 1342151942 2405 as the btc market unstabilitywe decide to postponing the sunday pump for the safety of our members funds stay tuned the next date will announced soon‼️ bttm1 2019-07-20 10:58:57+00:00 1.0 1342151942 2404 2 days left for our next special signal‼️ the market condition is not the best right nowwe are looking forward for the best coin‼️ date sunday july 21 time 1700 pm gmt exchange binance rank ffa we reward your support bttm1 2019-07-19 09:44:16+00:00 1.0 1342151942 2397 ‼️get ready for our next special signal‼️ date sunday july 21 time 1700 pm gmt exchange binance rank ffa we reward your support bttm1 2019-07-14 12:50:28+00:00 1.0 1342151942 2387 pump result overall good pump over 100 btc was traded during the pump which is close to 11 million alot of members were able to buy at the 13001350 area which is good we saw some activity on many coins before the pump including ours which was expected specially when thousands of people are speculating on the coin we also saw a good amount of outsider activity after our signal which made the pump last a good amount of time we were met by an unconditionnal sell was at 1480 which caused people to sell early which is understandable but overall we are receiving alot of messages of appreciation thank for participating we will announce the next pump date shortly 2019-07-05 17:24:18+00:00 1.0 1342151942 2383 5 minutes left the next message will be the coin 2019-07-05 16:54:56+00:00 1.0 1342151942 2379 get ready for today‼️ the pump will be date friday july 5 time 1700 pm gmt exchange binance advantage free for all 2019-07-05 08:31:08+00:00 1.0 1342151942 2378 hello everyone we have decided to postpone our pump for friday because of btcs current unstability we are sorry for the delaythank you for understanding the new pump date will be date friday july 5 time 1700 pm gmt exchange binance advantage free for all 2019-06-30 17:12:45+00:00 1.0 1342151942 2375 ‼️get ready for today special signalless than 9 hours left ‼️ date sunday june 30 time 1800 pm gmt exchange binance advantage ffa 2019-06-30 09:28:28+00:00 1.0 1342151942 2368 ‼️special signal announcement‼️ date sunday june 30 time 1800 pm gmt exchange binance advantage ffa 2019-06-25 18:32:55+00:00 1.0 1342151942 2357 next special signal exchange binance date 08jun2019 time 17pm gmt invite more people means more volume bttm1 team 2019-06-06 07:25:30+00:00 1.0 1342151942 2340 welcome to bitcoin time table meeting exchange binance pump target 3050 the goal of this group is to create a community where we can all make money through long duration pumps here is how the process will work 1 first its important that you have set up a “binance” account and have deposited the btc that you wish to invest into the exchange before the pump 2 every sunday at 9pm gmt we will release the coin that we are going to pump here in our telegram channel at this point our group will buy into the coin increasing the value dont be surprised to see a 50 jump solely from the volume created by our group as we plan on pumping low volume coins to maximize our profits 3 after our group has bought in it is imperative that we do not sell here although the coins value will be higher at this point than where you bought the profits will be minimal compared to holding also selling here will be detrimental to the pump even if we see a slight sell off do not freak out as the coin will continue to trend upward 4 at this point our group members will spread the word of the coin were pumping relentlessly this can be done through social media telegram groups or in person remember the coin will already be up quite a bit so getting other traders to buy in will not be very difficult if every group member does their part in getting outside investment this is when the value of the coin will really skyrocket 5 the pump will last for 24 hours this will give everybody in the group plenty of time to attract outside investment regardless of time zone 6 by the time 24 hours has passed the value of the coin will be up 3050 easily at this point our group can sell the coins that we own 7 if we do not dump on our members and everyone does their role in spreading the coin to the crypto community everyone in the group will make a handsome profit in order for our long duration pumps to work to their maximum potential we need to work as a group as long as we do that this community will become consistent income for everyone involved 2019-05-29 19:46:03+00:00 1.0 1342151942 1691 be ready guys after 15 minutes we will share you a coin after that we will post in public channel also buy and hold for maximum profit 2019-01-12 12:30:44+00:00 1.0 1342151942 1676 best signal of the week the coin is brd target 1 6350 target 2 6650 target 3 7200++ buy and hold tight till target achieve 2019-01-02 15:44:54+00:00 1.0 1342151942 1675 ❗️❗️guys we will share you a special coin today at 345 pm gmt you need to buy and hold untill target achieve we will share in free channel also 2019-01-02 13:29:59+00:00 1.0 1342151942 1637 ont cryptopia pump results start price 15804 peak price 70999 gain 342 peak buy came at 3 min 15 sec today great job bringing in those outsiders 2018-12-10 20:44:07+00:00 1.0 1342151942 1634 5 minutes until the pump next message will be the coin everyone expected gain 300450 2018-12-10 19:55:00+00:00 1.0 1342151942 1631 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon today we expect much larger than normal gains and huge percentage rise 2018-12-10 19:00:00+00:00 1.0 1342151942 1629 2 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media 2018-12-10 18:00:01+00:00 1.0 1342151942 1628 4 hours left before the pump last pump was amazing we went way over our goal and held for a nice amount of time today will be an enormous pump higher gains more outsiders more profits 2018-12-10 16:00:01+00:00 1.0 1342151942 1626 24 hours left before the pump everyone remember to buy the coin quickly list your sell in the expected gain range and help promote the coin in cryptopias chat box and on social media we will have an amazing pump tomorrow when we all work together for nice gainshave btc ready in your cryptopia account a few hours before the pump 2018-12-09 20:00:00+00:00 1.0 1342151942 1623 everyone pump announcement next pump monday 10 december 2000 gmt 2018-12-07 22:45:14+00:00 1.0 1342151942 1622 pump will be unranked free for all all pumpers will receive coin at the same time last pump we saw amazing results of 294 with a slow climb outsiders buying in late the coin holding for a long time and great success stories sent in by many members make sure to mark your calendars as this will be another pump you wont want to miss 2018-12-07 22:17:00+00:00 1.0 1342151942 1616 otn cryptopia pump results start price 4802 peak price 18293 gain 294 great job promoting today the pump rose very slow and steady and held for almost 10 min 2018-12-06 20:17:11+00:00 1.0 1342151942 1612 5 minutes until the pump next message will be the coin everyone expected gain 200250 2018-12-06 19:55:01+00:00 1.0 1342151942 1609 1 hour left before the pump everyone remember to help promote the coin in the cryptopia chat box lets push this coin to the moon with our great shilling outsiders will be ready to invest right after us and bring in some huge profits 2018-12-06 19:00:01+00:00 1.0 1342151942 1598 5 minutes until the pump next message will be the coin everyone 2018-12-04 19:55:00+00:00 1.0 1342151942 1587 pump announcement next pump tuesday 4 december 2000 gmt exchange cryptopia pairing btc pump will be unranked free for all all pumpers will receive coin at the same time the time has come we are back and ready to bring those profits we all got used to the market went through a tough time but we are here to succeed once again 2018-12-03 20:38:41+00:00 1.0 1342151942 1569 the coin to pump is alis exchange yobitnet target +300 market alisbtc buy buy buy hold hold hold buy buy buy hold hold hold buy buy buy hold hold hold 2018-11-09 17:00:34+00:00 1.0 1342151942 1566 ℹ️ 10 minutes ℹ️ get ready with your yobit account coin is low level buy with us 2018-11-09 16:50:03+00:00 1.0 1342151942 1565 ℹ️ 20 minutes ℹ️ so close now make sure you are ready to buy coin on yobitnet 2018-11-09 16:40:03+00:00 1.0 1342151942 1564 ℹ️ 30 minutes ℹ️ start getting logged in yobitnet now 2018-11-09 16:30:11+00:00 1.0 1342151942 1563 ℹ️ 1 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 16:00:13+00:00 1.0 1342151942 1561 ℹ️ 2 hour until the coin to buy is released ℹ️ exchange yobitnet read the instructions above and be ready 2018-11-09 15:00:47+00:00 1.0 1342151942 1558 ℹ️ 9 hours until the coin to buy is released ℹ️ exchange yobitnet time 5 pm gmt read the instructions above and be ready 2018-11-09 08:00:34+00:00 1.0 1342151942 1557 ℹ coin signal information ℹ date friday 09112018 hour 1700 pm gmt exchange yobit market btc trading pairbtc wwwyobitnet ℹ today 5 pm gmt ℹ️ it is important to educate yourselves on how to trade on yobit on how to buy and sell today at 5 pm gmt exactly i will announce a coin for all of us to buy coin will b low level once we have bought we must hold for at least 10 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell ordersso that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ 2018-11-09 07:45:02+00:00 1.0 1342151942 1556 ❗ read instructions below❗ 1 sign up to yobit and send your btc to your wallet today ℹ information for todays pump ℹ 1i will post a signal at exactly 5 pm gmt this will be for a low market cap coin on yobit the reason for this is for a bigger percentage rise for all of you you will want to have your btc available in your account to buy well before the signal make sure you are at your computer at least 20 minutes before to enable enough time to be prepared i recommend setting a phone reminder or alarm so you do not miss this 2after announcing the coin here we will all buy in as quickly as possible it is important to buy fast before i enticing outside investors to get in on it 3once we have bought in and the price has stabilized it is important to hold and not dump on our other members this is when myself and you can help promote the coin to attract outside investment which will cause the coin to grow more and allow all of us to sell slowly at a good profit 4we are going to hold for at least 10 minutes or longer after that we can sell but never sell it under the actual price otherwise it will lead to a dump sell it in pieces by setting sell orders not in bulksso that buy n buy order can be created❌never sellh it lower buy orderselse it will lead to panic sellingn dump✅instead create lower sell order just higher than buy orderit will keep running buy ordersn green color will attract everyone make sure you understand the process and how to trade on yobit ℹ️ our recent results have had huge volume and big rises be sure not to miss it here are the instructions for any new members todays coin offers an opportunity for all members to invest ℹ️ be ready today until the coin to buy is released ℹ️ ℹ️ be ready to buy at low level with us ℹ️ ℹ️ coin signal information ℹ️ exchange yobit date 09112018 friday time 5 pm gmt ℹ️ a very popular trade coin will be chosen for us all to buy at the same time today at low level you wont want to miss this one ℹ️ 2018-11-09 06:20:50+00:00 1.0 1342151942 1555 have you been missing out on these huge profits in our previous pumps snpt 600 infx 300 sling 268 hac740 cl 906 sig1263 get345 get311 torq 453 hdg362 pai600 pro500 coinv460 hac315 mth250 loom300 mnz211 bnbx230 hqx215 tusd255 party427 sel326 eqt352 iqn426 make sure you are ready for the next one this group signals crypto coins low level anyone can make money in our pump as we provide ample opportunity to everyone to buy 24 hr low level remember we always repump our coin every signal has its own history ℹ️ coin signal info ℹ️ exchange yobit date 091118 day friday time 5 pm gmt 2018-11-09 06:14:15+00:00 1.0 1342151942 1129 next post coin name 2018-07-05 17:58:02+00:00 1.0 1342151942 1127 15 minutes left until the big pump on cryptopia we have a huge twitter whale group participating today login and be ready guys this one is gonna be huge 2018-07-05 17:45:22+00:00 1.0 1342151942 1124 2 hours left to pump ⏰ time 600 pm gmt exchange cryptopia ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you don t sell below buy price as we pump our coins again as promised 2018-07-05 16:00:07+00:00 1.0 1342151942 1123 less than 04 hours left to pump ⏰ time 600 pm gmt exchange cryptopia ⭐️ set buy price higher than exchange suggests and you will autobuy all available cheap sell orders starting from lowest ⭐️ promote our coin in exchange chat box ⭐️ exit when price is good for you don t sell below buy price as we pump our coins again and again usually 2018-07-05 14:06:57+00:00 1.0 1342151942 1122 time to profit in this red market bigcryptopump group pumps selective coins again and again so that not a single member loses their hard earned btc we do only 001 pre pump to cover our discord server maintenance fee of which we provide screenshots proof this is how we stand out from other scam pump groups last few results iqt pumped twice over 60 percent each time bvb pumped thrice over 90 percent each time bits pumped once over 80 percent each time ℹ️ next signal thursday ℹ️ exchange wwwcryptopiaconz date 05072018 thursday time 6 pm gmt ℹ️be ready for another bang signalℹ️ 2018-07-05 12:04:26+00:00 1.0 1342151942 1099 orgmsg i am accumulating chat coin which looks really good at the moment on binance accumulate chat between 720750 satoshi its on its strong support buy and hold let it see a massive pump chat signal given here 2 days back price reacehd 820 satoshi so far we are at 13 profit ‼ hold it now guys ‼ this is a collab buy hold signal going out to a total of 147525 members the exit targets are +10 +20 and +30 and it is advised to put a stop loss at 10 our aim is to trade as one to create trading volume that will move markets just like the whales do and as such grow the positions of members with daily gains 2018-07-03 07:12:51+00:00 1.0 1342151942 1056 i am accumulating chat coin which looks really good at the moment accumulate chat between 720750 satoshi its on its strong support buy and hold let it see a massive pump this is a collab buy hold signal going out to a total of 147525 members the exit targets are +10 +20 and +30 and it is advised to put a stop loss at 10 our aim is to trade as one to create trading volume that will move markets just like the whales do and as such grow the positions of members with daily gains 2018-06-30 17:09:06+00:00 1.0 1342151942 984 wake up everybody ⏰1hour and 45 minutes until the pump i will make you rich set alarms to not forget check your telegram sign in your cryptopia accounts 15 minutes before to be sure everything is ok its gonna be fair and magnificent pump 2018-06-11 17:15:48+00:00 1.0 1342151942 910 the coin to pump is hac exchange cryptopia target +300 500 market hacbtc buy and hold hac target 1st 180 target 2nd 220 2018-05-26 16:31:04+00:00 1.0 1342151942 898 big hold pump date 2652018 time 430pm gmt exchange cryptopia target 100+ sign up on cryptopia get your btc wallets ready pin our channel for every update invite your friends to join more details coming soon 2018-05-25 20:07:11+00:00 1.0 1342151942 816 mondays pump reminder ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 23rd april monday ⏰time 300pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ 2018-04-22 18:53:04+00:00 1.0 1342151942 815 pump announcement ⬇️⬇️⬇️⬇️⬇️⬇️⬇️⬇️ date 23rd april monday ⏰time 300pm gmt exchange cryptopia ➖➖➖➖➖➖➖➖ checklist ✔️sign up to cryptopia ✔️transfer btc to your cryptopia wallet ✔️set an alarm for 10 minutes before the pump⏰ ✔️invite your mates more details and reminders to follow soon 2018-04-21 13:29:02+00:00 1.0 1342151942 809 symbol bsd exchange coinexchange btc buy bsd right now hold your coins so the price can continue to rise and go inside the coinexchange troll box and spread the word hurry up and buy now remember our last 5 coin signals ran up over +1000 and held for 10 to 20 minutes ps if you do not sell your coins today we will always revisit our alerts all of the coins we alert have huge upside potential so never worry 2018-04-11 20:00:00+00:00 1.0 1342151942 807 our megacoin signal 11 april 〰〰〰 20 gmt 〰〰〰 ⚠️ only 10 minutes left ⚠️ exchange coinexchangeio get ready to fly to the stars 2018-04-11 19:50:07+00:00 1.0 1342151942 795 symbol ewc exchange coinexchange btc buy right now hold your coins so the price can continue to rise and go inside the coinexchange troll box and spread the word hurry up and buy now remember our last 5 coin signals ran up and held for 10 to 20 minutes ps if you do not sell your coins today we will always revisit our alerts all of the coins we alert have huge upside potential so never worry 2018-04-08 20:00:04+00:00 1.0 1342151942 790 our megacoin signal 8th april 〰〰〰 20 gmt 〰〰〰 2 hours left remember our coin signal from last sunday exploded 1570 dont miss this one exchange coin exchange 2018-04-08 18:00:50+00:00 1.0 1342151942 734 after a tremendous amounts of messages like dont sell we love you we want you here we decide to stay and keep rewarding your support our next pump will be tommorow at 8 gmt thank you for your love we love you all and lets pump the world up again 2018-03-21 14:40:43+00:00 1.0 1342151942 686 our pump on i0c is now over we were able to pump the coin 90 we will continue to get better we reward your support bttm1 team 2018-02-19 22:49:20+00:00 1.0 1342151942 616 not bad for a flash pump we was able to pump it from 2000 sat to 3000 sat 50 and the coin still up 2018-02-16 18:09:54+00:00 1.0 1342151942 566 to the space the coin to pump is bsty exchange cryptopia target 3x best of luck guys 2018-02-10 20:00:00+00:00 1.0 1342151942 542 our pump on riya is now over we were able to pump the coin 80 with 21 btc 172k usd volume created we will continue to get better we reward your support wwwbttmio 2018-02-04 22:00:07+00:00 1.0 1342151942 530 our pump on pink is now over we were able to pump the coin 276 with 10 btc 85k usd volume created we will continue to get better we reward your support wwwbttmio bttm1 team 2018-02-04 16:10:32+00:00 1.0 1342151942 437 flash pump in 15minutes get ready cryptopia exchange 2018-01-31 12:45:54+00:00 1.0 1342151942 427 our pump on kuma is now over we were able to pump the coin 200 with 32 btc 38k usd volume created we will continue to get better we reward your support wwwbttmio bttm1 team 2018-01-30 10:24:35+00:00 1.0 1342151942 416 our pump on kobo is now over we were able to pump the coin 300 with 34 btc 395k usd volume created we will continue to get better we reward your support wwwbttmio bttm1 team 2018-01-28 20:18:56+00:00 1.0 1342151942 384 our pump on shrm is now over we were able to pump the coin 200 with 10 btc 111k usd volume created we will continue to get better we reward your support bttm1 team 2018-01-26 22:09:03+00:00 1.0 1342151942 370 our pump on fcn is now over we were able to pump the coin 350 with 10 btc 111k usd volume created those are great numbers and we will continue to get better we reward your supportbttm1 team 2018-01-24 21:03:43+00:00 1.0 1342151942 343 our pump on cc is now over we were able to pump the coin 750 with 30 btc 341320 usd volume created those are great numbers and we will continue to get better we reward your supportbttm1 team 2018-01-21 22:33:23+00:00 1.0 1342151942 325 our pump on alex alexandrite is now over we were able to pump the coin 240 with 12 btc 13960 usd volume created we will continue to get better we reward your supportbttm1 team 2018-01-20 00:10:22+00:00 1.0 1342151942 287 our pump on aurs aureus is now over we were able to pump the coin 480 with 11 btc 151320 usd volume created those are great numbers and we will continue to get better we reward your supportbttm1 team 2018-01-15 21:08:41+00:00 1.0 1342151942 274 we would like to inform you that todays pump was the most successful one cause we post it on social media for a long time thats why we say hold and try to promote the coin on social media together we make history we reward your support our next pump will be announced soonbttm1 team 2018-01-14 21:34:50+00:00 1.0 1342151942 266 the pump coin is — shrm shrm btc buy and hold dont panic sell dont be gready 2018-01-14 18:59:36+00:00 1.0 1342151942 219 our pump on cc coolindarkcoin is now over we were able to pump the coin 700 with 51 btc 71k usd volume created those are great numbers and we will continue to get better we reward your supportbttm1 team 2018-01-11 20:06:09+00:00 1.0 1342151942 213 the pump coin is — cc cc btc buy and hold dont panic sell dont be gready 2018-01-11 18:00:00+00:00 1.0 1342151942 196 our pump on hc harvest coin is now over we were able to pump the coin 200 with 4 btc 58k usd volume created those are great numbers and we will continue to get better we reward your supportbttm1 team 2018-01-10 17:25:08+00:00 1.0 1342151942 189 the pump coin is — hc start price 6000 sat hc btc buy and hold dont panic sell dont be gready 2018-01-10 16:00:00+00:00 1.0 1342151942 174 our pump on wrc warcoin is now over we were able to pump the coin 500 with 516 btc 76k usd volume created those are great numbers and we will continue to get better we reward your supportbttm1 team 2018-01-09 20:21:44+00:00 1.0 1342151942 167 the pump coin is — wrc wrc btc buy and hold dont panic sell dont be gready 2018-01-09 18:00:01+00:00 1.0 1342151942 153 our pump on ooo om is now over we were able to pump the coin 650 with 234 btc 34k usd volume created those are great numbers and we will continue to get better from here bttm1 team 2018-01-08 16:27:44+00:00 1.0 1342151942 148 the pump coin is — ooo ooo btc buy and holddont panic selldont be gready 2018-01-08 14:59:59+00:00 1.0 1342151942 134 the pump coin is — sel sel btc buy and holddont panic selldont be gready 2018-01-07 12:00:05+00:00 1.0 1342151942 117 the pump coin is — umo umo btc buy and holddont panic selldont be gready 2018-01-06 14:59:21+00:00 1.0 1342151942 101 the pump coin is — kashcoin kash btc buy and hodldont panic selldont be gready usefull tips steveokashcoinpromisestobethecryptocurrencyforthemusicindustry kash coin will be the cryptocurrency for the music 2018-01-03 13:00:02+00:00 1.0 1342151942 57 for members who have joined recently here are a few things to keep in mind for this pump 1 coin that we are pumping will be released on friday at 3pm est time in this channel 2 buy into the coin as quickly as possible and dont be surprised to see a large percentage increase already as it will be a relatively low volume coin 3 do not sell here selling would result in a suppressed pump and you will be limiting your returns drastically 4 take to social media and other telegram channels and start pushing the coin to others 5 when it comes time to sell 24hrs place a sell order that is at the current price or higher this way everyone can sell for the best price possible it is important that we continue to draw outside investment up until this point 2017-12-26 09:55:47+00:00 1.0 1342151942 56 welcome to bitcoin time table meeting exchange cryptopia pump target 400500 the goal of this group is to create a community where we can all make money through long duration pumps here is how the process will work 1 first its important that you have set up a “cryptopia” account and have deposited the btc that you wish to invest into the exchange before the pump 2 every friday at 3pm est we will release the coin that we are going to pump here in our telegram channel at this point our group will buy into the coin increasing the value dont be surprised to see a 100 jump solely from the volume created by our group as we plan on pumping low volume coins to maximize our profits 3 after our group has bought in it is imperative that we do not sell here although the coins value will be higher at this point than where you bought the profits will be minimal compared to holding also selling here will be detrimental to the pump even if we see a slight sell off do not freak out as the coin will continue to trend upward 4 at this point our group members will spread the word of the coin were pumping relentlessly this can be done through social media telegram groups or in person remember the coin will already be up quite a bit so getting other traders to buy in will not be very difficult if every group member does their part in getting outside investment this is when the value of the coin will really skyrocket 5 the pump will last for 24 hours this will give everybody in the group plenty of time to attract outside investment regardless of time zone 6 by the time 24 hours has passed the value of the coin will be up 400500 easily at this point our group can sell the coins that we own 7 if we do not dump on our members and everyone does their role in spreading the coin to the crypto community everyone in the group will make a handsome profit in order for our long duration pumps to work to their maximum potential we need to work as a group as long as we do that this community will become consistent income for everyone involved 2017-12-25 21:38:33+00:00 1.0 1390964323 7375 watch it fast doge coin big pump || careful 2021-02-04 08:59:41+00:00 1.0 1390964323 3929 tron trx 23062019 exchange binance current volume 1657 btc current price 343 satoshi buy in dip part 1 50 332 part 2 50 301 safety buy sell targets target 1 365 10 target 2 381 15 approx target 3 open reason trx is looking good on charts dailyweekly justin sun pump god might play tricks soon warren buffet lunch on 25th july 2019-06-23 08:08:22+00:00 1.0 1390964323 3214 enigma eng 10022019 exchange binance current volume 353 btc current price 7968 satoshi buy buy in dip part 1 50 8000 part 2 50 7500 safety buy sell targets target 1 8400 target 2 8800 target 3 open reason voyager testnet which includes secret contracts 20 dapp independence and dapp scalability released by end of q1 exact date not confirmed but it can be annouced anyday 2019-02-10 16:18:45+00:00 1.0 1390964323 3072 updated signal internet of services iost 19012019 exchange binance current volume 219 btc current price 173 satoshi buy buy in dip part 1 50 173 part 2 50 160 safety buy sell targets target 1 181 target 2 190 target 3 open reason mainnet releasetoken swap 25th feb 2019 2019-01-23 06:58:41+00:00 1.0 1390964323 3069 waves hit safety buy at 69000 waves waves 14012019 exchange binance buy part 1 50 7700 hit part 2 50 6900 safety buy hit avergae buy is now 73000 new sell targets target 1 76650 target 2 80300 target 3 open signal sheet has been updated 2019-01-23 04:14:33+00:00 1.0 1390964323 3016 updated signal wepower wpr entry 09012019 exchange binance current volume 22 btc current price 342 satoshi buy part 1 50 340 part 2 50 300 safety buy sell targets target 1 357 target 2 374 target 3 open reason wepower auction and australia expension expected in q1 2019-01-16 15:16:58+00:00 1.0 1390964323 1888 bnb burn ka pump normally 10th ke around chalu hota hai but looks like its delayed so pick up bnb in 3 parts at cheap rate matter of time before it starts pumping long term bhi amazing coin hai toh tension not always hold some bnb 2018-09-14 05:38:09+00:00 1.0 1161083859 113 pump start idexbtc exchange binance start time now 1645 utc timeframe 15 minutes until 1700 utc pump xtime 2021-04-25 16:45:04+00:00 1.0 1161083859 112 30 minutes left be ready on binance name on next message date 25 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-25 16:15:03+00:00 1.0 1161083859 111 1 hour left date 25 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-25 15:45:09+00:00 1.0 1161083859 110 2 hours left date 25 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-25 14:45:03+00:00 1.0 1161083859 109 24 hours left date 25 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-24 16:45:04+00:00 1.0 1161083859 108 2 days left date 25 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-23 16:45:04+00:00 1.0 1161083859 106 next crypto pump date 25 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-21 13:23:59+00:00 1.0 1161083859 104 pump start viabtc exchange binance start time now 1645 utc timeframe 15 minutes until 1700 utc pump xtime 2021-04-11 16:45:14+00:00 1.0 1161083859 103 30 minutes left be ready on binance name on next message date 11 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-11 16:17:26+00:00 1.0 1161083859 102 1 hour left date 11 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-11 15:47:22+00:00 1.0 1161083859 101 2 hours left date 11 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-11 14:47:19+00:00 1.0 1161083859 100 24 hors left date 11 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-10 16:47:25+00:00 1.0 1161083859 99 2 days left date 11 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-09 16:47:22+00:00 1.0 1161083859 98 next crypto pump date 11 apr 1645 utc exchange binance pair soon revealed btc timeframe 15 minutes from 1645 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-07 12:31:21+00:00 1.0 1161083859 95 pump start gtobtc exchange binance start time now 1630 utc timeframe 30 minutes until 1700 utc pump xtime 2021-04-04 16:30:12+00:00 1.0 1161083859 94 30 minutes left be ready on binance name on next message date 04 apr 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-04 16:02:21+00:00 1.0 1161083859 93 1 hour left date 04 apr 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-04 15:32:22+00:00 1.0 1161083859 92 2 hours left date 04 apr 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-04 14:32:19+00:00 1.0 1161083859 91 24 hours left date 04 apr 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-03 16:32:18+00:00 1.0 1161083859 90 2 days left date 04 apr 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-04-02 16:30:00+00:00 1.0 1161083859 89 ⚠️ the pump has been brought forward by 30 minutes the previous post has been modified with the new time 2021-04-02 14:31:05+00:00 1.0 1161083859 87 next crypto pump date 4 apr 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-03-31 12:13:39+00:00 1.0 1161083859 85 pump start pivxbtc exchange binance start time now 1730 utc timeframe 30 minutes until 1800 utc pump xtime 2021-03-28 16:32:17+00:00 1.0 1161083859 84 30 minutes left be ready on binance date 28 mar 1730 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1730 to 1800 utc countdown page +pumpfontslabcsz1 2021-03-28 16:02:13+00:00 1.0 1161083859 83 1 hour left date 28 mar 1730 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1730 to 1800 utc countdown page +pumpfontslabcsz1 2021-03-28 15:32:10+00:00 1.0 1161083859 81 2 hour left date 28 mar 1730 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1730 to 1800 utc countdown page +pumpfontslabcsz1 2021-03-28 14:32:11+00:00 1.0 1161083859 80 24 hours left date 28 mar 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-03-27 16:32:16+00:00 1.0 1161083859 79 2 days left date 28 mar 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-03-26 16:32:14+00:00 1.0 1161083859 78 ⚠️ the pump has been brought forward by 30 minutes the previous post has been modified with the new time 2021-03-25 09:42:02+00:00 1.0 1161083859 77 next crypto pump date 28 mar 1630 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1630 to 1700 utc countdown page +pumpfontslabcsz1 2021-03-24 08:21:16+00:00 1.0 1161083859 74 pump start mdabtc exchange binance start time now 1701 utc timeframe 30 minutes until 1730 utc pump xtime loyaltypoints 2021-03-21 17:01:26+00:00 1.0 1161083859 73 30 minutes left be ready on binance date 21 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-21 16:32:07+00:00 1.0 1161083859 72 1 hour left date 21 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-21 16:02:04+00:00 1.0 1161083859 71 24 hours left date 21 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-20 16:58:01+00:00 1.0 1161083859 70 2 days left date 21 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-19 17:02:08+00:00 1.0 1161083859 69 next crypto pump date 21 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-14 20:03:20+00:00 1.0 1161083859 67 pump start flmbtc exchange binance pair flm btc start time 1700 utc timeframe 30 minutes until 1730 utc pump xtime 2021-03-13 17:00:06+00:00 1.0 1161083859 66 30 minutes left be ready on binance date 13 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-13 16:32:08+00:00 1.0 1161083859 65 1 hour left date 13 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-13 16:02:04+00:00 1.0 1161083859 64 24 hours left date 13 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-12 17:02:07+00:00 1.0 1161083859 63 next crypto pump date 13 mar 1700 utc exchange binance pair soon revealed btc timeframe 30 minutes from 1700 to 1730 utc countdown page +pumpfontslabcsz1 2021-03-12 10:01:04+00:00 1.0 1161083859 61 pump start enjusdt exchange binance pair enj usdt start time 2030 utc timeframe 30 minutes until 2100 utc pump xtime coin 2021-03-04 20:32:07+00:00 1.0 1161083859 60 1 hour left date 4 mar 2030 utc exchange binance pair soon revealed usdt timeframe 30 minutes from 2030 to 2100 utc countdown page +pumpfontslabcsz1 2021-03-04 19:32:04+00:00 1.0 1161083859 59 24 hours left date 4 mar 2030 utc exchange binance pair soon revealed usdt timeframe 30 minutes from 2030 to 2100 utc countdown page +pumpfontslabcsz1 2021-03-03 20:32:09+00:00 1.0 1161083859 58 next crypto pump date 4 mar 2030 utc exchange binance pair soon revealed usdt timeframe 30 minutes from 2030 to 2100 utc countdown page +pumpfontslabcsz1 2021-03-02 13:36:06+00:00 1.0 1161083859 55 pump start btcstbtc exchange binance pair btcst btc start time 1500 utc timeframe 1h pump xtime 1600 utc standardhashratetoken 2021-02-23 15:00:12+00:00 1.0 1161083859 54 1 hour left date 23 feb 1500 utc exchange binance pair soon revealed btc timeframe 1h countdown page +pumpfontslab 2021-02-23 14:00:09+00:00 1.0 1161083859 53 next crypto pump date 23 feb 1500 utc exchange binance pair soon revealed btc timeframe 1h countdown page +pumpfontslab 2021-02-22 14:54:27+00:00 1.0 1161083859 44 hope you all have gained from this over 1 hour pump as planned thanks to outside investors we had plenty of time to close our buy and sell positions soon we will give you the information for the next pump remember to share the link to the channel to get as many users as possible the more we are the more successful the pump will be 2021-02-15 16:47:08+00:00 1.0 1161083859 39 pump start gasbtc exchange binance pair gas btc start time 1500 utc timeframe 1 hour pump xtime 1600 utc 2021-02-15 15:00:09+00:00 1.0 1161083859 38 1 hour left date 15 feb 1500 utc exchange binance pair soon revealed btc timeframe 1h countdown page +pumpfontslab 2021-02-15 14:00:11+00:00 1.0 1161083859 36 latest checks choosing the best cryptocurrency for the pump 6 hours left date 15 feb 1500 utc exchange binance pair soon revealed btc timeframe 1h countdown page +pumpfontslab 2021-02-15 08:57:41+00:00 1.0 1161083859 35 next crypto pump date 15 feb 1500 utc exchange binance pair soon revealed btc timeframe 1h countdown page +pumpfontslab 2021-02-13 14:34:31+00:00 1.0 1161083859 34 hope you all have gained from this over 1 hour pump as planned thanks to external investors we had plenty of time to close our buy and sell positions soon we will give you the information for the next pump remember to share the link to the channel to get as many users as possible the more we are the more successful the pump will be 2021-02-12 16:50:10+00:00 1.0 1161083859 29 sfpbtc exchange binance crypto pair sfp btc start time 1500 utc pump xtime 1600 utc timeframe 1 hour 2021-02-12 15:00:07+00:00 1.0 1161083859 28 ❗️ in half an hour 1500 utc⏱ we will tell you the name of the cryptocurrency from that moment we will have 1 hour to build the curve that will take us to the pump xtime1600 utc those who have not understood how it works are invited to read point 5 of the pinned message how does it work ❗️ exchange binance crypto pair soon revealed btc start time 1500 utc pump xtime 1600 utc timeframe 1 hour 2021-02-12 14:30:04+00:00 1.0 1161083859 23 the pump will start on binance friday 12 february at 1500 utc and will use btc at that time with an official announcement we will communicate the name of the cryptocurrency and the duration of the pump 2021-02-08 09:32:38+00:00 1.0 1161083859 13 how does it work info page italian info page french info page spanish faq page follow these steps to understand how pump is organized 1 a few days before the pump the crypto pumping org team will analyze the various markets and decide which cryptocurrency to choose for the pump based on various factors trend volume strength etc for example a cryptocurrency that is not in the middle of a crash or any other sharp move in this way we will all benefit from the positive trend by increasing it even more 2 the official announcement will be published with the cryptocurrency chosen for the pump and his established xtime xtime is the official time of the pump and will always be from a minimum of half an hour to a maximum of 3 hours after the publication of the chosen cryptocurrency eg the announcement was created at 0300 pm indicating eos as the cryptocurrency and 0600 pm as the pump xtime so we will all have 3 hours to build the buying curve before xtime 3 from the moment of the announcement you should not buy large quantities of the cryptocurrency but small quantities at regular intervals for example a few dollars every 510 minutes without selling in this way we will begin to create a homogeneous green wave that will accompany us to the xtime without any stress during the creation of the wave external investors unaware of the planned pump who have noticed the positive trend will join and start buying it will be their orders that will allow us all to generate a profit remember they do not know when to enter and when to exit the market but we do arrived at xtime we can choose to buy again or wait for external investors to do it for us by inflating the price even more a few minutes after xtime we can start selling but beware as for purchases we must start selling slowly by closing the last orders placed at the highest price and gradually the others at regular intervals in this way we will avoid panic and generate profits subsequently after the sales curve we can even choose to reenter the market by buying other small quantities in this way we will create the second green wave this will be decided after the outcome of the pump please see the example image published previously to understand how the waves are formed ❗️during the pump we will keep you constantly updated to optimize it so stay connected❗️ 2021-02-05 13:14:23+00:00 1.0 1161083859 9 our program what we do and what we dont do take your time to read the informations it is important to understand well here we do not organize flash pumps❌ but rather middleterm pumps✅ if you are interested in flash pumps there are other channels however we warn anyone interested that flash pumps are very risky and 100 of cases only generate profits to channel administrators flash pumps are based on the concept of providing the name of the pair to be tradedeg eosbtc at the last minute in this way thousands and thousands of users rush to the exchange and in a few seconds flood it with buy orders generating overloads that block the site and prevent others from doing any operation in this way general panic is created in the 2 minutes in which users flock to buy or sell no outside investor will be able to join the pump in this way the pump users will have to fight each other for a profit and many of them will end up losing money remember outside investors are key furthermore as if that were not enough the market of the chosen cryptocurrency is damaged after the flash pump the price hardly returns to the immediately previous value but rather decreases and tends to stall in fact outside investors of that cryptocurrency will hardly return to invest immediately in the face of such obvious manipulation to overcome the problems listed above we only organize mcd middleterm cryptocurrency pump✅ but what is a middleterm cryptocurrency pump is the planning of a mass purchase of a certain cryptocurrency over a period of time not exceeding 3 hours and not less than half an hour basically from the moment of the announcement free and with all the details you will have from half an hour to 3 hours before the official pump time in this way we tend to create three fundamental factors 1️⃣ a more homogeneous buying wave that will involve outside investors who will solve our buy and later sell orders 2️⃣ we do not generate overloads on the exchange so that everyone can place orders avoiding panic 3️⃣ thanks to the limited time period the news of the organized pump will circulate but in a limited way in this way the scheduled pump will be powered without uncontrolled alterations 2021-02-05 10:32:42+00:00 1.0 1250076602 1519 big pump happening tomorrow in the kucoin pump server those looking to make great gains during this upside down for btc need to join join here ➡️ kucoinpumps ➡️ kucoinpumps ➡️ kucoinpumps 2022-01-08 00:06:03+00:00 1.0 1250076602 1516 pump result 350 btc volume which is close to 17 million we had a initial peak of 70 and got sold on by outsiders luckily our team decided to bring the price back up for all our members back up to the initial peak of 70 which gave all our members the opportunity to make 6070 profit 2 times during the pump there was also many waves that allowed everyone to make profit multiple times overall it was a great pump as we managed to maintain top position on binance for 22 minutes if we had not been faced with that amount of sell pressure we could have defintely hit 200+ thank you all for participating we have something big to announce really soon that everyone will want to stick around for as well stay tuned 2022-01-02 17:50:58+00:00 1.0 1250076602 1511 the coin we have picked to pump today is nebl nebl is looking perfect for a massive pump right now 2022-01-02 17:00:07+00:00 1.0 1250076602 1510 5 minutes left the next message will be the coin to buy 2022-01-02 16:55:06+00:00 1.0 1250076602 1509 15 minutes left until the big pump on binance be ready 2022-01-02 16:45:00+00:00 1.0 1250076602 1507 2 hours left until the massive pump on binance be prepared 2022-01-02 15:00:21+00:00 1.0 1250076602 1506 3 hours remaining until the big pump on binance 2022-01-02 14:01:57+00:00 1.0 1250076602 1505 5 hours left until the biggest pump signal of all time our target will be 500+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2022-01-02 11:59:58+00:00 1.0 1250076602 1504 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2022-01-01 17:08:39+00:00 1.0 1250076602 1503 3 days left until the big pump on binance 2021-12-30 14:45:19+00:00 1.0 1250076602 1502 8 days remaining until the big pump on binance merry christmas everyone we wish you all the best 2021-12-25 15:12:29+00:00 1.0 1250076602 1500 pump announcement hello everyone the next official pump will be scheduled for date sunday january 2 time 1700 pm gmt exchange binance advantage free for all official target 500+ with the success of our previous pumps and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 30 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 21 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we will start the year of 2022 with a massive pump that all our members can profit from substantially we have 21 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will do everything in our power to surpass the 500 profit mark this time to start the year of 2022 with a really nice pump be prepared the wait will be worth it we will be giving out more information when we are closer to the pump date stay tuned 2021-12-12 15:51:14+00:00 1.0 1250076602 1499 next kucoin pump will be announced soon how to pump on kucoin guide the last 5 pumps average 1000 gain with over 30m volume combined to see the full history of pump results and more details about our group join the main channel below join here ➡️ kucoinpumps ➡️ kucoinpumps ➡️ kucoinpumps 2021-12-09 18:30:29+00:00 1.0 1250076602 1498 pump result amazing pump considering the fact that we did it while btc was going down close to 500 btc volume on phb which is more than 27 million the pump lasted a good amount of time which allowed our members to make profit multiple times during the pump we also gave the signal at the bottom which is something we always try to do to maximize the gain potential for all our members on the 3rd minute we managed to go back to our first candles high which gave everyone that bought the dip a potential to make a quick 50 on top of their previous profit overall we are happy with the results but definitely we would have liked to see a much higher gain like our previous pump the next pump we will make sure that we hit a much higher gain while making the pump last very long as well congrats to those who participated and made good profits stay tuned for our next official announcement 2021-11-28 18:12:03+00:00 1.0 1250076602 1495 the coin we have picked to pump today is phb phb is looking perfect for a massive pump right now 2021-11-28 17:00:05+00:00 1.0 1250076602 1494 5 minutes left the next message will be the coin to buy 2021-11-28 16:55:03+00:00 1.0 1250076602 1493 15 minutes remaining until the big pump be ready 2021-11-28 16:45:54+00:00 1.0 1250076602 1492 15 minutes remaining until the big pump be ready 2021-11-28 16:45:54+00:00 1.0 1250076602 1490 1 hour left until the big pump on binance our target today will be 400+ 2021-11-28 16:00:23+00:00 1.0 1250076602 1489 2 hours left until the massive pump on binance 2021-11-28 15:01:07+00:00 1.0 1250076602 1488 3 hours and 40 minutes remaining until the pump on binance be prepared 2021-11-28 13:20:48+00:00 1.0 1250076602 1487 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-28 11:00:11+00:00 1.0 1250076602 1486 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-27 17:00:01+00:00 1.0 1250076602 1485 2 days remaining until the big pump on binance 2021-11-26 16:18:05+00:00 1.0 1250076602 1484 pump announcement hello everyone the next official pump will be scheduled for date sunday november 28 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 5 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-23 16:48:02+00:00 1.0 1250076602 1483 its time to buy bitshiba again very big news is coming soon by the way we are aware that all of our members are waiting patiently for our next big pump we will be scheduling our next pump very soon possibly this upcoming week stay tuned for our official announcement buy bitshiba contract address 0xb84cbbf09b3ed388a45cd875ebba41a20365e6e7 buy on pancakeswap click here live chart click here telegram tmebitshibatoken 2021-11-18 15:00:41+00:00 1.0 1250076602 1473 pump result amazing pump with more than 280 btc volume which is close to 18 million in volume with a peak of 130 that lasted more than 3 minutes we managed to surpass the first 2 initial candles which means all members that bought within the first 2 minutes were at the very least holding mth with massive profits on the 3rd candle we also had multiple big waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-07 17:47:23+00:00 1.0 1250076602 1470 the coin we have picked to pump today is mth mth is looking perfect for a massive pump right now 2021-11-07 17:00:04+00:00 1.0 1250076602 1469 5 minutes left the next message will be the coin to buy 2021-11-07 16:54:55+00:00 1.0 1250076602 1467 30 minutes left until the big pump on binance 2021-11-07 16:30:01+00:00 1.0 1250076602 1466 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using the btc pairing for the pump be prepared 2021-11-07 16:00:01+00:00 1.0 1250076602 1465 2 hours and 50 minutes remaining until the big pump on binance the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-07 14:09:56+00:00 1.0 1250076602 1464 4 hours left until the big pump on binance 2021-11-07 13:00:26+00:00 1.0 1250076602 1463 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-07 11:00:03+00:00 1.0 1250076602 1462 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-06 17:00:00+00:00 1.0 1250076602 1461 2 days left until the big pump on binance be prepared 2021-11-05 14:30:36+00:00 1.0 1250076602 1459 4 days remaining until the big pump on binance 2021-11-03 13:56:14+00:00 1.0 1250076602 1457 pump announcement hello everyone the next official pump will be scheduled for date sunday november 7 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 20 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-11-01 15:49:07+00:00 1.0 1250076602 1456 pump result amazing pump with around 350 btc volume which is around 21 million the pump started out nicely and managed to hold its peak for around 2 minutes straight before making a wave down and making multiple waves which allowed our members to make profits multiple times we managed to hold top gainer on binance for a good amount of time as well we are receiving a lot of positive feedback from our members and we are glad a lot of members managed to make a good amount of profit we will be announcing the next official pump date soon stay tuned 2021-10-31 18:07:34+00:00 1.0 1250076602 1451 the coin we have picked to pump today is ez ez is looking perfect for a massive pump right now 2021-10-31 17:00:05+00:00 1.0 1250076602 1449 5 minutes left the next message will be the coin to buy 2021-10-31 16:55:04+00:00 1.0 1250076602 1447 30 minutes left until the big pump 2021-10-31 16:29:23+00:00 1.0 1250076602 1446 55 minutes left until the big pump on binance 2021-10-31 16:06:16+00:00 1.0 1250076602 1445 1 hour and 55 minutes remaining until the big pump the market is crazy today this pump will be massive be prepared 2021-10-31 15:05:45+00:00 1.0 1250076602 1444 4 hours left until the big pump on binance 2021-10-31 13:02:11+00:00 1.0 1250076602 1443 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-31 11:02:39+00:00 1.0 1250076602 1442 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-30 17:07:27+00:00 1.0 1250076602 1440 3 days left until the big pump on binance 2021-10-28 13:02:59+00:00 1.0 1250076602 1439 pump announcement hello everyone the next official pump will be scheduled for date sunday october 31 time 1700 pm gmt exchange binance advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we expect our upcoming pump to be massive after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 6 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 6 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-10-25 16:42:47+00:00 1.0 1250076602 1437 pump result amazing pump over 300 btc volume which is around 20 million we managed to have 9 straight green 1 minute candles which is something we rarely see in any pumps lately meaning that anyone that has bought within the first 9 minutes has made a big amount of profit the many waves during the pump gave us many opportunities to make quick gains multiple times for 30 minutes straight as well which is why we always recommend riding the waves and trading the pump actively the price is currently still holding high and is still top gainer on binance overall it is a very big success for us and we hope many of you managed to capitalize on this great pump you can expect our next pump to be much bigger we will make the official announcement soon stay tuned 2021-10-24 17:39:47+00:00 1.0 1250076602 1432 the coin we have picked to pump today is evx evx is looking perfect for a massive pump right now 2021-10-24 17:00:07+00:00 1.0 1250076602 1430 5 minutes left the next message will be the coin to buy 2021-10-24 16:54:55+00:00 1.0 1250076602 1429 15 minutes left until the massive pump on binance 2021-10-24 16:44:54+00:00 1.0 1250076602 1428 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes be prepared this is the pump you will not want to miss our official target will be 400+ 2021-10-24 16:00:02+00:00 1.0 1250076602 1427 2 hours left until the big pump on binance 2021-10-24 15:00:00+00:00 1.0 1250076602 1426 4 hours remaining until the big pump on binance be prepared 2021-10-24 13:00:03+00:00 1.0 1250076602 1425 6 hours left until the biggest pump signal of all time everything is looking perfect for a massive pump today our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-10-24 11:00:03+00:00 1.0 1250076602 1424 the big day has arrived 24 hours remaining until the biggest pump signal of all time the target this time will be around 400 gains possibly even more we will be targeting 100 million volume with the bull market being in full effect and volumes being high the odds of reaching 400 profit will be very high once again we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-10-23 17:00:11+00:00 1.0 1250076602 1423 3 days left until the big pump on binance btc has broken the all time high and a lot of new money is coming into the market the market conditions are currently perfect for a massive pump be prepared 2021-10-21 14:53:51+00:00 1.0 1250076602 1420 5 days remaining until the big pump on binance this pump will be massive make sure to be well prepared we will be giving more directives in the upcoming days before the pump 2021-10-19 14:35:47+00:00 1.0 1250076602 1418 7 days left until the big pump on binance 2021-10-17 14:50:22+00:00 1.0 1250076602 1413 pump announcement hello everyone the next official pump will be scheduled for date sunday october 24 time 1700 pm gmt exchange binance advantage free for all bitcoin is nearing the all time high and its officially time for big pump once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 12 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have 12 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching this pump will be massive as we will be trying to break the 100 million volume we have always tried to do stay tuned this pump will be dedicated to making all our members profit up to 400 + as our team will do everything in their power to make sure that our official target is reached stay tuned for further updates in the next 12 days leading up to the pump 2021-10-13 00:40:37+00:00 1.0 1250076602 1359 lon kucoin pump results start price 967 at signal peak price 455999 peak gain 47156 this was by far the biggest and best pump ever done on kucoin the percent gain was an incredible 47156 thats not a typo 47k gain pump volume reached over 36 million which is also our highest ever today we employed a unique strategy to beat market making bots and attract outsiders it worked flawlessly besides the impressive stats the feedback and support from members is what makes this pump special over 90 of the responses were of profit with some extreme profits mixed in a special thanks to all of you for making today incredible we work hard to have the best pumps possible and promise we will always do things to set us apart from any other groups thank you for being here 2021-09-26 15:08:12+00:00 1.0 1209949153 13766 btw guys adding 15 buy on snx i feel like this good coin is behind alot that is a heavy buy it is for hold purposes ill swap some of my too big ada holding for it 05 ada snx same can be said for bnt pumped bit already we are 5 up now i expect a sudden pump is plausible on this one 2021-11-02 18:58:26+00:00 1.0 1209949153 13293 on the dot 1 by 1 we gain profits on the alts sold 15 dot here at 39 idc what is coming i always sell a part when we pump so much this is 15 2021-10-13 18:07:31+00:00 1.0 1209949153 8549 okay everyone todays update will be about pump and dumps since it is a hot topic the basis of a pump and dump channel is simple channel owner buys the coin he wants to pump in few days or just before he opens sell orders after that it is posted in the channel for the world to see the coin pumps but the channel owner is only selling at this point most people are rekt the channel owner is not and the bots who bought early probably made a bit too in general a place to stay away from also for moral reasons anyway now with wallstreetbets we are seeing a new phenomenom because they actually do pump the coin i wonder how long that will last though ofcourse we all saw the dogecoin pump i was very skeptical because in the past other pump and dump groups have tried the same and were all just cashing out their own buys so i did not bother buying anything and i even shorted at some point i was lucky because it did go down but it went upwards from there again i am kind of amazed that the price is still high i read about the xrp pump the 29th and told everyone in vip chat channel that id buy 10k for a quick 1020 well this quick 1020 was made the same day it now went to x3 to be fair i am kind of amazed but i think this phenomenom will turn around soon so i want you all to be very careful if wsb posts another of these pump in few days coins i will buy a bit this time too and set my sell orders around 20 that is enough for me maybe hold 20 for a x2 since you made that amount i think this is the best way to approach the situation for now because i think these 2 succesful pumps will initiate a prepump the next time wsb posts this message meaning that people will be pumping it selling it there too and might open more sell orders this time it will be harder for them to pump the coin x2 also if you are late when you see that the pump has already happened do not buy spare yourself it is a good way to lose a lot of money do not fomo its either joining in early or not joining at all there is no other option 2021-02-01 12:55:30+00:00 1.0 1209949153 8051 finally eth shows its strength i am happy that we swapped btc for eth it now is where it was before at the previous ath and it will probably pump on from here do not sell your eth meanwhile btc dominance is dropping it is now 66 i wonder if it will hold this sidelining inside of the triangle is good for alts there still is some room left eos hasnt moved that much yet maybe bag that coin now 2021-01-19 10:59:21+00:00 1.0 1209949153 7405 what is up with xtz beautiful coin imo good ideas where is the price pump adding this too this means i am swapping 5 usdt wallet to these alt coins 60usdt 25 btc 8 eth 2 link 1 zec 2 xtz 2 ripple 2020-12-27 15:50:55+00:00 1.0 1209949153 3596 small update on btc after a big pump yesterday it is now going down correcting slowly reaching 07 fibonacci 2020-08-18 10:11:26+00:00 1.0 1209949153 1968 the last times this happened btc did a major pump to r3+ or dumped to s3+ lets not trust on the fibonacci pivotpoints too much today the 2 calls i made yesterday are still up it suprises me that btc is still between 97309600 dont think this will keep up for long altcoins are growing as to be expected when going sideways 2020-06-07 08:18:51+00:00 1.0 1209949153 1630 in 2 minutes 0000 we always saw some fireworks between 00000005 we broke out of a smaller but sharp descending triangle so could pump a bit from here and dump right after i stay out of this one 2020-05-26 21:59:30+00:00 1.0 1209949153 1542 in 3 minutes the daily closes we can expect a pump or dump 2020-05-23 23:57:35+00:00 1.0 1209949153 160 keep an close eye if you entered 69456949 its been called now after reaching 6949 in a big pump group so it might go on 2020-04-12 14:18:31+00:00 1.0 1457078947 1788 bitcoin drops from 59k to 53 top alt coins going down as well ❓sell or hold bitcoin buy or sell altcoins is this a fake pump or not what should i do next panic if all these questions are spinning in your head and you dont know the answer subscribe to our vip services damianclassics 2021-04-18 06:39:51+00:00 1.0 1457078947 1751 bitcoin drops from 59k to 56 top alt coins going down as well ❓sell or hold bitcoin buy or sell altcoins is this a fake pump or not what should i do next panic if all these questions are spinning in your head and you dont know the answer subscribe to our vip services damianclassics 2021-04-08 13:26:20+00:00 1.0 1457078947 1703 bitcoin drops from 59k to 53 top alt coins going down as well ❓sell or hold bitcoin buy or sell altcoins is this a fake pump or not what should i do next panic if all these questions are spinning in your head and you dont know the answer subscribe to our vip services damianclassics 2021-03-23 12:45:49+00:00 1.0 1198780255 1319 dear members we are currently analyzing the market for our next potential pump coin once we have found the perfect opportunity we will schedule our next pump stay tuned the pump team 2022-01-14 20:05:00+00:00 1.0 1198780255 1306 dear members great pump again the peak was over 280 lasted over 60 minutes the volume in the first hour of the pump was amazing over 60 btc or 3 million especially for a busy day like new years although we fell short of our target of 300 were proud to say there were several waves to profit from during the pump and as you know riding the secondary and third waves in our pumps are always profitable and we proved that today with gens we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement the pump team 2022-01-01 19:22:43+00:00 1.0 1198780255 1305 we always promise a second wave and thats what we got we are still sitting at over 140 profit 15 minutes into the pump congrats to everyone who participated 2022-01-01 18:14:49+00:00 1.0 1198780255 1301 the coin we have picked to pump today is gens usdt projected gain 300500 2022-01-01 18:00:04+00:00 1.0 1198780255 1300 5 minutes left the next message will be the coin to buy our profit target 2022-01-01 17:55:02+00:00 1.0 1198780255 1297 dear members 1 hour remaining until the kucoin pump a massive pump is about to happen in only 60 minutes we will be using usdt for the pump be prepared 2022-01-01 17:00:16+00:00 1.0 1198780255 1296 dear members 2 hours left until the pump this is a basic stepbystepstrategy for new members 1 ten minutes before 1800 pm gmt have kucoincom discord and telegram open 2 at exactly 1800 pm gmt there will a message including the name of a coin in the discord and telegram 3 after we announce the coin buy it with usdt on the spot market the pump team 2022-01-01 16:00:49+00:00 1.0 1198780255 1295 dear members exactly 3 hours and 30 minutes remain until the big pump on kucoin make sure you have usdt in your trading account to buy the coin more information on the strategy will follow 2022-01-01 14:30:09+00:00 1.0 1198780255 1292 dear members exactly 24 hours until the kucoin pump signal tomorrow at exactly 1800 pm gmt the coin will be announced both in the discord and telegram like mentioned before each application has some latency of its own so we recommend having both the telegram and discord open for the pump more information on the strategy of tomorrows pump will follow the pump team 2021-12-31 17:59:53+00:00 1.0 1198780255 1291 dear members 2 days left until the kucoin pump signal we are getting a lot of questions regarding the trading pair during the pump we will be using the usdt trading pair example if the coin is xxx buy the coin with usdt on the xxxusdt market this also means you must have available usdt in your trading account more information will follow as we get closer to the pump date be prepared the pump team 2021-12-30 18:01:49+00:00 1.0 1198780255 1289 dear members 3 days left until the kucoin pump with all social media channels combined our network has over 230000 members we might all be small investors but we have an insane social media presence in exactly 72 hours we will coordinately buy hype and push up the price of a coin join our discord for an extended explanation of the strategy be prepared the pump team everyone 2021-12-29 18:00:47+00:00 1.0 1198780255 1286 dear members after the great success of our last pump on modefi weve received thousands of messages asking when our next pump would take place normally we would take breaks from pumping during the holiday season but the altcoin markets are looking primed for a pump and we wouldnt want this opportunity to go to waste there is a lot of demand so we decided to schedule a pump next week exact details exchange kucoin date 1january2022 time 1800 pm gmt we have exactly 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group and will top our previous ones in terms of gain with our great track record we highly recommend participating in this pump the pump team everyone 2021-12-25 18:57:27+00:00 1.0 1198780255 1284 hello everyone we know alot of people are patiently waiting for our next pump we are currently analyzing the market and looking for the best opportunities our pump announcement will come shortly meanwhile feel free to invite people to our group the buy power in the modefi pump was amazing and we expect our next pump to have even more volume and action which means even better results and more profits for everyone if you have any questions feel free to ask us while our team is preparing for the next pump happy holidays be prepared 2021-12-22 20:32:59+00:00 1.0 1198780255 1270 2 days left until the big pump on kucoin be prepared 2021-12-03 18:57:06+00:00 1.0 1198780255 1269 exactly 3 days remaining until the kucoin pump there is still some ambiguity about the exchange and pairing we are using to pump on sunday therefore i will clarify which exchange we are using for this pump we will use kucoin we specifically chose kucoin because pumping on this exchange is more effective and easier to coordinate finally the coin we will be pumping will only have a usdt pairing which means you must have usdt in your trading account more information will follow 2021-12-02 19:06:04+00:00 1.0 1198780255 1268 4 days remaining until the big pump on kucoin 2021-12-01 19:00:18+00:00 1.0 1198780255 1266 6 days remaining until the big pump on kucoin 2021-11-29 19:02:19+00:00 1.0 1198780255 1264 pump announcement hello everyone thank you for waiting patiently for our announcement we are finally announcing the date of our next kucoin pump it will be scheduled for date sunday december 5th time 1900 pm gmt exchange kucoin advantage free for all with the success of our previous pump and the bull market being into full effect we are officially ready to announce our next big pump with our volumes averaging 4 to 7 million per pump and peaks reaching up to 500 we expect our upcoming pump to be massive after the previous kucoin pump on modefi and hours of discussion with our team we have decided to schedule our next pump in exactly 7 days to make sure that we are fully prepared our overall member count has exploded crypto markets are rising and the pumping scene is ready for its return to glory we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for we have 7 days to prepare for this massive pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain with our great track record we highly recommend participating in this pump more information to come the pump team everyone 2021-11-28 19:02:37+00:00 1.0 1198780255 1258 pump result amazing pump with more than 42 million usdt in volume with a peak of 391 that lasted more than 15 minutes on kucoin we managed to hit our profit expectation of 200500 perfectly and were glad everyone participated there were multiple waves that allowed our members to make profit many times during the pump as mentioned in our previous post today we also gave the signal at the absolute bottom to make sure that all our members have a fair chance of buying at a good price which is why there the price was declined prior to the signal overall we can safely say that this pump was a success and that the upcoming one will be much bigger we are also seeing a lot of positive feedback across all social medias for the pump and we are glad to know many members managed to make a massive profit on this pump stay tuned for our next announcement 2021-11-21 19:18:03+00:00 1.0 1198780255 1254 the coin we have picked to pump today is modefi usdt projected gain 200400 2021-11-21 18:00:08+00:00 1.0 1198780255 1253 5 minutes left the next message will be the coin to buy our target 2021-11-21 17:55:16+00:00 1.0 1198780255 1251 30 minutes left until the big pump on kucoin 2021-11-21 17:31:42+00:00 1.0 1198780255 1250 1 hour remaining until the big pump a massive pump is about to happen in only 60 minutes we will be using usdt for the pump be prepared 2021-11-21 17:01:25+00:00 1.0 1198780255 1249 2 hours remaining until the big pump on kucoin the market is amazing and our coin is very bottomed which means the potential for profits will be much bigger we have all the perfect conditions to execute a massive pump be prepared 2021-11-21 16:00:10+00:00 1.0 1198780255 1248 3 hours left until the big pump on kucoin make sure you have usdt in your trading account to buy the coin 2021-11-21 15:01:23+00:00 1.0 1198780255 1247 4 hours left until the biggest kucoin pump signal of all time everything is looking perfect for a massive pump today our target will be 500+ profit on kucoin we will be using the kucoin exchange to pump we will be using the usdt pairing to pump make sure you have usdt in your trading account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will be buying with our members to support the price there will be a lot of possibilities to profit during the pump millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible for more information refer to in our discord this will be one of the biggest pump we have ever done and possibly our best pump to date be ready 2021-11-21 14:00:37+00:00 1.0 1198780255 1245 the big day has arrived 24 hours remaining until the biggest kucoin pump of all time the target this time will be around 500 gains possibly even more with the bull market being in full effect and volumes being high the odds of reaching 500 profit will be very high once again our last pump did over 360 and since then weve grown by well over 30000 traders we will do everything in our power to make sure we reach this target if you have missed our previous big successful pumps this is also the one you will not want to miss a massive pump is about to begin in only 24 hours be prepared 2021-11-20 19:17:24+00:00 1.0 1198780255 1244 2 days left until the big pump on kucoin be prepared 2021-11-19 19:10:32+00:00 1.0 1198780255 1243 3 days remaining until the kucoin pump date sunday november 21st time 1800 gmt exchange kucoincom pair usdt our network of over 10+ communities channels have experienced huge growth since our last pump on gens and we fully expect this pump to be one of the biggest ever our past pumps have proven to be the most fair and boast huge profits time and time again and we expect this pump to be no different be prepared more information to come 2021-11-18 19:16:20+00:00 1.0 1198780255 1236 5 days remaining until the big pump on kucoin 2021-11-16 18:44:49+00:00 1.0 1198780255 1227 ️pump announcement️ hello everyone the next official pump will be scheduled for date sunday november 21st time 1800 gmt exchange kucoincom after the previous pump on gens which is still up over 60 profit weeks later and hours of discussion with our team we have decided to schedule our next pump in 7 days to make sure that we are fully prepared our main goal for this pump will be to make sure that every single member in our group makes a massive profit just like they did on gens our last pump made our members over 300 profit and with the current market sentiment we believe sundays pump will bring in more than 300500 profit the entire world will be watching as over 80000 traders collaboratively work together to push the price up gaining global attention and market fomo more information to come the pump team 2021-11-14 19:13:47+00:00 1.0 1407454871 1285 next pump will be rsr dont miss it 2021-11-08 15:35:43+00:00 1.0 1407454871 1268 buy and hold ata guys big pump is programmed ‍ 2021-11-07 09:05:23+00:00 1.0 1407454871 1217 you will see a big pump from lit keep holding and enjoy profit 2021-10-30 08:12:32+00:00 1.0 1407454871 429 were buying more tomo now expect a big pump today 2021-08-10 06:34:59+00:00 1.0 1407454871 311 near ready to pump first target will soon hit 2021-08-02 18:12:01+00:00 1.0 1258049399 1965 i have found a gem coin that is way under valued dont miss this opportunity to make money this coin gonna pump hard 200 is the minimum gain pick it up here btc 2020-01-27 15:56:29+00:00 1.0 1258049399 1919 our experts choosed best strong tafa coin we will share here the targets of that coin for short term only 5 minutes to go❗️ global fomo warming up next post will be strong ta call login binance and keep an eye here 2020-01-20 15:56:36+00:00 1.0 1258049399 1327 only 5 minutes to go global fomo warming up next post will be the breakout coin name be very ready guys login binance and keep an eye here 2019-11-16 04:55:03+00:00 1.0 1258049399 1322 3 hours left 1 set buy walls when the eventsignal is going on when the coin is up lets say 50 start setting buy walls just under the market price a lot of outsiders will act on buy walls and will fomo in buy walls are a great tool to keep the pump more alive and maximize profits 2 as a channel memeber you are requested to avoid puting sell walls do active promotion on twittertelegram crypto groups etc 3 lets together promote this signalevent doing our part and attract every small big trader into this event and give a win win to everyone 4 never panic sell staytuned and be ready team 2019-11-16 02:03:20+00:00 1.0 1258049399 1312 dear members 2 days left until our next binance pump our goal saturday will be to trigger a reaction from outsiders saturday after we post the coin signal the price will went up really fast this will get the coin trending bring many more outsiders into the pump and create bigger waves directives be ready to buy quickly when the coin signal is given we have thousands of members trading at once and the price will go up very fast the best way to buy is to buy at market price using the 75 option in the market tab not 100 because the price will have already go up and wont work the earlier you buy in the better if you are too late to buy and the price has risen alot already it is recommended to sit it out it is preferable trading on the binance desktop app because the amount of volume we will generate might make the binance browser slower ° please notice that we still got 20 discount on vip untill our pump of saturday • if you got any questions regarding our pumps feel free to ask us camptrades 2019-11-14 11:30:58+00:00 1.0 1258049399 1309 big pump event guys our team has decided to organise a win win opportunity where you can all profit date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event 2019-11-13 15:17:00+00:00 1.0 1258049399 1301 big pump event guys our team has decided to organise a win win opportunity where you can all profit date the 16th of november time 0500 gmt exchange binance target 5070 saturday we will share a breakout coin with 5070 so be ready with your btc on binance and dont miss the big pump event more than 300k people are going to join this pump event 2019-11-12 12:00:07+00:00 1.0 1258049399 1173 only 5 minutes to go next post will be the coin name be very ready guys login binance and keep an eye here 2019-10-15 19:54:15+00:00 1.0 1258049399 1172 10 minutes left login to binance now have everything ready the trick to make some amazing profits is to be focused and ready to buy fast 2019-10-15 19:49:11+00:00 1.0 1258049399 1171 those who wants to make some profit be ready by your computer only 20 minutes left the coin name will be in text 2019-10-15 19:40:34+00:00 1.0 1258049399 1170 1 hour left before the pumpmake sure you help promote the coin during the pump 2019-10-15 19:06:31+00:00 1.0 1258049399 1168 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-15 13:02:56+00:00 1.0 1258049399 1163 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-14 21:38:58+00:00 1.0 1258049399 1153 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-12 16:01:11+00:00 1.0 1258049399 1148 pump announcement next pump tuesday 15 october 2000 gmt exchange binancecom pairing btc bitcoin is doing great and giving us amazing opportunities to pump if you want to receive the coin name 15s earlier on the vip channel contact camptrades 2019-10-11 21:47:22+00:00 1.0 1417499112 654 3 days left until the big pump on binance 2021-09-16 15:43:51+00:00 1.0 1417499112 653 pump announcement hello everyone next official pump will be scheduled for date sunday sep 19 time 1700 pm gmt exchange binance 40 whale channels target 50 to 200 profit for premium coin earlier contact forgoodnisss with our volumes average 20 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump our main goal for this pump will be to make sure that all our member make a massive profit to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-09-14 16:05:19+00:00 1.0 1417499112 652 less than 3 days left to buy vip of next pump contact forgoodnisss 2021-08-26 22:24:39+00:00 1.0 1417499112 651 pump announcement hello everyone next official pump will be scheduled for date sunday august 29 time 1700 pm gmt exchange binance 40 whale channels target 200 to 500 profit for vip premium coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the successful previous pump and discussion with our team we have decided to schedule our next pump on aug 29 to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to buy vip of next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-08-22 20:25:34+00:00 1.0 1417499112 650 pump result another amazing pump with 150 gain potential and a massive amount of volume in the first few minutes around 27 million there was a lot of waves during the pump which made it possible to make profits multiple times in the first 15 minutes although our previous pump had a bigger peak and lasted a lot longer we can safely say that this pump was still great once again the amount of appreciation and feedback we are recieving from members is absolutely massive right now and our team is happy to know that many members managed to make a big amount of profit we will be looking to replicate the massive result we had in the previous pump once again in our upcoming pump expect much bigger results stay tuned for our next announcement 2021-08-22 20:25:32+00:00 1.0 1417499112 648 2 days remaining until our biggest pump signal of all time be prepared for vip premium coin earlier contact forgoodnisss 2021-08-13 15:38:02+00:00 1.0 1417499112 647 pump announcement hello everyone next official pump will be scheduled for date sunday august 15 time 1700 pm gmt exchange binance 40 whale channels last pump ez coin almost 400 target 200 to 500 profit for vip premium coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the successful previous pump and discussion with our team we have decided to schedule our next pump on aug 15 to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to buy vip of next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-08-08 17:30:15+00:00 1.0 1417499112 646 pump result amazing pump with almost x 4 started at 680 sat and reached 2650 the uptrend was great and we would have needed a lot more volume to break through our high targetswe could go even past 500 + but overall it was still very good as the pump held very high and the overall result was still good after this successful pump and much more volume coming in in our upcoming pump we can expect the same big result even with a higher percentage gain for all our members we are receiving thousands of messages of appreciation and we are glad to know that a lot of people made profit in this pump the next one will be much bigger stay tuned 2021-08-08 17:30:12+00:00 1.0 1417499112 644 1 hour left the biggest pump that ever happened on binance will happen in only 60 minutes our official target will be 400 profit + be ready 2021-08-08 16:01:23+00:00 1.0 1417499112 643 6 hours and few minutes left until the biggest pump signal of all time everything is looking perfect for a massive pump our target will be 400+ profit on binance we will be using the binance exchange to pump we will be using the btc pairing to pump make sure you have btc in your account to buy the coin hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible this will be one of the biggest pump we have ever done and possibly our best pump to date be ready for vip premium coin earlier contact forgoodnisss discount offer 0001 btc binancians1234 discount offer is only valid for today 2021-08-08 10:40:21+00:00 1.0 1417499112 642 the day has arrived 24 hours remaining until our biggest pump signal of all time everything looks perfect to reach our 500 target this time possibly even higher if we can manage to do 70 million volume again you can expect to make massive profits in this pump make sure to be prepared and ready for vip premium coin earlier contact forgoodnisss discount offer 0001 btc binancians1234 discount offer is only valid for this pump for 24 hours 2021-08-07 16:01:56+00:00 1.0 1417499112 641 pump announcement hello everyone the next official pump will be scheduled for date sunday august 8 time 1700 pm gmt exchange binance for premium coin earlier contact forgoodnisss the bull market is officially back which means its time for big pumps once again with our volumes averaging 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump to make sure that we are fully prepared this upcoming sunday on august 8 we will be pumping once again our main goal for this pump will be to make sure that every single member in our group makes a massive profit we will also try reaching more than 100 million volume in the first few minutes with a very high gain we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for with all the new measures that we are implementing we can almost guarantee that this upcoming pump will be massive we have enough days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous ones in terms of gain we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned 2021-08-01 15:24:08+00:00 1.0 1417499112 640 2 days remaining until our big pump on binance the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime binancians1234 date sunday august 1 time 1700 pm gmt exchange binance for premium coin earlier contact forgoodnisss website email supportbinanciansscom lifetime discount offer is back 50 discount 2021-07-30 16:04:29+00:00 1.0 1417499112 638 1 hour left until our big pump on binance be prepared 2021-07-25 15:59:17+00:00 1.0 1417499112 637 pump announcement hello everyone next official pump will be scheduled for date sunday july 18 time 1700 pm gmt exchange binance 40 whale channels telegram discord target 50 to 200 profit for premium coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump on july 11th to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 2021-07-11 17:21:38+00:00 1.0 1417499112 636 the coin we have picked to pump today is poa 2021-07-11 17:00:55+00:00 1.0 1417499112 635 5 minutes left the next message will be the coin to buy 2021-07-11 16:55:22+00:00 1.0 1417499112 632 1 hour left until our big pump on binance 2021-07-11 16:00:09+00:00 1.0 1417499112 631 1 day left until the biggest binance pump signal of all time for premium coin earlier contact forgoodnisss website email supportbinanciansscom binancians1234 2021-07-10 17:00:34+00:00 1.0 1417499112 628 pump announcement hello everyone next official pump will be scheduled for date sunday july 11 time 1700 pm gmt exchange binance +40 whale channels telegram discord target 50 to 200 profit for coin earlier contact forgoodnisss with our volumes average 40 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump on july 11th to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that all our member make a massive profit to join next pump contact forgoodnisss website email supportbinanciansscom on july 11th we will be pumping again with the same 100+ target we have mentioned before this time we will be taking all the extra and necessary measures to make sure we go past our target we will also try reaching more than 100 million volume in the first few minutes we welcome everyone to join us as we create the next big pump all traders and investors all over the world have been waiting for binancians1234 2021-07-05 06:14:47+00:00 1.0 1417499112 626 pump announcement hello everyone our next pump will be scheduled for date sunday june 27 time 1700 pm gmt exchange binance dear members we are sure that next pump will set new standards the volume will increase 23x and we expect a result of + 100 as we fixed server problem to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us binancians1234 cryptoghf tradingscryptocoachbackup stay tuned 2021-06-25 05:14:22+00:00 1.0 1417499112 624 pump announcement hello everyone our next pump will be scheduled for date sunday june 27 time 1700 pm gmt exchange binance dear members we are sure that next pump will set new standards the volume will increase 23x and we expect a result of + 100 as we fixed server problem to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us binancians1234 cryptoghf tradingscryptocoachbackup stay tuned 2021-06-20 17:31:02+00:00 1.0 1417499112 620 5 minutes left the next message will be the just the coin name to buy 2021-06-20 16:55:34+00:00 1.0 1417499112 619 1 hour left until the big pump on binance for coin earlier contact forgoodnisss stay tuned binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-20 16:01:34+00:00 1.0 1417499112 613 hello everyone after a very long discussion with our team we have decided to postpone our pump to protect all our members assets and make sure we are able to reach our 500 targetwe hope you can understand and appreciate that our decision is purely based on protecting our members and providing the best results possible in every pump we do we will announce the new date shortly stay tuned thanks for your patience understanding 2021-06-13 17:25:49+00:00 1.0 1417499112 612 5 minutes left the next message will be only the coin name to buy 2021-06-13 16:54:40+00:00 1.0 1417499112 609 1 hour left till pump attention make sure you have binance acc ready buy the coin using your bitcoins btc pair hundreds of thousands of traders will be buying at once make sure you buy early before outsiders and sell faster do not plan to use your whole balance you can buy using 10 or 25 of your balance initially at market price as it is high risk and pump dump may happen fast in few seconds 2021-06-13 15:59:39+00:00 1.0 1417499112 608 less than 6 hours left until our pump on binance date sunday june 13 today time 1700 pm gmt exchange binance to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 cryptoghf tradingscryptocoachbackup 2021-06-13 10:46:11+00:00 1.0 1417499112 604 2 days left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible reminder that will only be using the btc pairing to buy the coin you will need to have btc on binance to buy the coin stay tuned 2021-06-11 13:01:17+00:00 1.0 1417499112 603 2 days left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few hours before the pump in order for all our members to be prepared and make the most profit possible reminder that will only be using the btc pairing to buy the coin you will need to have btc on binance to buy the coin stay tuned 2021-06-11 13:01:13+00:00 1.0 1417499112 601 few hours and 5 days left till big binance pump date sunday june 13 time 1700 pm gmt exchange binance 5 days left coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss vip premium member contact forgoodnisss on june 13 we will be pumping again with the same 150+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 150 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us stay tuned binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-08 10:39:03+00:00 1.0 1417499112 600 pump announcement hello everyone next official pump will be scheduled for date sunday june 13 time 1700 pm gmt exchange binance 1 week left coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss with our volumes averaging 150 to 500 btc per pump and peaks reaching up to 150 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit vip premium member contact forgoodnisss on june 13 we will be pumping again with the same 150+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 150 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it we give you in the course of the next few days still precise instructions on how to make the most profits stay tuned binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-06 17:24:27+00:00 1.0 1417499112 597 10 minutes left the next message will be only the coin name to buy 2021-06-06 16:50:00+00:00 1.0 1417499112 595 only 1 hour left till pump attention make sure you have binance acc ready buy the coin using your bitcoins btc pair hundreds of thousands of traders will be buying at once make sure you buy early before outsiders and sell faster do not plan to use your whole balance you can buy using 10 or 25 of your balance initially at market price as it is high risk and pump dump may happen fast in few seconds 2021-06-06 15:59:19+00:00 1.0 1417499112 594 less than 11 hours left until our pump on binance date sunday june 6 today time 1700 pm gmt exchange binance to join next pump contact forgoodnisss website email supportbinanciansscom binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-06-06 06:11:19+00:00 1.0 1417499112 592 important announcement members here those who purchased the monthly membership can now become lifetime member ✅ by paying only 50 limited period offer notediscount offer is only for members who already paid monthly and want to upgrade next pump announcement date sunday june 6 time 1700 pm gmt exchange binancecom to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it with us stay tuned 2021-05-31 19:19:03+00:00 1.0 1417499112 591 pump announcement hello everyone our next pump will be scheduled for date sunday june 6 time 1700 pm gmt exchange binancecom dear members we are sure that this pump will now set new standards the volume will increase 23x and we expect a result of + 500 to join next pump contact forgoodnisss our website email supportbinanciansscom make sure that you also profit of it we give you in the course of the next few days still precise instructions on how to make the most profits stay tuned 2021-05-30 18:49:11+00:00 1.0 1417499112 590 pump result amazing pump with more than 500 btc volume which is amazing in this market we hit the peak almost 1 minute after the signal was given which gave enough time for members to make profit our volume is still very big despite the short term market sentiment and the recent btc drop specially after having not pumped for 1 week we can say for sure that we are back and hopefully with the market starting to recover you can expect the next one to be much bigger we will be taking all the necessary precautionary measures on the next pump in order to make sure the signal is given at the absolute bottom as well the next pump will be massive stay tuned for our next announcement 2021-05-30 18:36:43+00:00 1.0 1417499112 587 5 minutes left the next message will be just the coin name we will be using the btc pairing to pump make sure you have btc in your account to buy the coin 2021-05-30 16:55:16+00:00 1.0 1417499112 584 1 hour remaining until the big pump on binance 2021-05-30 15:59:40+00:00 1.0 1417499112 582 pump announcement date sunday may 30 time 1700 pm gmt exchange binance coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss 2021-05-29 12:10:49+00:00 1.0 1417499112 580 pump announcement hello everyone next official pump will be scheduled for date sunday may 30 time 1700 pm gmt exchange binance 6 days left coin earlier of pump contact forgoodnisss forgoodnisss forgoodnisss with our volumes averaging 70 to 80 million per pump and peaks reaching up to 450 we are ready to announce our next big pump we are ready to pump again as we expect the altcoin market to recover a lot in the upcoming weeks after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 8 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit vip premium member contact forgoodnisss on may 30 we will be pumping again with the same 500+ target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for binancians1234 cryptoghf tradingscryptocoachbackup thebinancians 2021-05-24 19:23:31+00:00 1.0 1417499112 579 dear members we have discussed all morning and we finally came to a decision as you all know we should have a pump tonight however we will postpone the pump to next week sunday 2021 may 30 5 pm gmt the experience teaches us that in day that bitcoins price droped significantly the pumps always turn out the be worse next pump date sunday may 30 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-23 16:47:00+00:00 1.0 1417499112 577 just 16 hours and few minutes left until our pump on binance date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-23 00:45:00+00:00 1.0 1417499112 574 note we still have binance pump as scheduled sunday date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-21 20:06:16+00:00 1.0 1417499112 571 the coin to pump is gsy exchange yobitnet target +500 market gsyeth current price 000000308 eth 12h 2021-05-21 18:59:07+00:00 1.0 1417499112 570 ℹ 10 min left until yobit pump pair eth not btc 2021-05-21 18:49:58+00:00 1.0 1417499112 569 ℹ 30 min left until yobit pump 2021-05-21 18:30:17+00:00 1.0 1417499112 568 ℹ 1 hour until yobit coin to buy is released ℹ exchange yobitnet yobitio make your yobit ready and after buy use yobit troll box chat 2021-05-21 17:59:45+00:00 1.0 1417499112 567 ℹ 1 hour until yobit coin to buy is released ℹ exchange yobitnet yobitio make your yobit ready and after buy use yobit troll box chat 2021-05-21 17:59:06+00:00 1.0 1417499112 566 just 8 h + 30 m left till yobit pump today date 21may2021 friday 7 pm 1900 gmttimezone 2021-05-21 10:28:23+00:00 1.0 1417499112 565 few hours and 3 days left until our pump on binance date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-20 07:07:32+00:00 1.0 1417499112 564 reminder we have 2 pumps less than 4 days left till binance pump date sunday may 23 time 1700 pm gmt exchange binancecom less than 2 days left till yobit pump date 21may2021 friday 7 pm gmttimezone pair eth 2021-05-20 00:19:34+00:00 1.0 1417499112 562 our upcoming +1000 pump event will be on yobitnet register here date 21may2021 friday 7 pm gmttimezone pair eth how does the pump work on 21 may we will post a coin name everyone will buy this coin at the same time leading the coin to pump to insane levels +1000 recent pump was +2112 our team will shill this chosen coin everywhere so we all can sell it to outsiders you should shill the coin too for even higher levels sell with profit invite everyone to this channel the bigger we are the better ✅ yobitnet yobitnet get 1700 free dollars ethereum eth exchange register now and get 1700 free dollars buy and sell ethereum eth on yobit exchange note we still have binance pump as scheduled sunday 23 details of next binance pump are already posted above 2021-05-19 08:04:36+00:00 1.0 1417499112 560 pump announcement hello everyone next official pump is scheduled for date sunday may 23 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit next week we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-05-16 17:53:01+00:00 1.0 1417499112 557 5 minutes left the next message will be only the coin name to buy 2021-05-16 16:55:26+00:00 1.0 1417499112 553 pump announcement hello everyone next official pump is scheduled for date sunday may 16 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit next week we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 6 days remaining until our big pump on binance more information about our upcoming pump contact forgoodnisss 2021-05-10 18:43:06+00:00 1.0 1417499112 549 important information everyone ❗ 2 hours left until the massive pump on kucoin ❗ get ready for a great pump on kucoin exchange today at 1800 gmt our qualitative analysts have selected the usdt pair with some fantastic coins awaiting for a huge pump make sure you have signed up on set your trading password to be able to trade and have usdt in your wallet the signal will be sent as text and link lets go 2021-05-08 16:00:32+00:00 1.0 1417499112 548 pump announcement saturday may 8th 1800 gmt 2 pm est exchange kucoincom pair usdt notice we will do 2 pumps weekly both binance and kucoin 2021-05-08 01:20:16+00:00 1.0 1417499112 545 pump announcement hello everyone next official pump is scheduled for date saturday may 1 time 1700 pm gmt exchange binancecom coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit next week we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-26 19:42:05+00:00 1.0 1417499112 543 pump result 795 btc volume in total with a peak of + 50 we have given the signal at the absolute bottom in order to make sure everyone has the best opportunity of buying at a low price we hope many of you managed to make decent profit as promised we reached our 50 target we will be doing something new in the next pump more marketing to ge more whales involved to make sure we hit + 100 target stay tuned 2021-04-25 18:23:07+00:00 1.0 1417499112 542 the coin we have picked to pump today is idex it is looking perfect for a pump right now our target is 50+ 2021-04-25 17:01:52+00:00 1.0 1417499112 541 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 20:14:58+00:00 1.0 1417499112 540 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 20:13:29+00:00 1.0 1417499112 539 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnisss binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 20:11:57+00:00 1.0 1417499112 538 pump announcement hello everyone next official pump is scheduled for date sunday april 25 time 1700 pm gmt exchange binance coin earlier of next pump contact forgoodnes binancians1234 cryptoghf tradingscryptocoachbackup with our volumes averaging 70 to 80 million per pump and peaks we are ready to announce our next big pump we have decided to schedule our next pump sunday every week to be ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 25 we will be pumping again to high target we have mentioned in our previous pumps this time we will be taking all the extra and necessary measures to make sure we go past our 500 target we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for coin earlier of next pump contact forgoodnes binancians1234 cryptoghf tradingscryptocoachbackup we have few days to prepare for this pump as mentioned above we will be targeting at the very least 500+ profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned coin earlier of next pump contact forgoodnes binancians1234 cryptoghf tradingscryptocoachbackup 2021-04-20 00:27:51+00:00 1.0 1417499112 535 5 minutes left the next message will be the coin to buy 2021-04-18 16:55:09+00:00 1.0 1417499112 530 pump announcement 1 day + few hours left till pump binancians1234 to join next pump contact forgoodnesss date sunday april 18 2021 time 1700 pm gmt exchange binance 2021-04-17 08:03:07+00:00 1.0 1417499112 528 coin earlier of next pump here binancians1234 2021-04-14 18:18:26+00:00 1.0 1417499112 527 pump announcement to join next pump contact forgoodnesss just 4 days left till the next binance pump will be scheduled for date sunday april 18 2021 time 1700 pm gmt exchange binance for vip and coin earlier pm forgoodnesss 2021-04-14 14:30:25+00:00 1.0 1417499112 520 pump announcement to join next pump contact forgoodnesss hello everyonethe next official pump will be scheduled for date sunday april 18 2021 time 1700 pm gmt exchange binance with all of our members making more than 100 and 300 profit consecutively with 2 of our last 3 pumps and with a peak on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join pump contact forgoodnesss we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned to join pump contact forgoodnes 2021-04-11 17:43:37+00:00 1.0 1417499112 519 pump result more than 1500 btc volume in a few minutes which is around 77 million with a peak of 167 if we compare our previous pumps to this one we realize that this one did not last as long as our previous one and went down quicker than we anticipated even though the volume was much bigger we believe that this was due to outside selling pressure coming from the ppt team our whales have tried to keep the price up but the sell pressure was too big you can be assured that in our next pump we will take every precaution to make sure this doesnt happen again and that all our members make profit like in our previous 2 pumps our whales will guarantee profits for our whole community in the upcoming pump by buying massive amounts after all our members stay tuned 2021-04-11 17:40:43+00:00 1.0 1417499112 516 the coin we have picked to pump today is via pivx is looking perfect for a pump right now our target is 1000 2021-04-11 17:01:16+00:00 1.0 1417499112 515 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-04-11 16:59:23+00:00 1.0 1417499112 514 1 minute left our coin has multiple pairings which will give us a massive amount of liquidity we will be using the btc pairing to pump make sure you have btc to buy the coin the next message will be the coin to buy 2021-04-11 16:59:20+00:00 1.0 1417499112 510 1 hour left until our big pump on binance 2021-04-11 16:20:16+00:00 1.0 1417499112 509 2 hours left until the biggest binance pump signal i for vip and coin earlier pm forgoodnesss 2021-04-11 14:59:56+00:00 1.0 1417499112 508 less than6 hours left until the binance pump signal for vip and coin earlier pm forgoodnesss tradingscryptocoachbackup our target will be 500+ profit hundreds of thousands of traders will be buying at once make sure you buy early before outsiders do if you plan to use your whole balance you can buy using 75 of your balance initially at market price use the remaining of your balance to place buy orders when you buy the coin and its time to sell never sell on the buy supports instead sell slowly in parts as the price goes up our pump will have many waves as our whales will actively be buying with our members to support the price there will be a lot of possibilities to make profits many times during the pump after buying we highly suggest to place buy orders below the market price as the price moves up millions of traders worldwide will be watching and buying we have put into place a few measures to spread the word out after our signal all over social media we will attempt to make our pump last as long as possible 2021-04-11 11:05:28+00:00 1.0 1417499112 504 1 day left until the biggest pump in the history of our group the biggest pump that has ever been done on binance will happen this sunday with possibly more than a million traders worldwide watching it happen in realtime we will give more instructions a few time before the pump in order for all our members to be prepared and make the most profit possible for vip and coin earlier pm forgoodnesss 2021-04-10 14:08:44+00:00 1.0 1417499112 496 ️pump announcement️ hello everyone the next official pump will be scheduled for for vip and coin earlier pm forgoodnesss date sunday april 11 time 1700 pm gmt exchange binance with all of our members making more than 200 up to 427 profit consecutively in our last 4 pumps and with an average volume of 80m per pump we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 13 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on april 11 we will be pumping again with the same 500+ target we have mentioned in our previous pumps we will also try reaching more than 100 million volume in the first few minutes we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for special offer for signal vip 0002 btc life time forgoodnesss 2021-04-07 15:26:37+00:00 1.0 1417499112 485 dear members we will postpone tonights pump as we are experiencing problems with the discord server the server has been growing a lot past week and this is causing server issues we are communicating with discord to increase the server capacity but this wont be solved until monday we have decided to push back the pump a few days the new details are as follows exchange binancecom date 11april2021 time 5 pm gmt as appologize we arrange a special signal coin for you next hour will be posted here plz wait us thanks 2021-04-04 16:54:17+00:00 1.0 1417499112 473 pump announcement to join pump contact forgoodnesss hello everyonethe next official pump will be scheduled for date sunday april 4 2021 time 1700 pm gmt exchange binance advantage free for all with all of our members making more than 200 and 300 profit consecutively with 2 of our last 3 pumps and with a peak of 427 on our previous one we are ready to announce our next big pump after the previous pump and hours of discussion with our team we have decided to schedule our next pump in 5 days to make sure that we are fully prepared and ready to provide an amazing pump for all our members our main goal for this pump will be to make sure that every single member in our group makes a massive profit on march 28 we will be pumping again with the same 500 to 1000 target we have mentioned in our previous pump and this time our team will do everything in their power to make sure that the pump will last a very long time like we did in sky and nxs we are currently in a massive bull market and with our ability to keep creating the most powerful and biggest pumps on binance we will take every opportunity we can get we welcome everyone to join us as we create the next ultimate pump all our traders and investors all over the world have been waiting for to join pump contact forgoodnesss we have 7 days to prepare for this pump we are confident to say that this pump event will be the biggest one that we have done in the history of our group once again and will top our previous one in terms of gain as mentioned above we will be targeting anywhere between 500 1000 profit we are expecting hundreds of thousands of people all across the world to attend this pump and possibly more than a million people across all social medias will be watching we will be giving out more information about our upcoming pump in the upcoming days stay tuned to join pump contact forgoodnesss 2021-03-28 18:10:13+00:00 1.0 1417499112 457 ℹ coin signal information ℹ date friday 27 november hour 2100 pm gmt exchange binance market btc trading pairbtc ℹ friday 27 november 0900 pm gmt ℹ it is important to educate yourselves on how to trade on binance on how to buy and sell friday 27 november 0900 pm gmt exactly i will announce a coin for all of us to buy coin will be low level once we have bought we must hold for at least 5 minutes this will give us enough time to stabilise the price and bring in investors that are not in this group we can then start selling in pieces to prevent any dips and keep the price holding high and keep people investing into it while we exit remember ❌donot sell on buy ordersl ✅instead put lower sell orders troll in binance chat groups binance english and other languages group so that more buy n buy orders can b created ❌ do not sell instantly after lower priceour trolling created second wavecoin pumped again after dippingso watch out for that n exit safe✅ ✅ keep posting coin name to chat box to give it mega height note pm queenangelove to get all binance chat box groups 2020-11-20 21:51:58+00:00 1.0 1417499112 271 pm sarmith to get the coin earlier cost 0001 pro pump 2019-06-12 06:05:35+00:00 1.0 1417499112 49 buy coin hc binance ▶️ tradeindexsymbolhcbtc buy buy buy hold hold buy buy buy hold hold buy buy buy hold hold target 30 above profit 2019-05-12 17:01:36+00:00 1.0 1417499112 47 ℹ️ 3 minutes ℹ️ the next post will be the coin to buy on binance 2019-05-12 16:56:50+00:00 1.0 1417499112 45 ℹ️ 15 minutes ℹ️ start getting logged in now 2019-05-12 16:45:16+00:00 1.0 1417499112 44 ℹ️ 30 minutes ℹ️ start getting logged in now 2019-05-12 16:42:00+00:00 1.0 1417499112 40 ℹ️ 2 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 15:12:00+00:00 1.0 1417499112 38 ℹ️ 3 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 14:01:40+00:00 1.0 1417499112 37 ℹ️ 8 hours until the coin to buy is released ℹ️ exchange wwwbinancecom time 5 pm gmt be ready to buy low level today 2019-05-12 09:00:25+00:00 1.0 1349011756 9960 coin name bntbtc expected gain 5080 buy and hold for huge profit 2020-04-24 16:00:07+00:00 1.0 1349011756 9791 btc mooning everyone knows that a big pump will come my team is always happy 2020-04-12 17:53:17+00:00 1.0 1349011756 9719 xem juicy pump from this portfolio called at between 500533 satoshi hit 568 1st target hit with in 1 days so far thats about 15 profits with in few hrs if 600 passes in the next few days it will just start and fly up to 750 my signals always profit 100℅ thats amazing 2020-04-07 19:56:21+00:00 1.0 1349011756 9687 wtc juicy pump from this portfolio called at between 335355 satoshi hit 383 1st target hit with in 4 days so far thats about 15 profits with in few hrs if 400 passes in the next few days it will just start and fly up to 470 my signals always profit 100℅ thats amazing 2020-04-05 11:53:57+00:00 1.0 1349011756 6692 bcpt buy under 365sts target is 3050 why reason coin available at big dip and whales always pump it with hypebinance volume just 8 btc♻♻ massive push also coming soon 2019-10-19 12:52:43+00:00 1.0 1349011756 6498 i̇ns juicy pump from this portfolio called at between 2330 satoshi hit 2530 1nd target done within fews minutes so far thats about 9 profits with in few minutes we will soon see the way to the moon 30 september puplic tesnet massiva news 2019-09-21 17:03:59+00:00 1.0 1349011756 6479 binance as always the top 4 is our 4 coin 330profit for free channel profit my name fomo coin master ❤️ big bang team 2019-09-19 14:56:03+00:00 1.0 1349011756 6447 data binance buy around 90 110 sel121131145166180+199 whales have done enough accumulation on this coin and going to pump it by 60 or more buy and hold from this dip with stoploss to enjoy the profit after pump 2019-09-15 08:56:30+00:00 1.0 1349011756 6405 perl dipping hard buy hold leet see pump 2019-09-11 07:47:59+00:00 1.0 1553551852 1976 90 accurate trading signals join now big pump signal will be share in next 1 hour hurry 2021-09-28 13:01:25+00:00 1.0 1553551852 1938 90 accurate trading signals join now big pump signal will be share in next 1 hour hurry 2021-09-27 16:31:19+00:00 1.0 1553551852 1702 ❤️90 accurate trading signals ❤️ join now big pump signal will be share in next 1 hour hurry 2021-09-21 13:04:47+00:00 1.0 File: Data\\Telegram\\PD_label.py import numpy as np import pandas as pd from datetime import datetime, timedelta import pytz import os import pickle def load_obj(file): with open("./raw/" + file, "rb") as f: return pickle.load(f) def load_session_list(channel_id): with open("./Labeled/" + channel_id + "_session.pkl", "rb") as f: return pickle.load(f) class Message(object): def __init__(self, m): self.message_id = str(m["peer_id"]["channel_id"]) + "-" + str(m["id"]) self.content = m["message"] self.date = m["date"] self.pred_pump = False class Session(object): def __init__(self, id, message_list, pred_pump_flag): self.id = id self.pred_pump_flag = pred_pump_flag self.message_list = message_list self.target_coin = None self.target_exchange = None self.target_timestamp = None self.session_id = None self.first_pred_pump_offset = None self.last_pred_pump_offset = None self.pred_pump_cnt = 0 def labeling(self): self.target_coin = input("coin") self.target_exchange = input("exchange") self.target_timestamp = input("timestamp") def save_session_list(obj, channel_id): with open("./Labeled/" + channel_id + "_session.pkl", "wb") as f: pickle.dump(obj, f, pickle.HIGHEST_PROTOCOL) with open("Labeled/pump_attack_browsed.txt", "r") as f: browsed_sessions = f.readlines() browsed_sessions = list( map(lambda x: "-".join(x[:-1].split("\t")[:2]), browsed_sessions) ) def session_list_print(sess_list, channel_id): """ print the session information """ min_datetime = datetime(2019, 1, 1).replace(tzinfo=pytz.timezone("UTC")) for sess in sess_list: if sess.message_list[0].date <= min_datetime: continue if str(channel_id) + "-" + str(sess.id) in browsed_sessions: continue stop_offset = min(sess.last_pred_pump_offset + 6, len(sess.message_list)) start_offset = max(sess.first_pred_pump_offset - 5, 0) delta = 0 for j in range(start_offset, stop_offset): i = j + delta message = sess.message_list[i] date = message.date content = message.content print(content) print( "------------| " + str(message.pred_pump) + " | " + str(i) + "/" + str(stop_offset - 1) + " | " + str(date) + " |---------------" ) op = input("") if op == "1": labeling(str(channel_id), str(sess.id)) print("------------------------------------") elif op == "?": print("-------------") print( "channel:" + str(channel_id), " | " + "session_index:" + str(sess.id), ) print("-------------") delta -= 1 elif op == "#": break elif op == "##": return elif op == "r": if j > 0: delta -= 2 else: print("not illegal") delta -= 1 else: pass f = open("Labeled/pump_attack_browsed_test.txt", "a") f.write(str(channel_id) + "-" + str(sess.id) + "\n") f.close() def labeling(channel_id, session_id): f = open("Labeled/pump_attack_test.txt", "a") coin = input("Coin:") exchange = input("Exchange:") pair = input("Pair:") timestamp = input("Pump_time:") write_list = [channel_id, session_id, coin, exchange, pair, timestamp] f.write("\t".join(write_list) + "\n") f.close() if __name__ == "__main__": cnt = 0 for root, dirs, files in os.walk("Labeled"): for file in files: if file.endswith(".pkl") == False: continue channel_id = file.split("_")[0] pred_pump_session_list = load_session_list(channel_id) session_list_print(pred_pump_session_list, channel_id) # cnt = 0 # for root, dirs, files in os.walk("./Labeled"): # # for file in files: # if file.endswith(".pkl") == False: # continue # channel_id = file.split("_")[0] # pred_pump_session_list = load_session_list(channel_id) # # min_datetime = datetime(2019, 1, 1).replace(tzinfo=pytz.timezone('UTC')) # # for sess in pred_pump_session_list: # if sess.message_list[0].date <= min_datetime: # continue # if sess.pred_pump_cnt>=2: # cnt += 1 # # print("pause") File: Data\\Telegram\\PDlog_clean.py import pandas as pd import numpy as np df = pd.read_csv( "Labeled/PD_logs_raw.txt", header=None, sep="\t", names=["channel_id", "session_id", "coin", "exchange", "pair", "timestamp"], ) df["timestamp"] = df.timestamp.apply(pd.to_datetime) coin_time_to_exchange = {} coin_time_to_pair = {} for idx, row in df[df["pair"] != "?"].iterrows(): coin_time_to_pair[row.coin + "_" + row.timestamp.strftime("%Y%m%d")] = row.pair for idx, row in df[df["exchange"] != "?"].iterrows(): coin_time_to_exchange[ row.coin + "_" + row.timestamp.strftime("%Y%m%d") ] = row.exchange exchange_fail_cnt = 0 pair_fail_cnt = 0 for i, r in df.iterrows(): if df.loc[i, "exchange"] == "?": try: exchange = coin_time_to_exchange[ df.loc[i, "coin"] + "_" + df.loc[i, "timestamp"].strftime("%Y%m%d") ] df.loc[i, "exchange"] = exchange except: exchange_fail_cnt += 1 if df.loc[i, "pair"] == "?": try: pair = coin_time_to_pair[ df.loc[i, "coin"] + "_" + df.loc[i, "timestamp"].strftime("%Y%m%d") ] df.loc[i, "pair"] = pair except: pair_fail_cnt += 1 for i in range(len(df)): if df.loc[i, "exchange"] == "?": if ( df.loc[i - 1, "exchange"] != "?" and df.loc[i - 1, "channel_id"] == df.loc[i, "channel_id"] ): df.loc[i, "exchange"] = df.loc[i - 1, "exchange"] if df.loc[i, "pair"] == "?": if ( df.loc[i - 1, "pair"] != "?" and df.loc[i - 1, "channel_id"] == df.loc[i, "channel_id"] ): df.loc[i, "pair"] = df.loc[i - 1, "pair"] for i in range(len(df)): if df.loc[i, "pair"] == "?": df.loc[i, "pair"] = "BTC" if df.loc[i, "exchange"] == "?": df.loc[i, "exchange"] = "binance" df.to_csv("./Labeled/PD_logs_cleaned.txt", index=False, sep="\t") File: Data\\Telegram\\get_channel_post.py import configparser import json import os import pickle from telethon import TelegramClient from telethon.errors import SessionPasswordNeededError from telethon.tl.functions.messages import GetHistoryRequest from telethon.tl.types import PeerChannel api_id = 123 # please fill in your api_id api_hash = "1234" # please fill in your api_hash # client = TelegramClient('anon', api_id, api_hash, proxy=("socks5", '127.0.0.1', 7890)) client = TelegramClient("anon", api_id, api_hash) def save_obj(obj, name): with open("./raw/" + name + ".pkl", "wb") as f: pickle.dump(obj, f, pickle.HIGHEST_PROTOCOL) async def main(): with open("raw/Pump_channel2", "r") as f: Channels = f.readlines() failed_channel = [] exist_channel = list(map(lambda y: y[:-4], os.listdir("raw"))) for channel in Channels: offset_id = 0 limit = 500 all_messages = [] total_messages = 0 # total_count_limit = 0 total_count_limit = 500000 entity = channel[13:-1] try: my_channel = await client.get_entity(entity) if not my_channel.broadcast: print("entity: " + entity + " is not broad cast channel") continue except: print("entity: " + entity + " can not be use!") failed_channel.append(entity) continue if str(my_channel.id) in exist_channel: print("entity: " + entity + " has existed") continue while True: print( "Current Offset ID is:", offset_id, "; Total Messages:", total_messages ) history = await client( GetHistoryRequest( peer=my_channel, offset_id=offset_id, offset_date=None, add_offset=0, limit=limit, max_id=0, min_id=0, hash=0, ) ) if not history.messages: break messages = history.messages for message in messages: all_messages.append(message.to_dict()) offset_id = messages[len(messages) - 1].id total_messages = len(all_messages) if total_count_limit != 0 and total_messages >= total_count_limit: break print("pause") save_obj(all_messages, str(my_channel.id)) with client: client.loop.run_until_complete(main()) # def load_obj(name): # with open("./raw/" + name +".pkl", "rb") as f: # return pickle.load(f) File: Data\\Telegram\\keyword_filter.py # -*- coding:utf-8 -*- import numpy as np import pandas as pd import pickle from datetime import datetime, timedelta import re import os def load_obj(file): with open("./raw/" + file, "rb") as f: return pickle.load(f) def save_obj(obj, name): with open("./PreSelection/" + name + ".pkl", "wb") as f: pickle.dump(obj, f, pickle.HIGHEST_PROTOCOL) crypto_match = [] exchange_match = [] keyword_match = [] signal_count = 0 def pre_select(message): # SYMBOL, EXCHANGE, OR KEYWORDS words = re.split("[ ,.?!/\n;#$]", message["message"].lower()) for w in words: if w in [ "", "the", "we", "min", "coin", "am", "now", "pump", "buy", "profit", "profits", "for", "a", "in", "sure", "get", "less", ]: continue if w in crypto_symbol_list: crypto_match.append(w) return True if w in exchange_symbol_list: exchange_match.append(w) return True if w in keyword_list: keyword_match.append(w) return True return False if __name__ == "__main__": with open("raw/crypto_symbol", "r") as f: crypto_symbol = f.readlines()[0] crypto_symbol_list = crypto_symbol.split(",") with open("raw/exchange", "r") as f: exchange_symbol = f.readlines()[0] exchange_symbol_list = exchange_symbol.split(",") keyword_list = ["target", "buy", "pump"] for root, dirs, files in os.walk("raw"): for file in files: message_list = [] if file.endswith(".pkl"): all_messgaes = load_obj(file) for m in all_messgaes: if m["from_id"] != None or m["_"] != "Message": continue if pre_select(m): message_list.append(m) if len(message_list) > 0: save_obj(message_list, file[:-4]) print("pause") File: Data\\Telegram\\message_fg.py import numpy as np import pandas as pd import pickle import os import re import emoji from urlextract import URLExtract from nltk.tokenize import word_tokenize from nltk.corpus import stopwords punctuations = """’'!()-[]{};:'"\,<>./?@#$%^&*_~�=‘""" def remove_punctuation_url_emoji(d): d = d.lower() def filter_emoji(desstr, restr=""): try: co = re.compile("[\U00010000-\U0010ffff]") except re.error: co = re.compile("[\uD800-\uDBFF][\uDC00-\uDFFF]") return co.sub(restr, desstr) d = filter_emoji(d) d = re.sub( r"(https|http)?:\/\/(\w|\.|\/|\?|\=|\&|\%)*\b", "", d, flags=re.MULTILINE ) # This line is for removing url review = d.replace("\n", " ") no_punct = "" for char in review: if char not in punctuations: no_punct = no_punct + char return no_punct def remove_stopwords(d): text_tokens = word_tokenize(d.lower()) tokens_without_sw = [ word for word in text_tokens if not word in stopwords.words("english") ] ls = " ".join(tokens_without_sw) # for w in tokens_without_sw: # ls = ls +" "+w.lower() return ls def load_obj(file): with open(file, "rb") as f: return pickle.load(f) preselect_sample = "./preselect_sample" f_write = open(preselect_sample, "w") with open("raw/crypto_symbol", "r") as f: crypto_symbol = f.readlines()[0] crypto_symbol_list = crypto_symbol.split(",") with open("raw/exchange", "r") as f: exchange_symbol = f.readlines()[0] exchange_symbol_list = exchange_symbol.split(",") keyword_list = ["target", "buy", "pump", "left", "announcement", "hold"] for root, dirs, files in os.walk("PreSelection"): cnt = 0 for file in files: cnt += 1 if file.endswith(".pkl") == False: continue all_messages = load_obj(file) for i in range(len(all_messages)): m = all_messages[i] sample_id = m["id"] channel_id = m["peer_id"]["channel_id"] date = m["date"] # weekday ? weekday = date.weekday() # near 整点 on_time = 0 if date.minute in [58, 59, 0, 1, 2, 28, 29, 30, 31, 32]: on_time = 1 message = remove_punctuation_url_emoji(m["message"]) message_wo_stop = remove_stopwords(message) # print(m["message"]) # print(message) # print(message_wo_stop) word_list = message_wo_stop.split(" ") length = len(word_list) crypto_signal = 0 exchange_signal = 0 keyword_signal = 0 for w in word_list: if w in [ "", "the", "we", "min", "coin", "am", "now", "pump", "buy", "profit", "profits", "for", "a", "in", "sure", "get", "less", ]: continue if w in crypto_symbol_list: crypto_signal += 1 if w in exchange_symbol_list: exchange_signal += 1 if w in keyword_list: keyword_signal += 1 arr = ( "\t".join( [ str(channel_id), str(sample_id), message, message_wo_stop, str(date), str(weekday), str(on_time), str(crypto_signal), str(exchange_signal), str(keyword_signal), str(length), ] ) + "\n" ) f_write.writelines(arr) if i % 100 == 0: print( str(cnt) + "/" + str(len(files)) + " : " + str(i + 1) + "/" + str(len(all_messages)) ) File: Data\\Telegram\\predic_classifier.py import numpy as np import pandas as pd import pickle import matplotlib.pyplot as plt import pandas as pd from sklearn.metrics import confusion_matrix from sklearn.metrics import classification_report from sklearn.model_selection import train_test_split from sklearn.linear_model import LogisticRegression from sklearn.tree import DecisionTreeClassifier from sklearn.ensemble import RandomForestClassifier, GradientBoostingClassifier from sklearn.naive_bayes import MultinomialNB from sklearn.svm import SVC from sklearn.metrics import ( accuracy_score, precision_score, recall_score, f1_score, roc_auc_score, ) from sklearn.metrics import ( average_precision_score, roc_auc_score, roc_curve, precision_recall_curve, ) from sklearn.preprocessing import LabelEncoder from sklearn.feature_extraction.text import TfidfVectorizer pre_select_sample = pd.read_csv( "./PreSelection/preselect_sample", sep="\t", names=[ "channel_id", "sample_id", "message", "message_wo_stop", "date", "weekday", "on_time", "crypto_signal", "exchange_signal", "keyword_signal", "length", ], ) labeled_sample = pd.read_csv( "Labeled/label.txt", sep=" ", names=["label", "channel_id", "sample_id"] ) labeled_sample = labeled_sample[labeled_sample.label != "?"] labeled_sample.loc[labeled_sample.label == "2", "label"] = "0" pre_select_sample = pre_select_sample.dropna(axis=0, how="any") pre_select_sample = pd.merge( pre_select_sample, labeled_sample, how="left", on=["channel_id", "sample_id"] ) pre_select_sample.label.fillna("-1", inplace=True) tf_idf = TfidfVectorizer( ngram_range=(1, 3), min_df=5, tokenizer=lambda x: x.split(), max_features=20000, use_idf=True, ) X_all = tf_idf.fit_transform(pre_select_sample.message_wo_stop) X_predict = X_all[np.where(pre_select_sample.label.values == "-1")[0]] X_train = X_all[np.where(pre_select_sample.label.values != "-1")[0]] y_train = pre_select_sample.label.values[ np.where(pre_select_sample.label.values != "-1")[0] ] # use GBDT model gbdt_model = GradientBoostingClassifier( learning_rate=0.1, min_samples_split=300, min_samples_leaf=20, max_depth=8, max_features="sqrt", subsample=0.8, random_state=10, ) gbdt_model.fit(X_train, y_train) y_pred_proba = gbdt_model.predict_proba(X_predict) y_pred = np.zeros_like(y_pred_proba[:, 1]) threshold = 0.25 y_pred[np.where(y_pred_proba[:, 1] >= 0.25)[0]] = 1 pred_sample = pre_select_sample[pre_select_sample.label.values == "-1"] pred_sample_final = pd.concat( [pred_sample.reset_index(), pd.DataFrame(y_pred, columns=["pred_label"])], axis=1 ) # 只选出pred_label == 1的sample进行保存 pred_pump_sample = pred_sample_final[pred_sample_final.pred_label == 1].reset_index() pred_pump_sample[["channel_id", "sample_id", "message", "date", "pred_label"]].to_csv( "./Labeled/pred_pump_message.csv", index=False, sep="\t" ) File: Data\\Telegram\\pump_message_label.py # -*- coding:utf-8 -*- import numpy as np import pandas as pd import pickle from datetime import datetime, timedelta import pytz import re import os from urlextract import URLExtract from nltk.tokenize import word_tokenize from nltk.corpus import stopwords def load_obj(file): with open("./PreSelection/" + file, "rb") as f: return pickle.load(f) with open("Labeled/label.txt", "r") as f: labeled_samples = f.readlines() labeled_samples = list(map(lambda x: "-".join(x[:-1].split(" ")[1:]), labeled_samples)) f = open("Labeled/label.txt", "a") for root, dirs, files in os.walk("PreSelection"): for file in files: min_datetime = datetime(2021, 1, 1).replace(tzinfo=pytz.timezone("UTC")) if file.endswith(".pkl"): all_messages = load_obj(file) all_messages.reverse() for i in range(len(all_messages)): m = all_messages[i] if m["date"] <= min_datetime: continue if ( str(m["peer_id"]["channel_id"]) + "-" + str(m["id"]) in labeled_samples ): continue print( str(i + 1) + "/" + str(len(all_messages)) + " id:" + str(m["id"]) + "-----" + str(m["date"]) + "--------------" ) print("") print(m["message"]) label = input("") if label == "##": break # jump to the next channel elif label == "?" or label == "1" or label == "2": pass # nothing elif label == "-1": # back to the next message and relabel pass else: label = "0" f.write( str(label) + " " + str(m["peer_id"]["channel_id"]) + " " + str(m["id"]) + "\n" ) File: Data\\Telegram\\sess_aggregate.py import numpy as np import pandas as pd from datetime import datetime, timedelta import pickle def load_obj(file): with open("./raw/" + file, "rb") as f: return pickle.load(f) def load_session_list(channel_id): with open("./Labeled/" + channel_id + "_session.pkl", "rb") as f: return pickle.load(f) def save_session_list(obj, channel_id): with open("./Labeled/" + channel_id + "_session.pkl", "wb") as f: pickle.dump(obj, f, pickle.HIGHEST_PROTOCOL) class Message(object): def __init__(self, m): self.message_id = str(m["peer_id"]["channel_id"]) + "-" + str(m["id"]) self.content = m["message"] self.date = m["date"] self.pred_pump = False class Session(object): def __init__(self, id, message_list, pred_pump_flag): self.id = id self.pred_pump_flag = pred_pump_flag self.message_list = message_list self.target_coin = None self.target_exchange = None self.target_timestamp = None self.session_id = None self.first_pred_pump_offset = None self.last_pred_pump_offset = None self.pred_pump_cnt = 0 def labeling(self): self.target_coin = input("coin") self.target_exchange = input("exchange") self.target_timestamp = input("timestamp") def session_split(message_list, threshold=12): session_list = [] threshold = timedelta(hours=threshold) session_message_list = [] session_id = 0 session_pred_pump = False for i in range(len(message_list)): session_message_list.append(message_list[i]) if message_list[i].pred_pump: session_pred_pump = True if i == len(message_list) - 1: session_list.append( Session(session_id, session_message_list, session_pred_pump) ) else: delta = message_list[i + 1].date - message_list[i].date if delta >= threshold: session_list.append( Session(session_id, session_message_list, session_pred_pump) ) session_message_list = [] session_pred_pump = False session_id += 1 return session_list if __name__ == "__main__": pred_pump_sample = pd.read_csv("Labeled/pred_pump_message.csv", sep="\t") channels = set(pred_pump_sample.channel_id.values) pred_pump_sample["id"] = ( pred_pump_sample.channel_id.astype(str) + "-" + pred_pump_sample.sample_id.astype(str) ) pred_pump_sample_ids = set(pred_pump_sample.id.values) # all_messages = load_obj("1214538537.pkl") # all_messages.reverse() for c in channels: all_messages = load_obj(str(c) + ".pkl") all_messages.reverse() message_list = [] for m in all_messages: if m["_"] != "Message" or m["from_id"] != None: continue m_obj = Message(m) if m_obj.message_id in pred_pump_sample_ids: m_obj.pred_pump = True message_list.append(m_obj) session_list = session_split(message_list) pred_pump_session_list = [] for session in session_list: if session.pred_pump_flag: for i in range(len(session.message_list)): m = session.message_list[i] if m.pred_pump: if session.pred_pump_cnt == 0: session.first_pred_pump_offset = i session.pred_pump_cnt += 1 session.last_pred_pump_offset = i if session.pred_pump_cnt > 1: pred_pump_session_list.append(session) if len(pred_pump_session_list) > 0: save_session_list(pred_pump_session_list, str(c)) File: Data\\Telegram\\train_classifier.py import numpy as np import pandas as pd import pickle import matplotlib.pyplot as plt import pandas as pd from sklearn.metrics import confusion_matrix from sklearn.metrics import classification_report from sklearn.model_selection import train_test_split from sklearn.linear_model import LogisticRegression from sklearn.tree import DecisionTreeClassifier from sklearn.ensemble import RandomForestClassifier, GradientBoostingClassifier from sklearn.naive_bayes import MultinomialNB from sklearn.svm import SVC from sklearn.metrics import ( accuracy_score, precision_score, recall_score, f1_score, roc_auc_score, ) from sklearn.metrics import ( average_precision_score, roc_auc_score, roc_curve, precision_recall_curve, ) from sklearn.preprocessing import LabelEncoder from sklearn.feature_extraction.text import TfidfVectorizer def load_obj(file): with open("./PreSelection/" + file, "rb") as f: return pickle.load(f) labeled_sample = pd.read_csv( "Labeled/label.txt", sep=" ", names=["label", "channel_id", "sample_id"] ) labeled_sample = labeled_sample[labeled_sample.label != "?"] pre_select_sample = pd.read_csv( "./PreSelection/preselect_sample", sep="\t", names=[ "channel_id", "sample_id", "message", "message_wo_stop", "date", "weekday", "on_time", "crypto_signal", "exchange_signal", "keyword_signal", "length", ], ) pre_select_sample = pd.merge( labeled_sample, pre_select_sample, how="inner", on=["channel_id", "sample_id"] ) pre_select_sample = pre_select_sample.dropna(axis=0, how="any") class color: # Text style PURPLE = "\033[95m" CYAN = "\033[96m" DARKCYAN = "\033[36m" BLUE = "\033[94m" GREEN = "\033[92m" YELLOW = "\033[93m" RED = "\033[91m" BOLD = "\033[1m" UNDERLINE = "\033[4m" END = "\033[0m" def model_train(model, X_train, y_train): model.fit(X_train, y_train) return model def model_accuracy(model, X_test, y_test, model_name): print("Classifier: ", model_name) pred_y = model.predict(X_test) print( color.BOLD + "Confusion Matrix:\n" + color.END, confusion_matrix(y_test, pred_y) ) print(color.BOLD + "Report : " + color.END) print(classification_report(y_test, pred_y)) acc_list.append((round(accuracy_score(y_test, pred_y), 4) * 100)) pr_list.append( (round(precision_score(y_test, pred_y, average="weighted"), 4) * 100) ) re_list.append((round(recall_score(y_test, pred_y, average="weighted"), 4) * 100)) f1_list.append((round(f1_score(y_test, pred_y, average="weighted"), 4) * 100)) # cleaned data tf_idf = TfidfVectorizer( ngram_range=(1, 3), min_df=5, tokenizer=lambda x: x.split(), max_features=20000, use_idf=True, ) X = tf_idf.fit_transform(pre_select_sample.message_wo_stop) y = pre_select_sample.label.values X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.3, random_state=42 ) lr_model = LogisticRegression(random_state=123, C=0.08) gbdt_model = GradientBoostingClassifier( learning_rate=0.1, min_samples_split=300, min_samples_leaf=20, max_depth=8, max_features="sqrt", subsample=0.8, random_state=10, ) rf_model = RandomForestClassifier(n_estimators=10, criterion="entropy", random_state=0) mnb_model = MultinomialNB(alpha=0.05) model_names = ["Logistic Regression", "GBDT", "Random Forest", "Naive Bayes"] ml_models = [lr_model, gbdt_model, rf_model, mnb_model] trained_ml_models = [] for i in ml_models: tt = model_train(i, X_train, y_train) trained_ml_models.append(tt) acc_list = [] pr_list = [] re_list = [] f1_list = [] for i in range(len(trained_ml_models)): md = trained_ml_models[i] name = model_names[i] model_accuracy(md, X_test, y_test, name) performance_matrix = pd.DataFrame( { "Accuracy": acc_list, "Precision": pr_list, "Recall": re_list, "F1 Score": f1_list, }, index=model_names, ) print(performance_matrix) File: Data\\__init__.py File: README.md # Sequence-based Target Coin Prediction for Cryptocurrency Pump-and-Dump (SIGMOD 2023) This is the repo including dataset and code used in the paper ["Sequence-based Target Coin Prediction for Cryptocurrency Pump-and-Dump"](https://arxiv.org/pdf/2204.12929.pdf). ### Data Science Pipeline The workflow mainly consists of two parts: data collection and target coin prediction.
### Pump-and-dump Activity Logs (Jan. 1, 2019 to Jan. 15, 2022) The [P&D logs](https://github.com/Bayi-Hu/Pump-and-Dump-Detection-on-Cryptocurrency/blob/master/Data/Telegram/Labeled/PD_logs_cleaned.txt) includes 1,335 samples and 709 P&Ds that we observed on Telegram. We will periodically update this dataset. # Getting Start Since we have already collected P\&D log dataset and will periodically update it, you can skip the data collection part : ) ## 0. Data Collection First, we get seed channels verified by PumpOlymp and explore the pump channels. - /Data/Telegram/Pump_channel1 - /Data/Telegram/Pump_channel2 **Step1: get historical messages according to channel** ``` python get_channel_post.py ``` **Step2: Select pump message with keyword filtering** ``` python keyword_filte.py ``` **Step3: Manually label the filtered messages** ``` python pump_message_label.py # we have already labeled 5000+ samples. ``` **Step4: Generate features for messages.** ``` python message_fg.py ``` **Step5: Train a detection classifier.** ``` python train_classifier.py ``` **Step6: Use the classifier for detection** ``` python predict_classifier.py ``` **Step7: Aggregate the session based on timestamp** ``` python sess_aggregate.py ``` **Step8: Label the predicted pump session and generate final P&D log** ``` python PD_label.py ``` **Step9: Clean the log dataset** ``` python PDlog_clean.py ``` ## 1. Target Coin Prediction ### 1.1 Feature Generation: Two methods to generate features for Target Coin Prediction. #### Method1: Generate features from P&D logs: ``` HOLD (still organizing this part of code because it involves feature collection from multiple sources,) ``` #### Mehod2: Download generated dataset from Good Drive * [train_sample](https://drive.google.com/file/d/1u2Ichky12k-ZTHDhqgFLM5WzlH26JnKa/view?usp=sharing) * [test_sample](https://drive.google.com/file/d/1slLs-OqMqzLHrmvzbf8xlyP2zzDpIk1R/view?usp=sharing) ``` cd TargetCoinPrediction tar -xzvf train.tar.gz tar -xzvf test.tar.gz ``` ### 1.2 Model Training #### Step1: Train SNN model ``` cd TargetCoinPrediction/SeqModel python run_train.py --model=snn \ --max_seq_length=8 \ --epoch=30 \ --batch_size=256 \ --learning_rate=1e-4 \ --dropout_rate=0.2 --do_train=True --do_eval=False \ --checkpointDir=xxx ``` | Parameter | Description | |------------------|------------------------------------------------------------------------| | `model` | Model used for target coin prediction, options (`snn`, `snnta`, `dnn`) | | `max_seq_length` | The maximum length of P&D sequence, options `1~ 50`, default=`8`. | | `epochs` | Number of training epochs, default = `30`. | | `batch_size` | Batch size, default = `256`. | | `learning_rate` | Learning rate for the optimizer (Adam), default = `5e-4`. | | `dropout_rate` | Dropout Ratio for training, default = `0.2`. | | `do_train` | Whether to do training or testing, default = `True`. | | `do_eval` | Whether to do training or testing, default = `False`. | | `checkpointDir` | Specify the directory to save the checkpoints. | [//]: # (| `init_seed` | The initial seed, default = `1234`. |) #### Step2: Evaluate SNN model ``` python run_eval.py --model=snn \ --max_seq_length=8 \ --epoch=1 \ --batch_size=256 \ --do_train=False --do_eval=True \ --checkpointDir=xxx \ --init_seed=1234 ``` ### Results on current dataset We periodically update this table according to updated dataset. | Metric | DNN | SNN | SNN_s | |---------|-------|-------|-------| | HR1 | 0.203 | 0.253 | 0.313 | | HR3 | 0.295 | 0.361 | 0.445 | | HR5 | 0.431 | 0.471 | 0.498 | | HR10 | 0.463 | 0.599 | 0.599 | | HR20 | 0.630 | 0.709 | 0.714 | | HR30 | 0.797 | 0.824 | 0.846 | In this dataset we generate only 9 statistical features and coin id for pumped coin in sequence. The performance of SNN can be further improved by using more features for sequence. ----- ## Citation If you find this repo useful, please cite our paper: ``` @article{hu2022sequence, title={Sequence-Based Target Coin Prediction for Cryptocurrency Pump-and-Dump}, author={Hu, Sihao and Zhang, Zhen and Lu, Shengliang and He, Bingsheng and Li, Zhao}, journal={arXiv preprint arXiv:2204.12929}, year={2022} } ``` File: TargetCoinPrediction\\FeatGeneration\\__init__.py # -*- coding:utf-8 -*- File: TargetCoinPrediction\\FeatGeneration\\gen_feature.py # -*- coding:utf-8 -*- import numpy as np import pandas as pd # if __name__ == '__main__': # train/validation/test 要根据时间点分,否则会有leakage pos_df = pd.read_csv("feature/pump_sample_raw.csv") pos_df = pos_df[pos_df["exchange"] == "binance"] pos_df = pos_df[pos_df["pair"] == "BTC"] pos_df = pos_df[pos_df["pre_1h_price"].notna()] neg_df = pd.read_csv("feature/neg_sample_raw.csv", na_values="None") neg_df = neg_df[neg_df["pair"] == "BTC"] neg_df = neg_df[neg_df["pre_1h_price"].notna()] pos_df["label"] = 1 neg_df["label"] = 0 # 其余的使用平均值填充 for column in [ "pre_3d_market_cap_usd", "pre_3d_market_cap_btc", "pre_3d_price_usd", "pre_3d_price_btc", "pre_3d_volume_usd", "pre_3d_volume_btc", "pre_3d_twitter_index", "pre_3d_reddit_index", "pre_3d_alexa_index", ]: mean_val = pos_df[column].mean() pos_df[column].fillna(mean_val, inplace=True) for column in [ "pre_3d_market_cap_usd", "pre_3d_market_cap_btc", "pre_3d_price_usd", "pre_3d_price_btc", "pre_3d_volume_usd", "pre_3d_volume_btc", "pre_3d_twitter_index", "pre_3d_reddit_index", "pre_3d_alexa_index", ]: mean_val = neg_df[column].mean() neg_df[column].fillna(mean_val, inplace=True) price_columns = [] return_columns = [] volume_columns = [] for column in pos_df.columns: if "price" in column: price_columns.append(column) if "return" in column: return_columns.append(column) if "volume" in column: volume_columns.append(column) other_columns = [ "pre_3d_alexa_index", "pre_3d_market_cap_btc", "pre_3d_market_cap_usd", "pre_3d_reddit_index", "pre_3d_twitter_index", ] # 因为sequence feature要相加,所以去除了这一部分 # for column in price_columns: # if column == "pre_3d_price_usd": # continue # pos_df[column] = pos_df[column] * (10**5) # try: # neg_df[column] = neg_df[column] * (10**5) # except: # continue # # for column in volume_columns + other_columns: # pos_df[column] = np.log2(pos_df[column]+0.1) # neg_df[column] = np.log2(neg_df[column]+0.1) # # 加入normalization # pos_df # neg_df # # normalization # hybrid_sample = pd.concat([train_sample, test_sample], axis=0) # for column in column_list[7:]: # if column in column_list[-3:]: # pass # mean = hybrid_sample[column].mean() # std = hybrid_sample[column].std() # train_sample[column] = (train_sample[column] - mean) / std # test_sample[column] = (test_sample[column] - mean) / std column1 = [] column2 = [] for column in price_columns + return_columns + volume_columns + other_columns: if column not in neg_df.columns: # after pump features mean = pos_df[column].mean() std = pos_df[column].std() pos_df[column] = (pos_df[column] - mean) / std column1.append(column) else: df = pd.concat([pos_df[column], neg_df[column]], axis=0) mean = df.mean() std = df.std() pos_df[column] = (pos_df[column] - mean) / std neg_df[column] = (neg_df[column] - mean) / std column2.append(column) coin_df = pd.concat([pos_df["coin"], neg_df["coin"]], axis=0) channel_df = pd.concat([pos_df["channel_id"], neg_df["channel_id"]], axis=0) # channel_id & coin_id mapping coin_array = np.unique(coin_df.values) channel_array = np.unique(channel_df.values) coin2id = {} id2coin = {} channel2id = {} coin2id["0"] = 0 id2coin[0] = "0" for i in range(len(coin_array)): coin2id[coin_array[i]] = i + 1 id2coin[i + 1] = coin_array[i] id2channel = {} channel2id["0"] = 0 id2channel[0] = "0" for i in range(len(channel_array)): channel2id[channel_array[i]] = i + 1 id2channel[i + 1] = channel_array[i] pos_df["coin_id"] = pos_df["coin"].apply(lambda x: coin2id[x]) pos_df["channel_id_new"] = pos_df["channel_id"].apply(lambda x: channel2id[x]) neg_df["coin_id"] = neg_df["coin"].apply(lambda x: coin2id[x]) neg_df["channel_id_new"] = neg_df["channel_id"].apply(lambda x: channel2id[x]) # for i, row in pos_df.iterrows(): # pos_df.loc[i, "coin_id"] = coin2id[row.coin] # pos_df.loc[i, "channel_id_new"] = channel2id[row.channel_id] # for i, row in neg_df.iterrows(): # neg_df.loc[i, "coin_id"] = coin2id[row.coin] # neg_df.loc[i, "channel_id_new"] = channel2id[row.channel_id] # sequence 化 !!! for idx, row in pos_df.iterrows(): feature = [] for column in price_columns + return_columns + volume_columns + other_columns: feature.append(row[column]) feature_str = "".join(map(lambda x: str(x), feature)) pos_df.loc[idx, "feature"] = feature_str # pre_feature_columns = [] X_pos = pd.merge( left=pos_df[["channel_id", "timestamp_unix"]], right=pos_df[["channel_id", "coin_id", "feature", "timestamp_unix"]], how="left", on=["channel_id"], sort=False, ) X_pos = X_pos[X_pos.timestamp_unix_x > X_pos.timestamp_unix_y] X_pos = X_pos.rename( columns={ "timestamp_unix_x": "timestamp_unix_target", "timestamp_unix_y": "timestamp_unix_seq", "feature": "feature_seq", "coin_id": "coin_id_seq", } ) # channel_id, timestamp_unix 进行拼接,只用feature def udf(df): def takeFirst(elem): return elem[0] # output = [] feature_seq = [] coin_id_seq = [] X = list(zip(df.timestamp_unix_seq, df.coin_id_seq, df.feature_seq)) X.sort(key=takeFirst, reverse=True) length = 0 for x in X: # set max length to 100 coin_id_seq.append(str(x[1])) feature_seq.append(str(x[2])) length += 1 if length >= 50: break return np.array( [ [ df.iloc[0]["channel_id"], df.iloc[0]["timestamp_unix_target"], str(length), "\t".join(coin_id_seq), "\t".join(feature_seq), ] ] ) X_pos_final = X_pos.groupby(["channel_id", "timestamp_unix_target"]).apply(udf) pos_seq_feat = pd.DataFrame( np.concatenate(X_pos_final.values, axis=0), columns=["channel_id", "timestamp_unix", "length", "coin_id_seq", "feature_seq"], ) pos_seq_feat.channel_id = pos_seq_feat.channel_id.astype(int) pos_seq_feat.timestamp_unix = pos_seq_feat.timestamp_unix.astype(int) pos_sample_base = pd.merge( left=pos_df, right=pos_seq_feat, how="left", on=["channel_id", "timestamp_unix"] ) neg_sample_base = pd.merge( left=neg_df, right=pos_seq_feat, how="left", on=["channel_id", "timestamp_unix"] ) column_list = "label,channel_id,channel_id_new,coin,coin_id,timestamp_unix,length,coin_id_seq,feature_seq,pre_1h_return,pre_1h_price,pre_1h_price_avg,pre_1h_volume,pre_1h_volume_avg,pre_1h_volume_sum,pre_1h_volume_tb,pre_1h_volume_quote,pre_1h_volume_quote_tb,pre_3h_return,pre_3h_price,pre_3h_price_avg,pre_3h_volume,pre_3h_volume_avg,pre_3h_volume_sum,pre_3h_volume_tb,pre_3h_volume_tb_avg,pre_3h_volume_tb_sum,pre_3h_volume_quote,pre_3h_volume_quote_avg,pre_3h_volume_quote_sum,pre_3h_volume_quote_tb,pre_3h_volume_quote_tb_avg,pre_3h_volume_quote_tb_sum,pre_6h_return,pre_6h_price,pre_6h_price_avg,pre_6h_volume,pre_6h_volume_avg,pre_6h_volume_sum,pre_6h_volume_tb,pre_6h_volume_tb_avg,pre_6h_volume_tb_sum,pre_6h_volume_quote,pre_6h_volume_quote_avg,pre_6h_volume_quote_sum,pre_6h_volume_quote_tb,pre_6h_volume_quote_tb_avg,pre_6h_volume_quote_tb_sum,pre_12h_return,pre_12h_price,pre_12h_price_avg,pre_12h_volume,pre_12h_volume_avg,pre_12h_volume_sum,pre_12h_volume_tb,pre_12h_volume_tb_avg,pre_12h_volume_tb_sum,pre_12h_volume_quote,pre_12h_volume_quote_avg,pre_12h_volume_quote_sum,pre_12h_volume_quote_tb,pre_12h_volume_quote_tb_avg,pre_12h_volume_quote_tb_sum,pre_24h_return,pre_24h_price,pre_24h_price_avg,pre_24h_volume,pre_24h_volume_avg,pre_24h_volume_sum,pre_24h_volume_tb,pre_24h_volume_tb_avg,pre_24h_volume_tb_sum,pre_24h_volume_quote,pre_24h_volume_quote_avg,pre_24h_volume_quote_sum,pre_24h_volume_quote_tb,pre_24h_volume_quote_tb_avg,pre_24h_volume_quote_tb_sum,pre_36h_return,pre_36h_price,pre_36h_price_avg,pre_36h_volume,pre_36h_volume_avg,pre_36h_volume_sum,pre_36h_volume_tb,pre_36h_volume_tb_avg,pre_36h_volume_tb_sum,pre_36h_volume_quote,pre_36h_volume_quote_avg,pre_36h_volume_quote_sum,pre_36h_volume_quote_tb,pre_36h_volume_quote_tb_avg,pre_36h_volume_quote_tb_sum,pre_48h_return,pre_48h_price,pre_48h_price_avg,pre_48h_volume,pre_48h_volume_avg,pre_48h_volume_sum,pre_48h_volume_tb,pre_48h_volume_tb_avg,pre_48h_volume_tb_sum,pre_48h_volume_quote,pre_48h_volume_quote_avg,pre_48h_volume_quote_sum,pre_48h_volume_quote_tb,pre_48h_volume_quote_tb_avg,pre_48h_volume_quote_tb_sum,pre_60h_return,pre_60h_price,pre_60h_price_avg,pre_60h_volume,pre_60h_volume_avg,pre_60h_volume_sum,pre_60h_volume_tb,pre_60h_volume_tb_avg,pre_60h_volume_tb_sum,pre_60h_volume_quote,pre_60h_volume_quote_avg,pre_60h_volume_quote_sum,pre_60h_volume_quote_tb,pre_60h_volume_quote_tb_avg,pre_60h_volume_quote_tb_sum,pre_72h_return,pre_72h_price,pre_72h_price_avg,pre_72h_volume,pre_72h_volume_avg,pre_72h_volume_sum,pre_72h_volume_tb,pre_72h_volume_tb_avg,pre_72h_volume_tb_sum,pre_72h_volume_quote,pre_72h_volume_quote_avg,pre_72h_volume_quote_sum,pre_72h_volume_quote_tb,pre_72h_volume_quote_tb_avg,pre_72h_volume_quote_tb_sum,pre_3d_market_cap_usd,pre_3d_market_cap_btc,pre_3d_price_usd,pre_3d_price_btc,pre_3d_volume_usd,pre_3d_volume_btc,pre_3d_twitter_index,pre_3d_reddit_index,pre_3d_alexa_index".split( "," ) pos_sample_base = pos_sample_base[column_list] neg_sample_base = neg_sample_base[column_list] pos_sample_base.loc[pos_sample_base.length.isna(), "length"] = 0 pos_sample_base.loc[pos_sample_base.coin_id_seq.isna(), "coin_id_seq"] = "0" pos_sample_base.loc[pos_sample_base.feature_seq.isna(), "feature_seq"] = "0" neg_sample_base.loc[neg_sample_base.length.isna(), "length"] = 0 neg_sample_base.loc[neg_sample_base.coin_id_seq.isna(), "coin_id_seq"] = "0" neg_sample_base.loc[neg_sample_base.feature_seq.isna(), "feature_seq"] = "0" # split split_timestamp_unix = 1620579621000 test_pos_sample_base = pos_sample_base[ pos_sample_base.timestamp_unix >= split_timestamp_unix ] train_pos_sample_base = pos_sample_base[ pos_sample_base.timestamp_unix < split_timestamp_unix ] test_neg_sample_base = neg_sample_base[ neg_sample_base.timestamp_unix >= split_timestamp_unix ] train_neg_sample_base = neg_sample_base[ neg_sample_base.timestamp_unix < split_timestamp_unix ] train_sample = pd.concat([train_pos_sample_base, train_neg_sample_base], axis=0) test_sample = pd.concat([test_pos_sample_base, test_neg_sample_base], axis=0) train_sample = train_sample.reset_index(drop=True) test_sample = test_sample.reset_index(drop=True) # shuffle train_sample = train_sample.loc[np.random.permutation(len(train_sample))] train_sample = train_sample.reset_index(drop=True) test_sample = test_sample.loc[np.random.permutation(len(test_sample))] test_sample = test_sample.reset_index(drop=True) train_sample = train_sample[column_list] test_sample = test_sample[column_list] train_sample.coin_id = train_sample.coin_id.astype(int) train_sample.channel_id_new = train_sample.channel_id_new.astype(int) test_sample.coin_id = test_sample.coin_id.astype(int) test_sample.channel_id_new = test_sample.channel_id_new.astype(int) # store train_sample.to_csv("train_sample.csv", index=False, header=False) test_sample.to_csv("test_sample.csv", index=False, header=False) # do not forget to mannually split the training and testing set by time File: TargetCoinPrediction\\FeatGeneration\\neg_sample_process.py # -*- coding:utf-8 -*- import numpy as np import pandas as pd from pycoingecko import CoinGeckoAPI import pickle as pkl from datetime import * from Statistics.utility import download_monthly_klines import zipfile import os import time from pos_sample_process import pre_pump_statistics # markets_coin_list = [] # for i in range(4000): # markets = cg.get_coins_markets(vs_currency="usd", order = "market_cap_desc", per_page=100, page=i) # markets_coin_list += markets binance_symbol = "HNT,BOND,WOO,ZEN,GRS,AAVE,LINKDOWN,DCR,UMA,FORTH,RVN,CVX,STEEM,RNDR,KSM,BAR,XTZUP,FTT,ERD,CKB,FXS,MCO,SUB,JUV,BNX,GHST,WING,CHESS,LTC,TRXDOWN,CHAT,XRPBULL,BCHUP,SNM,DGB,STPT,EGLD,TWT,SAND,XMR,BICO,TROY,REN,BAND,ACH,MBOX,GLMR,IOST,DAI,CDT,ATM,SOL,USDC,ARN,BRD,ETHBULL,FILDOWN,RSR,ADA,BURGER,YGG,TKO,SKY,BNBBEAR,OGN,CLOAK,FRONT,PERL,CLV,LOKA,RAY,WAN,EASY,AST,COTI,LINK,PAXG,GVT,KNC,DENT,LUN,NPXS,DOGE,OOKI,HIVE,XLMDOWN,MBL,GXS,FIS,NULS,TLM,ENJ,STRAT,PERP,PUNDIX,C98,FLOW,NAV,XTZDOWN,NAS,RDN,XEC,DYDX,ZRX,VEN,NEO,SRM,ANT,TORN,QNT,ICN,USDP,EOS,UTK,IDEX,GAS,BTT,REEF,ETH,LTO,JST,ALPHA,LRC,EOSUP,RCN,ARPA,ATA,BTTC,HOT,MATIC,FIO,THETA,MDX,DOT,COMP,KEEP,ENG,ASR,UNIDOWN,GALA,ELF,STMX,XRPUP,LINKUP,SNX,SANTOS,DF,TNB,KEY,VIBE,BUSD,DASH,RLC,SXP,NXS,POA,SFP,SPELL,ETHBEAR,BCHDOWN,BAT,BAKE,OM,ROSE,TRXUP,CELO,XVS,KP3R,ETHDOWN,VTHO,MDA,VET,BCHSV,ICP,NU,ACA,AUTO,AION,SNGLS,UST,FARM,BULL,QKC,HARD,AUD,USDSB,BCH,EOSBEAR,WRX,TRX,FIL,NBS,EZ,DODO,OST,REP,AMP,LUNA,LTCDOWN,FOR,CAKE,VITE,MKR,WIN,LOOM,STRAX,SUPER,MASK,LIT,EOSDOWN,MITH,TCT,BEAM,AKRO,ADX,LSK,MANA,GNO,FUN,WAVES,MOVR,SALT,TRB,POLS,UNIUP,ICX,ATOM,GTO,TVK,CHR,VOXEL,WBTC,YOYO,STORJ,EUR,SKL,APPC,AGI,ALPACA,RENBTC,SNT,GLM,MINA,AUDIO,STX,CTK,MTL,GO,NMR,LEND,PYR,BADGER,QUICK,PHX,NKN,GBP,ALPINE,FIRO,BAL,QSP,SUN,VIDT,ERN,FLM,XVG,STORM,DOTUP,AAVEDOWN,ONT,ARDR,RARE,REQ,NEBL,ALGO,BOT,PROM,DEXE,QTUM,HBAR,DOCK,CFX,ALCX,SHIB,ANY,SYS,WTC,CTXC,KLAY,OXT,CELR,BTCUP,DOTDOWN,XEM,SSV,BETA,CVP,1INCH,EOSBULL,FIDA,SUSHI,SXPDOWN,FUEL,ADADOWN,RIF,ENS,WAXP,DEGO,IOTX,BCD,PEOPLE,VGX,ANKR,UNFI,BTC,DNT,SUSHIDOWN,API3,HIGH,1INCHUP,HSR,DIA,OG,1INCHDOWN,AVA,BTCB,INS,AMB,SUSD,FTM,POND,OCEAN,BCPT,SUSHIUP,PNT,ANC,NANO,ONE,POWR,TOMO,BNT,DAR,YFII,IMX,IRIS,BEL,GRT,SC,ZIL,PLA,OAX,YFI,LPT,MLN,EDO,WINGS,AE,XNO,MFT,XLM,PPT,ACM,BTCDOWN,SLP,BTCST,HC,XTZ,AGLD,LTCUP,LAZIO,RAD,BCC,SCRT,PHA,BNB,FLUX,RUNE,EVX,BTG,DREP,XRPBEAR,TRIG,XRPDOWN,FILUP,WPR,PHB,OMG,GTC,DUSK,NEAR,IOTA,RAMP,SXPUP,PIVX,COS,INJ,BKRW,TNT,XRP,AVAX,EPS,MOD,QI,CND,QLC,KMD,TRU,GNT,JOE,RPX,ALICE,COCOS,NCASH,BLZ,USDS,XLMUP,CRV,TRIBE,BNBDOWN,ZEC,BTS,POE,XZC,CTSI,ILV,RGT,AERGO,AUCTION,UNI,LINA,ARK,FET,CHZ,POLY,AAVEUP,AGIX,YFIDOWN,BQX,MC,ETC,MTH,WNXM,BNBUP,BEAR,BCHABC,BNBBULL,ETHUP,TUSD,CVC,ADAUP,BCN,MIR,VIA,CITY,PORTO,KAVA,AXS,DLT,CMT,AR,WABI,PSG,TFUEL,VIB,JASMY,ORN,DGD,PAX,ONG,DATA,YFIUP,MDT,BZRX" binance_symbol_list = binance_symbol.split(",") require_binance_file_names = set() require_coingecko_file_names = set() download_flag = False zip_flag = False concat_flag = False coin_gecko_flag = False gecko_statistics = False if __name__ == "__main__": # train/validation/test 要根据时间点分,否则会有leakage df = pd.read_csv("../../Data/Telegram/Labeled/PD_logs_cleaned.txt", sep="\t") df["timestamp"] = df.timestamp.apply(pd.to_datetime) df["timestamp_unix"] = (df["timestamp"].astype(int) / (10**6)).astype(int) try: require_binance_file_names = pd.read_csv( "raw/neg_binance_required_file_name.txt", names=["file_name"] ).file_name.values except: for i in range(len(df)): if df.loc[i, "exchange"] != "binance": continue for symbol in binance_symbol_list: if symbol == df.loc[i, "coin"]: continue file_name = ( symbol + df.loc[i, "pair"] + "-" + df.loc[i, "timestamp"].strftime("%Y%m") ) require_binance_file_names.add(file_name) with open("raw/neg_binance_required_file_name.txt", "w") as f: for file_name in require_binance_file_names: f.write(file_name + "\n") if download_flag: last_month_file_names = set() for i in range(0, len(require_binance_file_names)): file_name = require_binance_file_names[i] symbol = file_name.split("-")[0] date = datetime.strptime(file_name.split("-")[1], "%Y%m") download_monthly_klines( trading_type="spot", symbols=[symbol], num_symbols=1, intervals=["1m"], years=[date.year], months=[date.month], start_date=None, end_date=None, folder="", checksum=0, ) if date.day > 3: last_month_date = date - timedelta(days=31) else: last_month_date = date - timedelta(days=15) last_month_file_name = symbol + "-" + date.strftime("%Y%m") if ( last_month_file_name not in last_month_file_names and last_month_file_name not in require_binance_file_names ): last_month_file_names.add(last_month_file_name) download_monthly_klines( trading_type="spot", symbols=[symbol], num_symbols=1, intervals=["1m"], years=[last_month_date.year], months=[last_month_date.month], start_date=None, end_date=None, folder="", checksum=0, ) if zip_flag: def unzip(src_file, dest_dir): """ungz zip file""" zf = zipfile.ZipFile(src_file) zf.extractall(path=dest_dir) zf.close() dest_dir = "../../Data/Binance/data/unzip" fail_file_list = [] for root, dirs, files in os.walk("../../Data/Binance/data/spot"): for file in files: if file.endswith(".zip"): try: unzip(os.path.join(root, file), dest_dir) except: fail_file_list.append(file) if concat_flag: dest_dir = "../../Data/Binance/data/concat" columns = [ "open_time", "open", "high", "low", "close", "volume", "close_time", "quote_asset_volume", "number_of_trades", "taker_buy_base_asset_volume", "taker_buy_quote_asset_volume", "ignore", ] # concate the last month data with current month data fail_file_set = set() for file_name in require_binance_file_names: symbol = file_name.split("-")[0] date = datetime.strptime(file_name.split("-")[1], "%Y%m") if date.day > 3: last_month_date = date - timedelta(days=31) else: last_month_date = date - timedelta(days=15) try: current_month_file_name = ( symbol + "-1m-" + date.strftime("%Y-%m") + ".csv" ) current_month_statistics = pd.read_csv( "../../Binance/data/unzip/" + current_month_file_name, names=columns ) last_month_file_name = ( symbol + "-1m-" + last_month_date.strftime("%Y-%m") + ".csv" ) last_month_statistics = pd.read_csv( "../../Binance/data/unzip/" + last_month_file_name, names=columns ) current_month_statistics = pd.concat( [last_month_statistics, current_month_statistics], axis=0 ) current_month_statistics.to_csv( os.path.join(dest_dir, current_month_file_name), index=False ) except: fail_file_set.add(file_name) continue if gecko_statistics: import json with open("raw/binanceSymbol2CoinId.json", "r") as f: symbol2coinId = json.load(f) cg = CoinGeckoAPI() coin_list = cg.get_coins_list() symbol2id = {} for c in coin_list: symbol2id[c["symbol"]] = c["id"] for s in symbol2coinId.keys(): symbol2id[s.lower()] = symbol2coinId[s] file_name_list = [] for root, dirs, files in os.walk("../../Data/Binance/data/concat"): for file in files: if file.endswith(".csv"): file_name_list.append(file) unattack_coin_date = set() count = 0 for i in range(len(df)): if df.loc[i, "exchange"] != "binance": continue for symbol in binance_symbol_list: if symbol == df.loc[i, "coin"]: continue file_name = ( symbol + df.loc[i, "pair"] + "-1m-" + df.loc[i, "timestamp"].strftime("%Y-%m") + ".csv" ) if file_name in file_name_list: pre_3d = df.loc[i, "timestamp"] + timedelta(days=-3) key = symbol + "_" + pre_3d.strftime("%Y%m%d") unattack_coin_date.add(key) count += 1 print("pause") debug_cnt1 = 0 debug_cnt2 = 0 debug_key1 = [] debug_key2 = [] neg_coin_date_to_statistics = {} f = open("raw/neg_coin_gecko_statistics.txt", "w") for key in unattack_coin_date: symbol = key.split("_")[0] date = key.split("_")[1] try: coin_id = symbol2coinId[symbol] except: debug_cnt1 += 1 debug_key1.append(symbol) continue date = datetime.strptime(date, "%Y%m%d").strftime("%d-%m-%Y") try: H = cg.get_coin_history_by_id(coin_id, date=date) market_cap_usd = H["market_data"]["market_cap"]["usd"] market_cap_btc = H["market_data"]["market_cap"]["btc"] price_usd = H["market_data"]["current_price"]["usd"] price_btc = H["market_data"]["current_price"]["btc"] volume_usd = H["market_data"]["total_volume"]["usd"] volume_btc = H["market_data"]["total_volume"]["btc"] twitter_follower = H["community_data"]["twitter_followers"] reddit_subscriber = H["community_data"]["reddit_subscribers"] alexa_rank = H["public_interest_stats"]["alexa_rank"] statistic_data = [ key, market_cap_usd, market_cap_btc, price_usd, price_btc, volume_usd, volume_btc, twitter_follower, reddit_subscriber, alexa_rank, ] f.write("\t".join(map(lambda x: str(x), statistic_data)) + "\n") except: debug_cnt2 += 1 debug_key2.append(key) continue time.sleep(1.3) # generate neg_sample by combining binance price history and coingecko statistics file_name_list = [] for root, dirs, files in os.walk("../../Data/Binance/data/concat"): for file in files: if file.endswith(".csv"): file_name_list.append(file) count = 0 # 先产生一个neg_sample_df neg_sample_df_symbol = [] neg_sample_df_pair = [] neg_sample_df_timestamp = [] neg_sample_df_channel = [] neg_sample_df_pre3d = [] for i in range(len(df)): if df.loc[i, "exchange"] != "binance": continue for symbol in binance_symbol_list: if symbol == df.loc[i, "coin"]: continue file_name = ( symbol + df.loc[i, "pair"] + "-1m-" + df.loc[i, "timestamp"].strftime("%Y-%m") + ".csv" ) if file_name in file_name_list: neg_sample_df_channel.append(df.loc[i, "channel_id"]) neg_sample_df_symbol.append(symbol) neg_sample_df_pair.append(df.loc[i, "pair"]) neg_sample_df_timestamp.append(df.loc[i, "timestamp"]) pre3d = df.loc[i, "timestamp"] + timedelta(days=-3) neg_sample_df_pre3d.append(pre3d.strftime("%Y%m%d")) neg_sample_df = pd.DataFrame( { "channel_id": neg_sample_df_channel, "coin": neg_sample_df_symbol, "pair": neg_sample_df_pair, "timestamp": neg_sample_df_timestamp, "pre3d": neg_sample_df_pre3d, } ) neg_sample_df["timestamp"] = neg_sample_df.timestamp.apply(pd.to_datetime) neg_sample_df["timestamp_unix"] = ( neg_sample_df["timestamp"].astype(int) / (10**6) ).astype(int) print("pause") for i in range(len(neg_sample_df)): try: file_name = ( neg_sample_df.loc[i, "coin"] + neg_sample_df.loc[i, "pair"] + "-1m-" + neg_sample_df.loc[i, "timestamp"].strftime("%Y-%m") + ".csv" ) statistics = pd.read_csv("../../Binance/data/concat/" + file_name) except: continue statistics["open_scale"] = statistics["open"] * 10**8 statistics["close_scale"] = statistics["close"] * 10**8 statistics["high_scale"] = statistics["high"] * 10**8 statistics["low_scale"] = statistics["low"] * 10**8 statistics["maker_buy_base_asset_volume"] = ( statistics["volume"] - statistics["taker_buy_base_asset_volume"] ) statistics["maker_buy_quote_asset_volume"] = ( statistics["quote_asset_volume"] - statistics["taker_buy_quote_asset_volume"] ) # before pump idx = np.max( statistics[ statistics.open_time < neg_sample_df.loc[i, "timestamp_unix"] ].index ) idx = idx - 30 debug_cnt2 = 0 debug_idx2 = [] try: ( pre_price_list, pre_volume_list, pre_volume_tb_list, pre_volume_q_list, pre_volume_tb_q_list, ) = pre_pump_statistics(statistics, idx, bucket_num=72, bucket_size_min=60) return_rate = [] W = [1, 3, 6, 12, 24, 36, 48, 60, 72] for w in W: neg_sample_df.loc[i, "pre_" + str(w) + "h_return"] = ( pre_price_list[0] / pre_price_list[w] - 1.0 ) neg_sample_df.loc[i, "pre_" + str(w) + "h_price"] = pre_price_list[ w - 1 ] neg_sample_df.loc[i, "pre_" + str(w) + "h_price_avg"] = np.mean( pre_price_list[:w] ) neg_sample_df.loc[i, "pre_" + str(w) + "h_volume"] = np.sum( pre_volume_list[w - 1] ) neg_sample_df.loc[i, "pre_" + str(w) + "h_volume_avg"] = np.mean( pre_volume_list[:w] ) neg_sample_df.loc[i, "pre_" + str(w) + "h_volume_sum"] = np.sum( pre_volume_list[:w] ) neg_sample_df.loc[ i, "pre_" + str(w) + "h_volume_tb" ] = pre_volume_tb_list[w - 1] if w > 1: neg_sample_df.loc[i, "pre_" + str(w) + "h_volume_tb_avg"] = np.mean( pre_volume_tb_list[:w] ) neg_sample_df.loc[i, "pre_" + str(w) + "h_volume_tb_sum"] = np.sum( pre_volume_tb_list[:w] ) neg_sample_df.loc[ i, "pre_" + str(w) + "h_volume_quote" ] = pre_volume_q_list[w - 1] if w > 1: neg_sample_df.loc[ i, "pre_" + str(w) + "h_volume_quote_avg" ] = np.mean(pre_volume_q_list[:w]) neg_sample_df.loc[ i, "pre_" + str(w) + "h_volume_quote_sum" ] = np.sum(pre_volume_q_list[:w]) neg_sample_df.loc[ i, "pre_" + str(w) + "h_volume_quote_tb" ] = pre_volume_tb_q_list[w - 1] if w > 1: neg_sample_df.loc[ i, "pre_" + str(w) + "h_volume_quote_tb_avg" ] = np.mean(pre_volume_tb_q_list[:w]) neg_sample_df.loc[ i, "pre_" + str(w) + "h_volume_quote_tb_sum" ] = np.sum(pre_volume_tb_q_list[:w]) debug_cnt2 += 1 except: debug_idx2.append(i) continue print("pause") neg_coin_gecko_df = pd.read_csv( "raw/neg_coin_gecko_statistics.txt", delimiter="\t", names=[ "key", "pre_3d_market_cap_usd", "pre_3d_market_cap_btc", "pre_3d_price_usd", "pre_3d_price_btc", "pre_3d_volume_usd", "pre_3d_volume_btc", "pre_3d_twitter_index", "pre_3d_reddit_index", "pre_3d_alexa_index", ], ) neg_coin_gecko_df[["coin", "date"]] = neg_coin_gecko_df.key.str.split( "_", expand=True ) neg_coin_gecko_df_new = pd.merge( left=neg_sample_df, right=neg_coin_gecko_df, how="left", left_on=["coin", "pre3d"], right_on=["coin", "date"], sort=False, ) print("pause") # symbol2coinId = dict( # {'REN': 'republic-protocol', # 'SKY': 'skycoin', # 'MET': 'metronome', # 'REAP': 'reapchain', # 'BNT': 'bancor', # 'SOUL': 'phantasma', # 'SWP': 'kava-swap', # 'KNC': 'kyber-network', # 'DATA': 'streamr', # 'LOOM': 'loom-network', # 'MORE': 'legends-room', # 'CDT': 'blox', # 'SNX': 'havven', # 'MANA': 'decentraland', # 'VIBE': 'vibe', # 'BAS': 'basis-share', # 'GAM': 'gamma', # 'ELF': 'aelf', # 'GAS': 'gas', # 'GOD': 'bitcoin-god', # 'ETHOS': 'ethos', # 'GRT': 'the-graph', # 'STORM': 'storm', # 'AKRO': 'akropolis', # 'DAI': 'dai', # 'INK': 'ink', # 'FTM': 'fantom', # 'GVT': 'genesis-vision', # 'ENJ': 'enjincoin', # 'HC': 'hshare', # 'SUSD': 'nusd', # 'BSC': 'bitsonic-token', # 'BTCST': 'btc-standard-hashrate-token', # 'CREAM': 'cream-2', # 'TKN': 'tokencard', # 'KEEP': 'keep-network', # 'LRC': 'loopring', # 'SNT': 'status', # 'AST': 'airswap', # 'ADX': 'adex', # 'FXS': 'frax-share', # 'LINK': 'chainlink', # 'ACM': 'ac-milan-fan-token', # 'SIG': 'signal-token', # 'ORC': 'orbit-chain', # 'PHB': 'phoenix-global', # 'GNT': 'greentrust', # 'HONOR': 'honor-token', # 'PAX': 'payperex', # 'CVC': 'civic', # 'BOX': 'defibox', # 'PIE': 'pie-share', # 'BAT': 'basic-attention-token', # 'BTS': 'bitshares', # 'TCT': 'tokenclub' # }) # cg = CoinGeckoAPI() # coin_list = cg.get_coins_list() # # symbol2id = {} # for c in coin_list: # symbol2id[c["symbol"]] = c["id"] # for s in symbol2coinId.keys(): # symbol2id[s.lower()] = symbol2coinId[s] # 先random产生,然后去读coin_geko数据和binance的数据。 # def pre_pump_statistics(statistics, idx, bucket_num=72, bucket_size_min=60): # price_list = [] # volume_list = [] # volume_tb_list = [] # volume_q_list = [] # volume_tb_q_list = [] # # for j in range(bucket_num + 1): # C = 0 # V = 0 # V_tb = 0 # V_q = 0 # V_q_tb = 0 # prices = [] # # for i in range(idx - (j + 1) * bucket_size_min, idx - j * bucket_size_min): # p = float(statistics.loc[i, "high"] + statistics.loc[i, "low"]) / 2 # v = float(statistics.loc[i, "volume"]) # v_tb = float(statistics.loc[i, "taker_buy_base_asset_volume"]) # v_q = float(statistics.loc[i, "quote_asset_volume"]) # v_q_tb = float(statistics.loc[i, "taker_buy_quote_asset_volume"]) # # C += p * v # V += v # V_tb += v_tb # V_q += v_q # V_q_tb += v_q_tb # prices.append(p) # # if V != 0: # AggregatedPrice = C / V # # else: # AggregatedPrice = np.mean(prices) # # price_list.append(AggregatedPrice) # volume_list.append(V) # volume_tb_list.append(V_tb) # volume_q_list.append(V_q) # volume_tb_q_list.append(V_q_tb) # # return price_list, volume_list, volume_tb_list, volume_q_list, volume_tb_q_list # # with open("coin_date_to_statistics_pre3d_dict", "rb") as f: # coin_date_to_statistics_pre3d = pkl.load(f) # # debug_cnt3 = 0 # debug_idx3 = [] # for i in range(len(df)): # # key = df.loc[i, "coin"] + "_" + df.loc[i, "timestamp"].strftime("%Y%m%d") # try: # market_cap_usd = coin_date_to_statistics_pre3d[key]["market_data"]["market_cap"]["usd"] # market_cap_btc = coin_date_to_statistics_pre3d[key]["market_data"]["market_cap"]["btc"] # price_usd = coin_date_to_statistics_pre3d[key]["market_data"]["current_price"]["usd"] # price_btc = coin_date_to_statistics_pre3d[key]["market_data"]["current_price"]["btc"] # volume_usd = coin_date_to_statistics_pre3d[key]["market_data"]["total_volume"]["usd"] # volume_btc = coin_date_to_statistics_pre3d[key]["market_data"]["total_volume"]["btc"] # # twitter_follower = coin_date_to_statistics_pre3d[key]["community_data"]["twitter_followers"] # reddit_subscriber = coin_date_to_statistics_pre3d[key]["community_data"]["reddit_subscribers"] # alexa_rank = coin_date_to_statistics_pre3d[key]["public_interest_stats"]["alexa_rank"] # # if market_cap_usd != 0: # df.loc[i, "pre_3d_market_cap_usd"] = market_cap_usd # # if market_cap_btc != 0: # df.loc[i, "pre_3d_market_cap_btc"] = market_cap_btc # # df.loc[i, "pre_3d_price_usd"] = price_usd # df.loc[i, "pre_3d_price_btc"] = price_btc # # df.loc[i, "pre_3d_volume_usd"] = volume_usd # df.loc[i, "pre_3d_volume_btc"] = volume_btc # # if twitter_follower: # df.loc[i, "pre_3d_twitter_index"] = twitter_follower # # if reddit_subscriber: # df.loc[i, "pre_3d_reddit_index"] = reddit_subscriber # # if alexa_rank: # df.loc[i, "pre_3d_alexa_index"] = alexa_rank # # debug_cnt3 += 1 # except: # debug_idx3.append(key) # continue # # print("pause") # # df.to_csv("pump_sample_raw.csv", index = False) File: TargetCoinPrediction\\FeatGeneration\\pos_sample_process.py # -*- coding:utf-8 -*- import numpy as np import pandas as pd from pycoingecko import CoinGeckoAPI import pickle as pkl import json from datetime import * import time with open("raw/binanceSymbol2CoinId.json", "r") as f: symbol2coinId = json.load(f) cg = CoinGeckoAPI() coin_list = cg.get_coins_list() symbol2id = {} for c in coin_list: symbol2id[c["symbol"]] = c["id"] for s in symbol2coinId.keys(): symbol2id[s.lower()] = symbol2coinId[s] def pre_pump_statistics(statistics, idx, bucket_num=72, bucket_size_min=60): price_list = [] volume_list = [] volume_tb_list = [] volume_q_list = [] volume_tb_q_list = [] for j in range(bucket_num + 1): C = 0 V = 0 V_tb = 0 V_q = 0 V_q_tb = 0 prices = [] for i in range(idx - (j + 1) * bucket_size_min, idx - j * bucket_size_min): p = float(statistics.loc[i, "high"] + statistics.loc[i, "low"]) / 2 v = float(statistics.loc[i, "volume"]) v_tb = float(statistics.loc[i, "taker_buy_base_asset_volume"]) v_q = float(statistics.loc[i, "quote_asset_volume"]) v_q_tb = float(statistics.loc[i, "taker_buy_quote_asset_volume"]) C += p * v V += v V_tb += v_tb V_q += v_q V_q_tb += v_q_tb prices.append(p) if V != 0: AggregatedPrice = C / V else: AggregatedPrice = np.mean(prices) price_list.append(AggregatedPrice) volume_list.append(V) volume_tb_list.append(V_tb) volume_q_list.append(V_q) volume_tb_q_list.append(V_q_tb) return price_list, volume_list, volume_tb_list, volume_q_list, volume_tb_q_list if __name__ == "__main__": debug_cnt1 = 0 debug_cnt2 = 0 debug_idx1 = [] debug_idx2 = [] # train/validation/test 要根据时间点分,否则会有leakage df = pd.read_csv("../../Data/Telegram/Labeled/PD_logs_cleaned.txt", sep="\t") df["timestamp"] = df.timestamp.apply(pd.to_datetime) df["timestamp_unix"] = (df["timestamp"].astype(int) / (10**6)).astype(int) for i in range(len(df)): if df.loc[i, "exchange"] != "binance": continue try: file_name = ( df.loc[i, "coin"] + df.loc[i, "pair"] + "-1m-" + df.loc[i, "timestamp"].strftime("%Y-%m") + ".csv" ) statistics = pd.read_csv("../../Binance/data/concat/" + file_name) debug_cnt1 += 1 except: debug_idx1.append(i) continue statistics["open_scale"] = statistics["open"] * 10**8 statistics["close_scale"] = statistics["close"] * 10**8 statistics["high_scale"] = statistics["high"] * 10**8 statistics["low_scale"] = statistics["low"] * 10**8 statistics["maker_buy_base_asset_volume"] = ( statistics["volume"] - statistics["taker_buy_base_asset_volume"] ) statistics["maker_buy_quote_asset_volume"] = ( statistics["quote_asset_volume"] - statistics["taker_buy_quote_asset_volume"] ) idx = np.max( statistics[statistics.open_time < df.loc[i, "timestamp_unix"]].index ) insider_price = ( statistics.loc[idx - 60, "high"] + statistics.loc[idx - 60, "low"] ) / 2 outsider_price = statistics.loc[idx, "open"] highest_price = np.max(statistics.loc[range(idx, idx + 60), "high"].values) outsider_avg_price = ( statistics.loc[idx, "high"] + statistics.loc[idx, "low"] ) / 2 outsider_next_avg_price = ( statistics.loc[idx + 1, "high"] + statistics.loc[idx + 1, "low"] ) / 2 insider_return = highest_price / insider_price outsider_return = highest_price / outsider_price outsider_avg_return = highest_price / outsider_avg_price outsider_next_avg_return = outsider_next_avg_price / outsider_avg_price # after pump df.loc[i, "insider_price"] = insider_price df.loc[i, "outsider_price"] = outsider_price df.loc[i, "highest_price"] = highest_price df.loc[i, "outsider_avg_price"] = outsider_avg_price df.loc[i, "outsider_next_avg_price"] = outsider_next_avg_price df.loc[i, "insider_return"] = insider_return df.loc[i, "outsider_return"] = outsider_return df.loc[i, "outsider_avg_return"] = outsider_avg_return df.loc[i, "outsider_next_avg_return"] = outsider_next_avg_return # before pump idx = np.max( statistics[statistics.open_time < df.loc[i, "timestamp_unix"]].index ) idx = idx - 30 try: ( pre_price_list, pre_volume_list, pre_volume_tb_list, pre_volume_q_list, pre_volume_tb_q_list, ) = pre_pump_statistics(statistics, idx, bucket_num=72, bucket_size_min=60) return_rate = [] W = [1, 3, 6, 12, 24, 36, 48, 60, 72] for w in W: df.loc[i, "pre_" + str(w) + "h_return"] = ( pre_price_list[0] / pre_price_list[w] - 1.0 ) df.loc[i, "pre_" + str(w) + "h_price"] = pre_price_list[w - 1] df.loc[i, "pre_" + str(w) + "h_price_avg"] = np.mean(pre_price_list[:w]) df.loc[i, "pre_" + str(w) + "h_volume"] = np.sum(pre_volume_list[w - 1]) df.loc[i, "pre_" + str(w) + "h_volume_avg"] = np.mean( pre_volume_list[:w] ) df.loc[i, "pre_" + str(w) + "h_volume_sum"] = np.sum( pre_volume_list[:w] ) df.loc[i, "pre_" + str(w) + "h_volume_tb"] = pre_volume_tb_list[w - 1] if w > 1: df.loc[i, "pre_" + str(w) + "h_volume_tb_avg"] = np.mean( pre_volume_tb_list[:w] ) df.loc[i, "pre_" + str(w) + "h_volume_tb_sum"] = np.sum( pre_volume_tb_list[:w] ) df.loc[i, "pre_" + str(w) + "h_volume_quote"] = pre_volume_q_list[w - 1] if w > 1: df.loc[i, "pre_" + str(w) + "h_volume_quote_avg"] = np.mean( pre_volume_q_list[:w] ) df.loc[i, "pre_" + str(w) + "h_volume_quote_sum"] = np.sum( pre_volume_q_list[:w] ) df.loc[i, "pre_" + str(w) + "h_volume_quote_tb"] = pre_volume_tb_q_list[ w - 1 ] if w > 1: df.loc[i, "pre_" + str(w) + "h_volume_quote_tb_avg"] = np.mean( pre_volume_tb_q_list[:w] ) df.loc[i, "pre_" + str(w) + "h_volume_quote_tb_sum"] = np.sum( pre_volume_tb_q_list[:w] ) debug_cnt2 += 1 except: debug_idx2.append(i) continue with open("raw/coinDate2Statistics_pred3d.json", "r") as f: coin_date_to_statistics_pre3d = json.load(f) debug_cnt3 = 0 debug_idx3 = [] for i in range(len(df)): key = df.loc[i, "coin"] + "_" + df.loc[i, "timestamp"].strftime("%Y%m%d") try: market_cap_usd = coin_date_to_statistics_pre3d[key]["market_data"][ "market_cap" ]["usd"] market_cap_btc = coin_date_to_statistics_pre3d[key]["market_data"][ "market_cap" ]["btc"] price_usd = coin_date_to_statistics_pre3d[key]["market_data"][ "current_price" ]["usd"] price_btc = coin_date_to_statistics_pre3d[key]["market_data"][ "current_price" ]["btc"] volume_usd = coin_date_to_statistics_pre3d[key]["market_data"][ "total_volume" ]["usd"] volume_btc = coin_date_to_statistics_pre3d[key]["market_data"][ "total_volume" ]["btc"] twitter_follower = coin_date_to_statistics_pre3d[key]["community_data"][ "twitter_followers" ] reddit_subscriber = coin_date_to_statistics_pre3d[key]["community_data"][ "reddit_subscribers" ] alexa_rank = coin_date_to_statistics_pre3d[key]["public_interest_stats"][ "alexa_rank" ] if market_cap_usd != 0: df.loc[i, "pre_3d_market_cap_usd"] = market_cap_usd if market_cap_btc != 0: df.loc[i, "pre_3d_market_cap_btc"] = market_cap_btc df.loc[i, "pre_3d_price_usd"] = price_usd df.loc[i, "pre_3d_price_btc"] = price_btc df.loc[i, "pre_3d_volume_usd"] = volume_usd df.loc[i, "pre_3d_volume_btc"] = volume_btc if twitter_follower: df.loc[i, "pre_3d_twitter_index"] = twitter_follower if reddit_subscriber: df.loc[i, "pre_3d_reddit_index"] = reddit_subscriber if alexa_rank: df.loc[i, "pre_3d_alexa_index"] = alexa_rank debug_cnt3 += 1 except: debug_idx3.append(key) continue print("pause") df.to_csv("pump_sample_raw.csv", index=False) File: TargetCoinPrediction\\FeatGeneration\\raw\\binanceSymbol2CoinId.json { "ZRX":"0x", "1INCH":"1inch", "BULL":"3x-long-bitcoin-token", "BEAR":"3x-short-bitcoin-token", "AAVE":"aave", "ACA":"acala", "FARM":"harvest-finance", "TLM":"alien-worlds", "ALPHA":"alpha-finance", "AMP":"amp-token", "ANKR":"ankr", "ATA":"automata", "AUDIO":"audius", "AUTO":"auto", "AVAX":"avalanche", "BEL":"bella-protocol", "QI":"benqi", "BETA":"beta-finance", "BTCB":"bitcoin-bep2", "BNB":"binancecoin", "BCH":"bitcoin-cash", "ADA":"cardano", "DOGE":"dogecoin", "EOS":"eos", "FIL":"filecoin", "FIRO":"zcoin", "IOTX":"iotex", "LTC":"litecoin", "ONT":"ontology", "DOT":"polkadot", "XRP":"ripple", "BNX":"binaryx", "STX":"blockstack", "CAKE":"pancakeswap-token", "CTK":"certik", "CHESS":"tranchess", "CHZ":"chiliz", "CITY":"manchester-city-fan-token", "CLV":"clover-finance", "CVP":"concentrated-voting-power", "COMP":"compound-coin", "PEOPLE":"constitutiondao", "CVX":"convex-finance", "CRV":"curve-dao-token", "DYDX":"dydx", "ERN":"ethernity-chain", "EPS":"ellipsis", "ETH":"ethereum", "ENS":"ethereum-name-service", "FUEL":"etherparty", "POLY":"polymath", "BAR":"fc-barcelona-fan-token", "FLOW":"flow", "FLUX":"flux", "FOR":"force-protocol", "FRONT":"frontier-token", "FTT":"ftx-token", "GALA":"gala", "GTC":"gitcoin", "ONE":"harmony", "HNT":"helium", "HOT":"holotoken", "ILV":"illuvium", "IMX":"immutable-x", "IRIS":"iris-network", "WINGS":"wings", "JOE":"joe", "KP3R":"keep3rv1", "KEY":"selfkey", "LINA":"linear", "LIT":"litentry", "LUN":"lunyr", "LUNA":"terra-luna", "MFT":"mainframe", "MDX":"mdex", "MC":"merit-circle", "MASK":"mask-network", "ALICE":"my-neighbor-alice", "XNO":"nano", "ROSE":"oasis-network", "ONG":"ong", "PAXG":"pax-gold", "USDP":"paxos-standard", "PERP":"perpetual-protocol", "PNT":"pnetwork", "PHX":"phoenix", "PLA":"playdapp", "POA":"poa-network", "QUICK":"quick", "RAD":"radicle", "RARE":"superrare", "RGT":"rari-governance-token", "RAY":"raydium", "RSR":"reserve-rights-token", "RUNE":"thorchain", "SAND":"the-sandbox", "SC":"siacoin", "SHIB":"shiba-inu", "SLP":"smooth-love-potion", "SOL":"solana", "SPELL":"spell-token", "USDS":"stableusd", "SUB":"substratum", "SUN":"sun", "SUPER":"superfarm", "SUSHI":"sushi", "SXP":"swipe", "UST":"terrausd", "TFUEL":"theta-fuel", "TRIBE":"tribe", "TRX":"tron", "TRU":"truefi", "UNI":"uniswap", "USDC":"usd-coin", "WIN":"wink", "WBTC":"wrapped-bitcoin", "YFI":"yearn-finance", "YGG":"yield-guild-games", "BNBBULL":"3x-long-bnb-token", "EOSBULL":"3x-long-eos-token", "ETHBULL":"3x-long-ethereum-token", "XRPBULL":"3x-long-xrp-token", "BNBBEAR":"3x-short-bnb-token", "EOSBEAR":"3x-short-eos-token", "ETHBEAR":"3x-short-ethereum-token", "XRPBEAR":"3x-short-xrp-token", "GHST":"aavegotchi", "AGLD":"adventure-gold", "AERGO":"aergo", "AE":"aeternity", "DLT":"agrello", "AION":"aion", "ALCX":"alchemix", "ACH":"alchemy-pay", "ALGO":"algorand", "ALPACA":"alpaca-finance", "ALPINE":"alpine-f1-team-fan-token", "AMB":"amber", "FORTH":"ampleforth-governance-token", "ANC":"anchor-protocol", "ANY":"anyswap", "API3":"api3", "APPC":"appcoins", "ANT":"aragon", "ARDR":"ardor", "ARK":"ark", "ARPA":"arpa-chain", "AR":"arweave", "ASR":"as-roma-fan-token", "ATM":"atletico-madrid", "AUCTION":"auction", "REP":"augur", "IDEX":"aurora-dao", "AXS":"axie-infinity", "BADGER":"badger-dao", "BAKE":"bakerytoken", "BAL":"balancer", "BAND":"band-protocol", "BOND":"barnbridge", "BEAM":"beam", "CHAT":"beechat", "BICO":"biconomy", "BUSD":"binance-usd", "BTC":"bitcoin", "BCD":"bitcoin-diamond", "BTG":"bitcoin-gold", "BTT":"bittorrent", "BCPT":"blockmason-credit-protocol", "BLZ":"bluzelle", "FIDA":"bonfida", "BRD":"bread", "BTCST":"btc-standard-hashrate-token", "BURGER":"burger-swap", "BCN":"bytecoin", "BZRX":"bzx-protocol", "CTSI":"cartesi", "CELR":"celer-network", "CELO":"celo", "CHR":"chromaway", "CND":"cindicator", "CLOAK":"cloakcoin", "COCOS":"cocos-bcx", "C98":"coin98", "AVA":"concierge-io", "CFX":"conflux-token", "COS":"contentos", "CTXC":"cortex", "ATOM":"cosmos", "COTI":"coti", "CMT":"cybermiles", "DASH":"dash", "DCR":"decred", "DEGO":"dego-finance", "DENT":"dent", "DEXE":"dexe", "DF":"dforce-token", "DIA":"dia-data", "DGB":"digibyte", "DGD":"digixdao", "DNT":"district0x", "DOCK":"dock", "DODO":"dodo", "DREP":"drep-new", "DUSK":"dusk-network", "EZ":"easyfi", "XEC":"ecash", "EGLD":"elrond-erd-2", "ENG":"enigma", "ETHDOWN":"ethdown", "ETC":"ethereum-classic", "LEND":"ethlend", "VGX":"elrond-erd-2", "ETHUP":"ethup", "EVX":"everex", "PORTO":"fc-porto", "FET":"fetch-ai", "FIO":"fio-protocol", "FLM":"flamingo-finance", "FUN":"funfair", "GTO":"gifto", "GNO":"gnosis", "GO":"gochain", "GLM":"golem", "GNT":"greentrust", "GRS":"groestlcoin", "HBAR":"hedera-hashgraph", "HIGH":"highstreet", "HIVE":"hive", "ICN":"i-coin", "ICX":"icon", "RLC":"iexec-rlc", "INJ":"injective-protocol", "ICP":"internet-computer", "IOST":"iostoken", "JASMY":"jasmycoin", "JST":"just", "JUV":"juventus-fan-token", "KAVA":"kava", "HARD":"kava-lend", "KLAY":"klay-token", "KMD":"komodo", "KSM":"kusama", "KNC":"kyber-network", "LAZIO":"lazio-fan-token", "LOKA":"league-of-kingdoms", "LSK":"lisk", "LPT":"livepeer", "LOOM":"loom-network", "LTO":"lto-network", "MKR":"maker", "OM":"mantra-dao", "POND":"marlin", "MATIC":"matic-network", "MDT":"measurable-data-token", "MLN":"melon", "MTL":"metal", "MINA":"mina-protocol", "DAR":"mines-of-dalarnia", "MIR":"mirror-protocol", "MITH":"mithril", "MBOX":"mobox", "MOD":"modefi", "MDA":"moeda-loyalty-points", "XMR":"monero", "MTH":"monetha", "GLMR":"moonbeam", "MOVR":"moonriver", "MBL":"moviebloc", "NAV":"nav-coin", "NEAR":"near", "NEBL":"neblio", "NAS":"nebulas", "XEM":"nem", "NEO":"neo", "CKB":"nervos-network", "NBS":"new-bitshares", "NXS":"nexus", "NKN":"nkn", "NCASH":"nucleus-vision", "NU":"nucypher", "NULS":"nuls", "NMR":"numeraire", "OCEAN":"ocean-protocol", "OG":"og-fan-token", "OMG":"omisego", "OOKI":"ooki", "OAX":"openanx", "OXT":"orchid-protocol", "OGN":"origin-protocol", "ORN":"orion-protocol", "PSG":"paris-saint-germain-fan-token", "PAX":"payperex", "PERL":"perlin", "PHA":"pha", "PIVX":"pivx", "POE":"poet", "POLS":"polkastarter", "PPT":"populous", "POWR":"power-ledger", "PROM":"prometeus", "NPXS":"pundi-x", "PUNDIX":"pundi-x-2", "QLC":"qlink", "QTUM":"qtum", "QNT":"quant-network", "QSP":"quantstamp", "QKC":"quark-chain", "RDN":"raiden-network", "RAMP":"ramp", "RVN":"ravencoin", "REEF":"reef-finance", "RENBTC":"renbtc", "RNDR":"render-token", "REQ":"request-network", "RIF":"rif-token", "RCN":"ripio-credit-network", "SFP":"safepal", "SALT":"salt", "SANTOS":"santos-fc-fan-token", "SCRT":"secret", "SRM":"serum", "OST":"simple-token", "SNGLS":"singulardtv", "AGIX":"singularitynet", "SKL":"skale", "SNM":"sonm", "SSV":"ssv-network", "FIS":"stafi", "BOT":"starbots", "STEEM":"steem", "XLM":"stellar", "STORJ":"storj", "STMX":"storm", "STORM":"storm", "STPT":"stp-network", "STRAX":"stratis", "SYS":"syscoin", "TRB":"tellor", "TVK":"terra-virtua-kolect", "XTZ":"tezos", "THETA":"theta-token", "TNT":"tierion", "TNB":"time-new-bank", "TKO":"tokocrypto", "TOMO":"tomochain", "TORN":"tornado-cash", "TROY":"troy", "TUSD":"true-usd", "TWT":"trust-wallet-token", "UMA":"uma", "UNFI":"unifi-protocol-dao", "UTK":"utrust", "VET":"vechain", "XVS":"venus", "XVG":"verge", "VTHO":"vethor-token", "VIA":"viacoin", "VIB":"viberate", "VIDT":"v-id-blockchain", "VITE":"vite", "VOXEL":"voxies", "PYR":"vulcan-forged", "WABI":"wabi", "WTC":"waltonchain", "WAN":"wanchain", "WAVES":"waves", "WAXP":"wax", "WRX":"wazirx", "WPR":"wepower", "WING":"wing-finance", "WOO":"woo-network", "WNXM":"wrapped-nxm", "YFII":"yfii-finance", "ZEC":"zcash", "ZEN":"zencash", "ZIL":"zilliqa", "REN":"republic-protocol", "SKY":"skycoin", "MET":"metronome", "REAP":"reapchain", "BNT":"bancor", "SOUL":"phantasma", "SWP":"kava-swap", "DATA":"streamr", "MORE":"legends-room", "CDT":"blox", "SNX":"havven", "MANA":"decentraland", "VIBE":"vibe", "BAS":"basis-share", "GAM":"gamma", "ELF":"aelf", "GAS":"gas", "GOD":"bitcoin-god", "ETHOS":"ethos", "GRT":"the-graph", "AKRO":"akropolis", "DAI":"dai", "INK":"ink", "FTM":"fantom", "GVT":"genesis-vision", "ENJ":"enjincoin", "HC":"hshare", "SUSD":"nusd", "BSC":"bitsonic-token", "CREAM":"cream-2", "TKN":"tokencard", "KEEP":"keep-network", "LRC":"loopring", "SNT":"status", "AST":"airswap", "ADX":"adex", "FXS":"frax-share", "LINK":"chainlink", "ACM":"ac-milan-fan-token", "SIG":"signal-token", "ORC":"orbit-chain", "PHB":"phoenix-global", "HONOR":"honor-token", "CVC":"civic", "BOX":"defibox", "PIE":"pie-share", "BAT":"basic-attention-token", "BTS":"bitshares", "TCT":"tokenclub", "ARN":"Aeron", "ERD":"elrond-erd-2", "BQX":"ethos", "VEN":"vechain", "YOYO":"yoyow", "YOYOW":"yoyow", "XZC":"zcoin", "EDO":"pnetwork", "GXS":"gxchain", "GXC":"gxchain", "NANO":"nano" } File: TargetCoinPrediction\\FeatGeneration\\raw\\coinDate2Statistics_pred3d.json {"APPC_20190604": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.39884931155545633, "ars": 4.853648922944519, "aud": 0.15643444922140656, "bch": 0.00024418443807195316, "bdt": 9.169741078345833, "bhd": 0.04094282115460524, "bmd": 0.10859732677640205, "bnb": 0.0032972374573158425, "brl": 0.4261793492013129, "btc": 1.2659496936055861e-05, "cad": 0.14693185733649108, "chf": 0.10863587882740766, "clp": 77.06935086667697, "cny": 0.7498754011237341, "czk": 2.5132462141209224, "dkk": 0.7261143060250576, "eos": 0.012653322856499631, "eth": 0.00040528267594436, "eur": 0.09701867979550212, "gbp": 0.08592220494548936, "hkd": 0.8513215939319094, "huf": 31.59313430579086, "idr": 1551.3684508865304, "ils": 0.39399435946459016, "inr": 7.556125978973319, "jpy": 11.75837555671494, "krw": 129.11679167080325, "kwd": 0.03305333396162642, "lkr": 19.162754907271793, "ltc": 0.00094695760944203, "mmk": 166.1039139305934, "mxn": 2.1302234425805455, "myr": 0.4550770978565125, "ngn": 39.09503763950474, "nok": 0.9508566909834743, "nzd": 0.16617801857443953, "php": 5.652725103145586, "pkr": 15.948603410382399, "pln": 0.41640558979143577, "rub": 7.110475129080987, "sar": 0.40730513380757366, "sek": 1.0313488123954906, "sgd": 0.14919263648532277, "thb": 3.41581923045168, "try": 0.6342137096431998, "twd": 3.424833894547387, "uah": 2.926480761970489, "usd": 0.10859732677640205, "vef": 26985.093684343592, "vnd": 2530.64448824191, "xag": 0.007448376797319031, "xau": 8.318446633745624e-05, "xdr": 0.07833157759579913, "xlm": 0.8086777218320396, "xrp": 0.24696368226851084, "zar": 1.5838436852234135, "bits": 12.659496936055861, "link": 0.1064537713386937, "sats": 1265.9496936055862}, "market_cap": {"aed": 42456134.62812118, "ars": 516654200.320755, "aud": 16651907.986800257, "bch": 26001.76781045505, "bdt": 976087335.3623285, "bhd": 4358222.207319314, "bmd": 11559811.167511418, "bnb": 350997.2183443029, "brl": 45365322.94578179, "btc": 1347.539256355513, "cad": 15640389.830209447, "chf": 11563914.90047588, "clp": 8203766789.359498, "cny": 79821652.09278303, "czk": 267526397.8874826, "dkk": 77292365.40933156, "eos": 1346300.640097181, "eth": 43110.61416642009, "eur": 10327304.100831343, "gbp": 9146122.59573503, "hkd": 90620249.6949139, "huf": 3362980264.852423, "idr": 165137824989.07538, "ils": 41939341.7100665, "inr": 804323569.167627, "jpy": 1251638554.1622987, "krw": 13744037487.612688, "kwd": 3518413.4858107823, "lkr": 2039809217.7117915, "ltc": 100795.23037668495, "mmk": 17681189180.427177, "mxn": 226754943.89967024, "myr": 48441388.69745662, "ngn": 4161532020.3041105, "nok": 101215417.74011873, "nzd": 17689077.364371672, "php": 601713105.7816576, "pkr": 1697673868.0607274, "pln": 44324939.94070581, "rub": 756885572.0795107, "sar": 43356227.764868304, "sek": 109783526.65785585, "sgd": 15881041.979094675, "thb": 363602184.8647929, "try": 67509863.6490139, "twd": 364561764.7898078, "uah": 311513791.34209824, "usd": 11559811.167511418, "vef": 2872470221766.095, "vnd": 269378384206.57037, "xag": 792854.0401253344, "xau": 8854.699756202068, "xdr": 8338126.47455949, "xlm": 86065362.92871435, "xrp": 26284432.033704907, "zar": 168594701.76218498, "bits": 1347539256.355513, "link": 11331464.164063063, "sats": 134753925635.55132}, "total_volume": {"aed": 3631367.836301022, "ars": 44190585.45880723, "aud": 1424274.809894203, "bch": 2223.204325166395, "bdt": 83486925.64932114, "bhd": 372768.4605708194, "bmd": 988736.4178370069, "bnb": 30020.064481116482, "brl": 3880197.1981595554, "btc": 115.25979527973364, "cad": 1337757.4071242118, "chf": 989087.4192653388, "clp": 701686461.0105666, "cny": 6827323.838806318, "czk": 22882129.170718327, "dkk": 6610988.310583583, "eos": 115203.5826869832, "eth": 3689.9411165956803, "eur": 883317.3409672256, "gbp": 782288.2537926403, "hkd": 7750951.963528752, "huf": 287643198.6771418, "idr": 14124606290.108112, "ils": 3587165.386005198, "inr": 68795587.83760652, "jpy": 107055435.64130197, "krw": 1175558163.9873095, "kwd": 300937.7485513787, "lkr": 174469429.45396292, "ltc": 8621.680684009822, "mmk": 1512311524.8185728, "mxn": 19394855.82500714, "myr": 4143299.9589459747, "ngn": 355945110.42132246, "nok": 8657180.304770097, "nzd": 1512986.2187753806, "php": 51465863.252869494, "pkr": 145205830.32354274, "pln": 3791210.9205542165, "rub": 64738110.1997287, "sar": 3708354.8087394787, "sek": 9390029.760198057, "sgd": 1358340.9218707473, "thb": 31099705.39928101, "try": 5774269.128252592, "twd": 31181780.40932564, "uah": 26644468.987871718, "usd": 988736.4178370069, "vef": 245688781266.1303, "vnd": 23040533688.965363, "xag": 67814.57345119273, "xau": 757.3622086989691, "xdr": 713178.5443950866, "xlm": 7362696.0957803875, "xrp": 2248508.2624986335, "zar": 14420280.666446853, "bits": 115259795.27973364, "link": 969220.1793822742, "sats": 11525979527.973364}}, "community_data": {"facebook_likes": null, "twitter_followers": 25571, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3376, "reddit_accounts_active_48h": "127.791666666667"}, "developer_data": {"forks": 2, "stars": 6, "subscribers": 13, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1192397, "bing_matches": null}}, "REQ_20190608": {"id": "request-network", "symbol": "req", "name": "Request", "localization": {"en": "Request", "de": "Request", "es": "Request", "fr": "Request", "it": "Request", "pl": "Request", "ro": "Request", "hu": "Request", "nl": "Request", "pt": "Request", "sv": "Request", "vi": "Request", "tr": "Request", "ru": "Request", "ja": "\u30ea\u30af\u30a8\u30b9\u30c8\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "Request", "zh-tw": "Request", "ko": "\ub9ac\ud018\uc2a4\ud2b8\ub124\ud2b8\uc6cc\ud06c", "ar": "Request", "th": "Request", "id": "Request"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1031/thumb/Request_icon_green.png?1643250951", "small": "https://assets.coingecko.com/coins/images/1031/small/Request_icon_green.png?1643250951"}, "market_data": {"current_price": {"aed": 0.0789763634275849, "ars": 0.9606561500629819, "aud": 0.030759874512394945, "bch": 5.6014469642907317e-05, "bdt": 1.8189485176158697, "bhd": 0.008105547016560959, "bmd": 0.02150080908824936, "bnb": 0.0007365451788755095, "brl": 0.08288723159588299, "btc": 2.799400951522891e-06, "cad": 0.028792915994574682, "chf": 0.021338262971542177, "clp": 14.906285354394312, "cny": 0.14853403942435295, "czk": 0.49130638815194955, "dkk": 0.142681433187295, "eos": 0.0034238215306195497, "eth": 8.930492207479487e-05, "eur": 0.019102501338500586, "gbp": 0.01692543691426989, "hkd": 0.16859106918232647, "huf": 6.151381480148131, "idr": 307.00467776884125, "ils": 0.07782056593423699, "inr": 1.4903479326801832, "jpy": 2.327140071666667, "krw": 25.307957353505643, "kwd": 0.006543018717690597, "lkr": 3.784894927849964, "ltc": 0.00021064667171016166, "mmk": 32.83695400363286, "mxn": 0.42077341395413026, "myr": 0.08962612268436736, "ngn": 6.588922945094016, "nok": 0.18697608852155218, "nzd": 0.032534099777548016, "php": 1.1135411362160494, "pkr": 3.170358157465351, "pln": 0.08173281015431658, "rub": 1.401100224235769, "sar": 0.08063340928320716, "sek": 0.20287456079053068, "sgd": 0.02937922155760197, "thb": 0.6730075756758356, "try": 0.12421939794991536, "twd": 0.6738998592530003, "uah": 0.5836519976722263, "usd": 0.02150080908824936, "vef": 5342.685356612932, "vnd": 503.3061955098463, "xag": 0.0014505520851387432, "xau": 1.6222575465175022e-05, "xdr": 0.015464886952905108, "xlm": 0.1776963794068994, "xrp": 0.053651569719369296, "zar": 0.3147719095543982, "bits": 2.7994009515228906, "link": 0.024413655706087476, "sats": 279.9400951522891}, "market_cap": {"aed": 57596605.675907835, "ars": 700596115.9005135, "aud": 22432843.01834551, "bch": 40893.2362917526, "bdt": 1326539434.928023, "bhd": 5911287.568064085, "bmd": 15680306.980763517, "bnb": 538366.0031714722, "brl": 60448759.43386696, "btc": 2044.6594353420362, "cad": 20998361.49482432, "chf": 15561763.85998894, "clp": 10870992311.982489, "cny": 108324264.71520862, "czk": 358304422.69463557, "dkk": 104056022.43381692, "eos": 2502380.3316817335, "eth": 65248.38035648209, "eur": 13931247.138594251, "gbp": 12343537.65525704, "hkd": 122951639.08221388, "huf": 4486135827.196443, "idr": 223895183301.5768, "ils": 56753695.093849964, "inr": 1086894590.6479068, "jpy": 1697158026.062938, "krw": 18456818937.847298, "kwd": 4771752.618851051, "lkr": 2760282839.3587, "ltc": 153888.52471328137, "mmk": 23947634573.974182, "mxn": 306865489.25038004, "myr": 65363359.64931263, "ngn": 4805230074.25498, "nok": 136359634.37686005, "nzd": 23726766.270091157, "php": 812093478.8969642, "pkr": 2312107834.8253083, "pln": 59606852.39145578, "rub": 1021807204.4014547, "sar": 58805071.25460843, "sek": 147954217.8494878, "sgd": 21425947.7858829, "thb": 490817128.95836985, "try": 90591860.27956551, "twd": 491467861.69807005, "uah": 425651074.61179435, "usd": 15680306.980763517, "vef": 3896362511265.015, "vnd": 367055752112.4977, "xag": 1057871.91045721, "xau": 11830.948420055875, "xdr": 11278374.402053772, "xlm": 129798230.1276224, "xrp": 39187816.00009465, "zar": 229559741.23929802, "bits": 2044659435.3420362, "link": 17831533.372698262, "sats": 204465943534.2036}, "total_volume": {"aed": 1889814.5563049891, "ars": 22987409.108265266, "aud": 736048.8136040835, "bch": 1340.3625528026832, "bdt": 43525369.32029982, "bhd": 193956.5215959425, "bmd": 514489.9084213351, "bnb": 17624.688451140108, "brl": 1983397.1837073807, "btc": 66.98648098646412, "cad": 688981.7333119757, "chf": 510600.3647136694, "clp": 356690455.48039216, "cny": 3554250.6343471073, "czk": 11756403.10137253, "dkk": 3414204.4233151837, "eos": 81928.15528519604, "eth": 2136.96521797156, "eur": 457101.13158647734, "gbp": 405006.4559092749, "hkd": 4034192.5454179524, "huf": 147195562.79934373, "idr": 7346272779.871157, "ils": 1862157.636787892, "inr": 35662331.04314241, "jpy": 55685815.23798315, "krw": 605590636.5055002, "kwd": 156566.99648123846, "lkr": 90568231.02894945, "ltc": 5040.535283700075, "mmk": 785750963.548518, "mxn": 10068629.246594533, "myr": 2144651.183254333, "ngn": 157665432.43571815, "nok": 4474125.14876041, "nzd": 778504.0063570994, "php": 26645772.94946029, "pkr": 75863065.03175367, "pln": 1955773.1915444194, "rub": 33526734.882276297, "sar": 1929465.779057112, "sek": 4854557.508683843, "sgd": 703011.3586247128, "thb": 16104305.86845038, "try": 2972428.917120765, "twd": 16125657.199649924, "uah": 13966128.51171373, "usd": 514489.9084213351, "vef": 127844384300.40521, "vnd": 12043544843.959887, "xag": 34710.06167164538, "xau": 388.1877808029816, "xdr": 370057.15643021354, "xlm": 4252072.263542076, "xrp": 1283821.0449794147, "zar": 7532133.802758081, "bits": 66986480.98646411, "link": 584191.0151799623, "sats": 6698648098.646412}}, "community_data": {"facebook_likes": null, "twitter_followers": 41806, "reddit_average_posts_48h": 0.217, "reddit_average_comments_48h": 6.826, "reddit_subscribers": 30026, "reddit_accounts_active_48h": "139.916666666667"}, "developer_data": {"forks": 10, "stars": 129, "subscribers": 37, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 5, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 442629, "bing_matches": null}}, "ADX_20190705": {"id": "adex", "symbol": "adx", "name": "Ambire AdEx", "localization": {"en": "Ambire AdEx", "de": "Ambire AdEx", "es": "Ambire AdEx", "fr": "Ambire AdEx", "it": "Ambire AdEx", "pl": "Ambire AdEx", "ro": "Ambire AdEx", "hu": "Ambire AdEx", "nl": "Ambire AdEx", "pt": "Ambire AdEx", "sv": "Ambire AdEx", "vi": "Ambire AdEx", "tr": "Ambire AdEx", "ru": "Ambire AdEx", "ja": "\u30a2\u30c7\u30c3\u30af\u30b9", "zh": "Ambire AdEx", "zh-tw": "Ambire AdEx", "ko": "\uc560\ub4dc\uc5d1\uc2a4", "ar": "Ambire AdEx", "th": "Ambire AdEx", "id": "Ambire AdEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/847/thumb/ambireadex.png?1634704581", "small": "https://assets.coingecko.com/coins/images/847/small/ambireadex.png?1634704581"}, "market_data": {"current_price": {"aed": 0.48694327601267184, "ars": 5.61554608169235, "aud": 0.19033996846302853, "bch": 0.00031670265399271836, "bdt": 11.247529699287748, "bhd": 0.04998644672552705, "bmd": 0.13256718795307673, "bnb": 0.003986752487189795, "brl": 0.5091905689277698, "btc": 1.2488707323944756e-05, "cad": 0.17412037301696956, "chf": 0.13085693866129514, "clp": 90.21254303178347, "cny": 0.9083238584168939, "czk": 2.9889205353621575, "dkk": 0.8766281043148166, "eos": 0.0219424722855473, "eth": 0.00044898492673231386, "eur": 0.11745267258579502, "gbp": 0.10484553301145741, "hkd": 1.0357010409616079, "huf": 37.983150692315704, "idr": 1872.5638959975295, "ils": 0.473781873025503, "inr": 9.135006071064623, "jpy": 14.364251367061698, "krw": 153.87774719854318, "kwd": 0.0402723208938894, "lkr": 23.481732718714856, "ltc": 0.0010762835800108136, "mmk": 201.58774858173422, "mxn": 2.532444248186431, "myr": 0.5479267012476582, "ngn": 47.82626439783149, "nok": 1.1379965115456, "nzd": 0.19869183387126044, "php": 6.778850067119754, "pkr": 21.51544554632907, "pln": 0.49800852662392786, "rub": 8.345899884773921, "sar": 0.4971866100586187, "sek": 1.2406773549449714, "sgd": 0.179760841729997, "thb": 4.06384714670158, "try": 0.7494151725159772, "twd": 4.1053406765309, "uah": 3.4861771408960243, "usd": 0.13256718795307673, "vef": 32941.30797297965, "vnd": 3097.027943688444, "xag": 0.008749169270527183, "xau": 9.563794640498844e-05, "xdr": 0.0955023301717125, "xlm": 1.2499348622986501, "xrp": 0.3242974092416574, "zar": 1.8743467899872384, "bits": 12.488707323944755, "link": 0.036814473883490774, "sats": 1248.8707323944757}, "market_cap": {"aed": 44803251.518128484, "ars": 516681790.0636866, "aud": 17513024.41391509, "bch": 29144.832989616247, "bdt": 1034875984.3265516, "bhd": 4599211.972860337, "bmd": 12197398.2545724, "bnb": 367156.55432569695, "brl": 46850206.69581254, "btc": 1149.4678248577843, "cad": 16020672.737468073, "chf": 12040039.61969019, "clp": 8300382107.417794, "cny": 83574133.36067912, "czk": 275008127.45599025, "dkk": 80657833.01719695, "eos": 2024513.532868804, "eth": 41348.90298390591, "eur": 10806724.089975592, "gbp": 9646751.51596575, "hkd": 95294003.47358504, "huf": 3494798547.900083, "idr": 172293068513.30356, "ils": 43592281.62201627, "inr": 840504417.6252025, "jpy": 1321642989.175065, "krw": 14158165335.462902, "kwd": 3705423.220960044, "lkr": 2160534971.738003, "ltc": 99149.14322909317, "mmk": 18547923439.126896, "mxn": 233008118.59692225, "myr": 50414286.46579866, "ngn": 4400455368.302085, "nok": 104706125.83672585, "nzd": 18281472.70135133, "php": 623716435.8194052, "pkr": 1979618501.4200535, "pln": 45821356.15303944, "rub": 767899404.5148604, "sar": 45745732.28386105, "sek": 114153706.03659266, "sgd": 16539647.63840364, "thb": 373911243.49391717, "try": 68953075.48072852, "twd": 377729029.1475975, "uah": 320760299.9661299, "usd": 12197398.2545724, "vef": 3030902733753.189, "vnd": 284955001444.8388, "xag": 805003.8900052692, "xau": 8799.56902279616, "xdr": 8787091.084381735, "xlm": 115184413.07247505, "xrp": 29912718.37665038, "zar": 172457111.12727097, "bits": 1149467824.8577843, "link": 3388425.4086894025, "sats": 114946782485.77843}, "total_volume": {"aed": 2320965.415095059, "ars": 26765927.130578846, "aud": 907236.028661123, "bch": 1509.5308693959416, "bdt": 53610202.097999714, "bhd": 238255.29540820853, "bmd": 631867.9681439743, "bnb": 19002.448739164698, "brl": 2427004.8656410156, "btc": 59.5261485392517, "cad": 829926.9827587075, "chf": 623716.239486954, "clp": 429988876.9366547, "cny": 4329432.944128897, "czk": 14246384.60530349, "dkk": 4178358.3678894164, "eos": 104586.55413307692, "eth": 2140.04081826067, "eur": 559826.1736240091, "gbp": 499735.5298535171, "hkd": 4936563.281320035, "huf": 181042810.2326123, "idr": 8925384647.990963, "ils": 2258232.93134976, "inr": 43541073.882849224, "jpy": 68465737.75425649, "krw": 733442573.2808871, "kwd": 191953.9063065223, "lkr": 111923281.85105689, "ltc": 5129.995810794988, "mmk": 960847424.357714, "mxn": 12070636.982251208, "myr": 2611636.6859326814, "ngn": 227959006.8673016, "nok": 5424144.198938336, "nzd": 947044.3425221621, "php": 32310696.82023976, "pkr": 102551174.77398184, "pln": 2373706.8025280717, "rub": 39779879.80247216, "sar": 2369789.2211255785, "sek": 5913561.956740029, "sgd": 856811.7010672971, "thb": 19369912.563453592, "try": 3572010.9151108116, "twd": 19567687.237482693, "uah": 16616507.452716291, "usd": 631867.9681439743, "vef": 157011381611.70804, "vnd": 14761667530.853819, "xag": 41702.022161566136, "xau": 455.84850825810884, "xdr": 455202.10732669785, "xlm": 5957686.92048081, "xrp": 1545730.494972947, "zar": 8933882.630184658, "bits": 59526148.5392517, "link": 175472.43152871632, "sats": 5952614853.92517}}, "community_data": {"facebook_likes": null, "twitter_followers": 54185, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.522, "reddit_subscribers": 3884, "reddit_accounts_active_48h": "1902.54166666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 882596, "bing_matches": null}}, "SNM_20190807": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.04361311499164306, "ars": 0.528454548683827, "aud": 0.017457096563787935, "bch": 3.545252681356709e-05, "bdt": 1.0032609387537412, "bhd": 0.004475928332059568, "bmd": 0.011874315762264626, "bnb": 0.0004283556867493618, "brl": 0.046162589957380096, "btc": 1.1000448639031784e-06, "cad": 0.015696384896875092, "chf": 0.011663368542748086, "clp": 8.467633941649744, "cny": 0.08241012625326921, "czk": 0.27526088854820946, "dkk": 0.07980657565355082, "eos": 0.00277663387012072, "eth": 5.3602174520206845e-05, "eur": 0.010673822438699711, "gbp": 0.009764249851310233, "hkd": 0.09295629979752462, "huf": 3.4990046256665326, "idr": 168.0403173668955, "ils": 0.0414508614629135, "inr": 0.8272467687781159, "jpy": 1.2656284316374709, "krw": 14.303919510381656, "kwd": 0.003618044641183227, "lkr": 2.097122218063251, "ltc": 0.00012619289867446616, "mmk": 17.95693017608076, "mxn": 0.2292517384991093, "myr": 0.04936219558541693, "ngn": 4.29244640490104, "nok": 0.10589099195735946, "nzd": 0.018159224854810727, "php": 0.6117470434670742, "pkr": 1.8945470798693291, "pln": 0.04607234515758686, "rub": 0.7750793373397588, "sar": 0.04454293328740725, "sek": 0.11442565641148714, "sgd": 0.016348557941486045, "thb": 0.3644464993754267, "try": 0.06601929574766954, "twd": 0.37362534545965775, "uah": 0.3015838717299979, "usd": 0.011874315762264626, "vef": 2950.6207269902934, "vnd": 274.8838210167258, "xag": 0.0007328242284702669, "xau": 8.24231880006077e-06, "xdr": 0.0086475773227111, "xlm": 0.1443266641167674, "xrp": 0.03761728172628346, "zar": 0.17558182613872153, "bits": 1.1000448639031783, "link": 0.004904595832634625, "sats": 110.00448639031784}, "market_cap": {"aed": 18632385.893789176, "ars": 225766242.1107041, "aud": 7458017.154334556, "bch": 15145.884748626673, "bdt": 428612929.08352906, "bhd": 1912205.1688318576, "bmd": 5072942.704267115, "bnb": 182965.70272137, "brl": 19721572.057108857, "btc": 470.0680917589557, "cad": 6705806.283088496, "chf": 4982821.8771258285, "clp": 3617540807.126406, "cny": 35207236.956154674, "czk": 117596899.41615686, "dkk": 34094948.61175976, "eos": 1187562.187092018, "eth": 22910.982011966247, "eur": 4560068.196865715, "gbp": 4171480.785718854, "hkd": 39712771.01894954, "huf": 1494844026.6663928, "idr": 71790149350.59702, "ils": 17708628.39205566, "inr": 353416192.08390695, "jpy": 540701514.6920662, "krw": 6110917510.987212, "kwd": 1545700.2772766692, "lkr": 895932116.7699381, "ltc": 53961.876728317955, "mmk": 7671555965.967462, "mxn": 97940879.92467262, "myr": 21088506.906429846, "ngn": 1833818058.1655195, "nok": 45238727.506707735, "nzd": 7757980.256437838, "php": 261350444.36626995, "pkr": 809388008.4658208, "pln": 19683017.69255642, "rub": 331129232.9012505, "sar": 19029622.672246814, "sek": 48884905.07539967, "sgd": 6984427.515234984, "thb": 155698757.47936648, "try": 28204749.764892526, "twd": 159620142.18976498, "uah": 128842598.80297634, "usd": 5072942.704267115, "vef": 1260563571807.021, "vnd": 117435808703.97137, "xag": 313077.0140998346, "xau": 3521.2817193129395, "xdr": 3694416.18086687, "xlm": 61704327.95030004, "xrp": 16061723.203930866, "zar": 75012031.15575941, "bits": 470068091.7589557, "link": 2095818.1611931103, "sats": 47006809175.89557}, "total_volume": {"aed": 222591.24316945532, "ars": 2697109.687593424, "aud": 89096.97981919798, "bch": 180.94149015594195, "bdt": 5120411.59232357, "bhd": 22844.102100054824, "bmd": 60603.75893388041, "bnb": 2186.228267586858, "brl": 235603.17323135416, "btc": 5.614374342334908, "cad": 80110.7150482411, "chf": 59527.13315642048, "clp": 43216843.51454493, "cny": 420602.207752918, "czk": 1404867.856598072, "dkk": 407314.2881728343, "eos": 14171.296526171443, "eth": 273.57309069359474, "eur": 54476.7189056653, "gbp": 49834.47097133002, "hkd": 474427.4362500443, "huf": 17858109.645046618, "idr": 857638881.1588972, "ils": 211555.60168639044, "inr": 4222076.013270765, "jpy": 6459474.542067772, "krw": 73003894.049342, "kwd": 18465.662328358725, "lkr": 10703226.35029465, "ltc": 644.0593431697987, "mmk": 91648014.87274687, "mxn": 1170047.805139661, "myr": 251933.21969864212, "ngn": 21907652.81700843, "nok": 540443.1108567201, "nzd": 92680.48008495876, "php": 3122215.300068959, "pkr": 9669329.73790066, "pln": 235142.58466345654, "rub": 3955825.5191465486, "sar": 227336.8205127731, "sek": 584002.0625904466, "sgd": 83439.25530016709, "thb": 1860050.5691986617, "try": 336947.20307094656, "twd": 1906897.2748545536, "uah": 1539214.269402699, "usd": 60603.75893388041, "vef": 15059285168.421951, "vnd": 1402943391.2025626, "xag": 3740.165224867565, "xau": 42.06688718877453, "xdr": 44135.23287742894, "xlm": 736609.8843067613, "xrp": 191989.89812384456, "zar": 896128.9961900241, "bits": 5614374.3423349075, "link": 25031.921793228048, "sats": 561437434.2334908}}, "community_data": {"facebook_likes": null, "twitter_followers": 31129, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.458, "reddit_subscribers": 9946, "reddit_accounts_active_48h": "865.4"}, "developer_data": {"forks": 62, "stars": 324, "subscribers": 70, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1514, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 3865, "deletions": -1032}, "commit_count_4_weeks": 18}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "DATA_20190815": {"id": "streamr", "symbol": "data", "name": "Streamr", "localization": {"en": "Streamr", "de": "Streamr", "es": "Streamr", "fr": "Streamr", "it": "Streamr", "pl": "Streamr", "ro": "Streamr", "hu": "Streamr", "nl": "Streamr", "pt": "Streamr", "sv": "Streamr", "vi": "Streamr", "tr": "Streamr", "ru": "Streamr", "ja": "Streamr", "zh": "Streamr", "zh-tw": "Streamr", "ko": "Streamr", "ar": "Streamr", "th": "Streamr", "id": "Streamr"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/17869/thumb/DATA_new_symbol_3x.png?1629692324", "small": "https://assets.coingecko.com/coins/images/17869/small/DATA_new_symbol_3x.png?1629692324"}}, "QSP_20190829": {"id": "quantstamp", "symbol": "qsp", "name": "Quantstamp", "localization": {"en": "Quantstamp", "de": "Quantstamp", "es": "Quantstamp", "fr": "Quantstamp", "it": "Quantstamp", "pl": "Quantstamp", "ro": "Quantstamp", "hu": "Quantstamp", "nl": "Quantstamp", "pt": "Quantstamp", "sv": "Quantstamp", "vi": "Quantstamp", "tr": "Quantstamp", "ru": "Quantstamp", "ja": "\u30af\u30aa\u30f3\u30c8\u30b9\u30bf\u30f3\u30d7", "zh": "Quantstamp", "zh-tw": "Quantstamp", "ko": "\ud000\ud2b8\uc2a4\ud0ec\ud504", "ar": "Quantstamp", "th": "Quantstamp", "id": "Quantstamp"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1219/thumb/0_E0kZjb4dG4hUnoDD_.png?1604815917", "small": "https://assets.coingecko.com/coins/images/1219/small/0_E0kZjb4dG4hUnoDD_.png?1604815917"}, "market_data": {"current_price": {"aed": 0.040850347248056154, "ars": 0.6079617157548988, "aud": 0.016578579028449513, "bch": 3.633136856994887e-05, "bdt": 0.9232812976375561, "bhd": 0.00412398324537809, "bmd": 0.011121793424463969, "bnb": 0.00042626599380943904, "brl": 0.045907493448920464, "btc": 1.0995499493105297e-06, "cad": 0.014807299964082608, "chf": 0.010820081412445115, "clp": 7.819658474090055, "cny": 0.0789202461399963, "czk": 0.2582807413887216, "dkk": 0.07440647740047104, "eos": 0.003127771416405485, "eth": 5.958122184929547e-05, "eur": 0.009978817836025236, "gbp": 0.009070300774767616, "hkd": 0.08722989409708455, "huf": 3.285689187802541, "idr": 156.78343316857854, "ils": 0.03905785892362868, "inr": 0.7953350071724198, "jpy": 1.1664175485291537, "krw": 13.497986555142685, "kwd": 0.003368235138598915, "lkr": 1.9693863545158428, "ltc": 0.000153638803216948, "mmk": 16.614769355374552, "mxn": 0.22271458063249683, "myr": 0.046628363611520514, "ngn": 3.408273594926983, "nok": 0.10003373643727105, "nzd": 0.017479955898328625, "php": 0.5777705175684356, "pkr": 1.7462735691915714, "pln": 0.04370412158821969, "rub": 0.7372025162438819, "sar": 0.04170950579009605, "sek": 0.10714448842858243, "sgd": 0.015468323756265627, "thb": 0.3415780805488496, "try": 0.06483679697915162, "twd": 0.3496007751137938, "uah": 0.2746871884203406, "usd": 0.011121793424463969, "vef": 2763.628225536514, "vnd": 255.93567677873543, "xag": 0.0006289618860989714, "xau": 7.188015090231067e-06, "xdr": 0.008117752533342555, "xlm": 0.1553245873004601, "xrp": 0.041165918251841016, "zar": 0.1707865712362847, "bits": 1.0995499493105296, "link": 0.005353563789523594, "sats": 109.95499493105298}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 1105807.7383292424, "ars": 16457357.5300925, "aud": 448777.6044800873, "bch": 983.4802202483852, "bdt": 24992972.455842625, "bhd": 111635.09964278787, "bmd": 301063.90915579704, "bnb": 11538.903982352622, "brl": 1242703.3042058384, "btc": 29.764516694162683, "cad": 400829.56418011873, "chf": 292896.6474282187, "clp": 211676018.30244133, "cny": 2136349.4993695356, "czk": 6991589.098490533, "dkk": 2014163.0129025648, "eos": 84667.91763075606, "eth": 1612.847395885904, "eur": 270123.87227576505, "gbp": 245530.56366464615, "hkd": 2361289.399095289, "huf": 88942708.5540788, "idr": 4244084697.416853, "ils": 1057285.5691545107, "inr": 21529501.332139973, "jpy": 31574604.334555298, "krw": 365386807.948153, "kwd": 91177.2048878332, "lkr": 53310750.51478941, "ltc": 4158.960423843868, "mmk": 449757266.74154526, "mxn": 6028822.844679396, "myr": 1262217.0625416802, "ngn": 92261034.960794, "nok": 2707885.9128079005, "nzd": 473177.6300615281, "php": 15640090.044425987, "pkr": 47271148.377906464, "pln": 1183058.6299712572, "rub": 19955870.686437428, "sar": 1129064.9253115293, "sek": 2900372.0263183885, "sgd": 418723.29762079363, "thb": 9246425.309947416, "try": 1755114.3786529156, "twd": 9463597.459753055, "uah": 7435707.1368486155, "usd": 301063.90915579704, "vef": 74810660949.98276, "vnd": 6928108840.247976, "xag": 17025.82640336047, "xau": 194.57760448739174, "xdr": 219745.3430371797, "xlm": 4204594.1383721735, "xrp": 1114350.1591771883, "zar": 4623145.818785879, "bits": 29764516.69416268, "link": 144919.50901044335, "sats": 2976451669.4162683}}, "community_data": {"facebook_likes": null, "twitter_followers": 56526, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.696, "reddit_subscribers": 8543, "reddit_accounts_active_48h": "987.625"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 585298, "bing_matches": null}}, "DATA_20190908": {"id": "streamr", "symbol": "data", "name": "Streamr", "localization": {"en": "Streamr", "de": "Streamr", "es": "Streamr", "fr": "Streamr", "it": "Streamr", "pl": "Streamr", "ro": "Streamr", "hu": "Streamr", "nl": "Streamr", "pt": "Streamr", "sv": "Streamr", "vi": "Streamr", "tr": "Streamr", "ru": "Streamr", "ja": "Streamr", "zh": "Streamr", "zh-tw": "Streamr", "ko": "Streamr", "ar": "Streamr", "th": "Streamr", "id": "Streamr"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/17869/thumb/DATA_new_symbol_3x.png?1629692324", "small": "https://assets.coingecko.com/coins/images/17869/small/DATA_new_symbol_3x.png?1629692324"}}, "EDO_20190923": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "NXS_20191002": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.691279953910179, "ars": 10.757196091299498, "aud": 0.2782763270057959, "bch": 0.0008255243403813211, "bdt": 15.909146509702106, "bhd": 0.0709541634970207, "bmd": 0.18819684711732448, "bnb": 0.011925456556680498, "brl": 0.7826984543658894, "btc": 2.2927076005224327e-05, "cad": 0.24919332723652055, "chf": 0.1864870787612635, "clp": 136.68157679776792, "cny": 1.3404885026472797, "czk": 4.4447296269510455, "dkk": 1.2842552847286215, "eos": 0.06626170716269723, "eth": 0.001080090617903286, "eur": 0.17202640942246256, "gbp": 0.1531263646570111, "hkd": 1.475522187012972, "huf": 57.69362545228707, "idr": 2666.37292995825, "ils": 0.6553437659531256, "inr": 13.269594265213941, "jpy": 20.31867259902194, "krw": 226.40012242201163, "kwd": 0.05726416024716521, "lkr": 34.2215387157622, "ltc": 0.0033921533914157633, "mmk": 288.27063744220385, "mxn": 3.7070450354629303, "myr": 0.7891022284827505, "ngn": 68.12725865647147, "nok": 1.707760295702152, "nzd": 0.2988471833799565, "php": 9.766381282729999, "pkr": 29.51324429754143, "pln": 0.7538469367185678, "rub": 12.168996331453329, "sar": 0.7059451932217964, "sek": 1.8433975273565488, "sgd": 0.2599675967339865, "thb": 5.765692706709914, "try": 1.0672082373419074, "twd": 5.843323906145815, "uah": 4.534007388270797, "usd": 0.18819684711732448, "vef": 46764.59081737393, "vnd": 4366.298590914917, "xag": 0.01073294711574527, "xau": 0.0001257060840320169, "xdr": 0.13794904172438724, "xlm": 3.1564573523718695, "xrp": 0.7758486454983567, "zar": 2.8472301000379967, "bits": 22.927076005224325, "link": 0.11177112840570921, "sats": 2292.7076005224326}, "market_cap": {"aed": 41159815.04693995, "ars": 640499119.1153255, "aud": 16568977.715486567, "bch": 49201.404321995506, "bdt": 947253748.9190551, "bhd": 4224714.212857365, "bmd": 11205514.315800348, "bnb": 712142.9310115224, "brl": 46603005.68098315, "btc": 1368.0873746524087, "cad": 14837333.560694426, "chf": 11103712.218241291, "clp": 8138220108.218612, "cny": 79814637.36858273, "czk": 264645674.07769847, "dkk": 76466429.6910215, "eos": 3951082.3397007757, "eth": 64464.86974467927, "eur": 10242702.909243833, "gbp": 9117366.723050952, "hkd": 87854739.56185552, "huf": 3435162468.6517506, "idr": 158759726826.2587, "ils": 39020122.08833783, "inr": 790090964.759998, "jpy": 1209803353.1053836, "krw": 13480192956.246735, "kwd": 3409591.4849830996, "lkr": 2037600246.0292444, "ltc": 202353.5878342028, "mmk": 17164053511.851555, "mxn": 220722859.33834025, "myr": 46984295.716606796, "ngn": 4056396182.319726, "nok": 101682534.72129652, "nzd": 17793796.457775205, "php": 581504562.6613011, "pkr": 1757261540.49564, "pln": 44885144.30879932, "rub": 724559761.1739662, "sar": 42033004.7499986, "sek": 109758572.9989801, "sgd": 15478849.255274007, "thb": 343297739.33601695, "try": 63543132.441637576, "twd": 347920013.9912844, "uah": 269961401.9863996, "usd": 11205514.315800348, "vef": 2784431832431.0, "vnd": 259975775986.58902, "xag": 639055.2998012487, "xau": 7484.72328723884, "xdr": 8213686.815538907, "xlm": 188439850.89271873, "xrp": 46279615.493092485, "zar": 169528226.0837429, "bits": 1368087374.6524086, "link": 6669523.387442001, "sats": 136808737465.24088}, "total_volume": {"aed": 211932.82942097844, "ars": 3297944.619064734, "aud": 85314.04535835671, "bch": 253.08951637216578, "bdt": 4877431.226527575, "bhd": 21753.150144255724, "bmd": 57697.44959632422, "bnb": 3656.110286285912, "brl": 239959.9425368885, "btc": 7.028990296409442, "cad": 76397.76998498887, "chf": 57173.26826674159, "clp": 41903881.54121934, "cny": 410967.3939846984, "czk": 1362666.6309687046, "dkk": 393727.39604531624, "eos": 20314.53538008916, "eth": 331.1345271745564, "eur": 52739.911634659235, "gbp": 46945.52986404921, "hkd": 452366.06413690565, "huf": 17687730.148249175, "idr": 817457465.8807205, "ils": 200915.5014205602, "inr": 4068196.4549786276, "jpy": 6229305.145667145, "krw": 69409821.96105643, "kwd": 17556.064568270325, "lkr": 10491650.287480215, "ltc": 1039.967471942809, "mmk": 88378104.24928583, "mxn": 1136507.052913518, "myr": 241923.2136543026, "ngn": 20886476.75386937, "nok": 523565.697795413, "nzd": 91620.6650864834, "php": 2994180.298076448, "pkr": 9048179.878485566, "pln": 231114.635026524, "rub": 3730774.7883479237, "sar": 216428.90318077194, "sek": 565149.4036684755, "sgd": 79700.94897437817, "thb": 1767647.9145577876, "try": 327185.0428207753, "twd": 1791448.1125162728, "uah": 1390037.4355954565, "usd": 57697.44959632422, "vef": 14337103213.509552, "vnd": 1338621218.8494415, "xag": 3290.510360381695, "xau": 38.53901145786476, "xdr": 42292.46134390401, "xlm": 967707.7048899077, "xrp": 237859.9259429201, "zar": 872904.7149427874, "bits": 7028990.296409442, "link": 34266.82830394258, "sats": 702899029.6409442}}, "community_data": {"facebook_likes": null, "twitter_followers": 22124, "reddit_average_posts_48h": 0.063, "reddit_average_comments_48h": 0.563, "reddit_subscribers": 3532, "reddit_accounts_active_48h": "2269.76470588235"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 436035, "bing_matches": null}}, "OST_20191022": {"id": "simple-token", "symbol": "ost", "name": "OST", "localization": {"en": "OST", "de": "OST", "es": "OST", "fr": "OST", "it": "OST", "pl": "OST", "ro": "OST", "hu": "OST", "nl": "OST", "pt": "OST", "sv": "OST", "vi": "OST", "tr": "OST", "ru": "OST", "ja": "\u30b7\u30f3\u30d7\u30eb\u30c8\u30fc\u30af\u30f3", "zh": "OST", "zh-tw": "OST", "ko": "\uc2ec\ud50c\ud1a0\ud070", "ar": "OST", "th": "OST", "id": "OST"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1367/thumb/ost.jpg?1547035393", "small": "https://assets.coingecko.com/coins/images/1367/small/ost.jpg?1547035393"}, "market_data": {"current_price": {"aed": 0.040818653303093325, "ars": 0.647884628877831, "aud": 0.01621206850410261, "bch": 5.238435491448716e-05, "bdt": 0.9419853595640999, "bhd": 0.004189245992094095, "bmd": 0.011112559431311474, "bnb": 0.0006098699527815412, "brl": 0.045707068196927166, "btc": 1.3961832795861952e-06, "cad": 0.01458690113751105, "chf": 0.01093112467347644, "clp": 7.89769218733774, "cny": 0.07869581212471839, "czk": 0.255071021650664, "dkk": 0.07427856975077217, "eos": 0.0038600416093426755, "eth": 6.429138308203159e-05, "eur": 0.009948663294154197, "gbp": 0.008560682396064539, "hkd": 0.08716147102508581, "huf": 3.291428977960146, "idr": 157.03198293228115, "ils": 0.039379021228766894, "inr": 0.7899974062516485, "jpy": 1.204212502774067, "krw": 13.100929690356027, "kwd": 0.003371006016047769, "lkr": 2.022666851204388, "ltc": 0.00020892149740473504, "mmk": 17.02599022845437, "mxn": 0.2122943353757744, "myr": 0.04652273005918547, "ngn": 4.017190234419098, "nok": 0.10178882187892684, "nzd": 0.017404034966383288, "php": 0.5700500623341582, "pkr": 1.7330036433130174, "pln": 0.042596662812103184, "rub": 0.7089812917176713, "sar": 0.04168453282142169, "sek": 0.10710062528709367, "sgd": 0.015158531194657618, "thb": 0.3366712234209107, "try": 0.06436394422615604, "twd": 0.3395109157454279, "uah": 0.2750479586147389, "usd": 0.011112559431311474, "vef": 2761.33369234957, "vnd": 257.09690885491636, "xag": 0.0006333747711148573, "xau": 7.457194131975869e-06, "xdr": 0.008068673827243215, "xlm": 0.1743454976733926, "xrp": 0.03770386814127672, "zar": 0.1642545187030264, "bits": 1.3961832795861953, "link": 0.004720937701916941, "sats": 139.61832795861952}, "market_cap": {"aed": 27538234.39748784, "ars": 437094252.96534884, "aud": 10937444.192953683, "bch": 35353.586292463806, "bdt": 635508806.18377, "bhd": 2826267.61893394, "bmd": 7497069.148831491, "bnb": 411611.34127128555, "brl": 30836195.116058815, "btc": 942.310719396774, "cad": 9841027.818213677, "chf": 7374664.500838515, "clp": 5328164480.076892, "cny": 53091994.59127993, "czk": 172083227.0007891, "dkk": 50111909.60461948, "eos": 2605675.2598642735, "eth": 43407.479145203506, "eur": 6711848.6173903225, "gbp": 5775449.686562976, "hkd": 58803336.839551225, "huf": 2220556911.1923966, "idr": 105941357785.1614, "ils": 26566989.08925672, "inr": 532970394.3250052, "jpy": 812419898.3131237, "krw": 8838519731.631914, "kwd": 2274243.423367179, "lkr": 1364588719.840834, "ltc": 141033.01366815288, "mmk": 11486555087.425735, "mxn": 143224009.0192771, "myr": 31386479.991583027, "ngn": 2710190497.302584, "nok": 68671653.98946662, "nzd": 11741602.321064737, "php": 384583296.22724134, "pkr": 1169167933.7602699, "pln": 28737765.461300842, "rub": 478313011.6954486, "sar": 28122398.528495602, "sek": 72255253.04260807, "sgd": 10226677.055229552, "thb": 227134663.08187664, "try": 43423024.51003201, "twd": 229050456.63509992, "uah": 185560633.238952, "usd": 7497069.148831491, "vef": 1862929036510.8738, "vnd": 173449988326.28668, "xag": 427305.2023275444, "xau": 5030.983223014862, "xdr": 5443516.949998465, "xlm": 117574146.781312, "xrp": 25426618.603657994, "zar": 110814029.14749552, "bits": 942310719.3967739, "link": 3186250.8792106374, "sats": 94231071939.6774}, "total_volume": {"aed": 628288.4814001522, "ars": 9972363.53138838, "aud": 249539.2443539033, "bch": 806.3099621137076, "bdt": 14499217.959668795, "bhd": 64481.67172592659, "bmd": 171046.6300229097, "bnb": 9387.234400887482, "brl": 703531.893947229, "btc": 21.490318800424955, "cad": 224524.35889957313, "chf": 168253.9516945255, "clp": 121562781.45933448, "cny": 1211300.9198332387, "czk": 3926101.717567844, "dkk": 1143309.8843991333, "eos": 59414.49520314089, "eth": 989.585206150443, "eur": 153131.7191342001, "gbp": 131767.65295107878, "hkd": 1341605.953050992, "huf": 50662301.34648564, "idr": 2417066172.055725, "ils": 606129.3904806839, "inr": 12159790.451643666, "jpy": 18535468.0624326, "krw": 201652003.53290883, "kwd": 51887.16626407972, "lkr": 31133273.184819333, "ltc": 3215.7594558936476, "mmk": 262067282.46369576, "mxn": 3267674.8199576675, "myr": 716086.7165909111, "ngn": 61833356.753281854, "nok": 1566752.9216838484, "nzd": 267886.21903004934, "php": 8774319.067475177, "pkr": 26674721.95207266, "pln": 655655.9422038182, "rub": 10912774.99546163, "sar": 641616.2637649075, "sek": 1648513.2108347984, "sgd": 233322.99754795013, "thb": 5182107.55567052, "try": 990702.0810926929, "twd": 5225816.640459933, "uah": 4233590.533893738, "usd": 171046.6300229097, "vef": 42502973807.661385, "vnd": 3957284559.039766, "xag": 9749.025038774756, "xau": 114.78255154317365, "xdr": 124194.5634068143, "xlm": 2683559.0865480243, "xrp": 580345.115295588, "zar": 2528236.81743603, "bits": 21490318.800424956, "link": 72665.57173010265, "sats": 2149031880.0424957}}, "community_data": {"facebook_likes": null, "twitter_followers": 17965, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 757, "reddit_accounts_active_48h": "16.2222222222222"}, "developer_data": {"forks": 22, "stars": 85, "subscribers": 46, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 44, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 847910, "bing_matches": null}}, "NAV_20200116": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.33190378978332347, "ars": 5.387042474356024, "aud": 0.13092988322364718, "bch": 0.0003380392840151476, "bdt": 7.645452719665242, "bhd": 0.03400173198560044, "bmd": 0.09036620897344012, "bnb": 0.005910580569351212, "brl": 0.36988461704865155, "btc": 1.1082995597454756e-05, "cad": 0.11807556109580153, "chf": 0.08795316009522228, "clp": 69.92532207930336, "cny": 0.6252709097499238, "czk": 2.0546112199584066, "dkk": 0.6074837673728457, "eos": 0.028368545186001282, "eth": 0.0006229115989968816, "eur": 0.08128874254964012, "gbp": 0.0692760912921738, "hkd": 0.7019172690459712, "huf": 27.137598973284685, "idr": 1241.086459482629, "ils": 0.313099937189085, "inr": 6.412594844331833, "jpy": 9.900973686174957, "krw": 104.72811101741992, "kwd": 0.027395329546179098, "lkr": 16.348342441748088, "ltc": 0.001777376375641636, "mmk": 132.42765930977038, "mxn": 1.6989597326541235, "myr": 0.36838508017694627, "ngn": 32.77691354004833, "nok": 0.8036575112780622, "nzd": 0.1361489836229084, "php": 4.5679192382431975, "pkr": 13.969871741562939, "pln": 0.3444317995305651, "rub": 5.513751351958513, "sar": 0.3390449794474502, "sek": 0.8586760739494517, "sgd": 0.1218498865459956, "thb": 2.7317706779995077, "try": 0.5312014935327518, "twd": 2.7071034139360295, "uah": 2.1574444414880385, "usd": 0.09036620897344012, "vef": 22454.886206067604, "vnd": 2090.105755087287, "xag": 0.005003811039340617, "xau": 5.795727178720558e-05, "xdr": 0.06551215795601203, "xlm": 1.852402557260839, "xrp": 0.42110245970956006, "zar": 1.2954615064874104, "bits": 11.082995597454756, "link": 0.04060224903654291, "sats": 1108.2995597454756}, "market_cap": {"aed": 22293461.306748934, "ars": 361862092.1955852, "aud": 8793816.395474244, "bch": 22677.82584915573, "bdt": 513533167.21603554, "bhd": 2283843.450170562, "bmd": 6069757.698464806, "bnb": 396967.7421913638, "brl": 24844574.397656016, "btc": 744.1646908686257, "cad": 7930988.199122044, "chf": 5908660.259389855, "clp": 4696775120.147269, "cny": 41998474.44298751, "czk": 137980760.81059372, "dkk": 40807035.6345982, "eos": 1899158.0216310134, "eth": 41781.50322796681, "eur": 5460378.304569736, "gbp": 4653719.64595916, "hkd": 47149677.49967057, "huf": 1822857492.4875524, "idr": 83363299960.4569, "ils": 21030435.77606388, "inr": 430724021.35358846, "jpy": 665152879.9468414, "krw": 7034424319.830605, "kwd": 1840101.6741088962, "lkr": 1098092733.11559, "ltc": 119013.31746648837, "mmk": 8894959893.928934, "mxn": 114110352.17475283, "myr": 24743852.838407643, "ngn": 2201574300.301756, "nok": 53983174.6000601, "nzd": 9147701.478567798, "php": 306824139.38171715, "pkr": 938334555.7280147, "pln": 23136119.698269084, "rub": 370350102.05869573, "sar": 22773123.90887011, "sek": 57679772.36382142, "sgd": 8183975.699994078, "thb": 183537126.91441736, "try": 35679456.074877605, "twd": 181831925.6051562, "uah": 144912187.38169023, "usd": 6069757.698464806, "vef": 1508259779465.6785, "vnd": 140391750916.82642, "xag": 336414.8636955644, "xau": 3894.477934488988, "xdr": 4400349.750352139, "xlm": 124307340.0261667, "xrp": 28261493.421261754, "zar": 87012829.39361155, "bits": 744164690.8686258, "link": 2726226.843380577, "sats": 74416469086.86256}, "total_volume": {"aed": 115240.02989573189, "ars": 1870430.39249309, "aud": 45460.052344650576, "bch": 117.37032958035464, "bdt": 2654571.0748160193, "bhd": 11805.71217064222, "bmd": 31375.973834048815, "bnb": 2052.207604974414, "brl": 128427.32032220883, "btc": 3.848117386121887, "cad": 40996.914194678386, "chf": 30538.141204758183, "clp": 24278711.044993572, "cny": 217099.77574993382, "czk": 713379.797701875, "dkk": 210923.91731628266, "eos": 9849.818218307882, "eth": 216.28060148894872, "eur": 28224.194510470945, "gbp": 24053.29218078933, "hkd": 243712.09235662813, "huf": 9422422.44061548, "idr": 430916564.06615824, "ils": 108711.1603804738, "inr": 2226511.5503876875, "jpy": 3437708.573127555, "krw": 36362557.512374036, "kwd": 9511.90885155639, "lkr": 5676293.943382302, "ltc": 617.1213254257369, "mmk": 45980093.89360256, "mxn": 589894.3501384004, "myr": 127906.66741240662, "ngn": 11380444.009726023, "nok": 279037.23451327323, "nzd": 47272.17171343613, "php": 1586023.3169379868, "pkr": 4850467.173599421, "pln": 119589.86940418901, "rub": 1914424.873099949, "sar": 117719.51622796783, "sek": 298140.1824223956, "sgd": 42307.394493805245, "thb": 948495.7517552417, "try": 184438.01450816556, "twd": 939931.0521777618, "uah": 749084.4322620454, "usd": 31375.973834048815, "vef": 7796541761.03809, "vnd": 725703824.7702543, "xag": 1737.3689349635117, "xau": 20.123294578205556, "xdr": 22746.42011865352, "xlm": 643171.1015322524, "xrp": 146210.62349958808, "zar": 449796.0774531659, "bits": 3848117.3861218872, "link": 14097.472029047174, "sats": 384811738.6121887}}, "community_data": {"facebook_likes": null, "twitter_followers": 49879, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 14060, "reddit_accounts_active_48h": "103.692307692308"}, "developer_data": {"forks": 76, "stars": 88, "subscribers": 25, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 275, "pull_request_contributors": 24, "code_additions_deletions_4_weeks": {"additions": 4, "deletions": -2}, "commit_count_4_weeks": 5}, "public_interest_stats": {"alexa_rank": 586166, "bing_matches": null}}, "SNGLS_20200308": {"id": "singulardtv", "symbol": "sngls", "name": "SingularDTV", "localization": {"en": "SingularDTV", "de": "SingularDTV", "es": "SingularDTV", "fr": "SingularDTV", "it": "SingularDTV", "pl": "SingularDTV", "ro": "SingularDTV", "hu": "SingularDTV", "nl": "SingularDTV", "pt": "SingularDTV", "sv": "SingularDTV", "vi": "SingularDTV", "tr": "SingularDTV", "ru": "SingularDTV", "ja": "SingularDTV", "zh": "SingularDTV", "zh-tw": "SingularDTV", "ko": "\uc2f1\uade4\ub7ec\ub514\ud2f0\ube44", "ar": "SingularDTV", "th": "SingularDTV", "id": "SingularDTV"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/521/thumb/singulardtv.png?1547034199", "small": "https://assets.coingecko.com/coins/images/521/small/singulardtv.png?1547034199"}, "market_data": {"current_price": {"aed": 0.033115119463801315, "ars": 0.5622238679816283, "aud": 0.013606399642236018, "bch": 2.824944421315108e-05, "bdt": 0.7661609854099231, "bhd": 0.00339516521696289, "bmd": 0.009015332533976175, "bnb": 0.0004509769176240173, "brl": 0.041335299668280756, "btc": 1.029785446350868e-06, "cad": 0.012067428286691132, "chf": 0.008626780717094329, "clp": 7.391654727686517, "cny": 0.06280441256469156, "czk": 0.2047057466494764, "dkk": 0.06048197275061403, "eos": 0.0025111840348528308, "eth": 4.023834473230132e-05, "eur": 0.008093911457008603, "gbp": 0.0070040118456460845, "hkd": 0.07006400908767586, "huf": 2.71866367894585, "idr": 127.65846098098268, "ils": 0.03111605962771737, "inr": 0.6625818645845786, "jpy": 0.9701683050523539, "krw": 10.68028414635093, "kwd": 0.0027590884300282012, "lkr": 1.6415491884623936, "ltc": 0.00014974993134284065, "mmk": 12.604757530950124, "mxn": 0.17608567198711528, "myr": 0.03768859765828741, "ngn": 3.298985367207482, "nok": 0.08344150042154176, "nzd": 0.014312327225644047, "php": 0.4564989988445397, "pkr": 1.3910038476120214, "pln": 0.03477101066697938, "rub": 0.5970584277276398, "sar": 0.03382947638312848, "sek": 0.08539350022179826, "sgd": 0.01248411695641146, "thb": 0.2825405216148136, "try": 0.0548213356058557, "twd": 0.2695223814357515, "uah": 0.2244724672574989, "usd": 0.009015332533976175, "vef": 2240.198725386314, "vnd": 209.38862121628938, "xag": 0.0005242698949948712, "xau": 5.505212811872553e-06, "xdr": 0.006535223569211865, "xlm": 0.15400313741443017, "xrp": 0.03845273623926137, "zar": 0.1376415894624813, "bits": 1.029785446350868, "link": 0.0019339215841543355, "sats": 102.97854463508679}, "market_cap": {"aed": 18536300.96349553, "ars": 314643272.9764313, "aud": 7615204.15342507, "bch": 15812.324074946058, "bdt": 428861222.36614156, "bhd": 1900455.299616534, "bmd": 5046363.106690491, "bnb": 252509.9655801472, "brl": 23137075.254228324, "btc": 576.4533048437127, "cad": 6754112.938351842, "chf": 4828420.776838739, "clp": 4137515235.6944013, "cny": 35154983.946448624, "czk": 114594327.33565967, "dkk": 33858573.26433984, "eos": 1405474.2140227163, "eth": 22514.983145367703, "eur": 4531371.65892651, "gbp": 3920231.85489076, "hkd": 39220081.74704317, "huf": 1522028303.15947, "idr": 71457258545.20338, "ils": 17417320.408217967, "inr": 370882456.5262177, "jpy": 543078243.2250408, "krw": 5978325470.465905, "kwd": 1544409.1506239832, "lkr": 918862752.0121865, "ltc": 83758.70769768348, "mmk": 7055555980.13102, "mxn": 98553654.78294685, "myr": 21096320.967519592, "ngn": 1846618300.971882, "nok": 46706992.21120684, "nzd": 8010748.186453703, "php": 255559025.6025402, "pkr": 778619143.708711, "pln": 19469499.66100023, "rub": 334224161.0102857, "sar": 18936164.68334346, "sek": 47801169.89181497, "sgd": 6988016.914710031, "thb": 158203483.39474714, "try": 30687943.32440619, "twd": 150866071.43761867, "uah": 125649228.46350424, "usd": 5046363.106690491, "vef": 1253958870273.488, "vnd": 117221235807.78737, "xag": 293683.84974727046, "xau": 3083.5801763432237, "xdr": 3658113.6624030443, "xlm": 86201278.41199115, "xrp": 21523521.816808842, "zar": 77029200.36945574, "bits": 576453304.8437127, "link": 1082570.6388110241, "sats": 57645330484.37127}, "total_volume": {"aed": 503673.19703938055, "ars": 8551293.113941468, "aud": 206950.14600481273, "bch": 429.6674181404306, "bdt": 11653128.819000218, "bhd": 51639.66632141819, "bmd": 137121.09251861594, "bnb": 6859.25310156136, "brl": 628700.209197854, "btc": 15.662795014076266, "cad": 183542.75278533067, "chf": 131211.310552156, "clp": 112425334.05850367, "cny": 955240.378921685, "czk": 3113526.375164698, "dkk": 919916.6142779656, "eos": 38194.51995548945, "eth": 612.0157820069196, "eur": 123106.49413665825, "gbp": 106529.37677771263, "hkd": 1065657.1386723004, "huf": 41350236.65991374, "idr": 1941655238.2274787, "ils": 473267.9659843016, "inr": 10077714.694655672, "jpy": 14756032.283263994, "krw": 162444615.88495445, "kwd": 41965.08763876725, "lkr": 24967577.98968679, "ltc": 2277.6613189731847, "mmk": 191715404.5136302, "mxn": 2678221.754855094, "myr": 573234.7272740741, "ngn": 50176793.3739107, "nok": 1269125.643016974, "nzd": 217687.13891229933, "php": 6943242.661245478, "pkr": 21156842.142353617, "pln": 528858.9137077371, "rub": 9081118.594230374, "sar": 514538.39816837, "sek": 1298815.1019691045, "sgd": 189880.48968154035, "thb": 4297375.039533428, "try": 833819.6514964512, "twd": 4099372.1819365392, "uah": 3414173.5576249612, "usd": 137121.09251861594, "vef": 34072896981.460815, "vnd": 3184751798.5541368, "xag": 7974.022090188025, "xau": 83.73299514649285, "xdr": 99399.21708783724, "xlm": 2342351.585366048, "xrp": 584857.0957961326, "zar": 2093496.2800279697, "bits": 15662795.014076266, "link": 29414.493527019993, "sats": 1566279501.4076266}}, "community_data": {"facebook_likes": null, "twitter_followers": 7505, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2140, "reddit_accounts_active_48h": "242.166666666667"}, "developer_data": {"forks": 13, "stars": 20, "subscribers": 23, "total_issues": 72, "closed_issues": 58, "pull_requests_merged": 4, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1276289, "bing_matches": null}}, "VIA_20200529": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 0.5125410950827098, "ars": 9.511068626554916, "aud": 0.21311702083116996, "bch": 0.0006062659725121932, "bdt": 11.886512136585464, "bhd": 0.05268811387344702, "bmd": 0.1395353084729144, "bnb": 0.00853752824606192, "brl": 0.759839522289255, "btc": 1.5700628720224448e-05, "cad": 0.19498008190055274, "chf": 0.13555855218143634, "clp": 112.33987685154332, "cny": 0.995835589509495, "czk": 3.486791869770967, "dkk": 0.9542401140537198, "eos": 0.055325960479079464, "eth": 0.0006846536723787006, "eur": 0.1280096919930516, "gbp": 0.1143959296218917, "hkd": 1.0820056192569434, "huf": 44.93595074061742, "idr": 2052.5456201375873, "ils": 0.49231545211955996, "inr": 10.588441534035253, "jpy": 15.02697597537357, "krw": 173.15913733704497, "kwd": 0.043118224277140765, "lkr": 25.916703542816688, "ltc": 0.003251561264351265, "mmk": 196.01469407321625, "mxn": 3.1479444662106455, "myr": 0.6088623185215617, "ngn": 54.48853795867307, "nok": 1.4033065973121002, "nzd": 0.22857948650428803, "php": 7.082307837945, "pkr": 22.497434901845306, "pln": 0.5762159400746963, "rub": 9.998235086256514, "sar": 0.52443243360608, "sek": 1.3498785276978207, "sgd": 0.19869325599432458, "thb": 4.45968799410282, "try": 0.9509470807737594, "twd": 4.18940782252017, "uah": 3.750244299639414, "usd": 0.1395353084729144, "vef": 34672.79981180512, "vnd": 3252.941341407421, "xag": 0.008160924842235693, "xau": 8.080908319591894e-05, "xdr": 0.10246914913016941, "xlm": 2.120878854282159, "xrp": 0.7084271747718659, "zar": 2.46186651729227, "bits": 15.700628720224447, "link": 0.036176677441206395, "sats": 1570.0628720224447}, "market_cap": {"aed": 11874448.7156309, "ars": 220350519.63715655, "aud": 4937452.154698726, "bch": 14045.847772394527, "bdt": 275384315.7704873, "bhd": 1220667.5954688205, "bmd": 3232725.883597649, "bnb": 197795.7324568342, "brl": 17603808.79913099, "btc": 363.74899950487134, "cad": 4517259.211622834, "chf": 3140593.195915115, "clp": 2602667608.884465, "cny": 23071318.08605969, "czk": 80781290.78214249, "dkk": 22107642.500159245, "eos": 1281780.6935965498, "eth": 15861.91819275936, "eur": 2965702.7256124816, "gbp": 2650301.8247792767, "hkd": 25067687.955475412, "huf": 1041067043.5537884, "idr": 47552962946.09021, "ils": 11405865.098803401, "inr": 245310877.86057064, "jpy": 348141948.5822816, "krw": 4011715969.077212, "kwd": 998954.323468162, "lkr": 600432960.4979767, "ltc": 75331.51555982142, "mmk": 4541228897.766494, "mxn": 72930942.47913972, "myr": 14105999.393078335, "ngn": 1262379457.544882, "nok": 32511524.211341556, "nzd": 5295683.440763727, "php": 164081479.54734734, "pkr": 521216034.26179343, "pln": 13349654.681722412, "rub": 231637093.91812924, "sar": 12149944.848156976, "sek": 31273713.470512014, "sgd": 4603285.280111232, "thb": 103321151.96566454, "try": 22031350.16930635, "twd": 97059355.46368417, "uah": 86884903.5411865, "usd": 3232725.883597649, "vef": 803292432826.633, "vnd": 75363488906.70845, "xag": 189070.66075473992, "xau": 1872.1685409679071, "xdr": 2373984.5798787693, "xlm": 49136093.53251075, "xrp": 16412697.901287932, "zar": 57036026.93477383, "bits": 363748999.5048713, "link": 838133.966425082, "sats": 36374899950.48714}, "total_volume": {"aed": 1022284.7539702969, "ars": 18970226.083672915, "aud": 425070.85441045015, "bch": 1209.2229608440969, "bdt": 23708147.99377857, "bhd": 105088.65736821337, "bmd": 278309.0367990568, "bnb": 17028.458881197515, "brl": 1515531.8598892635, "btc": 31.315563810241443, "cad": 388895.96749827324, "chf": 270377.22925028374, "clp": 224066605.52692053, "cny": 1986235.933827508, "czk": 6954552.918647888, "dkk": 1903272.0099577103, "eos": 110349.95328013472, "eth": 1365.570522515027, "eur": 255320.71035945462, "gbp": 228167.48918415463, "hkd": 2158105.6795027656, "huf": 89626642.2107684, "idr": 4093888498.748689, "ils": 981943.8590862717, "inr": 21119091.62484492, "jpy": 29971935.100000832, "krw": 345373176.52888715, "kwd": 86001.11038838708, "lkr": 51691954.38019277, "ltc": 6485.375590439779, "mmk": 390959544.95680916, "mxn": 6278707.531994086, "myr": 1214401.482072684, "ngn": 108679678.87003168, "nok": 2798953.983088115, "nzd": 455911.3920143019, "php": 14125960.620752087, "pkr": 44872079.37908733, "pln": 1149286.9082779926, "rub": 19941900.060992263, "sar": 1046002.5283953493, "sek": 2692389.452897755, "sgd": 396302.04927653115, "thb": 8895035.125134662, "try": 1896703.9166892532, "twd": 8355949.96423682, "uah": 7480019.861757067, "usd": 278309.0367990568, "vef": 69156356368.56133, "vnd": 6488128212.126798, "xag": 16277.307565296214, "xau": 161.17711248143783, "xdr": 204379.02426375536, "xlm": 4230182.005992641, "xrp": 1412987.7721330062, "zar": 4910296.230064656, "bits": 31315563.810241442, "link": 72155.90350170548, "sats": 3131556381.024144}}, "community_data": {"facebook_likes": null, "twitter_followers": 38869, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2159, "reddit_accounts_active_48h": "263.769230769231"}, "developer_data": {"forks": 36, "stars": 79, "subscribers": 31, "total_issues": 15, "closed_issues": 13, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2692600, "bing_matches": null}}, "CTXC_20200603": {"id": "cortex", "symbol": "ctxc", "name": "Cortex", "localization": {"en": "Cortex", "de": "Cortex", "es": "Cortex", "fr": "Cortex", "it": "Cortex", "pl": "Cortex", "ro": "Cortex", "hu": "Cortex", "nl": "Cortex", "pt": "Cortex", "sv": "Cortex", "vi": "Cortex", "tr": "Cortex", "ru": "Cortex", "ja": "\u30b3\u30eb\u30c6\u30c3\u30af\u30b9", "zh": "Cortex", "zh-tw": "Cortex", "ko": "\ucf54\ub974\ud14d\uc2a4", "ar": "Cortex", "th": "Cortex", "id": "Cortex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3861/thumb/2638.png?1523930406", "small": "https://assets.coingecko.com/coins/images/3861/small/2638.png?1523930406"}, "market_data": {"current_price": {"aed": 0.39242690879462294, "ars": 7.311707310373555, "aud": 0.16023159452736832, "bch": 0.0004247108451830605, "bdt": 9.062420982461159, "bhd": 0.04029263145385749, "bmd": 0.10684243150454627, "bnb": 0.006014371526192578, "brl": 0.5699936878336039, "btc": 1.102495020616603e-05, "cad": 0.14714873878963672, "chf": 0.10272365577004598, "clp": 85.36708311312506, "cny": 0.7625664863773974, "czk": 2.5896575390503456, "dkk": 0.7177086915102139, "eos": 0.03854093285790324, "eth": 0.0004387384446681037, "eur": 0.0962110753576863, "gbp": 0.0865576479863876, "hkd": 0.8281260707729021, "huf": 33.34060812071962, "idr": 1565.7170703617926, "ils": 0.3745308015176116, "inr": 8.069082323004151, "jpy": 11.516010227524168, "krw": 131.58607288774488, "kwd": 0.032927234753228576, "lkr": 19.89056069493283, "ltc": 0.0022375033942419664, "mmk": 149.61975336430757, "mxn": 2.3687500208291112, "myr": 0.4644974709660146, "ngn": 41.34153790035814, "nok": 1.0382947493611796, "nzd": 0.17222935853073934, "php": 5.389458221347832, "pkr": 17.196289350656684, "pln": 0.4279627015130351, "rub": 7.495085569789365, "sar": 0.401308613283164, "sek": 1.0093789136987896, "sgd": 0.15104741911523703, "thb": 3.396829244786846, "try": 0.728665382861005, "twd": 3.2009458266604502, "uah": 2.8679431824746153, "usd": 0.10684243150454627, "vef": 26549.023895860268, "vnd": 2493.7757445875836, "xag": 0.005982235950857351, "xau": 6.176988335003831e-05, "xdr": 0.07803963513468766, "xlm": 1.469594227635979, "xrp": 0.5176328204910173, "zar": 1.8751936521849184, "bits": 11.02495020616603, "link": 0.025641963043018225, "sats": 1102.4950206166031}, "market_cap": {"aed": 4018656.071911097, "ars": 74875693.58870642, "aud": 1640855.0377884426, "bch": 4349.988597840799, "bdt": 92803914.03139442, "bhd": 412617.5458830796, "bmd": 1094122.1829622227, "bnb": 61588.748054180855, "brl": 5837032.4338851655, "btc": 112.8747746052693, "cad": 1506879.7764847244, "chf": 1051943.772809029, "clp": 874203422.868334, "cny": 7809078.256456278, "czk": 26519442.88285661, "dkk": 7349711.057939581, "eos": 394585.30394419574, "eth": 4488.04076253166, "eur": 985251.5551465669, "gbp": 886395.4276715636, "hkd": 8480442.569143724, "huf": 341425203.68209374, "idr": 16033758824.110792, "ils": 3835390.6062649232, "inr": 82631608.44829251, "jpy": 117929946.66747107, "krw": 1347509966.6675038, "kwd": 337192.04495621263, "lkr": 203689708.11897483, "ltc": 22899.95011154519, "mmk": 1532184253.5777478, "mxn": 24257234.763241813, "myr": 4756696.190428262, "ngn": 423358894.5664402, "nok": 10632679.374026889, "nzd": 1763718.3942020098, "php": 55190861.07539478, "pkr": 176098965.3477693, "pln": 4382561.109964333, "rub": 76753582.53857832, "sar": 4109609.354858559, "sek": 10336566.146429986, "sgd": 1546804.2949410167, "thb": 34785301.83298913, "try": 7461913.287802356, "twd": 32779353.540456768, "uah": 29369232.90899869, "usd": 1094122.1829622227, "vef": 271875841567.85846, "vnd": 25537563335.689434, "xag": 61261.213970674464, "xau": 632.5557988577799, "xdr": 799166.5366349006, "xlm": 15040199.510478726, "xrp": 5296090.522281625, "zar": 19202960.31561362, "bits": 112874774.6052693, "link": 262525.521185446, "sats": 11287477460.52693}, "total_volume": {"aed": 44630729.483659476, "ars": 831560791.8817847, "aud": 18223146.24665304, "bch": 48302.38297970987, "bdt": 1030669534.3028564, "bhd": 4582482.735767336, "bmd": 12151194.403316002, "bnb": 684014.7364619334, "brl": 64825407.02225053, "btc": 1253.8680686642913, "cad": 16735232.491967004, "chf": 11682765.859068166, "clp": 9708802092.429714, "cny": 86726719.81478722, "czk": 294521865.06701386, "dkk": 81625040.84455502, "eos": 4383261.9779118765, "eth": 49897.742482056674, "eur": 10942089.804214032, "gbp": 9844205.087485632, "hkd": 94182814.21260597, "huf": 3791828818.3323646, "idr": 178069070823.67355, "ils": 42595404.42110406, "inr": 917697085.1605153, "jpy": 1309716346.3494108, "krw": 14965289818.95981, "kwd": 3744815.84718594, "lkr": 2262154336.919978, "ltc": 254471.35879116194, "mmk": 17016261087.51123, "mxn": 269398043.36752295, "myr": 52827317.668416284, "ngn": 4701774911.758094, "nok": 118085307.21142478, "nzd": 19587652.47097895, "php": 612943318.9973834, "pkr": 1955734739.213706, "pln": 48672216.742202386, "rub": 852416409.3375555, "sar": 45640846.12321269, "sek": 114796707.9581114, "sgd": 17178629.57574394, "thb": 386321538.4284634, "try": 82871145.83061507, "twd": 364043708.7261453, "uah": 326171303.4528886, "usd": 12151194.403316002, "vef": 3019421647692.0312, "vnd": 283617224393.367, "xag": 680359.9560749469, "xau": 7025.0915323331055, "xdr": 8875451.113681266, "xlm": 167137015.72053757, "xrp": 58870403.29155636, "zar": 213265855.99648684, "bits": 1253868068.6642914, "link": 2916261.577265776, "sats": 125386806866.42912}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 20062, "reddit_accounts_active_48h": "13.5"}, "developer_data": {"forks": 1, "stars": 8, "subscribers": 5, "total_issues": 8, "closed_issues": 4, "pull_requests_merged": 5, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 548039, "bing_matches": null}}, "DOX_20190213": {"id": "doxxed", "symbol": "dox", "name": "Doxxed", "localization": {"en": "Doxxed", "de": "Doxxed", "es": "Doxxed", "fr": "Doxxed", "it": "Doxxed", "pl": "Doxxed", "ro": "Doxxed", "hu": "Doxxed", "nl": "Doxxed", "pt": "Doxxed", "sv": "Doxxed", "vi": "Doxxed", "tr": "Doxxed", "ru": "Doxxed", "ja": "Doxxed", "zh": "Doxxed", "zh-tw": "Doxxed", "ko": "Doxxed", "ar": "Doxxed", "th": "Doxxed", "id": "Doxxed"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/18688/thumb/doxxed.png?1632979852", "small": "https://assets.coingecko.com/coins/images/18688/small/doxxed.png?1632979852"}}, "PIE_20190215": {"id": "pie-share", "symbol": "pie", "name": "Pie Share", "localization": {"en": "Pie Share", "de": "Pie Share", "es": "Pie Share", "fr": "Pie Share", "it": "Pie Share", "pl": "Pie Share", "ro": "Pie Share", "hu": "Pie Share", "nl": "Pie Share", "pt": "Pie Share", "sv": "Pie Share", "vi": "Pie Share", "tr": "Pie Share", "ru": "Pie Share", "ja": "Pie Share", "zh": "Pie Share", "zh-tw": "Pie Share", "ko": "Pie Share", "ar": "Pie Share", "th": "Pie Share", "id": "Pie Share"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/22779/thumb/logo-200x200.png?1642578090", "small": "https://assets.coingecko.com/coins/images/22779/small/logo-200x200.png?1642578090"}}, "TKN_20190218": {"id": "tokencard", "symbol": "tkn", "name": "Monolith", "localization": {"en": "Monolith", "de": "Monolith", "es": "Monolith", "fr": "Monolith", "it": "Monolith", "pl": "Monolith", "ro": "Monolith", "hu": "Monolith", "nl": "Monolith", "pt": "Monolith", "sv": "Monolith", "vi": "Monolith", "tr": "Monolith", "ru": "Monolith", "ja": "Monolith", "zh": "Monolith", "zh-tw": "Monolith", "ko": "Monolith", "ar": "Monolith", "th": "Monolith", "id": "Monolith"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/675/thumb/Monolith.png?1566296607", "small": "https://assets.coingecko.com/coins/images/675/small/Monolith.png?1566296607"}, "market_data": {"current_price": {"aed": 2.1217603836210235, "ars": 22.059833238845403, "aud": 0.8129177653040132, "bch": 0.004777147805644359, "bdt": 48.60227496280678, "bhd": 0.21780366708667737, "bmd": 0.5776488842034452, "bnb": 0.06650607733893875, "brl": 2.150873887384874, "btc": 0.00016091956396886088, "cad": 0.7679628185397647, "chf": 0.5804291082831161, "clp": 383.78160629732554, "cny": 3.911953773602573, "czk": 13.186583169818336, "dkk": 3.814821536074867, "eos": 0.2102760135636467, "eth": 0.004784836487296758, "eur": 0.5113446123279202, "gbp": 0.45131938382368797, "hkd": 4.533417325672836, "huf": 162.8565499234773, "idr": 8136.128753341011, "ils": 2.111220024430964, "inr": 41.02462375612868, "jpy": 63.840663942435526, "krw": 652.3388849309499, "kwd": 0.17548857572323848, "lkr": 103.15699581661633, "ltc": 0.01395844331363284, "mmk": 885.3624448186195, "mxn": 11.125806334200446, "myr": 2.3539082278002375, "ngn": 208.82007163954543, "nok": 4.995507550591384, "nzd": 0.8452574380861434, "php": 30.192812399192412, "pkr": 80.63607688426202, "pln": 2.21390346773585, "rub": 38.50486155834472, "sar": 2.1666743173144964, "sek": 5.366722053047053, "sgd": 0.7843593821178788, "thb": 18.07925477779948, "try": 3.048168247555596, "twd": 17.812669817739515, "uah": 15.732845010165033, "usd": 0.5776488842034452, "vef": 143538.60927885832, "vnd": 13374.473589813973, "xag": 0.03696716600508411, "xau": 0.00044011646136344576, "xdr": 0.41503667975798636, "xlm": 7.591408737607649, "xrp": 1.9277601530311763, "zar": 8.159584512655707, "bits": 160.91956396886087, "link": 1.345372015929971, "sats": 16091.956396886088}, "market_cap": {"aed": 66459337.35356828, "ars": 690974301.5758734, "aud": 25466299.45748796, "bch": 149510.22413921016, "bdt": 1522356158.9888842, "bhd": 6822206.456251439, "bmd": 18093542.68443459, "bnb": 2081182.3774899805, "brl": 67363869.73944898, "btc": 5038.06579789517, "cad": 24050841.61328462, "chf": 18183956.117228664, "clp": 12021489568.342653, "cny": 122533089.76752757, "czk": 413075905.1694091, "dkk": 119502421.36788511, "eos": 6582120.455763836, "eth": 149750.8982549427, "eur": 16019009.454408027, "gbp": 14137787.634421993, "hkd": 141986362.18469772, "huf": 5101521005.029386, "idr": 254937436489.45282, "ils": 66129184.48020546, "inr": 1285003401.448542, "jpy": 1999770711.6544445, "krw": 20435345295.40469, "kwd": 5496782.080445859, "lkr": 3231159200.765671, "ltc": 436560.8617877617, "mmk": 27731972872.432858, "mxn": 348481632.10220945, "myr": 73730842.66175976, "ngn": 6540815680.423104, "nok": 156489241.32340628, "nzd": 26470744.386071637, "php": 945845046.2078547, "pkr": 2525742434.3901143, "pln": 69354358.46370614, "rub": 1206095652.4474525, "sar": 67866164.57791135, "sek": 168107919.29050216, "sgd": 24564698.225522585, "thb": 566327886.0228043, "try": 95477815.39149295, "twd": 557941528.9885658, "uah": 492795728.5532605, "usd": 18093542.68443459, "vef": 4496021761442.035, "vnd": 418925086495.82007, "xag": 1157951.6303310047, "xau": 13785.8320421244, "xdr": 13000083.763967438, "xlm": 237841624.15767393, "xrp": 60334647.562176734, "zar": 255567744.08327222, "bits": 5038065797.89517, "link": 42120874.37804436, "sats": 503806579789.517}, "total_volume": {"aed": 594432.7347728618, "ars": 6180286.474394997, "aud": 227747.17357594834, "bch": 1338.3665075681618, "bdt": 13616421.272329746, "bhd": 61019.91085767048, "bmd": 161834.20551454573, "bnb": 18632.35346308645, "brl": 602589.178730794, "btc": 45.083251260078164, "cad": 215152.58836598447, "chf": 162613.11354568717, "clp": 107520317.3496469, "cny": 1095973.606585607, "czk": 3694355.2893411834, "dkk": 1068761.0230941272, "eos": 58910.96222018055, "eth": 1340.5205698726118, "eur": 143258.38990296936, "gbp": 126441.71210533647, "hkd": 1270082.9365884273, "huf": 45625917.56071588, "idr": 2279419157.152318, "ils": 591479.7460248381, "inr": 11493465.27564304, "jpy": 17885610.811647337, "krw": 182759368.2875763, "kwd": 49164.90796690803, "lkr": 28900480.75531253, "ltc": 3910.5997529911283, "mmk": 248043286.79214397, "mxn": 3117007.715312905, "myr": 659471.3126218686, "ngn": 58503065.293508284, "nok": 1399542.2092897887, "nzd": 236807.46157168027, "php": 8458823.241060952, "pkr": 22591016.437899563, "pln": 620247.5562313085, "rub": 10787528.287768006, "sar": 607015.829754235, "sek": 1503541.7247796038, "sgd": 219746.25228951467, "thb": 5065086.964194267, "try": 853975.3128720454, "twd": 4990400.478349283, "uah": 4407716.4213941675, "usd": 161834.20551454573, "vef": 40213800162.25485, "vnd": 3746994700.0200744, "xag": 10356.727251030376, "xau": 123.3030995235872, "xdr": 116276.74382276261, "xlm": 2126810.3087934386, "xrp": 540081.5985624279, "zar": 2285990.526503561, "bits": 45083251.26007816, "link": 376919.643183881, "sats": 4508325126.007816}}, "community_data": {"facebook_likes": null, "twitter_followers": 18194, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 0, "stars": 0, "subscribers": 3, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": 3}, "public_interest_stats": {"alexa_rank": 948169, "bing_matches": null}}, "FC_20190226": {"id": "futurescoin", "symbol": "fc", "name": "FuturesCoin", "localization": {"en": "FuturesCoin", "de": "FuturesCoin", "es": "FuturesCoin", "fr": "FuturesCoin", "it": "FuturesCoin", "pl": "FuturesCoin", "ro": "FuturesCoin", "hu": "FuturesCoin", "nl": "FuturesCoin", "pt": "FuturesCoin", "sv": "FuturesCoin", "vi": "FuturesCoin", "tr": "FuturesCoin", "ru": "FuturesCoin", "ja": "FuturesCoin", "zh": "FuturesCoin", "zh-tw": "FuturesCoin", "ko": "FuturesCoin", "ar": "FuturesCoin", "th": "FuturesCoin", "id": "FuturesCoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/6701/thumb/futurescoin.jpg?1547042910", "small": "https://assets.coingecko.com/coins/images/6701/small/futurescoin.jpg?1547042910"}, "market_data": {"current_price": {"aed": 0.003059768649202692, "ars": 0.03264493298810205, "aud": 0.001166697917913696, "bch": 5.820370611134331e-06, "bdt": 0.07000204168287981, "bhd": 0.0003140545234001616, "bmd": 0.0008330402903998455, "bnb": 7.764919579196619e-05, "brl": 0.003111150574314552, "btc": 2.1e-07, "cad": 0.0010970974016507884, "chf": 0.0008324488317936609, "clp": 0.5427149363325291, "cny": 0.005593199117802639, "czk": 0.018839400265780164, "dkk": 0.005479168397651256, "eos": 0.000215455375227519, "eth": 5.631552366970908e-06, "eur": 0.0007342567066836519, "gbp": 0.0006374782509464481, "hkd": 0.006538241675246757, "huf": 0.233312926293447, "idr": 11.70156115155592, "ils": 0.003008187627461436, "inr": 0.05916565698785007, "jpy": 0.09212301007430262, "krw": 0.9347461794547632, "kwd": 0.0002529485189784609, "lkr": 0.14951407132096428, "ltc": 1.6958115386564814e-05, "mmk": 1.2733696142873054, "mxn": 0.015930423571703906, "myr": 0.00339476164030206, "ngn": 0.30231365937854754, "nok": 0.007163621682055713, "nzd": 0.0012160722159256943, "php": 0.0433378573156011, "pkr": 0.11640071977757034, "pln": 0.003183929972325627, "rub": 0.05443901636957175, "sar": 0.003123942741013941, "sek": 0.007781252748083388, "sgd": 0.0011251042162140313, "thb": 0.02609915229822726, "try": 0.004430227389107898, "twd": 0.02560359662243523, "uah": 0.022501615322597132, "usd": 0.0008330402903998455, "vef": 207.0002176532155, "vnd": 19.329991854481577, "xag": 5.219558888510757e-05, "xau": 6.252717115712193e-07, "xdr": 0.0005968916949578772, "xlm": 0.00926459779688604, "xrp": 0.002595442110881214, "zar": 0.011631160112730354, "bits": 0.21, "link": 0.0018583447039699755, "sats": 21.0}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 34, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 0, "stars": 0, "subscribers": 0, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "FC_20190322": {"id": "futurescoin", "symbol": "fc", "name": "FuturesCoin", "localization": {"en": "FuturesCoin", "de": "FuturesCoin", "es": "FuturesCoin", "fr": "FuturesCoin", "it": "FuturesCoin", "pl": "FuturesCoin", "ro": "FuturesCoin", "hu": "FuturesCoin", "nl": "FuturesCoin", "pt": "FuturesCoin", "sv": "FuturesCoin", "vi": "FuturesCoin", "tr": "FuturesCoin", "ru": "FuturesCoin", "ja": "FuturesCoin", "zh": "FuturesCoin", "zh-tw": "FuturesCoin", "ko": "FuturesCoin", "ar": "FuturesCoin", "th": "FuturesCoin", "id": "FuturesCoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/6701/thumb/futurescoin.jpg?1547042910", "small": "https://assets.coingecko.com/coins/images/6701/small/futurescoin.jpg?1547042910"}, "market_data": {"current_price": {"aed": 0.0036621987121596, "ars": 0.03991629806427225, "aud": 0.0014046108199570926, "bch": 6.203758543296775e-06, "bdt": 0.084150311063201, "bhd": 0.0003758169911464425, "bmd": 0.000997010142478575, "bnb": 6.4232910746791e-05, "brl": 0.00378086186230725, "btc": 2.5e-07, "cad": 0.00133004044336055, "chf": 0.0009982344709335376, "clp": 0.6640094657589625, "cny": 0.006693028787472925, "czk": 0.022523555829747726, "dkk": 0.00656293292202145, "eos": 0.000269004267604695, "eth": 7.241355686480675e-06, "eur": 0.0008794795958527725, "gbp": 0.0007518752587473675, "hkd": 0.00782630030612405, "huf": 0.2761119888580175, "idr": 14.215370611459525, "ils": 0.003593463835926975, "inr": 0.06842139331258675, "jpy": 0.111055962760546, "krw": 1.1288248534156675, "kwd": 0.0003027919802707425, "lkr": 0.178126558875616, "ltc": 1.6838881634211623e-05, "mmk": 1.535788609907855, "mxn": 0.01900313096283845, "myr": 0.00406528193668255, "ngn": 0.358923651292287, "nok": 0.008522646087975925, "nzd": 0.00145690300491995, "php": 0.0525419699018945, "pkr": 0.139920625728705, "pln": 0.003774673420352875, "rub": 0.064173156026719, "sar": 0.0037390871373374, "sek": 0.009201882178772726, "sgd": 0.001347448240448225, "thb": 0.0315753112122965, "try": 0.005452755149300575, "twd": 0.03068682961186725, "uah": 0.027092394688061502, "usd": 0.000997010142478575, "vef": 247.7446995948645, "vnd": 23.178687835443224, "xag": 6.49857791134475e-05, "xau": 7.64826420498165e-07, "xdr": 0.000713869232116085, "xlm": 0.008684348631150475, "xrp": 0.003167865315786775, "zar": 0.01439224120774535, "bits": 0.25, "link": 0.0020939870402231445, "sats": 25.0}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 14.6487948486384, "ars": 159.665192257089, "aud": 5.61844327982837, "bch": 0.0248150341731871, "bdt": 336.601244252804, "bhd": 1.50326796458577, "bmd": 3.9880405699143, "bnb": 0.256931642987164, "brl": 15.123447449229, "btc": 0.001, "cad": 5.3201617734422, "chf": 3.99293788373415, "clp": 2656.03786303585, "cny": 26.7721151498917, "czk": 90.0942233189909, "dkk": 26.2517316880858, "eos": 1.07601707041878, "eth": 0.0289654227459227, "eur": 3.51791838341109, "gbp": 3.00750103498947, "hkd": 31.3052012244962, "huf": 1104.44795543207, "idr": 56861.4824458381, "ils": 14.3738553437079, "inr": 273.685573250347, "jpy": 444.223851042184, "krw": 4515.29941366267, "kwd": 1.21116792108297, "lkr": 712.506235502464, "ltc": 0.0673555265368465, "mmk": 6143.15443963142, "mxn": 76.0125238513538, "myr": 16.2611277467302, "ngn": 1435.694605169148, "nok": 34.0905843519037, "nzd": 5.8276120196798, "php": 210.167879607578, "pkr": 559.68250291482, "pln": 15.0986936814115, "rub": 256.692624106876, "sar": 14.9563485493496, "sek": 36.8075287150909, "sgd": 5.3897929617929, "thb": 126.301244849186, "try": 21.8110205972023, "twd": 122.747318447469, "uah": 108.36957875224601, "usd": 3.9880405699143, "vef": 990978.798379458, "vnd": 92714.7513417729, "xag": 0.25994311645379, "xau": 0.00305930568199266, "xdr": 2.85547692846434, "xlm": 34.7373945246019, "xrp": 12.6714612631471, "zar": 57.5689648309814, "bits": 1000.0, "link": 8.375948160892579, "sats": 100000.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 36, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 0, "stars": 0, "subscribers": 0, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "DOX_20190408": {"id": "doxxed", "symbol": "dox", "name": "Doxxed", "localization": {"en": "Doxxed", "de": "Doxxed", "es": "Doxxed", "fr": "Doxxed", "it": "Doxxed", "pl": "Doxxed", "ro": "Doxxed", "hu": "Doxxed", "nl": "Doxxed", "pt": "Doxxed", "sv": "Doxxed", "vi": "Doxxed", "tr": "Doxxed", "ru": "Doxxed", "ja": "Doxxed", "zh": "Doxxed", "zh-tw": "Doxxed", "ko": "Doxxed", "ar": "Doxxed", "th": "Doxxed", "id": "Doxxed"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/18688/thumb/doxxed.png?1632979852", "small": "https://assets.coingecko.com/coins/images/18688/small/doxxed.png?1632979852"}}, "RDN_20191015": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 0.6790473105716135, "ars": 10.736979905421553, "aud": 0.27216400875336827, "bch": 0.0008400749120665837, "bdt": 15.660413538675014, "bhd": 0.06970330292909732, "bmd": 0.1848746861764244, "bnb": 0.01115845832254363, "brl": 0.7598349601851051, "btc": 2.2361094702226077e-05, "cad": 0.24404456898593346, "chf": 0.18429695278212294, "clp": 131.35437577567765, "cny": 1.310428750555732, "czk": 4.321852513683497, "dkk": 1.2511163293631797, "eos": 0.06032853543696812, "eth": 0.0010256914459106344, "eur": 0.16747428071349932, "gbp": 0.14620352369547074, "hkd": 1.4500793909996779, "huf": 55.60845685500665, "idr": 2611.9557849720723, "ils": 0.6483185494834843, "inr": 13.135346452834957, "jpy": 20.03819748529029, "krw": 218.79549359607475, "kwd": 0.05615494642734422, "lkr": 33.377418750424084, "ltc": 0.0033272882171571875, "mmk": 282.8473038230451, "mxn": 3.5721671737694907, "myr": 0.773874343853341, "ngn": 66.73976170968922, "nok": 1.6790956816210167, "nzd": 0.2917191286836786, "php": 9.541674840444097, "pkr": 28.932888386610312, "pln": 0.7208171576675687, "rub": 11.869694351271136, "sar": 0.6934002417076061, "sek": 1.8127854075585785, "sgd": 0.2536767250104124, "thb": 5.630358567502992, "try": 1.086196462188581, "twd": 5.664375509759468, "uah": 4.552265347684226, "usd": 0.1848746861764244, "vef": 45939.074878024476, "vnd": 4290.035415654066, "xag": 0.010535971390257198, "xau": 0.0001241673854766719, "xdr": 0.13483040275126956, "xlm": 3.0687890296072124, "xrp": 0.691882168391187, "zar": 2.7312008819292917, "bits": 22.361094702226076, "link": 0.06732262206274214, "sats": 2236.109470222608}, "market_cap": {"aed": 34405753.21740393, "ars": 544017883.8425716, "aud": 13789919.456341332, "bch": 42415.83975880648, "bdt": 793476853.6828185, "bhd": 3531704.789461134, "bmd": 9367171.81513708, "bnb": 561746.1704815957, "brl": 38499076.16021345, "btc": 1129.7353885857747, "cad": 12365172.623258937, "chf": 9337899.403214768, "clp": 6655421745.444772, "cny": 66396387.26005457, "czk": 218978248.9568221, "dkk": 63391164.362463295, "eos": 3053585.436251902, "eth": 51856.72108231656, "eur": 8485533.603896378, "gbp": 7407793.650705782, "hkd": 73472161.50577289, "huf": 2817551610.2750807, "idr": 132341745197.21053, "ils": 32848798.12132272, "inr": 665537557.4654896, "jpy": 1015289018.6990778, "krw": 11085860499.778429, "kwd": 2845240.970160623, "lkr": 1691156440.3286579, "ltc": 168515.6397256504, "mmk": 14331217253.996328, "mxn": 180993430.52926046, "myr": 39210419.187854886, "ngn": 3381549025.2644863, "nok": 85075886.0993512, "nzd": 14780732.055087423, "php": 483454546.8778641, "pkr": 1465962389.0689478, "pln": 36522134.54862869, "rub": 601409899.2190615, "sar": 35132982.968443885, "sek": 91849634.62423395, "sgd": 12853211.64199937, "thb": 285338104.2467983, "try": 55035056.97153665, "twd": 287000777.2439849, "uah": 230652733.1662928, "usd": 9367171.81513708, "vef": 2327626438809.7637, "vnd": 217366150350.65442, "xag": 533833.2483102988, "xau": 6291.273606200521, "xdr": 6831543.974982174, "xlm": 155225229.0435242, "xrp": 34974742.20217113, "zar": 138383617.85383326, "bits": 1129735388.5857747, "link": 3401298.0853345115, "sats": 112973538858.57747}, "total_volume": {"aed": 12536830.214300392, "ars": 198230214.5859528, "aud": 5024795.64393253, "bch": 15509.783156355466, "bdt": 289128522.51020634, "bhd": 1286888.9407167186, "bmd": 3413226.906921778, "bnb": 206011.7097368629, "brl": 14028362.587448522, "btc": 412.83905159968293, "cad": 4505643.831389715, "chf": 3402560.5728376447, "clp": 2425114541.163347, "cny": 24193634.961642954, "czk": 79791688.04849158, "dkk": 23098586.43922976, "eos": 1113808.4108072026, "eth": 18936.706337615, "eur": 3091973.9904422997, "gbp": 2699265.1686664135, "hkd": 26771918.302593496, "huf": 1026664521.3330008, "idr": 48222923047.71769, "ils": 11969504.117193276, "inr": 242509771.73679236, "jpy": 369952837.9874377, "krw": 4039485779.803786, "kwd": 1036754.0200698626, "lkr": 616226624.200057, "ltc": 61429.663004523034, "mmk": 5222034708.623127, "mxn": 65950711.61823329, "myr": 14287563.03876013, "ngn": 1232174913.3987617, "nok": 31000104.331946462, "nzd": 5385829.720012163, "php": 176162036.97797257, "pkr": 534170010.93325627, "pln": 13308001.048742643, "rub": 219142820.3320055, "sar": 12801819.498446163, "sek": 33468334.997737173, "sgd": 4683476.366467265, "thb": 103949825.45030251, "try": 20053773.004960414, "twd": 104577859.20117638, "uah": 84045657.59389967, "usd": 3413226.906921778, "vef": 848144706534.5334, "vnd": 79204268660.03844, "xag": 194519.11878009088, "xau": 2292.4255874958735, "xdr": 2489290.2758064014, "xlm": 56657152.49694058, "xrp": 12773792.250381835, "zar": 50424471.46881667, "bits": 412839051.5996829, "link": 1242935.9033491095, "sats": 41283905159.96829}}, "community_data": {"facebook_likes": null, "twitter_followers": 25464, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.056, "reddit_subscribers": 4376, "reddit_accounts_active_48h": "2048.84210526316"}, "developer_data": {"forks": 365, "stars": 1741, "subscribers": 218, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2759, "pull_request_contributors": 73, "code_additions_deletions_4_weeks": {"additions": 7325, "deletions": -4431}, "commit_count_4_weeks": 261}, "public_interest_stats": {"alexa_rank": 2320314, "bing_matches": null}}, "LRC_20191116": {"id": "loopring", "symbol": "lrc", "name": "Loopring", "localization": {"en": "Loopring", "de": "Loopring", "es": "Loopring", "fr": "Loopring", "it": "Loopring", "pl": "Loopring", "ro": "Loopring", "hu": "Loopring", "nl": "Loopring", "pt": "Loopring", "sv": "Loopring", "vi": "Loopring", "tr": "Loopring", "ru": "Loopring", "ja": "\u30eb\u30fc\u30d7\u30ea\u30f3\u30b0", "zh": "\u8def\u5370\u534f\u8bae", "zh-tw": "\u8def\u5370\u5354\u8b70", "ko": "\ub8e8\ud504\ub9c1", "ar": "Loopring", "th": "Loopring", "id": "Loopring"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/913/thumb/LRC.png?1572852344", "small": "https://assets.coingecko.com/coins/images/913/small/LRC.png?1572852344"}, "market_data": {"current_price": {"aed": 0.11745565511079598, "ars": 1.9062901576184044, "aud": 0.04671995976323555, "bch": 0.0001106425284681831, "bdt": 2.7104528328641124, "bhd": 0.012055928297888194, "bmd": 0.03197638438168246, "bnb": 0.0015320907436832828, "brl": 0.1333191394025488, "btc": 3.63327044314848e-06, "cad": 0.04231920986270644, "chf": 0.031742221318855394, "clp": 24.957568009903163, "cny": 0.22408410646995428, "czk": 0.7419672326388054, "dkk": 0.2169501751144008, "eos": 0.009188783736621294, "eth": 0.00017115243426591518, "eur": 0.029033821561726875, "gbp": 0.024877627048948952, "hkd": 0.2503543050587256, "huf": 9.721460379719108, "idr": 449.6236340632337, "ils": 0.11203565795810093, "inr": 2.295590870155939, "jpy": 3.485300656657971, "krw": 37.28286536982272, "kwd": 0.009715896488836692, "lkr": 5.775447153104105, "ltc": 0.000522441013959083, "mmk": 48.536211489216015, "mxn": 0.6179883951141467, "myr": 0.1324621723011196, "ngn": 11.580882622843738, "nok": 0.2929228667668403, "nzd": 0.05046621702824038, "php": 1.624066173372679, "pkr": 4.986246196134215, "pln": 0.12434707756719864, "rub": 2.0546010091453093, "sar": 0.11991035423424007, "sek": 0.3105866214992815, "sgd": 0.0435518355278516, "thb": 0.9698437382964299, "try": 0.1847170203661335, "twd": 0.971954147689235, "uah": 0.781784002636186, "usd": 0.03197638438168246, "vef": 7945.736362396207, "vnd": 742.2008174087209, "xag": 0.001903132393731563, "xau": 2.192716606205112e-05, "xdr": 0.023288144934104266, "xlm": 0.41615940914506855, "xrp": 0.1174616831242215, "zar": 0.47758133837317224, "bits": 3.6332704431484797, "link": 0.011346358917351924, "sats": 363.32704431484797}, "market_cap": {"aed": 113019136.14813411, "ars": 1834286026.1474078, "aud": 44955259.82410642, "bch": 106463.35399452399, "bdt": 2608073978.6568875, "bhd": 11600553.420828264, "bmd": 30768576.758176565, "bnb": 1474220.821367002, "brl": 128283427.0778657, "btc": 3496.035048204729, "cad": 40720734.44776231, "chf": 30543258.470576435, "clp": 24014874159.756805, "cny": 215620032.20594966, "czk": 713941747.666024, "dkk": 208755562.7312003, "eos": 8841706.25233274, "eth": 164687.68789495327, "eur": 27937160.019158863, "gbp": 23937952.71786136, "hkd": 240897956.4416296, "huf": 9354262706.020844, "idr": 432640511567.33673, "ils": 107803862.38762328, "inr": 2208882125.3419642, "jpy": 3353654356.2797127, "krw": 35874622071.19602, "kwd": 9348908.973664919, "lkr": 5557297752.052042, "ltc": 502707.44333521335, "mmk": 46702908337.958206, "mxn": 594645821.8592223, "myr": 127458829.2207464, "ngn": 11143451106.139482, "nok": 281858624.2509521, "nzd": 48560013.97136417, "php": 1562722167.688245, "pkr": 4797906385.8391485, "pln": 119650256.73674925, "rub": 1976994900.4468482, "sar": 115381116.7115522, "sek": 298855186.0521688, "sgd": 41906801.54463657, "thb": 933210933.075496, "try": 177739914.3016557, "twd": 935241628.3729575, "uah": 752254564.0652684, "usd": 30768576.758176565, "vef": 7645611093750.521, "vnd": 714166509503.9136, "xag": 1831247.5368868115, "xau": 21098.936140384416, "xdr": 22408508.30436591, "xlm": 400440292.7822112, "xrp": 113024936.47225988, "zar": 459542201.28856486, "bits": 3496035048.2047286, "link": 10917785.798020078, "sats": 349603504820.4729}, "total_volume": {"aed": 19191157.78466799, "ars": 311470019.5891359, "aud": 7633605.369309979, "bch": 18077.95648089108, "bdt": 442862695.15357184, "bhd": 1969826.1610917524, "bmd": 5224642.759628661, "bnb": 250329.3279043884, "brl": 21783103.057719793, "btc": 593.6424796495313, "cad": 6914563.909516074, "chf": 5186382.700699898, "clp": 4077833673.8901696, "cny": 36613251.53092571, "czk": 121230520.7373193, "dkk": 35447633.731252536, "eos": 1501361.4999835093, "eth": 27964.71032517606, "eur": 4743855.458959349, "gbp": 4064772.0669910973, "hkd": 40905556.79009865, "huf": 1588395891.7823064, "idr": 73464305289.37741, "ils": 18305580.836910952, "inr": 375078122.51907974, "jpy": 569465597.5979664, "krw": 6091672225.5890465, "kwd": 1587486.8039421304, "lkr": 943654160.2673736, "ltc": 85361.98553073438, "mmk": 7930363949.534039, "mxn": 100973535.82968713, "myr": 21643082.631761722, "ngn": 1892208131.580083, "nok": 47860862.4638543, "nzd": 8245708.841099803, "php": 265357254.67229757, "pkr": 814706089.8255272, "pln": 20317151.893652115, "rub": 335702628.4843519, "sar": 19592232.71075362, "sek": 50746955.12427314, "sgd": 7115963.43861425, "thb": 158463414.8995374, "try": 30181037.090264075, "twd": 158808236.0970299, "uah": 127736209.32910962, "usd": 5224642.759628661, "vef": 1298259160891.6367, "vnd": 121268686308.58376, "xag": 310954.07044269476, "xau": 3582.694279560162, "xdr": 3805065.5246954733, "xlm": 67996563.27269614, "xrp": 19192142.705799866, "zar": 78032333.2332257, "bits": 593642479.6495314, "link": 1853889.1470059233, "sats": 59364247964.95313}}, "community_data": {"facebook_likes": null, "twitter_followers": 33698, "reddit_average_posts_48h": 0.1, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6851, "reddit_accounts_active_48h": "591.363636363636"}, "developer_data": {"forks": 14, "stars": 36, "subscribers": 17, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 457, "pull_request_contributors": 15, "code_additions_deletions_4_weeks": {"additions": 57576, "deletions": -36512}, "commit_count_4_weeks": 48}, "public_interest_stats": {"alexa_rank": 717545, "bing_matches": null}}, "STMX_20210614": {"id": "storm", "symbol": "stmx", "name": "StormX", "localization": {"en": "StormX", "de": "StormX", "es": "StormX", "fr": "StormX", "it": "StormX", "pl": "StormX", "ro": "StormX", "hu": "StormX", "nl": "StormX", "pt": "StormX", "sv": "StormX", "vi": "StormX", "tr": "StormX", "ru": "StormX", "ja": "\u30b9\u30c8\u30fc\u30e0", "zh": "StormX", "zh-tw": "StormX", "ko": "\uc2a4\ud1b0", "ar": "StormX", "th": "StormX", "id": "StormX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1369/thumb/StormX.png?1603113002", "small": "https://assets.coingecko.com/coins/images/1369/small/StormX.png?1603113002"}, "market_data": {"current_price": {"aed": 0.0872583159790237, "ars": 2.2592235597143278, "aud": 0.030647333624407594, "bch": 3.9489041534092694e-05, "bdt": 2.014254389545332, "bhd": 0.00895642521469653, "bmd": 0.023755394745460016, "bnb": 6.737787404617198e-05, "brl": 0.120107275833046, "btc": 6.470489439344376e-07, "cad": 0.028730962174896606, "chf": 0.02125390416797356, "clp": 17.09913223507708, "cny": 0.15187536522614953, "czk": 0.49477973729791513, "dkk": 0.145121706500015, "dot": 0.0010474001248905176, "eos": 0.004673906908463456, "eth": 9.602347358379204e-06, "eur": 0.01951505678339542, "gbp": 0.01676221037410722, "hkd": 0.18435255315240512, "huf": 6.741294660809521, "idr": 338.5573801553084, "ils": 0.07706321321611459, "inr": 1.7344419703780316, "jpy": 2.5984600988373945, "krw": 26.42428906709901, "kwd": 0.007146430422855708, "lkr": 4.714497042752284, "ltc": 0.00014140307323247153, "mmk": 39.09364000586513, "mxn": 0.46799671749214644, "myr": 0.09788410404866764, "ngn": 9.777980052429701, "nok": 0.19653895187985257, "nzd": 0.03302572374632304, "php": 1.1345575817769828, "pkr": 3.6995155186710416, "pln": 0.08718871267241939, "rub": 1.7050292046185462, "sar": 0.08909163856850427, "sek": 0.19601412394374057, "sgd": 0.03144264048509089, "thb": 0.7395114010302491, "try": 0.20026272878317655, "twd": 0.655083516579752, "uah": 0.6439611457383511, "usd": 0.023755394745460016, "vef": 0.002378627675862907, "vnd": 545.0230146585391, "xag": 0.0008493021602778468, "xau": 1.251054108874905e-05, "xdr": 0.016481991737689824, "xlm": 0.06971489880607402, "xrp": 0.02732862809066154, "yfi": 6.269659415949349e-07, "zar": 0.32301516782113, "bits": 0.6470489439344377, "link": 0.0010282143589131455, "sats": 64.70489439344377}, "market_cap": {"aed": 751054052.6712708, "ars": 19444738715.447033, "aud": 263799863.9597767, "bch": 338300.7641817421, "bdt": 17337189073.676212, "bhd": 77090181.94394282, "bmd": 204468597.59100282, "bnb": 576660.1270277866, "brl": 1033793229.4201075, "btc": 5547.983920289827, "cad": 247330940.76680928, "chf": 182947255.35156202, "clp": 147176496546.00363, "cny": 1307229084.97856, "czk": 4259346696.997455, "dkk": 1249057768.963919, "dot": 8955490.39028165, "eos": 40008805.58944147, "eth": 82102.56879418013, "eur": 167975860.16735074, "gbp": 144286741.85625026, "hkd": 1586768328.175098, "huf": 58055450407.84898, "idr": 2913135673888.171, "ils": 663302264.6431391, "inr": 14928773909.511547, "jpy": 22366002016.08945, "krw": 227424667558.60464, "kwd": 61511106.087691665, "lkr": 40578849941.55766, "ltc": 1210672.8271861486, "mmk": 336488693721.0093, "mxn": 4028072061.793673, "myr": 842512856.3737285, "ngn": 84161508996.82259, "nok": 1691670942.1691606, "nzd": 284399052.8240826, "php": 9764977546.432486, "pkr": 31842651236.657936, "pln": 750554740.3559543, "rub": 14677921406.088446, "sar": 766833916.6903566, "sek": 1687070398.7233653, "sgd": 270648335.16748977, "thb": 6364772727.913677, "try": 1724021963.6800122, "twd": 5638691856.346371, "uah": 5542733925.622516, "usd": 204468597.59100282, "vef": 20473440.6767871, "vnd": 4691148796142.394, "xag": 7312901.180281272, "xau": 107730.4146987477, "xdr": 141864606.8491871, "xlm": 596681929.276013, "xrp": 233412247.89897454, "yfi": 5356.302833882108, "zar": 2777322519.6532907, "bits": 5547983920.289827, "link": 8782011.506061587, "sats": 554798392028.9828}, "total_volume": {"aed": 132728773.3793471, "ars": 3436508813.013193, "aud": 46617711.488875255, "bch": 60066.848482455185, "bdt": 3063885790.1244226, "bhd": 13623633.682046985, "bmd": 36134371.496065326, "bnb": 102488.59922080534, "brl": 182695382.28410655, "btc": 984.227253084569, "cad": 43702715.605916195, "chf": 32329349.908786617, "clp": 26009519229.761646, "cny": 231017877.28579447, "czk": 752610302.9571973, "dkk": 220744875.4694627, "dot": 1593202.1178074633, "eos": 7109487.776485873, "eth": 14606.146957345232, "eur": 29684386.184017695, "gbp": 25497026.81193907, "hkd": 280418983.27664006, "huf": 10254194815.46131, "idr": 514980208847.278, "ils": 117220985.16438071, "inr": 2638262641.7094164, "jpy": 3952522091.7256036, "krw": 40194031204.32059, "kwd": 10870447.514647301, "lkr": 7171229499.037043, "ltc": 215088.45605876346, "mmk": 59465402542.94634, "mxn": 711870605.8139588, "myr": 148891677.74953663, "ngn": 14873302148.057787, "nok": 298955735.1822644, "nzd": 50235484.7630613, "php": 1725777474.2489605, "pkr": 5627339370.256782, "pln": 132622899.67086346, "rub": 2593522833.5071926, "sar": 135517443.4995555, "sek": 298157418.512801, "sgd": 47827454.11219209, "thb": 1124872054.3997557, "try": 304619978.58612925, "twd": 996448655.2497928, "uah": 979530397.9778528, "usd": 36134371.496065326, "vef": 3618134.617901014, "vnd": 829035437912.0942, "xag": 1291874.9656961868, "xau": 19029.805404687824, "xdr": 25070785.76577156, "xlm": 106043451.57222511, "xrp": 41569622.83670306, "yfi": 953.6789639457143, "zar": 491338923.1363233, "bits": 984227253.0845691, "link": 1564018.6164305632, "sats": 98422725308.45691}}, "community_data": {"facebook_likes": null, "twitter_followers": 66245, "reddit_average_posts_48h": 0.3, "reddit_average_comments_48h": 5.8, "reddit_subscribers": 4450, "reddit_accounts_active_48h": "33.9090909090909"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 51930, "bing_matches": null}}, "BLZ_20210616": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.6323857743597389, "ars": 16.378663119504473, "aud": 0.22336159611234424, "bch": 0.00029577857761635293, "bdt": 14.612634897506997, "bhd": 0.0648915506247319, "bmd": 0.1721667731234482, "bnb": 0.0004989132510734875, "brl": 0.8808561726644081, "btc": 4.8258027129414925e-06, "cad": 0.2092842077411323, "chf": 0.1546572401300206, "clp": 124.3045036816876, "cny": 1.1016435311850086, "czk": 3.6103286240600556, "dkk": 1.057394087990686, "dot": 0.008258148891810245, "eos": 0.03552906456061104, "eth": 7.232222284784498e-05, "eur": 0.14218134708240296, "gbp": 0.12203921196114453, "hkd": 1.3362362545752868, "huf": 49.50440352698346, "idr": 2448.9001809079264, "ils": 0.5601273796798283, "inr": 12.608082696021727, "jpy": 18.883340140632843, "krw": 192.23281053098603, "kwd": 0.05175832483732904, "lkr": 34.11710716064272, "ltc": 0.0010622502458726489, "mmk": 283.62035167045565, "mxn": 3.421263682154539, "myr": 0.707261103991127, "ngn": 70.9327105268606, "nok": 1.4354576875940637, "nzd": 0.24155531986216483, "php": 8.226128419838362, "pkr": 26.840799929945593, "pln": 0.6400558041023895, "rub": 12.387227159458963, "sar": 0.6456878957515764, "sek": 1.4336628489842496, "sgd": 0.22824011379557044, "thb": 5.349774812787584, "try": 1.4439282928317365, "twd": 4.761444277502082, "uah": 4.655913448748655, "usd": 0.1721667731234482, "vef": 0.01723905899285089, "vnd": 3948.6449415862853, "xag": 0.006165658860777416, "xau": 9.173045672017304e-05, "xdr": 0.11942968018091214, "xlm": 0.522353204830443, "xrp": 0.20618806872379666, "yfi": 4.7189012626916816e-06, "zar": 2.3638497949849446, "bits": 4.825802712941492, "link": 0.007899076691111296, "sats": 482.5802712941492}, "market_cap": {"aed": 188107733.30079478, "ars": 4871952088.148458, "aud": 66440526.10715357, "bch": 87412.34576598281, "bdt": 4346634190.032363, "bhd": 19302462.1889238, "bmd": 51212254.85306547, "bnb": 147923.0428169589, "brl": 262017054.65571913, "btc": 1427.391020753105, "cad": 62253104.87683775, "chf": 46003917.322253816, "clp": 36975275812.16754, "cny": 327691855.12830925, "czk": 1073918423.6560395, "dkk": 314529537.4472485, "dot": 2439158.0771288835, "eos": 10501542.770947391, "eth": 21390.773133689992, "eur": 42292872.48658123, "gbp": 36301448.366811424, "hkd": 397473161.4685481, "huf": 14725443729.813257, "idr": 728443113030.0027, "ils": 166613949.93896344, "inr": 3750365604.948717, "jpy": 5616986426.677123, "krw": 57181043156.19021, "kwd": 15395888.964222267, "lkr": 10148380869.677895, "ltc": 313384.426995068, "mmk": 84364929816.32832, "mxn": 1017679685.9891461, "myr": 210379942.93639335, "ngn": 21099448999.46292, "nok": 426987296.06291866, "nzd": 71852381.13875124, "php": 2446921536.8794622, "pkr": 7983990531.592906, "pln": 190389239.254498, "rub": 3684670524.4232073, "sar": 192064545.74750707, "sek": 426453408.3060756, "sgd": 67891676.56066999, "thb": 1591329303.2595856, "try": 429506939.0016889, "twd": 1416326120.2163775, "uah": 1384935210.1184068, "usd": 51212254.85306547, "vef": 5127883.078437442, "vnd": 1174553065055.055, "xag": 1834019.9283911034, "xau": 27285.8893857132, "xdr": 35525224.220003515, "xlm": 154420332.32587862, "xrp": 61077284.400125325, "yfi": 1395.0590362647963, "zar": 703144259.1325879, "bits": 1427391020.7531047, "link": 2335237.9468136565, "sats": 142739102075.31046}, "total_volume": {"aed": 41772673.301674396, "ars": 1081903754.5585911, "aud": 14754302.454048887, "bch": 19537.855520091645, "bdt": 965247556.7911321, "bhd": 4286455.600666288, "bmd": 11372593.53180537, "bnb": 32956.05481332898, "brl": 58185554.796401866, "btc": 318.77168702938656, "cad": 13824410.971327284, "chf": 10215989.397027249, "clp": 8211018705.281779, "cny": 72769814.23196307, "czk": 238482717.73228222, "dkk": 69846887.10538614, "dot": 545497.6530479909, "eos": 2346896.5729141035, "eth": 4777.293718431025, "eur": 9391885.779338496, "gbp": 8061383.316865524, "hkd": 88265996.45246568, "huf": 3270047112.651485, "idr": 161763770396.39954, "ils": 36999595.79637572, "inr": 832835495.0024642, "jpy": 1247351902.148148, "krw": 12698069307.937284, "kwd": 3418931.4208731125, "lkr": 2253628764.598089, "ltc": 70167.66392379256, "mmk": 18734735619.299896, "mxn": 225993904.14533004, "myr": 46718614.22865658, "ngn": 4685508535.10381, "nok": 94820135.83078058, "nzd": 15956101.275522433, "php": 543382518.9496611, "pkr": 1772987331.6084588, "pln": 42279322.343516394, "rub": 818246732.019864, "sar": 42651353.99572231, "sek": 94701576.54321139, "sgd": 15076556.264366137, "thb": 353383021.17621076, "try": 95379667.43254538, "twd": 314520446.71560925, "uah": 307549535.9021346, "usd": 11372593.53180537, "vef": 1138737.7903396734, "vnd": 260830432651.95627, "xag": 407276.79799817194, "xau": 6059.317833745891, "xdr": 7889008.916703931, "xlm": 34504396.93327467, "xrp": 13619893.398491822, "yfi": 311.71023887887793, "zar": 156145709.1916878, "bits": 318771687.0293865, "link": 521778.89412003, "sats": 31877168702.938656}}, "community_data": {"facebook_likes": null, "twitter_followers": 62206, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 34, "stars": 222, "subscribers": 56, "total_issues": 8, "closed_issues": 8, "pull_requests_merged": 332, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 205295, "bing_matches": null}}, "NKN_20210617": {"id": "nkn", "symbol": "nkn", "name": "NKN", "localization": {"en": "NKN", "de": "NKN", "es": "NKN", "fr": "NKN", "it": "NKN", "pl": "NKN", "ro": "NKN", "hu": "NKN", "nl": "NKN", "pt": "NKN", "sv": "NKN", "vi": "NKN", "tr": "NKN", "ru": "NKN", "ja": "NKN", "zh": "NKN", "zh-tw": "NKN", "ko": "\uc5d4\ucf00\uc774\uc5d4", "ar": "NKN", "th": "NKN", "id": "NKN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3375/thumb/nkn.png?1548329212", "small": "https://assets.coingecko.com/coins/images/3375/small/nkn.png?1548329212"}, "market_data": {"current_price": {"aed": 1.0744705072156122, "ars": 27.827404711286537, "aud": 0.3795177442147901, "bch": 0.0004763040585133905, "bdt": 24.828650734358337, "bhd": 0.1102586670626583, "bmd": 0.29253236722371667, "bnb": 0.0007988140380527693, "brl": 1.4966833504266996, "btc": 7.493611120255694e-06, "cad": 0.35568132933630037, "chf": 0.26265662162389314, "clp": 211.20853646403708, "cny": 1.871826858154391, "czk": 6.139406044160861, "dkk": 1.796345609036763, "dot": 0.013248442101768556, "eos": 0.057377938885266114, "eth": 0.00011621509193486898, "eur": 0.2415726437886106, "gbp": 0.20720360102823063, "hkd": 2.2705631012986784, "huf": 84.13815946088509, "idr": 4150.805000524715, "ils": 0.9516896996415699, "inr": 21.42268702173685, "jpy": 32.0922633462778, "krw": 326.6273214900942, "kwd": 0.0879533665942169, "lkr": 57.969130392958135, "ltc": 0.001707636628979996, "mmk": 481.90560444256556, "mxn": 5.814724369779254, "myr": 1.203185626391144, "ngn": 120.52333529617133, "nok": 2.4426160130813113, "nzd": 0.40974365105818106, "php": 13.974652059419046, "pkr": 45.623940077722125, "pln": 1.0866933871153142, "rub": 21.090501307071207, "sar": 1.0970841367991073, "sek": 2.4337116203553872, "sgd": 0.3878145472139897, "thb": 9.089680094530904, "try": 2.4538492559827008, "twd": 8.090275147939085, "uah": 7.910965385722779, "usd": 0.29253236722371667, "vef": 0.029291265930110694, "vnd": 6734.789306438594, "xag": 0.010502277648790467, "xau": 0.00015608649517955822, "xdr": 0.20292560768995113, "xlm": 0.8456554418933113, "xrp": 0.33019660508245435, "yfi": 7.562274218200478e-06, "zar": 4.0139653249181935, "bits": 7.493611120255694, "link": 0.012505393237325158, "sats": 749.3611120255695}, "market_cap": {"aed": 696650867.551693, "ars": 18041012120.092117, "aud": 246021895.29859325, "bch": 309558.19800523255, "bdt": 16098069661.355324, "bhd": 71488045.0868257, "bmd": 189668237.55959827, "bnb": 518898.68027146725, "brl": 970399603.826172, "btc": 4873.225167297049, "cad": 230584038.7706674, "chf": 170349010.21825278, "clp": 136940576008.26173, "cny": 1213630151.6726024, "czk": 3980662135.782067, "dkk": 1164611723.3529878, "dot": 8617968.558000334, "eos": 37340398.3776921, "eth": 75710.80510328563, "eur": 156612098.44476104, "gbp": 134341633.3269881, "hkd": 1472144166.1015823, "huf": 54547636780.95281, "idr": 2691243626730.0786, "ils": 617043883.8878901, "inr": 13889756302.065351, "jpy": 20810399025.039135, "krw": 211774269609.15082, "kwd": 57026031.64114384, "lkr": 37585252185.39824, "ltc": 1110760.4281915114, "mmk": 312451533251.4088, "mxn": 3770391185.9175606, "myr": 779157119.8948317, "ngn": 78143313874.55437, "nok": 1583626035.0967016, "nzd": 265629797.6975045, "php": 9059727175.554543, "pkr": 29581042218.307755, "pln": 704566671.4462396, "rub": 13674397122.391844, "sar": 711312791.3197592, "sek": 1577850068.2582996, "sgd": 251450769.262262, "thb": 5892141668.599517, "try": 1591050977.5924466, "twd": 5245464777.948226, "uah": 5129206304.058446, "usd": 189668237.55959827, "vef": 18991480.62684257, "vnd": 4366612933161.526, "xag": 6802902.750480375, "xau": 101174.72796141653, "xdr": 131570201.03976768, "xlm": 550013289.6121192, "xrp": 214724935.8432113, "yfi": 4929.077301898631, "zar": 2602277048.889795, "bits": 4873225167.297049, "link": 8134881.468168006, "sats": 487322516729.70496}, "total_volume": {"aed": 65874659.15945135, "ars": 1706068978.4761693, "aud": 23267834.600597657, "bch": 29201.701954706816, "bdt": 1522218519.2903652, "bhd": 6759843.163075796, "bmd": 17934852.426901296, "bnb": 48974.45033170341, "brl": 91760085.47175498, "btc": 459.4254333695364, "cad": 21806449.02029648, "chf": 16103201.818246735, "clp": 12948973710.9583, "cny": 114759740.22401303, "czk": 376400541.36862004, "dkk": 110132064.05685735, "dot": 812248.0812519857, "eos": 3517781.215915923, "eth": 7125.025320827679, "eur": 14810565.264430227, "gbp": 12703435.32249845, "hkd": 139205840.82450086, "huf": 5158422255.025332, "idr": 254481498385.17862, "ils": 58347096.703389265, "inr": 1313402458.5686753, "jpy": 1967542985.4932044, "krw": 20025178290.916843, "kwd": 5392328.600376985, "lkr": 3554026546.8074102, "ltc": 104693.40958809447, "mmk": 29545126856.90041, "mxn": 356494648.66000205, "myr": 73766048.03184487, "ngn": 7389159199.883339, "nok": 149754224.27938312, "nzd": 25120953.22760726, "php": 856771251.6109334, "pkr": 2797155884.640839, "pln": 66624031.098404154, "rub": 1293036501.0256016, "sar": 67261077.05660811, "sek": 149208305.30636057, "sgd": 23776502.885129463, "thb": 557278747.1359757, "try": 150442922.61257604, "twd": 496006278.71838087, "uah": 485012985.37934726, "usd": 17934852.426901296, "vef": 1795816.7735056235, "vnd": 412902864334.5845, "xag": 643883.6206912907, "xau": 9569.499209421707, "xdr": 12441156.040607454, "xlm": 51846247.64193589, "xrp": 20244007.322063968, "yfi": 463.63509584381495, "zar": 246092001.48458043, "bits": 459425433.3695364, "link": 766692.5351897018, "sats": 45942543336.953636}}, "community_data": {"facebook_likes": null, "twitter_followers": 27828, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 3216, "reddit_accounts_active_48h": "32.0833333333333"}, "developer_data": {"forks": 21, "stars": 53, "subscribers": 11, "total_issues": 6, "closed_issues": 6, "pull_requests_merged": 66, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 103719, "bing_matches": null}}, "NKN_20210705": {"id": "nkn", "symbol": "nkn", "name": "NKN", "localization": {"en": "NKN", "de": "NKN", "es": "NKN", "fr": "NKN", "it": "NKN", "pl": "NKN", "ro": "NKN", "hu": "NKN", "nl": "NKN", "pt": "NKN", "sv": "NKN", "vi": "NKN", "tr": "NKN", "ru": "NKN", "ja": "NKN", "zh": "NKN", "zh-tw": "NKN", "ko": "\uc5d4\ucf00\uc774\uc5d4", "ar": "NKN", "th": "NKN", "id": "NKN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3375/thumb/nkn.png?1548329212", "small": "https://assets.coingecko.com/coins/images/3375/small/nkn.png?1548329212"}, "market_data": {"current_price": {"aed": 0.778322051111174, "ars": 20.292271311676974, "aud": 0.2837779743016977, "bch": 0.00042330784841288855, "bdt": 17.976532459127515, "bhd": 0.07988374439535419, "bmd": 0.21189209711182969, "bnb": 0.0007326039491140321, "brl": 1.069718605764526, "btc": 6.299682458284961e-06, "cad": 0.26359906610954376, "chf": 0.1962010635365048, "clp": 156.90601209501025, "cny": 1.3707511654261395, "czk": 4.567662585996016, "dkk": 1.330132509870288, "dot": 0.013860030783055519, "eos": 0.05348299554442262, "eth": 9.980100755262754e-05, "eur": 0.17887570621615548, "gbp": 0.15398389400004073, "hkd": 1.6455540261704726, "huf": 62.82516727716876, "idr": 3096.1461337883457, "ils": 0.6926561951698306, "inr": 15.798597631934669, "jpy": 23.639900733354086, "krw": 240.19404331610437, "kwd": 0.06383185857864716, "lkr": 42.187909144881566, "ltc": 0.0015336487609983987, "mmk": 348.91160638761403, "mxn": 4.238642894363674, "myr": 0.8812592318880977, "ngn": 87.09010286884958, "nok": 1.8283137145266848, "nzd": 0.3041346599633284, "php": 10.427003715970582, "pkr": 33.49230923336315, "pln": 0.8077159347146243, "rub": 15.574577466860479, "sar": 0.7947195329382669, "sek": 1.8178924374065324, "sgd": 0.28591872015881836, "thb": 6.798177165734537, "try": 1.8377200285016724, "twd": 5.910549940651946, "uah": 5.803514978608974, "usd": 0.21189209711182969, "vef": 0.021216755683807507, "vnd": 4885.040894876781, "xag": 0.008146098440941538, "xau": 0.00011931432096269996, "xdr": 0.14869527914822658, "xlm": 0.7802003976344236, "xrp": 0.31865576576050825, "yfi": 6.563458274225646e-06, "zar": 3.063627053644591, "bits": 6.299682458284961, "link": 0.011532943734397356, "sats": 629.968245828496}, "market_cap": {"aed": 505356933.27025646, "ars": 13173524209.478848, "aud": 184213003.18543577, "bch": 275147.28786974924, "bdt": 11671987580.72997, "bhd": 51862647.37836812, "bmd": 137579476.55185026, "bnb": 476091.6216718807, "brl": 694574940.233174, "btc": 4094.542691313204, "cad": 171146805.13835353, "chf": 127389377.46208426, "clp": 101877546666.95691, "cny": 890015391.7615767, "czk": 2967272876.42734, "dkk": 863614990.8470883, "dot": 9016496.587696442, "eos": 34838116.481024906, "eth": 64836.637407568924, "eur": 116138127.8696741, "gbp": 99977767.39494076, "hkd": 1068485552.436785, "huf": 40783607667.711586, "idr": 1995315148431.4834, "ils": 449734926.69510996, "inr": 10257875692.77651, "jpy": 15349899432.970524, "krw": 156001344248.15506, "kwd": 41445954.89072155, "lkr": 27392198841.217587, "ltc": 995727.3773404483, "mmk": 226544910470.81732, "mxn": 2751982320.442563, "myr": 572193042.9791466, "ngn": 56546756244.61586, "nok": 1187065991.174204, "nzd": 197430538.65672502, "php": 6769397552.856978, "pkr": 21746230442.97365, "pln": 524409214.34211004, "rub": 10112421579.725245, "sar": 516002970.745315, "sek": 1180368347.0967095, "sgd": 185633924.01926333, "thb": 4414192791.836235, "try": 1193217857.4682217, "twd": 3837662555.858796, "uah": 3768165796.652869, "usd": 137579476.55185026, "vef": 13775832.98713678, "vnd": 3171809512540.8433, "xag": 5289384.682896721, "xau": 77453.11791439514, "xdr": 96546397.67026085, "xlm": 506927187.22599155, "xrp": 207126749.91733277, "yfi": 4264.05928323918, "zar": 1989338695.9700723, "bits": 4094542691.313204, "link": 7507591.246186376, "sats": 409454269131.3204}, "total_volume": {"aed": 27790723.522984084, "ars": 724554701.837228, "aud": 10132560.441364761, "bch": 15114.606304108802, "bdt": 641869060.192158, "bhd": 2852324.4989687605, "bmd": 7565807.340461735, "bnb": 26158.315536104787, "brl": 38195312.56727509, "btc": 224.93610868514764, "cad": 9412053.476717902, "chf": 7005544.175285873, "clp": 5602477271.45993, "cny": 48943964.26618108, "czk": 163092704.2250305, "dkk": 47493636.8280513, "dot": 494885.482124065, "eos": 1909660.840566027, "eth": 3563.489180668416, "eur": 6386925.938093, "gbp": 5498140.286579609, "hkd": 58756059.806025945, "huf": 2243231900.7182217, "idr": 110550820278.09286, "ils": 24731943.273308747, "inr": 564103841.3509549, "jpy": 844084970.2941178, "krw": 8576355044.978743, "kwd": 2279176.763892069, "lkr": 1506359118.8048038, "ltc": 54760.376681381815, "mmk": 12458218257.127857, "mxn": 151344745.56098154, "myr": 31466192.728980284, "ngn": 3109634330.62329, "nok": 65281666.99266949, "nzd": 10859415.118370263, "php": 372306010.1277734, "pkr": 1195874515.8535051, "pln": 28840259.883060284, "rub": 556104989.8957481, "sar": 28376211.089832947, "sek": 64909565.45605096, "sgd": 10208997.792925442, "thb": 242735332.76292363, "try": 65617528.31212725, "twd": 211041764.82594076, "uah": 207219980.47178727, "usd": 7565807.340461735, "vef": 757564.2890004335, "vnd": 174424996329.18643, "xag": 290864.13424882066, "xau": 4260.23045534059, "xdr": 5309305.301169026, "xlm": 27857791.658640094, "xrp": 11377904.90788772, "yfi": 234.3544731814274, "zar": 109389695.82555212, "bits": 224936108.68514764, "link": 411794.6424249358, "sats": 22493610868.514763}}, "community_data": {"facebook_likes": null, "twitter_followers": 28353, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 3255, "reddit_accounts_active_48h": "98.6153846153846"}, "developer_data": {"forks": 21, "stars": 53, "subscribers": 10, "total_issues": 6, "closed_issues": 6, "pull_requests_merged": 66, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 105019, "bing_matches": null}}, "KEEP_20210831": {"id": "keep-network", "symbol": "keep", "name": "Keep Network", "localization": {"en": "Keep Network", "de": "Keep Network", "es": "Keep Network", "fr": "Keep Network", "it": "Keep Network", "pl": "Keep Network", "ro": "Keep Network", "hu": "Keep Network", "nl": "Keep Network", "pt": "Keep Network", "sv": "Keep Network", "vi": "Keep Network", "tr": "Keep Network", "ru": "Keep Network", "ja": "\u30ad\u30fc\u30d7", "zh": "Keep Network", "zh-tw": "Keep Network", "ko": "Keep Network", "ar": "Keep Network", "th": "Keep Network", "id": "Keep Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3373/thumb/IuNzUb5b_400x400.jpg?1589526336", "small": "https://assets.coingecko.com/coins/images/3373/small/IuNzUb5b_400x400.jpg?1589526336"}, "market_data": {"current_price": {"aed": 1.54656580329438, "ars": 41.04670197158154, "aud": 0.5757294995888365, "bch": 0.0006645867651316617, "bdt": 35.93537641235884, "bhd": 0.158748085296399, "bmd": 0.4210623505943986, "bnb": 0.0008515058049480514, "brl": 2.19162953484384, "btc": 8.583553824340286e-06, "cad": 0.5314691095437553, "chf": 0.38384591261241163, "clp": 329.7760329855325, "cny": 2.7250313205768233, "czk": 9.105452278486355, "dkk": 2.654250739441906, "dot": 0.015861178571175177, "eos": 0.08299776204460595, "eth": 0.00012884835177764825, "eur": 0.3569716080857236, "gbp": 0.30589337645981834, "hkd": 3.279088319918218, "huf": 124.64919295821288, "idr": 6030.939206916153, "ils": 1.3557660308083885, "inr": 30.946735369166394, "jpy": 46.24738891556062, "krw": 489.41340196638714, "kwd": 0.12669134535859594, "lkr": 83.99660703103686, "ltc": 0.0023930454455483178, "mmk": 693.0248558574743, "mxn": 8.504175241837537, "myr": 1.7663565607435023, "ngn": 173.26715726959463, "nok": 3.6689267919042936, "nzd": 0.6005005976743044, "php": 20.997788673664736, "pkr": 70.1445428748539, "pln": 1.6336798140712059, "rub": 30.842227693748807, "sar": 1.5793362439164393, "sek": 3.6368418407889993, "sgd": 0.5667520292118126, "thb": 13.696645831955115, "try": 3.5178075142759577, "twd": 11.741702181378018, "uah": 11.3188932641533, "usd": 0.4210623505943986, "vef": 0.0421609731650171, "vnd": 9566.282210580162, "xag": 0.017530400428436056, "xau": 0.00023161797781496657, "xdr": 0.29678495569176044, "xlm": 1.1819974958145019, "xrp": 0.3567220955886093, "yfi": 1.1129626163288864e-05, "zar": 6.201570513871026, "bits": 8.583553824340285, "link": 0.016216732452380724, "sats": 858.3553824340286}, "market_cap": {"aed": 850642851.3165339, "ars": 22576526344.93185, "aud": 316663010.44163907, "bch": 365606.5976844178, "bdt": 19765192654.219963, "bhd": 87314696.62003478, "bmd": 231592912.32788596, "bnb": 468286.8598282712, "brl": 1205441108.6666453, "btc": 4721.770427699504, "cad": 292318889.8693812, "chf": 211123109.5859613, "clp": 181383568935.20023, "cny": 1498823010.0036128, "czk": 5008185149.444907, "dkk": 1459892241.4412928, "dot": 8712585.240814699, "eos": 45593925.8325839, "eth": 70758.86848666982, "eur": 196341691.956634, "gbp": 168247618.94796258, "hkd": 1803565701.6548214, "huf": 68559607800.985825, "idr": 3317140022209.1616, "ils": 745699070.6171898, "inr": 17021337958.780167, "jpy": 25437010626.562443, "krw": 269187389786.07156, "kwd": 69682833.42577584, "lkr": 46199853348.364456, "ltc": 1315908.1597002689, "mmk": 381177857524.1278, "mxn": 4677470470.6406975, "myr": 971532267.215483, "ngn": 95300483422.92523, "nok": 2017984841.5690334, "nzd": 330287621.4738884, "php": 11549213612.935686, "pkr": 38580934499.04327, "pln": 898557340.5409652, "rub": 16963856597.940388, "sar": 868667264.4971926, "sek": 2000337461.649649, "sgd": 311725217.95789593, "thb": 7533435589.451842, "try": 1934866145.3345568, "twd": 6458176562.291258, "uah": 6225623002.56306, "usd": 231592912.32788596, "vef": 23189398.31139122, "vnd": 5261651045673.34, "xag": 9642079.097701995, "xau": 127394.62921332335, "xdr": 163237801.0684857, "xlm": 650778366.2586061, "xrp": 196514970.16582146, "yfi": 6107.288498158071, "zar": 3410990734.0009103, "bits": 4721770427.699505, "link": 8916753.028996117, "sats": 472177042769.9504}, "total_volume": {"aed": 90238027.01878725, "ars": 2394966572.811679, "aud": 33592294.63676521, "bch": 38776.881229711355, "bdt": 2096734235.7637084, "bhd": 9262531.202773847, "bmd": 24567875.281216938, "bnb": 49683.11317234701, "brl": 127875790.83873388, "btc": 500.8276791508752, "cad": 31009817.85870479, "chf": 22396394.488736022, "clp": 19241559920.249077, "cny": 158998375.2449794, "czk": 531279074.5625531, "dkk": 154868515.41020694, "dot": 925457.8482252129, "eos": 4842700.050606532, "eth": 7517.960777530841, "eur": 20828349.848912317, "gbp": 17848070.034298457, "hkd": 191326136.77314526, "huf": 7272950958.87506, "idr": 351889362834.1619, "ils": 79105364.58173211, "inr": 1805660215.9685447, "jpy": 2698412910.4763103, "krw": 28555978475.616867, "kwd": 7392105.153988975, "lkr": 4900980015.598087, "ltc": 139627.8768821783, "mmk": 40436168661.136696, "mxn": 496196148.6609742, "myr": 103062236.80470505, "ngn": 10109680678.220745, "nok": 214072181.26288384, "nzd": 35037622.73955917, "php": 1225165471.5452669, "pkr": 4092748683.359271, "pln": 95320899.30359352, "rub": 1799562469.3237436, "sar": 92150095.61617371, "sek": 212200109.16645506, "sgd": 33068482.96789435, "thb": 799163083.7937697, "try": 205254770.82445472, "twd": 685097288.7366138, "uah": 660427505.9087272, "usd": 24567875.281216938, "vef": 2459981.35190825, "vnd": 558167283117.7706, "xag": 1022852.5318106138, "xau": 13514.296834691799, "xdr": 17316617.75621518, "xlm": 68966429.83844998, "xrp": 20813791.45417207, "yfi": 649.3842708099089, "zar": 361845248.61312217, "bits": 500827679.1508752, "link": 946203.4774577466, "sats": 50082767915.087524}}, "community_data": {"facebook_likes": null, "twitter_followers": 23390, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 2901, "reddit_accounts_active_48h": "7.61538461538461"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 114881, "bing_matches": null}}, "EVX_20200624": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 0.8692001499238807, "ars": 16.504573693111787, "aud": 0.34623626407941277, "bch": 0.0010173477437847823, "bdt": 20.093302433432587, "bhd": 0.08921409094043029, "bmd": 0.2366490559152397, "bnb": 0.014734634606520958, "brl": 1.2569543610221194, "btc": 2.5282656432858282e-05, "cad": 0.3220604331761675, "chf": 0.22536444568392167, "clp": 193.4128455380323, "cny": 1.6736531181493515, "czk": 5.644068151125661, "dkk": 1.578685852010566, "eos": 0.09334714074535799, "eth": 0.0010335040288354388, "eur": 0.211721864259464, "gbp": 0.1916365122877139, "hkd": 1.8341414083993879, "huf": 73.25471525856238, "idr": 3370.592503400765, "ils": 0.8162854210212337, "inr": 18.04502297391285, "jpy": 25.29540984125639, "krw": 286.81510603343247, "kwd": 0.0728614045276313, "lkr": 44.12880233971218, "ltc": 0.005428750408643303, "mmk": 329.24337452538373, "mxn": 5.358065934599302, "myr": 1.0101364951742011, "ngn": 91.70150916715538, "nok": 2.2823085737369504, "nzd": 0.3693516705631021, "php": 11.849866143243402, "pkr": 39.488208066240624, "pln": 0.9450698372503052, "rub": 16.429242382387557, "sar": 0.8879671300051256, "sek": 2.2425929459279734, "sgd": 0.33070522318875273, "thb": 7.33934200032155, "try": 1.621755980187137, "twd": 7.0046227358463655, "uah": 6.326345128008502, "usd": 0.2366490559152397, "vef": 58804.365942936456, "vnd": 5508.1559732443975, "xag": 0.013447116403743358, "xau": 0.0001357229665485083, "xdr": 0.17163446078364591, "xlm": 3.388500319051756, "xrp": 1.253528757358493, "zar": 4.097295607550554, "bits": 25.282656432858282, "link": 0.056629406023213945, "sats": 2528.265643285828}, "market_cap": {"aed": 18941629.204236884, "ars": 359668040.8951883, "aud": 7545188.449204529, "bch": 22179.558906236078, "bdt": 437873698.2684619, "bhd": 1944155.4750475942, "bmd": 5157061.54568858, "bnb": 321201.9556883153, "brl": 27391577.68807852, "btc": 551.1772136600026, "cad": 7018348.198758502, "chf": 4911147.065882423, "clp": 4214857077.324001, "cny": 36472286.369573355, "czk": 122995660.0115953, "dkk": 34402757.57128853, "eos": 2035807.3724171566, "eth": 22536.66406968685, "eur": 4613847.624835024, "gbp": 4176147.1832062476, "hkd": 39969650.79801299, "huf": 1596368401.4678993, "idr": 73452027595.24261, "ils": 17788510.242620893, "inr": 393237546.24723196, "jpy": 551238139.8280302, "krw": 6250281237.451388, "kwd": 1587797.365178966, "lkr": 961655852.4743619, "ltc": 118334.03944720287, "mmk": 7174879018.0922365, "mxn": 116763093.28055353, "myr": 22012917.207771737, "ngn": 1998361348.9543247, "nok": 49736119.73854576, "nzd": 8048919.906864281, "php": 258232549.34414566, "pkr": 860527917.7597789, "pln": 20594983.13578462, "rub": 358026419.27865726, "sar": 19350599.655994613, "sek": 48870635.88464053, "sgd": 7206735.657022502, "thb": 159939105.83810613, "try": 35341342.77260388, "twd": 152644896.10314548, "uah": 137863855.22743154, "usd": 5157061.54568858, "vef": 1281466064379.8823, "vnd": 120033858776.29555, "xag": 293039.86292250874, "xau": 2957.6779376833183, "xdr": 3740262.0272415616, "xlm": 73872037.32250673, "xrp": 27340223.902593713, "zar": 89288357.97505085, "bits": 551177213.6600026, "link": 1234555.328708682, "sats": 55117721366.00026}, "total_volume": {"aed": 2656502.602542969, "ars": 50442286.47849786, "aud": 1058188.423808099, "bch": 3109.280330073767, "bdt": 61410378.51037088, "bhd": 272661.555324758, "bmd": 723261.3029153583, "bnb": 45032.89050648517, "brl": 3841580.7125958423, "btc": 77.27039925035623, "cad": 984300.7723635681, "chf": 688772.58768584, "clp": 591120155.2162867, "cny": 5115120.912608294, "czk": 17249745.91146612, "dkk": 4824876.151748361, "eos": 285293.2346499303, "eth": 3158.658155524273, "eur": 647077.2968340724, "gbp": 585691.2170104341, "hkd": 5605615.030406398, "huf": 223885536.31744897, "idr": 10301410737.423468, "ils": 2494781.3752110964, "inr": 55150301.68522768, "jpy": 77309376.99628027, "krw": 876581850.2138727, "kwd": 222683.47603200382, "lkr": 134869141.78836232, "ltc": 16591.67867191473, "mmk": 1006253716.5614922, "mxn": 16375648.463827776, "myr": 3087240.871494209, "ngn": 280263754.8797014, "nok": 6975330.902174023, "nzd": 1128835.141354267, "php": 36216284.88222036, "pkr": 120686274.04966855, "pln": 2888380.1762576285, "rub": 50212054.32424729, "sar": 2713859.393648061, "sek": 6853949.574012249, "sgd": 1010721.5077590706, "thb": 22430945.423231397, "try": 4956509.708878949, "twd": 21407955.957252283, "uah": 19334962.49236885, "usd": 723261.3029153583, "vef": 179721495885.591, "vnd": 16834362809.78295, "xag": 41097.89871339854, "xau": 414.80482244801635, "xdr": 524559.725165422, "xlm": 10356141.697705612, "xrp": 3831111.1733895945, "zar": 12522405.162722437, "bits": 77270399.25035624, "link": 173074.25049835138, "sats": 7727039925.035624}}, "community_data": {"facebook_likes": null, "twitter_followers": 16655, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2841, "reddit_accounts_active_48h": "24.6153846153846"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1214977, "bing_matches": null}}, "GVT_20200704": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 4.126111040860764, "ars": 79.07784145192322, "aud": 1.6278671796541522, "bch": 0.00505304462821582, "bdt": 95.37200919254853, "bhd": 0.42345770329400273, "bmd": 1.1233014921215212, "bnb": 0.07281219974622416, "brl": 6.136819588456806, "btc": 0.00012282036332466006, "cad": 1.5249379406295671, "chf": 1.0638990626151508, "clp": 924.251089426656, "cny": 7.936686692584601, "czk": 26.661111594907506, "dkk": 7.45193042686553, "eos": 0.47418409737226747, "eth": 0.00497447180791709, "eur": 0.9997787668418703, "gbp": 0.9068412945897038, "hkd": 8.706092049613238, "huf": 354.5701159881576, "idr": 16058.520430306684, "ils": 3.88830811497865, "inr": 84.87385249097179, "jpy": 121.30813638793329, "krw": 1347.2316445759452, "kwd": 0.3458656527257079, "lkr": 209.19803204252327, "ltc": 0.027234686027720906, "mmk": 1540.2124325640293, "mxn": 25.855783056160764, "myr": 4.813346893740719, "ngn": 435.7089326061484, "nok": 10.810072813306087, "nzd": 1.7413678090211038, "php": 55.979587200586515, "pkr": 188.54703387436405, "pln": 4.445902619351352, "rub": 79.96289069756577, "sar": 4.213730803849237, "sek": 10.473573248421683, "sgd": 1.5656576197189815, "thb": 34.69878309163374, "try": 7.69719881446429, "twd": 33.03629688329397, "uah": 29.970408339264537, "usd": 1.1233014921215212, "vef": 279126.5393030743, "vnd": 26010.877879541382, "xag": 0.061670734675441104, "xau": 0.0006296554183937968, "xdr": 0.8153686074832633, "xlm": 16.771003243206064, "xrp": 6.38474884140154, "zar": 19.48613564413045, "bits": 122.82036332466006, "link": 0.2457214681354, "sats": 12282.036332466007}, "market_cap": {"aed": 18299726.70916421, "ars": 350672025.34447753, "aud": 7219559.039269578, "bch": 22400.567816836345, "bdt": 422984666.8313235, "bhd": 1878143.219089926, "bmd": 4981957.61438643, "bnb": 322647.4344872026, "brl": 27216932.64315448, "btc": 544.5829800182926, "cad": 6762225.2941841185, "chf": 4718282.52568741, "clp": 4099148612.2551637, "cny": 35200021.52444734, "czk": 118312027.62221056, "dkk": 33049838.509823825, "eos": 2102307.3232261147, "eth": 22054.78915328406, "eur": 4434490.292141502, "gbp": 4021461.096120797, "hkd": 38612214.11411674, "huf": 1572838434.2249975, "idr": 72773945852.15, "ils": 17245046.282198638, "inr": 376424262.44900274, "jpy": 537866734.0607694, "krw": 5975360236.702733, "kwd": 1533984.6051304971, "lkr": 927814781.6580597, "ltc": 120716.43928616316, "mmk": 6831000501.648853, "mxn": 114649297.3660709, "myr": 21347688.37764584, "ngn": 1932413915.3004487, "nok": 47947889.54184261, "nzd": 7721570.980240824, "php": 248258580.2839408, "pkr": 836225481.4656159, "pln": 19718697.84080901, "rub": 354596811.5530915, "sar": 18688827.562763054, "sek": 46445734.66391042, "sgd": 6943354.327170357, "thb": 153895161.68720374, "try": 34137868.16106015, "twd": 146519373.43910465, "uah": 132921842.5144914, "usd": 4981957.61438643, "vef": 1237954901343.4797, "vnd": 115360917810.33423, "xag": 273613.9945005648, "xau": 2792.0883254067303, "xdr": 3616243.6096394486, "xlm": 74324180.24462368, "xrp": 28330547.035157777, "zar": 86418531.36643144, "bits": 544582980.0182925, "link": 1089523.9661351687, "sats": 54458298001.829254}, "total_volume": {"aed": 590280.74418099, "ars": 11312862.557070171, "aud": 232882.4020290073, "bch": 722.8877056349778, "bdt": 13643903.424486991, "bhd": 60579.7870571636, "bmd": 160699.3205327755, "bnb": 10416.500919638347, "brl": 877932.3672353391, "btc": 17.5706603011672, "cad": 218157.36258926883, "chf": 152201.21906436127, "clp": 132223203.75630128, "cny": 1135421.0492243245, "czk": 3814134.093117221, "dkk": 1066071.9002456877, "eos": 67836.69637191869, "eth": 711.6470913182438, "eur": 143028.18044970938, "gbp": 129732.56146610963, "hkd": 1245492.0488232493, "huf": 50724740.526170515, "idr": 2297329203.2561493, "ils": 556260.6980242031, "inr": 12142038.911155177, "jpy": 17354321.37263575, "krw": 192734730.08098415, "kwd": 49479.48149136203, "lkr": 29927834.906134374, "ltc": 3896.189553983745, "mmk": 220342528.8091726, "mxn": 3698923.9292476494, "myr": 688596.5884829431, "ngn": 62332445.84018963, "nok": 1546487.1792587154, "nzd": 249119.78277428125, "php": 8008430.229937161, "pkr": 26973506.61829501, "pln": 636030.0730441458, "rub": 11439477.551717946, "sar": 602815.6125811889, "sek": 1498347.6087019548, "sgd": 223982.71295858326, "thb": 4964002.01125743, "try": 1101159.9540867363, "twd": 4726167.016868932, "uah": 4287561.522876184, "usd": 160699.3205327755, "vef": 39931795268.92014, "vnd": 3721111768.318658, "xag": 8822.604820352477, "xau": 90.07839713144189, "xdr": 116646.49439648456, "xlm": 2399256.873367198, "xrp": 913401.0840205094, "zar": 2787683.2531461627, "bits": 17570660.3011672, "link": 35152.871465609176, "sats": 1757066030.1167202}}, "community_data": {"facebook_likes": null, "twitter_followers": 20333, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.545, "reddit_subscribers": 5528, "reddit_accounts_active_48h": "40.5833333333333"}, "developer_data": {"forks": 2, "stars": 16, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 240600, "bing_matches": null}}, "ADX_20200707": {"id": "adex", "symbol": "adx", "name": "Ambire AdEx", "localization": {"en": "Ambire AdEx", "de": "Ambire AdEx", "es": "Ambire AdEx", "fr": "Ambire AdEx", "it": "Ambire AdEx", "pl": "Ambire AdEx", "ro": "Ambire AdEx", "hu": "Ambire AdEx", "nl": "Ambire AdEx", "pt": "Ambire AdEx", "sv": "Ambire AdEx", "vi": "Ambire AdEx", "tr": "Ambire AdEx", "ru": "Ambire AdEx", "ja": "\u30a2\u30c7\u30c3\u30af\u30b9", "zh": "Ambire AdEx", "zh-tw": "Ambire AdEx", "ko": "\uc560\ub4dc\uc5d1\uc2a4", "ar": "Ambire AdEx", "th": "Ambire AdEx", "id": "Ambire AdEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/847/thumb/ambireadex.png?1634704581", "small": "https://assets.coingecko.com/coins/images/847/small/ambireadex.png?1634704581"}, "market_data": {"current_price": {"aed": 0.3674036225032217, "ars": 7.068005059868729, "aud": 0.14402912196788759, "bch": 0.0004530432374057787, "bdt": 8.486704989941137, "bhd": 0.03773404250786287, "bmd": 0.1000282119529599, "bnb": 0.006541556696701964, "brl": 0.5316701522287967, "btc": 1.1035608851212997e-05, "cad": 0.13554322860685802, "chf": 0.09459107846404474, "clp": 80.27246934409244, "cny": 0.7068393569443951, "czk": 2.372394109941336, "dkk": 0.6627119112413478, "eos": 0.04143181246348815, "eth": 0.0004444010054570303, "eur": 0.08893508324737659, "gbp": 0.08012979980558142, "hkd": 0.7752216434817972, "huf": 31.425363208201635, "idr": 1453.6599902063838, "ils": 0.3436379196253183, "inr": 7.470051753102261, "jpy": 10.75368089573633, "krw": 119.97683436163851, "kwd": 0.03080458812482158, "lkr": 18.589998122338297, "ltc": 0.0024289886340130014, "mmk": 136.43656086225255, "mxn": 2.2392405553180397, "myr": 0.428871058776527, "ngn": 38.81094623774844, "nok": 0.9478123209496738, "nzd": 0.15308187520605485, "php": 4.95720202906505, "pkr": 16.762227618017302, "pln": 0.3968869379763566, "rub": 7.147205797641688, "sar": 0.3752219275776764, "sek": 0.9319828564081181, "sgd": 0.13954485722603663, "thb": 3.113016695106094, "try": 0.6864911179278648, "twd": 2.946180940756507, "uah": 2.7163952320042575, "usd": 0.1000282119529599, "vef": 24855.77454577397, "vnd": 2318.573356138052, "xag": 0.005540961772640139, "xau": 5.634489151098273e-05, "xdr": 0.07249774726178253, "xlm": 1.4892449349183334, "xrp": 0.5682453869169338, "zar": 1.7019240105809228, "bits": 11.035608851212997, "link": 0.021086377286761406, "sats": 1103.5608851212996}, "market_cap": {"aed": 33831412.459484056, "ars": 650838967.8276582, "aud": 13262549.232024, "bch": 41751.25636901345, "bdt": 781476282.0803232, "bhd": 3474641.7227718555, "bmd": 9210839.22120448, "bnb": 601711.5826974215, "brl": 48957471.05022453, "btc": 1015.7767217055986, "cad": 12481147.686693093, "chf": 8710174.844496688, "clp": 7391682752.114045, "cny": 65087474.27271934, "czk": 218455776.51911157, "dkk": 61024112.55028499, "eos": 3817294.063675257, "eth": 40926.48148951448, "eur": 8189357.151572911, "gbp": 7378140.119682983, "hkd": 71384280.28951137, "huf": 2893723303.929708, "idr": 133856520982.15416, "ils": 31643009.168918137, "inr": 687860397.86714, "jpy": 990224895.8858309, "krw": 11047756527.866522, "kwd": 2836560.835722909, "lkr": 1711811902.704762, "ltc": 223780.19117841398, "mmk": 12563407877.24242, "mxn": 206194675.78141382, "myr": 39491482.37175349, "ngn": 3573805617.827338, "nok": 87276846.49856204, "nzd": 14096148.60322146, "php": 456471129.3471811, "pkr": 1543506382.4933374, "pln": 36546307.3199341, "rub": 658131962.9495804, "sar": 34551340.86385267, "sek": 85819231.19180647, "sgd": 12849627.309737464, "thb": 286687214.17572314, "try": 63213759.30414581, "twd": 271291453.00174636, "uah": 250132230.24524224, "usd": 9210839.22120448, "vef": 2288779721138.0303, "vnd": 213499831587.5045, "xag": 510225.1357110093, "xau": 5188.373624912269, "xdr": 6675767.574870036, "xlm": 137072396.38469723, "xrp": 52331041.98865195, "zar": 156717271.27883038, "bits": 1015776721.7055986, "link": 1940903.4410130968, "sats": 101577672170.55986}, "total_volume": {"aed": 743764.4241451843, "ars": 14308325.75191176, "aud": 291569.62642534386, "bch": 917.1315195157727, "bdt": 17180313.048432946, "bhd": 76388.02852654083, "bmd": 202495.0787218035, "bnb": 13242.594388118605, "brl": 1076302.2474122879, "btc": 22.34026220642928, "cad": 274390.95642197924, "chf": 191488.25622280102, "clp": 162501955.0151478, "cny": 1430911.224279751, "czk": 4802626.40581469, "dkk": 1341580.520301629, "eos": 83873.71884970274, "eth": 899.6363608537656, "eur": 180038.37449155538, "gbp": 162213.13770183246, "hkd": 1569342.9349463377, "huf": 63616866.40663538, "idr": 2942759731.5245976, "ils": 695653.6183916717, "inr": 15122220.904155914, "jpy": 21769532.984907534, "krw": 242878664.37398487, "kwd": 62360.18194808789, "lkr": 37633214.26750428, "ltc": 4917.195209788755, "mmk": 276199400.078514, "mxn": 4533073.056823386, "myr": 868197.8525148102, "ngn": 78568090.54405975, "nok": 1918731.993674513, "nzd": 309895.8360398255, "php": 10035259.008603202, "pkr": 33933112.81680632, "pln": 803449.8485984358, "rub": 14468658.115322419, "sar": 759591.6419931579, "sek": 1886687.1474667878, "sgd": 282491.7720462459, "thb": 6301927.710496719, "try": 1389718.6628907688, "twd": 5964188.801132645, "uah": 5499015.283837205, "usd": 202495.0787218035, "vef": 50317524676.98654, "vnd": 4693672765.98168, "xag": 11217.010365764792, "xau": 114.06345289320458, "xdr": 146762.96569043753, "xlm": 3014797.1701638675, "xrp": 1150344.4089469332, "zar": 3445340.36720741, "bits": 22340262.20642928, "link": 42686.83349701776, "sats": 2234026220.642928}}, "community_data": {"facebook_likes": null, "twitter_followers": 51427, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3742, "reddit_accounts_active_48h": "2405.33333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 19706, "bing_matches": null}}, "ELF_20200724": {"id": "aelf", "symbol": "elf", "name": "aelf", "localization": {"en": "aelf", "de": "aelf", "es": "aelf", "fr": "aelf", "it": "aelf", "pl": "aelf", "ro": "aelf", "hu": "aelf", "nl": "aelf", "pt": "aelf", "sv": "aelf", "vi": "aelf", "tr": "aelf", "ru": "aelf", "ja": "\u30a8\u30eb\u30d5", "zh": "aelf", "zh-tw": "aelf", "ko": "\uc5d8\ud504", "ar": "aelf", "th": "aelf", "id": "aelf"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1371/thumb/aelf-logo.png?1547035397", "small": "https://assets.coingecko.com/coins/images/1371/small/aelf-logo.png?1547035397"}, "market_data": {"current_price": {"aed": 0.38345943730117726, "ars": 7.476561240385921, "aud": 0.1486192402590247, "bch": 0.00046848428521039585, "bdt": 8.84312248301492, "bhd": 0.03935501454601489, "bmd": 0.10439383570216094, "bnb": 0.00596776261320592, "brl": 0.5563147504568162, "btc": 1.139380331905269e-05, "cad": 0.14121093170842025, "chf": 0.0980091087106168, "clp": 82.07448029308352, "cny": 0.7290656697767511, "czk": 2.4258881905776257, "dkk": 0.6783860119337664, "eos": 0.040746186834045635, "eth": 0.0004422520415422412, "eur": 0.09112485721523776, "gbp": 0.082451190982088, "hkd": 0.8092766734385071, "huf": 32.11182530776576, "idr": 1541.1342519572809, "ils": 0.3572701557385761, "inr": 7.803486404750269, "jpy": 11.193942214671315, "krw": 125.34045883580009, "kwd": 0.03208544540305912, "lkr": 19.37153572616371, "ltc": 0.0024859162481478013, "mmk": 143.18748001743705, "mxn": 2.3480992282979956, "myr": 0.44476993700905665, "ngn": 40.390171397971024, "nok": 0.9626803875815974, "nzd": 0.1586338453117687, "php": 5.150707085750027, "pkr": 17.497257047080186, "pln": 0.405992011586804, "rub": 7.451464962283127, "sar": 0.3915806513557912, "sek": 0.9362582033715445, "sgd": 0.14496023631766408, "thb": 3.3180145262690908, "try": 0.7157867738754368, "twd": 3.075546689227528, "uah": 2.879919844296342, "usd": 0.10439383570216094, "vef": 25940.5780981243, "vnd": 2420.094611427697, "xag": 0.005244345433347466, "xau": 5.741034600604641e-05, "xdr": 0.07508150815069395, "xlm": 1.1030138219161747, "xrp": 0.5360872849178008, "yfi": 9.760992676557552e-05, "zar": 1.735078268256941, "bits": 11.39380331905269, "link": 0.01436866214070582, "sats": 1139.380331905269}, "market_cap": {"aed": 177358054.03153545, "ars": 3457491258.866842, "aud": 68742566.04564407, "bch": 216744.21190145792, "bdt": 4090130122.206879, "bhd": 18202521.87660142, "bmd": 48284344.44939982, "bnb": 2753536.76815127, "brl": 257307271.57085183, "btc": 5270.188413297418, "cad": 65305734.69208016, "chf": 45330791.09943005, "clp": 37961171161.27767, "cny": 337208204.76571834, "czk": 1122270603.8201792, "dkk": 313794498.445727, "eos": 18847268.624281585, "eth": 204556.04026931338, "eur": 42150108.19317028, "gbp": 38130726.22382443, "hkd": 374299755.3283032, "huf": 14853121930.877144, "idr": 712750444616.4934, "ils": 165244960.53951442, "inr": 3609266384.1196494, "jpy": 5177605096.04304, "krw": 57972598163.1717, "kwd": 14840193.266523043, "lkr": 8959742663.201904, "ltc": 1149471.2237438578, "mmk": 66227220788.48152, "mxn": 1085963432.4331741, "myr": 205715449.52666783, "ngn": 18681303690.3247, "nok": 445180883.27395546, "nzd": 73358597.65935089, "php": 2382497256.9430594, "pkr": 8092849357.420626, "pln": 187777960.4167494, "rub": 3446459251.847038, "sar": 181114286.32363197, "sek": 433028389.75686365, "sgd": 67046433.59382536, "thb": 1534959310.0464191, "try": 331061607.71730995, "twd": 1422456787.4793174, "uah": 1332023493.6610153, "usd": 48284344.44939982, "vef": 11998062909383.672, "vnd": 1119441953571.2563, "xag": 2426168.563408108, "xau": 26556.38944716992, "xdr": 34726776.50883066, "xlm": 509849515.04244316, "xrp": 247998606.39442736, "yfi": 45149.34044916584, "zar": 802612502.8688602, "bits": 5270188413.297419, "link": 6646205.3633930115, "sats": 527018841329.7418}, "total_volume": {"aed": 69416353.55195238, "ars": 1353456370.948102, "aud": 26904033.967848673, "bch": 84808.11165994659, "bdt": 1600840289.9262743, "bhd": 7124304.001997268, "bmd": 18898059.880200487, "bnb": 1080323.703565695, "brl": 100707761.10158849, "btc": 2062.5813386242658, "cad": 25562933.14845014, "chf": 17742254.537927426, "clp": 14857663125.246395, "cny": 131980270.59134407, "czk": 439150261.8890571, "dkk": 122805905.05354275, "eos": 7376143.174550408, "eth": 80059.37809442118, "eur": 16496021.979127599, "gbp": 14925857.775921261, "hkd": 146500594.9002962, "huf": 5813094168.319107, "idr": 278986275205.07715, "ils": 64675397.26980647, "inr": 1412638517.9680524, "jpy": 2026401164.834138, "krw": 22689955595.162815, "kwd": 5808318.704179611, "lkr": 3506763015.8636546, "ltc": 450016.9363322668, "mmk": 25920740944.750275, "mxn": 425068391.4673855, "myr": 80515184.11959416, "ngn": 7311694914.900203, "nok": 174270745.85051432, "nzd": 28716943.750216182, "php": 932414929.2644686, "pkr": 3167468741.721276, "pln": 73495348.59261477, "rub": 1348913277.3529027, "sar": 70886509.22227268, "sek": 169487627.9967757, "sgd": 26241656.96904767, "thb": 600648848.4598364, "try": 129576437.37458265, "twd": 556755723.2325267, "uah": 521342062.9831627, "usd": 18898059.880200487, "vef": 4695934342560.254, "vnd": 438101470023.5259, "xag": 949365.9598313317, "xau": 10392.79905051746, "xdr": 13591749.238678508, "xlm": 199674828.6434424, "xrp": 97046052.0321794, "yfi": 17669.991992445262, "zar": 314095298.729171, "bits": 2062581338.6242657, "link": 2601109.8807418128, "sats": 206258133862.42657}}, "community_data": {"facebook_likes": null, "twitter_followers": 81403, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 33362, "reddit_accounts_active_48h": "180.25"}, "developer_data": {"forks": 191, "stars": 689, "subscribers": 154, "total_issues": 733, "closed_issues": 714, "pull_requests_merged": 1514, "pull_request_contributors": 39, "code_additions_deletions_4_weeks": {"additions": 14430, "deletions": -14423}, "commit_count_4_weeks": 51}, "public_interest_stats": {"alexa_rank": 495562, "bing_matches": null}}, "APPC_20201127": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.0876359119400427, "ars": 1.915715022744874, "aud": 0.03269185500033414, "bch": 7.349000784052928e-05, "bdt": 2.023828182550278, "bhd": 0.008995540539501684, "bmd": 0.02385819229555775, "bnb": 0.0007731643823478588, "brl": 0.12981242428012976, "btc": 1.3e-06, "cad": 0.03118981478798263, "chf": 0.02177396447481008, "clp": 18.46387035834978, "cny": 0.1571300544585434, "czk": 0.5301886782880324, "dkk": 0.1500018230554376, "dot": 0.004060500586608544, "eos": 0.007081862495905977, "eth": 3.928177430605285e-05, "eur": 0.0201474799314451, "gbp": 0.0178994656205885, "hkd": 0.184964214500156, "huf": 7.267797485843284, "idr": 338.344317097293, "ils": 0.0799638330435603, "inr": 1.771354946421567, "jpy": 2.493252669462672, "krw": 26.57870667675379, "kwd": 0.007286244210678745, "lkr": 4.422521817548965, "ltc": 0.0002697240591691555, "mmk": 31.18223375194798, "mxn": 0.4795487585294042, "myr": 0.09759193558497903, "ngn": 9.145146722154287, "nok": 0.2153251241132134, "nzd": 0.03441465506599627, "php": 1.1522404153106496, "pkr": 3.840808247575481, "pln": 0.0900696145615357, "rub": 1.813143882427813, "sar": 0.08947220542645502, "sek": 0.2058768743749042, "sgd": 0.03205586716831135, "thb": 0.7240961361701782, "try": 0.1879786970966996, "twd": 0.6807505485494167, "uah": 0.6774313491208731, "usd": 0.02385819229555775, "vef": 5928.465951655533, "vnd": 555.9289771911616, "xag": 0.0010119051444530262, "xau": 1.2981958173781844e-05, "xdr": 0.01672747964045379, "xlm": 0.1842555103606308, "xrp": 0.03918543661643065, "yfi": 9.598830885618456e-07, "zar": 0.3670702175633038, "bits": 1.3, "link": 0.00156615039996376, "sats": 130.0}, "market_cap": {"aed": 9592909.80054151, "ars": 209711057.6563987, "aud": 3575030.3213355895, "bch": 8107.864522330204, "bdt": 221534765.56826675, "bhd": 984680.9041205947, "bmd": 2611594.7404283774, "bnb": 84974.28656889753, "brl": 14210209.301618867, "btc": 142.60346950577878, "cad": 3412701.4270547787, "chf": 2381951.991713021, "clp": 2021114950.7251296, "cny": 17199962.960461263, "czk": 58021278.02914912, "dkk": 16412305.986748133, "dot": 445551.489106712, "eos": 778912.1371826351, "eth": 4312.624710526823, "eur": 2204407.94647449, "gbp": 1958656.8814001698, "hkd": 20245487.224985596, "huf": 795228566.6397316, "idr": 37024135969.74455, "ils": 8753099.279861953, "inr": 193903432.48106503, "jpy": 272885534.4273602, "krw": 2909608937.5959415, "kwd": 797575.8105373452, "lkr": 484103513.58812386, "ltc": 29659.982269722186, "mmk": 3413307959.4868665, "mxn": 52484070.396703236, "myr": 10682728.28572227, "ngn": 1001057279.7869045, "nok": 23565892.28231889, "nzd": 3764733.95168556, "php": 126066736.77948983, "pkr": 420427268.5080874, "pln": 9854722.173269449, "rub": 198553019.12791803, "sar": 9794958.439229496, "sek": 22517169.85197339, "sgd": 3507969.7915908606, "thb": 79288016.31940544, "try": 20578784.168948524, "twd": 74542748.67604716, "uah": 74153822.15251832, "usd": 2611594.7404283774, "vef": 648949019538.0437, "vnd": 60825427981.9433, "xag": 110658.46622548375, "xau": 1420.7075387930345, "xdr": 1831043.9160038773, "xlm": 20103813.301561683, "xrp": 4320198.166920011, "yfi": 106.18433261164868, "zar": 40201975.37599521, "bits": 142603469.5057788, "link": 171504.1015274611, "sats": 14260346950.577877}, "total_volume": {"aed": 392606.790453798, "ars": 8582357.504518976, "aud": 146458.7288649818, "bch": 329.23347826213757, "bdt": 9066701.875877354, "bhd": 40299.80656819148, "bmd": 106884.13112648322, "bnb": 3463.7579495317345, "brl": 581556.5574591954, "btc": 5.823968922, "cad": 139729.62462165143, "chf": 97546.84031540458, "clp": 82717697.80528164, "cny": 703938.8875990186, "czk": 2375232.6039582747, "dkk": 672004.5813217013, "dot": 18190.94555705456, "eos": 31726.574681564434, "eth": 175.98140981497687, "eur": 90260.22844411919, "gbp": 80189.17807285758, "hkd": 828635.259177731, "huf": 32559558.991493095, "idr": 1515774452.0845752, "ils": 358236.0604074553, "inr": 7935627.813684755, "jpy": 11169712.355110876, "krw": 119071970.51720613, "kwd": 32642.199877765717, "lkr": 19812792.017132405, "ltc": 1208.357337012962, "mmk": 139695661.7614496, "mxn": 2148366.9740453325, "myr": 437209.5383728798, "ngn": 40970038.68996672, "nok": 964651.408431652, "nzd": 154176.8319736247, "php": 5162009.514955074, "pkr": 17206729.130185295, "pln": 403509.72001761734, "rub": 8122841.247980003, "sar": 400833.3413742106, "sek": 922323.4754753386, "sgd": 143609.51858154265, "thb": 3243933.3796887677, "try": 842140.0691455617, "twd": 3049746.1833740426, "uah": 3034876.249283459, "usd": 106884.13112648322, "vef": 26559385736.597675, "vnd": 2490548527.6927476, "xag": 4533.310856389497, "xau": 58.15886226985334, "xdr": 74938.70889953124, "xlm": 825460.2815750483, "xrp": 175549.81926853303, "yfi": 4.300253289644278, "zar": 1644465.7994465076, "bits": 5823968.921999999, "link": 7016.316351205237, "sats": 582396892.1999999}}, "community_data": {"facebook_likes": null, "twitter_followers": 24262, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3146, "reddit_accounts_active_48h": "262.583333333333"}, "developer_data": {"forks": 5, "stars": 11, "subscribers": 15, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 562467, "bing_matches": null}}, "NXS_20201203": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.7233904570247917, "ars": 15.941750854971449, "aud": 0.2660172622375606, "bch": 0.0006925259401971741, "bdt": 16.69972781211759, "bhd": 0.07425975421371038, "bmd": 0.19694726541479574, "bnb": 0.006541172366164217, "brl": 1.0526900267963726, "btc": 1.0855407429265e-05, "cad": 0.2556521246060457, "chf": 0.17809488232749515, "clp": 151.39317858171265, "cny": 1.2953221646331101, "czk": 4.312357323522371, "dkk": 1.2245399082848258, "dot": 0.03801216596635901, "eos": 0.06499515747799464, "eth": 0.00034370461647331414, "eur": 0.16453191194744013, "gbp": 0.14772482621147168, "hkd": 1.5264840937320956, "huf": 59.50939231552008, "idr": 2770.1235539223153, "ils": 0.6527647737525152, "inr": 14.564128170119544, "jpy": 20.50339201327277, "krw": 217.633476484452, "kwd": 0.06017447968577502, "lkr": 36.4934097193158, "ltc": 0.00250224944160233, "mmk": 258.97918430278764, "mxn": 3.9453978915527057, "myr": 0.8014768966055108, "ngn": 74.99651443584791, "nok": 1.7375765056435122, "nzd": 0.27977599819943827, "php": 9.470790448850698, "pkr": 31.390954718289073, "pln": 0.7386054210671459, "rub": 14.976800047128304, "sar": 0.7386704136647327, "sek": 1.673984006166467, "sgd": 0.263434692746177, "thb": 5.967802486648066, "try": 1.5455405141863607, "twd": 5.616854079567563, "uah": 5.614329018677684, "usd": 0.19694726541479574, "vef": 48938.96162873499, "vnd": 4543.100810189463, "xag": 0.008689496511057626, "xau": 0.00011022547603469823, "xdr": 0.13817820141502113, "xlm": 1.0183870547750136, "xrp": 0.3265291058327895, "yfi": 8.017846553459502e-06, "zar": 3.0013869108629847, "bits": 10.855407429265, "link": 0.014843112911497912, "sats": 1085.5407429265001}, "market_cap": {"aed": 43222144.49704361, "ars": 952553689.5365127, "aud": 15892417.93735824, "bch": 41302.388580873776, "bdt": 997798687.4824207, "bhd": 4436975.627437587, "bmd": 11767480.592799898, "bnb": 390741.6089024334, "brl": 62897595.63033639, "btc": 648.1478270501909, "cad": 15272813.01422496, "chf": 10638508.50472668, "clp": 9045651329.090942, "cny": 77394719.85884503, "czk": 257590738.55041984, "dkk": 73143423.30768155, "dot": 2270283.9207323454, "eos": 3874910.133193015, "eth": 20509.296776816773, "eur": 9827787.929285733, "gbp": 8825222.117740411, "hkd": 91206094.15580873, "huf": 3555073561.8907857, "idr": 165473282417.86548, "ils": 39002302.421504386, "inr": 870197893.9995893, "jpy": 1225112404.5164003, "krw": 13003469255.998924, "kwd": 3595388.950401718, "lkr": 2180459270.3163424, "ltc": 149078.5120128182, "mmk": 15473850417.794453, "mxn": 235668275.23045138, "myr": 47887762.27239928, "ngn": 4480996607.35467, "nok": 103827305.46561602, "nzd": 16712564.264754003, "php": 565765204.4794916, "pkr": 1875590654.477689, "pln": 44125486.9122305, "rub": 894854790.3198649, "sar": 44135112.7113554, "sek": 99970431.32896166, "sgd": 15740064.366123265, "thb": 356571277.64443487, "try": 92341597.19561066, "twd": 335603651.23472726, "uah": 335452780.36604685, "usd": 11767480.592799898, "vef": 2924073507621.5796, "vnd": 271384924335.59885, "xag": 519054.74333796033, "xau": 6585.317489342725, "xdr": 8256064.383908421, "xlm": 60702902.959008686, "xrp": 19433615.76247816, "yfi": 477.3666017090976, "zar": 179312869.2730854, "bits": 648147827.0501909, "link": 887462.0220045592, "sats": 64814782705.0191}, "total_volume": {"aed": 70897.81530535435, "ars": 1562413.9035621886, "aud": 26071.732828386233, "bch": 67.87285583528707, "bdt": 1636701.4612588752, "bhd": 7278.025702078363, "bmd": 19302.343171212517, "bnb": 641.0850817747305, "brl": 103171.69983214188, "btc": 1.0639132207380297, "cad": 25055.86980962853, "chf": 17454.664975834534, "clp": 14837693.128717814, "cny": 126951.51103706457, "czk": 422644.1060768696, "dkk": 120014.30680836002, "dot": 3725.483929002171, "eos": 6370.024135470951, "eth": 33.68568963232473, "eur": 16125.38981100584, "gbp": 14478.166449460845, "hkd": 149607.1537756964, "huf": 5832377.057712584, "idr": 271493363.2201141, "ils": 63975.9564394712, "inr": 1427396.3100583951, "jpy": 2009489.7381822546, "krw": 21329750.5796763, "kwd": 5897.560723159587, "lkr": 3576634.163497133, "ltc": 245.23964483618857, "mmk": 25381947.188171297, "mxn": 386679.26609356934, "myr": 78550.8855352493, "ngn": 7350233.856949901, "nok": 170295.8298381517, "nzd": 27420.194522327147, "php": 928210.1326024528, "pkr": 3076554.4226687625, "pln": 72388.99852470316, "rub": 1467841.320403449, "sar": 72395.36829794965, "sek": 164063.27694925608, "sgd": 25818.621202382186, "thb": 584890.434161075, "try": 151474.82919859927, "twd": 550494.7974682219, "uah": 550247.3221264242, "usd": 19302.343171212517, "vef": 4796393744.341261, "vnd": 445258738.24650073, "xag": 851.6373318930458, "xau": 10.80294240263246, "xdr": 13542.523968922746, "xlm": 99809.7453700972, "xrp": 32002.357803238505, "yfi": 0.7858104825322048, "zar": 294158.94666547864, "bits": 1063913.2207380298, "link": 1454.7389553410073, "sats": 106391322.07380298}}, "community_data": {"facebook_likes": null, "twitter_followers": 24639, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 3518, "reddit_accounts_active_48h": "2314.0"}, "developer_data": {"forks": 7, "stars": 23, "subscribers": 13, "total_issues": 42, "closed_issues": 34, "pull_requests_merged": 85, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 510508, "bing_matches": null}}, "NXS_20201227": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.8344564852399966, "ars": 18.936496488948283, "aud": 0.29970213905428594, "bch": 0.0008225654218981597, "bdt": 19.266309440056347, "bhd": 0.08564878448007542, "bmd": 0.2271742582053781, "bnb": 0.0072596201064148115, "brl": 1.18505451792836, "btc": 9.74349035312182e-06, "cad": 0.2918394108035391, "chf": 0.2017605011142012, "clp": 162.22503328430236, "cny": 1.4858786706439224, "czk": 4.893103848568804, "dkk": 1.3863502205102687, "dot": 0.04799188871119507, "eos": 0.09772694961457051, "eth": 0.0003864414947981872, "eur": 0.1863842114475701, "gbp": 0.16821117948817219, "hkd": 1.761270665153392, "huf": 67.49120037023587, "idr": 3223.2208440062736, "ils": 0.7305810556755871, "inr": 16.774551315021785, "jpy": 23.527188463910882, "krw": 251.14114244604585, "kwd": 0.06937606519056591, "lkr": 43.221328369217794, "ltc": 0.0022100483985173763, "mmk": 303.28777394567265, "mxn": 4.557666290001786, "myr": 0.9231225982175555, "ngn": 86.21263098894117, "nok": 1.9628112615856523, "nzd": 0.32013737227689265, "php": 10.911960873878288, "pkr": 36.50008806585819, "pln": 0.8394883950592457, "rub": 17.05060938445637, "sar": 0.8523251036933992, "sek": 1.8832732374770396, "sgd": 0.3025995195434369, "thb": 6.858390855220378, "try": 1.7357169687191554, "twd": 6.394955368481403, "uah": 6.464453426248625, "usd": 0.2271742582053781, "vef": 56449.99579930269, "vnd": 5256.686060515387, "xag": 0.008889099277575672, "xau": 0.00012133377130749285, "xdr": 0.15763371885187205, "xlm": 1.7562770364921598, "xrp": 0.8596276465517356, "yfi": 1.1104194316379086e-05, "zar": 3.3159944947464526, "bits": 9.743490353121821, "link": 0.020634193387905474, "sats": 974.3490353121821}, "market_cap": {"aed": 57483570.4000643, "ars": 1304331821.1423523, "aud": 20659343.55858045, "bch": 55993.65041438301, "bdt": 1327206720.3460948, "bhd": 5900125.434251184, "bmd": 15649452.902119234, "bnb": 495540.9892572485, "brl": 81638500.95448549, "btc": 669.2310919535629, "cad": 20109938.21554572, "chf": 13900000.562191317, "clp": 11175267118.654999, "cny": 102358376.59689084, "czk": 337198761.68196285, "dkk": 95530379.4506202, "dot": 3279356.302383529, "eos": 6659724.0993952, "eth": 26443.867625333784, "eur": 12842300.988895789, "gbp": 11593052.112078285, "hkd": 121327860.93219528, "huf": 4650396792.156091, "idr": 222042833706.74936, "ils": 50327858.06057029, "inr": 1155556384.7651308, "jpy": 1620907733.7899013, "krw": 17300470183.292786, "kwd": 4779139.473419481, "lkr": 2977406630.5945964, "ltc": 149939.44659145182, "mmk": 20892718090.71107, "mxn": 314043361.68440044, "myr": 63591551.86776144, "ngn": 5938967376.354242, "nok": 135317689.35404438, "nzd": 22060752.0659652, "php": 751875992.8512497, "pkr": 2514397597.783495, "pln": 57833726.90874923, "rub": 1174571252.5138507, "sar": 58714493.76753341, "sek": 129774387.0954148, "sgd": 20843506.320332617, "thb": 472225261.6658577, "try": 119557125.33632007, "twd": 440532099.1946557, "uah": 445319642.42428356, "usd": 15649452.902119234, "vef": 3888695654009.179, "vnd": 362203470283.2727, "xag": 612898.9293272938, "xau": 8361.65918013134, "xdr": 10858983.224798625, "xlm": 118878218.59431502, "xrp": 57492996.47654437, "yfi": 736.3166145962575, "zar": 228575110.96625555, "bits": 669231091.9535629, "link": 1382293.2190136234, "sats": 66923109195.356285}, "total_volume": {"aed": 449927.2151821136, "ars": 10210292.904761758, "aud": 161595.18344450896, "bch": 443.51572086266077, "bdt": 10388123.415097319, "bhd": 46180.62147814714, "bmd": 122489.16889418289, "bnb": 3914.2851850685533, "brl": 638964.7495365079, "btc": 5.25355313102163, "cad": 157355.7108199121, "chf": 108786.42805915985, "clp": 87469459.16231866, "cny": 801164.9069861852, "czk": 2638292.8614309505, "dkk": 747500.5647561079, "dot": 25876.552248194974, "eos": 52692.99845597136, "eth": 208.3638256287923, "eur": 100495.74866255702, "gbp": 90697.1051076977, "hkd": 949652.4019781584, "huf": 36390307.18677284, "idr": 1737915402.315545, "ils": 393919.0427052482, "inr": 9044602.435951516, "jpy": 12685529.531941606, "krw": 135411776.21251938, "kwd": 37406.59982108789, "lkr": 23304333.124142334, "ltc": 1191.6270518008216, "mmk": 163528507.41032058, "mxn": 2457429.641762715, "myr": 497734.737801513, "ngn": 46484639.5953425, "nok": 1058320.2605218296, "nzd": 172613.57414321636, "php": 5883576.022239436, "pkr": 19680334.766228415, "pln": 452640.35027311963, "rub": 9193449.069186715, "sar": 459561.7232506546, "sek": 1015434.4751977652, "sgd": 163157.4103045851, "thb": 3697948.008915389, "try": 935874.2078150937, "twd": 3448070.1043712534, "uah": 3485542.4808760374, "usd": 122489.16889418289, "vef": 30437044778.57522, "vnd": 2834331282.8518476, "xag": 4792.8774647688015, "xau": 65.4214651063833, "xdr": 84993.8869148159, "xlm": 946959.9075498172, "xrp": 463499.15178062086, "yfi": 5.987225594121401, "zar": 1787937.651597725, "bits": 5253553.13102163, "link": 11125.667225031355, "sats": 525355313.102163}}, "community_data": {"facebook_likes": null, "twitter_followers": 24133, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3522, "reddit_accounts_active_48h": "291.166666666667"}, "developer_data": {"forks": 7, "stars": 23, "subscribers": 13, "total_issues": 42, "closed_issues": 34, "pull_requests_merged": 85, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 534384, "bing_matches": null}}, "APPC_20210101": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.09770684587717983, "ars": 2.23010050331007, "aud": 0.03506346302720652, "bch": 7.305398645404615e-05, "bdt": 2.255595866781189, "bhd": 0.010027905866067156, "bmd": 0.026599925372204052, "bnb": 0.0007410824400165838, "brl": 0.13956182845034326, "btc": 9.800008467750369e-07, "cad": 0.03416095415925298, "chf": 0.023628713708128853, "clp": 18.939207273439827, "cny": 0.17388637215063496, "czk": 0.5732312911628621, "dkk": 0.16185222011322017, "dot": 0.004019329569972001, "eos": 0.009604408716993472, "eth": 3.630075938234335e-05, "eur": 0.02176754352976106, "gbp": 0.01975717436998063, "hkd": 0.2062731112875617, "huf": 7.920872577484173, "idr": 375.86259384379605, "ils": 0.08571453552237542, "inr": 1.9562942778909882, "jpy": 2.758252661545323, "krw": 29.156178200472848, "kwd": 0.008118962221730976, "lkr": 5.000908728629948, "ltc": 0.00020366786676604296, "mmk": 35.72479571839524, "mxn": 0.5323175203490695, "myr": 0.10773661373802271, "ngn": 10.13457156680969, "nok": 0.2294775561860039, "nzd": 0.03743833096436231, "php": 1.2779127103339665, "pkr": 4.267958025970135, "pln": 0.09784471329038401, "rub": 1.967476780117761, "sar": 0.09982566293270262, "sek": 0.22013523679647987, "sgd": 0.0353733787577181, "thb": 0.8015395944292807, "try": 0.19816944402292036, "twd": 0.748043074717196, "uah": 0.7543825551313776, "usd": 0.026599925372204052, "vef": 6609.7527395255365, "vnd": 614.2280685599752, "xag": 0.0010070024187901567, "xau": 1.4170312244280487e-05, "xdr": 0.018468993184055545, "xlm": 0.18434602697824895, "xrp": 0.10809904283070203, "yfi": 1.1602174586363017e-06, "zar": 0.3893697075983229, "bits": 0.9800008467750368, "link": 0.0021006941391009653, "sats": 98.00008467750368}, "market_cap": {"aed": 10788020.29932382, "ars": 246241585.52380896, "aud": 3873857.3219290073, "bch": 8064.464703996343, "bdt": 249045128.61354798, "bhd": 1107202.3773935789, "bmd": 2936954.235904337, "bnb": 82028.5286576856, "brl": 15409317.789519258, "btc": 108.31565996060398, "cad": 3772150.5967396377, "chf": 2609460.3429671214, "clp": 2091110499.6341686, "cny": 19199163.53553022, "czk": 63291363.78373848, "dkk": 17871366.525477894, "dot": 456415.28562407655, "eos": 1058125.658190443, "eth": 4008.2254234284405, "eur": 2403585.7249386897, "gbp": 2181963.158297359, "hkd": 22775345.860879146, "huf": 874639656.2234912, "idr": 41497409991.64946, "ils": 9463923.851608705, "inr": 215998736.88576558, "jpy": 304519384.86721945, "krw": 3219195537.9747424, "kwd": 896431.8566539021, "lkr": 552160950.3938142, "ltc": 22415.88310993415, "mmk": 3944450544.270998, "mxn": 58800352.52040198, "myr": 11895428.26351387, "ngn": 1118979563.8795478, "nok": 25357862.585686136, "nzd": 4134990.7339059697, "php": 141104001.44163987, "pkr": 471234307.150851, "pln": 10804887.227500614, "rub": 217233288.53578225, "sar": 11021963.388984723, "sek": 24312559.455768477, "sgd": 3907074.274337075, "thb": 88604663.96280323, "try": 21880015.36206369, "twd": 82593024.08514756, "uah": 83292979.5773279, "usd": 2936954.235904337, "vef": 729796833449.5865, "vnd": 67818225146.36202, "xag": 111284.10358310853, "xau": 1565.3378686522904, "xdr": 2039200.7498442768, "xlm": 20475723.0459442, "xrp": 11972627.542510694, "yfi": 127.86452490792753, "zar": 42957155.544658326, "bits": 108315659.960604, "link": 232008.53677239057, "sats": 10831565996.0604}, "total_volume": {"aed": 576964.5759542971, "ars": 13168872.45388273, "aud": 207051.77713352366, "bch": 431.38801521863525, "bdt": 13319424.049749471, "bhd": 59215.36412093259, "bmd": 157074.09777695136, "bnb": 4376.134670121495, "brl": 824120.6688063322, "btc": 5.78696168030198, "cad": 201722.4100700493, "chf": 139528.92105526585, "clp": 111837114.33246553, "cny": 1026809.0845777077, "czk": 3384963.928169954, "dkk": 955746.7207801449, "dot": 23734.37357577301, "eos": 56714.58896194017, "eth": 214.35808367184626, "eur": 128538.60350791005, "gbp": 116667.25734612365, "hkd": 1218054.6523260332, "huf": 46773210.68782498, "idr": 2219490355.3305383, "ils": 506149.2897125367, "inr": 11552030.85671207, "jpy": 16287641.49488317, "krw": 172168918.57331628, "kwd": 47942.94149396994, "lkr": 29530655.279028058, "ltc": 1202.6705327475054, "mmk": 210956984.92434782, "mxn": 3143365.7451936635, "myr": 636190.9352620721, "ngn": 59845231.25301813, "nok": 1355078.2415217566, "nzd": 221075.5096571479, "php": 7546148.464880984, "pkr": 25202538.98831181, "pln": 577778.6910030753, "rub": 11618064.179121107, "sar": 589476.3132127194, "sek": 1299911.3051969267, "sgd": 208881.84744672314, "thb": 4733137.663575733, "try": 1170202.0284382885, "twd": 4417237.620609323, "uah": 4454672.619110212, "usd": 157074.09777695136, "vef": 39030972213.72692, "vnd": 3627052269.821586, "xag": 5946.4075247352985, "xau": 83.67651336773719, "xdr": 109060.47293898155, "xlm": 1088573.9512875448, "xrp": 638331.1000160759, "yfi": 6.851151196491652, "zar": 2299250.6432590135, "bits": 5786961.68030198, "link": 12404.720388780286, "sats": 578696168.030198}}, "community_data": {"facebook_likes": null, "twitter_followers": 24269, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3130, "reddit_accounts_active_48h": "286.333333333333"}, "developer_data": {"forks": 5, "stars": 11, "subscribers": 16, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 524554, "bing_matches": null}}, "SNM_20210108": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.03217524587877282, "ars": 0.741974537991188, "aud": 0.011419860180041113, "bch": 2.189681047043001e-05, "bdt": 0.7425653066567014, "bhd": 0.0033023756406099438, "bmd": 0.008760174760753867, "bnb": 0.00022004929486167514, "brl": 0.04601632200076406, "btc": 2.800003942733026e-07, "cad": 0.011188258679716281, "chf": 0.007719527320399621, "clp": 6.165410996618568, "cny": 0.056604745234087185, "czk": 0.18743445121604194, "dkk": 0.05321193830942195, "dot": 0.0009357596627139174, "eos": 0.003180140897240409, "eth": 8.589895827514513e-06, "eur": 0.007151578910135679, "gbp": 0.006459735348230365, "hkd": 0.06792479198290415, "huf": 2.5822260180540333, "idr": 122.17473624214402, "ils": 0.02811069999327816, "inr": 0.639999095636203, "jpy": 0.9034105425522644, "krw": 9.511705966115407, "kwd": 0.002663899063347164, "lkr": 1.637399734480112, "ltc": 5.766680676468211e-05, "mmk": 11.628168095351471, "mxn": 0.17386931183883952, "myr": 0.03509764017896046, "ngn": 3.4565181339094018, "nok": 0.07487668270936843, "nzd": 0.012201565614642204, "php": 0.4206980632990843, "pkr": 1.4003577363803097, "pln": 0.032553606586864584, "rub": 0.6481817208351562, "sar": 0.03286630102494968, "sek": 0.07216361278508926, "sgd": 0.011562221780078114, "thb": 0.26210442884175544, "try": 0.0650017231492602, "twd": 0.24600322763148988, "uah": 0.24905400229279645, "usd": 0.008760174760753867, "vef": 2176.7951719188436, "vnd": 202.91624303518472, "xag": 0.0003220713291490189, "xau": 4.512278417516714e-06, "xdr": 0.006079613845011732, "xlm": 0.05739409359231675, "xrp": 0.03750769545335107, "yfi": 3.8204056693628183e-07, "zar": 0.12866005597860922, "bits": 0.2800003942733026, "link": 0.0006494831388897999, "sats": 28.00003942733026}, "market_cap": {"aed": 13577094.936963841, "ars": 313093450.19682777, "aud": 4818876.176283158, "bch": 9239.869547348775, "bdt": 313342738.80483645, "bhd": 1393514.3730994258, "bmd": 3696559.921850273, "bnb": 92854.9288606979, "brl": 19417659.61348733, "btc": 118.15269259353148, "cad": 4721146.525069272, "chf": 3257434.479053908, "clp": 2601638872.99822, "cny": 23885691.591027718, "czk": 79092335.3998928, "dkk": 22454017.62985502, "dot": 394865.60030392813, "eos": 1341934.5740956683, "eth": 3624.706757120275, "eur": 3017775.4096405953, "gbp": 2725835.8932525413, "hkd": 28662449.163561262, "huf": 1089630454.6641397, "idr": 51554477597.71316, "ils": 11861965.06442372, "inr": 270062535.4585525, "jpy": 381215135.0606532, "krw": 4013686030.5901656, "kwd": 1124094.2997552925, "lkr": 690938982.3641584, "ltc": 24333.85320831928, "mmk": 4906776556.37491, "mxn": 73368208.66434765, "myr": 14810267.326893155, "ngn": 1458558390.889753, "nok": 31595961.48978328, "nzd": 5148735.004349536, "php": 177523353.4105426, "pkr": 590913586.3073757, "pln": 13736753.056548493, "rub": 273515384.8813156, "sar": 13868701.762958935, "sek": 30451118.399186686, "sgd": 4878948.971573144, "thb": 110601072.86176006, "try": 27428992.138518084, "twd": 103806795.72539929, "uah": 105094141.20098333, "usd": 3696559.921850273, "vef": 918549459383.1492, "vnd": 85625238306.51791, "xag": 135905.50415079345, "xau": 1904.0610501458586, "xdr": 2565434.7651236136, "xlm": 24218775.528859876, "xrp": 15827246.323324678, "yfi": 161.21092179399446, "zar": 54291109.419900544, "bits": 118152692.59353147, "link": 274064.5485628349, "sats": 11815269259.353153}, "total_volume": {"aed": 619991.8578117486, "ars": 14297269.832572168, "aud": 220051.78625985823, "bch": 421.93443539992126, "bdt": 14308653.483340481, "bhd": 63634.199294955426, "bmd": 168801.72556066047, "bnb": 4240.178043875098, "brl": 886698.5841975948, "btc": 5.395388905110307, "cad": 215589.00623948508, "chf": 148749.2621761327, "clp": 118802654.44959277, "cny": 1090729.2298827637, "czk": 3611715.4804410045, "dkk": 1025352.490374845, "dot": 18031.35783133368, "eos": 61278.83126089736, "eth": 165.5205835124215, "eur": 137805.33990285866, "gbp": 124474.05482497963, "hkd": 1308857.6892815814, "huf": 49757478.53660895, "idr": 2354211743.581439, "ils": 541671.2331861119, "inr": 12332282.705665605, "jpy": 17408015.55189424, "krw": 183283144.90928474, "kwd": 51331.25432919234, "lkr": 31551414.00272985, "ltc": 1111.1943260608898, "mmk": 224065717.09030968, "mxn": 3350325.839608591, "myr": 676304.113458788, "ngn": 66604404.74881694, "nok": 1442815.1938502844, "nzd": 235114.63943853785, "php": 8106523.096212998, "pkr": 26983799.839499388, "pln": 627282.57314044, "rub": 12489955.502261799, "sar": 633307.9507343277, "sek": 1390536.4554355224, "sgd": 222794.98310194435, "thb": 5050547.628774957, "try": 1252532.435901679, "twd": 4740290.057194463, "uah": 4799076.102129595, "usd": 168801.72556066047, "vef": 41945142790.780846, "vnd": 3910037516.8403473, "xag": 6206.062960927881, "xau": 86.9480808190407, "xdr": 117149.41034945141, "xlm": 1105939.356230307, "xrp": 722743.9962378728, "yfi": 7.361623334494722, "zar": 2479178.789585179, "bits": 5395388.905110307, "link": 12515.032811710444, "sats": 539538890.5110308}}, "community_data": {"facebook_likes": null, "twitter_followers": 28791, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9499, "reddit_accounts_active_48h": "289.230769230769"}, "developer_data": {"forks": 72, "stars": 343, "subscribers": 73, "total_issues": 225, "closed_issues": 145, "pull_requests_merged": 1521, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SNGLS_20210111": {"id": "singulardtv", "symbol": "sngls", "name": "SingularDTV", "localization": {"en": "SingularDTV", "de": "SingularDTV", "es": "SingularDTV", "fr": "SingularDTV", "it": "SingularDTV", "pl": "SingularDTV", "ro": "SingularDTV", "hu": "SingularDTV", "nl": "SingularDTV", "pt": "SingularDTV", "sv": "SingularDTV", "vi": "SingularDTV", "tr": "SingularDTV", "ru": "SingularDTV", "ja": "SingularDTV", "zh": "SingularDTV", "zh-tw": "SingularDTV", "ko": "\uc2f1\uade4\ub7ec\ub514\ud2f0\ube44", "ar": "SingularDTV", "th": "SingularDTV", "id": "SingularDTV"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/521/thumb/singulardtv.png?1547034199", "small": "https://assets.coingecko.com/coins/images/521/small/singulardtv.png?1547034199"}, "market_data": {"current_price": {"aed": 0.020267827932962997, "ars": 0.46863586038081045, "aud": 0.007100013467150073, "bch": 1.2237111679257613e-05, "bdt": 0.46799493970636147, "bhd": 0.0020810278701799347, "bmd": 0.005517757795100442, "bnb": 0.00012699003447674297, "brl": 0.029854595518724446, "btc": 1.3982311375990463e-07, "cad": 0.006998072891885586, "chf": 0.004883932957177254, "clp": 3.9330523434271996, "cny": 0.03574513854821974, "czk": 0.11791448408129657, "dkk": 0.0334519749618494, "dot": 0.0005714395961604611, "eos": 0.0017147123774704886, "eth": 4.485857486429232e-06, "eur": 0.004496685679601522, "gbp": 0.004066168145396596, "hkd": 0.04278055562486249, "huf": 1.6158753702951674, "idr": 78.0431662539007, "ils": 0.017561533267199992, "inr": 0.4052875866868207, "jpy": 0.5726411806122172, "krw": 6.036868448463503, "kwd": 0.0016742642832829147, "lkr": 1.037596944842796, "ltc": 3.237870118287588e-05, "mmk": 7.326651964127263, "mxn": 0.11040482123992267, "myr": 0.022291741492205745, "ngn": 2.1485445615890164, "nok": 0.04652060221353757, "nzd": 0.007593157552329378, "php": 0.2655406978964864, "pkr": 0.8852355733738576, "pln": 0.02031796228028921, "rub": 0.4117803322843156, "sar": 0.020701992705070508, "sek": 0.0451730278160291, "sgd": 0.007306725227427917, "thb": 0.16593501702058014, "try": 0.04047137398761296, "twd": 0.1546886734227875, "uah": 0.15603620367823276, "usd": 0.005517757795100442, "vef": 0.0005524930880234074, "vnd": 127.20679423797077, "xag": 0.00020297066531519163, "xau": 2.8785038865480006e-06, "xdr": 0.003815215003117634, "xlm": 0.017490344539138798, "xrp": 0.017057803066627287, "yfi": 1.6653189677328009e-07, "zar": 0.08522154843501456, "bits": 0.13982311375990464, "link": 0.00034375305986072654, "sats": 13.982311375990463}, "market_cap": {"aed": 17871660.260704555, "ars": 413207459.3338125, "aud": 6261688.331427923, "bch": 10906.079292003913, "bdt": 412666152.1809311, "bhd": 1834997.9687969636, "bmd": 4865419.868426593, "bnb": 113147.66616791386, "brl": 26322408.030174706, "btc": 124.43725068684408, "cad": 6172028.374092556, "chf": 4307502.1721141115, "clp": 3468066737.912319, "cny": 31519162.99164115, "czk": 104022433.51596719, "dkk": 29502412.39823924, "dot": 508604.4947567975, "eos": 1527218.9879397994, "eth": 3989.3147694071927, "eur": 3966197.8337638606, "gbp": 3586018.7906648763, "hkd": 37722500.342587024, "huf": 1425543694.3496556, "idr": 67655201881.6584, "ils": 15485317.777837312, "inr": 357543893.51609766, "jpy": 505079236.54136485, "krw": 5322907961.601582, "kwd": 1476324.0815164181, "lkr": 914926855.8579359, "ltc": 28842.900649449424, "mmk": 6460457192.768557, "mxn": 97424924.17438078, "myr": 19656296.26844344, "ngn": 1894532486.9890919, "nok": 41030937.19891842, "nzd": 6697342.891866705, "php": 234200580.91199717, "pkr": 780578435.4571807, "pln": 17918879.16052759, "rub": 363096067.3989524, "sar": 18254495.82305166, "sek": 39834676.41586836, "sgd": 6444491.8867244385, "thb": 146351829.64227173, "try": 35686638.37994191, "twd": 136414204.6955913, "uah": 137588794.89854681, "usd": 4865419.868426593, "vef": 487174.4914255551, "vnd": 112193618069.42131, "xag": 179205.1394160341, "xau": 2540.430330100264, "xdr": 3364160.5100844894, "xlm": 15438188.428986823, "xrp": 15298548.783295142, "yfi": 149.0088781424597, "zar": 75192388.0856054, "bits": 124437250.68684408, "link": 306834.2415304013, "sats": 12443725068.684408}, "total_volume": {"aed": 679145.5251961722, "ars": 15703308.148104882, "aud": 237911.1560941006, "bch": 410.04786826600287, "bdt": 15681831.82565447, "bhd": 69732.22638932316, "bmd": 184892.06283245407, "bnb": 4255.251916714852, "brl": 1000384.2059517261, "btc": 4.685269795220337, "cad": 234495.2752332708, "chf": 163653.51157489006, "clp": 131790881.00785968, "cny": 1197767.761441206, "czk": 3951143.382729548, "dkk": 1120927.1748042272, "dot": 19148.112266194334, "eos": 57457.52539489443, "eth": 150.31457976911983, "eur": 150677.41682118305, "gbp": 136251.3985107433, "hkd": 1433514.3861557243, "huf": 54145640.60048428, "idr": 2615113336.702232, "ils": 588461.5151387353, "inr": 13580599.35313802, "jpy": 19188375.61884636, "krw": 202286708.10373175, "kwd": 56102.16840937712, "lkr": 34768369.081184804, "ltc": 1084.9633267435886, "mmk": 245505483.49654084, "mxn": 3699505.470106641, "myr": 746963.9338431131, "ngn": 71994612.81761691, "nok": 1558837.9241848215, "nzd": 254435.69931768827, "php": 8897883.746119948, "pkr": 29662960.45090964, "pln": 680825.4544790655, "rub": 13798161.843472976, "sar": 693693.7571601449, "sek": 1513682.6601395635, "sgd": 244837.76744399266, "thb": 5560241.810598532, "try": 1356137.0578603423, "twd": 5183393.144104899, "uah": 5228546.929013627, "usd": 184892.06283245407, "vef": 18513.24225141363, "vnd": 4262515222.006735, "xag": 6801.25268237119, "xau": 96.45449133843472, "xdr": 127842.32260106053, "xlm": 586076.0840867707, "xrp": 571582.2465384365, "yfi": 5.580242385621526, "zar": 2855650.514764741, "bits": 4685269.795220337, "link": 11518.666585737812, "sats": 468526979.52203363}}, "community_data": {"facebook_likes": null, "twitter_followers": 9000, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2113, "reddit_accounts_active_48h": "2839.0"}, "developer_data": {"forks": 13, "stars": 19, "subscribers": 23, "total_issues": 72, "closed_issues": 58, "pull_requests_merged": 4, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2388583, "bing_matches": null}}, "APPC_20210113": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.13596837094369107, "ars": 3.150588904730362, "aud": 0.047704056874570216, "bch": 6.373818436678234e-05, "bdt": 3.1440968499833257, "bhd": 0.013950399280833295, "bmd": 0.03701834221173176, "bnb": 0.0008414093672776014, "brl": 0.20047135151394518, "btc": 9.186312100821174e-07, "cad": 0.04697294461588852, "chf": 0.03278177803731012, "clp": 26.34790820230143, "cny": 0.23970857315784727, "czk": 0.7925682595045084, "dkk": 0.2252799339139806, "dot": 0.003774915689810581, "eos": 0.01021528110995401, "eth": 2.8842611216839266e-05, "eur": 0.030280855855827717, "gbp": 0.0272886262365112, "hkd": 0.2871290695310761, "huf": 10.889315545002965, "idr": 523.2672235826025, "ils": 0.11782679197598706, "inr": 2.7163467221493334, "jpy": 3.8479826362250895, "krw": 40.46141822084494, "kwd": 0.011232364522279097, "lkr": 6.97410719211965, "ltc": 0.00020813545697074125, "mmk": 49.24535508814517, "mxn": 0.7407129657343144, "myr": 0.14927646496880861, "ngn": 14.67167117571492, "nok": 0.31175737260454084, "nzd": 0.05109856481870154, "php": 1.7798418935400606, "pkr": 5.944685843320476, "pln": 0.13666246486016018, "rub": 2.742452057077049, "sar": 0.13888430575970873, "sek": 0.30518254484431556, "sgd": 0.04908336030537931, "thb": 1.1155886478186776, "try": 0.27305469582217545, "twd": 1.0371799120883038, "uah": 1.0487894564993765, "usd": 0.03701834221173176, "vef": 0.0037066466056606974, "vnd": 855.7066144166398, "xag": 0.0014559832248665036, "xau": 2.0019149284682404e-05, "xdr": 0.02564064367792939, "xlm": 0.11851837500121912, "xrp": 0.11324013590391657, "yfi": 1.0178971964646239e-06, "zar": 0.5665081640284149, "bits": 0.9186312100821175, "link": 0.0020938814599346643, "sats": 91.86312100821175}, "market_cap": {"aed": 15203024.456815273, "ars": 352276634.9228615, "aud": 5333931.254157258, "bch": 7210.947727015633, "bdt": 351550739.1398257, "bhd": 1559835.2762252423, "bmd": 4139129.9909652304, "bnb": 93747.73284141601, "brl": 22415292.9008726, "btc": 102.28745630207307, "cad": 5252183.436835694, "chf": 3665427.259149217, "clp": 2946037302.685657, "cny": 26802522.343496263, "czk": 88619393.97606425, "dkk": 25189213.646917693, "dot": 423464.02076796134, "eos": 1138810.0587059632, "eth": 3206.622941454391, "eur": 3385791.776089597, "gbp": 3051221.759789887, "hkd": 32104747.861922745, "huf": 1217566478.142335, "idr": 58508051117.79041, "ils": 13174561.022142924, "inr": 303722736.12904286, "jpy": 430254284.30085385, "krw": 4524110471.424905, "kwd": 1255923.7957686088, "lkr": 779795488.2474552, "ltc": 23330.528301527167, "mmk": 5506268351.921927, "mxn": 82821300.68472011, "myr": 16691041.688567264, "ngn": 1640482813.456079, "nok": 34858511.04491187, "nzd": 5713481.196068786, "php": 199009369.96560845, "pkr": 664692851.9980083, "pln": 15280633.144145876, "rub": 306641650.59867144, "sar": 15529063.72620364, "sek": 34123360.1672165, "sgd": 5488155.237620621, "thb": 124737256.01637734, "try": 30531050.63935773, "twd": 115970144.08686356, "uah": 117268241.47811046, "usd": 4139129.9909652304, "vef": 414451.08599534887, "vnd": 95679079601.69962, "xag": 162797.77732664943, "xau": 2238.4001078140864, "xdr": 2866955.970852099, "xlm": 13106074.38154136, "xrp": 12521068.702248465, "yfi": 113.277854246721, "zar": 63342948.16458695, "bits": 102287456.30207306, "link": 231584.92711571977, "sats": 10228745630.207306}, "total_volume": {"aed": 15508904.590240391, "ars": 359364331.4794775, "aud": 5441248.295469404, "bch": 7270.142410612193, "bdt": 358623830.898588, "bhd": 1591218.677848259, "bmd": 4222408.00169898, "bnb": 95973.33194384605, "brl": 22866281.636880796, "btc": 104.7814553627385, "cad": 5357855.73743585, "chf": 3739174.5179445404, "clp": 3005310658.837936, "cny": 27341780.774201512, "czk": 90402388.67757538, "dkk": 25696012.807379305, "dot": 430576.6617864319, "eos": 1165181.4241590924, "eth": 3289.862946733444, "eur": 3453912.855757757, "gbp": 3112611.394572424, "hkd": 32750685.424377955, "huf": 1242063537.7797666, "idr": 59685214946.81567, "ils": 13439629.100847699, "inr": 309833543.31186795, "jpy": 438910866.9606052, "krw": 4615134169.937004, "kwd": 1281192.5927315124, "lkr": 795484731.4415928, "ltc": 23740.46935770166, "mmk": 5617052762.151889, "mxn": 84487639.54879543, "myr": 17026860.26685117, "ngn": 1673488818.4971719, "nok": 35559853.46790825, "nzd": 5828434.664409191, "php": 203013376.7216867, "pkr": 678066265.8758425, "pln": 15588074.74027215, "rub": 312811185.43466634, "sar": 15841503.668534169, "sek": 34809911.58272653, "sgd": 5598575.217612705, "thb": 127246930.89204033, "try": 31145325.90213198, "twd": 118303427.39160243, "uah": 119627642.09946305, "usd": 4222408.00169898, "vef": 422789.71321011847, "vnd": 97604112986.8451, "xag": 166073.2180780229, "xau": 2283.43602323879, "xdr": 2924638.2351527964, "xlm": 13518512.85212097, "xrp": 12916463.228400446, "yfi": 116.10399089932997, "zar": 64617388.62156019, "bits": 104781455.3627385, "link": 238833.54312488178, "sats": 10478145536.27385}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3124, "reddit_accounts_active_48h": "289.416666666667"}, "developer_data": {"forks": 5, "stars": 11, "subscribers": 16, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 538163, "bing_matches": null}}, "SNM_20210120": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.03855475126350493, "ars": 0.8999682124204607, "aud": 0.013626905491771618, "bch": 2.1344220628380627e-05, "bdt": 0.8923781853190134, "bhd": 0.003957315092797144, "bmd": 0.01049680132412332, "bnb": 0.0002427469952844016, "brl": 0.05556149032322698, "btc": 2.9e-07, "cad": 0.013370080253774293, "chf": 0.009350624097138325, "clp": 7.713048206394447, "cny": 0.06802767002137848, "czk": 0.227550708784478, "dkk": 0.06463615351355417, "dot": 0.0005737713630199663, "eos": 0.003771594638659942, "eth": 8.503887234228862e-06, "eur": 0.00868976647937418, "gbp": 0.00772476404324355, "hkd": 0.08138799874672267, "huf": 3.131878127072047, "idr": 148.5771422911249, "ils": 0.03431383359253278, "inr": 0.7676363397306029, "jpy": 1.0899878494969666, "krw": 11.591290842332961, "kwd": 0.003181444022924576, "lkr": 2.033278859220801, "ltc": 7.278037246291453e-05, "mmk": 14.00640989091636, "mxn": 0.2078366662176419, "myr": 0.04237033854482374, "ngn": 4.158746432401176, "nok": 0.08995968670800181, "nzd": 0.014700371375984414, "php": 0.5043800054724233, "pkr": 1.6914142996393542, "pln": 0.03939130434183237, "rub": 0.771540079149442, "sar": 0.03937364872200517, "sek": 0.0881017528736319, "sgd": 0.013960745761084033, "thb": 0.3158121180062507, "try": 0.07846673893821912, "twd": 0.2938820957118779, "uah": 0.2957674366945043, "usd": 0.01049680132412332, "vef": 0.0010510447165844685, "vnd": 243.00057801700794, "xag": 0.0004236856458540005, "xau": 5.743429812507327e-06, "xdr": 0.007297323796523921, "xlm": 0.03593159163487076, "xrp": 0.03745590728272883, "yfi": 3.103225804735771e-07, "zar": 0.15984088190719398, "bits": 0.29, "link": 0.0005130357443892458, "sats": 29.0}, "market_cap": {"aed": 16915347.657166302, "ars": 394848227.3804869, "aud": 5978610.5818520505, "bch": 9349.879167511957, "bdt": 391518211.1583404, "bhd": 1736215.5996316283, "bmd": 4605321.986704672, "bnb": 106307.312920882, "brl": 24376812.049551375, "btc": 126.90443152, "cad": 5865932.168803351, "chf": 4102453.0630104244, "clp": 3383989978.7174497, "cny": 29846170.73143566, "czk": 99834630.5599824, "dkk": 28358191.19753138, "dot": 252537.55488353703, "eos": 1650187.3675258167, "eth": 3731.9064971804078, "eur": 3812511.2013714737, "gbp": 3389130.135167758, "hkd": 35707824.556113265, "huf": 1374066894.563135, "idr": 65186103745.962944, "ils": 15054705.468097841, "inr": 336789504.154028, "jpy": 478216635.0994127, "krw": 5085513664.796615, "kwd": 1395813.224984353, "lkr": 892072122.3856627, "ltc": 31836.53886203048, "mmk": 6145112728.502752, "mxn": 91185375.33675241, "myr": 18589382.199333344, "ngn": 1824590729.2016249, "nok": 39468530.4904563, "nzd": 6449578.440144388, "php": 221289539.27308682, "pkr": 742083918.922449, "pln": 17282373.39821864, "rub": 338502214.19023895, "sar": 17274627.24663708, "sek": 38653388.49880965, "sgd": 6125078.242317213, "thb": 138558066.00620994, "try": 34426163.44721346, "twd": 128936581.25836702, "uah": 129763747.74572067, "usd": 4605321.986704672, "vef": 461130.8905287378, "vnd": 106613040503.28253, "xag": 185886.03899917685, "xau": 2519.847978245323, "xdr": 3201596.8185471524, "xlm": 15700470.291680366, "xrp": 16371601.820606189, "yfi": 136.56672543450455, "zar": 70127908.97830434, "bits": 126904431.52, "link": 224499.76150283232, "sats": 12690443152.0}, "total_volume": {"aed": 2115917.0661995546, "ars": 49391009.85719721, "aud": 747855.9955545883, "bch": 1171.388718958461, "bdt": 48974462.80785672, "bhd": 217180.76934150988, "bmd": 576073.2551591494, "bnb": 13322.158573413524, "brl": 3049261.1609630683, "btc": 15.91544308, "cad": 733761.2112206093, "chf": 513170.0882085566, "clp": 423298550.6971273, "cny": 3733415.5520354193, "czk": 12488173.63266557, "dkk": 3547286.2832934945, "dot": 31489.053341649284, "eos": 206988.27514629473, "eth": 466.7004594314072, "eur": 476901.6682102474, "gbp": 423941.5256437013, "hkd": 4466641.591201986, "huf": 171880096.77555922, "idr": 8154038107.322271, "ils": 1883171.9496501633, "inr": 42128525.76248949, "jpy": 59819446.815726124, "krw": 636139757.3271569, "kwd": 174600.31468642174, "lkr": 111588048.10239996, "ltc": 3994.2478457748816, "mmk": 768683515.0828564, "mxn": 11406250.452151168, "myr": 2325319.6944499044, "ngn": 228235490.10011718, "nok": 4937063.01136495, "nzd": 806768.7030666939, "php": 27680797.47512566, "pkr": 92826234.51933865, "pln": 2161827.8003427237, "rub": 42342766.253936686, "sar": 2160858.845127545, "sek": 4835098.045201776, "sgd": 766177.4293616697, "thb": 17332033.752078366, "try": 4306320.404291193, "twd": 16128495.746667258, "uah": 16231964.840099609, "usd": 576073.2551591494, "vef": 57682.21503908566, "vnd": 13336075406.333755, "xag": 23252.223380697873, "xau": 315.2042422928808, "xdr": 400483.2466203654, "xlm": 1971955.8670296196, "xrp": 2055611.5874759592, "yfi": 17.03076333091702, "zar": 8772201.57879637, "bits": 15915443.08, "link": 28155.831682180935, "sats": 1591544308.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 28717, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 9491, "reddit_accounts_active_48h": "278.25"}, "developer_data": {"forks": 72, "stars": 344, "subscribers": 73, "total_issues": 225, "closed_issues": 145, "pull_requests_merged": 1521, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SKY_20210213": {"id": "skycoin", "symbol": "sky", "name": "Skycoin", "localization": {"en": "Skycoin", "de": "Skycoin", "es": "Skycoin", "fr": "Skycoin", "it": "Skycoin", "pl": "Skycoin", "ro": "Skycoin", "hu": "Skycoin", "nl": "Skycoin", "pt": "Skycoin", "sv": "Skycoin", "vi": "Skycoin", "tr": "Skycoin", "ru": "Skycoin", "ja": "\u30b9\u30ab\u30a4\u30b3\u30a4\u30f3", "zh": "\u5929\u7a7a\u5e01", "zh-tw": "\u5929\u7a7a\u5e63", "ko": "\uc2a4\uce74\uc774\ucf54\uc778", "ar": "Skycoin", "th": "Skycoin", "id": "Skycoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/687/thumb/skycoin.png?1551071121", "small": "https://assets.coingecko.com/coins/images/687/small/skycoin.png?1551071121"}, "market_data": {"current_price": {"aed": 3.893112003841947, "ars": 93.56103139491766, "aud": 1.3692201048829427, "bch": 0.002056112026017406, "bdt": 89.91123094186324, "bhd": 0.399565994459111, "bmd": 1.0599270361671502, "bnb": 0.009856968007250512, "brl": 5.700499585914168, "btc": 2.2757654011927547e-05, "cad": 1.3455773724141964, "chf": 0.946016677590267, "clp": 778.7302123067992, "cny": 6.8209484558464615, "czk": 22.513593257042622, "dkk": 6.5054664731664795, "dot": 0.045734908101401815, "eos": 0.255134868970144, "eth": 0.0005994064403623202, "eur": 0.8746899476184337, "gbp": 0.7671751887777838, "hkd": 8.216427193123398, "huf": 313.51988602784513, "idr": 14835.579174065195, "ils": 3.4446038784878064, "inr": 77.22114532886718, "jpy": 110.84610951532441, "krw": 1177.578937181704, "kwd": 0.32092152822958064, "lkr": 207.53642073517847, "ltc": 0.005831778398489662, "mmk": 1492.2505197884368, "mxn": 21.288805169670038, "myr": 4.291644569440785, "ngn": 403.8322007796838, "nok": 8.954357935046307, "nzd": 1.463583289058831, "php": 50.915547567889654, "pkr": 169.42933673131887, "pln": 3.914150495582829, "rub": 78.33952522122496, "sar": 3.975809631057785, "sek": 8.825800444756627, "sgd": 1.405208867468962, "thb": 31.713016922121234, "try": 7.491309909140732, "twd": 29.559563162740243, "uah": 29.369746129468453, "usd": 1.0599270361671502, "vef": 0.10613049413141686, "vnd": 24368.3676850134, "xag": 0.03892928636464681, "xau": 0.0005771408704633759, "xdr": 0.7365369378703359, "xlm": 2.6569457240209853, "xrp": 2.238831947184884, "yfi": 3.0201957584334002e-05, "zar": 15.606874445502482, "bits": 22.757654011927546, "link": 0.038294391393827114, "sats": 2275.765401192755}, "market_cap": {"aed": 77788177.05026966, "ars": 1869417415.4764485, "aud": 27357782.07509394, "bch": 41453.95359383334, "bdt": 1796514136.8681936, "bhd": 7983718.498101106, "bmd": 21178376.54513186, "bnb": 195110.70006792014, "brl": 113901544.73502824, "btc": 455.4292880730432, "cad": 26883682.93775462, "chf": 18901616.353024032, "clp": 15559789589.802542, "cny": 136289206.58088747, "czk": 449837210.3475962, "dkk": 129985547.51573499, "dot": 912968.40177285, "eos": 5137944.595998568, "eth": 11955.671483959362, "eur": 17476396.32504284, "gbp": 15330179.645959156, "hkd": 164171704.11326346, "huf": 6264330819.907996, "idr": 296419854076.3856, "ils": 68826547.01519696, "inr": 1542975105.398869, "jpy": 2214474586.688626, "krw": 23529176341.64154, "kwd": 6412325.315205398, "lkr": 4146780217.11052, "ltc": 118951.909266653, "mmk": 29816621644.10006, "mxn": 425394250.5931618, "myr": 85751246.63123883, "ngn": 8283453625.831024, "nok": 178894487.91990805, "nzd": 29241196.27962904, "php": 1017405142.9798416, "pkr": 3388663335.945582, "pln": 78213290.60265966, "rub": 1565342520.7167518, "sar": 79440556.3450737, "sek": 176343446.5731643, "sgd": 28073145.27803542, "thb": 633558017.3199981, "try": 149674067.62767005, "twd": 591503564.376538, "uah": 586836189.0400186, "usd": 21178376.54513186, "vef": 2120590.843464056, "vnd": 486903766970.2898, "xag": 777475.1456730292, "xau": 11525.060732095311, "xdr": 14716726.79095288, "xlm": 52807032.7989532, "xrp": 44969771.8983239, "yfi": 603.9230266290316, "zar": 312054779.971641, "bits": 455429288.0730432, "link": 763138.3785243514, "sats": 45542928807.30432}, "total_volume": {"aed": 6655679.643913573, "ars": 159952308.4627886, "aud": 2340824.09422418, "bch": 3515.1372330580184, "bdt": 153712595.2062041, "bhd": 683099.6008070551, "bmd": 1812055.4434831375, "bnb": 16851.511400602383, "brl": 9745596.58614101, "btc": 38.906575100058056, "cad": 2300404.385501842, "chf": 1617313.8449720056, "clp": 1331320243.814202, "cny": 11661120.395447036, "czk": 38489327.870447725, "dkk": 11121771.15297148, "dot": 78188.57935922768, "eos": 436179.57874866296, "eth": 1024.7476156897524, "eur": 1495373.3859582492, "gbp": 1311565.7299930959, "hkd": 14046836.351228047, "huf": 535994834.2966676, "idr": 25362964696.893044, "ils": 5888908.383003663, "inr": 132017574.76739132, "jpy": 189502946.22402307, "krw": 2013193597.7097661, "kwd": 548648.7110114929, "lkr": 354805083.8236011, "ltc": 9970.031362143756, "mmk": 2551157377.0222726, "mxn": 36395425.32328523, "myr": 7337012.490663215, "ngn": 690393123.9670746, "nok": 15308405.659480022, "nzd": 2502147.7662465954, "php": 87045421.03383937, "pkr": 289657062.64077944, "pln": 6691647.132411269, "rub": 133929561.4444718, "sar": 6797059.833725021, "sek": 15088623.266795391, "sgd": 2402350.6247522063, "thb": 54216698.86901565, "try": 12807172.981232371, "twd": 50535145.82449063, "uah": 50210633.875394806, "usd": 1812055.4434831375, "vef": 181441.11155596675, "vnd": 41660257551.41092, "xag": 66553.66158321835, "xau": 986.6823095310049, "xdr": 1259186.455343772, "xlm": 4542324.8940432, "xrp": 3827515.931295248, "yfi": 51.6333858625234, "zar": 26681574.136458594, "bits": 38906575.10005806, "link": 65468.242635821596, "sats": 3890657510.0058055}}, "community_data": {"facebook_likes": null, "twitter_followers": 17444, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3907, "reddit_accounts_active_48h": "21.8333333333333"}, "developer_data": {"forks": 271, "stars": 540, "subscribers": 105, "total_issues": 1153, "closed_issues": 1028, "pull_requests_merged": 1065, "pull_request_contributors": 51, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 739970, "bing_matches": null}}, "NXS_20210221": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 2.8704053593899825, "ars": 69.50199112102597, "aud": 1.0076582551525073, "bch": 0.0010907615924395958, "bdt": 66.26538245913859, "bhd": 0.29457445134515026, "bmd": 0.7814454316100343, "bnb": 0.004789510625975127, "brl": 4.22871380861454, "btc": 1.4989166198028352e-05, "cad": 0.9927029524823555, "chf": 0.7022389041074726, "clp": 557.3272350376117, "cny": 5.047043464596567, "czk": 16.76231708620787, "dkk": 4.825057479393678, "dot": 0.024541576984104807, "eos": 0.16183749264378577, "eth": 0.00042472187303227, "eur": 0.6488036654939792, "gbp": 0.563695662091899, "hkd": 6.058429214457861, "huf": 232.66756280757127, "idr": 10952.083536729122, "ils": 2.555084313281014, "inr": 56.861290747030495, "jpy": 82.73709796257569, "krw": 864.5989516843241, "kwd": 0.23652399601256763, "lkr": 153.36502926361933, "ltc": 0.003317162528139064, "mmk": 1101.8870481657025, "mxn": 15.802659116692073, "myr": 3.156648820988743, "ngn": 309.7773565631998, "nok": 6.639440144423378, "nzd": 1.0866991162235675, "php": 37.82100161927189, "pkr": 124.87029598736645, "pln": 2.914387452617281, "rub": 57.632303882128525, "sar": 2.9312315088956393, "sek": 6.5042829054629685, "sgd": 1.037861121084236, "thb": 23.45899185693325, "try": 5.45003487367787, "twd": 21.828115241163108, "uah": 21.789893963657658, "usd": 0.7814454316100343, "vef": 0.07824613106711273, "vnd": 18011.465926341712, "xag": 0.028530854028437795, "xau": 0.00043965682873243805, "xdr": 0.5444689786925652, "xlm": 1.5708634577001448, "xrp": 1.4563715656397314, "yfi": 1.7761522553867793e-05, "zar": 11.4233302970344, "bits": 14.989166198028352, "link": 0.02428553891235026, "sats": 1498.9166198028352}, "market_cap": {"aed": 195435876.53230175, "ars": 4732360675.4470215, "aud": 68629160.67342073, "bch": 74348.66621718253, "bdt": 4511778471.38714, "bhd": 20056545.642353527, "bmd": 53205890.37686539, "bnb": 324198.1975884992, "brl": 287913034.59633183, "btc": 1019.4629807538278, "cad": 67591432.98751028, "chf": 47819592.0645634, "clp": 37946373179.270164, "cny": 343635563.5880226, "czk": 1141298272.117992, "dkk": 328543819.194405, "dot": 1669842.3143300964, "eos": 11016835.417744787, "eth": 28887.282280749492, "eur": 44178819.39785528, "gbp": 38378685.67020205, "hkd": 412485581.91239744, "huf": 15840457683.00035, "idr": 745650781850.1605, "ils": 173966767.7063331, "inr": 3871481388.265784, "jpy": 5633217981.715253, "krw": 58868114809.10298, "kwd": 16104092.86981768, "lkr": 10442089242.025208, "ltc": 225953.99190818815, "mmk": 75023640961.85378, "mxn": 1076186765.6809478, "myr": 214925194.17734757, "ngn": 21091658365.163715, "nok": 452079543.3246981, "nzd": 74009127.48476784, "php": 2578676683.0051546, "pkr": 8501982366.116165, "pln": 198422855.21805876, "rub": 3923982300.595159, "sar": 199577316.6274562, "sek": 442891152.0860648, "sgd": 70665137.27458183, "thb": 1597510955.4189396, "try": 371073841.2553725, "twd": 1486184174.1298661, "uah": 1483597782.592754, "usd": 53205890.37686539, "vef": 5327505.8034355305, "vnd": 1226337813030.8237, "xag": 1945374.9507328803, "xau": 29944.807163003577, "xdr": 37070991.296519406, "xlm": 106658454.19823004, "xrp": 98785274.36300313, "yfi": 1205.565351581065, "zar": 778693318.8456818, "bits": 1019462980.7538278, "link": 1651369.372880841, "sats": 101946298075.38278}, "total_volume": {"aed": 3665687.4103003093, "ars": 88758395.39865302, "aud": 1286842.6989638563, "bch": 1392.970865235104, "bdt": 84625043.43666013, "bhd": 376190.02283409925, "bmd": 997954.756152756, "bnb": 6116.505024526485, "brl": 5400332.367445024, "btc": 19.142103969137132, "cad": 1267743.840840606, "chf": 896803.0600238685, "clp": 711741783.1636956, "cny": 6445390.58808819, "czk": 21406528.701379064, "dkk": 6161900.582553126, "dot": 31341.130786721867, "eos": 206676.61358637194, "eth": 542.3964311383636, "eur": 828562.913798144, "gbp": 719874.6633507916, "hkd": 7736993.531238903, "huf": 297131049.09692115, "idr": 13986496578.196619, "ils": 3263002.686645106, "inr": 72615429.36538824, "jpy": 105660455.71718547, "krw": 1104147008.986083, "kwd": 302055.95581853605, "lkr": 195856747.24055836, "ltc": 4236.224294084889, "mmk": 1407178768.9570053, "mxn": 20180985.373311974, "myr": 4031238.23747907, "ngn": 395605084.91774744, "nok": 8478980.87607653, "nzd": 1387782.8286844392, "php": 48299787.703217044, "pkr": 159467188.2924021, "pln": 3721855.2978408434, "rub": 73600061.42554636, "sar": 3743366.212609721, "sek": 8306376.617361861, "sgd": 1325413.6502891611, "thb": 29958601.779705763, "try": 6960035.855836176, "twd": 27875870.20361496, "uah": 27827059.23853681, "usd": 997954.756152756, "vef": 99925.20973357545, "vnd": 23001770001.319706, "xag": 36435.687410849416, "xau": 561.4693049066643, "xdr": 695320.9845304084, "xlm": 2006091.0147603625, "xrp": 1859877.6982563438, "yfi": 22.6825766613378, "zar": 14588308.204120765, "bits": 19142103.969137132, "link": 31014.15413406272, "sats": 1914210396.9137132}}, "community_data": {"facebook_likes": null, "twitter_followers": 24377, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.667, "reddit_subscribers": 3629, "reddit_accounts_active_48h": "268.384615384615"}, "developer_data": {"forks": 8, "stars": 24, "subscribers": 13, "total_issues": 42, "closed_issues": 39, "pull_requests_merged": 85, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 477796, "bing_matches": null}}, "PPT_20210307": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 8.034795113905474, "ars": 197.3359435084517, "aud": 2.8195152231839247, "bch": 0.004171202849810514, "bdt": 185.5005403732271, "bhd": 0.8247312428081802, "bmd": 2.1875173873013174, "bnb": 0.009035560737113722, "brl": 12.29341021315595, "btc": 4.314924877321915e-05, "cad": 2.7716873430279683, "chf": 2.0124328706564913, "clp": 1591.637651000436, "cny": 14.148643709326166, "czk": 47.5365028399675, "dkk": 13.49850697926806, "dot": 0.0590129473832059, "eos": 0.5682926633240749, "eth": 0.0013850710569570971, "eur": 1.8152391157782177, "gbp": 1.5707184222256747, "hkd": 16.96697986063835, "huf": 661.193696380996, "idr": 31219.031905022155, "ils": 7.231976232765903, "inr": 159.68888302390013, "jpy": 234.23936183222503, "krw": 2473.3133008015334, "kwd": 0.6623627647357415, "lkr": 427.6826969005999, "ltc": 0.011556187677508174, "mmk": 3084.5557398365872, "mxn": 45.84081592443989, "myr": 8.86600797073222, "ngn": 833.4441245617999, "nok": 18.636226253505445, "nzd": 3.0247962298430577, "php": 106.16424383772542, "pkr": 343.79037477690514, "pln": 8.251720275617197, "rub": 161.98763129531085, "sar": 8.205935536701006, "sek": 18.4449387955729, "sgd": 2.9169188098882897, "thb": 66.39990277414425, "try": 16.32166879393662, "twd": 60.650450825100194, "uah": 60.86170594174372, "usd": 2.1875173873013174, "vef": 0.21903611599048062, "vnd": 50419.89279210453, "xag": 0.08396897054542839, "xau": 0.0012790632915289503, "xdr": 1.5184958196386324, "xlm": 5.181437692630204, "xrp": 4.847207141299175, "yfi": 6.44152087484214e-05, "zar": 33.019155262529004, "bits": 43.14924877321915, "link": 0.07283605651857776, "sats": 4314.924877321915}, "market_cap": {"aed": 290882651.3466822, "ars": 7145019681.157816, "aud": 102058786.33448349, "bch": 150233.55459156542, "bdt": 6715652141.100907, "bhd": 29882664.26009039, "bmd": 79194409.87162647, "bnb": 326014.2579392444, "brl": 445028788.9698825, "btc": 1557.9335901325878, "cad": 100334565.64275852, "chf": 72857114.80487925, "clp": 57621895466.77116, "cny": 512221523.6086932, "czk": 1720855008.4999151, "dkk": 488637824.3209722, "dot": 2128270.6352680987, "eos": 20529743.88127758, "eth": 49814.10143750137, "eur": 65708710.59222669, "gbp": 56835372.938160345, "hkd": 614252037.5388529, "huf": 23937025147.3633, "idr": 1130212844001.2485, "ils": 261818302.92379513, "inr": 5771542081.785879, "jpy": 8478751506.881016, "krw": 89549052115.43663, "kwd": 23975157.2557165, "lkr": 15483341522.205395, "ltc": 416494.9515683385, "mmk": 111669773666.96878, "mxn": 1658503586.525376, "myr": 320816554.3899588, "ngn": 30173070161.08973, "nok": 674720295.6410536, "nzd": 109481361.59411158, "php": 3843232168.990598, "pkr": 12446198603.061462, "pln": 298744201.2202287, "rub": 5863482831.926346, "sar": 297103055.4644583, "sek": 667654253.6146674, "sgd": 105606379.11909296, "thb": 2403550339.603871, "try": 590909089.2571406, "twd": 2196274889.8412642, "uah": 2203368491.5222845, "usd": 79194409.87162647, "vef": 7929736.26044596, "vnd": 1824924164252.4314, "xag": 3034154.042920959, "xau": 46287.54868176816, "xdr": 54973908.33412779, "xlm": 187044736.0489733, "xrp": 174908582.3279645, "yfi": 2326.876640438341, "zar": 1195229514.2428129, "bits": 1557933590.132588, "link": 2621354.556367288, "sats": 155793359013.2588}, "total_volume": {"aed": 21817726.902362045, "ars": 535847107.7919754, "aud": 7656127.164962447, "bch": 11326.50719045961, "bdt": 503709188.9374178, "bhd": 2239479.7587674004, "bmd": 5939996.760802303, "bnb": 24535.21138714272, "brl": 33381593.7963568, "btc": 117.16770775485034, "cad": 7526255.075784265, "chf": 5464571.3000612, "clp": 4321941643.159749, "cny": 38419305.04919315, "czk": 129080881.60964277, "dkk": 36653920.19189244, "dot": 160244.08232662678, "eos": 1543145.0277509235, "eth": 3761.0295760693375, "eur": 4929110.292058687, "gbp": 4265137.4541362, "hkd": 46072230.55590157, "huf": 1795409004.5479624, "idr": 84772331167.61142, "ils": 19637748.091147635, "inr": 433620072.4183992, "jpy": 636054853.1467105, "krw": 6716048558.285904, "kwd": 1798583.4991968537, "lkr": 1161331950.5427215, "ltc": 31379.735662949857, "mmk": 8375819643.539912, "mxn": 124476404.02055496, "myr": 24074806.87153168, "ngn": 2263138765.865672, "nok": 50604911.40414102, "nzd": 8213548.340989664, "php": 288278972.39577526, "pkr": 933530277.0274792, "pln": 22406766.681146976, "rub": 439862106.13449454, "sar": 22282442.54894345, "sek": 50085488.3873927, "sgd": 7920617.400730689, "thb": 180302661.6773933, "try": 44319949.331455156, "twd": 164690568.19097656, "uah": 165264211.49815667, "usd": 5939996.760802303, "vef": 594771.8756591338, "vnd": 136910454565.38208, "xag": 228009.8050617439, "xau": 3473.1755060087066, "xdr": 4123331.911465572, "xlm": 14069704.44632307, "xrp": 13162132.96652938, "yfi": 174.91341258963112, "zar": 89660396.04641294, "bits": 117167707.75485034, "link": 197779.4290008864, "sats": 11716770775.485033}}, "community_data": {"facebook_likes": null, "twitter_followers": 23821, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 679959, "bing_matches": null}}, "PIVX_20210328": {"id": "pivx", "symbol": "pivx", "name": "PIVX", "localization": {"en": "PIVX", "de": "PIVX", "es": "PIVX", "fr": "PIVX", "it": "PIVX", "pl": "PIVX", "ro": "PIVX", "hu": "PIVX", "nl": "PIVX", "pt": "PIVX", "sv": "PIVX", "vi": "PIVX", "tr": "PIVX", "ru": "PIVX", "ja": "\u30d4\u30f4\u30af\u30b9", "zh": "\u666e\u7ef4\u5e01", "zh-tw": "\u666e\u7dad\u5e63", "ko": "\ud53c\ubca1\uc2a4", "ar": "PIVX", "th": "PIVX", "id": "PIVX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/548/thumb/PIVX-Shield.png?1609817792", "small": "https://assets.coingecko.com/coins/images/548/small/PIVX-Shield.png?1609817792"}, "market_data": {"current_price": {"aed": 4.228190936628049, "ars": 105.26609227502014, "aud": 1.5163057944673974, "bch": 0.002415421553680393, "bdt": 97.54190042015217, "bhd": 0.4340767728962302, "bmd": 1.1510919461581304, "bnb": 0.0046232734394903675, "brl": 6.470518047744074, "btc": 2.181945923380983e-05, "cad": 1.4478837380958107, "chf": 1.0773714135583783, "clp": 837.6506912457004, "cny": 7.5104145119033285, "czk": 25.58388182232404, "dkk": 7.245231704807163, "dot": 0.037653601686589266, "eos": 0.31080678017084795, "eth": 0.0007236915150036739, "eur": 0.9743463821933337, "gbp": 0.8409969845987002, "hkd": 8.942315338326742, "huf": 355.51819969568504, "idr": 16644.847096043864, "ils": 3.803127213670229, "inr": 83.62205631008749, "jpy": 125.20273619819527, "krw": 1307.0649048625576, "kwd": 0.3477287616471249, "lkr": 229.1040412914802, "ltc": 0.006490319154663125, "mmk": 1623.299522658371, "mxn": 24.060123858597137, "myr": 4.756311921525388, "ngn": 451.36253417479134, "nok": 9.89729114525013, "nzd": 1.6517317619329015, "php": 55.96247829568121, "pkr": 178.87729301063357, "pln": 4.508633769654442, "rub": 88.23246387416147, "sar": 4.317459268144562, "sek": 9.915114652944434, "sgd": 1.5499291902146761, "thb": 35.69536125036353, "try": 9.1222194985918, "twd": 32.77987672022615, "uah": 32.09756351586523, "usd": 1.1510919461581304, "vef": 0.11525883656881354, "vnd": 26614.33486398585, "xag": 0.04587671195953492, "xau": 0.0006636045069601621, "xdr": 0.8081874108573535, "xlm": 3.160318682468018, "xrp": 2.3703568640863657, "yfi": 3.7066474341453445e-05, "zar": 17.22378188381243, "bits": 21.81945923380983, "link": 0.046141915397609555, "sats": 2181.945923380983}, "market_cap": {"aed": 276974636.1860256, "ars": 6894377662.025344, "aud": 99358806.90773986, "bch": 157446.92294680377, "bdt": 6389643416.460937, "bhd": 28434916.504886784, "bmd": 75404180.60166198, "bnb": 302680.855626603, "brl": 423884601.2522426, "btc": 1426.5051698493057, "cad": 94852426.86244275, "chf": 70567153.22442657, "clp": 54871560015.38046, "cny": 491982116.7536047, "czk": 1675526135.4772983, "dkk": 474635611.21873343, "dot": 2454819.382283762, "eos": 20295080.941784635, "eth": 47199.694664048206, "eur": 63830317.51693233, "gbp": 55104771.95024983, "hkd": 585787933.5892963, "huf": 23286394457.585922, "idr": 1090348221709.0627, "ils": 249130134.41525, "inr": 5477801019.573787, "jpy": 8201499079.115758, "krw": 85621447073.18718, "kwd": 22778547.301233646, "lkr": 15007838916.579712, "ltc": 421946.5866160822, "mmk": 106336918423.98544, "mxn": 1576792881.6518164, "myr": 311570074.24606764, "ngn": 29567248869.50463, "nok": 648632869.2741256, "nzd": 108226640.16321768, "php": 3670787637.705458, "pkr": 11717652749.398458, "pln": 295360663.7546695, "rub": 5779836008.970235, "sar": 282771257.16559714, "sek": 649544732.030142, "sgd": 101537987.72712797, "thb": 2339310192.9722505, "try": 597012599.9136586, "twd": 2142391195.0766628, "uah": 2102603952.9696608, "usd": 75404180.60166198, "vef": 7550220.603644421, "vnd": 1743623505599.3953, "xag": 3006308.127452813, "xau": 43482.57478575443, "xdr": 52941652.221329905, "xlm": 206012170.3069211, "xrp": 154180033.09686214, "yfi": 2411.911093249709, "zar": 1128807596.1956756, "bits": 1426505169.8493059, "link": 3003880.556145706, "sats": 142650516984.93057}, "total_volume": {"aed": 9958896.629014479, "ars": 247939165.28832635, "aud": 3571440.5738543137, "bch": 5689.178641440496, "bdt": 229745940.48409072, "bhd": 1022405.5098555345, "bmd": 2711231.7948966757, "bnb": 10889.456734958028, "brl": 15240376.165473172, "btc": 51.392603188303724, "cad": 3410282.2447338575, "chf": 2537593.665824311, "clp": 1972965925.704197, "cny": 17689702.968982827, "czk": 60259160.06542473, "dkk": 17065102.94423354, "dot": 88687.65212525577, "eos": 732060.7422205901, "eth": 1704.5514493638582, "eur": 2294932.99771747, "gbp": 1980847.6392058725, "hkd": 21062339.760244563, "huf": 837372070.8379911, "idr": 39204547315.795654, "ils": 8957720.064112967, "inr": 196959746.42099014, "jpy": 294897067.3642223, "krw": 3078603703.1051764, "kwd": 819025.167993157, "lkr": 539621672.4145609, "ltc": 15287.014829597494, "mmk": 3823448937.4729486, "mxn": 56670166.976930074, "myr": 11202809.776513048, "ngn": 1063119638.4999466, "nok": 23311648.14931752, "nzd": 3890416.9945239075, "php": 131811582.02250388, "pkr": 421319778.8535784, "pln": 10619439.453668736, "rub": 207818899.43380457, "sar": 10169155.36594052, "sek": 23353628.862429682, "sgd": 3650635.6545832446, "thb": 84075297.9597457, "try": 21486078.177468978, "twd": 77208292.78086317, "uah": 75601202.00074312, "usd": 2711231.7948966757, "vef": 271475.639623004, "vnd": 62686244243.21436, "xag": 108056.00762401713, "xau": 1563.0251297579337, "xdr": 1903569.3993559289, "xlm": 7443676.869177043, "xrp": 5583035.235900857, "yfi": 87.30475796888675, "zar": 40568145.07964819, "bits": 51392603.188303724, "link": 108680.65624207382, "sats": 5139260318.830373}}, "community_data": {"facebook_likes": null, "twitter_followers": 66713, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.667, "reddit_subscribers": 9470, "reddit_accounts_active_48h": "58.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 212535, "bing_matches": null}}, "VIA_20210411": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 5.470451381176258, "ars": 137.36593531367004, "aud": 1.9557027509346179, "bch": 0.00238606825016022, "bdt": 126.34263622301665, "bhd": 0.5614673996811966, "bmd": 1.4892876459697975, "bnb": 0.003933916431995783, "brl": 8.360265129416053, "btc": 2.6456483088410395e-05, "cad": 1.8784965900798978, "chf": 1.3842943562165724, "clp": 1062.9040582743785, "cny": 9.743664423757386, "czk": 32.44919494544821, "dkk": 9.329447361496156, "dot": 0.03730129794870001, "eos": 0.2500671877499875, "eth": 0.0007475189651287414, "eur": 1.2544016663103792, "gbp": 1.0837263235069476, "hkd": 11.594476645786362, "huf": 450.4276020853344, "idr": 21694.080816930535, "ils": 4.904149753796241, "inr": 110.80545818476867, "jpy": 163.58931157329846, "krw": 1666.20339442093, "kwd": 0.4496635975229528, "lkr": 298.4423575596539, "ltc": 0.006739325985279437, "mmk": 2100.865784700817, "mxn": 30.104311546868892, "myr": 6.152991909324223, "ngn": 592.4125466508165, "nok": 12.627074235119515, "nzd": 2.1232773968591387, "php": 72.41799533350438, "pkr": 228.0782596687348, "pln": 5.736771755179166, "rub": 114.74961312197271, "sar": 5.585472044649791, "sek": 12.84976443824609, "sgd": 1.996290307150232, "thb": 46.736080262001146, "try": 12.159963632824015, "twd": 42.24304687358725, "uah": 41.63726125213725, "usd": 1.4892876459697975, "vef": 0.14912237199095563, "vnd": 34441.7043533732, "xag": 0.05921153012188461, "xau": 0.0008575169336729477, "xdr": 1.0447233693466431, "xlm": 3.1104386444071737, "xrp": 1.6022259389840658, "yfi": 3.370726311136418e-05, "zar": 21.705324938657586, "bits": 26.456483088410394, "link": 0.047370514220194185, "sats": 2645.6483088410396}, "market_cap": {"aed": 127012235.06878707, "ars": 3189209726.148284, "aud": 45422918.27020469, "bch": 55124.89576306215, "bdt": 2933407043.226042, "bhd": 13032516.173815979, "bmd": 34578088.60633424, "bnb": 90718.49878091064, "brl": 194107558.20051834, "btc": 612.6799087156448, "cad": 43617527.10789079, "chf": 32140921.18709402, "clp": 24678370081.790684, "cny": 226227144.70694166, "czk": 753439261.6877186, "dkk": 216607520.45665994, "dot": 861096.2560109575, "eos": 5777459.326192598, "eth": 17356.16437560348, "eur": 29125642.70444445, "gbp": 25164722.65458885, "hkd": 269195606.513603, "huf": 10461552782.615644, "idr": 503690372206.3198, "ils": 113863916.87622824, "inr": 2572666846.1574683, "jpy": 3798627790.981761, "krw": 38678386707.30602, "kwd": 10438537.122746019, "lkr": 6929196190.881655, "ltc": 155873.77405229726, "mmk": 48777631003.64433, "mxn": 698974311.5593133, "myr": 142859373.0770699, "ngn": 13754558150.690166, "nok": 293132461.2417809, "nzd": 49339474.63237838, "php": 1681050810.7298374, "pkr": 5295491635.4445915, "pln": 133217273.06919399, "rub": 2668543241.340682, "sar": 129684222.28775303, "sek": 298364990.5001348, "sgd": 46358912.550689556, "thb": 1084867405.5761669, "try": 282295619.11637855, "twd": 980828230.1718377, "uah": 966728565.027452, "usd": 34578088.60633424, "vef": 3462304.012152251, "vnd": 799848066893.3016, "xag": 1374897.071193035, "xau": 19914.558571046127, "xdr": 24256252.53263463, "xlm": 71729667.94211082, "xrp": 36941714.78759437, "yfi": 787.8562426687855, "zar": 504026332.9152187, "bits": 612679908.7156448, "link": 1094491.572655588, "sats": 61267990871.56448}, "total_volume": {"aed": 14209834.971477306, "ars": 356816492.0040235, "aud": 5080058.555985127, "bch": 6197.9594923605655, "bdt": 328182792.51472473, "bhd": 1458446.2113652464, "bmd": 3868516.544559869, "bnb": 10218.590641824367, "brl": 21716304.474541273, "btc": 68.72234710020523, "cad": 4879510.789798599, "chf": 3595789.9966849415, "clp": 2760958869.054936, "cny": 25309769.492782902, "czk": 84288785.87948793, "dkk": 24233815.117727913, "dot": 96892.42278924369, "eos": 649564.948504249, "eth": 1941.7266313853872, "eur": 3258385.7207015203, "gbp": 2815045.9876618683, "hkd": 30117368.428534705, "huf": 1170013486.319407, "idr": 56351713375.46744, "ils": 12738831.55540841, "inr": 287824013.9675525, "jpy": 424933329.7345423, "krw": 4328066116.281944, "kwd": 1168028.93733205, "lkr": 775222436.6738532, "ltc": 17505.81504102832, "mmk": 5457128492.274944, "mxn": 78197806.58007874, "myr": 15982776.10384911, "ngn": 1538828139.832703, "nok": 32799604.37470528, "nzd": 5515344.037579, "php": 188110210.83109316, "pkr": 592447351.1685975, "pln": 14901618.574041693, "rub": 298069199.75833744, "sar": 14508608.241246736, "sek": 33378055.916580234, "sgd": 5185487.237374015, "thb": 121399851.94310537, "try": 31586255.76605368, "twd": 109728920.51130624, "uah": 108155354.9846079, "usd": 3868516.544559869, "vef": 387354.5616067791, "vnd": 89464451997.85532, "xag": 153805.60264840937, "xau": 2227.4531411921216, "xdr": 2713733.4078763863, "xlm": 8079556.282689761, "xrp": 4161880.7285859464, "yfi": 87.55669555912593, "zar": 56380920.675378814, "bits": 68722347.10020523, "link": 123047.83329200199, "sats": 6872234710.020523}}, "community_data": {"facebook_likes": null, "twitter_followers": 37990, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 2192, "reddit_accounts_active_48h": "285.0"}, "developer_data": {"forks": 38, "stars": 79, "subscribers": 29, "total_issues": 16, "closed_issues": 13, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 925933, "bing_matches": null}}, "IDEX_20210425": {"id": "aurora-dao", "symbol": "idex", "name": "IDEX", "localization": {"en": "IDEX", "de": "IDEX", "es": "IDEX", "fr": "IDEX", "it": "IDEX", "pl": "IDEX", "ro": "IDEX", "hu": "IDEX", "nl": "IDEX", "pt": "IDEX", "sv": "IDEX", "vi": "IDEX", "tr": "IDEX", "ru": "IDEX", "ja": "\u30a2\u30a4\u30c7\u30c3\u30af\u30b9", "zh": "IDEX", "zh-tw": "IDEX", "ko": "IDEX", "ar": "IDEX", "th": "IDEX", "id": "IDEX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2565/thumb/logomark-purple-286x286.png?1638362736", "small": "https://assets.coingecko.com/coins/images/2565/small/logomark-purple-286x286.png?1638362736"}, "market_data": {"current_price": {"aed": 0.4230493790697713, "ars": 10.70446685686416, "aud": 0.1484738394391257, "bch": 0.0001258186083726648, "bdt": 9.766243833076894, "bhd": 0.04342152936131713, "bmd": 0.11517188801855922, "bnb": 0.0002090361450328482, "brl": 0.641438313130564, "btc": 2.1295880806033325e-06, "cad": 0.1439860516505945, "chf": 0.10557196563654837, "clp": 80.41298871949286, "cny": 0.747580725128469, "czk": 2.4741570499810965, "dkk": 0.7114858554234509, "dot": 0.0033856828224550707, "eos": 0.018059358337223993, "eth": 4.861798167236162e-05, "eur": 0.0956732873770171, "gbp": 0.08266358607832876, "hkd": 0.8941237078649628, "huf": 34.67595204462788, "idr": 1671.1901639045027, "ils": 0.37630283730135816, "inr": 8.687387871986791, "jpy": 12.440963319954225, "krw": 128.5617251901543, "kwd": 0.034687699577205716, "lkr": 22.11356396251752, "ltc": 0.0004442734393841248, "mmk": 162.3960690285562, "mxn": 2.2916614348212776, "myr": 0.47462335052448346, "ngn": 43.82290339106173, "nok": 0.9606583924013968, "nzd": 0.1598278296756592, "php": 5.5771015873971335, "pkr": 17.650534214066074, "pln": 0.43599216550152115, "rub": 8.821936278445607, "sar": 0.4320249546468333, "sek": 0.9680197187959898, "sgd": 0.15299433604385407, "thb": 3.607989390441751, "try": 0.944262637594962, "twd": 3.224237005079569, "uah": 3.225848835652377, "usd": 0.11517188801855922, "vef": 0.011532161147298348, "vnd": 2650.919747391033, "xag": 0.00434058314329802, "xau": 6.418759663050351e-05, "xdr": 0.08031534645351825, "xlm": 0.23320823932120205, "xrp": 0.08807881348449148, "yfi": 2.5196794019312995e-06, "zar": 1.6409690604884317, "bits": 2.1295880806033325, "link": 0.003158540387280247, "sats": 212.95880806033327}, "market_cap": {"aed": 245194453.01165146, "ars": 6204730675.856969, "aud": 86083665.85249159, "bch": 72622.9526611619, "bdt": 5660400258.464298, "bhd": 25166608.598003797, "bmd": 66752274.04215698, "bnb": 120671.66345717404, "brl": 371770115.0503896, "btc": 1231.9687984279687, "cad": 83470247.57146719, "chf": 61198084.32820525, "clp": 46606424118.770134, "cny": 433289010.80764145, "czk": 1434164931.2842228, "dkk": 412388807.0527681, "dot": 1949948.1864151666, "eos": 10407470.643059136, "eth": 28020.69567642766, "eur": 55455920.2105509, "gbp": 47915583.33474886, "hkd": 518213723.67821336, "huf": 20095438339.021206, "idr": 968602197261.3152, "ils": 218100706.2620499, "inr": 5034926778.030113, "jpy": 7211248164.774218, "krw": 74533612927.64728, "kwd": 20104449.89601691, "lkr": 12816762033.43013, "ltc": 256108.11792666934, "mmk": 94122854888.13367, "mxn": 1328495080.1913815, "myr": 275086121.3277286, "ngn": 25399240273.0407, "nok": 556773241.5309392, "nzd": 92653958.68191303, "php": 3232659034.8790927, "pkr": 10230042392.445152, "pln": 252719103.10305285, "rub": 5112890430.259021, "sar": 250334177.85607547, "sek": 561089777.331875, "sgd": 88687071.29240978, "thb": 2090714599.1373782, "try": 546954783.0466257, "twd": 1868729911.8101916, "uah": 1869664109.885403, "usd": 66752274.04215698, "vef": 6683905.199841183, "vnd": 1536795759273.2676, "xag": 2517625.4301602882, "xau": 37211.055164800455, "xdr": 46549831.80784628, "xlm": 134712879.4251688, "xrp": 50733770.7512775, "yfi": 1448.9635677238643, "zar": 951212362.0937706, "bits": 1231968798.4279687, "link": 1821264.7833438825, "sats": 123196879842.79688}, "total_volume": {"aed": 11253248.426057843, "ars": 284742232.8657481, "aud": 3949451.488743464, "bch": 3346.8151158897376, "bdt": 259785201.16192895, "bhd": 1155026.5314576402, "bmd": 3063608.958417144, "bnb": 5560.428135487559, "brl": 17062463.733008448, "btc": 56.64772223255907, "cad": 3830074.9020697805, "chf": 2808247.960906203, "clp": 2139011149.7906218, "cny": 19885885.74908571, "czk": 65813366.72740466, "dkk": 18925750.701517735, "dot": 90060.24303049497, "eos": 480384.69228071696, "eth": 1293.253820477492, "eur": 2544939.96175712, "gbp": 2198877.7574232807, "hkd": 23783975.83364129, "huf": 922391385.2002356, "idr": 44454191430.216156, "ils": 10009775.503970694, "inr": 231087288.467255, "jpy": 330933592.6854736, "krw": 3419782898.224706, "kwd": 922703.8733139927, "lkr": 588227855.1097655, "ltc": 11817.815200395702, "mmk": 4319787236.686108, "mxn": 60958925.15234449, "myr": 12625132.517637074, "ngn": 1165703208.6777217, "nok": 25553819.66530993, "nzd": 4251471.250691098, "php": 148352681.18899834, "pkr": 469509840.1994365, "pln": 11597530.67358685, "rub": 234666318.9968366, "sar": 11492001.599405197, "sek": 25749633.295496084, "sgd": 4069698.140361334, "thb": 95973668.64950727, "try": 25117687.3575986, "twd": 85765732.79088804, "uah": 85808607.99826078, "usd": 3063608.958417144, "vef": 306759.165006309, "vnd": 70515310861.65204, "xag": 115460.8961556608, "xau": 1707.410544705045, "xdr": 2136413.8343701106, "xlm": 6203413.553887329, "xrp": 2342924.533757387, "yfi": 67.02427580983966, "zar": 43650300.43952747, "bits": 56647722.23255907, "link": 84018.18180175016, "sats": 5664772223.255907}}, "community_data": {"facebook_likes": null, "twitter_followers": 51095, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1975, "reddit_accounts_active_48h": "11.3076923076923"}, "developer_data": {"forks": 22, "stars": 35, "subscribers": 16, "total_issues": 12, "closed_issues": 6, "pull_requests_merged": 2, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 4760670, "bing_matches": null}}, "NXS_20210526": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 2.7322298242027547, "ars": 70.06987449472489, "aud": 0.9624997555492255, "bch": 0.0011768316354534842, "bdt": 63.10318012684804, "bhd": 0.280410790209682, "bmd": 0.7438484724627046, "bnb": 0.0024616142522970647, "brl": 3.9920115971655843, "btc": 1.9776641023231134e-05, "cad": 0.8976540211138173, "chf": 0.6679863421501225, "clp": 536.3154307546581, "cny": 4.78606984151953, "czk": 15.543346103309784, "dkk": 4.540886227268725, "dot": 0.03387161639746111, "eos": 0.14460635372416988, "eth": 0.00031948971266175204, "eur": 0.6107129851643839, "gbp": 0.5256695331561959, "hkd": 5.77512796292957, "huf": 212.85224039520241, "idr": 10687.391697802388, "ils": 2.4218367336135245, "inr": 54.23800890900702, "jpy": 81.05343931783051, "krw": 838.904868758713, "kwd": 0.22356142685324842, "lkr": 146.56994041501716, "ltc": 0.0043477950418801484, "mmk": 1224.639553425684, "mxn": 14.84278961194441, "myr": 3.0802765244680614, "ngn": 306.8374948908648, "nok": 6.245821887031459, "nzd": 1.0369641945820502, "php": 35.644268162065025, "pkr": 114.14354809940187, "pln": 2.7462997180593964, "rub": 54.76405854873269, "sar": 2.789485328825151, "sek": 6.1965590342456744, "sgd": 0.9909846889537124, "thb": 23.32684411413134, "try": 6.261493286649309, "twd": 20.80120183848876, "uah": 20.404687459454685, "usd": 0.7438484724627046, "vef": 0.0744815475476906, "vnd": 17204.276627666088, "xag": 0.026990177337557708, "xau": 0.0003952513243277813, "xdr": 0.5152474722085212, "xlm": 1.9011273829100717, "xrp": 0.8172658294582591, "yfi": 1.9232296880927406e-05, "zar": 10.380405433217023, "bits": 19.776641023231136, "link": 0.03152791759697872, "sats": 1977.6641023231134}, "market_cap": {"aed": 183500432.05684868, "ars": 4705992200.96831, "aud": 64642849.38015059, "bch": 77561.98218970625, "bdt": 4238099121.4077635, "bhd": 18832786.576397676, "bmd": 49957918.93954665, "bnb": 162082.08363424486, "brl": 268109163.57286477, "btc": 1322.4776223498986, "cad": 60287717.83867675, "chf": 44862910.618577994, "clp": 36019705366.82476, "cny": 321439242.0408309, "czk": 1043913180.4729267, "dkk": 304972362.5895728, "dot": 2235132.15890959, "eos": 9540809.344084827, "eth": 21258.737781646458, "eur": 41016350.69190875, "gbp": 35304711.777469255, "hkd": 387865788.9587998, "huf": 14295458504.551321, "idr": 717780391947.7244, "ils": 162653991.64175424, "inr": 3642701642.644618, "jpy": 5443664000.284235, "krw": 56342041400.831314, "kwd": 15014702.663523946, "lkr": 9843845182.58825, "ltc": 288019.21482588514, "mmk": 82248530184.71507, "mxn": 996862812.415661, "myr": 206875742.3286626, "ngn": 20607641562.56302, "nok": 419478260.82120305, "nzd": 69643986.77143177, "php": 2393919629.362672, "pkr": 7666042661.2734375, "pln": 184445386.09359017, "rub": 3678031882.918674, "sar": 187345792.99346355, "sek": 416169697.7235942, "sgd": 66555937.928021684, "thb": 1566663901.788854, "try": 420530774.2574213, "twd": 1397038232.6011686, "uah": 1370407764.2470887, "usd": 49957918.93954665, "vef": 5002286.423416813, "vnd": 1155463631366.9038, "xag": 1812698.6093411646, "xau": 26545.63980771749, "xdr": 34604751.37520736, "xlm": 126063259.68805996, "xrp": 53793638.92358084, "yfi": 1270.43524690744, "zar": 697162758.8013743, "bits": 1322477622.3498986, "link": 2097820.4138580617, "sats": 132247762234.98985}, "total_volume": {"aed": 1311386.483617895, "ars": 33631389.82936656, "aud": 461970.3506388179, "bch": 564.8430767268854, "bdt": 30287590.289298054, "bhd": 134588.57555985075, "bmd": 357024.44355391845, "bnb": 1181.4993123008921, "brl": 1916043.081220808, "btc": 9.49218089177256, "cad": 430846.3877475618, "chf": 320612.9486536282, "clp": 257414951.19378936, "cny": 2297166.67471462, "czk": 7460329.218836135, "dkk": 2179486.06275259, "dot": 16257.33660047498, "eos": 69406.61288421399, "eth": 153.34525929268798, "eur": 293123.4945977506, "gbp": 252305.2469906749, "hkd": 2771884.22608609, "huf": 102162544.52295351, "idr": 5129620097.649628, "ils": 1162407.3238117194, "inr": 26032580.11151135, "jpy": 38903163.93979103, "krw": 402648597.19567335, "kwd": 107302.6254367995, "lkr": 70349074.24781488, "ltc": 2086.808218311659, "mmk": 587789410.4808366, "mxn": 7124083.597897056, "myr": 1478438.2207567769, "ngn": 147272582.96599093, "nok": 2997802.8675270225, "nzd": 497710.9966096704, "php": 17108155.057864923, "pkr": 54785400.86334871, "pln": 1318139.6009677222, "rub": 26285067.797992703, "sar": 1338867.3690871259, "sek": 2974158.209703779, "sgd": 475642.24468027166, "thb": 11196169.445833344, "try": 3005324.6585038193, "twd": 9983938.646874815, "uah": 9793623.911042828, "usd": 357024.44355391845, "vef": 35748.857533053844, "vnd": 8257524908.808813, "xag": 12954.45699237658, "xau": 189.7085083268094, "xdr": 247302.97751204105, "xlm": 912482.8122069135, "xrp": 392262.52227411297, "yfi": 9.230912405377211, "zar": 4982276.109794922, "bits": 9492180.891772559, "link": 15132.433087088837, "sats": 949218089.177256}}, "community_data": {"facebook_likes": null, "twitter_followers": 25552, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 3916, "reddit_accounts_active_48h": "98.0833333333333"}, "developer_data": {"forks": 9, "stars": 27, "subscribers": 16, "total_issues": 44, "closed_issues": 41, "pull_requests_merged": 85, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 447667, "bing_matches": null}}, "POA_20210711": {"id": "poa-network", "symbol": "poa", "name": "POA Network", "localization": {"en": "POA Network", "de": "POA Network", "es": "POA Network", "fr": "POA Network", "it": "POA Network", "pl": "POA Network", "ro": "POA Network", "hu": "POA Network", "nl": "POA Network", "pt": "POA Network", "sv": "POA Network", "vi": "POA Network", "tr": "POA Network", "ru": "POA Network", "ja": "\u30dd\u30a2\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "POA Network", "zh-tw": "POA Network", "ko": "POA \ub124\ud2b8\uc6cc\ud06c", "ar": "POA Network", "th": "POA Network", "id": "POA Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3157/thumb/poa-network.png?1548331565", "small": "https://assets.coingecko.com/coins/images/3157/small/poa-network.png?1548331565"}, "market_data": {"current_price": {"aed": 0.12008460054830665, "ars": 3.1360157186245394, "aud": 0.04367859113333263, "bch": 6.40315383545165e-05, "bdt": 2.7722509545052705, "bhd": 0.0123258521871811, "bmd": 0.032693874366541524, "bnb": 9.953183046827778e-05, "brl": 0.17107723639780129, "btc": 9.599991950746277e-07, "cad": 0.04080604194373957, "chf": 0.03025592484890285, "clp": 24.49098557087373, "cny": 0.21162744877462253, "czk": 0.7147861752756965, "dkk": 0.20610224939442584, "dot": 0.0019399967699934748, "eos": 0.008508781079543011, "eth": 1.4092927671370163e-05, "eur": 0.027716722402351002, "gbp": 0.0236876601009159, "hkd": 0.2539519904071913, "huf": 9.891957461923042, "idr": 474.4763905193068, "ils": 0.10703549447238875, "inr": 2.4462261027100225, "jpy": 3.616890627296115, "krw": 37.32034813986859, "kwd": 0.00984739495920226, "lkr": 6.505283333794964, "ltc": 0.0002374686335535264, "mmk": 53.80720997248988, "mxn": 0.6523696785389194, "myr": 0.13608825205072897, "ngn": 13.45663456601914, "nok": 0.28544067048295907, "nzd": 0.046606981460343734, "php": 1.6292609445297097, "pkr": 5.195654934744352, "pln": 0.1256580887809435, "rub": 2.44257243147406, "sar": 0.12262076246454266, "sek": 0.2819092743371309, "sgd": 0.04410109407177147, "thb": 1.0578026547628459, "try": 0.28390170442877694, "twd": 0.9120479029597869, "uah": 0.8915040204302085, "usd": 0.032693874366541524, "vef": 0.0032736376403217967, "vnd": 753.8264661497518, "xag": 0.0012497903701034951, "xau": 1.811992599016829e-05, "xdr": 0.02296401388568692, "xlm": 0.12644470430242075, "xrp": 0.04999398672356012, "yfi": 9.193476144406702e-07, "zar": 0.4675085412388119, "bits": 0.9599991950746277, "link": 0.0016436574431159389, "sats": 95.99991950746278}, "market_cap": {"aed": 34739648.90734243, "ars": 907227775.547278, "aud": 12635915.961005652, "bch": 18523.883589370875, "bdt": 801993131.5324352, "bhd": 3565784.251363848, "bmd": 9458112.961432764, "bnb": 28793.87390044374, "brl": 49491467.69328908, "btc": 277.7211635459297, "cad": 11804907.239988249, "chf": 8752830.936011674, "clp": 7085073658.422063, "cny": 61222365.19935406, "czk": 206782723.6758043, "dkk": 59623963.02509787, "dot": 561227.7208170473, "eos": 2461531.8365809447, "eth": 4076.9870336790173, "eur": 8018257.134749026, "gbp": 6852677.125833902, "hkd": 73466563.95394926, "huf": 2861675249.486588, "idr": 137262755975.38518, "ils": 30964632.281045713, "inr": 707676384.5497183, "jpy": 1046341578.8103433, "krw": 10796519999.725374, "kwd": 2848783.623983535, "lkr": 1881933720.285086, "ltc": 68698.04220098391, "mmk": 15566055718.992954, "mxn": 188726060.51698682, "myr": 39369395.20196386, "ngn": 3892911815.198651, "nok": 82576022.49728476, "nzd": 13483079.138961177, "php": 471333983.98272294, "pkr": 1503067233.0388594, "pln": 36352020.71444289, "rub": 706619402.5938253, "sar": 35473343.10409976, "sek": 81554413.8838684, "sgd": 12758143.154806254, "thb": 306015031.6687232, "try": 82130810.20396408, "twd": 263849184.58179203, "uah": 257905980.68210346, "usd": 9458112.961432764, "vef": 947040.8508282611, "vnd": 218076811277.4833, "xag": 361555.7570823366, "xau": 5241.969946614876, "xdr": 6643331.253545563, "xlm": 36579583.17387907, "xrp": 14462916.463265935, "yfi": 265.96094090036155, "zar": 135247005.10859275, "bits": 277721163.54592973, "link": 475498.7919938839, "sats": 27772116354.592976}, "total_volume": {"aed": 1383235.479031831, "ars": 36123267.9710499, "aud": 503126.76774443267, "bch": 737.5691406270297, "bdt": 31933119.313737202, "bhd": 141979.53756570505, "bmd": 376595.55650199705, "bnb": 1146.491378312243, "brl": 1970611.5685079938, "btc": 11.058078558, "cad": 470038.32895905426, "chf": 348513.2024491992, "clp": 282107780.7096631, "cny": 2437703.0372374183, "czk": 8233508.651803153, "dkk": 2374059.141379695, "dot": 22346.51528347004, "eos": 98011.30052311794, "eth": 162.33419996785378, "eur": 319264.5319579147, "gbp": 272854.40195683466, "hkd": 2925232.723413774, "huf": 113943890.02361186, "idr": 5465418332.846528, "ils": 1232924.8945651867, "inr": 28177690.72430813, "jpy": 41662389.82025935, "krw": 429887174.55173963, "kwd": 113430.58161840097, "lkr": 74933327.56550983, "ltc": 2735.3635486034714, "mmk": 619796722.6590644, "mxn": 7514542.919569618, "myr": 1567579.0039395613, "ngn": 155004840.54652798, "nok": 3287945.837916438, "nzd": 536858.4317403162, "php": 18767198.564880315, "pkr": 59847925.626851276, "pln": 1447435.6065265166, "rub": 28135604.664486755, "sar": 1412449.1261363637, "sek": 3247268.2454764256, "sgd": 507993.5121211082, "thb": 12184661.107261853, "try": 3270218.731880773, "twd": 10505735.224918043, "uah": 10269093.498483323, "usd": 376595.55650199705, "vef": 37708.51307254489, "vnd": 8683207574.080805, "xag": 14396.137168179595, "xau": 208.72055528010162, "xdr": 264518.8359092201, "xlm": 1456496.5060315018, "xrp": 575872.8084910121, "yfi": 10.589819444384569, "zar": 5385156.781462596, "bits": 11058078.558, "link": 18933.029550097217, "sats": 1105807855.8}}, "community_data": {"facebook_likes": null, "twitter_followers": 19868, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 217721, "bing_matches": null}}, "DREP_20210725": {"id": "drep-new", "symbol": "drep", "name": "Drep [new]", "localization": {"en": "Drep [new]", "de": "Drep [new]", "es": "Drep [new]", "fr": "Drep [new]", "it": "Drep [new]", "pl": "Drep [new]", "ro": "Drep [new]", "hu": "Drep [new]", "nl": "Drep [new]", "pt": "Drep [new]", "sv": "Drep [new]", "vi": "Drep [new]", "tr": "Drep [new]", "ru": "Drep [new]", "ja": "Drep [new]", "zh": "Drep [new]", "zh-tw": "Drep [new]", "ko": "Drep [new]", "ar": "Drep [new]", "th": "Drep [new]", "id": "Drep [new]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14578/thumb/KotgsCgS_400x400.jpg?1617094445", "small": "https://assets.coingecko.com/coins/images/14578/small/KotgsCgS_400x400.jpg?1617094445"}, "market_data": {"current_price": {"aed": 1.7971056132329086, "ars": 47.14677123589224, "aud": 0.6653605935984711, "bch": 0.0011355878096877341, "bdt": 41.479066969877515, "bhd": 0.18446605151185166, "bmd": 0.48924796178615454, "bnb": 0.0016710989707148932, "brl": 2.5384630497274685, "btc": 1.5203028254625949e-05, "cad": 0.6148648222145591, "chf": 0.4490268868477159, "clp": 368.262387633998, "cny": 3.1644558168328523, "czk": 10.66125126007829, "dkk": 3.0862436591657976, "dot": 0.039636276242028534, "eos": 0.13957664380700144, "eth": 0.0002450908588665209, "eur": 0.41489841677739914, "gbp": 0.35680071056325413, "hkd": 3.8030721598482495, "huf": 149.2496588510859, "idr": 7081.350536494721, "ils": 1.6038722382458481, "inr": 36.419840393936006, "jpy": 53.95184263621482, "krw": 562.4486928923869, "kwd": 0.14714279225107155, "lkr": 97.59000619517059, "ltc": 0.004151120808298055, "mmk": 805.1872603828725, "mxn": 9.858916893114465, "myr": 2.0714758702025793, "ngn": 201.18883745899177, "nok": 4.347347307640368, "nzd": 0.7027909981628818, "php": 24.531478923016085, "pkr": 78.67854405008612, "pln": 1.8994244857210514, "rub": 36.193243243442964, "sar": 1.8352850564268084, "sek": 4.250871034311873, "sgd": 0.6673391123559336, "thb": 16.075777044588285, "try": 4.187385240294579, "twd": 13.687151564885335, "uah": 13.324557669206579, "usd": 0.48924796178615454, "vef": 0.04898839841364766, "vnd": 11244.342621474787, "xag": 0.01934819129516471, "xau": 0.00027142498423972307, "xdr": 0.34441344141879093, "xlm": 2.1434103941907074, "xrp": 0.8550031419972106, "yfi": 1.7307019566190504e-05, "zar": 7.134690795528452, "bits": 15.20302825462595, "link": 0.03207028963005321, "sats": 1520.302825462595}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 10997176.438983876, "ars": 288509121.55173403, "aud": 4071595.8981321827, "bch": 6949.0960426245965, "bdt": 253826271.88592112, "bhd": 1128818.306804548, "bmd": 2993895.360716498, "bnb": 10226.093609988788, "brl": 15533826.079077583, "btc": 93.03314334554383, "cad": 3762592.9640572644, "chf": 2747767.2231120015, "clp": 2253538369.048364, "cny": 19364515.193114337, "czk": 65240273.19490938, "dkk": 18885905.092959497, "dot": 242549.53076116214, "eos": 854122.855887974, "eth": 1499.8046852062828, "eur": 2538922.064434501, "gbp": 2183399.984244772, "hkd": 23272452.79524834, "huf": 913315733.7875524, "idr": 43333491756.242615, "ils": 9814707.527315281, "inr": 222866929.88022995, "jpy": 330151955.6279145, "krw": 3441838625.4363117, "kwd": 900423.0114215701, "lkr": 597190565.1550205, "ltc": 25402.295564737437, "mmk": 4927248740.224652, "mxn": 60330482.40042808, "myr": 12676152.957273657, "ngn": 1231151428.6076825, "nok": 26603080.548870645, "nzd": 4300646.856599154, "php": 150117500.0729678, "pkr": 481464096.7731621, "pln": 11623304.745247291, "rub": 221480295.26833302, "sar": 11230811.05124807, "sek": 26012705.34100489, "sgd": 4083703.2109709163, "thb": 98373826.91998303, "try": 25624211.491207596, "twd": 83756914.22797342, "uah": 81538063.52876244, "usd": 2993895.360716498, "vef": 299778.74246854294, "vnd": 68808432202.43097, "xag": 118398.98105118328, "xau": 1660.9532682183, "xdr": 2107597.547606793, "xlm": 13116347.81645539, "xrp": 5232091.168817862, "yfi": 105.90827072202582, "zar": 43659901.1979447, "bits": 93033143.34554383, "link": 196250.36554003667, "sats": 9303314334.554382}}, "community_data": {"facebook_likes": null, "twitter_followers": 4080, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 319856, "bing_matches": null}}, "EZ_20210808": {"id": "easyfi", "symbol": "ez", "name": "EasyFi V2", "localization": {"en": "EasyFi V2", "de": "EasyFi V2", "es": "EasyFi V2", "fr": "EasyFi V2", "it": "EasyFi V2", "pl": "EasyFi V2", "ro": "EasyFi V2", "hu": "EasyFi V2", "nl": "EasyFi V2", "pt": "EasyFi V2", "sv": "EasyFi V2", "vi": "EasyFi V2", "tr": "EasyFi V2", "ru": "EasyFi V2", "ja": "EasyFi V2", "zh": "EasyFi V2", "zh-tw": "EasyFi V2", "ko": "EasyFi V2", "ar": "EasyFi V2", "th": "EasyFi V2", "id": "EasyFi V2"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12742/thumb/Logo_Icon.png?1624471467", "small": "https://assets.coingecko.com/coins/images/12742/small/Logo_Icon.png?1624471467"}, "market_data": {"current_price": {"aed": 9.318378144741105, "ars": 245.66975438887417, "aud": 3.4375225517615844, "bch": 0.0046290031512386575, "bdt": 215.21680750905466, "bhd": 0.9564491911095961, "bmd": 2.53699377749554, "bnb": 0.007574037730296416, "brl": 13.115496731518709, "btc": 6.379979798506933e-05, "cad": 3.183336071206747, "chf": 2.3002922580552103, "clp": 1964.495761665896, "cny": 16.404962863419417, "czk": 54.54231928662739, "dkk": 15.938409707738009, "dot": 0.13233070012574044, "eos": 0.6167924962025952, "eth": 0.0009309524415126263, "eur": 2.142892090111828, "gbp": 1.8266761116972272, "hkd": 19.726648816294325, "huf": 760.3877749909648, "idr": 36378.84172333069, "ils": 8.151284897279867, "inr": 188.25141269828936, "jpy": 277.80716112020576, "krw": 2904.905043020706, "kwd": 0.7615370331721669, "lkr": 506.1984504661062, "ltc": 0.017766454901764994, "mmk": 4176.450890890268, "mxn": 50.681773318418614, "myr": 10.711187728586157, "ngn": 1043.4171526015982, "nok": 22.439961124332033, "nzd": 3.6025083310996693, "php": 126.20572628122916, "pkr": 414.0584542205943, "pln": 9.740556742260408, "rub": 185.74346242555856, "sar": 9.514142732587775, "sek": 21.843884288334337, "sgd": 3.4289373648185375, "thb": 84.08804226560181, "try": 21.517436614015146, "twd": 70.35007888881213, "uah": 68.33257010517143, "usd": 2.53699377749554, "vef": 0.2540291869406288, "vnd": 58307.503537803575, "xag": 0.09999193109900911, "xau": 0.0014002429756131173, "xdr": 1.7770068475214245, "xlm": 9.035154296628226, "xrp": 3.4687379326324286, "yfi": 7.664678435291555e-05, "zar": 36.44036382243495, "bits": 63.79979798506933, "link": 0.10485426550405678, "sats": 6379.979798506934}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 23716772.785008512, "ars": 625269081.6457155, "aud": 8749048.389872704, "bch": 11781.558362811624, "bdt": 547761428.4292362, "bhd": 2434317.194860062, "bmd": 6457057.6599533195, "bnb": 19277.145563780126, "brl": 33381050.984660722, "btc": 162.38075865114754, "cad": 8102102.86880665, "chf": 5854614.180279686, "clp": 4999958028.408254, "cny": 41753271.94655617, "czk": 138818984.76274693, "dkk": 40565819.04289081, "dot": 336802.9391610915, "eos": 1569836.2162079439, "eth": 2369.423861754788, "eur": 5454005.408940852, "gbp": 4649184.828088946, "hkd": 50207497.540733054, "huf": 1935309321.8412132, "idr": 92590009756.25171, "ils": 20746332.549700275, "inr": 479130156.7796849, "jpy": 707063956.4090394, "krw": 7393451070.26257, "kwd": 1938234.3689611633, "lkr": 1288356562.4135308, "ltc": 45218.48840595296, "mmk": 10629739992.134958, "mxn": 128993273.6645382, "myr": 27261697.44032289, "ngn": 2655664660.0780544, "nok": 57113314.25099548, "nzd": 9168963.763614776, "php": 321213894.5088979, "pkr": 1053845435.968248, "pln": 24791285.293143805, "rub": 472747019.51582265, "sar": 24215025.182281163, "sek": 55596202.72555878, "sgd": 8727197.706751417, "thb": 214017607.07414162, "try": 54765340.83116441, "twd": 179052278.250266, "uah": 173917393.54499465, "usd": 6457057.6599533195, "vef": 646545.183491127, "vnd": 148401984936.3591, "xag": 254495.5649334526, "xau": 3563.8438342580466, "xdr": 4522768.553222393, "xlm": 22995922.488030624, "xrp": 8828496.560360303, "yfi": 195.07840752583547, "zar": 92746593.40450557, "bits": 162380758.65114754, "link": 266870.98890724, "sats": 16238075865.114754}}, "community_data": {"facebook_likes": null, "twitter_followers": 35515, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 164218, "bing_matches": null}}, "NAS_20210822": {"id": "nebulas", "symbol": "nas", "name": "Nebulas", "localization": {"en": "Nebulas", "de": "Nebulas", "es": "Nebulas", "fr": "Nebulas", "it": "Nebulas", "pl": "Nebulas", "ro": "Nebulas", "hu": "Nebulas", "nl": "Nebulas", "pt": "Nebulas", "sv": "Nebulas", "vi": "Nebulas", "tr": "Nebulas", "ru": "Nebulas", "ja": "\u30cd\u30d6\u30e9\u30b9", "zh": "\u661f\u4e91\u5e01", "zh-tw": "\u661f\u96f2\u5e63", "ko": "\ub124\ubdf8\ub77c\uc2a4", "ar": "Nebulas", "th": "Nebulas", "id": "Nebulas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2431/thumb/193394331.png?1597976208", "small": "https://assets.coingecko.com/coins/images/2431/small/193394331.png?1597976208"}, "market_data": {"current_price": {"aed": 1.986050376043838, "ars": 52.586323068012206, "aud": 0.7473209322270824, "bch": 0.0008472414779419882, "bdt": 45.9375133514569, "bhd": 0.20385672749399386, "bmd": 0.5406866971697271, "bnb": 0.0013478947043532776, "brl": 2.9089484994428485, "btc": 1.2003405477817982e-05, "cad": 0.6847526676306007, "chf": 0.495943791605538, "clp": 425.90493082559396, "cny": 3.5061910251365274, "czk": 11.755174917072994, "dkk": 3.4345078641991678, "dot": 0.02231364708464981, "eos": 0.10706769823065053, "eth": 0.0001775675863502471, "eur": 0.4618340306278889, "gbp": 0.39329063734098546, "hkd": 4.211003169232132, "huf": 161.82510510512228, "idr": 7787.213121652147, "ils": 1.7482779940964854, "inr": 40.156503621112165, "jpy": 59.379294456573824, "krw": 633.010412187601, "kwd": 0.162679110010942, "lkr": 107.87480143852102, "ltc": 0.003206745370800112, "mmk": 890.0337239282019, "mxn": 10.834863438833239, "myr": 2.2914302226053094, "ngn": 222.7405899547081, "nok": 4.816534421993421, "nzd": 0.7857107690995265, "php": 27.26271443113048, "pkr": 88.8348075836986, "pln": 2.1044737392047477, "rub": 39.94512215685375, "sar": 2.02780220279929, "sek": 4.719805031183064, "sgd": 0.7359935459213759, "thb": 17.994101943611323, "try": 4.574530085267314, "twd": 15.060936087002233, "uah": 14.40153838134871, "usd": 0.5406866971697271, "vef": 0.05413895898760475, "vnd": 12337.343357719827, "xag": 0.02299620544694036, "xau": 0.00030244391779583093, "xdr": 0.3806634402152834, "xlm": 1.562997001151867, "xrp": 0.46355626623949864, "yfi": 1.4421033457040672e-05, "zar": 8.097269908144117, "bits": 12.003405477817983, "link": 0.020982517583641717, "sats": 1200.3405477817983}, "market_cap": {"aed": 90366868.62629408, "ars": 2392820309.2031193, "aud": 34001825.90852365, "bch": 38473.47033904717, "bdt": 2090193322.4467664, "bhd": 9275642.921370298, "bmd": 24601673.915467132, "bnb": 61151.201846342745, "brl": 132366846.33477952, "btc": 545.7918790186621, "cad": 31146088.20209013, "chf": 22562293.554570574, "clp": 19379012433.649185, "cny": 159534474.83962974, "czk": 534719842.72006935, "dkk": 156235611.78263092, "dot": 1009893.1961908322, "eos": 4858880.258997005, "eth": 8061.529132467279, "eur": 21007024.932982575, "gbp": 17891026.118197314, "hkd": 191600321.22272372, "huf": 7361403550.756142, "idr": 354324378483.8196, "ils": 79548036.50522774, "inr": 1827152790.7810915, "jpy": 2701386804.2878675, "krw": 28797487458.21782, "kwd": 7402028.6393161975, "lkr": 4908389095.900331, "ltc": 145438.110176003, "mmk": 40497240942.80248, "mxn": 492988638.2991101, "myr": 104261894.05374952, "ngn": 10134873653.24312, "nok": 219127478.59017444, "nzd": 35744362.47195617, "php": 1240030300.1474252, "pkr": 4042054261.6593604, "pln": 95730427.16664818, "rub": 1817111617.5724926, "sar": 92261960.16967635, "sek": 214727690.62545815, "sgd": 33479581.574646063, "thb": 818989724.6459005, "try": 208068042.0982151, "twd": 685368168.3397585, "uah": 655281428.2164696, "usd": 24601673.915467132, "vef": 2463365.6091557248, "vnd": 561168722693.554, "xag": 1046323.2145789496, "xau": 13761.438338094857, "xdr": 17320488.69842371, "xlm": 70869448.48288387, "xrp": 21014546.274009317, "yfi": 653.5337612344841, "zar": 368389819.7064881, "bits": 545791879.0186622, "link": 951438.2998134114, "sats": 54579187901.86622}, "total_volume": {"aed": 25757518.250801638, "ars": 682003433.8026166, "aud": 9692167.32024137, "bch": 10988.058557909017, "bdt": 595773577.9610847, "bhd": 2643862.13074554, "bmd": 7012283.091256039, "bnb": 17481.138880624287, "brl": 37726784.259266615, "btc": 155.67477008440423, "cad": 8880705.920921208, "chf": 6432002.640888421, "clp": 5523653458.7300415, "cny": 45472552.16186801, "czk": 152455414.08220047, "dkk": 44542877.69419558, "dot": 289390.53055123915, "eos": 1388584.2093999484, "eth": 2302.912555157831, "eur": 5989625.749793448, "gbp": 5100671.610031828, "hkd": 54613413.78547492, "huf": 2098744900.1601133, "idr": 100994056607.66069, "ils": 22673796.638590965, "inr": 520798408.43188554, "jpy": 770102953.6479214, "krw": 8209649383.28921, "kwd": 2109820.6750816656, "lkr": 1399051706.0242867, "ltc": 41588.97649846641, "mmk": 11543040480.96491, "mxn": 140519694.83604398, "myr": 29718055.74074317, "ngn": 2888771040.3303885, "nok": 62466679.98786525, "nzd": 10190053.444286719, "php": 353576058.7931514, "pkr": 1152117894.5125923, "pln": 27293376.542580996, "rub": 518056956.3573601, "sar": 26299006.751108505, "sek": 61212175.53055651, "sgd": 9545259.989479546, "thb": 233369412.38248, "try": 59328073.235899225, "twd": 195328547.96355587, "uah": 186776676.04591605, "usd": 7012283.091256039, "vef": 702139.9059274668, "vnd": 160005682905.1251, "xag": 298242.7780500951, "xau": 3922.4607927558995, "xdr": 4936906.750718632, "xlm": 20270847.239691976, "xrp": 6011961.797123013, "yfi": 187.02951191251512, "zar": 105015250.34634133, "bits": 155674770.08440423, "link": 272126.8232304336, "sats": 15567477008.440422}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4924, "reddit_accounts_active_48h": "86.3076923076923"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 625809, "bing_matches": null}}, "VIB_20210905": {"id": "viberate", "symbol": "vib", "name": "Viberate", "localization": {"en": "Viberate", "de": "Viberate", "es": "Viberate", "fr": "Viberate", "it": "Viberate", "pl": "Viberate", "ro": "Viberate", "hu": "Viberate", "nl": "Viberate", "pt": "Viberate", "sv": "Viberate", "vi": "Viberate", "tr": "Viberate", "ru": "Viberate", "ja": "Viberate", "zh": "Viberate", "zh-tw": "Viberate", "ko": "\ubc14\uc774\ubc84\ub808\uc774\ud2b8", "ar": "Viberate", "th": "Viberate", "id": "Viberate"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/983/thumb/Viberate.png?1547034873", "small": "https://assets.coingecko.com/coins/images/983/small/Viberate.png?1547034873"}, "market_data": {"current_price": {"aed": 0.22472977312605044, "ars": 5.977920867199165, "aud": 0.0830523101196677, "bch": 9.325518615622699e-05, "bdt": 5.2128137568228565, "bhd": 0.023066371102638168, "bmd": 0.061180924841024366, "bnb": 0.00012497346190759647, "brl": 0.3173087485954893, "btc": 1.2574982151810476e-06, "cad": 0.07722929323607351, "chf": 0.05601743832721651, "clp": 47.21706042392515, "cny": 0.3952287744730171, "czk": 1.3099570179561462, "dkk": 0.3842100899091487, "dot": 0.0018556772649832164, "eos": 0.011528461729229207, "eth": 1.6144155202729408e-05, "eur": 0.05166655685714698, "gbp": 0.04443264666579396, "hkd": 0.47581322962737327, "huf": 17.977402955286657, "idr": 873.4800639553052, "ils": 0.19617969454898623, "inr": 4.465311151664931, "jpy": 6.73415380678913, "krw": 70.73157311333253, "kwd": 0.018389640026865467, "lkr": 12.206059541994083, "ltc": 0.00033779828617116266, "mmk": 100.70746855524729, "mxn": 1.2236833486008194, "myr": 0.25413332560464724, "ngn": 25.175950572081582, "nok": 0.5319459939979146, "nzd": 0.08658997473675023, "php": 3.056010872827084, "pkr": 10.225251480642813, "pln": 0.23297953139346464, "rub": 4.467412777614152, "sar": 0.22947043826828248, "sek": 0.5270682835840387, "sgd": 0.08225836525800576, "thb": 1.9755320631166833, "try": 0.5075924374175458, "twd": 1.6938367308711555, "uah": 1.6531073655859767, "usd": 0.061180924841024366, "vef": 0.006126046004331769, "vnd": 1390.3095882893865, "xag": 0.002531851436314604, "xau": 3.373577376658931e-05, "xdr": 0.04307852925628763, "xlm": 0.17293344519345763, "xrp": 0.0496668808115545, "yfi": 1.5300368895797302e-06, "zar": 0.8808768377685857, "bits": 1.2574982151810474, "link": 0.002065312962655162, "sats": 125.74982151810475}, "market_cap": {"aed": 40982406.53651467, "ars": 1090202080.7103007, "aud": 15146453.465776779, "bch": 17124.678910848834, "bdt": 950624608.4332755, "bhd": 4206453.754217086, "bmd": 11157139.969649002, "bnb": 22808.875650455244, "brl": 57863159.31059365, "btc": 229.51854564421842, "cad": 14084974.326204358, "chf": 10215332.313391022, "clp": 8610647084.430159, "cny": 72075124.2039325, "czk": 238887755.3181496, "dkk": 70066046.85245787, "dot": 338266.2506105789, "eos": 2109264.7706054277, "eth": 2950.1880931607925, "eur": 9421267.504611121, "gbp": 8102214.631699388, "hkd": 86769635.40095878, "huf": 3278316383.7069297, "idr": 158859821743.8504, "ils": 35775927.16967809, "inr": 814307754.5266811, "jpy": 1228211439.2788703, "krw": 12898882931.238993, "kwd": 3353590.817797164, "lkr": 2225934229.365885, "ltc": 61596.86786506682, "mmk": 18365320981.654934, "mxn": 223113790.82905897, "myr": 46344528.00592812, "ngn": 4591163097.510568, "nok": 97020916.01933205, "nzd": 15789896.884966407, "php": 557277574.7324073, "pkr": 1864708032.6234949, "pln": 42480944.320118114, "rub": 814689897.7277819, "sar": 41846928.684202895, "sek": 96117165.36751044, "sgd": 15002894.54578731, "thb": 360598763.81905526, "try": 92561340.23062344, "twd": 308885420.0597321, "uah": 301465698.83711714, "usd": 11157139.969649002, "vef": 1117164.4251609535, "vnd": 253541095006.27283, "xag": 461821.2467652972, "xau": 6152.493264863243, "xdr": 7855931.924009354, "xlm": 31515515.45329388, "xrp": 9109018.685773171, "yfi": 279.89949632774494, "zar": 160659691.56375417, "bits": 229518545.64421842, "link": 377316.9940657373, "sats": 22951854564.42184}, "total_volume": {"aed": 7717217.289595601, "ars": 205281719.5979986, "aud": 2852015.17663108, "bch": 3202.381798096818, "bdt": 179007952.04839692, "bhd": 792098.8634721899, "bmd": 2100952.1097668544, "bnb": 4291.5869471063115, "brl": 10896378.022094833, "btc": 43.18247125354245, "cad": 2652052.8576797997, "chf": 1923638.054558864, "clp": 1621433199.5209775, "cny": 13572150.629093869, "czk": 44983905.81264026, "dkk": 13193769.154124862, "dot": 63723.93152021529, "eos": 395887.21575110155, "eth": 554.390065559035, "eur": 1774228.8452727913, "gbp": 1525816.4697181787, "hkd": 16339419.700473314, "huf": 617343767.9338945, "idr": 29995293271.141396, "ils": 6736807.987572893, "inr": 153338722.96362013, "jpy": 231250748.24598277, "krw": 2428921238.862011, "kwd": 631499.9832495032, "lkr": 419155915.235474, "ltc": 11599.988458020984, "mmk": 3458293072.2314234, "mxn": 42021269.20457347, "myr": 8726934.873549568, "ngn": 864541793.1690625, "nok": 18267018.049759075, "nzd": 2973498.530474128, "php": 104943370.95132099, "pkr": 351134993.9049643, "pln": 8000513.873980811, "rub": 153410892.769543, "sar": 7880011.664773011, "sek": 18099517.541855786, "sgd": 2824751.121102636, "thb": 67839743.62437196, "try": 17430717.254849486, "twd": 58166329.82537246, "uah": 56767683.98685805, "usd": 2100952.1097668544, "vef": 210368.3347509551, "vnd": 47743211962.48146, "xag": 86943.74317752381, "xau": 1158.4860028465434, "xdr": 1479316.0966727107, "xlm": 5938532.107393398, "xrp": 1705559.9976253517, "yfi": 52.541445549188076, "zar": 30249298.381212227, "bits": 43182471.253542446, "link": 70922.81846824309, "sats": 4318247125.354245}}, "community_data": {"facebook_likes": null, "twitter_followers": 32825, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1279, "reddit_accounts_active_48h": "14.9166666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 6418077, "bing_matches": null}}, "FXS_20210919": {"id": "frax-share", "symbol": "fxs", "name": "Frax Share", "localization": {"en": "Frax Share", "de": "Frax Share", "es": "Frax Share", "fr": "Frax Share", "it": "Frax Share", "pl": "Frax Share", "ro": "Frax Share", "hu": "Frax Share", "nl": "Frax Share", "pt": "Frax Share", "sv": "Frax Share", "vi": "Frax Share", "tr": "Frax Share", "ru": "Frax Share", "ja": "Frax Share", "zh": "Frax Share", "zh-tw": "Frax Share", "ko": "Frax Share", "ar": "Frax Share", "th": "Frax Share", "id": "Frax Share"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13423/thumb/frax_share.png?1608478989", "small": "https://assets.coingecko.com/coins/images/13423/small/frax_share.png?1608478989"}, "market_data": {"current_price": {"aed": 18.87596757537724, "ars": 504.49841499368773, "aud": 7.002900721343014, "bch": 0.007889103548434919, "bdt": 438.2411736925958, "bhd": 1.9371967899447593, "bmd": 5.138834687840911, "bnb": 0.011956266661685047, "brl": 26.843216875405815, "btc": 0.00010663821029252399, "cad": 6.48803573513354, "chf": 4.726525425496681, "clp": 4001.011038995197, "cny": 33.05555412953664, "czk": 110.03529775339358, "dkk": 32.33373799277849, "dot": 0.14148707193556603, "eos": 1.0088524535337895, "eth": 0.001433041973591471, "eur": 4.34823524878596, "gbp": 3.711184190203703, "hkd": 39.9886129486372, "huf": 1517.4891113286062, "idr": 73118.68018114755, "ils": 16.470992941467713, "inr": 377.602343687753, "jpy": 561.9733502997651, "krw": 5993.217343041346, "kwd": 1.5448005120159238, "lkr": 1025.1237933629957, "ltc": 0.027270836013588155, "mmk": 9405.961242108036, "mxn": 102.05212834350209, "myr": 21.36778851551127, "ngn": 2114.467444516067, "nok": 44.035619985691355, "nzd": 7.206629822542466, "php": 255.57199856134037, "pkr": 871.6123559728802, "pln": 19.85081479333003, "rub": 371.3964299769821, "sar": 19.27310185888822, "sek": 44.113982075846245, "sgd": 6.89013413295303, "thb": 168.88266318120375, "try": 43.32654302012432, "twd": 141.9752108722001, "uah": 136.90496934977213, "usd": 5.138834687840911, "vef": 0.5145515172935101, "vnd": 117043.79233268074, "xag": 0.21504116660945, "xau": 0.0028623309211273902, "xdr": 3.6077754197802765, "xlm": 15.08620736287258, "xrp": 4.593295920228955, "yfi": 0.00014095240880223253, "zar": 73.98894183553347, "bits": 106.638210292524, "link": 0.1682472449378822, "sats": 10663.821029252398}, "market_cap": {"aed": 672938620.8622317, "ars": 17983703891.31036, "aud": 249623368.04082498, "bch": 281167.7280116131, "bdt": 15623538759.116957, "bhd": 69062130.50846042, "bmd": 183202281.62425986, "bnb": 426191.8976522919, "brl": 956973789.4719491, "btc": 3801.0432576674357, "cad": 231283720.4365467, "chf": 168483810.3185669, "clp": 142638243040.2207, "cny": 1178448676.5480516, "czk": 3923240037.324905, "dkk": 1152672115.5235183, "dot": 5039031.989130731, "eos": 35856576.47696305, "eth": 51089.42703835565, "eur": 155006534.47087812, "gbp": 132285604.30155596, "hkd": 1425654507.2805624, "huf": 54095053706.60314, "idr": 2606721144433.025, "ils": 587199953.0620778, "inr": 13461731134.092846, "jpy": 20027860284.331238, "krw": 213650685314.90945, "kwd": 55072987.48591352, "lkr": 36546226780.905365, "ltc": 970284.3608840011, "mmk": 335327689077.2196, "mxn": 3638049228.7227116, "myr": 761773407.2218363, "ngn": 75381926795.9985, "nok": 1570226755.801531, "nzd": 256943398.405404, "php": 9111052510.194025, "pkr": 31073459647.17506, "pln": 707805495.8986793, "rub": 13240926584.165213, "sar": 687235177.3133428, "sek": 1572223660.6712341, "sgd": 245600978.7454825, "thb": 6020118575.314001, "try": 1544615076.830459, "twd": 5061549460.373662, "uah": 4880737418.917762, "usd": 183202281.62425986, "vef": 18344044.45903713, "vnd": 4172675539853.229, "xag": 7669699.399401074, "xau": 102076.64727540506, "xdr": 128619177.03940941, "xlm": 537101807.1487738, "xrp": 163674887.32170624, "yfi": 5021.850648785529, "zar": 2639102147.710113, "bits": 3801043257.6674356, "link": 5997871.549485311, "sats": 380104325766.7435}, "total_volume": {"aed": 17808726.417823184, "ars": 475974236.2859222, "aud": 6606958.958769137, "bch": 7443.0561620175795, "bdt": 413463158.17461854, "bhd": 1827668.304252321, "bmd": 4848286.621426326, "bnb": 11280.263176243234, "brl": 25325509.99568259, "btc": 100.60892005679888, "cad": 6121204.273881806, "chf": 4459289.192642805, "clp": 3774795157.049424, "cny": 31186603.69232482, "czk": 103813937.28129128, "dkk": 30505598.808619462, "dot": 133487.43823051453, "eos": 951812.259116676, "eth": 1352.0182396497823, "eur": 4102387.4212931264, "gbp": 3501355.025408152, "hkd": 37727669.58762215, "huf": 1431690763.281929, "idr": 68984573435.95767, "ils": 15539728.278995687, "inr": 356252828.18539935, "jpy": 530199557.16871476, "krw": 5654362755.104672, "kwd": 1457457.9861268362, "lkr": 967163622.606395, "ltc": 25728.95168483067, "mmk": 8874151207.795912, "mxn": 96282133.71147871, "myr": 20159660.600552786, "ngn": 1994916132.8238723, "nok": 41545860.14374056, "nzd": 6799169.2818755815, "php": 241122039.66552168, "pkr": 822331672.6906977, "pln": 18728456.086480998, "rub": 350397794.84703404, "sar": 18183406.85621359, "sek": 41619791.66643069, "sgd": 6500568.157148554, "thb": 159334091.52655485, "try": 40876874.16256967, "twd": 133947977.9481046, "uah": 129164406.25650074, "usd": 4848286.621426326, "vef": 485458.9394034178, "vnd": 110426173823.06906, "xag": 202882.80796332605, "xau": 2700.4956481344666, "xdr": 3403792.9537251866, "xlm": 14233238.033233814, "xrp": 4333592.440907022, "yfi": 132.9830047793969, "zar": 69805630.77529629, "bits": 100608920.05679888, "link": 158734.599627079, "sats": 10060892005.679888}}, "community_data": {"facebook_likes": null, "twitter_followers": 14464, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 92026, "bing_matches": null}}, "EZ_20211003": {"id": "easyfi", "symbol": "ez", "name": "EasyFi V2", "localization": {"en": "EasyFi V2", "de": "EasyFi V2", "es": "EasyFi V2", "fr": "EasyFi V2", "it": "EasyFi V2", "pl": "EasyFi V2", "ro": "EasyFi V2", "hu": "EasyFi V2", "nl": "EasyFi V2", "pt": "EasyFi V2", "sv": "EasyFi V2", "vi": "EasyFi V2", "tr": "EasyFi V2", "ru": "EasyFi V2", "ja": "EasyFi V2", "zh": "EasyFi V2", "zh-tw": "EasyFi V2", "ko": "EasyFi V2", "ar": "EasyFi V2", "th": "EasyFi V2", "id": "EasyFi V2"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12742/thumb/Logo_Icon.png?1624471467", "small": "https://assets.coingecko.com/coins/images/12742/small/Logo_Icon.png?1624471467"}, "market_data": {"current_price": {"aed": 15.792476917526894, "ars": 423.9991134124208, "aud": 5.988535451048807, "bch": 0.008858722752507436, "bdt": 368.3999726537587, "bhd": 1.6210032552458298, "bmd": 4.2993784486352045, "bnb": 0.011683839641946562, "brl": 23.284573802118587, "btc": 0.00010343430467233914, "cad": 5.483865809991105, "chf": 4.0171801454021425, "clp": 3481.3351565935704, "cny": 27.81955818973898, "czk": 94.53903270703964, "dkk": 27.555984793945388, "dot": 0.157315674972566, "eos": 1.1458010645869028, "eth": 0.001506295568426353, "eur": 3.7057245718261114, "gbp": 3.2015665568038, "hkd": 33.472316483327845, "huf": 1335.2619417177023, "idr": 61649.0025439027, "ils": 13.837936480992806, "inr": 319.539432610915, "jpy": 481.32401608160853, "krw": 5108.65045402181, "kwd": 1.2967613301635592, "lkr": 858.9188114607565, "ltc": 0.02964475363092284, "mmk": 8047.409355830629, "mxn": 88.21507694694212, "myr": 17.990061217762214, "ngn": 1769.5774610107874, "nok": 37.705381318771266, "nzd": 6.255905198012529, "php": 218.97852707233605, "pkr": 732.954078195779, "pln": 17.167942669571108, "rub": 313.3387013365344, "sar": 16.126882573261714, "sek": 37.8350763690528, "sgd": 5.854549621075535, "thb": 145.87791076219278, "try": 38.37565011953507, "twd": 119.62934115820701, "uah": 114.34251156313822, "usd": 4.2993784486352045, "vef": 0.4304967640618439, "vnd": 98316.3595402896, "xag": 0.19935465475092995, "xau": 0.0024864595381991956, "xdr": 3.037209917469369, "xlm": 15.842955601323542, "xrp": 4.631211320852534, "yfi": 0.00014995233333744854, "zar": 65.27714053224476, "bits": 103.43430467233914, "link": 0.1877129059858498, "sats": 10343.430467233913}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 4352768.089209487, "ars": 116863859.94754495, "aud": 1650577.4330748261, "bch": 2441.666744845678, "bdt": 101539464.22763215, "bhd": 446785.59790123766, "bmd": 1185007.102583434, "bnb": 3220.3336195136903, "brl": 6417761.466171375, "btc": 28.508861723119423, "cad": 1511478.9293593764, "chf": 1107226.791391167, "clp": 959535648.3089695, "cny": 7667706.957976376, "czk": 26057121.178707164, "dkk": 7595060.097552495, "dot": 43359.80058917002, "eos": 315808.99795275164, "eth": 415.1695340385308, "eur": 1021382.506865818, "gbp": 882425.0189955765, "hkd": 9225736.521346543, "huf": 368028751.9809075, "idr": 16991876094.29901, "ils": 3814052.010304021, "inr": 88072381.09490353, "jpy": 132663915.14842063, "krw": 1408060989.5027142, "kwd": 357417.10225280595, "lkr": 236737682.96592182, "ltc": 8170.772595776268, "mmk": 2218050203.7644205, "mxn": 24314094.231517192, "myr": 4958472.619623962, "ngn": 487736049.50617987, "nok": 10392466.07437972, "nzd": 1724270.654770284, "php": 60355493.93804816, "pkr": 202018919.4568825, "pln": 4731877.931482168, "rub": 86363317.63628086, "sar": 4444937.941648419, "sek": 10428212.998636255, "sgd": 1613647.871729915, "thb": 40207290.990656, "try": 10577207.496665383, "twd": 32972584.442956604, "uah": 31515413.204101473, "usd": 1185007.102583434, "vef": 118654.76118167948, "vnd": 27098238907.620075, "xag": 54946.705584364485, "xau": 685.3251576370768, "xdr": 837124.5674780158, "xlm": 4366681.169796073, "xrp": 1276467.8370002944, "yfi": 41.33029510585247, "zar": 17991873.962991614, "bits": 28508861.723119423, "link": 51737.97317387126, "sats": 2850886172.3119426}}, "community_data": {"facebook_likes": null, "twitter_followers": 36752, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 171423, "bing_matches": null}}, "WNXM_20211010": {"id": "wrapped-nxm", "symbol": "wnxm", "name": "Wrapped NXM", "localization": {"en": "Wrapped NXM", "de": "Wrapped NXM", "es": "Wrapped NXM", "fr": "Wrapped NXM", "it": "Wrapped NXM", "pl": "Wrapped NXM", "ro": "Wrapped NXM", "hu": "Wrapped NXM", "nl": "Wrapped NXM", "pt": "Wrapped NXM", "sv": "Wrapped NXM", "vi": "Wrapped NXM", "tr": "Wrapped NXM", "ru": "Wrapped NXM", "ja": "Wrapped NXM", "zh": "Wrapped NXM", "zh-tw": "Wrapped NXM", "ko": "Wrapped NXM", "ar": "Wrapped NXM", "th": "Wrapped NXM", "id": "Wrapped NXM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11890/thumb/wrapped-nexus-mutual.jpg?1595811559", "small": "https://assets.coingecko.com/coins/images/11890/small/wrapped-nexus-mutual.jpg?1595811559"}, "market_data": {"current_price": {"aed": 221.20607864982398, "ars": 5956.310306538949, "aud": 82.71000789006655, "bch": 0.09733774339686949, "bdt": 5163.210755773129, "bhd": 22.700180798916318, "bmd": 60.22162655173266, "bnb": 0.13840928595222024, "brl": 330.8215435209148, "btc": 0.0010855810913307758, "cad": 75.80547796265732, "chf": 55.87073447662312, "clp": 49038.8719986602, "cny": 388.23075989105536, "czk": 1323.9180193894447, "dkk": 387.76103120395175, "dot": 1.8546281642611686, "eos": 12.6139382539264, "eth": 0.01676427476207242, "eur": 52.117361380159814, "gbp": 44.314505449478354, "hkd": 468.9367727143594, "huf": 18714.472667216476, "idr": 857101.2888162078, "ils": 195.02773758778582, "inr": 4502.620523428301, "jpy": 6709.359163458405, "krw": 71753.46582012401, "kwd": 18.160313259687396, "lkr": 12009.909554096575, "ltc": 0.336367305338576, "mmk": 118176.07561747647, "mxn": 1238.2171044166837, "myr": 251.99739630572515, "ngn": 24711.34223923794, "nok": 516.716791885384, "nzd": 87.07896645314169, "php": 3055.645150570034, "pkr": 10288.929995941831, "pln": 237.1015769781547, "rub": 4361.683790587651, "sar": 225.82784760116377, "sek": 530.2054124653209, "sgd": 81.81577695739986, "thb": 2036.093193714084, "try": 534.7021010983117, "twd": 1684.157887702504, "uah": 1582.8145858978148, "usd": 60.22162655173266, "vef": 6.029991466624989, "vnd": 1368679.5505750312, "xag": 2.657561711023728, "xau": 0.03414385560603592, "xdr": 42.671840142026774, "xlm": 169.07680580360326, "xrp": 55.8464996541411, "yfi": 0.0018712480448185697, "zar": 901.8941346453868, "bits": 1085.5810913307757, "link": 2.2398732063752407, "sats": 108558.10913307758}, "market_cap": {"aed": 490601463.0101224, "ars": 13210191005.447727, "aud": 183438227.03299636, "bch": 215772.88157233346, "bdt": 11451216739.038284, "bhd": 50345550.98358026, "bmd": 133562415.06319329, "bnb": 306822.0882426622, "brl": 733711904.4705602, "btc": 2406.2870591109863, "cad": 168125029.02117097, "chf": 123912797.69970763, "clp": 108760765046.57948, "cny": 861036821.1878881, "czk": 2936248954.7410955, "dkk": 859995034.3503958, "dot": 4122148.354840696, "eos": 27942655.61128601, "eth": 37158.90704066384, "eur": 115588386.61847898, "gbp": 98282838.06115614, "hkd": 1040030491.7348251, "huf": 41505856105.03798, "idr": 1900920394266.1448, "ils": 432541881.18215084, "inr": 9986128001.79971, "jpy": 14880338919.907312, "krw": 159138281923.64417, "kwd": 40276814.761626504, "lkr": 26636154095.866234, "ltc": 745571.9474467076, "mmk": 262096575033.5846, "mxn": 2746177350.36397, "myr": 558891925.8319327, "ngn": 54806001397.030716, "nok": 1145999312.5332086, "nzd": 193127913.1210009, "php": 6776956539.619179, "pkr": 22819282994.51725, "pln": 525855262.4660506, "rub": 9673551748.264921, "sar": 500851844.1165604, "sek": 1175915022.9463086, "sgd": 181454958.73172295, "thb": 4515745253.286569, "try": 1185887994.9166608, "twd": 3735206232.532423, "uah": 3510442191.529895, "usd": 133562415.06319329, "vef": 13373604.620277537, "vnd": 3035523227944.8896, "xag": 5894067.9723900575, "xau": 75725.88246837861, "xdr": 94639656.06547737, "xlm": 373138945.5959054, "xrp": 123783570.5748572, "yfi": 4147.386741740502, "zar": 2000264118.5901477, "bits": 2406287059.110986, "link": 4967993.354165282, "sats": 240628705911.09863}, "total_volume": {"aed": 22933149.598502625, "ars": 617509953.38242, "aud": 8574814.018736452, "bch": 10091.318667760514, "bdt": 535286757.91133, "bhd": 2353401.160366435, "bmd": 6243370.79345058, "bnb": 14349.3383180893, "brl": 34297339.36011221, "btc": 112.54570272548987, "cad": 7858999.070525757, "chf": 5792299.740365366, "clp": 5084018461.659895, "cny": 40249138.49413789, "czk": 137254862.8868142, "dkk": 40200440.20194897, "dot": 192275.30002883816, "eos": 1307727.7747936756, "eth": 1738.006583614807, "eur": 5403175.412292764, "gbp": 4594228.101956164, "hkd": 48616191.862980634, "huf": 1940189907.7727056, "idr": 88858462649.24573, "ils": 20219156.31458966, "inr": 466801232.04268724, "jpy": 695580963.8904716, "krw": 7438913866.688437, "kwd": 1882738.4097313697, "lkr": 1245106165.9322166, "ltc": 34872.28642385642, "mmk": 12251695964.421467, "mxn": 128369971.85762078, "myr": 26125385.085193932, "ngn": 2561904771.3845067, "nok": 53569700.98061673, "nzd": 9027758.083059708, "php": 316788615.3295698, "pkr": 1066686649.1448597, "pln": 24581087.319433995, "rub": 452189865.1314037, "sar": 23412303.333416834, "sek": 54968109.9010462, "sgd": 8482106.205824502, "thb": 211088366.52656436, "try": 55434296.1548223, "twd": 174602095.12289748, "uah": 164095507.2602181, "usd": 6243370.79345058, "vef": 625148.7175482063, "vnd": 141895435592.6037, "xag": 275518.01767002774, "xau": 3539.8039387626804, "xdr": 4423927.6768232165, "xlm": 17528739.285999253, "xrp": 5789787.237938373, "yfi": 193.99833679825483, "zar": 93502281.8454143, "bits": 112545702.72548987, "link": 232214.89950462538, "sats": 11254570272.548988}}, "community_data": {"facebook_likes": null, "twitter_followers": 34339, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 130804, "bing_matches": null}}, "EVX_20211024": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 2.466870410634623, "ars": 66.68904640976429, "aud": 0.893185461943064, "bch": 0.0010391160227836752, "bdt": 57.4677535868696, "bhd": 0.25316986260159113, "bmd": 0.6715861947714858, "bnb": 0.0013328514829629612, "brl": 3.7596738355697243, "btc": 1.0132113519468565e-05, "cad": 0.827530523956008, "chf": 0.6170957056863118, "clp": 546.5838563386687, "cny": 4.294054970749397, "czk": 14.708409251690268, "dkk": 4.28686899846535, "dot": 0.015054267399581002, "eos": 0.13852033232489672, "eth": 0.00016116555960212758, "eur": 0.5761638702873791, "gbp": 0.48571262681697036, "hkd": 5.220877498843785, "huf": 208.73234726595177, "idr": 9482.696332244153, "ils": 2.1574975141511836, "inr": 50.240923341897265, "jpy": 76.78782233778212, "krw": 789.4483872758337, "kwd": 0.20250875799900367, "lkr": 134.6455532678181, "ltc": 0.003232005356586173, "mmk": 1262.5100232521079, "mxn": 13.575913451447121, "myr": 2.794805949541535, "ngn": 275.96471899583713, "nok": 5.578631464798562, "nzd": 0.932569962749243, "php": 34.06956564599888, "pkr": 116.42565217249121, "pln": 2.6401738997815998, "rub": 47.56885312738119, "sar": 2.5192695803092806, "sek": 5.76673402733352, "sgd": 0.9019402595781046, "thb": 22.404115457576715, "try": 6.193676817832236, "twd": 18.684871110932306, "uah": 17.58888609416787, "usd": 0.6715861947714858, "vef": 0.06724592568246879, "vnd": 15252.989750291863, "xag": 0.02760548337746238, "xau": 0.0003767329918190122, "xdr": 0.4759907450614588, "xlm": 1.7153463371666287, "xrp": 0.5875208813943624, "yfi": 1.8605037934289094e-05, "zar": 9.676650425294167, "bits": 10.132113519468565, "link": 0.024347903643950806, "sats": 1013.2113519468566}, "market_cap": {"aed": 53793465.066564426, "ars": 1454199977.1698203, "aud": 19474019.318086162, "bch": 22648.50764170427, "bdt": 1253162542.1839323, "bhd": 5521123.304900315, "bmd": 14644850.557161149, "bnb": 29091.793407501413, "brl": 81983337.90404391, "btc": 220.8199932958696, "cad": 18045868.136602364, "chf": 13454648.907530116, "clp": 11919004522.956745, "cny": 93637709.97743277, "czk": 320798380.42472756, "dkk": 93500048.38219531, "dot": 328106.2372448628, "eos": 3020273.595870236, "eth": 3518.516452682019, "eur": 12566380.14183607, "gbp": 10593352.65052253, "hkd": 113842478.0486202, "huf": 4552732298.200716, "idr": 206783093139.53204, "ils": 47047168.208902575, "inr": 1095541128.6458495, "jpy": 1674843689.119178, "krw": 17199450355.75647, "kwd": 4416418.292821981, "lkr": 2936129451.654997, "ltc": 70647.49310300623, "mmk": 27530748489.754677, "mxn": 296029002.81792915, "myr": 60944545.593626045, "ngn": 6017786101.33308, "nok": 121666489.45878342, "nzd": 20340071.84548501, "php": 742933224.8302333, "pkr": 2538819723.157522, "pln": 57585617.31468615, "rub": 1037589126.4599236, "sar": 54935865.92397677, "sek": 125764118.64467722, "sgd": 19669791.6803343, "thb": 488576378.59031487, "try": 135067992.20364156, "twd": 407449032.2013365, "uah": 383549588.00733685, "usd": 14644850.557161149, "vef": 1466388.8862885472, "vnd": 332648829561.1236, "xag": 602309.752502285, "xau": 8217.225647623116, "xdr": 10379625.701491306, "xlm": 37421107.551056966, "xrp": 12813637.69281459, "yfi": 405.5411828697688, "zar": 211064075.85440138, "bits": 220819993.2958696, "link": 531302.9742971315, "sats": 22081999329.58696}, "total_volume": {"aed": 1955615.47870821, "ars": 52867848.61377216, "aud": 708074.2090070467, "bch": 823.7608954118879, "bdt": 45557653.9231988, "bhd": 200700.81505365053, "bmd": 532401.0341686293, "bnb": 1056.6201530752496, "brl": 2980487.469482815, "btc": 8.032249260148204, "cad": 656026.1515056867, "chf": 489203.6114592892, "clp": 433305229.678822, "cny": 3404118.9723707945, "czk": 11660115.049327116, "dkk": 3398422.2813051958, "dot": 11934.29465135918, "eos": 109812.21585153468, "eth": 127.76425613354745, "eur": 456754.8332287795, "gbp": 385049.46474384546, "hkd": 4138859.0195752103, "huf": 165472903.42478094, "idr": 7517422742.305912, "ils": 1710359.6183080843, "inr": 39828572.64347777, "jpy": 60873669.44477272, "krw": 625836476.5097992, "kwd": 160539.14304113964, "lkr": 106740478.53289379, "ltc": 2562.1774355717985, "mmk": 1000856847.952916, "mxn": 10762327.185408564, "myr": 2215586.9036927484, "ngn": 218771474.05841368, "nok": 4422469.050476844, "nzd": 739296.3352548316, "php": 27008702.86617145, "pkr": 92296622.68665682, "pln": 2093002.0979764592, "rub": 37710284.69078451, "sar": 1997155.0045971507, "sek": 4571587.658934031, "sgd": 715014.5888884686, "thb": 17760898.49986543, "try": 4910047.2415788155, "twd": 14812461.572639626, "uah": 13943617.69094362, "usd": 532401.0341686293, "vef": 53309.31555130478, "vnd": 12091832113.943388, "xag": 21884.29126939804, "xau": 298.6556841272339, "xdr": 377342.4273732207, "xlm": 1359843.5628588628, "xrp": 465758.1220180613, "yfi": 14.749173693679765, "zar": 7671180.160973819, "bits": 8032249.260148204, "link": 19301.83970545775, "sats": 803224926.0148203}}, "community_data": {"facebook_likes": null, "twitter_followers": 18461, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2793, "reddit_accounts_active_48h": "7.69230769230769"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1911649, "bing_matches": null}}, "EZ_20211031": {"id": "easyfi", "symbol": "ez", "name": "EasyFi V2", "localization": {"en": "EasyFi V2", "de": "EasyFi V2", "es": "EasyFi V2", "fr": "EasyFi V2", "it": "EasyFi V2", "pl": "EasyFi V2", "ro": "EasyFi V2", "hu": "EasyFi V2", "nl": "EasyFi V2", "pt": "EasyFi V2", "sv": "EasyFi V2", "vi": "EasyFi V2", "tr": "EasyFi V2", "ru": "EasyFi V2", "ja": "EasyFi V2", "zh": "EasyFi V2", "zh-tw": "EasyFi V2", "ko": "EasyFi V2", "ar": "EasyFi V2", "th": "EasyFi V2", "id": "EasyFi V2"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12742/thumb/Logo_Icon.png?1624471467", "small": "https://assets.coingecko.com/coins/images/12742/small/Logo_Icon.png?1624471467"}, "market_data": {"current_price": {"aed": 17.470524275245033, "ars": 473.9690644101282, "aud": 6.338239810315222, "bch": 0.008627561507936712, "bdt": 407.1789675867711, "bhd": 1.7930878202229934, "bmd": 4.756213730601397, "bnb": 0.010534904244493947, "brl": 26.332301698101592, "btc": 8.125835316493309e-05, "cad": 5.881533899261688, "chf": 4.366965198888979, "clp": 3830.416727939837, "cny": 30.405047515615557, "czk": 105.4752177977223, "dkk": 30.50447616365373, "dot": 0.11735818872810659, "eos": 1.1413008886268654, "eth": 0.0012041200068046317, "eur": 4.1002462453043105, "gbp": 3.463346420853206, "hkd": 36.996446314169454, "huf": 1489.6176031419718, "idr": 67630.26771022697, "ils": 15.174224286110709, "inr": 356.75478818079534, "jpy": 541.10835873574, "krw": 5574.6219194577225, "kwd": 1.434512110859224, "lkr": 958.2078216067925, "ltc": 0.02629470609130584, "mmk": 8885.717272948696, "mxn": 96.59251779066477, "myr": 19.726396447669305, "ngn": 1953.2181691815288, "nok": 40.076261172214465, "nzd": 6.639279602179906, "php": 241.18733193082755, "pkr": 828.0568104977013, "pln": 18.950800674620112, "rub": 336.0093776975582, "sar": 17.839192670145167, "sek": 40.84885101818591, "sgd": 6.414776801668059, "thb": 158.44478010590402, "try": 45.2277067514014, "twd": 132.095275182739, "uah": 125.45031666136447, "usd": 4.756213730601397, "vef": 0.47623968084511753, "vnd": 108206.57645698477, "xag": 0.19784170175854932, "xau": 0.0026475939352765716, "xdr": 3.3678368929290037, "xlm": 14.290162025562669, "xrp": 4.7665069638954645, "yfi": 0.00013919776368603897, "zar": 71.69535602363464, "bits": 81.25835316493308, "link": 0.16390965298355925, "sats": 8125.835316493309}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 3521441.4591864217, "ars": 95535445.15836893, "aud": 1277565.5781513092, "bch": 1739.0120815537543, "bdt": 82072917.51401486, "bhd": 361423.2572884192, "bmd": 958684.9230062141, "bnb": 2123.4650998817647, "brl": 5307663.207731606, "btc": 16.37881778657694, "cad": 1185509.7757894844, "chf": 880226.1489073854, "clp": 772076902.7430549, "cny": 6128585.107301826, "czk": 21260083.49937783, "dkk": 6148626.41561726, "dot": 23655.271293018068, "eos": 230046.0022434318, "eth": 242.70812066045994, "eur": 826465.0157950425, "gbp": 698088.4764402029, "hkd": 7457178.607849978, "huf": 300254365.7760078, "idr": 13631876459.948408, "ils": 3058588.3783590277, "inr": 71909181.5489036, "jpy": 109068358.70199601, "krw": 1123647146.3128133, "kwd": 289147.04225805774, "lkr": 193140898.14145204, "ltc": 5300.085259504751, "mmk": 1791047177.8976755, "mxn": 19469644.495856334, "myr": 3976145.718168275, "ngn": 393699887.3890729, "nok": 8077960.649468813, "nzd": 1338244.5816680645, "php": 48614858.75928935, "pkr": 166907045.09538147, "pln": 3819812.967773647, "rub": 67727638.54466613, "sar": 3595752.0036234083, "sek": 8233687.5109921, "sgd": 1292992.735932325, "thb": 31936878.874734323, "try": 9116310.372207003, "twd": 26625748.103636235, "uah": 25286358.852170046, "usd": 958684.9230062141, "vef": 95993.12134061214, "vnd": 21810629062.355785, "xag": 39877.90863928034, "xau": 533.6615492406387, "xdr": 678837.124501316, "xlm": 2880392.6100038, "xrp": 960759.6757669064, "yfi": 28.057359261084724, "zar": 14451254.876792582, "bits": 16378817.78657694, "link": 33038.40448537823, "sats": 1637881778.6576939}}, "community_data": {"facebook_likes": null, "twitter_followers": 37084, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 212917, "bing_matches": null}}, "MTH_20211107": {"id": "monetha", "symbol": "mth", "name": "Monetha", "localization": {"en": "Monetha", "de": "Monetha", "es": "Monetha", "fr": "Monetha", "it": "Monetha", "pl": "Monetha", "ro": "Monetha", "hu": "Monetha", "nl": "Monetha", "pt": "Monetha", "sv": "Monetha", "vi": "Monetha", "tr": "Monetha", "ru": "Monetha", "ja": "Monetha", "zh": "Monetha", "zh-tw": "Monetha", "ko": "Monetha", "ar": "Monetha", "th": "Monetha", "id": "Monetha"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/902/thumb/mth_logo_coingecko.png?1622448039", "small": "https://assets.coingecko.com/coins/images/902/small/mth_logo_coingecko.png?1622448039"}, "market_data": {"current_price": {"aed": 0.14304032148923895, "ars": 3.8880928748196375, "aud": 0.052162091754662895, "bch": 6.364080221782111e-05, "bdt": 3.339999801336636, "bhd": 0.014683245546142174, "bmd": 0.03894160990124108, "bnb": 6.845775153960919e-05, "brl": 0.21626612474753268, "btc": 6.181625365963346e-07, "cad": 0.04821263367847904, "chf": 0.035497107680646574, "clp": 31.719628721342712, "cny": 0.2494950004762612, "czk": 0.854713780136772, "dkk": 0.24940189108698746, "dot": 0.0007291902398942557, "eos": 0.008273049133813576, "eth": 8.463818456287082e-06, "eur": 0.03353184145376068, "gbp": 0.028437811579359526, "hkd": 0.3031010471260627, "huf": 12.032478010382418, "idr": 558.2532899807263, "ils": 0.12140689423275274, "inr": 2.8986479392063043, "jpy": 4.442528395955798, "krw": 45.92546605721408, "kwd": 0.011746970276368805, "lkr": 7.846227063806259, "ltc": 0.0001879267747622306, "mmk": 70.10978944433474, "mxn": 0.8000906175779577, "myr": 0.1617439767248047, "ngn": 16.00185756276828, "nok": 0.33078709092627845, "nzd": 0.05429289876523904, "php": 1.9708059434856513, "pkr": 6.6030725162187025, "pln": 0.15371464512087793, "rub": 2.79325441908909, "sar": 0.14608450396004866, "sek": 0.3321619634054515, "sgd": 0.05247148284532829, "thb": 1.2963661936123154, "try": 0.3753367599526173, "twd": 1.0819926311059813, "uah": 1.0216226994076043, "usd": 0.03894160990124108, "vef": 0.00389922339941127, "vnd": 883.8350965665439, "xag": 0.0016474505083345409, "xau": 2.192412637439875e-05, "xdr": 0.02761797386610868, "xlm": 0.10090522746895189, "xrp": 0.032245580886393434, "yfi": 1.124127047677916e-06, "zar": 0.5939370447976301, "bits": 0.6181625365963347, "link": 0.0012215961545595344, "sats": 61.81625365963347}, "market_cap": {"aed": 49712791.18762393, "ars": 1351282961.2770288, "aud": 18128616.800573386, "bch": 22117.972601910198, "bdt": 1160796556.9557598, "bhd": 5103072.42176388, "bmd": 13533918.97735594, "bnb": 23792.073955306783, "brl": 75161972.43264402, "btc": 214.83861880258286, "cad": 16756006.737889951, "chf": 12336803.242051864, "clp": 11023963472.367458, "cny": 86710465.49602167, "czk": 297050560.53247625, "dkk": 86678105.89574687, "dot": 253425.61981478523, "eos": 2875247.760857192, "eth": 2941.548475189992, "eur": 11653786.953021657, "gbp": 9883387.94375577, "hkd": 105340920.01227562, "huf": 4181814334.3925467, "idr": 194017525587.73254, "ils": 42194225.50853838, "inr": 1007407409.5187218, "jpy": 1543973644.5912223, "krw": 15961115582.841805, "kwd": 4082587.863033294, "lkr": 2726908354.0407763, "ltc": 65312.80421528719, "mmk": 24366229651.66293, "mxn": 278066613.58645195, "myr": 56213132.47244785, "ngn": 5561347984.608983, "nok": 114963035.65017341, "nzd": 18869165.77917636, "php": 684941583.7421827, "pkr": 2294857574.269461, "pln": 53422587.25242588, "rub": 970778534.5024568, "sar": 50770778.23584077, "sek": 115440864.1935879, "sgd": 18236143.78684849, "thb": 450544162.75617903, "try": 130446001.36729643, "twd": 376039938.78583395, "uah": 355058737.2806464, "usd": 13533918.97735594, "vef": 1355151.3072026505, "vnd": 307171496417.6133, "xag": 572561.3747235689, "xau": 7619.596384251402, "xdr": 9598458.347525489, "xlm": 35068996.28494667, "xrp": 11206754.93902263, "yfi": 390.68349824546885, "zar": 206419196.90344307, "bits": 214838618.8025829, "link": 424558.2917806232, "sats": 21483861880.25829}, "total_volume": {"aed": 3846362.0762212495, "ars": 104551030.27475639, "aud": 1402641.5031275107, "bch": 1711.3046559346537, "bdt": 89812777.52101685, "bhd": 394833.2766350406, "bmd": 1047142.0222751943, "bnb": 1840.8326869227494, "brl": 5815407.934907525, "btc": 16.62242445312, "cad": 1296440.359228361, "chf": 954519.1689788857, "clp": 852942552.948397, "cny": 6708934.222514934, "czk": 22983300.342967357, "dkk": 6706430.505939678, "dot": 19607.965473504213, "eos": 222462.74415294518, "eth": 227.59254167876884, "eur": 901673.0525407245, "gbp": 764694.3103228617, "hkd": 8150403.751828425, "huf": 323553992.4704575, "idr": 15011461531.62938, "ils": 3264638.032876592, "inr": 77944801.78457074, "jpy": 119459831.79313472, "krw": 1234938296.6714299, "kwd": 315876.6738714467, "lkr": 210985475.32218477, "ltc": 5053.361262239584, "mmk": 1885256076.6289477, "mxn": 21514480.511174, "myr": 4349304.389520016, "ngn": 430290825.9553687, "nok": 8894882.985411257, "nzd": 1459939.0203023655, "php": 52995079.72082494, "pkr": 177556981.47555643, "pln": 4133395.2230891217, "rub": 75110764.25838403, "sar": 3928220.3095285674, "sek": 8931853.381649699, "sgd": 1410961.0464944881, "thb": 34859357.921541214, "try": 10092826.02459835, "twd": 29094841.088916216, "uah": 27471490.3203277, "usd": 1047142.0222751943, "vef": 104850.33069041521, "vnd": 23766374136.13931, "xag": 44300.03436608685, "xau": 589.540958540935, "xdr": 742648.8293279015, "xlm": 2713347.0911434838, "xrp": 867085.4354621905, "yfi": 30.227837857370698, "zar": 15970999.652321044, "bits": 16622424.45312, "link": 32848.787477795144, "sats": 1662242445.312}}, "community_data": {"facebook_likes": null, "twitter_followers": 22226, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2079, "reddit_accounts_active_48h": "10.9230769230769"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1290180, "bing_matches": null}}, "PHB_20211128": {"id": "phoenix-global", "symbol": "phb", "name": "Phoenix Global", "localization": {"en": "Phoenix Global", "de": "Phoenix Global", "es": "Phoenix Global", "fr": "Phoenix Global", "it": "Phoenix Global", "pl": "Phoenix Global", "ro": "Phoenix Global", "hu": "Phoenix Global", "nl": "Phoenix Global", "pt": "Phoenix Global", "sv": "Phoenix Global", "vi": "Phoenix Global", "tr": "Phoenix Global", "ru": "Phoenix Global", "ja": "Phoenix Global", "zh": "Phoenix Global", "zh-tw": "Phoenix Global", "ko": "Phoenix Global", "ar": "Phoenix Global", "th": "Phoenix Global", "id": "Phoenix Global"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/20052/thumb/tTcJ-ORs_400x400.jpg?1636429516", "small": "https://assets.coingecko.com/coins/images/20052/small/tTcJ-ORs_400x400.jpg?1636429516"}, "market_data": {"current_price": {"aed": 2.405365118597973, "ars": 65.86519800712675, "aud": 0.9093060741047982, "bch": 0.001065003840903102, "bdt": 56.195200642407876, "bhd": 0.24687620849564954, "bmd": 0.6548596876202587, "bnb": 0.0011073343929265164, "brl": 3.671601810580508, "btc": 1.1448806727709428e-05, "cad": 0.8290425416319336, "chf": 0.6116605586070131, "clp": 533.4181411984205, "cny": 4.186190553112505, "czk": 14.910368600628471, "dkk": 4.3465722392075845, "dot": 0.017080920929807192, "eos": 0.15887999697534225, "eth": 0.00015339091288635334, "eur": 0.5844616163413938, "gbp": 0.4912567467217778, "hkd": 5.1067137188065495, "huf": 215.47941851961735, "idr": 9366.752798891997, "ils": 2.063698625178984, "inr": 48.866902937456516, "jpy": 75.58259542575509, "krw": 778.5569414568449, "kwd": 0.198366167415803, "lkr": 132.80001959820407, "ltc": 0.003086084128993213, "mmk": 1168.6755542711762, "mxn": 14.025329661967781, "myr": 2.757286714725105, "ngn": 268.88662935084636, "nok": 5.869578759846331, "nzd": 0.9525595564721172, "php": 33.00862231955891, "pkr": 114.69315774867982, "pln": 2.7357261143698897, "rub": 49.09561661251602, "sar": 2.456527341412682, "sek": 5.975051770853824, "sgd": 0.8959659274082861, "thb": 21.860409527115117, "try": 7.806516850152352, "twd": 18.19337732743486, "uah": 17.640720936401774, "usd": 0.6548596876202587, "vef": 0.06557110052141657, "vnd": 14859.500655385877, "xag": 0.02777774000052303, "xau": 0.00036583736448905806, "xdr": 0.4673949694242701, "xlm": 1.9920332635786206, "xrp": 0.6300474537302314, "yfi": 2.1013973562677802e-05, "zar": 10.398778923597142, "bits": 11.448806727709428, "link": 0.02557432848772947, "sats": 1144.880672770943}, "market_cap": {"aed": 89480812.87273097, "ars": 2449977884.0653005, "aud": 33836517.36257032, "bch": 39717.62445778029, "bdt": 2090490210.4674227, "bhd": 9184676.439765548, "bmd": 24361115.371955846, "bnb": 41227.49985395446, "brl": 136583029.44440755, "btc": 426.11520745312947, "cad": 30849698.451276302, "chf": 22756935.924712572, "clp": 19843427721.82418, "cny": 155723557.79215342, "czk": 554736702.5809567, "dkk": 161688060.1964769, "dot": 634338.7080246239, "eos": 5909019.463610659, "eth": 5709.924326434202, "eur": 21742271.108355243, "gbp": 18276195.97434874, "hkd": 189974067.94935474, "huf": 8015997363.276123, "idr": 348447995667.0019, "ils": 76770644.53856666, "inr": 1817864164.4230583, "jpy": 2812344603.00007, "krw": 28961705286.281883, "kwd": 7379980.651895688, "lkr": 4940228662.702268, "ltc": 114695.74246227613, "mmk": 43475328453.09902, "mxn": 521739571.80964124, "myr": 102572476.27361995, "ngn": 10002720160.39981, "nok": 218505148.52287444, "nzd": 35433071.780702166, "php": 1228081025.3234687, "pkr": 4266644139.3621583, "pln": 101776890.9678029, "rub": 1826645152.8199933, "sar": 91383415.98328066, "sek": 222287869.4344856, "sgd": 33329659.996141396, "thb": 813174031.1158876, "try": 290294359.1068377, "twd": 676800507.2636793, "uah": 656243842.9182453, "usd": 24361115.371955846, "vef": 2439278.4821939375, "vnd": 552781025735.4282, "xag": 1034816.5746041682, "xau": 13618.350715230781, "xdr": 17387331.957772184, "xlm": 74125441.75204243, "xrp": 23614649.000153195, "yfi": 781.7358615140604, "zar": 386769223.84174156, "bits": 426115207.4531295, "link": 952590.8780487557, "sats": 42611520745.31295}, "total_volume": {"aed": 4451063.641617591, "ars": 121881782.44987057, "aud": 1682646.5031259013, "bch": 1970.761044872033, "bdt": 103987711.66957836, "bhd": 456837.80275981064, "bmd": 1211800.2890249623, "bnb": 2049.092596113137, "brl": 6794200.680476263, "btc": 21.185709799981318, "cad": 1534120.9889012678, "chf": 1131861.4593588526, "clp": 987075964.3556464, "cny": 7746433.3475920735, "czk": 27591237.2089513, "dkk": 8043215.356377181, "dot": 31607.786081276798, "eos": 294003.17334337125, "eth": 283.84577045040794, "eur": 1081530.546154491, "gbp": 909057.4346181464, "hkd": 9449836.777868683, "huf": 398738884.9509099, "idr": 17332924844.05411, "ils": 3818818.958821716, "inr": 90426893.3068047, "jpy": 139863565.75868323, "krw": 1440698739.7686453, "kwd": 367071.2727497074, "lkr": 245742874.655224, "ltc": 5710.715913907225, "mmk": 2162602770.050871, "mxn": 25953496.38913573, "myr": 5102285.1169396145, "ngn": 497567496.24699825, "nok": 10861498.076762246, "nzd": 1762685.9122160017, "php": 61081570.3322885, "pkr": 212236612.41708747, "pln": 5062387.804223746, "rub": 90850121.8285484, "sar": 4545737.962798246, "sek": 11056673.054913182, "sgd": 1657960.919438174, "thb": 40452101.54777992, "try": 14445750.065437693, "twd": 33666356.80972053, "uah": 32643680.98000335, "usd": 1211800.2890249623, "vef": 121337.56294006959, "vnd": 27497107440.525505, "xag": 51401.96288981758, "xau": 676.9722314637962, "xdr": 864901.8556866534, "xlm": 3686204.129199224, "xrp": 1165885.9156596474, "yfi": 38.88579449645772, "zar": 19242661.509542998, "bits": 21185709.79998132, "link": 47324.60897947502, "sats": 2118570979.9981318}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.091, "reddit_subscribers": 403, "reddit_accounts_active_48h": "9.16666666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 206337, "bing_matches": null}}, "NEBL_20220102": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 4.119448237933421, "ars": 115.11028380484157, "aud": 1.545707024379254, "bch": 0.0026033734868048664, "bdt": 96.26507158713497, "bhd": 0.42287817438561714, "bmd": 1.1215648464117298, "bnb": 0.0021839747618618024, "brl": 6.396620788540028, "btc": 2.4101125215487794e-05, "cad": 1.433903832664702, "chf": 1.025481507584484, "clp": 952.9600030506555, "cny": 7.14246141140382, "czk": 24.637077390107684, "dkk": 7.345688961573625, "dot": 0.0419167234874702, "eos": 0.3692566079907445, "eth": 0.00030830192359762424, "eur": 0.9878014150044361, "gbp": 0.8311726410733454, "hkd": 8.74473568037671, "huf": 365.71986511793807, "idr": 15948.315646520894, "ils": 3.498833694866035, "inr": 83.63572203793125, "jpy": 128.94294569741731, "krw": 1328.6862196193174, "kwd": 0.3392408406590035, "lkr": 227.49491941020145, "ltc": 0.007711089030141338, "mmk": 1994.9998162409377, "mxn": 23.077654749221686, "myr": 4.6903841876938595, "ngn": 463.0213725365106, "nok": 9.848887110983043, "nzd": 1.6405678575239127, "php": 57.23957112706305, "pkr": 200.14431793660154, "pln": 4.54250810582416, "rub": 83.00701428293215, "sar": 4.210226575037135, "sek": 10.129234581556965, "sgd": 1.5159743403008799, "thb": 37.54542628893975, "try": 14.176467502159635, "twd": 30.993995904649697, "uah": 30.560145461371526, "usd": 1.1215648464117298, "vef": 0.11230228807120664, "vnd": 25597.737327255054, "xag": 0.04914405550116126, "xau": 0.0006213581405605627, "xdr": 0.8009756291485546, "xlm": 4.185444016508546, "xrp": 1.370951237186529, "yfi": 3.8957078479928624e-05, "zar": 17.870789949755235, "bits": 24.101125215487794, "link": 0.05682630923175973, "sats": 2410.1125215487796}, "market_cap": {"aed": 77463253.51576687, "ars": 2164700076.181696, "aud": 29069702.199203346, "bch": 49151.850455438704, "bdt": 1810195252.9469306, "bhd": 7951919.125254265, "bmd": 21090218.158815496, "bnb": 41183.27412090954, "brl": 120302843.51173374, "btc": 454.7336793309998, "cad": 26967977.59880475, "chf": 19285907.814892527, "clp": 17919725663.000797, "cny": 134308836.30078492, "czk": 463417472.6254698, "dkk": 138155080.47662604, "dot": 791344.9981542907, "eos": 6969132.9660267215, "eth": 5818.8941957591, "eur": 18577128.853229206, "gbp": 15630382.481861342, "hkd": 164440557.5255933, "huf": 6875409263.83467, "idr": 299896575152.909, "ils": 65793044.5682411, "inr": 1572709441.8956969, "jpy": 2424478753.992034, "krw": 24984986223.521637, "kwd": 6379179.376715081, "lkr": 4277877909.3634057, "ltc": 145527.42423918814, "mmk": 37514532918.832565, "mxn": 433922802.5303658, "myr": 88199292.34016655, "ngn": 8706783018.593597, "nok": 185269130.4379308, "nzd": 30856212.399000324, "php": 1076348858.6941946, "pkr": 3763569571.598972, "pln": 85440712.89521149, "rub": 1560887045.9339345, "sar": 79170274.68332326, "sek": 190510049.65039632, "sgd": 28509166.380978353, "thb": 706097593.5070376, "try": 266593011.65832356, "twd": 582836614.906129, "uah": 574661498.0021029, "usd": 21090218.158815496, "vef": 2111763.544242198, "vnd": 481346991510.1819, "xag": 923773.9109873675, "xau": 11683.76995780221, "xdr": 15061769.110081544, "xlm": 79007859.88199799, "xrp": 25901184.44360497, "yfi": 734.5582415030883, "zar": 336028336.9025916, "bits": 454733679.3309998, "link": 1072701.3357291087, "sats": 45473367933.099976}, "total_volume": {"aed": 1266283.5362890924, "ars": 35383927.36614638, "aud": 475137.26204258867, "bch": 800.2549843438065, "bdt": 29591068.567870192, "bhd": 129989.17310079558, "bmd": 344759.54493465147, "bnb": 671.335364564226, "brl": 1966267.112625801, "btc": 7.4084819868314, "cad": 440769.9068057784, "chf": 315224.339479645, "clp": 292931842.54462564, "cny": 2195532.2100073416, "czk": 7573229.150956459, "dkk": 2258002.6395495003, "dot": 12884.84616910574, "eos": 113506.35724924291, "eth": 94.76940296591218, "eur": 303641.79780802067, "gbp": 255495.43783880677, "hkd": 2688057.7644582586, "huf": 112419192.41229154, "idr": 4902377301.107269, "ils": 1075511.8763781395, "inr": 25708913.365400765, "jpy": 39635970.60250207, "krw": 408426902.7354453, "kwd": 104279.76431592934, "lkr": 69930013.53576127, "ltc": 2370.3235292078493, "mmk": 613246065.0781196, "mxn": 7093875.824438873, "myr": 1441784.4169167143, "ngn": 142328852.5861162, "nok": 3027464.572698252, "nzd": 504296.679593617, "php": 17594959.896573383, "pkr": 61522670.03895398, "pln": 1396328.5604361685, "rub": 25515653.920613565, "sar": 1294188.0290965566, "sek": 3113641.013309662, "sgd": 465997.68650637136, "thb": 11541146.393064227, "try": 4357726.172019505, "twd": 9527292.120451154, "uah": 9393930.164722228, "usd": 344759.54493465147, "vef": 34520.7732343067, "vnd": 7868527888.098132, "xag": 15106.466884219575, "xau": 191.00023548924634, "xdr": 246213.13185098578, "xlm": 1286570.080274455, "xrp": 421418.81155796716, "yfi": 11.975076333475952, "zar": 5493329.637079755, "bits": 7408481.9868314, "link": 17467.926686305218, "sats": 740848198.68314}}, "community_data": {"facebook_likes": null, "twitter_followers": 41592, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.091, "reddit_subscribers": 6303, "reddit_accounts_active_48h": "11.6666666666667"}, "developer_data": {"forks": 42, "stars": 116, "subscribers": 28, "total_issues": 166, "closed_issues": 142, "pull_requests_merged": 222, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1078711, "bing_matches": null}}, "MDA_20200504": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 1.3448011445622121, "ars": 24.468628655854378, "aud": 0.5637581527514263, "bch": 0.001466182326958758, "bdt": 31.10256974038309, "bhd": 0.1383276212074746, "bmd": 0.3661223689910872, "bnb": 0.02152154063268749, "brl": 2.0090964998385936, "btc": 4.241363047622695e-05, "cad": 0.5108677492046088, "chf": 0.35386752105621766, "clp": 305.71216126592907, "cny": 2.5856660065257544, "czk": 9.073354385047834, "dkk": 2.4963687607288287, "eos": 0.12937358921699177, "eth": 0.001775354357604697, "eur": 0.33458751710514695, "gbp": 0.2911038955848134, "hkd": 2.83805246158976, "huf": 118.07812522331544, "idr": 5546.704097572807, "ils": 1.273412042199747, "inr": 27.60962028472896, "jpy": 39.26932942570307, "krw": 444.2894947706851, "kwd": 0.11321455567363813, "lkr": 70.24176053068146, "ltc": 0.007900518255412176, "mmk": 516.4639805056468, "mxn": 8.873074831661008, "myr": 1.573593941923695, "ngn": 142.60832394571835, "nok": 3.7571539746668097, "nzd": 0.5984317717067278, "php": 18.465215094387613, "pkr": 58.73888290866823, "pln": 1.5200851576956442, "rub": 27.22438339909756, "sar": 1.3756619651668391, "sek": 3.576649422673933, "sgd": 0.5167571936321954, "thb": 11.890845780517433, "try": 2.5592319714846012, "twd": 10.904222515661562, "uah": 9.864973187609284, "usd": 0.3661223689910872, "vef": 90976.88424228478, "vnd": 8525.286209445658, "xag": 0.024466065067026678, "xau": 0.00021702269544315688, "xdr": 0.26820696875048006, "xlm": 5.353735886638649, "xrp": 1.7133641546061062, "zar": 6.795231168474582, "bits": 42.413630476226956, "link": 0.09875948167272643, "sats": 4241.363047622695}, "market_cap": {"aed": 26605080.070810005, "ars": 484145215.4117817, "aud": 11160381.328075673, "bch": 28921.97528323306, "bdt": 615322467.3378953, "bhd": 2736625.748060025, "bmd": 7243238.141274447, "bnb": 424543.09919392003, "brl": 39747269.30024351, "btc": 837.0339147272507, "cad": 10109199.149585051, "chf": 7001313.9873558795, "clp": 6048103514.775208, "cny": 51153920.725122504, "czk": 179412111.46411124, "dkk": 49388953.64400003, "eos": 2550378.519487594, "eth": 34999.66999152756, "eur": 6619298.364546923, "gbp": 5759569.456606497, "hkd": 56148350.72067546, "huf": 2335871868.1795993, "idr": 109735800272.21751, "ils": 25192742.79535735, "inr": 546219165.0937384, "jpy": 776940926.9030095, "krw": 8789669361.301508, "kwd": 2239797.5574737336, "lkr": 1389638662.035649, "ltc": 155869.20133807688, "mmk": 10217544512.512352, "mxn": 175521768.25843307, "myr": 31131437.53119756, "ngn": 2821313688.4078097, "nok": 74337534.12485316, "nzd": 11844874.575664217, "php": 365307659.8749539, "pkr": 1162069715.1947956, "pln": 30075011.248292644, "rub": 538597771.975584, "sar": 27215619.856976155, "sek": 70759193.40211004, "sgd": 10225655.932420492, "thb": 235260374.82859406, "try": 50630234.60750833, "twd": 215725361.56157726, "uah": 195165212.80042526, "usd": 7243238.141274447, "vef": 1799855167915.3667, "vnd": 168661309626.34845, "xag": 484335.6328992782, "xau": 4290.894274890984, "xdr": 5306113.77601015, "xlm": 105574260.17573124, "xrp": 33785874.83287239, "zar": 134532138.7521978, "bits": 837033914.7272507, "link": 1949020.5066809955, "sats": 83703391472.72507}, "total_volume": {"aed": 1852456.5518684564, "ars": 33705408.157969356, "aud": 776573.910541705, "bch": 2019.6584965672919, "bdt": 42843627.34854355, "bhd": 190545.57563868145, "bmd": 504331.6507913372, "bnb": 29645.80980060344, "brl": 2767519.933717466, "btc": 58.42455442718398, "cad": 703717.655936743, "chf": 487450.66177604976, "clp": 421116905.2115109, "cny": 3561741.4173836596, "czk": 12498498.269406175, "dkk": 3438734.9277556534, "eos": 178211.44334449054, "eth": 2445.5413537766312, "eur": 460892.5570453778, "gbp": 400994.0955441922, "hkd": 3909402.4408566677, "huf": 162652000.696714, "idr": 7640555920.384276, "ils": 1754118.436275606, "inr": 38032107.719313696, "jpy": 54093296.15480496, "krw": 612006458.2352887, "kwd": 155952.45904760231, "lkr": 96757658.21287678, "ltc": 10882.922627314572, "mmk": 711426435.321188, "mxn": 12222614.23080544, "myr": 2167617.4351011706, "ngn": 196442221.29973376, "nok": 5175459.974058766, "nzd": 824336.6395298995, "php": 25435737.336760007, "pkr": 80912504.37552169, "pln": 2093909.3643380117, "rub": 37501445.92169781, "sar": 1894967.1710453082, "sek": 4926815.896580576, "sgd": 711830.3348713669, "thb": 16379577.949086063, "try": 3525328.67219653, "twd": 15020509.555518413, "uah": 13588949.034797668, "usd": 504331.6507913372, "vef": 125320182812.65088, "vnd": 11743537220.428665, "xag": 33701.87682775048, "xau": 298.94762932307304, "xdr": 369453.69843535306, "xlm": 7374743.217820222, "xrp": 2360150.1729609887, "zar": 9360395.438687222, "bits": 58424554.42718398, "link": 136040.67011954528, "sats": 5842455442.718398}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 373, "reddit_accounts_active_48h": "15.6666666666667"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1654204, "bing_matches": null}}, "GENS_20220101": {"id": "genshiro", "symbol": "gens", "name": "Genshiro", "localization": {"en": "Genshiro", "de": "Genshiro", "es": "Genshiro", "fr": "Genshiro", "it": "Genshiro", "pl": "Genshiro", "ro": "Genshiro", "hu": "Genshiro", "nl": "Genshiro", "pt": "Genshiro", "sv": "Genshiro", "vi": "Genshiro", "tr": "Genshiro", "ru": "Genshiro", "ja": "Genshiro", "zh": "Genshiro", "zh-tw": "Genshiro", "ko": "Genshiro", "ar": "Genshiro", "th": "Genshiro", "id": "Genshiro"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/16444/thumb/genshiro.PNG?1624234640", "small": "https://assets.coingecko.com/coins/images/16444/small/genshiro.PNG?1624234640"}, "market_data": {"current_price": {"aed": 0.2522576257660114, "ars": 7.045906683304141, "aud": 0.0949329479894562, "bch": 0.00015540451622041588, "bdt": 5.8926543604791455, "bhd": 0.025896454407347547, "bmd": 0.06867901928672124, "bnb": 0.00012811546653796035, "brl": 0.38658046376109606, "btc": 1.4396305226680855e-06, "cad": 0.08800955341320041, "chf": 0.06299239648978071, "clp": 58.777793983325886, "cny": 0.4373960701313412, "czk": 1.512360080007101, "dkk": 0.4512829678311161, "dot": 0.002451038243036765, "eos": 0.021835325500780853, "eth": 1.803884503044424e-05, "eur": 0.060701333085394944, "gbp": 0.05112136536410953, "hkd": 0.5355967658584603, "huf": 22.422381297302273, "idr": 977.1616524605055, "ils": 0.21308558560955998, "inr": 5.1313833508129285, "jpy": 7.88222236451771, "krw": 81.60781231962848, "kwd": 0.02078879574299415, "lkr": 13.934921572690294, "ltc": 0.00046920190160610855, "mmk": 122.1258207368262, "mxn": 1.419231329854309, "myr": 0.28711264012813786, "ngn": 28.23369023564661, "nok": 0.6043524996097239, "nzd": 0.10090953360582525, "php": 3.482026277836773, "pkr": 12.253900037872004, "pln": 0.2791732768195735, "rub": 5.061815418979574, "sar": 0.2580289984727519, "sek": 0.6214036457650962, "sgd": 0.0929910487191241, "thb": 2.3017342696493706, "try": 0.8138257748418616, "twd": 1.8992495993549903, "uah": 1.870403518427312, "usd": 0.06867901928672124, "vef": 0.0068768302011794034, "vnd": 1568.7305361135561, "xag": 0.0029843575003794046, "xau": 3.801383717520026e-05, "xdr": 0.04896559962771862, "xlm": 0.24846714972029937, "xrp": 0.07999153151482008, "yfi": 2.37915670656741e-06, "zar": 1.0817357611774323, "bits": 1.4396305226680857, "link": 0.0033531060171239826, "sats": 143.96305226680855}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 296146.1987512159, "ars": 8271775.628903323, "aud": 111449.68005606414, "bch": 182.44228140852022, "bdt": 6917876.849556097, "bhd": 30402.00077433484, "bmd": 80628.01048714368, "bnb": 150.4053972649719, "brl": 453838.94543003384, "btc": 1.6901019566791777, "cad": 103321.73157487618, "chf": 73952.01121880817, "clp": 69004138.9483711, "cny": 513495.6103894716, "czk": 1775485.2305342436, "dkk": 529798.5941099719, "dot": 2877.4775647119336, "eos": 25634.30392209381, "eth": 21.177299871138754, "eur": 71262.34141696752, "gbp": 60015.62086212638, "hkd": 628781.5711845148, "huf": 26323497.52750715, "idr": 1147171301.8105562, "ils": 250158.8841777267, "inr": 6024157.521755595, "jpy": 9253596.135598995, "krw": 95806195.4855556, "kwd": 24405.695634406035, "lkr": 16359362.9374616, "ltc": 550.8351201893107, "mmk": 143373654.09968334, "mxn": 1666153.648313679, "myr": 337065.39784150384, "ngn": 33145876.2232299, "nok": 709499.6431593716, "nzd": 118466.09078467634, "php": 4087840.131698192, "pkr": 14385872.00316911, "pln": 327744.71920117945, "rub": 5942485.94292871, "sar": 302921.6929844927, "sek": 729517.4012070464, "sgd": 109169.92305954009, "thb": 2702197.217714046, "try": 955417.7358695078, "twd": 2229687.002011473, "uah": 2195822.1894427305, "usd": 80628.01048714368, "vef": 8073.2826900777045, "vnd": 1841663195.4108486, "xag": 3503.5853793052024, "xau": 44.6276038046341, "xdr": 57484.7882409454, "xlm": 291696.2437935156, "xrp": 93908.70907655184, "yfi": 2.7930898530574115, "zar": 1269939.5419788063, "bits": 1690101.9566791777, "link": 3936.4899196434617, "sats": 169010195.6679178}}, "community_data": {"facebook_likes": null, "twitter_followers": 52755, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6962, "reddit_accounts_active_48h": "5.41666666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "TNB_20200321": {"id": "time-new-bank", "symbol": "tnb", "name": "Time New Bank", "localization": {"en": "Time New Bank", "de": "Time New Bank", "es": "Time New Bank", "fr": "Time New Bank", "it": "Time New Bank", "pl": "Time New Bank", "ro": "Time New Bank", "hu": "Time New Bank", "nl": "Time New Bank", "pt": "Time New Bank", "sv": "Time New Bank", "vi": "Time New Bank", "tr": "Time New Bank", "ru": "Time New Bank", "ja": "\u30bf\u30a4\u30e0\u30cb\u30e5\u30fc\u30d0\u30f3\u30af", "zh": "Time New Bank", "zh-tw": "Time New Bank", "ko": "\ud0c0\uc784\ub274\ubc45\ud06c", "ar": "Time New Bank", "th": "Time New Bank", "id": "Time New Bank"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1265/thumb/time-new-bank.png?1547035290", "small": "https://assets.coingecko.com/coins/images/1265/small/time-new-bank.png?1547035290"}, "market_data": {"current_price": {"aed": 0.0034734319065421013, "ars": 0.05967312611724729, "aud": 0.0015776399207985353, "bch": 5.090825895812725e-06, "bdt": 0.08023133336748448, "bhd": 0.000357020611467548, "bmd": 0.0009456146974142715, "bnb": 9.115998251030437e-05, "brl": 0.004738475248742922, "btc": 1.7465193695493184e-07, "cad": 0.001346137367421665, "chf": 0.0009074979145762005, "clp": 0.8021641535001809, "cny": 0.0066261113077212795, "czk": 0.023309402291261865, "dkk": 0.00641503024934977, "eos": 0.0004735950788000316, "eth": 8.037613404705376e-06, "eur": 0.0008584233486244907, "gbp": 0.0007804167553906949, "hkd": 0.0073398801936235165, "huf": 0.29796379823987196, "idr": 14.341784928592778, "ils": 0.003630356665578004, "inr": 0.0699990334146217, "jpy": 0.1015145468009861, "krw": 1.171616610096283, "kwd": 0.0002928445787981342, "lkr": 0.17466131443962182, "ltc": 2.729105523315824e-05, "mmk": 1.3511207436384325, "mxn": 0.021724930304274363, "myr": 0.0041143695484494895, "ngn": 0.34751184008987934, "nok": 0.009927733534275486, "nzd": 0.0015894988747188073, "php": 0.04891420010078863, "pkr": 0.1505127348956717, "pln": 0.003836406108144576, "rub": 0.07123551919296058, "sar": 0.003549257912283662, "sek": 0.009345703905558217, "sgd": 0.0013519500609666714, "thb": 0.030410968668843043, "try": 0.006051083010223664, "twd": 0.028514065585829872, "uah": 0.02564009476933723, "usd": 0.0009456146974142715, "vef": 234.97356662890851, "vnd": 21.97045599359451, "xag": 7.39053015366113e-05, "xau": 6.135242718293529e-07, "xdr": 0.0006887535946968428, "xlm": 0.025074505850663988, "xrp": 0.006366904151103689, "zar": 0.01563915269080265, "bits": 0.17465193695493184, "link": 0.0004973101454264172, "sats": 17.465193695493184}, "market_cap": {"aed": 10797807.16678632, "ars": 185467906.30984136, "aud": 4905897.202649154, "bch": 15853.096347940967, "bdt": 249413977.22654533, "bhd": 1109864.7737800418, "bmd": 2939618.634102779, "bnb": 282946.324266258, "brl": 14730428.975489056, "btc": 541.140479177582, "cad": 4184356.0504340907, "chf": 2820320.0910749855, "clp": 2493676038.6070657, "cny": 20598495.692885015, "czk": 72390754.52155174, "dkk": 19940917.7025294, "eos": 1471985.2128478356, "eth": 24908.668968108344, "eur": 2668324.1699800673, "gbp": 2425949.6739796624, "hkd": 22816511.44278143, "huf": 926323422.9721454, "idr": 44220136343.74219, "ils": 11285636.879115708, "inr": 217604975.42759505, "jpy": 315512207.6168856, "krw": 3642246280.026028, "kwd": 910361.6759393873, "lkr": 542967083.7261325, "ltc": 84616.96848492473, "mmk": 4200209372.573145, "mxn": 67538766.9850336, "myr": 12790280.676981209, "ngn": 1080304994.7224064, "nok": 30862265.282032512, "nzd": 4939402.975840661, "php": 152031220.0354769, "pkr": 467896746.29523206, "pln": 11924057.374832883, "rub": 221448820.7535475, "sar": 11033526.366199149, "sek": 29087982.025335293, "sgd": 4202678.6933804555, "thb": 94542444.75366277, "try": 18810316.858904395, "twd": 88641260.29273506, "uah": 79706989.0836147, "usd": 2939618.634102779, "vef": 730458903475.909, "vnd": 68289642374.06634, "xag": 229032.3313210609, "xau": 1904.637705407876, "xdr": 2141118.2660469064, "xlm": 77712701.17523229, "xrp": 19746468.184985053, "zar": 48644244.75035509, "bits": 541140479.177582, "link": 1540862.6728564037, "sats": 54114047917.7582}, "total_volume": {"aed": 1087501.413320031, "ars": 18683138.387571063, "aud": 493945.3801720046, "bch": 1593.893447640398, "bdt": 25119734.82634108, "bhd": 111780.05787994969, "bmd": 296063.7627463876, "bnb": 28541.400115391512, "brl": 1483575.5151221508, "btc": 54.68200712955797, "cad": 421463.93796772195, "chf": 284129.7285338438, "clp": 251150641.24420002, "cny": 2074577.9983164864, "czk": 7297971.751698479, "dkk": 2008490.3491324757, "eos": 148278.51283521426, "eth": 2516.507066361047, "eur": 268764.9074385941, "gbp": 244341.71945835624, "hkd": 2298052.8477127138, "huf": 93289881.7143222, "idr": 4490288509.759078, "ils": 1136633.1947477954, "inr": 21916090.43092507, "jpy": 31783324.41487771, "krw": 366823002.04277456, "kwd": 91687.09849364078, "lkr": 54684943.138706304, "ltc": 8544.592764624238, "mmk": 423024189.85250276, "mxn": 6801887.310840584, "myr": 1288173.4317095308, "ngn": 108802944.00802517, "nok": 3108287.2905193637, "nzd": 497658.3158206069, "php": 15314611.937788874, "pkr": 47124232.26533234, "pln": 1201145.488650234, "rub": 22303223.40709224, "sar": 1111241.8782633762, "sek": 2926058.8602939127, "sgd": 423283.8419173243, "thb": 9521410.609923849, "try": 1894541.624190409, "twd": 8927506.701854551, "uah": 8027691.358162455, "usd": 296063.7627463876, "vef": 73568186357.84854, "vnd": 6878759275.320189, "xag": 23139.109110367026, "xau": 192.0891299074836, "xdr": 215642.77861653524, "xlm": 7850610.371701539, "xrp": 1993422.4850521071, "zar": 4896483.1071950365, "bits": 54682007.12955797, "link": 155703.49457290085, "sats": 5468200712.955796}}, "community_data": {"facebook_likes": null, "twitter_followers": 15153, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1446, "reddit_accounts_active_48h": "51.1538461538462"}, "developer_data": {"forks": 5, "stars": 10, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1775001, "bing_matches": null}}, "EVX_20200321": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 0.40482519257935856, "ars": 6.955349002176985, "aud": 0.18400556993962294, "bch": 0.0005967063527384633, "bdt": 9.350885768111977, "bhd": 0.041610413470300256, "bmd": 0.11021049563850543, "bnb": 0.010685875223071144, "brl": 0.5522868357436782, "btc": 2.04903864365553e-05, "cad": 0.15694250105162266, "chf": 0.1057777192934292, "clp": 93.49147230606438, "cny": 0.7722669850381363, "czk": 2.715689108293719, "dkk": 0.7479286502338052, "eos": 0.05553236740133499, "eth": 0.0009427626712860328, "eur": 0.10008534719370028, "gbp": 0.09092972047902709, "hkd": 0.8555073192364633, "huf": 34.7504979405067, "idr": 1667.8362602811792, "ils": 0.42311462433056746, "inr": 8.158320918590805, "jpy": 11.830931391050104, "krw": 136.54970199115184, "kwd": 0.034122271554637644, "lkr": 20.3566104523335, "ltc": 0.003200904549577407, "mmk": 157.47184051922756, "mxn": 2.5321192004433626, "myr": 0.47952586652313683, "ngn": 40.50217518962245, "nok": 1.16009331077021, "nzd": 0.18531321747037385, "php": 5.7009743595448885, "pkr": 17.54211642238441, "pln": 0.44723937119435025, "rub": 8.302432162687706, "sar": 0.41365162054355953, "sek": 1.0897403306688744, "sgd": 0.1575883345560643, "thb": 3.5421653298215663, "try": 0.7054022773342553, "twd": 3.323287285483487, "uah": 2.988328714088225, "usd": 0.11021049563850543, "vef": 27385.94621142431, "vnd": 2561.3111173072043, "xag": 0.008631775288909207, "xau": 7.167208952363281e-05, "xdr": 0.08027357786623572, "xlm": 2.931906363187284, "xrp": 0.7467991052902956, "zar": 1.82288137743989, "bits": 20.4903864365553, "link": 0.05834505609426082, "sats": 2049.03864365553}, "market_cap": {"aed": 8904771.266982056, "ars": 152952285.361726, "aud": 4045811.503588809, "bch": 13078.194499210067, "bdt": 205687542.26527494, "bhd": 915286.9462414613, "bmd": 2424254.4013345446, "bnb": 233121.47602938086, "brl": 12147938.805087393, "btc": 446.42007357757245, "cad": 3450768.563763639, "chf": 2325870.884965183, "clp": 2056492989.248177, "cny": 16987235.44103144, "czk": 59699446.46182447, "dkk": 16444941.852724887, "eos": 1211569.1959366647, "eth": 20548.693474866155, "eur": 2200522.3868897823, "gbp": 2000640.187245345, "hkd": 18816395.993198358, "huf": 763923459.032266, "idr": 36467608047.95692, "ils": 9307076.28488351, "inr": 179455189.63334966, "jpy": 260197649.14963794, "krw": 3003699688.341524, "kwd": 750760.0727860891, "lkr": 447775887.39997065, "ltc": 69805.74314891528, "mmk": 3463842533.810474, "mxn": 55698093.35970172, "myr": 10547930.900206579, "ngn": 890909490.0464286, "nok": 25451594.835177414, "nzd": 4073443.1552552176, "php": 125377608.52225517, "pkr": 385866633.6568982, "pln": 9833571.007256528, "rub": 182625144.6885345, "sar": 9099164.95466188, "sek": 23988373.060637522, "sgd": 3465878.941447153, "thb": 77967575.50387147, "try": 15512554.215936426, "twd": 73100967.217842, "uah": 65733022.93753319, "usd": 2424254.4013345446, "vef": 602397260379.9877, "vnd": 56317327754.80272, "xag": 188879.13922292128, "xau": 1570.7229117126772, "xdr": 1765744.4812824365, "xlm": 64092134.92877368, "xrp": 16274075.12838154, "zar": 40116096.37643896, "bits": 446420073.57757246, "link": 1271152.4165313032, "sats": 44642007357.75725}, "total_volume": {"aed": 546683.20196849, "ars": 9392628.060253613, "aud": 248484.42240884167, "bch": 805.8029626850731, "bdt": 12627603.881028058, "bhd": 56191.44877382417, "bmd": 148830.2303083114, "bnb": 14430.397588556969, "brl": 745818.0501210099, "btc": 27.670585408322562, "cad": 211937.96871479313, "chf": 142844.12961508095, "clp": 126252561.28794026, "cny": 1042883.189816401, "czk": 3667315.2869109814, "dkk": 1010016.2659062627, "eos": 74991.90509963423, "eth": 1273.1236229424685, "eur": 135157.0482196565, "gbp": 122793.12566702385, "hkd": 1155292.4303148119, "huf": 46927695.786599316, "idr": 2252276004.169206, "ils": 571381.5786881528, "inr": 11017142.915549727, "jpy": 15976701.978251772, "krw": 184399167.04969475, "kwd": 46079.32760575626, "lkr": 27489931.91950461, "ltc": 4322.558922800863, "mmk": 212652798.22734082, "mxn": 3419419.1904025585, "myr": 647560.3320714625, "ngn": 54694863.919594206, "nok": 1566610.8170621349, "nzd": 250250.29309144983, "php": 7698698.041390553, "pkr": 23689188.693989698, "pln": 603960.0696119525, "rub": 11211753.324700864, "sar": 558602.5686231917, "sek": 1471604.8907145937, "sgd": 212810.1138643998, "thb": 4783403.6021091305, "try": 952587.8890883488, "twd": 4487826.764716814, "uah": 4035492.701289533, "usd": 148830.2303083114, "vef": 36982473023.49744, "vnd": 3458840478.5912743, "xag": 11656.504190233492, "xau": 96.78727537410101, "xdr": 108402.87952874364, "xlm": 3959298.946507166, "xrp": 1008490.9081523377, "zar": 2461651.7116390117, "bits": 27670585.40832256, "link": 78790.2103656481, "sats": 2767058540.8322563}}, "community_data": {"facebook_likes": null, "twitter_followers": 16866, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 2868, "reddit_accounts_active_48h": "27.3076923076923"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 688824, "bing_matches": null}}, "TCT_20200323": {"id": "tokenclub", "symbol": "tct", "name": "TokenClub", "localization": {"en": "TokenClub", "de": "TokenClub", "es": "TokenClub", "fr": "TokenClub", "it": "TokenClub", "pl": "TokenClub", "ro": "TokenClub", "hu": "TokenClub", "nl": "TokenClub", "pt": "TokenClub", "sv": "TokenClub", "vi": "TokenClub", "tr": "TokenClub", "ru": "TokenClub", "ja": "TokenClub", "zh": "TokenClub", "zh-tw": "TokenClub", "ko": "TokenClub", "ar": "TokenClub", "th": "TokenClub", "id": "TokenClub"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2455/thumb/tokenclub.png?1558012103", "small": "https://assets.coingecko.com/coins/images/2455/small/tokenclub.png?1558012103"}, "market_data": {"current_price": {"aed": 0.018294893714230417, "ars": 0.31602969563265293, "aud": 0.008678225567252446, "bch": 2.246507818217335e-05, "bdt": 0.4224680046358623, "bhd": 0.0018814075822683916, "bmd": 0.004980641869277577, "bnb": 0.00040582990694863004, "brl": 0.025383343222586213, "btc": 8.058778262632978e-07, "cad": 0.0072268266814099775, "chf": 0.0049236832488605145, "clp": 4.294805890072653, "cny": 0.035405888856133515, "czk": 0.12968537025715104, "dkk": 0.03490976711953473, "eos": 0.0021785905743066714, "eth": 3.6361073420693156e-05, "eur": 0.004671737479903108, "gbp": 0.0043315496789477145, "hkd": 0.0386550105795567, "huf": 1.6717582259482293, "idr": 79.25022272832766, "ils": 0.01818108604751736, "inr": 0.37434603902327673, "jpy": 0.5542866684765362, "krw": 6.265000112624228, "kwd": 0.0015496669499232819, "lkr": 0.9283273294048793, "ltc": 0.0001276555082306789, "mmk": 7.12012412943304, "mxn": 0.11986532756072471, "myr": 0.021990026936405522, "ngn": 1.8404903940356576, "nok": 0.05674258507597843, "nzd": 0.008772474253344771, "php": 0.25636641733875315, "pkr": 0.7915482600428446, "pln": 0.02137964927532557, "rub": 0.39388237764599165, "sar": 0.018732433141162647, "sek": 0.051966966348607785, "sgd": 0.007237863783792298, "thb": 0.16246853777583423, "try": 0.03261174876746875, "twd": 0.15105290163080867, "uah": 0.13858728143139404, "usd": 0.004980641869277577, "vef": 1237.6279549435926, "vnd": 117.52220590050902, "xag": 0.00041187288441302283, "xau": 3.3874839545517587e-06, "xdr": 0.0036725858564329453, "xlm": 0.12099982108933376, "xrp": 0.030517792695712687, "zar": 0.08662742245873377, "bits": 0.8058778262632977, "link": 0.002220729364991119, "sats": 80.58778262632978}, "market_cap": {"aed": 10773310.362612784, "ars": 186121430.87930673, "aud": 5102601.948346381, "bch": 13222.548208060844, "bdt": 248778648.47477454, "bhd": 1107904.1025848845, "bmd": 2932949.570568658, "bnb": 238263.15070519617, "brl": 14946311.011617873, "btc": 473.90479635137353, "cad": 4253240.283356701, "chf": 2898971.3497936204, "clp": 2529082414.7013507, "cny": 20849458.612301417, "czk": 76397763.70912917, "dkk": 20557410.15881204, "eos": 1282041.006778486, "eth": 21427.027586670036, "eur": 2751224.0151762236, "gbp": 2549841.831761834, "hkd": 22764234.739447158, "huf": 984545431.4913442, "idr": 46666160617.3179, "ils": 10706292.464925291, "inr": 220441076.31385422, "jpy": 326507517.20968956, "krw": 3689327935.3226066, "kwd": 912552.0634875912, "lkr": 546663926.7761924, "ltc": 75046.33094651447, "mmk": 4192826056.5430236, "mxn": 70457872.11622581, "myr": 12949262.716068102, "ngn": 1083809206.2229702, "nok": 33394604.8717887, "nzd": 5156336.517428765, "php": 150980624.08989, "pkr": 466118863.8551449, "pln": 12572903.694223173, "rub": 231945436.08872935, "sar": 11030964.116488114, "sek": 30581926.764260374, "sgd": 4260050.592259563, "thb": 95672814.99194962, "try": 19200281.59941766, "twd": 88950491.6432568, "uah": 81609864.39674337, "usd": 2932949.570568658, "vef": 728801723602.3575, "vnd": 69212380903.2056, "xag": 241838.55655341657, "xau": 1993.9950950468065, "xdr": 2162674.890749353, "xlm": 71145827.54666136, "xrp": 17959738.374548186, "zar": 51037531.31052818, "bits": 473904796.35137355, "link": 1305922.8870305023, "sats": 47390479635.13735}, "total_volume": {"aed": 1427181.2716264823, "ars": 24653418.048223548, "aud": 676986.7698602146, "bch": 1752.4965899246379, "bdt": 32956650.828133844, "bhd": 146768.2571788288, "bmd": 388538.95013244054, "bnb": 31658.71590784296, "brl": 1980149.9054549672, "btc": 62.866380030807385, "cad": 563763.4114800182, "chf": 384095.6186987256, "clp": 335037012.36673915, "cny": 2762006.83480648, "czk": 10116731.724491335, "dkk": 2723304.469983784, "eos": 169951.44736883513, "eth": 2836.520605849919, "eur": 364441.37590627605, "gbp": 337903.3885343304, "hkd": 3015470.218925374, "huf": 130413549.70567478, "idr": 6182295203.066414, "ils": 1418303.1566159509, "inr": 29202665.199744266, "jpy": 43239800.390129015, "krw": 488731498.9165663, "kwd": 120889.23186630689, "lkr": 72418643.1012236, "ltc": 9958.38256360425, "mmk": 555439565.154648, "mxn": 9350672.0117743, "myr": 1715437.9301907849, "ngn": 143576314.89998677, "nok": 4426478.556752593, "nzd": 684339.0924135697, "php": 19999096.754262727, "pkr": 61748533.22285053, "pln": 1667822.4818520553, "rub": 30726691.35884703, "sar": 1461313.6413177117, "sek": 4053933.4239634033, "sgd": 564624.4137935118, "thb": 12674140.553320184, "try": 2544036.4837821773, "twd": 11783608.89107772, "uah": 10811168.167140903, "usd": 388538.95013244054, "vef": 96547127637.20366, "vnd": 9167885524.854122, "xag": 32130.127461075102, "xau": 264.2569961535768, "xdr": 286497.7427370579, "xlm": 9439173.641906912, "xrp": 2380687.3582885275, "zar": 6757789.188259344, "bits": 62866380.03080738, "link": 173238.6866287743, "sats": 6286638003.080738}}, "community_data": {"facebook_likes": null, "twitter_followers": 26, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 409993, "bing_matches": null}}, "EDO_20200326": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "RLC_20200327": {"id": "iexec-rlc", "symbol": "rlc", "name": "iExec RLC", "localization": {"en": "iExec RLC", "de": "iExec RLC", "es": "iExec RLC", "fr": "iExec RLC", "it": "iExec RLC", "pl": "iExec RLC", "ro": "iExec RLC", "hu": "iExec RLC", "nl": "iExec RLC", "pt": "iExec RLC", "sv": "iExec RLC", "vi": "iExec RLC", "tr": "iExec RLC", "ru": "iExec RLC", "ja": "\u30a2\u30a4\u30a8\u30b0\u30bc\u30c3\u30af", "zh": "\u4e91\u7b97\u5b9d", "zh-tw": "\u96f2\u7b97\u5bf6", "ko": "\uc544\uc774\uc81d", "ar": "iExec RLC", "th": "iExec RLC", "id": "iExec RLC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/646/thumb/pL1VuXm.png?1604543202", "small": "https://assets.coingecko.com/coins/images/646/small/pL1VuXm.png?1604543202"}, "market_data": {"current_price": {"aed": 1.05074432825219, "ars": 18.217078120934218, "aud": 0.48789584526397994, "bch": 0.0013022101367786395, "bdt": 24.086056449918935, "bhd": 0.10803769659968392, "bmd": 0.2860569335326664, "bnb": 0.02361127305392956, "brl": 1.4712194148518567, "btc": 4.436003139132386e-05, "cad": 0.41427766313468123, "chf": 0.28092707454362503, "clp": 246.20920641030602, "cny": 2.02880158969373, "czk": 7.395114953936225, "dkk": 1.9853675630769296, "eos": 0.12546630276240442, "eth": 0.0021231300310079995, "eur": 0.26578922767800994, "gbp": 0.24680992225198445, "hkd": 2.218643273632684, "huf": 93.42396610825679, "idr": 4856.531589050849, "ils": 1.0623439369069385, "inr": 21.903665457529804, "jpy": 31.7297211243769, "krw": 360.846518804782, "kwd": 0.08932013326784098, "lkr": 53.115996836510966, "ltc": 0.007357989542390305, "mmk": 403.2289881195241, "mxn": 7.254003354681462, "myr": 1.2708079272188724, "ngn": 108.92184194196057, "nok": 3.296103889192158, "nzd": 0.49887442431602846, "php": 14.663923757326508, "pkr": 45.157809703064366, "pln": 1.2248780538569985, "rub": 22.675939654240473, "sar": 1.0742624990425782, "sek": 2.947878488351771, "sgd": 0.4168739158634237, "thb": 9.37980685053611, "try": 1.8731008007719, "twd": 8.648645900540496, "uah": 7.962322944591439, "usd": 0.2860569335326664, "vef": 71081.61296022269, "vnd": 6686.958005414535, "xag": 0.020925894253021795, "xau": 0.00018281898622072687, "xdr": 0.2115350975503375, "xlm": 7.255318685678149, "xrp": 1.8195512315931968, "zar": 5.085749009890583, "bits": 44.360031391323865, "link": 0.1275420353463326, "sats": 4436.003139132386}, "market_cap": {"aed": 73854737.71880318, "ars": 1280491279.1226287, "aud": 34251612.435678855, "bch": 91653.26490413107, "bdt": 1692961202.7961407, "bhd": 7593976.8836477, "bmd": 20106375.29097332, "bnb": 1663133.3533373864, "brl": 103419151.94665018, "btc": 3121.0152859376594, "cad": 29113810.251201127, "chf": 19748783.406423345, "clp": 17305557474.323586, "cny": 142600445.47616985, "czk": 519767897.00942236, "dkk": 139530604.096744, "eos": 8823066.400856294, "eth": 149415.4815324121, "eur": 18680672.431840964, "gbp": 17343477.836739495, "hkd": 155946152.60743004, "huf": 6569212017.0662365, "idr": 331943116537.7167, "ils": 74670051.23685223, "inr": 1539444624.1533709, "jpy": 2229404945.4507637, "krw": 25363187110.798267, "kwd": 6278074.939979377, "lkr": 3733418215.5982556, "ltc": 517849.44602686586, "mmk": 28342166935.816387, "mxn": 510189662.16105884, "myr": 89322572.23014888, "ngn": 7655900538.481605, "nok": 231652164.72477403, "nzd": 35037389.68842522, "php": 1032619944.8546333, "pkr": 3174053004.0481706, "pln": 86117977.9235229, "rub": 1593846886.1184125, "sar": 75505732.51307079, "sek": 207094056.98700172, "sgd": 29298266.13812053, "thb": 659086982.0381035, "try": 131670619.86799695, "twd": 607735279.4385837, "uah": 559655909.5240431, "usd": 20106375.29097332, "vef": 4996185790066.661, "vnd": 470004277099.81885, "xag": 1472917.4538456087, "xau": 12848.979129696501, "xdr": 14868383.038420673, "xlm": 510862374.4357526, "xrp": 127909587.67754312, "zar": 357857288.7038003, "bits": 3121015285.9376593, "link": 8973407.579539265, "sats": 312101528593.7659}, "total_volume": {"aed": 752158.7725276778, "ars": 13040408.356307622, "aud": 349252.55385916395, "bch": 932.166609627835, "bdt": 17241624.025264516, "bhd": 77337.08293844084, "bmd": 204769.34894034575, "bnb": 16901.757811627263, "brl": 1053149.2385350924, "btc": 31.75442956336307, "cad": 296554.1380626217, "chf": 201097.2202057985, "clp": 176244981.29495707, "cny": 1452285.6534896144, "czk": 5293676.52710159, "dkk": 1421194.0898545582, "eos": 89813.07606611811, "eth": 1519.809182026198, "eur": 190261.0310292244, "gbp": 176674.99426573023, "hkd": 1588180.8319138747, "huf": 66876074.2106888, "idr": 3476471621.6347237, "ils": 760462.169627208, "inr": 15679393.817711217, "jpy": 22713220.9538121, "krw": 258306295.22079918, "kwd": 63938.410129227224, "lkr": 38022249.47394175, "ltc": 5267.100886170543, "mmk": 288645118.128837, "mxn": 5192664.0120386435, "myr": 909687.8326674873, "ngn": 77969984.45168437, "nok": 2359464.0377858365, "nzd": 357111.3967021443, "php": 10496938.786333317, "pkr": 32325506.598540675, "pln": 876809.6564629263, "rub": 16232214.13397114, "sar": 768993.8845508085, "sek": 2110192.3710096343, "sgd": 298412.62467360427, "thb": 6714386.951753921, "try": 1340829.6968613844, "twd": 6190996.905401107, "uah": 5699703.430647931, "usd": 204769.34894034575, "vef": 50882652721.4111, "vnd": 4786753532.767635, "xag": 14979.471706098222, "xau": 130.8680909077748, "xdr": 151424.06677050065, "xlm": 5193605.5710091125, "xrp": 1302497.0814573711, "zar": 3640553.300940629, "bits": 31754429.56336307, "link": 91298.95653241589, "sats": 3175442956.336307}}, "community_data": {"facebook_likes": null, "twitter_followers": 28324, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3561, "reddit_accounts_active_48h": "1038.07692307692"}, "developer_data": {"forks": 18, "stars": 385, "subscribers": 39, "total_issues": 49, "closed_issues": 37, "pull_requests_merged": 49, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 9}, "public_interest_stats": {"alexa_rank": 324809, "bing_matches": null}}, "DLT_20200328": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.12086489005850723, "ars": 2.0952612447608567, "aud": 0.05505696489495715, "bch": 0.00014438828535300377, "bdt": 2.7999367873691314, "bhd": 0.012439916476208577, "bmd": 0.03290452195864841, "bnb": 0.0026419713669689, "brl": 0.16779002882373573, "btc": 4.869511210988539e-06, "cad": 0.04752416558748572, "chf": 0.032234618796092296, "clp": 27.817514583800556, "cny": 0.23240792904612986, "czk": 0.8440405065702045, "dkk": 0.22729867939900064, "eos": 0.013994317766950405, "eth": 0.00023681356449107164, "eur": 0.030443461143273266, "gbp": 0.02790793739470572, "hkd": 0.2551136944236949, "huf": 10.80933966887926, "idr": 540.4606394521297, "ils": 0.11855614427527884, "inr": 2.499460392500893, "jpy": 3.6543679825970017, "krw": 40.59990250911753, "kwd": 0.010289112398381503, "lkr": 6.173911321030122, "ltc": 0.0008106412910839221, "mmk": 46.30844251082021, "mxn": 0.8153740541353081, "myr": 0.14578348453779194, "ngn": 11.981290847118832, "nok": 0.36316984121935925, "nzd": 0.056446029289441355, "php": 1.671302602539431, "pkr": 5.2267311297172565, "pln": 0.1401899132319533, "rub": 2.5763648412226434, "sar": 0.12360534316983343, "sek": 0.3327948543862818, "sgd": 0.04760379453062565, "thb": 1.078281184584907, "try": 0.21180311739562424, "twd": 0.9924003164637946, "uah": 0.9157628550332134, "usd": 0.03290452195864841, "vef": 8176.367080571769, "vnd": 780.1981155535519, "xag": 0.002250677528102041, "xau": 2.01316446247403e-05, "xdr": 0.024408442770837556, "xlm": 0.8136288001585233, "xrp": 0.20268116921930351, "zar": 0.5762799262271807, "bits": 4.869511210988539, "link": 0.01421659811313802, "sats": 486.9511210988539}, "market_cap": {"aed": 9913701.711557928, "ars": 171860437.22024056, "aud": 4518509.8898420995, "bch": 11864.42818691076, "bdt": 229659234.43738383, "bhd": 1020359.3549965417, "bmd": 2698927.8317428767, "bnb": 216811.4662261795, "brl": 13763452.370755982, "btc": 399.3476132183209, "cad": 3896245.0889554736, "chf": 2644474.2638096316, "clp": 2281676201.5175695, "cny": 19062797.16838312, "czk": 69239104.27388123, "dkk": 18642028.92155875, "eos": 1148489.8932737815, "eth": 19379.717767894726, "eur": 2497083.1159903207, "gbp": 2288877.0273383493, "hkd": 20925826.566717736, "huf": 886593458.2494357, "idr": 44337296843.81091, "ils": 9724331.440243704, "inr": 205013257.02702072, "jpy": 299806349.79740995, "krw": 3330126083.7525816, "kwd": 843943.9372746723, "lkr": 506402770.901251, "ltc": 66396.9249724723, "mmk": 3798357699.716341, "mxn": 66884991.46192203, "myr": 11957599.75853683, "ngn": 982741501.8559798, "nok": 29794632.970360745, "nzd": 4629697.619726418, "php": 137077014.28213993, "pkr": 428712203.5311353, "pln": 11498145.08017222, "rub": 211321191.15537027, "sar": 10138481.916024629, "sek": 27287245.34790886, "sgd": 3903351.365936455, "thb": 88446563.97404572, "try": 17417622.525698934, "twd": 81402359.63426897, "uah": 75113622.9795869, "usd": 2698927.8317428767, "vef": 670650213488.4028, "vnd": 63993059503.53943, "xag": 184613.815849967, "xau": 1649.0449051948992, "xdr": 2002053.8698755405, "xlm": 66784861.039556585, "xrp": 16664218.544701772, "zar": 47361867.86148441, "bits": 399347613.21832085, "link": 1165900.2882577234, "sats": 39934761321.832085}, "total_volume": {"aed": 118520.47079703175, "ars": 2054619.4105800404, "aud": 53989.02358532095, "bch": 141.5875822112631, "bdt": 2745626.3442615885, "bhd": 12198.619108678173, "bmd": 32266.272132481725, "bnb": 2590.724983027374, "brl": 164535.40148516392, "btc": 4.7750571816051, "cad": 46602.338172304044, "chf": 31609.36309813653, "clp": 27277937.565486405, "cny": 227899.90669893194, "czk": 827668.6319909877, "dkk": 222889.76129356073, "eos": 13722.869639142857, "eth": 232.22008592419598, "eur": 29852.94857460489, "gbp": 27366.606442892265, "hkd": 250165.24778395065, "huf": 10599670.640005082, "idr": 529977311.0629873, "ils": 116256.50781285635, "inr": 2450978.2974554454, "jpy": 3583484.1164653855, "krw": 39812385.196105234, "kwd": 10089.534230738484, "lkr": 6054155.810454156, "ltc": 794.9172619134613, "mmk": 45410196.50622166, "mxn": 799558.2234428974, "myr": 142955.71868296043, "ngn": 11748889.452257777, "nok": 356125.4268279714, "nzd": 55351.14426339354, "php": 1638884.3046263577, "pkr": 5125348.096736124, "pln": 137470.64601807116, "rub": 2526391.028683479, "sar": 121207.76727158566, "sek": 326339.6243656741, "sgd": 46680.42255086465, "thb": 1057365.7377814245, "try": 207694.7670895719, "twd": 973150.7029831068, "uah": 897999.780287153, "usd": 32266.272132481725, "vef": 8017769886.10688, "vnd": 765064593.411719, "xag": 2207.021080429783, "xau": 19.741150616094995, "xdr": 23934.99160278641, "xlm": 797846.822200661, "xrp": 198749.75756761467, "zar": 565101.8102466452, "bits": 4775057.181605101, "link": 13940.838407958438, "sats": 477505718.16051}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2583, "reddit_accounts_active_48h": "17.0"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "GRS_20200402": {"id": "groestlcoin", "symbol": "grs", "name": "Groestlcoin", "localization": {"en": "Groestlcoin", "de": "Groestlcoin", "es": "Groestlcoin", "fr": "Groestlcoin", "it": "Groestlcoin", "pl": "Groestlcoin", "ro": "Groestlcoin", "hu": "Groestlcoin", "nl": "Groestlcoin", "pt": "Groestlcoin", "sv": "Groestlcoin", "vi": "Groestlcoin", "tr": "Groestlcoin", "ru": "Groestlcoin", "ja": "\u30b0\u30ed\u30a4\u30b9\u30c8\u30eb\u30b3\u30a4\u30f3", "zh": "Groestlcoin", "zh-tw": "Groestlcoin", "ko": "\uadf8\ub85c\uc2a4\ud1a8\ucf54\uc778", "ar": "Groestlcoin", "th": "Groestlcoin", "id": "Groestlcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/71/thumb/image001.png?1547033733", "small": "https://assets.coingecko.com/coins/images/71/small/image001.png?1547033733"}, "market_data": {"current_price": {"aed": 0.5140513580658925, "ars": 9.008458829340563, "aud": 0.2268039935371236, "bch": 0.0006785857883537932, "bdt": 11.746750357496015, "bhd": 0.052798309855346386, "bmd": 0.13995279054479037, "bnb": 0.012344059690667946, "brl": 0.7141772707637875, "btc": 2.3710021265896076e-05, "cad": 0.1965705520068947, "chf": 0.13303394443862743, "clp": 116.32875516229312, "cny": 0.9931609828220506, "czk": 3.436988620757063, "dkk": 0.9375468228209414, "eos": 0.06600757858501706, "eth": 0.0011195198110715548, "eur": 0.12564163804205167, "gbp": 0.1123972057088455, "hkd": 1.084991006338015, "huf": 44.841862017299334, "idr": 2231.527441916818, "ils": 0.49887711670386425, "inr": 10.551936437078435, "jpy": 15.041005654649226, "krw": 169.71094470092552, "kwd": 0.04386260408464267, "lkr": 26.064655582378453, "ltc": 0.0037563838019953055, "mmk": 193.97927164832234, "mxn": 3.303823540553689, "myr": 0.6049459371298552, "ngn": 54.39970370653717, "nok": 1.4691562381302117, "nzd": 0.2314409093934534, "php": 7.159424813156492, "pkr": 22.91826983425622, "pln": 0.5700608847002897, "rub": 11.039552392443902, "sar": 0.5263624452389551, "sek": 1.3897277112900026, "sgd": 0.20002332730242503, "thb": 4.556723187253415, "try": 0.9046597364291938, "twd": 4.218904861530804, "uah": 3.8761324869285, "usd": 0.13995279054479037, "vef": 34776.53894752344, "vnd": 3266.173874415092, "xag": 0.009728363388151813, "xau": 8.605697090599165e-05, "xdr": 0.10266362907924585, "xlm": 3.6858463163444646, "xrp": 0.8498671805838627, "zar": 2.508757755438731, "bits": 23.710021265896074, "link": 0.06936135387471884, "sats": 2371.0021265896075}, "market_cap": {"aed": 38416512.181656554, "ars": 673227612.2319915, "aud": 16949704.039981168, "bch": 50712.63560644252, "bdt": 877867884.4493577, "bhd": 3945767.055961742, "bmd": 10459067.948093222, "bnb": 922506.5006381224, "brl": 53372487.77123633, "btc": 1771.9169621800254, "cad": 14690273.427426381, "chf": 9942003.005943324, "clp": 8693576954.223969, "cny": 74221729.78684875, "czk": 256855882.48286235, "dkk": 70065526.28377125, "eos": 4932933.075663458, "eth": 83664.88247682706, "eur": 9389555.03692505, "gbp": 8399761.14165725, "hkd": 81084447.22099014, "huf": 3351159201.1297164, "idr": 166768358474.23157, "ils": 37282498.19845251, "inr": 788576060.1825476, "jpy": 1124056901.8828084, "krw": 12682978990.647533, "kwd": 3277976.4856118904, "lkr": 1947885445.6460228, "ltc": 280725.18790978927, "mmk": 14496619715.789995, "mxn": 246904079.33025122, "myr": 45209321.20563286, "ngn": 4065443748.6240635, "nok": 109794201.75299177, "nzd": 17296233.879237376, "php": 535044069.49358785, "pkr": 1712747137.9179566, "pln": 42602262.551687345, "rub": 825016979.9376241, "sar": 39336554.55277849, "sek": 103858283.24786685, "sgd": 14948309.09277377, "thb": 340536814.2401034, "try": 67607781.28385274, "twd": 315290695.10885894, "uah": 289674345.8903888, "usd": 10459067.948093222, "vef": 2598949134460.0957, "vnd": 244090413273.04898, "xag": 727028.1164408675, "xau": 6431.280881282525, "xdr": 7672343.424935317, "xlm": 275453722.0644999, "xrp": 63512978.58356216, "zar": 187486564.0570556, "bits": 1771916962.1800253, "link": 5183570.190515419, "sats": 177191696218.00253}, "total_volume": {"aed": 20615896.345963743, "ars": 361281904.1298227, "aud": 9095915.317108486, "bch": 27214.50698463607, "bdt": 471100375.4239832, "bhd": 2117462.518366447, "bmd": 5612770.35441648, "bnb": 495055.31126051256, "brl": 28641894.152572665, "btc": 950.8842513662875, "cad": 7883410.98852531, "chf": 5335291.826405187, "clp": 4665334544.595093, "cny": 39830463.54308112, "czk": 137839536.9178305, "dkk": 37600072.08518375, "eos": 2647216.813659961, "eth": 44898.05156656281, "eur": 5038825.296284911, "gbp": 4507660.773794711, "hkd": 43513282.8111315, "huf": 1798371242.100974, "idr": 89494829094.16554, "ils": 20007337.33305649, "inr": 423182673.1369561, "jpy": 603215629.4304656, "krw": 6806213406.173682, "kwd": 1759098.356777666, "lkr": 1045316249.7251508, "ltc": 150648.79779515296, "mmk": 7779488362.04562, "mxn": 132498985.92560299, "myr": 24261199.85696519, "ngn": 2181686003.291043, "nok": 58920129.76150152, "nzd": 9281877.624491006, "php": 287126874.6377586, "pkr": 919131265.6181912, "pln": 22862143.8801123, "rub": 442738384.5162148, "sar": 21109629.302960325, "sek": 55734669.300096706, "sgd": 8021883.645939113, "thb": 182746201.1949871, "try": 36281144.017910525, "twd": 169198084.88795525, "uah": 155451287.73591828, "usd": 5612770.35441648, "vef": 1394704071809.1318, "vnd": 130989055833.2211, "xag": 390153.48968360905, "xau": 3451.2924909306957, "xdr": 4117298.208415398, "xlm": 147819910.23389056, "xrp": 34083702.7815176, "zar": 100613078.89128828, "bits": 950884251.3662875, "link": 2781719.101525299, "sats": 95088425136.62874}}, "community_data": {"facebook_likes": null, "twitter_followers": 37534, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 106842, "reddit_accounts_active_48h": "1393.5"}, "developer_data": {"forks": 17, "stars": 24, "subscribers": 14, "total_issues": 17, "closed_issues": 16, "pull_requests_merged": 30, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 3912987, "bing_matches": null}}, "GNT_20200410": {"id": "greentrust", "symbol": "gnt", "name": "GreenTrust", "localization": {"en": "GreenTrust", "de": "GreenTrust", "es": "GreenTrust", "fr": "GreenTrust", "it": "GreenTrust", "pl": "GreenTrust", "ro": "GreenTrust", "hu": "GreenTrust", "nl": "GreenTrust", "pt": "GreenTrust", "sv": "GreenTrust", "vi": "GreenTrust", "tr": "GreenTrust", "ru": "GreenTrust", "ja": "GreenTrust", "zh": "GreenTrust", "zh-tw": "GreenTrust", "ko": "GreenTrust", "ar": "GreenTrust", "th": "GreenTrust", "id": "GreenTrust"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15171/thumb/U4tF68c.png?1620013363", "small": "https://assets.coingecko.com/coins/images/15171/small/U4tF68c.png?1620013363"}}, "VITE_20200413": {"id": "vite", "symbol": "vite", "name": "Vite", "localization": {"en": "Vite", "de": "Vite", "es": "Vite", "fr": "Vite", "it": "Vite", "pl": "Vite", "ro": "Vite", "hu": "Vite", "nl": "Vite", "pt": "Vite", "sv": "Vite", "vi": "Vite", "tr": "Vite", "ru": "Vite", "ja": "Vite", "zh": "Vite", "zh-tw": "Vite", "ko": "\ubc14\uc774\ud2b8", "ar": "Vite", "th": "Vite", "id": "Vite"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4513/thumb/Vite.png?1558014583", "small": "https://assets.coingecko.com/coins/images/4513/small/Vite.png?1558014583"}, "market_data": {"current_price": {"aed": 0.04019927392641625, "ars": 0.7122731512780458, "aud": 0.017284314481674178, "bch": 4.256940403637456e-05, "bdt": 0.9294641863628605, "bhd": 0.004131050536516199, "bmd": 0.010944426879131138, "bnb": 0.0007281934629489539, "brl": 0.05589647139978642, "btc": 1.500994874571633e-06, "cad": 0.015308900152125396, "chf": 0.010583260792119801, "clp": 9.218493726231836, "cny": 0.07708378739509643, "czk": 0.2706195601122124, "dkk": 0.07477827820644616, "eos": 0.00400837982946582, "eth": 6.433347926604622e-05, "eur": 0.010017094645235479, "gbp": 0.008787838507025221, "hkd": 0.08485159437255976, "huf": 3.5407578711871794, "idr": 174.92191284152426, "ils": 0.03910826778854322, "inr": 0.8308023888217231, "jpy": 1.1879330722546932, "krw": 13.248447625725818, "kwd": 0.003412942911268897, "lkr": 2.089915941389939, "ltc": 0.00023596920603500215, "mmk": 15.592288093522718, "mxn": 0.25914870630019504, "myr": 0.047417812952096745, "ngn": 4.189006639610373, "nok": 0.1118652307391095, "nzd": 0.017994542119568552, "php": 0.5527884784104445, "pkr": 1.833531950541397, "pln": 0.04555717282722941, "rub": 0.8131577838071884, "sar": 0.04116772437209682, "sek": 0.10895822679360916, "sgd": 0.015504214394210458, "thb": 0.35775325354432813, "try": 0.07314828093362964, "twd": 0.32907702740171435, "uah": 0.29877445942486386, "usd": 0.010944426879131138, "vef": 2719.5548308743246, "vnd": 255.475054390407, "xag": 0.000711608715122213, "xau": 6.499895123515983e-06, "xdr": 0.008032191497582494, "xlm": 0.2110440441016323, "xrp": 0.05525024602257163, "zar": 0.19748815548482937, "bits": 1.500994874571633, "link": 0.0032947626623821883, "sats": 150.0994874571633}, "market_cap": {"aed": 19680880.961837634, "ars": 348720038.2239201, "aud": 8459834.586941985, "bch": 20842.636228011306, "bdt": 455049860.9398507, "bhd": 2022492.0978755243, "bmd": 5358205.299876615, "bnb": 356783.6401564774, "brl": 27365961.92805985, "btc": 735.113112499089, "cad": 7492271.306711465, "chf": 5183731.418902038, "clp": 4513217481.458421, "cny": 37738911.56809097, "czk": 132497164.83481923, "dkk": 36609643.0101155, "eos": 1964772.3694038317, "eth": 31513.235935403558, "eur": 4904268.863281674, "gbp": 4301154.63293286, "hkd": 41540826.138618425, "huf": 1732736429.8741002, "idr": 85640358733.18935, "ils": 19146742.90831408, "inr": 406746722.51893395, "jpy": 581641892.3852186, "krw": 6486161135.061078, "kwd": 1670918.8153294204, "lkr": 1023187307.7616302, "ltc": 115544.51313644511, "mmk": 7633719117.738739, "mxn": 126881229.86001842, "myr": 23214954.92404014, "ngn": 2050866420.4589713, "nok": 54786148.89375446, "nzd": 8810523.765613617, "php": 270628391.4529679, "pkr": 897666065.4215937, "pln": 22305292.410280105, "rub": 398108223.9344724, "sar": 20155017.83241307, "sek": 53340681.92462267, "sgd": 7593096.655839224, "thb": 175193718.3491836, "try": 35771914.4025063, "twd": 161110516.9566899, "uah": 146274894.94316673, "usd": 5358205.299876615, "vef": 1331447801609.5723, "vnd": 125098573549.72154, "xag": 348391.52665698435, "xau": 3182.2381275967246, "xdr": 3932424.3770165476, "xlm": 103412303.82904965, "xrp": 27049600.473188873, "zar": 96836781.47562964, "bits": 735113112.499089, "link": 1613611.9294749582, "sats": 73511311249.90889}, "total_volume": {"aed": 15012171.280126404, "ars": 265994021.80234015, "aud": 6454720.797530437, "bch": 15897.28177321662, "bdt": 347102676.28126085, "bhd": 1542715.3817394325, "bmd": 4087128.8166319164, "bnb": 271939.3641504171, "brl": 20874193.005184174, "btc": 560.5372920144687, "cad": 5717014.481772455, "chf": 3952253.56568306, "clp": 3442589709.8609705, "cny": 28786465.681301914, "czk": 101061208.1102126, "dkk": 27925487.473305494, "eos": 1496904.7616604373, "eth": 24024.9416334283, "eur": 3740822.3048698786, "gbp": 3281764.1704434124, "hkd": 31687305.35890642, "huf": 1322274221.1965215, "idr": 65323511092.042435, "ils": 14604741.756911647, "inr": 310258035.59934515, "jpy": 443626289.9339405, "krw": 4947551175.109265, "kwd": 1274542.5115649488, "lkr": 780466237.5405588, "ltc": 88121.24677468506, "mmk": 5822843963.239368, "mxn": 96777488.39750068, "myr": 17707890.223810647, "ngn": 1564358731.5166194, "nok": 41775381.4962022, "nzd": 6719950.934956961, "php": 206435452.90813822, "pkr": 684721215.1019459, "pln": 17013045.627952684, "rub": 303668766.5211714, "sar": 15373833.134852534, "sek": 40689778.77557254, "sgd": 5789953.382634101, "thb": 133600749.30857672, "try": 27316775.030129235, "twd": 122891789.25848821, "uah": 111575481.866249, "usd": 4087128.8166319164, "vef": 1015601003180.1141, "vnd": 95405585716.01814, "xag": 265745.89221188216, "xau": 2427.3458041976955, "xdr": 2999572.4484278793, "xlm": 78813098.55256635, "xrp": 20632864.117849775, "zar": 73750735.43271823, "bits": 560537292.0144687, "link": 1230408.8254326382, "sats": 56053729201.44687}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 104, "stars": 225, "subscribers": 28, "total_issues": 54, "closed_issues": 47, "pull_requests_merged": 381, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 295, "deletions": -50}, "commit_count_4_weeks": 10}, "public_interest_stats": {"alexa_rank": 524494, "bing_matches": null}}, "MITH_20200414": {"id": "mithril", "symbol": "mith", "name": "Mithril", "localization": {"en": "Mithril", "de": "Mithril", "es": "Mithril", "fr": "Mithril", "it": "Mithril", "pl": "Mithril", "ro": "Mithril", "hu": "Mithril", "nl": "Mithril", "pt": "Mithril", "sv": "Mithril", "vi": "Mithril", "tr": "Mithril", "ru": "Mithril", "ja": "\u30df\u30b9\u30ea\u30eb", "zh": "\u79d8\u94f6\u5e01", "zh-tw": "\u79d8\u9280\u5e63", "ko": "\ubbf8\uc2a4\ub9b4", "ar": "Mithril", "th": "Mithril", "id": "Mithril"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3484/thumb/mithril.png?1548085086", "small": "https://assets.coingecko.com/coins/images/3484/small/mithril.png?1548085086"}, "market_data": {"current_price": {"aed": 0.012845240615116795, "ars": 0.2259859544322417, "aud": 0.005508408480801308, "bch": 1.5044521527863966e-05, "bdt": 0.2970030791562229, "bhd": 0.0013200451910863463, "bmd": 0.0034972068105409235, "bnb": 0.0002549943377601073, "brl": 0.01786023518143252, "btc": 5.099087564368237e-07, "cad": 0.004879827523088277, "chf": 0.0033744548514909366, "clp": 2.9395363057497654, "cny": 0.024606696839647023, "czk": 0.08643591436728619, "dkk": 0.023874032012838692, "eos": 0.0014051105199587295, "eth": 2.222155474164175e-05, "eur": 0.003197737494147493, "gbp": 0.002809676934829443, "hkd": 0.027112795240080645, "huf": 1.13155623561862, "idr": 55.26286202016778, "ils": 0.012514457308941787, "inr": 0.26640497460317053, "jpy": 0.3789048831490625, "krw": 4.239104263329075, "kwd": 0.0010876313180782269, "lkr": 0.6640773305606574, "ltc": 8.300109407252204e-05, "mmk": 4.954205484540429, "mxn": 0.08160294591825223, "myr": 0.015072261912069253, "ngn": 1.3385646147794967, "nok": 0.03568112678624643, "nzd": 0.005748204957386432, "php": 0.1764769593472867, "pkr": 0.5822849339550653, "pln": 0.01456044569534663, "rub": 0.25806063915321986, "sar": 0.013163993529863569, "sek": 0.03476957983107891, "sgd": 0.004942602385337489, "thb": 0.11423046909184126, "try": 0.023422542613597858, "twd": 0.10505958979545985, "uah": 0.09493486482753777, "usd": 0.0034972068105409235, "vef": 869.0126747804833, "vnd": 81.57529724251563, "xag": 0.00022842873590337058, "xau": 2.0708360407937004e-06, "xdr": 0.0025550243237130914, "xlm": 0.07350595549358109, "xrp": 0.01858689357300497, "zar": 0.06315367969092761, "bits": 0.5099087564368237, "link": 0.0010894061593979497, "sats": 50.990875643682365}, "market_cap": {"aed": 7963692.982559647, "ars": 140105025.15236238, "aud": 3415060.509805044, "bch": 9329.068474816098, "bdt": 184133673.1747557, "bhd": 818391.4135905288, "bmd": 2168171.2449114206, "bnb": 158115.5486412393, "brl": 11072850.547762612, "btc": 316.179941037689, "cad": 3025357.746587151, "chf": 2092068.4342150285, "clp": 1822430996.1566117, "cny": 15255469.69632123, "czk": 53587870.03785726, "dkk": 14801237.820512317, "eos": 871344.1924024636, "eth": 13783.140205740607, "eur": 1982508.5730384106, "gbp": 1741921.7871893044, "hkd": 16809181.210424766, "huf": 701533488.0035397, "idr": 34261442012.090252, "ils": 7758616.505359698, "inr": 165163696.83799487, "jpy": 234910520.51143935, "krw": 2628127092.8069296, "kwd": 674301.2571674532, "lkr": 411709530.06821114, "ltc": 51467.07407836417, "mmk": 3071470020.1849303, "mxn": 50591563.61778071, "myr": 9344384.431319226, "ngn": 829872942.7362461, "nok": 22121309.169020005, "nzd": 3563727.67572613, "php": 109410821.08524366, "pkr": 361000512.2777512, "pln": 9027072.56962644, "rub": 159990440.24763596, "sar": 8161310.950677094, "sek": 21556175.33403382, "sgd": 3064276.4204333085, "thb": 70819723.22344992, "try": 14521326.912794229, "twd": 65134032.36838414, "uah": 58856983.647124566, "usd": 2168171.2449114206, "vef": 538763760622.7733, "vnd": 50574422205.52209, "xag": 141619.48192607678, "xau": 1283.860920961848, "xdr": 1584044.229819833, "xlm": 45579755.159879945, "xrp": 11525358.522260483, "zar": 39153530.15540869, "bits": 316179941.037689, "link": 675509.8258196224, "sats": 31617994103.768898}, "total_volume": {"aed": 8293817.244409025, "ars": 145912891.9436996, "aud": 3556627.2844709503, "bch": 9713.832213842608, "bdt": 191766688.7959703, "bhd": 852316.7371693178, "bmd": 2258049.8895750167, "bnb": 164642.80421906352, "brl": 11531860.786059625, "btc": 329.23400689232136, "cad": 3150769.913418499, "chf": 2178792.3384509333, "clp": 1897977440.3371215, "cny": 15887864.828038795, "czk": 55809283.65576917, "dkk": 15414803.376172824, "eos": 907241.071609018, "eth": 14347.844422385833, "eur": 2064690.819480818, "gbp": 1814130.8295839073, "hkd": 17505983.37890825, "huf": 730614622.2708915, "idr": 35681704355.06448, "ils": 8080239.595603576, "inr": 172010337.41321117, "jpy": 244648422.55692598, "krw": 2737072593.149461, "kwd": 702253.5156578299, "lkr": 428776399.0456798, "ltc": 53591.51501711592, "mmk": 3198793709.762951, "mxn": 52688769.352821, "myr": 9731743.414090395, "ngn": 864274217.7790627, "nok": 23038318.510861516, "nzd": 3711457.2492993004, "php": 113946300.6207057, "pkr": 375965306.61424124, "pln": 9401277.812751116, "rub": 166622630.37668517, "sar": 8499627.201594355, "sek": 22449757.807143766, "sgd": 3191301.908936372, "thb": 73755460.31235094, "try": 15123289.13542869, "twd": 67834076.73272306, "uah": 61296821.33596323, "usd": 2258049.8895750167, "vef": 561097493123.0474, "vnd": 52670917366.19964, "xag": 147490.12850131837, "xau": 1337.081661612949, "xdr": 1649708.66882461, "xlm": 47460766.17062124, "xrp": 12001044.048514482, "zar": 40776587.48191047, "bits": 329234006.89232135, "link": 703399.4816996247, "sats": 32923400689.232136}}, "community_data": {"facebook_likes": null, "twitter_followers": 96, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2089, "reddit_accounts_active_48h": "30.9166666666667"}, "developer_data": {"forks": 4, "stars": 9, "subscribers": 4, "total_issues": 1, "closed_issues": 1, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1121889, "bing_matches": null}}, "GVT_20200415": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 2.5820836907722837, "ars": 45.426525260756584, "aud": 1.1072717223880062, "bch": 0.0030329254198376726, "bdt": 59.70201958661079, "bhd": 0.2653486424361102, "bmd": 0.7029903868152145, "bnb": 0.050924760204652454, "brl": 3.590171905465297, "btc": 0.00010214152196750674, "cad": 0.9809176362426097, "chf": 0.6788173593741862, "clp": 590.8903523828977, "cny": 4.946310660670536, "czk": 17.374899503408766, "dkk": 4.799034174632742, "eos": 0.2807012704213037, "eth": 0.004440092268990961, "eur": 0.642851668194333, "gbp": 0.5647866947096642, "hkd": 5.450073571862319, "huf": 227.45956955793048, "idr": 11108.654092454011, "ils": 2.515591345035366, "inr": 53.55134720122918, "jpy": 76.16549572312351, "krw": 852.1227674741947, "kwd": 0.21863001029953186, "lkr": 133.4893830353265, "ltc": 0.016548801131218226, "mmk": 995.8687085481357, "mxn": 16.403401235359087, "myr": 3.0297479690962095, "ngn": 257.99747196118375, "nok": 7.172435169078929, "nzd": 1.1554743672311518, "php": 35.474483676969896, "pkr": 117.0478994047333, "pln": 2.9268653259858075, "rub": 51.87401213828808, "sar": 2.6461577495785598, "sek": 6.989200724755541, "sgd": 0.9935363136859429, "thb": 22.96201683323843, "try": 4.708278115694904, "twd": 21.11853421031588, "uah": 19.083314474341414, "usd": 0.7029903868152145, "vef": 174684.4237378011, "vnd": 16397.84344186725, "xag": 0.04591756053099508, "xau": 0.00041626872764876147, "xdr": 0.5135977467033279, "xlm": 14.171920422404455, "xrp": 3.7308587994997344, "zar": 12.69482536203291, "bits": 102.14152196750675, "link": 0.21358401194168664, "sats": 10214.152196750674}, "market_cap": {"aed": 11453427.0303805, "ars": 201499817.44480053, "aud": 4911558.800552123, "bch": 13468.720077468612, "bdt": 264822061.09170562, "bhd": 1177015.030385606, "bmd": 3118275.804623061, "bnb": 225972.09480962597, "brl": 15925034.534209976, "btc": 453.1655705880068, "cad": 4351086.14398079, "chf": 3011050.772805293, "clp": 2621030278.0500326, "cny": 21940500.38890831, "czk": 77070369.30432226, "dkk": 21287221.60783979, "eos": 1246288.0575912204, "eth": 19701.50038576483, "eur": 2851516.664364972, "gbp": 2505241.4910889957, "hkd": 24175056.830501217, "huf": 1008949319.3438367, "idr": 49274994264.65356, "ils": 11158484.913400227, "inr": 237539336.83086863, "jpy": 337849602.0927338, "krw": 3779786833.815796, "kwd": 969783.7752377718, "lkr": 592122909.6444736, "ltc": 73460.02447505899, "mmk": 4417405069.385593, "mxn": 72761064.93784757, "myr": 13439145.062764464, "ngn": 1144407220.2966633, "nok": 31814988.465617962, "nzd": 5125372.735923527, "php": 157355244.40459803, "pkr": 519192921.46973884, "pln": 12982785.39875787, "rub": 230099130.76103783, "sar": 11737642.278592875, "sek": 31002209.877142955, "sgd": 4407059.194673773, "thb": 101853315.29328004, "try": 20884652.201462947, "twd": 93676123.44668138, "uah": 84648437.46575081, "usd": 3118275.804623061, "vef": 774853002547.9434, "vnd": 72736412064.4974, "xag": 203677.91750295076, "xau": 1846.4558349494985, "xdr": 2278181.120099563, "xlm": 62899258.84635763, "xrp": 16556969.393075133, "zar": 56310822.32814091, "bits": 453165570.5880068, "link": 947596.225077012, "sats": 45316557058.80068}, "total_volume": {"aed": 782157.6203737968, "ars": 13760476.868655078, "aud": 335411.6749140557, "bch": 918.7253448171216, "bdt": 18084769.962435544, "bhd": 80378.6738125325, "bmd": 212947.89555507666, "bnb": 15425.986927582488, "brl": 1087524.9025997755, "btc": 30.940426156197972, "cad": 297136.8460627762, "chf": 205625.4692185197, "clp": 178990864.46086872, "cny": 1498322.687915076, "czk": 5263156.302170598, "dkk": 1453710.1037962858, "eos": 85029.24924287092, "eth": 1344.9804186305657, "eur": 194730.8419340264, "gbp": 171083.6169763219, "hkd": 1650921.1498698443, "huf": 68901421.0858005, "idr": 3365002645.5613184, "ils": 762015.9436727196, "inr": 16221625.365751293, "jpy": 23071840.42960702, "krw": 258122662.1181308, "kwd": 66226.79551762888, "lkr": 40436233.16827853, "ltc": 5012.916877594099, "mmk": 301665783.3618725, "mxn": 4968872.744960363, "myr": 917762.8402632687, "ngn": 78151877.66871314, "nok": 2172654.141374558, "nzd": 350013.08621647616, "php": 10745832.071953112, "pkr": 35455824.60992029, "pln": 886597.9157487848, "rub": 15713531.686956882, "sar": 801566.7563141653, "sek": 2117149.272398127, "sgd": 300959.2607879899, "thb": 6955590.366591544, "try": 1426218.5304801273, "twd": 6397167.730370064, "uah": 5780664.620375415, "usd": 212947.89555507666, "vef": 52914920486.66367, "vnd": 4967189193.591506, "xag": 13909.21990896082, "xau": 126.0949668739832, "xdr": 155577.60301358358, "xlm": 4292918.774603828, "xrp": 1130141.3858102185, "zar": 3845481.241260147, "bits": 30940426.156197973, "link": 64698.275709348825, "sats": 3094042615.619797}}, "community_data": {"facebook_likes": null, "twitter_followers": 20531, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5571, "reddit_accounts_active_48h": "31.0769230769231"}, "developer_data": {"forks": 2, "stars": 16, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 153070, "bing_matches": null}}, "BNT_20200424": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 0.6734581345057503, "ars": 12.089280323642472, "aud": 0.28887468811202044, "bch": 0.0008352794189635967, "bdt": 15.577491301713644, "bhd": 0.06925887385607256, "bmd": 0.18334870667984787, "bnb": 0.012200630233531814, "brl": 0.9747733990634125, "btc": 2.679513821151501e-05, "cad": 0.2590007665891402, "chf": 0.17748411494798633, "clp": 157.25809074467563, "cny": 1.2969170766999047, "czk": 4.6244946027104925, "dkk": 1.2585971970038177, "eos": 0.07304111130094762, "eth": 0.0010747115543164047, "eur": 0.16875249948977203, "gbp": 0.1473509383538601, "hkd": 1.4210166488161597, "huf": 59.47806834247108, "idr": 2881.7832972405113, "ils": 0.6511445969028121, "inr": 14.043209155858932, "jpy": 19.741124689490302, "krw": 223.54882736293806, "kwd": 0.05710963850534562, "lkr": 35.30129167810203, "ltc": 0.004545631513234015, "mmk": 260.4044663193079, "mxn": 4.402239117124493, "myr": 0.8020589173709943, "ngn": 70.83596352456794, "nok": 1.914324778178798, "nzd": 0.30338288792288964, "php": 9.300117825765742, "pkr": 29.991914666321215, "pln": 0.7632218109733642, "rub": 13.842864024069872, "sar": 0.6880864277194942, "sek": 1.837062366578737, "sgd": 0.2605568470627319, "thb": 5.9569994800282675, "try": 1.272770052030169, "twd": 5.508895607600124, "uah": 4.965430422689447, "usd": 0.18334870667984787, "vef": 45559.88783081202, "vnd": 4299.1380383978885, "xag": 0.012015115771790449, "xau": 0.0001083884214408589, "xdr": 0.13450277773326969, "xlm": 3.68127842260446, "xrp": 1.0002596197316427, "zar": 3.445030524161003, "bits": 26.79513821151501, "link": 0.05329613127179875, "sats": 2679.513821151501}, "market_cap": {"aed": 46948935.88239279, "ars": 842601171.0685593, "aud": 20139586.515914418, "bch": 58139.08549743003, "bdt": 1085957096.45622, "bhd": 4828259.19140743, "bmd": 12781828.940783774, "bnb": 847794.5281730503, "brl": 67968653.57551186, "btc": 1866.5732142433712, "cad": 18053566.469120633, "chf": 12373206.651375856, "clp": 10961695809.397402, "cny": 90412267.01263398, "czk": 322013881.90623087, "dkk": 87750118.80816326, "eos": 5087698.675931576, "eth": 74710.87375647493, "eur": 11765520.158044176, "gbp": 10274034.102601983, "hkd": 99065309.56896587, "huf": 4146953338.5256357, "idr": 200898396376.7694, "ils": 45393387.30029954, "inr": 978997345.8785563, "jpy": 1376462366.3229635, "krw": 15584308091.067404, "kwd": 3981296.8603042676, "lkr": 2460966754.4920106, "ltc": 316314.36613859166, "mmk": 18153634155.278786, "mxn": 306934212.4494464, "myr": 55914110.701458685, "ngn": 4938203192.278867, "nok": 133450282.78487055, "nzd": 21146948.018395558, "php": 648427678.3524051, "pkr": 2090832980.5722957, "pln": 53218998.160149634, "rub": 965030641.3949633, "sar": 47968721.32260442, "sek": 128121218.75373425, "sgd": 18158581.975698106, "thb": 415358262.1323938, "try": 88719594.96966398, "twd": 384017268.69690776, "uah": 346156149.2822669, "usd": 12781828.940783774, "vef": 3176126537023.1284, "vnd": 299746810758.1105, "xag": 837000.3014449971, "xau": 7553.549630845579, "xdr": 9376621.892669555, "xlm": 256217167.22001576, "xrp": 69717037.17801477, "zar": 240307906.5492956, "bits": 1866573214.2433712, "link": 3712656.0150373387, "sats": 186657321424.33713}, "total_volume": {"aed": 25406394.26538264, "ars": 456071441.6384716, "aud": 10897877.452842273, "bch": 31511.14694831512, "bdt": 587665164.9138649, "bhd": 2612810.159097955, "bmd": 6916880.636351474, "bnb": 460272.14776571986, "brl": 36773595.903162666, "btc": 1010.8539950991675, "cad": 9770875.506358374, "chf": 6695637.292317139, "clp": 5932604938.854496, "cny": 48926555.181232184, "czk": 174460337.07919168, "dkk": 47480927.12823477, "eos": 2755496.112101272, "eth": 40543.79043259092, "eur": 6366234.685772176, "gbp": 5558854.876613413, "hkd": 53608245.83994667, "huf": 2243826567.7215476, "idr": 108716071401.85439, "ils": 24564609.891938638, "inr": 529783946.89200526, "jpy": 744739385.2794684, "krw": 8433441300.274721, "kwd": 2154476.8974913904, "lkr": 1331750985.693192, "ltc": 171485.20523124692, "mmk": 9823830466.655981, "mxn": 166075687.45492655, "myr": 30257894.343719516, "ngn": 2672306302.7432632, "nok": 72218431.3685596, "nzd": 11445203.30071611, "php": 350849515.492637, "pkr": 1131453270.4330451, "pln": 28792753.770446982, "rub": 522225871.42066437, "sar": 25958250.670073267, "sek": 69303685.53592363, "sgd": 9829579.072319083, "thb": 224729451.87505975, "try": 48015602.0014247, "twd": 207824609.4335777, "uah": 187322235.1212041, "usd": 6916880.636351474, "vef": 1718759360989.403, "vnd": 162186170763.2368, "xag": 453273.5634210665, "xau": 4088.9831569855387, "xdr": 5074154.466021081, "xlm": 138877245.98348618, "xrp": 37735070.6221618, "zar": 129964728.71672606, "bits": 1010853995.0991675, "link": 2010611.2830675838, "sats": 101085399509.91675}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 5013, "reddit_accounts_active_48h": "133.923076923077"}, "developer_data": {"forks": 245, "stars": 584, "subscribers": 65, "total_issues": 54, "closed_issues": 33, "pull_requests_merged": 233, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 25, "deletions": -8}, "commit_count_4_weeks": 5}, "public_interest_stats": {"alexa_rank": 138596, "bing_matches": null}}, "ARK_20200425": {"id": "ark", "symbol": "ark", "name": "Ark", "localization": {"en": "Ark", "de": "Ark", "es": "Ark", "fr": "Ark", "it": "Ark", "pl": "Ark", "ro": "Ark", "hu": "Ark", "nl": "Ark", "pt": "Ark", "sv": "Ark", "vi": "Ark", "tr": "Ark", "ru": "Ark", "ja": "\u30a2\u30fc\u30af", "zh": "Ark", "zh-tw": "Ark", "ko": "\uc544\ud06c", "ar": "Ark", "th": "Ark", "id": "Ark"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/613/thumb/ark.png?1547034308", "small": "https://assets.coingecko.com/coins/images/613/small/ark.png?1547034308"}, "market_data": {"current_price": {"aed": 0.5915698411894029, "ars": 10.637305723245007, "aud": 0.25596041054098295, "bch": 0.0007334384898390119, "bdt": 13.685151590012248, "bhd": 0.06085461498466431, "bmd": 0.16105026712114856, "bnb": 0.010674201103504083, "brl": 0.8564492155235547, "btc": 2.352658515690289e-05, "cad": 0.22854804457429304, "chf": 0.1561807512444735, "clp": 138.31002077867754, "cny": 1.1389152790273385, "czk": 4.0818673352656525, "dkk": 1.106109339614759, "eos": 0.06396466796386235, "eth": 0.0009448282325093322, "eur": 0.14834050214048178, "gbp": 0.13094578488926062, "hkd": 1.24817983275568, "huf": 52.53137612957613, "idr": 2480.7390780027467, "ils": 0.5722760191882899, "inr": 12.396022955288082, "jpy": 17.34646256493484, "krw": 198.38977155318662, "kwd": 0.050169735012511804, "lkr": 31.012914447381487, "ltc": 0.003976319737337164, "mmk": 231.18756906951026, "mxn": 3.9270497134820963, "myr": 0.7078964491310087, "ngn": 62.80960417724794, "nok": 1.7077116461442066, "nzd": 0.2700597172263728, "php": 8.19432858452496, "pkr": 25.986022343329044, "pln": 0.6726989132516812, "rub": 12.393639411334684, "sar": 0.6045540358252439, "sek": 1.6263604857635694, "sgd": 0.23049675280645898, "thb": 5.233599638751544, "try": 1.1235027684638446, "twd": 4.844713974488128, "uah": 4.3606967226875675, "usd": 0.16105026712114856, "vef": 40019.001159217354, "vnd": 3769.9240416683397, "xag": 0.010810581316143325, "xau": 9.531276908763797e-05, "xdr": 0.11821089606692302, "xlm": 3.1704744896145276, "xrp": 0.8795848344506505, "zar": 3.055527803458665, "bits": 23.52658515690289, "link": 0.04661737761864718, "sats": 2352.6585156902893}, "market_cap": {"aed": 88191576.38159326, "ars": 1585453188.111272, "aud": 38146602.26198458, "bch": 109294.90670516642, "bdt": 2040190367.5779705, "bhd": 9070824.877523333, "bmd": 24009467.598168734, "bnb": 1590689.4846387713, "brl": 127679947.74030128, "btc": 3505.9179665760826, "cad": 34071235.23187129, "chf": 23286230.405709058, "clp": 20614491328.98032, "cny": 169790152.96072942, "czk": 608294267.2801639, "dkk": 164922353.4525388, "eos": 9537878.284649951, "eth": 140622.90242800047, "eur": 22117545.560900632, "gbp": 19523058.482774917, "hkd": 186075894.87990525, "huf": 7830687857.142724, "idr": 369845992520.08655, "ils": 85315242.16333263, "inr": 1848006320.0842862, "jpy": 2586099770.8581147, "krw": 29577023039.508068, "kwd": 7479381.327246338, "lkr": 4623423343.899578, "ltc": 593455.3833639381, "mmk": 34465577411.91666, "mxn": 585575404.6032659, "myr": 105533614.8277506, "ngn": 9363692363.285807, "nok": 254797089.5506342, "nzd": 40237082.596289314, "php": 1220655690.3525205, "pkr": 3874011341.987493, "pln": 100291027.5303523, "rub": 1844320866.807965, "sar": 90120761.11257364, "sek": 242505466.62321946, "sgd": 34363118.3294622, "thb": 780535786.8826644, "try": 167496048.3317245, "twd": 722492850.9451582, "uah": 650095206.5484588, "usd": 24009467.598168734, "vef": 5966055994930.638, "vnd": 562100080384.6295, "xag": 1613379.800348083, "xau": 14217.686427607581, "xdr": 17622949.217055853, "xlm": 472018782.35961366, "xrp": 131233262.19187218, "zar": 455696093.59310246, "bits": 3505917966.5760827, "link": 6946894.360481518, "sats": 350591796657.6083}, "total_volume": {"aed": 2940680.028396312, "ars": 52877801.26417427, "aud": 1272373.2937849315, "bch": 3645.9058068110485, "bdt": 68028572.73016432, "bhd": 302506.8866954859, "bmd": 800577.1611663705, "bnb": 53061.20734797632, "brl": 4257389.285366635, "btc": 116.95011187211412, "cad": 1136107.0551828074, "chf": 776370.910121344, "clp": 687535921.3937932, "cny": 5661521.568336339, "czk": 20290868.32291004, "dkk": 5498444.000606742, "eos": 317966.8882817635, "eth": 4696.719339205813, "eur": 737397.212761443, "gbp": 650928.4747381848, "hkd": 6204673.143329654, "huf": 261132258.4292462, "idr": 12331696706.643467, "ils": 2844770.884488584, "inr": 61620344.03725937, "jpy": 86228865.09134287, "krw": 986190975.9827924, "kwd": 249392.59493790352, "lkr": 154164482.0067475, "ltc": 19766.19364941847, "mmk": 1149228070.5339992, "mxn": 19521273.497880828, "myr": 3518936.9119067825, "ngn": 312225092.8548845, "nok": 8488995.182680752, "nzd": 1342460.6219364114, "php": 40733818.28624098, "pkr": 129175917.36733204, "pln": 3343970.7733338694, "rub": 61608495.49527408, "sar": 3005224.1602838663, "sek": 8084600.441837951, "sgd": 1145794.0388329208, "thb": 26016103.02404056, "try": 5584906.334012717, "twd": 24082961.361629616, "uah": 21676922.77300341, "usd": 800577.1611663705, "vef": 198933531210.224, "vnd": 18740205409.416306, "xag": 53739.15023764479, "xau": 473.79757552148055, "xdr": 587623.6362961158, "xlm": 15760355.520159747, "xrp": 4372395.913133036, "zar": 15188958.196000589, "bits": 116950111.87211412, "link": 231733.90831375043, "sats": 11695011187.211412}}, "community_data": {"facebook_likes": null, "twitter_followers": 62444, "reddit_average_posts_48h": 0.455, "reddit_average_comments_48h": 1.0, "reddit_subscribers": 22035, "reddit_accounts_active_48h": "885.083333333333"}, "developer_data": {"forks": 178, "stars": 258, "subscribers": 35, "total_issues": 824, "closed_issues": 790, "pull_requests_merged": 2525, "pull_request_contributors": 45, "code_additions_deletions_4_weeks": {"additions": 1, "deletions": -1}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 88173, "bing_matches": null}}, "GTO_20200521": {"id": "gifto", "symbol": "gto", "name": "Gifto", "localization": {"en": "Gifto", "de": "Gifto", "es": "Gifto", "fr": "Gifto", "it": "Gifto", "pl": "Gifto", "ro": "Gifto", "hu": "Gifto", "nl": "Gifto", "pt": "Gifto", "sv": "Gifto", "vi": "Gifto", "tr": "Gifto", "ru": "Gifto", "ja": "\u30ae\u30d5\u30c8", "zh": "Gifto", "zh-tw": "Gifto", "ko": "\uae30\ud504\ud1a0", "ar": "Gifto", "th": "Gifto", "id": "Gifto"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1359/thumb/gifto.png?1547742697", "small": "https://assets.coingecko.com/coins/images/1359/small/gifto.png?1547742697"}, "market_data": {"current_price": {"aed": 0.03319050621212307, "ars": 0.6111328157797298, "aud": 0.014071711256773131, "bch": 3.726097284901398e-05, "bdt": 0.7673267016864815, "bhd": 0.0034116081698380525, "bmd": 0.009036175790856985, "bnb": 0.0005507443311199326, "brl": 0.049546255478847945, "btc": 9.252340978056274e-07, "cad": 0.012734818084691622, "chf": 0.008780858643886313, "clp": 7.481051852919759, "cny": 0.06417672770182445, "czk": 0.23098905088894012, "dkk": 0.062253829493530116, "eos": 0.0034309048099845224, "eth": 4.324358936778356e-05, "eur": 0.008350077035408795, "gbp": 0.007475040880349579, "hkd": 0.0700403021725115, "huf": 2.961877700727103, "idr": 133.9113270111553, "ils": 0.031965923668946135, "inr": 0.6852132102206846, "jpy": 0.9691546833539716, "krw": 11.128321571714055, "kwd": 0.002793334949876035, "lkr": 1.6974417457930673, "ltc": 0.00020513840974045774, "mmk": 12.692266886507449, "mxn": 0.216219457703487, "myr": 0.039353458222937066, "ngn": 3.4917339466066086, "nok": 0.09235423467045377, "nzd": 0.015236402026808218, "php": 0.4575412219942834, "pkr": 1.4457881265371193, "pln": 0.038105462948286, "rub": 0.6653905513882821, "sar": 0.033954903430798974, "sek": 0.08910663309121973, "sgd": 0.012893918031841232, "thb": 0.28976758524565815, "try": 0.062263317478110494, "twd": 0.27080515227619256, "uah": 0.24059898769781343, "usd": 0.009036175790856985, "vef": 2245.378017145256, "vnd": 210.82418635943762, "xag": 0.0005314626791392536, "xau": 5.137517745891737e-06, "xdr": 0.006648176578431415, "xlm": 0.13024962137891505, "xrp": 0.04468401971032102, "zar": 0.1678791069924568, "bits": 0.9252340978056274, "link": 0.002365852463999549, "sats": 92.52340978056274}, "market_cap": {"aed": 21930594.306538057, "ars": 403874397.2145763, "aud": 9297170.79517753, "bch": 24681.317181079015, "bdt": 507010362.77396894, "bhd": 2254216.7397935353, "bmd": 5970644.258491686, "bnb": 365485.06748993736, "brl": 32737639.533735756, "btc": 613.1174269165089, "cad": 8416267.911923936, "chf": 5802403.444575908, "clp": 4941908599.548416, "cny": 42404709.65265966, "czk": 152719527.10140345, "dkk": 41140246.6115963, "eos": 2270946.5178421736, "eth": 28681.576504511624, "eur": 5518033.599832463, "gbp": 4938170.600092009, "hkd": 46278165.11535611, "huf": 1957390692.201615, "idr": 88498949071.63321, "ils": 21121452.596627243, "inr": 452753954.1214243, "jpy": 640211277.0898361, "krw": 7359953471.000127, "kwd": 1845693.3183390207, "lkr": 1121582962.5512743, "ltc": 135937.04780821162, "mmk": 8386402850.843931, "mxn": 142919317.5861595, "myr": 26002758.78080138, "ngn": 2307159767.916607, "nok": 61033991.45321546, "nzd": 10069049.714271102, "php": 302356261.3060418, "pkr": 955303081.3586667, "pln": 25193127.478061385, "rub": 439653763.55386776, "sar": 22435669.016296674, "sek": 58917045.795568876, "sgd": 8517153.887959654, "thb": 191460470.31772515, "try": 41138903.21663814, "twd": 178934237.7827376, "uah": 158975544.27287453, "usd": 5970644.258491686, "vef": 1483631314452.3633, "vnd": 139330802194.58633, "xag": 351752.9237708291, "xau": 3393.1171321008264, "xdr": 4392776.129655828, "xlm": 86358529.4064588, "xrp": 29556186.06744588, "zar": 110931823.82641657, "bits": 613117426.9165089, "link": 1567760.395592571, "sats": 61311742691.65089}, "total_volume": {"aed": 18257131.330204308, "ars": 336166372.5940015, "aud": 7740438.751180707, "bch": 20496.176540602104, "bdt": 422084082.60870826, "bhd": 1876626.34627672, "bmd": 4970537.269968801, "bnb": 302948.42502129334, "brl": 27253952.904965945, "btc": 508.944344712961, "cad": 7005052.732626088, "chf": 4830094.739405829, "clp": 4115108859.5610685, "cny": 35301749.79877241, "czk": 127060353.07103164, "dkk": 34244019.467723064, "eos": 1887240.8663185118, "eth": 23787.03974055928, "eur": 4593134.316134609, "gbp": 4111802.3985226424, "hkd": 38527131.433255136, "huf": 1629242706.3503742, "idr": 73660722985.64714, "ils": 17583524.11937814, "inr": 376915841.1817339, "jpy": 533103780.34587425, "krw": 6121365764.084653, "kwd": 1536532.2451909143, "lkr": 933713293.8031489, "ltc": 112840.66785738943, "mmk": 6981646557.120929, "mxn": 118936029.78541642, "myr": 21647191.83497841, "ngn": 1920701203.7088082, "nok": 50801376.167716116, "nzd": 8381101.240981498, "php": 251680107.72552365, "pkr": 795285963.1950092, "pln": 20960705.962085735, "rub": 366011973.57260364, "sar": 18677603.989482746, "sek": 49014965.072889306, "sgd": 7092568.982338424, "thb": 159392713.8457992, "try": 34249238.53185652, "twd": 148962031.44369477, "uah": 132346499.57549442, "usd": 4970537.269968801, "vef": 1235117086885.5645, "vnd": 115968248069.137, "xag": 292342.14953321515, "xau": 2825.9989648407613, "xdr": 3656968.4150968743, "xlm": 71646525.3053496, "xrp": 24579378.54273495, "zar": 92345409.9907399, "bits": 508944344.712961, "link": 1301386.5732288961, "sats": 50894434471.296104}}, "community_data": {"facebook_likes": null, "twitter_followers": 16688, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 5, "stars": 4, "subscribers": 2, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1039704, "bing_matches": null}}, "ONG_20200526": {"id": "ong", "symbol": "ong", "name": "Ontology Gas", "localization": {"en": "Ontology Gas", "de": "Ontology Gas", "es": "Ontology Gas", "fr": "Ontology Gas", "it": "Ontology Gas", "pl": "Ontology Gas", "ro": "Ontology Gas", "hu": "Ontology Gas", "nl": "Ontology Gas", "pt": "Ontology Gas", "sv": "Ontology Gas", "vi": "Ontology Gas", "tr": "Ontology Gas", "ru": "Ontology Gas", "ja": "Ontology Gas", "zh": "Ontology Gas", "zh-tw": "Ontology Gas", "ko": "Ontology Gas", "ar": "Ontology Gas", "th": "Ontology Gas", "id": "Ontology Gas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5716/thumb/ONG_logo.png?1583481389", "small": "https://assets.coingecko.com/coins/images/5716/small/ONG_logo.png?1583481389"}, "market_data": {"current_price": {"aed": 0.3751679252934939, "ars": 6.961526975477359, "aud": 0.15627405662431493, "bch": 0.0004375265174284854, "bdt": 8.684708428502963, "bhd": 0.03856536903145601, "bmd": 0.10214070739398967, "bnb": 0.006219181499387371, "brl": 0.5648585400302408, "btc": 1.1178560492394888e-05, "cad": 0.14302252552843417, "chf": 0.09918679813615544, "clp": 82.58069502587725, "cny": 0.7283041000021031, "czk": 2.557490958367365, "dkk": 0.6986475456102589, "eos": 0.03993426257797946, "eth": 0.00049497295658198, "eur": 0.09370276141546474, "gbp": 0.08395547370885627, "hkd": 0.7922748250429592, "huf": 32.78427363151157, "idr": 1512.3310629229943, "ils": 0.36069458705576507, "inr": 7.762192659632732, "jpy": 10.992889689625422, "krw": 126.72189003542712, "kwd": 0.03155678011220271, "lkr": 19.119791536983136, "ltc": 0.0023252274926623575, "mmk": 143.4472780686945, "mxn": 2.32169913534834, "myr": 0.4456909767136732, "ngn": 39.88594623735297, "nok": 1.0213335326305728, "nzd": 0.16745774909900527, "php": 5.18327830073372, "pkr": 16.40379760747468, "pln": 0.42295956228314135, "rub": 7.316522723904783, "sar": 0.3838499875626905, "sek": 0.986856447553268, "sgd": 0.1455127159746992, "thb": 3.2573566340540068, "try": 0.6960582786778209, "twd": 3.0726989005333905, "uah": 2.7338183000743497, "usd": 0.10214070739398967, "vef": 25380.703557160312, "vnd": 2376.3510524394064, "xag": 0.00593498079398564, "xau": 5.885551841456465e-05, "xdr": 0.07487189631889406, "xlm": 1.5271544644570407, "xrp": 0.511755258634866, "zar": 1.7990635209406238, "bits": 11.178560492394888, "link": 0.025870762673738598, "sats": 1117.8560492394888}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 38852633.32722931, "ars": 720940242.3308069, "aud": 16183842.51754283, "bch": 45310.529516323084, "bdt": 899394029.6536728, "bhd": 3993854.594409351, "bmd": 10577757.810873605, "bnb": 644062.4640343582, "brl": 58497116.24569313, "btc": 1157.6589645756756, "cad": 14811505.37467578, "chf": 10271849.054983135, "clp": 8552110261.659938, "cny": 75423644.29465307, "czk": 264855420.05068284, "dkk": 72352392.31426598, "eos": 4135618.0966743156, "eth": 51259.71996121429, "eur": 9703918.66035952, "gbp": 8694483.232467849, "hkd": 82048494.01160325, "huf": 3395160610.5671544, "idr": 156617984363.02792, "ils": 37353765.04542847, "inr": 803857699.1465731, "jpy": 1138430775.9880424, "krw": 13123401005.638437, "kwd": 3268040.586700646, "lkr": 1980057994.8254719, "ltc": 240802.0651129209, "mmk": 14855493022.843287, "mxn": 240436666.1442811, "myr": 46156046.2077469, "ngn": 4130614425.146143, "nok": 105769962.12311222, "nzd": 17342032.953528836, "php": 536783657.8616062, "pkr": 1698787904.4262946, "pln": 43801966.20693704, "rub": 757703831.9569353, "sar": 39751753.31891139, "sek": 102199492.86284082, "sgd": 15069391.110104833, "thb": 337333962.7046015, "try": 72084246.1537603, "twd": 318210688.2245106, "uah": 283115993.75923526, "usd": 10577757.810873605, "vef": 2628442098620.298, "vnd": 246096454074.46793, "xag": 614630.4549155743, "xau": 6095.115605781581, "xdr": 7753782.074831245, "xlm": 158153105.4265198, "xrp": 52997706.03115218, "zar": 186312183.4224466, "bits": 1157658964.5756755, "link": 2679192.9381281985, "sats": 115765896457.56755}}, "community_data": {"facebook_likes": null, "twitter_followers": 84686, "reddit_average_posts_48h": 0.636, "reddit_average_comments_48h": 2.455, "reddit_subscribers": 16467, "reddit_accounts_active_48h": "337.083333333333"}, "developer_data": {"forks": 3, "stars": 0, "subscribers": 5, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 164481, "bing_matches": null}}, "VIA_20200610": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 0.6470761943666271, "ars": 12.139411020297942, "aud": 0.25282146007345446, "bch": 0.0006962162527869821, "bdt": 14.964732778536833, "bhd": 0.06638688169767627, "bmd": 0.1761710303203449, "bnb": 0.01004925601402818, "brl": 0.8747645667414904, "btc": 1.8233224016143702e-05, "cad": 0.23645147176505754, "chf": 0.16953819102878392, "clp": 135.05711611933438, "cny": 1.2476432367286834, "czk": 4.151382243983763, "dkk": 1.1635039526476854, "eos": 0.06300960200386593, "eth": 0.0007285257577015685, "eur": 0.1560209402143645, "gbp": 0.139095132305307, "hkd": 1.3653519106372212, "huf": 53.6652192561835, "idr": 2468.4732426426085, "ils": 0.6111196870782446, "inr": 13.31227582064171, "jpy": 19.306583704323785, "krw": 212.23588279237444, "kwd": 0.05430260604388249, "lkr": 32.66875331180053, "ltc": 0.0037707902769228063, "mmk": 246.97557377942695, "mxn": 3.8021672191312694, "myr": 0.751897957407232, "ngn": 68.34286002411864, "nok": 1.6383236369876855, "nzd": 0.27075743267036767, "php": 8.776021182926529, "pkr": 28.799559181618413, "pln": 0.6921495524740878, "rub": 12.065953866640417, "sar": 0.6615097107097416, "sek": 1.6177362903844499, "sgd": 0.2453622024786601, "thb": 5.548416224200717, "try": 1.1926778752687344, "twd": 5.23730047487838, "uah": 4.6845724996287705, "usd": 0.1761710303203449, "vef": 43776.32395547021, "vnd": 4097.7381652512295, "xag": 0.01011317727250304, "xau": 0.00010462268977634317, "xdr": 0.12779058963171108, "xlm": 2.208962940900605, "xrp": 0.8672108956872246, "zar": 2.969861280065212, "bits": 18.2332240161437, "link": 0.04055357743525509, "sats": 1823.3224016143702}, "market_cap": {"aed": 14992680.29157138, "ars": 281268743.8354204, "aud": 5857843.874846567, "bch": 16113.063725934353, "bdt": 346731120.926202, "bhd": 1538176.3407659759, "bmd": 4081862.31733498, "bnb": 232567.74148539032, "brl": 20268193.442639984, "btc": 422.0479569552806, "cad": 5478553.146457503, "chf": 3928180.2010873156, "clp": 3129257699.026926, "cny": 28907748.931366336, "czk": 96187044.57684033, "dkk": 26958251.48860714, "eos": 1457461.2757515258, "eth": 16861.11565607249, "eur": 3614987.069202839, "gbp": 3222818.065202563, "hkd": 31635045.238693688, "huf": 1243416899.1065805, "idr": 57194238418.034195, "ils": 14159572.192603324, "inr": 308443885.07825917, "jpy": 447331302.745138, "krw": 4917480761.628209, "kwd": 1258185.0769707, "lkr": 756931221.0712044, "ltc": 87263.49599865281, "mmk": 5722395368.178769, "mxn": 88095772.99830301, "myr": 17421388.370385684, "ngn": 1583496131.481346, "nok": 37959768.44353471, "nzd": 6273418.277374437, "php": 203339391.82612845, "pkr": 667282442.326336, "pln": 16037024.765461536, "rub": 279566750.1142727, "sar": 15327103.18936831, "sek": 37482762.013130955, "sgd": 5685013.742468306, "thb": 128556159.68909633, "try": 27634207.888357818, "twd": 121347643.90089309, "uah": 108541000.89150779, "usd": 4081862.31733498, "vef": 1014292343186.9537, "vnd": 94944117501.2116, "xag": 234321.14316465723, "xau": 2424.095574395725, "xdr": 2960893.124023814, "xlm": 51050155.278602555, "xrp": 20096543.337691855, "zar": 68811341.02903926, "bits": 422047956.9552806, "link": 938701.4873849552, "sats": 42204795695.52806}, "total_volume": {"aed": 479711.87838929705, "ars": 8999588.786892328, "aud": 187429.94807230477, "bch": 516.1420081548683, "bdt": 11094149.550367128, "bhd": 49216.11395513086, "bmd": 130604.92196822673, "bnb": 7450.046101020693, "brl": 648509.3364788488, "btc": 13.517255337199662, "cad": 175294.00811809505, "chf": 125687.646656123, "clp": 100124998.3038918, "cny": 924944.0573789822, "czk": 3077639.6837202758, "dkk": 862567.1466469563, "eos": 46712.357519847996, "eth": 540.0947565751305, "eur": 115666.5922033449, "gbp": 103118.59372032553, "hkd": 1012207.7359920525, "huf": 39784871.329961255, "idr": 1830010045.6343992, "ils": 453055.4138155819, "inr": 9869095.626068074, "jpy": 14312993.76288571, "krw": 157341708.56895235, "kwd": 40257.39993764229, "lkr": 24219078.297541305, "ltc": 2795.486686889049, "mmk": 183096082.7263494, "mxn": 2818748.077148766, "myr": 557421.8069603917, "ngn": 50666184.35678557, "nok": 1214576.1444341603, "nzd": 200726.83517788906, "php": 6506129.638360057, "pkr": 21350639.61875589, "pln": 513127.1476748681, "rub": 8945131.105603846, "sar": 490412.2090412311, "sek": 1199313.6532529534, "sgd": 181900.0050712476, "thb": 4113335.017064338, "try": 884195.3217248946, "twd": 3882688.422732433, "uah": 3472921.8796982886, "usd": 130604.92196822673, "vef": 32453709124.954433, "vnd": 3037870484.980959, "xag": 7497.434317800939, "xau": 77.56234500927077, "xdr": 94737.93708746834, "xlm": 1637621.304719763, "xrp": 642909.3997763039, "zar": 2201715.571703626, "bits": 13517255.337199662, "link": 30064.516321627434, "sats": 1351725533.7199662}}, "community_data": {"facebook_likes": null, "twitter_followers": 38829, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2157, "reddit_accounts_active_48h": "258.25"}, "developer_data": {"forks": 37, "stars": 79, "subscribers": 31, "total_issues": 15, "closed_issues": 13, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1856302, "bing_matches": null}}, "QSP_20200613": {"id": "quantstamp", "symbol": "qsp", "name": "Quantstamp", "localization": {"en": "Quantstamp", "de": "Quantstamp", "es": "Quantstamp", "fr": "Quantstamp", "it": "Quantstamp", "pl": "Quantstamp", "ro": "Quantstamp", "hu": "Quantstamp", "nl": "Quantstamp", "pt": "Quantstamp", "sv": "Quantstamp", "vi": "Quantstamp", "tr": "Quantstamp", "ru": "Quantstamp", "ja": "\u30af\u30aa\u30f3\u30c8\u30b9\u30bf\u30f3\u30d7", "zh": "Quantstamp", "zh-tw": "Quantstamp", "ko": "\ud000\ud2b8\uc2a4\ud0ec\ud504", "ar": "Quantstamp", "th": "Quantstamp", "id": "Quantstamp"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1219/thumb/0_E0kZjb4dG4hUnoDD_.png?1604815917", "small": "https://assets.coingecko.com/coins/images/1219/small/0_E0kZjb4dG4hUnoDD_.png?1604815917"}, "market_data": {"current_price": {"aed": 0.05680320339044141, "ars": 1.068585242661291, "aud": 0.022274643514424784, "bch": 6.0816547253227504e-05, "bdt": 1.3141498270877843, "bhd": 0.005838859607572614, "bmd": 0.01546422829969547, "bnb": 0.000891585932320553, "brl": 0.07577317224567791, "btc": 1.583593715072714e-06, "cad": 0.02075709239869081, "chf": 0.014705646044682212, "clp": 11.90590925968595, "cny": 0.10944498294543481, "czk": 0.36210727702000856, "dkk": 0.10173451871520663, "eos": 0.005622104468340924, "eth": 6.344695108604265e-05, "eur": 0.01364350098814593, "gbp": 0.01216505890578185, "hkd": 0.11984947038775297, "huf": 4.698032557447486, "idr": 214.55761594002496, "ils": 0.05326375081720717, "inr": 1.1677061057588807, "jpy": 1.6672809288228907, "krw": 18.53047548695911, "kwd": 0.004760724538974449, "lkr": 2.862835676762477, "ltc": 0.00033709865666306684, "mmk": 21.651113860068403, "mxn": 0.33841453284204537, "myr": 0.06611730809534794, "ngn": 5.992388466131994, "nok": 0.1435320081750385, "nzd": 0.023795442118101754, "php": 0.7726041502036731, "pkr": 2.5353602297350752, "pln": 0.06062625444646391, "rub": 1.0611754494218935, "sar": 0.05802784655795095, "sek": 0.14235363397860173, "sgd": 0.02149829286109514, "thb": 0.4844942726294591, "try": 0.10509334910190041, "twd": 0.4598767675991747, "uah": 0.4120535333327678, "usd": 0.01546422829969547, "vef": 3842.669629267871, "vnd": 357.290921991933, "xag": 0.0008807011009039952, "xau": 9.022758643740321e-06, "xdr": 0.011205488075557444, "xlm": 0.19742979603760677, "xrp": 0.07688174192430043, "zar": 0.25693660677661023, "bits": 1.583593715072714, "link": 0.0034871840100197844, "sats": 158.3593715072714}, "market_cap": {"aed": 40602338.44851332, "ars": 763780346.7343315, "aud": 15907214.04648056, "bch": 43431.45048021696, "bdt": 939340615.7873861, "bhd": 4173224.4534816006, "bmd": 11053669.402295887, "bnb": 636841.2122435233, "brl": 54165190.8051304, "btc": 1130.7716733102156, "cad": 14832808.434246864, "chf": 10511431.649766278, "clp": 8510219995.451926, "cny": 78230134.46086875, "czk": 258901808.15792534, "dkk": 72704040.35557075, "eos": 4017057.1418680204, "eth": 45265.83728399847, "eur": 9752077.722836753, "gbp": 8694517.90277209, "hkd": 85670912.01902421, "huf": 3357160559.977144, "idr": 153366446339.059, "ils": 38072374.5957158, "inr": 834662112.3132484, "jpy": 1191481657.0751195, "krw": 13245501508.077162, "kwd": 3402827.9108191887, "lkr": 2046325138.943639, "ltc": 240871.19743272103, "mmk": 15475990793.887468, "mxn": 241852020.5200065, "myr": 47259963.529516086, "ngn": 4283296893.3896565, "nok": 102565561.40688136, "nzd": 16995193.56474037, "php": 552293408.2289267, "pkr": 1812249098.5064065, "pln": 43329002.34832467, "rub": 758517164.1557671, "sar": 41466646.966417566, "sek": 101749800.60499184, "sgd": 15364909.971934548, "thb": 346284480.36691964, "try": 75116371.05858898, "twd": 328715126.0524151, "uah": 294531576.0501291, "usd": 11053669.402295887, "vef": 2746700247887.9946, "vnd": 255340642733.50964, "xag": 629372.6125242894, "xau": 6441.415307493908, "xdr": 8009566.224589416, "xlm": 140914524.64572462, "xrp": 54932468.8891486, "zar": 183707486.62271136, "bits": 1130771673.3102157, "link": 2490038.234314184, "sats": 113077167331.02156}, "total_volume": {"aed": 1080092.260420386, "ars": 20318759.88163229, "aud": 423544.2479922152, "bch": 1156.4045348321906, "bdt": 24988081.174118344, "bhd": 111023.79259268366, "bmd": 294046.6787597696, "bnb": 16953.182347479575, "brl": 1440799.3212549966, "btc": 30.11145874192418, "cad": 394688.5652654835, "chf": 279622.51297988795, "clp": 226386535.91882002, "cny": 2081056.5595865187, "czk": 6885338.220503002, "dkk": 1934444.8855568971, "eos": 106902.27242627194, "eth": 1206.4207073722387, "eur": 259426.21089595195, "gbp": 231314.17221980306, "hkd": 2278894.1055228803, "huf": 89331381.00721805, "idr": 4079735059.9784503, "ils": 1012790.856585851, "inr": 22203507.055871956, "jpy": 31702740.685064077, "krw": 352350254.2242572, "kwd": 90523.44624291013, "lkr": 54435779.54701827, "ltc": 6409.808396847496, "mmk": 411688058.3124927, "mxn": 6434829.303975163, "myr": 1257196.5750373942, "ngn": 113943088.01941071, "nok": 2729208.9512427403, "nzd": 452461.68052148755, "php": 14690787.018960271, "pkr": 48208952.98266429, "pln": 1152786.186296699, "rub": 20177865.357177794, "sar": 1103378.4050047307, "sek": 2706802.5943212463, "sgd": 408782.22257843777, "thb": 9212482.445543582, "try": 1998311.8241835178, "twd": 8744389.53762592, "uah": 7835048.125234571, "usd": 294046.6787597696, "vef": 73066965913.8118, "vnd": 6793756980.735517, "xag": 16746.211235512623, "xau": 171.56447518917523, "xdr": 213068.28175608054, "xlm": 3754055.791728076, "xrp": 1461878.3706492141, "zar": 4885556.162925695, "bits": 30111458.74192418, "link": 66307.53610839316, "sats": 3011145874.192418}}, "community_data": {"facebook_likes": null, "twitter_followers": 54514, "reddit_average_posts_48h": 0.25, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 8243, "reddit_accounts_active_48h": "265.076923076923"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 565587, "bing_matches": null}}, "GXS_20200615": {"id": "gxchain", "symbol": "gxc", "name": "GXChain", "localization": {"en": "GXChain", "de": "GXChain", "es": "GXChain", "fr": "GXChain", "it": "GXChain", "pl": "GXChain", "ro": "GXChain", "hu": "GXChain", "nl": "GXChain", "pt": "GXChain", "sv": "GXChain", "vi": "GXChain", "tr": "GXChain", "ru": "GXChain", "ja": "\u30b8\u30fc\u30a8\u30c3\u30af\u30b9\u30b7\u30a7\u30a2\u30ba", "zh": "\u516c\u4fe1\u5b9d", "zh-tw": "\u516c\u4fe1\u5bf6", "ko": "\uc9c0\uc5d1\uc2a4\uccb4\uc778", "ar": "GXChain", "th": "GXChain", "id": "GXChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1089/thumb/26296223.png?1571192241", "small": "https://assets.coingecko.com/coins/images/1089/small/26296223.png?1571192241"}, "market_data": {"current_price": {"aed": 1.965198325353471, "ars": 37.083555089275684, "aud": 0.7822582895120529, "bch": 0.0022691152064659888, "bdt": 45.45483396166788, "bhd": 0.20199619376215724, "bmd": 0.5350098892936601, "bnb": 0.032801482890927894, "brl": 2.662424818110638, "btc": 5.753031754340775e-05, "cad": 0.729249509680838, "chf": 0.5050295401273112, "clp": 424.156326556003, "cny": 3.7798983688486345, "czk": 12.673153754621426, "dkk": 3.53194643062582, "eos": 0.2117002574199515, "eth": 0.002305960558768909, "eur": 0.47377533241455433, "gbp": 0.4252520754951765, "hkd": 4.146513895487118, "huf": 163.92833068861836, "idr": 7752.025790920483, "ils": 1.8479562582136622, "inr": 40.647403089580294, "jpy": 57.15705925933764, "krw": 645.0881665256908, "kwd": 0.1645150059479114, "lkr": 99.1042849252537, "ltc": 0.01230849219548912, "mmk": 749.0333835722827, "mxn": 12.222796875081016, "myr": 2.2735250595632963, "ngn": 207.31633210129328, "nok": 5.153956242373203, "nzd": 0.8334785312833627, "php": 26.97717173465807, "pkr": 88.02250203603923, "pln": 2.121072386579403, "rub": 37.510613358157116, "sar": 2.007352289540809, "sek": 4.9954445823930556, "sgd": 0.7456486328074658, "thb": 16.628107359246965, "try": 3.6590396348571987, "twd": 15.884015605217327, "uah": 14.243905873905232, "usd": 0.5350098892936601, "vef": 132943.34596619982, "vnd": 12507.747555950447, "xag": 0.030279617648123022, "xau": 0.00030950857105527523, "xdr": 0.38584806213880896, "xlm": 7.50853312475561, "xrp": 2.8136077401959456, "zar": 9.204046375532688, "bits": 57.53031754340775, "link": 0.13505937135026405, "sats": 5753.031754340775}, "market_cap": {"aed": 126075910.11406066, "ars": 2378973514.8581624, "aud": 50187355.92093535, "bch": 146440.58077810556, "bdt": 2916122758.1292663, "bhd": 12959884.145842172, "bmd": 34323181.453245275, "bnb": 2110813.1549274153, "brl": 170805880.18392965, "btc": 3699.2308295050843, "cad": 46778034.30718446, "chf": 32400362.50505303, "clp": 27211377583.162804, "cny": 242496709.2853233, "czk": 812990889.0150756, "dkk": 226560456.1365815, "eos": 13656006.196383908, "eth": 148742.30462617436, "eur": 30392216.127767995, "gbp": 27288405.152132496, "hkd": 266024048.86017188, "huf": 10516174605.170916, "idr": 479433457891.8061, "ils": 118554328.13039647, "inr": 2618165416.617259, "jpy": 3665981783.8628564, "krw": 41383803109.99237, "kwd": 10553726.156425316, "lkr": 6357965380.367983, "ltc": 793646.7389826684, "mmk": 48053707517.130104, "mxn": 784016975.3913172, "myr": 145856393.9087472, "ngn": 13300232813.132544, "nok": 330607405.1621344, "nzd": 53476031.55187795, "php": 1730838754.1380007, "pkr": 5647021428.595185, "pln": 136048029.9607605, "rub": 2406538976.7309847, "sar": 128771206.58403963, "sek": 320395675.18570924, "sgd": 47825921.036951855, "thb": 1066764479.5668614, "try": 234734865.0314863, "twd": 1019024332.1603631, "uah": 913807717.757246, "usd": 34323181.453245275, "vef": 8528886433526.927, "vnd": 802452887578.0312, "xag": 1939548.753296193, "xau": 19837.425952717615, "xdr": 24753809.817717586, "xlm": 483972916.27139074, "xrp": 181045478.18955794, "zar": 590227125.9181267, "bits": 3699230829.5050845, "link": 8684391.320028828, "sats": 369923082950.5084}, "total_volume": {"aed": 100456051.67474295, "ars": 1895619123.1546102, "aud": 39987098.57443245, "bch": 115991.52690896617, "bdt": 2323538082.8542414, "bhd": 10325543.135715261, "bmd": 27348375.170081403, "bnb": 1676730.2402960137, "brl": 136096536.24151862, "btc": 2940.806776316304, "cad": 37277421.56258083, "chf": 25815854.270675547, "clp": 21681816694.513565, "cny": 193219005.41414195, "czk": 647820106.5163369, "dkk": 180544318.89644223, "eos": 10821590.739504581, "eth": 117874.96969800403, "eur": 24218216.889989745, "gbp": 21737828.65556404, "hkd": 211959479.4994404, "huf": 8379608636.012982, "idr": 396264282026.8942, "ils": 94462928.7399715, "inr": 2077794170.9656935, "jpy": 2921726740.989168, "krw": 32975302978.44833, "kwd": 8409598.016424872, "lkr": 5065964609.881836, "ltc": 629179.514391164, "mmk": 38288724000.77526, "mxn": 624798982.7042911, "myr": 116216947.63363603, "ngn": 10597495378.406544, "nok": 263457427.13783452, "nzd": 42605349.96809067, "php": 1379005936.8831325, "pkr": 4499491424.857633, "pln": 108423946.08379596, "rub": 1917449279.9247484, "sar": 102610857.5027689, "sek": 255354705.23919314, "sgd": 38115703.95829409, "thb": 849987500.2861304, "try": 187041007.46322066, "twd": 811951380.0995805, "uah": 728113048.9778082, "usd": 27348375.170081403, "vef": 6795733265135.825, "vnd": 639364952943.9738, "xag": 1547818.76002474, "xau": 15821.30851964379, "xdr": 19723593.475912362, "xlm": 383817542.40824544, "xrp": 143824631.28282118, "zar": 470487963.6771206, "bits": 2940806776.3163037, "link": 6903899.221001064, "sats": 294080677631.6304}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 75, "stars": 222, "subscribers": 37, "total_issues": 79, "closed_issues": 70, "pull_requests_merged": 115, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 447663, "bing_matches": null}}, "BCPT_20210109": {"id": "blockmason-credit-protocol", "symbol": "bcpt", "name": "Blockmason Credit Protocol", "localization": {"en": "Blockmason Credit Protocol", "de": "Blockmason Credit Protocol", "es": "Blockmason Credit Protocol", "fr": "Blockmason Credit Protocol", "it": "Blockmason Credit Protocol", "pl": "Blockmason Credit Protocol", "ro": "Blockmason Credit Protocol", "hu": "Blockmason Credit Protocol", "nl": "Blockmason Credit Protocol", "pt": "Blockmason Credit Protocol", "sv": "Blockmason Credit Protocol", "vi": "Blockmason Credit Protocol", "tr": "Blockmason Credit Protocol", "ru": "Blockmason Credit Protocol", "ja": "Blockmason Credit Protocol", "zh": "Blockmason Credit Protocol", "zh-tw": "Blockmason Credit Protocol", "ko": "\ube14\ub85d\uba54\uc774\uc2a8", "ar": "Blockmason Credit Protocol", "th": "Blockmason Credit Protocol", "id": "Blockmason Credit Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1022/thumb/mason.jpg?1547034948", "small": "https://assets.coingecko.com/coins/images/1022/small/mason.jpg?1547034948"}, "market_data": {"current_price": {"aed": 0.08393006135257042, "ars": 1.9374534604032039, "aud": 0.029428267363715094, "bch": 5.440871720582555e-05, "bdt": 1.9401533196842509, "bhd": 0.008617576624726123, "bmd": 0.0228505351624014, "bnb": 0.0005480905590664721, "brl": 0.12077878865438918, "btc": 6.699753456020988e-07, "cad": 0.02896156803355822, "chf": 0.020067819840859296, "clp": 15.90166609996586, "cny": 0.14752991016901204, "czk": 0.48563328359245245, "dkk": 0.13821146192978473, "dot": 0.002342594852597311, "eos": 0.007871347044917312, "eth": 2.068957639172941e-05, "eur": 0.018578947521282748, "gbp": 0.016768613873041505, "hkd": 0.177161570146208, "huf": 6.672356267421213, "idr": 317.6811633531168, "ils": 0.07320785903724665, "inr": 1.6713121348399576, "jpy": 2.3465443063621643, "krw": 24.84606933616219, "kwd": 0.006937742382797362, "lkr": 4.312469076567016, "ltc": 0.00014348038744640737, "mmk": 30.210162771403724, "mxn": 0.4547599026839962, "myr": 0.09180202501494764, "ngn": 8.87309037204012, "nok": 0.19347319616653624, "nzd": 0.03149212769958319, "php": 1.0978505571478352, "pkr": 3.6713279155105574, "pln": 0.08426182827259385, "rub": 1.6948264780488262, "sar": 0.08572296004248318, "sek": 0.1868732760955801, "sgd": 0.030104871709873818, "thb": 0.6836765639409316, "try": 0.16889504629318164, "twd": 0.6388346965887723, "uah": 0.6475612702662232, "usd": 0.0228505351624014, "vef": 0.002288024085811254, "vnd": 526.9194199104966, "xag": 0.0008275316738956621, "xau": 1.1712498808192112e-05, "xdr": 0.01584600066532436, "xlm": 0.11647270944231927, "xrp": 0.10065312072194989, "yfi": 9.576741595143927e-07, "zar": 0.3421696261555893, "bits": 0.6699753456020988, "link": 0.0015644361003298664, "sats": 66.99753456020989}, "market_cap": {"aed": 9857700.454368796, "ars": 227612113.00578386, "aud": 3456508.324330583, "bch": 6415.975875468618, "bdt": 227873659.95903292, "bhd": 1012146.1564559973, "bmd": 2683826.5958931576, "bnb": 64497.32772949581, "brl": 14185633.85525285, "btc": 78.98206887706543, "cad": 3401468.408502011, "chf": 2356936.516513369, "clp": 1867672424.0718367, "cny": 17327589.651064985, "czk": 57049296.80092204, "dkk": 16234662.99789925, "dot": 275544.3199415801, "eos": 926677.4057854895, "eth": 2444.8790847190753, "eur": 2182326.7581845624, "gbp": 1969563.7209685342, "hkd": 20808378.554608583, "huf": 783687972.4835092, "idr": 37316286804.01335, "ils": 8598363.133124612, "inr": 196297879.13859186, "jpy": 275532309.76570237, "krw": 2918234096.1117306, "kwd": 814847.3280855085, "lkr": 506505389.0160635, "ltc": 16882.93922937709, "mmk": 3548224920.594542, "mxn": 53417459.45273502, "myr": 10782273.349000735, "ngn": 1042156595.414383, "nok": 22737110.537747283, "nzd": 3698997.424922721, "php": 128961861.46664098, "pkr": 431202483.0869098, "pln": 9895757.11549852, "rub": 199059687.00005546, "sar": 10068278.856735718, "sek": 21954568.43039649, "sgd": 3535606.06176475, "thb": 80326930.01508242, "try": 19836964.83439849, "twd": 75058575.72351731, "uah": 76056956.533363, "usd": 2683826.5958931576, "vef": 268731.5570467819, "vnd": 61894342368.75017, "xag": 97248.42986392256, "xau": 1375.4879686612005, "xdr": 1861134.4426678596, "xlm": 13827239.202996083, "xrp": 11854708.418004736, "yfi": 112.93594092737874, "zar": 40165252.43605399, "bits": 78982068.87706544, "link": 184175.09790156872, "sats": 7898206887.706544}, "total_volume": {"aed": 8088988.486217813, "ars": 186727359.4373991, "aud": 2836229.499159546, "bch": 5243.788458333173, "bdt": 186987565.73639196, "bhd": 830542.4418038331, "bmd": 2202282.62500751, "bnb": 52823.721920913355, "brl": 11640385.04273973, "btc": 64.57070052480312, "cad": 2791250.078826394, "chf": 1934090.8492167185, "clp": 1532566424.0130405, "cny": 14218597.311835978, "czk": 46804231.71623466, "dkk": 13320506.457357915, "dot": 225773.96567043525, "eos": 758622.5315610442, "eth": 1994.0143319375472, "eur": 1790596.7202191083, "gbp": 1616120.879252889, "hkd": 17074429.32864075, "huf": 643066526.5021935, "idr": 30617388230.622833, "ils": 7055607.005520304, "inr": 161077263.58980545, "jpy": 226154605.04464644, "krw": 2394607671.5435433, "kwd": 668643.8369090325, "lkr": 415625964.5871523, "ltc": 13828.313518997746, "mmk": 2911586800.802055, "mxn": 43828725.45930433, "myr": 8847670.445967674, "ngn": 855168275.8230764, "nok": 18646506.757676072, "nzd": 3035139.665850225, "php": 105808340.57837462, "pkr": 353834237.2102345, "pln": 8120963.427650347, "rub": 163343522.5250694, "sar": 8261783.985541193, "sek": 18010421.467095178, "sgd": 2901439.0876860204, "thb": 65891192.7966294, "try": 16277720.554804886, "twd": 61569435.57559749, "uah": 62410482.905522615, "usd": 2202282.62500751, "vef": 220514.5592420022, "vnd": 50783295664.659256, "xag": 79755.62121899436, "xau": 1128.824005100102, "xdr": 1527201.5159855832, "xlm": 11225374.918764543, "xrp": 9700718.925982403, "yfi": 92.29845808545923, "zar": 32977530.59751873, "bits": 64570700.52480312, "link": 150776.79438160238, "sats": 6457070052.480312}}, "community_data": {"facebook_likes": null, "twitter_followers": 10380, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3212, "reddit_accounts_active_48h": "1183.61538461538"}, "developer_data": {"forks": 10, "stars": 27, "subscribers": 14, "total_issues": 14, "closed_issues": 14, "pull_requests_merged": 22, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2139942, "bing_matches": null}}, "SNM_20210128": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.04143989443326705, "ars": 0.975708263221657, "aud": 0.01461634601569618, "bch": 2.566589064007367e-05, "bdt": 0.9571434204950555, "bhd": 0.00425137150396994, "bmd": 0.0112823539976273, "bnb": 0.00026986026486267625, "brl": 0.0616809564932946, "btc": 3.5e-07, "cad": 0.014353963591127335, "chf": 0.009989181864773265, "clp": 8.20904686114478, "cny": 0.0731310903772204, "czk": 0.24208096806784415, "dkk": 0.06897025976408155, "dot": 0.0006247282728603, "eos": 0.00415171167244743, "eth": 8.1433223192013e-06, "eur": 0.00927062002101837, "gbp": 0.00824134214816885, "hkd": 0.08746078562489905, "huf": 3.3146336873856046, "idr": 158.24896615822945, "ils": 0.036918570045196, "inr": 0.823565200575369, "jpy": 1.1709052625817575, "krw": 12.47380866900385, "kwd": 0.003413622872584113, "lkr": 2.2321486166832893, "ltc": 7.9997736038255e-05, "mmk": 15.035269849640775, "mxn": 0.22508661773536015, "myr": 0.04561455721240705, "ngn": 4.379519357675245, "nok": 0.09592765074712645, "nzd": 0.01570337825865956, "php": 0.542477851572713, "pkr": 1.813705320760151, "pln": 0.04207962646964055, "rub": 0.849352295542947, "sar": 0.0423234945512995, "sek": 0.0936089577653041, "sgd": 0.014982063520529245, "thb": 0.33816329988827787, "try": 0.08370276889653736, "twd": 0.3155565312773202, "uah": 0.3179509062897587, "usd": 0.0112823539976273, "vef": 0.0011297021057824215, "vnd": 260.43536666393857, "xag": 0.000440665392674549, "xau": 6.069680803643555e-06, "xdr": 0.007823432473742726, "xlm": 0.0414989349841857, "xrp": 0.04117674192615445, "yfi": 3.50337719800397e-07, "zar": 0.17079340305148205, "bits": 0.35, "link": 0.0004619853083376265, "sats": 35.0}, "market_cap": {"aed": 18630501.925444074, "ars": 438693891.1798239, "aud": 6570348.534855424, "bch": 11559.540026138064, "bdt": 430311480.81651497, "bhd": 1911326.900652176, "bmd": 5072308.237049839, "bnb": 121445.4435945022, "brl": 27730456.22889033, "btc": 157.53653568, "cad": 6453634.722320909, "chf": 4491021.713083926, "clp": 3690614212.3239207, "cny": 32878194.761733398, "czk": 108843111.8430867, "dkk": 31008897.007133435, "dot": 279967.26344599825, "eos": 1868638.3546494772, "eth": 3664.6436764511955, "eur": 4168184.5107204206, "gbp": 3705361.7456308072, "hkd": 39320229.11511615, "huf": 1490332925.439393, "idr": 71149488286.50652, "ils": 16597809.905604053, "inr": 370257532.3823864, "jpy": 526442191.1528107, "krw": 5607961110.994909, "kwd": 1534692.797126512, "lkr": 1003526907.337167, "ltc": 36111.409582515254, "mmk": 6759539996.762943, "mxn": 101207335.10765545, "myr": 20507342.20239256, "ngn": 1968939471.0471847, "nok": 43134817.946323626, "nzd": 7060708.8613639865, "php": 243903600.22333577, "pkr": 815403632.9659154, "pln": 18918695.262548488, "rub": 381850866.0289943, "sar": 19027749.88964509, "sek": 42100614.875254974, "sgd": 6734833.346366481, "thb": 152093152.34332302, "try": 37644414.55821851, "twd": 141867556.46821886, "uah": 142944016.93921027, "usd": 5072308.237049839, "vef": 507890.223775801, "vnd": 117099376999.72006, "xag": 198001.81277215952, "xau": 2728.039539132514, "xdr": 3517250.122351575, "xlm": 18659051.299331382, "xrp": 18532063.88147957, "yfi": 157.39000030709596, "zar": 76786554.93113182, "bits": 157536535.68, "link": 207488.27636836751, "sats": 15753653568.0}, "total_volume": {"aed": 727485.9366741206, "ars": 17128760.811240464, "aud": 256592.98406527055, "bch": 450.57003035896736, "bdt": 16802851.14894829, "bhd": 74633.70800077119, "bmd": 198064.06309915447, "bnb": 4737.452887842041, "brl": 1082821.9768209113, "btc": 6.14432255, "cad": 251986.8062138362, "chf": 175362.15825079265, "clp": 144111519.26553884, "cny": 1283831.4506024094, "czk": 4249781.574357385, "dkk": 1210787.2067080112, "dot": 10967.23432730884, "eos": 72884.15900033417, "eth": 142.95771130796243, "eur": 162747.6561360704, "gbp": 144678.469723598, "hkd": 1535392.221016523, "huf": 58189081.458265774, "idr": 2778093403.657703, "ils": 648113.149835578, "inr": 14457857.809401466, "jpy": 20555484.59655647, "krw": 218980296.82670242, "kwd": 59926.85712346955, "lkr": 39185831.65839555, "ltc": 1404.3768385394224, "mmk": 263947278.80709407, "mxn": 3951442.231584581, "myr": 800773.0071098794, "ngn": 76883370.1357872, "nok": 1684029.7932974098, "nzd": 275676.06041674764, "php": 9523311.132267924, "pkr": 31839972.86114737, "pln": 738716.5651799695, "rub": 14910555.606853696, "sar": 742997.7199038619, "sek": 1643324.6573695873, "sgd": 263013.23067062924, "thb": 5936526.82595988, "try": 1469419.4583669517, "twd": 5539660.31693434, "uah": 5581694.066597432, "usd": 198064.06309915447, "vef": 19832.154638118336, "vnd": 4571996846.316445, "xag": 7735.97231204239, "xau": 106.55450466608347, "xdr": 137341.978762342, "xlm": 728522.4057837602, "xrp": 722866.2398640035, "yfi": 6.150251291100459, "zar": 2998313.5936013144, "bits": 6144322.55, "link": 8110.247850821662, "sats": 614432255.0}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9490, "reddit_accounts_active_48h": "281.916666666667"}, "developer_data": {"forks": 72, "stars": 344, "subscribers": 73, "total_issues": 225, "closed_issues": 145, "pull_requests_merged": 1521, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "DOGE_20210130": {"id": "dogecoin", "symbol": "doge", "name": "Dogecoin", "localization": {"en": "Dogecoin", "de": "Dogecoin", "es": "Dogecoin", "fr": "Dogecoin", "it": "Dogecoin", "pl": "Dogecoin", "ro": "Dogecoin", "hu": "Dogecoin", "nl": "Dogecoin", "pt": "Dogecoin", "sv": "Dogecoin", "vi": "Dogecoin", "tr": "Dogecoin", "ru": "Dogecoin", "ja": "\u30c9\u30fc\u30b8\u30b3\u30a4\u30f3", "zh": "\u72d7\u72d7\u5e01", "zh-tw": "\u72d7\u72d7\u5e63", "ko": "\ub3c4\uc9c0\ucf54\uc778", "ar": "\u0627\u0644\u062f\u0648\u062c\u0643\u0648\u064a\u0646", "th": "Dogecoin", "id": "Dogecoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5/thumb/dogecoin.png?1547792256", "small": "https://assets.coingecko.com/coins/images/5/small/dogecoin.png?1547792256"}, "market_data": {"current_price": {"aed": 0.03040282655888625, "ars": 0.7195166769523987, "aud": 0.010677225703830498, "bch": 1.9339532254189333e-05, "bdt": 0.701535944405549, "bhd": 0.0031209082503322, "bmd": 0.008276931982708905, "bnb": 0.00019943008061403756, "brl": 0.04432545384700106, "btc": 2.5403232818473363e-07, "cad": 0.01050661330487093, "chf": 0.0073387748501967725, "clp": 6.068644857781909, "cny": 0.05351202065460965, "czk": 0.17730678154719343, "dkk": 0.05062419908584247, "dot": 0.0004831576590241674, "eos": 0.0031468887499604206, "eth": 6.105087548301211e-06, "eur": 0.006804730644808431, "gbp": 0.006023537250416393, "hkd": 0.06416583919479284, "huf": 2.447484847467397, "idr": 116.38532173558463, "ils": 0.027023437999666108, "inr": 0.6035129010888864, "jpy": 0.8575480919325204, "krw": 9.122253688686103, "kwd": 0.002503391185898236, "lkr": 1.6174203495681205, "ltc": 6.138088706068124e-05, "mmk": 11.007532516648327, "mxn": 0.16555312428514762, "myr": 0.03351329759798831, "ngn": 3.2114349922291585, "nok": 0.07074223411699439, "nzd": 0.01143807439940903, "php": 0.39788744100991646, "pkr": 1.3304100355209463, "pln": 0.030927584046590018, "rub": 0.6216489088797313, "sar": 0.03104682152873302, "sek": 0.06871426162725089, "sgd": 0.010966934877089284, "thb": 0.24797689047889038, "try": 0.060855314709668894, "twd": 0.23111677175318038, "uah": 0.23289035273843517, "usd": 0.008276931982708905, "vef": 0.0008287691994286423, "vnd": 190.53205087096717, "xag": 0.0003253257220428914, "xau": 4.471281426379177e-06, "xdr": 0.005743487256781435, "xlm": 0.03165929911009473, "xrp": 0.030798634015597823, "yfi": 2.7364619157366806e-07, "zar": 0.12471018956987147, "bits": 0.25403232818473365, "link": 0.00035855369728590703, "sats": 25.403232818473363}, "market_cap": {"aed": 3870155288.878887, "ars": 91589355330.02536, "aud": 1359804537.268035, "bch": 2461075.709240169, "bdt": 89302652183.37744, "bhd": 397278836.81257737, "bmd": 1053619538.5165173, "bnb": 25439578.505075797, "brl": 5642554076.571367, "btc": 32332.32586652746, "cad": 1337546824.5168748, "chf": 934236015.8462878, "clp": 772513845640.3129, "cny": 6811861040.417007, "czk": 22568741238.931526, "dkk": 6444463907.336288, "dot": 61399906.32057736, "eos": 401012300.6492202, "eth": 775530.7543508834, "eur": 866277555.6119721, "gbp": 766813763.9369386, "hkd": 8167911531.269306, "huf": 311615790051.5191, "idr": 14817827034138.145, "ils": 3439972967.497976, "inr": 76824408406.90599, "jpy": 109170910050.01134, "krw": 1161213428371.2056, "kwd": 318724124.87940115, "lkr": 205890985435.0951, "ltc": 7810267.913916978, "mmk": 1401213801759.5308, "mxn": 21082247381.1132, "myr": 4266105511.4534, "ngn": 408802520252.30493, "nok": 9005801415.655024, "nzd": 1456703818.9863214, "php": 50684367900.33717, "pkr": 169355748070.86383, "pln": 3937236084.037604, "rub": 79121453882.94427, "sar": 3952426116.92439, "sek": 8747617215.839237, "sgd": 1395707676.6625242, "thb": 31576976515.720528, "try": 7746526933.035012, "twd": 29420218373.996742, "uah": 29645987968.71006, "usd": 1053619538.5165173, "vef": 105498924.39165902, "vnd": 24259535239955.285, "xag": 41399619.6582403, "xau": 569281.1728558594, "xdr": 731122402.0696896, "xlm": 4031885788.599471, "xrp": 3928950613.0260158, "yfi": 34817.371118332, "zar": 15873884648.2668, "bits": 32332325866.527462, "link": 45578613.01531493, "sats": 3233232586652.746}, "total_volume": {"aed": 777856919.5842035, "ars": 18408848428.603413, "aud": 273177031.07638687, "bch": 494802.3157092321, "bdt": 17948811030.315132, "bhd": 79848499.38890888, "bmd": 211765468.68784878, "bnb": 5102422.5618760185, "brl": 1134067614.464038, "btc": 6499.422147274819, "cad": 268811909.4703246, "chf": 187762699.87395564, "clp": 155266398865.30606, "cny": 1369106108.1606808, "czk": 4536397517.137353, "dkk": 1295221136.135489, "dot": 12361598.274230378, "eos": 80513210.98639551, "eth": 156198.7858239265, "eur": 174099168.3032783, "gbp": 154112319.8375816, "hkd": 1641684266.491613, "huf": 62618948290.63371, "idr": 2977720761413.7944, "ils": 691395196.3736436, "inr": 15440889525.882442, "jpy": 21940384914.341915, "krw": 233393041275.40143, "kwd": 64049313.066514514, "lkr": 41381731673.897125, "ltc": 1570431.210989235, "mmk": 281627937423.483, "mxn": 4235679963.327173, "myr": 857438382.7170985, "ngn": 82164627873.06723, "nok": 1809941460.8102026, "nzd": 292643360.0200487, "php": 10179958057.707415, "pkr": 34038567105.260113, "pln": 791282850.2990136, "rub": 15904899644.3633, "sar": 794333543.6409334, "sek": 1758055744.4996471, "sgd": 280589246.0113992, "thb": 6344493653.653407, "try": 1556984431.9805377, "twd": 5913127182.170792, "uah": 5958504286.801221, "usd": 211765468.68784878, "vef": 21204076.379714288, "vnd": 4874766294689.56, "xag": 8323465.040977445, "xau": 114397.82383986276, "xdr": 146947235.20452818, "xlm": 810003794.6891259, "xrp": 787983661.2024473, "yfi": 7001.243230499154, "zar": 3190712669.813551, "bits": 6499422147.274818, "link": 9173603.445592254, "sats": 649942214727.4818}}, "community_data": {"facebook_likes": null, "twitter_followers": 194844, "reddit_average_posts_48h": 7.273, "reddit_average_comments_48h": 74.364, "reddit_subscribers": 189700, "reddit_accounts_active_48h": "990.583333333333"}, "developer_data": {"forks": 962, "stars": 2338, "subscribers": 276, "total_issues": 526, "closed_issues": 468, "pull_requests_merged": 820, "pull_request_contributors": 78, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 60672, "bing_matches": null}}, "DGCL_20210315": {"id": "digicol-token", "symbol": "dgcl", "name": "DigiCol Token", "localization": {"en": "DigiCol Token", "de": "DigiCol Token", "es": "DigiCol Token", "fr": "DigiCol Token", "it": "DigiCol Token", "pl": "DigiCol Token", "ro": "DigiCol Token", "hu": "DigiCol Token", "nl": "DigiCol Token", "pt": "DigiCol Token", "sv": "DigiCol Token", "vi": "DigiCol Token", "tr": "DigiCol Token", "ru": "DigiCol Token", "ja": "DigiCol Token", "zh": "DigiCol Token", "zh-tw": "DigiCol Token", "ko": "DigiCol Token", "ar": "DigiCol Token", "th": "DigiCol Token", "id": "DigiCol Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13519/thumb/DigiCol_Logo-01.png?1609372199", "small": "https://assets.coingecko.com/coins/images/13519/small/DigiCol_Logo-01.png?1609372199"}, "market_data": {"current_price": {"aed": 1.765321466196565, "ars": 43.625912836137445, "aud": 0.6172555217139886, "bch": 0.000873845664307459, "bdt": 40.761437498555516, "bhd": 0.18119103431793282, "bmd": 0.48059497609620117, "bnb": 0.0016659613575918605, "brl": 2.6606223277611507, "btc": 8.299307826557557e-06, "cad": 0.6021734901741372, "chf": 0.4444542338937664, "clp": 342.80918126101614, "cny": 3.12093571527112, "czk": 10.505950355955758, "dkk": 2.9827170807408265, "dot": 0.013035952185234507, "eos": 0.12130286989458335, "eth": 0.0002628854725707054, "eur": 0.40108582384582164, "gbp": 0.3435595663970583, "hkd": 3.7287057339419003, "huf": 146.41186141692233, "idr": 6908.312483894835, "ils": 1.5897312857300576, "inr": 34.91005861739594, "jpy": 52.16522049040989, "krw": 543.3275194016095, "kwd": 0.1453218282769935, "lkr": 94.45863809879759, "ltc": 0.002389439106190834, "mmk": 677.7935544575319, "mxn": 9.9050903318513, "myr": 1.9740438643151428, "ngn": 190.51898775488976, "nok": 4.043481025435621, "nzd": 0.664822890068086, "php": 23.30245000963437, "pkr": 75.5118761065406, "pln": 1.838366616018451, "rub": 35.24481704799578, "sar": 1.8024570399995188, "sek": 4.061657127431579, "sgd": 0.6438891340992872, "thb": 14.677370569977985, "try": 3.5947855408778113, "twd": 13.46290658478789, "uah": 13.340459154993171, "usd": 0.48059497609620117, "vef": 0.04812197495651259, "vnd": 11063.199871734896, "xag": 0.01841007485412097, "xau": 0.00027886523487982023, "xdr": 0.33615119484053513, "xlm": 1.1829032568199713, "xrp": 1.0599640675421498, "yfi": 1.2677769079326329e-05, "zar": 7.126129661341066, "bits": 8.299307826557556, "link": 0.015970445849105695, "sats": 829.9307826557556}, "market_cap": {"aed": 55329719.22842767, "ars": 1367348414.7382867, "aud": 19346377.05517414, "bch": 27401.436971890686, "bdt": 1277568383.6221185, "bhd": 5678993.456709802, "bmd": 15063083.749435807, "bnb": 52276.14029981164, "brl": 83390753.00833538, "btc": 260.1768134970887, "cad": 18873667.360949326, "chf": 13930339.851478249, "clp": 10744522236.488323, "cny": 97818159.56046131, "czk": 329283529.6877904, "dkk": 93486031.73720725, "dot": 409032.3597732672, "eos": 3803205.020585913, "eth": 8248.806693350967, "eur": 12571062.23701291, "gbp": 10768041.23837294, "hkd": 116867236.53167267, "huf": 4588924645.754986, "idr": 216524297356.26505, "ils": 49826270.9497338, "inr": 1094171106.2462041, "jpy": 1634992299.4150105, "krw": 17029283149.396513, "kwd": 4554760.201070643, "lkr": 2960576883.4650187, "ltc": 74931.5164680288, "mmk": 21243794844.78405, "mxn": 310451029.7347295, "myr": 61871616.500807635, "ngn": 5971355530.431489, "nok": 126733104.49504063, "nzd": 20837260.832358297, "php": 730358770.9412565, "pkr": 2366736587.862625, "pln": 57619142.26442052, "rub": 1104663297.2318735, "sar": 56493643.709746554, "sek": 127302790.32244441, "sgd": 20181143.030400373, "thb": 460026577.7077684, "try": 112669832.92947358, "twd": 421962150.00986296, "uah": 418124332.34292984, "usd": 15063083.749435807, "vef": 1508266.5758310084, "vnd": 346749164043.1386, "xag": 577019.139096238, "xau": 8740.354345610134, "xdr": 10535843.80237539, "xlm": 37126857.11352998, "xrp": 33243841.53540156, "yfi": 397.9342822263269, "zar": 223351248.42551935, "bits": 260176813.49708867, "link": 501385.5537401495, "sats": 26017681349.708862}, "total_volume": {"aed": 18213989.48859153, "ars": 450117405.2676139, "aud": 6368633.588587324, "bch": 9016.04384760543, "bdt": 420562718.0969784, "bhd": 1869467.7755232048, "bmd": 4958616.325980491, "bnb": 17188.825512304225, "brl": 27451400.800876874, "btc": 85.62944959888284, "cad": 6213022.2910454, "chf": 4585728.378266754, "clp": 3536989122.7423434, "cny": 32200758.5592847, "czk": 108396840.47083102, "dkk": 30774665.462549016, "dot": 134500.54317144124, "eos": 1251561.9616613858, "eth": 2712.36334333063, "eur": 4138267.7996266033, "gbp": 3544731.342639388, "hkd": 38471523.93744617, "huf": 1510628039.0950656, "idr": 71277630377.80647, "ils": 16402309.427731302, "inr": 360190170.9569779, "jpy": 538223091.8708996, "krw": 5605869478.585667, "kwd": 1499381.4460336575, "lkr": 974592262.3061786, "ltc": 24653.42409139627, "mmk": 6993244523.856001, "mxn": 102197370.07820462, "myr": 20367516.55896483, "ngn": 1965710442.4278665, "nok": 41719268.87247353, "nzd": 6859417.598067568, "php": 240426793.4544282, "pkr": 779105983.8136082, "pln": 18967644.62536098, "rub": 363644095.15884, "sar": 18597141.772100043, "sek": 41906803.74192212, "sgd": 6643430.188140504, "thb": 151436142.5954442, "try": 37089780.705130056, "twd": 138905714.18107498, "uah": 137642343.03769267, "usd": 4958616.325980491, "vef": 496506.2527204262, "vnd": 114146352396.71944, "xag": 189948.92222072216, "xau": 2877.2371231501747, "xdr": 3468294.271974396, "xlm": 12204795.499462083, "xrp": 10936350.548148679, "yfi": 130.80493109685483, "zar": 73524994.30353272, "bits": 85629449.59888284, "link": 164777.655737939, "sats": 8562944959.888284}}, "community_data": {"facebook_likes": null, "twitter_followers": 5142, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1012191, "bing_matches": null}}, "BSC_20210323": {"id": "bitsonic-token", "symbol": "bsc", "name": "Bitsonic Token", "localization": {"en": "Bitsonic Token", "de": "Bitsonic Token", "es": "Bitsonic Token", "fr": "Bitsonic Token", "it": "Bitsonic Token", "pl": "Bitsonic Token", "ro": "Bitsonic Token", "hu": "Bitsonic Token", "nl": "Bitsonic Token", "pt": "Bitsonic Token", "sv": "Bitsonic Token", "vi": "Bitsonic Token", "tr": "Bitsonic Token", "ru": "Bitsonic Token", "ja": "Bitsonic Token", "zh": "Bitsonic Token", "zh-tw": "Bitsonic Token", "ko": "Bitsonic Token", "ar": "Bitsonic Token", "th": "Bitsonic Token", "id": "Bitsonic Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9238/thumb/image.png?1604295837", "small": "https://assets.coingecko.com/coins/images/9238/small/image.png?1604295837"}, "market_data": {"current_price": {"aed": 0.06128920927935123, "ars": 1.5212705933628492, "aud": 0.021564257035863937, "bch": 3.132103717399487e-05, "bdt": 1.411941873967061, "bhd": 0.006291179645885667, "bmd": 0.016686416901538565, "bnb": 6.348358880748893e-05, "brl": 0.09162177792296793, "btc": 2.8626179546551975e-07, "cad": 0.020899853974095366, "chf": 0.015514646647461819, "clp": 11.902417821897673, "cny": 0.1086118876121146, "czk": 0.3654483822397524, "dkk": 0.1042367091005311, "dot": 0.0004370109777619978, "eos": 0.004021791832217019, "eth": 9.215071427853582e-06, "eur": 0.01396761556368637, "gbp": 0.012030589544088177, "hkd": 0.12958921661988373, "huf": 5.1539335883782265, "idr": 239.82135531313764, "ils": 0.05507835804442941, "inr": 1.2087982475021026, "jpy": 1.8175679222876, "krw": 18.84664043361174, "kwd": 0.005039531514101281, "lkr": 3.2942529489945467, "ltc": 8.336636125109543e-05, "mmk": 23.5184611710105, "mxn": 0.342169996341259, "myr": 0.06853945742306952, "ngn": 6.3491816310354166, "nok": 0.14257266731471727, "nzd": 0.023290316686575975, "php": 0.8075204571630301, "pkr": 2.603081036640015, "pln": 0.06469120258440311, "rub": 1.2389898159229016, "sar": 0.06258909784239788, "sek": 0.14158741782876608, "sgd": 0.022394840123554895, "thb": 0.5120231030977156, "try": 0.12046091225389717, "twd": 0.47391259506228745, "uah": 0.4628272576628372, "usd": 0.016686416901538565, "vef": 0.0016708109243510575, "vnd": 383.45707823936533, "xag": 0.0006359156771059175, "xau": 9.560649427905526e-06, "xdr": 0.011704670449167318, "xlm": 0.042089318767449736, "xrp": 0.03562867236105346, "yfi": 4.6339601405994174e-07, "zar": 0.24559235259853462, "bits": 0.2862617954655198, "link": 0.000558900746956919, "sats": 28.626179546551974}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 65735.37884996469, "ars": 1631629.7756791036, "aud": 23128.616318241686, "bch": 33.59319313816042, "bdt": 1514369.9044364037, "bhd": 6747.567513076238, "bmd": 17896.917737534604, "bnb": 68.08894763179163, "brl": 98268.395913255, "btc": 0.3070283953155324, "cad": 22416.01474468626, "chf": 16640.14248325171, "clp": 12765867.824902982, "cny": 116491.03755361283, "czk": 391959.50052386, "dkk": 111798.46572283116, "dot": 468.7135390153709, "eos": 4313.549038322295, "eth": 9.883570347244207, "eur": 14980.883445969395, "gbp": 12903.33764732544, "hkd": 138990.1476873544, "huf": 5527820.981592324, "idr": 257218975.95328176, "ils": 59073.96709887678, "inr": 1296489.4095883695, "jpy": 1949421.7230401067, "krw": 20213852.707835827, "kwd": 5405.119713583791, "lkr": 3533231.5129529145, "ltc": 89.41409759760215, "mmk": 25224586.403098144, "mxn": 366992.4054341102, "myr": 73511.58960692325, "ngn": 6809777.199131909, "nok": 152915.47092516389, "nzd": 24979.89138592999, "php": 866101.2893601223, "pkr": 2791919.1670553973, "pln": 69384.16664445779, "rub": 1328871.197696778, "sar": 67129.56663863626, "sek": 151858.74741735135, "sgd": 24019.453295545183, "thb": 549167.3503022741, "try": 129199.6388390362, "twd": 508292.15035549464, "uah": 496402.63730416464, "usd": 17896.917737534604, "vef": 1792.018373059341, "vnd": 411274620.88595665, "xag": 682.0475976555427, "xau": 10.254217986897817, "xdr": 12553.775050075905, "xlm": 45142.64986034626, "xrp": 38213.321775782366, "yfi": 0.4970126536133423, "zar": 263408.62495280796, "bits": 307028.3953155324, "link": 599.4456899139527, "sats": 30702839.53155324}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 168491, "bing_matches": null}}, "AUTO_20211224": {"id": "auto", "symbol": "auto", "name": "Auto", "localization": {"en": "Auto", "de": "Auto", "es": "Auto", "fr": "Auto", "it": "Auto", "pl": "Auto", "ro": "Auto", "hu": "Auto", "nl": "Auto", "pt": "Auto", "sv": "Auto", "vi": "Auto", "tr": "Auto", "ru": "Auto", "ja": "Auto", "zh": "Auto", "zh-tw": "Auto", "ko": "Auto", "ar": "Auto", "th": "Auto", "id": "Auto"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13751/thumb/autofarm_icon_200x200.png?1611494288", "small": "https://assets.coingecko.com/coins/images/13751/small/autofarm_icon_200x200.png?1611494288"}, "market_data": {"current_price": {"aed": 2161.7164085898376, "ars": 60108.559893831116, "aud": 827.7908116642282, "bch": 1.360695139483297, "bdt": 50492.335033981086, "bhd": 221.8697137507071, "bmd": 588.5466133410794, "bnb": 1.118327352211993, "brl": 3379.964345756492, "btc": 0.01248357020222867, "cad": 761.6146304601581, "chf": 542.4634135164729, "clp": 513511.41663621814, "cny": 3752.396642678718, "czk": 13167.788798925334, "dkk": 3881.229496339084, "dot": 24.24944152021618, "eos": 183.3460775450163, "eth": 0.1485834995352364, "eur": 521.9696318933235, "gbp": 445.61806829119917, "hkd": 4591.340412665764, "huf": 192066.30179772797, "idr": 8468450.082711464, "ils": 1865.3102089925574, "inr": 44587.674629869456, "jpy": 66893.32525242711, "krw": 700529.3774614873, "kwd": 178.34610314752055, "lkr": 119173.28705081274, "ltc": 3.8360976597498624, "mmk": 1046368.5328971153, "mxn": 12218.786223696876, "myr": 2487.492261286077, "ngn": 242661.13340151554, "nok": 5332.291171531514, "nzd": 876.7461189619394, "php": 29355.52798022644, "pkr": 104848.61041898782, "pln": 2416.4994145984233, "rub": 43611.53946721932, "sar": 2209.4192886943647, "sek": 5384.1421281668645, "sgd": 804.7197844212579, "thb": 19777.233183966317, "try": 7913.421199000157, "twd": 16373.601613247556, "uah": 16054.797683733013, "usd": 588.5466133410794, "vef": 58.93117239384237, "vnd": 13495680.19595975, "xag": 26.41235938902712, "xau": 0.3285973451605921, "xdr": 421.481183131467, "xlm": 2260.4251517393054, "xrp": 663.1982426751134, "yfi": 0.015793190626235347, "zar": 9290.090582266272, "bits": 12483.570202228671, "link": 31.100740613490807, "sats": 1248357.0202228671}, "market_cap": {"aed": 75633038.0867076, "ars": 2103047828.9022703, "aud": 28959874.950767938, "bch": 47535.52229081709, "bdt": 1766600227.2717557, "bhd": 7762665.095067114, "bmd": 20591770.61604781, "bnb": 39045.82906398734, "brl": 118258538.6479627, "btc": 436.46348832589047, "cad": 26646265.971431285, "chf": 18980752.85013068, "clp": 17966477183.62924, "cny": 131286951.91673598, "czk": 460726453.29463977, "dkk": 135796549.6816504, "dot": 845224.7286033449, "eos": 6401184.2463565795, "eth": 5191.626890918832, "eur": 18262244.198024962, "gbp": 15588155.682283744, "hkd": 160639491.34138152, "huf": 6721842147.2355585, "idr": 296289839451.6582, "ils": 65262528.201971315, "inr": 1560010961.6961749, "jpy": 2340790116.5498505, "krw": 24509766811.163227, "kwd": 6239883.066239725, "lkr": 4169574567.0506454, "ltc": 133924.06787503813, "mmk": 36609811900.79672, "mxn": 427405838.48873955, "myr": 87031118.50872615, "ngn": 8490104748.149126, "nok": 186552937.38012886, "nzd": 30670124.45928379, "php": 1027076334.7872332, "pkr": 3668390041.1944876, "pln": 84556873.12681358, "rub": 1525969634.9187164, "sar": 77302042.27867961, "sek": 188373517.59560558, "sgd": 28153480.621672906, "thb": 692037951.5705968, "try": 277189942.61674273, "twd": 572846564.5301875, "uah": 561717124.347627, "usd": 20591770.61604781, "vef": 2061853.9917848671, "vnd": 472180018716.19244, "xag": 924082.2697792419, "xau": 11498.4447120011, "xdr": 14746570.017205868, "xlm": 79008957.34427077, "xrp": 23179976.56487671, "yfi": 550.443218690797, "zar": 324841358.9993393, "bits": 436463488.3258905, "link": 1085603.379755812, "sats": 43646348832.58905}, "total_volume": {"aed": 11994970.432490105, "ars": 333531445.5684769, "aud": 4593260.3697432475, "bch": 7550.249376319543, "bdt": 280172766.1377546, "bhd": 1231114.6113938445, "bmd": 3265737.9095223937, "bnb": 6205.394690221377, "brl": 18754806.240596198, "btc": 69.26905623357324, "cad": 4226060.799196554, "chf": 3010030.6312067905, "clp": 2849381276.29592, "cny": 20821365.189741917, "czk": 73065660.5449085, "dkk": 21536235.218136393, "dot": 134555.73214117222, "eos": 1017353.9740581156, "eth": 824.4627632926624, "eur": 2896314.371459313, "gbp": 2472653.4581948854, "hkd": 25476511.292870637, "huf": 1065740909.3935387, "idr": 46989886345.64039, "ils": 10350266.44354484, "inr": 247408881.5320877, "jpy": 371178872.1894512, "krw": 3887109861.567224, "kwd": 989610.0272467517, "lkr": 661270853.4925976, "ltc": 21285.80688105177, "mmk": 5806108314.539049, "mxn": 67799818.18696108, "myr": 13802641.274596427, "ngn": 1346482410.319712, "nok": 29587912.034063846, "nzd": 4864904.449057321, "php": 162888475.45115843, "pkr": 581785833.1768159, "pln": 13408714.9049982, "rub": 241992485.39077324, "sar": 12259665.021532748, "sek": 29875623.54389278, "sgd": 4465243.44368997, "thb": 109740263.03149065, "try": 43910132.21006528, "twd": 90854131.67233893, "uah": 89085146.76150914, "usd": 3265737.9095223937, "vef": 326998.3368804778, "vnd": 74885070157.04228, "xag": 146557.36925749315, "xau": 1823.3267896445466, "xdr": 2338722.2807874563, "xlm": 12542687.261025673, "xrp": 3679966.1973037124, "yfi": 87.63353687080091, "zar": 51549019.7542291, "bits": 69269056.23357323, "link": 172572.3423317684, "sats": 6926905623.357324}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 20186, "bing_matches": null}}, "WABI_20211014": {"id": "wabi", "symbol": "wabi", "name": "Wabi", "localization": {"en": "Wabi", "de": "Wabi", "es": "Wabi", "fr": "Wabi", "it": "Wabi", "pl": "Wabi", "ro": "Wabi", "hu": "Wabi", "nl": "Wabi", "pt": "Wabi", "sv": "Wabi", "vi": "Wabi", "tr": "Wabi", "ru": "Wabi", "ja": "Wabi", "zh": "\u86d9\u5e01", "zh-tw": "\u86d9\u5e63", "ko": "Wabi", "ar": "Wabi", "th": "Wabi", "id": "Wabi"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1338/thumb/Tael.png?1547035364", "small": "https://assets.coingecko.com/coins/images/1338/small/Tael.png?1547035364"}, "market_data": {"current_price": {"aed": 0.8242189965601439, "ars": 22.181313873785587, "aud": 0.30769221771324273, "bch": 0.0003838201883603358, "bdt": 19.190337821882064, "bhd": 0.08459321719402378, "bmd": 0.22440007213747246, "bnb": 0.0005548470397967491, "brl": 1.2360853573620534, "btc": 4.101626410645988e-06, "cad": 0.2801971500744547, "chf": 0.20822082693636076, "clp": 185.00663947373903, "cny": 1.4458769848033743, "czk": 4.938125771850094, "dkk": 1.4438349441469263, "dot": 0.006534222975791607, "eos": 0.04893024267402933, "eth": 6.541713440805573e-05, "eur": 0.1940255027730163, "gbp": 0.16483374618879681, "hkd": 1.7467851395357599, "huf": 70.05097051915479, "idr": 3191.7255845792665, "ils": 0.7253395731735575, "inr": 16.898683501188255, "jpy": 25.187786097070592, "krw": 268.51275074269273, "kwd": 0.06766357815168401, "lkr": 44.855576586438424, "ltc": 0.001281673221424675, "mmk": 439.92099649978115, "mxn": 4.650634273030715, "myr": 0.9375435013903602, "ngn": 92.18579363479519, "nok": 1.9192790065870404, "nzd": 0.32435482066973875, "php": 11.350828400129599, "pkr": 38.329094145582374, "pln": 0.8933479071828854, "rub": 16.116749781021483, "sar": 0.8415900305443773, "sek": 1.9619064930904169, "sgd": 0.304133905769359, "thb": 7.5910496226805595, "try": 2.011088256900789, "twd": 6.299022449334975, "uah": 5.908886991518876, "usd": 0.22440007213747246, "vef": 0.022469179223125114, "vnd": 5105.828266288698, "xag": 0.009927461435362507, "xau": 0.000127883357110424, "xdr": 0.15901123751704563, "xlm": 0.6766209485551997, "xrp": 0.19656635567754416, "yfi": 6.8629027776117765e-06, "zar": 3.3518605115163407, "bits": 4.101626410645987, "link": 0.008767562666847693, "sats": 410.16264106459874}, "market_cap": {"aed": 48802139.87467784, "ars": 1313245281.9842806, "aud": 18213403.77693184, "bch": 22690.864728691457, "bdt": 1136263001.1373084, "bhd": 5008778.04950046, "bmd": 13286764.505605044, "bnb": 32825.09381155552, "brl": 73188813.60267487, "btc": 242.77906292434233, "cad": 16586319.882339964, "chf": 12328323.747993218, "clp": 10954272996.646082, "cny": 85610609.7389649, "czk": 292334608.73321563, "dkk": 85489195.28491266, "dot": 385718.22176025546, "eos": 2890328.2083591046, "eth": 3864.1599071996447, "eur": 11488932.400351629, "gbp": 9759606.852889104, "hkd": 103428825.27920665, "huf": 4147601377.319588, "idr": 188982587237.49176, "ils": 42947473.24969244, "inr": 1000573778.7708485, "jpy": 1491665190.7507603, "krw": 15898683328.785904, "kwd": 4006371.3881395995, "lkr": 2655905932.606064, "ltc": 75780.3900243441, "mmk": 26047793237.708305, "mxn": 275363225.1287389, "myr": 55512102.1044178, "ngn": 5458335726.547612, "nok": 113626045.00785232, "nzd": 19199281.70324775, "php": 672084382.4134911, "pkr": 2269471853.4383006, "pln": 52901252.87906658, "rub": 954275356.9393114, "sar": 49830681.60182112, "sek": 116117605.66147238, "sgd": 18007113.471217822, "thb": 450687052.0301219, "try": 119043112.04384549, "twd": 373025900.2080975, "uah": 349866152.88807654, "usd": 13286764.505605044, "vef": 1330403.7299462329, "vnd": 302350276623.54083, "xag": 587858.412977184, "xau": 7573.9872387750975, "xdr": 9415081.049258772, "xlm": 39728320.328614965, "xrp": 11608933.748114586, "yfi": 405.3798769206312, "zar": 198424541.12670574, "bits": 242779062.92434233, "link": 518120.8567766308, "sats": 24277906292.434235}, "total_volume": {"aed": 21273692.276728634, "ars": 572515857.5740408, "aud": 7941760.118238271, "bch": 9906.678456637559, "bdt": 495316588.4467643, "bhd": 2183412.513900743, "bmd": 5791929.209896519, "bnb": 14321.005988156116, "brl": 31904262.859793987, "btc": 105.86596336452982, "cad": 7232092.407937282, "chf": 5374331.113862982, "clp": 4775156037.099182, "cny": 37319137.47812619, "czk": 127456620.79199146, "dkk": 37266430.92231621, "dot": 168653.051476201, "eos": 1262925.1813137485, "eth": 1688.4638583076182, "eur": 5007939.463974136, "gbp": 4254478.976917118, "hkd": 45085795.99249095, "huf": 1808066541.4533966, "idr": 82380760697.67754, "ils": 18721542.38160897, "inr": 436167322.26078624, "jpy": 650115094.1648347, "krw": 6930509555.734507, "kwd": 1746446.2065893023, "lkr": 1157755083.5125563, "ltc": 33080.91881612243, "mmk": 11354681152.298876, "mxn": 120036255.93315665, "myr": 24198680.238947667, "ngn": 2379382438.7175922, "nok": 49537988.26491706, "nzd": 8371834.029789929, "php": 292973143.6403365, "pkr": 989301820.8776263, "pln": 23057959.781058554, "rub": 415985043.74858296, "sar": 21722051.308795918, "sek": 50638234.72148737, "sgd": 7849917.496756947, "thb": 195930516.53050464, "try": 51907651.84642046, "twd": 162582354.678329, "uah": 152512674.51995045, "usd": 5791929.209896519, "vef": 579945.8717869384, "vnd": 131785144249.49017, "xag": 256235.0061651142, "xau": 3300.762537427923, "xdr": 4104195.7897079284, "xlm": 17464079.216355693, "xrp": 5073520.727008533, "yfi": 177.13651641777642, "zar": 86513959.72928606, "bits": 105865963.36452982, "link": 226297.17462213535, "sats": 10586596336.452982}}, "community_data": {"facebook_likes": null, "twitter_followers": 45297, "reddit_average_posts_48h": 1.364, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 7899, "reddit_accounts_active_48h": "10.5"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 847605, "bing_matches": null}}, "BRD_20211031": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.773221462172008, "ars": 20.977221246118436, "aud": 0.28052180784712183, "bch": 0.00038187007765344994, "bdt": 18.02118309232685, "bhd": 0.07935960960943736, "bmd": 0.21050350162583256, "bnb": 0.00046629220762039607, "brl": 1.1654315864012579, "btc": 3.596628503261211e-06, "cad": 0.26030863011050437, "chf": 0.19327589505277443, "clp": 169.52899503436424, "cny": 1.345685734843461, "czk": 4.668188592601429, "dkk": 1.3500863105449472, "dot": 0.0051933948384763, "eos": 0.05051585648679093, "eth": 5.329633408925102e-05, "eur": 0.18147127968860086, "gbp": 0.15328296628938712, "hkd": 1.637412012571619, "huf": 65.92843368820081, "idr": 2993.2229658432802, "ils": 0.6715903715870557, "inr": 15.7894780149722, "jpy": 23.948714402806637, "krw": 246.72512648786932, "kwd": 0.06348954011836395, "lkr": 42.40896502100345, "ltc": 0.0011638469859327559, "mmk": 393.2696691862784, "mxn": 4.27505246346854, "myr": 0.8730632729931419, "ngn": 86.44675940581017, "nok": 1.7737203974969042, "nzd": 0.29384541647902707, "php": 10.674620779249883, "pkr": 36.64865963305735, "pln": 0.8387364669830164, "rub": 14.871314577259197, "sar": 0.7895382200935314, "sek": 1.8079141652939996, "sgd": 0.28390923019528475, "thb": 7.012548828921202, "try": 2.00171631910084, "twd": 5.846355851354558, "uah": 5.55225909369459, "usd": 0.21050350162583256, "vef": 0.0210777156177946, "vnd": 4789.074783705861, "xag": 0.008756202590273888, "xau": 0.00011717887921503594, "xdr": 0.14905584547323888, "xlm": 0.6318337503467629, "xrp": 0.21073731946558907, "yfi": 6.161122210380675e-06, "zar": 3.173138203647865, "bits": 3.5966285032612113, "link": 0.007254911118906734, "sats": 359.66285032612114}, "market_cap": {"aed": 66413177.99877056, "ars": 1801765725.2097023, "aud": 24094448.57460949, "bch": 32793.28864669987, "bdt": 1547867071.7405572, "bhd": 6816318.657399121, "bmd": 18080468.800710686, "bnb": 40045.14421395501, "brl": 100100707.46825475, "btc": 308.91359135791384, "cad": 22358307.71895885, "chf": 16600763.234060543, "clp": 14561105548.652344, "cny": 115583012.90230337, "czk": 400957882.18473047, "dkk": 115960985.10258201, "dot": 445891.41735216294, "eos": 4337911.437660335, "eth": 4575.0004164660595, "eur": 15586846.704654278, "gbp": 13165709.20801992, "hkd": 140639830.58976814, "huf": 5662694345.5698, "idr": 257092514041.38562, "ils": 57683927.661787294, "inr": 1356182497.7935584, "jpy": 2056991832.5954325, "krw": 21191599747.0889, "kwd": 5453214.034044738, "lkr": 3642571087.941411, "ltc": 99936.90521769295, "mmk": 33778535411.858215, "mxn": 367190816.7329936, "myr": 74988744.35094772, "ngn": 7425044829.598628, "nok": 152347566.95463642, "nzd": 25238833.76688167, "php": 916859560.3777857, "pkr": 3147809618.2037234, "pln": 72040362.30361585, "rub": 1277320031.0825272, "sar": 67814649.37692012, "sek": 155284522.14568633, "sgd": 24385399.47855053, "thb": 602318580.6198051, "try": 171930486.55174845, "twd": 502152476.0958995, "uah": 476892054.2492672, "usd": 18080468.800710686, "vef": 1810397.3410151622, "vnd": 411340982654.8846, "xag": 752083.6780546997, "xau": 10064.673762603612, "xdr": 12802635.314032843, "xlm": 54238207.78723887, "xrp": 18051580.559974857, "yfi": 527.2976038766553, "zar": 272545709.92066485, "bits": 308913591.3579139, "link": 622891.1673375014, "sats": 30891359135.791386}, "total_volume": {"aed": 929299.1032920727, "ars": 25211551.731657296, "aud": 337146.1828722617, "bch": 458.95197960565883, "bdt": 21658826.231903158, "bhd": 95378.64331972356, "bmd": 252994.41993141477, "bnb": 560.4150319321052, "brl": 1400678.306508283, "btc": 4.322621404696378, "cad": 312852.8996871873, "chf": 232289.3566042278, "clp": 203749056.09176487, "cny": 1617317.4282955567, "czk": 5610479.90173059, "dkk": 1622606.2766442206, "dot": 6241.7009906588455, "eos": 60712.67086060626, "eth": 64.05439825579728, "eur": 218101.93552331376, "gbp": 184223.7057447178, "hkd": 1967929.7451575054, "huf": 79236334.35599929, "idr": 3597416205.05176, "ils": 807153.397349185, "inr": 18976643.14638414, "jpy": 28782851.884387124, "krw": 296527515.10639656, "kwd": 76305.14100667396, "lkr": 50969373.062741295, "ltc": 1398.7738485146847, "mmk": 472652621.2815838, "mxn": 5137987.776061116, "myr": 1049294.3566655442, "ngn": 103896360.78215057, "nok": 2131752.486867796, "nzd": 353159.2116874004, "php": 12829332.867034532, "pkr": 44046328.51005919, "pln": 1008038.5566073274, "rub": 17873144.988242675, "sar": 948909.4597642166, "sek": 2172848.3944526133, "sgd": 341217.36907779804, "thb": 8428058.010964332, "try": 2405770.237106671, "twd": 7026464.623639151, "uah": 6673003.336614353, "usd": 252994.41993141477, "vef": 25332.33126773254, "vnd": 5755767422.175479, "xag": 10523.674798844488, "xau": 140.8318737990213, "xdr": 179143.3247980752, "xlm": 759371.75356922, "xrp": 253275.4347757377, "yfi": 7.404767748293508, "zar": 3813648.005822943, "bits": 4322621.404696378, "link": 8719.342034719566, "sats": 432262140.4696378}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "NAS_20211114": {"id": "nebulas", "symbol": "nas", "name": "Nebulas", "localization": {"en": "Nebulas", "de": "Nebulas", "es": "Nebulas", "fr": "Nebulas", "it": "Nebulas", "pl": "Nebulas", "ro": "Nebulas", "hu": "Nebulas", "nl": "Nebulas", "pt": "Nebulas", "sv": "Nebulas", "vi": "Nebulas", "tr": "Nebulas", "ru": "Nebulas", "ja": "\u30cd\u30d6\u30e9\u30b9", "zh": "\u661f\u4e91\u5e01", "zh-tw": "\u661f\u96f2\u5e63", "ko": "\ub124\ubdf8\ub77c\uc2a4", "ar": "Nebulas", "th": "Nebulas", "id": "Nebulas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2431/thumb/193394331.png?1597976208", "small": "https://assets.coingecko.com/coins/images/2431/small/193394331.png?1597976208"}, "market_data": {"current_price": {"aed": 1.8130745006350608, "ars": 49.42434573272344, "aud": 0.6732117589483719, "bch": 0.0007418520956436105, "bdt": 42.33592682144703, "bhd": 0.18609137635669887, "bmd": 0.49359536661087394, "bnb": 0.0008088706716685164, "brl": 2.7102334389869873, "btc": 7.603167648645038e-06, "cad": 0.6164784011054844, "chf": 0.4531146234043829, "clp": 392.5218433899658, "cny": 3.153630156813534, "czk": 10.841669213044193, "dkk": 3.1964298110523637, "dot": 0.010525439549900668, "eos": 0.10227869034582268, "eth": 0.00010652326559448055, "eur": 0.42975719706098997, "gbp": 0.36802519894043423, "hkd": 3.8458236191802992, "huf": 156.18095077843483, "idr": 7060.832359831894, "ils": 1.5370954592555905, "inr": 36.72603729198706, "jpy": 56.20521080061362, "krw": 584.9645048182301, "kwd": 0.14895474175899648, "lkr": 99.35521804347216, "ltc": 0.0019056107055482375, "mmk": 876.0858353327487, "mxn": 10.172852920835538, "myr": 2.0501483552182695, "ngn": 202.66532157675903, "nok": 4.269905950311363, "nzd": 0.6986141508956337, "php": 24.710372724059713, "pkr": 84.57756606877327, "pln": 1.981318455725843, "rub": 35.16817627565814, "sar": 1.8508335589900589, "sek": 4.2948389330649785, "sgd": 0.6676987922986946, "thb": 16.205055735632584, "try": 4.860964190036385, "twd": 13.708969633640422, "uah": 12.858905616407625, "usd": 0.49359536661087394, "vef": 0.04942370405874686, "vnd": 11248.813344824848, "xag": 0.02003148204409579, "xau": 0.00026698079784615557, "xdr": 0.3499373967309789, "xlm": 1.2843390042846405, "xrp": 0.4166928496270277, "yfi": 1.4965970941394034e-05, "zar": 7.628269593287756, "bits": 7.603167648645038, "link": 0.014430579395200276, "sats": 760.3167648645039}, "market_cap": {"aed": 82350576.2360691, "ars": 2244873748.8475194, "aud": 30577550.044897433, "bch": 33706.09783504096, "bdt": 1922914898.4297361, "bhd": 8452345.488378778, "bmd": 22419300.946332663, "bnb": 36810.761970610474, "brl": 123099897.63612336, "btc": 345.3847796915018, "cad": 28000698.013426892, "chf": 20580649.23712203, "clp": 17828500691.55213, "cny": 143239155.676214, "czk": 492432995.3029032, "dkk": 145183133.26127046, "dot": 478415.8809486616, "eos": 4649347.634533037, "eth": 4843.892002369993, "eur": 19519745.497040603, "gbp": 16715853.204886591, "hkd": 174678862.35830373, "huf": 7093801875.872298, "idr": 320705858107.19385, "ils": 69815496.69095543, "inr": 1668111449.807025, "jpy": 2552863379.4579515, "krw": 26569324113.57332, "kwd": 6765584.543079539, "lkr": 4512754139.487549, "ltc": 86784.19185705888, "mmk": 39792172548.14352, "mxn": 462055089.1329318, "myr": 93118566.48059265, "ngn": 9205140775.55471, "nok": 193940853.1523641, "nzd": 31731336.948799506, "php": 1122355111.2332072, "pkr": 3841547217.1540895, "pln": 89992284.6408303, "rub": 1597352773.125255, "sar": 84065607.91986175, "sek": 195073319.3010665, "sgd": 30327148.872627858, "thb": 736040177.7751136, "try": 220786957.16705492, "twd": 622666938.6931598, "uah": 584056687.6349951, "usd": 22419300.946332663, "vef": 2244844.603756289, "vnd": 510925646240.04315, "xag": 909838.0064448297, "xau": 12126.375688861852, "xdr": 15894297.921708202, "xlm": 58446146.969531596, "xrp": 18937595.778611943, "yfi": 680.019696162792, "zar": 346479086.4750995, "bits": 345384779.6915018, "link": 655529.7364934719, "sats": 34538477969.150185}, "total_volume": {"aed": 20879372.647238605, "ars": 569170948.0432446, "aud": 7752709.103052624, "bch": 8543.171474008599, "bdt": 487540689.6746926, "bhd": 2143028.9775892217, "bmd": 5684246.065348638, "bnb": 9314.957643093858, "brl": 31211058.295616314, "btc": 87.55810672969254, "cad": 7099367.544547512, "chf": 5218069.677037266, "clp": 4520282998.547204, "cny": 36317216.53611898, "czk": 124852702.70910254, "dkk": 36810097.51244537, "dot": 121211.00074011467, "eos": 1177841.7758641224, "eth": 1226.7223201081297, "eur": 4949085.468978906, "gbp": 4238179.55057001, "hkd": 44288519.005860716, "huf": 1798580406.1337595, "idr": 81312571540.20578, "ils": 17701196.987180892, "inr": 422937181.12917525, "jpy": 647259415.2151843, "krw": 6736453398.48372, "kwd": 1715363.3563705855, "lkr": 1144175058.0302572, "ltc": 21945.019924869335, "mmk": 10089007716.15984, "mxn": 117150611.81726241, "myr": 23609516.032425623, "ngn": 2333894591.971501, "nok": 49172252.697826296, "nzd": 8045243.142559723, "php": 284564743.57622224, "pkr": 973995563.2974894, "pln": 22816870.65559694, "rub": 404996847.910025, "sar": 21314206.102745637, "sek": 49459381.019325264, "sgd": 7689221.758748738, "thb": 186617481.7168465, "try": 55978881.57000832, "twd": 157872544.94517338, "uah": 148083204.58238336, "usd": 5684246.065348638, "vef": 569163.5585233598, "vnd": 129541376034.77512, "xag": 230682.62122083092, "xau": 3074.5518542864247, "xdr": 4029880.3535053115, "xlm": 14790452.717993416, "xrp": 4798636.395666612, "yfi": 172.34817664892358, "zar": 87847180.81693059, "bits": 87558106.72969255, "link": 166182.6056250935, "sats": 8755810672.969254}}, "community_data": {"facebook_likes": null, "twitter_followers": 26034, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5215, "reddit_accounts_active_48h": "11.2307692307692"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 447495, "bing_matches": null}}, "MDA_20211123": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.427856065115463, "ars": 66.42548793664993, "aud": 0.9140092076227633, "bch": 0.0011441565079897413, "bdt": 56.736391988118996, "bhd": 0.24929260502091408, "bmd": 0.6610116324022339, "bnb": 0.001131128398709731, "brl": 3.710654899653181, "btc": 1.1332075115242e-05, "cad": 0.8355524149496765, "chf": 0.6138484524303345, "clp": 547.6481374452515, "cny": 4.222013498479556, "czk": 14.897153058285934, "dkk": 4.356793770326366, "dot": 0.01595645272912564, "eos": 0.1531052483341355, "eth": 0.00015307060833901016, "eur": 0.5856344929245106, "gbp": 0.4916412828434416, "hkd": 5.149948238162129, "huf": 215.41047076724007, "idr": 9432.206336818821, "ils": 2.0467035376396874, "inr": 49.12033626369753, "jpy": 75.35201869571151, "krw": 787.7540027990392, "kwd": 0.20008425505836216, "lkr": 133.4569986090147, "ltc": 0.0030139703203244795, "mmk": 1170.5532735210022, "mxn": 13.77905188207748, "myr": 2.765342164154748, "ngn": 271.5700190561334, "nok": 5.897726240468377, "nzd": 0.9446186732844125, "php": 33.38621292051051, "pkr": 115.71883540197813, "pln": 2.7525185384861404, "rub": 48.59658369676366, "sar": 2.479576920292778, "sek": 5.9205668364144115, "sgd": 0.8998847110615918, "thb": 21.668998437396503, "try": 7.423953845835973, "twd": 18.37579287496593, "uah": 17.56677743301068, "usd": 0.6610116324022339, "vef": 0.06618709475243574, "vnd": 14985.796566379533, "xag": 0.026864933915836425, "xau": 0.0003580766113886144, "xdr": 0.47118032877406296, "xlm": 1.8516383103945062, "xrp": 0.6033923272954625, "yfi": 2.063056214009657e-05, "zar": 10.395201133484019, "bits": 11.332075115242, "link": 0.023246343938291076, "sats": 1133.2075115242}, "market_cap": {"aed": 47308436.02029225, "ars": 1294346065.782219, "aud": 17810094.569474835, "bch": 22392.28544499126, "bdt": 1105547404.1310174, "bhd": 4857636.918604985, "bmd": 12880263.77242542, "bnb": 22113.49751523148, "brl": 72304648.7128873, "btc": 221.57288585418686, "cad": 16282971.855824774, "chf": 11961256.952262875, "clp": 10671298535.454456, "cny": 82268820.76723555, "czk": 290281216.61277527, "dkk": 84895106.55043316, "dot": 312194.61621955124, "eos": 2997544.609013075, "eth": 2995.3491003250583, "eur": 11411488.653664434, "gbp": 9579966.666280633, "hkd": 100350263.85360414, "huf": 4197420358.1579895, "idr": 183792991861.05875, "ils": 39881418.32383624, "inr": 957143349.1531405, "jpy": 1468285623.141502, "krw": 15349925548.150269, "kwd": 3898778.5623305417, "lkr": 2600500899.0739036, "ltc": 58889.245577075104, "mmk": 22809031163.088467, "mxn": 268494250.4417163, "myr": 53884583.49194171, "ngn": 5291727568.263271, "nok": 114921229.6895894, "nzd": 18406540.943984553, "php": 650553194.0727757, "pkr": 2254860656.5343633, "pln": 53634706.374756604, "rub": 946937672.1530577, "sar": 48316252.25916569, "sek": 115366294.3239819, "sgd": 17534869.093185652, "thb": 422235255.59396464, "try": 144660818.48086435, "twd": 358064892.7415398, "uah": 342300673.5091498, "usd": 12880263.77242542, "vef": 1289700.8115329568, "vnd": 292008495997.87463, "xag": 523481.6122784796, "xau": 6977.3676881605725, "xdr": 9181270.981468966, "xlm": 36169376.130449414, "xrp": 11827578.34877037, "yfi": 403.5382469710022, "zar": 202557604.13791668, "bits": 221572885.85418686, "link": 454351.40619878605, "sats": 22157288585.418686}, "total_volume": {"aed": 2282572.871536535, "ars": 62450578.89606144, "aud": 859314.7887270264, "bch": 1075.6900474679317, "bdt": 53341279.5930241, "bhd": 234374.9061039784, "bmd": 621456.6182776014, "bnb": 1063.441541785388, "brl": 3488608.8723631436, "btc": 10.653962402435708, "cad": 785552.8597904205, "chf": 577115.6885634945, "clp": 514876808.2429933, "cny": 3969367.712262702, "czk": 14005705.6604605, "dkk": 4096082.7167295003, "dot": 15001.616713931993, "eos": 143943.41219760152, "eth": 143.9108450638742, "eur": 550590.0557255523, "gbp": 462221.41043294955, "hkd": 4841774.727566976, "huf": 202520282.76430482, "idr": 8867781996.019495, "ils": 1924228.5563053049, "inr": 46180969.54233408, "jpy": 70842945.00059877, "krw": 740614710.2661496, "kwd": 188111.18961292063, "lkr": 125470916.05578308, "ltc": 2833.613980514846, "mmk": 1100507227.433294, "mxn": 12954511.790643867, "myr": 2599863.7625643476, "ngn": 255319237.0531694, "nok": 5544805.60592955, "nzd": 888092.5803496065, "php": 31388377.99763704, "pkr": 108794206.62929422, "pln": 2587807.504169758, "rub": 45688558.390841864, "sar": 2331198.744633668, "sek": 5566279.417917521, "sgd": 846035.5037076703, "thb": 20372323.012573883, "try": 6979703.5711994, "twd": 17276183.25980821, "uah": 16515579.397415165, "usd": 621456.6182776014, "vef": 62226.45118813628, "vnd": 14089044730.564173, "xag": 25257.33309853099, "xau": 336.6492646871597, "xdr": 442984.8422707848, "xlm": 1740836.055288658, "xrp": 567285.2591911854, "yfi": 19.396026865906332, "zar": 9773151.070357222, "bits": 10653962.402435709, "link": 21855.279972467193, "sats": 1065396240.2435708}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 389, "reddit_accounts_active_48h": "8.75"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 7, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 614634, "bing_matches": null}}, "NEBL_20211205": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 5.512564468499199, "ars": 151.54314376585438, "aud": 2.111288178086029, "bch": 0.0026287784823429026, "bdt": 128.69377566156473, "bhd": 0.5658715714876146, "bmd": 1.500834323032728, "bnb": 0.002391746092303752, "brl": 8.548202998632178, "btc": 2.625305624535887e-05, "cad": 1.9226963387223828, "chf": 1.381707099476327, "clp": 1257.620169288501, "cny": 9.557763219369328, "czk": 33.78085398453686, "dkk": 9.859821135222889, "dot": 0.040896348944623545, "eos": 0.3762903268167181, "eth": 0.00032709337448062385, "eur": 1.325928591860818, "gbp": 1.1303593737293898, "hkd": 11.69664723815295, "huf": 480.9348546442232, "idr": 21582.597898939846, "ils": 4.732040570462808, "inr": 112.58982487625796, "jpy": 169.40367254367297, "krw": 1766.7821650741273, "kwd": 0.45385229928509757, "lkr": 303.0736219908566, "ltc": 0.007201578483738295, "mmk": 2684.893906038788, "mxn": 32.24634694263242, "myr": 6.333520843198099, "ngn": 616.0632878715109, "nok": 13.656778887394726, "nzd": 2.2027835409210734, "php": 75.78462914153755, "pkr": 263.0918293663854, "pln": 6.1315505666789445, "rub": 111.39867720994278, "sar": 5.6299117025484975, "sek": 13.640269709841368, "sgd": 2.0488114468868215, "thb": 50.63815005912431, "try": 20.130728295696063, "twd": 41.4512415001421, "uah": 40.940507580014035, "usd": 1.500834323032728, "vef": 0.15027854076526692, "vnd": 34094.375295462196, "xag": 0.06704494069496683, "xau": 0.0008419830635645901, "xdr": 1.0722305595640098, "xlm": 4.550068608069877, "xrp": 1.5141681245149923, "yfi": 5.184140931169833e-05, "zar": 24.043440896700453, "bits": 26.25305624535887, "link": 0.059072706090811916, "sats": 2625.3056245358866}, "market_cap": {"aed": 103099140.32091217, "ars": 2834246734.5405264, "aud": 39486521.63148958, "bch": 49164.92191109961, "bdt": 2406904755.704732, "bhd": 10583254.470001694, "bmd": 28069463.741059724, "bnb": 44731.80629297047, "brl": 159873392.04534677, "btc": 490.9997053385838, "cad": 35959368.95671551, "chf": 25841478.126076825, "clp": 23520733234.92295, "cny": 178754765.94219077, "czk": 631788893.3569605, "dkk": 184404026.21471632, "dot": 764866.958481602, "eos": 7037597.370074975, "eth": 6117.487769317578, "eur": 24798276.506140385, "gbp": 21140628.894434072, "hkd": 218757400.80348703, "huf": 8994719308.503897, "idr": 403650116381.9354, "ils": 88501335.00773682, "inr": 2105719437.8326275, "jpy": 3168284580.844632, "krw": 33043372715.9755, "kwd": 8488205.835296473, "lkr": 5668256590.87654, "ltc": 134688.04852438057, "mmk": 50214424728.6811, "mxn": 603089663.1274036, "myr": 118453136.98727179, "ngn": 11521968718.148994, "nok": 255416906.39429563, "nzd": 41197720.3495358, "php": 1417367571.6048098, "pkr": 4920494188.889754, "pln": 114675773.11271, "rub": 2083441911.448289, "sar": 105293835.55189842, "sek": 255108142.29314396, "sgd": 38318045.99487672, "thb": 947063706.6233563, "try": 376496418.89542764, "twd": 775244877.1021187, "uah": 765692838.5910356, "usd": 28069463.741059724, "vef": 2810595.404392307, "vnd": 637652548614.5812, "xag": 1253912.9089585945, "xau": 15747.249853371904, "xdr": 20053470.494279098, "xlm": 85097991.0663773, "xrp": 28318840.13890263, "yfi": 969.567750835893, "zar": 449674212.6049638, "bits": 490999705.33858377, "link": 1104811.6079539878, "sats": 49099970533.85838}, "total_volume": {"aed": 3524393.2880283613, "ars": 96887327.44752876, "aud": 1349827.2766623718, "bch": 1680.6786191482079, "bdt": 82278852.56390129, "bhd": 361783.33692666545, "bmd": 959540.78084083, "bnb": 1529.134747095, "brl": 5465193.095743573, "btc": 16.78458288335704, "cad": 1229253.3012234748, "chf": 883378.1909023692, "clp": 804044670.834697, "cny": 6110643.554628661, "czk": 21597391.872204486, "dkk": 6303760.732180683, "dot": 26146.599926211446, "eos": 240576.7968358831, "eth": 209.1233037120218, "eur": 847716.857782421, "gbp": 722681.9772533935, "hkd": 7478113.907628347, "huf": 307480045.5165402, "idr": 13798580244.803474, "ils": 3025374.5095442855, "inr": 71982980.94502002, "jpy": 108306246.55584691, "krw": 1129571407.2058249, "kwd": 290165.1321262674, "lkr": 193766557.33040798, "ltc": 4604.244542868225, "mmk": 1716555355.6034079, "mxn": 20616322.834404614, "myr": 4049262.0951482938, "ngn": 393872820.75018746, "nok": 8731301.034548327, "nzd": 1408323.7612847716, "php": 48452011.728557676, "pkr": 168204668.23609474, "pln": 3920134.7731889854, "rub": 71221434.68752022, "sar": 3599417.8626007545, "sek": 8720746.085959079, "sgd": 1309883.5130375288, "thb": 32374905.945569646, "try": 12870344.481937576, "twd": 26501363.95834601, "uah": 26174832.230625857, "usd": 959540.78084083, "vef": 96078.81838559223, "vnd": 21797838036.63364, "xag": 42864.39466274969, "xau": 538.3119734595136, "xdr": 685518.0032706478, "xlm": 2909032.874624304, "xrp": 968065.5900682835, "yfi": 33.14419560336198, "zar": 15371891.286109136, "bits": 16784582.88335704, "link": 37767.44018901443, "sats": 1678458288.335704}}, "community_data": {"facebook_likes": null, "twitter_followers": 41130, "reddit_average_posts_48h": 0.077, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6309, "reddit_accounts_active_48h": "16.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1182243, "bing_matches": null}}, "EVX_20211210": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 2.2141071882340517, "ars": 61.03197797123801, "aud": 0.8551897086607871, "bch": 0.0012694734226023508, "bdt": 51.70789759029543, "bhd": 0.2272573361984888, "bmd": 0.6028062042564791, "bnb": 0.0010266902007412349, "brl": 3.429485057255965, "btc": 1.1939620715935018e-05, "cad": 0.7693314181823319, "chf": 0.5580177032802235, "clp": 509.37934431211005, "cny": 3.8436732002005844, "czk": 13.587492966422781, "dkk": 3.9728123733384595, "dot": 0.021310499009211434, "eos": 0.1841892602819484, "eth": 0.0001387009116495449, "eur": 0.5342394097471219, "gbp": 0.4545399902575559, "hkd": 4.7028504719025275, "huf": 195.33167736913845, "idr": 8700.452647584832, "ils": 1.9095634657816316, "inr": 45.44649589693124, "jpy": 68.40403683420831, "krw": 711.7031450554127, "kwd": 0.182483905377338, "lkr": 122.19568959351659, "ltc": 0.0037107337876535976, "mmk": 1072.7927743659202, "mxn": 12.806015606030904, "myr": 2.551377259515543, "ngn": 248.4761387005653, "nok": 5.485522594191269, "nzd": 0.8929398443961448, "php": 30.357318637937702, "pkr": 106.32287753072644, "pln": 2.454166922598532, "rub": 44.8306371299339, "sar": 2.2611441563521786, "sek": 5.483426637019069, "sgd": 0.8252055252548651, "thb": 20.40737592103824, "try": 8.323111033875389, "twd": 16.682842544659337, "uah": 16.499458046812812, "usd": 0.6028062042564791, "vef": 0.06035898523220131, "vnd": 13879.950177932047, "xag": 0.026924236636060937, "xau": 0.00033841540306958726, "xdr": 0.4300166282559938, "xlm": 2.0385481685992053, "xrp": 0.7317266382489682, "yfi": 2.529731479546662e-05, "zar": 9.58986306165505, "bits": 11.93962071593502, "link": 0.03042870153934239, "sats": 1193.9620715935018}, "market_cap": {"aed": 47953869.92040895, "ars": 1322014533.0103066, "aud": 18529150.777876936, "bch": 27512.784062379054, "bdt": 1119906844.6548662, "bhd": 4922014.975802942, "bmd": 13055777.272096084, "bnb": 22239.664279124576, "brl": 74283455.9450451, "btc": 258.65991169109856, "cad": 16662370.464626284, "chf": 12083121.865324944, "clp": 11032307264.567736, "cny": 83247552.62006634, "czk": 294244580.2698655, "dkk": 86033655.4899317, "dot": 461126.3921227862, "eos": 3996013.652560853, "eth": 3008.154130654274, "eur": 11568632.850363433, "gbp": 9845988.318196729, "hkd": 101863132.64348459, "huf": 4229941278.38641, "idr": 188437297312.48102, "ils": 41357960.68477325, "inr": 984295324.1654294, "jpy": 1481478214.3965592, "krw": 15414303436.300266, "kwd": 3952297.118918015, "lkr": 2646554888.9147763, "ltc": 80315.94447350102, "mmk": 23234902730.49052, "mxn": 277367376.9902265, "myr": 55258577.304146774, "ngn": 5381578858.011829, "nok": 118738377.5565323, "nzd": 19340750.116219528, "php": 657488904.2554269, "pkr": 2302776245.7781553, "pln": 53148946.47785775, "rub": 971377246.1762217, "sar": 48972612.22095056, "sek": 118749801.36164536, "sgd": 17872144.898213238, "thb": 441807502.8877325, "try": 180322478.94900975, "twd": 361305593.2837658, "uah": 357350750.2882775, "usd": 13055777.272096084, "vef": 1307274.978254983, "vnd": 300616577585.47235, "xag": 582847.6286226866, "xau": 7328.207782827531, "xdr": 9313443.16326794, "xlm": 44133691.892575495, "xrp": 15856071.942184808, "yfi": 548.5595985336689, "zar": 207713499.66586715, "bits": 258659911.69109854, "link": 659413.7075979053, "sats": 25865991169.109856}, "total_volume": {"aed": 3762174.116530095, "ars": 103704522.08646837, "aud": 1453124.132266003, "bch": 2157.068129997223, "bdt": 87861199.7504767, "bhd": 386151.88667512377, "bmd": 1024278.2783909851, "bnb": 1744.534916579409, "brl": 5827323.981422, "btc": 20.287604980183506, "cad": 1307235.1527964955, "chf": 948174.4023065362, "clp": 865528911.540444, "cny": 6531105.586504432, "czk": 23087642.10624423, "dkk": 6750536.72208415, "dot": 36210.44555062453, "eos": 312971.3282437162, "eth": 235.67828265949538, "eur": 907770.7213371246, "gbp": 772346.7930379391, "hkd": 7991005.31958199, "huf": 331904338.07439375, "idr": 14783664461.586697, "ils": 3244698.487504178, "inr": 77221930.11206283, "jpy": 116231001.91869557, "krw": 1209314149.3823175, "kwd": 310073.6175476319, "lkr": 207632883.80222592, "ltc": 6305.217147313782, "mmk": 1822871643.0567539, "mxn": 21759768.77041646, "myr": 4335257.813289836, "ngn": 422206523.04561794, "nok": 9320908.774957573, "nzd": 1517268.53517196, "php": 51582651.02693522, "pkr": 180662065.4893127, "pln": 4170079.6252816734, "rub": 76175473.13610968, "sar": 3842098.550592933, "sek": 9317347.359383607, "sgd": 1402175.5064205562, "thb": 34675873.81696068, "try": 14142491.866270907, "twd": 28347208.63795403, "uah": 28035604.748658434, "usd": 1024278.2783909851, "vef": 102560.98401528945, "vnd": 23584580536.858463, "xag": 45749.21517702606, "xau": 575.0298254886989, "xdr": 730677.104116437, "xlm": 3463867.1496842788, "xrp": 1243337.736052209, "yfi": 42.98477663907826, "zar": 16294935.847438665, "bits": 20287604.98018351, "link": 51703.94366599744, "sats": 2028760498.0183508}}, "community_data": {"facebook_likes": null, "twitter_followers": 18829, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2809, "reddit_accounts_active_48h": "11.5384615384615"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1161258, "bing_matches": null}}, "ARK_20200403": {"id": "ark", "symbol": "ark", "name": "Ark", "localization": {"en": "Ark", "de": "Ark", "es": "Ark", "fr": "Ark", "it": "Ark", "pl": "Ark", "ro": "Ark", "hu": "Ark", "nl": "Ark", "pt": "Ark", "sv": "Ark", "vi": "Ark", "tr": "Ark", "ru": "Ark", "ja": "\u30a2\u30fc\u30af", "zh": "Ark", "zh-tw": "Ark", "ko": "\uc544\ud06c", "ar": "Ark", "th": "Ark", "id": "Ark"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/613/thumb/ark.png?1547034308", "small": "https://assets.coingecko.com/coins/images/613/small/ark.png?1547034308"}, "market_data": {"current_price": {"aed": 0.5412139907652491, "ars": 9.486906248778595, "aud": 0.2391258475672869, "bch": 0.000668377893971832, "bdt": 12.51603468513726, "bhd": 0.05550346374755832, "bmd": 0.1473495038150745, "bnb": 0.012109434824045574, "brl": 0.7653479104163736, "btc": 2.298364723275023e-05, "cad": 0.20897312920359187, "chf": 0.14144638799323495, "clp": 126.67647496351078, "cny": 1.0462256819381717, "czk": 3.6490513748292877, "dkk": 0.9977034903318686, "eos": 0.06619217474878514, "eth": 0.0011140581878703272, "eur": 0.1335981113715326, "gbp": 0.119191603034029, "hkd": 1.1426143598588043, "huf": 47.929579014268526, "idr": 2362.0714859571676, "ils": 0.5258159676165743, "inr": 11.111640817645135, "jpy": 15.921555935730233, "krw": 180.3911565505666, "kwd": 0.04637339379216879, "lkr": 27.737031697880674, "ltc": 0.0037845552729108105, "mmk": 204.06868687386802, "mxn": 3.51297425540556, "myr": 0.6385390747826244, "ngn": 57.68267950916424, "nok": 1.5550640397251745, "nzd": 0.24529640273854944, "php": 7.513071088123893, "pkr": 24.442408336150027, "pln": 0.6068546583267735, "rub": 11.731613854947065, "sar": 0.5535881073966307, "sek": 1.4799585241355915, "sgd": 0.20985516333342905, "thb": 4.809487804524036, "try": 0.9688377225344953, "twd": 4.4618904723737645, "uah": 4.1356129925810095, "usd": 0.1473495038150745, "vef": 36614.53078838896, "vnd": 3496.118548557244, "xag": 0.01052408467118254, "xau": 9.116661150542468e-05, "xdr": 0.10769554209588063, "xlm": 3.691588243191498, "xrp": 0.8633667025232772, "zar": 2.644216168512763, "bits": 22.98364723275023, "link": 0.06873454579476461, "sats": 2298.364723275023}, "market_cap": {"aed": 80334452.0339949, "ars": 1407973312.1442058, "aud": 35494403.20048587, "bch": 99158.11075249461, "bdt": 1857802653.3410444, "bhd": 8238590.321444251, "bmd": 21871647.533959296, "bnb": 1795108.8048131678, "brl": 113594775.79712449, "btc": 3404.17204034453, "cad": 31026025.609297935, "chf": 20997240.937199116, "clp": 18803017656.3528, "cny": 155295258.9853712, "czk": 541730089.1096233, "dkk": 148135575.16512942, "eos": 9818117.950875083, "eth": 165256.39414979782, "eur": 19835834.581498347, "gbp": 17707285.84349345, "hkd": 169606752.83274207, "huf": 7116000847.177539, "idr": 350611258628.38086, "ils": 78048864.86669606, "inr": 1649362812.1834037, "jpy": 2365123413.5559874, "krw": 26775708015.948933, "kwd": 6883291.810354914, "lkr": 4117113157.6775355, "ltc": 562194.9103633268, "mmk": 30290691698.729214, "mxn": 521412247.1597718, "myr": 94780784.58841263, "ngn": 8562059609.119007, "nok": 230522900.03666186, "nzd": 36428475.65171853, "php": 1115383094.4789705, "pkr": 3628079675.655387, "pln": 90111187.8399123, "rub": 1741527747.7267554, "sar": 82171189.25060154, "sek": 219674672.21805564, "sgd": 31164801.212900914, "thb": 714546724.934449, "try": 143791209.81545916, "twd": 662339102.2708902, "uah": 613864772.9965466, "usd": 21871647.533959296, "vef": 5434834127639.735, "vnd": 519068986360.75934, "xag": 1561416.042583451, "xau": 13538.987256471479, "xdr": 15985659.10785784, "xlm": 546046176.2843269, "xrp": 127915588.96807237, "zar": 392527155.6731914, "bits": 3404172040.34453, "link": 10180465.120736182, "sats": 340417204034.453}, "total_volume": {"aed": 6122787.243329733, "ars": 107325955.25950025, "aud": 2705245.4556195186, "bch": 7561.400319951024, "bdt": 141594672.0055697, "bhd": 627914.1071605588, "bmd": 1666974.020745941, "bnb": 136994.78271018813, "brl": 8658428.09418246, "btc": 260.01541808425395, "cad": 2364125.893858182, "chf": 1600191.7075268168, "clp": 1433098770.8575022, "cny": 11836015.639502386, "czk": 41281943.16719088, "dkk": 11287081.094470756, "eos": 748836.1536756798, "eth": 12603.40896098183, "eur": 1511403.6702598252, "gbp": 1348421.9532774743, "hkd": 12926466.69517336, "huf": 542230282.2434182, "idr": 26722260342.165703, "ils": 5948588.458161787, "inr": 125706677.60185333, "jpy": 180121543.86366102, "krw": 2040776275.1580083, "kwd": 524625.0628871002, "lkr": 313790749.58407515, "ltc": 42814.90711999244, "mmk": 2308641635.423509, "mxn": 39742494.32600591, "myr": 7223831.918902525, "ngn": 652567709.420097, "nok": 17592535.35099384, "nzd": 2775053.3266862817, "php": 84995836.40022206, "pkr": 276518472.37952995, "pln": 6865384.162195554, "rub": 132720470.79414192, "sar": 6262776.387643926, "sek": 16742862.02287941, "sgd": 2374104.4003463686, "thb": 54410032.03714756, "try": 10960520.883806625, "twd": 50477641.98918175, "uah": 46786444.74530383, "usd": 1666974.020745941, "vef": 414222444092.15717, "vnd": 39551804675.27783, "xag": 119059.61869412905, "xau": 1031.3734963757206, "xdr": 1218366.307152896, "xlm": 41763165.381367356, "xrp": 9767320.732139139, "zar": 29914180.530115947, "bits": 260015418.08425394, "link": 777598.1540558324, "sats": 26001541808.425396}}, "community_data": {"facebook_likes": null, "twitter_followers": 62511, "reddit_average_posts_48h": 0.417, "reddit_average_comments_48h": 0.75, "reddit_subscribers": 22041, "reddit_accounts_active_48h": "1410.0"}, "developer_data": {"forks": 175, "stars": 257, "subscribers": 36, "total_issues": 816, "closed_issues": 786, "pull_requests_merged": 2514, "pull_request_contributors": 44, "code_additions_deletions_4_weeks": {"additions": 1896, "deletions": -1526}, "commit_count_4_weeks": 29}, "public_interest_stats": {"alexa_rank": 83106, "bing_matches": null}}, "ZEN_20200403": {"id": "zencash", "symbol": "zen", "name": "Horizen", "localization": {"en": "Horizen", "de": "Horizen", "es": "Horizen", "fr": "Horizen", "it": "Horizen", "pl": "Horizen", "ro": "Horizen", "hu": "Horizen", "nl": "Horizen", "pt": "Horizen", "sv": "Horizen", "vi": "Horizen", "tr": "Horizen", "ru": "Horizen", "ja": "\u30bc\u30f3\u30ad\u30e3\u30c3\u30b7\u30e5", "zh": "Horizen", "zh-tw": "Horizen", "ko": "\uc820\uce90\uc2dc", "ar": "Horizen", "th": "Horizen", "id": "Horizen"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/691/thumb/horizen.png?1555052241", "small": "https://assets.coingecko.com/coins/images/691/small/horizen.png?1555052241"}, "market_data": {"current_price": {"aed": 20.876700432470766, "ars": 365.9463782646224, "aud": 9.224001541911836, "bch": 0.025781900147123078, "bdt": 482.7914857754663, "bhd": 2.1409815810265584, "bmd": 5.683835788633195, "bnb": 0.4671073688813463, "brl": 29.52240578590385, "btc": 0.0008865674692652849, "cad": 8.06089548914063, "chf": 5.456129959268971, "clp": 4886.397736901233, "cny": 40.35693925003221, "czk": 140.75791408734975, "dkk": 38.48525212483533, "eos": 2.553286180296712, "eth": 0.04297349929853924, "eur": 5.153391813658999, "gbp": 4.597677504768545, "hkd": 44.07502043116668, "huf": 1848.8277834808143, "idr": 91114.16122610547, "ils": 20.282739592558613, "inr": 428.6186252044076, "jpy": 614.1555084691821, "krw": 6958.379125876294, "kwd": 1.7887997478912727, "lkr": 1069.9237483196669, "ltc": 0.1459848194075173, "mmk": 7871.712328592246, "mxn": 135.50889742038237, "myr": 24.630902390041914, "ngn": 2225.042295289392, "nok": 59.98478728302456, "nzd": 9.462023533232378, "php": 289.8079818905723, "pkr": 942.8374827495217, "pln": 23.40871286424794, "rub": 452.5333642850819, "sar": 21.35401759432857, "sek": 57.08767934320028, "sgd": 8.094918930171394, "thb": 185.52040014098762, "try": 37.371788693842085, "twd": 172.11223719943717, "uah": 159.5264627743089, "usd": 5.683835788633195, "vef": 1412362.954002472, "vnd": 134858.7081265833, "xag": 0.40595432999723324, "xau": 0.003516646040785242, "xdr": 4.154230320375169, "xlm": 142.3987243274503, "xrp": 33.30336672646468, "zar": 101.99756431034432, "bits": 886.5674692652849, "link": 2.651355187419114, "sats": 88656.74692652849}, "market_cap": {"aed": 182825107.2135874, "ars": 3204264985.061523, "aud": 80778145.6935196, "bch": 225558.0669870704, "bdt": 4227986382.916181, "bhd": 18749379.882114377, "bmd": 49775484.91451448, "bnb": 4084194.230252468, "brl": 258518936.00051418, "btc": 7743.576993193435, "cad": 70609014.12548454, "chf": 47785510.80311711, "clp": 42791898518.29668, "cny": 353420875.53852725, "czk": 1232869075.6536467, "dkk": 337126870.5517607, "eos": 22333581.082218498, "eth": 375913.9069795565, "eur": 45142382.778671496, "gbp": 40298232.58679096, "hkd": 385990966.3374911, "huf": 16194591297.724695, "idr": 797920933373.6364, "ils": 177623569.04002047, "inr": 3753619092.8884506, "jpy": 5382546724.458399, "krw": 60936143395.414635, "kwd": 15664992.183901567, "lkr": 9369724139.58019, "ltc": 1278842.409251238, "mmk": 68935541566.28136, "mxn": 1186629740.7384233, "myr": 215702063.8770487, "ngn": 19485531131.075607, "nok": 524623904.7794248, "nzd": 82903907.32776402, "php": 2538388308.7426624, "pkr": 8256781976.933702, "pln": 205074997.84779963, "rub": 3963368008.7697253, "sar": 187005152.88573807, "sek": 499935513.13924956, "sgd": 70924839.57726714, "thb": 1626165092.1571908, "try": 327239965.98319125, "twd": 1507351009.6662421, "uah": 1397033154.4708397, "usd": 49775484.91451448, "vef": 12368592887810.168, "vnd": 1181296948941.6045, "xag": 3553469.8770277933, "xau": 30812.020671782782, "xdr": 36380155.291744925, "xlm": 1242108376.951658, "xrp": 291168176.6453773, "zar": 893313111.6625711, "bits": 7743576993.193435, "link": 23157823.563159972, "sats": 774357699319.3435}, "total_volume": {"aed": 7493178.192072963, "ars": 131347452.62788749, "aud": 3310728.5042994283, "bch": 9253.778994315984, "bdt": 173286130.35537434, "bhd": 768452.6845835204, "bmd": 2040073.0717229317, "bnb": 167656.70232132776, "brl": 10596341.501762994, "btc": 318.2115894218311, "cad": 2893260.1913404632, "chf": 1958343.6643235674, "clp": 1753852294.733035, "cny": 14485130.83115431, "czk": 50521591.551916614, "dkk": 13813334.768635958, "eos": 916439.2805370295, "eth": 15424.280710568555, "eur": 1849683.252304388, "gbp": 1650223.268008966, "hkd": 15819644.631021887, "huf": 663591263.9973372, "idr": 32703187368.947247, "ils": 7279990.556077924, "inr": 153842114.34593326, "jpy": 220436015.61887777, "krw": 2497539057.326079, "kwd": 642045.6769134257, "lkr": 384022816.44183457, "ltc": 52397.66066943828, "mmk": 2825357548.5107684, "mxn": 48637586.110253416, "myr": 8840656.65631131, "ngn": 798624210.6329458, "nok": 21530064.167908333, "nzd": 3396160.6443239516, "php": 104019447.7482429, "pkr": 338408326.8934255, "pln": 8401981.783771813, "rub": 162425721.79520756, "sar": 7664499.448490101, "sek": 20490218.52252042, "sgd": 2905472.068747799, "thb": 66587985.06103654, "try": 13413684.453885434, "twd": 61775454.72491503, "uah": 57258100.52146826, "usd": 2040073.0717229317, "vef": 506932947591.78394, "vnd": 48404216653.582146, "xag": 145707.32297243827, "xau": 1262.2136102056943, "xdr": 1491058.8070262137, "xlm": 51110520.03456747, "xrp": 11953424.444852246, "zar": 36609517.24660917, "bits": 318211589.4218311, "link": 951638.7387974393, "sats": 31821158942.18311}}, "community_data": {"facebook_likes": null, "twitter_followers": 58824, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 5101, "reddit_accounts_active_48h": "988.5"}, "developer_data": {"forks": 48, "stars": 84, "subscribers": 33, "total_issues": 77, "closed_issues": 55, "pull_requests_merged": 183, "pull_request_contributors": 25, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 40207, "bing_matches": null}}, "BNT_20200406": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 0.667962146122168, "ars": 11.746984714431887, "aud": 0.3000478207534182, "bch": 0.000781364479934802, "bdt": 15.515950930038612, "bhd": 0.06856191851615864, "bmd": 0.18185509958823468, "bnb": 0.013896476190277274, "brl": 0.9559758875154326, "btc": 2.667629040816954e-05, "cad": 0.2570570933556586, "chf": 0.17723179739140302, "clp": 156.92257048602087, "cny": 1.288297896502971, "czk": 4.620192474628733, "dkk": 1.252280948464225, "eos": 0.07899935196519568, "eth": 0.0012860929861357197, "eur": 0.16770404501377612, "gbp": 0.14676343029619107, "hkd": 1.4096616250396752, "huf": 60.99891499535084, "idr": 2991.594949629496, "ils": 0.6632528264632293, "inr": 13.85226664583501, "jpy": 19.640688485909006, "krw": 223.29078402941394, "kwd": 0.05676770603236384, "lkr": 34.61352040652286, "ltc": 0.004546330262787004, "mmk": 255.99403209275056, "mxn": 4.409550803906271, "myr": 0.792524524005527, "ngn": 70.79488473193982, "nok": 1.890980244946349, "nzd": 0.3076539102936944, "php": 9.232706845097754, "pkr": 30.28796683642061, "pln": 0.7655681425935623, "rub": 14.027338550208597, "sar": 0.6842363589843191, "sek": 1.8384574006485743, "sgd": 0.26018009098088724, "thb": 5.990306980436445, "try": 1.206063020469172, "twd": 5.478748585294759, "uah": 5.032911895723839, "usd": 0.18185509958823468, "vef": 45188.7449261827, "vnd": 4321.014588113987, "xag": 0.01257514374520174, "xau": 0.00011270833507180027, "xdr": 0.1334441809472491, "xlm": 4.356790946329394, "xrp": 1.0206827444429092, "zar": 3.3623634907862625, "bits": 26.676290408169542, "link": 0.07908839565431403, "sats": 2667.6290408169543}, "market_cap": {"aed": 46383276.00865624, "ars": 815687616.9982989, "aud": 20841501.47415916, "bch": 54507.03547889852, "bdt": 1077427274.4388738, "bhd": 4760938.039198945, "bmd": 12628013.917782746, "bnb": 968378.2900828535, "brl": 66381680.761608586, "btc": 1860.875942136468, "cad": 17851629.758915316, "chf": 12307211.852215374, "clp": 10895463932.865856, "cny": 89459376.19635652, "czk": 320906398.21834147, "dkk": 86963550.26961806, "eos": 5507301.634476584, "eth": 89704.92658577752, "eur": 11645794.367243666, "gbp": 10193206.554295043, "hkd": 97880367.27742983, "huf": 4235926542.133117, "idr": 207726421770.6687, "ils": 46056260.960241236, "inr": 961901076.145347, "jpy": 1363651006.951177, "krw": 15505306888.949533, "kwd": 3941948.196561139, "lkr": 2403562058.0711365, "ltc": 316636.5648936589, "mmk": 17776219679.60318, "mxn": 306231484.26859826, "myr": 55032884.65369706, "ngn": 4915995161.680907, "nok": 131283762.38849813, "nzd": 21367925.4903498, "php": 641101195.2244021, "pkr": 2103195718.0067143, "pln": 53164532.11051939, "rub": 974060590.7467788, "sar": 47513356.974158585, "sek": 127666126.8453736, "sgd": 18068351.7337723, "thb": 415890063.26721215, "try": 83748988.30273518, "twd": 380280036.3761368, "uah": 349485285.8681483, "usd": 12628013.917782746, "vef": 3137905404616.3647, "vnd": 300034752487.9269, "xag": 872825.4652919514, "xau": 7822.802061788043, "xdr": 9266360.84478547, "xlm": 304508538.24611336, "xrp": 71114083.62242779, "zar": 233440202.4827404, "bits": 1860875942.136468, "link": 5517022.439154876, "sats": 186087594213.6468}, "total_volume": {"aed": 21639978.252468903, "ars": 380567215.11565644, "aud": 9720653.114101924, "bch": 25313.875121822017, "bdt": 502670462.15370405, "bhd": 2221201.3573683235, "bmd": 5891562.003979496, "bnb": 450204.31814792025, "brl": 30970763.142519433, "btc": 864.2321239918768, "cad": 8327881.964799125, "chf": 5741780.823152327, "clp": 5083822537.479437, "cny": 41737003.54859151, "czk": 149680435.11690274, "dkk": 40570162.01901744, "eos": 2559343.023269617, "eth": 41665.57103902048, "eur": 5433110.1066398285, "gbp": 4754696.741881596, "hkd": 45668825.825377345, "huf": 1976182634.8796794, "idr": 96918740120.24887, "ils": 21487410.36281379, "inr": 448772060.96712613, "jpy": 636299637.885246, "krw": 7233954406.586224, "kwd": 1839104.1036002384, "lkr": 1121374666.4942703, "ltc": 147287.52008838864, "mmk": 8293441955.37056, "mxn": 142856274.19706506, "myr": 25675427.21334265, "ngn": 2293542792.6255913, "nok": 61262111.35473992, "nzd": 9967067.694918312, "php": 299112122.5944355, "pkr": 981239651.7627891, "pln": 24802120.97749275, "rub": 454443867.708357, "sar": 22167214.13620503, "sek": 59560528.09143659, "sgd": 8429057.759093462, "thb": 194068052.4110844, "try": 39072839.210392006, "twd": 177495088.4938907, "uah": 163051311.51868635, "usd": 5891562.003979496, "vef": 1463980351485.5264, "vnd": 139987965273.53738, "xag": 407397.0939036792, "xau": 3651.4133832063744, "xdr": 4323192.849148131, "xlm": 141147012.4115055, "xrp": 33067072.01993913, "zar": 108930533.32426763, "bits": 864232123.9918768, "link": 2562227.7728130263, "sats": 86423212399.18768}}, "community_data": {"facebook_likes": null, "twitter_followers": 738, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5018, "reddit_accounts_active_48h": "1058.38461538462"}, "developer_data": {"forks": 242, "stars": 583, "subscribers": 65, "total_issues": 54, "closed_issues": 33, "pull_requests_merged": 233, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 175, "deletions": -62}, "commit_count_4_weeks": 10}, "public_interest_stats": {"alexa_rank": 146407, "bing_matches": null}}, "EDO_20200410": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "DVPN_20211023": {"id": "sentinel-group", "symbol": "dvpn", "name": "Sentinel [OLD]", "localization": {"en": "Sentinel [OLD]", "de": "Sentinel [OLD]", "es": "Sentinel [OLD]", "fr": "Sentinel [OLD]", "it": "Sentinel [OLD]", "pl": "Sentinel [OLD]", "ro": "Sentinel [OLD]", "hu": "Sentinel [OLD]", "nl": "Sentinel [OLD]", "pt": "Sentinel [OLD]", "sv": "Sentinel [OLD]", "vi": "Sentinel [OLD]", "tr": "Sentinel [OLD]", "ru": "Sentinel [OLD]", "ja": "Sentinel [OLD]", "zh": "Sentinel [OLD]", "zh-tw": "Sentinel [OLD]", "ko": "\uc13c\ud2f0\ub12c", "ar": "Sentinel [OLD]", "th": "Sentinel [OLD]", "id": "Sentinel [OLD]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3625/thumb/Sentinel_512X512.png?1622174555", "small": "https://assets.coingecko.com/coins/images/3625/small/Sentinel_512X512.png?1622174555"}, "market_data": {"current_price": {"aed": 0.01597457091643905, "ars": 0.4319153097168582, "aud": 0.005817732413478676, "bch": 7.010519488287416e-06, "bdt": 0.3723997956198392, "bhd": 0.001639385339004629, "bmd": 0.004348952117074781, "bnb": 8.906841786072941e-06, "brl": 0.02428802778343921, "btc": 6.762445108957177e-08, "cad": 0.00537388705831426, "chf": 0.0040153874896951425, "clp": 3.5248256908891067, "cny": 0.027758491572864905, "czk": 0.0953725199274498, "dkk": 0.027820029245321544, "dot": 0.0001050089972697095, "eos": 0.0009729401423827661, "eth": 1.1195453924638926e-06, "eur": 0.0037390724679846814, "gbp": 0.0031528946079326394, "hkd": 0.03381505973870909, "huf": 1.3550029197889963, "idr": 61.32392146005389, "ils": 0.013967964409620764, "inr": 0.32669615769200677, "jpy": 0.4981789884390914, "krw": 5.1133021964112615, "kwd": 0.0013117700781211496, "lkr": 0.8742032442428241, "ltc": 2.3013406850635716e-05, "mmk": 8.17647963565575, "mxn": 0.08800756516823144, "myr": 0.01814165375637745, "ngn": 1.787279057714055, "nok": 0.0363189689201149, "nzd": 0.006079052248289469, "php": 0.22089304142373073, "pkr": 0.7505453789382865, "pln": 0.01714159482124762, "rub": 0.3082537260582602, "sar": 0.01631404576974579, "sek": 0.03752525951358852, "sgd": 0.0058497754926772885, "thb": 0.1451601239709115, "try": 0.040486265307259496, "twd": 0.12115136414767019, "uah": 0.11416532488850882, "usd": 0.004348952117074781, "vef": 0.0004354605754826975, "vnd": 99.22303855540757, "xag": 0.0001839348417766879, "xau": 2.4584626317823738e-06, "xdr": 0.0030711995424133874, "xlm": 0.011563591957993797, "xrp": 0.0039812529807698735, "yfi": 1.2509773366399443e-07, "zar": 0.06314787197795509, "bits": 0.06762445108957177, "link": 0.00016760681832140618, "sats": 6.762445108957176}, "market_cap": {"aed": 30296528.860736426, "ars": 819031719.2505378, "aud": 11036714.019740574, "bch": 13410.130645922276, "bdt": 706273815.7253605, "bhd": 3109757.3966626204, "bmd": 8247993.264928774, "bnb": 16949.159320983363, "brl": 46063392.785974175, "btc": 128.5211418531455, "cad": 10199889.119067434, "chf": 7612559.6158054, "clp": 6686251815.553379, "cny": 52641992.214081384, "czk": 180852923.52076662, "dkk": 52751690.52450503, "dot": 199797.7937961568, "eos": 1858524.05026742, "eth": 2145.090985611729, "eur": 7089975.01053278, "gbp": 5979869.349012752, "hkd": 64136808.02774945, "huf": 2569405607.6421666, "idr": 116303715829.77097, "ils": 26490904.768298194, "inr": 619587192.063133, "jpy": 943335361.6998017, "krw": 9698980240.09505, "kwd": 2487883.448466785, "lkr": 1657967776.2797728, "ltc": 44074.89294147292, "mmk": 15507080131.08175, "mxn": 166929535.5782003, "myr": 34406503.90465043, "ngn": 3389659217.6069493, "nok": 68962378.96732862, "nzd": 11537779.610585002, "php": 418461938.29616123, "pkr": 1423444789.4244182, "pln": 32504830.08150184, "rub": 584926237.56626, "sar": 30939501.175703853, "sek": 71142241.1073167, "sgd": 11091901.342676219, "thb": 275070575.3853744, "try": 76690171.29703836, "twd": 229244716.5574368, "uah": 216519935.24412262, "usd": 8247993.264928774, "vef": 825871.5656173178, "vnd": 188117437088.10498, "xag": 348627.33404106606, "xau": 4661.270913741844, "xdr": 5824675.10773985, "xlm": 22111772.807159748, "xrp": 7596226.545885275, "yfi": 239.68351045136964, "zar": 119770355.64701378, "bits": 128521141.85314551, "link": 321055.4529909356, "sats": 12852114185.31455}, "total_volume": {"aed": 2219.605207320159, "ars": 60012.971589883615, "aud": 808.3515499288944, "bch": 0.9740847277599912, "bdt": 51743.51974062376, "bhd": 227.78628949053078, "bmd": 604.2701751388882, "bnb": 1.2375714197618786, "brl": 3374.7280741156587, "btc": 0.009396157465870773, "cad": 746.6809443945701, "chf": 557.9226527057351, "clp": 489760.97695006843, "cny": 3856.9356738764945, "czk": 13251.644940795797, "dkk": 3865.486096854714, "dot": 14.590596415673366, "eos": 135.18629187224494, "eth": 0.15555652768031134, "eur": 519.5297428581109, "gbp": 438.0825830318407, "hkd": 4698.472533283666, "huf": 188272.44577834988, "idr": 8520723.099107187, "ils": 1940.7949485110787, "inr": 45393.17497901902, "jpy": 69220.0549674223, "krw": 710473.6797704238, "kwd": 182.26540865696776, "lkr": 121467.17951470887, "ltc": 3.1976243963637576, "mmk": 1136090.4071715937, "mxn": 12228.3127949279, "myr": 2520.7130355918725, "ngn": 248335.55306039445, "nok": 5046.381086619882, "nzd": 844.6609362126405, "php": 30692.23878184729, "pkr": 104285.39458966939, "pln": 2381.758691737982, "rub": 42830.670013844356, "sar": 2266.773932921326, "sek": 5213.990526449031, "sgd": 812.8038125793186, "thb": 20169.441091498025, "try": 5625.410896543222, "twd": 16833.5162266789, "uah": 15862.832932630576, "usd": 604.2701751388882, "vef": 60.50557263665683, "vnd": 13786659.699076612, "xag": 25.557039043534655, "xau": 0.3415939300060135, "xdr": 426.73136779185637, "xlm": 1606.7166410633072, "xrp": 553.1797939362469, "yfi": 0.017381849097355805, "zar": 8774.15401056044, "bits": 9396.157465870774, "link": 23.2883229649517, "sats": 939615.7465870773}}, "community_data": {"facebook_likes": null, "twitter_followers": 26797, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1101, "reddit_accounts_active_48h": "5.30769230769231"}, "developer_data": {"forks": 57, "stars": 267, "subscribers": 43, "total_issues": 39, "closed_issues": 13, "pull_requests_merged": 139, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 179362, "bing_matches": null}}, "GENS_20211031": {"id": "genshiro", "symbol": "gens", "name": "Genshiro", "localization": {"en": "Genshiro", "de": "Genshiro", "es": "Genshiro", "fr": "Genshiro", "it": "Genshiro", "pl": "Genshiro", "ro": "Genshiro", "hu": "Genshiro", "nl": "Genshiro", "pt": "Genshiro", "sv": "Genshiro", "vi": "Genshiro", "tr": "Genshiro", "ru": "Genshiro", "ja": "Genshiro", "zh": "Genshiro", "zh-tw": "Genshiro", "ko": "Genshiro", "ar": "Genshiro", "th": "Genshiro", "id": "Genshiro"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/16444/thumb/genshiro.PNG?1624234640", "small": "https://assets.coingecko.com/coins/images/16444/small/genshiro.PNG?1624234640"}, "market_data": {"current_price": {"aed": 0.3222668058598755, "ars": 8.74298298421861, "aud": 0.11691717239066882, "bch": 0.00015912788251163835, "bdt": 7.510951773979893, "bhd": 0.03307586397211341, "bmd": 0.08773461991175953, "bnb": 0.00019431716874425523, "brl": 0.4857339496794661, "btc": 1.4989885949360933e-06, "cad": 0.10849263098288192, "chf": 0.08055441861818124, "clp": 70.65707614593553, "cny": 0.5608611047099061, "czk": 1.945629163814528, "dkk": 0.5626951969391601, "dot": 0.002163667018510608, "eos": 0.021049510131011886, "eth": 2.219997318979993e-05, "eur": 0.07563443660276956, "gbp": 0.06388598138500579, "hkd": 0.6824481277146173, "huf": 27.477956548643707, "idr": 1247.5292676422787, "ils": 0.27990853136647725, "inr": 6.580811442799628, "jpy": 9.981455601818263, "krw": 102.83123571773228, "kwd": 0.02646146324234593, "lkr": 17.675403963504667, "ltc": 0.00048493910700408337, "mmk": 163.90874585170064, "mxn": 1.7817760754019538, "myr": 0.36387933608402345, "ngn": 36.029678938800814, "nok": 0.7392593648191792, "nzd": 0.12247024742336371, "php": 4.44901766258661, "pkr": 15.274597326637304, "pln": 0.3495724516150129, "rub": 6.198135052134128, "sar": 0.32906737945309605, "sek": 0.7535108010084057, "sgd": 0.11832899789428888, "thb": 2.9227224315329683, "try": 0.8342845561763655, "twd": 2.4366711457332877, "uah": 2.3140961431737366, "usd": 0.08773461991175953, "vef": 0.008784867491764489, "vnd": 1996.0126678760366, "xag": 0.003649450485120917, "xau": 4.883835352008007e-05, "xdr": 0.0621241824825577, "xlm": 0.26318833860775753, "xrp": 0.08759444108958334, "yfi": 2.558686689289908e-06, "zar": 1.32251516993466, "bits": 1.4989885949360933, "link": 0.0030225499357959024, "sats": 149.89885949360934}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 4710739.866937645, "ars": 127800684.86986548, "aud": 1709038.520553752, "bch": 2326.0542086822356, "bdt": 109791450.18031295, "bhd": 483486.93757367454, "bmd": 1282462.1221108674, "bnb": 2840.434127838866, "brl": 7100223.292854616, "btc": 21.91148826330142, "cad": 1585892.6602023002, "chf": 1177505.4220373158, "clp": 1032830870.0419872, "cny": 8198395.608018158, "czk": 28440263.476105038, "dkk": 8225205.478680865, "dot": 31627.435086528305, "eos": 307691.52997029625, "eth": 324.508440982932, "eur": 1105587.511153582, "gbp": 933854.2908438384, "hkd": 9975695.739945492, "huf": 401659441.8723924, "idr": 18235777776.037178, "ils": 4091567.154382507, "inr": 96195109.94214818, "jpy": 145904076.9281032, "krw": 1503137130.0232828, "kwd": 386800.8357256139, "lkr": 258370482.4731875, "ltc": 7088.604668128814, "mmk": 2395938550.2430124, "mxn": 26045138.49931302, "myr": 5319011.651454835, "ngn": 526664372.14067644, "nok": 10806134.850186562, "nzd": 1790210.678110637, "php": 65033582.39436325, "pkr": 223276655.4595016, "pln": 5109880.5532022165, "rub": 90601332.06349318, "sar": 4810147.353408829, "sek": 11014455.432378009, "sgd": 1729675.9010227604, "thb": 42722938.96815986, "try": 12195167.00972059, "twd": 35618077.00980966, "uah": 33826335.07192504, "usd": 1282462.1221108674, "vef": 128412.93228696127, "vnd": 29176745102.20761, "xag": 53345.897188521165, "xau": 713.8953648942356, "xdr": 908101.1689697294, "xlm": 3847159.4860183294, "xrp": 1280413.0560757734, "yfi": 37.40164104733005, "zar": 19331885.327184107, "bits": 21911488.263301417, "link": 44182.1690086027, "sats": 2191148826.330142}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6947, "reddit_accounts_active_48h": "5.58333333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BASIC_20211113": {"id": "basic", "symbol": "basic", "name": "BASIC", "localization": {"en": "BASIC", "de": "BASIC", "es": "BASIC", "fr": "BASIC", "it": "BASIC", "pl": "BASIC", "ro": "BASIC", "hu": "BASIC", "nl": "BASIC", "pt": "BASIC", "sv": "BASIC", "vi": "BASIC", "tr": "BASIC", "ru": "BASIC", "ja": "BASIC", "zh": "BASIC", "zh-tw": "BASIC", "ko": "BASIC", "ar": "BASIC", "th": "BASIC", "id": "BASIC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11050/thumb/unTgJN6U_400x400.jpg?1587540882", "small": "https://assets.coingecko.com/coins/images/11050/small/unTgJN6U_400x400.jpg?1587540882"}, "market_data": {"current_price": {"aed": 0.04149239770706152, "ars": 1.1304769354371556, "aud": 0.015320931171961386, "bch": 1.572594327203095e-05, "bdt": 0.9685112841749706, "bhd": 0.0042588333791549, "bmd": 0.011295981081090466, "bnb": 1.7759737477693192e-05, "brl": 0.06190876520900553, "btc": 1.6811576330996375e-07, "cad": 0.014050506067714378, "chf": 0.010291373003643686, "clp": 8.955538227251127, "cny": 0.07221294785519523, "czk": 0.24596621518306366, "dkk": 0.07246823702762778, "dot": 0.00022168523015091908, "eos": 0.002177851070103787, "eth": 2.3832520697851485e-06, "eur": 0.009743077377948649, "gbp": 0.008331441214206918, "hkd": 0.08799783885810022, "huf": 3.514648452358192, "idr": 161.06882943621494, "ils": 0.03513134836077238, "inr": 0.837878831890832, "jpy": 1.2756494954970068, "krw": 13.313556261984042, "kwd": 0.0034080426760893286, "lkr": 2.2759935095253945, "ltc": 4.273262222238065e-05, "mmk": 20.67026442211637, "mxn": 0.22958403788451603, "myr": 0.04687267349598484, "ngn": 4.640528623846171, "nok": 0.09610779977125022, "nzd": 0.01585367223170777, "php": 0.5668323758330442, "pkr": 1.9355663582448555, "pln": 0.04474561766645342, "rub": 0.7992923253168811, "sar": 0.042382441944383877, "sek": 0.09685021683182377, "sgd": 0.015221503946485627, "thb": 0.37028225983814633, "try": 0.10993813587171307, "twd": 0.31343635334968456, "uah": 0.2948559894287365, "usd": 0.011295981081090466, "vef": 0.0011310665856495892, "vnd": 255.65373286011442, "xag": 0.00046505644478698067, "xau": 6.171898143086215e-06, "xdr": 0.008011358294293143, "xlm": 0.027348578298826136, "xrp": 0.008963269837056465, "yfi": 3.2574911032770875e-07, "zar": 0.17007003196068246, "bits": 0.16811576330996375, "link": 0.0003333335747588889, "sats": 16.811576330996374}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 22578567.988345616, "ars": 615162096.1080403, "aud": 8337061.852948099, "bch": 8557.45387035053, "bdt": 527026614.1670305, "bhd": 2317493.4281013985, "bmd": 6146838.72055581, "bnb": 9664.166504097248, "brl": 33688370.43871692, "btc": 91.48213652547325, "cad": 7645745.342563346, "chf": 5600169.618943179, "clp": 4873259679.129248, "cny": 39295510.57276924, "czk": 133845360.09597002, "dkk": 39434429.12785375, "dot": 120632.58133001848, "eos": 1185102.8422602094, "eth": 1296.874171285876, "eur": 5301808.214286129, "gbp": 4533650.0730557, "hkd": 47885041.532486714, "huf": 1912536595.1844647, "idr": 87647465974.46928, "ils": 19117129.433832582, "inr": 455941454.7552916, "jpy": 694159423.293008, "krw": 7244725584.434288, "kwd": 1854525.829346576, "lkr": 1238508185.4912114, "ltc": 23253.45049905625, "mmk": 11247963395.289839, "mxn": 124930808.89206505, "myr": 25506307.27094631, "ngn": 2525197309.0372396, "nok": 52298170.53874849, "nzd": 8626959.06068695, "php": 308448391.58484566, "pkr": 1053260814.7672404, "pln": 24348845.246188253, "rub": 434944161.027809, "sar": 23062895.851654366, "sek": 52702165.36681828, "sgd": 8282957.378529767, "thb": 201493373.25981995, "try": 59824107.847809486, "twd": 170560015.93565556, "uah": 160449296.06356844, "usd": 6146838.72055581, "vef": 615482.9610892537, "vnd": 139116934856.57648, "xag": 253065.8418723802, "xau": 3358.509740137287, "xdr": 4359473.251070033, "xlm": 14882045.112556836, "xrp": 4877466.924005324, "yfi": 177.26014501749418, "zar": 92545574.40894452, "bits": 91482136.52547325, "link": 181387.31903678318, "sats": 9148213652.547325}}, "community_data": {"facebook_likes": null, "twitter_followers": 13006, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1207723, "bing_matches": null}}, "SWP_20211127": {"id": "kava-swap", "symbol": "swp", "name": "Kava Swap", "localization": {"en": "Kava Swap", "de": "Kava Swap", "es": "Kava Swap", "fr": "Kava Swap", "it": "Kava Swap", "pl": "Kava Swap", "ro": "Kava Swap", "hu": "Kava Swap", "nl": "Kava Swap", "pt": "Kava Swap", "sv": "Kava Swap", "vi": "Kava Swap", "tr": "Kava Swap", "ru": "Kava Swap", "ja": "Kava Swap", "zh": "Kava Swap", "zh-tw": "Kava Swap", "ko": "Kava Swap", "ar": "Kava Swap", "th": "Kava Swap", "id": "Kava Swap"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/18031/thumb/6123a3093aeaba00d21e7685_Kava_Swap-Logo-White-p-500.png?1630296688", "small": "https://assets.coingecko.com/coins/images/18031/small/6123a3093aeaba00d21e7685_Kava_Swap-Logo-White-p-500.png?1630296688"}, "market_data": {"current_price": {"aed": 9.722850475953415, "ars": 266.2143513086688, "aud": 3.665451894535771, "bch": 0.0046120863547895186, "bdt": 226.9874659313663, "bhd": 0.9979904737944577, "bmd": 2.6470421376911593, "bnb": 0.004460949807511121, "brl": 14.749580848386772, "btc": 4.5908853458092794e-05, "cad": 3.3559967863868474, "chf": 2.471225598905711, "clp": 2149.2180819407104, "cny": 16.919628639908133, "czk": 60.066677541445586, "dkk": 17.50671611562666, "dot": 0.0647302871851505, "eos": 0.6236138680285793, "eth": 0.000608004943579729, "eur": 2.3541495721977728, "gbp": 1.9791087010032724, "hkd": 20.631178773271767, "huf": 871.3003900424238, "idr": 37798.4382051609, "ils": 8.296994758064658, "inr": 197.06504219677603, "jpy": 304.8399901818581, "krw": 3150.125731170053, "kwd": 0.801100832550854, "lkr": 536.5376055400754, "ltc": 0.012176819641467381, "mmk": 4705.124901463436, "mxn": 56.33244490400427, "myr": 11.105665288683253, "ngn": 1084.9696313968532, "nok": 23.568016437155237, "nzd": 3.807788644363696, "php": 134.25797722369586, "pkr": 462.92942806441846, "pln": 11.075091951992906, "rub": 196.6895248579969, "sar": 9.929997405480577, "sek": 23.926185061764084, "sgd": 3.6158595600861267, "thb": 87.69650602170812, "try": 33.94487426111012, "twd": 73.49777199513258, "uah": 71.17009019726984, "usd": 2.6470421376911593, "vef": 0.2650483292470158, "vnd": 60031.733083191546, "xag": 0.11189973580768707, "xau": 0.0014787700902211657, "xdr": 1.8918092513022187, "xlm": 7.728177439675082, "xrp": 2.4811774903057695, "yfi": 8.349099416464543e-05, "zar": 41.94741205177805, "bits": 45.90885345809279, "link": 0.0980704910447, "sats": 4590.88534580928}, "market_cap": {"aed": 357806444.49220806, "ars": 9798330419.64671, "aud": 134847761.91007486, "bch": 169900.03402693494, "bdt": 8353268244.746334, "bhd": 36730612.71762847, "bmd": 97412660.82932876, "bnb": 164231.62043544534, "brl": 542744381.076688, "btc": 1691.2816955511196, "cad": 123476879.42412817, "chf": 90927899.99792036, "clp": 79092451564.43285, "cny": 622651986.7549871, "czk": 2209910052.809764, "dkk": 644213694.7535944, "dot": 2394187.284087678, "eos": 22986100.633662287, "eth": 22379.449854202325, "eur": 86628202.5615747, "gbp": 72821126.84094724, "hkd": 759239149.13683, "huf": 32059480805.540497, "idr": 1391004090312.401, "ils": 305334140.60988164, "inr": 7252095654.548798, "jpy": 11218675203.400904, "krw": 115934968537.37897, "kwd": 29481454.736692216, "lkr": 19744889983.596283, "ltc": 448642.93178993353, "mmk": 173151280691.61334, "mxn": 2071606966.407409, "myr": 407720691.9011567, "ngn": 39927501420.72528, "nok": 867246898.0212607, "nzd": 140094602.6476642, "php": 4927131995.09681, "pkr": 17036067058.3386, "pln": 407525866.57949775, "rub": 7237410014.040147, "sar": 365440382.48342043, "sek": 880375299.7338903, "sgd": 133043289.78087237, "thb": 3228697248.888157, "try": 1249190738.677065, "twd": 2704730716.7888994, "uah": 2619099922.461552, "usd": 97412660.82932876, "vef": 9753929.728840698, "vnd": 2208700994918.4067, "xag": 4120211.6863878747, "xau": 54426.40185856254, "xdr": 69619659.74279135, "xlm": 284669286.82242006, "xrp": 91437051.9306442, "yfi": 3070.0125168015443, "zar": 1543980932.8787785, "bits": 1691281695.5511193, "link": 3607406.322331284, "sats": 169128169555.11194}, "total_volume": {"aed": 5522044.294146527, "ars": 151195109.2223088, "aud": 2081775.0689213427, "bch": 2619.4113755595044, "bdt": 128916395.8850421, "bhd": 566803.6976459699, "bmd": 1503374.3416042353, "bnb": 2533.5741295173307, "brl": 8376950.665478619, "btc": 26.073703685565658, "cad": 1906021.5881417575, "chf": 1403520.217834881, "clp": 1220637659.255319, "cny": 9609418.454100119, "czk": 34114569.05630893, "dkk": 9942851.849324526, "dot": 36763.242826088586, "eos": 354178.3770319869, "eth": 345.3133664670593, "eur": 1337027.47408007, "gbp": 1124024.8872385547, "hkd": 11717374.787180483, "huf": 494850698.28245115, "idr": 21467433910.937675, "ils": 4712236.671297968, "inr": 111922104.9968624, "jpy": 173132347.61499774, "krw": 1789098152.0978286, "kwd": 454981.21074310667, "lkr": 304723849.30686545, "ltc": 6915.7638069531995, "mmk": 2672252152.764402, "mxn": 31993730.30849547, "myr": 6307407.050200567, "ngn": 616203075.1367445, "nok": 13385337.04832922, "nzd": 2162614.5140180835, "php": 76251146.60616696, "pkr": 262918453.0974664, "pln": 6290043.0765550295, "rub": 111708831.80263948, "sar": 5639692.356623109, "sek": 13588757.127117345, "sgd": 2053609.3506313874, "thb": 49806791.93734833, "try": 19278821.544430237, "twd": 41742691.968983114, "uah": 40420696.73494489, "usd": 1503374.3416042353, "vef": 150532.8728248321, "vnd": 34094722526.035633, "xag": 63552.895229806556, "xau": 839.8600759372059, "xdr": 1074443.6014524475, "xlm": 4389179.720541263, "xrp": 1409172.344776211, "yfi": 47.41829251408826, "zar": 23823822.853968166, "bits": 26073703.685565658, "link": 55698.64484051215, "sats": 2607370368.5565658}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 226, "stars": 302, "subscribers": 35, "total_issues": 138, "closed_issues": 100, "pull_requests_merged": 657, "pull_request_contributors": 21, "code_additions_deletions_4_weeks": {"additions": 13, "deletions": -40}, "commit_count_4_weeks": 3}, "public_interest_stats": {"alexa_rank": 43706, "bing_matches": null}}, "CREAM_20211218": {"id": "cream-2", "symbol": "cream", "name": "Cream", "localization": {"en": "Cream", "de": "Cream", "es": "Cream", "fr": "Cream", "it": "Cream", "pl": "Cream", "ro": "Cream", "hu": "Cream", "nl": "Cream", "pt": "Cream", "sv": "Cream", "vi": "Cream", "tr": "Cream", "ru": "Cream", "ja": "Cream", "zh": "Cream", "zh-tw": "Cream", "ko": "Cream", "ar": "Cream", "th": "Cream", "id": "Cream"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11976/thumb/Cream.png?1596593418", "small": "https://assets.coingecko.com/coins/images/11976/small/Cream.png?1596593418"}, "market_data": {"current_price": {"aed": 127.73350579171121, "ars": 3537.7635960091548, "aud": 48.93809284458781, "bch": 0.07965836545380066, "bdt": 2984.098540368735, "bhd": 13.11254978842009, "bmd": 34.77539565808483, "bnb": 0.06592976638411614, "brl": 197.60078798376583, "btc": 0.0007195797592989905, "cad": 44.73680774434328, "chf": 32.139420667202025, "clp": 29335.600142651714, "cny": 221.43233185285516, "czk": 781.5213767824034, "dkk": 229.6962177754601, "dot": 1.3281426605589506, "eos": 10.350077440221835, "eth": 0.008995159931594884, "eur": 30.88538512437584, "gbp": 26.283278813776196, "hkd": 271.291207623678, "huf": 11355.905452147605, "idr": 497901.9436439784, "ils": 109.13284216211497, "inr": 2644.5766849988563, "jpy": 3955.5447668266893, "krw": 41216.84219583191, "kwd": 10.532041553611922, "lkr": 7044.941118724369, "ltc": 0.23088808174349315, "mmk": 61918.30632539771, "mxn": 738.3788470520087, "myr": 147.22163751850263, "ngn": 14339.375044710476, "nok": 316.4108924742166, "nzd": 51.603209617032164, "php": 1749.2644409075197, "pkr": 6196.0850822649, "pln": 143.04685126974906, "rub": 2567.4535512781454, "sar": 130.46452193892765, "sek": 317.82364292282614, "sgd": 47.640796709562984, "thb": 1161.9600322343772, "try": 500.5396574046448, "twd": 966.7977297695501, "uah": 938.889431492066, "usd": 34.77539565808483, "vef": 3.482060367244034, "vnd": 800170.3410718422, "xag": 1.5832204813875024, "xau": 0.01962271250798754, "xdr": 24.82229489138874, "xlm": 129.5846042775566, "xrp": 42.79843055217007, "yfi": 0.0017262384524658297, "zar": 559.6409639564946, "bits": 719.5797592989904, "link": 1.8861188619691422, "sats": 71957.97592989905}, "market_cap": {"aed": 97765190.86501513, "ars": 2707726615.6349835, "aud": 37472247.02579754, "bch": 61104.06380089824, "bdt": 2283981493.7428384, "bhd": 10036136.758685052, "bmd": 26616533.953612834, "bnb": 50588.80703440019, "brl": 151243157.5011479, "btc": 551.7399916688024, "cad": 34240094.84167449, "chf": 24601662.333324324, "clp": 22453001108.125996, "cny": 169480779.9496298, "czk": 598158690.84633, "dkk": 175802579.39508805, "dot": 1020669.6951962023, "eos": 7934254.352106851, "eth": 6906.775481945672, "eur": 23643387.26139241, "gbp": 20116802.97867455, "hkd": 207648889.63911027, "huf": 8691546677.913546, "idr": 381086217360.94446, "ils": 83528539.18390691, "inr": 2024087382.2376573, "jpy": 3026954677.2610345, "krw": 31546690130.478905, "kwd": 8061056.85665725, "lkr": 5392085724.383012, "ltc": 177109.48330974643, "mmk": 47391285461.248116, "mxn": 565215406.7719473, "myr": 112681096.49262013, "ngn": 10975129269.66204, "nok": 242175857.48373702, "nzd": 39490419.09629627, "php": 1338859141.7632997, "pkr": 4742384834.181926, "pln": 109476705.35341066, "rub": 1964779303.3877892, "sar": 99855467.12599443, "sek": 243273257.17864445, "sgd": 36460685.652890466, "thb": 889524564.72974, "try": 383062495.00700027, "twd": 740527869.3108138, "uah": 718611016.75739, "usd": 26616533.953612834, "vef": 2665113.5447752494, "vnd": 612437634389.9661, "xag": 1212323.7667163468, "xau": 15017.04845662835, "xdr": 18998589.154215317, "xlm": 99762268.00540209, "xrp": 32818265.818660483, "yfi": 1325.5336974716015, "zar": 428598061.29484105, "bits": 551739991.6688024, "link": 1447662.0746432918, "sats": 55173999166.88024}, "total_volume": {"aed": 10597051.185907172, "ars": 293500610.338535, "aud": 4060011.283651992, "bch": 6608.632330785074, "bdt": 247567345.62381673, "bhd": 1087845.8273292056, "bmd": 2885042.929924911, "bnb": 5469.677706855188, "brl": 16393393.8214623, "btc": 59.69791163540576, "cad": 3711463.477201905, "chf": 2666356.675836604, "clp": 2433745588.944438, "cny": 18370510.856296867, "czk": 64836723.78137446, "dkk": 19056100.917992525, "dot": 110185.62176693534, "eos": 858665.0756379003, "eth": 746.2581538783525, "eur": 2562319.142740583, "gbp": 2180518.331480179, "hkd": 22506912.306647435, "huf": 942110768.7669797, "idr": 41307034905.639404, "ils": 9053899.423548952, "inr": 219399869.45702502, "jpy": 328160650.585774, "krw": 3419439431.8349032, "kwd": 873761.2167141291, "lkr": 584463733.0988278, "ltc": 19154.980561180902, "mmk": 5136878201.2831745, "mxn": 61257525.09729527, "myr": 12213829.243837148, "ngn": 1189625935.5043666, "nok": 26250140.106507797, "nzd": 4281115.203715581, "php": 145122806.29180986, "pkr": 514040778.588399, "pln": 11867479.840099623, "rub": 213001565.4991846, "sar": 10823622.262322972, "sek": 26367344.97553598, "sgd": 3952384.7571511455, "thb": 96398747.22960179, "try": 41525865.411874264, "twd": 80207655.5034286, "uah": 77892322.00087585, "usd": 2885042.929924911, "vef": 288879.34857338126, "vnd": 66383882672.17947, "xag": 131347.43602197967, "xau": 1627.9431740687303, "xdr": 2059311.9079081742, "xlm": 10750622.367431354, "xrp": 3550651.463190876, "yfi": 143.2125198981945, "zar": 46429039.146925576, "bits": 59697911.63540576, "link": 156476.54856967833, "sats": 5969791163.540576}}, "community_data": {"facebook_likes": null, "twitter_followers": 78270, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 71868, "bing_matches": null}}, "APPC_20211219": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.25973974066616956, "ars": 7.200520775121659, "aud": 0.0986764929671922, "bch": 0.00015835982313878948, "bdt": 6.066991966654164, "bhd": 0.026661173108242273, "bmd": 0.07071404009315571, "bnb": 0.00013131602690002385, "brl": 0.40172646176921717, "btc": 1.449107814213584e-06, "cad": 0.09077313827618078, "chf": 0.06538630288445724, "clp": 60.183251570526544, "cny": 0.45027872169717875, "czk": 1.5819791479440357, "dkk": 0.4656943824374864, "dot": 0.002607770132114945, "eos": 0.02095306900054898, "eth": 1.7601057420843735e-05, "eur": 0.06262753603830296, "gbp": 0.05331704266347758, "hkd": 0.5517823619872951, "huf": 23.14075863048416, "idr": 1013.5266581451779, "ils": 0.22196925043121316, "inr": 5.389233390809386, "jpy": 8.071989998123698, "krw": 83.82430864039584, "kwd": 0.021452235486900253, "lkr": 14.284305257148668, "ltc": 0.0004614663504911246, "mmk": 125.87187019990752, "mxn": 1.487724545331941, "myr": 0.29912038959404813, "ngn": 29.150917369545308, "nok": 0.6361516367926396, "nzd": 0.10433297974828391, "php": 3.549774522920569, "pkr": 12.59350080791731, "pln": 0.28945788172763937, "rub": 5.206929342603396, "sar": 0.2652644871905682, "sek": 0.6422026372034114, "sgd": 0.09656002174720413, "thb": 2.3620245927869896, "try": 1.0479290386504974, "twd": 1.9625973980314, "uah": 1.9265672510371818, "usd": 0.07071404009315571, "vef": 0.007080596834527683, "vnd": 1628.9805078275253, "xag": 0.0032029938603002845, "xau": 3.973987625155159e-05, "xdr": 0.05059235998464828, "xlm": 0.25925363629599896, "xrp": 0.08532577134272488, "yfi": 3.4295541358127954e-06, "zar": 1.1310176821897548, "bits": 1.449107814213584, "link": 0.0035940131819885163, "sats": 144.9107814213584}, "market_cap": {"aed": 30294601.05871961, "ars": 839747346.9107927, "aud": 11500657.310633596, "bch": 18478.434977419958, "bdt": 707620253.9697978, "bhd": 3109611.186182503, "bmd": 8247692.97288929, "bnb": 15320.487744930913, "brl": 46853494.2403895, "btc": 169.0581883747516, "cad": 10587151.084649352, "chf": 7623103.431745365, "clp": 7019440275.367649, "cny": 52518009.77416994, "czk": 184485221.18688527, "dkk": 54306983.86614747, "dot": 306290.7078794006, "eos": 2446069.0344227664, "eth": 2054.971792425123, "eur": 7303315.632107522, "gbp": 6216863.532174761, "hkd": 64357160.65210382, "huf": 2698480186.869919, "idr": 118212121457.17905, "ils": 25889260.811110295, "inr": 628570257.166526, "jpy": 941439100.1601794, "krw": 9776731733.923927, "kwd": 2502069.6264135414, "lkr": 1666042046.7673655, "ltc": 53846.35125314979, "mmk": 14680995994.071217, "mxn": 173427530.97043976, "myr": 34887741.27532171, "ngn": 3400001131.6754947, "nok": 74219842.63370755, "nzd": 12161660.416252833, "php": 414025989.03222847, "pkr": 1468836004.5714383, "pln": 33759044.49198179, "rub": 607582798.2338368, "sar": 30938976.81530552, "sek": 74882783.94717543, "sgd": 11260245.30816684, "thb": 275637899.15396017, "try": 122042143.88146456, "twd": 228906462.52187595, "uah": 224704106.2460224, "usd": 8247692.97288929, "vef": 825841.4973754056, "vnd": 189995240968.88846, "xag": 373190.6219141381, "xau": 4630.254834980052, "xdr": 5900811.937453655, "xlm": 30439603.326323718, "xrp": 9952925.683771184, "yfi": 400.75585682915937, "zar": 131909230.13111584, "bits": 169058188.37475163, "link": 420613.1957410821, "sats": 16905818837.475163}, "total_volume": {"aed": 3187570.8374115257, "ars": 88366031.23606297, "aud": 1210974.9186379828, "bch": 1943.4190269082649, "bdt": 74455170.44914669, "bhd": 327190.5087494471, "bmd": 867814.8804583416, "bnb": 1611.5329011945162, "brl": 4930056.3358838335, "btc": 17.783700703655974, "cad": 1113983.5885235576, "chf": 802431.97173485, "clp": 738579229.7889912, "cny": 5525898.032806541, "czk": 19414320.598173823, "dkk": 5715081.676746455, "dot": 32003.00424757095, "eos": 257139.67192360616, "eth": 216.00320843623103, "eur": 768575.9098035287, "gbp": 654315.9313828602, "hkd": 6771568.190365246, "huf": 283987375.88990676, "idr": 12438173727.8893, "ils": 2724044.8753123223, "inr": 66137600.46302339, "jpy": 99060851.65059952, "krw": 1028706354.3030262, "kwd": 263265.52902512497, "lkr": 175299454.57553813, "ltc": 5663.194540425686, "mmk": 1544721272.4191833, "mxn": 18257611.879640564, "myr": 3670856.944338778, "ngn": 357745079.1805553, "nok": 7806962.463314495, "nzd": 1280392.298740727, "php": 43563444.39101763, "pkr": 154549611.13489783, "pln": 3552276.983443192, "rub": 63900333.781717405, "sar": 3255371.478391982, "sek": 7881221.382635321, "sgd": 1185001.2192658654, "thb": 28987172.659471635, "try": 12860365.667232271, "twd": 24085333.324425887, "uah": 23643165.15434971, "usd": 867814.8804583416, "vef": 86894.30398029376, "vnd": 19991129382.609516, "xag": 39307.69236665813, "xau": 487.6946065199781, "xdr": 620878.1562239209, "xlm": 3181605.2808497148, "xrp": 1047132.5632117215, "yfi": 42.08807909256842, "zar": 13880043.812696422, "bits": 17783700.703655973, "link": 44106.348835172044, "sats": 1778370070.3655972}}, "community_data": {"facebook_likes": null, "twitter_followers": 25381, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3100, "reddit_accounts_active_48h": "12.5833333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1055977, "bing_matches": null}}, "UNIC_20220108": {"id": "unicorn-cake", "symbol": "unic", "name": "Unicorn Cake", "localization": {"en": "Unicorn Cake", "de": "Unicorn Cake", "es": "Unicorn Cake", "fr": "Unicorn Cake", "it": "Unicorn Cake", "pl": "Unicorn Cake", "ro": "Unicorn Cake", "hu": "Unicorn Cake", "nl": "Unicorn Cake", "pt": "Unicorn Cake", "sv": "Unicorn Cake", "vi": "Unicorn Cake", "tr": "Unicorn Cake", "ru": "Unicorn Cake", "ja": "Unicorn Cake", "zh": "Unicorn Cake", "zh-tw": "Unicorn Cake", "ko": "Unicorn Cake", "ar": "Unicorn Cake", "th": "Unicorn Cake", "id": "Unicorn Cake"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/19973/thumb/unic.png?1636348997", "small": "https://assets.coingecko.com/coins/images/19973/small/unic.png?1636348997"}, "market_data": {"current_price": {"aed": 1.7856816512981604e-06, "ars": 5.012477081241083e-05, "aud": 6.735515774061681e-07, "bch": 1.2017957149057802e-09, "bdt": 4.1714106000025076e-05, "bhd": 1.832665085580453e-07, "bmd": 4.861696428216383e-07, "bnb": 1.0082265802776376e-09, "brl": 2.7750563212259115e-06, "btc": 1.1118184333268566e-11, "cad": 6.203087089725566e-07, "chf": 4.460110579852857e-07, "clp": 0.0004076629688988, "cny": 3.089753931024359e-06, "czk": 1.0585711465735865e-05, "dkk": 3.1968726607665375e-06, "dot": 1.8178938141004857e-08, "eos": 1.635828121391363e-07, "eth": 1.3633064984836757e-10, "eur": 4.2968742605790594e-07, "gbp": 3.5869596247380473e-07, "hkd": 3.790560178607106e-06, "huf": 0.00015578591000057793, "idr": 0.007003225087881419, "ils": 1.5053805437293503e-06, "inr": 3.618706502414297e-05, "jpy": 5.645304658516298e-05, "krw": 0.0005835129595556005, "kwd": 1.4711736476604204e-07, "lkr": 9.82366544249866e-05, "ltc": 3.535733309542417e-09, "mmk": 0.0008646754566635323, "mxn": 1.0007073329188834e-05, "myr": 2.038752397172542e-06, "ngn": 0.0002006908285567725, "nok": 4.3040729744803215e-06, "nzd": 7.15294102938834e-07, "php": 2.4848374501774576e-05, "pkr": 8.585755892230132e-05, "pln": 1.9665712764724525e-06, "rub": 3.7321493268703035e-05, "sar": 1.8261022815719953e-06, "sek": 4.430845598203199e-06, "sgd": 6.600725240589381e-07, "thb": 1.6152986382748962e-05, "try": 6.647543377193103e-06, "twd": 1.342290172582329e-05, "uah": 1.326375166239748e-05, "usd": 4.861696428216383e-07, "vef": 4.86801663357306e-08, "vnd": 0.01106522107062049, "xag": 2.135136015031567e-08, "xau": 2.6860872765895566e-10, "xdr": 3.463939258318457e-07, "xlm": 1.808921022796548e-06, "xrp": 6.138749706510104e-07, "yfi": 1.4431657944051191e-11, "zar": 7.734472847649442e-06, "bits": 1.1118184333268567e-05, "link": 1.98022675840434e-08, "sats": 0.0011118184333268567}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 59.86614968477444, "ars": 1680.4658490998581, "aud": 22.581258828582072, "bch": 0.040290990337928254, "bdt": 1398.492789545427, "bhd": 6.144130016437067, "bmd": 16.29915645277231, "bnb": 0.033801458018672924, "brl": 93.03558503242435, "btc": 0.00037274442901649805, "cad": 20.79625670965672, "chf": 14.952813531460423, "clp": 13667.168668778633, "cny": 103.5860290043039, "czk": 354.89292655657204, "dkk": 107.17725474385617, "dot": 0.6094608359045826, "eos": 5.484221171370873, "eth": 0.004570574539146777, "eur": 14.405553054402127, "gbp": 12.025517630855411, "hkd": 127.08101854362833, "huf": 5222.824908400293, "idr": 234787.71878653992, "ils": 50.46887103192875, "inr": 1213.1951122492003, "jpy": 1892.6254489830148, "krw": 19562.655053528633, "kwd": 4.932206238391171, "lkr": 3293.4483333366184, "ltc": 0.1185377804608275, "mmk": 28988.812356187675, "mxn": 335.4937031447953, "myr": 68.35051258470074, "ngn": 6728.291783704418, "nok": 144.29687215361756, "nzd": 23.980704401617107, "php": 833.0580684777302, "pkr": 2878.4310295595897, "pln": 65.93059312531396, "rub": 1251.227563916101, "sar": 61.22127785141443, "sek": 148.54700759192932, "sgd": 22.12936471592896, "thb": 541.539473143361, "try": 222.86325592569148, "twd": 450.01159268112946, "uah": 444.6759823205344, "usd": 16.29915645277231, "vef": 1.63203453561609, "vnd": 370968.80086509784, "xag": 0.7158183665061906, "xau": 0.00900528394015672, "xdr": 11.61308377597445, "xlm": 60.64526487123064, "xrp": 20.580561408587602, "yfi": 0.00048383080715979965, "zar": 259.3032800071546, "bits": 372.74442901649803, "link": 0.6638840212209557, "sats": 37274.4429016498}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 2050279, "bing_matches": null}}, "ORC_20220115": {"id": "orbit-chain", "symbol": "orc", "name": "Orbit Chain", "localization": {"en": "Orbit Chain", "de": "Orbit Chain", "es": "Orbit Chain", "fr": "Orbit Chain", "it": "Orbit Chain", "pl": "Orbit Chain", "ro": "Orbit Chain", "hu": "Orbit Chain", "nl": "Orbit Chain", "pt": "Orbit Chain", "sv": "Orbit Chain", "vi": "Orbit Chain", "tr": "Orbit Chain", "ru": "Orbit Chain", "ja": "Orbit Chain", "zh": "Orbit Chain", "zh-tw": "Orbit Chain", "ko": "Orbit Chain", "ar": "Orbit Chain", "th": "Orbit Chain", "id": "Orbit Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9782/thumb/-p1Br7oh_400x400.png?1571716593", "small": "https://assets.coingecko.com/coins/images/9782/small/-p1Br7oh_400x400.png?1571716593"}, "market_data": {"current_price": {"aed": 1.6568772430216898, "ars": 46.69790167526207, "aud": 0.6256370454420236, "bch": 0.0012199428899077503, "bdt": 38.77564537597957, "bhd": 0.17007136020853908, "bmd": 0.4510841640635148, "bnb": 0.0009753761749556991, "brl": 2.5122681433353424, "btc": 1.054109835632418e-05, "cad": 0.56724059173069, "chf": 0.4166438881372655, "clp": 374.14992081234493, "cny": 2.875210461740843, "czk": 9.689242735667886, "dkk": 2.953249375376325, "dot": 0.017660215927668317, "eos": 0.162694538172504, "eth": 0.00013891611120572616, "eur": 0.39677363071026694, "gbp": 0.3308521909740249, "hkd": 3.5167649140801784, "huf": 141.75019117883738, "idr": 6442.75781889008, "ils": 1.4064443368169117, "inr": 33.296979656053836, "jpy": 52.015755439615006, "krw": 536.5668685743707, "kwd": 0.13651340490719752, "lkr": 91.49876032795584, "ltc": 0.0034283675874318166, "mmk": 801.896140942916, "mxn": 9.199406833238, "myr": 1.8907192736722227, "ngn": 185.9673681241893, "nok": 3.9584584080162126, "nzd": 0.664745591382167, "php": 23.000780623430227, "pkr": 79.68315555998232, "pln": 1.8009796879050932, "rub": 33.600357212763065, "sar": 1.6931895182288075, "sek": 4.075982973952995, "sgd": 0.6092915596730185, "thb": 15.028134614348616, "try": 6.218150093199136, "twd": 12.472658021105943, "uah": 12.417970832475744, "usd": 0.4510841640635148, "vef": 0.0451670573476797, "vnd": 10239.114059206471, "xag": 0.019803515014082992, "xau": 0.0002476948253289162, "xdr": 0.3216888672652392, "xlm": 1.7075674087313388, "xrp": 0.5833708299742175, "yfi": 1.3752748601321655e-05, "zar": 7.003668056499347, "bits": 10.54109835632418, "link": 0.016705705186630632, "sats": 1054.109835632418}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 13291465.387421412, "ars": 374610458.5575679, "aud": 5018858.922472626, "bch": 9786.379023631413, "bdt": 311058136.9624212, "bhd": 1364312.0557808788, "bmd": 3618596.114296225, "bnb": 7824.465405473286, "brl": 20153409.198961418, "btc": 84.56066648182787, "cad": 4550402.706708073, "chf": 3342316.3009697087, "clp": 3001429793.9866414, "cny": 23064931.632524133, "czk": 77727082.67547144, "dkk": 23690959.616085738, "dot": 141670.2110706212, "eos": 1305135.2065760978, "eth": 1114.3847207888305, "eur": 3182917.1421349538, "gbp": 2654095.5059917034, "hkd": 28211479.956081953, "huf": 1137119703.737292, "idr": 51683788228.71862, "ils": 11282493.196686465, "inr": 267108293.30783495, "jpy": 417270269.0788115, "krw": 4304338170.935927, "kwd": 1095110.216453922, "lkr": 734002842.4031363, "ltc": 27502.356807438464, "mmk": 6432808976.3678665, "mxn": 73797620.20618822, "myr": 15167345.613072628, "ngn": 1491829794.2849834, "nok": 31754744.136470705, "nzd": 5332587.586986002, "php": 184512208.6307718, "pkr": 639218088.4532534, "pln": 14447454.864902264, "rub": 269541987.36169696, "sar": 13582762.374622297, "sek": 32697525.930897236, "sgd": 4887735.473674992, "thb": 120555660.90088995, "try": 49881985.575961955, "twd": 100055633.61733219, "uah": 99616933.11741583, "usd": 3618596.114296225, "vef": 362330.02892448066, "vnd": 82138149153.16644, "xag": 158863.75135367745, "xau": 1987.0073123211964, "xdr": 2580587.3445258946, "xlm": 13698101.77877152, "xrp": 4679799.440357278, "yfi": 110.32451727263062, "zar": 56183408.84939745, "bits": 84560666.48182787, "link": 134013.1281274775, "sats": 8456066648.182787}}, "community_data": {"facebook_likes": null, "twitter_followers": 8613, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 100076, "bing_matches": null}}, "WRX_20210404": {"id": "wazirx", "symbol": "wrx", "name": "WazirX", "localization": {"en": "WazirX", "de": "WazirX", "es": "WazirX", "fr": "WazirX", "it": "WazirX", "pl": "WazirX", "ro": "WazirX", "hu": "WazirX", "nl": "WazirX", "pt": "WazirX", "sv": "WazirX", "vi": "WazirX", "tr": "WazirX", "ru": "WazirX", "ja": "WazirX", "zh": "WazirX", "zh-tw": "WazirX", "ko": "WazirX", "ar": "WazirX", "th": "WazirX", "id": "WazirX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/10547/thumb/WazirX.png?1580834330", "small": "https://assets.coingecko.com/coins/images/10547/small/WazirX.png?1580834330"}, "market_data": {"current_price": {"aed": 2.908598682503723, "ars": 72.83849461199713, "aud": 1.0428734174101766, "bch": 0.0014623419542299774, "bdt": 67.13002920497948, "bhd": 0.2985478745142377, "bmd": 0.7918432654099223, "bnb": 0.002614720059760518, "brl": 4.460294745401009, "btc": 1.347141668946335e-05, "cad": 0.9950207451949229, "chf": 0.7475142957257445, "clp": 570.5230877728715, "cny": 5.188711365251605, "czk": 17.629440092433462, "dkk": 5.022581064482067, "dot": 0.02138526621780723, "eos": 0.16532666432342344, "eth": 0.0004130965567748756, "eur": 0.6752308832427993, "gbp": 0.5744632848165291, "hkd": 6.156383427745788, "huf": 244.5744613203025, "idr": 11535.414321838673, "ils": 2.6406389214890025, "inr": 57.96589089734872, "jpy": 87.70856280491748, "krw": 893.3575720354738, "kwd": 0.2394336073783252, "lkr": 157.93908365340278, "ltc": 0.0040197928175251686, "mmk": 1116.2623808723613, "mxn": 16.185832218951173, "myr": 3.283378100022237, "ngn": 313.13992736810775, "nok": 6.77116024504761, "nzd": 1.1343162695429794, "php": 38.431727259000276, "pkr": 120.86723872021624, "pln": 3.1274918755773173, "rub": 59.95575897406345, "sar": 2.970028299347697, "sek": 6.9148924672117555, "sgd": 1.0651178784220712, "thb": 24.73893596055226, "try": 6.540225491436924, "twd": 22.4799551990284, "uah": 22.0420571629808, "usd": 0.7918432654099223, "vef": 0.07928726616549546, "vnd": 18282.920923386897, "xag": 0.03238372896189409, "xau": 0.00046352921070566094, "xdr": 0.5583872828421764, "xlm": 1.9447589458623267, "xrp": 1.3806251950799218, "yfi": 2.1935616203227467e-05, "zar": 11.703316767836181, "bits": 13.47141668946335, "link": 0.02726552993772955, "sats": 1347.141668946335}, "market_cap": {"aed": 721239998.6146532, "ars": 18062985698.72532, "aud": 258596701.95347065, "bch": 362139.812729975, "bdt": 16646112941.618887, "bhd": 74030380.98597516, "bmd": 196351954.32174987, "bnb": 647803.3375947943, "brl": 1106109464.2807136, "btc": 3338.348134806062, "cad": 246688741.33167353, "chf": 185336609.68429974, "clp": 141471593102.77045, "cny": 1286635451.0841298, "czk": 4371599546.214856, "dkk": 1245378174.7939975, "dot": 5290327.703563458, "eos": 41016314.82865007, "eth": 102331.28928960161, "eur": 167430293.20992783, "gbp": 142448237.70961732, "hkd": 1526556922.3101037, "huf": 60646690519.70804, "idr": 2860416000168.386, "ils": 654794497.2721727, "inr": 14373698001.71712, "jpy": 21752782381.23301, "krw": 221524274865.7984, "kwd": 59371922.18803927, "lkr": 39163871303.59406, "ltc": 996074.9202396291, "mmk": 276797580524.56506, "mxn": 4013355405.5548267, "myr": 814173378.595136, "ngn": 77648746160.7302, "nok": 1678836109.6687028, "nzd": 281221944.9460572, "php": 9529032600.7537, "pkr": 29971232405.319595, "pln": 775570584.3754792, "rub": 14865099594.664133, "sar": 736472590.527023, "sek": 1714600440.036683, "sgd": 264102214.4006979, "thb": 6136235373.0115795, "try": 1621749331.5250597, "twd": 5574530159.17163, "uah": 5465729381.410445, "usd": 196351954.32174987, "vef": 19660721.186236802, "vnd": 4533583110236.603, "xag": 8028937.442271699, "xau": 114920.87182543385, "xdr": 138462293.03688565, "xlm": 482001465.9226654, "xrp": 341968460.6391476, "yfi": 5430.431856227093, "zar": 2902925216.5192733, "bits": 3338348134.8060617, "link": 6764095.929450301, "sats": 333834813480.6062}, "total_volume": {"aed": 227106108.18789443, "ars": 5687297851.402507, "aud": 81428532.77948962, "bch": 114181.02884484996, "bdt": 5241575528.102464, "bhd": 23310897.54545731, "bmd": 61827863.49447205, "bnb": 204159.7901921177, "brl": 348263989.49166197, "btc": 1051.8608271829037, "cad": 77692151.3327916, "chf": 58366616.04032455, "clp": 44546976822.496544, "cny": 405139441.12022746, "czk": 1376523187.2682292, "dkk": 392167831.7033599, "dot": 1669781.6073778807, "eos": 12908860.730782872, "eth": 32254.965897943704, "eur": 52722659.52123164, "gbp": 44854631.096515626, "hkd": 480696181.7036461, "huf": 19096602912.84737, "idr": 900695949814.7703, "ils": 206183559.18136486, "inr": 4526031029.488412, "jpy": 6848366697.406296, "krw": 69754195594.46332, "kwd": 18695200.22414098, "lkr": 12332031515.74373, "ltc": 313869.1865609835, "mmk": 87158811754.069, "mxn": 1263804932.987185, "myr": 256369235.9798279, "ngn": 24450258693.50742, "nok": 528698531.15852946, "nzd": 88568476.28369471, "php": 3000785244.534675, "pkr": 9437427156.343477, "pln": 244197493.63298902, "rub": 4681401791.851891, "sar": 231902590.1820688, "sek": 539921277.6285919, "sgd": 83165401.12077627, "thb": 1931639280.629215, "try": 510666929.3932742, "twd": 1755255947.8899608, "uah": 1721064459.27102, "usd": 61827863.49447205, "vef": 6190823.97170148, "vnd": 1427547582344.0996, "xag": 2528551.875302569, "xau": 36192.7947323941, "xdr": 43599401.81185082, "xlm": 151848599.19492167, "xrp": 107800507.78639938, "yfi": 1712.7534494824317, "zar": 913805929.9901373, "bits": 1051860827.1829038, "link": 2128918.10378875, "sats": 105186082718.29037}}, "community_data": {"facebook_likes": null, "twitter_followers": 76275, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3317, "bing_matches": null}}, "PPT_20210404": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 11.262588952351262, "ars": 282.04304349640154, "aud": 4.038183301215733, "bch": 0.005674094783593282, "bdt": 259.9388942321192, "bhd": 1.1560281634857998, "bmd": 3.066151843719714, "bnb": 0.010127856867891657, "brl": 17.27102010530439, "btc": 5.2163755907690014e-05, "cad": 3.8528896129960684, "chf": 2.894502531204594, "clp": 2209.162461656938, "cny": 20.091573186342163, "czk": 68.26419141820716, "dkk": 19.44828839722608, "dot": 0.08302306493939245, "eos": 0.6401746721668078, "eth": 0.0016004321510768229, "eur": 2.6146088601506423, "gbp": 2.2244195749744033, "hkd": 23.83856404695983, "huf": 947.0339248459616, "idr": 44667.08682894001, "ils": 10.225003168436496, "inr": 224.45379156663424, "jpy": 339.62247745465754, "krw": 3459.2325100845787, "kwd": 0.9271276637447489, "lkr": 611.5670028317872, "ltc": 0.015586192039947433, "mmk": 4322.357853753943, "mxn": 62.67429612422516, "myr": 12.713798619983763, "ngn": 1212.5310747511835, "nok": 26.21908447844986, "nzd": 4.392265582280331, "php": 148.81418651898818, "pkr": 468.01851204158504, "pln": 12.110180637269918, "rub": 232.15889930537247, "sar": 11.500454880083321, "sek": 26.775640096514483, "sgd": 4.1243176388095115, "thb": 95.79336899183392, "try": 25.32486582244372, "twd": 87.04621115209623, "uah": 85.35059545484901, "usd": 3.066151843719714, "vef": 0.3070137841116549, "vnd": 70794.5803754536, "xag": 0.12539530813794159, "xau": 0.0017948639662766434, "xdr": 2.1621705602432035, "xlm": 7.52990876811817, "xrp": 5.346029844989146, "yfi": 8.493866351895243e-05, "zar": 45.31723366588235, "bits": 52.16375590769001, "link": 0.10551275059053873, "sats": 5216.375590769001}, "market_cap": {"aed": 408288628.89912444, "ars": 10225322609.565018, "aud": 146389680.38547298, "bch": 205004.66958752944, "bdt": 9423241421.008272, "bhd": 41908051.14483502, "bmd": 111153389.1155188, "bnb": 366716.67823593406, "brl": 626160386.9044522, "btc": 1889.8141885724096, "cad": 139648671.94917312, "chf": 104917683.98613821, "clp": 80086022526.55414, "cny": 728354812.8572599, "czk": 2474730170.606814, "dkk": 704999373.8896955, "dot": 2994815.3855357943, "eos": 23219032.46637844, "eth": 57928.98602099556, "eur": 94781050.66574852, "gbp": 80638893.81519198, "hkd": 864172583.2505659, "huf": 34331642958.130947, "idr": 1619260341957.0542, "ils": 370674322.02243257, "inr": 8136844130.391438, "jpy": 12314089221.665388, "krw": 125403253600.12842, "kwd": 33610006.03380509, "lkr": 22170377887.582287, "ltc": 563870.6453421878, "mmk": 156693063130.22562, "mxn": 2271930812.1655507, "myr": 460897527.9674989, "ngn": 43956380908.70657, "nok": 950376704.9519941, "nzd": 159197663.10647598, "php": 5394314878.223312, "pkr": 16966492996.3527, "pln": 439044771.6673876, "rub": 8415022937.735117, "sar": 416911686.5199266, "sek": 970622627.8590508, "sgd": 149506310.26288295, "thb": 3473677460.847227, "try": 918060302.0607151, "twd": 3155700293.6841307, "uah": 3094108978.0879393, "usd": 111153389.1155188, "vef": 11129788.852136891, "vnd": 2566427868163.3345, "xag": 4545122.103763695, "xau": 65055.855581530894, "xdr": 78382480.01614685, "xlm": 272857464.9588699, "xrp": 193585816.3569481, "yfi": 3074.1273101433912, "zar": 1643324494.933618, "bits": 1889814188.5724096, "link": 3829104.6781682256, "sats": 188981418857.24097}, "total_volume": {"aed": 28252312.7114015, "ars": 707507687.321947, "aud": 10129821.650650643, "bch": 14233.521338514507, "bdt": 652059216.2931232, "bhd": 2899907.7668700283, "bmd": 7691471.390450147, "bnb": 25405.826363595977, "brl": 43324520.048127554, "btc": 130.85328340937147, "cad": 9665010.651582971, "chf": 7260887.439069959, "clp": 5541705282.957284, "cny": 50399904.58020266, "czk": 171241380.74270448, "dkk": 48786218.499543436, "dot": 208264.1569225543, "eos": 1605884.322378625, "eth": 4014.6994440531157, "eur": 6558771.473192724, "gbp": 5579977.898458211, "hkd": 59799267.192902245, "huf": 2375643709.1196737, "idr": 112047816921.79955, "ils": 25649518.792873133, "inr": 563044494.9583656, "jpy": 851946251.2095624, "krw": 8677518022.705849, "kwd": 2325708.6616873643, "lkr": 1534121708.7010086, "ltc": 39098.112641376465, "mmk": 10842676248.90498, "mxn": 157219074.63371688, "myr": 31892686.12050146, "ngn": 3041645863.2284966, "nok": 65770825.591319695, "nzd": 11018040.458291218, "php": 373301818.1889301, "pkr": 1174028938.8935962, "pln": 30378504.60522058, "rub": 582372831.8292966, "sar": 28849001.67892977, "sek": 67166950.71222863, "sgd": 10345890.464951176, "thb": 240298587.4638494, "try": 63527669.492065944, "twd": 218356257.89204487, "uah": 214102789.60694078, "usd": 7691471.390450147, "vef": 770147.030325773, "vnd": 177588885779.42865, "xag": 314555.3365255396, "xau": 4502.4335225417, "xdr": 5423825.646289287, "xlm": 18888848.56805379, "xrp": 13410567.284672756, "yfi": 213.0694543837519, "zar": 113678716.51543063, "bits": 130853283.40937147, "link": 264679.74968594435, "sats": 13085328340.937147}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 897116, "bing_matches": null}}, "WPR_20210509": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.182946772537384, "ars": 4.665217408447388, "aud": 0.06427771002027706, "bch": 3.45551780770151e-05, "bdt": 4.223602516961175, "bhd": 0.0187762000123389, "bmd": 0.04980582939599915, "bnb": 7.628640765821604e-05, "brl": 0.2666653911691188, "btc": 8.697058444066e-07, "cad": 0.06110876431912723, "chf": 0.04548392855016135, "clp": 35.11809030711901, "cny": 0.32244293950969827, "czk": 1.070167944871781, "dkk": 0.30846931640269853, "dot": 0.001227421515121224, "eos": 0.0057394565321649774, "eth": 1.4130075138521615e-05, "eur": 0.041482727439804315, "gbp": 0.03581347929714594, "hkd": 0.3869846702316041, "huf": 14.887709493905106, "idr": 717.191491845039, "ils": 0.16274154366801474, "inr": 3.67564824505397, "jpy": 5.440116424522105, "krw": 56.01707612909723, "kwd": 0.015013070766494855, "lkr": 9.812689920410737, "ltc": 0.000140276882836108, "mmk": 77.58012227751904, "mxn": 1.0091906181364318, "myr": 0.20507550253802684, "ngn": 18.951118085177672, "nok": 0.41577159292339155, "nzd": 0.0690175813864061, "php": 2.3925797539819262, "pkr": 7.614254733783461, "pln": 0.18980807340080616, "rub": 3.7280559807834464, "sar": 0.18678749926542737, "sek": 0.4225023527079664, "sgd": 0.06652778797490012, "thb": 1.5504554690974561, "try": 0.4151266074327128, "twd": 1.3892339993426015, "uah": 1.3806078289145325, "usd": 0.04980582939599915, "vef": 0.0049870576974213945, "vnd": 1149.5602081239124, "xag": 0.001883944345450593, "xau": 2.789773921958097e-05, "xdr": 0.03474006406200339, "xlm": 0.08347398339354374, "xrp": 0.030912113992296233, "yfi": 9.112688051896883e-07, "zar": 0.714941613113733, "bits": 0.8697058444066, "link": 0.001003473612922916, "sats": 86.97058444066}, "market_cap": {"aed": 111453654.00179474, "ars": 2842256299.841911, "aud": 39157274.54003922, "bch": 21135.969636869915, "bdt": 2573075911.8492093, "bhd": 11438715.592624545, "bmd": 30342386.475496776, "bnb": 46434.85737342737, "brl": 162453137.1898094, "btc": 529.6259772998629, "cad": 37228773.140429586, "chf": 27708394.24794535, "clp": 21394416703.872753, "cny": 196436610.0423662, "czk": 651975960.9149426, "dkk": 187931639.1132841, "dot": 751422.9447965281, "eos": 3502024.0054710344, "eth": 8579.532554992717, "eur": 25273326.706127327, "gbp": 21818876.34827849, "hkd": 235755791.55663824, "huf": 9070249589.120268, "idr": 436922779650.5345, "ils": 99144354.6564152, "inr": 2239223852.3497906, "jpy": 3314705940.8932953, "krw": 34136359824.19252, "kwd": 9146166.240081947, "lkr": 5978023728.146777, "ltc": 85636.4081076823, "mmk": 47262862229.33315, "mxn": 614776195.0959799, "myr": 124934776.31285803, "ngn": 11545278053.926516, "nok": 253289776.77162, "nzd": 42040620.499646254, "php": 1457592021.8407242, "pkr": 4638707208.716762, "pln": 115640175.11813803, "rub": 2270526848.43872, "sar": 113793476.79246588, "sek": 257398044.8732431, "sgd": 40520133.170972615, "thb": 944541286.8490815, "try": 252885585.84138027, "twd": 846340185.9610317, "uah": 841085005.9930214, "usd": 30342386.475496776, "vef": 3038183.157791489, "vnd": 700249174731.027, "xag": 1146922.1827987037, "xau": 16987.18506830687, "xdr": 21164117.990523715, "xlm": 50884071.13278453, "xrp": 18815448.411909472, "yfi": 553.2952116997681, "zar": 435777991.7512002, "bits": 529625977.299863, "link": 610469.5670526222, "sats": 52962597729.9863}, "total_volume": {"aed": 4030023.265339716, "ars": 102767238.97968179, "aud": 1415934.6089122344, "bch": 761.1950167629835, "bdt": 93039172.92896074, "bhd": 413609.4987351321, "bmd": 1097142.3460034078, "bnb": 1680.4669108277267, "brl": 5874209.834736841, "btc": 19.15822147802203, "cad": 1346127.8300054218, "chf": 1001937.8189289626, "clp": 773595068.1670029, "cny": 7102899.548026056, "czk": 23574079.257248297, "dkk": 6795083.097146661, "dot": 27038.12258456903, "eos": 126430.99976144354, "eth": 311.2628375972261, "eur": 913797.7914204318, "gbp": 788913.3696019023, "hkd": 8524650.108514467, "huf": 327952304.35560906, "idr": 15798575496.862576, "ils": 3584934.558413046, "inr": 80968621.29527682, "jpy": 119837018.4557413, "krw": 1233966125.368171, "kwd": 330713.8116405001, "lkr": 216157782.5415802, "ltc": 3090.0741979655822, "mmk": 1708965363.914325, "mxn": 22230846.78589403, "myr": 4517483.609669039, "ngn": 417462662.6542965, "nok": 9158779.733084548, "nzd": 1520346.3545543402, "php": 52704685.29723651, "pkr": 167729789.92619288, "pln": 4181166.692067489, "rub": 82123079.4545778, "sar": 4114628.3002094286, "sek": 9307047.549723437, "sgd": 1465500.2086776304, "thb": 34154041.23108614, "try": 9144571.739703791, "twd": 30602591.45707299, "uah": 30412570.791314594, "usd": 1097142.3460034078, "vef": 109856.8631053212, "vnd": 25322963173.353928, "xag": 41500.2650086087, "xau": 614.5423422668881, "xdr": 765267.7577608374, "xlm": 1838797.6484133971, "xrp": 680944.1721325297, "yfi": 20.073786680999415, "zar": 15749014.285666553, "bits": 19158221.478022028, "link": 22104.910352586194, "sats": 1915822147.802203}}, "community_data": {"facebook_likes": null, "twitter_followers": 33660, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 7374795, "bing_matches": null}}, "OAX_20210530": {"id": "openanx", "symbol": "oax", "name": "OAX", "localization": {"en": "OAX", "de": "OAX", "es": "OAX", "fr": "OAX", "it": "OAX", "pl": "OAX", "ro": "OAX", "hu": "OAX", "nl": "OAX", "pt": "OAX", "sv": "OAX", "vi": "OAX", "tr": "OAX", "ru": "OAX", "ja": "OAX", "zh": "OAX", "zh-tw": "OAX", "ko": "OAX", "ar": "OAX", "th": "OAX", "id": "OAX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/853/thumb/OAXlogo.png?1598686792", "small": "https://assets.coingecko.com/coins/images/853/small/OAXlogo.png?1598686792"}, "market_data": {"current_price": {"aed": 0.8144412452301347, "ars": 20.949911263391545, "aud": 0.28652447434080286, "bch": 0.00028994515173689367, "bdt": 18.790492096304817, "bhd": 0.08358000400556313, "bmd": 0.22172526549878344, "bnb": 0.0005868746133931178, "brl": 1.1778046103295383, "btc": 5.659729912888361e-06, "cad": 0.26899531830100004, "chf": 0.1991139446484833, "clp": 161.8592945930085, "cny": 1.4172013794885736, "czk": 4.625344245990474, "dkk": 1.3524932997306756, "dot": 0.0089963069353434, "eos": 0.03447151444548176, "eth": 7.695218753154546e-05, "eur": 0.18187613560754604, "gbp": 0.15706263942031137, "hkd": 1.7212465843090907, "huf": 63.605075274512345, "idr": 3165.1835963115095, "ils": 0.7199907166329618, "inr": 16.11338523172729, "jpy": 24.20505434304755, "krw": 247.55152531669887, "kwd": 0.06665482758897891, "lkr": 44.03604923109859, "ltc": 0.0011133111502728288, "mmk": 365.15320860290547, "mxn": 4.409705339029634, "myr": 0.9184969123287104, "ngn": 91.31958182083112, "nok": 1.8562296000657725, "nzd": 0.3047059461117033, "php": 10.673929445976441, "pkr": 34.386234197319595, "pln": 0.8185067996983179, "rub": 16.313214683807498, "sar": 0.8314943571249077, "sek": 1.8444865865544247, "sgd": 0.29385249436553784, "thb": 6.930355761062706, "try": 1.8745097395798194, "twd": 6.1375768525465375, "uah": 6.109637695291583, "usd": 0.22172526549878344, "vef": 0.02220135083439323, "vnd": 5131.7871056223385, "xag": 0.008008140104125755, "xau": 0.0001169401222767137, "xdr": 0.1534571648780356, "xlm": 0.49908284865068203, "xrp": 0.21457357057999382, "yfi": 4.436630356815207e-06, "zar": 3.0523675639730765, "bits": 5.659729912888361, "link": 0.0065473452638379155, "sats": 565.972991288836}, "market_cap": {"aed": 46112323.19583146, "ars": 1186187165.201627, "aud": 16222130.007390821, "bch": 16477.067411513104, "bdt": 1063886743.9832224, "bhd": 4733216.813891628, "bmd": 12553719.698309826, "bnb": 33386.91035308321, "brl": 66685359.03742175, "btc": 320.88912489884586, "cad": 15230988.729769863, "chf": 11271620.85924113, "clp": 9164215379.766165, "cny": 80239610.19568679, "czk": 261854260.5174151, "dkk": 76578681.90354598, "dot": 513911.6725542073, "eos": 1964822.7913883682, "eth": 4367.276532209207, "eur": 10297954.359440224, "gbp": 8892439.902017456, "hkd": 97454839.86097153, "huf": 3601154960.954399, "idr": 179207487123.29724, "ils": 40764689.67874544, "inr": 912313358.3127834, "jpy": 1370419637.2939432, "krw": 14018992472.670227, "kwd": 3774627.331448398, "lkr": 2493248649.0639286, "ltc": 63195.40181968747, "mmk": 20674373835.68932, "mxn": 249716081.49483916, "myr": 52003783.85024837, "ngn": 5170364462.3750515, "nok": 105085304.53659683, "nzd": 17251936.741682574, "php": 604108831.3963754, "pkr": 1946891999.9825368, "pln": 46344190.39865941, "rub": 923627373.083445, "sar": 47090609.46448159, "sek": 104436402.76539099, "sgd": 16634933.972230319, "thb": 392554814.9661486, "try": 106156023.84338526, "twd": 347461853.8098183, "uah": 345917633.3034511, "usd": 12553719.698309826, "vef": 1257003.953391762, "vnd": 290586023153.8577, "xag": 453481.40616636403, "xau": 6621.5849920705, "xdr": 8688492.171798712, "xlm": 28390816.843558982, "xrp": 12181892.748379443, "yfi": 253.40299005186642, "zar": 172822238.45826718, "bits": 320889124.8988459, "link": 374318.49488927244, "sats": 32088912489.88459}, "total_volume": {"aed": 1144921.190795334, "ars": 29450862.773975994, "aud": 402788.96025407384, "bch": 407.59766322754905, "bdt": 26415205.16369792, "bhd": 117494.68518835698, "bmd": 311695.84852317575, "bnb": 825.0136951545662, "brl": 1655728.3473551106, "btc": 7.9563071607615985, "cad": 378146.9098615286, "chf": 279909.41758663126, "clp": 227537759.65061265, "cny": 1992266.3550055819, "czk": 6502193.587287417, "dkk": 1901301.3502684287, "dot": 12646.783926400025, "eos": 48459.19530547276, "eth": 108.17746608354479, "eur": 255676.93553904566, "gbp": 220794.7414349681, "hkd": 2419685.5212099575, "huf": 89414428.54277863, "idr": 4449536161.630466, "ils": 1012144.9932414299, "inr": 22651795.09915438, "jpy": 34026861.73374853, "krw": 348001760.48145604, "kwd": 93701.69428718874, "lkr": 61904779.77247445, "ltc": 1565.0650496413823, "mmk": 513323273.9192156, "mxn": 6199053.789806204, "myr": 1291200.0525072557, "ngn": 128374790.65993814, "nok": 2609441.278353146, "nzd": 428348.01983297453, "php": 15005143.812798332, "pkr": 48339310.45945227, "pln": 1150636.4458738514, "rub": 22932710.35924414, "sar": 1168894.0302010945, "sek": 2592933.24282366, "sgd": 413090.50804776506, "thb": 9742521.289364617, "try": 2635139.042584639, "twd": 8628052.47127415, "uah": 8588776.300793463, "usd": 311695.84852317575, "vef": 31210.10531262565, "vnd": 7214138328.931321, "xag": 11257.643639450942, "xau": 164.3915074696086, "xdr": 215726.2552421327, "xlm": 701598.221761478, "xrp": 301642.17416596436, "yfi": 6.236904308312954, "zar": 4290942.196943394, "bits": 7956307.1607615985, "link": 9204.094684452424, "sats": 795630716.0761598}}, "community_data": {"facebook_likes": null, "twitter_followers": 13909, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1446066, "bing_matches": null}}, "CND_20210606": {"id": "cindicator", "symbol": "cnd", "name": "Cindicator", "localization": {"en": "Cindicator", "de": "Cindicator", "es": "Cindicator", "fr": "Cindicator", "it": "Cindicator", "pl": "Cindicator", "ro": "Cindicator", "hu": "Cindicator", "nl": "Cindicator", "pt": "Cindicator", "sv": "Cindicator", "vi": "Cindicator", "tr": "Cindicator", "ru": "Cindicator", "ja": "\u30b7\u30f3\u30c7\u30a3\u30b1\u30fc\u30bf\u30fc", "zh": "Cindicator", "zh-tw": "Cindicator", "ko": "\uc2e0\ub514\ucf00\uc774\ud130", "ar": "Cindicator", "th": "Cindicator", "id": "Cindicator"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1006/thumb/cindicator.png?1547034913", "small": "https://assets.coingecko.com/coins/images/1006/small/cindicator.png?1547034913"}, "market_data": {"current_price": {"aed": 0.07056792062337147, "ars": 1.8208798170127969, "aud": 0.024808508677561666, "bch": 2.7477720483797018e-05, "bdt": 1.629124921602731, "bhd": 0.007242875281099502, "bmd": 0.01921156501779685, "bnb": 4.7550911467252114e-05, "brl": 0.09751598287383537, "btc": 5.097920825423946e-07, "cad": 0.0231339134012204, "chf": 0.017259573954163606, "clp": 13.80349982108143, "cny": 0.1225909175350637, "czk": 0.4005726767716405, "dkk": 0.11702148483640445, "dot": 0.0007319297362869781, "eos": 0.003007241971132206, "eth": 7.066274074330526e-06, "eur": 0.015735578135996863, "gbp": 0.013557908818099517, "hkd": 0.14906541470783838, "huf": 5.457813505905915, "idr": 273.8512535461856, "ils": 0.062435280920037445, "inr": 1.4017018153690581, "jpy": 2.1056643722106085, "krw": 21.34039502170254, "kwd": 0.005778723487963171, "lkr": 3.8040778394759167, "ltc": 0.0001020250041521892, "mmk": 31.623709277368597, "mxn": 0.3825349383764307, "myr": 0.07924770569841226, "ngn": 7.905748238738823, "nok": 0.15948595968914192, "nzd": 0.026561909793605964, "php": 0.91904588274864, "pkr": 2.9777858729223228, "pln": 0.07013469983222, "rub": 1.4052817944523006, "sar": 0.07206815173561118, "sek": 0.15891422351421217, "sgd": 0.025412136050420867, "thb": 0.5980560190040154, "try": 0.1651234013279642, "twd": 0.5315840040424393, "uah": 0.5254188015010112, "usd": 0.01921156501779685, "vef": 0.0019236540052319981, "vnd": 441.43035040684475, "xag": 0.0006817567733579026, "xau": 1.0064938912823805e-05, "xdr": 0.013310694399450502, "xlm": 0.04534640750082676, "xrp": 0.018756665172647027, "yfi": 4.2260283324054046e-07, "zar": 0.2597379768065517, "bits": 0.5097920825423946, "link": 0.0006225753157421249, "sats": 50.97920825423946}, "market_cap": {"aed": 136082014.1862443, "ars": 3511339897.8597193, "aud": 47829760.47291427, "bch": 52971.669915819155, "bdt": 3141577628.1111526, "bhd": 13967041.228438288, "bmd": 37047265.105696544, "bnb": 91681.5453648319, "brl": 188048212.95000473, "btc": 983.5229339898383, "cad": 44606092.699742064, "chf": 33271963.555100594, "clp": 26618459978.443005, "cny": 236402303.3659608, "czk": 772324372.7057214, "dkk": 225623216.34713256, "dot": 1408846.8631671018, "eos": 5798261.214390455, "eth": 13614.502830022535, "eur": 30338968.623947654, "gbp": 26144180.890559863, "hkd": 287451582.3183547, "huf": 10520010010.948566, "idr": 528090240449.1522, "ils": 120399165.92170146, "inr": 2703018661.1558404, "jpy": 4060310791.9622736, "krw": 41149084357.38132, "kwd": 11143595.060202885, "lkr": 7335720961.36972, "ltc": 196638.12574517998, "mmk": 60982639370.54842, "mxn": 737683179.2795798, "myr": 152819968.56099817, "ngn": 15245314506.555382, "nok": 307529866.3040991, "nzd": 51212694.43877583, "php": 1771837690.323734, "pkr": 5742313161.887442, "pln": 135218442.43663055, "rub": 2709907414.8659225, "sar": 138975035.1183483, "sek": 306392737.5489447, "sgd": 48997230.93819004, "thb": 1152894478.150839, "try": 318421243.5834625, "twd": 1025097825.4746195, "uah": 1013208950.5822945, "usd": 37047265.105696544, "vef": 3709542.6550333947, "vnd": 850855919673.6295, "xag": 1314630.7231466214, "xau": 19408.32124357229, "xdr": 25668123.533951674, "xlm": 87406073.10734585, "xrp": 36145769.85747132, "yfi": 813.356504677517, "zar": 500846052.1630738, "bits": 983522933.9898382, "link": 1199177.2750062067, "sats": 98352293398.98383}, "total_volume": {"aed": 2005998.5063947744, "ars": 51761227.49523563, "aud": 705218.8999400459, "bch": 781.0952308459345, "bdt": 46310308.29018423, "bhd": 205889.54396762108, "bmd": 546117.4197960286, "bnb": 1351.7056551816058, "brl": 2772037.411142671, "btc": 14.491601100305557, "cad": 657616.0289261057, "chf": 490629.1593576533, "clp": 392385091.97250277, "cny": 3484829.867460444, "czk": 11386876.419316508, "dkk": 3326510.4274615776, "dot": 20806.195574527497, "eos": 85485.34304496659, "eth": 200.86939098767408, "eur": 447307.3027974945, "gbp": 385403.80102877395, "hkd": 4237406.977810354, "huf": 155146497.78985402, "idr": 7784630760.482502, "ils": 1774816.0802467123, "inr": 39845466.93742209, "jpy": 59856653.67932399, "krw": 606632591.1441393, "kwd": 164268.84317012623, "lkr": 108136592.33244912, "ltc": 2900.213073253429, "mmk": 898951152.5447184, "mxn": 10874126.773870008, "myr": 2252734.356658625, "ngn": 224732697.5026506, "nok": 4533626.5274819285, "nzd": 755061.9446099902, "php": 26125251.414754786, "pkr": 84648009.47340499, "pln": 1993683.5585783694, "rub": 39947233.188014016, "sar": 2048644.8157066451, "sek": 4517374.073068794, "sgd": 722377.9092700378, "thb": 17000635.278250355, "try": 4693879.223146873, "twd": 15111069.005756125, "uah": 14935813.918451905, "usd": 546117.4197960286, "vef": 54682.73724417633, "vnd": 12548316795.66565, "xag": 19379.954191643497, "xau": 286.1109162311404, "xdr": 378376.3620708386, "xlm": 1289039.3384625327, "xrp": 533186.2125014276, "yfi": 12.013116509457697, "zar": 7383439.797082266, "bits": 14491601.100305557, "link": 17697.632896998497, "sats": 1449160110.0305557}}, "community_data": {"facebook_likes": null, "twitter_followers": 35913, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6238, "reddit_accounts_active_48h": "234.666666666667"}, "developer_data": {"forks": 22, "stars": 91, "subscribers": 24, "total_issues": 2, "closed_issues": 2, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 118506, "bing_matches": null}}, "FIO_20210613": {"id": "fio-protocol", "symbol": "fio", "name": "FIO Protocol", "localization": {"en": "FIO Protocol", "de": "FIO Protocol", "es": "FIO Protocol", "fr": "FIO Protocol", "it": "FIO Protocol", "pl": "FIO Protocol", "ro": "FIO Protocol", "hu": "FIO Protocol", "nl": "FIO Protocol", "pt": "FIO Protocol", "sv": "FIO Protocol", "vi": "FIO Protocol", "tr": "FIO Protocol", "ru": "FIO Protocol", "ja": "FIO Protocol", "zh": "FIO Protocol", "zh-tw": "FIO Protocol", "ko": "FIO Protocol", "ar": "FIO Protocol", "th": "FIO Protocol", "id": "FIO Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11821/thumb/fio200x200.png?1594681349", "small": "https://assets.coingecko.com/coins/images/11821/small/fio200x200.png?1594681349"}, "market_data": {"current_price": {"aed": 0.928864012645038, "ars": 24.03760578340356, "aud": 0.32715904468897755, "bch": 0.00039881203776363886, "bdt": 21.441996551605353, "bhd": 0.09533044751360896, "bmd": 0.2528759699022746, "bnb": 0.0006728115678760171, "brl": 1.2803110356152156, "btc": 6.751703852900769e-06, "cad": 0.3063744100948002, "chf": 0.2265503170555986, "clp": 182.04541073264798, "cny": 1.6152452577507814, "czk": 5.271831782537677, "dkk": 1.5442000068827064, "dot": 0.01089237572117076, "eos": 0.047622690592297005, "eth": 9.66557895331505e-05, "eur": 0.2076243208402026, "gbp": 0.17920814235034446, "hkd": 1.9623175264416555, "huf": 71.92413192226, "idr": 3610.2722908992923, "ils": 0.8198592970589592, "inr": 18.456289974969167, "jpy": 27.722413266431516, "krw": 282.56367097629027, "kwd": 0.07603196499454687, "lkr": 50.194450264867776, "ltc": 0.0014669300841877177, "mmk": 416.2232307259282, "mxn": 4.989981284004, "myr": 1.0412168060726152, "ngn": 104.38993143613376, "nok": 2.093134564563586, "nzd": 0.35253868853224984, "php": 12.0765478780569, "pkr": 39.38475485755598, "pln": 0.929099187297042, "rub": 18.29580401080249, "sar": 0.9484120837463919, "sek": 2.0904715277245485, "sgd": 0.33498479732954356, "thb": 7.8815896777278605, "try": 2.171542805047307, "twd": 7.028561398324739, "uah": 6.847945495449973, "usd": 0.2528759699022746, "vef": 0.025320470866314778, "vnd": 5811.748700694278, "xag": 0.009093642408539297, "xau": 0.0001339003548229536, "xdr": 0.1752175066693164, "xlm": 0.6944984580641863, "xrp": 0.27786013647861346, "yfi": 6.266303919215671e-06, "zar": 3.4738836365325, "bits": 6.751703852900769, "link": 0.00987776221902812, "sats": 675.1703852900769}, "market_cap": {"aed": 226858872.1588056, "ars": 5870624890.968749, "aud": 79904200.82445447, "bch": 97357.53766669582, "bdt": 5236834550.924809, "bhd": 23282802.983988646, "bmd": 61760555.41729426, "bnb": 163761.3902990879, "brl": 312693692.0777612, "btc": 1648.7606774619437, "cad": 74825012.7469362, "chf": 55331405.11946488, "clp": 44461464606.8767, "cny": 394495547.7279679, "czk": 1287658048.4851422, "dkk": 377134655.60016507, "dot": 2654263.591738004, "eos": 11610559.834134728, "eth": 23630.783967031435, "eur": 50713383.10924746, "gbp": 43761491.47036595, "hkd": 479237823.4215914, "huf": 17566554777.340996, "idr": 881746185609.3986, "ils": 200236367.14062607, "inr": 4507627673.11281, "jpy": 6770670729.148281, "krw": 69013149812.89821, "kwd": 18569484.43676251, "lkr": 12259121056.1526, "ltc": 358346.17446797935, "mmk": 101655281508.74995, "mxn": 1218669284.7040284, "myr": 254299086.93070948, "ngn": 25495424290.25766, "nok": 511222997.4666539, "nzd": 86106257.56001468, "php": 2948869196.2012506, "pkr": 9619041049.715628, "pln": 226907230.6736967, "rub": 4471186289.71273, "sar": 231633148.37422845, "sek": 510543631.3570627, "sgd": 81814207.76128978, "thb": 1924983871.5239449, "try": 530368769.6460157, "twd": 1716603819.3065407, "uah": 1672491527.8814142, "usd": 61760555.41729426, "vef": 6184084.413933681, "vnd": 1419418491362.8992, "xag": 2220724.2911396474, "xau": 32699.743671240594, "xdr": 42793827.088087775, "xlm": 170936315.46251786, "xrp": 68362874.82557324, "yfi": 1527.617376695207, "zar": 848442794.2695093, "bits": 1648760677.4619439, "link": 2413061.9509046525, "sats": 164876067746.19437}, "total_volume": {"aed": 606052765.3824469, "ars": 15683735465.992216, "aud": 213460357.01073575, "bch": 260211.54341655754, "bdt": 13990187076.380253, "bhd": 62199935.14039555, "bmd": 164993130.07253757, "bnb": 438987.091481155, "brl": 835360217.5572573, "btc": 4405.261411131376, "cad": 199899076.67068386, "chf": 147816520.26633623, "clp": 118778554339.22011, "cny": 1053893618.3383352, "czk": 3439694279.1872315, "dkk": 1007538963.4375854, "dot": 7106911.601195649, "eos": 31072216.09999406, "eth": 63064.676571957134, "eur": 135467939.43231726, "gbp": 116927331.41980624, "hkd": 1280346689.3628943, "huf": 46928095454.02777, "idr": 2355582169076.11, "ils": 534930826.7333761, "inr": 12042113189.613781, "jpy": 18087949360.157185, "krw": 184363364131.3635, "kwd": 49608319.42577971, "lkr": 32750203448.241337, "ltc": 957122.9179318139, "mmk": 271571765687.79684, "mxn": 3255796236.2709827, "myr": 679359213.0736731, "ngn": 68110946019.7482, "nok": 1365700440.4326265, "nzd": 230019727.51733616, "php": 7879544409.22758, "pkr": 25697237992.202312, "pln": 606206208.993411, "rub": 11937401454.565166, "sar": 618807229.3164431, "sek": 1363962897.7798347, "sgd": 218566399.40709078, "thb": 5142474199.4198675, "try": 1416859200.3016994, "twd": 4585901718.794274, "uah": 4468055870.6193695, "usd": 164993130.07253757, "vef": 16520762.114163201, "vnd": 3791972047376.1274, "xag": 5933298.151362907, "xau": 87365.51230470948, "xdr": 114323574.83413135, "xlm": 453137063.48153234, "xrp": 181294464.86238286, "yfi": 4088.5541556865155, "zar": 2266593124.3714867, "bits": 4405261411.131376, "link": 6444910.155992819, "sats": 440526141113.1376}}, "community_data": {"facebook_likes": null, "twitter_followers": 76965, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 468, "reddit_accounts_active_48h": "16.6666666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 99766, "bing_matches": null}}, "WABI_20210620": {"id": "wabi", "symbol": "wabi", "name": "Wabi", "localization": {"en": "Wabi", "de": "Wabi", "es": "Wabi", "fr": "Wabi", "it": "Wabi", "pl": "Wabi", "ro": "Wabi", "hu": "Wabi", "nl": "Wabi", "pt": "Wabi", "sv": "Wabi", "vi": "Wabi", "tr": "Wabi", "ru": "Wabi", "ja": "Wabi", "zh": "\u86d9\u5e01", "zh-tw": "\u86d9\u5e63", "ko": "Wabi", "ar": "Wabi", "th": "Wabi", "id": "Wabi"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1338/thumb/Tael.png?1547035364", "small": "https://assets.coingecko.com/coins/images/1338/small/Tael.png?1547035364"}, "market_data": {"current_price": {"aed": 0.8943398026184615, "ars": 23.20567336863344, "aud": 0.3197944095256495, "bch": 0.0004108829060334258, "bdt": 20.647900732945462, "bhd": 0.09178426396942474, "bmd": 0.24347702347230316, "bnb": 0.0007034031582765474, "brl": 1.2309711352712693, "btc": 6.364794523237461e-06, "cad": 0.29895691542581937, "chf": 0.221277762380192, "clp": 177.78716601649913, "cny": 1.5576929530687507, "czk": 5.177563008363845, "dkk": 1.5097912834708098, "dot": 0.01066157361185628, "eos": 0.05018924604046148, "eth": 0.00010306345149556721, "eur": 0.2030186899589338, "gbp": 0.1740619675573729, "hkd": 1.8901525504013874, "huf": 71.50722500386173, "idr": 3511.2917201546466, "ils": 0.7886707744314815, "inr": 17.9745337282086, "jpy": 26.974106390989817, "krw": 275.85997110460397, "kwd": 0.07326954067351993, "lkr": 48.33019232445345, "ltc": 0.001471141439312323, "mmk": 400.7639799704791, "mxn": 4.967442580584275, "myr": 1.0025166441472064, "ngn": 100.09817795998589, "nok": 2.0636350426428947, "nzd": 0.3444101800757227, "php": 11.741230728797566, "pkr": 38.091980322241774, "pln": 0.9188204434205084, "rub": 17.67156236361976, "sar": 0.9130897247190393, "sek": 2.060291616156572, "sgd": 0.3253875637088549, "thb": 7.6208308346831, "try": 2.1001110659603475, "twd": 6.768539514018257, "uah": 6.592451087194559, "usd": 0.24347702347230316, "vef": 0.02437935436028171, "vnd": 5645.04691234644, "xag": 0.00895518474889095, "xau": 0.00013381984164084719, "xdr": 0.16907994070308255, "xlm": 0.7662127469428439, "xrp": 0.2916747780134699, "yfi": 6.706899053177862e-06, "zar": 3.4131631753846032, "bits": 6.36479452323746, "link": 0.010581294193050641, "sats": 636.479452323746}, "market_cap": {"aed": 52824217.30752367, "ars": 1370878464.0677216, "aud": 18889144.553333253, "bch": 24286.239795060144, "bdt": 1219569107.9250808, "bhd": 5421241.334822279, "bmd": 14380980.427835094, "bnb": 41619.23615873696, "brl": 72703046.55292009, "btc": 376.03115032342674, "cad": 17657010.912237205, "chf": 13070297.871642184, "clp": 10500980720.002405, "cny": 92005198.48316067, "czk": 305913366.13934207, "dkk": 89187115.93950237, "dot": 630465.3258475364, "eos": 2969989.463282694, "eth": 6094.266691317287, "eur": 11992601.579360679, "gbp": 10283148.816884318, "hkd": 111641204.87403299, "huf": 4224318790.8737764, "idr": 207394590191.00232, "ils": 46582871.801843315, "inr": 1061666575.5905895, "jpy": 1593081868.854289, "krw": 16292951837.18345, "kwd": 4327668.440148393, "lkr": 2854624801.8780117, "ltc": 87061.38764053209, "mmk": 23671140996.97529, "mxn": 293365514.9056629, "myr": 59207934.51943984, "ngn": 5912303007.385289, "nok": 121897188.0188893, "nzd": 20346887.0153812, "php": 691145748.8774307, "pkr": 2249904387.9348006, "pln": 54277271.56995211, "rub": 1044073560.0412549, "sar": 53930776.22752404, "sek": 121674455.39402284, "sgd": 19220180.341801595, "thb": 450412306.9997966, "try": 124044584.77833417, "twd": 399784065.40360224, "uah": 389383395.2146602, "usd": 14380980.427835094, "vef": 1439967.5702391267, "vnd": 333502267487.79376, "xag": 528819.7132492214, "xau": 7903.499223529609, "xdr": 9986713.66732537, "xlm": 45333508.73093778, "xrp": 17333862.404909015, "yfi": 397.4180322620807, "zar": 201636244.29397097, "bits": 376031150.3234268, "link": 625705.4812617726, "sats": 37603115032.34268}, "total_volume": {"aed": 4688749.903497172, "ars": 121660244.1814669, "aud": 1676584.227172103, "bch": 2154.1333398920046, "bdt": 108250624.97002496, "bhd": 481196.8086058609, "bmd": 1276475.5263795014, "bnb": 3687.727506740274, "brl": 6453604.966269479, "btc": 33.36866996105328, "cad": 1567339.622197966, "chf": 1160091.5937863218, "clp": 932083705.8378378, "cny": 8166507.47511812, "czk": 27144378.439537182, "dkk": 7915373.680058218, "dot": 55895.36784269162, "eos": 263126.8583147279, "eth": 540.3301372018695, "eur": 1064364.864636545, "gbp": 912553.6302842316, "hkd": 9909491.406221457, "huf": 374890498.39286023, "idr": 18408627979.905663, "ils": 4134759.5250484664, "inr": 94234979.85530116, "jpy": 141416985.3196526, "krw": 1446249411.1393638, "kwd": 384129.78015338205, "lkr": 253380408.58051273, "ltc": 7712.744374577562, "mmk": 2101082907.089813, "mxn": 26042781.336747218, "myr": 5255887.979867588, "ngn": 524784115.47378254, "nok": 10819007.024752896, "nzd": 1805637.1793645963, "php": 61555679.71525637, "pkr": 199704596.10207275, "pln": 4817094.41177253, "rub": 92646593.7046242, "sar": 4787050.007308126, "sek": 10801478.462824648, "sgd": 1705907.422964091, "thb": 39953683.97567846, "try": 11010239.652786372, "twd": 35485381.395586774, "uah": 34562203.659496665, "usd": 1276475.5263795014, "vef": 127813.49445637947, "vnd": 29595253490.90731, "xag": 46949.293215203965, "xau": 701.5764788087012, "xdr": 886434.3880634537, "xlm": 4017018.9594247653, "xrp": 1529161.6041902252, "yfi": 35.162219322322514, "zar": 17894170.048508927, "bits": 33368669.961053275, "link": 55474.487416621254, "sats": 3336866996.1053276}}, "community_data": {"facebook_likes": null, "twitter_followers": 45158, "reddit_average_posts_48h": 0.273, "reddit_average_comments_48h": 0.091, "reddit_subscribers": 7880, "reddit_accounts_active_48h": "28.3333333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 327925, "bing_matches": null}}, "BRD_20210829": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.7088916080533173, "ars": 18.797631603944613, "aud": 0.265242259081873, "bch": 0.0002977052401185562, "bdt": 16.472832074000713, "bhd": 0.07276020080861971, "bmd": 0.19299020147373339, "bnb": 0.00038362977503982927, "brl": 1.0060494287137096, "btc": 3.938446203777358e-06, "cad": 0.24298412017530294, "chf": 0.1763442176260194, "clp": 151.2984578079393, "cny": 1.2498045447438986, "czk": 4.190106566306783, "dkk": 1.2192155978103125, "dot": 0.0074090834733033985, "eos": 0.03699374861657919, "eth": 5.974084861286164e-05, "eur": 0.1639610013484576, "gbp": 0.14022996122423975, "hkd": 1.5022009900352762, "huf": 57.11352022413673, "idr": 2781.596722371142, "ils": 0.6233351919359807, "inr": 14.303958784347317, "jpy": 21.22544833848417, "krw": 224.76184196043303, "kwd": 0.05808040113351995, "lkr": 38.50415268462195, "ltc": 0.001084074473183851, "mmk": 317.68368029049293, "mxn": 3.9044038720450502, "myr": 0.8115237971970513, "ngn": 79.45344200941472, "nok": 1.7007400457817836, "nzd": 0.2767678269040858, "php": 9.619210612055316, "pkr": 32.02424188758495, "pln": 0.7499859766041282, "rub": 14.251457922928603, "sar": 0.7238352253338332, "sek": 1.6766930806977522, "sgd": 0.2610557226413032, "thb": 6.32621880430898, "try": 1.617412280511065, "twd": 5.3835967632508375, "uah": 5.158757002847463, "usd": 0.19299020147373339, "vef": 0.019324108873564956, "vnd": 4390.122659629926, "xag": 0.008089798003612227, "xau": 0.00010773870987472647, "xdr": 0.13612351571728157, "xlm": 0.5377226602532581, "xrp": 0.16484588430110161, "yfi": 5.0383368737700215e-06, "zar": 2.8865158454023363, "bits": 3.938446203777358, "link": 0.007268037011919521, "sats": 393.8446203777358}, "market_cap": {"aed": 60000671.294215426, "ars": 1591033808.5046232, "aud": 22450136.8329213, "bch": 25197.807467309565, "bdt": 1394262495.6036823, "bhd": 6158432.181201315, "bmd": 16334713.953559687, "bnb": 32470.47047721204, "brl": 85152145.11249292, "btc": 333.35056219909785, "cad": 20566205.268515397, "chf": 14925795.870923297, "clp": 12805919736.0016, "cny": 105783607.56325266, "czk": 354651125.667999, "dkk": 103194555.40161352, "dot": 627105.7197218867, "eos": 3131155.3493764307, "eth": 5056.472639450683, "eur": 13877678.950093165, "gbp": 11869080.848793684, "hkd": 127146473.165997, "huf": 4834095247.416459, "idr": 235434682419.74893, "ils": 52759165.90432325, "inr": 1210688798.5068066, "jpy": 1796524510.0404034, "krw": 19023869440.3278, "kwd": 4915932.164323778, "lkr": 3258996132.055386, "ltc": 91756.19429686041, "mmk": 26888785055.574886, "mxn": 330469215.13114774, "myr": 68687472.17471868, "ngn": 6724948924.550315, "nok": 143950842.8151496, "nzd": 23425662.284941833, "php": 814171147.5872773, "pkr": 2710535699.837077, "pln": 63478903.60991678, "rub": 1206245119.2575936, "sar": 61265500.86506761, "sek": 141915504.78710797, "sgd": 22095787.88312672, "thb": 535451923.3976865, "try": 136897970.70199305, "twd": 455668280.034316, "uah": 436637815.5675701, "usd": 16334713.953559687, "vef": 1635594.9081699343, "vnd": 371580511955.9693, "xag": 684721.479753827, "xau": 9119.017411714238, "xdr": 11521510.805289833, "xlm": 45512910.88620165, "xrp": 13952575.550041988, "yfi": 426.44544130343695, "zar": 244315049.66060156, "bits": 333350562.1990978, "link": 615167.5302010004, "sats": 33335056219.909782}, "total_volume": {"aed": 3010439.7658705954, "ars": 79827630.96899933, "aud": 1126400.4754156503, "bch": 1264.260548692444, "bdt": 69954938.34136422, "bhd": 308989.69517851045, "bmd": 819568.7046364468, "bnb": 1629.1550316462917, "brl": 4272375.596246802, "btc": 16.725342679894858, "cad": 1031877.1580038153, "chf": 748878.4451554391, "clp": 642516978.2312583, "cny": 5307526.931225634, "czk": 17794065.111145604, "dkk": 5177625.291540761, "dot": 31464.047907038566, "eos": 157100.81860017465, "eth": 253.70060001822912, "eur": 696290.8192224427, "gbp": 595512.5534568211, "hkd": 6379375.27452327, "huf": 242543162.45011035, "idr": 11812566675.230808, "ils": 2647108.567731161, "inr": 60744415.42907143, "jpy": 90137805.27332579, "krw": 954492871.9724932, "kwd": 246649.20166033815, "lkr": 163515029.7677396, "ltc": 4603.723427055189, "mmk": 1349102702.3734918, "mxn": 16580775.60080173, "myr": 3446286.4029962686, "ngn": 337413786.03320324, "nok": 7222508.218555429, "nzd": 1175345.9380252436, "php": 40849762.94519451, "pkr": 135996886.0613082, "pln": 3184954.6279923636, "rub": 60521460.77823083, "sar": 3073900.6098080124, "sek": 7120388.318820314, "sgd": 1108621.5715059717, "thb": 26865462.137982726, "try": 6868641.399817133, "twd": 22862442.713926982, "uah": 21907618.946826857, "usd": 819568.7046364468, "vef": 82063.41439524756, "vnd": 18643470569.34759, "xag": 34354.82848331743, "xau": 457.5324250503431, "xdr": 578073.7705595664, "xlm": 2283539.064429692, "xrp": 700048.63889264, "yfi": 21.396232521782967, "zar": 12258125.20150641, "bits": 16725342.679894859, "link": 30865.067934132156, "sats": 1672534267.9894857}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 309, "stars": 248, "subscribers": 32, "total_issues": 45, "closed_issues": 31, "pull_requests_merged": 395, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SKY_20211005": {"id": "skycoin", "symbol": "sky", "name": "Skycoin", "localization": {"en": "Skycoin", "de": "Skycoin", "es": "Skycoin", "fr": "Skycoin", "it": "Skycoin", "pl": "Skycoin", "ro": "Skycoin", "hu": "Skycoin", "nl": "Skycoin", "pt": "Skycoin", "sv": "Skycoin", "vi": "Skycoin", "tr": "Skycoin", "ru": "Skycoin", "ja": "\u30b9\u30ab\u30a4\u30b3\u30a4\u30f3", "zh": "\u5929\u7a7a\u5e01", "zh-tw": "\u5929\u7a7a\u5e63", "ko": "\uc2a4\uce74\uc774\ucf54\uc778", "ar": "Skycoin", "th": "Skycoin", "id": "Skycoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/687/thumb/skycoin.png?1551071121", "small": "https://assets.coingecko.com/coins/images/687/small/skycoin.png?1551071121"}, "market_data": {"current_price": {"aed": 4.4110092254036015, "ars": 118.53442871026746, "aud": 1.653374317689924, "bch": 0.0022137075799000304, "bdt": 102.84325290183884, "bhd": 0.4527649028862011, "bmd": 1.2008627968538585, "bnb": 0.002849869271075243, "brl": 6.443949854197478, "btc": 2.4931081840509395e-05, "cad": 1.5186711360412315, "chf": 1.1172587289368925, "clp": 964.6050502008295, "cny": 7.741602192477776, "czk": 26.223000722338295, "dkk": 7.7029464190470485, "dot": 0.03751186087278243, "eos": 0.2809518795582055, "eth": 0.0003631055061521019, "eur": 1.0357669786795933, "gbp": 0.8865729856612657, "hkd": 9.34877691664713, "huf": 370.18768794337313, "idr": 17181.14975088752, "ils": 3.865457256792893, "inr": 89.0466783280066, "jpy": 133.38763645473747, "krw": 1417.6175613888397, "kwd": 0.36200009011159484, "lkr": 239.81955854645963, "ltc": 0.007232670532234765, "mmk": 2246.918069074747, "mxn": 24.558724972178556, "myr": 5.027412099028681, "ngn": 493.27841106365946, "nok": 10.365847662442516, "nzd": 1.7307242921608734, "php": 61.07648708283674, "pkr": 205.04732256279635, "pln": 4.743054993910466, "rub": 87.2698216906416, "sar": 4.504164956006734, "sek": 10.505868264555671, "sgd": 1.6294507290510005, "thb": 40.33357209684078, "try": 10.640845242922035, "twd": 33.34795986863159, "uah": 31.974428612806513, "usd": 1.2008627968538585, "vef": 0.12024239184897681, "vnd": 27298.666028800122, "xag": 0.05329473524360906, "xau": 0.0006819099391934623, "xdr": 0.8503009248822947, "xlm": 3.9876814134552796, "xrp": 1.1526690580152152, "yfi": 3.7940847808490424e-05, "zar": 17.848579861802495, "bits": 24.931081840509396, "link": 0.045666059993846084, "sats": 2493.1081840509396}, "market_cap": {"aed": 92496109.39503306, "ars": 2485592961.791984, "aud": 34670227.13968433, "bch": 46429.54830135896, "bdt": 2156558802.0458517, "bhd": 9494197.324822374, "bmd": 25181343.078251474, "bnb": 59844.302990675766, "brl": 135125605.09220505, "btc": 522.9381008232154, "cad": 31845585.523910698, "chf": 23428217.973143615, "clp": 20227165641.036293, "cny": 162336564.42256388, "czk": 549879952.5311618, "dkk": 161525976.9888746, "dot": 788206.3049719188, "eos": 5906055.171947236, "eth": 7624.347358865937, "eur": 21719386.850510348, "gbp": 18589496.993942183, "hkd": 196038014.93134162, "huf": 7762604685.455334, "idr": 360277983038.0281, "ils": 81056225.23458388, "inr": 1867253247.2742727, "jpy": 2797055454.4314, "krw": 29726555157.350647, "kwd": 7590915.870938892, "lkr": 5028866408.76438, "ltc": 151729.8352668853, "mmk": 47116469020.71463, "mxn": 514981129.15901256, "myr": 105421692.7970997, "ngn": 10343740296.253366, "nok": 217365353.4514667, "nzd": 36292207.81004068, "php": 1280735800.3567798, "pkr": 4299714330.611435, "pln": 99458901.84422812, "rub": 1829993672.9885383, "sar": 94449526.90298538, "sek": 220301498.05439055, "sgd": 34168564.42287939, "thb": 845769824.1654663, "try": 223131881.01638615, "twd": 699285897.2830416, "uah": 670483804.427601, "usd": 25181343.078251474, "vef": 2521407.8824253194, "vnd": 572435982404.3097, "xag": 1117557.3229097414, "xau": 14299.22566698511, "xdr": 17830279.500132926, "xlm": 83736460.33664322, "xrp": 24202777.732750744, "yfi": 797.5646636562682, "zar": 374273575.7466518, "bits": 522938100.8232154, "link": 960166.4997341767, "sats": 52293810082.32154}, "total_volume": {"aed": 2717648.992872458, "ars": 73029765.82999453, "aud": 1018653.7410608294, "bch": 1363.878393267015, "bdt": 63362339.18142321, "bhd": 278951.1468827399, "bmd": 739858.7043647101, "bnb": 1755.821391111951, "brl": 3970155.793491463, "btc": 15.360187656121214, "cad": 935662.3104748302, "chf": 688349.7413668387, "clp": 594298902.8679965, "cny": 4769647.109427981, "czk": 16156146.555471277, "dkk": 4745831.057734479, "dot": 23111.280369712036, "eos": 173096.1223408277, "eth": 223.71145982140033, "eur": 638142.1898299456, "gbp": 546222.8842583776, "hkd": 5759837.006414486, "huf": 228074834.10353568, "idr": 10585408447.568613, "ils": 2381531.1834795703, "inr": 54862187.61072812, "jpy": 82180915.37536663, "krw": 873402602.6967069, "kwd": 223030.40643074136, "lkr": 147754254.96764174, "ltc": 4456.091289609042, "mmk": 1384339572.9758859, "mxn": 15130776.377092239, "myr": 3097418.4658228606, "ngn": 303911759.991892, "nok": 6386460.336076183, "nzd": 1066309.5199263683, "php": 37629586.59277608, "pkr": 126330873.77027427, "pln": 2922224.3637815216, "rub": 53767455.67881476, "sar": 2775042.792004841, "sek": 6472727.861005105, "sgd": 1003914.2759524751, "thb": 24849753.420748886, "try": 6555887.979375693, "twd": 20545876.220207963, "uah": 19699635.45231877, "usd": 739858.7043647101, "vef": 74082.05206803839, "vnd": 16818870342.113628, "xag": 32835.20304742644, "xau": 420.1287652734999, "xdr": 523875.45209304144, "xlm": 2456834.2126242956, "xrp": 710166.2555112137, "yfi": 23.375581769733614, "zar": 10996616.104604257, "bits": 15360187.656121213, "link": 28135.13089838838, "sats": 1536018765.6121213}}, "community_data": {"facebook_likes": null, "twitter_followers": 19765, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4431, "reddit_accounts_active_48h": "9.75"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 533754, "bing_matches": null}}, "OAX_20211228": {"id": "openanx", "symbol": "oax", "name": "OAX", "localization": {"en": "OAX", "de": "OAX", "es": "OAX", "fr": "OAX", "it": "OAX", "pl": "OAX", "ro": "OAX", "hu": "OAX", "nl": "OAX", "pt": "OAX", "sv": "OAX", "vi": "OAX", "tr": "OAX", "ru": "OAX", "ja": "OAX", "zh": "OAX", "zh-tw": "OAX", "ko": "OAX", "ar": "OAX", "th": "OAX", "id": "OAX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/853/thumb/OAXlogo.png?1598686792", "small": "https://assets.coingecko.com/coins/images/853/small/OAXlogo.png?1598686792"}, "market_data": {"current_price": {"aed": 0.8872136047367162, "ars": 24.699828684768597, "aud": 0.33438798148881904, "bch": 0.0005336114154331783, "bdt": 20.70595028887701, "bhd": 0.09103057965724948, "bmd": 0.24155012380525848, "bnb": 0.00044507116322582436, "brl": 1.3707636186777572, "btc": 4.751674000980962e-06, "cad": 0.3094679798662019, "chf": 0.22233167130494072, "clp": 209.0423081435468, "cny": 1.5380945683423617, "czk": 5.339972741975247, "dkk": 1.586863538338643, "dot": 0.008582493066819016, "eos": 0.07126690386712939, "eth": 5.957462349884978e-05, "eur": 0.21333634469443272, "gbp": 0.1804633052455276, "hkd": 1.884151353211965, "huf": 78.77915737784704, "idr": 3425.36191815142, "ils": 0.7613200957106516, "inr": 18.144146488737803, "jpy": 27.634904239126286, "krw": 286.7248279593178, "kwd": 0.07308702871037616, "lkr": 48.91455877775236, "ltc": 0.00149555398576885, "mmk": 429.48155983453756, "mxn": 4.980232142592069, "myr": 1.013302769363061, "ngn": 99.2626078765331, "nok": 2.1396509966669806, "nzd": 0.3543349491625332, "php": 12.081026300217115, "pkr": 43.020077049716505, "pln": 0.9857054261681863, "rub": 17.793185994804862, "sar": 0.9069214377878613, "sek": 2.204990305156302, "sgd": 0.3282907732637268, "thb": 8.070088909932052, "try": 2.5834292996232358, "twd": 6.689561593699946, "uah": 6.573630094879875, "usd": 0.24155012380525848, "vef": 0.024186413896620546, "vnd": 5544.783091949697, "xag": 0.010564199495625445, "xau": 0.00013357238746183162, "xdr": 0.17242089387343137, "xlm": 0.8630806468559202, "xrp": 0.2648302782285847, "yfi": 7.3979288656663286e-06, "zar": 3.758761476533626, "bits": 4.7516740009809615, "link": 0.011234738094943146, "sats": 475.16740009809615}, "market_cap": {"aed": 50952705.44033786, "ars": 1418511944.2293668, "aud": 19203912.375357497, "bch": 30628.34733698494, "bdt": 1189143381.3670084, "bhd": 5227889.074937578, "bmd": 13872231.26608706, "bnb": 25541.90733576253, "brl": 78722998.06712931, "btc": 272.8280492268659, "cad": 17766305.304790374, "chf": 12768514.929863399, "clp": 12005306382.29708, "cny": 88332819.80993596, "czk": 306674803.8225126, "dkk": 91133623.30255908, "dot": 491998.69007049245, "eos": 4088597.401549103, "eth": 3419.890093327293, "eur": 12251913.03751431, "gbp": 10362085.099904006, "hkd": 108206871.93329556, "huf": 4524289505.121639, "idr": 196718643526.56412, "ils": 43722637.226765886, "inr": 1042018907.9284317, "jpy": 1587073426.34359, "krw": 16466615957.470676, "kwd": 4197390.375336295, "lkr": 2809164660.957302, "ltc": 85783.49911659413, "mmk": 24665139593.75092, "mxn": 286014889.7979302, "myr": 58194010.16123531, "ngn": 5700654716.485823, "nok": 122880224.55499944, "nzd": 20349467.361079704, "php": 693813723.3305944, "pkr": 2470644388.490108, "pln": 56609093.86685362, "rub": 1021863235.638138, "sar": 52084526.91710653, "sek": 126632663.11247598, "sgd": 18853749.513738934, "thb": 463465448.0072988, "try": 148366426.55936703, "twd": 384181734.35239506, "uah": 377523784.70069903, "usd": 13872231.26608706, "vef": 1389026.5166733, "vnd": 318437068713.02875, "xag": 606702.3118669433, "xau": 7671.066445520825, "xdr": 9902137.40004561, "xlm": 49522900.34688315, "xrp": 15201043.787609477, "yfi": 424.17919992881684, "zar": 215865790.73158094, "bits": 272828049.2268659, "link": 644018.9462039124, "sats": 27282804922.686596}, "total_volume": {"aed": 8054268.35552171, "ars": 224229032.89628318, "aud": 3035628.087073131, "bch": 4844.210587532638, "bdt": 187971959.9568107, "bhd": 826390.3001529806, "bmd": 2192831.0251896796, "bnb": 4040.4278820642908, "brl": 12444013.457269961, "btc": 43.136463798042556, "cad": 2809400.2886973866, "chf": 2018362.8103325134, "clp": 1897719825.8196526, "cny": 13963070.835997786, "czk": 48477134.75697092, "dkk": 14405803.419983577, "dot": 77913.25781132287, "eos": 646972.4602378763, "eth": 540.828051189879, "eur": 1936701.7829544481, "gbp": 1638275.0230743352, "hkd": 17104630.204235777, "huf": 715169910.5553625, "idr": 31095988560.45856, "ils": 6911386.753503083, "inr": 164715491.42391494, "jpy": 250874122.68336293, "krw": 2602934283.5206523, "kwd": 663495.847446768, "lkr": 444054262.4511149, "ltc": 13576.880558686864, "mmk": 3898902945.3419366, "mxn": 45211351.51115587, "myr": 9198926.150670722, "ngn": 901121981.4914485, "nok": 19424097.221130192, "nzd": 3216709.880302267, "php": 109673507.38601387, "pkr": 390543205.5862817, "pln": 8948393.013211776, "rub": 161529415.39303488, "sar": 8233179.246035891, "sek": 20017258.01344399, "sgd": 2980276.6463352935, "thb": 73261570.14104962, "try": 23452788.30891889, "twd": 60728920.26091033, "uah": 59676475.39603273, "usd": 2192831.0251896796, "vef": 219568.17055224275, "vnd": 50336436183.229004, "xag": 95903.50874329104, "xau": 1212.591700309387, "xdr": 1565264.7140906437, "xlm": 7835185.467312264, "xrp": 2404172.0259164413, "yfi": 67.15959273056792, "zar": 34122643.582976595, "bits": 43136463.79804255, "link": 101990.76641473206, "sats": 4313646379.8042555}}, "community_data": {"facebook_likes": null, "twitter_followers": 14856, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1057415, "bing_matches": null}}, "STND_20220118": {"id": "standard-protocol", "symbol": "stnd", "name": "Standard Protocol", "localization": {"en": "Standard Protocol", "de": "Standard Protocol", "es": "Standard Protocol", "fr": "Standard Protocol", "it": "Standard Protocol", "pl": "Standard Protocol", "ro": "Standard Protocol", "hu": "Standard Protocol", "nl": "Standard Protocol", "pt": "Standard Protocol", "sv": "Standard Protocol", "vi": "Standard Protocol", "tr": "Standard Protocol", "ru": "Standard Protocol", "ja": "Standard Protocol", "zh": "Standard Protocol", "zh-tw": "Standard Protocol", "ko": "Standard Protocol", "ar": "Standard Protocol", "th": "Standard Protocol", "id": "Standard Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15100/thumb/standard.jpeg?1619691869", "small": "https://assets.coingecko.com/coins/images/15100/small/standard.jpeg?1619691869"}, "market_data": {"current_price": {"aed": 1.442683014191208, "ars": 40.793075430528766, "aud": 0.5450002285633421, "bch": 0.0010174577759360336, "bdt": 33.736856675696224, "bhd": 0.14809399453514455, "bmd": 0.39278163408863304, "bnb": 0.0008034559017114094, "brl": 2.1740070665171802, "btc": 9.110060455193505e-06, "cad": 0.49281918847466755, "chf": 0.35908646882670536, "clp": 321.9670332787937, "cny": 2.495184608711449, "czk": 8.435456930014306, "dkk": 2.560818419767664, "dot": 0.014184246121242586, "eos": 0.13694178593999268, "eth": 0.00011883391891381806, "eur": 0.3440833887494226, "gbp": 0.28721567820280214, "hkd": 3.057765743216603, "huf": 122.77175536708366, "idr": 5622.492340243449, "ils": 1.220506082868974, "inr": 29.127213052885246, "jpy": 44.86940997011502, "krw": 467.5122677903368, "kwd": 0.11858863096403986, "lkr": 79.66298514395504, "ltc": 0.0027189486792356292, "mmk": 698.1753327290162, "mxn": 7.975431080169698, "myr": 1.6412380580393533, "ngn": 162.72550318657986, "nok": 3.4375266661351964, "nzd": 0.5769219847473595, "php": 20.158908165284604, "pkr": 69.18848484471275, "pln": 1.561680138054697, "rub": 29.943747152910404, "sar": 1.4737724660925926, "sek": 3.545252921008519, "sgd": 0.5293812668838073, "thb": 13.030499288359715, "try": 5.3129214953364885, "twd": 10.822312364044084, "uah": 10.89538153143365, "usd": 0.39278163408863304, "vef": 0.03932922502129484, "vnd": 8922.799962838237, "xag": 0.017107242713627024, "xau": 0.000216120238524589, "xdr": 0.27984748752893307, "xlm": 1.4553088240293475, "xrp": 0.507965230759394, "yfi": 1.2179474192185341e-05, "zar": 6.038776063407769, "bits": 9.110060455193505, "link": 0.015292394703982366, "sats": 911.0060455193504}, "market_cap": {"aed": 40306446.60461869, "ars": 1139698672.8928556, "aud": 15226506.721165199, "bch": 28442.379634494548, "bdt": 942558274.2921202, "bhd": 4137528.912781912, "bmd": 10973742.537991833, "bnb": 22465.990388329545, "brl": 60738567.57353097, "btc": 254.60330471629737, "cad": 13768645.024992974, "chf": 10032349.060627658, "clp": 8995286495.817278, "cny": 69711796.846847, "czk": 235674289.49442023, "dkk": 71545509.22494526, "dot": 397221.8757374929, "eos": 3828019.4346387004, "eth": 3323.138681447692, "eur": 9613185.016903983, "gbp": 8024384.624768473, "hkd": 85429488.28401273, "huf": 3430062705.100097, "idr": 157084186247.21103, "ils": 34099149.13800359, "inr": 813771595.0829563, "jpy": 1253585478.8274982, "krw": 13061606793.270151, "kwd": 3313192.3470705086, "lkr": 2225666917.4617333, "ltc": 76097.48689545799, "mmk": 19505994381.641914, "mxn": 222821842.23392433, "myr": 45853783.19499887, "ngn": 4546311796.06465, "nok": 96039451.25686996, "nzd": 16118353.750970326, "php": 563210315.487755, "pkr": 1933024748.0672615, "pln": 43631051.64392861, "rub": 836584359.7580612, "sar": 41175040.27398573, "sek": 99049164.75405246, "sgd": 14790135.849141937, "thb": 364053030.7984752, "try": 148435231.0658927, "twd": 302359528.14928865, "uah": 304400973.4736328, "usd": 10973742.537991833, "vef": 1098800.8403291216, "vnd": 249289938765.5548, "xag": 477951.2603990997, "xau": 6038.08235667925, "xdr": 7818528.188498268, "xlm": 40576232.19791593, "xrp": 14196352.161262497, "yfi": 341.3005990073846, "zar": 168714542.66996363, "bits": 254603304.71629736, "link": 428129.1243673411, "sats": 25460330471.629734}, "total_volume": {"aed": 1293420.7801576764, "ars": 36572560.24322506, "aud": 488613.6551692173, "bch": 912.1900080500019, "bdt": 30246388.882598553, "bhd": 132771.958957109, "bmd": 352143.83381323575, "bnb": 720.3291013975492, "brl": 1949080.9057728832, "btc": 8.167519396383693, "cad": 441831.3468471292, "chf": 321934.82288573333, "clp": 288655822.0150477, "cny": 2237028.9186819606, "czk": 7562711.403739818, "dkk": 2295872.153312156, "dot": 12716.721901915, "eos": 122773.57525137921, "eth": 106.53917638094094, "eur": 308483.98486556986, "gbp": 257499.89631842193, "hkd": 2741404.5318526626, "huf": 110069598.13500276, "idr": 5040780516.311259, "ils": 1094230.620561221, "inr": 26113666.17621281, "jpy": 40227150.85565501, "krw": 419142719.6345424, "kwd": 106319.26630489193, "lkr": 71420928.49297765, "ltc": 2437.6420095839117, "mmk": 625941024.2321774, "mxn": 7150280.545577755, "myr": 1471433.0095886057, "ngn": 145889668.9104855, "nok": 3081874.797574988, "nzd": 517232.7366870528, "php": 18073236.095378067, "pkr": 62030136.32620151, "pln": 1400106.2760497315, "rub": 26845720.38513546, "sar": 1321293.6688916627, "sek": 3178455.526155778, "sgd": 474610.65561763366, "thb": 11682343.515247427, "try": 4763238.353691354, "twd": 9702619.053056065, "uah": 9768128.370460393, "usd": 352143.83381323575, "vef": 35260.16207971931, "vnd": 7999633166.538082, "xag": 15337.300709408351, "xau": 193.76010167905713, "xdr": 250894.03013991908, "xlm": 1304740.3040242025, "xrp": 455410.3559818523, "yfi": 10.919366802414423, "zar": 5413994.876420705, "bits": 8167519.396383692, "link": 13710.219704494622, "sats": 816751939.6383692}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 361624, "bing_matches": null}}, "NEBL_20190103": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 4.844387389348368, "ars": 49.724160899028824, "aud": 1.871611190496977, "bch": 0.008201836992966291, "bdt": 110.46272466222115, "bhd": 0.49724160899028824, "bmd": 1.3190132340980625, "bnb": 0.22402367241553375, "brl": 5.119617966828201, "btc": 0.0003470468512499229, "cad": 1.7972412673188245, "chf": 1.2975964162160099, "clp": 915.3775189198102, "cny": 9.072332624727782, "czk": 29.693131296052773, "dkk": 8.60972566523844, "eos": 0.5008183997314036, "eth": 0.009579817864382022, "eur": 1.1530510319441392, "gbp": 1.0393389010325482, "hkd": 10.330294012272395, "huf": 370.9213313089661, "idr": 19204.926232886326, "ils": 4.965323755743127, "inr": 92.2139642073439, "jpy": 145.55261575275836, "krw": 1473.73429633189, "kwd": 0.4004867122162587, "lkr": 240.88380789328588, "ltc": 0.04209890776221873, "mmk": 2038.147570982817, "mxn": 25.915319112007822, "myr": 5.478427817886684, "ngn": 480.78032382874375, "nok": 11.488209565023894, "nzd": 1.966329530837558, "php": 69.29592196501078, "pkr": 183.50771619389258, "pln": 4.959898654311289, "rub": 91.74554831357162, "sar": 4.948871703674208, "sek": 11.841333150030135, "sgd": 1.8019870769351107, "thb": 42.90750050521004, "try": 6.969068415979125, "twd": 40.3182603795034, "uah": 36.565274662550685, "usd": 1.3190132340980625, "vef": 327758.4886257035, "vnd": 30490.58416600442, "xag": 0.08577846434383547, "xau": 0.0010307428917859297, "xdr": 0.9456164156837098, "xlm": 11.404824733599169, "xrp": 3.6177385196939706, "zar": 19.033446703895237, "bits": 347.04685124992295, "link": 4.349171938758162, "sats": 34704.68512499229}, "market_cap": {"aed": 70794650.14983626, "ars": 726657756.4360566, "aud": 27353988.98290836, "bch": 119951.42616286603, "bdt": 1614274276.3004997, "bhd": 7266562.91480934, "bmd": 19275725.276697297, "bnb": 3275300.0138915875, "brl": 74816800.08897273, "btc": 5073.752306065788, "cad": 26273777.33840226, "chf": 18963747.663093936, "clp": 13377559418.806862, "cny": 132580770.8158824, "czk": 433911553.2169963, "dkk": 125819116.24897075, "eos": 7323407.467837546, "eth": 140078.4059224877, "eur": 16850106.559328247, "gbp": 15185859.714663522, "hkd": 150964357.69959852, "huf": 5419589191.609785, "idr": 280655927063.14935, "ils": 72561983.57328075, "inr": 1347591513.7056267, "jpy": 2126460367.997567, "krw": 21536779686.949196, "kwd": 5852611.3628624845, "lkr": 3520214948.965789, "ltc": 615514.9875959717, "mmk": 29784972308.10343, "mxn": 378737160.526659, "myr": 80060356.36026737, "ngn": 7026001863.356165, "nok": 167887037.36459333, "nzd": 28735441.662038695, "php": 1012699669.6466258, "pkr": 2681735279.12051, "pln": 72487328.6892842, "rub": 1340092755.4041317, "sar": 72321557.45190465, "sek": 173038841.18357104, "sgd": 26333705.568287533, "thb": 627039343.250961, "try": 101821667.13566971, "twd": 589200843.9483783, "uah": 534355661.37004143, "usd": 19275725.276697297, "vef": 4789779526491.757, "vnd": 445581673266.3828, "xag": 1253787.237535742, "xau": 15063.208274727867, "xdr": 13818998.759567603, "xlm": 166706369.36963826, "xrp": 52928303.31228421, "zar": 278160281.17790806, "bits": 5073752306.065787, "link": 63583983.18346863, "sats": 507375230606.5788}, "total_volume": {"aed": 744992.520786361, "ars": 7646813.723775505, "aud": 287825.11113915296, "bch": 1261.3168034215983, "bdt": 16987473.7680934, "bhd": 76468.13723775504, "bmd": 202844.01622832764, "bnb": 34451.40675488301, "brl": 787318.7645886281, "btc": 53.37048583524351, "cad": 276388.15697215096, "chf": 199550.43793682792, "clp": 140771030.5725499, "cny": 1395185.6877443981, "czk": 4566348.426826023, "dkk": 1324043.8286847665, "eos": 77018.19282505343, "eth": 1473.229138353483, "eur": 177321.57357443034, "gbp": 159834.39093538668, "hkd": 1588640.8658375836, "huf": 57042014.896019705, "idr": 2953423261.982077, "ils": 763590.6801022892, "inr": 14181094.145687893, "jpy": 22383761.12428986, "krw": 226637743.87813628, "kwd": 61588.71727134227, "lkr": 37044237.14206221, "ltc": 6474.1666789671435, "mmk": 313435853.6189097, "mxn": 3985378.8230661433, "myr": 842498.219479207, "ngn": 73936643.91522543, "nok": 1766710.5281438648, "nzd": 302391.33994450903, "php": 10656650.559870388, "pkr": 28220673.757766027, "pln": 762756.3826635432, "rub": 14109058.961580798, "sar": 761060.6066878713, "sek": 1821015.5224804766, "sgd": 277117.9897425407, "thb": 6598515.847907508, "try": 1071735.8934111332, "twd": 6200330.407079075, "uah": 5623178.733392652, "usd": 202844.01622832764, "vef": 50404231335.27224, "vnd": 4688984454.056188, "xag": 13191.412916565478, "xau": 158.51245648162643, "xdr": 145421.30936228274, "xlm": 1753887.2192782196, "xrp": 556352.7279545798, "zar": 2927052.3390358193, "bits": 53370485.83524351, "link": 668835.9756515226, "sats": 5337048583.524351}}, "community_data": {"facebook_likes": null, "twitter_followers": 39937, "reddit_average_posts_48h": 0.208, "reddit_average_comments_48h": 3.792, "reddit_subscribers": 6190, "reddit_accounts_active_48h": "887.48"}, "developer_data": {"forks": 37, "stars": 93, "subscribers": 35, "total_issues": 104, "closed_issues": 84, "pull_requests_merged": 67, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 750, "deletions": -209}, "commit_count_4_weeks": 13}, "public_interest_stats": {"alexa_rank": 486334, "bing_matches": null}}, "BNT_20190113": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 2.445091451497167, "ars": 24.870074266721733, "aud": 0.9277223664618561, "bch": 0.004221657585516304, "bdt": 55.884806565912626, "bhd": 0.25092205171069887, "bmd": 0.6656604865094212, "bnb": 0.10222333102739897, "brl": 2.45016378440437, "btc": 0.00016739465950511487, "cad": 0.8795039178005726, "chf": 0.6483812716006107, "clp": 449.98343083609365, "cny": 4.537551922907908, "czk": 14.7694751765251, "dkk": 4.302779460260419, "eos": 0.23184257237929046, "eth": 0.0044780629451877515, "eur": 0.5762762620414232, "gbp": 0.5201737305779232, "hkd": 5.217280478139226, "huf": 185.25512598907645, "idr": 9409.161926464312, "ils": 2.447234212603239, "inr": 46.96933675834803, "jpy": 72.01381407253533, "krw": 745.1544672575653, "kwd": 0.201573311543323, "lkr": 121.52313817567686, "ltc": 0.017343511416188596, "mmk": 1022.4612224614594, "mxn": 12.794793343294904, "myr": 2.7302437624056344, "ngn": 242.9231165137999, "nok": 5.635268667433078, "nzd": 0.9803541441486966, "php": 34.83765442189928, "pkr": 93.17081018173, "pln": 2.479069425370543, "rub": 44.39462856257826, "sar": 2.497491579334694, "sek": 5.902760339973974, "sgd": 0.9006060208834082, "thb": 21.2545393342458, "try": 3.6477535656834665, "twd": 20.451706856941875, "uah": 18.822257853151044, "usd": 0.6656604865094212, "vef": 165408.40482572315, "vnd": 15469.552789106696, "xag": 0.04226422877173884, "xau": 0.0005148417900809817, "xdr": 0.47618555430840676, "xlm": 5.436581929861332, "xrp": 1.8153705707840684, "zar": 9.221491240385566, "bits": 167.39465950511487, "link": 1.690559053014339, "sats": 16739.465950511487}, "market_cap": {"aed": 152779447.65097782, "ars": 1553569382.7599285, "aud": 57973303.95836616, "bch": 263486.43294641946, "bdt": 3491914330.64555, "bhd": 15678649.745528847, "bmd": 41593226.04875122, "bnb": 6445146.008070951, "brl": 153087986.20180714, "btc": 10458.506910720656, "cad": 54950890.59430763, "chf": 40497577.28817499, "clp": 28117780010.11081, "cny": 283525050.17553407, "czk": 922947447.0378808, "dkk": 268861191.95914286, "eos": 14468308.856864473, "eth": 279628.1352824385, "eur": 36008129.24815091, "gbp": 32502652.156762216, "hkd": 325984829.49578536, "huf": 11575553154.779016, "idr": 587923433744.6193, "ils": 152913336.24562886, "inr": 2934838826.612909, "jpy": 4500532634.766044, "krw": 46565786521.7731, "kwd": 12595135.932404691, "lkr": 7593269329.834273, "ltc": 1080656.4887812913, "mmk": 63887614803.34621, "mxn": 799471009.4434131, "myr": 170596945.85961136, "ngn": 15178843122.578234, "nok": 352094561.21562827, "nzd": 61256839.59555884, "php": 2176914999.5170135, "pkr": 5821698369.622448, "pln": 154894005.67007005, "rub": 2774505258.840176, "sar": 156053624.81231, "sek": 368833339.10668695, "sgd": 56279752.57333921, "thb": 1327884538.2194006, "try": 227921520.2712957, "twd": 1278119366.2691743, "uah": 1176092680.1277306, "usd": 41593226.04875122, "vef": 10335402674051.12, "vnd": 966601772330.523, "xag": 2640676.142502497, "xau": 32167.3691615832, "xdr": 29754046.99978249, "xlm": 339506422.14900935, "xrp": 113220483.08840856, "zar": 576076329.5223597, "bits": 10458506910.720655, "link": 105622984.575512, "sats": 1045850691072.0657}, "total_volume": {"aed": 2774646.454394555, "ars": 28222119.603107486, "aud": 1052762.903076592, "bch": 4790.662224166818, "bdt": 63417088.263790324, "bhd": 284741.89817407104, "bmd": 755379.7252012765, "bnb": 116001.22474678823, "brl": 2780402.4479005905, "btc": 189.9564935274933, "cad": 998045.4619221864, "chf": 735771.5782945029, "clp": 510633224.02160525, "cny": 5149133.520882629, "czk": 16760138.728848381, "dkk": 4882717.890221671, "eos": 263090.84309955785, "eth": 5081.626483055589, "eur": 653948.0910809749, "gbp": 590283.9324612867, "hkd": 5920477.441196316, "huf": 210224234.4225067, "idr": 10677350232.484217, "ils": 2777078.021729976, "inr": 53299971.10006469, "jpy": 81720000.191175, "krw": 845588085.9942808, "kwd": 228741.8222462745, "lkr": 137902303.92387927, "ltc": 19681.10944407142, "mmk": 1160270878.1798291, "mxn": 14519304.774038794, "myr": 3098232.244177645, "ngn": 275664848.2463811, "nok": 6394803.032041943, "nzd": 1112488.5118090813, "php": 39533152.94687972, "pkr": 105728584.49343967, "pln": 2813204.057087717, "rub": 50378237.860958695, "sar": 2834109.1909826654, "sek": 6698347.842335731, "sgd": 1021991.7545907926, "thb": 24119274.625676733, "try": 4139406.111510203, "twd": 23208234.555882964, "uah": 21359164.69871398, "usd": 755379.7252012765, "vef": 187702526911.9198, "vnd": 17554574398.87664, "xag": 47960.69792703269, "xau": 584.2333408624233, "xdr": 540366.929460535, "xlm": 6169336.842791188, "xrp": 2060050.3570342925, "zar": 10464384.86327345, "bits": 189956493.5274933, "link": 1918416.4582141347, "sats": 18995649352.749332}}, "community_data": {"facebook_likes": null, "twitter_followers": 861, "reddit_average_posts_48h": 0.174, "reddit_average_comments_48h": 0.435, "reddit_subscribers": 5088, "reddit_accounts_active_48h": "1022.20833333333"}, "developer_data": {"forks": 197, "stars": 518, "subscribers": 67, "total_issues": 41, "closed_issues": 25, "pull_requests_merged": 190, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 105039, "bing_matches": null}}, "BQX_20190401": {"id": "ethos", "symbol": "vgx", "name": "Voyager Token", "localization": {"en": "Voyager Token", "de": "Voyager Token", "es": "Voyager Token", "fr": "Voyager Token", "it": "Voyager Token", "pl": "Voyager Token", "ro": "Voyager Token", "hu": "Voyager Token", "nl": "Voyager Token", "pt": "Voyager Token", "sv": "Voyager Token", "vi": "Voyager Token", "tr": "Voyager Token", "ru": "Voyager Token", "ja": "\u30a4\u30fc\u30bd\u30b9", "zh": "Voyager Token", "zh-tw": "Voyager Token", "ko": "\uc5d0\ud1a0\uc2a4", "ar": "Voyager Token", "th": "Voyager Token", "id": "Voyager Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/794/thumb/Voyager-vgx.png?1575693595", "small": "https://assets.coingecko.com/coins/images/794/small/Voyager-vgx.png?1575693595"}, "market_data": {"current_price": {"aed": 0.6279303620383996, "ars": 7.457181732356545, "aud": 0.24140296664494285, "bch": 0.0010164565430530285, "bdt": 14.402358584364052, "bhd": 0.064445080093238, "bmd": 0.17095001908111795, "bnb": 0.010307471026824408, "brl": 0.6669273094411633, "btc": 4.245947399149447e-05, "cad": 0.22961835612956688, "chf": 0.17008620863470095, "clp": 116.689441597255, "cny": 1.1520405551385864, "czk": 3.9301067486710854, "dkk": 1.1364876933526058, "eos": 0.04023476867302009, "eth": 0.0012404756254876133, "eur": 0.15224039424278485, "gbp": 0.130970450968674, "hkd": 1.3419832922896393, "huf": 48.783207411939216, "idr": 2432.3131281047426, "ils": 0.619946141397218, "inr": 11.828141912034816, "jpy": 18.914081061153944, "krw": 194.08639466355655, "kwd": 0.05196880580065987, "lkr": 30.119683861902168, "ltc": 0.0028252435235586572, "mmk": 259.94646926368324, "mxn": 3.3095410844047173, "myr": 0.6971341778127972, "ngn": 61.54200686920247, "nok": 1.4765124098055225, "nzd": 0.252140508293447, "php": 9.014449392625806, "pkr": 24.028734682041943, "pln": 0.6539795549959604, "rub": 11.108144194870038, "sar": 0.6411394990627788, "sek": 1.5881022571109702, "sgd": 0.23185626282935748, "thb": 5.446467607924404, "try": 0.9524998291662288, "twd": 5.276385843990223, "uah": 4.658388019960464, "usd": 0.17095001908111795, "vef": 42478.96718252087, "vnd": 3965.2687180532457, "xag": 0.0113666428472232, "xau": 0.0001323648902743187, "xdr": 0.12273322429925028, "xlm": 1.6077799361631457, "xrp": 0.5569200154532857, "zar": 2.494551912037168, "bits": 42.45947399149447, "link": 0.34287346809998215, "sats": 4245.947399149447}, "market_cap": {"aed": 73856473.14779384, "ars": 876984807.6678426, "aud": 28395338.87015412, "bch": 119551.96059429826, "bdt": 1693989452.2665718, "bhd": 7579958.885827181, "bmd": 20106951.753206246, "bnb": 1212385.2112848079, "brl": 78443250.87478352, "btc": 4994.166018443038, "cad": 27006652.247318972, "chf": 20003622.128146518, "clp": 13725350201.49592, "cny": 135501733.1054927, "czk": 462234410.966783, "dkk": 133672704.23926233, "eos": 4731907.972301196, "eth": 145910.66571656746, "eur": 17906426.846383616, "gbp": 15405946.433306605, "hkd": 157846608.6957826, "huf": 5738186092.826922, "idr": 286364733891.61383, "ils": 72917377.9661603, "inr": 1391212940.6812665, "jpy": 2224923977.3698144, "krw": 22831054606.035328, "kwd": 6112513.332974697, "lkr": 3542643829.397408, "ltc": 332310.5356917163, "mmk": 30574615574.749023, "mxn": 389268655.6747046, "myr": 81996149.24957493, "ngn": 7238502631.154248, "nok": 173681778.2281648, "nzd": 29651902.713019025, "php": 1060194325.3051196, "pkr": 2826233138.4306684, "pln": 76927649.17248195, "rub": 1305542366.6405056, "sar": 75410117.20281221, "sek": 186813266.49305242, "sgd": 27270958.128114864, "thb": 640808552.3746831, "try": 112027972.81597073, "twd": 620602654.3119006, "uah": 547914435.2748702, "usd": 20106951.753206246, "vef": 4996329033807.741, "vnd": 466347232472.8212, "xag": 1337345.3311590364, "xau": 15569.818090095254, "xdr": 14435745.79731092, "xlm": 189097717.89009708, "xrp": 65505970.20506294, "zar": 293464620.303264, "bits": 4994166018.443038, "link": 40329445.045731544, "sats": 499416601844.30383}, "total_volume": {"aed": 14517616.342473796, "ars": 172408454.71306577, "aud": 5581185.216637069, "bch": 23500.258966516838, "bdt": 332979465.55058444, "bhd": 1489956.5374040806, "bmd": 3952328.0618281, "bnb": 238306.5366402052, "brl": 15419217.467609916, "btc": 981.6540030183571, "cad": 5308727.529366887, "chf": 3932356.9481316796, "clp": 2697835057.4213114, "cny": 26634932.472734537, "czk": 90863231.67581564, "dkk": 26275353.61799749, "eos": 930219.2894876599, "eth": 28679.532479619287, "eur": 3519765.5171013204, "gbp": 3028008.954992544, "hkd": 31026368.134559885, "huf": 1127857373.9655359, "idr": 56234561908.996506, "ils": 14333022.860346159, "inr": 273464123.89715755, "jpy": 437289529.08872217, "krw": 4487236141.715917, "kwd": 1201507.7307957427, "lkr": 696360681.2134929, "ltc": 65319.02903362903, "mmk": 6009907050.998804, "mxn": 76515885.57857342, "myr": 16117593.83613495, "ngn": 1422838102.258116, "nok": 34136652.70281545, "nzd": 5829434.894528555, "php": 208412151.62133604, "pkr": 555539232.3705578, "pln": 15119868.140207078, "rub": 256817929.89672154, "sar": 14823008.779483197, "sek": 36716586.22543854, "sgd": 5360467.456024271, "thb": 125921172.04984295, "try": 22021593.35187796, "twd": 121988917.86224143, "uah": 107700939.68481573, "usd": 3952328.0618281, "vef": 982104681446.6038, "vnd": 91676168925.22484, "xag": 262794.36372885434, "xau": 3060.2480949928768, "xdr": 2837566.0273333564, "xlm": 37171529.97758084, "xrp": 12875872.240910929, "zar": 57673509.34867743, "bits": 981654003.0183572, "link": 7927161.616664379, "sats": 98165400301.83571}}, "community_data": {"facebook_likes": null, "twitter_followers": 60929, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5822, "reddit_accounts_active_48h": "1123.28"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 403749, "bing_matches": null}}, "BQX_20190422": {"id": "ethos", "symbol": "vgx", "name": "Voyager Token", "localization": {"en": "Voyager Token", "de": "Voyager Token", "es": "Voyager Token", "fr": "Voyager Token", "it": "Voyager Token", "pl": "Voyager Token", "ro": "Voyager Token", "hu": "Voyager Token", "nl": "Voyager Token", "pt": "Voyager Token", "sv": "Voyager Token", "vi": "Voyager Token", "tr": "Voyager Token", "ru": "Voyager Token", "ja": "\u30a4\u30fc\u30bd\u30b9", "zh": "Voyager Token", "zh-tw": "Voyager Token", "ko": "\uc5d0\ud1a0\uc2a4", "ar": "Voyager Token", "th": "Voyager Token", "id": "Voyager Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/794/thumb/Voyager-vgx.png?1575693595", "small": "https://assets.coingecko.com/coins/images/794/small/Voyager-vgx.png?1575693595"}, "market_data": {"current_price": {"aed": 0.592151678456679, "ars": 6.746024433486454, "aud": 0.22559535628360966, "bch": 0.0005263843061649392, "bdt": 13.596879334769179, "bhd": 0.0607805589116511, "bmd": 0.16121266165983103, "bnb": 0.007329737201093114, "brl": 0.633275093894163, "btc": 3.0545272259511885e-05, "cad": 0.21572688441276475, "chf": 0.16361940548575082, "clp": 106.76201054062062, "cny": 1.0815918683419716, "czk": 3.6869980572250154, "dkk": 1.071370985592739, "eos": 0.02940295109396674, "eth": 0.0009288138165674644, "eur": 0.14348507253306933, "gbp": 0.12408393476561692, "hkd": 1.2647697551529546, "huf": 45.914545311339836, "idr": 2263.9212706839285, "ils": 0.5794305485377649, "inr": 11.186743110810237, "jpy": 18.054770223600293, "krw": 183.31652970001048, "kwd": 0.04901961160558141, "lkr": 28.10388410608828, "ltc": 0.001966264055629795, "mmk": 245.15817922703297, "mxn": 3.031555738714626, "myr": 0.6701610345199194, "ngn": 58.03655819753917, "nok": 1.372306661113147, "nzd": 0.24111981317612796, "php": 8.338945463275905, "pkr": 22.83582704671874, "pln": 0.6138736337013869, "rub": 10.30671237030097, "sar": 0.6046119662890296, "sek": 1.5005477867849857, "sgd": 0.21854004535872865, "thb": 5.128174767399224, "try": 0.9377658310294921, "twd": 4.971006770207771, "uah": 4.329605590889989, "usd": 0.16121266165983103, "vef": 40059.35419524758, "vnd": 3747.3096272238163, "xag": 0.010751124090445421, "xau": 0.0001263746054751415, "xdr": 0.11578551300667718, "xlm": 1.3727945156845527, "xrp": 0.478989367984055, "zar": 2.26574997264718, "bits": 30.545272259511886, "link": 0.30873707606783646, "sats": 3054.5272259511885}, "market_cap": {"aed": 69606709.1599828, "ars": 792863785.0236738, "aud": 26517682.619433224, "bch": 61948.42136298928, "bdt": 1598296618.5375707, "bhd": 7144680.730739502, "bmd": 18950352.1839354, "bnb": 863014.8329443617, "brl": 74436623.3218067, "btc": 3592.7928786068355, "cad": 25356518.73971479, "chf": 19234417.96317261, "clp": 12549583958.13164, "cny": 127139807.83724114, "czk": 433309581.0674113, "dkk": 125914838.1217193, "eos": 3459612.6488443473, "eth": 109288.61479294232, "eur": 16863501.50073606, "gbp": 14587810.558023844, "hkd": 148675935.57667455, "huf": 5396302287.897448, "idr": 266121190199.62073, "ils": 68111355.81950061, "inr": 1315552398.9609797, "jpy": 2122328900.94286, "krw": 21548634971.87479, "kwd": 5762195.687864877, "lkr": 3303577374.5281353, "ltc": 231190.25247408074, "mmk": 28818045613.114666, "mxn": 356422961.46350336, "myr": 78776614.0286194, "ngn": 6822126786.216744, "nok": 161282657.36703756, "nzd": 28343340.598481398, "php": 979903438.923129, "pkr": 2684323678.3713756, "pln": 72152518.42272486, "rub": 1211039311.6313593, "sar": 71071400.83063129, "sek": 176352356.43074653, "sgd": 25693456.001545172, "thb": 602621199.4491456, "try": 110311895.09790653, "twd": 584335796.1729923, "uah": 508939868.1229305, "usd": 18950352.1839354, "vef": 4708928333822.71, "vnd": 440333158189.14404, "xag": 1263781.5528226432, "xau": 14855.181076986986, "xdr": 13610446.144137356, "xlm": 161407278.14462614, "xrp": 56315532.343097754, "zar": 266368177.98507997, "bits": 3592792878.6068354, "link": 36314240.67313732, "sats": 359279287860.68353}, "total_volume": {"aed": 4981416.181911059, "ars": 56750249.132318005, "aud": 1897798.147400469, "bch": 4428.154805654046, "bdt": 114382373.98607056, "bhd": 511310.31241389556, "bmd": 1356185.232159206, "bnb": 61660.67382911574, "brl": 5327362.760412095, "btc": 256.9590175121714, "cad": 1814780.6245990754, "chf": 1376431.7214901124, "clp": 898124629.6666778, "cny": 9098782.341079323, "czk": 31016498.733574037, "dkk": 9012800.197360434, "eos": 247349.3560926228, "eth": 7813.552412602386, "eur": 1207053.6792900506, "gbp": 1043843.5675258507, "hkd": 10639747.811120221, "huf": 386251474.61391443, "idr": 19045009011.458225, "ils": 4874400.961426619, "inr": 94107346.44932531, "jpy": 151883930.7978221, "krw": 1542131789.3405547, "kwd": 412372.5311721847, "lkr": 236421086.27555493, "ltc": 16540.997756102617, "mmk": 2062368419.3757417, "mxn": 25502656.435184233, "myr": 5637662.010085834, "ngn": 488226683.57731414, "nok": 11544391.170232035, "nzd": 2028396.0728869354, "php": 70150536.39483248, "pkr": 192104088.38884863, "pln": 5164149.936277427, "rub": 86704176.73649512, "sar": 5086237.0946898805, "sek": 12623206.686339574, "sgd": 1838446.0569002524, "thb": 43140252.23498433, "try": 7888860.330023258, "twd": 41818092.33411473, "uah": 36422369.70089047, "usd": 1356185.232159206, "vef": 336995270781.30524, "vnd": 31523863724.131046, "xag": 90442.745442284, "xau": 1063.1136034896012, "xdr": 974033.9327004561, "xlm": 11548495.197535908, "xrp": 4029449.6755592357, "zar": 19060392.782007314, "bits": 256959017.5121714, "link": 2597219.4669591566, "sats": 25695901751.21714}}, "community_data": {"facebook_likes": null, "twitter_followers": 61247, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.043, "reddit_subscribers": 5812, "reddit_accounts_active_48h": "120.541666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 418149, "bing_matches": null}}, "LINK_20190912": {"id": "chainlink", "symbol": "link", "name": "Chainlink", "localization": {"en": "Chainlink", "de": "Chainlink", "es": "Chainlink", "fr": "Chainlink", "it": "Chainlink", "pl": "Chainlink", "ro": "Chainlink", "hu": "Chainlink", "nl": "Chainlink", "pt": "Chainlink", "sv": "Chainlink", "vi": "Chainlink", "tr": "Chainlink", "ru": "Chainlink", "ja": "\u30c1\u30a7\u30fc\u30f3\u30ea\u30f3\u30af", "zh": "Chainlink", "zh-tw": "Chainlink", "ko": "\uccb4\uc778\ub9c1\ud06c", "ar": "Chainlink", "th": "Chainlink", "id": "Chainlink"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/877/thumb/chainlink-new-logo.png?1547034700", "small": "https://assets.coingecko.com/coins/images/877/small/chainlink-new-logo.png?1547034700"}, "market_data": {"current_price": {"aed": 6.72542756725034, "ars": 102.64357056971714, "aud": 2.6734532580375276, "bch": 0.005961334834348229, "bdt": 153.3211279468286, "bhd": 0.6853347740771129, "bmd": 1.8310408164780363, "bnb": 0.08169803234638169, "brl": 7.4391636154318475, "btc": 0.00017617755896219114, "cad": 2.4115723073423916, "chf": 1.8099838470885377, "clp": 1303.1517490874141, "cny": 13.029137137812734, "czk": 42.94839901028828, "dkk": 12.394622901596957, "eos": 0.48557516300767367, "eth": 0.010085862376957489, "eur": 1.6610872699741734, "gbp": 1.490589904347821, "hkd": 14.355817761391885, "huf": 548.061644065755, "idr": 25822.253114381427, "ils": 6.442116114839137, "inr": 131.2485021889208, "jpy": 195.84904125089858, "krw": 2184.141316619363, "kwd": 0.5543091553315782, "lkr": 328.1966147036654, "ltc": 0.025961394204171807, "mmk": 2766.6392043304886, "mxn": 35.78641102949157, "myr": 7.654666133286402, "ngn": 661.6962660164853, "nok": 16.44567619727908, "nzd": 2.8485923121336505, "php": 95.04494527165991, "pkr": 285.00618505617274, "pln": 7.207434413861651, "rub": 120.4736967283353, "sar": 6.868600310772389, "sek": 17.652954649215733, "sgd": 2.5290610413317016, "thb": 56.14709418978843, "try": 10.449944029966668, "twd": 57.12105958984874, "uah": 45.432991394351035, "usd": 1.8310408164780363, "vef": 454991.01533366216, "vnd": 42508.22994487997, "xag": 0.100695160036903, "xau": 0.0012162139311210384, "xdr": 1.337441650457599, "xlm": 30.29931410833861, "xrp": 6.987583987834514, "zar": 27.107257417936697, "bits": 176.17755896219114, "link": 1, "sats": 17617.755896219114}, "market_cap": {"aed": 2449474302.5667634, "ars": 37383911419.77809, "aud": 973700926.6986499, "bch": 2173201.412532437, "bdt": 55841232277.199524, "bhd": 249606422.9331399, "bmd": 666885098.689344, "bnb": 29775895.858117286, "brl": 2709424780.2656693, "btc": 64202.92835054463, "cad": 878321019.2288026, "chf": 659215920.0544227, "clp": 474622124737.2078, "cny": 4745354296.743787, "czk": 15642276815.880651, "dkk": 4514257269.724768, "eos": 177342698.87624982, "eth": 3675632.6029097866, "eur": 604986157.5991995, "gbp": 542889151.6347407, "hkd": 5228545894.999155, "huf": 199610047084.39902, "idr": 9404747104266.535, "ils": 2346289171.901855, "inr": 47802140480.65026, "jpy": 71330363598.3621, "krw": 795488164096.1317, "kwd": 201885459.04112753, "lkr": 119532797858.18977, "ltc": 9459811.575946707, "mmk": 1007640267881.4277, "mxn": 13033802434.31418, "myr": 2787913155.070818, "ngn": 240997019669.6964, "nok": 5989695202.388237, "nzd": 1037488486.3882879, "php": 34616408950.037735, "pkr": 103802370836.1941, "pln": 2625026469.7159443, "rub": 43877838445.28533, "sar": 2501619382.2034802, "sek": 6429399223.358099, "sgd": 921111701.5862058, "thb": 20449386006.53329, "try": 3805983948.040562, "twd": 20804114861.343033, "uah": 16547192545.96009, "usd": 666885098.689344, "vef": 165712705818972.62, "vnd": 15481962426390.758, "xag": 36674278.986262724, "xau": 442958.42025143804, "xdr": 487110881.98036355, "xlm": 11045311893.066793, "xrp": 2547885521.892398, "zar": 9872759730.790634, "bits": 64202928350.54463, "link": 364421715.9594259, "sats": 6420292835054.463}, "total_volume": {"aed": 469853853.807406, "ars": 7170916156.406041, "aud": 186773599.7008829, "bch": 416472.5763153238, "bdt": 10711366989.767227, "bhd": 47879065.164032474, "bmd": 127920727.0464446, "bnb": 5707612.6331881005, "brl": 519717097.3686561, "btc": 12308.16988288676, "cad": 168477993.5565194, "chf": 126449638.68541038, "clp": 91041181438.95432, "cny": 910245517.4443837, "czk": 3000474035.005095, "dkk": 865916892.0595245, "eos": 33923398.827948816, "eth": 704621.5663463118, "eur": 116047381.00344737, "gbp": 104136042.50451769, "hkd": 1002930480.2258843, "huf": 38288848257.36056, "idr": 1804002053172.479, "ils": 450061063.47369033, "inr": 9169322536.48919, "jpy": 13682464925.251205, "krw": 152589140929.98813, "kwd": 38725313.77804304, "lkr": 22928571110.62566, "ltc": 1813722.7700499194, "mmk": 193283784451.016, "mxn": 2500121065.6138186, "myr": 534772599.4176596, "ngn": 46227624567.95389, "nok": 1148932802.040343, "nzd": 199009217.24287525, "php": 6640058698.760368, "pkr": 19911188258.078064, "pln": 503527961.83656615, "rub": 8416569820.1662035, "sar": 479856231.29662144, "sek": 1233276054.2111475, "sgd": 176686027.0074543, "thb": 3922565267.6154284, "try": 730057148.8511239, "twd": 3990608732.825255, "uah": 3174053379.2355022, "usd": 127920727.0464446, "vef": 31786719857525.492, "vnd": 2969722810693.947, "xag": 7034795.710755928, "xau": 84967.50531878923, "xdr": 93436752.89435314, "xlm": 2116779841.7527866, "xrp": 488168704.9124323, "zar": 1893775412.285674, "bits": 12308169882.886759, "link": 69862302.30110165, "sats": 1230816988288.676}}, "community_data": {"facebook_likes": null, "twitter_followers": 32405, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.087, "reddit_subscribers": 10562, "reddit_accounts_active_48h": "182.25"}, "developer_data": {"forks": 143, "stars": 624, "subscribers": 133, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1311, "pull_request_contributors": 34, "code_additions_deletions_4_weeks": {"additions": 21877, "deletions": -23643}, "commit_count_4_weeks": 406}, "public_interest_stats": {"alexa_rank": 94033, "bing_matches": null}}, "ONG_20190919": {"id": "ong", "symbol": "ong", "name": "Ontology Gas", "localization": {"en": "Ontology Gas", "de": "Ontology Gas", "es": "Ontology Gas", "fr": "Ontology Gas", "it": "Ontology Gas", "pl": "Ontology Gas", "ro": "Ontology Gas", "hu": "Ontology Gas", "nl": "Ontology Gas", "pt": "Ontology Gas", "sv": "Ontology Gas", "vi": "Ontology Gas", "tr": "Ontology Gas", "ru": "Ontology Gas", "ja": "Ontology Gas", "zh": "Ontology Gas", "zh-tw": "Ontology Gas", "ko": "Ontology Gas", "ar": "Ontology Gas", "th": "Ontology Gas", "id": "Ontology Gas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5716/thumb/ONG_logo.png?1583481389", "small": "https://assets.coingecko.com/coins/images/5716/small/ONG_logo.png?1583481389"}, "market_data": {"current_price": {"aed": 0.6466120242896408, "ars": 9.863289193378845, "aud": 0.25587580330963483, "bch": 0.0005806388857272025, "bdt": 14.875237264429234, "bhd": 0.06637746178774429, "bmd": 0.17604465676276548, "bnb": 0.008641004886073845, "brl": 0.7193038558261516, "btc": 1.7083130536323e-05, "cad": 0.23265885793110483, "chf": 0.17374287287559226, "clp": 124.51802523219291, "cny": 1.246290543086326, "czk": 4.107104237809657, "dkk": 1.1861646031048851, "eos": 0.04322353718069121, "eth": 0.0009299697796014846, "eur": 0.15882062358975388, "gbp": 0.14087287083278985, "hkd": 1.3774508541608583, "huf": 52.66551951714915, "idr": 2455.1425624455533, "ils": 0.6212813107173584, "inr": 12.504761632410522, "jpy": 18.970484190427367, "krw": 207.68340247616968, "kwd": 0.053498386788293724, "lkr": 31.741967913495234, "ltc": 0.002510176164086967, "mmk": 269.18024180987095, "mxn": 3.4174845038728803, "myr": 0.7338421517155905, "ngn": 63.46409876297696, "nok": 1.572043575960149, "nzd": 0.2756788907042221, "php": 9.14660241742014, "pkr": 27.557161261128332, "pln": 0.6871281739096206, "rub": 11.254816578294458, "sar": 0.6604139253798403, "sek": 1.6897500262308998, "sgd": 0.24183518566486256, "thb": 5.365929160457488, "try": 1.0085149472064123, "twd": 5.445067747324657, "uah": 4.364361815630219, "usd": 0.17604465676276548, "vef": 43744.92168810592, "vnd": 4088.823156994279, "xag": 0.009905186061241817, "xau": 0.00011676337904447229, "xdr": 0.12820328897488714, "xlm": 3.0376689566441595, "xrp": 0.6748850194601206, "zar": 2.576670929011273, "bits": 17.083130536323, "link": 0.10911881966920521, "sats": 1708.3130536323001}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 18243671.9231033, "ars": 278285286.0250725, "aud": 7219343.336167949, "bch": 16382.289439545544, "bdt": 419693631.1673152, "bhd": 1872790.1592524298, "bmd": 4966967.580480046, "bnb": 243799.45362236188, "brl": 20294617.275532376, "btc": 481.9876791907928, "cad": 6564294.684686669, "chf": 4902024.479365267, "clp": 3513182427.0426264, "cny": 35163150.28925055, "czk": 115878856.95584182, "dkk": 33466742.11574857, "eos": 1219519.5914379796, "eth": 26238.397864761104, "eur": 4481004.4393734755, "gbp": 3974622.0945435325, "hkd": 38863739.81541144, "huf": 1485918021.376417, "idr": 69270000790.52104, "ils": 17528984.89188314, "inr": 352812444.137473, "jpy": 535237942.9887434, "krw": 5859630994.043919, "kwd": 1509416.744999666, "lkr": 895575750.3019825, "ltc": 70822.73246790627, "mmk": 7594718061.662829, "mxn": 96421754.85282747, "myr": 20704804.359231144, "ngn": 1790591812.7630565, "nok": 44354027.10017088, "nzd": 7778072.552328585, "php": 258064507.68959185, "pkr": 777504578.1624372, "pln": 19386804.61084803, "rub": 317546184.5682192, "sar": 18633082.181412898, "sek": 47675026.06292873, "sgd": 6823197.869819151, "thb": 151395655.33682245, "try": 28454490.691837255, "twd": 153628491.04204887, "uah": 123137186.02054887, "usd": 4966967.580480046, "vef": 1234230063160.9768, "vnd": 115363070010.55283, "xag": 279467.374639551, "xau": 3294.390917429208, "xdr": 3617159.3717115447, "xlm": 85705544.8619182, "xrp": 19041373.216611367, "zar": 72698832.2469285, "bits": 481987679.1907928, "link": 3078705.424428563, "sats": 48198767919.07928}}, "community_data": {"facebook_likes": null, "twitter_followers": 81450, "reddit_average_posts_48h": 0.3, "reddit_average_comments_48h": 1.75, "reddit_subscribers": 16287, "reddit_accounts_active_48h": "230.333333333333"}, "developer_data": {"forks": 3, "stars": 0, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 297056, "bing_matches": null}}, "EDO_20191216": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "VIA_20210421": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 6.116179815462703, "ars": 154.5227848961295, "aud": 2.1530258428158495, "bch": 0.0016388270125790394, "bdt": 141.19326781204413, "bhd": 0.627873177462076, "bmd": 1.6651501655198562, "bnb": 0.003210961873727295, "brl": 9.331201800543473, "btc": 2.7625150708289988e-05, "cad": 2.0828530845405138, "chf": 1.5320230749367112, "clp": 1170.2675363273554, "cny": 10.858277714338449, "czk": 36.01220262969786, "dkk": 10.334254957249339, "dot": 0.03901905454662754, "eos": 0.21180072362965213, "eth": 0.0007093907654671039, "eur": 1.3897160114910512, "gbp": 1.2037087471014918, "hkd": 12.940547996321014, "huf": 502.192638419134, "idr": 24272.893962782957, "ils": 5.459511196188312, "inr": 124.14343892515086, "jpy": 181.1433607560776, "krw": 1859.3899323277474, "kwd": 0.502091064259037, "lkr": 334.57773689801724, "ltc": 0.005470378579038018, "mmk": 2349.1987557175003, "mxn": 33.163222279752475, "myr": 6.870409582934927, "ngn": 633.5896379803045, "nok": 13.938972035566724, "nzd": 2.331000422806944, "php": 80.48729452432714, "pkr": 254.43494529143408, "pln": 6.313060510433123, "rub": 125.90017234977427, "sar": 6.246111482878212, "sek": 14.046041191209655, "sgd": 2.2217349340956973, "thb": 51.95729263472743, "try": 13.442674028733546, "twd": 47.067967153666906, "uah": 46.63315481669569, "usd": 1.6651501655198562, "vef": 0.16673148607350322, "vnd": 38433.97122060235, "xag": 0.0641429997534657, "xau": 0.0009369133921314038, "xdr": 1.164985680002326, "xlm": 2.7902854134804764, "xrp": 1.0713341896817243, "yfi": 3.378741926481214e-05, "zar": 23.833244364580754, "bits": 27.62515070828999, "link": 0.04121588598265276, "sats": 2762.515070828999}, "market_cap": {"aed": 141287582.95210686, "ars": 3568785636.9333186, "aud": 49736244.93443056, "bch": 37804.167665906396, "bdt": 3261652884.6714406, "bhd": 14504263.497911008, "bmd": 38466011.33992362, "bnb": 74141.18227853412, "brl": 215440590.17668992, "btc": 638.5870941024929, "cad": 48115210.284543514, "chf": 35390692.19930806, "clp": 27033912769.698303, "cny": 250833013.34650788, "czk": 831904427.2485292, "dkk": 238727759.57783404, "dot": 901618.8684044954, "eos": 4884756.67556111, "eth": 16389.860243776362, "eur": 32103309.93817555, "gbp": 27806425.675438028, "hkd": 298934760.5270825, "huf": 11600964360.007559, "idr": 560719047302.0668, "ils": 126118126.72009447, "inr": 2867791162.8355355, "jpy": 4184525043.613592, "krw": 42953071562.725716, "kwd": 11598617.933315808, "lkr": 7728955194.612852, "ltc": 126299.07326810058, "mmk": 54267962042.30167, "mxn": 766091197.4765414, "myr": 158710762.78852484, "ngn": 14636317314.84095, "nok": 321998980.9265007, "nzd": 53847569.1584643, "php": 1859306894.9586115, "pkr": 5877606532.7403345, "pln": 145835650.2688935, "rub": 2908372804.7991543, "sar": 144307549.50240374, "sek": 324472345.4556575, "sgd": 51323467.96034986, "thb": 1200245989.2589982, "try": 310534186.24663633, "twd": 1087299509.5399544, "uah": 1077255072.3288126, "usd": 38466011.33992362, "vef": 3851601.715466553, "vnd": 887848797918.1396, "xag": 1481743.4529234995, "xau": 21643.28594052141, "xdr": 26911898.58172809, "xlm": 64357375.42361365, "xrp": 24750296.53732332, "yfi": 779.998549587346, "zar": 550562866.3279871, "bits": 638587094.1024928, "link": 948042.1420851995, "sats": 63858709410.249306}, "total_volume": {"aed": 15958679.571070077, "ars": 403189521.0720126, "aud": 5617795.841591335, "bch": 4276.119400551723, "bdt": 368409397.13840485, "bhd": 1638281.9264166537, "bmd": 4344803.248273257, "bnb": 8378.221897300455, "brl": 24347495.338738628, "btc": 72.08109335529197, "cad": 5434697.143102608, "chf": 3997440.573377064, "clp": 3053527722.8864465, "cny": 28332027.501665134, "czk": 93965059.85040554, "dkk": 26964717.91943351, "dot": 101810.70659522881, "eos": 552642.3328465661, "eth": 1850.9821912273485, "eur": 3626124.9981731293, "gbp": 3140784.4065215215, "hkd": 33765203.9636308, "huf": 1310349211.6467333, "idr": 63334196950.07931, "ils": 14245262.962081084, "inr": 323922026.89143974, "jpy": 472649421.3634065, "krw": 4851624547.184333, "kwd": 1310084.178648588, "lkr": 872999005.2402191, "ltc": 14273.618747212868, "mmk": 6129661213.764675, "mxn": 86531340.45678863, "myr": 17926658.202375464, "ngn": 1653197635.9679723, "nok": 36370347.991295464, "nzd": 6082177.102373281, "php": 210011965.24809936, "pkr": 663885936.3361539, "pln": 16472391.72793295, "rub": 328505794.3183679, "sar": 16297704.568532825, "sek": 36649718.84015944, "sgd": 5797075.458024839, "thb": 135569883.41671342, "try": 35075379.38314765, "twd": 122812381.01731575, "uah": 121677844.26911081, "usd": 4344803.248273257, "vef": 435045.14924960135, "vnd": 100284074350.24377, "xag": 167365.5142062473, "xau": 2444.646995673435, "xdr": 3039746.0069829226, "xlm": 7280569.271849794, "xrp": 2795385.283382028, "yfi": 88.1600302557071, "zar": 62187038.54843773, "bits": 72081093.35529196, "link": 107542.80244868074, "sats": 7208109335.529197}}, "community_data": {"facebook_likes": null, "twitter_followers": 38270, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.091, "reddit_subscribers": 2229, "reddit_accounts_active_48h": "310.333333333333"}, "developer_data": {"forks": 38, "stars": 79, "subscribers": 29, "total_issues": 16, "closed_issues": 13, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 732301, "bing_matches": null}}, "QLC_20210423": {"id": "qlink", "symbol": "qlc", "name": "QLC Chain", "localization": {"en": "QLC Chain", "de": "QLC Chain", "es": "QLC Chain", "fr": "QLC Chain", "it": "QLC Chain", "pl": "QLC Chain", "ro": "QLC Chain", "hu": "QLC Chain", "nl": "QLC Chain", "pt": "QLC Chain", "sv": "QLC Chain", "vi": "QLC Chain", "tr": "QLC Chain", "ru": "QLC Chain", "ja": "QLC Chain", "zh": "QLC Chain", "zh-tw": "QLC Chain", "ko": "\ud050\ub9c1\ud06c", "ar": "QLC Chain", "th": "QLC Chain", "id": "QLC Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2053/thumb/QLC_Chain_logo.jpg?1547036348", "small": "https://assets.coingecko.com/coins/images/2053/small/QLC_Chain_logo.jpg?1547036348"}, "market_data": {"current_price": {"aed": 0.33224647710516275, "ars": 8.404075684425937, "aud": 0.11648435578808636, "bch": 0.00010102098962436719, "bdt": 7.682297077012694, "bhd": 0.034094791212027666, "bmd": 0.09045150743361711, "bnb": 0.00017804060828857177, "brl": 0.5016259699253541, "btc": 1.6157370898961856e-06, "cad": 0.11328599048523368, "chf": 0.08276312930175966, "clp": 63.37032610799213, "cny": 0.5888664488450772, "czk": 1.9478279868292288, "dkk": 0.5585380584025851, "dot": 0.002593985906320834, "eos": 0.013607169125590391, "eth": 4.163938932127434e-05, "eur": 0.07510776597011538, "gbp": 0.06464053662688232, "hkd": 0.7024332912608916, "huf": 27.11736192859833, "idr": 1313.0981011399342, "ils": 0.2949750289520664, "inr": 6.772869219501765, "jpy": 9.778644630017768, "krw": 100.88335567475092, "kwd": 0.027243270426946072, "lkr": 17.514483934146774, "ltc": 0.0003450997291844261, "mmk": 127.81935220037607, "mxn": 1.792378116605317, "myr": 0.3729767909025203, "ngn": 36.96372633591066, "nok": 0.7497760625091848, "nzd": 0.12581931316126538, "php": 4.376599482797043, "pkr": 13.863099854239398, "pln": 0.34192026582518803, "rub": 6.91655541892639, "sar": 0.33926225782774405, "sek": 0.7592182953701799, "sgd": 0.12028340955180568, "thb": 2.8221225793712708, "try": 0.732901429282369, "twd": 2.5454862317453446, "uah": 2.537469876447532, "usd": 0.09045150743361711, "vef": 0.009056909439328069, "vnd": 2086.966858555807, "xag": 0.0035019359385561827, "xau": 5.106530303672279e-05, "xdr": 0.06326060842947506, "xlm": 0.18004438126386388, "xrp": 0.06852695569817624, "yfi": 1.9151298247584793e-06, "zar": 1.2860277739952009, "bits": 1.6157370898961856, "link": 0.002503204523705684, "sats": 161.57370898961855}, "market_cap": {"aed": 80040122.11585286, "ars": 2025151060.9897466, "aud": 28087367.09286245, "bch": 24197.68972596041, "bdt": 1850710356.7564046, "bhd": 8215792.116530282, "bmd": 21790297.86449218, "bnb": 42715.196332333726, "brl": 120838096.80754137, "btc": 388.90908188941967, "cad": 27304332.739101935, "chf": 19940214.414605327, "clp": 15266269021.346481, "cny": 141861376.1872033, "czk": 469463251.3713401, "dkk": 134616102.14725968, "dot": 616910.8264577631, "eos": 3222926.818605823, "eth": 9974.208333300057, "eur": 18102507.853905533, "gbp": 15578189.007495588, "hkd": 169220184.6709665, "huf": 6534692426.58257, "idr": 316333022643.51263, "ils": 71061211.97781017, "inr": 1631623859.8732731, "jpy": 2356686084.938422, "krw": 24310999521.456623, "kwd": 6563063.394402149, "lkr": 4219341752.242358, "ltc": 82532.60092411742, "mmk": 30792430511.30705, "mxn": 432265818.3375864, "myr": 89852293.24423353, "ngn": 8904778150.1286, "nok": 180731149.21116108, "nzd": 30334774.83401047, "php": 1054794995.2677528, "pkr": 3339701943.2846255, "pln": 82416354.09797557, "rub": 1665940179.723381, "sar": 81721526.8699707, "sek": 182992742.43621907, "sgd": 28981096.15977461, "thb": 680098272.276239, "try": 176555888.44704804, "twd": 614279370.15867, "uah": 611291353.7737018, "usd": 21790297.86449218, "vef": 2181862.5251716026, "vnd": 502938303647.64264, "xag": 844847.763324646, "xau": 12303.673786206857, "xdr": 15239851.052553581, "xlm": 43150266.290147975, "xrp": 16414488.849475607, "yfi": 453.59141426219134, "zar": 309943671.5036863, "bits": 388909081.8894197, "link": 596742.1961313528, "sats": 38890908188.94194}, "total_volume": {"aed": 4850990.654159166, "ars": 122704363.81208816, "aud": 1700738.9399795008, "bch": 1474.9648538383265, "bdt": 112165978.84728563, "bhd": 497803.6636117705, "bmd": 1320644.3031033324, "bnb": 2599.4958152567688, "brl": 7324029.176150465, "btc": 23.590695651481237, "cad": 1654040.9574217675, "chf": 1208389.537339549, "clp": 925243398.7541943, "cny": 8597790.60649362, "czk": 28439414.74517872, "dkk": 8154978.571663069, "dot": 37873.693946196625, "eos": 198672.53622348924, "eth": 607.959157918963, "eur": 1096616.8067463972, "gbp": 943789.2067026731, "hkd": 10255932.164476514, "huf": 395929162.0703779, "idr": 19171991444.79653, "ils": 4306805.962622405, "inr": 98887806.34157343, "jpy": 142773865.12527388, "krw": 1472955318.60081, "kwd": 397767.49894029985, "lkr": 255721591.4439161, "ltc": 5038.65556562886, "mmk": 1866236440.9313047, "mxn": 26169756.76650957, "myr": 5445676.7838465925, "ngn": 539691775.0963666, "nok": 10947163.995942324, "nzd": 1837034.7146369773, "php": 63900882.78144873, "pkr": 202409272.82821026, "pln": 4992233.562376066, "rub": 100985707.92540236, "sar": 4953425.108885076, "sek": 11085026.05474328, "sgd": 1756207.3213541436, "thb": 41204621.27003502, "try": 10700784.594755365, "twd": 37165570.65728967, "uah": 37048527.235282816, "usd": 1320644.3031033324, "vef": 132236.11406973648, "vnd": 30470922715.576984, "xag": 51130.289348480124, "xau": 745.582947760016, "xdr": 923641.4572145287, "xlm": 2628752.059178122, "xrp": 1000533.1720781897, "yfi": 27.96200267449127, "zar": 18776749.017763764, "bits": 23590695.651481237, "link": 36548.23327472546, "sats": 2359069565.1481237}}, "community_data": {"facebook_likes": null, "twitter_followers": 32666, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.333, "reddit_subscribers": 5635, "reddit_accounts_active_48h": "263.769230769231"}, "developer_data": {"forks": 11, "stars": 50, "subscribers": 21, "total_issues": 588, "closed_issues": 568, "pull_requests_merged": 446, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 707, "deletions": -211}, "commit_count_4_weeks": 25}, "public_interest_stats": {"alexa_rank": 940522, "bing_matches": null}}, "RDN_20210424": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 3.555192792331066, "ars": 89.9885188564131, "aud": 1.2530273705801067, "bch": 0.001025513060970726, "bdt": 82.05104474971455, "bhd": 0.364919266274139, "bmd": 0.9678734597438374, "bnb": 0.001667133641267226, "brl": 5.390279904131912, "btc": 1.7165768145648996e-05, "cad": 1.2207304011019142, "chf": 0.8866688764713301, "clp": 674.6078740319637, "cny": 6.290693551605075, "czk": 20.862609212124465, "dkk": 5.981457981216912, "dot": 0.027349659904567346, "eos": 0.14511122244319363, "eth": 0.00041574346863309825, "eur": 0.8042060577011538, "gbp": 0.6943156408287594, "hkd": 7.512314396289949, "huf": 290.46850400372375, "idr": 14076.025693419566, "ils": 3.145317739598735, "inr": 73.02531888958998, "jpy": 104.62808887176854, "krw": 1080.1860718972212, "kwd": 0.2915573616459345, "lkr": 187.41317466059368, "ltc": 0.0036990482303562193, "mmk": 1364.3923688010061, "mxn": 19.31652814752966, "myr": 3.9827992868458875, "ngn": 368.7597881624017, "nok": 8.092515820467991, "nzd": 1.3504206053402912, "php": 46.77258269734031, "pkr": 147.9878519948328, "pln": 3.66132011719197, "rub": 74.38881836899179, "sar": 3.630033607605758, "sek": 8.167342117640795, "sgd": 1.2863038279995596, "thb": 30.268790643298964, "try": 7.858648556390087, "twd": 27.139849322639037, "uah": 27.109162894597905, "usd": 0.9678734597438374, "vef": 0.09691316952415045, "vnd": 22362.486273221464, "xag": 0.03752322483497469, "xau": 0.0005447191831438323, "xdr": 0.6756105183457498, "xlm": 1.8465861113629316, "xrp": 0.7026926402026279, "yfi": 1.9823446359470625e-05, "zar": 13.838984772267155, "bits": 17.165768145648997, "link": 0.024949431654208185, "sats": 1716.5768145648997}, "market_cap": {"aed": 238260842.45024085, "ars": 6030745683.388168, "aud": 83971119.98844095, "bch": 68099.08062760434, "bdt": 5498872265.987908, "bhd": 24454363.27147868, "bmd": 64864652.74154439, "bnb": 111571.16650846718, "brl": 361270169.9093055, "btc": 1148.0764440767268, "cad": 81808078.41346867, "chf": 59415308.40007453, "clp": 45210662960.8564, "cny": 421587810.4936677, "czk": 1397878606.9725497, "dkk": 400810040.6042327, "dot": 1824384.8471290765, "eos": 9652276.742286952, "eth": 27833.75238678652, "eur": 53898634.549058825, "gbp": 46535069.440533265, "hkd": 503461921.12362766, "huf": 19467828227.31976, "idr": 943342860983.4648, "ils": 210791959.30725184, "inr": 4893995822.460593, "jpy": 7011950042.1768675, "krw": 72383128002.93527, "kwd": 19541060.420264885, "lkr": 12559999833.828747, "ltc": 246387.93292111452, "mmk": 91438437860.37228, "mxn": 1294300070.0240848, "myr": 266918046.03145486, "ngn": 24713432694.528397, "nok": 542192475.5462978, "nzd": 90511876.97694005, "php": 3133916886.458424, "pkr": 9917805404.182137, "pln": 245365532.7296744, "rub": 4985367480.409616, "sar": 243266058.51438934, "sek": 547285453.485606, "sgd": 86199609.99802937, "thb": 2028199442.9661446, "try": 526417521.72885996, "twd": 1818869792.3902953, "uah": 1816793734.314658, "usd": 64864652.74154439, "vef": 6494897.679010839, "vnd": 1498514215101.8635, "xag": 2513243.8891842924, "xau": 36490.90769281064, "xdr": 45277862.74109669, "xlm": 123840868.2260222, "xrp": 46823207.13980334, "yfi": 1323.4517261408557, "zar": 927746155.2317609, "bits": 1148076444.076727, "link": 1668398.1915218148, "sats": 114807644407.67268}, "total_volume": {"aed": 8326609.774201283, "ars": 210761926.1301455, "aud": 2934712.8441867256, "bch": 2401.852044555662, "bdt": 192171584.2443626, "bhd": 854676.6678609008, "bmd": 2266854.452303517, "bnb": 3904.59029457404, "brl": 12624563.548914276, "btc": 40.20391049721836, "cad": 2859070.1779678087, "chf": 2076665.3637552534, "clp": 1579997723.269634, "cny": 14733420.512746716, "czk": 48862274.40484771, "dkk": 14009160.515235726, "dot": 64055.58257591247, "eos": 339864.697562448, "eth": 973.7119283511244, "eur": 1883529.3644189907, "gbp": 1626155.2436133572, "hkd": 17594576.196810637, "huf": 680305689.6808101, "idr": 32967431013.46313, "ils": 7366642.250739765, "inr": 171032450.15062535, "jpy": 245049233.1484624, "krw": 2529901591.7272167, "kwd": 682855.9009396491, "lkr": 438940013.41057897, "ltc": 8663.533301644322, "mmk": 3195540578.9555182, "mxn": 45241201.102738075, "myr": 9328106.071228964, "ngn": 863671546.3276391, "nok": 18953464.7667885, "nzd": 3162817.340304222, "php": 109545970.35986698, "pkr": 346602045.7572079, "pln": 8575170.364896346, "rub": 174225899.49514353, "sar": 8501894.294725653, "sek": 19128715.284496106, "sgd": 3012649.567111373, "thb": 70892472.71411419, "try": 18405724.725478403, "twd": 63564185.64070726, "uah": 63492315.02029709, "usd": 2266854.452303517, "vef": 226980.1363091512, "vnd": 52375133404.77888, "xag": 87883.0682106529, "xau": 1275.7856857564207, "xdr": 1582346.0144681388, "xlm": 4324885.558090179, "xrp": 1645774.9967292482, "yfi": 46.42845321108315, "zar": 32412257.956403907, "bits": 40203910.497218356, "link": 58434.01289539722, "sats": 4020391049.7218356}}, "community_data": {"facebook_likes": null, "twitter_followers": 28809, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 4514, "reddit_accounts_active_48h": "366.5"}, "developer_data": {"forks": 380, "stars": 1790, "subscribers": 193, "total_issues": 2561, "closed_issues": 2208, "pull_requests_merged": 3841, "pull_request_contributors": 78, "code_additions_deletions_4_weeks": {"additions": 665, "deletions": -1074}, "commit_count_4_weeks": 88}, "public_interest_stats": {"alexa_rank": 626244, "bing_matches": null}}, "QLC_20210511": {"id": "qlink", "symbol": "qlc", "name": "QLC Chain", "localization": {"en": "QLC Chain", "de": "QLC Chain", "es": "QLC Chain", "fr": "QLC Chain", "it": "QLC Chain", "pl": "QLC Chain", "ro": "QLC Chain", "hu": "QLC Chain", "nl": "QLC Chain", "pt": "QLC Chain", "sv": "QLC Chain", "vi": "QLC Chain", "tr": "QLC Chain", "ru": "QLC Chain", "ja": "QLC Chain", "zh": "QLC Chain", "zh-tw": "QLC Chain", "ko": "\ud050\ub9c1\ud06c", "ar": "QLC Chain", "th": "QLC Chain", "id": "QLC Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2053/thumb/QLC_Chain_logo.jpg?1547036348", "small": "https://assets.coingecko.com/coins/images/2053/small/QLC_Chain_logo.jpg?1547036348"}, "market_data": {"current_price": {"aed": 0.2994781122751293, "ars": 7.641812832740178, "aud": 0.1039436916042102, "bch": 6.018765325035715e-05, "bdt": 6.908541530952187, "bhd": 0.030741717674347375, "bmd": 0.08153501559355533, "bnb": 0.00013043582942169843, "brl": 0.42686320239750186, "btc": 1.4227057717710672e-06, "cad": 0.09889015133772164, "chf": 0.0734970491512959, "clp": 56.69935224634483, "cny": 0.5244739878055446, "czk": 1.7185991354317343, "dkk": 0.4984969318374383, "dot": 0.002042060725442655, "eos": 0.00783208242182986, "eth": 2.3338743612354837e-05, "eur": 0.06703393153522597, "gbp": 0.058301775970203015, "hkd": 0.6331768782699518, "huf": 24.02898207566805, "idr": 1152.2120728603281, "ils": 0.26528314208534726, "inr": 5.975742060359479, "jpy": 8.853888461964596, "krw": 90.74602630515936, "kwd": 0.02455475915609272, "lkr": 16.059733507620876, "ltc": 0.0002346176476352207, "mmk": 126.97014073491897, "mxn": 1.623309162707545, "myr": 0.335312751628496, "ngn": 31.024073433347816, "nok": 0.6693209430074959, "nzd": 0.112012478282364, "php": 3.896010969121313, "pkr": 12.448358505746068, "pln": 0.3051488726096602, "rub": 6.010691229443499, "sar": 0.30577726297483976, "sek": 0.6773521420434611, "sgd": 0.1079992432798336, "thb": 2.530999191433092, "try": 0.6716120769456747, "twd": 2.2601180182471166, "uah": 2.262735781457764, "usd": 0.08153501559355533, "vef": 0.008164101111382696, "vnd": 1866.3851864391168, "xag": 0.0029703140952719777, "xau": 4.4519749214393106e-05, "xdr": 0.05685273567307424, "xlm": 0.12847916249922867, "xrp": 0.051493924723158425, "yfi": 1.5131991707036565e-06, "zar": 1.146325244734473, "bits": 1.4227057717710672, "link": 0.0016546570620782183, "sats": 142.27057717710673}, "market_cap": {"aed": 71863589.46529378, "ars": 1833750373.3098726, "aud": 24942613.415733144, "bch": 14521.880586062427, "bdt": 1657792579.9404452, "bhd": 7376866.915661842, "bmd": 19565366.04010178, "bnb": 31285.691043152616, "brl": 102431265.18292224, "btc": 341.44179117676777, "cad": 23729952.028567646, "chf": 17636553.55977041, "clp": 13605732124.543613, "cny": 125854217.05295463, "czk": 412399763.6615666, "dkk": 119620691.43257825, "dot": 491148.49826531066, "eos": 1895777.8793573417, "eth": 5603.092205768242, "eur": 16085646.124503633, "gbp": 13987201.920604581, "hkd": 151938860.8844484, "huf": 5766060464.439893, "idr": 276487970195.6983, "ils": 63658070.60173565, "inr": 1433955459.7620783, "jpy": 2124603366.731472, "krw": 21775665441.65205, "kwd": 5892227.375172874, "lkr": 3853737713.7378697, "ltc": 56346.742452863014, "mmk": 30468103324.165943, "mxn": 389533720.37049913, "myr": 80462567.83991861, "ngn": 7444621778.258719, "nok": 160612089.82319546, "nzd": 26878821.604427665, "php": 934897481.1888715, "pkr": 2987142260.172538, "pln": 73224360.67338279, "rub": 1442341958.261506, "sar": 73375150.94945394, "sek": 162539278.3781456, "sgd": 25915794.722567808, "thb": 607258091.9330554, "try": 161161876.60892245, "twd": 542344120.4852037, "uah": 542972286.1272881, "usd": 19565366.04010178, "vef": 1959080.101595391, "vnd": 447862909924.94086, "xag": 712764.7196116233, "xau": 10683.081165216385, "xdr": 13642538.432442166, "xlm": 30931593.292120416, "xrp": 12371994.587838098, "yfi": 363.34655588706624, "zar": 275075350.76760286, "bits": 341441791.17676777, "link": 398852.9997350285, "sats": 34144179117.676777}, "total_volume": {"aed": 6817106.537390123, "ars": 173952786.81243086, "aud": 2366100.194008638, "bch": 1370.0688885945478, "bdt": 157261120.94368413, "bhd": 699782.5748810126, "bmd": 1856005.046934416, "bnb": 2969.148358473903, "brl": 9716810.038397443, "btc": 32.3854613074795, "cad": 2251065.001199643, "chf": 1673034.5013924812, "clp": 1290663688.0001545, "cny": 11938752.464405628, "czk": 39120967.17953586, "dkk": 11347429.256452333, "dot": 46484.0165293069, "eos": 178283.94827794115, "eth": 531.2665438070117, "eur": 1525912.6933320842, "gbp": 1327140.12082055, "hkd": 14413187.673003856, "huf": 546978640.7775166, "idr": 26228135320.753723, "ils": 6038716.580756279, "inr": 136027537.89234707, "jpy": 201543613.51099768, "krw": 2065677937.0865986, "kwd": 558947.0559145804, "lkr": 365572340.0011478, "ltc": 5340.669097085067, "mmk": 2890257888.5703855, "mxn": 36951854.08118358, "myr": 7632820.755517779, "ngn": 706209920.3585455, "nok": 15235945.430284623, "nzd": 2549772.3094583144, "php": 88686019.97511059, "pkr": 283365570.5407121, "pln": 6946191.688404392, "rub": 136823095.89566502, "sar": 6960495.919301116, "sek": 15418761.927407665, "sgd": 2458417.885043155, "thb": 57613863.674272075, "try": 15288099.17210348, "twd": 51447717.49900325, "uah": 51507306.397040136, "usd": 1856005.046934416, "vef": 185841.78534954312, "vnd": 42485063629.86988, "xag": 67614.11537941713, "xau": 1013.4158757271304, "xdr": 1294155.199126429, "xlm": 2924608.1856802087, "xrp": 1172171.0418142998, "yfi": 34.44538861491244, "zar": 26094131.756365046, "bits": 32385461.3074795, "link": 37665.435344634774, "sats": 3238546130.74795}}, "community_data": {"facebook_likes": null, "twitter_followers": 33426, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 2.417, "reddit_subscribers": 5639, "reddit_accounts_active_48h": "261.307692307692"}, "developer_data": {"forks": 12, "stars": 50, "subscribers": 21, "total_issues": 589, "closed_issues": 570, "pull_requests_merged": 448, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 559, "deletions": -260}, "commit_count_4_weeks": 16}, "public_interest_stats": {"alexa_rank": 940522, "bing_matches": null}}, "NAV_20200220": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.4496123792372171, "ars": 7.505869514750488, "aud": 0.1819216740791063, "bch": 0.000294040181855259, "bdt": 10.391877215470865, "bhd": 0.046142476910779946, "bmd": 0.1224107221971729, "bnb": 0.0051875625851403396, "brl": 0.5260874986441223, "btc": 1.2304518894258473e-05, "cad": 0.1621409582470977, "chf": 0.12015775285513391, "clp": 96.949356735433, "cny": 0.8552959570638665, "czk": 2.8096321012306147, "dkk": 0.8435615428233241, "eos": 0.027853525101622475, "eth": 0.0004674733567220249, "eur": 0.11291238461900543, "gbp": 0.09378962641880749, "hkd": 0.950851602971813, "huf": 37.91881577044186, "idr": 1673.6872506256934, "ils": 0.41950986889882075, "inr": 8.755789363301215, "jpy": 13.439962832916438, "krw": 144.85210436060441, "kwd": 0.0373219275014183, "lkr": 22.212343500682735, "ltc": 0.0016217197187135875, "mmk": 177.13532731752971, "mxn": 2.270080524841301, "myr": 0.5069640059795911, "ngn": 44.568698319601644, "nok": 1.1313443766907108, "nzd": 0.18985768360987104, "php": 6.18252367547207, "pkr": 18.89273045881329, "pln": 0.47974598189905066, "rub": 7.776447154380896, "sar": 0.45913813681715593, "sek": 1.1883632910901543, "sgd": 0.17020292841100423, "thb": 3.8146388197560674, "try": 0.7414062452388392, "twd": 3.6759202963263333, "uah": 2.9955529336038973, "usd": 0.1224107221971729, "vef": 30417.55174379355, "vnd": 2844.4656553696823, "xag": 0.006901052580839476, "xau": 7.733297374806398e-05, "xdr": 0.0894965599806304, "xlm": 1.6366314210999369, "xrp": 0.4117286239638554, "zar": 1.8244438010396022, "bits": 12.304518894258473, "link": 0.027208517240186293, "sats": 1230.4518894258472}, "market_cap": {"aed": 31029647.517013602, "ars": 518049904.5477015, "aud": 12554430.502507504, "bch": 20335.589723063702, "bdt": 717187297.1629581, "bhd": 3184487.0386632015, "bmd": 8448080.474397546, "bnb": 357663.72502615396, "brl": 36307518.20874971, "btc": 847.4666485137433, "cad": 11189651.549949009, "chf": 8293565.082520807, "clp": 6690884213.205504, "cny": 59027583.08266303, "czk": 193790940.40622926, "dkk": 58219524.1852869, "eos": 1919909.9376360637, "eth": 32301.192210578134, "eur": 7792788.216239946, "gbp": 6472902.363322446, "hkd": 65622323.66258724, "huf": 2617113954.002669, "idr": 115512975043.67659, "ils": 28952146.255232587, "inr": 604273970.6975691, "jpy": 927831588.1236207, "krw": 9996854953.22148, "kwd": 2575743.7039195453, "lkr": 1532967554.2349093, "ltc": 112127.03675909914, "mmk": 12224856394.743256, "mxn": 156659937.1051569, "myr": 34987725.284717456, "ngn": 3075873937.224734, "nok": 78067022.0478128, "nzd": 13104299.164425027, "php": 426705642.68007255, "pkr": 1303867050.47021, "pln": 33108534.263992433, "rub": 536685432.33729005, "sar": 31687060.243370287, "sek": 82036521.6203179, "sgd": 11746886.938040296, "thb": 263140481.14139572, "try": 51169347.58698794, "twd": 253690770.90171248, "uah": 206735748.25937745, "usd": 8448080.474397546, "vef": 2099243598545.2764, "vnd": 196317703643.3165, "xag": 476458.8131928957, "xau": 5340.960956718868, "xdr": 6176535.252200112, "xlm": 112817683.03799604, "xrp": 28361813.980276223, "zar": 125906812.1582311, "bits": 847466648.5137433, "link": 1873970.9463430168, "sats": 84746664851.37433}, "total_volume": {"aed": 2628109.6602406814, "ars": 43873899.143275484, "aud": 1063382.8851989938, "bch": 1718.7468097381206, "bdt": 60743418.46269459, "bhd": 269715.637105873, "bmd": 715524.7861929837, "bnb": 30322.749044944278, "brl": 3075128.046216453, "btc": 71.92334211410409, "cad": 947759.0884237059, "chf": 702355.5525031019, "clp": 566696009.1774552, "cny": 4999443.233608996, "czk": 16423082.65509448, "dkk": 4930852.312079754, "eos": 162811.6167875988, "eth": 2732.5120513598963, "eur": 660004.3559331252, "gbp": 548226.5048836297, "hkd": 5557992.614583034, "huf": 221646045.8678935, "idr": 9783168423.995543, "ils": 2452152.0979688154, "inr": 51180029.00134507, "jpy": 78560328.37527268, "krw": 846700919.1831968, "kwd": 218157.06758716534, "lkr": 129837338.1750883, "ltc": 9479.403717007764, "mmk": 1035405354.4586214, "mxn": 13269253.322119864, "myr": 2963345.9020182393, "ngn": 260516462.6401417, "nok": 6613023.178952791, "nzd": 1109771.07261267, "php": 36138573.90612945, "pkr": 110433274.79409526, "pln": 2804248.965808235, "rub": 45455500.854874745, "sar": 2683790.3680526423, "sek": 6946314.624361484, "sgd": 994883.55084238, "thb": 22297627.01271322, "try": 4333726.127782907, "twd": 21486778.58345398, "uah": 17509841.73505837, "usd": 715524.7861929837, "vef": 177799067086.09024, "vnd": 16626694486.887709, "xag": 40338.575606620725, "xau": 452.03278367741746, "xdr": 523132.3351070554, "xlm": 9566566.77323563, "xrp": 2406668.552749319, "zar": 10664382.475885151, "bits": 71923342.11410409, "link": 159041.36607864924, "sats": 7192334211.410409}}, "community_data": {"facebook_likes": null, "twitter_followers": 49711, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.917, "reddit_subscribers": 14022, "reddit_accounts_active_48h": "365.307692307692"}, "developer_data": {"forks": 78, "stars": 89, "subscribers": 24, "total_issues": 307, "closed_issues": 241, "pull_requests_merged": 279, "pull_request_contributors": 25, "code_additions_deletions_4_weeks": {"additions": 101, "deletions": -3}, "commit_count_4_weeks": 9}, "public_interest_stats": {"alexa_rank": 1012653, "bing_matches": null}}, "NXS_20200303": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.6431837567540704, "ars": 10.87837333418885, "aud": 0.2690425571823482, "bch": 0.0005551996665673066, "bdt": 14.849683860239177, "bhd": 0.06600925026163562, "bmd": 0.17511128689193325, "bnb": 0.009208412500662996, "brl": 0.7832822422771091, "btc": 2.0071406582001128e-05, "cad": 0.23455281322740035, "chf": 0.16891760067456565, "clp": 143.22330616202933, "cny": 1.2243606068197075, "czk": 4.042198902098629, "dkk": 1.1865190577223614, "eos": 0.049783470020055134, "eth": 0.0007684725283738967, "eur": 0.15879669362607246, "gbp": 0.13657629709849453, "hkd": 1.365009992451309, "huf": 53.718913294973376, "idr": 2447.4422007999483, "ils": 0.6114842360444586, "inr": 12.63865713142528, "jpy": 18.926909148840327, "krw": 210.18870432569054, "kwd": 0.05358090178576749, "lkr": 31.84672521115729, "ltc": 0.0029110415102073, "mmk": 251.53016243855018, "mxn": 3.4344573195889176, "myr": 0.7378314073191617, "ngn": 64.0031753590016, "nok": 1.6454332072800515, "nzd": 0.2802326937486036, "php": 8.924357441146244, "pkr": 27.01967156742523, "pln": 0.6881208151962784, "rub": 11.68577277845314, "sar": 0.6569678168130565, "sek": 1.6827144002593442, "sgd": 0.24398780936513714, "thb": 5.520678732009191, "try": 1.0931672306802722, "twd": 5.277679075635974, "uah": 4.307924676395966, "usd": 0.17511128689193325, "vef": 43512.990809563795, "vnd": 4057.106621866908, "xag": 0.010501450141602283, "xau": 0.00011037964857946121, "xdr": 0.1276475476911616, "xlm": 2.9942223230447604, "xrp": 0.7386885880256084, "zar": 2.743906309953156, "bits": 20.071406582001128, "link": 0.041826238014806866, "sats": 2007.1406582001127}, "market_cap": {"aed": 38540878.723813, "ars": 651854253.1316508, "aud": 16121577.168302407, "bch": 33054.559366683556, "bdt": 889823256.1604868, "bhd": 3955408.5162574714, "bmd": 10493024.427937128, "bnb": 549378.7753894248, "brl": 46935864.88948184, "btc": 1198.8213917593296, "cad": 14054881.570000362, "chf": 10121886.153920988, "clp": 8582231773.18973, "cny": 73366177.49769361, "czk": 242216778.68472958, "dkk": 71098634.91881627, "eos": 2953760.709160609, "eth": 45776.49113312984, "eur": 9515420.821059506, "gbp": 8186510.756334544, "hkd": 81794174.7182127, "huf": 3218946530.809595, "idr": 146655713944.9658, "ils": 36641378.97674576, "inr": 757334038.0863615, "jpy": 1134138887.1563194, "krw": 12594934616.2193, "kwd": 3210676.6005090536, "lkr": 1908320540.164269, "ltc": 173555.21299515266, "mmk": 15072198860.942135, "mxn": 205799667.11908156, "myr": 44212358.42711301, "ngn": 3835200428.4110203, "nok": 98597704.03711118, "nzd": 16792112.90832092, "php": 534765647.0104092, "pkr": 1619073669.2307, "pln": 41233598.65251032, "rub": 700235269.8104697, "sar": 39366847.63468252, "sek": 100831668.93781897, "sgd": 14620245.726177637, "thb": 330810296.8229276, "try": 65504803.59628311, "twd": 316249263.23359656, "uah": 258139607.47734264, "usd": 10493024.427937128, "vef": 2607386900075.31, "vnd": 243110079570.52493, "xag": 629268.2488970533, "xau": 6614.17301790589, "xdr": 7648900.649769189, "xlm": 178503407.98532566, "xrp": 44055304.386535004, "zar": 164420446.27356103, "bits": 1198821391.7593296, "link": 2498190.082698656, "sats": 119882139175.93295}, "total_volume": {"aed": 220591.70028274515, "ars": 3730938.2348359623, "aud": 92273.09383057784, "bch": 190.41593814895464, "bdt": 5092972.229153964, "bhd": 22639.086570046988, "bmd": 60057.636886127235, "bnb": 3158.194449246375, "brl": 268641.05290403875, "btc": 6.883858086426856, "cad": 80444.20172712325, "chf": 57933.39826946494, "clp": 49121067.33827009, "cny": 419916.9913441128, "czk": 1386346.4668246058, "dkk": 406938.53601302096, "eos": 17074.156774605974, "eth": 263.56178910686583, "eur": 54462.2470303574, "gbp": 46841.353312966115, "hkd": 468155.28529105044, "huf": 18423889.435395867, "idr": 839395321.7084064, "ils": 209719.7665654341, "inr": 4334659.942256232, "jpy": 6491331.63951487, "krw": 72088082.4189717, "kwd": 18376.555849690973, "lkr": 10922420.2088373, "ltc": 998.3952324464773, "mmk": 86266895.92525025, "mxn": 1177910.3121323413, "myr": 253052.85301969742, "ngn": 21951066.281879503, "nok": 564331.5850004947, "nzd": 96110.95700051208, "php": 3060772.5415959987, "pkr": 9266893.371529408, "pln": 236003.6910604632, "rub": 4007850.725780139, "sar": 225319.19722787378, "sek": 577117.8558935513, "sgd": 83680.10720254759, "thb": 1893418.320068591, "try": 374921.8097890266, "twd": 1810077.1181109878, "uah": 1477482.0089549269, "usd": 60057.636886127235, "vef": 14923580588.39986, "vnd": 1391459343.5359511, "xag": 3601.665492706587, "xau": 37.85673083480144, "xdr": 43779.074465779326, "xlm": 1026923.622260482, "xrp": 253346.83891019766, "zar": 941073.1411871733, "bits": 6883858.086426856, "link": 14345.07769082999, "sats": 688385808.6426857}}, "community_data": {"facebook_likes": null, "twitter_followers": 23412, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 3532, "reddit_accounts_active_48h": "1358.75"}, "developer_data": {"forks": 7, "stars": 21, "subscribers": 11, "total_issues": 32, "closed_issues": 29, "pull_requests_merged": 76, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 17669, "deletions": -15596}, "commit_count_4_weeks": 74}, "public_interest_stats": {"alexa_rank": 558466, "bing_matches": null}}, "CFX_20210512": {"id": "conflux-token", "symbol": "cfx", "name": "Conflux", "localization": {"en": "Conflux", "de": "Conflux", "es": "Conflux", "fr": "Conflux", "it": "Conflux", "pl": "Conflux", "ro": "Conflux", "hu": "Conflux", "nl": "Conflux", "pt": "Conflux", "sv": "Conflux", "vi": "Conflux", "tr": "Conflux", "ru": "Conflux", "ja": "Conflux", "zh": "Conflux", "zh-tw": "Conflux", "ko": "Conflux", "ar": "Conflux", "th": "Conflux", "id": "Conflux"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13079/thumb/3vuYMbjN.png?1631512305", "small": "https://assets.coingecko.com/coins/images/13079/small/3vuYMbjN.png?1631512305"}, "market_data": {"current_price": {"aed": 3.26722714084668, "ars": 83.36560780219942, "aud": 1.133792393908433, "bch": 0.000633423119874431, "bdt": 75.36626040641825, "bhd": 0.33536576268741325, "bmd": 0.8894770611038536, "bnb": 0.0013793950580016422, "brl": 4.657757304195062, "btc": 1.5141968719264391e-05, "cad": 1.0794337822731925, "chf": 0.8012293734405569, "clp": 618.5423482916192, "cny": 5.721561195550545, "czk": 18.746840909090174, "dkk": 5.437551169940083, "dot": 0.022371692659809404, "eos": 0.08642925787699975, "eth": 0.00022757268645163192, "eur": 0.7312826763094721, "gbp": 0.6360223514964329, "hkd": 6.907572119285201, "huf": 262.1111003660832, "idr": 12569.64508898911, "ils": 2.8940114607781124, "inr": 65.19511067066802, "jpy": 96.58386667996194, "krw": 989.9612846967566, "kwd": 0.26788380649264815, "lkr": 175.1979129271019, "ltc": 0.0025724443994511155, "mmk": 1385.1352919562714, "mxn": 17.70779828016169, "myr": 3.6579744137896038, "ngn": 360.83684648820264, "nok": 7.310256174388131, "nzd": 1.2215579850046117, "php": 42.50067361139941, "pkr": 135.41547054071154, "pln": 3.328912375034223, "rub": 65.57148399430356, "sar": 3.335873422514431, "sek": 7.389553054385549, "sgd": 1.1782013151381656, "thb": 27.611029519813698, "try": 7.326711500018556, "twd": 24.65594834297442, "uah": 24.684505893498123, "usd": 0.8894770611038536, "vef": 0.0890633381283289, "vnd": 20361.095845607942, "xag": 0.03240357817784846, "xau": 0.00048567226490392565, "xdr": 0.6199157008739646, "xlm": 1.440024623656434, "xrp": 0.5682401881729114, "yfi": 1.6391642851846614e-05, "zar": 12.508320093011303, "bits": 15.14196871926439, "link": 0.018329737218373547, "sats": 1514.1968719264391}, "market_cap": {"aed": 2709045578.120428, "ars": 69123211043.52287, "aud": 940092359.3051039, "bch": 528101.0612585731, "bdt": 62490492913.99163, "bhd": 278071005.5640291, "bmd": 737516491.9199696, "bnb": 1145974.1020880148, "brl": 3862013960.136831, "btc": 12573.596885783078, "cad": 895020513.9343991, "chf": 664345268.2071139, "clp": 512868968481.14716, "cny": 4744074834.275204, "czk": 15544081962.828318, "dkk": 4508585818.405159, "dot": 18672164.331430692, "eos": 71816685.24704096, "eth": 189439.45882699144, "eur": 606348446.315511, "gbp": 527362642.5803578, "hkd": 5727464574.271454, "huf": 217331359838.9763, "idr": 10422214305567.059, "ils": 2399591033.275733, "inr": 54057008791.76613, "jpy": 80083228275.12994, "krw": 820833730012.169, "kwd": 222117841.87153786, "lkr": 145266646869.27777, "ltc": 2138137.663044305, "mmk": 1148495184451.8186, "mxn": 14682552072.791904, "myr": 3033036573.0208755, "ngn": 299190543314.49603, "nok": 6061353040.493466, "nzd": 1012863849.0793391, "php": 35239748248.49937, "pkr": 112280740169.88818, "pln": 2760192346.8350797, "rub": 54369081520.1571, "sar": 2765964150.900843, "sek": 6127102635.748136, "sgd": 976914345.1971918, "thb": 22893889590.002815, "try": 6074997095.593983, "twd": 20443662149.424755, "uah": 20467340853.91439, "usd": 737516491.9199696, "vef": 73847526.33594659, "vnd": 16882553397232.37, "xag": 26867666.79932516, "xau": 402698.7549181424, "xdr": 514007693.9446718, "xlm": 1195684086.1713803, "xrp": 470464263.4461665, "yfi": 13665.453011478414, "zar": 10371366231.031631, "bits": 12573596885.78308, "link": 15293349.611585656, "sats": 1257359688578.3079}, "total_volume": {"aed": 65346794.8121792, "ars": 1667369617.2930303, "aud": 22676629.365029074, "bch": 12668.898995800555, "bdt": 1507377155.6829112, "bhd": 6707546.410649989, "bmd": 17790154.310187057, "bnb": 27588.85193296001, "brl": 93158356.52714624, "btc": 302.84981126037934, "cad": 21589419.664670605, "chf": 16025139.730610467, "clp": 12371273307.304068, "cny": 114435167.60027838, "czk": 374949739.7800815, "dkk": 108754771.32903562, "dot": 447449.2732889254, "eos": 1728644.7304651171, "eth": 4551.610587612046, "eur": 14626157.575965976, "gbp": 12720885.41980788, "hkd": 138156203.5543956, "huf": 5242402672.125915, "idr": 251401565634.40845, "ils": 57882223.965167776, "inr": 1303947150.3194697, "jpy": 1931743905.7716615, "krw": 19799908042.6089, "kwd": 5357860.773599047, "lkr": 3504079016.863985, "ltc": 51450.66109272994, "mmk": 27703660568.612396, "mxn": 354168171.0226361, "myr": 73162009.6006444, "ngn": 7216985643.069769, "nok": 146210162.21370333, "nzd": 24432001.68096955, "php": 850042766.5839608, "pkr": 2708402748.370113, "pln": 66580542.013590485, "rub": 1311474876.2142835, "sar": 66719767.76122219, "sek": 147796154.4704567, "sgd": 23564838.399273798, "thb": 552239621.7964565, "try": 146539280.06844187, "twd": 493135961.41666186, "uah": 493707132.11094284, "usd": 17790154.310187057, "vef": 1781328.1510790307, "vnd": 407235951164.77203, "xag": 648093.8983077689, "xau": 9713.780056448326, "xdr": 12398741.305559019, "xlm": 28801485.036077693, "xrp": 11365195.43325863, "yfi": 327.84415527246307, "zar": 250175023.44549254, "bits": 302849811.2603794, "link": 366607.3784695059, "sats": 30284981126.037937}}, "community_data": {"facebook_likes": null, "twitter_followers": 33410, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 144382, "bing_matches": null}}, "MTH_20210514": {"id": "monetha", "symbol": "mth", "name": "Monetha", "localization": {"en": "Monetha", "de": "Monetha", "es": "Monetha", "fr": "Monetha", "it": "Monetha", "pl": "Monetha", "ro": "Monetha", "hu": "Monetha", "nl": "Monetha", "pt": "Monetha", "sv": "Monetha", "vi": "Monetha", "tr": "Monetha", "ru": "Monetha", "ja": "Monetha", "zh": "Monetha", "zh-tw": "Monetha", "ko": "Monetha", "ar": "Monetha", "th": "Monetha", "id": "Monetha"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/902/thumb/mth_logo_coingecko.png?1622448039", "small": "https://assets.coingecko.com/coins/images/902/small/mth_logo_coingecko.png?1622448039"}, "market_data": {"current_price": {"aed": 0.18267451915887448, "ars": 4.667056411832705, "aud": 0.06344716925927825, "bch": 3.692747918126905e-05, "bdt": 4.218005025601182, "bhd": 0.018746418020106903, "bmd": 0.04973171054091098, "bnb": 7.822929691489934e-05, "brl": 0.25980840220782747, "btc": 8.900006124783372e-07, "cad": 0.06015373646041698, "chf": 0.044787383878933634, "clp": 34.66300224701498, "cny": 0.31909108775812045, "czk": 1.0472503108387898, "dkk": 0.30461184942926556, "dot": 0.001352662501791902, "eos": 0.005301074603200839, "eth": 1.24682929529802e-05, "eur": 0.040959036801494285, "gbp": 0.03520080096480435, "hkd": 0.38619781466926195, "huf": 14.656210659814603, "idr": 706.1206652861788, "ils": 0.16178511199984863, "inr": 3.6552932571480095, "jpy": 5.411506350798685, "krw": 55.528955632958905, "kwd": 0.014958204433074088, "lkr": 9.799483372320685, "ltc": 0.0001371457572585128, "mmk": 77.48076217756116, "mxn": 0.9902735852428574, "myr": 0.20427300104679205, "ngn": 18.922915860816666, "nok": 0.41105979086629474, "nzd": 0.06842690489916078, "php": 2.3808211479699044, "pkr": 7.571652929853691, "pln": 0.18690459899406262, "rub": 3.696015968861013, "sar": 0.18649928555315462, "sek": 0.41469085224801844, "sgd": 0.06594897268974934, "thb": 1.5467854505380259, "try": 0.41158460960763343, "twd": 1.3799057226469496, "uah": 1.3803476883585242, "usd": 0.04973171054091098, "vef": 0.004979636176461413, "vnd": 1149.1683491084202, "xag": 0.0018199418935867465, "xau": 2.709433321979372e-05, "xdr": 0.03445482530669067, "xlm": 0.07430011770304759, "xrp": 0.03544839658644963, "yfi": 8.076264997703999e-07, "zar": 0.6982402281655766, "bits": 0.8900006124783372, "link": 0.0010581125236432452, "sats": 89.00006124783373}, "market_cap": {"aed": 63487414.81909996, "ars": 1622006986.8883445, "aud": 22050676.648329675, "bch": 12833.920131827053, "bdt": 1465941916.8170347, "bhd": 6515203.229738231, "bmd": 17283952.635059312, "bnb": 27188.114944062083, "brl": 90294825.35607699, "btc": 309.31428386310995, "cad": 20906064.169025514, "chf": 15565582.064081721, "clp": 12046914986.636349, "cny": 110898161.09469946, "czk": 363965457.30512536, "dkk": 105865990.13685974, "dot": 470109.6012565146, "eos": 1842356.141787372, "eth": 4333.279159221255, "eur": 14235063.390234848, "gbp": 12233823.650431866, "hkd": 134220694.68163252, "huf": 5093676611.933539, "idr": 245407929884.1532, "ils": 56227428.78636418, "inr": 1270374874.2329218, "jpy": 1880736022.031343, "krw": 19298749803.605503, "kwd": 5198632.705667858, "lkr": 3405750669.201483, "ltc": 47664.171346076844, "mmk": 26927966262.162098, "mxn": 344163543.8822851, "myr": 70993835.4485062, "ngn": 6576543977.640082, "nok": 142861322.85085645, "nzd": 23781353.393583443, "php": 827439866.9679375, "pkr": 2631481788.687778, "pln": 64957553.262332596, "rub": 1284527804.280235, "sar": 64816689.04835701, "sek": 144123276.0846001, "sgd": 22920163.169588976, "thb": 537575847.9432427, "try": 143043720.4030144, "twd": 479577816.48103935, "uah": 479731418.96810603, "usd": 17283952.635059312, "vef": 1730642.1773484878, "vnd": 399386449805.7018, "xag": 632509.703470523, "xau": 9416.470235106666, "xdr": 11974564.360905971, "xlm": 25822552.6769762, "xrp": 12319873.998401392, "yfi": 280.68566347355386, "zar": 242669132.03355435, "bits": 309314283.86310995, "link": 367740.5531058156, "sats": 30931428386.311}, "total_volume": {"aed": 9892765.53339383, "ars": 252745128.4720696, "aud": 3435990.811032058, "bch": 1999.8130826437673, "bdt": 228426684.4061495, "bhd": 1015215.0333709914, "bmd": 2693228.1208193987, "bnb": 4236.519114897867, "brl": 14069962.34878472, "btc": 48.19811446262871, "cad": 3257634.4719589157, "chf": 2425467.381047535, "clp": 1877180000.2111223, "cny": 17280424.930207487, "czk": 56713995.074986614, "dkk": 16496299.642515266, "dot": 73253.63733079305, "eos": 287080.4771566683, "eth": 675.2222442048642, "eur": 2218142.680306857, "gbp": 1906304.5691096613, "hkd": 20914599.625738148, "huf": 793709250.3824959, "idr": 38240068796.26632, "ils": 8761496.60706858, "inr": 197952945.57371202, "jpy": 293060924.73884195, "krw": 3007178783.9951944, "kwd": 810063.7677238153, "lkr": 530692467.6585382, "ltc": 7427.148716226961, "mmk": 4195982105.7726545, "mxn": 53628412.095069975, "myr": 11062434.50626569, "ngn": 1024773299.9717833, "nok": 22261003.614354398, "nzd": 3705669.1292259484, "php": 128933720.48965144, "pkr": 410043981.39475316, "pln": 10121846.130894449, "rub": 200158290.03398874, "sar": 10099896.321709795, "sek": 22457644.279139794, "sgd": 3571476.344878, "thb": 83766394.25736924, "try": 22289425.250713427, "twd": 74728997.9751479, "uah": 74752932.6934575, "usd": 2693228.1208193987, "vef": 269672.9317376462, "vnd": 62233381472.53899, "xag": 98559.22172701011, "xau": 1467.297612503617, "xdr": 1865906.1472973693, "xlm": 4023733.835043219, "xrp": 1919713.1465254384, "yfi": 43.7371322370111, "zar": 37813302.561469406, "bits": 48198114.46262871, "link": 57302.23981181742, "sats": 4819811446.262871}}, "community_data": {"facebook_likes": null, "twitter_followers": 21658, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.091, "reddit_subscribers": 2040, "reddit_accounts_active_48h": "23.8333333333333"}, "developer_data": {"forks": 2, "stars": 0, "subscribers": 3, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 350782, "bing_matches": null}}, "GUM_20210619": {"id": "gourmetgalaxy", "symbol": "gum", "name": "Gourmet Galaxy", "localization": {"en": "Gourmet Galaxy", "de": "Gourmet Galaxy", "es": "Gourmet Galaxy", "fr": "Gourmet Galaxy", "it": "Gourmet Galaxy", "pl": "Gourmet Galaxy", "ro": "Gourmet Galaxy", "hu": "Gourmet Galaxy", "nl": "Gourmet Galaxy", "pt": "Gourmet Galaxy", "sv": "Gourmet Galaxy", "vi": "Gourmet Galaxy", "tr": "Gourmet Galaxy", "ru": "Gourmet Galaxy", "ja": "Gourmet Galaxy", "zh": "Gourmet Galaxy", "zh-tw": "Gourmet Galaxy", "ko": "Gourmet Galaxy", "ar": "Gourmet Galaxy", "th": "Gourmet Galaxy", "id": "Gourmet Galaxy"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13846/thumb/gum.png?1612320864", "small": "https://assets.coingecko.com/coins/images/13846/small/gum.png?1612320864"}, "market_data": {"current_price": {"aed": 1.9906628942684974, "ars": 51.58874535284628, "aud": 0.7050828037316915, "bch": 0.000858293707900608, "bdt": 45.950962263066046, "bhd": 0.20431175010245275, "bmd": 0.5419424192171666, "bnb": 0.0014686187270167902, "brl": 2.7342452874613725, "btc": 1.3426986105520504e-05, "cad": 0.6603730960886942, "chf": 0.48701763891434474, "clp": 394.0466462555206, "cny": 3.4716831375051744, "czk": 11.378243674190175, "dkk": 3.323813064536923, "dot": 0.02246802755314326, "eos": 0.10375621564866125, "eth": 0.00021162771667190762, "eur": 0.446907396583244, "gbp": 0.3848474023890101, "hkd": 4.2071802917457495, "huf": 157.01962613433489, "idr": 7719.292333724521, "ils": 1.756625060529564, "inr": 39.74966527801419, "jpy": 59.654311795329654, "krw": 605.3229054325844, "kwd": 0.16307968696357197, "lkr": 107.29756459239753, "ltc": 0.003080201644505527, "mmk": 891.9764540279891, "mxn": 10.857090166174181, "myr": 2.2311769399170744, "ngn": 223.13694378643876, "nok": 4.508304093674737, "nzd": 0.7608183298936609, "php": 26.043667815090263, "pkr": 84.40736108121172, "pln": 2.0232721115752144, "rub": 39.152304910892646, "sar": 2.0324558678112696, "sek": 4.510640949386407, "sgd": 0.7194670394225527, "thb": 16.886925782806923, "try": 4.63828844098155, "twd": 14.944387375364878, "uah": 14.591630551387379, "usd": 0.5419424192171666, "vef": 0.05426469443621488, "vnd": 12429.615745894023, "xag": 0.01956966540468828, "xau": 0.00029165173232591045, "xdr": 0.37619095612685455, "xlm": 1.6113796240109253, "xrp": 0.6210842583878274, "yfi": 1.3821097108952493e-05, "zar": 7.464145842757073, "bits": 13.426986105520504, "link": 0.021889091078449836, "sats": 1342.6986105520502}, "market_cap": {"aed": 6544020.404697899, "ars": 169608103.28054282, "aud": 2318454.2159204166, "bch": 2818.155139175011, "bdt": 151057236.02463898, "bhd": 671645.7444600628, "bmd": 1781558.4244522236, "bnb": 4817.292634067517, "brl": 8988441.490577638, "btc": 44.11622073045574, "cad": 2170918.0181162558, "chf": 1600838.9194342128, "clp": 1295371130.4192126, "cny": 11412663.267040951, "czk": 37406313.30316866, "dkk": 10927126.241832832, "dot": 73064.21754667419, "eos": 340366.3200635036, "eth": 694.1713305445988, "eur": 1469386.6310860058, "gbp": 1265310.895123427, "hkd": 13830683.438628698, "huf": 516243966.2119434, "idr": 25376072808.29134, "ils": 5774654.39909821, "inr": 130687198.08282606, "jpy": 196142456.29849198, "krw": 1989378855.479883, "kwd": 536101.2164108916, "lkr": 352725443.4131903, "ltc": 10093.884477528252, "mmk": 2932245400.502226, "mxn": 35703677.91691963, "myr": 7334676.0334698185, "ngn": 733530884.3022152, "nok": 14824294.203114225, "nzd": 2501977.893898513, "php": 85614124.47431134, "pkr": 277477163.41752976, "pln": 6652339.156904598, "rub": 128704056.32264726, "sar": 6681408.845716382, "sek": 14830618.735521037, "sgd": 2364840.6526178815, "thb": 55531176.09017582, "try": 15246772.967888791, "twd": 49127718.863608874, "uah": 47967904.73214778, "usd": 1781558.4244522236, "vef": 178387.44504040093, "vnd": 40860589353.3644, "xag": 64360.36585475018, "xau": 958.62095702925, "xdr": 1236674.1250087845, "xlm": 5292797.460294455, "xrp": 2037569.1978510513, "yfi": 45.34881767005152, "zar": 24536579.318429917, "bits": 44116220.73045577, "link": 71655.89530604582, "sats": 4411622073.045577}, "total_volume": {"aed": 1312362.4280567537, "ars": 34010344.647802144, "aud": 464832.1837668111, "bch": 565.8378511647437, "bdt": 30293585.408523653, "bhd": 134694.35996269417, "bmd": 357280.4170904805, "bnb": 968.200112649216, "brl": 1802575.8126536699, "btc": 8.851861426492476, "cad": 435356.90663726337, "chf": 321070.7613791942, "clp": 259778797.77456975, "cny": 2288738.3518816214, "czk": 7501209.540939763, "dkk": 2191253.675517644, "dot": 14812.249365869819, "eos": 68402.21892250302, "eth": 139.51747676379372, "eur": 294627.7231494937, "gbp": 253714.11346679486, "hkd": 2773621.4699359653, "huf": 103516601.63030371, "idr": 5089012940.932534, "ils": 1158070.8799362297, "inr": 26205324.56243286, "jpy": 39327641.91123467, "krw": 399064573.021939, "kwd": 107511.75126961603, "lkr": 70736885.08410129, "ltc": 2030.650654476134, "mmk": 588043504.6777624, "mxn": 7157634.400648875, "myr": 1470923.4771615078, "ngn": 147105038.31656632, "nok": 2972140.0463272855, "nzd": 501576.3309820639, "php": 17169522.387603924, "pkr": 55646312.418511, "pln": 1333860.3480335055, "rub": 25811509.364451494, "sar": 1339914.8219815216, "sek": 2973680.6394857834, "sgd": 474315.1205972261, "thb": 11132857.79653938, "try": 3057833.397086017, "twd": 9852221.86952024, "uah": 9619663.75867103, "usd": 357280.4170904805, "vef": 35774.4881632698, "vnd": 8194336041.054363, "xag": 12901.478035633165, "xau": 192.27402926141303, "xdr": 248007.27336460876, "xlm": 1062316.5187721269, "xrp": 409455.38680229185, "yfi": 9.111682652314817, "zar": 4920805.320566333, "bits": 8851861.426492477, "link": 14430.58028477788, "sats": 885186142.6492476}}, "community_data": {"facebook_likes": null, "twitter_followers": 19356, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 204785, "bing_matches": null}}, "DKA_20210623": {"id": "dkargo", "symbol": "dka", "name": "dKargo", "localization": {"en": "dKargo", "de": "dKargo", "es": "dKargo", "fr": "dKargo", "it": "dKargo", "pl": "dKargo", "ro": "dKargo", "hu": "dKargo", "nl": "dKargo", "pt": "dKargo", "sv": "dKargo", "vi": "dKargo", "tr": "dKargo", "ru": "dKargo", "ja": "dKargo", "zh": "dKargo", "zh-tw": "dKargo", "ko": "dKargo", "ar": "dKargo", "th": "dKargo", "id": "dKargo"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11875/thumb/bVD0g0dlmrEOPIkt943KZIBZ086eCshyY0jIQFti4zxYdOlFltU8tKa6uJlcA14HvNjX4bc7dxdMvlpoW5NFMND85oG4aiiCbFRhI6eowDfKEBY3BoSVY0IrBbA9SFGIxh_IYrkNC5uNdG-roZ0_TlGO3098now6Tbzga0p4IDqVk6lnaX3TuRC7pgnAYWZM15RD-uEIHr3O_3OoIIWP-.jpg?1595563347", "small": "https://assets.coingecko.com/coins/images/11875/small/bVD0g0dlmrEOPIkt943KZIBZ086eCshyY0jIQFti4zxYdOlFltU8tKa6uJlcA14HvNjX4bc7dxdMvlpoW5NFMND85oG4aiiCbFRhI6eowDfKEBY3BoSVY0IrBbA9SFGIxh_IYrkNC5uNdG-roZ0_TlGO3098now6Tbzga0p4IDqVk6lnaX3TuRC7pgnAYWZM15RD-uEIHr3O_3OoIIWP-.jpg?1595563347"}, "market_data": {"current_price": {"aed": 0.371384117666765, "ars": 9.642389189462314, "aud": 0.13520885346290254, "bch": 0.00018212862878777235, "bdt": 8.5704045197968, "bhd": 0.03811077872091178, "bmd": 0.10110917689874084, "bnb": 0.00030169305353361446, "brl": 0.5146608767911263, "btc": 2.839857045202584e-06, "cad": 0.12601843371951454, "chf": 0.09332882573638271, "clp": 75.69040424275158, "cny": 0.6524676294452633, "czk": 2.1802171814675457, "dkk": 0.6337932700179515, "dot": 0.00495691328020224, "eos": 0.022544712995474513, "eth": 4.6467859470269166e-05, "eur": 0.08522098195004954, "gbp": 0.073206481786703, "hkd": 0.7848589745847068, "huf": 30.330124231022964, "idr": 1465.021418674305, "ils": 0.33147228117775646, "inr": 7.496648922897915, "jpy": 11.141722156958785, "krw": 114.78419307429543, "kwd": 0.030466217183128697, "lkr": 20.098731418052733, "ltc": 0.0006601171490801412, "mmk": 166.45299474439074, "mxn": 2.0903867332518598, "myr": 0.4185919923607857, "ngn": 41.45476252848357, "nok": 0.8769300021604678, "nzd": 0.14578497447568764, "php": 4.903871619235847, "pkr": 15.858974396567483, "pln": 0.3880064663489171, "rub": 7.3607076345575795, "sar": 0.3791626488639391, "sek": 0.8704600259307179, "sgd": 0.13596504899692816, "thb": 3.1785105508431006, "try": 0.8838863135311015, "twd": 2.810279017312049, "uah": 2.749906525567457, "usd": 0.10110917689874084, "vef": 0.010124061882870924, "vnd": 2335.579341240045, "xag": 0.003918657025219657, "xau": 5.730463709913037e-05, "xdr": 0.07076105523422989, "xlm": 0.34597981253411964, "xrp": 0.13279462467007702, "yfi": 3.0300652595228475e-06, "zar": 1.4511805834486342, "bits": 2.839857045202584, "link": 0.00493840513766008, "sats": 283.9857045202584}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 62923688.48168716, "ars": 1633712010.59633, "aud": 22908464.230286956, "bch": 30858.09154531919, "bdt": 1452085424.5297134, "bhd": 6457117.183941889, "bmd": 17130948.92098967, "bnb": 51115.91695655584, "brl": 87199099.65017566, "btc": 481.1575712163074, "cad": 21351329.49716467, "chf": 15812722.40151951, "clp": 12824240970.631271, "cny": 110547726.48203823, "czk": 369394651.5832997, "dkk": 107383725.87107624, "dot": 839850.8504718867, "eos": 3819755.4228992597, "eth": 7873.059117572745, "eur": 14439008.738494264, "gbp": 12403389.471059848, "hkd": 132978819.6896931, "huf": 5138839271.624969, "idr": 248218884390.67978, "ils": 56161417.70461577, "inr": 1270158789.8927476, "jpy": 1887744307.8571513, "krw": 19447909762.553505, "kwd": 5161897.528872625, "lkr": 3405332254.3034124, "ltc": 111843.78618853193, "mmk": 28202165601.32467, "mxn": 354174660.01444656, "myr": 70922128.532897, "ngn": 7023689057.605736, "nok": 148578433.08663526, "nzd": 24700378.61837138, "php": 830863990.796333, "pkr": 2686989338.257227, "pln": 65740016.484297715, "rub": 1247126229.0684805, "sar": 64241606.644076765, "sek": 147482223.66518125, "sgd": 23036586.597267028, "thb": 538535705.2787758, "try": 149757042.37239942, "twd": 476146159.78444684, "uah": 465917235.921826, "usd": 17130948.92098967, "vef": 1715321.9154586962, "vnd": 395717694703.142, "xag": 663938.8767366306, "xau": 9709.136610460107, "xdr": 11989060.340456763, "xlm": 58619431.76682508, "xrp": 22499420.942605007, "yfi": 513.3845886228121, "zar": 245873828.7928851, "bits": 481157571.2163074, "link": 836715.0120224286, "sats": 48115757121.63074}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 502055, "bing_matches": null}}, "STORJ_20210629": {"id": "storj", "symbol": "storj", "name": "Storj", "localization": {"en": "Storj", "de": "Storj", "es": "Storj", "fr": "Storj", "it": "Storj", "pl": "Storj", "ro": "Storj", "hu": "Storj", "nl": "Storj", "pt": "Storj", "sv": "Storj", "vi": "Storj", "tr": "Storj", "ru": "Storj", "ja": "\u30b9\u30c8\u30ec\u30fc\u30b8", "zh": "Storj", "zh-tw": "Storj", "ko": "\uc2a4\ud1a0\ub9ac\uc9c0", "ar": "Storj", "th": "Storj", "id": "Storj"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/949/thumb/storj.png?1547034811", "small": "https://assets.coingecko.com/coins/images/949/small/storj.png?1547034811"}, "market_data": {"current_price": {"aed": 2.2985306215972976, "ars": 59.76859403744821, "aud": 0.8248089447768453, "bch": 0.0013596458515942097, "bdt": 53.04087022096378, "bhd": 0.2358724645771069, "bmd": 0.6257825571656516, "bnb": 0.0022002379352496935, "brl": 3.087924028333907, "btc": 1.9684674035660294e-05, "cad": 0.7691368253611601, "chf": 0.5737368476687431, "clp": 458.82476590812183, "cny": 4.040177345572883, "czk": 13.358110910897302, "dkk": 3.898756745479013, "dot": 0.04242914493386488, "eos": 0.17351962274494784, "eth": 0.0003412513327811133, "eur": 0.5242155450074392, "gbp": 0.45075430483920614, "hkd": 4.856904934406488, "huf": 184.05985908274042, "idr": 9047.251320222418, "ils": 2.034907203740121, "inr": 46.42295935339318, "jpy": 69.33356474156172, "krw": 705.4634501695547, "kwd": 0.18856142590771158, "lkr": 124.54425266280765, "ltc": 0.00489532375439876, "mmk": 1030.148784396983, "mxn": 12.400225550643851, "myr": 2.6007523075804415, "ngn": 257.35307663437527, "nok": 5.313644849404992, "nzd": 0.8855636701218299, "php": 30.378715614380823, "pkr": 98.62333100930672, "pln": 2.3672102572462217, "rub": 45.188384235488904, "sar": 2.346665190111915, "sek": 5.3147712580078865, "sgd": 0.8402382395063217, "thb": 19.907617487144112, "try": 5.485547317858397, "twd": 17.44731831982413, "uah": 17.108194862227464, "usd": 0.6257825571656516, "vef": 0.06265960744899683, "vnd": 14420.37829730632, "xag": 0.023967190337293737, "xau": 0.0003513080697672266, "xdr": 0.43820924191570515, "xlm": 2.536232415270125, "xrp": 1.0089709467724468, "yfi": 2.1773306990608064e-05, "zar": 8.856694273739908, "bits": 19.684674035660294, "link": 0.0362961124555337, "sats": 1968.4674035660294}, "market_cap": {"aed": 329610171.1825036, "ars": 8570839268.754515, "aud": 118277918.4781233, "bch": 194794.48532791954, "bdt": 7606081097.606418, "bhd": 33824201.729569, "bmd": 89737458.29283637, "bnb": 315355.51671587926, "brl": 442809487.9460023, "btc": 2822.309526541047, "cad": 110357869.88411422, "chf": 82274083.6240795, "clp": 65795647102.86641, "cny": 579362978.230211, "czk": 1915558219.0834603, "dkk": 559083210.030612, "dot": 6078388.076927876, "eos": 24876859.676066525, "eth": 48888.35523310574, "eur": 75172709.86207585, "gbp": 64638339.89562138, "hkd": 696482027.1719412, "huf": 26394254264.026237, "idr": 1297379303268.6826, "ils": 291806472.1274796, "inr": 6657070145.377031, "jpy": 9942459729.893959, "krw": 101163728857.26332, "kwd": 27039780.67025577, "lkr": 17859693516.485607, "ltc": 701929.9377256044, "mmk": 147723730098.74347, "mxn": 1778197091.674616, "myr": 372948876.6650281, "ngn": 36904529722.928894, "nok": 761978705.8561318, "nzd": 126990169.35394146, "php": 4356319450.293974, "pkr": 14142623426.951015, "pln": 339458857.23014027, "rub": 6480031600.784007, "sar": 336512686.73692864, "sek": 762140233.2810601, "sgd": 120490485.24979152, "thb": 2855094869.9412103, "try": 786629585.6491746, "twd": 2501952127.170912, "uah": 2453321693.5103173, "usd": 89737458.29283637, "vef": 8985411.698861722, "vnd": 2067887769008.0742, "xag": 3436904.270759392, "xau": 50377.711711015545, "xdr": 62839373.06922502, "xlm": 363750876.4914826, "xrp": 144592085.89148137, "yfi": 3126.31756960306, "zar": 1270053349.8439312, "bits": 2822309526.541047, "link": 5183681.425397535, "sats": 282230952654.1047}, "total_volume": {"aed": 60008716.709168725, "ars": 1560404109.4767365, "aud": 21533637.986474365, "bch": 35496.85262683791, "bdt": 1384760561.895723, "bhd": 6158022.770418803, "bmd": 16337571.421344304, "bnb": 57442.54773400076, "brl": 80617746.17862345, "btc": 513.9161587055083, "cad": 20080182.282545887, "chf": 14978791.943802562, "clp": 11978733342.86821, "cny": 105478628.61048318, "czk": 348745883.9528712, "dkk": 101786500.84497346, "dot": 1107715.7357073657, "eos": 4530150.604453295, "eth": 8909.193709700268, "eur": 13685918.229374476, "gbp": 11768034.382651446, "hkd": 126801283.19962224, "huf": 4805329038.231453, "idr": 236200438824.08557, "ils": 53126187.996498935, "inr": 1211983947.6852942, "jpy": 1810120868.4885323, "krw": 18417834390.42409, "kwd": 4922853.358250895, "lkr": 3251529784.1035056, "ltc": 127804.2996761287, "mmk": 26894532528.879044, "mxn": 323737963.3782197, "myr": 67898946.82710676, "ngn": 6718826247.027873, "nok": 138725586.45291904, "nzd": 23119787.445487, "php": 793110051.3357296, "pkr": 2574801256.0038633, "pln": 61801765.1726611, "rub": 1179752369.9066944, "sar": 61265386.36532691, "sek": 138754994.08147737, "sgd": 21936457.147439033, "thb": 519736638.2312324, "try": 143213517.32236233, "twd": 455504561.2842171, "uah": 446650920.9171332, "usd": 16337571.421344304, "vef": 1635881.0264192089, "vnd": 376478950487.3992, "xag": 625721.6335303475, "xau": 9171.749220228518, "xdr": 11440515.088367729, "xlm": 66214498.55246717, "xrp": 26341633.71318242, "yfi": 568.4449877431638, "zar": 231225484.95057204, "bits": 513916158.7055084, "link": 947598.0478670569, "sats": 51391615870.55084}}, "community_data": {"facebook_likes": null, "twitter_followers": 103045, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 1.583, "reddit_subscribers": 13577, "reddit_accounts_active_48h": "58.2307692307692"}, "developer_data": {"forks": 289, "stars": 1910, "subscribers": 111, "total_issues": 287, "closed_issues": 235, "pull_requests_merged": 3142, "pull_request_contributors": 72, "code_additions_deletions_4_weeks": {"additions": 14738, "deletions": -4476}, "commit_count_4_weeks": 100}, "public_interest_stats": {"alexa_rank": 44115, "bing_matches": null}}, "STAR_20210706": {"id": "starbase", "symbol": "star", "name": "Starbase", "localization": {"en": "Starbase", "de": "Starbase", "es": "Starbase", "fr": "Starbase", "it": "Starbase", "pl": "Starbase", "ro": "Starbase", "hu": "Starbase", "nl": "Starbase", "pt": "Starbase", "sv": "Starbase", "vi": "Starbase", "tr": "Starbase", "ru": "Starbase", "ja": "Starbase", "zh": "Starbase", "zh-tw": "Starbase", "ko": "Starbase", "ar": "Starbase", "th": "Starbase", "id": "Starbase"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1449/thumb/starbase.png?1548610771", "small": "https://assets.coingecko.com/coins/images/1449/small/starbase.png?1548610771"}, "market_data": {"current_price": {"aed": 0.026934584914028902, "ars": 0.7024582276572323, "aud": 0.009738570918549808, "bch": 1.4754430837171062e-05, "bdt": 0.6219995312657814, "bhd": 0.0027648078995903894, "bmd": 0.007332929926772735, "bnb": 2.540756774898642e-05, "brl": 0.037112544993790984, "btc": 2.16346102e-07, "cad": 0.009031419821061475, "chf": 0.0067544204189898, "clp": 5.394463059006746, "cny": 0.04746605541599993, "czk": 0.15803490602385012, "dkk": 0.04595198870936966, "dot": 0.00047722984938040035, "eos": 0.0018644660876987837, "eth": 3.3854913974179803e-06, "eur": 0.006180383998462169, "gbp": 0.00530410620514276, "hkd": 0.05694555392023701, "huf": 2.173766414562578, "idr": 106.03086692266686, "ils": 0.02399759981975796, "inr": 0.5461716241206641, "jpy": 0.8143587554988406, "krw": 8.291857173296808, "kwd": 0.002209118469739561, "lkr": 1.4599930140537578, "ltc": 5.354403532269207e-05, "mmk": 12.074751230234753, "mxn": 0.14499182356309956, "myr": 0.030530653750118254, "ngn": 3.0175006648669744, "nok": 0.06299500112192667, "nzd": 0.010438719067958083, "php": 0.3601201080415795, "pkr": 1.1587862516782634, "pln": 0.02787319994465579, "rub": 0.5367411389200568, "sar": 0.027503004310232722, "sek": 0.06260283602944283, "sgd": 0.009876723318370221, "thb": 0.23558080132393025, "try": 0.06372242777066256, "twd": 0.2046884728039636, "uah": 0.20084169842660804, "usd": 0.007332929926772735, "vef": 0.0007342462735677543, "vnd": 168.12683666835045, "xag": 0.0002771329807467258, "xau": 4.102260988934476e-06, "xdr": 0.00514568558700476, "xlm": 0.02768670953457529, "xrp": 0.011199392062946506, "yfi": 2.2701448657636467e-07, "zar": 0.10450459088770843, "bits": 0.216346102, "link": 0.0004028080095084978, "sats": 21.6346102}, "market_cap": {"aed": 5619638.394628256, "ars": 146561056.69959697, "aud": 2031857.82210395, "bch": 3078.368064260292, "bdt": 129774134.5745178, "bhd": 576850.1974655299, "bmd": 1529944.2962697076, "bnb": 5301.041159240398, "brl": 7743170.478964698, "btc": 45.138503719584605, "cad": 1884317.6438931797, "chf": 1409243.930848402, "clp": 1125502094.112783, "cny": 9903329.429753821, "czk": 32972441.506627012, "dkk": 9587434.18118156, "dot": 99569.35268172293, "eos": 389002.6612757318, "eth": 706.349754501115, "eur": 1289476.831447815, "gbp": 1106650.0179878825, "hkd": 11881134.319870593, "huf": 453535157.24189484, "idr": 22122306049.126694, "ils": 5006865.105086328, "inr": 113953381.45219812, "jpy": 169908010.24074244, "krw": 1730015111.8928978, "kwd": 460911.01869421353, "lkr": 304613300.1066647, "ltc": 11171.440646408806, "mmk": 2519279054.627987, "mxn": 30251129.58685212, "myr": 6369923.07751892, "ngn": 629572077.9149833, "nok": 13143292.465964206, "nzd": 2177936.903511784, "php": 75135547.56041801, "pkr": 241769447.41802087, "pln": 5815471.264550774, "rub": 111985802.70975745, "sar": 5738233.556697921, "sek": 13061471.044999694, "sgd": 2060681.9726456741, "thb": 49151636.098453715, "try": 13295062.940154167, "twd": 42706253.10835415, "uah": 41903661.15991836, "usd": 1529944.2962697076, "vef": 153193.3223854859, "vnd": 35078024388.51581, "xag": 57821.09299226316, "xau": 855.8967376621636, "xdr": 1073597.1014112714, "xlm": 5776561.859707023, "xrp": 2336643.9035282335, "yfi": 47.364358091031505, "zar": 21803863.44330111, "bits": 45138503.71958461, "link": 84041.96177973106, "sats": 4513850371.958461}, "total_volume": {"aed": 7873.787207918069, "ars": 205349.6136910387, "aud": 2846.876436619665, "bch": 4.313162766630216, "bdt": 181829.12297492588, "bhd": 808.2362932872586, "bmd": 2143.6354054934736, "bnb": 7.4273942800612, "brl": 10849.110278034917, "btc": 0.06324445599766, "cad": 2640.154956290901, "chf": 1974.5197210832882, "clp": 1576963.3860394421, "cny": 13875.75197975926, "czk": 46198.344077952104, "dkk": 13433.144859410033, "dot": 139.50860186937243, "eos": 545.0393714169854, "eth": 0.9896807002071982, "eur": 1806.711654270446, "gbp": 1550.5493669493828, "hkd": 16646.893777502886, "huf": 635457.1359690784, "idr": 30996003.327503204, "ils": 7015.218355309845, "inr": 159662.35087919372, "jpy": 238061.4949949761, "krw": 2423958.6074698563, "kwd": 645.7916022589659, "lkr": 426799.75779833505, "ltc": 15.652527845882574, "mmk": 3529812.0271345256, "mxn": 42385.459782200895, "myr": 8925.02601077207, "ngn": 882105.9693605626, "nok": 18415.328677972822, "nzd": 3051.5507451361864, "php": 105273.91118379493, "pkr": 338747.9849531068, "pln": 8148.172539821227, "rub": 156905.5371405002, "sar": 8039.953250010331, "sek": 18300.687056487026, "sgd": 2887.2625276591666, "thb": 68867.33565102454, "try": 18627.977310197784, "twd": 59836.58125478268, "uah": 58712.053701050325, "usd": 2143.6354054934736, "vef": 214.6422131520616, "vnd": 49148518.16325889, "xag": 81.01428426169035, "xau": 1.1992139548952152, "xdr": 1504.2382676491015, "xlm": 8093.655798242395, "xrp": 3273.9182817611522, "yfi": 0.06636314486086868, "zar": 30549.827054203808, "bits": 63244.45599766, "link": 117.75286541961917, "sats": 6324445.599766}}, "community_data": {"facebook_likes": null, "twitter_followers": 16117, "reddit_average_posts_48h": 0.417, "reddit_average_comments_48h": 6.0, "reddit_subscribers": 6905, "reddit_accounts_active_48h": "31.5384615384615"}, "developer_data": {"forks": 2, "stars": 4, "subscribers": 4, "total_issues": 9, "closed_issues": 8, "pull_requests_merged": 59, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 368058, "bing_matches": null}}, "ABT_20210707": {"id": "arcblock", "symbol": "abt", "name": "Arcblock", "localization": {"en": "Arcblock", "de": "Arcblock", "es": "Arcblock", "fr": "Arcblock", "it": "Arcblock", "pl": "Arcblock", "ro": "Arcblock", "hu": "Arcblock", "nl": "Arcblock", "pt": "Arcblock", "sv": "Arcblock", "vi": "Arcblock", "tr": "Arcblock", "ru": "Arcblock", "ja": "\u30a2\u30fc\u30af\u30d6\u30ed\u30c3\u30af", "zh": "\u533a\u5757\u57fa\u77f3", "zh-tw": "\u5340\u584a\u57fa\u77f3", "ko": "\uc544\ud06c\ube14\ub85d", "ar": "Arcblock", "th": "Arcblock", "id": "Arcblock"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2341/thumb/arcblock.png?1547036543", "small": "https://assets.coingecko.com/coins/images/2341/small/arcblock.png?1547036543"}, "market_data": {"current_price": {"aed": 0.4476484140460072, "ars": 11.674741324138388, "aud": 0.16184139706649653, "bch": 0.00024141566584328495, "bdt": 10.337530895583269, "bhd": 0.04594468521402012, "bmd": 0.12187210096267631, "bnb": 0.00040836240903587576, "brl": 0.6165109847210617, "btc": 3.514641293908372e-06, "cad": 0.15010072634815616, "chf": 0.11223469896274971, "clp": 89.65530662092002, "cny": 0.7888781095314032, "czk": 2.626660643208174, "dkk": 0.7637694099305674, "dot": 0.007858048100244328, "eos": 0.030119502001843015, "eth": 5.468239388590103e-05, "eur": 0.10271697536596859, "gbp": 0.08816934641825593, "hkd": 0.946413643398788, "huf": 36.12508442315459, "idr": 1762.2157374748645, "ils": 0.3988362001684364, "inr": 9.077393602397954, "jpy": 13.53206873039075, "krw": 137.80931560556533, "kwd": 0.036715189136015694, "lkr": 24.264846083408592, "ltc": 0.0008700468658774247, "mmk": 200.611573094432, "mxn": 2.4097100226794663, "myr": 0.5074144923581037, "ngn": 50.02042549031564, "nok": 1.0475516438246848, "nzd": 0.17327019707847327, "php": 5.985137903300204, "pkr": 19.258838754626918, "pln": 0.4632602301793248, "rub": 8.920550302064045, "sar": 0.4570467029838454, "sek": 1.0411046096837573, "sgd": 0.16417390720682115, "thb": 3.9153146674256396, "try": 1.0590563701555609, "twd": 3.4018890774317576, "uah": 3.3312116680483728, "usd": 0.12187210096267631, "vef": 0.012203053469392773, "vnd": 2794.276096674081, "xag": 0.004605904999356379, "xau": 6.817890944154995e-05, "xdr": 0.08550522229121157, "xlm": 0.4594266689193388, "xrp": 0.18092855813395547, "yfi": 3.7288624839080023e-06, "zar": 1.7380923738103107, "bits": 3.514641293908372, "link": 0.00658361897954346, "sats": 351.46412939083723}, "market_cap": {"aed": 44184299.60154363, "ars": 1152333510.5197954, "aud": 15974252.45246944, "bch": 23854.837079590045, "bdt": 1020346655.7657098, "bhd": 4534884.237043775, "bmd": 12029157.823512454, "bnb": 40315.67254967039, "brl": 60851563.86538327, "btc": 347.17915214144404, "cad": 14815411.504383557, "chf": 11077916.081144748, "clp": 8849259383.72669, "cny": 77864738.59159614, "czk": 259259626.9070348, "dkk": 75386431.35100709, "dot": 778054.9963164224, "eos": 2975592.318198128, "eth": 5412.183615326402, "eur": 10138486.971759701, "gbp": 8702590.460682694, "hkd": 93413988.86900292, "huf": 3565658903.729903, "idr": 173936209006.9696, "ils": 39366381.31007043, "inr": 895967160.7107894, "jpy": 1335657538.9337077, "krw": 13602210792.093184, "kwd": 3623904.08591138, "lkr": 2395016257.1657925, "ltc": 85906.67631806448, "mmk": 19800990176.702366, "mxn": 237845921.60750884, "myr": 50083398.59819427, "ngn": 4937172559.341737, "nok": 103396626.07200143, "nzd": 17102310.785684977, "php": 590751844.4794343, "pkr": 1900907665.0605576, "pln": 45725234.7187355, "rub": 880486236.0498183, "sar": 45111940.13626152, "sek": 102760283.62313762, "sgd": 16204478.504053637, "thb": 386453812.5719197, "try": 104532178.57054098, "twd": 335777099.8223975, "uah": 328801018.2966502, "usd": 12029157.823512454, "vef": 1204479.5728683022, "vnd": 275803796798.8667, "xag": 454617.23987453885, "xau": 6729.471761207574, "xdr": 8439633.070660688, "xlm": 45398753.30573034, "xrp": 17871638.63675334, "yfi": 368.7680269493825, "zar": 171555157.50738344, "bits": 347179152.141444, "link": 650865.6001076973, "sats": 34717915214.1444}, "total_volume": {"aed": 44093504.70574704, "ars": 1149965565.3004696, "aud": 15941426.751939343, "bch": 23779.51638807305, "bdt": 1018249932.0624408, "bhd": 4525565.444045679, "bmd": 12004438.949592156, "bnb": 40223.821283600024, "brl": 60726519.19001106, "btc": 346.1932346219242, "cad": 14784967.121291436, "chf": 11055151.9263363, "clp": 8831074924.74761, "cny": 77704733.32070997, "czk": 258726870.90497956, "dkk": 75231518.7861202, "dot": 774020.1238610874, "eos": 2966780.0925494377, "eth": 5386.232401309668, "eur": 10117653.262128957, "gbp": 8684707.393594047, "hkd": 93222031.24012133, "huf": 3558331784.5602083, "idr": 173578785213.5751, "ils": 39285486.81765641, "inr": 894126026.0605234, "jpy": 1332912878.7679636, "krw": 13574259431.030308, "kwd": 3616457.2779541165, "lkr": 2390094706.8988, "ltc": 85699.88046655712, "mmk": 19760300862.715748, "mxn": 237357168.90886316, "myr": 49980481.56662703, "ngn": 4927027098.802639, "nok": 103184154.99121943, "nzd": 17067167.023315232, "php": 589537900.7789571, "pkr": 1897001465.0093, "pln": 45631273.33518967, "rub": 878676913.3543465, "sar": 45019239.01978383, "sek": 102549120.17078583, "sgd": 16171179.708995584, "thb": 385659683.57227266, "try": 104317374.02806087, "twd": 335087107.06333524, "uah": 328125360.77885944, "usd": 12004438.949592156, "vef": 1202004.472022662, "vnd": 275237043965.4728, "xag": 453683.0409556005, "xau": 6715.643281570334, "xdr": 8422290.358155938, "xlm": 45253666.38707348, "xrp": 17821517.912635054, "yfi": 367.2940868821729, "zar": 171202626.56789267, "bits": 346193234.6219242, "link": 648488.4685093733, "sats": 34619323462.19242}}, "community_data": {"facebook_likes": null, "twitter_followers": 33326, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2223, "reddit_accounts_active_48h": "19.8461538461538"}, "developer_data": {"forks": 11, "stars": 29, "subscribers": 30, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 985348, "bing_matches": null}}, "BQT_20210710": {"id": "blockchain-quotations-index-token", "symbol": "bqt", "name": "Blockchain Quotations Index Token", "localization": {"en": "Blockchain Quotations Index Token", "de": "Blockchain Quotations Index Token", "es": "Blockchain Quotations Index Token", "fr": "Blockchain Quotations Index Token", "it": "Blockchain Quotations Index Token", "pl": "Blockchain Quotations Index Token", "ro": "Blockchain Quotations Index Token", "hu": "Blockchain Quotations Index Token", "nl": "Blockchain Quotations Index Token", "pt": "Blockchain Quotations Index Token", "sv": "Blockchain Quotations Index Token", "vi": "Blockchain Quotations Index Token", "tr": "Blockchain Quotations Index Token", "ru": "Blockchain Quotations Index Token", "ja": "Blockchain Quotations Index Token", "zh": "Blockchain Quotations Index Token", "zh-tw": "Blockchain Quotations Index Token", "ko": "Blockchain Quotations Index Token", "ar": "Blockchain Quotations Index Token", "th": "Blockchain Quotations Index Token", "id": "Blockchain Quotations Index Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5814/thumb/blockchain-quotations-index-token.png?1547351058", "small": "https://assets.coingecko.com/coins/images/5814/small/blockchain-quotations-index-token.png?1547351058"}, "market_data": {"current_price": {"aed": 0.03369152000747748, "ars": 0.8797190477744663, "aud": 0.01223440976858703, "bch": 1.79976731167956e-05, "bdt": 0.7779153945270889, "bhd": 0.0034577009319663645, "bmd": 0.009172253078372387, "bnb": 2.8656621741216713e-05, "brl": 0.047666364797685656, "btc": 2.6857311975341263e-07, "cad": 0.011427251497690243, "chf": 0.008482004345212549, "clp": 6.86029748980745, "cny": 0.05942886214539055, "czk": 0.19890305968042904, "dkk": 0.057681547933960485, "dot": 0.0005729730060221641, "eos": 0.0023704287185918583, "eth": 3.952673826996276e-06, "eur": 0.007757781586650428, "gbp": 0.00664497632642305, "hkd": 0.07123822970632566, "huf": 2.744888456233732, "idr": 133.148094586885, "ils": 0.030041055004815933, "inr": 0.685819837382921, "jpy": 1.0142264702675676, "krw": 10.430044143009598, "kwd": 0.0027620497417433576, "lkr": 1.8298255070597111, "ltc": 6.627623124191127e-05, "mmk": 15.097004381909795, "mxn": 0.18359640374324113, "myr": 0.03811529766717648, "ngn": 3.7743510753290637, "nok": 0.07982691652709284, "nzd": 0.013067754822022548, "php": 0.4562619980719487, "pkr": 1.4568871635559224, "pln": 0.03502196448874839, "rub": 0.6837621157828128, "sar": 0.03440206693669964, "sek": 0.07885314427902737, "sgd": 0.0123535114748097, "thb": 0.29626377443142865, "try": 0.07968853474489945, "twd": 0.25598474226306395, "uah": 0.2501459519487113, "usd": 0.009172253078372387, "vef": 0.0009184177007374273, "vnd": 211.33948850651225, "xag": 0.0003514278140629683, "xau": 5.108761519591851e-06, "xdr": 0.006440040675892986, "xlm": 0.03519128168055699, "xrp": 0.013781048874296556, "yfi": 2.557935583417515e-07, "zar": 0.13180527673621145, "bits": 0.26857311975341264, "link": 0.0004587053367307608, "sats": 26.857311975341265}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 171154.10574997062, "ars": 4469003.6810342055, "aud": 62151.231611292205, "bch": 91.42881197410448, "bdt": 3951837.544577083, "bhd": 17565.242257701622, "bmd": 46595.36800336777, "bnb": 145.57664560235233, "brl": 242146.80843990177, "btc": 1.3643608875370754, "cad": 58050.83922699575, "chf": 43088.880179642314, "clp": 34850552.35816514, "cny": 301900.70836742135, "czk": 1010434.5337634325, "dkk": 293024.2907627791, "dot": 2910.7230081287853, "eos": 12041.86120081835, "eth": 20.079721960621423, "eur": 39409.80311283243, "gbp": 33756.71328055982, "hkd": 361892.71062543674, "huf": 13944129.828687895, "idr": 676397000.0840882, "ils": 152609.61523830966, "inr": 3483988.877522078, "jpy": 5152306.1146564, "krw": 52984990.81766961, "kwd": 14031.309762222148, "lkr": 9295577.88635787, "ltc": 336.68558403331247, "mmk": 76693312.85485743, "mxn": 932676.183639412, "myr": 193627.05173799486, "ngn": 19173836.11487442, "nok": 405523.5415303266, "nzd": 66384.65377123815, "php": 2317826.985851861, "pkr": 7401037.994180255, "pln": 177912.8104742267, "rub": 3473535.5794734666, "sar": 174763.70912308694, "sek": 400576.7442862488, "sgd": 62756.27246481595, "thb": 1505030.3865087817, "try": 404820.55721325986, "twd": 1300411.4874587914, "uah": 1270750.2274535194, "usd": 46595.36800336777, "vef": 4665.594198177215, "vnd": 1073612029.2869061, "xag": 1785.2656466156766, "xau": 25.95268807051577, "xdr": 32715.632973260625, "xlm": 178772.94775938525, "xrp": 70008.21262600741, "yfi": 1.299440266419232, "zar": 669575.438208396, "bits": 1364360.8875370754, "link": 2330.239232111469, "sats": 136436088.75370753}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 6752065, "bing_matches": null}}, "BUSY_20210714": {"id": "busy-dao", "symbol": "busy", "name": "Busy DAO", "localization": {"en": "Busy DAO", "de": "Busy DAO", "es": "Busy DAO", "fr": "Busy DAO", "it": "Busy DAO", "pl": "Busy DAO", "ro": "Busy DAO", "hu": "Busy DAO", "nl": "Busy DAO", "pt": "Busy DAO", "sv": "Busy DAO", "vi": "Busy DAO", "tr": "Busy DAO", "ru": "Busy DAO", "ja": "Busy DAO", "zh": "Busy DAO", "zh-tw": "Busy DAO", "ko": "Busy DAO", "ar": "Busy DAO", "th": "Busy DAO", "id": "Busy DAO"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14966/thumb/busy.PNG?1619165503", "small": "https://assets.coingecko.com/coins/images/14966/small/busy.PNG?1619165503"}, "market_data": {"current_price": {"aed": 0.07777148787209591, "ars": 2.0321538184590526, "aud": 0.028285705253509368, "bch": 4.250905005779029e-05, "bdt": 1.7914615651441514, "bhd": 0.007980978176773132, "bmd": 0.02117267991726453, "bnb": 6.662410989149905e-05, "brl": 0.11134153409739611, "btc": 6.280464562164817e-07, "cad": 0.02634749461584317, "chf": 0.019349902730507344, "clp": 15.85304029814211, "cny": 0.13717567591596538, "czk": 0.4588437328269991, "dkk": 0.13257876951572828, "dot": 0.0013778436214634472, "eos": 0.005309138116344197, "eth": 9.964164363974823e-06, "eur": 0.017826634273859745, "gbp": 0.015229402801088815, "hkd": 0.16446090852534428, "huf": 6.337300689436017, "idr": 306.73390713139094, "ils": 0.06946544554055321, "inr": 1.5771666892789833, "jpy": 2.3312179222904117, "krw": 24.249282036042302, "kwd": 0.00637212974789991, "lkr": 4.2104799656391565, "ltc": 0.00015740607709130636, "mmk": 34.791344712488275, "mxn": 0.4208948799772901, "myr": 0.08872411519329716, "ngn": 8.697793419894971, "nok": 0.18342739519522971, "nzd": 0.030253176534821156, "php": 1.0584222690640563, "pkr": 3.3734545032922356, "pln": 0.08112005306441102, "rub": 1.575588265991153, "sar": 0.07941760021762369, "sek": 0.1830992186565119, "sgd": 0.028605349202220295, "thb": 0.687752415824663, "try": 0.1833702289594531, "twd": 0.5921115248652751, "uah": 0.5777180829853592, "usd": 0.02117267991726453, "vef": 0.002120020440115701, "vnd": 486.20331330190726, "xag": 0.0008112149280664554, "xau": 1.1707009906653104e-05, "xdr": 0.014864576353434404, "xlm": 0.08560388870722344, "xrp": 0.03366335228847111, "yfi": 6.346862513483658e-07, "zar": 0.30022013215484483, "bits": 0.6280464562164817, "link": 0.001157328053979098, "sats": 62.80464562164817}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 387364.5629294456, "ars": 10121760.52215189, "aud": 140885.5629803125, "bch": 211.72926025618668, "bdt": 8922919.506545156, "bhd": 39751.69059745355, "bmd": 105456.97564234085, "bnb": 331.8416545036118, "brl": 554570.3942615015, "btc": 3.1281765036023383, "cad": 131231.71505908546, "chf": 96378.07915231625, "clp": 78960891.63540407, "cny": 683245.1994891632, "czk": 2285410.8476329935, "dkk": 660348.9082225753, "dot": 6862.769464962391, "eos": 26443.77807651047, "eth": 49.6295529301958, "eur": 88790.97703972802, "gbp": 75854.67529465767, "hkd": 819147.6039994484, "huf": 31564854.66438717, "idr": 1527781570.3745043, "ils": 345993.7913849562, "inr": 7855558.662632148, "jpy": 11611340.303099941, "krw": 120780928.77292971, "kwd": 31738.331389318788, "lkr": 20971576.810968943, "ltc": 784.0088691011086, "mmk": 173288880.11561581, "mxn": 2096395.0373404443, "myr": 441917.45642923005, "ngn": 43322007.05854162, "nok": 913615.9627798566, "nzd": 150685.15244187694, "php": 5271794.212360631, "pkr": 16802516.770404052, "pln": 404043.1109121607, "rub": 7847696.845098021, "sar": 395563.5264147117, "sek": 911981.3796573993, "sgd": 142477.64694158486, "thb": 3425560.205273866, "try": 913331.2289456222, "twd": 2949191.6422138987, "uah": 2877500.7246885253, "usd": 105456.97564234085, "vef": 10559.406971067607, "vnd": 2421683564.313246, "xag": 4040.502819865051, "xau": 58.31032554191966, "xdr": 74037.54614736438, "xlm": 426376.21886146464, "xrp": 167670.5705747756, "yfi": 3.161248023893082, "zar": 1495337.7318181396, "bits": 3128176.503602338, "link": 5764.424573346117, "sats": 312817650.36023384}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 478705, "bing_matches": null}}, "MBONK_20210721": {"id": "megabonk", "symbol": "mbonk", "name": "megaBonk", "localization": {"en": "megaBonk", "de": "megaBonk", "es": "megaBonk", "fr": "megaBonk", "it": "megaBonk", "pl": "megaBonk", "ro": "megaBonk", "hu": "megaBonk", "nl": "megaBonk", "pt": "megaBonk", "sv": "megaBonk", "vi": "megaBonk", "tr": "megaBonk", "ru": "megaBonk", "ja": "megaBonk", "zh": "megaBonk", "zh-tw": "megaBonk", "ko": "megaBonk", "ar": "megaBonk", "th": "megaBonk", "id": "megaBonk"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14996/thumb/Bonk_v2_gecko.png?1619391636", "small": "https://assets.coingecko.com/coins/images/14996/small/Bonk_v2_gecko.png?1619391636"}, "market_data": {"current_price": {"aed": 0.25276164312339516, "ars": 6.62137613906032, "aud": 0.0930137962747848, "bch": 0.00015876036332738392, "bdt": 5.834427394758364, "bhd": 0.025942408575644987, "bmd": 0.06881622303417136, "bnb": 0.0002302922696471334, "brl": 0.35167656815580756, "btc": 2.1903434475794635e-06, "cad": 0.08681889106102557, "chf": 0.06323825525991353, "clp": 52.14893381529493, "cny": 0.44587407228300296, "czk": 1.4882884555600207, "dkk": 0.4335422051152799, "dot": 0.005754634800881412, "eos": 0.018802216183427062, "eth": 3.686373642295572e-05, "eur": 0.05829215804555551, "gbp": 0.04999360970986473, "hkd": 0.5345437756625323, "huf": 20.963141941784414, "idr": 997.2950266446645, "ils": 0.22635857875076104, "inr": 5.1358235412632345, "jpy": 7.572881263795374, "krw": 78.62253481654069, "kwd": 0.020697855401987694, "lkr": 13.690835764060369, "ltc": 0.0005782073345862791, "mmk": 113.24184277158832, "mxn": 1.3689335983295543, "myr": 0.2896922132957999, "ngn": 28.327673281867217, "nok": 0.6086829335483962, "nzd": 0.09830473158276708, "php": 3.465760129288487, "pkr": 10.973303417226733, "pln": 0.26716006146883553, "rub": 5.097575484500831, "sar": 0.2581253171791263, "sek": 0.597339267343444, "sgd": 0.09339737790197733, "thb": 2.2568594834195705, "try": 0.5865206689202422, "twd": 1.9260215686580808, "uah": 1.872944441626502, "usd": 0.06881622303417136, "vef": 0.006890568412411564, "vnd": 1583.214998754042, "xag": 0.0026806471953684193, "xau": 3.797072738356473e-05, "xdr": 0.04834188272459864, "xlm": 0.2958864164738159, "xrp": 0.11927080897241876, "yfi": 2.5170317421241297e-06, "zar": 0.9951390143770052, "bits": 2.190343447579463, "link": 0.00453298836842073, "sats": 219.03434475794634}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 21, "reddit_accounts_active_48h": "7.16666666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 4558001, "bing_matches": null}}, "HAUS_20210728": {"id": "daohaus", "symbol": "haus", "name": "DAOhaus", "localization": {"en": "DAOhaus", "de": "DAOhaus", "es": "DAOhaus", "fr": "DAOhaus", "it": "DAOhaus", "pl": "DAOhaus", "ro": "DAOhaus", "hu": "DAOhaus", "nl": "DAOhaus", "pt": "DAOhaus", "sv": "DAOhaus", "vi": "DAOhaus", "tr": "DAOhaus", "ru": "DAOhaus", "ja": "DAOhaus", "zh": "DAOhaus", "zh-tw": "DAOhaus", "ko": "DAOhaus", "ar": "DAOhaus", "th": "DAOhaus", "id": "DAOhaus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14551/thumb/jN3kkqke_400x400.png?1616990048", "small": "https://assets.coingecko.com/coins/images/14551/small/jN3kkqke_400x400.png?1616990048"}, "market_data": {"current_price": {"aed": 37.227264155222855, "ars": 976.642792437637, "aud": 13.76351710786865, "bch": 0.022056316365034377, "bdt": 859.7322780907988, "bhd": 3.821885609820084, "bmd": 10.134831796586889, "bnb": 0.03357017379131236, "brl": 52.74028633231369, "btc": 0.0002962161507384248, "cad": 12.73132502871347, "chf": 9.322241252800138, "clp": 7724.870143676489, "cny": 65.6878988063983, "czk": 220.83798484762818, "dkk": 64.02173245903934, "dot": 0.7320368146090241, "eos": 2.7565670111771947, "eth": 0.004632889408284233, "eur": 8.609782847163677, "gbp": 7.371590176911062, "hkd": 78.74156216040207, "huf": 3101.258529755582, "idr": 146703.2104803645, "ils": 33.177385369306954, "inr": 754.4723508492149, "jpy": 1120.4461944398656, "krw": 11676.542409483662, "kwd": 3.0500168201920475, "lkr": 2020.5759019370287, "ltc": 0.08046395325934953, "mmk": 16671.015906505538, "mxn": 203.27888201845164, "myr": 42.83486658827443, "ngn": 4167.7350523617215, "nok": 89.82501421314959, "nzd": 14.532213695144367, "php": 509.408084344689, "pkr": 1629.1215203108304, "pln": 39.38446310312634, "rub": 748.6417821166386, "sar": 38.0186120915641, "sek": 88.0792894361875, "sgd": 13.796951917965579, "thb": 334.0893181743086, "try": 86.70753995251926, "twd": 284.26277571384844, "uah": 275.8384805582261, "usd": 10.134831796586889, "vef": 1.0148007077922454, "vnd": 233023.72654365172, "xag": 0.40265575244689983, "xau": 0.005623311422336216, "xdr": 7.129570393608559, "xlm": 37.77981710294388, "xrp": 16.560870606955145, "yfi": 0.00034270996714727905, "zar": 150.4421526267615, "bits": 296.2161507384248, "link": 0.6060592073239819, "sats": 29621.61507384248}, "market_cap": {"aed": 15176834.987291776, "ars": 398158361.5854925, "aud": 5611119.504240648, "bch": 9006.351813261628, "bdt": 350496207.92512393, "bhd": 1558108.7828181677, "bmd": 4131774.7433550535, "bnb": 13712.70808522638, "brl": 21501193.843054663, "btc": 120.95917919274224, "cad": 5190314.773728911, "chf": 3800497.307982342, "clp": 3149280027.132656, "cny": 26779684.821581427, "czk": 90031371.65770677, "dkk": 26100421.05377389, "dot": 299044.42703405814, "eos": 1126052.301612238, "eth": 1893.6933628570494, "eur": 3510041.8070739675, "gbp": 3005254.6231287927, "hkd": 32101410.69102279, "huf": 1264323071.4666433, "idr": 59808059176.27602, "ils": 13525777.799847124, "inr": 307583773.10695267, "jpy": 456784224.97687554, "krw": 4760300317.314234, "kwd": 1243432.8183642493, "lkr": 823749682.8972379, "ltc": 32872.48041703945, "mmk": 6796450483.940657, "mxn": 82872865.32610689, "myr": 17462945.95279014, "ngn": 1699104905.9287796, "nok": 36619919.55035591, "nzd": 5924502.223199907, "php": 207675815.36627916, "pkr": 664161308.8974348, "pln": 16056283.241414882, "rub": 305206763.09709954, "sar": 15499452.222802447, "sek": 35908221.35081302, "sgd": 5624750.2291189805, "thb": 136201748.0469869, "try": 35348985.63929983, "twd": 115888431.17909709, "uah": 112454009.11337593, "usd": 4131774.7433550535, "vef": 413714.6050521415, "vnd": 94999262667.56393, "xag": 164154.9560582749, "xau": 2292.515216350559, "xdr": 2906587.842257475, "xlm": 15447823.018513188, "xrp": 6772104.747916478, "yfi": 140.0711110549633, "zar": 61332353.51459449, "bits": 120959179.19274224, "link": 247670.99385994693, "sats": 12095917919.274223}, "total_volume": {"aed": 311859.6629495679, "ars": 8181516.9334434, "aud": 115299.52317643884, "bch": 184.76983317463672, "bdt": 7202135.976318984, "bhd": 32016.64116762867, "bmd": 84901.35656908658, "bnb": 281.2235419735592, "brl": 441815.11300103186, "btc": 2.481457368028031, "cad": 106652.65961530374, "chf": 78094.13560209029, "clp": 64712662.990523435, "cny": 550279.652466878, "czk": 1850000.5596403952, "dkk": 536321.8694469195, "dot": 6132.407509688484, "eos": 23092.270638507558, "eth": 38.81056967618831, "eur": 72125.74003799667, "gbp": 61753.17150323821, "hkd": 659632.5997278603, "huf": 25979815.11014044, "idr": 1228959871.5410118, "ils": 277933.0808645627, "inr": 6320354.137750786, "jpy": 9386184.574138785, "krw": 97816550.93037581, "kwd": 25550.553851327208, "lkr": 16926737.272840798, "ltc": 674.0613878694065, "mmk": 139656177.2563214, "mxn": 1702904.714316625, "myr": 358835.5835392439, "ngn": 34913885.78202237, "nok": 752480.7232718141, "nzd": 121739.03636813429, "php": 4267405.545170359, "pkr": 13647451.666327849, "pln": 329930.91669529775, "rub": 6271510.387316592, "sar": 318488.9306731965, "sek": 737856.464602789, "sgd": 115579.61275176017, "thb": 2798727.881975541, "try": 726365.0659911615, "twd": 2381321.7391853943, "uah": 2310749.863775327, "usd": 84901.35656908658, "vef": 8501.17283326264, "vnd": 1952082766.9781923, "xag": 3373.1215573405893, "xau": 47.107517692357526, "xdr": 59725.72710836836, "xlm": 316488.50097858795, "xrp": 138733.46975221796, "yfi": 2.8709446495550064, "zar": 1260281.6800064805, "bits": 2481457.3680280307, "link": 5077.069841486659, "sats": 248145736.8028031}}, "community_data": {"facebook_likes": null, "twitter_followers": 7828, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 25, "stars": 27, "subscribers": 8, "total_issues": 80, "closed_issues": 72, "pull_requests_merged": 346, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 4094, "deletions": -4019}, "commit_count_4_weeks": 154}, "public_interest_stats": {"alexa_rank": 442915, "bing_matches": null}}, "BRD_20210817": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.7388411879238569, "ars": 19.52695788482127, "aud": 0.2729506365196715, "bch": 0.0003076128407559268, "bdt": 17.03142004139207, "bhd": 0.07581213403461991, "bmd": 0.20114921671717545, "bnb": 0.0004905432507433045, "brl": 1.055832238548455, "btc": 4.214925756361726e-06, "cad": 0.2516819229408644, "chf": 0.18413319987820276, "clp": 156.089497663413, "cny": 1.302923936363833, "czk": 4.330893497833346, "dkk": 1.2680396334546546, "dot": 0.008895481032644576, "eos": 0.03920353178630809, "eth": 6.054441504797153e-05, "eur": 0.17051740939861723, "gbp": 0.14507706221431232, "hkd": 1.565534296248941, "huf": 60.103385955092165, "idr": 2889.2570616213284, "ils": 0.6468415706739208, "inr": 14.92869141709863, "jpy": 22.04292886597152, "krw": 233.81182652771056, "kwd": 0.06050125910575852, "lkr": 40.1727155578429, "ltc": 0.001096021515893432, "mmk": 331.0354100276185, "mxn": 3.998434072443178, "myr": 0.8523698058390328, "ngn": 82.77290267911755, "nok": 1.7711389681164003, "nzd": 0.2855777785990923, "php": 10.167102848608556, "pkr": 33.073351884639436, "pln": 0.778925198085174, "rub": 14.747134134089674, "sar": 0.7544145625805345, "sek": 1.7378286578280357, "sgd": 0.27253707373010094, "thb": 6.702292303314706, "try": 1.7146160382188769, "twd": 5.596635001486999, "uah": 5.367750727321211, "usd": 0.20114921671717545, "vef": 0.020141071069890763, "vnd": 4574.146469427913, "xag": 0.00847302253622275, "xau": 0.00011304787128721979, "xdr": 0.14161789913442702, "xlm": 0.5587771750717757, "xrp": 0.18491316998034357, "yfi": 5.017890758294339e-06, "zar": 2.962386870851026, "bits": 4.214925756361726, "link": 0.007259365791773217, "sats": 421.49257563617266}, "market_cap": {"aed": 62273998.61068573, "ars": 1645849971.6391008, "aud": 23005928.523253344, "bch": 25978.384624696064, "bdt": 1435510966.8100462, "bhd": 6389904.632701104, "bmd": 16954071.11450433, "bnb": 41578.9852024137, "brl": 88991919.28003347, "btc": 355.82428978521096, "cad": 21213272.859890137, "chf": 15519858.422643952, "clp": 13156165789.766161, "cny": 109818300.23709048, "czk": 365033866.6486135, "dkk": 106878040.45405757, "dot": 752505.3727672006, "eos": 3316915.6888439474, "eth": 5120.669186496914, "eur": 14372237.348903162, "gbp": 12227089.592998285, "hkd": 131952687.7806316, "huf": 5065876449.013885, "idr": 243524038970.9619, "ils": 54519715.10504518, "inr": 1258280295.90517, "jpy": 1857911204.7505722, "krw": 19707073182.077568, "kwd": 5099411.60167839, "lkr": 3385999148.02585, "ltc": 92334.5982351221, "mmk": 27901664120.91288, "mxn": 337012177.91056144, "myr": 71842876.34771217, "ngn": 6976600263.618532, "nok": 149282291.57032213, "nzd": 24070220.337466355, "php": 856944846.9001696, "pkr": 2787621890.8453994, "pln": 65652521.132028624, "rub": 1242977551.3172174, "sar": 63586616.70451305, "sek": 146474697.39376017, "sgd": 22971070.953041945, "thb": 564909683.4434277, "try": 144518197.58714664, "twd": 471718206.84018797, "uah": 452426457.53820187, "usd": 16954071.11450433, "vef": 1697611.1406953188, "vnd": 385536696570.28143, "xag": 714157.5243412444, "xau": 9528.357507062574, "xdr": 11936412.043740083, "xlm": 47044158.373014286, "xrp": 15596770.211677317, "yfi": 423.65439754748076, "zar": 249687861.06535098, "bits": 355824289.78521085, "link": 614951.7542295757, "sats": 35582428978.521095}, "total_volume": {"aed": 2371137.72776631, "ars": 62667197.37066854, "aud": 875971.1324273398, "bch": 987.2113577091446, "bdt": 54658353.21262821, "bhd": 243301.28608164345, "bmd": 645541.2942109691, "bnb": 1574.2836592624408, "brl": 3388446.2533133808, "btc": 13.526816918161867, "cad": 807714.1781426491, "chf": 590932.3739684866, "clp": 500932680.6181688, "cny": 4181429.179122134, "czk": 13898988.22033289, "dkk": 4069476.180173589, "dot": 28547.962712261382, "eos": 125814.5523010295, "eth": 194.3031182779464, "eur": 547235.6837633463, "gbp": 465590.84857801354, "hkd": 5024215.615779263, "huf": 192887738.71023804, "idr": 9272393764.722807, "ils": 2075886.5060330338, "inr": 47910138.23245556, "jpy": 70741616.8980019, "krw": 750364289.5649469, "kwd": 194164.61939018665, "lkr": 128924920.59584887, "ltc": 3517.4243250856316, "mmk": 1062380607.3247354, "mxn": 12832037.569260936, "myr": 2735481.2342189876, "ngn": 265640242.5678133, "nok": 5684055.649657, "nzd": 916494.9871714336, "php": 32628935.06811444, "pkr": 106141175.82930619, "pln": 2499777.969170207, "rub": 47327472.66030063, "sar": 2421116.825846713, "sek": 5577154.0113356635, "sgd": 874643.8995264419, "thb": 21509437.214192033, "try": 5502658.545983727, "twd": 17961089.091220092, "uah": 17226538.62673944, "usd": 645541.2942109691, "vef": 64638.04978934429, "vnd": 14679651653.512505, "xag": 27192.18112393924, "xau": 362.8006627595068, "xdr": 454489.4749414674, "xlm": 1793264.4563988661, "xrp": 593435.5053124669, "yfi": 16.10374500673857, "zar": 9507086.75764615, "bits": 13526816.918161867, "link": 23297.23408747422, "sats": 1352681691.8161867}}, "community_data": {"facebook_likes": null, "twitter_followers": 805, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 307, "stars": 247, "subscribers": 32, "total_issues": 45, "closed_issues": 31, "pull_requests_merged": 395, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "RDN_20200313": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 0.41986916056345686, "ars": 7.140004698497133, "aud": 0.17323432127538213, "bch": 0.00041785999402821453, "bdt": 9.703638325871125, "bhd": 0.04309099866058239, "bmd": 0.11430609837837755, "bnb": 0.006906430071305197, "brl": 0.5400391617886452, "btc": 1.4423158089008734e-05, "cad": 0.15608760637593738, "chf": 0.10614132807730844, "clp": 95.93710836897229, "cny": 0.794038742995238, "czk": 2.5677150409226908, "dkk": 0.7489356140849007, "eos": 0.03746977121090055, "eth": 0.0005688163685913891, "eur": 0.10030474438801006, "gbp": 0.08743639244476906, "hkd": 0.8883487040537934, "huf": 33.7149309786293, "idr": 1681.2712479983707, "ils": 0.4027964017096617, "inr": 8.50820297364697, "jpy": 11.793817465435046, "krw": 137.2879093875568, "kwd": 0.03486838947373374, "lkr": 20.810803398411814, "ltc": 0.002283752458913037, "mmk": 155.85930154827932, "mxn": 2.3766905757200867, "myr": 0.4820859699108066, "ngn": 41.89318505567537, "nok": 1.0936746910611022, "nzd": 0.1802992382978552, "php": 5.780825174509366, "pkr": 17.952712232146702, "pln": 0.4343911788319375, "rub": 8.536585177874311, "sar": 0.4291135519637087, "sek": 1.082415540370832, "sgd": 0.15843511071833338, "thb": 3.596069740677664, "try": 0.7038169395451837, "twd": 3.4201527695794343, "uah": 2.8614418209267876, "usd": 0.11430609837837755, "vef": 28403.652879810823, "vnd": 2655.303647483074, "xag": 0.006769692946885633, "xau": 6.872654164999944e-05, "xdr": 0.08190557756863287, "xlm": 2.2051698600086556, "xrp": 0.5470921702930986, "zar": 1.8393680126655054, "bits": 14.423158089008734, "link": 0.028137774348598047, "sats": 1442.3158089008734}, "market_cap": {"aed": 21241401.27811248, "ars": 361179576.4803741, "aud": 8767681.565781383, "bch": 21255.583750909253, "bdt": 490912157.63713723, "bhd": 2180146.5993833174, "bmd": 5782805.5314473715, "bnb": 349916.57259584806, "brl": 27323756.13608882, "btc": 730.4068465562167, "cad": 7893217.278926955, "chf": 5365298.537687928, "clp": 4852933281.827789, "cny": 40170836.9047523, "czk": 129818201.37546201, "dkk": 37863856.031647734, "eos": 1896107.5588084492, "eth": 28878.976484899245, "eur": 5071017.346998104, "gbp": 4420295.588960923, "hkd": 44939777.839204185, "huf": 1704404469.7140186, "idr": 81557193509.5899, "ils": 20377681.443935473, "inr": 430434455.5249877, "jpy": 595411150.7114516, "krw": 6943530350.244373, "kwd": 1764010.1305348312, "lkr": 1052829470.2862889, "ltc": 115386.609907664, "mmk": 7885003896.619777, "mxn": 120452138.22450823, "myr": 24401120.437689748, "ngn": 2119398227.2754617, "nok": 55319046.34732248, "nzd": 9117992.35926539, "php": 292545655.0937272, "pkr": 908237137.5924703, "pln": 21954930.087026723, "rub": 432548070.9467314, "sar": 21707767.195807073, "sek": 54729975.079056084, "sgd": 8010544.62035449, "thb": 181869233.96401963, "try": 35600020.67061331, "twd": 173027324.30643675, "uah": 144761844.07235748, "usd": 5782805.5314473715, "vef": 1436955712047.5679, "vnd": 134225967781.82236, "xag": 341875.12591501954, "xau": 3467.543680821788, "xdr": 4143646.1723364885, "xlm": 111483660.81307963, "xrp": 27687949.92489521, "zar": 93048232.40375382, "bits": 730406846.5562167, "link": 1424932.2446747439, "sats": 73040684655.62167}, "total_volume": {"aed": 3485672.0951286843, "ars": 59274930.083553374, "aud": 1438157.6364832725, "bch": 3468.99238539015, "bdt": 80557717.76217002, "bhd": 357733.08851941495, "bmd": 948946.9931200808, "bnb": 57335.83896516682, "brl": 4483300.068995826, "btc": 119.73825276193175, "cad": 1295808.9448863133, "chf": 881164.6583485068, "clp": 796451211.3256838, "cny": 6591955.1824079575, "czk": 21316670.77995299, "dkk": 6217517.779968646, "eos": 311066.7517124132, "eth": 4722.202841929804, "eur": 832710.4759328018, "gbp": 725879.9213413293, "hkd": 7374898.133286572, "huf": 279894798.5217326, "idr": 13957586848.306746, "ils": 3343937.3722362635, "inr": 70633446.01240358, "jpy": 97909978.38264711, "krw": 1139737517.53658, "kwd": 289470.5865693214, "lkr": 172767241.551407, "ltc": 18959.26866248514, "mmk": 1293913602.6185386, "mxn": 19730822.82924844, "myr": 4002183.9434839347, "ngn": 347789072.9785096, "nok": 9079474.535982296, "nzd": 1496809.2032870513, "php": 47991286.072460495, "pkr": 149039924.6648446, "pln": 3606231.0658696224, "rub": 70869069.55079521, "sar": 3562417.234250269, "sek": 8986003.257159969, "sgd": 1315297.4692840143, "thb": 29853871.454610787, "try": 5842951.32073827, "twd": 28393442.981145933, "uah": 23755133.369771004, "usd": 948946.9931200808, "vef": 235801600932.09525, "vnd": 22043814353.2724, "xag": 56200.673957292, "xau": 570.554379613448, "xdr": 679964.172132221, "xlm": 18306891.212814618, "xrp": 4541852.773599532, "zar": 15270075.434491135, "bits": 119738252.76193175, "link": 233594.32908650776, "sats": 11973825276.193174}}, "community_data": {"facebook_likes": null, "twitter_followers": 25178, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 4328, "reddit_accounts_active_48h": "217.461538461538"}, "developer_data": {"forks": 367, "stars": 1754, "subscribers": 205, "total_issues": 2251, "closed_issues": 1896, "pull_requests_merged": 3260, "pull_request_contributors": 75, "code_additions_deletions_4_weeks": {"additions": 2783, "deletions": -1718}, "commit_count_4_weeks": 147}, "public_interest_stats": {"alexa_rank": 1576973, "bing_matches": null}}, "STORJ_20200319": {"id": "storj", "symbol": "storj", "name": "Storj", "localization": {"en": "Storj", "de": "Storj", "es": "Storj", "fr": "Storj", "it": "Storj", "pl": "Storj", "ro": "Storj", "hu": "Storj", "nl": "Storj", "pt": "Storj", "sv": "Storj", "vi": "Storj", "tr": "Storj", "ru": "Storj", "ja": "\u30b9\u30c8\u30ec\u30fc\u30b8", "zh": "Storj", "zh-tw": "Storj", "ko": "\uc2a4\ud1a0\ub9ac\uc9c0", "ar": "Storj", "th": "Storj", "id": "Storj"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/949/thumb/storj.png?1547034811", "small": "https://assets.coingecko.com/coins/images/949/small/storj.png?1547034811"}, "market_data": {"current_price": {"aed": 0.2988871218579407, "ars": 5.092459015657269, "aud": 0.13174513808361285, "bch": 0.00045681164949266907, "bdt": 6.899197389504823, "bhd": 0.030727251902588213, "bmd": 0.08137449094045385, "bnb": 0.007819088631620612, "brl": 0.3954473134252472, "btc": 1.5143370842186548e-05, "cad": 0.1123985969859928, "chf": 0.0769879990063086, "clp": 68.2732040021276, "cny": 0.5702887074088876, "czk": 1.915173056630866, "dkk": 0.5447843144583306, "eos": 0.03975069790977569, "eth": 0.0006563501649470104, "eur": 0.07289852396409612, "gbp": 0.06562584158527501, "hkd": 0.6318570541268904, "huf": 24.682682454983325, "idr": 1189.084586118399, "ils": 0.298555683556341, "inr": 6.015659694957431, "jpy": 8.680713333012944, "krw": 98.61042007631242, "kwd": 0.025074817012882413, "lkr": 15.00532096639022, "ltc": 0.002238837709481387, "mmk": 113.57585582421514, "mxn": 1.7750210385137024, "myr": 0.34816075948873126, "ngn": 29.86366788421532, "nok": 0.8256919866664512, "nzd": 0.134538073361671, "php": 4.1309155713453665, "pkr": 12.80270814441447, "pln": 0.318936982680759, "rub": 5.944114510152161, "sar": 0.30560694594531246, "sek": 0.7886654540456716, "sgd": 0.11490371068959457, "thb": 2.5809238882263132, "try": 0.511909020118388, "twd": 2.4426180131851103, "uah": 2.1267669139497927, "usd": 0.08137449094045385, "vef": 20220.55539235501, "vnd": 1887.1348421955388, "xag": 0.005504237294294872, "xau": 5.22139421119422e-05, "xdr": 0.0588577624247755, "xlm": 2.134968103532047, "xrp": 0.5322833453896717, "zar": 1.3180135158195452, "bits": 15.143370842186547, "link": 0.038635150020230546, "sats": 1514.3370842186548}, "market_cap": {"aed": 43105147.772526555, "ars": 732590915.1338698, "aud": 18936544.041394573, "bch": 65156.96111155494, "bdt": 994994100.5748116, "bhd": 4431447.985016364, "bmd": 11735732.992101135, "bnb": 1116371.2423166956, "brl": 57030944.576948665, "btc": 2172.322380994617, "cad": 16228042.488414543, "chf": 11091582.079630695, "clp": 9846279980.372854, "cny": 82246363.95524332, "czk": 275586685.3978813, "dkk": 78384145.96327579, "eos": 5691840.607631069, "eth": 93850.63161121124, "eur": 10487661.259857178, "gbp": 9454259.555504706, "hkd": 91152142.29362905, "huf": 3550792021.0143614, "idr": 171076198329.32993, "ils": 43057348.1320498, "inr": 867571337.5955327, "jpy": 1247894962.7657795, "krw": 14221478338.971968, "kwd": 3616260.4999190406, "lkr": 2164049670.6909513, "ltc": 320041.9459718214, "mmk": 16379775810.551222, "mxn": 256016177.06025293, "myr": 50211333.60670475, "ngn": 4306902917.652614, "nok": 118898313.81300518, "nzd": 19322567.506703746, "php": 594350212.1611373, "pkr": 1846391450.4680908, "pln": 45886176.15539775, "rub": 857253175.5272804, "sar": 44074272.86728143, "sek": 113474210.58858496, "sgd": 16557088.970047077, "thb": 372184888.4723576, "try": 73992446.90590358, "twd": 352271485.4881661, "uah": 306719812.9302426, "usd": 11735732.992101135, "vef": 2916184621177.1216, "vnd": 271520746065.8162, "xag": 789860.9517990653, "xau": 7522.722205266759, "xdr": 8488396.994521799, "xlm": 305974044.7123941, "xrp": 76120758.84617974, "zar": 191149600.4292688, "bits": 2172322380.994617, "link": 5542227.153826546, "sats": 217232238099.4617}, "total_volume": {"aed": 5368482.239856046, "ars": 91468563.82706517, "aud": 2366349.6426099613, "bch": 8205.054844839864, "bdt": 123920423.28415167, "bhd": 551909.7145879428, "bmd": 1461613.6910669205, "bnb": 140443.11507896555, "brl": 7102854.969881417, "btc": 271.99872952864234, "cad": 2018855.372399875, "chf": 1382825.4050499566, "clp": 1226293996.4261732, "cny": 10243281.069735175, "czk": 34399516.70336734, "dkk": 9785182.106680982, "eos": 713984.9800954015, "eth": 11789.08004380115, "eur": 1309372.0090053892, "gbp": 1178743.2085936666, "hkd": 11349145.296464873, "huf": 443339751.70253384, "idr": 21357827137.48798, "ils": 5362529.087292343, "inr": 108050698.3126105, "jpy": 155919248.26962385, "krw": 1771198054.816301, "kwd": 450383.1043790524, "lkr": 269519136.892399, "ltc": 40213.04232366174, "mmk": 2040000790.527706, "mxn": 31882166.288719535, "myr": 6253514.1772298105, "ngn": 536398388.98636025, "nok": 14830725.186336868, "nzd": 2416515.1477147583, "php": 74197733.04803967, "pkr": 229956750.4551666, "pln": 5728609.237198022, "rub": 106765634.40090118, "sar": 5489180.836850661, "sek": 14165670.494309746, "sgd": 2063851.149879368, "thb": 46357447.48798069, "try": 9194690.175489958, "twd": 43873256.703142025, "uah": 38200074.780336596, "usd": 1461613.6910669205, "vef": 363192939960.3848, "vnd": 33895906325.9859, "xag": 98864.74858699323, "xau": 937.8444248730895, "xdr": 1057177.8746802472, "xlm": 38347381.02874349, "xrp": 9560645.064037897, "zar": 23673593.253477503, "bits": 271998729.52864236, "link": 693947.9875495052, "sats": 27199872952.864235}}, "community_data": {"facebook_likes": null, "twitter_followers": 82314, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 8000, "reddit_accounts_active_48h": "60.6666666666667"}, "developer_data": {"forks": 214, "stars": 962, "subscribers": 85, "total_issues": 199, "closed_issues": 150, "pull_requests_merged": 2952, "pull_request_contributors": 60, "code_additions_deletions_4_weeks": {"additions": 13362, "deletions": -6651}, "commit_count_4_weeks": 132}, "public_interest_stats": {"alexa_rank": 127597, "bing_matches": null}}, "BRD_20200324": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.4023961891783609, "ars": 6.941865605966953, "aud": 0.18911656805767754, "bch": 0.0005124908257932766, "bdt": 9.27634984254381, "bhd": 0.04137932149230449, "bmd": 0.10955518354978527, "bnb": 0.0092282691602615, "brl": 0.5547764939777571, "btc": 1.7668788584200138e-05, "cad": 0.1573924544467991, "chf": 0.10805427753515323, "clp": 93.65733276522141, "cny": 0.7773816714325669, "czk": 2.793218959785332, "dkk": 0.7649581136180212, "eos": 0.04982544067550575, "eth": 0.0008287189503771563, "eur": 0.10179341790565014, "gbp": 0.09403877334844568, "hkd": 0.8497499912541296, "huf": 35.97244451857195, "idr": 1728.7127078690364, "ils": 0.39523401905379457, "inr": 8.284847823512, "jpy": 12.160516076297304, "krw": 137.48627759580305, "kwd": 0.0340957642243642, "lkr": 20.451903867702214, "ltc": 0.0028781203679431855, "mmk": 155.80861055690215, "mxn": 2.675644446354876, "myr": 0.4814402541095306, "ngn": 40.48379069050382, "nok": 1.2923710094005492, "nzd": 0.19183200283714294, "php": 5.574005597341419, "pkr": 17.38914650893967, "pln": 0.4648168983336041, "rub": 8.761938736834594, "sar": 0.4117016969138959, "sek": 1.1372381306144648, "sgd": 0.15882214959212373, "thb": 3.558571472064119, "try": 0.7178603402099676, "twd": 3.3161806284602298, "uah": 2.9983012238520774, "usd": 0.10955518354978527, "vef": 27223.10925556619, "vnd": 2557.5258758573914, "xag": 0.008698662949471754, "xau": 7.311603394929122e-05, "xdr": 0.08117173615089046, "xlm": 2.746662862930864, "xrp": 0.692752362667008, "zar": 1.9329160654757656, "bits": 17.668788584200136, "link": 0.048703238758230814, "sats": 1766.8788584200138}, "market_cap": {"aed": 24744454.78515701, "ars": 426874518.77271146, "aud": 11629300.906110333, "bch": 31563.654691167383, "bdt": 570428412.1547219, "bhd": 2544528.9424770363, "bmd": 6736851.2891797, "bnb": 569196.9067407658, "brl": 34114741.24327701, "btc": 1089.7408943033854, "cad": 9678497.404600007, "chf": 6644556.426517928, "clp": 5759248467.634472, "cny": 47803349.37776124, "czk": 171762760.46892577, "dkk": 47039390.44156829, "eos": 3066269.828659587, "eth": 51267.94809836992, "eur": 6258979.479833019, "gbp": 5782704.304241889, "hkd": 52253477.54959829, "huf": 2212045120.8021545, "idr": 106303326390.17943, "ils": 24304033.132126875, "inr": 509458210.3011205, "jpy": 747783772.0792574, "krw": 8454411525.35606, "kwd": 2096642.8582185032, "lkr": 1257644143.0970354, "ltc": 177324.38003001147, "mmk": 9581102462.564589, "mxn": 164532778.4022291, "myr": 29605092.99030011, "ngn": 2489460276.247571, "nok": 79471468.33834693, "nzd": 11796280.50216399, "php": 342761023.0535551, "pkr": 1069306720.8750467, "pln": 28582876.859936543, "rub": 538795850.2952399, "sar": 25316676.19680865, "sek": 69931918.49158634, "sgd": 9766413.313923804, "thb": 218826403.57513514, "try": 44143218.072349906, "twd": 203921120.09782454, "uah": 184373836.1871108, "usd": 6736851.2891797, "vef": 1674024292976.5005, "vnd": 157269340761.50394, "xag": 534904.8470961486, "xau": 4496.107181885642, "xdr": 4991474.5940303095, "xlm": 169156771.7800805, "xrp": 42527182.938466944, "zar": 118860355.71889709, "bits": 1089740894.3033855, "link": 3003822.8544613263, "sats": 108974089430.33855}, "total_volume": {"aed": 1688144.506539084, "ars": 29122721.84230693, "aud": 793387.4724658087, "bch": 2150.0168129850745, "bdt": 38916419.8085481, "bhd": 173595.7649205912, "bmd": 459609.17684156983, "bnb": 38714.71029476948, "brl": 2327414.910608023, "btc": 74.1246293771361, "cad": 660297.5239094417, "chf": 453312.5311188404, "clp": 392914038.5935191, "cny": 3261294.797032413, "czk": 11718195.572752692, "dkk": 3209175.1163785793, "eos": 209029.1762801994, "eth": 3476.6664823556043, "eur": 427046.7858806985, "gbp": 394514.2695163216, "hkd": 3564896.53293276, "huf": 150912673.21592924, "idr": 7252347163.456569, "ils": 1658097.5566030703, "inr": 34756840.936619334, "jpy": 51016160.100319006, "krw": 576786536.4773281, "kwd": 143039.56801663348, "lkr": 85800437.705496, "ltc": 12074.376495021776, "mmk": 653652934.7362576, "mxn": 11224943.463775452, "myr": 2019752.5276302753, "ngn": 169838807.3644493, "nok": 5421793.442886886, "nzd": 804779.3455230056, "php": 23384234.696117338, "pkr": 72951466.59417818, "pln": 1950013.7291822203, "rub": 36758346.979928955, "sar": 1727183.2504108292, "sek": 4770975.358249803, "sgd": 666295.4236672239, "thb": 14929025.282167844, "try": 3011589.1312543843, "twd": 13912139.978405915, "uah": 12578562.809777936, "usd": 459609.17684156983, "vef": 114207200705.68875, "vnd": 10729408910.347578, "xag": 36492.8905076606, "xau": 306.7385685322954, "xdr": 340534.0909146328, "xlm": 11522882.045278067, "xrp": 2906255.39425752, "zar": 8109027.185860652, "bits": 74124629.3771361, "link": 204321.28129306374, "sats": 7412462937.713611}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 253, "stars": 201, "subscribers": 29, "total_issues": 33, "closed_issues": 27, "pull_requests_merged": 386, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "ELF_20200410": {"id": "aelf", "symbol": "elf", "name": "aelf", "localization": {"en": "aelf", "de": "aelf", "es": "aelf", "fr": "aelf", "it": "aelf", "pl": "aelf", "ro": "aelf", "hu": "aelf", "nl": "aelf", "pt": "aelf", "sv": "aelf", "vi": "aelf", "tr": "aelf", "ru": "aelf", "ja": "\u30a8\u30eb\u30d5", "zh": "aelf", "zh-tw": "aelf", "ko": "\uc5d8\ud504", "ar": "aelf", "th": "aelf", "id": "aelf"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1371/thumb/aelf-logo.png?1547035397", "small": "https://assets.coingecko.com/coins/images/1371/small/aelf-logo.png?1547035397"}, "market_data": {"current_price": {"aed": 0.24952866556582334, "ars": 4.408679419477278, "aud": 0.11114419248799565, "bch": 0.0002652818348460918, "bdt": 5.770312892618961, "bhd": 0.025703925286435246, "bmd": 0.06793222954530748, "bnb": 0.0044953181911195905, "brl": 0.35909655859945044, "btc": 9.336678396094036e-06, "cad": 0.09589619217648605, "chf": 0.06644043778449255, "clp": 57.78317822751895, "cny": 0.4817957516041849, "czk": 1.733834294684884, "dkk": 0.4695553148913334, "eos": 0.024723601075286577, "eth": 0.0004011258440211915, "eur": 0.06290055723511617, "gbp": 0.05551632388354117, "hkd": 0.5265800739319288, "huf": 22.88899052167126, "idr": 1111.7715660238266, "ils": 0.2435947853150407, "inr": 5.161144889939617, "jpy": 7.412900752443046, "krw": 83.1565215087064, "kwd": 0.021195670804890474, "lkr": 13.127474843126695, "ltc": 0.0015247779428964154, "mmk": 96.83420522523559, "mxn": 1.6691677032782777, "myr": 0.2964222836209492, "ngn": 25.795860554103648, "nok": 0.7078678938336198, "nzd": 0.11423653550912753, "php": 3.4341631909778934, "pkr": 11.341731969404997, "pln": 0.2869428165135089, "rub": 5.16269999453837, "sar": 0.25546893144618305, "sek": 0.6878151827908295, "sgd": 0.09725177981706233, "thb": 2.2296238817787137, "try": 0.4595547396510505, "twd": 2.053047909250509, "uah": 1.8493932669065745, "usd": 0.06793222954530748, "vef": 16880.319551887886, "vnd": 1593.1027339333352, "xag": 0.004461445778776589, "xau": 4.082862860132072e-05, "xdr": 0.050011979120173584, "xlm": 1.372884768013664, "xrp": 0.34973960451496416, "zar": 1.2676017489373015, "bits": 9.336678396094035, "link": 0.026927590011672973, "sats": 933.6678396094036}, "market_cap": {"aed": 115104343.89334708, "ars": 2034157670.5626304, "aud": 51294446.51431883, "bch": 122355.2849042356, "bdt": 2661770654.9190817, "bhd": 11856888.060815945, "bmd": 31336258.274351228, "bnb": 2077344.9569317321, "brl": 165652862.1157031, "btc": 4308.38038923686, "cad": 44231473.25308771, "chf": 30652187.756222155, "clp": 26654632569.21614, "cny": 222246144.5591813, "czk": 799889328.7110903, "dkk": 216623041.02939862, "eos": 11393435.665124288, "eth": 185215.2053584245, "eur": 29018691.28489679, "gbp": 25610215.136137318, "hkd": 242910840.07820222, "huf": 10565550783.456566, "idr": 513097025716.59357, "ils": 112367121.73308234, "inr": 2380787639.832907, "jpy": 3421590372.847277, "krw": 38359026802.85351, "kwd": 9777288.616696894, "lkr": 6055534242.401168, "ltc": 703670.3294590958, "mmk": 44668365590.8231, "mxn": 769740714.6253352, "myr": 136735762.9801319, "ngn": 11899296609.916414, "nok": 326313764.2795268, "nzd": 52704609.472922884, "php": 1584281592.9189234, "pkr": 5231794166.783561, "pln": 132383532.74092373, "rub": 2381489822.7083163, "sar": 117839215.83424088, "sek": 317300390.9670421, "sgd": 44862209.459634095, "thb": 1028482914.4100642, "try": 211967851.84519437, "twd": 947201047.5225551, "uah": 853101178.1967013, "usd": 31336258.274351228, "vef": 7786672935248.571, "vnd": 734938845773.9363, "xag": 2062748.997957181, "xau": 18832.464497719626, "xdr": 23069878.686610464, "xlm": 634378165.6165191, "xrp": 161413453.05460557, "zar": 584856790.8066648, "bits": 4308380389.236859, "link": 12425650.302385516, "sats": 430838038923.686}, "total_volume": {"aed": 150764987.81100115, "ars": 2663720007.6107826, "aud": 67153217.79852174, "bch": 160283.03804839082, "bdt": 3486417686.515751, "bhd": 15530287.76760736, "bmd": 41044589.95181345, "bnb": 2716067.0729108523, "brl": 216965806.94428146, "btc": 5641.212408964819, "cad": 57940390.182528, "chf": 40143250.75647165, "clp": 34912542578.61905, "cny": 291100545.315247, "czk": 1047581069.3401355, "dkk": 283704884.8301891, "eos": 14937976.790391516, "eth": 242359.86213207053, "eur": 38004458.21867263, "gbp": 33542911.29091046, "hkd": 318159191.24098, "huf": 13829506799.071884, "idr": 671731346857.9595, "ils": 147179742.8787102, "inr": 3118358945.4867516, "jpy": 4478867744.72179, "krw": 50243093005.914406, "kwd": 12806404.600045217, "lkr": 7931608098.914533, "ltc": 921269.4158965092, "mmk": 58507136794.7483, "mxn": 1008509574.9164852, "myr": 179098068.25473803, "ngn": 15585834970.883574, "nok": 427693123.52801627, "nzd": 69021608.57771821, "php": 2074918208.1134193, "pkr": 6852663914.366668, "pln": 173370583.03909245, "rub": 3119298538.2399297, "sar": 154354090.9347474, "sek": 415577294.1539105, "sgd": 58759434.97501623, "thb": 1347136677.0516865, "try": 277662546.5650228, "twd": 1240449638.5682943, "uah": 1117401692.9504485, "usd": 41044589.95181345, "vef": 10199073383874.783, "vnd": 962551191136.6895, "xag": 2695601.3928558496, "xau": 24668.619452838935, "xdr": 30217191.3008849, "xlm": 829495700.8091279, "xrp": 211312343.98323524, "zar": 765883798.5382603, "bits": 5641212408.964819, "link": 16269624.857263505, "sats": 564121240896.4818}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 33428, "reddit_accounts_active_48h": "127.5"}, "developer_data": {"forks": 185, "stars": 678, "subscribers": 152, "total_issues": 715, "closed_issues": 689, "pull_requests_merged": 1430, "pull_request_contributors": 37, "code_additions_deletions_4_weeks": {"additions": 11626, "deletions": -7891}, "commit_count_4_weeks": 368}, "public_interest_stats": {"alexa_rank": 699270, "bing_matches": null}}, "RLC_20200420": {"id": "iexec-rlc", "symbol": "rlc", "name": "iExec RLC", "localization": {"en": "iExec RLC", "de": "iExec RLC", "es": "iExec RLC", "fr": "iExec RLC", "it": "iExec RLC", "pl": "iExec RLC", "ro": "iExec RLC", "hu": "iExec RLC", "nl": "iExec RLC", "pt": "iExec RLC", "sv": "iExec RLC", "vi": "iExec RLC", "tr": "iExec RLC", "ru": "iExec RLC", "ja": "\u30a2\u30a4\u30a8\u30b0\u30bc\u30c3\u30af", "zh": "\u4e91\u7b97\u5b9d", "zh-tw": "\u96f2\u7b97\u5bf6", "ko": "\uc544\uc774\uc81d", "ar": "iExec RLC", "th": "iExec RLC", "id": "iExec RLC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/646/thumb/pL1VuXm.png?1604543202", "small": "https://assets.coingecko.com/coins/images/646/small/pL1VuXm.png?1604543202"}, "market_data": {"current_price": {"aed": 1.1571529045986029, "ars": 20.690046406728126, "aud": 0.49522849146564685, "bch": 0.0013474254344318368, "bdt": 26.766132755642097, "bhd": 0.1189991197851178, "bmd": 0.31502583703544657, "bnb": 0.020126282535237988, "brl": 1.64834118970427, "btc": 4.44395300888916e-05, "cad": 0.4422994254561375, "chf": 0.3053227262289176, "clp": 268.62259204011184, "cny": 2.230319921043556, "czk": 7.877157734878111, "dkk": 2.1641799315321277, "eos": 0.11912263562666901, "eth": 0.0018341284109325503, "eur": 0.29007894100060977, "gbp": 0.25226796491042996, "hkd": 2.441768413120117, "huf": 101.91085828096689, "idr": 4910.99290306706, "ils": 1.130848247206143, "inr": 24.2126968190422, "jpy": 33.996044706263916, "krw": 386.7320180614549, "kwd": 0.0981305482365414, "lkr": 60.50081344097706, "ltc": 0.007431894386765595, "mmk": 449.0336974915494, "mxn": 7.491323855478044, "myr": 1.368157210244946, "ngn": 121.7574860142001, "nok": 3.270481680542305, "nzd": 0.5248447004570236, "php": 16.0819817185027, "pkr": 52.72156731137881, "pln": 1.3140017486518543, "rub": 23.274908060727377, "sar": 1.1838418935122472, "sek": 3.1519349378591683, "sgd": 0.4486683028034842, "thb": 10.268109645251842, "try": 2.180199310371214, "twd": 9.471251790470697, "uah": 8.575114173199491, "usd": 0.31502583703544657, "vef": 78280.0274899355, "vnd": 7400.4913536101885, "xag": 0.020337579748961013, "xau": 0.00018362541014959132, "xdr": 0.2306994059519611, "xlm": 6.428644011384109, "xrp": 1.6708205859914644, "zar": 5.882215983518159, "bits": 44.439530088891594, "link": 0.09120019425482426, "sats": 4443.95300888916}, "market_cap": {"aed": 81293048.15083031, "ars": 1454023942.690374, "aud": 34738857.43564864, "bch": 94231.3584614633, "bdt": 1880391528.439117, "bhd": 8360002.499370367, "bmd": 22131397.187964223, "bnb": 1414751.5575625726, "brl": 115855651.13927387, "btc": 3116.653916949964, "cad": 31041276.381866753, "chf": 21444195.173880745, "clp": 18871446675.668167, "cny": 156685865.81134927, "czk": 553118944.2201961, "dkk": 151973892.1674568, "eos": 8314760.269934625, "eth": 128436.0209405031, "eur": 20369627.314816326, "gbp": 17720853.17377201, "hkd": 171541566.1737701, "huf": 7153974141.009419, "idr": 344890249453.52625, "ils": 79445076.48563533, "inr": 1701205091.60331, "jpy": 2389714420.376203, "krw": 27167175149.193825, "kwd": 6893531.858901484, "lkr": 4250341956.258422, "ltc": 520754.5154513661, "mmk": 31545803364.84413, "mxn": 525853284.19859505, "myr": 96116657.98732851, "ngn": 8553785013.148172, "nok": 229347669.05887324, "nzd": 36827618.70224887, "php": 1129495795.8766193, "pkr": 3703829366.887224, "pln": 92270353.94444367, "rub": 1635123771.6014636, "sar": 83169702.10678075, "sek": 221277455.0742823, "sgd": 31508470.176504653, "thb": 720758922.1209064, "try": 153106975.4406864, "twd": 665314062.2645799, "uah": 602424421.7081966, "usd": 22131397.187964223, "vef": 5499378706736.33, "vnd": 519669730969.71906, "xag": 1432467.9618292982, "xau": 12913.670259177132, "xdr": 16207242.657292768, "xlm": 450297530.3053928, "xrp": 117143347.52751534, "zar": 412813632.03751934, "bits": 3116653916.9499636, "link": 6396094.695023474, "sats": 311665391694.9964}, "total_volume": {"aed": 2497307.673306723, "ars": 44652190.257015, "aud": 1068776.5695115952, "bch": 2907.944026448701, "bdt": 57765286.203553416, "bhd": 256817.7582885699, "bmd": 679872.5017169557, "bnb": 43435.50416772605, "brl": 3557364.877983798, "btc": 95.90710013179358, "cad": 954547.7911356234, "chf": 658931.7487915715, "clp": 579727413.4294411, "cny": 4813361.337655706, "czk": 17000075.251059663, "dkk": 4670621.426047732, "eos": 257084.32380264756, "eth": 3958.321269599702, "eur": 626033.3983059905, "gbp": 544431.7012874121, "hkd": 5269698.559533142, "huf": 219938754.30543503, "idr": 10598651406.95343, "ils": 2440538.319413357, "inr": 52254592.55846419, "jpy": 73368509.01003544, "krw": 834625080.5577692, "kwd": 211780.2842848313, "lkr": 130569732.87368697, "ltc": 16039.130875027224, "mmk": 969081349.4591043, "mxn": 16167388.48700429, "myr": 2952686.2749567423, "ngn": 262770721.91360337, "nok": 7058184.759999803, "nzd": 1132692.7431430104, "php": 34707302.887967646, "pkr": 113780965.39552356, "pln": 2835810.752931579, "rub": 50230705.2633856, "sar": 2554906.4716521865, "sek": 6802343.298623696, "sgd": 968292.7735028374, "thb": 22160104.257213272, "try": 4705193.622632533, "twd": 20440366.764120266, "uah": 18506368.81185614, "usd": 679872.5017169557, "vef": 168939914976.13632, "vnd": 15971358469.71031, "xag": 43891.51490846898, "xau": 396.29088252579606, "xdr": 497883.5505848591, "xlm": 13873967.69673738, "xrp": 3605878.7507971637, "zar": 12694694.9303843, "bits": 95907100.13179359, "link": 196823.55202542638, "sats": 9590710013.179358}}, "community_data": {"facebook_likes": null, "twitter_followers": 30583, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3567, "reddit_accounts_active_48h": "231.230769230769"}, "developer_data": {"forks": 18, "stars": 384, "subscribers": 39, "total_issues": 51, "closed_issues": 41, "pull_requests_merged": 49, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 508763, "bing_matches": null}}, "ARK_20200602": {"id": "ark", "symbol": "ark", "name": "Ark", "localization": {"en": "Ark", "de": "Ark", "es": "Ark", "fr": "Ark", "it": "Ark", "pl": "Ark", "ro": "Ark", "hu": "Ark", "nl": "Ark", "pt": "Ark", "sv": "Ark", "vi": "Ark", "tr": "Ark", "ru": "Ark", "ja": "\u30a2\u30fc\u30af", "zh": "Ark", "zh-tw": "Ark", "ko": "\uc544\ud06c", "ar": "Ark", "th": "Ark", "id": "Ark"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/613/thumb/ark.png?1547034308", "small": "https://assets.coingecko.com/coins/images/613/small/ark.png?1547034308"}, "market_data": {"current_price": {"aed": 0.7939550902869015, "ars": 14.792989745759721, "aud": 0.32417932422256346, "bch": 0.0009085617806709607, "bdt": 18.33502012246938, "bhd": 0.08151974068777888, "bmd": 0.21616278203811728, "bnb": 0.012708510782516681, "brl": 1.1532068258951513, "btc": 2.2919474511709966e-05, "cad": 0.29771019156199763, "chf": 0.2078297067905479, "clp": 172.71402307450373, "cny": 1.5428186242406545, "czk": 5.239375127318082, "dkk": 1.4520626802019507, "eos": 0.08262714760655564, "eth": 0.0009794369384465958, "eur": 0.19465350441141432, "gbp": 0.17512276472870641, "hkd": 1.6754582689270618, "huf": 67.45446078612268, "idr": 3167.7466812384764, "ils": 0.7577478242955185, "inr": 16.32530502042113, "jpy": 23.29910292855064, "krw": 266.2239261343953, "kwd": 0.06661812698241723, "lkr": 40.242428738920545, "ltc": 0.004855141853074778, "mmk": 302.70952916032724, "mxn": 4.792436743013284, "myr": 0.9397676949107153, "ngn": 83.76307803977045, "nok": 2.1006699158464235, "nzd": 0.34845310766875287, "php": 10.903910238650637, "pkr": 34.79139976903488, "pln": 0.8658508315927799, "rub": 15.163999223571366, "sar": 0.8119244861949491, "sek": 2.0421676205156256, "sgd": 0.3055979714785667, "thb": 6.872438686780708, "try": 1.4742301734999588, "twd": 6.476128868470972, "uah": 5.8024004912747165, "usd": 0.21616278203811728, "vef": 53713.78004890681, "vnd": 5045.387821469511, "xag": 0.012103213561652622, "xau": 0.0001249723508075171, "xdr": 0.15788918693071746, "xlm": 3.1932928770573694, "xrp": 1.0908505084250608, "zar": 3.7938773108066246, "bits": 22.919474511709968, "link": 0.054301184172853574, "sats": 2291.947451170997}, "market_cap": {"aed": 118319169.85390814, "ars": 2204525530.2074876, "aud": 48310828.90589479, "bch": 135489.48841018745, "bdt": 2732376662.968878, "bhd": 12148480.64189428, "bmd": 32213662.0029971, "bnb": 1894572.843336842, "brl": 171856665.4197894, "btc": 3415.8830059648694, "cad": 44366265.99362782, "chf": 30971825.332781557, "clp": 25738710013.0809, "cny": 229918569.8139913, "czk": 780797960.994845, "dkk": 216393663.82203296, "eos": 12321640.750205707, "eth": 145945.16248914553, "eur": 29008241.565388907, "gbp": 26088169.7458032, "hkd": 249685194.95565063, "huf": 10052402082.683252, "idr": 472073499139.82275, "ils": 112923381.46840629, "inr": 2432878838.1847515, "jpy": 3472149181.448921, "krw": 39674024791.61274, "kwd": 9927767.42439365, "lkr": 5997128577.604503, "ltc": 724155.215470038, "mmk": 45111292358.07886, "mxn": 714192961.2237859, "myr": 140048895.55802983, "ngn": 12482794026.161377, "nok": 313052367.3451259, "nzd": 51928229.86685942, "php": 1624955395.3139477, "pkr": 5184788899.382384, "pln": 129033433.83610502, "rub": 2259815223.490696, "sar": 120997059.36255525, "sek": 304334061.86063474, "sgd": 45541742.52011727, "thb": 1024165283.7038186, "try": 219697174.86044025, "twd": 965105206.7787933, "uah": 864702824.7396829, "usd": 32213662.0029971, "vef": 8004696919073.234, "vnd": 751888999680.7927, "xag": 1803681.5919422114, "xau": 18624.006550412756, "xdr": 23529438.572905164, "xlm": 476793052.7103313, "xrp": 162665622.63498285, "zar": 565382626.087844, "bits": 3415883005.9648695, "link": 8092964.440569992, "sats": 341588300596.48694}, "total_volume": {"aed": 4569037.312439087, "ars": 85130409.68914366, "aud": 1865580.870271822, "bch": 5228.573665346275, "bdt": 105514017.21426326, "bhd": 469128.21828275814, "bmd": 1243969.3740560298, "bnb": 73134.69069122123, "brl": 6636452.21365151, "btc": 131.8965461732327, "cad": 1713256.8204186703, "chf": 1196014.3546861701, "clp": 993931300.9804025, "cny": 8878582.6134501, "czk": 30151454.085307408, "dkk": 8356302.071752676, "eos": 475501.10208165896, "eth": 5636.444644906171, "eur": 1120188.2014905838, "gbp": 1007793.080605874, "hkd": 9641894.661064612, "huf": 388185619.05168045, "idr": 18229686993.63532, "ils": 4360672.442284711, "inr": 93948547.83070828, "jpy": 134081224.40330794, "krw": 1532060272.4929054, "kwd": 383372.70154345786, "lkr": 231586346.25650743, "ltc": 27940.275911408542, "mmk": 1742026911.2004972, "mxn": 27579421.76353976, "myr": 5408156.853708592, "ngn": 482038132.44671154, "nok": 12088894.377076494, "nzd": 2005271.1671620759, "php": 62749610.577946395, "pkr": 200216870.75431746, "pln": 4982781.526250126, "rub": 87265487.81651908, "sar": 4672447.242534995, "sek": 11752226.505681962, "sgd": 1758649.2628779644, "thb": 39549376.4968547, "try": 8483871.131062116, "twd": 37268700.4620316, "uah": 33391541.49987121, "usd": 1243969.3740560298, "vef": 309111016779.19464, "vnd": 29035099710.34979, "xag": 69651.33801664591, "xau": 719.1884539167528, "xdr": 908617.6222592567, "xlm": 18376699.744501643, "xrp": 6277605.290604278, "zar": 21832931.363444787, "bits": 131896546.1732327, "link": 312491.39860762213, "sats": 13189654617.32327}}, "community_data": {"facebook_likes": null, "twitter_followers": 61999, "reddit_average_posts_48h": 0.333, "reddit_average_comments_48h": 1.25, "reddit_subscribers": 21942, "reddit_accounts_active_48h": "1917.0"}, "developer_data": {"forks": 190, "stars": 264, "subscribers": 37, "total_issues": 837, "closed_issues": 810, "pull_requests_merged": 2601, "pull_request_contributors": 45, "code_additions_deletions_4_weeks": {"additions": 1275, "deletions": -643}, "commit_count_4_weeks": 8}, "public_interest_stats": {"alexa_rank": 92164, "bing_matches": null}}, "OAX_20200628": {"id": "openanx", "symbol": "oax", "name": "OAX", "localization": {"en": "OAX", "de": "OAX", "es": "OAX", "fr": "OAX", "it": "OAX", "pl": "OAX", "ro": "OAX", "hu": "OAX", "nl": "OAX", "pt": "OAX", "sv": "OAX", "vi": "OAX", "tr": "OAX", "ru": "OAX", "ja": "OAX", "zh": "OAX", "zh-tw": "OAX", "ko": "OAX", "ar": "OAX", "th": "OAX", "id": "OAX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/853/thumb/OAXlogo.png?1598686792", "small": "https://assets.coingecko.com/coins/images/853/small/OAXlogo.png?1598686792"}, "market_data": {"current_price": {"aed": 0.16729686671847302, "ars": 3.192039884559561, "aud": 0.06642886181903873, "bch": 0.00019569547044935606, "bdt": 3.8643850957336032, "bhd": 0.017197117724643683, "bmd": 0.04554526481500406, "bnb": 0.002847953808787937, "brl": 0.24359884886304906, "btc": 4.9000189352270585e-06, "cad": 0.062143097945211806, "chf": 0.04318643000497019, "clp": 37.30617031560508, "cny": 0.32237849341356156, "czk": 1.0824560907522756, "dkk": 0.3018148063495872, "eos": 0.018246642306319356, "eth": 0.00019421106667978966, "eur": 0.04048350071925898, "gbp": 0.03669336041714874, "hkd": 0.35300085221192995, "huf": 14.247469739429555, "idr": 650.9921335802977, "ils": 0.1564857872093353, "inr": 3.44970311119748, "jpy": 4.875928028983686, "krw": 54.93852023045069, "kwd": 0.014001798581017428, "lkr": 8.501074415145501, "ltc": 0.0010697056813790747, "mmk": 63.05185391492021, "mxn": 1.0381400926346305, "myr": 0.19486541551099468, "ngn": 17.648790115814073, "nok": 0.4409901136701544, "nzd": 0.07112439644040662, "php": 2.2804307772822914, "pkr": 7.644694224707171, "pln": 0.18052321162075002, "rub": 3.1639645991507055, "sar": 0.1708820533289158, "sek": 0.4270606409696633, "sgd": 0.06347415830943044, "thb": 1.4058684616771366, "try": 0.3122438066321918, "twd": 1.3450883057815155, "uah": 1.2147794317982772, "usd": 0.04554526481500406, "vef": 11317.435469122342, "vnd": 1062.2422510319238, "xag": 0.002600580422071603, "xau": 2.5858324098718565e-05, "xdr": 0.03295263672736285, "xlm": 0.6602815934613481, "xrp": 0.24766928672669858, "zar": 0.7936592597184369, "bits": 4.900018935227059, "link": 0.00967820217000744, "sats": 490.00189352270587}, "market_cap": {"aed": 8798934.868831586, "ars": 167869410.0491092, "aud": 3493425.310641608, "bch": 10277.04330799815, "bdt": 203246321.53848332, "bhd": 904477.9006256234, "bmd": 2395441.2688749833, "bnb": 149297.94454999664, "brl": 12811057.05462903, "btc": 257.4682164705207, "cad": 3268352.0444593797, "chf": 2271311.897763151, "clp": 1962103006.5245023, "cny": 16955412.389350913, "czk": 56923110.4164032, "dkk": 15871954.30343876, "eos": 957967.7888045149, "eth": 10187.968813728288, "eur": 2129092.1541887745, "gbp": 1930126.8023960178, "hkd": 18566466.414732777, "huf": 749116766.2501987, "idr": 33889378393.02165, "ils": 8230328.974838744, "inr": 181436231.21950972, "jpy": 256391436.43786597, "krw": 2889477076.167751, "kwd": 736420.9275251596, "lkr": 447111781.35708934, "ltc": 56140.533785041065, "mmk": 3316195735.39334, "mxn": 54603005.775434345, "myr": 10248895.468881605, "ngn": 928233491.689056, "nok": 23197992.222070843, "nzd": 3740481.5413482916, "php": 119934934.28650251, "pkr": 402070689.6353603, "pln": 9490656.862279542, "rub": 166407889.04949558, "sar": 8987496.819193626, "sek": 22458507.52516277, "sgd": 3338286.952304178, "thb": 73897834.85326374, "try": 16422033.854658123, "twd": 70744566.99368484, "uah": 63891005.91092557, "usd": 2395441.2688749833, "vef": 595237553029.5342, "vnd": 55866595434.642365, "xag": 136749.51389277377, "xau": 1359.2691936104204, "xdr": 1733135.2942088135, "xlm": 34676493.07546927, "xrp": 13003917.582281599, "zar": 41742791.87052654, "bits": 257468216.4705207, "link": 508534.6575783123, "sats": 25746821647.05207}, "total_volume": {"aed": 329038.00248948944, "ars": 6278075.902340156, "aud": 130651.69975579277, "bch": 384.892125931172, "bdt": 7600438.535947405, "bhd": 33823.13952248417, "bmd": 89578.02528843765, "bnb": 5601.330442146545, "brl": 479108.0682552085, "btc": 9.6373140408, "cad": 122222.49715417634, "chf": 84938.68978072419, "clp": 73373446.86697562, "cny": 634051.178596619, "czk": 2128965.0958201825, "dkk": 593606.7001788893, "eos": 35887.33521659305, "eth": 381.97261368443094, "eur": 79622.59229195661, "gbp": 72168.1777615286, "hkd": 694278.9638993009, "huf": 28021797.87072904, "idr": 1280365588.8552265, "ils": 307774.8666267725, "inr": 6784845.664804428, "jpy": 9589932.258797947, "krw": 108052597.22392543, "kwd": 27538.614002323215, "lkr": 16719838.210007038, "ltc": 2103.887703078923, "mmk": 124009830.38335411, "mxn": 2041804.7814342838, "myr": 383259.58119658014, "ngn": 34711484.799269594, "nok": 867335.4675782352, "nzd": 139886.83585093, "php": 4485131.147346617, "pkr": 15035517.20172672, "pln": 355051.46103325137, "rub": 6222857.678523703, "sar": 336089.3159061196, "sek": 839939.1034800701, "sgd": 124840.41494323121, "thb": 2765049.695590847, "try": 614118.3659874615, "twd": 2645507.8208434302, "uah": 2389217.476361056, "usd": 89578.02528843765, "vef": 22259032300.52856, "vnd": 2089208694.0734618, "xag": 5114.798646119699, "xau": 50.8579238575105, "xdr": 64810.95538853869, "xlm": 1298636.0166487764, "xrp": 487113.7695584292, "zar": 1560962.0347193608, "bits": 9637314.0408, "link": 19035.00270012562, "sats": 963731404.0799999}}, "community_data": {"facebook_likes": null, "twitter_followers": 11843, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 17, "stars": 30, "subscribers": 19, "total_issues": 2, "closed_issues": 2, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "IDEX_20201231": {"id": "aurora-dao", "symbol": "idex", "name": "IDEX", "localization": {"en": "IDEX", "de": "IDEX", "es": "IDEX", "fr": "IDEX", "it": "IDEX", "pl": "IDEX", "ro": "IDEX", "hu": "IDEX", "nl": "IDEX", "pt": "IDEX", "sv": "IDEX", "vi": "IDEX", "tr": "IDEX", "ru": "IDEX", "ja": "\u30a2\u30a4\u30c7\u30c3\u30af\u30b9", "zh": "IDEX", "zh-tw": "IDEX", "ko": "IDEX", "ar": "IDEX", "th": "IDEX", "id": "IDEX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2565/thumb/logomark-purple-286x286.png?1638362736", "small": "https://assets.coingecko.com/coins/images/2565/small/logomark-purple-286x286.png?1638362736"}, "market_data": {"current_price": {"aed": 0.1254477216572499, "ars": 2.8447342212819926, "aud": 0.044871614117116904, "bch": 0.00010062177538945324, "bdt": 2.89747622920154, "bhd": 0.01287238646127792, "bmd": 0.03415495157974621, "bnb": 0.0010218942058967673, "brl": 0.1781146569932189, "btc": 1.2987508285199782e-06, "cad": 0.043854172264507836, "chf": 0.03038359598126222, "clp": 24.414007069514973, "cny": 0.22343486224438375, "czk": 0.7337764410013723, "dkk": 0.20816606191541667, "dot": 0.00660796927306332, "eos": 0.012566753660423601, "eth": 4.991369973154681e-05, "eur": 0.027984654647155563, "gbp": 0.025171140510774015, "hkd": 0.26482485721726745, "huf": 10.134427278849765, "idr": 484.62050622857413, "ils": 0.11005241138763092, "inr": 2.5180814559259463, "jpy": 3.535445764840691, "krw": 37.58545052978056, "kwd": 0.010422110234946918, "lkr": 6.4838265116759555, "ltc": 0.00026731331508399853, "mmk": 45.80534163692473, "mxn": 0.6787647340845031, "myr": 0.13868618088955925, "ngn": 13.254295038989724, "nok": 0.29451883057118317, "nzd": 0.04800205204920687, "php": 1.6384650794266278, "pkr": 5.475457853644151, "pln": 0.1260501466932134, "rub": 2.5274538820339845, "sar": 0.12818865652152459, "sek": 0.28205022394748097, "sgd": 0.04538151338925092, "thb": 1.022977857935863, "try": 0.2589373974387084, "twd": 0.9554181682878202, "uah": 0.9694995375701655, "usd": 0.03415495157974621, "vef": 8487.083388906653, "vnd": 789.5956146577703, "xag": 0.001307442324635765, "xau": 1.8088120807117806e-05, "xdr": 0.023718837814651547, "xlm": 0.2357850839430284, "xrp": 0.12032187514978325, "yfi": 1.498360916235143e-06, "zar": 0.4998191212743003, "bits": 1.298750828519978, "link": 0.002798497559377158, "sats": 129.8750828519978}, "market_cap": {"aed": 71231648.46007228, "ars": 1615434354.83788, "aud": 25489192.994509485, "bch": 56475.811483459445, "bdt": 1645243177.4233963, "bhd": 7309190.594606158, "bmd": 19393843.68212372, "bnb": 577584.3722690451, "brl": 101136955.41790746, "btc": 731.6669608325036, "cad": 24895780.16552388, "chf": 17258794.825002432, "clp": 13862720782.763432, "cny": 126870646.59971735, "czk": 417009335.92957675, "dkk": 118208522.0760026, "dot": 3723737.8783253594, "eos": 7064082.676315069, "eth": 28044.729622599527, "eur": 15891121.574695393, "gbp": 14295919.750309654, "hkd": 150372726.97671232, "huf": 5754900161.043245, "idr": 275198544880.11786, "ils": 62489892.814198665, "inr": 1429815469.685557, "jpy": 2008096756.3781369, "krw": 21341747494.35184, "kwd": 5917876.248850604, "lkr": 3681642397.760573, "ltc": 149995.67767570645, "mmk": 26009161027.169415, "mxn": 385423571.81053007, "myr": 78748702.27126372, "ngn": 7526045689.239028, "nok": 167235829.20906812, "nzd": 27261518.793244015, "php": 930412940.3799713, "pkr": 3109071124.1002617, "pln": 71575598.27777472, "rub": 1435137314.9365287, "sar": 72788004.41556272, "sek": 160153973.25010425, "sgd": 25767824.34669053, "thb": 580897283.4791747, "try": 147053625.78126648, "twd": 542504959.012232, "uah": 550500633.4916538, "usd": 19393843.68212372, "vef": 4819130490561.441, "vnd": 448347698195.6536, "xag": 742519.0991822036, "xau": 10270.00992186862, "xdr": 13468015.957363496, "xlm": 132446552.75517409, "xrp": 67531614.1755924, "yfi": 840.8763537864268, "zar": 283821939.8979993, "bits": 731666960.8325037, "link": 1567595.3367546939, "sats": 73166696083.25037}, "total_volume": {"aed": 1880955.8744039934, "ars": 42653780.18787795, "aud": 672802.3837545912, "bch": 1508.7170736258104, "bdt": 43444590.80056636, "bhd": 193007.81721721965, "bmd": 512117.3662239628, "bnb": 15322.222549825348, "brl": 2670640.853121349, "btc": 19.473394717890645, "cad": 657546.9195321455, "chf": 455569.87876287906, "clp": 366062208.29273146, "cny": 3350169.3863639194, "czk": 11002201.466614053, "dkk": 3121229.8783803363, "dot": 99079.50864192695, "eos": 188425.17669905882, "eth": 748.4031234923918, "eur": 419600.29131140624, "gbp": 377414.62326870806, "hkd": 3970768.574275102, "huf": 151955015.77904412, "idr": 7266371808.153067, "ils": 1650119.483695909, "inr": 37755967.53915173, "jpy": 53010269.07593501, "krw": 563554068.8356991, "kwd": 156268.51736431243, "lkr": 97218119.26624511, "ltc": 4008.0803674332374, "mmk": 686802640.1185434, "mxn": 10177359.118588071, "myr": 2079452.565552397, "ngn": 198734132.31678748, "nok": 4415998.291296556, "nzd": 719739.988838481, "php": 24567050.524629537, "pkr": 82098697.99790214, "pln": 1889988.6005094505, "rub": 37896497.15349976, "sar": 1922053.2930434674, "sek": 4229044.725582835, "sgd": 680447.7839149487, "thb": 15338470.765750038, "try": 3882492.3432722418, "twd": 14325484.69125123, "uah": 14536619.926880663, "usd": 512117.3662239628, "vef": 127254836883.6632, "vnd": 11839150924.17569, "xag": 19603.714507364508, "xau": 271.21223597854856, "xdr": 355638.8807394977, "xlm": 3535347.8953664764, "xrp": 1804099.228686224, "yfi": 22.466336814551173, "zar": 7494258.9620638555, "bits": 19473394.717890646, "link": 41960.51035663822, "sats": 1947339471.7890646}}, "community_data": {"facebook_likes": null, "twitter_followers": 44312, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1948, "reddit_accounts_active_48h": "11.8461538461538"}, "developer_data": {"forks": 22, "stars": 34, "subscribers": 16, "total_issues": 12, "closed_issues": 6, "pull_requests_merged": 2, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 3, "deletions": -3}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 96261, "bing_matches": null}}, "NEBL_20210824": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 6.196785367477749, "ars": 164.04291888860172, "aud": 2.3646314785334526, "bch": 0.0024384366438361116, "bdt": 143.63727871779918, "bhd": 0.6360946443536336, "bmd": 1.687164193818989, "bnb": 0.003721944027096939, "brl": 9.077672217677891, "btc": 3.432807150274053e-05, "cad": 2.163113212895326, "chf": 1.5470452075223198, "clp": 1327.1745214865202, "cny": 10.969098006114152, "czk": 36.86824939617126, "dkk": 10.723784332332867, "dot": 0.06011358137626246, "eos": 0.3101032563696805, "eth": 0.0005156221351021238, "eur": 1.4419584985461122, "gbp": 1.2382857242324785, "hkd": 13.144384108667888, "huf": 505.11755724117523, "idr": 24301.40689851056, "ils": 5.46428616108932, "inr": 125.35916777988048, "jpy": 185.27592118154547, "krw": 1982.5529008728156, "kwd": 0.5080962456253644, "lkr": 336.7291107684065, "ltc": 0.009221052885050695, "mmk": 2778.2274120474713, "mxn": 34.35935188175287, "myr": 7.150201853404857, "ngn": 694.6054985952759, "nok": 15.231065409254814, "nzd": 2.4672043128608716, "php": 84.93228924103079, "pkr": 277.6960387168362, "pln": 6.608790863608369, "rub": 125.3207004362614, "sar": 6.327535531006142, "sek": 14.851657612512998, "sgd": 2.299528873786558, "thb": 56.250344414166406, "try": 14.330941378717853, "twd": 47.211915635636885, "uah": 44.9833370776929, "usd": 1.687164193818989, "vef": 0.16893575072709538, "vnd": 38458.20353865171, "xag": 0.07329135739144539, "xau": 0.0009469040321389695, "xdr": 1.1910029477007018, "xlm": 4.39666687719819, "xrp": 1.3431713329649422, "yfi": 4.278843951238143e-05, "zar": 25.806019926558324, "bits": 34.328071502740535, "link": 0.05891526734758539, "sats": 3432.807150274053}, "market_cap": {"aed": 112903854.12038897, "ars": 2988820281.058078, "aud": 43082984.42963265, "bch": 44439.05247576657, "bdt": 2617034704.4317307, "bhd": 11589482.719504707, "bmd": 30739702.720027383, "bnb": 67687.08858393725, "brl": 165392880.18532258, "btc": 625.5774347840754, "cad": 39411372.857347146, "chf": 28186770.409129146, "clp": 24180782402.537914, "cny": 199854177.23425797, "czk": 671730131.7785833, "dkk": 195384624.4587664, "dot": 1096215.3575063667, "eos": 5654450.645575066, "eth": 9392.99518705079, "eur": 26272117.28550948, "gbp": 22561958.126013048, "hkd": 239487337.04673052, "huf": 9203113487.79494, "idr": 442765456068.45886, "ils": 99557904.78746189, "inr": 2284012169.592659, "jpy": 3375680185.227413, "krw": 36121609872.24981, "kwd": 9257384.432947144, "lkr": 6135118798.823037, "ltc": 168046.79470835024, "mmk": 50618597198.68676, "mxn": 626018656.8487642, "myr": 130274860.1274759, "ngn": 12655535609.835257, "nok": 277506139.8914549, "nzd": 44951835.39619943, "php": 1547444719.4679956, "pkr": 5059551232.747774, "pln": 120410489.52461946, "rub": 2283311304.370645, "sar": 115286088.86208256, "sek": 270593426.2834779, "sgd": 41896831.52077498, "thb": 1024867006.654282, "try": 261106108.87418497, "twd": 860189101.2145296, "uah": 819584966.4122388, "usd": 30739702.720027383, "vef": 3077966.4333563466, "vnd": 700698692074.8381, "xag": 1335349.9003915165, "xau": 17252.350754588213, "xdr": 21699770.944121737, "xlm": 80152460.64914851, "xrp": 24465427.284381155, "yfi": 779.6730547958227, "zar": 470179122.95417947, "bits": 625577434.7840754, "link": 1074377.3006538667, "sats": 62557743478.407555}, "total_volume": {"aed": 6595456.425123613, "ars": 174596643.1334117, "aud": 2516760.3770809495, "bch": 2595.3138080675167, "bdt": 152878203.23397404, "bhd": 677017.882708515, "bmd": 1795708.1393785921, "bnb": 3961.395819242098, "brl": 9661685.535773039, "btc": 36.53657280807311, "cad": 2302277.405497293, "chf": 1646574.5784031977, "clp": 1412558480.8759408, "cny": 11674796.46816991, "czk": 39240173.40332881, "dkk": 11413700.50470426, "dot": 63980.99708375693, "eos": 330053.7929567896, "eth": 548.7947576405179, "eur": 1534727.1012338647, "gbp": 1317951.0103562213, "hkd": 13990029.907892825, "huf": 537614366.2863464, "idr": 25864841327.167416, "ils": 5815831.779331029, "inr": 133424167.45966645, "jpy": 197195673.61341375, "krw": 2110100720.4209938, "kwd": 540784.689006421, "lkr": 358392625.4408266, "ltc": 9814.290618535066, "mmk": 2956965063.11324, "mxn": 36569865.61466602, "myr": 7610211.094686454, "ngn": 739293040.9821644, "nok": 16210958.143259978, "nzd": 2625932.2491226103, "php": 90396420.00755888, "pkr": 295561652.40104383, "pln": 7033968.35275989, "rub": 133383225.31408861, "sar": 6734618.418801039, "sek": 15807141.092584664, "sgd": 2447469.3871067464, "thb": 59869218.22868221, "try": 15252924.506695677, "twd": 50249300.864231266, "uah": 47877346.391509704, "usd": 1795708.1393785921, "vef": 179804.25599597846, "vnd": 40932417469.05202, "xag": 78006.56717116405, "xau": 1007.8232361448411, "xdr": 1267626.289750137, "xlm": 4679527.058744641, "xrp": 1429584.4494693622, "yfi": 45.541239782815914, "zar": 27466253.84586523, "bits": 36536572.80807311, "link": 62705.58935360816, "sats": 3653657280.807311}}, "community_data": {"facebook_likes": null, "twitter_followers": 40437, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.333, "reddit_subscribers": 6122, "reddit_accounts_active_48h": "21.4615384615385"}, "developer_data": {"forks": 44, "stars": 117, "subscribers": 29, "total_issues": 166, "closed_issues": 142, "pull_requests_merged": 207, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 182, "deletions": -165}, "commit_count_4_weeks": 13}, "public_interest_stats": {"alexa_rank": 2191823, "bing_matches": null}}, "CURE_20190319": {"id": "curecoin", "symbol": "cure", "name": "Curecoin", "localization": {"en": "Curecoin", "de": "Curecoin", "es": "Curecoin", "fr": "Curecoin", "it": "Curecoin", "pl": "Curecoin", "ro": "Curecoin", "hu": "Curecoin", "nl": "Curecoin", "pt": "Curecoin", "sv": "Curecoin", "vi": "Curecoin", "tr": "Curecoin", "ru": "Curecoin", "ja": "Curecoin", "zh": "Curecoin", "zh-tw": "Curecoin", "ko": "Curecoin", "ar": "Curecoin", "th": "Curecoin", "id": "Curecoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/76/thumb/curecoin.png?1547033741", "small": "https://assets.coingecko.com/coins/images/76/small/curecoin.png?1547033741"}, "market_data": {"current_price": {"aed": 0.19056798052862536, "ars": 2.071958424991207, "aud": 0.07317097700676335, "bch": 0.0003613678831856637, "bdt": 4.3560675448563, "bhd": 0.019546762910312068, "bmd": 0.05188327094005777, "bnb": 0.003485850530313143, "brl": 0.1978724187111919, "btc": 1.3220468300382702e-05, "cad": 0.06922525425177196, "chf": 0.051942729168555066, "clp": 34.76181907985556, "cny": 0.3483183394560778, "czk": 1.1740302198129076, "dkk": 0.34189000218660465, "eos": 0.014072828448322784, "eth": 0.00038063186950594124, "eur": 0.045776609950412946, "gbp": 0.03898508978435935, "hkd": 0.40724834437194335, "huf": 14.402277180250598, "idr": 739.5996249402956, "ils": 0.18656186564625926, "inr": 3.5780260138392035, "jpy": 5.781123509060463, "krw": 58.840960355881045, "kwd": 0.015759336014958786, "lkr": 9.264756312363456, "ltc": 0.0008874094283278094, "mmk": 79.54495067364594, "mxn": 0.996480478328936, "myr": 0.21230577397073527, "ngn": 18.703919173890824, "nok": 0.4426006194083505, "nzd": 0.07569779606808602, "php": 2.7257491205119972, "pkr": 7.22474547840304, "pln": 0.19699299726875746, "rub": 3.3620878401866827, "sar": 0.1945726426794039, "sek": 0.47891190482481377, "sgd": 0.07006316907745389, "thb": 1.6402117858635155, "try": 0.2825926118292118, "twd": 1.6012675800966585, "uah": 1.3938440738046518, "usd": 0.05188327094005777, "vef": 12892.351667645933, "vnd": 1201.0021980006436, "xag": 0.003392504926607994, "xau": 3.9844276751126654e-05, "xdr": 0.037162638009318835, "xlm": 0.4891501673487278, "xrp": 0.16494062664842987, "zar": 0.7478334304111339, "bits": 13.220468300382702, "link": 0.10652985582787164, "sats": 1322.0468300382702}, "market_cap": {"aed": 4586137.103705224, "ars": 49862969.54938567, "aud": 1760905.119706993, "bch": 8679.78880475105, "bdt": 104831477.66112128, "bhd": 470405.01972914377, "bmd": 1248603.2189654643, "bnb": 83981.26000669105, "brl": 4761922.956490495, "btc": 318.26620737601576, "cad": 1665948.8449046693, "chf": 1250034.1182543961, "clp": 836564819.7151684, "cny": 8382497.710524622, "czk": 28253768.219716206, "dkk": 8227795.771694814, "eos": 339068.22886569006, "eth": 9169.079931122198, "eur": 1101642.6200932276, "gbp": 938200.458730649, "hkd": 9800684.970086766, "huf": 346599767.55262333, "idr": 17765114981.18766, "ils": 4489727.454756028, "inr": 86107423.7895153, "jpy": 139126336.7143788, "krw": 1416044346.7847898, "kwd": 379258.2333478835, "lkr": 222962129.12081957, "ltc": 21415.305499110604, "mmk": 1914298764.5923607, "mxn": 23980923.144094486, "myr": 5109270.63737126, "ngn": 450121460.43704987, "nok": 10651459.480028678, "nzd": 1821714.5936770486, "php": 65596849.70316522, "pkr": 173867998.2409406, "pln": 4740759.131929017, "rub": 80910737.19218092, "sar": 4682511.791764272, "sek": 11525313.171869952, "sgd": 1686113.7868909612, "thb": 39472717.862764776, "try": 6800767.15273918, "twd": 38535501.303370535, "uah": 33543725.477507196, "usd": 1248603.2189654643, "vef": 310262469975.2509, "vnd": 28902865668.217133, "xag": 81642.74331533178, "xau": 958.8773280367159, "xdr": 894342.0220612695, "xlm": 11772829.327054424, "xrp": 3973745.837175367, "zar": 17997077.12222139, "bits": 318266207.3760158, "link": 2564572.7833762886, "sats": 31826620737.601574}, "total_volume": {"aed": 1950.3731128494076, "ars": 21205.514125903435, "aud": 748.8703285779784, "bch": 3.698429302013593, "bdt": 44582.290234048385, "bhd": 200.05186977246757, "bmd": 531.0007293327517, "bnb": 35.67603083621576, "brl": 2025.130581529244, "btc": 0.1353052377467534, "cad": 708.4877231122227, "chf": 531.6092561685668, "clp": 355770.7706143307, "cny": 3564.8733963754275, "czk": 12015.643803560288, "dkk": 3499.0824060111, "eos": 144.0287405639382, "eth": 3.895587087183723, "eur": 468.5019434902865, "gbp": 398.993948020629, "hkd": 4167.994113765425, "huf": 147400.49245547812, "idr": 7569452.217290933, "ils": 1909.3724225347037, "inr": 36619.403296974546, "jpy": 59167.06375780409, "krw": 602209.3884502797, "kwd": 161.28934753190595, "lkr": 94820.39720739573, "ltc": 9.082215618271933, "mmk": 814104.9331921077, "mxn": 10198.50620771068, "myr": 2172.849143421589, "ngn": 191425.762924457, "nok": 4529.8079217189015, "nzd": 774.7311260979418, "php": 27896.75255136035, "pkr": 73941.85155958563, "pln": 2016.130119167049, "rub": 34409.37826149163, "sar": 1991.3589351436776, "sek": 4901.436747153364, "sgd": 717.0633848909465, "thb": 16786.791556760934, "try": 2892.2016724566897, "twd": 16388.216037315036, "uah": 14265.334593524372, "usd": 531.0007293327517, "vef": 131947119.26014674, "vnd": 12291689.23843238, "xag": 34.72068274907018, "xau": 0.4077873200983788, "xdr": 380.3420164020863, "xlm": 5006.220519818344, "xrp": 1688.089271551618, "zar": 7653.72132043307, "bits": 135305.2377467534, "link": 1090.2826694497867, "sats": 13530523.774675341}}, "community_data": {"facebook_likes": null, "twitter_followers": 8729, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 977, "reddit_accounts_active_48h": "747.625"}, "developer_data": {"forks": 41, "stars": 73, "subscribers": 22, "total_issues": 17, "closed_issues": 9, "pull_requests_merged": 23, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 50, "deletions": -29}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 687563, "bing_matches": null}}, "MET_20190411": {"id": "metronome", "symbol": "met", "name": "Metronome", "localization": {"en": "Metronome", "de": "Metronome", "es": "Metronome", "fr": "Metronome", "it": "Metronome", "pl": "Metronome", "ro": "Metronome", "hu": "Metronome", "nl": "Metronome", "pt": "Metronome", "sv": "Metronome", "vi": "Metronome", "tr": "Metronome", "ru": "Metronome", "ja": "Metronome", "zh": "Metronome", "zh-tw": "Metronome", "ko": "\uba54\ud2b8\ub85c\ub188", "ar": "Metronome", "th": "Metronome", "id": "Metronome"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3249/thumb/metronome.png?1548084800", "small": "https://assets.coingecko.com/coins/images/3249/small/metronome.png?1548084800"}, "market_data": {"current_price": {"aed": 4.1696454935757306, "ars": 49.89219263254391, "aud": 1.5986389386314785, "bch": 0.0035538725263768336, "bdt": 95.46210371816052, "bhd": 0.42804549749693077, "bmd": 1.135203472867892, "bnb": 0.05936392972496306, "brl": 4.399491275930764, "btc": 0.0002193355002974428, "cad": 1.5181643644398732, "chf": 1.1353737533888217, "clp": 755.2415368560539, "cny": 7.626183410379214, "czk": 25.953211375685697, "dkk": 7.554822249667794, "eos": 0.20905903936135564, "eth": 0.006507231560998794, "eur": 1.011930592545693, "gbp": 0.8708883722626946, "hkd": 8.910722900102865, "huf": 325.14270829187586, "idr": 16026.802629948887, "ils": 4.061005386018797, "inr": 78.5223908889938, "jpy": 126.82398598969074, "krw": 1291.5092644299248, "kwd": 0.3457773018181963, "lkr": 198.47835423992234, "ltc": 0.012380642531152671, "mmk": 1709.1553207051963, "mxn": 21.656390172248056, "myr": 4.639560700762441, "ngn": 408.6732502324411, "nok": 9.773307258961529, "nzd": 1.686515039466182, "php": 59.120563627610565, "pkr": 160.7658516192595, "pln": 4.341642442156898, "rub": 74.24049080000354, "sar": 4.257637385164665, "sek": 10.55228615245043, "sgd": 1.5381984353290465, "thb": 36.253290507772434, "try": 6.400589360984218, "twd": 34.968712421130824, "uah": 30.225320334722504, "usd": 1.135203472867892, "vef": 282084.0344367364, "vnd": 26360.637116765705, "xag": 0.07505986931468478, "xau": 0.0008787837124164923, "xdr": 0.8153950856950215, "xlm": 8.69374277737351, "xrp": 3.1508031702574053, "zar": 16.008698404963592, "bits": 219.3355002974428, "link": 1.969161058552237, "sats": 21933.55002974428}, "market_cap": {"aed": 39337991.96778856, "ars": 470701568.28878427, "aud": 15082156.462502819, "bch": 33466.53042222187, "bdt": 900625119.1088175, "bhd": 4038340.997652113, "bmd": 10709933.294397846, "bnb": 559843.8285534481, "brl": 41506442.871838376, "btc": 2069.850801938682, "cad": 14322929.291262947, "chf": 10711539.784392001, "clp": 7125230563.69133, "cny": 71948260.87843533, "czk": 244852283.53538412, "dkk": 71275013.05168286, "eos": 1969892.2081207763, "eth": 61419.63059656773, "eur": 9546930.928025873, "gbp": 8216285.975796714, "hkd": 84067085.8977111, "huf": 3067517674.314832, "idr": 151202838250.30872, "ils": 38313040.641581364, "inr": 740809545.2819523, "jpy": 1196504822.741414, "krw": 12184580475.425486, "kwd": 3262192.1318071103, "lkr": 1872518878.8590074, "ltc": 116764.243638192, "mmk": 16124809262.848364, "mxn": 204314468.45055714, "myr": 43771347.43513794, "ngn": 3855575985.9832244, "nok": 92205028.71145926, "nzd": 15911212.39882215, "php": 557765464.8812004, "pkr": 1516725052.390412, "pln": 40960675.38108937, "rub": 700412501.5603478, "sar": 40168140.317303784, "sek": 99554206.35794173, "sgd": 14511938.194042485, "thb": 342027074.72324204, "try": 60385549.145471014, "twd": 329907885.56623536, "uah": 285156954.0823245, "usd": 10709933.294397846, "vef": 2661286072883.3, "vnd": 248696090054.37085, "xag": 708142.8243129107, "xau": 8290.77356185925, "xdr": 7692741.596633366, "xlm": 81898389.45277616, "xrp": 29695112.250148598, "zar": 151032036.23412976, "bits": 2069850801.9386818, "link": 18582808.48591974, "sats": 206985080193.8682}, "total_volume": {"aed": 1043217.5813257089, "ars": 12482694.897048442, "aud": 399968.8341710912, "bch": 889.1552787926215, "bdt": 23883983.686997015, "bhd": 107094.13768727088, "bmd": 284020.3617075865, "bnb": 14852.460546365755, "brl": 1100723.467981005, "btc": 54.876283960279736, "cad": 379834.6307296403, "chf": 284062.96476184257, "clp": 188956411.42864317, "cny": 1908020.3879153961, "czk": 6493320.940759243, "dkk": 1890166.2999377341, "eos": 52305.18175534399, "eth": 1628.066074358267, "eur": 253178.30660939758, "gbp": 217890.48078940017, "hkd": 2229403.6282056123, "huf": 81348543.95956351, "idr": 4009799466.587703, "ils": 1016036.5486899302, "inr": 19645780.157890584, "jpy": 31730518.127283517, "krw": 323127031.58438444, "kwd": 86511.18207432251, "lkr": 49657964.68181652, "ltc": 3097.554450733717, "mmk": 427619298.21688265, "mxn": 5418284.842331797, "myr": 1160787.2420138388, "ngn": 102247330.21473114, "nok": 2445216.500049121, "nzd": 421954.8503708755, "php": 14791571.96678557, "pkr": 40222547.25117811, "pln": 1086250.0743687504, "rub": 18574477.223097425, "sar": 1065232.567602387, "sek": 2640111.8402935923, "sgd": 384847.022073056, "thb": 9070332.261312596, "try": 1601384.9049068433, "twd": 8748939.364330113, "uah": 7562174.199932684, "usd": 284020.3617075865, "vef": 70575550029.1539, "vnd": 6595256152.477884, "xag": 18779.480279974323, "xau": 219.86584240507682, "xdr": 204006.42942768676, "xlm": 2175116.644053548, "xrp": 788310.0056284453, "zar": 4005269.9098591916, "bits": 54876283.96027973, "link": 492671.00522303116, "sats": 5487628396.027973}}, "community_data": {"facebook_likes": null, "twitter_followers": 61, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1122, "reddit_accounts_active_48h": "15.6666666666667"}, "developer_data": {"forks": 8, "stars": 2, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 124, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 9, "deletions": -9}, "commit_count_4_weeks": 12}, "public_interest_stats": {"alexa_rank": 3370235, "bing_matches": null}}, "ADX_20200809": {"id": "adex", "symbol": "adx", "name": "Ambire AdEx", "localization": {"en": "Ambire AdEx", "de": "Ambire AdEx", "es": "Ambire AdEx", "fr": "Ambire AdEx", "it": "Ambire AdEx", "pl": "Ambire AdEx", "ro": "Ambire AdEx", "hu": "Ambire AdEx", "nl": "Ambire AdEx", "pt": "Ambire AdEx", "sv": "Ambire AdEx", "vi": "Ambire AdEx", "tr": "Ambire AdEx", "ru": "Ambire AdEx", "ja": "\u30a2\u30c7\u30c3\u30af\u30b9", "zh": "Ambire AdEx", "zh-tw": "Ambire AdEx", "ko": "\uc560\ub4dc\uc5d1\uc2a4", "ar": "Ambire AdEx", "th": "Ambire AdEx", "id": "Ambire AdEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/847/thumb/ambireadex.png?1634704581", "small": "https://assets.coingecko.com/coins/images/847/small/ambireadex.png?1634704581"}, "market_data": {"current_price": {"aed": 0.8255985531543168, "ars": 16.3110699733036, "aud": 0.31214676964907395, "bch": 0.0007646026629071345, "bdt": 19.050776822621724, "bhd": 0.08474470917521529, "bmd": 0.22477689116197752, "bnb": 0.009650231158132322, "brl": 1.1894741278740626, "btc": 1.9147575911792232e-05, "cad": 0.2981481144212879, "chf": 0.2041394504537231, "clp": 174.74155518932145, "cny": 1.5589626063430118, "czk": 4.939944214755906, "dkk": 1.4105199474196428, "eos": 0.07358293334444979, "eth": 0.0005605068673470221, "eur": 0.18931136849754965, "gbp": 0.17124627453175262, "hkd": 1.7421220561063497, "huf": 65.31581896003387, "idr": 3259.5181898851188, "ils": 0.764771903413866, "inr": 16.83296819804804, "jpy": 23.732168945772706, "krw": 266.6078706072221, "kwd": 0.06870822665215513, "lkr": 41.676035114743854, "ltc": 0.0038150726673496756, "mmk": 304.76201485213585, "mxn": 5.0274138941826765, "myr": 0.9429388336476042, "ngn": 85.19044175038948, "nok": 2.0112024725163615, "nzd": 0.3380599487697912, "php": 11.033898383382775, "pkr": 37.8005162486632, "pln": 0.8331274551237886, "rub": 16.374861655015373, "sar": 0.8430495566534596, "sek": 1.9465961993510161, "sgd": 0.30778677229120577, "thb": 6.974826932756166, "try": 1.585132705450327, "twd": 6.59787586150063, "uah": 6.218504167904181, "usd": 0.22477689116197752, "vef": 55854.279715101766, "vnd": 5192.256622590298, "xag": 0.00834911958862724, "xau": 0.00011034971917814976, "xdr": 0.15943065247093222, "xlm": 2.082890735072302, "xrp": 0.7417964269471937, "yfi": 5.420241778432396e-05, "zar": 3.8930476423841105, "bits": 19.14757591179223, "link": 0.023498256047854382, "sats": 1914.7575911792233}, "market_cap": {"aed": 75992524.42386106, "ars": 1501358473.303787, "aud": 28731664.95478682, "bch": 70378.1351281742, "bdt": 1753535804.3632703, "bhd": 7800358.12464272, "bmd": 20689672.149114545, "bnb": 888259.0990238837, "brl": 109485586.38901235, "btc": 1762.4457123565594, "cad": 27443153.55268422, "chf": 18790091.280087914, "clp": 16084151128.721657, "cny": 143495290.1573989, "czk": 454698993.78830624, "dkk": 129831830.67012376, "eos": 6772968.336721707, "eth": 51592.06207892772, "eur": 17425234.98775511, "gbp": 15762426.72680292, "hkd": 160354269.50810498, "huf": 6012018733.101032, "idr": 300023558312.3237, "ils": 70393712.93326138, "inr": 1549396788.5832088, "jpy": 2184436275.1756597, "krw": 24540020136.064816, "kwd": 6324274.154836289, "lkr": 3836086078.696035, "ltc": 351159.77583137207, "mmk": 28051932466.00464, "mxn": 462750172.8084125, "myr": 86793153.97586335, "ngn": 7841385744.514413, "nok": 185121876.0378108, "nzd": 31116853.11882532, "php": 1015619260.942297, "pkr": 3479362510.128056, "pln": 76685524.99249578, "rub": 1507230202.2597058, "sar": 77598808.50050189, "sek": 179175167.71002316, "sgd": 28330347.384110507, "thb": 642000526.7870247, "try": 145904126.61670384, "twd": 607303925.9032867, "uah": 572384517.9401758, "usd": 20689672.149114545, "vef": 5141127851072.767, "vnd": 477923182761.9203, "xag": 768497.8029968763, "xau": 10157.180748164821, "xdr": 14674853.420612575, "xlm": 191720448.70048377, "xrp": 68278926.69741742, "yfi": 4989.081608210691, "zar": 358337011.27118105, "bits": 1762445712.3565595, "link": 2162905.675902925, "sats": 176244571235.65594}, "total_volume": {"aed": 16343295.189608075, "ars": 322888927.5708629, "aud": 6179161.505754069, "bch": 15135.839294907268, "bdt": 377123322.24164414, "bhd": 1677580.2143988886, "bmd": 4449614.246569488, "bnb": 191033.0097633181, "brl": 23546464.22038219, "btc": 379.0395272572107, "cad": 5902048.429706207, "chf": 4041081.813749207, "clp": 3459130115.283122, "cny": 30860744.56850735, "czk": 97789617.2582825, "dkk": 27922219.32007288, "eos": 1456625.13090768, "eth": 11095.62166001354, "eur": 3747549.6611315096, "gbp": 3389938.6137489653, "hkd": 34486512.737324506, "huf": 1292971875.6608648, "idr": 64524420191.45869, "ils": 15139189.527958166, "inr": 333220264.40926033, "jpy": 469794721.76705223, "krw": 5277687457.85608, "kwd": 1360126.9355916346, "lkr": 825005980.9460665, "ltc": 75522.00586360146, "mmk": 6032975169.685389, "mxn": 99521140.1461925, "myr": 18666127.31474475, "ngn": 1686403799.449836, "nok": 39813145.95189301, "nzd": 6692130.834555582, "php": 218423660.8491943, "pkr": 748287400.7120574, "pln": 16492335.018796945, "rub": 324151728.0940394, "sar": 16688749.890868995, "sek": 38534220.026686914, "sgd": 6092852.338213375, "thb": 138071530.07105127, "try": 31378799.806392692, "twd": 130609522.52993983, "uah": 123099597.09300728, "usd": 4449614.246569488, "vef": 1105674153012.0176, "vnd": 102784316129.16032, "xag": 165276.60506300468, "xau": 2184.4491220683612, "xdr": 3156040.1912637954, "xlm": 41232264.76224643, "xrp": 14684374.05791878, "yfi": 1072.9744019719603, "zar": 77065574.50179878, "bits": 379039527.2572107, "link": 465164.25393891725, "sats": 37903952725.72107}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 3746, "reddit_accounts_active_48h": "2242.91666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 13823, "bing_matches": null}}, "GO_20200710": {"id": "gochain", "symbol": "go", "name": "GoChain", "localization": {"en": "GoChain", "de": "GoChain", "es": "GoChain", "fr": "GoChain", "it": "GoChain", "pl": "GoChain", "ro": "GoChain", "hu": "GoChain", "nl": "GoChain", "pt": "GoChain", "sv": "GoChain", "vi": "GoChain", "tr": "GoChain", "ru": "GoChain", "ja": "\u30b4\u30fc\u30c1\u30a7\u30fc\u30f3", "zh": "GoChain", "zh-tw": "GoChain", "ko": "\ucf54\uccb4\uc778", "ar": "GoChain", "th": "GoChain", "id": "GoChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3286/thumb/GoChain.png?1557381951", "small": "https://assets.coingecko.com/coins/images/3286/small/GoChain.png?1557381951"}, "market_data": {"current_price": {"aed": 0.04193876150899263, "ars": 0.8078715853122891, "aud": 0.016369178608665626, "bch": 4.7098321020182064e-05, "bdt": 0.9681303346222808, "bhd": 0.004305333787251979, "bmd": 0.011417500138569283, "bnb": 0.0007003989032632395, "brl": 0.06114984724214932, "btc": 1.2225242456458047e-06, "cad": 0.015459808975129042, "chf": 0.01075440598302159, "clp": 9.127140887802172, "cny": 0.0801371499725901, "czk": 0.2692748902680736, "dkk": 0.07521620741286672, "eos": 0.0043733211139134155, "eth": 4.7365452251230725e-05, "eur": 0.01009370950250301, "gbp": 0.00913823600340684, "hkd": 0.0884873386989327, "huf": 3.557236343172645, "idr": 163.12877773732376, "ils": 0.0394505457037943, "inr": 0.8518327400383275, "jpy": 1.2258695878778565, "krw": 13.60897503524374, "kwd": 0.003514409300152874, "lkr": 2.121333790908216, "ltc": 0.0002593004915577559, "mmk": 15.618814505371276, "mxn": 0.254910990043745, "myr": 0.048838356842730045, "ngn": 4.425118149368253, "nok": 0.10718429440084967, "nzd": 0.01741773898639156, "php": 0.5635420603769669, "pkr": 1.8988700460807726, "pln": 0.0450684695594766, "rub": 0.8200425377025033, "sar": 0.042823960294736015, "sek": 0.1055080912055063, "sgd": 0.015894062175399428, "thb": 0.3545133793025758, "try": 0.07833267116318988, "twd": 0.3358001079929613, "uah": 0.3089244544167826, "usd": 0.011417500138569283, "vef": 2837.107689719367, "vnd": 264.5693010337033, "xag": 0.0006240788449491762, "xau": 6.394256777604344e-06, "xdr": 0.008281295530506516, "xlm": 0.15864324399880297, "xrp": 0.060588236495590496, "zar": 0.1939547836039454, "bits": 1.2225242456458048, "link": 0.002126684642177486, "sats": 122.25242456458047}, "market_cap": {"aed": 41606657.636133544, "ars": 801403353.4684409, "aud": 16237379.865348306, "bch": 46749.77011989283, "bdt": 960463922.4061834, "bhd": 4271240.791339563, "bmd": 11327087.454027424, "bnb": 696364.7349440949, "brl": 60665614.98627999, "btc": 1213.4256852904912, "cad": 15336933.048190445, "chf": 10669402.775184222, "clp": 9054865056.854702, "cny": 79502561.42232756, "czk": 267172544.1512546, "dkk": 74619125.53536019, "eos": 4342928.81131286, "eth": 47030.38091423153, "eur": 10013700.336645478, "gbp": 9064852.874796508, "hkd": 87786117.11289516, "huf": 3528419049.999263, "idr": 161818397574.3496, "ils": 39138145.46727733, "inr": 845074916.4932685, "jpy": 1216001673.9020696, "krw": 13502228080.478527, "kwd": 3486579.462136723, "lkr": 2104535412.9342585, "ltc": 257413.46400338525, "mmk": 15495132531.939869, "mxn": 252896222.93682277, "myr": 48451616.58460232, "ngn": 4390076607.31057, "nok": 106336205.05916938, "nzd": 17276651.466342825, "php": 559039905.9779327, "pkr": 1883833309.80937, "pln": 44703404.05645244, "rub": 813520482.6182125, "sar": 42484846.72644419, "sek": 104672335.2017851, "sgd": 15766184.354348235, "thb": 351791018.60345614, "try": 77726474.10953613, "twd": 333139825.074567, "uah": 306478149.279453, "usd": 11327087.454027424, "vef": 2814641254908.8794, "vnd": 262428026462.61407, "xag": 618798.5610717683, "xau": 6342.829161631734, "xdr": 8215717.763805344, "xlm": 157365746.52470255, "xrp": 60187390.43524415, "zar": 192387182.28041917, "bits": 1213425685.290491, "link": 2110856.9245330407, "sats": 121342568529.04912}, "total_volume": {"aed": 2969172.0588144935, "ars": 57195531.10086666, "aud": 1158901.8369121917, "bch": 3334.457522314157, "bdt": 68541498.0181242, "bhd": 304808.16135301295, "bmd": 808333.893829494, "bnb": 49586.701627982286, "brl": 4329274.668572001, "btc": 86.55202730811348, "cad": 1094520.4672703568, "chf": 761388.2862775581, "clp": 646181497.1602021, "cny": 5673533.934010453, "czk": 19064069.885632332, "dkk": 5325142.025769941, "eos": 309621.51452352444, "eth": 3353.369825842632, "eur": 714612.4288433274, "gbp": 646967.0069382061, "hkd": 6264708.927262651, "huf": 251844507.9615171, "idr": 11549158616.483324, "ils": 2793011.8533322364, "inr": 60307884.15062914, "jpy": 86788870.17912795, "krw": 963485495.7527876, "kwd": 248812.4475257628, "lkr": 150185765.930001, "ltc": 18357.904398418304, "mmk": 1105777709.0344226, "mxn": 18047137.347161192, "myr": 3457648.230855656, "ngn": 313288630.69167715, "nok": 7588412.26178102, "nzd": 1233137.6050537052, "php": 39897538.20649321, "pkr": 134435822.16737342, "pln": 3190748.5041215685, "rub": 58057207.75668391, "sar": 3031842.1856031013, "sek": 7469740.762827911, "sgd": 1125264.6385882709, "thb": 25098767.40340576, "try": 5545780.803760168, "twd": 23773908.959753137, "uah": 21871171.80706786, "usd": 808333.893829494, "vef": 200860983421.17743, "vnd": 18730924519.097015, "xag": 44183.40938663606, "xau": 452.69931390027, "xdr": 586297.5065368332, "xlm": 11231592.694980614, "xrp": 4289513.863135368, "zar": 13731572.021428509, "bits": 86552027.30811349, "link": 150564.59442917304, "sats": 8655202730.811348}}, "community_data": {"facebook_likes": null, "twitter_followers": 11519, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 681, "reddit_accounts_active_48h": "13.0"}, "developer_data": {"forks": 30, "stars": 79, "subscribers": 13, "total_issues": 90, "closed_issues": 66, "pull_requests_merged": 303, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 13, "deletions": -11}, "commit_count_4_weeks": 3}, "public_interest_stats": {"alexa_rank": 901828, "bing_matches": null}}, "OST_20200714": {"id": "simple-token", "symbol": "ost", "name": "OST", "localization": {"en": "OST", "de": "OST", "es": "OST", "fr": "OST", "it": "OST", "pl": "OST", "ro": "OST", "hu": "OST", "nl": "OST", "pt": "OST", "sv": "OST", "vi": "OST", "tr": "OST", "ru": "OST", "ja": "\u30b7\u30f3\u30d7\u30eb\u30c8\u30fc\u30af\u30f3", "zh": "OST", "zh-tw": "OST", "ko": "\uc2ec\ud50c\ud1a0\ud070", "ar": "OST", "th": "OST", "id": "OST"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1367/thumb/ost.jpg?1547035393", "small": "https://assets.coingecko.com/coins/images/1367/small/ost.jpg?1547035393"}, "market_data": {"current_price": {"aed": 0.034740895376544706, "ars": 0.6706081460715648, "aud": 0.013613015151531235, "bch": 3.974218592694961e-05, "bdt": 0.8027081626650617, "bhd": 0.0035658636512218367, "bmd": 0.009458323566666581, "bnb": 0.0005483636942967733, "brl": 0.05039730566806568, "btc": 1.0187610567233683e-06, "cad": 0.012858921930208048, "chf": 0.008903810430923616, "clp": 7.494771621730701, "cny": 0.06622528994908608, "czk": 0.22317860287906463, "dkk": 0.062345485622039405, "eos": 0.0036126237783597253, "eth": 3.926520227618948e-05, "eur": 0.008369755649055356, "gbp": 0.007493110929278869, "hkd": 0.07331496554495229, "huf": 2.956766530175641, "idr": 136.18107512939577, "ils": 0.03269695165378807, "inr": 0.7108753034500228, "jpy": 1.0112839557479902, "krw": 11.356230773553907, "kwd": 0.0029111017439957753, "lkr": 1.7569578881816093, "ltc": 0.00021366469911765685, "mmk": 12.894769288650355, "mxn": 0.21232843970794502, "myr": 0.040349208335399595, "ngn": 3.6647547087319094, "nok": 0.08917260167035411, "nzd": 0.014387472143493488, "php": 0.4680175328500042, "pkr": 1.5743379576716554, "pln": 0.0373870978524088, "rub": 0.669010871679244, "sar": 0.03547833249006702, "sek": 0.0869489970914487, "sgd": 0.013153170376367016, "thb": 0.29639430331818456, "try": 0.06492193296159943, "twd": 0.2788124620981976, "uah": 0.25503529598383684, "usd": 0.009458323566666581, "vef": 2350.2765226334604, "vnd": 219.2287521939309, "xag": 0.0005053882110527013, "xau": 5.256936238353289e-06, "xdr": 0.0068280678243358385, "xlm": 0.10646641364265788, "xrp": 0.047618377769408145, "zar": 0.1586481499298897, "bits": 1.0187610567233683, "link": 0.0015395418098573081, "sats": 101.87610567233683}, "market_cap": {"aed": 24026528.697297186, "ars": 463787294.2419317, "aud": 9414653.699910954, "bch": 27487.61989287351, "bdt": 555146621.7778581, "bhd": 2466123.1214142474, "bmd": 6541301.832890146, "bnb": 379490.2055973526, "brl": 34854378.32778937, "btc": 704.4782606262949, "cad": 8893128.787378304, "chf": 6157804.930333297, "clp": 5183324825.035382, "cny": 45800887.17353023, "czk": 154348558.0488756, "dkk": 43117645.1616787, "eos": 2496484.258034008, "eth": 27146.726760311376, "eur": 5788456.863640989, "gbp": 5182176.303259562, "hkd": 50704050.788409725, "huf": 2044876365.9797885, "idr": 94181755368.17802, "ils": 22612953.371209566, "inr": 491635742.06764066, "jpy": 699395991.9726148, "krw": 7853879458.677852, "kwd": 2013294.9607305957, "lkr": 1215098190.8439379, "ltc": 147690.30086598563, "mmk": 8917920537.18795, "mxn": 146844670.94476688, "myr": 27905193.619109362, "ngn": 2534515395.286845, "nok": 61671066.615396656, "nzd": 9950262.03528982, "php": 323677227.1405184, "pkr": 1088799690.0845613, "pln": 25856621.41759398, "rub": 462682631.8949023, "sar": 24536534.377302125, "sek": 60133239.26099335, "sgd": 9096628.687399492, "thb": 204983957.87454912, "try": 44899495.78095796, "twd": 192824495.42993563, "uah": 176380395.24785537, "usd": 6541301.832890146, "vef": 1625432669641.6033, "vnd": 151616872529.32312, "xag": 349522.4928581308, "xau": 3635.655558720345, "xdr": 4722237.747483562, "xlm": 73472738.2645028, "xrp": 32925644.011536006, "zar": 109719806.7507816, "bits": 704478260.6262949, "link": 1064600.7022078747, "sats": 70447826062.62949}, "total_volume": {"aed": 1930414.1786849888, "ars": 37263042.8630869, "aud": 756421.4214499366, "bch": 2208.3161177565753, "bdt": 44603318.41651368, "bhd": 198140.94245318475, "bmd": 525561.6391513832, "bnb": 30470.402074359437, "brl": 2800378.9877804667, "btc": 56.608523392251485, "cad": 714519.4430836755, "chf": 494749.5369328548, "clp": 416454822.1276675, "cny": 3679877.4850101545, "czk": 12401152.437416036, "dkk": 3464292.100630255, "eos": 200739.21781269193, "eth": 2181.8120224404265, "eur": 465074.22453981114, "gbp": 416362.54401506553, "hkd": 4073822.7228688537, "huf": 164295824.01511395, "idr": 7567043838.364585, "ils": 1816840.3084643753, "inr": 39500529.56848702, "jpy": 56193050.458065845, "krw": 631020837.6635002, "kwd": 161758.41242129108, "lkr": 97627202.23348327, "ltc": 11872.502426625993, "mmk": 716511339.0395913, "mxn": 11798251.775255317, "myr": 2242045.952619798, "ngn": 203635927.46993494, "nok": 4954968.855837278, "nzd": 799454.9340252925, "php": 26005883.598981485, "pkr": 87479734.83674788, "pln": 2077453.1862785642, "rub": 37174288.64127521, "sar": 1971390.643004706, "sek": 4831411.942280987, "sgd": 730869.6656776733, "thb": 16469459.390881985, "try": 3607455.091135094, "twd": 15492505.99890448, "uah": 14171302.900981462, "usd": 525561.6391513832, "vef": 130595572565.0422, "vnd": 12181674853.904509, "xag": 28082.424410254487, "xau": 292.1071590403389, "xdr": 379408.72848141415, "xlm": 5915917.601487245, "xrp": 2645964.9532840033, "zar": 8815450.342525426, "bits": 56608523.392251484, "link": 85546.25049858126, "sats": 5660852339.225148}}, "community_data": {"facebook_likes": null, "twitter_followers": 17631, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 753, "reddit_accounts_active_48h": "12.75"}, "developer_data": {"forks": 22, "stars": 85, "subscribers": 45, "total_issues": 105, "closed_issues": 98, "pull_requests_merged": 44, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 819752, "bing_matches": null}}, "SNT_20200722": {"id": "status", "symbol": "SNT", "name": "Status", "localization": {"en": "Status", "de": "Status", "es": "Status", "fr": "Status", "it": "Status", "pl": "Status", "ro": "Status", "hu": "Status", "nl": "Status", "pt": "Status", "sv": "Status", "vi": "Status", "tr": "Status", "ru": "Status", "ja": "\u30b9\u30c6\u30fc\u30bf\u30b9", "zh": "Status", "zh-tw": "Status", "ko": "\uc2a4\ud14c\uc774\ud130\uc2a4\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Status", "th": "Status", "id": "Status"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/779/thumb/status.png?1548610778", "small": "https://assets.coingecko.com/coins/images/779/small/status.png?1548610778"}, "market_data": {"current_price": {"aed": 0.0962795540545691, "ars": 1.8733121744743917, "aud": 0.03747361190294944, "bch": 0.00011676915842472723, "bdt": 2.22265984955108, "bhd": 0.009887199834969487, "bmd": 0.026212783570533374, "bnb": 0.0015289452232882736, "brl": 0.14120328466558493, "btc": 2.858699873263276e-06, "cad": 0.03559696008878433, "chf": 0.02460397397889187, "clp": 20.65040712187149, "cny": 0.18328502528188345, "czk": 0.6109937722455628, "dkk": 0.170784148797096, "eos": 0.010472873619391402, "eth": 0.00011112877046080587, "eur": 0.022934324516583192, "gbp": 0.020859766186460453, "hkd": 0.2032507782718872, "huf": 8.102371401651876, "idr": 387.8548308230405, "ils": 0.09013055928459324, "inr": 1.963273005985366, "jpy": 2.8048982687321544, "krw": 31.550492689001018, "kwd": 0.00806284252402749, "lkr": 4.872434254687848, "ltc": 0.0006173225565379077, "mmk": 35.9959150897893, "mxn": 0.5910458439483849, "myr": 0.11173198996939857, "ngn": 10.157453633581682, "nok": 0.24362947433960833, "nzd": 0.03996765340855155, "php": 1.294206646634135, "pkr": 4.387364650118033, "pln": 0.1026991958149105, "rub": 1.8840883808641546, "sar": 0.09831442623036597, "sek": 0.23730197051351729, "sgd": 0.03644441938161976, "thb": 0.8298555213473148, "try": 0.17982664168150495, "twd": 0.7724645190400464, "uah": 0.7149104470061893, "usd": 0.026212783570533374, "vef": 6513.552786015463, "vnd": 607.8738594829937, "xag": 0.0013547010328138838, "xau": 1.4482038667048265e-05, "xdr": 0.01888439702936863, "xlm": 0.25978671351492505, "xrp": 0.13131247489353312, "yfi": 3.314142709229686e-05, "zar": 0.43728951935870936, "bits": 2.858699873263276, "link": 0.0032901477615713613, "sats": 285.8699873263276}, "market_cap": {"aed": 373507631.4642541, "ars": 7267341442.862405, "aud": 145375413.93625802, "bch": 452874.43907786877, "bdt": 8622603460.398151, "bhd": 38356477.95044973, "bmd": 101690071.18547612, "bnb": 5927931.201276735, "brl": 547785092.3626349, "btc": 11088.978826550598, "cad": 138095116.66987604, "chf": 95448843.0664675, "clp": 80111345847.02345, "cny": 711037315.7430863, "czk": 2370293869.2622566, "dkk": 662541320.7947327, "eos": 40626240.79375395, "eth": 431034.25003074086, "eur": 88971592.29223745, "gbp": 80923534.98840527, "hkd": 788492609.1636393, "huf": 31432401003.43062, "idr": 1504646969288.7837, "ils": 349653174.5655649, "inr": 7616336174.21704, "jpy": 10881343595.116241, "krw": 122397220380.97461, "kwd": 31279052.376083, "lkr": 18902158363.781853, "ltc": 2393074.6937147146, "mmk": 139642825723.46927, "mxn": 2292907725.0901117, "myr": 433453928.4280922, "ngn": 39404902584.372, "nok": 945138028.6191708, "nzd": 155050817.4492719, "php": 5020755070.548344, "pkr": 17020375664.669094, "pln": 398412038.3479324, "rub": 7309146739.577115, "sar": 381401730.0003106, "sek": 920591062.3357077, "sgd": 141382756.671303, "thb": 3219347796.9402657, "try": 697620836.2012306, "twd": 2996704707.7647996, "uah": 2773429004.656478, "usd": 101690071.18547612, "vef": 25268726028198.434, "vnd": 2358190456053.0483, "xag": 5255437.450631605, "xau": 56181.73052855184, "xdr": 73260272.91393901, "xlm": 1005942295.7639652, "xrp": 508790971.42901474, "yfi": 128556.54654247935, "zar": 1696424274.537473, "bits": 11088978826.550598, "link": 12762577.56384893, "sats": 1108897882655.0598}, "total_volume": {"aed": 36333060.83537785, "ars": 706932700.9995846, "aud": 14141434.641663548, "bch": 44065.23252420642, "bdt": 838766198.317874, "bhd": 3731137.276475953, "bmd": 9891930.529642757, "bnb": 576978.7818108089, "brl": 53285950.29638491, "btc": 1078.7889227913647, "cad": 13433241.659254866, "chf": 9284813.293385927, "clp": 7792853899.271571, "cny": 69166356.64936808, "czk": 230571008.7154432, "dkk": 64448894.97978141, "eos": 3952153.269414877, "eth": 41936.71665143725, "eur": 8654736.886369806, "gbp": 7871859.828462283, "hkd": 76700842.29518634, "huf": 3057595726.7125797, "idr": 146364960888.80627, "ils": 34012611.7717342, "inr": 740881262.5211395, "jpy": 1058485785.8515916, "krw": 11906224343.393885, "kwd": 3042678.6954738703, "lkr": 1838712818.4205713, "ltc": 232959.30503614925, "mmk": 13583795496.613483, "mxn": 223043249.58238423, "myr": 42164353.882602274, "ngn": 3833123080.2365685, "nok": 91938569.92165866, "nzd": 15082612.263836991, "php": 488395374.1524094, "pkr": 1655661872.3989599, "pln": 38755644.08173998, "rub": 710999323.0999728, "sar": 37100961.51046346, "sek": 89550756.8111082, "sgd": 13753047.77327825, "thb": 313162970.45369744, "try": 67861264.79493959, "twd": 291505300.7780418, "uah": 269786093.40256256, "usd": 9891930.529642757, "vef": 2458022494522.6963, "vnd": 229393645761.11072, "xag": 511224.1692673297, "xau": 5465.093779017025, "xdr": 7126413.835678936, "xlm": 98035834.90853024, "xrp": 49553450.736245394, "yfi": 12506.596011373169, "zar": 165020152.67465952, "bits": 1078788922.7913647, "link": 1241604.6163944765, "sats": 107878892279.13647}}, "community_data": {"facebook_likes": null, "twitter_followers": 110771, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 5711, "reddit_accounts_active_48h": "1631.61538461538"}, "developer_data": {"forks": 747, "stars": 2944, "subscribers": 179, "total_issues": 5570, "closed_issues": 5051, "pull_requests_merged": 3904, "pull_request_contributors": 183, "code_additions_deletions_4_weeks": {"additions": 16396, "deletions": -31616}, "commit_count_4_weeks": 86}, "public_interest_stats": {"alexa_rank": 140990, "bing_matches": null}}, "PIVX_20210430": {"id": "pivx", "symbol": "pivx", "name": "PIVX", "localization": {"en": "PIVX", "de": "PIVX", "es": "PIVX", "fr": "PIVX", "it": "PIVX", "pl": "PIVX", "ro": "PIVX", "hu": "PIVX", "nl": "PIVX", "pt": "PIVX", "sv": "PIVX", "vi": "PIVX", "tr": "PIVX", "ru": "PIVX", "ja": "\u30d4\u30f4\u30af\u30b9", "zh": "\u666e\u7ef4\u5e01", "zh-tw": "\u666e\u7dad\u5e63", "ko": "\ud53c\ubca1\uc2a4", "ar": "PIVX", "th": "PIVX", "id": "PIVX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/548/thumb/PIVX-Shield.png?1609817792", "small": "https://assets.coingecko.com/coins/images/548/small/PIVX-Shield.png?1609817792"}, "market_data": {"current_price": {"aed": 5.876799072819069, "ars": 149.23505039620605, "aud": 2.0514079742917906, "bch": 0.0018838587128081918, "bdt": 135.67808193114328, "bhd": 0.6032534568231291, "bmd": 1.599912630082509, "bnb": 0.0029991924761039877, "brl": 8.698886560934243, "btc": 2.967961382596527e-05, "cad": 1.982826119490674, "chf": 1.4630945016083732, "clp": 1128.1002785683413, "cny": 10.37623336240012, "czk": 34.24069014397375, "dkk": 9.847062260000321, "dot": 0.047807024453559596, "eos": 0.2720932001496412, "eth": 0.0006318698400830287, "eur": 1.3243756769297, "gbp": 1.151265130354772, "hkd": 12.416361952649817, "huf": 481.5436456961659, "idr": 23139.376377620298, "ils": 5.180101118923353, "inr": 119.69771140608046, "jpy": 173.0590293882388, "krw": 1776.3633654524629, "kwd": 0.4818072888988259, "lkr": 311.2178942458586, "ltc": 0.0064863439879539265, "mmk": 2492.143282097845, "mxn": 31.777144676172824, "myr": 6.558841827023247, "ngn": 628.479936825732, "nok": 13.266824309597512, "nzd": 2.212575173083154, "php": 77.41959137956526, "pkr": 246.3706099029106, "pln": 6.0371855142469455, "rub": 120.02960528162792, "sar": 6.000285129346735, "sek": 13.413432303455131, "sgd": 2.1214841474894053, "thb": 50.26925483719246, "try": 13.253964211876898, "twd": 44.52412857382927, "uah": 44.56312804410016, "usd": 1.599912630082509, "vef": 0.16019925165016158, "vnd": 36897.38670875189, "xag": 0.061001340766775373, "xau": 0.0008983509417913279, "xdr": 1.1119936749367674, "xlm": 3.2932310206909188, "xrp": 1.178058619740227, "yfi": 3.5315458477463354e-05, "zar": 22.835997744878814, "bits": 29.67961382596527, "link": 0.04573308454525412, "sats": 2967.961382596527}, "market_cap": {"aed": 384541020.0781843, "ars": 9764800078.349314, "aud": 134249120.090837, "bch": 123365.69692398787, "bdt": 8877926126.37781, "bhd": 39473137.80479145, "bmd": 104688288.16241564, "bnb": 197108.333668539, "brl": 569169285.0814215, "btc": 1943.2484035287528, "cad": 129756003.45119415, "chf": 95745186.4578531, "clp": 73815835096.74608, "cny": 678955892.8773471, "czk": 2240540732.3295026, "dkk": 644361438.6774997, "dot": 3136175.791471092, "eos": 17958069.550790668, "eth": 41413.180728137675, "eur": 86657510.22733828, "gbp": 75341753.15986271, "hkd": 812439741.5817164, "huf": 31508740001.369392, "idr": 1514096242864.2002, "ils": 338953458.1149789, "inr": 7832270505.555792, "jpy": 11325430265.301714, "krw": 116149489715.51805, "kwd": 31526459.226958822, "lkr": 20364154880.401554, "ltc": 426647.68355457584, "mmk": 163070288434.95837, "mxn": 2080967829.3970277, "myr": 429169637.32182336, "ngn": 41123801071.134636, "nok": 868376578.3360816, "nzd": 144790497.89077508, "php": 5066169441.461813, "pkr": 16120953681.661911, "pln": 395050572.63852245, "rub": 7853809597.40377, "sar": 392621176.2234248, "sek": 877919543.9318148, "sgd": 138806201.2745468, "thb": 3289625103.9654174, "try": 867244060.4347402, "twd": 2913370371.271861, "uah": 2915932721.812922, "usd": 104688288.16241564, "vef": 10482438.293702668, "vnd": 2414620977374.977, "xag": 3990940.530805072, "xau": 58770.9580914986, "xdr": 72761919.67467631, "xlm": 215618897.5225101, "xrp": 78142915.77623826, "yfi": 2313.260999665101, "zar": 1494919860.991761, "bits": 1943248403.5287528, "link": 3001796.109073283, "sats": 194324840352.87527}, "total_volume": {"aed": 8415774.187837457, "ars": 213709618.02213717, "aud": 2937685.305359137, "bch": 2697.7491202840692, "bdt": 194295582.61614662, "bhd": 863879.2662040892, "bmd": 2291128.767243129, "bnb": 4294.944630911893, "brl": 12457098.511506388, "btc": 42.502206532258654, "cad": 2839473.779622493, "chf": 2095200.5995835657, "clp": 1615477590.4416873, "cny": 14859115.619955324, "czk": 49033821.42503044, "dkk": 14101324.780189646, "dot": 68461.26903579569, "eos": 389646.6260172821, "eth": 904.8588907588558, "eur": 1896550.5709485183, "gbp": 1648650.438332811, "hkd": 17780648.46750538, "huf": 689586717.7951596, "idr": 33136366247.76062, "ils": 7418079.254853782, "inr": 171411153.84625345, "jpy": 247826358.2694013, "krw": 2543812162.702328, "kwd": 689964.2637401974, "lkr": 445674505.5826857, "ltc": 9288.663034224164, "mmk": 3568833108.9752197, "mxn": 45505941.34922965, "myr": 9392482.38131321, "ngn": 900004435.1311363, "nok": 18998539.204051267, "nzd": 3168482.1617273763, "php": 110867462.1493441, "pkr": 352811010.5129199, "pln": 8645452.973367272, "rub": 171886437.0533742, "sar": 8592610.379479595, "sek": 19208486.788637605, "sgd": 3038036.7453643866, "thb": 71987265.86677916, "try": 18980123.11102015, "twd": 63760051.57648593, "uah": 63815900.13131625, "usd": 2291128.767243129, "vef": 229410.72346405443, "vnd": 52838300376.5375, "xag": 87355.97434714447, "xau": 1286.4688028070157, "xdr": 1592412.391612062, "xlm": 4716017.72922644, "xrp": 1687019.6174689701, "yfi": 50.57292587403589, "zar": 32701917.828658473, "bits": 42502206.53225865, "link": 65491.31724211106, "sats": 4250220653.2258654}}, "community_data": {"facebook_likes": null, "twitter_followers": 67490, "reddit_average_posts_48h": 0.636, "reddit_average_comments_48h": 10.0, "reddit_subscribers": 9651, "reddit_accounts_active_48h": "61.0833333333333"}, "developer_data": {"forks": 649, "stars": 466, "subscribers": 111, "total_issues": 582, "closed_issues": 502, "pull_requests_merged": 1509, "pull_request_contributors": 55, "code_additions_deletions_4_weeks": {"additions": 857, "deletions": -1801}, "commit_count_4_weeks": 315}, "public_interest_stats": {"alexa_rank": 208244, "bing_matches": null}}, "DLT_20210503": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.7732170687217406, "ars": 19.681123786991527, "aud": 0.27072011560447434, "bch": 0.00023974011813498953, "bdt": 17.846135477929817, "bhd": 0.07937446425264272, "bmd": 0.21051330917921804, "bnb": 0.0003528063502255874, "brl": 1.1237200443986648, "btc": 3.929998622214696e-06, "cad": 0.25843350631422934, "chf": 0.1913210212946579, "clp": 149.33792617662206, "cny": 1.362484239669736, "czk": 4.48864898364297, "dkk": 1.2911412791888968, "dot": 0.005926981828223353, "eos": 0.03580831370257518, "eth": 7.626302950684958e-05, "eur": 0.17363137741101928, "gbp": 0.15090288695886656, "hkd": 1.6343516528092359, "huf": 62.56497651468184, "idr": 3031.4758575044107, "ils": 0.6839998441851143, "inr": 15.600309815700596, "jpy": 22.919847050196537, "krw": 233.14586871637778, "kwd": 0.06337966302120551, "lkr": 40.79653790341383, "ltc": 0.0008261162078258999, "mmk": 327.7955058207467, "mxn": 4.218872809716847, "myr": 0.8636308509077435, "ngn": 83.11673493037752, "nok": 1.7235526678210573, "nzd": 0.29043931830191, "php": 10.169297793003569, "pkr": 32.32149564099284, "pln": 0.7930316339482345, "rub": 15.735238321218999, "sar": 0.7894531182054979, "sek": 1.7619014563276139, "sgd": 0.27916169930256096, "thb": 6.563804980208009, "try": 1.728524781670558, "twd": 5.868479519989075, "uah": 5.8414306648926235, "usd": 0.21051330917921804, "vef": 0.02107869764811511, "vnd": 4852.645763075978, "xag": 0.008069663519360434, "xau": 0.00011871266531234479, "xdr": 0.14604066105675398, "xlm": 0.4254746149946423, "xrp": 0.15122315321187257, "yfi": 4.491709630048867e-06, "zar": 3.0086962123181293, "bits": 3.929998622214696, "link": 0.0058082966812504026, "sats": 392.9998622214696}, "market_cap": {"aed": 63308213.40754929, "ars": 1611365468.0428047, "aud": 22171425.688823294, "bch": 19583.6818328612, "bdt": 1461176943.7586007, "bhd": 6496859.825124586, "bmd": 17236067.388785765, "bnb": 28933.72791171291, "brl": 92014745.75503285, "btc": 322.29838081858554, "cad": 21159185.923214693, "chf": 15666292.55135212, "clp": 12227248590.343771, "cny": 111555275.35369931, "czk": 367509152.47042763, "dkk": 105723089.99528858, "dot": 486198.19208674965, "eos": 2938429.1400321294, "eth": 6229.088742306234, "eur": 14217790.68406594, "gbp": 12356864.19630091, "hkd": 133813932.77957742, "huf": 5122986785.834793, "idr": 248206264825.47073, "ils": 56003430.159642726, "inr": 1277295061.929654, "jpy": 1876739296.5413892, "krw": 19091316936.45137, "kwd": 5189090.448067836, "lkr": 3340272780.253335, "ltc": 67616.54175624263, "mmk": 26838708916.297226, "mxn": 345514206.8756012, "myr": 70710966.46249372, "ngn": 6805297251.663092, "nok": 141129367.91713008, "nzd": 23788651.41977829, "php": 832589476.2121507, "pkr": 2646367011.8843737, "pln": 64945725.98982102, "rub": 1290076553.8821433, "sar": 64640423.52816338, "sek": 144266332.18188888, "sgd": 22860196.177746575, "thb": 537815459.4862169, "try": 141472606.9631103, "twd": 480432954.33873105, "uah": 478275188.2983974, "usd": 17236067.388785765, "vef": 1725847.4276391214, "vnd": 397364184210.8483, "xag": 660133.1076781488, "xau": 9719.93548255795, "xdr": 11957280.446026696, "xlm": 34910860.844219446, "xrp": 12398993.246768795, "yfi": 367.82987871815925, "zar": 246332704.30030972, "bits": 322298380.8185856, "link": 474212.2881266937, "sats": 32229838081.858555}, "total_volume": {"aed": 3262988.861528608, "ars": 83054668.98898715, "aud": 1142443.380446161, "bch": 1011.7072770124538, "bdt": 75310987.87314989, "bhd": 334961.55636390904, "bmd": 888369.6582007476, "bnb": 1488.8486527667937, "brl": 4742117.235475586, "btc": 16.584659404, "cad": 1090593.6853452746, "chf": 807377.8848322434, "clp": 630208526.7254502, "cny": 5749706.101806883, "czk": 18942173.20001967, "dkk": 5448637.624642639, "dot": 25011.961673255664, "eos": 151111.67806316662, "eth": 321.8312501024604, "eur": 732727.2940839775, "gbp": 636812.687197017, "hkd": 6896991.096890232, "huf": 264025239.15657803, "idr": 12792878425.95404, "ils": 2886490.6934258644, "inr": 65833566.30910753, "jpy": 96722134.90626456, "krw": 983879435.0344659, "kwd": 267463.22973381536, "lkr": 172162066.97019348, "ltc": 3486.2241064083896, "mmk": 1383302474.3238685, "mxn": 17803713.269120842, "myr": 3644536.522768573, "ngn": 350754000.7268622, "nok": 7273420.860529303, "nzd": 1225658.7430691412, "php": 42914605.44578265, "pkr": 136397247.97960833, "pln": 3346606.6556067537, "rub": 66402966.84153122, "sar": 3331505.2597870026, "sek": 7435253.384424402, "sgd": 1178067.0037400108, "thb": 27699365.942699265, "try": 7294403.263486332, "twd": 24765080.961662292, "uah": 24650934.344280023, "usd": 888369.6582007476, "vef": 88952.45387564089, "vnd": 20478245649.74674, "xag": 34054.113967616926, "xau": 500.96941765256616, "xdr": 616294.0132015536, "xlm": 1795509.9360207065, "xrp": 638164.216099515, "yfi": 18.95508917864392, "zar": 12696747.945240146, "bits": 16584659.404, "link": 24511.10838345201, "sats": 1658465940.4}}, "community_data": {"facebook_likes": null, "twitter_followers": 15110, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2577, "reddit_accounts_active_48h": "26.3076923076923"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 4793076, "bing_matches": null}}, "DLT_20210530": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.3630492155338025, "ars": 9.337108410199512, "aud": 0.12773546450527914, "bch": 0.0001291571477578378, "bdt": 8.376139414611742, "bhd": 0.03725702138274901, "bmd": 0.09883731229821471, "bnb": 0.0002614795715255753, "brl": 0.5250040354656582, "btc": 2.5208770738361774e-06, "cad": 0.11991614821743048, "chf": 0.08873801689027094, "clp": 72.15134393129561, "cny": 0.6317384490164989, "czk": 2.0615881948410824, "dkk": 0.6028977212878812, "dot": 0.004008736694194255, "eos": 0.015358313432129182, "eth": 3.4262748683465137e-05, "eur": 0.08107733448866093, "gbp": 0.0700129915634371, "hkd": 0.7672789972366563, "huf": 28.356424898357908, "idr": 1410.9273423850912, "ils": 0.320946497241009, "inr": 7.182779484994705, "jpy": 10.790143511580318, "krw": 110.3607298297356, "kwd": 0.029712373985776967, "lkr": 19.629719420755546, "ltc": 0.0004961757074631768, "mmk": 162.77243657457035, "mxn": 1.966358444441754, "myr": 0.4094335661953552, "ngn": 40.70705251863775, "nok": 0.8273671412483562, "nzd": 0.13582371711989114, "php": 4.757766295158462, "pkr": 15.328171827755337, "pln": 0.3648727639457035, "rub": 7.271856415028843, "sar": 0.37068953744907934, "sek": 0.8222028916807747, "sgd": 0.13098118300384007, "thb": 3.0910381048143627, "try": 0.8357683127937048, "twd": 2.7356191297900008, "uah": 2.723461250841493, "usd": 0.09883731229821471, "vef": 0.009896580080420235, "vnd": 2287.2976550007493, "xag": 0.003571552500895228, "xau": 5.213668223730836e-05, "xdr": 0.06840579802815586, "xlm": 0.22222263706779283, "xrp": 0.09558756252830342, "yfi": 1.9814643632328405e-06, "zar": 1.3606962435288905, "bits": 2.5208770738361777, "link": 0.00292797193194639, "sats": 252.08770738361775}, "market_cap": {"aed": 29521614.18567081, "ars": 759410010.5162872, "aud": 10385585.243973885, "bch": 10519.1967964198, "bdt": 681111941.8065084, "bhd": 3030257.2274100888, "bmd": 8037028.7993223155, "bnb": 21330.396168424853, "brl": 42692696.98200007, "btc": 205.13365812794117, "cad": 9751045.746209787, "chf": 7216215.085076326, "clp": 5867031023.505292, "cny": 51370276.976628534, "czk": 167641964.57939556, "dkk": 49026510.60114138, "dot": 327191.91405988316, "eos": 1252533.6268777219, "eth": 2789.4366996402714, "eur": 6592863.131400893, "gbp": 5693037.387028763, "hkd": 62391655.49485907, "huf": 2305498834.413965, "idr": 114730595367.52591, "ils": 26098000.657735348, "inr": 584073000.7500088, "jpy": 877357656.2786553, "krw": 8975112472.48121, "kwd": 2416557.7453226433, "lkr": 1596205083.2707484, "ltc": 40386.345106880886, "mmk": 13235960489.683565, "mxn": 159870969.47035977, "myr": 33293391.80119271, "ngn": 3310123938.221724, "nok": 67276762.52480714, "nzd": 11044878.790439894, "php": 386757088.1410801, "pkr": 1246421574.5661857, "pln": 29670058.107594162, "rub": 591316356.8813394, "sar": 30147923.76594442, "sek": 66861328.50617022, "sgd": 10649866.861982014, "thb": 251317890.5548089, "try": 67962248.74813014, "twd": 222448883.10764286, "uah": 221460256.23206684, "usd": 8037028.7993223155, "vef": 804747.6936761427, "vnd": 186036353598.25137, "xag": 290323.7613156969, "xau": 4239.211210490548, "xdr": 5562467.81715498, "xlm": 18143679.622984827, "xrp": 7780807.787172477, "yfi": 161.98049071575898, "zar": 110642689.26121145, "bits": 205133658.1279412, "link": 238903.39751611275, "sats": 20513365812.794117}, "total_volume": {"aed": 2428128.875922656, "ars": 62448014.1489655, "aud": 854314.3920270609, "bch": 863.822827826537, "bdt": 56020906.01261476, "bhd": 249180.67738366398, "bmd": 661039.1146473525, "bnb": 1748.8155074281347, "brl": 3511307.5691838157, "btc": 16.860012785410145, "cad": 802017.6045499648, "chf": 593493.476873572, "clp": 482559262.3264988, "cny": 4225163.709091483, "czk": 13788218.268960342, "dkk": 4032272.495437394, "dot": 26811.04628977644, "eos": 102718.75749736062, "eth": 229.15452199636192, "eur": 542257.6571754852, "gbp": 468257.63348628604, "hkd": 5131679.698963134, "huf": 189652121.99232614, "idr": 9436498621.369629, "ils": 2146539.4338651774, "inr": 48039531.64106659, "jpy": 72166135.92538743, "krw": 738109499.7643094, "kwd": 198720.91760617218, "lkr": 131286576.34396814, "ltc": 3318.4992868012923, "mmk": 1088647038.859128, "mxn": 13151307.081997627, "myr": 2738354.5324266627, "ngn": 272255015.14684176, "nok": 5533558.428712993, "nzd": 908409.8669351116, "php": 31820671.225469705, "pkr": 102517165.82103884, "pln": 2440325.047587893, "rub": 48635291.82106427, "sar": 2479228.5215631276, "sek": 5499019.13497267, "sgd": 876022.2555129643, "thb": 20673337.27148127, "try": 5589746.75345802, "twd": 18296240.615209516, "uah": 18214926.854755748, "usd": 661039.1146473525, "vef": 66189.84654963938, "vnd": 15297797781.415106, "xag": 23887.09130398889, "xau": 348.6981329764791, "xdr": 457508.4764430056, "xlm": 1486259.1044429594, "xrp": 639304.28939992, "yfi": 13.252337785397025, "zar": 9100545.322523538, "bits": 16860012.785410143, "link": 19582.7256792079, "sats": 1686001278.5410144}}, "community_data": {"facebook_likes": null, "twitter_followers": 15115, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2600, "reddit_accounts_active_48h": "27.75"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 6348048, "bing_matches": null}}, "BTS_20210711": {"id": "bitshares", "symbol": "bts", "name": "BitShares", "localization": {"en": "BitShares", "de": "BitShares", "es": "BitShares", "fr": "BitShares", "it": "BitShares", "pl": "BitShares", "ro": "BitShares", "hu": "BitShares", "nl": "BitShares", "pt": "BitShares", "sv": "BitShares", "vi": "BitShares", "tr": "BitShares", "ru": "BitShares", "ja": "\u30d3\u30c3\u30c8\u30b7\u30a7\u30a2\u30fc\u30ba", "zh": "\u6bd4\u7279\u80a1", "zh-tw": "\u6bd4\u7279\u80a1bts", "ko": "\ube44\ud2b8\uc250\uc5b4", "ar": "BitShares", "th": "BitShares", "id": "BitShares"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/95/thumb/bitshares.png?1547273755", "small": "https://assets.coingecko.com/coins/images/95/small/bitshares.png?1547273755"}, "market_data": {"current_price": {"aed": 0.16332269504086305, "ars": 4.266301833338313, "aud": 0.059406373684366374, "bch": 8.723233576851085e-05, "bdt": 3.770437634401484, "bhd": 0.016763942992639693, "bmd": 0.04446574871790434, "bnb": 0.00013544724773563487, "brl": 0.23266703016643428, "btc": 1.3087185001549776e-06, "cad": 0.05550437083712414, "chf": 0.04115216112344614, "clp": 33.30929818959533, "cny": 0.28782679145099516, "czk": 0.9722169607334983, "dkk": 0.28032541964228463, "dot": 0.002639887924365205, "eos": 0.011591311136503716, "eth": 1.918912472802506e-05, "eur": 0.0376980617630393, "gbp": 0.03221983705524487, "hkd": 0.3453943730286306, "huf": 13.454362962716102, "idr": 645.3180714183312, "ils": 0.14557508075508513, "inr": 3.3270230982963493, "jpy": 4.919112383415609, "krw": 50.746985940014106, "kwd": 0.013392372061853258, "lkr": 8.847599119525752, "ltc": 0.000323105543869884, "mmk": 73.18122811093907, "mxn": 0.8873539903738794, "myr": 0.18508867903827667, "ngn": 18.301878954230826, "nok": 0.38826824794243403, "nzd": 0.06339570726209064, "php": 2.2157290589966507, "pkr": 7.066421194476552, "pln": 0.17092438157868145, "rub": 3.3223429003807854, "sar": 0.16676870163500357, "sek": 0.38344149091910557, "sgd": 0.059982249596011956, "thb": 1.437960239351819, "try": 0.38611432707453885, "twd": 1.240438714643271, "uah": 1.212502174230525, "usd": 0.04446574871790434, "vef": 0.004452355419123771, "vnd": 1025.6032557433437, "xag": 0.0017006063440983543, "xau": 2.465314506166776e-05, "xdr": 0.03123251957071248, "xlm": 0.17212896989375023, "xrp": 0.06808976180770276, "yfi": 1.2517600582455978e-06, "zar": 0.6358541593242069, "bits": 1.3087185001549777, "link": 0.002239004591324674, "sats": 130.87185001549778}, "market_cap": {"aed": 442197814.0365016, "ars": 11548019389.896965, "aud": 160841418.72615972, "bch": 236258.96054668375, "bdt": 10208497229.831701, "bhd": 45388541.648318544, "bmd": 120391454.9514027, "bnb": 366452.54604471783, "brl": 629972366.3242065, "btc": 3542.947637189874, "cad": 150263584.71121955, "chf": 111413984.5471317, "clp": 90185254675.37659, "cny": 779293887.900431, "czk": 2632118379.6025186, "dkk": 758947972.7965547, "dot": 7160539.6885655485, "eos": 31367349.94400598, "eth": 51980.26615448153, "eur": 102063661.80687596, "gbp": 87227100.46448477, "hkd": 935149174.128322, "huf": 36426002553.4646, "idr": 1747205068273.2244, "ils": 394145972.62175024, "inr": 9007947982.657927, "jpy": 13318786269.818739, "krw": 137427915745.88632, "kwd": 36261906.23136266, "lkr": 23954962224.611248, "ltc": 876268.7197639128, "mmk": 198138899747.32147, "mxn": 2402276765.517152, "myr": 501129431.2352141, "ngn": 49552518492.89358, "nok": 1051102638.8758534, "nzd": 171624881.3461569, "php": 5999567179.109422, "pkr": 19132405355.40352, "pln": 462721547.3193445, "rub": 8994493756.001268, "sar": 451536940.3714487, "sek": 1038098676.2607301, "sgd": 162397237.49849674, "thb": 3895237353.352188, "try": 1045435572.3083794, "twd": 3358512141.805848, "uah": 3282861642.8665776, "usd": 120391454.9514027, "vef": 12054796.384283978, "vnd": 2775879787851.6294, "xag": 4602210.168000024, "xau": 66724.55607771604, "xdr": 84562356.00059073, "xlm": 466492559.0642844, "xrp": 184411096.77138498, "yfi": 3392.5969466206875, "zar": 1721546759.8281596, "bits": 3542947637.1898737, "link": 6066440.843230253, "sats": 354294763718.98737}, "total_volume": {"aed": 69274177.88749805, "ars": 1809574303.5007637, "aud": 25197525.042262692, "bch": 37000.052834407645, "bdt": 1599250902.233125, "bhd": 7110514.363465783, "bmd": 18860380.584671356, "bnb": 57450.66067923248, "brl": 98686941.40929279, "btc": 555.0998173383834, "cad": 23542470.064816035, "chf": 17454905.02350166, "clp": 14128313566.687214, "cny": 122083243.52457781, "czk": 412370924.1158697, "dkk": 118901497.31994374, "dot": 1119722.3118916692, "eos": 4916515.426215516, "eth": 8139.167918959483, "eur": 15989830.659684373, "gbp": 13666212.911272323, "hkd": 146500835.24852282, "huf": 5706738631.817004, "idr": 273715045311.16034, "ils": 61746434.18473785, "inr": 1411174300.6048934, "jpy": 2086467322.9404402, "krw": 21524600303.609604, "kwd": 5680444.866013639, "lkr": 3752755580.784098, "ltc": 137046.91143431718, "mmk": 31040201809.76299, "mxn": 376375850.0492628, "myr": 78506334.18369445, "ngn": 7762837969.540179, "nok": 164686014.20826298, "nzd": 26889621.80717767, "php": 939813104.0210243, "pkr": 2997259619.8689837, "pln": 72498473.11073127, "rub": 1409189170.1068306, "sar": 70735819.66204907, "sek": 162638719.89579692, "sgd": 25441785.83121477, "thb": 609918379.0169765, "try": 163772417.37274155, "twd": 526138588.11990434, "uah": 514289157.9495926, "usd": 18860380.584671356, "vef": 1888489.9079431465, "vnd": 435015001207.1838, "xag": 721321.1021787373, "xau": 10456.760807559362, "xdr": 13247437.020770261, "xlm": 73009405.56380154, "xrp": 28880629.667567153, "yfi": 530.9405954002573, "zar": 269700877.34904104, "bits": 555099817.3383834, "link": 949685.5431606935, "sats": 55509981733.83834}}, "community_data": {"facebook_likes": null, "twitter_followers": 6203, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 7184, "reddit_accounts_active_48h": "60.3846153846154"}, "developer_data": {"forks": 616, "stars": 1123, "subscribers": 168, "total_issues": 1181, "closed_issues": 973, "pull_requests_merged": 1171, "pull_request_contributors": 79, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 140146, "bing_matches": null}}, "ICX_20210713": {"id": "icon", "symbol": "icx", "name": "ICON", "localization": {"en": "ICON", "de": "ICON", "es": "ICON", "fr": "ICON", "it": "ICON", "pl": "ICON", "ro": "ICON", "hu": "ICON", "nl": "ICON", "pt": "ICON", "sv": "ICON", "vi": "ICON", "tr": "ICON", "ru": "ICON", "ja": "\u30a2\u30a4\u30b3\u30f3", "zh": "ICON", "zh-tw": "ICON", "ko": "\uc544\uc774\ucf58", "ar": "ICON", "th": "ICON", "id": "ICON"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1060/thumb/icon-icx-logo.png?1547035003", "small": "https://assets.coingecko.com/coins/images/1060/small/icon-icx-logo.png?1547035003"}, "market_data": {"current_price": {"aed": 3.5908806336442822, "ars": 93.81324053435586, "aud": 1.3046416611210885, "bch": 0.0019304804599503218, "bdt": 82.83847815685554, "bhd": 0.36849931455142976, "bmd": 0.9775891956997399, "bnb": 0.003071112209015481, "brl": 5.141532615863201, "btc": 2.876506437998178e-05, "cad": 1.2165217710207132, "chf": 0.8934275642527544, "clp": 731.9696424207413, "cny": 6.3337026400190375, "czk": 21.188952540033135, "dkk": 6.1214289220647915, "dot": 0.06213280089649283, "eos": 0.23132955048428236, "eth": 0.000453112897857627, "eur": 0.8230421197515665, "gbp": 0.7029374663462887, "hkd": 7.593282327164342, "huf": 292.69509313847925, "idr": 14162.579075401036, "ils": 3.207372392171271, "inr": 72.8212546206509, "jpy": 107.64675882419573, "krw": 1119.6426817268696, "kwd": 0.2942152443377941, "lkr": 194.6939738900937, "ltc": 0.007234015474643223, "mmk": 1608.7641854037793, "mxn": 19.433642259694484, "myr": 4.096587524579772, "ngn": 400.8115702368925, "nok": 8.47337752996616, "nzd": 1.396961274406189, "php": 48.86134505719056, "pkr": 155.82771779453842, "pln": 3.743091271414721, "rub": 72.74837534611149, "sar": 3.6667523087117297, "sek": 8.375537470492947, "sgd": 1.3207718828501334, "thb": 31.782965432770883, "try": 8.46660674719672, "twd": 27.343951875078265, "uah": 26.71466206837921, "usd": 0.9775891956997399, "vef": 0.09788600616541504, "vnd": 22447.205452897928, "xag": 0.03745557728955488, "xau": 0.0005405383939782566, "xdr": 0.6865530714263606, "xlm": 3.9237679268302865, "xrp": 1.5214910547972291, "yfi": 2.898597774433764e-05, "zar": 13.889489533582324, "bits": 28.76506437998178, "link": 0.0521933498278295, "sats": 2876.506437998178}, "market_cap": {"aed": 2306912284.8934007, "ars": 60269036805.80681, "aud": 838149240.3910761, "bch": 1243091.1173890354, "bdt": 53218450407.798935, "bhd": 236737358.4486858, "bmd": 628038844.8473825, "bnb": 1973722.1345261894, "brl": 3303107500.590334, "btc": 18484.984767528334, "cad": 781537818.9165324, "chf": 573970352.6556278, "clp": 470243912996.835, "cny": 4069000871.8817215, "czk": 13612553550.413574, "dkk": 3932628517.111543, "dot": 39922556.73005835, "eos": 148199162.34234625, "eth": 291207.190636807, "eur": 528752183.8654608, "gbp": 451592587.46520144, "hkd": 4878200661.719556, "huf": 188037970341.5299, "idr": 9098555755015.256, "ils": 2060532646.0597885, "inr": 46783021777.93074, "jpy": 69156191947.39706, "krw": 719299169392.1572, "kwd": 189014570.7452678, "lkr": 125078487976.90376, "ltc": 4652670.028247644, "mmk": 1033528608005.5646, "mxn": 12484878402.547867, "myr": 2631796779.332953, "ngn": 257495926387.42642, "nok": 5443605820.609137, "nzd": 897458716.7430831, "php": 31390304682.574196, "pkr": 100109391868.67293, "pln": 2404697933.0361476, "rub": 46736201482.047386, "sar": 2355655007.680855, "sek": 5380749808.900285, "sgd": 848511881.3310568, "thb": 20418532635.207867, "try": 5439256023.569734, "twd": 17566748921.45719, "uah": 17162470268.407406, "usd": 628038844.8473825, "vef": 62885529.534568526, "vnd": 14420900972211.582, "xag": 24062824.750416875, "xau": 347261.5184814633, "xdr": 441066656.4255578, "xlm": 2521803406.6845856, "xrp": 977272685.0375717, "yfi": 18625.33110815145, "zar": 8923113103.707142, "bits": 18484984767.528336, "link": 33537608.768598225, "sats": 1848498476752.8337}, "total_volume": {"aed": 357454397.1860421, "ars": 9338643849.390417, "aud": 129870621.1925931, "bch": 192169.77657947227, "bdt": 8246160564.606842, "bhd": 36682283.20159182, "bmd": 97314166.71731523, "bnb": 305714.02264915017, "brl": 511814128.43304664, "btc": 2863.419811738205, "cad": 121098722.20469423, "chf": 88936292.79045492, "clp": 72863955665.50816, "cny": 630488754.744813, "czk": 2109255369.347791, "dkk": 609357956.5838146, "dot": 6185012.857805938, "eos": 23027711.989345007, "eth": 45105.14669949996, "eur": 81929770.10097471, "gbp": 69973946.20641889, "hkd": 755873679.422571, "huf": 29136348085.99763, "idr": 1409814661775.423, "ils": 319278049.58283895, "inr": 7248995532.981186, "jpy": 10715702138.35905, "krw": 111454888283.00836, "kwd": 29287671.61524323, "lkr": 19380821634.833702, "ltc": 720110.4421281773, "mmk": 160144513499.01602, "mxn": 1934522917.2985168, "myr": 407795015.6289107, "ngn": 39898808354.09916, "nok": 843482801.6073366, "nzd": 139060581.84070948, "php": 4863905104.356479, "pkr": 15511878174.740036, "pln": 372606212.943927, "rub": 7241740761.852409, "sar": 365007046.9791391, "sek": 833743307.8597682, "sgd": 131476304.94342873, "thb": 3163836927.1066566, "try": 842808803.6886503, "twd": 2721955094.416679, "uah": 2659312408.2740755, "usd": 97314166.71731523, "vef": 9744067.513404783, "vnd": 2234508220211.6216, "xag": 3728517.365865564, "xau": 53807.92220300506, "xdr": 68342960.77223665, "xlm": 390591679.8909631, "xrp": 151456905.22843894, "yfi": 2885.4106439441825, "zar": 1382629949.302942, "bits": 2863419811.7382054, "link": 5195589.690457856, "sats": 286341981173.82056}}, "community_data": {"facebook_likes": null, "twitter_followers": 142024, "reddit_average_posts_48h": 0.5, "reddit_average_comments_48h": 4.833, "reddit_subscribers": 32533, "reddit_accounts_active_48h": "102.461538461538"}, "developer_data": {"forks": 30, "stars": 70, "subscribers": 26, "total_issues": 31, "closed_issues": 22, "pull_requests_merged": 527, "pull_request_contributors": 19, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 225369, "bing_matches": null}}, "BTS_20210721": {"id": "bitshares", "symbol": "bts", "name": "BitShares", "localization": {"en": "BitShares", "de": "BitShares", "es": "BitShares", "fr": "BitShares", "it": "BitShares", "pl": "BitShares", "ro": "BitShares", "hu": "BitShares", "nl": "BitShares", "pt": "BitShares", "sv": "BitShares", "vi": "BitShares", "tr": "BitShares", "ru": "BitShares", "ja": "\u30d3\u30c3\u30c8\u30b7\u30a7\u30a2\u30fc\u30ba", "zh": "\u6bd4\u7279\u80a1", "zh-tw": "\u6bd4\u7279\u80a1bts", "ko": "\ube44\ud2b8\uc250\uc5b4", "ar": "BitShares", "th": "BitShares", "id": "BitShares"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/95/thumb/bitshares.png?1547273755", "small": "https://assets.coingecko.com/coins/images/95/small/bitshares.png?1547273755"}, "market_data": {"current_price": {"aed": 0.14160396370674444, "ars": 3.7094754366130753, "aud": 0.052108864577570045, "bch": 8.813865556156337e-05, "bdt": 3.268605294885138, "bhd": 0.014533644571291842, "bmd": 0.03855272433170872, "bnb": 0.00012825840653809474, "brl": 0.19722451883824077, "btc": 1.222129029412309e-06, "cad": 0.04863830978050527, "chf": 0.035427794708277636, "clp": 29.21525449856878, "cny": 0.24979081149000631, "czk": 0.8337797691218627, "dkk": 0.24288216328976497, "dot": 0.003141183022629686, "eos": 0.010549128591900204, "eth": 2.0294510002349094e-05, "eur": 0.03265685619966044, "gbp": 0.02800778317249966, "hkd": 0.2994659967914129, "huf": 11.744123649546758, "idr": 558.7118639237714, "ils": 0.12681224719877607, "inr": 2.8772283695997483, "jpy": 4.242534549082881, "krw": 44.04648754897708, "kwd": 0.011595502897248007, "lkr": 7.669979458483561, "ltc": 0.00032111907695591687, "mmk": 63.44116771738367, "mxn": 0.7669139240409478, "myr": 0.16229347598297786, "ngn": 15.869934890966663, "nok": 0.3410007743501797, "nzd": 0.05507299078781352, "php": 1.9416133140282716, "pkr": 6.147543747678061, "pln": 0.14967035021866804, "rub": 2.8558007654161885, "sar": 0.14460884014660644, "sek": 0.33464574327134133, "sgd": 0.052323757462995044, "thb": 1.2643542130534005, "try": 0.3285848694791534, "twd": 1.0790097933234284, "uah": 1.0492745396790746, "usd": 0.03855272433170872, "vef": 0.003860284287333994, "vnd": 886.9602066722329, "xag": 0.0015017716433273186, "xau": 2.1272236704506845e-05, "xdr": 0.02707750593437552, "xlm": 0.16494797475009013, "xrp": 0.06587873854562822, "yfi": 1.390941648727038e-06, "zar": 0.5575040070704599, "bits": 1.222129029412309, "link": 0.0025091558390697107, "sats": 122.2129029412309}, "market_cap": {"aed": 384775554.4784983, "ars": 10079629345.002514, "aud": 141593615.99935648, "bch": 238989.2914152728, "bdt": 8881668152.42113, "bhd": 39491769.87794951, "bmd": 104757984.82668756, "bnb": 347884.69380134006, "brl": 535911365.79974747, "btc": 3314.270334059553, "cad": 132163197.44727331, "chf": 96266721.6085757, "clp": 79385600901.66383, "cny": 678747935.2890731, "czk": 2265600937.8467727, "dkk": 659975304.4081317, "dot": 8520950.429142363, "eos": 28588838.677775785, "eth": 55120.125762520554, "eur": 88737346.20714231, "gbp": 76104580.81689212, "hkd": 813728598.7382609, "huf": 31911901127.829723, "idr": 1518168429806.0808, "ils": 344582534.6501184, "inr": 7818193165.600536, "jpy": 11528092440.252829, "krw": 119685997664.49065, "kwd": 31508059.096322842, "lkr": 20841369985.154972, "ltc": 870749.6149230064, "mmk": 172386491495.20364, "mxn": 2083908688.9633675, "myr": 440994450.82566655, "ngn": 43122825359.99785, "nok": 926589613.691294, "nzd": 149647933.66275632, "php": 5275878724.943364, "pkr": 16704508067.95461, "pln": 406694067.6437881, "rub": 7759968677.633854, "sar": 392940601.3318596, "sek": 909321307.4724607, "sgd": 142177537.00678053, "thb": 3435585986.790271, "try": 892852304.6778597, "twd": 2931956003.5308504, "uah": 2851157426.9298425, "usd": 104757984.82668756, "vef": 10489417.02069624, "vnd": 2410106302034.3857, "xag": 4080712.161123203, "xau": 57802.31328782157, "xdr": 73576770.64302391, "xlm": 447209008.9089813, "xrp": 178569853.74458593, "yfi": 3768.932695078772, "zar": 1514886362.14146, "bits": 3314270334.059553, "link": 6802133.288927682, "sats": 331427033405.9553}, "total_volume": {"aed": 18524020.132675264, "ars": 485257586.5163595, "aud": 6816657.043052685, "bch": 11529.91898920671, "bdt": 427584854.99468714, "bhd": 1901228.7339449236, "bmd": 5043301.211320807, "bnb": 16778.21187136272, "brl": 25800061.396464687, "btc": 159.8736515062836, "cad": 6362654.024708373, "chf": 4634511.388335975, "clp": 3821813657.9388957, "cny": 32676557.208389666, "czk": 109071475.29723485, "dkk": 31772797.63132109, "dot": 410916.0226059311, "eos": 1379991.5292147459, "eth": 2654.84031679255, "eur": 4272029.157073508, "gbp": 3663857.4640003275, "hkd": 39174850.81917652, "huf": 1536315631.4985993, "idr": 73088277649.64268, "ils": 16589031.54042175, "inr": 376386612.70208246, "jpy": 554990081.7997977, "krw": 5761971633.934006, "kwd": 1516873.705328956, "lkr": 1003353650.4698007, "ltc": 42007.41342831624, "mmk": 8299100090.665544, "mxn": 100324373.67632015, "myr": 21230532.94423667, "ngn": 2076036473.3385663, "nok": 44608251.37919304, "nzd": 7204411.256685093, "php": 253993484.20369816, "pkr": 804195173.4085993, "pln": 19579230.04511994, "rub": 373583545.8888309, "sar": 18917105.115688022, "sek": 43776913.607518986, "sgd": 6844768.404004595, "thb": 165397368.01391858, "try": 42984056.22408724, "twd": 141151409.97232535, "uah": 137261572.26764828, "usd": 5043301.211320807, "vef": 504985.7502895524, "vnd": 116028310897.45624, "xag": 196455.29282843857, "xau": 2782.742309370472, "xdr": 3542162.605771156, "xlm": 21577783.030441757, "xrp": 8617972.598999668, "yfi": 181.9569906796965, "zar": 72930271.02269213, "bits": 159873651.5062836, "link": 328236.95087521937, "sats": 15987365150.62836}}, "community_data": {"facebook_likes": null, "twitter_followers": 6266, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 7184, "reddit_accounts_active_48h": "52.1538461538462"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 164427, "bing_matches": null}}, "BZRX_20210725": {"id": "bzx-protocol", "symbol": "bzrx", "name": "bZx Protocol", "localization": {"en": "bZx Protocol", "de": "bZx Protocol", "es": "bZx Protocol", "fr": "bZx Protocol", "it": "bZx Protocol", "pl": "bZx Protocol", "ro": "bZx Protocol", "hu": "bZx Protocol", "nl": "bZx Protocol", "pt": "bZx Protocol", "sv": "bZx Protocol", "vi": "bZx Protocol", "tr": "bZx Protocol", "ru": "bZx Protocol", "ja": "bZx Protocol", "zh": "bZx Protocol", "zh-tw": "bZx Protocol", "ko": "bZx Protocol", "ar": "bZx Protocol", "th": "bZx Protocol", "id": "bZx Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11811/thumb/bzrx.png?1594563172", "small": "https://assets.coingecko.com/coins/images/11811/small/bzrx.png?1594563172"}, "market_data": {"current_price": {"aed": 0.6345443158320875, "ars": 16.647200680462568, "aud": 0.2349477548498547, "bch": 0.0003997926219924211, "bdt": 14.645942886130829, "bhd": 0.06513355897890963, "bmd": 0.172749732067976, "bnb": 0.0005883397362346758, "brl": 0.8963638097543161, "btc": 5.355662802563239e-06, "cad": 0.21713863947150283, "chf": 0.15851947288887663, "clp": 130.03031400709816, "cny": 1.117327992042459, "czk": 3.7643894114932657, "dkk": 1.089732949841922, "dot": 0.013949011366933618, "eos": 0.04913555839459402, "eth": 8.627555164918332e-05, "eur": 0.14650904776685061, "gbp": 0.12597705111164337, "hkd": 1.342813898567491, "huf": 52.70939824858085, "idr": 2512.328886758766, "ils": 0.5663150816545227, "inr": 12.859568483518492, "jpy": 19.04997670379602, "krw": 198.60724381614568, "kwd": 0.05195500016863996, "lkr": 34.458288515255106, "ltc": 0.0014608494900805017, "mmk": 284.3054940645541, "mxn": 3.481349858733006, "myr": 0.7314223655758089, "ngn": 71.03824743433378, "nok": 1.5348215980166715, "nzd": 0.24812873215637327, "php": 8.661437835500852, "pkr": 27.78079515043865, "pln": 0.6705702359564729, "rub": 12.779386004380182, "sar": 0.648025186673478, "sek": 1.501137991509397, "sgd": 0.235647909513926, "thb": 5.675851376846863, "try": 1.4788931812607327, "twd": 4.832828883861023, "uah": 4.704799911431879, "usd": 0.172749732067976, "vef": 0.017297430671966433, "vnd": 3970.2918087767457, "xag": 0.006835487505770079, "xau": 9.585018883791659e-05, "xdr": 0.1216097651352327, "xlm": 0.754473844534056, "xrp": 0.3011121824836486, "yfi": 6.088759756114958e-06, "zar": 2.518854860297089, "bits": 5.355662802563239, "link": 0.01128777630470353, "sats": 535.5662802563239}, "market_cap": {"aed": 89567868.14986594, "ars": 2349798341.6520553, "aud": 33161618.03776013, "bch": 56597.77503434012, "bdt": 2067319568.744763, "bhd": 9193800.775134852, "bmd": 24384152.27863053, "bnb": 83287.68836524125, "brl": 126517174.09767476, "btc": 757.7199804853897, "cad": 30644905.29693033, "chf": 22379531.11980437, "clp": 18354222888.89256, "cny": 157716696.93818247, "czk": 531357500.7188666, "dkk": 153818597.5866162, "dot": 1975474.7513203444, "eos": 6956509.588112936, "eth": 12215.345369826571, "eur": 20678565.809303936, "gbp": 17782972.110368796, "hkd": 189545379.67578372, "huf": 7438613327.426084, "idr": 352935000873.2849, "ils": 79937103.36589798, "inr": 1815167366.0263915, "jpy": 2688963571.2559104, "krw": 28032481783.540417, "kwd": 7333606.950254978, "lkr": 4863892663.44181, "ltc": 206892.1484046459, "mmk": 40130588788.37197, "mxn": 491369100.3359624, "myr": 103242500.74772169, "ngn": 10027265584.204899, "nok": 216672090.7136482, "nzd": 35027151.991988994, "php": 1222650607.4649682, "pkr": 3921344081.177392, "pln": 94667447.8366571, "rub": 1803873748.361937, "sar": 91470734.24123311, "sek": 211863706.57336837, "sgd": 33260227.549574878, "thb": 801217840.584261, "try": 208699570.20538872, "twd": 682168581.3475884, "uah": 664096876.4900887, "usd": 24384152.27863053, "vef": 2441585.167659275, "vnd": 560418814529.4303, "xag": 964315.1933325464, "xau": 13527.840001138655, "xdr": 17165589.75882617, "xlm": 106827722.40222499, "xrp": 42613415.776027754, "yfi": 862.5830530811423, "zar": 355593483.0754623, "bits": 757719980.4853895, "link": 1598385.4549011097, "sats": 75771998048.53897}, "total_volume": {"aed": 43402156.22553617, "ars": 1138650818.585982, "aud": 16070176.513141677, "bch": 27345.390076937383, "bdt": 1001766914.2313135, "bhd": 4455066.150298431, "bmd": 11815897.916132066, "bnb": 40241.81212980126, "brl": 61310331.107226215, "btc": 366.3216387705418, "cad": 14852051.965171784, "chf": 10842563.325290697, "clp": 8893935162.2606, "cny": 76424046.13175039, "czk": 257480231.49043387, "dkk": 74536574.59862754, "dot": 954097.5396581088, "eos": 3360819.9277218776, "eth": 5901.155959788074, "eur": 10021063.022671616, "gbp": 8616696.291747654, "hkd": 91847042.28422998, "huf": 3605266772.1702166, "idr": 171840623440.21616, "ils": 38735349.184580855, "inr": 879580805.2945249, "jpy": 1302998142.7014613, "krw": 13584524214.558592, "kwd": 3553666.7459704652, "lkr": 2356910280.478276, "ltc": 99920.5511869193, "mmk": 19446193372.62062, "mxn": 238120627.1564201, "myr": 50028511.776903056, "ngn": 4858940559.715179, "nok": 104980164.68415444, "nzd": 16971741.340040464, "php": 592433134.6049829, "pkr": 1900176837.3070087, "pln": 45866290.84055811, "rub": 874096409.0131584, "sar": 44324233.451217495, "sek": 102676241.8289774, "sgd": 16118066.347395746, "thb": 388222196.66060245, "try": 101154720.47021478, "twd": 330560354.880123, "uah": 321803309.35292774, "usd": 11815897.916132066, "vef": 1183125.8583423034, "vnd": 271563736442.15866, "xag": 467540.074350992, "xau": 6556.0509587658835, "xdr": 8317978.576529907, "xlm": 51605208.417331636, "xrp": 20595752.982878752, "yfi": 416.4646905837047, "zar": 172286993.0884299, "bits": 366321638.77054185, "link": 772071.8922101076, "sats": 36632163877.054184}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 119612, "bing_matches": null}}, "CHR_20210816": {"id": "chromaway", "symbol": "chr", "name": "Chromia", "localization": {"en": "Chromia", "de": "Chromia", "es": "Chromia", "fr": "Chromia", "it": "Chromia", "pl": "Chromia", "ro": "Chromia", "hu": "Chromia", "nl": "Chromia", "pt": "Chromia", "sv": "Chromia", "vi": "Chromia", "tr": "Chromia", "ru": "Chromia", "ja": "Chromia", "zh": "Chromia", "zh-tw": "Chromia", "ko": "Chromia", "ar": "Chromia", "th": "Chromia", "id": "Chromia"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5000/thumb/Chromia.png?1559038018", "small": "https://assets.coingecko.com/coins/images/5000/small/Chromia.png?1559038018"}, "market_data": {"current_price": {"aed": 1.1696785096170825, "ars": 30.885497336976425, "aud": 0.43371820522112076, "bch": 0.00052563543191228, "bdt": 27.003165847313387, "bhd": 0.1200222874923204, "bmd": 0.3184358351347813, "bnb": 0.0008269414643648531, "brl": 1.6729663470476024, "btc": 7.1619197832021345e-06, "cad": 0.3987230622473139, "chf": 0.29395990153881674, "clp": 246.72418059317926, "cny": 2.0632413065887873, "czk": 6.886474582910511, "dkk": 2.017927887249108, "dot": 0.015339854733249223, "eos": 0.06843659287654912, "eth": 0.00010437167447466036, "eur": 0.2713210242757443, "gbp": 0.23056824296686518, "hkd": 2.4780199036436, "huf": 95.77594613348806, "idr": 4580.130337218878, "ils": 1.0260798697630502, "inr": 23.647157843394492, "jpy": 35.15754524972584, "krw": 370.4634250191588, "kwd": 0.09580078412862847, "lkr": 63.51251739038245, "ltc": 0.0019245204627706773, "mmk": 524.0180303592539, "mxn": 6.354609995199159, "myr": 1.3479388901255316, "ngn": 131.03634615796278, "nok": 2.8177941240907627, "nzd": 0.45451875240796, "php": 16.066008480549105, "pkr": 52.34610755752204, "pln": 1.241566354706262, "rub": 23.427005955030765, "sar": 1.1939159347725263, "sek": 2.765847686305226, "sgd": 0.43237217694600616, "thb": 10.533857426258564, "try": 2.727346883222419, "twd": 8.854267295404332, "uah": 8.519728796958477, "usd": 0.3184358351347813, "vef": 0.03188498017204568, "vnd": 7262.726826864875, "xag": 0.013723613265011933, "xau": 0.00018161350985241957, "xdr": 0.22432562685488328, "xlm": 0.9714271893863936, "xrp": 0.32987417553628506, "yfi": 8.604222680020608e-06, "zar": 4.706927453461259, "bits": 7.161919783202134, "link": 0.012776847452276316, "sats": 716.1919783202134}, "market_cap": {"aed": 662878016.3794807, "ars": 17507846030.309464, "aud": 245795969.7308323, "bch": 297786.2674850205, "bdt": 15303183623.244574, "bhd": 68039920.40660425, "bmd": 180463360.66086227, "bnb": 470015.4211217174, "brl": 948154496.9121691, "btc": 4059.0635282761064, "cad": 225985243.3875646, "chf": 166582118.95882875, "clp": 139823011840.036, "cny": 1169276252.7299237, "czk": 3902416407.8587666, "dkk": 1143556253.641816, "dot": 8706799.488385348, "eos": 38821455.68790577, "eth": 59241.565247969476, "eur": 153765791.54805493, "gbp": 130669188.33387442, "hkd": 1404321659.1394699, "huf": 54263527917.11482, "idr": 2595642894806.241, "ils": 581498063.8894634, "inr": 13401273046.70532, "jpy": 19921440615.0329, "krw": 209884752064.09747, "kwd": 54301244.75949264, "lkr": 35993695016.92102, "ltc": 1091603.176708221, "mmk": 296970517672.70667, "mxn": 3601254640.003901, "myr": 763901405.6774305, "ngn": 74260672911.94473, "nok": 1597045339.5969071, "nzd": 257617041.70756146, "php": 9112198729.708363, "pkr": 29665488129.961983, "pln": 703653171.3307191, "rub": 13276003683.049122, "sar": 676613804.6128192, "sek": 1567539760.592217, "sgd": 245020518.67007267, "thb": 5971081265.402915, "try": 1545867193.7570133, "twd": 5017873794.3922615, "uah": 4828284762.5095, "usd": 180463360.66086227, "vef": 18069796.302972145, "vnd": 4114980224412.417, "xag": 7781960.88938736, "xau": 102911.03605046334, "xdr": 127129399.51451162, "xlm": 551037570.410612, "xrp": 187256817.77306834, "yfi": 4887.500941904875, "zar": 2667287089.7267256, "bits": 4059063528.2761064, "link": 7269577.594748311, "sats": 405906352827.6106}, "total_volume": {"aed": 239881547.4691138, "ars": 6334100211.837298, "aud": 88948367.75964107, "bch": 107799.05741193096, "bdt": 5537898795.917193, "bhd": 24614568.71928512, "bmd": 65305877.01979555, "bnb": 169591.89769431233, "brl": 343097486.09890026, "btc": 1468.7902584502585, "cad": 81771447.79279664, "chf": 60286271.39442303, "clp": 50599013106.70073, "cny": 423136368.97436106, "czk": 1412301043.383355, "dkk": 413843342.6744442, "dot": 3145948.2764780144, "eos": 14035203.406545151, "eth": 21404.889103348953, "eur": 55643415.37357762, "gbp": 47285699.844338216, "hkd": 508200539.0864964, "huf": 19642048631.243885, "idr": 939308317515.3624, "ils": 210431862.22703645, "inr": 4849637545.770482, "jpy": 7210225964.124576, "krw": 75975867679.56976, "kwd": 19647142.489651408, "lkr": 13025357677.342964, "ltc": 394687.03831836465, "mmk": 107467355338.04584, "mxn": 1303224490.0439346, "myr": 276439777.42479503, "ngn": 26873368393.645924, "nok": 577882562.9253883, "nzd": 93214212.95245118, "php": 3294870294.9391522, "pkr": 10735313320.404423, "pln": 254624545.12396315, "rub": 4804488066.469346, "sar": 244852238.9925975, "sek": 567229215.2071491, "sgd": 88672319.81747842, "thb": 2160318411.8148365, "try": 559333342.8401936, "twd": 1815862498.1680493, "uah": 1747254233.5591211, "usd": 65305877.01979555, "vef": 6539077.465992133, "vnd": 1489464101246.1917, "xag": 2814484.116628282, "xau": 37245.90084069995, "xdr": 46005443.43124221, "xlm": 199223509.3041644, "xrp": 67651689.79948786, "yfi": 1764.5825192837633, "zar": 965312290.5804064, "bits": 1468790258.4502585, "link": 2620318.24422611, "sats": 146879025845.02585}}, "community_data": {"facebook_likes": null, "twitter_followers": 76986, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 86794, "bing_matches": null}}, "IOTX_20210817": {"id": "iotex", "symbol": "iotx", "name": "IoTeX", "localization": {"en": "IoTeX", "de": "IoTeX", "es": "IoTeX", "fr": "IoTeX", "it": "IoTeX", "pl": "IoTeX", "ro": "IoTeX", "hu": "IoTeX", "nl": "IoTeX", "pt": "IoTeX", "sv": "IoTeX", "vi": "IoTeX", "tr": "IoTeX", "ru": "IoTeX", "ja": "\u30a2\u30a4\u30aa\u30fc\u30c6\u30c3\u30af\u30b9", "zh": "IoTeX", "zh-tw": "IoTeX", "ko": "\uc544\uc774\uc624\ud14d\uc2a4", "ar": "IoTeX", "th": "IoTeX", "id": "IoTeX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3334/thumb/iotex-logo.png?1547037941", "small": "https://assets.coingecko.com/coins/images/3334/small/iotex-logo.png?1547037941"}, "market_data": {"current_price": {"aed": 0.3637884518906677, "ars": 9.61462611337999, "aud": 0.13439463192501008, "bch": 0.0001515015919310338, "bdt": 8.385880527002037, "bhd": 0.03732815566560502, "bmd": 0.0990412599413762, "bnb": 0.00024220058963046843, "brl": 0.5198675734322825, "btc": 2.075876512449772e-06, "cad": 0.12392240526384869, "chf": 0.09066296359789545, "clp": 76.85488795085584, "cny": 0.6415298571442698, "czk": 2.1324326074827886, "dkk": 0.6243536266389366, "dot": 0.00438105636881244, "eos": 0.01931445488808855, "eth": 2.9813006271401073e-05, "eur": 0.08395886071246358, "gbp": 0.0714300422886196, "hkd": 0.7708331740607345, "huf": 29.593528470483214, "idr": 1422.6038974829407, "ils": 0.31848995083128195, "inr": 7.3505451890691065, "jpy": 10.8534325080349, "krw": 115.1235797306569, "kwd": 0.02978943208264714, "lkr": 19.780123577163057, "ltc": 0.0005395816536344467, "mmk": 162.9942419335601, "mxn": 1.9687372130516785, "myr": 0.4196873390015817, "ngn": 40.755478465876365, "nok": 0.8720681979098116, "nzd": 0.14061194701782995, "php": 5.006048208955133, "pkr": 16.284559764131973, "pln": 0.38352489896548564, "rub": 7.261150547846022, "sar": 0.3714564243178506, "sek": 0.8556669652635198, "sgd": 0.13419100309457055, "thb": 3.3000549793291727, "try": 0.8442376038662852, "twd": 2.755654687726895, "uah": 2.6429573217410094, "usd": 0.0990412599413762, "vef": 0.009917001357929995, "vnd": 2252.204790464171, "xag": 0.004171921925398777, "xau": 5.566217849965275e-05, "xdr": 0.06972940481416624, "xlm": 0.2751294531469571, "xrp": 0.0909989598214568, "yfi": 2.4716633679642553e-06, "zar": 1.4586113379472294, "bits": 2.075876512449772, "link": 0.0035780618308139714, "sats": 207.58765124497722}, "market_cap": {"aed": 3474107744.9599495, "ars": 91817777259.80745, "aud": 1283442146.7343316, "bch": 1448803.095563139, "bdt": 80083500000.49551, "bhd": 356476501.7387716, "bmd": 945824438.4742993, "bnb": 2318656.7066361248, "brl": 4964632477.5516, "btc": 19844.07259993983, "cad": 1183434453.9078119, "chf": 865813365.9260037, "clp": 733948975236.687, "cny": 6126483217.773429, "czk": 20364309528.680553, "dkk": 5962453614.531014, "dot": 41967070.466714546, "eos": 184981857.8229246, "eth": 285519.04753284, "eur": 801790509.6856794, "gbp": 682142772.3942413, "hkd": 7361304313.423544, "huf": 282612342216.1213, "idr": 13585585778135.22, "ils": 3041516021.5349684, "inr": 70196252350.24704, "jpy": 103648133247.77034, "krw": 1099407410793.7557, "kwd": 284483182.955423, "lkr": 188896266933.5621, "ltc": 5149425.23469503, "mmk": 1556562764272.2349, "mxn": 18801050896.770206, "myr": 4007931058.034851, "ngn": 389206756432.1751, "nok": 8328078763.210044, "nzd": 1342816275.8595548, "php": 47806770016.98962, "pkr": 155514324068.85916, "pln": 3662586909.936923, "rub": 69342551212.08023, "sar": 3547335364.6355104, "sek": 8171450236.1987095, "sgd": 1281497531.6888287, "thb": 31514872181.6125, "try": 8062302095.998776, "twd": 26315957099.00194, "uah": 25239719549.477615, "usd": 945824438.4742993, "vef": 94705401.02443165, "vnd": 21508110180855.723, "xag": 39841029.02956368, "xau": 531562.7926669415, "xdr": 665902020.9611995, "xlm": 2623630094.3700104, "xrp": 869864813.624806, "yfi": 23626.93110869837, "zar": 13929449710.986923, "bits": 19844072599.93983, "link": 34295408.11833791, "sats": 1984407259993.9832}, "total_volume": {"aed": 1365469052.5692239, "ars": 36088210996.290504, "aud": 504446223.5436361, "bch": 568656.6852841454, "bdt": 31476151259.484, "bhd": 140110113.68274206, "bmd": 371748401.2330806, "bnb": 909092.6551836128, "brl": 1951307358.0724359, "btc": 7791.740281952061, "cad": 465139034.590855, "chf": 340300716.97916955, "clp": 288472518822.8579, "cny": 2407963094.1471553, "czk": 8004021889.849161, "dkk": 2343492627.6633077, "dot": 16444163.793776954, "eos": 72496227.62862045, "eth": 111902.22563712626, "eur": 315137067.6997019, "gbp": 268110523.1953161, "hkd": 2893299219.3770075, "huf": 111078422288.44452, "idr": 5339701098211.656, "ils": 1195442486.2972555, "inr": 27590051094.315502, "jpy": 40738033675.4736, "krw": 432112906625.30835, "kwd": 111813740.6260831, "lkr": 74244101098.42708, "ltc": 2025303.5673419181, "mmk": 611794002669.8428, "mxn": 7389596132.291113, "myr": 1575283850.2251794, "ngn": 152974467107.4129, "nok": 3273281847.697398, "nzd": 527782729.43104273, "php": 18790051936.701347, "pkr": 61123607077.33233, "pln": 1439549215.2249467, "rub": 27254510987.36253, "sar": 1394250557.2894976, "sek": 3211720312.4532003, "sgd": 503681908.8307007, "thb": 12386657472.58304, "try": 3168820546.950904, "twd": 10343267292.028381, "uah": 9920261105.988033, "usd": 371748401.2330806, "vef": 37223167.41546834, "vnd": 8453583189471.963, "xag": 15659183.927529108, "xau": 208926.31897700334, "xdr": 261727231.39774293, "xlm": 1032690157.6176765, "xrp": 341561868.7355508, "yfi": 9277.314383631174, "zar": 5474853946.963962, "bits": 7791740281.952061, "link": 13430147.858635176, "sats": 779174028195.206}}, "community_data": {"facebook_likes": null, "twitter_followers": 101833, "reddit_average_posts_48h": 1.909, "reddit_average_comments_48h": 21.091, "reddit_subscribers": 7504, "reddit_accounts_active_48h": "156.666666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 162985, "bing_matches": null}}, "PIVX_20211024": {"id": "pivx", "symbol": "pivx", "name": "PIVX", "localization": {"en": "PIVX", "de": "PIVX", "es": "PIVX", "fr": "PIVX", "it": "PIVX", "pl": "PIVX", "ro": "PIVX", "hu": "PIVX", "nl": "PIVX", "pt": "PIVX", "sv": "PIVX", "vi": "PIVX", "tr": "PIVX", "ru": "PIVX", "ja": "\u30d4\u30f4\u30af\u30b9", "zh": "\u666e\u7ef4\u5e01", "zh-tw": "\u666e\u7dad\u5e63", "ko": "\ud53c\ubca1\uc2a4", "ar": "PIVX", "th": "PIVX", "id": "PIVX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/548/thumb/PIVX-Shield.png?1609817792", "small": "https://assets.coingecko.com/coins/images/548/small/PIVX-Shield.png?1609817792"}, "market_data": {"current_price": {"aed": 2.7054216624417, "ars": 73.13762915719633, "aud": 0.9792791193121955, "bch": 0.001139740567233406, "bdt": 63.02499911447806, "bhd": 0.27765188945759534, "bmd": 0.7365299091913603, "bnb": 0.0014634053540818286, "brl": 4.123020778662318, "btc": 1.1112017876813207e-05, "cad": 0.9075565732850495, "chf": 0.6766787522405611, "clp": 599.4395971935729, "cny": 4.709298586378644, "czk": 16.131036153163674, "dkk": 4.701491369341216, "dot": 0.016507114100688544, "eos": 0.15191666519264696, "eth": 0.0001767549893179386, "eur": 0.6318749013345419, "gbp": 0.5326952568226513, "hkd": 5.725820340549093, "huf": 228.92604698285732, "idr": 10399.691838295628, "ils": 2.3661317944736107, "inr": 55.09947548732597, "jpy": 84.21004237253047, "krw": 865.7471591143677, "kwd": 0.22209175575774412, "lkr": 147.66604479579954, "ltc": 0.0035455201312816352, "mmk": 1384.5972416027057, "mxn": 14.889659183016196, "myr": 3.0650692170998486, "ngn": 302.6510535869249, "nok": 6.119529457387702, "nzd": 1.022695347869298, "php": 37.36416008368798, "pkr": 127.6842431987859, "pln": 2.8954795228589916, "rub": 52.18984648838151, "sar": 2.7628879355465426, "sek": 6.324507940705383, "sgd": 0.9891449374458132, "thb": 24.578003069715695, "try": 6.791704329233559, "twd": 20.490999340142746, "uah": 19.289766196165846, "usd": 0.7365299091913603, "vef": 0.07374873980733088, "vnd": 16726.02664348229, "xag": 0.03028060798752705, "xau": 0.00041329639324363975, "xdr": 0.5220199923188321, "xlm": 1.8790875001701128, "xrp": 0.6443264676356477, "yfi": 2.0403762569564326e-05, "zar": 10.613116110082014, "bits": 11.112017876813209, "link": 0.026726839049895326, "sats": 1111.2017876813209}, "market_cap": {"aed": 182382443.1817136, "ars": 4930348777.176537, "aud": 66025105.789439715, "bch": 76788.41542956508, "bdt": 4248747424.329288, "bhd": 18718927.219304446, "bmd": 49652195.13822102, "bnb": 98572.87067455906, "brl": 277957953.60327566, "btc": 748.6770275818959, "cad": 61183073.37175555, "chf": 45616911.58714268, "clp": 40410432057.14394, "cny": 317471170.49427146, "czk": 1087641264.9417598, "dkk": 317004439.8599727, "dot": 1112348.5952433285, "eos": 10240121.264861621, "eth": 11922.525762539917, "eur": 42605307.34322907, "gbp": 35915915.353232205, "hkd": 385973821.5167184, "huf": 15435674922.050072, "idr": 701081547522.411, "ils": 159509662.96934107, "inr": 3714344621.623442, "jpy": 5678423644.787513, "krw": 58313361546.49763, "kwd": 14973513.183443038, "lkr": 9954712198.36829, "ltc": 239073.69171358977, "mmk": 93340802009.49237, "mxn": 1003662670.173268, "myr": 206627610.06770667, "ngn": 20402822728.522606, "nok": 412500506.7693127, "nzd": 68961387.65332867, "php": 2518855710.4053707, "pkr": 8607665323.927828, "pln": 195239432.24299985, "rub": 3517862990.762479, "sar": 186255661.967861, "sek": 426393190.968987, "sgd": 66688856.33404747, "thb": 1656479155.933032, "try": 457937230.5402987, "twd": 1381423373.1355863, "uah": 1300394218.06269, "usd": 49652195.13822102, "vef": 4971674.299190073, "vnd": 1127819265440.9326, "xag": 2042083.0685959682, "xau": 27859.846692055875, "xdr": 35191291.21738503, "xlm": 126823438.6844007, "xrp": 43443874.973377295, "yfi": 1374.7465509529318, "zar": 715595877.2052151, "bits": 748677027.581896, "link": 1801351.071545555, "sats": 74867702758.18959}, "total_volume": {"aed": 2602128.0156851145, "ars": 70345216.96664731, "aud": 941890.00809504, "bch": 1096.2249995197558, "bdt": 60618689.559948385, "bhd": 267051.07384756306, "bmd": 708409.0209313729, "bnb": 1407.5321873201642, "brl": 3965602.858271735, "btc": 10.687758374032228, "cad": 872905.8460457635, "chf": 650842.9954814685, "clp": 576552849.8654169, "cny": 4529496.43893311, "czk": 15515149.331026385, "dkk": 4521987.303311238, "dot": 15876.868532480774, "eos": 146116.4505463706, "eth": 170.00644151020305, "eur": 607749.7663291927, "gbp": 512356.82438861544, "hkd": 5507207.149171537, "huf": 220185595.70359638, "idr": 10002629114.197844, "ils": 2275792.3161028707, "inr": 52995764.3222707, "jpy": 80994882.79465719, "krw": 832692725.3173943, "kwd": 213612.23935360403, "lkr": 142028119.8538837, "ltc": 3410.1513238631132, "mmk": 1331732987.442349, "mxn": 14321168.43078782, "myr": 2948044.1406059107, "ngn": 291095763.9055738, "nok": 5885884.357674324, "nzd": 983648.5946518811, "php": 35937587.50662148, "pkr": 122809228.2255362, "pln": 2784929.421491357, "rub": 50197225.65507823, "sar": 2657400.2127252477, "sek": 6083036.713426584, "sgd": 951379.1469304153, "thb": 23639609.028479915, "try": 6532395.431992798, "twd": 19708648.079740748, "uah": 18553278.304779038, "usd": 708409.0209313729, "vef": 70932.99526585834, "vnd": 16087422941.982458, "xag": 29124.48712531167, "xau": 397.5166380054304, "xdr": 502089.1440392365, "xlm": 1807343.4895554755, "xrp": 619725.9288479869, "yfi": 19.624742029947708, "zar": 10207904.796193134, "bits": 10687758.374032227, "link": 25706.4019364997, "sats": 1068775837.4032228}}, "community_data": {"facebook_likes": null, "twitter_followers": 68041, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 1.364, "reddit_subscribers": 10258, "reddit_accounts_active_48h": "953.916666666667"}, "developer_data": {"forks": 675, "stars": 488, "subscribers": 111, "total_issues": 616, "closed_issues": 539, "pull_requests_merged": 1735, "pull_request_contributors": 55, "code_additions_deletions_4_weeks": {"additions": 112, "deletions": -312}, "commit_count_4_weeks": 88}, "public_interest_stats": {"alexa_rank": 297116, "bing_matches": null}}, "REQ_20190804": {"id": "request-network", "symbol": "req", "name": "Request", "localization": {"en": "Request", "de": "Request", "es": "Request", "fr": "Request", "it": "Request", "pl": "Request", "ro": "Request", "hu": "Request", "nl": "Request", "pt": "Request", "sv": "Request", "vi": "Request", "tr": "Request", "ru": "Request", "ja": "\u30ea\u30af\u30a8\u30b9\u30c8\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "Request", "zh-tw": "Request", "ko": "\ub9ac\ud018\uc2a4\ud2b8\ub124\ud2b8\uc6cc\ud06c", "ar": "Request", "th": "Request", "id": "Request"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1031/thumb/Request_icon_green.png?1643250951", "small": "https://assets.coingecko.com/coins/images/1031/small/Request_icon_green.png?1643250951"}, "market_data": {"current_price": {"aed": 0.05093456260557024, "ars": 0.607625074610335, "aud": 0.020253831732872776, "bch": 4.214963158321381e-05, "bdt": 1.171470104832426, "bhd": 0.005228238307798892, "bmd": 0.013866608426203372, "bnb": 0.0004997726580905853, "brl": 0.05287465365708887, "btc": 1.3753976136672247e-06, "cad": 0.018300151405096637, "chf": 0.013787000227228528, "clp": 9.756684354760996, "cny": 0.09546327904935481, "czk": 0.32195591283539793, "dkk": 0.09353516874751648, "eos": 0.0031339288119834508, "eth": 6.339907225837003e-05, "eur": 0.01252569352478113, "gbp": 0.011409930744375086, "hkd": 0.1085360241431581, "huf": 4.084064441387536, "idr": 196.62834448158313, "ils": 0.04849291632727601, "inr": 0.9569346474922985, "jpy": 1.5092086508146296, "krw": 16.463963460646347, "kwd": 0.004222451598821069, "lkr": 2.4446316342890073, "ltc": 0.00014020737598534813, "mmk": 20.916433486445, "mxn": 0.26557605790033356, "myr": 0.057138746681013874, "ngn": 4.991979033433214, "nok": 0.12286936874237905, "nzd": 0.021163938843709783, "php": 0.7072094126176994, "pkr": 2.229121271176864, "pln": 0.053704417638704476, "rub": 0.8817069101193014, "sar": 0.05200686743516866, "sek": 0.134028383207282, "sgd": 0.019060263412587354, "thb": 0.42867926619186536, "try": 0.07737599395020886, "twd": 0.4317521898187633, "uah": 0.3480371312929482, "usd": 0.013866608426203372, "vef": 3445.680833706473, "vnd": 324.31732268802284, "xag": 0.0008529886094042981, "xau": 9.824353403880868e-06, "xdr": 0.010082244587391393, "xlm": 0.16525954217905683, "xrp": 0.043374174580952024, "zar": 0.19889569796124879, "bits": 1.3753976136672248, "link": 0.0062842938847643744, "sats": 137.53976136672247}, "market_cap": {"aed": 37019908.967226475, "ars": 441633914.84688, "aud": 14718392.520570854, "bch": 30618.799408022973, "bdt": 851439855.7725307, "bhd": 3800133.6703926553, "bmd": 10078433.098512275, "bnb": 364037.32744333515, "brl": 38429065.404627465, "btc": 1002.6252444768203, "cad": 13299591.022694755, "chf": 10018970.343231084, "clp": 7091241080.436497, "cny": 69383964.82339807, "czk": 233920230.6478081, "dkk": 67987688.62349707, "eos": 2280587.1596558364, "eth": 46199.29064636064, "eur": 9104402.931706583, "gbp": 8293260.400639021, "hkd": 78889539.78459102, "huf": 2968904822.159756, "idr": 142912062864.92307, "ils": 35245288.38880736, "inr": 695512668.1283344, "jpy": 1096908942.7510545, "krw": 11966233210.74513, "kwd": 3069023.97656038, "lkr": 1776790374.3593554, "ltc": 101949.93353483037, "mmk": 15202338529.604984, "mxn": 193004412.66045433, "myr": 41529191.425729774, "ngn": 3628235915.464419, "nok": 89315991.25642799, "nzd": 15382571.340195982, "php": 514376356.245427, "pkr": 1620154612.3977406, "pln": 39034607.90048534, "rub": 640881513.6745381, "sar": 37799163.335970394, "sek": 97358973.92793167, "sgd": 13852483.784045978, "thb": 311577278.84878224, "try": 56235177.39515639, "twd": 313803161.2691877, "uah": 252957957.3982747, "usd": 10078433.098512275, "vef": 2504366078132.9814, "vnd": 235751179921.4035, "xag": 620287.6466183622, "xau": 7143.291027232568, "xdr": 7327907.764731113, "xlm": 120264671.8510465, "xrp": 31528247.748049684, "zar": 144501610.70713845, "bits": 1002625244.4768202, "link": 4581069.234064073, "sats": 100262524447.68202}, "total_volume": {"aed": 708573.4644027734, "ars": 8452943.976543618, "aud": 281760.1052064992, "bch": 586.3623627338695, "bdt": 16296844.189148195, "bhd": 72732.3597371035, "bmd": 192904.58716920615, "bnb": 6952.560808253634, "brl": 735562.9380982055, "btc": 19.133770905120386, "cad": 254581.58501564368, "chf": 191797.1219342676, "clp": 135729596.57812572, "cny": 1328032.3399076872, "czk": 4478872.594024924, "dkk": 1301209.5357755702, "eos": 43597.484338776536, "eth": 881.9728289003157, "eur": 174250.52068535745, "gbp": 158728.64598337424, "hkd": 1509893.1394614573, "huf": 56815245.720038235, "idr": 2735384778.46594, "ils": 674606.6317894337, "inr": 13312345.56054697, "jpy": 20995276.0465525, "krw": 229037553.8796727, "kwd": 58740.411315959274, "lkr": 34008363.23481732, "ltc": 1950.487469698928, "mmk": 290977854.3346065, "mxn": 3694547.234382089, "myr": 794882.6418894345, "ngn": 69445651.38091421, "nok": 1709290.7021301917, "nzd": 294421.0119761757, "php": 9838306.209425896, "pkr": 31010302.25631053, "pln": 747106.1556898239, "rub": 12265818.884695292, "sar": 723490.7761285697, "sek": 1864528.7396087393, "sgd": 265155.84286591026, "thb": 5963548.860042441, "try": 1076412.0332096787, "twd": 6006297.67398667, "uah": 4841700.080370923, "usd": 192904.58716920615, "vef": 47934406043.14968, "vnd": 4511723221.861007, "xag": 11866.305768484393, "xau": 136.67097096351142, "xdr": 140258.61047568425, "xlm": 2298999.350092084, "xrp": 603397.5276559029, "zar": 2766926.9460615185, "bits": 19133770.905120388, "link": 87423.62084730428, "sats": 1913377090.5120387}}, "community_data": {"facebook_likes": null, "twitter_followers": 41451, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 3.87, "reddit_subscribers": 29645, "reddit_accounts_active_48h": "283.958333333333"}, "developer_data": {"forks": 9, "stars": 128, "subscribers": 36, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 5, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 541329, "bing_matches": null}}, "MANA_20190809": {"id": "decentraland", "symbol": "mana", "name": "Decentraland", "localization": {"en": "Decentraland", "de": "Decentraland", "es": "Decentraland", "fr": "Decentraland", "it": "Decentraland", "pl": "Decentraland", "ro": "Decentraland", "hu": "Decentraland", "nl": "Decentraland", "pt": "Decentraland", "sv": "Decentraland", "vi": "Decentraland", "tr": "Decentraland", "ru": "Decentraland", "ja": "\u30c7\u30a3\u30bb\u30f3\u30c8\u30e9\u30e9\u30f3\u30c9", "zh": "Decentraland", "zh-tw": "Decentraland", "ko": "\ub514\uc13c\ud2b8\ub7f4\ub79c\ub4dc", "ar": "Decentraland", "th": "Decentraland", "id": "Decentraland"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/878/thumb/decentraland-mana.png?1550108745", "small": "https://assets.coingecko.com/coins/images/878/small/decentraland-mana.png?1550108745"}, "market_data": {"current_price": {"aed": 0.15267862974347962, "ars": 1.887294196366229, "aud": 0.061469593868305236, "bch": 0.00011965735920373357, "bdt": 3.5112788259066328, "bhd": 0.015671171571593236, "bmd": 0.04156577901918791, "bnb": 0.0014924350055469404, "brl": 0.1652094235786154, "btc": 3.5191823889882958e-06, "cad": 0.0549238149883632, "chf": 0.04035214140338556, "clp": 29.97703199974324, "cny": 0.2930636815526863, "czk": 0.9544728221971043, "dkk": 0.2760109881838324, "eos": 0.009328122303520528, "eth": 0.00017853827658941387, "eur": 0.036980159146233066, "gbp": 0.03419159416339378, "hkd": 0.32600763729304005, "huf": 12.095924009354793, "idr": 590.0205115231922, "ils": 0.1449814372189273, "inr": 2.9579039665634492, "jpy": 4.389457106642177, "krw": 50.6070008420625, "kwd": 0.01264252264913913, "lkr": 7.351112731005051, "ltc": 0.00043258370208694707, "mmk": 62.9769778420147, "mxn": 0.8187999164921841, "myr": 0.17461684008091194, "ngn": 15.109160673474806, "nok": 0.37052732996400595, "nzd": 0.06335173390807299, "php": 2.1699135614932055, "pkr": 6.644636226985313, "pln": 0.15979548086136602, "rub": 2.733494482216755, "sar": 0.15593194170153252, "sek": 0.3980654067482412, "sgd": 0.05759761685533055, "thb": 1.2823042827419462, "try": 0.23234750899488313, "twd": 1.319380957627063, "uah": 1.0683423153859486, "usd": 0.04156577901918791, "vef": 10328.582426388433, "vnd": 961.0526470247182, "xag": 0.002519141838103756, "xau": 2.8189080015232864e-05, "xdr": 0.030231165172666545, "xlm": 0.5041935895712191, "xrp": 0.12930292879604469, "zar": 0.6218099217621844, "bits": 3.5191823889882956, "link": 0.016790381179986092, "sats": 351.9182388988296}, "market_cap": {"aed": 200617914.2965817, "ars": 2479882259.718837, "aud": 80770319.56100544, "bch": 157231.72639978546, "bdt": 4613778861.852945, "bhd": 20591734.157944165, "bmd": 54616942.18079135, "bnb": 1960282.6650695116, "brl": 217083229.2388831, "btc": 4624.026007674802, "cad": 72169243.50637469, "chf": 53022236.702996925, "clp": 39389465616.07591, "cny": 385082212.53988844, "czk": 1254166003.216523, "dkk": 362675175.0746814, "eos": 12244429.477916526, "eth": 234742.6989036291, "eur": 48591491.885522306, "gbp": 44927350.468497284, "hkd": 428370180.87188697, "huf": 15893901132.881618, "idr": 775279976070.3916, "ils": 190503894.32660076, "inr": 3886650839.469482, "jpy": 5767694739.652767, "krw": 66497000757.72074, "kwd": 16612125.282882996, "lkr": 9659275213.11322, "ltc": 568586.5111452254, "mmk": 82751004279.99878, "mxn": 1075893409.2404835, "myr": 229444463.29489276, "ngn": 19853258482.717655, "nok": 486868530.66569746, "nzd": 83243429.31989405, "php": 2851240763.9630704, "pkr": 8730973439.81261, "pln": 209969372.51983467, "rub": 3591779430.3296056, "sar": 204892727.7441302, "sek": 523053237.9654334, "sgd": 75682587.5460383, "thb": 1684932666.2774196, "try": 305301879.6728515, "twd": 1733650978.702682, "uah": 1403789170.9377408, "usd": 54616942.18079135, "vef": 13571635188917.914, "vnd": 1262811815243.8535, "xag": 3310122.590350374, "xau": 37040.117848169146, "xdr": 39723393.60056924, "xlm": 662498012.2164816, "xrp": 169938887.89965528, "zar": 817050885.2642974, "bits": 4624026007.674802, "link": 22061703.734926093, "sats": 462402600767.48016}, "total_volume": {"aed": 50339554.920416035, "ars": 622258334.4413176, "aud": 20267093.054660905, "bch": 39452.13691915216, "bdt": 1157701071.8172855, "bhd": 5166930.062975434, "bmd": 13704621.395029554, "bnb": 492069.61087552004, "brl": 54471073.42775427, "btc": 1160.3069495913055, "cad": 18108889.277371544, "chf": 13304473.859537447, "clp": 9883704426.988344, "cny": 96625803.60779537, "czk": 314698508.4537515, "dkk": 91003373.04351337, "eos": 3075568.1118659186, "eth": 58865.719419079694, "eur": 12192700.153487105, "gbp": 11273284.51333736, "hkd": 107487730.20533949, "huf": 3988137907.7421193, "idr": 194535214220.19534, "ils": 47801719.42586304, "inr": 975248267.7130928, "jpy": 1447244565.0178552, "krw": 16685595767.572325, "kwd": 4168356.5296480013, "lkr": 2423729788.971347, "ltc": 142626.84349125644, "mmk": 20764091478.46254, "mxn": 269965897.8754402, "myr": 57572785.56960566, "ngn": 4981629877.093243, "nok": 122166284.22442836, "nzd": 20887652.01604921, "php": 715440550.4219409, "pkr": 2190797958.014802, "pln": 52686046.49105162, "rub": 901258387.2634674, "sar": 51412201.93238363, "sek": 131245842.58182085, "sgd": 18990466.45784963, "thb": 422787570.03666145, "try": 76607120.52054086, "twd": 435012092.3210282, "uah": 352242332.4700564, "usd": 13704621.395029554, "vef": 3405429058256.459, "vnd": 316867937494.56024, "xag": 830584.3399603706, "xau": 9294.200137681144, "xdr": 9967494.482197551, "xlm": 166237285.0436589, "xrp": 42632370.33522771, "zar": 205016476.49836773, "bits": 1160306949.5913055, "link": 5535943.811944815, "sats": 116030694959.13055}}, "community_data": {"facebook_likes": null, "twitter_followers": 45620, "reddit_average_posts_48h": 0.478, "reddit_average_comments_48h": 2.826, "reddit_subscribers": 6348, "reddit_accounts_active_48h": "722.458333333333"}, "developer_data": {"forks": 33, "stars": 105, "subscribers": 37, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 559, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 291, "deletions": -213}, "commit_count_4_weeks": 4}, "public_interest_stats": {"alexa_rank": 132863, "bing_matches": null}}, "STORJ_20190810": {"id": "storj", "symbol": "storj", "name": "Storj", "localization": {"en": "Storj", "de": "Storj", "es": "Storj", "fr": "Storj", "it": "Storj", "pl": "Storj", "ro": "Storj", "hu": "Storj", "nl": "Storj", "pt": "Storj", "sv": "Storj", "vi": "Storj", "tr": "Storj", "ru": "Storj", "ja": "\u30b9\u30c8\u30ec\u30fc\u30b8", "zh": "Storj", "zh-tw": "Storj", "ko": "\uc2a4\ud1a0\ub9ac\uc9c0", "ar": "Storj", "th": "Storj", "id": "Storj"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/949/thumb/storj.png?1547034811", "small": "https://assets.coingecko.com/coins/images/949/small/storj.png?1547034811"}, "market_data": {"current_price": {"aed": 0.5828759325040611, "ars": 7.18379419374961, "aud": 0.23466415717009179, "bch": 0.0004708034841245634, "bdt": 13.40948468793389, "bhd": 0.05982300608067938, "bmd": 0.15868423922046312, "bnb": 0.005741449752615051, "brl": 0.628418309160334, "btc": 1.3830239734229214e-05, "cad": 0.21075583758370148, "chf": 0.1548599490552507, "clp": 113.42719951815513, "cny": 1.114994806882588, "czk": 3.645686134759123, "dkk": 1.057102829308982, "eos": 0.037699467925111384, "eth": 0.0006990377602193929, "eur": 0.14161997087165124, "gbp": 0.13043542963867588, "hkd": 1.2437624651670556, "huf": 46.00267869371786, "idr": 2256.407204211355, "ils": 0.5529034947158613, "inr": 11.252299403123075, "jpy": 16.871038550713045, "krw": 192.42966995460137, "kwd": 0.048265715569774645, "lkr": 28.114068255317743, "ltc": 0.0016975222440900456, "mmk": 239.7294726560297, "mxn": 3.1105601940473653, "myr": 0.6653290566242106, "ngn": 57.44369459780765, "nok": 1.4126301067552571, "nzd": 0.24295778893294917, "php": 8.257707872677361, "pkr": 25.269889389438905, "pln": 0.6114016460832883, "rub": 10.360224215497396, "sar": 0.5953673971312574, "sek": 1.5193844526381064, "sgd": 0.21909675724984748, "thb": 4.874779828852633, "try": 0.8773640478602686, "twd": 4.987732857172153, "uah": 4.057536637390066, "usd": 0.15868423922046312, "vef": 39431.07246469975, "vnd": 3689.2707179550653, "xag": 0.009627452135625129, "xau": 0.0001074546194305291, "xdr": 0.1153196450632522, "xlm": 1.9955074142385691, "xrp": 0.5065055952556069, "zar": 2.3699470498625166, "bits": 13.830239734229215, "link": 0.06432870611153592, "sats": 1383.0239734229215}, "market_cap": {"aed": 83684581.01446857, "ars": 1031333728.3551975, "aud": 33695816.86110633, "bch": 67803.8159739567, "bdt": 1925224640.7032096, "bhd": 8588900.175343545, "bmd": 22782591.169471, "bnb": 826134.035543952, "brl": 90223184.68010668, "btc": 1990.995022076881, "cad": 30267925.411156595, "chf": 22234510.3737071, "clp": 16284996167.937845, "cny": 160081876.85228786, "czk": 523450035.2336417, "dkk": 151768600.46491256, "eos": 5425657.041557129, "eth": 100641.77869663632, "eur": 20332528.53251489, "gbp": 18727768.375719707, "hkd": 178568126.97901994, "huf": 6604614400.944411, "idr": 323957335679.1199, "ils": 79381382.41178766, "inr": 1615513539.8271863, "jpy": 2422028658.5220485, "krw": 27627485382.219093, "kwd": 6929598.495288639, "lkr": 4036389034.7145987, "ltc": 244525.6303917812, "mmk": 34418405971.66808, "mxn": 446762671.44505453, "myr": 95522529.29908147, "ngn": 8247298003.348502, "nok": 202815843.80400842, "nzd": 34890718.202762775, "php": 1187542564.7086756, "pkr": 3628044988.4974937, "pln": 87781642.73224804, "rub": 1487359186.2397969, "sar": 85478003.80873826, "sek": 218138662.7990866, "sgd": 31461596.492889706, "thb": 699943852.8518648, "try": 125979618.56471828, "twd": 716098076.9464904, "uah": 582548076.7272506, "usd": 22782591.169471, "vef": 5661192363842.476, "vnd": 529663137070.55194, "xag": 1382524.6373216514, "xau": 15426.548132672204, "xdr": 16556655.785042625, "xlm": 287456263.7385095, "xrp": 72823710.45186743, "zar": 340294975.2615178, "bits": 1990995022.076881, "link": 9260731.274796857, "sats": 199099502207.6881}, "total_volume": {"aed": 14974752.224608107, "ars": 184559924.4796906, "aud": 6028791.74393452, "bch": 12095.48229407882, "bdt": 344505064.39479256, "bhd": 1536921.7417175758, "bmd": 4076780.377718407, "bnb": 147504.43904260683, "brl": 16144788.193013288, "btc": 355.31474483305993, "cad": 5414559.551545198, "chf": 3978529.970615412, "clp": 2914075043.411964, "cny": 28645497.324038483, "czk": 93661864.40770005, "dkk": 27158185.92273735, "eos": 968542.634369571, "eth": 17959.083007527486, "eur": 3638379.723020076, "gbp": 3351036.0116573633, "hkd": 31953686.373926, "huf": 1181861656.471609, "idr": 57969692891.120224, "ils": 14204725.870084288, "inr": 289084496.58401316, "jpy": 433436359.23238105, "krw": 4943739254.859684, "kwd": 1240001.6732475897, "lkr": 722282706.6138474, "ltc": 43611.29630417883, "mmk": 6158925517.026725, "mxn": 79913864.32011183, "myr": 17093067.692772496, "ngn": 1475794496.7340634, "nok": 36292090.05560422, "nzd": 6241864.670375969, "php": 212150000.43886286, "pkr": 649212484.5924472, "pln": 15707610.572428273, "rub": 266166060.33459356, "sar": 15295672.299161738, "sek": 39034731.82437315, "sgd": 5628847.358539231, "thb": 125238693.20350961, "try": 22540490.170942493, "twd": 128140586.24417342, "uah": 104242776.89105381, "usd": 4076780.377718407, "vef": 1013029543993.6216, "vnd": 94781602413.29614, "xag": 247340.30390636518, "xau": 2760.632600575804, "xdr": 2962694.1432170407, "xlm": 51266877.60500865, "xrp": 13012710.538151283, "zar": 60886661.94307975, "bits": 355314744.8330599, "link": 1652678.3509682342, "sats": 35531474483.30599}}, "community_data": {"facebook_likes": null, "twitter_followers": 83789, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.087, "reddit_subscribers": 7774, "reddit_accounts_active_48h": "253.666666666667"}, "developer_data": {"forks": 175, "stars": 756, "subscribers": 75, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2125, "pull_request_contributors": 51, "code_additions_deletions_4_weeks": {"additions": 51052, "deletions": -32529}, "commit_count_4_weeks": 166}, "public_interest_stats": {"alexa_rank": 204651, "bing_matches": null}}, "MANA_20190811": {"id": "decentraland", "symbol": "mana", "name": "Decentraland", "localization": {"en": "Decentraland", "de": "Decentraland", "es": "Decentraland", "fr": "Decentraland", "it": "Decentraland", "pl": "Decentraland", "ro": "Decentraland", "hu": "Decentraland", "nl": "Decentraland", "pt": "Decentraland", "sv": "Decentraland", "vi": "Decentraland", "tr": "Decentraland", "ru": "Decentraland", "ja": "\u30c7\u30a3\u30bb\u30f3\u30c8\u30e9\u30e9\u30f3\u30c9", "zh": "Decentraland", "zh-tw": "Decentraland", "ko": "\ub514\uc13c\ud2b8\ub7f4\ub79c\ub4dc", "ar": "Decentraland", "th": "Decentraland", "id": "Decentraland"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/878/thumb/decentraland-mana.png?1550108745", "small": "https://assets.coingecko.com/coins/images/878/small/decentraland-mana.png?1550108745"}, "market_data": {"current_price": {"aed": 0.14510036481489005, "ars": 1.7978601772145721, "aud": 0.05841026990791321, "bch": 0.00011659339187904895, "bdt": 3.3369564616787777, "bhd": 0.014893563710871726, "bmd": 0.03950264493225096, "bnb": 0.0013350965828724795, "brl": 0.156778097207117, "btc": 3.3015142823438234e-06, "cad": 0.05257999553707237, "chf": 0.038507217782603104, "clp": 28.21673927510675, "cny": 0.2788965737506771, "czk": 0.9084441426286403, "dkk": 0.2630518258524819, "eos": 0.009342589643725, "eth": 0.00017444433409971922, "eur": 0.03525219984018567, "gbp": 0.032536472006383176, "hkd": 0.3097185124590657, "huf": 11.489996072186528, "idr": 563.0121753651812, "ils": 0.13745340330626, "inr": 2.813279615462572, "jpy": 4.191730994279279, "krw": 47.890992080969276, "kwd": 0.012015559011687646, "lkr": 7.006279368727663, "ltc": 0.0004349302560560026, "mmk": 59.5913013013466, "mxn": 0.7759465041397086, "myr": 0.1661660587858462, "ngn": 14.299957465474847, "nok": 0.35351944018639364, "nzd": 0.061196983994658796, "php": 2.066848697563342, "pkr": 6.311359228275127, "pln": 0.15230525222408317, "rub": 2.5825288653553224, "sar": 0.1481882470665992, "sek": 0.3803646476294538, "sgd": 0.054608456354343485, "thb": 1.2167012152357912, "try": 0.2165973079518289, "twd": 1.240580564097336, "uah": 1.0035024383354176, "usd": 0.03950264493225096, "vef": 9815.919101498377, "vnd": 915.3717805268602, "xag": 0.0023118567422795383, "xau": 2.6338783535027554e-05, "xdr": 0.02870669058020146, "xlm": 0.501366406837017, "xrp": 0.1265073138382095, "zar": 0.5946322475937598, "bits": 3.3015142823438235, "link": 0.016609507870045316, "sats": 330.15142823438237}, "market_cap": {"aed": 192868572.75834912, "ars": 2389730217.7069616, "aud": 77639400.87911558, "bch": 155195.15414380422, "bdt": 4435509386.498059, "bhd": 19796644.755965494, "bmd": 52507233.58264913, "bnb": 1776245.5269506355, "brl": 208390708.64281812, "btc": 4405.39481177685, "cad": 69889753.2601854, "chf": 51184103.80360008, "clp": 37505916948.08634, "cny": 370711570.5402199, "czk": 1207511266.0329268, "dkk": 349650604.1068178, "eos": 12449183.013272064, "eth": 232315.9385095624, "eur": 46857507.756389864, "gbp": 43247740.46204977, "hkd": 411680339.5430821, "huf": 15272595256.867628, "idr": 748360314922.6002, "ils": 182704169.97418636, "inr": 3739433907.6723185, "jpy": 5571682574.919469, "krw": 63657092126.69102, "kwd": 15971177.746068016, "lkr": 9312802927.247395, "ltc": 578425.5126814217, "mmk": 79209237312.84795, "mxn": 1031394338.5406196, "myr": 220869262.7326692, "ngn": 19007618556.918983, "nok": 469900885.2118588, "nzd": 81343523.6722036, "php": 2747271923.919982, "pkr": 8389109483.46386, "pln": 202445367.09148842, "rub": 3432718153.422632, "sar": 196973010.70027095, "sek": 505583751.0099556, "sgd": 72585999.70465413, "thb": 1617249047.9623876, "try": 287902885.0221261, "twd": 1648989670.6630974, "uah": 1333863517.767077, "usd": 52507233.58264913, "vef": 13047398673549.965, "vnd": 1216719538084.6318, "xag": 3072938.5889143217, "xau": 35009.72306356717, "xdr": 38157164.16621195, "xlm": 665784033.2123307, "xrp": 168264559.63835558, "zar": 790389969.4243125, "bits": 4405394811.77685, "link": 22162993.565764084, "sats": 440539481177.68494}, "total_volume": {"aed": 56030982.28985999, "ars": 694249610.451819, "aud": 22555317.506826676, "bch": 45022.9210920585, "bdt": 1288576694.103325, "bhd": 5751198.527869721, "bmd": 15254076.041953873, "bnb": 515551.92907760275, "brl": 60540376.99530629, "btc": 1274.8905801837336, "cad": 20303937.915642597, "chf": 14869688.579772651, "clp": 10895986516.767609, "cny": 107696827.67140229, "czk": 350798688.4243104, "dkk": 101578326.24651842, "eos": 3607671.666000294, "eth": 67362.25237598272, "eur": 13612752.71391567, "gbp": 12564065.494183384, "hkd": 119598820.50313672, "huf": 4436899709.056958, "idr": 217409000088.36356, "ils": 53078082.99558252, "inr": 1086357160.5178459, "jpy": 1618650686.398672, "krw": 18493263835.386642, "kwd": 4639847.563757128, "lkr": 2705497782.3646803, "ltc": 167949.74640820044, "mmk": 23011376657.151047, "mxn": 299634290.2844943, "myr": 64165569.18298081, "ngn": 5521975527.187302, "nok": 136512692.55921513, "nzd": 23631416.30120629, "php": 798120410.7703784, "pkr": 2437152088.456629, "pln": 58813173.21915191, "rub": 997252000.7263769, "sar": 57223378.15998349, "sek": 146879057.55580655, "sgd": 21087234.72039694, "thb": 469833169.13019854, "try": 83639761.63232137, "twd": 479054258.0975593, "uah": 387505761.42199415, "usd": 15254076.041953873, "vef": 3790449390230.0234, "vnd": 353473818544.6304, "xag": 892731.0716869088, "xau": 10170.807741733128, "xdr": 11085182.821915962, "xlm": 193604284.1660234, "xrp": 48851214.60755335, "zar": 229619194.7994782, "bits": 1274890580.1837337, "link": 6413815.998995319, "sats": 127489058018.37337}}, "community_data": {"facebook_likes": null, "twitter_followers": 45628, "reddit_average_posts_48h": 0.208, "reddit_average_comments_48h": 1.875, "reddit_subscribers": 6352, "reddit_accounts_active_48h": "709.0"}, "developer_data": {"forks": 33, "stars": 107, "subscribers": 37, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 559, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 291, "deletions": -213}, "commit_count_4_weeks": 4}, "public_interest_stats": {"alexa_rank": 132863, "bing_matches": null}}, "WPR_20190812": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.021115479764210958, "ars": 0.25967368662446433, "aud": 0.008437129884972545, "bch": 1.717669565451337e-05, "bdt": 0.4857987079415109, "bhd": 0.0021673716106069075, "bmd": 0.005748554118136548, "bnb": 0.0001832947248859764, "brl": 0.022529158444388988, "btc": 4.797816758296359e-07, "cad": 0.0076041413990380925, "chf": 0.005599097459619133, "clp": 4.081503189890179, "cny": 0.04050028832850749, "czk": 0.13251007618812702, "dkk": 0.03834069451162243, "eos": 0.0013722787802150894, "eth": 2.5925535872067816e-05, "eur": 0.005138126653439858, "gbp": 0.004733589403038364, "hkd": 0.04507786197277961, "huf": 1.6657907359611515, "idr": 81.81376927827445, "ils": 0.01998542324711355, "inr": 0.405147551398012, "jpy": 0.6084490039685304, "krw": 6.9395600424304, "kwd": 0.001748439980693587, "lkr": 1.0166701903854038, "ltc": 6.361309259420118e-05, "mmk": 8.67599225357977, "mxn": 0.11169236003012704, "myr": 0.024058072640419155, "ngn": 2.08097659076543, "nok": 0.051309478590571375, "nzd": 0.008860890300345124, "php": 0.2983549599733699, "pkr": 0.9170503343674522, "pln": 0.022205261911156685, "rub": 0.3742596158612807, "sar": 0.02156620664695167, "sek": 0.055213453908942445, "sgd": 0.007946577019301371, "thb": 0.17670767931445883, "try": 0.03153258414409329, "twd": 0.1797005605420923, "uah": 0.14517424438435567, "usd": 0.005748554118136548, "vef": 1428.4446591105461, "vnd": 133.67074439974164, "xag": 0.00033764822439369245, "xau": 3.820891465701825e-06, "xdr": 0.004177422540662774, "xlm": 0.07439736762982879, "xrp": 0.018619324779717242, "zar": 0.08649926412185249, "bits": 0.47978167582963593, "link": 0.0025124901002831334, "sats": 47.97816758296359}, "market_cap": {"aed": 12813538.248128958, "ars": 157578172.63687307, "aud": 5119916.179634454, "bch": 10412.118108120372, "bdt": 294797958.39878196, "bhd": 1315229.3644538114, "bmd": 3488403.7155067916, "bnb": 110551.78218851368, "brl": 13671403.001442684, "btc": 291.9208798693356, "cad": 4614432.5276426785, "chf": 3397708.7073073382, "clp": 2476784700.9642644, "cny": 24576850.696860008, "czk": 80411288.2330475, "dkk": 23266341.14263329, "eos": 832111.7000192773, "eth": 15749.821296124815, "eur": 3117977.101764565, "gbp": 2872491.1554969163, "hkd": 27354666.575518064, "huf": 1010854290.1684216, "idr": 49647172291.46705, "ils": 12127784.357330916, "inr": 245856296.13650456, "jpy": 369226021.4518535, "krw": 4211143626.4679346, "kwd": 1061008.4552825387, "lkr": 616947496.1357914, "ltc": 38628.96330481119, "mmk": 5264865388.952196, "mxn": 67778442.32057446, "myr": 14599196.295637442, "ngn": 1262802145.0134585, "nok": 31136207.8320464, "nzd": 5377067.347926756, "php": 181051187.74603525, "pkr": 556495029.5277302, "pln": 13474852.382496169, "rub": 227112523.8980698, "sar": 13087053.518250702, "sek": 33505263.028532505, "sgd": 4822233.248571674, "thb": 107231786.01282126, "try": 19134965.319495432, "twd": 109047960.61603297, "uah": 88096304.4095759, "usd": 3488403.7155067916, "vef": 866825214451.0272, "vnd": 81115618264.33194, "xag": 204895.57831475005, "xau": 2318.6372975859017, "xdr": 2534991.5844253493, "xlm": 45143999.15183525, "xrp": 11301196.906737993, "zar": 52490478.15332862, "bits": 291920879.8693356, "link": 1528712.6576257264, "sats": 29192087986.93356}, "total_volume": {"aed": 371062.3192928509, "ars": 4563245.613841694, "aud": 148265.6808300053, "bch": 301.8460673649455, "bdt": 8536940.542728102, "bhd": 38087.22063537415, "bmd": 101019.33972021806, "bnb": 3221.0381430979046, "brl": 395904.89429750736, "btc": 8.431203239307882, "cad": 133627.5744271869, "chf": 98392.93790683242, "clp": 71724254.27949601, "cny": 711711.5541308535, "czk": 2328599.5274129235, "dkk": 673761.0126621209, "eos": 24115.05457555505, "eth": 455.58943377192867, "eur": 90292.29807400744, "gbp": 83183.36509921645, "hkd": 792153.254350063, "huf": 29272940.082088042, "idr": 1437713341.940783, "ils": 351203.8364713106, "inr": 7119657.794011936, "jpy": 10692274.156453418, "krw": 121948886.45536025, "kwd": 30725.33523392351, "lkr": 17865944.93769056, "ltc": 1117.8728562636197, "mmk": 152463209.15883854, "mxn": 1962769.8078788961, "myr": 422772.5029861948, "ngn": 36569000.97871894, "nok": 901661.4512256498, "nzd": 155712.4224768213, "php": 5242991.618304879, "pkr": 16115325.239042085, "pln": 390213.06062031107, "rub": 6576864.11248481, "sar": 378982.94266229373, "sek": 970266.0082744603, "sgd": 139645.19547498063, "thb": 3105283.9933296507, "try": 554122.0913026911, "twd": 3157877.894206864, "uah": 2551146.951164674, "usd": 101019.33972021806, "vef": 25102057547.819664, "vnd": 2348995949.5326414, "xag": 5933.492141674682, "xau": 67.14452453183745, "xdr": 73409.84500062512, "xlm": 1307384.9180920434, "xrp": 327197.3885309872, "zar": 1520051.541361644, "bits": 8431203.239307882, "link": 44151.98774652255, "sats": 843120323.9307882}}, "community_data": {"facebook_likes": null, "twitter_followers": 34639, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 10, "stars": 36, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 18, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1323626, "bing_matches": null}}, "DLT_20190815": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.18965069054139685, "ars": 2.3348887262475206, "aud": 0.07620119391806368, "bch": 0.00015235903775218134, "bdt": 4.36015467003075, "bhd": 0.01946673844135873, "bmd": 0.051633856587559555, "bnb": 0.001708161454736126, "brl": 0.2035262568221717, "btc": 4.46963126334382e-06, "cad": 0.06825324600739717, "chf": 0.050165492973922574, "clp": 36.66445380131491, "cny": 0.36466411214963895, "czk": 1.1895562782211724, "dkk": 0.34384017778787623, "eos": 0.012283587124045703, "eth": 0.0002384191537015955, "eur": 0.046070824878815676, "gbp": 0.04294589224428016, "hkd": 0.4049152850524713, "huf": 14.961942623377125, "idr": 732.4882163224378, "ils": 0.17958043622341208, "inr": 3.6683273412631663, "jpy": 5.441072539483844, "krw": 62.693684713422485, "kwd": 0.01569524665463366, "lkr": 9.135275826538848, "ltc": 0.0005730956584510214, "mmk": 77.99449026898182, "mxn": 1.0031824271203904, "myr": 0.21606393824490647, "ngn": 18.78604337207146, "nok": 0.45819677800374137, "nzd": 0.07989797151430647, "php": 2.6861854525329227, "pkr": 8.155567648005041, "pln": 0.19928345119251514, "rub": 3.3724033823885446, "sar": 0.1936889228312534, "sek": 0.4927675554418028, "sgd": 0.07167584782516048, "thb": 1.5887737671992044, "try": 0.2837399177356546, "twd": 1.6203200914876532, "uah": 1.2970406186606582, "usd": 0.051633856587559555, "vef": 12830.375283252604, "vnd": 1197.9654985321445, "xag": 0.00303782580213391, "xau": 3.439331187297338e-05, "xdr": 0.03753058499923352, "xlm": 0.6613778099338418, "xrp": 0.1703880975742009, "zar": 0.789424353642973, "bits": 4.46963126334382, "link": 0.02149958330615055, "sats": 446.96312633438197}, "market_cap": {"aed": 15214347.81932625, "ars": 187311784.09708604, "aud": 6113088.569346843, "bch": 12222.699464801386, "bdt": 349784698.9459155, "bhd": 1561680.2064321088, "bmd": 4142223.005535885, "bnb": 137033.84063475876, "brl": 16327487.4076039, "btc": 358.5672399637475, "cad": 5475480.324327705, "chf": 4024426.4677044577, "clp": 2941332568.557463, "cny": 29254449.976597156, "czk": 95429776.26843727, "dkk": 27583891.43846453, "eos": 985426.2404250782, "eth": 19126.700360807245, "eur": 3695939.8989194315, "gbp": 3445248.4204014083, "hkd": 32483519.920562677, "huf": 1200291960.3141322, "idr": 58762404001.1332, "ils": 14406481.782110585, "inr": 294284233.4282967, "jpy": 436499175.8773599, "krw": 5029475624.803919, "kwd": 1259119.8114387544, "lkr": 732859255.3693181, "ltc": 45975.454434300605, "mmk": 6256952186.969905, "mxn": 80478306.34771124, "myr": 17333297.855585136, "ngn": 1507072804.1944866, "nok": 36757921.26220533, "nzd": 6409655.16765118, "php": 215493862.24422628, "pkr": 654264123.7243937, "pln": 15987116.801015994, "rub": 270544324.9389695, "sar": 15538306.93836621, "sek": 39531292.82666253, "sgd": 5750051.718472684, "thb": 127456201.88033889, "try": 22762468.126710936, "twd": 129986942.73224714, "uah": 104052492.77903315, "usd": 4142223.005535885, "vef": 1029291228282.0406, "vnd": 96104389170.37418, "xag": 243703.50688546794, "xau": 2759.1347439874494, "xdr": 3010816.2138038115, "xlm": 53057713.692433365, "xrp": 13669044.775775997, "zar": 63329991.8871075, "bits": 358567239.9637475, "link": 1724761.1250798737, "sats": 35856723996.37475}, "total_volume": {"aed": 1118096.6024757284, "ars": 13765471.375419993, "aud": 449248.54099481204, "bch": 898.2415090653246, "bdt": 25705543.74947521, "bhd": 114767.28110207354, "bmd": 304410.38447296194, "bnb": 10070.564539302693, "brl": 1199900.8050951473, "btc": 26.35096932997022, "cad": 402390.9549232731, "chf": 295753.56195932004, "clp": 216157405.54306218, "cny": 2149898.340340291, "czk": 7013097.7606034335, "dkk": 2027129.632282346, "eos": 72418.5975300322, "eth": 1405.6138944598486, "eur": 271613.20964984375, "gbp": 253189.98877115664, "hkd": 2387201.4555561906, "huf": 88208997.10873014, "idr": 4318426596.210335, "ils": 1058726.8363711983, "inr": 21626835.764881566, "jpy": 32078157.494991742, "krw": 369614240.13091755, "kwd": 92532.23338901522, "lkr": 53857546.39317912, "ltc": 3378.718562945644, "mmk": 459821023.2329193, "mxn": 5914319.954357505, "myr": 1273817.4302424882, "ngn": 110754203.99637248, "nok": 2701325.575397693, "nzd": 471043.1068815375, "php": 15836561.520144867, "pkr": 48081620.227504395, "pln": 1174887.0993926183, "rub": 19882198.969390124, "sar": 1141904.234234975, "sek": 2905139.5909865466, "sgd": 422569.10166844993, "thb": 9366707.53023302, "try": 1672805.077067353, "twd": 9552690.707551392, "uah": 7646777.8991869595, "usd": 304410.38447296194, "vef": 75642218711.36266, "vnd": 7062674804.759334, "xag": 17909.677515978383, "xau": 202.76775709743967, "xdr": 221263.73205801702, "xlm": 3899191.087197503, "xrp": 1004532.8728103546, "zar": 4654096.88306482, "bits": 26350969.32997022, "link": 126752.03544277987, "sats": 2635096932.997022}}, "community_data": {"facebook_likes": null, "twitter_followers": 15044, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2661, "reddit_accounts_active_48h": "19.6666666666667"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2977956, "bing_matches": null}}, "DLT_20190816": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.19272545794870158, "ars": 2.7806085160108904, "aud": 0.07766610640834394, "bch": 0.00015908081194640313, "bdt": 4.435028555951902, "bhd": 0.019781325376704746, "bmd": 0.05246827149239351, "bnb": 0.0017407148752502806, "brl": 0.209096555551487, "btc": 4.610216320294333e-06, "cad": 0.06945434970534085, "chf": 0.0508507271505545, "clp": 37.459722431994386, "cny": 0.3703315538476122, "czk": 1.2090881876230417, "dkk": 0.34915766807722814, "eos": 0.012714733802737011, "eth": 0.0002485144246856985, "eur": 0.04677777263941442, "gbp": 0.043434022165475795, "hkd": 0.41164244740714856, "huf": 15.168577288450983, "idr": 747.5658671773929, "ils": 0.18233249026321693, "inr": 3.7401482650637816, "jpy": 5.5277947430811345, "krw": 63.89336390099188, "kwd": 0.015957857496511057, "lkr": 9.28125190001857, "ltc": 0.0006123588443573057, "mmk": 79.24457196182922, "mxn": 1.0276907868943643, "myr": 0.22046642998388866, "ngn": 19.085707329451164, "nok": 0.4675153850366845, "nzd": 0.08138400812629511, "php": 2.7379988228588297, "pkr": 8.409212805246021, "pln": 0.20249421060824171, "rub": 3.4336496103138154, "sar": 0.19682685026299082, "sek": 0.5015852373840964, "sgd": 0.07278713431053799, "thb": 1.6168360201738523, "try": 0.29196284481571366, "twd": 1.6496578097472763, "uah": 1.3217234525521813, "usd": 0.05246827149239351, "vef": 13037.71707560555, "vnd": 1215.37962426813, "xag": 0.003072492658419366, "xau": 3.470828627493327e-05, "xdr": 0.03812795833772152, "xlm": 0.6894635858529862, "xrp": 0.1745244513067829, "zar": 0.8025966553648441, "bits": 4.610216320294334, "link": 0.022081239869487502, "sats": 461.0216320294333}, "market_cap": {"aed": 15460980.815357352, "ars": 223078795.12137207, "aud": 6230211.482009102, "bch": 12759.49377156125, "bdt": 355790522.68946147, "bhd": 1586913.8172341497, "bmd": 4209152.997186172, "bnb": 139658.72130246187, "brl": 16775187.819056826, "btc": 369.8419716732386, "cad": 5572148.293276027, "chf": 4079557.385555826, "clp": 3005124782.341077, "cny": 29708622.7694398, "czk": 97004173.64637677, "dkk": 28012388.83056274, "eos": 1019610.9776149612, "eth": 19947.37320855106, "eur": 3752977.622810139, "gbp": 3484955.5965613127, "hkd": 33025628.952260397, "huf": 1217413321.376161, "idr": 59971846240.065254, "ils": 14627227.580521699, "inr": 300045262.2514204, "jpy": 443438477.40656316, "krw": 5125706193.754751, "kwd": 1280184.4200231968, "lkr": 744568253.1826236, "ltc": 49153.119886120876, "mmk": 6357223481.856567, "mxn": 82453518.97717975, "myr": 17686439.97887664, "ngn": 1531109371.89581, "nok": 37508604.18852537, "nzd": 6530273.580872534, "php": 219552619.28950948, "pkr": 674610812.9045023, "pln": 16248803.772687687, "rub": 275441289.7793178, "sar": 15790006.095994405, "sek": 40241253.660746776, "sgd": 5839437.926903335, "thb": 129751350.29126151, "try": 23422623.173605997, "twd": 132344394.78602496, "uah": 106032390.11919448, "usd": 4209152.997186172, "vef": 1045922504102.4324, "vnd": 97482024230.89638, "xag": 246484.0429114058, "xau": 2784.986080588241, "xdr": 3058732.554913242, "xlm": 55309206.650809914, "xrp": 14007595.037092617, "zar": 64454330.5123065, "bits": 369841971.67323864, "link": 1771406.9629165686, "sats": 36984197167.32386}, "total_volume": {"aed": 860421.0251267608, "ars": 12414001.011008676, "aud": 346739.61398114084, "bch": 710.2148141184053, "bdt": 19800143.983024336, "bhd": 88313.54425174411, "bmd": 234244.11297095363, "bnb": 7771.405466396188, "brl": 933509.6390118462, "btc": 20.58226813719447, "cad": 310078.30210416956, "chf": 227022.60121217204, "clp": 167238584.45561254, "cny": 1653341.7981715861, "czk": 5397963.034754764, "dkk": 1558811.1809174814, "eos": 56764.8115054774, "eth": 1109.490351315035, "eur": 208838.9334545756, "gbp": 193910.79037905025, "hkd": 1837773.9005192681, "huf": 67719973.05990277, "idr": 3337500902.2303467, "ils": 814021.716985362, "inr": 16697857.349021468, "jpy": 24678788.52205489, "krw": 285251332.3959596, "kwd": 71243.70725132481, "lkr": 41436063.29579602, "ltc": 2733.8703989360597, "mmk": 353786658.8506287, "mxn": 4588116.01635078, "myr": 984270.3382926516, "ngn": 85207963.91126874, "nok": 2087218.1139809114, "nzd": 363338.15182626335, "php": 12223770.429888504, "pkr": 37542852.819811456, "pln": 904033.5310561464, "rub": 15329496.938690348, "sar": 878731.6531935887, "sek": 2239322.654785688, "sgd": 324957.48816008586, "thb": 7218349.463256422, "try": 1303465.4212736518, "twd": 7364882.039345966, "uah": 5900822.133637021, "usd": 234244.11297095363, "vef": 58206767340.98677, "vnd": 5426051095.487913, "xag": 13717.115066112874, "xau": 154.9548231714157, "xdr": 170221.91747841064, "xlm": 3078103.804454836, "xrp": 779162.7992552879, "zar": 3583185.347294079, "bits": 20582268.13719447, "link": 98581.4912404121, "sats": 2058226813.719447}}, "community_data": {"facebook_likes": null, "twitter_followers": 15044, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2661, "reddit_accounts_active_48h": "19.8333333333333"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2977956, "bing_matches": null}}, "GVT_20190824": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 4.61156980888206, "ars": 68.69898179843906, "aud": 1.8526892569250395, "bch": 0.0039858290328438324, "bdt": 106.08865122408153, "bhd": 0.4732508641423065, "bmd": 1.2554638486556904, "bnb": 0.04484432949409822, "brl": 5.088520524986353, "btc": 0.00011684233243352955, "cad": 1.6720116880734568, "chf": 1.227867497798384, "clp": 890.3875161050981, "cny": 8.86432804981833, "czk": 29.17007479159056, "dkk": 8.434068034245538, "eos": 0.342154689568198, "eth": 0.0063999454996351195, "eur": 1.1312269125842642, "gbp": 1.0321858804915145, "hkd": 9.84576431515563, "huf": 370.4146564839316, "idr": 17990.842343786928, "ils": 4.42927645805726, "inr": 89.7543660042436, "jpy": 133.40496082622857, "krw": 1513.3455027399787, "kwd": 0.38186439513480996, "lkr": 223.4223465067652, "ltc": 0.016752523379850153, "mmk": 1912.8805000705936, "mxn": 24.814242968679622, "myr": 5.248595932081506, "ngn": 455.1307544146608, "nok": 11.284987896411351, "nzd": 1.9581469647482737, "php": 65.64688640916472, "pkr": 201.16556876933987, "pln": 4.932575593953292, "rub": 83.43850402081142, "sar": 4.708428844805853, "sek": 12.16348742533356, "sgd": 1.739194069542716, "thb": 38.65730122991933, "try": 7.197547879602216, "twd": 39.31863313322877, "uah": 31.608410313708713, "usd": 1.2554638486556904, "vef": 311967.2516712628, "vnd": 29086.21113729196, "xag": 0.0732576086968233, "xau": 0.0008332890202682378, "xdr": 0.915660003378537, "xlm": 17.988724897532375, "xrp": 4.576185127296608, "zar": 19.28793968873933, "bits": 116.84233243352955, "link": 0.5319469009586013, "sats": 11684.233243352955}, "market_cap": {"aed": 20537712.340678636, "ars": 305990779.020224, "aud": 8251159.563305642, "bch": 17725.506753522128, "bdt": 472467791.17477226, "bhd": 2107631.569191942, "bmd": 5591231.716399525, "bnb": 199587.81388136593, "brl": 22661821.26973879, "btc": 519.6601607109866, "cad": 7445955.101363559, "chf": 5468381.173126797, "clp": 3965300845.5490236, "cny": 39477450.65681031, "czk": 129904687.22033492, "dkk": 37559809.14134164, "eos": 1522052.9491007614, "eth": 28466.839199247126, "eur": 5037845.148500576, "gbp": 4596915.024113597, "hkd": 43849346.56049743, "huf": 1649518723.0995479, "idr": 80122552652.57855, "ils": 19725865.495457433, "inr": 399722746.63711673, "jpy": 594082347.946738, "krw": 6739712483.040122, "kwd": 1700640.2213235023, "lkr": 995015596.2504541, "ltc": 74536.94277499206, "mmk": 8519049061.531427, "mxn": 110506221.88926311, "myr": 23374720.087274887, "ngn": 2026933321.829156, "nok": 50249064.79185656, "nzd": 8720084.98489667, "php": 292374916.4935087, "pkr": 895894620.5858808, "pln": 21966026.03002322, "rub": 371561389.8511271, "sar": 20969075.867598858, "sek": 54168367.26179648, "sgd": 7744196.992348014, "thb": 172154024.54794055, "try": 32052854.060603436, "twd": 175084120.71138296, "uah": 140768646.13840932, "usd": 5591231.716399525, "vef": 1389351986431.211, "vnd": 129546445329.77318, "xag": 326257.5961842429, "xau": 3711.235964077334, "xdr": 4077908.9400388096, "xlm": 80090002.31193437, "xrp": 20373645.9325748, "zar": 85894290.82147828, "bits": 519660160.7109866, "link": 2365851.539287931, "sats": 51966016071.098656}, "total_volume": {"aed": 800507.024071312, "ars": 11925227.14722373, "aud": 321602.1496049923, "bch": 691.8867695320306, "bdt": 18415575.172593206, "bhd": 82150.0392695071, "bmd": 217931.78266125338, "bnb": 7784.3776062226425, "brl": 883299.3083043216, "btc": 20.28227083145686, "cad": 290238.93296686397, "chf": 213141.42414657542, "clp": 154559399.5811868, "cny": 1538729.144658039, "czk": 5063536.004242878, "dkk": 1464041.7434222007, "eos": 59393.4915157839, "eth": 1110.9451962028231, "eur": 196365.90724444287, "gbp": 179173.70477386197, "hkd": 1709093.3929813844, "huf": 64299044.92896138, "idr": 3122970325.07729, "ils": 768863.3292288993, "inr": 15580161.074235601, "jpy": 23157322.25969332, "krw": 262696598.9882224, "kwd": 66286.56687781178, "lkr": 38783140.0423964, "ltc": 2908.014665778184, "mmk": 332050546.77178717, "mxn": 4307421.684299656, "myr": 911086.2643889805, "ngn": 79004629.85035758, "nok": 1958923.414807199, "nzd": 339908.20141675574, "php": 11395424.086985102, "pkr": 34919660.2187391, "pln": 856229.3477846207, "rub": 14483811.655201636, "sar": 817320.461103629, "sek": 2111419.218338372, "sgd": 301900.89852063224, "thb": 6710392.002868284, "try": 1249398.3334295237, "twd": 6825190.402498278, "uah": 5486798.53596011, "usd": 217931.78266125338, "vef": 54153354842.87266, "vnd": 5048978392.168782, "xag": 12716.543988020214, "xau": 144.6478621057531, "xdr": 158946.3663661578, "xlm": 3122602.7646434004, "xrp": 794364.7151987185, "zar": 3348129.127517789, "bits": 20282270.83145686, "link": 92338.88855594627, "sats": 2028227083.145686}}, "community_data": {"facebook_likes": null, "twitter_followers": 21327, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.174, "reddit_subscribers": 5716, "reddit_accounts_active_48h": "31.2916666666667"}, "developer_data": {"forks": 1, "stars": 14, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 194896, "bing_matches": null}}, "SNM_20190904": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.0363367868908589, "ars": 0.587588587200651, "aud": 0.014682611580334352, "bch": 3.5429481122089945e-05, "bdt": 0.8358508246920284, "bhd": 0.0037298693002664465, "bmd": 0.00989289649298176, "bnb": 0.00046825895507006924, "brl": 0.041010013122006604, "btc": 1.0308680088405042e-06, "cad": 0.013219026794473163, "chf": 0.009795253604596026, "clp": 7.135597846940348, "cny": 0.07080049233132256, "czk": 0.23355446827526122, "dkk": 0.06710945264979107, "eos": 0.0029727112922441758, "eth": 5.7518640705141245e-05, "eur": 0.008984728594926028, "gbp": 0.008136264327205453, "hkd": 0.0775825675220862, "huf": 2.982510434704141, "idr": 140.79016764434897, "ils": 0.03492662374605974, "inr": 0.7097154051168617, "jpy": 1.0515688146081648, "krw": 11.975450133719374, "kwd": 0.003007935178691099, "lkr": 1.7736815638065138, "ltc": 0.00015379001856396257, "mmk": 15.056011390396103, "mxn": 0.1985250870133288, "myr": 0.041603982627445246, "ngn": 3.5911214269523786, "nok": 0.09023485006226933, "nzd": 0.01567084268970775, "php": 0.5150806600778125, "pkr": 1.5581311976446286, "pln": 0.03939796563847522, "rub": 0.659979857288046, "sar": 0.03710380294175274, "sek": 0.09713736137493854, "sgd": 0.013726393884012157, "thb": 0.30252972120362814, "try": 0.05768547945057658, "twd": 0.3099336539750442, "uah": 0.24956809982845024, "usd": 0.00989289649298176, "vef": 2458.2625244752903, "vnd": 230.00582883539332, "xag": 0.0005382280790778836, "xau": 6.506261236539308e-06, "xdr": 0.007229857364725478, "xlm": 0.15773671924266722, "xrp": 0.03839114355247684, "zar": 0.1502215557376645, "bits": 1.0308680088405042, "link": 0.005551535816745271, "sats": 103.08680088405042}, "market_cap": {"aed": 15901032.012578748, "ars": 257129640.09082264, "aud": 6425132.675280343, "bch": 15503.993658094467, "bdt": 365769564.6312588, "bhd": 1632196.3558421156, "bmd": 4329146.2259588, "bnb": 204910.81550798743, "brl": 17946042.765089612, "btc": 451.1093746002017, "cad": 5784665.795173325, "chf": 4286417.552708585, "clp": 3122548235.5906925, "cny": 30982400.79531934, "czk": 102203782.84630309, "dkk": 29367196.338414114, "eos": 1300862.8848804543, "eth": 25170.24276030718, "eur": 3931730.602415779, "gbp": 3560441.376346425, "hkd": 33950246.990525395, "huf": 1305151004.202059, "idr": 61609986856.93658, "ils": 15283942.522091877, "inr": 310572517.3356615, "jpy": 460168078.00692916, "krw": 5240474797.985395, "kwd": 1316276.9100027708, "lkr": 776165691.5598974, "ltc": 67298.74096313765, "mmk": 6588532987.782282, "mxn": 86874873.48236217, "myr": 18205964.70449619, "ngn": 1571480080.0230443, "nok": 39486904.65670595, "nzd": 6857584.079230034, "php": 225400063.29007295, "pkr": 681840530.5885117, "pln": 17240608.387569625, "rub": 288808167.5992766, "sar": 16236679.377769776, "sek": 42507453.87806683, "sgd": 6006690.38851782, "thb": 132387456.16293281, "try": 25243251.643565733, "twd": 135627428.16075647, "uah": 109211371.84226236, "usd": 4329146.2259588, "vef": 1075739338605.0233, "vnd": 100650892947.04141, "xag": 235529.40828786354, "xau": 2847.149598426321, "xdr": 3163796.340831628, "xlm": 69025823.0528294, "xrp": 16800021.54458547, "zar": 65737176.32047692, "bits": 451109374.6002017, "link": 2429360.334093026, "sats": 45110937460.02017}, "total_volume": {"aed": 209224.79285805876, "ars": 3383295.8542006537, "aud": 84541.49718129291, "bch": 204.00058681860395, "bdt": 4812773.2422159, "bhd": 21476.338402727546, "bmd": 56962.63749811697, "bnb": 2696.203799547079, "brl": 236132.91748469422, "btc": 5.935669168038424, "cad": 76114.27370190907, "chf": 56400.416266010536, "clp": 41086295.9878293, "cny": 407664.5077827737, "czk": 1344791.0348467946, "dkk": 386411.74773222633, "eos": 17116.673144896722, "eth": 331.1884928944477, "eur": 51733.46737578979, "gbp": 46848.06677076383, "hkd": 446715.2439196078, "huf": 17173095.952932306, "idr": 810660385.3091536, "ils": 201105.16762116426, "inr": 4086493.9178511593, "jpy": 6054863.025539986, "krw": 68953842.31784572, "kwd": 17319.489931302436, "lkr": 10212740.022892097, "ltc": 885.5126589571032, "mmk": 86691508.3572415, "mxn": 1143094.196309937, "myr": 239552.95424008122, "ngn": 20677437.41181646, "nok": 519566.24204452423, "nzd": 90231.66592889215, "php": 2965800.05088681, "pkr": 8971615.405953432, "pln": 226850.85570437598, "rub": 3800119.9540931303, "sar": 213641.22006856263, "sek": 559310.4413302605, "sgd": 79035.6595286371, "thb": 1741945.9360111628, "try": 332149.13925151975, "twd": 1784577.2865784916, "uah": 1436996.4561649933, "usd": 56962.63749811697, "vef": 14154511487.735834, "vnd": 1324358205.880261, "xag": 3099.081344030176, "xau": 37.46261780338656, "xdr": 41629.03599791136, "xlm": 908237.4979599285, "xrp": 221053.64135461402, "zar": 864965.6882550316, "bits": 5935669.168038424, "link": 31965.372579346636, "sats": 593566916.8038424}}, "community_data": {"facebook_likes": null, "twitter_followers": 31003, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9906, "reddit_accounts_active_48h": "618.318181818182"}, "developer_data": {"forks": 62, "stars": 324, "subscribers": 70, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1517, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 382, "deletions": -101}, "commit_count_4_weeks": 8}, "public_interest_stats": {"alexa_rank": 18762051, "bing_matches": null}}, "MTH_20190906": {"id": "monetha", "symbol": "mth", "name": "Monetha", "localization": {"en": "Monetha", "de": "Monetha", "es": "Monetha", "fr": "Monetha", "it": "Monetha", "pl": "Monetha", "ro": "Monetha", "hu": "Monetha", "nl": "Monetha", "pt": "Monetha", "sv": "Monetha", "vi": "Monetha", "tr": "Monetha", "ru": "Monetha", "ja": "Monetha", "zh": "Monetha", "zh-tw": "Monetha", "ko": "Monetha", "ar": "Monetha", "th": "Monetha", "id": "Monetha"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/902/thumb/mth_logo_coingecko.png?1622448039", "small": "https://assets.coingecko.com/coins/images/902/small/mth_logo_coingecko.png?1622448039"}, "market_data": {"current_price": {"aed": 0.0817976955819708, "ars": 1.2970411150713121, "aud": 0.033171751497926075, "bch": 7.590846161999899e-05, "bdt": 1.8809758649196602, "bhd": 0.008394684472624684, "bmd": 0.022268898696244713, "bnb": 0.0009819181461362767, "brl": 0.09321538305261083, "btc": 2.1545410969821286e-06, "cad": 0.02968873985954265, "chf": 0.02205605256250594, "clp": 16.155795150039687, "cny": 0.15971254144946712, "czk": 0.525854344402723, "dkk": 0.1514296023105003, "eos": 0.006712470345583021, "eth": 0.00012510593396281025, "eur": 0.020308055359344292, "gbp": 0.018454236349578015, "hkd": 0.17464421659657703, "huf": 6.726098162213769, "idr": 317.9206827735706, "ils": 0.07884971650366338, "inr": 1.602760403427466, "jpy": 2.3645437421385282, "krw": 27.029645294361526, "kwd": 0.006765647726298279, "lkr": 4.003687350394464, "ltc": 0.00033311623896349884, "mmk": 33.914397935840896, "mxn": 0.4482261660681433, "myr": 0.09401038273606667, "ngn": 8.07437765268186, "nok": 0.20292311247966052, "nzd": 0.03532504265735943, "php": 1.1641289482448887, "pkr": 3.490649870636367, "pln": 0.08858679245859631, "rub": 1.487379827939839, "sar": 0.0835239583400051, "sek": 0.21894115358076857, "sgd": 0.030989288081200654, "thb": 0.6823190560529389, "try": 0.1293434644658557, "twd": 0.6987089877622725, "uah": 0.5628686834462815, "usd": 0.022268898696244713, "vef": 5533.546132333521, "vnd": 516.4182585569384, "xag": 0.0012104306651031084, "xau": 1.4588132846922963e-05, "xdr": 0.016299831745209808, "xlm": 0.353395108493785, "xrp": 0.08557259047477297, "zar": 0.33960861057676967, "bits": 2.1545410969821286, "link": 0.012264838794243352, "sats": 215.45410969821287}, "market_cap": {"aed": 28418760.57365263, "ars": 450670087.7019851, "aud": 11524249.220170178, "bch": 26385.532503270584, "bdt": 653502551.2595614, "bhd": 2916543.3869687496, "bmd": 7736825.539948209, "bnb": 341153.990114943, "brl": 32385578.02766936, "btc": 748.8610783920335, "cad": 10314387.652709736, "chf": 7665538.42942313, "clp": 5612946312.122282, "cny": 55488512.77250879, "czk": 182711417.4282159, "dkk": 52620138.86135172, "eos": 2334520.88177114, "eth": 43503.58601087344, "eur": 7057215.047693646, "gbp": 6412783.9011692, "hkd": 60677392.76786255, "huf": 2337765131.559125, "idr": 110454355723.26396, "ils": 27394551.87184871, "inr": 556835581.4437084, "jpy": 821627661.8658838, "krw": 9390725358.468012, "kwd": 2350571.3882449176, "lkr": 1390990680.2765732, "ltc": 115833.24375282002, "mmk": 11782791044.185293, "mxn": 155718043.17109007, "myr": 32661380.384517394, "ngn": 2805260021.816465, "nok": 70512112.71074651, "nzd": 12270937.989856133, "php": 404571636.2981025, "pkr": 1212747403.3868873, "pln": 30784147.982806534, "rub": 516696156.8599034, "sar": 29018511.552683845, "sek": 76068391.34051573, "sgd": 10766589.63186861, "thb": 237029255.654624, "try": 44932921.84676564, "twd": 242758320.8091772, "uah": 195556002.3477315, "usd": 7736825.539948209, "vef": 1922505536851.693, "vnd": 179434500614.6323, "xag": 420571.59267217945, "xau": 5068.703884241691, "xdr": 5663008.138092816, "xlm": 122833630.95385286, "xrp": 29735230.254227422, "zar": 117959920.64657454, "bits": 748861078.3920335, "link": 4262931.172966021, "sats": 74886107839.20335}, "total_volume": {"aed": 7479491.73424977, "ars": 118600019.59879474, "aud": 3033188.6414904264, "bch": 6940.986628131108, "bdt": 171994373.84995025, "bhd": 767600.7579175669, "bmd": 2036243.7174345, "bnb": 89785.52030694249, "brl": 8523512.576809082, "btc": 197.00887917839063, "cad": 2714705.8703776603, "chf": 2016781.2999832553, "clp": 1477268221.619538, "cny": 14603939.941440238, "czk": 48083545.56196576, "dkk": 13846557.054496765, "eos": 613780.9397805441, "eth": 11439.549639179355, "eur": 1856946.3493832413, "gbp": 1687435.168637972, "hkd": 15969275.970123267, "huf": 615027052.4139179, "idr": 29070319182.391235, "ils": 7209931.754692087, "inr": 146554656.63339326, "jpy": 216211291.14663297, "krw": 2471561174.4377856, "kwd": 618643.4212560797, "lkr": 366092788.1982547, "ltc": 30459.78420474019, "mmk": 3101095418.7453866, "mxn": 40985309.92014982, "myr": 8596206.477521485, "ngn": 738312252.9646938, "nok": 18555067.250750158, "nzd": 3230083.2277477537, "php": 106446676.57260594, "pkr": 319181202.7078586, "pln": 8100279.320140315, "rub": 136004383.12614176, "sar": 7637339.310981585, "sek": 20019739.39294456, "sgd": 2833626.5759632625, "thb": 62390507.50219316, "try": 11827024.789251255, "twd": 63889184.91446857, "uah": 51468096.201874435, "usd": 2036243.7174345, "vef": 505981400373.3474, "vnd": 47220720202.58274, "xag": 110680.454872333, "xau": 1333.922896854168, "xdr": 1490438.7701947703, "xlm": 32314061.833866168, "xrp": 7824663.990601191, "zar": 31053439.55739587, "bits": 197008879.17839062, "link": 1121483.432152684, "sats": 19700887917.83906}}, "community_data": {"facebook_likes": null, "twitter_followers": 19525, "reddit_average_posts_48h": 0.05, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1994, "reddit_accounts_active_48h": "22.1428571428571"}, "developer_data": {"forks": 2, "stars": 0, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 715962, "bing_matches": null}}, "BNT_20190907": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 1.3409948503364122, "ars": 20.423255869013577, "aud": 0.539894281789109, "bch": 0.0012179871015712668, "bdt": 30.848609123666552, "bhd": 0.13763901709164084, "bmd": 0.36509216784078674, "bnb": 0.016320983983075698, "brl": 1.521266044958989, "btc": 3.440285552767057e-05, "cad": 0.48699826814366276, "chf": 0.3602503155108812, "clp": 264.7994603480461, "cny": 2.6209981332976766, "czk": 8.599965068790423, "dkk": 2.481141181286405, "eos": 0.10909871911280483, "eth": 0.002044110556145739, "eur": 0.3327136038436584, "gbp": 0.30195495379523996, "hkd": 2.86387423758509, "huf": 109.77668848213233, "idr": 5190.503141145285, "ils": 1.2920976912053272, "inr": 26.348701753069545, "jpy": 38.645097238989315, "krw": 441.9842293097343, "kwd": 0.11091244494485594, "lkr": 65.76679038441968, "ltc": 0.005280766364623273, "mmk": 557.6753455593887, "mxn": 7.292786880500259, "myr": 1.5367459528754384, "ngn": 132.25352718995043, "nok": 3.3240291040882597, "nzd": 0.5759869284096814, "php": 19.06511300464588, "pkr": 57.219762219597385, "pln": 1.4461099967481235, "rub": 24.383228067498692, "sar": 1.3693146847036544, "sek": 3.585046638195671, "sgd": 0.5075661005111443, "thb": 11.175471257606484, "try": 2.087552839561309, "twd": 11.43793930289673, "uah": 9.225437319813603, "usd": 0.36509216784078674, "vef": 90720.89198741247, "vnd": 8441.97463319017, "xag": 0.018848817800730264, "xau": 0.00023561588143773007, "xdr": 0.26775567515709, "xlm": 5.7927220395371695, "xrp": 1.3900975223285654, "zar": 5.5115460046652025, "bits": 34.402855527670575, "link": 0.19777682215564976, "sats": 3440.285552767057}, "market_cap": {"aed": 93662336.12841389, "ars": 1426598194.9796004, "aud": 37713523.872467965, "bch": 84936.11136056534, "bdt": 2154633775.1484036, "bhd": 9613453.68327679, "bmd": 25500012.422550764, "bnb": 1137973.6557684436, "brl": 106253451.76228425, "btc": 2399.5892034597628, "cad": 34015180.57078834, "chf": 25166905.76027487, "clp": 18493129030.587112, "cny": 183064589.18149164, "czk": 600705730.6389722, "dkk": 173326797.43764254, "eos": 7598181.111972041, "eth": 142461.55776071586, "eur": 23239920.821527626, "gbp": 21091442.774878044, "hkd": 200025922.44435135, "huf": 7669383736.206361, "idr": 362599839785.1354, "ils": 90247093.9646492, "inr": 1840333346.5342429, "jpy": 2700714815.591487, "krw": 30870570038.864033, "kwd": 7746725.273883944, "lkr": 4593508487.767235, "ltc": 367835.8552816652, "mmk": 38951063572.84608, "mxn": 509295173.1075317, "myr": 107334626.78898816, "ngn": 9237301929.031225, "nok": 232203113.1197469, "nzd": 40240906.603704385, "php": 1331628116.2141082, "pkr": 3996537794.947812, "pln": 101014168.20992224, "rub": 1702903579.5841477, "sar": 95640346.5920187, "sek": 250440161.00408223, "sgd": 35453279.27137042, "thb": 780504380.2294323, "try": 145813967.03453004, "twd": 798786537.6357429, "uah": 644354458.9028251, "usd": 25500012.422550764, "vef": 6336437963995.834, "vnd": 589817132998.9979, "xag": 1317659.8469093442, "xau": 16465.61302136522, "xdr": 18701505.11059932, "xlm": 403760515.64779806, "xrp": 96808519.22717969, "zar": 384946275.02989376, "bits": 2399589203.4597626, "link": 13794876.03165867, "sats": 239958920345.9763}, "total_volume": {"aed": 19163686.963698536, "ars": 291861584.8189941, "aud": 7715439.777491885, "bch": 17405.826379183123, "bdt": 440846650.80043685, "bhd": 1966950.907286222, "bmd": 5217404.090436085, "bnb": 233237.45643969954, "brl": 21739879.36402906, "btc": 491.63913927352615, "cad": 6959521.403253119, "chf": 5148210.877388707, "clp": 3784156191.944527, "cny": 37455764.83485698, "czk": 122899083.79267606, "dkk": 35457118.197721384, "eos": 1559091.521264059, "eth": 29211.66685117508, "eur": 4754693.391271666, "gbp": 4315132.314056517, "hkd": 40926622.03640324, "huf": 1568780143.678611, "idr": 74175659478.5197, "ils": 18464914.816462334, "inr": 376540053.20677173, "jpy": 552263527.3236833, "krw": 6316241565.922821, "kwd": 1585010.8408458468, "lkr": 939850129.3409295, "ltc": 75465.57953945996, "mmk": 7969542721.951157, "mxn": 104218658.88285409, "myr": 21961097.29746355, "ngn": 1889988760.4172287, "nok": 47502533.80390706, "nzd": 8231227.128468306, "php": 272452841.6025723, "pkr": 817707548.2717489, "pln": 20665850.644992337, "rub": 348452158.2859094, "sar": 19568395.781589575, "sek": 51232643.81470694, "sgd": 7253449.080091969, "thb": 159704739.2082486, "try": 29832485.283218578, "twd": 163455577.96549982, "uah": 131837488.30637056, "usd": 5217404.090436085, "vef": 1296460441051.0107, "vnd": 120641297903.08664, "xag": 269361.84272323403, "xau": 3367.103903803831, "xdr": 3826402.420693097, "xlm": 82781758.4874087, "xrp": 19865396.023135062, "zar": 78763570.41410731, "bits": 491639139.27352613, "link": 2826359.1821513167, "sats": 49163913927.352615}}, "community_data": {"facebook_likes": null, "twitter_followers": 776, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.304, "reddit_subscribers": 5116, "reddit_accounts_active_48h": "156.208333333333"}, "developer_data": {"forks": 217, "stars": 555, "subscribers": 69, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 209, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 14254, "deletions": -10977}, "commit_count_4_weeks": 153}, "public_interest_stats": {"alexa_rank": 161703, "bing_matches": null}}, "QKC_20190915": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.034652176576541356, "ars": 0.5299310114892043, "aud": 0.013722807422104286, "bch": 3.1636334801152134e-05, "bdt": 0.7969852303622845, "bhd": 0.0035568965717389964, "bmd": 0.009434413592472905, "bnb": 0.0004547408920674559, "brl": 0.038377779332140954, "btc": 9.290904969859268e-07, "cad": 0.012438255405007566, "chf": 0.009375033393321897, "clp": 6.754049518783404, "cny": 0.06714283465491129, "czk": 0.22179030823186102, "dkk": 0.06390942525643098, "eos": 0.0025147201183333408, "eth": 5.2969579425832287e-05, "eur": 0.008566447541965413, "gbp": 0.007648950820097426, "hkd": 0.07394722620462413, "huf": 2.8444756981305903, "idr": 132.64836436094643, "ils": 0.03339876755871336, "inr": 0.6752209808132873, "jpy": 1.0187614587696467, "krw": 11.234405361780793, "kwd": 0.002867674921154479, "lkr": 1.7014854814418336, "ltc": 0.00013539658558244, "mmk": 14.422303366082541, "mxn": 0.18399087732176572, "myr": 0.039421763237043266, "ngn": 3.4199650117027423, "nok": 0.0844630405863071, "nzd": 0.014693382154843544, "php": 0.4920035367178321, "pkr": 1.4764857272220162, "pln": 0.037187118599116546, "rub": 0.6175446367570634, "sar": 0.03537810753041419, "sek": 0.09128578207045732, "sgd": 0.012997234975948006, "thb": 0.28836427605038706, "try": 0.05421940509649725, "twd": 0.29290905006939455, "uah": 0.23528785016061826, "usd": 0.009434413592472905, "vef": 2344.33518952004, "vnd": 218.76433400205406, "xag": 0.0005211519122648639, "xau": 6.314358673306202e-06, "xdr": 0.0068981224487540535, "xlm": 0.15787168022343717, "xrp": 0.03691026991633292, "zar": 0.1384899459078636, "bits": 0.9290904969859268, "link": 0.005446926312867865, "sats": 92.90904969859268}, "market_cap": {"aed": 131706740.02847435, "ars": 2014363266.9394426, "aud": 52165938.84160391, "bch": 120332.36509400833, "bdt": 3029198651.0573196, "bhd": 13519129.196615575, "bmd": 35858522.64143555, "bnb": 1728510.4660567467, "brl": 145868884.25309622, "btc": 3533.1845284231554, "cad": 47285271.183400795, "chf": 35633402.836292624, "clp": 25671424132.70363, "cny": 255197933.9345693, "czk": 843058143.5199827, "dkk": 242926824.75996637, "eos": 9571072.570027703, "eth": 201425.6380122959, "eur": 32562084.513531122, "gbp": 29069034.105983615, "hkd": 281060893.38970494, "huf": 10814105682.636244, "idr": 503376472272.3378, "ils": 126942756.00294653, "inr": 2566394465.4475513, "jpy": 3872881808.626936, "krw": 42700185076.32148, "kwd": 10899162.09834172, "lkr": 6467042711.487002, "ltc": 515079.4677605773, "mmk": 54816601660.00489, "mxn": 699293186.3658248, "myr": 149835087.86689755, "ngn": 12998676770.213089, "nok": 321078287.48709416, "nzd": 55837851.56008691, "php": 1869920117.5465703, "pkr": 5611858793.384692, "pln": 141340132.13609606, "rub": 2347180558.983664, "sar": 134465874.05311957, "sek": 346966885.7859185, "sgd": 49398091.195956975, "thb": 1096553622.375103, "try": 206263350.0022759, "twd": 1112766981.6703818, "uah": 894287135.0234863, "usd": 35858522.64143555, "vef": 8910399745415.865, "vnd": 831407065171.984, "xag": 1980477.3216285105, "xau": 24007.639493667586, "xdr": 26218532.565647967, "xlm": 602922597.2339301, "xrp": 140509270.2074598, "zar": 526378764.4394016, "bits": 3533184528.4231553, "link": 20713801.118963797, "sats": 353318452842.31555}, "total_volume": {"aed": 19896706.544005524, "ars": 304277620.22044694, "aud": 7879409.007235355, "bch": 18165.060087237383, "bdt": 457615734.8557453, "bhd": 2042311.170236272, "bmd": 5417084.212576931, "bnb": 261104.69750839903, "brl": 22035886.0141311, "btc": 533.4683935515809, "cad": 7141840.489187743, "chf": 5382989.084542982, "clp": 3878063502.3627706, "cny": 38552304.92406758, "czk": 127348325.93982829, "dkk": 36695734.73731213, "eos": 1443910.6912740807, "eth": 30414.25623776415, "eur": 4918712.465019863, "gbp": 4391901.025346758, "hkd": 42459273.987788655, "huf": 1633250890.0919504, "idr": 76164496432.20357, "ils": 19177019.820943616, "inr": 387700717.0941319, "jpy": 584955976.393267, "krw": 6450609709.494474, "kwd": 1646571.5001706758, "lkr": 976964816.0009779, "ltc": 77742.47959413525, "mmk": 8281048006.6013975, "mxn": 105644518.02209651, "myr": 22635324.301842246, "ngn": 1963687333.7036302, "nok": 48497280.64406382, "nzd": 8436696.96268843, "php": 282500291.6357822, "pkr": 847773679.2682936, "pln": 21352228.318167068, "rub": 354583914.46896404, "sar": 20313524.088742264, "sek": 52414785.93657837, "sgd": 7462797.31169872, "thb": 165573996.93713015, "try": 31131885.462163877, "twd": 168183530.99526575, "uah": 135098391.2273202, "usd": 5417084.212576931, "vef": 1346078483804.1887, "vnd": 125610861595.3533, "xag": 299236.8066772752, "xau": 3625.6002926356214, "xdr": 3960787.7953730305, "xlm": 90647307.13456173, "xrp": 21193266.384382814, "zar": 79518635.9199543, "bits": 533468393.5515809, "link": 3127534.981087499, "sats": 53346839355.15809}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 1.217, "reddit_subscribers": 9239, "reddit_accounts_active_48h": "15.75"}, "developer_data": {"forks": 104, "stars": 180, "subscribers": 34, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 504, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 3532, "deletions": -892}, "commit_count_4_weeks": 30}, "public_interest_stats": {"alexa_rank": 312593, "bing_matches": null}}, "MANA_20190923": {"id": "decentraland", "symbol": "mana", "name": "Decentraland", "localization": {"en": "Decentraland", "de": "Decentraland", "es": "Decentraland", "fr": "Decentraland", "it": "Decentraland", "pl": "Decentraland", "ro": "Decentraland", "hu": "Decentraland", "nl": "Decentraland", "pt": "Decentraland", "sv": "Decentraland", "vi": "Decentraland", "tr": "Decentraland", "ru": "Decentraland", "ja": "\u30c7\u30a3\u30bb\u30f3\u30c8\u30e9\u30e9\u30f3\u30c9", "zh": "Decentraland", "zh-tw": "Decentraland", "ko": "\ub514\uc13c\ud2b8\ub7f4\ub79c\ub4dc", "ar": "Decentraland", "th": "Decentraland", "id": "Decentraland"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/878/thumb/decentraland-mana.png?1550108745", "small": "https://assets.coingecko.com/coins/images/878/small/decentraland-mana.png?1550108745"}, "market_data": {"current_price": {"aed": 0.13077478992725033, "ars": 2.0109771977615027, "aud": 0.0524060999521599, "bch": 0.0001100707813805298, "bdt": 3.0088240548086826, "bhd": 0.01342303425764524, "bmd": 0.035602598926448244, "bnb": 0.0016536719252263036, "brl": 0.14839163232543634, "btc": 3.47388780942861e-06, "cad": 0.047203705786631515, "chf": 0.03534633141937564, "clp": 25.498655974169594, "cny": 0.2526574035414327, "czk": 0.8347778753013196, "dkk": 0.24069564235412463, "eos": 0.008978429634088788, "eth": 0.00016059338233453927, "eur": 0.032232528117268545, "gbp": 0.028425969445250544, "hkd": 0.27879861180317733, "huf": 10.715455683621267, "idr": 502.829687253934, "ils": 0.12507050592465574, "inr": 2.5417799054158143, "jpy": 3.8454528932070153, "krw": 42.51893780689488, "kwd": 0.010821481148891799, "lkr": 6.4446536830653605, "ltc": 0.0004625981775173333, "mmk": 54.642868903517865, "mxn": 0.6921662893089922, "myr": 0.14916776898203304, "ngn": 12.834736912984592, "nok": 0.31954204800161023, "nzd": 0.05653404328468681, "php": 1.861135934415581, "pkr": 5.5819084709981395, "pln": 0.13990575287131735, "rub": 2.2790362855985173, "sar": 0.1335417883132149, "sek": 0.3449311513610336, "sgd": 0.04908573037108131, "thb": 1.0869473452244667, "try": 0.20336809750968998, "twd": 1.1036383420375682, "uah": 0.8757563242552676, "usd": 0.035602598926448244, "vef": 8846.805864885097, "vnd": 827.8988002014629, "xag": 0.0020002608154846423, "xau": 2.3744085276026893e-05, "xdr": 0.02597045819729341, "xlm": 0.4355966678454965, "xrp": 0.11763889725310707, "zar": 0.5274795610705139, "bits": 3.4738878094286103, "link": 0.019058099796362648, "sats": 347.388780942861}, "market_cap": {"aed": 173204269.8638343, "ars": 2663691934.177237, "aud": 69402119.76937929, "bch": 146162.46043772402, "bdt": 3985027801.2435737, "bhd": 17778096.59832782, "bmd": 47153753.072291955, "bnb": 2192115.4332179874, "brl": 196536842.80531275, "btc": 4604.657309518688, "cad": 62509608.5290491, "chf": 46815896.43152912, "clp": 33775761788.152023, "cny": 334631324.05282724, "czk": 1105764940.2958605, "dkk": 318791199.5520173, "eos": 11913580.42692958, "eth": 213385.02255892244, "eur": 42691216.189036384, "gbp": 37649112.526769295, "hkd": 369285937.4907404, "huf": 14192808137.229128, "idr": 665975161954.1566, "ils": 165649248.3928389, "inr": 3366447893.090142, "jpy": 5093807752.510869, "krw": 56314795913.30745, "kwd": 14332477.553829279, "lkr": 8535601826.021427, "ltc": 614203.8888009501, "mmk": 72371580309.66103, "mxn": 916730259.6043515, "myr": 197564747.46853572, "ngn": 16998927982.56125, "nok": 423210592.2741891, "nzd": 74849604.24680881, "php": 2464975739.212428, "pkr": 7392941573.095432, "pln": 185302932.67337024, "rub": 3018986032.826342, "sar": 176869012.39886, "sek": 456831359.67599237, "sgd": 65012199.66585503, "thb": 1439604081.2970746, "try": 269350725.22448486, "twd": 1461710420.889906, "uah": 1159892780.6012983, "usd": 47153753.072291955, "vef": 11717124923748.139, "vnd": 1096508029489.5488, "xag": 2649087.473775688, "xau": 31450.610224157273, "xdr": 34396493.79359564, "xlm": 577065417.5697013, "xrp": 156029888.73674998, "zar": 698393105.0636429, "bits": 4604657309.518688, "link": 25261615.615413934, "sats": 460465730951.8688}, "total_volume": {"aed": 54938383.18907578, "ars": 844809889.861608, "aud": 22015760.088151593, "bch": 46240.645989708915, "bdt": 1264004545.24564, "bhd": 5639005.805452576, "bmd": 14956622.935018906, "bnb": 694706.2346468994, "brl": 62339204.39315882, "btc": 1459.377451391184, "cad": 19830238.518394865, "chf": 14848965.163132627, "clp": 10711964695.142218, "cny": 106141170.32065521, "czk": 350689508.4027967, "dkk": 101116044.14694756, "eos": 3771831.0077051, "eth": 67465.14967626972, "eur": 13540858.921235902, "gbp": 11941726.710269548, "hkd": 117123070.71069285, "huf": 4501554242.372186, "idr": 211238343816.6277, "ils": 52542018.10580407, "inr": 1067799676.8620993, "jpy": 1615471641.7443466, "krw": 17862171289.49043, "kwd": 4546095.454344868, "lkr": 2707393785.5919733, "ltc": 194337.11920434603, "mmk": 22955424910.580223, "mxn": 290778496.78651476, "myr": 62665258.77314229, "ngn": 5391862568.074316, "nok": 134239355.21441388, "nzd": 23749905.7343523, "php": 781861696.6524051, "pkr": 2344955221.695547, "pln": 58774293.31659705, "rub": 957421295.2639525, "sar": 56100796.966962494, "sek": 144905296.9449492, "sgd": 20620875.519985788, "thb": 456625698.206128, "try": 85434772.830727, "twd": 463637572.43078494, "uah": 367904521.5745124, "usd": 14956622.935018906, "vef": 3716535969010.5195, "vnd": 347799614532.3297, "xag": 840307.9463581674, "xau": 9974.870967822822, "xdr": 10910168.426441295, "xlm": 182993806.88963977, "xrp": 49420005.329978354, "zar": 221593735.8157353, "bits": 1459377451.3911839, "link": 8006292.268186197, "sats": 145937745139.1184}}, "community_data": {"facebook_likes": null, "twitter_followers": 45779, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6383, "reddit_accounts_active_48h": "2028.95833333333"}, "developer_data": {"forks": 36, "stars": 114, "subscribers": 37, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 562, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 25, "deletions": -15}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 114138, "bing_matches": null}}, "BAT_20190924": {"id": "basic-attention-token", "symbol": "bat", "name": "Basic Attention Token", "localization": {"en": "Basic Attention Token", "de": "Basic Attention Token", "es": "Basic Attention Token", "fr": "Basic Attention Token", "it": "Basic Attention Token", "pl": "Basic Attention Token", "ro": "Basic Attention Token", "hu": "Basic Attention Token", "nl": "Basic Attention Token", "pt": "Basic Attention Token", "sv": "Basic Attention Token", "vi": "Basic Attention Token", "tr": "Basic Attention Token", "ru": "Basic Attention Token", "ja": "\u30d0\u30c3\u30c8", "zh": "\u6ce8\u610f\u529b\u5e01", "zh-tw": "\u6ce8\u610f\u529b\u5e63", "ko": "\ubca0\uc774\uc9c1\uc5b4\ud150\uc158\ud1a0\ud070", "ar": "Basic Attention Token", "th": "Basic Attention Token", "id": "Basic Attention Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/677/thumb/basic-attention-token.png?1547034427", "small": "https://assets.coingecko.com/coins/images/677/small/basic-attention-token.png?1547034427"}, "market_data": {"current_price": {"aed": 0.773126429610371, "ars": 11.933199530713098, "aud": 0.31094306422921525, "bch": 0.000666149634163602, "bdt": 17.790450749402417, "bhd": 0.0793529458148482, "bmd": 0.21048805903221046, "bnb": 0.009894235975680074, "brl": 0.8729360784183832, "btc": 2.0701436094864417e-05, "cad": 0.27918231051378517, "chf": 0.20859366650092045, "clp": 151.07161160118426, "cny": 1.492697119432823, "czk": 4.940186318694827, "dkk": 1.426561771284903, "eos": 0.052382760051669384, "eth": 0.0009657229824493017, "eur": 0.19101054648966484, "gbp": 0.16876406353055048, "hkd": 1.6498580287092246, "huf": 63.765252603217895, "idr": 2968.9904350369, "ils": 0.7413284195084936, "inr": 14.988012731447576, "jpy": 22.63799785499101, "krw": 251.35010593213454, "kwd": 0.06393406402656161, "lkr": 38.12113012137397, "ltc": 0.002796647006859817, "mmk": 322.6465627718434, "mxn": 4.094184923774384, "myr": 0.8788832080382786, "ngn": 75.88094528111188, "nok": 1.907253351696762, "nzd": 0.3363599183334733, "php": 10.961494666938634, "pkr": 33.01084229802155, "pln": 0.8355639235372143, "rub": 13.474140513276115, "sar": 0.7897301486829507, "sek": 2.042536132117355, "sgd": 0.2897888038084185, "thb": 6.416675857582173, "try": 1.2070650338141726, "twd": 6.525343475378441, "uah": 5.182321888866724, "usd": 0.21048805903221046, "vef": 52303.68150879848, "vnd": 4896.947033337933, "xag": 0.011712652247339759, "xau": 0.0001387810919617073, "xdr": 0.15361250157723502, "xlm": 2.80977300863949, "xrp": 0.7154209756626289, "zar": 3.140842827781814, "bits": 20.701436094864416, "link": 0.11559714026266232, "sats": 2070.1436094864416}, "market_cap": {"aed": 1036022260.1610491, "ars": 15990994325.459404, "aud": 416676915.7620204, "bch": 893659.8250864227, "bdt": 23839959790.235645, "bhd": 106336318.51774594, "bmd": 282062941.2001379, "bnb": 13263995.003852269, "brl": 1169771429.7452126, "btc": 27744.1484408813, "cad": 374116156.5013922, "chf": 279524374.7293359, "clp": 202442377472.60602, "cny": 2000277553.8148973, "czk": 6620059539.40842, "dkk": 1911653377.689815, "eos": 70264597.21324722, "eth": 1296755.5382997754, "eur": 255962246.93618304, "gbp": 226151014.6807407, "hkd": 2210879848.8619814, "huf": 85448147407.16971, "idr": 3978573313621.705, "ils": 993411575.7598257, "inr": 20084573791.097004, "jpy": 30335878848.51968, "krw": 336819819975.32166, "kwd": 85674361.88601224, "lkr": 51083933850.43504, "ltc": 3749501.0049283537, "mmk": 432360101005.1328, "mxn": 5486381729.807999, "myr": 1177740836.0858805, "ngn": 101683690302.64972, "nok": 2555800516.5085697, "nzd": 450736580.0378193, "php": 14688868527.374262, "pkr": 44235931068.417656, "pln": 1119691154.5351284, "rub": 18055920705.39737, "sar": 1058271949.0887961, "sek": 2737085189.447311, "sgd": 388329308.10846597, "thb": 8598618246.750916, "try": 1617518424.6692517, "twd": 8744237471.08959, "uah": 6944531490.006818, "usd": 282062941.2001379, "vef": 70089155222384.13, "vnd": 6562117060109.399, "xag": 15695451.596299307, "xau": 185972.5590214868, "xdr": 205847277.98433107, "xlm": 3764606731.434948, "xrp": 960195590.2877991, "zar": 4208862820.6502075, "bits": 27744148440.8813, "link": 154923755.24538144, "sats": 2774414844088.13}, "total_volume": {"aed": 172881718.36525548, "ars": 2668427777.7243204, "aud": 69531151.95505098, "bch": 148960.23345189355, "bdt": 3978189825.4327626, "bhd": 17744411.656874415, "bmd": 47068029.16981501, "bnb": 2212487.443029144, "brl": 195200530.57305682, "btc": 4629.126243313563, "cad": 62429009.96558824, "chf": 46644416.90728665, "clp": 33781693148.148514, "cny": 333787635.66065997, "czk": 1104693704.819932, "dkk": 318998860.89550424, "eos": 11713506.644717066, "eth": 215948.96032049338, "eur": 42712589.09058618, "gbp": 37737969.08762842, "hkd": 368930979.6403028, "huf": 14258788756.703773, "idr": 663907154846.4125, "ils": 165771245.33462995, "inr": 3351526085.065847, "jpy": 5062168126.2302475, "krw": 56205345672.55144, "kwd": 14296537.31609794, "lkr": 8524409758.866981, "ltc": 625368.7905232206, "mmk": 72148215428.03883, "mxn": 915516140.4635328, "myr": 196530390.66922063, "ngn": 16968024515.718311, "nok": 426488119.1106108, "nzd": 75214710.6133646, "php": 2451141186.3477106, "pkr": 7381679014.702085, "pln": 186843601.99395618, "rub": 3013003405.6707044, "sar": 176594538.642229, "sek": 456739212.1383428, "sgd": 64800767.955455266, "thb": 1434857102.234517, "try": 269916367.1452502, "twd": 1459156678.3138726, "uah": 1158838553.3795202, "usd": 47068029.16981501, "vef": 11695823593337.963, "vnd": 1095024805055.1774, "xag": 2619110.3674404845, "xau": 31033.363672534128, "xdr": 34349871.14389765, "xlm": 628303945.3129474, "xrp": 159977984.05292514, "zar": 702335716.8836648, "bits": 4629126243.313562, "link": 25849112.7470446, "sats": 462912624331.35626}}, "community_data": {"facebook_likes": null, "twitter_followers": 105934, "reddit_average_posts_48h": 0.696, "reddit_average_comments_48h": 9.043, "reddit_subscribers": 30341, "reddit_accounts_active_48h": "366.708333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 27075, "bing_matches": null}}, "GVT_20190926": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 4.457675802177764, "ars": 68.7808805528346, "aud": 1.792406803295871, "bch": 0.003943599152738929, "bdt": 102.51069461036602, "bhd": 0.4575458932208076, "bmd": 1.2136334882052129, "bnb": 0.0595304302710636, "brl": 5.0363411038879615, "btc": 0.00012081838596343438, "cad": 1.6102343485488209, "chf": 1.2033746443294189, "clp": 870.8737032336747, "cny": 8.606603244956121, "czk": 28.48919659217567, "dkk": 8.225265039360185, "eos": 0.31813302788489606, "eth": 0.005737646695859917, "eur": 1.1014415676550617, "gbp": 0.9732406077619924, "hkd": 9.515311319249772, "huf": 367.75696965543517, "idr": 17057.516782483886, "ils": 4.274411077291339, "inr": 86.4115029310467, "jpy": 130.67717674945894, "krw": 1449.2540620053503, "kwd": 0.3686314629744294, "lkr": 219.79907238561358, "ltc": 0.016731869120906094, "mmk": 1860.3177550052565, "mxn": 23.584175486245563, "myr": 5.066941658659568, "ngn": 438.8561328974376, "nok": 10.999767120347983, "nzd": 1.9366702024053373, "php": 63.17552981526862, "pkr": 189.79366405848754, "pln": 4.816197698195436, "rub": 77.72157403805738, "sar": 4.552521259281004, "sek": 11.772405035211044, "sgd": 1.670805582311663, "thb": 37.003685055377105, "try": 6.96844076257672, "twd": 37.62506054680424, "uah": 29.633396894887237, "usd": 1.2136334882052129, "vef": 301572.9240288344, "vnd": 28223.367440520797, "xag": 0.06748415079332556, "xau": 0.000801677736968838, "xdr": 0.8853274251433827, "xlm": 17.6730539933084, "xrp": 4.348251915025691, "zar": 18.10896994942074, "bits": 120.81838596343438, "link": 0.6706360636113798, "sats": 12081.838596343438}, "market_cap": {"aed": 19777120.601677164, "ars": 305156281.0194503, "aud": 7952270.8894018065, "bch": 17496.345519404254, "bdt": 454803458.17891264, "bhd": 2029968.2418827368, "bmd": 5384459.7336447295, "bnb": 264115.3262795327, "brl": 22344452.540517904, "btc": 536.0281671743554, "cad": 7144036.561083036, "chf": 5338944.895516251, "clp": 3863756590.2094636, "cny": 38184434.647115104, "czk": 126396423.12549663, "dkk": 36492572.78528713, "eos": 1411442.989367357, "eth": 25455.895787306727, "eur": 4886704.122487425, "gbp": 4317922.102983597, "hkd": 42216048.87268159, "huf": 1631606752.8799686, "idr": 75678129487.90645, "ils": 18964040.259598155, "inr": 383377076.0100108, "jpy": 579768112.1624264, "krw": 6429824338.671664, "kwd": 1635486.5684167244, "lkr": 975170235.7051983, "ltc": 74233.34674405328, "mmk": 8253567605.837539, "mxn": 104634590.66599844, "myr": 22480216.30824202, "ngn": 1947048428.8826196, "nok": 48802050.79588915, "nzd": 8592316.233480424, "php": 280287335.30173266, "pkr": 842046920.8831042, "pln": 21367754.620512594, "rub": 344822955.12650305, "sar": 20197916.12986151, "sek": 52229970.16503885, "sgd": 7412769.561929545, "thb": 164172177.27882847, "try": 30916490.89864143, "twd": 166928999.12461576, "uah": 131472832.5333201, "usd": 5384459.7336447295, "vef": 1337971703954.984, "vnd": 125217033814.78197, "xag": 299403.1527123031, "xau": 3556.7587216563734, "xdr": 3927882.608797838, "xlm": 78409048.96108775, "xrp": 19291645.769287243, "zar": 80343052.87227783, "bits": 536028167.1743554, "link": 2975373.467805047, "sats": 53602816717.43554}, "total_volume": {"aed": 1227911.9693878938, "ars": 18946390.505698923, "aud": 493736.6164457385, "bch": 1086.3043471556127, "bdt": 28237609.57242351, "bhd": 126035.65260524978, "bmd": 334307.6420876366, "bnb": 16398.26024067045, "brl": 1387311.1903658472, "btc": 33.28064866766443, "cad": 443555.36783017195, "chf": 331481.7395890711, "clp": 239890986.12854794, "cny": 2370776.0746286926, "czk": 7847637.8826578185, "dkk": 2265732.601793052, "eos": 87632.96617637211, "eth": 1580.4929220118142, "eur": 303403.2407301301, "gbp": 268088.9872658447, "hkd": 2621088.92164181, "huf": 101302383.77701595, "idr": 4698665841.740724, "ils": 1177429.8438944512, "inr": 23802924.0910683, "jpy": 35996352.48891058, "krw": 399211716.68675536, "kwd": 101543.27182298336, "lkr": 60545881.71504001, "ltc": 4608.9628935677765, "mmk": 512443376.23651075, "mxn": 6496500.116396449, "myr": 1395740.4232534447, "ngn": 120887368.74063021, "nok": 3029997.3140613036, "nzd": 533475.431553054, "php": 17402339.845955577, "pkr": 52280587.946199894, "pln": 1326670.458552285, "rub": 21409195.122349154, "sar": 1254038.1116170434, "sek": 3242828.2568588397, "sgd": 460240.32793912606, "thb": 10193040.007252084, "try": 1919527.6193387995, "twd": 10364204.182770392, "uah": 8162819.450233997, "usd": 334307.6420876366, "vef": 83071317765.50507, "vnd": 7774412549.18476, "xag": 18589.19315366522, "xau": 220.83025605740994, "xdr": 243872.4102883004, "xlm": 4868221.803707677, "xrp": 1197770.050878401, "zar": 4988299.270960008, "bits": 33280648.66766443, "link": 184733.4992843778, "sats": 3328064866.766443}}, "community_data": {"facebook_likes": null, "twitter_followers": 21224, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.05, "reddit_subscribers": 5703, "reddit_accounts_active_48h": "28.3333333333333"}, "developer_data": {"forks": 1, "stars": 14, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 141613, "bing_matches": null}}, "FUN_20190928": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.009905040129197008, "ars": 0.15335359925855074, "aud": 0.003965760158756898, "bch": 1.2014306255696364e-05, "bdt": 0.22782246248439827, "bhd": 0.001016542330625943, "bmd": 0.0026967063368658595, "bnb": 0.00016297047627183845, "brl": 0.011226925124933604, "btc": 3.127003005669034e-07, "cad": 0.003570649533104675, "chf": 0.002659737189693767, "clp": 1.9516063759898232, "cny": 0.019191110646305905, "czk": 0.06334994658311796, "dkk": 0.018277099787313924, "eos": 0.000937699193574354, "eth": 1.5921262938934327e-05, "eur": 0.0024483342898278405, "gbp": 0.002159964694401427, "hkd": 0.021145009222682035, "huf": 0.8168862835634068, "idr": 38.0716955579216, "ils": 0.009437258661178905, "inr": 0.19138012498533014, "jpy": 0.28904040112770935, "krw": 3.222941611441862, "kwd": 0.0008189411737920983, "lkr": 0.4886828082495959, "ltc": 4.711707896430965e-05, "mmk": 4.132147891678876, "mxn": 0.052458893535734706, "myr": 0.011262254674652888, "ngn": 0.9746430838057359, "nok": 0.024297998271745617, "nzd": 0.004267988128048494, "php": 0.14089006708237128, "pkr": 0.42221163981806203, "pln": 0.010724396595764995, "rub": 0.17268385995183919, "sar": 0.010115345469583852, "sek": 0.026086769428996463, "sgd": 0.003708853036162713, "thb": 0.08235741152788335, "try": 0.015362202940732242, "twd": 0.08365682756642112, "uah": 0.06534071183182537, "usd": 0.0026967063368658595, "vef": 670.0981994641623, "vnd": 62.423934900913416, "xag": 0.00014475075547212482, "xau": 1.7605986661496137e-06, "xdr": 0.001970612762252054, "xlm": 0.0477543559117697, "xrp": 0.011329484429015697, "zar": 0.04008919325654652, "bits": 0.3127003005669034, "link": 0.0015436639133438444, "sats": 31.270030056690338}, "market_cap": {"aed": 59900987.90825883, "ars": 927214180.921731, "aud": 23982287.561799057, "bch": 72064.04418112067, "bdt": 1377762269.764171, "bhd": 6148120.6803247705, "bmd": 16308401.739895025, "bnb": 974243.2867297577, "brl": 67895121.81512924, "btc": 1876.6310798321879, "cad": 21593057.78169937, "chf": 16079399.162663424, "clp": 11800759498.988047, "cny": 116058740.98196292, "czk": 383088401.35376567, "dkk": 110524599.01034178, "eos": 5643068.0252614245, "eth": 95616.29171625388, "eur": 14804604.015459301, "gbp": 13059229.936050514, "hkd": 127878255.14295189, "huf": 4939176070.609653, "idr": 230175151316.70496, "ils": 57072067.30884955, "inr": 1157376285.5170438, "jpy": 1747345066.2010407, "krw": 19480521205.422237, "kwd": 4952568.057174807, "lkr": 2955321998.307343, "ltc": 281882.0302324901, "mmk": 24989271892.49649, "mxn": 317265555.53092194, "myr": 68193206.78213106, "ngn": 5894179409.311324, "nok": 146930953.18562782, "nzd": 25805762.577140223, "php": 852080868.5455804, "pkr": 2553335877.6526327, "pln": 64844537.41927148, "rub": 1044016585.0230333, "sar": 61164660.72547632, "sek": 157730670.3690176, "sgd": 22431391.173138537, "thb": 498058589.13639325, "try": 92920233.81778426, "twd": 505624986.2824298, "uah": 395149654.95374554, "usd": 16308401.739895025, "vef": 4052436297065.541, "vnd": 377488656781.28644, "xag": 875760.0318442414, "xau": 10646.450823838268, "xdr": 11917331.95462481, "xlm": 286467891.93832374, "xrp": 67844107.3562206, "zar": 242536919.8355453, "bits": 1876631079.832188, "link": 9264102.629081545, "sats": 187663107983.21878}, "total_volume": {"aed": 3847282.3035156736, "ars": 59565088.16847034, "aud": 1540367.1948585862, "bch": 4666.556343402263, "bdt": 88490033.03640787, "bhd": 394841.9459567424, "bmd": 1047445.5865171432, "bnb": 63300.443125715516, "brl": 4360724.418342582, "btc": 121.45799683626414, "cad": 1386899.6573044462, "chf": 1033086.1549715801, "clp": 758036370.9624567, "cny": 7454146.516449256, "czk": 24606172.740226094, "dkk": 7099129.499137475, "eos": 364217.96039225074, "eth": 6184.083290488168, "eur": 950973.7531077412, "gbp": 838966.2067591172, "hkd": 8213073.21616024, "huf": 317292217.0677732, "idr": 14787679673.611021, "ils": 3665588.202296063, "inr": 74335223.12850732, "jpy": 112268098.43827038, "krw": 1251844118.2700977, "kwd": 318090.3706046992, "lkr": 189812529.3474638, "ltc": 18301.057010198576, "mmk": 1604994957.294993, "mxn": 20375906.62223865, "myr": 4374447.002971544, "ngn": 378567581.72202766, "nok": 9437746.59591609, "nzd": 1657757.564076333, "php": 54724045.0070833, "pkr": 163994022.1364908, "pln": 4165533.9807407013, "rub": 67073282.877183974, "sar": 3928968.3950258093, "sek": 10132535.06002788, "sgd": 1440580.196167863, "thb": 31988988.21223355, "try": 5966935.090215228, "twd": 32493703.010433573, "uah": 25379419.06855035, "usd": 1047445.5865171432, "vef": 260277284169.38666, "vnd": 24246494403.60908, "xag": 56223.60057955439, "xau": 683.8458000694471, "xdr": 765418.7674562297, "xlm": 18548585.974283684, "xrp": 4400560.157573242, "zar": 15571309.330034483, "bits": 121457996.83626415, "link": 599584.7345310035, "sats": 12145799683.626415}}, "community_data": {"facebook_likes": null, "twitter_followers": 35766, "reddit_average_posts_48h": 0.188, "reddit_average_comments_48h": 3.438, "reddit_subscribers": 17359, "reddit_accounts_active_48h": "1956.52941176471"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 353342, "bing_matches": null}}, "MDA_20190930": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.7275067385104528, "ars": 42.45084872918746, "aud": 1.099458514960976, "bch": 0.00345557131762799, "bdt": 62.72286302848025, "bhd": 0.2799035475214133, "bmd": 0.7425462394884577, "bnb": 0.04858826245835139, "brl": 3.0969569072367347, "btc": 9.199820865568942e-05, "cad": 0.9852898030009062, "chf": 0.7377516184200799, "clp": 540.0498613197071, "cny": 5.296285307775373, "czk": 17.56720571423104, "dkk": 5.076716612397353, "eos": 0.2669062181354909, "eth": 0.004473443912512642, "eur": 0.679870139051955, "gbp": 0.6023876666000528, "hkd": 5.820411570918294, "huf": 228.16218300761804, "idr": 10574.452487307199, "ils": 2.5965356902432384, "inr": 52.699656078074575, "jpy": 80.02587895870991, "krw": 890.6854394676999, "kwd": 0.22548084853682582, "lkr": 134.91081743265698, "ltc": 0.013465427293108161, "mmk": 1136.4793376366476, "mxn": 14.594753762608063, "myr": 3.1071847391394507, "ngn": 268.05919245533323, "nok": 6.743285164666528, "nzd": 1.1793015419082173, "php": 38.753488238902555, "pkr": 116.78976504204768, "pln": 2.9822929169349264, "rub": 47.72129342782862, "sar": 2.785402326257129, "sek": 7.249752193141942, "sgd": 1.0260756402972937, "thb": 22.749017866088117, "try": 4.209009006419439, "twd": 22.978786919157955, "uah": 17.93100065079731, "usd": 0.7425462394884577, "vef": 184513.5643054075, "vnd": 17239.737707958066, "xag": 0.04154342752268302, "xau": 0.0004929690229339915, "xdr": 0.5440859060603773, "xlm": 12.80092474712859, "xrp": 3.054617592924871, "zar": 11.162925579925547, "bits": 91.99820865568941, "link": 0.4490644328171625, "sats": 9199.820865568941}, "market_cap": {"aed": 53537924.28946697, "ars": 833262955.210163, "aud": 21581148.05081532, "bch": 67829.02236973224, "bdt": 1231180053.4253798, "bhd": 5494195.3851005, "bmd": 14575356.969740113, "bnb": 953733.5619095841, "brl": 60789820.272976264, "btc": 1805.8225339031583, "cad": 19340143.190646853, "chf": 14481243.889786486, "clp": 10600578242.260063, "cny": 103960191.12236832, "czk": 344824713.4376011, "dkk": 99650301.79248706, "eos": 5239072.26228512, "eth": 87808.72953299245, "eur": 13345094.813995251, "gbp": 11824200.040273776, "hkd": 114248206.83945926, "huf": 4478569936.092037, "idr": 207564743534.67444, "ils": 50967108.25178721, "inr": 1034435646.7950451, "jpy": 1570819015.1820734, "krw": 17483164734.54226, "kwd": 4425938.322074317, "lkr": 2648149325.3740716, "ltc": 264311.36420856323, "mmk": 22307825632.783947, "mxn": 286478786.9938122, "myr": 60990581.2398775, "ngn": 5261703866.07618, "nok": 132363189.24930084, "nzd": 23148377.8843437, "php": 760687880.2507356, "pkr": 2292453217.5566697, "pln": 58539093.649708964, "rub": 936715923.9099841, "sar": 54674350.29704064, "sek": 142304573.82693756, "sgd": 20140723.82292387, "thb": 446537923.8034427, "try": 82618166.37799846, "twd": 451048034.8120164, "uah": 351965603.5024275, "usd": 14575356.969740113, "vef": 3621796088231.6416, "vnd": 338396880618.8857, "xag": 815451.2859788624, "xau": 9676.43373864075, "xdr": 10679801.312437667, "xlm": 251267918.15781543, "xrp": 59958746.61435188, "zar": 219115815.96069366, "bits": 1805822533.9031582, "link": 8814635.45655161, "sats": 180582253390.31583}, "total_volume": {"aed": 13773678.374517485, "ars": 214373196.17418852, "aud": 5552172.523492033, "bch": 17450.342929384897, "bdt": 316745154.0578072, "bhd": 1413489.2445955519, "bmd": 3749795.7150811474, "bnb": 245366.61648852957, "brl": 15639370.48357752, "btc": 464.583173769622, "cad": 4975630.182911156, "chf": 3725583.284148864, "clp": 2727206129.6841083, "cny": 26745792.91738779, "czk": 88712903.26451994, "dkk": 25636989.57382543, "eos": 1347853.8303317812, "eth": 22590.51345590512, "eur": 3433286.7081582905, "gbp": 3042006.7746767183, "hkd": 29392586.22287778, "huf": 1152199729.3729823, "idr": 53400090819.32745, "ils": 13112285.656495756, "inr": 266128806.58307603, "jpy": 404123921.25465405, "krw": 4497886147.402765, "kwd": 1138659.2170458273, "lkr": 681288219.135794, "ltc": 67999.26910978396, "mmk": 5739124547.292795, "mxn": 73702272.27787726, "myr": 15691020.169757059, "ngn": 1353676253.1442943, "nok": 34053019.82736641, "nzd": 5955373.057551876, "php": 195701838.37008482, "pkr": 589778436.9922888, "pln": 15060327.029254688, "rub": 240988496.2006914, "sar": 14066046.19662665, "sek": 36610635.491160385, "sgd": 5181595.212153444, "thb": 114880616.42508349, "try": 21255139.542397354, "twd": 116040930.71238373, "uah": 90550036.92941357, "usd": 3749795.7150811474, "vef": 931777896125.9175, "vnd": 87059217525.57591, "xag": 209790.79581853093, "xau": 2489.4518772852193, "xdr": 2747587.814311408, "xlm": 64643587.4470618, "xrp": 15425560.52677877, "zar": 56371830.17209962, "bits": 464583173.769622, "link": 2267737.410040869, "sats": 46458317376.962204}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 366, "reddit_accounts_active_48h": "18.7777777777778"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 3013477, "bing_matches": null}}, "SNT_20191002": {"id": "status", "symbol": "SNT", "name": "Status", "localization": {"en": "Status", "de": "Status", "es": "Status", "fr": "Status", "it": "Status", "pl": "Status", "ro": "Status", "hu": "Status", "nl": "Status", "pt": "Status", "sv": "Status", "vi": "Status", "tr": "Status", "ru": "Status", "ja": "\u30b9\u30c6\u30fc\u30bf\u30b9", "zh": "Status", "zh-tw": "Status", "ko": "\uc2a4\ud14c\uc774\ud130\uc2a4\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Status", "th": "Status", "id": "Status"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/779/thumb/status.png?1548610778", "small": "https://assets.coingecko.com/coins/images/779/small/status.png?1548610778"}, "market_data": {"current_price": {"aed": 0.04549143423927627, "ars": 0.7079046279561804, "aud": 0.0183126809315469, "bch": 5.437973515975102e-05, "bdt": 1.0469418188035042, "bhd": 0.004669319057307693, "bmd": 0.012384771822544877, "bnb": 0.0007863961551504239, "brl": 0.05150746099979571, "btc": 1.5118720473011907e-06, "cad": 0.0163988002179499, "chf": 0.012272256170537047, "clp": 8.994678534283324, "cny": 0.08821425273762262, "czk": 0.2924967292803626, "dkk": 0.08451368291704618, "eos": 0.004367133927913715, "eth": 7.118992992945635e-05, "eur": 0.011320635073236354, "gbp": 0.010076869593413631, "hkd": 0.09710048752233232, "huf": 3.796675649919356, "idr": 175.4674471818155, "ils": 0.04312656205976126, "inr": 0.8732393749932065, "jpy": 1.3371218898210564, "krw": 14.8988354467216, "kwd": 0.0037684136006203095, "lkr": 2.2520353284499097, "ltc": 0.00022368756885835815, "mmk": 18.970381930126436, "mxn": 0.24395151992894204, "myr": 0.05192887763060144, "ngn": 4.483287399761245, "nok": 0.11238350649247354, "nzd": 0.019666398415610204, "php": 0.6427015413450543, "pkr": 1.942194048236133, "pln": 0.04960881355554042, "rub": 0.8008117308175738, "sar": 0.04645651758354807, "sek": 0.12130945924041812, "sgd": 0.017107828404790606, "thb": 0.37942606194139566, "try": 0.07023035034364883, "twd": 0.38453478031819555, "uah": 0.29837187926140024, "usd": 0.012384771822544877, "vef": 3077.4627498769455, "vnd": 287.3353756233172, "xag": 0.0007063088624916181, "xau": 8.272408338868842e-06, "xdr": 0.009078087285012679, "xlm": 0.20814514849001836, "xrp": 0.05116131893950131, "zar": 0.18736921290328074, "bits": 1.5118720473011908, "link": 0.007370483907036294, "sats": 151.18720473011908}, "market_cap": {"aed": 161198159.73383215, "ars": 2508448572.8321333, "aud": 64890688.00142457, "bch": 192693.7099511526, "bdt": 3709821362.2336855, "bhd": 16545656.38201533, "bmd": 43885238.17510253, "bnb": 2786582.026964605, "brl": 182515853.0297701, "btc": 5357.294089610363, "cad": 58108882.72003501, "chf": 43486540.78628169, "clp": 31872497567.29019, "cny": 312585774.4736201, "czk": 1036457418.3385752, "dkk": 299472865.30689937, "eos": 15474868.2749395, "eth": 252260.36259593192, "eur": 40114486.85538317, "gbp": 35707224.04117213, "hkd": 344074003.37235266, "huf": 13453458614.959423, "idr": 621766054464.8513, "ils": 152818273.5042961, "inr": 3094309568.60212, "jpy": 4738069739.574938, "krw": 52793781870.15186, "kwd": 13353312.501443844, "lkr": 7980050677.062961, "ltc": 792633.2738960014, "mmk": 67221240827.446266, "mxn": 864438256.0017161, "myr": 184009136.0291543, "ngn": 15886456219.387117, "nok": 398229133.3294775, "nzd": 69687563.96015427, "php": 2277402492.4778547, "pkr": 6882133123.67632, "pln": 175788026.59133583, "rub": 2837663385.640302, "sar": 164617916.918627, "sek": 429858102.1870376, "sgd": 60621312.605559684, "thb": 1344490099.3515267, "try": 248860107.89003003, "twd": 1362592760.0987568, "uah": 1057275917.0502701, "usd": 43885238.17510253, "vef": 10904939363315.94, "vnd": 1018168245329.1019, "xag": 2502794.003778512, "xau": 29313.144839059696, "xdr": 32168055.123302825, "xlm": 737558959.2896949, "xrp": 181289304.25066477, "zar": 663939768.3511233, "bits": 5357294089.610363, "link": 26117190.236580633, "sats": 535729408961.03625}, "total_volume": {"aed": 87067916.07186961, "ars": 1354887612.6785612, "aud": 35049388.8148781, "bch": 104079.59863379819, "bdt": 2003784754.999279, "bhd": 8936800.66572716, "bmd": 23703721.187220763, "bnb": 1505115.7559847329, "brl": 98582235.67577404, "btc": 2893.633729669807, "cad": 31386334.26121089, "chf": 23488372.88023484, "clp": 17215283026.62912, "cny": 168836865.27233598, "czk": 559821449.9531271, "dkk": 161754193.38159436, "eos": 8358436.190651413, "eth": 136253.31774896343, "eur": 21667026.35165119, "gbp": 19286532.743982155, "hkd": 185844593.3725424, "huf": 7266612767.154394, "idr": 335834321780.54315, "ils": 82541690.51116967, "inr": 1671328545.340011, "jpy": 2559172257.978287, "krw": 28515490354.0889, "kwd": 7212520.875405158, "lkr": 4310262497.70492, "ltc": 428124.7843108217, "mmk": 36308189648.5363, "mxn": 466908788.8295181, "myr": 99388802.19661158, "ngn": 8580747069.773916, "nok": 215095388.28083274, "nzd": 37640324.05924733, "php": 1230092759.1502264, "pkr": 3717244602.525827, "pln": 94948336.69916707, "rub": 1532706315.6868808, "sar": 88915028.54538377, "sek": 232179134.2148866, "sgd": 32743372.2991793, "thb": 726199054.152288, "try": 134416739.14381504, "twd": 735976839.1420168, "uah": 571066139.7285264, "usd": 23703721.187220763, "vef": 5890081790150.519, "vnd": 549942924148.3533, "xag": 1351833.4119073106, "xau": 15832.90056700409, "xdr": 17374922.445117556, "xlm": 398377510.45995754, "xrp": 97919740.23331034, "zar": 358613597.84146154, "bits": 2893633729.669807, "link": 14106670.518487286, "sats": 289363372966.9807}}, "community_data": {"facebook_likes": null, "twitter_followers": 111101, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5701, "reddit_accounts_active_48h": "2024.76470588235"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 299805, "bing_matches": null}}, "SNT_20191005": {"id": "status", "symbol": "SNT", "name": "Status", "localization": {"en": "Status", "de": "Status", "es": "Status", "fr": "Status", "it": "Status", "pl": "Status", "ro": "Status", "hu": "Status", "nl": "Status", "pt": "Status", "sv": "Status", "vi": "Status", "tr": "Status", "ru": "Status", "ja": "\u30b9\u30c6\u30fc\u30bf\u30b9", "zh": "Status", "zh-tw": "Status", "ko": "\uc2a4\ud14c\uc774\ud130\uc2a4\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Status", "th": "Status", "id": "Status"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/779/thumb/status.png?1548610778", "small": "https://assets.coingecko.com/coins/images/779/small/status.png?1548610778"}, "market_data": {"current_price": {"aed": 0.046872498712219865, "ars": 0.7379024095280977, "aud": 0.019019202998200133, "bch": 5.659342013913092e-05, "bdt": 1.0743094586942532, "bhd": 0.0048106576879879005, "bmd": 0.012760737549339369, "bnb": 0.0008041025922790481, "brl": 0.05268079086181523, "btc": 1.5276239777454763e-06, "cad": 0.01700942511639196, "chf": 0.012720758158597276, "clp": 9.248982575761168, "cny": 0.09122013237145242, "czk": 0.30016572507809064, "dkk": 0.08691916406266019, "eos": 0.004233234744720329, "eth": 7.062402408816758e-05, "eur": 0.011642526878628311, "gbp": 0.010374160609174166, "hkd": 0.10008565478385603, "huf": 3.8863850000486653, "idr": 180.4828393437025, "ils": 0.04455606754636337, "inr": 0.9079468044904115, "jpy": 1.3676192861128968, "krw": 15.371244888708043, "kwd": 0.0038855935408236455, "lkr": 2.314657793398503, "ltc": 0.00022602692282533654, "mmk": 19.484911015186583, "mxn": 0.25267494311012983, "myr": 0.05343303634034877, "ngn": 4.612186721177162, "nok": 0.11648116081674913, "nzd": 0.020365052466053895, "php": 0.6634296477667239, "pkr": 1.994895212254834, "pln": 0.05076172906324505, "rub": 0.8326572662007177, "sar": 0.047864888510694495, "sek": 0.1260032614582789, "sgd": 0.01766038862099631, "thb": 0.3906069675510067, "try": 0.07270000181880694, "twd": 0.3962718162498085, "uah": 0.3165592531966628, "usd": 0.012760737549339369, "vef": 3170.885586891528, "vnd": 295.03082906958804, "xag": 0.0007258264131556569, "xau": 8.507711331520039e-06, "xdr": 0.009355445409135308, "xlm": 0.21370600162616693, "xrp": 0.05044934597790645, "zar": 0.19503026362383466, "bits": 1.5276239777454763, "link": 0.006340301292011374, "sats": 152.76239777454762}, "market_cap": {"aed": 166091939.30431825, "ars": 2614745225.5174775, "aud": 67394237.49069336, "bch": 200537.86678800997, "bdt": 3806798150.5108523, "bhd": 17046487.528492536, "bmd": 45217466.632958874, "bnb": 2849324.4998786096, "brl": 186673528.37417594, "btc": 5413.110799774268, "cad": 60272622.1484027, "chf": 45075800.30999778, "clp": 32773619815.56857, "cny": 323237060.2257063, "czk": 1063632380.6204396, "dkk": 307996648.74946725, "eos": 15000398.690025827, "eth": 250255.08442161538, "eur": 41255105.24937932, "gbp": 36760669.93592973, "hkd": 354651895.1689547, "huf": 13771342242.802427, "idr": 639538015282.5134, "ils": 157883703.02137044, "inr": 3217294782.359368, "jpy": 4846136768.9207325, "krw": 54467757069.27524, "kwd": 13768537.719869465, "lkr": 8201952366.392293, "ltc": 800922.736753107, "mmk": 69044466298.9707, "mxn": 895349564.62282, "myr": 189339098.0321888, "ngn": 16343208875.148531, "nok": 412749104.9976452, "nzd": 72163233.26153839, "php": 2350852201.545399, "pkr": 7068878844.001637, "pln": 179873364.00217804, "rub": 2950507524.0005155, "sar": 169608456.46689704, "sek": 446490514.25155944, "sgd": 62579300.77374948, "thb": 1384109457.1178043, "try": 257611277.8550279, "twd": 1404182756.6452358, "uah": 1121722581.7417994, "usd": 45217466.632958874, "vef": 11235981671735.01, "vnd": 1045436959859.6545, "xag": 2571954.1281440468, "xau": 30146.937178859967, "xdr": 33150869.13968735, "xlm": 757263752.2268083, "xrp": 178766439.60353854, "zar": 691086577.3808248, "bits": 5413110799.774268, "link": 22466754.841241326, "sats": 541311079977.4268}, "total_volume": {"aed": 97805797.69817024, "ars": 1539733015.52371, "aud": 39686135.19503786, "bch": 118089.81285933347, "bdt": 2241691748.2337623, "bhd": 10038086.843102904, "bmd": 26627001.96319495, "bnb": 1677868.6357617953, "brl": 109925583.55475597, "btc": 3187.593702729064, "cad": 35492462.26684081, "chf": 26543579.566044234, "clp": 19299251022.923687, "cny": 190343123.53389898, "czk": 626336316.3794503, "dkk": 181368572.40320992, "eos": 8833215.90327424, "eth": 147366.56253397523, "eur": 24293704.408162143, "gbp": 21647086.921028398, "hkd": 208842233.14782885, "huf": 8109467076.327778, "idr": 376601814663.6485, "ils": 92972251.28579536, "inr": 1894553606.4954467, "jpy": 2853722308.4034543, "krw": 32074178020.342453, "kwd": 8107815.589785021, "lkr": 4829846031.285016, "ltc": 471635.6946089473, "mmk": 40657897856.4536, "mxn": 527240387.1821587, "myr": 111495245.32048629, "ngn": 9623950371.564835, "nok": 243053670.35022005, "nzd": 42494431.83809218, "php": 1384335542.144335, "pkr": 4162618228.5856686, "pln": 105921201.98351473, "rub": 1737451818.6014152, "sar": 99876553.01384607, "sek": 262922819.09616217, "sgd": 36850785.51798907, "thb": 815054180.9675204, "try": 151698370.38564166, "twd": 826874652.6950349, "uah": 660543626.3965356, "usd": 26627001.96319495, "vef": 6616480937780.774, "vnd": 615621662499.0969, "xag": 1514534.818485862, "xau": 17752.48847888168, "xdr": 19521400.100302625, "xlm": 445926428.8482356, "xrp": 105269372.4952568, "zar": 406956979.74472666, "bits": 3187593702.729064, "link": 13229894.768768629, "sats": 318759370272.9064}}, "community_data": {"facebook_likes": null, "twitter_followers": 111087, "reddit_average_posts_48h": 0.063, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5696, "reddit_accounts_active_48h": "2040.11764705882"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 289731, "bing_matches": null}}, "BLZ_20191012": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.10431801946682685, "ars": 1.6427219461850444, "aud": 0.0422157885236179, "bch": 0.00012297933888624028, "bdt": 2.400570604272466, "bhd": 0.010705545864512691, "bmd": 0.028399912627999242, "bnb": 0.0017747454265936921, "brl": 0.11628628224660557, "btc": 3.4698514582822486e-06, "cad": 0.037834931601273214, "chf": 0.028188191279357518, "clp": 20.581700680637343, "cny": 0.20290033577947786, "czk": 0.6682498305371731, "dkk": 0.19355596932731256, "eos": 0.008994244409815758, "eth": 0.000157138147157068, "eur": 0.025911143084669765, "gbp": 0.02324248849475457, "hkd": 0.22278737459723402, "huf": 8.653951427019134, "idr": 402.5302148968774, "ils": 0.09959423359949902, "inr": 2.0226417773661045, "jpy": 3.037728494463632, "krw": 34.06200320864344, "kwd": 0.008634624235679003, "lkr": 5.1214589382911475, "ltc": 0.0004981448917440006, "mmk": 43.18045116744438, "mxn": 0.5574215002992399, "myr": 0.1190947212064758, "ngn": 10.277016174879314, "nok": 0.2602113594627802, "nzd": 0.04509605086252427, "php": 1.4744010316223792, "pkr": 4.452565168135063, "pln": 0.11201354379163579, "rub": 1.8514016641843223, "sar": 0.10651387231131129, "sek": 0.2823238438339793, "sgd": 0.039265889598947445, "thb": 0.8642093412700165, "try": 0.16574058370102257, "twd": 0.8734399376721933, "uah": 0.7016161210861657, "usd": 0.028399912627999242, "vef": 7057.027328781923, "vnd": 660.5411032633814, "xag": 0.0015972525500711132, "xau": 1.88231780907116e-05, "xdr": 0.020802282802018995, "xlm": 0.4615111769748355, "xrp": 0.102641496016104, "zar": 0.4338316693219175, "bits": 3.469851458282249, "link": 0.01105639043346676, "sats": 346.98514582822486}, "market_cap": {"aed": 21938065.49482392, "ars": 345473163.582898, "aud": 8880268.100492131, "bch": 25858.08592557692, "bdt": 504839675.93178356, "bhd": 2251374.858666733, "bmd": 5972497.814516598, "bnb": 373237.9703095233, "brl": 24454989.55131965, "btc": 729.6263126600012, "cad": 7957009.525835067, "chf": 5928259.52320447, "clp": 4328269166.1801815, "cny": 42669913.38603234, "czk": 140531081.82623082, "dkk": 40704645.06267224, "eos": 1891355.191314501, "eth": 33071.54764323789, "eur": 5449754.943301032, "gbp": 4888346.1212342875, "hkd": 46849765.98152179, "huf": 1819884103.2872837, "idr": 84652050174.91135, "ils": 20944653.96083753, "inr": 425797286.69033146, "jpy": 638818366.2406954, "krw": 7163354153.753066, "kwd": 1815860.318032183, "lkr": 1077042127.4438748, "ltc": 104794.63850519065, "mmk": 9080843085.874321, "mxn": 117228187.10333148, "myr": 25045603.887699407, "ngn": 2161255122.4437547, "nok": 54722348.27825088, "nzd": 9484195.134500412, "php": 310074390.01867765, "pkr": 936373857.3428411, "pln": 23556074.877754588, "rub": 389319659.0383901, "sar": 22399853.05334447, "sek": 59373616.09873798, "sgd": 8257653.120822211, "thb": 181695328.5132238, "try": 34855222.51061937, "twd": 183684301.6804099, "uah": 147549776.11041874, "usd": 5972497.814516598, "vef": 1484091900218.754, "vnd": 138913371928.23108, "xag": 335798.135198228, "xau": 3958.6910014178893, "xdr": 4374717.281683673, "xlm": 97025859.38832846, "xrp": 21593739.341104828, "zar": 91232006.43597138, "bits": 729626312.6600012, "link": 2324893.0048703738, "sats": 72962631266.00012}, "total_volume": {"aed": 1368466.858380373, "ars": 21549589.921070233, "aud": 553796.053550813, "bch": 1613.2701751001487, "bdt": 31491216.282089002, "bhd": 140437.71911443773, "bmd": 372556.33696797775, "bnb": 23281.503145560826, "brl": 1525469.1773490803, "btc": 45.51827908956851, "cad": 496327.0032354802, "chf": 369778.9294758816, "clp": 269995302.9640633, "cny": 2661691.4938340215, "czk": 8766249.118631188, "dkk": 2539110.027394122, "eos": 117988.488028378, "eth": 2061.3729791920355, "eur": 339908.1074904627, "gbp": 304900.10617459286, "hkd": 2922574.068795844, "huf": 113524449.39462432, "idr": 5280480413.6286, "ils": 1306499.1902961514, "inr": 26533462.318859357, "jpy": 39849594.44857102, "krw": 446832893.8692834, "kwd": 113270.91102273302, "lkr": 67184431.40914966, "ltc": 6534.774898021551, "mmk": 566450711.5316801, "mxn": 7312378.563233264, "myr": 1562310.9009555066, "ngn": 134816171.83916774, "nok": 3413510.181835399, "nzd": 591579.9721334307, "php": 19341518.92500871, "pkr": 58409734.948134266, "pln": 1469418.449008586, "rub": 24287096.629477262, "sar": 1397272.5417984023, "sek": 3703586.6439183727, "sgd": 515098.6268299469, "thb": 11336889.333935559, "try": 2174221.6449536164, "twd": 11457978.339689553, "uah": 9203955.49991373, "usd": 372556.33696797775, "vef": 92575645775.11617, "vnd": 8665124328.797237, "xag": 20953.112323331028, "xau": 246.92661457900576, "xdr": 272888.94803329336, "xlm": 6054205.722943376, "xrp": 1346473.8528446297, "zar": 5691099.81781881, "bits": 45518279.08956851, "link": 145040.17578980696, "sats": 4551827908.956851}}, "community_data": {"facebook_likes": null, "twitter_followers": 36414, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 30, "stars": 205, "subscribers": 53, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 324, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 796, "deletions": -122}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 568408, "bing_matches": null}}, "FUN_20191022": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.012851704594455985, "ars": 0.20398570721576598, "aud": 0.005104350546126956, "bch": 1.6494542898188348e-05, "bdt": 0.2965829735618154, "bhd": 0.0013189791334890014, "bmd": 0.003498776160964825, "bnb": 0.00019210611000050813, "brl": 0.014390816227664444, "btc": 4.396297890988941e-07, "cad": 0.004592668527690498, "chf": 0.003441651642584751, "clp": 2.4865790210162544, "cny": 0.02477728313910459, "czk": 0.08030880873308982, "dkk": 0.023386519615121084, "eos": 0.0012151349804276875, "eth": 2.0243893239923646e-05, "eur": 0.003132324842193852, "gbp": 0.002695320702137024, "hkd": 0.027442685806289193, "huf": 1.0363025111161728, "idr": 49.44133363592378, "ils": 0.01239843814280299, "inr": 0.24872974667107015, "jpy": 0.3791448786829531, "krw": 4.12481217944626, "kwd": 0.0010613572472048406, "lkr": 0.6368342598580368, "ltc": 6.579014691922594e-05, "mmk": 5.360612835985154, "mxn": 0.06684061977907195, "myr": 0.014647626397879233, "ngn": 1.2648075821887843, "nok": 0.03204808987920562, "nzd": 0.005479639773480492, "php": 0.17947958622668864, "pkr": 0.5456341423024633, "pln": 0.013411508780210368, "rub": 0.2232219190695559, "sar": 0.013124325734142192, "sek": 0.03372050488414678, "sgd": 0.004772645573410517, "thb": 0.10600053550840065, "try": 0.020264911524308277, "twd": 0.10689460926979738, "uah": 0.08659852364989475, "usd": 0.003498776160964825, "vef": 869.4026389671656, "vnd": 80.946656917287, "xag": 0.00019941729570319936, "xau": 2.347888730577056e-06, "xdr": 0.002540412387610307, "xlm": 0.05491372186192546, "xrp": 0.011876558465080306, "zar": 0.05171534045969791, "bits": 0.4396297890988941, "link": 0.001486527504367403, "sats": 43.962978909889415}, "market_cap": {"aed": 77211403.12701662, "ars": 1225520128.9625335, "aud": 30666287.481322132, "bch": 99097.11134017856, "bdt": 1781832702.7349465, "bhd": 7924258.517105549, "bmd": 21020201.22155523, "bnb": 1154149.0230650683, "brl": 86458189.64437895, "btc": 2641.23973775456, "cad": 27592167.133474592, "chf": 20677004.396210887, "clp": 14939049819.25048, "cny": 148858758.99068758, "czk": 482485086.7188446, "dkk": 140503229.00511947, "eos": 7300376.081474439, "eth": 121622.7303016527, "eur": 18818608.406213194, "gbp": 16193143.23323851, "hkd": 164872158.48328054, "huf": 6225973399.812447, "idr": 297037230699.1413, "ils": 74488236.0587641, "inr": 1494336614.9409733, "jpy": 2277854105.3738313, "krw": 24781345826.128094, "kwd": 6376499.060759999, "lkr": 3826019062.421153, "ltc": 395258.81708776, "mmk": 32205878655.634464, "mxn": 401569924.1365906, "myr": 88001072.41404094, "ngn": 7598802741.592216, "nok": 192540839.14920163, "nzd": 32920977.324949607, "php": 1078290477.6069202, "pkr": 3278100380.5015306, "pln": 80574635.3224655, "rub": 1341088837.935224, "sar": 78849276.18599887, "sek": 202588495.33310494, "sgd": 28673446.28431132, "thb": 636837706.5210011, "try": 121749005.4752479, "twd": 642209187.7209557, "uah": 520272892.2528227, "usd": 21020201.22155523, "vef": 5223260240975.638, "vnd": 486317197309.4606, "xag": 1198073.694884128, "xau": 14105.816231736851, "xdr": 15262473.824154153, "xlm": 329914641.6511194, "xrp": 71352849.47371715, "zar": 310699173.85178363, "bits": 2641239737.75456, "link": 8930867.773651, "sats": 264123973775.456}, "total_volume": {"aed": 1543140.81892846, "ars": 24493145.556615777, "aud": 612893.925779011, "bch": 1980.5468020748904, "bdt": 35611563.37968184, "bhd": 158373.58579497645, "bmd": 420108.03085278807, "bnb": 23066.728442795607, "brl": 1727946.3417006051, "btc": 52.787602437428326, "cad": 551454.8066989147, "chf": 413248.9270330544, "clp": 298570633.8501299, "cny": 2975079.0420901873, "czk": 9642907.675376361, "dkk": 2808086.099826206, "eos": 145904.72221207898, "eth": 2430.7419893569727, "eur": 376107.1760253596, "gbp": 323634.8427557847, "hkd": 3295121.5410741493, "huf": 124431797.65828744, "idr": 5936561917.923869, "ils": 1488715.8235314807, "inr": 29865689.967340156, "jpy": 45525006.763362356, "krw": 495277960.8132773, "kwd": 127440.19126722409, "lkr": 76466505.59513809, "ltc": 7899.6105495728225, "mmk": 643664069.6868356, "mxn": 8025743.821411654, "myr": 1758782.2711651963, "ngn": 151869053.15328288, "nok": 3848105.5410053693, "nzd": 657955.9734923695, "php": 21550625.727132756, "pkr": 65515847.41149216, "pln": 1610358.103864907, "rub": 26802892.368407886, "sar": 1575875.2165844769, "sek": 4048917.179753, "sgd": 573065.1638059807, "thb": 12727786.572518302, "try": 2433265.7146993494, "twd": 12835140.558614386, "uah": 10398131.68136012, "usd": 420108.03085278807, "vef": 104391654073.11842, "vnd": 9719495925.758234, "xag": 23944.603358894754, "xau": 281.91769518407204, "xdr": 305034.55968977755, "xlm": 6593647.177431747, "xrp": 1426052.2424209635, "zar": 6209608.401874449, "bits": 52787602.437428325, "link": 178491.59647186054, "sats": 5278760243.742832}}, "community_data": {"facebook_likes": null, "twitter_followers": 35642, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.438, "reddit_subscribers": 17315, "reddit_accounts_active_48h": "1705.23529411765"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 389622, "bing_matches": null}}, "MDA_20191024": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.779262920306029, "ars": 44.158154001176506, "aud": 1.1052745245543463, "bch": 0.0033687569593364806, "bdt": 64.14120371961822, "bhd": 0.28525586066383884, "bmd": 0.7566709302785213, "bnb": 0.04108521349394749, "brl": 3.1118848678634428, "btc": 9.208626291635787e-05, "cad": 0.9938494333743251, "chf": 0.7453375130848097, "clp": 537.9930087279008, "cny": 5.358516526953403, "czk": 17.392459667916942, "dkk": 5.067886789342725, "eos": 0.25892329718479945, "eth": 0.004318803639252232, "eur": 0.6782941986493412, "gbp": 0.5867983064309927, "hkd": 5.934456605534895, "huf": 224.37563095548967, "idr": 10706.869699672749, "ils": 2.681437475755907, "inr": 53.75389683361868, "jpy": 82.03145222242476, "krw": 892.1755423126963, "kwd": 0.22952931666161705, "lkr": 137.7264362368161, "ltc": 0.013788144569878953, "mmk": 1159.3253511677387, "mxn": 14.477888095187607, "myr": 3.167046178680749, "ngn": 273.5365412956854, "nok": 6.937198435681859, "nzd": 1.1853923559940978, "php": 38.845133070577035, "pkr": 118.24759116608183, "pln": 2.9054718481218353, "rub": 48.37268623212436, "sar": 2.838234825928215, "sek": 7.313451542420992, "sgd": 1.0320355885417605, "thb": 22.942262606044775, "try": 4.387707723406063, "twd": 23.117810261869394, "uah": 18.97997873644014, "usd": 0.7566709302785213, "vef": 188023.37541721403, "vnd": 17522.59144569683, "xag": 0.043064851524080995, "xau": 0.0005072494915308121, "xdr": 0.5494081690822098, "xlm": 11.964873905374732, "xrp": 2.5751743472782276, "zar": 11.187001368702786, "bits": 92.08626291635787, "link": 0.3104260954608445, "sats": 9208.626291635788}, "market_cap": {"aed": 54855150.30656995, "ars": 871562800.8049247, "aud": 21815136.571452927, "bch": 66543.84531788879, "bdt": 1265974278.711476, "bhd": 5630180.936901732, "bmd": 14934642.314614085, "bnb": 811852.4354870695, "brl": 61420209.98308193, "btc": 1819.6501001297675, "cad": 19615905.948129803, "chf": 14710951.242025798, "clp": 10618530237.651344, "cny": 105762656.47940247, "czk": 343280220.92256206, "dkk": 100026409.71278249, "eos": 5116042.080484788, "eth": 85324.89074358167, "eur": 13387697.129024036, "gbp": 11581815.114983214, "hkd": 117130159.47717103, "huf": 4428569485.552508, "idr": 211324715771.66754, "ils": 52924340.009567365, "inr": 1060956870.5530462, "jpy": 1619079507.9696279, "krw": 17609137701.883747, "kwd": 4530289.3343573585, "lkr": 2718348201.517712, "ltc": 272385.9369117476, "mmk": 22881954034.60465, "mxn": 285754442.94264996, "myr": 62508945.40781727, "ngn": 5398873196.732992, "nok": 136921577.34178218, "nzd": 23396446.369008966, "php": 766698104.6293316, "pkr": 2333888362.778926, "pln": 57346173.97143603, "rub": 954746294.2813425, "sar": 56019096.59000172, "sek": 144347798.36343953, "sgd": 20369597.607179176, "thb": 452818354.9790995, "try": 86601510.38975266, "twd": 456283191.99608886, "uah": 374613563.4725335, "usd": 14934642.314614085, "vef": 3711074056471.1216, "vnd": 345848671060.0507, "xag": 849983.9601441734, "xau": 10011.736168447844, "xdr": 10843834.69964888, "xlm": 236447390.21097702, "xrp": 50876263.82074439, "zar": 220801219.3004125, "bits": 1819650100.1297674, "link": 6134105.7590890415, "sats": 181965010012.97675}, "total_volume": {"aed": 4359375.282565225, "ars": 69263675.51265746, "aud": 1733663.4139891656, "bch": 5284.018188492932, "bdt": 100607818.01042971, "bhd": 447434.2240524265, "bmd": 1186865.95873722, "bnb": 64443.65622116396, "brl": 4881104.941902684, "btc": 144.44066284206397, "cad": 1558889.0935034037, "chf": 1169089.080407254, "clp": 843861661.0561848, "cny": 8405028.659989368, "czk": 27280707.494554352, "dkk": 7949165.313897988, "eos": 406130.63758049096, "eth": 6774.2010652003455, "eur": 1063929.195865259, "gbp": 920414.5510007133, "hkd": 9308411.684482196, "huf": 351941362.74434745, "idr": 16794115728.086803, "ils": 4205932.503955852, "inr": 84314948.21376438, "jpy": 128669325.45266074, "krw": 1399409886.1430979, "kwd": 360025.1067893072, "lkr": 216028939.72350794, "ltc": 21627.20777196124, "mmk": 1818444107.39499, "mxn": 22709095.654381827, "myr": 4967627.470294631, "ngn": 429052044.083505, "nok": 10881248.82673269, "nzd": 1859331.1554321817, "php": 60930008.35530314, "pkr": 185475660.6098765, "pln": 4557338.590152801, "rub": 75874323.06994057, "sar": 4451874.867925368, "sek": 11471415.550982853, "sgd": 1618785.4709770356, "thb": 35985775.868912525, "try": 6882279.63492952, "twd": 36261128.771339566, "uah": 29770789.068829797, "usd": 1186865.95873722, "vef": 294921523742.71606, "vnd": 27484823935.42259, "xag": 67548.79069186738, "xau": 795.6393327586699, "xdr": 861766.7565156721, "xlm": 18767341.218785055, "xrp": 4039254.910285571, "zar": 17547219.76695041, "bits": 144440662.84206396, "link": 486914.6555829373, "sats": 14444066284.206398}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 368, "reddit_accounts_active_48h": "19.0"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2061213, "bing_matches": null}}, "MDA_20191112": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.6442004541106936, "ars": 42.840456277193624, "aud": 1.0491647157950015, "bch": 0.0025962864514942506, "bdt": 60.98822789489706, "bhd": 0.2713998764398769, "bmd": 0.7199413129249328, "bnb": 0.03655606890823928, "brl": 2.997331668100375, "btc": 8.192867570498317e-05, "cad": 0.9523023716714587, "chf": 0.7181544185862536, "clp": 539.235772682841, "cny": 5.036565436960245, "czk": 16.647922920076166, "dkk": 4.881958040009614, "eos": 0.2112918305171412, "eth": 0.0039184842413842545, "eur": 0.6533489013033156, "gbp": 0.5635549409900662, "hkd": 5.635232635722976, "huf": 217.89023835673117, "idr": 10091.909823126825, "ils": 2.5152013696608044, "inr": 51.38725109264298, "jpy": 78.65572037046122, "krw": 834.2391864056596, "kwd": 0.2187599274627443, "lkr": 129.95393397392615, "ltc": 0.011929556408657671, "mmk": 1091.9673974714435, "mxn": 13.754730762890382, "myr": 2.9755181662600636, "ngn": 260.6187552788257, "nok": 6.57371213418627, "nzd": 1.1377916512400021, "php": 36.416686320250214, "pkr": 112.31084481628982, "pln": 2.7865688487415965, "rub": 45.91720899117062, "sar": 2.6998699161326156, "sek": 6.981864863016239, "sgd": 0.9786522237245111, "thb": 21.855110848493055, "try": 4.147347922833841, "twd": 21.883336147666224, "uah": 17.63810860363368, "usd": 0.7199413129249328, "vef": 178896.51940060643, "vnd": 16717.03753593657, "xag": 0.042831979688175224, "xau": 0.0004934837729443957, "xdr": 0.5242051086495279, "xlm": 10.097190817720609, "xrp": 2.6017980042900324, "zar": 10.701589244212022, "bits": 81.92867570498316, "link": 0.265231953356315, "sats": 8192.867570498316}, "market_cap": {"aed": 51938064.36133778, "ars": 841483243.8043336, "aud": 20607962.777516592, "bch": 50905.37005882482, "bdt": 1197946434.3426423, "bhd": 5330906.069651308, "bmd": 14141272.15240084, "bnb": 717052.0978122265, "brl": 58874358.35209042, "btc": 1607.0690730974768, "cad": 18705367.739588212, "chf": 14106173.514918584, "clp": 10591807525.029896, "cny": 98929511.72376576, "czk": 327002777.25211656, "dkk": 95892673.52903771, "eos": 4146355.8945996724, "eth": 76852.64331692403, "eur": 12833246.902120216, "gbp": 11069490.874184182, "hkd": 110688686.5820947, "huf": 4279856016.9241104, "idr": 198227884390.355, "ils": 49404231.217070654, "inr": 1009361582.4219155, "jpy": 1544975858.6333654, "krw": 16386340335.479485, "kwd": 4296938.673684219, "lkr": 2552588543.827649, "ltc": 234119.99977627373, "mmk": 21448704042.912243, "mxn": 270173953.9168707, "myr": 58445891.947144784, "ngn": 5119140519.169105, "nok": 129122541.89635682, "nzd": 22348795.803293504, "php": 715305904.659157, "pkr": 2206038455.774533, "pln": 54734500.92947504, "rub": 901917610.7351878, "sar": 53031538.230522215, "sek": 137139582.61135668, "sgd": 19222938.300366107, "thb": 429283699.76964146, "try": 81463272.95653164, "twd": 429838108.3443758, "uah": 346452258.73236406, "usd": 14141272.15240084, "vef": 3513931375438.402, "vnd": 328360344285.7685, "xag": 841316.744466012, "xau": 9693.13499686316, "xdr": 10296571.362150406, "xlm": 198016078.97508973, "xrp": 51037181.31730646, "zar": 210203364.14752764, "bits": 1607069073.0974767, "link": 5202648.105420806, "sats": 160706907309.74768}, "total_volume": {"aed": 6145822.793650758, "ars": 99572576.75735702, "aud": 2438536.917502969, "bch": 6034.457950279149, "bdt": 141752808.70182252, "bhd": 630805.256925642, "bmd": 1673334.45699487, "bnb": 84965.99461408291, "brl": 6966593.3448067475, "btc": 190.42396041439756, "cad": 2213403.152989973, "chf": 1669181.24087261, "clp": 1253326879.1154017, "cny": 11706313.194244713, "czk": 38694185.98354942, "dkk": 11346964.61960506, "eos": 491098.22445030033, "eth": 9107.596108994732, "eur": 1518556.0397262163, "gbp": 1309851.0729119878, "hkd": 13097774.461958801, "huf": 506434673.409498, "idr": 23456273644.465683, "ils": 5845994.725646419, "inr": 119437593.53692295, "jpy": 182816744.60508367, "krw": 1938993013.6340308, "kwd": 508456.06143354735, "lkr": 302047391.41463983, "ltc": 27727.451442076468, "mmk": 2538021696.074693, "mxn": 31969640.467946976, "myr": 6915892.984094262, "ngn": 605747073.432143, "nok": 15279049.59337446, "nzd": 2644529.4091624143, "php": 84642032.53134085, "pkr": 261040175.2912004, "pln": 6476724.6825214885, "rub": 106723765.6661216, "sar": 6275213.380537891, "sek": 16227704.730406279, "sgd": 2274647.194115985, "thb": 50797071.07742963, "try": 9639535.973048933, "twd": 50862674.15481599, "uah": 40995639.99566633, "usd": 1673334.45699487, "vef": 415802933899.279, "vnd": 38854826672.06793, "xag": 99552.87491746031, "xau": 1146.9871035471347, "xdr": 1218391.6314960185, "xlm": 23468548.07581492, "xrp": 6047268.2600073945, "zar": 24873330.236033883, "bits": 190423960.41439757, "link": 616469.3686545735, "sats": 19042396041.439754}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 368, "reddit_accounts_active_48h": "18.2941176470588"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2018091, "bing_matches": null}}, "BNT_20191115": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 1.146877983054307, "ars": 18.607573853344356, "aud": 0.45576004352182575, "bch": 0.0010910075142771245, "bdt": 26.433907676266752, "bhd": 0.11771422983372892, "bmd": 0.31222856992657805, "bnb": 0.015541331779546893, "brl": 1.2966228051910929, "btc": 3.5798587325228055e-05, "cad": 0.4132085973265218, "chf": 0.31013476513665056, "clp": 237.9492807387599, "cny": 2.1889096123272678, "czk": 7.217787850992717, "dkk": 2.1142882330290957, "eos": 0.09080125020552664, "eth": 0.0016910009405366958, "eur": 0.2829574537245312, "gbp": 0.24289165917441305, "hkd": 2.4433915082459263, "huf": 94.5347489198639, "idr": 4371.740348274649, "ils": 1.093390106740184, "inr": 22.34573040679032, "jpy": 34.052140027065654, "krw": 363.71349122222125, "kwd": 0.09485847405796367, "lkr": 56.325491361500184, "ltc": 0.005064534525316462, "mmk": 473.34435692751964, "mxn": 5.971558736987755, "myr": 1.2937190794907767, "ngn": 113.01033189201449, "nok": 2.851146409141542, "nzd": 0.4905263825545798, "php": 15.879813618237804, "pkr": 48.679018055198256, "pln": 1.2096134451525156, "rub": 19.942257321209496, "sar": 1.1707615952822708, "sek": 3.027055985438173, "sgd": 0.4248338036706, "thb": 9.476137097271659, "try": 1.8021833056162087, "twd": 9.481757523758908, "uah": 7.646404616016529, "usd": 0.31222856992657805, "vef": 77584.94118133449, "vnd": 7239.536554163951, "xag": 0.01854642076563852, "xau": 0.00021451663896805565, "xdr": 0.22726399479244805, "xlm": 3.923935280232244, "xrp": 1.1375845159570848, "zar": 4.65153252710924, "bits": 35.798587325228056, "link": 0.11388585490860288, "sats": 3579.8587325228054}, "market_cap": {"aed": 79998199.18228115, "ars": 1297934410.9951067, "aud": 31790637.957741387, "bch": 76101.06543685739, "bdt": 1843844805.3735847, "bhd": 8210922.647367238, "bmd": 21778884.673385907, "bnb": 1084054.776208252, "brl": 90443352.27163698, "btc": 2497.0594619499907, "cad": 28822546.21779833, "chf": 21632835.472766187, "clp": 16597680169.188913, "cny": 152683048.89123917, "czk": 503462476.99466276, "dkk": 147477982.56983864, "eos": 6333661.128097446, "eth": 117952.41695914019, "eur": 19737136.014140643, "gbp": 16942425.97508243, "hkd": 170433928.84428248, "huf": 6594083926.52011, "idr": 304942077816.42444, "ils": 76267258.44888332, "inr": 1558682107.7472205, "jpy": 2375239494.2776875, "krw": 25370113251.795105, "kwd": 6616664.731506049, "lkr": 3928872943.377257, "ltc": 353266.561664059, "mmk": 33017196865.573994, "mxn": 416534236.7093089, "myr": 90240808.64417455, "ngn": 7882811575.366151, "nok": 198876063.28349084, "nzd": 34215694.9872382, "php": 1107664905.5779583, "pkr": 3395508362.630421, "pln": 84374186.92193528, "rub": 1391032609.3084292, "sar": 81664153.1864871, "sek": 211146286.90847623, "sgd": 29633439.430842638, "thb": 660989149.8372632, "try": 125707722.33478343, "twd": 661381191.5402688, "uah": 533359789.39220685, "usd": 21778884.673385907, "vef": 5411783703128.31, "vnd": 504979514651.6376, "xag": 1293668.7986429764, "xau": 14963.1827148498, "xdr": 15852349.239410123, "xlm": 273706323.3966843, "xrp": 79349951.81602025, "zar": 324458426.3580933, "bits": 2497059461.9499907, "link": 7943881.947022583, "sats": 249705946194.99905}, "total_volume": {"aed": 36816474.106258936, "ars": 597330553.9683676, "aud": 14630569.327264, "bch": 35022.949688289285, "bdt": 848567408.10276, "bhd": 3778800.324573394, "bmd": 10022997.41540317, "bnb": 498899.66281737713, "brl": 41623503.66668627, "btc": 1149.1874312469902, "cad": 13264605.170500606, "chf": 9955783.19473548, "clp": 7638522721.999685, "cny": 70267225.68042545, "czk": 231701631.25187546, "dkk": 67871769.39013377, "eos": 2914854.0005143806, "eth": 54283.62324571784, "eur": 9083351.430706535, "gbp": 7797180.356367176, "hkd": 78436469.72384985, "huf": 3034704813.5678215, "idr": 140339310466.92664, "ils": 35099434.419026196, "inr": 717330890.5242823, "jpy": 1093123898.1765351, "krw": 11675739293.57215, "kwd": 3045096.8677710546, "lkr": 1808131313.7692251, "ltc": 162579.02494125982, "mmk": 15195051712.262768, "mxn": 191695839.36803466, "myr": 41530289.79072305, "ngn": 3627798265.654792, "nok": 91526003.19849564, "nzd": 15746620.06647171, "php": 509765428.8654928, "pkr": 1562668247.387965, "pln": 38830374.930941105, "rub": 640175861.0199914, "sar": 37583173.27055279, "sek": 97172959.9423337, "sgd": 13637791.433268372, "thb": 304197971.5574867, "try": 57852741.0817071, "twd": 304378395.53396136, "uah": 245460861.32182828, "usd": 10022997.41540317, "vef": 2490590995941.168, "vnd": 232399796687.93698, "xag": 595367.4496945862, "xau": 6886.300374252754, "xdr": 7295509.289731419, "xlm": 125964107.58062795, "xrp": 36518140.111014694, "zar": 149321051.90707925, "bits": 1149187431.2469902, "link": 3655903.845276973, "sats": 114918743124.69902}}, "community_data": {"facebook_likes": null, "twitter_followers": 766, "reddit_average_posts_48h": 0.125, "reddit_average_comments_48h": 0.125, "reddit_subscribers": 5082, "reddit_accounts_active_48h": "125.176470588235"}, "developer_data": {"forks": 223, "stars": 568, "subscribers": 69, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 217, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 2470, "deletions": -7486}, "commit_count_4_weeks": 66}, "public_interest_stats": {"alexa_rank": 171240, "bing_matches": null}}, "BNT_20191213": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 0.9821700003752891, "ars": 16.018276099684787, "aud": 0.39169684023460805, "bch": 0.0012832885379683555, "bdt": 22.699105697018663, "bhd": 0.10080959513816022, "bmd": 0.2673881085634565, "bnb": 0.0174522541811885, "brl": 1.1077087173458326, "btc": 3.639778592248195e-05, "cad": 0.3539665063995437, "chf": 0.2641465625233417, "clp": 214.6859260023928, "cny": 1.8822251126107394, "czk": 6.168162365963544, "dkk": 1.8059259158321563, "eos": 0.10059132002687853, "eth": 0.0018135453861241632, "eur": 0.24166537251965184, "gbp": 0.20339732119826717, "hkd": 2.093287916105302, "huf": 80.13354225538241, "idr": 3745.844942967397, "ils": 0.9274998276984023, "inr": 18.976585135877247, "jpy": 29.033767341289295, "krw": 318.10895753991787, "kwd": 0.0812180684237156, "lkr": 48.44855140637581, "ltc": 0.006019606587510862, "mmk": 402.00015461913046, "mxn": 5.1431300517855005, "myr": 1.1127356137868252, "ngn": 96.97406432987489, "nok": 2.4461073275191114, "nzd": 0.4083214284964303, "php": 13.595063076797103, "pkr": 41.459545248845615, "pln": 1.0366230539080186, "rub": 16.992327127531674, "sar": 1.0026955137529445, "sek": 2.548662164841862, "sgd": 0.363594350024588, "thb": 8.10271399447959, "try": 1.553885884700243, "twd": 8.133678607003672, "uah": 6.336192529430224, "usd": 0.2673881085634565, "vef": 66442.64066021374, "vnd": 6200.588930190676, "xag": 0.01610924581242782, "xau": 0.00018299239985757255, "xdr": 0.19402697232176955, "xlm": 4.902015734434658, "xrp": 1.1922076851053207, "zar": 3.9231718064647523, "bits": 36.39778592248195, "link": 0.12867448339759874, "sats": 3639.7785922481953}, "market_cap": {"aed": 68490232.9864264, "ars": 1117463684.5365436, "aud": 27314424.01770017, "bch": 89501.62637834327, "bdt": 1582889965.2588546, "bhd": 7029814.243605175, "bmd": 18645930.79234086, "bnb": 1217313.4821270572, "brl": 77244497.49343044, "btc": 2538.77547706896, "cad": 24676957.107123535, "chf": 18419774.29776058, "clp": 14970818784.11294, "cny": 131254300.62652518, "czk": 430141112.85543275, "dkk": 125935250.5331171, "eos": 7016495.20978114, "eth": 126501.01149280554, "eur": 16852490.58501035, "gbp": 14184388.41014192, "hkd": 145965007.72514254, "huf": 5589313798.32053, "idr": 261213563400.88535, "ils": 64677885.97662452, "inr": 1323305269.7052124, "jpy": 2024970859.3068433, "krw": 22183063360.207806, "kwd": 5663626.894450368, "lkr": 3378491068.154822, "ltc": 419863.26186592685, "mmk": 28032911043.83491, "mxn": 358637697.45296407, "myr": 77595040.99232656, "ngn": 6762348938.631811, "nok": 170571968.0080715, "nzd": 28475319.668831244, "php": 948096821.6815114, "pkr": 2891122628.9946914, "pln": 72278489.45364475, "rub": 1184928391.32939, "sar": 69921550.571839, "sek": 177729152.60491925, "sgd": 25355221.485625703, "thb": 565092547.285393, "try": 108357116.25946136, "twd": 567190550.1262865, "uah": 441845406.0108844, "usd": 18645930.79234086, "vef": 4633283379977.648, "vnd": 432428399079.63367, "xag": 1123159.084097064, "xau": 12762.2073308177, "xdr": 13530195.928292654, "xlm": 342115661.4782249, "xrp": 83181686.2277546, "zar": 273620904.7517763, "bits": 2538775477.0689597, "link": 8975150.952040788, "sats": 253877547706.896}, "total_volume": {"aed": 49118768.125573024, "ars": 801081268.2236154, "aud": 19588937.010549925, "bch": 64177.843052208904, "bdt": 1135192592.8950262, "bhd": 5041533.671902169, "bmd": 13372200.84002314, "bnb": 872795.163838042, "brl": 55397016.41996392, "btc": 1820.2698171676082, "cad": 17702025.866616745, "chf": 13210089.649239536, "clp": 10736540736.436821, "cny": 94130933.37317489, "czk": 308472603.4178226, "dkk": 90315175.86347423, "eos": 5030617.634378592, "eth": 90696.22903590852, "eur": 12085795.119212905, "gbp": 10171992.479390478, "hkd": 104686280.10624705, "huf": 4007514869.7465405, "idr": 187331408124.5227, "ils": 46384687.94182177, "inr": 949027647.7068028, "jpy": 1451991900.8966951, "krw": 15908773550.506115, "kwd": 4061752.516353665, "lkr": 2422934076.219369, "ltc": 301043.26141720853, "mmk": 20104210445.886845, "mxn": 257210271.49759227, "myr": 55648413.79575633, "ngn": 4849717032.889908, "nok": 122330939.23126025, "nzd": 20420340.22557742, "php": 679895283.57268, "pkr": 2073410701.7029865, "pln": 51841990.08224199, "rub": 849794002.8428828, "sar": 50145258.378655665, "sek": 127459753.2580451, "sgd": 18183518.70226346, "thb": 405220409.6343849, "try": 77710539.35166846, "twd": 406768963.98046285, "uah": 316875868.2643037, "usd": 13372200.84002314, "vef": 3322826658310.464, "vnd": 310094270633.0429, "xag": 805630.7049046052, "xau": 9151.533088886627, "xdr": 9703377.073152715, "xlm": 245152034.897832, "xrp": 59622848.20330353, "zar": 196199605.1649878, "bits": 1820269817.1676083, "link": 6435069.39864742, "sats": 182026981716.7608}}, "community_data": {"facebook_likes": null, "twitter_followers": 763, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.091, "reddit_subscribers": 5069, "reddit_accounts_active_48h": "139.083333333333"}, "developer_data": {"forks": 225, "stars": 570, "subscribers": 69, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 220, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 407, "deletions": -295}, "commit_count_4_weeks": 19}, "public_interest_stats": {"alexa_rank": 141630, "bing_matches": null}}, "REN_20191217": {"id": "republic-protocol", "symbol": "ren", "name": "REN", "localization": {"en": "REN", "de": "REN", "es": "REN", "fr": "REN", "it": "REN", "pl": "REN", "ro": "REN", "hu": "REN", "nl": "REN", "pt": "REN", "sv": "REN", "vi": "REN", "tr": "REN", "ru": "REN", "ja": "\u30ec\u30f3", "zh": "REN", "zh-tw": "REN", "ko": "\ub9ac\ud37c\ube14\ub9ad \ud504\ub85c\ud1a0\ucf5c", "ar": "REN", "th": "REN", "id": "REN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3139/thumb/REN.png?1589985807", "small": "https://assets.coingecko.com/coins/images/3139/small/REN.png?1589985807"}, "market_data": {"current_price": {"aed": 0.1269244802614749, "ars": 2.065341094430475, "aud": 0.0502517273596728, "bch": 0.00016347716997806277, "bdt": 2.934791787939034, "bhd": 0.013030890269458341, "bmd": 0.03455607957023543, "bnb": 0.002333274827673958, "brl": 0.14197019730635527, "btc": 4.768755746596161e-06, "cad": 0.04550759230763445, "chf": 0.03400767458745578, "clp": 26.414617186284758, "cny": 0.24095608723529477, "czk": 0.7916072151869952, "dkk": 0.23224104396768144, "eos": 0.013193102238866635, "eth": 0.0002389709752394229, "eur": 0.03107420899273854, "gbp": 0.0259192367106895, "hkd": 0.2694838587245026, "huf": 10.244149788596303, "idr": 482.8730235410816, "ils": 0.12036124406870007, "inr": 2.4427519867801597, "jpy": 3.778068013533197, "krw": 40.59129886717705, "kwd": 0.010480340592458857, "lkr": 6.256508517167204, "ltc": 0.0007796263503625288, "mmk": 52.149014498591605, "mxn": 0.656997462829099, "myr": 0.14287207642705899, "ngn": 12.526578844210343, "nok": 0.3121020444388719, "nzd": 0.052389850227001586, "php": 1.7488881631250734, "pkr": 5.35446452940796, "pln": 0.132650422646263, "rub": 2.171611164040264, "sar": 0.12960299110112294, "sek": 0.324771858232901, "sgd": 0.04677217203950721, "thb": 1.0441020611759058, "try": 0.20055225509978605, "twd": 1.044803065806067, "uah": 0.8113761608557754, "usd": 0.03455607957023543, "vef": 8586.758737500191, "vnd": 804.7956955200675, "xag": 0.0020405168016570476, "xau": 2.3417618442361466e-05, "xdr": 0.024981592047630737, "xlm": 0.6553601667701732, "xrp": 0.15694441948656554, "zar": 0.5011723509798541, "bits": 4.7687557465961605, "link": 0.0167003993083612, "sats": 476.87557465961606}, "market_cap": {"aed": 106974208.32471122, "ars": 1740706190.3428037, "aud": 42353049.153133914, "bch": 137771.78052815297, "bdt": 2473494691.2202044, "bhd": 10982665.971684894, "bmd": 29124478.171715513, "bnb": 1965468.79643412, "brl": 119655006.12067617, "btc": 4019.4876315719475, "cad": 38340919.28915489, "chf": 28662272.703130394, "clp": 22262708942.214966, "cny": 203082073.84355503, "czk": 667180633.5098399, "dkk": 195736880.4486484, "eos": 11134491.579495069, "eth": 201403.055629827, "eur": 26189895.75113346, "gbp": 21845193.470911477, "hkd": 227125786.79821473, "huf": 8633951554.005075, "idr": 406973968364.91455, "ils": 101442596.18555734, "inr": 2058794799.7194843, "jpy": 3184222885.230916, "krw": 34211068284.405636, "kwd": 8833017.362308757, "lkr": 5273096601.396277, "ltc": 657754.1869168828, "mmk": 43952116482.244804, "mxn": 553729141.239743, "myr": 120415125.87647972, "ngn": 10557623337.246874, "nok": 263045151.34978253, "nzd": 44155097.11553085, "php": 1473994034.1953766, "pkr": 4512837892.707312, "pln": 111800134.35776441, "rub": 1830272494.1929367, "sar": 109231704.8767572, "sek": 273723495.6490511, "sgd": 39420418.07258954, "thb": 879967828.0900792, "try": 169029005.85323098, "twd": 880578597.5218183, "uah": 683842252.3557519, "usd": 29124478.171715513, "vef": 7237072912389.078, "vnd": 678296119188.6472, "xag": 1719783.835087245, "xau": 19736.78512262645, "xdr": 21054929.88020013, "xlm": 552362339.5363287, "xrp": 132268594.32308832, "zar": 422396966.84089893, "bits": 4019487631.5719476, "link": 14076428.324135588, "sats": 401948763157.19476}, "total_volume": {"aed": 4838063.968054117, "ars": 78725966.10299818, "aud": 1915478.1722994866, "bch": 6231.366904485074, "bdt": 111867390.54371893, "bhd": 496707.0225889992, "bmd": 1317196.8331211845, "bnb": 88938.97259285006, "brl": 5411571.469195075, "btc": 181.7738020477106, "cad": 1734642.8534739504, "chf": 1296292.9193795507, "clp": 1006863351.9368196, "cny": 9184681.79767071, "czk": 30174213.33345674, "dkk": 8852484.75635755, "eos": 502890.1630104894, "eth": 9109.013976931998, "eur": 1184476.080215895, "gbp": 987980.6082413751, "hkd": 10272093.643253904, "huf": 390483001.1787755, "idr": 18405988911.884846, "ils": 4587888.773539409, "inr": 93111985.53492005, "jpy": 144011105.56038883, "krw": 1547245260.0257995, "kwd": 399486.0415331586, "lkr": 238483453.78584892, "ltc": 29717.530821982462, "mmk": 1987798315.1509337, "mxn": 25043204.789716437, "myr": 5445948.98934271, "ngn": 477483852.0064294, "nok": 11896599.08352643, "nzd": 1996978.4091520282, "php": 66663521.40060712, "pkr": 204099649.29212677, "pln": 5056323.4833023, "rub": 82776732.30351797, "sar": 4940162.528983004, "sek": 12379542.716406152, "sgd": 1782845.6715820201, "thb": 39798725.59446229, "try": 7644582.330464588, "twd": 39825446.24941897, "uah": 30927759.249339253, "usd": 1317196.8331211845, "vef": 327307135429.5951, "vnd": 30676927320.241486, "xag": 77779.72219361109, "xau": 892.6247779012339, "xdr": 952239.789371465, "xlm": 24980794.898012273, "xrp": 5982353.753514593, "zar": 19103516.422249775, "bits": 181773802.0477106, "link": 636580.114249422, "sats": 18177380204.77106}}, "community_data": {"facebook_likes": null, "twitter_followers": 10302, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 872, "reddit_accounts_active_48h": "2030.23076923077"}, "developer_data": {"forks": 2, "stars": 5, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 2544, "deletions": -744}, "commit_count_4_weeks": 96}, "public_interest_stats": {"alexa_rank": 377121, "bing_matches": null}}, "BNT_20191229": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 0.8921523958032324, "ars": 14.528712938205508, "aud": 0.35069079621114657, "bch": 0.0013114094443010063, "bdt": 20.5984107512152, "bhd": 0.09160907983215708, "bmd": 0.24288151905783298, "bnb": 0.01857863520759444, "brl": 0.9920374205157644, "btc": 3.3719389517001024e-05, "cad": 0.31955508563856677, "chf": 0.23795102422095873, "clp": 182.6712393025815, "cny": 1.6975960893028164, "czk": 5.585230304916676, "dkk": 1.635648429222558, "eos": 0.09791792530406548, "eth": 0.001941336409290258, "eur": 0.21892077143973956, "gbp": 0.18723517710801185, "hkd": 1.8917856929460108, "huf": 72.67307989610502, "idr": 3392.569058199792, "ils": 0.8439161261183464, "inr": 17.30773607653509, "jpy": 26.564316061633743, "krw": 281.9271425891909, "kwd": 0.0736875811854367, "lkr": 44.01379414946838, "ltc": 0.006049245215399443, "mmk": 362.13096824704, "mxn": 4.606903789033258, "myr": 1.0046794035827267, "ngn": 87.91225940995315, "nok": 2.1650446464739277, "nzd": 0.3655869626564844, "php": 12.343238798519062, "pkr": 37.587623745686265, "pln": 0.9323857194351605, "rub": 15.02142044471407, "sar": 0.911632708039266, "sek": 2.28342631327031, "sgd": 0.3290607396499329, "thb": 7.323485003391306, "try": 1.4425394054576524, "twd": 7.306118974778666, "uah": 5.641315048008411, "usd": 0.24288151905783298, "vef": 60353.056014593385, "vnd": 5618.765412384485, "xag": 0.01367691579255676, "xau": 0.00016194611046219134, "xdr": 0.17642719239145715, "xlm": 5.469844541736822, "xrp": 1.28664759646135, "zar": 3.439250886162724, "bits": 33.71938951700103, "link": 0.1361152241593488, "sats": 3371.9389517001023}, "market_cap": {"aed": 62352102.91299718, "ars": 1015221719.753609, "aud": 24510035.867412414, "bch": 91593.94053574381, "bdt": 1439613044.862825, "bhd": 6402514.63800298, "bmd": 16974872.83921298, "bnb": 1298188.0716742703, "brl": 69333019.36812337, "btc": 2357.002066337269, "cad": 22332634.97858092, "chf": 16630282.920576943, "clp": 12766804595.326601, "cny": 118642478.73511124, "czk": 390349066.3738161, "dkk": 114312188.67382807, "eos": 6841647.709849855, "eth": 135703.99364267953, "eur": 15299843.31205796, "gbp": 13085929.471749267, "hkd": 132219915.6499198, "huf": 5080749189.504826, "idr": 236630806335.49634, "ils": 58980893.167129464, "inr": 1209807674.6871285, "jpy": 1856609741.91608, "krw": 19703752734.824802, "kwd": 5149989.69581599, "lkr": 3076102956.522678, "ltc": 423052.2761329975, "mmk": 25309159630.50661, "mxn": 321926765.9083898, "myr": 70275973.5543417, "ngn": 6144145632.32588, "nok": 151351276.33462644, "nzd": 25551868.68791925, "php": 862245999.0128889, "pkr": 2626980990.098619, "pln": 65162768.407968245, "rub": 1049839868.0249516, "sar": 63713572.58906614, "sek": 159590964.4851446, "sgd": 23000952.69713357, "thb": 511858448.3576156, "try": 100819032.002666, "twd": 510519300.63933, "uah": 394268802.16061085, "usd": 16974872.83921298, "vef": 4218046129156.8228, "vnd": 392661046481.9242, "xag": 955926.8932881934, "xau": 11319.014957915597, "xdr": 12330411.831421595, "xlm": 382341490.8145411, "xrp": 89874281.93683079, "zar": 240311577.29745492, "bits": 2357002066.337269, "link": 9514521.739540659, "sats": 235700206633.7269}, "total_volume": {"aed": 40234190.52388722, "ars": 655214296.5399272, "aud": 15815414.91801916, "bch": 59141.7987386865, "bdt": 928944860.2640591, "bhd": 4131376.1965146624, "bmd": 10953444.00628531, "bnb": 837857.245166236, "brl": 44738794.37147197, "btc": 1520.6733160815318, "cad": 14411260.070521472, "chf": 10731089.092957709, "clp": 8238087438.769427, "cny": 76558001.53753048, "czk": 251882101.38189045, "dkk": 73764292.78339535, "eos": 4415891.815030705, "eth": 87550.17565358909, "eur": 9872864.848177249, "gbp": 8443911.403449286, "hkd": 85315542.90321173, "huf": 3277402556.1687264, "idr": 152997705879.79236, "ils": 38058836.54423894, "inr": 780542376.0741147, "jpy": 1197994601.1334324, "krw": 12714319237.551416, "kwd": 3323154.4236228857, "lkr": 1984929242.8279634, "ltc": 272808.1947288456, "mmk": 16331342536.981361, "mxn": 207761639.87801787, "myr": 45308921.13199922, "ngn": 3964657396.1177454, "nok": 97638945.10480723, "nzd": 16487200.59236873, "php": 556654024.3994191, "pkr": 1695122517.451238, "pln": 42048628.523528285, "rub": 677434365.4235253, "sar": 41112711.50041133, "sek": 102977708.48069067, "sgd": 14839945.008595446, "thb": 330273720.3995177, "try": 65055483.29009811, "twd": 329490549.1530681, "uah": 254411404.95115846, "usd": 10953444.00628531, "vef": 2721795475540.6484, "vnd": 253394463966.40616, "xag": 616800.0426445717, "xau": 7303.427860070858, "xdr": 7956494.098613588, "xlm": 246678446.9374694, "xrp": 58025091.650984, "zar": 155102957.81780115, "bits": 1520673316.0815318, "link": 6138509.393452008, "sats": 152067331608.15317}}, "community_data": {"facebook_likes": null, "twitter_followers": 760, "reddit_average_posts_48h": 0.417, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 5065, "reddit_accounts_active_48h": "122.538461538462"}, "developer_data": {"forks": 225, "stars": 569, "subscribers": 68, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 226, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 8710, "deletions": -6973}, "commit_count_4_weeks": 193}, "public_interest_stats": {"alexa_rank": 137088, "bing_matches": null}}, "VIB_20200112": {"id": "viberate", "symbol": "vib", "name": "Viberate", "localization": {"en": "Viberate", "de": "Viberate", "es": "Viberate", "fr": "Viberate", "it": "Viberate", "pl": "Viberate", "ro": "Viberate", "hu": "Viberate", "nl": "Viberate", "pt": "Viberate", "sv": "Viberate", "vi": "Viberate", "tr": "Viberate", "ru": "Viberate", "ja": "Viberate", "zh": "Viberate", "zh-tw": "Viberate", "ko": "\ubc14\uc774\ubc84\ub808\uc774\ud2b8", "ar": "Viberate", "th": "Viberate", "id": "Viberate"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/983/thumb/Viberate.png?1547034873", "small": "https://assets.coingecko.com/coins/images/983/small/Viberate.png?1547034873"}, "market_data": {"current_price": {"aed": 0.07441454549305147, "ars": 1.2118416431879286, "aud": 0.029476522839047555, "bch": 8.439028135955897e-05, "bdt": 1.7195748098668577, "bhd": 0.007638531947365791, "bmd": 0.020258778583537893, "bnb": 0.0013966891779013167, "brl": 0.08233965812225992, "btc": 2.523662955195638e-06, "cad": 0.026414408456145896, "chf": 0.019719125239629605, "clp": 15.356163606912537, "cny": 0.14072152779697086, "czk": 0.45999787265444886, "dkk": 0.1362261048292839, "eos": 0.007317499700113062, "eth": 0.00014427947847310858, "eur": 0.01822874767557448, "gbp": 0.015458521774504339, "hkd": 0.15754855032357173, "huf": 6.034077201106764, "idr": 281.68005550832424, "ils": 0.07019524967745794, "inr": 1.4474269275801734, "jpy": 2.209665497663645, "krw": 23.531381675922606, "kwd": 0.006143920298586714, "lkr": 3.678300104757442, "ltc": 0.00044813201521387856, "mmk": 29.551898947207405, "mxn": 0.38168146614743, "myr": 0.08309138036038054, "ngn": 7.334917198279344, "nok": 0.17967105550168075, "nzd": 0.030451881733952166, "php": 1.0246563028279343, "pkr": 3.1381733334524284, "pln": 0.07718560200404338, "rub": 1.2417982990794054, "sar": 0.07599560135004652, "sek": 0.19149407868303367, "sgd": 0.02735842702058153, "thb": 0.6148539300103745, "try": 0.11973951081800063, "twd": 0.6082495276745846, "uah": 0.48492889282514945, "usd": 0.020258778583537893, "vef": 5034.056124905805, "vnd": 470.1069203497462, "xag": 0.0011176948447667245, "xau": 1.3009985018562198e-05, "xdr": 0.01466541085173741, "xlm": 0.4279940204971381, "xrp": 0.0976169165738138, "zar": 0.2870891771851735, "bits": 2.523662955195638, "link": 0.009310216658223147, "sats": 252.3662955195638}, "market_cap": {"aed": 13497498.404829301, "ars": 219780172.20040372, "aud": 5347812.344404965, "bch": 15289.113530271534, "bdt": 311900826.63784933, "bhd": 1385496.237216619, "bmd": 3674588.480025402, "bnb": 252646.25487892437, "brl": 14934997.418215258, "btc": 456.5842311824431, "cad": 4791255.498631856, "chf": 3577322.122959128, "clp": 2785339780.2174854, "cny": 25524426.499952454, "czk": 83445127.41635303, "dkk": 24713297.838871624, "eos": 1324711.5621419102, "eth": 26127.808825423817, "eur": 3307133.306611343, "gbp": 2804313.642770107, "hkd": 28573048.83240554, "huf": 1094353664.3210542, "idr": 51092059274.25129, "ils": 12732191.862094412, "inr": 262537955.67352694, "jpy": 400829317.08043253, "krw": 4268181503.088703, "kwd": 1114399.7975142614, "lkr": 667179372.8966994, "ltc": 81118.16414771766, "mmk": 5360198147.509398, "mxn": 69189634.89986384, "myr": 15071324.650824182, "ngn": 1330425826.3940494, "nok": 32591909.507124525, "nzd": 5522377.34473706, "php": 185831927.99024007, "pkr": 569209813.5075934, "pln": 14002504.448816175, "rub": 225052008.75339592, "sar": 13785817.640737554, "sek": 34740423.01845295, "sgd": 4964317.592275614, "thb": 111525439.6557061, "try": 21719390.128886152, "twd": 110202742.13561352, "uah": 87957628.63288982, "usd": 3674588.480025402, "vef": 913089827607.451, "vnd": 85286889702.41066, "xag": 202663.2188411035, "xau": 2359.783975987512, "xdr": 2660049.2990443106, "xlm": 77496778.12655905, "xrp": 17669422.186796717, "zar": 52081044.90394416, "bits": 456584231.1824431, "link": 1684415.9424241555, "sats": 45658423118.24431}, "total_volume": {"aed": 2079490.1124546742, "ars": 33864517.99407189, "aud": 823711.7809053522, "bch": 2358.2587854528697, "bdt": 48052955.11854137, "bhd": 213456.27461635869, "bmd": 566124.9353301405, "bnb": 39030.021837456996, "brl": 2300954.7904062113, "btc": 70.52293510262054, "cad": 738141.9969302041, "chf": 551044.499302816, "clp": 429122964.7944662, "cny": 3932417.02579022, "czk": 12854489.960224653, "dkk": 3806793.902640465, "eos": 204485.13356432482, "eth": 4031.842792656198, "eur": 509396.3861853837, "gbp": 431983.3302784696, "hkd": 4402642.661575175, "huf": 168620311.9880824, "idr": 7871456936.600373, "ils": 1961583.2721734631, "inr": 40447871.64203901, "jpy": 61748378.94632908, "krw": 657576757.3833714, "kwd": 171689.84138744263, "lkr": 102788892.24954447, "ltc": 12522.902458614948, "mmk": 825818141.5717404, "mxn": 10665963.619100474, "myr": 2321961.4222565675, "ngn": 204971859.8485546, "nok": 5020848.826455946, "nzd": 850967.8659168268, "php": 28633684.93722795, "pkr": 87695226.44860612, "pln": 2156926.3794839326, "rub": 34701646.93594455, "sar": 2123672.2007826446, "sek": 5351239.338714623, "sgd": 764522.2866667161, "thb": 17181891.787269745, "try": 3346081.430268793, "twd": 16997333.92610227, "uah": 13551179.157140072, "usd": 566124.9353301405, "vef": 140675050394.02542, "vnd": 13136983988.635622, "xag": 31233.616533356282, "xau": 363.5597722196629, "xdr": 409820.10518522986, "xlm": 11960152.788901025, "xrp": 2727872.776465635, "zar": 8022613.071056945, "bits": 70522935.10262054, "link": 260170.95659602783, "sats": 7052293510.2620535}}, "community_data": {"facebook_likes": null, "twitter_followers": 31741, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1111, "reddit_accounts_active_48h": "778.916666666667"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 1, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "FUN_20200115": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.010257601498283187, "ars": 0.1668144817327386, "aud": 0.004047764827763401, "bch": 1.072618931822285e-05, "bdt": 0.23626445624027398, "bhd": 0.0010529819453758708, "bmd": 0.00279255186166917, "bnb": 0.0001875529349731896, "brl": 0.011439130190955412, "btc": 3.490506228123163e-07, "cad": 0.0036445175463865067, "chf": 0.0027156058876727364, "clp": 2.1608766305596037, "cny": 0.01932362111719216, "czk": 0.06345194451806749, "dkk": 0.018766088138009892, "eos": 0.0009371631770047301, "eth": 1.9638259714775775e-05, "eur": 0.0025108364373121203, "gbp": 0.002137511349133019, "hkd": 0.021687795523281254, "huf": 0.838547473022017, "idr": 38.4177698702553, "ils": 0.00967549406271824, "inr": 0.19816085124700844, "jpy": 0.3057467294026415, "krw": 3.236372129044252, "kwd": 0.0008476093038131363, "lkr": 0.5063676903823956, "ltc": 5.673893725964869e-05, "mmk": 4.092360526606606, "mxn": 0.05248936330230618, "myr": 0.011384116919280549, "ngn": 1.01041437641793, "nok": 0.02481615174631616, "nzd": 0.004211109563808022, "php": 0.14109368281083468, "pkr": 0.43150778334469964, "pln": 0.01063641115831862, "rub": 0.17045876191221682, "sar": 0.010476149399529285, "sek": 0.02653735504901525, "sgd": 0.0037671524613917128, "thb": 0.08447971761629157, "try": 0.016413782077332864, "twd": 0.08371232715725674, "uah": 0.0666706677193462, "usd": 0.00279255186166917, "vef": 693.9146279418876, "vnd": 64.56771699205322, "xag": 0.00015427187467364478, "xau": 1.7877637763219858e-06, "xdr": 0.002024496775291267, "xlm": 0.05776417831555214, "xrp": 0.013232484397954618, "zar": 0.04010886387878207, "bits": 0.3490506228123163, "link": 0.0012290729429495276, "sats": 34.90506228123163}, "market_cap": {"aed": 61765003.3379296, "ars": 1004454796.0614438, "aud": 24373164.441980373, "bch": 64403.94982232048, "bdt": 1422640071.4394145, "bhd": 6340413.339493219, "bmd": 16815039.567115776, "bnb": 1128496.0654175968, "brl": 68879446.57877639, "btc": 2099.003994470343, "cad": 21945055.913449194, "chf": 16351717.96688347, "clp": 13011477617.034182, "cny": 116355029.29257092, "czk": 382068806.78806907, "dkk": 112997906.64299634, "eos": 5626620.409177863, "eth": 118161.72240403437, "eur": 15118721.560545554, "gbp": 12870786.180976117, "hkd": 130590641.79009113, "huf": 5049220081.213513, "idr": 231328316338.79376, "ils": 58259908.34016437, "inr": 1193203463.866963, "jpy": 1841019829.5650213, "krw": 19487453805.51747, "kwd": 5103784.884608812, "lkr": 3049036569.7987866, "ltc": 341032.90756423544, "mmk": 24641692468.57296, "mxn": 316058846.7114208, "myr": 68548190.29930422, "ngn": 6084097470.796735, "nok": 149427689.86515263, "nzd": 25356726.551379755, "php": 849579874.1285242, "pkr": 2598275989.0885625, "pln": 64045963.45520886, "rub": 1026398422.6965307, "sar": 63080965.14949177, "sek": 159791723.5775423, "sgd": 22683488.37603916, "thb": 508685197.1614328, "try": 98833758.06363639, "twd": 504064441.1034286, "uah": 401449989.543522, "usd": 16815039.567115776, "vef": 4178329536221.727, "vnd": 388787306292.2294, "xag": 928930.8865977213, "xau": 10764.820180471846, "xdr": 12190281.529694956, "xlm": 347075318.8904574, "xrp": 79569039.29653, "zar": 241511050.29456982, "bits": 2099003994.470343, "link": 7390988.149399883, "sats": 209900399447.0343}, "total_volume": {"aed": 1376985.5378430348, "ars": 22393259.173424434, "aud": 543373.9680131635, "bch": 1439.8890003507474, "bdt": 31716258.36738313, "bhd": 141352.82118681207, "bmd": 374873.55380677234, "bnb": 25177.19947312457, "brl": 1535594.5384586803, "btc": 46.856729584212054, "cad": 489241.8519699112, "chf": 364544.28790518036, "clp": 290077155.9356804, "cny": 2594012.530276723, "czk": 8517820.65856439, "dkk": 2519169.0252591986, "eos": 125805.25199292735, "eth": 2636.249772442191, "eur": 337055.93482519104, "gbp": 286940.58891097934, "hkd": 2911380.480929533, "huf": 112567030.73709741, "idr": 5157220576.016472, "ils": 1298843.1455520121, "inr": 26601211.441043492, "jpy": 41043593.348865174, "krw": 434452207.71328276, "kwd": 113783.49541920076, "lkr": 67975051.14662905, "ltc": 7616.663218218797, "mmk": 549360516.8537842, "mxn": 7046198.292062871, "myr": 1528209.5294486894, "ngn": 135638529.51287338, "nok": 3331332.579581572, "nzd": 565301.4467959839, "php": 18940486.306087155, "pkr": 57925819.91333986, "pln": 1427837.1354169252, "rub": 22882469.161142267, "sar": 1406323.5170375078, "sek": 3562387.7688381434, "sgd": 505704.4240853362, "thb": 11340599.400178164, "try": 2203394.2872100635, "twd": 11237584.522465618, "uah": 8949903.665417641, "usd": 374873.55380677234, "vef": 93151445523.94955, "vnd": 8667602511.60858, "xag": 20709.53335017903, "xau": 239.99030041155754, "xdr": 271769.4561884192, "xlm": 7754292.088575893, "xrp": 1776335.3010707956, "zar": 5384233.878615925, "bits": 46856729.58421206, "link": 164991.36447043068, "sats": 4685672958.4212055}}, "community_data": {"facebook_likes": null, "twitter_followers": 35238, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 17144, "reddit_accounts_active_48h": "1632.5"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 368144, "bing_matches": null}}, "BRD_20200120": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.8984318016388168, "ars": 14.648557279796547, "aud": 0.354557701476863, "bch": 0.000749155951944676, "bdt": 20.759344689570334, "bhd": 0.09220617418425411, "bmd": 0.2445910382333704, "bnb": 0.014370524417655512, "brl": 1.0236379541104794, "btc": 2.8070238064718177e-05, "cad": 0.3189870713776243, "chf": 0.23603793421738747, "clp": 190.07169581115218, "cny": 1.6825662111111785, "czk": 5.526020623111668, "dkk": 1.6411273528226433, "eos": 0.06384755149742087, "eth": 0.0014923551506154976, "eur": 0.21959065444242298, "gbp": 0.18702678197618494, "hkd": 1.9010471560131363, "huf": 73.51672836180421, "idr": 3331.927153784725, "ils": 0.8450375779924705, "inr": 17.35510436165381, "jpy": 26.951853389492427, "krw": 283.66934547682274, "kwd": 0.07424585424677779, "lkr": 44.32100388069877, "ltc": 0.004245955277089311, "mmk": 359.45867801786477, "mxn": 4.593126188776806, "myr": 0.9941400303084967, "ngn": 88.47836217053941, "nok": 2.1741819684083397, "nzd": 0.36852654026140924, "php": 12.43982878396605, "pkr": 37.8327797237318, "pln": 0.9293307429078006, "rub": 15.084246807019587, "sar": 0.9174993852063762, "sek": 2.32116528396911, "sgd": 0.32938341345773414, "thb": 7.423338010382792, "try": 1.4323424858583302, "twd": 7.316696073121998, "uah": 5.8969634782397815, "usd": 0.2445910382333704, "vef": 60777.85040388855, "vnd": 5678.88726864621, "xag": 0.013628140589659608, "xau": 0.00015758756002337828, "xdr": 0.17698044967178733, "xlm": 4.562935412779151, "xrp": 1.0714372717089458, "zar": 3.5262027140391354, "bits": 28.07023806471818, "link": 0.09870254611531247, "sats": 2807.023806471818}, "market_cap": {"aed": 54000817.65440042, "ars": 880416793.7681243, "aud": 21315504.062403657, "bch": 45261.36741981292, "bdt": 1247753680.5370145, "bhd": 5542111.031300635, "bmd": 14701300.679081023, "bnb": 866349.9785742185, "brl": 61523473.21188616, "btc": 1689.3539978845338, "cad": 19172818.89102896, "chf": 14187651.934654607, "clp": 11424384756.467648, "cny": 101131717.5014662, "czk": 332162657.67322415, "dkk": 98642787.29649785, "eos": 3830073.1370104006, "eth": 89912.36976907199, "eur": 13199459.90560813, "gbp": 11240614.499225335, "hkd": 114268138.22976254, "huf": 4417740854.063849, "idr": 200277638848.71637, "ils": 50791523.71615704, "inr": 1043139639.8672031, "jpy": 1620241275.4653265, "krw": 17049980475.571074, "kwd": 4458360.547840149, "lkr": 2663942265.2402525, "ltc": 255102.4181620096, "mmk": 21605493583.961697, "mxn": 276102187.7936853, "myr": 59746085.95978527, "ngn": 5318048507.650769, "nok": 130688682.51675853, "nzd": 22154860.123375125, "php": 747705006.4597152, "pkr": 2273963405.451297, "pln": 55855386.73506642, "rub": 906648295.1672074, "sar": 55150841.60132211, "sek": 139531353.1609184, "sgd": 19802402.09261057, "thb": 446595597.483599, "try": 86101107.68717371, "twd": 439701202.01063436, "uah": 354440758.8001929, "usd": 14701300.679081023, "vef": 3653091543620.853, "vnd": 341351765879.2112, "xag": 819494.3097279989, "xau": 9472.342053545475, "xdr": 10637523.041467408, "xlm": 274629658.4215396, "xrp": 64328859.16133138, "zar": 211883481.02440116, "bits": 1689353997.884534, "link": 5940225.390922767, "sats": 168935399788.45337}, "total_volume": {"aed": 3715749.6636814848, "ars": 60583754.589427166, "aud": 1466385.8265203836, "bch": 3098.3720427145927, "bdt": 85856854.02922662, "bhd": 381347.87759019586, "bmd": 1011583.8134818365, "bnb": 59433.86150671517, "brl": 4233579.417802838, "btc": 116.09337231627376, "cad": 1319272.2041095425, "chf": 976209.7391081894, "clp": 786101781.4567354, "cny": 6958786.211322903, "czk": 22854610.92802994, "dkk": 6787402.670058999, "eos": 264061.79920465744, "eth": 6172.108043012182, "eur": 908186.7971544178, "gbp": 773508.5745626999, "hkd": 7862383.452715552, "huf": 304051746.8182359, "idr": 13780241503.58826, "ils": 3494920.917198393, "inr": 71777538.45905942, "jpy": 111467937.78328376, "krw": 1173204547.2228205, "kwd": 307067.2781662249, "lkr": 183303568.4659996, "ltc": 17560.494702071763, "mmk": 1486655369.4069111, "mxn": 18996330.116612665, "myr": 4111581.3983131154, "ngn": 365930328.68891954, "nok": 8992019.097230712, "nzd": 1524158.3896921459, "php": 51448857.37121265, "pkr": 156469459.64976677, "pln": 3843542.035254833, "rub": 62385686.813214794, "sar": 3794609.70302909, "sek": 9599915.21618542, "sgd": 1362269.5741015899, "thb": 30701568.739173736, "try": 5923906.634200387, "twd": 30260517.184911817, "uah": 24388762.75421546, "usd": 1011583.8134818365, "vef": 251366076741.2613, "vnd": 23486839424.05711, "xag": 56363.49773044791, "xau": 651.7533351882128, "xdr": 731958.7810077462, "xlm": 18871466.58712168, "xrp": 4431268.655835963, "zar": 14583729.699754164, "bits": 116093372.31627376, "link": 408215.68411034404, "sats": 11609337231.627377}}, "community_data": {"facebook_likes": null, "twitter_followers": 180, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 244, "stars": 198, "subscribers": 32, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 357, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 2987, "deletions": -3414}, "commit_count_4_weeks": 52}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "NXS_20200120": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.6566906803360738, "ars": 10.707068726267972, "aud": 0.25915683057581784, "bch": 0.0005474213077674725, "bdt": 15.173626047807128, "bhd": 0.06739625105188218, "bmd": 0.17877890676687203, "bnb": 0.010506483630435038, "brl": 0.7482076027100365, "btc": 2.052866185559163e-05, "cad": 0.2331571929436168, "chf": 0.17252718717614138, "clp": 138.92908844853628, "cny": 1.229837977539989, "czk": 4.039133783914348, "dkk": 1.1995490763766388, "eos": 0.046689048990015775, "eth": 0.0010915820724194951, "eur": 0.16050537836950976, "gbp": 0.1367034698381955, "hkd": 1.3895322360094982, "huf": 53.73557600691869, "idr": 2435.4052310458787, "ils": 0.6176632449888656, "inr": 12.685364954545282, "jpy": 19.69991590500177, "krw": 207.3424105556679, "kwd": 0.054268515927990764, "lkr": 32.395547595825875, "ltc": 0.0031019833118606207, "mmk": 262.7391009419705, "mxn": 3.3572533343937385, "myr": 0.7266466877750452, "ngn": 64.67148173384828, "nok": 1.5891746411960637, "nzd": 0.26936707272018057, "php": 9.09264299472234, "pkr": 27.653110464771938, "pln": 0.6792756408490273, "rub": 11.02552723533399, "sar": 0.6706277475708987, "sek": 1.696609143534015, "sgd": 0.24075619037574256, "thb": 5.4259398203745635, "try": 1.0469419713291834, "twd": 5.347992038245297, "uah": 4.310267013454483, "usd": 0.17877890676687203, "vef": 44424.34902492358, "vnd": 4150.868588129489, "xag": 0.009961215641760042, "xau": 0.00011518546184082795, "xdr": 0.12936030502165302, "xlm": 3.3341200733021545, "xrp": 0.7816846201241903, "zar": 2.577407049774265, "bits": 20.528661855591633, "link": 0.07218432522073917, "sats": 2052.866185559163}, "market_cap": {"aed": 39209612.27876873, "ars": 639296438.9021732, "aud": 15473706.496142244, "bch": 32685.369038151162, "bdt": 905985134.2690986, "bhd": 4024087.674633161, "bmd": 10674510.584441021, "bnb": 627319.9268668815, "brl": 44673894.24694415, "btc": 1225.7230018062135, "cad": 13921323.096357476, "chf": 10301233.623813713, "clp": 8295162175.169123, "cny": 73431025.76142822, "czk": 241168139.5087065, "dkk": 71622539.50370166, "eos": 2787704.414544277, "eth": 65176.05793966695, "eur": 9583436.834073557, "gbp": 8162275.192903415, "hkd": 82966032.3409802, "huf": 3208437646.3654366, "idr": 145412897899.091, "ils": 36879366.61818526, "inr": 757416324.5743848, "jpy": 1176240333.0654325, "krw": 12379977012.423016, "kwd": 3240258.3624176565, "lkr": 1934269662.759145, "ltc": 185212.8659584764, "mmk": 15687596286.785667, "mxn": 200454499.36310124, "myr": 43386537.59594999, "ngn": 3861397458.8156953, "nok": 94886258.3106255, "nzd": 16083338.470130254, "php": 542902491.36758, "pkr": 1651108767.17601, "pln": 40558112.526390664, "rub": 658310923.257217, "sar": 40041765.10039999, "sek": 101300945.32868661, "sgd": 14375043.168749137, "thb": 323971396.23778486, "try": 62510691.87273813, "twd": 319317298.94845784, "uah": 257356931.46890074, "usd": 10674510.584441021, "vef": 2652483967204.348, "vnd": 247839588461.01648, "xag": 594763.1279596254, "xau": 6877.480424449508, "xdr": 7723830.345158085, "xlm": 199073261.24703673, "xrp": 46672736.18632846, "zar": 153891526.30351815, "bits": 1225723001.8062134, "link": 4309973.461266818, "sats": 122572300180.62135}, "total_volume": {"aed": 264856.41874964, "ars": 4318373.875344648, "aud": 104523.10668653138, "bch": 220.78590646107065, "bdt": 6119825.322344664, "bhd": 27182.249155139416, "bmd": 72105.09058848966, "bnb": 4237.473914788369, "brl": 301767.01462188823, "btc": 8.27961782252152, "cad": 94036.93546733727, "chf": 69583.6476757008, "clp": 56032865.89631532, "cny": 496018.1286672791, "czk": 1629063.0290515942, "dkk": 483802.01211468654, "eos": 18830.62251468773, "eth": 440.2567710027175, "eur": 64735.012964168374, "gbp": 55135.229623579224, "hkd": 560426.0008354477, "huf": 21672627.078182325, "idr": 982247391.3728201, "ils": 249115.87747417268, "inr": 5116260.109970819, "jpy": 7945368.089581555, "krw": 83625320.0465514, "kwd": 21887.57235322662, "lkr": 13065768.978589568, "ltc": 1251.0915954831162, "mmk": 105967907.60815646, "mxn": 1354047.0751431303, "myr": 293071.06859182584, "ngn": 26083295.46948025, "nok": 640945.7554956139, "nzd": 108641.10051513057, "php": 3667243.852644134, "pkr": 11153049.714729376, "pln": 273965.3827385938, "rub": 4446814.528999744, "sar": 270477.51529664686, "sek": 684276.2281084084, "sgd": 97101.76234280097, "thb": 2188389.49936066, "try": 422252.5299476274, "twd": 2156951.6077589868, "uah": 1738416.4557566503, "usd": 72105.09058848966, "vef": 17917223953.907505, "vnd": 1674127898.982395, "xag": 4017.5564847658043, "xau": 46.456588815257994, "xdr": 52173.5851327476, "xlm": 1344716.9706202801, "xrp": 315268.96189818345, "zar": 1039519.5505347078, "bits": 8279617.822521519, "link": 29113.37474446881, "sats": 827961782.252152}}, "community_data": {"facebook_likes": null, "twitter_followers": 22914, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3542, "reddit_accounts_active_48h": "2062.15384615385"}, "developer_data": {"forks": 7, "stars": 18, "subscribers": 10, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 72, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 1051, "deletions": -931}, "commit_count_4_weeks": 31}, "public_interest_stats": {"alexa_rank": 570980, "bing_matches": null}}, "NULS_20200130": {"id": "nuls", "symbol": "nuls", "name": "Nuls", "localization": {"en": "Nuls", "de": "Nuls", "es": "Nuls", "fr": "Nuls", "it": "Nuls", "pl": "Nuls", "ro": "Nuls", "hu": "Nuls", "nl": "Nuls", "pt": "Nuls", "sv": "Nuls", "vi": "Nuls", "tr": "Nuls", "ru": "Nuls", "ja": "\u30cc\u30eb\u30ba", "zh": "Nuls", "zh-tw": "Nuls", "ko": "\ub20c\uc2a4", "ar": "Nuls", "th": "Nuls", "id": "Nuls"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1053/thumb/Nuls.png?1556868153", "small": "https://assets.coingecko.com/coins/images/1053/small/Nuls.png?1556868153"}, "market_data": {"current_price": {"aed": 0.9866874798221523, "ars": 16.11771083321807, "aud": 0.39492750655751174, "bch": 0.0007775147180535304, "bdt": 22.79802052503218, "bhd": 0.10126347010788962, "bmd": 0.2686325836706106, "bnb": 0.015405992650987608, "brl": 1.1234147490959032, "btc": 3.125915156522747e-05, "cad": 0.3535511042250617, "chf": 0.2605824710357535, "clp": 208.8080610823612, "cny": 1.8634236431479247, "czk": 6.128852127812412, "dkk": 1.8207478650082596, "eos": 0.07378426328121208, "eth": 0.0016027761194267254, "eur": 0.2436465297982399, "gbp": 0.205662151099799, "hkd": 2.088266429354388, "huf": 81.9396103156496, "idr": 3684.315617180235, "ils": 0.9281013996494285, "inr": 19.16071841827935, "jpy": 29.225613307860417, "krw": 314.353858007591, "kwd": 0.08162508507864985, "lkr": 48.7866797009705, "ltc": 0.004787445513361157, "mmk": 394.1620903936951, "mxn": 5.068012384124142, "myr": 1.0921257689128665, "ngn": 97.41960700541209, "nok": 2.434551559456328, "nzd": 0.408455306205996, "php": 13.652780420772208, "pkr": 41.53503336533051, "pln": 1.036941651779748, "rub": 16.67237398984073, "sar": 1.0078020008986632, "sek": 2.573207879313418, "sgd": 0.36384805978973955, "thb": 8.232411272889978, "try": 1.5977003503584684, "twd": 8.070202322626988, "uah": 6.561266505523377, "usd": 0.2686325836706106, "vef": 66751.8773454183, "vnd": 6229.761477852246, "xag": 0.014753970390323268, "xau": 0.00016972743901476532, "xdr": 0.19490610244962775, "xlm": 4.597954979496511, "xrp": 1.1711238255197562, "zar": 3.883255921812232, "bits": 31.25915156522747, "link": 0.10456600911936849, "sats": 3125.915156522747}, "market_cap": {"aed": 79235161.94783156, "ars": 1294085297.197127, "aud": 31703707.609895173, "bch": 62690.802477540696, "bdt": 1830777105.5496852, "bhd": 8131883.3141009, "bmd": 21572328.327751588, "bnb": 1238933.7576237712, "brl": 90214937.75844905, "btc": 2513.337508973685, "cad": 28391945.33734703, "chf": 20921642.188401617, "clp": 16768167077.148506, "cny": 149640769.91111442, "czk": 492125880.41750973, "dkk": 146162771.27647272, "eos": 5931169.892666541, "eth": 129008.27102618988, "eur": 19558939.780265875, "gbp": 16513121.171342298, "hkd": 167691847.085927, "huf": 6578023866.602363, "idr": 295778999946.0012, "ils": 74530452.86283213, "inr": 1538686420.9352415, "jpy": 2347223923.817628, "krw": 25243939299.4493, "kwd": 6554838.251700622, "lkr": 3917775938.233417, "ltc": 385911.6221648159, "mmk": 31652876624.7948, "mxn": 406974917.30003136, "myr": 87702300.81647414, "ngn": 7823204911.20377, "nok": 195482571.63277972, "nzd": 32771257.42185054, "php": 1096062713.3377235, "pkr": 3335438183.328073, "pln": 83244724.32479753, "rub": 1338861878.9182935, "sar": 80930746.9543929, "sek": 206570230.65736425, "sgd": 29217302.619166717, "thb": 658486240.2543918, "try": 128301638.45258573, "twd": 648071249.5717223, "uah": 526897345.69423854, "usd": 21572328.327751588, "vef": 5360457003811.731, "vnd": 500115514331.6996, "xag": 1182952.9238542987, "xau": 13619.905213009239, "xdr": 15651781.245871838, "xlm": 369686203.1275602, "xrp": 94231410.38825494, "zar": 311799961.95082355, "bits": 2513337508.9736853, "link": 8407447.410560606, "sats": 251333750897.3685}, "total_volume": {"aed": 7427421.12260419, "ars": 121328210.13625126, "aud": 2972869.286464834, "bch": 5852.84536198569, "bdt": 171615129.0697529, "bhd": 762274.227867071, "bmd": 2022167.4714413811, "bnb": 115970.65694119823, "brl": 8456653.811381081, "btc": 235.30741735174874, "cad": 2661402.9195085997, "chf": 1961569.1788246979, "clp": 1571830427.7385805, "cny": 14027169.099147432, "czk": 46135748.83876776, "dkk": 13705921.508131832, "eos": 555420.8468414373, "eth": 12065.110227588362, "eur": 1834081.6305876763, "gbp": 1548149.172293335, "hkd": 15719703.051069144, "huf": 616811305.3852782, "idr": 27734175407.108067, "ils": 6986406.618757537, "inr": 144234854.109886, "jpy": 219999687.8879937, "krw": 2366340439.790062, "kwd": 614443.6748673505, "lkr": 367248214.57958263, "ltc": 36038.13229257213, "mmk": 2967107514.5776114, "mxn": 38150136.69601664, "myr": 8221121.85514493, "ngn": 733339037.5625517, "nok": 18326410.3848102, "nzd": 3074701.595991677, "php": 102773118.89859834, "pkr": 312660483.1362932, "pln": 7805716.080156615, "rub": 125503510.755422, "sar": 7586363.485859491, "sek": 19370164.25819952, "sgd": 2738914.620856417, "thb": 61970569.83965095, "try": 12026901.701421771, "twd": 60749520.41103557, "uah": 49390805.5293696, "usd": 2022167.4714413811, "vef": 502483627194.9144, "vnd": 46895357380.76447, "xag": 111062.4727285645, "xau": 1277.6458518060945, "xdr": 1467181.586736822, "xlm": 34611717.11801909, "xrp": 8815790.224092364, "zar": 29231724.98686694, "bits": 235307417.35174873, "link": 787134.5291414968, "sats": 23530741735.174873}}, "community_data": {"facebook_likes": null, "twitter_followers": 21660, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5220, "reddit_accounts_active_48h": "181.166666666667"}, "developer_data": {"forks": 30, "stars": 56, "subscribers": 15, "total_issues": 37, "closed_issues": 32, "pull_requests_merged": 498, "pull_request_contributors": 15, "code_additions_deletions_4_weeks": {"additions": 82, "deletions": -27}, "commit_count_4_weeks": 12}, "public_interest_stats": {"alexa_rank": 555548, "bing_matches": null}}, "VRC_20200130": {"id": "vericoin", "symbol": "vrc", "name": "VeriCoin", "localization": {"en": "VeriCoin", "de": "VeriCoin", "es": "VeriCoin", "fr": "VeriCoin", "it": "VeriCoin", "pl": "VeriCoin", "ro": "VeriCoin", "hu": "VeriCoin", "nl": "VeriCoin", "pt": "VeriCoin", "sv": "VeriCoin", "vi": "VeriCoin", "tr": "VeriCoin", "ru": "VeriCoin", "ja": "VeriCoin", "zh": "\u7ef4\u7406\u5e01", "zh-tw": "\u7dad\u7406\u5e63", "ko": "\ubca0\ub9ac\ucf54\uc778", "ar": "VeriCoin", "th": "VeriCoin", "id": "VeriCoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/78/thumb/vericoin.png?1547033746", "small": "https://assets.coingecko.com/coins/images/78/small/vericoin.png?1547033746"}, "market_data": {"current_price": {"aed": 0.20233269181652094, "ars": 3.304825067039697, "aud": 0.08094514066875583, "bch": 0.0001596948712711144, "bdt": 4.675021174637275, "bhd": 0.020765349625500664, "bmd": 0.05508649382426382, "bnb": 0.0031595695553660037, "brl": 0.2303703400107254, "btc": 6.412792042051935e-06, "cad": 0.07249184275895364, "chf": 0.0534249199110425, "clp": 42.81872211963684, "cny": 0.3821184817107705, "czk": 1.2565862735993538, "dkk": 0.373268836477903, "eos": 0.015127205815099838, "eth": 0.000328882569557108, "eur": 0.04994923758320059, "gbp": 0.04216871102247395, "hkd": 0.4282253261767412, "huf": 16.798598197597375, "idr": 755.3820293894901, "ils": 0.1903188783783872, "inr": 3.929146577807637, "jpy": 5.992923930901408, "krw": 64.4622168359214, "kwd": 0.016738251494477878, "lkr": 10.004322980227787, "ltc": 0.0009828856223013849, "mmk": 80.82789980851699, "mxn": 1.0392182741584381, "myr": 0.22395414064254462, "ngn": 19.97711709554226, "nok": 0.4992323675811555, "nzd": 0.0836786426653037, "php": 2.7991538595414016, "pkr": 8.51728158850371, "pln": 0.21256776236906905, "rub": 3.4188802202539965, "sar": 0.20666249023110803, "sek": 0.5275137735105324, "sgd": 0.07460821076518773, "thb": 1.6881919273831278, "try": 0.3276224600138093, "twd": 1.6548966038723636, "uah": 1.3454703144985838, "usd": 0.05508649382426382, "vef": 13688.3129697147, "vnd": 1277.200881403225, "xag": 0.003020589666032275, "xau": 3.4783264795454866e-05, "xdr": 0.039967950507700786, "xlm": 0.9432963785631573, "xrp": 0.24031129451163996, "zar": 0.7959113117650339, "bits": 6.412792042051936, "link": 0.021451640162100372, "sats": 641.2792042051935}, "market_cap": {"aed": 6395927.589479084, "ars": 104439759.83365957, "aud": 2557705.8453916414, "bch": 5063.56381989923, "bdt": 147781837.15054986, "bhd": 656412.3245854754, "bmd": 1741336.1256409173, "bnb": 100156.24023956001, "brl": 7282224.144027167, "btc": 203.11395903568544, "cad": 2290957.529649203, "chf": 1688267.1658758847, "clp": 1353540270.9508717, "cny": 12079126.302733349, "czk": 39710647.944403425, "dkk": 11795702.952251794, "eos": 478498.29613599903, "eth": 10416.59583546722, "eur": 1578468.9578097216, "gbp": 1332423.3872650377, "hkd": 13536206.719224643, "huf": 530892480.72232383, "idr": 23871302915.247765, "ils": 6016159.5938380705, "inr": 124204036.30519608, "jpy": 189469342.15559566, "krw": 2037711589.9477563, "kwd": 529111.9471204949, "lkr": 316246103.33026654, "ltc": 31132.090378894434, "mmk": 2555046294.020263, "mxn": 32842940.158404406, "myr": 7079402.018793153, "ngn": 631495549.4463509, "nok": 15771983.048388416, "nzd": 2643931.586324992, "php": 88459041.08255444, "pkr": 269239319.7075285, "pln": 6717045.643072398, "rub": 108074034.54937586, "sar": 6532796.608954472, "sek": 16672440.148310209, "sgd": 2357088.2516926676, "thb": 53345221.000029474, "try": 10353486.580928952, "twd": 52312845.499237426, "uah": 42531588.08923596, "usd": 1741336.1256409173, "vef": 432700508209.58875, "vnd": 40361457936.18405, "xag": 95449.78993785504, "xau": 1099.3403228396232, "xdr": 1263424.684622642, "xlm": 29902211.68371687, "xrp": 7623142.5292241555, "zar": 25167102.655201264, "bits": 203113959.03568545, "link": 679443.1399866424, "sats": 20311395903.568542}, "total_volume": {"aed": 12412.566609761787, "ars": 202742.13183225793, "aud": 4965.766734317871, "bch": 9.796850964092144, "bdt": 286799.97884303227, "bhd": 1273.8983655456561, "bmd": 3379.4082792708386, "bnb": 193.83109675484326, "brl": 14132.60093870365, "btc": 0.393407549031681, "cad": 4447.179636822378, "chf": 3277.4751873431896, "clp": 2626813.4708395908, "cny": 23441.941410818006, "czk": 77088.18916968889, "dkk": 22899.039470753178, "eos": 928.0134026476237, "eth": 20.17606134118505, "eur": 3064.251421962597, "gbp": 2586.9370377818273, "hkd": 26270.472346484912, "huf": 1030548.8312654183, "idr": 46340656.427961834, "ils": 11675.55145813561, "inr": 241042.5778389838, "jpy": 367649.76935613155, "krw": 3954583.676543805, "kwd": 1026.8467232895628, "lkr": 613738.315161922, "ltc": 60.29739014027656, "mmk": 4958574.322780046, "mxn": 63753.246864182904, "myr": 13738.9843593756, "ngn": 1225542.4192363862, "nok": 30626.56341254782, "nzd": 5133.459731951864, "php": 171720.56290357944, "pkr": 522512.32414418756, "pln": 13040.460668050302, "rub": 209739.108809873, "sar": 12678.188100512472, "sek": 32361.551623125455, "sgd": 4577.013123503665, "thb": 103566.03552582301, "try": 20098.75700889269, "twd": 101523.45695307464, "uah": 82540.98608699061, "usd": 3379.4082792708386, "vef": 839741195.4857241, "vnd": 78352839.92979296, "xag": 185.3050542340598, "xau": 2.1338597697799835, "xdr": 2451.926297616678, "xlm": 57868.696484698354, "xrp": 14742.451768045197, "zar": 48827.018926358665, "bits": 393407.54903168103, "link": 1316.000444664526, "sats": 39340754.903168105}}, "community_data": {"facebook_likes": null, "twitter_followers": 35268, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3015, "reddit_accounts_active_48h": "2108.84615384615"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 4568015, "bing_matches": null}}, "RDN_20200201": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 0.461764538763282, "ars": 7.55559272324408, "aud": 0.18585884402255543, "bch": 0.00033328064296708624, "bdt": 10.658375994900668, "bhd": 0.047383538462303594, "bmd": 0.12571178774999497, "bnb": 0.007010724564606394, "brl": 0.5273231103631165, "btc": 1.3474992267519741e-05, "cad": 0.16549818574320344, "chf": 0.1223282549827039, "clp": 98.77177313188672, "cny": 0.8720249580853904, "czk": 2.8771028303402626, "dkk": 0.8523636344812909, "eos": 0.031157574462846623, "eth": 0.0007184648453733415, "eur": 0.11405931071987246, "gbp": 0.0965305618831642, "hkd": 0.9775562325478779, "huf": 38.558626024017016, "idr": 1710.9072038780705, "ils": 0.434195943709708, "inr": 8.955732524531832, "jpy": 13.72125306523033, "krw": 147.75912108558887, "kwd": 0.03815981317151093, "lkr": 22.81782314552596, "ltc": 0.0020872157695778493, "mmk": 184.17653103963718, "mxn": 2.3537018020431506, "myr": 0.5136583647464797, "ngn": 45.63015595443384, "nok": 1.1456596693804126, "nzd": 0.19224927704103936, "php": 6.381124563447508, "pkr": 19.422471207374258, "pln": 0.48725926645434425, "rub": 7.825345077398016, "sar": 0.47160739460874246, "sek": 1.2079394261321523, "sgd": 0.17067248292699258, "thb": 3.8672302416631408, "try": 0.7469543004529202, "twd": 3.773742156467095, "uah": 3.11089620759083, "usd": 0.12571178774999497, "vef": 31237.82573989731, "vnd": 2909.87206736843, "xag": 0.007195042516151947, "xau": 8.017017840180426e-05, "xdr": 0.09138467556340586, "xlm": 2.0800413726177953, "xrp": 0.5296025381365544, "zar": 1.827780252401665, "bits": 13.47499226751974, "link": 0.04762606553261078, "sats": 1347.499226751974}, "market_cap": {"aed": 23554039.915054012, "ars": 385366626.1955887, "aud": 9482520.972858492, "bch": 16940.8263762415, "bdt": 543670621.1479805, "bhd": 2416975.8882886837, "bmd": 6412403.330897865, "bnb": 357125.6234795465, "brl": 26898749.492450345, "btc": 686.4273360409136, "cad": 8440704.216090808, "chf": 6238902.93397376, "clp": 5038213203.293771, "cny": 44480918.18543923, "czk": 146760675.0342595, "dkk": 43477697.68432026, "eos": 1587232.2426569394, "eth": 36438.93473436457, "eur": 5817332.30179054, "gbp": 4923173.956523486, "hkd": 49863617.78946148, "huf": 1966812349.6529968, "idr": 87263360214.75575, "ils": 22147799.864588145, "inr": 456822165.4296894, "jpy": 699902601.8616706, "krw": 7537010627.07075, "kwd": 1946485.0310940486, "lkr": 1163909031.611204, "ltc": 106290.14943905342, "mmk": 9394617817.86513, "mxn": 120074176.0920621, "myr": 26201080.010048654, "ngn": 2327538007.9193273, "nok": 58439437.75613771, "nzd": 9803404.047939908, "php": 325463724.1016606, "pkr": 990716314.6237204, "pln": 24854937.003599945, "rub": 399161206.26272994, "sar": 24056111.85865338, "sek": 61614475.1413985, "sgd": 8707774.402419413, "thb": 197309650.4917275, "try": 38101282.23556228, "twd": 192506760.39688513, "uah": 158682980.81405443, "usd": 6412403.330897865, "vef": 1593402984793.1462, "vnd": 148430871959.46347, "xag": 366905.278531514, "xau": 4089.766720413348, "xdr": 4661419.652556233, "xlm": 105434300.87622368, "xrp": 26847649.51857518, "zar": 93254510.76989163, "bits": 686427336.0409136, "link": 2426111.469352062, "sats": 68642733604.09136}, "total_volume": {"aed": 4068938.6386139896, "ars": 66577748.156184606, "aud": 1637735.6169378522, "bch": 2936.774853484534, "bdt": 93918597.61834022, "bhd": 417530.3521571546, "bmd": 1107736.752317866, "bnb": 61776.52390113658, "brl": 4646622.247211003, "btc": 118.73782434480788, "cad": 1458323.2493221976, "chf": 1077922.017629231, "clp": 870348955.7191316, "cny": 7684037.529803344, "czk": 25352217.181922864, "dkk": 7510787.501740827, "eos": 274551.74222973513, "eth": 6330.909206789599, "eur": 1005058.4172720186, "gbp": 850600.0354758248, "hkd": 8613949.301271616, "huf": 339767717.3331382, "idr": 15076030843.744091, "ils": 3826011.9688306805, "inr": 78915384.45926501, "jpy": 120907804.91036664, "krw": 1302011623.9393716, "kwd": 336253.49116608786, "lkr": 201064210.1157246, "ltc": 18391.955594306586, "mmk": 1622911550.2895749, "mxn": 20740155.213647358, "myr": 4526212.369970803, "ngn": 402080040.93652946, "nok": 10095229.287048852, "nzd": 1694046.307005185, "php": 56228666.591764264, "pkr": 171145328.2331106, "pln": 4293590.97519431, "rub": 68954729.67930827, "sar": 4155671.1031102138, "sek": 10644020.905671915, "sgd": 1503917.6940475956, "thb": 34076940.15842628, "try": 6581950.234922296, "twd": 33253149.56782999, "uah": 27412338.361203283, "usd": 1107736.752317866, "vef": 275258893807.16943, "vnd": 25640970439.28411, "xag": 63400.68160896427, "xau": 706.4369590556723, "xdr": 805255.939256445, "xlm": 18328736.835504316, "xrp": 4666707.920671577, "zar": 16105883.123488003, "bits": 118737824.34480788, "link": 419667.4321718428, "sats": 11873782434.480787}}, "community_data": {"facebook_likes": null, "twitter_followers": 25235, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.333, "reddit_subscribers": 4331, "reddit_accounts_active_48h": "1083.0"}, "developer_data": {"forks": 367, "stars": 1752, "subscribers": 212, "total_issues": 2187, "closed_issues": 1828, "pull_requests_merged": 3131, "pull_request_contributors": 75, "code_additions_deletions_4_weeks": {"additions": 10065, "deletions": -7764}, "commit_count_4_weeks": 290}, "public_interest_stats": {"alexa_rank": 2042821, "bing_matches": null}}, "WPR_20200210": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.026930527217125945, "ars": 0.44433830266878166, "aud": 0.010892324909337047, "bch": 1.654768375325207e-05, "bdt": 0.6228813782570444, "bhd": 0.0027640081944359253, "bmd": 0.007331625617207314, "bnb": 0.0003558430492784014, "brl": 0.03139695354312864, "btc": 7.528922579916638e-07, "cad": 0.009741897538864192, "chf": 0.00714540232653025, "clp": 5.746515504381275, "cny": 0.05110729585242876, "czk": 0.1668054802298921, "dkk": 0.049892445487657484, "eos": 0.0016002030687100558, "eth": 3.446584031434069e-05, "eur": 0.006676830801708914, "gbp": 0.0056706604968802315, "hkd": 0.0569209083855933, "huf": 2.256150835585967, "idr": 100.45793420697441, "ils": 0.02514820902958278, "inr": 0.5227669013837334, "jpy": 0.8062735323755236, "krw": 8.693914973140643, "kwd": 0.0022288141876310222, "lkr": 1.3303463355825653, "ltc": 9.99664576250384e-05, "mmk": 10.65450134430105, "mxn": 0.1367751417018111, "myr": 0.03022462660693715, "ngn": 2.665045911854859, "nok": 0.06760675272267293, "nzd": 0.011351028066077663, "php": 0.3723769309107685, "pkr": 1.1325478670494302, "pln": 0.028437542862742908, "rub": 0.4640713730174946, "sar": 0.02750630177172204, "sek": 0.07057349502867592, "sgd": 0.01016328272121324, "thb": 0.22861150208561018, "try": 0.04390690633376949, "twd": 0.2202127070384388, "uah": 0.18011082642049236, "usd": 0.007331625617207314, "vef": 1821.8183634135653, "vnd": 170.5572292585008, "xag": 0.00041154225500912117, "xau": 4.681462905355384e-06, "xdr": 0.005334549452084982, "xlm": 0.10336122471600521, "xrp": 0.025968400139069325, "zar": 0.10934727366094153, "bits": 0.7528922579916638, "link": 0.0025414553699324156, "sats": 75.28922579916639}, "market_cap": {"aed": 16413454.906191802, "ars": 270839879.6915811, "aud": 6638204.045294493, "bch": 10092.412342327258, "bdt": 379629976.4761778, "bhd": 1684591.0031374537, "bmd": 4468434.8541304, "bnb": 217168.13659691886, "brl": 19135625.41932803, "btc": 458.8007295267444, "cad": 5937432.812425748, "chf": 4355419.199799733, "clp": 3502351526.148847, "cny": 31148565.68117219, "czk": 101689168.43641813, "dkk": 30408637.553676706, "eos": 974844.1921807595, "eth": 20978.62920965266, "eur": 4069448.3060050933, "gbp": 3456446.070541216, "hkd": 34691274.88657238, "huf": 1375094112.6262572, "idr": 60965383614.81123, "ils": 15327178.393152662, "inr": 318612810.4040598, "jpy": 491400893.0036876, "krw": 5298714734.376352, "kwd": 1358404.1956556404, "lkr": 810811441.3302698, "ltc": 60924.248120617165, "mmk": 6493641062.156271, "mxn": 83364461.16911303, "myr": 18421122.68615255, "ngn": 1624276069.4764006, "nok": 41208580.958453484, "nzd": 6918258.73134224, "php": 226927551.57689467, "pkr": 690258426.6192219, "pln": 17331637.83688819, "rub": 282838520.9618917, "sar": 16764374.500591202, "sek": 43014346.977965266, "sgd": 6193183.681301898, "thb": 139324726.32742077, "try": 26759668.967445303, "twd": 134213909.27866066, "uah": 109772857.53580533, "usd": 4468434.8541304, "vef": 1110350841410.3718, "vnd": 103953575342.18114, "xag": 250824.59818686885, "xau": 2853.7659195903802, "xdr": 3251268.9473441103, "xlm": 62967316.34740769, "xrp": 15805407.308076313, "zar": 66661451.68437354, "bits": 458800729.5267444, "link": 1548723.028305552, "sats": 45880072952.67444}, "total_volume": {"aed": 1791879.3462046508, "ars": 29564984.779558733, "aud": 724743.7779376105, "bch": 1101.0349892490176, "bdt": 41444724.33961503, "bhd": 183909.10643593068, "bmd": 487825.15142236976, "bnb": 23676.766717250317, "brl": 2089062.4284511583, "btc": 50.095272035919045, "cad": 648197.669952472, "chf": 475434.39257624163, "clp": 382356511.6986419, "cny": 3400531.5655350555, "czk": 11098753.932586038, "dkk": 3319698.9379443675, "eos": 106472.88133042573, "eth": 2293.2572730912043, "eur": 444256.9993236866, "gbp": 377309.3390179347, "hkd": 3787352.5193554237, "huf": 150117747.47721803, "idr": 6684180224.789296, "ils": 1673289.0518938683, "inr": 34783396.77186924, "jpy": 53647107.552220896, "krw": 578467942.8081627, "kwd": 148298.8460324003, "lkr": 88517395.25223614, "ltc": 6651.478795321759, "mmk": 708919686.1627655, "mxn": 9100622.112360021, "myr": 2011059.186738719, "ngn": 177324442.5420314, "nok": 4498357.677553525, "nzd": 755264.5585363538, "php": 24776883.353317894, "pkr": 75356457.56921737, "pln": 1892151.8060795192, "rub": 30877966.174612008, "sar": 1830189.718821301, "sek": 4695756.125076591, "sgd": 676235.4205304765, "thb": 15211147.76511026, "try": 2921438.484323148, "twd": 14652316.24812229, "uah": 11984053.163485527, "usd": 487825.15142236976, "vef": 121218521702.80368, "vnd": 11348384455.68371, "xag": 27382.830677461636, "xau": 311.4909939377256, "xdr": 354945.48277612776, "xlm": 6877356.773366331, "xrp": 1727862.1947506855, "zar": 7275651.14700861, "bits": 50095272.03591905, "link": 169101.08554379808, "sats": 5009527203.591905}}, "community_data": {"facebook_likes": null, "twitter_followers": 33720, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 10, "stars": 36, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 18, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 683418, "bing_matches": null}}, "WPR_20200211": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.029797966161239184, "ars": 0.49238306124795567, "aud": 0.012157505292144067, "bch": 1.8413642601119517e-05, "bdt": 0.688494331354615, "bhd": 0.003058587208924891, "bmd": 0.00811270518955601, "bnb": 0.00036664794935649137, "brl": 0.03505175404199564, "btc": 8.275208530286367e-07, "cad": 0.010794684398171338, "chf": 0.007931272650696774, "clp": 6.42687694657378, "cny": 0.05680191665519533, "czk": 0.18553756768514607, "dkk": 0.05538462705857986, "eos": 0.001764448950690776, "eth": 3.633027226519276e-05, "eur": 0.007411913489871782, "gbp": 0.0062952645221709125, "hkd": 0.06299069380904812, "huf": 2.5064202683133243, "idr": 110.9957243388789, "ils": 0.027817492570364824, "inr": 0.5801882243362873, "jpy": 0.8903693165906785, "krw": 9.673508540974668, "kwd": 0.0024679092567785076, "lkr": 1.471996756001754, "ltc": 0.0001091465854592885, "mmk": 11.771124589247165, "mxn": 0.15222112128319645, "myr": 0.03359957981306514, "ngn": 2.9489683364036092, "nok": 0.0754578935090983, "nzd": 0.012673635596303669, "php": 0.41329497554768746, "pkr": 1.2539199958607534, "pln": 0.03167362360106454, "rub": 0.5203529672107168, "sar": 0.030434553912053294, "sek": 0.07838008991837642, "sgd": 0.01127463203718546, "thb": 0.2541432026718739, "try": 0.04880035552673626, "twd": 0.24482521721042097, "uah": 0.19935582485664374, "usd": 0.00811270518955601, "vef": 2015.9069847490948, "vnd": 188.5747452298074, "xag": 0.0004584753365536763, "xau": 5.1660084106054735e-06, "xdr": 0.005911858074912497, "xlm": 0.11268569470916727, "xrp": 0.029000672471542862, "zar": 0.12231339022074228, "bits": 0.8275208530286366, "link": 0.0024455726779031885, "sats": 82.75208530286366}, "market_cap": {"aed": 17974041.29805273, "ars": 297003944.14315766, "aud": 7333369.701135496, "bch": 11130.416577984379, "bdt": 415297657.50725365, "bhd": 1844930.3724098708, "bmd": 4893558.752532733, "bnb": 221127.21286713038, "brl": 21143109.94619292, "btc": 499.59865196394026, "cad": 6511320.34053254, "chf": 4784119.204591094, "clp": 3876672355.09124, "cny": 34262740.96173317, "czk": 111915688.6704234, "dkk": 33407836.247665748, "eos": 1064821.2621137167, "eth": 21979.43535763269, "eur": 4470843.360371454, "gbp": 3797284.1465553404, "hkd": 37995792.256102815, "huf": 1511864976.5949872, "idr": 66952278634.687805, "ils": 16779425.735384442, "inr": 349967747.74613094, "jpy": 537068026.0633674, "krw": 5835030520.932526, "kwd": 1488635.2531967175, "lkr": 887903903.9043865, "ltc": 66102.24598432278, "mmk": 7100306052.661613, "mxn": 91819310.94139728, "myr": 20267162.929489553, "ngn": 1778808606.5456483, "nok": 45515968.669057466, "nzd": 7644697.908971628, "php": 249298254.7391042, "pkr": 756360674.688343, "pln": 19105432.08163832, "rub": 313875305.16682595, "sar": 18358029.066246472, "sek": 47278628.53171976, "sgd": 6800823.276332394, "thb": 153298396.12965333, "try": 29436223.964110166, "twd": 147677816.03393272, "uah": 120250818.78379022, "usd": 4893558.752532733, "vef": 1215988876584.6672, "vnd": 113747704799.37247, "xag": 276550.9091715706, "xau": 3116.1203424377945, "xdr": 3566014.5599106452, "xlm": 68083034.92057578, "xrp": 17499673.020060435, "zar": 73779059.79342297, "bits": 499598651.96394026, "link": 1476464.0778399762, "sats": 49959865196.39403}, "total_volume": {"aed": 2130731.831861471, "ars": 35208317.788987845, "aud": 869333.946546048, "bch": 1316.6849783782086, "bdt": 49231440.15720469, "bhd": 218707.17925231636, "bmd": 580106.6789712696, "bnb": 26217.509361320794, "brl": 2506408.917163264, "btc": 59.172663447442076, "cad": 771884.1459723823, "chf": 567133.1732027559, "clp": 459559931.55446714, "cny": 4061674.92348524, "czk": 13267039.748072946, "dkk": 3960330.2866689567, "eos": 126168.5956883126, "eth": 2597.830575307323, "eur": 529995.9038283734, "gbp": 450148.8603214099, "hkd": 4504209.303538472, "huf": 179223958.4681734, "idr": 7936854541.334745, "ils": 1989116.189391008, "inr": 41486909.253309295, "jpy": 63666702.4422719, "krw": 691713402.9385506, "kwd": 176470.19206309723, "lkr": 105256524.13450916, "ltc": 7804.630111957378, "mmk": 841705427.927541, "mxn": 10884715.649541637, "myr": 2402569.8216274083, "ngn": 210868777.8060565, "nok": 5395688.242447569, "nzd": 906240.3334622036, "php": 29553049.210901048, "pkr": 89662738.56849706, "pln": 2264852.496039629, "rub": 37208332.44255669, "sar": 2176251.6427469905, "sek": 5604642.668213024, "sgd": 806203.2571003216, "thb": 18172750.74594096, "try": 3489515.7060158784, "twd": 17506459.357994955, "uah": 14255127.332871174, "usd": 580106.6789712696, "vef": 144149340905.8273, "vnd": 13484216008.976374, "xag": 32783.713775373115, "xau": 369.40033103532494, "xdr": 422733.01867322775, "xlm": 8057697.47549312, "xrp": 2073720.5903966743, "zar": 8746134.974313663, "bits": 59172663.44744208, "link": 174872.99380577332, "sats": 5917266344.744207}}, "community_data": {"facebook_likes": null, "twitter_followers": 33714, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 10, "stars": 36, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 18, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 683418, "bing_matches": null}}, "MORE_20200213": {"id": "legends-room", "symbol": "more", "name": "More Coin", "localization": {"en": "More Coin", "de": "More Coin", "es": "More Coin", "fr": "More Coin", "it": "More Coin", "pl": "More Coin", "ro": "More Coin", "hu": "More Coin", "nl": "More Coin", "pt": "More Coin", "sv": "More Coin", "vi": "More Coin", "tr": "More Coin", "ru": "More Coin", "ja": "More Coin", "zh": "More Coin", "zh-tw": "More Coin", "ko": "More Coin", "ar": "More Coin", "th": "More Coin", "id": "More Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/742/thumb/1722.png?1620080666", "small": "https://assets.coingecko.com/coins/images/742/small/1722.png?1620080666"}, "market_data": {"current_price": {"aed": 0.1255535675285414, "ars": 2.075094425826879, "aud": 0.05122140497630374, "bch": 7.653344067856073e-05, "bdt": 2.900947356397963, "bhd": 0.012887150220967156, "bmd": 0.03418260630639359, "bnb": 0.0014343253025689317, "brl": 0.14768800150315192, "btc": 3.39e-06, "cad": 0.04548228210788571, "chf": 0.033410079403869135, "clp": 27.079425234379695, "cny": 0.2393329363148455, "czk": 0.782166363320292, "dkk": 0.23339777619926028, "eos": 0.006910889387922426, "eth": 0.00015049402021471755, "eur": 0.03123524526023114, "gbp": 0.02651182435560106, "hkd": 0.26545001993282036, "huf": 10.57403950445514, "idr": 467.7352079762311, "ils": 0.11719766359954996, "inr": 2.4445959575302956, "jpy": 3.7515923160361715, "krw": 40.75899759185465, "kwd": 0.01039927176877522, "lkr": 6.202208069815255, "ltc": 0.0004465700945505954, "mmk": 49.59723152959367, "mxn": 0.6423371139200115, "myr": 0.14157068227855985, "ngn": 12.45143612628308, "nok": 0.3179723123573268, "nzd": 0.05336571405251026, "php": 1.7418337035207723, "pkr": 5.282058454565666, "pln": 0.13344024682076525, "rub": 2.191859576908833, "sar": 0.12822921103717452, "sek": 0.3302426032648885, "sgd": 0.04752732489537816, "thb": 1.071058541197188, "try": 0.20471005803922562, "twd": 1.031562727296953, "uah": 0.839978960992414, "usd": 0.03418260630639359, "vef": 8493.955246728103, "vnd": 794.7462574759787, "xag": 0.0019315503816862499, "xau": 2.176782552197451e-05, "xdr": 0.024909412137169934, "xlm": 0.4716502309089975, "xrp": 0.12158599376547781, "zar": 0.5155865057012273, "bits": 3.39, "link": 0.010104907928684313, "sats": 339.0}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 369.35331186982603, "ars": 6104.509921213839, "aud": 150.68305854648585, "bch": 0.22514597028071934, "bdt": 8534.002933863521, "bhd": 37.91140075407363, "bmd": 100.55834410869124, "bnb": 4.219496197765108, "brl": 434.4683592222472, "btc": 0.0099726973266138, "cad": 133.79971480401372, "chf": 98.28572553183496, "clp": 79662.21582334414, "cny": 704.0693021114132, "czk": 2300.9759293367297, "dkk": 686.6092562654776, "eos": 20.3304448741763, "eth": 0.44272310119960967, "eur": 91.88780144626357, "gbp": 77.99244834063637, "hkd": 780.9005026942825, "huf": 31106.69483704675, "idr": 1375982.7900140737, "ils": 344.771925210801, "inr": 7191.509017791528, "jpy": 11036.429103445074, "krw": 119904.76292617912, "kwd": 30.59256335315487, "lkr": 18245.647149542514, "ltc": 1.3137192885163407, "mmk": 145905.0673400072, "mxn": 1889.6264362167913, "myr": 416.47243796055614, "ngn": 36629.61763099874, "nok": 935.4105101425137, "nzd": 156.9911840307686, "php": 5124.123987760301, "pkr": 15538.752279901133, "pln": 392.5543341392717, "rub": 6448.00948169663, "sar": 377.22451625493426, "sek": 971.507235018801, "sgd": 139.8158188570039, "thb": 3150.8385399540043, "try": 602.2157665306021, "twd": 3034.6498090704317, "uah": 2471.0489494692874, "usd": 100.55834410869124, "vef": 24987505.83522791, "vnd": 2337983.4446215383, "xag": 5.682232250047885, "xau": 0.06403655911185571, "xdr": 73.27847428550912, "xlm": 1387.4999990805134, "xrp": 357.6815088432633, "zar": 1516.7516716946254, "bits": 9972.6973266138, "link": 29.726604214179538, "sats": 997269.73266138}}, "community_data": {"facebook_likes": null, "twitter_followers": 7, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3347055, "bing_matches": null}}, "DNT_20200227": {"id": "district0x", "symbol": "dnt", "name": "district0x", "localization": {"en": "district0x", "de": "district0x", "es": "district0x", "fr": "district0x", "it": "district0x", "pl": "district0x", "ro": "district0x", "hu": "district0x", "nl": "district0x", "pt": "district0x", "sv": "district0x", "vi": "district0x", "tr": "district0x", "ru": "district0x", "ja": "district0x", "zh": "district0x", "zh-tw": "district0x", "ko": "\ub514\uc2a4\ud2b8\ub9ad\ud2b80x", "ar": "district0x", "th": "district0x", "id": "district0x"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/849/thumb/district0x.png?1547223762", "small": "https://assets.coingecko.com/coins/images/849/small/district0x.png?1547223762"}, "market_data": {"current_price": {"aed": 0.02937514296651199, "ars": 0.494382960336188, "aud": 0.012107189506008415, "bch": 1.992189558174689e-05, "bdt": 0.6796739084163603, "bhd": 0.0030142911473123772, "bmd": 0.007997588610539614, "bnb": 0.00034990470404562996, "brl": 0.03510787046566704, "btc": 8.037225719137109e-07, "cad": 0.010601395524827426, "chf": 0.007828551577667242, "clp": 6.428463708553712, "cny": 0.05620065468398395, "czk": 0.1849922861311004, "dkk": 0.05512177198283355, "eos": 0.0018255317802127861, "eth": 2.9139155052067536e-05, "eur": 0.0073795989434259895, "gbp": 0.006174298359108786, "hkd": 0.062315450983830324, "huf": 2.4882558506166577, "idr": 110.27820430706893, "ils": 0.027326000812719506, "inr": 0.5749046498738982, "jpy": 0.891881084861611, "krw": 9.653649196150566, "kwd": 0.0024515248295545414, "lkr": 1.4533287921997053, "ltc": 0.00010045770347414911, "mmk": 11.618647712475418, "mxn": 0.15208589588707971, "myr": 0.03350269844841149, "ngn": 2.9071234599311495, "nok": 0.07462247623645035, "nzd": 0.012651601357905091, "php": 0.4073717074963403, "pkr": 1.2344907030712073, "pln": 0.03168307109256429, "rub": 0.5126054579877138, "sar": 0.030002953672439374, "sek": 0.07795148849076468, "sgd": 0.011211331620210227, "thb": 0.2534595782452215, "try": 0.04889017889891883, "twd": 0.24312535816310657, "uah": 0.19572317861070987, "usd": 0.007997588610539614, "vef": 1987.3019374464643, "vnd": 185.35911494287083, "xag": 0.0004279536857301018, "xau": 4.7991129975265e-06, "xdr": 0.005873341102105575, "xlm": 0.10935807226328066, "xrp": 0.02828262329152076, "zar": 0.12047851397312569, "bits": 0.8037225719137109, "link": 0.0018813106292486135, "sats": 80.37225719137109}, "market_cap": {"aed": 22135782.424071662, "ars": 372510293.92292327, "aud": 9120810.192278422, "bch": 15073.104180291877, "bdt": 512171592.6004025, "bhd": 2271433.813131669, "bmd": 6026621.950468736, "bnb": 263525.6886182417, "brl": 26455707.224521335, "btc": 605.7509844547417, "cad": 7987076.044334242, "chf": 5899243.268923631, "clp": 4844187231.018707, "cny": 42350277.77033387, "czk": 139362010.60479707, "dkk": 41533043.72736254, "eos": 1380568.093030335, "eth": 21978.85821587447, "eur": 5560324.13029512, "gbp": 4653655.017578802, "hkd": 46952272.584553264, "huf": 1875021442.3701842, "idr": 83093005313.45386, "ils": 20591641.34792258, "inr": 433222206.22733593, "jpy": 672552911.6663263, "krw": 7274554491.459481, "kwd": 1847358.5063430327, "lkr": 1095163008.1067607, "ltc": 75612.37189647286, "mmk": 8755288718.713316, "mxn": 114537456.824146, "myr": 25246122.012708563, "ngn": 2190677078.9953856, "nok": 56229588.12226342, "nzd": 9528945.084008068, "php": 306938790.90226275, "pkr": 930256497.4364902, "pln": 23880863.12929329, "rub": 386276345.96853757, "sar": 22608872.247183457, "sek": 58747311.89464488, "sgd": 8446618.021301417, "thb": 190891243.4159877, "try": 36841372.77852018, "twd": 183208300.8483836, "uah": 147488156.97726047, "usd": 6026621.950468736, "vef": 1497541079149.831, "vnd": 139661440266.93552, "xag": 323360.3895376435, "xau": 3622.240857109727, "xdr": 4425884.867582782, "xlm": 82374335.88350944, "xrp": 21327280.327371217, "zar": 90786509.58423887, "bits": 605750984.4547417, "link": 1417909.3701686747, "sats": 60575098445.47417}, "total_volume": {"aed": 345952.20328714594, "ars": 5822367.386974267, "aud": 142586.8425557477, "bch": 234.6209405012525, "bdt": 8004546.102174959, "bhd": 35499.42429047787, "bmd": 94187.91268367713, "bnb": 4120.841333202062, "brl": 413466.75841419434, "btc": 9.465472045604672, "cad": 124853.0481677525, "chf": 92197.15696119485, "clp": 75708267.57374197, "cny": 661877.3000107356, "czk": 2178661.3617894338, "dkk": 649171.256401795, "eos": 21499.35890542865, "eth": 343.1729644237209, "eur": 86909.82429478396, "gbp": 72714.95235005235, "hkd": 733891.4942904215, "huf": 29304286.1048985, "idr": 1298750708.994782, "ils": 321819.37629933393, "inr": 6770674.462100039, "jpy": 10503718.287592776, "krw": 113691402.72701898, "kwd": 28871.703438665627, "lkr": 17115909.813113507, "ltc": 1183.0942880403386, "mmk": 136833266.8178093, "mxn": 1791121.5217238541, "myr": 394562.5850231919, "ngn": 34237306.260516636, "nok": 878831.8102203968, "nzd": 148998.40214795122, "php": 4797632.471980438, "pkr": 14538645.110658776, "pln": 373132.7627535762, "rub": 6036974.451836113, "sar": 353345.95443281496, "sek": 918037.7172508029, "sgd": 132036.2893285731, "thb": 2985003.328771096, "try": 575781.5418452765, "twd": 2863296.81620237, "uah": 2305039.5006393627, "usd": 94187.91268367713, "vef": 23404532350.36812, "vnd": 2182981518.99874, "xag": 5040.02723159387, "xau": 56.519340764094075, "xdr": 69170.56700785295, "xlm": 1287914.278063142, "xrp": 333085.556505932, "zar": 1418880.1533759173, "bits": 9465472.045604672, "link": 22156.268583885845, "sats": 946547204.5604672}}, "community_data": {"facebook_likes": null, "twitter_followers": 59158, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6116, "reddit_accounts_active_48h": "334.25"}, "developer_data": {"forks": 17, "stars": 74, "subscribers": 12, "total_issues": 72, "closed_issues": 53, "pull_requests_merged": 74, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 729290, "bing_matches": null}}, "DNT_20200304": {"id": "district0x", "symbol": "dnt", "name": "district0x", "localization": {"en": "district0x", "de": "district0x", "es": "district0x", "fr": "district0x", "it": "district0x", "pl": "district0x", "ro": "district0x", "hu": "district0x", "nl": "district0x", "pt": "district0x", "sv": "district0x", "vi": "district0x", "tr": "district0x", "ru": "district0x", "ja": "district0x", "zh": "district0x", "zh-tw": "district0x", "ko": "\ub514\uc2a4\ud2b8\ub9ad\ud2b80x", "ar": "district0x", "th": "district0x", "id": "district0x"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/849/thumb/district0x.png?1547223762", "small": "https://assets.coingecko.com/coins/images/849/small/district0x.png?1547223762"}, "market_data": {"current_price": {"aed": 0.022429285584431417, "ars": 0.3793537066886461, "aud": 0.009382128024908967, "bch": 1.9911982867450818e-05, "bdt": 0.5178423687512048, "bhd": 0.002301893214474526, "bmd": 0.0061065302435152295, "bnb": 0.0003154718151332381, "brl": 0.027314839531876783, "btc": 7.139712081055089e-07, "cad": 0.008179391934676488, "chf": 0.005890542268802096, "clp": 4.99452357513891, "cny": 0.042696248809634144, "czk": 0.14096070152920812, "dkk": 0.041376627624010544, "eos": 0.0017377957889013384, "eth": 2.7957299852191965e-05, "eur": 0.0055373955182893685, "gbp": 0.004762727198127268, "hkd": 0.0476010139012256, "huf": 1.873301113291279, "idr": 85.34789552236936, "ils": 0.02132385094709911, "inr": 0.4407388203257122, "jpy": 0.6600245203210992, "krw": 7.329759849245006, "kwd": 0.0018684883369712777, "lkr": 1.1105679942770716, "ltc": 0.00010506249111203746, "mmk": 8.771430850343842, "mxn": 0.11976736545300368, "myr": 0.025729865181051435, "ngn": 2.231936804004816, "nok": 0.0573800114331909, "nzd": 0.009772353627060321, "php": 0.31121271270156076, "pkr": 0.9422376165743976, "pln": 0.02399634337552229, "rub": 0.407509568098311, "sar": 0.022909967219079994, "sek": 0.05868009172203524, "sgd": 0.008508411784197088, "thb": 0.19251866153680813, "try": 0.03812123635119254, "twd": 0.1840447150093054, "uah": 0.1502271657647746, "usd": 0.0061065302435152295, "vef": 1517.3973024844624, "vnd": 141.4805677425325, "xag": 0.000366209534683145, "xau": 3.8491902736973894e-06, "xdr": 0.004451361327540674, "xlm": 0.10711136381645484, "xrp": 0.02647981184959939, "zar": 0.09568627565076157, "bits": 0.7139712081055088, "link": 0.0014973861084601253, "sats": 71.39712081055089}, "market_cap": {"aed": 16907885.220945165, "ars": 285968490.02109265, "aud": 7072536.625218413, "bch": 14936.17148275847, "bdt": 390365502.29959893, "bhd": 1735237.893097359, "bmd": 4603290.286127191, "bnb": 236917.11436071745, "brl": 20590766.02752237, "btc": 536.78006384404, "cad": 6165877.17375306, "chf": 4440471.908706869, "clp": 3765025462.976373, "cny": 32185745.35157271, "czk": 106260511.64884534, "dkk": 31190974.320740607, "eos": 1307206.9080055268, "eth": 20980.528465577278, "eur": 4174259.02816985, "gbp": 3590290.225762037, "hkd": 35883108.109390065, "huf": 1412151987.1227183, "idr": 64337868270.89527, "ils": 16074574.596899014, "inr": 332242476.40123004, "jpy": 497546780.5512546, "krw": 5525398379.792758, "kwd": 1408523.9683297668, "lkr": 837180306.3725643, "ltc": 78866.90821244262, "mmk": 6612174314.8169155, "mxn": 90284323.17523222, "myr": 19395963.620596904, "ngn": 1682502599.5794883, "nok": 43254817.17359415, "nzd": 7366700.684372779, "php": 234601713.27567288, "pkr": 710287691.1494242, "pln": 18089181.574171115, "rub": 307193244.20327187, "sar": 17270237.819107953, "sek": 44234857.67551063, "sgd": 6413902.454369586, "thb": 145126487.4175819, "try": 28736960.269206207, "twd": 138738565.93358734, "uah": 113245857.35275453, "usd": 4603290.286127191, "vef": 1143860749750.6423, "vnd": 106652402787.42154, "xag": 276060.0089525902, "xau": 2901.637998957414, "xdr": 3355573.0573626976, "xlm": 80560429.07593524, "xrp": 19893945.26970961, "zar": 72131257.13846987, "bits": 536780063.84404, "link": 1125769.5013096747, "sats": 53678006384.404}, "total_volume": {"aed": 776139.0442042743, "ars": 13127088.788286889, "aud": 324657.50415650505, "bch": 689.0307447724682, "bdt": 17919326.03551207, "bhd": 79654.30698259368, "bmd": 211309.29599898585, "bnb": 10916.531074928835, "brl": 945197.891705448, "btc": 24.70613381609534, "cad": 283038.23652584205, "chf": 203835.28619950174, "clp": 172829613.28713655, "cny": 1477453.4666953096, "czk": 4877779.265122189, "dkk": 1431789.5278299302, "eos": 60134.379115325224, "eth": 967.4294753674221, "eur": 191615.05830258445, "gbp": 164808.57232144903, "hkd": 1647177.0932416958, "huf": 64823381.4716731, "idr": 2953363530.292632, "ils": 737886.7788960591, "inr": 15251248.438726822, "jpy": 22839372.14250726, "krw": 253637717.6270235, "kwd": 64656.84100836171, "lkr": 38429899.08694922, "ltc": 3635.563920502996, "mmk": 303525046.7903984, "mxn": 4144408.7998095164, "myr": 890351.7186917275, "ngn": 77233547.68762933, "nok": 1985567.7998544723, "nzd": 338160.8020987283, "php": 10769149.84523935, "pkr": 32605024.372643437, "pln": 830365.2357435339, "rub": 14101389.252783796, "sar": 792772.4667481316, "sek": 2030555.5489726544, "sgd": 294423.5813942674, "thb": 6661881.823841081, "try": 1319140.5421328696, "twd": 6368650.872113431, "uah": 5198434.359903175, "usd": 211309.29599898585, "vef": 52507748746.39369, "vnd": 4895768623.918517, "xag": 12672.250177453587, "xau": 133.19670164000073, "xdr": 154034.12262775688, "xlm": 3706462.7503616936, "xrp": 916302.7409986978, "zar": 3311111.013656098, "bits": 24706133.816095337, "link": 51815.28491623871, "sats": 2470613381.609534}}, "community_data": {"facebook_likes": null, "twitter_followers": 59099, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6113, "reddit_accounts_active_48h": "162.083333333333"}, "developer_data": {"forks": 17, "stars": 74, "subscribers": 12, "total_issues": 72, "closed_issues": 53, "pull_requests_merged": 74, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 762988, "bing_matches": null}}, "POA_20200312": {"id": "poa-network", "symbol": "poa", "name": "POA Network", "localization": {"en": "POA Network", "de": "POA Network", "es": "POA Network", "fr": "POA Network", "it": "POA Network", "pl": "POA Network", "ro": "POA Network", "hu": "POA Network", "nl": "POA Network", "pt": "POA Network", "sv": "POA Network", "vi": "POA Network", "tr": "POA Network", "ru": "POA Network", "ja": "\u30dd\u30a2\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "POA Network", "zh-tw": "POA Network", "ko": "POA \ub124\ud2b8\uc6cc\ud06c", "ar": "POA Network", "th": "POA Network", "id": "POA Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3157/thumb/poa-network.png?1548331565", "small": "https://assets.coingecko.com/coins/images/3157/small/poa-network.png?1548331565"}, "market_data": {"current_price": {"aed": 0.046110120875190494, "ars": 0.7767498254229394, "aud": 0.018987339307656715, "bch": 4.61000883838217e-05, "bdt": 1.066708406954069, "bhd": 0.004732937830573353, "bmd": 0.012553745565345992, "bnb": 0.0007397378979589245, "brl": 0.05809706482826111, "btc": 1.560523685834201e-06, "cad": 0.01709859062611383, "chf": 0.011641841487479267, "clp": 10.376926034100016, "cny": 0.08702381963353498, "czk": 0.2803791070263608, "dkk": 0.08235790625053503, "eos": 0.00413472929182979, "eth": 6.316328890493999e-05, "eur": 0.011023180352273449, "gbp": 0.009583529364585128, "hkd": 0.09754699685368624, "huf": 3.7020109754380757, "idr": 177.37849947043262, "ils": 0.04375783769239264, "inr": 0.9290238215541244, "jpy": 1.3039971981074336, "krw": 14.922637315865552, "kwd": 0.0038343156155147633, "lkr": 2.285201251623512, "ltc": 0.0002452086865886912, "mmk": 17.11469391813031, "mxn": 0.2646245455079641, "myr": 0.05238175874596271, "ngn": 4.600947749699306, "nok": 0.11905205260320101, "nzd": 0.019834704579572048, "php": 0.628921851267432, "pkr": 1.9389410921698647, "pln": 0.04754915672934605, "rub": 0.9061820806380485, "sar": 0.0471173455431349, "sek": 0.1177855177668589, "sgd": 0.01728392157189497, "thb": 0.394187573090627, "try": 0.07693186357355339, "twd": 0.37554425662644303, "uah": 0.3136732220376007, "usd": 0.012553745565345992, "vef": 3119.4506368262428, "vnd": 289.90955838891733, "xag": 0.0007170709509922085, "xau": 7.382732229524328e-06, "xdr": 0.009046279269370593, "xlm": 0.2489735354548884, "xrp": 0.06148413341406588, "zar": 0.2018632494986091, "bits": 1.560523685834201, "link": 0.0031041216964131754, "sats": 156.0523685834201}, "market_cap": {"aed": 10160415.47190203, "ars": 171251657.4695313, "aud": 4179596.0517030936, "bch": 10188.819908467322, "bdt": 235050361.96631563, "bhd": 1042908.0177749452, "bmd": 2766231.539876353, "bnb": 161345.4173738436, "brl": 12801751.657752953, "btc": 343.5544737635055, "cad": 3767731.8377309046, "chf": 2565967.441315466, "clp": 2286567107.043518, "cny": 19175793.65757687, "czk": 61815454.79427009, "dkk": 18151978.169890173, "eos": 913013.6117590226, "eth": 13787.970522086967, "eur": 2429647.5510303597, "gbp": 2110944.4828581237, "hkd": 21493204.13010831, "huf": 815913497.4289094, "idr": 39097734013.33071, "ils": 9642087.30465463, "inr": 204711413.26725248, "jpy": 287383794.67775446, "krw": 3288219423.1523314, "kwd": 844895.631687514, "lkr": 503546590.48178923, "ltc": 53683.520383678435, "mmk": 3771241488.4646587, "mxn": 58212070.30478625, "myr": 11542377.723288095, "ngn": 1013823859.3646834, "nok": 26324004.281076748, "nzd": 4367832.5755286, "php": 138611605.2328641, "pkr": 427247786.3442135, "pln": 10476875.126295436, "rub": 199222750.69770202, "sar": 10382358.527040936, "sek": 25949899.127623886, "sgd": 3808932.0902858237, "thb": 86839977.54978508, "try": 16966681.14983163, "twd": 82751586.91818349, "uah": 69118236.90375505, "usd": 2766231.539876353, "vef": 687374353236.5658, "vnd": 63914206104.70789, "xag": 158191.26592903165, "xau": 1627.6229757478482, "xdr": 1993357.5125610596, "xlm": 54417095.177662194, "xrp": 13530533.063522581, "zar": 44324157.83290065, "bits": 343554473.76350546, "link": 683382.7038895792, "sats": 34355447376.350548}, "total_volume": {"aed": 513732.4326520366, "ars": 8654099.572991477, "aud": 211546.00827256718, "bch": 513.620656406418, "bdt": 11884651.231303643, "bhd": 52731.66973196004, "bmd": 139866.6090170658, "bnb": 8241.733975757494, "brl": 647284.064271982, "btc": 17.3864569018312, "cad": 190502.6573461239, "chf": 129706.69853806625, "clp": 115613738.4540402, "cny": 969569.3203672023, "czk": 3123822.6659032376, "dkk": 917584.3984607846, "eos": 46066.77443329463, "eth": 703.7290175679714, "eur": 122813.9321790962, "gbp": 106774.16932362801, "hkd": 1086812.5053757576, "huf": 41245675.960472845, "idr": 1976249168.3716905, "ils": 487524.64705424564, "inr": 10350648.81158198, "jpy": 14528386.394137902, "krw": 166259437.7189864, "kwd": 42719.738125300515, "lkr": 25460397.32304596, "ltc": 2731.9740802587676, "mmk": 190682070.95910755, "mxn": 2948294.407451699, "myr": 583607.4127846091, "ngn": 51261112.20475462, "nok": 1326409.4614197433, "nzd": 220986.8645146106, "php": 7007085.352783852, "pkr": 21602565.88234993, "pln": 529765.3420436623, "rub": 10096159.278609686, "sar": 524954.3502933029, "sek": 1312298.4591026215, "sgd": 192567.5080950421, "thb": 4391811.103536035, "try": 857130.5533783837, "twd": 4184097.999816971, "uah": 3494766.5362092433, "usd": 139866.6090170658, "vef": 34755123902.89456, "vnd": 3230005470.67208, "xag": 7989.191896383523, "xau": 82.25415409684628, "xdr": 100788.4379241338, "xlm": 2773919.859837919, "xrp": 685020.8333612386, "zar": 2249044.1633989112, "bits": 17386456.9018312, "link": 34584.33766987429, "sats": 1738645690.18312}}, "community_data": {"facebook_likes": null, "twitter_followers": 17432, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 48, "stars": 58, "subscribers": 9, "total_issues": 72, "closed_issues": 63, "pull_requests_merged": 133, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 535987, "bing_matches": null}}, "NEBL_20200315": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.9047637859728574, "ars": 32.44782636633328, "aud": 0.8011509496635617, "bch": 0.0019382303278021667, "bdt": 43.98456400923032, "bhd": 0.1955810542776508, "bmd": 0.5185570581435412, "bnb": 0.03133810419146623, "brl": 2.4969040906669675, "btc": 6.532439450463386e-05, "cad": 0.7144850270930904, "chf": 0.4868752961192038, "clp": 436.52026072490804, "cny": 3.609468258913938, "czk": 11.872000856255696, "dkk": 3.440357986783337, "eos": 0.1686346191120204, "eth": 0.0026685755063701406, "eur": 0.46042421914035947, "gbp": 0.4046191827711842, "hkd": 4.0282808669235655, "huf": 155.0761725111512, "idr": 7486.337465379882, "ils": 1.8411835050738745, "inr": 38.46402164350299, "jpy": 54.18845325808539, "krw": 617.8347944797531, "kwd": 0.15894396100569333, "lkr": 95.26159748280459, "ltc": 0.01068451422067361, "mmk": 722.5536878002205, "mxn": 11.115322397012607, "myr": 2.1984221294424846, "ngn": 189.27332622239257, "nok": 5.0325993606254205, "nzd": 0.8286946263639161, "php": 26.213084179894807, "pkr": 82.6242639685626, "pln": 1.9925399392048142, "rub": 37.93244880320005, "sar": 1.9463940651576757, "sek": 4.944462291680991, "sgd": 0.7241939708927109, "thb": 16.343622080039047, "try": 3.221224589481868, "twd": 15.595603523666998, "uah": 13.407677507638386, "usd": 0.5185570581435412, "vef": 128855.02074551779, "vnd": 12086.989019924144, "xag": 0.030867544473923154, "xau": 0.0003154797430333675, "xdr": 0.3720698747885727, "xlm": 10.277965301107166, "xrp": 2.4686880675543175, "zar": 8.435295066832852, "bits": 65.32439450463386, "link": 0.13563191582014536, "sats": 6532.4394504633865}, "market_cap": {"aed": 30574561.146059584, "ars": 520832138.843402, "aud": 12856914.267751368, "bch": 31164.662818840272, "bdt": 706023892.1416322, "bhd": 3135124.4229076863, "bmd": 8323685.38224426, "bnb": 505013.6133418858, "brl": 40077704.4232825, "btc": 1049.4521299632318, "cad": 11467250.02212956, "chf": 7819353.284934077, "clp": 7006861166.362905, "cny": 57937844.47164938, "czk": 190612395.25339407, "dkk": 55243467.51341692, "eos": 2719152.58201317, "eth": 42981.32577259156, "eur": 7393771.575025309, "gbp": 6494647.080035292, "hkd": 64661301.33915716, "huf": 2490072100.525276, "idr": 120204729502.6937, "ils": 29553994.081342623, "inr": 617410195.596506, "jpy": 870706045.7864003, "krw": 9917671274.446693, "kwd": 2551850.4934322997, "lkr": 1529103796.7848186, "ltc": 171905.89738977535, "mmk": 11598163547.442282, "mxn": 178371167.34599605, "myr": 35288255.854339145, "ngn": 3038145164.519155, "nok": 80751401.36730444, "nzd": 13295214.568924243, "php": 421910007.4313782, "pkr": 1326254010.8429942, "pln": 31991668.582386676, "rub": 608877585.7111683, "sar": 31243627.300769757, "sek": 79401382.83515827, "sgd": 11625233.570684489, "thb": 262310074.08831912, "try": 51703129.43873087, "twd": 250447207.62365618, "uah": 215215061.73247918, "usd": 8323685.38224426, "vef": 2068332955389.7583, "vnd": 194090716195.22906, "xag": 495546.697099782, "xau": 5064.712844534165, "xdr": 5972327.498614077, "xlm": 165133196.05103442, "xrp": 39739412.77917312, "zar": 135196252.88672185, "bits": 1049452129.9632318, "link": 2178959.3922427907, "sats": 104945212996.32318}, "total_volume": {"aed": 453781.02735250356, "ars": 7730201.556908529, "aud": 190862.039524278, "bch": 461.7539223881381, "bdt": 10478653.988880962, "bhd": 46594.21414580738, "bmd": 123538.3391463855, "bnb": 7465.827112005995, "brl": 594849.4568237612, "btc": 15.56254432585868, "cad": 170215.20044108186, "chf": 115990.640777898, "clp": 103994318.78675698, "cny": 859900.9634623319, "czk": 2828323.797919098, "dkk": 819613.0109149292, "eos": 40174.63544371543, "eth": 635.747562908373, "eur": 109689.07363637991, "gbp": 96394.37173080251, "hkd": 959676.7030739094, "huf": 36944541.57425221, "idr": 1783506139.2730768, "ils": 438633.9915897645, "inr": 9163468.660017056, "jpy": 12909575.544842653, "krw": 147189751.2110409, "kwd": 37865.98340843696, "lkr": 22694628.0117926, "ltc": 2545.423151954441, "mmk": 172137436.2437592, "mxn": 2648056.653436684, "myr": 523740.66527276195, "ngn": 45091493.788430706, "nok": 1198940.3226457068, "nzd": 197423.9019463779, "php": 6244868.9736900665, "pkr": 19683975.33804911, "pln": 474692.3620198121, "rub": 9036829.5085581, "sar": 463698.8087575137, "sek": 1177943.0052943511, "sgd": 172528.2087649194, "thb": 3893619.6040462013, "try": 767407.8089434329, "twd": 3715415.549827542, "uah": 3194175.4240774396, "usd": 123538.3391463855, "vef": 30697750620.854378, "vnd": 2879541460.968203, "xag": 7353.723409893484, "xau": 75.15825476987797, "xdr": 88639.99372092314, "xlm": 2448569.0497563113, "xrp": 588127.4180858603, "zar": 2009580.8675267738, "bits": 15562544.325858679, "link": 32312.242891167014, "sats": 1556254432.585868}}, "community_data": {"facebook_likes": null, "twitter_followers": 39650, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6027, "reddit_accounts_active_48h": "54.25"}, "developer_data": {"forks": 41, "stars": 104, "subscribers": 34, "total_issues": 142, "closed_issues": 114, "pull_requests_merged": 111, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 856581, "bing_matches": null}}, "FUN_20200328": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.007498159513018131, "ars": 0.12998483701144953, "aud": 0.0034155982344019923, "bch": 8.957492906864216e-06, "bdt": 0.17370116870084026, "bhd": 0.0007717417193866793, "bmd": 0.002041315341668882, "bnb": 0.00016390138384083215, "brl": 0.010409279321772123, "btc": 3.0209245871772654e-07, "cad": 0.0029482819545490766, "chf": 0.0019997562026278456, "clp": 1.7257299576748637, "cny": 0.0144180143897415, "czk": 0.0523621901335322, "dkk": 0.014101049150063856, "eos": 0.0008681729395663492, "eth": 1.4691329140670318e-05, "eur": 0.0018886372020041002, "gbp": 0.0017313395657211224, "hkd": 0.015826624041260094, "huf": 0.6705847581412371, "idr": 33.528844341464, "ils": 0.007354930622069945, "inr": 0.15506035466851004, "jpy": 0.22670797151691055, "krw": 2.5187177606249844, "kwd": 0.0006383111420784915, "lkr": 0.3830142225910539, "ltc": 5.0290185226196544e-05, "mmk": 2.872861494992273, "mxn": 0.050583794166554924, "myr": 0.009044047621263993, "ngn": 0.7432897171384785, "nok": 0.022530160731226788, "nzd": 0.003501772361550536, "php": 0.10368348907856337, "pkr": 0.32425350094064764, "pln": 0.008697036261072322, "rub": 0.15983131688505836, "sar": 0.007668170461249035, "sek": 0.020645771506448696, "sgd": 0.0029532219376759154, "thb": 0.06689390374648918, "try": 0.013139742722788447, "twd": 0.061566066622102955, "uah": 0.05681166763823671, "usd": 0.002041315341668882, "vef": 507.2416363216828, "vnd": 48.401565742912126, "xag": 0.00013962647969898695, "xau": 1.2489175523398573e-06, "xdr": 0.00151423955518861, "xlm": 0.05047552291671284, "xrp": 0.012573839568758948, "zar": 0.03575098449938631, "bits": 0.30209245871772655, "link": 0.0008819626637080485, "sats": 30.209245871772655}, "market_cap": {"aed": 45103922.973397374, "ars": 781905704.6591293, "aud": 20557661.301062588, "bch": 53918.09418439981, "bdt": 1044870293.8193737, "bhd": 4642283.083754105, "bmd": 12279190.616736712, "bnb": 984900.9961521331, "brl": 62618960.469110675, "btc": 1814.8419698452549, "cad": 17726571.11246778, "chf": 12031445.666853437, "clp": 10380839633.645739, "cny": 86729151.2450732, "czk": 315014039.83894837, "dkk": 84814800.86954263, "eos": 5217194.1271788655, "eth": 88038.7800969172, "eur": 11360866.78808283, "gbp": 10413600.907145288, "hkd": 95205292.33994722, "huf": 4033694397.217878, "idr": 201719406118.5478, "ils": 44242353.56377401, "inr": 932739598.4379382, "jpy": 1364015470.874273, "krw": 15150924926.272938, "kwd": 3839653.7890911005, "lkr": 2303957919.736085, "ltc": 301741.9464150714, "mmk": 17281217258.502083, "mxn": 304303638.61540616, "myr": 54402954.02745198, "ngn": 4471134828.557107, "nok": 135555302.1076938, "nzd": 21063527.116900317, "php": 623653129.122978, "pkr": 1950492638.212021, "pln": 52312593.73362123, "rub": 961438522.7473754, "sar": 46126595.363912165, "sek": 124147553.36983624, "sgd": 17758902.221361656, "thb": 402401355.7010787, "try": 79244174.13759147, "twd": 370352655.9122048, "uah": 341741073.4856254, "usd": 12279190.616736712, "vef": 3051227124980.72, "vnd": 291146345800.8457, "xag": 839929.1780399267, "xau": 7502.585466826144, "xdr": 9108654.482732827, "xlm": 303412370.76985776, "xrp": 75710852.09895767, "zar": 215480160.89793387, "bits": 1814841969.845255, "link": 5298453.542097506, "sats": 181484196984.52548}, "total_volume": {"aed": 1396712.5440327919, "ars": 24212802.09800072, "aud": 636237.3181155854, "bch": 1668.5484863826414, "bdt": 32356020.27622977, "bhd": 143755.45603549544, "bmd": 380244.07710791496, "bnb": 30530.574656003624, "brl": 1938978.6223963895, "btc": 56.271985920838425, "cad": 549188.4217873474, "chf": 372502.68794207496, "clp": 321458709.3423219, "cny": 2685701.941020917, "czk": 9753717.25095463, "dkk": 2626659.5419479846, "eos": 161718.09001620673, "eth": 2736.6133867468598, "eur": 351804.1016047056, "gbp": 322503.6337550013, "hkd": 2948089.3664292307, "huf": 124912539.12469238, "idr": 6245553645.176557, "ils": 1370032.718362517, "inr": 28883720.341194343, "jpy": 42229812.14258575, "krw": 469171759.4211431, "kwd": 118900.80193533632, "lkr": 71345610.65380196, "ltc": 9367.756504140865, "mmk": 535139547.2926377, "mxn": 9422448.230734138, "myr": 1684671.3836266191, "ngn": 138455586.3309477, "nok": 4196784.298566226, "nzd": 652289.3218306944, "php": 19313543.484063014, "pkr": 60400013.01973584, "pln": 1620032.171982734, "rub": 29772426.798210926, "sar": 1428381.1719947266, "sek": 3845771.4848859813, "sgd": 550108.6124539486, "thb": 12460598.406826356, "try": 2447593.0999359414, "twd": 11468160.60508659, "uah": 10582539.448511617, "usd": 380244.07710791496, "vef": 94485954196.65096, "vnd": 9015955703.073845, "xag": 26008.78993520066, "xau": 232.64093125616486, "xdr": 282063.5354223429, "xlm": 9402280.106469776, "xrp": 2342180.0272254394, "zar": 6659480.693244891, "bits": 56271985.92083842, "link": 164286.7577878144, "sats": 5627198592.083842}}, "community_data": {"facebook_likes": null, "twitter_followers": 34779, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 16978, "reddit_accounts_active_48h": "1419.33333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 317174, "bing_matches": null}}, "AOA_20200401": {"id": "aurora", "symbol": "aoa", "name": "Aurora Chain", "localization": {"en": "Aurora Chain", "de": "Aurora Chain", "es": "Aurora Chain", "fr": "Aurora Chain", "it": "Aurora Chain", "pl": "Aurora Chain", "ro": "Aurora Chain", "hu": "Aurora Chain", "nl": "Aurora Chain", "pt": "Aurora Chain", "sv": "Aurora Chain", "vi": "Aurora Chain", "tr": "Aurora Chain", "ru": "Aurora Chain", "ja": " \u30aa\u30fc\u30ed\u30e9\u30b3\u30a4\u30f3", "zh": "\u6781\u5149\u94fe", "zh-tw": "\u6975\u5149\u93c8", "ko": "Aurora Chain", "ar": "Aurora Chain", "th": "Aurora Chain", "id": "Aurora Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4755/thumb/aurora-logo.png?1547040076", "small": "https://assets.coingecko.com/coins/images/4755/small/aurora-logo.png?1547040076"}, "market_data": {"current_price": {"aed": 0.0043501596593022345, "ars": 0.0760032702734061, "aud": 0.001921034295504551, "bch": 5.511093870572162e-06, "bdt": 0.1004958712821642, "bhd": 0.0004461323826365153, "bmd": 0.0011843614645527466, "bnb": 9.686942237775207e-05, "brl": 0.006040835649951289, "btc": 1.8948301162963613e-07, "cad": 0.0016608892998155444, "chf": 0.0011266416085777685, "clp": 0.9837306324575122, "cny": 0.00840470269705211, "czk": 0.02913612108102277, "dkk": 0.007938419588457694, "eos": 0.0005343210570160148, "eth": 9.008070962375217e-06, "eur": 0.0010604476463239158, "gbp": 0.0009509119762747551, "hkd": 0.009186085173290788, "huf": 0.379090417574043, "idr": 18.973428025122296, "ils": 0.0042229000199360545, "inr": 0.08868024901985146, "jpy": 0.1278104005382691, "krw": 1.436322522521699, "kwd": 0.00037100122877114724, "lkr": 0.2229884533848087, "ltc": 3.0381406462171554e-05, "mmk": 1.6595346425690891, "mxn": 0.027703397832991805, "myr": 0.00512544267399846, "ngn": 0.45177960759733776, "nok": 0.012421227731789842, "nzd": 0.0019608643715574702, "php": 0.06041903825556158, "pkr": 0.191232195491708, "pln": 0.0048245082694702525, "rub": 0.09329511346648131, "sar": 0.004448150173794949, "sek": 0.011719730436335243, "sgd": 0.0016910312990884113, "thb": 0.0384359404857546, "try": 0.007645053253687982, "twd": 0.03573810719287913, "uah": 0.03316141157495965, "usd": 0.0011843614645527466, "vef": 294.299187887809, "vnd": 27.57058583838678, "xag": 8.179389772035599e-05, "xau": 7.295192877059099e-07, "xdr": 0.0008687990115758484, "xlm": 0.0295894516876211, "xrp": 0.006686053535950506, "zar": 0.020842363444162584, "bits": 0.18948301162963613, "link": 0.0005539556855501821, "sats": 18.948301162963613}, "market_cap": {"aed": 18894077.155255523, "ars": 330105505.32938534, "aud": 8343640.932704765, "bch": 24015.168334493865, "bdt": 436484380.91911316, "bhd": 1937689.7215639998, "bmd": 5144044.964676154, "bnb": 421621.628908808, "brl": 26237201.342330724, "btc": 825.505039289594, "cad": 7213751.456213611, "chf": 4893349.933322668, "clp": 4272643747.6600165, "cny": 36504200.68732792, "czk": 126547106.96250898, "dkk": 34478990.18473492, "eos": 2327327.550627472, "eth": 39261.825646314755, "eur": 4605849.260246914, "gbp": 4130102.26168884, "hkd": 39897984.35277301, "huf": 1646505912.2935486, "idr": 82407415148.49335, "ils": 18341349.52380106, "inr": 385165510.7750923, "jpy": 555119756.0876437, "krw": 6238389090.461363, "kwd": 1611372.0851848046, "lkr": 968507221.1026541, "ltc": 132166.00547267075, "mmk": 7207867764.455595, "mxn": 120324350.62469509, "myr": 22261368.989132546, "ngn": 1962217351.0027719, "nok": 53949200.37603419, "nzd": 8516635.164866759, "php": 262418407.56484404, "pkr": 830580056.6337849, "pln": 20954318.60405798, "rub": 405209281.979953, "sar": 19319680.003497947, "sek": 50902382.54345645, "sgd": 7344667.400564618, "thb": 166939073.95323947, "try": 33204810.24698462, "twd": 155221556.80910277, "uah": 144030177.72799835, "usd": 5144044.964676154, "vef": 1278231604854.0637, "vnd": 119747507412.09148, "xag": 355255.9757324789, "xau": 3168.52593644193, "xdr": 3773460.4802428777, "xlm": 128817263.81239638, "xrp": 29141938.712064616, "zar": 90524774.68724714, "bits": 825505039.289594, "link": 2413373.135838812, "sats": 82550503928.9594}, "total_volume": {"aed": 3960938.4661762626, "ars": 69203040.8900929, "aud": 1749153.8775218867, "bch": 5018.000582111713, "bdt": 91504219.02383028, "bhd": 406215.6458127065, "bmd": 1078393.266043089, "bnb": 88202.23884698942, "brl": 5500344.85345278, "btc": 172.5294260972332, "cad": 1512284.7966355262, "chf": 1025837.7702224791, "clp": 895713446.7753906, "cny": 7652709.973148177, "czk": 26529229.219946235, "dkk": 7228146.544307014, "eos": 486513.82794583816, "eth": 8202.09315872341, "eur": 965566.3705833311, "gbp": 865831.1693733361, "hkd": 8364179.930420108, "huf": 345172116.5950718, "idr": 17275821299.85273, "ils": 3845065.109739945, "inr": 80745774.18824235, "jpy": 116374839.43534791, "krw": 1307810649.4610968, "kwd": 337806.6905879971, "lkr": 203037040.40754986, "ltc": 27663.095365987956, "mmk": 1511051344.4369395, "mxn": 25224695.807620607, "myr": 4666854.698128067, "ngn": 411357597.4481231, "nok": 11309865.056280108, "nzd": 1785420.2430589255, "php": 55013174.563394144, "pkr": 174122105.48978826, "pln": 4392845.7531591775, "rub": 84947733.5493793, "sar": 4050161.4898288823, "sek": 10671132.724802779, "sgd": 1539729.9052563224, "thb": 34996967.25570449, "try": 6961028.532308143, "twd": 32540516.802850213, "uah": 30194365.491640147, "usd": 1078393.266043089, "vef": 267967400087.61804, "vnd": 25103766881.006218, "xag": 74475.56438216142, "xau": 664.2471161519012, "xdr": 791065.0858453026, "xlm": 26941999.044090662, "xrp": 6087833.254770253, "zar": 18977537.735994596, "bits": 172529426.0972332, "link": 504391.69025918137, "sats": 17252942609.72332}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 2662290, "bing_matches": null}}, "MTH_20200404": {"id": "monetha", "symbol": "mth", "name": "Monetha", "localization": {"en": "Monetha", "de": "Monetha", "es": "Monetha", "fr": "Monetha", "it": "Monetha", "pl": "Monetha", "ro": "Monetha", "hu": "Monetha", "nl": "Monetha", "pt": "Monetha", "sv": "Monetha", "vi": "Monetha", "tr": "Monetha", "ru": "Monetha", "ja": "Monetha", "zh": "Monetha", "zh-tw": "Monetha", "ko": "Monetha", "ar": "Monetha", "th": "Monetha", "id": "Monetha"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/902/thumb/mth_logo_coingecko.png?1622448039", "small": "https://assets.coingecko.com/coins/images/902/small/mth_logo_coingecko.png?1622448039"}, "market_data": {"current_price": {"aed": 0.021049413616437647, "ars": 0.3686031286847091, "aud": 0.009329826517851518, "bch": 2.6088183227801463e-05, "bdt": 0.48766031292307443, "bhd": 0.002168464379703821, "bmd": 0.005730538390623341, "bnb": 0.0004555433283664714, "brl": 0.02982802537703353, "btc": 8.91517157818322e-07, "cad": 0.008065331647115002, "chf": 0.005509683441048711, "clp": 4.9093515916961765, "cny": 0.04058596509775069, "czk": 0.14230130810033584, "dkk": 0.038793767868775225, "eos": 0.0025808896880613985, "eth": 4.292661126360851e-05, "eur": 0.005195787470163934, "gbp": 0.0046168655597896005, "hkd": 0.044419981807997236, "huf": 1.8775346817966057, "idr": 91.86282261704818, "ils": 0.020275934197163257, "inr": 0.43171007527437877, "jpy": 0.6159631554224877, "krw": 6.977847376726416, "kwd": 0.001793618402496374, "lkr": 1.0864792600267195, "ltc": 0.00014605203503789747, "mmk": 7.9942053048739545, "mxn": 0.13614090483341731, "myr": 0.02471294680956315, "ngn": 2.2287728064093577, "nok": 0.059693654546986344, "nzd": 0.009618989485042456, "php": 0.2912824698505481, "pkr": 0.9531687426014336, "pln": 0.023705879184410132, "rub": 0.4499834556393238, "sar": 0.021575299394006785, "sek": 0.056763888142088194, "sgd": 0.008145754022889013, "thb": 0.1875605215251015, "try": 0.0379048123703914, "twd": 0.1733201336244031, "uah": 0.1592832887168004, "usd": 0.005730538390623341, "vef": 1423.9679734575288, "vnd": 134.355701445751, "xag": 0.0004105537641948025, "xau": 3.628233076639265e-06, "xdr": 0.004193573611027811, "xlm": 0.14072728722934918, "xrp": 0.03289626929584927, "zar": 0.10225114261157076, "bits": 0.891517157818322, "link": 0.002533490186930423, "sats": 89.1517157818322}, "market_cap": {"aed": 7310500.2017482165, "ars": 128013183.4726202, "aud": 3242787.587585654, "bch": 9058.1617416773, "bdt": 169365326.7958382, "bhd": 753111.6815971163, "bmd": 1990226.5604236652, "bnb": 157905.6688835718, "brl": 10359923.347402774, "btc": 309.84134994509515, "cad": 2800678.6594531494, "chf": 1913101.3007541278, "clp": 1705027094.314953, "cny": 14095580.591544567, "czk": 49365577.614522025, "dkk": 13469654.33829132, "eos": 896587.4907377532, "eth": 14926.789998334538, "eur": 1804024.9438835487, "gbp": 1603173.2696321514, "hkd": 15427858.153357774, "huf": 651700982.8482187, "idr": 31904127854.215477, "ils": 7041869.371755012, "inr": 149933705.98815754, "jpy": 213942389.45258242, "krw": 2423478980.362294, "kwd": 622926.9818266846, "lkr": 377336252.41788405, "ltc": 50772.260523106044, "mmk": 2776402257.9926014, "mxn": 47330284.363864, "myr": 8582852.041827064, "ngn": 774056909.5085312, "nok": 20720567.15682045, "nzd": 3345228.529103803, "php": 101238303.33400649, "pkr": 331037263.65310174, "pln": 8230773.002381859, "rub": 156280084.71769288, "sar": 7493340.325627757, "sek": 19706108.87444129, "sgd": 2828816.4825644176, "thb": 65124683.10591704, "try": 13166144.7878267, "twd": 60194402.32001363, "uah": 55319380.17456077, "usd": 1990226.5604236652, "vef": 494546705525.0903, "vnd": 46638534471.878265, "xag": 142777.8583315135, "xau": 1261.9031506366243, "xdr": 1456435.8555586752, "xlm": 48849359.405345, "xrp": 11424359.359391829, "zar": 35512106.09382629, "bits": 309841349.9450951, "link": 880499.0601775284, "sats": 30984134994.509514}, "total_volume": {"aed": 244696.92198682058, "ars": 4284967.394693859, "aud": 108458.12017330909, "bch": 303.27201756756483, "bdt": 5668992.957325003, "bhd": 25208.139705004545, "bmd": 66616.82510803133, "bnb": 5295.636843577402, "brl": 346747.2363698136, "btc": 10.3637805970151, "cad": 93758.51816179647, "chf": 64049.41266836773, "clp": 57070626.54234919, "cny": 471807.0021451204, "czk": 1654235.7293819652, "dkk": 450972.9231767095, "eos": 30002.534710182073, "eth": 499.0167345719847, "eur": 60400.40945625029, "gbp": 53670.51131653652, "hkd": 516376.98898364883, "huf": 21826116.676255725, "idr": 1067894353.2117828, "ils": 235705.316017864, "inr": 5018578.119812586, "jpy": 7160498.194185826, "krw": 81116643.26104541, "kwd": 20850.59994103808, "lkr": 12630191.775197294, "ltc": 1697.8374825499336, "mmk": 92931682.91898598, "mxn": 1582621.7763721126, "myr": 287285.058278385, "ngn": 25909217.970348172, "nok": 693931.6123459863, "nzd": 111819.60516826132, "php": 3386123.9605025426, "pkr": 11080472.914764807, "pln": 275578.01728437445, "rub": 5231003.986445976, "sar": 250810.28141015978, "sek": 659873.4274253796, "sgd": 94693.41868536262, "thb": 2180368.6857858603, "try": 440638.92156500125, "twd": 2014825.8753924095, "uah": 1851649.2280099606, "usd": 66616.82510803133, "vef": 16553457804.675758, "vnd": 1561868999.9745193, "xag": 4772.638527570201, "xau": 42.17777664889899, "xdr": 48749.792913106605, "xlm": 1635937.9245456024, "xrp": 382415.20586862636, "zar": 1188657.3337676288, "bits": 10363780.597015101, "link": 29451.52116454092, "sats": 1036378059.7015101}}, "community_data": {"facebook_likes": null, "twitter_followers": 19155, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 1926, "reddit_accounts_active_48h": "653.615384615385"}, "developer_data": {"forks": 2, "stars": 0, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1281286, "bing_matches": null}}, "WPR_20200410": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.024096518123818206, "ars": 0.4257897786661108, "aud": 0.010726053487094248, "bch": 2.558048706138979e-05, "bdt": 0.5572283604442876, "bhd": 0.0024821998342513985, "bmd": 0.006560088784661397, "bnb": 0.0004335346447211648, "brl": 0.034677285324598586, "btc": 9.004933751312802e-07, "cad": 0.009259486598484124, "chf": 0.006415878352908187, "clp": 5.580013881864948, "cny": 0.04652611768745403, "czk": 0.16743314605091278, "dkk": 0.04534519018470565, "eos": 0.0023849446260749245, "eth": 3.8548858392803674e-05, "eur": 0.006074484772465621, "gbp": 0.005361324400507514, "hkd": 0.05085151222762048, "huf": 2.210157544413634, "idr": 107.36767096092973, "ils": 0.023523494368478066, "inr": 0.49840274541464924, "jpy": 0.7157604378915687, "krw": 8.030270282191863, "kwd": 0.0020466689797489428, "lkr": 1.2676957765957593, "ltc": 0.0001466728066743096, "mmk": 9.351098704128216, "mxn": 0.16117416534146758, "myr": 0.028624947411870025, "ngn": 2.4910581714206965, "nok": 0.06834764950146201, "nzd": 0.011026190669170113, "php": 0.33215488276543825, "pkr": 1.0952499158224482, "pln": 0.02771417092536276, "rub": 0.49854969140342564, "sar": 0.024670460291588297, "sek": 0.06639120142276851, "sgd": 0.009391324702789527, "thb": 0.21521027266960144, "try": 0.044390152779168274, "twd": 0.19828523704508647, "uah": 0.1785924606017896, "usd": 0.006560088784661397, "vef": 1630.1009949921354, "vnd": 153.85162297579046, "xag": 0.00043126620638443426, "xau": 3.935331661030524e-06, "xdr": 0.004829563603622857, "xlm": 0.13241068198794645, "xrp": 0.03371119916004345, "zar": 0.12254705055962402, "bits": 0.9004933751312801, "link": 0.002597081679915938, "sats": 90.04933751312801}, "market_cap": {"aed": 14636809.304994835, "ars": 258603554.8397621, "aud": 6519476.818887986, "bch": 15558.943160856761, "bdt": 338474015.5921573, "bhd": 1507736.4035682, "bmd": 3984756.97075978, "bnb": 264153.3309863185, "brl": 21063823.823133245, "btc": 547.702689710185, "cad": 5625062.253988161, "chf": 3897251.7076818943, "clp": 3389435673.99321, "cny": 28261091.86371957, "czk": 101702952.16470173, "dkk": 27543094.444186263, "eos": 1448525.5915523574, "eth": 23530.60632082866, "eur": 3689610.006692575, "gbp": 3256466.9239709834, "hkd": 30888042.89669295, "huf": 1342618447.0223134, "idr": 65214104222.08042, "ils": 14288740.78359895, "inr": 302741544.2558329, "jpy": 434824650.1632487, "krw": 4877780855.476755, "kwd": 1243291.9919606994, "lkr": 770029148.7523553, "ltc": 89445.61921341332, "mmk": 5680084061.158203, "mxn": 97909750.43104067, "myr": 17387487.041910317, "ngn": 1513129126.5974965, "nok": 41521992.480009854, "nzd": 6700866.940953898, "php": 201440550.4657997, "pkr": 665281352.1368853, "pln": 16831442.09993958, "rub": 302832763.3124074, "sar": 14985252.39354592, "sek": 40345744.02408216, "sgd": 5704578.079339678, "thb": 130784892.01012707, "try": 26956482.431492858, "twd": 120427329.1550592, "uah": 108481390.36960573, "usd": 3984756.97075978, "vef": 990162864567.4889, "vnd": 93447944615.7944, "xag": 261698.7148168001, "xau": 2394.918634566045, "xdr": 2933594.020901233, "xlm": 80643851.3992332, "xrp": 20514217.356428456, "zar": 74354764.13822618, "bits": 547702689.710185, "link": 1579610.3122686867, "sats": 54770268971.0185}, "total_volume": {"aed": 1094356.8879966168, "ars": 19337481.65305381, "aud": 487129.73610154755, "bch": 1161.7521697572313, "bdt": 25306838.577499878, "bhd": 112730.49791007106, "bmd": 297930.1121628603, "bnb": 19689.219089575057, "brl": 1574888.3659040944, "btc": 40.89641178059491, "cad": 420524.77815653034, "chf": 291380.71450718417, "clp": 253419460.6605694, "cny": 2113009.734492654, "czk": 7604070.252732681, "dkk": 2059377.249491433, "eos": 108313.59807356456, "eth": 1750.7180286297014, "eur": 275876.13354011666, "gbp": 243487.55518666795, "hkd": 2309449.953947234, "huf": 100375544.70975552, "idr": 4876163006.642288, "ils": 1068332.6926991923, "inr": 22635240.271573294, "jpy": 32506661.806373693, "krw": 364699229.5996789, "kwd": 92950.61983346658, "lkr": 57573114.83232513, "ltc": 6661.227794034207, "mmk": 424685393.3259223, "mxn": 7319815.132718107, "myr": 1300018.0444226416, "ngn": 113132804.26186869, "nok": 3104046.843032091, "nzd": 500760.6345932244, "php": 15085000.329436326, "pkr": 49741389.32849639, "pln": 1258654.6193703979, "rub": 22641913.90608574, "sar": 1120422.7935097483, "sek": 3015193.6560312007, "sgd": 426512.2796206702, "thb": 9773895.259614779, "try": 2016003.6899724265, "twd": 9005235.272304498, "uah": 8110876.783092005, "usd": 297930.1121628603, "vef": 74031951123.94572, "vnd": 6987257763.460476, "xag": 19586.1966899885, "xau": 178.72529498537818, "xdr": 219337.34029474627, "xlm": 6013505.400790989, "xrp": 1531013.0207962834, "zar": 5565543.046280738, "bits": 40896411.78059491, "link": 117947.92137609803, "sats": 4089641178.059491}}, "community_data": {"facebook_likes": null, "twitter_followers": 33410, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1058111, "bing_matches": null}}, "SNT_20200414": {"id": "status", "symbol": "SNT", "name": "Status", "localization": {"en": "Status", "de": "Status", "es": "Status", "fr": "Status", "it": "Status", "pl": "Status", "ro": "Status", "hu": "Status", "nl": "Status", "pt": "Status", "sv": "Status", "vi": "Status", "tr": "Status", "ru": "Status", "ja": "\u30b9\u30c6\u30fc\u30bf\u30b9", "zh": "Status", "zh-tw": "Status", "ko": "\uc2a4\ud14c\uc774\ud130\uc2a4\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Status", "th": "Status", "id": "Status"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/779/thumb/status.png?1548610778", "small": "https://assets.coingecko.com/coins/images/779/small/status.png?1548610778"}, "market_data": {"current_price": {"aed": 0.05902773595854623, "ars": 1.038473287364349, "aud": 0.02531279024652188, "bch": 6.901860869314212e-05, "bdt": 1.3648182903383697, "bhd": 0.0060660038474557535, "bmd": 0.016070714935623804, "bnb": 0.0011696310385810988, "brl": 0.0820731411762308, "btc": 2.341795467913275e-06, "cad": 0.022424272085422674, "chf": 0.015506632841383396, "clp": 13.508051588551707, "cny": 0.11307515735854261, "czk": 0.39719896913439734, "dkk": 0.10970834257952938, "eos": 0.006450712584183314, "eth": 0.00010198773171845224, "eur": 0.014694563544971407, "gbp": 0.012909235681343086, "hkd": 0.12459143168141061, "huf": 5.199840524570431, "idr": 253.94943741272624, "ils": 0.057507687386360314, "inr": 1.2242108162935474, "jpy": 1.7411816614478635, "krw": 19.479956402067028, "kwd": 0.004997992344979008, "lkr": 3.0516346481092547, "ltc": 0.00038096616262085845, "mmk": 22.766061141874122, "mxn": 0.37499002855839575, "myr": 0.06926156722955143, "ngn": 6.151106157690201, "nok": 0.16396548680943576, "nzd": 0.026414727028227742, "php": 0.8109645954673319, "pkr": 2.6757740367813585, "pln": 0.06690961809872288, "rub": 1.1858660904571483, "sar": 0.060492501271353555, "sek": 0.15977665496146543, "sgd": 0.022712741418517108, "thb": 0.5249232902682187, "try": 0.10763361328134045, "twd": 0.4827803473810747, "uah": 0.43625419734881465, "usd": 0.016070714935623804, "vef": 3993.3740634803785, "vnd": 374.86297459499514, "xag": 0.001049698601393309, "xau": 9.516113141980272e-06, "xdr": 0.011741103624817386, "xlm": 0.3370030431837096, "xrp": 0.08532459739311245, "zar": 0.29021011293627286, "bits": 2.341795467913275, "link": 0.005003182186205521, "sats": 234.1795467913275}, "market_cap": {"aed": 224041157.36893135, "ars": 3941549737.9269295, "aud": 96075289.5393183, "bch": 262453.0230948236, "bdt": 5180199856.901735, "bhd": 23023659.98829422, "bmd": 60996775.760667436, "bnb": 4448236.5898818085, "brl": 311510533.8097282, "btc": 8895.034010233303, "cad": 85111851.05764732, "chf": 58855788.93146794, "clp": 51270126874.31711, "cny": 429179413.92963177, "czk": 1507578010.6679296, "dkk": 416400589.40777266, "eos": 24513371.09053133, "eth": 387758.6304036364, "eur": 55773560.85550571, "gbp": 49005175.62677477, "hkd": 472889703.43972635, "huf": 19736116765.12157, "idr": 963871050570.0664, "ils": 218271777.3336087, "inr": 4646520888.732483, "jpy": 6608695866.199132, "krw": 73936631770.53545, "kwd": 18969997.261567604, "lkr": 11582550936.89632, "ltc": 1447914.0353804915, "mmk": 86409119444.10872, "mxn": 1423283455.4087005, "myr": 262883904.17332414, "ngn": 23346667804.367107, "nok": 622334853.8921498, "nzd": 100257716.45967568, "php": 3078035157.596495, "pkr": 10155963164.151117, "pln": 253957026.04075047, "rub": 4500982581.767524, "sar": 229600708.49563736, "sek": 606436044.2901313, "sgd": 86206743.18255123, "thb": 1992358669.5615406, "try": 408525905.6570697, "twd": 1832404140.626214, "uah": 1655813046.0860338, "usd": 60996775.760667436, "vef": 15156944993071.248, "vnd": 1422801219108.3093, "xag": 3984155.6808118783, "xau": 36118.630798921586, "xdr": 44563634.402985975, "xlm": 1282287140.0210392, "xrp": 324240860.12280875, "zar": 1101499295.6543727, "bits": 8895034010.233303, "link": 19003997.708368454, "sats": 889503401023.3303}, "total_volume": {"aed": 67071434.723278455, "ars": 1179985851.9771314, "aud": 28762159.53591599, "bch": 78423.76185501237, "bdt": 1550801828.717487, "bhd": 6892617.080409614, "bmd": 18260668.31562169, "bnb": 1329016.4459230704, "brl": 93257233.08787999, "btc": 2660.911507290731, "cad": 25480023.534202717, "chf": 17619718.85774335, "clp": 15348791303.743868, "cny": 128483888.33554569, "czk": 451325199.88841105, "dkk": 124658278.32342292, "eos": 7329750.006209415, "eth": 115885.58123478256, "eur": 16696989.027086692, "gbp": 14668374.862567645, "hkd": 141569483.2505202, "huf": 5908421840.202544, "idr": 288555080723.45264, "ils": 65344249.41064544, "inr": 1391033799.944956, "jpy": 1978452167.4553838, "krw": 22134486492.09766, "kwd": 5679067.84615835, "lkr": 3467480342.523976, "ltc": 432880.3518052482, "mmk": 25868388122.7584, "mxn": 426089851.0489678, "myr": 78699828.30666628, "ngn": 6989316266.868308, "nok": 186309033.65720916, "nzd": 30014257.040981546, "php": 921474592.3166639, "pkr": 3040401274.5510054, "pln": 76027379.49867506, "rub": 1347463845.343882, "sar": 68735803.33690566, "sek": 181549390.46074238, "sgd": 25807802.53046811, "thb": 596454490.8630524, "try": 122300826.04387628, "twd": 548568736.8695911, "uah": 495702476.8963863, "usd": 18260668.31562169, "vef": 4537550415493.76, "vnd": 425945483465.25183, "xag": 1192740.837492253, "xau": 10812.872136412218, "xdr": 13341061.664710037, "xlm": 382926386.13678336, "xrp": 96951764.6477441, "zar": 329756991.8573561, "bits": 2660911507.290731, "link": 5684964.90609798, "sats": 266091150729.07312}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.636, "reddit_subscribers": 5638, "reddit_accounts_active_48h": "36.9166666666667"}, "developer_data": {"forks": 732, "stars": 2885, "subscribers": 182, "total_issues": 5270, "closed_issues": 4797, "pull_requests_merged": 3602, "pull_request_contributors": 174, "code_additions_deletions_4_weeks": {"additions": 8761, "deletions": -3817}, "commit_count_4_weeks": 84}, "public_interest_stats": {"alexa_rank": 188189, "bing_matches": null}}, "WPR_20200419": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.01810382330461023, "ars": 0.32316990473791035, "aud": 0.007809548360293673, "bch": 2.2912423652983036e-05, "bdt": 0.4187522809380339, "bhd": 0.0018610880187322403, "bmd": 0.004928624443158621, "bnb": 0.0003378233934867442, "brl": 0.025817613420597824, "btc": 7.433749695952328e-07, "cad": 0.006958769208915642, "chf": 0.004757187170527789, "clp": 4.224312230818835, "cny": 0.034833546114467866, "czk": 0.1222185454254902, "dkk": 0.033735404230912085, "eos": 0.002049226405680085, "eth": 3.217570173632774e-05, "eur": 0.00452032733703847, "gbp": 0.003936374055764157, "hkd": 0.038202507352588885, "huf": 1.5918700900412792, "idr": 76.76041534946206, "ils": 0.017777844083939714, "inr": 0.37704272707630054, "jpy": 0.5301078728322347, "krw": 6.030171897774831, "kwd": 0.0015351482270572763, "lkr": 0.9440176117944838, "ltc": 0.00012546144192866478, "mmk": 7.024683459205829, "mxn": 0.11951343539949107, "myr": 0.02140501595663788, "ngn": 1.904913347280807, "nok": 0.0518510266624393, "nzd": 0.008221226502781807, "php": 0.24985530020320001, "pkr": 0.8225365364444237, "pln": 0.02051338343725048, "rub": 0.36932372740427605, "sar": 0.018528113797048443, "sek": 0.049532478508766395, "sgd": 0.007024847276825071, "thb": 0.1611820915355961, "try": 0.034015394456903526, "twd": 0.14828752362131356, "uah": 0.13411108949010736, "usd": 0.004928624443158621, "vef": 1224.7022673718486, "vnd": 115.57749760091995, "xag": 0.00031976087378306634, "xau": 2.872155894250686e-06, "xdr": 0.0036040812671819526, "xlm": 0.10605855903530441, "xrp": 0.02710282861475501, "zar": 0.09202856690226198, "bits": 0.7433749695952329, "link": 0.0015739813352471362, "sats": 74.33749695952328}, "market_cap": {"aed": 11006508.419891138, "ars": 196449035.68159685, "aud": 4744397.823997987, "bch": 13946.667488935724, "bdt": 254587134.90754133, "bhd": 1131478.1747300087, "bmd": 2996435.9196044747, "bnb": 205346.86364448973, "brl": 15695331.34688826, "btc": 452.1562492675182, "cad": 4230622.9283507615, "chf": 2892147.963858562, "clp": 2568245325.5753803, "cny": 21177610.505396582, "czk": 74258876.53044201, "dkk": 20506666.552894272, "eos": 1247924.7789255122, "eth": 19579.44176259217, "eur": 2747782.677687935, "gbp": 2392687.04259929, "hkd": 23226123.921834182, "huf": 967754105.6678776, "idr": 46656592787.64193, "ils": 10808324.148168528, "inr": 229229145.7112942, "jpy": 322239715.23018485, "krw": 3666289106.506902, "kwd": 933317.8744947247, "lkr": 573930579.0780437, "ltc": 76396.24542289056, "mmk": 4270768463.649875, "mxn": 72725009.97250393, "myr": 13013521.19884222, "ngn": 1158122482.9271295, "nok": 31519494.456139855, "nzd": 4996553.899504533, "php": 151875652.04190597, "pkr": 500074219.7775538, "pln": 12470531.052978875, "rub": 224536256.620754, "sar": 11264462.598902153, "sek": 30106231.44753027, "sgd": 4269801.327999594, "thb": 98011698.97604433, "try": 20676831.152332686, "twd": 90153767.5131397, "uah": 81534978.04509309, "usd": 2996435.9196044747, "vef": 744577296788.7595, "vnd": 70260757615.54408, "xag": 194334.36096005465, "xau": 1744.375170597744, "xdr": 2191158.7483903687, "xlm": 64508922.71974404, "xrp": 16481255.377525646, "zar": 55953406.786268644, "bits": 452156249.2675182, "link": 957370.8102519748, "sats": 45215624926.75182}, "total_volume": {"aed": 118271.70600972454, "ars": 2111258.7833653586, "aud": 51019.532846532355, "bch": 149.68614025114687, "bdt": 2735695.429008774, "bhd": 12158.429261385194, "bmd": 32198.547862823874, "bnb": 2206.98956266862, "brl": 168665.6532698304, "btc": 4.856445203846303, "cad": 45461.419514451765, "chf": 31078.55357396339, "clp": 27597298.418696947, "cny": 227566.45687529398, "czk": 798449.8981394003, "dkk": 220392.3306245257, "eos": 13387.53140273082, "eth": 210.20284347596643, "eur": 29531.15576077179, "gbp": 25716.20741288873, "hkd": 249575.77426692686, "huf": 10399637.033967912, "idr": 501473369.7209703, "ils": 116142.09405407734, "inr": 2463208.2306347447, "jpy": 3463177.9947326626, "krw": 39394922.601796925, "kwd": 10029.074894120939, "lkr": 6167237.24991986, "ltc": 819.6356385981992, "mmk": 45892035.23031479, "mxn": 780777.4997550517, "myr": 139838.293368244, "ngn": 12444738.748981427, "nok": 338741.11995783425, "nzd": 53709.01315241818, "php": 1632296.786893577, "pkr": 5373605.220497175, "pln": 134013.2862729283, "rub": 2412780.2495095446, "sar": 121043.58239959157, "sek": 323594.11807946523, "sgd": 45893.10544564866, "thb": 1052997.5145789215, "try": 222221.49793006515, "twd": 968757.7095487827, "uah": 876143.5129991913, "usd": 32198.547862823874, "vef": 8000941242.017102, "vnd": 755064142.39663, "xag": 2088.9876917796, "xau": 18.76370376706061, "xdr": 23545.34911742924, "xlm": 692877.2173137711, "xrp": 177061.92355180343, "zar": 601219.7217141881, "bits": 4856445.203846304, "link": 10282.770363746149, "sats": 485644520.3846303}}, "community_data": {"facebook_likes": null, "twitter_followers": 33352, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1026824, "bing_matches": null}}, "AOA_20200422": {"id": "aurora", "symbol": "aoa", "name": "Aurora Chain", "localization": {"en": "Aurora Chain", "de": "Aurora Chain", "es": "Aurora Chain", "fr": "Aurora Chain", "it": "Aurora Chain", "pl": "Aurora Chain", "ro": "Aurora Chain", "hu": "Aurora Chain", "nl": "Aurora Chain", "pt": "Aurora Chain", "sv": "Aurora Chain", "vi": "Aurora Chain", "tr": "Aurora Chain", "ru": "Aurora Chain", "ja": " \u30aa\u30fc\u30ed\u30e9\u30b3\u30a4\u30f3", "zh": "\u6781\u5149\u94fe", "zh-tw": "\u6975\u5149\u93c8", "ko": "Aurora Chain", "ar": "Aurora Chain", "th": "Aurora Chain", "id": "Aurora Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4755/thumb/aurora-logo.png?1547040076", "small": "https://assets.coingecko.com/coins/images/4755/small/aurora-logo.png?1547040076"}, "market_data": {"current_price": {"aed": 0.004687451686877797, "ars": 0.08399067481546876, "aud": 0.0020055356220117335, "bch": 5.2413646228264036e-06, "bdt": 0.1079419769246244, "bhd": 0.0004819338905607732, "bmd": 0.0012761220970482936, "bnb": 7.697571093367903e-05, "brl": 0.00668295316084045, "btc": 1.7617640332650474e-07, "cad": 0.0017866283613619768, "chf": 0.0012345230689287127, "clp": 1.0889149854113083, "cny": 0.009026266816841981, "czk": 0.03198344811832142, "dkk": 0.008755601320058046, "eos": 0.0004681919920612781, "eth": 6.8174815892901295e-06, "eur": 0.0011734453131197874, "gbp": 0.0010201217954036302, "hkd": 0.009891030955906762, "huf": 0.41444617345837387, "idr": 19.709192787827956, "ils": 0.004581546314043751, "inr": 0.09762461654629151, "jpy": 0.1372660733689997, "krw": 1.5520962617559584, "kwd": 0.0003979382580109582, "lkr": 0.24413801936300533, "ltc": 2.8999605635016016e-05, "mmk": 1.8119609571708157, "mxn": 0.030270509427453494, "myr": 0.005576654840223141, "ngn": 0.49180492851178564, "nok": 0.013181447977040944, "nzd": 0.002115237458084496, "php": 0.06482700253005326, "pkr": 0.2126657474730989, "pln": 0.005303435823123003, "rub": 0.09442266158504685, "sar": 0.004794127837458449, "sek": 0.012741007196465698, "sgd": 0.0018143903975832685, "thb": 0.04152151773952757, "try": 0.008845823152319365, "twd": 0.038351297382592416, "uah": 0.034528822947169475, "usd": 0.0012761220970482936, "vef": 317.1005711071705, "vnd": 29.785570269354203, "xag": 8.397753713847954e-05, "xau": 7.574550319239853e-07, "xdr": 0.0009340001434401305, "xlm": 0.025222702488661788, "xrp": 0.006568514737285387, "zar": 0.023989053629152574, "bits": 0.17617640332650475, "link": 0.00033714900405086134, "sats": 17.617640332650474}, "market_cap": {"aed": 20354718.49349487, "ars": 364719821.3761778, "aud": 8708807.203070203, "bch": 22786.29707921488, "bdt": 468725589.2327937, "bhd": 2092742.3534413595, "bmd": 5541413.071298825, "bnb": 334719.53666427924, "brl": 29019953.565585464, "btc": 765.3086380722517, "cad": 7758227.663406594, "chf": 5360774.08800063, "clp": 4728487773.739291, "cny": 39195522.93591087, "czk": 138884435.80596268, "dkk": 38020189.22348837, "eos": 2032260.1423941585, "eth": 29617.52724302295, "eur": 5095550.975582125, "gbp": 4429761.277891708, "hkd": 42950661.503676474, "huf": 1799684723.1657236, "idr": 85584897238.15576, "ils": 19894836.62270778, "inr": 423923641.3674319, "jpy": 596062097.0142584, "krw": 6739799062.09791, "kwd": 1728001.003675397, "lkr": 1060141200.3039433, "ltc": 125993.30838832357, "mmk": 7868231539.892779, "mxn": 131446197.04035784, "myr": 24215980.66298896, "ngn": 2135606197.626446, "nok": 57238918.03736698, "nzd": 9185174.777744401, "php": 281503784.0219804, "pkr": 923476488.331947, "pln": 23029558.5830108, "rub": 410019521.129257, "sar": 20817947.377777014, "sek": 55326354.72993889, "sgd": 7878781.104772673, "thb": 180302403.4096615, "try": 38411967.12762923, "twd": 166536087.03174385, "uah": 149937432.52199703, "usd": 5541413.071298825, "vef": 1376972668770.5017, "vnd": 129340404659.1341, "xag": 364662.772528609, "xau": 3289.161142600135, "xdr": 4055787.9339489685, "xlm": 109559111.47310531, "xrp": 28525752.814196337, "zar": 104169699.47950411, "bits": 765308638.0722517, "link": 1464572.1007222007, "sats": 76530863807.22517}, "total_volume": {"aed": 2207031.514521934, "ars": 39546021.72490316, "aud": 944282.8677396968, "bch": 2467.834907837381, "bdt": 50823210.7179596, "bhd": 226912.90608101385, "bmd": 600847.0855172416, "bnb": 36243.10845889882, "brl": 3146589.9216282135, "btc": 82.95058812983979, "cad": 841212.9578429858, "chf": 581260.6722235503, "clp": 512702818.0718619, "cny": 4249911.605280549, "czk": 15059030.504318643, "dkk": 4122471.9384423457, "eos": 220442.694741524, "eth": 3209.9310504592004, "eur": 552502.9290165241, "gbp": 480312.35338579916, "hkd": 4657075.63278131, "huf": 195137107.96343434, "idr": 9279841695.285452, "ils": 2157167.214894854, "inr": 45965402.8891545, "jpy": 64630116.7536621, "krw": 730786276.2312006, "kwd": 187364.5500651838, "lkr": 114949515.9887215, "ltc": 13654.123353283916, "mmk": 853140512.7341156, "mxn": 14252513.461428849, "myr": 2625702.364557432, "ngn": 231560568.24250638, "nok": 6206329.8004332455, "nzd": 995934.6874461892, "php": 30523031.944275845, "pkr": 100131166.80144869, "pln": 2497060.4027011045, "rub": 44457800.04231772, "sar": 2257258.725788661, "sek": 5998953.437337826, "sgd": 854284.3861884164, "thb": 19549918.44256377, "try": 4164951.8273884165, "twd": 18057257.461049683, "uah": 16257490.31549173, "usd": 600847.0855172416, "vef": 149303075627.55557, "vnd": 14024185560.461456, "xag": 39539.836004157696, "xau": 356.638796079614, "xdr": 439762.98612549633, "xlm": 11875812.913384091, "xrp": 3092707.935395634, "zar": 11294963.852387281, "bits": 82950588.1298398, "link": 158742.64456164688, "sats": 8295058812.983978}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3249316, "bing_matches": null}}, "EDO_20191018": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "NEBL_20191027": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.5475354903801655, "ars": 24.821238989729476, "aud": 0.6149298484679536, "bch": 0.0020086765132341622, "bdt": 35.678714705373174, "bhd": 0.15884800857940382, "bmd": 0.4213273864362013, "bnb": 0.025285400908473494, "brl": 1.699971738792786, "btc": 5.6434140685319164e-05, "cad": 0.5509209492657937, "chf": 0.41727927290732186, "clp": 306.0946234793202, "cny": 2.976930781603619, "czk": 9.689476569566517, "dkk": 2.827296360310804, "eos": 0.15520549879231377, "eth": 0.002606286925987126, "eur": 0.3784560608841581, "gbp": 0.32608548807752474, "hkd": 3.303944032586081, "huf": 124.19046042593487, "idr": 5897.393658249083, "ils": 1.487201408642503, "inr": 29.798381512337265, "jpy": 45.77158135151513, "krw": 492.8792946699428, "kwd": 0.1278648565630445, "lkr": 76.45819612977267, "ltc": 0.008531681545822636, "mmk": 646.6312494984641, "mxn": 8.054304982807656, "myr": 1.7642237438969186, "ngn": 152.73117758312299, "nok": 3.845299164870224, "nzd": 0.656048452092424, "php": 21.474886670389026, "pkr": 65.74813865336941, "pln": 1.6173764032653766, "rub": 26.938998964912397, "sar": 1.5803042278602426, "sek": 4.062147944121208, "sgd": 0.5739869383636301, "thb": 12.757793261288175, "try": 2.4177779378616377, "twd": 12.88671944153765, "uah": 10.524688594157514, "usd": 0.4213273864362013, "vef": 104694.6488670941, "vnd": 9754.473864897791, "xag": 0.02399085327035007, "xau": 0.00028228934891225485, "xdr": 0.3061090927044252, "xlm": 7.011871125357456, "xrp": 1.539316306959837, "zar": 6.170171043403597, "bits": 56.434140685319164, "link": 0.16154149820330954, "sats": 5643.414068531916}, "market_cap": {"aed": 24088432.279478483, "ars": 386359303.68871135, "aud": 9571797.288998768, "bch": 31273.563574788204, "bdt": 555363226.4602123, "bhd": 2472576.248609967, "bmd": 6558244.562885514, "bnb": 393705.15560813557, "brl": 26461205.162330423, "btc": 878.7685792073801, "cad": 8575455.658516089, "chf": 6495232.949125309, "clp": 4764568990.261251, "cny": 46337932.78352384, "czk": 150823229.33495948, "dkk": 44008772.22701504, "eos": 2416365.8340674215, "eth": 40583.32297897055, "eur": 5890923.503878219, "gbp": 5075740.262956119, "hkd": 51428114.30100744, "huf": 1933108167.356132, "idr": 91796904591.35219, "ils": 23149291.65807325, "inr": 463831879.50130045, "jpy": 712465494.0480602, "krw": 7671998209.68074, "kwd": 1990302.618189056, "lkr": 1190123322.6196792, "ltc": 132826.9850043287, "mmk": 10065250949.11517, "mxn": 125370682.18640092, "myr": 27461330.89992598, "ngn": 2377363654.045999, "nok": 59854671.57496781, "nzd": 10211836.05062445, "php": 334271075.8394715, "pkr": 1023414064.0382805, "pln": 25175553.13120061, "rub": 419323664.15959895, "sar": 24598499.75035692, "sek": 63230068.88659372, "sgd": 8934493.315355856, "thb": 198583645.36417314, "try": 37634342.1427381, "twd": 200590468.2004166, "uah": 163823867.07052752, "usd": 6558244.562885514, "vef": 1629642728671.2742, "vnd": 151834956016.9446, "xag": 373433.79064461123, "xau": 4394.023857133296, "xdr": 4764794.213496023, "xlm": 109341536.53350073, "xrp": 23962586.74825518, "zar": 96042868.32563283, "bits": 878768579.20738, "link": 2515455.912595881, "sats": 87876857920.738}, "total_volume": {"aed": 1690080.5454419742, "ars": 27107548.35096043, "aud": 671571.6571074964, "bch": 2193.697733077067, "bdt": 38965117.10701542, "bhd": 173479.65888413924, "bmd": 460136.277005711, "bnb": 27614.464692253237, "brl": 1856557.8504626437, "btc": 61.63234631056044, "cad": 601666.8336322354, "chf": 455715.2876562397, "clp": 334289308.01431894, "cny": 3251138.8788115466, "czk": 10581984.030438814, "dkk": 3087721.4800329697, "eos": 169501.63384625752, "eth": 2846.3546437752602, "eur": 413316.03041154845, "gbp": 356121.5513160156, "hkd": 3608273.6502095335, "huf": 135629769.01020357, "idr": 6440608536.978467, "ils": 1624189.0305747583, "inr": 32543140.49191029, "jpy": 49987647.880894035, "krw": 538278903.6832993, "kwd": 139642.61748196985, "lkr": 83500837.70083457, "ltc": 9317.543339157242, "mmk": 706193106.1650285, "mxn": 8796195.139379688, "myr": 1926728.172569736, "ngn": 166799400.41457024, "nok": 4199493.549808628, "nzd": 716477.7367893171, "php": 23452960.14392514, "pkr": 71804266.02674142, "pln": 1766354.5752635498, "rub": 29420377.333701935, "sar": 1725867.6443860952, "sek": 4436316.488857927, "sgd": 626857.4542531903, "thb": 13932926.467732929, "try": 2640481.9025991764, "twd": 14073728.168496672, "uah": 11494128.277116919, "usd": 460136.277005711, "vef": 114338178582.70053, "vnd": 10652968292.207664, "xag": 26200.674965335387, "xau": 308.29130559382634, "xdr": 334305.11001434387, "xlm": 7657741.647787187, "xrp": 1681104.2847458762, "zar": 6738511.722237838, "bits": 61632346.31056044, "link": 176421.24855430223, "sats": 6163234631.056045}}, "community_data": {"facebook_likes": null, "twitter_followers": 40249, "reddit_average_posts_48h": 0.059, "reddit_average_comments_48h": 0.235, "reddit_subscribers": 6087, "reddit_accounts_active_48h": "183.222222222222"}, "developer_data": {"forks": 40, "stars": 102, "subscribers": 33, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 89, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 478074, "bing_matches": null}}, "DGD_20191102": {"id": "digixdao", "symbol": "dgd", "name": "DigixDAO", "localization": {"en": "DigixDAO", "de": "DigixDAO", "es": "DigixDAO", "fr": "DigixDAO", "it": "DigixDAO", "pl": "DigixDAO", "ro": "DigixDAO", "hu": "DigixDAO", "nl": "DigixDAO", "pt": "DigixDAO", "sv": "DigixDAO", "vi": "DigixDAO", "tr": "DigixDAO", "ru": "DigixDAO", "ja": "\u30c7\u30a3\u30b8\u30c3\u30af\u30b9\u30c0\u30aa", "zh": "\u9ec4\u91d1\u4ee3\u5e01", "zh-tw": "\u9ec3\u91d1\u4ee3\u5e63", "ko": "\ub514\uc9c1\uc2a4\ub2e4\uc624", "ar": "DigixDAO", "th": "DigixDAO", "id": "DigixDAO"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/397/thumb/dgd.png?1547034124", "small": "https://assets.coingecko.com/coins/images/397/small/dgd.png?1547034124"}, "market_data": {"current_price": {"aed": 46.67717477641832, "ars": 754.9314034770804, "aud": 18.536693207882962, "bch": 0.0441341957809015, "bdt": 1075.6619390709789, "bhd": 4.791396931186471, "bmd": 12.708534067472122, "bnb": 0.6148695161058791, "brl": 50.81126090856701, "btc": 0.0013504645764655166, "cad": 16.637923841396006, "chf": 12.634290811449958, "clp": 9259.422112143819, "cny": 89.79596001394457, "czk": 292.1069136857192, "dkk": 85.43439112198806, "eos": 3.74318283778198, "eth": 0.06673749012151703, "eur": 11.43625730490936, "gbp": 9.877682686874582, "hkd": 99.63122161410193, "huf": 3771.638740544384, "idr": 178016.11703481097, "ils": 44.824778850743634, "inr": 900.9650667781303, "jpy": 1383.5958958733797, "krw": 14827.809208563745, "kwd": 3.8609543179705703, "lkr": 2306.6933322372497, "ltc": 0.21289480642390546, "mmk": 19426.52549714978, "mxn": 243.00051533083783, "myr": 53.161068857642626, "ngn": 4600.489332424908, "nok": 117.27744054841126, "nzd": 20.007871237135774, "php": 648.5982728798264, "pkr": 1978.5291683941973, "pln": 48.79041336382792, "rub": 813.0513423278512, "sar": 47.66258179947609, "sek": 123.32577504154102, "sgd": 17.316775605678234, "thb": 384.5602408817065, "try": 73.08932112884564, "twd": 386.7588172753788, "uah": 318.74439505569717, "usd": 12.708534067472122, "vef": 3157913.6667655725, "vnd": 294056.24719567073, "xag": 0.7140428388830555, "xau": 0.008542168258792065, "xdr": 9.238036750190574, "xlm": 192.88891874725272, "xrp": 42.183451234108745, "zar": 185.8813735378813, "bits": 1350.4645764655165, "link": 4.769022534933401, "sats": 135046.45764655166}, "market_cap": {"aed": 93354302.87566186, "ars": 1509862052.0227573, "aud": 37073367.87907271, "bch": 88268.34742760722, "bdt": 2151322802.480019, "bhd": 9582789.070976011, "bmd": 25417055.426410172, "bnb": 1229738.417342242, "brl": 101622471.00587311, "btc": 2700.9278024664577, "cad": 33275831.04486818, "chf": 25268568.98860911, "clp": 18518834964.865524, "cny": 179591830.23192912, "czk": 584213535.2645247, "dkk": 170868696.809585, "eos": 7486361.932381122, "eth": 133474.91350554393, "eur": 22872503.173561417, "gbp": 19755355.496066477, "hkd": 199262343.59698224, "huf": 7543273709.450027, "idr": 356032056053.50494, "ils": 89649512.8767084, "inr": 1801929232.591194, "jpy": 2767190408.150864, "krw": 29655603589.31829, "kwd": 7721904.774986822, "lkr": 4613384357.781168, "ltc": 425789.39995300455, "mmk": 38853031567.77406, "mxn": 486000787.6611603, "myr": 106322084.5542164, "ngn": 9200974064.360483, "nok": 234554763.81938204, "nzd": 40015722.4664003, "php": 1297195897.1613798, "pkr": 3957056358.2592254, "pln": 97580777.93724248, "rub": 1626101871.60436, "sar": 95325115.93637039, "sek": 246651426.75730696, "sgd": 34633533.894580856, "thb": 769120097.2031721, "try": 146178569.16837016, "twd": 773517247.7919403, "uah": 637488471.3669994, "usd": 25417055.426410172, "vef": 6315824175617.4795, "vnd": 588112200335.0942, "xag": 1428084.963723272, "xau": 17084.327975415872, "xdr": 18476064.262344398, "xlm": 385777644.60558665, "xrp": 84366860.28476624, "zar": 371762561.19438905, "bits": 2700927802.466458, "link": 9538040.30084427, "sats": 270092780246.64578}, "total_volume": {"aed": 7184683.556129365, "ars": 116201189.69384715, "aud": 2853220.5625901623, "bch": 6793.260993384577, "bdt": 165568946.33438447, "bhd": 737505.4490182161, "bmd": 1956133.7243402682, "bnb": 94642.46545964813, "brl": 7821013.856657255, "btc": 207.86735020151363, "cad": 2560956.5789702055, "chf": 1944705.9911226737, "clp": 1425236598.1239681, "cny": 13821649.669443473, "czk": 44961927.31119974, "dkk": 13150304.575249882, "eos": 576161.3531885117, "eth": 10272.42437337168, "eur": 1760301.2649291162, "gbp": 1520401.0249760265, "hkd": 15335521.120047655, "huf": 580541366.709706, "idr": 27400747258.42582, "ils": 6899557.504469535, "inr": 138679106.67117143, "jpy": 212967017.15613836, "krw": 2282338584.211247, "kwd": 594289.0745243682, "lkr": 355052801.129064, "ltc": 32769.3743725024, "mmk": 2990186080.4697523, "mxn": 37403330.74979649, "myr": 8182702.982287775, "ngn": 708120408.2111771, "nok": 18051677.348707028, "nzd": 3079668.4709209707, "php": 99834091.67359999, "pkr": 304540839.27688104, "pln": 7509959.252481286, "rub": 125147176.0553726, "sar": 7336360.208980992, "sek": 18982654.203731112, "sgd": 2665447.3741233, "thb": 59192606.49853653, "try": 11250116.275425745, "twd": 59531017.63284734, "uah": 49062044.23756245, "usd": 1956133.7243402682, "vef": 486075057069.4194, "vnd": 45261974271.656235, "xag": 109907.50548781762, "xau": 1314.8348441525552, "xdr": 1421944.902362532, "xlm": 29690011.216854975, "xrp": 6492996.842122542, "zar": 28611389.91906298, "bits": 207867350.20151362, "link": 734061.5182831673, "sats": 20786735020.151363}}, "community_data": {"facebook_likes": null, "twitter_followers": 17337, "reddit_average_posts_48h": 0.063, "reddit_average_comments_48h": 0.063, "reddit_subscribers": 3354, "reddit_accounts_active_48h": "2023.35294117647"}, "developer_data": {"forks": 3, "stars": 22, "subscribers": 10, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 21, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 576212, "bing_matches": null}}, "BCD_20191111": {"id": "bitcoin-diamond", "symbol": "bcd", "name": "Bitcoin Diamond", "localization": {"en": "Bitcoin Diamond", "de": "Bitcoin Diamond", "es": "Bitcoin Diamond", "fr": "Bitcoin Diamond", "it": "Bitcoin Diamond", "pl": "Bitcoin Diamond", "ro": "Bitcoin Diamond", "hu": "Bitcoin Diamond", "nl": "Bitcoin Diamond", "pt": "Bitcoin Diamond", "sv": "Bitcoin Diamond", "vi": "Bitcoin Diamond", "tr": "Bitcoin Diamond", "ru": "Bitcoin Diamond", "ja": "\u30d3\u30c3\u30c8\u30b3\u30a4\u30f3\u30c0\u30a4\u30a2\u30e2\u30f3\u30c9", "zh": "\u6bd4\u7279\u5e01\u94bb\u77f3", "zh-tw": "\u6bd4\u7279\u5e63\u947d\u77f3", "ko": "\ube44\ud2b8\ucf54\uc778\ub2e4\uc774\uc544\ubaac\ub4dc", "ar": "Bitcoin Diamond", "th": "Bitcoin Diamond", "id": "Bitcoin Diamond"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1254/thumb/bitcoin-diamond.png?1547035280", "small": "https://assets.coingecko.com/coins/images/1254/small/bitcoin-diamond.png?1547035280"}, "market_data": {"current_price": {"aed": 1.9355258352098437, "ars": 31.40202552980484, "aud": 0.7637633845007737, "bch": 0.0018023832660365537, "bdt": 44.66532170193744, "bhd": 0.19864537922971384, "bmd": 0.5269317856936312, "bnb": 0.025831373926245745, "brl": 2.1609472531295792, "btc": 5.7156083339218975e-05, "cad": 0.6942589742406412, "chf": 0.5241495858651691, "clp": 391.404553130071, "cny": 3.6767982676237376, "czk": 12.176128931094182, "dkk": 3.5625331098960746, "eos": 0.1517862014726257, "eth": 0.0028204904230072205, "eur": 0.4767320483341703, "gbp": 0.4109741230703195, "hkd": 4.12411066049906, "huf": 158.57693560185407, "idr": 7365.174748358168, "ils": 1.84257506821349, "inr": 37.43692257817539, "jpy": 57.568000160986784, "krw": 608.4902874832899, "kwd": 0.1600260217244419, "lkr": 95.31802279767493, "ltc": 0.008576670142818902, "mmk": 800.3353485527358, "mxn": 10.083565304316531, "myr": 2.1749109454504656, "ngn": 190.7493064210945, "nok": 4.799225149101884, "nzd": 0.8267064401654503, "php": 26.625006866947412, "pkr": 82.22351341513577, "pln": 2.0307756055871833, "rub": 33.48588266268741, "sar": 1.9761401564557526, "sek": 5.073512640031486, "sgd": 0.7152045127219646, "thb": 16.029791852585944, "try": 3.0313331767383245, "twd": 15.951279016517613, "uah": 12.931713280417377, "usd": 0.5269317856936312, "vef": 130936.03704885046, "vnd": 12254.246605735374, "xag": 0.03078596323256111, "xau": 0.00035871408242879653, "xdr": 0.3830857313806979, "xlm": 7.071622979241231, "xrp": 1.806099957041957, "zar": 7.761905437345776, "bits": 57.15608333921897, "link": 0.19648299110225728, "sats": 5715.608333921898}, "market_cap": {"aed": 364570302.87010115, "ars": 5914798836.510702, "aud": 143860362.56568676, "bch": 339505.62016708066, "bdt": 8413036687.21136, "bhd": 37416295.226909846, "bmd": 99251416.44073321, "bnb": 4866161.9009187585, "brl": 407030058.82344747, "btc": 10765.526936508795, "cad": 130768703.73148751, "chf": 98727368.96192612, "clp": 73723881068.16243, "cny": 692551571.0693259, "czk": 2293462030.545893, "dkk": 671028901.4141535, "eos": 28582453.53844759, "eth": 531177.6776718164, "eur": 89795932.49925746, "gbp": 77409951.23595259, "hkd": 776806098.4858642, "huf": 29869113803.02626, "idr": 1387283982395.944, "ils": 347062353.0099562, "inr": 7051515383.864777, "jpy": 10843349581.041159, "krw": 114613550677.4302, "kwd": 30142059.66455204, "lkr": 17953839627.544964, "ltc": 1613892.6713697456, "mmk": 150748956749.46362, "mxn": 1899312522.793871, "myr": 409660221.3591266, "ngn": 35929012751.545425, "nok": 903968799.7552283, "nzd": 155716142.7623655, "php": 5015012789.198533, "pkr": 15487393990.558615, "pln": 382511286.66017705, "rub": 6307308413.108865, "sar": 372220304.2951035, "sek": 955632834.3150383, "sgd": 134713947.53500694, "thb": 3019327339.5435433, "try": 570973548.5002497, "twd": 3004538878.4938807, "uah": 2435781812.6255846, "usd": 99251416.44073321, "vef": 24662750460437.402, "vnd": 2308176060080.073, "xag": 5798759.042979013, "xau": 67566.3942561936, "xdr": 72156970.76941033, "xlm": 1331284001.918577, "xrp": 340169154.36351305, "zar": 1462011079.710247, "bits": 10765526936.508795, "link": 37008185.47560878, "sats": 1076552693650.8795}, "total_volume": {"aed": 17238065.455086403, "ars": 279670858.25355715, "aud": 6802184.178954793, "bch": 16052.278998240316, "bdt": 397795640.3702634, "bhd": 1769163.700747513, "bmd": 4692928.633095509, "bnb": 230057.8511715707, "brl": 19245700.324324664, "btc": 509.04012120872113, "cad": 6183168.120534965, "chf": 4668149.969912767, "clp": 3485904028.5264454, "cny": 32746082.769582212, "czk": 108442317.68211804, "dkk": 31728421.195495456, "eos": 1351829.2696312065, "eth": 25119.684606003513, "eur": 4245842.708077766, "gbp": 3660193.3722392465, "hkd": 36729909.886216976, "huf": 1412308503.376509, "idr": 65595282734.41147, "ils": 16410232.84420838, "inr": 333418500.5955364, "jpy": 512708710.3882165, "krw": 5419300126.926018, "kwd": 1425214.2682993098, "lkr": 848915724.1642288, "ltc": 76385.03119880524, "mmk": 7127899237.199128, "mxn": 89805651.55701031, "myr": 19370062.93310174, "ngn": 1698840165.1805744, "nok": 42742574.52365435, "nzd": 7362763.890035326, "php": 237126057.8212871, "pkr": 732294180.9472762, "pln": 18086373.31359066, "rub": 298229983.1188597, "sar": 17599782.315339513, "sek": 45185417.51553995, "sgd": 6369712.033700526, "thb": 142763581.9473984, "try": 26997479.84047187, "twd": 142064335.58106735, "uah": 115171658.22282955, "usd": 4692928.633095509, "vef": 1166134771243.183, "vnd": 109138044685.17198, "xag": 274184.12074217334, "xau": 3194.7580962661, "xdr": 3411815.4314040295, "xlm": 62980869.3701251, "xrp": 16085380.371346258, "zar": 69128622.07837763, "bits": 509040121.20872116, "link": 1749905.1677936725, "sats": 50904012120.872116}}, "community_data": {"facebook_likes": null, "twitter_followers": 21432, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 56, "stars": 95, "subscribers": 31, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 44, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2003139, "bing_matches": null}}, "GRS_20191130": {"id": "groestlcoin", "symbol": "grs", "name": "Groestlcoin", "localization": {"en": "Groestlcoin", "de": "Groestlcoin", "es": "Groestlcoin", "fr": "Groestlcoin", "it": "Groestlcoin", "pl": "Groestlcoin", "ro": "Groestlcoin", "hu": "Groestlcoin", "nl": "Groestlcoin", "pt": "Groestlcoin", "sv": "Groestlcoin", "vi": "Groestlcoin", "tr": "Groestlcoin", "ru": "Groestlcoin", "ja": "\u30b0\u30ed\u30a4\u30b9\u30c8\u30eb\u30b3\u30a4\u30f3", "zh": "Groestlcoin", "zh-tw": "Groestlcoin", "ko": "\uadf8\ub85c\uc2a4\ud1a8\ucf54\uc778", "ar": "Groestlcoin", "th": "Groestlcoin", "id": "Groestlcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/71/thumb/image001.png?1547033733", "small": "https://assets.coingecko.com/coins/images/71/small/image001.png?1547033733"}, "market_data": {"current_price": {"aed": 0.7183308575871749, "ars": 11.699805042752736, "aud": 0.2881380500841076, "bch": 0.0009239723445913628, "bdt": 16.58213416425978, "bhd": 0.07372415060486454, "bmd": 0.19555996340715837, "bnb": 0.012759957289133997, "brl": 0.8278639930915249, "btc": 2.7324939483227976e-05, "cad": 0.2595383832356272, "chf": 0.19510215753282212, "clp": 156.19372595514045, "cny": 1.3754905586205886, "czk": 4.524186862441997, "dkk": 1.3256270702709592, "eos": 0.07480130761487427, "eth": 0.0013248622426842802, "eur": 0.17742275460096157, "gbp": 0.1520511960684436, "hkd": 1.530990063523792, "huf": 59.61400565169059, "idr": 2753.628510245801, "ils": 0.6779281691472553, "inr": 13.97051005474237, "jpy": 21.333582382691418, "krw": 229.3390358864768, "kwd": 0.05944788215621538, "lkr": 35.53243983959141, "ltc": 0.004170558212997083, "mmk": 295.87634395137206, "mxn": 3.8175759134618166, "myr": 0.8158761673346646, "ngn": 70.94015681464073, "nok": 1.792724780708445, "nzd": 0.3042787872238797, "php": 9.942268539619935, "pkr": 30.390160290005753, "pln": 0.7638695373460553, "rub": 12.511633118844895, "sar": 0.7333768500517934, "sek": 1.8748040351899153, "sgd": 0.2668425478688848, "thb": 5.909451508033674, "try": 1.1264251936652685, "twd": 5.958320769529336, "uah": 4.69278204029474, "usd": 0.19555996340715837, "vef": 48594.234223781066, "vnd": 4533.175905034009, "xag": 0.011449646693161931, "xau": 0.00013387643974927245, "xdr": 0.1424493974251154, "xlm": 3.386929716676875, "xrp": 0.8882451452959677, "zar": 2.893172766634514, "bits": 27.324939483227976, "link": 0.08666162969975114, "sats": 2732.4939483227977}, "market_cap": {"aed": 52945026.70290617, "ars": 862390480.9569038, "aud": 21237309.341691587, "bch": 67929.66054542083, "bdt": 1222196605.9857914, "bhd": 5433884.791660837, "bmd": 14413869.841801746, "bnb": 938423.5551455348, "brl": 61018235.20129925, "btc": 2010.4514618873727, "cad": 19131832.132290132, "chf": 14379824.281235414, "clp": 11512355810.291407, "cny": 101379953.53231259, "czk": 333574409.787011, "dkk": 97713065.04455827, "eos": 5505032.892172272, "eth": 97446.8493158225, "eur": 13077862.660034984, "gbp": 11207432.42614374, "hkd": 112844024.91098951, "huf": 4394133083.687561, "idr": 202966861407.8142, "ils": 49967121.193589956, "inr": 1029705240.6935536, "jpy": 1572236094.6040502, "krw": 16903577579.576149, "kwd": 4381643.46546962, "lkr": 2618940779.5254936, "ltc": 306579.0540339446, "mmk": 21807751631.16604, "mxn": 281324146.0243495, "myr": 60134664.979996875, "ngn": 5228688782.040382, "nok": 132140593.16170159, "nzd": 22425199.596964076, "php": 733218698.1526476, "pkr": 2239925837.885501, "pln": 56304582.65789364, "rub": 921955798.0781493, "sar": 54054001.020794764, "sek": 138190094.33430594, "sgd": 19666572.28955115, "thb": 435547883.23779994, "try": 83023702.90847008, "twd": 439161771.92614484, "uah": 345884445.60057247, "usd": 14413869.841801746, "vef": 3581668532557.9673, "vnd": 334137244176.53253, "xag": 843928.0433539372, "xau": 9865.861490618045, "xdr": 10499322.242425539, "xlm": 248957782.1348528, "xrp": 65381716.7985371, "zar": 213234466.27866185, "bits": 2010451461.8873727, "link": 6376189.789051443, "sats": 201045146188.73727}, "total_volume": {"aed": 14966563.202414185, "ars": 243767714.8054754, "aud": 6003412.344124217, "bch": 19251.14360123564, "bdt": 345491992.1356537, "bhd": 1536057.024305268, "bmd": 4074529.892849333, "bnb": 265856.19316061964, "brl": 17248707.395399112, "btc": 569.320431467395, "cad": 5407532.719944457, "chf": 4064991.418370171, "clp": 3254326675.0091896, "cny": 28658613.45434506, "czk": 94262313.66937035, "dkk": 27619697.971326143, "eos": 1558499.800219677, "eth": 27603.762639725002, "eur": 3696637.6179370238, "gbp": 3168016.258698536, "hkd": 31898475.898644235, "huf": 1242069408.4227426, "idr": 57372385857.11455, "ils": 14124765.326551499, "inr": 291078295.60125756, "jpy": 444489340.38130563, "krw": 4778323441.241198, "kwd": 1238608.1930674857, "lkr": 740325298.5420953, "ltc": 86894.3919433301, "mmk": 6164641202.692656, "mxn": 79539937.0434347, "myr": 16998938.712967414, "ngn": 1478051971.930838, "nok": 37351769.66381528, "nzd": 6339707.743360406, "php": 207149099.75246015, "pkr": 633184903.4574867, "pln": 15915370.456852745, "rub": 260682310.74966133, "sar": 15280049.383310199, "sek": 39061906.903262615, "sgd": 5559716.411442382, "thb": 123124572.12775998, "try": 23469288.10828226, "twd": 124142772.70080355, "uah": 97775027.00794376, "usd": 4074529.892849333, "vef": 1012470326314.6061, "vnd": 94449602121.01007, "xag": 238555.61691184147, "xau": 2789.3416740467956, "xdr": 2967960.9154895237, "xlm": 70567339.73122896, "xrp": 18506760.451532386, "zar": 60279817.593780704, "bits": 569320431.467395, "link": 1805611.918833844, "sats": 56932043146.7395}}, "community_data": {"facebook_likes": null, "twitter_followers": 38297, "reddit_average_posts_48h": 0.125, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 106935, "reddit_accounts_active_48h": "2607.11764705882"}, "developer_data": {"forks": 15, "stars": 24, "subscribers": 14, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 30, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BRD_20191223": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.9010970657588028, "ars": 14.656491455181524, "aud": 0.35604667726035866, "bch": 0.0013167323183660143, "bdt": 20.816979462254075, "bhd": 0.09250080782273616, "bmd": 0.2453166355653931, "bnb": 0.018392355677949317, "brl": 0.9985368334053751, "btc": 3.433094162692416e-05, "cad": 0.32199035001135673, "chf": 0.2400376668846614, "clp": 185.04211300630445, "cny": 1.7197677419676334, "czk": 5.604138089023357, "dkk": 1.6477182461020745, "eos": 0.10009414600709203, "eth": 0.001915975988294934, "eur": 0.2205425991729152, "gbp": 0.18844782374189492, "hkd": 1.9121094766658548, "huf": 72.89708152296576, "idr": 3430.1769852205857, "ils": 0.8540453350573601, "inr": 17.474320989603424, "jpy": 26.833469548049386, "krw": 285.0726497704375, "kwd": 0.07448352752363571, "lkr": 44.49883283013258, "ltc": 0.006185849105688068, "mmk": 369.5751029813394, "mxn": 4.64229841644883, "myr": 1.0159788461940769, "ngn": 88.927280392455, "nok": 2.1995334861428715, "nzd": 0.3710845870205177, "php": 12.409955056347698, "pkr": 37.9128507234875, "pln": 0.9401958764518513, "rub": 15.297209443951227, "sar": 0.9201758311399953, "sek": 2.3084494113178313, "sgd": 0.3323181803686598, "thb": 7.40878955727939, "try": 1.457499726884669, "twd": 7.398013778745549, "uah": 5.752356437698883, "usd": 0.2453166355653931, "vef": 60958.152374139114, "vnd": 5685.718396461563, "xag": 0.014383029642017712, "xau": 0.0001659395317954988, "xdr": 0.177888905113889, "xlm": 5.424811029812107, "xrp": 1.2912083230973035, "zar": 3.4901455324355735, "bits": 34.33094162692416, "link": 0.13600834141072396, "sats": 3433.094162692416}, "market_cap": {"aed": 54574108.049173355, "ars": 887637496.9723953, "aud": 21566816.264592007, "bch": 79833.25707416132, "bdt": 1260761054.0533798, "bhd": 5602225.634263753, "bmd": 14857374.509739002, "bnb": 1116655.5597430002, "brl": 60475457.20444157, "btc": 2080.1900840777057, "cad": 19501046.912757926, "chf": 14535667.77947961, "clp": 11206903953.626324, "cny": 104156138.2630743, "czk": 339391463.13832146, "dkk": 99791635.92709318, "eos": 6064925.323311184, "eth": 116374.38986552764, "eur": 13357344.264486726, "gbp": 11414222.53923051, "hkd": 115803577.0099841, "huf": 4414806345.451764, "idr": 207782832306.61063, "ils": 51724463.61820539, "inr": 1058316043.8653759, "jpy": 1625129338.6242704, "krw": 17265012019.327446, "kwd": 4511025.763395963, "lkr": 2695030539.1226034, "ltc": 375121.34433236724, "mmk": 22382973343.059025, "mxn": 281158979.1914913, "myr": 61531816.53208405, "ngn": 5385798259.780388, "nok": 133219688.55779044, "nzd": 22477513.89254089, "php": 752395363.1668416, "pkr": 2296156641.1199503, "pln": 56935732.2996198, "rub": 926488045.5779117, "sar": 55729595.779544696, "sek": 139805175.23710856, "sgd": 20127285.24834342, "thb": 448821389.9147456, "try": 88268107.68359472, "twd": 448068700.464708, "uah": 348386132.5238916, "usd": 14857374.509739002, "vef": 3691873961816.566, "vnd": 344342278597.66833, "xag": 871043.8896774475, "xau": 10048.339528426688, "xdr": 10773676.551992137, "xlm": 329555030.7808098, "xrp": 78236370.46228385, "zar": 211406324.7678011, "bits": 2080190084.0777056, "link": 8241055.72835671, "sats": 208019008407.77057}, "total_volume": {"aed": 3305552.7447798327, "ars": 53765357.140210144, "aud": 1306109.0930272185, "bch": 4830.254469256184, "bdt": 76364274.4098095, "bhd": 339326.70609166316, "bmd": 899910.9073232685, "bnb": 67469.86990021546, "brl": 3662997.3571686284, "btc": 125.93841733375632, "cad": 1181178.061407156, "chf": 880545.7245085791, "clp": 678801971.2757281, "cny": 6308735.424699048, "czk": 20558022.82154463, "dkk": 6044431.591218193, "eos": 367181.8404951944, "eth": 7028.49884624508, "eur": 809030.7046145062, "gbp": 691295.3606094035, "hkd": 7014315.071140382, "huf": 267413086.85958812, "idr": 12583140462.263515, "ils": 3132949.832755229, "inr": 64102183.777178906, "jpy": 98434954.77574106, "krw": 1045750469.8639889, "kwd": 273232.7495033051, "lkr": 163237951.3712857, "ltc": 22691.95103069429, "mmk": 1355736293.5518155, "mxn": 17029644.03691334, "myr": 3726981.0226793215, "ngn": 326217703.90468484, "nok": 8068691.186151159, "nzd": 1361273.6316461368, "php": 45524242.12430498, "pkr": 139078166.53017208, "pln": 3448981.445099925, "rub": 56115744.44795709, "sar": 3375540.6158641814, "sek": 8468234.530695455, "sgd": 1219064.3106054657, "thb": 27178142.718662836, "try": 5346640.673679731, "twd": 27138613.23214777, "uah": 21101741.792462084, "usd": 899910.9073232685, "vef": 223616739587.71783, "vnd": 20857289148.58039, "xag": 52762.19945448967, "xau": 608.7267350406782, "xdr": 652561.3953363943, "xlm": 19900185.752360657, "xrp": 4736623.143814917, "zar": 12803126.969133377, "bits": 125938417.33375631, "link": 498928.2102306959, "sats": 12593841733.375631}}, "community_data": {"facebook_likes": null, "twitter_followers": 178, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 245, "stars": 195, "subscribers": 32, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 334, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 4919, "deletions": -5171}, "commit_count_4_weeks": 71}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "QSP_20200629": {"id": "quantstamp", "symbol": "qsp", "name": "Quantstamp", "localization": {"en": "Quantstamp", "de": "Quantstamp", "es": "Quantstamp", "fr": "Quantstamp", "it": "Quantstamp", "pl": "Quantstamp", "ro": "Quantstamp", "hu": "Quantstamp", "nl": "Quantstamp", "pt": "Quantstamp", "sv": "Quantstamp", "vi": "Quantstamp", "tr": "Quantstamp", "ru": "Quantstamp", "ja": "\u30af\u30aa\u30f3\u30c8\u30b9\u30bf\u30f3\u30d7", "zh": "Quantstamp", "zh-tw": "Quantstamp", "ko": "\ud000\ud2b8\uc2a4\ud0ec\ud504", "ar": "Quantstamp", "th": "Quantstamp", "id": "Quantstamp"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1219/thumb/0_E0kZjb4dG4hUnoDD_.png?1604815917", "small": "https://assets.coingecko.com/coins/images/1219/small/0_E0kZjb4dG4hUnoDD_.png?1604815917"}, "market_data": {"current_price": {"aed": 0.07247857564942861, "ars": 1.384402298693777, "aud": 0.02864648022723749, "bch": 8.488442307394096e-05, "bdt": 1.6736618828937402, "bhd": 0.0074517652206003695, "bmd": 0.019731725920023008, "bnb": 0.0012399603981453056, "brl": 0.10578178265724326, "btc": 2.13251433109543e-06, "cad": 0.026909950224194026, "chf": 0.01871285852041671, "clp": 15.964950412730222, "cny": 0.13966510240710694, "czk": 0.4696496074169082, "dkk": 0.1310975870126328, "eos": 0.007952950808963086, "eth": 8.48454255074591e-05, "eur": 0.017586985971146104, "gbp": 0.015881908339219153, "hkd": 0.15294948688276236, "huf": 6.226460854049486, "idr": 278.6385880889901, "ils": 0.06783510858866945, "inr": 1.4905316754348275, "jpy": 2.1145504082192663, "krw": 23.725427246235736, "kwd": 0.006072596505694432, "lkr": 3.6768590977884403, "ltc": 0.000465571488444059, "mmk": 27.317511114635156, "mxn": 0.44739583148496426, "myr": 0.08443205521177853, "ngn": 7.646043794008915, "nok": 0.19049110808165004, "nzd": 0.03068411636782055, "php": 0.9870346797409563, "pkr": 3.313943368267861, "pln": 0.07830012540624261, "rub": 1.363330058509926, "sar": 0.0740258192057212, "sek": 0.18401215641235863, "sgd": 0.027445449533937512, "thb": 0.6093156964103101, "try": 0.13525091800153857, "twd": 0.5823621982670103, "uah": 0.5268535777874842, "usd": 0.019731725920023008, "vef": 4903.09005121215, "vnd": 457.490512279899, "xag": 0.001109429115475141, "xau": 1.1172497850435435e-05, "xdr": 0.014293879305449798, "xlm": 0.29146378128483796, "xrp": 0.10752007162333488, "zar": 0.3385105837798433, "bits": 2.13251433109543, "link": 0.0041041600540054676, "sats": 213.251433109543}, "market_cap": {"aed": 51563901.88089436, "ars": 984827162.946506, "aud": 20369538.090236552, "bch": 60344.13562265309, "bdt": 1190704098.943012, "bhd": 5301457.530471325, "bmd": 14037869.400221715, "bnb": 880974.4540892486, "brl": 75244383.7721285, "btc": 1515.8191507721797, "cad": 19136774.513117272, "chf": 13312097.514360854, "clp": 11358047291.03278, "cny": 99362847.18864933, "czk": 334073215.98647636, "dkk": 93240932.34321268, "eos": 5650558.398234619, "eth": 60274.13861752663, "eur": 12508443.529067565, "gbp": 11296189.279142011, "hkd": 108815246.54928856, "huf": 4428664272.921671, "idr": 198250498460.2314, "ils": 48260370.074940294, "inr": 1060425694.0878628, "jpy": 1504452501.4911618, "krw": 16879134166.826511, "kwd": 4320238.535134633, "lkr": 2615851650.635076, "ltc": 330910.6040174633, "mmk": 19434673627.673435, "mxn": 318118475.51965415, "myr": 60068043.16354871, "ngn": 5439674392.585915, "nok": 135439680.22179013, "nzd": 21821825.869036466, "php": 701909094.1597283, "pkr": 2357660165.7672324, "pln": 55688620.971022785, "rub": 969486144.0919918, "sar": 52651331.396113165, "sek": 130835259.05851735, "sgd": 19524781.223339304, "thb": 433494699.3556108, "try": 96232121.5550119, "twd": 414313705.5538827, "uah": 374822848.6447385, "usd": 14037869.400221715, "vef": 3488237069348.1733, "vnd": 325355144508.8699, "xag": 788645.3972240454, "xau": 7950.347334815573, "xdr": 10169187.010084001, "xlm": 207222325.17267638, "xrp": 76350511.39155544, "zar": 240825264.70856422, "bits": 1515819150.7721796, "link": 2917290.785333191, "sats": 151581915077.21796}, "total_volume": {"aed": 2168781.3351163613, "ars": 41425563.88279298, "aud": 857190.5708263232, "bch": 2540.002349043611, "bdt": 50081098.040235355, "bhd": 222979.67612219133, "bmd": 590433.7730361423, "bnb": 37103.419095711644, "brl": 3165315.457246757, "btc": 63.8113709700693, "cad": 805228.2657627315, "chf": 559946.1347316485, "clp": 477720294.0447205, "cny": 4179208.332304426, "czk": 14053357.05736302, "dkk": 3922841.9880521283, "eos": 237976.68647636683, "eth": 2538.835422216711, "eur": 526256.5740759788, "gbp": 475235.4204466065, "hkd": 4576717.870001006, "huf": 186314810.45394498, "idr": 8337721370.43013, "ils": 2029834.5553077618, "inr": 44601280.42138555, "jpy": 63273835.287418224, "krw": 709937568.6986598, "kwd": 181710.71712205684, "lkr": 110022904.17111996, "ltc": 13931.327226734456, "mmk": 817423737.9307762, "mxn": 13387455.810758676, "myr": 2526466.1148216557, "ngn": 228793087.05150515, "nok": 5700078.347447119, "nzd": 918162.8952664479, "php": 29535105.66886557, "pkr": 99163352.18142003, "pln": 2342979.9633440794, "rub": 40795017.81051811, "sar": 2215079.608995214, "sek": 5506208.237203155, "sgd": 821252.0479291589, "thb": 18232594.911356065, "try": 4047122.392938509, "twd": 17426063.558256235, "uah": 15765075.342699284, "usd": 590433.7730361423, "vef": 146715496161.20892, "vnd": 13689519628.871038, "xag": 33197.522670909566, "xau": 334.31541096852476, "xdr": 427716.7199588853, "xlm": 8721490.496315753, "xrp": 3217330.3958809427, "zar": 10129275.158387514, "bits": 63811370.9700693, "link": 122809.05966627377, "sats": 6381137097.006929}}, "community_data": {"facebook_likes": null, "twitter_followers": 54615, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.091, "reddit_subscribers": 8235, "reddit_accounts_active_48h": "250.833333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 457360, "bing_matches": null}}, "CTXC_20200710": {"id": "cortex", "symbol": "ctxc", "name": "Cortex", "localization": {"en": "Cortex", "de": "Cortex", "es": "Cortex", "fr": "Cortex", "it": "Cortex", "pl": "Cortex", "ro": "Cortex", "hu": "Cortex", "nl": "Cortex", "pt": "Cortex", "sv": "Cortex", "vi": "Cortex", "tr": "Cortex", "ru": "Cortex", "ja": "\u30b3\u30eb\u30c6\u30c3\u30af\u30b9", "zh": "Cortex", "zh-tw": "Cortex", "ko": "\ucf54\ub974\ud14d\uc2a4", "ar": "Cortex", "th": "Cortex", "id": "Cortex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3861/thumb/2638.png?1523930406", "small": "https://assets.coingecko.com/coins/images/3861/small/2638.png?1523930406"}, "market_data": {"current_price": {"aed": 0.4142544149773951, "ars": 7.9798300946047105, "aud": 0.16166500716222587, "bch": 0.0004651472390893669, "bdt": 9.562806600877504, "bhd": 0.04252017295973061, "bmd": 0.11277752776254907, "bnb": 0.006916335269606185, "brl": 0.6040477164489891, "btc": 1.2070594409999096e-05, "cad": 0.15269344205118654, "chf": 0.10622910061301667, "clp": 90.15427438078417, "cny": 0.7915629118597798, "czk": 2.659632437224196, "dkk": 0.7429129419335706, "eos": 0.04318298971774542, "eth": 0.0004672310275435741, "eur": 0.09970097341848157, "gbp": 0.0902653287807001, "hkd": 0.8740540345416957, "huf": 35.131666005894964, "idr": 1636.4583165984645, "ils": 0.38967680835210305, "inr": 8.414077033038685, "jpy": 12.10850024013575, "krw": 134.42404565185, "kwd": 0.03471393804306251, "lkr": 20.95369192855238, "ltc": 0.0025591503335474527, "mmk": 154.27644100018802, "mxn": 2.517848529321124, "myr": 0.48240587500430393, "ngn": 43.70955803688512, "nok": 1.0587328751292577, "nzd": 0.1719783992985832, "php": 5.571209871469929, "pkr": 18.75628348940683, "pln": 0.445129631530476, "rub": 8.099941432220126, "sar": 0.42300674057446397, "sek": 1.0418092537581545, "sgd": 0.15697199589944266, "thb": 3.500707277654876, "try": 0.7737891734844022, "twd": 3.3168999818018636, "uah": 3.0514329592015956, "usd": 0.11277752776254907, "vef": 28023.821971484776, "vnd": 2612.8503165688417, "xag": 0.006163717063502969, "xau": 6.317233217619193e-05, "xdr": 0.08179934532662106, "xlm": 1.5673332254713435, "xrp": 0.5975403377585352, "zar": 1.915560142305224, "bits": 12.070594409999096, "link": 0.02099782302488242, "sats": 1207.0594409999096}, "market_cap": {"aed": 4155462.4057817045, "ars": 80040111.28049284, "aud": 1621707.3284024973, "bch": 4669.023495882314, "bdt": 95926275.94777958, "bhd": 426589.9147601474, "bmd": 1131292.1718887351, "bnb": 69544.51663589595, "brl": 6058974.614201689, "btc": 121.19080638535368, "cad": 1531775.2571982022, "chf": 1065605.95451236, "clp": 904354097.9006352, "cny": 7940313.496052655, "czk": 26683841.629071612, "dkk": 7452580.6332784295, "eos": 433658.9018593222, "eth": 4696.73298928963, "eur": 1000117.7132660644, "gbp": 905351.6306112891, "hkd": 8767633.117815739, "huf": 352400638.4349045, "idr": 16161602634.96085, "ils": 3908919.9027619953, "inr": 84401805.98662552, "jpy": 121448093.36665736, "krw": 1348534209.9191093, "kwd": 348221.9121368991, "lkr": 210190346.6162985, "ltc": 25706.59039597403, "mmk": 1547575421.0345879, "mxn": 25257994.91438831, "myr": 4839102.26525406, "ngn": 438458634.6666234, "nok": 10620322.025413638, "nzd": 1725504.516465463, "php": 55834076.67443959, "pkr": 188147737.4638648, "pln": 4464749.766530882, "rub": 81250308.8187865, "sar": 4243171.487868232, "sek": 10454143.124408377, "sgd": 1574646.7053441051, "thb": 35135106.62843434, "try": 7762926.8835005015, "twd": 33272319.80691017, "uah": 30609486.555302884, "usd": 1131292.1718887351, "vef": 281112124478.33185, "vnd": 26209983212.922695, "xag": 61802.46872443821, "xau": 633.489677492535, "xdr": 820544.3129456498, "xlm": 15716666.070830282, "xrp": 6011100.137121704, "zar": 19214658.151878595, "bits": 121190806.38535368, "link": 210821.68932910386, "sats": 12119080638.535368}, "total_volume": {"aed": 45781269.82341428, "ars": 881889827.8393358, "aud": 17866386.08136966, "bch": 51405.683296166004, "bdt": 1056832259.1994337, "bhd": 4699111.079634223, "bmd": 12463593.004305318, "bnb": 764357.8431971949, "brl": 66756250.49035972, "btc": 1333.9800847827275, "cad": 16874894.794284083, "chf": 11739894.476510331, "clp": 9963387261.39111, "cny": 87479466.5786182, "czk": 293928913.82053244, "dkk": 82102921.82842089, "eos": 4772362.182688399, "eth": 51635.97289122604, "eur": 11018439.395456122, "gbp": 9975660.42315791, "hkd": 96595961.68161727, "huf": 3882571247.5501637, "idr": 180852966288.9719, "ils": 43065078.99998605, "inr": 929880568.6489954, "jpy": 1338169242.398492, "krw": 14855854958.306524, "kwd": 3836406.09906222, "lkr": 2315694388.0250506, "ltc": 282824.14792177844, "mmk": 17049839705.899263, "mxn": 278259684.69552034, "myr": 53313019.07591603, "ngn": 4830555808.217561, "nok": 117005718.40581742, "nzd": 19006169.198020376, "php": 615701494.4126832, "pkr": 2072848095.9215386, "pln": 49193440.14379596, "rub": 895163915.8331175, "sar": 46748531.88569948, "sek": 115135406.7124054, "sgd": 17347738.585681476, "thb": 386880184.39068013, "try": 85515204.32113971, "twd": 366566746.3132173, "uah": 337228694.74038255, "usd": 12463593.004305318, "vef": 3097048839491.2544, "vnd": 288758794176.1802, "xag": 681182.3454309116, "xau": 6981.481621361631, "xdr": 9040043.42351072, "xlm": 173213616.32904083, "xrp": 66037088.42738674, "zar": 211697866.256027, "bits": 1333980084.7827275, "link": 2320571.530079889, "sats": 133398008478.27275}}, "community_data": {"facebook_likes": null, "twitter_followers": 16446, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 20062, "reddit_accounts_active_48h": "12.2307692307692"}, "developer_data": {"forks": 1, "stars": 8, "subscribers": 5, "total_issues": 8, "closed_issues": 4, "pull_requests_merged": 5, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 611246, "bing_matches": null}}, "SYS_20201229": {"id": "syscoin", "symbol": "sys", "name": "Syscoin", "localization": {"en": "Syscoin", "de": "Syscoin", "es": "Syscoin", "fr": "Syscoin", "it": "Syscoin", "pl": "Syscoin", "ro": "Syscoin", "hu": "Syscoin", "nl": "Syscoin", "pt": "Syscoin", "sv": "Syscoin", "vi": "Syscoin", "tr": "Syscoin", "ru": "Syscoin", "ja": "\u30b7\u30b9\u30b3\u30a4\u30f3", "zh": "\u7cfb\u7edf\u5e01", "zh-tw": "\u7cfb\u7d71\u5e63", "ko": "\uc2dc\uc2a4\ucf54\uc778", "ar": "Syscoin", "th": "Syscoin", "id": "Syscoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/119/thumb/Syscoin.png?1560401261", "small": "https://assets.coingecko.com/coins/images/119/small/Syscoin.png?1560401261"}, "market_data": {"current_price": {"aed": 0.19393495552947063, "ars": 4.374052555324141, "aud": 0.06947514400438246, "bch": 0.00016558868934005323, "bdt": 4.478965600803003, "bhd": 0.019898343109511572, "bmd": 0.05279727636106673, "bnb": 0.0015945932873081506, "brl": 0.2754328313204128, "btc": 2.1411700841659984e-06, "cad": 0.06796857372341938, "chf": 0.04696845705080497, "clp": 37.73952508524271, "cny": 0.34538922249882603, "czk": 1.1328869980623195, "dkk": 0.32199474934323763, "dot": 0.010135838275419732, "eos": 0.019829966314179288, "eth": 8.431477107869828e-05, "eur": 0.043304326071347, "gbp": 0.03887980871773682, "hkd": 0.4093927207675298, "huf": 15.676039324364348, "idr": 744.6545281066052, "ils": 0.1700048540051988, "inr": 3.8837175445048064, "jpy": 5.464518539475923, "krw": 58.081755752046064, "kwd": 0.016113728745397595, "lkr": 10.022803850706294, "ltc": 0.0004146493805824182, "mmk": 70.80663767217574, "mxn": 1.0497207283383654, "myr": 0.21438334066411105, "ngn": 20.851085325454445, "nok": 0.45669274471388205, "nzd": 0.0741181892848509, "php": 2.542188856785365, "pkr": 8.464051276057228, "pln": 0.19524110734936706, "rub": 3.9101662873006116, "sar": 0.19813513725582263, "sek": 0.43732643975826063, "sgd": 0.07015702082858552, "thb": 1.5876141001772779, "try": 0.3990154160987621, "twd": 1.4847650058259214, "uah": 1.498668059812804, "usd": 0.05279727636106673, "vef": 13119.470719707984, "vnd": 1212.7181040172688, "xag": 0.002045218653853917, "xau": 2.819110571299154e-05, "xdr": 0.03666496297439001, "xlm": 0.3460941077849734, "xrp": 0.1660551515551695, "yfi": 2.2348544801902762e-06, "zar": 0.7696005548226179, "bits": 2.1411700841659984, "link": 0.0045656319978060024, "sats": 214.11700841659984}, "market_cap": {"aed": 116914460.40228626, "ars": 2636915005.2438684, "aud": 41883367.28913824, "bch": 99825.80092412584, "bdt": 2700162252.589423, "bhd": 11995795.4005593, "bmd": 31829048.350834716, "bnb": 961306.9146702128, "brl": 166045779.43663448, "btc": 1290.8129137232534, "cad": 40975125.39444715, "chf": 28315121.412902568, "clp": 22751423017.750916, "cny": 208219268.50149035, "czk": 682965439.1783675, "dkk": 194115817.17723566, "dot": 6110430.476343185, "eos": 11954574.177141966, "eth": 50829.49557853342, "eur": 26106185.457354676, "gbp": 23438847.547457986, "hkd": 246804032.36479014, "huf": 9450362745.846352, "idr": 448917948298.7685, "ils": 102488103.38251211, "inr": 2341314590.9205194, "jpy": 3294306767.219341, "krw": 35014817800.26986, "kwd": 9714225.556674777, "lkr": 6042287223.17784, "ltc": 249973.03067197086, "mmk": 42686063550.23315, "mxn": 632828322.2161311, "myr": 129241850.82856409, "ngn": 12570159840.30319, "nok": 275319040.2013358, "nzd": 44682445.630158916, "php": 1532568678.0926929, "pkr": 5102587024.891121, "pln": 117701879.2294376, "rub": 2357259320.8628254, "sar": 119446556.68574025, "sek": 263643986.12100765, "sgd": 42294439.448589206, "thb": 957099483.9096009, "try": 240548032.91143355, "twd": 895096497.7221754, "uah": 903478009.1953522, "usd": 31829048.350834716, "vef": 7909125179473.723, "vnd": 731091939378.1847, "xag": 1232968.2117759564, "xau": 16995.12036692817, "xdr": 22103618.969140433, "xlm": 208644211.40386936, "xrp": 100107009.528472, "yfi": 1347.2909250203354, "zar": 463956759.86691016, "bits": 1290812913.7232533, "link": 2752409.435223171, "sats": 129081291372.32533}, "total_volume": {"aed": 9850317.950535432, "ars": 222166283.97219178, "aud": 3528772.0887347064, "bch": 8410.55824391646, "bdt": 227495013.1448382, "bhd": 1010673.9436550396, "bmd": 2681672.0980440527, "bnb": 80992.36591408547, "brl": 13989747.001076208, "btc": 108.75402042724961, "cad": 3452250.5754170185, "chf": 2385615.49841999, "clp": 1916860838.0935087, "cny": 17542962.53098457, "czk": 57541442.70936077, "dkk": 16354713.624341263, "dot": 514818.1225788306, "eos": 1007200.9587430478, "eth": 4282.504413834664, "eur": 2199507.4548157356, "gbp": 1974777.9696554446, "hkd": 20793819.531838506, "huf": 796215262.630261, "idr": 37822391765.99256, "ils": 8634863.480457447, "inr": 197261254.6252997, "jpy": 277553084.29817164, "krw": 2950080658.3372903, "kwd": 818446.3243230465, "lkr": 509076893.4139108, "ltc": 21060.81508399715, "mmk": 3596401134.4685245, "mxn": 53317272.82052169, "myr": 10888929.554107856, "ngn": 1059065497.0308253, "nok": 23196275.9310342, "nzd": 3764601.014708792, "php": 129122511.52082126, "pkr": 429904944.11477697, "pln": 9916659.836568942, "rub": 198604635.58114302, "sar": 10063653.010951132, "sek": 22212625.197111133, "sgd": 3563405.88388094, "thb": 80637879.98818474, "try": 20266736.880967945, "twd": 75413982.741195, "uah": 76120144.7731008, "usd": 2681672.0980440527, "vef": 666362376906.444, "vnd": 61596213412.51871, "xag": 103880.46839635223, "xau": 1431.87881675062, "xdr": 1862281.8251424935, "xlm": 17578764.96880837, "xrp": 8434250.72946277, "yfi": 113.5124255601643, "zar": 39089446.970581174, "bits": 108754020.42724961, "link": 231896.96102358017, "sats": 10875402042.72496}}, "community_data": {"facebook_likes": null, "twitter_followers": 60940, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4490, "reddit_accounts_active_48h": "292.833333333333"}, "developer_data": {"forks": 52, "stars": 116, "subscribers": 52, "total_issues": 243, "closed_issues": 242, "pull_requests_merged": 144, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 329298, "bing_matches": null}}, "ARDR_20210101": {"id": "ardor", "symbol": "ardr", "name": "Ardor", "localization": {"en": "Ardor", "de": "Ardor", "es": "Ardor", "fr": "Ardor", "it": "Ardor", "pl": "Ardor", "ro": "Ardor", "hu": "Ardor", "nl": "Ardor", "pt": "Ardor", "sv": "Ardor", "vi": "Ardor", "tr": "Ardor", "ru": "Ardor", "ja": "\u30a2\u30fc\u30c0\u30fc", "zh": "\u963f\u6735\u5e01", "zh-tw": "\u963f\u6735\u5e63", "ko": "\uc544\ub354", "ar": "Ardor", "th": "Ardor", "id": "Ardor"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/525/thumb/Ardor_Vertical_1.png?1606797362", "small": "https://assets.coingecko.com/coins/images/525/small/Ardor_Vertical_1.png?1606797362"}, "market_data": {"current_price": {"aed": 0.2495030736207449, "ars": 5.694758899068988, "aud": 0.08953765438373074, "bch": 0.00018650093770248178, "bdt": 5.759863564888605, "bhd": 0.02560714464888517, "bmd": 0.06792526233821873, "bnb": 0.0018919237222581589, "brl": 0.3563834739099309, "btc": 2.5018631527759375e-06, "cad": 0.08723301815785729, "chf": 0.06033801053503976, "clp": 48.36294104308245, "cny": 0.44403423243116913, "czk": 1.463796807242208, "dkk": 0.4133039607209485, "dot": 0.010261024348159627, "eos": 0.024501759211650546, "eth": 9.257556596758999e-05, "eur": 0.0555853478544969, "gbp": 0.05045169237749894, "hkd": 0.5267366355910684, "huf": 20.22664876855009, "idr": 959.7983803609358, "ils": 0.21887964834818244, "inr": 4.995570482891584, "jpy": 7.0434421528992495, "krw": 74.45288004892156, "kwd": 0.020732488197182805, "lkr": 12.770262794670797, "ltc": 0.0005188315817891133, "mmk": 91.22642590896126, "mxn": 1.359319874435596, "myr": 0.27511497303799387, "ngn": 25.87952495086126, "nok": 0.5859912381918133, "nzd": 0.09560208973054919, "php": 3.2632631437937807, "pkr": 10.898608342167197, "pln": 0.24985513025544404, "rub": 5.024125991477524, "sar": 0.2549136603922967, "sek": 0.5621347992544319, "sgd": 0.09032905161523337, "thb": 2.0468022546774196, "try": 0.5060432044197285, "twd": 1.9101941595501226, "uah": 1.926382583547405, "usd": 0.06792526233821873, "vef": 16878.588287025348, "vnd": 1568.485704701687, "xag": 0.0025714697509271432, "xau": 3.6185145752815755e-05, "xdr": 0.047162207772983626, "xlm": 0.470620544640603, "xrp": 0.2772247294868392, "yfi": 2.96194163354211e-06, "zar": 0.9942899901068454, "bits": 2.501863152775938, "link": 0.005362902776221305, "sats": 250.18631527759376}, "market_cap": {"aed": 248920117.08610258, "ars": 5681717553.302731, "aud": 89384427.48479663, "bch": 186079.0951996086, "bdt": 5746405814.428576, "bhd": 25547314.31457304, "bmd": 67766556.97650631, "bnb": 1892722.574086453, "brl": 355550794.48863405, "btc": 2499.270657286121, "cad": 87037671.61670025, "chf": 60210043.74117003, "clp": 48249767424.10664, "cny": 442996759.6111194, "czk": 1460369302.8437095, "dkk": 412359499.2020398, "dot": 10531305.734664869, "eos": 24415143.758518364, "eth": 92486.01871113958, "eur": 55459743.63023092, "gbp": 50346079.24078356, "hkd": 525512707.71356064, "huf": 20181219500.388443, "idr": 957500993443.517, "ils": 218368242.5388144, "inr": 4983901530.054125, "jpy": 7026405107.977713, "krw": 74278923101.94843, "kwd": 20684047.3531541, "lkr": 12740425454.243603, "ltc": 517223.0768310929, "mmk": 91013278069.36174, "mxn": 1356744817.6752107, "myr": 274472175.05966455, "ngn": 25819058208.048775, "nok": 585101061.0610287, "nzd": 95409755.36524855, "php": 3255798894.1096168, "pkr": 10873144066.880419, "pln": 249309300.42281872, "rub": 5012387270.045766, "sar": 254318062.182065, "sek": 560981994.7012926, "sgd": 90150867.24420083, "thb": 2044442141.9357321, "try": 504854072.81927407, "twd": 1905731047.52675, "uah": 1921881647.751289, "usd": 67766556.97650631, "vef": 16839151965882.404, "vnd": 1564820984352.6333, "xag": 2567741.9327312275, "xau": 36118.219537338344, "xdr": 47052014.672712654, "xlm": 472455910.9371481, "xrp": 276707338.68142235, "yfi": 2950.3402862194193, "zar": 991182801.9578793, "bits": 2499270657.286121, "link": 5353354.523307385, "sats": 249927065728.61212}, "total_volume": {"aed": 21896892.605308782, "ars": 499783518.5613207, "aud": 7858005.008595588, "bch": 16367.698178613064, "bdt": 505497235.24973166, "bhd": 2247334.624652998, "bmd": 5961257.92369291, "bnb": 166039.0389686906, "brl": 31276931.94823947, "btc": 219.568552701625, "cad": 7655745.48850261, "chf": 5295385.413616417, "clp": 4244429179.6860914, "cny": 38969339.17297287, "czk": 128465758.03269584, "dkk": 36272388.591941185, "dot": 900528.1775151188, "eos": 2150323.7708172225, "eth": 8124.618251995163, "eur": 4878282.1579535445, "gbp": 4427742.206596677, "hkd": 46227468.757965274, "huf": 1775131462.0014265, "idr": 84233840299.13329, "ils": 19209319.08299108, "inr": 438421333.9688195, "jpy": 618146679.1394123, "krw": 6534134810.159799, "kwd": 1819524.9497591679, "lkr": 1120744000.8595836, "ltc": 45533.70530395783, "mmk": 8006215001.307283, "mxn": 119296651.84013698, "myr": 24144644.51801645, "ngn": 2271239268.926992, "nok": 51427772.10769876, "nzd": 8390232.07728081, "php": 286390550.487285, "pkr": 956483833.8565274, "pln": 21927789.805127297, "rub": 440927422.95490843, "sar": 22371736.605220627, "sek": 49334082.94477089, "sgd": 7927459.624664539, "thb": 179631491.12584278, "try": 44411371.53151208, "twd": 167642489.3688339, "uah": 169063218.086014, "usd": 5961257.92369291, "vef": 1481298926248.9287, "vnd": 137653466670.39734, "xag": 225677.3680449367, "xau": 3175.681321109676, "xdr": 4139050.4078680715, "xlm": 41302607.51621616, "xrp": 24329800.996104352, "yfi": 259.9459674450756, "zar": 87260893.48701678, "bits": 219568552.701625, "link": 470659.1563762863, "sats": 21956855270.1625}}, "community_data": {"facebook_likes": null, "twitter_followers": 64246, "reddit_average_posts_48h": 0.273, "reddit_average_comments_48h": 0.455, "reddit_subscribers": 6291, "reddit_accounts_active_48h": "319.5"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "GVT_20210207": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 10.404077413302915, "ars": 248.6189857950378, "aud": 3.7112294696351666, "bch": 0.006352697593770518, "bdt": 240.33470091690668, "bhd": 1.0678879654029938, "bmd": 2.8324287850655847, "bnb": 0.054103475382675896, "brl": 15.163407500848614, "btc": 7.551226408784089e-05, "cad": 3.620625737658493, "chf": 2.5452233386887184, "clp": 2075.320641628268, "cny": 18.298056437280696, "czk": 60.90004564283747, "dkk": 17.499430481901157, "dot": 0.13610015433727718, "eos": 0.9235654744750997, "eth": 0.0017103042712402748, "eur": 2.352711651454165, "gbp": 2.0756604622717583, "hkd": 21.955996591753586, "huf": 836.4502093752883, "idr": 39633.55793080236, "ils": 9.350130662379957, "inr": 206.26638627914838, "jpy": 297.4276818621663, "krw": 3154.305992200434, "kwd": 0.8581154571522519, "lkr": 548.4103124837687, "ltc": 0.018239449665204948, "mmk": 3810.528823127858, "mxn": 57.23627634992489, "myr": 11.475585222693205, "ngn": 1099.068177035491, "nok": 24.30645929475241, "nzd": 3.923927876820886, "php": 136.0698788345505, "pkr": 454.51683343524655, "pln": 10.556847292254153, "rub": 215.0473403771694, "sar": 10.624902058672962, "sek": 23.788946231433094, "sgd": 3.7733842868946477, "thb": 84.95770156068083, "try": 20.278773886677044, "twd": 79.00861542682577, "uah": 79.29149858687691, "usd": 2.8324287850655847, "vef": 0.2836110942486164, "vnd": 65074.36948630029, "xag": 0.10563245748879684, "xau": 0.0015446933622233665, "xdr": 1.9699089011525497, "xlm": 8.254624581807796, "xrp": 7.174608334961257, "yfi": 8.335909512419983e-05, "zar": 42.29966142189646, "bits": 75.51226408784089, "link": 0.11344322447226458, "sats": 7551.226408784089}, "market_cap": {"aed": 46327383.92453715, "ars": 1107410607.6520283, "aud": 16528390.221194007, "bch": 28330.98257662224, "bdt": 1070164851.4773703, "bhd": 4755102.619513446, "bmd": 12612268.301354976, "bnb": 241028.1370890647, "brl": 67526084.48545451, "btc": 336.6465509879612, "cad": 16121795.915694911, "chf": 11333308.621987782, "clp": 9241009299.7095, "cny": 81477775.6804135, "czk": 271156201.11815107, "dkk": 77925126.72075109, "dot": 609232.3647224659, "eos": 4120141.509785374, "eth": 7641.68568102737, "eur": 10476431.113593701, "gbp": 9241765.720500879, "hkd": 97763177.94051363, "huf": 3724554176.6097264, "idr": 176469716662.27768, "ils": 41634358.88960289, "inr": 918465106.3498169, "jpy": 1324254538.8847601, "krw": 14045526471.120955, "kwd": 3821025.416846796, "lkr": 2441967133.2054596, "ltc": 81297.02564141604, "mmk": 16967562305.797647, "mxn": 254866952.11621913, "myr": 51098605.02293983, "ngn": 4893942189.593931, "nok": 108234488.47317697, "nzd": 17476744.511577785, "php": 605904770.6876382, "pkr": 2023877274.86496, "pln": 47000425.01017077, "rub": 957441429.6949095, "sar": 47310674.19811574, "sek": 105941792.50455153, "sgd": 16805759.225677393, "thb": 378311306.44556236, "try": 90297534.90355103, "twd": 351793999.72969395, "uah": 353070008.1382806, "usd": 12612268.301354976, "vef": 1262866.425014674, "vnd": 289798084922.66583, "xag": 470133.65197447716, "xau": 6878.4788861929665, "xdr": 8771630.807299582, "xlm": 36890568.573629655, "xrp": 32040904.948062904, "yfi": 374.7618293359727, "zar": 188511790.61986238, "bits": 336646550.9879611, "link": 506214.45271502243, "sats": 33664655098.796112}, "total_volume": {"aed": 2568303.4585254, "ars": 61372957.515294306, "aud": 916137.3088264499, "bch": 1568.1981739375758, "bdt": 59327936.447236024, "bhd": 263613.9895840574, "bmd": 699200.549527768, "bnb": 13355.739045722601, "brl": 3743170.141896908, "btc": 18.6406157234, "cad": 893771.2816481567, "chf": 628302.3130062016, "clp": 512304260.11900806, "cny": 4516975.390059289, "czk": 15033509.616995418, "dkk": 4319830.201515534, "dot": 33597.06807288177, "eos": 227987.1927169781, "eth": 422.19797108974774, "eur": 580779.7492564477, "gbp": 512388.14670493815, "hkd": 5419957.93974691, "huf": 206482312.68214434, "idr": 9783760718.38854, "ils": 2308130.9340461046, "inr": 50917986.49834297, "jpy": 73421651.30481172, "krw": 778657699.9761028, "kwd": 211830.4976854815, "lkr": 135378087.48348367, "ltc": 4502.507987575077, "mmk": 940649897.7734071, "mxn": 14129088.112576865, "myr": 2832811.02641175, "ngn": 271310995.49742216, "nok": 6000182.523767034, "nzd": 968643.0748926892, "php": 33589594.399313934, "pkr": 112199968.23333612, "pln": 2606015.539364715, "rub": 53085613.081961475, "sar": 2622815.230968228, "sek": 5872431.591362819, "sgd": 931480.5656852877, "thb": 20972273.665291358, "try": 5005926.334344053, "twd": 19503709.18949178, "uah": 19573540.445974838, "usd": 699200.549527768, "vef": 70010.95102421528, "vnd": 16063964306.852161, "xag": 26075.950334061148, "xau": 381.3160116904634, "xdr": 486282.79498776945, "xlm": 2037699.2615585893, "xrp": 1771091.3393133236, "yfi": 20.57764891611509, "zar": 10441902.958680639, "bits": 18640615.7234, "link": 28004.080917915366, "sats": 1864061572.34}}, "community_data": {"facebook_likes": null, "twitter_followers": 21496, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 5463, "reddit_accounts_active_48h": "28.5384615384615"}, "developer_data": {"forks": 2, "stars": 17, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 282943, "bing_matches": null}}, "BNT_20190606": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 2.786123748010797, "ars": 33.71480630823365, "aud": 1.0945979214684665, "bch": 0.0017111172389272556, "bdt": 63.73070710096364, "bhd": 0.28566027581289355, "bmd": 0.7585565924545203, "bnb": 0.022828360038741353, "brl": 2.9778754762344186, "btc": 8.67469669913508e-05, "cad": 1.0258340078058683, "chf": 0.7583290254767846, "clp": 538.3202464602307, "cny": 5.237833270898468, "czk": 17.540862643918352, "dkk": 5.069661274351296, "eos": 0.09775381297408504, "eth": 0.0028098532566241457, "eur": 0.6788891863319844, "gbp": 0.6002663126372587, "hkd": 5.944921798554948, "huf": 220.55577341681567, "idr": 10801.390742596903, "ils": 2.752129034319951, "inr": 52.78011737931004, "jpy": 82.08966696139144, "krw": 901.8256585134022, "kwd": 0.23063002925668724, "lkr": 133.18446729986843, "ltc": 0.006609689238447463, "mmk": 1154.4454734503984, "mxn": 14.886862766068123, "myr": 3.1799321957665287, "ngn": 273.0803732836273, "nok": 6.643457600631504, "nzd": 1.1611157490608073, "php": 39.51741833870455, "pkr": 110.9798849420504, "pln": 2.9072060684115737, "rub": 49.77193225731093, "sar": 2.8447768608525665, "sek": 7.196829186166636, "sgd": 1.04251011593439, "thb": 23.93246049194011, "try": 4.445144666009859, "twd": 23.922521124909156, "uah": 20.275732240090207, "usd": 0.7585565924545203, "vef": 188491.9391653914, "vnd": 17714.82593407307, "xag": 0.051899053897174155, "xau": 0.0005796055067285744, "xdr": 0.5470353623183553, "xlm": 5.538036318283223, "xrp": 1.7012302688700378, "zar": 11.089041470908363, "bits": 86.7469669913508, "link": 0.7409717143368506, "sats": 8674.69669913508}, "market_cap": {"aed": 181183810.11781284, "ars": 2192500268.041271, "aud": 71182560.39427228, "bch": 111383.81905656536, "bdt": 4144457812.5071034, "bhd": 18576711.536247466, "bmd": 49329529.49739627, "bnb": 1484667.4972026027, "brl": 193653575.23181203, "btc": 5643.680795091428, "cad": 66710789.2158037, "chf": 49314730.63854703, "clp": 35007387373.53689, "cny": 340620401.1795213, "czk": 1140696040.0977924, "dkk": 329684044.4899482, "eos": 6357855.596199711, "eth": 182756.3947043222, "eur": 44148695.66193219, "gbp": 39035788.588586085, "hkd": 386602922.1005188, "huf": 14342914739.401161, "idr": 702422902325.2228, "ils": 178973107.25338688, "inr": 3432332383.6840982, "jpy": 5338355355.531599, "krw": 58646429107.15045, "kwd": 14998051.489329362, "lkr": 8661090251.691093, "ltc": 429719.52498125157, "mmk": 75074493587.13644, "mxn": 968104348.768775, "myr": 206793482.0040332, "ngn": 17758630619.062656, "nok": 432029252.5764339, "nzd": 75508266.83589867, "php": 2569848674.4309015, "pkr": 7217108864.813869, "pln": 189057888.2752459, "rub": 3236707748.4421597, "sar": 184998067.9976101, "sek": 468015440.3219612, "sgd": 67795249.59227452, "thb": 1556346655.6428506, "try": 289071240.1728597, "twd": 1555700290.817847, "uah": 1318546752.5665228, "usd": 49329529.49739627, "vef": 12257778477665.836, "vnd": 1152009009147.8452, "xag": 3375036.135172873, "xau": 37692.20019366549, "xdr": 35574138.18563583, "xlm": 360230154.65316963, "xrp": 110644675.5567129, "zar": 721129054.5468752, "bits": 5643680795.091428, "link": 48206963.06679872, "sats": 564368079509.1428}, "total_volume": {"aed": 11548521.851967752, "ars": 139748343.07466936, "aud": 4537123.673785964, "bch": 7092.604856169353, "bdt": 264164671.12141454, "bhd": 1184065.8333355377, "bmd": 3144227.671211565, "bnb": 94623.87122618585, "brl": 12343335.443834992, "btc": 359.56738985724974, "cad": 4252096.291162951, "chf": 3143284.402910204, "clp": 2231344940.8129263, "cny": 21710892.069715876, "czk": 72707120.66909632, "dkk": 21013816.795008253, "eos": 405190.9201988594, "eth": 11646.880996622893, "eur": 2814005.1600425704, "gbp": 2488112.250376836, "hkd": 24641783.89343573, "huf": 914206761.5267581, "idr": 44771915501.44998, "ils": 11407613.28888242, "inr": 218774323.76776928, "jpy": 340262816.18009114, "krw": 3738079951.202108, "kwd": 955964.6926998209, "lkr": 552051477.2731676, "ltc": 27397.254217234724, "mmk": 4785192612.69924, "mxn": 61706254.10444496, "myr": 13180863.368615612, "ngn": 1131921961.6361635, "nok": 27537224.55016268, "nzd": 4812840.998274522, "php": 163800250.99161968, "pkr": 460013173.2473102, "pln": 12050409.76130189, "rub": 206305354.41887575, "sar": 11791639.823961178, "sek": 29830957.50167756, "sgd": 4321218.992286872, "thb": 99200383.02672485, "try": 18425186.730210453, "twd": 99159184.21154886, "uah": 84043193.34577575, "usd": 3144227.671211565, "vef": 781301720688.274, "vnd": 73428200936.69978, "xag": 215122.30332765722, "xau": 2402.4729212960447, "xdr": 2267469.217777236, "xlm": 22955237.89434962, "xrp": 7051623.22718139, "zar": 45964231.788194634, "bits": 359567389.85724974, "link": 3071338.1057889624, "sats": 35956738985.724976}}, "community_data": {"facebook_likes": null, "twitter_followers": 802, "reddit_average_posts_48h": 0.208, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5134, "reddit_accounts_active_48h": "158.68"}, "developer_data": {"forks": 213, "stars": 547, "subscribers": 69, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 198, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 369, "deletions": -369}, "commit_count_4_weeks": 5}, "public_interest_stats": {"alexa_rank": 144123, "bing_matches": null}}, "PPT_20190607": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 3.4055684823507746, "ars": 41.5892321564816, "aud": 1.3301506139818815, "bch": 0.002287555998610335, "bdt": 77.9700463059819, "bhd": 0.34957137863721327, "bmd": 0.9271442061664728, "bnb": 0.029977195838717434, "brl": 3.6023260986392156, "btc": 0.00011347912497874849, "cad": 1.2464433993281403, "chf": 0.9202879747618715, "clp": 652.7059303116869, "cny": 6.400818170532092, "czk": 21.274237047532818, "dkk": 6.15686705986137, "eos": 0.1379474886544041, "eth": 0.003688376449309585, "eur": 0.8244583496125052, "gbp": 0.7322260439830648, "hkd": 7.265333785572022, "huf": 266.34998754750393, "idr": 13231.407042529652, "ils": 3.3602487464091504, "inr": 64.1321408856854, "jpy": 100.16495145740113, "krw": 1092.6023611989422, "kwd": 0.28213461765748804, "lkr": 163.69893135131534, "ltc": 0.008682098374034742, "mmk": 1416.212774919284, "mxn": 18.356530919322573, "myr": 3.87683217376837, "ngn": 284.34585658919553, "nok": 8.066386379699853, "nzd": 1.4068959027915227, "php": 47.92309846245381, "pkr": 136.15112667554664, "pln": 3.5289148203949505, "rub": 60.57867528671122, "sar": 3.4769298447551975, "sek": 8.760197130644624, "sgd": 1.2670742122037628, "thb": 29.04279225816477, "try": 5.410566966828694, "twd": 29.07995961510162, "uah": 24.838193283199843, "usd": 0.9271442061664728, "vef": 230383.8778077106, "vnd": 21568.033321174113, "xag": 0.0627340074227864, "xau": 0.0006997806324882686, "xdr": 0.667537338430418, "xlm": 7.185382257083989, "xrp": 2.183153723616789, "zar": 13.409259766603771, "bits": 113.47912497874849, "link": 1.0153397469629084, "sats": 11347.91249787485}, "market_cap": {"aed": 122961646.41279574, "ars": 1501574606.6768098, "aud": 48016952.06363392, "bch": 82566.89030849768, "bdt": 2815190860.0139475, "bhd": 12621643.780997178, "bmd": 33475520.64894048, "bnb": 1083630.6913121364, "brl": 130072616.93560554, "btc": 4095.6811489532743, "cad": 45005293.37293132, "chf": 33226328.87322974, "clp": 23566766536.854107, "cny": 231108299.45615542, "czk": 768146503.2282009, "dkk": 222298345.83384982, "eos": 4976402.50527121, "eth": 133005.56386799258, "eur": 29768910.149565868, "gbp": 26434848.719493374, "hkd": 262321845.69932637, "huf": 9618554823.580711, "idr": 477774587688.99866, "ils": 121325329.48795496, "inr": 2315556094.057227, "jpy": 3616874304.776374, "krw": 39449562063.95038, "kwd": 10186768.311075842, "lkr": 5910522786.221783, "ltc": 313508.25648563216, "mmk": 51133857791.25669, "mxn": 662877472.8908645, "myr": 139977119.6565695, "ngn": 10266607427.823557, "nok": 291256780.20296496, "nzd": 50772020.88856225, "php": 1730671864.2299798, "pkr": 4915880207.296887, "pln": 127421221.79812695, "rub": 2187223568.160471, "sar": 125538223.76162414, "sek": 316178133.6828783, "sgd": 45750190.65841119, "thb": 1048453306.7248174, "try": 195340174.3000516, "twd": 1050062274.1492847, "uah": 896809198.1851133, "usd": 33475520.64894048, "vef": 8318253198845.129, "vnd": 778917860347.6348, "xag": 2265226.887355806, "xau": 25262.97116813592, "xdr": 24102140.538592603, "xlm": 259144919.5074168, "xrp": 78692420.54673222, "zar": 484123280.9046638, "bits": 4095681148.9532743, "link": 36645575.670395285, "sats": 409568114895.32745}, "total_volume": {"aed": 6779632.8848852655, "ars": 82793732.51380956, "aud": 2647996.330461999, "bch": 4553.950377027764, "bdt": 155218810.8128066, "bhd": 695908.95808021, "bmd": 1845711.6283911022, "bnb": 59677.07998182056, "brl": 7171327.960950794, "btc": 225.9084823696948, "cad": 2481356.2560927058, "chf": 1832062.5908991497, "clp": 1299373837.9462004, "cny": 12742423.940086488, "czk": 42351671.33938786, "dkk": 12256778.450712604, "eos": 274618.8588823115, "eth": 7342.632631576018, "eur": 1641289.836988646, "gbp": 1457678.4441962999, "hkd": 14463457.747979775, "huf": 530236036.6041952, "idr": 26340413579.619507, "ils": 6689412.654777878, "inr": 127671011.0455808, "jpy": 199403301.4848613, "krw": 2175097325.59378, "kwd": 561659.2770775534, "lkr": 325883523.98771155, "ltc": 17283.88078274213, "mmk": 2819324512.367402, "mxn": 36543250.06765024, "myr": 7717800.722749953, "ngn": 566061299.3112671, "nok": 16058152.594909687, "nzd": 2800776.9562137113, "php": 95402872.08007509, "pkr": 271042752.6292336, "pln": 7025184.514214778, "rub": 120596952.08744635, "sar": 6921695.463210892, "sek": 17439355.823495243, "sgd": 2522427.031247677, "thb": 57816916.759351306, "try": 10771082.103997318, "twd": 57890907.64711035, "uah": 49446614.524597704, "usd": 1845711.6283911022, "vef": 458636530795.70215, "vnd": 42936546049.31011, "xag": 124887.67790996708, "xau": 1393.087765760752, "xdr": 1328899.4524601966, "xlm": 14304294.303009156, "xrp": 4346111.626912689, "zar": 26694473.755783398, "bits": 225908482.3696948, "link": 2021286.83464008, "sats": 22590848236.969482}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 688169, "bing_matches": null}}, "WPR_20190608": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.04083088590337527, "ars": 0.49666051908762693, "aud": 0.015902896412410102, "bch": 2.8989678222422386e-05, "bdt": 0.9403988252128936, "bhd": 0.00419057868777544, "bmd": 0.011115947159526124, "bnb": 0.00038165375531748426, "brl": 0.042852809996010204, "btc": 1.449482224446979e-06, "cad": 0.014885976218415172, "chf": 0.011031910599000105, "clp": 7.7065695371818554, "cny": 0.07679229776215432, "czk": 0.25400606216346816, "dkk": 0.0737664924815427, "eos": 0.0017739657504241763, "eth": 4.6255315611939656e-05, "eur": 0.009876018833616785, "gbp": 0.008750473603978966, "hkd": 0.08716180906991826, "huf": 3.180272482340424, "idr": 158.7218305040835, "ils": 0.040233337047867815, "inr": 0.7705118817149973, "jpy": 1.2031345408113092, "krw": 13.084247923063403, "kwd": 0.0033827494598511927, "lkr": 1.9567957582271769, "ltc": 0.00010909331757782784, "mmk": 16.976749297479373, "mxn": 0.21754041982558558, "myr": 0.04633682573448458, "ngn": 3.4064820070367805, "nok": 0.09666688874682168, "nzd": 0.016820173256067054, "php": 0.5757022621488777, "pkr": 1.6390794230351868, "pln": 0.0422559725611209, "rub": 0.7243706966505198, "sar": 0.04168758083501288, "sek": 0.10488642025067298, "sgd": 0.015189096981508388, "thb": 0.3479458200139074, "try": 0.06422159548191382, "twd": 0.3484071318210266, "uah": 0.30174886624252983, "usd": 0.011115947159526124, "vef": 2762.175500946184, "vnd": 260.2099786750456, "xag": 0.0007499373751174294, "xau": 8.387093291334049e-06, "xdr": 0.007995367313432351, "xlm": 0.09201543498279183, "xrp": 0.02778068646798097, "zar": 0.16273749976330337, "bits": 1.449482224446979, "link": 0.012640975906110031, "sats": 144.9482224446979}, "market_cap": {"aed": 24504720.819298178, "ars": 298064925.60138565, "aud": 9541246.464555562, "bch": 17441.860138360298, "bdt": 564381843.8123319, "bhd": 2514982.4340879377, "bmd": 6671253.286810035, "bnb": 229326.2022847206, "brl": 25719842.906717595, "btc": 870.7520613497447, "cad": 8933822.181538202, "chf": 6619884.636501602, "clp": 4625109908.955912, "cny": 46087019.081269756, "czk": 152442280.45190004, "dkk": 44271370.78673154, "eos": 1067281.1826164208, "eth": 27819.10856974825, "eur": 5927448.572850435, "gbp": 5252744.700435623, "hkd": 52310297.70987055, "huf": 1908583042.3705492, "idr": 95257284843.00232, "ils": 24146100.92761239, "inr": 462418862.221951, "jpy": 722066435.1245277, "krw": 7852665531.371219, "kwd": 2030162.443975598, "lkr": 1174374072.3436015, "ltc": 65672.5394205237, "mmk": 10188622968.857958, "mxn": 130557427.51086575, "myr": 27809119.326067634, "ngn": 2044405569.7429352, "nok": 58012551.456771396, "nzd": 10094199.964486115, "php": 345517570.2442254, "pkr": 983696110.7624003, "pln": 25360008.846933674, "rub": 434686188.7872966, "sar": 25018867.638859317, "sek": 62949092.09391879, "sgd": 9116921.399248026, "thb": 208861930.0901268, "try": 38543826.318620354, "twd": 209090420.51519996, "uah": 181095059.811125, "usd": 6671253.286810035, "vef": 1657724000031.9473, "vnd": 156165430672.18674, "xag": 450107.3244600213, "xau": 5033.527317431043, "xdr": 4798432.351603857, "xlm": 55351787.07935582, "xrp": 16719106.281768916, "zar": 97681698.12231706, "bits": 870752061.3497447, "link": 7593853.613428979, "sats": 87075206134.97447}, "total_volume": {"aed": 855459.5517520369, "ars": 10405676.380303895, "aud": 333186.12456054566, "bch": 607.3710278115518, "bdt": 19702564.3623927, "bhd": 87798.01090550609, "bmd": 232893.38362363254, "bnb": 7996.136826935403, "brl": 897821.4608728758, "btc": 30.368516052585967, "cad": 311880.3391465049, "chf": 231132.70964343782, "clp": 161462539.34888327, "cny": 1608897.3620871403, "czk": 5321753.551830187, "dkk": 1545502.8514912536, "eos": 37166.863076950365, "eth": 969.1083277786018, "eur": 206915.29114733447, "gbp": 183333.67158852355, "hkd": 1826151.955000446, "huf": 66630797.05472126, "idr": 3325426401.4159393, "ils": 842940.1350219655, "inr": 16143214.489917357, "jpy": 25207215.376503848, "krw": 274131815.0618689, "kwd": 70872.95003742573, "lkr": 40997386.786186054, "ltc": 2285.6452533290867, "mmk": 355684723.04510736, "mxn": 4557751.464720527, "myr": 970816.0696351107, "ngn": 71370177.41146219, "nok": 2025295.5939362603, "nzd": 352404.2536837845, "php": 12061702.513287887, "pkr": 34340821.108653896, "pln": 885316.9493193551, "rub": 15176497.34383401, "sar": 873408.4119345285, "sek": 2197505.345949383, "sgd": 318231.10882453976, "thb": 7289912.247495142, "try": 1345524.9884552988, "twd": 7299577.322915499, "uah": 6322026.6753061395, "usd": 232893.38362363254, "vef": 57871127790.165085, "vnd": 5451733578.485999, "xag": 15712.152126168356, "xau": 175.72038687786682, "xdr": 167513.22403897007, "xlm": 1927841.6576834745, "xrp": 582041.0962794792, "zar": 3409559.834930119, "bits": 30368516.052585967, "link": 264844.69643739134, "sats": 3036851605.258597}}, "community_data": {"facebook_likes": null, "twitter_followers": 34990, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 9, "stars": 35, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 18, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1388186, "bing_matches": null}}, "NAS_20190609": {"id": "nebulas", "symbol": "nas", "name": "Nebulas", "localization": {"en": "Nebulas", "de": "Nebulas", "es": "Nebulas", "fr": "Nebulas", "it": "Nebulas", "pl": "Nebulas", "ro": "Nebulas", "hu": "Nebulas", "nl": "Nebulas", "pt": "Nebulas", "sv": "Nebulas", "vi": "Nebulas", "tr": "Nebulas", "ru": "Nebulas", "ja": "\u30cd\u30d6\u30e9\u30b9", "zh": "\u661f\u4e91\u5e01", "zh-tw": "\u661f\u96f2\u5e63", "ko": "\ub124\ubdf8\ub77c\uc2a4", "ar": "Nebulas", "th": "Nebulas", "id": "Nebulas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2431/thumb/193394331.png?1597976208", "small": "https://assets.coingecko.com/coins/images/2431/small/193394331.png?1597976208"}, "market_data": {"current_price": {"aed": 3.9140870493922963, "ars": 47.85457567121474, "aud": 1.528240880179176, "bch": 0.0026716704746741478, "bdt": 90.29774136537333, "bhd": 0.4017170689177851, "bmd": 1.0655851289093266, "bnb": 0.03438998780839482, "brl": 4.135429326784207, "btc": 0.00013634682615417998, "cad": 1.4301004898066336, "chf": 1.0593269474472427, "clp": 738.4451664085184, "cny": 7.362234214147431, "czk": 24.349865864593774, "dkk": 7.086259387196335, "eos": 0.1656174870822981, "eth": 0.004317385676673849, "eur": 0.9489035572937549, "gbp": 0.839773787486764, "hkd": 8.355226356149807, "huf": 304.9757918194936, "idr": 15223.481944163039, "ils": 3.8402622460763247, "inr": 73.95217803435128, "jpy": 115.40778538869043, "krw": 1257.1208271078383, "kwd": 0.324292719036362, "lkr": 188.2770291190383, "ltc": 0.010236784438520734, "mmk": 1630.1804385073065, "mxn": 21.047602631912, "myr": 4.448817913196437, "ngn": 326.81495903649045, "nok": 9.307012321217261, "nzd": 1.6078539419153786, "php": 55.13310710790128, "pkr": 156.94941133533925, "pln": 4.058174404938287, "rub": 69.59538938081303, "sar": 3.9959975126664165, "sek": 10.058191229916256, "sgd": 1.455923879820616, "thb": 33.44232368569037, "try": 6.09007155539235, "twd": 33.3772867629324, "uah": 28.713180161461374, "usd": 1.0655851289093266, "vef": 264784.7362897503, "vnd": 25017.72619468123, "xag": 0.07192853064396515, "xau": 0.0008002970552160613, "xdr": 0.7666842379097452, "xlm": 8.731013039582148, "xrp": 2.6416196148308626, "zar": 15.820086008477432, "bits": 136.34682615417998, "link": 0.9857970171244158, "sats": 13634.682615417998}, "market_cap": {"aed": 178075906.2329901, "ars": 2177199132.9037695, "aud": 69529082.06843881, "bch": 121628.94504315796, "bdt": 4108199925.4277196, "bhd": 18276581.535891455, "bmd": 48480024.870266356, "bnb": 1562375.0102529682, "brl": 188146128.51901704, "btc": 6199.651933147064, "cad": 65064071.77788718, "chf": 48195301.68420331, "clp": 33596414834.970257, "cny": 334953339.8311574, "czk": 1107825241.434657, "dkk": 322397546.6700318, "eos": 7532231.326897518, "eth": 196615.34073686015, "eur": 43171462.146972224, "gbp": 38206477.3599336, "hkd": 380130663.00713694, "huf": 13875225517.994572, "idr": 692609875309.0635, "ils": 174717161.6299532, "inr": 3364539662.8097944, "jpy": 5250610349.257387, "krw": 57194162446.22139, "kwd": 14754071.408842761, "lkr": 8565880666.459188, "ltc": 466097.85591634765, "mmk": 74166939888.46106, "mxn": 957584965.6413568, "myr": 202404103.83336234, "ngn": 14868823627.710691, "nok": 423433263.6213832, "nzd": 73151170.16657081, "php": 2508344318.301342, "pkr": 7140594550.807008, "pln": 184631326.71592242, "rub": 3166322536.324352, "sar": 181802517.26474229, "sek": 457609014.7535529, "sgd": 66238936.70059307, "thb": 1521497100.5284405, "try": 277074831.8994669, "twd": 1518538170.690508, "uah": 1306339259.592406, "usd": 48480024.870266356, "vef": 12046687075797.52, "vnd": 1138210317703.1719, "xag": 3272471.4899787926, "xau": 36410.437878564895, "xdr": 34881183.97405722, "xlm": 397053649.2230597, "xrp": 120116634.36600368, "zar": 719753065.5535225, "bits": 6199651933.147063, "link": 44823913.80342835, "sats": 619965193314.7063}, "total_volume": {"aed": 19616529.347139213, "ars": 239836435.98193035, "aud": 7659201.672631985, "bch": 13389.81520108701, "bdt": 452552094.81078094, "bhd": 2013316.1506706849, "bmd": 5340474.468080712, "bnb": 172354.9314509695, "brl": 20725847.363174442, "btc": 683.3398140846224, "cad": 7167343.974121785, "chf": 5309109.861529677, "clp": 3700922104.007591, "cny": 36897872.147416465, "czk": 122036084.61029728, "dkk": 35514748.00540271, "eos": 830037.8235721067, "eth": 21637.771914791832, "eur": 4755692.513825872, "gbp": 4208758.502126322, "hkd": 41874526.79235916, "huf": 1528470495.1370392, "idr": 76296688488.2348, "ils": 19246535.93551609, "inr": 370631785.23864204, "jpy": 578398022.4244334, "krw": 6300408572.0805855, "kwd": 1625282.6162944068, "lkr": 943602383.0076109, "ltc": 51304.47530280603, "mmk": 8170099951.679882, "mxn": 105485879.46707277, "myr": 22296480.904236965, "ngn": 1637923519.3603542, "nok": 46644665.28962119, "nzd": 8058204.5415656995, "php": 276314808.51940495, "pkr": 786595365.5665178, "pln": 20338662.964238618, "rub": 348796534.41184056, "sar": 20027046.279026054, "sek": 50409406.06352239, "sgd": 7296765.032381222, "thb": 167605450.7062454, "try": 30522077.277530186, "twd": 167279500.18755996, "uah": 143904040.50274086, "usd": 5340474.468080712, "vef": 1327041909021.633, "vnd": 125383251293.00679, "xag": 360489.71687868197, "xau": 4010.9099445073407, "xdr": 3842450.0178862014, "xlm": 43757885.64738492, "xrp": 13239207.009040259, "zar": 79286734.69532233, "bits": 683339814.0846224, "link": 4940594.287433086, "sats": 68333981408.46224}}, "community_data": {"facebook_likes": null, "twitter_followers": 24000, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5158, "reddit_accounts_active_48h": "1361.08333333333"}, "developer_data": {"forks": 208, "stars": 696, "subscribers": 116, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 27, "pull_request_contributors": 19, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 510015, "bing_matches": null}}, "SIG_20190610": {"id": "signal-token", "symbol": "sig", "name": "Signal Token", "localization": {"en": "Signal Token", "de": "Signal Token", "es": "Signal Token", "fr": "Signal Token", "it": "Signal Token", "pl": "Signal Token", "ro": "Signal Token", "hu": "Signal Token", "nl": "Signal Token", "pt": "Signal Token", "sv": "Signal Token", "vi": "Signal Token", "tr": "Signal Token", "ru": "Signal Token", "ja": "Signal Token", "zh": "Signal Token", "zh-tw": "Signal Token", "ko": "Signal Token", "ar": "Signal Token", "th": "Signal Token", "id": "Signal Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3508/thumb/5906667d95a2d43d31378ce7_60x60logo.png?1547038276", "small": "https://assets.coingecko.com/coins/images/3508/small/5906667d95a2d43d31378ce7_60x60logo.png?1547038276"}, "market_data": {"current_price": {"aed": 0.003654674781274474, "ars": 0.04445389828395666, "aud": 0.0014224461431043816, "bch": 2.578639141065832e-06, "bdt": 0.08422724453308725, "bhd": 0.0003750946290127794, "bmd": 0.000994961800486956, "bnb": 3.377113082737668e-05, "brl": 0.003835677237057262, "btc": 1.281e-07, "cad": 0.0013319971507075124, "chf": 0.0009869473831840329, "clp": 0.6897796209993916, "cny": 0.0068735941024840805, "czk": 0.02272556827852163, "dkk": 0.0065999139398713325, "eos": 0.0001583066362490124, "eth": 4.121918174059381e-06, "eur": 0.0008837310409633165, "gbp": 0.0007833234759053754, "hkd": 0.007801614873034283, "huf": 0.28456202102116074, "idr": 14.19812901480276, "ils": 0.0036011896147274958, "inr": 0.06896657317019371, "jpy": 0.10758186946022194, "krw": 1.1736668894724178, "kwd": 0.0003028086642838005, "lkr": 0.1756000709012492, "ltc": 9.718163898007265e-06, "mmk": 1.520533379636556, "mxn": 0.019529466416282518, "myr": 0.00414749826532987, "ngn": 0.30490604375922764, "nok": 0.008649019858661814, "nzd": 0.0015041374817333579, "php": 0.051520391600471935, "pkr": 0.14627855460059253, "pln": 0.003780506605220263, "rub": 0.06484046658357426, "sar": 0.00373150473654628, "sek": 0.009385162245988104, "sgd": 0.0013584700993330692, "thb": 0.03116452483713201, "try": 0.005745448705307546, "twd": 0.03123693019727701, "uah": 0.027027567197116405, "usd": 0.000994961800486956, "vef": 247.23571192286363, "vnd": 23.280415110238028, "xag": 6.702461667762128e-05, "xau": 7.498131624649742e-07, "xdr": 0.0007156640835486614, "xlm": 0.00813141245844153, "xrp": 0.0024707911721198036, "zar": 0.014557914918782533, "bits": 0.1281, "link": 0.0008868357429014403, "sats": 12.809999999999999}, "market_cap": {"aed": 873630.8178959984, "ars": 10626470.983263636, "aud": 340028.2820732772, "bch": 616.4101477402536, "bdt": 20134080.577453434, "bhd": 89664.40166217898, "bmd": 237840.39444176565, "bnb": 8072.8115117551615, "brl": 916898.5046124503, "btc": 30.62163242154502, "cad": 318406.92533575906, "chf": 235924.59006453707, "clp": 164888196.76905546, "cny": 1643096.5809614921, "czk": 5432427.778263957, "dkk": 1577674.7750239726, "eos": 37842.37021942617, "eth": 985.3228977184417, "eur": 211251.2653855427, "gbp": 187249.36414005762, "hkd": 1864935.073665218, "huf": 68023057.05575293, "idr": 3393988194.8865204, "ils": 860845.4696523865, "inr": 16486097.21304653, "jpy": 25716881.04475843, "krw": 280558907.6874511, "kwd": 72384.82132519568, "lkr": 41976274.97529505, "ltc": 2323.0760554028698, "mmk": 363475520.9673707, "mxn": 4668416.408964179, "myr": 991437.6842304986, "ngn": 72886188.87667908, "nok": 2067502.7862496902, "nzd": 359556.1676589171, "php": 12315679.108537916, "pkr": 34967120.45381925, "pln": 903710.254740655, "rub": 15499773.097296517, "sar": 891996.615314398, "sek": 2243473.7588853207, "sgd": 324735.1447106713, "thb": 7449716.035556335, "try": 1373419.3470005419, "twd": 7467024.156740643, "uah": 6460798.032464531, "usd": 237840.39444176565, "vef": 59100398844.50371, "vnd": 5565061000.208364, "xag": 16021.882709579038, "xau": 179.23889965525885, "xdr": 171075.74163722867, "xlm": 1943771.4548818758, "xrp": 590629.6570105465, "zar": 3479993.126206753, "bits": 30621632.421545018, "link": 211993.4280828705, "sats": 3062163242.154502}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 2805, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 3, "stars": 1, "subscribers": 2, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "AE_20190611": {"id": "aeternity", "symbol": "ae", "name": "Aeternity", "localization": {"en": "Aeternity", "de": "Aeternity", "es": "Aeternity", "fr": "Aeternity", "it": "Aeternity", "pl": "Aeternity", "ro": "Aeternity", "hu": "Aeternity", "nl": "Aeternity", "pt": "Aeternity", "sv": "Aeternity", "vi": "Aeternity", "tr": "Aeternity", "ru": "Aeternity", "ja": "\u30a8\u30bf\u30fc\u30cb\u30c6\u30a3", "zh": "\u963f\u59e8\u5e01", "zh-tw": "\u963f\u59e8\u5e63", "ko": "\uc560\ud130\ub2c8\ud2f0", "ar": "Aeternity", "th": "Aeternity", "id": "Aeternity"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1091/thumb/aeternity.png?1547035060", "small": "https://assets.coingecko.com/coins/images/1091/small/aeternity.png?1547035060"}, "market_data": {"current_price": {"aed": 1.8823896006394012, "ars": 22.965270590924078, "aud": 0.7322483010937552, "bch": 0.001279423672206425, "bdt": 43.31990789113452, "bhd": 0.19322735036596012, "bmd": 0.5124918120756967, "bnb": 0.016230984842177994, "brl": 1.98757137018257, "btc": 6.383542801085656e-05, "cad": 0.6809212211307486, "chf": 0.506095914260992, "clp": 355.156825768458, "cny": 3.541215923080653, "czk": 11.578753134816848, "dkk": 3.3765010546795224, "eos": 0.07691738135809756, "eth": 0.00204798620950922, "eur": 0.4520331530051273, "gbp": 0.4023650090378111, "hkd": 4.019293909975466, "huf": 144.75331232078042, "idr": 7288.669662163078, "ils": 1.8324657232578623, "inr": 35.561806839932586, "jpy": 55.44378054724412, "krw": 605.80632121844, "kwd": 0.15578111113302529, "lkr": 90.43372553063803, "ltc": 0.0043507454571333455, "mmk": 780.5972209254123, "mxn": 10.053808123394976, "myr": 2.1258170614736183, "ngn": 157.05311581059726, "nok": 4.420510424862415, "nzd": 0.7689427148383744, "php": 26.583593982082345, "pkr": 76.63802557779952, "pln": 1.9261236019146966, "rub": 33.2023970354985, "sar": 1.9216905477402433, "sek": 4.816961790880686, "sgd": 0.6979323618489793, "thb": 16.012037930587027, "try": 2.9881511592265433, "twd": 16.07609940709647, "uah": 13.598970233428611, "usd": 0.5124918120756967, "vef": 127347.88205050748, "vnd": 11906.900482832443, "xag": 0.034134266022313904, "xau": 0.0003822881422997454, "xdr": 0.36850826245665375, "xlm": 4.006756552348034, "xrp": 1.2126100685953567, "zar": 7.666390641430929, "bits": 63.83542801085656, "link": 0.43227533753037795, "sats": 6383.542801085656}, "market_cap": {"aed": 504110247.2890999, "ars": 6150176473.945337, "aud": 196098550.48923486, "bch": 342185.1837989063, "bdt": 11601216598.37208, "bhd": 51746932.37941526, "bmd": 137247025.81833318, "bnb": 4343875.442837312, "brl": 532278277.87995017, "btc": 17078.90213186844, "cad": 182352986.35947657, "chf": 135534182.93612045, "clp": 95112188892.10489, "cny": 948349498.9995195, "czk": 3100828916.66489, "dkk": 904238304.9015069, "eos": 20577048.60171864, "eth": 547822.6392307153, "eur": 121055994.18254447, "gbp": 107754698.67536066, "hkd": 1076380387.0341513, "huf": 38765422442.38823, "idr": 1951930176703.8618, "ils": 490740465.5160316, "inr": 9523571121.534138, "jpy": 14848030350.794502, "krw": 162236964279.33536, "kwd": 41718703.94394704, "lkr": 24218454949.51691, "ltc": 1160995.2589983903, "mmk": 209046553349.11902, "mxn": 2692443528.991149, "myr": 569300937.5884986, "ngn": 42059351062.0282, "nok": 1183827515.1246538, "nzd": 205925437.53782755, "php": 7119175611.461367, "pkr": 20523920240.87358, "pln": 515822359.4843326, "rub": 8891713264.071693, "sar": 514635172.7110038, "sek": 1289998520.3690965, "sgd": 186908626.88746452, "thb": 4288077451.1550984, "try": 800236900.6411989, "twd": 4305233329.382382, "uah": 3641849830.089473, "usd": 137247025.81833318, "vef": 34104189850187.316, "vnd": 3188707876843.601, "xag": 9141270.903587434, "xau": 102378.04643892753, "xdr": 98687748.40872411, "xlm": 1072353039.568032, "xrp": 324526875.88164604, "zar": 2053085121.5677369, "bits": 17078902131.868439, "link": 115653460.99733399, "sats": 1707890213186.844}, "total_volume": {"aed": 164167830.77224556, "ars": 2002857779.669534, "aud": 63861176.84478866, "bch": 111581.68788939543, "bdt": 3778035803.706818, "bhd": 16851832.87491243, "bmd": 44695672.48375469, "bnb": 1415544.1423669462, "brl": 173340991.81012154, "btc": 5567.244814463734, "cad": 59384815.85419555, "chf": 44137870.49115743, "clp": 30974101031.242012, "cny": 308838157.7282485, "czk": 1009811563.2090962, "dkk": 294472968.59196955, "eos": 6708154.168484163, "eth": 178609.91866529593, "eur": 39422924.00084619, "gbp": 35091242.9020831, "hkd": 350532515.8047189, "huf": 12624292693.036499, "idr": 635662823066.1415, "ils": 159813846.53291336, "inr": 3101432713.647737, "jpy": 4835388582.237035, "krw": 52833860529.59676, "kwd": 13586054.173541935, "lkr": 7886947815.677776, "ltc": 379439.22113528964, "mmk": 68077805159.27162, "mxn": 876817354.9500571, "myr": 185397738.85395974, "ngn": 13696988832.646624, "nok": 385523595.7047659, "nzd": 67061386.99462544, "php": 2318420669.4969945, "pkr": 6683790863.220662, "pln": 167981980.67931956, "rub": 2895662776.667027, "sar": 167595363.11233523, "sek": 420099095.2420591, "sgd": 60868399.310949, "thb": 1396449243.246189, "try": 260604018.2452995, "twd": 1402036202.306657, "uah": 1185999669.3564305, "usd": 44695672.48375469, "vef": 11106322273864.137, "vnd": 1038430101198.8337, "xag": 2976933.364900967, "xau": 33340.28993253199, "xdr": 32138512.690788765, "xlm": 349439101.9840029, "xrp": 105754709.04974395, "zar": 668604799.4681085, "bits": 5567244814.463734, "link": 37699796.27734722, "sats": 556724481446.3734}}, "community_data": {"facebook_likes": null, "twitter_followers": 978, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.087, "reddit_subscribers": 6360, "reddit_accounts_active_48h": "524.208333333333"}, "developer_data": {"forks": 165, "stars": 796, "subscribers": 141, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1860, "pull_request_contributors": 34, "code_additions_deletions_4_weeks": {"additions": 7425, "deletions": -3577}, "commit_count_4_weeks": 178}, "public_interest_stats": {"alexa_rank": 374739, "bing_matches": null}}, "SDC_20190612": {"id": "smart-donation-coin", "symbol": "sdc", "name": "Smart Donation Coin", "localization": {"en": "Smart Donation Coin", "de": "Smart Donation Coin", "es": "Smart Donation Coin", "fr": "Smart Donation Coin", "it": "Smart Donation Coin", "pl": "Smart Donation Coin", "ro": "Smart Donation Coin", "hu": "Smart Donation Coin", "nl": "Smart Donation Coin", "pt": "Smart Donation Coin", "sv": "Smart Donation Coin", "vi": "Smart Donation Coin", "tr": "Smart Donation Coin", "ru": "Smart Donation Coin", "ja": "Smart Donation Coin", "zh": "Smart Donation Coin", "zh-tw": "Smart Donation Coin", "ko": "Smart Donation Coin", "ar": "Smart Donation Coin", "th": "Smart Donation Coin", "id": "Smart Donation Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/23822/thumb/nlogo-200px.png?1645514609", "small": "https://assets.coingecko.com/coins/images/23822/small/nlogo-200px.png?1645514609"}}, "STORM_20190613": {"id": "storm", "symbol": "stmx", "name": "StormX", "localization": {"en": "StormX", "de": "StormX", "es": "StormX", "fr": "StormX", "it": "StormX", "pl": "StormX", "ro": "StormX", "hu": "StormX", "nl": "StormX", "pt": "StormX", "sv": "StormX", "vi": "StormX", "tr": "StormX", "ru": "StormX", "ja": "\u30b9\u30c8\u30fc\u30e0", "zh": "StormX", "zh-tw": "StormX", "ko": "\uc2a4\ud1b0", "ar": "StormX", "th": "StormX", "id": "StormX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1369/thumb/StormX.png?1603113002", "small": "https://assets.coingecko.com/coins/images/1369/small/StormX.png?1603113002"}, "market_data": {"current_price": {"aed": 0.012193604717995554, "ars": 0.14902921362081356, "aud": 0.004745181655418808, "bch": 8.734333947566001e-06, "bdt": 0.2806176171504751, "bhd": 0.0012516349189934004, "bmd": 0.003319801599893375, "bnb": 0.00010958158861732427, "brl": 0.012874187284584917, "btc": 4.339786583186667e-07, "cad": 0.004405174215160927, "chf": 0.0032869355640544303, "clp": 2.301535454166079, "cny": 0.02293932444542005, "czk": 0.07513490841954518, "dkk": 0.021899638939770226, "eos": 0.0005395600906654561, "eth": 1.432165301889616e-05, "eur": 0.002932377433384215, "gbp": 0.0026089789605306026, "hkd": 0.026034232725531816, "huf": 0.9389652780364708, "idr": 47.43116415143014, "ils": 0.011869213624463592, "inr": 0.23024541096647988, "jpy": 0.3599528082700388, "krw": 3.9232138810626735, "kwd": 0.0010090437368827916, "lkr": 0.5852127503412992, "ltc": 2.8874720248592564e-05, "mmk": 5.056525473850365, "mxn": 0.06413083177221225, "myr": 0.013770537036357729, "ngn": 1.0172204082233292, "nok": 0.028609787923554703, "nzd": 0.004987142075225403, "php": 0.1725154786996177, "pkr": 0.4903639171979318, "pln": 0.012490089559278822, "rub": 0.21535187800332334, "sar": 0.012450251940080115, "sek": 0.03121978938297808, "sgd": 0.004526220821096237, "thb": 0.10389651087026287, "try": 0.019397597428375372, "twd": 0.10413904229594494, "uah": 0.08808919587713221, "usd": 0.003319801599893375, "vef": 824.929672265404, "vnd": 77.27098390959563, "xag": 0.0002214677493027109, "xau": 2.4852034776801808e-06, "xdr": 0.0023867779998465403, "xlm": 0.027925902265250827, "xrp": 0.008593584559913199, "zar": 0.04957695435034376, "bits": 0.43397865831866667, "link": 0.0031333891998836564, "sats": 43.39786583186667}, "market_cap": {"aed": 70243458.6971178, "ars": 858509657.6230813, "aud": 27335474.56486061, "bch": 50303.87143973521, "bdt": 1616548383.8345478, "bhd": 7210268.6424163515, "bmd": 19124315.73418017, "bnb": 631719.8065220563, "brl": 74164077.292835, "btc": 2499.1143572550477, "cad": 25376800.395997286, "chf": 18934985.008411784, "clp": 13258409990.61375, "cny": 132146114.82719332, "czk": 432828188.0821569, "dkk": 126156818.99851009, "eos": 3105509.4775200384, "eth": 82479.47691640996, "eur": 16892488.96368559, "gbp": 15029493.746440457, "hkd": 149974892.04059297, "huf": 5409078795.907105, "idr": 273235773758.53113, "ils": 68374745.30946827, "inr": 1326370207.1263707, "jpy": 2073573057.79422, "krw": 22600380985.589813, "kwd": 5812778.394456858, "lkr": 3371223572.3828955, "ltc": 166261.59884549936, "mmk": 29129026771.64361, "mxn": 369437220.32870114, "myr": 79327661.66537939, "ngn": 5859881584.1101465, "nok": 164811842.17622173, "nzd": 28729331.192830488, "php": 993806522.5917965, "pkr": 2824829766.1654963, "pln": 71951413.08670604, "rub": 1240573324.9289596, "sar": 71721921.29789586, "sek": 179847226.21190825, "sgd": 26074111.196297098, "thb": 598514585.2169024, "try": 111743357.71049897, "twd": 599911731.2271777, "uah": 507453696.86502725, "usd": 19124315.73418017, "vef": 4752156126258.886, "vnd": 445133436114.1717, "xag": 1275804.904347095, "xau": 14316.462758607267, "xdr": 13749465.045720292, "xlm": 160812272.3766216, "xrp": 49441423.7254013, "zar": 285596985.1226826, "bits": 2499114357.255048, "link": 18043970.103587765, "sats": 249911435725.50476}, "total_volume": {"aed": 5680116.299591652, "ars": 69421904.75910899, "aud": 2210436.0678257556, "bch": 4068.6928737675057, "bdt": 130719400.70163304, "bhd": 583045.9547389015, "bmd": 1546454.8519549344, "bnb": 51046.11655336076, "brl": 5997150.369426388, "btc": 202.15918982126823, "cad": 2052051.2547982344, "chf": 1531144.9489205806, "clp": 1072118487.4890568, "cny": 10685767.965871105, "czk": 34999905.92218739, "dkk": 10201453.874700408, "eos": 251341.92361303707, "eth": 6671.4197016467315, "eur": 1365982.0242769402, "gbp": 1215334.1248737506, "hkd": 12127461.326790044, "huf": 437395840.18615806, "idr": 22094740221.284893, "ils": 5529006.010187738, "inr": 107254642.24756888, "jpy": 167675913.7780656, "krw": 1827540881.3048294, "kwd": 470040.3128871464, "lkr": 272608187.555624, "ltc": 13450.638504635801, "mmk": 2355468577.797171, "mxn": 29873904.499964282, "myr": 6414694.725909072, "ngn": 473849231.1875115, "nok": 13327225.744214317, "nzd": 2323147.8832556233, "php": 80362452.70829456, "pkr": 228424993.52934983, "pln": 5818227.089510039, "rub": 100316825.14597945, "sar": 5799669.631286587, "sek": 14543036.177182473, "sgd": 2108438.091610214, "thb": 48397851.04678155, "try": 9035934.153517822, "twd": 48510828.85244608, "uah": 41034369.15428169, "usd": 1546454.8519549344, "vef": 384274919994.4362, "vnd": 35994948609.6289, "xag": 103165.7661324449, "xau": 1157.6761021734642, "xdr": 1111826.8087227035, "xlm": 13008653.003451617, "xrp": 4003127.9395701266, "zar": 23094308.287187956, "bits": 202159189.82126823, "link": 1459618.8312515127, "sats": 20215918982.126823}}, "community_data": {"facebook_likes": null, "twitter_followers": 26880, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 2574, "reddit_accounts_active_48h": "117.8"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 4240387, "bing_matches": null}}, "AMB_20190101": {"id": "amber", "symbol": "amb", "name": "Ambrosus", "localization": {"en": "Ambrosus", "de": "Ambrosus", "es": "Ambrosus", "fr": "Ambrosus", "it": "Ambrosus", "pl": "Ambrosus", "ro": "Ambrosus", "hu": "Ambrosus", "nl": "Ambrosus", "pt": "Ambrosus", "sv": "Ambrosus", "vi": "Ambrosus", "tr": "Ambrosus", "ru": "Ambrosus", "ja": "Ambrosus", "zh": "Ambrosus", "zh-tw": "Ambrosus", "ko": "\uc570\ubc84", "ar": "Ambrosus", "th": "Ambrosus", "id": "Ambrosus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1041/thumb/Avatar_Logo_Ambrosus.png?1644905963", "small": "https://assets.coingecko.com/coins/images/1041/small/Avatar_Logo_Ambrosus.png?1644905963"}, "market_data": {"current_price": {"aed": 0.2408311810004665, "ars": 2.47220043044939, "aud": 0.09309181180039308, "bch": 0.0003848099128533659, "bdt": 5.491680370527996, "bhd": 0.024714004292491234, "bmd": 0.0655738688748149, "bnb": 0.011144425647576325, "brl": 0.25452169334415076, "btc": 1.7034614110879336e-05, "cad": 0.08941324890425376, "chf": 0.06453452305314895, "clp": 45.50896932804706, "cny": 0.45103018489475083, "czk": 1.4752218854635966, "dkk": 0.42785965832783546, "eos": 0.025167484827616285, "eth": 0.00048730915469692406, "eur": 0.057314774516163056, "gbp": 0.05163712665350606, "hkd": 0.5135056884652305, "huf": 18.420355505624272, "idr": 955.2470052596003, "ils": 0.24679709159069751, "inr": 4.585261174526648, "jpy": 7.231158390170204, "krw": 73.24935560375921, "kwd": 0.019909931510984608, "lkr": 12.000018004091107, "ltc": 0.0020678857287611545, "mmk": 101.30855966928137, "mxn": 1.2892261309971371, "myr": 0.27235640862685256, "ngn": 23.901675204870028, "nok": 0.5711512831498672, "nzd": 0.09778388441386154, "php": 3.445362939703075, "pkr": 9.122964507208614, "pln": 0.24640692707089198, "rub": 4.557449460668497, "sar": 0.24596758214943087, "sek": 0.5875205536109566, "sgd": 0.08958701965677199, "thb": 2.134593366547403, "try": 0.34573671544347695, "twd": 2.0044607122879614, "uah": 1.79606826848118, "usd": 0.0655738688748149, "vef": 16294.296069323236, "vnd": 1524.6804958649855, "xag": 0.004263166396193427, "xau": 5.1196142385322976e-05, "xdr": 0.04701882464252166, "xlm": 0.5496500846533665, "xrp": 0.1771671559829528, "zar": 0.9462856820440876, "bits": 17.034614110879335, "link": 0.22294371731486695, "sats": 1703.4614110879336}, "market_cap": {"aed": 65291278.75187657, "ars": 670233508.6529667, "aud": 25237942.232093792, "bch": 104325.07610609515, "bdt": 1488838913.6274579, "bhd": 6700166.218646718, "bmd": 17777605.598073486, "bnb": 3021343.824594122, "brl": 69002887.24864247, "btc": 4618.221501566771, "cad": 24240654.113253076, "chf": 17495830.549343985, "clp": 12337849234.32471, "cny": 122277926.82466878, "czk": 399944570.9004187, "dkk": 115996209.88658966, "eos": 6823108.45521426, "eth": 132113.44862190657, "eur": 15538498.395390525, "gbp": 13999242.192286924, "hkd": 139215540.55823323, "huf": 4993907188.554828, "idr": 258975180199.68958, "ils": 66908685.30918939, "inr": 1243101346.9788053, "jpy": 1960425457.3275514, "krw": 19858492057.600758, "kwd": 5397743.277320677, "lkr": 3253301824.4474435, "ltc": 560620.5267220377, "mmk": 27465568959.30083, "mxn": 349519619.27626956, "myr": 73838022.6416005, "ngn": 6479937240.497786, "nok": 154843726.9738661, "nzd": 26510001.02305833, "php": 934065726.7179313, "pkr": 2473309378.8319716, "pln": 66802908.555880755, "rub": 1235561366.671702, "sar": 66683798.59837371, "sek": 159281568.4369189, "sgd": 24287764.768087965, "thb": 578705506.2312847, "try": 93732016.63091356, "twd": 543425492.3697975, "uah": 486928617.3312328, "usd": 17777605.598073486, "vef": 4417515299755.681, "vnd": 413353199737.36017, "xag": 1155778.8504926153, "xau": 13879.687794639893, "xdr": 12747183.207620189, "xlm": 149014578.36153695, "xrp": 48031447.25241272, "zar": 256545693.0808743, "bits": 4618221501.566771, "link": 60441842.84075889, "sats": 461822150156.67706}, "total_volume": {"aed": 391224.3543291696, "ars": 4016029.0422401084, "aud": 151225.3679679078, "bch": 625.1142774374821, "bdt": 8921100.242156053, "bhd": 40147.29459886459, "bmd": 106523.14374260945, "bnb": 18103.84647963853, "brl": 413464.25627975224, "btc": 27.672313356975238, "cad": 145249.63265023497, "chf": 104834.7519142889, "clp": 73928205.9224578, "cny": 732687.4872904147, "czk": 2396461.8170918566, "dkk": 695047.5344489644, "eos": 40883.962620082326, "eth": 791.6217850737037, "eur": 93106.447265084, "gbp": 83883.24738727388, "hkd": 834177.4124911856, "huf": 29923416.308736455, "idr": 1551775361.0851417, "ils": 400915.8299468728, "inr": 7448644.4611643655, "jpy": 11746839.676216245, "krw": 118991783.92125614, "kwd": 32343.196041993633, "lkr": 19493735.3048975, "ltc": 3359.229713113934, "mmk": 164573273.61009777, "mxn": 2094316.269962864, "myr": 442436.31439172104, "ngn": 38827685.89418115, "nok": 927821.2690164512, "nzd": 158847.52499526643, "php": 5596907.700719926, "pkr": 14820032.373190526, "pln": 400282.01724160364, "rub": 7403465.013255079, "sar": 399568.3121785284, "sek": 954412.7479120635, "sgd": 145531.91898115282, "thb": 3467594.636681279, "try": 561640.8253506016, "twd": 3256197.327461207, "uah": 2917668.9071100727, "usd": 106523.14374260945, "vef": 26469684832.700134, "vnd": 2476806118.1907406, "xag": 6925.409383535579, "xau": 83.16687924560489, "xdr": 76380.92889662553, "xlm": 892893.0987348775, "xrp": 287803.7051507534, "zar": 1537217.9110308767, "bits": 27672313.35697524, "link": 362166.60772877577, "sats": 2767231335.6975236}}, "community_data": {"facebook_likes": null, "twitter_followers": 17895, "reddit_average_posts_48h": 0.174, "reddit_average_comments_48h": 0.696, "reddit_subscribers": 4966, "reddit_accounts_active_48h": "241.958333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 617415, "bing_matches": null}}, "VIA_20190203": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 1.1231244821592978, "ars": 11.467046533895337, "aud": 0.42168050940513546, "bch": 0.002603733269549792, "bdt": 25.640171423679735, "bhd": 0.11526211760792081, "bmd": 0.3057634464948222, "bnb": 0.049835176808363094, "brl": 1.126707723988772, "btc": 8.841250548999855e-05, "cad": 0.4018801859004697, "chf": 0.3038472269756399, "clp": 202.99647932550636, "cny": 2.0536296120378275, "czk": 6.860764242387122, "dkk": 1.9874724924100768, "eos": 0.13163101860747753, "eth": 0.002823024891308151, "eur": 0.26622181183066584, "gbp": 0.23313056283376354, "hkd": 2.3981241143001495, "huf": 84.03235647327905, "idr": 4318.0222848212325, "ils": 1.1206994722651515, "inr": 21.748712396053968, "jpy": 33.329438721721694, "krw": 339.41271378157785, "kwd": 0.09272245938610879, "lkr": 54.850904666706256, "ltc": 0.009634989754906441, "mmk": 464.4447327156459, "mxn": 5.839968695575912, "myr": 1.2559233564774814, "ngn": 110.96767000190087, "nok": 2.5744594227109445, "nzd": 0.44352119238826077, "php": 15.9496857317272, "pkr": 42.642072342453105, "pln": 1.1406627676867955, "rub": 20.012156420396867, "sar": 1.1467505179065065, "sek": 2.7631992483825867, "sgd": 0.41185541257891745, "thb": 9.558165337428155, "try": 1.599636633134012, "twd": 9.398561099046088, "uah": 8.49961289718996, "usd": 0.3057634464948222, "vef": 75978.43790298059, "vnd": 7117.5116503304125, "xag": 0.0190388502175145, "xau": 0.00023175646190521556, "xdr": 0.21840438372368023, "xlm": 3.5899596303163097, "xrp": 0.955608193378183, "zar": 4.0793769611532325, "bits": 88.41250548999855, "link": 0.7241279269921225, "sats": 8841.250548999855}, "market_cap": {"aed": 25973163.556252517, "ars": 265184741.1957482, "aud": 9751703.407093957, "bch": 60213.4412891206, "bdt": 592949736.717724, "bhd": 2665529.8500081366, "bmd": 7071027.416359963, "bnb": 1152478.8379733576, "brl": 26056028.926544864, "btc": 2044.6108174001174, "cad": 9293804.884692721, "chf": 7026713.287541652, "clp": 4694458043.268789, "cny": 47491848.53924013, "czk": 158660731.39623293, "dkk": 45961911.55024446, "eos": 3044073.946990336, "eth": 65284.73770276059, "eur": 6156595.079848887, "gbp": 5391333.137713327, "hkd": 55458562.99843042, "huf": 1943316322.7833772, "idr": 99857763609.23268, "ils": 25917083.23781347, "inr": 502956594.01402515, "jpy": 770770272.4929035, "krw": 7849193983.530386, "kwd": 2144281.992983753, "lkr": 1268471608.2208161, "ltc": 222816.94392938007, "mmk": 10740660716.8523, "mxn": 135054007.3723315, "myr": 29044245.112698518, "ngn": 2566217269.945358, "nok": 59536459.864582285, "nzd": 10256786.895444551, "php": 368849404.2837726, "pkr": 986132469.6606492, "pln": 26378750.617827542, "rub": 462797330.1952776, "sar": 26519534.773687247, "sek": 63901221.2419884, "sgd": 9524490.083124062, "thb": 221040317.03541273, "try": 36992893.09684009, "twd": 217349339.71845618, "uah": 196560434.26202908, "usd": 7071027.416359963, "vef": 1757062930912.7585, "vnd": 164598223210.43878, "xag": 440288.8357235193, "xau": 5359.555940504201, "xdr": 5050778.315286606, "xlm": 83020724.87929642, "xrp": 22099213.6638209, "zar": 94338897.15940967, "bits": 2044610817.4001174, "link": 16746044.968458684, "sats": 204461081740.01175}, "total_volume": {"aed": 1283456.2283013142, "ars": 13104025.891995043, "aud": 481877.5520846761, "bch": 2975.429469059553, "bdt": 29300436.62227606, "bhd": 131716.37256688558, "bmd": 349412.73743420583, "bnb": 56949.40238522812, "brl": 1287550.9961713068, "btc": 101.03384142486202, "cad": 459250.6314466486, "chf": 347222.9678087065, "clp": 231975261.7382682, "cny": 2346795.709703104, "czk": 7840173.317982908, "dkk": 2271194.323942671, "eos": 150422.01764189778, "eth": 3226.0260878946697, "eur": 304226.3328164776, "gbp": 266411.1393076604, "hkd": 2740468.5585881015, "huf": 96028403.80356799, "idr": 4934441981.660618, "ils": 1280685.035880728, "inr": 24853451.97763248, "jpy": 38087386.031278275, "krw": 387865609.1888407, "kwd": 105959.063214186, "lkr": 62681150.9683223, "ltc": 11010.433666960243, "mmk": 530746586.3085763, "mxn": 6673654.002280494, "myr": 1435212.8190109998, "ngn": 126808870.66962199, "nok": 2941976.6313300934, "nzd": 506836.10391960165, "php": 18226584.690307215, "pkr": 48729445.582359, "pln": 1303498.1935078038, "rub": 22868993.782521345, "sar": 1310455.001110118, "sek": 3157660.029417053, "sgd": 470649.8725927029, "thb": 10922642.172193289, "try": 1827992.9183518558, "twd": 10740253.615030933, "uah": 9712975.974021528, "usd": 349412.73743420583, "vef": 86824747293.99948, "vnd": 8133572727.4513035, "xag": 21756.743156720728, "xau": 264.8408784656308, "xdr": 249582.72304735455, "xlm": 4102444.6711564423, "xrp": 1092026.13520541, "zar": 4661728.821292314, "bits": 101033841.42486201, "link": 827500.8805774922, "sats": 10103384142.486202}}, "community_data": {"facebook_likes": null, "twitter_followers": 40757, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.435, "reddit_subscribers": 2231, "reddit_accounts_active_48h": "205.25"}, "developer_data": {"forks": 33, "stars": 76, "subscribers": 31, "total_issues": 13, "closed_issues": 10, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 5, "deletions": -5}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 3449889, "bing_matches": null}}, "BRD_20190303": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.8649925640460511, "ars": 9.13107376709335, "aud": 0.329518375190164, "bch": 0.0017970954574238322, "bdt": 19.82070631902939, "bhd": 0.0887820601696812, "bmd": 0.23548868516036928, "bnb": 0.02397995647099477, "brl": 0.8779724648834067, "btc": 6.176472431557925e-05, "cad": 0.3095746029552476, "chf": 0.23562856543935476, "clp": 152.87998536299065, "cny": 1.5747599354044208, "czk": 5.306549129140798, "dkk": 1.5440361976289192, "eos": 0.06725269496249922, "eth": 0.001746531878202114, "eur": 0.20694486614339563, "gbp": 0.1768359893248465, "hkd": 1.8484851538629676, "huf": 65.44112816264106, "idr": 3302.4933206890196, "ils": 0.8517797648990728, "inr": 16.767901180238567, "jpy": 26.10933698978566, "krw": 263.0879590611647, "kwd": 0.07151132000001965, "lkr": 42.30318740220875, "ltc": 0.005221652317977119, "mmk": 361.14374851107885, "mxn": 4.514148542670964, "myr": 0.9576147382046413, "ngn": 85.1291596854735, "nok": 2.012768889802706, "nzd": 0.3435784626263494, "php": 12.221433228461443, "pkr": 32.80617457987839, "pln": 0.8927731642344224, "rub": 15.485900778225476, "sar": 0.8831885392597103, "sek": 2.182185808101581, "sgd": 0.31750939420172625, "thb": 7.407061103034244, "try": 1.2511963625959077, "twd": 7.251164767593868, "uah": 6.329138492422773, "usd": 0.23548868516036928, "vef": 58516.02814993333, "vnd": 5471.8185924579775, "xag": 0.014948364885931016, "xau": 0.00017826493466639986, "xdr": 0.1683197765147066, "xlm": 2.8052415093175314, "xrp": 0.7589366125483245, "zar": 3.2806114765752317, "bits": 61.76472431557925, "link": 0.5509256247935853, "sats": 6176.472431557925}, "market_cap": {"aed": 51953934.68729894, "ars": 548442924.8206137, "aud": 19791875.43655955, "bch": 107694.37005173834, "bdt": 1190488478.580913, "bhd": 5332505.211240044, "bmd": 14144125.946229925, "bnb": 1438051.2376644455, "brl": 52733544.76532901, "btc": 3701.5264638075005, "cad": 18597121.117881496, "chf": 14153107.466205798, "clp": 9182411245.586327, "cny": 94584599.02762882, "czk": 318726562.89753443, "dkk": 92741845.72285002, "eos": 4048470.216691542, "eth": 104870.11448273677, "eur": 12429475.990146313, "gbp": 10622125.432611097, "hkd": 111020780.58344544, "huf": 3930739982.86739, "idr": 198371366395.87476, "ils": 51160336.06870759, "inr": 1007128244.7635206, "jpy": 1568440711.7648425, "krw": 15801828171.799046, "kwd": 4295175.014343548, "lkr": 2540850784.9807463, "ltc": 313316.17271364585, "mmk": 21691329501.269516, "mxn": 271125921.4380923, "myr": 57517088.16034412, "ngn": 5113101529.562118, "nok": 120898048.05547614, "nzd": 20647750.641691867, "php": 732647492.2363652, "pkr": 1970432952.0367804, "pln": 53623281.007976785, "rub": 930140352.8255951, "sar": 53046837.15503799, "sek": 131088607.91721588, "sgd": 19070525.01330182, "thb": 444974202.26839477, "try": 75151248.89555445, "twd": 435525756.40679944, "uah": 380146213.42420644, "usd": 14144125.946229925, "vef": 3514640507938.4297, "vnd": 328633910696.3593, "xag": 897870.1051554926, "xau": 10707.527665074453, "xdr": 10109768.614334876, "xlm": 168202506.01090518, "xrp": 45460921.25156901, "zar": 197097956.59280974, "bits": 3701526463.8075004, "link": 33016674.199722167, "sats": 370152646380.75006}, "total_volume": {"aed": 29895416.50743556, "ars": 315583352.70595616, "aud": 11388640.183314819, "bch": 62110.264800433186, "bdt": 685032791.6199255, "bhd": 3068438.7097453936, "bmd": 8138835.65972805, "bnb": 828782.6003697264, "brl": 30344020.990164153, "btc": 2134.6798060831306, "cad": 10699354.052456804, "chf": 8143670.128109936, "clp": 5283757373.2413435, "cny": 54426021.8237334, "czk": 183402150.52344397, "dkk": 53364164.212880045, "eos": 2324352.1513606776, "eth": 60362.71305979244, "eur": 7152319.2505767485, "gbp": 6111712.139630906, "hkd": 63886368.36836726, "huf": 2261741735.660135, "idr": 114139031292.0262, "ils": 29438762.71623953, "inr": 579523351.5002387, "jpy": 902377126.1010294, "krw": 9092707199.048182, "kwd": 2471536.502460936, "lkr": 1462060437.9135473, "ltc": 180467.99173944295, "mmk": 12481659646.05965, "mxn": 156015619.6353117, "myr": 33096575.2102841, "ngn": 2942189090.99169, "nok": 69564256.15082751, "nzd": 11874577.505214555, "php": 422390725.5036428, "pkr": 1133829692.7011447, "pln": 30855554.950213768, "rub": 535215530.1686777, "sar": 30524296.200027183, "sek": 75419554.27299888, "sgd": 10973592.12001134, "thb": 255998936.8410857, "try": 43243188.377746135, "twd": 250610929.96831816, "uah": 218744344.43594614, "usd": 8138835.65972805, "vef": 2022400083672.7969, "vnd": 189114106495.31564, "xag": 516637.49833835626, "xau": 6161.098594414144, "xdr": 5817379.286832491, "xlm": 96953276.60704604, "xrp": 26229966.68173264, "zar": 113382762.54368857, "bits": 2134679806.0831306, "link": 19040800.69865959, "sats": 213467980608.31305}}, "community_data": {"facebook_likes": null, "twitter_followers": 147, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 207, "stars": 168, "subscribers": 30, "total_issues": 21, "closed_issues": 10, "pull_requests_merged": 7, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 33, "deletions": -8}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SNM_20190404": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.10837871036290456, "ars": 1.2797190582063178, "aud": 0.041474535319280796, "bch": 0.00017465262015876583, "bdt": 2.4803373503329507, "bhd": 0.011125668400546093, "bmd": 0.029507691166647018, "bnb": 0.0016942748544666315, "brl": 0.11580429133730027, "btc": 7.188277646290607e-06, "cad": 0.039388341553798834, "chf": 0.02936900501816383, "clp": 20.080090745268432, "cny": 0.198058573879652, "czk": 0.6786489530493474, "dkk": 0.19623499856555268, "eos": 0.007025850810613958, "eth": 0.00020833344186125253, "eur": 0.026288815168042157, "gbp": 0.02265963472376509, "hkd": 0.23162941510456367, "huf": 8.441390914807073, "idr": 419.8351553499877, "ils": 0.10708072604386618, "inr": 2.047221482373601, "jpy": 3.274704550292158, "krw": 33.56807186908067, "kwd": 0.008972875776101043, "lkr": 5.183916849633257, "ltc": 0.0004873886163659996, "mmk": 44.65941521181559, "mxn": 0.5707554671599872, "myr": 0.12046417543402833, "ngn": 10.633952972637365, "nok": 0.2540628438678456, "nzd": 0.04323472811275361, "php": 1.554877717689169, "pkr": 4.150893332010445, "pln": 0.11308084947338334, "rub": 1.9368022266434466, "sar": 0.11066269418227634, "sek": 0.27377578153632665, "sgd": 0.039962236639298904, "thb": 0.9364265791735444, "try": 0.16511639401504494, "twd": 0.9104864268843245, "uah": 0.8011025370218299, "usd": 0.029507691166647018, "vef": 7332.296605975721, "vnd": 685.0887194776174, "xag": 0.0019481559009736401, "xau": 2.2836592347691513e-05, "xdr": 0.021183807550065242, "xlm": 0.2736480882927029, "xrp": 0.09535254530650104, "zar": 0.42318841837401117, "bits": 7.188277646290607, "link": 0.05823528176044191, "sats": 718.8277646290607}, "market_cap": {"aed": 43308132.66101668, "ars": 511375735.65924466, "aud": 16573224.313584607, "bch": 69791.18701544282, "bdt": 991142805.1930472, "bhd": 4445817.092858218, "bmd": 11791273.39019215, "bnb": 677032.2318448662, "brl": 46275394.8183852, "btc": 2872.4357474577264, "cad": 15739581.284898013, "chf": 11735854.405258266, "clp": 8024004261.809264, "cny": 79144206.12230894, "czk": 271188121.6385192, "dkk": 78415505.42679486, "eos": 2807529.9839213374, "eth": 83250.0433677565, "eur": 10505010.541149648, "gbp": 9054790.03561653, "hkd": 92559114.27578366, "huf": 3373179809.556906, "idr": 167766128077.85507, "ils": 42789458.12712894, "inr": 818069704.356491, "jpy": 1308571938.2967463, "krw": 13413801518.884636, "kwd": 3585561.160129977, "lkr": 2071493173.1134496, "ltc": 194760.49109985345, "mmk": 17845902318.64151, "mxn": 228073884.67713088, "myr": 48137484.503437705, "ngn": 4249327607.8658915, "nok": 101523512.40959111, "nzd": 17276597.353856344, "php": 621329135.9885919, "pkr": 1658696975.4713738, "pln": 45187107.449563965, "rub": 773946169.7667214, "sar": 44220812.59523761, "sek": 109400802.30191611, "sgd": 15968909.76106384, "thb": 374196061.03774834, "try": 65980511.04841194, "twd": 363830376.18297607, "uah": 320120573.79392326, "usd": 11791273.39019215, "vef": 2929985723747.898, "vnd": 273761452303.25592, "xag": 778483.0980290666, "xau": 9125.502302137527, "xdr": 8465049.49700607, "xlm": 109349776.08176407, "xrp": 38102877.104477815, "zar": 169106091.98225486, "bits": 2872435747.4577265, "link": 23270818.59147259, "sats": 287243574745.77264}, "total_volume": {"aed": 1388974.3714092856, "ars": 16400794.662537321, "aud": 531534.8967679521, "bch": 2238.336408393346, "bdt": 31787839.147796936, "bhd": 142585.82909329346, "bmd": 378168.61496777146, "bnb": 21713.71428112904, "brl": 1484140.1251973123, "btc": 92.12449005749853, "cad": 504798.37568973046, "chf": 376391.2224774236, "clp": 257345112.59046102, "cny": 2538305.560525186, "czk": 8697520.018580377, "dkk": 2514934.74012017, "eos": 90042.83849301201, "eth": 2669.987587818821, "eur": 336915.7134353971, "gbp": 290404.37731189607, "hkd": 2968547.2374367854, "huf": 108184306.68213, "idr": 5380579534.902493, "ils": 1372339.4903740843, "inr": 26237054.88000283, "jpy": 41968396.5518934, "krw": 430206185.0307525, "kwd": 114995.78145108996, "lkr": 66436734.88591222, "ltc": 6246.340215547688, "mmk": 572352106.4573352, "mxn": 7314764.251875622, "myr": 1543860.8910416376, "ngn": 136284036.74768588, "nok": 3256052.574146343, "nzd": 554093.4109880094, "php": 19927209.811908104, "pkr": 53197573.9267478, "pln": 1449236.674710246, "rub": 24821929.014362644, "sar": 1418245.7567136334, "sek": 3508692.277230323, "sgd": 512153.37708223803, "thb": 12001180.996002244, "try": 2116120.765955464, "twd": 11668733.722921267, "uah": 10266877.037643129, "usd": 378168.61496777146, "vef": 93970227502.88632, "vnd": 8780051638.46013, "xag": 24967.43695234383, "xau": 292.67225449585834, "xdr": 271490.274034283, "xlm": 3507055.7690803213, "xrp": 1222031.9030914076, "zar": 5423554.731648856, "bits": 92124490.05749853, "link": 746339.5126792192, "sats": 9212449005.749853}}, "community_data": {"facebook_likes": null, "twitter_followers": 31777, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 10064, "reddit_accounts_active_48h": "1037.14285714286"}, "developer_data": {"forks": 58, "stars": 322, "subscribers": 69, "total_issues": 219, "closed_issues": 145, "pull_requests_merged": 1491, "pull_request_contributors": 15, "code_additions_deletions_4_weeks": {"additions": 108, "deletions": -40}, "commit_count_4_weeks": 12}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BNT_20191014": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 1.2639459643297002, "ars": 19.93171750529951, "aud": 0.5088296602643828, "bch": 0.0014947785844607348, "bdt": 29.143537678820532, "bhd": 0.1297172031427868, "bmd": 0.34410119303396725, "bnb": 0.01959266887991294, "brl": 1.414221493250301, "btc": 4.019509379378796e-05, "cad": 0.4572932804824895, "chf": 0.3427984259171407, "clp": 247.4447352916601, "cny": 2.4487617301069253, "czk": 8.07351071628592, "dkk": 2.3341271704572044, "eos": 0.11059459074387448, "eth": 0.0018005239633286786, "eur": 0.3125412639124709, "gbp": 0.2767571485452893, "hkd": 2.6986652215478437, "huf": 103.78885066334159, "idr": 4871.776761851109, "ils": 1.2073134458789763, "inr": 24.427736123255098, "jpy": 37.116266317184696, "krw": 409.4081584598823, "kwd": 0.10461330060499383, "lkr": 62.14309913436932, "ltc": 0.005992760190008318, "mmk": 526.6604479777437, "mxn": 6.693456406896736, "myr": 1.4414398976192873, "ngn": 124.22053068526218, "nok": 3.1387052682116114, "nzd": 0.5438615704235917, "php": 17.74311967600738, "pkr": 53.882997481553595, "pln": 1.3470656721142122, "rub": 22.169820485031064, "sar": 1.2906031396528497, "sek": 3.3856195525886434, "sgd": 0.47330465309555303, "thb": 10.46979494984802, "try": 2.011106992913267, "twd": 10.526457749203725, "uah": 8.43933845864806, "usd": 0.34410119303396725, "vef": 85504.89414932582, "vnd": 7995.384602606014, "xag": 0.019644403332151963, "xau": 0.00023029660546184324, "xdr": 0.25154485413169075, "xlm": 5.559610397689475, "xrp": 1.267498460272208, "zar": 5.17216817153511, "bits": 40.19509379378796, "link": 0.1306778317891471, "sats": 4019.509379378796}, "market_cap": {"aed": 88160696.5584981, "ars": 1390244637.4013274, "aud": 35491056.21957628, "bch": 104261.35683472083, "bdt": 2032772487.4743521, "bhd": 9047822.697668124, "bmd": 24001184.956172362, "bnb": 1366595.8708995625, "brl": 98642470.05137274, "btc": 2803.6225970892506, "cad": 31896374.747505177, "chf": 23910316.469928302, "clp": 17259361427.381023, "cny": 170802032.62210506, "czk": 563130346.1597996, "dkk": 162806229.86343595, "eos": 7714013.439453249, "eth": 125587.20962529845, "eur": 21799868.275547106, "gbp": 19303913.048399854, "hkd": 188232893.19652525, "huf": 7239310562.092458, "idr": 339808223550.1828, "ils": 84210557.53722626, "inr": 1703843592.012608, "jpy": 2588873246.5782633, "krw": 28556369849.004208, "kwd": 7296816.249190574, "lkr": 4334504053.656453, "ltc": 417997.2305535659, "mmk": 36734760230.15893, "mxn": 466871049.7674652, "myr": 100540963.78140591, "ngn": 8664427769.178223, "nok": 218925848.53032798, "nzd": 37934544.856409304, "php": 1237589132.686665, "pkr": 3758358920.947061, "pln": 93958326.7917712, "rub": 1546353144.593265, "sar": 90020044.35586794, "sek": 236148210.81103384, "sgd": 33013173.88470083, "thb": 730272054.0689795, "try": 140275453.50241834, "twd": 734224305.1945275, "uah": 588646965.9341052, "usd": 24001184.956172362, "vef": 5963997860749.436, "vnd": 557681020954.6025, "xag": 1370204.3679984738, "xau": 16063.273055617474, "xdr": 17545346.226661127, "xlm": 387784872.99819416, "xrp": 88408484.45897123, "zar": 360760635.01816446, "bits": 2803622597.0892506, "link": 9114826.89957804, "sats": 280362259708.92505}, "total_volume": {"aed": 17856083.171012916, "ars": 281580396.2826096, "aud": 7188364.843094717, "bch": 21117.11376881102, "bdt": 411718101.38777786, "bhd": 1832547.6194365125, "bmd": 4861204.272540048, "bnb": 276790.57090654556, "brl": 19979063.43971233, "btc": 567.8462197782088, "cad": 6460297.41799208, "chf": 4842799.753164212, "clp": 3495714135.1690097, "cny": 34594274.08510401, "czk": 114056520.53212379, "dkk": 32974802.771341484, "eos": 1562397.6548981925, "eth": 25436.45578839974, "eur": 4415349.200275493, "gbp": 3909817.9843612327, "hkd": 38124723.68803622, "huf": 1466251249.6341522, "idr": 68824818073.89183, "ils": 17056021.310633995, "inr": 345096784.36112416, "jpy": 524350848.1065387, "krw": 5783812231.425402, "kwd": 1477898.4617333547, "lkr": 877911222.443962, "ltc": 84661.23346773934, "mmk": 7440264874.741478, "mxn": 94560145.5094491, "myr": 20363584.69767024, "ngn": 1754894742.3869572, "nok": 44341280.32380316, "nzd": 7683269.466469198, "php": 250661523.18943632, "pkr": 761218684.7278279, "pln": 19030336.230270587, "rub": 313198641.11206496, "sar": 18232675.804802336, "sek": 47829500.645219795, "sgd": 6686494.11399764, "thb": 147909431.79843998, "try": 28411415.317354288, "twd": 148709921.44479483, "uah": 119224661.24243213, "usd": 4861204.272540048, "vef": 1207949188135.3533, "vnd": 112952813235.24086, "xag": 277521.4365511672, "xau": 3253.4581834828778, "xdr": 3553637.547312226, "xlm": 78542017.19154836, "xrp": 17906270.176473822, "zar": 73068523.22154021, "bits": 567846219.7782089, "link": 1846118.6624161578, "sats": 56784621977.820885}}, "community_data": {"facebook_likes": null, "twitter_followers": 774, "reddit_average_posts_48h": 0.333, "reddit_average_comments_48h": 0.133, "reddit_subscribers": 5101, "reddit_accounts_active_48h": "153.4375"}, "developer_data": {"forks": 219, "stars": 563, "subscribers": 69, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 213, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 7153, "deletions": -5858}, "commit_count_4_weeks": 129}, "public_interest_stats": {"alexa_rank": 168578, "bing_matches": null}}, "EVX_20191206": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 1.013292819299677, "ars": 16.519580530081683, "aud": 0.40461285445196377, "bch": 0.0012909145398633912, "bdt": 23.425074818101535, "bhd": 0.10401258239096302, "bmd": 0.2758610528421202, "bnb": 0.018214311306535547, "brl": 1.165126742783977, "btc": 3.7757927216279265e-05, "cad": 0.36707395824226163, "chf": 0.27350685461716534, "clp": 221.73671951732962, "cny": 1.9418687092715357, "czk": 6.3628041490667275, "dkk": 1.860748180489625, "eos": 0.103011241825821, "eth": 0.0018532637907089167, "eur": 0.249045703339549, "gbp": 0.21319590435639849, "hkd": 2.1595920452271815, "huf": 82.73689441429988, "idr": 3897.3065202859684, "ils": 0.9580930226259665, "inr": 19.76133410645055, "jpy": 30.076185452788778, "krw": 326.8401754073441, "kwd": 0.08388493239244328, "lkr": 50.02612579968788, "ltc": 0.006058650376154563, "mmk": 415.6873460733018, "mxn": 5.401745620122686, "myr": 1.1527681676166535, "ngn": 100.0331785661826, "nok": 2.529754819678113, "nzd": 0.4245388500208555, "php": 14.077189526533408, "pkr": 42.833475052156295, "pln": 1.0677604807391412, "rub": 17.712017517097017, "sar": 1.0344759136863677, "sek": 2.6327271300388086, "sgd": 0.3770173698919558, "thb": 8.348914902270957, "try": 1.5841045098405913, "twd": 8.399417336936883, "uah": 6.610242685912407, "usd": 0.2758610528421202, "vef": 68548.06260685847, "vnd": 6353.950502506341, "xag": 0.016307699931225227, "xau": 0.0001886117190492144, "xdr": 0.20081967408168958, "xlm": 4.930141462874786, "xrp": 1.2578262353499194, "zar": 4.013309355063008, "bits": 37.75792721627926, "link": 0.13189279781579938, "sats": 3775.7927216279263}, "market_cap": {"aed": 22190119.550491787, "ars": 361800680.57251227, "aud": 8861730.444792487, "bch": 28224.911775542532, "bdt": 512986178.12385535, "bhd": 2277773.6050730348, "bmd": 6041086.668434009, "bnb": 398377.03655231104, "brl": 25515737.761464674, "btc": 826.28543040596, "cad": 8038481.359051681, "chf": 5989157.487432146, "clp": 4855816819.292229, "cny": 42525021.38510752, "czk": 139356391.37610283, "dkk": 40752071.18748217, "eos": 2253326.7085246234, "eth": 40571.58681394785, "eur": 5454346.125762348, "gbp": 4669022.982125932, "hkd": 47292949.038169004, "huf": 1811935649.6740339, "idr": 85356835121.86955, "ils": 20981298.108138178, "inr": 432753847.6019368, "jpy": 658400729.7291777, "krw": 7157479484.760612, "kwd": 1836997.79848409, "lkr": 1095523121.253578, "ltc": 132499.6952037049, "mmk": 9103145437.632107, "mxn": 118301392.01060922, "myr": 25244492.970052034, "ngn": 2190628561.774903, "nok": 55398365.63750693, "nzd": 9299703.187167324, "php": 308552766.59745455, "pkr": 938011119.853064, "pln": 23384659.863961212, "rub": 387808162.7887875, "sar": 22654008.554674175, "sek": 57657508.53129457, "sgd": 8256353.149748752, "thb": 182924104.32018146, "try": 34692498.79384277, "twd": 183939006.88047883, "uah": 144757835.7059098, "usd": 6041086.668434009, "vef": 1501135382812.7007, "vnd": 139147211567.35614, "xag": 357128.20208881237, "xau": 4129.626435674802, "xdr": 4397754.026366577, "xlm": 107832092.94074453, "xrp": 27510387.051410392, "zar": 87887982.1777052, "bits": 826285430.4059601, "link": 2886310.378915266, "sats": 82628543040.59601}, "total_volume": {"aed": 4350450.676729519, "ars": 70924829.35589331, "aud": 1737156.558240074, "bch": 5542.386096676502, "bdt": 100572737.37050939, "bhd": 446565.49502037326, "bmd": 1184376.2051425227, "bnb": 78200.95182796777, "brl": 5002331.340039951, "btc": 162.1091128658099, "cad": 1575987.8286204878, "chf": 1174268.7386078355, "clp": 951999898.8512102, "cny": 8337179.420859755, "czk": 27317933.26566363, "dkk": 7988898.200846937, "eos": 442266.3599073172, "eth": 7956.764874757749, "eur": 1069247.7317454384, "gbp": 915330.9376299368, "hkd": 9271948.340768501, "huf": 355220891.1772996, "idr": 16732616145.76396, "ils": 4113456.9980804906, "inr": 84842907.89300507, "jpy": 129128479.80799775, "krw": 1403248927.852861, "kwd": 360149.85396455886, "lkr": 214781145.87827078, "ltc": 26012.08567452993, "mmk": 1784703554.1832445, "mxn": 23191744.223377764, "myr": 4949271.28604958, "ngn": 429480403.98571944, "nok": 10861197.629757956, "nzd": 1822706.4202899274, "php": 60438717.748422995, "pkr": 183900366.19041666, "pln": 4584301.020930084, "rub": 76044413.94024234, "sar": 4441397.741146196, "sek": 11303296.842108738, "sgd": 1618678.6689348496, "thb": 35845060.57355165, "try": 6801161.920410424, "twd": 36061886.694179565, "uah": 28380280.821637865, "usd": 1184376.2051425227, "vef": 294302850742.20886, "vnd": 27279921200.506813, "xag": 70015.14552400947, "xau": 809.7816989800455, "xdr": 862195.0835624227, "xlm": 21166968.575144537, "xrp": 5400325.446466869, "zar": 17230660.34527492, "bits": 162109112.8658099, "link": 566265.8420002058, "sats": 16210911286.58099}}, "community_data": {"facebook_likes": null, "twitter_followers": 17984, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2894, "reddit_accounts_active_48h": "22.2307692307692"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 982037, "bing_matches": null}}, "WTC_20190103": {"id": "waltonchain", "symbol": "wtc", "name": "Waltonchain", "localization": {"en": "Waltonchain", "de": "Waltonchain", "es": "Waltonchain", "fr": "Waltonchain", "it": "Waltonchain", "pl": "Waltonchain", "ro": "Waltonchain", "hu": "Waltonchain", "nl": "Waltonchain", "pt": "Waltonchain", "sv": "Waltonchain", "vi": "Waltonchain", "tr": "Waltonchain", "ru": "Waltonchain", "ja": "\u30a6\u30a9\u30eb\u30c8\u30f3\u30c1\u30a7\u30fc\u30f3", "zh": "\u6c83\u5c14\u987f\u94fe", "zh-tw": "\u6c83\u723e\u9813\u93c8", "ko": "\uc6d4\ud2bc\uccb4\uc778", "ar": "Waltonchain", "th": "Waltonchain", "id": "Waltonchain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1093/thumb/ggx6nnW.png?1604815811", "small": "https://assets.coingecko.com/coins/images/1093/small/ggx6nnW.png?1604815811"}, "market_data": {"current_price": {"aed": 4.440018361560851, "ars": 45.573602947263744, "aud": 1.71538470886556, "bch": 0.007517216093694322, "bdt": 101.24221833429289, "bhd": 0.4557360294726374, "bmd": 1.2089130178594008, "bnb": 0.20532404595394232, "brl": 4.69227498751946, "btc": 0.0003180782765762267, "cad": 1.6472225661795925, "chf": 1.1892838971884154, "clp": 838.9694434223751, "cny": 8.315050015312101, "czk": 27.214596515669108, "dkk": 7.891057623862415, "eos": 0.4590142595747411, "eth": 0.008780174622654667, "eur": 1.0568039552132746, "gbp": 0.9525835639436185, "hkd": 9.468007285226875, "huf": 339.95991429742656, "idr": 17601.859276144074, "ils": 4.550859969429335, "inr": 84.51671209721232, "jpy": 133.4030981784031, "krw": 1350.7192571269004, "kwd": 0.3670574239605787, "lkr": 220.77683803746157, "ltc": 0.038584842301608524, "mmk": 1868.0200222285725, "mxn": 23.752124562957633, "myr": 5.021134386854754, "ngn": 440.64879500975155, "nok": 10.52926971165002, "nzd": 1.802196752678043, "php": 63.511676746256654, "pkr": 168.19002360968878, "pln": 4.545887710186886, "rub": 84.08739565283202, "sar": 4.535781197357562, "sek": 10.85291748696528, "sgd": 1.6515722352178517, "thb": 39.32594047096636, "try": 6.387348748771991, "twd": 36.952828501039036, "uah": 33.51311070914976, "usd": 1.2089130178594008, "vef": 300399.9454823342, "vnd": 27945.484675614756, "xag": 0.07861839405133793, "xau": 0.0009447050778062275, "xdr": 0.8666842494596182, "xlm": 10.452845150019074, "xrp": 3.315759901878503, "zar": 17.44469342705729, "bits": 318.0782765762267, "link": 3.9861393636954663, "sats": 31807.82765762267}, "market_cap": {"aed": 112094713.34768966, "ars": 1150574128.6548817, "aud": 43311712.78430375, "bch": 189928.4861626529, "bdt": 2556006871.754733, "bhd": 11505718.090767186, "bmd": 30520765.26809698, "bnb": 5186038.993169747, "brl": 118463298.31159136, "btc": 8033.669340012115, "cad": 41601329.09867961, "chf": 30026786.682232812, "clp": 21181737393.560795, "cny": 209925516.5265683, "czk": 687046140.8194765, "dkk": 199219259.36123347, "eos": 11595724.52294233, "eth": 221797.10931333542, "eur": 26680093.20829017, "gbp": 24044960.855808012, "hkd": 239033689.21576232, "huf": 8581259962.581241, "idr": 444384506836.16504, "ils": 114893070.75282559, "inr": 2133747170.4274082, "jpy": 3366991218.847928, "krw": 34100869773.7946, "kwd": 9266897.8752912, "lkr": 5573831988.5953245, "ltc": 974593.0794169873, "mmk": 47160879047.77152, "mxn": 599684204.2936764, "myr": 126765831.56670645, "ngn": 11124818940.22135, "nok": 265828693.10528654, "nzd": 45499074.989537686, "php": 1603486689.1223853, "pkr": 4246201467.9239893, "pln": 114774863.82894237, "rub": 2121873799.1982176, "sar": 114512385.24763682, "sek": 273985947.5177256, "sgd": 41696218.15789815, "thb": 992840494.1711915, "try": 161222218.99535957, "twd": 932927835.1799728, "uah": 846087162.8041861, "usd": 30520765.26809698, "vef": 7584033000860.419, "vnd": 705524355753.8029, "xag": 1985219.5143715353, "xau": 23850.757226407048, "xdr": 21880702.869881928, "xlm": 263959249.01349172, "xrp": 83805527.32745998, "zar": 440432955.2778004, "bits": 8033669340.012115, "link": 100677499.68917274, "sats": 803366934001.2114}, "total_volume": {"aed": 17347657.937755115, "ars": 178061262.48592192, "aud": 6702203.625706232, "bch": 29370.620303415508, "bdt": 395564889.4896494, "bhd": 1780612.6248592192, "bmd": 4723360.986946833, "bnb": 802224.4561963367, "brl": 18333253.33473537, "btc": 1242.7680901606159, "cad": 6435886.363179204, "chf": 4646667.774601769, "clp": 3277949264.9674006, "cny": 32487848.39489967, "czk": 106330531.27777691, "dkk": 30831261.782835696, "eos": 1793421.0436137207, "eth": 34305.1432638729, "eur": 4129053.5374862114, "gbp": 3721852.586801536, "hkd": 36992583.89520473, "huf": 1328262143.4266055, "idr": 68772470950.70699, "ils": 17780728.736565344, "inr": 330216429.7741215, "jpy": 521221113.64921266, "krw": 5277414130.859339, "kwd": 1434135.2030227205, "lkr": 862600276.6138686, "ltc": 150755.37786632526, "mmk": 7298567196.714701, "mxn": 92802258.60784271, "myr": 19618144.500653606, "ngn": 1721665079.7421207, "nok": 41139057.18801082, "nzd": 7041388.178178881, "php": 248147361.90866, "pkr": 657137597.3089769, "pln": 17761301.552826058, "rub": 328539041.48027116, "sar": 17721814.254975107, "sek": 42403585.944714166, "sgd": 6452881.016010243, "thb": 153650932.9053807, "try": 24956099.772500012, "twd": 144378913.8843109, "uah": 130939544.31487317, "usd": 4723360.986946833, "vef": 1173696835099.5403, "vnd": 109186194646.03268, "xag": 307171.02871142264, "xau": 3691.070443249598, "xdr": 3386234.1718740263, "xlm": 40840457.71268107, "xrp": 12955051.960931942, "zar": 68158406.06010687, "bits": 1242768090.160616, "link": 15574300.947102526, "sats": 124276809016.06158}}, "community_data": {"facebook_likes": null, "twitter_followers": 54677, "reddit_average_posts_48h": 0.208, "reddit_average_comments_48h": 3.917, "reddit_subscribers": 20509, "reddit_accounts_active_48h": "879.44"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 554738, "bing_matches": null}}, "SOUL_20190421": {"id": "phantasma", "symbol": "soul", "name": "Phantasma", "localization": {"en": "Phantasma", "de": "Phantasma", "es": "Phantasma", "fr": "Phantasma", "it": "Phantasma", "pl": "Phantasma", "ro": "Phantasma", "hu": "Phantasma", "nl": "Phantasma", "pt": "Phantasma", "sv": "Phantasma", "vi": "Phantasma", "tr": "Phantasma", "ru": "Phantasma", "ja": "Phantasma", "zh": "Phantasma", "zh-tw": "Phantasma", "ko": "Phantasma", "ar": "Phantasma", "th": "Phantasma", "id": "Phantasma"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4130/thumb/phantasma.png?1548331035", "small": "https://assets.coingecko.com/coins/images/4130/small/phantasma.png?1548331035"}, "market_data": {"current_price": {"aed": 0.3363692297614437, "ars": 3.812322704389134, "aud": 0.12762228521825458, "bch": 0.0002965470509783569, "bdt": 7.726319374875829, "bhd": 0.034529135981015514, "bmd": 0.09157853189817516, "bnb": 0.004679350441116408, "brl": 0.36065329222194736, "btc": 1.754410703287271e-05, "cad": 0.12224799907381015, "chf": 0.09255008854308291, "clp": 60.635061755100786, "cny": 0.6124955370413743, "czk": 2.0805114917353373, "dkk": 0.6052164174334488, "eos": 0.016844733449930455, "eth": 0.0005506558718509974, "eur": 0.08106092066673343, "gbp": 0.07023734556021997, "hkd": 0.7184647194420293, "huf": 25.899670040345303, "idr": 1289.8842184199318, "ils": 0.3273337254902423, "inr": 6.358160101892446, "jpy": 10.259909242680145, "krw": 103.68508853568217, "kwd": 0.027849214707298772, "lkr": 15.997128893212235, "ltc": 0.0011581092167725333, "mmk": 138.95849698221406, "mxn": 1.7230019989349188, "myr": 0.37877796578404205, "ngn": 32.945081418024614, "nok": 0.7777581557048212, "nzd": 0.1361441255040392, "php": 4.731640390503266, "pkr": 12.97209904337651, "pln": 0.3462172187676457, "rub": 5.851685031229597, "sar": 0.3434341471832598, "sek": 0.8466922471775987, "sgd": 0.12387324327940702, "thb": 2.9112815290429817, "try": 0.5273691706080863, "twd": 2.8185039594266685, "uah": 2.4470699508511387, "usd": 0.09157853189817516, "vef": 22756.13347126982, "vnd": 2126.741354181318, "xag": 0.006108697433645862, "xau": 7.18680844777309e-05, "xdr": 0.06567133153830904, "xlm": 0.7866581124652919, "xrp": 0.2734979410044396, "zar": 1.279985539322646, "bits": 17.544107032872713, "link": 0.18317972757047304, "sats": 1754.4107032872712}, "market_cap": {"aed": 19829220.79591686, "ars": 224745572.5486873, "aud": 7522852.6974879475, "bch": 17468.15562973505, "bdt": 455472377.5799545, "bhd": 2035518.7118196841, "bmd": 5398623.799396584, "bnb": 275760.6207965159, "brl": 21262431.246309258, "btc": 1034.11810794253, "cad": 7206002.068077569, "chf": 5456648.20799249, "clp": 3574450924.944933, "cny": 36107075.695124246, "czk": 122645395.61231181, "dkk": 35675709.457681015, "eos": 992957.5814556143, "eth": 32459.678146301143, "eur": 4778602.653283485, "gbp": 4140469.1243234086, "hkd": 42354093.22459601, "huf": 1526298920.5654066, "idr": 76039651386.53488, "ils": 19296570.977373123, "inr": 374834548.32780373, "jpy": 604810523.5582986, "krw": 6112314480.3594475, "kwd": 1641732.2946440978, "lkr": 943042861.409216, "ltc": 68236.0508648013, "mmk": 8191708617.590403, "mxn": 101568898.36827734, "myr": 22329247.896684233, "ngn": 1942137495.8725443, "nok": 45849432.20351524, "nzd": 8025335.006240579, "php": 278962607.1087013, "pkr": 764715061.1845254, "pln": 20408687.480048813, "rub": 344988256.65283954, "sar": 20245703.027545072, "sek": 49911237.98045764, "sgd": 7302189.348311417, "thb": 171622250.5828168, "try": 31082868.05071093, "twd": 166158200.86159608, "uah": 144256626.5436761, "usd": 5398623.799396584, "vef": 1341491299258.2017, "vnd": 125375925513.01256, "xag": 360197.0436755474, "xau": 4237.379820146373, "xdr": 3871374.7210424887, "xlm": 46327051.00947506, "xrp": 16120924.782561947, "zar": 75459523.29000805, "bits": 1034118107.94253, "link": 10797327.725695485, "sats": 103411810794.253}, "total_volume": {"aed": 3398776.114246434, "ars": 38520858.03646948, "aud": 1289534.048500738, "bch": 2996.400813267817, "bdt": 78069060.48151691, "bhd": 348892.80063183315, "bmd": 925337.0976115083, "bnb": 47281.5677008693, "brl": 3644149.60309428, "btc": 177.27094708216845, "cad": 1235230.6409274065, "chf": 935153.9988800689, "clp": 612674945.699556, "cny": 6188839.576245282, "czk": 21022115.39545469, "dkk": 6115289.15704164, "eos": 170204.2655360446, "eth": 5563.992954242695, "eur": 819063.9826250206, "gbp": 709699.3163954138, "hkd": 7259584.145375468, "huf": 261698074.9470435, "idr": 13033379048.42928, "ils": 3307478.6548476936, "inr": 64244766.68152052, "jpy": 103669216.3938076, "krw": 1047665396.054599, "kwd": 281396.862057854, "lkr": 161639813.53862667, "ltc": 11701.88470106701, "mmk": 1404078550.0792866, "mxn": 17409731.689584278, "myr": 3827286.769430957, "ngn": 332887035.72826326, "nok": 7858702.90259501, "nzd": 1375641.2921189761, "php": 47809921.11511367, "pkr": 131073999.87667014, "pln": 3498283.1643751836, "rub": 59127189.86318016, "sar": 3470162.1699787662, "sek": 8555233.746754318, "sgd": 1251652.5983987174, "thb": 29416466.33306978, "try": 5328697.103846004, "twd": 28479013.79683929, "uah": 24725932.585277114, "usd": 925337.0976115083, "vef": 229934833663.6144, "vnd": 21489235864.10675, "xag": 61724.12066751386, "xau": 726.1767940925831, "xdr": 663562.9340456034, "xlm": 7948630.749077183, "xrp": 2763505.656687805, "zar": 12933359.810336942, "bits": 177270947.08216846, "link": 1850903.1968299756, "sats": 17727094708.216846}}, "community_data": {"facebook_likes": null, "twitter_followers": 10607, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 466, "reddit_accounts_active_48h": "9.45833333333333"}, "developer_data": {"forks": 4, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 13938, "deletions": -6723}, "commit_count_4_weeks": 6}, "public_interest_stats": {"alexa_rank": 2602528, "bing_matches": null}}, "PPT_20200608": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 1.384525051623898, "ars": 25.94586109566994, "aud": 0.5383000041916054, "bch": 0.0014526139840073703, "bdt": 32.02495727138167, "bhd": 0.14232599473164423, "bmd": 0.37695260410425685, "bnb": 0.02121352220176856, "brl": 1.92946959936805, "btc": 3.856331853373444e-05, "cad": 0.5074837518534802, "chf": 0.36059474584915274, "clp": 290.5927787129336, "cny": 2.6726693536200035, "czk": 8.808967710051974, "dkk": 2.4755050479484777, "eos": 0.13835940955528767, "eth": 0.0015475590242312557, "eur": 0.3320394552304429, "gbp": 0.2975007959267863, "hkd": 2.921363834177786, "huf": 114.3730743742932, "idr": 5260.750542878996, "ils": 1.3020847632010888, "inr": 28.46086323747643, "jpy": 41.2404996520261, "krw": 454.8800159507303, "kwd": 0.11600678696048075, "lkr": 69.91615500675248, "ltc": 0.007946429642295357, "mmk": 528.9416676410971, "mxn": 8.18761034602464, "myr": 1.6061950460882373, "ngn": 146.06913409039953, "nok": 3.50141812442081, "nzd": 0.5787583271901151, "php": 18.762294543837925, "pkr": 61.6505984012511, "pln": 1.472749677756687, "rub": 25.841231869159103, "sar": 1.4152572435313073, "sek": 3.449560000768979, "sgd": 0.5245725212079394, "thb": 11.8657140719938, "try": 2.550502784155853, "twd": 11.218486450746806, "uah": 10.06034669371198, "usd": 0.37695260410425685, "vef": 93668.06383047187, "vnd": 8656.23508903285, "xag": 0.021287161912246447, "xau": 0.00022064543728638584, "xdr": 0.27398196905151356, "xlm": 4.581175799962201, "xrp": 1.8408443897361702, "zar": 6.312362363136161, "bits": 38.56331853373444, "link": 0.08439779179644051, "sats": 3856.331853373444}, "market_cap": {"aed": 50157049.84492415, "ars": 939938101.3139719, "aud": 19500940.13112561, "bch": 52623.70075271371, "bdt": 1160164907.2786853, "bhd": 5156029.501676857, "bmd": 13655824.090041205, "bnb": 768500.1359943217, "brl": 69898701.18728495, "btc": 1397.0294633625967, "cad": 18384562.855940722, "chf": 13063229.60365387, "clp": 10527275378.213203, "cny": 96822523.9632102, "czk": 319121587.57776415, "dkk": 89679872.48456226, "eos": 5012332.419293767, "eth": 56063.26517912281, "eur": 12028759.961360978, "gbp": 10777531.423286865, "hkd": 105831953.90661487, "huf": 4143381866.2798567, "idr": 190580681000.61462, "ils": 47170493.80478397, "inr": 1031048831.0466875, "jpy": 1494015434.5709538, "krw": 16478892604.175442, "kwd": 4202566.207886086, "lkr": 2532845518.0540395, "ltc": 287874.5077167886, "mmk": 19161916613.79822, "mxn": 296611736.8224629, "myr": 58187466.44766553, "ngn": 5291631834.890967, "nok": 126845522.36054611, "nzd": 20966619.730709728, "php": 679699758.0770849, "pkr": 2233410029.926235, "pln": 53353154.505726025, "rub": 936147708.8445941, "sar": 51270381.87133693, "sek": 124966863.32883096, "sgd": 19003635.985238533, "thb": 429858030.7063172, "try": 92396807.93386869, "twd": 406410980.74371713, "uah": 364455168.2050763, "usd": 13655824.090041205, "vef": 3393303530992.188, "vnd": 313588558271.8538, "xag": 771167.874382062, "xau": 7993.300072864723, "xdr": 9925517.246661017, "xlm": 165961795.11346462, "xrp": 66688084.628336206, "zar": 228677316.68393794, "bits": 1397029463.3625968, "link": 3057470.3180491948, "sats": 139702946336.25967}, "total_volume": {"aed": 10434847.08297534, "ars": 195547991.45879292, "aud": 4057043.4041017615, "bch": 10948.0177162053, "bdt": 241364742.06352222, "bhd": 1072678.308864936, "bmd": 2841005.13511385, "bnb": 159881.4409368224, "brl": 14541968.884593759, "btc": 290.64286806483807, "cad": 3824788.3933010832, "chf": 2717719.717275585, "clp": 2190130980.822488, "cny": 20143294.60898423, "czk": 66391164.90196209, "dkk": 18657312.555073183, "eos": 1042783.068104698, "eth": 11663.596661390264, "eur": 2502505.055275305, "gbp": 2242195.118765364, "hkd": 22017647.746875584, "huf": 862003573.0705695, "idr": 39649067665.648796, "ils": 9813513.57791567, "inr": 214502984.5319231, "jpy": 310820166.80712986, "krw": 3428326126.695939, "kwd": 874316.4893261507, "lkr": 526941990.15710306, "ltc": 59890.4137384286, "mmk": 3986511772.520926, "mxn": 61708137.26739447, "myr": 12105522.880720105, "ngn": 1100889489.8566167, "nok": 26389383.607783627, "nzd": 4361968.485253531, "php": 141407101.49019012, "pkr": 464646389.84786934, "pln": 11099775.81183333, "rub": 194759425.02745962, "sar": 10666468.549630882, "sek": 25998540.849335745, "sgd": 3953582.520096311, "thb": 89429159.64311378, "try": 19222553.254745167, "twd": 84551153.82612342, "uah": 75822520.67412792, "usd": 2841005.13511385, "vef": 705954667619.014, "vnd": 65240054242.716675, "xag": 160436.44650871152, "xau": 1662.953945787542, "xdr": 2064939.1263753413, "xlm": 34527269.02757305, "xrp": 13874021.049976667, "zar": 47574824.24344581, "bits": 290642868.06483805, "link": 636086.7580573622, "sats": 29064286806.483807}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 2134911, "bing_matches": null}}, "APPC_20201118": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.08803531088348546, "ars": 1.9110388426578861, "aud": 0.03296755813384075, "bch": 9.351132702308097e-05, "bdt": 2.0343279692845924, "bhd": 0.00903719736817514, "bmd": 0.02396823056996603, "bnb": 0.0008563832869710158, "brl": 0.13083058656615995, "btc": 1.49e-06, "cad": 0.03146717086839144, "chf": 0.021881101020164082, "clp": 18.386039545132018, "cny": 0.15834371843742473, "czk": 0.5351346812411272, "dkk": 0.15088959873016525, "dot": 0.005367602970953241, "eos": 0.009430615458923835, "eth": 5.182280598022532e-05, "eur": 0.02025061419918089, "gbp": 0.018164635124446167, "hkd": 0.18583767572423157, "huf": 7.243894356930281, "idr": 339.432137210679, "ils": 0.08072979420575974, "inr": 1.7865415734010694, "jpy": 2.5079162733085827, "krw": 26.571779615628643, "kwd": 0.00732924522598993, "lkr": 4.427870470594858, "ltc": 0.0003747165465934973, "mmk": 31.053902679451543, "mxn": 0.4890885225415565, "myr": 0.09883299875525522, "ngn": 9.119911731872097, "nok": 0.21960891259731394, "nzd": 0.035000351704940695, "php": 1.154909190013816, "pkr": 3.7950697078720097, "pln": 0.09079381453978291, "rub": 1.852744223058381, "sar": 0.0898949100204869, "sek": 0.20831508235274587, "sgd": 0.03231540654826245, "thb": 0.7227935350287583, "try": 0.1836565667423651, "twd": 0.6830945712440335, "uah": 0.6742884515867837, "usd": 0.02396823056996603, "vef": 5955.809103019527, "vnd": 555.5236640353885, "xag": 0.000971357843803653, "xau": 1.2685186029154559e-05, "xdr": 0.016889908749813123, "xlm": 0.295135424084833, "xrp": 0.08926809123921345, "yfi": 1.3910090596915455e-06, "zar": 0.3716493459182962, "bits": 1.49, "link": 0.001903950308571701, "sats": 149.0}, "market_cap": {"aed": 9718385.184402218, "ars": 210963207.7051887, "aud": 3639351.3616130026, "bch": 10315.770851562494, "bdt": 224573328.57126465, "bhd": 997633.3829005379, "bmd": 2645898.4983398323, "bnb": 94690.49290319203, "brl": 14442636.953187998, "btc": 164.38416206936924, "cad": 3473720.761515423, "chf": 2415496.3030028977, "clp": 2029669828.1866758, "cny": 17479863.839432377, "czk": 59074533.9073843, "dkk": 16656989.406448659, "dot": 592359.5883816775, "eos": 1040763.6357140699, "eth": 5720.455281772475, "eur": 2235503.765856347, "gbp": 2005228.573647328, "hkd": 20514974.006877966, "huf": 799667257.2547506, "idr": 37470558350.661156, "ils": 8911915.322108235, "inr": 197219717.67940465, "jpy": 276853640.9952683, "krw": 2933309222.7220063, "kwd": 809089.3018073384, "lkr": 488801031.63188285, "ltc": 41464.73371837333, "mmk": 3428099301.168737, "mxn": 53991410.98757321, "myr": 10910362.457904316, "ngn": 1006764378.6183075, "nok": 24243044.99103881, "nzd": 3863755.3050542017, "php": 127492619.14250508, "pkr": 418944953.4808847, "pln": 10022901.642576154, "rub": 204527953.92166886, "sar": 9923669.865294412, "sek": 22996297.618621062, "sgd": 3567359.10937167, "thb": 79787855.04929179, "try": 20274197.243529066, "twd": 75408107.20268539, "uah": 74435982.9272073, "usd": 2645898.4983398323, "vef": 657473079461.4679, "vnd": 61325312445.27153, "xag": 107230.03739338383, "xau": 1400.341780246359, "xdr": 1864509.1079116254, "xlm": 32557002.978559703, "xrp": 9852638.76125119, "yfi": 153.1437953952201, "zar": 41027077.21388509, "bits": 164384162.06936923, "link": 210003.69773168152, "sats": 16438416206.936924}, "total_volume": {"aed": 454647.621127691, "ars": 9869326.920954978, "aud": 170256.9313326668, "bch": 482.9278383057617, "bdt": 10506038.571873423, "bhd": 46671.50310334186, "bmd": 123781.00221282053, "bnb": 4422.686991021051, "brl": 675658.6005786827, "btc": 7.694923192545206, "cad": 162508.36437514637, "chf": 113002.27632113098, "clp": 94952457.79522796, "cny": 817746.8130187836, "czk": 2763637.764978279, "dkk": 779250.9213305961, "dot": 27720.330597021908, "eos": 48703.26282875729, "eth": 267.6325581476552, "eur": 104581.82608359885, "gbp": 93809.04168001482, "hkd": 959736.0006571038, "huf": 37410208.51777863, "idr": 1752955855.6494231, "ils": 416919.17165322293, "inr": 9226375.964838987, "jpy": 12951827.581505876, "krw": 137226713.57818842, "kwd": 37850.99266665848, "lkr": 22867196.763601627, "ltc": 1935.1778825588915, "mmk": 160374091.23970026, "mxn": 2525837.9968541553, "myr": 510410.96262456704, "ngn": 47098671.341978334, "nok": 1134143.4327749691, "nzd": 180755.04569234047, "php": 5964387.591624772, "pkr": 19599174.43787254, "pln": 468893.57667236484, "rub": 9568271.471051063, "sar": 464251.29396537517, "sek": 1075817.8245322877, "sgd": 166888.97404345765, "thb": 3732779.017526529, "try": 948471.9294557394, "twd": 3527758.563065394, "uah": 3482280.4326043874, "usd": 123781.00221282053, "vef": 30758049394.091824, "vnd": 2868934178.787652, "xag": 5016.459060768746, "xau": 65.51109542113547, "xdr": 87225.87285832832, "xlm": 1524190.8857262058, "xrp": 461014.1648529296, "yfi": 7.18369656004092, "zar": 1919337.6989268141, "bits": 7694923.192545205, "link": 9832.719051598646, "sats": 769492319.2545205}}, "community_data": {"facebook_likes": null, "twitter_followers": 24284, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3147, "reddit_accounts_active_48h": "252.416666666667"}, "developer_data": {"forks": 5, "stars": 11, "subscribers": 15, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 577884, "bing_matches": null}}, "MDA_20201127": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 1.9841298339768634, "ars": 43.372942049445356, "aud": 0.7401632892071326, "bch": 0.0016632450608733808, "bdt": 45.820689109602135, "bhd": 0.20366445629486682, "bmd": 0.5401638445978609, "bnb": 0.017498458334278398, "brl": 2.939031478456963, "btc": 2.9421939698623153e-05, "cad": 0.7061561940427838, "chf": 0.492975671297637, "clp": 418.03314665963825, "cny": 3.5575190805215198, "czk": 12.003791036575983, "dkk": 3.396131627851794, "dot": 0.09189831031186194, "eos": 0.16027856254498962, "eth": 0.0008890353806827779, "eur": 0.45615108151986555, "gbp": 0.4052546834264764, "hkd": 4.18770122982161, "huf": 164.5473128508038, "idr": 7660.319141410402, "ils": 1.8104293464695307, "inr": 40.104542965925724, "jpy": 56.448742252010305, "krw": 601.7579288950294, "kwd": 0.16496495781249765, "lkr": 100.12855786353795, "ltc": 0.006091215490600022, "mmk": 705.9845548205074, "mxn": 10.857272750190903, "myr": 2.20954020632755, "ngn": 207.05163038568364, "nok": 4.87509051141154, "nzd": 0.7791685204255423, "php": 26.087417056786975, "pkr": 86.95821224308924, "pln": 2.039230327272758, "rub": 41.05066964875016, "sar": 2.025704624604027, "sek": 4.6611764461654035, "sgd": 0.725764141601687, "thb": 16.393972683545087, "try": 4.255950931586561, "twd": 15.412602470515846, "uah": 15.337453796127706, "usd": 0.5401638445978609, "vef": 134224.04016795635, "vnd": 12586.566908459663, "xag": 0.02291014199335937, "xau": 0.0002939193527610343, "xdr": 0.3787202148882967, "xlm": 4.170118857668856, "xrp": 0.886855040917571, "yfi": 2.16691919692507e-05, "zar": 8.310690831060404, "bits": 29.421939698623152, "link": 0.03543505099202272, "sats": 2942.1939698623155}, "market_cap": {"aed": 38812266.97668343, "ars": 848476815.3728877, "aud": 14464331.904130125, "bch": 32803.38029606513, "bdt": 896314741.2651776, "bhd": 3983952.620446118, "bmd": 10566336.430546543, "bnb": 343903.162096832, "brl": 57493549.78588971, "btc": 576.9553535154486, "cad": 13807560.130616631, "chf": 9637217.335535703, "clp": 8177294969.841382, "cny": 69589891.7315796, "czk": 234750183.21016577, "dkk": 66403084.66412629, "dot": 1804432.8875213114, "eos": 3151378.637722905, "eth": 17463.014911706647, "eur": 8918886.085977871, "gbp": 7924593.827863406, "hkd": 81911877.79174307, "huf": 3217441222.491669, "idr": 149797160581.83295, "ils": 35414450.1707126, "inr": 784520228.5468756, "jpy": 1104076493.6278079, "krw": 11772081801.221912, "kwd": 3226938.013216044, "lkr": 1958650211.917154, "ltc": 120012.11583924422, "mmk": 13810014119.98732, "mxn": 212347014.05666372, "myr": 43221599.169150524, "ngn": 4050210333.4536357, "nok": 95346013.02656801, "nzd": 15231860.01610859, "php": 510057526.4961462, "pkr": 1701020412.8774936, "pln": 39871542.20384573, "rub": 803332142.9733744, "sar": 39629742.160969116, "sek": 91102952.70417191, "sgd": 14193009.517266583, "thb": 320793974.03139186, "try": 83260374.77968262, "twd": 301594940.73708946, "uah": 300021370.21684265, "usd": 10566336.430546543, "vef": 2625604026751.687, "vnd": 246095585061.47516, "xag": 447716.70157175267, "xau": 5748.087018217304, "xdr": 7408280.364521189, "xlm": 81755162.00505696, "xrp": 17478967.86305835, "yfi": 429.60819517279094, "zar": 162654484.7940825, "bits": 576955353.5154486, "link": 695472.346624848, "sats": 57695535351.54485}, "total_volume": {"aed": 910451.5238393744, "ars": 19902407.849573657, "aud": 339636.44062440697, "bch": 763.2081198816048, "bdt": 21025597.97691846, "bhd": 93454.87951961384, "bmd": 247863.31368816673, "bnb": 8029.463486949082, "brl": 1348624.2897773162, "btc": 13.500754524330183, "cad": 324031.7099845405, "chf": 226210.22246768247, "clp": 191821577.8393837, "cny": 1632427.7839502697, "czk": 5508142.488435294, "dkk": 1558372.4224030878, "dot": 42169.09358900051, "eos": 73546.52856329759, "eth": 407.94891706627703, "eur": 209312.63678361842, "gbp": 185957.96391466446, "hkd": 1921597.5188645679, "huf": 75505316.82113476, "idr": 3515066965.86185, "ils": 830746.1180566712, "inr": 18402647.66495846, "jpy": 25902459.87035451, "krw": 276126800.7581878, "kwd": 75696.9602737388, "lkr": 45945681.842794225, "ltc": 2795.0572238184795, "mmk": 323952950.4251628, "mxn": 4982043.186326228, "myr": 1013884.8846414462, "ngn": 95009141.62468603, "nok": 2237017.7137416443, "nzd": 357534.6505058287, "php": 11970652.4269026, "pkr": 39902246.05835524, "pln": 935735.3168787636, "rub": 18836793.891365457, "sar": 929528.8195040117, "sek": 2138859.6278447863, "sgd": 333029.1482714214, "thb": 7522651.570435865, "try": 1952915.0485490726, "twd": 7072333.254263889, "uah": 7037850.014336965, "usd": 247863.31368816673, "vef": 61590970416.413925, "vnd": 5775559051.367488, "xag": 10512.706039716608, "xau": 134.86986487714228, "xdr": 173782.1743563611, "xlm": 1913529.550103118, "xrp": 406948.4312977921, "yfi": 9.943275138013114, "zar": 3813501.012749296, "bits": 13500754.524330184, "link": 16259.97231660457, "sats": 1350075452.4330184}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 371, "reddit_accounts_active_48h": "14.9230769230769"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 4480394, "bing_matches": null}}, "RCN_20210107": {"id": "ripio-credit-network", "symbol": "rcn", "name": "Ripio Credit Network", "localization": {"en": "Ripio Credit Network", "de": "Ripio Credit Network", "es": "Ripio Credit Network", "fr": "Ripio Credit Network", "it": "Ripio Credit Network", "pl": "Ripio Credit Network", "ro": "Ripio Credit Network", "hu": "Ripio Credit Network", "nl": "Ripio Credit Network", "pt": "Ripio Credit Network", "sv": "Ripio Credit Network", "vi": "Ripio Credit Network", "tr": "Ripio Credit Network", "ru": "Ripio Credit Network", "ja": "Ripio Credit Network", "zh": "Ripio Credit Network", "zh-tw": "Ripio Credit Network", "ko": "\ub9ac\ud53c\uc624\ud06c\ub808\ub527\ub124\ud2b8\uc6cc\ud06c", "ar": "Ripio Credit Network", "th": "Ripio Credit Network", "id": "Ripio Credit Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1057/thumb/ripio-credit-network.png?1548608361", "small": "https://assets.coingecko.com/coins/images/1057/small/ripio-credit-network.png?1548608361"}, "market_data": {"current_price": {"aed": 0.13161454311147364, "ars": 3.020959898168846, "aud": 0.046493132379320984, "bch": 8.553107464586161e-05, "bdt": 3.048309153686573, "bhd": 0.013509579201129112, "bmd": 0.03583338205285551, "bnb": 0.0008724240190068403, "brl": 0.18641743678885211, "btc": 1.0885747944286542e-06, "cad": 0.0456026011685434, "chf": 0.031642847188684264, "clp": 25.459609671042593, "cny": 0.23409948495130484, "czk": 0.7676603353874252, "dkk": 0.21775433856156942, "dot": 0.0035464402370534278, "eos": 0.012867759849471312, "eth": 3.7056646072445914e-05, "eur": 0.02925104060342029, "gbp": 0.02619072644257825, "hkd": 0.2778188985594421, "huf": 10.635321348251543, "idr": 504.46193930953734, "ils": 0.1150654331110935, "inr": 2.6189548957643916, "jpy": 3.6994025297547486, "krw": 38.959363609646424, "kwd": 0.010898508151083623, "lkr": 6.67098696579208, "ltc": 0.00022466974428631987, "mmk": 47.82224333139712, "mxn": 0.7115939924922451, "myr": 0.14413977930761127, "ngn": 13.937403051137206, "nok": 0.3065617501385892, "nzd": 0.0498059285501074, "php": 1.7157641452747643, "pkr": 5.768919090162462, "pln": 0.13347250397091398, "rub": 2.655570126380265, "sar": 0.1344316561083233, "sek": 0.2937190660108462, "sgd": 0.047326186845285695, "thb": 1.0731683690933682, "try": 0.2664871648193399, "twd": 1.0058072366749824, "uah": 1.0203647273008647, "usd": 0.03583338205285551, "vef": 8904.152619835022, "vnd": 828.7809146144095, "xag": 0.0013349006232812044, "xau": 1.8731900468130173e-05, "xdr": 0.02494168224436185, "xlm": 0.2642109587040282, "xrp": 0.15881192868847807, "yfi": 1.5139014694375986e-06, "zar": 0.5255431312017936, "bits": 1.0885747944286543, "link": 0.002625232986250072, "sats": 108.85747944286543}, "market_cap": {"aed": 68587096.84981646, "ars": 1574902714.9123673, "aud": 24208098.1946017, "bch": 44305.94445559838, "bdt": 1588537787.7656162, "bhd": 7040124.861302851, "bmd": 18673526.399237324, "bnb": 450154.19058443856, "brl": 97146033.32780817, "btc": 558.1946683993758, "cad": 23757916.820168883, "chf": 16495054.135975901, "clp": 13267536211.747059, "cny": 121994147.96621776, "czk": 400190458.235889, "dkk": 113452186.07072939, "dot": 1794924.9006424178, "eos": 6583461.281468149, "eth": 18976.716540953086, "eur": 15247326.449031662, "gbp": 13650683.921317661, "hkd": 144777344.05539897, "huf": 5543796517.405582, "idr": 262960456256.3803, "ils": 59963008.7852244, "inr": 1364792285.3704314, "jpy": 1928770479.808815, "krw": 20302540904.152412, "kwd": 5679441.013169634, "lkr": 3476391121.2996955, "ltc": 115829.17562969284, "mmk": 24921173279.216988, "mxn": 370693027.66812426, "myr": 75114259.94093245, "ngn": 7263072836.0590725, "nok": 159669854.82931888, "nzd": 25943970.535148423, "php": 894270305.4690888, "pkr": 3006304645.3810406, "pln": 69568857.50025624, "rub": 1383873249.4421728, "sar": 70055153.47474496, "sek": 153257589.94613728, "sgd": 24659829.471725676, "thb": 558862661.243801, "try": 138923566.99976602, "twd": 524147231.1737192, "uah": 531733444.6410416, "usd": 18673526.399237324, "vef": 4640140547271.56, "vnd": 431995039758.4533, "xag": 694687.1137817724, "xau": 9754.489985169588, "xdr": 12997633.356083563, "xlm": 136051780.549643, "xrp": 81254172.72143894, "yfi": 769.8084398689673, "zar": 273902164.81242955, "bits": 558194668.3993758, "link": 1341083.4882326294, "sats": 55819466839.93752}, "total_volume": {"aed": 1736281.2626644862, "ars": 39853012.763253845, "aud": 613345.2480583603, "bch": 1128.3403700865097, "bdt": 40213808.7572272, "bhd": 178220.64856112015, "bmd": 472720.0229200742, "bnb": 11509.164880183902, "brl": 2459250.284038016, "btc": 14.360662384965181, "cad": 601597.2100487504, "chf": 417437.7798396853, "clp": 335867467.0863875, "cny": 3088279.909736842, "czk": 10127104.687017882, "dkk": 2872651.980322014, "dot": 46785.23806856166, "eos": 169753.65936711399, "eth": 488.8575282921633, "eur": 385884.66374981654, "gbp": 345512.48291235097, "hkd": 3665033.7917010454, "huf": 140302953.9353009, "idr": 6654947031.261491, "ils": 1517962.610879199, "inr": 34549694.933239676, "jpy": 48803142.44624552, "krw": 513958499.12626225, "kwd": 143774.9586510022, "lkr": 88004785.78095727, "ltc": 2963.8811796167856, "mmk": 630879104.025458, "mxn": 9387468.030356213, "myr": 1901516.292195998, "ngn": 183864572.98564887, "nok": 4044214.3400858156, "nzd": 657048.2141773202, "php": 22634650.139452707, "pkr": 76104554.14180854, "pln": 1760791.7958528893, "rub": 35032729.23433994, "sar": 1773445.092706398, "sek": 3874791.483871266, "sgd": 624335.0431512052, "thb": 14157418.222109709, "try": 3515543.6479729456, "twd": 13268778.796063574, "uah": 13460823.66897496, "usd": 472720.0229200742, "vef": 117465083935.5206, "vnd": 10933417682.27047, "xag": 17610.234286641276, "xau": 247.11439198146817, "xdr": 329034.88107342576, "xlm": 3485515.552790253, "xrp": 2095073.7627517926, "yfi": 19.97164365550715, "zar": 6933053.672152669, "bits": 14360662.38496518, "link": 34632.51656235377, "sats": 1436066238.4965181}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1128, "reddit_accounts_active_48h": "16.25"}, "developer_data": {"forks": 31, "stars": 79, "subscribers": 23, "total_issues": 69, "closed_issues": 69, "pull_requests_merged": 270, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 1, "deletions": -1}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 5449742, "bing_matches": null}}, "EVX_20210109": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 1.1418338838400859, "ars": 26.358255597579785, "aud": 0.4003594454368423, "bch": 0.0007402081671417966, "bdt": 26.394986070059122, "bhd": 0.11723857731219464, "bmd": 0.310872110562447, "bnb": 0.0074565461012353635, "brl": 1.6431456275888747, "btc": 9.114738374041704e-06, "cad": 0.3940101934507151, "chf": 0.2730144158102625, "clp": 216.3356116967282, "cny": 2.0070836074243252, "czk": 6.6068406169394684, "dkk": 1.8803099607369593, "dot": 0.03187003721549241, "eos": 0.10708643151820904, "eth": 0.0002814731573605723, "eur": 0.2527589217023457, "gbp": 0.22813007874303592, "hkd": 2.4102101255172887, "huf": 90.7746562842346, "idr": 4321.921260733321, "ils": 0.9959627416566499, "inr": 22.737512582253448, "jpy": 31.923767905768276, "krw": 338.0205303210026, "kwd": 0.09438512497630712, "lkr": 58.669363935666645, "ltc": 0.001951991520232508, "mmk": 410.99681011560045, "mxn": 6.186820997486428, "myr": 1.248928704184631, "ngn": 120.71473650674695, "nok": 2.6321230729211806, "nzd": 0.42843741446284256, "php": 14.935804232028282, "pkr": 49.94690275523743, "pln": 1.1463474360133492, "rub": 23.05741552762773, "sar": 1.1662255313790424, "sek": 2.5423338812274325, "sgd": 0.40956436863059664, "thb": 9.301137801100998, "try": 2.297747476439662, "twd": 8.69108268220539, "uah": 8.80980411948497, "usd": 0.310872110562447, "vef": 0.031127624430617847, "vnd": 7168.521480995452, "xag": 0.01125822726657679, "xau": 0.00015934371771099385, "xdr": 0.2155783064069662, "xlm": 1.5845631951254167, "xrp": 1.3693442123410204, "yfi": 1.3028762131104047e-05, "zar": 4.655076701589725, "bits": 9.114738374041705, "link": 0.02128350819327242, "sats": 911.4738374041705}, "market_cap": {"aed": 24790807.51610972, "ars": 572414236.7666125, "aud": 8692659.402967962, "bch": 16135.327269581832, "bdt": 573071992.6199613, "bhd": 2545413.1680122735, "bmd": 6749467.46996316, "bnb": 162202.2138374826, "brl": 35674985.25923722, "btc": 198.62941421471967, "cad": 8554241.32409397, "chf": 5927382.332121645, "clp": 4696948115.094219, "cny": 43576586.82632315, "czk": 143471405.16876584, "dkk": 40828021.436932564, "dot": 692957.3716963248, "eos": 2330470.6105341865, "eth": 6148.546212171763, "eur": 5488261.978525847, "gbp": 4953191.195377041, "hkd": 52330308.661491804, "huf": 1970871175.124685, "idr": 93845505618.32585, "ils": 21623741.396243855, "inr": 493663097.1971448, "jpy": 692927167.6989727, "krw": 7338971203.125966, "kwd": 2049232.8164254043, "lkr": 1273793788.2261941, "ltc": 42458.35006643698, "mmk": 8923314462.384464, "mxn": 134337816.55492032, "myr": 27115985.56057693, "ngn": 2620885436.5332336, "nok": 57180813.45878099, "nzd": 9302487.287814071, "php": 324321955.1393254, "pkr": 1084416980.223673, "pln": 24886514.964833703, "rub": 500608677.1939157, "sar": 25320384.232737847, "sek": 55212823.98229144, "sgd": 8891579.708242727, "thb": 202011561.375998, "try": 49887332.16127123, "twd": 188762349.9829922, "uah": 191273145.1323511, "usd": 6749467.46996316, "vef": 675824.1777674115, "vnd": 155656051338.00253, "xag": 244566.88627944037, "xau": 3459.1695730308174, "xdr": 4680505.960123071, "xlm": 34773670.30449409, "xrp": 29813017.337133028, "yfi": 284.01889326435804, "zar": 101010275.83333378, "bits": 198629414.21471968, "link": 463175.9123209039, "sats": 19862941421.471966}, "total_volume": {"aed": 1221283.6272529026, "ars": 28192284.762132447, "aud": 428216.78586352523, "bch": 791.7124619291488, "bdt": 28231570.97118189, "bhd": 125396.13421899427, "bmd": 332502.84842014953, "bnb": 7975.3787290573955, "brl": 1757477.0556095475, "btc": 9.74894938786899, "cad": 421425.7476873923, "chf": 292010.98404239176, "clp": 231388421.99042496, "cny": 2146738.1402550098, "czk": 7066550.036334077, "dkk": 2011143.4786692727, "dot": 34087.58069109171, "eos": 114537.59374725657, "eth": 301.0582918064728, "eur": 270346.0959478807, "gbp": 244003.55778179452, "hkd": 2577914.5339723276, "huf": 97090831.73868373, "idr": 4622644106.740358, "ils": 1065262.6506830214, "inr": 24319607.46144056, "jpy": 34145050.007113606, "krw": 361540277.6172994, "kwd": 100952.51982023563, "lkr": 62751626.66832058, "ltc": 2087.812700196884, "mmk": 439594307.1502425, "mxn": 6617305.105330756, "myr": 1335830.193527951, "ngn": 129114167.43741113, "nok": 2815268.3672885615, "nzd": 458248.44313283317, "php": 15975049.809421659, "pkr": 53422249.44474265, "pln": 1226111.2361091224, "rub": 24661769.51760731, "sar": 1247372.4657456507, "sek": 2719231.5695793736, "sgd": 438062.1952052461, "thb": 9948318.640803788, "try": 2457626.6410136092, "twd": 9295815.383566964, "uah": 9422797.556372926, "usd": 332502.84842014953, "vef": 33293.5102123096, "vnd": 7667313118.180847, "xag": 12041.584005478728, "xau": 170.43098501471644, "xdr": 230578.42277398214, "xlm": 1694818.4091769722, "xrp": 1464624.3120595855, "yfi": 13.935314146202426, "zar": 4978980.777955427, "bits": 9748949.387868991, "link": 22764.432247823333, "sats": 974894938.7868991}}, "community_data": {"facebook_likes": null, "twitter_followers": 16628, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2806, "reddit_accounts_active_48h": "22.5384615384615"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1350138, "bing_matches": null}}, "ONG_20210111": {"id": "ong", "symbol": "ong", "name": "Ontology Gas", "localization": {"en": "Ontology Gas", "de": "Ontology Gas", "es": "Ontology Gas", "fr": "Ontology Gas", "it": "Ontology Gas", "pl": "Ontology Gas", "ro": "Ontology Gas", "hu": "Ontology Gas", "nl": "Ontology Gas", "pt": "Ontology Gas", "sv": "Ontology Gas", "vi": "Ontology Gas", "tr": "Ontology Gas", "ru": "Ontology Gas", "ja": "Ontology Gas", "zh": "Ontology Gas", "zh-tw": "Ontology Gas", "ko": "Ontology Gas", "ar": "Ontology Gas", "th": "Ontology Gas", "id": "Ontology Gas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5716/thumb/ONG_logo.png?1583481389", "small": "https://assets.coingecko.com/coins/images/5716/small/ONG_logo.png?1583481389"}, "market_data": {"current_price": {"aed": 0.845320099352421, "ars": 19.54562242029555, "aud": 0.29612369462115384, "bch": 0.0005103791336057818, "bdt": 19.518891231833017, "bhd": 0.08679443558501178, "bmd": 0.23013179226625796, "bnb": 0.005296434769216752, "brl": 1.2451600503757132, "btc": 5.83167021183647e-06, "cad": 0.2918720097590345, "chf": 0.20369655328863287, "clp": 164.03771576810053, "cny": 1.490839776659275, "czk": 4.917916400729937, "dkk": 1.3951976941887954, "dot": 0.02383330753536994, "eos": 0.0715163382123837, "eth": 0.00018709382715559702, "eur": 0.1875454438438027, "gbp": 0.1695896408840198, "hkd": 1.7842693183883642, "huf": 67.39409536517377, "idr": 3254.984069813954, "ils": 0.7324473591995856, "inr": 16.90352533964507, "jpy": 23.88342259908068, "krw": 251.78259128266797, "kwd": 0.06982934999093507, "lkr": 43.27555746986527, "ltc": 0.0013504341457476377, "mmk": 305.57621599717453, "mxn": 4.604707261587353, "myr": 0.9297324407556804, "ngn": 89.61038687878853, "nok": 1.940257249822283, "nzd": 0.31669149342315833, "php": 11.075034279470211, "pkr": 36.92094808135121, "pln": 0.8474110768169493, "rub": 17.174321419604784, "sar": 0.8634280194268928, "sek": 1.8840533128560537, "sgd": 0.3047451219548245, "thb": 6.920731986566474, "try": 1.6879591633249353, "twd": 6.451675296383308, "uah": 6.507877392295164, "usd": 0.23013179226625796, "vef": 0.023043096359620412, "vnd": 5305.47527338438, "xag": 0.008465395677196369, "xau": 0.00012005515338946155, "xdr": 0.15912301683995816, "xlm": 0.7294782564976828, "xrp": 0.7114380401643473, "yfi": 6.945626339011275e-06, "zar": 3.5543763262806647, "bits": 5.83167021183647, "link": 0.014337075076583569, "sats": 583.167021183647}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 73094503.48948699, "ars": 1690102444.3864086, "aud": 25605701.847604744, "bch": 44132.287154757476, "bdt": 1687791008.8132455, "bhd": 7505081.423707813, "bmd": 19899407.46201862, "bnb": 457980.6750329642, "brl": 107668510.09088892, "btc": 504.2622776569111, "cad": 25238060.29474393, "chf": 17613562.526856538, "clp": 14184278117.608158, "cny": 128912341.42044924, "czk": 425250337.4633384, "dkk": 120642207.37745674, "dot": 2060856.9252578786, "eos": 6183990.226927096, "eth": 16177.931191228921, "eur": 16216982.312357178, "gbp": 14664350.944540601, "hkd": 154285080.90489584, "huf": 5827541475.252164, "idr": 281457219142.7915, "ils": 63334441.111590385, "inr": 1461641327.1964629, "jpy": 2065190355.519488, "krw": 21771543716.045372, "kwd": 6038117.005015224, "lkr": 3742020790.602064, "ltc": 116771.52058053733, "mmk": 26423057731.172752, "mxn": 398167263.80693847, "myr": 80393606.14655508, "ngn": 7748575647.761957, "nok": 167773297.27080163, "nzd": 27384191.490115188, "php": 957653949.5595573, "pkr": 3192540163.7023845, "pln": 73275309.50568664, "rub": 1485056959.957021, "sar": 74660288.36563605, "sek": 162913364.4833899, "sgd": 26351193.34935433, "thb": 598433029.9603902, "try": 145957178.88204107, "twd": 557873878.5766411, "uah": 562733652.1687901, "usd": 19899407.46201862, "vef": 1992527.669171925, "vnd": 458762403947.17505, "xag": 731999.5044962796, "xau": 10381.122884785882, "xdr": 13759305.993760537, "xlm": 63077703.94424853, "xrp": 61517773.38452533, "yfi": 600.5856350303975, "zar": 307345552.2745792, "bits": 504262277.65691113, "link": 1239721.3611946437, "sats": 50426227765.69111}}, "community_data": {"facebook_likes": null, "twitter_followers": 94578, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 16682, "reddit_accounts_active_48h": "308.416666666667"}, "developer_data": {"forks": 3, "stars": 0, "subscribers": 5, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 288289, "bing_matches": null}}, "STEEM_20210118": {"id": "steem", "symbol": "steem", "name": "Steem", "localization": {"en": "Steem", "de": "Steem", "es": "Steem", "fr": "Steem", "it": "Steem", "pl": "Steem", "ro": "Steem", "hu": "Steem", "nl": "Steem", "pt": "Steem", "sv": "Steem", "vi": "Steem", "tr": "Steem", "ru": "Steem", "ja": "\u30b9\u30c6\u30a3\u30fc\u30e0", "zh": "\u65af\u8482\u59c6\u5e01", "zh-tw": "\u65af\u8482\u59c6\u5e63", "ko": "\uc2a4\ud300", "ar": "Steem", "th": "Steem", "id": "Steem"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/398/thumb/steem.png?1547034126", "small": "https://assets.coingecko.com/coins/images/398/small/steem.png?1547034126"}, "market_data": {"current_price": {"aed": 0.6721714635546963, "ars": 15.672984611847903, "aud": 0.23532954974717873, "bch": 0.00034646893705752446, "bdt": 15.51846313043112, "bhd": 0.06898175199171527, "bmd": 0.18299342904135205, "bnb": 0.004379060777398719, "brl": 0.951090048099524, "btc": 4.664748645731423e-06, "cad": 0.23143654753775333, "chf": 0.16255946778744956, "clp": 132.94496683490135, "cny": 1.1848092556711385, "czk": 3.937396232317729, "dkk": 1.1203403046330123, "dot": 0.012757457325095662, "eos": 0.06540069803094728, "eth": 0.00014997478675963784, "eur": 0.15060377509446196, "gbp": 0.13374953129946618, "hkd": 1.4188121030577672, "huf": 54.104203217224146, "idr": 2575.178882013114, "ils": 0.583273255726408, "inr": 13.373242141385106, "jpy": 19.001122704508816, "krw": 200.54426879886364, "kwd": 0.05547299406645364, "lkr": 35.22971525949378, "ltc": 0.001202148040129426, "mmk": 243.95464235391125, "mxn": 3.609833785484839, "myr": 0.7390189631835007, "ngn": 71.07970724198736, "nok": 1.54964417011803, "nzd": 0.2534184502079163, "php": 8.794619549330683, "pkr": 29.34291436572459, "pln": 0.6839223866005838, "rub": 13.418944750288151, "sar": 0.6865545640839147, "sek": 1.5214805664214182, "sgd": 0.24234643278376933, "thb": 5.487972936950148, "try": 1.349161876069764, "twd": 5.123999006586895, "uah": 5.137394674573009, "usd": 0.18299342904135205, "vef": 0.01832313204991057, "vnd": 4221.1912182569195, "xag": 0.007155028436042551, "xau": 9.908545202302077e-05, "xdr": 0.1269143607379138, "xlm": 0.6048817605804011, "xrp": 0.6182735649488872, "yfi": 5.614548058501844e-06, "zar": 2.762697546594555, "bits": 4.6647486457314224, "link": 0.010281607878048726, "sats": 466.47486457314227}, "market_cap": {"aed": 252004112.15400866, "ars": 5875828647.696766, "aud": 88252550.83605327, "bch": 130449.4007403296, "bdt": 5818034140.422549, "bhd": 25861980.325033043, "bmd": 68606150.53740837, "bnb": 1646638.9590017993, "brl": 356573606.8031261, "btc": 1756.6146721634043, "cad": 86768805.6183807, "chf": 60940167.88250891, "clp": 49842277530.88382, "cny": 444197382.2695044, "czk": 1476006443.8919091, "dkk": 419990045.08313245, "dot": 4820267.098345775, "eos": 24651214.609475046, "eth": 56667.192991589036, "eur": 56459225.76630863, "gbp": 50136071.29587779, "hkd": 531920636.6541604, "huf": 20287524775.41698, "idr": 965344442606.3743, "ils": 218675244.2229349, "inr": 5013755113.054496, "jpy": 7124268490.256086, "krw": 75184839523.89352, "kwd": 20797405.686211027, "lkr": 13207988730.222021, "ltc": 453041.10734261805, "mmk": 91461147022.11484, "mxn": 1353165210.382465, "myr": 277065938.945324, "ngn": 26648525691.579506, "nok": 580865430.7521062, "nzd": 95049362.16979432, "php": 3296882696.942169, "pkr": 11000965503.117971, "pln": 256384957.89657354, "rub": 5030902740.138261, "sar": 257396486.9800984, "sek": 570205887.3246578, "sgd": 90845040.05256079, "thb": 2057622700.3554904, "try": 505661632.5359681, "twd": 1920972215.0474303, "uah": 1926062997.2357545, "usd": 68606150.53740837, "vef": 6869533.853310694, "vnd": 1582203689989.6492, "xag": 2682127.9546152395, "xau": 37126.21836331853, "xdr": 47581521.280617416, "xlm": 228443830.49528465, "xrp": 232062931.53156796, "yfi": 2140.341928793217, "zar": 1035355999.6051899, "bits": 1756614672.163404, "link": 3871747.6200232953, "sats": 175661467216.3404}, "total_volume": {"aed": 17065877.323020995, "ars": 397924111.8878995, "aud": 5974822.5627259435, "bch": 8796.559652788736, "bdt": 394000939.32165486, "bhd": 1751389.609419022, "bmd": 4646051.759506954, "bnb": 111180.73002076845, "brl": 24147389.414861467, "btc": 118.43410862725932, "cad": 5875982.457594201, "chf": 4127250.3897816124, "clp": 3375362712.839864, "cny": 30081326.72210374, "czk": 99967232.64255564, "dkk": 28444513.39512592, "dot": 323901.28630630556, "eos": 1660469.6122230806, "eth": 3807.7357507128736, "eur": 3823705.2441259874, "gbp": 3395789.9389201147, "hkd": 36022465.40957325, "huf": 1373660955.319343, "idr": 65381661180.4051, "ils": 14808825.37825253, "inr": 339535553.3080607, "jpy": 482422784.44840527, "krw": 5091653059.856296, "kwd": 1408413.4224804596, "lkr": 894453322.3174511, "ltc": 30521.54411385464, "mmk": 6193806527.840693, "mxn": 91650693.13384767, "myr": 18763080.030768845, "ngn": 1804654957.4315505, "nok": 39344183.34529162, "nzd": 6434084.7791532045, "php": 223288113.92527464, "pkr": 744992318.2057518, "pln": 17364223.53675766, "rub": 340695904.7349968, "sar": 17431052.34526641, "sek": 38629132.74924464, "sgd": 6152975.417444237, "thb": 139335092.26761356, "try": 34254103.77307675, "twd": 130094095.31795414, "uah": 130434200.24490532, "usd": 4646051.759506954, "vef": 465209.1626794311, "vnd": 107172552531.19533, "xag": 181660.2521125814, "xau": 2515.6976462202274, "xdr": 3222250.6135990163, "xlm": 15357447.438198315, "xrp": 15697454.27109458, "yfi": 142.5487298789519, "zar": 70142604.92621644, "bits": 118434108.62725933, "link": 261041.51729718252, "sats": 11843410862.725933}}, "community_data": {"facebook_likes": null, "twitter_followers": 11952, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 3834, "reddit_accounts_active_48h": "16.4615384615385"}, "developer_data": {"forks": 777, "stars": 1867, "subscribers": 240, "total_issues": 2181, "closed_issues": 1840, "pull_requests_merged": 1231, "pull_request_contributors": 66, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 219133, "bing_matches": null}}, "DLT_20210127": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.18081777514442365, "ars": 4.255804051351777, "aud": 0.06379633123413028, "bch": 0.00011406635527464499, "bdt": 4.176355782991319, "bhd": 0.01854802449195192, "bmd": 0.049228906927422655, "bnb": 0.0012073869983520022, "brl": 0.2691393570629125, "btc": 1.5361321779296336e-06, "cad": 0.06268685935870695, "chf": 0.04357920065280399, "clp": 35.81889395030682, "cny": 0.31909685181286196, "czk": 1.0567058715331674, "dkk": 0.3008760026363496, "dot": 0.0026561648356125908, "eos": 0.018207244408333812, "eth": 3.998677009127434e-05, "eur": 0.04043608263220884, "gbp": 0.035981851133415566, "hkd": 0.3816298708374203, "huf": 14.466898878761715, "idr": 690.2439192091562, "ils": 0.16110652081068336, "inr": 3.5936806683577034, "jpy": 5.109221551145079, "krw": 54.42452576454286, "kwd": 0.014889381358012856, "lkr": 9.62547991014132, "ltc": 0.00035733985732315016, "mmk": 65.60420814772428, "mxn": 0.9832391122800275, "myr": 0.1990324707075693, "ngn": 18.780827992811798, "nok": 0.418115875206679, "nzd": 0.06851393738498512, "php": 2.366157824893508, "pkr": 7.9086238978904575, "pln": 0.18361397705790167, "rub": 3.7051989112203976, "sar": 0.1846809151577388, "sek": 0.40852116124652454, "sgd": 0.0654006028530811, "thb": 1.4749869589514955, "try": 0.36500773041337586, "twd": 1.3767651484764594, "uah": 1.387332428721872, "usd": 0.049228906927422655, "vef": 0.0049292904506428314, "vnd": 1136.2368507585543, "xag": 0.001931569022079677, "xau": 2.652355047435674e-05, "xdr": 0.034136407099427245, "xlm": 0.18281335754016947, "xrp": 0.18126688040739297, "yfi": 1.617437799921193e-06, "zar": 0.7460429160551126, "bits": 1.5361321779296337, "link": 0.00199250743373953, "sats": 153.61321779296338}, "market_cap": {"aed": 14620623.707504917, "ars": 344117217.2259655, "aud": 5158464.936030546, "bch": 9231.729932599696, "bdt": 337693162.76017463, "bhd": 1499762.3236864558, "bmd": 3980567.3039763016, "bnb": 97662.8817507626, "brl": 21762159.507568803, "btc": 124.39129104333448, "cad": 5068754.890700826, "chf": 3523741.477902766, "clp": 2896256021.5563664, "cny": 25801639.20764405, "czk": 85443474.26494692, "dkk": 24328331.734259777, "dot": 214752.98212014238, "eos": 1473221.2875327016, "eth": 3232.051743517271, "eur": 3269594.1972457897, "gbp": 2909432.4675820144, "hkd": 30857954.82551988, "huf": 1169769313.6195173, "idr": 55811972031.4552, "ils": 13026804.558992907, "inr": 290579024.8498878, "jpy": 413123132.8219932, "krw": 4400676377.237966, "kwd": 1203930.5422222412, "lkr": 778300250.9455729, "ltc": 28901.227036062566, "mmk": 5304646847.858797, "mxn": 79503074.6488579, "myr": 16093433.609976143, "ngn": 1518586426.4669645, "nok": 33808152.2828619, "nzd": 5539922.700770584, "php": 191323575.14467105, "pkr": 639478137.3837934, "pln": 14846719.930370785, "rub": 299596203.9635856, "sar": 14932990.765549945, "sek": 33032339.715316933, "sgd": 5288183.663332524, "thb": 119264981.35111369, "try": 29513916.2753323, "twd": 111322933.56338374, "uah": 112177386.21858604, "usd": 3980567.3039763016, "vef": 398574.20414714696, "vnd": 91874216593.32164, "xag": 156183.44941112076, "xau": 2144.650052036347, "xdr": 2760212.9410578613, "xlm": 14771032.45411443, "xrp": 14679442.447024459, "yfi": 130.4441523948019, "zar": 60323785.84782014, "bits": 124391291.04333448, "link": 160600.01113489323, "sats": 12439129104.333448}, "total_volume": {"aed": 1399882.302282593, "ars": 32948225.18810117, "aud": 493908.05176031607, "bch": 883.0960999675738, "bdt": 32333140.61062547, "bhd": 143597.8913458516, "bmd": 381127.7708365345, "bnb": 9347.530626616026, "brl": 2083663.6359404183, "btc": 11.89265960237, "cad": 485318.5751889731, "chf": 337388.023344251, "clp": 277308111.37523234, "cny": 2470432.097785341, "czk": 8180964.770171846, "dkk": 2329367.1816044683, "dot": 20563.897229404054, "eos": 140959.58873624183, "eth": 309.57560301528883, "eur": 313054.15855965076, "gbp": 278569.7178543606, "hkd": 2954559.6486904463, "huf": 112002018.01573253, "idr": 5343834398.953851, "ils": 1247278.7428396426, "inr": 27822098.594404563, "jpy": 39555341.40477111, "krw": 421351995.77062243, "kwd": 115272.85654505168, "lkr": 74519991.0043193, "ltc": 2766.5075613684307, "mmk": 507904545.7113344, "mxn": 7612188.741363938, "myr": 1540899.577492105, "ngn": 145400244.5741383, "nok": 3237032.4960459396, "nzd": 530431.5260395806, "php": 18318677.247467767, "pkr": 61228176.38488933, "pln": 1421530.3596661114, "rub": 28685467.333680592, "sar": 1429790.5418434446, "sek": 3162750.6935099005, "sgd": 506328.2435563368, "thb": 11419276.331016717, "try": 2825871.8568674894, "twd": 10658847.915877033, "uah": 10740659.278653719, "usd": 381127.7708365345, "vef": 38162.3236938622, "vnd": 8796689691.08683, "xag": 14954.112157872241, "xau": 205.34402037130775, "xdr": 264282.3811090112, "xlm": 1415332.0028240357, "xrp": 1403359.2530911658, "yfi": 12.522123720104846, "zar": 5775827.482086229, "bits": 11892659.60237, "link": 15425.894337161324, "sats": 1189265960.237}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2532, "reddit_accounts_active_48h": "23.4615384615385"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 6584935, "bing_matches": null}}, "PNT_20210131": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}, "market_data": {"current_price": {"aed": 1.513260296568767, "ars": 35.884480438390746, "aud": 0.5385108887781421, "bch": 0.0010912074508502877, "bdt": 34.94004031767372, "bhd": 0.1553505967474744, "bmd": 0.41197329210736416, "bnb": 0.010026577083938677, "brl": 2.230505798127692, "btc": 1.3548580309997446e-05, "cad": 0.5279676682865307, "chf": 0.36635960920523697, "clp": 304.32461320345, "cny": 2.671070036707309, "czk": 8.876596133509974, "dkk": 2.531784750458861, "dot": 0.026566150754847234, "eos": 0.16423941647918572, "eth": 0.00032868536957730734, "eur": 0.3403752177521501, "gbp": 0.30136958645542367, "hkd": 3.19355516442248, "huf": 122.71860425294186, "idr": 5788.178934850899, "ils": 1.3454594549605219, "inr": 30.089437526297903, "jpy": 42.906606399689984, "krw": 456.67239430101347, "kwd": 0.12477229111409699, "lkr": 79.42488220564374, "ltc": 0.0033539785450545662, "mmk": 547.8254636058497, "mxn": 8.373812392569967, "myr": 1.6666379532203395, "ngn": 159.65446442724195, "nok": 3.570621959489577, "nzd": 0.5767358306863231, "php": 19.803271066082942, "pkr": 66.21593085119045, "pln": 1.5480493812207738, "rub": 31.272233446602637, "sar": 1.5452533184872486, "sek": 3.447804481646536, "sgd": 0.5480942114991428, "thb": 12.36022869645121, "try": 3.0473252443889636, "twd": 11.509709422922262, "uah": 11.610428241403381, "usd": 0.41197329210736416, "vef": 0.041250885738710455, "vnd": 9515.215282343232, "xag": 0.016364398989355797, "xau": 0.00022385392773237837, "xdr": 0.2855996608068457, "xlm": 1.721453862860404, "xrp": 1.6344463375051703, "yfi": 1.48157133003323e-05, "zar": 6.297928410436011, "bits": 13.548580309997446, "link": 0.01955815183872021, "sats": 1354.8580309997446}, "market_cap": {"aed": 46747588.678367324, "ars": 1108563857.2314062, "aud": 16640420.92428777, "bch": 33922.544988366295, "bdt": 1079366607.8993413, "bhd": 4796743.959169162, "bmd": 12726665.762378164, "bnb": 311565.5912293238, "brl": 68897077.77121034, "btc": 420.6992475213144, "cad": 16309922.141104557, "chf": 11319096.529059157, "clp": 9401187998.668762, "cny": 82514610.136955, "czk": 274311610.1555572, "dkk": 78237177.77421984, "dot": 826507.672106175, "eos": 5109010.287662181, "eth": 10263.31982797493, "eur": 10519301.945888234, "gbp": 9309237.838535594, "hkd": 98655331.25674863, "huf": 3793914513.758152, "idr": 178871044457.19125, "ils": 41563890.44669327, "inr": 929333586.9665496, "jpy": 1325660412.472359, "krw": 14107508997.59619, "kwd": 3852845.3395708404, "lkr": 2453590920.607679, "ltc": 104203.63548613928, "mmk": 16923406698.933645, "mxn": 258871899.23928705, "myr": 51485726.34170075, "ngn": 4932040608.369011, "nok": 110318658.64134872, "nzd": 17816224.847408112, "php": 611961761.3639512, "pkr": 2045540417.86822, "pln": 47837920.31422767, "rub": 966050654.0242968, "sar": 47731219.94847598, "sek": 106533442.80363925, "sgd": 16928119.930512074, "thb": 381946647.6942567, "try": 94135328.64458254, "twd": 355570302.008418, "uah": 358668977.861576, "usd": 12726665.762378164, "vef": 1274321.042786925, "vnd": 294046587960.35596, "xag": 505930.398251303, "xau": 6915.5429086186605, "xdr": 8822735.586437149, "xlm": 53563542.321067415, "xrp": 50823192.193873204, "yfi": 458.8072059108199, "zar": 194555084.8426277, "bits": 420699247.52131444, "link": 609805.8227588176, "sats": 42069924752.13144}, "total_volume": {"aed": 8232519.10798942, "ars": 195220658.04486638, "aud": 2929635.5635436173, "bch": 5936.4447810299025, "bdt": 190082664.6951536, "bhd": 845146.5746250245, "bmd": 2241239.003590721, "bnb": 54547.11764950014, "brl": 12134516.213240888, "btc": 73.70770682419378, "cad": 2872277.774963725, "chf": 1993089.0211131575, "clp": 1655602938.1790106, "cny": 14531297.203680815, "czk": 48290930.151754655, "dkk": 13773549.985239854, "dot": 144526.5855523414, "eos": 893504.0042455018, "eth": 1788.1316199845087, "eur": 1851727.353439685, "gbp": 1639526.844579709, "hkd": 17373748.569984782, "huf": 667620274.3896053, "idr": 31489158732.088932, "ils": 7319640.049436913, "inr": 163694157.53890738, "jpy": 233422800.98497063, "krw": 2484413435.480316, "kwd": 678792.8508225045, "lkr": 432091466.2800428, "ltc": 18246.49237316028, "mmk": 2980309208.669821, "mxn": 45555659.31708044, "myr": 9066932.38902625, "ngn": 868560704.3634996, "nok": 19425087.392801207, "nzd": 3137588.9244917776, "php": 107734807.96521595, "pkr": 360231426.9539547, "pln": 8421780.535647642, "rub": 170128866.78016588, "sar": 8406569.246530311, "sek": 18756929.221050773, "sgd": 2981771.26524514, "thb": 67242773.20523071, "try": 16578220.785660215, "twd": 62615733.04107865, "uah": 63163668.91143752, "usd": 2241239.003590721, "vef": 224415.26142953933, "vnd": 51765179993.251656, "xag": 89026.4732882406, "xau": 1217.8220373810898, "xdr": 1553734.4567612587, "xlm": 9365144.814579798, "xrp": 8891801.849955678, "yfi": 80.60123107705942, "zar": 34262324.92666723, "bits": 73707706.82419378, "link": 106401.2973143551, "sats": 7370770682.419377}}, "community_data": {"facebook_likes": null, "twitter_followers": 7722, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 117, "reddit_accounts_active_48h": "7.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1091126, "bing_matches": null}}, "SKY_20210203": {"id": "skycoin", "symbol": "sky", "name": "Skycoin", "localization": {"en": "Skycoin", "de": "Skycoin", "es": "Skycoin", "fr": "Skycoin", "it": "Skycoin", "pl": "Skycoin", "ro": "Skycoin", "hu": "Skycoin", "nl": "Skycoin", "pt": "Skycoin", "sv": "Skycoin", "vi": "Skycoin", "tr": "Skycoin", "ru": "Skycoin", "ja": "\u30b9\u30ab\u30a4\u30b3\u30a4\u30f3", "zh": "\u5929\u7a7a\u5e01", "zh-tw": "\u5929\u7a7a\u5e63", "ko": "\uc2a4\uce74\uc774\ucf54\uc778", "ar": "Skycoin", "th": "Skycoin", "id": "Skycoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/687/thumb/skycoin.png?1551071121", "small": "https://assets.coingecko.com/coins/images/687/small/skycoin.png?1551071121"}, "market_data": {"current_price": {"aed": 2.070841776066491, "ars": 49.09197559170117, "aud": 0.7377665594353453, "bch": 0.0013680390423414072, "bdt": 47.80656018118402, "bhd": 0.21256037857886179, "bmd": 0.5638011914147825, "bnb": 0.012634293429438226, "brl": 3.079651247864969, "btc": 1.6502561180443053e-05, "cad": 0.7205097325685222, "chf": 0.5022995022504927, "clp": 414.28111545158185, "cny": 3.623888537937664, "czk": 12.091618631796283, "dkk": 3.45531198170464, "dot": 0.03424338390212136, "eos": 0.19360013616191457, "eth": 0.00041086081276293034, "eur": 0.4645118549982991, "gbp": 0.41142884522421425, "hkd": 4.371235207217526, "huf": 166.06764093122464, "idr": 7910.130715549405, "ils": 1.8464770919429823, "inr": 41.104964945690476, "jpy": 59.02152772325662, "krw": 630.5725933115375, "kwd": 0.17071730935682178, "lkr": 107.41397262472182, "ltc": 0.004239103041774476, "mmk": 749.1936131991943, "mxn": 11.609484042957927, "myr": 2.27916631629426, "ngn": 214.92101416731603, "nok": 4.82692752017852, "nzd": 0.7838736570680552, "php": 27.075230667702233, "pkr": 90.41035789378158, "pln": 2.1007232392114807, "rub": 42.82351949390981, "sar": 2.1146265765917702, "sek": 4.713096059631878, "sgd": 0.7490662629136807, "thb": 16.837623766971106, "try": 4.124149335079994, "twd": 15.795003137723421, "uah": 15.837845826457839, "usd": 0.5638011914147825, "vef": 0.05645341329636213, "vnd": 12983.569171600504, "xag": 0.02088541186868585, "xau": 0.00030573247206849423, "xdr": 0.3913563952074664, "xlm": 1.7417192193165176, "xrp": 1.308757401673347, "yfi": 1.820011477962418e-05, "zar": 8.557036202578727, "bits": 16.502561180443053, "link": 0.023996027962328245, "sats": 1650.2561180443054}, "market_cap": {"aed": 40978896.88463859, "ars": 971457611.5306826, "aud": 14599309.3791366, "bch": 27108.09666629082, "bdt": 946021141.1202916, "bhd": 4206255.608812478, "bmd": 11156791.964235898, "bnb": 249772.0561017878, "brl": 60941744.7462457, "btc": 326.1366938197207, "cad": 14257822.290695263, "chf": 9939764.469609205, "clp": 8198010735.320559, "cny": 71712511.7085191, "czk": 239275254.54018176, "dkk": 68375515.23201609, "dot": 677967.7059836751, "eos": 3820864.990477845, "eth": 8113.317155374745, "eur": 9192002.801790208, "gbp": 8141568.5247734925, "hkd": 86500281.61751561, "huf": 3286233073.0657015, "idr": 156529791258.2299, "ils": 36539051.52247089, "inr": 813406480.1202105, "jpy": 1167948766.7760365, "krw": 12478099282.251884, "kwd": 3378243.136394754, "lkr": 2125563700.245012, "ltc": 83838.45046951745, "mmk": 14825433877.539114, "mxn": 229734523.8919655, "myr": 45101331.51542382, "ngn": 4252969096.7667394, "nok": 95517758.7226092, "nzd": 15511700.669179853, "php": 535778782.5620667, "pkr": 1789087305.5834908, "pln": 41570206.85874309, "rub": 847414133.6435397, "sar": 41845333.34858108, "sek": 93265202.42502996, "sgd": 14822913.803683825, "thb": 333191678.91216403, "try": 81610817.53918941, "twd": 312559758.2364619, "uah": 313407551.7010321, "usd": 11156791.964235898, "vef": 1117129.579378941, "vnd": 256925636920.56003, "xag": 413291.4205477189, "xau": 6049.993578446212, "xdr": 7744364.417262745, "xlm": 34696044.470811196, "xrp": 26453927.787089363, "yfi": 360.1562411531262, "zar": 169331094.35799423, "bits": 326136693.81972086, "link": 475516.92377963156, "sats": 32613669381.972065}, "total_volume": {"aed": 5750762.990831822, "ars": 136329254.91576022, "aud": 2048790.339710572, "bch": 3799.067792447978, "bdt": 132759634.36044763, "bhd": 590283.8027395827, "bmd": 1565685.5406566393, "bnb": 35085.64870046843, "brl": 8552244.12872877, "btc": 45.82789433130631, "cad": 2000867.836682155, "chf": 1394894.2991396515, "clp": 1150465735.2744977, "cny": 10063600.38112464, "czk": 33578631.516246706, "dkk": 9595460.40446829, "dot": 95094.46211734274, "eos": 537630.8856269628, "eth": 1140.967496274944, "eur": 1289957.3571482198, "gbp": 1142544.9321243153, "hkd": 12138994.849542039, "huf": 461172676.00041443, "idr": 21966568135.41267, "ils": 5127698.429927524, "inr": 114149189.90002368, "jpy": 163903790.8236406, "krw": 1751110864.4605608, "kwd": 474084.88465420814, "lkr": 298290437.0616865, "ltc": 11772.061568733066, "mmk": 2080523463.2349632, "mxn": 32239735.52615417, "myr": 6329283.798104471, "ngn": 596839328.0983136, "nok": 13404460.187777758, "nzd": 2176830.5375399324, "php": 75188378.12312776, "pkr": 251071108.4605456, "pln": 5833744.324486642, "rub": 118921645.24057506, "sar": 5872354.129919237, "sek": 13088348.27711919, "sgd": 2080169.8093164132, "thb": 46758368.85837421, "try": 11452833.161349256, "twd": 43862993.558603905, "uah": 43981968.43715286, "usd": 1565685.5406566393, "vef": 156772.0931859492, "vnd": 36055593403.5531, "xag": 57999.145570096836, "xau": 849.0242981318762, "xdr": 1086803.395505861, "xlm": 4836784.027938367, "xrp": 3634441.663532793, "yfi": 50.54202967759397, "zar": 23763035.724762104, "bits": 45827894.33130631, "link": 66637.37960455944, "sats": 4582789433.1306305}}, "community_data": {"facebook_likes": null, "twitter_followers": 17236, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3834, "reddit_accounts_active_48h": "26.0769230769231"}, "developer_data": {"forks": 270, "stars": 537, "subscribers": 105, "total_issues": 1152, "closed_issues": 1028, "pull_requests_merged": 1065, "pull_request_contributors": 51, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 739970, "bing_matches": null}}, "VIB_20210205": {"id": "viberate", "symbol": "vib", "name": "Viberate", "localization": {"en": "Viberate", "de": "Viberate", "es": "Viberate", "fr": "Viberate", "it": "Viberate", "pl": "Viberate", "ro": "Viberate", "hu": "Viberate", "nl": "Viberate", "pt": "Viberate", "sv": "Viberate", "vi": "Viberate", "tr": "Viberate", "ru": "Viberate", "ja": "Viberate", "zh": "Viberate", "zh-tw": "Viberate", "ko": "\ubc14\uc774\ubc84\ub808\uc774\ud2b8", "ar": "Viberate", "th": "Viberate", "id": "Viberate"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/983/thumb/Viberate.png?1547034873", "small": "https://assets.coingecko.com/coins/images/983/small/Viberate.png?1547034873"}, "market_data": {"current_price": {"aed": 0.10673940068180908, "ars": 2.5457631840496435, "aud": 0.0380606514889512, "bch": 7.012600162421938e-05, "bdt": 2.4632187739965725, "bhd": 0.010953574515736484, "bmd": 0.029058967843245503, "bnb": 0.0005645704665421493, "brl": 0.15784831332451, "btc": 8.699959079677938e-07, "cad": 0.03732429724380337, "chf": 0.026053573153025728, "clp": 21.32346269933429, "cny": 0.18797665118438675, "czk": 0.625027944509912, "dkk": 0.1790874838621697, "dot": 0.001778847460399693, "eos": 0.009535490414395612, "eth": 2.1229686406269696e-05, "eur": 0.024079481231562644, "gbp": 0.021245360097810955, "hkd": 0.22528720353639997, "huf": 8.577335538290779, "idr": 407.5599570997397, "ils": 0.09576063204095286, "inr": 2.1247931816465013, "jpy": 3.0480474432201423, "krw": 32.47105653332337, "kwd": 0.008799927231970052, "lkr": 5.635529889987101, "ltc": 0.00021977479721652915, "mmk": 38.562778800636444, "mxn": 0.5919578510993916, "myr": 0.11747087750631983, "ngn": 11.29567752046709, "nok": 0.2495751828622381, "nzd": 0.04055457928616207, "php": 1.3955692226152614, "pkr": 4.657871748465987, "pln": 0.10861152468511028, "rub": 2.213642428775618, "sar": 0.10899251681250371, "sek": 0.24467020344410556, "sgd": 0.038708724589791285, "thb": 0.8714784456189368, "try": 0.20902115569646526, "twd": 0.8125322712309745, "uah": 0.8150105653034855, "usd": 0.029058967843245503, "vef": 0.0029096744501441773, "vnd": 670.4708915680621, "xag": 0.0010165992216177794, "xau": 1.563169057191709e-05, "xdr": 0.020200050906553697, "xlm": 0.09047746976835021, "xrp": 0.07815046215547014, "yfi": 9.424004648552448e-07, "zar": 0.437676003016219, "bits": 0.8699959079677938, "link": 0.0012743512287621591, "sats": 86.99959079677937}, "market_cap": {"aed": 19417251.76131345, "ars": 463120379.0857034, "aud": 6921865.417906519, "bch": 12815.881060290269, "bdt": 448090759.1046278, "bhd": 1992594.2313690407, "bmd": 5286195.078218824, "bnb": 103025.68223220634, "brl": 28717783.381931648, "btc": 158.3397412939118, "cad": 6788399.564571661, "chf": 4739591.9347408395, "clp": 3879009948.396973, "cny": 34194810.1024741, "czk": 113681216.30181433, "dkk": 32578159.492677875, "dot": 322388.72782531823, "eos": 1741795.4437288428, "eth": 3880.3950384791533, "eur": 4380379.12059063, "gbp": 3864504.6291023344, "hkd": 40984134.75118448, "huf": 1560749096.8441072, "idr": 74135046222.64148, "ils": 17420074.3988115, "inr": 386526848.4291145, "jpy": 554498075.8273019, "krw": 5906838583.564956, "kwd": 1600818.4555370007, "lkr": 1025174415.2891307, "ltc": 39980.03669093101, "mmk": 7015058917.371297, "mxn": 107675564.7872548, "myr": 21369443.60369961, "ngn": 2054827110.031696, "nok": 45396611.648289934, "nzd": 7376568.059949679, "php": 253882237.21681637, "pkr": 847325990.5354358, "pln": 19757339.121670637, "rub": 402689654.1905223, "sar": 19827122.18289808, "sek": 44509942.28923509, "sgd": 7040519.352632216, "thb": 158503916.32285294, "try": 38014614.665995054, "twd": 147732765.23147365, "uah": 148260766.25447124, "usd": 5286195.078218824, "vef": 529306.7131820512, "vnd": 121967165049.18459, "xag": 184590.07320899377, "xau": 2843.708642327817, "xdr": 3674645.6466730284, "xlm": 16500015.466300199, "xrp": 13993815.525007349, "yfi": 171.96812301796052, "zar": 79626326.49686551, "bits": 158339741.2939118, "link": 230840.80905018307, "sats": 15833974129.391182}, "total_volume": {"aed": 17453819.874943417, "ars": 416278260.6501686, "aud": 6223603.947256978, "bch": 11466.867839625293, "bdt": 402780758.73853093, "bhd": 1791107.2702604844, "bmd": 4751666.088136629, "bnb": 92317.46821507854, "brl": 25811050.19075824, "btc": 142.26004430054442, "cad": 6103196.7285835985, "chf": 4260229.774637194, "clp": 3486771283.021481, "cny": 30737577.590938266, "czk": 102203357.80975866, "dkk": 29284038.182911113, "dot": 290873.68825847306, "eos": 1559224.9071010037, "eth": 3471.43716537388, "eur": 3937430.090605713, "gbp": 3474000.0970297554, "hkd": 36838526.781462125, "huf": 1402549279.2352893, "idr": 66643414090.95833, "ils": 15658592.910184575, "inr": 347442061.9478544, "jpy": 498410808.9836103, "krw": 5309604216.077609, "kwd": 1438947.0414704178, "lkr": 921510922.5965297, "ltc": 35937.14878636418, "mmk": 6305710831.841888, "mxn": 96795800.24481213, "myr": 19208610.161292303, "ngn": 1847047290.3946102, "nok": 40810050.07625025, "nzd": 6631406.185939129, "php": 228200773.83751664, "pkr": 761646158.5788924, "pln": 17759945.962671638, "rub": 361970518.59563667, "sar": 17822245.0567533, "sek": 40007997.35056935, "sgd": 6329575.604354605, "thb": 142502465.9832182, "try": 34178734.17196683, "twd": 132863701.82010034, "uah": 133268947.66242705, "usd": 4751666.088136629, "vef": 475784.32540512143, "vnd": 109634100417.20444, "xag": 166232.33394403278, "xau": 2556.0637387913425, "xdr": 3303073.164507299, "xlm": 14794700.457284395, "xrp": 12779012.069510523, "yfi": 154.09949707961587, "zar": 71567931.53638312, "bits": 142260044.30054444, "link": 208379.4424753422, "sats": 14226004430.054443}}, "community_data": {"facebook_likes": null, "twitter_followers": 30412, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1098, "reddit_accounts_active_48h": "27.0769230769231"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 1, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "MDA_20210210": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.842023403000657, "ars": 68.00519412205351, "aud": 1.0078946225323782, "bch": 0.0016879514181713311, "bdt": 65.55881937429469, "bhd": 0.29161187368071756, "bmd": 0.773760795807419, "bnb": 0.010657260071930743, "brl": 4.155714482122496, "btc": 1.9676808909696553e-05, "cad": 0.9875547724929882, "chf": 0.6956635711649856, "clp": 571.8092458981816, "cny": 5.003678938247837, "czk": 16.55964167147248, "dkk": 4.775071311126529, "dot": 0.03792276129781279, "eos": 0.24036778211466892, "eth": 0.0004603630360097398, "eur": 0.6421758086332057, "gbp": 0.5632885742182524, "hkd": 5.998839779363605, "huf": 229.13030253887055, "idr": 10839.702036555671, "ils": 2.5449379454503878, "inr": 56.320732933469074, "jpy": 81.53501941510322, "krw": 864.8711295137431, "kwd": 0.23425917597387977, "lkr": 149.72710430749098, "ltc": 0.004969731824387785, "mmk": 1089.1000551242223, "mxn": 15.540396751826409, "myr": 3.1495933193340986, "ngn": 294.8028632026268, "nok": 6.5961173440593, "nzd": 1.0751212817545128, "php": 37.163357296166005, "pkr": 123.84041536897749, "pln": 2.8791639211994084, "rub": 57.76077915054632, "sar": 2.9023094278843895, "sek": 6.478544391136369, "sgd": 1.0320576246638529, "thb": 23.20309460597611, "try": 5.45795390146638, "twd": 21.656481409535626, "uah": 21.567749616515517, "usd": 0.773760795807419, "vef": 0.07747666848419682, "vnd": 17703.856692606852, "xag": 0.028764402831981582, "xau": 0.00042687609343899436, "xdr": 0.5398560022780203, "xlm": 2.0448943376480977, "xrp": 1.7497633691628016, "yfi": 2.4554711333130097e-05, "zar": 11.483863702271307, "bits": 19.676808909696554, "link": 0.030872822068654573, "sats": 1967.6808909696551}, "market_cap": {"aed": 55584824.95271035, "ars": 1330058298.3090131, "aud": 19712591.425211277, "bch": 33261.07965918644, "bdt": 1282211643.7109787, "bhd": 5703399.534134962, "bmd": 15133358.277351046, "bnb": 210285.74403076322, "brl": 81278240.63599694, "btc": 386.0560464582857, "cad": 19314780.83617454, "chf": 13605918.159701476, "clp": 11183552115.029665, "cny": 97862887.97214603, "czk": 323876567.1727286, "dkk": 93391737.2691027, "dot": 744545.3759816872, "eos": 4717365.31681106, "eth": 9040.03107494615, "eur": 12559794.50206301, "gbp": 11016903.225612221, "hkd": 117326429.72018681, "huf": 4481373286.559728, "idr": 212004918610.217, "ils": 49774372.04212138, "inr": 1101531422.2993102, "jpy": 1594677150.41308, "krw": 16915311214.509138, "kwd": 4581684.751901157, "lkr": 2928390693.3422947, "ltc": 97712.45136163644, "mmk": 21300822454.928017, "mxn": 303941984.5149469, "myr": 61600334.86795743, "ngn": 5765809503.670758, "nok": 129008095.97484852, "nzd": 21027422.99242234, "php": 726847888.6491215, "pkr": 2422093992.290035, "pln": 56311226.15002325, "rub": 1129696115.3892915, "sar": 56763910.29617364, "sek": 126708582.18460484, "sgd": 20185175.93749639, "thb": 453810461.4735517, "try": 106747682.61677897, "twd": 423561511.48146904, "uah": 421826078.4876539, "usd": 15133358.277351046, "vef": 1515303.1643111603, "vnd": 346255338435.08496, "xag": 562579.5672888691, "xau": 8348.922428031801, "xdr": 10558604.60354094, "xlm": 40534300.81398017, "xrp": 34290713.80876502, "yfi": 479.35873814598926, "zar": 224603552.87629873, "bits": 386056046.4582855, "link": 603752.9655360086, "sats": 38605604645.82855}, "total_volume": {"aed": 2814366.20225622, "ars": 67343400.37907721, "aud": 998086.2782818752, "bch": 1671.5250892502067, "bdt": 64920832.57021391, "bhd": 288774.04760182824, "bmd": 766230.9290106759, "bnb": 10553.548758053503, "brl": 4115273.0735305483, "btc": 19.48532369762869, "cad": 977944.365850971, "chf": 688893.7088837714, "clp": 566244674.1622015, "cny": 4954985.548633338, "czk": 16398491.227221984, "dkk": 4728602.620657128, "dot": 37553.71527908908, "eos": 238028.63881436337, "eth": 455.8830050259003, "eur": 635926.46345405, "gbp": 557806.921548625, "hkd": 5940461.964516478, "huf": 226900516.9687516, "idr": 10734215285.490082, "ils": 2520171.83706256, "inr": 55772646.73010771, "jpy": 80741559.93926491, "krw": 856454620.9016836, "kwd": 231979.47868169862, "lkr": 148270032.357857, "ltc": 4921.368791709029, "mmk": 1078501458.7778497, "mxn": 15389165.107442457, "myr": 3118942.996537956, "ngn": 291933983.95306766, "nok": 6531927.112083765, "nzd": 1064658.7200871082, "php": 36801701.4308441, "pkr": 122635260.18815877, "pln": 2851145.2868487276, "rub": 57198679.11208953, "sar": 2874065.5526282177, "sek": 6415498.322420598, "sgd": 1022014.137733021, "thb": 22977293.282618918, "try": 5404839.727055513, "twd": 21445730.979708303, "uah": 21357862.68169298, "usd": 766230.9290106759, "vef": 76722.70292183894, "vnd": 17531571299.74865, "xag": 28484.48153978602, "xau": 422.72194122589923, "xdr": 534602.3840944655, "xlm": 2024994.412426587, "xrp": 1732735.5161531803, "yfi": 24.315756727814367, "zar": 11372108.28062343, "bits": 19485323.697628688, "link": 30572.382657565082, "sats": 1948532369.762869}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 369, "reddit_accounts_active_48h": "21.7692307692308"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 7, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2554978, "bing_matches": null}}, "NEBL_20210213": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 6.201424958144852, "ars": 149.03545406082145, "aud": 2.1810612495184545, "bch": 0.003276465829512286, "bdt": 143.2216054996998, "bhd": 0.6364775860595313, "bmd": 1.688381420676522, "bnb": 0.01570068874172853, "brl": 9.080452956682473, "btc": 3.624956902268487e-05, "cad": 2.143400213548844, "chf": 1.5069310693964157, "clp": 1240.4567270335579, "cny": 10.865240956479607, "czk": 35.862404930545196, "dkk": 10.36270266852235, "dot": 0.07284892841322772, "eos": 0.4085322888445024, "eth": 0.0009547655975948909, "eur": 1.3933131300734112, "gbp": 1.222050472285665, "hkd": 13.088130167313897, "huf": 499.412820429801, "idr": 23631.925017258538, "ils": 5.486986359985599, "inr": 123.00728503736389, "jpy": 176.56924059292976, "krw": 1875.791758371616, "kwd": 0.5112030614081768, "lkr": 330.5893942946111, "ltc": 0.00928915842864369, "mmk": 2377.039141973876, "mxn": 33.911412663696666, "myr": 6.836256372319224, "ngn": 643.2733212777553, "nok": 14.263596507821697, "nzd": 2.331374470638445, "php": 81.10451154077359, "pkr": 269.8877700951418, "pln": 6.23493764096386, "rub": 124.78877731662789, "sar": 6.333155853348901, "sek": 14.058814413689252, "sgd": 2.238388552276106, "thb": 50.516372106641526, "try": 11.933074669800677, "twd": 47.08608757425319, "uah": 46.7837237875313, "usd": 1.688381420676522, "vef": 0.16905763165234003, "vnd": 38816.91649301665, "xag": 0.062011328681590705, "xau": 0.0009193405673725723, "xdr": 1.173246118939589, "xlm": 4.228239377742497, "xrp": 3.566127385412191, "yfi": 4.810724099679672e-05, "zar": 24.86053846112302, "bits": 36.249569022684874, "link": 0.0609972883533908, "sats": 3624.9569022684873}, "market_cap": {"aed": 108465452.00386274, "ars": 2606658397.747385, "aud": 38146853.55951474, "bch": 57807.12410727925, "bdt": 2505004298.5428586, "bhd": 11132252.591657002, "bmd": 29530479.717904318, "bnb": 271953.9201124874, "brl": 158820826.01883307, "btc": 635.0915918824361, "cad": 37485784.24054974, "chf": 26355835.02631073, "clp": 21696094123.047523, "cny": 190037496.12862948, "czk": 627239230.930655, "dkk": 181247866.9625143, "dot": 1273125.3145214713, "eos": 7164812.404320271, "eth": 16672.064431555435, "eur": 24368551.86321464, "gbp": 21375933.048602216, "hkd": 228915996.85363516, "huf": 8734791065.279198, "idr": 413318767382.05194, "ils": 95969629.51123127, "inr": 2151477237.082474, "jpy": 3087795550.743232, "krw": 32808362966.591705, "kwd": 8941150.057547921, "lkr": 5782143349.610868, "ltc": 165877.24898688894, "mmk": 41575384158.514145, "mxn": 593156716.3556747, "myr": 119568912.37779461, "ngn": 11550194075.099285, "nok": 249444995.74392825, "nzd": 40773028.651307695, "php": 1418638575.7960181, "pkr": 4725048386.0128145, "pln": 109058217.32324, "rub": 2182665676.053662, "sar": 110769479.09241298, "sek": 245887901.80950803, "sgd": 39144334.10342609, "thb": 883413898.167018, "try": 208700936.49322373, "twd": 824774456.7987033, "uah": 818266411.5565494, "usd": 29530479.717904318, "vef": 2956886.934153762, "vnd": 678923702411.5718, "xag": 1084087.5348280447, "xau": 16070.191757686323, "xdr": 20520553.173093423, "xlm": 73638879.62667958, "xrp": 62657972.07411012, "yfi": 842.1646266517142, "zar": 435119629.268555, "bits": 635091591.882436, "link": 1064188.8440997226, "sats": 63509159188.24361}, "total_volume": {"aed": 13319122.643950535, "ars": 320091189.41701317, "aud": 4684378.5859491415, "bch": 7037.035925859532, "bdt": 307604484.74162525, "bhd": 1366995.9865786168, "bmd": 3626224.5150968046, "bnb": 33721.185107774574, "brl": 19502560.68709364, "btc": 77.85508312397974, "cad": 4603492.021915392, "chf": 3236514.1664593504, "clp": 2664193373.842889, "cny": 23335842.622002434, "czk": 77023550.68404117, "dkk": 22256515.02620646, "dot": 156461.42919810678, "eos": 877426.0264146626, "eth": 2050.5996890100632, "eur": 2992491.013940429, "gbp": 2624661.304027064, "hkd": 28110057.29408858, "huf": 1072614866.770173, "idr": 50755513408.91632, "ils": 11784685.74038736, "inr": 264189138.23350388, "jpy": 379226933.5643082, "krw": 4028735436.2725506, "kwd": 1097937.3800074686, "lkr": 710024021.4333653, "ltc": 19950.80827474914, "mmk": 5105290489.702559, "mxn": 72833303.20786625, "myr": 14682583.061626934, "ngn": 1381591540.2518835, "nok": 30634667.43751965, "nzd": 5007214.102079182, "php": 174192374.08823174, "pkr": 579651988.7382238, "pln": 13391099.574350692, "rub": 268015341.77815926, "sar": 13602047.933067475, "sek": 30194846.292308047, "sgd": 4807503.41313474, "thb": 108496637.49169637, "try": 25629284.578820553, "twd": 101129237.14437453, "uah": 100479834.72708835, "usd": 3626224.5150968046, "vef": 363093.86069664283, "vnd": 83369108700.00064, "xag": 133184.95307109415, "xau": 1974.5155107153596, "xdr": 2519841.658193675, "xlm": 9081209.434965154, "xrp": 7659157.101929119, "yfi": 103.32242141491609, "zar": 53394270.348052576, "bits": 77855083.12397973, "link": 131007.04596291126, "sats": 7785508312.397973}}, "community_data": {"facebook_likes": null, "twitter_followers": 39020, "reddit_average_posts_48h": 0.25, "reddit_average_comments_48h": 0.5, "reddit_subscribers": 5876, "reddit_accounts_active_48h": "43.4615384615385"}, "developer_data": {"forks": 44, "stars": 111, "subscribers": 31, "total_issues": 159, "closed_issues": 120, "pull_requests_merged": 154, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 27, "deletions": -20}, "commit_count_4_weeks": 13}, "public_interest_stats": {"alexa_rank": 713465, "bing_matches": null}}, "DLT_20210516": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.644840314554362, "ars": 16.49851647009278, "aud": 0.22707202352888942, "bch": 0.0001339077948871752, "bdt": 14.883961807545251, "bhd": 0.06619093071995012, "bmd": 0.17555273727386544, "bnb": 0.0002865127545562305, "brl": 0.9311668290480384, "btc": 3.410037304695126e-06, "cad": 0.2128287277429118, "chf": 0.15959938227410286, "clp": 124.18614520974744, "cny": 1.1334035823875286, "czk": 3.7225606833448506, "dkk": 1.0811262594129587, "dot": 0.004754828369330331, "eos": 0.01582856944939021, "eth": 4.406248675293565e-05, "eur": 0.14539014371915618, "gbp": 0.12486188438603663, "hkd": 1.3633955745954958, "huf": 51.951321541454945, "idr": 2518.8394520422844, "ils": 0.5769768929064052, "inr": 12.9350497526914, "jpy": 19.25515088240939, "krw": 198.84824599111352, "kwd": 0.05282768080592612, "lkr": 34.49142122741093, "ltc": 0.0005332774259014248, "mmk": 273.3859969754279, "mxn": 3.5380666940561785, "myr": 0.7242428176233329, "ngn": 70.91719521896248, "nok": 1.4649394911003932, "nzd": 0.24508619211150984, "php": 8.41699413558766, "pkr": 26.69956652709528, "pln": 0.6621357702305848, "rub": 13.110629525086809, "sar": 0.6584063278799364, "sek": 1.4795043995010582, "sgd": 0.23411010831893592, "thb": 5.4965562040447224, "try": 1.482068873887154, "twd": 4.920216567574619, "uah": 4.853795838321589, "usd": 0.17555273727386544, "vef": 0.01757809558323216, "vnd": 4064.557970146596, "xag": 0.006477486967527787, "xau": 9.661720448604451e-05, "xdr": 0.12187941893249123, "xlm": 0.280605841312464, "xrp": 0.13103557192190315, "yfi": 2.485765729762745e-06, "zar": 2.4795770823509855, "bits": 3.4100373046951256, "link": 0.004094924868991951, "sats": 341.00373046951256}, "market_cap": {"aed": 53151950.35364886, "ars": 1360151348.0907228, "aud": 18714472.956503343, "bch": 10931.11560280211, "bdt": 1226833343.3944428, "bhd": 5455888.820971051, "bmd": 14470203.188949423, "bnb": 23593.93165159343, "brl": 76757192.81578217, "btc": 280.4760978792738, "cad": 17541793.21986771, "chf": 13152589.897173239, "clp": 10236233876.363276, "cny": 93422525.82849523, "czk": 306824726.9279608, "dkk": 89113183.55720067, "dot": 389764.33793494425, "eos": 1287179.04377329, "eth": 3614.527267474443, "eur": 11983802.645195423, "gbp": 10291555.792857355, "hkd": 112383556.57713495, "huf": 4285061270.3436027, "idr": 207619198865.2056, "ils": 47558203.9068967, "inr": 1066191282.9568801, "jpy": 1587164236.7799182, "krw": 16391269433.553381, "kwd": 4354402.48402503, "lkr": 2843008210.4483323, "ltc": 43668.47639264835, "mmk": 22534259429.271103, "mxn": 291645498.2529557, "myr": 59696823.2560108, "ngn": 5845458409.502965, "nok": 120722618.91330117, "nzd": 20197581.962151524, "php": 693668722.4574033, "pkr": 2200752655.318787, "pln": 54576382.685365915, "rub": 1080584128.439581, "sar": 54270149.77527826, "sek": 121961384.06790079, "sgd": 19296015.952464048, "thb": 452877971.9210354, "try": 122131408.95537087, "twd": 405556384.7766839, "uah": 400081554.4597404, "usd": 14470203.188949423, "vef": 1448901.445309504, "vnd": 334949848009.806, "xag": 534044.8433970244, "xau": 7965.123345357205, "xdr": 10046097.736163195, "xlm": 23027954.334705606, "xrp": 10777121.726788417, "yfi": 200.18950285863392, "zar": 204381490.9016782, "bits": 280476097.87927383, "link": 335857.731375069, "sats": 28047609787.927383}, "total_volume": {"aed": 6919520.6484460905, "ars": 177038908.40390489, "aud": 2436618.0588110974, "bch": 1436.910395948235, "bdt": 159713775.2300225, "bhd": 710268.1105989504, "bmd": 1883785.4318975543, "bnb": 3074.452506222562, "brl": 9991974.687871022, "btc": 36.59173133137006, "cad": 2283779.0115795233, "chf": 1712596.4307738636, "clp": 1332591304.598605, "cny": 12162095.505416974, "czk": 39945293.326301135, "dkk": 11601128.693008527, "dot": 51022.14042578261, "eos": 169849.97784468567, "eth": 472.8167269125003, "eur": 1560122.8379160753, "gbp": 1339842.3884371337, "hkd": 14630046.567316841, "huf": 557468622.8614427, "idr": 27028647566.1377, "ils": 6191305.714037468, "inr": 138800788.09011894, "jpy": 206619237.52681953, "krw": 2133760115.4693346, "kwd": 566872.4797374757, "lkr": 370113493.2022022, "ltc": 5722.384405238685, "mmk": 2933594578.9537287, "mxn": 37965562.934786454, "myr": 7771556.799293371, "ngn": 760983743.683297, "nok": 15719673.271976743, "nzd": 2629920.817119833, "php": 90319360.31992385, "pkr": 286502251.3619859, "pln": 7105111.189196654, "rub": 140684863.62497306, "sar": 7065092.051481397, "sek": 15875963.414119571, "sgd": 2512140.900561302, "thb": 58981321.872712374, "try": 15903481.75170872, "twd": 52796854.29979268, "uah": 52084120.31406349, "usd": 1883785.4318975543, "vef": 188623.43529590225, "vnd": 43615127910.65499, "xag": 69507.29321696344, "xau": 1036.7601502991372, "xdr": 1307838.7577346293, "xlm": 3011067.8089009183, "xrp": 1406089.7328064216, "yfi": 26.673746827041693, "zar": 26607338.95429382, "bits": 36591731.33137006, "link": 43940.98282209136, "sats": 3659173133.1370068}}, "community_data": {"facebook_likes": null, "twitter_followers": 15184, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2593, "reddit_accounts_active_48h": "26.0"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 4809355, "bing_matches": null}}, "MTH_20210606": {"id": "monetha", "symbol": "mth", "name": "Monetha", "localization": {"en": "Monetha", "de": "Monetha", "es": "Monetha", "fr": "Monetha", "it": "Monetha", "pl": "Monetha", "ro": "Monetha", "hu": "Monetha", "nl": "Monetha", "pt": "Monetha", "sv": "Monetha", "vi": "Monetha", "tr": "Monetha", "ru": "Monetha", "ja": "Monetha", "zh": "Monetha", "zh-tw": "Monetha", "ko": "Monetha", "ar": "Monetha", "th": "Monetha", "id": "Monetha"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/902/thumb/mth_logo_coingecko.png?1622448039", "small": "https://assets.coingecko.com/coins/images/902/small/mth_logo_coingecko.png?1622448039"}, "market_data": {"current_price": {"aed": 0.09755413296390966, "ars": 2.5168921952243406, "aud": 0.03428874266415681, "bch": 3.803819941486172e-05, "bdt": 2.252126289296051, "bhd": 0.010012657479089576, "bmd": 0.026558350474765745, "bnb": 6.590441897410037e-05, "brl": 0.13481018700991096, "btc": 7.057460472517304e-07, "cad": 0.03197681169697799, "chf": 0.023855613380350763, "clp": 19.08220634088122, "cny": 0.1694714902145279, "czk": 0.5536805231927748, "dkk": 0.16174898585522812, "dot": 0.0010156114963768004, "eos": 0.004161995094823641, "eth": 9.780310577683698e-06, "eur": 0.021750412613267517, "gbp": 0.018740023586952814, "hkd": 0.20605917681248168, "huf": 7.541542398752582, "idr": 378.5760068425491, "ils": 0.08631145204093214, "inr": 1.937839364372299, "jpy": 2.9105827452305317, "krw": 29.506339461514273, "kwd": 0.007988167539099096, "lkr": 5.258813240904669, "ltc": 0.00014132473424866652, "mmk": 43.717081535129, "mxn": 0.5287183295815422, "myr": 0.10955319570840899, "ngn": 10.929022820118323, "nok": 0.22043165310550847, "nzd": 0.03671070487735258, "php": 1.2703333364219935, "pkr": 4.1165350547243795, "pln": 0.09692358460693742, "rub": 1.9436463211452586, "sar": 0.09960356119499585, "sek": 0.2196596018572074, "sgd": 0.03512341850287777, "thb": 0.82660757119681, "try": 0.22826371066051715, "twd": 0.7348695576367708, "uah": 0.7263466908275649, "usd": 0.026558350474765745, "vef": 0.0026592876330382995, "vnd": 609.9594572973416, "xag": 0.0009431064129547773, "xau": 1.3920028234338955e-05, "xdr": 0.01840090000974053, "xlm": 0.06281617071545671, "xrp": 0.02592438817260916, "yfi": 5.855009198525853e-07, "zar": 0.3590799201342806, "bits": 0.7057460472517304, "link": 0.000862351772737008, "sats": 70.57460472517305}, "market_cap": {"aed": 33904343.83139572, "ars": 874730529.4078288, "aud": 11916843.351597449, "bch": 13219.94417361876, "bdt": 782712753.8744779, "bhd": 3479838.029646961, "bmd": 9230192.70156694, "bnb": 22904.67879749284, "brl": 46852458.15315381, "btc": 245.27773367145068, "cad": 11113345.846733348, "chf": 8290872.911099287, "clp": 6631904412.314589, "cny": 58898782.647968866, "czk": 192428288.3844574, "dkk": 56214873.36517081, "dot": 352969.58033562894, "eos": 1446476.007035878, "eth": 3399.0872813794454, "eur": 7559223.226224186, "gbp": 6512980.883501569, "hkd": 71614609.94019946, "huf": 2621017057.2778273, "idr": 131571781864.4862, "ils": 29997018.656968515, "inr": 673484250.2674699, "jpy": 1011555278.5501255, "krw": 10254748291.17857, "kwd": 2776238.9003919023, "lkr": 1827668463.1156483, "ltc": 49116.54930724513, "mmk": 15193605013.33672, "mxn": 183752830.26425454, "myr": 38074544.893963724, "ngn": 3798315214.0929193, "nok": 76609676.40373553, "nzd": 12758581.544824136, "php": 441496602.04011184, "pkr": 1430676647.4056244, "pln": 33685200.596274994, "rub": 675502422.6714758, "sar": 34616610.111597516, "sek": 76341354.70190111, "sgd": 12206929.847822301, "thb": 287282419.06326705, "try": 79331660.23142768, "twd": 255399432.05235812, "uah": 252437361.68230614, "usd": 9230192.70156694, "vef": 924219.1952078993, "vnd": 211987688631.00156, "xag": 327770.8808733138, "xau": 4837.820900672273, "xdr": 6395120.552895262, "xlm": 21831376.953515615, "xrp": 9009862.970622461, "yfi": 203.48727313915492, "zar": 124796035.8551564, "bits": 245277733.67145067, "link": 299705.0982689334, "sats": 24527773367.14507}, "total_volume": {"aed": 26414993.117416482, "ars": 681505621.4863391, "aud": 9284454.425048769, "bch": 10299.704842994279, "bdt": 609814250.0360935, "bhd": 2711154.0061049624, "bmd": 7191275.486610163, "bnb": 17845.115534492317, "brl": 36502914.37003319, "btc": 191.09674202829615, "cad": 8658446.70266387, "chf": 6459448.145439801, "clp": 5166939973.173409, "cny": 45888248.00760816, "czk": 149921553.96220297, "dkk": 43797204.87798915, "dot": 274999.83723587677, "eos": 1126954.5271358192, "eth": 2648.2408150896736, "eur": 5889417.311442676, "gbp": 5074286.235035412, "hkd": 55795193.62132896, "huf": 2042043576.272182, "idr": 102508036423.88477, "ils": 23370782.378424756, "inr": 524713940.0182063, "jpy": 788106263.128582, "krw": 7989510337.654255, "kwd": 2162977.4583116327, "lkr": 1423942905.7881749, "ltc": 38266.87572406906, "mmk": 11837390921.112314, "mxn": 143162474.132338, "myr": 29664011.382267, "ngn": 2959280696.8036366, "nok": 59686867.411315754, "nzd": 9940255.601774693, "php": 343971550.1425832, "pkr": 1114645190.6694317, "pln": 26244257.85481329, "rub": 526286305.21207875, "sar": 26969922.27289171, "sek": 59477817.0329201, "sgd": 9510461.83104196, "thb": 223822739.64800578, "try": 61807574.552317165, "twd": 198982592.71450388, "uah": 196674833.3068208, "usd": 7191275.486610163, "vef": 720062.4144742771, "vnd": 165160351252.0896, "xag": 255367.44216063188, "xau": 3769.16322079698, "xdr": 4982460.838346886, "xlm": 17008902.305811122, "xrp": 7019615.8209518865, "yfi": 158.53764774752025, "zar": 97229028.95829652, "bits": 191096742.02829614, "link": 233501.2925599688, "sats": 19109674202.829617}}, "community_data": {"facebook_likes": null, "twitter_followers": 21728, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2054, "reddit_accounts_active_48h": "25.5384615384615"}, "developer_data": {"forks": 2, "stars": 0, "subscribers": 3, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 450955, "bing_matches": null}}, "MTH_20210627": {"id": "monetha", "symbol": "mth", "name": "Monetha", "localization": {"en": "Monetha", "de": "Monetha", "es": "Monetha", "fr": "Monetha", "it": "Monetha", "pl": "Monetha", "ro": "Monetha", "hu": "Monetha", "nl": "Monetha", "pt": "Monetha", "sv": "Monetha", "vi": "Monetha", "tr": "Monetha", "ru": "Monetha", "ja": "Monetha", "zh": "Monetha", "zh-tw": "Monetha", "ko": "Monetha", "ar": "Monetha", "th": "Monetha", "id": "Monetha"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/902/thumb/mth_logo_coingecko.png?1622448039", "small": "https://assets.coingecko.com/coins/images/902/small/mth_logo_coingecko.png?1622448039"}, "market_data": {"current_price": {"aed": 0.06624845698688155, "ars": 1.7214661187328753, "aud": 0.023813968441311124, "bch": 3.81951304980885e-05, "bdt": 1.5291258834896966, "bhd": 0.006799015727306894, "bmd": 0.018035624792247042, "bnb": 6.0700683212175126e-05, "brl": 0.0895775376556533, "btc": 5.349114673838746e-07, "cad": 0.022193467553727714, "chf": 0.016566677259792873, "clp": 13.277837017895251, "cny": 0.11676263490500752, "czk": 0.38376923857934936, "dkk": 0.11244761167346214, "dot": 0.0011347167756379033, "eos": 0.004946675465136663, "eth": 9.145353244741405e-06, "eur": 0.015121608894563685, "gbp": 0.012915058414980998, "hkd": 0.14005726753042555, "huf": 5.296890905551186, "idr": 260.2684942519584, "ils": 0.058636701899562126, "inr": 1.3390935048305606, "jpy": 2.0024736276966815, "krw": 20.48234831061754, "kwd": 0.005435342136765121, "lkr": 3.5930270155468045, "ltc": 0.00014013047149291578, "mmk": 29.682316224664003, "mxn": 0.3643229393583521, "myr": 0.07503721694814358, "ngn": 7.4186536585324205, "nok": 0.15401813968460967, "nzd": 0.025603877952568077, "php": 0.8801693307800491, "pkr": 2.854406642752493, "pln": 0.068502549373417, "rub": 1.310594746778216, "sar": 0.06764627201515543, "sek": 0.15299862188635371, "sgd": 0.024280153270941122, "thb": 0.5744164697232755, "try": 0.15581156614270159, "twd": 0.5061427563572245, "uah": 0.4919002939931589, "usd": 0.018035624792247042, "vef": 0.0018059071104476968, "vnd": 415.7508130121478, "xag": 0.0006980816628775264, "xau": 1.0155499608018456e-05, "xdr": 0.012611031887858113, "xlm": 0.07076584107845926, "xrp": 0.02815106802685532, "yfi": 5.840710886802158e-07, "zar": 0.2567167386616212, "bits": 0.5349114673838746, "link": 0.0009878055905984783, "sats": 53.491146738387464}, "market_cap": {"aed": 23024247.11020306, "ars": 598285048.6222864, "aud": 8276399.466570187, "bch": 13274.48461431462, "bdt": 531438373.1389549, "bhd": 2362956.4420295744, "bmd": 6268171.379234226, "bnb": 21096.152176223874, "brl": 31132126.789242603, "btc": 185.90521752931457, "cad": 7713204.268145988, "chf": 5757647.624909727, "clp": 4614631260.763685, "cny": 40580141.50916243, "czk": 133376657.87589756, "dkk": 39080481.50668055, "dot": 394363.8936006218, "eos": 1719186.8831879098, "eth": 3178.4117335550823, "eur": 5255422.929491353, "gbp": 4488549.770270315, "hkd": 48676048.980867445, "huf": 1840902123.1897907, "idr": 90454727539.4532, "ils": 20378828.06131123, "inr": 465393779.133482, "jpy": 695947494.2168525, "krw": 7118515213.030431, "kwd": 1889020.0040456834, "lkr": 1248734621.788497, "ltc": 48701.49057148678, "mmk": 10315907941.753002, "mxn": 126618215.20406519, "myr": 26078727.02330392, "ngn": 2578307825.2356257, "nok": 53528064.93673403, "nzd": 8898471.598759526, "php": 305897481.8796883, "pkr": 992031616.8081082, "pln": 23807643.1691799, "rub": 455489209.6148136, "sar": 23510049.196607977, "sek": 53173737.74500872, "sgd": 8438419.160380634, "thb": 199634940.11185908, "try": 54151359.36234247, "twd": 175906827.50113958, "uah": 170956946.58552903, "usd": 6268171.379234226, "vef": 627632.0002027233, "vnd": 144491658982.4126, "xag": 242614.02363494074, "xau": 3529.481940219207, "xdr": 4382887.20533057, "xlm": 24594236.395187937, "xrp": 9783731.971218603, "yfi": 202.99034403716806, "zar": 89220336.54974061, "bits": 185905217.52931458, "link": 343305.80739839847, "sats": 18590521752.931458}, "total_volume": {"aed": 733364.9581766712, "ars": 19056488.038915124, "aud": 263618.66772898525, "bch": 422.8169463000455, "bdt": 16927297.488820706, "bhd": 75264.5436781464, "bmd": 199652.87982594856, "bnb": 671.9515597775679, "brl": 991615.9582315377, "btc": 5.921425852739135, "cad": 245679.8564766236, "chf": 183391.75172276425, "clp": 146984561.33451706, "cny": 1292552.743993193, "czk": 4248293.838088463, "dkk": 1244785.7924948316, "dot": 12561.221174899843, "eos": 54759.2896589557, "eth": 101.23830659435214, "eur": 167394.96403247002, "gbp": 142968.63210304402, "hkd": 1550422.4070475863, "huf": 58636145.71710177, "idr": 2881150778.1922956, "ils": 649103.4567749335, "inr": 14823654.720881717, "jpy": 22167218.000510763, "krw": 226737907.49798882, "kwd": 60168.78943450672, "lkr": 39774512.89931042, "ltc": 1551.232768878363, "mmk": 328580793.97981924, "mxn": 4033024.90861405, "myr": 830655.8065158564, "ngn": 82123884.50185601, "nok": 1704968.1110402164, "nzd": 283432.8184815516, "php": 9743401.941930778, "pkr": 31598046.254811816, "pln": 758317.5750973227, "rub": 14508175.818312205, "sar": 748838.6553218254, "sek": 1693682.1330494173, "sgd": 268779.29536672635, "thb": 6358742.972353573, "try": 1724821.194104354, "twd": 5602958.592995503, "uah": 5445295.708590149, "usd": 199652.87982594856, "vef": 19991.242856972236, "vnd": 4602327230.911146, "xag": 7727.7064672080405, "xau": 112.42054357239503, "xdr": 139603.08350781826, "xlm": 783372.0277155717, "xrp": 311630.0026464236, "yfi": 6.465618808404672, "zar": 2841833.1365681724, "bits": 5921425.852739135, "link": 10934.92646597617, "sats": 592142585.2739135}}, "community_data": {"facebook_likes": null, "twitter_followers": 21770, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2056, "reddit_accounts_active_48h": "15.0"}, "developer_data": {"forks": 2, "stars": 0, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 537321, "bing_matches": null}}, "NXS_20210801": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 1.7312704206374223, "ars": 45.53129973612999, "aud": 0.6387073798484235, "bch": 0.0009271861195388867, "bdt": 39.97171824223344, "bhd": 0.1776993643850438, "bmd": 0.47132484499548677, "bnb": 0.0015034390638396305, "brl": 2.411580701903905, "btc": 1.1783567391020268e-05, "cad": 0.590077967641169, "chf": 0.4288297256458488, "clp": 359.10207230261904, "cny": 3.059322436381204, "czk": 10.169022060715614, "dkk": 2.959165906819662, "dot": 0.032520880683716016, "eos": 0.12087610297758788, "eth": 0.00020503205175187065, "eur": 0.3978693392277851, "gbp": 0.3389532622785041, "hkd": 3.6672631443228547, "huf": 143.3251721146774, "idr": 6816.606269473974, "ils": 1.5347062793314328, "inr": 35.09138419207809, "jpy": 51.789173968104016, "krw": 542.2061648750596, "kwd": 0.1417217249920028, "lkr": 93.7960191599957, "ltc": 0.0033678346130594588, "mmk": 775.8177959419211, "mxn": 9.393032835915053, "myr": 1.9955893937108877, "ngn": 193.9520406333537, "nok": 4.146421408242167, "nzd": 0.6770350449186113, "php": 23.671474005266738, "pkr": 76.38172748183055, "pln": 1.8289576793360303, "rub": 34.63106431088832, "sar": 1.767663297218902, "sek": 4.049905863108219, "sgd": 0.6393992847208769, "thb": 15.464168164301915, "try": 4.034540673161369, "twd": 13.156514119394627, "uah": 12.661472208198983, "usd": 0.47132484499548677, "vef": 0.0471937567293981, "vnd": 10801.41606830289, "xag": 0.018837949110767156, "xau": 0.000260364557623957, "xdr": 0.3314756936126509, "xlm": 1.7671116794865653, "xrp": 0.6643730837550705, "yfi": 1.5770933659998913e-05, "zar": 6.953893770324259, "bits": 11.783567391020268, "link": 0.02475397377299463, "sats": 1178.3567391020267}, "market_cap": {"aed": 118192117.24372405, "ars": 3108807916.2700305, "aud": 43611932.39189687, "bch": 63148.72659277744, "bdt": 2728829622.803663, "bhd": 12128624.606713556, "bmd": 32176880.443135124, "bnb": 102294.9112970864, "brl": 164636226.47534466, "btc": 802.6092442900181, "cad": 40290280.84687163, "chf": 29277743.51520861, "clp": 24515542846.69268, "cny": 208856913.2683454, "czk": 694319161.5780576, "dkk": 202051503.0546229, "dot": 2206445.2065054253, "eos": 8245679.413810057, "eth": 13941.160420679777, "eur": 27166328.79741051, "gbp": 23141451.530300558, "hkd": 250359618.9703143, "huf": 9791289254.179379, "idr": 465362959940.9076, "ils": 104772877.96243581, "inr": 2395654049.901465, "jpy": 3536174806.939663, "krw": 37015877961.79654, "kwd": 9675491.41860941, "lkr": 6403361347.484437, "ltc": 228600.42783156945, "mmk": 52964312683.1535, "mxn": 641350610.6527426, "myr": 136236911.79623434, "ngn": 13240913754.973522, "nok": 283285255.4213613, "nzd": 46234155.08672972, "php": 1616260246.0919323, "pkr": 5214504898.944005, "pln": 124869785.24208787, "rub": 2363958181.644074, "sar": 120658925.60601637, "sek": 276603694.02046394, "sgd": 43660809.07329003, "thb": 1056045216.1436927, "try": 275384865.9661586, "twd": 898185408.5127906, "uah": 864386169.757712, "usd": 32176880.443135124, "vef": 3221871.038771115, "vnd": 737571046100.588, "xag": 1287075.2177254003, "xau": 17782.23120809415, "xdr": 22629517.36245026, "xlm": 120039611.42608105, "xrp": 45233380.88051246, "yfi": 1071.1663073040888, "zar": 474747347.12214786, "bits": 802609244.2900181, "link": 1680900.900011832, "sats": 80260924429.0018}, "total_volume": {"aed": 474555.3929788117, "ars": 12480501.937507765, "aud": 175074.920722575, "bch": 254.1493045091566, "bdt": 10956575.144105716, "bhd": 48708.85027122535, "bmd": 129193.99787074258, "bnb": 412.10495325012704, "brl": 661034.0095054408, "btc": 3.2299722719683954, "cad": 161745.20079826322, "chf": 117545.7378287186, "clp": 98432817.31708428, "cny": 838585.3207792026, "czk": 2787412.181660416, "dkk": 811131.5962316697, "dot": 8914.239583204895, "eos": 33133.129213376575, "eth": 56.200963600208276, "eur": 109059.2424965852, "gbp": 92909.86356874446, "hkd": 1005226.8449027685, "huf": 39286602.81251407, "idr": 1868487573.3052945, "ils": 420675.55294280953, "inr": 9618835.634765144, "jpy": 14195836.486037174, "krw": 148623147.82290486, "kwd": 38847.084831757806, "lkr": 25710256.584833015, "ltc": 923.151033620524, "mmk": 212658008.04106674, "mxn": 2574707.183566028, "myr": 547007.3869847232, "ngn": 53163841.861236095, "nok": 1136568.047018123, "nzd": 185580.84743542585, "php": 6488544.77905372, "pkr": 20936856.697519835, "pln": 501332.2701714992, "rub": 9492658.187550664, "sar": 484530.9783304027, "sek": 1110112.3461041427, "sgd": 175264.57751144926, "thb": 4238855.070139063, "try": 1105900.621773557, "twd": 3606308.207970111, "uah": 3470613.168126517, "usd": 129193.99787074258, "vef": 12936.195006797458, "vnd": 2960756555.370406, "xag": 5163.636042417653, "xau": 71.36805636377694, "xdr": 90860.20079252518, "xlm": 484379.77539490367, "xrp": 182110.10024063798, "yfi": 4.3229420034266015, "zar": 1906119.2010050842, "bits": 3229972.2719683954, "link": 6785.266825794658, "sats": 322997227.1968395}}, "community_data": {"facebook_likes": null, "twitter_followers": 25991, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3958, "reddit_accounts_active_48h": "176.307692307692"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 406501, "bing_matches": null}}, "NXS_20200721": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.7037829785470598, "ars": 13.693511928325043, "aud": 0.27392410009529833, "bch": 0.0008602862588571853, "bdt": 16.247168825973457, "bhd": 0.07227331926985192, "bmd": 0.1916098498630713, "bnb": 0.011218978082007076, "brl": 1.0321658553408901, "btc": 2.093233719531619e-05, "cad": 0.2602061761140499, "chf": 0.1798929075439445, "clp": 150.9500659319936, "cny": 1.3397743922125664, "czk": 4.466233990458319, "dkk": 1.2483956548128687, "eos": 0.07674128483473289, "eth": 0.0008233848377850055, "eur": 0.16766781590298085, "gbp": 0.1524463294298583, "hkd": 1.4857197826562702, "huf": 59.226604592675365, "idr": 2835.1359825139557, "ils": 0.6588351399661814, "inr": 14.351106394513367, "jpy": 20.503207326562478, "krw": 230.6273635906883, "kwd": 0.05893765693908174, "lkr": 35.616453838115945, "ltc": 0.004572054605465751, "mmk": 263.12245197002756, "mxn": 4.320418894712522, "myr": 0.8167369850413408, "ngn": 74.24881682194014, "nok": 1.7808794275823432, "nzd": 0.29215501087036944, "php": 9.460374194372903, "pkr": 32.070698620831536, "pln": 0.7507091888277757, "rub": 13.772283695653016, "sar": 0.71865745958208, "sek": 1.734626725923896, "sgd": 0.26640092256012465, "thb": 6.066066635980848, "try": 1.3144943466708814, "twd": 5.646550665614841, "uah": 5.225842690372842, "usd": 0.1916098498630713, "vef": 47612.67982262659, "vnd": 4443.428094456743, "xag": 0.009902575238083884, "xau": 0.00010586060985234958, "xdr": 0.1380409093073028, "xlm": 1.839712839871618, "xrp": 0.9863455026921552, "yfi": 0.00024267238877302575, "zar": 3.196492998370719, "bits": 20.93233719531619, "link": 0.023157717201025205, "sats": 2093.233719531619}, "market_cap": {"aed": 42021393.85182829, "ars": 817610649.1560717, "aud": 16355428.94114266, "bch": 51365.87387121131, "bdt": 970084104.0839772, "bhd": 4315287.107805922, "bmd": 11440619.072101377, "bnb": 669861.4643569774, "brl": 61628441.223786354, "btc": 1249.8256029714987, "cad": 15536360.699913613, "chf": 10741025.215842377, "clp": 9012909328.359957, "cny": 79995096.67594717, "czk": 266669389.9516104, "dkk": 74539065.44046213, "eos": 4582059.88640576, "eth": 49162.568028595604, "eur": 10011090.83780417, "gbp": 9102248.058716424, "hkd": 88709187.41078535, "huf": 3536295355.186537, "idr": 169279976038.44128, "ils": 39337653.429894805, "inr": 856874224.5774753, "jpy": 1224203165.6887574, "krw": 13770272333.753368, "kwd": 3519042.9016258013, "lkr": 2126583165.490489, "ltc": 272987.715168924, "mmk": 15710485366.266884, "mxn": 257963078.83774126, "myr": 48765638.79483208, "ngn": 4433239890.439283, "nok": 106332545.84183179, "nzd": 17443958.083376776, "php": 564858943.9149592, "pkr": 1914873617.1929667, "pln": 44823258.6656813, "rub": 822313944.8597093, "sar": 42909517.66977644, "sek": 103570894.80401723, "sgd": 15906235.914514754, "thb": 362192015.169548, "try": 78485678.59866944, "twd": 337143603.4357551, "uah": 312024019.610715, "usd": 11440619.072101377, "vef": 2842852459003.8887, "vnd": 265307698113.02045, "xag": 591261.8334219354, "xau": 6320.713224954567, "xdr": 8242130.876256774, "xlm": 109845364.51579082, "xrp": 58892604.83135589, "yfi": 14489.4553242075, "zar": 190855839.54651707, "bits": 1249825602.9714987, "link": 1382698.338659052, "sats": 124982560297.14987}, "total_volume": {"aed": 263427.20449015504, "ars": 5125505.556241658, "aud": 102530.27158962582, "bch": 322.00665708042357, "bdt": 6081343.816444113, "bhd": 27052.030291761996, "bmd": 71719.90320995248, "bnb": 4199.283193067205, "brl": 386341.49181040365, "btc": 7.83501056276075, "cad": 97395.62855911511, "chf": 67334.23112866389, "clp": 56500874.69884829, "cny": 501479.9072246294, "czk": 1671719.2239207781, "dkk": 467276.68538380344, "eos": 28724.397647029265, "eth": 308.1943903858996, "eur": 62758.3578640625, "gbp": 57060.928753063825, "hkd": 556107.5231015859, "huf": 22168622.082196318, "idr": 1061196375.8557435, "ils": 246603.14959516466, "inr": 5371644.31946354, "jpy": 7674386.499470111, "krw": 86324227.10059503, "kwd": 22060.46846815567, "lkr": 13331301.202818403, "ltc": 1711.3280659055422, "mmk": 98487195.73206422, "mxn": 1617140.3775780047, "myr": 305706.0874324222, "ngn": 27791462.493856587, "nok": 666586.2964042611, "nzd": 109354.1335004397, "php": 3541034.670374336, "pkr": 12004118.799765786, "pln": 280991.7673857886, "rub": 5154989.967050791, "sar": 268994.7488564404, "sek": 649273.8289684106, "sgd": 99714.3330298935, "thb": 2270539.391939247, "try": 492017.54179462406, "twd": 2113513.827694087, "uah": 1956042.093931059, "usd": 71719.90320995248, "vef": 17821509650.393818, "vnd": 1663182937.0074587, "xag": 3706.551297400324, "xau": 39.62381212543452, "xdr": 51668.95470983641, "xlm": 688607.7459169735, "xrp": 369190.8533679563, "yfi": 90.83270117359292, "zar": 1196452.9413193918, "bits": 7835010.56276075, "link": 8667.974205960047, "sats": 783501056.276075}}, "community_data": {"facebook_likes": null, "twitter_followers": 23319, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3527, "reddit_accounts_active_48h": "2746.08333333333"}, "developer_data": {"forks": 7, "stars": 22, "subscribers": 11, "total_issues": 37, "closed_issues": 34, "pull_requests_merged": 82, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 44, "deletions": -49}, "commit_count_4_weeks": 3}, "public_interest_stats": {"alexa_rank": 454042, "bing_matches": null}}, "NXS_20200802": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.8087342302210425, "ars": 15.895535882102791, "aud": 0.30679695225397946, "bch": 0.0007642790963173882, "bdt": 18.691945749221613, "bhd": 0.08299973569872957, "bmd": 0.22018356390444885, "bnb": 0.011082605708698314, "brl": 1.1384150804551758, "btc": 1.9827680408779783e-05, "cad": 0.29371386507034025, "chf": 0.2009113369230209, "clp": 166.76672062222136, "cny": 1.541681277746174, "czk": 4.891465945562916, "dkk": 1.3903722335488555, "eos": 0.07289492590062338, "eth": 0.0006924835922043123, "eur": 0.18680990075632437, "gbp": 0.16956138091074144, "hkd": 1.7064776661504597, "huf": 64.50863809374812, "idr": 3194.450341759202, "ils": 0.7493991634200716, "inr": 16.47318746200612, "jpy": 23.122466871643887, "krw": 262.2055970756137, "kwd": 0.06732618888575533, "lkr": 40.946145819186576, "ltc": 0.003983267707629025, "mmk": 301.44810581680815, "mxn": 4.838876202242141, "myr": 0.9342388616465795, "ngn": 85.42093978212469, "nok": 1.9886876005574783, "nzd": 0.33062830010961397, "php": 10.803779517267087, "pkr": 36.74848136605659, "pln": 0.8232295747835636, "rub": 15.975286368948982, "sar": 0.8259475206964011, "sek": 1.921917375170588, "sgd": 0.302624693901554, "thb": 6.922175579291561, "try": 1.5353300828453507, "twd": 6.4425710798441855, "uah": 6.0983321327318265, "usd": 0.22018356390444885, "vef": 54712.89465483728, "vnd": 5086.550191843362, "xag": 0.009091815317071256, "xau": 0.00011194132388902208, "xdr": 0.15667293599759444, "xlm": 2.3122892722475203, "xrp": 0.9068461246456866, "yfi": 4.904462948325507e-05, "zar": 3.642061835132601, "bits": 19.827680408779784, "link": 0.030975875144048495, "sats": 1982.7680408779784}, "market_cap": {"aed": 48255207.152232386, "ars": 948524741.678509, "aud": 18304909.30302158, "bch": 45651.345177509276, "bdt": 1115303001.284427, "bhd": 4952392.627956462, "bmd": 13137818.446020298, "bnb": 662471.7776762291, "brl": 67929090.27514786, "btc": 1183.8684412011423, "cad": 17525271.742979396, "chf": 11987733.8192556, "clp": 9950590785.437714, "cny": 91988377.19534479, "czk": 291869774.5967868, "dkk": 82961382.14108416, "eos": 4357563.770050051, "eth": 41410.16490047176, "eur": 11146558.717612308, "gbp": 10117736.155104466, "hkd": 101820195.00760838, "huf": 3848342811.924152, "idr": 190605092890.16064, "ils": 44714827.83739887, "inr": 982915083.5119183, "jpy": 1379833042.0410235, "krw": 15645171096.443256, "kwd": 4017190.1596949515, "lkr": 2443157065.393806, "ltc": 238028.96015289362, "mmk": 17986676275.4216, "mxn": 288656264.2048896, "myr": 55743763.666464046, "ngn": 5096859994.65881, "nok": 118692832.48146288, "nzd": 19726854.806889653, "php": 644643664.0161755, "pkr": 2192692623.3409567, "pln": 49116391.15136902, "rub": 953817443.2176728, "sar": 49282282.38488692, "sek": 114683078.32700886, "sgd": 18058654.034069434, "thb": 413020193.6723994, "try": 91584875.37741208, "twd": 384412567.73055357, "uah": 363872665.89131343, "usd": 13137818.446020298, "vef": 3264585529841.889, "vnd": 303500692466.5723, "xag": 542024.3480637684, "xau": 6677.558981558721, "xdr": 9348293.542176396, "xlm": 138137875.32348785, "xrp": 54085453.300585836, "yfi": 2928.3500570202095, "zar": 217357205.25797218, "bits": 1183868441.2011423, "link": 1849503.3340051046, "sats": 118386844120.11423}, "total_volume": {"aed": 457243.7936944229, "ars": 8987050.20504942, "aud": 173457.48096275685, "bch": 432.10966023534473, "bdt": 10568090.067819232, "bhd": 46926.55832825174, "bmd": 124487.82839488749, "bnb": 6265.9060157249105, "brl": 643639.419150089, "btc": 11.210214025184909, "cad": 166060.5386873606, "chf": 113591.65775114016, "clp": 94286905.57396218, "cny": 871638.8768553254, "czk": 2765546.902923797, "dkk": 786091.4636215004, "eos": 41213.480540776596, "eth": 391.51777300696097, "eur": 105618.95926941797, "gbp": 95866.9562564476, "hkd": 964811.7920174797, "huf": 36472024.1901769, "idr": 1806084790.8406222, "ils": 423696.81369856856, "inr": 9313644.02284341, "jpy": 13073027.054974994, "krw": 148246330.44405222, "kwd": 38065.0167517901, "lkr": 23150214.68352183, "ltc": 2252.0679475122256, "mmk": 170433339.35303092, "mxn": 2735813.6075508106, "myr": 528201.8558795094, "ngn": 48295463.58665465, "nok": 1124368.2151346894, "nzd": 186931.2965812493, "php": 6108262.700050568, "pkr": 20776930.670699988, "pln": 465439.20090114325, "rub": 9032139.696494048, "sar": 466975.87865485024, "sek": 1086617.5301495998, "sgd": 171098.56110250208, "thb": 3913673.6201076517, "try": 868048.0254452752, "twd": 3642513.8588344147, "uah": 3447887.347140941, "usd": 124487.82839488749, "vef": 30933686965.547935, "vnd": 2875844028.389734, "xag": 5140.348920325146, "xau": 63.289611955960964, "xdr": 88580.06122135281, "xlm": 1307326.7823378732, "xrp": 512714.4948677979, "yfi": 27.72895174615227, "zar": 2059156.2816755525, "bits": 11210214.025184909, "link": 17513.202897320603, "sats": 1121021402.5184908}}, "community_data": {"facebook_likes": null, "twitter_followers": 23273, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3523, "reddit_accounts_active_48h": "2766.91666666667"}, "developer_data": {"forks": 7, "stars": 22, "subscribers": 11, "total_issues": 37, "closed_issues": 34, "pull_requests_merged": 83, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 47, "deletions": -52}, "commit_count_4_weeks": 5}, "public_interest_stats": {"alexa_rank": 454042, "bing_matches": null}}, "SNM_20211207": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 1.3826972817561267, "ars": 38.063605328274335, "aud": 0.5379118178291191, "bch": 0.0007050894917070934, "bdt": 32.26333459557944, "bhd": 0.14189219855277083, "bmd": 0.37643877971090633, "bnb": 0.0006310209323022296, "brl": 2.1274061196582115, "btc": 7.02e-06, "cad": 0.48367113049935456, "chf": 0.3454021552013014, "clp": 316.6076000636544, "cny": 2.400324234948619, "czk": 8.471001859834526, "dkk": 2.4747668858303515, "dot": 0.011129595632041325, "eos": 0.09888455480032982, "eth": 8.867854025573329e-05, "eur": 0.3327048751616521, "gbp": 0.28448043240922766, "hkd": 2.9349068282099773, "huf": 121.25544821023959, "idr": 5468.14971408062, "ils": 1.1903107146092744, "inr": 28.352750022471607, "jpy": 42.46681273476993, "krw": 445.84467972010435, "kwd": 0.11394952437360983, "lkr": 76.02889388181914, "ltc": 0.0019937400154125505, "mmk": 671.9142706302972, "mxn": 8.006664625061099, "myr": 1.5927124769568464, "ngn": 154.332370905877, "nok": 3.455275093149447, "nzd": 0.5577719749691071, "php": 18.995270598101982, "pkr": 66.08382777824956, "pln": 1.5301472224525532, "rub": 27.846305851554824, "sar": 1.4121551220236273, "sek": 3.4411081961138104, "sgd": 0.5166754005105082, "thb": 12.747351291054565, "try": 5.158227666744634, "twd": 10.416889199916108, "uah": 10.291478244016695, "usd": 0.37643877971090633, "vef": 0.037692815012453015, "vnd": 8558.335656727459, "xag": 0.01670095114708115, "xau": 0.00021107298817170213, "xdr": 0.2689549678176105, "xlm": 1.139670363903014, "xrp": 0.406950697509653, "yfi": 1.3657038735896431e-05, "zar": 6.05042521853745, "bits": 7.02, "link": 0.016123905717171455, "sats": 702.0}, "market_cap": {"aed": 61391759.30997204, "ars": 1690024076.5753803, "aud": 23883284.711612888, "bch": 31305.973431794948, "bdt": 1432492056.0437272, "bhd": 6300013.615743023, "bmd": 16713881.819164239, "bnb": 28017.329394218996, "brl": 94456831.71282457, "btc": 311.688, "cad": 21474998.194171343, "chf": 15335855.690937782, "clp": 14057377442.826256, "cny": 106574396.03171869, "czk": 376112482.57665294, "dkk": 109879649.73086762, "dot": 494154.0460626346, "eos": 4390474.233134644, "eth": 3937.327187354558, "eur": 14772096.457177354, "gbp": 12630931.19896971, "hkd": 130309863.17252298, "huf": 5383741900.534638, "idr": 242785847305.17953, "ils": 52849795.72865176, "inr": 1258862100.9977396, "jpy": 1885526485.423785, "krw": 19795503779.572636, "kwd": 5059358.882188275, "lkr": 3375682888.35277, "ltc": 88522.05668431721, "mmk": 29832993615.985195, "mxn": 355495909.3527128, "myr": 70716433.97688396, "ngn": 6852357268.220939, "nok": 153414214.13583544, "nzd": 24765075.688628357, "php": 843390014.555728, "pkr": 2934121953.3542805, "pln": 67938536.67689335, "rub": 1236375979.809034, "sar": 62699687.41784904, "sek": 152785203.90745315, "sgd": 22940387.782666564, "thb": 565982397.3228229, "try": 229025308.40346175, "twd": 462509880.47627527, "uah": 456941634.03434104, "usd": 16713881.819164239, "vef": 1673560.9865529141, "vnd": 379990103158.69916, "xag": 741522.2309304031, "xau": 9371.640674823573, "xdr": 11941600.571101906, "xlm": 50601364.15729382, "xrp": 18068610.96942859, "yfi": 606.3725198738015, "zar": 268638879.7030628, "bits": 311688000.0, "link": 715901.4138424129, "sats": 31168800000.0}, "total_volume": {"aed": 4323617.008396715, "ars": 119022763.38404866, "aud": 1682020.1466149802, "bch": 2204.7753756445654, "bdt": 100885641.45282288, "bhd": 443688.9629539082, "bmd": 1177102.994309092, "bnb": 1973.1671361146673, "brl": 6652279.862038387, "btc": 21.95114708, "cad": 1512412.5532679781, "chf": 1080053.2066342956, "clp": 990014244.3936033, "cny": 7505679.532912481, "czk": 26488348.6809375, "dkk": 7738457.535552082, "dot": 34801.622601120325, "eos": 309206.4681427863, "eth": 277.2928319078778, "eur": 1040349.5226362484, "gbp": 889554.3893442956, "hkd": 9177289.380645799, "huf": 379158999.7028906, "idr": 17098598095.33385, "ils": 3722034.981095169, "inr": 88657462.37403812, "jpy": 132791346.48999313, "krw": 1394131358.8848295, "kwd": 356313.78478933824, "lkr": 237738095.7164564, "ltc": 6234.313435555891, "mmk": 2101038316.2046406, "mxn": 25036392.13745716, "myr": 4980322.768921773, "ngn": 482588685.6068403, "nok": 10804451.819313992, "nzd": 1744121.7463887392, "php": 59397147.9662872, "pkr": 206640430.65096092, "pln": 4784684.719958615, "rub": 87073839.7980263, "sar": 4415730.026113389, "sek": 10760152.725226173, "sgd": 1615615.0582940276, "thb": 39860253.99862772, "try": 16129489.200119186, "twd": 32573029.479119945, "uah": 32180876.439463045, "usd": 1177102.994309092, "vef": 117863.32282016925, "vnd": 26761436575.617214, "xag": 52222.9394594691, "xau": 660.0134199390503, "xdr": 841007.1305500051, "xlm": 3563685.4388535866, "xrp": 1272512.0534676614, "yfi": 42.704795722068354, "zar": 18919341.006931156, "bits": 21951147.08, "link": 50418.55069824551, "sats": 2195114708.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 33353, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9788, "reddit_accounts_active_48h": "13.9166666666667"}, "developer_data": {"forks": 73, "stars": 350, "subscribers": 74, "total_issues": 225, "closed_issues": 145, "pull_requests_merged": 1521, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BTS_20190822": {"id": "bitshares", "symbol": "bts", "name": "BitShares", "localization": {"en": "BitShares", "de": "BitShares", "es": "BitShares", "fr": "BitShares", "it": "BitShares", "pl": "BitShares", "ro": "BitShares", "hu": "BitShares", "nl": "BitShares", "pt": "BitShares", "sv": "BitShares", "vi": "BitShares", "tr": "BitShares", "ru": "BitShares", "ja": "\u30d3\u30c3\u30c8\u30b7\u30a7\u30a2\u30fc\u30ba", "zh": "\u6bd4\u7279\u80a1", "zh-tw": "\u6bd4\u7279\u80a1bts", "ko": "\ube44\ud2b8\uc250\uc5b4", "ar": "BitShares", "th": "BitShares", "id": "BitShares"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/95/thumb/bitshares.png?1547273755", "small": "https://assets.coingecko.com/coins/images/95/small/bitshares.png?1547273755"}, "market_data": {"current_price": {"aed": 0.1496727162932033, "ars": 2.2341234861930346, "aud": 0.06005105645203769, "bch": 0.00012868779293989863, "bdt": 3.4451163280527335, "bhd": 0.015363452320308075, "bmd": 0.040749268800681214, "bnb": 0.0014615782004128428, "brl": 0.1632808123613845, "btc": 3.9504002873745345e-06, "cad": 0.054069593532592136, "chf": 0.0399130938048914, "clp": 28.86250334517858, "cny": 0.2869930252363185, "czk": 0.9455392688723884, "dkk": 0.27393545178963485, "eos": 0.011029591394038208, "eth": 0.00020965707828069784, "eur": 0.03673917400727508, "gbp": 0.033513665635357154, "hkd": 0.3196415431457686, "huf": 11.926495992583417, "idr": 579.2182565866455, "ils": 0.14450994693323208, "inr": 2.8990604784043867, "jpy": 4.33696505309092, "krw": 49.245350882893774, "kwd": 0.012399146761402535, "lkr": 7.2217043232231255, "ltc": 0.0005344517258071273, "mmk": 61.87912015751217, "mxn": 0.8002096911465011, "myr": 0.1702319856304801, "ngn": 14.82334398943822, "nok": 0.36694199039299763, "nzd": 0.06341213764125565, "php": 2.1312378986079805, "pkr": 6.543997528901343, "pln": 0.1594883186633741, "rub": 2.7053765550922764, "sar": 0.15284846980791567, "sek": 0.39390500732230144, "sgd": 0.056447191119305254, "thb": 1.2600076108453722, "try": 0.22768706916430148, "twd": 1.2761015753074725, "uah": 1.02597270208584, "usd": 0.040749268800681214, "vef": 10125.689727326033, "vnd": 944.6353454870175, "xag": 0.002382441044803005, "xau": 2.6979683380243107e-05, "xdr": 0.029708172920599126, "xlm": 0.5835057269017224, "xrp": 0.14456044755659495, "zar": 0.6234704547812372, "bits": 3.9504002873745345, "link": 0.016288751580032033, "sats": 395.04002873745344}, "market_cap": {"aed": 405642395.7393588, "ars": 6054912516.865068, "aud": 162750132.48349932, "bch": 348769.1405846523, "bdt": 9336940462.645653, "bhd": 41637966.894572735, "bmd": 110438504.96141526, "bnb": 3961163.3800676144, "brl": 442523003.1557088, "btc": 10706.359023784385, "cad": 146539195.6557282, "chf": 108172306.83960748, "clp": 78223040871.64584, "cny": 777807346.5927538, "czk": 2562596736.3328633, "dkk": 742418763.3784335, "eos": 29892354.384344414, "eth": 568211.7731523959, "eur": 99570362.12666765, "gbp": 90828602.2664468, "hkd": 866291228.9603653, "huf": 32323141632.10714, "idr": 1569794997222.5562, "ils": 391650278.914767, "inr": 7857022087.776788, "jpy": 11754025302.295958, "krw": 133464552564.34398, "kwd": 33604117.85115462, "lkr": 19572234108.819603, "ltc": 1448468.924949168, "mmk": 167704543410.3391, "mxn": 2168725097.3293066, "myr": 461362045.0860474, "ngn": 40174167461.2569, "nok": 994484711.4874171, "nzd": 171859321.24972725, "php": 5776072409.805769, "pkr": 17735515871.415554, "pln": 432244601.9374554, "rub": 7332100695.192356, "sar": 414249310.185022, "sek": 1067559771.888792, "sgd": 152982951.10471123, "thb": 3414867576.2113643, "try": 617076582.1724745, "twd": 3458485374.1843863, "uah": 2780587104.613016, "usd": 110438504.96141526, "vef": 27442603710483.098, "vnd": 2560146926797.18, "xag": 6456882.169683436, "xau": 73120.22974990368, "xdr": 80514971.16511014, "xlm": 1581414882.0842845, "xrp": 391787145.5017747, "zar": 1689727127.3859627, "bits": 10706359023.784386, "link": 44145709.239242986, "sats": 1070635902378.4386}, "total_volume": {"aed": 60627198.57093837, "ars": 904965524.6724012, "aud": 24324589.10400389, "bch": 52126.93782438774, "bdt": 1395496499.9210072, "bhd": 6223198.84095508, "bmd": 16506107.94261125, "bnb": 592034.3665695072, "brl": 66139363.80004961, "btc": 1600.1694135634775, "cad": 21901707.03743183, "chf": 16167402.607628934, "clp": 11691193725.211868, "cny": 116250867.62901708, "czk": 383004988.686434, "dkk": 110961699.91821066, "eos": 4467702.893109269, "eth": 84924.77207286339, "eur": 14881758.366086863, "gbp": 13575217.391889466, "hkd": 129475643.84317707, "huf": 4831007672.6434765, "idr": 234621119517.86588, "ils": 58535940.71904125, "inr": 1174308315.1445668, "jpy": 1756753321.386094, "krw": 19947574552.091652, "kwd": 5022462.018669832, "lkr": 2925260614.412559, "ltc": 216487.75882181816, "mmk": 25065073970.029934, "mxn": 324137044.1122357, "myr": 68955041.71733208, "ngn": 6004419788.657279, "nok": 148635405.74750602, "nzd": 25686045.89932642, "php": 863290160.5640397, "pkr": 2650745222.3638706, "pln": 64603156.839938805, "rub": 1095853711.196319, "sar": 61913585.58733786, "sek": 159557183.75708106, "sgd": 22864788.917559274, "thb": 510385149.11408037, "try": 92228092.70874393, "twd": 516904252.95212364, "uah": 415585767.9222531, "usd": 16506107.94261125, "vef": 4101563845234.92, "vnd": 382638840841.08826, "xag": 965043.7961176011, "xau": 10928.529007723517, "xdr": 12033744.983344885, "xlm": 236357824.2466687, "xrp": 58556396.76070603, "zar": 252546142.01754683, "bits": 1600169413.5634775, "link": 6598005.307665635, "sats": 160016941356.34775}}, "community_data": {"facebook_likes": null, "twitter_followers": 13637, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 7152, "reddit_accounts_active_48h": "145.863636363636"}, "developer_data": {"forks": 570, "stars": 1037, "subscribers": 181, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 857, "pull_request_contributors": 69, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 133964, "bing_matches": null}}, "AXIAV3_20220103": {"id": "axia", "symbol": "axiav3", "name": "Axia", "localization": {"en": "Axia", "de": "Axia", "es": "Axia", "fr": "Axia", "it": "Axia", "pl": "Axia", "ro": "Axia", "hu": "Axia", "nl": "Axia", "pt": "Axia", "sv": "Axia", "vi": "Axia", "tr": "Axia", "ru": "Axia", "ja": "Axia", "zh": "Axia", "zh-tw": "Axia", "ko": "Axia", "ar": "Axia", "th": "Axia", "id": "Axia"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12906/thumb/axia_200x200.png?1613988058", "small": "https://assets.coingecko.com/coins/images/12906/small/axia_200x200.png?1613988058"}, "market_data": {"current_price": {"aed": 1.7488371336553405, "ars": 48.89294759337819, "aud": 0.6567957138558217, "bch": 0.001104473236389279, "bdt": 40.86021498912874, "bhd": 0.1795097380950106, "bmd": 0.47613420711380344, "bnb": 0.0009187165153212689, "brl": 2.6527817349345506, "btc": 1.0089178629754803e-05, "cad": 0.6067468666750543, "chf": 0.435248086614734, "clp": 405.44714179468906, "cny": 3.034450915356976, "czk": 10.455573418139897, "dkk": 3.12714091372424, "dot": 0.01730185816455732, "eos": 0.15484898626903684, "eth": 0.0001281551535014166, "eur": 0.4205093522335265, "gbp": 0.3527440273402615, "hkd": 3.712922638991662, "huf": 155.18903514913043, "idr": 6792.602018816582, "ils": 1.4787347683754064, "inr": 35.43982937454311, "jpy": 54.78626350799803, "krw": 566.6379071889971, "kwd": 0.14404107260448185, "lkr": 96.62174324128947, "ltc": 0.0032165254268075715, "mmk": 846.794987545832, "mxn": 9.743372347273315, "myr": 1.9873841804930108, "ngn": 195.7713605980218, "nok": 4.1973068235121165, "nzd": 0.6972442670185534, "php": 24.29481029156292, "pkr": 84.97706225548521, "pln": 1.9322240325988762, "rub": 35.50770849551182, "sar": 1.7875920774433738, "sek": 4.307885184040641, "sgd": 0.6438024874778937, "thb": 15.861724048335478, "try": 6.31835092249192, "twd": 13.176395207405239, "uah": 12.99256121844124, "usd": 0.47613420711380344, "vef": 0.04767531815830508, "vnd": 10840.943346925786, "xag": 0.0206386895112115, "xau": 0.0002622166305417139, "xdr": 0.3388775708264855, "xlm": 1.7750799081010777, "xrp": 0.5665425328819635, "yfi": 1.573730297833735e-05, "zar": 7.590674370070384, "bits": 10.089178629754803, "link": 0.023880083223959157, "sats": 1008.9178629754803}, "market_cap": {"aed": 1105610.210943374, "ars": 30910928.611392703, "aud": 415293.4448157699, "bch": 698.5226720470016, "bdt": 25831719.857696716, "bhd": 113492.20393168753, "bmd": 301010.7865585796, "bnb": 579.802904229285, "brl": 1677051.4962324686, "btc": 6.378068603904539, "cad": 383507.3077767568, "chf": 275018.50513924635, "clp": 256322610.8019942, "cny": 1918371.8438164857, "czk": 6608970.554881986, "dkk": 1976822.7203720007, "dot": 10916.228574990722, "eos": 97953.43235758173, "eth": 80.9493426767998, "eur": 265795.5346390916, "gbp": 222996.31595225987, "hkd": 2347285.725713244, "huf": 98093374.05295496, "idr": 4294265032.6626844, "ils": 934852.2099228485, "inr": 22405212.031643778, "jpy": 34636949.99635192, "krw": 358461677.889169, "kwd": 91059.67607419576, "lkr": 61084010.552449435, "ltc": 2031.9818245430552, "mmk": 535341551.7026905, "mxn": 6158259.277887365, "myr": 1257171.5500619104, "ngn": 123766136.43549651, "nok": 2654885.0363680203, "nzd": 440731.8663878353, "php": 15358921.86865042, "pkr": 53722274.02860652, "pln": 1221393.4079715584, "rub": 22462628.936147444, "sar": 1130122.7233359802, "sek": 2723425.7944889804, "sgd": 406861.530662691, "thb": 10029678.204088703, "try": 3974245.4149329304, "twd": 8330081.902975366, "uah": 8213862.842328272, "usd": 301010.7865585796, "vef": 30140.21005811058, "vnd": 6853615714.098786, "xag": 13046.593127601793, "xau": 165.78771091286904, "xdr": 214237.50408497825, "xlm": 1122521.5056159226, "xrp": 357905.80653021816, "yfi": 10.005040665489334, "zar": 4794344.787749981, "bits": 6378068.603904539, "link": 15095.35342809734, "sats": 637806860.3904539}, "total_volume": {"aed": 31190.664900779866, "ars": 872010.0431587684, "aud": 11714.009626686471, "bch": 19.698377822120886, "bdt": 728745.5469543491, "bhd": 3201.5720501344786, "bmd": 8491.895680899906, "bnb": 16.38539027834096, "brl": 47312.596786133734, "btc": 0.17994139288833852, "cad": 10821.384012188677, "chf": 7762.68810688535, "clp": 7231185.621193141, "cny": 54119.70036394311, "czk": 186476.07633368892, "dkk": 55772.83467993536, "dot": 308.58017009483547, "eos": 2761.7453609575814, "eth": 2.2856584934331936, "eur": 7499.821476083099, "gbp": 6291.2209151947, "hkd": 66220.3035415027, "huf": 2767810.1627992005, "idr": 121146657.56807011, "ils": 26373.365335127575, "inr": 632072.490279154, "jpy": 977117.8535488278, "krw": 10106037.173553266, "kwd": 2568.985265177198, "lkr": 1723257.333442571, "ltc": 57.36701537363684, "mmk": 15102663.47158167, "mxn": 173773.90726609522, "myr": 35445.172572076124, "ngn": 3491599.5252340343, "nok": 74859.33829886539, "nzd": 12435.413148570276, "php": 433300.0895562514, "pkr": 1515573.4185055934, "pln": 34461.38645744386, "rub": 633283.1204031094, "sar": 31881.862749726803, "sek": 76831.51313558895, "sgd": 11482.274285450403, "thb": 282895.2508037125, "try": 112688.34733458828, "twd": 235002.17350451936, "uah": 231723.47805781127, "usd": 8491.895680899906, "vef": 850.2935145285066, "vnd": 193349183.0857594, "xag": 368.0928521856883, "xau": 4.6766567893851985, "xdr": 6043.911437279839, "xlm": 31658.70710325351, "xrp": 10104.336164354878, "yfi": 0.2806761900197065, "zar": 135380.34851361052, "bits": 179941.3928883385, "link": 425.90339563777616, "sats": 17994139.288833853}}, "community_data": {"facebook_likes": null, "twitter_followers": 4099, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1415147, "bing_matches": null}}, "ESC_20220106": {"id": "the-essential-coin", "symbol": "esc", "name": "The Essential Coin", "localization": {"en": "The Essential Coin", "de": "The Essential Coin", "es": "The Essential Coin", "fr": "The Essential Coin", "it": "The Essential Coin", "pl": "The Essential Coin", "ro": "The Essential Coin", "hu": "The Essential Coin", "nl": "The Essential Coin", "pt": "The Essential Coin", "sv": "The Essential Coin", "vi": "The Essential Coin", "tr": "The Essential Coin", "ru": "The Essential Coin", "ja": "The Essential Coin", "zh": "The Essential Coin", "zh-tw": "The Essential Coin", "ko": "The Essential Coin", "ar": "The Essential Coin", "th": "The Essential Coin", "id": "The Essential Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/21913/thumb/The-Essential-Coin-200x200.png?1640241497", "small": "https://assets.coingecko.com/coins/images/21913/small/The-Essential-Coin-200x200.png?1640241497"}, "market_data": {"current_price": {"aed": 2.2347381892862072e-08, "ars": 6.247320562309658e-07, "aud": 8.370416269865478e-09, "bch": 1.3595131048526574e-11, "bdt": 5.216488766595787e-07, "bhd": 2.2935839468181926e-09, "bmd": 6.084261205979777e-09, "bnb": 1.1440614399544977e-11, "brl": 3.3949587356030136e-08, "btc": 1.2841865509987127e-13, "cad": 7.695951578137785e-09, "chf": 5.549405971884509e-09, "clp": 5.183790547494769e-06, "cny": 3.867095579908691e-08, "czk": 1.3316044496713304e-07, "dkk": 3.979190183089301e-08, "dot": 2.0439555277621543e-10, "eos": 1.8663024938059e-09, "eth": 1.5865238345582963e-12, "eur": 5.350706169419614e-09, "gbp": 4.499712723061644e-09, "hkd": 4.743574779606276e-08, "huf": 1.9758031726419657e-06, "idr": 8.666325071717247e-05, "ils": 1.8925033638588078e-08, "inr": 4.5334158795860407e-07, "jpy": 7.005692144319382e-07, "krw": 7.233487893858626e-06, "kwd": 1.840537688898528e-09, "lkr": 1.2346283107798836e-06, "ltc": 4.014275124156738e-11, "mmk": 1.0820328135027354e-05, "mxn": 1.246531571571785e-07, "myr": 2.539813997824199e-08, "ngn": 2.503255406251905e-06, "nok": 5.352981683110661e-08, "nzd": 8.894009536468474e-09, "php": 3.1067236753422794e-07, "pkr": 1.0782790184265787e-06, "pln": 2.45618765282637e-08, "rub": 4.5627892324658253e-07, "sar": 2.284944295905705e-08, "sek": 5.5049117696851815e-08, "sgd": 8.204291601897399e-09, "thb": 2.0195170014147653e-07, "try": 8.185038565737202e-08, "twd": 1.6863969468574322e-07, "uah": 1.6602750840087308e-07, "usd": 6.084261205979777e-09, "vef": 6.092170745547547e-10, "vnd": 0.00013905315551141897, "xag": 2.6118893729224767e-10, "xau": 3.3274824535503356e-12, "xdr": 4.3393863560228624e-09, "xlm": 2.084143861824304e-08, "xrp": 7.071687286373838e-09, "yfi": 1.5560781968509684e-13, "zar": 9.713462172734648e-08, "bits": 1.2841865509987127e-07, "link": 2.7839267808028963e-10, "sats": 1.2841865509987129e-05}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 643341.6058606675, "ars": 17984931.130417634, "aud": 240969.48226841452, "bch": 391.3797814248186, "bdt": 15017348.681582222, "bhd": 66028.22588329995, "bmd": 175155.12078759598, "bnb": 329.355057121338, "brl": 977348.5839480681, "btc": 3.696945986357665, "cad": 221552.83650862606, "chf": 159757.58442940007, "clp": 149232162.91103172, "cny": 1113268.4322138827, "czk": 3833453.731313346, "dkk": 1145538.486202427, "dot": 5884.186513849757, "eos": 53727.54845033366, "eth": 45.673215607729446, "eur": 154037.36849471854, "gbp": 129538.77206039932, "hkd": 1365591.2942566273, "huf": 56879879.35437253, "idr": 2494881733.922472, "ils": 544818.2516586107, "inr": 13050902.633648992, "jpy": 20168148.80552734, "krw": 208239324.85331106, "kwd": 52985.82527921402, "lkr": 35542765.765858024, "ltc": 1155.6388202979665, "mmk": 311498112.4724642, "mxn": 3588543.959447712, "myr": 731167.5362157408, "ngn": 72064296.4199707, "nok": 1541028.765098934, "nzd": 256042.80649803256, "php": 8943708.072122993, "pkr": 31041746.12516884, "pln": 707092.9903288486, "rub": 13135463.322242355, "sar": 657795.0561178166, "sek": 1584766.7503108045, "sgd": 236187.04685042985, "thb": 5813832.318174517, "try": 2356327.859862097, "twd": 4854838.589644017, "uah": 4779638.36586065, "usd": 175155.12078759598, "vef": 17538.282244461974, "vnd": 4003094447.286607, "xag": 7519.167621344811, "xau": 95.79233555873611, "xdr": 124923.25947252514, "xlm": 599988.16207592, "xrp": 203581.371490025, "yfi": 4.479673953782612, "zar": 2796333.9878618894, "bits": 3696945.986357665, "link": 8014.432895749271, "sats": 369694598.6357665}}, "community_data": {"facebook_likes": null, "twitter_followers": 2985, "reddit_average_posts_48h": 0.444, "reddit_average_comments_48h": 3.889, "reddit_subscribers": 213, "reddit_accounts_active_48h": "3.6"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 427709, "bing_matches": null}}, "RNT_20220108": {"id": "oneroot-network", "symbol": "rnt", "name": "OneRoot Network", "localization": {"en": "OneRoot Network", "de": "OneRoot Network", "es": "OneRoot Network", "fr": "OneRoot Network", "it": "OneRoot Network", "pl": "OneRoot Network", "ro": "OneRoot Network", "hu": "OneRoot Network", "nl": "OneRoot Network", "pt": "OneRoot Network", "sv": "OneRoot Network", "vi": "OneRoot Network", "tr": "OneRoot Network", "ru": "OneRoot Network", "ja": "OneRoot Network", "zh": "OneRoot Network", "zh-tw": "OneRoot Network", "ko": "OneRoot Network", "ar": "OneRoot Network", "th": "OneRoot Network", "id": "OneRoot Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2520/thumb/OneRootNetwork.PNG?1558014608", "small": "https://assets.coingecko.com/coins/images/2520/small/OneRootNetwork.PNG?1558014608"}, "market_data": {"current_price": {"aed": 0.008432471557264622, "ars": 0.23669006050801494, "aud": 0.0031709582861817326, "bch": 5.373084033927068e-06, "bdt": 0.19689076281317444, "bhd": 0.0008655435498568711, "bmd": 0.002295804498693335, "bnb": 4.509836919676076e-06, "brl": 0.013034432337135875, "btc": 4.9906062707757064e-08, "cad": 0.0029169803219047863, "chf": 0.0021036938740471717, "clp": 1.9510290643729964, "cny": 0.014590755910995625, "czk": 0.050226577710388395, "dkk": 0.015136468640334997, "dot": 7.934064273682237e-05, "eos": 0.0007197406655420577, "eth": 6.038042658713337e-07, "eur": 0.0020348633593718487, "gbp": 0.001696838288202239, "hkd": 0.01789258653262534, "huf": 0.7385832652746316, "idr": 32.93664445027894, "ils": 0.007084439438157853, "inr": 0.17111815563882757, "jpy": 0.2666591936350021, "krw": 2.749221651425965, "kwd": 0.0006951397567458556, "lkr": 0.46558811922298343, "ltc": 1.5623300654103023e-05, "mmk": 4.080364505665337, "mxn": 0.04713860586942084, "myr": 0.009610237631530297, "ngn": 0.9475703487906874, "nok": 0.020355142199472296, "nzd": 0.0033681862590554806, "php": 0.11727555957374951, "pkr": 0.4056469205379229, "pln": 0.0092867725524914, "rub": 0.17287086462530993, "sar": 0.008622132558510695, "sek": 0.020893118067651067, "sgd": 0.003112238494518656, "thb": 0.07633862417147595, "try": 0.03081336965966245, "twd": 0.06320464575127684, "uah": 0.06263447581661288, "usd": 0.002295804498693335, "vef": 0.0002298789044541635, "vnd": 52.24267899548562, "xag": 9.960329451145037e-05, "xau": 1.266044348849425e-06, "xdr": 0.0016409056032005691, "xlm": 0.008168738062572645, "xrp": 0.0027783977501405484, "yfi": 6.300283578879239e-08, "zar": 0.03680785984143415, "bits": 0.04990606270775706, "link": 9.64827225546749e-05, "sats": 4.990606270775706}, "market_cap": {"aed": 2415338.495264861, "ars": 67800846.56109054, "aud": 908152.149584306, "bch": 1526.1553301601066, "bdt": 56395897.66340618, "bhd": 247897.37542321323, "bmd": 657592.8383514463, "bnb": 1283.770287761881, "brl": 3738744.740039987, "btc": 14.196869977644083, "cad": 835459.8644544223, "chf": 602486.558497595, "clp": 557671606.5639435, "cny": 4178870.9691557726, "czk": 14367811.684424553, "dkk": 4334325.916142055, "dot": 22362.702975010125, "eos": 204909.89705395594, "eth": 172.16417077777336, "eur": 582669.3407210356, "gbp": 485990.0416266066, "hkd": 5125209.534863149, "huf": 211348036.67121994, "idr": 9435803258.868654, "ils": 2029213.1324416536, "inr": 49028576.684313685, "jpy": 76365598.72491516, "krw": 787540677.1376776, "kwd": 199069.79198994086, "lkr": 133359531.70089605, "ltc": 4449.150164368443, "mmk": 1168748679.7399912, "mxn": 13501846.745791871, "myr": 2752683.6213391493, "ngn": 271414868.1011752, "nok": 5826466.537681126, "nzd": 965500.8210169354, "php": 33589842.84058471, "pkr": 116196654.53670046, "pln": 2659072.6504284753, "rub": 49517201.04285076, "sar": 2469448.52196861, "sek": 5979875.055754462, "sgd": 891557.7943085069, "thb": 21869236.22863487, "try": 8828578.410571178, "twd": 18108791.58252207, "uah": 17940544.482051324, "usd": 657592.8383514463, "vef": 65844.77090413033, "vnd": 14970100965.07063, "xag": 28517.243363161022, "xau": 362.294198361346, "xdr": 470008.56287615106, "xlm": 2321023.0938539742, "xrp": 793899.7569230491, "yfi": 17.876969020391083, "zar": 10531799.099699836, "bits": 14196869.977644086, "link": 27334.524682301726, "sats": 1419686997.7644083}, "total_volume": {"aed": 180195.86365924886, "ars": 5057896.677523675, "aud": 67761.10220184617, "bch": 114.81894856474109, "bdt": 4207414.256984124, "bhd": 18496.044302311846, "bmd": 49059.694020365154, "bnb": 96.3719774427571, "brl": 278536.46186031646, "btc": 1.0664567334009578, "cad": 62333.77543145526, "chf": 44954.42788443494, "clp": 41692090.4970158, "cny": 311793.97937702877, "czk": 1073305.9089152403, "dkk": 323455.4686456689, "dot": 1695.4525780670788, "eos": 15380.341333769613, "eth": 12.902863701460017, "eur": 43483.56919801041, "gbp": 36260.21608922797, "hkd": 382351.72943650524, "huf": 15782994.163291648, "idr": 703832447.2784665, "ils": 151389.3850019229, "inr": 3656672.143358961, "jpy": 5698315.538146343, "krw": 58748893.07425173, "kwd": 14854.637573344235, "lkr": 9949283.870467734, "ltc": 333.85871929195474, "mmk": 87194460.26586057, "mxn": 1007318.1674731462, "myr": 205363.87916924845, "ngn": 20248898.10996552, "nok": 434974.7762126521, "nzd": 71975.72239574773, "php": 2506094.5180784697, "pkr": 8668383.485275226, "pln": 198451.66263994318, "rub": 3694126.276161867, "sar": 184248.7831016597, "sek": 446470.9343124435, "sgd": 66506.30240788734, "thb": 1631301.5964206997, "try": 658459.5892637327, "twd": 1350637.9062276625, "uah": 1338453.7840386236, "usd": 49059.694020365154, "vef": 4912.3471622591605, "vnd": 1116388546.0549572, "xag": 2128.450900298019, "xau": 27.054458864470533, "xdr": 35064.97476380973, "xlm": 174560.0682072084, "xrp": 59372.36535878645, "yfi": 1.346325372205108, "zar": 786557.541111629, "bits": 1066456.733400958, "link": 2061.766517784146, "sats": 106645673.34009579}}, "community_data": {"facebook_likes": null, "twitter_followers": 3137, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3043758, "bing_matches": null}}, "FIO_20210204": {"id": "fio-protocol", "symbol": "fio", "name": "FIO Protocol", "localization": {"en": "FIO Protocol", "de": "FIO Protocol", "es": "FIO Protocol", "fr": "FIO Protocol", "it": "FIO Protocol", "pl": "FIO Protocol", "ro": "FIO Protocol", "hu": "FIO Protocol", "nl": "FIO Protocol", "pt": "FIO Protocol", "sv": "FIO Protocol", "vi": "FIO Protocol", "tr": "FIO Protocol", "ru": "FIO Protocol", "ja": "FIO Protocol", "zh": "FIO Protocol", "zh-tw": "FIO Protocol", "ko": "FIO Protocol", "ar": "FIO Protocol", "th": "FIO Protocol", "id": "FIO Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11821/thumb/fio200x200.png?1594681349", "small": "https://assets.coingecko.com/coins/images/11821/small/fio200x200.png?1594681349"}, "market_data": {"current_price": {"aed": 0.27318656199141167, "ars": 6.4828391743566565, "aud": 0.09758305012014862, "bch": 0.0001856923471832916, "bdt": 6.2937018749025695, "bhd": 0.0280396504959775, "bmd": 0.07437454707876665, "bnb": 0.0016806844607831608, "brl": 0.40626702156676747, "btc": 2.243442633004255e-06, "cad": 0.09517874413673344, "chf": 0.06630022312425446, "clp": 54.65040484730295, "cny": 0.4780647137128956, "czk": 1.5954138387285604, "dkk": 0.4562469403273402, "dot": 0.004609175220257336, "eos": 0.0254904222707945, "eth": 5.642869717133602e-05, "eur": 0.06134271331417221, "gbp": 0.05429393998932915, "hkd": 0.5766392509201509, "huf": 21.91297280581702, "idr": 1043.6078090038131, "ils": 0.24376094181062183, "inr": 5.422685637910051, "jpy": 7.787907573711807, "krw": 83.18419120662426, "kwd": 0.022518827866320666, "lkr": 14.169650021220672, "ltc": 0.0005727548938863539, "mmk": 98.83082282279452, "mxn": 1.5248604327550594, "myr": 0.30065910656591416, "ngn": 28.918773335477937, "nok": 0.639741889141848, "nzd": 0.10381072844524204, "php": 3.574902821666534, "pkr": 11.924981565655257, "pln": 0.27727470772069057, "rub": 5.646166053848703, "sar": 0.2788705623773608, "sek": 0.6232512670653568, "sgd": 0.09893584875696428, "thb": 2.2237989576551223, "try": 0.5416408203012963, "twd": 2.0836773109587257, "uah": 2.089656652671123, "usd": 0.07437454707876665, "vef": 0.007447123398996901, "vnd": 1714.4442418850272, "xag": 0.0025939343036292, "xau": 4.004251240173713e-05, "xdr": 0.051635198680357465, "xlm": 0.2432938390684479, "xrp": 0.15111173667371267, "yfi": 2.459661700831545e-06, "zar": 1.12952624648523, "bits": 2.243442633004255, "link": 0.0032902086621335053, "sats": 224.34426330042552}, "market_cap": {"aed": 58919911.21538778, "ars": 1398126794.5125363, "aud": 21042693.670030907, "bch": 40127.30726496747, "bdt": 1357403354.624146, "bhd": 6047492.620758687, "bmd": 16040839.192900632, "bnb": 363649.85158315406, "brl": 87622233.92674239, "btc": 485.22645832663056, "cad": 20530140.735300165, "chf": 14300199.609561436, "clp": 11786806248.85837, "cny": 103107306.16412683, "czk": 344100061.94650835, "dkk": 98397699.73625197, "dot": 995841.5324292571, "eos": 5515680.233193438, "eth": 12213.600899423716, "eur": 13229650.042666418, "gbp": 11710357.999350015, "hkd": 124368476.06396486, "huf": 4725470817.8366, "idr": 225082257759.73248, "ils": 52573497.55626976, "inr": 1169545654.096502, "jpy": 1679540026.8534703, "krw": 17940872071.78305, "kwd": 4856781.12746967, "lkr": 3056059987.4223986, "ltc": 123632.80504781703, "mmk": 21315482224.363014, "mxn": 329022619.5146941, "myr": 64845092.43730104, "ngn": 6237098724.635836, "nok": 137965589.65086257, "nzd": 22387782.199712414, "php": 771105212.1974638, "pkr": 2571937836.0771394, "pln": 59802462.14694222, "rub": 1216890142.85183, "sar": 60145816.30986602, "sek": 134422232.43650746, "sgd": 21334685.06585928, "thb": 479941908.651587, "try": 116947342.21976158, "twd": 449400150.82830435, "uah": 450689754.09521765, "usd": 16040839.192900632, "vef": 1606169.2283851432, "vnd": 369765268757.1598, "xag": 558059.0310287009, "xau": 8640.879256431721, "xdr": 11136496.977224005, "xlm": 52460626.693841554, "xrp": 32527229.955943517, "yfi": 531.1880236628423, "zar": 243512771.61958587, "bits": 485226458.32663053, "link": 711748.8626851804, "sats": 48522645832.663055}, "total_volume": {"aed": 6411845.285795316, "ars": 152155953.41023654, "aud": 2290330.1514006136, "bch": 4358.305885239282, "bdt": 147716792.51947913, "bhd": 658106.6782253868, "bmd": 1745613.2746571319, "bnb": 39446.6281878123, "brl": 9535319.995311022, "btc": 52.654885238582054, "cad": 2233899.711070775, "chf": 1556104.2607205284, "clp": 1282676344.4462578, "cny": 11220453.006841097, "czk": 37445277.7844392, "dkk": 10708377.352720447, "dot": 108179.98583817849, "eos": 598274.8297665674, "eth": 1324.4138851638568, "eur": 1439748.6622849833, "gbp": 1274309.9097926277, "hkd": 13534053.928806156, "huf": 514310039.11223084, "idr": 24494073799.247272, "ils": 5721209.104196705, "inr": 127273541.89872852, "jpy": 182786657.21589744, "krw": 1952380674.7773254, "kwd": 528529.8048475881, "lkr": 332569812.4667987, "ltc": 13442.885841496358, "mmk": 2319616092.344721, "mxn": 35789348.88299412, "myr": 7056641.662801456, "ngn": 678740195.4562345, "nok": 15015109.038009353, "nzd": 2436497.333340753, "php": 83905019.4752974, "pkr": 279886156.4696819, "pln": 6507796.410663403, "rub": 132518755.42957878, "sar": 6545252.034697747, "sek": 14628064.680299304, "sgd": 2322081.111253351, "thb": 52193836.91224824, "try": 12712620.690150764, "twd": 48905101.50279419, "uah": 49045440.082010254, "usd": 1745613.2746571319, "vef": 174788.25719141855, "vnd": 40238989611.92323, "xag": 60881.12575943801, "xau": 939.8207309426522, "xdr": 1211907.726450186, "xlm": 5710245.934948709, "xrp": 3546679.1241735667, "yfi": 57.72967076478612, "zar": 26510628.802217882, "bits": 52654885.23858206, "link": 77223.08427545146, "sats": 5265488523.858206}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 166, "reddit_accounts_active_48h": "11.9166666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 730561, "bing_matches": null}}, "RDN_20210222": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 1.9587359428905307, "ars": 47.49257433303205, "aud": 0.6863659878548242, "bch": 0.0007567074568301574, "bdt": 45.23196738330096, "bhd": 0.20102426141101157, "bmd": 0.5332505561609839, "bnb": 0.0027425974232221356, "brl": 2.8942173935637365, "btc": 1.0313123873322017e-05, "cad": 0.676170237221026, "chf": 0.4777930315707975, "clp": 379.14111876793214, "cny": 3.4598362584837017, "czk": 11.422892942912961, "dkk": 3.2794397283366576, "dot": 0.017106960728929466, "eos": 0.11017714161919501, "eth": 0.0002751251870233527, "eur": 0.4409582161534219, "gbp": 0.3817700706723331, "hkd": 4.1344248745551475, "huf": 158.2085077557336, "idr": 7472.686843572775, "ils": 1.7462462612715008, "inr": 38.71695311737743, "jpy": 56.344320265081926, "krw": 590.4192924509025, "kwd": 0.1614058780904754, "lkr": 104.94666152756031, "ltc": 0.002345634178324343, "mmk": 752.0970547364426, "mxn": 10.830445709261927, "myr": 2.1553987480027024, "ngn": 211.24036728503907, "nok": 4.514454948662732, "nzd": 0.7386458723808471, "php": 25.83368633684766, "pkr": 84.7318139044579, "pln": 1.980140620214831, "rub": 39.397457615119016, "sar": 1.9997503761670967, "sek": 4.430965508836269, "sgd": 0.7073355327252994, "thb": 16.002049314556864, "try": 3.7167990364865475, "twd": 14.86473252837679, "uah": 14.848340939530921, "usd": 0.5332505561609839, "vef": 0.0533943781883993, "vnd": 12254.119093537614, "xag": 0.01978629921389224, "xau": 0.0003005133509245226, "xdr": 0.37011961252132847, "xlm": 1.0710721248644262, "xrp": 0.998297150911606, "yfi": 1.2034788720888853e-05, "zar": 7.780023763532529, "bits": 10.313123873322017, "link": 0.016406638330953266, "sats": 1031.3123873322018}, "market_cap": {"aed": 130627274.58585082, "ars": 3166997674.2516527, "aud": 45777228.08244575, "bch": 50632.13651944745, "bdt": 3016500843.2517037, "bhd": 13406223.27836745, "bmd": 35562254.869283095, "bnb": 183368.5742986007, "brl": 193003931.93588644, "btc": 688.0239870277651, "cad": 45092299.053663336, "chf": 31860010.7638615, "clp": 25284760367.07989, "cny": 230735022.04288256, "czk": 761857298.5156261, "dkk": 218676857.15984538, "dot": 1144313.2824891347, "eos": 7350927.100274961, "eth": 18408.02632245612, "eur": 29406464.1136651, "gbp": 25456706.714353263, "hkd": 275701715.2123475, "huf": 10551278629.508482, "idr": 498315481982.3145, "ils": 116456427.26553904, "inr": 2582017251.8357515, "jpy": 3757958304.83534, "krw": 39374862271.907715, "kwd": 10764089.990599208, "lkr": 6998848630.917865, "ltc": 156884.97687333977, "mmk": 50157035633.545654, "mxn": 722381417.4979763, "myr": 143742634.18164212, "ngn": 14087531073.861023, "nok": 300989607.9028364, "nzd": 49257919.340031646, "php": 1722638186.350421, "pkr": 5650728961.822818, "pln": 132031948.0909326, "rub": 2627399845.575911, "sar": 133362509.85686673, "sek": 295472372.9956516, "sgd": 47177242.93213967, "thb": 1067313347.8187696, "try": 247904478.69377244, "twd": 992510491.8100518, "uah": 990229599.9072508, "usd": 35562254.869283095, "vef": 3560848.580061316, "vnd": 817034244720.1674, "xag": 1319075.513233999, "xau": 20032.929412964586, "xdr": 24683120.984181773, "xlm": 71518320.50031216, "xrp": 66551085.024888895, "yfi": 805.5880516613225, "zar": 518308200.30020404, "bits": 688023987.0277652, "link": 1095636.3623251128, "sats": 68802398702.7765}, "total_volume": {"aed": 4519500.972051809, "ars": 109582272.50715081, "aud": 1583690.6248401566, "bch": 1745.993429648256, "bdt": 104366247.68061925, "bhd": 463834.519477054, "bmd": 1230398.8271947615, "bnb": 6328.148398557245, "brl": 6677989.63459956, "btc": 23.79604741493964, "cad": 1560165.3992641922, "chf": 1102438.579565333, "clp": 874813504.615535, "cny": 7983073.670605065, "czk": 26356679.64664705, "dkk": 7566834.668960368, "dot": 39471.847098059705, "eos": 254217.87987972336, "eth": 634.8117288096706, "eur": 1017447.5501780288, "gbp": 880879.4323535453, "hkd": 9539589.706947781, "huf": 365043336.8439317, "idr": 17242148221.1262, "ils": 4029211.647391238, "inr": 89333790.9502235, "jpy": 130006400.879053, "krw": 1362307449.2686357, "kwd": 372420.8082117927, "lkr": 242149300.6798359, "ltc": 5412.212905722578, "mmk": 1735355591.087258, "mxn": 24989693.015246425, "myr": 4973272.059521238, "ngn": 487406711.8370489, "nok": 10416454.347928204, "nzd": 1704318.9258583311, "php": 59607509.085051656, "pkr": 195506452.3601854, "pln": 4568889.180975403, "rub": 90903957.03115533, "sar": 4614135.867446667, "sek": 10223814.494750787, "sgd": 1632074.8283207647, "thb": 36922423.20587395, "try": 8575978.257453656, "twd": 34298228.587233126, "uah": 34260407.357683904, "usd": 1230398.8271947615, "vef": 123199.83456701144, "vnd": 28274614225.51589, "xag": 45654.034610979536, "xau": 693.3912590656081, "xdr": 853997.6787769955, "xlm": 2471344.6072362736, "xrp": 2303426.840313875, "yfi": 27.768540991916193, "zar": 17951283.882595576, "bits": 23796047.41493964, "link": 37855.95406771469, "sats": 2379604741.4939637}}, "community_data": {"facebook_likes": null, "twitter_followers": 27282, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4397, "reddit_accounts_active_48h": "281.583333333333"}, "developer_data": {"forks": 377, "stars": 1781, "subscribers": 190, "total_issues": 2517, "closed_issues": 2179, "pull_requests_merged": 3762, "pull_request_contributors": 76, "code_additions_deletions_4_weeks": {"additions": 5221, "deletions": -1329}, "commit_count_4_weeks": 63}, "public_interest_stats": {"alexa_rank": 934913, "bing_matches": null}}, "BRD_20210224": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.764366470528406, "ars": 18.562794457990783, "aud": 0.2644536098696477, "bch": 0.00030400515971586433, "bdt": 17.647737646250963, "bhd": 0.07847746869572296, "bmd": 0.20809846465612292, "bnb": 0.0008099577517996819, "brl": 1.1201249465536438, "btc": 3.70049459881827e-06, "cad": 0.26252661808693195, "chf": 0.18650720845572705, "clp": 147.4689769785616, "cny": 1.349893120531339, "czk": 4.446179771226554, "dkk": 1.2770170382087653, "dot": 0.005282718971305261, "eos": 0.04264427266723786, "eth": 0.00010779989045095238, "eur": 0.171723269231162, "gbp": 0.14849864818168015, "hkd": 1.6134071658330627, "huf": 61.55448535295793, "idr": 2927.2815636093965, "ils": 0.680690077890178, "inr": 15.101809629327173, "jpy": 21.95886213821108, "krw": 230.16522584825833, "kwd": 0.06297434117730659, "lkr": 40.75038511025021, "ltc": 0.0009139636621247474, "mmk": 293.90274462956484, "mxn": 4.250872078700524, "myr": 0.84050969874608, "ngn": 85.8255542956803, "nok": 1.761303785156494, "nzd": 0.28481271506081474, "php": 10.0913138522062, "pkr": 33.16311071882015, "pln": 0.7701932275387748, "rub": 15.406569830816055, "sar": 0.7803698667558534, "sek": 1.7227015199627824, "sgd": 0.2756264164370349, "thb": 6.240249283938554, "try": 1.4491352783258442, "twd": 5.811961209534402, "uah": 5.804965355349596, "usd": 0.20809846465612292, "vef": 0.0208368992660176, "vnd": 4798.289552821767, "xag": 0.0076308999454620385, "xau": 0.0001166787281480416, "xdr": 0.144397027443308, "xlm": 0.42212510548696436, "xrp": 0.40072553197217886, "yfi": 4.8591940356088495e-06, "zar": 3.0492678430984923, "bits": 3.70049459881827, "link": 0.006076623318543434, "sats": 370.04945988182703}, "market_cap": {"aed": 60234887.78707956, "ars": 1462816442.509231, "aud": 20839916.6232062, "bch": 24491.51751155478, "bdt": 1390706601.8776188, "bhd": 6184313.026489912, "bmd": 16398924.011619505, "bnb": 64655.58550479569, "brl": 88269963.51177612, "btc": 293.6797050585075, "cad": 20688062.586858604, "chf": 14697453.650793927, "clp": 11621097500.834166, "cny": 106376540.2785735, "czk": 350375310.70126, "dkk": 100633637.08970432, "dot": 424415.7046849243, "eos": 3433464.430653501, "eth": 8608.241359393143, "eur": 13532424.892236462, "gbp": 11702239.376843669, "hkd": 127142415.7598673, "huf": 4850719728.016983, "idr": 230680548275.88968, "ils": 53640880.442007534, "inr": 1190078114.9852338, "jpy": 1730439060.092109, "krw": 18137865913.81165, "kwd": 4962609.586548289, "lkr": 3211280150.3437643, "ltc": 72878.47599270415, "mmk": 23160616701.094135, "mxn": 334984346.5540132, "myr": 66235254.082931355, "ngn": 6763369184.274156, "nok": 138797213.04954523, "nzd": 22444288.954958994, "php": 795232628.5212883, "pkr": 2613375036.5027246, "pln": 60694057.6594049, "rub": 1214094339.200251, "sar": 61496014.24034515, "sek": 135755212.6453899, "sgd": 21720374.853390064, "thb": 491754583.53320575, "try": 114197187.13971472, "twd": 458003908.8281198, "uah": 457452609.8006986, "usd": 16398924.011619505, "vef": 1642024.261283462, "vnd": 378122855891.7971, "xag": 601342.9678719245, "xau": 9194.712704074938, "xdr": 11379016.584574642, "xlm": 33734371.56598287, "xrp": 32197944.73196271, "yfi": 391.7376587736038, "zar": 240293515.53688073, "bits": 293679705.05850744, "link": 483798.9575820127, "sats": 29367970505.850754}, "total_volume": {"aed": 4375682.941266576, "ars": 106264345.94379485, "aud": 1513887.898121743, "bch": 1740.3042162565573, "bdt": 101026022.91969392, "bhd": 449251.1567236455, "bmd": 1191277.9236248864, "bnb": 4636.6742319903815, "brl": 6412253.558602121, "btc": 21.183806085979356, "cad": 1502856.664548976, "chf": 1067676.8826591873, "clp": 844199100.5767765, "cny": 7727581.634969919, "czk": 25452546.296688393, "dkk": 7310396.106116488, "dot": 30241.388362137357, "eos": 244120.88134080273, "eth": 617.1099333943225, "eur": 983044.925131104, "gbp": 850093.5437428727, "hkd": 9236090.913266486, "huf": 352374053.4186236, "idr": 16757480208.825792, "ils": 3896670.088177004, "inr": 86451634.55641985, "jpy": 125705433.41778351, "krw": 1317601034.6460702, "kwd": 360502.14269151585, "lkr": 233279155.81344014, "ltc": 5232.0651931947405, "mmk": 1682472054.5080757, "mxn": 24334490.270639136, "myr": 4811571.533520914, "ngn": 491315917.6078751, "nok": 10082738.08997632, "nzd": 1630435.3825016594, "php": 57768611.75967136, "pkr": 189845137.70124003, "pln": 4409038.723128058, "rub": 88196261.07556844, "sar": 4467295.787427086, "sek": 9861756.035143899, "sgd": 1577847.6098411628, "thb": 35722854.669573255, "try": 8295702.076746628, "twd": 33271082.001127157, "uah": 33231033.619890757, "usd": 1191277.9236248864, "vef": 119282.65849255996, "vnd": 27468229642.550198, "xag": 43683.75642483052, "xau": 667.9376189972379, "xdr": 826613.4558682264, "xlm": 2416492.212018111, "xrp": 2293988.475408242, "yfi": 27.816882699236306, "zar": 17455801.37126508, "bits": 21183806.085979354, "link": 34786.16347087017, "sats": 2118380608.5979354}}, "community_data": {"facebook_likes": null, "twitter_followers": 566, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 291, "stars": 238, "subscribers": 32, "total_issues": 45, "closed_issues": 31, "pull_requests_merged": 394, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "LUN_20200318": {"id": "lunyr", "symbol": "lun", "name": "Lunyr", "localization": {"en": "Lunyr", "de": "Lunyr", "es": "Lunyr", "fr": "Lunyr", "it": "Lunyr", "pl": "Lunyr", "ro": "Lunyr", "hu": "Lunyr", "nl": "Lunyr", "pt": "Lunyr", "sv": "Lunyr", "vi": "Lunyr", "tr": "Lunyr", "ru": "Lunyr", "ja": "Lunyr", "zh": "Lunyr", "zh-tw": "Lunyr", "ko": "\ub8e8\ub108", "ar": "Lunyr", "th": "Lunyr", "id": "Lunyr"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/735/thumb/lunyr.png?1547976492", "small": "https://assets.coingecko.com/coins/images/735/small/lunyr.png?1547976492"}, "market_data": {"current_price": {"aed": 1.747223453445353, "ars": 29.819124878814822, "aud": 0.7696065024815006, "bch": 0.0028487747221946193, "bdt": 40.3308902088627, "bhd": 0.17958774188192664, "bmd": 0.47569383431673057, "bnb": 0.0469252813306047, "brl": 2.311681757245582, "btc": 9.181326518428023e-05, "cad": 0.6612382143919717, "chf": 0.4525099439136367, "clp": 399.4591837172704, "cny": 3.333757529658514, "czk": 11.275085538508923, "dkk": 3.2008962417338496, "eos": 0.24387372531418366, "eth": 0.00387644511048301, "eur": 0.4268419803077402, "gbp": 0.38768857219279823, "hkd": 3.699161748488913, "huf": 145.24359843192738, "idr": 6972.201717135239, "ils": 1.7439649506802797, "inr": 35.181840292231115, "jpy": 51.34398816728727, "krw": 576.4457884250147, "kwd": 0.1465864821262033, "lkr": 87.48584917207906, "ltc": 0.013862555861018642, "mmk": 663.9345293399123, "mxn": 10.424592056440137, "myr": 2.0352560701241327, "ngn": 174.47186447483114, "nok": 4.795395811202647, "nzd": 0.7844557612135313, "php": 24.191687273682785, "pkr": 74.64274356138856, "pln": 1.8744330229245016, "rub": 34.54636089896734, "sar": 1.7851714533841336, "sek": 4.648582423117469, "sgd": 0.673154344941606, "thb": 15.084162055742691, "try": 3.0121409282769678, "twd": 14.321952116690946, "uah": 12.432519040088957, "usd": 0.47569383431673057, "vef": 118204.03931794487, "vnd": 11051.79466620861, "xag": 0.03226145594765544, "xau": 0.0003110561982597105, "xdr": 0.34406697189212, "xlm": 12.765491646717928, "xrp": 3.223008626895527, "zar": 7.659745800564922, "bits": 91.81326518428023, "link": 0.22276047425224846, "sats": 9181.326518428023}, "market_cap": {"aed": 4805359.064317738, "ars": 82011033.98874247, "aud": 2116635.7258797004, "bch": 7856.911385026636, "bdt": 110921364.0962741, "bhd": 493917.1241039313, "bmd": 1308292.6937973655, "bnb": 129405.737983281, "brl": 6357779.174777675, "btc": 252.9851655442515, "cad": 1818592.2590130288, "chf": 1244530.4327797643, "clp": 1098625825.744035, "cny": 9168776.856670696, "czk": 31009676.745462652, "dkk": 8803370.707293103, "eos": 670989.949085763, "eth": 10666.731027970369, "eur": 1173936.2673151528, "gbp": 1066253.3122740793, "hkd": 10173741.889411157, "huf": 399461008.19714904, "idr": 19175528266.64557, "ils": 4796397.2593652215, "inr": 96760019.34055945, "jpy": 141210500.8385596, "krw": 1585389086.3436482, "kwd": 403154.3184717395, "lkr": 240610848.88117445, "ltc": 38173.81754131624, "mmk": 1826007888.3361092, "mxn": 28670578.92992958, "myr": 5597530.2904120255, "ngn": 479847013.1392191, "nok": 13188695.860803705, "nzd": 2157475.390609279, "php": 66533987.67770565, "pkr": 205288673.0950014, "pln": 5155221.388200315, "rub": 95012271.13091546, "sar": 4909726.8056727275, "sek": 12784917.48671702, "sgd": 1851364.9909926539, "thb": 41485715.36128799, "try": 8284240.166394308, "twd": 39389422.27850415, "uah": 34192946.49679046, "usd": 1308292.6937973655, "vef": 325094566842.8347, "vnd": 30395563642.143528, "xag": 88728.13575187174, "xau": 855.4925924740975, "xdr": 946281.5639601656, "xlm": 35180824.3616901, "xrp": 8883459.53412611, "zar": 21066469.11162558, "bits": 252985165.5442515, "link": 613801.2338664747, "sats": 25298516554.425148}, "total_volume": {"aed": 6830505.720992671, "ars": 116573356.81827255, "aud": 3008660.1732292194, "bch": 11136.853731787574, "bdt": 157667512.85369006, "bhd": 702071.1036849765, "bmd": 1859653.0686067694, "bnb": 183447.28715485436, "brl": 9037170.05220145, "btc": 358.93006808465316, "cad": 2585010.7480168417, "chf": 1769019.1570020837, "clp": 1561625237.0602784, "cny": 13032820.635409974, "czk": 44078240.89334529, "dkk": 12513419.533348097, "eos": 953387.4288795576, "eth": 15154.375619246692, "eur": 1668674.137073131, "gbp": 1515609.812302243, "hkd": 14461313.140060274, "huf": 567807871.4377052, "idr": 27256767657.793278, "ils": 6817767.0974727, "inr": 137538081.3010882, "jpy": 200721552.94371715, "krw": 2253527588.5376854, "kwd": 573057.6720503812, "lkr": 342012689.960997, "ltc": 54193.56461221509, "mmk": 2595551583.329685, "mxn": 40753365.312329896, "myr": 7956525.654034066, "ngn": 682071355.0391139, "nok": 18746874.33839923, "nzd": 3066711.1034188466, "php": 94573740.98173644, "pkr": 291804511.85066444, "pln": 7327812.284946436, "rub": 135053770.76673624, "sar": 6978857.684887699, "sek": 18172929.611835103, "sgd": 2631595.057385442, "thb": 58969249.190743834, "try": 11775509.195724918, "twd": 55989504.76307824, "uah": 48603052.037919514, "usd": 1859653.0686067694, "vef": 462100806404.3352, "vnd": 43205319013.95705, "xag": 126121.28058576662, "xau": 1216.0271415619682, "xdr": 1345077.7662579347, "xlm": 49904758.061856054, "xrp": 12599864.557339618, "zar": 29944617.220504057, "bits": 358930068.08465314, "link": 870848.3684732161, "sats": 35893006808.46532}}, "community_data": {"facebook_likes": null, "twitter_followers": 29685, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2149, "reddit_accounts_active_48h": "22.2307692307692"}, "developer_data": {"forks": 19, "stars": 52, "subscribers": 19, "total_issues": 4, "closed_issues": 4, "pull_requests_merged": 2, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1955482, "bing_matches": null}}, "APPC_20200327": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.08452879696680275, "ars": 1.4655017937372565, "aud": 0.039249556468095664, "bch": 0.00010475836347646223, "bdt": 1.9376410803689763, "bhd": 0.008691264159214066, "bmd": 0.0230123045210723, "bnb": 0.001899446375716559, "brl": 0.11835458338232696, "btc": 3.5686132069401408e-06, "cad": 0.03332722483807515, "chf": 0.022599624864095908, "clp": 19.80669080044688, "cny": 0.1632101673548011, "czk": 0.5949117722360061, "dkk": 0.15971604807323495, "eos": 0.010093336073505075, "eth": 0.0001707985686905589, "eur": 0.021381836721145287, "gbp": 0.01985501634078117, "hkd": 0.17848228325021073, "huf": 7.515639390730008, "idr": 390.6914000065054, "ils": 0.08546194591513213, "inr": 1.7620751694830274, "jpy": 2.5525478297818616, "krw": 29.028871538106653, "kwd": 0.007185500037486745, "lkr": 4.273000759139158, "ltc": 0.0005919251595172926, "mmk": 32.43839662173645, "mxn": 0.5835598254280631, "myr": 0.10223216283486385, "ngn": 8.762390636052405, "nok": 0.26516031439775906, "nzd": 0.04013274570330976, "php": 1.1796626455091639, "pkr": 3.632791750782298, "pln": 0.09853726119635128, "rub": 1.824201994269265, "sar": 0.08642075358300272, "sek": 0.23714676874742666, "sgd": 0.0335360845139084, "thb": 0.7545734652459589, "try": 0.15068457000398147, "twd": 0.6957540609147084, "uah": 0.6405417202556116, "usd": 0.0230123045210723, "vef": 5718.273292973158, "vnd": 537.942961353352, "xag": 0.0016834168113995503, "xau": 1.4707163819417289e-05, "xdr": 0.017017277021069685, "xlm": 0.583665639319962, "xrp": 0.146376689828891, "zar": 0.40913115961924135, "bits": 3.5686132069401406, "link": 0.010260321679257618, "sats": 356.86132069401407}, "market_cap": {"aed": 9138465.094670063, "ars": 158436384.6264598, "aud": 4243295.949259038, "bch": 11325.49713656027, "bdt": 209479680.4680046, "bhd": 939618.414050391, "bmd": 2487875.7199907615, "bnb": 205350.42525803842, "brl": 12795393.615484491, "btc": 385.8051740735023, "cad": 3603028.693340821, "chf": 2443260.6447041673, "clp": 2141314664.538432, "cny": 17644760.96889048, "czk": 64316311.83775362, "dkk": 17267009.383194227, "eos": 1091197.351746589, "eth": 18465.148141304693, "eur": 2311604.7494779765, "gbp": 2146539.1712080278, "hkd": 19295839.690462347, "huf": 812520829.5971255, "idr": 42237910036.143196, "ils": 9239348.455115678, "inr": 190499131.75541258, "jpy": 275957662.7370954, "krw": 3138330826.9823456, "kwd": 776829.2420642357, "lkr": 461956986.11714035, "ltc": 63993.427127919414, "mmk": 3506936877.041116, "mxn": 63089045.232957624, "myr": 11052387.88605897, "ngn": 947307945.3014897, "nok": 28666659.93800096, "nzd": 4338778.131516549, "php": 127534122.05435055, "pkr": 392743559.6151615, "pln": 10652929.584705802, "rub": 197215704.56993744, "sar": 9343005.796989104, "sek": 25638096.675660327, "sgd": 3625608.653375457, "thb": 81577444.85849687, "try": 16290610.214499515, "twd": 75218439.49395207, "uah": 69249396.20913701, "usd": 2487875.7199907615, "vef": 618206371849.1344, "vnd": 58157375375.65711, "xag": 181995.3237569122, "xau": 1590.0013726460938, "xdr": 1839749.2646730891, "xlm": 63100484.84398189, "xrp": 15824882.391263764, "zar": 44231444.85057187, "bits": 385805174.0735023, "link": 1109250.2779000432, "sats": 38580517407.350235}, "total_volume": {"aed": 181042.41578963032, "ars": 3138788.136147597, "aud": 84064.0678282248, "bch": 224.36977549077574, "bdt": 4150008.45523683, "bhd": 18614.80958102249, "bmd": 49287.38315083044, "bnb": 4068.2036520363213, "brl": 253489.9402830361, "btc": 7.64319828492243, "cad": 71379.71333744295, "chf": 48403.512508786596, "clp": 42421651.31865573, "cny": 349560.90752063476, "czk": 1274172.4511895739, "dkk": 342077.259125162, "eos": 21617.744623073606, "eth": 365.8136232708234, "eur": 45795.27347982781, "gbp": 42525.154182536484, "hkd": 382270.4793486834, "huf": 16096875.388346506, "idr": 836776547.4432247, "ils": 183041.0191763963, "inr": 3773984.2152422382, "jpy": 5467005.826473265, "krw": 62173569.47561506, "kwd": 15389.788239314208, "lkr": 9151844.198247535, "ltc": 1267.775772175719, "mmk": 69476035.38055514, "mxn": 1249859.0343686468, "myr": 218959.19964756456, "ngn": 18767147.123439845, "nok": 567916.0902876856, "nzd": 85955.66830617024, "php": 2526582.452647953, "pkr": 7780654.856362907, "pln": 211045.5188341006, "rub": 3907046.447856963, "sar": 185094.57799537588, "sek": 507917.12944406836, "sgd": 71827.04562691988, "thb": 1616133.2935157262, "try": 322733.7848716378, "twd": 1490154.8407569728, "uah": 1371901.9388701923, "usd": 49287.38315083044, "vef": 12247305631.378641, "vnd": 1152157569.6704526, "xag": 3605.515010894385, "xau": 31.4995665716957, "xdr": 36447.329816675025, "xlm": 1250085.6648579107, "xrp": 313507.23650212854, "zar": 876270.5275619867, "bits": 7643198.284922429, "link": 21975.39170374137, "sats": 764319828.4922429}}, "community_data": {"facebook_likes": null, "twitter_followers": 24815, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3227, "reddit_accounts_active_48h": "151.076923076923"}, "developer_data": {"forks": 4, "stars": 7, "subscribers": 15, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 700856, "bing_matches": null}}, "AST_20190302": {"id": "airswap", "symbol": "ast", "name": "AirSwap", "localization": {"en": "AirSwap", "de": "AirSwap", "es": "AirSwap", "fr": "AirSwap", "it": "AirSwap", "pl": "AirSwap", "ro": "AirSwap", "hu": "AirSwap", "nl": "AirSwap", "pt": "AirSwap", "sv": "AirSwap", "vi": "AirSwap", "tr": "AirSwap", "ru": "AirSwap", "ja": "\u30a8\u30a2\u30b9\u30ef\u30c3\u30d7", "zh": "AirSwap", "zh-tw": "AirSwap", "ko": "\uc5d0\uc5b4\uc2a4\uc651", "ar": "AirSwap", "th": "AirSwap", "id": "AirSwap"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1019/thumb/Airswap.png?1630903484", "small": "https://assets.coingecko.com/coins/images/1019/small/Airswap.png?1630903484"}, "market_data": {"current_price": {"aed": 0.11784666101815683, "ars": 1.247411617196375, "aud": 0.04460634727601434, "bch": 0.0002432645989167091, "bdt": 2.6997088038087598, "bhd": 0.012096097095500682, "bmd": 0.03208445734706081, "bnb": 0.003406576015963198, "brl": 0.12028142214839596, "btc": 8.422863441335522e-06, "cad": 0.042233733739656575, "chf": 0.032083366475511035, "clp": 20.794230122739215, "cny": 0.2149722811167766, "czk": 0.7218810396344603, "dkk": 0.21014357028604397, "eos": 0.009387402653666986, "eth": 0.00023549540880624115, "eur": 0.028163736659250014, "gbp": 0.024196429339371214, "hkd": 0.2518325099399473, "huf": 8.914698558338216, "idr": 448.0293723572726, "ils": 0.11617717836456022, "inr": 2.276231826487226, "jpy": 3.5470453534136004, "krw": 35.78379527917694, "kwd": 0.009742285051148271, "lkr": 5.770710498442363, "ltc": 0.0007165388767639381, "mmk": 48.78787748033968, "mxn": 0.6156381717982702, "myr": 0.1305467159387586, "ngn": 11.608811415687681, "nok": 0.27460766198775866, "nzd": 0.04652788542652984, "php": 1.6666385268754333, "pkr": 4.472833045778043, "pln": 0.12176853674643232, "rub": 2.107413037264196, "sar": 0.12032634038868201, "sek": 0.2976775739452173, "sgd": 0.04323550675140386, "thb": 1.0041633038196338, "try": 0.17022408845483106, "twd": 0.9871745836543708, "uah": 0.8650681654876126, "usd": 0.03208445734706081, "vef": 7972.5911587530745, "vnd": 742.4715898575215, "xag": 0.002013777436097963, "xau": 2.4138420640487775e-05, "xdr": 0.02295081445178632, "xlm": 0.379192754054081, "xrp": 0.10147646950512812, "zar": 0.4439717265634021, "bits": 8.422863441335522, "link": 0.07421624580083049, "sats": 842.2863441335521}, "market_cap": {"aed": 19633970.30625921, "ars": 207826360.4595717, "aud": 7431688.690382295, "bch": 40529.36137884161, "bdt": 449787902.6149163, "bhd": 2015283.3278670285, "bmd": 5345465.687378072, "bnb": 567556.2783499757, "brl": 20039616.31541161, "btc": 1403.3002655491314, "cad": 7036396.84826638, "chf": 5345283.941544706, "clp": 3464445180.237049, "cny": 35815689.19857052, "czk": 120269770.68659423, "dkk": 35011196.61262012, "eos": 1563998.3633189176, "eth": 39234.96706495342, "eur": 4692249.780380476, "gbp": 4031272.257204797, "hkd": 41956827.45351479, "huf": 1485242986.7036884, "idr": 74644417730.59093, "ils": 19355824.344682243, "inr": 379234063.19103676, "jpy": 590959324.1097208, "krw": 5961797881.132767, "kwd": 1623123.9286439132, "lkr": 961435458.5318209, "ltc": 119379.73386870872, "mmk": 8128357048.714489, "mxn": 102569062.88269481, "myr": 21749876.680225454, "ngn": 1934098570.6116688, "nok": 45751306.271700166, "nzd": 7751828.630399373, "php": 277672112.7711731, "pkr": 745201183.0197767, "pln": 20287378.650021587, "rub": 351107826.38375956, "sar": 20047099.967373956, "sek": 49594893.88315544, "sgd": 7203298.323423387, "thb": 167299712.35071492, "try": 28360368.204384357, "twd": 164469288.26924914, "uah": 144125616.52007312, "usd": 5345465.687378072, "vef": 1328282165336.7441, "vnd": 123700281557.04509, "xag": 335507.565867059, "xau": 4021.607655242027, "xdr": 3823745.242823727, "xlm": 63175818.55203694, "xrp": 16906596.85929272, "zar": 73968389.2683344, "bits": 1403300265.5491314, "link": 12364877.831125261, "sats": 140330026554.91315}, "total_volume": {"aed": 3254394.998470575, "ars": 34447901.13665172, "aud": 1231826.7842373282, "bch": 6717.8746277547325, "bdt": 74553820.63891098, "bhd": 334039.8238567554, "bmd": 886028.476469348, "bnb": 94074.31532194499, "brl": 3321632.15543593, "btc": 232.60162332524354, "cad": 1166305.8644308974, "chf": 885998.3515011487, "clp": 574243155.6721174, "cny": 5936567.998039919, "czk": 19935109.103474457, "dkk": 5803220.712331282, "eos": 259237.8602904694, "eth": 6503.324523244107, "eur": 777755.7966447946, "gbp": 668196.6034724057, "hkd": 6954481.813231727, "huf": 246183898.21548542, "idr": 12372557151.557926, "ils": 3208291.3927259785, "inr": 62859290.2631178, "jpy": 97953446.94338849, "krw": 988187559.8062644, "kwd": 269038.11673753493, "lkr": 159361081.77777708, "ltc": 19787.582580646933, "mmk": 1347301850.4406326, "mxn": 17001158.70791767, "myr": 3605113.42236839, "ngn": 320583183.96972936, "nok": 7583429.127253499, "nzd": 1284891.029693078, "php": 46025063.75030946, "pkr": 123519541.13431562, "pln": 3362699.5753202867, "rub": 58197274.22847903, "sar": 3322872.5953029916, "sek": 8220516.384888592, "sgd": 1193970.3315517, "thb": 27730476.242299363, "try": 4700824.081908124, "twd": 27261324.164009005, "uah": 23889293.82280291, "usd": 886028.476469348, "vef": 220167127076.25372, "vnd": 20503727535.95905, "xag": 55611.4798624662, "xau": 666.5946639869505, "xdr": 633798.3199304376, "xlm": 10471599.208566062, "xrp": 2802323.9009636384, "zar": 12260503.215849873, "bits": 232601623.32524353, "link": 2049519.0703983777, "sats": 23260162332.524353}}, "community_data": {"facebook_likes": null, "twitter_followers": 30503, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.5, "reddit_subscribers": 3595, "reddit_accounts_active_48h": "1605.0"}, "developer_data": {"forks": 30, "stars": 53, "subscribers": 19, "total_issues": 1, "closed_issues": 1, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 387473, "bing_matches": null}}, "BLZ_20190624": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.23190937839745684, "ars": 2.7363074293768213, "aud": 0.09119877796777538, "bch": 0.00015230957151461867, "bdt": 5.333946134617762, "bhd": 0.023801833941635556, "bmd": 0.06313584285594877, "bnb": 0.0017176638459040854, "brl": 0.24239112789255826, "btc": 6.601800126262984e-06, "cad": 0.08325186942749696, "chf": 0.06194648984822844, "clp": 43.172920703326305, "cny": 0.43260048166467574, "czk": 1.4304096964383217, "dkk": 0.41735690062969216, "eos": 0.009202990628887448, "eth": 0.00023161064150390603, "eur": 0.055897381608357104, "gbp": 0.049684751535488875, "hkd": 0.4933809156311972, "huf": 18.061331996976364, "idr": 894.5917416880084, "ils": 0.2262094113685788, "inr": 4.389257208268617, "jpy": 6.7751862166754355, "krw": 73.12769205130029, "kwd": 0.019182499999080074, "lkr": 11.148606998344661, "ltc": 0.0004646833257432408, "mmk": 96.09561837325356, "mxn": 1.1998278754085918, "myr": 0.26188747616647573, "ngn": 22.728903428141557, "nok": 0.5398756024347036, "nzd": 0.09588901346185764, "php": 3.2453078999872074, "pkr": 9.916841604284025, "pln": 0.23772854589764641, "rub": 3.97132659223489, "sar": 0.236778667141879, "sek": 0.5938578845217115, "sgd": 0.08560431093230934, "thb": 1.948814061434574, "try": 0.36405856912834306, "twd": 1.9516522701143153, "uah": 1.663436326710955, "usd": 0.06313584285594877, "vef": 15688.476732173014, "vnd": 1472.1232911029085, "xag": 0.004083693871274625, "xau": 4.5412349049426866e-05, "xdr": 0.04533210339315692, "xlm": 0.5187387420223453, "xrp": 0.14627232902751675, "zar": 0.9058815966359391, "bits": 6.601800126262984, "link": 0.035785126569981084, "sats": 660.1800126262984}, "market_cap": {"aed": 48040625.91505427, "ars": 566833141.9438491, "aud": 18892062.091388088, "bch": 31540.890611313796, "bdt": 1104940700.005048, "bhd": 4930611.294738803, "bmd": 13078752.698289096, "bnb": 355909.89651098795, "brl": 50211947.35927145, "btc": 1367.2745360080082, "cad": 17245839.489254538, "chf": 12832375.154958721, "clp": 8943381882.61706, "cny": 89614305.61340697, "czk": 296313058.17260975, "dkk": 86456558.4831794, "eos": 1906414.5740499198, "eth": 47955.25355742292, "eur": 11579286.78018294, "gbp": 10292324.435918601, "hkd": 102205129.28478105, "huf": 3741451510.0259433, "idr": 185316986773.4924, "ils": 46859863.04269996, "inr": 909245952.20984, "jpy": 1403497300.494281, "krw": 15148590031.779093, "kwd": 3973704.35356847, "lkr": 2309462696.0860567, "ltc": 96251.27324940774, "mmk": 19906455212.144676, "mxn": 248547439.1905436, "myr": 54250666.192503095, "ngn": 4708350971.384075, "nok": 111836623.58311325, "nzd": 19863656.471838642, "php": 672273902.3311759, "pkr": 2054299317.5280683, "pln": 49246081.47250282, "rub": 822670547.1008923, "sar": 49049311.6381571, "sek": 123019192.55769898, "sgd": 17733153.814792715, "thb": 403701859.53808963, "try": 75415671.63657428, "twd": 404289801.78688776, "uah": 344585125.6954136, "usd": 13078752.698289096, "vef": 3249908421450.98, "vnd": 304954136902.16144, "xag": 845947.7187907253, "xau": 9407.285240825377, "xdr": 9390662.146145852, "xlm": 107421520.85332751, "xrp": 30297545.203036882, "zar": 187655709.3466664, "bits": 1367274536.0080082, "link": 7411325.909779546, "sats": 136727453600.80083}, "total_volume": {"aed": 2548215.137950178, "ars": 30066485.718716484, "aud": 1002090.1620535363, "bch": 1673.5742145066808, "bdt": 58609282.55324439, "bhd": 261534.02669685736, "bmd": 693735.2496242839, "bnb": 18873.652477050968, "brl": 2663388.370357548, "btc": 72.54043426666875, "cad": 914769.706183326, "chf": 680666.664991862, "clp": 474383101.04558134, "cny": 4753404.556900634, "czk": 15717310.214543791, "dkk": 4585908.424496093, "eos": 101122.25817255604, "eth": 2544.9326235487733, "eur": 614199.1969901095, "gbp": 545934.9546918301, "hkd": 5421258.625567181, "huf": 198457517.86441678, "idr": 9829754338.557602, "ils": 2485584.0258788466, "inr": 48229061.45390143, "jpy": 74445596.80624397, "krw": 803525468.336669, "kwd": 210776.88715809674, "lkr": 122500647.95374699, "ltc": 5105.9301404472435, "mmk": 1055896536.489933, "mxn": 13183682.247687407, "myr": 2877613.815441532, "ngn": 249744689.8647422, "nok": 5932141.219301245, "nzd": 1053626.36627762, "php": 35659371.6700997, "pkr": 108966036.95509624, "pln": 2612156.022172794, "rub": 43636849.05719196, "sar": 2601718.775342201, "sek": 6525297.344964505, "sgd": 940618.2815843238, "thb": 21413525.950152807, "try": 4000267.5327920173, "twd": 21444712.124564365, "uah": 18277801.691471294, "usd": 693735.2496242839, "vef": 172384636518.6101, "vnd": 16175658273.243015, "xag": 44871.53824241581, "xau": 498.98989034975534, "xdr": 498108.15284748253, "xlm": 5699889.863001194, "xrp": 1607237.1271348067, "zar": 9953807.015867932, "bits": 72540434.26666875, "link": 393206.18195442884, "sats": 7254043426.666876}}, "community_data": {"facebook_likes": null, "twitter_followers": 36559, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 30, "stars": 203, "subscribers": 53, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 295, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 867, "deletions": -728}, "commit_count_4_weeks": 12}, "public_interest_stats": {"alexa_rank": 922433, "bing_matches": null}}, "CDT_20190809": {"id": "blox", "symbol": "cdt", "name": "Blox", "localization": {"en": "Blox", "de": "Blox", "es": "Blox", "fr": "Blox", "it": "Blox", "pl": "Blox", "ro": "Blox", "hu": "Blox", "nl": "Blox", "pt": "Blox", "sv": "Blox", "vi": "Blox", "tr": "Blox", "ru": "Blox", "ja": "Blox", "zh": "Blox", "zh-tw": "Blox", "ko": "\ube14\ub85d\uc2a4", "ar": "Blox", "th": "Blox", "id": "Blox"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1231/thumb/Blox_Staking_Logo_2.png?1609117544", "small": "https://assets.coingecko.com/coins/images/1231/small/Blox_Staking_Logo_2.png?1609117544"}, "market_data": {"current_price": {"aed": 0.05863216165798327, "ars": 0.724765074217886, "aud": 0.023597492048535344, "bch": 4.600473902966966e-05, "bdt": 1.348413121683804, "bhd": 0.006018096091767457, "bmd": 0.015962230463999305, "bnb": 0.0005738560885848997, "brl": 0.06344348120221142, "btc": 1.3523556770167797e-06, "cad": 0.02109249133512854, "chf": 0.015489413235425145, "clp": 11.512200044093214, "cny": 0.11254330210947314, "czk": 0.36642992026539467, "dkk": 0.10596282471399796, "eos": 0.0035868708918456427, "eth": 6.857587824096205e-05, "eur": 0.014197063170368295, "gbp": 0.013127753351585046, "hkd": 0.12520677802578228, "huf": 4.643698422242611, "idr": 226.51056319342288, "ils": 0.05567625985842936, "inr": 1.135904244279114, "jpy": 1.6852204623519516, "krw": 19.43241936687268, "kwd": 0.004855024131238619, "lkr": 2.8229990715432964, "ltc": 0.00016602882591584483, "mmk": 24.18463115478621, "mxn": 0.3144431384319527, "myr": 0.06705694708572975, "ngn": 5.802270773663747, "nok": 0.14226470387552237, "nzd": 0.024328961259548188, "php": 0.8327495633068412, "pkr": 2.5516955848611986, "pln": 0.06134681030630417, "rub": 1.0497145846657043, "sar": 0.05988150947416996, "sek": 0.15282793335629946, "sgd": 0.02211426563159008, "thb": 0.4921075840898644, "try": 0.08923756770935871, "twd": 0.5059518979292097, "uah": 0.4102684144271874, "usd": 0.015962230463999305, "vef": 3966.4170129066324, "vnd": 369.05813950140066, "xag": 0.0009670283153945321, "xau": 1.082606356759821e-05, "xdr": 0.011609473876540826, "xlm": 0.19399455535717058, "xrp": 0.049707231750509305, "zar": 0.23881006801144772, "bits": 1.3523556770167797, "link": 0.0064522280456619455, "sats": 135.23556770167798}, "market_cap": {"aed": 39534944.45611457, "ars": 488700162.8914786, "aud": 15917073.551199807, "bch": 30984.343112281473, "bdt": 909218360.0637685, "bhd": 4057928.072095757, "bmd": 10763135.401199823, "bnb": 386454.4445269962, "brl": 42779696.12237892, "btc": 911.2649262922185, "cad": 14222094.988218775, "chf": 10448873.373755565, "clp": 7762319435.668313, "cny": 75886562.45969947, "czk": 247153318.5347111, "dkk": 71470900.05627412, "eos": 2415444.766364083, "eth": 46231.09900915482, "eur": 9575724.77746866, "gbp": 8853647.549672967, "hkd": 84417143.73717001, "huf": 3132145504.964798, "idr": 152781225442.15396, "ils": 37541816.27938496, "inr": 765926241.4201816, "jpy": 1136615800.0969813, "krw": 13104289518.074673, "kwd": 3273682.974222733, "lkr": 1903513504.1440396, "ltc": 112014.18733821351, "mmk": 16307398914.839548, "mxn": 212021874.13901785, "myr": 45215673.505190834, "ngn": 3912399718.336136, "nok": 95945172.11879162, "nzd": 16404439.085301511, "php": 561882250.7926477, "pkr": 1720576904.6153612, "pln": 41377797.73637262, "rub": 707817149.7026436, "sar": 40377364.3008311, "sek": 103075943.05852397, "sgd": 14914455.199171772, "thb": 332042727.12701446, "try": 60164581.5007819, "twd": 341643443.904885, "uah": 276638938.7294335, "usd": 10763135.401199823, "vef": 2674506138964.7856, "vnd": 248857113031.2149, "xag": 652312.1985954271, "xau": 7299.343166385699, "xdr": 7828125.245511246, "xlm": 130557011.10442048, "xrp": 33481988.386674523, "zar": 161012846.13591295, "bits": 911264926.2922186, "link": 4347738.700976197, "sats": 91126492629.22185}, "total_volume": {"aed": 7403587.281024796, "ars": 91517374.31260009, "aud": 2979697.2694564178, "bch": 5809.100178392479, "bdt": 170266521.9048063, "bhd": 759915.6916795677, "bmd": 2015579.2162228914, "bnb": 72461.8284307674, "brl": 8011121.152799478, "btc": 170.76435537525248, "cad": 2663386.376316911, "chf": 1955875.7442591486, "clp": 1453665964.4281871, "cny": 14211042.821901072, "czk": 46269757.42236552, "dkk": 13380114.243275529, "eos": 452920.56377612136, "eth": 8659.198050576444, "eur": 1792688.4041760853, "gbp": 1657664.7524813218, "hkd": 15810082.437299332, "huf": 586368054.7269943, "idr": 28601891474.834484, "ils": 7030340.306185418, "inr": 143432648.18485284, "jpy": 212795783.542339, "krw": 2453766137.8297386, "kwd": 613052.5276687038, "lkr": 356465111.11665624, "ltc": 20964.754992393526, "mmk": 3053836368.140652, "mxn": 39705294.065059364, "myr": 8467399.913451152, "ngn": 732663045.097021, "nok": 17964017.057661474, "nzd": 3072061.1870398414, "php": 105152767.71034794, "pkr": 322207137.5659954, "pln": 7746370.791590166, "rub": 132549326.64893582, "sar": 7561344.650699336, "sek": 19297854.82210588, "sgd": 2792407.6331057725, "thb": 62139299.44654335, "try": 11268186.309358768, "twd": 63887445.56562024, "uah": 51805322.010428704, "usd": 2015579.2162228914, "vef": 500846527189.1867, "vnd": 46601627337.39516, "xag": 122108.38443939529, "xau": 1367.0262918188466, "xdr": 1465948.9041718494, "xlm": 24496037.362709966, "xrp": 6276620.516052808, "zar": 30154971.812632896, "bits": 170764355.3752525, "link": 814734.305239964, "sats": 17076435537.525248}}, "community_data": {"facebook_likes": null, "twitter_followers": 19780, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 297, "reddit_accounts_active_48h": "24.875"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 2, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 234430, "bing_matches": null}}, "SUB_20190208": {"id": "substratum", "symbol": "sub", "name": "Substratum", "localization": {"en": "Substratum", "de": "Substratum", "es": "Substratum", "fr": "Substratum", "it": "Substratum", "pl": "Substratum", "ro": "Substratum", "hu": "Substratum", "nl": "Substratum", "pt": "Substratum", "sv": "Substratum", "vi": "Substratum", "tr": "Substratum", "ru": "Substratum", "ja": "\u30b5\u30d6\u30b9\u30c8\u30e9\u30bf\u30e0", "zh": "Substratum", "zh-tw": "Substratum", "ko": "\uc11c\ube0c\uc2a4\ud2b8\ub77c\ud140", "ar": "Substratum", "th": "Substratum", "id": "Substratum"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/950/thumb/substratum.png?1548611133", "small": "https://assets.coingecko.com/coins/images/950/small/substratum.png?1548611133"}, "market_data": {"current_price": {"aed": 0.15026430244068562, "ars": 1.5197505474604995, "aud": 0.056693731681222895, "bch": 0.0003439523992279769, "bdt": 3.4331275320066066, "bhd": 0.015416365916836785, "bmd": 0.04090849387511418, "bnb": 0.00578699620773965, "brl": 0.1500769006302439, "btc": 1.1808613733928412e-05, "cad": 0.053660980487791304, "chf": 0.0408256132665233, "clp": 26.697444408344033, "cny": 0.27591960948887, "czk": 0.9187270462967033, "dkk": 0.2670352255145553, "eos": 0.01705341390096267, "eth": 0.0003801684390934007, "eur": 0.035771000671808065, "gbp": 0.03138806463802827, "hkd": 0.32096722477426826, "huf": 11.356197899731715, "idr": 570.694078189184, "ils": 0.147659658635658, "inr": 2.932934468376316, "jpy": 4.49803889951605, "krw": 45.90219372244946, "kwd": 0.01240075538233884, "lkr": 7.22624751923855, "ltc": 0.0011987626242080942, "mmk": 62.15981348443785, "mxn": 0.7818674754950391, "myr": 0.16719301446759194, "ngn": 14.788420535853776, "nok": 0.3461627661519517, "nzd": 0.059460045854045955, "php": 2.142086351220871, "pkr": 5.702861802103817, "pln": 0.15328249021029797, "rub": 2.6826276669026567, "sar": 0.15341707915514663, "sek": 0.3725727988957984, "sgd": 0.0553512785462172, "thb": 1.2799551834880445, "try": 0.21331963218743966, "twd": 1.2594088924392695, "uah": 1.1136097111965542, "usd": 0.04090849387511418, "vef": 10165.255190657526, "vnd": 950.3502511984589, "xag": 0.002579512899071169, "xau": 3.118045403161212e-05, "xdr": 0.029258654806347, "xlm": 0.5168273028419368, "xrp": 0.1367524870727158, "zar": 0.549171126098712, "bits": 11.808613733928413, "link": 0.10235826445252616, "sats": 1180.8613733928412}, "market_cap": {"aed": 57554383.37912327, "ars": 582096374.3780781, "aud": 21714889.800005924, "bch": 131740.99189094084, "bdt": 1314959940.2993774, "bhd": 5904791.889216086, "bmd": 15668812.230903769, "bnb": 2216541.0742531684, "brl": 57482604.55029357, "btc": 4522.947040510649, "cad": 20553282.405267872, "chf": 15637067.217323996, "clp": 10225681853.66044, "cny": 105683004.73499969, "czk": 351891751.9628605, "dkk": 102280099.10112907, "eos": 6531815.645078486, "eth": 145612.4956947867, "eur": 13701044.446885755, "gbp": 12022287.904466704, "hkd": 122937187.38742633, "huf": 4349662275.298891, "idr": 218587816499.27167, "ils": 56556750.10438198, "inr": 1123375492.8946476, "jpy": 1722843357.1516154, "krw": 17581504139.930225, "kwd": 4749749.726802775, "lkr": 2767804550.777219, "ltc": 459151.2590388579, "mmk": 23808513918.13648, "mxn": 299471662.3003107, "myr": 64038435.587703794, "ngn": 5664275621.471712, "nok": 132587608.84044018, "nzd": 22774446.220684137, "php": 820464056.2452857, "pkr": 2184315830.0754914, "pln": 58710412.67670725, "rub": 1027502731.4974174, "sar": 58761963.06894672, "sek": 142703205.99096468, "sgd": 21200702.057836607, "thb": 490249714.2835759, "try": 81705898.83153255, "twd": 482380053.3406049, "uah": 426535905.14767104, "usd": 15668812.230903769, "vef": 3893506207974.2275, "vnd": 364004103526.27094, "xag": 988007.6100119577, "xau": 11942.768682394888, "xdr": 11206679.221411489, "xlm": 197955710.34114838, "xrp": 52379074.34560858, "zar": 210344073.86748794, "bits": 4522947040.510649, "link": 39205364.80477668, "sats": 452294704051.0649}, "total_volume": {"aed": 369280.86266497493, "ars": 3734851.086293842, "aud": 139327.23742688465, "bch": 845.277531919015, "bdt": 8437055.748212153, "bhd": 37886.36963310438, "bmd": 100534.34956376375, "bnb": 14221.787324881057, "brl": 368820.31480962376, "btc": 29.020166438158977, "cad": 131874.12342197503, "chf": 100330.66697154782, "clp": 65610095.957122736, "cny": 678084.0809376735, "czk": 2257810.4759379667, "dkk": 656250.3325024663, "eos": 41909.484118599656, "eth": 934.2799777866351, "eur": 87908.74327379873, "gbp": 77137.49306153692, "hkd": 788790.4959902989, "huf": 27908335.438900862, "idr": 1402504773.8446276, "ils": 362879.8406282523, "inr": 7207810.191974054, "jpy": 11054120.360819362, "krw": 112806577.61501263, "kwd": 30475.37952066191, "lkr": 17758808.142661825, "ltc": 2946.009722920285, "mmk": 152760364.06376716, "mxn": 1921472.3068006462, "myr": 410883.8866671032, "ngn": 36343167.3673006, "nok": 850709.6018866225, "nzd": 146125.5712130857, "php": 5264267.57941367, "pkr": 14015023.473531403, "pln": 376698.1864414406, "rub": 6592670.667298257, "sar": 377028.9444515042, "sek": 915613.3715527924, "sgd": 136028.10221160032, "thb": 3145543.862738439, "try": 524241.9957238211, "twd": 3095050.4856700413, "uah": 2736742.846725591, "usd": 100534.34956376375, "vef": 24981543487.332195, "vnd": 2335525836.117815, "xag": 6339.26177510085, "xau": 76.62728123750097, "xdr": 71904.37856369445, "xlm": 1270124.9008733751, "xrp": 336075.0063557338, "zar": 1349611.2110624507, "bits": 29020166.438158978, "link": 251549.75322790997, "sats": 2902016643.815898}}, "community_data": {"facebook_likes": null, "twitter_followers": 68670, "reddit_average_posts_48h": 0.13, "reddit_average_comments_48h": 3.087, "reddit_subscribers": 13841, "reddit_accounts_active_48h": "943.416666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 506806, "bing_matches": null}}, "EVX_20190228": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 0.8756387922093334, "ars": 9.421157845796033, "aud": 0.33318884216705286, "bch": 0.0018700131244036198, "bdt": 20.021385688765974, "bhd": 0.08986056432929566, "bmd": 0.23839867013667074, "bnb": 0.02385499049428113, "brl": 0.8934676751541752, "btc": 6.363892901664095e-05, "cad": 0.3130720471849097, "chf": 0.2384225100036844, "clp": 155.268119814024, "cny": 1.6006563510316343, "czk": 5.391815042747052, "dkk": 1.5684424923307476, "eos": 0.06730666389319254, "eth": 0.0017775707019954087, "eur": 0.21020159062891597, "gbp": 0.182471295717288, "hkd": 1.8708931635650563, "huf": 66.8589070398293, "idr": 3350.4072303667444, "ils": 0.8608802457371832, "inr": 16.936079925179207, "jpy": 26.408390987930414, "krw": 267.7948415539113, "kwd": 0.07235494998116021, "lkr": 42.77588101138026, "ltc": 0.005420052604337933, "mmk": 364.29782673527853, "mxn": 4.5637849417613525, "myr": 0.972302062590976, "ngn": 86.30572046494143, "nok": 2.049847125303147, "nzd": 0.34726699883463363, "php": 12.397549269741466, "pkr": 33.30200034608886, "pln": 0.9122921109455066, "rub": 15.600689774408659, "sar": 0.8939234934114764, "sek": 2.22466987648644, "sgd": 0.321884930823852, "thb": 7.459494388576399, "try": 1.2683669870470056, "twd": 7.33363634025253, "uah": 6.420065458840387, "usd": 0.23839867013667074, "vef": 59239.123455651206, "vnd": 5535.131320107444, "xag": 0.014969171697216621, "xau": 0.00017954042246662828, "xdr": 0.17084626136541387, "xlm": 2.886361192349139, "xrp": 0.803414480454817, "zar": 3.3364640073464584, "bits": 63.63892901664095, "link": 0.5886201502697396, "sats": 6363.892901664095}, "market_cap": {"aed": 17123236.598674506, "ars": 184227371.04094163, "aud": 6516476.536084994, "bch": 36233.83128897227, "bdt": 391520941.3199429, "bhd": 1757235.6519503044, "bmd": 4661918.6699801795, "bnb": 461123.0054442435, "brl": 17471882.848327685, "btc": 1237.6718171027646, "cad": 6122581.703821024, "chf": 4662058.527540278, "clp": 3036388490.737414, "cny": 31301054.333980944, "czk": 105433169.43793513, "dkk": 30671373.641145293, "eos": 1303230.42939086, "eth": 34179.88582674288, "eur": 4110497.605857576, "gbp": 3568185.9308161214, "hkd": 36585572.24233694, "huf": 1306922279.9422367, "idr": 65517672604.167366, "ils": 16834631.19957211, "inr": 331187364.2340613, "jpy": 516419378.748384, "krw": 5236732309.604993, "kwd": 1414910.964013667, "lkr": 836488216.1359408, "ltc": 105169.09800925193, "mmk": 7123893933.287337, "mxn": 89243109.09943049, "myr": 19013500.099872727, "ngn": 1687720192.947968, "nok": 40086952.8786122, "nzd": 6790853.759406673, "php": 242410563.5495965, "pkr": 651225181.2147882, "pln": 17839344.601732798, "rub": 305096470.20565003, "sar": 17480796.436824646, "sek": 43504046.02533428, "sgd": 6294503.940532552, "thb": 145917527.57356954, "try": 24803780.240897533, "twd": 143410263.79831806, "uah": 125545259.99622609, "usd": 4661918.6699801795, "vef": 1158429178622.6729, "vnd": 108240251622.24123, "xag": 292705.8362878309, "xau": 3510.6578544285762, "xdr": 3340922.0575732673, "xlm": 55954689.97647605, "xrp": 15628807.248548938, "zar": 65089759.751368634, "bits": 1237671817.1027646, "link": 11447687.480365211, "sats": 123767181710.27646}, "total_volume": {"aed": 2551534.628722614, "ars": 27452427.5307159, "aud": 970883.0584677783, "bch": 5449.054205379399, "bdt": 58340561.60417928, "bhd": 261845.80181086922, "bmd": 694672.8122452996, "bnb": 69511.3497203948, "brl": 2603486.4296591934, "btc": 185.43825669381874, "cad": 912264.4825520818, "chf": 694742.279526524, "clp": 452437680.8872851, "cny": 4664172.195977389, "czk": 15711276.059989484, "dkk": 4570303.837549934, "eos": 196125.71438728488, "eth": 5179.685095609344, "eur": 612508.996031363, "gbp": 531705.3491838004, "hkd": 5451618.5622980455, "huf": 194820990.19419426, "idr": 9762792768.732994, "ils": 2508529.5189349465, "inr": 49350251.25471827, "jpy": 76951734.77243811, "krw": 780330677.0981214, "kwd": 210835.9772076977, "lkr": 124645164.93070404, "ltc": 15793.557837442526, "mmk": 1061531910.5931525, "mxn": 13298468.98121788, "myr": 2833202.919230894, "ngn": 251487298.6240511, "nok": 5973074.708809977, "nzd": 1011905.5720492997, "php": 36125371.048520036, "pkr": 97039107.72886898, "pln": 2658339.1842597057, "rub": 45459041.49692626, "sar": 2604814.6440762063, "sek": 6482492.870158509, "sgd": 937944.4524023536, "thb": 21736312.29515534, "try": 3695910.138030208, "twd": 21369572.982714027, "uah": 18707507.573489368, "usd": 694672.8122452996, "vef": 172617609243.75937, "vnd": 16128887120.39261, "xag": 43618.85321728847, "xau": 523.1650416300581, "xdr": 497831.01884028374, "xlm": 8410603.320460591, "xrp": 2341079.3198476606, "zar": 9722163.439963197, "bits": 185438256.69381875, "link": 1715187.4836286416, "sats": 18543825669.381874}}, "community_data": {"facebook_likes": null, "twitter_followers": 14041, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.043, "reddit_subscribers": 2319, "reddit_accounts_active_48h": "22.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1312426, "bing_matches": null}}, "POLY_20190308": {"id": "polymath", "symbol": "poly", "name": "Polymath", "localization": {"en": "Polymath", "de": "Polymath", "es": "Polymath", "fr": "Polymath", "it": "Polymath", "pl": "Polymath", "ro": "Polymath", "hu": "Polymath", "nl": "Polymath", "pt": "Polymath", "sv": "Polymath", "vi": "Polymath", "tr": "Polymath", "ru": "Polymath", "ja": "\u30dd\u30ea\u30fc\u30de\u30b9", "zh": "Polymath", "zh-tw": "Polymath", "ko": "\ud3f4\ub9ac\ub9e4\uc4f0", "ar": "Polymath", "th": "Polymath", "id": "Polymath"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2784/thumb/inKkF01.png?1605007034", "small": "https://assets.coingecko.com/coins/images/2784/small/inKkF01.png?1605007034"}, "market_data": {"current_price": {"aed": 0.32143585244108447, "ars": 3.4844274683167193, "aud": 0.12340664573665497, "bch": 0.0007104142863274272, "bdt": 7.35640670204973, "bhd": 0.032990049618468596, "bmd": 0.08750885198444712, "bnb": 0.007661726549059751, "brl": 0.3303984215524793, "btc": 2.356887107812879e-05, "cad": 0.11651558616943573, "chf": 0.08744182020382715, "clp": 57.77306098899588, "cny": 0.5869393720300843, "czk": 1.978400125664381, "dkk": 0.5759066060072924, "eos": 0.027074838865780687, "eth": 0.0006966001364701914, "eur": 0.07718788296369741, "gbp": 0.06639559126615954, "hkd": 0.6869051090945179, "huf": 24.36930557199157, "idr": 1236.1667289701606, "ils": 0.31723709021401686, "inr": 6.20525269421715, "jpy": 9.779332981391937, "krw": 98.81499566083778, "kwd": 0.02656436212610281, "lkr": 15.723079647887568, "ltc": 0.001913278648314643, "mmk": 132.96954088671248, "mxn": 1.6886670676290747, "myr": 0.35694598197900007, "ngn": 31.546941140393187, "nok": 0.7571843432117465, "nzd": 0.12827633833188568, "php": 4.529443739754406, "pkr": 12.217747189920289, "pln": 0.3318160649546277, "rub": 5.751676812611355, "sar": 0.32821507569546715, "sek": 0.8176426338884644, "sgd": 0.11854272872565544, "thb": 2.7897822012641678, "try": 0.47066321007967693, "twd": 2.6986416444135246, "uah": 2.3513628528220942, "usd": 0.08750885198444712, "vef": 21744.868304831914, "vnd": 2029.4021931689797, "xag": 0.005799128487599918, "xau": 6.798037657559785e-05, "xdr": 0.06268854127839456, "xlm": 1.0636816814118255, "xrp": 0.28893929726405504, "zar": 1.2440611933871035, "bits": 23.56887107812879, "link": 0.21727296605916394, "sats": 2356.887107812879}, "market_cap": {"aed": 154930027.84290305, "ars": 1679471784.442068, "aud": 59481215.038025655, "bch": 342415.1485431388, "bdt": 3545741044.4940405, "bhd": 15900993.206303606, "bmd": 42178707.73122875, "bnb": 3692903.260653246, "brl": 159249928.91002762, "btc": 11360.045323598644, "cad": 56159768.34031457, "chf": 42146398.84110668, "clp": 27846246396.03774, "cny": 282901028.4948977, "czk": 953576224.3876197, "dkk": 277583305.738975, "eos": 13049899.404380715, "eth": 335756.8165439109, "eur": 37204066.583992146, "gbp": 32002250.916915175, "hkd": 331083875.2716671, "huf": 11745849637.208342, "idr": 595824467878.6127, "ils": 152906251.26725006, "inr": 2990892165.2214327, "jpy": 4713576035.734145, "krw": 47628196770.103546, "kwd": 12803852.876307296, "lkr": 7578423965.851445, "ltc": 922188.0882405634, "mmk": 64090469421.46046, "mxn": 813926740.9602945, "myr": 172045683.47445005, "ngn": 15205424137.107964, "nok": 364958017.23769385, "nzd": 61828375.76585317, "php": 2183162952.6816244, "pkr": 5888876109.919465, "pln": 159933223.9752737, "rub": 2772271487.3089237, "sar": 158197570.1521334, "sek": 394098527.19246024, "sgd": 57136838.104908474, "thb": 1344657202.4715695, "try": 226856661.09893525, "twd": 1300728036.190792, "uah": 1133341876.7381165, "usd": 42178707.73122875, "vef": 10480887636905.266, "vnd": 978158895170.9962, "xag": 2795142.8915761807, "xau": 32766.107313927714, "xdr": 30215476.500004947, "xlm": 512687776.6297877, "xrp": 139266895.80538893, "zar": 599629549.3050723, "bits": 11360045323.598644, "link": 104724181.90259682, "sats": 1136004532359.8645}, "total_volume": {"aed": 26923613.808378156, "ars": 291857236.1726796, "aud": 10336597.0098498, "bch": 59504.62508702255, "bdt": 616175985.2213563, "bhd": 2763261.6234359876, "bmd": 7329781.409731258, "bnb": 641749.7150542398, "brl": 27674322.6905814, "btc": 1974.1394060057453, "cad": 9759398.713177694, "chf": 7324166.797171415, "clp": 4839097974.861721, "cny": 49162309.87134954, "czk": 165711698.11120433, "dkk": 48238200.3503362, "eos": 2267800.86916395, "eth": 58347.54558570759, "eur": 6465292.33070473, "gbp": 5561325.049005396, "hkd": 57535485.66475608, "huf": 2041184164.7904427, "idr": 103541889807.26381, "ils": 26571923.566557687, "inr": 519754799.7640439, "jpy": 819121396.9909933, "krw": 8276789167.868545, "kwd": 2225043.1043008463, "lkr": 1316972332.436642, "ltc": 160257.0934257586, "mmk": 11137589475.235569, "mxn": 141443524.84172508, "myr": 29897958.476851493, "ngn": 2642386198.2081184, "nok": 63422106.41272529, "nzd": 10744484.685738541, "php": 379388276.3537573, "pkr": 1023364084.7829921, "pln": 27793065.149419077, "rub": 481763076.76112413, "sar": 27491444.644408587, "sek": 68486120.45264316, "sgd": 9929193.099534117, "thb": 233673431.342232, "try": 39422965.44010878, "twd": 226039456.67421633, "uah": 196951226.4794789, "usd": 7329781.409731258, "vef": 1821360100646.0332, "vnd": 169983654579.32834, "xag": 485737.6507305506, "xau": 5694.067390335626, "xdr": 5250820.848926374, "xlm": 89094463.44547819, "xrp": 24201687.504748553, "zar": 104203133.75242922, "bits": 1974139406.0057452, "link": 18198882.871194284, "sats": 197413940600.57452}}, "community_data": {"facebook_likes": null, "twitter_followers": 32882, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.409, "reddit_subscribers": 4988, "reddit_accounts_active_48h": "155.086956521739"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 264578, "bing_matches": null}}, "POWR_20190327": {"id": "power-ledger", "symbol": "powr", "name": "Power Ledger", "localization": {"en": "Power Ledger", "de": "Power Ledger", "es": "Power Ledger", "fr": "Power Ledger", "it": "Power Ledger", "pl": "Power Ledger", "ro": "Power Ledger", "hu": "Power Ledger", "nl": "Power Ledger", "pt": "Power Ledger", "sv": "Power Ledger", "vi": "Power Ledger", "tr": "Power Ledger", "ru": "Power Ledger", "ja": "\u30d1\u30ef\u30fc\u30ec\u30b8\u30e3\u30fc", "zh": "Power Ledger", "zh-tw": "Power Ledger", "ko": "\ud30c\uc6cc\ub81b\uc800", "ar": "Power Ledger", "th": "Power Ledger", "id": "Power Ledger"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1104/thumb/power-ledger.png?1547035082", "small": "https://assets.coingecko.com/coins/images/1104/small/power-ledger.png?1547035082"}, "market_data": {"current_price": {"aed": 0.3867824266797312, "ars": 4.399330585348314, "aud": 0.14867120578404353, "bch": 0.0006345384593938373, "bdt": 8.8367811556621, "bhd": 0.0397261842215165, "bmd": 0.10530382587154088, "bnb": 0.006962454962174273, "brl": 0.4112636707259986, "btc": 2.6293962038524236e-05, "cad": 0.14133352989348885, "chf": 0.10458618029822644, "clp": 71.49186496596617, "cny": 0.7074416325876005, "czk": 2.4002532853855567, "dkk": 0.6953632837601328, "eos": 0.028723466101297092, "eth": 0.0007672877189175954, "eur": 0.09313565288060682, "gbp": 0.07970920447433356, "hkd": 0.8263980994833862, "huf": 29.509291123981978, "idr": 1506.6334215081013, "ils": 0.3813420098199056, "inr": 7.283918287447416, "jpy": 11.575474501228948, "krw": 119.63526020133015, "kwd": 0.031950233807684275, "lkr": 18.713708959764958, "ltc": 0.0017284863120929027, "mmk": 161.48690210942914, "mxn": 2.010565947365333, "myr": 0.42801224423086964, "ngn": 37.80407348788318, "nok": 0.9009953297307843, "nzd": 0.15310239077671814, "php": 5.543911565970361, "pkr": 14.740957222969753, "pln": 0.40054942765887414, "rub": 6.807839690682196, "sar": 0.39504203756579276, "sek": 0.976640333045608, "sgd": 0.14243395487384625, "thb": 3.332813436921325, "try": 0.6068677386627306, "twd": 3.2520871027929035, "uah": 2.8270821252212777, "usd": 0.10530382587154088, "vef": 26166.699409776033, "vnd": 2438.531226089861, "xag": 0.006821079540709009, "xau": 8.017727998033253e-05, "xdr": 0.07546093222719802, "xlm": 0.976818744242649, "xrp": 0.3379801790399948, "zar": 1.5269060016564742, "bits": 26.293962038524235, "link": 0.2287170792615316, "sats": 2629.3962038524237}, "market_cap": {"aed": 160575333.60352942, "ars": 1826411769.631554, "aud": 61721853.99151884, "bch": 263686.5603232597, "bdt": 3668649308.172363, "bhd": 16492593.36553918, "bmd": 43717593.67198967, "bnb": 2889336.227358913, "brl": 170738887.21558088, "btc": 10925.38138734608, "cad": 58675568.34686098, "chf": 43419658.27111509, "clp": 29680330012.39264, "cny": 293699166.04779387, "czk": 996481343.1218641, "dkk": 288684758.05361706, "eos": 11930494.854342423, "eth": 318765.8548752288, "eur": 38665894.57041027, "gbp": 33091813.94204428, "hkd": 343084745.7393574, "huf": 12250981274.701633, "idr": 625489028427.8983, "ils": 158316707.84405935, "inr": 3023967813.0883675, "jpy": 4805636325.336669, "krw": 49667385311.382126, "kwd": 13264355.096018406, "lkr": 7769122514.094514, "ltc": 718338.4900622901, "mmk": 67042376773.47638, "mxn": 834700015.9792993, "myr": 177692170.48911107, "ngn": 15694616128.244291, "nok": 374054289.0965945, "nzd": 63561490.33323622, "php": 2301592284.8823805, "pkr": 6119807831.067011, "pln": 166290796.92983124, "rub": 2826320572.097299, "sar": 164004366.78078532, "sek": 405458822.5108686, "sgd": 59132417.20073324, "thb": 1383639980.921643, "try": 251945235.53076854, "twd": 1350125898.7423124, "uah": 1173682215.293289, "usd": 43717593.67198967, "vef": 10863281776002.777, "vnd": 1012372688421.6324, "xag": 2831817.1851496715, "xau": 33286.138645916224, "xdr": 31328115.060535204, "xlm": 406001951.6421826, "xrp": 140430409.7529443, "zar": 633905326.8318192, "bits": 10925381387.34608, "link": 95034035.45920473, "sats": 1092538138734.608}, "total_volume": {"aed": 6131394.915419954, "ars": 69739552.06240934, "aud": 2356782.036450797, "bch": 10058.900340855807, "bdt": 140083393.9422222, "bhd": 629751.7858703868, "bmd": 1669308.8878561214, "bnb": 110370.9941539411, "brl": 6519479.184286518, "btc": 416.8200363527561, "cad": 2240462.9238360976, "chf": 1657932.5477853836, "clp": 1133311203.1720593, "cny": 11214584.039506238, "czk": 38049559.06623733, "dkk": 11023114.310069108, "eos": 455333.28780875413, "eth": 12163.28274999691, "eur": 1476415.2379376846, "gbp": 1263575.0161182526, "hkd": 13100318.824672896, "huf": 467790429.64392215, "idr": 23883619996.225212, "ils": 6045151.741037782, "inr": 115466930.4274518, "jpy": 183498009.74586985, "krw": 1896495227.0459979, "kwd": 506485.00966442673, "lkr": 296655514.9610279, "ltc": 27400.50078364842, "mmk": 2559940426.9743176, "mxn": 31872114.595836975, "myr": 6784982.762900073, "ngn": 599281890.7403476, "nok": 14282857.240830151, "nzd": 2427026.554451786, "php": 87883804.5433615, "pkr": 233678223.02893722, "pln": 6349633.68218273, "rub": 107919984.94545455, "sar": 6262328.827347858, "sek": 15482005.280421633, "sgd": 2257907.2017141907, "thb": 52832791.64620219, "try": 9620255.498965932, "twd": 51553092.77553622, "uah": 44815782.13585561, "usd": 1669308.8878561214, "vef": 414802629715.31384, "vnd": 38656352846.973015, "xag": 108129.86715192444, "xau": 1270.9950941247725, "xdr": 1196230.0876554737, "xlm": 15484833.510017743, "xrp": 5357766.559012969, "zar": 24204987.220458232, "bits": 416820036.35275614, "link": 3625694.033961512, "sats": 41682003635.27561}}, "community_data": {"facebook_likes": null, "twitter_followers": 84979, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.087, "reddit_subscribers": 13285, "reddit_accounts_active_48h": "1655.08333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 634986, "bing_matches": null}}, "NAV_20190503": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.6769864033207874, "ars": 8.172753187691544, "aud": 0.261250344145549, "bch": 0.0007863656428832194, "bdt": 15.53620290995555, "bhd": 0.06948775483284379, "bmd": 0.1843117853883797, "bnb": 0.008552448971187947, "brl": 0.7272561526029716, "btc": 3.539789234684555e-05, "cad": 0.24796386047225658, "chf": 0.1879198728991428, "clp": 124.99896506395446, "cny": 1.241044975734116, "czk": 4.228940838284736, "dkk": 1.230189011574741, "eos": 0.04111707526144766, "eth": 0.0011957990236621046, "eur": 0.16477786943756323, "gbp": 0.14253475455332273, "hkd": 1.4456587042830273, "huf": 53.262419741534046, "idr": 2616.8402977656765, "ils": 0.6663423977146077, "inr": 12.869059133850959, "jpy": 20.584308815745022, "krw": 213.76296557558874, "kwd": 0.0561083780197159, "lkr": 32.35224768922231, "ltc": 0.0027443150924648524, "mmk": 280.7787751619441, "mxn": 3.504393700303421, "myr": 0.761908058438484, "ngn": 66.26526453379763, "nok": 1.5949788972154213, "nzd": 0.27628815840360127, "php": 9.607328302760244, "pkr": 26.086589003552508, "pln": 0.7073056920171775, "rub": 11.881530226812128, "sar": 0.6912244887420423, "sek": 1.7528972349361838, "sgd": 0.2508844650235209, "thb": 5.881389071743209, "try": 1.0967063617371966, "twd": 5.6977979454356955, "uah": 4.865741558725525, "usd": 0.1843117853883797, "vef": 45799.20098838774, "vnd": 4280.467912434055, "xag": 0.012343017447538969, "xau": 0.00014391985762051627, "xdr": 0.13263112938904886, "xlm": 1.9308738813449795, "xrp": 0.6313013095276158, "zar": 2.64011887626023, "bits": 35.39789234684555, "link": 0.4287961787320004, "sats": 3539.789234684555}, "market_cap": {"aed": 43958710.86956334, "ars": 530680812.23456615, "aud": 16963750.359734047, "bch": 51324.69795281104, "bdt": 1008811179.0422299, "bhd": 4512043.53394476, "bmd": 11967904.29467697, "bnb": 554697.9712368354, "brl": 47222872.990606286, "btc": 2299.040609747717, "cad": 16101020.04284368, "chf": 12202187.989149569, "clp": 8116549072.902629, "cny": 80584686.77777788, "czk": 274597520.24969447, "dkk": 79879777.21482143, "eos": 2670678.4689565552, "eth": 77666.54639913118, "eur": 10699509.893814221, "gbp": 9255199.267724022, "hkd": 93870855.73051363, "huf": 3458484983.0757513, "idr": 169919108385.39432, "ils": 43267564.39654565, "inr": 835625718.4093062, "jpy": 1336599487.4381156, "krw": 13880255721.923414, "kwd": 3643281.393289863, "lkr": 2100726240.8446496, "ltc": 178213.95575184646, "mmk": 18231788607.732895, "mxn": 227550551.5164114, "myr": 49472922.77333579, "ngn": 4302797796.303817, "nok": 103566653.39484611, "nzd": 17940199.70323245, "php": 623831978.0403197, "pkr": 1693878662.7844832, "pln": 45927431.12603769, "rub": 771502572.8233443, "sar": 44883231.47632718, "sek": 113820753.79452541, "sgd": 16290663.454297125, "thb": 381895826.04314137, "try": 71212357.63072203, "twd": 369974716.2542576, "uah": 315946856.9779848, "usd": 11967904.29467697, "vef": 2973876320750.2124, "vnd": 277943324158.5649, "xag": 801468.2903125283, "xau": 9345.138068498532, "xdr": 8612127.86625814, "xlm": 125327236.77881612, "xrp": 41004652.32582726, "zar": 171430654.69781187, "bits": 2299040609.747717, "link": 27849675.866290938, "sats": 229904060974.7717}, "total_volume": {"aed": 839538.2553769199, "ars": 10135120.76337743, "aud": 323979.4138622391, "bch": 975.1806486454683, "bdt": 19266615.43308045, "bhd": 86172.52603045524, "bmd": 228567.06425910912, "bnb": 10605.985664189177, "brl": 901878.3221841438, "btc": 43.89731409540442, "cad": 307502.6999009924, "chf": 233041.49310904567, "clp": 155012585.98244962, "cny": 1539033.4704822856, "czk": 5244355.863057789, "dkk": 1525570.8703974246, "eos": 50989.7354834177, "eth": 1482.9234696328226, "eur": 204342.84108773616, "gbp": 176758.91063881828, "hkd": 1792777.1968695375, "huf": 66051310.22959745, "idr": 3245172321.6444054, "ils": 826338.5074159553, "inr": 15959061.216856057, "jpy": 25526826.87058582, "krw": 265089795.457072, "kwd": 69580.61426882222, "lkr": 40120376.78940144, "ltc": 3403.255211081058, "mmk": 348196835.10634685, "mxn": 4345837.019584148, "myr": 944850.5302343052, "ngn": 82176280.5071189, "nok": 1977950.8039790525, "nzd": 342627.9720680753, "php": 11914153.079837749, "pkr": 32350264.81085715, "pln": 877137.5374475454, "rub": 14734415.80051849, "sar": 857195.0610909393, "sek": 2173787.0646362556, "sgd": 311124.57360124233, "thb": 7293575.020508188, "try": 1360037.5739855624, "twd": 7065901.653470329, "uah": 6034059.412847251, "usd": 228567.06425910912, "vef": 56796090891.69325, "vnd": 5308255152.207172, "xag": 15306.71115869302, "xau": 178.47659212672534, "xdr": 164477.31657498353, "xlm": 2394497.853643157, "xrp": 782883.6700680977, "zar": 3274040.341860332, "bits": 43897314.09540442, "link": 531754.8388551214, "sats": 4389731409.5404415}}, "community_data": {"facebook_likes": null, "twitter_followers": 48698, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 11328, "reddit_accounts_active_48h": "178.4"}, "developer_data": {"forks": 60, "stars": 79, "subscribers": 22, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 172, "pull_request_contributors": 15, "code_additions_deletions_4_weeks": {"additions": 156, "deletions": -170}, "commit_count_4_weeks": 30}, "public_interest_stats": {"alexa_rank": 1024643, "bing_matches": null}}, "BNT_20190618": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 2.6929021790112637, "ars": 32.1688606485766, "aud": 1.066699155488476, "bch": 0.001744937440135521, "bdt": 62.023240724041685, "bhd": 0.276266283752707, "bmd": 0.7331265673460323, "bnb": 0.022535338691831802, "brl": 2.856627669663818, "btc": 8.437428441765362e-05, "cad": 0.984591179325425, "chf": 0.7326023818503804, "clp": 512.8256994913867, "cny": 5.077194729498214, "czk": 16.709933911547925, "dkk": 4.8843091296294725, "eos": 0.1119483379133537, "eth": 0.0027740971935644675, "eur": 0.6528565394873157, "gbp": 0.5822637823175664, "hkd": 5.739024738169845, "huf": 210.8398695030459, "idr": 10487.245630725345, "ils": 2.639732174714489, "inr": 51.23088452614074, "jpy": 79.59188578392204, "krw": 869.8620034217392, "kwd": 0.22290126778902256, "lkr": 129.71549479845174, "ltc": 0.005546501924219212, "mmk": 1119.5957329006933, "mxn": 14.046265154409548, "myr": 3.0552683130862204, "ngn": 264.9241838007632, "nok": 6.390810912868834, "nzd": 1.1294547896532954, "php": 38.08548676393911, "pkr": 112.53492808761608, "pln": 2.7840481394965555, "rub": 47.200521222155935, "sar": 2.750287661070277, "sek": 6.9564180595763, "sgd": 1.0052470203604011, "thb": 22.831943968499367, "try": 4.325813310625266, "twd": 23.099343819546565, "uah": 19.404393984514826, "usd": 0.7331265673460323, "vef": 182172.8921840531, "vnd": 17148.114681516403, "xag": 0.049309022554905796, "xau": 0.0005464798745654063, "xdr": 0.5275894023046006, "xlm": 5.874927553392306, "xrp": 1.809284668372712, "zar": 10.863535456324604, "bits": 84.37428441765361, "link": 0.4487859475734502, "sats": 8437.428441765362}, "market_cap": {"aed": 176424421.62182155, "ars": 2107530187.4655874, "aud": 69884373.45341589, "bch": 114018.63289853677, "bdt": 4063428095.2112913, "bhd": 18099476.358468063, "bmd": 48030497.21884244, "bnb": 1473729.4915971812, "brl": 187150832.4132198, "btc": 5520.378094585277, "cad": 64505101.856397286, "chf": 47996155.41333101, "clp": 33597572957.06638, "cny": 332630405.4393714, "czk": 1094744713.9599087, "dkk": 319993581.6210939, "eos": 7324783.760358617, "eth": 181448.04699453615, "eur": 42771638.07835139, "gbp": 38146781.50114904, "hkd": 375989936.8036815, "huf": 13813090695.166904, "idr": 687067751375.2212, "ils": 172941009.81102514, "inr": 3356371145.65271, "jpy": 5214430930.563631, "krw": 56988665255.1288, "kwd": 14603288.435411286, "lkr": 8498259358.833358, "ltc": 363353.0630501427, "mmk": 73349871809.96938, "mxn": 920235508.4146898, "myr": 200164695.63466504, "ngn": 17356403164.20396, "nok": 418691450.35609376, "nzd": 73995784.01534866, "php": 2495155608.2815304, "pkr": 7372681323.092344, "pln": 182395813.1885543, "rub": 3092323487.1921268, "sar": 180184008.79162645, "sek": 455746978.9604305, "sgd": 65858361.11553785, "thb": 1495825782.5107145, "try": 283403948.83977973, "twd": 1513344378.035819, "uah": 1271271200.3883214, "usd": 48030497.21884244, "vef": 11934985009573.06, "vnd": 1123451953870.082, "xag": 3230461.118413405, "xau": 35802.412931897336, "xdr": 34564811.11005947, "xlm": 384335696.58078337, "xrp": 118448653.17644072, "zar": 711720230.5335552, "bits": 5520378094.585277, "link": 29362834.081989687, "sats": 552037809458.5277}, "total_volume": {"aed": 15702124.548879053, "ars": 187574379.95202094, "aud": 6219848.283465662, "bch": 10174.608356947498, "bdt": 361653185.31235677, "bhd": 1610889.4076998043, "bmd": 4274809.816814893, "bnb": 131401.98617249363, "brl": 16656796.45121925, "btc": 491.9805602203423, "cad": 5741082.4084118605, "chf": 4271753.327795872, "clp": 2990250840.9111032, "cny": 29604767.90536987, "czk": 97434457.71171688, "dkk": 28480065.442565866, "eos": 652762.9405390762, "eth": 16175.56700854187, "eur": 3806760.8899718327, "gbp": 3395139.452710727, "hkd": 33463852.467499513, "huf": 1229392555.2177975, "idr": 61150396903.31367, "ils": 15392093.966914529, "inr": 298723709.9990247, "jpy": 464094727.76250905, "krw": 5072104595.749029, "kwd": 1299721.7263240346, "lkr": 756361991.5791389, "ltc": 32341.265384049104, "mmk": 6528284532.360905, "mxn": 81902791.20428312, "myr": 17815056.171085212, "ngn": 1544754414.947618, "nok": 37264372.13513879, "nzd": 6585772.003785011, "php": 222073813.64726323, "pkr": 656183306.8810867, "pln": 16233590.27935454, "rub": 275222943.0310849, "sar": 16036735.28729025, "sek": 40562387.90881149, "sgd": 5861525.17500063, "thb": 133131470.82752067, "try": 25223515.32411629, "twd": 134690660.68529576, "uah": 113145666.23145683, "usd": 4274809.816814893, "vef": 1062237412409.0128, "vnd": 99989459181.35622, "xag": 287517.46705663705, "xau": 3186.485985551991, "xdr": 3076336.9610021194, "xlm": 34256292.292383865, "xrp": 10549812.55115499, "zar": 63344516.598446794, "bits": 491980560.2203423, "link": 2616839.5196487913, "sats": 49198056022.034225}}, "community_data": {"facebook_likes": null, "twitter_followers": 796, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 5132, "reddit_accounts_active_48h": "1212.8"}, "developer_data": {"forks": 213, "stars": 549, "subscribers": 70, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 198, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 144123, "bing_matches": null}}, "LRC_20190905": {"id": "loopring", "symbol": "lrc", "name": "Loopring", "localization": {"en": "Loopring", "de": "Loopring", "es": "Loopring", "fr": "Loopring", "it": "Loopring", "pl": "Loopring", "ro": "Loopring", "hu": "Loopring", "nl": "Loopring", "pt": "Loopring", "sv": "Loopring", "vi": "Loopring", "tr": "Loopring", "ru": "Loopring", "ja": "\u30eb\u30fc\u30d7\u30ea\u30f3\u30b0", "zh": "\u8def\u5370\u534f\u8bae", "zh-tw": "\u8def\u5370\u5354\u8b70", "ko": "\ub8e8\ud504\ub9c1", "ar": "Loopring", "th": "Loopring", "id": "Loopring"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/913/thumb/LRC.png?1572852344", "small": "https://assets.coingecko.com/coins/images/913/small/LRC.png?1572852344"}, "market_data": {"current_price": {"aed": 0.12134219609417703, "ars": 1.9657600023827444, "aud": 0.049098112614510345, "bch": 0.000117591759645183, "bdt": 2.791194827695326, "bhd": 0.012456839071953501, "bmd": 0.03303631753664093, "bnb": 0.0015408740589921523, "brl": 0.13694911411588434, "btc": 3.395486043632694e-06, "cad": 0.043996115879421385, "chf": 0.03268061550572391, "clp": 23.842145184606068, "cny": 0.2364310137144782, "czk": 0.7798255790841628, "dkk": 0.22411305932144854, "eos": 0.010131064877559697, "eth": 0.0001936160682775836, "eur": 0.03005898549128623, "gbp": 0.027169298796356243, "hkd": 0.25906584667470783, "huf": 9.960759584919414, "idr": 468.6203055535828, "ils": 0.11664145847188821, "inr": 2.370042929326914, "jpy": 3.50561579908311, "krw": 39.978871090551245, "kwd": 0.01003461627016701, "lkr": 5.936806276228625, "ltc": 0.0004993991302706809, "mmk": 50.27801245886611, "mxn": 0.6644297219286757, "myr": 0.13893360571031005, "ngn": 11.979959828312099, "nok": 0.3010632653431625, "nzd": 0.052422359030317243, "php": 1.7230196797088024, "pkr": 5.1812403553101145, "pln": 0.13143551790060637, "rub": 2.206039747090242, "sar": 0.12390270892117176, "sek": 0.3243959244387183, "sgd": 0.045893325522915855, "thb": 1.011935442464848, "try": 0.19285013131017453, "twd": 1.0349917858005293, "uah": 0.8309003867221594, "usd": 0.03303631753664093, "vef": 8209.116653004894, "vnd": 769.4761786079263, "xag": 0.001789526445030833, "xau": 2.160608203213854e-05, "xdr": 0.02414337032790515, "xlm": 0.5315952559104812, "xrp": 0.12851403917760634, "zar": 0.5032546466910438, "bits": 3.395486043632694, "link": 0.01870235545570727, "sats": 339.5486043632694}, "market_cap": {"aed": 116625965.67389414, "ars": 1889356431.1549964, "aud": 47189806.849949144, "bch": 113074.00810030082, "bdt": 2682708922.717178, "bhd": 11972676.717366507, "bmd": 31752288.643513713, "bnb": 1481338.4687062283, "brl": 131626286.61799675, "btc": 3264.4235958575964, "cad": 42286110.40099936, "chf": 31410411.751689, "clp": 22915467952.58062, "cny": 227241604.1350345, "czk": 749515948.6590071, "dkk": 215402414.03912547, "eos": 9739469.036807997, "eth": 186089.77414201552, "eur": 28890677.13409433, "gbp": 26113304.4464462, "hkd": 248996684.69913802, "huf": 9573612830.73458, "idr": 450406350212.78186, "ils": 112107932.52280864, "inr": 2277926015.9986567, "jpy": 3369362357.1178064, "krw": 38425004636.21831, "kwd": 9644598.914024066, "lkr": 5706059287.460234, "ltc": 480103.3081881905, "mmk": 48323847300.63987, "mxn": 638605204.427211, "myr": 133533646.59681286, "ngn": 11514332430.797379, "nok": 289361781.6372048, "nzd": 50384849.142414115, "php": 1656050743.1825342, "pkr": 4979860092.177677, "pln": 126326988.40483746, "rub": 2120297176.9169996, "sar": 119086958.55749835, "sek": 311787565.79432523, "sgd": 44109580.83321927, "thb": 972604353.4394675, "try": 185354588.24999544, "twd": 994764561.4543746, "uah": 798605621.9476509, "usd": 31752288.643513713, "vef": 7890051340782.409, "vnd": 739568800317.0537, "xag": 1719972.5772946277, "xau": 20766.3142957444, "xdr": 23204985.320432197, "xlm": 511169700.64428467, "xrp": 123421704.58890349, "zar": 483694551.76717395, "bits": 3264423595.8575964, "link": 17980462.785943113, "sats": 326442359585.75964}, "total_volume": {"aed": 11335693.65647181, "ars": 183639771.70696202, "aud": 4586707.523218724, "bch": 10985.330798106645, "bdt": 260751251.59038705, "bhd": 1163708.2251094163, "bmd": 3086227.109674505, "bnb": 143947.257080981, "brl": 12793679.808942912, "btc": 317.20366735057604, "cad": 4110082.9533090065, "chf": 3052997.702384639, "clp": 2227314673.916541, "cny": 22087201.555807535, "czk": 72850699.54657766, "dkk": 20936467.829467174, "eos": 946436.2073744345, "eth": 18087.462627277604, "eur": 2808087.0638693087, "gbp": 2538134.77858608, "hkd": 24201730.060001034, "huf": 930526419.2909247, "idr": 43778144750.526306, "ils": 10896554.401036208, "inr": 221407568.54841703, "jpy": 327491903.516, "krw": 3734795067.1861424, "kwd": 937426.0534280837, "lkr": 554611828.4600285, "ltc": 46653.47863543867, "mmk": 4696932849.704122, "mxn": 62070508.25248458, "myr": 12979069.47142103, "ngn": 1119158536.7812657, "nok": 28125096.27317474, "nzd": 4897256.039902606, "php": 160963159.41152185, "pkr": 484027447.3255812, "pln": 12278603.935473759, "rub": 206086518.7210467, "sar": 11574894.774834227, "sek": 30304815.15260586, "sgd": 4287318.8037634175, "thb": 94534222.59643973, "try": 18015909.39104, "twd": 96688128.27232572, "uah": 77622068.38267656, "usd": 3086227.109674505, "vef": 766889297903.2728, "vnd": 71883866597.25716, "xag": 167176.16974131909, "xau": 2018.423391998224, "xdr": 2255454.8927025525, "xlm": 49661215.67107624, "xrp": 12005681.66363581, "zar": 47013657.98306485, "bits": 317203667.35057604, "link": 1747159.5118964189, "sats": 31720366735.057606}}, "community_data": {"facebook_likes": null, "twitter_followers": 34422, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2439, "reddit_accounts_active_48h": "9.19047619047619"}, "developer_data": {"forks": 10, "stars": 25, "subscribers": 17, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 309, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 29829, "deletions": -29384}, "commit_count_4_weeks": 40}, "public_interest_stats": {"alexa_rank": 519433, "bing_matches": null}}, "NXS_20200325": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.467675908782037, "ars": 8.068026967507747, "aud": 0.21979647225961013, "bch": 0.0005791281258571392, "bdt": 10.781228698139666, "bhd": 0.048092184528914235, "bmd": 0.1273280448630649, "bnb": 0.010597908926831788, "brl": 0.644776486382075, "btc": 2.0675029004168046e-05, "cad": 0.18292583565252235, "chf": 0.12557932149491557, "clp": 108.85112581337555, "cny": 0.9034943407393364, "czk": 3.24635583182871, "dkk": 0.8890553404518651, "eos": 0.056169693731733444, "eth": 0.0009637122363800564, "eur": 0.1182961573287484, "gbp": 0.10929444654106428, "hkd": 0.9876027906943067, "huf": 41.808163530787354, "idr": 2008.0769077705743, "ils": 0.45935183784911504, "inr": 9.62887780546162, "jpy": 14.133285950976257, "krw": 159.79032990090346, "kwd": 0.039627034122283036, "lkr": 23.76976468683911, "ltc": 0.0033373574735129003, "mmk": 181.08504876015914, "mxn": 3.109707501409717, "myr": 0.5595430931507394, "ngn": 47.05141362118251, "nok": 1.5020291010684916, "nzd": 0.22295242517958533, "php": 6.478262477126345, "pkr": 20.21014392088998, "pln": 0.5402229722634428, "rub": 10.183365975231292, "sar": 0.4784910255846609, "sek": 1.3217294063412712, "sgd": 0.18458746663798523, "thb": 4.135869425914031, "try": 0.8343170139652323, "twd": 3.854156253982538, "uah": 3.4847080747223043, "usd": 0.1273280448630649, "vef": 31639.445659179255, "vnd": 2972.4268529168794, "xag": 0.010109825116359735, "xau": 8.497746386116085e-05, "xdr": 0.09434002232798688, "xlm": 3.225803052012069, "xrp": 0.8082143377528423, "zar": 2.246488167212956, "bits": 20.675029004168046, "link": 0.05624137707869787, "sats": 2067.5029004168046}, "market_cap": {"aed": 27923939.846504264, "ars": 481724834.4208783, "aud": 13123582.708878962, "bch": 34578.51611807172, "bdt": 643724374.0484518, "bhd": 2871482.6713433745, "bmd": 7602488.387286765, "bnb": 632778.7380416548, "brl": 38498240.94438148, "btc": 1234.4622748275594, "cad": 10922114.941595543, "chf": 7498075.81177577, "clp": 6499270611.036681, "cny": 53945737.09850945, "czk": 193833043.9222638, "dkk": 53083614.91539115, "eos": 3353773.669989255, "eth": 57541.22034658546, "eur": 7063213.476022974, "gbp": 6525740.354506962, "hkd": 58967674.84005752, "huf": 2496277061.9656086, "idr": 119898027088.39795, "ils": 27426927.168185443, "inr": 574919938.3164326, "jpy": 843868626.3662921, "krw": 9540742801.625538, "kwd": 2366046.4358913857, "lkr": 1419242400.1686153, "ltc": 199266.55956975624, "mmk": 10812205447.676022, "mxn": 185674060.98751622, "myr": 33409135.21793173, "ngn": 2809340440.632413, "nok": 89682982.33528, "nzd": 13312017.986046208, "php": 386803357.46233743, "pkr": 1206704969.2720919, "pln": 32255571.642486803, "rub": 608027254.7453887, "sar": 28569687.607632015, "sek": 78917668.71667229, "sgd": 11021327.415049624, "thb": 246944020.19336042, "try": 49815305.1576965, "twd": 230123522.23897642, "uah": 208064552.46879882, "usd": 7602488.387286765, "vef": 1889124414521.4702, "vnd": 177477323677.29977, "xag": 603636.2855275441, "xau": 5073.824724791312, "xdr": 5632843.298396896, "xlm": 192605880.8879887, "xrp": 48256769.5421122, "zar": 134133059.38830012, "bits": 1234462274.8275595, "link": 3358053.731097906, "sats": 123446227482.75595}, "total_volume": {"aed": 103618.16553343792, "ars": 1787550.177695979, "aud": 48698.055252780505, "bch": 128.31149281649627, "bdt": 2388686.5218416294, "bhd": 10655.293214395904, "bmd": 28210.771993857332, "bnb": 2348.0702359645124, "brl": 142856.5282996943, "btc": 4.5807546156091385, "cad": 40529.00558497517, "chf": 27823.3252512937, "clp": 24117030.108318117, "cny": 200177.99591401298, "czk": 719261.8427553881, "dkk": 196978.8943699096, "eos": 12444.944273941215, "eth": 213.51985886099544, "eur": 26209.66909324509, "gbp": 24215.252145595354, "hkd": 218813.0445161353, "huf": 9263006.984183054, "idr": 444909052.4571348, "ils": 101773.88631433967, "inr": 2133371.9261826775, "jpy": 3131367.546841487, "krw": 35403108.3136913, "kwd": 8779.756459928274, "lkr": 5266423.533395317, "ltc": 739.4241453131658, "mmk": 40121161.269407555, "mxn": 688986.0704623533, "myr": 123972.2375270062, "ngn": 10424700.25423983, "nok": 332789.21814869804, "nzd": 49397.287447420094, "php": 1435322.32710491, "pkr": 4477754.784725007, "pln": 119691.67603851839, "rub": 2256224.1960615264, "sar": 106014.36029582415, "sek": 292842.0597360964, "sgd": 40897.15615949499, "thb": 916342.2676937024, "try": 184851.08348975008, "twd": 853925.9628680634, "uah": 772071.1102323775, "usd": 28210.771993857332, "vef": 7010028218.552041, "vnd": 658570201.9240016, "xag": 2239.9305004810353, "xau": 18.82758712098044, "xdr": 20901.953396460765, "xlm": 714708.1736413232, "xrp": 179067.780621563, "zar": 497731.39562694187, "bits": 4580754.615609138, "link": 12460.826419615758, "sats": 458075461.56091386}}, "community_data": {"facebook_likes": null, "twitter_followers": 23634, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 3532, "reddit_accounts_active_48h": "778.166666666667"}, "developer_data": {"forks": 7, "stars": 21, "subscribers": 11, "total_issues": 32, "closed_issues": 30, "pull_requests_merged": 78, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 12383, "deletions": -7854}, "commit_count_4_weeks": 85}, "public_interest_stats": {"alexa_rank": 599319, "bing_matches": null}}, "NXS_20211003": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 2.0819991805822546, "ars": 55.90314036329807, "aud": 0.7898152200226657, "bch": 0.0011705195492107108, "bdt": 48.56796341683463, "bhd": 0.21370475744671916, "bmd": 0.5668080095236444, "bnb": 0.0015411002660238827, "brl": 3.069718817978152, "btc": 1.3647032746464784e-05, "cad": 0.7230543054289323, "chf": 0.5296565785394168, "clp": 458.96137643334794, "cny": 3.6675879064236967, "czk": 12.465085873241376, "dkk": 3.633424120457671, "dot": 0.02080338481106253, "eos": 0.15138382728378216, "eth": 0.00019890323580480513, "eur": 0.4886168446098575, "gbp": 0.4221552046451536, "hkd": 4.412773230584484, "huf": 176.04489967794916, "idr": 8127.488388960013, "ils": 1.824322591372711, "inr": 42.125875243345064, "jpy": 63.46133623618196, "krw": 673.5938852300542, "kwd": 0.17095836460048291, "lkr": 113.2354519805133, "ltc": 0.003916422947513351, "mmk": 1060.929186228828, "mxn": 11.630956469418129, "myr": 2.3717174265701657, "ngn": 233.29201891771675, "nok": 4.971359689929987, "nzd": 0.8253104380030644, "php": 28.814068326348885, "pkr": 96.62890743341418, "pln": 2.2636804191068993, "rub": 41.30885437248128, "sar": 2.126085507563004, "sek": 4.989170498013241, "sgd": 0.7718281346484427, "thb": 19.239447671265882, "try": 5.063553279911035, "twd": 15.770695447774983, "uah": 15.074330431090484, "usd": 0.5668080095236444, "vef": 0.0567544859936025, "vnd": 12961.524722796232, "xag": 0.026276998266392453, "xau": 0.0003278927654293338, "xdr": 0.4004101821677878, "xlm": 2.0920364941889535, "xrp": 0.6123168507181319, "yfi": 1.982980194110007e-05, "zar": 8.600262949703685, "bits": 13.647032746464784, "link": 0.02482232196334881, "sats": 1364.7032746464783}, "market_cap": {"aed": 179706167.43127224, "ars": 4809944475.231549, "aud": 67144656.62724817, "bch": 76548.52385562802, "bdt": 4171781954.9598327, "bhd": 18443512.260493778, "bmd": 48923599.97584459, "bnb": 115922.89329513421, "brl": 257174535.35462344, "btc": 1021.8120047259132, "cad": 62060956.43015821, "chf": 45381580.26119345, "clp": 38338000649.07105, "cny": 315933931.56401134, "czk": 1053031565.8800837, "dkk": 309243335.7257149, "dot": 1360988.3603856259, "eos": 9764901.284249991, "eth": 13716.55082933831, "eur": 41588240.013466336, "gbp": 35487907.40887826, "hkd": 380759903.09400433, "huf": 14587696575.597477, "idr": 697208665234.7959, "ils": 157108845.83842948, "inr": 3597719233.2236724, "jpy": 5375969783.345682, "krw": 57643298502.792885, "kwd": 14721160.156331657, "lkr": 9765483724.894411, "ltc": 264342.9961347948, "mmk": 89468090453.43626, "mxn": 975649107.7982855, "myr": 204231568.09916317, "ngn": 20167595872.736057, "nok": 422626518.39133346, "nzd": 69267940.8661998, "php": 2445483669.193769, "pkr": 8221119929.767724, "pln": 190152676.96331427, "rub": 3548551015.247943, "sar": 183523529.166588, "sek": 421851519.6441165, "sgd": 65838445.431493066, "thb": 1621377026.7994697, "try": 417583914.0182237, "twd": 1356211114.9303877, "uah": 1307081008.4390445, "usd": 48923599.97584459, "vef": 4898720.065581322, "vnd": 1113416048552.537, "xag": 2139999.4761194023, "xau": 27838.506858255114, "xdr": 34377830.92542639, "xlm": 148687854.1426868, "xrp": 44897468.71988961, "yfi": 1415.4826533345772, "zar": 714911173.1158211, "bits": 1021812004.7259133, "link": 1652791.1432296732, "sats": 102181200472.59132}, "total_volume": {"aed": 1092813.807262685, "ars": 29342818.30085593, "aud": 414563.55299121817, "bch": 614.3902154133542, "bdt": 25492681.02867486, "bhd": 112170.79804526427, "bmd": 297510.02048967726, "bnb": 808.9031277217449, "brl": 1611254.7689679936, "btc": 7.16314682185991, "cad": 379521.63273786183, "chf": 278009.72619668127, "clp": 240902750.51231405, "cny": 1925068.3385805078, "czk": 6542758.555353353, "dkk": 1907136.219605514, "dot": 10919.421280929644, "eos": 79459.36684073099, "eth": 104.40167528592798, "eur": 256468.51316312625, "gbp": 221583.67820058894, "hkd": 2316206.250068391, "huf": 92403637.26388912, "idr": 4266011059.3025074, "ils": 957562.7768478729, "inr": 22111314.23023826, "jpy": 33310015.255070597, "krw": 353560512.95911515, "kwd": 89733.7823400142, "lkr": 59435789.67275526, "ltc": 2055.6785574363594, "mmk": 556867684.7003314, "mxn": 6104935.073940208, "myr": 1244883.079135776, "ngn": 122451892.28468868, "nok": 2609400.8877108647, "nzd": 433194.523004343, "php": 15124123.008366589, "pkr": 50719234.286351345, "pln": 1188175.8841703192, "rub": 21682470.791283574, "sar": 1115954.136656372, "sek": 2618749.545084709, "sgd": 405122.37000099896, "thb": 10098531.38049139, "try": 2657792.082583588, "twd": 8277829.259588596, "uah": 7912316.481185528, "usd": 297510.02048967726, "vef": 29789.67835163138, "vnd": 6803332735.3602, "xag": 13792.448520993456, "xau": 172.1065717530738, "xdr": 210170.00377452257, "xlm": 1098082.260295485, "xrp": 321397.00876214745, "yfi": 10.408400521300015, "zar": 4514164.167392948, "bits": 7163146.82185991, "link": 13028.908187313133, "sats": 716314682.185991}}, "community_data": {"facebook_likes": null, "twitter_followers": 26657, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.667, "reddit_subscribers": 4099, "reddit_accounts_active_48h": "13.5384615384615"}, "developer_data": {"forks": 9, "stars": 27, "subscribers": 14, "total_issues": 45, "closed_issues": 42, "pull_requests_merged": 89, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 1586, "deletions": -613}, "commit_count_4_weeks": 24}, "public_interest_stats": {"alexa_rank": 581951, "bing_matches": null}}, "QLC_20190819": {"id": "qlink", "symbol": "qlc", "name": "QLC Chain", "localization": {"en": "QLC Chain", "de": "QLC Chain", "es": "QLC Chain", "fr": "QLC Chain", "it": "QLC Chain", "pl": "QLC Chain", "ro": "QLC Chain", "hu": "QLC Chain", "nl": "QLC Chain", "pt": "QLC Chain", "sv": "QLC Chain", "vi": "QLC Chain", "tr": "QLC Chain", "ru": "QLC Chain", "ja": "QLC Chain", "zh": "QLC Chain", "zh-tw": "QLC Chain", "ko": "\ud050\ub9c1\ud06c", "ar": "QLC Chain", "th": "QLC Chain", "id": "QLC Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2053/thumb/QLC_Chain_logo.jpg?1547036348", "small": "https://assets.coingecko.com/coins/images/2053/small/QLC_Chain_logo.jpg?1547036348"}, "market_data": {"current_price": {"aed": 0.05125851517527049, "ars": 0.7989431813704397, "aud": 0.02059918781584991, "bch": 4.444008240666767e-05, "bdt": 1.1787141469120743, "bhd": 0.005260878742969116, "bmd": 0.01395543691782017, "bnb": 0.0004978963471778533, "brl": 0.05570452200117115, "btc": 1.3544997464198755e-06, "cad": 0.018581943364815976, "chf": 0.013629605376662973, "clp": 9.922420746965596, "cny": 0.0981625432799474, "czk": 0.324561052135705, "dkk": 0.09368502507748631, "eos": 0.0038574346435038425, "eth": 7.436786066291045e-05, "eur": 0.012559460607493743, "gbp": 0.011542960537836636, "hkd": 0.10944481625615919, "huf": 4.089919897505576, "idr": 200.31674728667542, "ils": 0.049291998737432736, "inr": 0.9967000957581027, "jpy": 1.4808222656096324, "krw": 16.920967262856948, "kwd": 0.004244197252632079, "lkr": 2.472498686256255, "ltc": 0.00018299806834490496, "mmk": 21.166924072797396, "mxn": 0.27361308729816636, "myr": 0.058501121782317755, "ngn": 5.075592407011196, "nok": 0.12585013012490265, "nzd": 0.021683399665432295, "php": 0.7364346721445486, "pkr": 2.2360127549777506, "pln": 0.05491250908977417, "rub": 0.922005015199162, "sar": 0.05234056393213055, "sek": 0.13450668764502652, "sgd": 0.01938269237972362, "thb": 0.4305252289147533, "try": 0.07764869296084992, "twd": 0.43602129863609856, "uah": 0.3520901749944588, "usd": 0.01395543691782017, "vef": 3467.7536161521575, "vnd": 325.1102324064009, "xag": 0.0008084494854444903, "xau": 9.162442108394856e-06, "xdr": 0.010160939664427982, "xlm": 0.1984845281074831, "xrp": 0.05282871178213982, "zar": 0.2131172590954379, "bits": 1.3544997464198756, "link": 0.005757508325898896, "sats": 135.44997464198755}, "market_cap": {"aed": 12442808.736872803, "ars": 193958698.28692552, "aud": 5000248.805341827, "bch": 10704.539413506405, "bdt": 286128356.1438192, "bhd": 1277058.2168214165, "bmd": 3387628.9981124112, "bnb": 120402.5339727381, "brl": 13522059.90886546, "btc": 326.98688231118143, "cad": 4510414.590359762, "chf": 3308317.8280085977, "clp": 2408604217.6579127, "cny": 23828582.372722603, "czk": 78789651.394806, "dkk": 22742373.01076786, "eos": 929850.4419611373, "eth": 17896.36901967632, "eur": 3048771.2446892112, "gbp": 2801545.468035967, "hkd": 26567046.80118473, "huf": 992575296.4469318, "idr": 48626125137.60612, "ils": 11965444.384232791, "inr": 241972241.6029721, "jpy": 359418967.62723047, "krw": 4107513026.4262056, "kwd": 1030262.6690509341, "lkr": 600189610.4493122, "ltc": 44080.543128448706, "mmk": 5138189955.076815, "mxn": 66420903.00308995, "myr": 14200923.821942167, "ngn": 1232080666.613484, "nok": 30550654.59367704, "nzd": 5263477.741382153, "php": 178761987.6962459, "pkr": 542783554.0741336, "pln": 13330299.781798301, "rub": 223874849.9692559, "sar": 12705471.938870462, "sek": 32652678.38700576, "sgd": 4705301.498992195, "thb": 104493110.2612759, "try": 18869950.589622572, "twd": 105846678.07901981, "uah": 85468544.89655055, "usd": 3387628.9981124112, "vef": 841783942528.1919, "vnd": 78924784189.9388, "xag": 196287.5577179678, "xau": 2224.960849670242, "xdr": 2466529.2858966384, "xlm": 47715645.76150805, "xrp": 12682118.56457349, "zar": 51770762.637853056, "bits": 326986882.3111814, "link": 1389907.7518045998, "sats": 32698688231.118145}, "total_volume": {"aed": 467463.25754047843, "ars": 7286137.354469481, "aud": 187858.80562788888, "bch": 405.28106629999644, "bdt": 10749541.865200091, "bhd": 47977.73611476491, "bmd": 127269.6639709179, "bnb": 4540.674804438208, "brl": 508009.59070631734, "btc": 12.352657146507868, "cad": 169462.10297055717, "chf": 124298.17185652551, "clp": 90489689.55116223, "cny": 895214.8163714394, "czk": 2959905.6114547527, "dkk": 854381.1083043542, "eos": 35178.72021918717, "eth": 678.2139959171587, "eur": 114538.75221424339, "gbp": 105268.55716026567, "hkd": 998105.9762087286, "huf": 37298920.41995707, "idr": 1826832457.131313, "ils": 449529.1801116801, "inr": 9089624.854735773, "jpy": 13504683.031753415, "krw": 154314467.56473786, "kwd": 38705.88655515559, "lkr": 22548493.380852267, "ltc": 1668.8909707902587, "mmk": 193036400.78820577, "mxn": 2495274.485746615, "myr": 533513.7950177697, "ngn": 46287976.78622284, "nok": 1147717.8296897407, "nzd": 197746.5130914536, "php": 6716077.311824479, "pkr": 20391808.127291176, "pln": 500786.6554669764, "rub": 8408426.705297831, "sar": 477331.23820612713, "sek": 1226663.2022509014, "sgd": 176764.70901954483, "thb": 3926269.1335028266, "try": 708134.2647387324, "twd": 3976391.7452644943, "uah": 3210963.4777386677, "usd": 127269.6639709179, "vef": 31624938728.937874, "vnd": 2964913981.233679, "xag": 7372.832176869836, "xau": 83.55889788010636, "xdr": 92664.91506756165, "xlm": 1810123.1329711275, "xrp": 481783.0094551859, "zar": 1943569.5285788355, "bits": 12352657.146507869, "link": 52506.85838515263, "sats": 1235265714.6507869}}, "community_data": {"facebook_likes": null, "twitter_followers": 24864, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5756, "reddit_accounts_active_48h": "109.52"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 940522, "bing_matches": null}}, "BRD_20210502": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 1.233147567703288, "ars": 31.367746431355236, "aud": 0.4304239612118035, "bch": 0.00037271628164160797, "bdt": 28.46327769451772, "bhd": 0.12657253309532962, "bmd": 0.3357147902927385, "bnb": 0.0005998353381390773, "brl": 1.7936573172908319, "btc": 6.136905820332216e-06, "cad": 0.41314740667375854, "chf": 0.30519831585512885, "clp": 233.7584877955395, "cny": 2.175062554827626, "czk": 7.165932913235598, "dkk": 2.057562042510372, "dot": 0.009924210643134937, "eos": 0.056519610312980854, "eth": 0.00012264272305219167, "eur": 0.2767092230360968, "gbp": 0.2406235759423204, "hkd": 2.6060364168659245, "huf": 100.17057912754748, "idr": 4855.477906534892, "ils": 1.0914557833123308, "inr": 24.94765696769181, "jpy": 36.43905405351736, "krw": 372.52879143837157, "kwd": 0.10103403756818019, "lkr": 65.45545409366237, "ltc": 0.0012962925085344087, "mmk": 522.804493488074, "mxn": 6.681462899364164, "myr": 1.37726992717596, "ngn": 133.9922348328363, "nok": 2.7454607835632427, "nzd": 0.46196604433375776, "php": 16.278398930676804, "pkr": 51.59205173557612, "pln": 1.2664984821153356, "rub": 24.975233251996027, "sar": 1.2589771279536208, "sek": 2.7991110284851377, "sgd": 0.44471433269019434, "thb": 10.522367086518804, "try": 2.7549091406212427, "twd": 9.351000104528728, "uah": 9.328139605883722, "usd": 0.3357147902927385, "vef": 0.03361512195201192, "vnd": 7695.283127376129, "xag": 0.012767975404519386, "xau": 0.0001882957115793911, "xdr": 0.23386328721019553, "xlm": 0.6749046287396134, "xrp": 0.2465064729422171, "yfi": 7.001836687470796e-06, "zar": 4.777590752134992, "bits": 6.136905820332216, "link": 0.009300435423515739, "sats": 613.6905820332216}, "market_cap": {"aed": 99344751.93715034, "ars": 2527213975.834704, "aud": 34678599.164174415, "bch": 30134.93432217435, "bdt": 2293056675.4038925, "bhd": 10196927.952290144, "bmd": 27045832.499496527, "bnb": 48361.49215455346, "brl": 144503205.50739256, "btc": 494.53941900531424, "cad": 33282195.786392886, "chf": 24589529.991892237, "clp": 18832036509.95287, "cny": 175227244.18098795, "czk": 577340597.8627968, "dkk": 165777132.80150634, "dot": 799255.678141307, "eos": 4556448.753403141, "eth": 9895.467718413185, "eur": 22294258.37098995, "gbp": 19386290.46064408, "hkd": 209943139.54817894, "huf": 8069850387.964895, "idr": 391166686611.0937, "ils": 87929787.87241292, "inr": 2009831473.360868, "jpy": 2935703411.5740995, "krw": 30012461738.700485, "kwd": 8139497.38238848, "lkr": 5273217918.257317, "ltc": 104563.11801539666, "mmk": 42118140664.976204, "mxn": 538244521.7389781, "myr": 110955527.8291843, "ngn": 10794673467.80305, "nok": 221150878.44430533, "nzd": 37217283.277572155, "php": 1311527415.994109, "pkr": 4156355423.986605, "pln": 102037029.33331282, "rub": 2012080117.9665437, "sar": 101425631.2438295, "sek": 225518050.15549654, "sgd": 35825991.56213304, "thb": 847641651.3417755, "try": 221943510.65736836, "twd": 753550958.0551404, "uah": 751492959.5227538, "usd": 27045832.499496527, "vef": 2708099.208174583, "vnd": 620020004380.9945, "xag": 1029102.5812722436, "xau": 15170.818823942558, "xdr": 18840478.51497177, "xlm": 54497109.3524245, "xrp": 19865102.327474575, "yfi": 562.9193027579759, "zar": 384927106.4658338, "bits": 494539419.00531423, "link": 749970.2254282108, "sats": 49453941900.531425}, "total_volume": {"aed": 2693083.385497449, "ars": 68504337.16713598, "aud": 940007.2213728908, "bch": 813.9788390961816, "bdt": 62161238.65748872, "bhd": 276423.02905744064, "bmd": 733170.9096965715, "bnb": 1309.9864326742784, "brl": 3917186.2694977494, "btc": 13.402450392762686, "cad": 902276.7800180857, "chf": 666525.6740051538, "clp": 510507514.41992, "cny": 4750141.006833123, "czk": 15649753.018746246, "dkk": 4493530.455268403, "dot": 21673.583516838647, "eos": 123433.74586722883, "eth": 267.8406773482717, "eur": 604308.0574373932, "gbp": 525500.2495250179, "hkd": 5691349.162156087, "huf": 218763536.03526345, "idr": 10603927073.459036, "ils": 2383641.2713509058, "inr": 54483439.16528437, "jpy": 79579616.92901243, "krw": 813569377.3541292, "kwd": 220649.25161500252, "lkr": 142948825.04463387, "ltc": 2830.9862573712785, "mmk": 1141757995.6780279, "mxn": 14591714.07896316, "myr": 3007833.657030186, "ngn": 292626990.36585206, "nok": 5995839.439978537, "nzd": 1008892.2941934322, "php": 35550559.27682243, "pkr": 112672401.09112078, "pln": 2765918.783179427, "rub": 54543663.290148646, "sar": 2749492.822118593, "sek": 6113006.749886243, "sgd": 971216.1074859443, "thb": 22979903.394357912, "try": 6016473.802061039, "twd": 20421743.251859214, "uah": 20371817.97876338, "usd": 733170.9096965715, "vef": 73412.40318791773, "vnd": 16805806279.643888, "xag": 27884.110003471036, "xau": 411.22089983061295, "xdr": 510736.3869164581, "xlm": 1473931.0120354632, "xrp": 538347.9674980761, "yfi": 15.291381619568854, "zar": 10433828.532982884, "bits": 13402450.392762687, "link": 20311.314536030273, "sats": 1340245039.2762687}}, "community_data": {"facebook_likes": null, "twitter_followers": 733, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 301, "stars": 244, "subscribers": 32, "total_issues": 45, "closed_issues": 31, "pull_requests_merged": 394, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "EVX_20210522": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 2.7492302922044627, "ars": 70.41014392431254, "aud": 0.9604126015147951, "bch": 0.0006796620831485736, "bdt": 63.46249273995056, "bhd": 0.28211868968795495, "bmd": 0.7484564663520831, "bnb": 0.0014649296696527328, "brl": 3.937553875375201, "btc": 1.7482227019465316e-05, "cad": 0.903289655546338, "chf": 0.6716835443160167, "clp": 533.1993425324529, "cny": 4.808982487605398, "czk": 15.555170740195331, "dkk": 4.552730453394567, "dot": 0.018242535755062128, "eos": 0.07999883278813327, "eth": 0.00022000985944377978, "eur": 0.612234395650138, "gbp": 0.5274881668780237, "hkd": 5.8121761122804205, "huf": 214.74691227336453, "idr": 10719.1315513313, "ils": 2.4351255669704903, "inr": 54.7414697609949, "jpy": 81.46606488350298, "krw": 844.4833411702784, "kwd": 0.2250578656062053, "lkr": 147.43930751619774, "ltc": 0.0025343178641519196, "mmk": 1231.9025365181872, "mxn": 14.852670249333727, "myr": 3.087008695469163, "ngn": 306.8614359907766, "nok": 6.160807134307206, "nzd": 1.033535301364461, "php": 35.76159050999476, "pkr": 114.41945824300514, "pln": 2.7683533549197694, "rub": 55.16947459127841, "sar": 2.8071024430957516, "sek": 6.198319772400779, "sgd": 0.9953198626489898, "thb": 23.502006816398538, "try": 6.257343049337309, "twd": 20.94226100241116, "uah": 20.524541460888273, "usd": 0.7484564663520831, "vef": 0.07494294597583398, "vnd": 17221.27333788951, "xag": 0.02656136528463134, "xau": 0.00040007991952384196, "xdr": 0.5193015500490652, "xlm": 1.1506424299354943, "xrp": 0.4678492008499433, "yfi": 1.019062657711369e-05, "zar": 10.485527061335816, "bits": 17.482227019465316, "link": 0.01753780311955818, "sats": 1748.2227019465315}, "market_cap": {"aed": 60497292.232793786, "ars": 1549198097.3507316, "aud": 21130637.585211404, "bch": 15160.865536720205, "bdt": 1396503224.9196515, "bhd": 6208070.987279726, "bmd": 16469915.123814037, "bnb": 32585.028007388333, "brl": 86648223.4663857, "btc": 386.38769590652333, "cad": 19871990.20153442, "chf": 14781633.53421723, "clp": 11733144328.09472, "cny": 105822498.65352991, "czk": 342293702.5110277, "dkk": 100189738.27143994, "dot": 405622.7268189049, "eos": 1781974.2955078944, "eth": 4885.865436455646, "eur": 13472999.958139444, "gbp": 11606711.52588446, "hkd": 127897801.1604979, "huf": 4724842690.269719, "idr": 235876359932.97116, "ils": 53585362.952782825, "inr": 1204595592.7279043, "jpy": 1792820258.3664322, "krw": 18578256809.43994, "kwd": 4952437.598070368, "lkr": 3244427685.3416686, "ltc": 56526.16090130434, "mmk": 27108230243.709904, "mxn": 326847936.11935776, "myr": 67930164.92817098, "ngn": 6752539436.491881, "nok": 135572518.08955306, "nzd": 22733917.942854226, "php": 787010908.4719927, "pkr": 2517820141.1765175, "pln": 60921129.02858982, "rub": 1213845920.5571918, "sar": 61770779.00999713, "sek": 136405928.73464862, "sgd": 21900046.140135527, "thb": 517438073.92068946, "try": 137632492.72366425, "twd": 460836427.1820482, "uah": 451646115.7234697, "usd": 16469915.123814037, "vef": 1649132.601347499, "vnd": 378957124362.1504, "xag": 584423.244528804, "xau": 8803.004934527362, "xdr": 11427321.21035589, "xlm": 25569734.27635445, "xrp": 10432951.644344497, "yfi": 227.19548164851093, "zar": 230671109.13775024, "bits": 386387695.90652335, "link": 390513.4383724701, "sats": 38638769590.65231}, "total_volume": {"aed": 1522507.4749455438, "ars": 38992721.25028108, "aud": 531870.8181647751, "bch": 376.39284164915085, "bdt": 35145153.11766621, "bhd": 156235.66170127495, "bmd": 414490.76416899404, "bnb": 811.269386431567, "brl": 2180594.046725893, "btc": 9.68155392122072, "cad": 500236.46855263354, "chf": 371974.3740343587, "clp": 295282642.179375, "cny": 2663186.0579386167, "czk": 8614361.551724195, "dkk": 2521275.1970470203, "dot": 10102.608401994807, "eos": 44302.880428829965, "eth": 121.8401588672592, "eur": 339051.78712718014, "gbp": 292119.8268818529, "hkd": 3218748.753692533, "huf": 118925569.85304621, "idr": 5936191652.660868, "ils": 1348558.1359467455, "inr": 30315502.174170647, "jpy": 45115424.88500543, "krw": 467669879.4729838, "kwd": 124635.71482255946, "lkr": 81651016.44293652, "ltc": 1403.4902434329651, "mmk": 682220338.3876535, "mxn": 8225320.934965939, "myr": 1709567.1568150138, "ngn": 169938048.25781214, "nok": 3411818.5516424417, "nzd": 572365.7368425577, "php": 19804557.305292252, "pkr": 63364819.21800355, "pln": 1533097.7139700677, "rub": 30552528.717660725, "sar": 1554556.7298126263, "sek": 3432592.8287425954, "sgd": 551202.2529148528, "thb": 13015272.36756009, "try": 3465279.5704049645, "twd": 11597700.27590699, "uah": 11366369.664498128, "usd": 414490.76416899404, "vef": 41502.960216241314, "vnd": 9537039315.827242, "xag": 14709.526992074458, "xau": 221.56189307889377, "xdr": 287586.12690337276, "xlm": 637218.9719914546, "xrp": 259092.12024220018, "yfi": 5.643508723888463, "zar": 5806822.8678022595, "bits": 9681553.92122072, "link": 9712.33163673609, "sats": 968155392.122072}}, "community_data": {"facebook_likes": null, "twitter_followers": 18188, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2812, "reddit_accounts_active_48h": "25.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 859332, "bing_matches": null}}, "ACM_20210605": {"id": "ac-milan-fan-token", "symbol": "acm", "name": "AC Milan Fan Token", "localization": {"en": "AC Milan Fan Token", "de": "AC Milan Fan Token", "es": "AC Milan Fan Token", "fr": "AC Milan Fan Token", "it": "AC Milan Fan Token", "pl": "AC Milan Fan Token", "ro": "AC Milan Fan Token", "hu": "AC Milan Fan Token", "nl": "AC Milan Fan Token", "pt": "AC Milan Fan Token", "sv": "AC Milan Fan Token", "vi": "AC Milan Fan Token", "tr": "AC Milan Fan Token", "ru": "AC Milan Fan Token", "ja": "AC Milan Fan Token", "zh": "AC Milan Fan Token", "zh-tw": "AC Milan Fan Token", "ko": "AC Milan Fan Token", "ar": "AC Milan Fan Token", "th": "AC Milan Fan Token", "id": "AC Milan Fan Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13940/thumb/ACM-10.png?1613040443", "small": "https://assets.coingecko.com/coins/images/13940/small/ACM-10.png?1613040443"}, "market_data": {"current_price": {"aed": 26.45600565511688, "ars": 681.6555657228785, "aud": 9.287965191277708, "bch": 0.010441491927923414, "bdt": 610.8056810607378, "bhd": 2.715543468407491, "bmd": 7.2024408295537805, "bnb": 0.019913424480827113, "brl": 37.10193344528043, "btc": 0.00019637657078896425, "cad": 8.69417436196681, "chf": 6.461316870633533, "clp": 5246.974701563205, "cny": 45.96381664196332, "czk": 149.8078882783869, "dkk": 43.840184165810314, "dot": 0.3144486275772974, "eos": 1.1404814943481536, "eth": 0.0027338439778775746, "eur": 5.895132997022298, "gbp": 5.088077894748308, "hkd": 55.88841998304709, "huf": 2040.5595236250324, "idr": 102645.94560442716, "ils": 23.340877971926655, "inr": 524.735663259553, "jpy": 788.5808415461845, "krw": 7979.166014145633, "kwd": 2.1663069380682005, "lkr": 1422.6565357635263, "ltc": 0.03930568062277421, "mmk": 11856.785195084762, "mxn": 143.81344082476582, "myr": 29.720872083153694, "ngn": 2965.790884959261, "nok": 59.90114465217969, "nzd": 9.93001957658745, "php": 343.96038366608144, "pkr": 1112.0568640831038, "pln": 26.29474300494318, "rub": 529.7496064308428, "sar": 27.012012479835978, "sek": 59.57862655427293, "sgd": 9.52560252400802, "thb": 224.48854954942257, "try": 61.84879989154425, "twd": 198.84138520190626, "uah": 197.6452470435781, "usd": 7.2024408295537805, "vef": 0.7211804002632207, "vnd": 166065.29211168867, "xag": 0.25873825160423325, "xau": 0.0037935976093342668, "xdr": 4.979025738148042, "xlm": 16.97510274632997, "xrp": 7.120491320369864, "yfi": 0.00015942242076445883, "zar": 99.13439557797814, "bits": 196.37657078896424, "link": 0.23420314741916973, "sats": 19637.657078896424}, "market_cap": {"aed": 52892049.707173444, "ars": 1362573012.0234885, "aud": 18574192.618554976, "bch": 20837.30358832038, "bdt": 1221150496.6109626, "bhd": 5428303.631332409, "bmd": 14399447.268641386, "bnb": 39890.85035422107, "brl": 74175872.71495248, "btc": 392.72632809983855, "cad": 17387750.16085524, "chf": 12919256.086661372, "clp": 10489997335.205227, "cny": 91892952.63428865, "czk": 299590580.0371721, "dkk": 87662395.0267618, "dot": 627609.8873854527, "eos": 2272122.11082303, "eth": 5456.563012123115, "eur": 11784738.035812406, "gbp": 10173814.272080414, "hkd": 111734670.99811302, "huf": 4080947350.405652, "idr": 205214442721.40582, "ils": 46664144.76901348, "inr": 1049075402.6159203, "jpy": 1576869070.941648, "krw": 15957146009.847546, "kwd": 4330820.95885837, "lkr": 2844239647.7673063, "ltc": 78411.35283373132, "mmk": 23704624200.683395, "mxn": 287603040.1860281, "myr": 59419319.15404846, "ngn": 5929344019.39876, "nok": 119823618.09906138, "nzd": 19859386.485622995, "php": 687658607.0148517, "pkr": 2223274658.2782283, "pln": 52587746.18804518, "rub": 1059100945.7794764, "sar": 54002203.893244, "sek": 119102292.18758631, "sgd": 19047012.86906806, "thb": 448841441.35397935, "try": 123894284.24411744, "twd": 397532754.8684641, "uah": 395141366.66332394, "usd": 14399447.268641386, "vef": 1441816.6550090627, "vnd": 332042481626.8036, "xag": 517488.48789621686, "xau": 7584.476865338781, "xdr": 9954294.698469969, "xlm": 34276988.55178214, "xrp": 14197727.39027194, "yfi": 318.2245139340986, "zar": 198152233.808501, "bits": 392726328.09983855, "link": 466414.66238644684, "sats": 39272632809.98386}, "total_volume": {"aed": 24716731.407363217, "ars": 636842074.7237015, "aud": 8677354.546503473, "bch": 9755.045974777328, "bdt": 570650012.6163176, "bhd": 2537017.8479934614, "bmd": 6728937.005162605, "bnb": 18604.27347611408, "brl": 34662773.19469416, "btc": 183.466356114537, "cad": 8122600.792986857, "chf": 6036536.116268385, "clp": 4902027391.8290615, "cny": 42942057.28584615, "czk": 139959198.1325802, "dkk": 40958036.93881106, "dot": 293776.1040181373, "eos": 1065503.8080330729, "eth": 2554.115242932311, "eur": 5507574.37829254, "gbp": 4753576.8000530545, "hkd": 52214196.032110095, "huf": 1906408787.6176462, "idr": 95897782175.92511, "ils": 21806398.863260414, "inr": 490238421.39005864, "jpy": 736737854.8212434, "krw": 7454598619.208197, "kwd": 2023889.2987907694, "lkr": 1329128060.289627, "ltc": 36721.641331703104, "mmk": 11077294843.450018, "mxn": 134358838.4419234, "myr": 27766958.551803507, "ngn": 2770813465.552998, "nok": 55963115.62154434, "nzd": 9277198.906891687, "php": 321347694.3071276, "pkr": 1038947873.5971062, "pln": 24566070.507817633, "rub": 494922737.2415176, "sar": 25236185.157350786, "sek": 55661800.55139001, "sgd": 8899369.094051821, "thb": 209730193.42277253, "try": 57782727.85073235, "twd": 185769128.37002686, "uah": 184651626.8858307, "usd": 6728937.005162605, "vef": 673768.4623269322, "vnd": 155147805557.56534, "xag": 241728.2470029902, "xau": 3544.198409989191, "xdr": 4651693.964857896, "xlm": 15859123.280474594, "xrp": 6652375.031527241, "yfi": 148.94165074328433, "zar": 92617088.939058, "bits": 183466356.11453703, "link": 218806.13290536948, "sats": 18346635611.4537}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 34079, "bing_matches": null}}, "GXS_20190120": {"id": "gxchain", "symbol": "gxc", "name": "GXChain", "localization": {"en": "GXChain", "de": "GXChain", "es": "GXChain", "fr": "GXChain", "it": "GXChain", "pl": "GXChain", "ro": "GXChain", "hu": "GXChain", "nl": "GXChain", "pt": "GXChain", "sv": "GXChain", "vi": "GXChain", "tr": "GXChain", "ru": "GXChain", "ja": "\u30b8\u30fc\u30a8\u30c3\u30af\u30b9\u30b7\u30a7\u30a2\u30ba", "zh": "\u516c\u4fe1\u5b9d", "zh-tw": "\u516c\u4fe1\u5bf6", "ko": "\uc9c0\uc5d1\uc2a4\uccb4\uc778", "ar": "GXChain", "th": "GXChain", "id": "GXChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1089/thumb/26296223.png?1571192241", "small": "https://assets.coingecko.com/coins/images/1089/small/26296223.png?1571192241"}, "market_data": {"current_price": {"aed": 1.9199675827743554, "ars": 19.587879056512016, "aud": 0.7286553016518997, "bch": 0.004108271092604144, "bdt": 43.859187091541614, "bhd": 0.1970789071861218, "bmd": 0.5226988767431711, "bnb": 0.08630383293757872, "brl": 1.9530204462452083, "btc": 0.00014532787609670053, "cad": 0.692999397774863, "chf": 0.5174927959308091, "clp": 349.6898325811749, "cny": 3.5319285800412827, "czk": 11.711016063543067, "dkk": 3.4227927134694376, "eos": 0.21684928864929165, "eth": 0.004278599036084897, "eur": 0.4585584975780167, "gbp": 0.4056310547167566, "hkd": 4.099605695128209, "huf": 147.38604153599772, "idr": 7394.1379367334475, "ils": 1.926792984706875, "inr": 37.1518680622744, "jpy": 56.98523043000557, "krw": 585.2763862668639, "kwd": 0.15835423820372763, "lkr": 95.33721157983777, "ltc": 0.0166604107946066, "mmk": 797.4798896622958, "mxn": 9.871325096957808, "myr": 2.147225555007006, "ngn": 189.52330799027135, "nok": 4.46191233074723, "nzd": 0.7716582609404369, "php": 27.272905812028508, "pkr": 73.02045183987008, "pln": 1.9633301588900955, "rub": 34.6819590599998, "sar": 1.9597810335170147, "sek": 4.699121966894177, "sgd": 0.708033262867751, "thb": 16.554918824209768, "try": 2.7915010542873753, "twd": 16.089723096294772, "uah": 14.651758623817033, "usd": 0.5226988767431711, "vef": 129884.21148392967, "vnd": 12132.186374101553, "xag": 0.033512838482388355, "xau": 0.0004041141825764476, "xdr": 0.3738802341478697, "xlm": 4.940144841035977, "xrp": 1.5982311792995267, "zar": 7.151832608027209, "bits": 145.32787609670052, "link": 1.0647432209309542, "sats": 14532.787609670053}, "market_cap": {"aed": 115198054.9664613, "ars": 1175272743.390721, "aud": 43719318.09911398, "bch": 246496.26555624863, "bdt": 2631551225.4924965, "bhd": 11824734.431167308, "bmd": 31361932.604590267, "bnb": 5178229.976254723, "brl": 117181226.77471247, "btc": 8719.67256580203, "cad": 41579963.86649178, "chf": 31049567.755848546, "clp": 20981389954.870495, "cny": 211915714.80247697, "czk": 702660963.8125842, "dkk": 205367562.80816627, "eos": 13010957.318957496, "eth": 256715.94216509382, "eur": 27513509.854681004, "gbp": 24337863.283005398, "hkd": 245976341.70769253, "huf": 8843162492.159863, "idr": 443648276204.0069, "ils": 115607579.0824125, "inr": 2229112083.736464, "jpy": 3419113825.800334, "krw": 35116583176.01183, "kwd": 9501254.292223657, "lkr": 5720232694.790266, "ltc": 999624.647676396, "mmk": 47848793379.73775, "mxn": 592279505.8174685, "myr": 128833533.30042036, "ngn": 11371398479.416283, "nok": 267714739.8448338, "nzd": 46299495.65642621, "php": 1636374348.7217107, "pkr": 4381227110.392205, "pln": 117799809.53340577, "rub": 2080917543.599988, "sar": 117586862.0110209, "sek": 281947318.0136506, "sgd": 42481995.77206506, "thb": 993295129.4525862, "try": 167490063.2572425, "twd": 965383385.7776862, "uah": 879105517.4290221, "usd": 31361932.604590267, "vef": 7793052689035.782, "vnd": 727931182446.0933, "xag": 2010770.308943301, "xau": 24246.850954586855, "xdr": 22432814.04887218, "xlm": 296408690.4621586, "xrp": 95893870.75797161, "zar": 429109956.48163253, "bits": 8719672565.802029, "link": 63884593.255857244, "sats": 871967256580.203}, "total_volume": {"aed": 1908531.2076332092, "ars": 19471202.95472806, "aud": 724315.0328614054, "bch": 4083.7999870406547, "bdt": 43597937.82803072, "bhd": 195904.99761847648, "bmd": 519585.39686261344, "bnb": 85789.76019049267, "brl": 1941387.1902038148, "btc": 144.4622239240184, "cad": 688871.515014421, "chf": 514410.3263098618, "clp": 347606889.0230008, "cny": 3510890.485140367, "czk": 11641258.858167162, "dkk": 3402404.6913732234, "eos": 215557.61589589002, "eth": 4253.113364298446, "eur": 455827.07281360234, "gbp": 403214.8946980877, "hkd": 4075186.2054030136, "huf": 146508129.80629098, "idr": 7350094414.307056, "ils": 1915315.9537454483, "inr": 36930571.25280401, "jpy": 56645795.28612647, "krw": 581790160.575006, "kwd": 157410.9939065133, "lkr": 94769331.09772965, "ltc": 16561.172292059902, "mmk": 792729664.0504034, "mxn": 9812526.095369514, "myr": 2134435.5073103504, "ngn": 188394403.69646248, "nok": 4435334.744896746, "nzd": 767061.8430466892, "php": 27110453.495200943, "pkr": 72585502.1627458, "pln": 1951635.4925715378, "rub": 34475374.377009004, "sar": 1948107.5077268463, "sek": 4671131.430944738, "sgd": 703815.8301989844, "thb": 16456308.689432746, "try": 2774873.3499708236, "twd": 15993883.92124969, "uah": 14564484.750235599, "usd": 519585.39686261344, "vef": 129110550209.24512, "vnd": 12059920448.415434, "xag": 33313.217719846405, "xau": 401.7070578763921, "xdr": 371653.19935106544, "xlm": 4910718.641260224, "xrp": 1588711.2418314503, "zar": 7109232.388426681, "bits": 144462223.92401838, "link": 1058401.0290039617, "sats": 14446222392.401838}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 72, "stars": 205, "subscribers": 37, "total_issues": 39, "closed_issues": 35, "pull_requests_merged": 68, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 168, "deletions": -103}, "commit_count_4_weeks": 41}, "public_interest_stats": {"alexa_rank": 235095, "bing_matches": null}}, "HC_20190125": {"id": "hshare", "symbol": "hc", "name": "HyperCash", "localization": {"en": "HyperCash", "de": "HyperCash", "es": "HyperCash", "fr": "HyperCash", "it": "HyperCash", "pl": "HyperCash", "ro": "HyperCash", "hu": "HyperCash", "nl": "HyperCash", "pt": "HyperCash", "sv": "HyperCash", "vi": "HyperCash", "tr": "HyperCash", "ru": "HyperCash", "ja": "\u30a8\u30a4\u30c1\u30b7\u30a7\u30a2", "zh": "\u8d85\u7ea7\u73b0\u91d1", "zh-tw": "\u7d05\u71d2\u8089", "ko": "\uc5d0\uc774\uce58\uc250\uc5b4", "ar": "HyperCash", "th": "HyperCash", "id": "HyperCash"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1085/thumb/hshare-hcash-logo.png?1547035052", "small": "https://assets.coingecko.com/coins/images/1085/small/hshare-hcash-logo.png?1547035052"}, "market_data": {"current_price": {"aed": 3.963574971909793, "ars": 40.799201815261284, "aud": 1.507575529739631, "bch": 0.00887890096350047, "bdt": 90.62215048026742, "bhd": 0.40679511634064225, "bmd": 1.0790578988374895, "bnb": 0.16631181616455357, "brl": 4.051916363029725, "btc": 0.0003055753596910009, "cad": 1.434857817936971, "chf": 1.0763138546007445, "clp": 725.3439972031127, "cny": 7.335651407877009, "czk": 24.28675645961583, "dkk": 7.086045892833723, "eos": 0.4635415036030621, "eth": 0.009316985173717143, "eur": 0.9490810586909192, "gbp": 0.8370208958966442, "hkd": 8.465910604014342, "huf": 301.37547585581655, "idr": 15345.821908317354, "ils": 3.9876584651539395, "inr": 76.82352710773486, "jpy": 118.33169317306789, "krw": 1222.8963167525246, "kwd": 0.3271638805801336, "lkr": 196.31491778421685, "ltc": 0.03494185119033683, "mmk": 1660.992127401529, "mxn": 20.679173479111522, "myr": 4.45025058638558, "ngn": 391.5715711153071, "nok": 9.234685404041123, "nzd": 1.6038997911951567, "php": 56.9048337105818, "pkr": 150.9812794434185, "pln": 4.066213880189322, "rub": 71.64469662805448, "sar": 4.047110239148281, "sek": 9.726193039787889, "sgd": 1.4665799620469975, "thb": 34.32537129097003, "try": 5.7445826941569225, "twd": 33.343927127777235, "uah": 30.017110696318714, "usd": 1.0790578988374895, "vef": 268132.5531236551, "vnd": 25021.601163445855, "xag": 0.0706653436790696, "xau": 0.0008430463552037535, "xdr": 0.773046790248268, "xlm": 10.557609029636728, "xrp": 3.3939230787413854, "zar": 14.917428369073582, "bits": 305.57535969100087, "link": 2.1885599430784497, "sats": 30557.53596910009}, "market_cap": {"aed": 173819853.64952597, "ars": 1789314576.7104497, "aud": 66122394.84621206, "bch": 389355.96853733144, "bdt": 3974172065.7539473, "bhd": 17829025.348945074, "bmd": 47321341.815044135, "bnb": 7293238.713267354, "brl": 177667977.84458348, "btc": 13400.335294438053, "cad": 62928488.201747455, "chf": 47205688.45564819, "clp": 31809459109.939606, "cny": 321699945.9270332, "czk": 1065104029.438833, "dkk": 310770561.50008935, "eos": 20323218.743972763, "eth": 408506.53406430036, "eur": 41623379.047094725, "gbp": 36708300.558133274, "hkd": 371257221.1428382, "huf": 13217323982.359987, "idr": 672989926891.0133, "ils": 174876018.6774955, "inr": 3369042930.5220737, "jpy": 5189376646.792286, "krw": 53635664255.67179, "kwd": 14354503.147517307, "lkr": 8609255664.471363, "ltc": 1532348.561636019, "mmk": 72841667066.74815, "mxn": 906801837.5186379, "myr": 195162677.91360563, "ngn": 17172101869.384449, "nok": 404989293.22885585, "nzd": 70355856.72766958, "php": 2495193356.69768, "pkr": 6621180142.33704, "pln": 178339940.89835736, "rub": 3141914686.2124023, "sar": 177478692.4773226, "sek": 426506733.2442329, "sgd": 64322432.967593186, "thb": 1505268222.4656422, "try": 251930495.26713625, "twd": 1462517554.4138353, "uah": 1316379739.2992725, "usd": 47321341.815044135, "vef": 11758768655300.766, "vnd": 1097305105398.6594, "xag": 3098264.534095364, "xau": 36965.53937223987, "xdr": 33901435.16837402, "xlm": 462912145.46378446, "xrp": 148747536.44031432, "zar": 654202880.9770229, "bits": 13400335294.438053, "link": 95974482.62478858, "sats": 1340033529443.8054}, "total_volume": {"aed": 40663435.24868619, "ars": 418570536.18783295, "aud": 15466643.212385906, "bch": 91091.1530543936, "bdt": 929718240.2924198, "bhd": 4173426.0080941753, "bmd": 11070359.791332401, "bnb": 1706239.9010053691, "brl": 41569754.534442835, "btc": 3134.9839325486087, "cad": 14720611.666048001, "chf": 11042207.866383027, "clp": 7441508959.039633, "cny": 75258519.9334358, "czk": 249164694.92700076, "dkk": 72697746.44722442, "eos": 4755603.224469734, "eth": 95585.58271495684, "eur": 9736890.673027255, "gbp": 8587233.808697367, "hkd": 86854168.29686695, "huf": 3091896137.920182, "idr": 157437121772.4337, "ils": 40910514.60886886, "inr": 788154265.3439081, "jpy": 1213998266.0380867, "krw": 12546038751.516989, "kwd": 3356466.666573234, "lkr": 2014050195.655372, "ltc": 358478.3215701029, "mmk": 17040587424.192354, "mxn": 212153482.07707316, "myr": 45656377.851413146, "ngn": 4017243357.3525934, "nok": 94741246.13020186, "nzd": 16454861.019878771, "php": 583802763.2444544, "pkr": 1548959594.2859256, "pln": 41716436.80167799, "rub": 735023180.5613902, "sar": 41520447.151932016, "sek": 99783761.80407424, "sgd": 15046058.103193609, "thb": 352153680.1421801, "try": 58935296.5618357, "twd": 342084767.23829174, "uah": 307954017.7246283, "usd": 11070359.791332401, "vef": 2750847603307.755, "vnd": 256703674319.0405, "xag": 724975.7220147772, "xau": 8649.050697772176, "xdr": 7930905.387748663, "xlm": 108313493.29837991, "xrp": 34819215.56410588, "zar": 153042111.44275624, "bits": 3134983932.548609, "link": 22453054.67007684, "sats": 313498393254.86084}}, "community_data": {"facebook_likes": null, "twitter_followers": 12263, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 782, "reddit_accounts_active_48h": "112.625"}, "developer_data": {"forks": 39, "stars": 118, "subscribers": 40, "total_issues": 38, "closed_issues": 16, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 349692, "bing_matches": null}}, "WINGS_20190127": {"id": "wings", "symbol": "wings", "name": "Wings", "localization": {"en": "Wings", "de": "Wings", "es": "Wings", "fr": "Wings", "it": "Wings", "pl": "Wings", "ro": "Wings", "hu": "Wings", "nl": "Wings", "pt": "Wings", "sv": "Wings", "vi": "Wings", "tr": "Wings", "ru": "Wings", "ja": "Wings", "zh": "Wings", "zh-tw": "Wings", "ko": "\uc719\uc2a4\ub2e4\uc624", "ar": "Wings", "th": "Wings", "id": "Wings"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/648/thumb/wings.png?1548760631", "small": "https://assets.coingecko.com/coins/images/648/small/wings.png?1548760631"}, "market_data": {"current_price": {"aed": 0.345137059402286, "ars": 3.5274060007206196, "aud": 0.1314857600116038, "bch": 0.0007147720726652222, "bdt": 7.886202919018859, "bhd": 0.03542483979160117, "bmd": 0.09396135377001204, "bnb": 0.014577081591842147, "brl": 0.353943023516258, "btc": 2.6448496996347263e-05, "cad": 0.1253655872337942, "chf": 0.09344456632427693, "clp": 63.16092752280227, "cny": 0.6381761186705439, "czk": 2.120684264250726, "dkk": 0.6161864370091006, "eos": 0.03889715175329699, "eth": 0.0008072848649286924, "eur": 0.0825239079823572, "gbp": 0.07182894481219304, "hkd": 0.7370976923060755, "huf": 26.24528533503972, "idr": 1327.7660160648372, "ils": 0.34519052341258255, "inr": 6.686444970507758, "jpy": 10.288509844093442, "krw": 105.82076082933146, "kwd": 0.028513512415047723, "lkr": 17.119111545052757, "ltc": 0.0029657351804042854, "mmk": 144.00862518313036, "mxn": 1.7887234994489631, "myr": 0.38871191909719094, "ngn": 34.011508531622944, "nok": 0.8046657716088592, "nzd": 0.13832896540667397, "php": 4.950284673855361, "pkr": 13.116033237972982, "pln": 0.35395204380622, "rub": 6.210666957625638, "sar": 0.35246313219437925, "sek": 0.84713216921334, "sgd": 0.12762770682580715, "thb": 2.9782460497711782, "try": 0.4970069834234642, "twd": 2.9008688749415827, "uah": 2.609688559173602, "usd": 0.09396135377001204, "vef": 23348.235260082754, "vnd": 2185.9831727256683, "xag": 0.006113902736672647, "xau": 7.320716994929168e-05, "xdr": 0.06729841021746454, "xlm": 0.9293804286666592, "xrp": 0.29835660724404117, "zar": 1.2987389996835623, "bits": 26.448496996347263, "link": 0.18730186577776425, "sats": 2644.849699634726}, "market_cap": {"aed": 30849635.911455445, "ars": 315292686.9764989, "aud": 11752686.97868531, "bch": 63888.990187219606, "bdt": 704898190.872103, "bhd": 3166404.1285080756, "bmd": 8398615.780560637, "bnb": 1302953.8483601368, "brl": 31636745.78379383, "btc": 2364.0651750222673, "cad": 11205643.139818504, "chf": 8352423.393767549, "clp": 5645558959.338371, "cny": 57042558.51998971, "czk": 189554658.51330814, "dkk": 55077038.86748078, "eos": 3476772.3050661623, "eth": 72158.1281448262, "eur": 7376294.274671881, "gbp": 6420338.630681121, "hkd": 65884537.22760619, "huf": 2345901359.826193, "idr": 118680672084.7104, "ils": 30854414.723834716, "inr": 597659356.6607311, "jpy": 919625331.7779921, "krw": 9458653756.60224, "kwd": 2548643.9447689187, "lkr": 1530169953.9512653, "ltc": 265088.45698492625, "mmk": 12872027311.997782, "mxn": 159882768.89137653, "myr": 34744519.175537825, "ngn": 3040075316.215025, "nok": 71924023.82848617, "nzd": 12364358.165983561, "php": 442474882.6190073, "pkr": 1172359904.481861, "pln": 31637552.05090877, "rub": 555132545.7250755, "sar": 31504467.5852499, "sek": 75719828.62220535, "sgd": 11407839.814735498, "thb": 266206725.08853942, "try": 44424335.39480718, "twd": 259290464.99324864, "uah": 233263683.8020853, "usd": 8398615.780560637, "vef": 2086952233399.565, "vnd": 195391318173.54886, "xag": 546483.399235779, "xau": 6543.529526950394, "xdr": 6015382.573589845, "xlm": 83071484.4046357, "xrp": 26668224.853035927, "zar": 116086129.24277689, "bits": 2364065175.0222673, "link": 16741738.411943056, "sats": 236406517502.22675}, "total_volume": {"aed": 2226579.491804372, "ars": 22756321.427997276, "aud": 848252.8570335536, "bch": 4611.202404827428, "bdt": 50876187.32715801, "bhd": 228535.93849653166, "bmd": 606172.0050834347, "bnb": 94040.99049509308, "brl": 2283389.325948788, "btc": 170.6269419548931, "cad": 808769.8434824451, "chf": 602838.0590554755, "clp": 407469502.54824585, "cny": 4117059.6413261746, "czk": 13681150.61173183, "dkk": 3975197.8131484957, "eos": 250936.8322644981, "eth": 5208.029318576223, "eur": 532385.7177646528, "gbp": 463389.40163004055, "hkd": 4755231.4665579675, "huf": 169315964.45990473, "idr": 8565804513.733362, "ils": 2226924.4036752735, "inr": 43136200.06554548, "jpy": 66374167.58362206, "krw": 682680487.2179549, "kwd": 183948.95666261826, "lkr": 110440364.61960265, "ltc": 19132.819704284655, "mmk": 929041500.2984664, "mxn": 11539575.226372316, "myr": 2507693.5776778334, "ngn": 219418127.72291207, "nok": 5191132.786273486, "nzd": 892400.3641637813, "php": 31935725.339053042, "pkr": 84615342.87877084, "pln": 2283447.5184612763, "rub": 40066817.80920541, "sar": 2273842.116868717, "sek": 5465095.861002983, "sgd": 823363.4345048281, "thb": 19213530.959127035, "try": 3206336.515964739, "twd": 18714348.312940888, "uah": 16835859.458023638, "usd": 606172.0050834347, "vef": 150626252335.68192, "vnd": 14102412850.853043, "xag": 39442.56369321021, "xau": 472.28073260060495, "xdr": 434161.6060609336, "xlm": 5995703.289983565, "xrp": 1924785.1971746671, "zar": 8378542.793723504, "bits": 170626941.9548931, "link": 1208338.779497357, "sats": 17062694195.489311}}, "community_data": {"facebook_likes": null, "twitter_followers": 37593, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1222, "reddit_accounts_active_48h": "185.72"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1854227, "bing_matches": null}}, "STORJ_20190204": {"id": "storj", "symbol": "storj", "name": "Storj", "localization": {"en": "Storj", "de": "Storj", "es": "Storj", "fr": "Storj", "it": "Storj", "pl": "Storj", "ro": "Storj", "hu": "Storj", "nl": "Storj", "pt": "Storj", "sv": "Storj", "vi": "Storj", "tr": "Storj", "ru": "Storj", "ja": "\u30b9\u30c8\u30ec\u30fc\u30b8", "zh": "Storj", "zh-tw": "Storj", "ko": "\uc2a4\ud1a0\ub9ac\uc9c0", "ar": "Storj", "th": "Storj", "id": "Storj"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/949/thumb/storj.png?1547034811", "small": "https://assets.coingecko.com/coins/images/949/small/storj.png?1547034811"}, "market_data": {"current_price": {"aed": 0.48455960868054004, "ars": 4.9205507171533895, "aud": 0.1814419437796611, "bch": 0.0011614166692576681, "bdt": 11.067174712319087, "bhd": 0.049736741963436734, "bmd": 0.13191824978963473, "bnb": 0.021168688970447627, "brl": 0.4807364858833874, "btc": 3.8445793988799616e-05, "cad": 0.17320549593579543, "chf": 0.13113069783839065, "clp": 87.4180775492454, "cny": 0.8839446163654058, "czk": 2.9681210447918467, "dkk": 0.8603312496530607, "eos": 0.05719894824599546, "eth": 0.001240876263745808, "eur": 0.11523705518548553, "gbp": 0.10063950933676385, "hkd": 1.0351031428868578, "huf": 36.399543073204995, "idr": 1843.296545829669, "ils": 0.4790505706510769, "inr": 9.360919005072473, "jpy": 14.359433407851547, "krw": 146.7700147698534, "kwd": 0.039991281260227426, "lkr": 23.53421576247085, "ltc": 0.004204815067940328, "mmk": 201.11453205047528, "mxn": 2.5208574956100804, "myr": 0.5404031102632378, "ngn": 47.62248817405814, "nok": 1.1122990642987591, "nzd": 0.19083557851068145, "php": 6.878086021536519, "pkr": 18.443825443525064, "pln": 0.491217390829175, "rub": 8.627242467042443, "sar": 0.4947923753984743, "sek": 1.1931834199747755, "sgd": 0.1776028588742834, "thb": 4.123764488423991, "try": 0.6834801928843293, "twd": 4.050022186791571, "uah": 3.6576973119172025, "usd": 0.13191824978963473, "vef": 32780.05485878564, "vnd": 3061.162986368474, "xag": 0.008220243006061499, "xau": 9.985815754325986e-05, "xdr": 0.09416562122833769, "xlm": 1.615417531036482, "xrp": 0.4276945804439469, "zar": 1.7495932268309873, "bits": 38.445793988799615, "link": 0.3423333242986996, "sats": 3844.5793988799614}, "market_cap": {"aed": 65797108.16020481, "ars": 668148978.875707, "aud": 24637536.81858958, "bch": 157705.79478198377, "bdt": 1502783307.8312185, "bhd": 6753624.800497883, "bmd": 17912841.25672131, "bnb": 2874442.0559340236, "brl": 65277976.10774388, "btc": 5220.455894526957, "cad": 23519130.66188492, "chf": 17805901.5944187, "clp": 11870276846.490005, "cny": 120028575.40891255, "czk": 403033554.42385286, "dkk": 116822176.82395938, "eos": 7766898.678657581, "eth": 168495.40959766894, "eur": 15647744.566967629, "gbp": 13665581.204863906, "hkd": 140554004.56292656, "huf": 4942600723.760834, "idr": 250296516722.7679, "ils": 65049049.996483125, "inr": 1271095215.5769434, "jpy": 1949830683.6353745, "krw": 19929524383.559563, "kwd": 5430313.652657591, "lkr": 3195650880.1990843, "ltc": 570961.0682827836, "mmk": 27308827192.4831, "mxn": 342300782.65658927, "myr": 73379954.20815875, "ngn": 6466535693.676393, "nok": 151036241.0095351, "nzd": 25913074.41879819, "php": 933957684.022717, "pkr": 2504439816.8061595, "pln": 66701151.34559054, "rub": 1171471157.6435626, "sar": 67186589.34364772, "sek": 162019320.49768126, "sgd": 24116237.31233651, "thb": 559955417.6851095, "try": 92808024.79394504, "twd": 549942139.4226004, "uah": 496669349.5251118, "usd": 17912841.25672131, "vef": 4451119689719.992, "vnd": 415667481362.218, "xag": 1116205.7432846795, "xau": 13559.483446100341, "xdr": 12786508.520190323, "xlm": 219353408.97052166, "xrp": 58075551.62435466, "zar": 237572783.03824785, "bits": 5220455894.5269575, "link": 46484565.2881769, "sats": 522045589452.69574}, "total_volume": {"aed": 2503936.6127386936, "ars": 25426690.287016507, "aud": 937591.8214757601, "bch": 6001.560321377425, "bdt": 57189050.56327381, "bhd": 257012.0310681761, "bmd": 681680.704745749, "bnb": 109388.10088012659, "brl": 2484180.824234461, "btc": 198.6666437933141, "cad": 895030.4049942543, "chf": 677611.070938417, "clp": 451728375.765416, "cny": 4567737.898289842, "czk": 15337611.352567937, "dkk": 4445717.05214035, "eos": 295572.5944910883, "eth": 6412.163649240426, "eur": 595481.4979499438, "gbp": 520049.43788559886, "hkd": 5348841.733822753, "huf": 188092748.45697093, "idr": 9525139170.814743, "ils": 2475468.9448278155, "inr": 48372062.8087583, "jpy": 74201626.39227961, "krw": 758426428.9694884, "kwd": 206652.86900508366, "lkr": 121611837.72664167, "ltc": 21728.163490722152, "mmk": 1039248899.6890222, "mxn": 13026400.190355659, "myr": 2792505.006990956, "ngn": 246086734.4132154, "nok": 5747747.648625885, "nzd": 986132.9410992956, "php": 35542152.30978074, "pkr": 95307510.11781259, "pln": 2538340.3562265164, "rub": 44580827.40124436, "sar": 2556813.9033251274, "sek": 6165713.355933691, "sgd": 917753.5496062506, "thb": 21309338.830352157, "try": 3531848.4008704494, "twd": 20928279.316399213, "uah": 18900960.90048538, "usd": 681680.704745749, "vef": 169389231083.45444, "vnd": 15818400753.625105, "xag": 42477.678823734735, "xau": 516.0118430713898, "xdr": 486595.95730020205, "xlm": 8347586.196539364, "xrp": 2210089.5325543904, "zar": 9040932.136277085, "bits": 198666643.7933141, "link": 1768989.6745751747, "sats": 19866664379.33141}}, "community_data": {"facebook_likes": null, "twitter_followers": 82715, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 7557, "reddit_accounts_active_48h": "961.4"}, "developer_data": {"forks": 100, "stars": 448, "subscribers": 58, "total_issues": 35, "closed_issues": 17, "pull_requests_merged": 972, "pull_request_contributors": 32, "code_additions_deletions_4_weeks": {"additions": 43158, "deletions": -32663}, "commit_count_4_weeks": 186}, "public_interest_stats": {"alexa_rank": 214727, "bing_matches": null}}, "GXS_20190210": {"id": "gxchain", "symbol": "gxc", "name": "GXChain", "localization": {"en": "GXChain", "de": "GXChain", "es": "GXChain", "fr": "GXChain", "it": "GXChain", "pl": "GXChain", "ro": "GXChain", "hu": "GXChain", "nl": "GXChain", "pt": "GXChain", "sv": "GXChain", "vi": "GXChain", "tr": "GXChain", "ru": "GXChain", "ja": "\u30b8\u30fc\u30a8\u30c3\u30af\u30b9\u30b7\u30a7\u30a2\u30ba", "zh": "\u516c\u4fe1\u5b9d", "zh-tw": "\u516c\u4fe1\u5bf6", "ko": "\uc9c0\uc5d1\uc2a4\uccb4\uc778", "ar": "GXChain", "th": "GXChain", "id": "GXChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1089/thumb/26296223.png?1571192241", "small": "https://assets.coingecko.com/coins/images/1089/small/26296223.png?1571192241"}, "market_data": {"current_price": {"aed": 1.9588975672432638, "ars": 20.00563553218677, "aud": 0.7498384243090238, "bch": 0.004650855341098103, "bdt": 44.75347452022337, "bhd": 0.20102642313905705, "bmd": 0.5332973156627078, "bnb": 0.06669798030448665, "brl": 1.972186803052258, "btc": 0.00015658804064689187, "cad": 0.7047801341086818, "chf": 0.5345238994887312, "clp": 349.1994185433816, "cny": 3.5969304049502604, "czk": 12.101476027555025, "dkk": 3.5018541595139174, "eos": 0.2274852057747848, "eth": 0.005097235446820076, "eur": 0.4691656469676883, "gbp": 0.4123012207932051, "hkd": 4.1844907224816525, "huf": 149.48335970534202, "idr": 7422.060441023783, "ils": 1.9306429421621256, "inr": 38.159422800600375, "jpy": 58.63897299235078, "krw": 598.6429173048278, "kwd": 0.16178800654454173, "lkr": 94.70437241846005, "ltc": 0.01622510248361488, "mmk": 811.5703308117801, "mxn": 10.188733209793105, "myr": 2.179532799381918, "ngn": 192.5203309542375, "nok": 4.554215085484285, "nzd": 0.7879590497299105, "php": 27.901604656644405, "pkr": 74.24613545393002, "pln": 2.0157305288761176, "rub": 35.05939216951885, "sar": 1.999864933735158, "sek": 4.906079321385388, "sgd": 0.7229383744096808, "thb": 16.66820760103785, "try": 2.7837831897042875, "twd": 16.42609061972705, "uah": 14.412862321856032, "usd": 0.5332973156627078, "vef": 132517.79258248035, "vnd": 12366.16877855049, "xag": 0.03403524267154706, "xau": 0.0004079991113477541, "xdr": 0.38206219640049804, "xlm": 7.189719328374047, "xrp": 1.8460042262594358, "zar": 7.216336625269127, "bits": 156.58804064689187, "link": 1.3409082450936878, "sats": 15658.804064689188}, "market_cap": {"aed": 117533854.03459585, "ars": 1200338131.9312062, "aud": 44990305.45854143, "bch": 279051.3204658862, "bdt": 2685208471.2134023, "bhd": 12061585.388343425, "bmd": 31997838.93976247, "bnb": 4001878.818269199, "brl": 118331208.18313548, "btc": 9395.282438813514, "cad": 42286808.04652091, "chf": 32071433.969323874, "clp": 20951965112.602898, "cny": 215815824.2970156, "czk": 726088561.6533012, "dkk": 210111249.57083502, "eos": 13649112.346487088, "eth": 305834.1268092046, "eur": 28149938.8180613, "gbp": 24738073.247592308, "hkd": 251069443.3488992, "huf": 8969001582.32052, "idr": 445323626461.427, "ils": 115838576.52972756, "inr": 2289565368.036022, "jpy": 3518338379.5410466, "krw": 35918575038.289665, "kwd": 9707280.392672502, "lkr": 5682262345.107603, "ltc": 973506.1490168928, "mmk": 48694219848.7068, "mxn": 611323992.587586, "myr": 130771967.96291508, "ngn": 11551219857.254251, "nok": 273252905.1290571, "nzd": 47277542.98379463, "php": 1674096279.3986647, "pkr": 4454768127.235801, "pln": 120943831.73256709, "rub": 2103563530.171131, "sar": 119991896.02410948, "sek": 294364759.28312325, "sgd": 43376302.46458085, "thb": 1000092456.062271, "try": 167026991.38225728, "twd": 985565437.183623, "uah": 864771739.311362, "usd": 31997838.93976247, "vef": 7951067554948.824, "vnd": 741970126713.0294, "xag": 2042114.5602928237, "xau": 24479.946680865247, "xdr": 22923731.78402988, "xlm": 431383159.7024428, "xrp": 110760253.57556616, "zar": 432980197.5161476, "bits": 9395282438.813515, "link": 80454494.70562127, "sats": 939528243881.3514}, "total_volume": {"aed": 2437608.2778246016, "ars": 24894564.979744293, "aud": 933082.1481895522, "bch": 5787.420265358687, "bdt": 55690221.77378684, "bhd": 250152.78047174346, "bmd": 663623.2404078637, "bnb": 82997.47348872409, "brl": 2454145.1053523193, "btc": 194.85465216354405, "cad": 877012.620607492, "chf": 665149.5738608009, "clp": 434535938.7274066, "cny": 4475939.669578913, "czk": 15058805.846687155, "dkk": 4357628.918279004, "eos": 283077.4972371926, "eth": 6342.885675576831, "eur": 583819.2276326155, "gbp": 513058.40875440574, "hkd": 5207086.5746982815, "huf": 186013746.25604597, "idr": 9235845851.304455, "ils": 2402448.8549245372, "inr": 47484731.438334055, "jpy": 72969025.21066676, "krw": 744937844.1655395, "kwd": 201325.37331225374, "lkr": 117848000.84176834, "ltc": 20190.15429084996, "mmk": 1009899950.6174655, "mxn": 12678631.505826892, "myr": 2712161.8212228958, "ngn": 239567989.7872388, "nok": 5667163.294808233, "nzd": 980518.6010371476, "php": 34720132.18707505, "pkr": 92390228.77223843, "pln": 2508329.942931621, "rub": 43627122.72300518, "sar": 2488587.151529494, "sek": 6105015.272596944, "sgd": 899608.3283201387, "thb": 20741544.37894768, "try": 3464077.4792740657, "twd": 20440259.427802596, "uah": 17935043.205114983, "usd": 663623.2404078637, "vef": 164902174345.28214, "vnd": 15388183580.212402, "xag": 42352.69401589356, "xau": 507.7049600740356, "xdr": 475429.64377679885, "xlm": 8946725.77226377, "xrp": 2297126.3317059353, "zar": 8979847.740624817, "bits": 194854652.16354406, "link": 1668596.200588228, "sats": 19485465216.354404}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 278365, "bing_matches": null}}, "EDO_20190216": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "HC_20190223": {"id": "hshare", "symbol": "hc", "name": "HyperCash", "localization": {"en": "HyperCash", "de": "HyperCash", "es": "HyperCash", "fr": "HyperCash", "it": "HyperCash", "pl": "HyperCash", "ro": "HyperCash", "hu": "HyperCash", "nl": "HyperCash", "pt": "HyperCash", "sv": "HyperCash", "vi": "HyperCash", "tr": "HyperCash", "ru": "HyperCash", "ja": "\u30a8\u30a4\u30c1\u30b7\u30a7\u30a2", "zh": "\u8d85\u7ea7\u73b0\u91d1", "zh-tw": "\u7d05\u71d2\u8089", "ko": "\uc5d0\uc774\uce58\uc250\uc5b4", "ar": "HyperCash", "th": "HyperCash", "id": "HyperCash"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1085/thumb/hshare-hcash-logo.png?1547035052", "small": "https://assets.coingecko.com/coins/images/1085/small/hshare-hcash-logo.png?1547035052"}, "market_data": {"current_price": {"aed": 4.36486245596911, "ars": 46.66465174453994, "aud": 1.657805485850684, "bch": 0.00839431176400967, "bdt": 99.9500932954601, "bhd": 0.4479782326036591, "bmd": 1.188305846068872, "bnb": 0.11322982373115778, "brl": 4.425250970760486, "btc": 0.0003034646331087763, "cad": 1.5699302685338916, "chf": 1.1900277012398275, "clp": 779.0382200102027, "cny": 8.031283891241094, "czk": 26.90494719727668, "dkk": 7.818807676128893, "eos": 0.3367828311093871, "eth": 0.00827048709566372, "eur": 1.0479182051084486, "gbp": 0.909884598029089, "hkd": 9.327131416379174, "huf": 332.3453790285432, "idr": 16776.323688923418, "ils": 4.300276844929411, "inr": 84.7196711425573, "jpy": 131.42068504598709, "krw": 1333.8020138615445, "kwd": 0.3607625250314323, "lkr": 213.47621726066825, "ltc": 0.025106690450233858, "mmk": 1820.4739826320936, "mxn": 22.763675180998064, "myr": 4.849239684943709, "ngn": 430.16671627693165, "nok": 10.185563559579343, "nzd": 1.7276909409638392, "php": 62.0379474742332, "pkr": 165.3230508343319, "pln": 4.537961780260104, "rub": 78.19206946893183, "sar": 4.4565034145121025, "sek": 11.064856411907218, "sgd": 1.6075710445139688, "thb": 36.99813661360591, "try": 6.281023457342857, "twd": 36.59261536057669, "uah": 32.199430823072234, "usd": 1.188305846068872, "vef": 295279.31795085064, "vnd": 27541.48854889766, "xag": 0.07438779148415138, "xau": 0.0008871059632657942, "xdr": 0.8525013087224227, "xlm": 13.301398367556404, "xrp": 3.694922458876949, "zar": 16.689968314783748, "bits": 303.4646331087763, "link": 2.6021934535112283, "sats": 30346.463310877632}, "market_cap": {"aed": 191347427.1530566, "ars": 2045331834.263125, "aud": 72668067.19259515, "bch": 368106.8129091877, "bdt": 4381625627.089318, "bhd": 19638529.986680117, "bmd": 52093111.43476367, "bnb": 4941075.511755616, "brl": 193985370.22300234, "btc": 13307.215003760506, "cad": 68822866.26514952, "chf": 52170209.23968705, "clp": 34151579304.80852, "cny": 352076502.94299346, "czk": 1179419194.5636878, "dkk": 342746626.6850273, "eos": 14763873.188344726, "eth": 362647.49879856536, "eur": 45931434.028036945, "gbp": 39892904.73674199, "hkd": 408891854.9293187, "huf": 14575131648.332474, "idr": 735362677461.2087, "ils": 188516114.45346588, "inr": 3713952333.1857576, "jpy": 5763529756.030813, "krw": 58470350136.60741, "kwd": 15815156.072925596, "lkr": 9358399111.828722, "ltc": 1100591.8217120697, "mmk": 79806183193.55246, "mxn": 997853968.1551851, "myr": 212581621.23609537, "ngn": 18857706339.38445, "nok": 446474430.1739293, "nzd": 75717024.91176048, "php": 2719627881.702724, "pkr": 7247454128.361501, "pln": 198940987.91379014, "rub": 3428242454.210652, "sar": 195364795.81379464, "sek": 485057714.0892016, "sgd": 70471665.33517118, "thb": 1622400885.8021348, "try": 275367052.16528976, "twd": 1604101252.965558, "uah": 1411562977.2850993, "usd": 52093111.43476367, "vef": 12944494437422.107, "vnd": 1207367477660.1575, "xag": 3261001.1664671446, "xau": 38890.11234162282, "xdr": 37372066.981302425, "xlm": 582079946.1824882, "xrp": 161931423.1445337, "zar": 731646708.2390267, "bits": 13307215003.760506, "link": 114108676.89098935, "sats": 1330721500376.0505}, "total_volume": {"aed": 43223853.02594519, "ars": 462105294.006356, "aud": 16416723.639944803, "bch": 83126.21568299983, "bdt": 989774176.4174964, "bhd": 4436186.816930086, "bmd": 11767417.13134886, "bnb": 1121279.1487658918, "brl": 43821861.39714322, "btc": 3005.1143265988294, "cad": 15546523.143081559, "chf": 11784468.118772201, "clp": 7714569213.347339, "cny": 79531265.42393455, "czk": 266431186.56248742, "dkk": 77427180.63634649, "eos": 3335053.90842879, "eth": 81900.01913738991, "eur": 10377202.704034166, "gbp": 9010299.530056689, "hkd": 92363633.80567025, "huf": 3291111223.29566, "idr": 166130629947.81345, "ils": 42584282.13743915, "inr": 838952120.6709523, "jpy": 1301417497.641529, "krw": 13208219684.911213, "kwd": 3572517.236574718, "lkr": 2113987492.731012, "ltc": 248623.6184841857, "mmk": 18027578338.748817, "mxn": 225421478.97655994, "myr": 48020487.597025655, "ngn": 4259805001.548287, "nok": 100864415.94135682, "nzd": 17108777.208856545, "php": 614342181.6168541, "pkr": 1637141908.398911, "pln": 44938000.912051514, "rub": 774311344.8850274, "sar": 44131344.46769774, "sek": 109571775.0847839, "sgd": 15919267.848134162, "thb": 366380850.5657207, "try": 62198989.66150219, "twd": 362365101.79547894, "uah": 318860784.1496238, "usd": 11767417.13134886, "vef": 2924057738235.23, "vnd": 272734654336.08832, "xag": 736638.7826582113, "xau": 8784.729911065855, "xdr": 8442050.956783848, "xlm": 131719543.02765182, "xrp": 36589649.02464534, "zar": 165275479.97746116, "bits": 3005114326.5988293, "link": 25768699.131820258, "sats": 300511432659.88293}}, "community_data": {"facebook_likes": null, "twitter_followers": 12234, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.087, "reddit_subscribers": 785, "reddit_accounts_active_48h": "101.25"}, "developer_data": {"forks": 39, "stars": 117, "subscribers": 41, "total_issues": 38, "closed_issues": 16, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 404563, "bing_matches": null}}, "BLZ_20190315": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.18921514090615169, "ars": 2.125204244828717, "aud": 0.07284290026476488, "bch": 0.0004017530108881549, "bdt": 4.330856660173848, "bhd": 0.019421026720091487, "bmd": 0.05151261016164226, "bnb": 0.00360157038471795, "brl": 0.19772610586966854, "btc": 1.332281114819973e-05, "cad": 0.06900325332853642, "chf": 0.052042674920205555, "clp": 34.550192959178986, "cny": 0.3464944209912709, "czk": 1.1740386308004942, "dkk": 0.34139214846737004, "eos": 0.014470852694973602, "eth": 0.0003889077238039931, "eur": 0.04576431799370456, "gbp": 0.03890835016946114, "hkd": 0.4043662628773677, "huf": 14.445708260237081, "idr": 733.975404121236, "ils": 0.1866250353546143, "inr": 3.59558534054365, "jpy": 5.735404109007182, "krw": 58.29996324066301, "kwd": 0.015658391136054696, "lkr": 9.198366953851547, "ltc": 0.0009391933164151383, "mmk": 78.30930481830029, "mxn": 0.9990201076918415, "myr": 0.21066081925603605, "ngn": 18.49302704802957, "nok": 0.44585740380772354, "nzd": 0.07536593639787191, "php": 2.695139763657128, "pkr": 7.186998365714635, "pln": 0.19679671535713208, "rub": 3.3929347321677397, "sar": 0.19319031751971472, "sek": 0.48275985293749, "sgd": 0.06992398972256561, "thb": 1.6308892377175956, "try": 0.2800919363245751, "twd": 1.592355435736612, "uah": 1.361399884379539, "usd": 0.05151261016164226, "vef": 12800.247044746257, "vnd": 1193.6968251836527, "xag": 0.003365523326922425, "xau": 3.985118547324962e-05, "xdr": 0.036975442498365846, "xlm": 0.5055096710058544, "xrp": 0.16648916984313805, "zar": 0.7372433253724073, "bits": 13.32281114819973, "link": 0.11118432618223537, "sats": 1332.281114819973}, "market_cap": {"aed": 38811960.65401146, "ars": 435891891.21361744, "aud": 14939322.058489116, "bch": 82293.27197658496, "bdt": 888348773.1893536, "bhd": 3983656.4944586423, "bmd": 10566307.691891925, "bnb": 737788.0300028495, "brl": 40558655.84594252, "btc": 2729.2055068351274, "cad": 14152015.906058535, "chf": 10675785.20588762, "clp": 7086963143.109455, "cny": 71073212.05874181, "czk": 240827496.239755, "dkk": 70030962.03432153, "eos": 2961395.0079048737, "eth": 79603.06841408285, "eur": 9387488.140553702, "gbp": 7981672.601070561, "hkd": 82943571.18073638, "huf": 2963027185.439422, "idr": 150560112993.76965, "ils": 38280676.13695539, "inr": 737528276.894058, "jpy": 1175969289.8383453, "krw": 11959076366.723124, "kwd": 3211861.681719765, "lkr": 1886776367.8125298, "ltc": 192216.14759405184, "mmk": 16062867077.631666, "mxn": 204887785.57193825, "myr": 43210915.30599219, "ngn": 3793304461.389201, "nok": 91447050.32086341, "nzd": 15461350.49000702, "php": 552670723.824409, "pkr": 1474202838.3918402, "pln": 40368441.17487303, "rub": 695969932.111076, "sar": 39627352.052286975, "sek": 99040178.65548755, "sgd": 14342389.071743354, "thb": 334597982.52529633, "try": 57464874.94866204, "twd": 326625217.32160985, "uah": 279251430.37639654, "usd": 10566307.691891925, "vef": 2625596885551.17, "vnd": 244835020470.04218, "xag": 690226.0872497633, "xau": 8174.306956601444, "xdr": 7584432.263393884, "xlm": 103537161.48360075, "xrp": 34101222.48913712, "zar": 151239978.71066454, "bits": 2729205506.8351274, "link": 22776339.911664467, "sats": 272920550683.51273}, "total_volume": {"aed": 2013400.5215677551, "ars": 22613873.89235632, "aud": 775106.752468229, "bch": 4274.973544875175, "bdt": 46083780.69889289, "bhd": 206655.2662770669, "bmd": 548135.3958783275, "bnb": 38323.59110548508, "brl": 2103963.9998101704, "btc": 141.76537240134752, "cad": 734249.8363302506, "chf": 553775.7091019155, "clp": 367641702.40890026, "cny": 3686977.9268359863, "czk": 12492710.574186176, "dkk": 3632685.6640096297, "eos": 153981.45319692418, "eth": 4138.2894106611675, "eur": 486968.96705226455, "gbp": 414015.98280863056, "hkd": 4302780.637335491, "huf": 153713896.28910702, "idr": 7810085674.954331, "ils": 1985839.7257275986, "inr": 38259905.44584689, "jpy": 61029289.56517492, "krw": 620358264.3227872, "kwd": 166617.81255592668, "lkr": 97877985.52358975, "ltc": 9993.768490551649, "mmk": 833273671.4921532, "mxn": 10630373.427045519, "myr": 2241599.7014444205, "ngn": 196780607.12031958, "nok": 4744279.580758067, "nzd": 801953.8760229532, "php": 28678443.912354145, "pkr": 76475414.11716908, "pln": 2094074.5409977322, "rub": 36103540.79846145, "sar": 2055699.5819322818, "sek": 5136951.171251192, "sgd": 744047.2083961797, "thb": 17353966.633507866, "try": 2980402.3503728365, "twd": 16943936.143162586, "uah": 14486384.250991669, "usd": 548135.3958783275, "vef": 136204872150.64268, "vnd": 12701889494.195345, "xag": 35811.86151025271, "xau": 424.0485049593911, "xdr": 393448.2983490882, "xlm": 5379027.4413903495, "xrp": 1771578.002649462, "zar": 7844858.97227103, "bits": 141765372.40134752, "link": 1183090.207545828, "sats": 14176537240.134752}}, "community_data": {"facebook_likes": null, "twitter_followers": 34869, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 28, "stars": 196, "subscribers": 57, "total_issues": 8, "closed_issues": 8, "pull_requests_merged": 226, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 520, "deletions": -120}, "commit_count_4_weeks": 22}, "public_interest_stats": {"alexa_rank": 1431746, "bing_matches": null}}, "NEBL_20190408": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 5.962157063023782, "ars": 70.45909377472027, "aud": 2.2829333988509566, "bch": 0.005666732269021509, "bdt": 136.8266027978065, "bhd": 0.6120430714683616, "bmd": 1.6232196137655304, "bnb": 0.08467852770757227, "brl": 6.261431686433355, "btc": 0.0003315032149846561, "cad": 2.1694898264841105, "chf": 1.62315143854175, "clp": 1079.627354678126, "cny": 10.903977755469946, "czk": 37.1229676380331, "dkk": 10.796397252348012, "eos": 0.3209848767944905, "eth": 0.01030818748270709, "eur": 1.4463308795750427, "gbp": 1.241506535831654, "hkd": 12.741868163155964, "huf": 463.01030356043043, "idr": 22981.53091788923, "ils": 5.826303320669308, "inr": 111.97033824539173, "jpy": 181.22222330310936, "krw": 1844.464447121769, "kwd": 0.4943450404938365, "lkr": 283.60149170162333, "ltc": 0.019131983240070014, "mmk": 2444.5559019101806, "mxn": 31.102997985245423, "myr": 6.624196921815741, "ngn": 585.1706707624737, "nok": 13.957123991393795, "nzd": 2.4022789977334535, "php": 84.7700682793777, "pkr": 229.74238803430418, "pln": 6.2053413326797005, "rub": 106.23793817937883, "sar": 6.087885161427603, "sek": 15.067420816185944, "sgd": 2.199327849424348, "thb": 51.60539796083381, "try": 9.096496744028205, "twd": 50.00981690743182, "uah": 43.893481575833704, "usd": 1.6232196137655304, "vef": 403350.0146639414, "vnd": 37674.51711932321, "xag": 0.10706901038943045, "xau": 0.001255771389797427, "xdr": 1.1655723222997036, "xlm": 13.738107109030537, "xrp": 4.907873420624453, "zar": 22.918906493236367, "bits": 331.5032149846561, "link": 3.0041970139457717, "sats": 33150.32149846561}, "market_cap": {"aed": 89391434.26428077, "ars": 1056402805.713637, "aud": 34228331.91006501, "bch": 84962.09002293675, "bdt": 2051459923.0302408, "bhd": 9176445.271692485, "bmd": 24337153.12538619, "bnb": 1269596.7186293043, "brl": 93878499.52316147, "btc": 4970.272929319577, "cad": 32527456.952437993, "chf": 24336130.964954898, "clp": 16187000222.480398, "cny": 163484826.11978176, "czk": 556589718.4914569, "dkk": 161871856.95924345, "eos": 4812570.0498152925, "eth": 154552.0612764537, "eur": 21685036.200700324, "gbp": 18614076.870726604, "hkd": 191040567.7460001, "huf": 6941976649.876425, "idr": 344565228427.099, "ils": 87354560.57060497, "inr": 1678786557.4503887, "jpy": 2717089518.1702623, "krw": 27654307096.37629, "kwd": 7411782.6357238535, "lkr": 4252075856.8946986, "ltc": 286848.4348989412, "mmk": 36651560148.624664, "mxn": 466331492.181462, "myr": 99317488.18938835, "ngn": 8773543701.701721, "nok": 209261064.17638287, "nzd": 36017696.756455906, "php": 1270969198.911283, "pkr": 3444558967.6015334, "pln": 93037529.19691394, "rub": 1592839901.1880884, "sar": 91276492.79676065, "sek": 225907895.9485252, "sgd": 32974822.50118884, "thb": 773726772.162279, "try": 136385016.72021413, "twd": 749804007.7431581, "uah": 658100957.663568, "usd": 24337153.12538619, "vef": 6047481798985.372, "vnd": 564859175112.4534, "xag": 1605300.280216753, "xau": 18827.95177239252, "xdr": 17475584.84752106, "xlm": 205977314.17859048, "xrp": 73584415.77764447, "zar": 343626291.884415, "bits": 4970272929.319577, "link": 45042335.69333106, "sats": 497027292931.9577}, "total_volume": {"aed": 1183220.2987502527, "ars": 13982964.404415598, "aud": 453059.7080321472, "bch": 1124.591750504608, "bdt": 27153933.069534935, "bhd": 121463.05074082353, "bmd": 322136.1624718506, "bnb": 16804.883164394687, "brl": 1242612.8651613519, "btc": 65.78849381600892, "cad": 430546.2559093144, "chf": 322122.6327530264, "clp": 214257522.51037303, "cny": 2163949.6714046556, "czk": 7367241.15028472, "dkk": 2142599.7751006694, "eos": 63701.076271625745, "eth": 2045.7120709726005, "eur": 287031.69630264264, "gbp": 246383.2667772948, "hkd": 2528688.3413634077, "huf": 91886742.31694464, "idr": 4560801332.632488, "ils": 1156259.4347683373, "inr": 22221081.34177323, "jpy": 35964469.055456474, "krw": 366043321.4167632, "kwd": 98105.27973615208, "lkr": 56282153.95704908, "ltc": 3796.8390778218877, "mmk": 485134513.22983366, "mxn": 6172547.649971864, "myr": 1314605.4654313726, "ngn": 116130086.57110213, "nok": 2769862.0221212064, "nzd": 476744.4472417275, "php": 16823049.85500254, "pkr": 45593541.75545335, "pln": 1231481.4500671397, "rub": 21083457.484003905, "sar": 1208171.677350672, "sek": 2990206.056477415, "sgd": 436467.7628478718, "thb": 10241352.877305089, "try": 1805245.9003136498, "twd": 9924701.727271637, "uah": 8710883.969401311, "usd": 322136.1624718506, "vef": 80046855493.1935, "vnd": 7476698941.337384, "xag": 21248.38797782783, "xau": 249.21419937309773, "xdr": 231313.73709686188, "xlm": 2726397.0113471067, "xrp": 973992.3644404211, "zar": 4548373.198038992, "bits": 65788493.816008925, "link": 596198.129430485, "sats": 6578849381.600892}}, "community_data": {"facebook_likes": null, "twitter_followers": 40369, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.042, "reddit_subscribers": 6182, "reddit_accounts_active_48h": "1160.92"}, "developer_data": {"forks": 38, "stars": 97, "subscribers": 36, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 74, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 589, "deletions": -65}, "commit_count_4_weeks": 21}, "public_interest_stats": {"alexa_rank": 641318, "bing_matches": null}}, "RDN_20190424": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 1.2351849874576144, "ars": 14.0084270808452, "aud": 0.4698503231578539, "bch": 0.0011223668502349951, "bdt": 28.410255119983102, "bhd": 0.12677444997080722, "bmd": 0.3362717505856954, "bnb": 0.013483814847345439, "brl": 1.3235659465770457, "btc": 6.332849021873584e-05, "cad": 0.45058531456679946, "chf": 0.34116450455671765, "clp": 222.68383548570293, "cny": 2.254500324626735, "czk": 7.684818316134905, "dkk": 2.232978932589254, "eos": 0.061811832264088075, "eth": 0.0019422540215117028, "eur": 0.2990279728495772, "gbp": 0.2587510239231753, "hkd": 2.637866933881961, "huf": 95.72143516297128, "idr": 4725.744606093483, "ils": 1.2087456210678114, "inr": 23.33389677314145, "jpy": 37.63553432555104, "krw": 382.19974628068985, "kwd": 0.10227705294063948, "lkr": 58.679420477203855, "ltc": 0.004128129509857531, "mmk": 511.37279944567416, "mxn": 6.311943833954222, "myr": 1.3896393103061333, "ngn": 121.05783021085036, "nok": 2.8619079877096794, "nzd": 0.5028775894133785, "php": 17.37793626724874, "pkr": 47.61607988293453, "pln": 1.2804891990552718, "rub": 21.525460925666625, "sar": 1.2610695054589443, "sek": 3.127764433722733, "sgd": 0.4555910558460177, "thb": 10.702521005890965, "try": 1.9541561841453656, "twd": 10.364231624801755, "uah": 9.043900948737056, "usd": 0.3362717505856954, "vef": 83559.37445529322, "vnd": 7808.127477309149, "xag": 0.022410709759953455, "xau": 0.00026360342528412704, "xdr": 0.24148985869386078, "xlm": 2.907822319718187, "xrp": 1.0270306639527125, "zar": 4.7269719979831235, "bits": 63.328490218735844, "link": 0.6538692856557576, "sats": 6332.849021873584}, "market_cap": {"aed": 62499651.076755136, "ars": 708818366.1372721, "aud": 23774156.546469722, "bch": 56781.111839874255, "bdt": 1437542594.858873, "bhd": 6414714.369976023, "bmd": 17015157.48004251, "bnb": 682443.7124023177, "brl": 66971676.85660491, "btc": 3204.3125911348816, "cad": 22799358.174438093, "chf": 17262728.02137713, "clp": 11267674202.3369, "cny": 114076421.8091972, "czk": 388847393.8914125, "dkk": 112987451.73047428, "eos": 3128384.27168739, "eth": 98286.2360557808, "eur": 15130643.713340417, "gbp": 13092653.226168316, "hkd": 133474552.0943197, "huf": 4843449652.4815035, "idr": 239119963372.15573, "ils": 61161834.319886744, "inr": 1180681777.540151, "jpy": 1904336425.1663597, "krw": 19339087688.666737, "kwd": 5175160.1475549275, "lkr": 2969144980.26742, "ltc": 208889.39165107076, "mmk": 25875170002.902035, "mxn": 319380733.44803584, "myr": 70314951.1195434, "ngn": 6125456692.815304, "nok": 144810900.76539806, "nzd": 25445317.253529575, "php": 879313596.073322, "pkr": 2409346299.17402, "pln": 64792018.16825394, "rub": 1089175962.1282284, "sar": 63809392.82378141, "sek": 158263084.2691195, "sgd": 23052645.808686003, "thb": 541541417.1173148, "try": 98879180.76947962, "twd": 524424168.69239134, "uah": 457616194.6659009, "usd": 17015157.48004251, "vef": 4228056364575.096, "vnd": 395086766638.17676, "xag": 1133969.0448007423, "xau": 13338.181948605334, "xdr": 12219248.177560268, "xlm": 147139249.74733382, "xrp": 51972754.32079268, "zar": 239182068.69695786, "bits": 3204312591.1348815, "link": 33084660.28080432, "sats": 320431259113.48816}, "total_volume": {"aed": 4365313.713571023, "ars": 49507708.93632778, "aud": 1660515.6958946108, "bch": 3966.5988922622537, "bdt": 100405750.99328543, "bhd": 448038.3510222826, "bmd": 1188430.639316399, "bnb": 47653.65711376042, "brl": 4677664.184779978, "btc": 223.81159876352723, "cad": 1592430.5045681745, "chf": 1205722.305118454, "clp": 786995317.0635422, "cny": 7967714.378232861, "czk": 27159205.400297694, "dkk": 7891654.817316623, "eos": 218451.52085175802, "eth": 6864.192976304652, "eur": 1056806.003858913, "gbp": 914461.7240347903, "hkd": 9322584.728585534, "huf": 338292723.63461006, "idr": 16701431725.037117, "ils": 4271873.354554761, "inr": 82465202.0621651, "jpy": 133009157.15229142, "krw": 1350746496.0342333, "kwd": 361461.1789480835, "lkr": 207381146.56071165, "ltc": 14589.377739985432, "mmk": 1807261840.805046, "mxn": 22307278.065582816, "myr": 4911176.544237999, "ngn": 427835030.15390366, "nok": 10114376.642030083, "nzd": 1777238.59956571, "php": 61416018.06311406, "pkr": 168281778.5272023, "pln": 4525425.031452924, "rub": 76073940.92698538, "sar": 4456793.162032389, "sek": 11053949.905473636, "sgd": 1610121.4830650368, "thb": 37824181.95752316, "try": 6906256.856851664, "twd": 36628620.734370865, "uah": 31962390.440771613, "usd": 1188430.639316399, "vef": 295310327530.69684, "vnd": 27594996943.871113, "xag": 79202.53212221124, "xau": 931.6107781601266, "xdr": 853458.3908880397, "xlm": 10276644.209399678, "xrp": 3629667.6911842525, "zar": 16705769.496870631, "bits": 223811598.7635272, "link": 2310864.031331109, "sats": 22381159876.352722}}, "community_data": {"facebook_likes": null, "twitter_followers": 25640, "reddit_average_posts_48h": 0.25, "reddit_average_comments_48h": 0.542, "reddit_subscribers": 4457, "reddit_accounts_active_48h": "1798.52"}, "developer_data": {"forks": 353, "stars": 1699, "subscribers": 220, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2134, "pull_request_contributors": 66, "code_additions_deletions_4_weeks": {"additions": 11029, "deletions": -6322}, "commit_count_4_weeks": 379}, "public_interest_stats": {"alexa_rank": 1332555, "bing_matches": null}}, "KNC_20190514": {"id": "kyber-network", "symbol": "kncl", "name": "Kyber Network Crystal Legacy", "localization": {"en": "Kyber Network Crystal Legacy", "de": "Kyber Network Crystal Legacy", "es": "Kyber Network Crystal Legacy", "fr": "Kyber Network Crystal Legacy", "it": "Kyber Network Crystal Legacy", "pl": "Kyber Network Crystal Legacy", "ro": "Kyber Network Crystal Legacy", "hu": "Kyber Network Crystal Legacy", "nl": "Kyber Network Crystal Legacy", "pt": "Kyber Network Crystal Legacy", "sv": "Kyber Network Crystal Legacy", "vi": "Kyber Network Crystal Legacy", "tr": "Kyber Network Crystal Legacy", "ru": "Kyber Network Crystal Legacy", "ja": "\u30ab\u30a4\u30d0\u30fc", "zh": "Kyber Network Crystal Legacy", "zh-tw": "Kyber Network Crystal Legacy", "ko": "\uce74\uc774\ubc84\ub124\ud2b8\uc6cc\ud06c", "ar": "Kyber Network Crystal Legacy", "th": "Kyber Network Crystal Legacy", "id": "Kyber Network Crystal Legacy"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/947/thumb/logo-kncl.png?1618984814", "small": "https://assets.coingecko.com/coins/images/947/small/logo-kncl.png?1618984814"}, "market_data": {"current_price": {"aed": 0.7592325139399446, "ars": 9.262676314396371, "aud": 0.29524483626366843, "bch": 0.0007204846032434842, "bdt": 17.437303890279754, "bhd": 0.07794327257876157, "bmd": 0.20669618892723937, "bnb": 0.010570073198901126, "brl": 0.8181551898212456, "btc": 3.24403304105404e-05, "cad": 0.2772325035757932, "chf": 0.20908352990934903, "clp": 141.7948528584206, "cny": 1.4105051280489282, "czk": 4.732630244670533, "dkk": 1.373682201991539, "eos": 0.04295181255081716, "eth": 0.0011966870016872904, "eur": 0.18400094738302836, "gbp": 0.15901137814172514, "hkd": 1.6222653736048847, "huf": 59.43962304980632, "idr": 2959.779351449615, "ils": 0.7356296694301568, "inr": 14.454781232154172, "jpy": 22.72522958538016, "krw": 242.90936122729164, "kwd": 0.06288628200016792, "lkr": 36.428810786201275, "ltc": 0.002682811145332816, "mmk": 315.11106654900465, "mxn": 3.949168390072189, "myr": 0.8596405618122629, "ngn": 74.41062801380617, "nok": 1.8008033407145658, "nzd": 0.31336609784310876, "php": 10.792126004540616, "pkr": 29.273347756820268, "pln": 0.7904889049333343, "rub": 13.45958042170728, "sar": 0.775185739193727, "sek": 1.9866996921500577, "sgd": 0.28166489665114897, "thb": 6.52219489350457, "try": 1.2368497383140853, "twd": 6.397867135864833, "uah": 5.411926314681908, "usd": 0.20669618892723937, "vef": 51361.44864673012, "vnd": 4825.231542223934, "xag": 0.013986750783718657, "xau": 0.0001607620948619388, "xdr": 0.14853436171738144, "xlm": 2.2433556639514873, "xrp": 0.6893915627220722, "zar": 2.9277274984409876, "bits": 32.4403304105404, "link": 0.30567887039861236, "sats": 3244.03304105404}, "market_cap": {"aed": 126242204.08630605, "ars": 1540161481.7564502, "aud": 49092153.18190955, "bch": 119799.35349673365, "bdt": 2899406487.4910765, "bhd": 12960101.60705647, "bmd": 34368631.4631123, "bnb": 1757550.3070307402, "brl": 136039635.4888643, "btc": 5394.050883124565, "cad": 46097133.16168812, "chf": 34765589.15651125, "clp": 23577091897.774548, "cny": 234533259.5358515, "czk": 786923191.8326155, "dkk": 228410487.84069782, "eos": 7141858.898769354, "eth": 198980.42025421793, "eur": 30594955.72846255, "gbp": 26439788.184572265, "hkd": 269743922.46981007, "huf": 9883387349.84722, "idr": 492140499880.7685, "ils": 122317615.69090222, "inr": 2403484319.794101, "jpy": 3778662028.497704, "krw": 40390015695.449554, "kwd": 10456484.279494597, "lkr": 6057239753.903399, "ltc": 446087.3130637709, "mmk": 52395432022.13233, "mxn": 656652228.0289454, "myr": 142937660.40393084, "ngn": 12372707326.720428, "nok": 299430515.2687025, "nzd": 52105285.470912136, "php": 1794472376.4795396, "pkr": 4867457430.963278, "pln": 131439394.16752668, "rub": 2238006233.025505, "sar": 128894843.79989202, "sek": 330340631.34768194, "sgd": 46834134.09478311, "thb": 1084484981.5027761, "try": 205658522.5493805, "twd": 1063812249.6777138, "uah": 899873877.5986694, "usd": 34368631.4631123, "vef": 8540180199318.645, "vnd": 802320572331.6781, "xag": 2325662.052826917, "xau": 26730.890493064824, "xdr": 24697710.992970064, "xlm": 373016379.5239358, "xrp": 114629324.69119915, "zar": 486811043.4961076, "bits": 5394050883.124565, "link": 50827083.44704211, "sats": 539405088312.45654}, "total_volume": {"aed": 19123981.99459578, "ars": 233313578.91806087, "aud": 7436795.4862776, "bch": 18147.977499422213, "bdt": 439220765.061153, "bhd": 1963279.6462586862, "bmd": 5206381.606187067, "bnb": 266245.03801655414, "brl": 20608159.992689967, "btc": 817.1255620369617, "cad": 6983090.567588037, "chf": 5266515.313738529, "clp": 3571609702.169957, "cny": 35528608.399700865, "czk": 119208192.38428691, "dkk": 34601091.516558595, "eos": 1081894.7750202043, "eth": 30142.83536761808, "eur": 4634720.905827723, "gbp": 4005269.369639708, "hkd": 40862546.3552395, "huf": 1497199158.4912174, "idr": 74552611994.1382, "ils": 18529460.07260374, "inr": 364095281.6746772, "jpy": 572416056.2599959, "krw": 6118539663.59104, "kwd": 1584015.5717743838, "lkr": 917589682.6975931, "ltc": 67576.17870183042, "mmk": 7937197436.011952, "mxn": 99473907.92505139, "myr": 21653117.2257229, "ngn": 1874297378.227344, "nok": 45359662.5952157, "nzd": 7893244.168073634, "php": 271838230.8513318, "pkr": 737353794.9762431, "pln": 19911285.81470182, "rub": 339027595.5172072, "sar": 19525820.939724516, "sek": 50042126.02037218, "sgd": 7094736.214751113, "thb": 164284768.39242968, "try": 31154477.306025997, "twd": 161153129.8563081, "uah": 136318689.59479597, "usd": 5206381.606187067, "vef": 1293721489928.3376, "vnd": 121540686731.63452, "xag": 352306.2635485233, "xau": 4049.367421844111, "xdr": 3741368.2987853033, "xlm": 56506923.15882068, "xrp": 17364788.244258475, "zar": 73745271.62267604, "bits": 817125562.0369617, "link": 7699613.894688714, "sats": 81712556203.69617}}, "community_data": {"facebook_likes": null, "twitter_followers": 96420, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 6666, "reddit_accounts_active_48h": "180.96"}, "developer_data": {"forks": 82, "stars": 210, "subscribers": 40, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 763, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 615, "deletions": -9237}, "commit_count_4_weeks": 64}, "public_interest_stats": {"alexa_rank": 236085, "bing_matches": null}}, "WPR_20190515": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.037183719002209306, "ars": 0.45364331342397823, "aud": 0.01445973509684265, "bch": 2.823708975675489e-05, "bdt": 0.853999000447944, "bhd": 0.003817303253572879, "bmd": 0.010123029331309633, "bnb": 0.00047501814447460525, "brl": 0.04006948085065641, "btc": 1.3898178552934858e-06, "cad": 0.013577573828795037, "chf": 0.010240173026731556, "clp": 6.944460185571244, "cny": 0.06908005830832357, "czk": 0.23178247760488566, "dkk": 0.06727664063295082, "eos": 0.0018117598427828633, "eth": 5.143448859374569e-05, "eur": 0.009011520710731843, "gbp": 0.007787646464576508, "hkd": 0.07945110185825029, "huf": 2.9110795448047093, "idr": 144.9563891063136, "ils": 0.036027760159837705, "inr": 0.707928748711811, "jpy": 1.1129772970053644, "krw": 11.896584070155097, "kwd": 0.0030798810589042977, "lkr": 1.7841157207947216, "ltc": 0.00011177739265119125, "mmk": 15.432691748461494, "mxn": 0.19341211685840184, "myr": 0.042101243698655616, "ngn": 3.644290559271468, "nok": 0.08819507090375564, "nzd": 0.01534723120134788, "php": 0.5285487296991812, "pkr": 1.4336740290467291, "pln": 0.038714513374660565, "rub": 0.6591883870874222, "sar": 0.03796503465205845, "sek": 0.09729941979345562, "sgd": 0.013794652069775641, "thb": 0.31942712903481046, "try": 0.06057521546168241, "twd": 0.3133381268920273, "uah": 0.2650549820104154, "usd": 0.010123029331309633, "vef": 2515.4476908736256, "vnd": 236.31766355154232, "xag": 0.000685006768475754, "xau": 7.873388523012694e-06, "xdr": 0.007274155801745817, "xlm": 0.09649983846013244, "xrp": 0.03082790947787327, "zar": 0.14338663666040283, "bits": 1.389817855293486, "link": 0.01457835482820634, "sats": 138.98178552934857}, "market_cap": {"aed": 22328647.088433962, "ars": 272410660.3987085, "aud": 8683002.417011019, "bch": 16956.238614689184, "bdt": 512822353.61515385, "bhd": 2292272.517805312, "bmd": 6078831.151645921, "bnb": 285246.145172999, "brl": 24061533.40600251, "btc": 834.5790372987861, "cad": 8153268.755132008, "chf": 6149175.385732777, "clp": 4170115439.3428974, "cny": 41482247.7203894, "czk": 139184279.641712, "dkk": 40399303.95072372, "eos": 1087953.2016711808, "eth": 30886.16670956427, "eur": 5411375.491195206, "gbp": 4676444.804961213, "hkd": 47710010.23525065, "huf": 1748089474.278817, "idr": 87045624870.82797, "ils": 21634499.280396342, "inr": 425107859.5124786, "jpy": 668337593.6870477, "krw": 7143842369.414301, "kwd": 1849453.9837325132, "lkr": 1071353037.3921279, "ltc": 67121.79469798239, "mmk": 9267258276.54596, "mxn": 116143059.8080199, "myr": 25281597.369955935, "ngn": 2188379214.5925317, "nok": 52960722.21910787, "nzd": 9215939.622906959, "php": 317391007.9783003, "pkr": 860914461.8518553, "pln": 23247881.856354676, "rub": 395839503.2835343, "sar": 22797823.434380297, "sek": 58427840.591963686, "sgd": 8283623.210347902, "thb": 191814477.5746117, "try": 36375129.885996364, "twd": 188158060.6368964, "uah": 159164260.89574665, "usd": 6078831.151645921, "vef": 1510514420453.6433, "vnd": 141907637315.46442, "xag": 411343.31898256106, "xau": 4727.932504815651, "xdr": 4368096.094793968, "xlm": 57947695.789632, "xrp": 18512013.58220037, "zar": 86102995.9643739, "bits": 834579037.2987862, "link": 8754233.003687605, "sats": 83457903729.87862}, "total_volume": {"aed": 1748856.2532355112, "ars": 21336137.608313553, "aud": 680082.5421131153, "bch": 1328.0707879526271, "bdt": 40166006.31318034, "bhd": 179538.64875943516, "bmd": 476114.913268774, "bnb": 22341.456816500355, "brl": 1884581.8554461272, "btc": 65.36709377951041, "cad": 638591.9841112229, "chf": 481624.5150451206, "clp": 326617749.56291246, "cny": 3249031.9738917807, "czk": 10901390.34574889, "dkk": 3164212.1020929506, "eos": 85212.22770168677, "eth": 2419.110552223089, "eur": 423837.495791863, "gbp": 366275.20277766814, "hkd": 3736811.702535639, "huf": 136916365.60870123, "idr": 6817712007.77292, "ils": 1694488.2151744354, "inr": 33295906.172168538, "jpy": 52346493.51403873, "krw": 559530246.0734639, "kwd": 144855.58178745804, "lkr": 83912045.8774509, "ltc": 5257.209266689599, "mmk": 725843465.7100692, "mxn": 9096722.9501502, "myr": 1980141.4513435648, "ngn": 171401368.77675864, "nok": 4148065.481169809, "nzd": 721824.0126743013, "php": 24859152.765735388, "pkr": 67429774.59169023, "pln": 1820853.8743050992, "rub": 31003508.087762084, "sar": 1785603.7544714217, "sek": 4576268.950716348, "sgd": 648801.7923113585, "thb": 15023568.030739559, "try": 2849024.9817388444, "twd": 14737184.91040837, "uah": 12466291.032174565, "usd": 476114.913268774, "vef": 118308672233.93622, "vnd": 11114693063.046347, "xag": 32217.820129457556, "xau": 370.30789609305435, "xdr": 342124.2738021091, "xlm": 4538662.362341755, "xrp": 1449924.421528509, "zar": 6743882.077504253, "bits": 65367093.77951041, "link": 685661.5660655117, "sats": 6536709377.951041}}, "community_data": {"facebook_likes": null, "twitter_followers": 35207, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 8, "stars": 34, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 18, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1010461, "bing_matches": null}}, "HC_20190516": {"id": "hshare", "symbol": "hc", "name": "HyperCash", "localization": {"en": "HyperCash", "de": "HyperCash", "es": "HyperCash", "fr": "HyperCash", "it": "HyperCash", "pl": "HyperCash", "ro": "HyperCash", "hu": "HyperCash", "nl": "HyperCash", "pt": "HyperCash", "sv": "HyperCash", "vi": "HyperCash", "tr": "HyperCash", "ru": "HyperCash", "ja": "\u30a8\u30a4\u30c1\u30b7\u30a7\u30a2", "zh": "\u8d85\u7ea7\u73b0\u91d1", "zh-tw": "\u7d05\u71d2\u8089", "ko": "\uc5d0\uc774\uce58\uc250\uc5b4", "ar": "HyperCash", "th": "HyperCash", "id": "HyperCash"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1085/thumb/hshare-hcash-logo.png?1547035052", "small": "https://assets.coingecko.com/coins/images/1085/small/hshare-hcash-logo.png?1547035052"}, "market_data": {"current_price": {"aed": 3.8671708954658297, "ars": 47.18452807644792, "aud": 1.5071548541019975, "bch": 0.0029613358260556387, "bdt": 88.8202078724683, "bhd": 0.39700027603629007, "bmd": 1.0528500552581197, "bnb": 0.05062439760056731, "brl": 4.17058122439012, "btc": 0.00015130337028063906, "cad": 1.4151252307718858, "chf": 1.0639913145428608, "clp": 722.8873996336545, "cny": 7.184754062086935, "czk": 24.120635785605103, "dkk": 6.996828750023801, "eos": 0.19748353480997327, "eth": 0.005607965147481825, "eur": 0.937155521235971, "gbp": 0.8093679514791267, "hkd": 8.263209430688931, "huf": 303.0049353276082, "idr": 15073.998874750481, "ils": 3.7478798256549304, "inr": 73.62844596498901, "jpy": 115.44079715883181, "krw": 1237.5415036324746, "kwd": 0.3202432956077522, "lkr": 185.27174142221145, "ltc": 0.012441514257842517, "mmk": 1613.3969445477424, "mxn": 20.153731562954835, "myr": 4.378276954790885, "ngn": 379.56036551151783, "nok": 9.187801292215502, "nzd": 1.5973325141849082, "php": 54.96619968876365, "pkr": 149.06767400011557, "pln": 4.029520373986639, "rub": 68.62350318165794, "sar": 3.948450919731765, "sek": 10.126632950739454, "sgd": 1.4364938754934045, "thb": 33.3008576102729, "try": 6.3179668271441995, "twd": 32.587864394301924, "uah": 27.53294387169785, "usd": 1.0528500552581197, "vef": 261620.22786439612, "vnd": 24576.59948131733, "xag": 0.07131693577852088, "xau": 0.0008177802234206395, "xdr": 0.7566180580105843, "xlm": 10.680382076955416, "xrp": 3.395625308659682, "zar": 14.96156466569756, "bits": 151.30337028063906, "link": 1.5942129001224257, "sats": 15130.337028063906}, "market_cap": {"aed": 177828571.05680808, "ars": 2169740471.946173, "aud": 69305236.64742392, "bch": 136588.68501644718, "bdt": 4084321865.746521, "bhd": 18255720.707731385, "bmd": 48414416.10019137, "bnb": 2329622.7905767583, "brl": 191780637.48856103, "btc": 6962.013869286234, "cad": 65073332.53610622, "chf": 48926737.45136358, "clp": 33241363463.545437, "cny": 330384816.909316, "czk": 1109166962.2785542, "dkk": 321743230.9507602, "eos": 9089367.637361767, "eth": 258330.01489210315, "eur": 43094301.15818962, "gbp": 37218098.23286112, "hkd": 379976671.60906357, "huf": 13933424751.320227, "idr": 693165042990.9188, "ils": 172343072.46940807, "inr": 3385741589.656376, "jpy": 5308447067.721577, "krw": 56907295582.01919, "kwd": 14726116.116363006, "lkr": 8519563765.063296, "ltc": 572916.041529063, "mmk": 74190688995.08347, "mxn": 926752238.8278221, "myr": 201331349.3526458, "ngn": 17453761225.77131, "nok": 422493243.53992945, "nzd": 73451979.80082117, "php": 2527574035.7211595, "pkr": 6854750455.761642, "pln": 185294074.01945698, "rub": 3155593544.111151, "sar": 181566163.97974235, "sek": 465664620.4485507, "sgd": 66055951.52527572, "thb": 1531311670.4369745, "try": 290526341.6655983, "twd": 1498525282.6106756, "uah": 1266079053.1475954, "usd": 48414416.10019137, "vef": 12030384107211.229, "vnd": 1130134065790.1514, "xag": 3279448.7558111465, "xau": 37604.929417501626, "xdr": 34792439.15740932, "xlm": 491546731.299748, "xrp": 156446337.5307767, "zar": 687994851.3251648, "bits": 6962013869.286234, "link": 73355486.40232496, "sats": 696201386928.6234}, "total_volume": {"aed": 97817491.61670342, "ars": 1193500960.862006, "aud": 38122470.22210728, "bch": 74905.00165872498, "bdt": 2246647529.630952, "bhd": 10041855.46041946, "bmd": 26631135.3280526, "bnb": 1280510.1511547384, "brl": 105492052.19554175, "btc": 3827.117175338227, "cad": 35794642.68308221, "chf": 26912946.002094045, "clp": 18284951470.95584, "cny": 181733530.59216374, "czk": 610115289.0642486, "dkk": 176980085.98518896, "eos": 4995213.434544791, "eth": 141849.71355771713, "eur": 23704719.76025889, "gbp": 20472418.97208715, "hkd": 209012335.1313946, "huf": 7664306419.966946, "idr": 381286681767.7804, "ils": 94800104.09062937, "inr": 1862382111.0092578, "jpy": 2919997464.179656, "krw": 31302781524.03978, "kwd": 8100339.170463115, "lkr": 4686324319.059135, "ltc": 314699.7506736795, "mmk": 40809792575.43344, "mxn": 509775109.89132464, "myr": 110745576.26170659, "ngn": 9600724631.794035, "nok": 232399265.55378368, "nzd": 40403453.594090246, "php": 1390333120.15295, "pkr": 3770566738.833336, "pln": 101924012.6842893, "rub": 1735785443.320075, "sar": 99873415.26402931, "sek": 256146382.08148506, "sgd": 36335148.20570036, "thb": 842322837.0748081, "try": 159808729.3926907, "twd": 824288152.3372445, "uah": 696427331.2851756, "usd": 26631135.3280526, "vef": 6617508027868.774, "vnd": 621648584640.9054, "xag": 1803914.0126503583, "xau": 20685.2017433583, "xdr": 19138145.829881057, "xlm": 270153094.4755237, "xrp": 85890062.56556301, "zar": 378442733.93129873, "bits": 3827117175.338227, "link": 40324545.05069952, "sats": 382711717533.8227}}, "community_data": {"facebook_likes": null, "twitter_followers": 12735, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 801, "reddit_accounts_active_48h": "62.04"}, "developer_data": {"forks": 36, "stars": 118, "subscribers": 38, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 932135, "bing_matches": null}}, "POA_20190526": {"id": "poa-network", "symbol": "poa", "name": "POA Network", "localization": {"en": "POA Network", "de": "POA Network", "es": "POA Network", "fr": "POA Network", "it": "POA Network", "pl": "POA Network", "ro": "POA Network", "hu": "POA Network", "nl": "POA Network", "pt": "POA Network", "sv": "POA Network", "vi": "POA Network", "tr": "POA Network", "ru": "POA Network", "ja": "\u30dd\u30a2\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "POA Network", "zh-tw": "POA Network", "ko": "POA \ub124\ud2b8\uc6cc\ud06c", "ar": "POA Network", "th": "POA Network", "id": "POA Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3157/thumb/poa-network.png?1548331565", "small": "https://assets.coingecko.com/coins/images/3157/small/poa-network.png?1548331565"}, "market_data": {"current_price": {"aed": 0.1216625276028418, "ars": 1.485912159874146, "aud": 0.04815468954383273, "bch": 8.465748809862208e-05, "bdt": 2.8026174388186837, "bhd": 0.012486935140487565, "bmd": 0.033121843873972344, "bnb": 0.0010552456899167448, "brl": 0.13381556143523557, "btc": 4.316613966738578e-06, "cad": 0.04449469267391485, "chf": 0.03342331889691324, "clp": 23.103072093757547, "cny": 0.22875525291318077, "czk": 0.7663632870028102, "dkk": 0.22171639738414745, "eos": 0.005568577710572394, "eth": 0.00013551026431380195, "eur": 0.029688367294308612, "gbp": 0.02615227924232333, "hkd": 0.2599783208433901, "huf": 9.690427323868056, "idr": 481.0936058809192, "ils": 0.11971062422150451, "inr": 2.3069366576750796, "jpy": 3.6506068271795473, "krw": 39.44135896589785, "kwd": 0.0100860651654388, "lkr": 5.847992754388573, "ltc": 0.0003758718318990956, "mmk": 51.031296743538775, "mxn": 0.6292222924426286, "myr": 0.13862866217778186, "ngn": 11.932661817530912, "nok": 0.2900579233575379, "nzd": 0.051003764310184135, "php": 1.7368560009732545, "pkr": 5.0441823081639505, "pln": 0.1278254759706278, "rub": 2.132175640989933, "sar": 0.12421850717275207, "sek": 0.3189546785832585, "sgd": 0.045678566739502206, "thb": 1.0576964013494954, "try": 0.20260880311537946, "twd": 1.0417151116803034, "uah": 0.8720243206116985, "usd": 0.033121843873972344, "vef": 8230.368890917898, "vnd": 775.1070153516904, "xag": 0.0022909051221687337, "xau": 2.5988723577273676e-05, "xdr": 0.023897840939041425, "xlm": 0.2688604322306619, "xrp": 0.08866302298254526, "zar": 0.4762779387585451, "bits": 4.316613966738578, "link": 0.02657318754711947, "sats": 431.66139667385784}, "market_cap": {"aed": 26786233.863974463, "ars": 327150778.46847737, "aud": 10602136.920736311, "bch": 18638.89662023887, "bdt": 617047562.8495564, "bhd": 2749227.4861266986, "bmd": 7292380.599805572, "bnb": 232331.66687390755, "brl": 29461946.86127447, "btc": 950.3816293461363, "cad": 9796321.57207718, "chf": 7358755.848025002, "clp": 5086564485.161962, "cny": 50364658.88780335, "czk": 168728914.60412142, "dkk": 48814925.91701628, "eos": 1226024.3789446272, "eth": 29835.066740744813, "eur": 6536437.842068524, "gbp": 5757903.289233281, "hkd": 57238989.184963934, "huf": 2133525068.510207, "idr": 105921569208.69409, "ils": 26356486.582847286, "inr": 507914359.82312196, "jpy": 803747958.7590706, "krw": 8683737597.679407, "kwd": 2220631.9859691905, "lkr": 1287542718.701675, "ltc": 82755.06838881837, "mmk": 11235474684.66683, "mxn": 138534812.73062664, "myr": 30521639.14813521, "ngn": 2627194061.81921, "nok": 63861564.62667729, "nzd": 11229412.915170398, "php": 382400661.45913565, "pkr": 1110569126.0999749, "pln": 28143119.82979966, "rub": 469437521.0177037, "sar": 27348979.582480803, "sek": 70223714.57241046, "sgd": 10056973.131856022, "thb": 232871235.8838912, "try": 44608039.05755567, "twd": 229352662.24448478, "uah": 191992126.4765241, "usd": 7292380.599805572, "vef": 1812066461569.6958, "vnd": 170654006553.22787, "xag": 504384.7236423463, "xau": 5721.893513831446, "xdr": 5261547.403707519, "xlm": 59194548.69464302, "xrp": 19520788.49167298, "zar": 104861311.88630758, "bits": 950381629.3461362, "link": 5850573.96203373, "sats": 95038162934.61363}, "total_volume": {"aed": 5107613.838230645, "ars": 62381290.76969054, "aud": 2021621.3121322296, "bch": 3554.075081638106, "bdt": 117658969.41173261, "bhd": 524224.2124776724, "bmd": 1390515.1524606703, "bnb": 44301.13030485909, "brl": 5617820.26745635, "btc": 181.21929295095998, "cad": 1867967.9972701704, "chf": 1403171.6213783673, "clp": 969908919.8353957, "cny": 9603560.918621108, "czk": 32173322.443089265, "dkk": 9308056.981511083, "eos": 233779.0043835809, "eth": 5688.966971744062, "eur": 1246371.570726292, "gbp": 1097920.173049591, "hkd": 10914362.008936675, "huf": 406821736.10044855, "idr": 20197183202.564556, "ils": 5025669.389780976, "inr": 96849390.1024917, "jpy": 153259103.81633395, "krw": 1655819871.7559495, "kwd": 423431.3311364079, "lkr": 245509355.31845662, "ltc": 15779.782056443819, "mmk": 2142386506.0655282, "mxn": 26415894.454325896, "myr": 5819882.976836172, "ngn": 500954811.8637288, "nok": 12177158.344643822, "nzd": 2141230.644516594, "php": 72916368.91306639, "pkr": 211763933.13017607, "pln": 5366345.602133843, "rub": 89512605.26995742, "sar": 5214918.502030871, "sek": 13390296.603226304, "sgd": 1917669.1803645706, "thb": 44404015.621102795, "try": 8505885.476238359, "twd": 43733092.06004051, "uah": 36609164.50601469, "usd": 1390515.1524606703, "vef": 345525831735.3366, "vnd": 32540400037.089764, "xag": 96176.35712994325, "xau": 1091.053809226741, "xdr": 1003274.7591973563, "xlm": 11287249.17418143, "xrp": 3722234.7097976296, "zar": 19995012.751899224, "bits": 181219292.95095998, "link": 1115590.6680209017, "sats": 18121929295.095997}}, "community_data": {"facebook_likes": null, "twitter_followers": 17424, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 42, "stars": 57, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 131, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 639132, "bing_matches": null}}, "BLZ_20190527": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.24266983453055432, "ars": 2.9778276980171228, "aud": 0.09572308197409089, "bch": 0.0001633683621035247, "bdt": 5.583631736237259, "bhd": 0.024903317894297207, "bmd": 0.06606530811592314, "bnb": 0.0020855711653569816, "brl": 0.26703597540456125, "btc": 8.398406936392852e-06, "cad": 0.08900417407339359, "chf": 0.0662638343668115, "clp": 46.008210898469464, "cny": 0.4565377052042751, "czk": 1.5277533133233705, "dkk": 0.4410997621996705, "eos": 0.010961387291578497, "eth": 0.0002696533672814221, "eur": 0.05906892592113878, "gbp": 0.05216860268435493, "hkd": 0.5185366936056637, "huf": 19.285784745200257, "idr": 955.3017231822453, "ils": 0.23871311716218427, "inr": 4.601774478308369, "jpy": 7.23851154902924, "krw": 78.60478252405619, "kwd": 0.020116555994758013, "lkr": 11.666178108916675, "ltc": 0.0007434581286062958, "mmk": 101.6447704865453, "mxn": 1.2580612482713174, "myr": 0.27697880427600796, "ngn": 23.78351092173233, "nok": 0.5783670882681459, "nzd": 0.10126814148018447, "php": 3.4634499944663513, "pkr": 10.038833391633137, "pln": 0.2542358219571015, "rub": 4.285128015015005, "sar": 0.2477581184963348, "sek": 0.6352127183752596, "sgd": 0.09109619812019201, "thb": 2.1058482125220768, "try": 0.40421702018063754, "twd": 2.082967814362288, "uah": 1.7404995271959032, "usd": 0.06606530811592314, "vef": 16416.412647650945, "vnd": 1538.42843993149, "xag": 0.004523170569299815, "xau": 5.144769804219403e-05, "xdr": 0.04765852229520522, "xlm": 0.5288314747656065, "xrp": 0.17362305596702196, "zar": 0.9571222744396728, "bits": 8.398406936392853, "link": 0.04945203354881279, "sats": 839.8406936392852}, "market_cap": {"aed": 50248343.53370195, "ars": 616616519.7907798, "aud": 19819771.759680435, "bch": 33952.21039597986, "bdt": 1156172732.3500707, "bhd": 5156596.719581476, "bmd": 13679789.679218644, "bnb": 432092.05209169106, "brl": 55293709.88340182, "btc": 1739.5119610206036, "cad": 18428824.424887214, "chf": 13721841.352692563, "clp": 9527973511.57578, "cny": 94532818.5992726, "czk": 316314698.79989403, "dkk": 91331816.21328378, "eos": 2271329.4725191346, "eth": 55905.12563857501, "eur": 12230470.681864154, "gbp": 10802738.392623452, "hkd": 107370617.22373526, "huf": 3993404011.640454, "idr": 197809213731.32144, "ils": 49429047.250024006, "inr": 952864806.2004865, "jpy": 1498757757.255195, "krw": 16276271516.40636, "kwd": 4165427.558373676, "lkr": 2415653047.5912547, "ltc": 153979.8841731409, "mmk": 21047038482.111553, "mxn": 260503550.8718769, "myr": 57352518.2301242, "ngn": 4924724284.518712, "nok": 119755683.20876418, "nzd": 20965194.229311068, "php": 717139239.4979442, "pkr": 2078687488.7692912, "pln": 52644837.48865601, "rub": 887298518.1734802, "sar": 51301947.25500571, "sek": 131533913.72362302, "sgd": 18861926.56613121, "thb": 435564503.38632137, "try": 83699861.55124773, "twd": 431308994.41291004, "uah": 360395919.5504109, "usd": 13679789.679218644, "vef": 3399258683741.801, "vnd": 318539302462.9462, "xag": 936620.8630640056, "xau": 10654.09379796907, "xdr": 9868395.077743137, "xlm": 109509126.95909962, "xrp": 36019326.18372835, "zar": 198202040.41034213, "bits": 1739511961.0206037, "link": 10242704.89706694, "sats": 173951196102.06036}, "total_volume": {"aed": 5285007.623128412, "ars": 64852898.23858139, "aud": 2084714.068071445, "bch": 3557.9331100850964, "bdt": 121603644.50670992, "bhd": 542359.2312870659, "bmd": 1438809.4741665113, "bnb": 45420.80612866884, "brl": 5815667.894581037, "btc": 182.90548871405852, "cad": 1938385.7057392406, "chf": 1443133.0966363822, "clp": 1001994111.8569294, "cny": 9942748.990280256, "czk": 33272318.015105788, "dkk": 9606532.308785448, "eos": 238723.59540741032, "eth": 5872.671007673704, "eur": 1286438.1120428038, "gbp": 1136158.7788945336, "hkd": 11292999.74131183, "huf": 420017261.6986874, "idr": 20805127671.400738, "ils": 5198835.884911121, "inr": 100220174.64521466, "jpy": 157644598.84652808, "krw": 1711901587.0169146, "kwd": 438110.2908363318, "lkr": 254072947.95280954, "ltc": 16191.472190031665, "mmk": 2213680113.6067543, "mxn": 27398804.22442537, "myr": 6032208.7204431025, "ngn": 517971410.6999441, "nok": 12596021.571353862, "nzd": 2205477.663666658, "php": 75429068.7117687, "pkr": 218631669.2584922, "pln": 5536898.5589612825, "rub": 93324060.11338821, "sar": 5395823.290019247, "sek": 13834039.428162541, "sgd": 1983947.046548189, "thb": 45862411.69142604, "try": 8803278.071976194, "twd": 45364108.80623792, "uah": 37905631.27500532, "usd": 1438809.4741665113, "vef": 357526373869.6494, "vnd": 33504807255.52132, "xag": 98508.2920821366, "xau": 1120.45848991243, "xdr": 1037935.5725216089, "xlm": 11517205.592912583, "xrp": 3781265.9167615985, "zar": 20844776.716748357, "bits": 182905488.71405852, "link": 1076995.7246242352, "sats": 18290548871.405853}}, "community_data": {"facebook_likes": null, "twitter_followers": 36605, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 30, "stars": 202, "subscribers": 55, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 283, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 18653, "deletions": -325}, "commit_count_4_weeks": 15}, "public_interest_stats": {"alexa_rank": 862077, "bing_matches": null}}, "PIVX_20190602": {"id": "pivx", "symbol": "pivx", "name": "PIVX", "localization": {"en": "PIVX", "de": "PIVX", "es": "PIVX", "fr": "PIVX", "it": "PIVX", "pl": "PIVX", "ro": "PIVX", "hu": "PIVX", "nl": "PIVX", "pt": "PIVX", "sv": "PIVX", "vi": "PIVX", "tr": "PIVX", "ru": "PIVX", "ja": "\u30d4\u30f4\u30af\u30b9", "zh": "\u666e\u7ef4\u5e01", "zh-tw": "\u666e\u7dad\u5e63", "ko": "\ud53c\ubca1\uc2a4", "ar": "PIVX", "th": "PIVX", "id": "PIVX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/548/thumb/PIVX-Shield.png?1609817792", "small": "https://assets.coingecko.com/coins/images/548/small/PIVX-Shield.png?1609817792"}, "market_data": {"current_price": {"aed": 2.7215592230320005, "ars": 32.926502464172835, "aud": 1.070935240983558, "bch": 0.0016325207217597248, "bdt": 62.65729832023566, "bhd": 0.2793317268494894, "bmd": 0.7409270664941371, "bnb": 0.02205408745482597, "brl": 2.945110996607545, "btc": 8.568345204713074e-05, "cad": 1.001331811430036, "chf": 0.7470767611460387, "clp": 522.1301464303409, "cny": 5.122992015860412, "czk": 17.20306690798079, "dkk": 4.968521318256516, "eos": 0.09300118258580976, "eth": 0.002757048760425337, "eur": 0.6652547033389583, "gbp": 0.5866867972079196, "hkd": 5.815795869385762, "huf": 216.8434199155071, "idr": 10669.343704882354, "ils": 2.679562735976048, "inr": 51.73530651065977, "jpy": 81.16744874383299, "krw": 884.5911820520427, "kwd": 0.22548855692736064, "lkr": 130.72533583280278, "ltc": 0.00645550152408747, "mmk": 1137.5953281333816, "mxn": 14.180677218337909, "myr": 3.1085683986009522, "ngn": 266.73374393788936, "nok": 6.478592176718087, "nzd": 1.1372637729031823, "php": 38.72407449143113, "pkr": 111.13905997412098, "pln": 2.8564590731015205, "rub": 48.12847355096637, "sar": 2.7804399560792286, "sek": 7.07563120689906, "sgd": 1.0231143262578968, "thb": 23.58778362537411, "try": 4.462785248625485, "twd": 23.43536085018199, "uah": 19.65012673049099, "usd": 0.7409270664941371, "vef": 184111.21982566916, "vnd": 17373.07720972647, "xag": 0.051399725823703266, "xau": 0.0005788566799692098, "xdr": 0.5345648008612566, "xlm": 5.4489401247329585, "xrp": 1.6683147744376614, "zar": 10.856795414213835, "bits": 85.68345204713074, "link": 0.6316436306221463, "sats": 8568.345204713074}, "market_cap": {"aed": 163563682.0821533, "ars": 1978858271.9604769, "aud": 64362410.26997093, "bch": 98113.27935350077, "bdt": 3765656957.1762586, "bhd": 16787628.716368213, "bmd": 44529164.79807375, "bnb": 1325434.228491432, "brl": 176998977.15586334, "btc": 5149.511644550949, "cad": 60179295.99967531, "chf": 44898756.86589778, "clp": 31379632878.647182, "cny": 307888004.1633214, "czk": 1033891507.0311139, "dkk": 298604430.2987246, "eos": 5589301.799129293, "eth": 165696.57684421528, "eur": 39981312.13891691, "gbp": 35259439.50372915, "hkd": 349524999.70776063, "huf": 13032128015.628284, "idr": 641219609333.5138, "ils": 161039724.4922338, "inr": 3109253384.94198, "jpy": 4878103209.8817835, "krw": 53163271131.26183, "kwd": 13551694.310492203, "lkr": 7856495309.486003, "ltc": 387970.83305443247, "mmk": 68368631854.22717, "mxn": 852248137.9868116, "myr": 186822645.26029614, "ngn": 16030499327.306551, "nok": 389358564.0778772, "nzd": 68348705.63185944, "php": 2327288032.330866, "pkr": 6679374719.711089, "pln": 171671062.5877737, "rub": 2892485410.7049603, "sar": 167102370.2794918, "sek": 425240165.0721649, "sgd": 61488408.91557387, "thb": 1417608225.9290776, "try": 268210069.22417414, "twd": 1408447730.6759818, "uah": 1180957979.6097128, "usd": 44529164.79807375, "vef": 11064947171634.309, "vnd": 1044108999529.5656, "xag": 3089085.2356216377, "xau": 34788.85529014312, "xdr": 32126946.347679056, "xlm": 327477242.7158868, "xrp": 100264475.25734127, "zar": 652485317.4361994, "bits": 5149511644.550949, "link": 37961311.70469225, "sats": 514951164455.0949}, "total_volume": {"aed": 9731813.770869596, "ars": 117739341.25542311, "aud": 3829474.750250839, "bch": 5837.604968063727, "bdt": 224051401.66636896, "bhd": 998840.7832500371, "bmd": 2649423.9654592564, "bnb": 78861.51077680007, "brl": 10531195.320303997, "btc": 306.3888492710956, "cad": 3580585.2135116444, "chf": 2671414.1843725694, "clp": 1867044930.0589051, "cny": 18318912.124374937, "czk": 61515120.457222536, "dkk": 17766552.2677841, "eos": 332555.75764668896, "eth": 9858.718071096982, "eur": 2378832.9970189733, "gbp": 2097888.079721672, "hkd": 20796256.00327764, "huf": 775393664.851135, "idr": 38151683459.46887, "ils": 9581641.771083405, "inr": 184996293.33058912, "jpy": 290240421.2801134, "krw": 3163141398.5888705, "kwd": 806307.1436801135, "lkr": 467450648.3977637, "ltc": 23083.730127318056, "mmk": 4067839415.8447404, "mxn": 50707590.21732115, "myr": 11115690.040171904, "ngn": 953792627.5653323, "nok": 23166298.2115792, "nzd": 4066653.833062727, "php": 138470432.02684638, "pkr": 397413594.81889, "pln": 10214191.742836794, "rub": 172098897.4667337, "sar": 9942360.843980696, "sek": 25301204.04294626, "sgd": 3658475.6286721798, "thb": 84345736.6523782, "try": 15958129.652832663, "twd": 83800699.80362783, "uah": 70265372.98794487, "usd": 2649423.9654592564, "vef": 658349114473.7727, "vnd": 62123047186.03172, "xag": 183796.3162281534, "xau": 2069.8889672546998, "xdr": 1911509.0520235102, "xlm": 19484444.833591845, "xrp": 5965598.161016662, "zar": 38821977.57278705, "bits": 306388849.2710956, "link": 2258645.753783178, "sats": 30638884927.10956}}, "community_data": {"facebook_likes": null, "twitter_followers": 63001, "reddit_average_posts_48h": 0.217, "reddit_average_comments_48h": 1.652, "reddit_subscribers": 8606, "reddit_accounts_active_48h": "162.041666666667"}, "developer_data": {"forks": 570, "stars": 373, "subscribers": 127, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 476, "pull_request_contributors": 40, "code_additions_deletions_4_weeks": {"additions": 310, "deletions": -551}, "commit_count_4_weeks": 28}, "public_interest_stats": {"alexa_rank": 309234, "bing_matches": null}}, "KNC_20190625": {"id": "kyber-network", "symbol": "kncl", "name": "Kyber Network Crystal Legacy", "localization": {"en": "Kyber Network Crystal Legacy", "de": "Kyber Network Crystal Legacy", "es": "Kyber Network Crystal Legacy", "fr": "Kyber Network Crystal Legacy", "it": "Kyber Network Crystal Legacy", "pl": "Kyber Network Crystal Legacy", "ro": "Kyber Network Crystal Legacy", "hu": "Kyber Network Crystal Legacy", "nl": "Kyber Network Crystal Legacy", "pt": "Kyber Network Crystal Legacy", "sv": "Kyber Network Crystal Legacy", "vi": "Kyber Network Crystal Legacy", "tr": "Kyber Network Crystal Legacy", "ru": "Kyber Network Crystal Legacy", "ja": "\u30ab\u30a4\u30d0\u30fc", "zh": "Kyber Network Crystal Legacy", "zh-tw": "Kyber Network Crystal Legacy", "ko": "\uce74\uc774\ubc84\ub124\ud2b8\uc6cc\ud06c", "ar": "Kyber Network Crystal Legacy", "th": "Kyber Network Crystal Legacy", "id": "Kyber Network Crystal Legacy"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/947/thumb/logo-kncl.png?1618984814", "small": "https://assets.coingecko.com/coins/images/947/small/logo-kncl.png?1618984814"}, "market_data": {"current_price": {"aed": 0.9259326966547589, "ars": 10.760272268379557, "aud": 0.36365011419117066, "bch": 0.0005730691680814212, "bdt": 21.245021470898195, "bhd": 0.09501613329541393, "bmd": 0.2520796576952521, "bnb": 0.006476761524725259, "brl": 0.9634484517112542, "btc": 2.490470616834625e-05, "cad": 0.3335268471762465, "chf": 0.2458091762100832, "clp": 172.34560156795575, "cny": 1.731777165180076, "czk": 5.677610044563138, "dkk": 1.6556087758108804, "eos": 0.03568785126645377, "eth": 0.0008558909901621675, "eur": 0.22138467401667467, "gbp": 0.19783337575752255, "hkd": 1.9696874253162804, "huf": 71.84774403630095, "idr": 3560.4739171508327, "ils": 0.9129631982663373, "inr": 17.5396607372125, "jpy": 27.051962876960143, "krw": 292.2031768106047, "kwd": 0.07652180504928616, "lkr": 44.43881733455105, "ltc": 0.0018185340187831613, "mmk": 383.07259242662354, "mxn": 4.8209478295244015, "myr": 1.0428369066278507, "ngn": 90.74867677029076, "nok": 2.1420720992311773, "nzd": 0.38240484072369774, "php": 12.934790296591666, "pkr": 39.611797410231986, "pln": 0.9436854065479466, "rub": 15.88858082453177, "sar": 0.9453995482202759, "sek": 2.357398542834463, "sgd": 0.34157146529227417, "thb": 7.742626686109675, "try": 1.4674565193071438, "twd": 7.803977076960585, "uah": 6.60735191692532, "usd": 0.2520796576952521, "vef": 62638.6797976116, "vnd": 5826.00317645694, "xag": 0.01644896146597804, "xau": 0.0001801462065753353, "xdr": 0.180944542851256, "xlm": 2.0485574139726976, "xrp": 0.5675190260467607, "zar": 3.6131333576433686, "bits": 24.904706168346248, "link": 0.1480246352928109, "sats": 2490.4706168346247}, "market_cap": {"aed": 153686725.333491, "ars": 1785994829.4283254, "aud": 60358809.46758428, "bch": 95092.88167531157, "bdt": 3526258216.4969764, "bhd": 15770820.528079227, "bmd": 41840294.93108577, "bnb": 1079042.1487909183, "brl": 159913607.22660995, "btc": 4134.194056352144, "cad": 55358936.0636147, "chf": 40799517.594675004, "clp": 28606000442.908657, "cny": 287441152.5647617, "czk": 942372268.1161424, "dkk": 274798689.0483852, "eos": 5920113.532247713, "eth": 141883.0260158706, "eur": 36745527.738212265, "gbp": 32836472.66339076, "hkd": 326929604.5177713, "huf": 11925320861.258081, "idr": 590969061724.6294, "ils": 151534042.15928644, "inr": 2911240775.815988, "jpy": 4490096962.148141, "krw": 48500014675.26655, "kwd": 12701123.609870268, "lkr": 7375974882.963666, "ltc": 301929.4742344474, "mmk": 63582561138.36081, "mxn": 800183088.4685361, "myr": 173090538.6704362, "ngn": 15062506175.190878, "nok": 355542090.20639455, "nzd": 63471727.41045728, "php": 2146922309.516184, "pkr": 6574783945.470826, "pln": 156633328.1040128, "rub": 2637193789.5063353, "sar": 156917842.10954392, "sek": 391282070.13652796, "sgd": 56694185.395750046, "thb": 1285124658.8082986, "try": 243569092.91182265, "twd": 1295307624.267741, "uah": 1096691242.1463406, "usd": 41840294.93108577, "vef": 10396796238093.549, "vnd": 967002626872.3826, "xag": 2730206.020346987, "xau": 29900.748369551126, "xdr": 30033256.58359788, "xlm": 340144923.1161694, "xrp": 94236772.38274615, "zar": 599709499.3357319, "bits": 4134194056.352144, "link": 24572165.72982635, "sats": 413419405635.2144}, "total_volume": {"aed": 27571345.83179517, "ars": 320406860.0532264, "aud": 10828349.723862233, "bch": 17064.1864962711, "bdt": 632609515.0266097, "bhd": 2829279.795553638, "bmd": 7506134.565272586, "bnb": 192857.46416928555, "brl": 28688446.308471844, "btc": 741.5833451907378, "cad": 9931374.149446746, "chf": 7319419.467961445, "clp": 5131906671.604053, "cny": 51566844.218040116, "czk": 169061261.79826564, "dkk": 49298790.5977974, "eos": 1062671.285738108, "eth": 25485.725441314058, "eur": 6592135.077663049, "gbp": 5890851.9374987595, "hkd": 58651058.9593988, "huf": 2139398473.7939985, "idr": 106019647053.73653, "ils": 27185155.208411872, "inr": 522275597.0333299, "jpy": 805521855.5346599, "krw": 8700886004.027004, "kwd": 2278577.220903278, "lkr": 1323247365.0768166, "ltc": 54150.188798711046, "mmk": 11406689668.304064, "mxn": 143552571.72046906, "myr": 31052383.291651405, "ngn": 2702208443.4981313, "nok": 63784129.081860416, "nzd": 11386806.135518523, "php": 385157126.2333869, "pkr": 1179513985.5869365, "pln": 28099965.35855448, "rub": 473111661.6491321, "sar": 28151007.07359838, "sek": 70195869.22751631, "sgd": 10170917.421828264, "thb": 230550923.1723477, "try": 43696211.75827793, "twd": 232377743.68444043, "uah": 196746032.82947636, "usd": 7506134.565272586, "vef": 1865181680468.2603, "vnd": 173479939714.36987, "xag": 489798.0239717698, "xau": 5364.184005726412, "xdr": 5387955.933894625, "xlm": 60999557.657902636, "xrp": 16898920.828468177, "zar": 107587678.5644219, "bits": 741583345.1907377, "link": 4407705.253338907, "sats": 74158334519.07378}}, "community_data": {"facebook_likes": null, "twitter_followers": 96973, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.565, "reddit_subscribers": 6694, "reddit_accounts_active_48h": "1287.16666666667"}, "developer_data": {"forks": 84, "stars": 219, "subscribers": 43, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 833, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 50, "deletions": -41}, "commit_count_4_weeks": 15}, "public_interest_stats": {"alexa_rank": 219809, "bing_matches": null}}, "EVX_20190629": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 2.8315554483954353, "ars": 32.66111111678575, "aud": 1.1077095736227145, "bch": 0.0016049115164107274, "bdt": 65.16553076690566, "bhd": 0.29064141384622316, "bmd": 0.7708728343077696, "bnb": 0.02135733199497461, "brl": 2.9655639819114974, "btc": 6.511993900422328e-05, "cad": 1.0158855142184782, "chf": 0.7515933047217273, "clp": 525.6654781714786, "cny": 5.303507199187479, "czk": 17.251279133834547, "dkk": 5.0624876405584835, "eos": 0.10741004718450595, "eth": 0.0024179932689921482, "eur": 0.6781075391728401, "gbp": 0.6075079215155963, "hkd": 6.020863728719097, "huf": 219.30514162891487, "idr": 10887.138935983305, "ils": 2.769591919100946, "inr": 53.44746583204442, "jpy": 82.61048751452076, "krw": 891.4604717785294, "kwd": 0.23374868605580681, "lkr": 136.06970948876398, "ltc": 0.005650276360350815, "mmk": 1167.673057931144, "mxn": 14.825888873107573, "myr": 3.1829269950012593, "ngn": 277.5142203507971, "nok": 6.5849576339521425, "nzd": 1.1622442014129866, "php": 39.63050842931707, "pkr": 121.22275266109457, "pln": 2.8855096089414705, "rub": 48.48867215079282, "sar": 2.8910043905044205, "sek": 7.157460990934632, "sgd": 1.044283698561541, "thb": 23.728236712827353, "try": 4.466506580534286, "twd": 23.88626564386045, "uah": 20.202457086912247, "usd": 0.7708728343077696, "vef": 191552.37306477426, "vnd": 17986.358257234435, "xag": 0.0503280132770929, "xau": 0.0005434653481869757, "xdr": 0.5526402766609065, "xlm": 6.184833246784947, "xrp": 1.6390702269849664, "zar": 11.054156102423809, "bits": 65.11993900422328, "link": 0.3507162013210948, "sats": 6511.993900422328}, "market_cap": {"aed": 59715961.37719965, "ars": 688692859.8011004, "aud": 23360714.897912867, "bch": 33832.35976930347, "bdt": 1374305532.5321038, "bhd": 6129469.035717053, "bmd": 16257287.995663624, "bnb": 450078.8461325058, "brl": 62538096.51494291, "btc": 1375.0868474736224, "cad": 21424666.985085223, "chf": 15847880.71206876, "clp": 11086079764.627434, "cny": 111848076.73459014, "czk": 363826578.9257629, "dkk": 106766064.76443374, "eos": 2264215.8559745844, "eth": 51019.156853890374, "eur": 14301211.1040253, "gbp": 12811572.062270701, "hkd": 126973483.56813164, "huf": 4625621124.25418, "idr": 229590845302.64404, "ils": 58409184.31082017, "inr": 1127177928.7049408, "jpy": 1741854607.7193909, "krw": 18800090411.06528, "kwd": 4929632.409773098, "lkr": 2869636023.2120204, "ltc": 119175.57519975262, "mmk": 24625588479.337715, "mxn": 312720233.4117456, "myr": 67126195.81850304, "ngn": 5852623678.438905, "nok": 138884044.21510723, "nzd": 24504902.827047706, "php": 835828810.7716225, "pkr": 2556521794.425689, "pln": 60859791.64599849, "rub": 1022493999.8432647, "sar": 60969707.170137174, "sek": 150952137.982759, "sgd": 22023065.241629705, "thb": 500423710.43851846, "try": 94198530.85226591, "twd": 503748325.83363247, "uah": 426058810.82435447, "usd": 16257287.995663624, "vef": 4039735163275.361, "vnd": 379322494148.62573, "xag": 1060746.2604869006, "xau": 11459.762308143267, "xdr": 11654882.27866722, "xlm": 130470961.27633733, "xrp": 34592469.99259809, "zar": 233126404.71580857, "bits": 1375086847.4736223, "link": 7405799.867246063, "sats": 137508684747.36224}, "total_volume": {"aed": 7117458.42031995, "ars": 82097668.4270489, "aud": 2784362.5087821255, "bch": 4034.1399610659328, "bdt": 163801473.82752526, "bhd": 730562.4826968269, "bmd": 1937682.4665923025, "bnb": 53684.247126200746, "brl": 7454305.140312354, "btc": 163.6868733963789, "cad": 2553551.586409056, "chf": 1889221.0281028163, "clp": 1321324004.44542, "cny": 13331009.284481736, "czk": 43363184.71248005, "dkk": 12725177.359841928, "eos": 269988.19507261936, "eth": 6077.91966864627, "eur": 1704505.633927515, "gbp": 1527044.922907123, "hkd": 15134172.021195792, "huf": 551250100.9968551, "idr": 27366145606.302113, "ils": 6961705.565972803, "inr": 134346694.83397025, "jpy": 207651490.73812136, "krw": 2240794134.841325, "kwd": 587555.7036149151, "lkr": 342027736.06291133, "ltc": 14202.655674958705, "mmk": 2935088007.2160707, "mxn": 37266671.806983024, "myr": 8000673.465417386, "ngn": 697565687.9732289, "nok": 16552090.542949358, "nzd": 2921441.9171987395, "php": 99616094.77986524, "pkr": 304708107.39411587, "pln": 7253078.7538392125, "rub": 121882164.83112194, "sar": 7266890.554461092, "sek": 17991147.242730927, "sgd": 2624933.8707958465, "thb": 59643804.0041774, "try": 11227106.602857748, "twd": 60041028.909828834, "uah": 50781328.822601, "usd": 1937682.4665923025, "vef": 481490147535.2453, "vnd": 45210895340.717514, "xag": 126505.57208053456, "xau": 1366.0661389475686, "xdr": 1389128.4356649495, "xlm": 15546329.313646104, "xrp": 4120002.027564281, "zar": 27785963.532980386, "bits": 163686873.3963789, "link": 881567.7551537921, "sats": 16368687339.63789}}, "community_data": {"facebook_likes": null, "twitter_followers": 18152, "reddit_average_posts_48h": 0.174, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2913, "reddit_accounts_active_48h": "26.2083333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 694179, "bing_matches": null}}, "BLZ_20190728": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.1339758200971646, "ars": 1.5620927569894647, "aud": 0.05227203153888401, "bch": 0.00012033254396158582, "bdt": 3.0825307162415037, "bhd": 0.013750391933925979, "bmd": 0.03647405888715107, "bnb": 0.0012592649052133994, "brl": 0.13760932936944364, "btc": 3.720580071336801e-06, "cad": 0.04793603189243846, "chf": 0.03591965319206641, "clp": 25.22165127107994, "cny": 0.2506643222960572, "czk": 0.8351538211508761, "dkk": 0.24438713676157858, "eos": 0.0079290237224795, "eth": 0.0001680012021635753, "eur": 0.03273506663657033, "gbp": 0.029215830590784683, "hkd": 0.2850174146589202, "huf": 10.652327025426624, "idr": 510.4408680129085, "ils": 0.1285199938947656, "inr": 2.516389091495217, "jpy": 3.94655517748984, "krw": 42.981987926027664, "kwd": 0.011108028737846307, "lkr": 6.430218320863238, "ltc": 0.0003857794110023994, "mmk": 55.16176059869235, "mxn": 0.6956785883509418, "myr": 0.15018193746784467, "ngn": 13.130661199374385, "nok": 0.3151651209802129, "nzd": 0.05443891890331061, "php": 1.8647269961946424, "pkr": 5.863204966109548, "pln": 0.13917953760453555, "rub": 2.308078446378923, "sar": 0.13681054747981503, "sek": 0.3437403212007037, "sgd": 0.0497579111338515, "thb": 1.127139604760187, "try": 0.2083692954029879, "twd": 1.1340514389193008, "uah": 0.9350854476898909, "usd": 0.03647405888715107, "vef": 9063.352895827567, "vnd": 847.7757511130358, "xag": 0.002195780654914804, "xau": 2.559457660229166e-05, "xdr": 0.026445881136717787, "xlm": 0.4475638205438781, "xrp": 0.11689625492760443, "zar": 0.5065327268400731, "bits": 3.720580071336801, "link": 0.015155016047493189, "sats": 372.05800713368006}, "market_cap": {"aed": 27983414.808473334, "ars": 326284403.85379964, "aud": 10917336.433226282, "bch": 25098.502456490045, "bdt": 643845550.8605019, "bhd": 2872032.587574959, "bmd": 7618305.443830106, "bnb": 262489.2891800871, "brl": 28742342.778482217, "btc": 775.9110133840774, "cad": 10012243.65497209, "chf": 7502202.468866139, "clp": 5268820044.952908, "cny": 52356042.33217807, "czk": 174440910.73064432, "dkk": 51043583.52523134, "eos": 1660487.9499395706, "eth": 35037.77375411361, "eur": 6837375.807699421, "gbp": 6102940.689692418, "hkd": 59531343.31444948, "huf": 2225104952.209185, "idr": 106625668886.81537, "ils": 26843861.06187981, "inr": 525510290.5086016, "jpy": 824296839.8696932, "krw": 8977611008.870996, "kwd": 2320124.4496966884, "lkr": 1343074193.9199262, "ltc": 80461.02931288906, "mmk": 11521589696.405037, "mxn": 145305067.23937735, "myr": 31368372.664970458, "ngn": 2742589959.778838, "nok": 65828360.33532349, "nzd": 11369162.892488958, "php": 389454059.3905865, "pkr": 1224642600.0956926, "pln": 29071956.381814998, "rub": 482086368.48556924, "sar": 28575501.88926238, "sek": 71794301.0382195, "sgd": 10393189.400385382, "thb": 235420874.8252383, "try": 43523302.817546956, "twd": 236868352.85956585, "uah": 195310496.6634726, "usd": 7618305.443830106, "vef": 1893054757609.117, "vnd": 177082429020.6334, "xag": 458680.4963043811, "xau": 5347.136224915482, "xdr": 5523728.545103457, "xlm": 93263499.01492627, "xrp": 24384735.010118563, "zar": 105804724.8860266, "bits": 775911013.3840773, "link": 3160513.584925325, "sats": 77591101338.40773}, "total_volume": {"aed": 845908.89034935, "ars": 9862885.330572274, "aud": 330039.9741035016, "bch": 759.7667150806542, "bdt": 19462766.75710994, "bhd": 86818.49287625404, "bmd": 230293.2772301036, "bnb": 7950.862908339756, "brl": 868850.4763337353, "btc": 23.491341626555386, "cad": 302662.93959966465, "chf": 226792.8194162062, "clp": 159246788.1444902, "cny": 1582667.5184361646, "czk": 5273071.227393132, "dkk": 1543034.0454248646, "eos": 50063.001321969554, "eth": 1060.7414860120302, "eur": 206685.68308796847, "gbp": 184465.60594114475, "hkd": 1799569.2415953367, "huf": 67257644.9032517, "idr": 3222868633.5833564, "ils": 811461.3916479934, "inr": 15888209.548037523, "jpy": 24918124.09486841, "krw": 271383639.8623747, "kwd": 70134.8964073191, "lkr": 40599705.533137456, "ltc": 2435.769628011942, "mmk": 348285411.9789327, "mxn": 4392439.637876132, "myr": 948232.5689949524, "ngn": 82905579.8028373, "nok": 1989918.6104764345, "nzd": 343721.46741046384, "php": 11773685.303896636, "pkr": 37019644.31473924, "pln": 878764.6019184915, "rub": 14572958.583120974, "sar": 863807.053562396, "sek": 2170339.34529631, "sgd": 314166.08879730734, "thb": 7116637.999603283, "try": 1315621.2765063546, "twd": 7160278.575638379, "uah": 5904028.748348159, "usd": 230293.2772301036, "vef": 57225033482.86144, "vnd": 5352764732.987009, "xag": 13863.922429453825, "xau": 161.60139849790835, "xdr": 166976.4435884591, "xlm": 2825869.731733779, "xrp": 738070.356427677, "zar": 3198193.051374237, "bits": 23491341.626555387, "link": 95687.13816167836, "sats": 2349134162.6555386}}, "community_data": {"facebook_likes": null, "twitter_followers": 36564, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 29, "stars": 206, "subscribers": 53, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 315, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 294, "deletions": -200}, "commit_count_4_weeks": 15}, "public_interest_stats": {"alexa_rank": 1258413, "bing_matches": null}}, "ARDR_20190804": {"id": "ardor", "symbol": "ardr", "name": "Ardor", "localization": {"en": "Ardor", "de": "Ardor", "es": "Ardor", "fr": "Ardor", "it": "Ardor", "pl": "Ardor", "ro": "Ardor", "hu": "Ardor", "nl": "Ardor", "pt": "Ardor", "sv": "Ardor", "vi": "Ardor", "tr": "Ardor", "ru": "Ardor", "ja": "\u30a2\u30fc\u30c0\u30fc", "zh": "\u963f\u6735\u5e01", "zh-tw": "\u963f\u6735\u5e63", "ko": "\uc544\ub354", "ar": "Ardor", "th": "Ardor", "id": "Ardor"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/525/thumb/Ardor_Vertical_1.png?1606797362", "small": "https://assets.coingecko.com/coins/images/525/small/Ardor_Vertical_1.png?1606797362"}, "market_data": {"current_price": {"aed": 0.254049614251544, "ars": 3.0307185737970403, "aud": 0.10100516307493188, "bch": 0.00020972330692091963, "bdt": 5.843017256171478, "bhd": 0.026078467505747837, "bmd": 0.06916338025584451, "bnb": 0.0024948902470341414, "brl": 0.2637199689155359, "btc": 6.872621088371093e-06, "cad": 0.09126861905603509, "chf": 0.06875531631233561, "clp": 48.66373557656438, "cny": 0.476148375033338, "czk": 1.605280672470554, "dkk": 0.46656641116931286, "eos": 0.015618540245714874, "eth": 0.0003163634484169151, "eur": 0.062479085371018664, "gbp": 0.056912609037887515, "hkd": 0.5413805087554407, "huf": 20.374148555766766, "idr": 980.7359190123444, "ils": 0.24187125709271481, "inr": 4.772964871455851, "jpy": 7.527552107750474, "krw": 82.11843346036164, "kwd": 0.021061217575228317, "lkr": 12.19324741212808, "ltc": 0.0006988356379732983, "mmk": 104.3262489539531, "mxn": 1.3244953311106922, "myr": 0.2849946246822341, "ngn": 24.898816892104023, "nok": 0.6129321696948996, "nzd": 0.10556309899717234, "php": 3.529914538686556, "pkr": 11.118332426800192, "pln": 0.2678755122914484, "rub": 4.39805785244102, "sar": 0.2593972576495458, "sek": 0.6681272445108938, "sgd": 0.09506285293349043, "thb": 2.138203191454507, "try": 0.3859146476360712, "twd": 2.15347833896429, "uah": 1.7359273237484916, "usd": 0.06916338025584451, "vef": 17186.245289192582, "vnd": 1617.8455860440238, "xag": 0.004256732167761436, "xau": 4.902092902393511e-05, "xdr": 0.05028786382346167, "xlm": 0.8242659743708999, "xrp": 0.21607450993344923, "zar": 0.9916442120745078, "bits": 6.872621088371093, "link": 0.03140151636790813, "sats": 687.2621088371093}, "market_cap": {"aed": 253846807.22415328, "ars": 3028299160.4607143, "aud": 100924530.96322902, "bch": 209954.17567461773, "bdt": 5838352793.427824, "bhd": 26057649.14517156, "bmd": 69108167.34164554, "bnb": 2496216.653685292, "brl": 263509442.0736954, "btc": 6875.036277860544, "cad": 91195759.59754199, "chf": 68700429.15433002, "clp": 48624887465.8003, "cny": 475768267.2468256, "czk": 1603999181.8362465, "dkk": 466193952.63514644, "eos": 15638065.711818706, "eth": 316790.14761980274, "eur": 62429208.508912355, "gbp": 56867175.8767547, "hkd": 540948326.3567725, "huf": 20357883935.502, "idr": 979953000538.027, "ils": 241678172.01046905, "inr": 4769154628.246973, "jpy": 7521542886.004505, "krw": 82052878566.94733, "kwd": 21044404.46987393, "lkr": 12183513580.139456, "ltc": 699074.2507617302, "mmk": 104242965629.58493, "mxn": 1323437990.5526772, "myr": 284767114.34798515, "ngn": 24878940242.992393, "nok": 612442867.8248922, "nzd": 105478828.29921128, "php": 3527096618.7434616, "pkr": 11109456696.145523, "pln": 267661668.09208325, "rub": 4394546896.354844, "sar": 259190181.6148422, "sek": 667593880.582052, "sgd": 94986964.54973687, "thb": 2136496270.4088104, "try": 385606573.1572168, "twd": 2151759223.8152204, "uah": 1734541538.2934196, "usd": 69108167.34164554, "vef": 17172525562322.037, "vnd": 1616554064877.776, "xag": 4253334.031535621, "xau": 48981.79576673824, "xdr": 50247719.176102504, "xlm": 824659050.3038682, "xrp": 216190294.66819677, "zar": 990852585.5433176, "bits": 6875036277.860544, "link": 31412551.54812677, "sats": 687503627786.0544}, "total_volume": {"aed": 8354506.064539381, "ars": 99666188.35181183, "aud": 3321588.3832194367, "bch": 6896.820704522792, "bdt": 192149565.92517716, "bhd": 857599.0779302645, "bmd": 2274460.7642638236, "bnb": 82045.2956034363, "brl": 8672518.894137984, "btc": 226.0084304053557, "cad": 3001398.894669432, "chf": 2261041.4457546864, "clp": 1600323130.5637658, "cny": 15658297.685497936, "czk": 52790188.84934833, "dkk": 15343191.616756056, "eos": 513620.8908897578, "eth": 10403.71722737873, "eur": 2054645.5037015546, "gbp": 1871590.0780113088, "hkd": 17803478.099921014, "huf": 670010651.9368402, "idr": 32251826900.974873, "ils": 7954016.73870705, "inr": 156960537.34184715, "jpy": 247546054.81537488, "krw": 2700491997.8968067, "kwd": 692605.1451690367, "lkr": 400978996.7647395, "ltc": 22981.442395670496, "mmk": 3430803396.983113, "mxn": 43556469.50623592, "myr": 9372143.025225552, "ngn": 818805875.1349765, "nok": 20156478.26883563, "nzd": 3471477.622045189, "php": 116082413.69562851, "pkr": 365630059.9429174, "pln": 8809175.320237268, "rub": 144631595.3230787, "sar": 8530365.096371502, "sek": 21971586.662687972, "sgd": 3126173.5377361802, "thb": 70315523.1424075, "try": 12690931.547244186, "twd": 70817851.44895971, "uah": 57086547.43122976, "usd": 2274460.7642638236, "vef": 565175392681.582, "vnd": 53203390211.4493, "xag": 139984.0531758125, "xau": 1612.0695558872767, "xdr": 1653733.1281670616, "xlm": 27106260.727704663, "xrp": 7105682.128074341, "zar": 32610549.746550158, "bits": 226008430.40535572, "link": 1032649.3102708056, "sats": 22600843040.535572}}, "community_data": {"facebook_likes": null, "twitter_followers": 67597, "reddit_average_posts_48h": 0.208, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 6556, "reddit_accounts_active_48h": "311.32"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 897983, "bing_matches": null}}, "CVC_20190814": {"id": "civic", "symbol": "cvc", "name": "Civic", "localization": {"en": "Civic", "de": "Civic", "es": "Civic", "fr": "Civic", "it": "Civic", "pl": "Civic", "ro": "Civic", "hu": "Civic", "nl": "Civic", "pt": "Civic", "sv": "Civic", "vi": "Civic", "tr": "Civic", "ru": "Civic", "ja": "\u30b7\u30d3\u30c3\u30af", "zh": "Civic", "zh-tw": "Civic", "ko": "\uc2dc\ube45", "ar": "Civic", "th": "Civic", "id": "Civic"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/788/thumb/Civic-logo-blue.png?1636393120", "small": "https://assets.coingecko.com/coins/images/788/small/Civic-logo-blue.png?1636393120"}, "market_data": {"current_price": {"aed": 0.1512814439442142, "ars": 1.8533538498762347, "aud": 0.06067660178841928, "bch": 0.00013025829121719008, "bdt": 3.478059581005995, "bhd": 0.015527603316232567, "bmd": 0.0411872767008822, "bnb": 0.0013918644960529286, "brl": 0.16236024475487756, "btc": 3.6369534273003623e-06, "cad": 0.05458883398109208, "chf": 0.04002373613408213, "clp": 29.247908930830476, "cny": 0.2908860890073445, "czk": 0.9504890812454331, "dkk": 0.2744308246579779, "eos": 0.010124706136938713, "eth": 0.0001994054845300854, "eur": 0.03651194417345825, "gbp": 0.03421427075542282, "hkd": 0.32298032706914287, "huf": 11.92783533257548, "idr": 586.1217191834081, "ils": 0.14324852462013413, "inr": 2.9260265113840735, "jpy": 4.352477482577465, "krw": 50.018586424319075, "kwd": 0.012528345826874333, "lkr": 7.286576462544315, "ltc": 0.0004816104705724989, "mmk": 62.21461777516741, "mxn": 0.7994326845811144, "myr": 0.17232814233836505, "ngn": 14.930387804069799, "nok": 0.36575146049555773, "nzd": 0.06365905486888337, "php": 2.1425621339798906, "pkr": 6.505804950478112, "pln": 0.15901377852293103, "rub": 2.6878816774995733, "sar": 0.15453672154554504, "sek": 0.39314491229293, "sgd": 0.057069790780446134, "thb": 1.2539054518816561, "try": 0.22621287982425514, "twd": 1.2924979301503834, "uah": 1.0401434858040775, "usd": 0.0411872767008822, "vef": 10234.529277729891, "vnd": 955.7507558439717, "xag": 0.002427493242959992, "xau": 2.7506922744684153e-05, "xdr": 0.029937383942803215, "xlm": 0.5570178889320484, "xrp": 0.13800051183604636, "zar": 0.628249095474989, "bits": 3.6369534273003623, "link": 0.01759208566945717, "sats": 363.69534273003626}, "market_cap": {"aed": 51778393.185458265, "ars": 634338765.2094439, "aud": 20767497.074636523, "bch": 44568.59282416437, "bdt": 1190419206.827423, "bhd": 5314560.25784758, "bmd": 14096976.811266772, "bnb": 476228.4738059309, "brl": 55570282.59001361, "btc": 1244.6115727015479, "cad": 18683865.223093618, "chf": 13698737.216348507, "clp": 10010545173.216768, "cny": 99560222.96003835, "czk": 325319458.11780673, "dkk": 93928156.49347062, "eos": 3465395.417432645, "eth": 68251.44800522004, "eur": 12496772.585512651, "gbp": 11710358.637119314, "hkd": 110544967.90975127, "huf": 4082484484.542863, "idr": 200609143059.2533, "ils": 49029003.41004969, "inr": 1001477426.626015, "jpy": 1489702137.605543, "krw": 17119627939.393831, "kwd": 4288018.4064511275, "lkr": 2493942490.3470125, "ltc": 164782.02807303987, "mmk": 21293906622.371384, "mxn": 273618090.8136449, "myr": 58981948.336015575, "ngn": 5110154094.084205, "nok": 125184043.96429582, "nzd": 21788287.359493922, "php": 733324733.7220982, "pkr": 2226711471.883988, "pln": 54424903.224098295, "rub": 919968706.70327, "sar": 52892561.84471348, "sek": 134559872.7565844, "sgd": 19533010.718297057, "thb": 429168362.0422061, "try": 77424825.74052049, "twd": 442377229.3143633, "uah": 356005052.3917308, "usd": 14096976.811266772, "vef": 3502924530557.738, "vnd": 327120346905.4458, "xag": 830846.773483833, "xau": 9414.665963404525, "xdr": 10246528.565037377, "xlm": 190622872.15499905, "xrp": 47215240.358712204, "zar": 215027883.36623803, "bits": 1244611572.7015479, "link": 6020234.751374285, "sats": 124461157270.15479}, "total_volume": {"aed": 13204376.59913146, "ars": 161767243.66962197, "aud": 5296067.249763077, "bch": 11369.401874729374, "bdt": 303577275.2060447, "bhd": 1355303.8398090918, "bmd": 3594970.3973716013, "bnb": 121486.82945953659, "brl": 14171373.306438847, "btc": 317.44608906089536, "cad": 4764705.460238782, "chf": 3493412.483645841, "clp": 2552860378.5815225, "cny": 25389561.11575606, "czk": 82962030.60274373, "dkk": 23953287.75768696, "eos": 883719.9679094501, "eth": 17404.81215024938, "eur": 3186890.927684361, "gbp": 2986341.909096587, "hkd": 28190859.113588747, "huf": 1041103427.0788153, "idr": 51158765485.35608, "ils": 12503235.142650468, "inr": 255393886.9700733, "jpy": 379899545.64675814, "krw": 4365798176.45357, "kwd": 1093518.0954724923, "lkr": 635998026.0717363, "ltc": 42036.65606119706, "mmk": 5430310695.456232, "mxn": 69777296.92186366, "myr": 15041406.472188354, "ngn": 1303176769.0472054, "nok": 31924074.09759129, "nzd": 5556386.246177534, "php": 187010360.07127059, "pkr": 567849541.932484, "pln": 13879281.961652417, "rub": 234607768.1324708, "sar": 13488508.679458115, "sek": 34315070.93403108, "sgd": 4981252.097094832, "thb": 109445278.77758089, "try": 19744655.91348403, "twd": 112813766.03991814, "uah": 90787382.41522227, "usd": 3594970.3973716013, "vef": 893305717969.06, "vnd": 83421288071.00803, "xag": 211880.14958206352, "xau": 2400.900979884622, "xdr": 2613040.1830335204, "xlm": 48618480.800752856, "xrp": 12045170.125610411, "zar": 54835791.082047775, "bits": 317446089.0608954, "link": 1535499.1219501793, "sats": 31744608906.089535}}, "community_data": {"facebook_likes": null, "twitter_followers": 88450, "reddit_average_posts_48h": 0.125, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 8138, "reddit_accounts_active_48h": "1453.56"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 266707, "bing_matches": null}}, "GVT_20190814": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 5.001438888134425, "ars": 61.27278915755721, "aud": 2.0059982762747364, "bch": 0.004306506471829885, "bdt": 114.98635913408195, "bhd": 0.5133501970933615, "bmd": 1.36167161032722, "bnb": 0.04597051866701546, "brl": 5.367709487909894, "btc": 0.00012031604388997975, "cad": 1.804733680567094, "chf": 1.3232043873354782, "clp": 966.950243925565, "cny": 9.616837066383018, "czk": 31.423636169423766, "dkk": 9.072817939610266, "eos": 0.33488999741294384, "eth": 0.006594243216904578, "eur": 1.2071028191525346, "gbp": 1.1311406066988203, "hkd": 10.677888350283464, "huf": 394.34009835076307, "idr": 19377.472101503092, "ils": 4.73586662728586, "inr": 96.7358745408663, "jpy": 143.8950447162543, "krw": 1653.6390501689693, "kwd": 0.41419327042933374, "lkr": 240.8977990359002, "ltc": 0.015932804258858225, "mmk": 2056.845840695993, "mxn": 26.429637454968212, "myr": 5.697253081011633, "ngn": 493.60595874361724, "nok": 12.091923042385776, "nzd": 2.1045996409217467, "php": 70.834157169222, "pkr": 215.0851091158106, "pln": 5.257073669570811, "rub": 88.86268928995426, "sar": 5.109059965528241, "sek": 12.997564022056345, "sgd": 1.886755331686766, "thb": 41.45473050480184, "try": 7.478708985400183, "twd": 42.73061680367845, "uah": 34.38765484720364, "usd": 1.36167161032722, "vef": 338358.5679567161, "vnd": 31597.589717643154, "xag": 0.080254119669169, "xau": 0.0009093923849570327, "xdr": 0.9897446266824419, "xlm": 18.340775105061603, "xrp": 4.563513972752456, "zar": 20.77022386633592, "bits": 120.31604388997975, "link": 0.5819733999436473, "sats": 12031.604388997976}, "market_cap": {"aed": 22197291.083512727, "ars": 271939729.1158998, "aud": 8902983.450849336, "bch": 19117.609814487172, "bdt": 510330275.2309779, "bhd": 2278341.0949384654, "bmd": 6043345.079412391, "bnb": 204269.24944063698, "brl": 23822866.30304359, "btc": 533.7945890515986, "cad": 8009734.744696623, "chf": 5872620.580918996, "clp": 4291500207.792313, "cny": 42681263.6202867, "czk": 139463785.2338694, "dkk": 40266808.26412462, "eos": 1485428.310151043, "eth": 29263.900792928653, "eur": 5357340.806067966, "gbp": 5020206.7574678585, "hkd": 47390401.27648199, "huf": 1750152734.9978228, "idr": 86000728654.33943, "ils": 21018633.31929465, "inr": 429331321.13161397, "jpy": 638632254.5336969, "krw": 7339149425.727773, "kwd": 1838264.7062556557, "lkr": 1069148036.4307754, "ltc": 70680.8680504412, "mmk": 9128654145.541634, "mxn": 117299514.98787014, "myr": 25285440.419092484, "ngn": 2190712591.286992, "nok": 53666143.190922946, "nzd": 9340594.154739778, "php": 314374811.0310318, "pkr": 954586646.2748296, "pln": 23331844.515341323, "rub": 394388699.88245124, "sar": 22674932.905209176, "sek": 57685541.78651501, "sgd": 8373761.678900123, "thb": 183983597.59763014, "try": 33191864.179656565, "twd": 189646211.93703943, "uah": 152618636.63547993, "usd": 6043345.079412391, "vef": 1501696570031.931, "vnd": 140235822567.7641, "xag": 356182.30968970153, "xau": 4036.0480112855544, "xdr": 4392665.804421677, "xlm": 81732337.96714418, "xrp": 20250958.025618084, "zar": 92182013.08518934, "bits": 533794589.05159855, "link": 2581985.2599704117, "sats": 53379458905.15986}, "total_volume": {"aed": 1024849.7590815448, "ars": 12555467.458645679, "aud": 411051.07872766675, "bch": 882.4504745241921, "bdt": 23561967.884043165, "bhd": 105191.09351985641, "bmd": 279021.4682224311, "bnb": 9419.86416999247, "brl": 1099902.627732822, "btc": 24.65407882656032, "cad": 369809.75257411244, "chf": 271139.11174514785, "clp": 198138725.01411268, "cny": 1970595.5368146866, "czk": 6439048.177536083, "dkk": 1859120.0427660581, "eos": 68622.6385734157, "eth": 1351.2328598481774, "eur": 247348.62527862977, "gbp": 231783.13365237325, "hkd": 2188016.5984332464, "huf": 80804617.19721608, "idr": 3970656856.7595468, "ils": 970431.08604825, "inr": 19822243.145457935, "jpy": 29485675.064499103, "krw": 338848803.3302054, "kwd": 84872.75020389908, "lkr": 49362604.807774894, "ltc": 3264.806582946174, "mmk": 421470303.1373938, "mxn": 5415722.991756914, "myr": 1167429.7293432066, "ngn": 101145282.23063126, "nok": 2477767.8372161626, "nzd": 431255.58128458855, "php": 14514696.776930867, "pkr": 44073301.14186166, "pln": 1077232.1334397502, "rub": 18208941.016195826, "sar": 1046902.4998439715, "sek": 2663343.6206235574, "sgd": 386616.88973395916, "thb": 8494529.578563683, "try": 1532469.6099180568, "twd": 8755972.694288101, "uah": 7046408.158489279, "usd": 279021.4682224311, "vef": 69333386773.21391, "vnd": 6474693170.101516, "xag": 16444.950552805534, "xau": 186.34448755235036, "xdr": 202809.544392156, "xlm": 3758226.256124951, "xrp": 935114.1341817221, "zar": 4256046.989994133, "bits": 24654078.82656032, "link": 119252.741473882, "sats": 2465407882.656032}}, "community_data": {"facebook_likes": null, "twitter_followers": 21352, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 1.739, "reddit_subscribers": 5722, "reddit_accounts_active_48h": "793.625"}, "developer_data": {"forks": 1, "stars": 14, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 213598, "bing_matches": null}}, "SNGLS_20190816": {"id": "singulardtv", "symbol": "sngls", "name": "SingularDTV", "localization": {"en": "SingularDTV", "de": "SingularDTV", "es": "SingularDTV", "fr": "SingularDTV", "it": "SingularDTV", "pl": "SingularDTV", "ro": "SingularDTV", "hu": "SingularDTV", "nl": "SingularDTV", "pt": "SingularDTV", "sv": "SingularDTV", "vi": "SingularDTV", "tr": "SingularDTV", "ru": "SingularDTV", "ja": "SingularDTV", "zh": "SingularDTV", "zh-tw": "SingularDTV", "ko": "\uc2f1\uade4\ub7ec\ub514\ud2f0\ube44", "ar": "SingularDTV", "th": "SingularDTV", "id": "SingularDTV"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/521/thumb/singulardtv.png?1547034199", "small": "https://assets.coingecko.com/coins/images/521/small/singulardtv.png?1547034199"}, "market_data": {"current_price": {"aed": 0.029850038370868397, "ars": 0.4306710269661482, "aud": 0.012029216487954042, "bch": 2.4639030002631912e-05, "bdt": 0.686913778699122, "bhd": 0.0030638055179946066, "bmd": 0.008126481752701102, "bnb": 0.00026960841796413196, "brl": 0.03238565508086449, "btc": 7.140475136160738e-07, "cad": 0.010757348955320536, "chf": 0.007875950446747076, "clp": 5.801901647340958, "cny": 0.05735833350691496, "czk": 0.18726809202299616, "dkk": 0.05407884303672196, "eos": 0.001969305435445376, "eth": 3.8490841799202806e-05, "eur": 0.007245116047730141, "gbp": 0.006727223492112272, "hkd": 0.06375671891490423, "huf": 2.3493658747058914, "idr": 115.78579217041639, "ils": 0.028240336738811635, "inr": 0.5792881252595456, "jpy": 0.8561654850558269, "krw": 9.896042714793376, "kwd": 0.0024716125397117733, "lkr": 1.4375149411708326, "ltc": 9.484442374847839e-05, "mmk": 12.273695125286798, "mxn": 0.15917258544198148, "myr": 0.034146663676674814, "ngn": 2.956065598095105, "nok": 0.07241052806853825, "nzd": 0.012605058984950467, "php": 0.42407147862885225, "pkr": 1.302450270852153, "pln": 0.03136305924951335, "rub": 0.5318164694529669, "sar": 0.03048527732299534, "sek": 0.0776873939828004, "sgd": 0.011273543076252156, "thb": 0.2504215984503608, "try": 0.04522029530181051, "twd": 0.2555051597431717, "uah": 0.20471346232245427, "usd": 0.008126481752701102, "vef": 2019.3302904432078, "vnd": 188.24253321650866, "xag": 0.0004758791325453297, "xau": 5.375748944229312e-06, "xdr": 0.00590540051894336, "xlm": 0.10678669394318493, "xrp": 0.027030998517844334, "zar": 0.12430916607471806, "bits": 0.7140475136160738, "link": 0.0034200248602132928, "sats": 71.40475136160738}, "market_cap": {"aed": 17226772.837833963, "ars": 248544804.43894532, "aud": 6942188.056191853, "bch": 14219.444796900183, "bdt": 396425206.4873868, "bhd": 1768154.5672418461, "bmd": 4689878.565154823, "bnb": 155593.86938572896, "brl": 18690104.057855032, "btc": 412.0843718743402, "cad": 6208179.8518380355, "chf": 4545294.298869662, "clp": 3348338801.592289, "cny": 33102100.888575792, "czk": 108074396.45381235, "dkk": 31209472.2543362, "eos": 1136506.9941698117, "eth": 22213.47188146281, "eur": 4181233.0954923853, "gbp": 3882351.8244136446, "hkd": 36794676.77685048, "huf": 1355843893.1862607, "idr": 66821205212.0853, "ils": 16297797.00176954, "inr": 334313303.6384965, "jpy": 494102156.23188764, "krw": 5711110911.255009, "kwd": 1426393.7364418842, "lkr": 829605075.7077055, "ltc": 54735.720019872446, "mmk": 7083279263.4026575, "mxn": 91860182.46783116, "myr": 19706400.742924076, "ngn": 1705976720.0104506, "nok": 41788881.56209828, "nzd": 7274512.851318741, "php": 244736135.2966686, "pkr": 751657826.022842, "pln": 18099953.188608777, "rub": 306916909.01228815, "sar": 17593375.95539358, "sek": 44834216.68935287, "sgd": 6506080.938296696, "thb": 144520952.92452842, "try": 26097110.66851796, "twd": 147454729.91035384, "uah": 118142304.1558659, "usd": 4689878.565154823, "vef": 1165376867051.927, "vnd": 108636756772.27847, "xag": 274634.8802896156, "xau": 3102.40156963557, "xdr": 3408069.0949981012, "xlm": 61627730.45068715, "xrp": 15599875.124488287, "zar": 71740134.43546022, "bits": 412084371.87434024, "link": 1973732.517012013, "sats": 41208437187.43402}, "total_volume": {"aed": 270811.1633295726, "ars": 3907215.139088992, "aud": 109133.73278023489, "bch": 223.53486770847567, "bdt": 6231949.091836628, "bhd": 27796.035845415405, "bmd": 73726.60463221728, "bnb": 2445.9924776367425, "brl": 293815.26478031283, "btc": 6.478116893265897, "cad": 97594.8556158511, "chf": 71453.68713801063, "clp": 52637109.37717158, "cny": 520377.1208151164, "czk": 1698969.0004804393, "dkk": 490624.30715615774, "eos": 17866.30520531213, "eth": 349.20389433567766, "eur": 65730.51200022543, "gbp": 61031.98921361903, "hkd": 578425.7629722932, "huf": 21314361.39917404, "idr": 1050453761.068126, "ils": 256207.32375741858, "inr": 5255527.284602979, "jpy": 7767466.431027273, "krw": 89780750.25082022, "kwd": 22423.43071265648, "lkr": 13041694.911254812, "ltc": 860.4655180515653, "mmk": 111351738.1094986, "mxn": 1444075.6322707792, "myr": 309791.82000411424, "ngn": 26818577.368394013, "nok": 656936.4869790964, "nzd": 114357.99998447404, "php": 3847341.468560747, "pkr": 11816335.665840125, "pln": 284537.8774864178, "rub": 4824845.950983419, "sar": 276574.29828706884, "sek": 704810.267884187, "sgd": 102277.96954208997, "thb": 2271922.1850440917, "try": 410256.1150722516, "twd": 2318042.231204798, "uah": 1857240.1881691667, "usd": 73726.60463221728, "vef": 18320150155.494076, "vnd": 1707809510.1619587, "xag": 4317.360664254296, "xau": 48.77088623025811, "xdr": 53576.09141376751, "xlm": 968810.4402269693, "xrp": 245235.73683983894, "zar": 1127781.1257381, "bits": 6478116.8932658965, "link": 31027.796329880442, "sats": 647811689.3265897}}, "community_data": {"facebook_likes": null, "twitter_followers": 9, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2172, "reddit_accounts_active_48h": "781.25"}, "developer_data": {"forks": 13, "stars": 20, "subscribers": 25, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 4, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "POWR_20190824": {"id": "power-ledger", "symbol": "powr", "name": "Power Ledger", "localization": {"en": "Power Ledger", "de": "Power Ledger", "es": "Power Ledger", "fr": "Power Ledger", "it": "Power Ledger", "pl": "Power Ledger", "ro": "Power Ledger", "hu": "Power Ledger", "nl": "Power Ledger", "pt": "Power Ledger", "sv": "Power Ledger", "vi": "Power Ledger", "tr": "Power Ledger", "ru": "Power Ledger", "ja": "\u30d1\u30ef\u30fc\u30ec\u30b8\u30e3\u30fc", "zh": "Power Ledger", "zh-tw": "Power Ledger", "ko": "\ud30c\uc6cc\ub81b\uc800", "ar": "Power Ledger", "th": "Power Ledger", "id": "Power Ledger"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1104/thumb/power-ledger.png?1547035082", "small": "https://assets.coingecko.com/coins/images/1104/small/power-ledger.png?1547035082"}, "market_data": {"current_price": {"aed": 0.2006468969235335, "ars": 2.98943228336179, "aud": 0.08061119636577362, "bch": 0.00017313776716946982, "bdt": 4.6158595769095045, "bhd": 0.02059088798214546, "bmd": 0.05462454996284793, "bnb": 0.001949044203643739, "brl": 0.22139876345441978, "btc": 5.0772968009697256e-06, "cad": 0.0727446056765241, "chf": 0.05342433935106443, "clp": 38.739724114832214, "cny": 0.38568209746768534, "czk": 1.2691273474970237, "dkk": 0.3669473516932772, "eos": 0.014868936773958091, "eth": 0.00027804371019170043, "eur": 0.049218139754825196, "gbp": 0.044910393120205006, "hkd": 0.42839412557463524, "huf": 16.115271638684238, "idr": 782.7717759728406, "ils": 0.1927154122689283, "inr": 3.905163701393972, "jpy": 5.803994994927529, "krw": 65.84484062522999, "kwd": 0.016614712365799797, "lkr": 9.720984911388463, "ltc": 0.0007283302874486284, "mmk": 83.22839129215045, "mxn": 1.07961053037572, "myr": 0.2283635574483328, "ngn": 19.80249185253163, "nok": 0.49091733083756167, "nzd": 0.0851924481220577, "php": 2.856409650674912, "pkr": 8.75260460411649, "pln": 0.21460106595884287, "rub": 3.630036230596097, "sar": 0.20486118095316755, "sek": 0.5292076654986705, "sgd": 0.07565833379609235, "thb": 1.6818898933560944, "try": 0.3131461575720192, "twd": 1.7105159980132234, "uah": 1.3752647599340893, "usd": 0.05462454996284793, "vef": 13573.525628743844, "vnd": 1265.6274385248441, "xag": 0.0031874326208396245, "xau": 3.625759128334005e-05, "xdr": 0.039839869269903634, "xlm": 0.7826400213869759, "xrp": 0.1989983032259678, "zar": 0.8391598163852598, "bits": 5.077296800969726, "link": 0.023115357612869925, "sats": 507.7296800969726}, "market_cap": {"aed": 85225605.48532778, "ars": 1269773818.1517427, "aud": 34239941.53165463, "bch": 73550.04550715555, "bdt": 1960605587.7718427, "bhd": 8746065.46458422, "bmd": 23202005.19583141, "bnb": 828121.2515081492, "brl": 94040047.25922392, "btc": 2156.2021548639063, "cad": 30898574.35939241, "chf": 22692210.737668574, "clp": 16454859231.036947, "cny": 163820077.88568676, "czk": 539067128.8060955, "dkk": 155862416.55765694, "eos": 6315096.578857553, "eth": 118106.586798294, "eur": 20905609.933579132, "gbp": 19075876.601830684, "hkd": 181962189.78841126, "huf": 6845028774.55816, "idr": 332485573347.9627, "ils": 81856674.330893, "inr": 1658734553.4551792, "jpy": 2465271057.070065, "krw": 27967870405.23592, "kwd": 7057168.30437446, "lkr": 4129028844.6501365, "ltc": 309237.71048722445, "mmk": 35351605981.45939, "mxn": 458569071.0914509, "myr": 96998372.52770817, "ngn": 8411190923.592803, "nok": 208519181.7335545, "nzd": 36185847.30341848, "php": 1213271900.664766, "pkr": 3717705274.274804, "pln": 91152696.92463389, "rub": 1541873013.8853347, "sar": 87015640.18618605, "sek": 224783160.92169192, "sgd": 32136192.51854329, "thb": 714389739.9796479, "try": 133010135.18614227, "twd": 726548797.2065338, "uah": 584149436.9717772, "usd": 23202005.19583141, "vef": 5765411566375.561, "vnd": 537580527887.41113, "xag": 1353875.2864853314, "xau": 15400.562968785023, "xdr": 16922150.46952762, "xlm": 332391866.2762793, "xrp": 84545237.31960781, "zar": 356436628.4600239, "bits": 2156202154.8639064, "link": 9816519.66570097, "sats": 215620215486.39062}, "total_volume": {"aed": 1895317.5589112584, "ars": 28238281.202978484, "aud": 761456.1613435769, "bch": 1635.4653635737197, "bdt": 43601569.92071168, "bhd": 194502.24321688866, "bmd": 515985.39663270547, "bnb": 18410.739258369864, "brl": 2091340.4110920266, "btc": 47.96032196973991, "cad": 687148.072403709, "chf": 504648.1654978936, "clp": 365936779.82571197, "cny": 3643166.491464892, "czk": 11988221.014563097, "dkk": 3466197.4320255807, "eos": 140452.49332096076, "eth": 2626.410545845598, "eur": 464916.25798638177, "gbp": 424225.1336225296, "hkd": 4046625.792799936, "huf": 152225415.75144815, "idr": 7394089389.714684, "ils": 1820396.4793201927, "inr": 36888311.990668856, "jpy": 54824738.35571682, "krw": 621972652.0279646, "kwd": 156943.15021059738, "lkr": 91824761.18475671, "ltc": 6879.833197790975, "mmk": 786178275.5407671, "mxn": 10198038.576128127, "myr": 2157130.097118887, "ngn": 187055025.9872884, "nok": 4637222.16180034, "nzd": 804730.8245883682, "php": 26981744.793346766, "pkr": 82677407.16025905, "pln": 2027129.1243934638, "rub": 34289448.343448915, "sar": 1935125.832261475, "sek": 4998913.9932341715, "sgd": 714671.249445494, "thb": 15887190.362321066, "try": 2957989.483276319, "twd": 16157593.541397216, "uah": 12990798.699709356, "usd": 515985.39663270547, "vef": 128215994640.04877, "vnd": 11955160752.823332, "xag": 30108.5992694229, "xau": 342.49046686892564, "xdr": 376328.7891800986, "xlm": 7392844.831319386, "xrp": 1879744.8855710996, "zar": 7926732.778398562, "bits": 47960321.96973991, "link": 218348.4710500245, "sats": 4796032196.97399}}, "community_data": {"facebook_likes": null, "twitter_followers": 84134, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.13, "reddit_subscribers": 13098, "reddit_accounts_active_48h": "1494.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 483233, "bing_matches": null}}, "ARK_20191018": {"id": "ark", "symbol": "ark", "name": "Ark", "localization": {"en": "Ark", "de": "Ark", "es": "Ark", "fr": "Ark", "it": "Ark", "pl": "Ark", "ro": "Ark", "hu": "Ark", "nl": "Ark", "pt": "Ark", "sv": "Ark", "vi": "Ark", "tr": "Ark", "ru": "Ark", "ja": "\u30a2\u30fc\u30af", "zh": "Ark", "zh-tw": "Ark", "ko": "\uc544\ud06c", "ar": "Ark", "th": "Ark", "id": "Ark"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/613/thumb/ark.png?1547034308", "small": "https://assets.coingecko.com/coins/images/613/small/ark.png?1547034308"}, "market_data": {"current_price": {"aed": 0.7706829021755894, "ars": 12.177733170917984, "aud": 0.30975233827967064, "bch": 0.0009204991935659421, "bdt": 17.775292763238415, "bhd": 0.07908521680435347, "bmd": 0.20981239850146738, "bnb": 0.011396282436812372, "brl": 0.8655390875381042, "btc": 2.5135939369093527e-05, "cad": 0.27751823006069637, "chf": 0.20934766403878666, "clp": 149.91097194747948, "cny": 1.4828701076489708, "czk": 4.914834243844614, "dkk": 1.421339054977642, "eos": 0.06637186796988083, "eth": 0.0011243039707975544, "eur": 0.1902887253837104, "gbp": 0.16641920805579227, "hkd": 1.6460097381037875, "huf": 63.12280450355634, "idr": 2968.179850294552, "ils": 0.7364708924759403, "inr": 14.948503326596843, "jpy": 22.74607684014182, "krw": 248.3968985858871, "kwd": 0.06379618732555166, "lkr": 38.00770188232585, "ltc": 0.0036928676389841107, "mmk": 321.2077777916924, "mxn": 4.043290325461399, "myr": 0.8786943249241455, "ngn": 76.0033171018113, "nok": 1.9114461310091726, "nzd": 0.332908283640286, "php": 10.824362003185293, "pkr": 32.902593390153115, "pln": 0.8174943562176505, "rub": 13.48810475626457, "sar": 0.7868940571458061, "sek": 2.060422165690749, "sgd": 0.2872361109220883, "thb": 6.381797004876403, "try": 1.244025967566855, "twd": 6.422147495919007, "uah": 5.172652138748025, "usd": 0.20981239850146738, "vef": 52135.788216558685, "vnd": 4871.362234014461, "xag": 0.011897076357188107, "xau": 0.00014070229255906897, "xdr": 0.1530703138259335, "xlm": 3.235493128370452, "xrp": 0.7091478308610427, "zar": 3.109335820832333, "bits": 25.135939369093528, "link": 0.08288388558953355, "sats": 2513.5939369093526}, "market_cap": {"aed": 110021041.85317649, "ars": 1738467127.1312652, "aud": 44219580.942801856, "bch": 131408.49500519966, "bdt": 2537562755.7534037, "bhd": 11290036.30862554, "bmd": 29952369.01153669, "bnb": 1626908.8926349191, "brl": 123562507.88329242, "btc": 3588.3529134215423, "cad": 39617908.634452686, "chf": 29886024.514176145, "clp": 21400969545.742207, "cny": 211691363.22593674, "czk": 701631218.9059752, "dkk": 202907321.82303053, "eos": 9475105.835582731, "eth": 160503.2288605613, "eur": 27165211.217906177, "gbp": 23757650.004939668, "hkd": 234980827.75085708, "huf": 9011276488.126066, "idr": 423731003523.1706, "ils": 105137008.56215534, "inr": 2134016345.107846, "jpy": 3247181253.0942082, "krw": 35460609672.75827, "kwd": 9107407.17875488, "lkr": 5425898184.238811, "ltc": 527185.8814046242, "mmk": 45854934972.89753, "mxn": 577211474.2215729, "myr": 125440521.42031567, "ngn": 10850070902.355984, "nok": 272873959.1681492, "nzd": 47525274.14876024, "php": 1545262755.440045, "pkr": 4697103820.828403, "pln": 116703744.85570948, "rub": 1925532970.4601517, "sar": 112335311.64485298, "sek": 294141459.0705767, "sgd": 41005212.50995995, "thb": 911051683.3705648, "try": 177594484.91427362, "twd": 916812033.1217562, "uah": 738436749.8520911, "usd": 29952369.01153669, "vef": 7442793555209.135, "vnd": 695425247812.7236, "xag": 1698401.16100877, "xau": 20086.358182826614, "xdr": 21851990.431318678, "xlm": 461892075.050871, "xrp": 101236426.7573644, "zar": 443882127.80336726, "bits": 3588352913.421542, "link": 11832326.13524665, "sats": 358835291342.15424}, "total_volume": {"aed": 6647355.680817264, "ars": 105036356.12605716, "aud": 2671700.5913810674, "bch": 7939.563115082799, "bdt": 153316873.89761508, "bhd": 682132.1242615407, "bmd": 1809690.6459809616, "bnb": 98296.12488182976, "brl": 7465516.821865267, "btc": 216.80451050119908, "cad": 2393672.3883670885, "chf": 1805682.181200114, "clp": 1293024080.5639074, "cny": 12790169.609535044, "czk": 42391820.60334869, "dkk": 12259447.062860154, "eos": 572475.9331633907, "eth": 9697.436346581571, "eur": 1641293.5023004957, "gbp": 1435412.236269824, "hkd": 14197294.571317548, "huf": 544451851.6257843, "idr": 25601381753.565224, "ils": 6352267.524083609, "inr": 128935024.02513357, "jpy": 196191277.46676496, "krw": 2142492755.7768595, "kwd": 550259.966888909, "lkr": 327827063.9053632, "ltc": 31852.01671038809, "mmk": 2770506962.5896854, "mxn": 34874510.43519546, "myr": 7578984.425368268, "ngn": 655549876.9616841, "nok": 16486757.733526444, "nzd": 2871427.099524764, "php": 93363151.10919991, "pkr": 283794074.66836935, "pln": 7051117.570532724, "rub": 116338677.712855, "sar": 6787181.428578989, "sek": 17771717.718561355, "sgd": 2477491.8300169837, "thb": 55044784.89717743, "try": 10730072.068869693, "twd": 55392819.173140526, "uah": 44615572.08851148, "usd": 1809690.6459809616, "vef": 449685761805.4008, "vnd": 42016862354.391495, "xag": 102615.61257531687, "xau": 1213.596644101292, "xdr": 1320274.288300578, "xlm": 27907033.575552665, "xrp": 6116598.472220138, "zar": 26818891.497179348, "bits": 216804510.50119907, "link": 714896.7054627426, "sats": 21680451050.119907}}, "community_data": {"facebook_likes": null, "twitter_followers": 62833, "reddit_average_posts_48h": 0.412, "reddit_average_comments_48h": 3.412, "reddit_subscribers": 21767, "reddit_accounts_active_48h": "2256.33333333333"}, "developer_data": {"forks": 158, "stars": 229, "subscribers": 26, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2226, "pull_request_contributors": 39, "code_additions_deletions_4_weeks": {"additions": 416, "deletions": -434}, "commit_count_4_weeks": 8}, "public_interest_stats": {"alexa_rank": 84118, "bing_matches": null}}, "EDO_20191023": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "NAV_20200309": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.37926102178982823, "ars": 6.436183027789847, "aud": 0.1560942218495528, "bch": 0.0003095710898664395, "bdt": 8.765663758063019, "bhd": 0.038885405825244766, "bmd": 0.10325084988288916, "bnb": 0.004959318934220193, "brl": 0.4757282908354116, "btc": 1.1397864511354168e-05, "cad": 0.13835283481587518, "chf": 0.09766632116527338, "clp": 85.22320048741689, "cny": 0.7162511456376021, "czk": 2.333711846850522, "dkk": 0.6871926394499615, "eos": 0.027643566202699157, "eth": 0.0004527389211727353, "eur": 0.0919988820152016, "gbp": 0.07973268104911432, "hkd": 0.8024088173223793, "huf": 30.95142869549698, "idr": 1495.4336842788275, "ils": 0.3586459571022105, "inr": 7.625653468610703, "jpy": 10.971314848886768, "krw": 122.70124157654993, "kwd": 0.03157854968073246, "lkr": 18.77066419390801, "ltc": 0.0016752839131765884, "mmk": 143.43696066430292, "mxn": 2.0477844308123294, "myr": 0.4296784117876436, "ngn": 37.686560207254544, "nok": 0.9592951796922332, "nzd": 0.1636339086605505, "php": 5.22346049557536, "pkr": 15.924246106597627, "pln": 0.3962114040625533, "rub": 6.980191105652817, "sar": 0.3875199540211105, "sek": 0.9752413441989961, "sgd": 0.14285581088096794, "thb": 3.2597287613712496, "try": 0.630345922280789, "twd": 3.089162177646157, "uah": 2.550790976681697, "usd": 0.10325084988288916, "vef": 25656.560246778598, "vnd": 2387.9857935183427, "xag": 0.005907280549264748, "xau": 6.16810252115392e-05, "xdr": 0.0746513969738277, "xlm": 1.7327999148114637, "xrp": 0.4335445872091643, "zar": 1.610733392088793, "bits": 11.397864511354168, "link": 0.022051085261631246, "sats": 1139.7864511354167}, "market_cap": {"aed": 25807648.67063003, "ars": 437964200.9537166, "aud": 10621773.938163985, "bch": 21065.444289934094, "bdt": 596478830.2403718, "bhd": 2646042.7892558677, "bmd": 7025930.706367761, "bnb": 337467.74212638254, "brl": 32371975.72958943, "btc": 775.5927079357982, "cad": 9414522.316750191, "chf": 6645919.192252448, "clp": 5799199734.22618, "cny": 48738881.31007314, "czk": 158802544.90107143, "dkk": 46761531.475795835, "eos": 1881067.1373392795, "eth": 30807.61361134788, "eur": 6260265.855779922, "gbp": 5425585.28786343, "hkd": 54601669.18800174, "huf": 2106157901.1145992, "idr": 101760067385.67761, "ils": 24404851.34579664, "inr": 518904327.8772142, "jpy": 746567199.9160608, "krw": 8349475300.977612, "kwd": 2148831.7250276334, "lkr": 1277291044.9500484, "ltc": 113998.3709656799, "mmk": 9760482819.293482, "mxn": 139345986.29246238, "myr": 29238410.63454945, "ngn": 2564464707.8242326, "nok": 65277346.06654494, "nzd": 11134828.476135043, "php": 355441834.43514466, "pkr": 1083600278.5740054, "pln": 26961074.636902362, "rub": 474982424.6594273, "sar": 26369645.84190167, "sek": 66362437.83076706, "sgd": 9720937.20671631, "thb": 221815398.3713005, "try": 42893271.832721636, "twd": 210208820.80381668, "uah": 173574170.75908968, "usd": 7025930.706367761, "vef": 1745856955773.9707, "vnd": 162495734728.38736, "xag": 401973.8709103478, "xau": 4197.220744677038, "xdr": 5079818.1600109525, "xlm": 117912173.53924054, "xrp": 29501493.02700507, "zar": 109605889.07582442, "bits": 775592707.9357982, "link": 1500514.496724773, "sats": 77559270793.57982}, "total_volume": {"aed": 323531.92940749635, "ars": 5490442.18457695, "aud": 133157.54022392933, "bch": 264.08232388503467, "bdt": 7477626.081372211, "bhd": 33171.535300578966, "bmd": 88079.03991274543, "bnb": 4230.590361654771, "brl": 405824.1763979744, "btc": 9.723047939598588, "cad": 118023.09495380164, "chf": 83315.10888098482, "clp": 72700396.03293438, "cny": 611004.299874715, "czk": 1990793.2877718436, "dkk": 586215.6871978318, "eos": 23581.585756047716, "eth": 386.21289367841894, "eur": 78480.45038017422, "gbp": 68016.66043854003, "hkd": 684501.8547299058, "huf": 26403386.766494375, "idr": 1275692774.5762506, "ils": 305946.0682985175, "inr": 6505130.340179757, "jpy": 9359176.021954834, "krw": 104671366.54490024, "kwd": 26938.357804033796, "lkr": 16012479.147621546, "ltc": 1429.1155842419314, "mmk": 122360152.94444293, "mxn": 1746880.4064934717, "myr": 366540.9245968904, "ngn": 32148849.56815208, "nok": 818335.1373480455, "nzd": 139589.3359554773, "php": 4455918.629185789, "pkr": 13584317.320334548, "pln": 337991.6011528527, "rub": 5954513.030069226, "sar": 330577.2837310768, "sek": 831938.1523512094, "sgd": 121864.39804247646, "thb": 2780740.110160811, "try": 537722.0982721115, "twd": 2635236.7951494274, "uah": 2175974.536762151, "usd": 88079.03991274543, "vef": 21886552958.76908, "vnd": 2037092152.3351796, "xag": 5039.257302623912, "xau": 52.61753765347505, "xdr": 63682.02664731409, "xlm": 1478180.1121307157, "xrp": 369838.9993308809, "zar": 1374050.1980516075, "bits": 9723047.939598588, "link": 18810.871010568226, "sats": 972304793.9598589}}, "community_data": {"facebook_likes": null, "twitter_followers": 49778, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 13997, "reddit_accounts_active_48h": "217.923076923077"}, "developer_data": {"forks": 81, "stars": 89, "subscribers": 24, "total_issues": 310, "closed_issues": 251, "pull_requests_merged": 294, "pull_request_contributors": 26, "code_additions_deletions_4_weeks": {"additions": 8070, "deletions": -11685}, "commit_count_4_weeks": 21}, "public_interest_stats": {"alexa_rank": 1136873, "bing_matches": null}}, "BRD_20200311": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.8330566345404845, "ars": 14.159865970257568, "aud": 0.34122004286888435, "bch": 0.000686029186300639, "bdt": 19.271964843452885, "bhd": 0.08550771814088588, "bmd": 0.22680550899550372, "bnb": 0.011326819813503964, "brl": 1.0494971317748953, "btc": 2.550628160202397e-05, "cad": 0.3045430972037118, "chf": 0.21262268010148772, "clp": 187.47744326151462, "cny": 1.572193107805932, "czk": 5.101706417967605, "dkk": 1.5009421571549955, "eos": 0.06224893834539652, "eth": 0.0009551042864778042, "eur": 0.20095285624714224, "gbp": 0.17381058737463229, "hkd": 1.7629252005957006, "huf": 67.37938061238428, "idr": 3233.4183779597893, "ils": 0.7905986432565268, "inr": 16.784809734864954, "jpy": 23.886022179861474, "krw": 269.62638909385504, "kwd": 0.06927275300147878, "lkr": 41.28618270409787, "ltc": 0.003752838321420577, "mmk": 313.5423397157364, "mxn": 4.5611041470013785, "myr": 0.9462325835292422, "ngn": 83.05309782895232, "nok": 2.0991757079569844, "nzd": 0.35700547948946254, "php": 11.464563054260633, "pkr": 34.99609003800633, "pln": 0.8636753782548772, "rub": 15.54978569673174, "sar": 0.8510241669631079, "sek": 2.1319082790152146, "sgd": 0.31260603304850354, "thb": 7.116747488335168, "try": 1.381880605207805, "twd": 6.785113607109486, "uah": 5.667058840102971, "usd": 0.22680550899550372, "vef": 56358.36617756274, "vnd": 5285.065155969773, "xag": 0.013076158629533359, "xau": 0.0001354459819170249, "xdr": 0.16343695700419597, "xlm": 3.882406190715009, "xrp": 0.9565749727583536, "zar": 3.5551287243476386, "bits": 25.506281602023968, "link": 0.05221551805440726, "sats": 2550.628160202397}, "market_cap": {"aed": 51458262.324687995, "ars": 874660938.2468421, "aud": 21077307.050166707, "bch": 42309.397413421066, "bdt": 1190437458.0409975, "bhd": 5281848.086242386, "bmd": 14009872.672117623, "bnb": 701170.1896282998, "brl": 64827883.81568978, "btc": 1576.1588723149357, "cad": 18811756.530485876, "chf": 13133793.304312095, "clp": 11580561339.187075, "cny": 97115036.37585214, "czk": 315134573.41844594, "dkk": 92713834.87590635, "eos": 3847612.0397679326, "eth": 58861.9840155664, "eur": 12412943.325713616, "gbp": 10736353.84329597, "hkd": 108896638.79946946, "huf": 4162052973.4326973, "idr": 199729627254.3347, "ils": 48835614.16046767, "inr": 1036804830.0618664, "jpy": 1475449740.464067, "krw": 16654936632.61335, "kwd": 4279007.390499533, "lkr": 2550265050.2799816, "ltc": 231623.95107837935, "mmk": 19367643564.700245, "mxn": 281741341.41081905, "myr": 58449188.78807463, "ngn": 5130225146.478332, "nok": 129666975.5295174, "nzd": 22052380.178273536, "php": 708170931.7512201, "pkr": 2161723353.307747, "pln": 53349595.13542397, "rub": 960516870.4003838, "sar": 52568124.43777318, "sek": 131688880.35355754, "sgd": 19309807.50397979, "thb": 439604516.6308781, "try": 85359352.21667814, "twd": 419119350.8590713, "uah": 350056632.78141695, "usd": 14009872.672117623, "vef": 3481280228391.1255, "vnd": 326460720583.51013, "xag": 807719.8752866545, "xau": 8366.55586106193, "xdr": 10095570.28701865, "xlm": 239884871.5446744, "xrp": 59067396.785857074, "zar": 219601812.0621824, "bits": 1576158872.3149357, "link": 3226654.254748135, "sats": 157615887231.49356}, "total_volume": {"aed": 2845569.469235273, "ars": 48367518.63293671, "aud": 1165545.4095440155, "bch": 2343.350531765732, "bdt": 65829515.66186703, "bhd": 292078.7639605015, "bmd": 774726.2371999115, "bnb": 38690.34986152516, "brl": 3584890.717395154, "btc": 87.1248042343147, "cad": 1040263.6550001785, "chf": 726280.2814090889, "clp": 640388740.2079483, "cny": 5370324.803646066, "czk": 17426498.298015486, "dkk": 5126944.556229717, "eos": 212631.0158320466, "eth": 3262.4619801943372, "eur": 686418.2923264424, "gbp": 593705.2540682545, "hkd": 6021830.832819331, "huf": 230155670.54734984, "idr": 11044767229.615614, "ils": 2700540.717631452, "inr": 57333847.60185062, "jpy": 81590293.67070869, "krw": 920994550.7832557, "kwd": 236623.0851754948, "lkr": 141026067.29595754, "ltc": 12819.010986331174, "mmk": 1071003425.4751914, "mxn": 15579899.57533766, "myr": 3232157.8615980335, "ngn": 283694228.8297589, "nok": 7170401.21578006, "nzd": 1219465.5809268926, "php": 39160855.64017118, "pkr": 119540258.39994672, "pln": 2950157.51125726, "rub": 53115230.82242596, "sar": 2906943.2817462482, "sek": 7282209.706332747, "sgd": 1067805.1727326408, "thb": 24309510.942475073, "try": 4720252.018011621, "twd": 23176710.112072546, "uah": 19357639.021327775, "usd": 774726.2371999115, "vef": 192509896064.0481, "vnd": 18052818292.530964, "xag": 44665.77208355359, "xau": 462.65876159341525, "xdr": 558270.8254312051, "xlm": 13261591.187689843, "xrp": 3267485.5761963823, "zar": 12143671.075598825, "bits": 87124804.2343147, "link": 178358.68275376386, "sats": 8712480423.431469}}, "community_data": {"facebook_likes": null, "twitter_followers": 180, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "NXS_20200312": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 0.6099898586172263, "ars": 10.275607766745777, "aud": 0.25118312856183717, "bch": 0.0006098571389913509, "bdt": 14.111463990844097, "bhd": 0.06261193905628934, "bmd": 0.16607324676613958, "bnb": 0.0097859777251756, "brl": 0.7685648982918747, "btc": 2.0644136350616423e-05, "cad": 0.22619691036613268, "chf": 0.1540096861210473, "clp": 137.27614511259802, "cny": 1.1512363539075565, "czk": 3.7091295491757363, "dkk": 1.089511079915752, "eos": 0.054698250368300255, "eth": 0.0008355858743726226, "eur": 0.14582543044716514, "gbp": 0.1267803165812709, "hkd": 1.2904472530092728, "huf": 48.97382849243209, "idr": 2346.5365902330864, "ils": 0.5788715518579272, "inr": 12.290037388879314, "jpy": 17.250552620841002, "krw": 197.41126793269046, "kwd": 0.05072408390627562, "lkr": 30.2308812454176, "ltc": 0.0032438607668979257, "mmk": 226.40994049127576, "mxn": 3.5007127727548806, "myr": 0.6929572294563943, "ngn": 60.86584493979016, "nok": 1.5749372015762941, "nzd": 0.2623929066453054, "php": 8.319994479613696, "pkr": 25.650212583072957, "pln": 0.6290268348940282, "rub": 11.987864459216375, "sar": 0.6233144134250141, "sek": 1.5581822377833063, "sgd": 0.22864864970814036, "thb": 5.2146994502370365, "try": 1.0177300708322576, "twd": 4.968067392929578, "uah": 4.149576724828645, "usd": 0.16607324676613958, "vef": 41267.1495282259, "vnd": 3835.207697939214, "xag": 0.009486117141141635, "xau": 9.766601569069908e-05, "xdr": 0.11967304591266736, "xlm": 3.293665876579226, "xrp": 0.8133723602669647, "zar": 2.6704448542862718, "bits": 20.644136350616424, "link": 0.04106436328481898, "sats": 2064.4136350616423}, "market_cap": {"aed": 36678717.335556604, "ars": 618212036.2047199, "aud": 15088184.39375566, "bch": 36470.18162486594, "bdt": 848522957.5527222, "bhd": 3764858.680901156, "bmd": 9985991.716225814, "bnb": 577562.9243132467, "brl": 46213841.52579483, "btc": 1236.1200838654463, "cad": 13601370.087126838, "chf": 9263045.859937923, "clp": 8254421172.04391, "cny": 69223893.17604898, "czk": 223151464.5870539, "dkk": 65527957.80997314, "eos": 3278176.977781054, "eth": 49329.59570540961, "eur": 8770936.188162314, "gbp": 7620430.110552513, "hkd": 77589657.73631707, "huf": 2945417008.312357, "idr": 141141347841.6819, "ils": 34807572.165745385, "inr": 739000494.9459279, "jpy": 1037444679.3987, "krw": 11870348323.119642, "kwd": 3050041.421870282, "lkr": 1817784234.18224, "ltc": 192608.91830899744, "mmk": 13614039794.144724, "mxn": 210143382.23977226, "myr": 41667549.03512379, "ngn": 3659865963.996761, "nok": 95028664.41197293, "nzd": 15767711.15806136, "php": 500382676.45882374, "pkr": 1542348423.7331169, "pln": 37821124.77388455, "rub": 719186629.7063103, "sar": 37479923.408924505, "sek": 93678158.89227058, "sgd": 13750101.447748205, "thb": 313489049.6144622, "try": 61249080.19147104, "twd": 298730113.3535831, "uah": 249514233.06809786, "usd": 9985991.716225814, "vef": 2481395537003.111, "vnd": 230727877804.21606, "xag": 571064.5144394503, "xau": 5875.657665910104, "xdr": 7195945.574679184, "xlm": 195634832.47873864, "xrp": 48068433.21857728, "zar": 160008541.06660053, "bits": 1236120083.8654463, "link": 2458833.0228692717, "sats": 123612008386.54463}, "total_volume": {"aed": 796766.965431753, "ars": 13421968.746884627, "aud": 328094.66630404233, "bch": 796.5936074454386, "bdt": 18432352.903820526, "bhd": 81783.53127831603, "bmd": 216924.38816149012, "bnb": 12782.415421702384, "brl": 1003897.2174677518, "btc": 26.965310392744744, "cad": 295457.7413319837, "chf": 201167.00060543962, "clp": 179309698.38659024, "cny": 1503741.5511742663, "czk": 4844854.145590771, "dkk": 1423116.1792043447, "eos": 71446.69430926518, "eth": 1091.4398199844284, "eur": 190476.74983245318, "gbp": 165600.07792248152, "hkd": 1685578.4195506352, "huf": 63969471.23341614, "idr": 3065039216.4106536, "ils": 756120.324351217, "inr": 16053210.814976683, "jpy": 22532621.271582734, "krw": 257858019.5567903, "kwd": 66255.64972494036, "lkr": 39487488.475367986, "ltc": 4237.121425892816, "mmk": 295736000.6570494, "mxn": 4572620.763104133, "myr": 905138.7020426341, "ngn": 79502788.26118612, "nok": 2057178.3565224067, "nzd": 342736.84558055556, "php": 10867552.403179467, "pkr": 33504232.49465684, "pln": 821633.0080467036, "rub": 15658513.419926642, "sar": 814171.4598671139, "sek": 2035293.0719251835, "sgd": 298660.19607441063, "thb": 6811425.137497618, "try": 1329356.0355312454, "twd": 6489275.067126753, "uah": 5420164.955467968, "usd": 216924.38816149012, "vef": 53903029758.820305, "vnd": 5009537053.96772, "xag": 12390.738405735372, "xau": 127.5710634338908, "xdr": 156316.5818067226, "xlm": 4302176.714178627, "xrp": 1062424.59296793, "zar": 3488127.241534479, "bits": 26965310.392744742, "link": 53638.15096205326, "sats": 2696531039.2744746}}, "community_data": {"facebook_likes": null, "twitter_followers": 23525, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3535, "reddit_accounts_active_48h": "212.75"}, "developer_data": {"forks": 7, "stars": 21, "subscribers": 11, "total_issues": 32, "closed_issues": 29, "pull_requests_merged": 76, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 106, "deletions": -63}, "commit_count_4_weeks": 50}, "public_interest_stats": {"alexa_rank": 662796, "bing_matches": null}}, "NAV_20200316": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.15828126671170184, "ars": 2.701631807146415, "aud": 0.06870812598428498, "bch": 0.00029035857509378916, "bdt": 3.6563479358659876, "bhd": 0.01625037379425307, "bmd": 0.04309083815520582, "bnb": 0.0045616195196231, "brl": 0.20647836918829965, "btc": 8.992107995896591e-06, "cad": 0.06009138035090297, "chf": 0.040700115363516885, "clp": 36.6918099504943, "cny": 0.3029113558958348, "czk": 1.0097648468262017, "dkk": 0.28795624960568905, "eos": 0.023057779797454853, "eth": 0.0003931124715817913, "eur": 0.03853204293257586, "gbp": 0.03428841410021303, "hkd": 0.3351066756234972, "huf": 13.028759025824604, "idr": 626.9831788666135, "ils": 0.1589470201611999, "inr": 3.2075354834237975, "jpy": 4.505791097572137, "krw": 52.17998864728348, "kwd": 0.013258016720241126, "lkr": 7.88015644776592, "ltc": 0.001435807124386298, "mmk": 59.83009228848722, "mxn": 0.9469272011779865, "myr": 0.18410564910895535, "ngn": 15.749701345727727, "nok": 0.43865654516074626, "nzd": 0.07048945814278301, "php": 2.20757841299759, "pkr": 6.851443266677731, "pln": 0.16880969428900205, "rub": 3.228930084567853, "sar": 0.1617419350147846, "sek": 0.4199807604500889, "sgd": 0.06071757641097438, "thb": 1.36738002176007, "try": 0.2721977146381402, "twd": 1.2982407288492026, "uah": 1.1141684320489846, "usd": 0.04309083815520582, "vef": 10707.540775375592, "vnd": 1004.32332613161, "xag": 0.00274324161319423, "xau": 2.7299769604849105e-05, "xdr": 0.031006960593017812, "xlm": 1.3175852345187251, "xrp": 0.31544322305046235, "zar": 0.7145396037321099, "bits": 8.99210799589659, "link": 0.02175331046268199, "sats": 899.2107995896591}, "market_cap": {"aed": 10634219.033474024, "ars": 181528365.48584312, "aud": 4613476.953638983, "bch": 19067.472908514606, "bdt": 245653864.29090822, "bhd": 1092937.2749705845, "bmd": 2895083.0429799655, "bnb": 304656.9549847931, "brl": 13872948.433655707, "btc": 601.5745194821985, "cad": 4032630.6525598285, "chf": 2733462.137022568, "clp": 2464875205.3412414, "cny": 20351275.758932, "czk": 67892418.73594087, "dkk": 19343798.440307096, "eos": 1527193.3886907876, "eth": 26661.016881247746, "eur": 2588398.2109879693, "gbp": 2302778.0032166964, "hkd": 22517521.645841725, "huf": 875312982.2589529, "idr": 42118205147.177025, "ils": 10678948.06648808, "inr": 215500138.43708283, "jpy": 302808677.68282694, "krw": 3505916672.1199694, "kwd": 890741.7801658208, "lkr": 529432897.6796712, "ltc": 96306.07719677463, "mmk": 4019719575.201621, "mxn": 63647112.387960285, "myr": 12369245.196214948, "ngn": 1058152852.2091774, "nok": 29458931.97925787, "nzd": 4732085.6108268285, "php": 148249770.9528328, "pkr": 460318203.8338145, "pln": 11335593.431798497, "rub": 216937547.1679219, "sar": 10866193.352458898, "sek": 28212656.63091586, "sgd": 4075828.186644131, "thb": 91761104.58877136, "try": 18288529.090808768, "twd": 87217268.85773154, "uah": 74856054.62187782, "usd": 2895083.0429799655, "vef": 719392359441.9932, "vnd": 67468263992.93452, "xag": 184382.56995625573, "xau": 1837.3355023968072, "xdr": 2083220.695403178, "xlm": 89384988.68692125, "xrp": 21049255.211334262, "zar": 47992428.52174838, "bits": 601574519.4821985, "link": 1455302.5046748437, "sats": 60157451948.21986}, "total_volume": {"aed": 509875.8984140467, "ars": 8702842.562927905, "aud": 221331.41964546096, "bch": 935.3402484946312, "bdt": 11778296.493606389, "bhd": 52347.78638081433, "bmd": 138809.72950398762, "bnb": 14694.473320252546, "brl": 665134.5808642572, "btc": 28.966530520601054, "cad": 193574.05446573716, "chf": 131108.42690137698, "clp": 118196359.88269877, "cny": 975776.8745212312, "czk": 3252783.9153587483, "dkk": 927601.5697995772, "eos": 74276.67489592674, "eth": 1266.3442666946617, "eur": 124124.35417111336, "gbp": 110454.23319983114, "hkd": 1079488.5639201368, "huf": 41969908.07264821, "idr": 2019718557.0759337, "ils": 512020.5087348838, "inr": 10332524.311196536, "jpy": 14514631.653315922, "krw": 168088865.748264, "kwd": 42708.422334868956, "lkr": 25384569.70884758, "ltc": 4625.205892679586, "mmk": 192732359.877762, "mxn": 3050363.2392122475, "myr": 593064.7081155175, "ngn": 50734956.13370747, "nok": 1413056.6725019896, "nzd": 227069.6750534262, "php": 7111334.46194101, "pkr": 22070746.991134048, "pln": 543791.4184334875, "rub": 10401443.341895252, "sar": 521023.84660024155, "sek": 1352895.8416863128, "sgd": 195591.237454889, "thb": 4404779.741485291, "try": 876838.1576713235, "twd": 4182059.3916864083, "uah": 3589102.122301544, "usd": 138809.72950398762, "vef": 34492502404.55678, "vnd": 3235254991.6235905, "xag": 8836.881402028856, "xau": 87.94151602995633, "xdr": 99883.59467864352, "xlm": 4244374.392144351, "xrp": 1016146.1308269037, "zar": 2301766.53228914, "bits": 28966530.520601053, "link": 70074.55112070858, "sats": 2896653052.0601053}}, "community_data": {"facebook_likes": null, "twitter_followers": 49707, "reddit_average_posts_48h": 0.273, "reddit_average_comments_48h": 2.909, "reddit_subscribers": 13983, "reddit_accounts_active_48h": "190.666666666667"}, "developer_data": {"forks": 81, "stars": 90, "subscribers": 24, "total_issues": 310, "closed_issues": 251, "pull_requests_merged": 294, "pull_request_contributors": 26, "code_additions_deletions_4_weeks": {"additions": 8006, "deletions": -11685}, "commit_count_4_weeks": 20}, "public_interest_stats": {"alexa_rank": 1136873, "bing_matches": null}}, "RLC_20200317": {"id": "iexec-rlc", "symbol": "rlc", "name": "iExec RLC", "localization": {"en": "iExec RLC", "de": "iExec RLC", "es": "iExec RLC", "fr": "iExec RLC", "it": "iExec RLC", "pl": "iExec RLC", "ro": "iExec RLC", "hu": "iExec RLC", "nl": "iExec RLC", "pt": "iExec RLC", "sv": "iExec RLC", "vi": "iExec RLC", "tr": "iExec RLC", "ru": "iExec RLC", "ja": "\u30a2\u30a4\u30a8\u30b0\u30bc\u30c3\u30af", "zh": "\u4e91\u7b97\u5b9d", "zh-tw": "\u96f2\u7b97\u5bf6", "ko": "\uc544\uc774\uc81d", "ar": "iExec RLC", "th": "iExec RLC", "id": "iExec RLC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/646/thumb/pL1VuXm.png?1604543202", "small": "https://assets.coingecko.com/coins/images/646/small/pL1VuXm.png?1604543202"}, "market_data": {"current_price": {"aed": 0.9777355049402663, "ars": 16.686598993834277, "aud": 0.43066706827066853, "bch": 0.001499718108546206, "bdt": 22.56891826016585, "bhd": 0.10049619649035914, "bmd": 0.2661953457501409, "bnb": 0.024565350591603596, "brl": 1.2936029022073856, "btc": 4.7962407130120774e-05, "cad": 0.370024840359983, "chf": 0.2532316324121089, "clp": 223.5349038639996, "cny": 1.8655502220861377, "czk": 6.309468563108125, "dkk": 1.7912018620181205, "eos": 0.12687083905846042, "eth": 0.002014368164800562, "eur": 0.23892230160131003, "gbp": 0.2169481420049819, "hkd": 2.070028176924105, "huf": 81.27742491789044, "idr": 3901.601225078694, "ils": 0.9759120668218771, "inr": 19.687541576334638, "jpy": 28.731780183810272, "krw": 322.5755199800204, "kwd": 0.08202889437894292, "lkr": 48.95654344996215, "ltc": 0.007149188477663497, "mmk": 371.53368163148986, "mxn": 5.833537638246098, "myr": 1.1389167867919765, "ngn": 97.2943988716765, "nok": 2.683474020228576, "nzd": 0.4389766221836048, "php": 13.53751950000998, "pkr": 41.769620492564954, "pln": 1.048921198105423, "rub": 19.33193121394705, "sar": 0.9989709724521402, "sek": 2.6013181506697096, "sgd": 0.37669303377102437, "thb": 8.441004369011967, "try": 1.685575548824465, "twd": 8.014476372172357, "uah": 6.957161236229376, "usd": 0.2661953457501409, "vef": 66146.25384098016, "vnd": 6184.516363464431, "xag": 0.01805331244775193, "xau": 0.00017406513658601712, "xdr": 0.19253776260434788, "xlm": 6.72200816415764, "xrp": 1.6809921042176772, "zar": 4.2863466680586635, "bits": 47.96240713012077, "link": 0.11001123464753379, "sats": 4796.240713012077}, "market_cap": {"aed": 67859496.81423788, "ars": 1158129377.0565732, "aud": 29890343.962804236, "bch": 105988.43196141892, "bdt": 1566390326.4616401, "bhd": 6974914.269884474, "bmd": 18475223.74468773, "bnb": 1732880.5666797706, "brl": 89782197.30968435, "btc": 3360.779126491672, "cad": 25681484.766303174, "chf": 17574796.765042894, "clp": 15514386068.60943, "cny": 129478063.04752062, "czk": 437907143.2860856, "dkk": 124317933.0556291, "eos": 8965412.992036112, "eth": 140998.48279850604, "eur": 16582344.69592575, "gbp": 15057307.351920491, "hkd": 143669806.16700235, "huf": 5641040065.965519, "idr": 270789691655.75095, "ils": 67732941.5315868, "inr": 1366409072.933361, "jpy": 1994122271.3087156, "krw": 22388276133.812595, "kwd": 5693195.622596771, "lkr": 3397817086.0040393, "ltc": 502189.77961970307, "mmk": 25786205530.70175, "mxn": 404875272.2777361, "myr": 79046244.79164638, "ngn": 6752694278.683365, "nok": 186245866.9105166, "nzd": 30467066.547218405, "php": 939568274.5915372, "pkr": 2899010432.1928153, "pln": 72800122.6728186, "rub": 1341728021.5328321, "sar": 69333339.31324662, "sek": 180543858.60619363, "sgd": 26144289.121107608, "thb": 585845871.601985, "try": 116986964.2737372, "twd": 556242798.8931866, "uah": 482860096.99002707, "usd": 18475223.74468773, "vef": 4590864788192.397, "vnd": 429234866018.04193, "xag": 1252985.7945677356, "xau": 12080.948806651315, "xdr": 13363036.958413923, "xlm": 473100373.52047807, "xrp": 118739821.23871139, "zar": 297492856.2951353, "bits": 3360779126.491672, "link": 7708609.371501283, "sats": 336077912649.1672}, "total_volume": {"aed": 3666952.5887980955, "ars": 62582331.38666124, "aud": 1615197.2726015467, "bch": 5624.6246278403005, "bdt": 84643702.53747086, "bhd": 376906.41898822994, "bmd": 998353.5499041929, "bnb": 92131.2312905288, "brl": 4851598.911114419, "btc": 179.88082881528328, "cad": 1387761.352044322, "chf": 949733.7320238581, "clp": 838357500.8467193, "cny": 6996661.348438566, "czk": 23663375.181249086, "dkk": 6717821.2019503135, "eos": 475823.3176331575, "eth": 7554.796281187689, "eur": 896067.2369487581, "gbp": 813654.1497577177, "hkd": 7763546.627797457, "huf": 304827289.3922469, "idr": 14632778129.12625, "ils": 3660113.8669812493, "inr": 73837230.19736408, "jpy": 107757236.1783442, "krw": 1209804831.7738996, "kwd": 307645.6414636258, "lkr": 183609291.9152126, "ltc": 26812.706568915382, "mmk": 1393420192.680344, "mxn": 21878417.871021815, "myr": 4271455.663265084, "ngn": 364898222.4899825, "nok": 10064247.391783921, "nzd": 1646361.8770153555, "php": 50771851.82049729, "pkr": 156655063.8944861, "pln": 3933931.2967599244, "rub": 72503529.69004716, "sar": 3746595.244888161, "sek": 9756125.535676988, "sgd": 1412770.1084694231, "thb": 31657603.376994576, "try": 6321674.513348332, "twd": 30057929.50374045, "uah": 26092517.124491323, "usd": 998353.5499041929, "vef": 248078519738.62488, "vnd": 23194747633.569458, "xag": 67708.12810025681, "xau": 652.8233862823516, "xdr": 722104.1308779521, "xlm": 25210586.211641885, "xrp": 6304484.512595009, "zar": 16075748.432480285, "bits": 179880828.81528327, "link": 412592.1372900275, "sats": 17988082881.528328}}, "community_data": {"facebook_likes": null, "twitter_followers": 28450, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3562, "reddit_accounts_active_48h": "251.846153846154"}, "developer_data": {"forks": 18, "stars": 386, "subscribers": 39, "total_issues": 49, "closed_issues": 37, "pull_requests_merged": 49, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 1580, "deletions": -381}, "commit_count_4_weeks": 14}, "public_interest_stats": {"alexa_rank": 249120, "bing_matches": null}}, "SNGLS_20200401": {"id": "singulardtv", "symbol": "sngls", "name": "SingularDTV", "localization": {"en": "SingularDTV", "de": "SingularDTV", "es": "SingularDTV", "fr": "SingularDTV", "it": "SingularDTV", "pl": "SingularDTV", "ro": "SingularDTV", "hu": "SingularDTV", "nl": "SingularDTV", "pt": "SingularDTV", "sv": "SingularDTV", "vi": "SingularDTV", "tr": "SingularDTV", "ru": "SingularDTV", "ja": "SingularDTV", "zh": "SingularDTV", "zh-tw": "SingularDTV", "ko": "\uc2f1\uade4\ub7ec\ub514\ud2f0\ube44", "ar": "SingularDTV", "th": "SingularDTV", "id": "SingularDTV"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/521/thumb/singulardtv.png?1547034199", "small": "https://assets.coingecko.com/coins/images/521/small/singulardtv.png?1547034199"}, "market_data": {"current_price": {"aed": 0.01699255284191352, "ars": 0.29688326117350866, "aud": 0.0075039261392822664, "bch": 2.155390979757375e-05, "bdt": 0.3925560294102463, "bhd": 0.0017426781268197777, "bmd": 0.004626341639508173, "bnb": 0.0003779487988266874, "brl": 0.02359665553231141, "btc": 7.399699179545935e-07, "cad": 0.006487750198164289, "chf": 0.004400876879706743, "clp": 3.842639365775491, "cny": 0.03283037081060583, "czk": 0.11381124277104838, "dkk": 0.031008980107131465, "eos": 0.0020946608070481834, "eth": 3.519195369556508e-05, "eur": 0.004142310645474631, "gbp": 0.0037144434389447187, "hkd": 0.03588259970727132, "huf": 1.4807994319737743, "idr": 74.11382651662177, "ils": 0.016495452432748386, "inr": 0.34640195659981426, "jpy": 0.49925178728750985, "krw": 5.610549559897144, "kwd": 0.0014492015185759383, "lkr": 0.8710354042236979, "ltc": 0.0001188639600481108, "mmk": 6.482458648739457, "mxn": 0.10821475266339427, "myr": 0.020020956079135614, "ngn": 1.764737263971613, "nok": 0.04851968321266984, "nzd": 0.0076595100086189, "php": 0.23600828029836082, "pkr": 0.7469894076230763, "pln": 0.018845448931952967, "rub": 0.36442849679815775, "sar": 0.01737532247014148, "sek": 0.045779501059589174, "sgd": 0.006605490592889773, "thb": 0.15013811006596173, "try": 0.02986303528302526, "twd": 0.1395998589721591, "uah": 0.12953479472758694, "usd": 0.004626341639508173, "vef": 1149.588726202746, "vnd": 107.69596369629474, "xag": 0.0003195025557710579, "xau": 2.8496413962714525e-06, "xdr": 0.0033936945467359734, "xlm": 0.11556423293987135, "xrp": 0.02615306799618357, "zar": 0.0814142445135236, "bits": 0.7399699179545934, "link": 0.0021633102601739344, "sats": 73.99699179545935}, "market_cap": {"aed": 10956458.10246113, "ars": 191424387.0612721, "aud": 4838381.443558937, "bch": 13897.529808402234, "bdt": 253112273.89524642, "bhd": 1123643.9904121095, "bmd": 2982972.5299376883, "bnb": 243693.8238618299, "brl": 15214651.388947163, "btc": 477.11779851897336, "cad": 4183171.527358119, "chf": 2837597.363691176, "clp": 2477656983.3662457, "cny": 21168366.261449832, "czk": 73383212.31723788, "dkk": 19993969.97641337, "eos": 1350595.3805059018, "eth": 22691.067657482778, "eur": 2670879.028992958, "gbp": 2394998.814561672, "hkd": 23136382.388076205, "huf": 954789847.3824539, "idr": 47787112542.5906, "ils": 10635937.70411934, "inr": 223353051.15161458, "jpy": 321907563.91247815, "krw": 3617570105.9566336, "kwd": 934416.1450029827, "lkr": 561626201.8381081, "ltc": 76641.10332777316, "mmk": 4179759642.1570168, "mxn": 69774707.4648001, "myr": 12909111.920558367, "ngn": 1137867280.7104557, "nok": 31284521.002227478, "nzd": 4938698.809740724, "php": 152173417.31871912, "pkr": 481643825.0182813, "pln": 12151168.430426493, "rub": 234976203.6145167, "sar": 11203260.300670566, "sek": 29517706.3727454, "sgd": 4259088.178245034, "thb": 96806049.55736402, "try": 19255087.68074778, "twd": 90011196.09086972, "uah": 83521444.03770992, "usd": 2982972.5299376883, "vef": 741231810833.8855, "vnd": 69440202718.22514, "xag": 206008.85567354484, "xau": 1837.391759540417, "xdr": 2188186.346088559, "xlm": 74513505.30602065, "xrp": 16862974.999507766, "zar": 52494276.00753003, "bits": 477117798.51897335, "link": 1394859.1744117776, "sats": 47711779851.89734}, "total_volume": {"aed": 374665.7812536861, "ars": 6545926.325699099, "aud": 165452.73541886188, "bch": 475.2383310799857, "bdt": 8655398.209623732, "bhd": 38424.00067446942, "bmd": 102005.38558499484, "bnb": 8333.325975424603, "brl": 520278.4691762657, "btc": 16.315465368502206, "cad": 143047.2524751176, "chf": 97034.15311851016, "clp": 84725673.26689678, "cny": 723871.0182653582, "czk": 2509403.8891607756, "dkk": 683711.4979605458, "eos": 46184.8043101809, "eth": 775.9411400899112, "eur": 91333.07211816478, "gbp": 81899.10403233656, "hkd": 791169.071405058, "huf": 32649883.818045117, "idr": 1634122604.8777337, "ils": 363705.3025725789, "inr": 7637755.251062082, "jpy": 11007914.035435192, "krw": 123706011.31434673, "kwd": 31953.187034499708, "lkr": 19205305.009741098, "ltc": 2620.8103554920235, "mmk": 142930580.0411554, "mxn": 2386007.872213234, "myr": 441438.5066576247, "ngn": 38910378.67380032, "nok": 1069801.8823997502, "nzd": 168883.17653608468, "php": 5203704.6783352485, "pkr": 16470236.850169003, "pln": 415519.9582343331, "rub": 8035219.235994011, "sar": 383105.4008408312, "sek": 1009384.0925177581, "sgd": 145643.28953825575, "thb": 3310368.5377435624, "try": 658444.7639511419, "twd": 3078012.5100272195, "uah": 2856089.6951538944, "usd": 102005.38558499484, "vef": 25347077759.89941, "vnd": 2374569186.36818, "xag": 7044.655137116687, "xau": 62.83123730493339, "xdr": 74826.96864434319, "xlm": 2548055.258218877, "xrp": 576644.3538019607, "zar": 1795088.2253900943, "bits": 16315465.368502207, "link": 47698.44391614734, "sats": 1631546536.8502207}}, "community_data": {"facebook_likes": null, "twitter_followers": 8951, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2130, "reddit_accounts_active_48h": "1671.91666666667"}, "developer_data": {"forks": 13, "stars": 20, "subscribers": 23, "total_issues": 72, "closed_issues": 58, "pull_requests_merged": 4, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1285734, "bing_matches": null}}, "RDN_20200421": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 0.3279855771383248, "ars": 5.877851856757884, "aud": 0.14029472667948248, "bch": 0.0003856039262174885, "bdt": 7.57903467334596, "bhd": 0.03372368072916155, "bmd": 0.0892975883522304, "bnb": 0.005718468251958237, "brl": 0.4674014369532447, "btc": 1.2684958950871783e-05, "cad": 0.1250647550932444, "chf": 0.08629942182330427, "clp": 76.19767089611156, "cny": 0.6316197019329967, "czk": 2.2383512091546764, "dkk": 0.6126261048904764, "eos": 0.034135778457740996, "eth": 0.0005239834250429565, "eur": 0.08211270439341, "gbp": 0.07138377774806622, "hkd": 0.6921322126798856, "huf": 29.002070745037418, "idr": 1379.318633780087, "ils": 0.320597094678061, "inr": 6.831265508945632, "jpy": 9.606188066991187, "krw": 108.60908480928369, "kwd": 0.027846024166229368, "lkr": 17.14284451594011, "ltc": 0.0021135622857706995, "mmk": 127.23211239792231, "mxn": 2.1139864578565297, "myr": 0.39023055039683563, "ngn": 34.389637854148475, "nok": 0.9225561561519221, "nzd": 0.14802771923560887, "php": 4.537550330798098, "pkr": 14.881443098899243, "pln": 0.37112077719186887, "rub": 6.607295637969339, "sar": 0.33544049700432277, "sek": 0.8912702995847767, "sgd": 0.12701688967221306, "thb": 2.906379948893764, "try": 0.6190555312518378, "twd": 2.683660422749583, "uah": 2.416179944658315, "usd": 0.0892975883522304, "vef": 22189.347187453135, "vnd": 2084.26617348428, "xag": 0.0058763903231293215, "xau": 5.300347654234984e-05, "xdr": 0.06547013425702809, "xlm": 1.8320691203515627, "xrp": 0.47247444420848805, "zar": 1.680229673266746, "bits": 12.684958950871783, "link": 0.025808147847058132, "sats": 1268.4958950871783}, "market_cap": {"aed": 16659678.086101556, "ars": 298559225.15178925, "aud": 7126121.2278004, "bch": 19586.340764035907, "bdt": 384968994.5606809, "bhd": 1712958.4469177844, "bmd": 4535775.898419947, "bnb": 290463.5046895303, "brl": 23741158.207509708, "btc": 644.3189804282493, "cad": 6352531.040997175, "chf": 4383487.222630499, "clp": 3870379542.6484823, "cny": 32082450.084704008, "czk": 113694665.82497402, "dkk": 31117690.55111004, "eos": 1733890.5121568965, "eth": 26615.180032709304, "eur": 4170827.3696330814, "gbp": 3625862.966989722, "hkd": 35156118.62226828, "huf": 1473129296.2888322, "idr": 70061021028.51454, "ils": 16284387.988266276, "inr": 346986856.22912633, "jpy": 487936092.272526, "krw": 5516682794.212244, "kwd": 1414409.1415078838, "lkr": 870752530.0577685, "ltc": 107356.14536188831, "mmk": 6462619647.052759, "mxn": 107377690.73124482, "myr": 19821345.21187109, "ngn": 1746785029.8371568, "nok": 46860257.42943058, "nzd": 7518910.349051768, "php": 230480036.5617871, "pkr": 755887053.4716866, "pln": 18850684.63383327, "rub": 335610545.16079813, "sar": 17038342.801205266, "sek": 45271125.66453967, "sgd": 6451687.637912563, "thb": 147626474.20941317, "try": 31444266.415796317, "twd": 136313673.07521483, "uah": 122727287.05727805, "usd": 4535775.898419947, "vef": 1127084258731.9275, "vnd": 105868080538.65924, "xag": 298484.98810765974, "xau": 2692.2551422661427, "xdr": 3325485.743892758, "xlm": 93057999.81464447, "xrp": 23998836.20828707, "zar": 85345476.80898233, "bits": 644318980.4282494, "link": 1310897.3842138601, "sats": 64431898042.824936}, "total_volume": {"aed": 2317557.198139174, "ars": 41533100.32434713, "aud": 991327.2910164505, "bch": 2724.6904044782887, "bdt": 53553715.7316875, "bhd": 238292.67037755714, "bmd": 630979.7841351427, "bnb": 40406.89037392298, "brl": 3302674.386120166, "btc": 89.63234963315007, "cad": 883711.7958928486, "chf": 609794.6378828053, "clp": 538415323.6477437, "cny": 4463046.209144696, "czk": 15816265.465088304, "dkk": 4328836.809059144, "eos": 241204.56688696775, "eth": 3702.484630602449, "eur": 580211.1507036295, "gbp": 504400.1915993604, "hkd": 4890629.659863874, "huf": 204929614.29141185, "idr": 9746312188.89352, "ils": 2265349.9307998302, "inr": 48269953.48633846, "jpy": 67877650.27833799, "krw": 767435472.2522082, "kwd": 196760.95000599776, "lkr": 121131920.04092944, "ltc": 14934.502705396575, "mmk": 899026416.0240788, "mxn": 14937499.919723324, "myr": 2757382.2876503607, "ngn": 242998345.98113593, "nok": 6518813.049745114, "nzd": 1045968.8783629851, "php": 32062484.340965033, "pkr": 105152781.02612187, "pln": 2622351.9828656483, "rub": 46687374.79133536, "sar": 2370233.9144379143, "sek": 6297746.127474448, "sgd": 897505.6449538307, "thb": 20536579.168679077, "try": 4374267.35351688, "twd": 18962835.45261346, "uah": 17072809.333871394, "usd": 630979.7841351427, "vef": 156790678861.47687, "vnd": 14727495383.61349, "xag": 41522.77307822018, "xau": 374.524360671255, "xdr": 462614.1863747945, "xlm": 12945462.463334445, "xrp": 3338520.4272271604, "zar": 11872559.786871694, "bits": 89632349.63315007, "link": 182361.2469043555, "sats": 8963234963.315006}}, "community_data": {"facebook_likes": null, "twitter_followers": 25025, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4316, "reddit_accounts_active_48h": "221.833333333333"}, "developer_data": {"forks": 369, "stars": 1756, "subscribers": 203, "total_issues": 2289, "closed_issues": 1963, "pull_requests_merged": 3320, "pull_request_contributors": 75, "code_additions_deletions_4_weeks": {"additions": 960, "deletions": -735}, "commit_count_4_weeks": 78}, "public_interest_stats": {"alexa_rank": 1251833, "bing_matches": null}}, "PPT_20200503": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 0.9918752984011053, "ars": 18.00444448198919, "aud": 0.4119964451745293, "bch": 0.0010485114899817577, "bdt": 22.92782306476167, "bhd": 0.1020971855370074, "bmd": 0.27003765168416455, "bnb": 0.015523600398462145, "brl": 1.441028924447377, "btc": 3.079758639631603e-05, "cad": 0.3746931739332268, "chf": 0.2629880487492977, "clp": 225.37326963406716, "cny": 1.911029457203665, "czk": 6.729392287499728, "dkk": 1.8514737332753286, "eos": 0.09000427700618861, "eth": 0.0012528647324784395, "eur": 0.2482337315365785, "gbp": 0.21649782656004868, "hkd": 2.0928593099651973, "huf": 88.00257030735241, "idr": 4115.166827806667, "ils": 0.9447483274291841, "inr": 20.3253559895547, "jpy": 28.786283707183646, "krw": 327.03988661636765, "kwd": 0.08357665319624882, "lkr": 51.86922125975044, "ltc": 0.005535758973358935, "mmk": 382.00250610246286, "mxn": 6.415203479765186, "myr": 1.1730435589160106, "ngn": 105.31468415682417, "nok": 2.7834625116247844, "nzd": 0.43990294621252535, "php": 13.580199984100274, "pkr": 43.61108074699244, "pln": 1.1289820553660104, "rub": 19.73940128916525, "sar": 1.015004833380808, "sek": 2.6580616168227382, "sgd": 0.3810506703668279, "thb": 8.752660464287056, "try": 1.8771667356824695, "twd": 8.056033532731348, "uah": 7.2868771883097745, "usd": 0.27003765168416455, "vef": 67101.01938329432, "vnd": 6309.9391184749375, "xag": 0.017661947627228614, "xau": 0.00015747245657962068, "xdr": 0.1978876417189312, "xlm": 3.7473320453547374, "xrp": 1.194597322089354, "zar": 4.904394125746109, "bits": 30.797586396316028, "link": 0.06945977253128365, "sats": 3079.758639631603}, "market_cap": {"aed": 35932566.71195833, "ars": 652245200.0807943, "aud": 14925353.7971835, "bch": 37984.320330143586, "bdt": 830603941.0020329, "bhd": 3698664.4755903087, "bmd": 9782626.857956031, "bnb": 562371.9108911145, "brl": 52204009.964796625, "btc": 1115.7010659876441, "cad": 13573971.940398583, "chf": 9527241.60120223, "clp": 8164574779.987551, "cny": 69230672.01106909, "czk": 243785017.82563633, "dkk": 67073152.7880543, "eos": 3260575.8940662867, "eth": 45387.40470038019, "eur": 8992738.434937237, "gbp": 7843044.99608281, "hkd": 75817803.80587377, "huf": 3188060266.7392926, "idr": 149079734931.7639, "ils": 34225302.6727078, "inr": 736324627.9207492, "jpy": 1042837805.6849719, "krw": 11847641091.835888, "kwd": 3027723.012537388, "lkr": 1879061063.6414986, "ltc": 200543.3837622427, "mmk": 13838766382.012684, "mxn": 232402931.47640386, "myr": 42495731.07096101, "ngn": 3815224474.6028523, "nok": 100836216.55909681, "nzd": 15936319.804565229, "php": 491968539.4696533, "pkr": 1579894237.5598946, "pln": 40899519.411802076, "rub": 715097305.901671, "sar": 36770478.05022279, "sek": 96293330.95091866, "sgd": 13804284.324515471, "thb": 317081750.6465733, "try": 68003930.60308138, "twd": 291845116.83602977, "uah": 263980967.2777072, "usd": 9782626.857956031, "vef": 2430861882856.9717, "vnd": 228589530043.22897, "xag": 639837.6009580428, "xau": 5704.738852217066, "xdr": 7168855.700913056, "xlm": 135754221.25001502, "xrp": 43276557.08242471, "zar": 177670992.905243, "bits": 1115701065.9876442, "link": 2516312.195999959, "sats": 111570106598.76442}, "total_volume": {"aed": 13703577.460014304, "ars": 248746288.95505825, "aud": 5692071.582789411, "bch": 14486.053280933298, "bdt": 316766835.371282, "bhd": 1410557.0455390562, "bmd": 3730793.460568538, "bnb": 214471.37645382647, "brl": 19909006.222977962, "btc": 425.494123549321, "cad": 5176696.043353008, "chf": 3633397.3664869354, "clp": 3113718088.176645, "cny": 26402452.2410975, "czk": 92972119.19606023, "dkk": 25579640.66654294, "eos": 1243483.5141827697, "eth": 17309.36231209129, "eur": 3429554.273388393, "gbp": 2991096.502728536, "hkd": 28914582.017771322, "huf": 1215828280.8646812, "idr": 56854432685.877205, "ils": 13052479.385275872, "inr": 280811600.66614896, "jpy": 397706313.690067, "krw": 4518326473.081865, "kwd": 1154680.5760459611, "lkr": 716616183.9793819, "ltc": 76481.08790860971, "mmk": 5277680511.585621, "mxn": 88631341.00468849, "myr": 16206566.792709727, "ngn": 1455009449.6217299, "nok": 38455836.330013484, "nzd": 6077622.971384937, "php": 187621692.67103478, "pkr": 602523143.881817, "pln": 15597820.685335701, "rub": 272716151.93606156, "sar": 14023131.112292364, "sek": 36723319.27041431, "sgd": 5264530.113795184, "thb": 120925242.16190195, "try": 25934610.741142184, "twd": 111300765.03993487, "uah": 100674234.10239343, "usd": 3730793.460568538, "vef": 927056070704.8154, "vnd": 87177026807.08206, "xag": 244014.41168521537, "xau": 2175.6122065305444, "xdr": 2733981.409806535, "xlm": 51772490.992256016, "xrp": 16504349.854428109, "zar": 67758260.44356509, "bits": 425494123.549321, "link": 959644.1959707933, "sats": 42549412354.9321}}, "community_data": {"facebook_likes": null, "twitter_followers": 23763, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1377509, "bing_matches": null}}, "PPT_20200804": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 1.0716802166777584, "ars": 21.117727176889467, "aud": 0.4087192476895524, "bch": 0.0009697442172602006, "bdt": 24.75069728921354, "bhd": 0.10999504344029941, "bmd": 0.29177642404001164, "bnb": 0.014104846658849092, "brl": 1.5238461410125634, "btc": 2.5750345176515686e-05, "cad": 0.3913144922191397, "chf": 0.26652930184425255, "clp": 220.78751972546385, "cny": 2.035198912963885, "czk": 6.502908695506931, "dkk": 1.8451065727018177, "eos": 0.09441911149681849, "eth": 0.0008426344768239843, "eur": 0.2477132238107606, "gbp": 0.22297933634488895, "hkd": 2.2613915830667266, "huf": 85.24335761256137, "idr": 4289.1280222093565, "ils": 0.9934111909290253, "inr": 21.862778275675613, "jpy": 30.88132494397061, "krw": 348.4948431091495, "kwd": 0.089171543609412, "lkr": 54.17770028671557, "ltc": 0.005017182503447399, "mmk": 398.45180514146296, "mxn": 6.501668353928353, "myr": 1.2371320379296464, "ngn": 113.26177228385173, "nok": 2.657353781944406, "nzd": 0.44002860864758936, "php": 14.349456868787277, "pkr": 48.910481961827024, "pln": 1.0935926261231625, "rub": 21.705248184336426, "sar": 1.0943273191588974, "sek": 2.561352044024636, "sgd": 0.401134227770207, "thb": 9.12572548569058, "try": 2.034411116618977, "twd": 8.556343634973318, "uah": 8.086864572965265, "usd": 0.29177642404001164, "vef": 72502.8356712125, "vnd": 6763.377509247459, "xag": 0.011961733388521833, "xau": 0.0001476826370278516, "xdr": 0.20696693796999716, "xlm": 3.0170279950217114, "xrp": 1.1248857257622609, "yfi": 7.070503346723943e-05, "zar": 4.980288015475351, "bits": 25.750345176515687, "link": 0.03754981997635357, "sats": 2575.0345176515684}, "market_cap": {"aed": 38736013.253721565, "ars": 763302846.3923151, "aud": 14773207.482203713, "bch": 35045.58744193625, "bdt": 894616997.9753463, "bhd": 3975784.375077511, "bmd": 10546294.736852307, "bnb": 509745.45533647755, "brl": 55079606.20742149, "btc": 930.4112205869064, "cad": 14144110.45485572, "chf": 9633734.399567218, "clp": 7980392058.420806, "cny": 73562515.04849198, "czk": 235048434.68864793, "dkk": 66691604.02743268, "eos": 3412877.8866110006, "eth": 30441.271395331096, "eur": 8953624.944577053, "gbp": 8059615.539734087, "hkd": 81738276.93216302, "huf": 3081131646.2556067, "idr": 155031059946.46567, "ils": 35906969.6905609, "inr": 790232810.0028671, "jpy": 1116209288.6537106, "krw": 12596388970.748995, "kwd": 3223116.4122978416, "lkr": 1958259640.9852338, "ltc": 181378.57955624248, "mmk": 14402089508.357395, "mxn": 235003602.38972104, "myr": 44716289.6842536, "ngn": 4093860690.9513288, "nok": 96050379.31588218, "nzd": 15904888.185236406, "php": 518662883.57563716, "pkr": 1767875386.7385464, "pln": 39528039.988459095, "rub": 784538865.4744408, "sar": 39554595.55860656, "sek": 92580384.69008927, "sgd": 14499046.004224489, "thb": 329647812.5894548, "try": 73534040.0527025, "twd": 309270093.158193, "uah": 292300714.7136923, "usd": 10546294.736852307, "vef": 2620623913539.0845, "vnd": 244463112000.23608, "xag": 432358.3246797851, "xau": 5338.007081057775, "xdr": 7480845.430870376, "xlm": 109005063.30236825, "xrp": 40615825.919146694, "yfi": 2554.71357913633, "zar": 180013122.91912088, "bits": 930411220.5869064, "link": 1356749.7288882975, "sats": 93041122058.69064}, "total_volume": {"aed": 6181016.030860213, "ars": 121798469.5288396, "aud": 2357326.544593552, "bch": 5593.090606170643, "bdt": 142751964.94142053, "bhd": 634406.7159579642, "bmd": 1682847.855500409, "bnb": 81351.02426490535, "brl": 8788925.35252919, "btc": 148.51752776554795, "cad": 2256942.987165086, "chf": 1537232.7134118087, "clp": 1273412700.5419044, "cny": 11738200.361686429, "czk": 37506135.00989415, "dkk": 10641824.983827913, "eos": 544571.0695216616, "eth": 4859.973272204801, "eur": 1428709.2209063002, "gbp": 1286054.2081955313, "hkd": 13042787.773314586, "huf": 491649049.52801013, "idr": 24737947618.24869, "ils": 5729592.093622229, "inr": 126095621.52785978, "jpy": 178110934.17830673, "krw": 2009976650.1311333, "kwd": 514305.23020661186, "lkr": 312474961.0713597, "ltc": 28937.070033536387, "mmk": 2298108107.9759436, "mxn": 37498981.22366051, "myr": 7135274.907321718, "ngn": 653247880.5481488, "nok": 15326536.843969977, "nzd": 2537906.2165758763, "php": 82761836.56265128, "pkr": 282095786.0175328, "pln": 6307397.904808289, "rub": 125187051.9706752, "sar": 6311635.315708452, "sek": 14772837.828313923, "sgd": 2313579.2317419564, "thb": 52633476.51890432, "try": 11733656.672476579, "twd": 49349513.362549365, "uah": 46641748.89767863, "usd": 1682847.855500409, "vef": 418166895863.61835, "vnd": 39008413290.49942, "xag": 68990.41773910145, "xau": 851.7734420615304, "xdr": 1193701.2007335243, "xlm": 17400991.55753154, "xrp": 6487883.788110485, "yfi": 407.7979032572963, "zar": 28724277.618358143, "bits": 148517527.76554796, "link": 216572.10389612435, "sats": 14851752776.554796}}, "community_data": {"facebook_likes": null, "twitter_followers": 23699, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1034545, "bing_matches": null}}, "QLC_20200906": {"id": "qlink", "symbol": "qlc", "name": "QLC Chain", "localization": {"en": "QLC Chain", "de": "QLC Chain", "es": "QLC Chain", "fr": "QLC Chain", "it": "QLC Chain", "pl": "QLC Chain", "ro": "QLC Chain", "hu": "QLC Chain", "nl": "QLC Chain", "pt": "QLC Chain", "sv": "QLC Chain", "vi": "QLC Chain", "tr": "QLC Chain", "ru": "QLC Chain", "ja": "QLC Chain", "zh": "QLC Chain", "zh-tw": "QLC Chain", "ko": "\ud050\ub9c1\ud06c", "ar": "QLC Chain", "th": "QLC Chain", "id": "QLC Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2053/thumb/QLC_Chain_logo.jpg?1547036348", "small": "https://assets.coingecko.com/coins/images/2053/small/QLC_Chain_logo.jpg?1547036348"}, "market_data": {"current_price": {"aed": 0.09801548980551472, "ars": 1.9830605329632225, "aud": 0.036386369371732764, "bch": 0.00010103795576990803, "bdt": 2.2627703824610967, "bhd": 0.010058115172013965, "bmd": 0.026683951270149938, "bnb": 0.0010786154094524082, "brl": 0.14250831015336254, "btc": 2.337918975422781e-06, "cad": 0.034810148370205074, "chf": 0.024311054219500666, "clp": 20.583993712381147, "cny": 0.18247286397066617, "czk": 0.5929574231496351, "dkk": 0.16755920360577928, "dot": 0.004331588555949386, "eos": 0.008569419710685337, "eth": 6.051030609449025e-05, "eur": 0.02251525098297075, "gbp": 0.01998497198773004, "hkd": 0.20680729333147935, "huf": 8.06469059237741, "idr": 393.7836238751162, "ils": 0.0897464001464079, "inr": 1.9546727847205216, "jpy": 2.8337288890848495, "krw": 31.744562628533796, "kwd": 0.00815184037722571, "lkr": 4.941222263766597, "ltc": 0.00045861628293848857, "mmk": 35.31158288246856, "mxn": 0.5799436601151845, "myr": 0.11063166196604159, "ngn": 10.33442748741637, "nok": 0.23605802724220779, "nzd": 0.03940918073951779, "php": 1.295791592599929, "pkr": 4.415615667301825, "pln": 0.09936577779163801, "rub": 2.014662336452462, "sar": 0.10007223540151523, "sek": 0.23265550324784826, "sgd": 0.036354215210452304, "thb": 0.8361416130501478, "try": 0.19684217172964186, "twd": 0.7820532438255537, "uah": 0.7381765825964848, "usd": 0.026683951270149938, "vef": 6630.632136793291, "vnd": 618.9252187146074, "xag": 0.0009679672701520192, "xau": 1.3719553545547568e-05, "xdr": 0.018784914647257605, "xlm": 0.28769635495627943, "xrp": 0.09683362065079525, "yfi": 8.387189454516613e-07, "zar": 0.44877736344919944, "bits": 2.337918975422781, "link": 0.0017989218349166332, "sats": 233.7918975422781}, "market_cap": {"aed": 23497975.393083025, "ars": 475405393.3163405, "aud": 8720760.644441301, "bch": 24234.312381596064, "bdt": 542470612.2753704, "bhd": 2411306.0423586383, "bmd": 6397140.202843008, "bnb": 258377.05950367992, "brl": 34164566.96730351, "btc": 560.7439832593169, "cad": 8343617.243782661, "chf": 5828754.295820409, "clp": 4934752206.053834, "cny": 43745563.84910148, "czk": 142138064.56410956, "dkk": 40163869.02093168, "dot": 1038920.6154008376, "eos": 2055205.5706090613, "eth": 14513.24465234261, "eur": 5397075.274932574, "gbp": 4790044.2439446, "hkd": 49579435.85708417, "huf": 1932678607.8334713, "idr": 94395874975.62415, "ils": 21515565.615624007, "inr": 468608105.5966697, "jpy": 679459452.3645664, "krw": 7610357842.312231, "kwd": 1954300.7434077323, "lkr": 1184595612.347884, "ltc": 110046.0775909825, "mmk": 8465505883.911537, "mxn": 138997260.63871983, "myr": 26522543.28098717, "ngn": 2477548429.1590686, "nok": 56583600.6937752, "nzd": 9447360.622960627, "php": 310661504.9289768, "pkr": 1058588071.1451874, "pln": 23813072.93091424, "rub": 482987923.5987703, "sar": 23991054.165637754, "sek": 55767095.30684489, "sgd": 8714824.098333044, "thb": 200486373.95710018, "try": 47199379.844616406, "twd": 187486738.9537632, "uah": 176968509.85512707, "usd": 6397140.202843008, "vef": 1589610286089.5747, "vnd": 148380878883.6682, "xag": 232327.75548833923, "xau": 3291.584519970852, "xdr": 4503445.965717026, "xlm": 69023367.26872754, "xrp": 23218915.0143545, "yfi": 201.16462856569686, "zar": 107589023.07347496, "bits": 560743983.2593169, "link": 431810.32271272485, "sats": 56074398325.931694}, "total_volume": {"aed": 1674308.5475797527, "ars": 33874800.88398817, "aud": 621554.9131608644, "bch": 1725.9385563568744, "bdt": 38652827.22233319, "bhd": 171813.53925241594, "bmd": 455817.4201186305, "bnb": 18424.995918306307, "brl": 2434338.513885554, "btc": 39.93652158313268, "cad": 594629.778154458, "chf": 415283.4002171625, "clp": 351617450.30660015, "cny": 3117016.2639972284, "czk": 10128946.801166117, "dkk": 2862259.9078929243, "dot": 73992.5470781726, "eos": 146383.52262349875, "eth": 1033.641957120251, "eur": 384607.3436605972, "gbp": 341384.91261526797, "hkd": 3532698.9602744123, "huf": 137761698.8824536, "idr": 6726643805.578799, "ils": 1533055.2872591896, "inr": 33389879.06577754, "jpy": 48405986.7469182, "krw": 542263193.8441274, "kwd": 139250.39857656087, "lkr": 84406359.52676034, "ltc": 7834.120546729776, "mmk": 603195323.1678034, "mxn": 9906644.645374287, "myr": 1889819.023811841, "ngn": 176533528.63774443, "nok": 4032362.3696690984, "nzd": 673190.8221467413, "php": 22134817.09551152, "pkr": 75427905.0103217, "pln": 1697374.276490014, "rub": 34414625.45463468, "sar": 1709442.0426876547, "sek": 3974240.1787949284, "sgd": 621005.6531696226, "thb": 14283038.859417276, "try": 3362473.94473111, "twd": 13359096.94883681, "uah": 12609592.262578966, "usd": 455817.4201186305, "vef": 113264996017.65376, "vnd": 10572530791.436504, "xag": 16534.89542733255, "xau": 234.35852655399347, "xdr": 320885.4357802731, "xlm": 4914452.472426817, "xrp": 1654119.762809161, "yfi": 14.327065060565387, "zar": 7666051.325910161, "bits": 39936521.583132684, "link": 30729.32870717857, "sats": 3993652158.313268}}, "community_data": {"facebook_likes": null, "twitter_followers": 27681, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5620, "reddit_accounts_active_48h": "255.666666666667"}, "developer_data": {"forks": 10, "stars": 41, "subscribers": 18, "total_issues": 557, "closed_issues": 539, "pull_requests_merged": 364, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 98, "deletions": -12}, "commit_count_4_weeks": 12}, "public_interest_stats": {"alexa_rank": 940522, "bing_matches": null}}, "STPT_20200908": {"id": "stp-network", "symbol": "stpt", "name": "STP Network", "localization": {"en": "STP Network", "de": "STP Network", "es": "STP Network", "fr": "STP Network", "it": "STP Network", "pl": "STP Network", "ro": "STP Network", "hu": "STP Network", "nl": "STP Network", "pt": "STP Network", "sv": "STP Network", "vi": "STP Network", "tr": "STP Network", "ru": "STP Network", "ja": "STP Network", "zh": "STP Network", "zh-tw": "STP Network", "ko": "STP Network", "ar": "STP Network", "th": "STP Network", "id": "STP Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8713/thumb/STP.png?1560262664", "small": "https://assets.coingecko.com/coins/images/8713/small/STP.png?1560262664"}, "market_data": {"current_price": {"aed": 0.07629175151958757, "ars": 1.5462007675100757, "aud": 0.0285135150528791, "bch": 8.988226093103618e-05, "bdt": 1.7616990530695815, "bhd": 0.007830430503444844, "bmd": 0.020771529722994803, "bnb": 0.0009887819076011565, "brl": 0.11014103635617985, "btc": 1.981023379342919e-06, "cad": 0.02713395313479675, "chf": 0.018971676672497273, "clp": 16.0252465225457, "cny": 0.14212919212959174, "czk": 0.4646134225380021, "dkk": 0.13054719487134703, "dot": 0.004045864462857847, "eos": 0.006905287565020883, "eth": 5.354969011680353e-05, "eur": 0.01754647970361343, "gbp": 0.015642395116965944, "hkd": 0.16099150669809745, "huf": 6.319488659864491, "idr": 306.4623913722308, "ils": 0.07005613829674442, "inr": 1.5214356203964197, "jpy": 2.20688117981915, "krw": 24.664737538975782, "kwd": 0.006357791360673685, "lkr": 3.8436589935490777, "ltc": 0.00041051490431369875, "mmk": 27.645188318112595, "mxn": 0.4478985517983795, "myr": 0.08619146258556684, "ngn": 8.009086430592335, "nok": 0.1851096414324126, "nzd": 0.030902427914791003, "php": 1.0089901215866661, "pkr": 3.447035357530976, "pln": 0.07819697854036968, "rub": 1.565232390817354, "sar": 0.07790102578487644, "sek": 0.18161898586246328, "sgd": 0.02834566032118756, "thb": 0.6520968759302189, "try": 0.15447994370288437, "twd": 0.6093847532483582, "uah": 0.5754799668843472, "usd": 0.020771529722994803, "vef": 5161.468446605815, "vnd": 481.8351711756081, "xag": 0.0007717462461893367, "xau": 1.0742827457435664e-05, "xdr": 0.014679738571953769, "xlm": 0.25527827120800517, "xrp": 0.08131354430650425, "yfi": 7.554893507159228e-07, "zar": 0.3444544851117203, "bits": 1.981023379342919, "link": 0.0016661596854466907, "sats": 198.1023379342919}, "market_cap": {"aed": 62289499.49648257, "ars": 1262417889.3645182, "aud": 23280270.09673861, "bch": 73412.07238725577, "bdt": 1438364568.8218021, "bhd": 6393267.780414533, "bmd": 16959214.65231367, "bnb": 808785.5043444483, "brl": 89926235.69389288, "btc": 1616.7633244465837, "cad": 22153906.896390438, "chf": 15489698.702690614, "clp": 13084043363.991137, "cny": 116043426.25845572, "czk": 379340321.5000205, "dkk": 106587137.7604723, "dot": 3301932.3988997955, "eos": 5650404.415836026, "eth": 43683.369991261345, "eur": 14326076.107751433, "gbp": 12771458.819003152, "hkd": 131443834.69600192, "huf": 5159637547.390587, "idr": 250215633968.90054, "ils": 57198343.257857986, "inr": 1242198028.2662916, "jpy": 1801839928.971195, "krw": 20137880254.596798, "kwd": 5190910.339209457, "lkr": 3138210752.4672103, "ltc": 334366.3543923642, "mmk": 22571312226.05522, "mxn": 365693224.51008886, "myr": 70372261.19977519, "ngn": 6539133985.639104, "nok": 151135433.21702307, "nzd": 25230732.414686568, "php": 823804519.0821493, "pkr": 2814381671.5514326, "pln": 63845049.542036764, "rub": 1277956532.3606958, "sar": 63603414.651670575, "sek": 148285437.19470167, "sgd": 23143222.6831332, "thb": 532330702.7380696, "try": 126127375.29072143, "twd": 497540959.86224973, "uah": 469858908.643289, "usd": 16959214.65231367, "vef": 4214155263212.4224, "vnd": 393401266251.2399, "xag": 630103.3395606448, "xau": 8771.136226030061, "xdr": 11985484.015941678, "xlm": 208326776.0224207, "xrp": 66340634.81956711, "yfi": 616.573982409337, "zar": 281234826.17146224, "bits": 1616763324.4465837, "link": 1356485.0969307213, "sats": 161676332444.6584}, "total_volume": {"aed": 51829831.48107438, "ars": 1050432368.1096727, "aud": 19371041.43879001, "bch": 61062.72754791179, "bdt": 1196834038.0482895, "bhd": 5319708.688476113, "bmd": 14111419.173153205, "bnb": 671742.3393975351, "brl": 74825800.16564481, "btc": 1345.8349804047996, "cad": 18433817.42298591, "chf": 12888664.70179946, "clp": 10886967596.922552, "cny": 96557385.69230066, "czk": 315641401.78125554, "dkk": 88688999.47554216, "dot": 2748612.649840017, "eos": 4691200.342038307, "eth": 36379.70500526641, "eur": 11920437.8980719, "gbp": 10626872.325307291, "hkd": 109371753.77215348, "huf": 4293229946.4017835, "idr": 208199363413.90283, "ils": 47593583.44529372, "inr": 1033607831.0406127, "jpy": 1499274526.6755867, "krw": 16756322468.777353, "kwd": 4319251.403357073, "lkr": 2611241634.1000743, "ltc": 278888.8429909179, "mmk": 18781131947.435566, "mxn": 304285928.6612007, "myr": 58555333.85899916, "ngn": 5441081004.784412, "nok": 125756734.24538928, "nzd": 20993981.64647518, "php": 685471062.4185754, "pkr": 2341790011.7847667, "pln": 53124173.18189341, "rub": 1063361758.3672062, "sar": 52923113.681514315, "sek": 123385310.25334087, "sgd": 19257007.060451742, "thb": 443010817.23259175, "try": 104948035.53265752, "twd": 413993759.99238086, "uah": 390960085.59578055, "usd": 14111419.173153205, "vef": 3506513279011.271, "vnd": 327341229245.1377, "xag": 524296.2324161003, "xau": 7298.284882163094, "xdr": 9972878.603727518, "xlm": 173426740.29569107, "xrp": 55241454.21478421, "yfi": 513.2518909766964, "zar": 234009805.26259148, "bits": 1345834980.4047995, "link": 1131928.0786873815, "sats": 134583498040.47997}}, "community_data": {"facebook_likes": null, "twitter_followers": 14385, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 980559, "bing_matches": null}}, "RDN_20201017": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 0.7451013940417748, "ars": 15.69105520498565, "aud": 0.2831452237209558, "bch": 0.0008007277690302621, "bdt": 17.20231686444127, "bhd": 0.07647938810649622, "bmd": 0.20284803278933114, "bnb": 0.0066124177734496106, "brl": 1.1298635426365793, "btc": 1.7759169097468863e-05, "cad": 0.2665798419712479, "chf": 0.18566396453961706, "clp": 162.05539826783036, "cny": 1.3685142532132275, "czk": 4.7284687835324455, "dkk": 1.2858743703509197, "dot": 0.04774427356787415, "eos": 0.07689546744893819, "eth": 0.0005326294501100738, "eur": 0.17275207870847714, "gbp": 0.15682769674238345, "hkd": 1.5727517950271666, "huf": 62.50356434337677, "idr": 2979.9140753836496, "ils": 0.6874763248869802, "inr": 14.892808437745217, "jpy": 21.394237125969546, "krw": 233.03790550936822, "kwd": 0.062066021136650204, "lkr": 37.398998900970156, "ltc": 0.004069737793451343, "mmk": 262.615073717884, "mxn": 4.328000923150886, "myr": 0.8401965518134132, "ngn": 77.23269348637585, "nok": 1.8745308418881799, "nzd": 0.3048511803176117, "php": 9.876924682249625, "pkr": 33.24395574443294, "pln": 0.7764278242895297, "rub": 15.63082029304099, "sar": 0.7609349000891782, "sek": 1.791319130421444, "sgd": 0.27594269862070503, "thb": 6.339001024666629, "try": 1.6075503750521765, "twd": 5.852490505672728, "uah": 5.745260572883558, "usd": 0.20284803278933114, "vef": 50405.2294010462, "vnd": 4701.999828345869, "xag": 0.008399511056937379, "xau": 0.00010717272964391572, "xdr": 0.14339875127566418, "xlm": 2.6565069457010377, "xrp": 0.7923603363491386, "yfi": 1.2937680746250963e-05, "zar": 3.341089663269816, "bits": 17.759169097468863, "link": 0.018455185428838363, "sats": 1775.9169097468864}, "market_cap": {"aed": 49756475.34109381, "ars": 1047895861.5108918, "aud": 18906972.9803963, "bch": 53438.039843062616, "bdt": 1148738496.155955, "bhd": 5107150.273576687, "bmd": 13545811.646818524, "bnb": 441585.76639876526, "brl": 75448816.29161443, "btc": 1185.6910173015642, "cad": 17801228.37566656, "chf": 12396747.536442254, "clp": 10821726546.962475, "cny": 91386818.27526116, "czk": 315746110.1273275, "dkk": 85865545.44801791, "dot": 3189619.662495671, "eos": 5136123.028152435, "eth": 35545.35638287857, "eur": 11535708.01911218, "gbp": 10472077.34279233, "hkd": 104980649.82436751, "huf": 4173255597.1485057, "idr": 198975470307.61426, "ils": 45908381.16846552, "inr": 994513849.6825266, "jpy": 1428649662.7666564, "krw": 15562105710.44745, "kwd": 4144652.6270120037, "lkr": 2497435089.3421984, "ltc": 271737.4609148622, "mmk": 17536942682.07322, "mxn": 289121803.78969395, "myr": 56106751.84112228, "ngn": 5157454595.724032, "nok": 125174217.54078983, "nzd": 20361833.78869954, "php": 660387969.5640979, "pkr": 2219969090.7376714, "pln": 51845903.24180392, "rub": 1043796898.9065652, "sar": 50813739.48593964, "sek": 119616289.74723093, "sgd": 18426367.58316724, "thb": 423306613.9630789, "try": 107356232.99611673, "twd": 390796666.0107136, "uah": 383657738.81079566, "usd": 13545811.646818524, "vef": 3365966798358.607, "vnd": 313990740567.3198, "xag": 561085.940715063, "xau": 7159.774204042389, "xdr": 9575899.990050469, "xlm": 177347601.07421044, "xrp": 52917788.88320619, "yfi": 862.392126177885, "zar": 223076489.94330168, "bits": 1185691017.3015642, "link": 1231654.947783091, "sats": 118569101730.15642}, "total_volume": {"aed": 4050616.6167339003, "ars": 85301744.77681942, "aud": 1539270.705066804, "bch": 4353.019914672711, "bdt": 93517460.9719237, "bhd": 415767.14629585843, "bmd": 1102748.725017391, "bnb": 35947.28116750763, "brl": 6142310.398346894, "btc": 96.54469313952382, "cad": 1449215.833186984, "chf": 1009330.4695262748, "clp": 880986526.5374887, "cny": 7439694.273329855, "czk": 25705513.879645504, "dkk": 6990436.648255221, "dot": 259553.5982275687, "eos": 418029.09065920586, "eth": 2895.5491406002448, "eur": 939137.2049327395, "gbp": 852567.0190239741, "hkd": 8549996.827113621, "huf": 339789964.63960963, "idr": 16199794506.774878, "ils": 3737347.7589309523, "inr": 80962212.40512595, "jpy": 116306120.34519814, "krw": 1266870817.7617342, "kwd": 337411.33563974715, "lkr": 203313277.37254137, "ltc": 22124.435229522234, "mmk": 1427662046.954671, "mxn": 23528438.67524927, "myr": 4567585.219022053, "ngn": 419862362.4820253, "nok": 10190567.132809231, "nzd": 1657271.435136019, "php": 53694216.0625007, "pkr": 180725094.08943167, "pln": 4220917.410584512, "rub": 84974287.95392041, "sar": 4136692.7712138547, "sek": 9738200.859078798, "sgd": 1500115.4060876118, "thb": 34460897.65679364, "try": 8739173.370890355, "twd": 31816066.21746064, "uah": 31233128.980944455, "usd": 1102748.725017391, "vef": 274019430663.84167, "vnd": 25561619920.294895, "xag": 45662.50893064781, "xau": 582.6262613756911, "xdr": 779562.8479303728, "xlm": 14441646.818503132, "xrp": 4307531.794359704, "yfi": 70.3334942490045, "zar": 18163263.974889066, "bits": 96544693.13952382, "link": 100328.4671867985, "sats": 9654469313.952381}}, "community_data": {"facebook_likes": null, "twitter_followers": 26458, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4377, "reddit_accounts_active_48h": "2172.5"}, "developer_data": {"forks": 376, "stars": 1771, "subscribers": 196, "total_issues": 2443, "closed_issues": 2115, "pull_requests_merged": 3641, "pull_request_contributors": 76, "code_additions_deletions_4_weeks": {"additions": 1488, "deletions": -1280}, "commit_count_4_weeks": 92}, "public_interest_stats": {"alexa_rank": 973917, "bing_matches": null}}, "OAX_20201018": {"id": "openanx", "symbol": "oax", "name": "OAX", "localization": {"en": "OAX", "de": "OAX", "es": "OAX", "fr": "OAX", "it": "OAX", "pl": "OAX", "ro": "OAX", "hu": "OAX", "nl": "OAX", "pt": "OAX", "sv": "OAX", "vi": "OAX", "tr": "OAX", "ru": "OAX", "ja": "OAX", "zh": "OAX", "zh-tw": "OAX", "ko": "OAX", "ar": "OAX", "th": "OAX", "id": "OAX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/853/thumb/OAXlogo.png?1598686792", "small": "https://assets.coingecko.com/coins/images/853/small/OAXlogo.png?1598686792"}, "market_data": {"current_price": {"aed": 0.230183701165038, "ars": 4.8509967972820425, "aud": 0.08779153221908968, "bch": 0.00024326968995866635, "bdt": 5.314251334393802, "bhd": 0.023628796837904368, "bmd": 0.06266571413618598, "bnb": 0.0020289993584866246, "brl": 0.3504266734495513, "btc": 5.49e-06, "cad": 0.08241387396049302, "chf": 0.05723579267199951, "clp": 50.05731429820254, "cny": 0.4208065369959019, "czk": 1.4555804082410864, "dkk": 0.3972075063722119, "dot": 0.01495218226538087, "eos": 0.024027628563000693, "eth": 0.00016534588888925486, "eur": 0.05335985558696228, "gbp": 0.04816442922507352, "hkd": 0.4856627311697179, "huf": 19.398237609856153, "idr": 921.4886615453901, "ils": 0.21147422555253845, "inr": 4.593111153191678, "jpy": 6.589658744884533, "krw": 71.89750663656048, "kwd": 0.019175708525672856, "lkr": 11.57704525876424, "ltc": 0.001258699949790469, "mmk": 81.77693895268973, "mxn": 1.336422367465412, "myr": 0.26009404652223966, "nok": 0.5799273183305057, "nzd": 0.09416338203245687, "php": 3.0474697112283486, "pkr": 10.264643975507257, "pln": 0.24096840790216123, "rub": 4.872271807231278, "sar": 0.23506416964767857, "sek": 0.5534278677937334, "sgd": 0.08508788264839817, "thb": 1.9542326139683814, "try": 0.4957641309599005, "twd": 1.80095002122556, "uah": 1.775876027688246, "usd": 0.06266571413618598, "vef": 15571.655555049312, "vnd": 1451.4129026906078, "xag": 0.002591994934529454, "xau": 3.300039172125686e-05, "xdr": 0.04434169533133788, "xlm": 0.845172158618982, "xrp": 0.2510948778766843, "yfi": 4.309556006811892e-06, "zar": 1.0355509261004694, "bits": 5.49, "link": 0.0057269130562379224, "sats": 549.0}, "market_cap": {"aed": 12794849.198643614, "ars": 269625008.63169134, "aud": 4877849.900554668, "bch": 13607.198095358763, "bdt": 295394695.98895687, "bhd": 1313415.722990788, "bmd": 3483297.7236860646, "bnb": 112997.6515447176, "brl": 19479381.129542522, "btc": 305.68908844686905, "cad": 4579972.212415939, "chf": 3181982.020694052, "clp": 2782454989.180132, "cny": 23390692.54432423, "czk": 80909865.36089347, "dkk": 22075556.072257932, "dot": 833008.1812523121, "eos": 1338206.7275326578, "eth": 9217.411649156664, "eur": 2965892.1631074515, "gbp": 2676743.619064272, "hkd": 27007923.06548601, "huf": 1078082644.8937278, "idr": 51210015472.71062, "ils": 11754875.830259899, "inr": 255309529.2950704, "jpy": 366303240.2930536, "krw": 3996535692.703147, "kwd": 1065889.103447933, "lkr": 643514495.1707796, "ltc": 70091.68178492362, "mmk": 4545602475.460041, "mxn": 74284807.25532886, "myr": 14457427.202158976, "nok": 32202268.88051259, "nzd": 5232808.388491427, "php": 169364463.02555, "pkr": 570564167.1397772, "pln": 13391015.604052467, "rub": 270824308.0379564, "sar": 13066131.908662017, "sek": 30757888.129706554, "sgd": 4730060.544734123, "thb": 108600176.90034285, "try": 27560722.414234973, "twd": 100106496.76431116, "uah": 98712749.22921689, "usd": 3483297.7236860646, "vef": 865556438582.1904, "vnd": 80658656596.09308, "xag": 143908.3351627754, "xau": 1833.8865855662332, "xdr": 2464750.119600738, "xlm": 46983253.24161128, "xrp": 13999807.56009871, "yfi": 241.28929463770814, "zar": 57513425.375325255, "bits": 305689088.4468691, "link": 319700.58821656567, "sats": 30568908844.686905}, "total_volume": {"aed": 373668.72176821803, "ars": 7874865.871769297, "aud": 142516.38782565214, "bch": 394.91186227225575, "bdt": 8626890.145685052, "bhd": 38357.80842280462, "bmd": 101728.38989660749, "bnb": 3293.776200994497, "brl": 568865.156301828, "btc": 8.91219175, "cad": 133786.566046675, "chf": 92913.7266404562, "clp": 81260543.44546407, "cny": 683116.3109947081, "czk": 2362916.5220014285, "dkk": 644806.8235571038, "dot": 24272.625761388652, "eos": 39005.25192190148, "eth": 268.41425625778396, "eur": 86621.72399696114, "gbp": 78187.72837580311, "hkd": 788400.6167601508, "huf": 31490129.90730414, "idr": 1495898660.681852, "ils": 343296.6936806871, "inr": 7456227.199691778, "jpy": 10697322.823583841, "krw": 116714820.6724817, "kwd": 31128.8873083618, "lkr": 18793596.94800278, "ltc": 2043.310620810206, "mmk": 132752597.5727532, "mxn": 2169481.3110820972, "myr": 422223.68226586893, "nok": 941425.0386201743, "nzd": 152860.13051033887, "php": 4947110.094496206, "pkr": 16663110.265064294, "pln": 391176.0759410339, "rub": 7909402.660139196, "sar": 381591.43050175614, "sek": 898407.1543845905, "sgd": 138127.41817195306, "thb": 3172403.602876128, "try": 804798.7245695345, "twd": 2923572.2989669875, "uah": 2882868.4304163856, "usd": 101728.38989660749, "vef": 25278247754.381084, "vnd": 2356151201.676282, "xag": 4207.715095000945, "xau": 53.571187403452406, "xdr": 71982.09313533023, "xlm": 1372010.2621810168, "xrp": 407614.88143530843, "yfi": 6.995917939903805, "zar": 1681061.6430414324, "bits": 8912191.75, "link": 9296.784570632222, "sats": 891219175.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 12726, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1273315, "bing_matches": null}}, "GHD_20210706": {"id": "giftedhands", "symbol": "ghd", "name": "Giftedhands", "localization": {"en": "Giftedhands", "de": "Giftedhands", "es": "Giftedhands", "fr": "Giftedhands", "it": "Giftedhands", "pl": "Giftedhands", "ro": "Giftedhands", "hu": "Giftedhands", "nl": "Giftedhands", "pt": "Giftedhands", "sv": "Giftedhands", "vi": "Giftedhands", "tr": "Giftedhands", "ru": "Giftedhands", "ja": "Giftedhands", "zh": "Giftedhands", "zh-tw": "Giftedhands", "ko": "Giftedhands", "ar": "Giftedhands", "th": "Giftedhands", "id": "Giftedhands"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12540/thumb/K-8uHktJ.png?1600644856", "small": "https://assets.coingecko.com/coins/images/12540/small/K-8uHktJ.png?1600644856"}, "market_data": {"current_price": {"aed": 0.003240763207714045, "ars": 0.0845196161891415, "aud": 0.00117174266576916, "bch": 1.7770975966786643e-06, "bdt": 0.07483884390925236, "bhd": 0.0003326610655404168, "bmd": 0.000882296481912836, "bnb": 3.0710506633490915e-06, "brl": 0.004465373078679404, "btc": 2.6089386966815384e-08, "cad": 0.0010875230550881707, "chf": 0.0008126903478617695, "clp": 0.6490605837365591, "cny": 0.0057111051274218, "czk": 0.019014724400296303, "dkk": 0.005528932961318828, "dot": 5.759754649170294e-05, "eos": 0.00022408389643483172, "eth": 4.0981316261792125e-07, "eur": 0.0007436224146646682, "gbp": 0.0006382153362670241, "hkd": 0.0068516762584849705, "huf": 0.26154708680175986, "idr": 12.757610095042743, "ils": 0.0028873858207783165, "inr": 0.06571524715146992, "jpy": 0.09798346256770522, "krw": 0.9976743928525786, "kwd": 0.00026580063814106024, "lkr": 0.1756660315563477, "ltc": 6.4677633009600504e-06, "mmk": 1.4528313561967268, "mxn": 0.017445383647917933, "myr": 0.003673441402444099, "ngn": 0.3630650023071313, "nok": 0.007579544387168591, "nzd": 0.0012559843338621995, "php": 0.043329570521478095, "pkr": 0.13942490155427598, "pln": 0.0033536971573988753, "rub": 0.064580573290092, "sar": 0.003309155301805983, "sek": 0.0075323591713159, "sgd": 0.0011883651314883994, "thb": 0.028345029989343563, "try": 0.007667068198174347, "twd": 0.024628071077522146, "uah": 0.02416522804837196, "usd": 0.000882296481912836, "vef": 8.834434673393215e-05, "vnd": 20.22898322893203, "xag": 3.334457800314299e-05, "xau": 4.935831208764985e-07, "xdr": 0.0006191277341773222, "xlm": 0.003332638239749242, "xrp": 0.0013466740829047436, "yfi": 2.747086079249423e-08, "zar": 0.01257396890529741, "bits": 0.026089386966815384, "link": 4.826118582803504e-05, "sats": 2.6089386966815384}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 391719.26457453886, "ars": 10216100.274443176, "aud": 141631.5064961097, "bch": 214.80229163030248, "bdt": 9045960.787249155, "bhd": 40209.5863208691, "bmd": 106645.41247843456, "bnb": 371.20567909891054, "brl": 539740.9641863542, "btc": 3.1534903418785163, "cad": 131451.66864798078, "chf": 98231.94259718603, "clp": 78453598.18959041, "cny": 690315.7549729084, "czk": 2298357.942487736, "dkk": 668296.1434314214, "dot": 6961.961459980415, "eos": 27085.588637117937, "eth": 49.535155882892525, "eur": 89883.52641754913, "gbp": 77142.7056341631, "hkd": 828179.4790461541, "huf": 31613859.429694746, "idr": 1542044674.002548, "ils": 349005.64396867633, "inr": 7943168.517907727, "jpy": 11843509.518414361, "krw": 120591433.06823958, "kwd": 32127.996963253107, "lkr": 21233198.56513626, "ltc": 781.7749466124571, "mmk": 175607409.09597108, "mxn": 2108667.747312343, "myr": 444018.1748539631, "ngn": 43884587.23487574, "nok": 916158.7449784868, "nzd": 151814.01047955087, "php": 5237355.033716386, "pkr": 16852641.306904633, "pln": 405369.87737177697, "rub": 7806017.6117715025, "sar": 399985.9903682151, "sek": 910455.348319141, "sgd": 143640.70606720357, "thb": 3426135.6322916606, "try": 926737.9698963478, "twd": 2976857.385758032, "uah": 2920912.375471381, "usd": 106645.41247843456, "vef": 10678.40515146564, "vnd": 2445128485.3722434, "xag": 4030.4436750727405, "xau": 59.66064310281073, "xdr": 74835.53878060468, "xlm": 402824.432609008, "xrp": 162775.91035388733, "yfi": 3.3204725853623303, "zar": 1519847.4978492872, "bits": 3153490.3418785166, "link": 5833.451877956875, "sats": 315349034.18785167}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 613224, "bing_matches": null}}, "SNX_20210824": {"id": "havven", "symbol": "snx", "name": "Synthetix Network Token", "localization": {"en": "Synthetix Network Token", "de": "Synthetix Network Token", "es": "Synthetix Network Token", "fr": "Synthetix Network Token", "it": "Synthetix Network Token", "pl": "Synthetix Network Token", "ro": "Synthetix Network Token", "hu": "Synthetix Network Token", "nl": "Synthetix Network Token", "pt": "Synthetix Network Token", "sv": "Synthetix Network Token", "vi": "Synthetix Network Token", "tr": "Synthetix Network Token", "ru": "Synthetix Network Token", "ja": "\u30b7\u30f3\u30bb\u30c6\u30a3\u30af\u30b9", "zh": "Synthetix Network Token", "zh-tw": "Synthetix Network Token", "ko": "\uc2e0\uc138\ud2f1\uc2a4", "ar": "Synthetix Network Token", "th": "Synthetix Network Token", "id": "Synthetix Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3406/thumb/SNX.png?1598631139", "small": "https://assets.coingecko.com/coins/images/3406/small/SNX.png?1598631139"}, "market_data": {"current_price": {"aed": 46.168409104451165, "ars": 1222.1821704016688, "aud": 17.617404348898873, "bch": 0.018148128494117163, "bdt": 1070.1523859930976, "bhd": 4.739147159073264, "bmd": 12.570015275246043, "bnb": 0.027711290512585487, "brl": 67.63211242742261, "btc": 0.00025556748092315953, "cad": 16.11601658439295, "chf": 11.526075506636856, "clp": 9887.955226361773, "cny": 81.72395431201203, "czk": 274.68248779773234, "dkk": 79.89627409099127, "dot": 0.44693093252010313, "eos": 2.305030998614108, "eth": 0.0038365793625934406, "eur": 10.743139535202873, "gbp": 9.225699861190444, "hkd": 97.93066355661587, "huf": 3763.3180182329866, "idr": 181054.72902006132, "ils": 40.71101127255033, "inr": 933.9735039767482, "jpy": 1380.376117463509, "krw": 14770.773549636122, "kwd": 3.785510380201439, "lkr": 2508.7600136877954, "ltc": 0.06860772358750764, "mmk": 20698.85144284345, "mxn": 255.99024658267746, "myr": 53.271724736492594, "ngn": 5175.075288818789, "nok": 113.47723330900958, "nzd": 18.381610997572743, "php": 632.7778748699023, "pkr": 2068.9411625342073, "pln": 49.23800683466616, "rub": 933.6869076284726, "sar": 47.14254757823684, "sek": 110.65050084392756, "sgd": 17.13236516947295, "thb": 419.08647131933094, "try": 106.77096674946742, "twd": 351.74673744720855, "uah": 335.1429791301077, "usd": 12.570015275246043, "vef": 1.2586356295103864, "vnd": 286528.2511983178, "xag": 0.5460485027652408, "xau": 0.007054795373079095, "xdr": 8.873425183101672, "xlm": 32.67620439369237, "xrp": 9.989128303349894, "yfi": 0.0003175437084531897, "zar": 192.26466864252575, "bits": 255.56748092315954, "link": 0.43846346178742257, "sats": 25556.748092315953}, "market_cap": {"aed": 7863433477.55297, "ars": 208162862459.9553, "aud": 3000607771.2424936, "bch": 3095434.9412778574, "bdt": 182269050663.2598, "bhd": 807174627.5986348, "bmd": 2140933180.19902, "bnb": 4724419.926085947, "brl": 11519145392.604576, "btc": 43575.057122596605, "cad": 2744890430.33316, "chf": 1963128679.5834908, "clp": 1684122967625.1045, "cny": 13919277071.0639, "czk": 46784100040.34488, "dkk": 13607985386.662964, "dot": 76351609.14465854, "eos": 393868182.29935044, "eth": 654277.5063971442, "eur": 1829778515.5216115, "gbp": 1571327202.941167, "hkd": 16679614334.292206, "huf": 640970773420.0133, "idr": 30837359247632.59, "ils": 6933925928.037774, "inr": 159074974875.19324, "jpy": 235106558450.3897, "krw": 2515767761388.2617, "kwd": 644750590.9496546, "lkr": 427293637823.8104, "ltc": 11705991.38268394, "mmk": 3525441845187.138, "mxn": 43600425354.72994, "myr": 9073274817.683416, "ngn": 881422190287.9338, "nok": 19327516209.696007, "nzd": 3130767944.8658724, "php": 107775139356.64484, "pkr": 352383404932.84064, "pln": 8386249360.157552, "rub": 159026161598.68497, "sar": 8029349376.218871, "sek": 18846065297.066025, "sgd": 2917995582.6181536, "thb": 71379080468.34225, "try": 18185300525.928482, "twd": 59909733181.509155, "uah": 57081770261.91796, "usd": 2140933180.19902, "vef": 214371639.3333276, "vnd": 48801678170026.62, "xag": 93003336.27042626, "xau": 1201577.3380548977, "xdr": 1511327550.5660925, "xlm": 5583608097.208993, "xrp": 1704925013.2387671, "yfi": 54328.88733282493, "zar": 32746643457.734055, "bits": 43575057122.5966, "link": 74838569.84743261, "sats": 4357505712259.6606}, "total_volume": {"aed": 546329246.7355992, "ars": 14462570348.018515, "aud": 208473790.50023273, "bch": 214754.0615363328, "bdt": 12663541115.510208, "bhd": 56080223.42134436, "bmd": 148746017.24403042, "bnb": 327918.7818137871, "brl": 800317831.0523332, "btc": 3024.232197972856, "cad": 190707268.7085714, "chf": 136392660.5119137, "clp": 117008128184.61911, "cny": 967072231.1120625, "czk": 3250427718.020011, "dkk": 945444560.2047807, "dot": 5288712.443050282, "eos": 27276353.541357785, "eth": 45399.77776719487, "eur": 127127866.08185191, "gbp": 109171395.62616977, "hkd": 1158852702.3350496, "huf": 44532846983.664246, "idr": 2142493008577.84, "ils": 481749675.8889307, "inr": 11052081949.460768, "jpy": 16334542582.125534, "krw": 174788469943.11533, "kwd": 44795458.07710866, "lkr": 29687160443.791473, "ltc": 811862.6280365703, "mmk": 244937786170.55426, "mxn": 3029234953.077273, "myr": 630385621.0801994, "ngn": 61238735299.367256, "nok": 1342821478.9704313, "nzd": 217516953.36460096, "php": 7487913628.267017, "pkr": 24482608103.527054, "pln": 582653024.1465902, "rub": 11048690540.267605, "sar": 557856616.8339589, "sek": 1309371623.3586116, "sgd": 202734127.93283728, "thb": 4959217799.2309475, "try": 1263463545.072519, "twd": 4162359800.539686, "uah": 3965880888.8700385, "usd": 148746017.24403042, "vef": 14893938.706644772, "vnd": 3390603373217.6694, "xag": 6461610.286850322, "xau": 83482.21471803972, "xdr": 105002788.4929058, "xlm": 386670593.1364504, "xrp": 118205349.66166398, "yfi": 3757.62168136164, "zar": 2275144706.7560663, "bits": 3024232197.9728556, "link": 5188513.475902093, "sats": 302423219797.2856}}, "community_data": {"facebook_likes": null, "twitter_followers": 148974, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 3.0, "reddit_subscribers": 7462, "reddit_accounts_active_48h": "111.230769230769"}, "developer_data": {"forks": 296, "stars": 552, "subscribers": 50, "total_issues": 112, "closed_issues": 39, "pull_requests_merged": 1077, "pull_request_contributors": 34, "code_additions_deletions_4_weeks": {"additions": 7592, "deletions": -12889}, "commit_count_4_weeks": 21}, "public_interest_stats": {"alexa_rank": 47795, "bing_matches": null}}, "GRT_20210826": {"id": "the-graph", "symbol": "grt", "name": "The Graph", "localization": {"en": "The Graph", "de": "The Graph", "es": "The Graph", "fr": "The Graph", "it": "The Graph", "pl": "The Graph", "ro": "The Graph", "hu": "The Graph", "nl": "The Graph", "pt": "The Graph", "sv": "The Graph", "vi": "The Graph", "tr": "The Graph", "ru": "The Graph", "ja": "The Graph", "zh": "The Graph", "zh-tw": "The Graph", "ko": "The Graph", "ar": "The Graph", "th": "The Graph", "id": "The Graph"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13397/thumb/Graph_Token.png?1608145566", "small": "https://assets.coingecko.com/coins/images/13397/small/Graph_Token.png?1608145566"}, "market_data": {"current_price": {"aed": 3.9183777794950068, "ars": 103.64899167093783, "aud": 1.494343306651228, "bch": 0.0015882316224083517, "bdt": 90.658799458402, "bhd": 0.40166390530596857, "bmd": 1.066816567304107, "bnb": 0.0023783948050678906, "brl": 5.740006540379756, "btc": 2.1647557728950396e-05, "cad": 1.368168777603037, "chf": 0.9786324430341824, "clp": 839.1902459847491, "cny": 6.935907912327655, "czk": 23.30908854234084, "dkk": 6.782986158304026, "dot": 0.038419504463681003, "eos": 0.19714107581373405, "eth": 0.00032885647150160386, "eur": 0.9121196305124739, "gbp": 0.7829846854900122, "hkd": 8.311407853381208, "huf": 319.4849373665106, "idr": 15418.677628657613, "ils": 3.455124420125429, "inr": 79.26633254560524, "jpy": 117.18979991835631, "krw": 1253.7659740914028, "kwd": 0.3210733813621125, "lkr": 212.53155178824122, "ltc": 0.005748454656939466, "mmk": 1753.519739009647, "mxn": 21.74246841325489, "myr": 4.520635203951156, "ngn": 439.2083807591008, "nok": 9.635545910801898, "nzd": 1.5623165910535766, "php": 53.62727821487562, "pkr": 175.24111843109637, "pln": 4.175534979860229, "rub": 79.19022051761074, "sar": 4.000882172360605, "sek": 9.396840369784773, "sgd": 1.4534308912951155, "thb": 35.56154829453858, "try": 9.062614206964355, "twd": 29.855929519389328, "uah": 28.39189447141515, "usd": 1.066816567304107, "vef": 0.10682034288416029, "vnd": 24317.638338991932, "xag": 0.0463722758659182, "xau": 0.0005998389512980814, "xdr": 0.7524033217716729, "xlm": 2.876876470329194, "xrp": 0.8706943004355793, "yfi": 2.700526426362392e-05, "zar": 16.340749406367202, "bits": 21.647557728950396, "link": 0.03812925280892572, "sats": 2164.7557728950396}, "market_cap": {"aed": 19458688144.803555, "ars": 514719511446.86975, "aud": 7420955133.403372, "bch": 7878824.717931228, "bdt": 450212155518.7804, "bhd": 1994665423.3477376, "bmd": 5297817632.46828, "bnb": 11797681.569960961, "brl": 28504907771.49557, "btc": 107388.01266995264, "cad": 6795134532.115158, "chf": 4860731784.336753, "clp": 4167424016614.894, "cny": 34443761337.49256, "czk": 115736123998.90163, "dkk": 33684843663.823776, "dot": 190281756.62711444, "eos": 978018540.1263571, "eth": 1631120.9851565303, "eur": 4529406269.60218, "gbp": 3888592844.414082, "hkd": 41275562065.44204, "huf": 1586469168121.6309, "idr": 76569247904416.31, "ils": 17158169113.898178, "inr": 393637094784.16156, "jpy": 581893746388.602, "krw": 6226209536017.416, "kwd": 1594452385.9381843, "lkr": 1055432992913.6031, "ltc": 28527467.36802229, "mmk": 8707989805297.362, "mxn": 107998099778.01312, "myr": 22449502217.5844, "ngn": 2181111519287.1873, "nok": 47857030314.62214, "nzd": 7758987685.260643, "php": 266314532368.88168, "pkr": 870248471584.784, "pln": 20735531065.85763, "rub": 393257532639.8841, "sar": 19868405467.045834, "sek": 46669005306.176346, "sgd": 7218806306.001279, "thb": 176629239866.49234, "try": 45022708476.88688, "twd": 148254128626.99203, "uah": 140994322510.33325, "usd": 5297817632.46828, "vef": 530470479.53904945, "vnd": 120761541506482.42, "xag": 230239975.61649168, "xau": 2978803.9202079386, "xdr": 3736439522.009602, "xlm": 14274812556.03944, "xrp": 4319265145.812389, "yfi": 133948.08560552297, "zar": 81208392251.93495, "bits": 107388012669.95265, "link": 189135455.40642542, "sats": 10738801266995.266}, "total_volume": {"aed": 982394543.785346, "ars": 25986316178.91244, "aud": 374653694.3626492, "bch": 398192.86651895964, "bdt": 22729485247.7298, "bhd": 100703008.03383785, "bmd": 267466496.06471476, "bnb": 596298.3180675432, "brl": 1439103482.0762, "btc": 5427.358921461612, "cad": 343019896.9400834, "chf": 245357448.03350943, "clp": 210397252446.5339, "cny": 1738933424.164744, "czk": 5843928965.817153, "dkk": 1700593706.7528462, "dot": 9632330.950213082, "eos": 49426147.28188497, "eth": 82449.12090464974, "eur": 228681714.40336284, "gbp": 196305697.45421693, "hkd": 2083791350.8657846, "huf": 80099540410.04, "idr": 3865687697098.6094, "ils": 866250160.000698, "inr": 19873227386.643974, "jpy": 29381194592.708958, "krw": 314337443055.287, "kwd": 80497786.52162063, "lkr": 53284764412.3557, "ltc": 1441221.5482966017, "mmk": 439633011660.50226, "mxn": 5451154416.346152, "myr": 1133389277.0742295, "ngn": 110115956429.84305, "nok": 2415772103.113788, "nzd": 391695589.6259087, "php": 13445141964.627583, "pkr": 43935508080.52454, "pln": 1046867610.1282415, "rub": 19854144989.482193, "sar": 1003079600.1915029, "sek": 2355925137.286829, "sgd": 364396354.2385674, "thb": 8915799593.375654, "try": 2272129756.335223, "twd": 7485317626.33361, "uah": 7118262655.124144, "usd": 267466496.06471476, "vef": 26781420.250959903, "vnd": 6096787131395.445, "xag": 11626206.904291417, "xau": 150388.38674230746, "xdr": 188638502.8780259, "xlm": 721274952.7076187, "xrp": 218295779.06680292, "yfi": 6770.614207975792, "zar": 4096864560.172056, "bits": 5427358921.461612, "link": 9559560.620754698, "sats": 542735892146.1612}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.545, "reddit_average_comments_48h": 10.636, "reddit_subscribers": 16840, "reddit_accounts_active_48h": "119.416666666667"}, "developer_data": {"forks": 292, "stars": 1217, "subscribers": 68, "total_issues": 991, "closed_issues": 853, "pull_requests_merged": 1403, "pull_request_contributors": 45, "code_additions_deletions_4_weeks": {"additions": 3639, "deletions": -3277}, "commit_count_4_weeks": 39}, "public_interest_stats": {"alexa_rank": 33877, "bing_matches": null}}, "DGB_20210828": {"id": "digibyte", "symbol": "dgb", "name": "DigiByte", "localization": {"en": "DigiByte", "de": "DigiByte", "es": "DigiByte", "fr": "DigiByte", "it": "DigiByte", "pl": "DigiByte", "ro": "DigiByte", "hu": "DigiByte", "nl": "DigiByte", "pt": "DigiByte", "sv": "DigiByte", "vi": "DigiByte", "tr": "DigiByte", "ru": "DigiByte", "ja": "\u30c7\u30b8\u30d0\u30a4\u30c8", "zh": "\u6781\u7279\u5e01", "zh-tw": "\u6975\u7279\u5e63", "ko": "\ub514\uc9c0\ubc14\uc774\ud2b8", "ar": "DigiByte", "th": "DigiByte", "id": "DigiByte"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/63/thumb/digibyte.png?1547033717", "small": "https://assets.coingecko.com/coins/images/63/small/digibyte.png?1547033717"}, "market_data": {"current_price": {"aed": 0.2562829646668372, "ars": 6.7920427079708325, "aud": 0.0962358858746095, "bch": 0.00010896428764991899, "bdt": 5.94983996686549, "bhd": 0.02630179626466065, "bmd": 0.0697710347018505, "bnb": 0.00014720254447235436, "brl": 0.36606078043776374, "btc": 1.4544505141086935e-06, "cad": 0.08789720066221783, "chf": 0.06371386232420938, "clp": 54.600746046643806, "cny": 0.45151627396955585, "czk": 1.5159221085285042, "dkk": 0.44149017628290005, "dot": 0.002763799518136895, "eos": 0.013671112258653861, "eth": 2.1941558117947473e-05, "eur": 0.05936119632433439, "gbp": 0.05083496657066414, "hkd": 0.5433593754993368, "huf": 20.671665947207472, "idr": 1005.17036563915, "ils": 0.22454900495339508, "inr": 5.173177275146647, "jpy": 7.655173270934992, "krw": 81.24008180909274, "kwd": 0.020993336860405033, "lkr": 13.914109038329709, "ltc": 0.00040110147028000906, "mmk": 114.8000822051908, "mxn": 1.410242364251829, "myr": 0.29432910988975625, "ngn": 28.717060172934726, "nok": 0.6163306680208918, "nzd": 0.10055275933368238, "php": 3.4897095156423696, "pkr": 11.526631025999551, "pln": 0.27157489165554605, "rub": 5.148851185271642, "sar": 0.26165993922717085, "sek": 0.6063100822459775, "sgd": 0.0944888191656752, "thb": 2.2932579511901467, "try": 0.5872837303958863, "twd": 1.9470793341141381, "uah": 1.8611254660814707, "usd": 0.0697710347018505, "vef": 0.006986173704696289, "vnd": 1589.8524603667995, "xag": 0.0029283593997610157, "xau": 3.872711052160916e-05, "xdr": 0.04921558085523418, "xlm": 0.19739061269437796, "xrp": 0.06074248500305816, "yfi": 1.8654317330444245e-06, "zar": 1.0477725594281007, "bits": 1.4544505141086934, "link": 0.002695884591316897, "sats": 145.44505141086933}, "market_cap": {"aed": 3762651078.6518645, "ars": 99742827989.23479, "aud": 1412228499.0849333, "bch": 1594780.7680227358, "bdt": 87353335397.2054, "bhd": 386153181.169723, "bmd": 1024352357.2503148, "bnb": 2155229.5174932852, "brl": 5374571948.020954, "btc": 21316.350230798413, "cad": 1290265010.021282, "chf": 935323845.1769751, "clp": 801625757592.0951, "cny": 6628993844.709685, "czk": 22255386619.327602, "dkk": 6481247406.814039, "dot": 40357565.350300655, "eos": 200171923.29809198, "eth": 321585.4294421742, "eur": 871491328.0349219, "gbp": 746392296.4057277, "hkd": 7977318121.987575, "huf": 303477648125.3744, "idr": 14757537105198.129, "ils": 3296744896.003697, "inr": 75950662892.0566, "jpy": 112380800805.61954, "krw": 1193043097817.9558, "kwd": 308216356.4206911, "lkr": 204281768979.88492, "ltc": 5872725.8838588325, "mmk": 1685452069357.0588, "mxn": 20700496567.44834, "myr": 4321230419.060452, "ngn": 421613186720.65753, "nok": 9047732531.686361, "nzd": 1476137842.6537807, "php": 51232206688.78779, "pkr": 169229705609.11148, "pln": 3987253649.559638, "rub": 75587575052.91504, "sar": 3841593817.4157014, "sek": 8900623240.956919, "sgd": 1387587703.1312783, "thb": 33670974158.99644, "try": 8622485967.154533, "twd": 28588240197.556046, "uah": 27324351236.381634, "usd": 1024352357.2503148, "vef": 102568401.5314741, "vnd": 23341621955532.707, "xag": 42980421.54749379, "xau": 568505.3147503521, "xdr": 722564836.2237289, "xlm": 2888228288.1420116, "xrp": 885770792.9790249, "yfi": 27317.958922577178, "zar": 15378188101.04666, "bits": 21316350230.798412, "link": 39402237.24014306, "sats": 2131635023079.8413}, "total_volume": {"aed": 155528322.43206224, "ars": 4121830764.798844, "aud": 58401875.861311115, "bch": 66126.25573934414, "bdt": 3610730155.196961, "bhd": 15961553.49346121, "bmd": 42341370.584793165, "bnb": 89331.59029621135, "brl": 222148277.25154653, "btc": 882.6503502245722, "cad": 53341446.955869555, "chf": 38665504.49747436, "clp": 33135103018.70024, "cny": 274007945.6024308, "czk": 919955108.1501169, "dkk": 267923490.64939612, "dot": 1677244.1475115935, "eos": 8296474.78962526, "eth": 13315.491843424683, "eur": 36024038.09354202, "gbp": 30849795.58396853, "hkd": 329744008.7717233, "huf": 12544842888.11252, "idr": 609999423603.94, "ils": 136270196.84898108, "inr": 3139403293.1262407, "jpy": 4645631668.507634, "krw": 49301496314.57992, "kwd": 12740052.653887793, "lkr": 8443940234.893962, "ltc": 243413.13078994412, "mmk": 69667776099.15227, "mxn": 855822116.0733031, "myr": 178617071.8119499, "ngn": 17427284718.995068, "nok": 374027493.3424998, "nzd": 61021621.14213343, "php": 2117771141.9431436, "pkr": 6995071206.147346, "pln": 164808407.6472432, "rub": 3124640720.223632, "sar": 158791402.4975504, "sek": 367946383.3577413, "sgd": 57341647.94186792, "thb": 1391690479.7642365, "try": 356400018.6233796, "twd": 1181607926.4986515, "uah": 1129445813.7376802, "usd": 42341370.584793165, "vef": 4239641.436655339, "vnd": 964820609113.7479, "xag": 1777109.2414006453, "xau": 23502.00115679531, "xdr": 29867052.37269547, "xlm": 119788808.03139883, "xrp": 36862289.32602476, "yfi": 1132.0591223419544, "zar": 635853064.4830151, "bits": 882650350.2245723, "link": 1636029.1777607095, "sats": 88265035022.45723}}, "community_data": {"facebook_likes": null, "twitter_followers": 224922, "reddit_average_posts_48h": 0.667, "reddit_average_comments_48h": 7.917, "reddit_subscribers": 41179, "reddit_accounts_active_48h": "178.384615384615"}, "developer_data": {"forks": 27, "stars": 53, "subscribers": 33, "total_issues": 12, "closed_issues": 5, "pull_requests_merged": 118, "pull_request_contributors": 32, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 143665, "bing_matches": null}}, "BNT_20190106": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 2.541672577631897, "ars": 26.13856535249552, "aud": 0.99974978507367, "bch": 0.004104603377784003, "bdt": 58.06309641187356, "bhd": 0.2608542327919117, "bmd": 0.691954079483666, "bnb": 0.11412653895031295, "brl": 2.6225751566510347, "btc": 0.00017871927291200133, "cad": 0.9437319506149898, "chf": 0.6837731064019302, "clp": 482.1475666687823, "cny": 4.748258088824865, "czk": 15.748483894993313, "dkk": 4.562159115009967, "eos": 0.24363409226265914, "eth": 0.004509489776016984, "eur": 0.6109670820668173, "gbp": 0.5525668497124769, "hkd": 5.421633201274387, "huf": 197.10058214531287, "idr": 10011.565717255395, "ils": 2.589949521803393, "inr": 48.433325793459204, "jpy": 74.35496354203649, "krw": 777.3389571216501, "kwd": 0.2100032194447361, "lkr": 126.61034059467663, "ltc": 0.020962551156623845, "mmk": 1069.229519029158, "mxn": 13.59134819013657, "myr": 2.8629600038636687, "ngn": 251.87128493205444, "nok": 6.062631782344881, "nzd": 1.0419430689783438, "php": 36.30684923326805, "pkr": 96.55978794347335, "pln": 2.6262003040734534, "rub": 47.788908959236, "sar": 2.5956581429591186, "sek": 6.248321811298802, "sgd": 0.94602231861808, "thb": 22.322438604143, "try": 3.822708615556462, "twd": 21.29418515467328, "uah": 19.06105628499126, "usd": 0.691954079483666, "vef": 171942.03774993762, "vnd": 15984.524241398372, "xag": 0.044624997367582554, "xau": 0.0005378766646050381, "xdr": 0.4964908911111203, "xlm": 5.89590626056329, "xrp": 1.865831659238857, "zar": 10.085687398166892, "bits": 178.71927291200132, "link": 2.0866685134523406, "sats": 17871.927291200132}, "market_cap": {"aed": 158898679.1037267, "ars": 1634114301.2400632, "aud": 62501724.919443175, "bch": 256575.2398546061, "bdt": 3629951948.0653014, "bhd": 16307919.987030584, "bmd": 43259147.61720872, "bnb": 7133254.800756716, "brl": 163956495.38398302, "btc": 11170.50124419148, "cad": 58999637.36494445, "chf": 42747694.714930475, "clp": 30142596710.12637, "cny": 296848596.8640479, "czk": 984553758.3492675, "dkk": 285214178.8898429, "eos": 15227388.369687825, "eth": 281587.15825248737, "eur": 38196053.720943086, "gbp": 34545024.92119826, "hkd": 338946236.3677349, "huf": 12322209567.467562, "idr": 625896735178.308, "ils": 161916826.57383206, "inr": 3027924037.4665303, "jpy": 4648476595.928591, "krw": 48597185408.35109, "kwd": 13128848.48778955, "lkr": 7915345217.325928, "ltc": 1308903.167105915, "mmk": 66845414994.69737, "mxn": 849695312.3142626, "myr": 178984723.2662009, "ngn": 15746329732.663975, "nok": 379019780.3544121, "nzd": 65139537.963697694, "php": 2269808643.471928, "pkr": 6036663767.702658, "pln": 164183130.05834916, "rub": 2987636793.2906265, "sar": 162273714.54167378, "sek": 390628632.1723764, "sgd": 59142825.14355738, "thb": 1395540102.1311584, "try": 238985680.12104088, "twd": 1331256403.1439114, "uah": 1191647064.4809968, "usd": 43259147.61720872, "vef": 10749363596755.58, "vnd": 999310379477.033, "xag": 2789837.368951272, "xau": 33626.63321728489, "xdr": 31039303.598299596, "xlm": 368573318.672604, "xrp": 116633660.1424184, "zar": 630530627.5582457, "bits": 11170501244.19148, "link": 130423165.0338664, "sats": 1117050124419.148}, "total_volume": {"aed": 2834431.7342270105, "ars": 29149301.04463277, "aud": 1114904.62699159, "bch": 4577.386628314682, "bdt": 64751016.51788443, "bhd": 290900.3787268763, "bmd": 771655.8847023887, "bnb": 127272.05170528113, "brl": 2924652.968610514, "btc": 199.30481334135044, "cad": 1052434.4531896228, "chf": 762532.5971775518, "clp": 537683089.3063412, "cny": 5295179.846416261, "czk": 17562451.95025149, "dkk": 5087645.311193204, "eos": 271696.7593411573, "eth": 5028.909324828836, "eur": 681340.5083009353, "gbp": 616213.5232879401, "hkd": 6046116.770614382, "huf": 219803349.09534627, "idr": 11164734524.825039, "ils": 2888269.3936468116, "inr": 54012053.6497437, "jpy": 82919440.57452214, "krw": 866875705.2764779, "kwd": 234192.15941598185, "lkr": 141193783.34608433, "ltc": 23377.094576064992, "mmk": 1192387291.1798198, "mxn": 15156849.454206612, "myr": 3192726.2229561335, "ngn": 280882742.0316695, "nok": 6760947.915967293, "nzd": 1161957.8878730857, "php": 40488805.105043165, "pkr": 107681897.97767474, "pln": 2928695.6737904744, "rub": 53293410.52432028, "sar": 2894635.55469559, "sek": 6968026.40256249, "sgd": 1054988.634167987, "thb": 24893618.840498984, "try": 4263022.194908957, "twd": 23746927.392648984, "uah": 21256578.560722485, "usd": 771655.8847023887, "vef": 191746951411.08945, "vnd": 17825680288.274395, "xag": 49765.0680074306, "xau": 599.8312688557077, "xdr": 553678.5303916582, "xlm": 6575018.337939741, "xrp": 2080744.9835255616, "zar": 11247393.812421218, "bits": 199304813.34135044, "link": 2327018.6354421135, "sats": 19930481334.135044}}, "community_data": {"facebook_likes": null, "twitter_followers": 876, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 5094, "reddit_accounts_active_48h": "1033.12"}, "developer_data": {"forks": 197, "stars": 519, "subscribers": 67, "total_issues": 41, "closed_issues": 25, "pull_requests_merged": 189, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 104000, "bing_matches": null}}, "EVX_20190108": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 0.8960827003747082, "ars": 9.113758193651858, "aud": 0.3425496661858972, "bch": 0.001526987229940609, "bdt": 20.456370279671997, "bhd": 0.0919643754830635, "bmd": 0.24396386737831863, "bnb": 0.04084407877134146, "brl": 0.9063989564706695, "btc": 6.402963870514762e-05, "cad": 0.3263250931497695, "chf": 0.2406666957107009, "clp": 166.18793297965232, "cny": 1.6759341833421002, "czk": 5.472066851618896, "dkk": 1.5986952229301237, "eos": 0.09086881490362674, "eth": 0.0015946731322351658, "eur": 0.21408780821530252, "gbp": 0.1916677727671023, "hkd": 1.9113471171688037, "huf": 68.69229622804502, "idr": 3476.790064975264, "ils": 0.9056682846878716, "inr": 16.9628076988145, "jpy": 26.47739852656894, "krw": 272.4712031260974, "kwd": 0.07400985466335605, "lkr": 44.58439676338774, "ltc": 0.007644835289945547, "mmk": 376.8735850442154, "mxn": 4.738266476185571, "myr": 1.005560022077524, "ngn": 88.92482965939713, "nok": 2.1009636417389883, "nzd": 0.3621255708682006, "php": 12.802134217382463, "pkr": 33.9109775655863, "pln": 0.9188655100936982, "rub": 16.390712429812318, "sar": 0.9152426466631289, "sek": 2.187438586242175, "sgd": 0.3316200849273487, "thb": 7.79928087621748, "try": 1.3015523557045428, "twd": 7.513721169451151, "uah": 6.762922367594371, "usd": 0.24396386737831863, "vef": 60622.00619683443, "vnd": 5667.426884802425, "xag": 0.01554206947930482, "xau": 0.00018986000050982892, "xdr": 0.1749118464278245, "xlm": 2.147159316899676, "xrp": 0.6865342442117651, "zar": 3.4066492332846603, "bits": 64.02963870514762, "link": 0.5712501820236786, "sats": 6402.963870514762}, "market_cap": {"aed": 17280392.136790413, "ars": 175753103.32443047, "aud": 6605855.191204662, "bch": 29446.989781424243, "bdt": 394488254.2429389, "bhd": 1773475.2275630764, "bmd": 4704689.973082161, "bnb": 787652.4090238516, "brl": 17479334.656992197, "btc": 1234.771371815665, "cad": 6292974.489234807, "chf": 4641106.08809596, "clp": 3204829921.4906836, "cny": 32319338.23908526, "czk": 105525372.77548759, "dkk": 30829833.39360744, "eos": 1752348.029800682, "eth": 30752.26990042813, "eur": 4128548.9342885497, "gbp": 3696192.63045227, "hkd": 36859128.8286108, "huf": 1324687793.995817, "idr": 67047712978.88716, "ils": 17465244.11052282, "inr": 327117093.82840276, "jpy": 510600002.7786073, "krw": 5254436040.371225, "kwd": 1427233.5689940928, "lkr": 859782092.5807651, "ltc": 147425.84761003777, "mmk": 7267770410.966287, "mxn": 91374493.36189169, "myr": 19391593.534071185, "ngn": 1714859495.1884475, "nok": 40515764.425769374, "nzd": 6983364.219334743, "php": 246881118.64193222, "pkr": 653951906.2584206, "pln": 17719744.31461663, "rub": 316084595.84152466, "sar": 17649879.668516338, "sek": 42183379.42424818, "sgd": 6395085.080410586, "thb": 150404233.74946383, "try": 25099619.804882728, "twd": 144897394.13597104, "uah": 130418710.74381058, "usd": 4704689.973082161, "vef": 1169057318886.0603, "vnd": 109292768329.3311, "xag": 299719.0494887605, "xau": 3661.33087775173, "xdr": 3373065.1137210387, "xlm": 41406619.010359235, "xrp": 13239381.756118525, "zar": 65695091.08817617, "bits": 1234771371.815665, "link": 11016201.015212331, "sats": 123477137181.5665}, "total_volume": {"aed": 2388791.8266732134, "ars": 24295604.718367875, "aud": 913174.4675712798, "bch": 4070.667375668769, "bdt": 54532924.36852912, "bhd": 245160.1268579173, "bmd": 650362.8427970087, "bnb": 108882.80902664241, "brl": 2416293.0698437323, "btc": 170.69125153262755, "cad": 869922.7370739075, "chf": 641573.1889766076, "clp": 443026492.78632826, "cny": 4467732.584878338, "czk": 14587524.750439415, "dkk": 4261827.708848801, "eos": 242239.56365913042, "eth": 4251.105554103224, "eur": 570718.7587052446, "gbp": 510951.063815042, "hkd": 5095300.210035297, "huf": 183121039.7392475, "idr": 9268483463.410872, "ils": 2414345.233129556, "inr": 45219728.45967603, "jpy": 70583879.3287594, "krw": 726358161.7625985, "kwd": 197296.67344227116, "lkr": 118853809.52115335, "ltc": 20379.726167292836, "mmk": 1004675728.3297554, "mxn": 12631347.783166341, "myr": 2680638.2502013133, "ngn": 237057256.19950968, "nok": 5600783.0230681, "nzd": 965360.2324401538, "php": 34128137.46953112, "pkr": 90400435.14878424, "pln": 2449526.6111106505, "rub": 43694627.59331698, "sar": 2439868.7228951114, "sek": 5831309.335600249, "sgd": 884038.2122139742, "thb": 20791449.7213776, "try": 3469699.4239417342, "twd": 20030200.013883684, "uah": 18028708.365175877, "usd": 650362.8427970087, "vef": 161607129407.78284, "vnd": 15108318702.082804, "xag": 41432.301422877084, "xau": 506.131875149916, "xdr": 466282.84304605756, "xlm": 5723932.204728852, "xrp": 1830174.1464471472, "zar": 9081500.894292517, "bits": 170691251.53262755, "link": 1522848.019756575, "sats": 17069125153.262754}}, "community_data": {"facebook_likes": null, "twitter_followers": 14116, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2331, "reddit_accounts_active_48h": "21.9583333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1339292, "bing_matches": null}}, "BNT_20190126": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 1.9799773043460316, "ars": 20.21493328741079, "aud": 0.7568234493748771, "bch": 0.0042390559999421285, "bdt": 45.240983503731826, "bhd": 0.20324357623642106, "bmd": 0.5390361390702043, "bnb": 0.08359110775848005, "brl": 2.0565037259736934, "btc": 0.00015091829118267194, "cad": 0.7200714263769328, "chf": 0.5375106667966347, "clp": 363.1951888889523, "cny": 3.6697580347899446, "czk": 12.156862639149312, "dkk": 3.542006469830309, "eos": 0.22200359920866916, "eth": 0.004575675138568566, "eur": 0.47434695105652824, "gbp": 0.41598712538781374, "hkd": 4.22939990834839, "huf": 150.9031671327036, "idr": 7662.370465998905, "ils": 1.9836362816580346, "inr": 38.40104235458908, "jpy": 58.950699118288064, "krw": 609.7792419617773, "kwd": 0.16351661278694596, "lkr": 98.1908230930284, "ltc": 0.017151670521381713, "mmk": 830.9512351096963, "mxn": 10.331317032502326, "myr": 2.228914435055289, "ngn": 195.34645854506857, "nok": 4.6379828333299296, "nzd": 0.7984914819611443, "php": 28.460948588209664, "pkr": 75.40148231336977, "pln": 2.0331095575380407, "rub": 35.85215606738174, "sar": 2.0222479793357735, "sek": 4.863891262105847, "sgd": 0.7330341674492922, "thb": 17.135923823692735, "try": 2.879221648169202, "twd": 16.65186559755477, "uah": 15.037086355501048, "usd": 0.5390361390702043, "vef": 133943.81928024677, "vnd": 12481.57361456356, "xag": 0.03515300463356211, "xau": 0.0004196450246275449, "xdr": 0.38642207123209216, "xlm": 5.272656351866119, "xrp": 1.696745486515371, "zar": 7.5285538874072575, "bits": 150.91829118267194, "link": 1.0137581841759682, "sats": 15091.829118267193}, "market_cap": {"aed": 124260144.94693492, "ars": 1268656228.9742734, "aud": 47497004.79502366, "bch": 266036.23780675716, "bdt": 2839250306.2414584, "bhd": 12755235.217715094, "bmd": 33829028.5577909, "bnb": 5246041.5296398215, "brl": 129062818.30225614, "btc": 9471.385705452076, "cad": 45190507.798925, "chf": 33733292.40697229, "clp": 22793537439.196487, "cny": 230308026.42144006, "czk": 762944863.21883, "dkk": 222290546.65324378, "eos": 13932583.649246396, "eth": 287161.9056948793, "eur": 29769240.669598974, "gbp": 26106673.234732583, "hkd": 265430237.2539099, "huf": 9470436544.753555, "idr": 480877867969.6109, "ils": 124489776.39278486, "inr": 2409986760.2627296, "jpy": 3699649688.4498763, "krw": 38268750265.71534, "kwd": 10262035.813005839, "lkr": 6162295842.087189, "ltc": 1076410.856018827, "mmk": 52149143675.4975, "mxn": 648376599.6375875, "myr": 139883033.086465, "ngn": 12259624996.9128, "nok": 291072234.9523723, "nzd": 50112022.53156953, "php": 1786162694.4589088, "pkr": 4732073999.488445, "pln": 127594638.4628477, "rub": 2250022815.8243613, "sar": 126912983.537408, "sek": 305249879.33385754, "sgd": 46004028.2776827, "thb": 1075422618.9653153, "try": 180695252.69332662, "twd": 1045043914.5172223, "uah": 943703004.0762458, "usd": 33829028.5577909, "vef": 8406095545628.914, "vnd": 783323194213.9734, "xag": 2206145.2126237634, "xau": 26336.237022525802, "xdr": 24251218.676394936, "xlm": 330903309.3966, "xrp": 106484978.20135134, "zar": 472479757.8419834, "bits": 9471385705.452076, "link": 63621809.51788937, "sats": 947138570545.2076}, "total_volume": {"aed": 5254947.783176737, "ars": 53651331.57464713, "aud": 2008643.0782913803, "bch": 11250.643065838323, "bdt": 120071581.3508751, "bhd": 539417.4862732858, "bmd": 1430625.8752772429, "bnb": 221854.5159303219, "brl": 5458052.308063982, "btc": 400.5438536848008, "cad": 1911101.575489106, "chf": 1426577.2040502059, "clp": 963936176.7042274, "cny": 9739700.958887454, "czk": 32264853.86259615, "dkk": 9400642.626446754, "eos": 589207.4211952524, "eth": 12144.045223740388, "eur": 1258937.8946110965, "gbp": 1104048.3229724534, "hkd": 11225015.36949893, "huf": 400503713.7838639, "idr": 20336271837.963886, "ils": 5264658.871618104, "inr": 101918073.47992562, "jpy": 156457776.04035977, "krw": 1618381215.1486268, "kwd": 433980.3592653502, "lkr": 260602809.4405025, "ltc": 45521.296020048125, "mmk": 2205381516.8906293, "mxn": 27419774.670182813, "myr": 5915637.994271385, "ngn": 518458184.86383593, "nok": 12309412.61544856, "nzd": 2119231.8890761896, "php": 75536622.74937946, "pkr": 200118885.93932843, "pln": 5395963.145076935, "rub": 95153215.96608971, "sar": 5367136.033690091, "sek": 12908983.62789966, "sgd": 1945505.2665377709, "thb": 45479503.5843816, "try": 7641582.246478615, "twd": 44194791.534001656, "uah": 39909095.64257691, "usd": 1430625.8752772429, "vef": 355492850676.60876, "vnd": 33126651225.970398, "xag": 93297.63698082007, "xau": 1113.7565501620868, "xdr": 1025581.3549652498, "xlm": 13993864.347269954, "xrp": 4503237.947933983, "zar": 19981116.689731143, "bits": 400543853.6848008, "link": 2690559.2861693525, "sats": 40054385368.48008}}, "community_data": {"facebook_likes": null, "twitter_followers": 852, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5092, "reddit_accounts_active_48h": "937.24"}, "developer_data": {"forks": 200, "stars": 522, "subscribers": 67, "total_issues": 41, "closed_issues": 25, "pull_requests_merged": 190, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 105322, "bing_matches": null}}, "BQX_20190129": {"id": "ethos", "symbol": "vgx", "name": "Voyager Token", "localization": {"en": "Voyager Token", "de": "Voyager Token", "es": "Voyager Token", "fr": "Voyager Token", "it": "Voyager Token", "pl": "Voyager Token", "ro": "Voyager Token", "hu": "Voyager Token", "nl": "Voyager Token", "pt": "Voyager Token", "sv": "Voyager Token", "vi": "Voyager Token", "tr": "Voyager Token", "ru": "Voyager Token", "ja": "\u30a4\u30fc\u30bd\u30b9", "zh": "Voyager Token", "zh-tw": "Voyager Token", "ko": "\uc5d0\ud1a0\uc2a4", "ar": "Voyager Token", "th": "Voyager Token", "id": "Voyager Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/794/thumb/Voyager-vgx.png?1575693595", "small": "https://assets.coingecko.com/coins/images/794/small/Voyager-vgx.png?1575693595"}, "market_data": {"current_price": {"aed": 0.6563592160347742, "ars": 6.627183529892795, "aud": 0.24874400540115482, "bch": 0.0014095566879147336, "bdt": 14.968435560533328, "bhd": 0.06737493630550796, "bmd": 0.17869771692532985, "bnb": 0.026764688998272945, "brl": 0.6742622255026542, "btc": 5.011130861846414e-05, "cad": 0.23619299255518725, "chf": 0.17751920548220734, "clp": 119.63428376933987, "cny": 1.2059683473281273, "czk": 4.020457388902075, "dkk": 1.16966590613475, "eos": 0.07354532614040427, "eth": 0.0015517876669211743, "eur": 0.1567180764412314, "gbp": 0.13542874523761514, "hkd": 1.4020176125669057, "huf": 49.75301834635039, "idr": 2508.3904262034666, "ils": 0.6555257698830339, "inr": 12.684857435944531, "jpy": 19.575441400585287, "krw": 199.84104226584384, "kwd": 0.05419723056628359, "lkr": 32.46062594641408, "ltc": 0.005468500137860165, "mmk": 274.7023017681193, "mxn": 3.393233048634808, "myr": 0.7370348021087519, "ngn": 64.64389909773807, "nok": 1.5210347594821025, "nzd": 0.2612921590836513, "php": 9.39994844154184, "pkr": 24.86131986723652, "pln": 0.6715281504336963, "rub": 11.791547549034854, "sar": 0.6702772664152228, "sek": 1.6166067659366914, "sgd": 0.24199244826028218, "thb": 5.634785758947971, "try": 0.9414231750055686, "twd": 5.490129957096908, "uah": 4.96511606477029, "usd": 0.17869771692532985, "vef": 44404.17435262493, "vnd": 4125.06703239016, "xag": 0.01134696907305066, "xau": 0.00013715943262603692, "xdr": 0.12790414177332343, "xlm": 1.7866828394766294, "xrp": 0.5692684916457471, "zar": 2.4325718135182117, "bits": 50.11130861846414, "link": 0.3814604175181347, "sats": 5011.130861846414}, "market_cap": {"aed": 60918788.26926396, "ars": 615090000.134474, "aud": 23086722.983529765, "bch": 130825.44333475667, "bdt": 1389268154.3241112, "bhd": 6253282.317335409, "bmd": 16585503.96738588, "bnb": 2484115.987627277, "brl": 62580423.569740385, "btc": 4650.990075322146, "cad": 21921823.52687644, "chf": 16476122.568720974, "clp": 11103638715.88167, "cny": 111929761.34949872, "czk": 373151448.8358267, "dkk": 108560416.21852463, "eos": 6825975.840497506, "eth": 144026.35326905764, "eur": 14545503.564901406, "gbp": 12569572.964242904, "hkd": 130125717.75211774, "huf": 4617736014.599583, "idr": 232811700571.05127, "ils": 60841433.47876003, "inr": 1177321999.124886, "jpy": 1816859032.1072896, "krw": 18547883299.100323, "kwd": 5030217.4982684925, "lkr": 3012774028.014271, "ltc": 507548.9060110867, "mmk": 25495995104.005535, "mxn": 314936761.13340545, "myr": 68406546.23239592, "ngn": 5999806060.201842, "nok": 141172078.0319963, "nzd": 24251357.07211959, "php": 872439138.2994564, "pkr": 2307458239.4625616, "pln": 62326665.359039344, "rub": 1094411064.7919283, "sar": 62210566.831268, "sek": 150042420.19135332, "sgd": 22460089.472634014, "thb": 522982403.8515961, "try": 87376481.763157, "twd": 509556438.38999647, "uah": 460828227.7338167, "usd": 16585503.96738588, "vef": 4121292776234.477, "vnd": 382860602858.33405, "xag": 1053148.321181548, "xau": 12730.203570167034, "xdr": 11871190.563184226, "xlm": 165827721.9903279, "xrp": 52835620.89740386, "zar": 225774733.76963183, "bits": 4650990075.322146, "link": 35404555.67650796, "sats": 465099007532.21466}, "total_volume": {"aed": 10396934.649438195, "ars": 104976653.61718339, "aud": 3940182.6094848216, "bch": 22327.817467792822, "bdt": 237104686.77101147, "bhd": 1067240.000087566, "bmd": 2830627.5580322277, "bnb": 423961.0195598112, "brl": 10680523.901967196, "btc": 793.778754340516, "cad": 3741370.6523188683, "chf": 2811959.569287006, "clp": 1895044359.5451436, "cny": 19102914.669514194, "czk": 63685298.70852182, "dkk": 18527872.681100003, "eos": 1164980.8991375393, "eth": 24580.800526047366, "eur": 2482463.1990218246, "gbp": 2145233.5542680947, "hkd": 22208396.163431335, "huf": 788103324.7073336, "idr": 39733686523.16167, "ils": 10383732.602507524, "inr": 200932097.20691755, "jpy": 310081095.8446408, "krw": 3165544424.3865323, "kwd": 858501.0320755991, "lkr": 514186436.9385874, "ltc": 86622.7473840539, "mmk": 4351370118.313493, "mxn": 53749869.57614522, "myr": 11674861.089297667, "ngn": 1023979519.1181583, "nok": 24093664.882769812, "nzd": 4138949.276609841, "php": 148898114.42766595, "pkr": 393811059.01123375, "pln": 10637215.300329296, "rub": 186781790.0443152, "sar": 10617400.90742313, "sek": 25607555.26649439, "sgd": 3833235.83908725, "thb": 89256763.47365133, "try": 14912436.648837954, "twd": 86965370.4654241, "uah": 78648986.69992545, "usd": 2830627.5580322277, "vef": 703375967957.8287, "vnd": 65342348080.99384, "xag": 179739.52835523788, "xau": 2172.648182167636, "xdr": 2026041.489054475, "xlm": 28301613.30488125, "xrp": 9017390.41828509, "zar": 38532696.05629223, "bits": 793778754.340516, "link": 6042451.961356073, "sats": 79377875434.0516}}, "community_data": {"facebook_likes": null, "twitter_followers": 60745, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.042, "reddit_subscribers": 5838, "reddit_accounts_active_48h": "873.16"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 333871, "bing_matches": null}}, "GRS_20190202": {"id": "groestlcoin", "symbol": "grs", "name": "Groestlcoin", "localization": {"en": "Groestlcoin", "de": "Groestlcoin", "es": "Groestlcoin", "fr": "Groestlcoin", "it": "Groestlcoin", "pl": "Groestlcoin", "ro": "Groestlcoin", "hu": "Groestlcoin", "nl": "Groestlcoin", "pt": "Groestlcoin", "sv": "Groestlcoin", "vi": "Groestlcoin", "tr": "Groestlcoin", "ru": "Groestlcoin", "ja": "\u30b0\u30ed\u30a4\u30b9\u30c8\u30eb\u30b3\u30a4\u30f3", "zh": "Groestlcoin", "zh-tw": "Groestlcoin", "ko": "\uadf8\ub85c\uc2a4\ud1a8\ucf54\uc778", "ar": "Groestlcoin", "th": "Groestlcoin", "id": "Groestlcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/71/thumb/image001.png?1547033733", "small": "https://assets.coingecko.com/coins/images/71/small/image001.png?1547033733"}, "market_data": {"current_price": {"aed": 0.7146786356062337, "ars": 7.321155069840386, "aud": 0.2717798845498385, "bch": 0.0017723229616621746, "bdt": 16.31577641121529, "bhd": 0.07334191037462318, "bmd": 0.19456668092485294, "bnb": 0.03108240624263352, "brl": 0.723784356273518, "btc": 5.699566127344108e-05, "cad": 0.2582240347564421, "chf": 0.1935311970489713, "clp": 129.83230673320483, "cny": 1.3099980059989422, "czk": 4.38401536793498, "dkk": 1.2700993841417685, "eos": 0.08608685980090769, "eth": 0.0018590369937881146, "eur": 0.1701398069681426, "gbp": 0.1488032356045612, "hkd": 1.5265993635385384, "huf": 53.97863428898202, "idr": 2739.6934341028586, "ils": 0.7157038074480258, "inr": 13.898364978496499, "jpy": 21.28765946163256, "krw": 217.67731128510718, "kwd": 0.0589797762554743, "lkr": 35.21450061444685, "ltc": 0.006308600718841025, "mmk": 294.00416756253946, "mxn": 3.715028966243815, "myr": 0.7985989418560588, "ngn": 70.4948114630496, "nok": 1.6530132274690315, "nzd": 0.2851958408996497, "php": 10.208383359354857, "pkr": 27.15961669070421, "pln": 0.7307048985473346, "rub": 12.852899831882976, "sar": 0.729672722305026, "sek": 1.7638814081603114, "sgd": 0.26309326051326737, "thb": 6.124959115514371, "try": 1.0337909511913401, "twd": 5.991875505761789, "uah": 5.397470793336089, "usd": 0.19456668092485294, "vef": 48347.41580167372, "vnd": 4494.271338338588, "xag": 0.012287148565423739, "xau": 0.00014840573587543182, "xdr": 0.13908404619232226, "xlm": 2.3541988045607902, "xrp": 0.6797144140142741, "zar": 2.6493353055145916, "bits": 56.99566127344108, "link": 0.4290284218906313, "sats": 5699.566127344108}, "market_cap": {"aed": 51263677.9028435, "ars": 525158149.24614084, "aud": 19499851.014250875, "bch": 127001.98594718674, "bdt": 1170325605.116012, "bhd": 5262913.9333231915, "bmd": 13956207.95785541, "bnb": 2228132.730664343, "brl": 51925467.32799686, "btc": 4085.891237406112, "cad": 18522651.289249793, "chf": 13881277.077329697, "clp": 9313141346.377325, "cny": 93965752.55944467, "czk": 314496014.70800567, "dkk": 91107200.17689285, "eos": 6157712.722527902, "eth": 133173.65369491675, "eur": 12204522.428441107, "gbp": 10671726.064637816, "hkd": 109506492.54400328, "huf": 3872480352.9990153, "idr": 196554952467.58658, "ils": 51337213.162573226, "inr": 996925429.3287107, "jpy": 1526846832.3508718, "krw": 15613088129.23953, "kwd": 4232778.311537977, "lkr": 2525925257.968824, "ltc": 452204.90322374424, "mmk": 21088828176.925793, "mxn": 266327363.17535192, "myr": 57283255.56301766, "ngn": 5056571063.717308, "nok": 118576185.49715905, "nzd": 20455837.303156026, "php": 732301812.1084384, "pkr": 1948150920.7504375, "pln": 52417423.65851135, "rub": 921980592.5950286, "sar": 52341362.32514086, "sek": 126529744.6750931, "sgd": 18869449.10079457, "thb": 439173952.0177931, "try": 74154077.99079162, "twd": 429795380.270115, "uah": 387158913.7471237, "usd": 13956207.95785541, "vef": 3467945210072.576, "vnd": 322372695667.8048, "xag": 881158.5447562214, "xau": 10643.981123217594, "xdr": 9976455.69659339, "xlm": 168745607.05828783, "xrp": 48692972.21047941, "zar": 189872841.55824333, "bits": 4085891237.4061117, "link": 30756086.172789983, "sats": 408589123740.6112}, "total_volume": {"aed": 1615274.4751700605, "ars": 16546842.628146853, "aud": 614260.8558679447, "bch": 4005.6997636459723, "bdt": 36875954.96297771, "bhd": 165763.05752843432, "bmd": 439748.12980086124, "bnb": 70250.62024976329, "brl": 1635854.6876447436, "btc": 128.81822998995085, "cad": 583622.724168459, "chf": 437407.790254062, "clp": 293439317.57621795, "cny": 2960780.183136218, "czk": 9908492.810298985, "dkk": 2870603.6726467353, "eos": 194568.4400737624, "eth": 4201.685701595964, "eur": 384539.95084501285, "gbp": 336316.2914347904, "hkd": 3450329.7886370355, "huf": 121999323.6506531, "idr": 6192093415.725937, "ils": 1617591.5080659792, "inr": 31412264.307187118, "jpy": 48113111.615991876, "krw": 491981412.658608, "kwd": 133302.60957905411, "lkr": 79589736.09183997, "ltc": 14258.327040292068, "mmk": 664490868.7588719, "mxn": 8396489.225679478, "myr": 1804946.1987676348, "ngn": 159328212.59110352, "nok": 3736042.9435312455, "nzd": 644582.808662103, "php": 23072385.617249407, "pkr": 61384562.809386164, "pln": 1651496.0888736316, "rub": 29049365.681328125, "sar": 1649163.225045033, "sek": 3986620.6626025005, "sgd": 594627.860864855, "thb": 13843271.126131114, "try": 2336513.2983227866, "twd": 13542483.405347364, "uah": 12199044.953339355, "usd": 439748.12980086124, "vef": 109271975954.10538, "vnd": 10157686847.807865, "xag": 27770.68805689968, "xau": 335.41788600560744, "xdr": 314349.55310684856, "xlm": 5320821.204144788, "xrp": 1536250.4049545361, "zar": 5987871.306009511, "bits": 128818229.98995085, "link": 969664.7198843231, "sats": 12881822998.995085}}, "community_data": {"facebook_likes": null, "twitter_followers": 36404, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 107021, "reddit_accounts_active_48h": "2117.45833333333"}, "developer_data": {"forks": 16, "stars": 17, "subscribers": 14, "total_issues": 16, "closed_issues": 15, "pull_requests_merged": 25, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 15196331, "bing_matches": null}}, "GRS_20190305": {"id": "groestlcoin", "symbol": "grs", "name": "Groestlcoin", "localization": {"en": "Groestlcoin", "de": "Groestlcoin", "es": "Groestlcoin", "fr": "Groestlcoin", "it": "Groestlcoin", "pl": "Groestlcoin", "ro": "Groestlcoin", "hu": "Groestlcoin", "nl": "Groestlcoin", "pt": "Groestlcoin", "sv": "Groestlcoin", "vi": "Groestlcoin", "tr": "Groestlcoin", "ru": "Groestlcoin", "ja": "\u30b0\u30ed\u30a4\u30b9\u30c8\u30eb\u30b3\u30a4\u30f3", "zh": "Groestlcoin", "zh-tw": "Groestlcoin", "ko": "\uadf8\ub85c\uc2a4\ud1a8\ucf54\uc778", "ar": "Groestlcoin", "th": "Groestlcoin", "id": "Groestlcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/71/thumb/image001.png?1547033733", "small": "https://assets.coingecko.com/coins/images/71/small/image001.png?1547033733"}, "market_data": {"current_price": {"aed": 0.8558154316434327, "ars": 9.279294735965092, "aud": 0.3290984302479456, "bch": 0.001778562178479062, "bdt": 19.54069185264811, "bhd": 0.08783280608308518, "bmd": 0.2330017510600145, "bnb": 0.0207729408263099, "brl": 0.8803155657673946, "btc": 6.0940452619879764e-05, "cad": 0.3097872451200916, "chf": 0.2327897194665502, "clp": 153.7305919896122, "cny": 1.5626029433088828, "czk": 5.25418948640333, "dkk": 1.529703096059207, "eos": 0.06711867096039772, "eth": 0.0017250847642550841, "eur": 0.2049541652761651, "gbp": 0.1763695104561229, "hkd": 1.82872589328208, "huf": 64.81409709236452, "idr": 3303.630851612082, "ils": 0.8459128572233848, "inr": 16.54289132350999, "jpy": 26.076253053815087, "krw": 262.7062693810805, "kwd": 0.07077987392650457, "lkr": 41.88206475303763, "ltc": 0.00494506522705621, "mmk": 352.50834148963827, "mxn": 4.489309512160093, "myr": 0.9492456387922357, "ngn": 84.23013300819524, "nok": 1.9998400492430441, "nzd": 0.34280382624704614, "php": 12.089228982246274, "pkr": 32.2998677406945, "pln": 0.8826222831028895, "rub": 15.361339443884631, "sar": 0.873919667700799, "sek": 2.15960235989236, "sgd": 0.31576397303653175, "thb": 7.405611154815954, "try": 1.252174710371622, "twd": 7.188104020201471, "uah": 6.267339350450035, "usd": 0.2330017510600145, "vef": 57898.05575892743, "vnd": 5409.5707960744485, "xag": 0.01531848110179466, "xau": 0.00018011035356939128, "xdr": 0.16678964346129008, "xlm": 2.747574208423566, "xrp": 0.7391131702819221, "zar": 3.3151943494233453, "bits": 60.940452619879764, "link": 0.5430704197429737, "sats": 6094.045261987976}, "market_cap": {"aed": 61637914.01746378, "ars": 668317431.4580717, "aud": 23702471.347065695, "bch": 128148.06706500017, "bdt": 1407368270.916037, "bhd": 6325932.8461342575, "bmd": 16781354.211125433, "bnb": 1492362.6182556518, "brl": 63402473.41276344, "btc": 4393.014240947993, "cad": 22311632.710047618, "chf": 16766083.178793307, "clp": 11072052057.665422, "cny": 112542473.88149188, "czk": 378419537.46087885, "dkk": 110172946.66688079, "eos": 4808001.737010499, "eth": 124240.56057497238, "eur": 14761298.6979612, "gbp": 12702562.163340356, "hkd": 131709297.5937286, "huf": 4668069300.90877, "idr": 236657112201.00192, "ils": 60924706.46349093, "inr": 1191459367.6356974, "jpy": 1878075323.4867349, "krw": 18920746045.51675, "kwd": 5097739.094130404, "lkr": 3016448419.4497967, "ltc": 355898.77006393904, "mmk": 25388510232.227013, "mxn": 323331016.80222446, "myr": 68366985.33581178, "ngn": 6066459547.321844, "nok": 144033356.31283703, "nzd": 24689567.3831183, "php": 870695746.9955846, "pkr": 2326315227.517266, "pln": 63568608.81945391, "rub": 1106361120.4310784, "sar": 62941825.23966829, "sek": 155539827.45477957, "sgd": 22742091.22691719, "thb": 533374366.9078578, "try": 90184675.6660093, "twd": 517704777.4132216, "uah": 451389060.9094047, "usd": 16781354.211125433, "vef": 4169959141533.6396, "vnd": 389610478230.7105, "xag": 1103274.358137484, "xau": 12971.986805199977, "xdr": 12012596.784949915, "xlm": 197975296.68667954, "xrp": 53230909.468766384, "zar": 238768380.07996386, "bits": 4393014240.947993, "link": 39148315.85924631, "sats": 439301424094.7993}, "total_volume": {"aed": 2466447.422702256, "ars": 26742790.25568134, "aud": 948456.8109991645, "bch": 5125.789906360419, "bdt": 56315985.05443092, "bhd": 253132.84872221298, "bmd": 671507.602151445, "bnb": 59867.30838051217, "brl": 2537056.4470684845, "btc": 175.6294835838332, "cad": 892802.2609328527, "chf": 670896.5302334882, "clp": 443049293.55521137, "cny": 4503398.583068456, "czk": 15142496.428515095, "dkk": 4408581.709644667, "eos": 193435.0175102315, "eth": 4971.668789109443, "eur": 590674.8745424645, "gbp": 508294.3219105262, "hkd": 5270360.990865733, "huf": 186793269.6904683, "idr": 9521015277.641268, "ils": 2437908.3496108274, "inr": 47676368.245150514, "jpy": 75151375.82271428, "krw": 757115584.8386867, "kwd": 203986.55033595228, "lkr": 120703491.48672232, "ltc": 14251.6048827792, "mmk": 1015923829.1351707, "mxn": 12938123.649765287, "myr": 2735711.898550962, "ngn": 242749998.17774737, "nok": 5763509.458809733, "nzd": 987955.5596653129, "php": 34840979.21494584, "pkr": 93087741.34824404, "pln": 2543704.372329786, "rub": 44271153.19464046, "sar": 2518623.5633894326, "sek": 6223942.076376902, "sgd": 910027.1024356387, "thb": 21342861.872980405, "try": 3608749.0047220755, "twd": 20716009.526372146, "uah": 18062379.359570105, "usd": 671507.602151445, "vef": 166861340805.52005, "vnd": 15590303066.026281, "xag": 44147.636086300736, "xau": 519.0753764630672, "xdr": 480685.2868480686, "xlm": 7918468.252010864, "xrp": 2130113.2306371746, "zar": 9554341.107393187, "bits": 175629483.58383322, "link": 1565120.9216322717, "sats": 17562948358.38332}}, "community_data": {"facebook_likes": null, "twitter_followers": 36259, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 106999, "reddit_accounts_active_48h": "62.36"}, "developer_data": {"forks": 17, "stars": 18, "subscribers": 14, "total_issues": 17, "closed_issues": 16, "pull_requests_merged": 25, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 1767, "deletions": -1576}, "commit_count_4_weeks": 27}, "public_interest_stats": {"alexa_rank": 15350348, "bing_matches": null}}, "BNT_20190308": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 1.7964466358174496, "ars": 19.473832665741, "aud": 0.6896973436146642, "bch": 0.003968165771613836, "bdt": 41.11362180428987, "bhd": 0.18437539932920788, "bmd": 0.4890710901034973, "bnb": 0.04279615659281839, "brl": 1.8465368077947695, "btc": 0.00013164879885974666, "cad": 0.6511844624822841, "chf": 0.48869646164847885, "clp": 322.8831515413528, "cny": 3.280297615542176, "czk": 11.056919205059867, "dkk": 3.218637488786295, "eos": 0.1512321062890807, "eth": 0.003891003983510151, "eur": 0.43138906759451057, "gbp": 0.371072908194227, "hkd": 3.8389879753219076, "huf": 136.1956255954252, "idr": 6908.71147292118, "ils": 1.7729805158432042, "inr": 34.68003099923907, "jpy": 54.65491699679113, "krw": 552.2590749448697, "kwd": 0.1484633982539976, "lkr": 87.87343827277246, "ltc": 0.010687013183603876, "mmk": 743.1426288575252, "mxn": 9.437653732836196, "myr": 1.9949063043994664, "ngn": 176.31012798231077, "nok": 4.231765858494924, "nzd": 0.7169131716367434, "php": 25.314238927027123, "pkr": 68.28277141431657, "pln": 1.854459759454438, "rub": 32.1450777250146, "sar": 1.8343344840966809, "sek": 4.569656271367817, "sgd": 0.6625137942845317, "thb": 15.591586352499565, "try": 2.630451251562423, "twd": 15.082218323085677, "uah": 13.141340191080973, "usd": 0.4890710901034973, "vef": 121528.12206805378, "vnd": 11341.960503012673, "xag": 0.0324102765236232, "xau": 0.000379929985636001, "xdr": 0.35035487867526244, "xlm": 5.938555522910049, "xrp": 1.6156288189033265, "zar": 6.952832201631723, "bits": 131.64879885974665, "link": 1.2136230416622222, "sats": 13164.879885974666}, "market_cap": {"aed": 116334952.92359623, "ars": 1261093628.523003, "aud": 44663674.612539224, "bch": 256971.9406241421, "bdt": 2662451064.0941925, "bhd": 11939850.02035556, "bmd": 31671445.791426156, "bnb": 2771409.2716541463, "brl": 119578710.73010889, "btc": 8525.361406478722, "cad": 42169643.27080179, "chf": 31647185.463949982, "clp": 20909386054.372437, "cny": 212426721.21225345, "czk": 716028046.4525627, "dkk": 208433712.0126541, "eos": 9793544.442065084, "eth": 251975.06912928802, "eur": 27936052.131893773, "gbp": 24030076.0653288, "hkd": 248606597.31208923, "huf": 8819806486.950712, "idr": 447396882234.2836, "ils": 114815325.28307846, "inr": 2245822221.0700336, "jpy": 3539363245.8063545, "krw": 35763396587.67845, "kwd": 9614247.42733689, "lkr": 5690540481.902927, "ltc": 692073.5360684255, "mmk": 48124704079.68351, "mxn": 611167056.5817295, "myr": 129186877.23985378, "ngn": 11417556207.80913, "nok": 274042252.14164126, "nzd": 46426127.22794049, "php": 1639308808.3756602, "pkr": 4421880861.694806, "pln": 120091788.1519295, "rub": 2081662783.2439122, "sar": 118788508.15761244, "sek": 295923483.9529139, "sgd": 42903312.31256018, "thb": 1009685691.8306708, "try": 170343731.0171375, "twd": 976699849.3674542, "uah": 851011748.4156208, "usd": 31671445.791426156, "vef": 7869962891075.134, "vnd": 734486855814.0391, "xag": 2098836.6247243118, "xau": 24603.645948611505, "xdr": 22688410.278712388, "xlm": 384571165.8880061, "xrp": 104625486.13563344, "zar": 450254068.6350142, "bits": 8525361406.478722, "link": 78592247.94312975, "sats": 852536140647.8722}, "total_volume": {"aed": 6854115.243273919, "ars": 74299948.9425326, "aud": 2631453.104068254, "bch": 15140.035312365397, "bdt": 156863831.24136272, "bhd": 703461.0490681209, "bmd": 1865988.9733922554, "bnb": 163283.33021865593, "brl": 7045227.967939818, "btc": 502.28936447794655, "cad": 2484512.070380534, "chf": 1864559.6258386397, "clp": 1231919883.7592394, "cny": 12515561.24233653, "czk": 42186278.7104521, "dkk": 12280304.816527158, "eos": 577007.0005540329, "eth": 14845.634255581943, "eur": 1645910.5018924256, "gbp": 1415781.8137819078, "hkd": 14647173.746091178, "huf": 519637207.6123788, "idr": 26359316037.452488, "ils": 6764583.226341626, "inr": 132317278.10324512, "jpy": 208528932.7490182, "krw": 2107074748.7545364, "kwd": 566443.3447408988, "lkr": 335270005.0954941, "ltc": 40774.94900563923, "mmk": 2835366839.639657, "mxn": 36008175.81844768, "myr": 7611313.0427978225, "ngn": 672689024.9079081, "nok": 16145768.15051222, "nzd": 2735291.658459585, "php": 96583281.3746024, "pkr": 260524290.04710755, "pln": 7075456.989308742, "rub": 122645484.0563583, "sar": 6998671.543053657, "sek": 17434946.34442744, "sgd": 2527737.704949166, "thb": 59487728.471745364, "try": 10036154.517787227, "twd": 57544299.08996834, "uah": 50139123.7150499, "usd": 1865988.9733922554, "vef": 463675200445.9458, "vnd": 43273817781.36467, "xag": 123657.31657718017, "xau": 1449.57487409004, "xdr": 1336734.788891064, "xlm": 22657808.543299515, "xrp": 6164227.700579029, "zar": 26527653.105289564, "bits": 502289364.4779465, "link": 4630425.431847218, "sats": 50228936447.794655}}, "community_data": {"facebook_likes": null, "twitter_followers": 849, "reddit_average_posts_48h": 0.136, "reddit_average_comments_48h": 0.318, "reddit_subscribers": 5104, "reddit_accounts_active_48h": "172.652173913043"}, "developer_data": {"forks": 207, "stars": 529, "subscribers": 68, "total_issues": 43, "closed_issues": 26, "pull_requests_merged": 193, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 160054, "bing_matches": null}}, "BNT_20190317": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 2.1576075276846423, "ars": 24.229449327289917, "aud": 0.8286290752325606, "bch": 0.004598429339970043, "bdt": 49.391243447484726, "bhd": 0.22143903984698654, "bmd": 0.5873948296271395, "bnb": 0.03924762639898088, "brl": 2.240558838129752, "btc": 0.00015194596850646595, "cad": 0.7810882746966884, "chf": 0.589302688033768, "clp": 392.78801026810294, "cny": 3.9396571223092196, "czk": 13.30202289579612, "dkk": 3.8675162263085645, "eos": 0.1641633706502236, "eth": 0.0044626709233894345, "eur": 0.5183354069027064, "gbp": 0.4422231344589394, "hkd": 4.611020042831564, "huf": 163.08430049767944, "idr": 8379.206891226007, "ils": 2.1147976051065918, "inr": 40.878098462377814, "jpy": 65.30806827226213, "krw": 664.560766217131, "kwd": 0.17856685341699038, "lkr": 104.98022543057104, "ltc": 0.010606165958048058, "mmk": 893.2894833930449, "mxn": 11.33364519987069, "myr": 2.401563760930565, "ngn": 211.16844125095665, "nok": 5.029454861480257, "nzd": 0.8564574926809765, "php": 30.922841605842912, "pkr": 81.82409976706042, "pln": 2.2286934625712953, "rub": 38.400349592044556, "sar": 2.2031417874825094, "sek": 5.45730561924789, "sgd": 0.7945901322504972, "thb": 18.559620734313967, "try": 3.208159656103804, "twd": 18.156948068523374, "uah": 15.664645316496555, "usd": 0.5873948296271395, "vef": 145960.35627860166, "vnd": 13589.728933276047, "xag": 0.03801176441645306, "xau": 0.0004485053221618016, "xdr": 0.4207838105723783, "xlm": 5.463006374529976, "xrp": 1.8754139337468867, "zar": 8.472084911726327, "bits": 151.94596850646596, "link": 1.2183051401992233, "sats": 15194.596850646596}, "market_cap": {"aed": 140368273.68790472, "ars": 1576304277.2333794, "aud": 53908429.27898793, "bch": 299163.4030866841, "bdt": 3213264455.6826844, "bhd": 14406241.798657551, "bmd": 38214363.43265001, "bnb": 2552729.433597928, "brl": 145764867.87750047, "btc": 9883.713185380737, "cad": 50815549.77456632, "chf": 38338483.68507929, "clp": 25553755360.59915, "cny": 256303735.54278338, "czk": 865394640.3512892, "dkk": 251610438.49780288, "eos": 10685390.356233718, "eth": 290334.8805566778, "eur": 33721538.938236766, "gbp": 28769874.582087703, "hkd": 299980842.2281312, "huf": 10609835863.440939, "idr": 545129172522.5665, "ils": 137583172.6665695, "inr": 2659421622.877663, "jpy": 4248771235.5669637, "krw": 43234576408.2097, "kwd": 11617090.054798726, "lkr": 6829737487.461224, "ltc": 689991.8348831945, "mmk": 58115065450.29492, "mxn": 737337162.0575762, "myr": 156239424.8943896, "ngn": 13738063654.037678, "nok": 327203111.5199235, "nzd": 55718872.960973166, "php": 2011758782.8378694, "pkr": 5323260826.168149, "pln": 144992937.73616078, "rub": 2498225795.046065, "sar": 143330612.92684036, "sek": 355037957.05754083, "sgd": 51693945.132429294, "thb": 1207440134.1997268, "try": 208714433.40101838, "twd": 1181243309.1362865, "uah": 1019100644.0219103, "usd": 38214363.43265001, "vef": 9495797069119.893, "vnd": 884112038808.8219, "xag": 2472945.465060825, "xau": 29178.577198999934, "xdr": 27375088.531159427, "xlm": 355586450.69002765, "xrp": 122011114.24534294, "zar": 551171572.372353, "bits": 9883713185.380737, "link": 79247766.1392627, "sats": 988371318538.0737}, "total_volume": {"aed": 8141930.388308989, "ars": 91432054.82859641, "aud": 3126908.0042153317, "bch": 17352.595919875755, "bdt": 186382398.45825207, "bhd": 835620.5772154055, "bmd": 2216588.3979877396, "bnb": 148104.52686442723, "brl": 8454954.7852844, "btc": 573.3820829274824, "cad": 2947508.4222241957, "chf": 2223787.877104402, "clp": 1482221671.8891244, "cny": 14866658.38530375, "czk": 50196406.46020874, "dkk": 14594428.081204895, "eos": 619485.5732537318, "eth": 16840.299052515213, "eur": 1955986.3166247194, "gbp": 1668769.658367057, "hkd": 17400108.094783857, "huf": 615413602.8173176, "idr": 31619707635.52724, "ils": 7980383.209275263, "inr": 154257263.11044237, "jpy": 246446000.41709155, "krw": 2507781154.7809973, "kwd": 673838.4398114738, "lkr": 396152533.1355927, "ltc": 40023.34243334244, "mmk": 3370909999.65111, "mxn": 42768552.24089989, "myr": 9062521.665172892, "ngn": 796863529.0765924, "nok": 18979110.356209185, "nzd": 3231921.0961584006, "php": 116690186.0199095, "pkr": 308770763.8396917, "pln": 8410179.69964509, "rub": 144907249.93005025, "sar": 8313758.104332604, "sek": 20593644.529654313, "sgd": 2998458.923140339, "thb": 70036435.3170198, "try": 12106285.438579675, "twd": 68516912.98866566, "uah": 59111979.39753704, "usd": 2216588.3979877396, "vef": 550794824834.7283, "vnd": 51282091645.95312, "xag": 143440.8880412456, "xau": 1692.4760712835357, "xdr": 1587866.398428902, "xlm": 20615156.85387082, "xrp": 7077046.915116102, "zar": 31970191.385613624, "bits": 573382082.9274825, "link": 4597386.46437969, "sats": 57338208292.748245}}, "community_data": {"facebook_likes": null, "twitter_followers": 846, "reddit_average_posts_48h": 0.292, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5123, "reddit_accounts_active_48h": "191.0"}, "developer_data": {"forks": 209, "stars": 534, "subscribers": 68, "total_issues": 43, "closed_issues": 26, "pull_requests_merged": 194, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 3}, "public_interest_stats": {"alexa_rank": 160054, "bing_matches": null}}, "ONT_20190321": {"id": "ontology", "symbol": "ont", "name": "Ontology", "localization": {"en": "Ontology", "de": "Ontology", "es": "Ontology", "fr": "Ontology", "it": "Ontology", "pl": "Ontology", "ro": "Ontology", "hu": "Ontology", "nl": "Ontology", "pt": "Ontology", "sv": "Ontology", "vi": "Ontology", "tr": "Ontology", "ru": "Ontology", "ja": "\u30aa\u30f3\u30c8\u30ed\u30b8\u30fc", "zh": "\u672c\u4f53", "zh-tw": "\u672c\u9ad4", "ko": "\uc628\ud1a8\ub85c\uc9c0", "ar": "Ontology", "th": "Ontology", "id": "Ontology"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3447/thumb/ONT.png?1583481820", "small": "https://assets.coingecko.com/coins/images/3447/small/ONT.png?1583481820"}, "market_data": {"current_price": {"aed": 4.073484816983467, "ars": 44.38199034997846, "aud": 1.5659242944102079, "bch": 0.007211555142788743, "bdt": 93.11490630102737, "bhd": 0.4178729657501832, "bmd": 1.109031175771672, "bnb": 0.07110269672265657, "brl": 4.230420491573372, "btc": 0.0002785081671788455, "cad": 1.4798523848585674, "chf": 1.1116995047805784, "clp": 743.0446394853761, "cny": 7.445813507895843, "czk": 25.128141141560018, "dkk": 7.311197085718324, "eos": 0.2967668046257898, "eth": 0.008004646757992808, "eur": 0.9796837607102475, "gbp": 0.8340003164297032, "hkd": 8.705575328829019, "huf": 308.06032636624894, "idr": 15813.04412728187, "ils": 3.987540446017046, "inr": 76.48219571595538, "jpy": 123.72407248467572, "krw": 1257.3417818238759, "kwd": 0.33700352144408946, "lkr": 198.09334089551973, "ltc": 0.01833692439771541, "mmk": 1700.3135803487403, "mxn": 21.315634649890328, "myr": 4.533719446554595, "ngn": 400.6264219357588, "nok": 9.465691988328802, "nzd": 1.6204431579799674, "php": 58.386963576208515, "pkr": 154.84254016420462, "pln": 4.211867509033908, "rub": 71.89704938474914, "sar": 4.159199618496513, "sek": 10.245995233289985, "sgd": 1.5004060596391442, "thb": 35.1341076484465, "try": 6.043275013393859, "twd": 34.2733818987432, "uah": 30.14267883630807, "usd": 1.109031175771672, "vef": 275580.5420392668, "vnd": 25724.4254896738, "xag": 0.07260445601052667, "xau": 0.0008524789938804125, "xdr": 0.7944755543563764, "xlm": 10.225134323307053, "xrp": 3.5190468304690077, "zar": 16.01145017393481, "bits": 278.5081671788455, "link": 2.3199393854245676, "sats": 27850.816717884547}, "market_cap": {"aed": 2498767087.3828096, "ars": 27224909811.05297, "aud": 960573136.7627842, "bch": 4425613.381666815, "bdt": 57118775118.460655, "bhd": 256332663.66188192, "bmd": 680304634.8290756, "bnb": 43613676.426073834, "brl": 2595034955.3435793, "btc": 170834.73883794807, "cad": 907774694.0537001, "chf": 681941447.7804744, "clp": 455800272499.16846, "cny": 4567429257.315457, "czk": 15414166217.056793, "dkk": 4484852520.130629, "eos": 182027607.34767613, "eth": 4909148.412796755, "eur": 600960024.9643261, "gbp": 511594527.82854366, "hkd": 5340195455.673412, "huf": 188971123997.5672, "idr": 9700076468149.14, "ils": 2446046879.706731, "inr": 46915896833.346695, "jpy": 75895125213.84921, "krw": 771281692008.2114, "kwd": 206725529.99478143, "lkr": 121514904976.61479, "ltc": 11247124.933460576, "mmk": 1043010543476.5664, "mxn": 13075489096.646587, "myr": 2781085347.181256, "ngn": 245753246285.65527, "nok": 5806468088.729655, "nzd": 994016232.3063467, "php": 35815874974.70754, "pkr": 94983892286.9948, "pln": 2583654139.10752, "rub": 44103265079.94365, "sar": 2551346471.99949, "sek": 6285123626.749032, "sgd": 920382779.8509868, "thb": 21552050831.385094, "try": 3707080640.26959, "twd": 21024062322.466454, "uah": 18490196278.05891, "usd": 680304634.8290756, "vef": 169047294714301.62, "vnd": 15779940430225.84, "xag": 44537204.19431585, "xau": 522929.7636540664, "xdr": 487349150.9478709, "xlm": 6276701924.954446, "xrp": 2158327232.381217, "zar": 9821783193.861506, "bits": 170834738837.94806, "link": 1423032735.6051025, "sats": 17083473883794.807}, "total_volume": {"aed": 212247530.31357583, "ars": 2312508396.474064, "aud": 81591948.68258284, "bch": 375755.60915200773, "bdt": 4851720280.231327, "bhd": 21773127.66589988, "bmd": 57785689.32352398, "bnb": 3704781.6442322307, "brl": 220424609.85267884, "btc": 14511.572599807818, "cad": 77107201.3341841, "chf": 57924721.692036375, "clp": 38716086282.18743, "cny": 387961560.98027486, "czk": 1309293182.1988716, "dkk": 380947418.43880683, "eos": 15462932.646332975, "eth": 417079.3759517873, "eur": 51046086.592032135, "gbp": 43455300.65680461, "hkd": 453601018.91113895, "huf": 16051377726.074354, "idr": 823933244764.2687, "ils": 207769428.31944957, "inr": 3985078595.602131, "jpy": 6446600393.777003, "krw": 65513362622.47609, "kwd": 17559452.986117877, "lkr": 10321585636.294266, "ltc": 955439.161264375, "mmk": 88594256368.16327, "mxn": 1110643838.0825973, "myr": 236227897.95456606, "ngn": 20874502411.229805, "nok": 493206636.94520974, "nzd": 84432635.38403796, "php": 3042232726.605806, "pkr": 8068017487.216398, "pln": 219457913.05598664, "rub": 3746171117.4479465, "sar": 216713670.6700126, "sek": 533864070.09634763, "sgd": 78178143.514417, "thb": 1830650637.7692366, "try": 314882773.40590227, "twd": 1785802817.5711212, "uah": 1570573950.188273, "usd": 57785689.32352398, "vef": 14359029695273.398, "vnd": 1340362373797.2122, "xag": 3783030.2972398405, "xau": 44418.12581231325, "xdr": 41395876.475003526, "xlm": 532777119.5311925, "xrp": 183358729.04467365, "zar": 834271123.8268819, "bits": 14511572599.807817, "link": 120879646.58186617, "sats": 1451157259980.7817}}, "community_data": {"facebook_likes": null, "twitter_followers": 69406, "reddit_average_posts_48h": 0.565, "reddit_average_comments_48h": 1.913, "reddit_subscribers": 11227, "reddit_accounts_active_48h": "320.583333333333"}, "developer_data": {"forks": 212, "stars": 571, "subscribers": 115, "total_issues": 114, "closed_issues": 84, "pull_requests_merged": 552, "pull_request_contributors": 37, "code_additions_deletions_4_weeks": {"additions": 341, "deletions": -876}, "commit_count_4_weeks": 18}, "public_interest_stats": {"alexa_rank": 260077, "bing_matches": null}}, "INJ_20210621": {"id": "injective-protocol", "symbol": "inj", "name": "Injective Protocol", "localization": {"en": "Injective Protocol", "de": "Injective Protocol", "es": "Injective Protocol", "fr": "Injective Protocol", "it": "Injective Protocol", "pl": "Injective Protocol", "ro": "Injective Protocol", "hu": "Injective Protocol", "nl": "Injective Protocol", "pt": "Injective Protocol", "sv": "Injective Protocol", "vi": "Injective Protocol", "tr": "Injective Protocol", "ru": "Injective Protocol", "ja": "Injective Protocol", "zh": "Injective Protocol", "zh-tw": "Injective Protocol", "ko": "Injective Protocol", "ar": "Injective Protocol", "th": "Injective Protocol", "id": "Injective Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12882/thumb/Secondary_Symbol.png?1628233237", "small": "https://assets.coingecko.com/coins/images/12882/small/Secondary_Symbol.png?1628233237"}, "market_data": {"current_price": {"aed": 30.72269189910568, "ars": 797.5186594277505, "aud": 11.068725468795341, "bch": 0.01393498235426187, "bdt": 709.1820878202793, "bhd": 3.152956821607915, "bmd": 8.36401282236353, "bnb": 0.023677641192465376, "brl": 41.890321819525504, "btc": 0.0002191300736767395, "cad": 10.325984402143815, "chf": 7.676206591929285, "clp": 6176.823469315466, "cny": 53.9353366850112, "czk": 179.4206210589312, "dkk": 52.212324951565954, "dot": 0.37084741479195926, "eos": 1.7206554321253758, "eth": 0.0035131007733665977, "eur": 7.020777455130423, "gbp": 6.00092827966116, "hkd": 64.94259502357507, "huf": 2497.8287892706403, "idr": 121817.6647513136, "ils": 27.301559734374322, "inr": 621.0625623455519, "jpy": 922.5171582554086, "krw": 9488.81495224182, "kwd": 2.5198428710191134, "lkr": 1655.970816704968, "ltc": 0.050112620315208425, "mmk": 13766.33209175332, "mxn": 170.85603920908753, "myr": 34.62701308458504, "ngn": 3429.2452571690446, "nok": 71.44783982037335, "nzd": 11.921980236868743, "php": 405.52079767947356, "pkr": 1314.230024630776, "pln": 32.001842200093954, "rub": 605.0108675056665, "sar": 31.361275914080455, "sek": 71.52190315391549, "sgd": 11.227014411458573, "thb": 262.7421222140981, "try": 72.92549323767471, "twd": 231.6831635434818, "uah": 227.0877908905942, "usd": 8.36401282236353, "vef": 0.8374886039032604, "vnd": 192383.5056691317, "xag": 0.3218390166719822, "xau": 0.004710361101170478, "xdr": 5.86275478783572, "xlm": 26.218600743805332, "xrp": 9.899942470408993, "yfi": 0.000229546583107122, "zar": 117.97810611711783, "bits": 219.1300736767395, "link": 0.35679523048165546, "sats": 21913.007367673952}, "market_cap": {"aed": 884131738.2537764, "ars": 22950839105.026474, "aud": 318533659.7820938, "bch": 402851.6938398575, "bdt": 20408706180.503532, "bhd": 90735187.02338871, "bmd": 240697957.70820346, "bnb": 684894.8458616686, "brl": 1205511651.3857675, "btc": 6332.236586391138, "cad": 297159199.74169004, "chf": 220904401.85402727, "clp": 177755441767.50842, "cny": 1552140780.2813537, "czk": 5163332239.777527, "dkk": 1502556278.8995907, "dot": 10752565.491484918, "eos": 49752083.02261636, "eth": 101621.08718653771, "eur": 202042587.79413942, "gbp": 172693563.7169052, "hkd": 1868905550.7722492, "huf": 71882038089.97804, "idr": 3505645405041.131, "ils": 785679052.6123857, "inr": 17872819367.98314, "jpy": 26548021943.384045, "krw": 273067297789.03806, "kwd": 72515555.11466603, "lkr": 47655210730.85079, "ltc": 1449164.6735036483, "mmk": 396164866074.60547, "mxn": 4916862345.043489, "myr": 996489544.9119611, "ngn": 98686162660.36382, "nok": 2056112238.5471244, "nzd": 343088461.9376966, "php": 11669999781.524567, "pkr": 37820659724.67501, "pln": 920942880.4158794, "rub": 17410886770.82293, "sar": 902508786.6268355, "sek": 2058243618.962632, "sgd": 323088868.63172144, "thb": 7561142428.160664, "try": 2098635865.3395183, "twd": 6667333669.215168, "uah": 6535088915.895221, "usd": 240697957.70820346, "vef": 24101086.505322434, "vnd": 5536375648240.485, "xag": 9261821.528613102, "xau": 135553.86884252878, "xdr": 168717233.45556527, "xlm": 758094813.3075371, "xrp": 286352353.2738824, "yfi": 6644.959540519207, "zar": 3395151322.669479, "bits": 6332236586.391135, "link": 10335378.983176226, "sats": 633223658639.1135}, "total_volume": {"aed": 98530069.63878651, "ars": 2557704556.2838626, "aud": 35498266.064529374, "bch": 44690.575496760124, "bdt": 2274402279.884406, "bhd": 10111778.493282288, "bmd": 26824041.609165475, "bnb": 75936.04242874708, "brl": 134345529.99534434, "btc": 702.7672409119222, "cad": 33116237.521552265, "chf": 24618193.37147735, "clp": 19809554728.368702, "cny": 172974832.3167035, "czk": 575415928.579013, "dkk": 167448999.27309093, "dot": 1189336.5895414697, "eos": 5518276.201461522, "eth": 11266.78824188455, "eur": 22516180.998858355, "gbp": 19245445.133327946, "hkd": 208275968.49944735, "huf": 8010731786.161164, "idr": 390678754016.6905, "ils": 87558231.89938954, "inr": 1991796087.364718, "jpy": 2958584493.3245173, "krw": 30431369787.006214, "kwd": 8081332.663676527, "lkr": 5310827593.674766, "ltc": 160715.08270352066, "mmk": 44149700948.26228, "mxn": 547948646.4520602, "myr": 111051532.26194514, "ngn": 10997857059.757835, "nok": 229138796.04564118, "nzd": 38234720.66928835, "php": 1300536833.3787794, "pkr": 4214838213.8358083, "pln": 102632404.44228457, "rub": 1940317049.7989864, "sar": 100578058.39160514, "sek": 229376322.9340907, "sgd": 36005911.051982835, "thb": 842634482.8055652, "try": 233877745.82864937, "twd": 743025979.3979228, "uah": 728288260.808935, "usd": 26824041.609165475, "vef": 2685891.286325739, "vnd": 616988910775.9209, "xag": 1032162.8335599089, "xau": 15106.495513033748, "xdr": 18802311.96594455, "xlm": 84085097.93355308, "xrp": 31749887.810376823, "yfi": 736.1737992610146, "zar": 378364989.9477117, "bits": 702767240.9119221, "link": 1144270.1382286015, "sats": 70276724091.19221}}, "community_data": {"facebook_likes": null, "twitter_followers": 73300, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 1.091, "reddit_subscribers": 3670, "reddit_accounts_active_48h": "26.0833333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 117778, "bing_matches": null}}, "AKRO_20210730": {"id": "akropolis", "symbol": "akro", "name": "Akropolis", "localization": {"en": "Akropolis", "de": "Akropolis", "es": "Akropolis", "fr": "Akropolis", "it": "Akropolis", "pl": "Akropolis", "ro": "Akropolis", "hu": "Akropolis", "nl": "Akropolis", "pt": "Akropolis", "sv": "Akropolis", "vi": "Akropolis", "tr": "Akropolis", "ru": "Akropolis", "ja": "Akropolis", "zh": "Akropolis", "zh-tw": "Akropolis", "ko": "Akropolis", "ar": "Akropolis", "th": "Akropolis", "id": "Akropolis"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3328/thumb/Akropolis.png?1547037929", "small": "https://assets.coingecko.com/coins/images/3328/small/Akropolis.png?1547037929"}, "market_data": {"current_price": {"aed": 0.07134778570551066, "ars": 1.8746735947387385, "aud": 0.026297523747871365, "bch": 4.041986291036635e-05, "bdt": 1.6474799023396887, "bhd": 0.007324003291441048, "bmd": 0.019424797348429026, "bnb": 6.41919567945935e-05, "brl": 0.10056023339308205, "btc": 5.206041914199226e-07, "cad": 0.024358792998916724, "chf": 0.017784858832287868, "clp": 14.76614820035529, "cny": 0.12592707625039581, "czk": 0.4223727935442405, "dkk": 0.12236670514440218, "dot": 0.001394046389097397, "eos": 0.005293091810422022, "eth": 8.718736583055927e-06, "eur": 0.016454027116352316, "gbp": 0.01404743069846342, "hkd": 0.15110532375025304, "huf": 5.947832233713706, "idr": 282.22870811452947, "ils": 0.06324325520701514, "inr": 1.4430634553642363, "jpy": 2.1429242186813404, "krw": 22.389012857463662, "kwd": 0.005844882672547584, "lkr": 3.875623912080148, "ltc": 0.0001485669042573807, "mmk": 31.976261952366443, "mxn": 0.38923797422729034, "myr": 0.08209890599313531, "ngn": 7.996089488844744, "nok": 0.17125484086295484, "nzd": 0.027729539233194905, "php": 0.9778009035226423, "pkr": 3.1468077494187856, "pln": 0.07558384838726939, "rub": 1.4319164188570566, "sar": 0.072853479447177, "sek": 0.16756451786270005, "sgd": 0.02636916240049236, "thb": 0.6390758327633139, "try": 0.16626655290387798, "twd": 0.5451006250961473, "uah": 0.5244835336864714, "usd": 0.019424797348429026, "vef": 0.001945004958498198, "vnd": 446.43839892769773, "xag": 0.0007716679454799022, "xau": 1.0806014764931061e-05, "xdr": 0.01367126949781108, "xlm": 0.07454253331486616, "xrp": 0.03120969615774061, "yfi": 6.502086979120557e-07, "zar": 0.2871155986314473, "bits": 0.5206041914199225, "link": 0.0010792648944173817, "sats": 52.060419141992256}, "market_cap": {"aed": 193967671.0942437, "ars": 5096376872.140898, "aud": 71489598.17894529, "bch": 109360.42009565979, "bdt": 4478875366.229038, "bhd": 19911197.628347248, "bmd": 52808684.472759776, "bnb": 173738.16091660105, "brl": 273385278.64703053, "btc": 1410.5489724471445, "cad": 66226948.727812335, "chf": 48352793.294317365, "clp": 40143582111.58731, "cny": 342348139.70000774, "czk": 1148373375.0411942, "dkk": 332696930.14313436, "dot": 3773851.9667164194, "eos": 14339852.785649918, "eth": 23613.479392240017, "eur": 44733127.63450089, "gbp": 38191557.46280674, "hkd": 410811958.684717, "huf": 16171483464.762129, "idr": 767273219310.0702, "ils": 171934514.90641096, "inr": 3923144284.162321, "jpy": 5826339910.93202, "krw": 60864103458.51662, "kwd": 15890027.540484527, "lkr": 10536357040.794361, "ltc": 401951.2252254166, "mmk": 86931374251.75777, "mxn": 1058229267.4982986, "myr": 223195904.92411882, "ngn": 21738346056.233322, "nok": 465625419.24611664, "nzd": 75385717.3019765, "php": 2658035094.129344, "pkr": 8554981272.375131, "pln": 205500982.1657248, "rub": 3892813299.383284, "sar": 198061083.46246427, "sek": 455525969.57543826, "sgd": 71689426.24099018, "thb": 1737878198.4537776, "try": 452015934.7445882, "twd": 1481917303.6745913, "uah": 1425872555.8260272, "usd": 52808684.472759776, "vef": 5287733.576257441, "vnd": 1213561954316.2864, "xag": 2098706.8957110825, "xau": 29379.583519575273, "xdr": 37167016.175350666, "xlm": 201906820.03208274, "xrp": 84568009.84999971, "yfi": 1762.2078634860898, "zar": 780808085.1404376, "bits": 1410548972.4471445, "link": 2920868.8889690368, "sats": 141054897244.71445}, "total_volume": {"aed": 55794860.761158325, "ars": 1466018197.4363549, "aud": 20564992.471271757, "bch": 31608.838322992448, "bdt": 1288349888.4920545, "bhd": 5727462.174466005, "bmd": 15190434.470422614, "bnb": 50198.913055601755, "brl": 78639360.2099307, "btc": 407.1189888336857, "cad": 19048880.778082296, "chf": 13907982.040257156, "clp": 11547312571.381157, "cny": 98476548.58485582, "czk": 330300807.12486917, "dkk": 95692293.850772, "dot": 1090161.7114695867, "eos": 4139263.995907221, "eth": 6818.1610522952815, "eur": 12867254.993819576, "gbp": 10985266.495975522, "hkd": 118166253.0315071, "huf": 4651279195.6927395, "idr": 220706379551.111, "ils": 49457016.548801884, "inr": 1128493670.3416827, "jpy": 1675793540.3425515, "krw": 17508488071.627502, "kwd": 4570771.351281214, "lkr": 3030786371.2780356, "ltc": 116181.17724032832, "mmk": 25005836770.58406, "mxn": 304388964.0052223, "myr": 64202371.2892412, "ngn": 6253041986.548936, "nok": 133923427.4215869, "nzd": 21684846.490865782, "php": 764652535.8104687, "pkr": 2460843016.8477435, "pln": 59107514.7582958, "rub": 1119776548.3782244, "sar": 56972332.09869883, "sek": 131037548.68089584, "sgd": 20621014.793598663, "thb": 499765294.0769032, "try": 130022523.84958215, "twd": 426275506.3428807, "uah": 410152683.0046633, "usd": 15190434.470422614, "vef": 1521018.203523416, "vnd": 349120411520.7946, "xag": 603453.98453725, "xau": 8450.438695896097, "xdr": 10691103.73245578, "xlm": 58293193.34805549, "xrp": 24406372.731826775, "yfi": 508.4713338608235, "zar": 224527989.05517995, "bits": 407118988.8336857, "link": 843998.6456898978, "sats": 40711898883.368576}}, "community_data": {"facebook_likes": null, "twitter_followers": 43712, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 3, "stars": 7, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 42, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 233466, "bing_matches": null}}, "UFO_20210709": {"id": "unknown-fair-object", "symbol": "ufo", "name": "Unknown Fair Object", "localization": {"en": "Unknown Fair Object", "de": "Unknown Fair Object", "es": "Unknown Fair Object", "fr": "Unknown Fair Object", "it": "Unknown Fair Object", "pl": "Unknown Fair Object", "ro": "Unknown Fair Object", "hu": "Unknown Fair Object", "nl": "Unknown Fair Object", "pt": "Unknown Fair Object", "sv": "Unknown Fair Object", "vi": "Unknown Fair Object", "tr": "Unknown Fair Object", "ru": "Unknown Fair Object", "ja": "Unknown Fair Object", "zh": "Unknown Fair Object", "zh-tw": "Unknown Fair Object", "ko": "Unknown Fair Object", "ar": "Unknown Fair Object", "th": "Unknown Fair Object", "id": "Unknown Fair Object"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/10861/thumb/qzRawLG4_400x400.jpg?1585409160", "small": "https://assets.coingecko.com/coins/images/10861/small/qzRawLG4_400x400.jpg?1585409160"}, "market_data": {"current_price": {"aed": 1.4643984687349325, "ars": 38.22697146170044, "aud": 0.5286011229672759, "bch": 0.0007835012574783996, "bdt": 33.806170477914925, "bhd": 0.15028901577680245, "bmd": 0.3986710412542014, "bnb": 0.001307101371348354, "brl": 2.0300369287768047, "btc": 1.1705173872727499e-05, "cad": 0.4918942841858775, "chf": 0.3676145671404989, "clp": 293.57331159133685, "cny": 2.5769298764589132, "czk": 8.594829377086963, "dkk": 2.4987504852689555, "dot": 0.02595398683483926, "eos": 0.10339802053542575, "eth": 0.00017894508283247915, "eur": 0.33603423927858933, "gbp": 0.28776594030081964, "hkd": 3.0967769807023227, "huf": 118.22031588935647, "idr": 5771.06232543551, "ils": 1.300855634191636, "inr": 29.628450390771405, "jpy": 44.22716996809674, "krw": 450.64623819148613, "kwd": 0.12007014952077565, "lkr": 79.32818013419087, "ltc": 0.00286705889155838, "mmk": 656.1526232150201, "mxn": 7.911387611064883, "myr": 1.656876847452465, "ngn": 164.03826743164683, "nok": 3.4139959401889195, "nzd": 0.5651704202394411, "php": 19.67858638365745, "pkr": 63.004102389972665, "pln": 1.5124183956540003, "rub": 29.28230824591286, "sar": 1.495263979419874, "sek": 3.4092493627717464, "sgd": 0.5360929491745245, "thb": 12.797340424259872, "try": 3.4546041737800364, "twd": 11.156329886907251, "uah": 10.8722213547389, "usd": 0.3986710412542014, "vef": 0.03991893136078324, "vnd": 9178.414746010923, "xag": 0.015071212535288522, "xau": 0.0002224983081239695, "xdr": 0.2793627520932635, "xlm": 1.5450899795557862, "xrp": 0.6025771237788164, "yfi": 1.2156688907357552e-05, "zar": 5.684092237785906, "bits": 11.7051738727275, "link": 0.021506144545208397, "sats": 1170.51738727275}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 648344.4201196254, "ars": 16924521.688879054, "aud": 234031.64907763604, "bch": 346.8855501342227, "bdt": 14967266.398402857, "bhd": 66538.61422590537, "bmd": 176506.70263520238, "bnb": 578.7030639116375, "brl": 898773.8948854764, "btc": 5.182321839948991, "cad": 217780.1474459049, "chf": 162756.83049992003, "clp": 129975974.79783748, "cny": 1140904.024493424, "czk": 3805255.050101543, "dkk": 1106291.0601066567, "dot": 11490.808617659168, "eos": 45778.2025157881, "eth": 79.22573564455304, "eur": 148775.02855737545, "gbp": 127404.83254922368, "hkd": 1371059.9393945935, "huf": 52340591.57263265, "idr": 2555066900.6715326, "ils": 575937.8405646136, "inr": 13117632.186711084, "jpy": 19581035.81689014, "krw": 199518082.1458749, "kwd": 53159.58267285984, "lkr": 35121576.56971489, "ltc": 1269.3550793603697, "mmk": 290503507.81629795, "mxn": 3502669.609774014, "myr": 733561.856151903, "ngn": 72625926.37595135, "nok": 1511504.7341211, "nzd": 250222.2558969578, "php": 8712452.211663527, "pkr": 27894291.821045466, "pln": 669604.6524520352, "rub": 12964382.007215098, "sar": 662009.7455443455, "sek": 1509403.2453195252, "sgd": 237348.56303355662, "thb": 5665865.1545899995, "try": 1529483.5303448215, "twd": 4939327.912189577, "uah": 4813542.352130329, "usd": 176506.70263520238, "vef": 17673.61613486284, "vnd": 4063630298.152823, "xag": 6672.594078941197, "xau": 98.50839074070632, "xdr": 123684.42427107885, "xlm": 684069.594591378, "xrp": 266783.61404681596, "yfi": 5.38222457103789, "zar": 2516561.9634916633, "bits": 5182321.839948991, "link": 9521.581121439867, "sats": 518232183.9948991}}, "community_data": {"facebook_likes": null, "twitter_followers": 1200, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 4514043, "bing_matches": null}}, "CWV_20210712": {"id": "cryptoworld-vip", "symbol": "cwv", "name": "CryptoWorld.VIP", "localization": {"en": "CryptoWorld.VIP", "de": "CryptoWorld.VIP", "es": "CryptoWorld.VIP", "fr": "CryptoWorld.VIP", "it": "CryptoWorld.VIP", "pl": "CryptoWorld.VIP", "ro": "CryptoWorld.VIP", "hu": "CryptoWorld.VIP", "nl": "CryptoWorld.VIP", "pt": "CryptoWorld.VIP", "sv": "CryptoWorld.VIP", "vi": "CryptoWorld.VIP", "tr": "CryptoWorld.VIP", "ru": "CryptoWorld.VIP", "ja": "CryptoWorld.VIP", "zh": "CryptoWorld.VIP", "zh-tw": "CryptoWorld.VIP", "ko": "CryptoWorld.VIP", "ar": "CryptoWorld.VIP", "th": "CryptoWorld.VIP", "id": "CryptoWorld.VIP"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/6570/thumb/s-ZJaJdw_400x400.jpg?1547042779", "small": "https://assets.coingecko.com/coins/images/6570/small/s-ZJaJdw_400x400.jpg?1547042779"}, "market_data": {"current_price": {"aed": 0.0056903065842146515, "ars": 0.14867080061683666, "aud": 0.002084981808821082, "bch": 3.1551608040508745e-06, "bdt": 0.13132842789617047, "bhd": 0.0005839798739658633, "bmd": 0.0015491415071911885, "bnb": 4.994531520251477e-06, "brl": 0.008146625358017006, "btc": 4.718068042953166e-08, "cad": 0.0019420053425563773, "chf": 0.001417464479079934, "clp": 1.1671239504583393, "cny": 0.010054083295821527, "czk": 0.03381884350103866, "dkk": 0.00972714162815333, "dot": 0.00010095903418400627, "eos": 0.00043071298811805865, "eth": 7.278338172186738e-07, "eur": 0.0013078998968423328, "gbp": 0.0011235412134960288, "hkd": 0.01203349885663505, "huf": 0.467763278096379, "idr": 22.552866804141445, "ils": 0.005082872707829912, "inr": 0.11575440950081256, "jpy": 0.1701189746122001, "krw": 1.7762578702244822, "kwd": 0.00046637059988141393, "lkr": 0.3081672298097273, "ltc": 1.173957851616957e-05, "mmk": 2.548964393126887, "mxn": 0.030977874440142255, "myr": 0.006477735212319963, "ngn": 0.6365811566412385, "nok": 0.013619663296706611, "nzd": 0.0022302649467899924, "php": 0.0777912484197832, "pkr": 0.24660044712477588, "pln": 0.005940409283984638, "rub": 0.11576889397390444, "sar": 0.005809807360079379, "sek": 0.013320866431941084, "sgd": 0.002095601173852876, "thb": 0.05041138835626193, "try": 0.013458665667288743, "twd": 0.04339842475320751, "uah": 0.04227958518418579, "usd": 0.0015491415071911885, "vef": 0.0001551155391150535, "vnd": 35.63655056547777, "xag": 5.977206042204951e-05, "xau": 8.591074056430184e-07, "xdr": 0.0010891673125929635, "xlm": 0.006308707093370895, "xrp": 0.002483945622752911, "yfi": 4.6776153084549956e-08, "zar": 0.02218760712129289, "bits": 0.04718068042953166, "link": 8.390220110377136e-05, "sats": 4.718068042953166}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 64455.8838093075, "ars": 1684040.6942182544, "aud": 23617.24157125344, "bch": 35.73949402827341, "bdt": 1487598.2100537142, "bhd": 6614.9228246746125, "bmd": 17547.610750655494, "bnb": 56.57462187438252, "brl": 92279.37541554692, "btc": 0.5344303353084929, "cad": 21997.702384632434, "chf": 16056.063836849735, "clp": 13220378.309754163, "cny": 113885.74853282915, "czk": 383076.6260143347, "dkk": 110182.37792673535, "dot": 1143.5945815145096, "eos": 4878.820834418855, "eth": 8.244401467800055, "eur": 14814.991518898907, "gbp": 12726.703006295624, "hkd": 136307.20816947898, "huf": 5298501.066160422, "idr": 255463381.59126744, "ils": 57575.29015786795, "inr": 1311186.4288467178, "jpy": 1926990.87458323, "krw": 20120228.88470756, "kwd": 5282.72576409558, "lkr": 3490706.6718608746, "ltc": 132.9778804726569, "mmk": 28872917.535448387, "mxn": 350896.08020631835, "myr": 73375.33435386603, "ngn": 7210754.018331194, "nok": 154274.18926946452, "nzd": 25262.909150282154, "php": 881165.8203858526, "pkr": 2793320.453293566, "pln": 67288.8753745578, "rub": 1311350.4990072325, "sar": 65809.50650261306, "sek": 150889.62365548886, "sgd": 23737.530442949166, "thb": 571025.5752424542, "try": 152450.51872698104, "twd": 491587.5413742378, "uah": 478914.09536657034, "usd": 17547.610750655494, "vef": 1757.0422644631321, "vnd": 403666362.8959749, "xag": 677.0568377271813, "xau": 9.731378493991027, "xdr": 12337.339071349328, "xlm": 71460.69994282917, "xrp": 28136.42957181656, "yfi": 0.5298481274502801, "zar": 251325.97083325638, "bits": 534430.3353084929, "link": 950.386494234251, "sats": 53443033.530849285}}, "community_data": {"facebook_likes": null, "twitter_followers": 9027, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 10, "stars": 70, "subscribers": 1, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2844999, "bing_matches": null}}, "QOB_20210713": {"id": "qobit", "symbol": "qob", "name": "Qobit", "localization": {"en": "Qobit", "de": "Qobit", "es": "Qobit", "fr": "Qobit", "it": "Qobit", "pl": "Qobit", "ro": "Qobit", "hu": "Qobit", "nl": "Qobit", "pt": "Qobit", "sv": "Qobit", "vi": "Qobit", "tr": "Qobit", "ru": "Qobit", "ja": "Qobit", "zh": "Qobit", "zh-tw": "Qobit", "ko": "Qobit", "ar": "Qobit", "th": "Qobit", "id": "Qobit"}, "image": {"thumb": "missing_thumb.png", "small": "missing_small.png"}, "market_data": {"current_price": {"aed": 0.002895520306727696, "ars": 0.0756466646265206, "aud": 0.0010520027837698559, "bch": 1.5579212128808368e-06, "bdt": 0.06679712308848458, "bhd": 0.00029714082899381575, "bmd": 0.0007882827797908326, "bnb": 2.4772906206790526e-06, "brl": 0.004145894452031899, "btc": 2.3193931029442148e-08, "cad": 0.000980946973999511, "chf": 0.0007204187269958614, "clp": 0.5902265153789041, "cny": 0.005107205301986827, "czk": 0.017085792767132384, "dkk": 0.004936037579183048, "dot": 5.010078217496422e-05, "eos": 0.0001859048165674812, "eth": 3.651416245830272e-07, "eur": 0.0006636631551337008, "gbp": 0.0005668163093741584, "hkd": 0.00612287219102223, "huf": 0.23601580568327524, "idr": 11.420049701524764, "ils": 0.002586276972215756, "inr": 0.05871969665042615, "jpy": 0.08680137490745483, "krw": 0.9028281505222391, "kwd": 0.00023724158540584827, "lkr": 0.15699222906893248, "ltc": 5.837103318290051e-06, "mmk": 1.2972331421792183, "mxn": 0.015670391621878953, "myr": 0.0033032989887134905, "ngn": 0.3231959397142414, "nok": 0.006832540317467308, "nzd": 0.0011264450563621838, "php": 0.039399532109632235, "pkr": 0.1256522750986588, "pln": 0.0030182559355411203, "rub": 0.058660930169192584, "sar": 0.002956699721550035, "sek": 0.0067536466120175056, "sgd": 0.0010650094496364056, "thb": 0.02562831550466087, "try": 0.006827080670934474, "twd": 0.022048899976973443, "uah": 0.0215414697390976, "usd": 0.0007882827797908326, "vef": 7.893075474045627e-05, "vnd": 18.100389806661873, "xag": 3.0202447729945393e-05, "xau": 4.35865197429745e-07, "xdr": 0.0005536046899848646, "xlm": 0.0031637527896488924, "xrp": 0.0012252659680391292, "yfi": 2.3366295392398757e-08, "zar": 0.011199842906990196, "bits": 0.023193931029442148, "link": 4.204463092734845e-05, "sats": 2.3193931029442147}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 3930.9699504947475, "ars": 102698.21448362287, "aud": 1428.2031872570913, "bch": 2.1150400702918755, "bdt": 90684.04149341902, "bhd": 403.3995780053202, "bmd": 1070.1758549751535, "bnb": 3.3631796557963645, "brl": 5628.482891656314, "btc": 0.031488173541294774, "cad": 1331.737535689632, "chf": 978.0433454444895, "clp": 801293.8781844617, "cny": 6933.562346798524, "czk": 23195.740603829992, "dkk": 6701.184361649222, "dot": 68.01702228386013, "eos": 252.38512259127873, "eth": 0.49571773010041603, "eur": 900.9917540621328, "gbp": 769.512088871595, "hkd": 8312.435778020545, "huf": 320416.0018588372, "idr": 15503905.154988825, "ils": 3511.1399625879994, "inr": 79718.09505140515, "jpy": 117841.89377986031, "krw": 1225683.1084615937, "kwd": 322.0801253133212, "lkr": 213133.278152899, "ltc": 7.9244748133238465, "mmk": 1761128.9027550756, "mxn": 21274.186347429353, "myr": 4484.57192027339, "ngn": 438772.10053981293, "nok": 9275.884065154887, "nzd": 1529.2663142975262, "php": 53488.96239016516, "pkr": 170586.0312830396, "pln": 4097.596331114367, "rub": 79638.31344141653, "sar": 4014.0273687752137, "sek": 9168.777655061413, "sgd": 1445.8610888641826, "thb": 34793.10364238962, "try": 9268.472027183325, "twd": 29933.674804339054, "uah": 29244.78548367786, "usd": 1070.1758549751535, "vef": 107.1567083586624, "vnd": 24573161.603083387, "xag": 41.002963847964786, "xau": 0.5917323354914115, "xdr": 751.575941542212, "xlm": 4295.123442238495, "xrp": 1663.4259792737942, "yfi": 0.03172217608990212, "zar": 15204.951529901518, "bits": 31488.173541294775, "link": 57.07995912549196, "sats": 3148817.3541294774}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 11737, "reddit_accounts_active_48h": "3.07692307692308"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 8252378, "bing_matches": null}}, "NAV_20190801": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.4974139153898281, "ars": 5.85907605990299, "aud": 0.19606425223607404, "bch": 0.00043689240059243366, "bdt": 11.436723613207157, "bhd": 0.05106288662848657, "bmd": 0.1354323900860568, "bnb": 0.0048851784310378595, "brl": 0.5112530741707715, "btc": 1.420672849755681e-05, "cad": 0.17836486404050775, "chf": 0.1345243159105298, "clp": 94.14144540766515, "cny": 0.9316664978800018, "czk": 3.1108853860864834, "dkk": 0.9086190200323275, "eos": 0.03189716389129175, "eth": 0.0006415980576723247, "eur": 0.12167679308979618, "gbp": 0.10941217127599298, "hkd": 1.0588171973122964, "huf": 39.771104248905786, "idr": 1896.600163977943, "ils": 0.47685067387350155, "inr": 9.328583841721938, "jpy": 14.710395346367338, "krw": 160.3994660450884, "kwd": 0.041243632050077195, "lkr": 23.859303203080362, "ltc": 0.001506419578203167, "mmk": 204.48273664630662, "mxn": 2.577901372332062, "myr": 0.5579091262582481, "ngn": 48.937276349544966, "nok": 1.1802526498829597, "nzd": 0.2040256452872825, "php": 6.921469484907896, "pkr": 21.81625386345917, "pln": 0.5196347139284182, "rub": 8.561019958314866, "sar": 0.5079256357787472, "sek": 1.2873665334991928, "sgd": 0.18542075613160033, "thb": 4.18215220585744, "try": 0.7661700132483026, "twd": 4.211537784128748, "uah": 3.437680357554379, "usd": 0.1354323900860568, "vef": 33653.275295547595, "vnd": 3143.911329444536, "xag": 0.008265544404216322, "xau": 9.534846559228654e-05, "xdr": 0.0983362395499751, "xlm": 1.615591184560315, "xrp": 0.4346814863388753, "zar": 1.9308135384442786, "bits": 14.20672849755681, "link": 0.061275789091913106, "sats": 1420.672849755681}, "market_cap": {"aed": 32691114.052361235, "ars": 385071100.3242368, "aud": 12885765.02009837, "bch": 28713.509723956577, "bdt": 751646112.9393121, "bhd": 3355962.9092933545, "bmd": 8900908.425968211, "bnb": 321064.4501773414, "brl": 33600653.379868776, "btc": 933.6968011049289, "cad": 11722523.099725455, "chf": 8841227.834972095, "clp": 6187178592.428771, "cny": 61231129.24392051, "czk": 204454089.06720087, "dkk": 59716399.35071456, "eos": 2096350.3240552908, "eth": 42167.20648577241, "eur": 7996860.958959473, "gbp": 7190803.59281222, "hkd": 69587747.11964075, "huf": 2613842646.461506, "idr": 124648648447.51762, "ils": 31339653.52241277, "inr": 613094625.7861413, "jpy": 966798871.4118167, "krw": 10541798442.265812, "kwd": 2710620.345685381, "lkr": 1568084804.4037616, "ltc": 99005.13982033385, "mmk": 13439045950.703728, "mxn": 169425231.52493486, "myr": 36666989.62988957, "ngn": 3216263222.755047, "nok": 77568746.65978523, "nzd": 13409004.921918888, "php": 454893884.8317735, "pkr": 1433811200.6510117, "pln": 34151512.80053515, "rub": 562648673.8765156, "sar": 33381966.960751165, "sek": 84608501.8366088, "sgd": 12186251.527809914, "thb": 274860052.1938988, "try": 50354343.76010539, "twd": 276791335.70053136, "uah": 225931758.57635108, "usd": 8900908.425968211, "vef": 2211765748571.889, "vnd": 206624625209.43726, "xag": 543229.3839454127, "xau": 6266.506559134398, "xdr": 6462869.4999196865, "xlm": 106180132.96845274, "xrp": 28568203.676443964, "zar": 126897225.12016372, "bits": 933696801.1049289, "link": 4027176.859904004, "sats": 93369680110.49289}, "total_volume": {"aed": 729736.2388854236, "ars": 8595618.24671998, "aud": 287638.09290398774, "bch": 640.9475234646119, "bdt": 16778363.886609856, "bhd": 74912.33695322264, "bmd": 198687.49125606718, "bnb": 7166.851638551209, "brl": 750039.1201794243, "btc": 20.842128255597, "cad": 261672.02204671525, "chf": 197355.29162719526, "clp": 138111182.99975058, "cny": 1366810.9898487371, "czk": 4563856.641339155, "dkk": 1332998.9486492544, "eos": 46795.06481217188, "eth": 941.2630788888656, "eur": 178507.20014417096, "gbp": 160514.2596235128, "hkd": 1553348.7410144962, "huf": 58346610.6053174, "idr": 2782426923.553342, "ils": 699568.7223380496, "inr": 13685595.589842863, "jpy": 21581037.925251536, "krw": 235315698.7561161, "kwd": 60506.897774683996, "lkr": 35003037.99944486, "ltc": 2210.0084520551095, "mmk": 299988517.69221294, "mxn": 3781936.921062744, "myr": 818486.3648546662, "ngn": 71793938.36745849, "nok": 1731501.8800492496, "nzd": 299317.9370774751, "php": 10154213.52962858, "pkr": 32005761.295225408, "pln": 762335.4916382809, "rub": 12559533.041024148, "sar": 745157.567206754, "sek": 1888644.4129461478, "sgd": 272023.4416536638, "thb": 6135469.729987363, "try": 1124017.6571587021, "twd": 6178580.147090133, "uah": 5043284.590552752, "usd": 198687.49125606718, "vef": 49371386244.999374, "vnd": 4612307693.7647, "xag": 12126.052567600973, "xau": 139.88195446900895, "xdr": 144265.19921360913, "xlm": 2370169.7884216444, "xrp": 637703.9787989476, "zar": 2832620.009090717, "bits": 20842128.255597, "link": 89895.28134054197, "sats": 2084212825.5597}}, "community_data": {"facebook_likes": null, "twitter_followers": 48336, "reddit_average_posts_48h": 0.125, "reddit_average_comments_48h": 0.292, "reddit_subscribers": 11226, "reddit_accounts_active_48h": "270.04"}, "developer_data": {"forks": 73, "stars": 84, "subscribers": 23, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 228, "pull_request_contributors": 22, "code_additions_deletions_4_weeks": {"additions": 74, "deletions": -5}, "commit_count_4_weeks": 19}, "public_interest_stats": {"alexa_rank": 923849, "bing_matches": null}}, "CVC_20190813": {"id": "civic", "symbol": "cvc", "name": "Civic", "localization": {"en": "Civic", "de": "Civic", "es": "Civic", "fr": "Civic", "it": "Civic", "pl": "Civic", "ro": "Civic", "hu": "Civic", "nl": "Civic", "pt": "Civic", "sv": "Civic", "vi": "Civic", "tr": "Civic", "ru": "Civic", "ja": "\u30b7\u30d3\u30c3\u30af", "zh": "Civic", "zh-tw": "Civic", "ko": "\uc2dc\ube45", "ar": "Civic", "th": "Civic", "id": "Civic"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/788/thumb/Civic-logo-blue.png?1636393120", "small": "https://assets.coingecko.com/coins/images/788/small/Civic-logo-blue.png?1636393120"}, "market_data": {"current_price": {"aed": 0.1618517737380787, "ars": 1.982851301164077, "aud": 0.06491619439774861, "bch": 0.00014016210389781168, "bdt": 3.7210783931975304, "bhd": 0.01661254727024067, "bmd": 0.04406511212265427, "bnb": 0.0014815027100964144, "brl": 0.17370467198750295, "btc": 3.714717055536013e-06, "cad": 0.05840306237023543, "chf": 0.04282027270518925, "clp": 31.29151742053923, "cny": 0.31121086786382457, "czk": 1.0169016087325218, "dkk": 0.2936058420732454, "eos": 0.011291507678189552, "eth": 0.00020956695552922603, "eur": 0.039063104985163195, "gbp": 0.03660488864028887, "hkd": 0.3455475929878238, "huf": 12.761256470720689, "idr": 627.0751878282484, "ils": 0.15325757866034911, "inr": 3.1304736954176047, "jpy": 4.656593580439263, "krw": 53.513482695423704, "kwd": 0.013403725805468981, "lkr": 7.795703783577206, "ltc": 0.0005228142914251928, "mmk": 66.56167456373974, "mxn": 0.8552906067670829, "myr": 0.18436904603275495, "ngn": 15.951570588400847, "nok": 0.39130722899715337, "nzd": 0.0681070372967745, "php": 2.292267132620476, "pkr": 6.960378241875759, "pln": 0.1701243816275374, "rub": 2.8756892171244166, "sar": 0.16533450393980495, "sek": 0.42061471474437234, "sgd": 0.06105736846405593, "thb": 1.3415182734620876, "try": 0.24201881531125397, "twd": 1.3828072835210141, "uah": 1.112820341545511, "usd": 0.04406511212265427, "vef": 10949.635816443646, "vnd": 1022.5309268061916, "xag": 0.0025971069343782675, "xau": 2.9428885131114657e-05, "xdr": 0.032027757313884526, "xlm": 0.6007768622316452, "xrp": 0.14838864059586793, "zar": 0.6721460861351044, "bits": 3.714717055536013, "link": 0.020339019389207395, "sats": 371.4717055536013}, "market_cap": {"aed": 56236686.13181734, "ars": 688957455.9132271, "aud": 22555648.077889085, "bch": 48774.296741487386, "bdt": 1292918284.6570435, "bhd": 5772161.682938083, "bmd": 15310773.694796, "bnb": 514770.64951257757, "brl": 60355069.90488575, "btc": 1290.773120017959, "cad": 20292608.550382387, "chf": 14878244.337917954, "clp": 10872486616.148525, "cny": 108132691.36729155, "czk": 353330552.24822986, "dkk": 102015685.12842557, "eos": 3923437.0932326294, "eth": 72854.66712159944, "eur": 13572786.529604964, "gbp": 12718659.70826702, "hkd": 120063259.62116638, "huf": 4434000062.0129175, "idr": 217882261679.84894, "ils": 53250564.69502651, "inr": 1087707984.8256958, "jpy": 1617970477.4220066, "krw": 18593685201.331577, "kwd": 4657231.142483035, "lkr": 2708679285.54872, "ltc": 181575.06041478214, "mmk": 23127383249.483303, "mxn": 297177524.1838812, "myr": 64060491.48985809, "ngn": 5542500077.516151, "nok": 135962809.11839578, "nzd": 23664331.82267666, "php": 796466447.6032866, "pkr": 2418438782.021242, "pln": 59111069.5421835, "rub": 999181091.3223852, "sar": 57446788.44155923, "sek": 146145928.14893565, "sgd": 21214868.314662077, "thb": 466121194.3643687, "try": 84091362.36392799, "twd": 480467389.31639296, "uah": 386658278.88837713, "usd": 15310773.694796, "vef": 3804538056305.3813, "vnd": 355286503587.7403, "xag": 902385.4613774641, "xau": 10225.30021206949, "xdr": 11128299.023041168, "xlm": 208811748.1174504, "xrp": 51612355.217604294, "zar": 233542503.78422797, "bits": 1290773120.0179589, "link": 7067310.678746923, "sats": 129077312001.7959}, "total_volume": {"aed": 15090327.75165521, "ars": 184872092.0771857, "aud": 6052492.519714162, "bch": 13068.08098132021, "bdt": 346936528.6896598, "bhd": 1548878.812434154, "bmd": 4108431.863220566, "bnb": 138128.6157326836, "brl": 16195438.404815452, "btc": 346.3434263217698, "cad": 5445237.531307117, "chf": 3992368.6630845806, "clp": 2917479634.710186, "cny": 29015894.52792809, "czk": 94811309.21550666, "dkk": 27374481.504638627, "eos": 1052769.1339975942, "eth": 19539.075611060478, "eur": 3642067.328698937, "gbp": 3412874.3487773207, "hkd": 32217295.56340984, "huf": 1189801867.588677, "idr": 58465655894.3396, "ils": 14289043.851643864, "inr": 291871216.4269154, "jpy": 434159735.8629988, "krw": 4989355225.190744, "kwd": 1249702.8041544321, "lkr": 726836181.2294532, "ltc": 48744.841212694104, "mmk": 6205909652.193892, "mxn": 79743429.93555224, "myr": 17189736.433760908, "ngn": 1487252334.4858449, "nok": 36483717.17393042, "nzd": 6349992.287793713, "php": 213720625.5247339, "pkr": 648954203.71092, "pln": 15861628.315928793, "rub": 268116263.393774, "sar": 15415041.772396723, "sek": 39216214.66399931, "sgd": 5692713.033020099, "thb": 125077099.64388698, "try": 22564740.322366305, "twd": 128926700.29972461, "uah": 103754338.27377215, "usd": 4108431.863220566, "vef": 1020894546999.475, "vnd": 95336161386.03316, "xag": 242142.51064858164, "xau": 2743.816219851855, "xdr": 2986123.314280874, "xlm": 56013718.894163735, "xrp": 13835086.075966768, "zar": 62667862.71483836, "bits": 346343426.32176983, "link": 1896318.2277328381, "sats": 34634342632.17698}}, "community_data": {"facebook_likes": null, "twitter_followers": 88465, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 8138, "reddit_accounts_active_48h": "1487.92"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 266707, "bing_matches": null}}, "SNT_20190822": {"id": "status", "symbol": "SNT", "name": "Status", "localization": {"en": "Status", "de": "Status", "es": "Status", "fr": "Status", "it": "Status", "pl": "Status", "ro": "Status", "hu": "Status", "nl": "Status", "pt": "Status", "sv": "Status", "vi": "Status", "tr": "Status", "ru": "Status", "ja": "\u30b9\u30c6\u30fc\u30bf\u30b9", "zh": "Status", "zh-tw": "Status", "ko": "\uc2a4\ud14c\uc774\ud130\uc2a4\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Status", "th": "Status", "id": "Status"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/779/thumb/status.png?1548610778", "small": "https://assets.coingecko.com/coins/images/779/small/status.png?1548610778"}, "market_data": {"current_price": {"aed": 0.06656613148264916, "ars": 0.9937031462223788, "aud": 0.02670589665046848, "bch": 5.7251325792863896e-05, "bdt": 1.5321968635682033, "bhd": 0.006832812368939948, "bmd": 0.018123017019977417, "bnb": 0.0006502271267322177, "brl": 0.07261825864741951, "btc": 1.7566437875160705e-06, "cad": 0.024046325779769822, "chf": 0.01774939290109348, "clp": 12.836492559045023, "cny": 0.12763859656999857, "czk": 0.4205695290969773, "dkk": 0.12184504861206921, "eos": 0.004906037072501335, "eth": 9.325146581827301e-05, "eur": 0.016338081073679792, "gbp": 0.014906344606084558, "hkd": 0.142155676893511, "huf": 5.304407058008532, "idr": 257.65040221876325, "ils": 0.06427001771828614, "inr": 1.2893414762619717, "jpy": 1.9289051935042703, "krw": 21.901603598603028, "kwd": 0.005514453495821695, "lkr": 3.211813959244059, "ltc": 0.00023766717173877427, "mmk": 27.520404188873705, "mxn": 0.3558943713332099, "myr": 0.0757097553827553, "ngn": 6.592602108459866, "nok": 0.1632010122849427, "nzd": 0.028202422903910045, "php": 0.94788132681846, "pkr": 2.910407525962428, "pln": 0.07093203877482983, "rub": 1.2032378444039524, "sar": 0.06797853069108405, "sek": 0.17520149421902712, "sgd": 0.025107682148527773, "thb": 0.5603901458625496, "try": 0.1012553983605879, "twd": 0.5675392773705549, "uah": 0.45629581313181516, "usd": 0.018123017019977417, "vef": 4503.345769587684, "vnd": 420.13622769534874, "xag": 0.0010599416860493747, "xau": 1.2005773855054199e-05, "xdr": 0.013212549312380452, "xlm": 0.2594679113334401, "xrp": 0.06426337397164562, "zar": 0.2772851144574276, "bits": 1.7566437875160705, "link": 0.007243198711002681, "sats": 175.66437875160705}, "market_cap": {"aed": 236015871.31689107, "ars": 3523258880.4885297, "aud": 94688024.177912, "bch": 202977.20194507987, "bdt": 5432534078.960502, "bhd": 24226316.429707773, "bmd": 64256695.673771076, "bnb": 2304781.488284931, "brl": 257474202.06705934, "btc": 6227.954302652372, "cad": 85258289.8310904, "chf": 62931979.63576016, "clp": 45512874317.55723, "cny": 452553481.96080047, "czk": 1491164976.0664012, "dkk": 432011965.7445051, "eos": 17393603.257872965, "eth": 330603.1826318468, "eur": 57928053.716861114, "gbp": 52851710.501937516, "hkd": 504025022.8963608, "huf": 18807225622.562565, "idr": 913521378220.0829, "ils": 227874805.00180697, "inr": 4571469682.360832, "jpy": 6839097147.342105, "krw": 77653995228.9219, "kwd": 19551963.102919318, "lkr": 11387759108.343655, "ltc": 842591.4825568314, "mmk": 97575929815.34605, "mxn": 1261853712.632811, "myr": 268435366.24187437, "ngn": 23374630554.868565, "nok": 578643046.4908321, "nzd": 99994085.07986918, "php": 3360793729.050964, "pkr": 10319097006.655771, "pln": 251495566.33148485, "rub": 4266181944.52953, "sar": 241023652.63753086, "sek": 621191774.1517413, "sgd": 89021418.95652892, "thb": 1986910845.0086796, "try": 359009612.50605565, "twd": 2012258697.8046756, "uah": 1617835549.6387188, "usd": 64256695.673771076, "vef": 15966994806172.783, "vnd": 1489628669155.2083, "xag": 3758113.2477744217, "xau": 42567.490616046205, "xdr": 46846215.46757129, "xlm": 919892896.0998188, "xrp": 227917640.16506878, "zar": 983137917.650091, "bits": 6227954302.652371, "link": 25679828.146002293, "sats": 622795430265.2372}, "total_volume": {"aed": 61000957.82319041, "ars": 910625904.815921, "aud": 24473185.371007185, "bch": 52464.90418212953, "bdt": 1404099564.8922594, "bhd": 6261564.099456838, "bmd": 16607866.076050477, "bnb": 595865.7450842712, "brl": 66547104.8756892, "btc": 1609.7818996822484, "cad": 22035964.416480742, "chf": 16265478.309026545, "clp": 11763314522.733028, "cny": 116967539.98701555, "czk": 385408368.1106048, "dkk": 111658353.96768981, "eos": 4495874.311348103, "eth": 85455.29996457548, "eur": 14972157.34622022, "gbp": 13660119.318346158, "hkd": 130270938.94991419, "huf": 4860939099.442085, "idr": 236109880036.68997, "ils": 58896807.62281916, "inr": 1181547782.052611, "jpy": 1767641617.9383507, "krw": 20070548905.592625, "kwd": 5053424.88175455, "lkr": 2943294487.7508726, "ltc": 217797.3211943808, "mmk": 25219597080.53966, "mxn": 326140291.64165586, "myr": 69380141.10240616, "ngn": 6041436301.102469, "nok": 149556806.82286167, "nzd": 25844596.520103045, "php": 868634958.2101552, "pkr": 2667086741.9388227, "pln": 65001859.19237531, "rub": 1102642730.8140001, "sar": 62295275.2579613, "sek": 160554004.28670788, "sgd": 23008587.48535856, "thb": 513539466.55595064, "try": 92790074.27935861, "twd": 520090904.34989756, "uah": 418147803.27150977, "usd": 16607866.076050477, "vef": 4126849483892.054, "vnd": 385011292301.3795, "xag": 971326.6588519205, "xau": 11002.046960740361, "xdr": 12107931.547012407, "xlm": 237775438.6981027, "xrp": 58890719.317857176, "zar": 254103058.04574162, "bits": 1609781899.6822484, "link": 6637640.632459322, "sats": 160978189968.22485}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5724, "reddit_accounts_active_48h": "650.5"}, "developer_data": {"forks": 692, "stars": 2742, "subscribers": 187, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2952, "pull_request_contributors": 157, "code_additions_deletions_4_weeks": {"additions": 13699, "deletions": -6126}, "commit_count_4_weeks": 75}, "public_interest_stats": {"alexa_rank": 264981, "bing_matches": null}}, "BNT_20190909": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 1.2093059306403542, "ars": 18.443228970876362, "aud": 0.4833930147719855, "bch": 0.0011261830855978424, "bdt": 27.814253035300453, "bhd": 0.12412997640598596, "bmd": 0.32922579383927647, "bnb": 0.014479860216368615, "brl": 1.3523937159329853, "btc": 3.1151379588702e-05, "cad": 0.43558547879699355, "chf": 0.32470387756089686, "clp": 235.46397799907726, "cny": 2.353536432418846, "czk": 7.707962024973172, "dkk": 2.2257918860222987, "eos": 0.10049770324893796, "eth": 0.001888016866716079, "eur": 0.2983358545065138, "gbp": 0.26716376866842956, "hkd": 2.580521155981337, "huf": 98.39571300474498, "idr": 4658.067739748843, "ils": 1.1575249685595181, "inr": 23.682264873399546, "jpy": 35.25157752160991, "krw": 394.0898597414926, "kwd": 0.10006653390847928, "lkr": 59.428548045927975, "ltc": 0.005041029245873123, "mmk": 503.3958047649211, "mxn": 6.493052012870091, "myr": 1.3799828374567173, "ngn": 119.50896316365736, "nok": 2.966159789594975, "nzd": 0.5167956053633311, "php": 17.12176206756504, "pkr": 51.65063541653797, "pln": 1.295164066964109, "rub": 21.801101609981306, "sar": 1.2350576430086682, "sek": 3.189242529048868, "sgd": 0.45599122272494735, "thb": 10.103939612927432, "try": 1.8747061579236817, "twd": 10.2672642493158, "uah": 8.299503079215027, "usd": 0.32922579383927647, "vef": 81808.54127604376, "vnd": 7651.249520589016, "xag": 0.017635855387612552, "xau": 0.00021686432265987076, "xdr": 0.24038190879119195, "xlm": 5.4434269581028705, "xrp": 1.2850294050760687, "zar": 4.8978450556584265, "bits": 31.151379588701996, "link": 0.18315215621700465, "sats": 3115.1379588702}, "market_cap": {"aed": 84363652.57314402, "ars": 1286637336.1801462, "aud": 33722484.37822019, "bch": 78590.99326624673, "bdt": 1940379121.7736585, "bhd": 8659560.776223088, "bmd": 22967464.051769823, "bnb": 1006907.4333012454, "brl": 94345748.83186008, "btc": 2172.801600156317, "cad": 30387332.98833464, "chf": 22652005.93301875, "clp": 16426448204.78624, "cny": 164187510.26688707, "czk": 537723179.7560874, "dkk": 155275789.70283973, "eos": 7008629.007962029, "eth": 131644.5208320919, "eur": 20812518.7696485, "gbp": 18637890.370834775, "hkd": 180022428.35737973, "huf": 6864285981.152452, "idr": 324956322880.39386, "ils": 80751306.8596177, "inr": 1652123185.1287713, "jpy": 2459222073.866431, "krw": 27492513819.249443, "kwd": 6980845.861215176, "lkr": 4145856935.984965, "ltc": 351635.8769205794, "mmk": 35117919877.79165, "mxn": 452968575.0098537, "myr": 96270422.31939848, "ngn": 8337189450.792446, "nok": 206925367.3744204, "nzd": 36052717.34598473, "php": 1194449104.9863827, "pkr": 3603253859.1418023, "pln": 90353291.58827692, "rub": 1520889392.2833626, "sar": 86160144.64380945, "sek": 222488075.08097073, "sgd": 31810879.377727404, "thb": 704871471.7488168, "try": 130783331.97296044, "twd": 716265332.0878674, "uah": 578990292.3356018, "usd": 22967464.051769823, "vef": 5707130990479.206, "vnd": 533766799575.36304, "xag": 1230313.3053874287, "xau": 15128.898245541312, "xdr": 16769533.105151387, "xlm": 379422743.0558813, "xrp": 89594592.53549436, "zar": 341683678.3508203, "bits": 2172801600.1563168, "link": 12774820.998448407, "sats": 217280160015.63168}, "total_volume": {"aed": 15147358.779312326, "ars": 231013674.20148262, "aud": 6054818.090809709, "bch": 14106.190019022371, "bdt": 348391965.3657686, "bhd": 1554810.2760840792, "bmd": 4123771.40666693, "bnb": 181369.85208985576, "brl": 16939628.184306484, "btc": 390.1916885917818, "cad": 5455996.997304754, "chf": 4067131.406396396, "clp": 2949342481.490605, "cny": 29479604.654840015, "czk": 96547336.19619223, "dkk": 27879519.49248214, "eos": 1258800.3821352695, "eth": 23648.663367091922, "eur": 3736854.430665015, "gbp": 3346403.3825675696, "hkd": 32322738.85116655, "huf": 1232471560.3105507, "idr": 58345387618.29644, "ils": 14498767.888700336, "inr": 296636073.3500549, "jpy": 441549386.90643734, "krw": 4936236849.208472, "kwd": 1253399.700199385, "lkr": 744381976.6174498, "ltc": 63142.234458250816, "mmk": 6305366301.095748, "mxn": 81329782.57999568, "myr": 17285200.22818518, "ngn": 1496929020.6200955, "nok": 37153118.48836588, "nzd": 6473207.690187326, "php": 214461424.85557547, "pkr": 646958462.7104856, "pln": 16222788.876914151, "rub": 273073255.9095008, "sar": 15469916.054970402, "sek": 39947377.74598042, "sgd": 5711592.472861397, "thb": 126558544.47060856, "try": 23481937.911955334, "twd": 128604293.85642803, "uah": 103956780.203921, "usd": 4123771.40666693, "vef": 1024706233983.5226, "vnd": 95836974467.68797, "xag": 220900.78463005705, "xau": 2716.369463285586, "xdr": 3010942.8261780264, "xlm": 68182532.66954868, "xrp": 16095845.515573088, "zar": 61348757.51767314, "bits": 390191688.59178185, "link": 2294102.2210604637, "sats": 39019168859.178185}}, "community_data": {"facebook_likes": null, "twitter_followers": 778, "reddit_average_posts_48h": 0.217, "reddit_average_comments_48h": 0.174, "reddit_subscribers": 5114, "reddit_accounts_active_48h": "167.5"}, "developer_data": {"forks": 217, "stars": 555, "subscribers": 69, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 209, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 14254, "deletions": -10977}, "commit_count_4_weeks": 153}, "public_interest_stats": {"alexa_rank": 161703, "bing_matches": null}}, "NEBL_20191025": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.6542768812350128, "ars": 26.30555025925908, "aud": 0.6556629360057881, "bch": 0.001934179960333032, "bdt": 38.14342185599876, "bhd": 0.1698041129683036, "bmd": 0.45038847841955104, "bnb": 0.024671042138908843, "brl": 1.8594288331551183, "btc": 5.484065209641825e-05, "cad": 0.5894594327859396, "chf": 0.4441168188575589, "clp": 327.0722467936562, "cny": 3.1870839898402665, "czk": 10.332452161118594, "dkk": 3.017396977876354, "eos": 0.1538652570921008, "eth": 0.0025836391783031565, "eur": 0.4038881199651247, "gbp": 0.34721934083341954, "hkd": 3.5321838024942442, "huf": 133.26004672170487, "idr": 6337.04291409831, "ils": 1.5947355243879473, "inr": 31.941325695275328, "jpy": 48.915003684353366, "krw": 527.7201801641879, "kwd": 0.13653391606745183, "lkr": 81.87403394129265, "ltc": 0.008219659469934297, "mmk": 690.1641959486864, "mxn": 8.613398156974922, "myr": 1.883749810989774, "ngn": 162.9932721905371, "nok": 4.1143753164039305, "nzd": 0.7025438727244755, "php": 23.024589096530967, "pkr": 70.26060263345009, "pln": 1.7271979286104826, "rub": 28.716814422878425, "sar": 1.6898111810168763, "sek": 4.342270985707265, "sgd": 0.6130868123638287, "thb": 13.633131781820415, "try": 2.639380072888606, "twd": 13.743604418972595, "uah": 11.211743335594697, "usd": 0.45038847841955104, "vef": 111915.97109498557, "vnd": 10462.791492154003, "xag": 0.025645660427383362, "xau": 0.0003035122917221514, "xdr": 0.32702076874173813, "xlm": 7.0689004193047165, "xrp": 1.5387941377868022, "zar": 6.64773754458038, "bits": 54.840652096418246, "link": 0.1715574812992474, "sats": 5484.065209641825}, "market_cap": {"aed": 25907863.08137782, "ars": 411974925.19413835, "aud": 10268429.527281128, "bch": 30291.464600316856, "bdt": 597369498.4860642, "bhd": 2659326.1136269514, "bmd": 7053597.354036968, "bnb": 386376.6634594884, "brl": 29120776.67614165, "btc": 858.8671714657387, "cad": 9231607.145016497, "chf": 6955376.010882005, "clp": 5122324493.420063, "cny": 49913370.95637177, "czk": 161817987.61843267, "dkk": 47255878.77805689, "eos": 2409705.448308706, "eth": 40462.736826249835, "eur": 6325348.6952194255, "gbp": 5437850.968939778, "hkd": 55318027.696163446, "huf": 2087004348.4537268, "idr": 99245321035.19771, "ils": 24975377.51117411, "inr": 500237597.5496245, "jpy": 766064757.6318775, "krw": 8264700019.725115, "kwd": 2138276.8770842473, "lkr": 1282240769.5666437, "ltc": 128729.2438999849, "mmk": 10808758615.401081, "mxn": 134895640.89761108, "myr": 29501670.933259647, "ngn": 2552660577.5603976, "nok": 64435810.94067791, "nzd": 11002638.475862779, "php": 360591330.61968076, "pkr": 1100361187.229769, "pln": 27049889.868177813, "rub": 449738072.65313274, "sar": 26464370.751819205, "sek": 68004917.09462588, "sgd": 9601638.862209268, "thb": 213510395.73864788, "try": 41335702.82204807, "twd": 215240523.25843793, "uah": 175588690.46473247, "usd": 7053597.354036968, "vef": 1752731775822.0002, "vnd": 163859250227.42398, "xag": 401640.29765569017, "xau": 4753.348720911975, "xdr": 5121518.288403286, "xlm": 110707044.43534034, "xrp": 24099271.581698213, "zar": 104111153.37436417, "bits": 858867171.4657387, "link": 2686785.8618496326, "sats": 85886717146.57387}, "total_volume": {"aed": 712708.5139554902, "ars": 11333163.055546902, "aud": 282477.8379466412, "bch": 833.2985492865679, "bdt": 16433247.551565232, "bhd": 73156.3370013494, "bmd": 194039.8894515354, "bnb": 10628.971473885365, "brl": 801093.6836006646, "btc": 23.62687897252653, "cad": 253955.52651638028, "chf": 191337.8839909228, "clp": 140911825.3495522, "cny": 1373084.4697258985, "czk": 4451507.911885559, "dkk": 1299978.5830958073, "eos": 66289.43435975623, "eth": 1113.103652872746, "eur": 174006.24106511168, "gbp": 149591.75409454043, "hkd": 1521763.0721006806, "huf": 57412136.35154035, "idr": 2730174428.1207476, "ils": 687056.4405699968, "inr": 13761211.939958153, "jpy": 21073944.74374581, "krw": 227356538.470364, "kwd": 58822.610367564674, "lkr": 35273612.12850698, "ltc": 3541.2580278964824, "mmk": 297341940.7956985, "mxn": 3710891.610829715, "myr": 811571.8376310474, "ngn": 70222037.26919965, "nok": 1772587.3769209825, "nzd": 302675.4500396499, "php": 9919633.687423289, "pkr": 30270222.754439574, "pln": 744124.930336918, "rub": 12372002.755418845, "sar": 728017.6791135464, "sek": 1870771.17290368, "sgd": 264134.8591170076, "thb": 5873532.54040926, "try": 1137118.3813605711, "twd": 5921127.2266136, "uah": 4830331.017862347, "usd": 194039.8894515354, "vef": 48216514630.516235, "vnd": 4507661722.644764, "xag": 11048.864153237775, "xau": 130.76154110249524, "xdr": 140889.6471723075, "xlm": 3045479.006743297, "xrp": 662955.3345427237, "zar": 2864030.3206237685, "bits": 23626878.97252653, "link": 73911.7368692546, "sats": 2362687897.252653}}, "community_data": {"facebook_likes": null, "twitter_followers": 40264, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6087, "reddit_accounts_active_48h": "157.0"}, "developer_data": {"forks": 40, "stars": 102, "subscribers": 33, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 89, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 478074, "bing_matches": null}}, "MORE_20191127": {"id": "legends-room", "symbol": "more", "name": "More Coin", "localization": {"en": "More Coin", "de": "More Coin", "es": "More Coin", "fr": "More Coin", "it": "More Coin", "pl": "More Coin", "ro": "More Coin", "hu": "More Coin", "nl": "More Coin", "pt": "More Coin", "sv": "More Coin", "vi": "More Coin", "tr": "More Coin", "ru": "More Coin", "ja": "More Coin", "zh": "More Coin", "zh-tw": "More Coin", "ko": "More Coin", "ar": "More Coin", "th": "More Coin", "id": "More Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/742/thumb/1722.png?1620080666", "small": "https://assets.coingecko.com/coins/images/742/small/1722.png?1620080666"}, "market_data": {"current_price": {"aed": 0.11926391689600602, "ars": 1.9413639229888786, "aud": 0.04787241576525376, "bch": 0.00015169655527203852, "bdt": 2.7550548677080826, "bhd": 0.012242586469614097, "bmd": 0.03247353189005384, "bnb": 0.0020011483019028793, "brl": 0.13627517657661078, "btc": 4.44e-06, "cad": 0.04319840289972249, "chf": 0.03238244363310223, "clp": 25.982061077340003, "cny": 0.22858768568046714, "czk": 0.751383946608229, "dkk": 0.220209514452833, "eos": 0.012106734713739716, "eth": 0.0002130257149245216, "eur": 0.02946433958393012, "gbp": 0.02530077816617875, "hkd": 0.25412438405582716, "huf": 9.860799036372144, "idr": 457.5873143497261, "ils": 0.11273560041248931, "inr": 2.3313592855698784, "jpy": 3.527795304367264, "krw": 38.343122779181066, "kwd": 0.00986367294394441, "lkr": 5.8486077917611405, "ltc": 0.0006753411150462705, "mmk": 49.20783452675452, "mxn": 0.6292168959612516, "myr": 0.13548282239849355, "ngn": 11.765876872459405, "nok": 0.2975661760770655, "nzd": 0.05069436568649915, "php": 1.6530378955699352, "pkr": 5.049634208903354, "pln": 0.12662079554569788, "rub": 2.073457742652263, "sar": 0.12178201197935674, "sek": 0.3125350129694453, "sgd": 0.0443063998078111, "thb": 0.9808383833283704, "try": 0.1855375244538225, "twd": 0.9928782375383964, "uah": 0.7828509938508806, "usd": 0.03247353189005384, "vef": 8069.271374597391, "vnd": 756.231332445638, "xag": 0.00191020777734054, "xau": 2.2206375312375532e-05, "xdr": 0.023613323555043995, "xlm": 0.5326488788420126, "xrp": 0.13909928464445726, "zar": 0.47837831453790813, "bits": 4.4399999999999995, "link": 0.013417265558519709, "sats": 444.0}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 996.3783623351225, "ars": 16218.92904935211, "aud": 399.94526813002074, "bch": 1.2673335678353428, "bdt": 23016.827961670908, "bhd": 102.2794536253297, "bmd": 271.2968462377641, "bnb": 16.718391611926634, "brl": 1138.4972152367757, "btc": 0.0370935320917344, "cad": 360.8966991604794, "chf": 270.53585858406706, "clp": 217064.50819407988, "cny": 1909.7127600368701, "czk": 6277.361382145584, "dkk": 1839.718173707525, "eos": 101.14449383563492, "eth": 1.779701845251668, "eur": 246.1568526842955, "gbp": 211.3727988407668, "hkd": 2123.0565304655543, "huf": 82381.05078959769, "idr": 3822867.0562166944, "ils": 941.8382008517158, "inr": 19477.105963209295, "jpy": 29472.60998549933, "krw": 320333.75119523995, "kwd": 82.4050605604897, "lkr": 48861.60378731075, "ltc": 5.642069217080299, "mmk": 411101.8894556137, "mxn": 5256.7290817568, "myr": 1131.877572188575, "ngn": 98296.83138647939, "nok": 2485.986599488585, "nzd": 423.52096406808005, "php": 13810.13833967939, "pkr": 42186.659589972165, "pln": 1057.8406628502894, "rub": 17322.49354007362, "sar": 1017.4155336829398, "sek": 2611.042237246114, "sgd": 370.1533475541117, "thb": 8194.31532630536, "try": 1550.054530979464, "twd": 8294.901073719639, "uah": 6540.249653931039, "usd": 271.2968462377641, "vef": 67413913.66904101, "vnd": 6317858.37811877, "xag": 15.958638173572513, "xau": 0.18552092236277032, "xdr": 197.27512952286764, "xlm": 4449.961324538861, "xrp": 1162.0909411928994, "zar": 3996.5633698877723, "bits": 37093.5320917344, "link": 112.09319157168323, "sats": 3709353.2091734405}}, "community_data": {"facebook_likes": null, "twitter_followers": 7, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 5636510, "bing_matches": null}}, "CURE_20191212": {"id": "curecoin", "symbol": "cure", "name": "Curecoin", "localization": {"en": "Curecoin", "de": "Curecoin", "es": "Curecoin", "fr": "Curecoin", "it": "Curecoin", "pl": "Curecoin", "ro": "Curecoin", "hu": "Curecoin", "nl": "Curecoin", "pt": "Curecoin", "sv": "Curecoin", "vi": "Curecoin", "tr": "Curecoin", "ru": "Curecoin", "ja": "Curecoin", "zh": "Curecoin", "zh-tw": "Curecoin", "ko": "Curecoin", "ar": "Curecoin", "th": "Curecoin", "id": "Curecoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/76/thumb/curecoin.png?1547033741", "small": "https://assets.coingecko.com/coins/images/76/small/curecoin.png?1547033741"}, "market_data": {"current_price": {"aed": 0.13350452000647692, "ars": 2.1769751508401303, "aud": 0.053168802195726755, "bch": 0.00017094561238715524, "bdt": 3.082277330810283, "bhd": 0.013706256004012577, "bmd": 0.036346957673829096, "bnb": 0.0023314713306077694, "brl": 0.150526817999946, "btc": 4.84e-06, "cad": 0.048159537183035145, "chf": 0.03600009865674771, "clp": 28.26700564819004, "cny": 0.2557117513226897, "czk": 0.8391022301622515, "dkk": 0.2455731309491516, "eos": 0.013272645873293066, "eth": 0.0002415594521973761, "eur": 0.03286615492523718, "gbp": 0.027660725381979716, "hkd": 0.2845786868420331, "huf": 10.876444968327334, "idr": 509.8214769740096, "ils": 0.1261621074337446, "inr": 2.5912806002958533, "jpy": 3.9487880021213027, "krw": 43.11512280857795, "kwd": 0.011034100369747989, "lkr": 6.586186203865017, "ltc": 0.0007986308453173187, "mmk": 54.603291836007024, "mxn": 0.6999389613564062, "myr": 0.15118520679124972, "ngn": 13.16635276998796, "nok": 0.3318439071315036, "nzd": 0.055428383513435986, "php": 1.846393500854722, "pkr": 5.630386868475983, "pln": 0.14060253563581054, "rub": 2.31395294977496, "sar": 0.13630763372924043, "sek": 0.3453188147499221, "sgd": 0.0494600313286046, "thb": 1.1033203326832641, "try": 0.21012841380566027, "twd": 1.106289297573889, "uah": 0.8620367242909431, "usd": 0.036346957673829096, "vef": 9031.769815003188, "vnd": 845.057209756151, "xag": 0.0021916252282940586, "xau": 2.4905298867684432e-05, "xdr": 0.026363538809558464, "xlm": 0.6526159954771429, "xrp": 0.15883996749060225, "zar": 0.5314875684856962, "bits": 4.84, "link": 0.017677614556009108, "sats": 484.0}, "market_cap": {"aed": 3247979.1021627956, "ars": 52962774.56009285, "aud": 1293522.9339828333, "bch": 4158.868753005255, "bdt": 74987516.20586506, "bhd": 333454.1262555489, "bmd": 884270.8767168726, "bnb": 56721.4515189324, "brl": 3662107.913313857, "btc": 117.75046158516037, "cad": 1171654.4902954714, "chf": 875832.2797403624, "clp": 687696893.1208084, "cny": 6221110.898966209, "czk": 20414189.032798056, "dkk": 5974452.380614799, "eos": 322904.9954621142, "eth": 5876.805164566015, "eur": 799587.7919372044, "gbp": 672946.9383281969, "hkd": 6923403.2506091315, "huf": 264608763.5177971, "idr": 12403246743.743355, "ils": 3069348.426628103, "inr": 63042249.33502234, "jpy": 96068514.45283608, "krw": 1048930911.5725061, "kwd": 268444.29994107736, "lkr": 160232740.82457042, "ltc": 19429.57658517791, "mmk": 1328422069.7849267, "mxn": 17028540.450651765, "myr": 3678125.595974705, "ngn": 320319032.2436234, "nok": 8073300.255982983, "nzd": 1348495.4015756985, "php": 44920183.263116464, "pkr": 136979473.69133732, "pln": 3420663.940322447, "rub": 56295253.70296383, "sar": 3316174.9564460805, "sek": 8401125.998108225, "sgd": 1203293.7022643974, "thb": 26842247.613584097, "try": 5112131.759870678, "twd": 26914478.395877738, "uah": 20972153.34475582, "usd": 884270.8767168726, "vef": 219730385257.757, "vnd": 20559065395.589764, "xag": 53319.19054820411, "xau": 605.911247435168, "xdr": 641388.1950090491, "xlm": 15877238.575473657, "xrp": 3864355.266568241, "zar": 12930352.585943235, "bits": 117750461.58516036, "link": 430071.7507633517, "sats": 11775046158.516037}, "total_volume": {"aed": 15564.11180269333, "ars": 253794.28829613526, "aud": 6198.480633834951, "bch": 19.929037782724386, "bdt": 359335.4665543237, "bhd": 1597.891223701183, "bmd": 4237.37048675051, "bnb": 271.805632143339, "brl": 17548.59104801223, "btc": 0.5642528142221784, "cad": 5614.494708091988, "chf": 4196.933260195447, "clp": 3295400.3071540166, "cny": 29811.17258543585, "czk": 97823.51132007365, "dkk": 28629.200461861637, "eos": 1547.3404516900816, "eth": 28.16128113725976, "eur": 3831.5744647163615, "gbp": 3224.7194504563836, "hkd": 33176.51341286553, "huf": 1267988.5706841634, "idr": 59435579.159812495, "ils": 14708.12482803537, "inr": 302094.4981727833, "jpy": 460354.28573630546, "krw": 5026411.028982426, "kwd": 1286.3682202562568, "lkr": 767825.2273806037, "ltc": 93.10531032953187, "mmk": 6365715.100054104, "mxn": 81599.69601840925, "myr": 17625.346777009225, "ngn": 1534948.6784106777, "nok": 38686.74762013101, "nzd": 6461.905244884804, "php": 215254.696078268, "pkr": 656397.0321688371, "pln": 16391.606698198397, "rub": 269763.31898517197, "sar": 15890.902052002031, "sek": 40257.66798068402, "sgd": 5766.107824107904, "thb": 128626.36419526485, "try": 24497.014222703772, "twd": 128972.4895661041, "uah": 100497.2412487671, "usd": 4237.37048675051, "vef": 1052934201.5542299, "vnd": 98517749.748688, "xag": 255.50221131926585, "xau": 2.903488631226317, "xdr": 3073.4919351547487, "xlm": 76082.72976330295, "xrp": 18517.74765858092, "zar": 61961.43724011506, "bits": 564252.8142221784, "link": 2060.8768103229513, "sats": 56425281.422217846}}, "community_data": {"facebook_likes": null, "twitter_followers": 8388, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 997, "reddit_accounts_active_48h": "45.75"}, "developer_data": {"forks": 41, "stars": 79, "subscribers": 23, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 24, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2350069, "bing_matches": null}}, "NEBL_20200316": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.0181395619064793, "ars": 17.37816661254521, "aud": 0.44196298615977225, "bch": 0.001867722937675506, "bdt": 23.5193498443555, "bhd": 0.10453004830845317, "bmd": 0.2771805406475227, "bnb": 0.029342482504594123, "brl": 1.328165996620734, "btc": 5.784146845522467e-05, "cad": 0.38653602498810924, "chf": 0.26180228707185776, "clp": 236.01898117605984, "cny": 1.9484683285358253, "czk": 6.495282481209669, "dkk": 1.8522700500986962, "eos": 0.14831848587790683, "eth": 0.002528684334610951, "eur": 0.2478562253497183, "gbp": 0.22055920852620958, "hkd": 2.1555637694806244, "huf": 83.8071066925411, "idr": 4033.0507350355406, "ils": 1.0224220012594845, "inr": 20.63237703196341, "jpy": 28.983367832657432, "krw": 335.6462320863053, "kwd": 0.08528180002426733, "lkr": 50.68887304330474, "ltc": 0.009235786817826823, "mmk": 384.85529726254765, "mxn": 6.091081186004981, "myr": 1.1842541370970834, "ngn": 101.30948760666953, "nok": 2.821645239489061, "nzd": 0.4534213525296, "php": 14.200182782068921, "pkr": 44.071705962956145, "pln": 1.0858633605834331, "rub": 20.76999717039488, "sar": 1.0404002083064225, "sek": 2.7015138072697193, "sgd": 0.3905640126047988, "thb": 8.795631506097521, "try": 1.750903740481198, "twd": 8.350895051448022, "uah": 7.166855452089433, "usd": 0.2771805406475227, "vef": 68875.93902058843, "vnd": 6460.280060448229, "xag": 0.017645820458010705, "xau": 0.0001756049597218316, "xdr": 0.19945135599481953, "xlm": 8.475328011436515, "xrp": 2.029079192978316, "zar": 4.596254845709136, "bits": 57.84146845522467, "link": 0.1399275255032645, "sats": 5784.146845522467}, "market_cap": {"aed": 16527322.203381341, "ars": 282124881.5727634, "aud": 7170100.582906322, "bch": 29774.618581202445, "bdt": 381786434.2328871, "bhd": 1698603.9533947238, "bmd": 4499434.336105112, "bnb": 474517.68482998223, "brl": 21560839.395182066, "btc": 936.3692326569546, "cad": 6267370.073184879, "chf": 4248248.914857705, "clp": 3830820728.966309, "cny": 31629223.609084506, "czk": 105515964.64994125, "dkk": 30063438.457857244, "eos": 2402805.3801803584, "eth": 42047.617381978016, "eur": 4022795.7585784863, "gbp": 3578895.065281371, "hkd": 34995925.35107511, "huf": 1360380075.0256226, "idr": 65458605366.726555, "ils": 16596838.463874128, "inr": 334922593.9029222, "jpy": 470614397.37987, "krw": 5448770076.668617, "kwd": 1384358.959926809, "lkr": 822825640.2730137, "ltc": 150732.55287160803, "mmk": 6247304139.351827, "mxn": 98918061.63099177, "myr": 19223837.70044348, "ngn": 1644543249.8464184, "nok": 45784016.58420927, "nzd": 7354437.908222206, "php": 230404482.3040019, "pkr": 715410059.4407127, "pln": 17617373.163383458, "rub": 337156563.0507982, "sar": 16887848.378430437, "sek": 43847100.09120276, "sgd": 6334506.132913906, "thb": 142611821.00002003, "try": 28423376.644609597, "twd": 135549954.3100684, "uah": 116338598.04047342, "usd": 4499434.336105112, "vef": 1118053829596.9614, "vnd": 104856758545.60126, "xag": 286560.78389604285, "xau": 2855.521007065751, "xdr": 3237666.9640998235, "xlm": 139130482.68710747, "xrp": 33173185.0569168, "zar": 74588112.86516844, "bits": 936369232.6569546, "link": 2265223.086175697, "sats": 93636923265.69547}, "total_volume": {"aed": 419037.7042001912, "ars": 7152366.250156826, "aud": 181899.57643435843, "bch": 768.7024069863916, "bdt": 9679905.124799704, "bhd": 43021.63780090171, "bmd": 114079.74087993894, "bnb": 12076.54329946252, "brl": 546635.8943744032, "btc": 23.8059270613742, "cad": 159087.39288981978, "chf": 107750.48277617914, "clp": 97138796.80158107, "cny": 801934.9464896186, "czk": 2673276.1999359652, "dkk": 762342.431619827, "eos": 61043.73127034564, "eth": 1040.7355905493155, "eur": 102010.6746935459, "gbp": 90775.98773194861, "hkd": 887169.624888066, "huf": 34492655.91678155, "idr": 1659890632.0540571, "ils": 420800.2361967867, "inr": 8491708.039983673, "jpy": 11928741.766840436, "krw": 138142580.6237447, "kwd": 35099.598354976144, "lkr": 20862119.284303404, "ltc": 3801.190965782382, "mmk": 158395652.47047475, "mxn": 2506918.2770003728, "myr": 487405.8069892808, "ngn": 41696145.291617684, "nok": 1161310.0870070125, "nzd": 186615.51884259415, "php": 5844397.187630175, "pkr": 18138678.799910307, "pln": 446910.92136912927, "rub": 8548348.631330552, "sar": 428199.56227000005, "sek": 1111867.3569109417, "sgd": 160745.19968428693, "thb": 3620035.3774726656, "try": 720622.8999813306, "twd": 3436994.3191510583, "uah": 2949676.809881233, "usd": 114079.74087993894, "vef": 28347405838.720184, "vnd": 2658870184.7037725, "xag": 7262.525070342733, "xau": 72.27407903707653, "xdr": 82088.58730445955, "xlm": 3488207.4375007427, "xrp": 835112.1186901787, "zar": 1891689.6568270987, "bits": 23805927.0613742, "link": 57590.2471872393, "sats": 2380592706.1374197}}, "community_data": {"facebook_likes": null, "twitter_followers": 39648, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6026, "reddit_accounts_active_48h": "36.0833333333333"}, "developer_data": {"forks": 41, "stars": 104, "subscribers": 34, "total_issues": 142, "closed_issues": 114, "pull_requests_merged": 111, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 856581, "bing_matches": null}}, "BNT_20200317": {"id": "bancor", "symbol": "bnt", "name": "Bancor Network Token", "localization": {"en": "Bancor Network Token", "de": "Bancor Network Token", "es": "Bancor Network Token", "fr": "Bancor Network Token", "it": "Bancor Network Token", "pl": "Bancor Network Token", "ro": "Bancor Network Token", "hu": "Bancor Network Token", "nl": "Bancor Network Token", "pt": "Bancor Network Token", "sv": "Bancor Network Token", "vi": "Bancor Network Token", "tr": "Bancor Network Token", "ru": "Bancor Network Token", "ja": "\u30d0\u30f3\u30b3\u30fc\u30eb", "zh": "Bancor Network Token", "zh-tw": "Bancor Network Token", "ko": "\ubc45\ucf54\ub974", "ar": "Bancor Network Token", "th": "Bancor Network Token", "id": "Bancor Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/736/thumb/bancor-bnt.png?1628822309", "small": "https://assets.coingecko.com/coins/images/736/small/bancor-bnt.png?1628822309"}, "market_data": {"current_price": {"aed": 0.5855913236672924, "ars": 9.994039843016344, "aud": 0.2579377523821645, "bch": 0.0008982203345116682, "bdt": 13.517114445503207, "bhd": 0.06018979614523978, "bmd": 0.15943134322550861, "bnb": 0.014712829897863948, "brl": 0.7747725555386822, "btc": 2.872593798188081e-05, "cad": 0.22161753865061806, "chf": 0.15166703681042626, "clp": 133.88089066844074, "cny": 1.1173267395930095, "czk": 3.778905469668287, "dkk": 1.0727975654301234, "eos": 0.07598625825044861, "eth": 0.001206457691286236, "eur": 0.14309680495533902, "gbp": 0.12993590700341665, "hkd": 1.239793925891682, "huf": 48.679172027044494, "idr": 2336.7708488353874, "ils": 0.5844992189661973, "inr": 11.791382713615372, "jpy": 17.208213370734704, "krw": 193.1989017206711, "kwd": 0.04912924670897001, "lkr": 29.32135218183584, "ltc": 0.0042818356525139096, "mmk": 222.52122308564276, "mxn": 3.493858011684054, "myr": 0.6821270019903378, "ngn": 58.2721559489234, "nok": 1.6072026591981505, "nzd": 0.2629145611922919, "php": 8.107973908206336, "pkr": 25.016916364120302, "pln": 0.6282262940413146, "rub": 11.57839838220043, "sar": 0.5983097996417654, "sek": 1.5579973637384614, "sgd": 0.2256112937984172, "thb": 5.055537920588352, "try": 1.0095352084382418, "twd": 4.800079166161995, "uah": 4.1668255235747385, "usd": 0.15943134322550861, "vef": 39616.71857742218, "vnd": 3704.0683346611454, "xag": 0.010812600216971906, "xau": 0.00010425215533516008, "xdr": 0.1153158933982941, "xlm": 4.025986208603426, "xrp": 1.0067900637844138, "zar": 2.567204940766378, "bits": 28.725937981880808, "link": 0.06588860094577233, "sats": 2872.593798188081}, "market_cap": {"aed": 40730216.936459094, "ars": 695125413.2804481, "aud": 17940601.552691706, "bch": 63114.61818683623, "bdt": 940169332.2100718, "bhd": 4186440.8765552803, "bmd": 11089087.104943935, "bnb": 1025852.3919296631, "brl": 53888527.695185594, "btc": 2001.5656376197048, "cad": 15414385.530227335, "chf": 10548638.266710294, "clp": 9311951014.612543, "cny": 77714540.24886803, "czk": 262837978.19622314, "dkk": 74617358.22045721, "eos": 5349389.401540429, "eth": 83938.1039541463, "eur": 9952954.68560692, "gbp": 9037605.990529317, "hkd": 86232622.50853081, "huf": 3385830965.752533, "idr": 162531751679.32397, "ils": 40654256.689790234, "inr": 820137793.1945491, "jpy": 1196900014.3129117, "krw": 13437755753.771069, "kwd": 3417135.4586497927, "lkr": 2039417230.0186453, "ltc": 299411.57144303445, "mmk": 15477240394.350212, "mxn": 243011788.2722075, "myr": 47444659.17850262, "ngn": 4053061336.857008, "nok": 111787368.29643857, "nzd": 18286758.495759644, "php": 563941989.6597073, "pkr": 1740026515.7801294, "pln": 43695649.52097608, "rub": 805323881.7310545, "sar": 41614837.771168806, "sek": 108364943.34323971, "sgd": 15692167.162206177, "thb": 351632867.3493963, "try": 70217208.45721541, "twd": 333864690.0120999, "uah": 289819368.3074429, "usd": 11089087.104943935, "vef": 2755501109312.588, "vnd": 257632756362.2405, "xag": 752059.5587490053, "xau": 7251.154057922853, "xdr": 8020681.257570432, "xlm": 281648292.7011712, "xrp": 70684691.9349939, "zar": 178559363.72645473, "bits": 2001565637.6197047, "link": 4590985.319507409, "sats": 200156563761.9705}, "total_volume": {"aed": 9177026.799848227, "ars": 156620441.20418143, "aud": 4042241.6976393317, "bch": 14076.35623827229, "bdt": 211831897.9628131, "bhd": 943257.4390670036, "bmd": 2498509.8828881676, "bnb": 230570.41458322262, "brl": 12141758.626883347, "btc": 450.1752195704918, "cad": 3473053.662708694, "chf": 2376832.4515915127, "clp": 2098098916.4209075, "cny": 17510056.961256858, "czk": 59220680.64816836, "dkk": 16812223.150966167, "eos": 1190809.870640684, "eth": 18906.862377126447, "eur": 2242525.0528368587, "gbp": 2036275.5605143255, "hkd": 19429287.32779737, "huf": 762870022.5422434, "idr": 36620434487.60237, "ils": 9159912.007150438, "inr": 184787292.42852566, "jpy": 269676528.49047744, "krw": 3027694276.0838776, "kwd": 769923.3159416352, "lkr": 459506184.4416551, "ltc": 67102.29292603252, "mmk": 3487215648.9671164, "mxn": 54753592.33004269, "myr": 10689874.53393701, "ngn": 913205362.1956253, "nok": 25187090.86036374, "nzd": 4120235.1821435676, "php": 127063176.7255394, "pkr": 392049715.6367221, "pln": 9845175.814220296, "rub": 181449533.0759756, "sar": 9376342.927245768, "sek": 24415975.75520796, "sgd": 3535641.335275045, "thb": 79227278.66652581, "try": 15820814.429436143, "twd": 75223886.29905541, "uah": 65299924.97269782, "usd": 2498509.8828881676, "vef": 620848829914.7164, "vnd": 58047879129.72477, "xag": 169448.41557039993, "xau": 1633.7756124205725, "xdr": 1807159.7057435946, "xlm": 63092777.91343172, "xrp": 15777794.212026037, "zar": 40231655.746834815, "bits": 450175219.5704918, "link": 1032565.6003527134, "sats": 45017521957.04918}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5028, "reddit_accounts_active_48h": "162.0"}, "developer_data": {"forks": 238, "stars": 581, "subscribers": 66, "total_issues": 54, "closed_issues": 33, "pull_requests_merged": 232, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 250, "deletions": -176}, "commit_count_4_weeks": 16}, "public_interest_stats": {"alexa_rank": 123445, "bing_matches": null}}, "NEBL_20200320": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.0331542714168183, "ars": 17.70498499567117, "aud": 0.46097474333196653, "bch": 0.0016498388799068562, "bdt": 23.8739665040751, "bhd": 0.10618794084161935, "bmd": 0.28126052089859804, "bnb": 0.029889004726128397, "brl": 1.4064994868576208, "btc": 5.585266063652848e-05, "cad": 0.3938491074143071, "chf": 0.2665745027998775, "clp": 239.99971104933485, "cny": 1.9670517050085232, "czk": 6.881094614627876, "dkk": 1.883127221959154, "eos": 0.1490715787380826, "eth": 0.0025311404310623562, "eur": 0.2520133643724364, "gbp": 0.2292813265523698, "hkd": 2.1842270162203805, "huf": 86.76909092420532, "idr": 4184.03671220718, "ils": 1.0583763086284044, "inr": 20.899344265891227, "jpy": 29.86769759420735, "krw": 346.8026637399849, "kwd": 0.08690584457089508, "lkr": 51.853182601352536, "ltc": 0.008568659946935547, "mmk": 395.9940850873572, "mxn": 6.36286957352748, "myr": 1.2118897072374593, "ngn": 103.63606413550643, "nok": 2.8901968301467997, "nzd": 0.46524202795503966, "php": 14.48685358622472, "pkr": 44.63957223606062, "pln": 1.1189106042388008, "rub": 20.92333578832389, "sar": 1.055718396705911, "sek": 2.752516992561723, "sgd": 0.4001597497217088, "thb": 9.048150957307916, "try": 1.8080832585966387, "twd": 8.506724454578112, "uah": 7.485616571271362, "usd": 0.28126052089859804, "vef": 69889.76369356825, "vnd": 6547.2434927313725, "xag": 0.021595607497980906, "xau": 0.00018650103880265116, "xdr": 0.20395578546909726, "xlm": 7.972642193720042, "xrp": 1.982463752374181, "zar": 4.67272166394886, "bits": 55.85266063652848, "link": 0.15717286961229887, "sats": 5585.266063652848}, "market_cap": {"aed": 16677861.581664357, "ars": 285932640.5658752, "aud": 7428792.556291772, "bch": 26591.19172106901, "bdt": 385389403.86340165, "bhd": 1714156.179763779, "bmd": 4540293.899671782, "bnb": 480673.1118862131, "brl": 22703285.61591876, "btc": 899.558774630751, "cad": 6355857.543684731, "chf": 4303721.8860293785, "clp": 3874234500.821024, "cny": 31753453.446134526, "czk": 111047416.25695252, "dkk": 30403310.78948306, "eos": 2396043.8164361473, "eth": 40949.45577192939, "eur": 4068820.7005420667, "gbp": 3701211.264661239, "hkd": 35259985.988965645, "huf": 1400680668.0487437, "idr": 67541191847.26325, "ils": 17085012.437117375, "inr": 337411941.1541085, "jpy": 482304070.2273843, "krw": 5585356048.028732, "kwd": 1402891.7911778877, "lkr": 837048469.8361421, "ltc": 137875.07656041186, "mmk": 6392399200.15805, "mxn": 102622723.85464917, "myr": 19563127.549027804, "ngn": 1672962093.2120616, "nok": 46670589.05350614, "nzd": 7510763.022356439, "php": 233891996.20106283, "pkr": 720601586.2440013, "pln": 18070142.705998685, "rub": 337758365.5786528, "sar": 17042106.659765515, "sek": 44434494.30791781, "sgd": 6452947.188435311, "thb": 146023306.97602737, "try": 29195565.370406915, "twd": 137321188.99557295, "uah": 120837788.20163172, "usd": 4540293.899671782, "vef": 1128206926210.634, "vnd": 105716150764.96632, "xag": 348851.66566372116, "xau": 3009.2159908244635, "xdr": 3292389.581053091, "xlm": 127999985.16685654, "xrp": 31830334.151605193, "zar": 75428356.58463721, "bits": 899558774.630751, "link": 2531414.48200177, "sats": 89955877463.0751}, "total_volume": {"aed": 766018.6122752641, "ars": 13127127.682625411, "aud": 341783.64543453295, "bch": 1223.251284177436, "bdt": 17701037.683248013, "bhd": 78731.648635897, "bmd": 208536.90476554204, "bnb": 22160.808463967194, "brl": 1042830.4996610472, "btc": 41.41121880472182, "cad": 292014.22774318873, "chf": 197648.15028320908, "clp": 177944621.3316823, "cny": 1458444.5508587698, "czk": 5101896.873933046, "dkk": 1396219.8494564947, "eos": 110527.15652816487, "eth": 1876.6806992118268, "eur": 186851.98618659232, "gbp": 169997.61646963164, "hkd": 1619466.3218734867, "huf": 64333798.40456612, "idr": 3102198853.2249413, "ils": 784719.1592101174, "inr": 15495543.245508365, "jpy": 22145010.571941502, "krw": 257132262.3940359, "kwd": 64435.1925927905, "lkr": 38445858.549152724, "ltc": 6353.119938815129, "mmk": 293604593.157076, "mxn": 4717665.750070361, "myr": 898539.6445156706, "ngn": 76839593.29895929, "nok": 2142898.332109997, "nzd": 344947.5673536355, "php": 10741086.580551641, "pkr": 33097422.256151095, "pln": 829601.5145382779, "rub": 15513331.443484876, "sar": 782748.4854600817, "sek": 2040817.4318582134, "sgd": 296693.1702754131, "thb": 6708632.2263075, "try": 1340579.4922852877, "twd": 6307198.684633829, "uah": 5550111.707989659, "usd": 208536.90476554204, "vef": 51818843785.42558, "vnd": 4854367361.47118, "xag": 16011.778438624506, "xau": 138.27873618098312, "xdr": 151220.3279538279, "xlm": 5911210.43426122, "xrp": 1469871.610168288, "zar": 3464527.8673223336, "bits": 41411218.80472182, "link": 116533.75183033127, "sats": 4141121880.472182}}, "community_data": {"facebook_likes": null, "twitter_followers": 39610, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6023, "reddit_accounts_active_48h": "41.5"}, "developer_data": {"forks": 41, "stars": 105, "subscribers": 34, "total_issues": 142, "closed_issues": 114, "pull_requests_merged": 111, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 841626, "bing_matches": null}}, "NEBL_20201202": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.4553821445308242, "ars": 32.09343088107912, "aud": 0.5365121847064811, "bch": 0.0014370771522335649, "bdt": 33.598164467510614, "bhd": 0.1494039123028082, "bmd": 0.3962379919768113, "bnb": 0.013610199900074222, "brl": 2.117535452923272, "btc": 2.236825264013832e-05, "cad": 0.514774568466634, "chf": 0.35861360968664363, "clp": 304.58778742214287, "cny": 2.606057273231487, "czk": 8.67658180551302, "dkk": 2.4649569242885403, "dot": 0.08102347686253823, "eos": 0.132150641122645, "eth": 0.0007368789369750278, "eur": 0.33119869549775227, "gbp": 0.29777760582647594, "hkd": 3.0710980301351385, "huf": 119.78670735450962, "idr": 5576.863505217382, "ils": 1.313303087747699, "inr": 29.30673266968514, "jpy": 41.25431493682476, "krw": 437.85486827413587, "kwd": 0.12104634793100394, "lkr": 73.42105185930829, "ltc": 0.005453697711300952, "mmk": 521.0399430314698, "mxn": 7.93965838803455, "myr": 1.6124905083496295, "ngn": 150.7685559471763, "nok": 3.4971351002985633, "nzd": 0.5641200667974657, "php": 19.068953363884017, "pkr": 63.1801478207024, "pln": 1.4849613106318937, "rub": 30.145310944005285, "sar": 1.486035511828142, "sek": 3.365883246646224, "sgd": 0.5302456808633684, "thb": 12.01258117904233, "try": 3.10460391473671, "twd": 11.300113174190663, "uah": 11.295462528878838, "usd": 0.3962379919768113, "vef": 98460.24439262602, "vnd": 9146.590679947489, "xag": 0.01745928407003725, "xau": 0.00022148118799535793, "xdr": 0.27800057517092974, "xlm": 1.9834937513605189, "xrp": 0.6349557626020301, "yfi": 1.6939999041285288e-05, "zar": 6.049163342134065, "bits": 22.36825264013832, "link": 0.030318227445237506, "sats": 2236.8252640138317}, "market_cap": {"aed": 24857073.762124598, "ars": 548136983.6015139, "aud": 9163313.56657316, "bch": 24418.550405280817, "bdt": 573836951.057368, "bhd": 2551731.2290911134, "bmd": 6767512.59518775, "bnb": 232441.42003464376, "brl": 36166264.05994285, "btc": 382.3078929277757, "cad": 8792047.82560114, "chf": 6124910.204224295, "clp": 5202180834.391984, "cny": 44509930.33854993, "czk": 148190930.3018644, "dkk": 42100019.10340339, "dot": 1378416.2692276638, "eos": 2253977.9742142484, "eth": 12517.63650518804, "eur": 5656679.542788463, "gbp": 5085866.925434722, "hkd": 52452553.820765816, "huf": 2045886732.6512098, "idr": 95249559046.34769, "ils": 22430446.770868123, "inr": 500541811.9459432, "jpy": 704599512.3989599, "krw": 7478304443.060332, "kwd": 2067400.6551913123, "lkr": 1253988520.2095454, "ltc": 93084.92890864647, "mmk": 8899056749.883123, "mxn": 135604710.3773341, "myr": 27540392.506116547, "ngn": 2575038542.468939, "nok": 59729017.20067491, "nzd": 9634840.006642831, "php": 325686543.64341074, "pkr": 1079079883.3026853, "pln": 25362268.5773554, "rub": 514864237.2267713, "sar": 25380615.304000918, "sek": 57487312.49108186, "sgd": 9056285.354880264, "thb": 205167843.7605297, "try": 53024814.68581518, "twd": 192999307.9458621, "uah": 192919877.65053213, "usd": 6767512.59518775, "vef": 1681643248614.477, "vnd": 156218406318.78152, "xag": 298194.33582697157, "xau": 3782.7688402061444, "xdr": 4748086.836783709, "xlm": 34001145.927965574, "xrp": 10775291.765154887, "yfi": 288.7238285536162, "zar": 103316163.35930797, "bits": 382307892.9277757, "link": 516067.78120845935, "sats": 38230789292.77757}, "total_volume": {"aed": 833205.979350171, "ars": 18373482.599373892, "aud": 307153.11574457464, "bch": 822.7263750130215, "bdt": 19234942.269093778, "bhd": 85533.7091614098, "bmd": 226846.1691669407, "bnb": 7791.8366523238365, "brl": 1212288.6126450447, "btc": 12.80582005036669, "cad": 294708.3349040767, "chf": 205306.21801986214, "clp": 174376445.85022822, "cny": 1491967.2546109688, "czk": 4967341.304716163, "dkk": 1411187.3337706185, "dot": 46385.92389174202, "eos": 75656.21494816571, "eth": 421.8630403375733, "eur": 189611.18526754002, "gbp": 170477.61828298512, "hkd": 1758202.9925920493, "huf": 68577865.40085773, "idr": 3192753213.325178, "ils": 751865.7484719813, "inr": 16778098.4447013, "jpy": 23618086.843052827, "krw": 250671822.31454456, "kwd": 69299.00937263946, "lkr": 42033537.13610097, "ltc": 3122.240821560427, "mmk": 298295260.55786955, "mxn": 4545452.799299489, "myr": 923150.4854248629, "ngn": 86314967.36802071, "nok": 2002109.1279111884, "nzd": 322958.6225812814, "php": 10916971.891159005, "pkr": 36170621.6736686, "pln": 850140.0458784836, "rub": 17258184.334817767, "sar": 850755.0258430947, "sek": 1926967.4686054962, "sgd": 303565.5435791998, "thb": 6877200.26208925, "try": 1777385.1046568127, "twd": 6469312.475387381, "uah": 6466649.981899873, "usd": 226846.1691669407, "vef": 56368469727.69607, "vnd": 5236421288.965035, "xag": 9995.436550458606, "xau": 126.79793471755288, "xdr": 159155.272287525, "xlm": 1135549.7659826372, "xrp": 363512.0439061112, "yfi": 9.698145977965947, "zar": 3463144.773125406, "bits": 12805820.050366689, "link": 17357.17899632053, "sats": 1280582005.036669}}, "community_data": {"facebook_likes": null, "twitter_followers": 38360, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 1.75, "reddit_subscribers": 5901, "reddit_accounts_active_48h": "48.7692307692308"}, "developer_data": {"forks": 43, "stars": 108, "subscribers": 34, "total_issues": 148, "closed_issues": 115, "pull_requests_merged": 129, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 151, "deletions": -130}, "commit_count_4_weeks": 20}, "public_interest_stats": {"alexa_rank": 885827, "bing_matches": null}}, "STPT_20210110": {"id": "stp-network", "symbol": "stpt", "name": "STP Network", "localization": {"en": "STP Network", "de": "STP Network", "es": "STP Network", "fr": "STP Network", "it": "STP Network", "pl": "STP Network", "ro": "STP Network", "hu": "STP Network", "nl": "STP Network", "pt": "STP Network", "sv": "STP Network", "vi": "STP Network", "tr": "STP Network", "ru": "STP Network", "ja": "STP Network", "zh": "STP Network", "zh-tw": "STP Network", "ko": "STP Network", "ar": "STP Network", "th": "STP Network", "id": "STP Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8713/thumb/STP.png?1560262664", "small": "https://assets.coingecko.com/coins/images/8713/small/STP.png?1560262664"}, "market_data": {"current_price": {"aed": 0.06311683492793671, "ars": 1.4588888634206287, "aud": 0.021986069819915282, "bch": 3.77016916487803e-05, "bdt": 1.456089984922788, "bhd": 0.006478643244538805, "bmd": 0.017184000797151343, "bnb": 0.00040819279082551633, "brl": 0.09132265383638102, "btc": 4.6538318752607567e-07, "cad": 0.021762677809552305, "chf": 0.015089889724007302, "clp": 11.96865806740798, "cny": 0.11103785795095275, "czk": 0.3649160041281466, "dkk": 0.10359459082166571, "dot": 0.0016967239660091434, "eos": 0.005066331637016904, "eth": 1.4218431723972817e-05, "eur": 0.01392589706201066, "gbp": 0.012610822665005454, "hkd": 0.1332291047403861, "huf": 4.998138471859419, "idr": 238.02080985288126, "ils": 0.0547579355001746, "inr": 1.256879970657604, "jpy": 1.7705703210418282, "krw": 18.695477188035486, "kwd": 0.005213591473854112, "lkr": 3.2369012901251297, "ltc": 0.00010141874163717981, "mmk": 22.623932488833194, "mxn": 0.33777109106091674, "myr": 0.06891643519697525, "ngn": 6.672715534693669, "nok": 0.14438937434610147, "nzd": 0.023524261283270693, "php": 0.8255204637032014, "pkr": 2.756693597384697, "pln": 0.06303419706810354, "rub": 1.2737898350900372, "sar": 0.06446803009461788, "sek": 0.1402197281046752, "sgd": 0.022639233690215022, "thb": 0.5143171782267401, "try": 0.12550592742211453, "twd": 0.4815300875217759, "uah": 0.4854327287588138, "usd": 0.017184000797151343, "vef": 0.001720633999818765, "vnd": 396.7545878742637, "xag": 0.0006295315732034422, "xau": 8.933618334423024e-06, "xdr": 0.011850327525726722, "xlm": 0.05021728676513473, "xrp": 0.06794869937264739, "yfi": 6.910556211458545e-07, "zar": 0.25868442528015306, "bits": 0.46538318752607566, "link": 0.0010027492149399014, "sats": 46.538318752607566}, "market_cap": {"aed": 58025555.48111314, "ars": 1341317666.246638, "aud": 20224015.1000486, "bch": 34778.634359825075, "bdt": 1338635410.0628898, "bhd": 5956047.597404649, "bmd": 15797864.274738092, "bnb": 375817.696316354, "brl": 83959329.47452308, "btc": 431.00974367255367, "cad": 20016257.386971485, "chf": 13871946.641004803, "clp": 11003213857.567152, "cny": 102081059.58407529, "czk": 335280332.59735805, "dkk": 95250647.5926568, "dot": 1552026.8622310148, "eos": 4629289.333667977, "eth": 13160.013088013682, "eur": 12804184.792539528, "gbp": 11596785.621749807, "hkd": 122483290.39100729, "huf": 4594900404.52676, "idr": 218817868946.21426, "ils": 50340921.37263081, "inr": 1155415540.0961735, "jpy": 1627744352.3955424, "krw": 17183998033.263203, "kwd": 4793040.425226993, "lkr": 2975798701.114961, "ltc": 93674.978378799, "mmk": 20798987327.71671, "mxn": 310341334.31946415, "myr": 63357334.673837006, "ngn": 6134465169.397704, "nok": 132745898.98116271, "nzd": 21639677.51557212, "php": 758881168.8787899, "pkr": 2534326657.255652, "pln": 57973596.30551327, "rub": 1171037226.5885181, "sar": 59267757.34690007, "sek": 128932420.92815489, "sgd": 20813370.224681962, "thb": 472901168.1321482, "try": 115382861.30340452, "twd": 442697247.22314054, "uah": 446275605.66214615, "usd": 15797864.274738092, "vef": 1581840.1498295267, "vnd": 364791570475.7105, "xag": 578274.1866737949, "xau": 8212.677721865337, "xdr": 10894428.373959249, "xlm": 45159630.566143975, "xrp": 62581365.990823776, "yfi": 633.892165251967, "zar": 237790242.9565718, "bits": 431009743.67255366, "link": 925137.5337064371, "sats": 43100974367.25536}, "total_volume": {"aed": 6695707.0833681, "ars": 154765246.19469962, "aud": 2332377.4646924417, "bch": 3999.558661582438, "bdt": 154468329.04724005, "bhd": 687282.5215744929, "bmd": 1822953.1944917287, "bnb": 43302.85832663741, "brl": 9687902.456806835, "btc": 49.369863187159574, "cad": 2308679.073164048, "chf": 1600800.8263981896, "clp": 1269687060.38337, "cny": 11779376.656847194, "czk": 38711869.44758746, "dkk": 10989762.657699892, "dot": 179995.82347085257, "eos": 537458.3923195294, "eth": 1508.3527891930476, "eur": 1477319.4458629033, "gbp": 1337810.6608416447, "hkd": 14133520.182681875, "huf": 530224166.149862, "idr": 25250277906.68792, "ils": 5808958.846205538, "inr": 133335268.34931104, "jpy": 187829764.49526867, "krw": 1983297153.2523592, "kwd": 553080.3533024003, "lkr": 343384501.47570914, "ltc": 10758.939156909068, "mmk": 2400044697.9332414, "mxn": 35832219.55847025, "myr": 7310953.786509055, "ngn": 707870550.2574748, "nok": 15317449.895516874, "nzd": 2495555.47399098, "php": 87574784.48648086, "pkr": 292441990.5997907, "pln": 6686940.501455824, "rub": 135129139.97149092, "sar": 6839047.716004218, "sek": 14875115.771733053, "sgd": 2401667.915615074, "thb": 54560992.75704369, "try": 13314212.098949526, "twd": 51082796.239000425, "uah": 51496805.316048004, "usd": 1822953.1944917287, "vef": 182532.3033644569, "vnd": 42089444241.32805, "xag": 66783.43454190607, "xau": 947.716906752358, "xdr": 1257134.0442662183, "xlm": 5327267.17182096, "xrp": 7208292.180913983, "yfi": 73.31017188663868, "zar": 27442363.68447363, "bits": 49369863.18715957, "link": 106375.97764496118, "sats": 4936986318.715957}}, "community_data": {"facebook_likes": null, "twitter_followers": 17605, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1561164, "bing_matches": null}}, "GVT_20210327": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 21.84915778722923, "ars": 544.5872242328192, "aud": 7.825694738140883, "bch": 0.011619415400105781, "bdt": 504.23863104313955, "bhd": 2.2421440121626945, "bmd": 5.948262492439636, "bnb": 0.02330989037175696, "brl": 32.84273652575618, "btc": 0.00010911851053105426, "cad": 7.4929786756262695, "chf": 5.559704141645999, "clp": 4300.5957747017965, "cny": 38.7612577057337, "czk": 131.71654610209848, "dkk": 37.367300235417886, "dot": 0.17348247036598383, "eos": 1.4474092049403233, "eth": 0.0035533801611862875, "eur": 5.025246808437806, "gbp": 4.3338743106790565, "hkd": 46.20223667065104, "huf": 1839.2325039748014, "idr": 86012.47046692643, "ils": 19.58316719073439, "inr": 431.91791281914874, "jpy": 645.4676317421286, "krw": 6738.606202573045, "kwd": 1.7972794086156225, "lkr": 1180.3923505084215, "ltc": 0.031878751679955575, "mmk": 8384.651691627263, "mxn": 123.85591127007609, "myr": 24.521712125082384, "ngn": 2263.3138783732848, "nok": 51.50386354753755, "nzd": 8.512558452930362, "php": 289.73980057584777, "pkr": 928.5237750698278, "pln": 23.2138379095572, "rub": 454.30211681757316, "sar": 22.308149514195893, "sek": 51.19940768012449, "sgd": 8.008728723295741, "thb": 184.41696808087772, "try": 47.265339884612345, "twd": 169.623032539406, "uah": 165.28461970444542, "usd": 5.948262492439636, "vef": 0.5955995233679812, "vnd": 137784.36713003533, "xag": 0.23738468713127972, "xau": 0.003444460361497022, "xdr": 4.167745287527713, "xlm": 14.905704305242926, "xrp": 10.752500577045316, "yfi": 0.00017560719439454589, "zar": 88.70822302850002, "bits": 109.11851053105427, "link": 0.2211004591939407, "sats": 10911.851053105427}, "market_cap": {"aed": 97044642.196933, "ars": 2419458304.233559, "aud": 34718056.27545178, "bch": 51647.77879984986, "bdt": 2239612986.8243337, "bhd": 9960893.299831428, "bmd": 26419645.59428639, "bnb": 103643.32987908981, "brl": 145876073.14885223, "btc": 484.63561945803895, "cad": 33266930.821539983, "chf": 24685486.477123056, "clp": 19101403764.66909, "cny": 172160978.55060816, "czk": 584664115.0370002, "dkk": 165869668.3452403, "dot": 771001.5177503908, "eos": 6438872.766069738, "eth": 15809.802348908466, "eur": 22306450.23064876, "gbp": 19235721.24287041, "hkd": 205210634.20678037, "huf": 8165212074.95494, "idr": 382030717257.94104, "ils": 86980078.20778932, "inr": 1918395194.7328417, "jpy": 2866663645.208048, "krw": 29934984007.922035, "kwd": 7983884.800365395, "lkr": 5242799490.149739, "ltc": 141824.364424873, "mmk": 37241047516.96516, "mxn": 550082780.4274976, "myr": 108914988.96244572, "ngn": 10052675148.625992, "nok": 228528349.21184203, "nzd": 37787147.24520323, "php": 1285839633.3145206, "pkr": 4124106677.268109, "pln": 103043724.70238172, "rub": 2017583791.1697516, "sar": 99094621.7575303, "sek": 227285965.37777048, "sgd": 35556747.924842395, "thb": 819142379.7938361, "try": 209925219.9630809, "twd": 753171230.1822693, "uah": 734123801.7535499, "usd": 26419645.59428639, "vef": 2645399.1133559, "vnd": 611695961837.2454, "xag": 1052406.5033177468, "xau": 15289.313101869486, "xdr": 18511347.399966292, "xlm": 66400682.959107324, "xrp": 47817230.801069066, "yfi": 782.0418846117806, "zar": 393079571.5633451, "bits": 484635619.458039, "link": 982949.6364043286, "sats": 48463561945.803894}, "total_volume": {"aed": 5442877.0721668545, "ars": 135662955.3155738, "aud": 1949470.7703973856, "bch": 2894.5303196164195, "bdt": 125611655.63139753, "bhd": 558543.919868141, "bmd": 1481780.7557897377, "bnb": 5806.762397647916, "brl": 8181504.265017451, "btc": 27.182678842917067, "cad": 1866587.363822286, "chf": 1384986.3914792838, "clp": 1071327982.8325347, "cny": 9655876.117028259, "czk": 32812110.00376207, "dkk": 9308625.242251186, "dot": 43216.4831968849, "eos": 360566.3180398491, "eth": 885.1879599367412, "eur": 1251846.9087908205, "gbp": 1079618.0497646236, "hkd": 11509509.753483428, "huf": 458174018.5939667, "idr": 21426697906.795197, "ils": 4878392.693248764, "inr": 107595731.0407446, "jpy": 160793427.7305886, "krw": 1678664484.7145557, "kwd": 447723.0189233812, "lkr": 294049341.5493875, "ltc": 7941.364527540192, "mmk": 2088713390.9178658, "mxn": 30853935.25320495, "myr": 6108641.165743189, "ngn": 563817577.577996, "nok": 12830206.123311259, "nzd": 2120576.439610693, "php": 72177524.31492993, "pkr": 231305975.9787782, "pln": 5782834.622063916, "rub": 113171894.29189481, "sar": 5557217.202406626, "sek": 12754362.65710691, "sgd": 1995066.6460337914, "thb": 45940392.62568876, "try": 11774341.019061955, "twd": 42255052.744402565, "uah": 41174304.09592132, "usd": 1481780.7557897377, "vef": 148370.70707722654, "vnd": 34323674168.961758, "xag": 59135.26202943837, "xau": 858.0547822551639, "xdr": 1038233.3950361728, "xlm": 3713182.768762176, "xrp": 2678571.8437837563, "yfi": 43.74577644527281, "zar": 22098240.94531909, "bits": 27182678.842917066, "link": 55078.673132914075, "sats": 2718267884.2917066}}, "community_data": {"facebook_likes": null, "twitter_followers": 23083, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.727, "reddit_subscribers": 5513, "reddit_accounts_active_48h": "40.5833333333333"}, "developer_data": {"forks": 2, "stars": 17, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 231591, "bing_matches": null}}, "HC_20190512": {"id": "hshare", "symbol": "hc", "name": "HyperCash", "localization": {"en": "HyperCash", "de": "HyperCash", "es": "HyperCash", "fr": "HyperCash", "it": "HyperCash", "pl": "HyperCash", "ro": "HyperCash", "hu": "HyperCash", "nl": "HyperCash", "pt": "HyperCash", "sv": "HyperCash", "vi": "HyperCash", "tr": "HyperCash", "ru": "HyperCash", "ja": "\u30a8\u30a4\u30c1\u30b7\u30a7\u30a2", "zh": "\u8d85\u7ea7\u73b0\u91d1", "zh-tw": "\u7d05\u71d2\u8089", "ko": "\uc5d0\uc774\uce58\uc250\uc5b4", "ar": "HyperCash", "th": "HyperCash", "id": "HyperCash"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1085/thumb/hshare-hcash-logo.png?1547035052", "small": "https://assets.coingecko.com/coins/images/1085/small/hshare-hcash-logo.png?1547035052"}, "market_data": {"current_price": {"aed": 4.002234679757762, "ars": 49.11730108829386, "aud": 1.5576348214643665, "bch": 0.0038263754728725934, "bdt": 92.0661266141333, "bhd": 0.41072802637463396, "bmd": 1.0895827566781393, "bnb": 0.05296074408611765, "brl": 4.27966315168039, "btc": 0.00018293442647887193, "cad": 1.4680613126206141, "chf": 1.1118102449143732, "clp": 745.3925943054027, "cny": 7.390639838547813, "czk": 25.028710709953675, "dkk": 7.263883228549659, "eos": 0.22371038195402856, "eth": 0.006405522020474762, "eur": 0.9729723413101746, "gbp": 0.8373672297450402, "hkd": 8.55149220334028, "huf": 315.4941351099384, "idr": 15559.704142881621, "ils": 3.894059814092002, "inr": 75.96570979559985, "jpy": 119.8792836882271, "krw": 1278.2875943072254, "kwd": 0.3314401787539228, "lkr": 191.68212251170914, "ltc": 0.01470416814039662, "mmk": 1662.7513634403956, "mxn": 20.79523170258059, "myr": 4.5215505236629445, "ngn": 392.28664536170925, "nok": 9.547904738494871, "nzd": 1.654557566001914, "php": 56.89281642314857, "pkr": 154.26590294735502, "pln": 4.176432812564435, "rub": 70.88542123431239, "sar": 4.087733149091546, "sek": 10.472821032321752, "sgd": 1.4841653457643174, "thb": 34.64873166236477, "try": 6.713594905203156, "twd": 33.7346795982047, "uah": 28.576533811456095, "usd": 1.0895827566781393, "vef": 270747.8502334003, "vnd": 25470.035603905995, "xag": 0.07336777404554182, "xau": 0.0008501687375532513, "xdr": 0.7832629083794302, "xlm": 11.680251230854765, "xrp": 3.6363450055620556, "zar": 15.663947399532315, "bits": 182.93442647887193, "link": 1.846996090086492, "sats": 18293.442647887194}, "market_cap": {"aed": 176283039.2258171, "ars": 2163428136.337582, "aud": 68607820.95574701, "bch": 168614.30537337955, "bdt": 4055158657.080709, "bhd": 18090989.304236535, "bmd": 47991928.31113346, "bnb": 2331840.1958863917, "brl": 188502696.02046993, "btc": 8056.595112848339, "cad": 64662452.521217056, "chf": 48970963.64868052, "clp": 32831675914.748207, "cny": 325529249.7344178, "czk": 1102418409.937286, "dkk": 319946108.7543425, "eos": 9851156.572352957, "eth": 282103.99724239315, "eur": 42855688.16749096, "gbp": 36882804.737600535, "hkd": 376660330.07638294, "huf": 13896302802.130266, "idr": 685345102233.6667, "ils": 171518352.5911596, "inr": 3345997241.8522215, "jpy": 5280221216.326494, "krw": 56303650375.33859, "kwd": 14598664.672963677, "lkr": 8442860008.315375, "ltc": 647495.1020398025, "mmk": 73237800198.6344, "mxn": 915949947.7821361, "myr": 199156904.1055417, "ngn": 17278717422.999313, "nok": 420548468.5976312, "nzd": 72876894.94673558, "php": 2505909670.8931956, "pkr": 6794819493.723603, "pln": 183955796.7564881, "rub": 3122230076.908727, "sar": 180048917.8484635, "sek": 461287472.7669596, "sgd": 65371773.22165561, "thb": 1526143320.2940388, "try": 295708025.320446, "twd": 1485882843.6419065, "uah": 1258686367.4690146, "usd": 47991928.31113346, "vef": 11925401112632.645, "vnd": 1121857073538.2488, "xag": 3231568.167502853, "xau": 37446.6619033281, "xdr": 34499717.54538288, "xlm": 513934580.72304547, "xrp": 160090767.37192345, "zar": 689936616.6178998, "bits": 8056595112.848339, "link": 81343353.24007179, "sats": 805659511284.834}, "total_volume": {"aed": 43868914.41592189, "ars": 538379892.7837601, "aud": 17073398.77386098, "bch": 41941.30319034421, "bdt": 1009146477.4587622, "bhd": 4502033.008803944, "bmd": 11943030.963059517, "bnb": 580508.2749065724, "brl": 46909837.01670511, "btc": 2005.163450188562, "cad": 16091574.141418831, "chf": 12186668.79470593, "clp": 8170326465.669639, "cny": 81009579.02243263, "czk": 274342325.208746, "dkk": 79620186.51534508, "eos": 2452112.9781646067, "eth": 70211.5992164953, "eur": 10664851.960299997, "gbp": 9178470.098761462, "hkd": 93733803.64078599, "huf": 3458164330.5086956, "idr": 170551550320.99545, "ils": 42683198.35887841, "inr": 832668118.7445092, "jpy": 1314009411.5318491, "krw": 14011444495.551786, "kwd": 3632950.58865307, "lkr": 2101047864.5988288, "ltc": 161173.9303971618, "mmk": 18225592223.92703, "mxn": 227938717.445472, "myr": 49561189.890504405, "ngn": 4299895095.837689, "nok": 104655586.02619429, "nzd": 18135779.15014898, "php": 623608132.5193357, "pkr": 1690924754.5928607, "pln": 45778318.43417198, "rub": 776982542.5761483, "sar": 44806072.11256229, "sek": 114793690.60586849, "sgd": 16268092.139052855, "thb": 379788384.62529194, "try": 73588418.44260676, "twd": 369769364.00735015, "uah": 313230386.6184933, "usd": 11943030.963059517, "vef": 2967695605221.922, "vnd": 279179733694.6427, "xag": 804191.8722980471, "xau": 9318.788769546445, "xdr": 8585426.953259775, "xlm": 128028459.74885395, "xrp": 39858359.29176998, "zar": 171694171.59894687, "bits": 2005163450.188562, "link": 20245118.01178306, "sats": 200516345018.8562}}, "community_data": {"facebook_likes": null, "twitter_followers": 12740, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 801, "reddit_accounts_active_48h": "60.25"}, "developer_data": {"forks": 37, "stars": 118, "subscribers": 38, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 932135, "bing_matches": null}}, "BQX_20190224": {"id": "ethos", "symbol": "vgx", "name": "Voyager Token", "localization": {"en": "Voyager Token", "de": "Voyager Token", "es": "Voyager Token", "fr": "Voyager Token", "it": "Voyager Token", "pl": "Voyager Token", "ro": "Voyager Token", "hu": "Voyager Token", "nl": "Voyager Token", "pt": "Voyager Token", "sv": "Voyager Token", "vi": "Voyager Token", "tr": "Voyager Token", "ru": "Voyager Token", "ja": "\u30a4\u30fc\u30bd\u30b9", "zh": "Voyager Token", "zh-tw": "Voyager Token", "ko": "\uc5d0\ud1a0\uc2a4", "ar": "Voyager Token", "th": "Voyager Token", "id": "Voyager Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/794/thumb/Voyager-vgx.png?1575693595", "small": "https://assets.coingecko.com/coins/images/794/small/Voyager-vgx.png?1575693595"}, "market_data": {"current_price": {"aed": 0.5701148467441397, "ars": 6.157650906633819, "aud": 0.2164699957899113, "bch": 0.0010570385256961246, "bdt": 13.053396842821972, "bhd": 0.05851064365765408, "bmd": 0.15521011535890483, "bnb": 0.014125888728041373, "brl": 0.5782352847696, "btc": 3.910752900869446e-05, "cad": 0.20443500344498167, "chf": 0.15524115738197683, "clp": 101.38488854419658, "cny": 1.0432137483618067, "czk": 3.5100301958070292, "dkk": 1.0207200776035357, "eos": 0.03995907804069022, "eth": 0.001043385991784885, "eur": 0.13679614248283975, "gbp": 0.11897522745756108, "hkd": 1.218220913934742, "huf": 43.37672614946858, "idr": 2183.260968922752, "ils": 0.5601719315441304, "inr": 11.029075587288437, "jpy": 17.196116705901463, "krw": 174.27457382843923, "kwd": 0.047121635812848256, "lkr": 27.8912577299952, "ltc": 0.003014766581062696, "mmk": 239.3833239685129, "mxn": 2.9838430711218833, "myr": 0.6311619341069868, "ngn": 56.18606175992355, "nok": 1.333044115596336, "nzd": 0.22623566103817802, "php": 8.071038991627042, "pkr": 21.589395051986937, "pln": 0.5924727086514737, "rub": 10.188116140250825, "sar": 0.5820922561362696, "sek": 1.4447050663676066, "sgd": 0.2097684886390598, "thb": 4.827034587661943, "try": 0.826392046450494, "twd": 4.780471553054288, "uah": 4.1942491557483, "usd": 0.15521011535890483, "vef": 38567.795617487915, "vnd": 3605.9667846472485, "xag": 0.009651514416825066, "xau": 0.00011578829815889673, "xdr": 0.11122449992688362, "xlm": 1.7009397336301872, "xrp": 0.4693396029069163, "zar": 2.1757974811472716, "bits": 39.107529008694456, "link": 0.335180952182597, "sats": 3910.752900869446}, "market_cap": {"aed": 53157407.024288654, "ars": 574138276.5713414, "aud": 20183623.949569907, "bch": 98551.47021762299, "bdt": 1217096402.5689747, "bhd": 5455522.019686818, "bmd": 14471763.58156286, "bnb": 1316764.2855030862, "brl": 53914555.22311227, "btc": 3645.463276785993, "cad": 19061483.401455533, "chf": 14474657.934279175, "clp": 9453108995.90497, "cny": 97269064.56075852, "czk": 327274591.8679695, "dkk": 95171758.69546396, "eos": 3727391.2157763126, "eth": 97294.60520652859, "eur": 12754848.022009816, "gbp": 11093229.07110195, "hkd": 113586701.58714947, "huf": 4044438239.9029694, "idr": 203566864866.00925, "ils": 52230331.37749014, "inr": 1028349048.342276, "jpy": 1603362866.6103039, "krw": 16249330302.286215, "kwd": 4393612.951598919, "lkr": 2600575915.606844, "ltc": 281011.60473058745, "mmk": 22320058598.179657, "mxn": 278212997.84429836, "myr": 58849426.60442542, "ngn": 5238778416.525755, "nok": 124292796.51068112, "nzd": 21094172.842358258, "php": 752542241.6851553, "pkr": 2012991359.0930922, "pln": 55242050.09644922, "rub": 949938138.9046506, "sar": 54274178.548114434, "sek": 134704043.7230018, "sgd": 19558776.613408767, "thb": 450071847.386606, "try": 77052647.59491256, "twd": 445730318.31213725, "uah": 391071046.13511646, "usd": 14471763.58156286, "vef": 3596054411451.724, "vnd": 336219702367.41656, "xag": 899905.4895446553, "xau": 10796.080349481686, "xdr": 10370552.613129435, "xlm": 158389222.12439263, "xrp": 43754802.24873777, "zar": 202870970.59178072, "bits": 3645463276.785993, "link": 31244363.508320015, "sats": 364546327678.5993}, "total_volume": {"aed": 2001124.748110189, "ars": 21613588.367078852, "aud": 759817.9003272076, "bch": 3710.245340138857, "bdt": 45817918.29883259, "bhd": 205374.57973574798, "bmd": 544793.39518259, "bnb": 49582.40551735802, "brl": 2029627.793752739, "btc": 137.26891096357866, "cad": 717574.620464749, "chf": 544902.3538616273, "clp": 355864806.37862897, "cny": 3661719.847040741, "czk": 12320339.194035733, "dkk": 3582766.2090373095, "eos": 140257.88038243816, "eth": 3662.324427992438, "eur": 480159.6515715228, "gbp": 417607.56352344836, "hkd": 4276001.639778878, "huf": 152253954.9450739, "idr": 7663328856.361271, "ils": 1966224.7384213882, "inr": 38712473.868279725, "jpy": 60359022.235767104, "krw": 611710367.9128679, "kwd": 165398.72998403953, "lkr": 97899373.11431143, "ltc": 10581.945110872728, "mmk": 840244551.8021309, "mxn": 10473402.41742352, "myr": 2215402.3415100034, "ngn": 197215209.05609757, "nok": 4679035.435187792, "nzd": 794095.7559587002, "php": 28329653.159086403, "pkr": 75779595.95682606, "pln": 2079601.691892843, "rub": 35760674.29450144, "sar": 2043165.9096230294, "sek": 5070969.609963255, "sgd": 736295.3559034086, "thb": 16943074.59017856, "try": 2900667.4448800567, "twd": 16779636.57162384, "uah": 14721973.709754938, "usd": 544793.39518259, "vef": 135374426277.39127, "vnd": 12657080261.68871, "xag": 33877.18188107237, "xau": 406.4213207401644, "xdr": 390402.215748216, "xlm": 5970363.016241357, "xrp": 1647399.817789245, "zar": 7637131.731027621, "bits": 137268910.96357867, "link": 1176497.8623837733, "sats": 13726891096.357866}}, "community_data": {"facebook_likes": null, "twitter_followers": 60541, "reddit_average_posts_48h": 0.261, "reddit_average_comments_48h": 0.565, "reddit_subscribers": 5810, "reddit_accounts_active_48h": "865.875"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 364991, "bing_matches": null}}, "SYS_20190227": {"id": "syscoin", "symbol": "sys", "name": "Syscoin", "localization": {"en": "Syscoin", "de": "Syscoin", "es": "Syscoin", "fr": "Syscoin", "it": "Syscoin", "pl": "Syscoin", "ro": "Syscoin", "hu": "Syscoin", "nl": "Syscoin", "pt": "Syscoin", "sv": "Syscoin", "vi": "Syscoin", "tr": "Syscoin", "ru": "Syscoin", "ja": "\u30b7\u30b9\u30b3\u30a4\u30f3", "zh": "\u7cfb\u7edf\u5e01", "zh-tw": "\u7cfb\u7d71\u5e63", "ko": "\uc2dc\uc2a4\ucf54\uc778", "ar": "Syscoin", "th": "Syscoin", "id": "Syscoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/119/thumb/Syscoin.png?1560401261", "small": "https://assets.coingecko.com/coins/images/119/small/Syscoin.png?1560401261"}, "market_data": {"current_price": {"aed": 0.19689178744721983, "ars": 2.1006713741035723, "aud": 0.07517174356190434, "bch": 0.00035603453592852256, "bdt": 4.501894584337626, "bhd": 0.020196045853147295, "bmd": 0.05360496514503334, "bnb": 0.005066252810176464, "brl": 0.20092079023248577, "btc": 1.302744011084177e-05, "cad": 0.0704020809732295, "chf": 0.05363712812412039, "clp": 34.88884747462357, "cny": 0.35991445697678237, "czk": 1.2132867403479124, "dkk": 0.35289220654278347, "eos": 0.012657731704288088, "eth": 0.00033998004912946914, "eur": 0.04728118740687374, "gbp": 0.0410687471813204, "hkd": 0.42069444670647926, "huf": 15.033566079889757, "idr": 751.2959399389222, "ils": 0.1935726216104047, "inr": 3.8078498194337125, "jpy": 5.932193467775115, "krw": 60.21482057465971, "kwd": 0.01626551538885296, "lkr": 9.61834061133221, "ltc": 0.0010447638747270575, "mmk": 81.91393137118075, "mxn": 1.026275098446435, "myr": 0.21844811289588661, "ngn": 19.37819489992955, "nok": 0.46153338940222216, "nzd": 0.0783297728734936, "php": 2.789602386147532, "pkr": 7.488097843786529, "pln": 0.20505775341755358, "rub": 3.5043602703983803, "sar": 0.20107222425902022, "sek": 0.5010992141757714, "sgd": 0.07242566840745454, "thb": 1.6790415207553044, "try": 0.2851251312362237, "twd": 1.648888727861231, "uah": 1.4479471389022638, "usd": 0.05360496514503334, "vef": 13320.171401300267, "vnd": 1243.8198978859637, "xag": 0.0033672516347490146, "xau": 4.037043530037606e-05, "xdr": 0.03841551582650185, "xlm": 0.5717796690373795, "xrp": 0.16187274694972337, "zar": 0.7502711736594304, "bits": 13.02744011084177, "link": 0.11679651792870256, "sats": 1302.7440110841771}, "market_cap": {"aed": 108049052.92499217, "ars": 1152793396.9281352, "aud": 41252282.80921288, "bch": 195382.4225704604, "bdt": 2470521764.8360596, "bhd": 11083060.677923134, "bmd": 29417000.023684092, "bnb": 2780226.768802574, "brl": 110260064.06377237, "btc": 7149.117717217333, "cad": 38634816.981105484, "chf": 29434650.223698318, "clp": 19146085147.345802, "cny": 197511621.55901948, "czk": 665819965.9860617, "dkk": 193657994.5559171, "eos": 6946231.432804675, "eth": 186572.14096184057, "eur": 25946676.53089007, "gbp": 22537452.147145253, "hkd": 230866087.03587416, "huf": 8250027073.642235, "idr": 412291522309.1932, "ils": 106227581.70052579, "inr": 2089648186.9804096, "jpy": 3255432307.6210003, "krw": 33044315456.196465, "kwd": 8926088.568186566, "lkr": 5278293255.593634, "ltc": 573339.0338830898, "mmk": 44952218783.586754, "mxn": 563192878.0034355, "myr": 119878599.39551583, "ngn": 10634245508.5618, "nok": 253277428.50391746, "nzd": 42985326.53160813, "php": 1530860681.2325184, "pkr": 4109271852.9344378, "pln": 112530321.0406001, "rub": 1923101076.1483188, "sar": 110343167.0888391, "sek": 274990116.2213987, "sgd": 39745308.731999576, "thb": 921413983.2418435, "try": 156469199.6279761, "twd": 904866920.7285256, "uah": 794595442.8687414, "usd": 29417000.023684092, "vef": 7309760977688.674, "vnd": 682575762647.6185, "xag": 1847859.4501677381, "xau": 22154.236887836727, "xdr": 21081428.313973, "xlm": 313777697.4969846, "xrp": 88831521.25871716, "zar": 411729157.43148977, "bits": 7149117717.217333, "link": 64094868.10370961, "sats": 714911771721.7333}, "total_volume": {"aed": 1089841.6365388627, "ars": 11627702.495194681, "aud": 416093.0076727909, "bch": 1970.7336010889294, "bdt": 24919029.000309076, "bhd": 111789.79047111474, "bmd": 296715.89504936844, "bnb": 28042.882465285347, "brl": 1112143.099926669, "btc": 72.10989769757559, "cad": 389691.82076308783, "chf": 296893.92458639824, "clp": 193117849.76755983, "cny": 1992209.862540467, "czk": 6715823.061163145, "dkk": 1953340.0802890023, "eos": 70063.4760562024, "eth": 1881.8682990175453, "eur": 261712.32091039434, "gbp": 227325.02568543793, "hkd": 2328641.1801421978, "huf": 83214269.4824905, "idr": 4158597000.5352793, "ils": 1071469.285033302, "inr": 21077330.51089455, "jpy": 32836064.525638364, "krw": 333302975.4558601, "kwd": 90033.39418251533, "lkr": 53239742.54361678, "ltc": 5783.009976149706, "mmk": 453412578.4440396, "mxn": 5680670.318104416, "myr": 1209160.8895627453, "ngn": 107262796.0603467, "nok": 2554694.184785555, "nzd": 433573.43119783385, "php": 15441095.178369116, "pkr": 41448355.538054585, "pln": 1135042.1491271032, "rub": 19397445.5797784, "sar": 1112981.3223301817, "sek": 2773700.186921495, "sgd": 400892.84580120165, "thb": 9293883.622683829, "try": 1578233.6260629636, "twd": 9126980.931718603, "uah": 8014722.706024628, "usd": 296715.89504936844, "vef": 73730233176.24529, "vnd": 6884831158.511487, "xag": 18638.5175320569, "xau": 223.4597077206299, "xdr": 212638.77574407452, "xlm": 3164932.871618085, "xrp": 896003.138241705, "zar": 4152924.6818794766, "bits": 72109897.69757558, "link": 646495.7725856391, "sats": 7210989769.757559}}, "community_data": {"facebook_likes": null, "twitter_followers": 62605, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.304, "reddit_subscribers": 4633, "reddit_accounts_active_48h": "1004.91666666667"}, "developer_data": {"forks": 31, "stars": 93, "subscribers": 61, "total_issues": 206, "closed_issues": 181, "pull_requests_merged": 90, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 882608, "bing_matches": null}}, "BRD_20190525": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 1.751425449945734, "ars": 21.356140435950728, "aud": 0.6926992146018414, "bch": 0.001146089924029522, "bdt": 40.28959378100715, "bhd": 0.17977474882653208, "bmd": 0.4768143606170608, "bnb": 0.01474707730934879, "brl": 1.92571015822412, "btc": 6.003656922536878e-05, "cad": 0.6390981282530768, "chf": 0.48211176816351603, "clp": 331.7668093977957, "cny": 3.291115761287135, "czk": 11.008455365261247, "dkk": 3.189725955645523, "eos": 0.07599078217446235, "eth": 0.0018692377978208501, "eur": 0.42708071554725846, "gbp": 0.3752347828599234, "hkd": 3.742668020264347, "huf": 139.31561988509296, "idr": 6892.351582719619, "ils": 1.7238031172208292, "inr": 33.20773614517519, "jpy": 52.72041022470717, "krw": 568.7060241951806, "kwd": 0.14516136394625803, "lkr": 83.99561776630145, "ltc": 0.005230536905211643, "mmk": 734.0780006717698, "mxn": 9.066291297080994, "myr": 1.995658824926644, "ngn": 172.13417108965953, "nok": 4.17603553315634, "nzd": 0.732692495912959, "php": 24.968678664987213, "pkr": 71.91985159994785, "pln": 1.8390253074639404, "rub": 30.6895364624483, "sar": 1.7882922594942858, "sek": 4.601339638395939, "sgd": 0.6565252163192725, "thb": 15.234218821715059, "try": 2.8923292098988957, "twd": 15.000082467634579, "uah": 12.485051693148376, "usd": 0.4768143606170608, "vef": 118482.47625638312, "vnd": 11134.819159372599, "xag": 0.0329769961397854, "xau": 0.0003740322570424471, "xdr": 0.3440406337596339, "xlm": 3.553544697676341, "xrp": 1.2020980368340373, "zar": 6.8642352703170975, "bits": 60.03656922536878, "link": 0.40189585519925725, "sats": 6003.656922536878}, "market_cap": {"aed": 105354478.93308799, "ars": 1284733556.8997731, "aud": 41654987.80335717, "bch": 68552.65894402894, "bdt": 2423562566.9110293, "bhd": 10814091.452498237, "bmd": 28682082.07901758, "bnb": 883941.5987460047, "brl": 115838324.89252828, "btc": 3603.0309037695715, "cad": 38446896.92281918, "chf": 28997441.571476378, "clp": 19957027674.03849, "cny": 197972335.13400328, "czk": 662191116.5308492, "dkk": 191864514.4373584, "eos": 4559628.152629174, "eth": 111650.26076863674, "eur": 25690426.18984774, "gbp": 22571565.26665745, "hkd": 225134668.41198182, "huf": 8380330741.847352, "idr": 414589457723.4714, "ils": 103692897.23616846, "inr": 1997563606.3931792, "jpy": 3171592931.0925684, "krw": 34209979758.106667, "kwd": 8731973.068136124, "lkr": 5052635579.039727, "ltc": 313473.58955873165, "mmk": 44157406334.03085, "mxn": 545396875.206794, "myr": 120045986.33352004, "ngn": 10354483487.888083, "nok": 251191938.43162042, "nzd": 44066290.44374042, "php": 1503766054.9852786, "pkr": 4326235233.416462, "pln": 110623922.3705629, "rub": 1846437715.9188383, "sar": 107572148.83735557, "sek": 276761326.2350946, "sgd": 39489404.56014524, "thb": 916392522.424612, "try": 173994171.88010877, "twd": 902223573.8775779, "uah": 751020327.8278662, "usd": 28682082.07901758, "vef": 7127142950377.906, "vnd": 669783386932.7571, "xag": 1983340.7355318356, "xau": 22496.21743703587, "xdr": 20695269.50329436, "xlm": 213172443.6830032, "xrp": 72067087.99784507, "zar": 412950334.096819, "bits": 3603030903.7695713, "link": 24119352.672270056, "sats": 360303090376.95715}, "total_volume": {"aed": 14304954.173236845, "ars": 174428554.90249446, "aud": 5657694.72004847, "bch": 9360.811698927171, "bdt": 329069554.5810944, "bhd": 1468329.4362020297, "bmd": 3894432.1483849725, "bnb": 120448.32687908676, "brl": 15728443.11768236, "btc": 490.3550827777862, "cad": 5219902.130087792, "chf": 3937699.2895535273, "clp": 2709740802.7178764, "cny": 26880539.017797567, "czk": 89912733.381295, "dkk": 26052426.96576498, "eos": 620662.8187501719, "eth": 15267.199090625245, "eur": 3488227.2975798226, "gbp": 3064770.1123573347, "hkd": 30568640.256528985, "huf": 1137875185.1151223, "idr": 56294016704.904816, "ils": 14079345.824448774, "inr": 271227726.97427136, "jpy": 430599573.7826296, "krw": 4644967112.021723, "kwd": 1185620.9232543213, "lkr": 686043167.2594969, "ltc": 42720.96807363106, "mmk": 5995660368.824921, "mxn": 74049901.1990365, "myr": 16299756.313850446, "ngn": 1405924202.57567, "nok": 34108215.64198525, "nzd": 5984344.110926418, "php": 203934346.2092465, "pkr": 587413059.0686147, "pln": 15020435.35310599, "rub": 250660062.46900573, "sar": 14606067.772517834, "sek": 37581932.28538019, "sgd": 5362239.730679138, "thb": 124427107.1408996, "try": 23623407.32390293, "twd": 122514773.49546021, "uah": 101972991.386253, "usd": 3894432.1483849725, "vef": 967718262419.732, "vnd": 90944823147.9335, "xag": 269343.133369025, "xau": 3054.9483544791074, "xdr": 2809988.5723456917, "xlm": 29023955.346991137, "xrp": 9818263.93420381, "zar": 56064373.72441088, "bits": 490355082.7777862, "link": 3282527.2644161563, "sats": 49035508277.77862}}, "community_data": {"facebook_likes": null, "twitter_followers": 167, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 218, "stars": 179, "subscribers": 29, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 8, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 29, "deletions": -19}, "commit_count_4_weeks": 6}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BLZ_20190513": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.1688175429168747, "ars": 2.0787433519818266, "aud": 0.0657652794298655, "bch": 0.00016184035051929573, "bdt": 3.884109288253199, "bhd": 0.0173274189164121, "bmd": 0.045959494758596064, "bnb": 0.0024517941773794815, "brl": 0.18139697834876573, "btc": 7.443395604748285e-06, "cad": 0.061891491495147694, "chf": 0.04666497300314051, "clp": 31.482298674186218, "cny": 0.3137884504643149, "czk": 1.0542924259642918, "dkk": 0.30584338664590177, "eos": 0.009490439941348012, "eth": 0.0002694810368666513, "eur": 0.040963467880862886, "gbp": 0.0353272252411425, "hkd": 0.36070160473915197, "huf": 13.278157630705993, "idr": 659.0553242522582, "ils": 0.1641140022637852, "inr": 3.2263587381091954, "jpy": 5.04593888904102, "krw": 54.24093611914754, "kwd": 0.013984646984135167, "lkr": 8.064052950343248, "ltc": 0.0006213272518053137, "mmk": 70.26434197058147, "mxn": 0.883792122106326, "myr": 0.19131862215826237, "ngn": 16.545418113094584, "nok": 0.4037008484403468, "nzd": 0.06976246860801014, "php": 2.3997856814228764, "pkr": 6.504487262223358, "pln": 0.17608750771677928, "rub": 2.9982595595665296, "sar": 0.1723595952184251, "sek": 0.4435596798646864, "sgd": 0.06270607758024907, "thb": 1.4600871889858424, "try": 0.28312404576390576, "twd": 1.425479689432613, "uah": 1.2033574512643208, "usd": 0.045959494758596064, "vef": 11420.366491151102, "vnd": 1072.6673761134714, "xag": 0.003110520681058831, "xau": 3.578819897357116e-05, "xdr": 0.03304795601757939, "xlm": 0.5106528664244213, "xrp": 0.15513130032736916, "zar": 0.6591741454941538, "bits": 7.443395604748285, "link": 0.07208156349683743, "sats": 744.3395604748285}, "market_cap": {"aed": 34744550.341050446, "ars": 427829723.58991045, "aud": 13533749.622090284, "bch": 33310.01478130468, "bdt": 799393406.4204736, "bhd": 3566177.8297424293, "bmd": 9458981.286533514, "bnb": 504754.65583527397, "brl": 37332697.882709116, "btc": 1532.0342884184138, "cad": 12738079.03422966, "chf": 9603996.928637361, "clp": 6480348079.404103, "cny": 64581194.73380752, "czk": 216987138.91682196, "dkk": 62947628.6656232, "eos": 1953577.3425657856, "eth": 55451.52643784031, "eur": 8430969.741331773, "gbp": 7270627.047931408, "hkd": 74235598.57372092, "huf": 2733361822.3695884, "idr": 135631367161.00722, "ils": 33776508.73720532, "inr": 664020940.3457537, "jpy": 1038563038.8268762, "krw": 11163395124.55399, "kwd": 2878197.7438289905, "lkr": 1659672856.5351677, "ltc": 127920.54806982666, "mmk": 14461192389.10937, "mxn": 181878947.49919102, "myr": 39375525.694217935, "ngn": 3405233263.1520653, "nok": 83091834.65471387, "nzd": 14359556.524329796, "php": 493980286.2859107, "pkr": 1338696685.3102481, "pln": 36247289.23906074, "rub": 617205150.2332126, "sar": 35473544.56982231, "sek": 91289167.55826825, "sgd": 12906496.196036382, "thb": 300552036.14363754, "try": 58273804.12722773, "twd": 293379763.58312374, "uah": 247664507.025307, "usd": 9458981.286533514, "vef": 2350439957892.455, "vnd": 220805599989.0208, "xag": 640419.6658760614, "xau": 7367.12757501662, "xdr": 6801641.296763802, "xlm": 105122840.39801933, "xrp": 31920530.79713575, "zar": 135643352.3808029, "bits": 1532034288.4184139, "link": 14836162.51291517, "sats": 153203428841.84137}, "total_volume": {"aed": 2248627.8561929837, "ars": 27688592.82263061, "aud": 875985.0234825863, "bch": 2155.6925550854485, "bdt": 51735833.79521525, "bhd": 230798.98082958552, "bmd": 612174.5310653036, "bnb": 32657.581609406167, "brl": 2416184.310567274, "btc": 99.1450675818856, "cad": 824386.6687826847, "chf": 621571.4101171559, "clp": 419340150.0377265, "cny": 4179621.6108483644, "czk": 14043038.872825658, "dkk": 4073794.3874885757, "eos": 126411.43361593431, "eth": 3589.4525873563675, "eur": 545628.0986658499, "gbp": 470554.07504865696, "hkd": 4804498.763433275, "huf": 176863343.7700769, "idr": 8778531752.565817, "ils": 2185977.302509229, "inr": 42974681.46516185, "jpy": 67211253.94019075, "krw": 722482259.8179613, "kwd": 186273.69066161325, "lkr": 107412143.22071794, "ltc": 8275.99870298554, "mmk": 935911955.133225, "mxn": 11771996.858352251, "myr": 2548339.323984596, "ngn": 220382831.1835093, "nok": 5377243.132952661, "nzd": 929227.0667983982, "php": 31964835.16406602, "pkr": 86638929.78995533, "pln": 2345462.84786596, "rub": 39936429.883107185, "sar": 2295807.5351276575, "sek": 5908157.616764351, "sgd": 835236.8501712864, "thb": 19448172.677413683, "try": 3771175.7028489374, "twd": 18987205.255521424, "uah": 16028565.746882845, "usd": 612174.5310653036, "vef": 152117805864.4067, "vnd": 14287790834.308403, "xag": 41431.7335144327, "xau": 476.69418559524115, "xdr": 440194.5035295346, "xlm": 6801830.191617898, "xrp": 2066328.8735065064, "zar": 8780114.436153183, "bits": 99145067.58188559, "link": 960117.1110323648, "sats": 9914506758.18856}}, "community_data": {"facebook_likes": null, "twitter_followers": 35754, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 29, "stars": 200, "subscribers": 54, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 276, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 2178, "deletions": -915}, "commit_count_4_weeks": 14}, "public_interest_stats": {"alexa_rank": 825478, "bing_matches": null}}, "RDN_20190515": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 1.0068007771826573, "ars": 12.283022053061503, "aud": 0.39151738782480516, "bch": 0.0007652568374857592, "bdt": 23.123207695096806, "bhd": 0.10335878135833376, "bmd": 0.2740950628849106, "bnb": 0.012888731235516544, "brl": 1.084936782664198, "btc": 3.766770127118119e-05, "cad": 0.36763164766476364, "chf": 0.2772668909526145, "clp": 188.0308936158792, "cny": 1.8704384138797714, "czk": 6.275832134382702, "dkk": 1.821608378426826, "eos": 0.049136653958150395, "eth": 0.0013978578812414717, "eur": 0.24399942498014712, "gbp": 0.21086133187736147, "hkd": 2.1512488058053627, "huf": 78.82151723381354, "idr": 3924.895333927131, "ils": 0.9755015878567692, "inr": 19.16815298519902, "jpy": 30.13540435654318, "krw": 322.1165179023468, "kwd": 0.08339205240741968, "lkr": 48.30740825502676, "ltc": 0.003033219193134267, "mmk": 417.8615389560209, "mxn": 5.236901385738547, "myr": 1.1399495804506385, "ngn": 98.67422263856781, "nok": 2.3880038982734613, "nzd": 0.41554757608298853, "php": 14.311190115448781, "pkr": 38.81871328107563, "pln": 1.0482491584970521, "rub": 17.848440076420736, "sar": 1.027955982326241, "sek": 2.6345167749802636, "sgd": 0.37350934219326754, "thb": 8.648932661801904, "try": 1.6401579949871403, "twd": 8.484064481476622, "uah": 7.176731350308629, "usd": 0.2740950628849106, "vef": 68109.23592617, "vnd": 6398.628585579282, "xag": 0.0185475085705062, "xau": 0.00021318291705999673, "xdr": 0.19695785981252462, "xlm": 2.619521252646078, "xrp": 0.838477088360015, "zar": 3.8823921087270414, "bits": 37.667701271181194, "link": 0.3951115699101439, "sats": 3766.770127118119}, "market_cap": {"aed": 51056980.45380369, "ars": 622897827.5441121, "aud": 19854668.44139, "bch": 38717.467712480466, "bdt": 1172626392.5038795, "bhd": 5241540.728949998, "bmd": 13899935.90128115, "bnb": 652289.7670677657, "brl": 55019421.281246, "btc": 1908.4986141217262, "cad": 18643372.427208733, "chf": 14060785.95953077, "clp": 9535441248.785881, "cny": 94853857.58713761, "czk": 318260619.06028676, "dkk": 92377584.0063244, "eos": 2484149.6639005328, "eth": 70399.64111112196, "eur": 12373722.939320473, "gbp": 10693220.688855575, "hkd": 109094341.91800004, "huf": 3997204567.1314197, "idr": 199039679834.4807, "ils": 49469732.8733005, "inr": 972057267.4163427, "jpy": 1528229602.1910546, "krw": 16335204671.185589, "kwd": 4228985.998285278, "lkr": 2449770058.732635, "ltc": 152306.67958155746, "mmk": 21190635635.557533, "mxn": 265574260.32026187, "myr": 57809235.71618456, "ngn": 5003976924.461214, "nok": 121100689.55144963, "nzd": 21073289.721791197, "php": 725750486.6452568, "pkr": 1968578422.018933, "pln": 53158914.860859655, "rub": 905131856.0388552, "sar": 52129805.30653645, "sek": 133601874.90298496, "sgd": 18941442.652675807, "thb": 438605527.396976, "try": 83175854.23954809, "twd": 430244715.9523559, "uah": 363947109.0797842, "usd": 13899935.90128115, "vef": 3453962299410.387, "vnd": 324487884821.9239, "xag": 940583.0865576369, "xau": 10810.953145939437, "xdr": 9988146.440263098, "xlm": 131972571.76344879, "xrp": 42141302.945031255, "zar": 196884252.0801069, "bits": 1908498614.1217263, "link": 20019004.562242642, "sats": 190849861412.1726}, "total_volume": {"aed": 2308134.7450042795, "ars": 28159364.41135816, "aud": 897570.7077228451, "bch": 1754.3847159074282, "bdt": 53010963.34704202, "bhd": 236954.51956448908, "bmd": 628374.9003940407, "bnb": 29547.97916124425, "brl": 2487264.949484713, "btc": 86.3548499751325, "cad": 842811.6054029095, "chf": 635646.4547413999, "clp": 431069034.23682624, "cny": 4288061.739033948, "czk": 14387619.210741905, "dkk": 4176116.7505287523, "eos": 112647.92481728787, "eth": 3204.6502320946797, "eur": 559379.3363307744, "gbp": 483408.810873135, "hkd": 4931831.824487643, "huf": 180701770.10631382, "idr": 8997993938.873207, "ils": 2236379.9867533897, "inr": 43943827.72180628, "jpy": 69086730.39042704, "krw": 738466182.9430765, "kwd": 191179.92157038505, "lkr": 110746842.83274555, "ltc": 6953.787449864958, "mmk": 957965824.5440266, "mxn": 12005825.10316363, "myr": 2613384.190618097, "ngn": 226214964.14185467, "nok": 5474603.212201002, "nzd": 952660.963615292, "php": 32809028.25707328, "pkr": 88993595.2683064, "pln": 2403156.9690669696, "rub": 40918328.25138901, "sar": 2356633.9765664935, "sek": 6039744.746368391, "sgd": 856286.4767669591, "thb": 19828055.794483744, "try": 3760133.823217697, "twd": 19450088.29189671, "uah": 16452970.002230713, "usd": 628374.9003940407, "vef": 156143397442.3383, "vnd": 14669135437.18263, "xag": 42520.97329984803, "xau": 488.7311462794726, "xdr": 451534.49405064783, "xlm": 6005366.8566175755, "xrp": 1922245.3382976102, "zar": 8900553.439141383, "bits": 86354849.9751325, "link": 905810.5270982897, "sats": 8635484997.51325}}, "community_data": {"facebook_likes": null, "twitter_followers": 25677, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4447, "reddit_accounts_active_48h": "1118.32"}, "developer_data": {"forks": 353, "stars": 1710, "subscribers": 220, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2205, "pull_request_contributors": 66, "code_additions_deletions_4_weeks": {"additions": 47812, "deletions": -36467}, "commit_count_4_weeks": 407}, "public_interest_stats": {"alexa_rank": 1314746, "bing_matches": null}}, "CND_20190603": {"id": "cindicator", "symbol": "cnd", "name": "Cindicator", "localization": {"en": "Cindicator", "de": "Cindicator", "es": "Cindicator", "fr": "Cindicator", "it": "Cindicator", "pl": "Cindicator", "ro": "Cindicator", "hu": "Cindicator", "nl": "Cindicator", "pt": "Cindicator", "sv": "Cindicator", "vi": "Cindicator", "tr": "Cindicator", "ru": "Cindicator", "ja": "\u30b7\u30f3\u30c7\u30a3\u30b1\u30fc\u30bf\u30fc", "zh": "Cindicator", "zh-tw": "Cindicator", "ko": "\uc2e0\ub514\ucf00\uc774\ud130", "ar": "Cindicator", "th": "Cindicator", "id": "Cindicator"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1006/thumb/cindicator.png?1547034913", "small": "https://assets.coingecko.com/coins/images/1006/small/cindicator.png?1547034913"}, "market_data": {"current_price": {"aed": 0.06730673215005052, "ars": 0.8163594632016841, "aud": 0.026530885467592552, "bch": 4.321942574919884e-05, "bdt": 1.5479968811872524, "bhd": 0.006907056538615626, "bmd": 0.018323826718599105, "bnb": 0.000575810618709087, "brl": 0.07295631608010246, "btc": 2.2071833054520565e-06, "cad": 0.024784588133656554, "chf": 0.018456509547868476, "clp": 13.004034087313535, "cny": 0.1264692196290992, "czk": 0.42526120286791896, "dkk": 0.12292522662728161, "eos": 0.0024935052133336355, "eth": 7.183519103182001e-05, "eur": 0.016458277920378524, "gbp": 0.014533249980629395, "hkd": 0.14380997304424548, "huf": 5.3456099686169125, "idr": 264.0283442163337, "ils": 0.06656496532065503, "inr": 1.2777790733334158, "jpy": 2.0040265376897093, "krw": 21.77753980202321, "kwd": 0.00557876233978437, "lkr": 3.232440507213967, "ltc": 0.00016890565698317938, "mmk": 27.98323197330873, "mxn": 0.35734137379969216, "myr": 0.07671270055741526, "ngn": 6.596577618695678, "nok": 0.1608152721636544, "nzd": 0.02816454623868917, "php": 0.957328326913211, "pkr": 2.7675731591421786, "pln": 0.07060078815542653, "rub": 1.1951147938578004, "sar": 0.06871984734276215, "sek": 0.17470859914379017, "sgd": 0.02528517675578203, "thb": 0.582312889290361, "try": 0.1083731580766122, "twd": 0.5786446607433918, "uah": 0.48971504346467193, "usd": 0.018323826718599105, "vef": 4553.244498137326, "vnd": 429.32096220915315, "xag": 0.0012615395819040567, "xau": 1.4205546663593958e-05, "xdr": 0.013225166962668745, "xlm": 0.14167329443053797, "xrp": 0.04333490966779054, "zar": 0.2705422678535437, "bits": 2.2071833054520567, "link": 0.018111573172792834, "sats": 220.71833054520565}, "market_cap": {"aed": 117103554.24604225, "ars": 1420476138.525887, "aud": 46174209.8118577, "bch": 75084.25860359224, "bdt": 2693280909.028348, "bhd": 12017235.783295227, "bmd": 31880692.57846055, "bnb": 1000969.173391814, "brl": 126932977.50114055, "btc": 3836.767220854575, "cad": 43128009.635985956, "chf": 32113836.083286844, "clp": 22625568119.47057, "cny": 220037352.1072767, "czk": 740016517.092089, "dkk": 213915015.7852019, "eos": 4327270.919371669, "eth": 124815.19735452694, "eur": 28643941.50304719, "gbp": 25286777.05176498, "hkd": 250206370.30119973, "huf": 9301316904.558022, "idr": 459336371906.8509, "ils": 115812991.9297737, "inr": 2223142711.7123075, "jpy": 3488337560.896288, "krw": 37889565515.64882, "kwd": 9706204.378282629, "lkr": 5623958557.9605465, "ltc": 293816.3888690623, "mmk": 48686599671.19614, "mxn": 621392955.1852905, "myr": 133468519.47972497, "ngn": 11477049328.245798, "nok": 279723587.73535645, "nzd": 49024024.92144639, "php": 1663528545.173868, "pkr": 4815159542.272507, "pln": 122860219.02424234, "rub": 2079717851.9403281, "sar": 119562161.37700069, "sek": 304013678.6950407, "sgd": 43983687.424791805, "thb": 1013550978.4544195, "try": 188635475.65065247, "twd": 1006754365.4843094, "uah": 852030255.0065948, "usd": 31880692.57846055, "vef": 7921958131831.793, "vnd": 747093736043.7416, "xag": 2194865.8126229155, "xau": 24717.73856993206, "xdr": 23009794.226426195, "xlm": 246245656.94225863, "xrp": 75302536.74087301, "zar": 470704270.8934649, "bits": 3836767220.854575, "link": 31483515.707929984, "sats": 383676722085.4575}, "total_volume": {"aed": 2391563.7918439717, "ars": 29007138.97340599, "aud": 942703.6943110026, "bch": 1535.686110798582, "bdt": 55003907.82130772, "bhd": 245423.68643223285, "bmd": 651087.9240211614, "bnb": 20459.882431877857, "brl": 2592306.569490258, "btc": 78.42632537134206, "cad": 880653.7129759355, "chf": 655802.4516789984, "clp": 462063393.6259298, "cny": 4493743.742801656, "czk": 15110513.649475483, "dkk": 4367817.478504645, "eos": 88600.0046724661, "eth": 2552.470404727064, "eur": 584800.6624765667, "gbp": 516399.9695306003, "hkd": 5109900.799699082, "huf": 189941880.07469326, "idr": 9381537446.218542, "ils": 2365207.1015916755, "inr": 45402444.42335248, "jpy": 71207695.7584034, "krw": 773806334.1100796, "kwd": 198226.3228199386, "lkr": 114856083.92201348, "ltc": 6001.608465822485, "mmk": 994308923.1689203, "mxn": 12697165.106781734, "myr": 2725779.5939145964, "ngn": 234391652.64761811, "nok": 5714138.389971455, "nzd": 1000751.4381771063, "php": 34016088.5904856, "pkr": 98338272.37263517, "pln": 2508609.2168573374, "rub": 42465191.47171584, "sar": 2441775.0414565587, "sek": 6207800.415931463, "sgd": 898440.7839722721, "thb": 20690923.137468487, "try": 3850748.841676074, "twd": 20560582.497046635, "uah": 17400707.609164875, "usd": 651087.9240211614, "vef": 161787303131.60556, "vnd": 15254766284.15177, "xag": 44825.4177506887, "xau": 504.7559130974054, "xdr": 469920.755898501, "xlm": 5033979.669016965, "xrp": 1539789.5213998938, "zar": 9612992.211825911, "bits": 78426325.37134206, "link": 643546.0648545462, "sats": 7842632537.134206}}, "community_data": {"facebook_likes": null, "twitter_followers": 36477, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6175, "reddit_accounts_active_48h": "143.6"}, "developer_data": {"forks": 21, "stars": 88, "subscribers": 25, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 585145, "bing_matches": null}}, "EDO_20190611": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "APPC_20190617": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.34775197306041994, "ars": 4.119611681469313, "aud": 0.13696842580672935, "bch": 0.00022958406792879333, "bdt": 7.999816779473199, "bhd": 0.035696547881095775, "bmd": 0.09467324726454264, "bnb": 0.002694487259148028, "brl": 0.3644639786872992, "btc": 1.1502055327612444e-05, "cad": 0.12618069330067674, "chf": 0.09407775253924863, "clp": 65.90171795794768, "cny": 0.6552998155909843, "czk": 2.145112968974065, "dkk": 0.6267515712445978, "eos": 0.01463220478675283, "eth": 0.0003710582900902032, "eur": 0.08393180997640214, "gbp": 0.07466841142455567, "hkd": 0.7411921191717414, "huf": 27.028295372973645, "idr": 1351.9345059361938, "ils": 0.3407905545158107, "inr": 6.583880569167544, "jpy": 10.255156760311062, "krw": 111.91162147185906, "kwd": 0.028761448499226232, "lkr": 16.716189900388244, "ltc": 0.0007222895681170356, "mmk": 144.52786098259386, "mxn": 1.8174535938538456, "myr": 0.39408610167740754, "ngn": 34.08236901523535, "nok": 0.8214327139105457, "nzd": 0.14436524661550892, "php": 4.908528773933602, "pkr": 14.389943719778266, "pln": 0.35718502607136504, "rub": 6.111915496904347, "sar": 0.3550132217791158, "sek": 0.8975167744014481, "sgd": 0.12938661347279562, "thb": 2.9547047105027406, "try": 0.5563649467740757, "twd": 2.9796677736484667, "uah": 2.5050896250875243, "usd": 0.09467324726454264, "vef": 23525.131996065407, "vnd": 2209.1736264692818, "xag": 0.006339655780129092, "xau": 7.041133418805826e-05, "xdr": 0.06808540184926302, "xlm": 0.7590124125417466, "xrp": 0.23593392341681163, "zar": 1.4070460136945275, "bits": 11.502055327612444, "link": 0.051523561863459334, "sats": 1150.2055327612443}, "market_cap": {"aed": 36819956.296197966, "ars": 436174192.9723757, "aud": 14497857.60367804, "bch": 24313.211025779503, "bdt": 847020080.4485952, "bhd": 3779548.1685986756, "bmd": 10023997.264550252, "bnb": 286494.4411117617, "brl": 38588179.389667355, "btc": 1218.9684051573581, "cad": 13359331.994370416, "chf": 9960846.081783593, "clp": 6977619492.356626, "cny": 69383101.86603755, "czk": 227118718.0215473, "dkk": 66355694.30818705, "eos": 1550415.9630020575, "eth": 39314.05756067375, "eur": 8886173.335051158, "gbp": 7905224.962742274, "hkd": 78478375.78402716, "huf": 2861951459.001748, "idr": 143142737583.38675, "ils": 36082881.75333837, "inr": 697100846.5680717, "jpy": 1086085067.618123, "krw": 11849195204.75179, "kwd": 3045260.296978568, "lkr": 1769909099.7373104, "ltc": 76441.12637755962, "mmk": 15302600523.383629, "mxn": 192376846.6222602, "myr": 41725810.82143883, "ngn": 3608639015.2380905, "nok": 86968821.75506838, "nzd": 15280481.190107716, "php": 519687752.8943506, "pkr": 1523606305.3909001, "pln": 37815529.68051586, "rub": 647122198.6067499, "sar": 37588776.8383944, "sek": 95021579.90955038, "sgd": 13698453.845827354, "thb": 312828906.63208437, "try": 58906671.48495176, "twd": 315487030.1307082, "uah": 265238726.61897385, "usd": 10023997.264550252, "vef": 2490839446098.3306, "vnd": 233901700636.8111, "xag": 671409.8427788921, "xau": 7457.252524989523, "xdr": 7208877.920768488, "xlm": 80449252.09882393, "xrp": 25022825.679573067, "zar": 148969059.17981607, "bits": 1218968405.1573582, "link": 5460380.1011070665, "sats": 121896840515.73581}, "total_volume": {"aed": 1666938.0292815394, "ars": 19747227.649864513, "aud": 656553.7954500555, "bch": 1100.5039320975166, "bdt": 38346867.451623425, "bhd": 171110.2676237855, "bmd": 453813.2014952543, "bnb": 12915.939030223848, "brl": 1747046.4970490881, "btc": 55.13473661058504, "cad": 604843.1425792768, "chf": 450958.716457849, "clp": 315897790.2909055, "cny": 3141158.8367896993, "czk": 10282530.83259036, "dkk": 3004313.7349448125, "eos": 70139.00854858954, "eth": 1778.656119153276, "eur": 402324.4632800056, "gbp": 357920.6567665008, "hkd": 3552880.8638462727, "huf": 129559274.75366494, "idr": 6480455081.850656, "ils": 1633568.690762391, "inr": 31559622.234224778, "jpy": 49157767.96192632, "krw": 536444800.3220686, "kwd": 137867.08917465364, "lkr": 80128524.94961342, "ltc": 3462.2720861987323, "mmk": 692789707.6826736, "mxn": 8711906.032875355, "myr": 1889039.2020385356, "ngn": 163372752.53829154, "nok": 3937511.6042131768, "nzd": 692010.2208828839, "php": 23528876.656210937, "pkr": 68977737.824515, "pln": 1712155.0690521265, "rub": 29297272.662130643, "sar": 1701744.5942098224, "sek": 4302218.129781636, "sgd": 620210.6190215091, "thb": 14163283.112066125, "try": 2666917.687842338, "twd": 14282942.76178359, "uah": 12008067.491515, "usd": 453813.2014952543, "vef": 112766972457.3956, "vnd": 10589603558.07279, "xag": 30388.938470855523, "xau": 337.51449234806535, "xdr": 326365.20961373014, "xlm": 3638301.8736826545, "xrp": 1130941.762543933, "zar": 6744630.342525451, "bits": 55134736.610585034, "link": 246976.5560735383, "sats": 5513473661.058504}}, "community_data": {"facebook_likes": null, "twitter_followers": 25545, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3374, "reddit_accounts_active_48h": "126.84"}, "developer_data": {"forks": 2, "stars": 6, "subscribers": 13, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1192397, "bing_matches": null}}, "EDO_20190630": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "WPR_20190704": {"id": "wepower", "symbol": "wpr", "name": "WePower", "localization": {"en": "WePower", "de": "WePower", "es": "WePower", "fr": "WePower", "it": "WePower", "pl": "WePower", "ro": "WePower", "hu": "WePower", "nl": "WePower", "pt": "WePower", "sv": "WePower", "vi": "WePower", "tr": "WePower", "ru": "WePower", "ja": "WePower", "zh": "WePower", "zh-tw": "WePower", "ko": "\uc704\ud30c\uc6cc", "ar": "WePower", "th": "WePower", "id": "WePower"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1951/thumb/wpr.png?1547036237", "small": "https://assets.coingecko.com/coins/images/1951/small/wpr.png?1547036237"}, "market_data": {"current_price": {"aed": 0.03942139545641268, "ars": 0.4561074959913535, "aud": 0.015278576142985953, "bch": 2.665363484891658e-05, "bdt": 0.9076709283502087, "bhd": 0.004046302532913201, "bmd": 0.010732698684409547, "bnb": 0.00033483438609586844, "brl": 0.041331848020333684, "btc": 9.902886394508543e-07, "cad": 0.014050411967131657, "chf": 0.010512324182322565, "clp": 7.274731933461274, "cny": 0.07369929532610364, "czk": 0.24021329457398674, "dkk": 0.07051288587908666, "eos": 0.0018628040263963795, "eth": 3.6672311198289086e-05, "eur": 0.009446277420096245, "gbp": 0.008454382873080485, "hkd": 0.08384008567806805, "huf": 3.050978394963631, "idr": 151.6325443006822, "ils": 0.03827941485099413, "inr": 0.7400249406393827, "jpy": 1.1630499662059142, "krw": 12.41342191141628, "kwd": 0.0032565798310156637, "lkr": 1.895602480040251, "ltc": 8.754973516965136e-05, "mmk": 16.274289620313027, "mxn": 0.20558465011128915, "myr": 0.04428961878727666, "ngn": 3.887823074831251, "nok": 0.09147831121239128, "nzd": 0.01596318279396846, "php": 0.5500422106843443, "pkr": 1.7575668274028522, "pln": 0.040084364986847365, "rub": 0.6762415856278051, "sar": 0.04025083987614123, "sek": 0.09974673934806554, "sgd": 0.014508462081584832, "thb": 0.3287130457820831, "try": 0.06159016023351465, "twd": 0.33242748253897575, "uah": 0.2809601997833214, "usd": 0.010732698684409547, "vef": 2666.942990972016, "vnd": 250.569273312905, "xag": 0.0007061695012553069, "xau": 7.707150925274517e-06, "xdr": 0.007720384342752393, "xlm": 0.1012167697207856, "xrp": 0.02709989403750346, "zar": 0.15113382737915015, "bits": 0.9902886394508543, "link": 0.003147578712632804, "sats": 99.02886394508543}, "market_cap": {"aed": 23963629.626386493, "ars": 277279953.194192, "aud": 9285903.381213516, "bch": 16187.622368942772, "bdt": 551758498.0895069, "bhd": 2459681.9603266534, "bmd": 6524234.192804533, "bnb": 203600.17829869938, "brl": 25124962.885408282, "btc": 601.5330845744663, "cad": 8540692.303243, "chf": 6389593.571767598, "clp": 4422158557.053867, "cny": 44800611.35515008, "czk": 145979074.5921134, "dkk": 42849584.78943123, "eos": 1138481.3282156456, "eth": 22363.93776827529, "eur": 5740203.921386815, "gbp": 5138017.105390959, "hkd": 50965034.032221444, "huf": 1854056872.9111903, "idr": 92174308739.73613, "ils": 23269438.059803665, "inr": 449849209.71096826, "jpy": 706910561.1416614, "krw": 7544820147.584942, "kwd": 1979622.2841859073, "lkr": 1152306132.8655906, "ltc": 53489.4912799059, "mmk": 9892877823.793186, "mxn": 124968443.84607407, "myr": 26922904.820027154, "ngn": 2363344857.266339, "nok": 55586475.32269454, "nzd": 9703480.466489809, "php": 334250433.8889093, "pkr": 1068396488.9592396, "pln": 24360838.05251281, "rub": 411055460.77713305, "sar": 24467835.493274827, "sek": 60617012.19399353, "sgd": 8819205.336699618, "thb": 199967778.0094589, "try": 37448353.97976579, "twd": 202077297.79642347, "uah": 170791167.826806, "usd": 6524234.192804533, "vef": 1621191571998.1084, "vnd": 152270789384.2808, "xag": 429368.3337329162, "xau": 4682.964818911231, "xdr": 4693096.954612653, "xlm": 61619572.04253585, "xrp": 16514474.95179545, "zar": 91869209.62157403, "bits": 601533084.5744663, "link": 1911940.2732933222, "sats": 60153308457.44663}, "total_volume": {"aed": 1235653.3168730855, "ars": 14296570.016034631, "aud": 478902.9680355349, "bch": 835.4512042629973, "bdt": 28450707.547511805, "bhd": 126830.29324505663, "bmd": 336413.6295746665, "bnb": 10495.296145464585, "brl": 1295535.9521782661, "btc": 31.04033806596593, "cad": 440406.48357604846, "chf": 329506.04851860984, "clp": 228024567.3414315, "cny": 2310085.111563325, "czk": 7529422.811162165, "dkk": 2210207.941906161, "eos": 58389.10437471066, "eth": 1149.4839907346968, "eur": 296091.0919338478, "gbp": 265000.41711581626, "hkd": 2627945.52946695, "huf": 95632118.79734902, "idr": 4752882391.446757, "ils": 1199858.2338590813, "inr": 23195887.96598811, "jpy": 36455496.610221855, "krw": 389095458.9759814, "kwd": 102076.64196732313, "lkr": 59417163.314891204, "ltc": 2744.223521294503, "mmk": 510113346.2240698, "mxn": 6443997.019057422, "myr": 1388246.5022846, "ngn": 121862796.13421157, "nok": 2867363.7085353895, "nzd": 500361.7842252165, "php": 17240929.048384406, "pkr": 55090471.93186466, "pln": 1256433.9231855427, "rub": 21196615.406788822, "sar": 1261652.0349938748, "sek": 3126535.4231051905, "sgd": 454763.94445903436, "thb": 10303424.336390728, "try": 1930527.4432365969, "twd": 10419852.38379571, "uah": 8806623.88411498, "usd": 336413.6295746665, "vef": 83594629630.74619, "vnd": 7854028252.701144, "xag": 22134.69808458517, "xau": 241.57862739756868, "xdr": 241993.42540283417, "xlm": 3172613.1401653113, "xrp": 849439.0816625218, "zar": 4737250.240145741, "bits": 31040338.065965928, "link": 98660.03045691688, "sats": 3104033806.596593}}, "community_data": {"facebook_likes": null, "twitter_followers": 34818, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 9, "stars": 35, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 18, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1294750, "bing_matches": null}}, "CND_20190705": {"id": "cindicator", "symbol": "cnd", "name": "Cindicator", "localization": {"en": "Cindicator", "de": "Cindicator", "es": "Cindicator", "fr": "Cindicator", "it": "Cindicator", "pl": "Cindicator", "ro": "Cindicator", "hu": "Cindicator", "nl": "Cindicator", "pt": "Cindicator", "sv": "Cindicator", "vi": "Cindicator", "tr": "Cindicator", "ru": "Cindicator", "ja": "\u30b7\u30f3\u30c7\u30a3\u30b1\u30fc\u30bf\u30fc", "zh": "Cindicator", "zh-tw": "Cindicator", "ko": "\uc2e0\ub514\ucf00\uc774\ud130", "ar": "Cindicator", "th": "Cindicator", "id": "Cindicator"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1006/thumb/cindicator.png?1547034913", "small": "https://assets.coingecko.com/coins/images/1006/small/cindicator.png?1547034913"}, "market_data": {"current_price": {"aed": 0.049925267519249174, "ars": 0.575750101101851, "aud": 0.019517235243803208, "bch": 3.25615013917125e-05, "bdt": 1.153185508106345, "bhd": 0.005125005001698995, "bmd": 0.013591834303631952, "bnb": 0.00040994000506081735, "brl": 0.052203761846407105, "btc": 1.2817064301005288e-06, "cad": 0.01785280639864914, "chf": 0.013418606375432143, "clp": 9.249492844066706, "cny": 0.09312853028162554, "czk": 0.3064295761710021, "dkk": 0.08987368012910046, "eos": 0.0022534973672165845, "eth": 4.6126430090294635e-05, "eur": 0.012041495315622494, "gbp": 0.010749632240565193, "hkd": 0.10619050051676479, "huf": 3.8940605279905576, "idr": 191.9604032794673, "ils": 0.04857585661775034, "inr": 0.9365929141118241, "jpy": 1.4726643733310805, "krw": 15.776769076258903, "kwd": 0.0041290361594317525, "lkr": 2.4075325516289445, "ltc": 0.00011052693689060651, "mmk": 20.668366876236146, "mxn": 0.2596502474360027, "myr": 0.05617776954377169, "ngn": 4.903526061721299, "nok": 0.11666143219493393, "nzd": 0.020374485825167588, "php": 0.6950034281393155, "pkr": 2.2059332731567673, "pln": 0.05105432760301764, "rub": 0.8554564592362935, "sar": 0.05097481537234131, "sek": 0.12719969782024335, "sgd": 0.018429507928152133, "thb": 0.4168615580923922, "try": 0.07683192095157082, "twd": 0.4209110412456454, "uah": 0.35743039272236676, "usd": 0.013591834303631952, "vef": 3377.402859839858, "vnd": 317.55018418170437, "xag": 0.0008974469362155901, "xau": 9.809226816931192e-06, "xdr": 0.009791652575176602, "xlm": 0.12847917880237356, "xrp": 0.03337185613969798, "zar": 0.19217622285147748, "bits": 1.2817064301005288, "link": 0.0037782411480465276, "sats": 128.17064301005288}, "market_cap": {"aed": 86823803.26444057, "ars": 1001272822.1891879, "aud": 33938326.67845227, "bch": 56469.26506255813, "bdt": 2005476518.370692, "bhd": 8912769.988167284, "bmd": 23637224.31985798, "bnb": 710852.8460361738, "brl": 90790578.61257489, "btc": 2226.783120613703, "cad": 31046312.282917634, "chf": 23332280.488907695, "clp": 16085233073.374681, "cny": 161957533.59480345, "czk": 532935685.36425805, "dkk": 156306062.35771993, "eos": 3912424.692370576, "eth": 80055.6879366196, "eur": 20942249.826253768, "gbp": 18694349.79343528, "hkd": 184669360.58253914, "huf": 6772537512.125739, "idr": 333885130599.7967, "ils": 84477075.99674085, "inr": 1628805672.0449405, "jpy": 2561199622.566061, "krw": 27436976559.0396, "kwd": 7180705.10168104, "lkr": 4186880571.7420363, "ltc": 191905.37873897003, "mmk": 35943847847.53969, "mxn": 451544259.904681, "myr": 97697375.55883728, "ngn": 8527601417.875163, "nok": 202909024.72895753, "nzd": 35427495.44782766, "php": 1208694263.9524786, "pkr": 3836284231.2102203, "pln": 88796778.7411949, "rub": 1488105094.2809834, "sar": 88650227.95041175, "sek": 221217402.28647387, "sgd": 32052028.903278954, "thb": 724599111.5252489, "try": 133623521.89091675, "twd": 731997562.7373656, "uah": 621598393.7691122, "usd": 23637224.31985798, "vef": 5873558140363.156, "vnd": 552211639698.8358, "xag": 1560009.5306619918, "xau": 17052.6027410752, "xdr": 17028421.860595997, "xlm": 222868050.39435327, "xrp": 57823438.265184514, "zar": 334203027.25147945, "bits": 2226783120.613703, "link": 6564158.075900625, "sats": 222678312061.3703}, "total_volume": {"aed": 2363791.1732637445, "ars": 27259803.995352358, "aud": 924074.5355651107, "bch": 1541.6760570841036, "bdt": 54599401.478348635, "bhd": 242651.5107060325, "bmd": 643527.00650029, "bnb": 19409.26135562203, "brl": 2471670.110052433, "btc": 60.68442888200628, "cad": 845269.5054031027, "chf": 635325.2548024429, "clp": 437931945.6533953, "cny": 4409318.343138694, "czk": 14508395.515370855, "dkk": 4255212.287365061, "eos": 106695.41597440316, "eth": 2183.9291749326494, "eur": 570123.7420308418, "gbp": 508958.4306440089, "hkd": 5027758.09281758, "huf": 184370487.36233327, "idr": 9088670515.6503, "ils": 2299901.1685313913, "inr": 44344480.727425314, "jpy": 69725636.33270128, "krw": 746976217.4174134, "kwd": 195495.78225071056, "lkr": 113988456.70063671, "ltc": 5233.073567991643, "mmk": 978576693.0339824, "mxn": 12293553.815977642, "myr": 2659825.8232670035, "ngn": 232165238.1351096, "nok": 5523521.002193296, "nzd": 964662.427392091, "php": 32906042.3800502, "pkr": 104443418.31290774, "pln": 2417248.31816672, "rub": 40502946.26212185, "sar": 2413483.6851786897, "sek": 6022471.944359221, "sgd": 872574.3562889047, "thb": 19736973.28936391, "try": 3637729.4623448453, "twd": 19928702.5080456, "uah": 16923110.267713007, "usd": 643527.00650029, "vef": 159908508563.66623, "vnd": 15034918383.713804, "xag": 42491.052160733736, "xau": 464.4334405912599, "xdr": 463601.36017185525, "xlm": 6083051.005868548, "xrp": 1580043.5911140798, "zar": 9098888.836446248, "bits": 60684428.88200628, "link": 178886.8346628455, "sats": 6068442888.200628}}, "community_data": {"facebook_likes": null, "twitter_followers": 36225, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.043, "reddit_subscribers": 6140, "reddit_accounts_active_48h": "270.166666666667"}, "developer_data": {"forks": 21, "stars": 88, "subscribers": 25, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 575045, "bing_matches": null}}, "POE_20190711": {"id": "poet", "symbol": "poe", "name": "Po.et", "localization": {"en": "Po.et", "de": "Po.et", "es": "Po.et", "fr": "Po.et", "it": "Po.et", "pl": "Po.et", "ro": "Po.et", "hu": "Po.et", "nl": "Po.et", "pt": "Po.et", "sv": "Po.et", "vi": "Po.et", "tr": "Po.et", "ru": "Po.et", "ja": "\u30a8\u30c3\u30c8", "zh": "Po.et", "zh-tw": "Po.et", "ko": "\ud3ec\uc5e3", "ar": "Po.et", "th": "Po.et", "id": "Po.et"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/910/thumb/poet.png?1548331583", "small": "https://assets.coingecko.com/coins/images/910/small/poet.png?1548331583"}, "market_data": {"current_price": {"aed": 0.018508323059761734, "ars": 0.21060403565303576, "aud": 0.007216847778022648, "bch": 1.2232533634281216e-05, "bdt": 0.4257733842933109, "bhd": 0.001899679139348907, "bmd": 0.00503897680710699, "bnb": 0.00015243946663143955, "brl": 0.019245515288687887, "btc": 4.40612285847024e-07, "cad": 0.006589721919494153, "chf": 0.004995641606565871, "clp": 3.446646359498577, "cny": 0.034736942466312995, "czk": 0.11447458824393801, "dkk": 0.03349369587460271, "eos": 0.0008471942384624156, "eth": 1.6475406258266554e-05, "eur": 0.004487667393618226, "gbp": 0.0040234516552634745, "hkd": 0.03928109175096206, "huf": 1.4541259217832125, "idr": 70.89896151088351, "ils": 0.0180123264946846, "inr": 0.34492037107738627, "jpy": 0.5466282040349665, "krw": 5.920898200353343, "kwd": 0.0015323528470412293, "lkr": 0.8876388884364591, "ltc": 4.1949263889963966e-05, "mmk": 7.581110261574086, "mxn": 0.09579145300078443, "myr": 0.020838688585790886, "ngn": 1.815702323318913, "nok": 0.043407257909461594, "nzd": 0.007599699157872996, "php": 0.25864781736997466, "pkr": 0.7906154610350825, "pln": 0.019082857117354454, "rub": 0.321330008114724, "sar": 0.018897674719693267, "sek": 0.04755776232593936, "sgd": 0.006852953028920599, "thb": 0.15509970612275287, "try": 0.028950488878616582, "twd": 0.15713602719617986, "uah": 0.12935355298554363, "usd": 0.00503897680710699, "vef": 1252.123466105096, "vnd": 117.45053044675218, "xag": 0.0003361895476007376, "xau": 3.6078570041205223e-06, "xdr": 0.003641194874676342, "xlm": 0.04789038933177406, "xrp": 0.01271762755384725, "zar": 0.07160186499417433, "bits": 0.440612285847024, "link": 0.0015293571756816564, "sats": 44.0612285847024}, "market_cap": {"aed": 46548094.74782596, "ars": 529665306.4785141, "aud": 18147642.514110114, "bch": 30813.110770157382, "bdt": 1070812291.8102287, "bhd": 4777658.369337961, "bmd": 12672934.71655739, "bnb": 383832.5059006145, "brl": 48402119.75098893, "btc": 1109.0559283148673, "cad": 16570255.002874926, "chf": 12562223.958873536, "clp": 8668464272.966795, "cny": 87362776.40879545, "czk": 287890513.0198397, "dkk": 84235108.7936838, "eos": 2132174.92087572, "eth": 41523.30554026481, "eur": 11286895.846607419, "gbp": 10117779.600200897, "hkd": 98784892.46882854, "huf": 3657258582.1550965, "idr": 178291973577.90906, "ils": 45300672.437805854, "inr": 867468439.0111434, "jpy": 1375026089.6811872, "krw": 14891563498.5538, "kwd": 3853839.44730508, "lkr": 2232395606.418989, "ltc": 105890.1796390369, "mmk": 19066353964.647617, "mxn": 240913756.25522715, "myr": 52408921.52032286, "ngn": 4566458209.465935, "nok": 109167194.2353682, "nzd": 19111647.31212919, "php": 650477850.5189471, "pkr": 1988383457.0278425, "pln": 47994304.71181013, "rub": 808083345.7339207, "sar": 47527307.06750501, "sek": 119606904.39617412, "sgd": 17233898.575176913, "thb": 390072930.5756351, "try": 72751503.65440598, "twd": 395194240.91568136, "uah": 325321825.2619222, "usd": 12672934.71655739, "vef": 3149067667991.4497, "vnd": 295379054366.0689, "xag": 845596.6265177492, "xau": 9075.088550526705, "xdr": 9157538.663792625, "xlm": 120614472.55564544, "xrp": 32063991.832676973, "zar": 180067194.80061933, "bits": 1109055928.3148673, "link": 3849512.8181457613, "sats": 110905592831.48672}, "total_volume": {"aed": 1046278.5085064148, "ars": 11905480.339682743, "aud": 407969.5769803888, "bch": 691.5071130325875, "bdt": 24069038.56398694, "bhd": 107389.17027441984, "bmd": 284854.1772863451, "bnb": 8617.427806380056, "brl": 1087952.1049350533, "btc": 24.907884078805413, "cad": 372518.05034621706, "chf": 282404.4313616826, "clp": 194839478.47253856, "cny": 1963684.9992500066, "czk": 6471267.065255955, "dkk": 1893404.0675048553, "eos": 47892.02789315777, "eth": 931.3573915517277, "eur": 253688.56660362362, "gbp": 227446.3755211179, "hkd": 2220566.4963268316, "huf": 82201974.52310091, "idr": 4007929808.9157004, "ils": 1018239.7421277665, "inr": 19498404.595547006, "jpy": 30900981.152022723, "krw": 334709336.8794785, "kwd": 86624.15531277718, "lkr": 50178370.524808966, "ltc": 2371.3987006826387, "mmk": 428561394.33544785, "mxn": 5415106.395631139, "myr": 1178014.450167676, "ngn": 102641947.22556353, "nok": 2453819.339397754, "nzd": 429612.2276622492, "php": 14621403.122935355, "pkr": 44693620.4162273, "pln": 1078757.012092249, "rub": 18164837.54595516, "sar": 1068288.6210769755, "sek": 2688448.028144964, "sgd": 387398.54771347746, "thb": 8767811.576873684, "try": 1636575.8381591837, "twd": 8882925.137873566, "uah": 7312377.358592658, "usd": 284854.1772863451, "vef": 70782742896.38358, "vnd": 6639497561.304028, "xag": 19004.849726438388, "xau": 203.95274239524954, "xdr": 205837.33763217603, "xlm": 2707251.4868067754, "xrp": 718929.5510897939, "zar": 4047665.0569847357, "bits": 24907884.078805413, "link": 86454.80952429332, "sats": 2490788407.8805413}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 10842, "reddit_accounts_active_48h": "249.24"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 780853, "bing_matches": null}}, "RDN_20190510": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 1.1040544683276445, "ars": 13.431349550073687, "aud": 0.42984406336136033, "bch": 0.0010456197148702526, "bdt": 25.36823107444963, "bhd": 0.11329872051208342, "bmd": 0.30057175737532266, "bnb": 0.013592694428982505, "brl": 1.193209762428554, "btc": 5.2543509961893414e-05, "cad": 0.40427502510495655, "chf": 0.3058017059536532, "clp": 204.17839478505698, "cny": 2.0332477099411093, "czk": 6.899867251958759, "dkk": 2.0035512203124246, "eos": 0.061692585017261846, "eth": 0.0017387134849156571, "eur": 0.2683564764198356, "gbp": 0.22948653675605882, "hkd": 2.358511437184814, "huf": 86.90130649235341, "idr": 4298.519871843146, "ils": 1.0791127233288822, "inr": 20.84065376960554, "jpy": 33.31492272984469, "krw": 351.3797315567368, "kwd": 0.0914086805659535, "lkr": 53.333452628677236, "ltc": 0.004020584323034564, "mmk": 458.17700260013044, "mxn": 5.713158856642223, "myr": 1.2466514208898867, "ngn": 108.10991028846969, "nok": 2.6225796563421744, "nzd": 0.45488078903545287, "php": 15.611278982759755, "pkr": 42.537903083122146, "pln": 1.1494314859668406, "rub": 19.63130330380592, "sar": 1.1272342616846731, "sek": 2.874899126647251, "sgd": 0.4098368049034298, "thb": 9.594250495420319, "try": 1.8303317165370256, "twd": 9.296107658416346, "uah": 7.922894487648412, "usd": 0.30057175737532266, "vef": 74688.36731442787, "vnd": 6996.077980837221, "xag": 0.020146946176453618, "xau": 0.00023430770774435897, "xdr": 0.21603655175702813, "xlm": 3.087256211191804, "xrp": 0.9978925948199452, "zar": 4.34969683482706, "bits": 52.54350996189341, "link": 0.5252716015993091, "sats": 5254.3509961893415}, "market_cap": {"aed": 55867774.884251826, "ars": 679658146.0259314, "aud": 21751129.18439629, "bch": 52897.13854609727, "bdt": 1283692665.1144502, "bhd": 5733183.999364442, "bmd": 15209643.87114381, "bnb": 688346.7934170999, "brl": 60379244.239666715, "btc": 2658.7301659701557, "cad": 20457275.19956584, "chf": 15474291.674501715, "clp": 10331911081.66798, "cny": 102887156.93073934, "czk": 349149649.24470925, "dkk": 101384444.11627035, "eos": 3121688.957489156, "eth": 87937.68192779628, "eur": 13579474.241034593, "gbp": 11612563.095618274, "hkd": 119346273.0458975, "huf": 4397412236.025099, "idr": 217515301486.32846, "ils": 54605663.42618036, "inr": 1054586514.2003357, "jpy": 1685814112.2117712, "krw": 17780647879.842525, "kwd": 4625496.055516779, "lkr": 2698799208.4957476, "ltc": 203359.74357990752, "mmk": 23184843114.831688, "mxn": 289099389.60197693, "myr": 63083518.919955954, "ngn": 5470617894.334242, "nok": 132708751.29782262, "nzd": 23018046.88993097, "php": 789967746.0525856, "pkr": 2152518794.7436757, "pln": 58163959.609834455, "rub": 993390512.0847893, "sar": 57040727.40995059, "sek": 145476714.9901123, "sgd": 20738714.44975747, "thb": 485491832.3669111, "try": 92619126.35333014, "twd": 470405097.6278895, "uah": 400917253.96311074, "usd": 15209643.87114381, "vef": 3779408544865.803, "vnd": 354018140335.1676, "xag": 1019483.2645314899, "xau": 11856.525783311447, "xdr": 10931961.951672351, "xlm": 156157027.81394824, "xrp": 50501611.73333036, "zar": 220104977.2036653, "bits": 2658730165.9701557, "link": 26579028.571033347, "sats": 265873016597.01556}, "total_volume": {"aed": 1773088.8973162961, "ars": 21570472.695322163, "aud": 690320.7750952833, "bch": 1679.2438783022808, "bdt": 40740860.30446857, "bhd": 181955.42809080007, "bmd": 482712.0954062152, "bnb": 21829.589271214838, "brl": 1916270.47634359, "btc": 84.38380244099834, "cad": 649257.4225632676, "chf": 491111.2858662832, "clp": 327906326.4094424, "cny": 3265354.240584886, "czk": 11081045.698710704, "dkk": 3217662.285558747, "eos": 99077.0298738437, "eth": 2792.3382986600823, "eur": 430975.0130205771, "gbp": 368550.68484264525, "hkd": 3787721.134628721, "huf": 139561721.02384514, "idr": 6903335005.928991, "ils": 1733032.964927392, "inr": 33469663.745552134, "jpy": 53503084.58668177, "krw": 564308662.8768916, "kwd": 146800.47160655633, "lkr": 85652434.2088788, "ltc": 6456.976198551963, "mmk": 735822896.0809411, "mxn": 9175216.284990733, "myr": 2002096.6869068155, "ngn": 173622304.9870942, "nok": 4211809.294184135, "nzd": 730529.2445063354, "php": 25071394.782874115, "pkr": 68315002.41654517, "pln": 1845963.4596476788, "rub": 31527471.629685212, "sar": 1810315.1714019298, "sek": 4617029.203354315, "sgd": 658189.5271766647, "thb": 15408170.085366419, "try": 2939475.304976145, "twd": 14929358.786403183, "uah": 12724006.517483639, "usd": 482712.0954062152, "vef": 119947990468.70312, "vnd": 11235558161.701328, "xag": 32355.583537838444, "xau": 376.2933868529609, "xdr": 346950.28399740835, "xlm": 4958070.338256606, "xrp": 1602595.0995601718, "zar": 6985524.161870359, "bits": 84383802.44099833, "link": 843575.4499341339, "sats": 8438380244.0998335}}, "community_data": {"facebook_likes": null, "twitter_followers": 25699, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 4450, "reddit_accounts_active_48h": "990.92"}, "developer_data": {"forks": 352, "stars": 1704, "subscribers": 220, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2182, "pull_request_contributors": 66, "code_additions_deletions_4_weeks": {"additions": 28080, "deletions": -7689}, "commit_count_4_weeks": 415}, "public_interest_stats": {"alexa_rank": 1314746, "bing_matches": null}}, "CDT_20190513": {"id": "blox", "symbol": "cdt", "name": "Blox", "localization": {"en": "Blox", "de": "Blox", "es": "Blox", "fr": "Blox", "it": "Blox", "pl": "Blox", "ro": "Blox", "hu": "Blox", "nl": "Blox", "pt": "Blox", "sv": "Blox", "vi": "Blox", "tr": "Blox", "ru": "Blox", "ja": "Blox", "zh": "Blox", "zh-tw": "Blox", "ko": "\ube14\ub85d\uc2a4", "ar": "Blox", "th": "Blox", "id": "Blox"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1231/thumb/Blox_Staking_Logo_2.png?1609117544", "small": "https://assets.coingecko.com/coins/images/1231/small/Blox_Staking_Logo_2.png?1609117544"}, "market_data": {"current_price": {"aed": 0.027760533031634112, "ars": 0.34183072736342396, "aud": 0.010814511219644917, "bch": 2.6613196228394235e-05, "bdt": 0.6387069870346502, "bhd": 0.0028493388594032078, "bmd": 0.0075576273076753105, "bnb": 0.0004031755946206691, "brl": 0.029829108529135992, "btc": 1.2239997454226678e-06, "cad": 0.010177501486762884, "chf": 0.007673636886848125, "clp": 5.1769820668865885, "cny": 0.05159970044315323, "czk": 0.17336894738714878, "dkk": 0.050293205852848105, "eos": 0.0015606178535974666, "eth": 4.431374308663689e-05, "eur": 0.006736075431194467, "gbp": 0.005809245806317712, "hkd": 0.05931414851746282, "huf": 2.1834741054604745, "idr": 108.37574568650078, "ils": 0.026987077895339308, "inr": 0.5305457997649181, "jpy": 0.82975945973698, "krw": 8.919436172245332, "kwd": 0.002299649952434065, "lkr": 1.326061287404707, "ltc": 0.00010217170205876595, "mmk": 11.5543417616309, "mxn": 0.14533169938927148, "myr": 0.03146063399706239, "ngn": 2.7207458307631116, "nok": 0.06638498905025075, "nzd": 0.011471813181848057, "php": 0.3946232632398015, "pkr": 1.0696046771970023, "pln": 0.028956013634416862, "rub": 0.4930369326708139, "sar": 0.028342991810609366, "sek": 0.07293941690910517, "sgd": 0.010311452873164125, "thb": 0.24009826193753758, "try": 0.04655721371533571, "twd": 0.234407368574857, "uah": 0.19788135579686264, "usd": 0.0075576273076753105, "vef": 1877.9769906204294, "vnd": 176.39054337627002, "xag": 0.0005114972687088158, "xau": 5.885048808213686e-06, "xdr": 0.005434440395248162, "xlm": 0.08397229056374794, "xrp": 0.025509953009438157, "zar": 0.10839528477558778, "bits": 1.2239997454226679, "link": 0.011853167566898455, "sats": 122.39997454226679}, "market_cap": {"aed": 18725459.0633936, "ars": 230577396.93124068, "aud": 7293969.040757725, "bch": 17952.3209270435, "bdt": 430830399.603346, "bhd": 1921979.599912265, "bmd": 5097886.290763672, "bnb": 272035.8315799975, "brl": 20120332.514499743, "btc": 825.6847496915111, "cad": 6865145.041751264, "chf": 5176041.985487372, "clp": 3492561897.8021884, "cny": 34805818.65018895, "czk": 116944491.93286079, "dkk": 33925413.68777408, "eos": 1052873.967177751, "eth": 29885.41449297896, "eur": 4543842.91079719, "gbp": 3918480.101622913, "hkd": 40009027.27171986, "huf": 1473136201.441978, "idr": 73098071166.71298, "ils": 18203736.282510545, "inr": 357871862.31015146, "jpy": 559730072.1238332, "krw": 6016474421.496381, "kwd": 1551195.0363261513, "lkr": 894475128.5773928, "ltc": 68942.35103737398, "mmk": 7793811214.479501, "mxn": 98023049.7289045, "myr": 21221307.72305711, "ngn": 1835239064.674922, "nok": 44782066.052263446, "nzd": 7739034.905486548, "php": 266229021.18958926, "pkr": 721486095.891718, "pln": 19535355.16052093, "rub": 332640648.99273324, "sar": 19118348.06193646, "sek": 49199991.17167878, "sgd": 6955912.907158305, "thb": 161981513.47429764, "try": 31406471.603213403, "twd": 158116041.1943262, "uah": 133477956.75106524, "usd": 5097886.290763672, "vef": 1266761744804.582, "vnd": 119002438741.51881, "xag": 345152.03446411405, "xau": 3970.4887375612825, "xdr": 3665721.801440567, "xlm": 56655602.82629508, "xrp": 17203463.186494313, "zar": 73104530.56078903, "bits": 825684749.6915112, "link": 7995900.107108666, "sats": 82568474969.15111}, "total_volume": {"aed": 694392.8019389509, "ars": 8550440.8828257, "aud": 270510.6108320072, "bch": 665.6936981911393, "bdt": 15976405.562514832, "bhd": 71272.42088615116, "bmd": 189043.99264260344, "bnb": 10084.901125746474, "brl": 746135.4660331798, "btc": 30.61672525625052, "cad": 254576.65982413996, "chf": 191945.81792966736, "clp": 129495319.08903226, "cny": 1290697.8597673762, "czk": 4336593.573624272, "dkk": 1258017.635715257, "eos": 39036.77940479754, "eth": 1108.4493295308052, "eur": 168493.96542238924, "gbp": 145310.55538466375, "hkd": 1483664.515257314, "huf": 54616699.91437457, "idr": 2710875098.2452793, "ils": 675045.8506879142, "inr": 13270897.35762242, "jpy": 20755328.99622407, "krw": 223107829.67687434, "kwd": 57522.68416927682, "lkr": 33169658.949071124, "ltc": 2555.6892005859977, "mmk": 289016487.5896416, "mxn": 3635279.114938705, "myr": 786945.9050768816, "ngn": 68055837.35133724, "nok": 1660532.184333807, "nzd": 286952.14496011974, "php": 9870975.934039827, "pkr": 26754738.027525306, "pln": 724296.1587831446, "rub": 12332662.948025512, "sar": 708962.2334079243, "sek": 1824482.4773930297, "sgd": 257927.27554973753, "thb": 6005738.602262885, "try": 1164566.7626562675, "twd": 5863388.475802978, "uah": 4949738.859361285, "usd": 189043.99264260344, "vef": 46975096011.58535, "vnd": 4412174777.444185, "xag": 12794.42369489429, "xau": 147.20666663086882, "xdr": 135935.29665753891, "xlm": 2100455.1340331477, "xrp": 638097.5367932988, "zar": 2711363.842564526, "bits": 30616725.25625052, "link": 296491.2175588012, "sats": 3061672525.625052}}, "community_data": {"facebook_likes": null, "twitter_followers": 19856, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 291, "reddit_accounts_active_48h": "25.68"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 2, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 447254, "bing_matches": null}}, "PPT_20190531": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 3.750204393337801, "ars": 45.889499283415155, "aud": 1.4753003863335696, "bch": 0.0022987446312203764, "bdt": 86.17243748045217, "bhd": 0.3849482410131363, "bmd": 1.020969125490359, "bnb": 0.029818771549270418, "brl": 4.127973179460489, "btc": 0.00011578601379070766, "cad": 1.372003835062081, "chf": 1.025128553707607, "clp": 713.7647225728501, "cny": 7.04274712454504, "czk": 23.568656727510838, "dkk": 6.810123393178569, "eos": 0.1263414464958405, "eth": 0.00373403589134715, "eur": 0.9121317747748351, "gbp": 0.8051097071644341, "hkd": 8.014123695733836, "huf": 297.16203727161263, "idr": 14679.749328581713, "ils": 3.679164340617061, "inr": 70.96060294533727, "jpy": 111.82981122233551, "krw": 1208.1229758839954, "kwd": 0.31083302928641443, "lkr": 179.89710507748282, "ltc": 0.008605199738644822, "mmk": 1559.4784759968895, "mxn": 19.452933135617943, "myr": 4.274432221481207, "ngn": 367.84496622292147, "nok": 8.88612525806214, "nzd": 1.5594690810389928, "php": 53.26008163609343, "pkr": 154.03233983520045, "pln": 3.9131194157231692, "rub": 65.72580632565474, "sar": 3.8286852690451183, "sek": 9.779350726571144, "sgd": 1.4040816640158666, "thb": 32.49617105295125, "try": 6.193704094941637, "twd": 32.12801877502152, "uah": 26.906771436603513, "usd": 1.020969125490359, "vef": 253698.21079395464, "vnd": 23877.56300632496, "xag": 0.06996294050304351, "xau": 0.0007939974792025972, "xdr": 0.7357583373772508, "xlm": 7.405499248158266, "xrp": 2.3364975862153425, "zar": 14.735434005655128, "bits": 115.78601379070766, "link": 0.8498476800057861, "sats": 11578.601379070766}, "market_cap": {"aed": 135875215.84310597, "ars": 1662641543.256402, "aud": 53452222.17290376, "bch": 83402.67379019794, "bdt": 3122149438.8901534, "bhd": 13947219.897934899, "bmd": 36991157.213082045, "bnb": 1081602.8706425054, "brl": 149562313.92351863, "btc": 4194.422856208129, "cad": 49709641.84186986, "chf": 37141859.18756815, "clp": 25860706662.567486, "cny": 255168701.57156137, "czk": 853925808.8630127, "dkk": 246740414.3651896, "eos": 4565968.807098969, "eth": 135248.5947458818, "eur": 33047825.871853095, "gbp": 29170264.808148984, "hkd": 290363050.3141752, "huf": 10766601422.148268, "idr": 531868106198.99884, "ils": 133301334.13306272, "inr": 2571003132.171455, "jpy": 4051752423.0205183, "krw": 43772006241.812004, "kwd": 11261920.82236561, "lkr": 6517926869.633174, "ltc": 310674.28250802186, "mmk": 56502113566.17855, "mxn": 704807314.8437384, "myr": 154868732.41689253, "ngn": 13327544032.30133, "nok": 321956901.7606108, "nzd": 56501773.1735502, "php": 1929688179.3913975, "pkr": 5580809797.755798, "pln": 141777857.8084404, "rub": 2381339037.6336484, "sar": 138718689.10691828, "sek": 354319725.3831921, "sgd": 50871867.010347866, "thb": 1177382295.145884, "try": 224406670.27737626, "twd": 1164043616.775265, "uah": 974870431.8848336, "usd": 36991157.213082045, "vef": 9191845439644.928, "vnd": 865117920787.2903, "xag": 2534856.409095234, "xau": 28767.6530530418, "xdr": 26657566.472135957, "xlm": 268163378.6584132, "xrp": 84621460.41532673, "zar": 533885640.9045559, "bits": 4194422856.208129, "link": 30786279.073006637, "sats": 419442285620.81287}, "total_volume": {"aed": 5599730.640914686, "ars": 68521287.98368293, "aud": 2202889.205874072, "bch": 3432.439781135788, "bdt": 128670970.4193256, "bhd": 574797.060180742, "bmd": 1524490.7999128518, "bnb": 44524.79683921167, "brl": 6163807.48179044, "btc": 172.88937380720355, "cad": 2048648.8491928864, "chf": 1530701.5754316968, "clp": 1065779293.1221542, "cny": 10516089.986878835, "czk": 35192249.64823258, "dkk": 10168740.856081897, "eos": 188650.53606599921, "eth": 5575.588155194286, "eur": 1361977.0316605407, "gbp": 1202173.8080504767, "hkd": 11966530.170676727, "huf": 443716446.06427544, "idr": 21919509843.846897, "ils": 5493655.046565956, "inr": 105956961.52366853, "jpy": 166982050.7868544, "krw": 1803945208.4448745, "kwd": 464129.69954266795, "lkr": 268618780.7000123, "ltc": 12849.11316654735, "mmk": 2328582255.783231, "mxn": 29046733.007059436, "myr": 6382497.211528739, "ngn": 549258790.3006014, "nok": 13268585.566955883, "nzd": 2328568.227418884, "php": 79526895.01539542, "pkr": 229998027.46731576, "pln": 5842992.113365976, "rub": 98140467.28610966, "sar": 5716916.724213186, "sek": 14602332.077983636, "sgd": 2096546.8256353545, "thb": 48522636.547726154, "try": 9248315.815217316, "twd": 47972918.88569473, "uah": 40176656.16554171, "usd": 1524490.7999128518, "vef": 378817124488.44006, "vnd": 35653502362.27647, "xag": 104467.27179973594, "xau": 1185.5812501842254, "xdr": 1098619.7214847968, "xlm": 11057744.245847348, "xrp": 3488811.742953642, "zar": 22002657.096565012, "bits": 172889373.80720356, "link": 1268975.659644799, "sats": 17288937380.720356}}, "community_data": {"facebook_likes": null, "twitter_followers": 24053, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 592908, "bing_matches": null}}, "BRD_20190617": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 1.6760941543293397, "ars": 19.855694840925892, "aud": 0.6601601014711275, "bch": 0.0011067830671178047, "bdt": 38.557498385353966, "bhd": 0.17205013880064116, "bmd": 0.4563058978932268, "bnb": 0.013004060463919094, "brl": 1.7566426403431477, "btc": 5.5462429598703486e-05, "cad": 0.6081654133238867, "chf": 0.4534357337954785, "clp": 317.63294757895034, "cny": 3.158412533447548, "czk": 10.339010519571662, "dkk": 3.020815771467331, "eos": 0.07056614374539659, "eth": 0.0017886696042476087, "eur": 0.4045343433300571, "gbp": 0.3598866364447963, "hkd": 3.5723960593111785, "huf": 130.270915438507, "idr": 6516.050800499901, "ils": 1.6425415253513511, "inr": 31.73297231836822, "jpy": 49.42778080141035, "krw": 539.3913739719048, "kwd": 0.13862436286226845, "lkr": 80.56865336557532, "ltc": 0.0034805715487242228, "mmk": 696.5950496233721, "mxn": 8.759758622258095, "myr": 1.8994152801231614, "ngn": 164.27012324156163, "nok": 3.9591394919882723, "nzd": 0.6958112812735263, "php": 23.658115615976797, "pkr": 69.35661741208315, "pln": 1.7215595613836276, "rub": 29.458196156190944, "sar": 1.7110919040859558, "sek": 4.325849270524269, "sgd": 0.6236172999442449, "thb": 14.241078920298683, "try": 2.681566481866556, "twd": 14.361395834231574, "uah": 12.074025172966493, "usd": 0.4563058978932268, "vef": 113386.37670815027, "vnd": 10647.769928196447, "xag": 0.030555858245809007, "xau": 0.0003393683854401297, "xdr": 0.3281578621406887, "xlm": 3.6626016284900316, "xrp": 1.138315435279155, "zar": 6.781677117949956, "bits": 55.46242959870349, "link": 0.24844445980592691, "sats": 5546.242959870348}, "market_cap": {"aed": 99797602.65903915, "ars": 1182215927.966189, "aud": 39295305.537573196, "bch": 65899.05087873944, "bdt": 2295781471.1356654, "bhd": 10244168.768865654, "bmd": 27169258.10599563, "bnb": 776520.704372684, "brl": 104590232.61967865, "btc": 3303.918222314084, "cad": 36209421.20189418, "chf": 26998091.77992788, "clp": 18912290172.27482, "cny": 188057453.83227012, "czk": 615587465.5365955, "dkk": 179851903.1761295, "eos": 4202280.822584467, "eth": 106557.66845002605, "eur": 24085275.61838408, "gbp": 21426492.020131357, "hkd": 212709480.1747451, "huf": 7757094881.842826, "idr": 387977159287.0966, "ils": 97799819.9412473, "inr": 1889437150.316877, "jpy": 2943748361.8974667, "krw": 32116313918.474636, "kwd": 8253939.104827139, "lkr": 4797199748.345191, "ltc": 207187.67550044123, "mmk": 41476498081.56722, "mxn": 521422348.944768, "myr": 113094536.43795276, "ngn": 9780932918.158426, "nok": 235722167.8216206, "nzd": 41416545.36419858, "php": 1408572879.6879306, "pkr": 4129615349.106448, "pln": 102496026.20486858, "rub": 1753973946.3261917, "sar": 101881430.41725272, "sek": 257548536.9825562, "sgd": 37128584.372877955, "thb": 847898206.9719119, "try": 159661911.2616602, "twd": 855102842.1594257, "uah": 718908757.9564341, "usd": 27169258.10599563, "vef": 6751224888196.045, "vnd": 633972207724.6565, "xag": 1819803.7002541134, "xau": 20212.297875374414, "xdr": 19539097.998024028, "xlm": 218051385.7916866, "xrp": 67822405.72171181, "zar": 403768946.8429193, "bits": 3303918222.3140836, "link": 14799931.844402453, "sats": 330391822231.4084}, "total_volume": {"aed": 14897311.903089346, "ars": 176479631.72820258, "aud": 5867576.6586189475, "bch": 9837.211422355465, "bdt": 342703348.8338365, "bhd": 1529200.8352051917, "bmd": 4055697.7462012777, "bnb": 115581.5407131179, "brl": 15613235.83634205, "btc": 492.95626412206326, "cad": 5405442.06753254, "chf": 4030187.4073776724, "clp": 2823157087.3025513, "cny": 28072323.089881383, "czk": 91894279.37657282, "dkk": 26849347.713003088, "eos": 627199.7610981755, "eth": 15897.895065873608, "eur": 3595546.3913127733, "gbp": 3198712.5896379617, "hkd": 31751854.870122496, "huf": 1157862435.2191887, "idr": 57915386734.502144, "ils": 14599092.392113404, "inr": 282046199.5036244, "jpy": 439319632.11862385, "krw": 4794170730.289692, "kwd": 1232108.8082027081, "lkr": 716103182.9259775, "ltc": 30935.708372010184, "mmk": 6191414544.095055, "mxn": 77857712.26185746, "myr": 16882214.992755458, "ngn": 1460051188.6324599, "nok": 35189273.66200859, "nzd": 6184448.323529663, "php": 210275971.94358024, "pkr": 616449356.0592772, "pln": 15301413.515125372, "rub": 261827735.09926212, "sar": 15208375.808827503, "sek": 38448631.100045525, "sgd": 5542780.160312152, "thb": 126576298.81006896, "try": 23834062.165332608, "twd": 127645688.96899629, "uah": 107315283.25114065, "usd": 4055697.7462012777, "vef": 1007790770595.6918, "vnd": 94638567459.32513, "xag": 271583.8782556591, "xau": 3016.3440847822767, "xdr": 2916703.7025536024, "xlm": 32553612.036318675, "xrp": 10117474.629723217, "zar": 60276303.089052565, "bits": 492956264.1220633, "link": 2208202.086239237, "sats": 49295626412.20633}}, "community_data": {"facebook_likes": null, "twitter_followers": 168, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 221, "stars": 181, "subscribers": 30, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 15, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 27, "deletions": 0}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "RDN_20190729": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 0.9928942039140194, "ars": 11.712330570987938, "aud": 0.3888361081867902, "bch": 0.0008935688524805989, "bdt": 22.83948927187526, "bhd": 0.10190274161734218, "bmd": 0.2703090873861153, "bnb": 0.009363175695775581, "brl": 1.0216331957758242, "btc": 2.7347308625805838e-05, "cad": 0.3557408150726728, "chf": 0.26787387281785374, "clp": 188.34885064747792, "cny": 1.8576992030610766, "czk": 6.191328280671199, "dkk": 1.8107494879820718, "eos": 0.05918777117595372, "eth": 0.0012333133978660185, "eur": 0.2425080680575408, "gbp": 0.2170311662623119, "hkd": 2.1128574660992, "huf": 79.10595442354656, "idr": 3778.00785052118, "ils": 0.9526232857661473, "inr": 18.689332487328436, "jpy": 29.372596362637402, "krw": 320.0432563742867, "kwd": 0.08233047152697573, "lkr": 47.62538589094636, "ltc": 0.002900799670128308, "mmk": 408.7167285030289, "mxn": 5.1434953766004865, "myr": 1.112452183573984, "ngn": 97.17611691530846, "nok": 2.345154878689819, "nzd": 0.4058085454746771, "php": 13.83610636174485, "pkr": 43.526520796349324, "pln": 1.0325301660156192, "rub": 17.0855616409579, "sar": 1.0138393738592204, "sek": 2.554179219474668, "sgd": 0.36961632114637677, "thb": 8.374175527221864, "try": 1.5412894414394356, "twd": 8.392517620655513, "uah": 6.87643747501481, "usd": 0.2703090873861153, "vef": 67168.46780089238, "vnd": 6269.682047078524, "xag": 0.016456195586615055, "xau": 0.00019101121351052452, "xdr": 0.19604409840856654, "xlm": 3.1687737923444863, "xrp": 0.8640336817118534, "zar": 3.8083798666194153, "bits": 27.347308625805837, "link": 0.11366935875385731, "sats": 2734.7308625805836}, "market_cap": {"aed": 50239989.786405824, "ars": 592638536.8570436, "aud": 19674928.13119675, "bch": 45258.49617799116, "bdt": 1155667646.3841097, "bhd": 5156231.830018178, "bmd": 13677515.425024217, "bnb": 473779.53385851934, "brl": 51694169.54887903, "btc": 1383.6416428678012, "cad": 18000321.530133918, "chf": 13554294.688560171, "clp": 9530365164.292984, "cny": 93998724.75847878, "czk": 313278361.7418956, "dkk": 91623090.7818218, "eos": 2997572.0547771608, "eth": 62405.819175219076, "eur": 12270796.641075904, "gbp": 10981677.13475194, "hkd": 106909615.44393049, "huf": 4002724889.133337, "idr": 191165458590.57214, "ils": 48202299.86087039, "inr": 945671622.9954288, "jpy": 1486239858.629401, "krw": 16194041488.074467, "kwd": 4165883.9706384484, "lkr": 2409822608.79628, "ltc": 146836.27760062044, "mmk": 20680878370.102375, "mxn": 260258499.01044628, "myr": 56289568.536409415, "ngn": 4917066795.296206, "nok": 118663757.61734156, "nzd": 20533725.647218607, "php": 700100614.5040214, "pkr": 2202421921.314518, "pln": 52245551.22820793, "rub": 864521556.227218, "sar": 51299805.746629305, "sek": 129240293.06768887, "sgd": 18702415.75193137, "thb": 423729427.8672504, "try": 77988536.43274768, "twd": 424657529.3539303, "uah": 347944571.6872363, "usd": 13677515.425024217, "vef": 3398693559679.1694, "vnd": 317243026263.5648, "xag": 832675.9235128256, "xau": 9665.079499939113, "xdr": 9919741.159637634, "xlm": 160436346.49242634, "xrp": 43751088.65158427, "zar": 192702268.6278888, "bits": 1383641642.8678012, "link": 5751120.172078072, "sats": 138364164286.78012}, "total_volume": {"aed": 631818.1509903711, "ars": 7453022.704713474, "aud": 247431.91162202012, "bch": 568.6134715373657, "bdt": 14533677.228082858, "bhd": 64844.775541759605, "bmd": 172008.4447214473, "bnb": 5958.161838575094, "brl": 650105.916824711, "btc": 17.402182329604898, "cad": 226372.05769255076, "chf": 170458.82064295173, "clp": 119853879.78713204, "cny": 1182128.0363481462, "czk": 3939788.923177978, "dkk": 1152252.061592924, "eos": 37663.5375634347, "eth": 784.8064653410323, "eur": 154317.54819029119, "gbp": 138105.58026684998, "hkd": 1344495.407742956, "huf": 50338271.34773149, "idr": 2404096957.2928476, "ils": 606192.1608873244, "inr": 11892767.073107691, "jpy": 18690953.628766596, "krw": 203656278.46574643, "kwd": 52390.16008481377, "lkr": 30305931.01984344, "ltc": 1845.8944334140326, "mmk": 260082742.61613002, "mxn": 3273011.087848648, "myr": 707897.658099111, "ngn": 61837035.87736031, "nok": 1492315.50894234, "nzd": 258232.14985763514, "php": 8804465.877555627, "pkr": 27697659.81127112, "pln": 657040.0932567656, "rub": 10872223.76973089, "sar": 645146.3973380575, "sek": 1625326.027068097, "sgd": 235201.59517699204, "thb": 5328821.617470444, "try": 980783.8953963462, "twd": 5340493.422495448, "uah": 4375751.20666228, "usd": 172008.4447214473, "vef": 42741972874.37392, "vnd": 3989648547.3146243, "xag": 10471.733067717048, "xau": 121.54804737796351, "xdr": 124750.6726102321, "xlm": 2016417.0467442996, "xrp": 549819.0653350413, "zar": 2423423.881528472, "bits": 17402182.329604898, "link": 72332.34295155827, "sats": 1740218232.9604897}}, "community_data": {"facebook_likes": null, "twitter_followers": 25652, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 4400, "reddit_accounts_active_48h": "1289.2"}, "developer_data": {"forks": 360, "stars": 1737, "subscribers": 223, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2460, "pull_request_contributors": 68, "code_additions_deletions_4_weeks": {"additions": 6190, "deletions": -4549}, "commit_count_4_weeks": 285}, "public_interest_stats": {"alexa_rank": 778116, "bing_matches": null}}, "ARK_20190912": {"id": "ark", "symbol": "ark", "name": "Ark", "localization": {"en": "Ark", "de": "Ark", "es": "Ark", "fr": "Ark", "it": "Ark", "pl": "Ark", "ro": "Ark", "hu": "Ark", "nl": "Ark", "pt": "Ark", "sv": "Ark", "vi": "Ark", "tr": "Ark", "ru": "Ark", "ja": "\u30a2\u30fc\u30af", "zh": "Ark", "zh-tw": "Ark", "ko": "\uc544\ud06c", "ar": "Ark", "th": "Ark", "id": "Ark"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/613/thumb/ark.png?1547034308", "small": "https://assets.coingecko.com/coins/images/613/small/ark.png?1547034308"}, "market_data": {"current_price": {"aed": 0.8286295011917364, "ars": 12.650661973645423, "aud": 0.3294500092227763, "bch": 0.0007346450882739966, "bdt": 18.890458413587126, "bhd": 0.08443903474006886, "bmd": 0.22559969953556733, "bnb": 0.0100666201736902, "brl": 0.9165678128713018, "btc": 2.1700535136357375e-05, "cad": 0.2970809643334121, "chf": 0.22300530299090954, "clp": 160.55853032209666, "cny": 1.6052997819852388, "czk": 5.292793197205742, "dkk": 1.5275581255252804, "eos": 0.05973060742955546, "eth": 0.0012441717048858358, "eur": 0.20470916735857408, "gbp": 0.18368282416245996, "hkd": 1.768726234726099, "huf": 67.5459034135465, "idr": 3182.7605610477945, "ils": 0.7937231364816958, "inr": 16.17092442279212, "jpy": 24.128414263875896, "krw": 269.1046645919815, "kwd": 0.06829557144070282, "lkr": 40.43659595101428, "ltc": 0.0032000557680512682, "mmk": 340.8733260358571, "mxn": 4.409129100511708, "myr": 0.9431195439084397, "ngn": 81.52657081902716, "nok": 2.026426741108282, "nzd": 0.35109201399892176, "php": 11.713684155957148, "pkr": 35.11517009114272, "pln": 0.8883100969062729, "rub": 14.843016391363323, "sar": 0.84626959289782, "sek": 2.1756609423510636, "sgd": 0.3116630521122918, "thb": 6.918114952524768, "try": 1.2877097745667465, "twd": 7.037797172326281, "uah": 5.597728415078499, "usd": 0.22559969953556733, "vef": 56058.73742787118, "vnd": 5238.467874976402, "xag": 0.01241811966895634, "xau": 0.00014986136840748686, "xdr": 0.16478411173266602, "xlm": 3.732191331771686, "xrp": 0.860382413723384, "zar": 3.339868191804364, "bits": 21.700535136357374, "link": 0.12317422981785354, "sats": 2170.0535136357375}, "market_cap": {"aed": 118293374.32299973, "ars": 1805981430.9409966, "aud": 47031578.293623805, "bch": 104876.36066150684, "bdt": 2696761417.5426936, "bhd": 12054335.899957886, "bmd": 32206130.32234058, "bnb": 1437089.1534288411, "brl": 130847259.5103875, "btc": 3097.9219569211878, "cad": 42410642.71497424, "chf": 31835759.82363384, "clp": 22920992193.527637, "cny": 229169161.53467926, "czk": 755587830.2556497, "dkk": 218070929.02560034, "eos": 8527013.693143439, "eth": 177615.29006205348, "eur": 29223842.65449189, "gbp": 26222166.896189082, "hkd": 252499572.1953556, "huf": 9642708623.084593, "idr": 454364086587.58246, "ils": 113310216.39661482, "inr": 2308526564.819538, "jpy": 3444520785.504399, "krw": 38416806033.16905, "kwd": 9749729.626351852, "lkr": 5772641903.6514635, "ltc": 456833.1133276554, "mmk": 48662346555.96124, "mxn": 629437834.8527763, "myr": 134637727.81254488, "ngn": 11638558783.262762, "nok": 289288345.00739235, "nzd": 50121144.58157612, "php": 1672220482.820349, "pkr": 5012966535.7475395, "pln": 126813248.45073214, "rub": 2118957255.97595, "sar": 120811636.06516398, "sek": 310592700.2156213, "sgd": 44492350.360619254, "thb": 987615285.8564374, "try": 183830691.71823123, "twd": 1004700863.4353511, "uah": 799119729.3977983, "usd": 32206130.32234058, "vef": 8002825389504.794, "vnd": 747832463510.3787, "xag": 1772784.1891641156, "xau": 21393.888250524436, "xdr": 23524227.152956292, "xlm": 532799647.6342759, "xrp": 122826352.16478494, "zar": 476792435.7440605, "bits": 3097921956.921188, "link": 17584089.455944967, "sats": 309792195692.1188}, "total_volume": {"aed": 1450133.1600023361, "ars": 22139139.8659833, "aud": 576550.0531298098, "bch": 1285.6568608851144, "bdt": 33059021.086975753, "bhd": 147771.52406359947, "bmd": 394808.05922620744, "bnb": 17616.96838215614, "brl": 1604028.551872594, "btc": 37.976762287330295, "cad": 519902.9927920317, "chf": 390267.7665451082, "clp": 280983538.0063763, "cny": 2809335.7070359285, "czk": 9262589.508657688, "dkk": 2673284.849826574, "eos": 104530.83600826071, "eth": 2177.347829635279, "eur": 358248.8329418611, "gbp": 321451.9322058598, "hkd": 3095338.2184119252, "huf": 118207901.38587403, "idr": 5569952099.563354, "ils": 1389045.6934224411, "inr": 28299733.113118306, "jpy": 42225643.15173181, "krw": 470943403.6259854, "kwd": 119519.84896149066, "lkr": 70765581.7006854, "ltc": 5600.219369976453, "mmk": 596541292.2590423, "mxn": 7716143.712223246, "myr": 1650495.091595161, "ngn": 142674601.36999655, "nok": 3546323.9111934896, "nzd": 614424.3850594372, "php": 20499393.028992526, "pkr": 61452883.94276655, "pln": 1554576.4736061527, "rub": 25975843.52550544, "sar": 1481003.991769349, "sek": 3807489.4423716324, "sgd": 545422.2013162347, "thb": 12106964.430949952, "try": 2253541.1083876994, "twd": 12316412.870025864, "uah": 9796237.744031703, "usd": 394808.05922620744, "vef": 98104923774.86543, "vnd": 9167518127.444155, "xag": 21732.18198354245, "xau": 262.2630975827854, "xdr": 288378.4662764214, "xlm": 6531476.856534317, "xrp": 1505701.9652676235, "zar": 5844896.432008485, "bits": 37976762.28733029, "link": 215559.58949051143, "sats": 3797676228.7330294}}, "community_data": {"facebook_likes": null, "twitter_followers": 63207, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.913, "reddit_subscribers": 21775, "reddit_accounts_active_48h": "1762.04166666667"}, "developer_data": {"forks": 145, "stars": 228, "subscribers": 24, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2119, "pull_request_contributors": 38, "code_additions_deletions_4_weeks": {"additions": 365, "deletions": -180}, "commit_count_4_weeks": 9}, "public_interest_stats": {"alexa_rank": 99618, "bing_matches": null}}, "BRD_20191003": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.7480832907365222, "ars": 11.640108540437243, "aud": 0.3012065460605519, "bch": 0.0009334583180947386, "bdt": 17.21710527896148, "bhd": 0.07678658947161066, "bmd": 0.20366931236767305, "bnb": 0.01336270810601693, "brl": 0.8467356139146135, "btc": 2.529459850736471e-05, "cad": 0.26960114216733533, "chf": 0.20184036194261132, "clp": 147.94538850387775, "cny": 1.4506957781324616, "czk": 4.811259799130313, "dkk": 1.3896605659407413, "eos": 0.07324567183059047, "eth": 0.0012012555984284813, "eur": 0.18610975893258164, "gbp": 0.165678875531731, "hkd": 1.596960894809307, "huf": 62.4323836745617, "idr": 2883.8158300607456, "ils": 0.7091600484499354, "inr": 14.360279826951594, "jpy": 21.98705272756024, "krw": 244.99525171572597, "kwd": 0.06196862865030051, "lkr": 37.035037330130585, "ltc": 0.0037807028126443224, "mmk": 311.97059569782624, "mxn": 4.011002336975239, "myr": 0.853985426757652, "ngn": 73.7771717120659, "nok": 1.847565800212108, "nzd": 0.3239478541409001, "php": 10.566775541315177, "pkr": 31.92657267958913, "pln": 0.8154605616460584, "rub": 13.168667096687873, "sar": 0.7641061592097991, "sek": 1.9934899744600514, "sgd": 0.28136935870525154, "thb": 6.238391037821828, "try": 1.1545632456509256, "twd": 6.323495482010521, "uah": 4.906767468125429, "usd": 0.20366931236767305, "vef": 50609.307227088706, "vnd": 4724.651941602314, "xag": 0.011602822799422104, "xau": 0.00013603277042349243, "xdr": 0.14929042064275383, "xlm": 3.522828307538653, "xrp": 0.8494170023435553, "zar": 3.0829389189311476, "bits": 25.29459850736471, "link": 0.11923086627605857, "sats": 2529.459850736471}, "market_cap": {"aed": 45164777.64399717, "ars": 702764453.6353482, "aud": 18189530.984249674, "bch": 56407.84179905694, "bdt": 1039465446.1965011, "bhd": 4635913.249862514, "bmd": 12296330.261480978, "bnb": 805528.109619008, "brl": 51120812.6144021, "btc": 1525.476049727321, "cad": 16279751.042348262, "chf": 12184187.729496278, "clp": 8930886150.564938, "cny": 87585616.89381476, "czk": 290467479.3724794, "dkk": 83900357.52912772, "eos": 4411086.282490896, "eth": 72400.48545718176, "eur": 11237222.743399097, "gbp": 10002277.702578051, "hkd": 96415119.80137376, "huf": 3769571686.16877, "idr": 174107261779.81415, "ils": 42814825.96772551, "inr": 866987477.6260443, "jpy": 1327056850.8098116, "krw": 14791342360.663807, "kwd": 3741293.7416884718, "lkr": 2235953197.6789, "ltc": 227602.35180829928, "mmk": 18834911514.044624, "mxn": 242168846.7017108, "myr": 51558512.786389686, "ngn": 4454222673.918869, "nok": 111562846.0871895, "nzd": 19557067.354280334, "php": 638024668.2912198, "pkr": 1927534773.018246, "pln": 49215840.53763292, "rub": 795027840.4872363, "sar": 46132142.24199816, "sek": 120334371.79756565, "sgd": 16985597.288347982, "thb": 376636595.9091623, "try": 69703580.24041396, "twd": 381774691.28690445, "uah": 296241159.76510704, "usd": 12296330.261480978, "vef": 3055486114892.065, "vnd": 285246117685.1829, "xag": 700526.7305653733, "xau": 8208.661192656851, "xdr": 9013259.266986601, "xlm": 212668213.04332772, "xrp": 51161226.64518087, "zar": 186052084.28738979, "bits": 1525476049.727321, "link": 7190619.405934095, "sats": 152547604972.7321}, "total_volume": {"aed": 421921.1980797646, "ars": 6565055.7925501475, "aud": 169881.3866811735, "bch": 526.4732641472247, "bdt": 9710498.518972225, "bhd": 43307.864548643774, "bmd": 114870.097154083, "bnb": 7536.607064341682, "brl": 477561.4013887734, "btc": 14.266228693153337, "cad": 152055.84500480228, "chf": 113838.56368163932, "clp": 83441638.57272592, "cny": 818196.7280091025, "czk": 2713564.818061193, "dkk": 783772.6870341607, "eos": 41310.776481177236, "eth": 677.5117257196949, "eur": 104966.45685784651, "gbp": 93443.37793193191, "hkd": 900690.6882803077, "huf": 35212049.84141826, "idr": 1626480694.2321644, "ils": 399968.3738126473, "inr": 8099240.478132884, "jpy": 12400763.04861954, "krw": 138178049.70083132, "kwd": 34950.490630198416, "lkr": 20887871.062957603, "ltc": 2132.327616519708, "mmk": 175952342.650097, "mxn": 2262217.2323233625, "myr": 481650.3173670694, "ngn": 41610543.99309503, "nok": 1042032.5993235479, "nzd": 182707.55198920326, "php": 5959692.792820177, "pkr": 18006681.825884126, "pln": 459922.1790099867, "rub": 7427167.358701261, "sar": 430958.1434929733, "sek": 1124334.267052118, "sgd": 158693.15408846218, "thb": 3518471.075829564, "try": 651177.1000583287, "twd": 3566470.2351459726, "uah": 2767431.4270701325, "usd": 114870.097154083, "vef": 28543799605.81263, "vnd": 2664717729.1556807, "xag": 6544.026523864156, "xau": 76.72288659018353, "xdr": 84200.24069433147, "xlm": 1986885.6296504529, "xrp": 479073.7124274847, "zar": 1738786.7078296978, "bits": 14266228.693153337, "link": 67246.5627427051, "sats": 1426622869.3153338}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 242, "stars": 192, "subscribers": 33, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 206, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "MTH_20190114": {"id": "monetha", "symbol": "mth", "name": "Monetha", "localization": {"en": "Monetha", "de": "Monetha", "es": "Monetha", "fr": "Monetha", "it": "Monetha", "pl": "Monetha", "ro": "Monetha", "hu": "Monetha", "nl": "Monetha", "pt": "Monetha", "sv": "Monetha", "vi": "Monetha", "tr": "Monetha", "ru": "Monetha", "ja": "Monetha", "zh": "Monetha", "zh-tw": "Monetha", "ko": "Monetha", "ar": "Monetha", "th": "Monetha", "id": "Monetha"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/902/thumb/mth_logo_coingecko.png?1622448039", "small": "https://assets.coingecko.com/coins/images/902/small/mth_logo_coingecko.png?1622448039"}, "market_data": {"current_price": {"aed": 0.05540763335379179, "ars": 0.5634616797532002, "aud": 0.020991338443972687, "bch": 0.00011355379034611106, "bdt": 1.2663344045098888, "bhd": 0.0056881210695801255, "bmd": 0.015084373286748456, "bnb": 0.0025904128897296843, "brl": 0.05596302489383655, "btc": 4.175527600165628e-06, "cad": 0.019969025213209923, "chf": 0.014846040188817819, "clp": 10.198690584722797, "cny": 0.10239875961976323, "czk": 0.3353648375349636, "dkk": 0.09786288857243805, "eos": 0.006307300246269024, "eth": 0.00011912549959696452, "eur": 0.013109889161006244, "gbp": 0.011827838106618912, "hkd": 0.11824112266417076, "huf": 4.212763771523124, "idr": 212.00960009143705, "ils": 0.0553415487144229, "inr": 1.0622491090394686, "jpy": 1.6339569129063756, "krw": 16.859049803934404, "kwd": 0.004566401818857654, "lkr": 2.7466346405117346, "ltc": 0.00045470827142458833, "mmk": 23.086684406140837, "mxn": 0.2886079866705089, "myr": 0.06180856648303716, "ngn": 5.505796249663186, "nok": 0.1278645907961573, "nzd": 0.022233249981043982, "php": 0.788210228548605, "pkr": 2.108269408475299, "pln": 0.05632459732152016, "rub": 1.0091973681899735, "sar": 0.05659821276856863, "sek": 0.13425599060148552, "sgd": 0.02039407268368392, "thb": 0.48129332736696145, "try": 0.08189353018932918, "twd": 0.464508190992132, "uah": 0.42652573905609936, "usd": 0.015084373286748456, "vef": 3748.280352707244, "vnd": 351.8475303549315, "xag": 0.0009678793087890427, "xau": 1.1712261638495837e-05, "xdr": 0.010781420047343867, "xlm": 0.14007191006418412, "xrp": 0.04590378650341771, "zar": 0.20913213457845997, "bits": 4.175527600165628, "link": 0.04279698425180075, "sats": 417.55276001656284}, "market_cap": {"aed": 16499175.509781681, "ars": 167786504.9373786, "aud": 6250759.258401556, "bch": 33813.82317411731, "bdt": 377086555.2165602, "bhd": 1693797.4457172344, "bmd": 4491794.852957625, "bnb": 771368.0286170521, "brl": 16664558.904472718, "btc": 1243.3803530494156, "cad": 5946336.845832069, "chf": 4420824.494280891, "clp": 3036945917.773692, "cny": 30492100.179817528, "czk": 99864278.24786563, "dkk": 29141417.467533205, "eos": 1878175.396729162, "eth": 35472.955738620054, "eur": 3903836.8738848856, "gbp": 3522070.24574231, "hkd": 35209607.724136285, "huf": 1254468466.5340097, "idr": 63131799536.20713, "ils": 16479496.956530979, "inr": 316314439.4427022, "jpy": 486556458.9146712, "krw": 5020254517.408085, "kwd": 1359774.105066748, "lkr": 817887432.6879723, "ltc": 135402.13002926088, "mmk": 6874707236.160812, "mxn": 85941115.64369114, "myr": 18405232.72127541, "ngn": 1639505121.329533, "nok": 38075265.037246734, "nzd": 6620573.220440411, "php": 234711683.43158603, "pkr": 627796296.0487481, "pln": 16772227.227098187, "rub": 300516796.94484997, "sar": 16853703.893936027, "sek": 39978483.43439341, "sgd": 6072906.64119871, "thb": 143318575.42460573, "try": 24386093.502347358, "twd": 138320330.70197707, "uah": 127009991.2622298, "usd": 4491794.852957625, "vef": 1116155512441.6982, "vnd": 104772461926.70993, "xag": 288213.1869092682, "xau": 3487.6541135789475, "xdr": 3210469.944997783, "xlm": 41710336.43293432, "xrp": 13669138.785398165, "zar": 62274953.54499129, "bits": 1243380353.0494156, "link": 12744001.353587875, "sats": 124338035304.94156}, "total_volume": {"aed": 1424893.6157044435, "ars": 14490294.957156701, "aud": 539824.9721824841, "bch": 2920.2126333400174, "bdt": 32565762.136266127, "bhd": 146278.89528589643, "bmd": 387918.1602280009, "bnb": 66616.5032721386, "brl": 1439176.3744458775, "btc": 107.38019762879001, "cad": 513534.5947093528, "chf": 381789.05329639814, "clp": 262275217.74708754, "cny": 2633343.6388917617, "czk": 8624429.28908505, "dkk": 2516696.6481112037, "eos": 162202.05248352775, "eth": 3063.497817340016, "eur": 337141.22472679685, "gbp": 304171.28445269837, "hkd": 3040754.686671219, "huf": 108337783.78847647, "idr": 5452157173.171654, "ils": 1423194.146244494, "inr": 27317390.802335907, "jpy": 42019747.68837705, "krw": 433556731.7788249, "kwd": 117432.1371368617, "lkr": 70633988.98393863, "ltc": 11693.531626298198, "mmk": 593710058.1077641, "mxn": 7422004.022844239, "myr": 1589503.5836519129, "ngn": 141590128.48322034, "nok": 3288237.1628608354, "nzd": 571762.6622322159, "php": 20270054.043284412, "pkr": 54217432.48154554, "pln": 1448474.7727465492, "rub": 25953082.63281401, "sar": 1455511.2202549283, "sek": 3452601.966531042, "sgd": 524465.3526282574, "thb": 12377207.758854771, "try": 2106019.717340782, "twd": 11945551.826061059, "uah": 10968773.898606954, "usd": 387918.1602280009, "vef": 96392869017.52231, "vnd": 9048307414.664337, "xag": 24890.524362588698, "xau": 301.1990555090312, "xdr": 277261.01375952124, "xlm": 3602167.396603383, "xrp": 1180487.387139114, "zar": 5378158.664470322, "bits": 107380197.62879002, "link": 1100591.1269014939, "sats": 10738019762.879002}}, "community_data": {"facebook_likes": null, "twitter_followers": 18700, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2028, "reddit_accounts_active_48h": "712.333333333333"}, "developer_data": {"forks": 2, "stars": 0, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 674, "deletions": 0}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 766589, "bing_matches": null}}, "REN_20190117": {"id": "republic-protocol", "symbol": "ren", "name": "REN", "localization": {"en": "REN", "de": "REN", "es": "REN", "fr": "REN", "it": "REN", "pl": "REN", "ro": "REN", "hu": "REN", "nl": "REN", "pt": "REN", "sv": "REN", "vi": "REN", "tr": "REN", "ru": "REN", "ja": "\u30ec\u30f3", "zh": "REN", "zh-tw": "REN", "ko": "\ub9ac\ud37c\ube14\ub9ad \ud504\ub85c\ud1a0\ucf5c", "ar": "REN", "th": "REN", "id": "REN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3139/thumb/REN.png?1589985807", "small": "https://assets.coingecko.com/coins/images/3139/small/REN.png?1589985807"}, "market_data": {"current_price": {"aed": 0.06475313479991476, "ars": 0.6511110218133275, "aud": 0.024471358900410533, "bch": 0.0001422377664683192, "bdt": 1.4757948823926583, "bhd": 0.006647192474580812, "bmd": 0.0176295189075712, "bnb": 0.0032187759927752306, "brl": 0.06544500526944234, "btc": 5.051080270072761e-06, "cad": 0.02338917088226924, "chf": 0.01734855726474125, "clp": 11.898170332150912, "cny": 0.11922778407970436, "czk": 0.39332734822912196, "dkk": 0.11482096849741653, "eos": 0.00793467341292346, "eth": 0.00015350496624333935, "eur": 0.015382125466752961, "gbp": 0.013719467909060984, "hkd": 0.13820869375913575, "huf": 4.941499445395039, "idr": 247.60740300982496, "ils": 0.06475417494153025, "inr": 1.240747294162794, "jpy": 1.9123028242604665, "krw": 19.73606137759553, "kwd": 0.0053392055782714035, "lkr": 3.2091305035989794, "ltc": 0.0005941025673769363, "mmk": 26.9096696648407, "mxn": 0.3374455636386861, "myr": 0.07221050944541173, "ngn": 6.4147377125852385, "nok": 0.15056490623011218, "nzd": 0.025843111766608622, "php": 0.9204333036701327, "pkr": 2.4657151287616914, "pln": 0.06601117726915874, "rub": 1.1787872040434024, "sar": 0.06613802165769853, "sek": 0.15759774443079588, "sgd": 0.023859138597307296, "thb": 0.5630868339078244, "try": 0.09669710025015815, "twd": 0.5430066884654702, "uah": 0.4941858611583741, "usd": 0.0176295189075712, "vef": 4380.717587185499, "vnd": 408.9117321771471, "xag": 0.0011298095797951484, "xau": 1.368509034719125e-05, "xdr": 0.012591919138770578, "xlm": 0.17300184780243177, "xrp": 0.05611562526597485, "zar": 0.24456662933449186, "bits": 5.051080270072761, "link": 0.03980588686814781, "sats": 505.1080270072761}, "market_cap": {"aed": 48693586.40730876, "ars": 489627736.161124, "aud": 18402170.532799795, "bch": 106961.10687627779, "bdt": 1109780180.4854946, "bhd": 4998609.598240476, "bmd": 13257188.318336548, "bnb": 2420481.2232531183, "brl": 49213864.76286184, "btc": 3798.352224043433, "cad": 17588378.027878683, "chf": 13045908.508107228, "clp": 8947282428.066025, "cny": 89657874.08094226, "czk": 295777482.8436196, "dkk": 86344001.2313842, "eos": 5966779.934899347, "eth": 115433.9069578281, "eur": 11567175.208703345, "gbp": 10316876.521212682, "hkd": 103931292.16982107, "huf": 3715948748.574384, "idr": 186197819006.03998, "ils": 48694368.5814195, "inr": 933027192.6546185, "jpy": 1438028955.6296532, "krw": 14841283174.929195, "kwd": 4015019.025338148, "lkr": 2413227930.23347, "ltc": 446758.05717765656, "mmk": 20235751196.693893, "mxn": 253755046.1699809, "myr": 54301443.351906575, "ngn": 4823806384.867141, "nok": 113223016.83275357, "nzd": 19433712.355849545, "php": 692154885.5189211, "pkr": 1854188419.5902112, "pln": 49639619.36570503, "rub": 886433942.5925809, "sar": 49735004.835655324, "sek": 118511627.42545748, "sgd": 17941788.15406892, "thb": 423434594.88766956, "try": 72715068.09541322, "twd": 408334564.5927673, "uah": 371621883.7271992, "usd": 13257188.318336548, "vef": 3294247467968.378, "vnd": 307496754022.1145, "xag": 849603.3522941141, "xau": 10291.025003991952, "xdr": 9468973.270748543, "xlm": 130095329.75695999, "xrp": 42198282.07749568, "zar": 183911193.4061764, "bits": 3798352224.043433, "link": 29933552.98894755, "sats": 379835222404.3433}, "total_volume": {"aed": 931957.3315867943, "ars": 9371093.651773265, "aud": 352203.2162859762, "bch": 2047.1523069622085, "bdt": 21240328.59280072, "bhd": 95669.49585214998, "bmd": 253732.26252330598, "bnb": 46326.12605508, "brl": 941915.0542295207, "btc": 72.69750421618062, "cad": 336627.86135098257, "chf": 249688.53145547223, "clp": 171244019.42515874, "cny": 1715981.9033514038, "czk": 5660950.732785293, "dkk": 1652556.9571529771, "eos": 114199.52228985468, "eth": 2209.3151037013854, "eur": 221386.7274290979, "gbp": 197456.98401826195, "hkd": 1989164.0124584385, "huf": 71120365.85407208, "idr": 3563681284.361174, "ils": 931972.3017902824, "inr": 17857414.023498595, "jpy": 27522754.57845511, "krw": 284050604.72101396, "kwd": 76844.33809875864, "lkr": 46187303.67401189, "ltc": 8550.601373853518, "mmk": 387296522.58874196, "mxn": 4856674.013022851, "myr": 1039287.3472954626, "ngn": 92323898.44789392, "nok": 2167000.3880803, "nzd": 371946.1236329142, "php": 13247305.60524405, "pkr": 35487722.701835275, "pln": 950063.6658404531, "rub": 16965655.49426332, "sar": 951889.2694693056, "sek": 2268220.277175144, "sgd": 343391.8560053292, "thb": 8104208.464994398, "try": 1391709.7882562552, "twd": 7815205.641854539, "uah": 7112553.514145644, "usd": 253732.26252330598, "vef": 63049331674.89077, "vnd": 5885248458.656083, "xag": 16260.74667181163, "xau": 196.96220610634194, "xdr": 181228.77597179683, "xlm": 2489923.3208667953, "xrp": 807642.2638811189, "zar": 3519917.050719368, "bits": 72697504.21618062, "link": 572904.8982989729, "sats": 7269750421.618062}}, "community_data": {"facebook_likes": null, "twitter_followers": 5442, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.087, "reddit_subscribers": 792, "reddit_accounts_active_48h": "2172.45833333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 733999, "bing_matches": null}}, "VIA_20190120": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 1.1019815484519242, "ars": 11.243678019918173, "aud": 0.4182577421658875, "bch": 0.002358563192112018, "bdt": 25.173349455796416, "bhd": 0.11311509697176972, "bmd": 0.3000074182165053, "bnb": 0.049547104552259205, "brl": 1.1209780181733935, "btc": 8.343539138467095e-05, "cad": 0.397828137007598, "chf": 0.29696354295128113, "clp": 200.70072218198587, "cny": 2.027180125630747, "czk": 6.721662605051792, "dkk": 1.9647389816625132, "eos": 0.12451634330024826, "eth": 0.0024600763017552916, "eur": 0.2632124083945057, "gbp": 0.23284955761906773, "hkd": 2.3529731814429673, "huf": 84.60209193705447, "idr": 4243.927681953069, "ils": 1.105899045318994, "inr": 21.323627264574604, "jpy": 32.71059632761842, "krw": 335.9266085823127, "kwd": 0.0908887473857817, "lkr": 54.71959473921247, "ltc": 0.009567738202905435, "mmk": 457.72029254756717, "mxn": 5.665790096727815, "myr": 1.2324181737292628, "ngn": 108.77849724163524, "nok": 2.5608720221112242, "nzd": 0.4429723532785632, "php": 15.654330681142646, "pkr": 41.91070271659675, "pln": 1.1269328654175705, "rub": 19.905882208308793, "sar": 1.124832813490058, "sek": 2.6974602994990873, "sgd": 0.406345047603346, "thb": 9.499584894116575, "try": 1.6030821390544425, "twd": 9.234539740404193, "uah": 8.409500139833986, "usd": 0.3000074182165053, "vef": 74548.13600742912, "vnd": 6963.37044780769, "xag": 0.01923559063415863, "xau": 0.00023197773606173063, "xdr": 0.21459170616124829, "xlm": 2.8345627501033177, "xrp": 0.9176828528190754, "zar": 4.10655344183088, "bits": 83.43539138467095, "link": 0.6112885548773686, "sats": 8343.539138467095}, "market_cap": {"aed": 25487923.523936946, "ars": 260032704.64966986, "aud": 9673033.425376067, "bch": 54538.0559356046, "bdt": 582238792.1758128, "bhd": 2616258.8158298526, "bmd": 6938923.925593915, "bnb": 1145699.2886083317, "brl": 25926706.378371853, "btc": 1929.2543400636227, "cad": 9199694.72979166, "chf": 6869812.243295, "clp": 4642196977.64282, "cny": 46887002.85763066, "czk": 155465896.660539, "dkk": 45438204.11443403, "eos": 2878714.273564296, "eth": 56799.190777867756, "eur": 6087448.570684287, "gbp": 5384827.0118264975, "hkd": 54423021.18702201, "huf": 1956576865.6036706, "idr": 98158543898.2133, "ils": 25578531.99255745, "inr": 493197895.8594392, "jpy": 756489436.7097262, "krw": 7769651897.966025, "kwd": 2102181.6978783077, "lkr": 1265619054.9952018, "ltc": 221170.0239212906, "mmk": 10586692516.036667, "mxn": 131043660.01201874, "myr": 28504814.99045892, "ngn": 2515956843.9584937, "nok": 59232708.55035173, "nzd": 10243905.635658601, "php": 362052851.22994375, "pkr": 969359956.3220649, "pln": 26063569.71388035, "rub": 460409398.63382894, "sar": 26016454.42042562, "sek": 62381710.18949287, "sgd": 9399272.059739605, "thb": 219769598.5714112, "try": 37057690.98760239, "twd": 213594039.54471847, "uah": 194504796.14630097, "usd": 6938923.925593915, "vef": 1724236845960.4963, "vnd": 161057010157.65118, "xag": 444889.1074894531, "xau": 5364.69025459442, "xdr": 4963329.016890225, "xlm": 65581333.26582041, "xrp": 21216813.469681047, "zar": 94941896.00117804, "bits": 1929254340.0636227, "link": 14134662.49701148, "sats": 192925434006.36227}, "total_volume": {"aed": 1095718.9365861472, "ars": 11179779.680166991, "aud": 415880.76416410436, "bch": 2345.159368922913, "bdt": 25030288.152070694, "bhd": 112472.25866881531, "bmd": 298302.4622489728, "bnb": 49265.52607635843, "brl": 1114607.4484957522, "btc": 82.96122421477102, "cad": 395567.2613923359, "chf": 295275.88546699524, "clp": 199560130.7392592, "cny": 2015659.5676625336, "czk": 6683463.087058698, "dkk": 1953573.2795897338, "eos": 123808.711189592, "eth": 2446.095574891278, "eur": 261716.5601615232, "gbp": 231526.26286469126, "hkd": 2339601.1265418115, "huf": 84121294.3542103, "idr": 4219809245.581938, "ils": 1099614.170138193, "inr": 21202444.109270297, "jpy": 32524700.502968933, "krw": 334017522.2025152, "kwd": 90372.2224506379, "lkr": 54408620.763481475, "ltc": 9513.364306280453, "mmk": 455119047.05544233, "mxn": 5633591.150802981, "myr": 1225414.284517834, "ngn": 108160304.03456761, "nok": 2546318.4685286437, "nzd": 440454.92100417474, "php": 15565366.399288522, "pkr": 41672522.2638435, "pln": 1120528.45406893, "rub": 19792756.163420256, "sar": 1118440.3368331902, "sek": 2682130.508448741, "sgd": 404035.7699931216, "thb": 9445598.315882642, "try": 1593971.7494658318, "twd": 9182059.42597925, "uah": 8361708.563436938, "usd": 298302.4622489728, "vef": 74124475518.93224, "vnd": 6923797293.018026, "xag": 19126.27388714055, "xau": 230.6593959093958, "xdr": 213372.1716171439, "xlm": 2818453.7995151486, "xrp": 912467.6189241355, "zar": 4083215.7095899135, "bits": 82961224.21477102, "link": 607814.5738814375, "sats": 8296122421.477102}}, "community_data": {"facebook_likes": null, "twitter_followers": 40916, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2228, "reddit_accounts_active_48h": "193.0"}, "developer_data": {"forks": 31, "stars": 75, "subscribers": 29, "total_issues": 13, "closed_issues": 10, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 5, "deletions": -5}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 2614866, "bing_matches": null}}, "TNT_20190123": {"id": "tierion", "symbol": "tnt", "name": "Tierion", "localization": {"en": "Tierion", "de": "Tierion", "es": "Tierion", "fr": "Tierion", "it": "Tierion", "pl": "Tierion", "ro": "Tierion", "hu": "Tierion", "nl": "Tierion", "pt": "Tierion", "sv": "Tierion", "vi": "Tierion", "tr": "Tierion", "ru": "Tierion", "ja": "Tierion", "zh": "Tierion", "zh-tw": "Tierion", "ko": "\ud2f0\uc5d0\ub9ac\uc628", "ar": "Tierion", "th": "Tierion", "id": "Tierion"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/923/thumb/tierion.png?1547034767", "small": "https://assets.coingecko.com/coins/images/923/small/tierion.png?1547034767"}, "market_data": {"current_price": {"aed": 0.05991207532627974, "ars": 0.6128771527339607, "aud": 0.02275588311257849, "bch": 0.00012708453710109414, "bdt": 1.3648403514357683, "bhd": 0.006148247363244273, "bmd": 0.016311420355675135, "bnb": 0.002498869323521767, "brl": 0.06119474017736856, "btc": 4.440442165528157e-06, "cad": 0.021630313550935126, "chf": 0.01624054723422975, "clp": 10.946528106818294, "cny": 0.11057185630705053, "czk": 0.3671847524845674, "dkk": 0.10715975183994876, "eos": 0.0066576431431858004, "eth": 0.00013266943755065345, "eur": 0.014349156486887423, "gbp": 0.012667122819810184, "hkd": 0.12793780998872034, "huf": 4.564750986535679, "idr": 230.95910981312886, "ils": 0.06016532643872216, "inr": 1.1622213231825629, "jpy": 1.790584649646088, "krw": 18.36335449623478, "kwd": 0.004946421911438143, "lkr": 2.962969507608388, "ltc": 0.0005082935190598995, "mmk": 25.086722380304593, "mxn": 0.3112871460677043, "myr": 0.06708071621271394, "ngn": 5.921045589110074, "nok": 0.13961923367643694, "nzd": 0.024200928153308106, "php": 0.8582022197969422, "pkr": 2.2705497135099795, "pln": 0.06156582499046023, "rub": 1.079377250338128, "sar": 0.06117924432803094, "sek": 0.14722851127235947, "sgd": 0.02216232683725583, "thb": 0.5178223506112651, "try": 0.08693168216272995, "twd": 0.5035661692204036, "uah": 0.45600206746325406, "usd": 0.016311420355675135, "vef": 4053.18638578357, "vnd": 379.7267259806329, "xag": 0.0010635760512111775, "xau": 1.2727148846719101e-05, "xdr": 0.011680347133973269, "xlm": 0.15278546524949524, "xrp": 0.049804267155219774, "zar": 0.22584613198843864, "bits": 4.4404421655281565, "link": 0.03401322318870223, "sats": 444.04421655281567}, "market_cap": {"aed": 25670522.916330684, "ars": 262599432.7265701, "aud": 9750211.718447234, "bch": 54461.263424567114, "bdt": 584793054.2859429, "bhd": 2634339.1373758917, "bmd": 6988953.191120599, "bnb": 1070428.0125701819, "brl": 26220106.23946761, "btc": 1902.6462679326962, "cad": 9267939.003493953, "chf": 6958586.189505168, "clp": 4690258167.322699, "cny": 47376715.89196828, "czk": 157327626.3899965, "dkk": 45914731.71868371, "eos": 2852601.226678119, "eth": 56846.790747730534, "eur": 6148182.122228782, "gbp": 5427481.2691604225, "hkd": 54817504.90689479, "huf": 1955858550.5350897, "idr": 98959034366.69336, "ils": 25779033.403575968, "inr": 497976892.7737241, "jpy": 767211685.324605, "krw": 7869921825.3411, "kwd": 2119393.0662541217, "lkr": 1269543347.167056, "ltc": 217821.7002586855, "mmk": 10748906263.922289, "mxn": 133377182.69934528, "myr": 28742069.9984834, "ngn": 2536990008.3767776, "nok": 59822643.734715775, "nzd": 10369370.070601797, "php": 367713847.8372781, "pkr": 972862284.2039856, "pln": 26379104.924565487, "rub": 462480698.4113426, "sar": 26213466.733935915, "sek": 63082990.39837349, "sgd": 9495890.700775554, "thb": 221969153.3499901, "try": 37247612.05417087, "twd": 215762962.91627577, "uah": 195383175.41096747, "usd": 6988953.191120599, "vef": 1736668500194.2693, "vnd": 162701484936.76514, "xag": 455710.35967603937, "xau": 5453.200616903745, "xdr": 5004677.556910409, "xlm": 65491932.80518065, "xrp": 21343650.82663269, "zar": 96768277.09940463, "bits": 1902646267.932696, "link": 14574028.83495247, "sats": 190264626793.26962}, "total_volume": {"aed": 2868541.9627628573, "ars": 29344064.966229483, "aud": 1089533.3745770846, "bch": 6084.7053871438375, "bdt": 65347457.90800861, "bhd": 294373.1370156066, "bmd": 780977.682841083, "bnb": 119643.85267820649, "brl": 2929954.923830746, "btc": 212.60479820921663, "cad": 1035642.0095726358, "chf": 777584.3348091397, "clp": 524110958.4330795, "cny": 5294091.516443131, "czk": 17580510.520667333, "dkk": 5130722.699858025, "eos": 318762.597111235, "eth": 6352.105927188005, "eur": 687026.0675953011, "gbp": 606491.6489407277, "hkd": 6125559.406479902, "huf": 218556604.54307672, "idr": 11058136353.535894, "ils": 2880667.422266658, "inr": 55646221.857792765, "jpy": 85731752.36237934, "krw": 879222638.5526944, "kwd": 236830.70134387625, "lkr": 141864596.08808273, "ltc": 24336.68473146952, "mmk": 1201132083.3768613, "mxn": 14904178.09933923, "myr": 3211770.720683952, "ngn": 283494898.87131315, "nok": 6684856.574046536, "nzd": 1158720.9684776592, "php": 41090031.79437395, "pkr": 108712093.45147878, "pln": 2947722.166115384, "rub": 51679714.30441135, "sar": 2929212.99503206, "sek": 7049182.663091906, "sgd": 1061114.3776761808, "thb": 24792917.51947313, "try": 4162218.998746188, "twd": 24110343.024669956, "uah": 21833012.101505317, "usd": 780977.682841083, "vef": 194063303052.02032, "vnd": 18181010120.679398, "xag": 50923.16560348949, "xau": 609.3656468135844, "xdr": 559245.6230395739, "xlm": 7315245.148521514, "xrp": 2384588.240039374, "zar": 10813331.089072516, "bits": 212604798.20921662, "link": 1628525.7600284428, "sats": 21260479820.92166}}, "community_data": {"facebook_likes": null, "twitter_followers": 17028, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 2522, "reddit_accounts_active_48h": "832.04"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1229604, "bing_matches": null}}, "WTC_20190125": {"id": "waltonchain", "symbol": "wtc", "name": "Waltonchain", "localization": {"en": "Waltonchain", "de": "Waltonchain", "es": "Waltonchain", "fr": "Waltonchain", "it": "Waltonchain", "pl": "Waltonchain", "ro": "Waltonchain", "hu": "Waltonchain", "nl": "Waltonchain", "pt": "Waltonchain", "sv": "Waltonchain", "vi": "Waltonchain", "tr": "Waltonchain", "ru": "Waltonchain", "ja": "\u30a6\u30a9\u30eb\u30c8\u30f3\u30c1\u30a7\u30fc\u30f3", "zh": "\u6c83\u5c14\u987f\u94fe", "zh-tw": "\u6c83\u723e\u9813\u93c8", "ko": "\uc6d4\ud2bc\uccb4\uc778", "ar": "Waltonchain", "th": "Waltonchain", "id": "Waltonchain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1093/thumb/ggx6nnW.png?1604815811", "small": "https://assets.coingecko.com/coins/images/1093/small/ggx6nnW.png?1604815811"}, "market_data": {"current_price": {"aed": 4.048485289468848, "ars": 41.675410431828944, "aud": 1.5400746072373095, "bch": 0.009068595318050312, "bdt": 92.56351796535272, "bhd": 0.415260658292288, "bmd": 1.1021741889302052, "bnb": 0.16986879820289222, "brl": 4.138112992338462, "btc": 0.00031211083874727795, "cad": 1.465684462529654, "chf": 1.0994804752124605, "clp": 740.8827275404999, "cny": 7.492800571185324, "czk": 24.807626427022182, "dkk": 7.238241318335827, "eos": 0.47335359219395856, "eth": 0.009514636326560588, "eur": 0.9694613948411205, "gbp": 0.8549829705336939, "hkd": 8.647052490542482, "huf": 307.8482727100958, "idr": 15674.790662708707, "ils": 4.0730847151915714, "inr": 78.4692913808861, "jpy": 120.86717699355877, "krw": 1249.242783093147, "kwd": 0.3343346206442775, "lkr": 200.5205054490835, "ltc": 0.0356903453769482, "mmk": 1696.5749964024408, "mxn": 21.120567199761524, "myr": 4.5455867899859665, "ngn": 399.96007560585724, "nok": 9.432715317637593, "nzd": 1.6386773145273845, "php": 58.116224279760246, "pkr": 154.21570000411663, "pln": 4.153763865821276, "rub": 73.1791859262777, "sar": 4.133704295582725, "sek": 9.933883840911863, "sgd": 1.4981512076129702, "thb": 35.059609862775254, "try": 5.8677813992071775, "twd": 34.063892474405584, "uah": 30.6601570419771, "usd": 1.1021741889302052, "vef": 273876.6655461532, "vnd": 25557.6304086806, "xag": 0.07216251841092458, "xau": 0.0008609743894247188, "xdr": 0.7896075085173008, "xlm": 10.781812157116068, "xrp": 3.4645191586547295, "zar": 15.237216487961526, "bits": 312.11083874727797, "link": 2.23536766895615, "sats": 31211.083874727796}, "market_cap": {"aed": 104477488.62857063, "ars": 1075499083.7705786, "aud": 39744031.597036265, "bch": 233999.0473057867, "bdt": 2388746211.03401, "bhd": 10716450.129504455, "bmd": 28443327.085861124, "bnb": 4386271.322237194, "brl": 106790471.54386579, "btc": 8053.498278720668, "cad": 37824277.67870315, "chf": 28373811.594463233, "clp": 19119636408.972126, "cny": 193363426.1951008, "czk": 640199561.7158538, "dkk": 186794126.9280231, "eos": 12213739.625950519, "eth": 245478.3942282928, "eur": 25018466.07145258, "gbp": 22064171.460352566, "hkd": 223150700.48576948, "huf": 7944505688.351867, "idr": 404512464816.9911, "ils": 105112315.24579981, "inr": 2025022671.8778813, "jpy": 3119166356.553245, "krw": 32238661952.026463, "kwd": 8628027.281552237, "lkr": 5174744955.192963, "ltc": 921226.3303768783, "mmk": 43782768670.3558, "mxn": 545049237.3486053, "myr": 117305969.56750849, "ngn": 10321594686.213013, "nok": 243425957.33238342, "nzd": 42288628.524791524, "php": 1499779973.788846, "pkr": 3979777099.7065926, "pln": 107194366.7884847, "rub": 1888503234.8638778, "sar": 106676698.23552209, "sek": 256359394.14826792, "sgd": 38662132.76467138, "thb": 904768012.9376966, "try": 151427267.37955776, "twd": 879071969.9284083, "uah": 791233258.778524, "usd": 28443327.085861124, "vef": 7067815285055.203, "vnd": 659554586339.2437, "xag": 1862266.5410933308, "xau": 22218.78938639125, "xdr": 20377055.514254652, "xlm": 278114237.919542, "xrp": 89365692.46873158, "zar": 393220179.5306332, "bits": 8053498278.720668, "link": 57679924.69118696, "sats": 805349827872.0668}, "total_volume": {"aed": 5450118.968188629, "ars": 56103932.3750036, "aud": 2073266.7230293755, "bch": 12208.250697192734, "bdt": 124610106.97939935, "bhd": 559028.8289767317, "bmd": 1483759.9802973545, "bnb": 228679.39315408817, "brl": 5570776.846026426, "btc": 420.1673171095984, "cad": 1973121.8269191855, "chf": 1480133.6709055088, "clp": 997385125.018342, "cny": 10086897.098057479, "czk": 33396321.260534853, "dkk": 9744206.40924804, "eos": 637234.2263876637, "eth": 12808.716399117213, "eur": 1305100.4410697517, "gbp": 1150988.2269561843, "hkd": 11640764.737423886, "huf": 414429000.0968543, "idr": 21101589311.794895, "ils": 5483235.0071888715, "inr": 105636291.79727036, "jpy": 162712828.83935884, "krw": 1681745468.0444138, "kwd": 450085.23618338, "lkr": 269943085.4057029, "ltc": 48046.76673176916, "mmk": 2283949405.2010303, "mxn": 28432758.34884532, "myr": 6119322.910742369, "ngn": 538431002.8859285, "nok": 12698433.364179239, "nzd": 2206006.858386739, "php": 78236751.19446498, "pkr": 207607006.49481523, "pln": 5591846.237746655, "rub": 98514689.019837, "sar": 5564841.806105215, "sek": 13373112.381060274, "sgd": 2016828.9446588038, "thb": 47197663.09326856, "try": 7899276.993346605, "twd": 45857216.52194835, "uah": 41275067.467034034, "usd": 1483759.9802973545, "vef": 368696019155.64233, "vnd": 34405985526.15203, "xag": 97146.03913881096, "xau": 1159.0539462090812, "xdr": 1062979.0037248493, "xlm": 14514603.5485915, "xrp": 4663976.828902923, "zar": 20512521.762017045, "bits": 420167317.1095984, "link": 3009278.4985892577, "sats": 42016731710.95984}}, "community_data": {"facebook_likes": null, "twitter_followers": 54728, "reddit_average_posts_48h": 0.25, "reddit_average_comments_48h": 2.292, "reddit_subscribers": 20464, "reddit_accounts_active_48h": "803.88"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 575473, "bing_matches": null}}, "REN_20190126": {"id": "republic-protocol", "symbol": "ren", "name": "REN", "localization": {"en": "REN", "de": "REN", "es": "REN", "fr": "REN", "it": "REN", "pl": "REN", "ro": "REN", "hu": "REN", "nl": "REN", "pt": "REN", "sv": "REN", "vi": "REN", "tr": "REN", "ru": "REN", "ja": "\u30ec\u30f3", "zh": "REN", "zh-tw": "REN", "ko": "\ub9ac\ud37c\ube14\ub9ad \ud504\ub85c\ud1a0\ucf5c", "ar": "REN", "th": "REN", "id": "REN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3139/thumb/REN.png?1589985807", "small": "https://assets.coingecko.com/coins/images/3139/small/REN.png?1589985807"}, "market_data": {"current_price": {"aed": 0.06912103856587125, "ars": 0.7057036362480642, "aud": 0.026420718417817887, "bch": 0.00014804477343470857, "bdt": 1.5793634394977285, "bhd": 0.007095236415320027, "bmd": 0.018817760019413994, "bnb": 0.0029176794557874467, "brl": 0.07179257713806732, "btc": 5.267652827933807e-06, "cad": 0.025137704721934207, "chf": 0.018764505758559036, "clp": 12.679149706932598, "cny": 0.12811131021217056, "czk": 0.4243962642784832, "dkk": 0.12365150108756962, "eos": 0.007752145211483737, "eth": 0.00015972031495935948, "eur": 0.016559459457244158, "gbp": 0.014522117033222232, "hkd": 0.14764841674384693, "huf": 5.2680319174349615, "idr": 267.49347243716727, "ils": 0.06924877352088313, "inr": 1.3405809873350558, "jpy": 2.0579698253592364, "krw": 21.28740284436192, "kwd": 0.005708367501889242, "lkr": 3.427843165136457, "ltc": 0.0005984866361172063, "mmk": 29.008520573596293, "mxn": 0.36066643868713427, "myr": 0.07781143768027712, "ngn": 6.819547913585703, "nok": 0.1619120530254424, "nzd": 0.027875350085078576, "php": 0.9935721589680915, "pkr": 2.6322669231947096, "pln": 0.07097588635322467, "rub": 1.2515993273072585, "sar": 0.07059670848883362, "sek": 0.16979851979629848, "sgd": 0.02559023421488107, "thb": 0.5982153678627696, "try": 0.1005136726294585, "twd": 0.5813168876410182, "uah": 0.5249449191238176, "usd": 0.018817760019413994, "vef": 4675.980819481142, "vnd": 435.73192949298067, "xag": 0.0012271919398516783, "xau": 1.4649814352713987e-05, "xdr": 0.013490000531677409, "xlm": 0.18405083703167976, "xrp": 0.05922653678288413, "zar": 0.26282193359210976, "bits": 5.267652827933807, "link": 0.03538422098386918, "sats": 526.7652827933807}, "market_cap": {"aed": 52004350.04833897, "ars": 530947735.9032419, "aud": 19878061.985706497, "bch": 111383.91986382875, "bdt": 1188260056.059724, "bhd": 5338217.796979271, "bmd": 14157851.205355482, "bnb": 2195164.1192864794, "brl": 54014326.026112, "btc": 3963.205230719025, "cad": 18912765.532674145, "chf": 14117784.48644432, "clp": 9539366788.394642, "cny": 96386651.00606024, "czk": 319301508.5517389, "dkk": 93031240.27039108, "eos": 5832453.932522498, "eth": 120168.20553212396, "eur": 12458781.640051994, "gbp": 10925953.563601745, "hkd": 111085714.38944298, "huf": 3963490444.939278, "idr": 201253112871.14655, "ils": 52100453.542321, "inr": 1008608151.4397652, "jpy": 1548347441.060353, "krw": 16015927597.546366, "kwd": 4294784.163144592, "lkr": 2578994175.5675583, "ltc": 450281.26269010664, "mmk": 21825037493.55707, "mxn": 271353326.2423297, "myr": 58542714.73414513, "ngn": 5130799019.050594, "nok": 121817195.70888792, "nzd": 20972478.04173166, "php": 747530352.9188117, "pkr": 1980429306.8315017, "pln": 53399875.28379951, "rub": 941661336.2301244, "sar": 53114594.5820117, "sek": 127750708.6754986, "sgd": 19253233.538460527, "thb": 450077169.55792254, "try": 75623114.5324172, "twd": 437363320.07055676, "uah": 394950942.5295467, "usd": 14157851.205355482, "vef": 3518051065217.688, "vnd": 327830082688.88403, "xag": 923298.0369027299, "xau": 11022.0287418813, "xdr": 10149423.740690406, "xlm": 138473673.92438456, "xrp": 44560058.91856939, "zar": 197738403.798434, "bits": 3963205230.719025, "link": 26621900.54449625, "sats": 396320523071.9025}, "total_volume": {"aed": 1285019.6228434069, "ars": 13119638.236142838, "aud": 491183.90465388185, "bch": 2752.2798104619146, "bdt": 29361726.233640764, "bhd": 131906.55423544452, "bmd": 349838.3615845243, "bnb": 54242.17331863354, "brl": 1334685.825199198, "btc": 97.93020172535054, "cad": 467331.5753226871, "chf": 348848.31902123976, "clp": 235716310.2931489, "cny": 2381699.5656674425, "czk": 7889891.97463476, "dkk": 2298787.873971914, "eos": 144119.05438016317, "eth": 2969.33818050075, "eur": 307854.60964912735, "gbp": 269978.6597554551, "hkd": 2744911.198300263, "huf": 97937249.32558782, "idr": 4972933974.89548, "ils": 1287394.3256418444, "inr": 24922554.846953806, "jpy": 38259431.04552808, "krw": 395751148.15887785, "kwd": 106123.46698666556, "lkr": 63726555.946237005, "ltc": 11126.381885701023, "mmk": 539293374.9281558, "mxn": 6705099.643031878, "myr": 1446581.6251520126, "ngn": 126781267.60967578, "nok": 3010084.4783209916, "nzd": 518226.7598427266, "php": 18471361.93950782, "pkr": 48936108.58643795, "pln": 1319502.8403064283, "rub": 23268309.170365293, "sar": 1312453.5973205026, "sek": 3156700.6861459757, "sgd": 475744.4882420717, "thb": 11121338.775278522, "try": 1868635.7203649806, "twd": 10807181.477707135, "uah": 9759178.044513924, "usd": 349838.3615845243, "vef": 86930509635.59294, "vnd": 8100631751.421114, "xag": 22814.554821855712, "xau": 272.3526628771679, "xdr": 250790.72529926707, "xlm": 3421663.535351443, "xrp": 1101072.3151466239, "zar": 4886086.045389136, "bits": 97930201.72535054, "link": 657823.1352812748, "sats": 9793020172.535055}}, "community_data": {"facebook_likes": null, "twitter_followers": 5477, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 796, "reddit_accounts_active_48h": "2009.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 744296, "bing_matches": null}}, "TNT_20190206": {"id": "tierion", "symbol": "tnt", "name": "Tierion", "localization": {"en": "Tierion", "de": "Tierion", "es": "Tierion", "fr": "Tierion", "it": "Tierion", "pl": "Tierion", "ro": "Tierion", "hu": "Tierion", "nl": "Tierion", "pt": "Tierion", "sv": "Tierion", "vi": "Tierion", "tr": "Tierion", "ru": "Tierion", "ja": "Tierion", "zh": "Tierion", "zh-tw": "Tierion", "ko": "\ud2f0\uc5d0\ub9ac\uc628", "ar": "Tierion", "th": "Tierion", "id": "Tierion"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/923/thumb/tierion.png?1547034767", "small": "https://assets.coingecko.com/coins/images/923/small/tierion.png?1547034767"}, "market_data": {"current_price": {"aed": 0.05312443412156528, "ars": 0.5373531216329306, "aud": 0.019941329464240275, "bch": 0.00012102283200930441, "bdt": 1.2107060118605575, "bhd": 0.005452299135053852, "bmd": 0.014463444495873258, "bnb": 0.002113277705406061, "brl": 0.05294271540491907, "btc": 4.1689500089050294e-06, "cad": 0.018946461434591628, "chf": 0.014396768016747264, "clp": 9.457646355851516, "cny": 0.09755448678021546, "czk": 0.3246833569378354, "dkk": 0.09425217866947312, "eos": 0.006179118759473234, "eth": 0.00013422003438988785, "eur": 0.012623564184997715, "gbp": 0.011053687455971118, "hkd": 0.11349103309799341, "huf": 4.0079651042514355, "idr": 201.61914716307226, "ils": 0.05261135789151865, "inr": 1.0336351231031553, "jpy": 1.5836726505574308, "krw": 16.18588525330342, "kwd": 0.00438282865869549, "lkr": 2.5551121046409664, "ltc": 0.0004314227320852745, "mmk": 21.881638755782046, "mxn": 0.2762626229911064, "myr": 0.059249717329012117, "ngn": 5.221303463010246, "nok": 0.12205955366690573, "nzd": 0.020970634955233595, "php": 0.7565827815791298, "pkr": 2.00246389045365, "pln": 0.0541279946813559, "rub": 0.9467047594773833, "sar": 0.05424442540954764, "sek": 0.13093180657023115, "sgd": 0.019531435447227238, "thb": 0.45270581272083066, "try": 0.07533020384641295, "twd": 0.4451486629717381, "uah": 0.39828839005167, "usd": 0.014463444495873258, "vef": 3593.9872214631123, "vnd": 336.0912794171482, "xag": 0.0009094503976826931, "xau": 1.0975584855693397e-05, "xdr": 0.01033103591517933, "xlm": 0.17577811773038943, "xrp": 0.047091695948518426, "zar": 0.19270399200965718, "bits": 4.168950008905029, "link": 0.035367185546448285, "sats": 416.89500089050296}, "market_cap": {"aed": 22888511.369927663, "ars": 231517064.3703602, "aud": 8591665.091985494, "bch": 51886.2957288589, "bdt": 521629242.2936304, "bhd": 2349107.57749167, "bmd": 6231533.930969931, "bnb": 906314.7087564238, "brl": 22810218.3776188, "btc": 1786.3169922952447, "cad": 8163029.030543718, "chf": 6202806.559548153, "clp": 4074800037.461235, "cny": 42031073.21099917, "czk": 139888901.02607512, "dkk": 40608283.15234606, "eos": 2651392.38730646, "eth": 57513.87252680956, "eur": 5438826.731145178, "gbp": 4762449.806743769, "hkd": 48897288.872838326, "huf": 1726820367.6110768, "idr": 86934257587.89738, "ils": 22667453.935260303, "inr": 445338753.4136427, "jpy": 682320857.9611515, "krw": 6973642633.158687, "kwd": 1888329.2640339518, "lkr": 1100862784.2451472, "ltc": 184486.58841287508, "mmk": 9427641832.537739, "mxn": 119026965.50043991, "myr": 25527572.22122732, "ngn": 2249583749.0801454, "nok": 52589011.593427084, "nzd": 9035138.435716886, "php": 325971539.9290368, "pkr": 862755872.7427876, "pln": 23320892.583261933, "rub": 407885053.4516368, "sar": 23371056.43140619, "sek": 56411596.52656623, "sgd": 8415063.420381796, "thb": 195047012.0393583, "try": 32455804.108747534, "twd": 191791035.56042704, "uah": 171601420.23060435, "usd": 6231533.930969931, "vef": 1548459174051.5083, "vnd": 144803971985.27805, "xag": 391834.1176136016, "xau": 4728.799523516527, "xdr": 4451097.445416785, "xlm": 75144712.5116609, "xrp": 20178635.315120913, "zar": 83025966.95995641, "bits": 1786316992.2952447, "link": 15154176.561563693, "sats": 178631699229.52448}, "total_volume": {"aed": 963810.6338483508, "ars": 9748934.954794867, "aud": 361785.79044677684, "bch": 2195.6580687917426, "bdt": 21965247.216094982, "bhd": 98918.39738494017, "bmd": 262403.2017978569, "bnb": 38340.16415279213, "brl": 960513.8000209618, "btc": 75.6352216641071, "cad": 343736.3862111111, "chf": 261193.52303756846, "clp": 171585453.6556185, "cny": 1769883.3558063633, "czk": 5890571.395719276, "dkk": 1709971.194368674, "eos": 112104.73046289945, "eth": 2435.0884590025576, "eur": 229023.15290035328, "gbp": 200541.6469740118, "hkd": 2059012.3237073321, "huf": 72714551.25020406, "idr": 3657877608.2307763, "ils": 954502.1426677734, "inr": 18752736.65760446, "jpy": 28731798.585360292, "krw": 293652602.2975621, "kwd": 79515.51743440112, "lkr": 46356149.62960934, "ltc": 7827.091690354633, "mmk": 396987873.23721874, "mxn": 5012097.694337209, "myr": 1074938.6522129455, "ngn": 94727555.84902634, "nok": 2214466.802935631, "nzd": 380459.97670592315, "php": 13726311.486045888, "pkr": 36329723.288913235, "pln": 982017.7424082963, "rub": 17175601.57367871, "sar": 984130.0881827683, "sek": 2375431.749401681, "sgd": 354349.28370782576, "thb": 8213220.216272878, "try": 1366679.0567782056, "twd": 8076114.543333521, "uah": 7225951.523393445, "usd": 262403.2017978569, "vef": 65203952931.23875, "vnd": 6097539755.523715, "xag": 16499.713902615866, "xau": 199.12466968430323, "xdr": 187430.93339938408, "xlm": 3189056.4458290166, "xrp": 854361.6147943273, "zar": 3496134.307217781, "bits": 75635221.66410711, "link": 641649.5550983611, "sats": 7563522166.41071}}, "community_data": {"facebook_likes": null, "twitter_followers": 17017, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 2513, "reddit_accounts_active_48h": "821.48"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1261592, "bing_matches": null}}, "THETA_20190207": {"id": "theta-token", "symbol": "theta", "name": "Theta Network", "localization": {"en": "Theta Network", "de": "Theta Network", "es": "Theta Network", "fr": "Theta Network", "it": "Theta Network", "pl": "Theta Network", "ro": "Theta Network", "hu": "Theta Network", "nl": "Theta Network", "pt": "Theta Network", "sv": "Theta Network", "vi": "Theta Network", "tr": "Theta Network", "ru": "Theta Network", "ja": "\u30b7\u30fc\u30bf", "zh": "Theta Network", "zh-tw": "Theta Network", "ko": "\uc384\ud0c0", "ar": "Theta Network", "th": "Theta Network", "id": "Theta Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2538/thumb/theta-token-logo.png?1548387191", "small": "https://assets.coingecko.com/coins/images/2538/small/theta-token-logo.png?1548387191"}, "market_data": {"current_price": {"aed": 0.203592962609445, "ars": 2.0595589660277547, "aud": 0.07646596082009299, "bch": 0.0004690054106530058, "bdt": 4.639952507076051, "bhd": 0.02089602134396361, "bmd": 0.055430199942075355, "bnb": 0.008240935982587759, "brl": 0.20280751667626631, "btc": 1.6049536292074166e-05, "cad": 0.07260303018612971, "chf": 0.05517915656653772, "clp": 36.24547189054162, "cny": 0.37386561256930995, "czk": 1.2434190030722259, "dkk": 0.3612512511080926, "eos": 0.023380902785771963, "eth": 0.0005170412246889665, "eur": 0.048386462714636105, "gbp": 0.04238669787290593, "hkd": 0.43488594817554427, "huf": 15.356559580580981, "idr": 773.4125215643129, "ils": 0.20163400391329236, "inr": 3.9612289984949056, "jpy": 6.066475087360522, "krw": 62.04106100952861, "kwd": 0.016801946776241954, "lkr": 9.82579913912483, "ltc": 0.001653314924978342, "mmk": 83.85994163695473, "mxn": 1.0588276792935234, "myr": 0.22701460558356928, "ngn": 20.0103021790892, "nok": 0.4675687026653901, "nzd": 0.08036857947721476, "php": 2.9000549588378317, "pkr": 7.711147764793441, "pln": 0.2073374943363317, "rub": 3.6288877007478044, "sar": 0.2078909648827534, "sek": 0.5019570998376537, "sgd": 0.07486558008736537, "thb": 1.734992973286926, "try": 0.2891216502596682, "twd": 1.7060240976234073, "uah": 1.518683934799373, "usd": 0.055430199942075355, "vef": 13773.719692553528, "vnd": 1288.2582252185825, "xag": 0.003483552488009677, "xau": 4.2071521756035286e-05, "xdr": 0.03959301579582531, "xlm": 0.6882489773608828, "xrp": 0.18367800127300798, "zar": 0.738901970310647, "bits": 16.049536292074166, "link": 0.13978805773012118, "sats": 1604.9536292074167}, "market_cap": {"aed": 144732416.7630896, "ars": 1464244209.099865, "aud": 54363223.57511889, "bch": 333322.70883424825, "bdt": 3298500750.751963, "bhd": 14854794.73888575, "bmd": 39404833.52888567, "bnb": 5856564.006898561, "brl": 144174050.27198458, "btc": 11405.881420253427, "cad": 51615012.2703138, "chf": 39227511.778005704, "clp": 25766581890.65199, "cny": 265777721.18562847, "czk": 883955193.5052583, "dkk": 256811111.91129693, "eos": 16611967.511939023, "eth": 367408.20563430263, "eur": 34395178.82785785, "gbp": 30131733.459366485, "hkd": 309152591.6925491, "huf": 10916715080.84249, "idr": 549303605615.8152, "ils": 143339810.5413456, "inr": 2816002277.0728335, "jpy": 4312194727.290972, "krw": 44102189319.88296, "kwd": 11944353.73444233, "lkr": 6985072754.023801, "ltc": 1174878.8050289177, "mmk": 59615282705.08599, "mxn": 752715031.1472936, "myr": 161382653.33688578, "ngn": 14225144903.927727, "nok": 332390725.35987127, "nzd": 57116754.53245042, "php": 2061515289.3714092, "pkr": 5481785999.434506, "pln": 147379436.45539296, "rub": 2581056000.9755397, "sar": 147787828.15008527, "sek": 356932252.70582986, "sgd": 53208346.714054376, "thb": 1233430396.7044127, "try": 205526548.57495576, "twd": 1212797277.176851, "uah": 1079618830.4624355, "usd": 39404833.52888567, "vef": 9791614176491.9, "vnd": 915811253793.1307, "xag": 2476581.9658404007, "xau": 29907.4805517537, "xdr": 28146320.922013648, "xlm": 488913141.77895117, "xrp": 130545598.86603436, "zar": 525289995.0304958, "bits": 11405881420.253428, "link": 99342808.50373709, "sats": 1140588142025.3428}, "total_volume": {"aed": 7776358.162435247, "ars": 78666118.7656573, "aud": 2920664.3046521405, "bch": 17913.94951285315, "bdt": 177225833.78743383, "bhd": 798136.3602054786, "bmd": 2117190.5071780635, "bnb": 314767.60774505115, "brl": 7746357.572948554, "btc": 613.0218891091556, "cad": 2773117.298206899, "chf": 2107601.7513710554, "clp": 1384418044.5864527, "cny": 14280026.532814607, "czk": 47493151.973118484, "dkk": 13798213.254715104, "eos": 893047.9319760533, "eth": 19748.706912028767, "eur": 1848150.6406689198, "gbp": 1618985.9401719682, "hkd": 16610735.702641604, "huf": 586553218.2979006, "idr": 29540965944.553017, "ils": 7701534.532721076, "inr": 151301572.8093345, "jpy": 231712739.27234232, "krw": 2369696403.077977, "kwd": 641760.669345308, "lkr": 375302428.7217571, "ltc": 63149.3782847232, "mmk": 3203081940.0219445, "mxn": 40442573.06811537, "myr": 8670962.190909784, "ngn": 764305773.0912809, "nok": 17859073.56948391, "nzd": 3069727.2195005193, "php": 110769379.06705017, "pkr": 294532021.60787225, "pln": 7919382.849957143, "rub": 138607592.96678123, "sar": 7940522.99717132, "sek": 19172559.505422596, "sgd": 2859536.7803288945, "thb": 66269121.46992684, "try": 11043178.880630014, "twd": 65162637.48425628, "uah": 58007064.98481153, "usd": 2117190.5071780635, "vef": 526095677303.70435, "vnd": 49205813583.156334, "xag": 133056.4253164856, "xau": 1606.9475949481537, "xdr": 1512279.5386101932, "xlm": 26288092.104415994, "xrp": 7015693.991344689, "zar": 28222814.258502867, "bits": 613021889.1091557, "link": 5339290.660187916, "sats": 61302188910.91556}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.043, "reddit_subscribers": 3812, "reddit_accounts_active_48h": "773.833333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 561867, "bing_matches": null}}, "AOA_20190216": {"id": "aurora", "symbol": "aoa", "name": "Aurora Chain", "localization": {"en": "Aurora Chain", "de": "Aurora Chain", "es": "Aurora Chain", "fr": "Aurora Chain", "it": "Aurora Chain", "pl": "Aurora Chain", "ro": "Aurora Chain", "hu": "Aurora Chain", "nl": "Aurora Chain", "pt": "Aurora Chain", "sv": "Aurora Chain", "vi": "Aurora Chain", "tr": "Aurora Chain", "ru": "Aurora Chain", "ja": " \u30aa\u30fc\u30ed\u30e9\u30b3\u30a4\u30f3", "zh": "\u6781\u5149\u94fe", "zh-tw": "\u6975\u5149\u93c8", "ko": "Aurora Chain", "ar": "Aurora Chain", "th": "Aurora Chain", "id": "Aurora Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4755/thumb/aurora-logo.png?1547040076", "small": "https://assets.coingecko.com/coins/images/4755/small/aurora-logo.png?1547040076"}, "market_data": {"current_price": {"aed": 0.026034021326954402, "ars": 0.26904419228510895, "aud": 0.009975827509894886, "bch": 5.7855266615897505e-05, "bdt": 0.5954242117211577, "bhd": 0.0026717302426795203, "bmd": 0.007087757640746843, "bnb": 0.0007598579369425697, "brl": 0.026291944827501017, "btc": 1.9505611698568285e-06, "cad": 0.009376890725978864, "chf": 0.007132084477032089, "clp": 4.680086926334374, "cny": 0.048012186748113514, "czk": 0.1616928307766591, "dkk": 0.0466733872951105, "eos": 0.00240554746678852, "eth": 5.78743324172253e-05, "eur": 0.006255194189476512, "gbp": 0.005498157883625996, "hkd": 0.055632872885868066, "huf": 1.990029712792489, "idr": 99.7244810957832, "ils": 0.025780017356382856, "inr": 0.5000618560518483, "jpy": 0.7834511972610272, "krw": 7.947877606211915, "kwd": 0.0021545153043613075, "lkr": 1.2637471873451627, "ltc": 0.00016077292347258293, "mmk": 10.90947656063756, "mxn": 0.13641878008721864, "myr": 0.028864836289880506, "ngn": 2.5622243871299837, "nok": 0.06125927665624576, "nzd": 0.01051908286978522, "php": 0.36933679216932197, "pkr": 0.988631210775047, "pln": 0.027069563981540368, "rub": 0.46688193620822, "sar": 0.026584406971031267, "sek": 0.06559914609846328, "sgd": 0.009612076700014117, "thb": 0.2216058303955903, "try": 0.037233422613886714, "twd": 0.21833928135618377, "uah": 0.19228201927192617, "usd": 0.007087757640746843, "vef": 1761.220184924818, "vnd": 165.36779240130642, "xag": 0.0004509612732404215, "xau": 5.4072503041257726e-06, "xdr": 0.005088442965444986, "xlm": 0.09177009154736848, "xrp": 0.023338882687276158, "zar": 0.09755531497111306, "bits": 1.9505611698568286, "link": 0.01654066359186077, "sats": 195.05611698568285}, "market_cap": {"aed": 87395175.94883966, "ars": 903194464.78488, "aud": 33488789.980418257, "bch": 194277.09291921844, "bdt": 1998815438.2317023, "bhd": 8968892.347225027, "bmd": 23793320.99011803, "bnb": 2562624.4882706967, "brl": 88259016.26070665, "btc": 6548.064761502126, "cad": 31479753.33597571, "chf": 23938079.55502196, "clp": 15710865995.157646, "cny": 161175004.65421987, "czk": 542831651.0296042, "dkk": 156656962.31136975, "eos": 8052146.0171689745, "eth": 194343.92698455535, "eur": 20992490.209766313, "gbp": 18451577.667910583, "hkd": 186745448.78909022, "huf": 6679261068.345964, "idr": 333449952615.3374, "ils": 86542494.70451713, "inr": 1678687796.4836996, "jpy": 2629376109.2969575, "krw": 26673978362.391678, "kwd": 7232622.334613091, "lkr": 4242349132.5380516, "ltc": 539170.0830423449, "mmk": 36622679667.98973, "mxn": 457926255.7758124, "myr": 96898109.38568754, "ngn": 8601285537.927668, "nok": 205627495.220354, "nzd": 35307170.743767075, "php": 1239784348.4261262, "pkr": 3318795722.301403, "pln": 90851227.20261754, "rub": 1567294605.604266, "sar": 89242798.70368534, "sek": 220155459.0837098, "sgd": 32262553.5965506, "thb": 744018003.9205481, "try": 124993952.81712815, "twd": 733002671.828281, "uah": 645483104.3973064, "usd": 23793320.99011803, "vef": 5912346233917.729, "vnd": 555133113385.7573, "xag": 1513765.1058403235, "xau": 18147.165919163046, "xdr": 17081701.00522555, "xlm": 308472639.21727407, "xrp": 78348848.62018321, "zar": 327513088.58333296, "bits": 6548064761.502126, "link": 55527269.82957147, "sats": 654806476150.2126}, "total_volume": {"aed": 603443.3594059283, "ars": 6236183.384127756, "aud": 231230.00437863127, "bch": 1341.0289562095506, "bdt": 13801355.621562574, "bhd": 61928.11524663347, "bmd": 164287.34645611755, "bnb": 17612.76985915121, "brl": 609421.7759434626, "btc": 45.21211572668171, "cad": 217347.23074105015, "chf": 165314.79952085446, "clp": 108479874.91717117, "cny": 1112875.9133998828, "czk": 3747882.963232403, "dkk": 1081843.8408151336, "eos": 55758.25671873268, "eth": 1341.470882989072, "eur": 144989.33330464966, "gbp": 127441.9661170185, "hkd": 1289516.025436035, "huf": 46126958.26448408, "idr": 2311516731.5756497, "ils": 597555.7937709781, "inr": 11590948.725783823, "jpy": 18159638.74610138, "krw": 184224092.87473446, "kwd": 49939.574713691356, "lkr": 29292433.873125773, "ltc": 3726.560404302983, "mmk": 252871083.66525656, "mxn": 3162054.985975542, "myr": 669058.9041437698, "ngn": 59389875.74388649, "nok": 1419930.606799831, "nzd": 243822.13662245354, "php": 8560868.558101382, "pkr": 22915512.41935762, "pln": 627446.2335852048, "rub": 10821870.3708188, "sar": 616200.764720284, "sek": 1520524.5704716444, "sgd": 222798.61347115686, "thb": 5136608.17429696, "try": 863034.6169779724, "twd": 5060892.736361031, "uah": 4456910.678746091, "usd": 164287.34645611755, "vef": 40823375370.91102, "vnd": 3833065008.7033806, "xag": 10452.844847462136, "xau": 125.33481661137223, "xdr": 117945.17176777622, "xlm": 2127141.6981977266, "xrp": 540972.6602247647, "zar": 2261237.565059594, "bits": 45212115.72668171, "link": 383396.53637533006, "sats": 4521211572.668171}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1115296, "bing_matches": null}}, "UKG_20190217": {"id": "unikoin-gold", "symbol": "ukg", "name": "Unikoin Gold", "localization": {"en": "Unikoin Gold", "de": "Unikoin Gold", "es": "Unikoin Gold", "fr": "Unikoin Gold", "it": "Unikoin Gold", "pl": "Unikoin Gold", "ro": "Unikoin Gold", "hu": "Unikoin Gold", "nl": "Unikoin Gold", "pt": "Unikoin Gold", "sv": "Unikoin Gold", "vi": "Unikoin Gold", "tr": "Unikoin Gold", "ru": "Unikoin Gold", "ja": "Unikoin Gold", "zh": "Unikoin Gold", "zh-tw": "Unikoin Gold", "ko": "\uc720\ub2c8\ucf54\uc778\uace8\ub4dc", "ar": "Unikoin Gold", "th": "Unikoin Gold", "id": "Unikoin Gold"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1120/thumb/unikoin-gold.png?1548759441", "small": "https://assets.coingecko.com/coins/images/1120/small/unikoin-gold.png?1548759441"}, "market_data": {"current_price": {"aed": 0.10334686494557889, "ars": 1.0742140055085292, "aud": 0.039680528070078755, "bch": 0.0002306649604448167, "bdt": 2.3643918723374977, "bhd": 0.010608101885540948, "bmd": 0.028135813102179406, "bnb": 0.003184845283496926, "brl": 0.10562474037433091, "btc": 7.790957925017181e-06, "cad": 0.03731298380496969, "chf": 0.028391061198642435, "clp": 18.671320742101283, "cny": 0.19020935089597357, "czk": 0.6445109253380193, "dkk": 0.1863876352664914, "eos": 0.00983110653857269, "eth": 0.00023058216552434538, "eur": 0.024980297255330706, "gbp": 0.021890450396262418, "hkd": 0.22080564085393917, "huf": 7.967005827026842, "idr": 396.0202939630532, "ils": 0.10262959866216481, "inr": 1.99412856719828, "jpy": 3.1216572093615644, "krw": 31.650657917528893, "kwd": 0.00854754747718974, "lkr": 5.022242638739025, "ltc": 0.0006757731912734661, "mmk": 43.631290519589385, "mxn": 0.5466221549119453, "myr": 0.1144283518865634, "ngn": 10.169335387759977, "nok": 0.24369426549162734, "nzd": 0.041348390934962884, "php": 1.480637457646672, "pkr": 3.933352092770381, "pln": 0.10839096911109845, "rub": 1.8705335674030197, "sar": 0.10553040099299914, "sek": 0.2608373882789724, "sgd": 0.0382576437298754, "thb": 0.8830706300250001, "try": 0.14873702170429562, "twd": 0.8679054267629295, "uah": 0.7674599268644463, "usd": 0.028135813102179406, "vef": 6991.401860293998, "vnd": 651.2936520251388, "xag": 0.0018040432952380813, "xau": 2.1518832576808884e-05, "xdr": 0.020201063634355185, "xlm": 0.36901187449100353, "xrp": 0.09292624307508268, "zar": 0.39536014093242083, "bits": 7.790957925017182, "link": 0.06294160980190808, "sats": 779.0957925017182}, "market_cap": {"aed": 14800941.530380387, "ars": 153838373.7706002, "aud": 5685697.538966706, "bch": 33057.279984407796, "bdt": 338619133.49574864, "bhd": 1519251.656437656, "bmd": 4029503.2157420493, "bnb": 458114.5604078317, "brl": 15128342.69616266, "btc": 1116.6185649015379, "cad": 5344934.540521046, "chf": 4066574.645326878, "clp": 2674034928.3390894, "cny": 27241053.539702617, "czk": 92313098.02039933, "dkk": 26697546.08695681, "eos": 1411349.6679955188, "eth": 33040.11435948451, "eur": 3577803.964263794, "gbp": 3135557.9273296753, "hkd": 31622936.811661206, "huf": 1141119157.9952989, "idr": 56723612456.976265, "ils": 14698217.404901505, "inr": 285591443.3660392, "jpy": 447041145.7608543, "krw": 4533594068.031383, "kwd": 1224146.958929576, "lkr": 719266324.0099554, "ltc": 96901.97452784052, "mmk": 6248706046.531223, "mxn": 78285345.62606198, "myr": 16387989.578422954, "ngn": 1456413201.8549743, "nok": 34905168.65604399, "nzd": 5923127.956947871, "php": 212028901.1610071, "pkr": 563319597.301286, "pln": 15523862.613807058, "rub": 268155380.00120178, "sar": 15113659.186444493, "sek": 37358289.91875554, "sgd": 5479112.96810204, "thb": 126566696.00645816, "try": 21319005.489616465, "twd": 124298085.69599532, "uah": 109912666.53722191, "usd": 4029503.2157420493, "vef": 1001281753482.2693, "vnd": 93275778300.65962, "xag": 258326.73664246054, "xau": 3081.562584238737, "xdr": 2893118.836851336, "xlm": 52881359.46973257, "xrp": 13316578.770110575, "zar": 56639930.22845424, "bits": 1116618564.901538, "link": 9020940.773395868, "sats": 111661856490.1538}, "total_volume": {"aed": 21575.144655766297, "ars": 224257.62573737482, "aud": 8283.881021257512, "bch": 48.154628505026835, "bdt": 493600.81406883453, "bhd": 2214.5938614023153, "bmd": 5873.755706153077, "bnb": 664.8822655033109, "brl": 22050.68391773636, "btc": 1.6264745362885373, "cad": 7789.622099851854, "chf": 5927.04241791931, "clp": 3897906.7835020768, "cny": 39708.93807587724, "czk": 134550.92666538042, "dkk": 38911.099964554756, "eos": 2052.38490599254, "eth": 48.13734387441058, "eur": 5214.996382440896, "gbp": 4569.946404546862, "hkd": 46096.35371853353, "huf": 1663227.0682032956, "idr": 82674932.93939033, "ils": 21425.40500154929, "inr": 416303.02304917085, "jpy": 651690.8460954013, "krw": 6607530.120826112, "kwd": 1784.4234885064895, "lkr": 1048465.3935483242, "ltc": 141.07737437310212, "mmk": 9108659.512541661, "mxn": 114115.23775280645, "myr": 23888.564456924512, "ngn": 2122995.0435309336, "nok": 50874.68335426753, "nzd": 8632.071385762569, "php": 309104.3675905873, "pkr": 821143.8288744377, "pln": 22628.173957498333, "rub": 390500.7889831802, "sar": 22030.989214853595, "sek": 54453.556832270944, "sgd": 7986.833447685951, "thb": 184353.69659331988, "try": 31050.992796229075, "twd": 181187.74226770422, "uah": 160218.29930035624, "usd": 5873.755706153077, "vef": 1459555706.5215983, "vnd": 135966918.42780292, "xag": 376.6199882359565, "xau": 4.492365839180002, "xdr": 4217.262616926611, "xlm": 77036.53687057941, "xrp": 19399.689944320642, "zar": 82537.11649824008, "bits": 1626474.5362885373, "link": 13139.966433022, "sats": 162647453.62885374}}, "community_data": {"facebook_likes": null, "twitter_followers": 6010, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.13, "reddit_subscribers": 1158, "reddit_accounts_active_48h": "2593.66666666667"}, "developer_data": {"forks": 7, "stars": 16, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1463356, "bing_matches": null}}, "BLZ_20190219": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.14473715492502617, "ars": 1.5211332312961192, "aud": 0.05514354248166713, "bch": 0.00032533241954064133, "bdt": 3.3113275916344986, "bhd": 0.014853569279777958, "bmd": 0.03940555492710523, "bnb": 0.004254511949128486, "brl": 0.14589512656211406, "btc": 1.0940502296203575e-05, "cad": 0.05219462777869714, "chf": 0.03961834492371152, "clp": 26.079124876277575, "cny": 0.2668977640767761, "czk": 0.8955247304401538, "dkk": 0.2602382252940957, "eos": 0.014108193386803802, "eth": 0.0003241421749254445, "eur": 0.03488297938812128, "gbp": 0.03056334245701202, "hkd": 0.30924888423468255, "huf": 11.10566754510607, "idr": 555.8925679439702, "ils": 0.14265717211375392, "inr": 2.8109952607250537, "jpy": 4.354108749390784, "krw": 44.378185722333626, "kwd": 0.011979643347834315, "lkr": 7.037825174603316, "ltc": 0.0009277536813321432, "mmk": 60.330543239226735, "mxn": 0.7582735275957387, "myr": 0.16095198909976147, "ngn": 14.24510810614854, "nok": 0.34032607512794344, "nzd": 0.057392299284692194, "php": 2.063118100685733, "pkr": 5.483282968106684, "pln": 0.1512227575882593, "rub": 2.612087841119504, "sar": 0.14779250403185482, "sek": 0.3654264284776365, "sgd": 0.053465456925096355, "thb": 1.231975269241018, "try": 0.2077099112762754, "twd": 1.214852688702982, "uah": 1.073249693994638, "usd": 0.03940555492710523, "vef": 9791.793435034584, "vnd": 912.3683401401946, "xag": 0.002496471548907819, "xau": 2.9822123968833195e-05, "xdr": 0.028299611543114615, "xlm": 0.49846148390428124, "xrp": 0.1311861445786726, "zar": 0.5546743644039042, "bits": 10.940502296203574, "link": 0.09010494146167639, "sats": 1094.0502296203574}, "market_cap": {"aed": 29307434.46950273, "ars": 308010147.9035319, "aud": 11165866.556758339, "bch": 65915.4090821936, "bdt": 670501755.0549111, "bhd": 3007659.0114736515, "bmd": 7979124.084335863, "bnb": 861633.4335701901, "brl": 29541909.009845007, "btc": 2215.94720244253, "cad": 10568748.80590707, "chf": 8022211.354391284, "clp": 5280691358.963075, "cny": 54043405.33561528, "czk": 181332377.0720041, "dkk": 52694933.36536241, "eos": 2858917.034102597, "eth": 65669.46372868224, "eur": 7063360.01317663, "gbp": 6188688.431051738, "hkd": 62618968.94525514, "huf": 2248756540.688383, "idr": 112625533925.74266, "ils": 28886264.383835137, "inr": 569190816.5560997, "jpy": 881651687.239257, "krw": 8986018625.324179, "kwd": 2425725.53375485, "lkr": 1425070157.1365454, "ltc": 188000.51365615302, "mmk": 12216168290.78224, "mxn": 153540752.76305073, "myr": 32590732.322469886, "ngn": 2884453356.4874144, "nok": 68911705.15436676, "nzd": 11621211.230879126, "php": 417755196.1002188, "pkr": 1110295116.335336, "pln": 30620686.586047314, "rub": 528914591.9155953, "sar": 29926103.834505882, "sek": 73994207.71798645, "sgd": 10826075.557626888, "thb": 249459335.37267527, "try": 42058617.3367092, "twd": 245992230.41730255, "uah": 217319423.56097156, "usd": 7979124.084335863, "vef": 1982713730864.9963, "vnd": 184742993978.00537, "xag": 505503.7620609144, "xau": 6038.601107025373, "xdr": 5730311.68977889, "xlm": 100804932.49970198, "xrp": 26566278.049682736, "zar": 112314509.67169526, "bits": 2215947202.44253, "link": 18250331.433826007, "sats": 221594720244.253}, "total_volume": {"aed": 552796.0257967327, "ars": 5809678.968772122, "aud": 210610.26899422714, "bch": 1242.5452792550761, "bdt": 12646985.72881863, "bhd": 56730.38184985042, "bmd": 150502.01981172245, "bnb": 16249.298933651211, "brl": 557218.6781509198, "btc": 41.785166999407714, "cad": 199347.4503416166, "chf": 151314.73071870545, "clp": 99604255.69599365, "cny": 1019365.230386776, "czk": 3420286.3269382305, "dkk": 993930.3890385963, "eos": 53883.56044055685, "eth": 1237.9993664012025, "eur": 133228.90299793077, "gbp": 116730.87158616979, "hkd": 1181117.2761794252, "huf": 42415984.24353775, "idr": 2123125900.1086888, "ils": 544851.927182991, "inr": 10736061.58326923, "jpy": 16629689.963139039, "krw": 169494037.05000937, "kwd": 45753.96854094186, "lkr": 26879634.2500181, "ltc": 3543.378673046032, "mmk": 230421031.51798186, "mxn": 2896081.470849167, "myr": 614725.4999209809, "ngn": 54406480.16193767, "nok": 1299810.6941039376, "nzd": 219198.96775882252, "php": 7879687.060306989, "pkr": 20942356.056801144, "pln": 577566.551229467, "rub": 9976372.537865596, "sar": 564465.3504048567, "sek": 1395676.7181735104, "sgd": 204201.14048054494, "thb": 4705295.147393691, "try": 793308.4875932124, "twd": 4639898.70874106, "uah": 4099073.011592073, "usd": 150502.01981172245, "vef": 37397892055.523125, "vnd": 3484617289.5516453, "xag": 9534.79810671777, "xau": 113.89992859351139, "xdr": 108084.98205404582, "xlm": 1903778.8013572763, "xrp": 501040.5199704991, "zar": 2118473.203460694, "bits": 41785166.999407716, "link": 344138.68070339883, "sats": 4178516699.9407716}}, "community_data": {"facebook_likes": null, "twitter_followers": 34764, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 28, "stars": 196, "subscribers": 55, "total_issues": 8, "closed_issues": 8, "pull_requests_merged": 206, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 520, "deletions": -120}, "commit_count_4_weeks": 16}, "public_interest_stats": {"alexa_rank": 1029822, "bing_matches": null}}, "CRPT_20190220": {"id": "crypterium", "symbol": "crpt", "name": "Crypterium", "localization": {"en": "Crypterium", "de": "Crypterium", "es": "Crypterium", "fr": "Crypterium", "it": "Crypterium", "pl": "Crypterium", "ro": "Crypterium", "hu": "Crypterium", "nl": "Crypterium", "pt": "Crypterium", "sv": "Crypterium", "vi": "Crypterium", "tr": "Crypterium", "ru": "Crypterium", "ja": "\u30af\u30ea\u30d7\u30bf\u30ea\u30a6\u30e0", "zh": "Crypterium", "zh-tw": "Crypterium", "ko": "Crypterium", "ar": "Crypterium", "th": "Crypterium", "id": "Crypterium"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1901/thumb/crypt.png?1547036205", "small": "https://assets.coingecko.com/coins/images/1901/small/crypt.png?1547036205"}, "market_data": {"current_price": {"aed": 0.7289563296410079, "ars": 7.661057713584013, "aud": 0.277907339421059, "bch": 0.0016324442783615, "bdt": 16.67721884326959, "bhd": 0.07480873414890632, "bmd": 0.1984627147190309, "bnb": 0.02181270984412651, "brl": 0.7347883549757382, "btc": 5.4824425489912904e-05, "cad": 0.2628644610335006, "chf": 0.19950464397130577, "clp": 131.3626744952717, "cny": 1.3442276593349394, "czk": 4.510085038261453, "dkk": 1.3106676142759506, "eos": 0.07053226672738531, "eth": 0.0016140825024337135, "eur": 0.17568514895072762, "gbp": 0.15396737407902425, "hkd": 1.5575453082506912, "huf": 55.928281478183514, "idr": 2806.873014320751, "ils": 0.7184806737072752, "inr": 14.156579031523705, "jpy": 21.92909715862391, "krw": 223.5370192289766, "kwd": 0.060334451439018076, "lkr": 35.44540591938113, "ltc": 0.004555922865201386, "mmk": 303.8496327200538, "mxn": 3.8191569432386188, "myr": 0.8106209582698831, "ngn": 71.70531572004562, "nok": 1.7140232356709126, "nzd": 0.28905141777796245, "php": 10.405400132718821, "pkr": 27.61608675315318, "pln": 0.7615510520556045, "rub": 13.15555750939485, "sar": 0.7443443346894622, "sek": 1.8404390233790688, "sgd": 0.2692974314684032, "thb": 6.204738312975794, "try": 1.046113243226622, "twd": 6.118023205182729, "uah": 5.405302514844751, "usd": 0.1984627147190309, "vef": 49315.5320532802, "vnd": 4595.597428661561, "xag": 0.012573265919782044, "xau": 0.00015019658249936283, "xdr": 0.14257005729813976, "xlm": 2.539151407217674, "xrp": 0.6611973472807269, "zar": 2.7925410740314254, "bits": 54.824425489912905, "link": 0.45185419999089965, "sats": 5482.44254899129}, "market_cap": {"aed": 59637111.93934114, "ars": 626763686.4663291, "aud": 22736054.871737286, "bch": 133552.94165746006, "bdt": 1364390604.1432734, "bhd": 6120225.137047443, "bmd": 16236559.931255648, "bnb": 1784533.538950371, "brl": 60114239.48948076, "btc": 4485.276095431097, "cad": 21505372.3386279, "chf": 16321801.87089474, "clp": 10746995677.20859, "cny": 109973467.72638066, "czk": 368977448.093778, "dkk": 107227865.44200535, "eos": 5770360.329031038, "eth": 132050.73467758548, "eur": 14373089.947945427, "gbp": 12596323.194668135, "hkd": 127425334.16849093, "huf": 4575584362.827343, "idr": 229634881196.5178, "ils": 58780081.359929465, "inr": 1158172930.3275054, "jpy": 1794055375.8845794, "krw": 18287929874.90808, "kwd": 4936060.348141116, "lkr": 2899846746.087711, "ltc": 372727.515834625, "mmk": 24858436400.679207, "mxn": 312451488.34910464, "myr": 66318229.03921381, "ngn": 5866329389.50969, "nok": 140227049.8462896, "nzd": 23647770.184997182, "php": 851282837.195736, "pkr": 2259317314.434226, "pln": 62303739.596210994, "rub": 1076277719.1311252, "sar": 60896029.85017094, "sek": 150569332.6085013, "sgd": 22031664.192239616, "thb": 507619809.69077754, "try": 85584238.79556315, "twd": 500525504.61377263, "uah": 442216656.9327285, "usd": 16236559.931255648, "vef": 4034584495422.409, "vnd": 375973356889.85547, "xag": 1028639.4899272197, "xau": 12287.828555974293, "xdr": 11663890.030935993, "xlm": 207732137.7780617, "xrp": 54093638.54923287, "zar": 228462361.674308, "bits": 4485276095.431097, "link": 36966932.598540656, "sats": 448527609543.1097}, "total_volume": {"aed": 1564534.2777975106, "ars": 16442668.661632996, "aud": 596463.1088255723, "bch": 3503.6598575785383, "bdt": 35793749.88276115, "bhd": 160559.45204871835, "bmd": 425953.8019178549, "bnb": 46815.880259375284, "brl": 1577051.3562206624, "btc": 117.66780731812308, "cad": 564177.0885016045, "chf": 428190.05937792355, "clp": 281939258.5180286, "cny": 2885070.291150013, "czk": 9679842.743963452, "dkk": 2813041.503245703, "eos": 151381.01488205168, "eth": 3464.250599887606, "eur": 377067.0840717425, "gbp": 330454.959527872, "hkd": 3342906.735141423, "huf": 120036976.03396635, "idr": 6024296471.219768, "ils": 1542050.7323170714, "inr": 30383786.038425464, "jpy": 47065678.41000203, "krw": 479769932.32591695, "kwd": 129493.78936724561, "lkr": 76075274.05465975, "ltc": 9778.222919223874, "mmk": 652142174.1695037, "mxn": 8196927.177966633, "myr": 1739808.3039334812, "ngn": 153898690.1993875, "nok": 3678750.010263559, "nzd": 620381.2667108646, "php": 22332757.8345532, "pkr": 59271471.53686958, "pln": 1634491.2264092956, "rub": 28235327.453869496, "sar": 1597561.0317830124, "sek": 3950071.9332401874, "sgd": 577983.9550369699, "thb": 13317019.663159842, "try": 2245237.4181207772, "twd": 13130905.964672621, "uah": 11601217.689548625, "usd": 425953.8019178549, "vef": 105844255942.15771, "vnd": 9863375090.85076, "xag": 26985.574739504442, "xau": 322.3618372914331, "xdr": 305993.2845913335, "xlm": 5449694.654638961, "xrp": 1419105.469210933, "zar": 5993536.313253872, "bits": 117667807.31812309, "link": 969799.3634278264, "sats": 11766780731.812307}}, "community_data": {"facebook_likes": null, "twitter_followers": 17133, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 828400, "bing_matches": null}}, "STORJ_20190221": {"id": "storj", "symbol": "storj", "name": "Storj", "localization": {"en": "Storj", "de": "Storj", "es": "Storj", "fr": "Storj", "it": "Storj", "pl": "Storj", "ro": "Storj", "hu": "Storj", "nl": "Storj", "pt": "Storj", "sv": "Storj", "vi": "Storj", "tr": "Storj", "ru": "Storj", "ja": "\u30b9\u30c8\u30ec\u30fc\u30b8", "zh": "Storj", "zh-tw": "Storj", "ko": "\uc2a4\ud1a0\ub9ac\uc9c0", "ar": "Storj", "th": "Storj", "id": "Storj"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/949/thumb/storj.png?1547034811", "small": "https://assets.coingecko.com/coins/images/949/small/storj.png?1547034811"}, "market_data": {"current_price": {"aed": 0.9070366914245885, "ars": 9.534367532636608, "aud": 0.3456242185760535, "bch": 0.0019889138248260136, "bdt": 20.727312492729936, "bhd": 0.09309250864430958, "bmd": 0.24694676196318482, "bnb": 0.02684214687474423, "brl": 0.9137956242995194, "btc": 6.732255769926835e-05, "cad": 0.3269698601773543, "chf": 0.24808765600345442, "clp": 163.45430449209877, "cny": 1.6725951134528485, "czk": 5.613334251900292, "dkk": 1.631519964641987, "eos": 0.08591311469747338, "eth": 0.0018441135848884143, "eur": 0.2186432057875362, "gbp": 0.19137238097041756, "hkd": 1.9380505352251733, "huf": 69.53512970867311, "idr": 3492.586519889448, "ils": 0.8934368393497472, "inr": 17.61493058482477, "jpy": 27.30095232207793, "krw": 278.16076525886496, "kwd": 0.07505304768289862, "lkr": 44.08306211363791, "ltc": 0.005634862307509216, "mmk": 378.079494831807, "mxn": 4.757330590515965, "myr": 1.0087283802139813, "ngn": 89.34263638681087, "nok": 2.1330767404855995, "nzd": 0.3598730467413294, "php": 12.930165547258472, "pkr": 34.43152476306563, "pln": 0.9468000590358981, "rub": 16.34881403965826, "sar": 0.92613678872863, "sek": 2.2906793987043113, "sgd": 0.33497044137143805, "thb": 7.719499475107416, "try": 1.3058660837591325, "twd": 7.612639931430434, "uah": 6.710260408989711, "usd": 0.24694676196318482, "vef": 61363.218639281185, "vnd": 5738.539600911425, "xag": 0.015645882551197716, "xau": 0.00018695598507946815, "xdr": 0.17738210606491742, "xlm": 3.1023613040873803, "xrp": 0.8157538656793467, "zar": 3.4794766657533667, "bits": 67.32255769926834, "link": 0.5344225935597158, "sats": 6732.255769926835}, "market_cap": {"aed": 121834857.26935527, "ars": 1280640829.3632233, "aud": 46418586.21557426, "bch": 266737.73023570405, "bdt": 2784131207.7054234, "bhd": 12504359.096777136, "bmd": 33170348.874927975, "bnb": 3605651.348777967, "brl": 122742729.7180619, "btc": 9040.573097844093, "cad": 43919200.42784843, "chf": 33322932.47975269, "clp": 21955486526.767773, "cny": 224666089.96477455, "czk": 753966043.5393269, "dkk": 219129859.22650242, "eos": 11516670.748673707, "eth": 246678.12227534747, "eur": 29365643.518276013, "gbp": 25704167.72806594, "hkd": 260322954.53206518, "huf": 9339604139.565044, "idr": 468256270365.81067, "ils": 120008099.81611472, "inr": 2366070274.666667, "jpy": 3666376709.256326, "krw": 37359763937.83138, "kwd": 10081265.111463575, "lkr": 5921318984.544885, "ltc": 756204.8259068045, "mmk": 50784341719.35901, "mxn": 639095433.6976588, "myr": 135494274.2546547, "ngn": 12000669272.991552, "nok": 286492303.2327526, "nzd": 48339182.58578144, "php": 1736803878.7476287, "pkr": 4624906516.720701, "pln": 127167189.87309298, "rub": 2195678073.4269876, "sar": 124400417.90308641, "sek": 307659828.6858924, "sgd": 44993189.98372085, "thb": 1036905105.8302472, "try": 175361185.84184897, "twd": 1022543970.1145012, "uah": 901334672.4545771, "usd": 33170348.874927975, "vef": 8242421784242.263, "vnd": 770811324196.2633, "xag": 2101254.363209143, "xau": 25107.963877387963, "xdr": 23826294.767209653, "xlm": 416279298.42738664, "xrp": 109494458.50238027, "zar": 467388061.2954298, "bits": 9040573097.844093, "link": 71766235.37980261, "sats": 904057309784.4093}, "total_volume": {"aed": 163985389.91463184, "ars": 1723741709.911644, "aud": 62486250.86832692, "bch": 359580.61250911595, "bdt": 3747341704.1865396, "bhd": 16830423.148805495, "bmd": 44646111.26710464, "bnb": 4852857.621985967, "brl": 165207353.9800122, "btc": 12171.410460833253, "cad": 59113683.6232098, "chf": 44852376.30115861, "clp": 29551304934.82389, "cny": 302392576.22322667, "czk": 1014848478.2608805, "dkk": 294966499.24394643, "eos": 15532442.894143919, "eth": 333401.8216945951, "eur": 39529041.87033668, "gbp": 34598682.51088774, "hkd": 350384913.5298007, "huf": 12571426785.538465, "idr": 631433290063.6307, "ils": 161526639.27492896, "inr": 3184646539.198819, "jpy": 4935806185.023485, "krw": 50289367542.87822, "kwd": 13569024.720743446, "lkr": 7969885008.711213, "ltc": 1018740.5882786006, "mmk": 68353919929.46249, "mxn": 860089475.116263, "myr": 182370479.94998065, "ngn": 16152474538.688974, "nok": 385644179.9029967, "nzd": 65062331.48843889, "php": 2337676368.524511, "pkr": 6224959879.802229, "pln": 171174306.7508606, "rub": 2955742221.105136, "sar": 167438543.39058587, "sek": 414137551.3442188, "sgd": 60560128.33604154, "thb": 1395627258.8963196, "try": 236090734.7476787, "twd": 1376307859.6904867, "uah": 1213164450.7882416, "usd": 44646111.26710464, "vef": 11094006923992.164, "vnd": 1037484660645.8962, "xag": 2828657.5118444427, "xau": 33800.231456986876, "xdr": 32069346.369272493, "xlm": 560883515.4262686, "xrp": 147482143.7793156, "zar": 629063127.3540576, "bits": 12171410460.833252, "link": 96619572.51854461, "sats": 1217141046083.3252}}, "community_data": {"facebook_likes": null, "twitter_followers": 82882, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.542, "reddit_subscribers": 7597, "reddit_accounts_active_48h": "1022.4"}, "developer_data": {"forks": 108, "stars": 477, "subscribers": 59, "total_issues": 39, "closed_issues": 20, "pull_requests_merged": 1074, "pull_request_contributors": 32, "code_additions_deletions_4_weeks": {"additions": 42836, "deletions": -34932}, "commit_count_4_weeks": 183}, "public_interest_stats": {"alexa_rank": 236494, "bing_matches": null}}, "UKG_20190223": {"id": "unikoin-gold", "symbol": "ukg", "name": "Unikoin Gold", "localization": {"en": "Unikoin Gold", "de": "Unikoin Gold", "es": "Unikoin Gold", "fr": "Unikoin Gold", "it": "Unikoin Gold", "pl": "Unikoin Gold", "ro": "Unikoin Gold", "hu": "Unikoin Gold", "nl": "Unikoin Gold", "pt": "Unikoin Gold", "sv": "Unikoin Gold", "vi": "Unikoin Gold", "tr": "Unikoin Gold", "ru": "Unikoin Gold", "ja": "Unikoin Gold", "zh": "Unikoin Gold", "zh-tw": "Unikoin Gold", "ko": "\uc720\ub2c8\ucf54\uc778\uace8\ub4dc", "ar": "Unikoin Gold", "th": "Unikoin Gold", "id": "Unikoin Gold"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1120/thumb/unikoin-gold.png?1548759441", "small": "https://assets.coingecko.com/coins/images/1120/small/unikoin-gold.png?1548759441"}, "market_data": {"current_price": {"aed": 0.11519973094924804, "ars": 1.2315978750853462, "aud": 0.043753668726723635, "bch": 0.00022156567214505932, "bdt": 2.6379350946656075, "bhd": 0.011823275621546031, "bmd": 0.031362388880168936, "bnb": 0.002989019104041201, "brl": 0.11679353618974864, "btc": 8.010801005189478e-06, "cad": 0.04143442006903518, "chf": 0.03140783298165625, "clp": 20.560783816137544, "cny": 0.21196584148551, "czk": 0.7100894265502894, "dkk": 0.2063580581794021, "eos": 0.008884170648479225, "eth": 0.0002183227272998274, "eur": 0.027657204895476892, "gbp": 0.024014149803156477, "hkd": 0.24616652655933396, "huf": 8.771432922005612, "idr": 442.7695018518925, "ils": 0.11349515375122166, "inr": 2.235965834017206, "jpy": 3.4685233982022847, "krw": 35.20239977465681, "kwd": 0.009521433089685989, "lkr": 5.634175885396145, "ltc": 0.000662761584555462, "mmk": 48.046900701882485, "mxn": 0.6007908113303453, "myr": 0.12798366790458238, "ngn": 11.353184774621155, "nok": 0.26882271628636795, "nzd": 0.04559812217915522, "php": 1.637337929835977, "pkr": 4.3632923529535, "pln": 0.11976825877503312, "rub": 2.063685959420662, "sar": 0.11761836701729714, "sek": 0.29202947275019303, "sgd": 0.04242785509920342, "thb": 0.9764741561746653, "try": 0.16577205345435345, "twd": 0.9657714273454198, "uah": 0.849824205219605, "usd": 0.031362388880168936, "vef": 7793.166067878527, "vnd": 726.8893585491843, "xag": 0.0019632814667880226, "xau": 2.3412964170712513e-05, "xdr": 0.022499660044133084, "xlm": 0.35116068012578555, "xrp": 0.09753785225133248, "zar": 0.4404903656895819, "bits": 8.010801005189478, "link": 0.06869220218361703, "sats": 801.0801005189478}, "market_cap": {"aed": 16510698.61852821, "ars": 176515528.00685287, "aud": 6270879.557176367, "bch": 31755.31754158654, "bdt": 378075113.23486155, "bhd": 1694539.8992046223, "bmd": 4494931.945506684, "bnb": 428393.3060016373, "brl": 16739126.565066813, "btc": 1148.1269964767196, "cad": 5938479.3398061525, "chf": 4501445.101895715, "clp": 2946820293.3435345, "cny": 30379447.0469015, "czk": 101771700.48374912, "dkk": 29575726.24545317, "eos": 1273300.4048181097, "eth": 31290.530996210644, "eur": 3963896.1905325768, "gbp": 3441764.8957425226, "hkd": 35281170.333476506, "huf": 1257142566.5193038, "idr": 63458774966.87145, "ils": 16266394.572357941, "inr": 320463925.58892643, "jpy": 497116998.5133118, "krw": 5045291412.914519, "kwd": 1364634.3690641532, "lkr": 807503448.4979613, "ltc": 94988.56193817235, "mmk": 6886195744.611778, "mxn": 86106763.76515554, "myr": 18342922.778155636, "ngn": 1627165364.2734194, "nok": 38528309.170910515, "nzd": 6535230.999823555, "php": 234667154.80539215, "pkr": 625357406.9186168, "pln": 17165470.86009819, "rub": 295772365.42586917, "sar": 16857343.275233645, "sek": 41854356.53864787, "sgd": 6080860.804112024, "thb": 139950591.6249433, "try": 23758843.80463689, "twd": 138416651.1492198, "uah": 121798820.32270285, "usd": 4494931.945506684, "vef": 1116935041172.7056, "vnd": 104179506576.3495, "xag": 281382.1554475657, "xau": 3355.601545279103, "xdr": 3224704.6320939986, "xlm": 50329181.40050641, "xrp": 13979356.281046906, "zar": 63132123.76745956, "bits": 1148126996.4767196, "link": 9845129.310209641, "sats": 114812699647.67195}, "total_volume": {"aed": 49148.455602737995, "ars": 525445.0942313917, "aud": 18666.92940298329, "bch": 94.52809056741405, "bdt": 1125440.4399624455, "bhd": 5044.2456087028095, "bmd": 13380.352234953272, "bnb": 1275.2258318678266, "brl": 49828.43172296578, "btc": 3.4177032732774273, "cad": 17677.452355208512, "chf": 13399.740365341699, "clp": 8771988.981381612, "cny": 90432.44861515528, "czk": 302950.3486440945, "dkk": 88039.96135343205, "eos": 3790.314986727661, "eth": 93.1445306455751, "eur": 11799.584041563656, "gbp": 10245.322325951487, "hkd": 105023.72272737171, "huf": 3742216.913071716, "idr": 188901805.80023485, "ils": 48421.220078415914, "inr": 953945.522414877, "jpy": 1479800.0554246577, "krw": 15018642.562600946, "kwd": 4062.1946564183954, "lkr": 2403747.309821447, "ltc": 282.758545053156, "mmk": 20498580.5655742, "mxn": 256319.5267375332, "myr": 54602.5547807496, "ngn": 4843687.509053085, "nok": 114689.68918190194, "nzd": 19453.841298273117, "php": 698548.7716692253, "pkr": 1861541.5046878727, "pln": 51097.5581324513, "rub": 880444.5715178315, "sar": 50180.33498674508, "sek": 124590.54771991666, "sgd": 18101.288392602895, "thb": 416599.90276465873, "try": 70724.47428688359, "twd": 412033.723760959, "uah": 362566.3608430545, "usd": 13380.352234953272, "vef": 3324852179.2176304, "vnd": 310117819.48081434, "xag": 837.608310462285, "xau": 9.988834353959666, "xdr": 9599.18511652558, "xlm": 149818.10247623766, "xrp": 41613.24650205117, "zar": 187929.44222296862, "bits": 3417703.273277427, "link": 29306.62790144165, "sats": 341770327.32774276}}, "community_data": {"facebook_likes": null, "twitter_followers": 6004, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1158, "reddit_accounts_active_48h": "2704.375"}, "developer_data": {"forks": 7, "stars": 16, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1642515, "bing_matches": null}}, "STORJ_20190225": {"id": "storj", "symbol": "storj", "name": "Storj", "localization": {"en": "Storj", "de": "Storj", "es": "Storj", "fr": "Storj", "it": "Storj", "pl": "Storj", "ro": "Storj", "hu": "Storj", "nl": "Storj", "pt": "Storj", "sv": "Storj", "vi": "Storj", "tr": "Storj", "ru": "Storj", "ja": "\u30b9\u30c8\u30ec\u30fc\u30b8", "zh": "Storj", "zh-tw": "Storj", "ko": "\uc2a4\ud1a0\ub9ac\uc9c0", "ar": "Storj", "th": "Storj", "id": "Storj"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/949/thumb/storj.png?1547034811", "small": "https://assets.coingecko.com/coins/images/949/small/storj.png?1547034811"}, "market_data": {"current_price": {"aed": 0.8732538943376682, "ars": 9.396240717292262, "aud": 0.3346521901071333, "bch": 0.0016827425410567054, "bdt": 19.989557461856624, "bhd": 0.08963195339498348, "bmd": 0.23774108031506327, "bnb": 0.02280170016409077, "brl": 0.8956947503907658, "btc": 6.0447037770587906e-05, "cad": 0.3145369173016756, "chf": 0.2379861913688681, "clp": 155.60500119148992, "cny": 1.5976293316193573, "czk": 5.375492244679799, "dkk": 1.564543856436233, "eos": 0.06275301761323421, "eth": 0.0016396203565554734, "eur": 0.20967313063198656, "gbp": 0.18232696286874614, "hkd": 1.8658514335826972, "huf": 66.59574636630019, "idr": 3341.5943705553104, "ils": 0.8603802148386053, "inr": 16.925976213030932, "jpy": 26.316788509781784, "krw": 267.51815062452465, "kwd": 0.07218128261769749, "lkr": 42.6590327077605, "ltc": 0.004879063016379198, "mmk": 363.98159396236156, "mxn": 4.587543416075377, "myr": 0.9697458666051413, "ngn": 86.00283580397414, "nok": 2.051238599637257, "nzd": 0.34918268719490986, "php": 12.412461803249434, "pkr": 33.1805946761369, "pln": 0.9086894400997066, "rub": 15.601211591191278, "sar": 0.8916598087756595, "sek": 2.2267590353765807, "sgd": 0.3218182133684851, "thb": 7.4234652328378585, "try": 1.2653445671899983, "twd": 7.325729874720336, "uah": 6.424001731193325, "usd": 0.23774108031506327, "vef": 59075.72051131826, "vnd": 5516.606243758224, "xag": 0.015003958449223807, "xau": 0.00017934711616807752, "xdr": 0.17032317798255878, "xlm": 2.688836848074697, "xrp": 0.7440521224858625, "zar": 3.3330567217644473, "bits": 60.447037770587905, "link": 0.536550353948978, "sats": 6044.70377705879}, "market_cap": {"aed": 118279096.9790736, "ars": 1272783589.7980342, "aud": 45326339.83241719, "bch": 228432.24856163666, "bdt": 2707513611.9409714, "bhd": 12140325.48468621, "bmd": 32201173.652735766, "bnb": 3090169.591403412, "brl": 121328032.90520932, "btc": 8195.745685062577, "cad": 42605179.65289278, "chf": 32233374.826388508, "clp": 21076135555.751163, "cny": 216393142.7921567, "czk": 728094297.2272781, "dkk": 211908807.34927672, "eos": 8551096.16500705, "eth": 222419.38961240125, "eur": 28399535.292467434, "gbp": 24696046.109492667, "hkd": 252706470.72269428, "huf": 9020192763.604326, "idr": 452568820715.1447, "ils": 116535403.42577794, "inr": 2292562558.206524, "jpy": 3564211056.6333013, "krw": 36232235521.720665, "kwd": 9776694.9362281, "lkr": 5778012442.190859, "ltc": 662404.140260666, "mmk": 49299996862.33841, "mxn": 621223786.2628059, "myr": 131348587.32950886, "ngn": 11648774568.877163, "nok": 277835944.629553, "nzd": 47274704.045449615, "php": 1682006505.5560868, "pkr": 4494192125.531562, "pln": 123082449.44933055, "rub": 2114416005.2074895, "sar": 120772111.84326816, "sek": 301614869.11224157, "sgd": 43590728.77370839, "thb": 1005465546.7198517, "try": 171361153.88809925, "twd": 992243744.8180343, "uah": 870107913.2705731, "usd": 32201173.652735766, "vef": 8001593718361.314, "vnd": 747204460388.6222, "xag": 2032584.7726624815, "xau": 24297.717591408284, "xdr": 23069661.431813907, "xlm": 364529140.2117619, "xrp": 100908265.01729064, "zar": 451443613.397535, "bits": 8195745685.062576, "link": 72748482.14871201, "sats": 819574568506.2577}, "total_volume": {"aed": 11009048.70079322, "ars": 118457727.2793098, "aud": 4218935.961929923, "bch": 21214.2135357331, "bdt": 252006905.47368956, "bhd": 1129983.55515039, "bmd": 2997184.6084383675, "bnb": 287459.3851742894, "brl": 11291958.95035291, "btc": 762.0514342393175, "cad": 3965344.1722099497, "chf": 3000274.7057696674, "clp": 1961700998.199838, "cny": 20141197.458905555, "czk": 67768442.02601737, "dkk": 19724091.26568765, "eos": 791122.7553698067, "eth": 20670.57527389778, "eur": 2643333.996381525, "gbp": 2298582.8367958986, "hkd": 23522654.10317644, "huf": 839567758.8914096, "idr": 42127238598.39421, "ils": 10846751.154246254, "inr": 213384558.19776958, "jpy": 331773849.77184373, "krw": 3372581980.6452694, "kwd": 909984.2105218004, "lkr": 537799340.6656009, "ltc": 61509.99464170461, "mmk": 4588689635.519136, "mxn": 57834828.12050092, "myr": 12225516.017820079, "ngn": 1084231532.1025794, "nok": 25859816.700252134, "nzd": 4402120.8880130695, "php": 156483008.40656692, "pkr": 418305357.78821605, "pln": 11455782.06386554, "rub": 196683346.40416816, "sar": 11241090.733178508, "sek": 28072590.14170842, "sgd": 4057138.9452125924, "thb": 93587089.39848812, "try": 15952107.461306427, "twd": 92354946.80595912, "uah": 80986925.30461313, "usd": 2997184.6084383675, "vef": 744763336711.8644, "vnd": 69547456008.42436, "xag": 189153.81923084968, "xau": 2261.016124913737, "xdr": 2147251.988731243, "xlm": 33897971.71347673, "xrp": 9380211.305657255, "zar": 42019605.077446476, "bits": 762051434.2393174, "link": 6764251.51419716, "sats": 76205143423.93175}}, "community_data": {"facebook_likes": null, "twitter_followers": 82869, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.5, "reddit_subscribers": 7614, "reddit_accounts_active_48h": "994.04"}, "developer_data": {"forks": 110, "stars": 482, "subscribers": 58, "total_issues": 39, "closed_issues": 21, "pull_requests_merged": 1088, "pull_request_contributors": 32, "code_additions_deletions_4_weeks": {"additions": 24681, "deletions": -13534}, "commit_count_4_weeks": 173}, "public_interest_stats": {"alexa_rank": 236494, "bing_matches": null}}, "CRPT_20190301": {"id": "crypterium", "symbol": "crpt", "name": "Crypterium", "localization": {"en": "Crypterium", "de": "Crypterium", "es": "Crypterium", "fr": "Crypterium", "it": "Crypterium", "pl": "Crypterium", "ro": "Crypterium", "hu": "Crypterium", "nl": "Crypterium", "pt": "Crypterium", "sv": "Crypterium", "vi": "Crypterium", "tr": "Crypterium", "ru": "Crypterium", "ja": "\u30af\u30ea\u30d7\u30bf\u30ea\u30a6\u30e0", "zh": "Crypterium", "zh-tw": "Crypterium", "ko": "Crypterium", "ar": "Crypterium", "th": "Crypterium", "id": "Crypterium"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1901/thumb/crypt.png?1547036205", "small": "https://assets.coingecko.com/coins/images/1901/small/crypt.png?1547036205"}, "market_data": {"current_price": {"aed": 0.5900974598782344, "ars": 6.269500544862649, "aud": 0.22404676479459398, "bch": 0.00120247547275378, "bdt": 13.51854146711018, "bhd": 0.06057352239473922, "bmd": 0.16065755803768636, "bnb": 0.016554811304432877, "brl": 0.60275358032777, "btc": 4.1971910383377504e-05, "cad": 0.21183502315059108, "chf": 0.16069756176963776, "clp": 104.5233129160127, "cny": 1.0747026687373005, "czk": 3.6257596128688983, "dkk": 1.0550332032491885, "eos": 0.04542925026052599, "eth": 0.0011651599451901332, "eur": 0.14140146444640517, "gbp": 0.12241286568925697, "hkd": 1.260944942892487, "huf": 44.93591898314084, "idr": 2253.058204688667, "ils": 0.5794034501850127, "inr": 11.380097794820507, "jpy": 17.837532757240723, "krw": 179.70496115620023, "kwd": 0.04878511341616578, "lkr": 28.86259604773108, "ltc": 0.0035356758750385246, "mmk": 245.10980687592428, "mxn": 3.075276932994036, "myr": 0.6534746173182886, "ngn": 58.060887348242424, "nok": 1.3806460696596268, "nzd": 0.23338739521890497, "php": 8.341297517748668, "pkr": 22.394947539717304, "pln": 0.6134389145128556, "rub": 10.530588825184635, "sar": 0.6025461714203444, "sek": 1.4957483738279376, "sgd": 0.21676994136083472, "thb": 5.024083154954515, "try": 0.8525057150659522, "twd": 4.940050897907804, "uah": 4.338599447087926, "usd": 0.16065755803768636, "vef": 39921.4178049813, "vnd": 3728.0658686743504, "xag": 0.010105535517308724, "xau": 0.00012099602668492275, "xdr": 0.11499900135849202, "xlm": 1.8725322386964287, "xrp": 0.4936966406893759, "zar": 2.223312955213791, "bits": 41.971910383377505, "link": 0.3496917393105563, "sats": 4197.191038337751}, "market_cap": {"aed": 48276840.24255628, "ars": 512918114.0135893, "aud": 18329632.995000716, "bch": 98376.4890391249, "bdt": 1105974031.5688195, "bhd": 4955619.134817416, "bmd": 13143658.10817936, "bnb": 1354376.2427899407, "brl": 49312258.19734439, "btc": 3433.790771902869, "cad": 17330570.39853987, "chf": 13146930.879048297, "clp": 8551223522.1454935, "cny": 87923186.54885507, "czk": 296629335.81260246, "dkk": 86313995.34301256, "eos": 3716641.4131304356, "eth": 95323.64457657015, "eur": 11568285.534649184, "gbp": 10014797.151869146, "hkd": 103159972.2107619, "huf": 3676281172.8577633, "idr": 184326384030.49567, "ils": 47401945.78424334, "inr": 931024450.263832, "jpy": 1459317786.9641557, "krw": 14701957372.131124, "kwd": 3991190.0774716334, "lkr": 2361296282.599275, "ltc": 289259.43759174476, "mmk": 20052834985.723488, "mxn": 251593445.64270276, "myr": 53461829.35501948, "ngn": 4750056343.964861, "nok": 112952917.55742319, "nzd": 19093805.277410258, "php": 682415219.6199564, "pkr": 1832167358.9960139, "pln": 50186442.89811932, "rub": 861524729.2852123, "sar": 49295289.73472682, "sek": 122369625.69073781, "sgd": 17734304.144648816, "thb": 411028476.3589838, "try": 69744889.63331194, "twd": 404153659.69818574, "uah": 354947930.849808, "usd": 13143658.10817936, "vef": 3266036613723.2905, "vnd": 304999178259.2267, "xag": 826750.4215918183, "xau": 9898.883231013117, "xdr": 9408256.761151003, "xlm": 153194931.1478779, "xrp": 40390131.24334723, "zar": 181892876.42453194, "bits": 3433790771.9028687, "link": 28608854.266752712, "sats": 343379077190.2869}, "total_volume": {"aed": 749912.2544150199, "ars": 7967455.5600092, "aud": 284724.85632487794, "bch": 1528.1392548912663, "bdt": 17179738.25899103, "bhd": 76978.5159662794, "bmd": 204168.0904061406, "bnb": 21038.314364688606, "brl": 765996.0040729454, "btc": 53.33907037017016, "cad": 269205.8356050163, "chf": 204218.92826065174, "clp": 132831131.39302094, "cny": 1365762.0239628386, "czk": 4607716.097972201, "dkk": 1340765.5204863246, "eos": 57732.75398657883, "eth": 1480.7176452376432, "eur": 179696.9114262412, "gbp": 155565.67231686827, "hkd": 1602443.8827661555, "huf": 57105814.88659748, "idr": 2863248992.725678, "ils": 736322.0096452242, "inr": 14462144.599873781, "jpy": 22668432.441557012, "krw": 228374059.73246828, "kwd": 61997.478164638225, "lkr": 36679389.32475721, "ltc": 4493.23517996173, "mmk": 311492355.67203355, "mxn": 3908147.407121433, "myr": 830453.707726976, "ngn": 73785389.50776285, "nok": 1754563.4018850594, "nzd": 296595.18910109083, "php": 10600352.741006667, "pkr": 28460121.825437058, "pln": 779575.2237658568, "rub": 13382564.988233235, "sar": 765732.4230682325, "sek": 1900838.6094160879, "sgd": 275477.2668380218, "thb": 6384744.523180813, "try": 1083387.9590308967, "twd": 6277953.995157722, "uah": 5513612.773457513, "usd": 204168.0904061406, "vef": 50733247405.86921, "vnd": 4737729731.563604, "xag": 12842.395429764774, "xau": 153.7651139275767, "xdr": 146143.9274488963, "xlm": 2379666.018008965, "xrp": 627403.4138240286, "zar": 2825447.9028913914, "bits": 53339070.37017016, "link": 444397.9823787093, "sats": 5333907037.017016}}, "community_data": {"facebook_likes": null, "twitter_followers": 17132, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 828400, "bing_matches": null}}, "NAS_20210114": {"id": "nebulas", "symbol": "nas", "name": "Nebulas", "localization": {"en": "Nebulas", "de": "Nebulas", "es": "Nebulas", "fr": "Nebulas", "it": "Nebulas", "pl": "Nebulas", "ro": "Nebulas", "hu": "Nebulas", "nl": "Nebulas", "pt": "Nebulas", "sv": "Nebulas", "vi": "Nebulas", "tr": "Nebulas", "ru": "Nebulas", "ja": "\u30cd\u30d6\u30e9\u30b9", "zh": "\u661f\u4e91\u5e01", "zh-tw": "\u661f\u96f2\u5e63", "ko": "\ub124\ubdf8\ub77c\uc2a4", "ar": "Nebulas", "th": "Nebulas", "id": "Nebulas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2431/thumb/193394331.png?1597976208", "small": "https://assets.coingecko.com/coins/images/2431/small/193394331.png?1597976208"}, "market_data": {"current_price": {"aed": 1.2492121260707312, "ars": 29.025480341279803, "aud": 0.44049603179174707, "bch": 0.0005618120939813457, "bdt": 28.886405472971827, "bhd": 0.12844552913015933, "bmd": 0.34010620349401277, "bnb": 0.007982909488006427, "brl": 1.8429164795628306, "btc": 8.842691066145055e-06, "cad": 0.4329211864275286, "chf": 0.3018490170877853, "clp": 243.10143795519292, "cny": 2.2023407154153065, "czk": 7.30091294452606, "dkk": 2.0753025457552035, "dot": 0.03642542780775149, "eos": 0.10988981013235324, "eth": 0.00026807046993079705, "eur": 0.27906190145368664, "gbp": 0.2516387981597601, "hkd": 2.6373817838092117, "huf": 100.36327926738369, "idr": 4791.1330155965015, "ils": 1.0824498919487322, "inr": 24.94895004078425, "jpy": 35.40148466858999, "krw": 371.7393386363855, "kwd": 0.10331406143537603, "lkr": 64.07464457228974, "ltc": 0.0019837720238967903, "mmk": 452.44194521049263, "mxn": 6.815992920646334, "myr": 1.371478265589605, "ngn": 133.2105704290081, "nok": 2.8740984222906687, "nzd": 0.4721677417797201, "php": 16.39034850327776, "pkr": 54.59386853133728, "pln": 1.2588827058608811, "rub": 25.23383149948588, "sar": 1.2757478922797432, "sek": 2.808801092175652, "sgd": 0.4518015021020921, "thb": 10.252841950636732, "try": 2.5039349929566757, "twd": 9.531293375782267, "uah": 9.6357583566102, "usd": 0.34010620349401277, "vef": 0.03405483415585546, "vnd": 7883.526914271966, "xag": 0.01361787959639657, "xau": 0.00018437837503817403, "xdr": 0.23557354153151752, "xlm": 1.1747107931788396, "xrp": 1.0667044209553382, "yfi": 9.935882082375015e-06, "zar": 5.205340409148815, "bits": 8.842691066145054, "link": 0.02089553538116444, "sats": 884.2691066145054}, "market_cap": {"aed": 56989361.0806323, "ars": 1324095184.5142777, "aud": 20076343.172286678, "bch": 25459.41798852163, "bdt": 1317804844.7214155, "bhd": 5859716.285188457, "bmd": 15515727.73925017, "bnb": 363102.1928643427, "brl": 84074298.11428775, "btc": 402.5997219228235, "cad": 19745097.900781415, "chf": 13769479.129380802, "clp": 11090386364.697044, "cny": 100471319.18912734, "czk": 333060177.2103674, "dkk": 94672517.65104337, "dot": 1655444.906342073, "eos": 4997661.223180266, "eth": 12161.384696202473, "eur": 12730933.893154081, "gbp": 11475820.129142916, "hkd": 120315283.30706348, "huf": 4576231066.546676, "idr": 218634049094.15997, "ils": 49381627.39261202, "inr": 1138177170.0608718, "jpy": 1614489049.9076753, "krw": 16958839059.67216, "kwd": 4713212.615352022, "lkr": 2923100872.490769, "ltc": 90099.42432161371, "mmk": 20640511603.683044, "mxn": 310879606.5578115, "myr": 62567172.10852636, "ngn": 6077098628.408545, "nok": 131072663.17896828, "nzd": 21528553.225769512, "php": 747419028.4840193, "pkr": 2490585563.163829, "pln": 57429992.23269927, "rub": 1151173531.508461, "sar": 58199929.19030399, "sek": 128134930.8045462, "sgd": 20606825.903691642, "thb": 467724188.3105023, "try": 114240053.56357685, "twd": 434819922.4309603, "uah": 439585640.2689841, "usd": 15515727.73925017, "vef": 1553589.8185311204, "vnd": 359774716321.3733, "xag": 616805.5687832215, "xau": 8400.990784417008, "xdr": 10746922.271408409, "xlm": 53602376.1321543, "xrp": 48631546.385275446, "yfi": 450.7433553182033, "zar": 237594588.65165988, "bits": 402599721.9228235, "link": 949834.0239081767, "sats": 40259972192.28235}, "total_volume": {"aed": 38958193.73126697, "ars": 905194772.5126662, "aud": 13737402.468526434, "bch": 17520.790857784843, "bdt": 900857554.2375485, "bhd": 4005729.454057919, "bmd": 10606624.037986035, "bnb": 248956.70469605623, "brl": 57473583.34343297, "btc": 275.77003494530373, "cad": 13501171.737952413, "chf": 9413527.326449137, "clp": 7581412891.01747, "cny": 68682663.62677671, "czk": 227687816.16186172, "dkk": 64720824.38298791, "dot": 1135971.1002343511, "eos": 3427046.874492125, "eth": 8360.102406342194, "eur": 8702883.51590408, "gbp": 7847660.813097204, "hkd": 82249946.45235784, "huf": 3129950466.861381, "idr": 149417288159.84082, "ils": 33757511.406465486, "inr": 778063235.8555415, "jpy": 1104038192.8019454, "krw": 11593141684.977022, "kwd": 3221974.18401901, "lkr": 1998245425.5875506, "ltc": 61866.33415793696, "mmk": 14109950252.48709, "mxn": 212564997.67474166, "myr": 42771211.43317863, "ngn": 4154333040.41754, "nok": 89632241.6357883, "nzd": 14725123.11881581, "php": 511152877.07151365, "pkr": 1702575937.5815825, "pln": 39259782.4791631, "rub": 786947609.3153583, "sar": 39785743.75195878, "sek": 87595865.2801114, "sgd": 14089977.258173145, "thb": 319747298.85575163, "try": 78088246.59182143, "twd": 297244932.3008274, "uah": 300502799.30058885, "usd": 10606624.037986035, "vef": 1062041.2649235404, "vnd": 245857338719.48886, "xag": 424690.0750108845, "xau": 5750.063023472983, "xdr": 7346646.320038914, "xlm": 36634779.397170454, "xrp": 33266469.81589102, "yfi": 309.86252132672075, "zar": 162334847.5928338, "bits": 275770034.94530374, "link": 651652.5884666729, "sats": 27577003494.530373}}, "community_data": {"facebook_likes": null, "twitter_followers": 23308, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4859, "reddit_accounts_active_48h": "282.916666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1361296, "bing_matches": null}}, "APPC_20210131": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.11858909657448787, "ars": 2.8121454887059003, "aud": 0.04220127888144986, "bch": 8.548761093959289e-05, "bdt": 2.738132907434535, "bhd": 0.012174301382494002, "bmd": 0.0322849549641968, "bnb": 0.0007845889214337249, "brl": 0.1747972031671547, "btc": 1.061972888383302e-06, "cad": 0.041375042314006134, "chf": 0.028710364750560977, "clp": 23.848891712158476, "cny": 0.2093227340058661, "czk": 0.69562884753958, "dkk": 0.19840741672715612, "dot": 0.0020808956170790325, "eos": 0.012859413468872991, "eth": 2.574945135568855e-05, "eur": 0.026674055786104125, "gbp": 0.02361731625009399, "hkd": 0.25026812813920873, "huf": 9.617042384734948, "idr": 453.6000265465592, "ils": 0.1054391115680207, "inr": 2.358007555454281, "jpy": 3.3624457745661354, "krw": 35.78787257781215, "kwd": 0.009777982885231462, "lkr": 6.224259664817248, "ltc": 0.00026262481018951485, "mmk": 42.931230639450746, "mxn": 0.6562273845225353, "myr": 0.13060878530765835, "ngn": 12.511580951036853, "nok": 0.27981757886928954, "nzd": 0.04519683842780287, "php": 1.551915443940104, "pkr": 5.189118776383987, "pln": 0.12131539959643899, "rub": 2.450699275404232, "sar": 0.1210962816070972, "sek": 0.270192788095363, "sgd": 0.04295229150382705, "thb": 0.9686293613133143, "try": 0.23880858337466745, "twd": 0.901977039504775, "uah": 0.9098700330094676, "usd": 0.0322849549641968, "vef": 0.003232692540565031, "vnd": 745.675272524776, "xag": 0.0012824226582382773, "xau": 1.754267597889557e-05, "xdr": 0.02238148045901952, "xlm": 0.1349320215942832, "xrp": 0.1281121459395329, "yfi": 1.160216629779855e-06, "zar": 0.4935473706525438, "bits": 1.061972888383302, "link": 0.0015330187019136328, "sats": 106.19728883833018}, "market_cap": {"aed": 13262826.346265255, "ars": 314543676.67876923, "aud": 4723623.556612285, "bch": 9577.681747355706, "bdt": 306228669.5260244, "bhd": 1360891.2022321436, "bmd": 3610700.845656444, "bnb": 88167.40254704138, "brl": 19546890.09804574, "btc": 118.93428413730382, "cad": 4628153.0155522805, "chf": 3212418.878175466, "clp": 2667224093.64587, "cny": 23410340.002898116, "czk": 77841608.31205799, "dkk": 22200747.998201456, "dot": 234137.30593347788, "eos": 1447279.1909145573, "eth": 2907.4667521466745, "eur": 2984969.9998050295, "gbp": 2641718.7239126978, "hkd": 27989708.83932469, "huf": 1076520589.0870557, "idr": 50762033106.68497, "ils": 11792151.78482091, "inr": 263666168.46292946, "jpy": 376153185.55286396, "krw": 4002461887.410167, "kwd": 1093096.3526123394, "lkr": 696111847.1518359, "ltc": 29476.77849098944, "mmk": 4801364318.049714, "mxn": 73459813.41520476, "myr": 14607090.271103133, "ngn": 1399276411.2728722, "nok": 31310315.14693861, "nzd": 5057335.36087038, "php": 173677974.74963874, "pkr": 580343245.7898582, "pln": 13575029.20558576, "rub": 274037751.3819411, "sar": 13542435.409051992, "sek": 30234004.942557704, "sgd": 4803459.763010584, "thb": 108393239.38660632, "try": 26707902.817714926, "twd": 100879009.85671076, "uah": 101758497.14729407, "usd": 3610700.845656444, "vef": 361539.4756755795, "vnd": 83443668376.70413, "xag": 143652.45528461115, "xau": 1962.5603376481, "xdr": 2503111.139849637, "xlm": 15132966.128198942, "xrp": 14367747.140377676, "yfi": 130.05714754886995, "zar": 55212465.10132265, "bits": 118934284.13730383, "link": 172552.58258848762, "sats": 11893428413.730383}, "total_volume": {"aed": 488373.7423875685, "ars": 11580980.512782436, "aud": 173793.35112760248, "bch": 352.0551693900255, "bdt": 11276181.82265533, "bhd": 50136.220772946064, "bmd": 132955.93552966564, "bnb": 3231.0949224217834, "brl": 719850.0261447172, "btc": 4.373417867199302, "cad": 170390.7428255273, "chf": 118235.05434782125, "clp": 98214530.961933, "cny": 862033.103600139, "czk": 2864739.4524358124, "dkk": 817081.6324891086, "dot": 8569.546521441358, "eos": 52957.65008849616, "eth": 106.04141768721097, "eur": 109849.12462615836, "gbp": 97260.8566502097, "hkd": 1030654.4688356377, "huf": 39604914.07557682, "idr": 1868016106.9656098, "ils": 434219.46028697974, "inr": 9710749.197857633, "jpy": 13847227.729479158, "krw": 147381654.53463435, "kwd": 40267.699414192175, "lkr": 25632752.705806, "ltc": 1081.5417698668145, "mmk": 176799439.22604215, "mxn": 2702476.3059492134, "myr": 537873.2371852631, "ngn": 51525205.84727517, "nok": 1152345.0479478764, "nzd": 186129.66760572256, "php": 6391099.815403637, "pkr": 21369834.40905509, "pln": 499601.2063633692, "rub": 10092472.336560054, "sar": 498698.8344289303, "sek": 1112708.2244477717, "sgd": 176886.17209989377, "thb": 3989010.4557287926, "try": 983461.7595193844, "twd": 3714522.7938718623, "uah": 3747027.728034222, "usd": 132955.93552966564, "vef": 13312.877824585441, "vnd": 3070840692.508814, "xag": 5281.27434155003, "xau": 72.24426668875422, "xdr": 92171.43639406971, "xlm": 555677.1934132165, "xrp": 527591.5743104835, "yfi": 4.778005346469407, "zar": 2032527.3015274943, "bits": 4373417.867199302, "link": 6313.279232491923, "sats": 437341786.7199302}}, "community_data": {"facebook_likes": null, "twitter_followers": 24240, "reddit_average_posts_48h": 0.1, "reddit_average_comments_48h": 0.1, "reddit_subscribers": 3109, "reddit_accounts_active_48h": "281.636363636364"}, "developer_data": {"forks": 5, "stars": 11, "subscribers": 16, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 531818, "bing_matches": null}}, "BRD_20210206": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.3451902801162543, "ars": 8.243060251108757, "aud": 0.12353070031664434, "bch": 0.00021843643204950034, "bdt": 7.9646995121586786, "bhd": 0.03542664200633389, "bmd": 0.0939753566689142, "bnb": 0.0018450875819968778, "brl": 0.5044315219917299, "btc": 2.645276859484419e-06, "cad": 0.12016544279433058, "chf": 0.08437896914731141, "clp": 68.85574383131336, "cny": 0.606798878011178, "czk": 2.0218892902427124, "dkk": 0.5806455362502193, "dot": 0.005446450947213034, "eos": 0.031363133750514256, "eth": 6.19585578588191e-05, "eur": 0.07805912641132678, "gbp": 0.06878592014130848, "hkd": 0.7284452784512555, "huf": 27.780994938464318, "idr": 1316.0781071648876, "ils": 0.3098658832979771, "inr": 6.852359451144217, "jpy": 9.87023171093606, "krw": 104.74800986020131, "kwd": 0.028470868031770926, "lkr": 18.222206111286596, "ltc": 0.0006595950023048364, "mmk": 124.7196852689277, "mxn": 1.8925499731303606, "myr": 0.3800833300474231, "ngn": 35.71063553418735, "nok": 0.8084901981243512, "nzd": 0.13054135589950205, "php": 4.502089628734036, "pkr": 15.069266548442705, "pln": 0.3498421542467222, "rub": 7.166137810466371, "sar": 0.3525271241621106, "sek": 0.7894277669008457, "sgd": 0.12518457261866056, "thb": 2.8193387935888294, "try": 0.67635943701751, "twd": 2.618519940686958, "uah": 2.6342790441481934, "usd": 0.0939753566689142, "vef": 0.009409752463258385, "vnd": 2162.298122589668, "xag": 0.003500210833258222, "xau": 5.1160184170556746e-05, "xdr": 0.06532997639980909, "xlm": 0.27750568581836926, "xrp": 0.25474046419778307, "yfi": 2.962213012974419e-06, "zar": 1.405528325715114, "bits": 2.645276859484419, "link": 0.003965802444448655, "sats": 264.5276859484419}, "market_cap": {"aed": 26718758.06549293, "ars": 638000909.7789897, "aud": 9556989.597812945, "bch": 16858.273886230527, "bdt": 616491516.6731964, "bhd": 2742127.838945157, "bmd": 7273973.120301873, "bnb": 142130.41425722992, "brl": 39049597.29902861, "btc": 204.32011897042457, "cad": 9300138.332961963, "chf": 6530922.218116793, "clp": 5329640105.245188, "cny": 46964407.451229036, "czk": 156458797.43382108, "dkk": 44937514.84125688, "dot": 415953.1433810936, "eos": 2419174.280058764, "eth": 4770.778081277987, "eur": 6041587.498367841, "gbp": 5323457.228092936, "hkd": 56383838.943363905, "huf": 2150035068.432663, "idr": 101847619222.39479, "ils": 23984544.30930259, "inr": 530403193.73957026, "jpy": 763941752.9865845, "krw": 8114256326.829935, "kwd": 2203730.1704997853, "lkr": 1410453145.8505673, "ltc": 50700.27845542664, "mmk": 9653675925.007502, "mxn": 146429414.19965643, "myr": 29419584.285060875, "ngn": 2764109785.7147174, "nok": 62572615.287821084, "nzd": 10097045.732129741, "php": 348437613.0936133, "pkr": 1166406212.2394176, "pln": 27068934.405477323, "rub": 554506609.3176035, "sar": 27286644.42096786, "sek": 61087444.552010424, "sgd": 9687331.922155626, "thb": 218198651.90896392, "try": 52355694.47866882, "twd": 202681259.6267793, "uah": 203901061.27521515, "usd": 7273973.120301873, "vef": 728342.9285358267, "vnd": 167329819757.65143, "xag": 270342.59375612886, "xau": 3957.1141171754184, "xdr": 5056735.181717685, "xlm": 21328585.628312204, "xrp": 19578788.219540525, "yfi": 228.33085581905678, "zar": 108818281.45503318, "bits": 204320118.97042456, "link": 303668.1197006945, "sats": 20432011897.042458}, "total_volume": {"aed": 3254777.6380675375, "ars": 77723301.37892786, "aud": 1164763.2745337663, "bch": 2059.6235042728686, "bdt": 75098655.3195268, "bhd": 334035.5995980146, "bmd": 886087.7812445688, "bnb": 17397.215820031317, "brl": 4756253.383386464, "btc": 24.9421506476016, "cad": 1133032.471087399, "chf": 795604.0413749989, "clp": 649236517.3178948, "cny": 5721468.803496172, "czk": 19064268.1083428, "dkk": 5474870.573975809, "dot": 51354.24654440035, "eos": 295721.03350220696, "eth": 584.2033806336665, "eur": 736014.6380863002, "gbp": 648578.1540964313, "hkd": 6868465.131928218, "huf": 261945269.89151847, "idr": 12409218451.075457, "ils": 2921706.1019755253, "inr": 64610470.20812317, "jpy": 93065799.66411707, "krw": 987662456.8056816, "kwd": 268450.0402936359, "lkr": 171816045.76843494, "ltc": 6219.28016907043, "mmk": 1175974139.5482373, "mxn": 17844735.74805029, "myr": 3583782.031243655, "ngn": 336713356.87293565, "nok": 7623203.690919979, "nzd": 1230866.309102393, "php": 42449922.527495086, "pkr": 142087175.12970603, "pln": 3298639.8693269244, "rub": 67569066.80269507, "sar": 3323956.283324871, "sek": 7443465.214933428, "sgd": 1180357.5333958897, "thb": 26583369.776283383, "try": 6377350.979173417, "twd": 24689861.327820536, "uah": 24838452.93220855, "usd": 886087.7812445688, "vef": 88723.96953601873, "vnd": 20388174237.90165, "xag": 33003.26980462437, "xau": 482.3861881095419, "xdr": 615992.2759411616, "xlm": 2616583.8167112786, "xrp": 2401931.9608381023, "yfi": 27.930521886580234, "zar": 13252638.987017198, "bits": 24942150.6476016, "link": 37393.30408966882, "sats": 2494215064.76016}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 291, "stars": 236, "subscribers": 32, "total_issues": 44, "closed_issues": 31, "pull_requests_merged": 394, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "GVT_20210220": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 16.48665110394801, "ars": 397.0396001647113, "aud": 5.800269748930642, "bch": 0.006341551241484163, "bdt": 380.57339354943184, "bhd": 1.6923997092069698, "bmd": 4.48836194706196, "bnb": 0.034574810236401944, "brl": 24.10654766983697, "btc": 9.124771721239138e-05, "cad": 5.704281640330778, "chf": 4.009969888934362, "clp": 3225.3365405781256, "cny": 28.986290290320845, "czk": 95.8669273156582, "dkk": 27.600719492176907, "dot": 0.14861745571869847, "eos": 0.9643584967609329, "eth": 0.0025171153139483056, "eur": 3.711767609533508, "gbp": 3.23187195015364, "hkd": 34.79575669288098, "huf": 1332.3723759572654, "idr": 63039.04354648514, "ils": 14.54126038523287, "inr": 327.3598006994501, "jpy": 476.18827241159096, "krw": 4970.689266293883, "kwd": 1.3576846053667702, "lkr": 872.2280719991467, "ltc": 0.02142980788867419, "mmk": 6328.249781917897, "mxn": 90.78996158285858, "myr": 18.088098646659706, "ngn": 1779.1600957359053, "nok": 37.972080675577764, "nzd": 6.243850071796832, "php": 217.00032519077112, "pkr": 717.4228122394212, "pln": 16.69220012767565, "rub": 330.23930930658827, "sar": 16.83517240913732, "sek": 37.25409087999214, "sgd": 5.963421705706342, "thb": 134.47132393397598, "try": 31.361531432706, "twd": 125.86264571951153, "uah": 125.01110022582849, "usd": 4.48836194706196, "vef": 0.4494196817593136, "vnd": 103918.67200779462, "xag": 0.16548855312172284, "xau": 0.002508321074115574, "xdr": 3.1102238763024195, "xlm": 9.218017578679117, "xrp": 8.585865499838569, "yfi": 0.00010473298436212554, "zar": 65.92890680463462, "bits": 91.24771721239138, "link": 0.14039304851919976, "sats": 9124.771721239138}, "market_cap": {"aed": 73213166.77579477, "ars": 1763133386.6574082, "aud": 25748244.784876265, "bch": 28150.17072727332, "bdt": 1690032933.7164478, "bhd": 7515531.2852957165, "bmd": 19931712.61455808, "bnb": 153732.42638076324, "brl": 107049242.11026852, "btc": 405.2839834684358, "cad": 25319952.14421463, "chf": 17804679.971182894, "clp": 14322927708.167522, "cny": 128720993.23607762, "czk": 425649695.56893206, "dkk": 122537498.30481249, "dot": 658832.8038684274, "eos": 4285432.36059791, "eth": 11177.8031213272, "eur": 16479300.809165256, "gbp": 14345112.68096143, "hkd": 154521598.62999222, "huf": 5915496990.2016945, "idr": 279940903671.46814, "ils": 64574164.57726667, "inr": 1453724442.4709466, "jpy": 2114339464.458246, "krw": 22072944071.843636, "kwd": 6029143.748777655, "lkr": 3873350560.958466, "ltc": 95222.91190886669, "mmk": 28102202427.96883, "mxn": 403008246.69271356, "myr": 80324801.83666924, "ngn": 7900812844.80871, "nok": 168492333.95291427, "nzd": 27713730.89751044, "php": 963409893.0323507, "pkr": 3185898438.080402, "pln": 74121056.2853877, "rub": 1466402008.2794347, "sar": 74760864.2603153, "sek": 165408300.06006366, "sgd": 26474058.099735383, "thb": 596577884.1204742, "try": 139260882.86665574, "twd": 558406860.6094587, "uah": 555143580.8250657, "usd": 19931712.61455808, "vef": 1995762.3840957012, "vnd": 461315518365.7709, "xag": 733864.331535531, "xau": 11130.6655924738, "xdr": 13811740.051395845, "xlm": 40864664.87302313, "xrp": 38099719.67005996, "yfi": 464.3575585271843, "zar": 292662777.67709994, "bits": 405283983.46843576, "link": 623056.6769065764, "sats": 40528398346.843575}, "total_volume": {"aed": 3929089.573577052, "ars": 94622257.93877564, "aud": 1382317.0788760348, "bch": 1511.314984839665, "bdt": 90698040.68443176, "bhd": 403331.7627603329, "bmd": 1069663.9370513577, "bnb": 8239.849654835056, "brl": 5745059.10917306, "btc": 21.746105503867938, "cad": 1359441.245918255, "chf": 955653.8063207389, "clp": 768660420.6616534, "cny": 6907996.671871373, "czk": 22846953.101143852, "dkk": 6577788.205511792, "dot": 35418.429857841475, "eos": 229825.38363454948, "eth": 599.8775295946605, "eur": 884586.4040069828, "gbp": 770217.9358574508, "hkd": 8292505.492154418, "huf": 317530247.80406505, "idr": 15023429995.886297, "ils": 3465465.133340864, "inr": 78016206.66482486, "jpy": 113484925.7375266, "krw": 1184611917.0320647, "kwd": 323562.6443186647, "lkr": 207868911.75566834, "ltc": 5107.139964828028, "mmk": 1508144988.3518605, "mxn": 21637013.435387585, "myr": 4310745.666316973, "ngn": 424008450.09732175, "nok": 9049485.267126918, "nzd": 1488030.8961108844, "php": 51715397.49304912, "pkr": 170975807.86077425, "pln": 3978075.9032382537, "rub": 78702449.5636403, "sar": 4012148.978289078, "sek": 8878374.336108632, "sgd": 1421199.362987851, "thb": 32047131.554058593, "try": 7474062.827358943, "twd": 29995516.122794185, "uah": 29792576.271664847, "usd": 1069663.9370513577, "vef": 107105.45001695235, "vnd": 24765840443.36472, "xag": 39439.140460806324, "xau": 597.7816912211507, "xdr": 741226.8341715479, "xlm": 2196832.85156468, "xrp": 2046178.717730753, "yfi": 24.959906913314487, "zar": 15712140.609404378, "bits": 21746105.50386794, "link": 33458.39368235255, "sats": 2174610550.3867936}}, "community_data": {"facebook_likes": null, "twitter_followers": 22115, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 5497, "reddit_accounts_active_48h": "26.7692307692308"}, "developer_data": {"forks": 2, "stars": 17, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 211952, "bing_matches": null}}, "DLT_20210501": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.7081940354265392, "ars": 17.993524594428383, "aud": 0.24832677709609718, "bch": 0.0002187643385736817, "bdt": 16.352825143747737, "bhd": 0.0726799263679472, "bmd": 0.19280029277647315, "bnb": 0.0003377824009953857, "brl": 1.0512628763929959, "btc": 3.4951640702975037e-06, "cad": 0.23924742570866747, "chf": 0.1762462668383922, "clp": 135.3458055290841, "cny": 1.2499435780991517, "czk": 4.135450599879698, "dkk": 1.1859917209851962, "dot": 0.005600552763033398, "eos": 0.03193283029002988, "eth": 7.335155336193728e-05, "eur": 0.15950001900841349, "gbp": 0.1386752737850409, "hkd": 1.4965255125456243, "huf": 57.839252622073744, "idr": 2798.775810075033, "ils": 0.6247770607538735, "inr": 14.378053684962723, "jpy": 20.964139835049796, "krw": 214.66391075822338, "kwd": 0.05805621696114436, "lkr": 37.6060144553331, "ltc": 0.0007428892689789844, "mmk": 300.36537610000056, "mxn": 3.8643348281774195, "myr": 0.7899991996515994, "ngn": 73.16771110867143, "nok": 1.5955660589434346, "nzd": 0.26769260250403004, "php": 9.333886526753476, "pkr": 29.758725190048608, "pln": 0.7288527795978337, "rub": 14.430195752942968, "sar": 0.7230992332607983, "sek": 1.6148755866658768, "sgd": 0.25570138829479755, "thb": 6.0450484260953905, "try": 1.586437929081931, "twd": 5.383369967704967, "uah": 5.353074100899246, "usd": 0.19280029277647315, "vef": 0.01930509331570825, "vnd": 4441.788727959197, "xag": 0.007345014425755984, "xau": 0.00010855813285072104, "xdr": 0.1343557760256768, "xlm": 0.37947194723809313, "xrp": 0.13748581839230894, "yfi": 3.972329898102942e-06, "zar": 2.7715797863765688, "bits": 3.4951640702975033, "link": 0.0052692128532267415, "sats": 349.5164070297503}, "market_cap": {"aed": 57735684.94688118, "ars": 1467083999.399032, "aud": 20236238.11640454, "bch": 17779.49419024905, "bdt": 1333167907.750316, "bhd": 5925861.0601488305, "bmd": 15718089.117630696, "bnb": 27623.408712261687, "brl": 85704452.72279336, "btc": 284.6027934093404, "cad": 19498053.779084124, "chf": 14364761.64460271, "clp": 11034098560.576742, "cny": 101901943.55851156, "czk": 337094854.64344394, "dkk": 96674987.33097827, "dot": 455733.09856101044, "eos": 2605890.7287058514, "eth": 5968.7732821896725, "eur": 13001437.466895888, "gbp": 11307011.741926167, "hkd": 122004593.6355054, "huf": 4714616090.561063, "idr": 228170854771.63037, "ils": 50935096.509247094, "inr": 1172170884.5894945, "jpy": 1708839212.6905751, "krw": 17500652911.343204, "kwd": 4732983.840833598, "lkr": 3065839154.3685646, "ltc": 60187.30811550222, "mmk": 24487357780.436893, "mxn": 315061017.2650999, "myr": 64404870.159491904, "ngn": 5965014820.1408615, "nok": 130126460.3624568, "nzd": 21815528.838587586, "php": 760905290.964527, "pkr": 2426087055.3062997, "pln": 59396615.42394112, "rub": 1178248393.7734492, "sar": 58942205.467550434, "sek": 131610703.7997454, "sgd": 20843679.388444502, "thb": 492794976.0801557, "try": 129370137.35029446, "twd": 438880500.060575, "uah": 436410622.4089845, "usd": 15718089.117630696, "vef": 1573852.2633483638, "vnd": 362034444686.1779, "xag": 598955.5472680219, "xau": 8849.284173226099, "xdr": 10953386.172957722, "xlm": 30885698.873485968, "xrp": 11168850.172576958, "yfi": 323.69910388923324, "zar": 225901728.55425274, "bits": 284602793.40934044, "link": 428075.2012987229, "sats": 28460279340.93404}, "total_volume": {"aed": 2933478.066052978, "ars": 74532694.5558774, "aud": 1028618.030348536, "bch": 906.1646338972171, "bdt": 67736596.8611855, "bhd": 301054.45566808124, "bmd": 798616.4831898579, "bnb": 1399.1607029306294, "brl": 4354536.236241012, "btc": 14.477652485874, "cad": 991009.5829221591, "chf": 730046.4733266927, "clp": 560628771.19928, "cny": 5177510.522168161, "czk": 17129844.3945326, "dkk": 4912609.434694089, "dot": 23198.583815007376, "eos": 132272.02229453344, "eth": 303.8364659038104, "eur": 660680.2428297888, "gbp": 574420.0792474853, "hkd": 6198901.0733438395, "huf": 239581485.35035262, "idr": 11593076247.40141, "ils": 2587948.658436067, "inr": 59556707.635877036, "jpy": 86837563.29964915, "krw": 889179860.7187253, "kwd": 240480.19403461315, "lkr": 155771459.56891355, "ltc": 3077.192502395814, "mmk": 1244172075.0449655, "mxn": 16006829.895871012, "myr": 3272331.0398704456, "ngn": 303074955.3705505, "nok": 6609146.367676054, "nzd": 1108835.0630025414, "php": 38662781.70610056, "pkr": 123266454.18035448, "pln": 3019050.6208432647, "rub": 59772690.26928988, "sar": 2995218.3077519136, "sek": 6689130.204316968, "sgd": 1059165.1108305492, "thb": 25039771.69971286, "try": 6571335.870279424, "twd": 22298970.242243655, "uah": 22173478.842541147, "usd": 798616.4831898579, "vef": 79965.46846180044, "vnd": 18398756775.26975, "xag": 30424.4848656776, "xau": 449.6689970248816, "xdr": 556527.8755580997, "xlm": 1571846.9490284603, "xrp": 569493.1226076625, "yfi": 16.45416657624502, "zar": 11480425.003515612, "bits": 14477652.485874, "link": 21826.10916935411, "sats": 1447765248.5874}}, "community_data": {"facebook_likes": null, "twitter_followers": 15101, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2574, "reddit_accounts_active_48h": "30.6666666666667"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 4793076, "bing_matches": null}}, "NAX_20210822": {"id": "nextdao", "symbol": "nax", "name": "NextDAO", "localization": {"en": "NextDAO", "de": "NextDAO", "es": "NextDAO", "fr": "NextDAO", "it": "NextDAO", "pl": "NextDAO", "ro": "NextDAO", "hu": "NextDAO", "nl": "NextDAO", "pt": "NextDAO", "sv": "NextDAO", "vi": "NextDAO", "tr": "NextDAO", "ru": "NextDAO", "ja": "NextDAO", "zh": "NextDAO", "zh-tw": "NextDAO", "ko": "NextDAO", "ar": "NextDAO", "th": "NextDAO", "id": "NextDAO"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9929/thumb/nax_logo.png?1595199444", "small": "https://assets.coingecko.com/coins/images/9929/small/nax_logo.png?1595199444"}, "market_data": {"current_price": {"aed": 0.00669818206858705, "ars": 0.17735338966009617, "aud": 0.002520425326619553, "bch": 2.85661131609226e-06, "bdt": 0.1549295183635432, "bhd": 0.0006875301317286213, "bmd": 0.001823527732926885, "bnb": 4.542109828835067e-06, "brl": 0.009810761555919928, "btc": 4.048278226778691e-08, "cad": 0.0023094066973652558, "chf": 0.00167262716597172, "clp": 1.4364130965607598, "cny": 0.011825030289710986, "czk": 0.03964567202947135, "dkk": 0.011583270629934974, "dot": 7.520986900350035e-05, "eos": 0.0003606823937435825, "eth": 5.985405990454291e-07, "eur": 0.0015575880954122954, "gbp": 0.0013264176611814196, "hkd": 0.014202089865967825, "huf": 0.5457736774137161, "idr": 26.263266997092828, "ils": 0.00589626751275511, "inr": 0.13543240178422677, "jpy": 0.20026346268549644, "krw": 2.1349000223196155, "kwd": 0.0005486539066443766, "lkr": 0.36382010716526625, "ltc": 1.0809346405893634e-05, "mmk": 3.0017405409066127, "mxn": 0.03654181629881277, "myr": 0.007728110532144131, "ngn": 0.7512181179175637, "nok": 0.01624431327990464, "nzd": 0.0026498994427128263, "php": 0.09194662287839996, "pkr": 0.2996055499905274, "pln": 0.0070975784067636325, "rub": 0.13471949361703872, "sar": 0.00683899488012366, "sek": 0.015918082344956286, "sgd": 0.0024822224206147337, "thb": 0.06068716706930285, "try": 0.015428125972507091, "twd": 0.050794729706224895, "uah": 0.04857083551836772, "usd": 0.001823527732926885, "vef": 0.00018258983189796895, "vnd": 41.60910168718518, "xag": 7.75573333024251e-05, "xau": 1.020026707967311e-06, "xdr": 0.0012838309945066469, "xlm": 0.005264951219942313, "xrp": 0.0015631508341998415, "yfi": 4.8527465660813476e-08, "zar": 0.027308968975539742, "bits": 0.040482782267786906, "link": 7.07029375813173e-05, "sats": 4.048278226778691}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 1086360.2874588794, "ars": 28764473.3153083, "aud": 408781.06242977135, "bch": 463.3061715449762, "bdt": 25127605.428137995, "bhd": 111508.67860761247, "bmd": 295753.100146705, "bnb": 736.672680556733, "brl": 1591181.2540992866, "btc": 6.565794499349186, "cad": 374556.5136807949, "chf": 271278.93960336497, "clp": 232968009.60482377, "cny": 1917870.1285213404, "czk": 6430025.8221440455, "dkk": 1878659.7740100853, "dot": 12198.088089239203, "eos": 58498.11559859404, "eth": 97.07570361281107, "eur": 252621.05952751008, "gbp": 215128.14326881184, "hkd": 2303399.0822175774, "huf": 88517577.30851369, "idr": 4259569237.2079134, "ils": 956299.9041383624, "inr": 21965420.08369072, "jpy": 32480196.964311447, "krw": 346253741.417385, "kwd": 88984.71400663987, "lkr": 59007012.97102139, "ltc": 1753.1390679600188, "mmk": 486844293.497111, "mxn": 5926619.738334736, "myr": 1253401.6384217346, "ngn": 121838063.24891283, "nok": 2634621.8516648784, "nzd": 429780.12404638744, "php": 14912577.567800047, "pkr": 48592225.18575752, "pln": 1151137.3144654122, "rub": 21849795.409188323, "sar": 1109198.3418522072, "sek": 2581711.326295532, "sgd": 402585.0349816977, "thb": 9842689.79066138, "try": 2502246.608829514, "twd": 8238261.755206486, "uah": 7877574.2874040045, "usd": 295753.100146705, "vef": 29613.757917689567, "vnd": 6748469242.39124, "xag": 12578.817063827573, "xau": 165.4354116290623, "xdr": 208221.125367986, "xlm": 853908.3981573584, "xrp": 253523.26529713796, "yfi": 7.870540245862996, "zar": 4429168.85248704, "bits": 6565794.499349186, "link": 11467.120900646038, "sats": 656579449.9349186}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1737714, "bing_matches": null}}, "VIB_20190821": {"id": "viberate", "symbol": "vib", "name": "Viberate", "localization": {"en": "Viberate", "de": "Viberate", "es": "Viberate", "fr": "Viberate", "it": "Viberate", "pl": "Viberate", "ro": "Viberate", "hu": "Viberate", "nl": "Viberate", "pt": "Viberate", "sv": "Viberate", "vi": "Viberate", "tr": "Viberate", "ru": "Viberate", "ja": "Viberate", "zh": "Viberate", "zh-tw": "Viberate", "ko": "\ubc14\uc774\ubc84\ub808\uc774\ud2b8", "ar": "Viberate", "th": "Viberate", "id": "Viberate"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/983/thumb/Viberate.png?1547034873", "small": "https://assets.coingecko.com/coins/images/983/small/Viberate.png?1547034873"}, "market_data": {"current_price": {"aed": 0.05847006972317796, "ars": 0.8725866324645735, "aud": 0.023478145509011977, "bch": 5.1863172199036315e-05, "bdt": 1.3458107898256884, "bhd": 0.006001643726618568, "bmd": 0.015918466003805032, "bnb": 0.0005797431577768285, "brl": 0.06377096665784314, "btc": 1.5573385350142749e-06, "cad": 0.021132479951021244, "chf": 0.015573910807152576, "clp": 11.272105429799984, "cny": 0.11211216421819811, "czk": 0.3695010247269217, "dkk": 0.1070309898697835, "eos": 0.0044696416253030185, "eth": 8.566946551906589e-05, "eur": 0.014347313409229423, "gbp": 0.013101613852101658, "hkd": 0.1248765931234071, "huf": 4.659175814653684, "idr": 226.40913789541764, "ils": 0.056450271082751205, "inr": 1.132487395071766, "jpy": 1.6933277343971544, "krw": 19.23741129464598, "kwd": 0.004843479814045733, "lkr": 2.81750221409951, "ltc": 0.00021878672635198922, "mmk": 24.172720138630932, "mxn": 0.312942715015402, "myr": 0.06647514790717148, "ngn": 5.78954608558389, "nok": 0.14346995039909355, "nzd": 0.02476037794561849, "php": 0.8323598729496587, "pkr": 2.543213721097904, "pln": 0.062282478657225374, "rub": 1.0594662396560428, "sar": 0.05971414559677334, "sek": 0.15382650438116893, "sgd": 0.02203914801920004, "thb": 0.4919840695465984, "try": 0.08879797890902537, "twd": 0.4985026813751572, "uah": 0.4021482066541245, "usd": 0.015918466003805032, "vef": 3955.5420853790088, "vnd": 368.9307853193155, "xag": 0.0009304964199398158, "xau": 1.0517012119393872e-05, "xdr": 0.011605325803142006, "xlm": 0.23460588727916712, "xrp": 0.05988081089240934, "zar": 0.24362464050921356, "bits": 1.5573385350142748, "link": 0.006613335905617056, "sats": 155.7338535014275}, "market_cap": {"aed": 10674522.430744322, "ars": 159302795.85964695, "aud": 4286261.194056361, "bch": 9468.34162485549, "bdt": 245696431.2090994, "bhd": 1095683.327973357, "bmd": 2906136.818805595, "bnb": 105840.15669996955, "brl": 11642274.70981706, "btc": 284.3137557895295, "cad": 3858027.403121254, "chf": 2843233.4873625315, "clp": 2057879233.28604, "cny": 20467631.001165863, "czk": 67457538.45179716, "dkk": 19539992.12860311, "eos": 815995.0896684577, "eth": 15640.149492598252, "eur": 2619301.114789473, "gbp": 2391881.3780338415, "hkd": 22797954.58910375, "huf": 850597185.4962077, "idr": 41334129280.71264, "ils": 10305780.166627001, "inr": 206751285.8880122, "jpy": 309140470.8255143, "krw": 3512056328.072932, "kwd": 884244.4375843379, "lkr": 514374118.68101245, "ltc": 39942.552301552016, "mmk": 4413065429.091408, "mxn": 57132034.3345808, "myr": 12135960.514185289, "ngn": 1056961960.9995948, "nok": 26192429.92053098, "nzd": 4520350.514811154, "php": 151958842.8116844, "pkr": 464298948.8564747, "pln": 11370530.57430101, "rub": 193420260.88506073, "sar": 10901645.741544437, "sek": 28083162.53484587, "sgd": 4023552.2379099783, "thb": 89818517.59041479, "try": 16211303.016343208, "twd": 91008580.6177158, "uah": 73417734.45348538, "usd": 2906136.818805595, "vef": 722139086134.7595, "vnd": 67353433336.54409, "xag": 169875.03099277982, "xau": 1920.0264734484738, "xdr": 2118713.2354765744, "xlm": 42830559.60087933, "xrp": 10932072.803545834, "zar": 44477058.12751468, "bits": 284313755.7895295, "link": 1207356.2217520673, "sats": 28431375578.952953}, "total_volume": {"aed": 826273.5128945372, "ars": 12331013.551459983, "aud": 331782.90803868114, "bch": 732.9077198921952, "bdt": 19018410.85986999, "bhd": 84812.6104280803, "bmd": 224952.81581034785, "bnb": 8192.677344507123, "brl": 901183.4754178318, "btc": 22.007628658294298, "cad": 298634.98586494674, "chf": 220083.71211213153, "clp": 159292475.5399487, "cny": 1584320.186470694, "czk": 5221627.25587136, "dkk": 1512515.2476640304, "eos": 63163.02519568885, "eth": 1210.6435062822536, "eur": 202749.97288986578, "gbp": 185146.290288627, "hkd": 1764701.5262148252, "huf": 65841439.659530565, "idr": 3199515146.9113464, "ils": 797730.5998132577, "inr": 16003817.7252899, "jpy": 23929368.68736879, "krw": 271854702.4944481, "kwd": 68445.9433609827, "lkr": 39815711.91985925, "ltc": 3091.7985528909394, "mmk": 341598333.63847613, "mxn": 4422369.901297188, "myr": 939397.7849092454, "ngn": 81815339.11022352, "nok": 2027454.7383354967, "nzd": 349902.8573522049, "php": 11762546.538266456, "pkr": 35939586.61794013, "pln": 880148.812469854, "rub": 14971914.618510291, "sar": 843854.2503085634, "sek": 2173809.0403017066, "sgd": 311447.62339505774, "thb": 6952504.201842491, "try": 1254854.29243486, "twd": 7044622.3799168365, "uah": 5682982.985816789, "usd": 224952.81581034785, "vef": 55897994816.18705, "vnd": 5213568881.377462, "xag": 13149.369400096448, "xau": 148.62182634958012, "xdr": 164001.40046090184, "xlm": 3315348.0326884957, "xrp": 846209.4915448873, "zar": 3442797.1181539334, "bits": 22007628.658294298, "link": 93456.77740007281, "sats": 2200762865.8294296}}, "community_data": {"facebook_likes": null, "twitter_followers": 32432, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1119, "reddit_accounts_active_48h": "828.318181818182"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 1, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 3938160, "bing_matches": null}}, "RLC_20190911": {"id": "iexec-rlc", "symbol": "rlc", "name": "iExec RLC", "localization": {"en": "iExec RLC", "de": "iExec RLC", "es": "iExec RLC", "fr": "iExec RLC", "it": "iExec RLC", "pl": "iExec RLC", "ro": "iExec RLC", "hu": "iExec RLC", "nl": "iExec RLC", "pt": "iExec RLC", "sv": "iExec RLC", "vi": "iExec RLC", "tr": "iExec RLC", "ru": "iExec RLC", "ja": "\u30a2\u30a4\u30a8\u30b0\u30bc\u30c3\u30af", "zh": "\u4e91\u7b97\u5b9d", "zh-tw": "\u96f2\u7b97\u5bf6", "ko": "\uc544\uc774\uc81d", "ar": "iExec RLC", "th": "iExec RLC", "id": "iExec RLC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/646/thumb/pL1VuXm.png?1604543202", "small": "https://assets.coingecko.com/coins/images/646/small/pL1VuXm.png?1604543202"}, "market_data": {"current_price": {"aed": 0.683398809230064, "ars": 10.32745935591886, "aud": 0.27169853595666527, "bch": 0.000619930712084807, "bdt": 15.733166379389981, "bhd": 0.07015529779856199, "bmd": 0.18605920505428142, "bnb": 0.008304263913963746, "brl": 0.7557538850099835, "btc": 1.7772495974625602e-05, "cad": 0.2450678819372464, "chf": 0.18374276795135436, "clp": 132.41706656911626, "cny": 1.3239414854047458, "czk": 4.362046426974582, "dkk": 1.2590998524433283, "eos": 0.05208394554420749, "eth": 0.00104612895575519, "eur": 0.16722164083856003, "gbp": 0.15145777469033606, "hkd": 1.4586762587448034, "huf": 55.69124125684739, "idr": 2599.395941972343, "ils": 0.6546027981822228, "inr": 13.336537759085786, "jpy": 19.896241092479528, "krw": 221.92676830862032, "kwd": 0.05654395059361108, "lkr": 33.34933917569639, "ltc": 0.0027085053331180465, "mmk": 283.9005161273349, "mxn": 3.635020083224985, "myr": 0.7778205067294209, "ngn": 66.78223047013323, "nok": 1.670104636408234, "nzd": 0.28952672898496556, "php": 9.60553475557184, "pkr": 29.067099309605027, "pln": 0.7318359742002555, "rub": 12.240369952508491, "sar": 0.6975731715895084, "sek": 1.7949317570791565, "sgd": 0.2570407917824893, "thb": 5.654897419214754, "try": 1.0633145885040398, "twd": 5.804076154702373, "uah": 4.662216672784677, "usd": 0.18605920505428142, "vef": 46233.413181173004, "vnd": 4276.728978496938, "xag": 0.010242750879219355, "xau": 0.00012352470623553687, "xdr": 0.1359026669701832, "xlm": 3.1401996753741814, "xrp": 0.7171897619475829, "zar": 2.7550009763433474, "bits": 17.772495974625603, "link": 0.10533196341451424, "sats": 1777.2495974625601}, "market_cap": {"aed": 47864409.33706234, "ars": 723322510.0004005, "aud": 19029430.20337102, "bch": 43414.08968669433, "bdt": 1101931559.6988626, "bhd": 4913590.491585775, "bmd": 13031357.139295895, "bnb": 581594.2167660041, "brl": 52932069.56410614, "btc": 1244.6708976628001, "cad": 17164252.056023583, "chf": 12869116.742911713, "clp": 9274327950.055786, "cny": 92727227.99608792, "czk": 305512349.3165088, "dkk": 88185800.03304334, "eos": 3647175.3418089207, "eth": 73270.18108729238, "eur": 11711997.3857279, "gbp": 10607915.652101059, "hkd": 102163885.26850912, "huf": 3900545818.934058, "idr": 182058484321.6758, "ils": 45847572.25532781, "inr": 934074648.3875912, "jpy": 1393508175.6906111, "krw": 15543477011.823643, "kwd": 3960268.528703449, "lkr": 2335746565.3538966, "ltc": 189816.93866591933, "mmk": 19884041838.222584, "mxn": 254592321.29471007, "myr": 54477588.52082663, "ngn": 4677345018.007476, "nok": 116972067.95374797, "nzd": 20278094.844458394, "php": 672759801.7913618, "pkr": 2035823769.0865054, "pln": 51256888.6038496, "rub": 857300407.801429, "sar": 48857164.18664827, "sek": 125714805.45850134, "sgd": 18002819.887937278, "thb": 396062037.53462034, "try": 74473241.73064786, "twd": 406510332.0931227, "uah": 326535902.94612086, "usd": 13031357.139295895, "vef": 3238131210744.063, "vnd": 299536820500.28485, "xag": 717389.6328160934, "xau": 8651.518004778554, "xdr": 9518455.101184497, "xlm": 219919881.7145194, "xrp": 50228706.30462551, "zar": 192956868.92441174, "bits": 1244670897.6628, "link": 7376770.806020144, "sats": 124467089766.28001}, "total_volume": {"aed": 367411.20325217204, "ars": 5552283.991789441, "aud": 146071.49539835696, "bch": 333.2892679702884, "bdt": 8458518.675106868, "bhd": 37717.130949824, "bmd": 100029.78565642027, "bnb": 4464.5667442564645, "brl": 406310.9863578123, "btc": 9.554910021263055, "cad": 131754.23217735376, "chf": 98784.41482499716, "clp": 71190515.8484167, "cny": 711781.9457953873, "czk": 2345138.306843372, "dkk": 676921.5654941247, "eos": 28001.548794147417, "eth": 562.4234242140144, "eur": 89902.27000763564, "gbp": 81427.24641789544, "hkd": 784218.5150784838, "huf": 29940915.442679647, "idr": 1397496129.44871, "ils": 351929.79338569916, "inr": 7170035.006066521, "jpy": 10696685.129169272, "krw": 119313027.58633658, "kwd": 30399.351950342978, "lkr": 17929385.695026144, "ltc": 1456.1558931847912, "mmk": 152631565.676524, "mxn": 1954271.9193909143, "myr": 418174.5189366636, "ngn": 35903690.965658925, "nok": 897887.3620091558, "nzd": 155656.34945995465, "php": 5164160.4210596755, "pkr": 15627153.26417421, "pln": 393452.1574116794, "rub": 6580709.523871723, "sar": 375031.672383049, "sek": 964997.345206051, "sgd": 138191.14888434432, "thb": 3040205.2754555694, "try": 571662.8228223008, "twd": 3120407.257028956, "uah": 2506516.8601918016, "usd": 100029.78565642027, "vef": 24856165591.636402, "vnd": 2299269648.630619, "xag": 5506.742731065139, "xau": 66.40977469729712, "xdr": 73064.45624766186, "xlm": 1688244.8807324504, "xrp": 385578.0107287144, "zar": 1481153.0397888916, "bits": 9554910.021263056, "link": 56628.930130330635, "sats": 955491002.1263055}}, "community_data": {"facebook_likes": null, "twitter_followers": 24810, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3305, "reddit_accounts_active_48h": "899.291666666667"}, "developer_data": {"forks": 18, "stars": 383, "subscribers": 41, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 40, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 137, "deletions": -48}, "commit_count_4_weeks": 6}, "public_interest_stats": {"alexa_rank": 984845, "bing_matches": null}}, "NAV_20200415": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.29825561406775786, "ars": 5.247202573267134, "aud": 0.1279005822626614, "bch": 0.00034912208838393824, "bdt": 6.8961600960207745, "bhd": 0.030650331968193112, "bmd": 0.08120218188613047, "bnb": 0.005881255171153271, "brl": 0.4146995428924686, "btc": 1.1799544597243468e-05, "cad": 0.11330546449481216, "chf": 0.07840996365979402, "clp": 68.25354481208288, "cny": 0.5713466719690025, "czk": 2.0069687668430323, "dkk": 0.5543348148638588, "eos": 0.03241949861679043, "eth": 0.000512894428207161, "eur": 0.07425557883231765, "gbp": 0.06523832014040852, "hkd": 0.6295361555086033, "huf": 26.273777971076434, "idr": 1283.1568781646388, "ils": 0.29057510569405737, "inr": 6.185698008448825, "jpy": 8.797850657923828, "krw": 98.42841275145416, "kwd": 0.025253878566586625, "lkr": 15.419313499021133, "ltc": 0.0019111771041329625, "mmk": 115.03245780157148, "mxn": 1.8947513303833146, "myr": 0.34996516349284523, "ngn": 29.801200752209883, "nok": 0.828485561238718, "nzd": 0.13346845347023023, "php": 4.097645614905212, "pkr": 13.520163284040757, "pln": 0.33808122417381004, "rub": 5.991949602468511, "sar": 0.30565678693576853, "sek": 0.8073202125300979, "sgd": 0.11476304365966826, "thb": 2.6523348004972465, "try": 0.5438516131823594, "twd": 2.4393947460412493, "uah": 2.2043072024867105, "usd": 0.08120218188613047, "vef": 20177.738721709353, "vnd": 1894.1093515362709, "xag": 0.005303921891303696, "xau": 4.808305998205336e-05, "xdr": 0.05932550206418811, "xlm": 1.6355616304612668, "xrp": 0.4306883231862369, "zar": 1.4663749851979426, "bits": 11.799544597243468, "link": 0.024673551222056753, "sats": 1179.9544597243469}, "market_cap": {"aed": 20390143.32305213, "ars": 358723214.14107054, "aud": 8743879.680484466, "bch": 23867.61248951563, "bdt": 471453632.7374271, "bhd": 2095399.4904136292, "bmd": 5551359.46720721, "bnb": 402070.00372510427, "brl": 28350792.79902724, "btc": 806.6718416568729, "cad": 7746089.432567584, "chf": 5360470.420567825, "clp": 4666130310.320207, "cny": 39059920.34721664, "czk": 137205735.18365306, "dkk": 37896910.53883678, "eos": 2216347.964895883, "eth": 35063.852640047975, "eur": 5076457.318866034, "gbp": 4459995.504111075, "hkd": 43038024.54141731, "huf": 1796197869.2095687, "idr": 87722582300.8087, "ils": 19865067.987846278, "inr": 422883134.45371056, "jpy": 601462059.3499424, "krw": 6729024864.580545, "kwd": 1726472.794301446, "lkr": 1054136107.9516418, "ltc": 130656.97083627663, "mmk": 7864154740.920083, "mxn": 129534028.41658677, "myr": 23925249.03176964, "ngn": 2037348924.4650462, "nok": 56639132.80404839, "nzd": 9124525.296431972, "php": 280134144.7876721, "pkr": 924301351.290003, "pln": 23112807.573743865, "rub": 409637590.7649537, "sar": 20896121.98169068, "sek": 55192170.958920814, "sgd": 7845736.335003957, "thb": 181325963.94504565, "try": 37180230.03162033, "twd": 166768389.75437203, "uah": 150696710.0258144, "usd": 5551359.46720721, "vef": 1379444225238.5703, "vnd": 129490139751.68265, "xag": 362600.81097211805, "xau": 3287.181994912082, "xdr": 4055767.713146919, "xlm": 111814612.98902401, "xrp": 29443860.310161043, "zar": 100248225.693857, "bits": 806671841.6568729, "link": 1686798.9133378437, "sats": 80667184165.68729}, "total_volume": {"aed": 527012.0917436803, "ars": 9271708.80784193, "aud": 225997.93671668056, "bch": 616.8922004979999, "bdt": 12185385.9098778, "bhd": 54158.563330599965, "bmd": 143482.7366576856, "bnb": 10392.067889537455, "brl": 732766.3361108009, "btc": 20.849574614891907, "cad": 200208.6365953016, "chf": 138548.9392749745, "clp": 120602737.12790881, "cny": 1009558.8833971414, "czk": 3546276.274410355, "dkk": 979499.2500673576, "eos": 57284.64770971449, "eth": 906.2748619099841, "eur": 131208.2189848305, "gbp": 115274.89152720453, "hkd": 1112378.6124860384, "huf": 46425274.27296086, "idr": 2267314204.664757, "ils": 513440.7770969116, "inr": 10930012.6890042, "jpy": 15545637.565191353, "krw": 173921164.41224697, "kwd": 44623.131100540304, "lkr": 27245638.563318335, "ltc": 3377.0141980057506, "mmk": 203260201.46816197, "mxn": 3347990.163003534, "myr": 618381.8984472936, "ngn": 52658164.353370614, "nok": 1463918.4914342023, "nzd": 235836.26100382587, "php": 7240463.162731672, "pkr": 23889875.653504714, "pln": 597383.1999374413, "rub": 10587662.87933895, "sar": 540089.8257763439, "sek": 1426519.7161243763, "sgd": 202784.15171830714, "thb": 4686625.985511391, "try": 960975.6287648503, "twd": 4310364.89193354, "uah": 3894969.599345972, "usd": 143482.7366576856, "vef": 35653686934.35451, "vnd": 3346855798.3878226, "xag": 9371.930781983658, "xau": 84.96186768448206, "xdr": 104827.0525747386, "xlm": 2890006.8109003836, "xrp": 761018.2118496249, "zar": 2591057.173040208, "bits": 20849574.614891905, "link": 43597.70353669481, "sats": 2084957461.4891906}}, "community_data": {"facebook_likes": null, "twitter_followers": 49275, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 13943, "reddit_accounts_active_48h": "230.923076923077"}, "developer_data": {"forks": 81, "stars": 90, "subscribers": 24, "total_issues": 310, "closed_issues": 251, "pull_requests_merged": 294, "pull_request_contributors": 26, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1202030, "bing_matches": null}}, "SNM_20200426": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.024564129217959703, "ars": 0.442755562611032, "aud": 0.010618910156048699, "bch": 2.875818394712928e-05, "bdt": 0.5680158630176447, "bhd": 0.002528690257249442, "bmd": 0.006687392251431916, "bnb": 0.0004264164370216139, "brl": 0.03649978022092316, "btc": 9.4e-07, "cad": 0.0094857315390436, "chf": 0.006505695803960507, "clp": 5.7431339902551555, "cny": 0.04737415544836886, "czk": 0.170772030487742, "dkk": 0.04615303762325732, "eos": 0.002554172100899103, "eth": 3.6696541937463014e-05, "eur": 0.006187944361133721, "gbp": 0.005427427364731874, "hkd": 0.05182861405226313, "huf": 2.2104874154456833, "idr": 103.14998605855874, "ils": 0.023674037309294075, "inr": 0.5109836419319128, "jpy": 0.7210948190796515, "krw": 8.241609084587207, "kwd": 0.002086185511972193, "lkr": 1.2940879409652293, "ltc": 0.00015999805707585027, "mmk": 9.640432348223982, "mxn": 0.1637906203485831, "myr": 0.02920717897073658, "ngn": 2.6076166528219704, "nok": 0.07216148975750454, "nzd": 0.011284833989054086, "php": 0.33887598540153735, "pkr": 1.0726626256755878, "pln": 0.02813987785480035, "rub": 0.5080084211192504, "sar": 0.025168375232230106, "sek": 0.06766537538727604, "sgd": 0.009555942470291352, "thb": 0.21653776110136494, "try": 0.04669401421943698, "twd": 0.20112332196181454, "uah": 0.1807096959951369, "usd": 0.006687392251431916, "vef": 1661.734333299048, "vnd": 158.05842358166797, "xag": 0.0004445448011574718, "xau": 3.905169579146184e-06, "xdr": 0.004909268150914177, "xlm": 0.12244753887863837, "xrp": 0.035632464830044175, "zar": 0.1270387856263114, "bits": 0.94, "link": 0.0018190275385695676, "sats": 94.0}, "market_cap": {"aed": 10749299.497203441, "ars": 193750493.01886478, "aud": 4646850.885225223, "bch": 12584.624087441487, "bdt": 248564586.8641255, "bhd": 1106558.6192634585, "bmd": 2926412.8000662765, "bnb": 186600.46734831654, "brl": 15972358.136348944, "btc": 411.34539872, "cad": 4150970.2362540094, "chf": 2846902.1642884742, "clp": 2513203979.9190335, "cny": 20731000.91694952, "czk": 74730094.65021726, "dkk": 20196637.939657386, "eos": 1117709.5119615337, "eth": 16058.461356288217, "eur": 2707853.6600933257, "gbp": 2375050.290818587, "hkd": 22680278.630248055, "huf": 967312582.204305, "idr": 45138587386.40454, "ils": 10359793.953514602, "inr": 223607202.05306423, "jpy": 315552165.81834626, "krw": 3606540398.92968, "kwd": 912917.8842830735, "lkr": 566294808.5692403, "ltc": 70015.38785350102, "mmk": 4218667540.546149, "mxn": 71675019.18498304, "myr": 12781104.977876635, "ngn": 1141096927.4084737, "nok": 31577975.294180747, "nzd": 4938260.1454430455, "php": 148292635.459179, "pkr": 469398761.11762434, "pln": 12314052.421398882, "rub": 222305240.9983146, "sar": 11013718.452166243, "sek": 29610468.95555057, "sgd": 4181694.6442418913, "thb": 94757246.4661458, "try": 20433370.10311878, "twd": 88011864.9619931, "uah": 79078831.86349955, "usd": 2926412.8000662765, "vef": 727177416912.3513, "vnd": 69166601350.2722, "xag": 194533.46646917379, "xau": 1708.9080187267039, "xdr": 2148303.0478310524, "xlm": 53583225.21523002, "xrp": 15592819.630734995, "zar": 55592361.62378688, "bits": 411345398.71999997, "link": 796009.1575910202, "sats": 41134539872.0}, "total_volume": {"aed": 79315.05254702129, "ars": 1429612.2774140337, "aud": 34287.37121295183, "bch": 92.85722488610647, "bdt": 1834064.933588074, "bhd": 8164.881353996518, "bmd": 21592.903339600707, "bnb": 1376.8549175582007, "brl": 117854.04483463736, "btc": 3.03516354, "cad": 30628.45374205662, "chf": 21006.224155863743, "clp": 18543990.311231025, "cny": 152966.28654806543, "czk": 551405.362327833, "dkk": 149023.42239825413, "eos": 8247.159612270381, "eth": 118.4893682262433, "eur": 19980.23735368262, "gbp": 17524.606014289857, "hkd": 167349.27627676673, "huf": 7137437.030839969, "idr": 333060720.0387721, "ils": 76441.0371125203, "inr": 1649913.7441788905, "jpy": 2328341.1742058024, "krw": 26611310.004757304, "kwd": 6736.078940015142, "lkr": 4178477.1659269533, "ltc": 516.6173077738933, "mmk": 31127966.779963844, "mxn": 528863.1054000016, "myr": 94306.98374280255, "ngn": 8419726.586108599, "nok": 233002.04542985238, "nzd": 36437.57093460608, "php": 1094195.78241736, "pkr": 3463517.5448629917, "pln": 90860.77796270578, "rub": 1640307.0614831008, "sar": 81266.10092117431, "sek": 218484.55350624857, "sgd": 30855.157634218984, "thb": 699178.2101362692, "try": 150770.18031391138, "twd": 649406.5679384902, "uah": 583493.0644775783, "usd": 21592.903339600707, "vef": 5365569639.995191, "vnd": 510354430.2605902, "xag": 1435.3895450741577, "xau": 12.609391834193234, "xdr": 15851.52308482758, "xlm": 395370.5378374209, "xrp": 115053.57243881104, "zar": 410195.2024455919, "bits": 3035163.54, "link": 5873.453258853506, "sats": 303516354.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 29838, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9661, "reddit_accounts_active_48h": "235.538461538462"}, "developer_data": {"forks": 72, "stars": 330, "subscribers": 70, "total_issues": 225, "closed_issues": 145, "pull_requests_merged": 1520, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 50, "deletions": -11}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 7419106, "bing_matches": null}}, "VIBE_20200428": {"id": "vibe", "symbol": "vibe", "name": "VIBE", "localization": {"en": "VIBE", "de": "VIBE", "es": "VIBE", "fr": "VIBE", "it": "VIBE", "pl": "VIBE", "ro": "VIBE", "hu": "VIBE", "nl": "VIBE", "pt": "VIBE", "sv": "VIBE", "vi": "VIBE", "tr": "VIBE", "ru": "VIBE", "ja": "VIBE", "zh": "VIBE", "zh-tw": "VIBE", "ko": "VIBE", "ar": "VIBE", "th": "VIBE", "id": "VIBE"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/948/thumb/vibe.png?1547034809", "small": "https://assets.coingecko.com/coins/images/948/small/vibe.png?1547034809"}, "market_data": {"current_price": {"aed": 0.03138560099705695, "ars": 0.5670078252747955, "aud": 0.013378640588142055, "bch": 3.595999110734438e-05, "bdt": 0.726281177963951, "bhd": 0.003230337658561013, "bmd": 0.008544600954781855, "bnb": 0.0005374007246456776, "brl": 0.04779379821052458, "btc": 1.14e-06, "cad": 0.01204686199412781, "chf": 0.008321014381598085, "clp": 7.326127973371722, "cny": 0.06051200950166965, "czk": 0.21465062950526567, "dkk": 0.05887700010897217, "eos": 0.0031598504434876278, "eth": 4.560674689995208e-05, "eur": 0.007893399826816024, "gbp": 0.006910591280396063, "hkd": 0.06622864660145211, "huf": 2.81501878455288, "idr": 133.19238522304386, "ils": 0.030086821651930162, "inr": 0.6521068556670415, "jpy": 0.9182455416056318, "krw": 10.515157134579278, "kwd": 0.002657558878158159, "lkr": 1.6493761309400592, "ltc": 0.0001921617444273024, "mmk": 12.148104364737792, "mxn": 0.21350864358765936, "myr": 0.03725019640697249, "ngn": 3.3323943723649236, "nok": 0.09066872598940987, "nzd": 0.0142039550497635, "php": 0.4338129621174744, "pkr": 1.375680753719877, "pln": 0.0358131995968011, "rub": 0.6373469119777515, "sar": 0.032129844284819395, "sek": 0.08591404006511676, "sgd": 0.012174048379339776, "thb": 0.277315023987445, "try": 0.05960927241079695, "twd": 0.2571326765322507, "uah": 0.2319020164855527, "usd": 0.008544600954781855, "vef": 2123.227745143942, "vnd": 200.1995220352332, "xag": 0.0005603038339008848, "xau": 4.94176996219809e-06, "xdr": 0.006285049589097437, "xlm": 0.13973815880640367, "xrp": 0.04441940569296337, "zar": 0.16270812847016172, "bits": 1.1400000000000001, "link": 0.002261324121047989, "sats": 114.00000000000001}, "market_cap": {"aed": 5875477.595951597, "ars": 106145546.62960513, "aud": 2504521.1989819263, "bch": 6729.5709111403385, "bdt": 135961990.6558, "bhd": 604728.7908239728, "bmd": 1599574.6419154112, "bnb": 100508.50164830017, "brl": 8947140.78082176, "btc": 213.33015168, "cad": 2255208.2961436897, "chf": 1557718.5722604098, "clp": 1371472885.819713, "cny": 11328027.656580746, "czk": 40183234.49448537, "dkk": 11021949.048850227, "eos": 591496.4171123252, "eth": 8531.393668232782, "eur": 1477667.8593057531, "gbp": 1293683.1844180007, "hkd": 12398199.07713463, "huf": 526979865.77903223, "idr": 24934009560.71319, "ils": 5632342.250380452, "inr": 122076337.52170035, "jpy": 171898288.8934396, "krw": 1968468603.4186292, "kwd": 497502.90427781397, "lkr": 308768103.7410863, "ltc": 36008.58146008222, "mmk": 2274161168.205491, "mxn": 39969451.3435935, "myr": 6973347.251004865, "ngn": 623834110.3470104, "nok": 16973454.427532077, "nzd": 2659022.5140698906, "php": 81211073.19224574, "pkr": 257531517.34838098, "pln": 6704337.186026111, "rub": 119313232.28525557, "sar": 6014802.1468370715, "sek": 16083363.120165022, "sgd": 2279017.9646886117, "thb": 51914195.003364615, "try": 11159032.595662387, "twd": 48135999.69916039, "uah": 43412745.304594494, "usd": 1599574.6419154112, "vef": 397474531358.0522, "vnd": 37477944314.29005, "xag": 104890.53956045405, "xau": 925.1139941517782, "xdr": 1176579.924458016, "xlm": 26130455.644510005, "xrp": 8306296.482042191, "zar": 30459444.239901222, "bits": 213330151.68, "link": 423165.4541586053, "sats": 21333015168.0}, "total_volume": {"aed": 102550.18791555204, "ars": 1852657.1798631875, "aud": 43713.743333997365, "bch": 117.49667772318729, "bdt": 2373071.3739308584, "bhd": 10554.895346664855, "bmd": 27918.86743409665, "bnb": 1755.9181136450384, "brl": 156162.78904924795, "btc": 3.72486779, "cad": 39362.25281798408, "chf": 27188.31442994866, "clp": 23937594.836342372, "cny": 197718.62728152913, "czk": 701355.4525854279, "dkk": 192376.35199801484, "eos": 10324.58345453007, "eth": 149.01675660904723, "eur": 25791.114709209287, "gbp": 22579.858658072062, "hkd": 216397.32675529993, "huf": 9197870.876163134, "idr": 435196513.6759544, "ils": 98306.52006556952, "inr": 2130712.124835388, "jpy": 3000301.088805195, "krw": 34357517.646827236, "kwd": 8683.381987087598, "lkr": 5389217.564678464, "ltc": 627.8746423574304, "mmk": 39693054.962956324, "mxn": 697624.0959528617, "myr": 121712.33049781188, "ngn": 10888358.299297694, "nok": 296253.5236827094, "nzd": 46410.39882058939, "php": 1417452.569715676, "pkr": 4494937.656889555, "pln": 117017.04704821527, "rub": 2082485.0732297297, "sar": 104981.94918792925, "sek": 280717.9303046692, "sgd": 39777.82515974073, "thb": 906106.8425736064, "try": 194768.99893711685, "twd": 840162.4776942715, "uah": 757723.1154763896, "usd": 27918.86743409665, "vef": 6937493542.737717, "vnd": 654137501.0547678, "xag": 1830.7523715008033, "xau": 16.14687698050981, "xdr": 20535.94629208928, "xlm": 456584.3568174367, "xrp": 145137.2048391771, "zar": 531637.0762365678, "bits": 3724867.7899999996, "link": 7388.713492317293, "sats": 372486779.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 19142, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 1, "stars": 7, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1007181, "bing_matches": null}}, "RLC_20200523": {"id": "iexec-rlc", "symbol": "rlc", "name": "iExec RLC", "localization": {"en": "iExec RLC", "de": "iExec RLC", "es": "iExec RLC", "fr": "iExec RLC", "it": "iExec RLC", "pl": "iExec RLC", "ro": "iExec RLC", "hu": "iExec RLC", "nl": "iExec RLC", "pt": "iExec RLC", "sv": "iExec RLC", "vi": "iExec RLC", "tr": "iExec RLC", "ru": "iExec RLC", "ja": "\u30a2\u30a4\u30a8\u30b0\u30bc\u30c3\u30af", "zh": "\u4e91\u7b97\u5b9d", "zh-tw": "\u96f2\u7b97\u5bf6", "ko": "\uc544\uc774\uc81d", "ar": "iExec RLC", "th": "iExec RLC", "id": "iExec RLC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/646/thumb/pL1VuXm.png?1604543202", "small": "https://assets.coingecko.com/coins/images/646/small/pL1VuXm.png?1604543202"}, "market_data": {"current_price": {"aed": 1.3048570378413518, "ars": 24.127261700843206, "aud": 0.543154957083819, "bch": 0.0014401514753379294, "bdt": 30.186470207153903, "bhd": 0.1341426143903093, "bmd": 0.355246804563271, "bnb": 0.020669038657813953, "brl": 2.04504927982938, "btc": 3.642303276783527e-05, "cad": 0.49517496841269604, "chf": 0.34501711757906695, "clp": 291.053568787681, "cny": 2.5219681149555724, "czk": 8.935949526592227, "dkk": 2.4237388210257826, "eos": 0.1340860706120119, "eth": 0.0016603754914670203, "eur": 0.3251218755363055, "gbp": 0.28986363018340094, "hkd": 2.7534291704687734, "huf": 113.85304839448273, "idr": 5280.743749833006, "ils": 1.2474242869476069, "inr": 26.895735573485243, "jpy": 38.30430907863248, "krw": 435.2910241591293, "kwd": 0.10970696293842458, "lkr": 66.63984751737456, "ltc": 0.0077988104540387595, "mmk": 500.17721678534053, "mxn": 8.410112851230881, "myr": 1.5448262543238391, "ngn": 138.01338357283078, "nok": 3.5439311096722474, "nzd": 0.583742970245585, "php": 18.04476143779135, "pkr": 57.017112132405124, "pln": 1.4789936927361957, "rub": 25.76491394519942, "sar": 1.3344277818531955, "sek": 3.4410310307560596, "sgd": 0.5035268207879784, "thb": 11.3405451630605, "try": 2.4104721291093667, "twd": 10.633602956239184, "uah": 9.430761432770677, "usd": 0.355246804563271, "vef": 88274.44087957664, "vnd": 8308.900110087608, "xag": 0.02042590261448195, "xau": 0.00020343918756924828, "xdr": 0.260910305117885, "xlm": 5.102888163932295, "xrp": 1.7359134046989775, "zar": 6.51362032488695, "bits": 36.423032767835274, "link": 0.09025684422278539, "sats": 3642.303276783527}, "market_cap": {"aed": 91687721.25103615, "ars": 1695321941.5766468, "aud": 38144797.91530063, "bch": 101273.7340384052, "bdt": 2121097243.3309193, "bhd": 9425730.38993666, "bmd": 24961945.291725326, "bnb": 1451956.2915521592, "brl": 143698430.46087524, "btc": 2558.118750215264, "cad": 34786118.25240854, "chf": 24243041.26732364, "clp": 20448805937.930428, "cny": 177209842.01501638, "czk": 627902756.646176, "dkk": 170300375.55826685, "eos": 9428313.602083422, "eth": 116696.4491243623, "eur": 22844498.358464126, "gbp": 20365627.419324048, "hkd": 193473797.46983996, "huf": 7998056890.921714, "idr": 368492604736.87427, "ils": 87652123.5557229, "inr": 1889868878.036523, "jpy": 2691921142.2049394, "krw": 30586870318.34411, "kwd": 7708722.983045322, "lkr": 4682548038.743435, "ltc": 548493.0766942486, "mmk": 35145696347.39501, "mxn": 590946297.0984328, "myr": 108549515.29559675, "ngn": 9697715745.835289, "nok": 249007885.25760594, "nzd": 40996550.393208645, "php": 1265582258.556979, "pkr": 4006392219.321916, "pln": 103919773.37844993, "rub": 1810292692.6410334, "sar": 93765553.57711937, "sek": 241748077.898687, "sgd": 35386927.31363493, "thb": 796692135.7320443, "try": 169386768.36058977, "twd": 747235832.3077968, "uah": 662666484.0336572, "usd": 24961945.291725326, "vef": 6202734931289.651, "vnd": 583829738131.0621, "xag": 1436660.5481783184, "xau": 14296.454926929844, "xdr": 18333250.79561708, "xlm": 357889192.9587522, "xrp": 121945923.24086097, "zar": 457734679.3979546, "bits": 2558118750.215264, "link": 6339058.227613039, "sats": 255811875021.5264}, "total_volume": {"aed": 1227382.9568018706, "ars": 22694738.923202977, "aud": 510905.8830919876, "bch": 1354.6444742843591, "bdt": 28394190.308818202, "bhd": 126178.0822793316, "bmd": 334154.5171113963, "bnb": 19441.843088073434, "brl": 1923627.3086551726, "btc": 34.26046559723767, "cad": 465774.6398564025, "chf": 324532.2036366564, "clp": 273772665.88325983, "cny": 2372229.7478772234, "czk": 8405389.888477992, "dkk": 2279832.6823507515, "eos": 126124.89570962872, "eth": 1561.792994188476, "eur": 305818.21406034974, "gbp": 272653.37823704374, "hkd": 2589948.123501155, "huf": 107093181.1890314, "idr": 4967206896.860889, "ils": 1173360.1960204705, "inr": 25298838.490503807, "jpy": 36030043.73027781, "krw": 409446221.9291065, "kwd": 103193.26381982409, "lkr": 62683198.78322607, "ltc": 7335.766874853028, "mmk": 470479886.65373033, "mxn": 7910774.038095199, "myr": 1453104.3331106168, "ngn": 129819029.89777747, "nok": 3333515.1039132564, "nzd": 549084.0391355146, "php": 16973378.696673375, "pkr": 53631799.99637922, "pln": 1391180.4887721175, "rub": 24235157.831634793, "sar": 1255197.9788062207, "sek": 3236724.5747958035, "sgd": 473630.61255369126, "thb": 10667215.986365154, "try": 2267353.681909226, "twd": 10002247.49484993, "uah": 8870823.022417923, "usd": 334154.5171113963, "vef": 83033268101.19086, "vnd": 7815570663.4052305, "xag": 19213.142910877297, "xau": 191.3602673141832, "xdr": 245419.11678343054, "xlm": 4799911.240267216, "xrp": 1632845.9483470873, "zar": 6126883.131251138, "bits": 34260465.59723767, "link": 84897.96898902659, "sats": 3426046559.723767}}, "community_data": {"facebook_likes": null, "twitter_followers": 30332, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3579, "reddit_accounts_active_48h": "263.166666666667"}, "developer_data": {"forks": 18, "stars": 384, "subscribers": 39, "total_issues": 52, "closed_issues": 41, "pull_requests_merged": 52, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 635349, "bing_matches": null}}, "TCT_20200702": {"id": "tokenclub", "symbol": "tct", "name": "TokenClub", "localization": {"en": "TokenClub", "de": "TokenClub", "es": "TokenClub", "fr": "TokenClub", "it": "TokenClub", "pl": "TokenClub", "ro": "TokenClub", "hu": "TokenClub", "nl": "TokenClub", "pt": "TokenClub", "sv": "TokenClub", "vi": "TokenClub", "tr": "TokenClub", "ru": "TokenClub", "ja": "TokenClub", "zh": "TokenClub", "zh-tw": "TokenClub", "ko": "TokenClub", "ar": "TokenClub", "th": "TokenClub", "id": "TokenClub"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2455/thumb/tokenclub.png?1558012103", "small": "https://assets.coingecko.com/coins/images/2455/small/tokenclub.png?1558012103"}, "market_data": {"current_price": {"aed": 0.024089181239533783, "ars": 0.45987244867789134, "aud": 0.009555920676738208, "bch": 2.944682175977364e-05, "bdt": 0.5565684205598328, "bhd": 0.0024757233895044725, "bmd": 0.006558537752905373, "bnb": 0.0004262734387601343, "brl": 0.035956527376528435, "btc": 7.186050493668499e-07, "cad": 0.008971095865311605, "chf": 0.006215578696730444, "clp": 5.3878412300219605, "cny": 0.04642264192261483, "czk": 0.1565195034730869, "dkk": 0.0435460672641905, "eos": 0.0027684665017970547, "eth": 2.9133237407774382e-05, "eur": 0.005842017503400462, "gbp": 0.005312710714052231, "hkd": 0.05083030721945489, "huf": 2.07584278417208, "idr": 93.01315945682167, "ils": 0.022501831464273588, "inr": 0.49595697247720505, "jpy": 0.7029932653895447, "krw": 7.894053044753911, "kwd": 0.002019432800959338, "lkr": 1.2206830807794962, "ltc": 0.00015841991024938376, "mmk": 9.092841739277274, "mxn": 0.15116183398273836, "myr": 0.02814268549771696, "ngn": 2.541433379250832, "nok": 0.0636491528965655, "nzd": 0.010218975726481398, "php": 0.327652314462243, "pkr": 1.098859252034093, "pln": 0.02611544147829394, "rub": 0.4575183468124767, "sar": 0.024605010233799792, "sek": 0.0612261601505944, "sgd": 0.009136364458147053, "thb": 0.20246720888432473, "try": 0.044949207389584855, "twd": 0.1937195296075663, "uah": 0.17499596024759909, "usd": 0.006558537752905373, "vef": 1629.7155827680442, "vnd": 152.2516836140562, "xag": 0.0003679411167441418, "xau": 3.701835463872382e-06, "xdr": 0.004758999605725441, "xlm": 0.10208616600740252, "xrp": 0.03702740353404088, "zar": 0.113493246235578, "bits": 0.7186050493668499, "link": 0.0014421071712941238, "sats": 71.86050493668499}, "market_cap": {"aed": 13926079.470408082, "ars": 265830951.61620685, "aud": 5523341.055367398, "bch": 17034.17529039188, "bdt": 321755064.1661305, "bhd": 1431228.4143724025, "bmd": 3791524.379696993, "bnb": 246636.71776364732, "brl": 20786653.2592508, "btc": 415.8564617456962, "cad": 5186411.03288999, "chf": 3593182.1563462843, "clp": 3114738460.876685, "cny": 26837167.864371262, "czk": 90486242.13969634, "dkk": 25169162.54401115, "eos": 1599870.5229453552, "eth": 16877.147122363174, "eur": 3377228.302251884, "gbp": 3071377.4051148654, "hkd": 29385640.976184588, "huf": 1200130578.7209177, "idr": 53769948494.7875, "ils": 13008424.407838773, "inr": 286715274.54347867, "jpy": 406458996.55227727, "krw": 4563592633.212602, "kwd": 1167444.4802281237, "lkr": 705683162.166569, "ltc": 91654.95353215138, "mmk": 5256618538.167875, "mxn": 87409878.88002217, "myr": 16269431.11327979, "ngn": 1469215697.1325848, "nok": 36797123.25739728, "nzd": 5904169.347112908, "php": 189392182.18298358, "pkr": 635256180.7084526, "pln": 15096071.855019342, "rub": 264527072.92269993, "sar": 14224282.862871224, "sek": 35383187.985720694, "sgd": 5281104.354272934, "thb": 117158103.33263712, "try": 25985572.531069405, "twd": 111990255.60310994, "uah": 101166063.93450037, "usd": 3791524.379696993, "vef": 942146953610.1776, "vnd": 88005634883.9124, "xag": 212773.9025971499, "xau": 2139.1401397812465, "xdr": 2751202.1288713533, "xlm": 59306550.7644915, "xrp": 21391166.67525316, "zar": 65621049.896729626, "bits": 415856461.7456962, "link": 834546.8574717954, "sats": 41585646174.56962}, "total_volume": {"aed": 2815633.6027817954, "ars": 53751611.83834728, "aud": 1116931.7502076372, "bch": 3441.854665690143, "bdt": 65053798.69879648, "bhd": 289371.8095840332, "bmd": 766586.4231154238, "bnb": 49824.433890539774, "brl": 4202733.406088002, "btc": 83.99324593089128, "cad": 1048575.2388584313, "chf": 726500.085877872, "clp": 629751034.8258159, "cny": 5426052.020095595, "czk": 18294584.98764961, "dkk": 5089827.214917166, "eos": 323588.71948054706, "eth": 3405.2017537453135, "eur": 682836.8563900639, "gbp": 620969.4991125333, "hkd": 5941236.425750316, "huf": 242632268.78026283, "idr": 10871725969.570436, "ils": 2630098.2239680137, "inr": 57969305.945068754, "jpy": 82168482.2276845, "krw": 922686445.5846996, "kwd": 236038.85895504674, "lkr": 142678004.13861108, "ltc": 18516.71163965529, "mmk": 1062805351.9672656, "mxn": 17668360.538606603, "myr": 3289422.341588284, "ngn": 297052238.9572267, "nok": 7439551.054149257, "nzd": 1194432.1044117562, "php": 38297228.01516743, "pkr": 128438779.38355125, "pln": 3052470.47820331, "rub": 53476455.6073935, "sar": 2875925.624959823, "sek": 7156342.599407073, "sgd": 1067892.4501345153, "thb": 23665124.65191526, "try": 5253831.480864907, "twd": 22642663.179560307, "uah": 20454182.361979827, "usd": 766586.4231154238, "vef": 190487252853.9135, "vnd": 17795746239.822624, "xag": 43006.33391597644, "xau": 432.68437479903895, "xdr": 556249.6737545904, "xlm": 11932212.910494344, "xrp": 4327901.4167201575, "zar": 13265515.112869253, "bits": 83993245.93089128, "link": 168558.88001890937, "sats": 8399324593.089128}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 906216, "bing_matches": null}}, "EVX_20210130": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 1.1136905427996735, "ars": 26.3567243314198, "aud": 0.3911190713357551, "bch": 0.0007094656890874481, "bdt": 25.69806939513449, "bhd": 0.11432246263709758, "bmd": 0.30319354862236614, "bnb": 0.007307699404669119, "brl": 1.623692410937356, "btc": 9.308484897195694e-06, "cad": 0.38486934271800244, "chf": 0.26882777266021557, "clp": 222.3014486048222, "cny": 1.9602069305533176, "czk": 6.494951559878599, "dkk": 1.8544227014389765, "dot": 0.017704304818717043, "eos": 0.11531117559517763, "eth": 0.00022379232898195943, "eur": 0.2492651185160031, "gbp": 0.2206491050099269, "hkd": 2.350468570533575, "huf": 89.65418800750453, "idr": 4263.328341743699, "ils": 0.9898996488326526, "inr": 22.10737245428372, "jpy": 31.412973992117532, "krw": 334.1586560194262, "kwd": 0.0917021015550291, "lkr": 59.24796970955538, "ltc": 0.0022511557660605886, "mmk": 403.2185902059822, "mxn": 6.064401561157409, "myr": 1.2276306783719573, "ngn": 117.63856142567128, "nok": 2.5913694886237275, "nzd": 0.4189898350993172, "php": 14.575075093535617, "pkr": 48.73445144107453, "pln": 1.1329130137823331, "rub": 22.771715301541146, "sar": 1.1372808200437843, "sek": 2.5170825213080246, "sgd": 0.40173145192463544, "thb": 9.083679019919634, "try": 2.229200246891083, "twd": 8.466073458182326, "uah": 8.531041771781126, "usd": 0.30319354862236614, "vef": 0.030358770023557517, "vnd": 6979.408402841464, "xag": 0.011917055779892459, "xau": 0.00016378818690128874, "xdr": 0.2103905512922892, "xlm": 1.160088992326246, "xrp": 1.1285517148036703, "yfi": 1.0029184390943705e-05, "zar": 4.568277835802916, "bits": 9.308484897195694, "link": 0.013168323376866737, "sats": 930.8484897195694}, "market_cap": {"aed": 24323009.331921414, "ars": 575714082.5558928, "aud": 8547685.014731208, "bch": 15455.82719243211, "bdt": 561246017.3531798, "bhd": 2496803.392601432, "bmd": 6621749.246412222, "bnb": 160350.9703931087, "brl": 35462784.710909784, "btc": 203.17058453114032, "cad": 8405608.7629002, "chf": 5871319.647814816, "clp": 4855064984.736619, "cny": 42810933.22790435, "czk": 141888187.53067327, "dkk": 40501359.7952451, "dot": 385318.61314341973, "eos": 2523918.342420996, "eth": 4871.3520942726045, "eur": 5444422.095647875, "gbp": 4819408.427777511, "hkd": 51333455.5954992, "huf": 1958026533.1741562, "idr": 93127195434.66498, "ils": 21619415.332103767, "inr": 482821164.60956526, "jpy": 686105958.9967628, "krw": 7297954088.352005, "kwd": 2003105.6340366811, "lkr": 1293976077.5198796, "ltc": 49019.38773133857, "mmk": 8806296862.079412, "mxn": 132492130.62424089, "myr": 26811462.698723108, "ngn": 2569227013.5987635, "nok": 56590369.61773639, "nzd": 9151866.659472361, "php": 318394045.78118473, "pkr": 1064360764.1737366, "pln": 24745198.82037417, "rub": 497235097.01218873, "sar": 24840068.62182739, "sek": 54984674.88647232, "sgd": 8772493.401646899, "thb": 198466830.03049418, "try": 48680451.75992403, "twd": 184899104.20756838, "uah": 186318012.6360895, "usd": 6621749.246412222, "vef": 663035.7520432554, "vnd": 152448381824.87216, "xag": 259885.5143287438, "xau": 3576.274333002306, "xdr": 4594931.128324126, "xlm": 25393200.37413693, "xrp": 24676838.42222653, "yfi": 218.98170781109843, "zar": 99759777.86284429, "bits": 203170584.53114033, "link": 286332.51416106825, "sats": 20317058453.114033}, "total_volume": {"aed": 619809.9250564825, "ars": 14668490.66664847, "aud": 217672.21052570338, "bch": 394.84386253115076, "bdt": 14301924.864921521, "bhd": 63624.67335068112, "bmd": 168738.40930428062, "bnb": 4067.004653695796, "brl": 903644.8033472133, "btc": 5.18051568617662, "cad": 214194.00569471437, "chf": 149612.5855632777, "clp": 123718967.61673997, "cny": 1090927.563834033, "czk": 3614680.4564344366, "dkk": 1032054.7328277708, "dot": 9853.099600972342, "eos": 64174.92863336444, "eth": 124.54869761740841, "eur": 138725.24591814683, "gbp": 122799.3773711902, "hkd": 1308122.5821382273, "huf": 49895867.311792955, "idr": 2372699702.8676887, "ils": 550915.7199216406, "inr": 12303569.382603684, "jpy": 17482480.372788627, "krw": 185971635.37342757, "kwd": 51035.606847716874, "lkr": 32973683.670791276, "ltc": 1252.8513379891933, "mmk": 224406039.71430588, "mxn": 3375063.478301893, "myr": 683221.8192730305, "ngn": 65470204.818030104, "nok": 1442192.841558894, "nzd": 233183.32006258995, "php": 8111567.670052378, "pkr": 27122522.40144465, "pln": 630507.9402063749, "rub": 12673300.716889156, "sar": 632938.785730811, "sek": 1400849.4002032091, "sgd": 223578.392328172, "thb": 5055402.911494655, "try": 1240632.2805687918, "twd": 4711682.6030034255, "uah": 4747839.869349147, "usd": 168738.40930428062, "vef": 16895.776923637615, "vnd": 3884298584.6220665, "xag": 6632.281738929779, "xau": 91.15417609026562, "xdr": 117090.1132923799, "xlm": 645632.3761042462, "xrp": 628080.7162251795, "yfi": 5.581611575960565, "zar": 2542415.3606694574, "bits": 5180515.68617662, "link": 7328.65837651584, "sats": 518051568.6176621}}, "community_data": {"facebook_likes": null, "twitter_followers": 16783, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2807, "reddit_accounts_active_48h": "20.5"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 915325, "bing_matches": null}}, "ARDR_20210209": {"id": "ardor", "symbol": "ardr", "name": "Ardor", "localization": {"en": "Ardor", "de": "Ardor", "es": "Ardor", "fr": "Ardor", "it": "Ardor", "pl": "Ardor", "ro": "Ardor", "hu": "Ardor", "nl": "Ardor", "pt": "Ardor", "sv": "Ardor", "vi": "Ardor", "tr": "Ardor", "ru": "Ardor", "ja": "\u30a2\u30fc\u30c0\u30fc", "zh": "\u963f\u6735\u5e01", "zh-tw": "\u963f\u6735\u5e63", "ko": "\uc544\ub354", "ar": "Ardor", "th": "Ardor", "id": "Ardor"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/525/thumb/Ardor_Vertical_1.png?1606797362", "small": "https://assets.coingecko.com/coins/images/525/small/Ardor_Vertical_1.png?1606797362"}, "market_data": {"current_price": {"aed": 0.3494082077151211, "ars": 8.360794654207025, "aud": 0.12391405829132973, "bch": 0.00021153188843462504, "bdt": 8.060028482983755, "bhd": 0.035851774487025354, "bmd": 0.09512883411792004, "bnb": 0.0013916355396238341, "brl": 0.5109179422805245, "btc": 2.492178056673171e-06, "cad": 0.12141340662887207, "chf": 0.0855160654303044, "clp": 70.30021060110623, "cny": 0.6151696315903544, "czk": 2.0358997433746686, "dkk": 0.5870638175502144, "dot": 0.004529503410474058, "eos": 0.028576662169984602, "eth": 5.514321296454997e-05, "eur": 0.07895312716450903, "gbp": 0.06927053391265064, "hkd": 0.7375181546586055, "huf": 28.170073567586197, "idr": 1332.6705391517817, "ils": 0.31288349185554437, "inr": 6.924266116425408, "jpy": 10.024197890055957, "krw": 106.33025433530523, "kwd": 0.028800635044536876, "lkr": 18.407969162822344, "ltc": 0.0006126728877144566, "mmk": 133.89773563497522, "mxn": 1.9105902402156616, "myr": 0.3872219192769933, "ngn": 36.2440857989277, "nok": 0.8109495286467387, "nzd": 0.132179136785997, "php": 4.568991955456833, "pkr": 15.22536990057313, "pln": 0.35397439175278134, "rub": 7.1013103896022605, "sar": 0.35680552098496426, "sek": 0.796494702302523, "sgd": 0.12688474152316426, "thb": 2.852668873577418, "try": 0.6710197701009851, "twd": 2.6625228865928103, "uah": 2.651613892411524, "usd": 0.09512883411792004, "vef": 0.009525250160227346, "vnd": 2176.573503961286, "xag": 0.00353639538256686, "xau": 5.2481626494515304e-05, "xdr": 0.06638917665605293, "xlm": 0.27080545888495894, "xrp": 0.20994793891591276, "yfi": 2.9175613903883067e-06, "zar": 1.4116162938316466, "bits": 2.492178056673171, "link": 0.003570960260727717, "sats": 249.2178056673171}, "market_cap": {"aed": 348284352.69540715, "ars": 8333902552.552137, "aud": 123515494.56744218, "bch": 210846.01188510976, "bdt": 8034103781.532484, "bhd": 35736458.94539461, "bmd": 94822856.70988466, "bnb": 1384556.9146988667, "brl": 509274598.81744987, "btc": 2484.773607848932, "cad": 121022886.13310966, "chf": 85241007.03935088, "clp": 70074093289.53065, "cny": 613190967.4858127, "czk": 2029351367.8765984, "dkk": 585175554.4708767, "dot": 4516014.5687040305, "eos": 28473785.49782364, "eth": 54951.11202502852, "eur": 78699178.15493603, "gbp": 69047728.50757706, "hkd": 735145962.3003805, "huf": 28079465854.643063, "idr": 1328384067220.156, "ils": 311877116.86164635, "inr": 6901994541.056115, "jpy": 9991955530.35006, "krw": 105988248087.47379, "kwd": 28707999.1603444, "lkr": 18348760798.25167, "ltc": 610729.0623372808, "mmk": 133467059883.80786, "mxn": 1904444916.8240783, "myr": 385976438.2375867, "ngn": 36127508406.466156, "nok": 808341147.7375913, "nzd": 131753988.82696716, "php": 4554296008.335966, "pkr": 15176398216.41706, "pln": 352835849.8174807, "rub": 7078469359.67887, "sar": 355657872.8560241, "sek": 793932814.6605222, "sgd": 126476622.73677847, "thb": 2843493398.6962857, "try": 668861466.6601858, "twd": 2653959007.3102746, "uah": 2643085101.394222, "usd": 94822856.70988466, "vef": 9494612.642360767, "vnd": 2169572657947.3953, "xag": 3525020.733618626, "xau": 52312.82181827629, "xdr": 66175639.00069126, "xlm": 269924366.8354144, "xrp": 209324167.76709992, "yfi": 2907.5146313597907, "zar": 1407075896.6036963, "bits": 2484773607.848932, "link": 3553686.0923135392, "sats": 248477360784.8932}, "total_volume": {"aed": 40153413.01042054, "ars": 960808685.7518954, "aud": 14239998.518940812, "bch": 24308.894564133392, "bdt": 926245135.0795621, "bhd": 4120026.594531791, "bmd": 10932048.19232792, "bnb": 159924.4532574185, "brl": 58713844.43135473, "btc": 286.3969780775543, "cad": 13952627.7681091, "chf": 9827364.722493205, "clp": 8078783865.567456, "cny": 70694276.04532705, "czk": 233962229.3881063, "dkk": 67464402.40690371, "dot": 520523.036256662, "eos": 3283982.726319324, "eth": 6336.96677981995, "eur": 9073162.717704494, "gbp": 7960455.124496587, "hkd": 84754365.84716672, "huf": 3237258236.977209, "idr": 153148292981.74362, "ils": 35956053.10697608, "inr": 795725203.4376234, "jpy": 1151964232.9231522, "krw": 12219296866.974543, "kwd": 3309721.31842006, "lkr": 2115413353.656899, "ltc": 70407.35437085998, "mmk": 15387306197.726133, "mxn": 219561868.65423205, "myr": 44498902.166870765, "ngn": 4165110361.276956, "nok": 93192977.82754742, "nzd": 15189807.662034841, "php": 525060994.4982345, "pkr": 1749674313.1820865, "pln": 40678151.32365228, "rub": 816070838.3283638, "sar": 41003500.009904094, "sek": 91531853.10472344, "sgd": 14581384.519890841, "thb": 327823986.19586897, "try": 77112481.53904276, "twd": 305972724.0357884, "uah": 304719080.4772874, "usd": 10932048.19232792, "vef": 1094625.985497796, "vnd": 250128225159.9309, "xag": 406396.7051401526, "xau": 6031.101667225389, "xdr": 7629334.316799161, "xlm": 31120515.191073563, "xrp": 24126869.706651036, "yfi": 335.28132684001815, "zar": 162220608.4657132, "bits": 286396978.0775543, "link": 410368.843738509, "sats": 28639697807.75543}}, "community_data": {"facebook_likes": null, "twitter_followers": 64839, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.636, "reddit_subscribers": 6341, "reddit_accounts_active_48h": "322.5"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "ADX_20210213": {"id": "adex", "symbol": "adx", "name": "Ambire AdEx", "localization": {"en": "Ambire AdEx", "de": "Ambire AdEx", "es": "Ambire AdEx", "fr": "Ambire AdEx", "it": "Ambire AdEx", "pl": "Ambire AdEx", "ro": "Ambire AdEx", "hu": "Ambire AdEx", "nl": "Ambire AdEx", "pt": "Ambire AdEx", "sv": "Ambire AdEx", "vi": "Ambire AdEx", "tr": "Ambire AdEx", "ru": "Ambire AdEx", "ja": "\u30a2\u30c7\u30c3\u30af\u30b9", "zh": "Ambire AdEx", "zh-tw": "Ambire AdEx", "ko": "\uc560\ub4dc\uc5d1\uc2a4", "ar": "Ambire AdEx", "th": "Ambire AdEx", "id": "Ambire AdEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/847/thumb/ambireadex.png?1634704581", "small": "https://assets.coingecko.com/coins/images/847/small/ambireadex.png?1634704581"}, "market_data": {"current_price": {"aed": 2.215841231296523, "ars": 53.25179868647049, "aud": 0.7793728351067395, "bch": 0.0011725309694361808, "bdt": 51.17474464669746, "bhd": 0.2274208407753906, "bmd": 0.6032783096369524, "bnb": 0.005559154811379439, "brl": 3.2446714572730726, "btc": 1.294742149018496e-05, "cad": 0.7657984698615985, "chf": 0.5384988880264464, "clp": 443.2285240181686, "cny": 3.8822769060066795, "czk": 12.814596541984281, "dkk": 3.7028317728051623, "dot": 0.02596510112274167, "eos": 0.1463566072739704, "eth": 0.0003403164842300679, "eur": 0.49789825778787955, "gbp": 0.43662026348650546, "hkd": 4.676522964559208, "huf": 178.467822339899, "idr": 8443.880196301598, "ils": 1.9605640145736427, "inr": 43.951995084569134, "jpy": 63.07697022071087, "krw": 670.2422020066542, "kwd": 0.1826587967569474, "lkr": 118.1234337997181, "ltc": 0.0033441362077238543, "mmk": 849.3437193452835, "mxn": 12.116435826364247, "myr": 2.4426738757200135, "ngn": 235.9589693146762, "nok": 5.096151894454794, "nzd": 0.832905942468994, "php": 28.983650937864322, "pkr": 96.52803579544792, "pln": 2.227795191001977, "rub": 44.58787757045037, "sar": 2.262910211571021, "sek": 5.023572084300678, "sgd": 0.799679786287429, "thb": 18.038021458144833, "try": 4.263971092513978, "twd": 16.84932127355787, "uah": 16.716368386566906, "usd": 0.6032783096369524, "vef": 0.06040625714394804, "vnd": 13871.284761900784, "xag": 0.02214801179490712, "xau": 0.00032840661341706774, "xdr": 0.41921447769686093, "xlm": 1.5094685130475063, "xrp": 1.2753727822292136, "yfi": 1.7194445436964415e-05, "zar": 8.88822059482146, "bits": 12.94742149018496, "link": 0.021709438604737223, "sats": 1294.7421490184959}, "market_cap": {"aed": 252646247.7353909, "ars": 6071633420.154581, "aud": 88854646.67938375, "bch": 134244.28798683762, "bdt": 5834852710.200681, "bhd": 25930116.863612693, "bmd": 68784712.15229835, "bnb": 632386.8008110872, "brl": 369937938.8974907, "btc": 1476.8073203226202, "cad": 87314832.11314234, "chf": 61390080.457077645, "clp": 50536246052.85957, "cny": 442650258.1136858, "czk": 1461014868.7843885, "dkk": 422176763.68040264, "dot": 2954286.7000659886, "eos": 16670191.049758606, "eth": 38747.97996842023, "eur": 56761144.468076594, "gbp": 49790501.738562696, "hkd": 533209114.8213543, "huf": 20345761222.816162, "idr": 962734527616.903, "ils": 223539996.78814727, "inr": 5011389718.982933, "jpy": 7192335856.780768, "krw": 76419815201.20334, "kwd": 20826428.791336406, "lkr": 13468222315.574831, "ltc": 385721.9001321033, "mmk": 96840649365.77213, "mxn": 1381627199.6079502, "myr": 278509299.5046551, "ngn": 26903618984.462204, "nok": 581026871.0153896, "nzd": 94971739.91579983, "php": 3304404365.1316767, "pkr": 11005953721.114754, "pln": 254026963.26242492, "rub": 5084036280.014312, "sar": 258012968.546939, "sek": 572741408.5130835, "sgd": 91178056.68646409, "thb": 2057717019.0674474, "try": 486122608.90221095, "twd": 1921129427.7441165, "uah": 1905970377.7411473, "usd": 68784712.15229835, "vef": 6887413.227809622, "vnd": 1581402398127.5989, "xag": 2525141.810880592, "xau": 37431.952506159265, "xdr": 47798083.76635917, "xlm": 172277617.27268773, "xrp": 145701427.98039967, "yfi": 1958.6186913634626, "zar": 1013514806.9709806, "bits": 1476807320.3226202, "link": 2471867.5175096337, "sats": 147680732032.26202}, "total_volume": {"aed": 19862820.441506524, "ars": 477349595.52030796, "aud": 6986305.003294453, "bch": 10510.5780049003, "bdt": 458730864.69401234, "bhd": 2038602.4328714807, "bmd": 5407792.115847142, "bnb": 49832.31301294909, "brl": 29085263.708080128, "btc": 116.06080102118652, "cad": 6864624.272895777, "chf": 4827108.806239595, "clp": 3973104418.6661444, "cny": 34800764.60311111, "czk": 114870157.00797859, "dkk": 33192216.83825233, "dot": 232751.39665345504, "eos": 1311941.9251035415, "eth": 3050.5999816563813, "eur": 4463164.396843082, "gbp": 3913867.912675903, "hkd": 41920393.31322966, "huf": 1599787141.6310544, "idr": 75691016937.4348, "ils": 17574513.207685772, "inr": 393986073.58703315, "jpy": 565422520.25663, "krw": 6008057040.706176, "kwd": 1637355.073459849, "lkr": 1058859507.7839344, "ltc": 29976.866612908805, "mmk": 7613524629.923764, "mxn": 108611838.16373524, "myr": 21896150.277065016, "ngn": 2115138292.7909667, "nok": 45681950.76096277, "nzd": 7466176.252278383, "php": 259809703.95665577, "pkr": 865278168.6233194, "pln": 19969975.842282016, "rub": 399686129.82778084, "sar": 20284747.197969183, "sek": 45031344.69929729, "sgd": 7168336.693705984, "thb": 161692984.26382917, "try": 38222274.67480759, "twd": 151037465.2709718, "uah": 149845674.41331354, "usd": 5407792.115847142, "vef": 541482.2245597743, "vnd": 124342319579.20027, "xag": 198534.97407898834, "xau": 2943.8397941037083, "xdr": 3757842.294549489, "xlm": 13530889.132894851, "xrp": 11432452.926503688, "yfi": 154.1311613313878, "zar": 79674088.20899126, "bits": 116060801.02118652, "link": 194603.60011420917, "sats": 11606080102.118652}}, "community_data": {"facebook_likes": null, "twitter_followers": 53129, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3761, "reddit_accounts_active_48h": "33.6153846153846"}, "developer_data": {"forks": 12, "stars": 24, "subscribers": 5, "total_issues": 20, "closed_issues": 14, "pull_requests_merged": 25, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 11021, "bing_matches": null}}, "VIA_20210313": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 2.526037801487197, "ars": 62.29050223602002, "aud": 0.8914921877267584, "bch": 0.0012604192801546703, "bdt": 58.32354183263115, "bhd": 0.259364500399842, "bmd": 0.6876940546355221, "bnb": 0.002333399036406643, "brl": 3.9906885990499283, "btc": 1.2561188020777903e-05, "cad": 0.8695169242108809, "chf": 0.6383279369235106, "clp": 505.7300296662026, "cny": 4.474481366486025, "czk": 15.14604824922055, "dkk": 4.29877484783259, "dot": 0.01789306148134998, "eos": 0.16493108855853963, "eth": 0.0003680549210982068, "eur": 0.5780157929438661, "gbp": 0.4951844194511273, "hkd": 5.337873687446313, "huf": 211.89229211429642, "idr": 9905.00497929014, "ils": 2.2879168581291034, "inr": 50.04765690485739, "jpy": 74.68219894530843, "krw": 781.1585536010351, "kwd": 0.20825989211771234, "lkr": 135.22637983900927, "ltc": 0.003374362098089852, "mmk": 969.7187226310966, "mxn": 14.575503564486185, "myr": 2.8312364229344382, "ngn": 272.386991357685, "nok": 5.824703999521731, "nzd": 0.9581916340858577, "php": 33.33120357865826, "pkr": 107.99818660531378, "pln": 2.64210817941669, "rub": 50.993339384089474, "sar": 2.579922069138168, "sek": 5.845452416844139, "sgd": 0.9240545012137507, "thb": 21.145509749600265, "try": 5.236590794773655, "twd": 19.439116611787732, "uah": 19.053247351567414, "usd": 0.6876940546355221, "vef": 0.06885880569065482, "vnd": 15867.112556078528, "xag": 0.026518528041708737, "xau": 0.00040087749526868425, "xdr": 0.4821189201071071, "xlm": 1.5898513692535545, "xrp": 1.4160048942898305, "yfi": 1.759862479383083e-05, "zar": 10.52728591929575, "bits": 12.561188020777902, "link": 0.02177413989333411, "sats": 1256.1188020777902}, "market_cap": {"aed": 58537296.37850062, "ars": 1443492883.9183648, "aud": 20659050.462885033, "bch": 29208.405717504174, "bdt": 1351564276.706614, "bhd": 6010399.615171493, "bmd": 15936321.56661785, "bnb": 54073.16980095308, "brl": 92478474.05108322, "btc": 291.0874831744177, "cad": 20149805.307223774, "chf": 14792332.722958175, "clp": 11719566752.583477, "cny": 103689676.27319905, "czk": 350987904.7754969, "dkk": 99617930.17660652, "dot": 414645.9892389009, "eos": 3822040.987389752, "eth": 8529.143937278719, "eur": 13394685.448922656, "gbp": 11475187.388866683, "hkd": 123697552.70055032, "huf": 4910299401.1062765, "idr": 229534257864.97284, "ils": 53019185.67284357, "inr": 1159782535.1482568, "jpy": 1730652649.4915652, "krw": 18102227030.736862, "kwd": 4826123.750591418, "lkr": 3133677045.5958314, "ltc": 78195.99299265118, "mmk": 22471838005.360603, "mxn": 337766351.5240727, "myr": 65609835.88976554, "ngn": 6312177131.06488, "nok": 134979145.6550258, "nzd": 22204714.2916313, "php": 772402749.2333424, "pkr": 2502702791.673924, "pln": 61227060.605157524, "rub": 1181697367.7505922, "sar": 59785986.85485307, "sek": 135459960.4130122, "sgd": 21413635.289064396, "thb": 490016804.40335214, "try": 121350467.19654056, "twd": 450473595.3557426, "uah": 441531629.7067839, "usd": 15936321.56661785, "vef": 1595703.878465445, "vnd": 367697533987.559, "xag": 614528.7828175647, "xau": 9289.759930828526, "xdr": 11172413.215422513, "xlm": 36842521.02045674, "xrp": 32813878.763671122, "yfi": 407.8228420825657, "zar": 243954724.49233457, "bits": 291087483.1744177, "link": 504584.4047039265, "sats": 29108748317.44177}, "total_volume": {"aed": 1644175.7706783435, "ars": 40544339.621343695, "aud": 580264.4180330151, "bch": 820.3958151798273, "bdt": 37962280.01215957, "bhd": 168818.0703710958, "bmd": 447614.00704517734, "bnb": 1518.7888941033495, "brl": 2597504.0828831596, "btc": 8.175966718526068, "cad": 565960.9124378869, "chf": 415482.0355494389, "clp": 329175224.8489954, "cny": 2912400.536839446, "czk": 9858429.489151804, "dkk": 2798034.710425393, "dot": 11646.436222598504, "eos": 107352.19381115404, "eth": 239.56370850520233, "eur": 376225.3919035627, "gbp": 322311.1799829856, "hkd": 3474374.9989305832, "huf": 137918827.8507596, "idr": 6447080556.676198, "ils": 1489184.9445988818, "inr": 32575579.357420113, "jpy": 48609985.93709216, "krw": 508449226.74268687, "kwd": 135554.53066554747, "lkr": 88017660.36792713, "ltc": 2196.3425883445925, "mmk": 631181381.0484194, "mxn": 9487066.97582074, "myr": 1842826.8670049908, "ngn": 177294295.1109463, "nok": 3791248.5639559855, "nzd": 623678.5005763269, "php": 21694987.02644611, "pkr": 70295069.05601837, "pln": 1719724.9580154428, "rub": 33191115.759208318, "sar": 1679248.5662003714, "sek": 3804753.526162545, "sgd": 601458.9412666045, "thb": 13763426.172192084, "try": 3408450.855586981, "twd": 12652749.898546707, "uah": 12401590.993509619, "usd": 447614.00704517734, "vef": 44819.5905254336, "vnd": 10327763899.641966, "xag": 17260.676484952717, "xau": 260.9276331268448, "xdr": 313806.9614631344, "xlm": 1034820.2622967482, "xrp": 921665.1219481317, "yfi": 11.454789974338576, "zar": 6852117.743178234, "bits": 8175966.718526068, "link": 14172.595999514824, "sats": 817596671.8526068}}, "community_data": {"facebook_likes": null, "twitter_followers": 37818, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2142, "reddit_accounts_active_48h": "282.916666666667"}, "developer_data": {"forks": 38, "stars": 79, "subscribers": 29, "total_issues": 16, "closed_issues": 13, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1480037, "bing_matches": null}}, "LRC_20210328": {"id": "loopring", "symbol": "lrc", "name": "Loopring", "localization": {"en": "Loopring", "de": "Loopring", "es": "Loopring", "fr": "Loopring", "it": "Loopring", "pl": "Loopring", "ro": "Loopring", "hu": "Loopring", "nl": "Loopring", "pt": "Loopring", "sv": "Loopring", "vi": "Loopring", "tr": "Loopring", "ru": "Loopring", "ja": "\u30eb\u30fc\u30d7\u30ea\u30f3\u30b0", "zh": "\u8def\u5370\u534f\u8bae", "zh-tw": "\u8def\u5370\u5354\u8b70", "ko": "\ub8e8\ud504\ub9c1", "ar": "Loopring", "th": "Loopring", "id": "Loopring"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/913/thumb/LRC.png?1572852344", "small": "https://assets.coingecko.com/coins/images/913/small/LRC.png?1572852344"}, "market_data": {"current_price": {"aed": 1.7319098710409286, "ars": 43.1180585336586, "aud": 0.6210942250041683, "bch": 0.0009903124241835233, "bdt": 39.954151245704374, "bhd": 0.17780224664312724, "bmd": 0.4714989303715914, "bnb": 0.001897455596982806, "brl": 2.6503897874047873, "btc": 8.942656499959438e-06, "cad": 0.593067857083951, "chf": 0.4413022528748731, "clp": 343.1102148404016, "cny": 3.076341921102483, "czk": 10.479417351706369, "dkk": 2.9677203550181335, "dot": 0.015535406032323389, "eos": 0.12750153994807417, "eth": 0.00029674028719711704, "eur": 0.3991021556087549, "gbp": 0.34448089052092773, "hkd": 3.6628630155382282, "huf": 145.62385867055812, "idr": 6817.898108119731, "ils": 1.5577994610226134, "inr": 34.252441985431894, "jpy": 51.284309992849195, "krw": 535.3870354369427, "kwd": 0.14243322588023274, "lkr": 93.84333786130277, "ltc": 0.0026645120557938734, "mmk": 664.919940722957, "mxn": 9.855270642627008, "myr": 1.948233580295413, "ngn": 184.88266969769083, "nok": 4.054030787146694, "nzd": 0.6765660741623862, "php": 22.922798431023306, "pkr": 73.26995259047128, "pln": 1.8467820984452192, "rub": 36.14091166180587, "sar": 1.7684750845901769, "sek": 4.06133147658456, "sgd": 0.6348667087603226, "thb": 14.62118183082305, "try": 3.7365535833660046, "twd": 13.426969811476813, "uah": 13.147487406002295, "usd": 0.4714989303715914, "vef": 0.047211187898107514, "vnd": 10901.501363816236, "xag": 0.018791566295013284, "xau": 0.00027181913335922223, "xdr": 0.33104175650854645, "xlm": 1.2973439939116587, "xrp": 0.9738232822311033, "yfi": 1.5199180086550811e-05, "zar": 7.055035666156544, "bits": 8.942656499959437, "link": 0.018914340704243082, "sats": 894.2656499959438}, "market_cap": {"aed": 2177004589.9308, "ars": 54189408899.03336, "aud": 780954464.5197049, "bch": 1237523.6904200197, "bdt": 50222226977.90259, "bhd": 223496795.9443819, "bmd": 592672489.9081981, "bnb": 2379053.985075844, "brl": 3331708402.0189333, "btc": 11212.247970013357, "cad": 745534578.5053213, "chf": 554653735.0255669, "clp": 431287281951.3919, "cny": 3866950927.6550364, "czk": 13169538329.25417, "dkk": 3730608399.369118, "dot": 19294738.08964054, "eos": 159518160.1163212, "eth": 370986.8648692877, "eur": 501702596.7596992, "gbp": 433120314.24499243, "hkd": 4604259212.000432, "huf": 183029711005.94016, "idr": 8570073837697.045, "ils": 1958148419.5823998, "inr": 43055198579.01492, "jpy": 64463307490.56892, "krw": 672979612290.7592, "kwd": 179038061.7864078, "lkr": 117960744190.28172, "ltc": 3316475.719285339, "mmk": 835802016660.5896, "mxn": 12393500675.710638, "myr": 2448922728.3006763, "ngn": 232396862712.38956, "nok": 5098216764.662005, "nzd": 850655120.0228685, "php": 28852178112.723564, "pkr": 92100071580.28261, "pln": 2321517701.162576, "rub": 45429176092.949265, "sar": 2222565694.919997, "sek": 5105383953.08247, "sgd": 798082699.4780523, "thb": 18386842555.330845, "try": 4692484438.848156, "twd": 16839070643.193222, "uah": 16526345225.875742, "usd": 592672489.9081981, "vef": 59344296.414507926, "vnd": 13704779712217.674, "xag": 23629407.668272436, "xau": 341770.51803046174, "xdr": 416118318.52699554, "xlm": 1619243720.347562, "xrp": 1211846125.513518, "yfi": 18957.48142433898, "zar": 8872362292.467289, "bits": 11212247970.013353, "link": 23610327.09847468, "sats": 1121224797001.3354}, "total_volume": {"aed": 354362024.27886105, "ars": 8822285016.354986, "aud": 127080635.38439538, "bch": 202625.50677147, "bdt": 8174925352.935408, "bhd": 36379701.44711932, "bmd": 96472292.35512938, "bnb": 388233.9477180519, "brl": 542290049.7866528, "btc": 1829.7360115232302, "cad": 121346225.85451424, "chf": 90293820.86353746, "clp": 70202977830.78246, "cny": 629443118.7002767, "czk": 2144169051.8120108, "dkk": 607218314.3489649, "dot": 3178663.0595848407, "eos": 26087791.60518099, "eth": 60715.335488595985, "eur": 81659357.75316866, "gbp": 70483428.57299638, "hkd": 749449826.7754407, "huf": 29795756814.286465, "idr": 1394994171069.7886, "ils": 318737700.88088286, "inr": 7008311969.003757, "jpy": 10493162610.065863, "krw": 109544287969.24954, "kwd": 29142928.90839165, "lkr": 19201065670.71495, "ltc": 545179.5740612377, "mmk": 136047712480.76054, "mxn": 2016463854.8069155, "myr": 398623512.011394, "ngn": 37828410232.90495, "nok": 829485748.792858, "nzd": 138430600.57997638, "php": 4690180124.252988, "pkr": 14991593473.14673, "pln": 377865761.80992573, "rub": 7394707328.542254, "sar": 361843547.0232939, "sek": 830979525.7676834, "sgd": 129898591.04408874, "thb": 2991605785.932562, "try": 764527481.347624, "twd": 2747260860.3277826, "uah": 2690076619.617409, "usd": 96472292.35512938, "vef": 9659770.633519117, "vnd": 2230530673422.8975, "xag": 3844898.3881990695, "xau": 55616.27654273204, "xdr": 67733678.82399817, "xlm": 265446517.4866443, "xrp": 199251702.0379886, "yfi": 3109.8686559318176, "zar": 1443514331.6760476, "bits": 1829736011.5232303, "link": 3870018.9726542886, "sats": 182973601152.32303}}, "community_data": {"facebook_likes": null, "twitter_followers": 66303, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 4.0, "reddit_subscribers": 9627, "reddit_accounts_active_48h": "56.5"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 104110, "bing_matches": null}}, "CTXC_20210404": {"id": "cortex", "symbol": "ctxc", "name": "Cortex", "localization": {"en": "Cortex", "de": "Cortex", "es": "Cortex", "fr": "Cortex", "it": "Cortex", "pl": "Cortex", "ro": "Cortex", "hu": "Cortex", "nl": "Cortex", "pt": "Cortex", "sv": "Cortex", "vi": "Cortex", "tr": "Cortex", "ru": "Cortex", "ja": "\u30b3\u30eb\u30c6\u30c3\u30af\u30b9", "zh": "Cortex", "zh-tw": "Cortex", "ko": "\ucf54\ub974\ud14d\uc2a4", "ar": "Cortex", "th": "Cortex", "id": "Cortex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3861/thumb/2638.png?1523930406", "small": "https://assets.coingecko.com/coins/images/3861/small/2638.png?1523930406"}, "market_data": {"current_price": {"aed": 1.1906695020585634, "ars": 29.817305024599506, "aud": 0.4269126504413499, "bch": 0.0005998595561994366, "bdt": 27.480476742107964, "bhd": 0.12221412710760039, "bmd": 0.3241504688169886, "bnb": 0.0010707067748659557, "brl": 1.825874760752332, "btc": 5.5146994651835546e-06, "cad": 0.4073235893098021, "chf": 0.30600387727167566, "clp": 233.5504189414991, "cny": 2.124060777017081, "czk": 7.216821207647691, "dkk": 2.0560533603583386, "dot": 0.008777114374765927, "eos": 0.06767861824347474, "eth": 0.00016919606677142667, "eur": 0.2764138017257171, "gbp": 0.23516338551547364, "hkd": 2.520188857434881, "huf": 100.11946777951982, "idr": 4722.159199632122, "ils": 1.0809769834108929, "inr": 23.729027612608363, "jpy": 35.90454449058196, "krw": 365.70655891932626, "kwd": 0.09801499800853697, "lkr": 64.65424440311773, "ltc": 0.001647756443363677, "mmk": 456.955296443959, "mxn": 6.6258631362483476, "myr": 1.34408991894964, "ngn": 128.187557684339, "nok": 2.7718550674682976, "nzd": 0.4643458707308047, "php": 15.732485142754202, "pkr": 49.478443281942475, "pln": 1.2802760369059873, "rub": 24.543603802275282, "sar": 1.2158164471284447, "sek": 2.830693563966081, "sgd": 0.43601868541135713, "thb": 10.127177990830205, "try": 2.677319176441569, "twd": 9.202437319432994, "uah": 9.023178544522048, "usd": 0.3241504688169886, "vef": 0.032457186442645065, "vnd": 7484.331366500655, "xag": 0.01325666502903963, "xau": 0.0001897512014360885, "xdr": 0.22858248269755094, "xlm": 0.7960543318603437, "xrp": 0.5651768630155474, "yfi": 8.979629517289408e-06, "zar": 4.790892065040078, "bits": 5.514699465183555, "link": 0.011154701173768624, "sats": 551.4699465183555}, "market_cap": {"aed": 11950330.176254647, "ars": 299288230.66295713, "aud": 4284726.272489489, "bch": 6000.3470972253135, "bdt": 275811860.38720286, "bhd": 1226620.1230597596, "bmd": 3253384.018363992, "bnb": 10733.547485451765, "brl": 18327288.190649875, "btc": 55.31357458106145, "cad": 4087421.5453117825, "chf": 3070869.1749337725, "clp": 2344063351.153841, "cny": 21318449.457133725, "czk": 72433667.12325752, "dkk": 20634851.66057909, "dot": 87656.20725362508, "eos": 679605.2711400738, "eth": 1695.5419787054007, "eur": 2774176.8193790703, "gbp": 2360245.5173386014, "hkd": 25293743.122252572, "huf": 1004863813.9866455, "idr": 47394647702.72296, "ils": 10849385.024440255, "inr": 238159887.56062496, "jpy": 360425007.21987516, "krw": 3670467849.518259, "kwd": 983741.9925528148, "lkr": 648911865.6165233, "ltc": 16504.109866360704, "mmk": 4586299270.160556, "mxn": 66497867.98175245, "myr": 13490156.832146296, "ngn": 1286573340.6012716, "nok": 27816879.070622634, "nzd": 4659607.206157535, "php": 157887923.65652305, "pkr": 496597698.02117413, "pln": 12850541.53413592, "rub": 246301991.8478718, "sar": 12202721.201631233, "sek": 28409463.449263513, "sgd": 4375947.906980394, "thb": 101672174.15500063, "try": 26870999.961275533, "twd": 92365198.97336274, "uah": 90562463.10156299, "usd": 3253384.018363992, "vef": 325761.3417587863, "vnd": 75117596296.4932, "xag": 133032.6293382738, "xau": 1904.1405982680787, "xdr": 2294201.8217658093, "xlm": 7986352.218787737, "xrp": 5666125.037924823, "yfi": 89.97761328575139, "zar": 48098989.075778656, "bits": 55313574.581061445, "link": 112075.28680613151, "sats": 5531357458.106145}, "total_volume": {"aed": 64870213.93780028, "ars": 1624510372.231975, "aud": 23259111.717402153, "bch": 32681.62800509644, "bdt": 1497194983.4032178, "bhd": 6658486.303701101, "bmd": 17660408.89083095, "bnb": 58334.388703264565, "brl": 99477551.20027249, "btc": 300.4525886407851, "cad": 22191857.88731148, "chf": 16671743.880304433, "clp": 12724324941.391459, "cny": 115723361.33894792, "czk": 393187811.4636831, "dkk": 112018172.23283379, "dot": 478195.9110090678, "eos": 3687275.4671875183, "eth": 9218.162579893595, "eur": 15059613.454704944, "gbp": 12812202.800484473, "hkd": 137305264.02398783, "huf": 5454722139.911421, "idr": 257273304639.84683, "ils": 58893931.569143005, "inr": 1292808033.7193043, "jpy": 1956156161.2323563, "krw": 19924473310.63546, "kwd": 5340066.13836501, "lkr": 3522501129.9657726, "ltc": 89773.28537733319, "mmk": 24895899146.72441, "mxn": 360991155.3356254, "myr": 73228885.46583034, "ngn": 6983931541.683329, "nok": 151016575.90151346, "nzd": 25298553.396524206, "php": 857139344.8973488, "pkr": 2695691117.862408, "pln": 69752169.06953712, "rub": 1337187881.8643796, "sar": 66240273.138733, "sek": 154222222.68174148, "sgd": 23755227.923963394, "thb": 551750256.2344337, "try": 145866058.93177354, "twd": 501368412.1653549, "uah": 491602011.78422785, "usd": 17660408.89083095, "vef": 1768336.7422389025, "vnd": 407762335464.94806, "xag": 722251.3846611136, "xau": 10338.050156514604, "xdr": 12453661.17918281, "xlm": 43370737.82826531, "xrp": 30792040.909023058, "yfi": 489.22936789901854, "zar": 261018017.7410587, "bits": 300452588.6407851, "link": 607731.910747313, "sats": 30045258864.07851}}, "community_data": {"facebook_likes": null, "twitter_followers": 18720, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.167, "reddit_subscribers": 20385, "reddit_accounts_active_48h": "13.9230769230769"}, "developer_data": {"forks": 1, "stars": 9, "subscribers": 6, "total_issues": 10, "closed_issues": 6, "pull_requests_merged": 5, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 360598, "bing_matches": null}}, "NEBL_20191020": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.5201725561171007, "ars": 23.897980022452053, "aud": 0.6124836148066644, "bch": 0.0019049931388049352, "bdt": 35.044953612230756, "bhd": 0.15601219889936116, "bmd": 0.4138551007614894, "bnb": 0.023292702372831355, "brl": 1.717540053670259, "btc": 5.169063298179798e-05, "cad": 0.5464087509843844, "chf": 0.4115433061686358, "clp": 296.7755622837207, "cny": 2.935763928271778, "czk": 9.627552594524609, "dkk": 2.791668686998841, "eos": 0.14117544190604034, "eth": 0.002364900650395844, "eur": 0.3736705981877502, "gbp": 0.3227581436920717, "hkd": 3.2467077504024124, "huf": 124.28038671372737, "idr": 5840.418161691754, "ils": 1.4623321672346792, "inr": 29.534603723803368, "jpy": 44.97784132798831, "krw": 490.7328122771454, "kwd": 0.12582684941512018, "lkr": 75.23523815558285, "ltc": 0.007877389121764512, "mmk": 633.6997661828459, "mxn": 7.950094407363073, "myr": 1.7346736548417814, "ngn": 149.81152007938385, "nok": 3.79790563261281, "nzd": 0.6581661823940204, "php": 21.340696102493975, "pkr": 64.59022238198074, "pln": 1.6004538239832182, "rub": 26.534940567974008, "sar": 1.5522020439303343, "sek": 4.046461626013847, "sgd": 0.567286499252499, "thb": 12.56877899627132, "try": 2.4330806241032445, "twd": 12.69666063626171, "uah": 10.272742764089351, "usd": 0.4138551007614894, "vef": 102837.87821763418, "vnd": 9559.242496819987, "xag": 0.0237840912372735, "xau": 0.0002777009111619669, "xdr": 0.3016233914063841, "xlm": 6.65746116234673, "xrp": 1.4593135195839424, "zar": 6.184609240269615, "bits": 51.69063298179798, "link": 0.17396018754763906, "sats": 5169.063298179798}, "market_cap": {"aed": 23790601.479811013, "ars": 374001830.64668155, "aud": 9585328.674790844, "bch": 29811.150468854186, "bdt": 548451241.2173947, "bhd": 2441580.750203856, "bmd": 6476805.368564468, "bnb": 364509.3122864894, "brl": 26879389.960079413, "btc": 808.9043973079415, "cad": 8551261.360061958, "chf": 6440625.933775663, "clp": 4644518217.900882, "cny": 45944514.242985785, "czk": 150670570.96945214, "dkk": 43689433.10336973, "eos": 2209015.7740301914, "eth": 37006.12945741059, "eur": 5847920.5208875965, "gbp": 5051143.9244467905, "hkd": 50810764.80457612, "huf": 1944979956.4960198, "idr": 91402163788.0141, "ils": 22885403.161500406, "inr": 462214624.4054558, "jpy": 703900286.9447372, "krw": 7679936546.001647, "kwd": 1969181.9970368634, "lkr": 1177426576.342068, "ltc": 123266.97208094558, "mmk": 9917360061.816628, "mxn": 124418459.6093185, "myr": 27147529.702337977, "ngn": 2344540530.580907, "nok": 59436975.756363146, "nzd": 10300257.881789103, "php": 333980503.8797711, "pkr": 1010832772.8971969, "pln": 25046998.092426565, "rub": 415270091.4135636, "sar": 24291860.877700303, "sek": 63326860.862253174, "sgd": 8877996.760489978, "thb": 196700572.56649756, "try": 38077553.277334034, "twd": 198701911.90218937, "uah": 160767755.09571502, "usd": 6476805.368564468, "vef": 1609406095288.4363, "vnd": 149601522390.0668, "xag": 372219.4785773064, "xau": 4346.001170360444, "xdr": 4720386.427884943, "xlm": 104218828.38737777, "xrp": 22831580.493821584, "zar": 96788731.7472903, "bits": 808904397.3079416, "link": 2722295.173157402, "sats": 80890439730.79414}, "total_volume": {"aed": 247308.48234690778, "ars": 3887830.461566411, "aud": 99641.57860281495, "bch": 309.91281887266865, "bdt": 5701270.067587609, "bhd": 25380.7635075033, "bmd": 67327.80201102802, "bnb": 3789.361181665355, "brl": 279417.1111259677, "btc": 8.40926376603706, "cad": 88892.22371713979, "chf": 66951.70890899443, "clp": 48280778.1331789, "cny": 477603.2291256296, "czk": 1566253.3909627467, "dkk": 454161.1696770334, "eos": 22967.053405842056, "eth": 384.7326334087292, "eur": 60790.40709136121, "gbp": 52507.74088796452, "hkd": 528188.9632495855, "huf": 20218490.131255284, "idr": 950145393.7101876, "ils": 237898.7487378472, "inr": 4804821.659396207, "jpy": 7317196.744083286, "krw": 79834612.56009027, "kwd": 20470.075612224915, "lkr": 12239605.623976346, "ltc": 1281.5289558546367, "mmk": 103093117.16465276, "mxn": 1293356.9774615427, "myr": 282204.4821292237, "ngn": 24372009.295806378, "nok": 617860.304291597, "nzd": 107073.42337219835, "php": 3471800.055919313, "pkr": 10507826.76444164, "pln": 260368.9986922152, "rub": 4316823.017640074, "sar": 252519.18292794723, "sek": 658296.5069179938, "sgd": 92288.70934519007, "thb": 2044745.2797471168, "try": 395824.4570021624, "twd": 2065549.6378963247, "uah": 1671215.818430691, "usd": 67327.80201102802, "vef": 16730126778.989244, "vnd": 1555140398.2144434, "xag": 3869.3025237309967, "xau": 45.177628427419904, "xdr": 49069.44469486538, "xlm": 1083065.6097021545, "xrp": 237407.66161340216, "zar": 1006139.9404726006, "bits": 8409263.76603706, "link": 28300.622714225632, "sats": 840926376.603706}}, "community_data": {"facebook_likes": null, "twitter_followers": 40278, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.059, "reddit_subscribers": 6096, "reddit_accounts_active_48h": "111.555555555556"}, "developer_data": {"forks": 40, "stars": 101, "subscribers": 33, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 89, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 478074, "bing_matches": null}}, "SYS_20200716": {"id": "syscoin", "symbol": "sys", "name": "Syscoin", "localization": {"en": "Syscoin", "de": "Syscoin", "es": "Syscoin", "fr": "Syscoin", "it": "Syscoin", "pl": "Syscoin", "ro": "Syscoin", "hu": "Syscoin", "nl": "Syscoin", "pt": "Syscoin", "sv": "Syscoin", "vi": "Syscoin", "tr": "Syscoin", "ru": "Syscoin", "ja": "\u30b7\u30b9\u30b3\u30a4\u30f3", "zh": "\u7cfb\u7edf\u5e01", "zh-tw": "\u7cfb\u7d71\u5e63", "ko": "\uc2dc\uc2a4\ucf54\uc778", "ar": "Syscoin", "th": "Syscoin", "id": "Syscoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/119/thumb/Syscoin.png?1560401261", "small": "https://assets.coingecko.com/coins/images/119/small/Syscoin.png?1560401261"}, "market_data": {"current_price": {"aed": 0.12421093988171507, "ars": 2.3931471517610476, "aud": 0.048644331081231514, "bch": 0.00014253296543642683, "bdt": 2.871166750440373, "bhd": 0.012751545447982583, "bmd": 0.03381753856186156, "bnb": 0.0018495000788829406, "brl": 0.18019333865548467, "btc": 3.639740678878318e-06, "cad": 0.045979272319786824, "chf": 0.03180360268788702, "clp": 26.79700203416891, "cny": 0.2367870232562984, "czk": 0.7973194884268655, "dkk": 0.2226678965488743, "eos": 0.012935657610937084, "eth": 0.00014014722243011399, "eur": 0.02989724040407776, "gbp": 0.026781326218526417, "hkd": 0.2621451045469103, "huf": 10.571972690468675, "idr": 487.4270752848446, "ils": 0.1169028345283424, "inr": 2.54168352057585, "jpy": 3.6152639599558105, "krw": 40.59863173246153, "kwd": 0.010402207226551477, "lkr": 6.284376463565384, "ltc": 0.0007562901628507944, "mmk": 46.1225913863874, "mxn": 0.7602284459497562, "myr": 0.14429943704346315, "ngn": 13.104677789826486, "nok": 0.31896959384840884, "nzd": 0.05144445709169204, "php": 1.6709875824159202, "pkr": 5.620376601396776, "pln": 0.1335386624555404, "rub": 2.3919990463268745, "sar": 0.12684282363783025, "sek": 0.3103503148899161, "sgd": 0.04704695964726189, "thb": 1.0600444961250355, "try": 0.23210992240303865, "twd": 0.9968733679090152, "uah": 0.9122232329806624, "usd": 0.03381753856186156, "vef": 8403.240423631092, "vnd": 782.7244120584811, "xag": 0.0017997166469021165, "xau": 1.8786319021885338e-05, "xdr": 0.02441690537489673, "xlm": 0.3561146774107677, "xrp": 0.1684633510853928, "zar": 0.5685201677788786, "bits": 3.639740678878318, "link": 0.004629986019870403, "sats": 363.97406788783184}, "market_cap": {"aed": 73322263.51794854, "ars": 1412685277.687705, "aud": 28714962.350248195, "bch": 84137.83569850266, "bdt": 1694862346.9095204, "bhd": 7527293.3003199315, "bmd": 19962641.586340774, "bnb": 1091768.022119962, "brl": 106368919.46601667, "btc": 2148.554913503227, "cad": 27141766.4547534, "chf": 18773806.391949423, "clp": 15818388030.163946, "cny": 139776420.12339944, "czk": 470661196.94531465, "dkk": 131441837.59732798, "eos": 7635975.518986538, "eth": 82729.52112040228, "eur": 17648472.36044422, "gbp": 15809134.527320381, "hkd": 154745406.91691706, "huf": 6240681925.869635, "idr": 287730343992.66656, "ils": 69008256.82057385, "inr": 1500366948.7756908, "jpy": 2134106198.787761, "krw": 23965550676.860302, "kwd": 6140468.626675242, "lkr": 3709695036.0921144, "ltc": 446441.4058003702, "mmk": 27226368329.42274, "mxn": 448766191.61605877, "myr": 85180591.64891604, "ngn": 7735748873.15471, "nok": 188289152.60312665, "nzd": 30367889.036238696, "php": 986391311.1823727, "pkr": 3317733000.2507358, "pln": 78828459.13350087, "rub": 1412007546.00585, "sar": 74875876.06204695, "sek": 183201154.36616665, "sgd": 27772026.974917337, "thb": 625748923.2401545, "try": 137015506.94144216, "twd": 588458728.7195109, "uah": 538489382.1711538, "usd": 19962641.586340774, "vef": 4960469740691.964, "vnd": 462045659243.35095, "xag": 1062380.643504182, "xau": 11089.64665404403, "xdr": 14413406.515528183, "xlm": 210216058.62242833, "xrp": 99444656.26910684, "zar": 335599952.7646088, "bits": 2148554913.503227, "link": 2733101.088814238, "sats": 214855491350.3227}, "total_volume": {"aed": 2402787.1668335483, "ars": 46294016.21203082, "aud": 940995.8138348443, "bch": 2757.2159145362975, "bdt": 55541022.62141302, "bhd": 246671.10472624048, "bmd": 654180.2819278179, "bnb": 35777.485129969245, "brl": 3485733.5600439045, "btc": 70.40863069017213, "cad": 889441.8283569574, "chf": 615221.8835981706, "clp": 518372155.13085365, "cny": 4580504.916030387, "czk": 15423673.925040344, "dkk": 4307378.760702989, "eos": 250232.64562454072, "eth": 2711.0651271387433, "eur": 578344.4327453356, "gbp": 518068.9157487888, "hkd": 5071042.000433962, "huf": 204508558.85128275, "idr": 9428988480.217134, "ils": 2261416.191187816, "inr": 49167364.414179005, "jpy": 69935143.03949338, "krw": 785356518.6017886, "kwd": 201224.54636043267, "lkr": 121567545.7619539, "ltc": 14629.985888769943, "mmk": 892214250.9335707, "mxn": 14706169.64600223, "myr": 2791387.262985997, "ngn": 253502241.01733068, "nok": 6170278.136844603, "nzd": 995162.5953587462, "php": 32324266.46791871, "pkr": 108722861.15432346, "pln": 2583226.443096286, "rub": 46271806.79145941, "sar": 2453699.401454858, "sek": 6003543.283307974, "sgd": 910095.608217982, "thb": 20505933.80894882, "try": 4490029.166318641, "twd": 19283925.696487907, "uah": 17646418.903042287, "usd": 654180.2819278179, "vef": 162555715856.79642, "vnd": 15141340805.024462, "xag": 34814.45408295868, "xau": 363.4102302165415, "xdr": 472330.5929772414, "xlm": 6888827.808714, "xrp": 3258823.8882599715, "zar": 10997686.391601302, "bits": 70408630.69017214, "link": 89564.34112613152, "sats": 7040863069.017213}}, "community_data": {"facebook_likes": null, "twitter_followers": 57113, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4453, "reddit_accounts_active_48h": "265.307692307692"}, "developer_data": {"forks": 51, "stars": 112, "subscribers": 52, "total_issues": 241, "closed_issues": 239, "pull_requests_merged": 141, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 880000, "bing_matches": null}}, "QSP_20200910": {"id": "quantstamp", "symbol": "qsp", "name": "Quantstamp", "localization": {"en": "Quantstamp", "de": "Quantstamp", "es": "Quantstamp", "fr": "Quantstamp", "it": "Quantstamp", "pl": "Quantstamp", "ro": "Quantstamp", "hu": "Quantstamp", "nl": "Quantstamp", "pt": "Quantstamp", "sv": "Quantstamp", "vi": "Quantstamp", "tr": "Quantstamp", "ru": "Quantstamp", "ja": "\u30af\u30aa\u30f3\u30c8\u30b9\u30bf\u30f3\u30d7", "zh": "Quantstamp", "zh-tw": "Quantstamp", "ko": "\ud000\ud2b8\uc2a4\ud0ec\ud504", "ar": "Quantstamp", "th": "Quantstamp", "id": "Quantstamp"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1219/thumb/0_E0kZjb4dG4hUnoDD_.png?1604815917", "small": "https://assets.coingecko.com/coins/images/1219/small/0_E0kZjb4dG4hUnoDD_.png?1604815917"}, "market_data": {"current_price": {"aed": 0.14013599350543762, "ars": 2.84001999896622, "aud": 0.05238744418356074, "bch": 0.00016716938475134022, "bdt": 3.2358964030820867, "bhd": 0.014383235523774133, "bmd": 0.038153235196463985, "bnb": 0.001641751119370433, "brl": 0.20230749147601443, "btc": 3.7091269800544623e-06, "cad": 0.04988218830085537, "chf": 0.03485103453697473, "clp": 29.43524045037506, "cny": 0.26106351183180393, "czk": 0.8533657809922689, "dkk": 0.23978144647304062, "dot": 0.0079525241086686, "eos": 0.013115096302241646, "eth": 0.00010750254807981355, "eur": 0.032227656238101074, "gbp": 0.028802831080690497, "hkd": 0.29570397866372927, "huf": 11.62059608507807, "idr": 563.0058767648349, "ils": 0.12868857312356072, "inr": 2.7962714773684905, "jpy": 4.055231062561734, "krw": 45.303914308065586, "kwd": 0.011676912091583369, "lkr": 7.060049382570857, "ltc": 0.0007947216817511249, "mmk": 50.77880088840235, "mxn": 0.8224636062981272, "myr": 0.15831684944772664, "ngn": 14.753570893192764, "nok": 0.3404325042607166, "nzd": 0.056832868382476774, "php": 1.8532944298055836, "pkr": 6.324157221982359, "pln": 0.14370507604512592, "rub": 2.8749340244945047, "sar": 0.14309561626609746, "sek": 0.33338781460757105, "sgd": 0.05208698745638837, "thb": 1.1977692739722339, "try": 0.28372653353850347, "twd": 1.119377729275819, "uah": 1.057044080055656, "usd": 0.038153235196463985, "vef": 9480.607457835646, "vnd": 884.898360141737, "xag": 0.0014201897012208853, "xau": 1.9718736546588433e-05, "xdr": 0.02696380699098572, "xlm": 0.49023829515138095, "xrp": 0.15898675915175584, "yfi": 1.5878963089568224e-06, "zar": 0.6342105457649636, "bits": 3.7091269800544624, "link": 0.002967958138742438, "sats": 370.91269800544626}, "market_cap": {"aed": 100292840.29745543, "ars": 2032475389.68023, "aud": 37483943.15681002, "bch": 119487.99945798295, "bdt": 2315873552.9343467, "bhd": 10293826.07039207, "bmd": 27305592.436833348, "bnb": 1171720.3007095533, "brl": 144787876.59071654, "btc": 2650.047984123734, "cad": 35694471.156462304, "chf": 24941310.41009772, "clp": 21066279473.870422, "cny": 186838516.2490323, "czk": 610695008.6626735, "dkk": 171594841.60406086, "dot": 5681814.237204456, "eos": 9364185.95978562, "eth": 76718.5018426038, "eur": 23064733.56987633, "gbp": 20612254.479569715, "hkd": 211629017.87210152, "huf": 8316464288.486326, "idr": 402921207287.1186, "ils": 92100124.95389266, "inr": 2001241805.8545804, "jpy": 2902001956.8210955, "krw": 32423206407.51124, "kwd": 8356958.482070167, "lkr": 5052751884.125008, "ltc": 567007.0294364438, "mmk": 36341485442.84744, "mxn": 588448541.7813525, "myr": 113304555.81664006, "ngn": 10558868513.325583, "nok": 243687776.7011917, "nzd": 40665099.28688598, "php": 1326313858.7944958, "pkr": 4526086941.793902, "pln": 102828765.278249, "rub": 2057539192.9779997, "sar": 102410989.7139654, "sek": 238577944.66052493, "sgd": 37272679.78812642, "thb": 856303378.8190951, "try": 203068960.3934861, "twd": 801118749.1986626, "uah": 756507664.1375434, "usd": 27305592.436833348, "vef": 6785102284622.394, "vnd": 633370680928.9098, "xag": 1016601.4053313746, "xau": 14112.622395052957, "xdr": 19297517.509328634, "xlm": 349644946.4765219, "xrp": 113741415.98047836, "yfi": 1134.499151734826, "zar": 453977209.51393527, "bits": 2650047984.123734, "link": 2121207.768291663, "sats": 265004798412.37338}, "total_volume": {"aed": 1960265.0488686988, "ars": 39727066.56441964, "aud": 732811.5587135662, "bch": 2338.416376633608, "bdt": 45264706.53291241, "bhd": 201197.08849680415, "bmd": 533699.0988970537, "bnb": 22965.315746079512, "brl": 2829938.9382025194, "btc": 51.88440028103517, "cad": 697767.2747826896, "chf": 487506.90818841354, "clp": 411749127.51931524, "cny": 3651836.084203078, "czk": 11937141.005210597, "dkk": 3354136.058342811, "dot": 111242.33446779584, "eos": 183457.97000992353, "eth": 1503.7784540130183, "eur": 450810.2918473511, "gbp": 402902.7922348573, "hkd": 4136397.5070646773, "huf": 162552444.82721046, "idr": 7875498042.456592, "ils": 1800135.0386338213, "inr": 39115098.89157206, "jpy": 56725809.82356962, "krw": 633724980.8101412, "kwd": 163340.21031473967, "lkr": 98758125.60178325, "ltc": 11116.80944592179, "mmk": 710309365.3175948, "mxn": 11504871.953758016, "myr": 2214584.4108733153, "ngn": 206377452.67642552, "nok": 4762073.774966549, "nzd": 794995.5092215568, "php": 25924448.13879999, "pkr": 88464241.45358166, "pln": 2010190.464774121, "rub": 40215454.60982034, "sar": 2001665.1553683372, "sek": 4663530.505947999, "sgd": 728608.678309749, "thb": 16754762.182390358, "try": 3968853.348947927, "twd": 15658197.328841524, "uah": 14786255.218337372, "usd": 533699.0988970537, "vef": 132617630751.07481, "vnd": 12378228346.593666, "xag": 19866.047004965625, "xau": 275.83170528296364, "xdr": 377177.96196892014, "xlm": 6857602.9010344185, "xrp": 2223955.312280279, "yfi": 22.211978220676702, "zar": 8871530.685218003, "bits": 51884400.28103517, "link": 41516.704312346745, "sats": 5188440028.103517}}, "community_data": {"facebook_likes": null, "twitter_followers": 57106, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 8228, "reddit_accounts_active_48h": "79.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 237034, "bing_matches": null}}, "GVT_20200917": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 5.634097552234046, "ars": 114.86404219082385, "aud": 2.1067547461397953, "bch": 0.006914201947037671, "bdt": 130.0792492386915, "bhd": 0.5783399009793333, "bmd": 1.5339400973912674, "bnb": 0.04948096650558098, "brl": 8.157033255897556, "btc": 0.0001485338016593515, "cad": 2.0219907502980554, "chf": 1.3943546164088605, "clp": 1180.9805055245815, "cny": 10.483560201610894, "czk": 34.424531805585225, "dkk": 9.639267300485969, "dot": 0.290693279887724, "eos": 0.5631008833527771, "eth": 0.004195872702885344, "eur": 1.295502914712674, "gbp": 1.1980164197031669, "hkd": 11.888633991420336, "huf": 462.98869168509873, "idr": 22814.096340940738, "ils": 5.306165702453353, "inr": 112.71214818943814, "jpy": 162.82620739798637, "krw": 1822.2748067603216, "kwd": 0.4694301540645537, "lkr": 283.01931701691717, "ltc": 0.03191144179198441, "mmk": 2044.5183004102114, "mxn": 32.62959026668278, "myr": 6.371220194514648, "ngn": 589.1921252760699, "nok": 13.861526387081085, "nzd": 2.29647092344506, "php": 74.51083957852194, "pkr": 254.75534941227124, "pln": 5.764221690695749, "rub": 114.89211329460626, "sar": 5.75380930531465, "sek": 13.467073691036926, "sgd": 2.09735629516309, "thb": 48.01232504834685, "try": 11.469576896214008, "twd": 44.93984456721211, "uah": 42.81449846709198, "usd": 1.5339400973912674, "vef": 381165.15813968686, "vnd": 35606.88495433817, "xag": 0.057258823919015565, "xau": 0.0007895803257311825, "xdr": 1.0857550136755862, "xlm": 19.14794968197386, "xrp": 6.343419162698665, "yfi": 4.1990962316912486e-05, "zar": 25.658613299548982, "bits": 148.5338016593515, "link": 0.12763370890249265, "sats": 14853.380165935148}, "market_cap": {"aed": 25160714.266689267, "ars": 512985084.01625097, "aud": 9412338.319959648, "bch": 30894.128099694517, "bdt": 580907020.4725869, "bhd": 2582746.3693447094, "bmd": 6850259.182568751, "bnb": 221731.0796762894, "brl": 36427623.255145766, "btc": 663.6298581395149, "cad": 9033854.649863556, "chf": 6227132.206285552, "clp": 5274014544.659669, "cny": 46817411.357347734, "czk": 153758862.53418332, "dkk": 43049741.40589825, "dot": 1286459.9455654945, "eos": 2518839.769698629, "eth": 18752.497756547717, "eur": 5786174.172444414, "gbp": 5351895.141306292, "hkd": 53091837.75302978, "huf": 2068048727.383071, "idr": 101895924931.03082, "ils": 23696238.45760303, "inr": 503349139.53605366, "jpy": 727117335.804169, "krw": 8137902353.164394, "kwd": 2096377.9673823297, "lkr": 1263905727.8290465, "ltc": 142810.06256955612, "mmk": 9130395825.191322, "mxn": 145769494.30292267, "myr": 28452551.514799256, "ngn": 2631210158.293482, "nok": 61926308.759125434, "nzd": 10261866.362226706, "php": 332778124.30667996, "pkr": 1137684694.8507538, "pln": 25743274.008093305, "rub": 513262519.5131453, "sar": 25695322.193815347, "sek": 60145426.32865548, "sgd": 9368277.452897362, "thb": 214347802.04335493, "try": 51220757.95990291, "twd": 200692050.12197542, "uah": 191200694.0623451, "usd": 6850259.182568751, "vef": 1702204753016.2646, "vnd": 159026454207.33032, "xag": 255857.9339974522, "xau": 3526.6504323700387, "xdr": 4848757.30486498, "xlm": 85524890.36234379, "xrp": 28339351.74847926, "yfi": 187.46184168116324, "zar": 114576099.28710382, "bits": 663629858.1395149, "link": 569987.1094739595, "sats": 66362985813.95149}, "total_volume": {"aed": 1165129.217448225, "ars": 23753839.962829065, "aud": 435676.0751776251, "bch": 1429.8543163557108, "bdt": 26900338.956969716, "bhd": 119600.47017289247, "bmd": 317218.225051368, "bnb": 10232.64493536666, "brl": 1686871.3553556625, "btc": 30.716733334400196, "cad": 418146.9132795124, "chf": 288352.0010081444, "clp": 244226316.54254052, "cny": 2167996.237291073, "czk": 7118980.001998531, "dkk": 1993396.7884770012, "dot": 60115.259022936414, "eos": 116449.0471601921, "eth": 867.7048690586972, "eur": 267909.5069311589, "gbp": 247749.33707446928, "hkd": 2458564.959255879, "huf": 95745884.23953289, "idr": 4717946391.604203, "ils": 1097313.0364238436, "inr": 23308829.106942855, "jpy": 33672397.37097782, "krw": 376845732.59374577, "kwd": 97077.97619424542, "lkr": 58528286.43833065, "ltc": 6599.27394902779, "mmk": 422805602.0206745, "mxn": 6747786.778736456, "myr": 1317565.897750861, "ngn": 121844706.00395569, "nok": 2866558.3515879456, "nzd": 474909.3080337554, "php": 15408813.107098138, "pkr": 52683308.75523655, "pln": 1192038.839479333, "rub": 23759645.056347534, "sar": 1189885.562167683, "sek": 2784985.6850159876, "sgd": 433732.47911273764, "thb": 9928930.444107858, "try": 2371904.1123540937, "twd": 9293542.656548165, "uah": 8854021.896482928, "usd": 317218.225051368, "vef": 78824808818.88956, "vnd": 7363490180.635342, "xag": 11841.102871624, "xau": 163.28490916294152, "xdr": 224533.7212740848, "xlm": 3959788.6656843275, "xrp": 1311816.6550116818, "yfi": 8.683714935820081, "zar": 5306191.409954527, "bits": 30716733.334400196, "link": 26394.602151432227, "sats": 3071673333.4400196}}, "community_data": {"facebook_likes": null, "twitter_followers": 20781, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 5497, "reddit_accounts_active_48h": "32.2307692307692"}, "developer_data": {"forks": 2, "stars": 16, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 155510, "bing_matches": null}}, "ARDR_20201102": {"id": "ardor", "symbol": "ardr", "name": "Ardor", "localization": {"en": "Ardor", "de": "Ardor", "es": "Ardor", "fr": "Ardor", "it": "Ardor", "pl": "Ardor", "ro": "Ardor", "hu": "Ardor", "nl": "Ardor", "pt": "Ardor", "sv": "Ardor", "vi": "Ardor", "tr": "Ardor", "ru": "Ardor", "ja": "\u30a2\u30fc\u30c0\u30fc", "zh": "\u963f\u6735\u5e01", "zh-tw": "\u963f\u6735\u5e63", "ko": "\uc544\ub354", "ar": "Ardor", "th": "Ardor", "id": "Ardor"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/525/thumb/Ardor_Vertical_1.png?1606797362", "small": "https://assets.coingecko.com/coins/images/525/small/Ardor_Vertical_1.png?1606797362"}, "market_data": {"current_price": {"aed": 0.17950151050771188, "ars": 3.826521446664901, "aud": 0.06942894807002341, "bch": 0.00018303758105199001, "bdt": 4.14832032157305, "bhd": 0.018422410279113354, "bmd": 0.048867883727461495, "bnb": 0.0016386130190539693, "brl": 0.28242216042611873, "btc": 3.634205073558173e-06, "cad": 0.06508263849130311, "chf": 0.04473283001009489, "clp": 37.72604103153342, "cny": 0.32814783922990426, "czk": 1.1450722515018779, "dkk": 0.3116500416835135, "dot": 0.012050896979589342, "eos": 0.018560938437645443, "eth": 0.0001265346841604895, "eur": 0.04185548901622214, "gbp": 0.03779618051863299, "hkd": 0.3788338525714473, "huf": 15.398911748968606, "idr": 724.6129799107985, "ils": 0.16722296604234976, "inr": 3.630028572985164, "jpy": 5.108746300636279, "krw": 55.253914681099744, "kwd": 0.014946242238044135, "lkr": 9.006881529584799, "ltc": 0.0008919681207955364, "mmk": 62.88818854425089, "mxn": 1.0441097376844317, "myr": 0.20314379265505783, "ngn": 18.618663700162877, "nok": 0.46585797538484514, "nzd": 0.07371832656420148, "php": 2.3673656306056627, "pkr": 7.849271049683439, "pln": 0.1936057591091318, "rub": 3.854131800970933, "sar": 0.18327919339137963, "sek": 0.4360388416022308, "sgd": 0.06676232539078344, "thb": 1.5261195748667604, "try": 0.4058868686635514, "twd": 1.3871148796039974, "uah": 1.3899929047482424, "usd": 0.048867883727461495, "vef": 12143.065208744256, "vnd": 1135.5214484847293, "xag": 0.0020963906742069347, "xau": 2.6155068728611984e-05, "xdr": 0.0345785724503657, "xlm": 0.6313870606354565, "xrp": 0.2017105300231652, "yfi": 4.5141594114287115e-06, "zar": 0.8010765575791599, "bits": 3.634205073558173, "link": 0.004334486011323858, "sats": 363.4205073558173}, "market_cap": {"aed": 179420841.42915732, "ars": 3824538016.503381, "aud": 69406147.77401668, "bch": 182612.51492682603, "bdt": 4146456041.0054817, "bhd": 18414131.135067362, "bmd": 48845922.20112095, "bnb": 1633223.8829892676, "brl": 282304958.51545596, "btc": 3626.246528630285, "cad": 65053243.417063735, "chf": 44714436.409505814, "clp": 37708989611.86863, "cny": 328000367.580527, "czk": 1144455072.5800436, "dkk": 311438083.04794836, "dot": 12008049.30910132, "eos": 18520056.37246364, "eth": 126273.62190836133, "eur": 41830182.39537408, "gbp": 37775726.623069696, "hkd": 378651146.60697854, "huf": 15389106103.907267, "idr": 716029540482.7448, "ils": 167147815.01690376, "inr": 3633162184.4614162, "jpy": 5107329625.349187, "krw": 55222786310.10896, "kwd": 14939525.305212827, "lkr": 9002833781.843931, "ltc": 889556.8031788674, "mmk": 62859926207.029015, "mxn": 1043532070.4241987, "myr": 203052498.5900596, "ngn": 18610296358.627087, "nok": 465735952.4654803, "nzd": 73683536.33524665, "php": 2366058762.370358, "pkr": 7845743539.184427, "pln": 193498968.8963533, "rub": 3852321577.0513463, "sar": 183196826.5989928, "sek": 435725310.9406439, "sgd": 66737206.58494758, "thb": 1525549150.2940683, "try": 405581173.51043546, "twd": 1386257041.2522519, "uah": 1389368233.4209309, "usd": 48845922.20112095, "vef": 12137608040843.855, "vnd": 1134875382085.0176, "xag": 2095944.3295045567, "xau": 26144.779858149985, "xdr": 34563032.62805773, "xlm": 629859780.9699671, "xrp": 201266628.14730713, "yfi": 4472.650837516647, "zar": 800316012.3042642, "bits": 3626246528.630285, "link": 4319238.363872112, "sats": 362624652863.0285}, "total_volume": {"aed": 10003432.78943265, "ars": 213248066.83111668, "aud": 3869203.182162916, "bch": 10200.494329072782, "bdt": 231181583.97954425, "bhd": 1026661.7953532272, "bmd": 2723356.416593878, "bnb": 91318.20204538874, "brl": 15739093.738421027, "btc": 202.53047505576527, "cad": 3626987.8624710636, "chf": 2492914.166690954, "clp": 2102433092.6402388, "cny": 18287338.33742791, "czk": 63813687.55362776, "dkk": 17367933.21118583, "dot": 671583.9752363517, "eos": 1034381.825783055, "eth": 7051.646556908296, "eur": 2332562.9408819163, "gbp": 2106341.893424707, "hkd": 21112017.229501236, "huf": 858165361.8151262, "idr": 40381928945.25399, "ils": 9319162.256199265, "inr": 202297723.01563504, "jpy": 284705126.5035572, "krw": 3079243290.4996667, "kwd": 832938.5600152396, "lkr": 501944155.0588676, "ltc": 49708.45716817155, "mmk": 3504693445.599469, "mxn": 58187151.49625237, "myr": 11320992.623780772, "ngn": 1037598794.7222701, "nok": 25961781.22959725, "nzd": 4108245.791629451, "php": 131930828.36347026, "pkr": 437431725.05600905, "pln": 10789447.918389974, "rub": 214786763.20649308, "sar": 10213959.133861028, "sek": 24299991.867548022, "sgd": 3720595.0692222295, "thb": 85049059.21201861, "try": 22619653.724945527, "twd": 77302471.88501738, "uah": 77462861.23781626, "usd": 2723356.416593878, "vef": 676720414941.3123, "vnd": 63281431218.86531, "xag": 116829.67541892354, "xau": 1457.5948212893777, "xdr": 1927027.936886914, "xlm": 35186545.26816849, "xrp": 11241118.38557971, "yfi": 251.56941657642426, "zar": 44643164.730298564, "bits": 202530475.05576527, "link": 241556.40455823, "sats": 20253047505.576527}}, "community_data": {"facebook_likes": null, "twitter_followers": 64137, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6304, "reddit_accounts_active_48h": "124.916666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1474727, "bing_matches": null}}, "APPC_20201104": {"id": "appcoins", "symbol": "appc", "name": "AppCoins", "localization": {"en": "AppCoins", "de": "AppCoins", "es": "AppCoins", "fr": "AppCoins", "it": "AppCoins", "pl": "AppCoins", "ro": "AppCoins", "hu": "AppCoins", "nl": "AppCoins", "pt": "AppCoins", "sv": "AppCoins", "vi": "AppCoins", "tr": "AppCoins", "ru": "AppCoins", "ja": "AppCoins", "zh": "AppCoins", "zh-tw": "AppCoins", "ko": "\uc571\ucf54\uc778", "ar": "AppCoins", "th": "AppCoins", "id": "AppCoins"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1876/thumb/appcoins.png?1547036186", "small": "https://assets.coingecko.com/coins/images/1876/small/appcoins.png?1547036186"}, "market_data": {"current_price": {"aed": 0.11489750493339143, "ars": 2.450291740112317, "aud": 0.04450371699527025, "bch": 0.00011958677590202857, "bdt": 2.654609596832376, "bhd": 0.011796592210162351, "bmd": 0.03128165122063473, "bnb": 0.0011037439398978728, "brl": 0.1796473947949835, "btc": 2.269955745224119e-06, "cad": 0.041670287591007577, "chf": 0.028715930187518224, "clp": 24.190096478203976, "cny": 0.20931178464751132, "czk": 0.7313962871896624, "dkk": 0.19994293010693137, "dot": 0.007486559153563543, "eos": 0.012397669745989224, "eth": 8.108701426179749e-05, "eur": 0.026787979459488104, "gbp": 0.024165044286289232, "hkd": 0.24254071865663146, "huf": 9.841520290523913, "idr": 456.4134149745869, "ils": 0.10657251909404393, "inr": 2.33404465090031, "jpy": 3.2737812084955418, "krw": 35.555037593885764, "kwd": 0.009559046980001583, "lkr": 5.765077155999414, "ltc": 0.0005616318856097834, "mmk": 40.25311936749681, "mxn": 0.6627455754208568, "myr": 0.12991269751929616, "ngn": 11.902668289451535, "nok": 0.2976422524239855, "nzd": 0.04729648025294607, "php": 1.5150880501872341, "pkr": 5.019140938350848, "pln": 0.12375496703981667, "rub": 2.4828872206842165, "sar": 0.11731410633513926, "sek": 0.27674564018383424, "sgd": 0.04273386373250916, "thb": 0.9727335381605314, "try": 0.26110168640839504, "twd": 0.8946114305984461, "uah": 0.8902795788190624, "usd": 0.03128165122063473, "vef": 7773.103757220844, "vnd": 724.8563060685345, "xag": 0.001322972665101941, "xau": 1.664903322915843e-05, "xdr": 0.022154603843990164, "xlm": 0.4023504280216249, "xrp": 0.1307797695672771, "yfi": 2.983708269358269e-06, "zar": 0.508297271174912, "bits": 2.2699557452241192, "link": 0.0027869143483030896, "sats": 226.9955745224119}, "market_cap": {"aed": 12679204.53233243, "ars": 270395341.9595976, "aud": 4911087.760862968, "bch": 13172.52354856472, "bdt": 292942288.4443185, "bhd": 1301781.1440194268, "bmd": 3452002.3229873255, "bnb": 121745.75101746281, "brl": 19824504.14068389, "btc": 250.17287492367316, "cad": 4598412.294451414, "chf": 3168869.092455909, "clp": 2669432909.63378, "cny": 23098037.943572752, "czk": 80711266.31376645, "dkk": 22064163.247838065, "dot": 825310.3077417819, "eos": 1365518.1274665964, "eth": 8942.634614601573, "eur": 2956115.285285559, "gbp": 2666668.3425053796, "hkd": 26764927.411166146, "huf": 1086034450.8350403, "idr": 50366272471.43388, "ils": 11760523.154115817, "inr": 257567207.69104344, "jpy": 361269303.1122393, "krw": 3923580360.330612, "kwd": 1054862.8698584663, "lkr": 636189553.8808229, "ltc": 61899.909487158446, "mmk": 4442024514.115963, "mxn": 73135502.01573862, "myr": 14336165.647366341, "ngn": 1313486883.896675, "nok": 32845508.683026977, "nzd": 5219275.624254615, "php": 167193458.9350151, "pkr": 553873772.7233148, "pln": 13656645.894090945, "rub": 273992328.38015014, "sar": 12945882.067790167, "sek": 30539519.3512365, "sgd": 4715780.37343297, "thb": 107343388.29156266, "try": 28813172.989510693, "twd": 98722433.63418518, "uah": 98244403.80450033, "usd": 3452002.3229873255, "vef": 857779918249.5732, "vnd": 79989564321.01715, "xag": 145993.08332445347, "xau": 1837.2591963635425, "xdr": 2444811.6052093096, "xlm": 44348096.2138174, "xrp": 14392780.969664086, "yfi": 330.33577566147386, "zar": 56091775.60634869, "bits": 250172874.92367315, "link": 307382.4064953233, "sats": 25017287492.367317}, "total_volume": {"aed": 283353.4634444712, "ars": 6042765.257719957, "aud": 109752.4472274037, "bch": 294.91786748234153, "bdt": 6546641.929182427, "bhd": 29092.061324824692, "bmd": 77144.96690565506, "bnb": 2721.9883347964446, "brl": 443035.8304424872, "btc": 5.598031242260714, "cad": 102764.81041502322, "chf": 70817.5367200531, "clp": 59656192.03070263, "cny": 516192.40255911957, "czk": 1803726.4712211252, "dkk": 493087.48497087625, "dot": 18462.911502507617, "eos": 30574.403362399393, "eth": 199.97202154016657, "eur": 66062.93811972387, "gbp": 59594.40978965192, "hkd": 598139.6436546539, "huf": 24270578.038188186, "idr": 1125579898.1060653, "ils": 262822.8734018692, "inr": 5756083.528968265, "jpy": 8073606.511511364, "krw": 87683740.83463688, "kwd": 23573.958987030124, "lkr": 14217493.931865996, "ltc": 1385.0634969022021, "mmk": 99269873.5611027, "mxn": 1634424.1268499729, "myr": 320383.0475591857, "ngn": 29353659.907601796, "nok": 734027.8027851203, "nzd": 116639.79558280674, "php": 3736420.9666063786, "pkr": 12377909.940012366, "pln": 305197.2151137414, "rub": 6123150.313235645, "sar": 289313.1435728341, "sek": 682493.8077176417, "sgd": 105387.7392898155, "thb": 2398898.193708979, "try": 643913.6097681242, "twd": 2206238.0505480706, "uah": 2195555.092675939, "usd": 77144.96690565506, "vef": 19169570937.146248, "vnd": 1787597954.743702, "xag": 3262.6373124143734, "xau": 41.058865736196815, "xdr": 54636.37991159215, "xlm": 992252.9419971772, "xrp": 322521.3696053757, "yfi": 7.35824570360076, "zar": 1253532.8102231715, "bits": 5598031.242260714, "link": 6872.924119392908, "sats": 559803124.2260715}}, "community_data": {"facebook_likes": null, "twitter_followers": 24334, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3156, "reddit_accounts_active_48h": "295.0"}, "developer_data": {"forks": 5, "stars": 11, "subscribers": 15, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 29, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 577884, "bing_matches": null}}, "BRD_20201109": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.18941136378525497, "ars": 4.0797390643939355, "aud": 0.07098568588149011, "bch": 0.0002065645163223898, "bdt": 4.3737987586219145, "bhd": 0.01944778838509597, "bmd": 0.051568684000742354, "bnb": 0.001864126399057227, "brl": 0.2850137219552871, "btc": 3.319816690511826e-06, "cad": 0.067440854543279, "chf": 0.04658106402155853, "clp": 38.99108197296117, "cny": 0.3406730402457037, "czk": 1.1605930960294393, "dkk": 0.3243493858747414, "dot": 0.012192109165221149, "eos": 0.021116786558248005, "eth": 0.00012413689952693865, "eur": 0.043554240114135064, "gbp": 0.03924082910957688, "hkd": 0.3998522306312771, "huf": 15.633784812105217, "idr": 741.6758579465469, "ils": 0.1740675144103058, "inr": 3.823172794418194, "jpy": 5.341845269584897, "krw": 57.9410557284328, "kwd": 0.015770373960319037, "lkr": 9.514261406980257, "ltc": 0.000875471677200903, "mmk": 66.47993307110973, "mxn": 1.0698088000055979, "myr": 0.21380376386707786, "ngn": 19.77354946369525, "nok": 0.4727899459082476, "nzd": 0.07620969670813316, "php": 2.49116291747346, "pkr": 8.227338236732113, "pln": 0.1972137056745672, "rub": 3.9699841965867484, "sar": 0.19346007273483717, "sek": 0.4481584218387116, "sgd": 0.06965067579007862, "thb": 1.5857370330228286, "try": 0.43454109200410757, "twd": 1.4712700251463804, "uah": 1.4650811126733985, "usd": 0.051568684000742354, "vef": 12814.180700815656, "vnd": 1192.3167641573334, "xag": 0.0020526089567551487, "xau": 2.6513523192141695e-05, "xdr": 0.03649438413706546, "xlm": 0.6425164618763514, "xrp": 0.21019992566964632, "yfi": 6.019902310601036e-06, "zar": 0.8106322263830975, "bits": 3.3198166905118263, "link": 0.00467875787552863, "sats": 331.9816690511826}, "market_cap": {"aed": 13424641.23749147, "ars": 289046349.78156894, "aud": 5035263.85304205, "bch": 14611.91160545631, "bdt": 309995546.23372483, "bhd": 1378132.1537662104, "bmd": 3654960.6526481505, "bnb": 132153.070187086, "brl": 20195850.58227266, "btc": 235.02782517224523, "cad": 4780469.236024633, "chf": 3306971.8489095205, "clp": 2763515749.4672823, "cny": 24145401.063524313, "czk": 82406566.69997108, "dkk": 23032100.048727643, "dot": 863405.8838965312, "eos": 1494300.5002051303, "eth": 8797.819069683685, "eur": 3092549.9272612766, "gbp": 2781454.2963504596, "hkd": 28338938.443143316, "huf": 1109969916.5524523, "idr": 52619685861.17628, "ils": 12337136.934981218, "inr": 270969608.83609563, "jpy": 378845809.0486137, "krw": 4106606227.47842, "kwd": 1117098.518914732, "lkr": 674328844.2462704, "ltc": 62046.32561017528, "mmk": 4711804155.446164, "mxn": 75910806.15485543, "myr": 15153466.865879271, "ngn": 1401461888.2257657, "nok": 33565915.94729888, "nzd": 5404747.48037889, "php": 176577446.62663707, "pkr": 583117411.544779, "pln": 14003524.87053983, "rub": 281037442.8361798, "sar": 13709640.449342372, "sek": 31820277.49990887, "sgd": 4936901.551957976, "thb": 112516136.21144731, "try": 30796332.963148184, "twd": 104265062.53809407, "uah": 103838481.11544147, "usd": 3654960.6526481505, "vef": 908212555060.1678, "vnd": 84653260929.11745, "xag": 145231.87176133363, "xau": 1877.1146919870425, "xdr": 2586560.8294693064, "xlm": 45517833.91367092, "xrp": 14883150.66147777, "yfi": 426.54878153983486, "zar": 57465484.35732599, "bits": 235027825.17224523, "link": 331017.4622351132, "sats": 23502782517.22452}, "total_volume": {"aed": 814175.9060910911, "ars": 17536567.938627187, "aud": 305128.657368122, "bch": 887.9079316155683, "bdt": 18800569.808464162, "bhd": 83595.41061039509, "bmd": 221665.5811096484, "bnb": 8012.860314661282, "brl": 1225118.18026097, "btc": 14.27007708533381, "cad": 289891.3653226444, "chf": 200226.5294358853, "clp": 167601345.87700462, "cny": 1464367.1619265575, "czk": 4988755.250366835, "dkk": 1394200.69555095, "dot": 52407.21215655051, "eos": 90769.52135398828, "eth": 533.596668287924, "eur": 187215.868152655, "gbp": 168674.87228631915, "hkd": 1718746.1494963742, "huf": 67201094.27784915, "idr": 3188059056.2355967, "ils": 748221.0857565628, "inr": 16433729.802860739, "jpy": 22961672.550405145, "krw": 249056923.5384151, "kwd": 67788.21635588499, "lkr": 40896608.56144827, "ltc": 3763.1741401231625, "mmk": 285760889.2273833, "mxn": 4598523.1914400365, "myr": 919025.4992806027, "ngn": 84995679.40122901, "nok": 2032265.514106241, "nzd": 327583.824065691, "php": 10708147.52093756, "pkr": 35364829.38375159, "pln": 847713.9085129806, "rub": 17064791.762377612, "sar": 831579.0925295904, "sek": 1926388.0576171167, "sgd": 299390.1788043543, "thb": 6816216.619121695, "try": 1867854.6009381409, "twd": 6324185.528732605, "uah": 6297582.7773468895, "usd": 221665.5811096484, "vef": 55081157615.917725, "vnd": 5125117957.051343, "xag": 8823.043791139782, "xau": 113.96714187171473, "xdr": 156869.406767582, "xlm": 2761827.020683453, "xrp": 903534.5690050247, "yfi": 25.876269091596065, "zar": 3484464.787288942, "bits": 14270077.08533381, "link": 20111.42233793416, "sats": 1427007708.533381}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 291, "stars": 230, "subscribers": 30, "total_issues": 43, "closed_issues": 31, "pull_requests_merged": 394, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BCPT_20201114": {"id": "blockmason-credit-protocol", "symbol": "bcpt", "name": "Blockmason Credit Protocol", "localization": {"en": "Blockmason Credit Protocol", "de": "Blockmason Credit Protocol", "es": "Blockmason Credit Protocol", "fr": "Blockmason Credit Protocol", "it": "Blockmason Credit Protocol", "pl": "Blockmason Credit Protocol", "ro": "Blockmason Credit Protocol", "hu": "Blockmason Credit Protocol", "nl": "Blockmason Credit Protocol", "pt": "Blockmason Credit Protocol", "sv": "Blockmason Credit Protocol", "vi": "Blockmason Credit Protocol", "tr": "Blockmason Credit Protocol", "ru": "Blockmason Credit Protocol", "ja": "Blockmason Credit Protocol", "zh": "Blockmason Credit Protocol", "zh-tw": "Blockmason Credit Protocol", "ko": "\ube14\ub85d\uba54\uc774\uc2a8", "ar": "Blockmason Credit Protocol", "th": "Blockmason Credit Protocol", "id": "Blockmason Credit Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1022/thumb/mason.jpg?1547034948", "small": "https://assets.coingecko.com/coins/images/1022/small/mason.jpg?1547034948"}, "market_data": {"current_price": {"aed": 0.06900772755950368, "ars": 1.4913917013565727, "aud": 0.025803216180294658, "bch": 7.308521129178115e-05, "bdt": 1.5923520734382692, "bhd": 0.007084179626746967, "bmd": 0.018787837614893454, "bnb": 0.0006674749719571733, "brl": 0.10174367460753174, "btc": 1.2300013603557173e-06, "cad": 0.024485061493233765, "chf": 0.017197860493220293, "clp": 14.17730517631345, "cny": 0.12429657609261217, "czk": 0.4201880906854936, "dkk": 0.11837652846015932, "dot": 0.004253567930071882, "eos": 0.0075278217032969325, "eth": 4.176898944679529e-05, "eur": 0.015898456068099028, "gbp": 0.014166442894057238, "hkd": 0.1456773231767366, "huf": 5.661714865248154, "idr": 264.05672852453097, "ils": 0.06355117588101018, "inr": 1.3956601535736401, "jpy": 1.9777768778822244, "krw": 20.988939694274244, "kwd": 0.00573780560758847, "lkr": 3.4649912914234933, "ltc": 0.0003244863574976315, "mmk": 24.345544251102904, "mxn": 0.38202813249372114, "myr": 0.07718043692198237, "ngn": 7.139378293659517, "nok": 0.16920459949620098, "nzd": 0.027514938489712395, "php": 0.9074601846614263, "pkr": 2.9863267888873137, "pln": 0.07154318382130888, "rub": 1.4367003060596248, "sar": 0.07046553224355614, "sek": 0.1618335483769122, "sgd": 0.02533539902368382, "thb": 0.5694777701882839, "try": 0.1536176269879199, "twd": 0.5373321557859532, "uah": 0.5282784659298743, "usd": 0.018787837614893454, "vef": 4668.545471731652, "vnd": 434.7947812002153, "xag": 0.0007763895409897381, "xau": 1.0008656854206048e-05, "xdr": 0.013181903839523938, "xlm": 0.23579634928712517, "xrp": 0.0740984345946658, "yfi": 1.0357148486067072e-06, "zar": 0.2933298492976031, "bits": 1.2300013603557174, "link": 0.001447425672516065, "sats": 123.00013603557173}, "market_cap": {"aed": 8026831.018695626, "ars": 173475487.3525101, "aud": 3000859.0767645375, "bch": 8489.833934534072, "bdt": 185218981.52257398, "bhd": 824016.5961261675, "bmd": 2185361.0178861013, "bnb": 77585.78255293034, "brl": 11834822.592362143, "btc": 142.87531711268616, "cad": 2848213.79502622, "chf": 1999920.023352356, "clp": 1649073762.8277981, "cny": 14458567.030436242, "czk": 48917118.83900139, "dkk": 13769085.629293133, "dot": 491803.14832418255, "eos": 875493.3715883379, "eth": 4843.645742955756, "eur": 1849298.3859165916, "gbp": 1647808.1000674882, "hkd": 16944799.81182079, "huf": 658427421.0789018, "idr": 30716357152.171253, "ils": 7392136.6182709625, "inr": 162340198.82197392, "jpy": 230073223.57630998, "krw": 2441878694.1655664, "kwd": 667409.2548624132, "lkr": 403040363.17564565, "ltc": 37721.566647154425, "mmk": 2831821546.2648816, "mxn": 44426813.848330446, "myr": 8977463.061476076, "ngn": 830437186.7967161, "nok": 19684573.80777852, "nzd": 3200120.294375393, "php": 105555607.67506227, "pkr": 347363133.79299533, "pln": 8322912.4708429035, "rub": 167080028.33366677, "sar": 8196399.736156462, "sek": 18826393.462859638, "sgd": 2946871.9181786887, "thb": 66291750.753346995, "try": 17870134.11545824, "twd": 62501325.111542284, "uah": 61448219.3052721, "usd": 2185361.0178861013, "vef": 543035206779.9074, "vnd": 50574397388.98092, "xag": 90285.7647032341, "xau": 1163.9232781261342, "xdr": 1533290.8120082286, "xlm": 27384928.442843903, "xrp": 8577624.5755723, "yfi": 119.78093968749863, "zar": 34109114.76716611, "bits": 142875317.11268616, "link": 167581.5064558393, "sats": 14287531711.268616}, "total_volume": {"aed": 421302.3456749637, "ars": 9105166.107084285, "aud": 157532.43712224197, "bch": 446.19598471529787, "bdt": 9721544.05608368, "bhd": 43249.96054040114, "bmd": 114702.51719982672, "bnb": 4075.03306238288, "brl": 621160.1263464596, "btc": 7.509339557, "cad": 149484.9085155023, "chf": 104995.47257424005, "clp": 86554537.25787953, "cny": 758848.913290614, "czk": 2565310.2122198916, "dkk": 722706.1501209491, "dot": 25968.659015497262, "eos": 45958.46079248445, "eth": 255.00583561795852, "eur": 97062.41707966561, "gbp": 86488.22142404802, "hkd": 889381.5248891859, "huf": 34565603.55816785, "idr": 1612105238.833083, "ils": 387989.29360461805, "inr": 8520710.90094426, "jpy": 12074619.283108594, "krw": 128140569.74710926, "kwd": 35030.14875282714, "lkr": 21154282.432518616, "ltc": 1981.0370285762274, "mmk": 148633135.19314286, "mxn": 2332338.0442378405, "myr": 471197.9406568886, "ngn": 43586956.53593419, "nok": 1033019.0137803599, "nzd": 167982.7540592839, "php": 5540178.14997362, "pkr": 18231965.108912453, "pln": 436781.67977611534, "rub": 8771267.079515632, "sar": 430202.4580920501, "sek": 988017.6605048346, "sgd": 154676.34444396634, "thb": 3476745.7047936083, "try": 937858.2497333541, "twd": 3280491.991915047, "uah": 3225217.8811991033, "usd": 114702.51719982672, "vef": 28502158058.09272, "vnd": 2654486210.2426376, "xag": 4739.9725558915015, "xau": 61.104324962691734, "xdr": 80477.46541522528, "xlm": 1439571.4591615712, "xrp": 452381.86228719377, "yfi": 6.323191772865473, "zar": 1790821.9548166296, "bits": 7509339.557, "link": 8836.747022213724, "sats": 750933955.6999999}}, "community_data": {"facebook_likes": null, "twitter_followers": 10399, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3199, "reddit_accounts_active_48h": "33.1666666666667"}, "developer_data": {"forks": 10, "stars": 27, "subscribers": 14, "total_issues": 14, "closed_issues": 14, "pull_requests_merged": 22, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2211613, "bing_matches": null}}, "PNT_20201204": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}, "market_data": {"current_price": {"aed": 1.3468020875723319, "ars": 29.80808290359713, "aud": 0.49822767490985426, "bch": 0.0011595259416323444, "bdt": 31.100121566091154, "bhd": 0.1382613412818219, "bmd": 0.36665634530445734, "bnb": 0.011742355173018212, "brl": 1.9552316269705465, "btc": 1.8677130619507487e-05, "cad": 0.47631702502714984, "chf": 0.3330599910405544, "clp": 279.35592414133384, "cny": 2.4121954301234845, "czk": 8.071004468197092, "dkk": 2.2860289817042285, "dot": 0.06850715970018598, "eos": 0.11306916341372943, "eth": 0.0005992340989530103, "eur": 0.3071289543315873, "gbp": 0.27488776191993153, "hkd": 2.842081662175703, "huf": 110.30489492139286, "idr": 5172.642340314367, "ils": 1.2118597195282064, "inr": 27.13276938023801, "jpy": 38.242990127945504, "krw": 406.9922098514009, "kwd": 0.11199774726766358, "lkr": 68.1375401308304, "ltc": 0.004187005551438385, "mmk": 482.24411797970885, "mxn": 7.392928556008303, "myr": 1.4937579507703576, "ngn": 140.53157764142114, "nok": 3.2564216651870113, "nzd": 0.522326529861334, "php": 17.63378327633645, "pkr": 58.46626111030121, "pln": 1.3757866383249937, "rub": 28.030144285835046, "sar": 1.3752018214542343, "sek": 3.1431457538996184, "sgd": 0.49118603979828235, "thb": 11.09453005606651, "try": 2.870295867946888, "twd": 10.461072187881472, "uah": 10.44983637083595, "usd": 0.36665634530445734, "vef": 91109.57075740646, "vnd": 8520.735267658829, "xag": 0.01617470734926845, "xau": 0.00020608653200527592, "xdr": 0.256846436449226, "xlm": 1.8230027530206923, "xrp": 0.5524411689962875, "yfi": 1.3964093992270781e-05, "zar": 5.66238430409666, "bits": 18.677130619507487, "link": 0.02580840013148826, "sats": 1867.7130619507486}, "market_cap": {"aed": 33413517.87690243, "ars": 739660769.0853307, "aud": 12361518.873679126, "bch": 28585.92673553089, "bdt": 771579193.0465175, "bhd": 3430197.978778042, "bmd": 9096569.170451514, "bnb": 290191.9885067255, "brl": 48508364.75834983, "btc": 462.27773274592766, "cad": 11818180.797128042, "chf": 8264196.7050785, "clp": 6930669737.947999, "cny": 59845418.91548325, "czk": 200261889.04097578, "dkk": 56726105.284674846, "dot": 1691609.8728514244, "eos": 2792489.7795605203, "eth": 14836.462051369595, "eur": 7621023.781881708, "gbp": 6820052.673285143, "hkd": 70511146.26783763, "huf": 2737339594.7722645, "idr": 128329799541.01376, "ils": 30065662.042255282, "inr": 673151076.2436099, "jpy": 948770345.1642586, "krw": 10097282744.892853, "kwd": 2778610.7290986027, "lkr": 1690459894.781968, "ltc": 103337.59387922726, "mmk": 11964246718.826555, "mxn": 183428678.69448596, "myr": 37059422.800419375, "ngn": 3486521460.8146605, "nok": 80797000.89163414, "nzd": 12958444.839213317, "php": 437566354.0362671, "pkr": 1450520071.8288722, "pln": 34129263.22894107, "rub": 695492750.4375399, "sar": 34118101.73856893, "sek": 78041877.50413336, "sgd": 12190094.027661951, "thb": 275503242.18087906, "try": 71225572.61734666, "twd": 259534215.00215146, "uah": 259255459.73649237, "usd": 9096569.170451514, "vef": 2260385025647.659, "vnd": 211444528663.54385, "xag": 401659.19365266874, "xau": 5114.636981778061, "xdr": 6372237.669592969, "xlm": 45008177.10056042, "xrp": 13639104.037042035, "yfi": 343.89328849431183, "zar": 140504925.16410574, "bits": 462277732.7459277, "link": 636913.8020326506, "sats": 46227773274.592766}, "total_volume": {"aed": 4744605.443658047, "ars": 105009929.60617292, "aud": 1755190.1354856119, "bch": 4084.856376075433, "bdt": 109561610.75372429, "bhd": 487076.40012323944, "bmd": 1291681.76076937, "bnb": 41366.762636738415, "brl": 6888022.157478733, "btc": 65.79705839999181, "cad": 1678001.8168255538, "chf": 1173326.2527118304, "clp": 984133935.215565, "cny": 8497845.135925574, "czk": 28433080.17484768, "dkk": 8053377.442044862, "dot": 241341.65356763816, "eos": 398327.6928309855, "eth": 2111.022394569375, "eur": 1081974.6435449384, "gbp": 968393.1912752092, "hkd": 10012277.416339649, "huf": 388589540.909857, "idr": 18222534129.116116, "ils": 4269221.346833293, "inr": 95585154.26349291, "jpy": 134724991.01176682, "krw": 1433779671.271609, "kwd": 394553.2355993293, "lkr": 240039532.76085493, "ltc": 14750.266216018254, "mmk": 1698882180.5755606, "mxn": 26044308.51056888, "myr": 5262311.493374407, "ngn": 495074142.24848425, "nok": 11471942.390097097, "nzd": 1840087.2108939362, "php": 62121483.84474404, "pkr": 205968897.20767513, "pln": 4846714.178528624, "rub": 98746487.24729641, "sar": 4844653.946120201, "sek": 11072886.35187973, "sgd": 1730383.3872700369, "thb": 39084560.51900344, "try": 10111672.327830877, "twd": 36852972.31651089, "uah": 36813390.02063384, "usd": 1291681.76076937, "vef": 320966955259.2838, "vnd": 30017422238.9093, "xag": 56981.352529120835, "xau": 726.0155672756383, "xdr": 904835.9902365536, "xlm": 6422197.341093038, "xrp": 1946177.0975164382, "yfi": 49.193654348209726, "zar": 19947830.227771334, "bits": 65797058.39999181, "link": 90919.57674099453, "sats": 6579705839.999181}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 103, "reddit_accounts_active_48h": "7.15384615384615"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 971763, "bing_matches": null}}, "PIVX_20201211": {"id": "pivx", "symbol": "pivx", "name": "PIVX", "localization": {"en": "PIVX", "de": "PIVX", "es": "PIVX", "fr": "PIVX", "it": "PIVX", "pl": "PIVX", "ro": "PIVX", "hu": "PIVX", "nl": "PIVX", "pt": "PIVX", "sv": "PIVX", "vi": "PIVX", "tr": "PIVX", "ru": "PIVX", "ja": "\u30d4\u30f4\u30af\u30b9", "zh": "\u666e\u7ef4\u5e01", "zh-tw": "\u666e\u7dad\u5e63", "ko": "\ud53c\ubca1\uc2a4", "ar": "PIVX", "th": "PIVX", "id": "PIVX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/548/thumb/PIVX-Shield.png?1609817792", "small": "https://assets.coingecko.com/coins/images/548/small/PIVX-Shield.png?1609817792"}, "market_data": {"current_price": {"aed": 1.449342323073623, "ars": 32.15447146681785, "aud": 0.5318544183582873, "bch": 0.0013892949079222607, "bdt": 33.47071553756498, "bhd": 0.14878525623015418, "bmd": 0.3945721232368575, "bnb": 0.0134351610459803, "brl": 2.012238914083324, "btc": 2.055200056394359e-05, "cad": 0.505184499404462, "chf": 0.35140593295474415, "clp": 294.03538495224024, "cny": 2.5764770503120187, "czk": 8.630752646618165, "dkk": 2.424902169170586, "dot": 0.07796730753233617, "eos": 0.13368527202973482, "eth": 0.000666110280929884, "eur": 0.32575598293948616, "gbp": 0.2954556058797583, "hkd": 3.0584666274520145, "huf": 117.40236068602275, "idr": 5563.760696585437, "ils": 1.2842099437777654, "inr": 29.123388539290715, "jpy": 41.037079105126054, "krw": 427.94855616014615, "kwd": 0.1205114015953706, "lkr": 73.57617079708854, "ltc": 0.004709634292392603, "mmk": 524.1915022030252, "mxn": 7.849142754837649, "myr": 1.6066976858204818, "ngn": 150.93384309257104, "nok": 3.446571713589009, "nzd": 0.5604399849704285, "php": 19.008580297912903, "pkr": 63.2409664048345, "pln": 1.4574113229938166, "rub": 29.111925824538655, "sar": 1.4803051867282668, "sek": 3.3136257661019695, "sgd": 0.5274640143430311, "thb": 11.901470667178733, "try": 3.0784122482816265, "twd": 11.14011218962335, "uah": 11.124294187774906, "usd": 0.3945721232368575, "vef": 98046.29659715183, "vnd": 9124.930042912034, "xag": 0.01607081999068514, "xau": 0.00021158930108576492, "xdr": 0.27460010173395155, "xlm": 2.340803056085421, "xrp": 0.6480249068620082, "yfi": 1.3803012306576082e-05, "zar": 5.983706372065228, "bits": 20.55200056394359, "link": 0.030131467092183332, "sats": 2055.2000563943593}, "market_cap": {"aed": 94252024.74074087, "ars": 2091018580.2454572, "aud": 34591149.959911145, "bch": 90114.79833466024, "bdt": 2176630502.47973, "bhd": 9675637.9966347, "bmd": 25659377.311537936, "bnb": 873684.2624344775, "brl": 130867956.16430537, "btc": 1335.872188807321, "cad": 32851829.06884847, "chf": 22857963.474796068, "clp": 19121383496.48133, "cny": 167550601.96888003, "czk": 561561399.7791659, "dkk": 157695476.62795082, "dot": 5069806.98504685, "eos": 8684179.374607721, "eth": 43250.391182254454, "eur": 21184253.6115191, "gbp": 19212433.10263666, "hkd": 198887116.510595, "huf": 7638270608.409932, "idr": 361828916633.9492, "ils": 83513318.74208923, "inr": 1893917638.6488938, "jpy": 2668755543.712428, "krw": 27830930413.413353, "kwd": 7836091.577793239, "lkr": 4784724050.278018, "ltc": 306982.02725065546, "mmk": 34088641205.032913, "mxn": 510564208.4725584, "myr": 104484984.41258216, "ngn": 9815362517.81248, "nok": 224293004.83367264, "nzd": 36452814.761995085, "php": 1236141374.4021657, "pkr": 4112616484.955867, "pln": 94772679.16576934, "rub": 1893536314.642668, "sar": 96260281.56540582, "sek": 215519063.01514307, "sgd": 34296323.71460154, "thb": 773886819.7159822, "try": 200180246.48958722, "twd": 724415540.2593374, "uah": 723422778.951153, "usd": 25659377.311537936, "vef": 6376038169516.251, "vnd": 593469021855.7798, "xag": 1045376.631142028, "xau": 13764.716365001357, "xdr": 17857489.683700908, "xlm": 152021592.4823473, "xrp": 42087697.74314748, "yfi": 897.1639528210019, "zar": 389106598.0028624, "bits": 1335872188.807321, "link": 1954693.848643291, "sats": 133587218880.7321}, "total_volume": {"aed": 601866.3262981748, "ars": 13352741.659231927, "aud": 220862.42829361875, "bch": 576.9305215641983, "bdt": 13899336.463482384, "bhd": 61785.84186009909, "bmd": 163853.4047419622, "bnb": 5579.200229811925, "brl": 835619.5935030582, "btc": 8.534600060023504, "cad": 209787.2489603002, "chf": 145927.8422631911, "clp": 122103656.3450199, "cny": 1069929.9622840595, "czk": 3584080.3831576603, "dkk": 1006985.6768524371, "dot": 32377.372970335502, "eos": 55515.292885448594, "eth": 276.61466950230584, "eur": 135276.2239811305, "gbp": 122693.42947078105, "hkd": 1270085.0888466085, "huf": 48753511.43750488, "idr": 2310454995.721496, "ils": 533292.037879616, "inr": 12094028.160527864, "jpy": 17041409.50678301, "krw": 177713588.5982345, "kwd": 50044.598436504275, "lkr": 30553871.86018252, "ltc": 1955.7631379720988, "mmk": 217680259.99447066, "mxn": 3259502.35443728, "myr": 667211.0641092694, "ngn": 62678082.47229135, "nok": 1431252.9362848452, "nzd": 232733.11590695995, "php": 7893666.120083039, "pkr": 26261986.22345105, "pln": 605217.1284251479, "rub": 12089268.055266745, "sar": 614724.2306750865, "sek": 1376044.66165131, "sgd": 219039.23145905513, "thb": 4942306.806310302, "try": 1278367.87845631, "twd": 4626138.553588304, "uah": 4619569.834445602, "usd": 163853.4047419622, "vef": 40715546217.4904, "vnd": 3789296728.055552, "xag": 6673.706573254879, "xau": 87.86638829287728, "xdr": 114032.79390974014, "xlm": 972061.9577063897, "xrp": 269104.3819210553, "yfi": 5.73195729990798, "zar": 2484845.2394354986, "bits": 8534600.060023503, "link": 12512.651508228613, "sats": 853460006.0023503}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.273, "reddit_subscribers": 8683, "reddit_accounts_active_48h": "65.0"}, "developer_data": {"forks": 650, "stars": 434, "subscribers": 108, "total_issues": 546, "closed_issues": 454, "pull_requests_merged": 1291, "pull_request_contributors": 52, "code_additions_deletions_4_weeks": {"additions": 6247, "deletions": -10948}, "commit_count_4_weeks": 472}, "public_interest_stats": {"alexa_rank": 298063, "bing_matches": null}}, "MDA_20210103": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 1.8499263030625157, "ars": 42.37724621550655, "aud": 0.6549475416950851, "bch": 0.0014051067303126768, "bdt": 42.70671359772051, "bhd": 0.1898959523378917, "bmd": 0.5036279818856924, "bnb": 0.013215092098659986, "brl": 2.615889568060633, "btc": 1.7466551657115058e-05, "cad": 0.6421760397024446, "chf": 0.4440286465093392, "clp": 358.3303864652063, "cny": 3.2853164142349356, "czk": 10.737197485408378, "dkk": 3.047286721156291, "dot": 0.0692354462897348, "eos": 0.19312961868579528, "eth": 0.0006694813860003903, "eur": 0.40946516174050496, "gbp": 0.3695093321696233, "hkd": 3.9042475044334353, "huf": 149.27214586579362, "idr": 7060.77642295456, "ils": 1.619038054767027, "inr": 36.860355724420096, "jpy": 51.94620456361778, "krw": 548.2593903966647, "kwd": 0.15317895431851503, "lkr": 93.42638912141766, "ltc": 0.003906328154775105, "mmk": 668.8409999171134, "mxn": 10.018859296889309, "myr": 2.0331461628725322, "ngn": 195.19874553759922, "nok": 4.2977537026839565, "nzd": 0.6979805382352896, "php": 24.186098755175163, "pkr": 80.82400439783956, "pln": 1.8764362727730186, "rub": 37.458389778766154, "sar": 1.8894968572272643, "sek": 4.128709459680069, "sgd": 0.6663033454306441, "thb": 15.069047306093985, "try": 3.719166739230365, "twd": 14.143132801304937, "uah": 14.272633182427116, "usd": 0.5036279818856924, "vef": 125145.32978536858, "vnd": 11602.650292124059, "xag": 0.018892198618372293, "xau": 0.0002657342683621665, "xdr": 0.3496825057787471, "xlm": 3.821461571900045, "xrp": 2.37217578566946, "yfi": 2.2999717678291674e-05, "zar": 7.359351012945531, "bits": 17.46655165711506, "link": 0.044739273201280176, "sats": 1746.655165711506}, "market_cap": {"aed": 36429778.75834932, "ars": 834588141.4277067, "aud": 12897918.93635065, "bch": 27795.798031328257, "bdt": 841004382.3289328, "bhd": 3739536.8233442623, "bmd": 9917722.628321152, "bnb": 260162.1042206402, "brl": 51512611.66060957, "btc": 343.350205053258, "cad": 12646831.952569442, "chf": 8744138.674266662, "clp": 7056466572.62089, "cny": 64696280.02132736, "czk": 211447820.0626103, "dkk": 60003828.57240894, "dot": 1369218.9436064474, "eos": 3805261.6080728746, "eth": 13201.489116009638, "eur": 8063406.028503939, "gbp": 7276950.459523356, "hkd": 76884714.83401579, "huf": 2939589303.5127544, "idr": 139220031395.05835, "ils": 31882998.819395456, "inr": 725874647.9639053, "jpy": 1023139540.074838, "krw": 10796631207.642975, "kwd": 3016534.8437396493, "lkr": 1839804472.3458726, "ltc": 77409.16522525887, "mmk": 13171189366.385296, "mxn": 197299464.73955816, "myr": 40037846.25053249, "ngn": 3843962379.512004, "nok": 84651134.65841474, "nzd": 13749543.860721946, "php": 476383921.63972664, "pkr": 1591631295.637419, "pln": 36953434.513124615, "rub": 737651467.5343506, "sar": 37213983.004293405, "sek": 81286497.66814366, "sgd": 13120899.094203202, "thb": 296736089.05811346, "try": 73176924.64080489, "twd": 278514445.7098289, "uah": 281064639.3178622, "usd": 9917722.628321152, "vef": 2464431512311.7373, "vnd": 228485849654.02866, "xag": 372454.91609083593, "xau": 5233.978939870198, "xdr": 6886142.599354341, "xlm": 75638635.83922286, "xrp": 46768441.821304776, "yfi": 452.6776903363527, "zar": 145214471.55290046, "bits": 343350205.05325794, "link": 880766.1313769398, "sats": 34335020505.325794}, "total_volume": {"aed": 686564.1201613992, "ars": 15727489.638179945, "aud": 243071.02503021262, "bch": 521.4779985737534, "bdt": 15849765.040728215, "bhd": 70476.18449623707, "bmd": 186911.71734765405, "bnb": 4904.524069174091, "brl": 970836.468869992, "btc": 6.482370487336966, "cad": 238331.13078999307, "chf": 164792.58471673256, "clp": 132987344.4705893, "cny": 1219281.2057739513, "czk": 3984901.740336774, "dkk": 1130941.1208039257, "dot": 25695.387533655292, "eos": 71676.29678577454, "eth": 248.46497829825125, "eur": 151965.02046688, "gbp": 137136.19245938712, "hkd": 1448985.4262497593, "huf": 55399449.87067375, "idr": 2620469661.1194296, "ils": 600874.4433433699, "inr": 13680003.173573703, "jpy": 19278822.174106404, "krw": 203475795.42210057, "kwd": 56849.38574300625, "lkr": 34673384.84825847, "ltc": 1449.7576191035107, "mmk": 248227311.4749293, "mxn": 3718304.511267448, "myr": 754562.6029324766, "ngn": 72444212.92068183, "nok": 1595027.5882173304, "nzd": 259041.88363070015, "php": 8976199.529945489, "pkr": 29996255.188901193, "pln": 696402.7791391466, "rub": 13901951.866161583, "sar": 701249.9607051248, "sek": 1532290.109554435, "sgd": 247285.51043296768, "thb": 5592583.43873026, "try": 1380296.3046830876, "twd": 5248948.302415487, "uah": 5297009.846855678, "usd": 186911.71734765405, "vef": 46445251950.93471, "vnd": 4306097694.900098, "xag": 7011.471592605844, "xau": 98.62209854131609, "xdr": 129777.85197084458, "xlm": 1418261.0396417985, "xrp": 880386.8448489708, "yfi": 8.535897297971053, "zar": 2731279.8054696904, "bits": 6482370.487336966, "link": 16604.109953594932, "sats": 648237048.7336966}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 369, "reddit_accounts_active_48h": "24.4615384615385"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 3242177, "bing_matches": null}}, "CTXC_20210107": {"id": "cortex", "symbol": "ctxc", "name": "Cortex", "localization": {"en": "Cortex", "de": "Cortex", "es": "Cortex", "fr": "Cortex", "it": "Cortex", "pl": "Cortex", "ro": "Cortex", "hu": "Cortex", "nl": "Cortex", "pt": "Cortex", "sv": "Cortex", "vi": "Cortex", "tr": "Cortex", "ru": "Cortex", "ja": "\u30b3\u30eb\u30c6\u30c3\u30af\u30b9", "zh": "Cortex", "zh-tw": "Cortex", "ko": "\ucf54\ub974\ud14d\uc2a4", "ar": "Cortex", "th": "Cortex", "id": "Cortex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3861/thumb/2638.png?1523930406", "small": "https://assets.coingecko.com/coins/images/3861/small/2638.png?1523930406"}, "market_data": {"current_price": {"aed": 0.2981489397176086, "ars": 6.843438189088218, "aud": 0.10532178128145281, "bch": 0.00019375517792872388, "bdt": 6.905392980267867, "bhd": 0.030603507937844058, "bmd": 0.0811740451547675, "bnb": 0.0019763188026322956, "brl": 0.4222949820704527, "btc": 2.465969284924132e-06, "cad": 0.10330444391126649, "chf": 0.07168114644414308, "clp": 57.674140331257895, "cny": 0.5303100369960956, "czk": 1.7389956280528396, "dkk": 0.4932830645170651, "dot": 0.008033818842905414, "eos": 0.029149582295106072, "eth": 8.394512851541615e-05, "eur": 0.06626294127815271, "gbp": 0.05933035312575503, "hkd": 0.6293484601382976, "huf": 24.092396695489633, "idr": 1142.7672715897265, "ils": 0.2606599245735574, "inr": 5.932768574663107, "jpy": 8.380327247733039, "krw": 88.25539091413869, "kwd": 0.02468859878955146, "lkr": 15.111914258869671, "ltc": 0.0005089486652615446, "mmk": 108.3326417210391, "mxn": 1.6119874700418837, "myr": 0.32652259663505223, "ngn": 31.572665481154324, "nok": 0.6944601911080664, "nzd": 0.11282632175601091, "php": 3.8867533072381626, "pkr": 13.068442661323699, "pln": 0.3023578139588828, "rub": 6.015713756309121, "sar": 0.3045305996255417, "sek": 0.6653674133245986, "sgd": 0.10720891548321068, "thb": 2.431068815189085, "try": 0.603678467142826, "twd": 2.2784743546232122, "uah": 2.3114517163375607, "usd": 0.0811740451547675, "vef": 20170.747091672627, "vnd": 1877.4532442147338, "xag": 0.003023975892410099, "xau": 4.243373210465461e-05, "xdr": 0.056500869433795266, "xlm": 0.5985221339305904, "xrp": 0.3597596970182428, "yfi": 3.429469929986796e-06, "zar": 1.190522898453364, "bits": 2.465969284924132, "link": 0.005946990453017169, "sats": 246.5969284924132}, "market_cap": {"aed": 3002848.029382275, "ars": 68951650.25425704, "aud": 1059867.5741871244, "bch": 1939.782030572565, "bdt": 69548614.60365231, "bhd": 308227.4368990879, "bmd": 817555.5538143142, "bnb": 19708.439140885897, "brl": 4253201.959830355, "btc": 24.43861654743947, "cad": 1040157.9448957691, "chf": 722178.7053507826, "clp": 580873032.9472934, "cny": 5341090.43306893, "czk": 17520950.500683647, "dkk": 4967110.273198751, "dot": 78584.55815071703, "eos": 288234.0067383104, "eth": 830.8296820599355, "eur": 667551.278356018, "gbp": 597647.8258382321, "hkd": 6338573.613166687, "huf": 242715892.8163938, "idr": 11512811070.046753, "ils": 2625272.26018643, "inr": 59752694.20740471, "jpy": 84444522.37287118, "krw": 888876301.0188595, "kwd": 248654.6163593007, "lkr": 152201721.71472758, "ltc": 5071.178512573643, "mmk": 1091087092.3032985, "mxn": 16229507.863211958, "myr": 3288617.215218093, "ngn": 317988440.31518865, "nok": 6990590.518444685, "nzd": 1135866.7209141501, "php": 39152522.09016812, "pkr": 131620616.62811722, "pln": 3045831.012624058, "rub": 60588088.00584764, "sar": 3067121.7943564807, "sek": 6709851.751931482, "sgd": 1079645.0605894479, "thb": 24467862.296110194, "try": 6082286.298156974, "twd": 22947967.65756957, "uah": 23280103.689084392, "usd": 817555.5538143142, "vef": 203152451968.35425, "vnd": 18913403736.595993, "xag": 30414.464621889583, "xau": 427.0664946459828, "xdr": 569056.2730102391, "xlm": 5956555.0939125195, "xrp": 3557431.9900130453, "yfi": 33.703391203801324, "zar": 11991855.81001515, "bits": 24438616.547439467, "link": 58714.68679734965, "sats": 2443861654.743947}, "total_volume": {"aed": 66511948.71933166, "ars": 1526654464.4688845, "aud": 23495494.97729417, "bch": 43223.47907963786, "bdt": 1540475522.8223393, "bhd": 6827121.211705344, "bmd": 18108546.4660324, "bnb": 440883.0532090162, "brl": 94206815.62209891, "btc": 550.1157333568544, "cad": 23045461.38052032, "chf": 15990842.499562211, "clp": 12866118081.041792, "cny": 118303134.06258957, "czk": 387940296.36913496, "dkk": 110043047.3519343, "dot": 1792208.1071488282, "eos": 6502775.172161809, "eth": 18726.727951282777, "eur": 14782133.240047494, "gbp": 13235590.93766248, "hkd": 140396918.89213383, "huf": 5374603227.011116, "idr": 254931908321.04596, "ils": 58148788.162191786, "inr": 1323499589.0825567, "jpy": 1869508228.6067183, "krw": 19688274056.06594, "kwd": 5507605.756364927, "lkr": 3371210600.946216, "ltc": 113537.77597435108, "mmk": 24167166643.638184, "mxn": 359606940.22652185, "myr": 72841628.15961532, "ngn": 7043323747.534113, "nok": 154922236.72620028, "nzd": 25169630.09807883, "php": 867068442.036286, "pkr": 2915346903.3120055, "pln": 67450876.85359533, "rub": 1342003245.923935, "sar": 67935588.31685188, "sek": 148432133.67277446, "sgd": 23916482.465536453, "thb": 542330033.177955, "try": 134670380.80899483, "twd": 508288808.8636095, "uah": 515645496.4081672, "usd": 18108546.4660324, "vef": 4499750015755.98, "vnd": 418827831554.34534, "xag": 674597.5004136397, "xau": 9466.242665118414, "xdr": 12604381.333495982, "xlm": 133520090.72070259, "xrp": 80256258.97587742, "yfi": 765.0563115663502, "zar": 265585375.03477046, "bits": 550115733.3568544, "link": 1326672.2478371842, "sats": 55011573335.68545}}, "community_data": {"facebook_likes": null, "twitter_followers": 16707, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 20068, "reddit_accounts_active_48h": "12.5"}, "developer_data": {"forks": 1, "stars": 8, "subscribers": 6, "total_issues": 9, "closed_issues": 5, "pull_requests_merged": 5, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 682759, "bing_matches": null}}, "VIB_20210108": {"id": "viberate", "symbol": "vib", "name": "Viberate", "localization": {"en": "Viberate", "de": "Viberate", "es": "Viberate", "fr": "Viberate", "it": "Viberate", "pl": "Viberate", "ro": "Viberate", "hu": "Viberate", "nl": "Viberate", "pt": "Viberate", "sv": "Viberate", "vi": "Viberate", "tr": "Viberate", "ru": "Viberate", "ja": "Viberate", "zh": "Viberate", "zh-tw": "Viberate", "ko": "\ubc14\uc774\ubc84\ub808\uc774\ud2b8", "ar": "Viberate", "th": "Viberate", "id": "Viberate"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/983/thumb/Viberate.png?1547034873", "small": "https://assets.coingecko.com/coins/images/983/small/Viberate.png?1547034873"}, "market_data": {"current_price": {"aed": 0.06655955126942144, "ars": 1.5348909061363591, "aud": 0.023623774997925874, "bch": 4.529699274512516e-05, "bdt": 1.536113003938774, "bhd": 0.00683148286077525, "bmd": 0.018121797835340347, "bnb": 0.0004552065391614755, "brl": 0.09519199184925947, "btc": 5.792248074283532e-07, "cad": 0.023144670906755104, "chf": 0.015969055105086737, "clp": 12.75412131651253, "cny": 0.11709580889283519, "czk": 0.38773761084450925, "dkk": 0.11007725471300565, "dot": 0.001935765882906721, "eos": 0.0065786210893730105, "eth": 1.7769549108796057e-05, "eur": 0.014794164586028145, "gbp": 0.013362977480184272, "hkd": 0.14051310412622495, "huf": 5.341740221208115, "idr": 252.73763723129574, "ils": 0.058151399509780065, "inr": 1.3239386818947263, "jpy": 1.8688466453651449, "krw": 19.676458209414836, "kwd": 0.005510693747344315, "lkr": 3.387218608562901, "ltc": 0.00011929285003319677, "mmk": 24.05469264875487, "mxn": 0.3596759887746863, "myr": 0.07260498302729129, "ngn": 7.150350826049462, "nok": 0.15489418233059649, "nzd": 0.025240855505964596, "php": 0.8702800413275257, "pkr": 2.896859992968332, "pln": 0.06734224983972772, "rub": 1.3408657277205829, "sar": 0.06798910741346018, "sek": 0.14928177093200262, "sgd": 0.023918272334547973, "thb": 0.5422041912333827, "try": 0.13446627698992233, "twd": 0.5088963268120272, "uah": 0.5152073335171742, "usd": 0.018121797835340347, "vef": 4503.042817271778, "vnd": 419.7641296226789, "xag": 0.0006662551461354193, "xau": 9.334356847005469e-06, "xdr": 0.01257663642851318, "xlm": 0.11872869998920677, "xrp": 0.07759056101486377, "yfi": 7.903109364820848e-07, "zar": 0.26615354003819947, "bits": 0.5792248074283532, "link": 0.0013435579154371078, "sats": 57.922480742835326}, "market_cap": {"aed": 12173361.133332167, "ars": 280722765.4680636, "aud": 4320653.293142834, "bch": 8284.560824460752, "bdt": 280946280.1643816, "bhd": 1249439.131639584, "bmd": 3314373.147467176, "bnb": 83254.67173052835, "brl": 17410070.706330355, "btc": 105.93690347563269, "cad": 4233027.895870089, "chf": 2920648.8181601022, "clp": 2332655821.1873965, "cny": 21416153.529673897, "czk": 70914990.73783721, "dkk": 20132500.12403301, "dot": 354040.50527355575, "eos": 1203192.1602975803, "eth": 3249.9488706323946, "eur": 2705768.0638903696, "gbp": 2444012.1301959953, "hkd": 25699042.855174445, "huf": 976973725.8292859, "idr": 46224267912.32187, "ils": 10635558.280370317, "inr": 242140810.53302714, "jpy": 341801359.57884765, "krw": 3598711635.5180206, "kwd": 1007874.359159588, "lkr": 619502904.8899641, "ltc": 21817.979784754087, "mmk": 4399465666.15651, "mxn": 65782680.60461103, "myr": 13279036.015327275, "ngn": 1307758258.212739, "nok": 28329259.7831683, "nzd": 4616408.066583913, "php": 159169240.5997091, "pkr": 529819119.48836565, "pln": 12316512.22394444, "rub": 245236670.3732553, "sar": 12434818.773443278, "sek": 27302781.847532026, "sgd": 4374515.171162319, "thb": 99166044.57221782, "try": 24593112.766447093, "twd": 93074226.72717316, "uah": 94228473.74764442, "usd": 3314373.147467176, "vef": 823580768921.0004, "vnd": 76772457795.44966, "xag": 121854.25451588922, "xau": 1707.2004645288694, "xdr": 2300194.8505810993, "xlm": 21714799.96926711, "xrp": 14190869.706264336, "yfi": 144.54334883471918, "zar": 48677959.78198378, "bits": 105936903.47563271, "link": 245729.05610433288, "sats": 10593690347.56327}, "total_volume": {"aed": 2848331.7779121883, "ars": 65683714.210752785, "aud": 1010949.5595676152, "bch": 1938.4274896557506, "bdt": 65736012.33987094, "bhd": 292344.6650630905, "bmd": 775499.4086177662, "bnb": 19479.98786468276, "brl": 4073620.8435282707, "btc": 24.787192733241923, "cad": 990446.9062025768, "chf": 683375.5073698349, "clp": 545796483.7851835, "cny": 5010966.978724558, "czk": 16592740.446667453, "dkk": 4710616.833266304, "dot": 82838.65160933776, "eos": 281523.7655052076, "eth": 760.4253700701815, "eur": 633097.5542109205, "gbp": 571851.7129159223, "hkd": 6013080.498030372, "huf": 228593013.7934809, "idr": 10815587393.105928, "ils": 2488515.5623017102, "inr": 56656280.69491497, "jpy": 79974927.51252441, "krw": 842029132.1943672, "kwd": 235823.16616539366, "lkr": 144951734.46185222, "ltc": 5104.986574381708, "mmk": 1029390135.1891546, "mxn": 15391878.83692341, "myr": 3107038.3806270887, "ngn": 305990216.169232, "nok": 6628500.543221849, "nzd": 1080150.4737962114, "php": 37242533.19199805, "pkr": 123967457.96459305, "pln": 2881826.3728698026, "rub": 57380652.20302208, "sar": 2909507.8242604127, "sek": 6388324.498875894, "sgd": 1023552.2004570618, "thb": 23202942.305843543, "try": 5754314.181861032, "twd": 21777574.392804094, "uah": 22047645.939352293, "usd": 775499.4086177662, "vef": 192702019606.7185, "vnd": 17963274794.210014, "xag": 28511.54595759551, "xau": 399.45199038492564, "xdr": 538201.24257718, "xlm": 5080844.487075517, "xrp": 3320389.8822888215, "yfi": 33.82035653608201, "zar": 11389703.978411708, "bits": 24787192.733241923, "link": 57495.86096989076, "sats": 2478719273.3241925}}, "community_data": {"facebook_likes": null, "twitter_followers": 30389, "reddit_average_posts_48h": 0.167, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1092, "reddit_accounts_active_48h": "25.7692307692308"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 1, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 3160516, "bing_matches": null}}, "NXS_20210115": {"id": "nexus", "symbol": "nxs", "name": "Nexus", "localization": {"en": "Nexus", "de": "Nexus", "es": "Nexus", "fr": "Nexus", "it": "Nexus", "pl": "Nexus", "ro": "Nexus", "hu": "Nexus", "nl": "Nexus", "pt": "Nexus", "sv": "Nexus", "vi": "Nexus", "tr": "Nexus", "ru": "Nexus", "ja": "\u30cd\u30af\u30b5\u30b9", "zh": "Nexus", "zh-tw": "Nexus", "ko": "\ub125\uc11c\uc2a4", "ar": "Nexus", "th": "Nexus", "id": "Nexus"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/576/thumb/nexus-logo.png?1547034256", "small": "https://assets.coingecko.com/coins/images/576/small/nexus-logo.png?1547034256"}, "market_data": {"current_price": {"aed": 1.0757396211059964, "ars": 24.98549445836894, "aud": 0.37997693571801916, "bch": 0.0006085787075075936, "bdt": 24.84454949050154, "bhd": 0.11041149918696225, "bmd": 0.292861706715125, "bnb": 0.00761632373490302, "brl": 1.6078400560367117, "btc": 8.238781218984208e-06, "cad": 0.3740576149018936, "chf": 0.26056198908151396, "clp": 210.7138562364664, "cny": 1.8979781488793788, "czk": 6.326486446972142, "dkk": 1.7914854321899731, "dot": 0.03533693784796031, "eos": 0.10965035610961284, "eth": 0.0002683413212890249, "eur": 0.24085883917713363, "gbp": 0.2165703535307144, "hkd": 2.271215751002475, "huf": 87.06339248080631, "idr": 4138.0943295223615, "ils": 0.9309839367108484, "inr": 21.530824550530628, "jpy": 30.49832527560639, "krw": 321.40108003451434, "kwd": 0.08893624309524915, "lkr": 55.37613272724592, "ltc": 0.0020965254411588214, "mmk": 391.73446402908604, "mxn": 5.876738723969728, "myr": 1.1853577579294665, "ngn": 113.53218696870717, "nok": 2.5013989023847203, "nzd": 0.40829021979982416, "php": 14.095659154851448, "pkr": 46.99081940335355, "pln": 1.0898701984550034, "rub": 21.861130676481245, "sar": 1.0989120107881252, "sek": 2.4327125820002893, "sgd": 0.3895646422724597, "thb": 8.83563769159528, "try": 2.188701965135489, "twd": 8.211549394585388, "uah": 8.249158987823416, "usd": 0.292861706715125, "vef": 0.02932424269338548, "vnd": 6757.88846483129, "xag": 0.01167943029401357, "xau": 0.00015849968429129316, "xdr": 0.2030457070529037, "xlm": 1.0727339318089681, "xrp": 1.0068400785870657, "yfi": 9.730042720950916e-06, "zar": 4.547293006336421, "bits": 8.238781218984208, "link": 0.020167620183382817, "sats": 823.8781218984208}, "market_cap": {"aed": 72579434.38064103, "ars": 1685873331.370646, "aud": 25626159.84827349, "bch": 41119.916351754866, "bdt": 1676245175.0252728, "bhd": 7449390.171079973, "bmd": 19759183.921550933, "bnb": 512213.91065814625, "brl": 108479895.64770661, "btc": 557.8064516620948, "cad": 25234552.582132284, "chf": 17579963.28602699, "clp": 14216723307.629217, "cny": 128055319.1587872, "czk": 426725263.72499007, "dkk": 120856435.9214644, "dot": 2380077.369172953, "eos": 7357333.618655562, "eth": 18109.054775005356, "eur": 16248075.734610954, "gbp": 14607885.636466922, "hkd": 153239387.02600014, "huf": 5872798029.542633, "idr": 279146000565.91547, "ils": 62812864.95189664, "inr": 1452670364.6182327, "jpy": 2057748229.56918, "krw": 21684763994.580112, "kwd": 6000468.973296605, "lkr": 3736190721.8761625, "ltc": 141458.83235471233, "mmk": 26430062878.415718, "mxn": 396268457.6283115, "myr": 80074092.84208488, "ngn": 7659940893.23781, "nok": 168485118.87863818, "nzd": 27536457.99062513, "php": 950872334.1302792, "pkr": 3170439227.544438, "pln": 73538861.31513575, "rub": 1474687173.6171122, "sar": 74142860.04924959, "sek": 163964731.33616933, "sgd": 26277738.69727056, "thb": 596134578.9131917, "try": 147756114.69185, "twd": 554027757.9763662, "uah": 556565252.1347561, "usd": 19759183.921550933, "vef": 1978487.0860648945, "vnd": 455845016053.78357, "xag": 787156.2918829465, "xau": 10689.916093398277, "xdr": 13699358.359754024, "xlm": 75440820.12418987, "xrp": 67698798.94574142, "yfi": 662.9168756079814, "zar": 306937463.7475545, "bits": 557806451.6620948, "link": 1358045.8358471738, "sats": 55780645166.20948}, "total_volume": {"aed": 1020997.8162953734, "ars": 23714042.674032208, "aud": 360640.8223691134, "bch": 577.6095992172154, "bdt": 23580270.056953657, "bhd": 104792.92326138016, "bmd": 277958.67807235493, "bnb": 7228.747318556173, "brl": 1526020.9384850392, "btc": 7.819529436751468, "cad": 355022.72156791546, "chf": 247302.61546775495, "clp": 199991134.34105918, "cny": 1801394.6008513144, "czk": 6004546.75132243, "dkk": 1700321.0426612217, "dot": 33538.725979284, "eos": 104070.51292656036, "eth": 254.68607614938242, "eur": 228602.11152440292, "gbp": 205549.60855847187, "hkd": 2155639.038120632, "huf": 82632945.6107404, "idr": 3927516651.030087, "ils": 883608.4008977734, "inr": 20435172.617821176, "jpy": 28946338.775776956, "krw": 305045751.2505062, "kwd": 84410.49135701272, "lkr": 52558174.376129866, "ltc": 1989.838298444466, "mmk": 371800038.3123621, "mxn": 5577685.609406718, "myr": 1125037.7494978546, "ngn": 107754806.73948926, "nok": 2374108.721953261, "nzd": 387513.3114477927, "php": 13378364.925845897, "pkr": 44599569.50123978, "pln": 1034409.3225123665, "rub": 20748670.258595843, "sar": 1042991.0187391716, "sek": 2308917.6833915627, "sgd": 369740.6335718469, "thb": 8386013.317442909, "try": 2077324.1805737466, "twd": 7793683.374470757, "uah": 7829379.105867453, "usd": 277958.67807235493, "vef": 27832.00243538491, "vnd": 6413995756.953325, "xag": 11085.092146649587, "xau": 150.43401615953954, "xdr": 192713.1988464129, "xlm": 1018145.079305382, "xrp": 955604.4059613246, "yfi": 9.234904223698488, "zar": 4315892.190297265, "bits": 7819529.436751468, "link": 19141.338445764504, "sats": 781952943.6751468}}, "community_data": {"facebook_likes": null, "twitter_followers": 24016, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3524, "reddit_accounts_active_48h": "288.75"}, "developer_data": {"forks": 7, "stars": 23, "subscribers": 13, "total_issues": 42, "closed_issues": 34, "pull_requests_merged": 85, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 514648, "bing_matches": null}}, "IDEX_20210117": {"id": "aurora-dao", "symbol": "idex", "name": "IDEX", "localization": {"en": "IDEX", "de": "IDEX", "es": "IDEX", "fr": "IDEX", "it": "IDEX", "pl": "IDEX", "ro": "IDEX", "hu": "IDEX", "nl": "IDEX", "pt": "IDEX", "sv": "IDEX", "vi": "IDEX", "tr": "IDEX", "ru": "IDEX", "ja": "\u30a2\u30a4\u30c7\u30c3\u30af\u30b9", "zh": "IDEX", "zh-tw": "IDEX", "ko": "IDEX", "ar": "IDEX", "th": "IDEX", "id": "IDEX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2565/thumb/logomark-purple-286x286.png?1638362736", "small": "https://assets.coingecko.com/coins/images/2565/small/logomark-purple-286x286.png?1638362736"}, "market_data": {"current_price": {"aed": 0.12449601339745303, "ars": 2.899863690916737, "aud": 0.043755576565382905, "bch": 6.81903237898394e-05, "bdt": 2.8735935814666127, "bhd": 0.012776940580024248, "bmd": 0.033893066916436086, "bnb": 0.0008426508406830146, "brl": 0.1796129188169619, "btc": 9.069028654554495e-07, "cad": 0.04303046829177272, "chf": 0.030070200112797395, "clp": 25.006322327555246, "cny": 0.21922374612220008, "czk": 0.7293686321216301, "dkk": 0.20731219721975355, "dot": 0.0030667680641710167, "eos": 0.012178163537639591, "eth": 2.9939979119979565e-05, "eur": 0.027867557480032088, "gbp": 0.024833450129672717, "hkd": 0.26279125005926407, "huf": 10.048904570453763, "idr": 478.56007217333956, "ils": 0.10609445057651276, "inr": 2.47995557070336, "jpy": 3.5187270633042824, "krw": 37.21769760374633, "kwd": 0.01027393758824548, "lkr": 6.522754282204372, "ltc": 0.00022976982503252112, "mmk": 45.048972230602686, "mxn": 0.6723575787644295, "myr": 0.13708050914352574, "ngn": 13.096329388024346, "nok": 0.2869450086249947, "nzd": 0.04714047715832744, "php": 1.6268948009454072, "pkr": 5.441377747765481, "pln": 0.12655220408807227, "rub": 2.5041519667472705, "sar": 0.12716661760513334, "sek": 0.28276673912167, "sgd": 0.04492864950442768, "thb": 1.0174566505353166, "try": 0.25087376987010634, "twd": 0.9500904179084694, "uah": 0.9477956539198249, "usd": 0.033893066916436086, "vef": 0.003393712790342743, "vnd": 781.733774181677, "xag": 0.0013378498456804013, "xau": 1.8332420964431123e-05, "xdr": 0.023452782155764757, "xlm": 0.11152169455738621, "xrp": 0.11047939526183935, "yfi": 1.017352567405462e-06, "zar": 0.516527425002731, "bits": 0.9069028654554494, "link": 0.0021215710994831926, "sats": 90.69028654554495}, "market_cap": {"aed": 70049559.0423789, "ars": 1631713054.1782753, "aud": 24633084.196311496, "bch": 38481.4989150005, "bdt": 1616870755.5808764, "bhd": 7189138.2632794, "bmd": 19070445.127512526, "bnb": 472949.30670920043, "brl": 101061916.90873988, "btc": 513.0281079643507, "cad": 24218416.43745887, "chf": 16920557.566507507, "clp": 14070183397.2584, "cny": 123349546.12926373, "czk": 410478001.1285626, "dkk": 116672830.72656071, "dot": 1731190.8403356771, "eos": 6869660.247709179, "eth": 16947.292186157592, "eur": 15683495.931976035, "gbp": 13979113.039594863, "hkd": 147863745.1706505, "huf": 5654864714.028344, "idr": 269330742773.92883, "ils": 59695642.26929881, "inr": 1395384393.6983087, "jpy": 1980071764.2784147, "krw": 20941404391.42991, "kwd": 5780785.890612602, "lkr": 3670126044.5304585, "ltc": 130512.19321357497, "mmk": 25347483457.093952, "mxn": 378534185.51083857, "myr": 77130415.3182243, "ngn": 7368847191.725612, "nok": 161509640.32253188, "nzd": 26539995.21594689, "php": 915634221.1525475, "pkr": 3061673232.837695, "pln": 71212818.05426711, "rub": 1409132353.872516, "sar": 71552214.76620132, "sek": 159154783.61729673, "sgd": 25290480.580747116, "thb": 572499930.8185529, "try": 141147992.56677136, "twd": 534582698.7439849, "uah": 533291515.1861814, "usd": 19070445.127512526, "vef": 1909523.6706178258, "vnd": 440008000842.1612, "xag": 753624.134208976, "xau": 10317.873631789345, "xdr": 13196061.49221407, "xlm": 62976362.0725369, "xrp": 62351939.388836645, "yfi": 571.6828129189121, "zar": 291016613.633677, "bits": 513028107.96435076, "link": 1192949.92884078, "sats": 51302810796.435074}, "total_volume": {"aed": 4121513.313133161, "ars": 96001682.96336234, "aud": 1448553.9449549348, "bch": 2257.4805381875285, "bdt": 95131995.63056004, "bhd": 422988.088249568, "bmd": 1122049.7966713386, "bnb": 27896.448757040653, "brl": 5946190.692480108, "btc": 30.023549603635065, "cad": 1424548.8116049496, "chf": 995491.5560051838, "clp": 827848921.2059096, "cny": 7257530.28984988, "czk": 24146175.009428218, "dkk": 6863191.499058733, "dot": 101527.1498246308, "eos": 403165.2241719192, "eth": 991.1805139010912, "eur": 922571.7838191084, "gbp": 822125.8860210896, "hkd": 8699857.980483098, "huf": 332674861.1403902, "idr": 15843010991.038986, "ils": 3512318.8170264033, "inr": 82100379.13424264, "jpy": 116489516.7397163, "krw": 1232113639.4006236, "kwd": 340124.7107653909, "lkr": 215939594.1986978, "ltc": 7606.664398196599, "mmk": 1491372564.6671472, "mxn": 22258790.755144507, "myr": 4538130.402637228, "ngn": 433561641.47681594, "nok": 9499482.279881746, "nzd": 1560613.0581485035, "php": 53859303.58875891, "pkr": 180139991.77310824, "pln": 4189584.7081478145, "rub": 82901414.97228546, "sar": 4209925.22686187, "sek": 9361158.225047685, "sgd": 1487389.2104675267, "thb": 33683497.29665297, "try": 8305322.830977506, "twd": 31453298.778241165, "uah": 31377329.274707727, "usd": 1122049.7966713386, "vef": 112350.84614070106, "vnd": 25879753653.875057, "xag": 44290.30134757492, "xau": 606.9055145215606, "xdr": 776418.0655038854, "xlm": 3691990.9021829017, "xrp": 3657484.974598287, "yfi": 33.68005156378441, "zar": 17099942.40498868, "bits": 30023549.603635065, "link": 70235.85167633508, "sats": 3002354960.3635063}}, "community_data": {"facebook_likes": null, "twitter_followers": 44530, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1943, "reddit_accounts_active_48h": "15.3076923076923"}, "developer_data": {"forks": 22, "stars": 34, "subscribers": 16, "total_issues": 12, "closed_issues": 6, "pull_requests_merged": 2, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 159964, "bing_matches": null}}, "GVT_20210123": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 9.488473877539716, "ars": 222.69490428173413, "aud": 3.350094292648822, "bch": 0.005015038907043869, "bdt": 219.10112106619172, "bhd": 0.9740246067225113, "bmd": 2.583338699829754, "bnb": 0.059808250730229384, "brl": 13.84230375529775, "btc": 7.120192468742472e-05, "cad": 3.2869859115506825, "chf": 2.2944387663503925, "clp": 1904.6956363011695, "cny": 16.737451436196995, "czk": 55.67921566517064, "dkk": 15.83307364082187, "dot": 0.1551501074437983, "eos": 0.9169968121070865, "eth": 0.0018610314404211275, "eur": 2.128332671290038, "gbp": 1.893375433201823, "hkd": 20.027204103495176, "huf": 761.8173032271877, "idr": 36492.88830847005, "ils": 8.39179493268796, "inr": 189.08011361874466, "jpy": 268.38176585596364, "krw": 2847.6919065669963, "kwd": 0.7830874600793908, "lkr": 499.99576583243976, "ltc": 0.016624860762471556, "mmk": 3441.754477059027, "mxn": 50.76496920656504, "myr": 10.457355056910828, "ngn": 997.082824039145, "nok": 22.013003645360783, "nzd": 3.6248220300209173, "php": 124.04198626184645, "pkr": 415.0796247653008, "pln": 9.652515884978904, "rub": 190.72712120682067, "sar": 9.690873297993923, "sek": 21.53426190084708, "sgd": 3.430647959986913, "thb": 77.42364508594231, "try": 19.299477591753114, "twd": 72.19759997962183, "uah": 72.67042329517456, "usd": 2.583338699829754, "vef": 0.258669704013953, "vnd": 59549.81015308009, "xag": 0.10231659088061544, "xau": 0.0014029337477165472, "xdr": 1.7940589768868658, "xlm": 8.545194126534316, "xrp": 8.735214836233402, "yfi": 7.370670654143758e-05, "zar": 38.73478454900461, "bits": 71.20192468742472, "link": 0.12343920606839882, "sats": 7120.192468742473}, "market_cap": {"aed": 41828073.6553609, "ars": 981704473.0241597, "aud": 14770134.586411886, "bch": 22145.83718677703, "bdt": 965864263.1269059, "bhd": 4293796.190825054, "bmd": 11388141.318384616, "bnb": 264151.89573375013, "brl": 61019938.81216859, "btc": 314.4737248863993, "cad": 14489974.921838304, "chf": 10114537.145901764, "clp": 8396476662.373841, "cny": 73783767.60181394, "czk": 245408751.34052944, "dkk": 69792873.19377524, "dot": 685243.164683629, "eos": 4052241.9800825687, "eth": 8243.541999395775, "eur": 9381755.804628968, "gbp": 8345104.688557741, "hkd": 88287191.91854914, "huf": 3356859640.1376, "idr": 160418483274.35883, "ils": 36993579.90288026, "inr": 833522547.5964043, "jpy": 1182977343.8711584, "krw": 12547590443.424032, "kwd": 3452087.277841927, "lkr": 2204133139.904965, "ltc": 73426.13156376554, "mmk": 15172298688.714022, "mxn": 223743370.50122702, "myr": 46099196.056820855, "ngn": 4395443813.480649, "nok": 97037224.74796478, "nzd": 15977641.986682838, "php": 546850699.6794621, "pkr": 1829797008.6233048, "pln": 42539878.04032507, "rub": 840779640.6515456, "sar": 42720311.75137359, "sek": 94955461.12682265, "sgd": 15125501.53625207, "thb": 341350209.1308393, "try": 85079437.2126933, "twd": 318168725.03782076, "uah": 320353289.41064316, "usd": 11388141.318384616, "vef": 1140294.5902098503, "vnd": 262513643120.40958, "xag": 451400.18466138595, "xau": 6186.266126972898, "xdr": 7908756.665802532, "xlm": 37846161.756425984, "xrp": 38580355.22624594, "yfi": 325.8000762322164, "zar": 170763470.84797964, "bits": 314473724.88639927, "link": 545770.7711753866, "sats": 31447372488.63993}, "total_volume": {"aed": 2467236.5577500695, "ars": 57906151.83850962, "aud": 871106.904799342, "bch": 1304.0334504462883, "bdt": 56971679.82072778, "bhd": 253270.35188898374, "bmd": 671731.593882319, "bnb": 15551.61605134393, "brl": 3599339.3994996254, "btc": 18.5142514843, "cad": 854697.1736923913, "chf": 596610.5062752715, "clp": 495267707.52809143, "cny": 4352148.99676355, "czk": 14477965.389264397, "dkk": 4116988.528645628, "dot": 40342.84353464914, "eos": 238441.72280711486, "eth": 483.9139427677743, "eur": 553418.836520232, "gbp": 492324.1763250414, "hkd": 5207565.594992984, "huf": 198091234.17601147, "idr": 9489048428.080109, "ils": 2182073.06151514, "inr": 49165479.57917387, "jpy": 69785859.4226373, "krw": 740469928.8599248, "kwd": 203621.99805354673, "lkr": 130011195.48867883, "ltc": 4322.872652657817, "mmk": 894940806.9405797, "mxn": 13200140.454195982, "myr": 2719169.4920356236, "ngn": 259266055.46095747, "nok": 5723922.312552347, "nzd": 942542.8728823513, "php": 32253966.986787274, "pkr": 107930910.4725777, "pln": 2509891.513961596, "rub": 49593742.05685343, "sar": 2519865.384667547, "sek": 5599437.685305683, "sgd": 892052.8393597804, "thb": 20132051.79839036, "try": 5018338.80499633, "twd": 18773151.546866663, "uah": 18896097.237031832, "usd": 671731.593882319, "vef": 67260.48449543655, "vnd": 15484415145.468212, "xag": 26604.829896045117, "xau": 364.7972766896718, "xdr": 466499.45519823505, "xlm": 2221960.6244543185, "xrp": 2271370.682146416, "yfi": 19.165556366325127, "zar": 10071996.585467407, "bits": 18514251.4843, "link": 32097.229312346077, "sats": 1851425148.43}}, "community_data": {"facebook_likes": null, "twitter_followers": 21070, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.833, "reddit_subscribers": 5442, "reddit_accounts_active_48h": "33.4615384615385"}, "developer_data": {"forks": 2, "stars": 17, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 340322, "bing_matches": null}}, "BLZ_20190917": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.12208452182058017, "ars": 1.8640299485477487, "aud": 0.048332488377019894, "bch": 0.00011138249099906615, "bdt": 2.808542698510886, "bhd": 0.012532476960061288, "bmd": 0.03323876513102256, "bnb": 0.0015985745594214113, "brl": 0.13578367943674044, "btc": 3.209942560319046e-06, "cad": 0.044175814603559835, "chf": 0.03290637747971234, "clp": 23.516592524024162, "cny": 0.2353138377450745, "czk": 0.7758958183299748, "dkk": 0.22412503786543478, "eos": 0.008914734415621213, "eth": 0.00018335079174632338, "eur": 0.029865030470223815, "gbp": 0.026580375699976143, "hkd": 0.2599387768923928, "huf": 9.94470613955066, "idr": 464.1768172750135, "ils": 0.11730957377691821, "inr": 2.360982726021668, "jpy": 3.5926226589923544, "krw": 39.212407215599285, "kwd": 0.010101360439613157, "lkr": 5.993281740774691, "ltc": 0.00048203167029101866, "mmk": 50.8235751084867, "mxn": 0.6450979536628857, "myr": 0.13855579244866761, "ngn": 12.015813594864655, "nok": 0.2986968389734216, "nzd": 0.05213108093372334, "php": 1.724404865024814, "pkr": 5.206852557774685, "pln": 0.12979903977489995, "rub": 2.1389145361813053, "sar": 0.12467694606820941, "sek": 0.3194079135265617, "sgd": 0.04565138310402136, "thb": 1.006469808167366, "try": 0.18900628817860177, "twd": 1.0280750055025283, "uah": 0.8232909735303, "usd": 0.03323876513102256, "vef": 8259.422378410172, "vnd": 766.912093153049, "xag": 0.001905350054645076, "xau": 2.232880525206705e-05, "xdr": 0.02420958753824083, "xlm": 0.5815390263111565, "xrp": 0.1301671214222081, "zar": 0.484548170043317, "bits": 3.209942560319046, "link": 0.02099533125894546, "sats": 320.9942560319046}, "market_cap": {"aed": 25553855.63091725, "ars": 390165366.4737179, "aud": 10116609.475560483, "bch": 23313.78337202346, "bdt": 587863994.3930678, "bhd": 2623208.103365129, "bmd": 6957299.687477124, "bnb": 334602.15019514214, "brl": 28421264.95331283, "btc": 671.8821317126404, "cad": 9246564.363143025, "chf": 6887726.690602354, "clp": 4922324315.388512, "cny": 49254203.13749436, "czk": 162404942.3347477, "dkk": 46912243.8739955, "eos": 1865968.2066785302, "eth": 38377.671405271474, "eur": 6251133.769198206, "gbp": 5563613.41408171, "hkd": 54408518.61096184, "huf": 2081554493.4962852, "idr": 97158158945.78716, "ils": 24554397.787013073, "inr": 494183954.10118854, "jpy": 751981982.6068789, "krw": 8207659562.288973, "kwd": 2114344.246923363, "lkr": 1254470706.649003, "ltc": 100895.40859445909, "mmk": 10638025866.030922, "mxn": 135027272.33455598, "myr": 29001503.747248404, "ngn": 2515063837.02298, "nok": 62521077.911544524, "nzd": 10911703.59844473, "php": 360940046.3955229, "pkr": 1089860996.0432918, "pln": 27168603.144582618, "rub": 447702234.8891536, "sar": 26096483.26274239, "sek": 66856171.34681151, "sgd": 9555419.768169206, "thb": 210667034.53680792, "try": 39561439.316194706, "twd": 215189279.3336675, "uah": 172325355.95912135, "usd": 6957299.687477124, "vef": 1728802995705.2395, "vnd": 160524533477.2155, "xag": 398814.1944342111, "xau": 4673.705211056513, "xdr": 5067377.056572719, "xlm": 121723573.96737893, "xrp": 27245647.352443174, "zar": 101422144.25600328, "bits": 671882131.7126404, "link": 4394592.0081732655, "sats": 67188213171.264046}, "total_volume": {"aed": 919741.3655399713, "ars": 14042938.651996281, "aud": 364119.77699478867, "bch": 839.1160717267559, "bdt": 21158561.774947878, "bhd": 94415.22398543658, "bmd": 250409.03445071777, "bnb": 12043.092164955, "brl": 1022945.9466346286, "btc": 24.182565567742838, "cad": 332804.8751915539, "chf": 247904.94410621066, "clp": 177165643.91905543, "cny": 1772770.759393859, "czk": 5845323.132086567, "dkk": 1688478.3206260921, "eos": 67160.43837972799, "eth": 1381.2996525589942, "eur": 224992.5174539703, "gbp": 200247.09666955017, "hkd": 1958286.292566675, "huf": 74919879.01731041, "idr": 3496943047.3745027, "ils": 883768.6052869206, "inr": 17786804.126068972, "jpy": 27065541.323146313, "krw": 295412329.2679766, "kwd": 76100.05679667655, "lkr": 45151253.00180903, "ltc": 3631.4551595535568, "mmk": 382886738.42373174, "mxn": 4859938.54061953, "myr": 1043830.0601078176, "ngn": 90522865.95393448, "nok": 2250275.7471879334, "nzd": 392737.02226988506, "php": 12991052.933250168, "pkr": 39226575.24670495, "pln": 977859.7999817778, "rub": 16113821.366903717, "sar": 939271.7677729224, "sek": 2406305.616554176, "sgd": 343921.2834579249, "thb": 7582385.563167756, "try": 1423906.1511868434, "twd": 7745151.435560706, "uah": 6202381.374309846, "usd": 250409.03445071777, "vef": 62223550566.504295, "vnd": 5777642941.849144, "xag": 14354.229634992997, "xau": 168.21727707295886, "xdr": 182386.4218783183, "xlm": 4381108.187983617, "xrp": 980632.7961968338, "zar": 3650413.5736427843, "bits": 24182565.56774284, "link": 158171.3582860702, "sats": 2418256556.774284}}, "community_data": {"facebook_likes": null, "twitter_followers": 36459, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 29, "stars": 206, "subscribers": 54, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 322, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 147, "deletions": -133}, "commit_count_4_weeks": 3}, "public_interest_stats": {"alexa_rank": 878308, "bing_matches": null}}, "POA_20190918": {"id": "poa-network", "symbol": "poa", "name": "POA Network", "localization": {"en": "POA Network", "de": "POA Network", "es": "POA Network", "fr": "POA Network", "it": "POA Network", "pl": "POA Network", "ro": "POA Network", "hu": "POA Network", "nl": "POA Network", "pt": "POA Network", "sv": "POA Network", "vi": "POA Network", "tr": "POA Network", "ru": "POA Network", "ja": "\u30dd\u30a2\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "POA Network", "zh-tw": "POA Network", "ko": "POA \ub124\ud2b8\uc6cc\ud06c", "ar": "POA Network", "th": "POA Network", "id": "POA Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3157/thumb/poa-network.png?1548331565", "small": "https://assets.coingecko.com/coins/images/3157/small/poa-network.png?1548331565"}, "market_data": {"current_price": {"aed": 0.05399434265087361, "ars": 0.8227613312962705, "aud": 0.0213760180216249, "bch": 4.828351375476748e-05, "bdt": 1.24213466663587, "bhd": 0.005542740759882769, "bmd": 0.01470051442240895, "bnb": 0.0007006085617691779, "brl": 0.06005160141554064, "btc": 1.4205985414269242e-06, "cad": 0.01953764519053061, "chf": 0.014553509278184868, "clp": 10.400687456426464, "cny": 0.10407082180200221, "czk": 0.3431555782137356, "dkk": 0.09912409869886155, "eos": 0.0036455883869685787, "eth": 7.806411152317529e-05, "eur": 0.01320841220853447, "gbp": 0.011754751839874553, "hkd": 0.11496757811761288, "huf": 4.39824691004054, "idr": 205.2915615246658, "ils": 0.05188252555100807, "inr": 1.0441878297838059, "jpy": 1.5889098468191345, "krw": 17.342478143758875, "kwd": 0.004467530434513363, "lkr": 2.650649755504566, "ltc": 0.00020825082134649117, "mmk": 22.47775138262807, "mxn": 0.285307583910113, "myr": 0.061279094369811875, "ngn": 5.313559269620942, "nok": 0.1321032327540938, "nzd": 0.023056022210846648, "php": 0.7626528388899144, "pkr": 2.3028355842703645, "pln": 0.05740624384522825, "rub": 0.9459781030820186, "sar": 0.05514089457273491, "sek": 0.1412645933421391, "sgd": 0.020189554203106714, "thb": 0.4451315767105442, "try": 0.0835918438709471, "twd": 0.45468691108510956, "uah": 0.3641170417286487, "usd": 0.01470051442240895, "vef": 3652.8961685542313, "vnd": 339.1823445207938, "xag": 0.0008426794993026245, "xau": 9.875364573541684e-06, "xdr": 0.010705546724518379, "xlm": 0.25431856831622696, "xrp": 0.0563254606151136, "zar": 0.21430233518814756, "bits": 1.4205985414269242, "link": 0.009335698785485142, "sats": 142.05985414269242}, "market_cap": {"aed": 11887805.968901677, "ars": 181145404.96229273, "aud": 4706307.034274281, "bch": 10630.466356907933, "bdt": 273477834.5148476, "bhd": 1220332.0469231214, "bmd": 3236577.2878579674, "bnb": 154251.32029695145, "brl": 13221418.220899815, "btc": 312.7698012620358, "cad": 4301556.861541216, "chf": 3204211.51497939, "clp": 2289894614.0459547, "cny": 22913025.25166176, "czk": 75551747.28819759, "dkk": 21823916.99429754, "eos": 802640.5223040994, "eth": 17187.18971953619, "eur": 2908064.6931403903, "gbp": 2588015.7480305526, "hkd": 25312138.16628649, "huf": 968351558.7542267, "idr": 45198554712.2608, "ils": 11422852.22203716, "inr": 229896350.36065352, "jpy": 349826500.95764315, "krw": 3818252155.155886, "kwd": 983605.5475119035, "lkr": 583587250.773672, "ltc": 45850.087907152985, "mmk": 4948873047.342683, "mxn": 62815492.002747454, "myr": 13491672.424435973, "ngn": 1169873703.4349406, "nok": 29084854.48187811, "nzd": 5076189.559885267, "php": 167911461.18728873, "pkr": 507009832.1429511, "pln": 12638996.137949796, "rub": 208273748.4736608, "sar": 12140239.577890856, "sek": 31101889.447671205, "sgd": 4445086.117948555, "thb": 98003560.27633952, "try": 18404217.400069855, "twd": 100107335.5134471, "uah": 80166782.84295431, "usd": 3236577.2878579674, "vef": 804249459190.6001, "vnd": 74676969878.34555, "xag": 185530.74062693, "xau": 2174.235524664352, "xdr": 2357014.7538415543, "xlm": 55992714.16230968, "xrp": 12401042.665358758, "zar": 47182435.31311905, "bits": 312769801.2620358, "link": 2055418.5919728528, "sats": 31276980126.20358}, "total_volume": {"aed": 233975.82101842144, "ars": 3565304.2252407093, "aud": 92629.54452568627, "bch": 209.22886024325328, "bdt": 5382591.289624091, "bhd": 24018.577804925957, "bmd": 63702.32069712267, "bnb": 3035.97479670079, "brl": 260223.98004774647, "btc": 6.155935858264563, "cad": 84663.25081090788, "chf": 63065.297490151475, "clp": 45069710.404817864, "cny": 450974.2091432115, "czk": 1487009.6422650097, "dkk": 429538.3782286295, "eos": 15797.572376268106, "eth": 338.2783026697896, "eur": 57236.53514636485, "gbp": 50937.33116422983, "hkd": 498193.55435995385, "huf": 19059097.32937216, "idr": 889598044.863137, "ils": 224824.60043635574, "inr": 4524820.430741122, "jpy": 6885285.896294658, "krw": 75150846.60660017, "kwd": 19359.32636681774, "lkr": 11486165.444898225, "ltc": 902.4215225169985, "mmk": 97403729.28335424, "mxn": 1236334.6400897573, "myr": 265543.12382595654, "ngn": 23025456.586783513, "nok": 572448.1644805546, "nzd": 99909.57313959488, "php": 3304833.7172118616, "pkr": 9978968.537204277, "pln": 248760.74743829967, "rub": 4099244.336859855, "sar": 238944.21981887255, "sek": 612147.4507390015, "sgd": 87488.19392454228, "thb": 1928906.2707088797, "try": 362231.84392878425, "twd": 1970312.7791620074, "uah": 1577842.7813470378, "usd": 63702.32069712267, "vef": 15829239475.308134, "vnd": 1469792271.5227606, "xag": 3651.6164106228593, "xau": 42.793307974706195, "xdr": 46390.76913143478, "xlm": 1102048.7128952192, "xrp": 244077.34671159548, "zar": 928644.7868441731, "bits": 6155935.858264563, "link": 40454.75286621022, "sats": 615593585.8264563}}, "community_data": {"facebook_likes": null, "twitter_followers": 17701, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 44, "stars": 58, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 133, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 617003, "bing_matches": null}}, "EDO_20190925": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "BLZ_20190926": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.1388213063323, "ars": 2.142262582145684, "aud": 0.055820678453951736, "bch": 0.00012276178628393283, "bdt": 3.1923964797732087, "bhd": 0.014248931825158939, "bmd": 0.037795073872120874, "bnb": 0.0018527360633618822, "brl": 0.15684214873482277, "btc": 3.75975013019685e-06, "cad": 0.050147826841115475, "chf": 0.0374704141875594, "clp": 27.12130586967067, "cny": 0.26802754587153277, "czk": 0.8872910250140207, "dkk": 0.2561861224569539, "eos": 0.009903216458333457, "eth": 0.00017892657632752947, "eur": 0.03430458541480893, "gbp": 0.030306131164655657, "hkd": 0.29633038694067065, "huf": 11.45341918620752, "idr": 531.2065900738481, "ils": 0.1331140612022405, "inr": 2.691034128853618, "jpy": 4.068970409230208, "krw": 45.132789153640715, "kwd": 0.011479951328065757, "lkr": 6.845000783657674, "ltc": 0.000520741700423739, "mmk": 57.934168477849944, "mxn": 0.7344867885864764, "myr": 0.1577951137274346, "ngn": 13.666893772535163, "nok": 0.34260478563600194, "nzd": 0.06030230492848607, "php": 1.9676223929688161, "pkr": 5.910569890551748, "pln": 0.15001632059844416, "rub": 2.418797799145835, "sar": 0.14177499135540644, "sek": 0.36664279277433565, "sgd": 0.0520350104696985, "thb": 1.151615900883526, "try": 0.21701640395303026, "twd": 1.1717227290031988, "uah": 0.9228456824971503, "usd": 0.037795073872120874, "vef": 9391.608794807767, "vnd": 879.0056729760192, "xag": 0.002101304816491945, "xau": 2.4961378588103525e-05, "xdr": 0.027570939463604133, "xlm": 0.5509162094142487, "xrp": 0.13541743307219503, "zar": 0.5639411665326162, "bits": 3.75975013019685, "link": 0.020869539080258, "sats": 375.97501301968504}, "market_cap": {"aed": 29060357.2075667, "ars": 448406137.96320236, "aud": 11684304.864024857, "bch": 25712.010521859112, "bdt": 668284894.4550108, "bhd": 2982820.5742005697, "bmd": 7911885.980824071, "bnb": 388042.19154649036, "brl": 32832776.090767484, "btc": 787.0501845475436, "cad": 10498463.481332986, "chf": 7845117.575031872, "clp": 5677678223.654772, "cny": 56108310.39213885, "czk": 185755472.67870855, "dkk": 53625663.42587399, "eos": 2076342.9586940585, "eth": 37501.24550640069, "eur": 7181199.574837002, "gbp": 6344177.421267679, "hkd": 62023212.61574494, "huf": 2396826739.030834, "idr": 111117314491.45361, "ils": 27865622.865032353, "inr": 563331487.8556467, "jpy": 852193194.9375445, "krw": 9447937130.335281, "kwd": 2403172.0715874583, "lkr": 1432908053.631273, "ltc": 109136.59795348029, "mmk": 12127732226.201822, "mxn": 153750097.8881576, "myr": 33032266.38388804, "ngn": 2860978803.909531, "nok": 71714125.7187872, "nzd": 12624996.45960096, "php": 411959394.32977235, "pkr": 1237297622.8055909, "pln": 31401088.674993474, "rub": 506706452.1901004, "sar": 29678671.096968114, "sek": 76742896.71254101, "sgd": 10892815.614275226, "thb": 241154284.69551682, "try": 45432818.46198495, "twd": 245284257.5299631, "uah": 193185224.15163314, "usd": 7911885.980824071, "vef": 1966005893054.588, "vnd": 184042163604.03485, "xag": 440050.94901087333, "xau": 5228.332493848139, "xdr": 5771602.144721431, "xlm": 115364916.65629004, "xrp": 28384451.30323686, "zar": 118023731.47328134, "bits": 787050184.5475436, "link": 4368741.010903096, "sats": 78705018454.75436}, "total_volume": {"aed": 1798992.05053768, "ars": 27761684.8397839, "aud": 723382.8829841077, "bch": 1590.875950309477, "bdt": 41370421.01829157, "bhd": 184652.59951346536, "bmd": 489788.1978049768, "bnb": 24009.69662217469, "brl": 2032525.022403885, "btc": 48.722784527337325, "cad": 649868.123434566, "chf": 485580.9171858326, "clp": 351466319.8957817, "cny": 3473381.983553778, "czk": 11498447.483938228, "dkk": 3319928.40245229, "eos": 128336.26302759079, "eth": 2318.718192095376, "eur": 444554.78837309417, "gbp": 392738.62556271243, "hkd": 3840159.8754800367, "huf": 148425415.4628203, "idr": 6883931998.511455, "ils": 1725031.5837281412, "inr": 34873241.964348555, "jpy": 52729985.14043674, "krw": 584878006.4901415, "kwd": 148769.24677767948, "lkr": 88704697.57897086, "ltc": 6748.316985314305, "mmk": 750771702.8442396, "mxn": 9518249.96322327, "myr": 2044874.5420233419, "ngn": 177109940.12316847, "nok": 4439832.055462562, "nzd": 781460.4981152265, "php": 25498514.14693989, "pkr": 76595362.25510888, "pln": 1944068.784092112, "rub": 31345318.146663625, "sar": 1837268.9981961413, "sek": 4751341.7573603075, "sgd": 674324.2277273678, "thb": 14923846.387117682, "try": 2812326.1181049505, "twd": 15184411.749197138, "uah": 11959202.016953727, "usd": 489788.1978049768, "vef": 121706314470.02759, "vnd": 11391077204.504381, "xag": 27230.911165586615, "xau": 323.47571735831906, "xdr": 357293.14347576397, "xlm": 7139349.912730105, "xrp": 1754881.0916528204, "zar": 7308140.964576629, "bits": 48722784.52733733, "link": 270449.37045830174, "sats": 4872278452.733732}}, "community_data": {"facebook_likes": null, "twitter_followers": 36433, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 29, "stars": 205, "subscribers": 54, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 322, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 145, "deletions": -132}, "commit_count_4_weeks": 3}, "public_interest_stats": {"alexa_rank": 550438, "bing_matches": null}}, "ONG_20191029": {"id": "ong", "symbol": "ong", "name": "Ontology Gas", "localization": {"en": "Ontology Gas", "de": "Ontology Gas", "es": "Ontology Gas", "fr": "Ontology Gas", "it": "Ontology Gas", "pl": "Ontology Gas", "ro": "Ontology Gas", "hu": "Ontology Gas", "nl": "Ontology Gas", "pt": "Ontology Gas", "sv": "Ontology Gas", "vi": "Ontology Gas", "tr": "Ontology Gas", "ru": "Ontology Gas", "ja": "Ontology Gas", "zh": "Ontology Gas", "zh-tw": "Ontology Gas", "ko": "Ontology Gas", "ar": "Ontology Gas", "th": "Ontology Gas", "id": "Ontology Gas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5716/thumb/ONG_logo.png?1583481389", "small": "https://assets.coingecko.com/coins/images/5716/small/ONG_logo.png?1583481389"}, "market_data": {"current_price": {"aed": 0.4941584640580255, "ars": 8.06205171776809, "aud": 0.19721132527873173, "bch": 0.0005194769504077277, "bdt": 11.39799658715403, "bhd": 0.050723996027637164, "bmd": 0.1345417691900205, "bnb": 0.007237492126051489, "brl": 0.5387725147214375, "btc": 1.5540004286920896e-05, "cad": 0.1757034780560159, "chf": 0.1337970804975537, "clp": 97.81189956750373, "cny": 0.9506317785659273, "czk": 3.102600468406472, "dkk": 0.9070402453483615, "eos": 0.042278149706023026, "eth": 0.0007409580540408552, "eur": 0.12142488848637774, "gbp": 0.1049180933662234, "hkd": 1.054572022353678, "huf": 39.92930626021431, "idr": 1887.7494176371556, "ils": 0.4754907935829103, "inr": 9.53093892942105, "jpy": 14.619981589863336, "krw": 157.65872789974327, "kwd": 0.04085602996639518, "lkr": 24.40409223450134, "ltc": 0.0023621651898883037, "mmk": 206.0251327644769, "mxn": 2.56459484176941, "myr": 0.5631918458294263, "ngn": 48.63684956219241, "nok": 1.2373268345329425, "nzd": 0.21191028264628037, "php": 6.886939553602229, "pkr": 20.96160763980526, "pln": 0.5194859521080468, "rub": 8.604026864763325, "sar": 0.5045802040412547, "sek": 1.3029294011899968, "sgd": 0.18339388558291642, "thb": 4.058048304142328, "try": 0.7769921712492879, "twd": 4.113883676523255, "uah": 3.3852953284919245, "usd": 0.1345417691900205, "vef": 33431.96700896095, "vnd": 3130.869305250984, "xag": 0.0074563250297763175, "xau": 8.943125939829858e-05, "xdr": 0.09781065532522214, "xlm": 2.118638194059572, "xrp": 0.4523677666344635, "zar": 1.9680574911550919, "bits": 15.540004286920896, "link": 0.04745480055604624, "sats": 1554.0004286920896}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 37301326.57451727, "ars": 608560301.7209545, "aud": 14886407.060613524, "bch": 39212.48098427318, "bdt": 860372580.6925412, "bhd": 3828877.735805084, "bmd": 10155824.164697468, "bnb": 546318.7965199832, "brl": 40668997.86753104, "btc": 1173.0301452607905, "cad": 13262897.009645052, "chf": 10099611.677945865, "clp": 7383286686.379457, "cny": 71758006.80050285, "czk": 234198383.1500063, "dkk": 68467519.77114093, "eos": 3191346.8732279306, "eth": 55930.88120929431, "eur": 9165702.39940861, "gbp": 7919694.4884660505, "hkd": 79603888.75893992, "huf": 3014045495.5989165, "idr": 142495904936.82193, "ils": 35892205.97166551, "inr": 719438583.8271685, "jpy": 1103582651.0357752, "krw": 11900797263.326307, "kwd": 3083998.8124453533, "lkr": 1842131786.4685707, "ltc": 178306.96341292225, "mmk": 15551713304.061985, "mxn": 193587273.48021346, "myr": 42512279.953423634, "ngn": 3671330435.5381346, "nok": 93399052.51305674, "nzd": 15995951.162255092, "php": 519857495.2623132, "pkr": 1582277404.8598704, "pln": 39213160.47352157, "rub": 649471048.8269019, "sar": 38088006.87013898, "sek": 98351032.37576324, "sgd": 13843403.91889908, "thb": 306319927.8323088, "try": 58650900.133544385, "twd": 310534635.4839543, "uah": 255537475.89849502, "usd": 10155824.164697468, "vef": 2523596801699.843, "vnd": 236332243423.00378, "xag": 562837.2985811586, "xau": 6750.677880516058, "xdr": 7383192.765317572, "xlm": 159924439.057229, "xrp": 34146774.81480062, "zar": 148557923.28669104, "bits": 1173030145.2607906, "link": 3582104.004722282, "sats": 117303014526.07906}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.333, "reddit_average_comments_48h": 2.267, "reddit_subscribers": 16269, "reddit_accounts_active_48h": "334.625"}, "developer_data": {"forks": 3, "stars": 0, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 327053, "bing_matches": null}}, "NEBL_20191105": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.7610057414919993, "ars": 28.53279115937957, "aud": 0.6939773887835878, "bch": 0.0017229440886655505, "bdt": 40.64654094262594, "bhd": 0.1806546749035752, "bmd": 0.4794648257451885, "bnb": 0.023819106015692044, "brl": 1.9132084941710246, "btc": 5.1854879551539405e-05, "cad": 0.6308558444742316, "chf": 0.4730558194194529, "clp": 355.95468663322805, "cny": 3.3741857646991904, "czk": 10.953613676561723, "dkk": 3.2084827209216527, "eos": 0.14329786372016065, "eth": 0.0026149401451162116, "eur": 0.42931088711293885, "gbp": 0.3704824708533073, "hkd": 3.7573740534347464, "huf": 140.85238185916424, "idr": 6708.767734791845, "ils": 1.690161457234366, "inr": 33.90056242217289, "jpy": 51.88050343240537, "krw": 558.4326825454222, "kwd": 0.14543702452293977, "lkr": 86.86344957176951, "ltc": 0.008235318197490824, "mmk": 729.7397251107477, "mxn": 9.16252487350799, "myr": 1.997210731641586, "ngn": 173.56626691975825, "nok": 4.361053831585743, "nzd": 0.7459005526228352, "php": 24.152951895921095, "pkr": 74.29892613795028, "pln": 1.8258696609781084, "rub": 30.453831711479147, "sar": 1.798041522491856, "sek": 4.641411299143723, "sgd": 0.6511611798445418, "thb": 14.432565861940011, "try": 2.7387030846565183, "twd": 14.599224958580093, "uah": 11.895752469854484, "usd": 0.4794648257451885, "vef": 119141.08408691408, "vnd": 11089.745183977768, "xag": 0.02646572000530279, "xau": 0.0003167104906459844, "xdr": 0.3473991162826311, "xlm": 7.008357040784278, "xrp": 1.6327017164301991, "zar": 7.205637133711552, "bits": 51.854879551539405, "link": 0.17665810085211783, "sats": 5185.487955153941}, "market_cap": {"aed": 27616646.650581505, "ars": 447460217.10060465, "aud": 10883171.972677277, "bch": 26979.781975849506, "bdt": 637431856.3151578, "bhd": 2833083.507360265, "bmd": 7519118.400357406, "bnb": 373633.08969966194, "brl": 30003538.15294616, "btc": 812.8552925887972, "cad": 9893280.035270255, "chf": 7418610.344699825, "clp": 5582193500.425335, "cny": 52915043.83067522, "czk": 171778019.4153652, "dkk": 50316436.51151164, "eos": 2245305.927023703, "eth": 41010.11290197126, "eur": 6732588.539206417, "gbp": 5810022.787956162, "hkd": 58924323.25624084, "huf": 2208891412.472992, "idr": 105209008481.48053, "ils": 26505644.27309987, "inr": 531639296.57374364, "jpy": 813606394.1126751, "krw": 8757517200.896294, "kwd": 2280789.222617208, "lkr": 1362219973.0261722, "ltc": 129082.87334493278, "mmk": 11444008193.977589, "mxn": 143689600.7189897, "myr": 31320887.69668873, "ngn": 2721920860.929381, "nok": 68391419.66057883, "nzd": 11697447.380725605, "php": 378774198.3810997, "pkr": 1165179159.4563403, "pln": 28633863.064255465, "rub": 477586580.0526212, "sar": 28197453.432298694, "sek": 72788073.76281981, "sgd": 10211714.699525408, "thb": 226336043.25034684, "try": 42949204.30284152, "twd": 228949643.6916007, "uah": 186552936.68969926, "usd": 7519118.400357406, "vef": 1868408003035.727, "vnd": 173912876588.0257, "xag": 415043.7562573921, "xau": 4966.7536593560835, "xdr": 5448022.351689358, "xlm": 109830236.00353986, "xrp": 25586166.433652923, "zar": 113001070.8797711, "bits": 812855292.5887972, "link": 2769218.1236985736, "sats": 81285529258.87971}, "total_volume": {"aed": 235425.40859458345, "ars": 3814492.967722884, "aud": 92776.47792979701, "bch": 230.33702077316727, "bdt": 5433956.451082731, "bhd": 24151.369669960306, "bmd": 64098.713506837594, "bnb": 3184.329632764844, "brl": 255773.09650633388, "btc": 6.932377287822454, "cad": 84337.88229662154, "chf": 63241.90600339174, "clp": 47586884.90747625, "cny": 451088.286433019, "czk": 1464367.1594204607, "dkk": 428935.7710450558, "eos": 19157.210747346693, "eth": 349.5862265575472, "eur": 57393.731679168355, "gbp": 49529.07592673343, "hkd": 502315.97826768376, "huf": 18830279.066903707, "idr": 896882019.1303754, "ils": 225954.37498295345, "inr": 4532099.794895811, "jpy": 6935802.894270242, "krw": 74655771.6214139, "kwd": 19443.190965456095, "lkr": 11612604.448434584, "ltc": 1100.963560691204, "mmk": 97557474.63170739, "mxn": 1224920.0052443175, "myr": 267003.19111273246, "ngn": 23203734.28947521, "nok": 583020.745482738, "nzd": 99717.98401030619, "php": 3228960.834644943, "pkr": 9932877.918584112, "pln": 244096.9389526421, "rub": 4071313.1167143523, "sar": 240376.64962070502, "sek": 620501.1862315906, "sgd": 87052.46281363632, "thb": 1929461.4634457175, "try": 366131.85155105655, "twd": 1951741.7916684144, "uah": 1590319.8494871238, "usd": 64098.713506837594, "vef": 15927738189.995451, "vnd": 1482566314.0290458, "xag": 3538.150273558639, "xau": 42.34040520694159, "xdr": 46443.10746366026, "xlm": 936933.5266933659, "xrp": 218272.6947715654, "zar": 963307.515937507, "bits": 6932377.287822453, "link": 23617.075512437747, "sats": 693237728.7822454}}, "community_data": {"facebook_likes": null, "twitter_followers": 40220, "reddit_average_posts_48h": 0.059, "reddit_average_comments_48h": 0.353, "reddit_subscribers": 6084, "reddit_accounts_active_48h": "204.722222222222"}, "developer_data": {"forks": 40, "stars": 102, "subscribers": 33, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 90, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 508848, "bing_matches": null}}, "EDO_20191121": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "NAV_20191219": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.32537746176768373, "ars": 5.292201208577926, "aud": 0.12889760622371427, "bch": 0.00042780668145158427, "bdt": 7.523316249334381, "bhd": 0.033403524295866224, "bmd": 0.08858424506040126, "bnb": 0.006165175379475248, "brl": 0.3638909682398591, "btc": 1.2448122316129112e-05, "cad": 0.11679673259572787, "chf": 0.08716335376963237, "clp": 67.71381756429982, "cny": 0.6176890823816718, "czk": 2.029456195909291, "dkk": 0.5950823830422577, "eos": 0.034564807290296304, "eth": 0.0006223388960428956, "eur": 0.07962775779507926, "gbp": 0.06633817218262765, "hkd": 0.6909783716899445, "huf": 26.231645753016846, "idr": 1237.183381990339, "ils": 0.3085401657248081, "inr": 6.261729549827475, "jpy": 9.692535010110088, "krw": 104.01960967564669, "kwd": 0.026872030739072704, "lkr": 16.038511619373807, "ltc": 0.0020355111588426667, "mmk": 133.68359887620733, "mxn": 1.6863811079106936, "myr": 0.36625147261798324, "ngn": 32.16605253105513, "nok": 0.7998891576219052, "nzd": 0.13440595175006026, "php": 4.481547736417501, "pkr": 13.728815089340577, "pln": 0.34010689569934704, "rub": 5.570002464098274, "sar": 0.33224849873579426, "sek": 0.8310849853623757, "sgd": 0.1200097717483137, "thb": 2.6754000205111796, "try": 0.5147516206783792, "twd": 2.6782382597229097, "uah": 2.0799565680860566, "usd": 0.08858424506040126, "vef": 22012.090194758053, "vnd": 2062.2064449712557, "xag": 0.005230691497840803, "xau": 6.008580758201959e-05, "xdr": 0.0640017627191597, "xlm": 1.7354482468729349, "xrp": 0.40727317363161214, "zar": 1.286804419469487, "bits": 12.448122316129112, "link": 0.042693011431614046, "sats": 1244.812231612911}, "market_cap": {"aed": 21739313.75904152, "ars": 353565089.1374965, "aud": 8607722.678666167, "bch": 28587.1270764723, "bdt": 502652308.99597484, "bhd": 2231776.2618852826, "bmd": 5918543.610899707, "bnb": 411911.0488396889, "brl": 24312501.20912156, "btc": 831.6955000833788, "cad": 7803067.082046273, "chf": 5823734.460796698, "clp": 4524136115.192392, "cny": 41269412.74444255, "czk": 135591206.29234874, "dkk": 39756502.7895371, "eos": 2309192.5976125794, "eth": 41567.42550436476, "eur": 5319853.331939145, "gbp": 4432574.866511114, "hkd": 46168072.92031202, "huf": 1752343831.7624164, "idr": 82660539752.30743, "ils": 20614370.256374218, "inr": 418362423.19436896, "jpy": 647537203.0900372, "krw": 6949820431.774311, "kwd": 1795390.2043664276, "lkr": 1071574639.5813447, "ltc": 135907.36359973947, "mmk": 8931748636.242977, "mxn": 112634619.7503097, "myr": 24470212.640721187, "ngn": 2149097557.5366983, "nok": 53436719.188468486, "nzd": 8977690.839783449, "php": 299404993.7118169, "pkr": 917257812.3439114, "pln": 22721756.487189237, "rub": 372146339.048285, "sar": 22198385.594220947, "sek": 55526207.74340412, "sgd": 8017028.352123911, "thb": 178677872.3412565, "try": 34391343.006256565, "twd": 178940057.90467572, "uah": 138967303.36868334, "usd": 5918543.610899707, "vef": 1470684947372.9985, "vnd": 137772875098.68695, "xag": 349547.8243947062, "xau": 4015.02161476214, "xdr": 4276124.084700593, "xlm": 115949682.65985823, "xrp": 27188658.964382473, "zar": 85974066.57152317, "bits": 831695500.0833788, "link": 2852445.0990230264, "sats": 83169550008.33788}, "total_volume": {"aed": 371490.34708247293, "ars": 6042218.330440485, "aud": 147165.13004313863, "bch": 488.4359590035822, "bdt": 8589529.678831674, "bhd": 38137.511943925376, "bmd": 101138.5108382935, "bnb": 7038.911451035999, "brl": 415462.03402410523, "btc": 14.212285186014592, "cad": 133349.30604709475, "chf": 99516.2491244472, "clp": 77310301.25006457, "cny": 705228.7222243365, "czk": 2317073.169454225, "dkk": 679418.1742584043, "eos": 39463.37336136376, "eth": 710.5375130714118, "eur": 90912.69942296614, "gbp": 75739.69774998356, "hkd": 788904.6577812905, "huf": 29949226.14612563, "idr": 1412518499.2327766, "ils": 352266.84918892756, "inr": 7149149.3945663925, "jpy": 11066172.731981263, "krw": 118761393.89574426, "kwd": 30680.36726279631, "lkr": 18311508.78059745, "ltc": 2323.986249018713, "mmk": 152629399.33195078, "mxn": 1925377.067260932, "myr": 418157.0719224128, "ngn": 36724664.19191156, "nok": 913250.4113165386, "nzd": 153454.12492408554, "php": 5116678.072979425, "pkr": 15674479.279734684, "pln": 388307.2541106211, "rub": 6359389.914091491, "sar": 379335.1556756458, "sek": 948867.3492933516, "sgd": 137017.7009737105, "thb": 3054560.929957028, "try": 587702.8396134255, "twd": 3057801.4078442818, "uah": 2374730.5151284477, "usd": 101138.5108382935, "vef": 25131670097.973366, "vnd": 2354464823.2122016, "xag": 5971.991389500761, "xau": 68.60124051650612, "xdr": 73072.16952662372, "xlm": 1981398.0601852713, "xrp": 464992.41775330214, "zar": 1469171.8898381856, "bits": 14212285.186014593, "link": 48743.51637191822, "sats": 1421228518.6014593}}, "community_data": {"facebook_likes": null, "twitter_followers": 49996, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 14096, "reddit_accounts_active_48h": "162.0"}, "developer_data": {"forks": 76, "stars": 88, "subscribers": 25, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 272, "pull_request_contributors": 24, "code_additions_deletions_4_weeks": {"additions": 1721, "deletions": -641}, "commit_count_4_weeks": 33}, "public_interest_stats": {"alexa_rank": 588918, "bing_matches": null}}, "EDO_20200108": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "ONG_20200109": {"id": "ong", "symbol": "ong", "name": "Ontology Gas", "localization": {"en": "Ontology Gas", "de": "Ontology Gas", "es": "Ontology Gas", "fr": "Ontology Gas", "it": "Ontology Gas", "pl": "Ontology Gas", "ro": "Ontology Gas", "hu": "Ontology Gas", "nl": "Ontology Gas", "pt": "Ontology Gas", "sv": "Ontology Gas", "vi": "Ontology Gas", "tr": "Ontology Gas", "ru": "Ontology Gas", "ja": "Ontology Gas", "zh": "Ontology Gas", "zh-tw": "Ontology Gas", "ko": "Ontology Gas", "ar": "Ontology Gas", "th": "Ontology Gas", "id": "Ontology Gas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5716/thumb/ONG_logo.png?1583481389", "small": "https://assets.coingecko.com/coins/images/5716/small/ONG_logo.png?1583481389"}, "market_data": {"current_price": {"aed": 0.366465168219655, "ars": 5.955851794921027, "aud": 0.14368161156880552, "bch": 0.0004481885932137771, "bdt": 8.458425865084237, "bhd": 0.037621935438205044, "bmd": 0.09977176047047058, "bnb": 0.007133394570856351, "brl": 0.40519866084126144, "btc": 1.3586876288536569e-05, "cad": 0.12956909559377894, "chf": 0.09690451961807016, "clp": 76.25562726575875, "cny": 0.6949601975570624, "czk": 2.266614455281103, "dkk": 0.667847221649212, "eos": 0.03724546978874289, "eth": 0.0007391544921955336, "eur": 0.08936516676635854, "gbp": 0.07625745219102949, "hkd": 0.7763609837721058, "huf": 29.464432077821566, "idr": 1390.0194134980293, "ils": 0.3465761666286685, "inr": 7.159985498743164, "jpy": 10.768615536979054, "krw": 116.32838456334046, "kwd": 0.03023343748832479, "lkr": 18.09875329260499, "ltc": 0.0023117226587110714, "mmk": 146.11501168245604, "mxn": 1.8899624905456553, "myr": 0.40931364733010533, "ngn": 36.26185228691842, "nok": 0.8816240821671094, "nzd": 0.14991335572779133, "php": 5.096911421127437, "pkr": 15.454097750367339, "pln": 0.37923146383065387, "rub": 6.191692182549367, "sar": 0.3743436452852052, "sek": 0.9387577821699623, "sgd": 0.13468888348232103, "thb": 3.008121471565739, "try": 0.5956109704921848, "twd": 2.998369380610308, "uah": 2.361217639472172, "usd": 0.09977176047047058, "vef": 24792.04952154109, "vnd": 2304.693583936545, "xag": 0.005488448534351008, "xau": 6.356957718376033e-05, "xdr": 0.07223186119956707, "xlm": 2.201422221258756, "xrp": 0.5154322301743686, "zar": 1.428438779820156, "bits": 13.586876288536569, "link": 0.05566543028073932, "sats": 1358.6876288536569}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 11274814.111002829, "ars": 183240121.25530988, "aud": 4420565.9967023, "bch": 13789.14972930891, "bdt": 260235317.21672675, "bhd": 1157491.5308394677, "bmd": 3069617.9347604434, "bnb": 219468.8738293259, "brl": 12466504.255253458, "btc": 418.0192765567881, "cad": 3986374.6790663223, "chf": 2981403.254551296, "clp": 2346111163.8965197, "cny": 21381423.724573854, "czk": 69735567.96341583, "dkk": 20547255.0508027, "eos": 1145909.0379180133, "eth": 22741.123090372752, "eur": 2749444.5056931875, "gbp": 2346167.3102781633, "hkd": 23885832.909006875, "huf": 906514515.9023312, "idr": 42765893888.39736, "ils": 10662901.12379799, "inr": 220286980.96463537, "jpy": 331311537.74353117, "krw": 3579005661.4569383, "kwd": 930174.044298717, "lkr": 556833491.1783768, "ltc": 71123.38501305519, "mmk": 4495432959.017961, "mxn": 58147342.791656114, "myr": 12593107.57735471, "ngn": 1115646667.9818, "nok": 27124399.54527856, "nzd": 4612294.332907444, "php": 156813617.76520655, "pkr": 475466959.75269336, "pln": 11667587.073845094, "rub": 190496081.05987877, "sar": 11517206.49122117, "sek": 28882197.837911543, "sgd": 4143892.1233885507, "thb": 92549069.75194739, "try": 18324805.62176714, "twd": 92249033.016532, "uah": 72646167.41068427, "usd": 3069617.9347604434, "vef": 762762123189.3119, "vnd": 70907125683.85307, "xag": 168859.80537588944, "xau": 1955.8070671326163, "xdr": 2222314.365846453, "xlm": 67729837.58621833, "xrp": 15857994.390758416, "zar": 43947919.49713097, "bits": 418019276.5567881, "link": 1712624.91841554, "sats": 41801927655.67881}}, "community_data": {"facebook_likes": null, "twitter_followers": 81581, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 16275, "reddit_accounts_active_48h": "905.0"}, "developer_data": {"forks": 3, "stars": 0, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 336672, "bing_matches": null}}, "GNT_20200110": {"id": "greentrust", "symbol": "gnt", "name": "GreenTrust", "localization": {"en": "GreenTrust", "de": "GreenTrust", "es": "GreenTrust", "fr": "GreenTrust", "it": "GreenTrust", "pl": "GreenTrust", "ro": "GreenTrust", "hu": "GreenTrust", "nl": "GreenTrust", "pt": "GreenTrust", "sv": "GreenTrust", "vi": "GreenTrust", "tr": "GreenTrust", "ru": "GreenTrust", "ja": "GreenTrust", "zh": "GreenTrust", "zh-tw": "GreenTrust", "ko": "GreenTrust", "ar": "GreenTrust", "th": "GreenTrust", "id": "GreenTrust"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15171/thumb/U4tF68c.png?1620013363", "small": "https://assets.coingecko.com/coins/images/15171/small/U4tF68c.png?1620013363"}}, "SYS_20200226": {"id": "syscoin", "symbol": "sys", "name": "Syscoin", "localization": {"en": "Syscoin", "de": "Syscoin", "es": "Syscoin", "fr": "Syscoin", "it": "Syscoin", "pl": "Syscoin", "ro": "Syscoin", "hu": "Syscoin", "nl": "Syscoin", "pt": "Syscoin", "sv": "Syscoin", "vi": "Syscoin", "tr": "Syscoin", "ru": "Syscoin", "ja": "\u30b7\u30b9\u30b3\u30a4\u30f3", "zh": "\u7cfb\u7edf\u5e01", "zh-tw": "\u7cfb\u7d71\u5e63", "ko": "\uc2dc\uc2a4\ucf54\uc778", "ar": "Syscoin", "th": "Syscoin", "id": "Syscoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/119/thumb/Syscoin.png?1560401261", "small": "https://assets.coingecko.com/coins/images/119/small/Syscoin.png?1560401261"}, "market_data": {"current_price": {"aed": 0.1233600754812854, "ars": 2.074062836142488, "aud": 0.05067300898673876, "bch": 9.01731346391253e-05, "bdt": 2.854115792106638, "bhd": 0.012656968084275404, "bmd": 0.03358381669424087, "bnb": 0.0015317955454855218, "brl": 0.14741952176103978, "btc": 3.4791666512144924e-06, "cad": 0.0444144296590501, "chf": 0.03285001029947169, "clp": 26.994609392931746, "cny": 0.23600019667376945, "czk": 0.775831503789502, "dkk": 0.23124472822986472, "eos": 0.008209306339606832, "eth": 0.00012860587559078922, "eur": 0.030961256448587594, "gbp": 0.025911459435174755, "hkd": 0.26153665921173624, "huf": 10.428782598062618, "idr": 462.62615938558486, "ils": 0.11475522996788703, "inr": 2.4142566226072417, "jpy": 3.7474515150743346, "krw": 40.538017617117255, "kwd": 0.010294413747468955, "lkr": 6.102880521933256, "ltc": 0.0004483625895203197, "mmk": 48.78952319409275, "mxn": 0.6350230906799893, "myr": 0.14068596651384452, "ngn": 12.200900122238158, "nok": 0.3116880443575801, "nzd": 0.05289917944394994, "php": 1.709091413477978, "pkr": 5.181982915921351, "pln": 0.13275011062899533, "rub": 2.1518595460117975, "sar": 0.12597840416603548, "sek": 0.3264454450893632, "sgd": 0.04693808556453889, "thb": 1.0593699288321357, "try": 0.20474038009477005, "twd": 1.021015195138311, "uah": 0.8218891560155848, "usd": 0.03358381669424087, "vef": 8345.163427805854, "vnd": 777.6534929120463, "xag": 0.0018156365085300712, "xau": 2.0432729914943086e-05, "xdr": 0.024663585558266848, "xlm": 0.47822347304174206, "xrp": 0.12226353775027189, "zar": 0.5038677411705353, "bits": 3.4791666512144923, "link": 0.008196467548755344, "sats": 347.9166651214492}, "market_cap": {"aed": 71355746.9212046, "ars": 1199709892.0137343, "aud": 29311026.204277884, "bch": 52210.006642882785, "bdt": 1650919581.1595514, "bhd": 7321229.400093321, "bmd": 19426044.571818728, "bnb": 885804.3739187095, "brl": 85272565.25245553, "btc": 2012.4352218150239, "cad": 25690846.81600738, "chf": 19001585.497924503, "clp": 15614618494.384989, "cny": 136510700.4150845, "czk": 448767854.7691838, "dkk": 133759972.50371507, "eos": 4760215.172788332, "eth": 74411.28510633952, "eur": 17909064.751205407, "gbp": 14988086.985208465, "hkd": 151281876.18660408, "huf": 6032369620.88686, "idr": 267599018721.85953, "ils": 66378405.78101312, "inr": 1396489779.1566195, "jpy": 2167655952.429247, "krw": 23448595621.3053, "kwd": 5954646.016555019, "lkr": 3530117797.9538527, "ltc": 259511.26518336113, "mmk": 28221552685.18838, "mxn": 367319384.09487075, "myr": 81377643.31580587, "ngn": 7057423870.216385, "nok": 180291177.06659237, "nzd": 30598720.420809958, "php": 988597760.5764302, "pkr": 2997438677.431636, "pln": 76787268.98348518, "rub": 1244710207.7080846, "sar": 72870279.06020187, "sek": 188827369.57234097, "sgd": 27150616.935356725, "thb": 612776315.5361251, "try": 118428938.12763572, "twd": 590590607.072433, "uah": 475409198.5200457, "usd": 19426044.571818728, "vef": 4827132013719.818, "vnd": 449821756481.0175, "xag": 1050227.1395191047, "xau": 11818.999777940231, "xdr": 14266273.44705338, "xlm": 277005688.88931316, "xrp": 70697233.5081993, "zar": 291454580.263922, "bits": 2012435221.815024, "link": 4741037.6228517685, "sats": 201243522181.50238}, "total_volume": {"aed": 1670840.883634333, "ars": 28091981.69126587, "aud": 686336.602677076, "bch": 1221.3429618350933, "bdt": 38657347.877527975, "bhd": 171431.3132150323, "bmd": 454873.375703565, "bnb": 20747.28483085633, "brl": 1996712.16998837, "btc": 47.123300299116785, "cad": 601567.7650010865, "chf": 444934.39244444197, "clp": 365626373.3260466, "cny": 3196486.1857440923, "czk": 10508189.057809563, "dkk": 3132076.115744465, "eos": 111190.30695287223, "eth": 1741.8922124871767, "eur": 419352.3137948736, "gbp": 350955.7335305826, "hkd": 3542362.803161568, "huf": 141251829.35722807, "idr": 6266003793.564751, "ils": 1554293.2273115658, "inr": 32699709.79589005, "jpy": 50757063.63177055, "krw": 549064005.6105013, "kwd": 139431.88098103803, "lkr": 82659987.3921824, "ltc": 6072.8119883191775, "mmk": 660825876.8298404, "mxn": 8601020.531321928, "myr": 1905510.0581598056, "ngn": 165254136.41196507, "nok": 4221634.312567216, "nzd": 716488.7941323387, "php": 23148654.833148293, "pkr": 70186961.87105988, "pln": 1798023.4794810524, "rub": 29145693.136842933, "sar": 1706304.6314976895, "sek": 4421514.771318874, "sgd": 635749.2248183318, "thb": 14348553.055595797, "try": 2773090.0476392144, "twd": 13829060.368139787, "uah": 11132013.32221045, "usd": 454873.375703565, "vef": 113030412646.78352, "vnd": 10532866846.823608, "xag": 24591.7465309217, "xau": 276.749510511806, "xdr": 334054.0035095653, "xlm": 6477260.387157945, "xrp": 1655988.9141922186, "zar": 6824597.168959517, "bits": 47123300.29911678, "link": 111016.41295542284, "sats": 4712330029.911678}}, "community_data": {"facebook_likes": null, "twitter_followers": 59014, "reddit_average_posts_48h": 0.091, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 4519, "reddit_accounts_active_48h": "321.5"}, "developer_data": {"forks": 45, "stars": 109, "subscribers": 54, "total_issues": 235, "closed_issues": 232, "pull_requests_merged": 133, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 60, "deletions": -112}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 833412, "bing_matches": null}}, "QLC_20200312": {"id": "qlink", "symbol": "qlc", "name": "QLC Chain", "localization": {"en": "QLC Chain", "de": "QLC Chain", "es": "QLC Chain", "fr": "QLC Chain", "it": "QLC Chain", "pl": "QLC Chain", "ro": "QLC Chain", "hu": "QLC Chain", "nl": "QLC Chain", "pt": "QLC Chain", "sv": "QLC Chain", "vi": "QLC Chain", "tr": "QLC Chain", "ru": "QLC Chain", "ja": "QLC Chain", "zh": "QLC Chain", "zh-tw": "QLC Chain", "ko": "\ud050\ub9c1\ud06c", "ar": "QLC Chain", "th": "QLC Chain", "id": "QLC Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2053/thumb/QLC_Chain_logo.jpg?1547036348", "small": "https://assets.coingecko.com/coins/images/2053/small/QLC_Chain_logo.jpg?1547036348"}, "market_data": {"current_price": {"aed": 0.04462338813549421, "ars": 0.7517050115276238, "aud": 0.01837512883297969, "bch": 4.461367912263937e-05, "bdt": 1.0323144326545748, "bhd": 0.004580333293996514, "bmd": 0.01214897402748045, "bnb": 0.0007158864629417289, "brl": 0.05622383598563392, "btc": 1.5102075814570048e-06, "cad": 0.01654727924362329, "chf": 0.011266472554124279, "clp": 10.042341882519446, "cny": 0.08421790285589727, "czk": 0.271338818472982, "dkk": 0.07970243293423349, "eos": 0.004001412846518711, "eth": 6.112670934757875e-05, "eur": 0.010667758965076012, "gbp": 0.009274526772578574, "hkd": 0.09440178033443274, "huf": 3.5826467053942705, "idr": 171.65926869255836, "ils": 0.04234694982914699, "inr": 0.8990692236210397, "jpy": 1.2619523001522508, "krw": 14.441485390019096, "kwd": 0.003710685435161415, "lkr": 2.2115193038624166, "ltc": 0.0002373024010381477, "mmk": 16.562863315759113, "mxn": 0.2560922326866889, "myr": 0.05069280902706495, "ngn": 4.452598981071585, "nok": 0.11521344665349385, "nzd": 0.01919517243086064, "php": 0.6086434679268067, "pkr": 1.8764236416111433, "pln": 0.04601602502826425, "rub": 0.8769639709944547, "sar": 0.04559813676864106, "sek": 0.11398774881283545, "sgd": 0.016726634547190918, "thb": 0.3814777480159636, "try": 0.07445134263520578, "twd": 0.363435549667233, "uah": 0.30355942836458866, "usd": 0.01214897402748045, "vef": 3018.8699117357705, "vnd": 280.56197864228517, "xag": 0.0006939503683676058, "xau": 7.144690135820982e-06, "xdr": 0.008754599280098531, "xlm": 0.2409458595465852, "xrp": 0.05950169501695188, "zar": 0.19535455474191116, "bits": 1.5102075814570048, "link": 0.0030040352237155486, "sats": 151.02075814570048}, "market_cap": {"aed": 10827684.567470035, "ars": 182498337.1855551, "aud": 4454084.362242358, "bch": 10766.124102425561, "bdt": 250486919.93738785, "bhd": 1111399.3399758681, "bmd": 2947899.388287619, "bnb": 170498.57837496014, "brl": 13642486.29837647, "btc": 364.90693589862286, "cad": 4015171.6223202264, "chf": 2734483.2641731487, "clp": 2436733758.170321, "cny": 20435133.349548616, "czk": 65875086.285399765, "dkk": 19344080.411150694, "eos": 967729.2132935717, "eth": 14562.267738332686, "eur": 2589210.7823183327, "gbp": 2249577.397994942, "hkd": 22904736.06208654, "huf": 869497316.2202457, "idr": 41665415392.69745, "ils": 10275316.023790874, "inr": 218155509.12741083, "jpy": 306257267.449201, "krw": 3504167994.0137954, "kwd": 900382.8059634643, "lkr": 536616210.413801, "ltc": 56858.82069572052, "mmk": 4018911763.7732906, "mxn": 62035055.261536725, "myr": 12300404.987568915, "ngn": 1080405125.8074124, "nok": 28052791.31512447, "nzd": 4654683.019816546, "php": 147714701.52993396, "pkr": 455306603.8960867, "pln": 11164927.205389524, "rub": 212306387.3897496, "sar": 11064203.379090501, "sek": 27654117.401852474, "sgd": 4059077.6358093526, "thb": 92543054.69648589, "try": 18080940.89806212, "twd": 88186165.52497502, "uah": 73657466.9729946, "usd": 2947899.388287619, "vef": 732516568559.2773, "vnd": 68111669743.80543, "xag": 168580.2252422733, "xau": 1734.5145210745525, "xdr": 2124268.090797612, "xlm": 57752081.053176746, "xrp": 14189968.198225575, "zar": 47235076.26834888, "bits": 364906935.8986229, "link": 725856.0361351115, "sats": 36490693589.86229}, "total_volume": {"aed": 623424.9080265749, "ars": 10501928.41143693, "aud": 256715.44634605898, "bch": 623.2892652459846, "bdt": 14422269.51207851, "bhd": 63990.96935155237, "bmd": 169731.0162263268, "bnb": 10001.514249921365, "brl": 785492.5688702831, "btc": 21.098824224465, "cad": 231178.905761761, "chf": 157401.75520764655, "clp": 140299657.3337577, "cny": 1176592.3775825205, "czk": 3790823.2659726264, "dkk": 1113507.6021266007, "eos": 55902.98137476142, "eth": 853.9896844513643, "eur": 149037.24099699687, "gbp": 129572.65778717784, "hkd": 1318869.4019342386, "huf": 50052478.89336223, "idr": 2398219146.238347, "ils": 591621.2193991342, "inr": 12560725.921204483, "jpy": 17630496.68634554, "krw": 201759258.47904173, "kwd": 51841.28374803953, "lkr": 30896717.533484805, "ltc": 3315.306921394846, "mmk": 231396627.88336357, "mxn": 3577816.102270089, "myr": 708219.6383059715, "ngn": 62206417.446948774, "nok": 1609625.2522395698, "nzd": 268172.1202103204, "php": 8503242.668645082, "pkr": 26215159.47283777, "pln": 642881.174416598, "rub": 12251897.621484423, "sar": 637042.9366514619, "sek": 1592501.259743513, "sgd": 233684.64475430938, "thb": 5329553.400313607, "try": 1040145.613638177, "twd": 5077489.262736214, "uah": 4240971.307112903, "usd": 169731.0162263268, "vef": 42176060037.24896, "vnd": 3919678290.6696095, "xag": 9695.049225329087, "xau": 99.81711333254059, "xdr": 122308.84921675613, "xlm": 3366208.9904762963, "xrp": 831286.9168682119, "zar": 2729261.5019000648, "bits": 21098824.224465, "link": 41968.80741926021, "sats": 2109882422.4465}}, "community_data": {"facebook_likes": null, "twitter_followers": 24537, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5673, "reddit_accounts_active_48h": "224.833333333333"}, "developer_data": {"forks": 10, "stars": 34, "subscribers": 12, "total_issues": 429, "closed_issues": 393, "pull_requests_merged": 246, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 35408, "deletions": -24649}, "commit_count_4_weeks": 72}, "public_interest_stats": {"alexa_rank": 940522, "bing_matches": null}}, "TCT_20200313": {"id": "tokenclub", "symbol": "tct", "name": "TokenClub", "localization": {"en": "TokenClub", "de": "TokenClub", "es": "TokenClub", "fr": "TokenClub", "it": "TokenClub", "pl": "TokenClub", "ro": "TokenClub", "hu": "TokenClub", "nl": "TokenClub", "pt": "TokenClub", "sv": "TokenClub", "vi": "TokenClub", "tr": "TokenClub", "ru": "TokenClub", "ja": "TokenClub", "zh": "TokenClub", "zh-tw": "TokenClub", "ko": "TokenClub", "ar": "TokenClub", "th": "TokenClub", "id": "TokenClub"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2455/thumb/tokenclub.png?1558012103", "small": "https://assets.coingecko.com/coins/images/2455/small/tokenclub.png?1558012103"}, "market_data": {"current_price": {"aed": 0.02702401748155165, "ars": 0.45955176019979616, "aud": 0.011149871832139778, "bch": 2.689470159776806e-05, "bdt": 0.6245547813063627, "bhd": 0.0027734637608019842, "bmd": 0.0073570776112249865, "bnb": 0.0004445182083189887, "brl": 0.03475851317423248, "btc": 9.283169924018437e-07, "cad": 0.010046258690912788, "chf": 0.006831568914532799, "clp": 6.174795239101132, "cny": 0.05110667533413552, "czk": 0.16526571291975292, "dkk": 0.04820370493614313, "eos": 0.0024116649836207265, "eth": 3.661069907582132e-05, "eur": 0.006455909174626037, "gbp": 0.005627664091309549, "hkd": 0.05717674257344083, "huf": 2.1699923922325906, "idr": 108.21157604470301, "ils": 0.025925164369539042, "inr": 0.5476130363751154, "jpy": 0.7590848752321658, "krw": 8.836254747350736, "kwd": 0.002244232382838511, "lkr": 1.3394446834082694, "ltc": 0.00014698904365917346, "mmk": 10.031564318872041, "mxn": 0.1529708149565122, "myr": 0.031028474825341337, "ngn": 2.6963689445139574, "nok": 0.07039212865908727, "nzd": 0.011604590728056807, "php": 0.37207095744800367, "pkr": 1.1554895066637667, "pln": 0.027958697406669706, "rub": 0.5494397987459819, "sar": 0.02761901377628179, "sek": 0.06966745651438161, "sgd": 0.010197350993814467, "thb": 0.23145365429206077, "try": 0.045299733975595585, "twd": 0.2201311192054628, "uah": 0.18417083476051485, "usd": 0.0073570776112249865, "vef": 1828.1428693973448, "vnd": 170.903173960464, "xag": 0.00043571740371659186, "xau": 4.4234429137490185e-06, "xdr": 0.005271684534012816, "xlm": 0.1419312358323545, "xrp": 0.03521246560280832, "zar": 0.11838715008878833, "bits": 0.9283169924018437, "link": 0.0018110301429808081, "sats": 92.83169924018438}, "market_cap": {"aed": 15830927.510082519, "ars": 269182226.65822136, "aud": 6534433.838995096, "bch": 15841.497514190052, "bdt": 365870155.15684044, "bhd": 1624833.6126371182, "bmd": 4309846.322030523, "bnb": 260788.06302903383, "brl": 20364023.871594213, "btc": 544.3622899123029, "cad": 5882707.497870268, "chf": 3998684.037272562, "clp": 3616825179.751485, "cny": 29938778.460617233, "czk": 96751740.08326322, "dkk": 28219416.988599006, "eos": 1413143.1783526582, "eth": 21523.108448071416, "eur": 3779360.2677907506, "gbp": 3294386.1907116193, "hkd": 33493005.286084075, "huf": 1270269473.0270133, "idr": 60783467223.816795, "ils": 15187208.863424014, "inr": 320796946.2108589, "jpy": 443751833.60998124, "krw": 5174918744.746029, "kwd": 1314692.7614574789, "lkr": 784659486.7427628, "ltc": 85996.07121798692, "mmk": 5876586175.730782, "mxn": 89771340.58624943, "myr": 18185823.230593644, "ngn": 1579558677.0241866, "nok": 41228532.95718054, "nzd": 6795515.7094910545, "php": 218030298.40364343, "pkr": 676896787.5018128, "pln": 16362710.82806523, "rub": 322372195.0415607, "sar": 16178503.68641528, "sek": 40789506.15174061, "sgd": 5970149.969897947, "thb": 135544666.82785985, "try": 26532211.279989466, "twd": 128954911.80147527, "uah": 107889033.7661849, "usd": 4309846.322030523, "vef": 1070943550982.4086, "vnd": 100036788444.56741, "xag": 254794.88217370273, "xau": 2584.3131500791633, "xdr": 3088203.142665684, "xlm": 83087256.33412263, "xrp": 20635452.549708653, "zar": 69347582.24463205, "bits": 544362289.912303, "link": 1061982.6242569597, "sats": 54436228991.23029}, "total_volume": {"aed": 1816125.0546656735, "ars": 30883767.233510558, "aud": 749317.2177113849, "bch": 1807.4344957335704, "bdt": 41972648.48263408, "bhd": 186388.16481074, "bmd": 494425.85611065873, "bnb": 29873.450752995053, "brl": 2335914.9571948093, "btc": 62.38671765675863, "cad": 675149.8783137957, "chf": 459109.5116345306, "clp": 414971621.0336759, "cny": 3434578.6520583043, "czk": 11106535.218741812, "dkk": 3239487.108902447, "eos": 162073.79984132547, "eth": 2460.3894630328246, "eur": 433863.632995664, "gbp": 378202.1589664382, "hkd": 3842512.121030242, "huf": 145832408.3255895, "idr": 7272262704.603643, "ils": 1742277.6087969826, "inr": 36801846.96081274, "jpy": 51013623.76885748, "krw": 593832639.6890249, "kwd": 150821.6408514195, "lkr": 90016188.39749269, "ltc": 9878.267919749875, "mmk": 674162356.112702, "mxn": 10280267.538488766, "myr": 2085241.0481467003, "ngn": 181207076.26455644, "nok": 4730640.386696408, "nzd": 779876.1966000195, "php": 25004697.706255578, "pkr": 77653644.38829005, "pln": 1878939.387555251, "rub": 36924612.90088497, "sar": 1856111.2513527623, "sek": 4681939.439869508, "sgd": 685303.9021207371, "thb": 15554636.938815488, "try": 3044328.323830157, "twd": 14793716.040687019, "uah": 12377037.114322424, "usd": 494425.85611065873, "vef": 122858715247.92548, "vnd": 11485395772.97755, "xag": 29282.00050876171, "xau": 297.27354598653324, "xdr": 354278.8694926679, "xlm": 9538362.44410249, "xrp": 2366422.426327618, "zar": 7956103.106190299, "bits": 62386717.65675863, "link": 121708.66969234041, "sats": 6238671765.675862}}, "community_data": {"facebook_likes": null, "twitter_followers": 23, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 365886, "bing_matches": null}}, "OAX_20200324": {"id": "openanx", "symbol": "oax", "name": "OAX", "localization": {"en": "OAX", "de": "OAX", "es": "OAX", "fr": "OAX", "it": "OAX", "pl": "OAX", "ro": "OAX", "hu": "OAX", "nl": "OAX", "pt": "OAX", "sv": "OAX", "vi": "OAX", "tr": "OAX", "ru": "OAX", "ja": "OAX", "zh": "OAX", "zh-tw": "OAX", "ko": "OAX", "ar": "OAX", "th": "OAX", "id": "OAX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/853/thumb/OAXlogo.png?1598686792", "small": "https://assets.coingecko.com/coins/images/853/small/OAXlogo.png?1598686792"}, "market_data": {"current_price": {"aed": 0.10562401791016532, "ars": 1.8221537798152783, "aud": 0.0496407578123936, "bch": 0.00013452249702690627, "bdt": 2.434926990512604, "bhd": 0.010861559607057763, "bmd": 0.028756879365686206, "bnb": 0.0024223064066624203, "brl": 0.14562196141989822, "btc": 4.637838260046918e-06, "cad": 0.04131357074071311, "chf": 0.02836291011837631, "clp": 24.583890353462706, "cny": 0.20405306460303632, "czk": 0.7331853963075373, "dkk": 0.2007920344829675, "eos": 0.013078561327922504, "eth": 0.00021752846475971867, "eur": 0.02671951197638608, "gbp": 0.024684013784244712, "hkd": 0.22304885262123053, "huf": 9.442321339723053, "idr": 453.7656839900028, "ils": 0.10374403692163382, "inr": 2.174669985519544, "jpy": 3.1919849202904715, "krw": 36.088445759967904, "kwd": 0.008949715996188868, "lkr": 5.368371566415731, "ltc": 0.0007554709648517476, "mmk": 40.89783132793445, "mxn": 0.7023235421291595, "myr": 0.12637210637250784, "ngn": 10.626493858444093, "nok": 0.33923139014369846, "nzd": 0.05035352582435161, "php": 1.4631074619446525, "pkr": 4.564435677318544, "pln": 0.12200868128195548, "rub": 2.2999004437812314, "sar": 0.10806659848660728, "sek": 0.29851093003990276, "sgd": 0.0416888480164353, "thb": 0.9340809555562177, "try": 0.18842945204365874, "twd": 0.8704563599596398, "uah": 0.7870169516636485, "usd": 0.028756879365686206, "vef": 7145.729151788244, "vnd": 671.3188797062273, "xag": 0.0022832913329659944, "xau": 1.9192053719865323e-05, "xdr": 0.02130657581650359, "xlm": 0.7209649972574754, "xrp": 0.18183891878065586, "zar": 0.507366537281406, "bits": 4.637838260046919, "link": 0.012783997217732756, "sats": 463.78382600469183}, "market_cap": {"aed": 5498148.2056341125, "ars": 94850316.55775139, "aud": 2583997.928621319, "bch": 7030.825840434523, "bdt": 126747587.6095079, "bhd": 565387.1689933627, "bmd": 1496909.394400794, "bnb": 126698.06199151815, "brl": 7580199.482306187, "btc": 242.22951216735797, "cad": 2150534.8814658998, "chf": 1476401.7356975037, "clp": 1279688799.0888317, "cny": 10621769.680789156, "czk": 38165201.919642575, "dkk": 10452020.155464109, "eos": 684391.4991322438, "eth": 11407.066952607922, "eur": 1390727.6234183665, "gbp": 1284900.6199624143, "hkd": 11610575.634901507, "huf": 491510199.65150034, "idr": 23620299914.455902, "ils": 5400287.753975151, "inr": 113200180.36901335, "jpy": 166155449.3868309, "krw": 1878546444.503276, "kwd": 465868.1417254153, "lkr": 279444988.73513407, "ltc": 39530.2574597561, "mmk": 2128893999.4808526, "mxn": 36558720.25448103, "myr": 6578168.333694297, "ngn": 553151066.3576387, "nok": 17658336.578330792, "nzd": 2621100.3248709464, "php": 76160534.56120864, "pkr": 237596943.62626597, "pln": 6351034.786734877, "rub": 119718921.39975001, "sar": 5625294.192685137, "sek": 15538675.453124423, "sgd": 2170069.549062832, "thb": 48622610.94892652, "try": 9808498.806811202, "twd": 45310698.91381493, "uah": 40967347.448128775, "usd": 1496909.394400794, "vef": 371963486063.057, "vnd": 34944804854.9369, "xag": 118854.35144082605, "xau": 999.0223607291462, "xdr": 1109091.6054088313, "xlm": 37600212.46859813, "xrp": 9481003.908112904, "zar": 26410436.487325408, "bits": 242229512.16735798, "link": 667694.9983954248, "sats": 24222951216.735798}, "total_volume": {"aed": 1154124.215022321, "ars": 19910166.66841709, "aud": 542410.7298405293, "bch": 1469.8898447138017, "bdt": 26605768.81246974, "bhd": 118681.2356075621, "bmd": 314218.40866385034, "bnb": 26467.86720905218, "brl": 1591170.59963287, "btc": 50.676366485410846, "cad": 451421.87680692086, "chf": 309913.6164651556, "clp": 268621320.3943488, "cny": 2229630.9841969507, "czk": 8011312.547293548, "dkk": 2193998.61665447, "eos": 142905.79571634682, "eth": 2376.8729272289806, "eur": 291956.662846834, "gbp": 269715.34122638067, "hkd": 2437192.6673159837, "huf": 103173614.48477513, "idr": 4958171201.974576, "ils": 1133582.1865559244, "inr": 23762013.031022914, "jpy": 34877929.881692, "krw": 394328391.952699, "kwd": 97791.05314436358, "lkr": 58658700.38486217, "ltc": 8254.820745630486, "mmk": 446879208.0756943, "mxn": 7674093.665333882, "myr": 1380832.796873288, "ngn": 116112737.66585223, "nok": 3706686.8843553723, "nzd": 550198.9473176727, "php": 15986967.589571876, "pkr": 49874316.91516966, "pln": 1333154.8666346793, "rub": 25130371.357072216, "sar": 1180813.612435819, "sek": 3261745.762227144, "sgd": 455522.4270399839, "thb": 10206442.350219168, "try": 2058916.1227698778, "twd": 9511234.12105043, "uah": 8599514.95426545, "usd": 314218.40866385034, "vef": 78079391517.59933, "vnd": 7335314357.474824, "xag": 24948.88823078026, "xau": 209.70622375816714, "xdr": 232811.01756562866, "xlm": 7877783.651688499, "xrp": 1986903.202041839, "zar": 5543852.791763008, "bits": 50676366.48541085, "link": 139687.1757549699, "sats": 5067636648.541084}}, "community_data": {"facebook_likes": null, "twitter_followers": 12027, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 17, "stars": 30, "subscribers": 19, "total_issues": 2, "closed_issues": 2, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "CVC_20200505": {"id": "civic", "symbol": "cvc", "name": "Civic", "localization": {"en": "Civic", "de": "Civic", "es": "Civic", "fr": "Civic", "it": "Civic", "pl": "Civic", "ro": "Civic", "hu": "Civic", "nl": "Civic", "pt": "Civic", "sv": "Civic", "vi": "Civic", "tr": "Civic", "ru": "Civic", "ja": "\u30b7\u30d3\u30c3\u30af", "zh": "Civic", "zh-tw": "Civic", "ko": "\uc2dc\ube45", "ar": "Civic", "th": "Civic", "id": "Civic"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/788/thumb/Civic-logo-blue.png?1636393120", "small": "https://assets.coingecko.com/coins/images/788/small/Civic-logo-blue.png?1636393120"}, "market_data": {"current_price": {"aed": 0.08336107327958547, "ars": 1.4961285166588658, "aud": 0.03535024237085854, "bch": 8.921679017231154e-05, "bdt": 1.927997498278475, "bhd": 0.008581103390101215, "bmd": 0.02269532766490667, "bnb": 0.0013004541011257757, "brl": 0.1245360714956423, "btc": 2.569804954399652e-06, "cad": 0.032371480614839535, "chf": 0.021823827082574264, "clp": 18.943790001897604, "cny": 0.160283482100637, "czk": 0.562469653183214, "dkk": 0.15419205615537596, "eos": 0.00790969099637583, "eth": 0.00010706423280271641, "eur": 0.020458226521649175, "gbp": 0.018153357129984234, "hkd": 0.1761781548307544, "huf": 7.306987694993364, "idr": 333.1416736192574, "ils": 0.07962655711232516, "inr": 1.721644861332155, "jpy": 2.4268113872084704, "krw": 27.800186854151775, "kwd": 0.00702079961313889, "lkr": 4.323875380832952, "ltc": 0.00048303938297904073, "mmk": 32.014758609253164, "mxn": 0.558364068408633, "myr": 0.0975331706399365, "ngn": 8.840057078757797, "nok": 0.23372102335874198, "nzd": 0.037413996601411634, "php": 1.132724098794752, "pkr": 3.6397631742594, "pln": 0.09448178383538972, "rub": 1.7108305376998276, "sar": 0.08523509457085987, "sek": 0.22335606721417905, "sgd": 0.03212296677690884, "thb": 0.7330590835764853, "try": 0.1591396375863257, "twd": 0.6787491190837098, "uah": 0.6115135754072483, "usd": 0.02269532766490667, "vef": 5639.508461339607, "vnd": 521.2288089676132, "xag": 0.0015160601434927056, "xau": 1.334712219973163e-05, "xdr": 0.01655345000624665, "xlm": 0.313184225441756, "xrp": 0.10435413881533087, "zar": 0.42695585169605615, "bits": 2.569804954399652, "link": 0.006035919188490458, "sats": 256.9804954399652}, "market_cap": {"aed": 55986528.96682416, "ars": 1004822025.9242524, "aud": 23741745.284906376, "bch": 59776.73217400589, "bdt": 1294871617.39515, "bhd": 5763195.873281395, "bmd": 15242517.517274246, "bnb": 872817.9565964339, "brl": 83640266.37253892, "btc": 1720.0770559325185, "cad": 21734305.727881428, "chf": 14656076.898314638, "clp": 12722929371.668821, "cny": 107648755.71399772, "czk": 377762932.88936627, "dkk": 103557664.01236123, "eos": 5303951.987300512, "eth": 71684.02885673444, "eur": 13740047.323079014, "gbp": 12192062.971577179, "hkd": 118323852.85722072, "huf": 4907480939.861618, "idr": 223742872138.7221, "ils": 53478372.709356695, "inr": 1156282136.3429081, "jpy": 1629882398.1221356, "krw": 18671016403.21901, "kwd": 4715272.793968782, "lkr": 2903978616.566413, "ltc": 323273.9448018474, "mmk": 21501585089.13763, "mxn": 375005561.4704915, "myr": 65504719.03048603, "ngn": 5937112998.153491, "nok": 156970493.89639363, "nzd": 25127793.13030471, "php": 760754247.4398851, "pkr": 2444518746.8328595, "pln": 63429450.27050924, "rub": 1149019076.7459261, "sar": 57245149.365778096, "sek": 150009236.14625454, "sgd": 21574259.29395001, "thb": 492333315.80795836, "try": 106880532.831127, "twd": 455857940.9040857, "uah": 410701555.96866965, "usd": 15242517.517274246, "vef": 3787577239684.6196, "vnd": 350064972337.0933, "xag": 1018208.401113379, "xau": 8964.124551908984, "xdr": 11117541.699196937, "xlm": 211424411.57910386, "xrp": 69947179.00425632, "zar": 286749860.79372257, "bits": 1720077055.9325185, "link": 4040091.0932210125, "sats": 172007705593.25186}, "total_volume": {"aed": 45969655.87273869, "ars": 825043516.6726905, "aud": 19493972.580655746, "bch": 49198.80444120753, "bdt": 1063198661.3476976, "bhd": 4732069.23006289, "bmd": 12515390.716907928, "bnb": 717138.4095133006, "brl": 68675703.48088884, "btc": 1417.124861355892, "cad": 17851327.549061574, "chf": 12034799.71337867, "clp": 10446596631.403053, "cny": 88388695.39909065, "czk": 310175185.8324874, "dkk": 85029564.53067249, "eos": 4361817.319021262, "eth": 59040.81778928997, "eur": 11281736.138551608, "gbp": 10010710.603514582, "hkd": 97153849.28767712, "huf": 4029455195.215684, "idr": 183711743271.13516, "ils": 43910248.330271535, "inr": 949405024.3939186, "jpy": 1338270729.3589652, "krw": 15330477075.277237, "kwd": 3871636.1182754743, "lkr": 2384411038.3134227, "ltc": 266373.1803698407, "mmk": 17654612377.41257, "mxn": 307911151.6517991, "myr": 53784891.60591187, "ngn": 4874869838.142807, "nok": 128885996.6808613, "nzd": 20632034.604716405, "php": 624643313.3809543, "pkr": 2007155786.2241054, "pln": 52102197.32402355, "rub": 943441440.7173123, "sar": 47003089.23040596, "sek": 123170217.74044943, "sgd": 17714284.020711448, "thb": 404247120.156126, "try": 87757919.70695847, "twd": 374297765.1397848, "uah": 337220569.71000445, "usd": 12515390.716907928, "vef": 3109919930969.3545, "vnd": 287432827296.22, "xag": 836034.8582004374, "xau": 7360.301280613562, "xdr": 9128438.134926165, "xlm": 172706162.50394955, "xrp": 57546330.21755424, "zar": 235445787.8618301, "bits": 1417124861.3558922, "link": 3328521.539543526, "sats": 141712486135.5892}}, "community_data": {"facebook_likes": null, "twitter_followers": 85896, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 0.545, "reddit_subscribers": 8031, "reddit_accounts_active_48h": "488.166666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 103621, "bing_matches": null}}, "AST_20200509": {"id": "airswap", "symbol": "ast", "name": "AirSwap", "localization": {"en": "AirSwap", "de": "AirSwap", "es": "AirSwap", "fr": "AirSwap", "it": "AirSwap", "pl": "AirSwap", "ro": "AirSwap", "hu": "AirSwap", "nl": "AirSwap", "pt": "AirSwap", "sv": "AirSwap", "vi": "AirSwap", "tr": "AirSwap", "ru": "AirSwap", "ja": "\u30a8\u30a2\u30b9\u30ef\u30c3\u30d7", "zh": "AirSwap", "zh-tw": "AirSwap", "ko": "\uc5d0\uc5b4\uc2a4\uc651", "ar": "AirSwap", "th": "AirSwap", "id": "AirSwap"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1019/thumb/Airswap.png?1630903484", "small": "https://assets.coingecko.com/coins/images/1019/small/Airswap.png?1630903484"}, "market_data": {"current_price": {"aed": 0.056165220274599977, "ars": 1.0237220371823064, "aud": 0.02376679821777028, "bch": 6.195353062764462e-05, "bdt": 1.2985246323720017, "bhd": 0.005781511471461778, "bmd": 0.015290958665595794, "bnb": 0.0009056862503321768, "brl": 0.0853174329705584, "btc": 1.699344958734083e-06, "cad": 0.021471105429469596, "chf": 0.014873515494025028, "clp": 12.770994518077885, "cny": 0.10799239557577031, "czk": 0.3814329639132875, "dkk": 0.10527213402916089, "eos": 0.005515125099951498, "eth": 7.450179139488064e-05, "eur": 0.014106704498862728, "gbp": 0.01228934347953935, "hkd": 0.11855156708229754, "huf": 4.942802388653842, "idr": 229.91705639394667, "ils": 0.05376484558327467, "inr": 1.1612382157496088, "jpy": 1.6273903106022498, "krw": 18.686316037291377, "kwd": 0.004724248716446476, "lkr": 2.889178335725907, "ltc": 0.00032856779325066073, "mmk": 21.279040453159304, "mxn": 0.36673223625218276, "myr": 0.06578936494968461, "ngn": 5.963473879582359, "nok": 0.15680905635294082, "nzd": 0.025259486311747063, "php": 0.7744861542458656, "pkr": 2.440819276995732, "pln": 0.06400565933038416, "rub": 1.127457429865574, "sar": 0.05743406402467106, "sek": 0.15020278115297414, "sgd": 0.021651921015690342, "thb": 0.49530250061601455, "try": 0.10833162549376667, "twd": 0.45664920488031135, "uah": 0.4124073389895902, "usd": 0.015290958665595794, "vef": 3799.614266418493, "vnd": 358.0845264316447, "xag": 0.0010236643902681371, "xau": 8.97365200249155e-06, "xdr": 0.011204541707967317, "xlm": 0.21118527437546014, "xrp": 0.07057906863465739, "zar": 0.2829805974489817, "bits": 1.699344958734083, "link": 0.004144493184134383, "sats": 169.9344958734083}, "market_cap": {"aed": 9642564.105069641, "ars": 175753719.8896624, "aud": 4078399.550521563, "bch": 10661.471611585997, "bdt": 222933462.17537338, "bhd": 992582.1480838612, "bmd": 2625184.205458508, "bnb": 155809.6188165081, "brl": 14648002.829617381, "btc": 292.7332216790192, "cad": 3685627.3652534797, "chf": 2553595.432175656, "clp": 2192551425.353927, "cny": 18540363.451050736, "czk": 65492308.00251738, "dkk": 18073080.66247911, "eos": 949895.9703396988, "eth": 12829.020643154507, "eur": 2421921.4427982694, "gbp": 2109692.5341378567, "hkd": 20352921.88570956, "huf": 848905816.5191181, "idr": 39478031992.60507, "ils": 9230462.688496783, "inr": 199363844.32866302, "jpy": 279402292.7632573, "krw": 3208053854.596462, "kwd": 811069.0365658447, "lkr": 496020262.66448146, "ltc": 56567.85713767676, "mmk": 3653230783.4062138, "mxn": 63016759.296769775, "myr": 11294857.669169437, "ngn": 1023821840.128818, "nok": 26922445.359869465, "nzd": 4333333.813897842, "php": 132977682.10566081, "pkr": 419045028.7963139, "pln": 10988758.565628761, "rub": 193564282.13159555, "sar": 9860401.890438598, "sek": 25790166.659476332, "sgd": 3716827.679535335, "thb": 85003464.57274644, "try": 18602816.583298594, "twd": 78395875.92760748, "uah": 70802966.39389674, "usd": 2625184.205458508, "vef": 652325833662.697, "vnd": 61481244888.89825, "xag": 175609.67603230898, "xau": 1540.7206101835986, "xdr": 1923619.4776549547, "xlm": 36350257.27843623, "xrp": 12151038.020261088, "zar": 48574505.27925543, "bits": 292733221.6790192, "link": 713940.2955137395, "sats": 29273322167.90192}, "total_volume": {"aed": 100240.09583797588, "ars": 1827073.6697352545, "aud": 42417.46261233007, "bch": 110.57070224693074, "bdt": 2317523.780028813, "bhd": 10318.472199596716, "bmd": 27290.325838658293, "bnb": 1616.4109405886422, "brl": 152269.10204937798, "btc": 3.0328822835992857, "cad": 38320.25683286873, "chf": 26545.29994326292, "clp": 22792854.869605683, "cny": 192737.9262355242, "czk": 680757.1780453318, "dkk": 187882.97726882703, "eos": 9843.042827476953, "eth": 132.96603615211072, "eur": 25176.74468310588, "gbp": 21933.23487652969, "hkd": 211583.2607434098, "huf": 8821597.827346295, "idr": 410341269.1169877, "ils": 95956.06048782317, "inr": 2072503.7571000601, "jpy": 2904462.225964709, "krw": 33350142.69113243, "kwd": 8431.537200134344, "lkr": 5156420.857075171, "ltc": 586.4067998610383, "mmk": 37977471.53730087, "mxn": 654520.2587840441, "myr": 117416.6542111532, "ngn": 10643227.077076735, "nok": 279862.7827013058, "nzd": 45081.51693037403, "php": 1382253.393598818, "pkr": 4356218.261995836, "pln": 114233.21041174782, "rub": 2012213.969257295, "sar": 102504.64707606765, "sek": 268072.3249066236, "sgd": 38642.96493591099, "thb": 883984.2501782483, "try": 193343.36211425505, "twd": 814998.318136017, "uah": 736038.2632256234, "usd": 27290.325838658293, "vef": 6781308723.636852, "vnd": 639086378.9389799, "xag": 1826.9707852068432, "xau": 16.01560062167501, "xdr": 19997.150000231904, "xlm": 376909.98164817813, "xrp": 125965.01125613227, "zar": 505045.6861005452, "bits": 3032882.283599286, "link": 7396.826576060773, "sats": 303288228.35992855}}, "community_data": {"facebook_likes": null, "twitter_followers": 31659, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.364, "reddit_subscribers": 3452, "reddit_accounts_active_48h": "770.5"}, "developer_data": {"forks": 34, "stars": 58, "subscribers": 20, "total_issues": 4, "closed_issues": 1, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 336637, "bing_matches": null}}, "YOYO_20200514": {"id": "yoyow", "symbol": "yoyow", "name": "YOYOW", "localization": {"en": "YOYOW", "de": "YOYOW", "es": "YOYOW", "fr": "YOYOW", "it": "YOYOW", "pl": "YOYOW", "ro": "YOYOW", "hu": "YOYOW", "nl": "YOYOW", "pt": "YOYOW", "sv": "YOYOW", "vi": "YOYOW", "tr": "YOYOW", "ru": "YOYOW", "ja": "YOYOW", "zh": "YOYOW", "zh-tw": "YOYOW", "ko": "YOYOW", "ar": "YOYOW", "th": "YOYOW", "id": "YOYOW"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1270/thumb/yoyow.png?1548761123", "small": "https://assets.coingecko.com/coins/images/1270/small/yoyow.png?1548761123"}, "market_data": {"current_price": {"aed": 0.026579470197709204, "ars": 0.486875760035952, "aud": 0.011071185217437957, "bch": 3.09506608701977e-05, "bdt": 0.6150462695994504, "bhd": 0.002735960179411534, "bmd": 0.007236305250131019, "bnb": 0.00047082423848941165, "brl": 0.04148138897954581, "btc": 8.250906799734916e-07, "cad": 0.010077184619364219, "chf": 0.007027552316275234, "clp": 5.975730874984338, "cny": 0.05119034696995183, "czk": 0.18195562192481998, "dkk": 0.049800231022485916, "eos": 0.002950592377364439, "eth": 3.839292570380076e-05, "eur": 0.006676417840317879, "gbp": 0.005828445882191776, "hkd": 0.056090555796183064, "huf": 2.3322756547277237, "idr": 108.14305064624587, "ils": 0.025379169773259522, "inr": 0.546594317068646, "jpy": 0.7738923875178169, "krw": 8.814012765211666, "kwd": 0.002234998003250217, "lkr": 1.3497013852604873, "ltc": 0.00017156994771336755, "mmk": 10.095611487159516, "mxn": 0.1710064625228154, "myr": 0.0313621469540678, "ngn": 2.8186132579785332, "nok": 0.07383332500203175, "nzd": 0.011787434711095923, "php": 0.3647358859596403, "pkr": 1.1559945318597322, "pln": 0.030368348972541124, "rub": 0.5313814325412962, "sar": 0.027187884270529775, "sek": 0.07079671804839306, "sgd": 0.010226368288400883, "thb": 0.23299415844692978, "try": 0.05138142161008155, "twd": 0.21603989324266115, "uah": 0.19420994305065464, "usd": 0.007236305250131019, "vef": 1798.1324301412226, "vnd": 169.23170017640157, "xag": 0.0004650439790587176, "xau": 4.24112614404929e-06, "xdr": 0.005311780923637671, "xlm": 0.11253543523749757, "xrp": 0.03601787741203211, "zar": 0.13263568619070107, "bits": 0.8250906799734916, "link": 0.0019184267287032021, "sats": 82.50906799734916}, "market_cap": {"aed": 4614496.667517525, "ars": 84535330.11371861, "aud": 1922780.2292247182, "bch": 5383.89896765943, "bdt": 106778989.2095123, "bhd": 474993.6336745818, "bmd": 1256304.4414913526, "bnb": 82018.38501445335, "brl": 7201513.949960885, "btc": 143.47664556783164, "cad": 1750245.6587525096, "chf": 1220091.4659653644, "clp": 1037457329.6634258, "cny": 8887223.249553977, "czk": 31592915.942403723, "dkk": 8646697.48270825, "eos": 512871.1926621473, "eth": 6672.313701687684, "eur": 1159222.2594706672, "gbp": 1012014.7865389171, "hkd": 9737967.491243094, "huf": 405057347.6175742, "idr": 18777628209.118683, "ils": 4406110.937198478, "inr": 94894955.98804939, "jpy": 134327839.79757985, "krw": 1531950198.998966, "kwd": 388020.93349457765, "lkr": 234323426.9946086, "ltc": 29826.729936862248, "mmk": 1752712345.9392445, "mxn": 29712682.975699, "myr": 5444823.449423527, "ngn": 489343143.00529677, "nok": 12842109.833110882, "nzd": 2046565.162149301, "php": 63333671.278873384, "pkr": 200693726.2201328, "pln": 5272831.602470035, "rub": 92254078.42159042, "sar": 4720124.232349242, "sek": 12292015.57622839, "sgd": 1775379.2854089849, "thb": 40457810.893119216, "try": 8913103.121048702, "twd": 37506969.10072437, "uah": 33717042.82816186, "usd": 1256304.4414913526, "vef": 312176128603.08215, "vnd": 29380812250.115673, "xag": 80734.3069040245, "xau": 735.9808309588789, "xdr": 922185.2500589616, "xlm": 19544236.568115722, "xrp": 6251687.193860649, "zar": 23027588.042066526, "bits": 143476645.56783164, "link": 333599.0073368023, "sats": 14347664556.783163}, "total_volume": {"aed": 2944918.134487096, "ars": 53944237.575346336, "aud": 1226651.0157869328, "bch": 3429.2317263291816, "bdt": 68145109.71885993, "bhd": 303135.41570433625, "bmd": 801758.8913277771, "bnb": 52165.78162656708, "brl": 4596001.866888458, "btc": 91.41734157890187, "cad": 1116519.0091974766, "chf": 778629.7508307527, "clp": 662091384.4276903, "cny": 5671722.573141826, "czk": 20160086.21287203, "dkk": 5517702.284841087, "eos": 326915.95938314934, "eth": 4253.810264091841, "eur": 739725.2023879639, "gbp": 645772.6902255011, "hkd": 6214649.641582258, "huf": 258408494.19272473, "idr": 11981895372.554644, "ils": 2811928.783664781, "inr": 60560857.856443584, "jpy": 85744738.67199798, "krw": 976563710.1415852, "kwd": 247630.44941660596, "lkr": 149542487.3419236, "ltc": 19009.38756851691, "mmk": 1118560645.7210233, "mxn": 18946955.257269602, "myr": 3474823.035014581, "ngn": 312293105.7610824, "nok": 8180490.284817741, "nzd": 1306009.110850556, "php": 40411540.067240946, "pkr": 128080403.21793371, "pln": 3364713.477674089, "rub": 58875320.13920526, "sar": 3012328.418552159, "sek": 7844044.192455414, "sgd": 1133048.0705010858, "thb": 25814988.68623274, "try": 5692893.016667337, "twd": 23936511.700590737, "uah": 21517824.80739108, "usd": 801758.8913277771, "vef": 199227176551.797, "vnd": 18750317409.356087, "xag": 51525.34783714722, "xau": 469.90286861829685, "xdr": 588527.9071435891, "xlm": 12468557.181093387, "xrp": 3990662.701981483, "zar": 14695599.070925048, "bits": 91417341.57890187, "link": 212555.3903452048, "sats": 9141734157.890186}}, "community_data": {"facebook_likes": null, "twitter_followers": 7443, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 2248259, "bing_matches": null}}, "CDT_20200916": {"id": "blox", "symbol": "cdt", "name": "Blox", "localization": {"en": "Blox", "de": "Blox", "es": "Blox", "fr": "Blox", "it": "Blox", "pl": "Blox", "ro": "Blox", "hu": "Blox", "nl": "Blox", "pt": "Blox", "sv": "Blox", "vi": "Blox", "tr": "Blox", "ru": "Blox", "ja": "Blox", "zh": "Blox", "zh-tw": "Blox", "ko": "\ube14\ub85d\uc2a4", "ar": "Blox", "th": "Blox", "id": "Blox"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1231/thumb/Blox_Staking_Logo_2.png?1609117544", "small": "https://assets.coingecko.com/coins/images/1231/small/Blox_Staking_Logo_2.png?1609117544"}, "market_data": {"current_price": {"aed": 0.030644884418320997, "ars": 0.6243841905325893, "aud": 0.011455513941567082, "bch": 3.629267104867674e-05, "bdt": 0.7075455717790149, "bhd": 0.0031457219783764152, "bmd": 0.008343625364041847, "bnb": 0.00029322673495665966, "brl": 0.04436889659836523, "btc": 7.990490657259854e-07, "cad": 0.010994812323466135, "chf": 0.0075835044061268835, "clp": 6.4237487156833035, "cny": 0.057023673188007426, "czk": 0.18721510028090663, "dkk": 0.052397550104914425, "dot": 0.0016256038375318015, "eos": 0.002975551004374826, "eth": 2.153320896686934e-05, "eur": 0.007042520424773143, "gbp": 0.006521002121393709, "hkd": 0.06466547450455289, "huf": 2.5172884595821436, "idr": 125.18316596813347, "ils": 0.028857512992835985, "inr": 0.6130603890610187, "jpy": 0.8857175505198559, "krw": 9.912143496228051, "kwd": 0.0025533329211548084, "lkr": 1.5394389624419618, "ltc": 0.00016407396847315555, "mmk": 11.120835016674782, "mxn": 0.1775097952574532, "myr": 0.03465524794954774, "ngn": 3.178921263699944, "nok": 0.07538048335143582, "nzd": 0.012517265300017458, "php": 0.4050505213470626, "pkr": 1.3850418104309445, "pln": 0.031327409660350386, "rub": 0.6248958216399121, "sar": 0.03129664671363314, "sek": 0.07311890197838551, "sgd": 0.01141374575299469, "thb": 0.26090711754192336, "try": 0.06238028067172229, "twd": 0.24444319229033323, "uah": 0.23288271554168627, "usd": 0.008343625364041847, "vef": 2073.2877944529587, "vnd": 193.563709235174, "xag": 0.00031196373024008054, "xau": 4.2998873313589505e-06, "xdr": 0.005905793248801448, "xlm": 0.09942520956243452, "xrp": 0.03388558756431863, "yfi": 1.926863662297792e-07, "zar": 0.1397348657842904, "bits": 0.7990490657259853, "link": 0.0006564305767644514, "sats": 79.90490657259853}, "market_cap": {"aed": 21377899.435110755, "ars": 435570983.132788, "aud": 7991377.0167108355, "bch": 25403.84998814849, "bdt": 493584438.8503148, "bhd": 2194458.532998871, "bmd": 5820520.695130706, "bnb": 205698.41497047606, "brl": 30951782.900496528, "btc": 558.1905865342793, "cad": 7669991.146008458, "chf": 5290259.618762899, "clp": 4481212986.993662, "cny": 39779766.638801254, "czk": 130601425.4094122, "dkk": 36552578.93938605, "dot": 1142065.7958365125, "eos": 2078897.6729237465, "eth": 15101.394059068612, "eur": 4912868.697932018, "gbp": 4549057.051882874, "hkd": 45110694.23566103, "huf": 1756062734.76232, "idr": 87327891223.35852, "ils": 20131027.491799865, "inr": 427671488.85577095, "jpy": 617877374.391597, "krw": 6914720380.608328, "kwd": 1781207.3841652859, "lkr": 1073914030.0330348, "ltc": 114741.4248855552, "mmk": 7757904692.20364, "mxn": 123830995.73683631, "myr": 24175532.707225367, "ngn": 2217618384.844799, "nok": 52585494.220158294, "nzd": 8732055.736728301, "php": 282563614.6410088, "pkr": 966206435.3916948, "pln": 21854029.66901386, "rub": 435927897.4618134, "sar": 21832569.40921092, "sek": 51007812.983139664, "sgd": 7962239.490111019, "thb": 182009044.1385797, "try": 43516540.925075136, "twd": 170523794.80524397, "uah": 162459195.63818848, "usd": 5820520.695130706, "vef": 1446327464147.9727, "vnd": 135030220830.02797, "xag": 217626.18391496845, "xau": 2999.605340235607, "xdr": 4119886.778948107, "xlm": 69525395.26933907, "xrp": 23676555.78762737, "yfi": 134.5241500158304, "zar": 97479170.34170121, "bits": 558190586.5342793, "link": 458351.0152609558, "sats": 55819058653.42793}, "total_volume": {"aed": 1053414.2956064406, "ars": 21463133.07236555, "aud": 393781.9436627136, "bch": 1247.556296396458, "bdt": 24321795.76632528, "bhd": 108133.82281983648, "bmd": 286811.1400156402, "bnb": 10079.634507372366, "brl": 1525175.5992611665, "btc": 27.467217602670953, "cad": 377945.37975560955, "chf": 260682.07153793453, "clp": 220815606.15835583, "cny": 1960182.0553228853, "czk": 6435497.04078491, "dkk": 1801159.6187412136, "dot": 55879.94061497955, "eos": 102284.21561415956, "eth": 740.201524219805, "eur": 242085.8108416006, "gbp": 224158.6805349231, "hkd": 2222868.0762961097, "huf": 86531494.56499834, "idr": 4303156598.66765, "ils": 991973.6131922912, "inr": 21073878.729359113, "jpy": 30446436.568360064, "krw": 340728766.2271796, "kwd": 87770.51868986605, "lkr": 52918033.17360198, "ltc": 5640.023358129281, "mmk": 382277395.00437474, "mxn": 6101878.32271872, "myr": 1191270.070054959, "ngn": 109275044.3459589, "nok": 2591195.244471293, "nzd": 430279.5216631224, "php": 13923564.005180057, "pkr": 47610649.2425962, "pln": 1076876.0204820011, "rub": 21480720.3314713, "sar": 1075818.5478087629, "sek": 2513453.6509143556, "sgd": 392346.16709579533, "thb": 8968651.46209582, "try": 2144314.8072129264, "twd": 8402705.969038185, "uah": 8005315.941234066, "usd": 286811.1400156402, "vef": 71269023950.93959, "vnd": 6653729726.487, "xag": 10723.716515280537, "xau": 147.80812100705964, "xdr": 203010.94793700989, "xlm": 3417729.87840406, "xrp": 1164813.0848859241, "yfi": 6.623571163921802, "zar": 4803369.567411919, "bits": 27467217.602670953, "link": 22564.723827884492, "sats": 2746721760.267095}}, "community_data": {"facebook_likes": null, "twitter_followers": 56, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 292, "reddit_accounts_active_48h": "19.2307692307692"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 2, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 256475, "bing_matches": null}}, "NULS_20210411": {"id": "nuls", "symbol": "nuls", "name": "Nuls", "localization": {"en": "Nuls", "de": "Nuls", "es": "Nuls", "fr": "Nuls", "it": "Nuls", "pl": "Nuls", "ro": "Nuls", "hu": "Nuls", "nl": "Nuls", "pt": "Nuls", "sv": "Nuls", "vi": "Nuls", "tr": "Nuls", "ru": "Nuls", "ja": "\u30cc\u30eb\u30ba", "zh": "Nuls", "zh-tw": "Nuls", "ko": "\ub20c\uc2a4", "ar": "Nuls", "th": "Nuls", "id": "Nuls"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1053/thumb/Nuls.png?1556868153", "small": "https://assets.coingecko.com/coins/images/1053/small/Nuls.png?1556868153"}, "market_data": {"current_price": {"aed": 4.358094214296389, "ars": 109.44323537152414, "aud": 1.558053088866813, "bch": 0.001912235623648842, "bdt": 100.6522265853843, "bhd": 0.44729907197173985, "bmd": 1.1864570985234613, "bnb": 0.003144192750493948, "brl": 6.6602955682713105, "btc": 2.111395634369083e-05, "cad": 1.4965293560228805, "chf": 1.102741872108745, "clp": 846.7740052780966, "cny": 7.762395567089745, "czk": 25.85123913688831, "dkk": 7.432204556570671, "dot": 0.029826968419909724, "eos": 0.2009568909131924, "eth": 0.000598549705996095, "eur": 0.9993326443156364, "gbp": 0.8633516097967657, "hkd": 9.236627834860073, "huf": 358.8241415471624, "idr": 17282.823939916638, "ils": 3.906943902582829, "inr": 88.27436578435822, "jpy": 130.32875290150665, "krw": 1327.1941519164486, "kwd": 0.3582293646713869, "lkr": 237.75732954271197, "ltc": 0.005389431586752425, "mmk": 1673.6774323272014, "mxn": 23.979622047281126, "myr": 4.9018475025496855, "ngn": 471.95185774238064, "nok": 10.06094381965833, "nzd": 1.6912886616597036, "php": 57.69257863434787, "pkr": 181.70101050333693, "pln": 4.570410712077157, "rub": 91.58618280632157, "sar": 4.449726668929547, "sek": 10.235589118103883, "sgd": 1.590445740570702, "thb": 37.21599252668507, "try": 9.685167940956882, "twd": 33.65350084894548, "uah": 33.170774168011945, "usd": 1.1864570985234613, "vef": 0.11879994927515432, "vnd": 27438.35599918402, "xag": 0.04715744587903696, "xau": 0.000683019622477987, "xdr": 0.8322901629574201, "xlm": 2.4868636201500425, "xrp": 1.2860225839851223, "yfi": 2.6902876662828727e-05, "zar": 17.292196950994978, "bits": 21.11395634369083, "link": 0.03791080474222782, "sats": 2111.395634369083}, "market_cap": {"aed": 490653821.0743109, "ars": 12322648092.89902, "aud": 175444138.8513872, "bch": 213821.97241098314, "bdt": 11331879749.582096, "bhd": 50358938.57135452, "bmd": 133576669.13707657, "bnb": 352506.53495262656, "brl": 749845989.8678932, "btc": 2371.4560333627155, "cad": 168492675.41282454, "chf": 124156040.96951501, "clp": 95333620809.10735, "cny": 873925357.8293247, "czk": 2910555474.495429, "dkk": 836783029.2090672, "dot": 3341606.0336182103, "eos": 22410920.545032073, "eth": 67221.78666736899, "eur": 112509357.61078423, "gbp": 97209753.08116195, "hkd": 1039901048.0655985, "huf": 40403258503.00751, "idr": 1945777945152.5103, "ils": 439861292.6349373, "inr": 9938324585.302576, "jpy": 14672595644.693037, "krw": 149460074105.73273, "kwd": 40331070.86589582, "lkr": 26767788049.618706, "ltc": 604084.4955361242, "mmk": 188430122672.2708, "mxn": 2700185444.694766, "myr": 551872008.539833, "ngn": 53134459921.675766, "nok": 1132849972.5546267, "nzd": 190524811.22029394, "php": 6496384290.319569, "pkr": 20456715874.583088, "pln": 514472945.561496, "rub": 10308966447.990671, "sar": 500970214.3851048, "sek": 1152525014.4585028, "sgd": 179072882.64516494, "thb": 4189943594.70017, "try": 1090653503.5042295, "twd": 3788701855.0694656, "uah": 3734514742.737325, "usd": 133576669.13707657, "vef": 13375031.880695472, "vnd": 3089848077136.482, "xag": 5310685.109350853, "xau": 76910.77455574593, "xdr": 93702964.78630625, "xlm": 278330009.85285187, "xrp": 143602563.50359496, "yfi": 3034.0943906383527, "zar": 1947160463.6780782, "bits": 2371456033.3627152, "link": 4246225.578327177, "sats": 237145603336.27155}, "total_volume": {"aed": 313461133.2785531, "ars": 7871835463.467166, "aud": 112064829.93006876, "bch": 137539.83191053188, "bdt": 7239531653.300453, "bhd": 32172520.170572683, "bmd": 85337344.35330294, "bnb": 226149.82016288638, "brl": 479049716.26170194, "btc": 1518.646536317655, "cad": 107639661.93862835, "chf": 79316026.67307828, "clp": 60905232028.84573, "cny": 558319575.4314845, "czk": 1859381261.176378, "dkk": 534570192.4979606, "dot": 2145340.339935263, "eos": 14454064.475968175, "eth": 43051.402732323026, "eur": 71878194.41393305, "gbp": 62097596.040256776, "hkd": 664355492.6576811, "huf": 25808855092.692596, "idr": 1243087760858.476, "ils": 281011608.08820873, "inr": 6349239226.503931, "jpy": 9374051265.177269, "krw": 95460025066.84334, "kwd": 25766075.055281546, "lkr": 17100979992.414724, "ltc": 387641.30600223725, "mmk": 120381248977.823, "mxn": 1724762965.8565521, "myr": 352571238.19567144, "ngn": 33945701241.50694, "nok": 723645404.7313707, "nzd": 121647957.68891172, "php": 4149607647.5722623, "pkr": 13069062271.162905, "pln": 328732251.0505763, "rub": 6587445622.6645155, "sar": 320051907.057647, "sek": 736206976.4828324, "sgd": 114394710.10560274, "thb": 2676804726.9910374, "try": 696617275.6904483, "twd": 2420568256.715473, "uah": 2385847563.4425197, "usd": 85337344.35330294, "vef": 8544828.290096233, "vnd": 1973536537734.8118, "xag": 3391855.6370979026, "xau": 49127.002397309494, "xdr": 59863464.365087196, "xlm": 178870637.1065209, "xrp": 92498710.85287514, "yfi": 1935.0215466934173, "zar": 1243761925.8788676, "bits": 1518646536.317655, "link": 2726779.9257339537, "sats": 151864653631.7655}}, "community_data": {"facebook_likes": null, "twitter_followers": 42374, "reddit_average_posts_48h": 0.25, "reddit_average_comments_48h": 0.667, "reddit_subscribers": 5268, "reddit_accounts_active_48h": "290.769230769231"}, "developer_data": {"forks": 47, "stars": 79, "subscribers": 20, "total_issues": 49, "closed_issues": 37, "pull_requests_merged": 544, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 475383, "bing_matches": null}}, "GO_20190907": {"id": "gochain", "symbol": "go", "name": "GoChain", "localization": {"en": "GoChain", "de": "GoChain", "es": "GoChain", "fr": "GoChain", "it": "GoChain", "pl": "GoChain", "ro": "GoChain", "hu": "GoChain", "nl": "GoChain", "pt": "GoChain", "sv": "GoChain", "vi": "GoChain", "tr": "GoChain", "ru": "GoChain", "ja": "\u30b4\u30fc\u30c1\u30a7\u30fc\u30f3", "zh": "GoChain", "zh-tw": "GoChain", "ko": "\ucf54\uccb4\uc778", "ar": "GoChain", "th": "GoChain", "id": "GoChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3286/thumb/GoChain.png?1557381951", "small": "https://assets.coingecko.com/coins/images/3286/small/GoChain.png?1557381951"}, "market_data": {"current_price": {"aed": 0.036630912182502806, "ars": 0.5579360430255341, "aud": 0.014749587061025743, "bch": 3.321812550251233e-05, "bdt": 0.8426674356563719, "bhd": 0.0037597778594787826, "bmd": 0.00997293847574466, "bnb": 0.000445056303029898, "brl": 0.04155524004073275, "btc": 9.384683856860465e-07, "cad": 0.013303181875073138, "chf": 0.009842661980435962, "clp": 7.232578360744348, "cny": 0.0715957253173708, "czk": 0.23493326961644098, "dkk": 0.06778731940988429, "eos": 0.002971613954597534, "eth": 5.57160650419889e-05, "eur": 0.00908902696570092, "gbp": 0.008248767007365532, "hkd": 0.07822922534451238, "huf": 2.999460975964962, "idr": 141.8111424249376, "ils": 0.03529522655950785, "inr": 0.7197459725006432, "jpy": 1.0562372382456968, "krw": 12.073339048121182, "kwd": 0.00302970889836189, "lkr": 1.796500204674452, "ltc": 0.00014385892418832056, "mmk": 15.233583189680484, "mxn": 0.19918301776603883, "myr": 0.041978082659165916, "ngn": 3.61266662515966, "nok": 0.09081357776013073, "nzd": 0.01573803491217228, "php": 0.5207936786662412, "pkr": 1.563027691302428, "pln": 0.03950618015562935, "rub": 0.6659978178794647, "sar": 0.03740450304712784, "sek": 0.09794600395333697, "sgd": 0.013865615713351199, "thb": 0.305251700865592, "try": 0.057027177008495175, "twd": 0.3124017691869617, "uah": 0.2520040880265113, "usd": 0.00997293847574466, "vef": 2478.1519680523365, "vnd": 230.67478877528777, "xag": 0.0005153307522926897, "xau": 6.43962610317307e-06, "xdr": 0.007314073294603315, "xlm": 0.1579088948964379, "xrp": 0.03786137003316923, "zar": 0.15055073125945534, "bits": 0.9384683856860465, "link": 0.0053951130558114015, "sats": 93.84683856860465}, "market_cap": {"aed": 28450180.330840997, "ars": 433332944.5378763, "aud": 11455581.821193684, "bch": 25799.566663546095, "bdt": 654475662.0830922, "bhd": 2920111.7780836616, "bmd": 7745695.675000036, "bnb": 345662.48351921025, "brl": 32274764.738590073, "btc": 728.8815160959776, "cad": 10332200.340361461, "chf": 7644513.652397475, "clp": 5617336461.4819145, "cny": 55606349.25082517, "czk": 182465941.68884706, "dkk": 52648469.46063021, "eos": 2307967.4472951386, "eth": 43273.07193094164, "eur": 7059186.921629096, "gbp": 6406581.078227645, "hkd": 60758398.729051456, "huf": 2329595431.2130094, "idr": 110140652649.08154, "ils": 27412791.56339257, "inr": 559006082.295184, "jpy": 820349210.8119916, "krw": 9377016641.111744, "kwd": 2353088.12619528, "lkr": 1395290254.6553175, "ltc": 111731.10609332535, "mmk": 11831487751.98384, "mxn": 154699745.01458693, "myr": 32603174.489514455, "ngn": 2805854695.8625197, "nok": 70532304.81655021, "nzd": 12223280.956630008, "php": 404485533.9500386, "pkr": 1213958840.5033774, "pln": 30683318.613813255, "rub": 517261430.02433866, "sar": 29051006.198655073, "sek": 76071855.95800549, "sgd": 10769026.593648735, "thb": 237080253.22040066, "try": 44291375.04321971, "twd": 242633506.49750492, "uah": 195724357.41548368, "usd": 7745695.675000036, "vef": 1924709655797.0654, "vnd": 179158501588.458, "xag": 400242.6355016651, "xau": 5001.473154304262, "xdr": 5680631.242479617, "xlm": 122643315.93122023, "xrp": 29405841.701394584, "zar": 116928440.9826246, "bits": 728881516.0959777, "link": 4190229.7867544307, "sats": 72888151609.59776}, "total_volume": {"aed": 698788.888510577, "ars": 10643456.144999662, "aud": 281370.212595671, "bch": 633.6849293475459, "bdt": 16075129.055280365, "bhd": 71723.32969438889, "bmd": 190248.56814728177, "bnb": 8490.107965901052, "brl": 792727.7337560918, "btc": 17.902674027569386, "cad": 253777.8920115676, "chf": 187763.35110157297, "clp": 137972141.35945868, "cny": 1365794.4707293336, "czk": 4481699.978736694, "dkk": 1293143.4890166589, "eos": 56687.93619088774, "eth": 1062.8664382939287, "eur": 173386.64730381974, "gbp": 157357.44444313872, "hkd": 1492338.3058324985, "huf": 57219159.35597643, "idr": 2705257518.563016, "ils": 673308.7075300434, "inr": 13730220.138332486, "jpy": 20149289.268033795, "krw": 230316819.08477968, "kwd": 57796.183263167026, "lkr": 34270901.44463094, "ltc": 2744.3219878073864, "mmk": 290603155.3927553, "mxn": 3799710.990036363, "myr": 800794.0827969698, "ngn": 68916965.07520851, "nok": 1732403.4615491452, "nzd": 300226.3189304536, "php": 9934910.54892022, "pkr": 29817067.55416787, "pln": 753638.882447416, "rub": 12704894.505159521, "sar": 713546.2796931935, "sek": 1868465.0520195842, "sgd": 264507.150260801, "thb": 5823128.173851991, "try": 1087877.840391239, "twd": 5959526.314039479, "uah": 4807351.11631434, "usd": 190248.56814728177, "vef": 47274418138.64414, "vnd": 4400463151.247739, "xag": 9830.697139503332, "xau": 122.84540293838104, "xdr": 139526.77789067104, "xlm": 3012345.9825639552, "xrp": 722261.6939253713, "zar": 2871978.1161087477, "bits": 17902674.027569387, "link": 102919.76997122554, "sats": 1790267402.7569387}}, "community_data": {"facebook_likes": null, "twitter_followers": 10235, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 687, "reddit_accounts_active_48h": "10.2916666666667"}, "developer_data": {"forks": 21, "stars": 75, "subscribers": 14, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 290, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 2073, "deletions": -2141}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 740517, "bing_matches": null}}, "GVT_20200810": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 5.468047762241269, "ars": 108.22125760604396, "aud": 2.0585118715513713, "bch": 0.004810817909076094, "bdt": 126.30814748600916, "bhd": 0.5611045875069565, "bmd": 1.4886332794950612, "bnb": 0.06528895110414669, "brl": 7.938583552891283, "btc": 0.00012643453392703697, "cad": 1.983328447770468, "chf": 1.354956988262968, "clp": 1151.4577359964687, "cny": 10.351211508968928, "czk": 33.010441484169775, "dkk": 9.339238605568184, "eos": 0.48076856826678593, "eth": 0.00377314736666715, "eur": 1.2537120616579485, "gbp": 1.1331804022837917, "hkd": 11.538322117702268, "huf": 433.80262397765733, "idr": 21702.307806757686, "ils": 5.068290181365669, "inr": 111.50390537325636, "jpy": 157.14831646653687, "krw": 1762.9214044084251, "kwd": 0.45469410342209043, "lkr": 276.2035493540897, "ltc": 0.025128196650732352, "mmk": 2026.5583864910357, "mxn": 33.36042065681231, "myr": 6.235141979798362, "ngn": 563.4476962888807, "nok": 13.362548417826922, "nzd": 2.2275164077724376, "php": 73.0663639624643, "pkr": 251.0669716023521, "pln": 5.538318696199836, "rub": 109.02973434013784, "sar": 5.582665081595998, "sek": 12.940785859813769, "sgd": 2.0382753907499076, "thb": 46.281608659501565, "try": 10.803485094678562, "twd": 43.74200028468302, "uah": 41.2526853852121, "usd": 1.4886332794950612, "vef": 369906.9737832167, "vnd": 34406.890821821384, "xag": 0.05003777280932193, "xau": 0.0007192182826552455, "xdr": 1.0543394065351739, "xlm": 13.995742955626575, "xrp": 4.903823974853844, "yfi": 0.0003058096971183075, "zar": 25.967794847809195, "bits": 126.43453392703697, "link": 0.14648450662070733, "sats": 12643.453392703697}, "market_cap": {"aed": 24248387.822970882, "ars": 479871449.315964, "aud": 9127241.840862686, "bch": 21361.552711907996, "bdt": 560121103.292333, "bhd": 2488252.1584888133, "bmd": 6601434.12364447, "bnb": 289621.3791308211, "brl": 35203467.75115888, "btc": 561.1160125247443, "cad": 8793064.04265558, "chf": 6008513.114961068, "clp": 5106209083.393108, "cny": 45903072.17876182, "czk": 146370951.64848554, "dkk": 41412116.54444651, "eos": 2134072.0098567177, "eth": 16785.12091231722, "eur": 5559245.91424235, "gbp": 5024298.70003282, "hkd": 51165405.390425004, "huf": 1923297821.804293, "idr": 96232112536.68735, "ils": 22475638.70340737, "inr": 494470798.1406373, "jpy": 696741763.1459304, "krw": 7817682346.584733, "kwd": 2016368.4444624593, "lkr": 1224841309.7390056, "ltc": 111665.6427896594, "mmk": 8986895476.821268, "mxn": 147909752.54414073, "myr": 27650113.428318977, "ngn": 2498642815.799432, "nok": 59238695.26627735, "nzd": 9876471.60672575, "php": 323970852.2067407, "pkr": 1113371638.593236, "pln": 24557004.86825123, "rub": 483498277.22349447, "sar": 24756665.243320893, "sek": 57380589.603494935, "sgd": 9038683.602094011, "thb": 205258391.2064773, "try": 47922318.8485022, "twd": 193976540.28916934, "uah": 182937523.12609875, "usd": 6601434.12364447, "vef": 1640374800793.6992, "vnd": 152544713090.2964, "xag": 222476.58175947328, "xau": 3190.8031836635537, "xdr": 4675531.732412435, "xlm": 62130287.18321932, "xrp": 21770880.57969661, "yfi": 1357.1823497008231, "zar": 115110738.34670557, "bits": 561116012.5247443, "link": 650097.7201299994, "sats": 56111601252.47443}, "total_volume": {"aed": 1435891.6525098202, "ars": 28418552.13732438, "aud": 540558.5579123478, "bch": 1263.3052192937876, "bdt": 33168110.906332158, "bhd": 147344.24943208008, "bmd": 390910.28327066795, "bnb": 17144.66734159254, "brl": 2084646.3586258236, "btc": 33.20129957686928, "cad": 520815.63405576145, "chf": 355807.32165352965, "clp": 302369076.35523206, "cny": 2718194.654722595, "czk": 8668435.140616797, "dkk": 2452453.8441551947, "eos": 126248.27067721501, "eth": 990.8162918580807, "eur": 329220.7314677246, "gbp": 297569.507651865, "hkd": 3029926.06011679, "huf": 113915165.64790575, "idr": 5698955820.230286, "ils": 1330916.6050403162, "inr": 29280564.821196456, "jpy": 41266639.50860995, "krw": 462937457.51470524, "kwd": 119401.20056332616, "lkr": 72530158.50552154, "ltc": 6598.583147456379, "mmk": 532167676.10923666, "mxn": 8760338.539124005, "myr": 1637328.112389481, "ngn": 147959542.2179478, "nok": 3508961.984917165, "nzd": 584938.6023720648, "php": 19186990.79723174, "pkr": 65929374.50805514, "pln": 1454344.5724316128, "rub": 28630855.51216871, "sar": 1465989.789770247, "sek": 3398208.501640338, "sgd": 535244.5235215644, "thb": 12153400.706885098, "try": 2836960.2351653236, "twd": 11486507.763625344, "uah": 10832821.724285861, "usd": 390910.28327066795, "vef": 97136374617.69006, "vnd": 9035138218.986568, "xag": 13139.757260942155, "xau": 188.86439425939096, "xdr": 276866.1172292838, "xlm": 3675236.822075622, "xrp": 1287728.3112801514, "yfi": 80.30463712861753, "zar": 6819058.917798003, "bits": 33201299.576869283, "link": 38466.35754192457, "sats": 3320129957.6869283}}, "community_data": {"facebook_likes": null, "twitter_followers": 20345, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.25, "reddit_subscribers": 5505, "reddit_accounts_active_48h": "24.9230769230769"}, "developer_data": {"forks": 2, "stars": 16, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 171474, "bing_matches": null}}, "ADX_20200810": {"id": "adex", "symbol": "adx", "name": "Ambire AdEx", "localization": {"en": "Ambire AdEx", "de": "Ambire AdEx", "es": "Ambire AdEx", "fr": "Ambire AdEx", "it": "Ambire AdEx", "pl": "Ambire AdEx", "ro": "Ambire AdEx", "hu": "Ambire AdEx", "nl": "Ambire AdEx", "pt": "Ambire AdEx", "sv": "Ambire AdEx", "vi": "Ambire AdEx", "tr": "Ambire AdEx", "ru": "Ambire AdEx", "ja": "\u30a2\u30c7\u30c3\u30af\u30b9", "zh": "Ambire AdEx", "zh-tw": "Ambire AdEx", "ko": "\uc560\ub4dc\uc5d1\uc2a4", "ar": "Ambire AdEx", "th": "Ambire AdEx", "id": "Ambire AdEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/847/thumb/ambireadex.png?1634704581", "small": "https://assets.coingecko.com/coins/images/847/small/ambireadex.png?1634704581"}, "market_data": {"current_price": {"aed": 0.8065299195346978, "ars": 15.962494474110116, "aud": 0.3036278186134636, "bch": 0.000709589372626995, "bdt": 18.630287162435508, "bhd": 0.08276219548364792, "bmd": 0.21957146889216386, "bnb": 0.009630035210034223, "brl": 1.1709307293081346, "btc": 1.8648928997793336e-05, "cad": 0.29253836157706414, "chf": 0.19985439012858597, "clp": 169.83851559851473, "cny": 1.5267902089416645, "czk": 4.868997103112275, "dkk": 1.3775255243887714, "eos": 0.07091273733133747, "eth": 0.0005565343198069049, "eur": 0.18492089538629192, "gbp": 0.16714263269303112, "hkd": 1.7018874768097212, "huf": 63.985321749865705, "idr": 3201.0621212875217, "ils": 0.7475661972783968, "inr": 16.446680742165935, "jpy": 23.17917189933587, "krw": 260.02860989288973, "kwd": 0.06706678774429825, "lkr": 40.73966360974934, "ltc": 0.003706376261508777, "mmk": 298.9147212055503, "mxn": 4.920618575020287, "myr": 0.9196753170263001, "ngn": 83.10780097568403, "nok": 1.9709584789345374, "nzd": 0.3285557674767899, "php": 10.777193471913765, "pkr": 37.03205114676367, "pln": 0.8168947907237528, "rub": 16.081743738865466, "sar": 0.823435824782051, "sek": 1.9087490512250638, "sgd": 0.30064296406534247, "thb": 6.826476967857392, "try": 1.5934999734775446, "twd": 6.451888041927365, "uah": 6.084717338073841, "usd": 0.21957146889216386, "vef": 54560.79660840708, "vnd": 5074.971560707136, "xag": 0.007380506285310172, "xau": 0.0001060837594805603, "xdr": 0.15551368855756428, "xlm": 2.06435384814617, "xrp": 0.7233076461333003, "yfi": 4.5106531825293166e-05, "zar": 3.8302159014998343, "bits": 18.648928997793337, "link": 0.02160627384305318, "sats": 1864.8928997793337}, "market_cap": {"aed": 74273120.67739147, "ars": 1469852359.8717568, "aud": 27956857.98360325, "bch": 65378.60279606938, "bdt": 1715658071.8894186, "bhd": 7621548.04651161, "bmd": 20220276.78247614, "bnb": 887077.1215455096, "brl": 107828669.99791051, "btc": 1718.6340964791516, "cad": 26933267.13232067, "chf": 18404152.182704408, "clp": 15640383444.196442, "cny": 140601694.6069479, "czk": 448336088.7668539, "dkk": 126845840.31182942, "eos": 6536418.2069564555, "eth": 51350.40572228285, "eur": 17028041.02599629, "gbp": 15389490.896928335, "hkd": 156720288.24409887, "huf": 5891085719.196171, "idr": 294760186106.34436, "ils": 68843167.55022521, "inr": 1514570351.2278266, "jpy": 2134128892.7296698, "krw": 23945660576.8795, "kwd": 6176162.221546638, "lkr": 3751704528.69115, "ltc": 342019.07773057336, "mmk": 27526975283.39309, "mxn": 453049455.50512654, "myr": 84692649.5236781, "ngn": 7653374762.167218, "nok": 181448877.93799618, "nzd": 30251758.297030475, "php": 992326845.7094699, "pkr": 3410271506.532215, "pln": 75218418.6169721, "rub": 1480961379.9360483, "sar": 75829980.88825807, "sek": 175757476.63203248, "sgd": 27685602.970566377, "thb": 628709065.9975313, "try": 146786672.86917162, "twd": 594152612.9762793, "uah": 560339962.8364705, "usd": 20220276.78247614, "vef": 5024488903137.938, "vnd": 467246398678.9495, "xag": 681448.6029154238, "xau": 9773.470782809854, "xdr": 14321213.23395656, "xlm": 190116896.22177023, "xrp": 66687049.80681608, "yfi": 4156.894134673562, "zar": 352585657.3602502, "bits": 1718634096.4791515, "link": 1991174.8781353978, "sats": 171863409647.91516}, "total_volume": {"aed": 9865608.341380404, "ars": 195255891.71431157, "aud": 3714026.060826445, "bch": 8679.815421581021, "bdt": 227888776.32471856, "bhd": 1012360.9631065966, "bmd": 2685834.7874824093, "bnb": 117796.1950261082, "brl": 14323019.75468623, "btc": 228.11680636049323, "cad": 3578377.9748846362, "chf": 2444652.195236072, "clp": 2077493017.4233773, "cny": 18675952.194758974, "czk": 59558383.72658777, "dkk": 16850121.706228428, "eos": 867416.4169009022, "eth": 6807.620516941358, "eur": 2261983.1996698156, "gbp": 2044516.5285969388, "hkd": 20817771.146036826, "huf": 782679115.4202518, "idr": 39155925155.5979, "ils": 9144354.267549887, "inr": 201178538.8092503, "jpy": 283531492.25797606, "krw": 3180713276.249984, "kwd": 820372.1208277788, "lkr": 498334352.38862664, "ltc": 45337.01190270873, "mmk": 3656374668.1439843, "mxn": 60189826.17095961, "myr": 11249621.693204893, "ngn": 1016588467.062092, "nok": 24109092.470505025, "nzd": 4018948.884249309, "php": 131828425.99878122, "pkr": 452982219.0635049, "pln": 9992393.172523517, "rub": 196714568.58739346, "sar": 10072404.190842625, "sek": 23348136.386845835, "sgd": 3677514.822725395, "thb": 83502603.54282832, "try": 19491957.14822231, "twd": 78920569.39538337, "uah": 74429276.17623332, "usd": 2685834.7874824093, "vef": 667396753790.3636, "vnd": 62077897606.657455, "xag": 90279.58245364763, "xau": 1297.6342192242544, "xdr": 1902269.346582295, "xlm": 25251520.18610937, "xrp": 8847619.6285362, "yfi": 551.7506119092069, "zar": 46851839.010417484, "bits": 228116806.36049324, "link": 264291.5411931031, "sats": 22811680636.049324}}, "community_data": {"facebook_likes": null, "twitter_followers": 52287, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3747, "reddit_accounts_active_48h": "1570.61538461538"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 13823, "bing_matches": null}}, "ETHOS_20190401": {"id": "ethos", "symbol": "vgx", "name": "Voyager Token", "localization": {"en": "Voyager Token", "de": "Voyager Token", "es": "Voyager Token", "fr": "Voyager Token", "it": "Voyager Token", "pl": "Voyager Token", "ro": "Voyager Token", "hu": "Voyager Token", "nl": "Voyager Token", "pt": "Voyager Token", "sv": "Voyager Token", "vi": "Voyager Token", "tr": "Voyager Token", "ru": "Voyager Token", "ja": "\u30a4\u30fc\u30bd\u30b9", "zh": "Voyager Token", "zh-tw": "Voyager Token", "ko": "\uc5d0\ud1a0\uc2a4", "ar": "Voyager Token", "th": "Voyager Token", "id": "Voyager Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/794/thumb/Voyager-vgx.png?1575693595", "small": "https://assets.coingecko.com/coins/images/794/small/Voyager-vgx.png?1575693595"}, "market_data": {"current_price": {"aed": 0.6279303620383996, "ars": 7.457181732356545, "aud": 0.24140296664494285, "bch": 0.0010164565430530285, "bdt": 14.402358584364052, "bhd": 0.064445080093238, "bmd": 0.17095001908111795, "bnb": 0.010307471026824408, "brl": 0.6669273094411633, "btc": 4.245947399149447e-05, "cad": 0.22961835612956688, "chf": 0.17008620863470095, "clp": 116.689441597255, "cny": 1.1520405551385864, "czk": 3.9301067486710854, "dkk": 1.1364876933526058, "eos": 0.04023476867302009, "eth": 0.0012404756254876133, "eur": 0.15224039424278485, "gbp": 0.130970450968674, "hkd": 1.3419832922896393, "huf": 48.783207411939216, "idr": 2432.3131281047426, "ils": 0.619946141397218, "inr": 11.828141912034816, "jpy": 18.914081061153944, "krw": 194.08639466355655, "kwd": 0.05196880580065987, "lkr": 30.119683861902168, "ltc": 0.0028252435235586572, "mmk": 259.94646926368324, "mxn": 3.3095410844047173, "myr": 0.6971341778127972, "ngn": 61.54200686920247, "nok": 1.4765124098055225, "nzd": 0.252140508293447, "php": 9.014449392625806, "pkr": 24.028734682041943, "pln": 0.6539795549959604, "rub": 11.108144194870038, "sar": 0.6411394990627788, "sek": 1.5881022571109702, "sgd": 0.23185626282935748, "thb": 5.446467607924404, "try": 0.9524998291662288, "twd": 5.276385843990223, "uah": 4.658388019960464, "usd": 0.17095001908111795, "vef": 42478.96718252087, "vnd": 3965.2687180532457, "xag": 0.0113666428472232, "xau": 0.0001323648902743187, "xdr": 0.12273322429925028, "xlm": 1.6077799361631457, "xrp": 0.5569200154532857, "zar": 2.494551912037168, "bits": 42.45947399149447, "link": 0.34287346809998215, "sats": 4245.947399149447}, "market_cap": {"aed": 73856473.14779384, "ars": 876984807.6678426, "aud": 28395338.87015412, "bch": 119551.96059429826, "bdt": 1693989452.2665718, "bhd": 7579958.885827181, "bmd": 20106951.753206246, "bnb": 1212385.2112848079, "brl": 78443250.87478352, "btc": 4994.166018443038, "cad": 27006652.247318972, "chf": 20003622.128146518, "clp": 13725350201.49592, "cny": 135501733.1054927, "czk": 462234410.966783, "dkk": 133672704.23926233, "eos": 4731907.972301196, "eth": 145910.66571656746, "eur": 17906426.846383616, "gbp": 15405946.433306605, "hkd": 157846608.6957826, "huf": 5738186092.826922, "idr": 286364733891.61383, "ils": 72917377.9661603, "inr": 1391212940.6812665, "jpy": 2224923977.3698144, "krw": 22831054606.035328, "kwd": 6112513.332974697, "lkr": 3542643829.397408, "ltc": 332310.5356917163, "mmk": 30574615574.749023, "mxn": 389268655.6747046, "myr": 81996149.24957493, "ngn": 7238502631.154248, "nok": 173681778.2281648, "nzd": 29651902.713019025, "php": 1060194325.3051196, "pkr": 2826233138.4306684, "pln": 76927649.17248195, "rub": 1305542366.6405056, "sar": 75410117.20281221, "sek": 186813266.49305242, "sgd": 27270958.128114864, "thb": 640808552.3746831, "try": 112027972.81597073, "twd": 620602654.3119006, "uah": 547914435.2748702, "usd": 20106951.753206246, "vef": 4996329033807.741, "vnd": 466347232472.8212, "xag": 1337345.3311590364, "xau": 15569.818090095254, "xdr": 14435745.79731092, "xlm": 189097717.89009708, "xrp": 65505970.20506294, "zar": 293464620.303264, "bits": 4994166018.443038, "link": 40329445.045731544, "sats": 499416601844.30383}, "total_volume": {"aed": 14517616.342473796, "ars": 172408454.71306577, "aud": 5581185.216637069, "bch": 23500.258966516838, "bdt": 332979465.55058444, "bhd": 1489956.5374040806, "bmd": 3952328.0618281, "bnb": 238306.5366402052, "brl": 15419217.467609916, "btc": 981.6540030183571, "cad": 5308727.529366887, "chf": 3932356.9481316796, "clp": 2697835057.4213114, "cny": 26634932.472734537, "czk": 90863231.67581564, "dkk": 26275353.61799749, "eos": 930219.2894876599, "eth": 28679.532479619287, "eur": 3519765.5171013204, "gbp": 3028008.954992544, "hkd": 31026368.134559885, "huf": 1127857373.9655359, "idr": 56234561908.996506, "ils": 14333022.860346159, "inr": 273464123.89715755, "jpy": 437289529.08872217, "krw": 4487236141.715917, "kwd": 1201507.7307957427, "lkr": 696360681.2134929, "ltc": 65319.02903362903, "mmk": 6009907050.998804, "mxn": 76515885.57857342, "myr": 16117593.83613495, "ngn": 1422838102.258116, "nok": 34136652.70281545, "nzd": 5829434.894528555, "php": 208412151.62133604, "pkr": 555539232.3705578, "pln": 15119868.140207078, "rub": 256817929.89672154, "sar": 14823008.779483197, "sek": 36716586.22543854, "sgd": 5360467.456024271, "thb": 125921172.04984295, "try": 22021593.35187796, "twd": 121988917.86224143, "uah": 107700939.68481573, "usd": 3952328.0618281, "vef": 982104681446.6038, "vnd": 91676168925.22484, "xag": 262794.36372885434, "xau": 3060.2480949928768, "xdr": 2837566.0273333564, "xlm": 37171529.97758084, "xrp": 12875872.240910929, "zar": 57673509.34867743, "bits": 981654003.0183572, "link": 7927161.616664379, "sats": 98165400301.83571}}, "community_data": {"facebook_likes": null, "twitter_followers": 60929, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5822, "reddit_accounts_active_48h": "1123.28"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 403749, "bing_matches": null}}, "KMD_20190105": {"id": "komodo", "symbol": "kmd", "name": "Komodo", "localization": {"en": "Komodo", "de": "Komodo", "es": "Komodo", "fr": "Komodo", "it": "Komodo", "pl": "Komodo", "ro": "Komodo", "hu": "Komodo", "nl": "Komodo", "pt": "Komodo", "sv": "Komodo", "vi": "Komodo", "tr": "Komodo", "ru": "Komodo", "ja": "\u30b3\u30e2\u30c9", "zh": "\u79d1\u83ab\u591a\u5e01", "zh-tw": "\u79d1\u83ab\u591a\u5e63", "ko": "\ucf54\ubaa8\ub3c4", "ar": "Komodo", "th": "Komodo", "id": "Komodo"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/611/thumb/KMD_Mark_Color.png?1563350261", "small": "https://assets.coingecko.com/coins/images/611/small/KMD_Mark_Color.png?1563350261"}, "market_data": {"current_price": {"aed": 2.935700966122312, "ars": 30.092649077722157, "aud": 1.1341024749634205, "bch": 0.004919984815812576, "bdt": 66.72214045263435, "bhd": 0.30088915816839834, "bmd": 0.799242321175768, "bnb": 0.13373932838083485, "brl": 3.1021791454116188, "btc": 0.00021067115079141115, "cad": 1.0890875489501604, "chf": 0.784955864684751, "clp": 554.6634666435748, "cny": 5.4975883062075175, "czk": 17.94601684106627, "dkk": 5.2057217946028835, "eos": 0.3053615513999472, "eth": 0.005784092710916098, "eur": 0.6972741865978422, "gbp": 0.626758635085147, "hkd": 6.260904685046429, "huf": 223.97369694691542, "idr": 11479.277686351204, "ils": 2.9884709403779586, "inr": 55.73915947879812, "jpy": 87.64870934116027, "krw": 890.7645704151413, "kwd": 0.24227192709104697, "lkr": 146.13346600377744, "ltc": 0.025427138465355433, "mmk": 1231.8220123960455, "mxn": 15.691940097650857, "myr": 3.3024508885248833, "ngn": 291.3238260685674, "nok": 6.910777408059991, "nzd": 1.189879998073637, "php": 41.95607938877717, "pkr": 111.52678900816369, "pln": 2.9900054856346157, "rub": 55.288626582351185, "sar": 2.9770177979155057, "sek": 7.092920736844332, "sgd": 1.0893297193734754, "thb": 25.84350045521854, "try": 4.2279271403918, "twd": 24.433637000664447, "uah": 22.156347063272754, "usd": 0.799242321175768, "vef": 198601.83996819053, "vnd": 18740.745108748404, "xag": 0.051700867764709245, "xau": 0.0006238246165241096, "xdr": 0.5728697215798695, "xlm": 6.999430806282456, "xrp": 2.2193363136088413, "zar": 11.50445381946824, "bits": 210.67115079141115, "link": 2.6084246479062387, "sats": 21067.115079141116}, "market_cap": {"aed": 326764252.5484624, "ars": 3349524388.403018, "aud": 126233615.69222675, "bch": 548034.6391554025, "bdt": 7426645494.563669, "bhd": 33491088.500986163, "bmd": 88961315.43978794, "bnb": 14891632.873291915, "brl": 345294449.74799186, "btc": 23455.284265376984, "cad": 121223136.484027, "chf": 87371131.92630173, "clp": 61737961456.31508, "cny": 611920408.252582, "czk": 1997518428.1248083, "dkk": 579433604.0415951, "eos": 33994378.1414271, "eth": 643583.4385758289, "eur": 77611541.8546644, "gbp": 69762662.91604267, "hkd": 696882912.56335, "huf": 24929854408.85858, "idr": 1277724685267.0415, "ils": 332637923.4003742, "inr": 6204162138.770819, "jpy": 9755920417.375467, "krw": 99148388206.86217, "kwd": 26966576.665316667, "lkr": 16265686915.01083, "ltc": 2829497.4942578175, "mmk": 137110490407.00038, "mxn": 1746623765.913385, "myr": 367586109.2869486, "ngn": 32426399477.802704, "nok": 769218336.7219115, "nzd": 132442047.97413868, "php": 4670007974.090949, "pkr": 12413719336.516455, "pln": 332808729.1260185, "rub": 6154014645.257402, "sar": 331363107.7501222, "sek": 789492175.7040622, "sgd": 121250091.76260532, "thb": 2876564134.745543, "try": 470598152.80992675, "twd": 2719636374.309756, "uah": 2466157919.6526995, "usd": 88961315.43978794, "vef": 22105787524290.766, "vnd": 2085977297527.7441, "xag": 5754671.748313957, "xau": 69436.08592706334, "xdr": 63764446.22251505, "xlm": 779902865.1401794, "xrp": 247219616.28559262, "zar": 1280526966.703396, "bits": 23455284265.376984, "link": 290411579.23912096, "sats": 2345528426537.698}, "total_volume": {"aed": 5186303.12390383, "ars": 53162635.336282305, "aud": 2003541.667426353, "bch": 8691.802371653768, "bdt": 117873465.13024592, "bhd": 531560.4003832799, "bmd": 1411967.0207913585, "bnb": 236268.17055774527, "brl": 5480408.794499567, "btc": 372.1783860394685, "cad": 1924016.8608813446, "chf": 1386728.1102947127, "clp": 979886201.954892, "cny": 9712215.152513353, "czk": 31704006.735873714, "dkk": 9196594.447827809, "eos": 539461.4731613926, "eth": 10218.362987834265, "eur": 1231826.856311776, "gbp": 1107251.8300013966, "hkd": 11060714.255720131, "huf": 395679089.1009574, "idr": 20279658729.520046, "ils": 5279528.246451608, "inr": 98470580.02998945, "jpy": 154843010.34332907, "krw": 1573653150.480458, "kwd": 428005.327111422, "lkr": 258164050.081492, "ltc": 44920.395223017345, "mmk": 2176176124.4441886, "mxn": 27721882.742047537, "myr": 5834215.25466841, "ngn": 514661979.0784502, "nok": 12208800.171962835, "nzd": 2102080.0218733437, "php": 74120950.36647756, "pkr": 197026788.79995432, "pln": 5282239.223131527, "rub": 97674654.22036909, "sar": 5259294.759043661, "sek": 12530580.396166062, "sgd": 1924444.6868886424, "thb": 45655953.617288716, "try": 7469191.170657606, "twd": 43165243.792612694, "uah": 39142110.62863458, "usd": 1411967.0207913585, "vef": 350856355918.49347, "vnd": 33107999085.536892, "xag": 91336.40486238776, "xau": 1102.0684990680695, "xdr": 1012049.9536245369, "xlm": 12365418.097784203, "xrp": 3920750.440555324, "zar": 20324135.690674976, "bits": 372178386.03946847, "link": 4608126.323497024, "sats": 37217838603.946846}}, "community_data": {"facebook_likes": null, "twitter_followers": 94706, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.417, "reddit_subscribers": 8211, "reddit_accounts_active_48h": "2847.92"}, "developer_data": {"forks": 13, "stars": 30, "subscribers": 15, "total_issues": 17, "closed_issues": 17, "pull_requests_merged": 154, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 226421, "bing_matches": null}}, "OK_20190112": {"id": "okcash", "symbol": "ok", "name": "OKCash", "localization": {"en": "OKCash", "de": "OKCash", "es": "OKCash", "fr": "OKCash", "it": "OKCash", "pl": "OKCash", "ro": "OKCash", "hu": "OKCash", "nl": "OKCash", "pt": "OKCash", "sv": "OKCash", "vi": "OKCash", "tr": "OKCash", "ru": "OKCash", "ja": "OKCash", "zh": "OKCash", "zh-tw": "OKCash", "ko": "\uc624\ucf00\uc774\uce90\uc2dc", "ar": "OKCash", "th": "OKCash", "id": "OKCash"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/274/thumb/okcash.png?1548330217", "small": "https://assets.coingecko.com/coins/images/274/small/okcash.png?1548330217"}, "market_data": {"current_price": {"aed": 0.06916437462533548, "ars": 0.7069357951789238, "aud": 0.02634786155500879, "bch": 0.00011853551036371921, "bdt": 1.5804809046541273, "bhd": 0.007097801882079922, "bmd": 0.01882955798402952, "bnb": 0.002864773329410157, "brl": 0.06991785821762433, "btc": 4.745944395756437e-06, "cad": 0.024974584232117538, "chf": 0.018475016236748208, "clp": 12.811838735233097, "cny": 0.1290415028548821, "czk": 0.42163334533418745, "dkk": 0.12279172777572914, "eos": 0.006835558077747489, "eth": 0.00012706898844412685, "eur": 0.016443363418945374, "gbp": 0.014789167920490402, "hkd": 0.14760772947050496, "huf": 5.290446758982846, "idr": 266.34551600172307, "ils": 0.06963547133653784, "inr": 1.3206110492099083, "jpy": 2.0487123973363652, "krw": 21.130529969677948, "kwd": 0.005706316376618111, "lkr": 3.43808899230395, "ltc": 0.00048343846167492235, "mmk": 28.94479432999191, "mxn": 0.364166099253669, "myr": 0.07751822100229797, "ngn": 6.879892642147873, "nok": 0.16082720894877264, "nzd": 0.02797603460432983, "php": 0.9878319213302644, "pkr": 2.624339083651505, "pln": 0.07066168224666747, "rub": 1.2595016017285392, "sar": 0.07065885781296989, "sek": 0.1679348022010045, "sgd": 0.025560936667740244, "thb": 0.6027718101847523, "try": 0.10313986416497886, "twd": 0.5803634310920489, "uah": 0.5283199638705961, "usd": 0.01882955798402952, "vef": 4678.912467891694, "vnd": 433.1457111949809, "xag": 0.0012031790044778712, "xau": 1.4655609865709717e-05, "xdr": 0.013485258689212352, "xlm": 0.1538804008334383, "xrp": 0.05194212461497427, "zar": 0.26287541066006936, "bits": 4.745944395756437, "link": 0.04552965948459132, "sats": 474.59443957564366}, "market_cap": {"aed": 5141042.424742292, "ars": 52547094.284757316, "aud": 1958457.2952376327, "bch": 8808.63529157974, "bdt": 117478390.08647056, "bhd": 527585.2025823419, "bmd": 1399615.8710235904, "bnb": 212928.35794897116, "brl": 5197049.453437194, "btc": 352.7422105509182, "cad": 1856380.5105321386, "chf": 1373262.5037880894, "clp": 952314061.0117335, "cny": 9591756.512267241, "czk": 31340338.545547336, "dkk": 9127205.809668206, "eos": 507757.782817668, "eth": 9444.05174349402, "eur": 1222248.1501522558, "gbp": 1099290.4962669618, "hkd": 10971798.755334575, "huf": 393243073.2021447, "idr": 19797671920.294544, "ils": 5176059.414219453, "inr": 98162059.11423938, "jpy": 152282405.61497983, "krw": 1570648930.4626734, "kwd": 424154.98932956945, "lkr": 255555861.89019737, "ltc": 35925.53201685747, "mmk": 2151489353.1824055, "mxn": 27068752.895659465, "myr": 5761990.403617146, "ngn": 511387837.20019853, "nok": 11954413.073745398, "nzd": 2079480.6799891712, "php": 73426324.51437332, "pkr": 195069190.44735432, "pln": 5252338.479190235, "rub": 93619745.76641974, "sar": 5252128.536809572, "sek": 12482726.076580673, "sgd": 1899964.5487558143, "thb": 44804503.26320713, "try": 7666467.313941155, "twd": 43138870.801273435, "uah": 39270438.904570356, "usd": 1399615.8710235904, "vef": 347787247833.7357, "vnd": 32196061764.61934, "xag": 89433.24276533104, "xau": 1089.363020893791, "xdr": 1002369.8964303187, "xlm": 11447636.91464152, "xrp": 3861128.4559118524, "zar": 19539736.257948086, "bits": 352742210.55091816, "link": 3383990.917926788, "sats": 35274221055.09182}, "total_volume": {"aed": 375921.1422347935, "ars": 3842326.5308174402, "aud": 143205.4907581703, "bch": 644.2623777442619, "bdt": 8590205.437066473, "bhd": 38577.86331939685, "bmd": 102342.12314470587, "bnb": 15570.57181633434, "brl": 380016.4646345517, "btc": 25.795083782656597, "cad": 135741.47503298055, "chf": 100415.1233080141, "clp": 69634708.29551272, "cny": 701364.3860972936, "czk": 2291655.0556685682, "dkk": 667395.704977966, "eos": 37152.519838700726, "eth": 690.6434061942368, "eur": 89372.71524706976, "gbp": 80381.85738668422, "hkd": 802275.2546498207, "huf": 28754554.629352238, "idr": 1447637040.6999478, "ils": 378481.6398137506, "inr": 7177764.806753934, "jpy": 11135130.02451344, "krw": 114848330.59298903, "kwd": 31014.882761126155, "lkr": 18686648.264991846, "ltc": 2627.5772707774518, "mmk": 157320299.72401354, "mxn": 1979309.9660946212, "myr": 421325.83922068053, "ngn": 37393486.37935343, "nok": 874125.5656247924, "nzd": 152054.9118043698, "php": 5369048.823387124, "pkr": 14263767.312027507, "pln": 384059.2855251371, "rub": 6845623.680300107, "sar": 384043.93420666555, "sek": 912756.646848226, "sgd": 138928.40874770682, "thb": 3276176.046108321, "try": 560584.1989734066, "twd": 3154382.3696702537, "uah": 2871516.519299635, "usd": 102342.12314470587, "vef": 25430752882.166046, "vnd": 2354226889.038822, "xag": 6539.499968392134, "xau": 79.65594470721902, "xdr": 73294.87004315978, "xlm": 836368.3812976195, "xrp": 282315.03459890356, "zar": 1428776.3776667614, "bits": 25795083.7826566, "link": 247462.10302231516, "sats": 2579508378.26566}}, "community_data": {"facebook_likes": null, "twitter_followers": 54980, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2045, "reddit_accounts_active_48h": "2130.25"}, "developer_data": {"forks": 171, "stars": 168, "subscribers": 134, "total_issues": 6, "closed_issues": 2, "pull_requests_merged": 13, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 3807197, "bing_matches": null}}, "THETA_20190113": {"id": "theta-token", "symbol": "theta", "name": "Theta Network", "localization": {"en": "Theta Network", "de": "Theta Network", "es": "Theta Network", "fr": "Theta Network", "it": "Theta Network", "pl": "Theta Network", "ro": "Theta Network", "hu": "Theta Network", "nl": "Theta Network", "pt": "Theta Network", "sv": "Theta Network", "vi": "Theta Network", "tr": "Theta Network", "ru": "Theta Network", "ja": "\u30b7\u30fc\u30bf", "zh": "Theta Network", "zh-tw": "Theta Network", "ko": "\uc384\ud0c0", "ar": "Theta Network", "th": "Theta Network", "id": "Theta Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2538/thumb/theta-token-logo.png?1548387191", "small": "https://assets.coingecko.com/coins/images/2538/small/theta-token-logo.png?1548387191"}, "market_data": {"current_price": {"aed": 0.18402303025590078, "ars": 1.8717771993554966, "aud": 0.06982245224731784, "bch": 0.00031773135565699314, "bdt": 4.206015052413273, "bhd": 0.018884952661200754, "bmd": 0.05009909129332326, "bnb": 0.007693555644716465, "brl": 0.184404785331556, "btc": 1.2598495026402352e-05, "cad": 0.06619342437130335, "chf": 0.04879861908153125, "clp": 33.86675555906111, "cny": 0.3415062672955283, "czk": 1.1115836078888697, "dkk": 0.3238367686881952, "eos": 0.01744898853800989, "eth": 0.00033702899429202335, "eur": 0.043371835413547145, "gbp": 0.039149433900254604, "hkd": 0.3926641527842451, "huf": 13.942713526757437, "idr": 708.1544900155723, "ils": 0.18418429923077384, "inr": 3.535016931202537, "jpy": 5.41992009247689, "krw": 56.08198539547241, "kwd": 0.01517085652817024, "lkr": 9.146102130291016, "ltc": 0.00130531131018865, "mmk": 76.95270962617754, "mxn": 0.9629646535672263, "myr": 0.20548422848867767, "ngn": 18.282934976810008, "nok": 0.4241228751800609, "nzd": 0.07378363709860704, "php": 2.6219594894089853, "pkr": 7.012242757030944, "pln": 0.18658028827187637, "rub": 3.341238655989094, "sar": 0.18796678062341926, "sek": 0.4442548944217355, "sgd": 0.06778161566439302, "thb": 1.59966398499581, "try": 0.2745380604773736, "twd": 1.5392410240587637, "uah": 1.41660506165276, "usd": 0.05009909129332326, "vef": 12449.005073894516, "vnd": 1164.2730087710725, "xag": 0.0031809000212411976, "xau": 3.874814017899501e-05, "xdr": 0.03583878574940916, "xlm": 0.4091692686402223, "xrp": 0.13662883376755183, "zar": 0.6940299760546454, "bits": 12.598495026402352, "link": 0.12723524086256663, "sats": 1259.8495026402352}, "market_cap": {"aed": 130238041.28535536, "ars": 1324706999.0514486, "aud": 49415224.85411516, "bch": 224628.73162508282, "bdt": 2976709824.206706, "bhd": 13365388.23940264, "bmd": 35456472.54664438, "bnb": 5494234.658050856, "brl": 130508219.6061609, "btc": 8915.467712971831, "cad": 46846864.35225383, "chf": 34536093.43227852, "clp": 23968412554.496742, "cny": 241693158.06501633, "czk": 786697575.9231809, "dkk": 229187979.30606812, "eos": 12333845.59261999, "eth": 238395.38579530924, "eur": 30695412.869553506, "gbp": 27707105.90684972, "hkd": 277898967.70246214, "huf": 9867632857.705822, "idr": 501179953285.2264, "ils": 130352175.67048308, "inr": 2501826431.1275015, "jpy": 3835823025.9861684, "krw": 39690727400.49638, "kwd": 10736822.647157235, "lkr": 6472942137.668801, "ltc": 921931.0927853648, "mmk": 54461499516.54077, "mxn": 681515950.1135606, "myr": 145426707.71252465, "ngn": 12939324154.243511, "nok": 300163150.5086763, "nzd": 52218661.76896068, "php": 1855631155.2707295, "pkr": 4962752544.739434, "pln": 132047881.47002673, "rub": 2364684340.9643354, "sar": 133029139.3477547, "sek": 314411121.26271, "sgd": 47970869.98845501, "thb": 1132125168.414353, "try": 194297959.3648286, "twd": 1089362216.0264947, "uah": 1002569451.4866871, "usd": 35456472.54664438, "vef": 8810495265298.398, "vnd": 823987280140.3912, "xag": 2251208.382531872, "xau": 27423.099561751158, "xdr": 25364071.288022425, "xlm": 289462442.69445825, "xrp": 96582133.6826366, "zar": 491183655.3771832, "bits": 8915467712.97183, "link": 90039459.43425414, "sats": 891546771297.1831}, "total_volume": {"aed": 5675670.115621722, "ars": 57729676.00148224, "aud": 2153476.144091587, "bch": 9799.525405003204, "bdt": 129722643.44110094, "bhd": 582452.9750708805, "bmd": 1545164.8354986352, "bnb": 237285.97336359686, "brl": 5687444.2716682255, "btc": 388.56496180791424, "cad": 2041549.0389025712, "chf": 1505055.4466987639, "clp": 1044524330.3098228, "cny": 10532795.340297373, "czk": 34283653.820593104, "dkk": 9987829.609300535, "eos": 538164.7213139135, "eth": 10394.706512229843, "eur": 1337681.6465527152, "gbp": 1207453.6090520557, "hkd": 12110615.689429449, "huf": 430023581.20311666, "idr": 21841023216.689728, "ils": 5680644.001227188, "inr": 109027603.37520148, "jpy": 167162112.56358457, "krw": 1729690289.8033338, "kwd": 467902.1799911893, "lkr": 282085663.2081917, "ltc": 40258.63710927127, "mmk": 2373388774.9487653, "mxn": 29699922.336086404, "myr": 6337580.102028437, "ngn": 563885441.5636835, "nok": 13080871.044584086, "nzd": 2275647.692139958, "php": 80866927.8932939, "pkr": 216272803.48672137, "pln": 5754541.50948489, "rub": 103051060.30797637, "sar": 5797303.946307321, "sek": 13701786.262740212, "sgd": 2090532.3093527146, "thb": 49337113.197471365, "try": 8467350.327213813, "twd": 47473537.789486386, "uah": 43691178.23394404, "usd": 1545164.8354986352, "vef": 383954366846.75867, "vnd": 35908709432.28083, "xag": 98105.86841350129, "xau": 1195.0768387197093, "xdr": 1105346.026392633, "xlm": 12619669.32629423, "xrp": 4213930.113358063, "zar": 21405392.515063763, "bits": 388564961.80791426, "link": 3924211.2968870937, "sats": 38856496180.79143}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3816, "reddit_accounts_active_48h": "921.416666666667"}, "developer_data": {"forks": 8, "stars": 36, "subscribers": 7, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 25, "pull_request_contributors": 4, "code_additions_deletions_4_weeks": {"additions": 4247, "deletions": -379}, "commit_count_4_weeks": 38}, "public_interest_stats": {"alexa_rank": 533295, "bing_matches": null}}, "WTC_20190218": {"id": "waltonchain", "symbol": "wtc", "name": "Waltonchain", "localization": {"en": "Waltonchain", "de": "Waltonchain", "es": "Waltonchain", "fr": "Waltonchain", "it": "Waltonchain", "pl": "Waltonchain", "ro": "Waltonchain", "hu": "Waltonchain", "nl": "Waltonchain", "pt": "Waltonchain", "sv": "Waltonchain", "vi": "Waltonchain", "tr": "Waltonchain", "ru": "Waltonchain", "ja": "\u30a6\u30a9\u30eb\u30c8\u30f3\u30c1\u30a7\u30fc\u30f3", "zh": "\u6c83\u5c14\u987f\u94fe", "zh-tw": "\u6c83\u723e\u9813\u93c8", "ko": "\uc6d4\ud2bc\uccb4\uc778", "ar": "Waltonchain", "th": "Waltonchain", "id": "Waltonchain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1093/thumb/ggx6nnW.png?1604815811", "small": "https://assets.coingecko.com/coins/images/1093/small/ggx6nnW.png?1604815811"}, "market_data": {"current_price": {"aed": 3.5804725925919616, "ars": 37.22598881502309, "aud": 1.371799474234133, "bch": 0.00806142860648981, "bdt": 82.01638355833829, "bhd": 0.3675438878913324, "bmd": 0.9747830216822395, "bnb": 0.11218048156524034, "brl": 3.6296016568847387, "btc": 0.00027155148408632195, "cad": 1.2959379603547327, "chf": 0.9794746523655938, "clp": 647.6318124779964, "cny": 6.601425579436464, "czk": 22.252371188537666, "dkk": 6.437514839557565, "eos": 0.35484040686322793, "eth": 0.00807440324339462, "eur": 0.8628945021044866, "gbp": 0.7616018739724196, "hkd": 7.650145893313303, "huf": 274.82057730287386, "idr": 13729.724730471833, "ils": 3.5626857267953214, "inr": 69.22909019987264, "jpy": 107.73117893202802, "krw": 1100.8224663857509, "kwd": 0.2961371324210214, "lkr": 174.07752501495025, "ltc": 0.023528697724737004, "mmk": 1494.0499373323673, "mxn": 18.774808389110746, "myr": 3.972222292477713, "ngn": 352.3840623381296, "nok": 8.429923571508004, "nzd": 1.4263727017030114, "php": 50.95039860442987, "pkr": 136.07345366940731, "pln": 3.7359641315125875, "rub": 64.97698918099259, "sar": 3.6562648968768108, "sek": 9.056348384731658, "sgd": 1.3236071764251847, "thb": 30.508759012610703, "try": 5.1437867123129815, "twd": 30.05889664810424, "uah": 26.549190378537475, "usd": 0.9747830216822395, "vef": 242221.53475437697, "vnd": 22569.436444538394, "xag": 0.06238212652510447, "xau": 0.0007426969320499133, "xdr": 0.7003747775975367, "xlm": 12.810489030421039, "xrp": 3.252691713741531, "zar": 13.769306345819645, "bits": 271.5514840863219, "link": 2.270312935005752, "sats": 27155.148408632194}, "market_cap": {"aed": 94846003.370736, "ars": 986109003.5806435, "aud": 36343677.5081747, "bch": 213414.45105555767, "bdt": 2172597608.350475, "bhd": 9736164.131506162, "bmd": 25821807.42047819, "bnb": 2970729.2407305124, "brl": 96136887.16730055, "btc": 7191.454984633388, "cad": 34323637.513670616, "chf": 25950838.992158294, "clp": 17156208375.271622, "cny": 174870444.21296275, "czk": 589512328.2020514, "dkk": 170545291.47003227, "eos": 9395737.305532787, "eth": 213786.01077600094, "eur": 22861182.268875852, "gbp": 20176437.307753902, "hkd": 202632760.4610894, "huf": 7280525170.823395, "idr": 363828438913.96643, "ils": 94374832.8507344, "inr": 1833864763.0023618, "jpy": 2853929443.3409314, "krw": 29163860278.333622, "kwd": 7844613.450726432, "lkr": 4611278845.842286, "ltc": 623157.3606901058, "mmk": 39577084233.366974, "mxn": 497328010.91841024, "myr": 105223374.62410772, "ngn": 9334583382.502867, "nok": 223330230.19897366, "nzd": 37777149.32531509, "php": 1349842264.6551924, "pkr": 3604558591.538731, "pln": 98977570.02343501, "rub": 1721253278.6609166, "sar": 96853726.36310042, "sek": 239911574.72499663, "sgd": 35056976.8444122, "thb": 808222572.2609707, "try": 136259095.57712114, "twd": 796254164.5215777, "uah": 703282746.904144, "usd": 25821807.42047819, "vef": 6416400044315.784, "vnd": 597859860601.4382, "xag": 1652545.5806042096, "xau": 19674.151509810716, "xdr": 18552787.878961656, "xlm": 339500793.0060375, "xrp": 86133857.48301375, "zar": 364727968.7400002, "bits": 7191454984.6333885, "link": 60124338.219174385, "sats": 719145498463.3389}, "total_volume": {"aed": 7074748.100720143, "ars": 73555790.99011065, "aud": 2710573.946296045, "bch": 15928.784608170403, "bdt": 162058286.66523594, "bhd": 726239.4434104903, "bmd": 1926098.9025664604, "bnb": 221660.30555117872, "brl": 7171823.485409478, "btc": 536.5655780363578, "cad": 2560677.2253027093, "chf": 1935369.2165845083, "clp": 1279672394.3019452, "cny": 13043926.987960586, "czk": 43969033.900259644, "dkk": 12720051.531395115, "eos": 701138.307749777, "eth": 15954.421527718328, "eur": 1705015.4922331735, "gbp": 1504868.7769707842, "hkd": 15116120.492286716, "huf": 543025063.6005623, "idr": 27128917048.908024, "ils": 7039602.574045005, "inr": 136791544.06027, "jpy": 212868813.77465296, "krw": 2175143490.6682997, "kwd": 585144.9944018864, "lkr": 343964269.4167477, "ltc": 46490.960406988816, "mmk": 2952131787.9636116, "mxn": 37097627.912881255, "myr": 7848816.4320791755, "ngn": 696284753.2777754, "nok": 16656903.309394745, "nzd": 2818406.5933562247, "php": 100674206.10994841, "pkr": 268871045.09552085, "pln": 7381987.84106414, "rub": 128389708.03738493, "sar": 7224508.068691374, "sek": 17894672.24715102, "sgd": 2615349.542652061, "thb": 60283043.45252502, "try": 10163740.772304514, "twd": 59394148.80899038, "uah": 52459229.71030012, "usd": 1926098.9025664604, "vef": 478611775021.71674, "vnd": 44595531313.572235, "xag": 123262.45201974161, "xau": 1467.5140148544083, "xdr": 1383888.5788016827, "xlm": 25312575.531169828, "xrp": 6427077.411968768, "zar": 27207127.38309261, "bits": 536565578.0363578, "link": 4485969.8572206795, "sats": 53656557803.63578}}, "community_data": {"facebook_likes": null, "twitter_followers": 54418, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.652, "reddit_subscribers": 20404, "reddit_accounts_active_48h": "898.458333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 741681, "bing_matches": null}}, "AMA_20210705": {"id": "mrweb-finance", "symbol": "ama", "name": "MrWeb Finance", "localization": {"en": "MrWeb Finance", "de": "MrWeb Finance", "es": "MrWeb Finance", "fr": "MrWeb Finance", "it": "MrWeb Finance", "pl": "MrWeb Finance", "ro": "MrWeb Finance", "hu": "MrWeb Finance", "nl": "MrWeb Finance", "pt": "MrWeb Finance", "sv": "MrWeb Finance", "vi": "MrWeb Finance", "tr": "MrWeb Finance", "ru": "MrWeb Finance", "ja": "MrWeb Finance", "zh": "MrWeb Finance", "zh-tw": "MrWeb Finance", "ko": "MrWeb Finance", "ar": "MrWeb Finance", "th": "MrWeb Finance", "id": "MrWeb Finance"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15285/thumb/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK.png?1621114070", "small": "https://assets.coingecko.com/coins/images/15285/small/TVocZFCRZ6tg8MqKCKXzZ9H2qSg29T75tK.png?1621114070"}, "market_data": {"current_price": {"aed": 0.11766039897866692, "ars": 3.067620575964164, "aud": 0.0428992466936111, "bch": 6.399223851354978e-05, "bdt": 2.717546006019274, "bhd": 0.012076174925339052, "bmd": 0.03203212429997461, "bnb": 0.00011074910806271322, "brl": 0.16171136070148337, "btc": 9.523347699355403e-07, "cad": 0.039848763432275884, "chf": 0.029660081431312938, "clp": 23.71977507112081, "cny": 0.20721901530896605, "czk": 0.6905020890786182, "dkk": 0.20107861724128256, "dot": 0.002095246754814069, "eos": 0.008085124384368977, "eth": 1.5087104817794521e-05, "eur": 0.027040974787925432, "gbp": 0.02327803301791026, "hkd": 0.24876147731360332, "huf": 9.497397943665996, "idr": 468.05019705879926, "ils": 0.1047101314454299, "inr": 2.388303528112861, "jpy": 3.573687971619888, "krw": 36.31058239776795, "kwd": 0.009649581348994421, "lkr": 6.377625065325934, "ltc": 0.00023184454925129019, "mmk": 52.74561957642687, "mxn": 0.6407635674293458, "myr": 0.13322160496359411, "ngn": 13.165573602871387, "nok": 0.2763896009399468, "nzd": 0.04597660490723397, "php": 1.576269637512687, "pkr": 5.063094976543987, "pln": 0.12210392729368372, "rub": 2.3544379811143337, "sar": 0.12013923694974428, "sek": 0.2748141970026257, "sgd": 0.04322286724541372, "thb": 1.027693146437317, "try": 0.27781157100187115, "twd": 0.8935088800421371, "uah": 0.8773282048053723, "usd": 0.03203212429997461, "vef": 0.0032073766061564576, "vnd": 738.4807611421589, "xag": 0.0012314609245778281, "xau": 1.803696887207267e-05, "xdr": 0.0224785432275072, "xlm": 0.11794435213280179, "xrp": 0.048171787607336564, "yfi": 9.922102529700964e-07, "zar": 0.46313422694248174, "bits": 0.9523347699355402, "link": 0.001743456656856151, "sats": 95.23347699355402}, "market_cap": {"aed": 2340458.287282296, "ars": 61010509.36269698, "aud": 853145.2158784288, "bch": 1274.347433531516, "bdt": 54056446.57053998, "bhd": 240191.3476710686, "bmd": 637171.4818910762, "bnb": 2203.584431533988, "brl": 3216783.164500436, "btc": 18.969690808815773, "cad": 792631.76590027, "chf": 589978.101741849, "clp": 471825224.2858924, "cny": 4121926.033501552, "czk": 13742323.36998215, "dkk": 3999657.923498526, "dot": 41737.87737126488, "eos": 161145.41506680474, "eth": 299.7917479945682, "eur": 537870.217952797, "gbp": 463026.7813469076, "hkd": 4948474.4373829, "huf": 188881019.0719581, "idr": 9240898001.866268, "ils": 2082856.228868552, "inr": 47507273.75937922, "jpy": 71089950.43238714, "krw": 722488631.17411, "kwd": 191948.54609116894, "lkr": 126861421.23339035, "ltc": 4607.476304283066, "mmk": 1049196871.0548956, "mxn": 12745248.762402324, "myr": 2649996.193184978, "ngn": 261884849.2197626, "nok": 5497655.72348222, "nzd": 914359.5544866686, "php": 31351093.77042982, "pkr": 100713262.06617983, "pln": 2428695.068437548, "rub": 46833632.4933791, "sar": 2389763.253722512, "sek": 5466636.941400798, "sgd": 859725.9229434002, "thb": 20443439.91574352, "try": 5526146.846294972, "twd": 17773356.89159195, "uah": 17451496.726400986, "usd": 637171.4818910762, "vef": 63799.98048175334, "vnd": 14689593375.652946, "xag": 24496.7139079288, "xau": 358.7084291602182, "xdr": 447135.0874170618, "xlm": 2345049.09239061, "xrp": 958839.4807319097, "yfi": 19.7021650138052, "zar": 9213219.272692923, "bits": 18969690.808815774, "link": 34717.79062865926, "sats": 1896969080.8815773}, "total_volume": {"aed": 4704037.586458835, "ars": 122642814.53733875, "aud": 1715102.7077012116, "bch": 2558.3960093825217, "bdt": 108646908.10340975, "bhd": 482802.8907138611, "bmd": 1280637.4786177794, "bnb": 4427.725653796663, "brl": 6465185.614703739, "btc": 38.07414042069199, "cad": 1593145.039337482, "chf": 1185803.7120511776, "clp": 948311534.258285, "cny": 8284571.91292629, "czk": 27606125.839698114, "dkk": 8039080.11146266, "dot": 83767.51713495635, "eos": 323241.5436748796, "eth": 603.1792238492857, "eur": 1081092.3886119917, "gbp": 930650.7814488484, "hkd": 9945430.658945696, "huf": 379703938.5244814, "idr": 18712546773.815144, "ils": 4186288.660228442, "inr": 95483864.2536994, "jpy": 142875280.7801014, "krw": 1451689318.3090432, "kwd": 385788.198521169, "lkr": 254976086.092268, "ltc": 9269.095493135408, "mmk": 2108758589.6556177, "mxn": 25617590.382024754, "myr": 5326171.273571334, "ngn": 526356816.8456243, "nok": 11049997.13254073, "nzd": 1838134.8309095008, "php": 63018922.98187694, "pkr": 202421454.28889892, "pln": 4881688.898130173, "rub": 94129926.92771816, "sar": 4803140.998379132, "sek": 10987012.820067363, "sgd": 1728040.9881476862, "thb": 41086952.195902325, "try": 11106847.191491527, "twd": 35722293.92418615, "uah": 35075393.988874644, "usd": 1280637.4786177794, "vef": 128230.23073399827, "vnd": 29524302887.323112, "xag": 49233.54438496979, "xau": 721.1141578348842, "xdr": 898687.3506200275, "xlm": 4715389.972830448, "xrp": 1925897.7657632153, "yfi": 39.66835370401396, "zar": 18516007.339971658, "bits": 38074140.42069199, "link": 69703.02425797636, "sats": 3807414042.069199}}, "community_data": {"facebook_likes": null, "twitter_followers": 11354, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 7511, "reddit_accounts_active_48h": "3.23076923076923"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 239005, "bing_matches": null}}, "MCT_20210711": {"id": "microtuber", "symbol": "mct", "name": "MicroTuber", "localization": {"en": "MicroTuber", "de": "MicroTuber", "es": "MicroTuber", "fr": "MicroTuber", "it": "MicroTuber", "pl": "MicroTuber", "ro": "MicroTuber", "hu": "MicroTuber", "nl": "MicroTuber", "pt": "MicroTuber", "sv": "MicroTuber", "vi": "MicroTuber", "tr": "MicroTuber", "ru": "MicroTuber", "ja": "MicroTuber", "zh": "MicroTuber", "zh-tw": "MicroTuber", "ko": "MicroTuber", "ar": "MicroTuber", "th": "MicroTuber", "id": "MicroTuber"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15489/thumb/mct.PNG?1621040638", "small": "https://assets.coingecko.com/coins/images/15489/small/mct.PNG?1621040638"}, "market_data": {"current_price": {"aed": 0.019760806065137825, "ars": 0.5161901297480277, "aud": 0.007187720170281067, "bch": 1.0554058811274106e-05, "bdt": 0.4561943265475951, "bhd": 0.002028309821128644, "bmd": 0.00538001798669694, "bnb": 1.6387081596099893e-05, "brl": 0.028150944115391662, "btc": 1.5833922954210504e-07, "cad": 0.006715607451894461, "chf": 0.004979099046328277, "clp": 4.030172178617027, "cny": 0.03482485642788935, "czk": 0.11763087064835448, "dkk": 0.03391724739353351, "dot": 0.00031937337571463255, "eos": 0.0014023253651301972, "eth": 2.3216709758405616e-06, "eur": 0.004561179249121659, "gbp": 0.0038983556531426225, "hkd": 0.04179009671436654, "huf": 1.6278757656410754, "idr": 78.07858703553674, "ils": 0.01761347948610744, "inr": 0.4025445343234089, "jpy": 0.595175249814322, "krw": 6.14, "kwd": 0.0016203753373053356, "lkr": 1.0704923176738517, "ltc": 3.909242503040462e-05, "mmk": 8.854372969703114, "mxn": 0.10736309556070751, "myr": 0.022394324869626024, "ngn": 2.214388395634169, "nok": 0.04697751005713966, "nzd": 0.007670399243993557, "php": 0.2680863931174327, "pkr": 0.8549833124153002, "pln": 0.020680552420071652, "rub": 0.40197826591023594, "sar": 0.020177746699070916, "sek": 0.04639350910468376, "sgd": 0.007257396783226783, "thb": 0.17398227118466994, "try": 0.04671690198586399, "twd": 0.15008366638587312, "uah": 0.1467035571053531, "usd": 0.00538001798669694, "vef": 0.0005387012010079647, "vnd": 124.09020700673294, "xag": 0.00020576045570680043, "xau": 2.982843372364376e-06, "xdr": 0.0037788977337659888, "xlm": 0.020823939962484217, "xrp": 0.008238025838689756, "yfi": 1.5144175596000644e-07, "zar": 0.07693352552732009, "bits": 0.15833922954210503, "link": 0.0002708850786946975, "sats": 15.833922954210502}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 4884465.346686788, "ars": 127591596.85819286, "aud": 1776656.7809881826, "bch": 2608.746544074905, "bdt": 112761866.6987461, "bhd": 501356.5236655866, "bmd": 1329829.9337562746, "bnb": 4050.549958621866, "brl": 6958335.128379688, "btc": 39.138205049435705, "cad": 1659960.214811271, "chf": 1230731.0070927553, "clp": 996175777.5845449, "cny": 8607989.161204379, "czk": 29075934.933450606, "dkk": 8383646.8513796795, "dot": 78942.53813282501, "eos": 346626.0246763153, "eth": 573.8693750913358, "eur": 1127429.817838568, "gbp": 963593.4401698643, "hkd": 10329653.484941939, "huf": 402377450.5845087, "idr": 19299422879.6247, "ils": 4353690.325226638, "inr": 99500740.0973219, "jpy": 147115096.0816553, "krw": 1517681876.427428, "kwd": 400523.4987684509, "lkr": 264603711.62677485, "ltc": 9662.844458345771, "mmk": 2188619117.792723, "mxn": 26537951.84521691, "myr": 5535417.099260495, "ngn": 547351324.9878156, "nok": 11611875.507069724, "nzd": 1895965.1331549946, "php": 66265449.53601408, "pkr": 211334312.36165974, "pln": 5111807.752842042, "rub": 99360770.17747402, "sar": 4987524.506893044, "sek": 11467522.467760492, "sgd": 1793879.4084602613, "thb": 43004843.615090474, "try": 11547458.545078551, "twd": 37097599.41720196, "uah": 36262105.834890984, "usd": 1329829.9337562746, "vef": 133155.87126701578, "vnd": 30672550198.08574, "xag": 50859.758063788206, "xau": 737.2976101724893, "xdr": 934065.8963207364, "xlm": 5147250.207960122, "xrp": 2036270.767576597, "yfi": 37.433291263004435, "zar": 19016387.195843745, "bits": 39138205.049435705, "link": 66957.22712207818, "sats": 3913820504.94357}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 5213386, "bing_matches": null}}, "HONOR_20210727": {"id": "honor-token", "symbol": "honor", "name": "Honor Token", "localization": {"en": "Honor Token", "de": "Honor Token", "es": "Honor Token", "fr": "Honor Token", "it": "Honor Token", "pl": "Honor Token", "ro": "Honor Token", "hu": "Honor Token", "nl": "Honor Token", "pt": "Honor Token", "sv": "Honor Token", "vi": "Honor Token", "tr": "Honor Token", "ru": "Honor Token", "ja": "Honor Token", "zh": "Honor Token", "zh-tw": "Honor Token", "ko": "Honor Token", "ar": "Honor Token", "th": "Honor Token", "id": "Honor Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/16654/thumb/Qkj26Aj.png?1624599365", "small": "https://assets.coingecko.com/coins/images/16654/small/Qkj26Aj.png?1624599365"}, "market_data": {"current_price": {"aed": 0.14751441081161618, "ars": 3.8701937448719397, "aud": 0.054516635333936005, "bch": 8.820339375332835e-05, "bdt": 3.408614807872859, "bhd": 0.015145187687095938, "bmd": 0.04016183251064959, "bnb": 0.00013493442554019167, "brl": 0.20887365852138562, "btc": 1.200690936622017e-06, "cad": 0.050451093190715376, "chf": 0.03694173710361067, "clp": 30.611742365737506, "cny": 0.260304901234524, "czk": 0.8751363708651811, "dkk": 0.25372177445854077, "dot": 0.0030050840174492693, "eos": 0.011053043283137727, "eth": 1.895687503415133e-05, "eur": 0.0341178381742894, "gbp": 0.02919797352990233, "hkd": 0.31204338196636855, "huf": 12.285102946682615, "idr": 581.3485498665287, "ils": 0.131473774906862, "inr": 2.990010276676977, "jpy": 4.439949832795718, "krw": 46.27125047216957, "kwd": 0.012086462523084885, "lkr": 8.010753291478807, "ltc": 0.00032315324099330963, "mmk": 66.09321857328575, "mxn": 0.8055439474907279, "myr": 0.16974398510626051, "ngn": 16.52659407813224, "nok": 0.35610292032217683, "nzd": 0.05760423685552224, "php": 2.017218522456016, "pkr": 6.458795863311947, "pln": 0.15602361875114457, "rub": 2.966682276263166, "sar": 0.15063546713968295, "sek": 0.34898825169291525, "sgd": 0.0546321407642366, "thb": 1.3226351718135172, "try": 0.34362062277786704, "twd": 1.12646309444195, "uah": 1.0930796956987823, "usd": 0.04016183251064959, "vef": 0.00402140428929134, "vnd": 923.3573679811892, "xag": 0.0015956251878465348, "xau": 2.2283792768533915e-05, "xdr": 0.02825971279878851, "xlm": 0.14898606345217974, "xrp": 0.06589723348080895, "yfi": 1.366738365919718e-06, "zar": 0.5962164602619713, "bits": 1.200690936622017, "link": 0.002430342629333545, "sats": 120.06909366220171}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 114565.12072642735, "ars": 3005734.905331721, "aud": 42339.625493316, "bch": 68.50200192803766, "bdt": 2647255.7143758805, "bhd": 11762.310178714515, "bmd": 31191.15729007002, "bnb": 104.79504115638488, "brl": 162218.97083419558, "btc": 0.932500772991573, "cad": 39182.17583199944, "chf": 28690.312680866744, "clp": 23774205.79102393, "cny": 202162.36685985964, "czk": 679663.1151399474, "dkk": 197049.66831265774, "dot": 2333.858850521351, "eos": 8584.20022260893, "eth": 14.722606862165115, "eur": 26497.168838330075, "gbp": 22676.22087913922, "hkd": 242344.37523879248, "huf": 9541063.103459528, "idr": 451496680.4473565, "ils": 102107.37250477282, "inr": 2322152.0286462875, "jpy": 3448228.453172029, "krw": 35935956.137035444, "kwd": 9386.791639502797, "lkr": 6221445.843144875, "ltc": 250.97270065915114, "mmk": 51330426.114886194, "mxn": 625615.0777877143, "myr": 131829.42628648094, "ngn": 12835161.224863762, "nok": 276562.63434386393, "nzd": 44737.5704746193, "php": 1566646.1485711364, "pkr": 5016138.584403406, "pln": 121173.684794946, "rub": 2304034.64493435, "sar": 116989.04794175265, "sek": 271037.120829928, "sgd": 42429.33126168222, "thb": 1027207.1542172501, "try": 266868.4226581102, "twd": 874852.6987876125, "uah": 848925.9226426453, "usd": 31191.15729007002, "vef": 3123.1705794547083, "vnd": 717113316.281307, "xag": 1239.2212481071822, "xau": 17.306413622395343, "xdr": 21947.533062528586, "xlm": 115708.0603314863, "xrp": 51178.21687880784, "yfi": 1.0614593179848328, "zar": 463043.6468761405, "bits": 932500.772991573, "link": 1887.4935350672538, "sats": 93250077.29915729}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "CREA_20210728": {"id": "creativecoin", "symbol": "crea", "name": "CREA", "localization": {"en": "CREA", "de": "CREA", "es": "CREA", "fr": "CREA", "it": "CREA", "pl": "CREA", "ro": "CREA", "hu": "CREA", "nl": "CREA", "pt": "CREA", "sv": "CREA", "vi": "CREA", "tr": "CREA", "ru": "CREA", "ja": "CREA", "zh": "CREA", "zh-tw": "CREA", "ko": "CREA", "ar": "CREA", "th": "CREA", "id": "CREA"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/682/thumb/CREA.png?1547034435", "small": "https://assets.coingecko.com/coins/images/682/small/CREA.png?1547034435"}, "market_data": {"current_price": {"aed": 0.13526090559121717, "ars": 3.547669444469082, "aud": 0.0500081279238819, "bch": 8.275114219600296e-05, "bdt": 3.1237365715537573, "bhd": 0.013873853815248168, "bmd": 0.036823724706309915, "bnb": 0.00012467489449823353, "brl": 0.19162565534507725, "btc": 1.08e-06, "cad": 0.04625777885744297, "chf": 0.033874844008103894, "clp": 28.067411208396457, "cny": 0.23866928931147696, "czk": 0.8023889613504939, "dkk": 0.23261546896975943, "dot": 0.0027884527616770633, "eos": 0.010294494980743465, "eth": 1.732690818123606e-05, "eur": 0.031282637907403224, "gbp": 0.026783809812583957, "hkd": 0.28609824673320405, "huf": 11.268059760130823, "idr": 533.0289386825427, "ils": 0.12042249113101212, "inr": 2.741286950174185, "jpy": 4.071010061181391, "krw": 42.42534970863384, "kwd": 0.011081879008015789, "lkr": 7.341525962590778, "ltc": 0.0002953154442833089, "mmk": 60.57218438715629, "mxn": 0.7385900171105765, "myr": 0.15563547247121856, "ngn": 15.142977337689109, "nok": 0.3263686720720254, "nzd": 0.052801096971681394, "php": 1.8508746309331787, "pkr": 5.91922229999458, "pln": 0.1430988353949557, "rub": 2.720102261350644, "sar": 0.13813617566373587, "sek": 0.32002578549136296, "sgd": 0.05012960939168799, "thb": 1.2138744210745176, "try": 0.3150416943523638, "twd": 1.0324520306659606, "uah": 0.9951599818288354, "usd": 0.036823724706309915, "vef": 0.003687159554842817, "vnd": 846.6644270476846, "xag": 0.0014630025319719805, "xau": 2.0431643653296035e-05, "xdr": 0.02590445926659726, "xlm": 0.1436456644891153, "xrp": 0.06185468199774744, "yfi": 1.2699683420633065e-06, "zar": 0.5466139472011943, "bits": 1.08, "link": 0.002247118349848283, "sats": 108.0}, "market_cap": {"aed": 3216565.4219024642, "ars": 84365181.59878486, "aud": 1189215.8668533838, "bch": 1972.86382164957, "bdt": 74283866.42299959, "bhd": 329926.5094788353, "bmd": 875684.8039590726, "bnb": 2979.6009732392963, "brl": 4556944.626669674, "btc": 25.75888654306, "cad": 1100030.872309368, "chf": 805559.0891732269, "clp": 667455714.4256456, "cny": 5675663.48838033, "czk": 19081171.878268197, "dkk": 5531700.906609456, "dot": 66625.8646384762, "eos": 245522.76897823668, "eth": 414.3240868018045, "eur": 743915.257398527, "gbp": 636931.0935292403, "hkd": 6803545.5158796115, "huf": 267959550.01147515, "idr": 12675668890.02816, "ils": 2863701.224668725, "inr": 65189041.70352725, "jpy": 96810457.81689139, "krw": 1008893976.3373271, "kwd": 263532.0876426591, "lkr": 174584802.99278703, "ltc": 7049.603561891145, "mmk": 1440433900.5214949, "mxn": 17564004.171168905, "myr": 3701081.82393301, "ngn": 360106840.0079243, "nok": 7761194.417489257, "nzd": 1255633.9321792668, "php": 44014634.621244945, "pkr": 140761779.55112514, "pln": 3402954.932425142, "rub": 64685260.23580951, "sar": 3284940.642765202, "sek": 7610357.7100073, "sgd": 1192104.7510216453, "thb": 28866481.946825504, "try": 7491833.7717914535, "twd": 24552175.568376023, "uah": 23665353.80508022, "usd": 875684.8039590726, "vef": 87682.31942042196, "vnd": 20134062448.368423, "xag": 34790.860935965466, "xau": 485.8737134766924, "xdr": 616019.7404106961, "xlm": 3434347.5212866655, "xrp": 1475034.1160228602, "yfi": 30.435785474848345, "zar": 12998726.527904745, "bits": 25758886.54306, "link": 53596.56640610121, "sats": 2575888654.306}, "total_volume": {"aed": 3400.1678566427554, "ars": 89180.76925740096, "aud": 1257.096634052871, "bch": 2.080185494585312, "bdt": 78524.00985186211, "bhd": 348.75880494940566, "bmd": 925.6691322668969, "bnb": 3.1340583367404737, "brl": 4817.056273314956, "btc": 0.0271488740159124, "cad": 1162.8209356080142, "chf": 851.5406224858311, "clp": 705554.269305151, "cny": 5999.631913874663, "czk": 20170.330392095704, "dkk": 5847.451908529981, "dot": 70.09569696860518, "eos": 258.781432675599, "eth": 0.43556115490524044, "eur": 786.3781439199033, "gbp": 673.2872946925927, "hkd": 7191.893756234425, "huf": 283254.7544736702, "idr": 13399199.539933193, "ils": 3027.162074442756, "inr": 68910.05004791082, "jpy": 102336.42524863465, "krw": 1066481.9206673389, "kwd": 278.57457134093045, "lkr": 184550.15133604355, "ltc": 7.423594251667363, "mmk": 1522654.2618477056, "mxn": 18566.562336986688, "myr": 3912.340587526033, "ngn": 380661.83700623905, "nok": 8204.205519281524, "nzd": 1327.3058607279186, "php": 46527.00201338262, "pkr": 148796.50045808527, "pln": 3597.1965314457757, "rub": 68377.51259611765, "sar": 3472.445953828435, "sek": 8044.759011248537, "sgd": 1260.1504165202189, "thb": 30514.18863786174, "try": 7919.469694196209, "twd": 25953.62047039175, "uah": 25016.17867810067, "usd": 925.6691322668969, "vef": 92.68725021388452, "vnd": 21283320.244140968, "xag": 36.776732801359394, "xau": 0.5136075180382873, "xdr": 651.1823158140588, "xlm": 3610.9426371731606, "xrp": 1554.8934896770093, "yfi": 0.031924269002660974, "zar": 13740.697396209089, "bits": 27148.8740159124, "link": 56.48771572118147, "sats": 2714887.40159124}}, "community_data": {"facebook_likes": null, "twitter_followers": 3580, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 10, "stars": 28, "subscribers": 15, "total_issues": 1, "closed_issues": 1, "pull_requests_merged": 9, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 8820325, "bing_matches": null}}, "ORB_20210816": {"id": "orbitcoin", "symbol": "orb", "name": "Orbitcoin", "localization": {"en": "Orbitcoin", "de": "Orbitcoin", "es": "Orbitcoin", "fr": "Orbitcoin", "it": "Orbitcoin", "pl": "Orbitcoin", "ro": "Orbitcoin", "hu": "Orbitcoin", "nl": "Orbitcoin", "pt": "Orbitcoin", "sv": "Orbitcoin", "vi": "Orbitcoin", "tr": "Orbitcoin", "ru": "Orbitcoin", "ja": "Orbitcoin", "zh": "\u8f68\u9053\u5e01", "zh-tw": "\u8ecc\u9053\u5e63", "ko": "Orbitcoin", "ar": "Orbitcoin", "th": "Orbitcoin", "id": "Orbitcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/261/thumb/orbitcoin.png?1547034030", "small": "https://assets.coingecko.com/coins/images/261/small/orbitcoin.png?1547034030"}, "market_data": {"current_price": {"aed": 0.873023670433193, "ars": 23.053065132989055, "aud": 0.32385441939787446, "bch": 0.0003921080196838338, "bdt": 20.15460040302482, "bhd": 0.08960685291626978, "bmd": 0.2376738730352811, "bnb": 0.0006167853624250635, "brl": 1.2487385289273658, "btc": 5.35e-06, "cad": 0.29776353231155334, "chf": 0.2194160037825841, "clp": 184.14971682773594, "cny": 1.5398890233955862, "czk": 5.143191310321578, "dkk": 1.506690736810022, "dot": 0.011482093750386798, "eos": 0.05106340782499506, "eth": 7.761908844702058e-05, "eur": 0.20260176563470297, "gbp": 0.1721381546322787, "hkd": 1.8494473593303897, "huf": 71.52141605845937, "idr": 3418.4633158664506, "ils": 0.7658446373879347, "inr": 17.65093312914685, "jpy": 26.24276069119058, "krw": 276.0863006227279, "kwd": 0.07151321630983967, "lkr": 47.40441975697749, "ltc": 0.0014361445133735746, "mmk": 391.11614044031325, "mxn": 4.740856978047453, "myr": 1.006073504558344, "ngn": 97.73171810415757, "nok": 2.107548113383686, "nzd": 0.3393887837394605, "php": 11.982413871668003, "pkr": 39.07004409931364, "pln": 0.92739038052065, "rub": 17.493985424761874, "sar": 0.8913305005037403, "sek": 2.0645350842111267, "sgd": 0.3227378275423546, "thb": 7.859874981276757, "try": 2.0327295665215446, "twd": 6.61317997230972, "uah": 6.358948073561733, "usd": 0.2376738730352811, "vef": 0.023798284907022734, "vnd": 5423.222346960999, "xag": 0.010257845118707797, "xau": 0.00013558106087297622, "xdr": 0.16743197427230722, "xlm": 0.7272119754560618, "xrp": 0.24718372363480065, "yfi": 6.434896507375432e-06, "zar": 3.514198351925063, "bits": 5.35, "link": 0.009533791294970033, "sats": 535.0}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 42.778159851226455, "ars": 1129.6001915164636, "aud": 15.868866550495849, "bch": 0.019213292964507855, "bdt": 987.5754197482162, "bhd": 4.390735792897219, "bmd": 11.646019778728773, "bnb": 0.030222482758828113, "brl": 61.18818791744092, "btc": 0.00026215, "cad": 14.590413083266114, "chf": 10.751384185346621, "clp": 9023.33612455906, "cny": 75.45456214638372, "czk": 252.01637420575733, "dkk": 73.82784610369107, "dot": 0.5626225937689531, "eos": 2.502106983424758, "eth": 0.0038033353339040083, "eur": 9.927486516100446, "gbp": 8.434769576981656, "hkd": 90.6229206071891, "huf": 3504.5493868645085, "idr": 167504.70247745607, "ils": 37.5263872320088, "inr": 864.8957233281956, "jpy": 1285.8952738683383, "krw": 13528.228730513665, "kwd": 3.504147599182144, "lkr": 2322.816568091897, "ltc": 0.07037108115530516, "mmk": 19164.69088157535, "mxn": 232.3019919243252, "myr": 49.29760172335885, "ngn": 4788.8541871037205, "nok": 103.26985755580063, "nzd": 16.630050403233565, "php": 587.1382797117321, "pkr": 1914.4321608663683, "pln": 45.44212864551185, "rub": 857.2052858133319, "sar": 43.67519452468328, "sek": 101.1622191263452, "sgd": 15.814153549575375, "thb": 385.1338740825611, "try": 99.60374875955569, "twd": 324.0458186431763, "uah": 311.58845560452494, "usd": 11.646019778728773, "vef": 1.166115960444114, "vnd": 265737.8950010889, "xag": 0.502634410816682, "xau": 0.006643471982775834, "xdr": 8.204166739343053, "xlm": 35.63338679734702, "xrp": 12.112002458105232, "yfi": 0.0003153099288613962, "zar": 172.19571924432807, "bits": 262.15, "link": 0.4671557734535316, "sats": 26215.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 1120, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 4, "stars": 6, "subscribers": 6, "total_issues": 7, "closed_issues": 7, "pull_requests_merged": 7, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 7263541, "bing_matches": null}}, "PIVX_20190706": {"id": "pivx", "symbol": "pivx", "name": "PIVX", "localization": {"en": "PIVX", "de": "PIVX", "es": "PIVX", "fr": "PIVX", "it": "PIVX", "pl": "PIVX", "ro": "PIVX", "hu": "PIVX", "nl": "PIVX", "pt": "PIVX", "sv": "PIVX", "vi": "PIVX", "tr": "PIVX", "ru": "PIVX", "ja": "\u30d4\u30f4\u30af\u30b9", "zh": "\u666e\u7ef4\u5e01", "zh-tw": "\u666e\u7dad\u5e63", "ko": "\ud53c\ubca1\uc2a4", "ar": "PIVX", "th": "PIVX", "id": "PIVX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/548/thumb/PIVX-Shield.png?1609817792", "small": "https://assets.coingecko.com/coins/images/548/small/PIVX-Shield.png?1609817792"}, "market_data": {"current_price": {"aed": 2.3868043358061155, "ars": 27.395045851728508, "aud": 0.928877939321485, "bch": 0.001597467540136019, "bdt": 54.94179738707896, "bhd": 0.2449411163770916, "bmd": 0.6497921925998492, "bnb": 0.020362005226926345, "brl": 2.4987154459688132, "btc": 6.021676452059647e-05, "cad": 0.8512635108763976, "chf": 0.640220753602855, "clp": 442.05362862567864, "cny": 4.466082820204884, "czk": 14.644821499157656, "dkk": 4.295516268400578, "eos": 0.11056314643652668, "eth": 0.002233699615152603, "eur": 0.5755209449856884, "gbp": 0.51580959103111, "hkd": 5.06860652954625, "huf": 185.8080774739276, "idr": 9226.399064614252, "ils": 2.3219674210363084, "inr": 44.74371569413686, "jpy": 70.05994441392342, "krw": 758.0410739650601, "kwd": 0.19739907060552356, "lkr": 114.66866513025536, "ltc": 0.005495754514042722, "mmk": 984.7966115481933, "mxn": 12.38455054722432, "myr": 2.6917641578448857, "ngn": 233.92518933594573, "nok": 5.567172585162339, "nzd": 0.9728883645262729, "php": 33.26552778676043, "pkr": 101.69609293584422, "pln": 2.4423414247154334, "rub": 41.142372425090706, "sar": 2.4365582742012952, "sek": 6.063511802934363, "sgd": 0.880911579248153, "thb": 19.864147327777456, "try": 3.673531932683035, "twd": 20.126554208499417, "uah": 17.022934214595537, "usd": 0.6497921925998492, "vef": 161465.32988574673, "vnd": 15111.78907405546, "xag": 0.042290522739805, "xau": 0.000454224236393074, "xdr": 0.4689114893224082, "xlm": 6.2874277604471365, "xrp": 1.6210526756416508, "zar": 9.149705020024914, "bits": 60.21676452059647, "link": 0.17360959906778406, "sats": 6021.676452059647}, "market_cap": {"aed": 143971312.9924801, "ars": 1652460849.6785202, "aud": 56029635.32773113, "bch": 96720.5407566531, "bdt": 3314072540.1410193, "bhd": 14774773.78502567, "bmd": 39195267.80533819, "bnb": 1231321.7325197507, "brl": 150721757.18552217, "btc": 3642.5484992856273, "cad": 51347956.5647223, "chf": 38617921.51056554, "clp": 26664540687.971573, "cny": 269392759.9812634, "czk": 883371187.2163717, "dkk": 259104237.35396898, "eos": 6688653.36070173, "eth": 135090.4725520414, "eur": 34715248.69518805, "gbp": 31113477.950752113, "hkd": 305736807.22537, "huf": 11207886828.936474, "idr": 556533590792.4231, "ils": 140060369.97559547, "inr": 2698927348.17388, "jpy": 4225994579.5037694, "krw": 45724807469.029526, "kwd": 11907052.016048076, "lkr": 6916779071.595806, "ltc": 332254.20113921113, "mmk": 59402632661.65609, "mxn": 747032329.5283551, "myr": 162366396.88361356, "ngn": 14110296409.921747, "nok": 335810160.35437185, "nzd": 58684330.81618651, "php": 2006566537.9438007, "pkr": 6134277454.810221, "pln": 147321293.33653435, "rub": 2481695415.4163547, "sar": 146972455.45306697, "sek": 365749191.30060536, "sgd": 53136319.048876606, "thb": 1198199336.8091884, "try": 221586331.0343602, "twd": 1214027640.1975543, "uah": 1026818224.3066862, "usd": 39195267.80533819, "vef": 9739539683953.064, "vnd": 911538529580.5459, "xag": 2550951.4938649996, "xau": 27398.66805396558, "xdr": 28284598.692169618, "xlm": 380023485.1131838, "xrp": 97958621.19610654, "zar": 551907429.3042009, "bits": 3642548499.2856274, "link": 10501749.630364768, "sats": 364254849928.56274}, "total_volume": {"aed": 58856379.14257331, "ars": 675536398.6436505, "aud": 22905267.66426928, "bch": 39392.06653839303, "bdt": 1354813718.610171, "bhd": 6040020.539943557, "bmd": 16023272.238033764, "bnb": 502108.1459257025, "brl": 61616003.22704083, "btc": 1484.8895111321685, "cad": 20991367.91179738, "chf": 15787249.437967567, "clp": 10900632103.5344, "cny": 110129456.27959682, "czk": 361127702.71913445, "dkk": 105923443.45674637, "eos": 2726384.550355816, "eth": 55080.95886529387, "eur": 14191812.221226554, "gbp": 12719385.665456906, "hkd": 124987131.60194708, "huf": 4581854696.465773, "idr": 227514435649.88217, "ils": 57257561.01539002, "inr": 1103338491.4026515, "jpy": 1727613189.4325693, "krw": 18692589160.167862, "kwd": 4867677.826647815, "lkr": 2827622830.0044947, "ltc": 135520.2043588388, "mmk": 24284170209.547615, "mxn": 305391519.3562013, "myr": 66376405.246055126, "ngn": 5768378005.692155, "nok": 137281307.6920233, "nzd": 23990523.89295131, "php": 820297033.3276713, "pkr": 2507731242.715754, "pln": 60225872.197485864, "rub": 1014532709.6777967, "sar": 60083265.07456737, "sek": 149520572.02813914, "sgd": 21722461.75420219, "thb": 489831432.3166938, "try": 90585887.15413915, "twd": 496302142.39112294, "uah": 419769754.5722514, "usd": 16023272.238033764, "vef": 3981585139414.692, "vnd": 372642689608.9964, "xag": 1042845.0305587902, "xau": 11200.747992552777, "xdr": 11562922.01494905, "xlm": 155042131.66909444, "xrp": 39973654.08481401, "zar": 225623231.7088591, "bits": 1484889511.1321685, "link": 4281051.543369439, "sats": 148488951113.21686}}, "community_data": {"facebook_likes": null, "twitter_followers": 63447, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 1.083, "reddit_subscribers": 8630, "reddit_accounts_active_48h": "1627.0"}, "developer_data": {"forks": 577, "stars": 378, "subscribers": 124, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 509, "pull_request_contributors": 41, "code_additions_deletions_4_weeks": {"additions": 5000, "deletions": -8478}, "commit_count_4_weeks": 101}, "public_interest_stats": {"alexa_rank": 286633, "bing_matches": null}}, "RCN_20190810": {"id": "ripio-credit-network", "symbol": "rcn", "name": "Ripio Credit Network", "localization": {"en": "Ripio Credit Network", "de": "Ripio Credit Network", "es": "Ripio Credit Network", "fr": "Ripio Credit Network", "it": "Ripio Credit Network", "pl": "Ripio Credit Network", "ro": "Ripio Credit Network", "hu": "Ripio Credit Network", "nl": "Ripio Credit Network", "pt": "Ripio Credit Network", "sv": "Ripio Credit Network", "vi": "Ripio Credit Network", "tr": "Ripio Credit Network", "ru": "Ripio Credit Network", "ja": "Ripio Credit Network", "zh": "Ripio Credit Network", "zh-tw": "Ripio Credit Network", "ko": "\ub9ac\ud53c\uc624\ud06c\ub808\ub527\ub124\ud2b8\uc6cc\ud06c", "ar": "Ripio Credit Network", "th": "Ripio Credit Network", "id": "Ripio Credit Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1057/thumb/ripio-credit-network.png?1548608361", "small": "https://assets.coingecko.com/coins/images/1057/small/ripio-credit-network.png?1548608361"}, "market_data": {"current_price": {"aed": 0.0638971634794576, "ars": 0.7875159127411714, "aud": 0.025724812395409746, "bch": 5.161133873304307e-05, "bdt": 1.4700007111277071, "bhd": 0.00655803437096474, "bmd": 0.017395593486805434, "bnb": 0.0006294004143830029, "brl": 0.06888969881017076, "btc": 1.516125542294504e-06, "cad": 0.023103887907126718, "chf": 0.016976359683773503, "clp": 12.434337920751455, "cny": 0.12223013763503879, "czk": 0.3996545232992143, "dkk": 0.11588379024121494, "eos": 0.00413276467729713, "eth": 7.663128215152582e-05, "eur": 0.015524940945608306, "gbp": 0.01429884732987786, "hkd": 0.1363461572773702, "huf": 5.042995459355274, "idr": 247.35627594765077, "ils": 0.060611466386076354, "inr": 1.2335215341493773, "jpy": 1.8494699270082353, "krw": 21.094900979294707, "kwd": 0.00529107850613373, "lkr": 3.081975280168479, "ltc": 0.00018608909768269018, "mmk": 26.280092299127077, "mxn": 0.3409919026470578, "myr": 0.07293600083316923, "ngn": 6.297204842223567, "nok": 0.1548580955805984, "nzd": 0.026633993088997623, "php": 0.9052425747607842, "pkr": 2.7701851515606, "pln": 0.06702426494701967, "rub": 1.135728726244603, "sar": 0.0652665272031455, "sek": 0.1665609289120663, "sgd": 0.024018252487573763, "thb": 0.5343926319146636, "try": 0.09618011461939312, "twd": 0.5467749893145069, "uah": 0.44480320319521055, "usd": 0.017395593486805434, "vef": 4322.590010919183, "vnd": 404.43243757282477, "xag": 0.0010553993546412316, "xau": 1.1779600085525201e-05, "xdr": 0.012641795281105232, "xlm": 0.21875540979071592, "xrp": 0.05552514526422311, "zar": 0.2598029625827249, "bits": 1.516125542294504, "link": 0.007051967016672377, "sats": 151.61255422945038}, "market_cap": {"aed": 32306193.216871772, "ars": 398143436.8842592, "aud": 13008173.750992596, "bch": 26202.972553442993, "bdt": 743227467.6464823, "bhd": 3315720.3539932724, "bmd": 8795154.1775022, "bnb": 319237.2665458882, "brl": 34830402.46581488, "btc": 769.3664480677104, "cad": 11684846.058291418, "chf": 8583569.153454024, "clp": 6286776206.07858, "cny": 61799150.82821933, "czk": 202076389.37348107, "dkk": 58589834.249465436, "eos": 2096715.184284088, "eth": 38893.380458766165, "eur": 7849314.502099446, "gbp": 7229801.432144546, "hkd": 68935714.83092816, "huf": 2549692504.5601172, "idr": 125062803130.5214, "ils": 30644955.70067098, "inr": 623664382.7266818, "jpy": 935017238.1873517, "krw": 10665511735.070436, "kwd": 2675151.684937429, "lkr": 1558236445.3901844, "ltc": 94500.15053321142, "mmk": 13287127210.987598, "mxn": 172471451.85914564, "myr": 36876199.3032728, "ngn": 3183845812.2557964, "nok": 78296476.57843113, "nzd": 13469461.99729428, "php": 458447411.50230324, "pkr": 1400596393.94787, "pln": 33887852.1780745, "rub": 574190760.9628146, "sar": 32998538.95857057, "sek": 84211807.03813162, "sgd": 12145659.366267534, "thb": 270211323.0068563, "try": 48634071.52670003, "twd": 276447615.0279558, "uah": 224891019.3099222, "usd": 8795154.1775022, "vef": 2185487124713.6074, "vnd": 204474939572.16824, "xag": 533719.683111954, "xau": 5955.3747966702995, "xdr": 6391649.624491118, "xlm": 111086618.48402837, "xrp": 28137809.11145627, "zar": 131369902.17622608, "bits": 769366448.0677104, "link": 3578560.3923649057, "sats": 76936644806.77104}, "total_volume": {"aed": 5333773.295676662, "ars": 65737367.92948086, "aud": 2147361.634214646, "bch": 4308.222232383271, "bdt": 122707333.32567053, "bhd": 547427.564781133, "bmd": 1452085.6161666552, "bnb": 52538.78168790948, "brl": 5750521.867516491, "btc": 126.55757298183538, "cad": 1928581.7027692806, "chf": 1417090.3528170453, "clp": 1037948101.9129388, "cny": 10203079.581995036, "czk": 33360895.973966796, "dkk": 9673322.44707703, "eos": 344979.78740746324, "eth": 6396.745396760476, "eur": 1295934.1373465562, "gbp": 1193586.7868622867, "hkd": 11381404.949031401, "huf": 420960697.57424146, "idr": 20647900897.69422, "ils": 5059501.912409491, "inr": 102967391.04237783, "jpy": 154383274.16529202, "krw": 1760882852.8746555, "kwd": 441669.26518448343, "lkr": 257265840.17431518, "ltc": 15533.66387156759, "mmk": 2193713255.4885006, "mxn": 28464072.665222034, "myr": 6088284.242264943, "ngn": 525654993.0523292, "nok": 12926676.707529977, "nzd": 2223254.8889435953, "php": 75564522.8746489, "pkr": 231239366.20792478, "pln": 5594806.014381242, "rub": 94804201.33397375, "sar": 5448080.02329569, "sek": 13903562.949549247, "sgd": 2004907.679011856, "thb": 44608070.1286397, "try": 8028571.207186146, "twd": 45641679.191083305, "uah": 37129652.05093628, "usd": 1452085.6161666552, "vef": 360825331093.32227, "vnd": 33759729195.566826, "xag": 88098.76037563925, "xau": 983.294295843415, "xdr": 1055265.4673230995, "xlm": 18260462.585348394, "xrp": 4634924.633925152, "zar": 21686879.800336074, "bits": 126557572.98183538, "link": 588658.2644253401, "sats": 12655757298.183538}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1120, "reddit_accounts_active_48h": "697.625"}, "developer_data": {"forks": 24, "stars": 66, "subscribers": 25, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 175, "pull_request_contributors": 7, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 22}, "public_interest_stats": {"alexa_rank": 1860009, "bing_matches": null}}, "VIA_20190816": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 1.0715953774362788, "ars": 15.460786882708216, "aud": 0.4318404091316686, "bch": 0.000884515981959066, "bdt": 24.6597213982024, "bhd": 0.10998846264971389, "bmd": 0.29173497778526986, "bnb": 0.009677666359713795, "brl": 1.1626222334698615, "btc": 2.5633019725659935e-05, "cad": 0.38618125949347465, "chf": 0.28274108015512806, "clp": 208.284187389794, "cny": 2.0591238202039985, "czk": 6.722792756909824, "dkk": 1.9413924195088856, "eos": 0.07069154931519245, "eth": 0.0013816652703925814, "eur": 0.2600945690345916, "gbp": 0.24150259063531382, "hkd": 2.2888213549632317, "huf": 84.34058207772176, "idr": 4156.628481379275, "ils": 1.0138082213015949, "inr": 20.79603615644525, "jpy": 30.735738584567308, "krw": 355.260971404104, "kwd": 0.08872915134854563, "lkr": 51.60577506853748, "ltc": 0.003404540409116633, "mmk": 440.61702021647596, "mxn": 5.714183836382323, "myr": 1.225841203155928, "ngn": 106.12067532243374, "nok": 2.599487015456988, "nzd": 0.4525127496575345, "php": 15.223867740308885, "pkr": 46.75704842469837, "pln": 1.125911762540252, "rub": 19.091837110214797, "sar": 1.0944000089147758, "sek": 2.7889227894020316, "sgd": 0.4047122652823948, "thb": 8.989959207942, "try": 1.6233767879848073, "twd": 9.172455481970479, "uah": 7.349069277505782, "usd": 0.29173497778526986, "vef": 72492.53678909254, "vnd": 6757.774510218724, "xag": 0.017083726068226345, "xau": 0.00019298560515473455, "xdr": 0.21199972406686732, "xlm": 3.8332469670594915, "xrp": 0.9703277068755377, "zar": 4.46261160818573, "bits": 25.633019725659935, "link": 0.12277273295181637, "sats": 2563.3019725659933}, "market_cap": {"aed": 24809458.63778677, "ars": 357946442.0533995, "aud": 9997921.784721514, "bch": 20478.216993969523, "bdt": 570919164.9479911, "bhd": 2546440.8229066795, "bmd": 6754216.206004193, "bnb": 224056.27004106494, "brl": 26916902.424167987, "btc": 593.4528610666275, "cad": 8940826.160536023, "chf": 6545990.474589297, "clp": 4822172660.276707, "cny": 47672608.82521895, "czk": 155645360.5016457, "dkk": 44946904.349988714, "eos": 1636642.9957660201, "eth": 31988.16278871969, "eur": 6021680.933165824, "gbp": 5591241.488573375, "hkd": 52990540.955016375, "huf": 1952643905.1558175, "idr": 96233806670.70642, "ils": 23471576.737485252, "inr": 481467548.02880454, "jpy": 711590448.3835764, "krw": 8224963042.260015, "kwd": 2054247.5795427398, "lkr": 1194771243.878327, "ltc": 78821.54611634216, "mmk": 10201116921.872448, "mxn": 132294157.40538399, "myr": 28380541.076009072, "ngn": 2456894234.953412, "nok": 60183038.25062818, "nzd": 10476525.545079011, "php": 352461316.05563843, "pkr": 1082514056.4648676, "pln": 26066985.62788546, "rub": 442012118.63981, "sar": 25337428.964393917, "sek": 64568834.510267384, "sgd": 9369853.973941406, "thb": 208134549.49612257, "try": 37584241.33128282, "twd": 212359683.21486986, "uah": 170144845.8117775, "usd": 6754216.206004193, "vef": 1678339260215.9414, "vnd": 156455254217.19232, "xag": 395520.55206037336, "xau": 4467.981562433848, "xdr": 4908194.357876378, "xlm": 88746913.32208467, "xrp": 22464920.6367621, "zar": 103317894.46000525, "bits": 593452861.0666275, "link": 2842420.8466663063, "sats": 59345286106.66275}, "total_volume": {"aed": 723314.2201442572, "ars": 10435848.495014284, "aud": 291487.17448291136, "bch": 597.0378383177541, "bdt": 16645020.618499318, "bhd": 74240.91290564967, "bmd": 196917.66350317473, "bnb": 6532.310462685756, "brl": 784756.2725928546, "btc": 17.301985491170694, "cad": 260667.78788569354, "chf": 190846.88885503553, "clp": 140589365.85809198, "cny": 1389884.2525381125, "czk": 4537805.689111275, "dkk": 1310416.947925425, "eos": 47715.96065115374, "eth": 932.607734782657, "eur": 175560.76139027506, "gbp": 163011.39561288102, "hkd": 1544927.3748973378, "huf": 56928896.518767975, "idr": 2805675119.307837, "ils": 684308.5724398849, "inr": 14037078.725160357, "jpy": 20746260.43837711, "krw": 239796958.71180713, "kwd": 59891.12893084627, "lkr": 34833288.51039091, "ltc": 2298.0245555568763, "mmk": 297411283.27993196, "mxn": 3857006.583270347, "myr": 827428.3302739917, "ngn": 71630202.15304394, "nok": 1754623.0255852337, "nzd": 305440.7601187474, "php": 10275930.872812701, "pkr": 31560455.30773955, "pln": 759977.1384059326, "rub": 12886764.502040196, "sar": 738707.076982637, "sek": 1882489.9350397128, "sgd": 273175.99787141505, "thb": 6068116.259682092, "try": 1095760.15362323, "twd": 6191299.08867483, "uah": 4960534.941801114, "usd": 196917.66350317473, "vef": 48931605919.51072, "vnd": 4561417959.3269615, "xag": 11531.313272142259, "xau": 130.26300358398558, "xdr": 143097.30922046848, "xlm": 2587396.417510066, "xrp": 654959.7388728749, "zar": 3012210.115075372, "bits": 17301985.491170693, "link": 82870.14432861605, "sats": 1730198549.1170692}}, "community_data": {"facebook_likes": null, "twitter_followers": 40867, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.042, "reddit_subscribers": 2225, "reddit_accounts_active_48h": "159.36"}, "developer_data": {"forks": 36, "stars": 78, "subscribers": 31, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 1, "deletions": -1}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 1890047, "bing_matches": null}}, "ONG_20190819": {"id": "ong", "symbol": "ong", "name": "Ontology Gas", "localization": {"en": "Ontology Gas", "de": "Ontology Gas", "es": "Ontology Gas", "fr": "Ontology Gas", "it": "Ontology Gas", "pl": "Ontology Gas", "ro": "Ontology Gas", "hu": "Ontology Gas", "nl": "Ontology Gas", "pt": "Ontology Gas", "sv": "Ontology Gas", "vi": "Ontology Gas", "tr": "Ontology Gas", "ru": "Ontology Gas", "ja": "Ontology Gas", "zh": "Ontology Gas", "zh-tw": "Ontology Gas", "ko": "Ontology Gas", "ar": "Ontology Gas", "th": "Ontology Gas", "id": "Ontology Gas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5716/thumb/ONG_logo.png?1583481389", "small": "https://assets.coingecko.com/coins/images/5716/small/ONG_logo.png?1583481389"}, "market_data": {"current_price": {"aed": 0.6708282736536302, "ars": 10.455420584252973, "aud": 0.2696891060061018, "bch": 0.0005811778817425743, "bdt": 15.426017971851367, "bhd": 0.06884994996401449, "bmd": 0.18263700428411903, "bnb": 0.0065044058563243235, "brl": 0.7290155100335293, "btc": 1.7747435341636663e-05, "cad": 0.24326335785623202, "chf": 0.1783634810208758, "clp": 129.83664634558036, "cny": 1.284668688134494, "czk": 4.248411040429053, "dkk": 1.2262146190913372, "eos": 0.05042284573722849, "eth": 0.000972327726326063, "eur": 0.16438243570592143, "gbp": 0.15108244377994337, "hkd": 1.4323745389792335, "huf": 53.520131833518676, "idr": 2621.5768698477777, "ils": 0.6450921628319369, "inr": 13.043971373372651, "jpy": 19.37809007895753, "krw": 221.447367694494, "kwd": 0.055546122660946246, "lkr": 32.357980320747636, "ltc": 0.002393589653068337, "mmk": 277.01487422645124, "mxn": 3.5820230376235704, "myr": 0.7656134087740071, "ngn": 66.42507845813408, "nok": 1.6472232317089428, "nzd": 0.2839105016186936, "php": 9.638599594854792, "pkr": 29.263051634645972, "pln": 0.7188435420799255, "rub": 12.070023020626733, "sar": 0.6849800845675886, "sek": 1.7605133307403895, "sgd": 0.2536851732316965, "thb": 5.634351582165081, "try": 1.017283000026424, "twd": 5.7061279248487375, "uah": 4.607859659108649, "usd": 0.18263700428411903, "vef": 45383.03858052028, "vnd": 4255.411897053501, "xag": 0.010579080447113672, "xau": 0.00011984274947115344, "xdr": 0.132977820182263, "xlm": 2.601708605143197, "xrp": 0.6913379659432435, "zar": 2.7879849186878074, "bits": 17.747435341636663, "link": 0.07543818816718387, "sats": 1774.7435341636663}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 23792456.124715537, "ars": 370825359.1659574, "aud": 9565139.803986572, "bch": 20612.80031729099, "bdt": 547118942.6399349, "bhd": 2441920.6495066164, "bmd": 6477638.289621412, "bnb": 230693.60227032495, "brl": 25856199.29559748, "btc": 629.4533091044696, "cad": 8627890.319861228, "chf": 6326068.031282592, "clp": 4604953060.0918665, "cny": 45563707.72919704, "czk": 150679596.0293054, "dkk": 43490500.72877401, "eos": 1788361.3318089559, "eth": 34485.82249143858, "eur": 5830198.342573755, "gbp": 5358483.767046947, "hkd": 50802432.9195455, "huf": 1898213653.8500588, "idr": 92980208353.03654, "ils": 22879666.202771798, "inr": 462634222.17241967, "jpy": 687288201.9019347, "krw": 7854136426.165951, "kwd": 1970070.0435757183, "lkr": 1147649640.4552383, "ltc": 84894.12124958565, "mmk": 9824964897.54322, "mxn": 127044624.24668686, "myr": 27154227.321901567, "ngn": 2355917045.9353075, "nok": 58422532.274307445, "nzd": 10069534.064684533, "php": 341854938.0980502, "pkr": 1037880929.3480825, "pln": 25495427.23105702, "rub": 428090920.4653557, "sar": 24294382.405225113, "sek": 62440624.26063616, "sgd": 8997523.793581886, "thb": 199835141.2348209, "try": 36080263.89931919, "twd": 202380853.08264202, "uah": 163428261.8576626, "usd": 6477638.289621412, "vef": 1609613065878.053, "vnd": 150927897391.3893, "xag": 375211.2384990945, "xau": 4250.496692883787, "xdr": 4716361.961035069, "xlm": 92275534.98904227, "xrp": 24519879.182295244, "zar": 98882249.68958017, "bits": 629453309.1044695, "link": 2675587.5573343826, "sats": 62945330910.44695}}, "community_data": {"facebook_likes": null, "twitter_followers": 81492, "reddit_average_posts_48h": 0.391, "reddit_average_comments_48h": 1.435, "reddit_subscribers": 16283, "reddit_accounts_active_48h": "210.541666666667"}, "developer_data": {"forks": 3, "stars": 0, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 248344, "bing_matches": null}}, "BRD_20200315": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.6946802345375592, "ars": 11.83405519109491, "aud": 0.29212918957916584, "bch": 0.0007075416649688624, "bdt": 16.041467958904114, "bhd": 0.07132746374178088, "bmd": 0.1891212660725145, "bnb": 0.011446107844396885, "brl": 0.9106188961391573, "btc": 2.3836704838247792e-05, "cad": 0.2605892469149881, "chf": 0.1775848688420912, "clp": 159.20189124442828, "cny": 1.3163974846243456, "czk": 4.329127621349406, "dkk": 1.2548063619025096, "eos": 0.0616463624618218, "eth": 0.0009758616432161152, "eur": 0.16792833699642853, "gbp": 0.14754352309027044, "hkd": 1.4691034509145953, "huf": 56.56104587422116, "idr": 2730.523950855461, "ils": 0.67149207610441, "inr": 14.028088823055377, "jpy": 19.75856247371726, "krw": 225.33609731274038, "kwd": 0.057980230388713326, "lkr": 34.74254884994974, "ltc": 0.0039053102246847052, "mmk": 263.5202165242074, "mxn": 4.055119275000249, "myr": 0.8017794183931602, "ngn": 69.02926211646779, "nok": 1.8351062438406773, "nzd": 0.3021503472258165, "php": 9.5835193114401, "pkr": 30.133627851843254, "pln": 0.7267101904021329, "rub": 13.834220613204437, "sar": 0.7098819910257346, "sek": 1.8033588351476177, "sgd": 0.2641354597751143, "thb": 5.958927412045831, "try": 1.174802392715853, "twd": 5.690375214222856, "uah": 4.889870662284278, "usd": 0.1891212660725145, "vef": 46994.297503991955, "vnd": 4408.463589638531, "xag": 0.0112565639490792, "xau": 0.00011506326949117866, "xdr": 0.13569639961968993, "xlm": 3.750225044594787, "xrp": 0.9017270201119979, "zar": 3.072331703727811, "bits": 23.83670483824779, "link": 0.04949173993218625, "sats": 2383.6704838247792}, "market_cap": {"aed": 42612281.654953666, "ars": 725892538.2223291, "aud": 17918898.308099564, "bch": 43434.71631118522, "bdt": 983997408.9356055, "bhd": 4369475.797021668, "bmd": 11600860.73585803, "bnb": 703845.9923760429, "brl": 55856972.756222084, "btc": 1462.6391375415599, "cad": 15982099.805665888, "chf": 10897964.583872393, "clp": 9765580611.667871, "cny": 80748951.23801339, "czk": 265659710.85114965, "dkk": 76993752.6178162, "eos": 3789728.8250193843, "eth": 59903.798814166694, "eur": 10304824.1753087, "gbp": 9051699.198621327, "hkd": 90119546.49740267, "huf": 3470455493.435602, "idr": 167531359333.5565, "ils": 41189900.12013013, "inr": 860495005.1683426, "jpy": 1213517704.6197064, "krw": 13822425763.989485, "kwd": 3556557.0818171483, "lkr": 2131137757.2021606, "ltc": 239588.1492043837, "mmk": 16164556194.37476, "mxn": 248598905.00995934, "myr": 49181837.488809355, "ngn": 4234314168.588181, "nok": 112544590.34285313, "nzd": 18529764.83186769, "php": 588023094.8801874, "pkr": 1848422588.5066288, "pln": 44587328.19523351, "rub": 848602962.8280156, "sar": 43544770.44176267, "sek": 110663046.7401043, "sgd": 16202284.142432379, "thb": 365585975.3664454, "try": 72059523.71845153, "twd": 349052498.2508641, "uah": 299948862.16427577, "usd": 11600860.73585803, "vef": 2882670532219.5615, "vnd": 270507505426.24524, "xag": 690651.7915047612, "xau": 7058.775731947537, "xdr": 8323733.586585494, "xlm": 230148921.09469402, "xrp": 55385489.984925985, "zar": 188425298.37736723, "bits": 1462639137.54156, "link": 3036852.46350373, "sats": 146263913754.15598}, "total_volume": {"aed": 3198041.4420789885, "ars": 54479452.627819516, "aud": 1344850.7792035218, "bch": 3257.2505363914306, "bdt": 73848767.78379664, "bhd": 328364.29433817236, "bmd": 870641.7951864841, "bnb": 52693.491792312554, "brl": 4192140.2438229206, "btc": 109.7350494880096, "cad": 1199652.976378484, "chf": 817532.645680109, "clp": 732904465.3126754, "cny": 6060189.279575046, "czk": 19929643.673164986, "dkk": 5776647.366136663, "eos": 283796.21602098347, "eth": 4492.492835668411, "eur": 773077.6756178867, "gbp": 679233.8084401212, "hkd": 6763188.997098363, "huf": 260385368.2889119, "idr": 12570285318.738092, "ils": 3091292.051571182, "inr": 64579942.22213701, "jpy": 90960845.70322996, "krw": 1037360992.5467442, "kwd": 266918.749642887, "lkr": 159941373.74522597, "ltc": 17978.55088108345, "mmk": 1213146036.6524632, "mxn": 18668214.308209073, "myr": 3691085.020051309, "ngn": 317784255.2430667, "nok": 8448125.521128658, "nzd": 1390984.3466468644, "php": 44118848.34948857, "pkr": 138723668.64523193, "pln": 3345495.077795364, "rub": 63687447.31789131, "sar": 3268024.5002178755, "sek": 8301972.624254298, "sgd": 1215978.3806800279, "thb": 27432617.00363337, "try": 5408339.767518921, "twd": 26196305.65446854, "uah": 22511089.630758528, "usd": 870641.7951864841, "vef": 216343726922.36105, "vnd": 20294876051.7787, "xag": 51820.904374127895, "xau": 529.7071746094093, "xdr": 624694.1944642544, "xlm": 17264598.175476383, "xrp": 4151205.455960971, "zar": 14143837.155342948, "bits": 109735049.48800959, "link": 227840.9942800376, "sats": 10973504948.800959}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 253, "stars": 201, "subscribers": 30, "total_issues": 33, "closed_issues": 27, "pull_requests_merged": 382, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "NEBL_20200322": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 1.10678142231033, "ars": 19.05569908796838, "aud": 0.5185032323949027, "bch": 0.001644854549371078, "bdt": 25.555925332252972, "bhd": 0.1137888934571936, "bmd": 0.3013125945525245, "bnb": 0.029074768513740346, "brl": 1.5389842079364735, "btc": 5.5925403102046545e-05, "cad": 0.4347717768072961, "chf": 0.29122043051058244, "clp": 261.53990215501983, "cny": 2.123470378849458, "czk": 7.611020547729235, "dkk": 2.053588154045273, "eos": 0.15122044293369236, "eth": 0.0025621886291243017, "eur": 0.27476454447169085, "gbp": 0.2589112836219041, "hkd": 2.3392373146825802, "huf": 97.21007820728914, "idr": 4544.041152835902, "ils": 1.1344479447421432, "inr": 22.59317192234724, "jpy": 32.64724472814456, "krw": 378.5631175439009, "kwd": 0.09340690431128257, "lkr": 55.94329296005999, "ltc": 0.008715271084617178, "mmk": 430.5369786458448, "mxn": 7.129477824745097, "myr": 1.3177906322754669, "ngn": 110.43792317552706, "nok": 3.3632379226411175, "nzd": 0.5255801613031575, "php": 15.58365779005952, "pkr": 47.88827143075256, "pln": 1.2351875923544562, "rub": 24.39276109199963, "sar": 1.1310413045481322, "sek": 3.0759673989325225, "sgd": 0.4336117233182686, "thb": 9.791454072578858, "try": 1.9503361620195827, "twd": 9.136400492021624, "uah": 8.22799454389948, "usd": 0.3013125945525245, "vef": 74872.45619787494, "vnd": 7024.227290760643, "xag": 0.0245874783299773, "xau": 0.00020107192059679065, "xdr": 0.2204704254340822, "xlm": 8.201446557212838, "xrp": 2.0527340255676196, "zar": 5.152507135930051, "bits": 55.925403102046545, "link": 0.15553682255549367, "sats": 5592.540310204655}, "market_cap": {"aed": 17849463.867404614, "ars": 307262052.04846704, "aud": 8386691.985339349, "bch": 26621.729148132945, "bdt": 412149640.95072716, "bhd": 1834288.501547612, "bmd": 4859377.073778882, "bnb": 470042.27876054536, "brl": 24819268.40432567, "btc": 902.4588280497346, "cad": 7017159.166505025, "chf": 4695640.363277899, "clp": 4217936243.4918895, "cny": 34245973.989749245, "czk": 123134666.4393498, "dkk": 33151054.288108334, "eos": 2443007.109081622, "eth": 41462.86259098839, "eur": 4435547.064780956, "gbp": 4178486.0175780556, "hkd": 37727085.94409223, "huf": 1568280646.2609541, "idr": 75830579236.31943, "ils": 18295651.870319, "inr": 364068417.8691726, "jpy": 526207365.1882933, "krw": 6105710047.349163, "kwd": 1506236.8146738664, "lkr": 902217697.3569009, "ltc": 140686.30494599446, "mmk": 6943425403.616661, "mxn": 114790877.89419527, "myr": 21252485.632171962, "ngn": 1781072287.2434053, "nok": 54658793.27921172, "nzd": 8484501.52708037, "php": 251425880.29804936, "pkr": 772311454.9496001, "pln": 19920423.469953526, "rub": 393390871.00776905, "sar": 18241173.393944837, "sek": 49668349.08699889, "sgd": 6989888.342366975, "thb": 158141137.8005227, "try": 31449888.421496958, "twd": 147346031.63112313, "uah": 132695840.70715924, "usd": 4859377.073778882, "vef": 1207495151823.28, "vnd": 113371298239.11229, "xag": 400139.1851376678, "xau": 3264.7724870183442, "xdr": 3555606.2048840085, "xlm": 132337852.71446179, "xrp": 33078362.44938517, "zar": 83244103.21260138, "bits": 902458828.0497346, "link": 2509871.5577585846, "sats": 90245882804.97346}, "total_volume": {"aed": 261283.430283602, "ars": 4498574.265696738, "aud": 122405.65340397418, "bch": 388.30904667711314, "bdt": 6033115.211623421, "bhd": 26862.71364097269, "bmd": 71132.37239562308, "bnb": 6863.826134806309, "brl": 363315.7052478843, "btc": 13.20258984108495, "cad": 102638.74957132686, "chf": 68749.86471460413, "clp": 61743033.82184933, "cny": 501298.28122091334, "czk": 1796771.7171458644, "dkk": 484800.83462068695, "eos": 35699.36688695361, "eth": 604.8686945375275, "eur": 64865.041328589556, "gbp": 61122.48268736619, "hkd": 552235.4617696962, "huf": 22948869.740800552, "idr": 1072734539.8375471, "ils": 267814.8047169682, "inr": 5333683.184287174, "jpy": 7707198.476526357, "krw": 89369290.03041296, "kwd": 22051.035442643148, "lkr": 13206813.189412648, "ltc": 2057.4576686396294, "mmk": 101639019.57236014, "mxn": 1683091.5162017944, "myr": 311097.4306722578, "ngn": 26071633.31352684, "nok": 793976.4108555593, "nzd": 124076.3394344301, "php": 3678912.097433861, "pkr": 11305223.938129038, "pln": 291596.9175742312, "rub": 5758521.207287669, "sar": 267010.58211466327, "sek": 726159.020410689, "sgd": 102364.88993760363, "thb": 2311517.5733681726, "try": 460425.62004238955, "twd": 2156875.795780077, "uah": 1942423.856642965, "usd": 71132.37239562308, "vef": 17675515503.59711, "vnd": 1658244495.8197265, "xag": 5804.489080300889, "xau": 47.46805474704719, "xdr": 52047.55688187741, "xlm": 1936156.5405417157, "xrp": 484599.1962356856, "zar": 1216378.1501014954, "bits": 13202589.841084952, "link": 36718.35622961558, "sats": 1320258984.108495}}, "community_data": {"facebook_likes": null, "twitter_followers": 39596, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6018, "reddit_accounts_active_48h": "110.333333333333"}, "developer_data": {"forks": 41, "stars": 105, "subscribers": 34, "total_issues": 142, "closed_issues": 114, "pull_requests_merged": 111, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 841626, "bing_matches": null}}, "LUN_20200417": {"id": "lunyr", "symbol": "lun", "name": "Lunyr", "localization": {"en": "Lunyr", "de": "Lunyr", "es": "Lunyr", "fr": "Lunyr", "it": "Lunyr", "pl": "Lunyr", "ro": "Lunyr", "hu": "Lunyr", "nl": "Lunyr", "pt": "Lunyr", "sv": "Lunyr", "vi": "Lunyr", "tr": "Lunyr", "ru": "Lunyr", "ja": "Lunyr", "zh": "Lunyr", "zh-tw": "Lunyr", "ko": "\ub8e8\ub108", "ar": "Lunyr", "th": "Lunyr", "id": "Lunyr"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/735/thumb/lunyr.png?1547976492", "small": "https://assets.coingecko.com/coins/images/735/small/lunyr.png?1547976492"}, "market_data": {"current_price": {"aed": 2.2569997396293076, "ars": 39.75058849980449, "aud": 0.9596814509559978, "bch": 0.0027454934677678187, "bdt": 51.74891525315028, "bhd": 0.2306219908195691, "bmd": 0.6144840020771332, "bnb": 0.0408033658352703, "brl": 3.1954397076015058, "btc": 8.973953538156954e-05, "cad": 0.8524128221654009, "chf": 0.593847171351375, "clp": 522.4339593708094, "cny": 4.3337098730491865, "czk": 15.122941649351885, "dkk": 4.199383670195131, "eos": 0.25136402103796346, "eth": 0.0039197014843416166, "eur": 0.562530608669516, "gbp": 0.49047682906995277, "hkd": 4.763756501902872, "huf": 198.94534051249244, "idr": 9655.775478527323, "ils": 2.1960429266232606, "inr": 46.85978189339959, "jpy": 66.11663517149329, "krw": 746.4444513549419, "kwd": 0.1904697626718423, "lkr": 116.35607170250908, "ltc": 0.014891877797749503, "mmk": 868.1354719345156, "mxn": 14.494018502193963, "myr": 2.659904610111248, "ngn": 236.88358280073484, "nok": 6.318001612556669, "nzd": 1.0064485993860908, "php": 30.838000083105282, "pkr": 102.2916868959198, "pln": 2.554972249496546, "rub": 45.24931149655573, "sar": 2.3116888158141764, "sek": 6.137589109546819, "sgd": 0.8693166625785411, "thb": 20.10475455871583, "try": 4.163374907673411, "twd": 18.494738265549564, "uah": 16.634966178706986, "usd": 0.6144840020771332, "vef": 152691.68087096052, "vnd": 14349.117497286443, "xag": 0.03976341954025185, "xau": 0.00035734702656793545, "xdr": 0.4485180179561198, "xlm": 12.699222471704658, "xrp": 3.2611071271351046, "zar": 11.12799803561585, "bits": 89.73953538156954, "link": 0.18189718175697722, "sats": 8973.953538156953}, "market_cap": {"aed": 6091887.088125892, "ars": 107327500.2881275, "aud": 2591903.0753188673, "bch": 7401.899316577962, "bdt": 139675934.8793561, "bhd": 622473.7661433496, "bmd": 1658558.9676356888, "bnb": 110718.43600455116, "brl": 8624506.631705582, "btc": 242.08108865337672, "cad": 2301831.0632331925, "chf": 1603660.6658069491, "clp": 1410106834.283864, "cny": 11697152.975147478, "czk": 40797732.712151915, "dkk": 11337909.102757579, "eos": 677803.1503086362, "eth": 10563.472939979329, "eur": 1518798.8376689006, "gbp": 1324198.4554372367, "hkd": 12857895.468647297, "huf": 537299319.5426123, "idr": 26077976264.01365, "ils": 5927358.038536421, "inr": 126453511.369448, "jpy": 178519823.76095128, "krw": 2014817380.8099499, "kwd": 514098.5475211307, "lkr": 314057657.33317375, "ltc": 40112.33514430779, "mmk": 2343191795.445468, "mxn": 39114459.55733958, "myr": 7179371.032025258, "ngn": 639374482.023558, "nok": 17050399.168477837, "nzd": 2717256.962092762, "php": 83257963.46948767, "pkr": 276096357.3377333, "pln": 6898689.780814337, "rub": 122132799.40286015, "sar": 6239498.836245468, "sek": 16573150.48409963, "sgd": 2346529.2274109735, "thb": 54275260.83543109, "try": 11240568.276947027, "twd": 49902722.2182226, "uah": 44899577.92025266, "usd": 1658558.9676356888, "vef": 412131407385.45984, "vnd": 38741900615.99442, "xag": 107552.02604981225, "xau": 966.3759680826122, "xdr": 1210598.7760669657, "xlm": 34216860.30440867, "xrp": 8798034.092011984, "zar": 30041146.868991636, "bits": 242081088.65337673, "link": 490685.2659252093, "sats": 24208108865.337673}, "total_volume": {"aed": 1363428.22365942, "ars": 24012884.590144612, "aud": 579732.7988042805, "bch": 1658.521804899286, "bdt": 31260939.184464745, "bhd": 139316.15753379202, "bmd": 371202.8923657559, "bnb": 24648.8555684305, "brl": 1930329.2808804025, "btc": 54.21064662480222, "cad": 514933.0234926688, "chf": 358736.4144285445, "clp": 315596494.185369, "cny": 2617945.518698728, "czk": 9135599.401029348, "dkk": 2536800.5664275773, "eos": 151846.1853043757, "eth": 2367.8476954316466, "eur": 339818.4302220162, "gbp": 296291.55026609957, "hkd": 2877731.862920905, "huf": 120180648.432337, "idr": 5832945647.971108, "ils": 1326604.89673674, "inr": 28307468.568197098, "jpy": 39940317.609878235, "krw": 450918719.4405484, "kwd": 115060.64693793599, "lkr": 70289397.63165228, "ltc": 8996.01632035346, "mmk": 524430899.84131384, "mxn": 8755673.983098794, "myr": 1606818.536125802, "ngn": 143098715.0069989, "nok": 3816633.89872623, "nzd": 607984.3085364574, "php": 18628889.90914233, "pkr": 61793260.54443222, "pln": 1543430.0742109634, "rub": 27334601.467740297, "sar": 1396465.2810799745, "sek": 3707648.729527642, "sgd": 525144.4438587585, "thb": 12145056.693538046, "try": 2515048.0769349444, "twd": 11172463.912018744, "uah": 10048996.457303127, "usd": 371202.8923657559, "vef": 92239331517.00636, "vnd": 8668140911.535404, "xag": 24020.635677740094, "xau": 215.86933002638136, "xdr": 270944.7031666886, "xlm": 7671457.835123995, "xrp": 1969998.2323627353, "zar": 6722298.77929766, "bits": 54210646.624802224, "link": 109882.0469745834, "sats": 5421064662.480223}}, "community_data": {"facebook_likes": null, "twitter_followers": 29362, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.182, "reddit_subscribers": 2144, "reddit_accounts_active_48h": "30.5"}, "developer_data": {"forks": 19, "stars": 52, "subscribers": 19, "total_issues": 4, "closed_issues": 4, "pull_requests_merged": 2, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2462612, "bing_matches": null}}, "GAM_20190212": {"id": "gamma", "symbol": "gamma", "name": "Gamma", "localization": {"en": "Gamma", "de": "Gamma", "es": "Gamma", "fr": "Gamma", "it": "Gamma", "pl": "Gamma", "ro": "Gamma", "hu": "Gamma", "nl": "Gamma", "pt": "Gamma", "sv": "Gamma", "vi": "Gamma", "tr": "Gamma", "ru": "Gamma", "ja": "Gamma", "zh": "Gamma", "zh-tw": "Gamma", "ko": "Gamma", "ar": "Gamma", "th": "Gamma", "id": "Gamma"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/18642/thumb/6CVBUY5.png?1632753323", "small": "https://assets.coingecko.com/coins/images/18642/small/6CVBUY5.png?1632753323"}}, "SCL_20190204": {"id": "sociall", "symbol": "scl", "name": "Sociall", "localization": {"en": "Sociall", "de": "Sociall", "es": "Sociall", "fr": "Sociall", "it": "Sociall", "pl": "Sociall", "ro": "Sociall", "hu": "Sociall", "nl": "Sociall", "pt": "Sociall", "sv": "Sociall", "vi": "Sociall", "tr": "Sociall", "ru": "Sociall", "ja": "Sociall", "zh": "Sociall", "zh-tw": "Sociall", "ko": "Sociall", "ar": "Sociall", "th": "Sociall", "id": "Sociall"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/874/thumb/scl.png?1547034694", "small": "https://assets.coingecko.com/coins/images/874/small/scl.png?1547034694"}, "market_data": {"current_price": {"aed": 0.07181387759386158, "ars": 0.7292473837393383, "aud": 0.02689049872824901, "bch": 0.00017212708824133197, "bdt": 1.6402042511643655, "bhd": 0.007371205183621752, "bmd": 0.019550868196765048, "bnb": 0.003137293351143705, "brl": 0.07124727388265126, "btc": 5.69783674505711e-06, "cad": 0.02566982072151578, "chf": 0.01943414951363036, "clp": 12.95574581155618, "cny": 0.13100450252606358, "czk": 0.43988866916675473, "dkk": 0.12750489711884258, "eos": 0.00847713716589128, "eth": 0.00018390335165661636, "eur": 0.017078641362415894, "gbp": 0.014915220491234683, "hkd": 0.15340686484932667, "huf": 5.394573307192399, "idr": 273.1847024390993, "ils": 0.07099741378709674, "inr": 1.3873296072424464, "jpy": 2.1281315540860746, "krw": 21.751965467844823, "kwd": 0.005926884795585728, "lkr": 3.487874886302886, "ltc": 0.0006231721942655152, "mmk": 29.80606333727958, "mxn": 0.3736022325803506, "myr": 0.08009013156804788, "ngn": 7.0578634190321825, "nok": 0.16484764190071005, "nzd": 0.028282676950804258, "php": 1.0193627755637378, "pkr": 2.733456522244075, "pln": 0.07280059036088439, "rub": 1.2785954986793182, "sar": 0.07333041888901677, "sek": 0.17683506122687453, "sgd": 0.026321529361986788, "thb": 0.6111601398308767, "try": 0.10129478815470927, "twd": 0.6002312045088829, "uah": 0.5420869224917045, "usd": 0.019550868196765048, "vef": 4858.149141978698, "vnd": 453.67789650593295, "xag": 0.0012182763780839352, "xau": 1.4799420698905242e-05, "xdr": 0.01395576163447846, "xlm": 0.23941202435903933, "xrp": 0.06338622885055398, "zar": 0.2592974560401814, "bits": 5.69783674505711, "link": 0.050735313070005464, "sats": 569.783674505711}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 2757.8224143718257, "ars": 28004.820904842272, "aud": 1032.6586254791102, "bch": 6.6100864899276495, "bdt": 62987.714903667686, "bhd": 283.0716785868622, "bmd": 750.7994880654744, "bnb": 120.47947018228355, "brl": 2736.0634944082044, "btc": 0.21881038060383262, "cad": 985.7817086422541, "chf": 746.3172151217236, "clp": 497531.22086068196, "cny": 5030.882129680325, "czk": 16892.763241626762, "dkk": 4896.489021316604, "eos": 325.5420772293424, "eth": 7.062322802634348, "eur": 655.8601420001064, "gbp": 572.7796738487341, "hkd": 5891.185723080143, "huf": 207164.34874446617, "idr": 10490937.41895986, "ils": 2726.4682769507335, "inr": 53276.731673126014, "jpy": 81725.27507541505, "krw": 835326.8189071018, "kwd": 227.6063664060251, "lkr": 133942.6286708807, "ltc": 23.931283241355167, "mmk": 1144623.1885793908, "mxn": 14347.207609320287, "myr": 3075.6501028602106, "ngn": 271038.61519163626, "nok": 6330.538567506314, "nzd": 1086.1215554252767, "php": 39145.936760644254, "pkr": 104971.18270633425, "pln": 2795.7145137350126, "rub": 49101.08524030108, "sar": 2816.0611798615882, "sek": 6790.883765618777, "sgd": 1010.8088587774303, "thb": 23469.99199692678, "try": 3889.9589688216624, "twd": 23050.2950830981, "uah": 20817.417405591408, "usd": 750.7994880654744, "vef": 186564394.58513957, "vnd": 17422302.120559335, "xag": 46.78468862774213, "xau": 0.5683326884809223, "xdr": 535.9341889719218, "xlm": 9193.986861168023, "xrp": 2434.180809385815, "zar": 9957.634376761873, "bits": 218810.38060383263, "link": 1948.3557812590907, "sats": 21881038.060383264}}, "community_data": {"facebook_likes": null, "twitter_followers": 5477, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 76, "reddit_accounts_active_48h": "16.76"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1016783, "bing_matches": null}}, "LEND_20190214": {"id": "ethlend", "symbol": "lend", "name": "Aave [OLD]", "localization": {"en": "Aave [OLD]", "de": "Aave [OLD]", "es": "Aave [OLD]", "fr": "Aave [OLD]", "it": "Aave [OLD]", "pl": "Aave [OLD]", "ro": "Aave [OLD]", "hu": "Aave [OLD]", "nl": "Aave [OLD]", "pt": "Aave [OLD]", "sv": "Aave [OLD]", "vi": "Aave [OLD]", "tr": "Aave [OLD]", "ru": "Aave [OLD]", "ja": "\u30a4\u30fc\u30b5\u30ec\u30f3\u30c9", "zh": "Aave [OLD]", "zh-tw": "Aave [OLD]", "ko": "\uc5d0\uc774\ube0c", "ar": "Aave [OLD]", "th": "Aave [OLD]", "id": "Aave [OLD]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1365/thumb/ethlend.png?1547394586", "small": "https://assets.coingecko.com/coins/images/1365/small/ethlend.png?1547394586"}, "market_data": {"current_price": {"aed": 0.028374885253449948, "ars": 0.2922986847632936, "aud": 0.010875620332635326, "bch": 6.092826951523935e-05, "bdt": 0.647902090979802, "bhd": 0.002913299514514699, "bmd": 0.007725330843824618, "bnb": 0.0008583426441616896, "brl": 0.028816225679226898, "btc": 2.1018576266281024e-06, "cad": 0.010254604162092808, "chf": 0.007720502512047229, "clp": 5.083959629944285, "cny": 0.05210622864329385, "czk": 0.17608346592329474, "dkk": 0.050911089060430764, "eos": 0.0027467422890520695, "eth": 6.18658945610825e-05, "eur": 0.006821443959104612, "gbp": 0.005971626664960525, "hkd": 0.06061929602260168, "huf": 2.176458702408982, "idr": 108.02523252191071, "ils": 0.028151445509454094, "inr": 0.5497313909115756, "jpy": 0.8484875715725914, "krw": 8.682348923182975, "kwd": 0.0023465151664958292, "lkr": 1.3736698464725194, "ltc": 0.0001650681076944154, "mmk": 11.893146092436243, "mxn": 0.14737323950857595, "myr": 0.03143062441806307, "ngn": 2.7908819365534296, "nok": 0.06675420528027728, "nzd": 0.011425826120663365, "php": 0.4028750764657524, "pkr": 1.0775286053234996, "pln": 0.02941126156214154, "rub": 0.5058871100431798, "sar": 0.02897230826359541, "sek": 0.07162727444858429, "sgd": 0.010473679094161976, "thb": 0.24318568963275494, "try": 0.0405719929548991, "twd": 0.2382112641237783, "uah": 0.20892057952544602, "usd": 0.007725330843824618, "vef": 1919.6492469136558, "vnd": 179.88254783973943, "xag": 0.00048800296913972574, "xau": 5.8793630386927314e-06, "xdr": 0.005538359209915465, "xlm": 0.09672017582221829, "xrp": 0.02511317405835631, "zar": 0.10527746367138667, "bits": 2.1018576266281026, "link": 0.01714821212193849, "sats": 210.18576266281025}, "market_cap": {"aed": 31590607.51325528, "ars": 325424858.7974551, "aud": 12108153.048819432, "bch": 67833.26281411981, "bdt": 721328755.3531795, "bhd": 3243463.3905841513, "bmd": 8600841.639267467, "bnb": 955618.5105737067, "brl": 32081964.995265096, "btc": 2340.060893232248, "cad": 11416757.191963648, "chf": 8595466.113242926, "clp": 5660124150.221094, "cny": 58011421.13397973, "czk": 196038983.48382357, "dkk": 56680836.52901844, "eos": 3058030.255222064, "eth": 68877.14879121738, "eur": 7594517.3649482615, "gbp": 6648390.381262279, "hkd": 67489273.39352013, "huf": 2423116499.7663345, "idr": 120267718852.28693, "ils": 31341845.370522834, "inr": 612032381.9068842, "jpy": 944646563.8188211, "krw": 9666318459.986008, "kwd": 2612445.442036027, "lkr": 1529347681.4124143, "ltc": 183775.2560601462, "mmk": 13240994877.97147, "mxn": 164075030.63669086, "myr": 34992653.22198422, "ngn": 3107172243.5520205, "nok": 74319451.16366997, "nzd": 12720713.591209697, "php": 448532859.3868015, "pkr": 1199644789.786113, "pln": 32744436.221687913, "rub": 563219234.0741184, "sar": 32255736.39974472, "sek": 79744784.66214517, "sgd": 11660659.859169986, "thb": 270745893.9625003, "try": 45170011.93204619, "twd": 265207717.42171946, "uah": 232597523.13633597, "usd": 8600841.639267467, "vef": 2137202860229.792, "vnd": 200268614887.1266, "xag": 543308.285679214, "xau": 6545.6705295645115, "xdr": 6166020.778765602, "xlm": 107681461.46568981, "xrp": 27959246.989135943, "zar": 117208545.69550744, "bits": 2340060893.232248, "link": 19091616.894991323, "sats": 234006089323.2248}, "total_volume": {"aed": 528072.1275146999, "ars": 5439838.327238131, "aud": 202401.24024461355, "bch": 1133.9084060186483, "bdt": 12057812.130300257, "bhd": 54218.09670684994, "bmd": 143772.63055036988, "bnb": 15974.225875819047, "brl": 536285.7141254138, "btc": 39.11671954661206, "cad": 190843.78979256118, "chf": 143682.77265627595, "clp": 94615268.18534385, "cny": 969725.4022581846, "czk": 3277009.568134585, "dkk": 947483.2012215193, "eos": 51118.3756818177, "eth": 1151.3581207345608, "eur": 126950.80145808506, "gbp": 111135.23700702211, "hkd": 1128158.2404005164, "huf": 40505086.35234935, "idr": 2010408636.1434622, "ils": 523913.7917212932, "inr": 10230801.730731059, "jpy": 15790817.587029433, "krw": 161583260.2224442, "kwd": 43669.93012126116, "lkr": 25564746.84743747, "ltc": 3072.0077292442015, "mmk": 221337950.930122, "mxn": 2742696.558272953, "myr": 584941.1039836372, "ngn": 51939838.65358277, "nok": 1242332.2557268513, "nzd": 212640.87076504156, "php": 7497725.43048612, "pkr": 20053396.445081472, "pln": 547359.6572209235, "rub": 9414835.693486527, "sar": 539190.4963530513, "sek": 1333022.7371243502, "sgd": 194920.89404970838, "thb": 4525818.63709509, "try": 755066.9701686298, "twd": 4433241.858784796, "uah": 3888126.20478148, "usd": 143772.63055036988, "vef": 35725721984.24781, "vnd": 3347712559.611023, "xag": 9082.00205376242, "xau": 109.4181604803591, "xdr": 103071.89279523517, "xlm": 1800015.350329027, "xrp": 467369.8989507204, "zar": 1959271.1555914155, "bits": 39116719.54661206, "link": 319137.60275750956, "sats": 3911671954.6612062}}, "community_data": {"facebook_likes": null, "twitter_followers": 11706, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5955, "reddit_accounts_active_48h": "2647.95833333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 413082, "bing_matches": null}}, "SNT_20190227": {"id": "status", "symbol": "SNT", "name": "Status", "localization": {"en": "Status", "de": "Status", "es": "Status", "fr": "Status", "it": "Status", "pl": "Status", "ro": "Status", "hu": "Status", "nl": "Status", "pt": "Status", "sv": "Status", "vi": "Status", "tr": "Status", "ru": "Status", "ja": "\u30b9\u30c6\u30fc\u30bf\u30b9", "zh": "Status", "zh-tw": "Status", "ko": "\uc2a4\ud14c\uc774\ud130\uc2a4\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Status", "th": "Status", "id": "Status"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/779/thumb/status.png?1548610778", "small": "https://assets.coingecko.com/coins/images/779/small/status.png?1548610778"}, "market_data": {"current_price": {"aed": 0.08208590905083722, "ars": 0.8757882773886003, "aud": 0.03133975766698475, "bch": 0.00014843391344100684, "bdt": 1.8768792451816052, "bhd": 0.008419908237830344, "bmd": 0.022348379029003725, "bnb": 0.0021121651278429997, "brl": 0.0837656355670362, "btc": 5.431253776343764e-06, "cad": 0.02935124359774203, "chf": 0.02236178805642114, "clp": 14.545465800386388, "cny": 0.15005148647653663, "czk": 0.5058298586856158, "dkk": 0.1471238488237373, "eos": 0.005277119106588527, "eth": 0.00014174065741275204, "eur": 0.019711940754952147, "gbp": 0.01712192006414382, "hkd": 0.1753911960385728, "huf": 6.267625247063129, "idr": 313.22185143258724, "ils": 0.08070211976974043, "inr": 1.5875259095866179, "jpy": 2.4731833652446977, "krw": 25.10408559589616, "kwd": 0.006781235693907712, "lkr": 4.009970364322265, "ltc": 0.0004355712013810381, "mmk": 34.15063476090257, "mxn": 0.42786306876713065, "myr": 0.0910729297549072, "ngn": 8.078939018984846, "nok": 0.19241730860181902, "nzd": 0.032656367720720406, "php": 1.1630096446693525, "pkr": 3.121853514248802, "pln": 0.08549037171859952, "rub": 1.4609984609662836, "sar": 0.08382876973779303, "sek": 0.2089126471631267, "sgd": 0.03019489490608693, "thb": 0.7000071021359682, "try": 0.11887116214554519, "twd": 0.6874361389321568, "uah": 0.6036618321940553, "usd": 0.022348379029003725, "vef": 5553.296012825323, "vnd": 518.5593992378099, "xag": 0.0014038366710210567, "xau": 1.6830787730532997e-05, "xdr": 0.016015764695724265, "xlm": 0.2383799472707915, "xrp": 0.06748616463998587, "zar": 0.31279461740364495, "bits": 5.431253776343764, "link": 0.04869349033016427, "sats": 543.1253776343764}, "market_cap": {"aed": 287340393.88111997, "ars": 3065682666.990472, "aud": 109704313.64283466, "bch": 519590.50763560925, "bdt": 6569985370.37315, "bhd": 29473752.285580393, "bmd": 78230138.48602794, "bnb": 7393599.7882475015, "brl": 293220249.31986845, "btc": 19012.01579428717, "cad": 102743552.38062477, "chf": 78277076.56911962, "clp": 50916167227.665695, "cny": 525252795.8228882, "czk": 1770649219.9719834, "dkk": 515004647.68121916, "eos": 18472469.881592494, "eth": 496160.87341769715, "eur": 69001329.04883122, "gbp": 59935003.60926998, "hkd": 613954038.3452722, "huf": 21939720568.545048, "idr": 1096428013084.1201, "ils": 282496461.9362039, "inr": 5557108710.029563, "jpy": 8657338275.556288, "krw": 87876444648.7735, "kwd": 23737605.611231007, "lkr": 14036836251.91242, "ltc": 1524709.9290889024, "mmk": 119543743341.02507, "mxn": 1497727735.835778, "myr": 318799314.16092056, "ngn": 28280195062.6991, "nok": 673553669.3508515, "nzd": 114313085.7914619, "php": 4071096406.812892, "pkr": 10927997616.105589, "pln": 299257660.2575275, "rub": 5114201427.357896, "sar": 293441249.4610911, "sek": 731295334.5673889, "sgd": 105696740.10847236, "thb": 2450363512.728607, "try": 416106575.9880144, "twd": 2406359059.830228, "uah": 2113108457.2166193, "usd": 78230138.48602794, "vef": 19439222664579.926, "vnd": 1815208770307.5693, "xag": 4914107.508343864, "xau": 58915.89959521253, "xdr": 56062924.67476557, "xlm": 834445140.8795261, "xrp": 236234225.25746968, "zar": 1094932487.2919934, "bits": 19012015794.28717, "link": 170450773.49695507, "sats": 1901201579428.717}, "total_volume": {"aed": 98236083.6065191, "ars": 1048097187.8605077, "aud": 37505767.92023187, "bch": 177637.87353323883, "bdt": 2246150022.348082, "bhd": 10076501.791537195, "bmd": 26745360.51496644, "bnb": 2527727.748754739, "brl": 100246291.64818454, "btc": 6499.837867796468, "cad": 35126019.23233116, "chf": 26761407.731275436, "clp": 17407245786.57691, "cny": 179573699.56958744, "czk": 605350478.0916729, "dkk": 176070057.34212705, "eos": 6315377.629981946, "eth": 169627.73797654707, "eur": 23590210.33501584, "gbp": 20490610.268854838, "hkd": 209898926.58948255, "huf": 7500763101.782859, "idr": 374847380512.82526, "ils": 96580037.628793, "inr": 1899867221.852685, "jpy": 2959775321.3887615, "krw": 30043244693.02462, "kwd": 8115424.97713784, "lkr": 4798920893.051962, "ltc": 521268.6251541635, "mmk": 40869677273.233604, "mxn": 512043938.8631097, "myr": 108991275.66648366, "ngn": 9668447826.160368, "nok": 230274879.49780935, "nzd": 39081417.344250046, "php": 1391828561.198852, "pkr": 3736069520.081935, "pln": 102310364.84592701, "rub": 1748445849.2333128, "sar": 100321847.2916392, "sek": 250015630.09390616, "sgd": 36135656.591771156, "thb": 837731554.7300351, "try": 142258733.05126983, "twd": 822687289.4403704, "uah": 722430620.5923035, "usd": 26745360.51496644, "vef": 6645891575249.522, "vnd": 620584520382.457, "xag": 1680037.6359225498, "xau": 20142.198457426377, "xdr": 19166821.90480607, "xlm": 285280539.6320606, "xrp": 80763880.04366443, "zar": 374336089.3756249, "bits": 6499837867.796469, "link": 58273799.272963755, "sats": 649983786779.6469}}, "community_data": {"facebook_likes": null, "twitter_followers": 109622, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5761, "reddit_accounts_active_48h": "2395.5"}, "developer_data": {"forks": 641, "stars": 2565, "subscribers": 185, "total_issues": 4058, "closed_issues": 3637, "pull_requests_merged": 2410, "pull_request_contributors": 147, "code_additions_deletions_4_weeks": {"additions": 5364, "deletions": -3424}, "commit_count_4_weeks": 115}, "public_interest_stats": {"alexa_rank": 300242, "bing_matches": null}}, "BLZ_20190227": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.16972451575890216, "ars": 1.8108192137464918, "aud": 0.0647994918437964, "bch": 0.00030677103482170434, "bdt": 3.8807199032064994, "bhd": 0.01740938079293378, "bmd": 0.04620851316082719, "bnb": 0.004365249604769292, "brl": 0.17319759381658378, "btc": 1.1224869726354393e-05, "cad": 0.06068795075977232, "chf": 0.0462362382687237, "clp": 30.074858986203612, "cny": 0.31025319906442606, "czk": 1.0458765556051879, "dkk": 0.3041998838403575, "eos": 0.010906316836070946, "eth": 0.0002929379623754241, "eur": 0.040757294863244406, "gbp": 0.03540205164749667, "hkd": 0.36264672171182977, "huf": 12.959223724467169, "idr": 647.6315810376068, "ils": 0.16686333083249683, "inr": 3.2824399385335474, "jpy": 5.113665108942943, "krw": 51.90633594244227, "kwd": 0.014021187773929241, "lkr": 8.291194995119637, "ltc": 0.0009002028248706104, "mmk": 70.61138768730268, "mxn": 0.8846689157410103, "myr": 0.18830648378180528, "ngn": 16.70437750763903, "nok": 0.39785067746340624, "nzd": 0.06752177397964029, "php": 2.4046910248894426, "pkr": 6.454884670253918, "pln": 0.1767637358197699, "rub": 3.020826097673278, "sar": 0.17332813286626245, "sek": 0.4319571810274123, "sgd": 0.062432322131593554, "thb": 1.4473661534800135, "try": 0.2457833587535183, "twd": 1.4213738648270469, "uah": 1.2481583421073545, "usd": 0.04620851316082719, "vef": 11482.244486796171, "vnd": 1072.196725912572, "xag": 0.002902635811051049, "xau": 3.4800093346550594e-05, "xdr": 0.03311491508008836, "xlm": 0.4926641183927811, "xrp": 0.13946652570115653, "zar": 0.646748212752885, "bits": 11.224869726354394, "link": 0.10063571101358833, "sats": 1122.4869726354393}, "market_cap": {"aed": 34800515.90952371, "ars": 371292518.20505506, "aud": 13286564.623595431, "bch": 63064.46958372675, "bdt": 795707409.3160849, "bhd": 3569640.0755685875, "bmd": 9474648.315939931, "bnb": 895949.6372197899, "brl": 35512639.95159809, "btc": 2302.88661928974, "cad": 12443529.365739707, "chf": 9480333.104929492, "clp": 6166584738.487712, "cny": 63614683.72288404, "czk": 214447768.78573722, "dkk": 62373504.79349584, "eos": 2238739.1686186544, "eth": 60096.903938140465, "eur": 8356924.054108503, "gbp": 7258878.6368292775, "hkd": 74357513.71591255, "huf": 2657174594.8536677, "idr": 132791147104.66985, "ils": 34213855.16044921, "inr": 673035376.1342299, "jpy": 1048511955.8834935, "krw": 10639071508.630417, "kwd": 2874920.9624506035, "lkr": 1700036450.5178487, "ltc": 184708.07908349475, "mmk": 14478242637.004784, "mxn": 181393563.20591748, "myr": 38610584.660757795, "ngn": 3425085366.212285, "nok": 81575774.53541115, "nzd": 13844744.579832383, "php": 493060698.36151373, "pkr": 1323517204.6707137, "pln": 36243845.93538072, "rub": 619393764.0765936, "sar": 35539405.83309062, "sek": 88569012.45740654, "sgd": 12801197.339666452, "thb": 296769671.87602794, "try": 50395711.240374334, "twd": 291440182.19831324, "uah": 255923866.08316755, "usd": 9474648.315939931, "vef": 2354333021090.579, "vnd": 219844487706.55933, "xag": 595159.8876000152, "xau": 7135.452393217523, "xdr": 6789921.443783516, "xlm": 101077436.4347311, "xrp": 28603793.363720827, "zar": 132610020.2243901, "bits": 2302886619.28974, "link": 20646353.852266055, "sats": 230288661928.974}, "total_volume": {"aed": 1665907.7782412115, "ars": 17773848.401807506, "aud": 636030.5522509427, "bch": 3011.0691479276043, "bdt": 38090675.60464139, "bhd": 170879.39681330533, "bmd": 453553.34290618415, "bnb": 42846.51064127789, "brl": 1699997.30104739, "btc": 110.17617403864813, "cad": 595674.2829058362, "chf": 453825.474911928, "clp": 295195666.2866267, "cny": 3045247.8549407027, "czk": 10265658.33033713, "dkk": 2985832.367019991, "eos": 107049.46169935205, "eth": 2875.2925167073518, "eur": 400047.65504354157, "gbp": 347483.99747411534, "hkd": 3559509.3127948777, "huf": 127199488.57138248, "idr": 6356739233.934824, "ils": 1637824.208801803, "inr": 32218340.41335792, "jpy": 50192480.69271289, "krw": 509479543.3639673, "kwd": 137623.05149805182, "lkr": 81381090.83136353, "ltc": 8835.81774407274, "mmk": 693076421.2506723, "mxn": 8683346.782940328, "myr": 1848296.544684106, "ngn": 163959533.46058556, "nok": 3905048.927087957, "nzd": 662750.7403415756, "php": 23602915.964837782, "pkr": 63357037.913728416, "pln": 1735000.2802861677, "rub": 29650505.528480235, "sar": 1701278.5892410933, "sek": 4239816.649487007, "sgd": 612795.9216005448, "thb": 14206424.583178991, "try": 2412452.952238046, "twd": 13951300.827794248, "uah": 12251127.54804979, "usd": 453553.34290618415, "vef": 112702400809.28152, "vnd": 10524000363.270018, "xag": 28490.424930128596, "xau": 341.5755580760766, "xdr": 325034.92121363076, "xlm": 4835677.292824064, "xrp": 1368914.6139611136, "zar": 6348068.653317819, "bits": 110176174.03864813, "link": 987776.0616770426, "sats": 11017617403.864813}}, "community_data": {"facebook_likes": null, "twitter_followers": 34757, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 28, "stars": 196, "subscribers": 55, "total_issues": 8, "closed_issues": 8, "pull_requests_merged": 210, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 520, "deletions": -120}, "commit_count_4_weeks": 17}, "public_interest_stats": {"alexa_rank": 1029822, "bing_matches": null}}, "LEND_20190308": {"id": "ethlend", "symbol": "lend", "name": "Aave [OLD]", "localization": {"en": "Aave [OLD]", "de": "Aave [OLD]", "es": "Aave [OLD]", "fr": "Aave [OLD]", "it": "Aave [OLD]", "pl": "Aave [OLD]", "ro": "Aave [OLD]", "hu": "Aave [OLD]", "nl": "Aave [OLD]", "pt": "Aave [OLD]", "sv": "Aave [OLD]", "vi": "Aave [OLD]", "tr": "Aave [OLD]", "ru": "Aave [OLD]", "ja": "\u30a4\u30fc\u30b5\u30ec\u30f3\u30c9", "zh": "Aave [OLD]", "zh-tw": "Aave [OLD]", "ko": "\uc5d0\uc774\ube0c", "ar": "Aave [OLD]", "th": "Aave [OLD]", "id": "Aave [OLD]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1365/thumb/ethlend.png?1547394586", "small": "https://assets.coingecko.com/coins/images/1365/small/ethlend.png?1547394586"}, "market_data": {"current_price": {"aed": 0.033534549613679465, "ars": 0.3635210724757333, "aud": 0.01287468791264391, "bch": 7.411563753760282e-05, "bdt": 0.7674743923393144, "bhd": 0.0034417643436058707, "bmd": 0.009129566338734563, "bnb": 0.0007993276018672565, "brl": 0.03446959066852629, "btc": 2.458877783873817e-06, "cad": 0.012155761952167582, "chf": 0.009122573090919106, "clp": 6.027310162685459, "cny": 0.06123382734716052, "czk": 0.20640123578611105, "dkk": 0.06008280814143815, "eos": 0.0028246461007124745, "eth": 7.26744439363284e-05, "eur": 0.008052807025611525, "gbp": 0.0069268758681880725, "hkd": 0.071662987454214, "huf": 2.542384990811356, "idr": 128.9659948901556, "ils": 0.03309650389118045, "inr": 0.6473775490796684, "jpy": 1.0202518622694354, "krw": 10.309106309699079, "kwd": 0.002771389416918949, "lkr": 1.6403471813355404, "ltc": 0.00019960728484219402, "mmk": 13.872359390248596, "mxn": 0.17617415459519475, "myr": 0.0372392272087081, "ngn": 3.29120866511381, "nok": 0.07899503347651504, "nzd": 0.013382730020261833, "php": 0.4725448473144551, "pkr": 1.2746451467571471, "pln": 0.03461748964321383, "rub": 0.6000571808327384, "sar": 0.034241807988374846, "sek": 0.08530248652775255, "sgd": 0.012367248356404367, "thb": 0.2910505748788572, "try": 0.0491030438884956, "twd": 0.28154212240749993, "uah": 0.24531144752179773, "usd": 0.009129566338734563, "vef": 2268.58441419495, "vnd": 211.72214616416753, "xag": 0.0006050076881799169, "xau": 7.092212314582553e-06, "xdr": 0.006540129178946616, "xlm": 0.11097108753605753, "xrp": 0.030144270235751315, "zar": 0.12978960341625154, "bits": 2.4588777838738167, "link": 0.02266751205470397, "sats": 245.88777838738167}, "market_cap": {"aed": 37404097.17374839, "ars": 405467724.3686903, "aud": 14360296.569176981, "bch": 82667.83184766427, "bdt": 856033168.1840489, "bhd": 3838909.108380036, "bmd": 10183025.876957402, "bnb": 891561.915646126, "brl": 38447032.501040444, "btc": 2742.6073892720456, "cad": 13558413.830444219, "chf": 10175225.679135667, "clp": 6722800741.8785715, "cny": 68299591.16192874, "czk": 230217849.02625304, "dkk": 67015755.99146539, "eos": 3150581.667254614, "eth": 81060.33909379519, "eur": 8982019.438977284, "gbp": 7726167.223623887, "hkd": 79932170.7724711, "huf": 2835750482.5589128, "idr": 143847365196.54233, "ils": 36915505.40914588, "inr": 722078364.9350499, "jpy": 1137978599.3146827, "krw": 11498672820.260311, "kwd": 3091179.701260951, "lkr": 1829626641.0666354, "ltc": 222639.9449175814, "mmk": 15473089236.014545, "mxn": 196502868.65023473, "myr": 41536257.06133291, "ngn": 3670980828.643143, "nok": 88110260.68451427, "nzd": 14926961.59317793, "php": 527071739.1920454, "pkr": 1421726293.6461992, "pln": 38611997.5202472, "rub": 669297705.2096032, "sar": 38192966.00541034, "sek": 95145529.96843824, "sgd": 13794303.62488394, "thb": 324634864.9574012, "try": 54769038.09028375, "twd": 314029233.3235254, "uah": 273617905.3138454, "usd": 10183025.876957402, "vef": 2530356091044.236, "vnd": 236152738599.13824, "xag": 674819.4509913829, "xau": 7910.581822255582, "xdr": 7294793.881424236, "xlm": 123776027.69360119, "xrp": 33622613.87491049, "zar": 144766009.8092808, "bits": 2742607389.2720456, "link": 25283113.485901736, "sats": 274260738927.20456}, "total_volume": {"aed": 12200240.980367914, "ars": 132252996.88642858, "aud": 4683954.217092323, "bch": 26964.090729982607, "bdt": 279215693.6851045, "bhd": 1252152.030468918, "bmd": 3321437.4626156115, "bnb": 290804.24449959106, "brl": 12540419.283851532, "btc": 894.5670017973457, "cad": 4422400.981223732, "chf": 3318893.241519253, "clp": 2192802267.9686375, "cny": 22277545.349255454, "czk": 75091058.15481377, "dkk": 21858791.7997187, "eos": 1027637.5711004399, "eth": 26439.768517891836, "eur": 2929700.4853997994, "gbp": 2520074.246010342, "hkd": 26071789.434674412, "huf": 924947849.6086975, "idr": 46919258915.31774, "ils": 12040875.089474084, "inr": 235523130.47407323, "jpy": 371178940.04095155, "krw": 3750567182.7855525, "kwd": 1008262.1990265232, "lkr": 596776492.7308662, "ltc": 72619.34347012409, "mmk": 5046918162.821051, "mxn": 64094110.85983973, "myr": 13548043.766885193, "ngn": 1197378205.272928, "nok": 28739269.07527561, "nzd": 4868785.569011964, "php": 171917055.02780274, "pkr": 463730037.64899355, "pln": 12594226.570745919, "rub": 218307455.81784365, "sar": 12457549.419159265, "sek": 31033990.43232237, "sgd": 4499342.080045222, "thb": 105887426.30818547, "try": 17864231.820929397, "twd": 102428145.86943424, "uah": 89247024.62048149, "usd": 3321437.4626156115, "vef": 825336163936.2828, "vnd": 77026864348.57726, "xag": 220108.5052819468, "xau": 2580.2254784583097, "xdr": 2379371.5122190258, "xlm": 40372512.09245791, "xrp": 10966819.75127758, "zar": 47218896.82927849, "bits": 894567001.7973458, "link": 8246692.222756816, "sats": 89456700179.73457}}, "community_data": {"facebook_likes": null, "twitter_followers": 11656, "reddit_average_posts_48h": 0.136, "reddit_average_comments_48h": 0.318, "reddit_subscribers": 5935, "reddit_accounts_active_48h": "184.130434782609"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 427366, "bing_matches": null}}, "SWM_20190313": {"id": "swarm", "symbol": "swm", "name": "Swarm Network", "localization": {"en": "Swarm Network", "de": "Swarm Network", "es": "Swarm Network", "fr": "Swarm Network", "it": "Swarm Network", "pl": "Swarm Network", "ro": "Swarm Network", "hu": "Swarm Network", "nl": "Swarm Network", "pt": "Swarm Network", "sv": "Swarm Network", "vi": "Swarm Network", "tr": "Swarm Network", "ru": "Swarm Network", "ja": "Swarm Network", "zh": "Swarm Network", "zh-tw": "Swarm Network", "ko": "Swarm Network", "ar": "Swarm Network", "th": "Swarm Network", "id": "Swarm Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/197/thumb/swarm.jpg?1547033949", "small": "https://assets.coingecko.com/coins/images/197/small/swarm.jpg?1547033949"}, "market_data": {"current_price": {"aed": 0.2733140261299617, "ars": 3.0650162636245906, "aud": 0.10561246863225024, "bch": 0.0005578658466319846, "bdt": 6.239120020390085, "bhd": 0.028059520703298837, "bmd": 0.07441165971411988, "bnb": 0.0051370232250346195, "brl": 0.28783174094018615, "btc": 1.8896912522088555e-05, "cad": 0.09983455207876824, "chf": 0.07500695299183284, "clp": 49.95244953799112, "cny": 0.5001579707684559, "czk": 1.698743779613641, "dkk": 0.4941752733274404, "eos": 0.01982546598246303, "eth": 0.0005423223617283077, "eur": 0.0662338183115381, "gbp": 0.05716526934217821, "hkd": 0.5841054846749405, "huf": 20.88809699835064, "idr": 1064.8341799843574, "ils": 0.2697720311275709, "inr": 5.2091473118741085, "jpy": 8.27200629888665, "krw": 84.37372343012034, "kwd": 0.02263252953702872, "lkr": 13.28545772535896, "ltc": 0.0012909175952972635, "mmk": 113.09851264769406, "mxn": 1.4505027622243518, "myr": 0.30416815112548395, "ngn": 26.803900440809308, "nok": 0.6504516645926463, "nzd": 0.10935656570242591, "php": 3.888827748319611, "pkr": 10.39902944504824, "pln": 0.2849668920411926, "rub": 4.936290917451401, "sar": 0.2791069738387055, "sek": 0.7018563552980573, "sgd": 0.1011330355407797, "thb": 2.361152802629071, "try": 0.4048623066972708, "twd": 2.2998411667843075, "uah": 1.9590915740384198, "usd": 0.07441165971411988, "vef": 18490.377877601248, "vnd": 1722.6005642288849, "xag": 0.004850667652968142, "xau": 5.7312604428412204e-05, "xdr": 0.05344818370447876, "xlm": 0.8278635224253174, "xrp": 0.23734791773208394, "zar": 1.074496925105918, "bits": 18.896912522088556, "link": 0.156384252234137, "sats": 1889.6912522088555}, "market_cap": {"aed": 20832695.959354457, "ars": 233623399.5550812, "aud": 8050053.192243887, "bch": 42568.86957915854, "bdt": 475561727.581823, "bhd": 2138768.6239676513, "bmd": 5671847.525008033, "bnb": 393332.7806073135, "brl": 21939273.41148359, "btc": 1442.2299604049626, "cad": 7609645.575622069, "chf": 5717222.305208086, "clp": 3807503802.0739355, "cny": 38123323.139341414, "czk": 129482607.1484083, "dkk": 37667306.59833085, "eos": 1513385.7215103128, "eth": 41368.74236017622, "eur": 5048511.482009648, "gbp": 4357283.4241369115, "hkd": 44522017.924679205, "huf": 1592144318.7450027, "idr": 81164391864.01044, "ils": 20562716.01716415, "inr": 397054566.4720484, "jpy": 630513532.8716278, "krw": 6431181568.202987, "kwd": 1725109.440273773, "lkr": 1012651657.1149323, "ltc": 98633.30698185912, "mmk": 8620658664.346272, "mxn": 110561040.21260525, "myr": 23184476.488971327, "ngn": 2043062027.6423993, "nok": 49579093.89645161, "nzd": 8335437.872312199, "php": 296416423.5044438, "pkr": 792640691.6198716, "pln": 21720907.281770702, "rub": 376256752.37497205, "sar": 21274249.289176416, "sek": 53497291.24444004, "sgd": 7708619.314933462, "thb": 179973121.56734788, "try": 30859643.247202363, "twd": 175299791.45542276, "uah": 149326983.67653024, "usd": 5671847.525008033, "vef": 1409384018639.6968, "vnd": 131301032450.2288, "xag": 369730.3275833709, "xau": 4368.513682236427, "xdr": 4073957.6247201953, "xlm": 63202360.067146935, "xrp": 18116501.880238496, "zar": 81900911.0763635, "bits": 1442229960.4049625, "link": 11935391.75481516, "sats": 144222996040.49628}, "total_volume": {"aed": 1421631.2419673423, "ars": 15942551.281414328, "aud": 549338.7480871908, "bch": 2901.7153917358028, "bdt": 32452516.50258477, "bhd": 145950.3993676165, "bmd": 387049.0721392174, "bnb": 26720.007058651543, "brl": 1497144.515941702, "btc": 98.29148396998423, "cad": 519285.1617337247, "chf": 390145.4647163312, "clp": 259825534.31867397, "cny": 2601550.338383746, "czk": 8835943.267866187, "dkk": 2570431.5929837506, "eos": 103121.31516378306, "eth": 2820.866618399861, "eur": 344512.3791111174, "gbp": 297342.7086895105, "hkd": 3038199.7491176054, "huf": 108648545.04019998, "idr": 5538689540.435884, "ils": 1403207.7061335226, "inr": 27095157.418116182, "jpy": 43026487.71730476, "krw": 438866321.3805764, "kwd": 117722.13643835948, "lkr": 69103741.33973587, "ltc": 6714.652776024368, "mmk": 588277086.5317647, "mxn": 7544728.210756152, "myr": 1582117.6562882192, "ngn": 139419344.16171366, "nok": 3383296.572327649, "nzd": 568813.5092009477, "php": 20227571.559067603, "pkr": 54090107.831455566, "pln": 1482243.1266643424, "rub": 25675906.52794256, "sar": 1451763.0122333781, "sek": 3650675.8770975093, "sgd": 526039.1680425544, "thb": 12281435.529694041, "try": 2105874.008903302, "twd": 11962525.672606817, "uah": 10190131.209013281, "usd": 387049.0721392174, "vef": 96176911367.44084, "vnd": 8960033314.843102, "xag": 25230.540772104057, "xau": 298.1090658523463, "xdr": 278008.44638894004, "xlm": 4306096.77896785, "xrp": 1234555.0641567889, "zar": 5588949.896783077, "bits": 98291483.96998423, "link": 813426.0135703248, "sats": 9829148396.998423}}, "community_data": {"facebook_likes": null, "twitter_followers": 951, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 445, "reddit_accounts_active_48h": "23.1666666666667"}, "developer_data": {"forks": 0, "stars": 1, "subscribers": 12, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 430426, "bing_matches": null}}, "VERI_20190317": {"id": "veritaseum", "symbol": "veri", "name": "Veritaseum", "localization": {"en": "Veritaseum", "de": "Veritaseum", "es": "Veritaseum", "fr": "Veritaseum", "it": "Veritaseum", "pl": "Veritaseum", "ro": "Veritaseum", "hu": "Veritaseum", "nl": "Veritaseum", "pt": "Veritaseum", "sv": "Veritaseum", "vi": "Veritaseum", "tr": "Veritaseum", "ru": "Veritaseum", "ja": "\u30f4\u30a7\u30ea\u30bf\u30b7\u30a2\u30e0", "zh": "Veritaseum", "zh-tw": "Veritaseum", "ko": "Veritaseum", "ar": "Veritaseum", "th": "Veritaseum", "id": "Veritaseum"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/695/thumb/veritaseum.png?1547034460", "small": "https://assets.coingecko.com/coins/images/695/small/veritaseum.png?1547034460"}, "market_data": {"current_price": {"aed": 62.46317747202407, "ars": 701.4474940231722, "aud": 23.98898053543301, "bch": 0.13312546617935858, "bdt": 1429.8865597372492, "bhd": 6.410705314900346, "bmd": 17.005199981167326, "bnb": 1.1362267797359844, "brl": 64.8646348081644, "btc": 0.004398866742536311, "cad": 22.612664674957244, "chf": 17.060432870706144, "clp": 11371.292915625087, "cny": 114.05387627368911, "czk": 385.09627270751895, "dkk": 111.96538263800211, "eos": 4.752563023514508, "eth": 0.12919523236278704, "eur": 15.005915624581469, "gbp": 12.802449831821708, "hkd": 133.48996959216447, "huf": 4721.323722771309, "idr": 242579.7465042756, "ils": 61.22382149219676, "inr": 1183.4292781293927, "jpy": 1890.6818809734964, "krw": 19239.169565611646, "kwd": 5.169546783874882, "lkr": 3039.1989126769904, "ltc": 0.3070506651625508, "mmk": 25860.912524229894, "mxn": 328.1113374146278, "myr": 69.52576012300277, "ngn": 6113.369393229654, "nok": 145.6037428351487, "nzd": 24.794618889740807, "php": 895.2225640581706, "pkr": 2368.8243573766053, "pln": 64.52112976854515, "rub": 1111.697943568831, "sar": 63.781403569364215, "sek": 157.99010943383146, "sgd": 23.003546201724337, "thb": 537.304801204955, "try": 92.87687560714197, "twd": 525.6473454982621, "uah": 453.49467309777026, "usd": 17.005199981167326, "vef": 4225582.049156963, "vnd": 393425.4211037365, "xag": 1.100448323573291, "xau": 0.012984320445620291, "xdr": 12.181777037709077, "xlm": 158.15514746059978, "xrp": 54.293615439341615, "zar": 245.26858411877322, "bits": 4398.866742536311, "link": 35.27018200061916, "sats": 439886.67425363103}, "market_cap": {"aed": 134514144.78601006, "ars": 1510563720.7309222, "aud": 51660151.33407609, "bch": 286686.6440699502, "bdt": 3079253658.048548, "bhd": 13805422.295322226, "bmd": 36620614.335642636, "bnb": 2446266.5786855044, "brl": 139685671.32187557, "btc": 9471.507994731872, "cad": 48696261.91282077, "chf": 36739558.091004826, "clp": 24488023241.238335, "cny": 245614460.34915486, "czk": 829302925.0190248, "dkk": 241116899.59952337, "eos": 10239750.81911484, "eth": 278226.3194777405, "eur": 32315165.32881544, "gbp": 27570012.605660226, "hkd": 287469991.5040781, "huf": 10167347364.147816, "idr": 522394288347.63025, "ils": 131845197.79261385, "inr": 2548509116.968907, "jpy": 4071574110.930569, "krw": 41431456823.82828, "kwd": 11132593.516806684, "lkr": 6544899877.314388, "ltc": 661215.3810839407, "mmk": 55691347644.628235, "mxn": 706586147.7618563, "myr": 149723381.71127492, "ngn": 13165110853.663528, "nok": 313556942.4703737, "nzd": 53395089.558841504, "php": 1927857378.875057, "pkr": 5101251576.955022, "pln": 138945934.91229543, "rub": 2394036041.578304, "sar": 137352938.18869483, "sek": 340230921.8844691, "sgd": 49538023.35393993, "thb": 1157083240.8561337, "try": 200009893.80162063, "twd": 1131978967.4549208, "uah": 976598543.1029178, "usd": 36620614.335642636, "vef": 9099770113680.805, "vnd": 847239705033.3749, "xag": 2369810.0403706995, "xau": 27961.670075979957, "xdr": 26233396.803023618, "xlm": 340756540.3162992, "xrp": 116922579.83874233, "zar": 528184686.8963529, "bits": 9471507994.731873, "link": 75942698.50554696, "sats": 947150799473.1871}, "total_volume": {"aed": 5301053.298245496, "ars": 59529641.337938204, "aud": 2035869.2838810433, "bch": 11297.93936414183, "bdt": 121349972.42186292, "bhd": 544056.385361646, "bmd": 1443177.8064422922, "bnb": 96427.99105075885, "brl": 5504857.424893457, "btc": 373.3179770514948, "cad": 1919065.6881166373, "chf": 1447865.2479576154, "clp": 965045843.8923966, "cny": 9679393.547808442, "czk": 32681908.75324181, "dkk": 9502149.665510237, "eos": 403335.0673235418, "eth": 10964.39278871275, "eur": 1273504.8349166785, "gbp": 1086503.62746911, "hkd": 11328873.621681672, "huf": 400683886.180639, "idr": 20586979678.867382, "ils": 5195873.056534188, "inr": 100433918.54149328, "jpy": 160456221.19618332, "krw": 1632767774.6936293, "kwd": 438723.166802842, "lkr": 257927247.25357175, "ltc": 26058.423653158243, "mmk": 2194734260.7347646, "mxn": 27845776.6285195, "myr": 5900432.461639324, "ngn": 518822421.41600406, "nok": 12356931.434345467, "nzd": 2104241.2756390544, "php": 75974721.71488263, "pkr": 201034668.437411, "pln": 5475705.2332033515, "rub": 94346305.91835825, "sar": 5412926.998623098, "sek": 13408123.387246571, "sgd": 1952238.573175518, "thb": 45599367.56125401, "try": 7882168.146000698, "twd": 44610035.98184801, "uah": 38486665.74220305, "usd": 1443177.8064422922, "vef": 358611850457.3831, "vnd": 33388777365.50734, "xag": 93391.58607228452, "xau": 1101.9384141090104, "xdr": 1033829.0807117725, "xlm": 13422129.645197952, "xrp": 4607728.278429318, "zar": 20815172.865343735, "bits": 373317977.0514948, "link": 2993269.3498956338, "sats": 37331797705.149475}}, "community_data": {"facebook_likes": null, "twitter_followers": 9371, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.125, "reddit_subscribers": 2609, "reddit_accounts_active_48h": "23.04"}, "developer_data": {"forks": 2, "stars": 5, "subscribers": 11, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "CTXC_20190322": {"id": "cortex", "symbol": "ctxc", "name": "Cortex", "localization": {"en": "Cortex", "de": "Cortex", "es": "Cortex", "fr": "Cortex", "it": "Cortex", "pl": "Cortex", "ro": "Cortex", "hu": "Cortex", "nl": "Cortex", "pt": "Cortex", "sv": "Cortex", "vi": "Cortex", "tr": "Cortex", "ru": "Cortex", "ja": "\u30b3\u30eb\u30c6\u30c3\u30af\u30b9", "zh": "Cortex", "zh-tw": "Cortex", "ko": "\ucf54\ub974\ud14d\uc2a4", "ar": "Cortex", "th": "Cortex", "id": "Cortex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3861/thumb/2638.png?1523930406", "small": "https://assets.coingecko.com/coins/images/3861/small/2638.png?1523930406"}, "market_data": {"current_price": {"aed": 0.5467329755217428, "ars": 5.959140431138162, "aud": 0.20973387947617533, "bch": 0.0009259562783064174, "bdt": 12.562876450670101, "bhd": 0.056106060312592035, "bmd": 0.1488445506828394, "bnb": 0.0095897565893568, "brl": 0.5644602126635184, "btc": 3.7313867909395014e-05, "cad": 0.19858914374379785, "chf": 0.1490176568952835, "clp": 99.13057688093566, "cny": 0.9992083531889693, "czk": 3.362978298294801, "dkk": 0.9799239043579506, "eos": 0.04014355931086878, "eth": 0.0010804397157208247, "eur": 0.13130828109958995, "gbp": 0.11226942577719713, "hkd": 1.1684371650878245, "huf": 41.21924040208707, "idr": 2119.553526316895, "ils": 0.5364714833531152, "inr": 10.214692018466273, "jpy": 16.58284581385047, "krw": 168.53465717770948, "kwd": 0.0452040900423782, "lkr": 26.592675932673533, "ltc": 0.002512655752292043, "mmk": 229.27927795927076, "mxn": 2.837269169023359, "myr": 0.6069096366064074, "ngn": 53.58403824582218, "nok": 1.2725018326977313, "nzd": 0.2174599535684693, "php": 7.844865290904073, "pkr": 20.888877435164463, "pln": 0.5636043564970924, "rub": 9.580766500532722, "sar": 0.5582117184258514, "sek": 1.373971842100133, "sgd": 0.2011902022669804, "thb": 4.713906920125522, "try": 0.8140234054569137, "twd": 4.581589770661409, "uah": 4.044648236217231, "usd": 0.1488445506828394, "vef": 36986.031459599784, "vnd": 3459.7652141294284, "xag": 0.009704617074264893, "xau": 0.00011423372731255854, "xdr": 0.10657418673441986, "xlm": 1.295604106576997, "xrp": 0.47266033458678663, "zar": 2.1491009757072184, "bits": 37.313867909395015, "link": 0.31253902329148575, "sats": 3731.386790939501}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 9459443.82418726, "ars": 103103629.5094528, "aud": 3628765.6676286254, "bch": 16020.675156705865, "bdt": 217359898.48044723, "bhd": 970733.702712834, "bmd": 2575272.9920434793, "bnb": 165919.6862199191, "brl": 9766156.262266649, "btc": 645.595662151585, "cad": 3435942.102349372, "chf": 2578268.0345332255, "clp": 1715133648.8706002, "cny": 17288065.122887082, "czk": 58185450.15383917, "dkk": 16954410.17876495, "eos": 694554.309334852, "eth": 18693.510824966776, "eur": 2271864.6292128838, "gbp": 1942458.8855276078, "hkd": 20216021.751190934, "huf": 713165487.5711925, "idr": 36672010674.71616, "ils": 9281901.928842759, "inr": 176732170.28449208, "jpy": 286912451.68005985, "krw": 2915946528.522131, "kwd": 782110.4076836024, "lkr": 460100150.13249916, "ltc": 43473.37183319817, "mmk": 3966935500.5269585, "mxn": 49089755.91395911, "myr": 10500606.092686469, "ngn": 927098277.1356525, "nok": 22016523.863578126, "nzd": 3762440.3628266235, "php": 135729992.24494806, "pkr": 361414385.98925877, "pln": 9751348.442562405, "rub": 165764141.84265766, "sar": 9658046.302060638, "sek": 23772133.817167982, "sgd": 3480944.99788533, "thb": 81558895.65801695, "try": 14084039.22983617, "twd": 79269575.82846408, "uah": 69979541.18751237, "usd": 2575272.9920434793, "vef": 639923513919.8096, "vnd": 59860034337.06005, "xag": 167906.97499387708, "xau": 1976.4447632036054, "xdr": 1843921.215033052, "xlm": 22416233.9080717, "xrp": 8177856.619455824, "zar": 37183233.6119993, "bits": 645595662.151585, "link": 5407475.799078794, "sats": 64559566215.1585}}, "community_data": {"facebook_likes": null, "twitter_followers": 21862, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.478, "reddit_subscribers": 20047, "reddit_accounts_active_48h": "97.2083333333333"}, "developer_data": {"forks": 5, "stars": 13, "subscribers": 3, "total_issues": 3, "closed_issues": 2, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 21, "deletions": -14}, "commit_count_4_weeks": 1}, "public_interest_stats": {"alexa_rank": 2194548, "bing_matches": null}}, "VERI_20190403": {"id": "veritaseum", "symbol": "veri", "name": "Veritaseum", "localization": {"en": "Veritaseum", "de": "Veritaseum", "es": "Veritaseum", "fr": "Veritaseum", "it": "Veritaseum", "pl": "Veritaseum", "ro": "Veritaseum", "hu": "Veritaseum", "nl": "Veritaseum", "pt": "Veritaseum", "sv": "Veritaseum", "vi": "Veritaseum", "tr": "Veritaseum", "ru": "Veritaseum", "ja": "\u30f4\u30a7\u30ea\u30bf\u30b7\u30a2\u30e0", "zh": "Veritaseum", "zh-tw": "Veritaseum", "ko": "Veritaseum", "ar": "Veritaseum", "th": "Veritaseum", "id": "Veritaseum"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/695/thumb/veritaseum.png?1547034460", "small": "https://assets.coingecko.com/coins/images/695/small/veritaseum.png?1547034460"}, "market_data": {"current_price": {"aed": 48.19999827081149, "ars": 568.7398266117316, "aud": 18.487128067969625, "bch": 0.07868355912414553, "bdt": 1103.020911479142, "bhd": 4.947900021257743, "bmd": 13.122140801341263, "bnb": 0.7814112520581965, "brl": 51.46897286510085, "btc": 0.003200680948820042, "cad": 17.51744122917292, "chf": 13.05377444776628, "clp": 8929.664356828842, "cny": 88.07580905860245, "czk": 302.0401881089527, "dkk": 87.30947603580414, "eos": 3.171163159784391, "eth": 0.0922931869047012, "eur": 11.6931396680752, "gbp": 10.059892413236268, "hkd": 103.01339803980916, "huf": 3756.2128043839384, "idr": 186859.91311549107, "ils": 47.625497824387885, "inr": 911.2014572451368, "jpy": 1454.9118354839977, "krw": 14918.570682001357, "kwd": 3.9908366819119094, "lkr": 2302.542046411349, "ltc": 0.21756289442458687, "mmk": 19944.149302153026, "mxn": 254.96450798414068, "myr": 53.570706790829334, "ngn": 4729.174942646808, "nok": 113.1902218497262, "nzd": 19.29159403193667, "php": 691.1300338658426, "pkr": 1847.9254783488816, "pln": 50.353590896986944, "rub": 860.5355593970789, "sar": 49.21524518247054, "sek": 122.0122895990314, "sgd": 17.78441118377621, "thb": 416.19493979614197, "try": 73.27735413631245, "twd": 404.8836544253848, "uah": 357.57921601998316, "usd": 13.122140801341263, "vef": 3260689.8288797145, "vnd": 304445.063078548, "xag": 0.8668058431575909, "xau": 0.010155487208974022, "xdr": 9.418928323653951, "xlm": 122.23386665482526, "xrp": 42.216013120537106, "zar": 190.2368584426608, "bits": 3200.680948820042, "link": 26.52790531050659, "sats": 320068.0948820042}, "market_cap": {"aed": 103481283.89557344, "ars": 1221035883.2308955, "aud": 39690286.652435206, "bch": 168839.60986912524, "bdt": 2368091787.9337006, "bhd": 10622719.194094818, "bmd": 28172116.728136595, "bnb": 1677691.4498527588, "brl": 110499493.44277038, "btc": 6865.794000533693, "cad": 37608451.74257611, "chf": 28025339.999982968, "clp": 19171227501.075863, "cny": 189091247.47925264, "czk": 648454514.001556, "dkk": 187445995.86232945, "eos": 6791215.333948975, "eth": 197857.1242334343, "eur": 25104173.216442473, "gbp": 21597730.707874954, "hkd": 221160976.55672666, "huf": 8064268413.429086, "idr": 401172290695.204, "ils": 102247880.45309864, "inr": 1956271785.6018038, "jpy": 3123571578.6720667, "krw": 32028553754.03273, "kwd": 8567985.860528175, "lkr": 4943361322.286124, "ltc": 466558.75289245846, "mmk": 42818386930.14239, "mxn": 547387045.2393665, "myr": 115011736.86276555, "ngn": 10153135111.79567, "nok": 243009748.99676612, "nzd": 41417406.44057033, "php": 1483797215.9542239, "pkr": 3967338338.2398286, "pln": 108104863.52087879, "rub": 1847496425.7027936, "sar": 105660932.39471266, "sek": 261949975.76155972, "sgd": 38181613.457410045, "thb": 893506854.1495768, "try": 157320227.3554471, "twd": 869250661.6466556, "uah": 767692068.373543, "usd": 28172116.728136595, "vef": 7000422862712.875, "vnd": 653617575378.9417, "xag": 1860958.1899601675, "xau": 21802.964578239462, "xdr": 20221635.494172405, "xlm": 262129261.10539967, "xrp": 90505240.53250039, "zar": 408422304.19390357, "bits": 6865794000.533693, "link": 56905119.891674206, "sats": 686579400053.3693}, "total_volume": {"aed": 6997685.083590915, "ars": 82569758.17227541, "aud": 2683964.8332105214, "bch": 11423.294351865277, "bdt": 160136789.54467103, "bhd": 718337.0833193923, "bmd": 1905074.9428331782, "bnb": 113445.43690552465, "brl": 7472275.448274577, "btc": 464.6754800083636, "cad": 2543185.5101599796, "chf": 1895149.502381018, "clp": 1296410400.684494, "cny": 12786863.016296275, "czk": 43850253.00415697, "dkk": 12675606.639634822, "eos": 460390.0816796163, "eth": 13399.142748749784, "eur": 1697612.2815586454, "gbp": 1460497.1287989148, "hkd": 14955505.077470409, "huf": 545327702.3859975, "idr": 27128358374.261658, "ils": 6914278.997518723, "inr": 132288404.03033581, "jpy": 211224382.04051918, "krw": 2165880980.8123264, "kwd": 579390.4423638532, "lkr": 334283500.2189374, "ltc": 31585.82314679749, "mmk": 2895495458.162736, "mxn": 37015796.64674291, "myr": 7777405.586643347, "ngn": 686582534.0473467, "nok": 16432978.329084914, "nzd": 2800757.3576558544, "php": 100338392.16408062, "pkr": 268282178.82448208, "pln": 7310344.078133771, "rub": 124932719.16856277, "sar": 7145078.826842986, "sek": 17713767.83345147, "sgd": 2581944.2598719206, "thb": 60423261.96184008, "try": 10638420.46474102, "twd": 58781087.361117736, "uah": 51913419.83222528, "usd": 1905074.9428331782, "vef": 473387580837.024, "vnd": 44199393217.982025, "xag": 125843.04017924603, "xau": 1474.375599757452, "xdr": 1367441.8381412853, "xlm": 17745936.433323257, "xrp": 6128928.96058785, "zar": 27618623.950855, "bits": 464675480.0083636, "link": 3851326.4304961325, "sats": 46467548000.83636}}, "community_data": {"facebook_likes": null, "twitter_followers": 9429, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2620, "reddit_accounts_active_48h": "26.9047619047619"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "C20_20190414": {"id": "crypto20", "symbol": "c20", "name": "CRYPTO20", "localization": {"en": "CRYPTO20", "de": "CRYPTO20", "es": "CRYPTO20", "fr": "CRYPTO20", "it": "CRYPTO20", "pl": "CRYPTO20", "ro": "CRYPTO20", "hu": "CRYPTO20", "nl": "CRYPTO20", "pt": "CRYPTO20", "sv": "CRYPTO20", "vi": "CRYPTO20", "tr": "CRYPTO20", "ru": "CRYPTO20", "ja": "\u30af\u30ea\u30d7\u30c820", "zh": "CRYPTO20", "zh-tw": "CRYPTO20", "ko": "CRYPTO20", "ar": "CRYPTO20", "th": "CRYPTO20", "id": "CRYPTO20"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2097/thumb/c20.png?1547036413", "small": "https://assets.coingecko.com/coins/images/2097/small/c20.png?1547036413"}, "market_data": {"current_price": {"aed": 2.1589693170316013, "ars": 25.26980506736244, "aud": 0.8200287732234693, "bch": 0.0019299153058877482, "bdt": 49.57850351879476, "bhd": 0.2216258239184294, "bmd": 0.5877655680543915, "bnb": 0.03218452361480077, "brl": 2.2480927978812586, "btc": 0.00011074950255192287, "cad": 0.7828390824359635, "chf": 0.58909215494149, "clp": 389.3389651335891, "cny": 3.947755062819021, "czk": 13.3413967464826, "dkk": 3.891496493707125, "eos": 0.10056065374075135, "eth": 0.003314706797466441, "eur": 0.5212305057506349, "gbp": 0.44877723194213703, "hkd": 4.60611303889345, "huf": 167.57721631318927, "idr": 8336.865803975648, "ils": 2.1038186860154875, "inr": 40.64410658407479, "jpy": 65.23554528904384, "krw": 668.8184398890919, "kwd": 0.17879769803657822, "lkr": 102.70247301054046, "ltc": 0.006657214336247437, "mmk": 887.5802961410585, "mxn": 11.060810504702603, "myr": 2.4160691440443767, "ngn": 211.81307775976106, "nok": 4.992912154980948, "nzd": 0.8684735868736482, "php": 30.472332056878628, "pkr": 83.2441030159971, "pln": 2.231128708056068, "rub": 37.77986619438893, "sar": 2.204179656760776, "sek": 5.443788885532181, "sgd": 0.794541494895926, "thb": 18.67345374858994, "try": 3.3405162337294194, "twd": 18.12694520905398, "uah": 15.771097349581304, "usd": 0.5877655680543915, "vef": 146052.4801962782, "vnd": 13635.539900076676, "xag": 0.03856609668415252, "xau": 0.000449276244909416, "xdr": 0.4216359813060896, "xlm": 4.667318997929704, "xrp": 1.6572876253333446, "zar": 8.175276544017272, "bits": 110.74950255192287, "link": 1.1289444674227476, "sats": 11074.950255192287}, "market_cap": {"aed": 78742156.9296162, "ars": 921707310.1885779, "aud": 29903116.87318403, "bch": 70372.92776104722, "bdt": 1808232416.0956726, "bhd": 8083160.454838939, "bmd": 21437047.86930355, "bnb": 1174270.0554577191, "brl": 81992677.93508685, "btc": 4039.141110667123, "cad": 28548767.062897157, "chf": 21485860.02730197, "clp": 14200013096.002092, "cny": 143979788.30939028, "czk": 486563106.60394293, "dkk": 141925518.88617083, "eos": 3667293.915105976, "eth": 120797.80742135244, "eur": 19008766.271908198, "gbp": 16369715.619861849, "hkd": 167995069.92593512, "huf": 6111702347.538447, "idr": 304063086978.20197, "ils": 76730697.29099175, "inr": 1482376147.571914, "jpy": 2379250713.124508, "krw": 24393216770.480526, "kwd": 6521128.524794257, "lkr": 3745775441.5772033, "ltc": 242754.61387578427, "mmk": 32371922294.137768, "mxn": 403361636.4136028, "myr": 88119128.97155929, "ngn": 7725268940.66092, "nok": 182078031.33843476, "nzd": 31668972.254370037, "php": 1111390112.8215969, "pkr": 3036087716.227076, "pln": 81369674.44990888, "rub": 1377879114.028208, "sar": 80391073.21467525, "sek": 198539068.78221977, "sgd": 28978172.56876719, "thb": 680476210.5153023, "try": 121839540.95883001, "twd": 661118556.2893236, "uah": 575205128.0471307, "usd": 21437047.86930355, "vef": 5326841481650.7, "vnd": 497293772439.6329, "xag": 1406771.3240350212, "xau": 16383.906945551327, "xdr": 15377952.037236394, "xlm": 170257420.0353141, "xrp": 60447354.48602258, "zar": 298128861.9499731, "bits": 4039141110.667123, "link": 41173692.92823292, "sats": 403914111066.7123}, "total_volume": {"aed": 305503.1586249234, "ars": 3575782.761252795, "aud": 116037.4899294708, "bch": 273.09106117262263, "bdt": 7015564.929710845, "bhd": 31360.97799343585, "bmd": 83171.27814418155, "bnb": 4554.244261645592, "brl": 318114.5027012041, "btc": 15.671516301246356, "cad": 110774.99364745394, "chf": 83358.99571895292, "clp": 55093086.63432449, "cny": 558623.7987054684, "czk": 1887863.256955704, "dkk": 550662.9766466196, "eos": 14229.751719411339, "eth": 469.0448301200566, "eur": 73756.28945826026, "gbp": 63503.849172705, "hkd": 651784.1968686007, "huf": 23712874.70061901, "idr": 1179701265.8097873, "ils": 297699.11442537635, "inr": 5751310.517925784, "jpy": 9231101.610940782, "krw": 94640597.40026414, "kwd": 25300.619640181932, "lkr": 14532828.074856702, "ltc": 942.0235810312563, "mmk": 125596312.02964857, "mxn": 1565150.7964848569, "myr": 341883.8559394719, "ngn": 29972433.504818704, "nok": 706517.884274835, "nzd": 122892.6330166705, "php": 4311962.01845219, "pkr": 11779387.60299361, "pln": 315714.01327140606, "rub": 5346008.562401371, "sar": 311900.6101684955, "sek": 770318.821253072, "sgd": 112430.93379530453, "thb": 2642371.550918683, "try": 472696.9729450919, "twd": 2565038.3143012747, "uah": 2231676.021177897, "usd": 83171.27814418155, "vef": 20667034808.218143, "vnd": 1929485739.4069314, "xag": 5457.263454323711, "xau": 63.57446158784952, "xdr": 59663.249061841154, "xlm": 660445.095226319, "xrp": 234513.1078497511, "zar": 1156835.7118958381, "bits": 15671516.301246356, "link": 159750.34845978452, "sats": 1567151630.1246357}}, "community_data": {"facebook_likes": null, "twitter_followers": 7640, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 28, "stars": 44, "subscribers": 34, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 635466, "bing_matches": null}}, "FTM_20190418": {"id": "fantom", "symbol": "ftm", "name": "Fantom", "localization": {"en": "Fantom", "de": "Fantom", "es": "Fantom", "fr": "Fantom", "it": "Fantom", "pl": "Fantom", "ro": "Fantom", "hu": "Fantom", "nl": "Fantom", "pt": "Fantom", "sv": "Fantom", "vi": "Fantom", "tr": "Fantom", "ru": "Fantom", "ja": "\u30d5\u30a1\u30f3\u30c8\u30e0", "zh": "Fantom", "zh-tw": "Fantom", "ko": "Fantom", "ar": "Fantom", "th": "Fantom", "id": "Fantom"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4001/thumb/Fantom.png?1558015016", "small": "https://assets.coingecko.com/coins/images/4001/small/Fantom.png?1558015016"}, "market_data": {"current_price": {"aed": 0.042053044284144234, "ars": 0.4826270262227063, "aud": 0.015966454726811408, "bch": 3.972812471095521e-05, "bdt": 0.962286034768734, "bhd": 0.004310383485774798, "bmd": 0.0114491394938252, "bnb": 0.0005931168014047008, "brl": 0.04443270213137789, "btc": 2.224738031644123e-06, "cad": 0.015262595978149506, "chf": 0.011478907256509142, "clp": 7.56892837806399, "cny": 0.07675732099450296, "czk": 0.25937683193990163, "dkk": 0.07560424380866122, "eos": 0.0020656657964814814, "eth": 6.83241679932732e-05, "eur": 0.010129191099861072, "gbp": 0.00875268395679747, "hkd": 0.08978621275568602, "huf": 3.256347000980535, "idr": 161.48496044763215, "ils": 0.040810480624018916, "inr": 0.7919464014296914, "jpy": 1.2827844871671625, "krw": 12.988256898909867, "kwd": 0.0034796797206608186, "lkr": 1.9979222869065585, "ltc": 0.00013786226324764007, "mmk": 17.358595910285764, "mxn": 0.2147793881403466, "myr": 0.04710748444734386, "ngn": 4.12293113276111, "nok": 0.09719878638387078, "nzd": 0.016916057805568745, "php": 0.5915950929389308, "pkr": 1.6205890810028554, "pln": 0.04333442052715371, "rub": 0.7371253683751512, "sar": 0.04293656292974323, "sek": 0.10605533693415621, "sgd": 0.015489517922917133, "thb": 0.3635101789289507, "try": 0.06623620295148919, "twd": 0.35314964651647696, "uah": 0.3064812709161397, "usd": 0.0114491394938252, "vef": 2844.9696785089286, "vnd": 265.8479536583949, "xag": 0.0007645515530498184, "xau": 8.874571495848719e-06, "xdr": 0.008210681693159775, "xlm": 0.09790837567093486, "xrp": 0.034875984864018536, "zar": 0.15998128771221062, "bits": 2.2247380316441228, "link": 0.021740256244719394, "sats": 222.4738031644123}, "market_cap": {"aed": 83584849.24619408, "ars": 959271984.1253883, "aud": 31735008.34611147, "bch": 79011.1325811942, "bdt": 1912644720.9004738, "bhd": 8567340.60481829, "bmd": 22756369.125714995, "bnb": 1180200.8268879368, "brl": 88314669.54349755, "btc": 4422.872239833092, "cad": 30336015.041369904, "chf": 22815535.68544185, "clp": 15044041357.886969, "cny": 152563249.89261818, "czk": 515538738.3887048, "dkk": 150271387.68886033, "eos": 4107739.22919234, "eth": 135857.137743212, "eur": 20132832.841949567, "gbp": 17396880.094703116, "hkd": 178459542.83029965, "huf": 6472332212.887566, "idr": 320968346152.10345, "ils": 81115123.26134948, "inr": 1574076780.9174957, "jpy": 2549669109.5833583, "krw": 25815526874.365807, "kwd": 6916229.486532915, "lkr": 3971080714.830922, "ltc": 274363.01267856447, "mmk": 34502035393.28282, "mxn": 426896627.4498572, "myr": 93631080.76775412, "ngn": 8194759334.3250885, "nok": 193192812.6752067, "nzd": 33622444.35776736, "php": 1175857479.5198047, "pkr": 3221091274.8764906, "pln": 86131719.3223748, "rub": 1465114210.8732593, "sar": 85340935.49525619, "sek": 210796138.55061862, "sgd": 30787046.277441554, "thb": 722514719.7414528, "try": 131651421.0227573, "twd": 701922071.704946, "uah": 609163765.9622715, "usd": 22756369.125714995, "vef": 5654676510014.82, "vnd": 528400773527.92737, "xag": 1519626.6379865236, "xau": 17639.14440041545, "xdr": 16319593.580291757, "xlm": 194624505.75561038, "xrp": 69344727.19209276, "zar": 317979638.4129775, "bits": 4422872239.833092, "link": 43220538.53710028, "sats": 442287223983.3092}, "total_volume": {"aed": 11843963.771602554, "ars": 135928732.6538037, "aud": 4496847.12639431, "bch": 11189.165440935141, "bdt": 271021542.6191444, "bhd": 1213991.203639909, "bmd": 3224574.955017413, "bnb": 167047.45227718813, "brl": 12514178.777703123, "btc": 626.5828573565201, "cad": 4298609.931884702, "chf": 3232958.8499004575, "clp": 2131738974.5656233, "cny": 21618195.413427755, "czk": 73051781.45800805, "dkk": 21293438.795983054, "eos": 581781.2069075292, "eth": 19243.053248878055, "eur": 2852820.157603363, "gbp": 2465135.959911534, "hkd": 25287697.220738433, "huf": 917128749.2715923, "idr": 45481178681.79083, "ils": 11494003.87630948, "inr": 223046503.46374214, "jpy": 361287827.1100609, "krw": 3658057265.1896386, "kwd": 980028.9432036659, "lkr": 562701692.2891518, "ltc": 38828.001139309454, "mmk": 4888934548.903292, "mxn": 60491204.27127705, "myr": 13267513.652419167, "ngn": 1161196479.3627682, "nok": 27375399.906740144, "nzd": 4764296.597738405, "php": 166618873.08045405, "pkr": 456428272.69200855, "pln": 12204854.975993164, "rub": 207606519.49890432, "sar": 12092800.996306293, "sek": 29869789.210643586, "sgd": 4362521.00749315, "thb": 102380254.82180305, "try": 18654991.605964214, "twd": 99462278.90265846, "uah": 86318437.37348905, "usd": 3224574.955017413, "vef": 801267027801.6523, "vnd": 74874330395.90652, "xag": 215330.92431214915, "xau": 2499.464784882645, "xdr": 2312484.581541007, "xlm": 27575251.06975982, "xrp": 9822592.115742242, "zar": 45057679.13007362, "bits": 626582857.35652, "link": 6123000.408912074, "sats": 62658285735.65201}}, "community_data": {"facebook_likes": null, "twitter_followers": 12503, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.174, "reddit_subscribers": 1495, "reddit_accounts_active_48h": "11.875"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 720370, "bing_matches": null}}, "GVT_20190902": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 4.538453022331721, "ars": 71.51572421440231, "aud": 1.8354425798105212, "bch": 0.004418558580346659, "bdt": 104.4203213190321, "bhd": 0.4658523970716016, "bmd": 1.2355647658886728, "bnb": 0.05672574253562453, "brl": 5.150575283083523, "btc": 0.000130264666282345, "cad": 1.641531809887183, "chf": 1.218662239891316, "clp": 890.7202274298683, "cny": 8.827492469891622, "czk": 28.930748993283242, "dkk": 8.329594465051935, "eos": 0.38668430264549664, "eth": 0.007319030816968277, "eur": 1.1171519454202001, "gbp": 1.0139748740799013, "hkd": 9.694132423463127, "huf": 370.2543986194806, "idr": 17594.604715839032, "ils": 4.3638294184039115, "inr": 88.57747002975084, "jpy": 131.5654074013583, "krw": 1492.747571908397, "kwd": 0.37534974909978813, "lkr": 222.94530635695264, "ltc": 0.01939966452261351, "mmk": 1880.2947422431573, "mxn": 24.88730151867425, "myr": 5.211596120176464, "ngn": 448.20111882611604, "nok": 11.237733370005982, "nzd": 1.9564315528158631, "php": 64.47153843345971, "pkr": 195.5023132539227, "pln": 4.900682309182539, "rub": 82.19693450255674, "sar": 4.633738541512294, "sek": 12.083704796173699, "sgd": 1.7150256732917768, "thb": 37.856468862063096, "try": 7.208330560090856, "twd": 38.654467015065585, "uah": 31.16931434700124, "usd": 1.2355647658886728, "vef": 307022.57551172964, "vnd": 28706.654552386968, "xag": 0.06768223626046077, "xau": 0.0008085782940928657, "xdr": 0.90207100879813, "xlm": 19.84664270984476, "xrp": 4.828832450418628, "zar": 18.936882148827994, "bits": 130.264666282345, "link": 0.6939032293172016, "sats": 13026.466628234499}, "market_cap": {"aed": 20131588.127515253, "ars": 317228160.66202855, "aud": 8141623.118413457, "bch": 19567.671107914517, "bdt": 463185779.51425743, "bhd": 2066419.667652057, "bmd": 5480695.922012902, "bnb": 251392.48514974234, "brl": 22846829.020502962, "btc": 576.9918634870306, "cad": 7281477.219716865, "chf": 5405720.001799763, "clp": 3951040732.8733606, "cny": 39156832.014821194, "czk": 128330495.01393239, "dkk": 36948265.01773582, "eos": 1712587.6727817997, "eth": 32410.519646264253, "eur": 4955442.466934953, "gbp": 4497771.473271343, "hkd": 43001057.9028721, "huf": 1642367788.920884, "idr": 78045830520.40192, "ils": 19356995.892161287, "inr": 392910345.27445984, "jpy": 583595463.1677771, "krw": 6621502778.179893, "kwd": 1664969.6527564542, "lkr": 988936772.1680099, "ltc": 85887.99796762623, "mmk": 8340577532.23668, "mxn": 110394643.57434854, "myr": 23117504.15000342, "ngn": 1988122445.71018, "nok": 49848135.16381018, "nzd": 8678303.824488817, "php": 285981688.32049567, "pkr": 867205637.9207306, "pln": 21738358.270275872, "rub": 364607680.76864624, "sar": 20554253.916325, "sek": 53600679.97047764, "sgd": 7607479.974550007, "thb": 167923042.35455334, "try": 31974582.79477241, "twd": 171462788.1806568, "uah": 138260282.8680372, "usd": 5480695.922012902, "vef": 1361885207500.8506, "vnd": 127336460931.48338, "xag": 300223.6438804735, "xau": 3586.6770252836845, "xdr": 4001390.3243105533, "xlm": 87938129.85441127, "xrp": 21397558.119495068, "zar": 83999880.5680349, "bits": 576991863.4870306, "link": 3073561.9165952164, "sats": 57699186348.703064}, "total_volume": {"aed": 1250387.4129669303, "ars": 19703269.141906958, "aud": 505682.0656126384, "bch": 1217.3553422580012, "bdt": 28768801.790571216, "bhd": 128346.81128847164, "bmd": 340409.964269915, "bnb": 15628.487087722779, "brl": 1419032.977055568, "btc": 35.88916713962115, "cad": 452257.7854101526, "chf": 335753.1559587026, "clp": 245401980.66898575, "cny": 2432058.9897264075, "czk": 7970699.3133800505, "dkk": 2294883.305604632, "eos": 106535.2406295072, "eth": 2016.4633110936936, "eur": 307786.0945241791, "gbp": 279359.82004785584, "hkd": 2670826.623584897, "huf": 102008644.21233632, "idr": 4847482647.624883, "ils": 1202276.9323067, "inr": 24403944.04275508, "jpy": 36247533.81538927, "krw": 411266298.332697, "kwd": 103412.46222562893, "lkr": 61423573.9528636, "ltc": 5344.793967349358, "mmk": 518039267.301002, "mxn": 6856690.6848085355, "myr": 1435844.8039609652, "ngn": 123483714.53891167, "nok": 3096103.515227018, "nzd": 539015.6901338747, "php": 17762528.27894084, "pkr": 53862765.681560345, "pln": 1350185.0617819778, "rub": 22646045.201027527, "sar": 1276639.4890014632, "sek": 3329176.7712031994, "sgd": 472506.0509048567, "thb": 10429820.895265939, "try": 1985964.326719362, "twd": 10649677.053559393, "uah": 8587445.576395188, "usd": 340409.964269915, "vef": 84587669416.77428, "vnd": 7908959141.820755, "xag": 18647.10637856383, "xau": 222.77108881751786, "xdr": 248529.22999389385, "xlm": 5467940.7524839975, "xrp": 1330389.7353613267, "zar": 5217292.976972892, "bits": 35889167.13962115, "link": 191177.00667739048, "sats": 3588916713.9621153}}, "community_data": {"facebook_likes": null, "twitter_followers": 21302, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.5, "reddit_subscribers": 5710, "reddit_accounts_active_48h": "1350.96"}, "developer_data": {"forks": 1, "stars": 14, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 194896, "bing_matches": null}}, "QKC_20190911": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.03930388533934819, "ars": 0.593956666136311, "aud": 0.015626026794135887, "bch": 3.565424142628806e-05, "bdt": 0.9048516898896999, "bhd": 0.00403479746142527, "bmd": 0.010700705888005011, "bnb": 0.0004776144661542244, "brl": 0.043465197246487335, "btc": 1.0221518938612362e-06, "cad": 0.014094434760385702, "chf": 0.010567482099699332, "clp": 7.615619358876154, "cny": 0.07614301288727694, "czk": 0.25087162912074423, "dkk": 0.07241381688530721, "eos": 0.0029954088618900873, "eth": 6.016716917840605e-05, "eur": 0.009617312920373901, "gbp": 0.008710695614012685, "hkd": 0.08389192905607572, "huf": 3.2029352863976444, "idr": 149.49742182013966, "ils": 0.037647758490473436, "inr": 0.7670158973463084, "jpy": 1.1442799841338156, "krw": 12.763534465565117, "kwd": 0.0032519766214823783, "lkr": 1.9179995419970768, "ltc": 0.00015582863971722697, "mmk": 16.32779159539646, "mxn": 0.20905862086336405, "myr": 0.044734300964804824, "ngn": 3.8408043643816385, "nok": 0.09605167619191018, "nzd": 0.016651368432324485, "php": 0.5524370712343813, "pkr": 1.6717177773535814, "pln": 0.04208962150458433, "rub": 0.7039726886071265, "sar": 0.0401190865153082, "sek": 0.10323077977217276, "sgd": 0.014783025184278816, "thb": 0.3252265540541346, "try": 0.06115374229771273, "twd": 0.3338061767217253, "uah": 0.26813513143339157, "usd": 0.010700705888005011, "vef": 2658.9931764247403, "vnd": 245.96482043579857, "xag": 0.0005890848808617385, "xau": 7.104198639046502e-06, "xdr": 0.007816084499657806, "xlm": 0.180603644748328, "xrp": 0.04124735394281299, "zar": 0.1584466361683962, "bits": 1.0221518938612362, "link": 0.0060579710380570945, "sats": 102.21518938612363}, "market_cap": {"aed": 149383467.07887962, "ars": 2257469085.205867, "aud": 59390313.17187818, "bch": 135519.59293412752, "bdt": 3439097215.475137, "bhd": 15335176.879964981, "bmd": 40670496.87174946, "bnb": 1815115.7667467012, "brl": 165199491.24335942, "btc": 3884.532730261799, "cad": 53569144.954624996, "chf": 40164149.18569603, "clp": 28944915088.15347, "cny": 289399054.59030795, "czk": 953495396.8600459, "dkk": 275225386.43050313, "eos": 11381810.219230276, "eth": 228677.62299102813, "eur": 36552812.41596922, "gbp": 33107004.56851024, "hkd": 318850594.8999852, "huf": 12173493123.652061, "idr": 568199377695.8392, "ils": 143088975.61903247, "inr": 2915220545.2701335, "jpy": 4349099582.980537, "krw": 48510751906.200905, "kwd": 12359886.010815283, "lkr": 7289798933.755416, "ltc": 592626.462287087, "mmk": 62057531900.53839, "mxn": 794575430.3336827, "myr": 170023012.17234898, "ngn": 14597861442.177034, "nok": 365066514.0201979, "nzd": 63287360.18212949, "php": 2099664303.7037282, "pkr": 6353748373.789073, "pln": 159971298.87049595, "rub": 2675610312.9502206, "sar": 152481826.87156317, "sek": 392352350.37145615, "sgd": 56186291.42832185, "thb": 1236098411.4230814, "try": 232428880.00527993, "twd": 1268707243.0754118, "uah": 1019109312.8157203, "usd": 40670496.87174946, "vef": 10106115876431.008, "vnd": 934845940519.5028, "xag": 2238952.7434015865, "xau": 27001.142873154502, "xdr": 29706829.018541373, "xlm": 686358308.0050657, "xrp": 156776455.14605832, "zar": 602212927.639618, "bits": 3884532730.261799, "link": 23022397.07976856, "sats": 388453273026.1799}, "total_volume": {"aed": 21981628.93379344, "ars": 332184335.5952032, "aud": 8739225.644807594, "bch": 19940.479120112042, "bdt": 506059742.32676643, "bhd": 2256556.059389646, "bmd": 5984623.253627822, "bnb": 267117.2042602981, "brl": 24308941.193910725, "btc": 571.6626600866358, "cad": 7882646.518515829, "chf": 5910114.694120145, "clp": 4259215530.53782, "cny": 42584783.68583931, "czk": 140305901.40735182, "dkk": 40499142.48195002, "eos": 1675253.3633397876, "eth": 33649.91464475987, "eur": 5378710.072314248, "gbp": 4871662.867150636, "hkd": 46918548.61495387, "huf": 1791317432.2758708, "idr": 83609974551.78314, "ils": 21055400.76207597, "inr": 428971810.19678706, "jpy": 639965687.6266909, "krw": 7138309001.345891, "kwd": 1818744.960647251, "lkr": 1072686678.768555, "ltc": 87150.85813902071, "mmk": 9131704233.805103, "mxn": 116920986.04380079, "myr": 25018717.511791036, "ngn": 2148060824.424634, "nok": 53719175.24921383, "nzd": 9312672.244970191, "php": 308963518.6012674, "pkr": 934947767.7980055, "pln": 23539617.874656893, "rub": 393713402.29803854, "sar": 22437549.50250132, "sek": 57734258.99007274, "sgd": 8267757.024886775, "thb": 181890654.5475094, "try": 34201679.032362126, "twd": 186689011.76442647, "uah": 149960924.02554554, "usd": 5984623.253627822, "vef": 1487104921994.6333, "vnd": 137561652414.40027, "xag": 329459.6742741617, "xau": 3973.191378083496, "xdr": 4371330.409277591, "xlm": 101006866.5902086, "xrp": 23068559.788516656, "zar": 88615034.67125727, "bits": 571662660.0866358, "link": 3388063.808463341, "sats": 57166266008.66358}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9239, "reddit_accounts_active_48h": "14.0416666666667"}, "developer_data": {"forks": 103, "stars": 181, "subscribers": 34, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 498, "pull_request_contributors": 12, "code_additions_deletions_4_weeks": {"additions": 1775, "deletions": -780}, "commit_count_4_weeks": 29}, "public_interest_stats": {"alexa_rank": 312593, "bing_matches": null}}, "PPT_20191008": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 1.5385666207644957, "ars": 24.147599211556013, "aud": 0.6185612657295398, "bch": 0.0018870113586235224, "bdt": 35.43551547179219, "bhd": 0.15790746271294195, "bmd": 0.4188649077637331, "bnb": 0.026764139329923047, "brl": 1.6994605902697966, "btc": 5.133588399948428e-05, "cad": 0.5574237437923462, "chf": 0.41706588298488795, "clp": 299.61565727799365, "cny": 2.994255793149048, "czk": 9.812769137426363, "dkk": 2.849160989099689, "eos": 0.13902402760382607, "eth": 0.002379724386918852, "eur": 0.3814895920439751, "gbp": 0.33962823316206786, "hkd": 3.2838548017278133, "huf": 126.90350110517807, "idr": 5915.796638310321, "ils": 1.4567702627114862, "inr": 29.666107092366424, "jpy": 44.79767687471572, "krw": 499.39168628131074, "kwd": 0.12743001429423725, "lkr": 76.06000062799595, "ltc": 0.0074175912024028, "mmk": 642.4305664888628, "mxn": 8.174250040316956, "myr": 1.753197188151713, "ngn": 152.13789348939162, "nok": 3.810288825319259, "nzd": 0.6630840922353767, "php": 21.646765860887736, "pkr": 65.49999995155397, "pln": 1.648380014768007, "rub": 27.08409814143844, "sar": 1.5711832122671507, "sek": 4.122426535719886, "sgd": 0.5775267461755585, "thb": 12.742289359080532, "try": 2.383248337166116, "twd": 12.938737000821735, "uah": 10.301607522356587, "usd": 0.4188649077637331, "vef": 104082.75334770416, "vnd": 9725.801571655364, "xag": 0.023863550581870015, "xau": 0.00027840693824332047, "xdr": 0.30632386548086565, "xlm": 7.136200700873062, "xrp": 1.6631357945692957, "zar": 6.299388932191236, "bits": 51.33588399948428, "link": 0.21222886176905886, "sats": 5133.588399948428}, "market_cap": {"aed": 55838748.14739692, "ars": 876381752.0416256, "aud": 22449263.011857413, "bch": 68347.01948649618, "bdt": 1286050793.7702472, "bhd": 5730889.336882383, "bmd": 15201741.527955426, "bnb": 969815.9361038939, "brl": 61678025.901373625, "btc": 1862.087449974593, "cad": 20230416.818436917, "chf": 15136450.048092864, "clp": 10873863375.15214, "cny": 108669649.3125894, "czk": 356131958.8624882, "dkk": 103403766.04730564, "eos": 5035547.547957946, "eth": 86208.06726062795, "eur": 13845290.13141596, "gbp": 12326028.083112102, "hkd": 119179981.38760254, "huf": 4605671630.724665, "idr": 214700276295.92603, "ils": 52870136.86007625, "inr": 1076663343.7174444, "jpy": 1625828977.9826188, "krw": 18124276336.704857, "kwd": 4624780.219825294, "lkr": 2760423345.8848724, "ltc": 268596.52634504024, "mmk": 23315544559.608673, "mxn": 296665664.7395008, "myr": 63628272.52373644, "ngn": 5521496049.360838, "nok": 138285697.35909367, "nzd": 24065116.92582977, "php": 785619739.0472267, "pkr": 2377172331.434026, "pln": 59824173.52203939, "rub": 982955248.4166685, "sar": 57022492.558437236, "sek": 149614019.94398457, "sgd": 20960009.201329622, "thb": 462452179.0219321, "try": 86494534.50744721, "twd": 469581795.7985426, "uah": 373873227.3213963, "usd": 15201741.527955426, "vef": 3777444910238.742, "vnd": 352975670446.6719, "xag": 866072.8582436007, "xau": 10104.14154138614, "xdr": 11117322.41248284, "xlm": 258219365.96368027, "xrp": 60322155.58458417, "zar": 228621879.1698116, "bits": 1862087449.974593, "link": 7698098.663822119, "sats": 186208744997.4593}, "total_volume": {"aed": 4787605.623602232, "ars": 75140835.77628477, "aud": 1924796.3360064065, "bch": 5871.871955637672, "bdt": 110265796.00673935, "bhd": 491365.5647342679, "bmd": 1303394.965726501, "bnb": 83282.80507160873, "brl": 5288264.39444214, "btc": 159.74346746610138, "cad": 1734552.8068089688, "chf": 1297796.884348706, "clp": 932323362.761272, "cny": 9317318.9124959, "czk": 30534699.031823028, "dkk": 8865822.896368235, "eos": 432605.3921806679, "eth": 7405.062415675527, "eur": 1187093.0329347253, "gbp": 1056831.7400600193, "hkd": 10218473.15784954, "huf": 394889572.7661576, "idr": 18408368458.941708, "ils": 4533077.351300195, "inr": 92312948.44757953, "jpy": 139398324.9312501, "krw": 1553972647.887421, "kwd": 396527.9402380763, "lkr": 236678270.42604315, "ltc": 23081.549329700352, "mmk": 1999071181.8301153, "mxn": 25436068.177734453, "myr": 5455478.237990157, "ngn": 473412216.6714412, "nok": 11856594.28811923, "nzd": 2063339.4004933345, "php": 67358914.83001973, "pkr": 203818387.76548228, "pln": 5129315.378371786, "rub": 84278430.86035165, "sar": 4889099.686188391, "sek": 12827882.913183656, "sgd": 1797107.9447940455, "thb": 39650578.25236592, "try": 7416028.001301395, "twd": 40261870.49129169, "uah": 32055832.643549033, "usd": 1303394.965726501, "vef": 323877541942.16785, "vnd": 30264079351.57197, "xag": 74256.95281762195, "xau": 866.3275318694334, "xdr": 953197.5029401395, "xlm": 22205937.7511243, "xrp": 5175231.397479353, "zar": 19602004.534604274, "bits": 159743467.46610138, "link": 660399.1522910945, "sats": 15974346746.610138}}, "community_data": {"facebook_likes": null, "twitter_followers": 23953, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 886383, "bing_matches": null}}, "PPT_20191011": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 1.8115166444290296, "ars": 28.5239398554452, "aud": 0.7324942823140302, "bch": 0.002116238622111636, "bdt": 41.72595204077171, "bhd": 0.18593392149731042, "bmd": 0.49317380342243733, "bnb": 0.030693017298709678, "brl": 2.025218223754239, "btc": 6.019745656194525e-05, "cad": 0.656044452002694, "chf": 0.49063691737763243, "clp": 354.5525107564584, "cny": 3.525421863815675, "czk": 11.582664658791485, "dkk": 3.3571322214834134, "eos": 0.1546043389139491, "eth": 0.0027365654151918295, "eur": 0.44945542527044857, "gbp": 0.40135075931082076, "hkd": 3.868025759662819, "huf": 149.84106327230262, "idr": 6983.3386926796475, "ils": 1.730246040189242, "inr": 35.05997227220275, "jpy": 52.898205868968375, "krw": 590.2248158382157, "kwd": 0.14995442666862632, "lkr": 89.12875326349501, "ltc": 0.008570460323313414, "mmk": 755.2190284030661, "mxn": 9.653570941062272, "myr": 2.067642020672242, "ngn": 178.40510703509452, "nok": 4.505955444692005, "nzd": 0.7839357622276107, "php": 25.592164614501794, "pkr": 77.20111698142624, "pln": 1.945795048582073, "rub": 32.046384429009606, "sar": 1.8498860595091011, "sek": 4.88856707899418, "sgd": 0.6812757169595913, "thb": 15.03144435451248, "try": 2.8805157421632726, "twd": 15.190246319214468, "uah": 12.25561954733969, "usd": 0.49317380342243733, "vef": 122547.59562746795, "vnd": 11448.029031591494, "xag": 0.02831731975876333, "xau": 0.00033050535610158077, "xdr": 0.3606880860448368, "xlm": 8.100770501330823, "xrp": 1.7986681617376954, "zar": 7.48753630804301, "bits": 60.19745656194525, "link": 0.2060412069798693, "sats": 6019.7456561945255}, "market_cap": {"aed": 65625631.3477082, "ars": 1033333901.3441141, "aud": 26535996.72035909, "bch": 76664.76379644498, "bdt": 1511601869.4506207, "bhd": 6735809.480272346, "bmd": 17866157.792852644, "bnb": 1111912.851802044, "brl": 73367376.97634938, "btc": 2180.7672066126943, "cad": 23766456.403942112, "chf": 17774254.277166214, "clp": 12844338160.437614, "cny": 127715103.41426608, "czk": 419604028.07204646, "dkk": 121618491.46134876, "eos": 5600835.841903551, "eth": 99137.28016165785, "eur": 16282376.502989639, "gbp": 14539693.605717005, "hkd": 140126580.30369863, "huf": 5428277134.133721, "idr": 252984708714.29822, "ils": 62681449.33886618, "inr": 1270114090.5727897, "jpy": 1916337985.6254454, "krw": 21382015062.12282, "kwd": 5432383.938494775, "lkr": 3228858383.4649496, "ltc": 310481.2044579373, "mmk": 27359243812.17888, "mxn": 349718943.9111007, "myr": 74904259.6020061, "ngn": 6463063875.697234, "nok": 163236794.8657515, "nzd": 28399562.041258037, "php": 927124774.4513646, "pkr": 2796757103.0799103, "pln": 70490121.59459946, "rub": 1160941146.7637846, "sar": 67015636.29015, "sek": 177097628.07381338, "sgd": 24680506.902782317, "thb": 544542623.3683562, "try": 104352154.18407542, "twd": 550295526.1776534, "uah": 443983097.16054636, "usd": 17866157.792852644, "vef": 4439519425851.623, "vnd": 414726596741.7487, "xag": 1025848.6958752203, "xau": 11973.184306458135, "xdr": 13066611.029538488, "xlm": 293465798.49962467, "xrp": 65160170.65703665, "zar": 271250225.03399986, "bits": 2180767206.6126943, "link": 7464234.089860984, "sats": 218076720661.26944}, "total_volume": {"aed": 5804780.962191362, "ars": 91401436.22128697, "aud": 2347187.301848216, "bch": 6781.224838792239, "bdt": 133705650.88675925, "bhd": 595802.247278471, "bmd": 1580314.436503774, "bnb": 98351.97652512662, "brl": 6489561.233502747, "btc": 192.89530178910323, "cad": 2102213.2791591347, "chf": 1572185.2990423988, "clp": 1136119654.6912923, "cny": 11296778.18953772, "czk": 37115215.86598019, "dkk": 10757514.851854058, "eos": 495410.47605595563, "eth": 8768.985299002683, "eur": 1440224.302651024, "gbp": 1286078.8522000099, "hkd": 12394609.986061415, "huf": 480147148.5853907, "idr": 22377244846.446266, "ils": 5544359.365885466, "inr": 112345343.44827145, "jpy": 169505756.02304208, "krw": 1891302398.4223204, "kwd": 480510.40756333753, "lkr": 285602062.6246343, "ltc": 27462.97974958253, "mmk": 2420005939.1342373, "mxn": 30933673.71929626, "myr": 6625503.041959669, "ngn": 571677092.8160251, "nok": 14438776.735653335, "nzd": 2512025.1597766033, "php": 82006925.18745859, "pkr": 247381427.87252104, "pln": 6235059.495075999, "rub": 102688674.05257149, "sar": 5927731.0056658005, "sek": 15664808.3802095, "sgd": 2183063.7460451107, "thb": 48166403.71019857, "try": 9230256.31192701, "twd": 48675264.95875266, "uah": 39271616.54685247, "usd": 1580314.436503774, "vef": 392688608326.23755, "vnd": 36683792656.03805, "xag": 90739.34768496933, "xau": 1059.0635227673697, "xdr": 1155780.3465958354, "xlm": 25957916.82611215, "xrp": 5763609.58904993, "zar": 23992883.724424124, "bits": 192895301.78910324, "link": 660233.5558891037, "sats": 19289530178.910324}}, "community_data": {"facebook_likes": null, "twitter_followers": 23954, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 886383, "bing_matches": null}}, "MDA_20191020": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 3.1696933756551466, "ars": 49.8293885545387, "aud": 1.2770821632965035, "bch": 0.003972078109449422, "bdt": 73.07180811010048, "bhd": 0.32529914540478355, "bmd": 0.8629242555959793, "bnb": 0.04856733146193122, "brl": 3.5812219531488774, "btc": 0.00010777951245503568, "cad": 1.1393102654208105, "chf": 0.8581039607042203, "clp": 618.8031286591512, "cny": 6.121325791921199, "czk": 20.074293250354838, "dkk": 5.820874550456296, "eos": 0.2943632031864506, "eth": 0.004931025688813204, "eur": 0.7791360362261207, "gbp": 0.6729790943027031, "hkd": 6.769670987499406, "huf": 259.1355283353876, "idr": 12177.7851360871, "ils": 3.049091081693062, "inr": 61.582244330904786, "jpy": 93.78275192175671, "krw": 1023.2210402906843, "kwd": 0.26236003897437915, "lkr": 156.87208339473432, "ltc": 0.016425048601384894, "mmk": 1321.319703438492, "mxn": 16.576645511360372, "myr": 3.6169470173305442, "ngn": 312.3701851356618, "nok": 7.918967012405975, "nzd": 1.3723343314019556, "php": 44.49722684161791, "pkr": 134.67628999907194, "pln": 3.337086874452679, "rub": 55.32768303391955, "sar": 3.236477672568486, "sek": 8.43722810230159, "sgd": 1.1828422053428602, "thb": 26.20700877952561, "try": 5.07318692580112, "twd": 26.473653237428998, "uah": 21.41957145464683, "usd": 0.8629242555959793, "vef": 214426.01370561536, "vnd": 19931.860693397128, "xag": 0.04959192042864125, "xau": 0.0005790308047474579, "xdr": 0.628911278417928, "xlm": 13.881391596011897, "xrp": 3.0427969360557943, "zar": 12.895453783200741, "bits": 107.77951245503569, "link": 0.3627222790456713, "sats": 10777.951245503567}, "market_cap": {"aed": 62219542.81765019, "ars": 978126716.7855396, "aud": 25068503.140137352, "bch": 77965.08022776648, "bdt": 1434364133.8903277, "bhd": 6385464.367471973, "bmd": 16938784.38899329, "bnb": 953300.9403939462, "brl": 70297649.09276108, "btc": 2115.5270843571284, "cad": 22364107.64094389, "chf": 16844164.33939636, "clp": 12146805131.062866, "cny": 120158654.82020172, "czk": 394048635.1195898, "dkk": 114260942.74921077, "eos": 5777237.353741256, "eth": 96782.10356492233, "eur": 15294062.302390818, "gbp": 13210253.046856852, "hkd": 132885356.38910589, "huf": 5086704671.3960085, "idr": 239044012748.49115, "ils": 59852178.31144436, "inr": 1208829572.4067504, "jpy": 1840909910.582985, "krw": 20085332485.867928, "kwd": 5150000.250491955, "lkr": 3079322872.2494864, "ltc": 322380.02279601916, "mmk": 25936864586.12206, "mxn": 325391507.29490376, "myr": 70998914.7664654, "ngn": 6131675151.382251, "nok": 155445479.64299932, "nzd": 26938256.977347624, "php": 873458969.8811123, "pkr": 2643630218.770778, "pln": 65505395.9685645, "rub": 1086055569.276888, "sar": 63530486.15786746, "sek": 165618693.34283164, "sgd": 23218618.49701555, "thb": 514430864.95494175, "try": 99584197.5050923, "twd": 519664966.26992536, "uah": 420455793.45120424, "usd": 16938784.38899329, "vef": 4209078595249.6025, "vnd": 391252753144.27875, "xag": 973465.3327095329, "xau": 11366.093712858386, "xdr": 12345223.20567975, "xlm": 272563426.39157593, "xrp": 59711415.927649915, "zar": 253131500.03067607, "bits": 2115527084.3571284, "link": 7119616.594489518, "sats": 211552708435.71283}, "total_volume": {"aed": 32465412.298220087, "ars": 510374806.7293537, "aud": 13080444.717008065, "bch": 40683.794367761584, "bdt": 748434027.0549041, "bhd": 3331858.8343398008, "bmd": 8838454.834536681, "bnb": 497448.25548307545, "brl": 36680471.40881071, "btc": 1103.9258043155824, "cad": 11669323.533490382, "chf": 8789083.225830961, "clp": 6338057446.706661, "cny": 62697347.05975287, "czk": 205609858.66131037, "dkk": 59619991.53237349, "eos": 3014999.125868945, "eth": 50505.76288229984, "eur": 7980258.547012836, "gbp": 6892951.833268131, "hkd": 69337987.5228595, "huf": 2654181578.9316134, "idr": 124730303050.36598, "ils": 31230149.850545336, "inr": 630752793.884776, "jpy": 960564744.5227137, "krw": 10480285948.285017, "kwd": 2687208.454073194, "lkr": 1606753796.6312454, "ltc": 168232.66848391818, "mmk": 13533545319.987328, "mxn": 169785391.60322395, "myr": 37046383.43896047, "ngn": 3199434660.775193, "nok": 81109589.65569516, "nzd": 14056059.877008738, "php": 455760429.90024585, "pkr": 1379414587.920766, "pln": 34179931.120842874, "rub": 566690789.3985705, "sar": 33149446.83322938, "sek": 86417850.72940497, "sgd": 12115197.06452825, "thb": 268423864.48642388, "try": 51961841.63335055, "twd": 271154955.86875033, "uah": 219388797.625437, "usd": 8838454.834536681, "vef": 2196246802887.5918, "vnd": 204151000930.20065, "xag": 507942.5523434376, "xau": 5930.691578522456, "xdr": 6441589.621778017, "xlm": 142179399.71699163, "xrp": 31165682.405603066, "zar": 132080985.20183256, "bits": 1103925804.3155823, "link": 3715163.2487271046, "sats": 110392580431.55824}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 368, "reddit_accounts_active_48h": "17.7777777777778"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2061213, "bing_matches": null}}, "MDA_20191027": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.330456741596903, "ars": 37.378673444311694, "aud": 0.926032016635211, "bch": 0.0030248958754438347, "bdt": 53.72910781918386, "bhd": 0.23921158175970128, "bmd": 0.6344831858417931, "bnb": 0.03807766179026802, "brl": 2.560012758234468, "btc": 8.49850129020445e-05, "cad": 0.8296400620757549, "chf": 0.6283870713922245, "clp": 460.9524520039985, "cny": 4.483004397883766, "czk": 14.591527066396603, "dkk": 4.2576676944320555, "eos": 0.23372627202533688, "eth": 0.003924846295906581, "eur": 0.5699226182328325, "gbp": 0.49105699271588354, "hkd": 4.97545852257488, "huf": 187.0202638587272, "idr": 8880.97293674419, "ils": 2.2395987493843608, "inr": 44.87382649107674, "jpy": 68.928106009372, "krw": 742.2342700359802, "kwd": 0.19255359172245276, "lkr": 115.13953620358967, "ltc": 0.012847986297707389, "mmk": 973.771628559375, "mxn": 12.129097822144658, "myr": 2.6567708095921536, "ngn": 230.00015486765, "nok": 5.790693278399279, "nzd": 0.9879531341910723, "php": 32.33935165114906, "pkr": 99.0111011506121, "pln": 2.4356312124147834, "rub": 40.567839729626876, "sar": 2.379803671375751, "sek": 6.117249084488332, "sgd": 0.86437547856785, "thb": 19.212150867289495, "try": 3.6409678033230386, "twd": 19.40630272215708, "uah": 15.849285292602278, "usd": 0.6344831858417931, "vef": 157661.23089138503, "vnd": 14689.407461406556, "xag": 0.036128183222999787, "xau": 0.0004251037345140013, "xdr": 0.4609742414255667, "xlm": 10.55928115179037, "xrp": 2.318079350880248, "zar": 9.291752463378728, "bits": 84.9850129020445, "link": 0.24326774789706748, "sats": 8498.501290204451}, "market_cap": {"aed": 45771923.41370499, "ars": 734145263.3128749, "aud": 18187965.38356734, "bch": 59424.83679348149, "bdt": 1055280093.506994, "bhd": 4698295.404734061, "bmd": 12461727.038852444, "bnb": 748103.5719135867, "brl": 50280576.25636172, "btc": 1669.8026521268234, "cad": 16294754.888370825, "chf": 12341994.765463142, "clp": 9053452893.542696, "cny": 88049578.56571572, "czk": 286588567.5760086, "dkk": 83623796.20786726, "eos": 4591486.511583888, "eth": 77114.88774840732, "eur": 11193708.92746808, "gbp": 9644728.718265774, "hkd": 97721748.00692107, "huf": 3673218661.972142, "idr": 174428988894.81088, "ils": 43987404.10174128, "inr": 881355707.1314737, "jpy": 1353799850.9042587, "krw": 14578039384.603382, "kwd": 3781897.3834779738, "lkr": 2261427100.933421, "ltc": 252392.78813802073, "mmk": 19125607272.296734, "mxn": 238224604.9382226, "myr": 52180977.16805985, "ngn": 4517376051.584011, "nok": 113733571.84460184, "nzd": 19404142.710470058, "php": 635169192.6325858, "pkr": 1944652504.4129157, "pln": 47837629.13457329, "rub": 796782888.1009625, "sar": 46741134.23415177, "sek": 120147373.5169584, "sgd": 16976984.59683991, "thb": 377341094.7364514, "try": 71511346.4544598, "twd": 381154383.21034145, "uah": 311291885.2455733, "usd": 12461727.038852444, "vef": 3096585170135.3545, "vnd": 288511012161.28284, "xag": 709584.6947265407, "xau": 8349.357116031139, "xdr": 9053880.854172649, "xlm": 207766631.63803765, "xrp": 45532796.518675916, "zar": 182497007.79317778, "bits": 1669802652.1268234, "link": 4779773.712379709, "sats": 166980265212.68234}, "total_volume": {"aed": 14966730.535275698, "ars": 240054459.37766474, "aud": 5947191.128945846, "bch": 19426.57877185585, "bdt": 345060718.90417105, "bhd": 1536271.9338275478, "bmd": 4074797.3142596562, "bnb": 244543.5237033376, "brl": 16440992.20357487, "btc": 545.7933481186394, "cad": 5328139.771368897, "chf": 4035646.6616642457, "clp": 2960342930.02627, "cny": 28790887.90363298, "czk": 93710151.23468623, "dkk": 27343723.637473676, "eos": 1501044.0099483426, "eth": 25206.26787646647, "eur": 3660174.4631417897, "gbp": 3153681.2317766286, "hkd": 31953541.839095652, "huf": 1201087256.351178, "idr": 57035655913.63261, "ils": 14383219.55987373, "inr": 288190060.4250007, "jpy": 442672189.76237404, "krw": 4766799621.461094, "kwd": 1236623.563728832, "lkr": 739452649.5844386, "ltc": 82512.73040448547, "mmk": 6253785924.195294, "mxn": 77895862.85804485, "myr": 17062394.71920214, "ngn": 1477114026.4191253, "nok": 37189167.41224157, "nzd": 6344862.82323641, "php": 207690772.88969937, "pkr": 635872120.8902212, "pln": 15642185.237276644, "rub": 260536020.59805945, "sar": 15283647.896392258, "sek": 39286384.09394473, "sgd": 5551218.6251353575, "thb": 123384862.67578238, "try": 23383134.742338106, "twd": 124631750.6539458, "uah": 101787764.56864904, "usd": 4074797.3142596562, "vef": 1012536777230.3387, "vnd": 94338761700.03065, "xag": 232023.52284693642, "xau": 2730.114200553969, "xdr": 2960482.866715636, "xlm": 67814138.24346273, "xrp": 14887240.078199433, "zar": 59673776.74840699, "bits": 545793348.1186395, "link": 1562321.5680046969, "sats": 54579334811.863945}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 368, "reddit_accounts_active_48h": "18.0"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2061213, "bing_matches": null}}, "QKC_20191030": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.016627133191604224, "ars": 0.271266845473259, "aud": 0.006635642634499575, "bch": 1.7946038017601935e-05, "bdt": 0.3835126202549608, "bhd": 0.0017067291148591779, "bmd": 0.004526976828011714, "bnb": 0.0002401124312592626, "brl": 0.018128731405455706, "btc": 4.89868831965338e-07, "cad": 0.0059124580862247155, "chf": 0.00450192001126867, "clp": 3.291112153964517, "cny": 0.03198580747599954, "czk": 0.1043943491423639, "dkk": 0.030519519681406558, "eos": 0.0014440888951353069, "eth": 2.5225222316018954e-05, "eur": 0.004085533209604976, "gbp": 0.003529258296978899, "hkd": 0.03548267072679722, "huf": 1.3435161830173148, "idr": 63.52150443645532, "ils": 0.015999015156717606, "inr": 0.32069103849634983, "jpy": 0.49192394511918053, "krw": 5.304801714982081, "kwd": 0.001374697999408659, "lkr": 0.8211335462536997, "ltc": 7.974241182532755e-05, "mmk": 6.932204085227704, "mxn": 0.08629187420251078, "myr": 0.01894992500205703, "ngn": 1.6374047843978328, "nok": 0.041632795096492495, "nzd": 0.0071302239069135, "php": 0.23172741047459902, "pkr": 0.7053029898042235, "pln": 0.01748024197484305, "rub": 0.28950288433744603, "sar": 0.016977797343678835, "sek": 0.04384014899783102, "sgd": 0.006171174811945568, "thb": 0.13654266150555858, "try": 0.026143743879450437, "twd": 0.13842137047011424, "uah": 0.11390628799012373, "usd": 0.004526976828011714, "vef": 1124.8977984722703, "vnd": 105.34552118447685, "xag": 0.00025088573485493337, "xau": 3.0091267673476646e-06, "xdr": 0.003289745006962454, "xlm": 0.07207400477103179, "xrp": 0.015401439422023173, "zar": 0.06622016434247237, "bits": 0.48986883196533804, "link": 0.0016478952193934716, "sats": 48.9868831965338}, "market_cap": {"aed": 63231533.48926765, "ars": 1031604091.1208608, "aud": 25234768.653807234, "bch": 68247.21320465847, "bdt": 1458464956.7523332, "bhd": 6490541.57079943, "bmd": 17215696.994001374, "bnb": 913126.5783103216, "brl": 68941980.18217789, "btc": 1862.9283290642927, "cad": 22484561.05901556, "chf": 17120408.11113958, "clp": 12515811714.639002, "cny": 121639228.68081602, "czk": 397002580.53016776, "dkk": 116063064.42445901, "eos": 5491743.783007349, "eth": 95929.31452879534, "eur": 15536925.517328313, "gbp": 13421460.670705428, "hkd": 134937493.8238325, "huf": 5109274553.87972, "idr": 241566726433.06473, "ils": 60842855.53134998, "inr": 1219559975.0550578, "jpy": 1870743744.6692538, "krw": 20173697018.56889, "kwd": 5227856.274774402, "lkr": 3122699068.491218, "ltc": 303253.41871888173, "mmk": 26362565916.705814, "mxn": 328160451.3905556, "myr": 72064907.61688974, "ngn": 6226907204.449312, "nok": 158325878.97503293, "nzd": 27115617.98179583, "php": 881239077.5340974, "pkr": 2682205591.6654077, "pln": 66475831.587787256, "rub": 1100954152.1845846, "sar": 64565078.594119966, "sek": 166720252.82930806, "sgd": 23468438.142222673, "thb": 519259801.08597755, "try": 99422371.71005729, "twd": 526404366.98558044, "uah": 433175652.1516603, "usd": 17215696.994001374, "vef": 4277887955574.866, "vnd": 400619804626.5796, "xag": 954096.5097621053, "xau": 11443.445948882649, "xdr": 12510612.574146802, "xlm": 274091137.2915651, "xrp": 58570327.27014711, "zar": 251829494.058552, "bits": 1862928329.0642927, "link": 6266801.411351959, "sats": 186292832906.42926}, "total_volume": {"aed": 16228856.897985952, "ars": 264769083.4988037, "aud": 6476696.463575873, "bch": 17516.16947535725, "bdt": 374326190.8692802, "bhd": 1665847.157744662, "bmd": 4418540.362652387, "bnb": 234360.9232830169, "brl": 17694486.736277744, "btc": 478.13481020067303, "cad": 5770834.640642166, "chf": 4394083.741745107, "clp": 3212278843.6482863, "cny": 31219638.78635668, "czk": 101893750.03294514, "dkk": 29788473.562893584, "eos": 1409498.063018787, "eth": 24620.99259499922, "eur": 3987670.817728699, "gbp": 3444720.5779659753, "hkd": 34632740.28948755, "huf": 1311334408.8279736, "idr": 61999948732.265564, "ils": 15615784.422667941, "inr": 313009399.2902951, "jpy": 480140696.416808, "krw": 5177733702.650902, "kwd": 1341769.3148459229, "lkr": 801464609.8472308, "ltc": 77832.31031474302, "mmk": 6766154260.6515665, "mxn": 84224890.8307709, "myr": 18496009.958062887, "ngn": 1598183380.3729892, "nok": 40635548.29916891, "nzd": 6959430.835276361, "php": 226176752.21559227, "pkr": 688408588.5012403, "pln": 17061530.82932781, "rub": 282568307.31583786, "sar": 16571121.453017363, "sek": 42790028.579998225, "sgd": 6023354.222367734, "thb": 133272001.16269995, "try": 25517512.448353786, "twd": 135105708.6688221, "uah": 111177845.64965884, "usd": 4418540.362652387, "vef": 1097952676862.1833, "vnd": 102822138275.15942, "xag": 244876.16967924964, "xau": 2937.0479644586662, "xdr": 3210944.4444587613, "xlm": 70347587.64574365, "xrp": 15032522.65575302, "zar": 64633966.57084267, "bits": 478134810.20067304, "link": 1608422.5338325773, "sats": 47813481020.06731}}, "community_data": {"facebook_likes": null, "twitter_followers": 50130, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9232, "reddit_accounts_active_48h": "42.4117647058824"}, "developer_data": {"forks": 106, "stars": 188, "subscribers": 34, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 533, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 92, "deletions": -44}, "commit_count_4_weeks": 8}, "public_interest_stats": {"alexa_rank": 305114, "bing_matches": null}}, "QKC_20191103": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.01746019049846523, "ars": 0.28346746913484777, "aud": 0.006890797357609602, "bch": 1.6437960787921982e-05, "bdt": 0.40250658319504073, "bhd": 0.0017916459137427012, "bmd": 0.00475378869516328, "bnb": 0.00023741499549568982, "brl": 0.018954306285355042, "btc": 5.187201790203065e-07, "cad": 0.006258790658165028, "chf": 0.004701715693796462, "clp": 3.5258839342933177, "cny": 0.03353988075985504, "czk": 0.10880304707506541, "dkk": 0.03184532147263366, "eos": 0.0014530550508889842, "eth": 2.596673875501148e-05, "eur": 0.00426251315625033, "gbp": 0.003684523757748899, "hkd": 0.0372677780856586, "huf": 1.4044284324725227, "idr": 66.4980480554366, "ils": 0.01677312541835327, "inr": 0.33676956256880036, "jpy": 0.5171527876750757, "krw": 5.536690155369731, "kwd": 0.0014440631457184432, "lkr": 0.8631590282316184, "ltc": 8.206705592916447e-05, "mmk": 7.269394798592643, "mxn": 0.09077169361866479, "myr": 0.01987123131024421, "ngn": 1.7233629683042424, "nok": 0.043619258115801925, "nzd": 0.0074161147773686015, "php": 0.24187312059027138, "pkr": 0.7397026224090506, "pln": 0.018151434158840202, "rub": 0.3032246903308157, "sar": 0.017828628137495174, "sek": 0.045868475206608875, "sgd": 0.0064713515658805605, "thb": 0.14361195648088285, "try": 0.027073610994089607, "twd": 0.1443297785738524, "uah": 0.11870034006262106, "usd": 0.00475378869516328, "vef": 1181.2577445730424, "vnd": 109.89948329006235, "xag": 0.0002662665027339294, "xau": 3.1788585004556885e-06, "xdr": 0.0034532281687857293, "xlm": 0.07364124998183078, "xrp": 0.01610297931472449, "zar": 0.07124764575819467, "bits": 0.5187201790203065, "link": 0.001825220958902054, "sats": 51.87201790203065}, "market_cap": {"aed": 65219264.412736155, "ars": 1058839525.4645035, "aud": 25739280.15963102, "bch": 61400.91719663129, "bdt": 1503487792.9637623, "bhd": 6692357.027413576, "bmd": 17756885.40737186, "bnb": 886819.154014558, "brl": 70800253.49627309, "btc": 1937.5818674327147, "cad": 23378537.75849173, "chf": 17562376.484619506, "clp": 13170277644.995205, "cny": 125281929.30317149, "czk": 406413360.53715, "dkk": 118952221.14643267, "eos": 5427614.411109695, "eth": 96993.87878662607, "eur": 15921817.841832431, "gbp": 13762846.929577112, "hkd": 139206790.05520543, "huf": 5245978804.9988, "idr": 248390977145.38553, "ils": 62652861.764808655, "inr": 1257939490.9389293, "jpy": 1931727171.2544668, "krw": 20681266865.111965, "kwd": 5394026.837082748, "lkr": 3224168539.1363096, "ltc": 306546.08382935234, "mmk": 27153459839.49355, "mxn": 339060624.09960264, "myr": 74225254.82430315, "ngn": 6437298901.110617, "nok": 162931551.5653701, "nzd": 27701504.78157258, "php": 903471643.5366011, "pkr": 2763020307.363244, "pln": 67801275.36293657, "rub": 1132638916.9060812, "sar": 66595494.059349135, "sek": 171333079.84078488, "sgd": 24172519.13259696, "thb": 536435508.15670437, "try": 101128392.28107502, "twd": 539116797.853217, "uah": 443382840.8175886, "usd": 17756885.40737186, "vef": 4412366588421.447, "vnd": 410508892222.4354, "xag": 994588.5440130299, "xau": 11874.029271909569, "xdr": 12898885.670081431, "xlm": 275073067.1965805, "xrp": 60149656.77792308, "zar": 266132207.88725698, "bits": 1937581867.4327147, "link": 6817770.3067308795, "sats": 193758186743.27148}, "total_volume": {"aed": 8378712.82095774, "ars": 136029015.15727246, "aud": 3306722.9233209305, "bch": 7888.170109957792, "bdt": 193152936.64365378, "bhd": 859766.483613799, "bmd": 2281225.4134220183, "bnb": 113929.57406863435, "brl": 9095701.968396274, "btc": 248.92096193503568, "cad": 3003438.567057297, "chf": 2256236.8702433934, "clp": 1691984341.6410115, "cny": 16094957.78185772, "czk": 52211886.55228316, "dkk": 15281780.76486224, "eos": 697285.1175656476, "eth": 12460.794568318104, "eur": 2045474.4542973351, "gbp": 1768111.662406417, "hkd": 17883883.344936196, "huf": 673950408.1762146, "idr": 31910765684.92916, "ils": 8049007.311955848, "inr": 161607369.16653726, "jpy": 248168809.66264793, "krw": 2656920426.7584953, "kwd": 692970.1250606191, "lkr": 414208631.7446192, "ltc": 39381.9468208201, "mmk": 3488402454.997588, "mxn": 43559086.779128075, "myr": 9535711.569813348, "ngn": 826999189.897945, "nok": 20931801.2451044, "nzd": 3558809.7376311217, "php": 116068917.84559299, "pkr": 354964961.38570553, "pln": 8710423.527098008, "rub": 145510016.0979956, "sar": 8555516.915399602, "sek": 22011144.79966172, "sgd": 3105441.28019305, "thb": 68915819.73947924, "try": 12991955.131631618, "twd": 69260284.77690592, "uah": 56961352.23851934, "usd": 2281225.4134220183, "vef": 566856324401.4872, "vnd": 52738039126.20638, "xag": 127774.6975581084, "xau": 1525.4554339553047, "xdr": 1657118.6399163685, "xlm": 35338611.30715361, "xrp": 7727420.800578273, "zar": 34189979.94493329, "bits": 248920961.93503568, "link": 875878.315919731, "sats": 24892096193.503567}}, "community_data": {"facebook_likes": null, "twitter_followers": 50131, "reddit_average_posts_48h": 0.059, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9230, "reddit_accounts_active_48h": "45.2222222222222"}, "developer_data": {"forks": 107, "stars": 189, "subscribers": 34, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 534, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 112, "deletions": -45}, "commit_count_4_weeks": 9}, "public_interest_stats": {"alexa_rank": 299945, "bing_matches": null}}, "MDA_20191113": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.7873158814980714, "ars": 45.159164830491584, "aud": 1.1059499933511445, "bch": 0.002685104384679496, "bdt": 64.28917139455045, "bhd": 0.28608919745908734, "bmd": 0.7589076131284235, "bnb": 0.038473575943554064, "brl": 3.1595600657375638, "btc": 8.61052091026273e-05, "cad": 1.0038450452656218, "chf": 0.7565314733917186, "clp": 568.4215168839265, "cny": 5.309165879923826, "czk": 17.548979645981653, "dkk": 5.146190470004494, "eos": 0.2174386712401539, "eth": 0.004101767023015171, "eur": 0.6887299083272121, "gbp": 0.5940569424970541, "hkd": 5.940235505620768, "huf": 229.6833891133175, "idr": 10638.127106028525, "ils": 2.6513348153777208, "inr": 54.16854870226751, "jpy": 82.91290405703874, "krw": 879.3917759228943, "kwd": 0.23060014950997668, "lkr": 136.98759618075223, "ltc": 0.012214316468163735, "mmk": 1151.069339058084, "mxn": 14.499195566483127, "myr": 3.136565923967389, "ngn": 274.886745893029, "nok": 6.929509524714327, "nzd": 1.1993737972500917, "php": 38.387712994363554, "pkr": 118.3895876480338, "pln": 2.937389861994221, "rub": 48.40244454847902, "sar": 2.8459984126832305, "sek": 7.3597532232871545, "sgd": 1.0316210639061203, "thb": 23.0380028356789, "try": 4.371820114258578, "twd": 23.067755808651583, "uah": 18.59275840985007, "usd": 0.7589076131284235, "vef": 188579.16346502738, "vnd": 17621.835040182912, "xag": 0.04515022945225466, "xau": 0.0005201932234188781, "xdr": 0.552543178243703, "xlm": 10.382690618396872, "xrp": 2.7104473832340608, "zar": 11.280804982575846, "bits": 86.10520910262731, "link": 0.27117842227316485, "sats": 8610.52091026273}, "market_cap": {"aed": 54719100.935606554, "ars": 886540673.3876384, "aud": 21711421.27005342, "bch": 52700.57982417231, "bdt": 1262090774.1228852, "bhd": 5616350.761054306, "bmd": 14898470.08701987, "bnb": 755157.8149218527, "brl": 62026800.51328973, "btc": 1690.149505692052, "cad": 19706951.30760557, "chf": 14851822.977177396, "clp": 11158948493.353128, "cny": 104226717.03477353, "czk": 344512222.2922477, "dkk": 101027270.58358595, "eos": 4267812.359499342, "eth": 80506.7992501279, "eur": 13520778.761132961, "gbp": 11662209.51624732, "hkd": 116615539.835635, "huf": 4509021971.8365555, "idr": 208842045763.297, "ils": 52049593.06541442, "inr": 1063408099.401217, "jpy": 1627701975.2504508, "krw": 17263751004.355007, "kwd": 4527019.323701678, "lkr": 2689267532.2869916, "ltc": 239709.34586354328, "mmk": 22597180235.613934, "mxn": 284640485.4770445, "myr": 61575391.76812316, "ngn": 5396430198.03584, "nok": 136036440.51756975, "nzd": 23545467.633175775, "php": 753607137.2350924, "pkr": 2324161333.575108, "pln": 57665273.395314746, "rub": 950211013.5270491, "sar": 55871125.135085374, "sek": 144482755.67165345, "sgd": 20252235.31279054, "thb": 452269802.24529356, "try": 85825244.16854315, "twd": 452853896.7650555, "uah": 365003131.09583205, "usd": 14898470.08701987, "vef": 3702085704921.6235, "vnd": 345942480590.3713, "xag": 886365.2588008351, "xau": 10212.156321147766, "xdr": 10847233.405547163, "xlm": 203817081.54975948, "xrp": 53209125.68121736, "zar": 221458755.56260872, "bits": 1690149505.692052, "link": 5322930.878816659, "sats": 169014950569.2052}, "total_volume": {"aed": 8413240.493468313, "ars": 136308524.17017835, "aud": 3338201.934547869, "bch": 8104.725082767941, "bdt": 194050578.78745157, "bhd": 863532.2737489705, "bmd": 2290688.437559442, "bnb": 116128.72771451662, "brl": 9536823.172091221, "btc": 259.90015581995374, "cad": 3030008.130781751, "chf": 2283516.2920614444, "clp": 1715724778.4331694, "cny": 16025198.17147835, "czk": 52969879.430124514, "dkk": 15533272.829512449, "eos": 656317.3718008582, "eth": 12380.782760171734, "eur": 2078863.8963614465, "gbp": 1793102.804464342, "hkd": 17930020.14173091, "huf": 693276855.6273656, "idr": 32110146660.162094, "ils": 8002794.939226413, "inr": 163502468.60768038, "jpy": 250264495.12741172, "krw": 2654358104.127434, "kwd": 696044.0072599375, "lkr": 413483666.82837605, "ltc": 36867.72015763119, "mmk": 3474390268.5864205, "mxn": 43764404.3405263, "myr": 9467417.603121616, "ngn": 829718768.875951, "nok": 20916047.054511525, "nzd": 3620192.5532767456, "php": 115869558.79655747, "pkr": 357347396.25927216, "pln": 8866224.131995704, "rub": 146098046.92794737, "sar": 8590367.976902608, "sek": 22214695.5969749, "sgd": 3113847.3275964214, "thb": 69537959.30786242, "try": 13195911.615037732, "twd": 69627765.74805687, "uah": 56120423.586490564, "usd": 2290688.437559442, "vef": 569207768957.8673, "vnd": 53189786314.99907, "xag": 136281.5536045147, "xau": 1570.1523895251203, "xdr": 1667797.5655529655, "xlm": 31339136.594343174, "xrp": 8181220.446311228, "zar": 34050007.00075546, "bits": 259900155.81995374, "link": 818525.5565641992, "sats": 25990015581.995373}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 368, "reddit_accounts_active_48h": "18.2142857142857"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2018091, "bing_matches": null}}, "QKC_20191130": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.014465919668773397, "ars": 0.23561348938463414, "aud": 0.00580259338995174, "bch": 1.8607177419500996e-05, "bdt": 0.33393500811413235, "bhd": 0.0014846746858136965, "bmd": 0.003938233602519161, "bnb": 0.0002569630904366255, "brl": 0.016671724309544392, "btc": 5.502762067693857e-07, "cad": 0.005226646416751316, "chf": 0.003929014197655662, "clp": 3.1454668396439622, "cny": 0.02769995986667876, "czk": 0.09110916373331972, "dkk": 0.02669579693917565, "eos": 0.0015063667328876536, "eth": 2.668039465718748e-05, "eur": 0.0035729821270535232, "gbp": 0.0030620435759298914, "hkd": 0.0308314463157219, "huf": 1.2005211912903297, "idr": 55.45323357075161, "ils": 0.013652280606492925, "inr": 0.2813414933370981, "jpy": 0.4296208157224003, "krw": 4.618484692682295, "kwd": 0.0011971757563625973, "lkr": 0.7155608239935229, "ltc": 8.398770489382368e-05, "mmk": 5.958429013988851, "mxn": 0.07687926240434537, "myr": 0.016430310589709937, "ngn": 1.428609948927666, "nok": 0.03610232303406311, "nzd": 0.00612763943856924, "php": 0.2002197963520742, "pkr": 0.6120043609890712, "pln": 0.015382988560156803, "rub": 0.2519622785387724, "sar": 0.01476891948568399, "sek": 0.037755254812310804, "sgd": 0.005373739441805411, "thb": 0.11900595651545234, "try": 0.02268422161227676, "twd": 0.11999009746332015, "uah": 0.09450437399555514, "usd": 0.003938233602519161, "vef": 978.6023824842667, "vnd": 91.29018723615518, "xag": 0.00023057574034262765, "xau": 2.6960359596125664e-06, "xdr": 0.0028686802442798006, "xlm": 0.06820680566306202, "xrp": 0.017887694482719707, "zar": 0.05826340938574904, "bits": 0.5502762067693857, "link": 0.0017452127530933029, "sats": 55.02762067693857}, "market_cap": {"aed": 54176637.30594116, "ars": 882427864.9072083, "aud": 21727704.69725936, "bch": 69535.22504440873, "bdt": 1250627421.7330778, "bhd": 5560288.167801043, "bmd": 14749166.205472395, "bnb": 961915.9992188375, "brl": 62437645.29762626, "btc": 2057.7463607897266, "cad": 19574090.444600996, "chf": 14714431.919058526, "clp": 11780156968.678366, "cny": 103738260.50619012, "czk": 341224895.247678, "dkk": 99980969.41201095, "eos": 5636454.414529391, "eth": 99778.83136297097, "eur": 13381387.528241716, "gbp": 11466459.032286609, "hkd": 115467534.93109214, "huf": 4496098953.160699, "idr": 207691379491.07782, "ils": 51129459.56789064, "inr": 1053658309.9696413, "jpy": 1609104534.684629, "krw": 17296789684.143654, "kwd": 4483569.53646915, "lkr": 2679862747.718731, "ltc": 313880.7381048885, "mmk": 22315044946.702755, "mxn": 287886025.3313747, "myr": 61533521.40923092, "ngn": 5350318875.459105, "nok": 135216447.24272645, "nzd": 22947151.009961516, "php": 750149156.5892884, "pkr": 2292031136.2250714, "pln": 57612662.06183291, "rub": 943510061.8305515, "sar": 55311408.65545788, "sek": 141400256.41186395, "sgd": 20123865.614909988, "thb": 445693888.4443536, "try": 84951215.06864561, "twd": 449377581.19916594, "uah": 353930431.7328877, "usd": 14749166.205472395, "vef": 3664985535418.4634, "vnd": 341852510381.5675, "xag": 863510.2893487453, "xau": 10096.83670928024, "xdr": 10743558.149057789, "xlm": 255038764.8334619, "xrp": 66928095.829314984, "zar": 218192335.9798065, "bits": 2057746360.7897267, "link": 6526186.571949305, "sats": 205774636078.97266}, "total_volume": {"aed": 8819880.350425173, "ars": 143653693.15609166, "aud": 3537844.8514419184, "bch": 11344.807814285849, "bdt": 203600385.16891912, "bhd": 905207.0928092067, "bmd": 2401143.5125844395, "bnb": 156670.55838964798, "brl": 10164760.831823725, "btc": 335.5037505059872, "cad": 3186689.6184440013, "chf": 2395522.435621478, "clp": 1917793117.0028486, "cny": 16888683.010113906, "czk": 55549314.62047261, "dkk": 16276444.239562165, "eos": 918432.7475984478, "eth": 16267.053458514734, "eur": 2178449.457509797, "gbp": 1866929.9004741162, "hkd": 18797952.274145443, "huf": 731958527.8900156, "idr": 33809871500.52942, "ils": 8323804.100725219, "inr": 171534086.0214766, "jpy": 261940082.44792977, "krw": 2815893031.5131493, "kwd": 729918.8141035201, "lkr": 436277885.92646444, "ltc": 51207.35667220491, "mmk": 3632857929.753703, "mxn": 46873334.80075666, "myr": 10017570.73450228, "ngn": 871024387.3514771, "nok": 22011609.13537928, "nzd": 3736025.632396574, "php": 122074136.17979294, "pkr": 373139445.0858109, "pln": 9379017.832196115, "rub": 153621560.2198837, "sar": 9004619.529996376, "sek": 23019402.683620125, "sgd": 3276372.3286390323, "thb": 72558006.78334546, "try": 13830584.231342856, "twd": 73158038.14027916, "uah": 57619376.45982411, "usd": 2401143.5125844395, "vef": 596654490124.3809, "vnd": 55659684764.38195, "xag": 140582.17438622875, "xau": 1643.7748258450551, "xdr": 1749036.155149731, "xlm": 41585732.45304896, "xrp": 10906138.613717727, "zar": 35523237.46822786, "bits": 335503750.5059872, "link": 1064057.316835924, "sats": 33550375050.598724}}, "community_data": {"facebook_likes": null, "twitter_followers": 49348, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9221, "reddit_accounts_active_48h": "20.2941176470588"}, "developer_data": {"forks": 107, "stars": 188, "subscribers": 34, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 538, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 544, "deletions": -132}, "commit_count_4_weeks": 5}, "public_interest_stats": {"alexa_rank": 296217, "bing_matches": null}}, "MDA_20191205": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.028957862034315, "ars": 32.95507978264806, "aud": 0.8167662652236761, "bch": 0.0025706061616944447, "bdt": 46.80376291048848, "bhd": 0.20826611720158145, "bmd": 0.5524065747914714, "bnb": 0.03573104094762604, "brl": 2.3407643055819305, "btc": 7.461754835485287e-05, "cad": 0.733929584894248, "chf": 0.5525866593348537, "clp": 473.908995628404, "cny": 3.88482685754976, "czk": 12.805392050898565, "dkk": 3.746183303002025, "eos": 0.1989090223191305, "eth": 0.00365727356759482, "eur": 0.5013636548741647, "gbp": 0.4278532547469393, "hkd": 4.32459773174125, "huf": 167.7884536208817, "idr": 7776.276336887773, "ils": 1.9173347226859254, "inr": 39.636039572017054, "jpy": 60.51862609799224, "krw": 652.7788444594223, "kwd": 0.1679879442072364, "lkr": 99.74641511497512, "ltc": 0.011590024949956593, "mmk": 831.1034851257261, "mxn": 10.793129572774214, "myr": 2.307125507210006, "ngn": 200.15638874128243, "nok": 5.087498831857013, "nzd": 0.8592468832317174, "php": 28.091858020156373, "pkr": 85.63696404425183, "pln": 2.1615105816883995, "rub": 35.52755323565261, "sar": 2.07149703513928, "sek": 5.288385349625958, "sgd": 0.7554104669615881, "thb": 16.69115855203209, "try": 3.176882477933709, "twd": 16.85213424717887, "uah": 13.206588926378947, "usd": 0.5524065747914714, "vef": 137266.20732835907, "vnd": 12779.674096054434, "xag": 0.03253282516853666, "xau": 0.0003778681934203584, "xdr": 0.40234146190334447, "xlm": 9.626573428447859, "xrp": 2.4579249040520823, "zar": 8.097193802710338, "bits": 74.61754835485287, "link": 0.25533142964851663, "sats": 7461.754835485287}, "market_cap": {"aed": 39716179.43662292, "ars": 645122779.4706283, "aud": 15989778.69640146, "bch": 50316.511393561086, "bdt": 916168187.05064, "bhd": 4076740.3976805047, "bmd": 10813176.092474867, "bnb": 699730.5908310462, "brl": 45819687.49519639, "btc": 1461.2130892466475, "cad": 14369683.775170313, "chf": 10817349.978446566, "clp": 9276600521.405586, "cny": 76044201.52913417, "czk": 250617533.76727042, "dkk": 73334852.12740354, "eos": 3893451.6598269306, "eth": 71644.48462566397, "eur": 9814536.027630439, "gbp": 8375280.6633698465, "hkd": 84653673.96031472, "huf": 3284629238.8424473, "idr": 152227029381.486, "ils": 37531193.3831448, "inr": 775862372.1347127, "jpy": 1184545594.8142977, "krw": 12777930091.15897, "kwd": 3288308.4760737857, "lkr": 1952503102.698369, "ltc": 227200.62338601114, "mmk": 16268575983.416714, "mxn": 211357043.1975364, "myr": 45161219.13704521, "ngn": 3917995143.9034824, "nok": 99589568.07521541, "nzd": 16829843.533849735, "php": 549928540.4003059, "pkr": 1676315262.1508865, "pln": 42321495.27116765, "rub": 695440110.2429057, "sar": 40548869.68797607, "sek": 103516697.36848034, "sgd": 14789180.941677924, "thb": 326779815.17933434, "try": 62175892.28984361, "twd": 329874957.07769203, "uah": 258514612.53112754, "usd": 10813176.092474867, "vef": 2686940632355.83, "vnd": 250172947415.44058, "xag": 636688.0263387504, "xau": 7395.239261404482, "xdr": 7875701.114721416, "xlm": 188670284.43113524, "xrp": 48210279.15225793, "zar": 158497913.18708304, "bits": 1461213089.2466476, "link": 5000078.873191862, "sats": 146121308924.66476}, "total_volume": {"aed": 9159921.1378756, "ars": 148778807.85498023, "aud": 3687368.139831544, "bch": 11605.243341056617, "bdt": 211299990.61984003, "bhd": 940236.9782807145, "bmd": 2493891.4483223897, "bnb": 161311.1456766779, "brl": 10567600.659772595, "btc": 336.86794152874916, "cad": 3313394.1538069197, "chf": 2494704.4569345443, "clp": 2139506742.7046425, "cny": 17538416.30489961, "czk": 57811147.05270609, "dkk": 16912496.935308225, "eos": 897993.4931858915, "eth": 16511.10557082576, "eur": 2263453.3846059525, "gbp": 1931583.7679033477, "hkd": 19523803.286909062, "huf": 757496758.1990033, "idr": 35106731058.87079, "ils": 8655987.974587433, "inr": 178940629.3205967, "jpy": 273217030.67523515, "krw": 2947031502.037544, "kwd": 758397.377217737, "lkr": 450314574.4598624, "ltc": 52324.25794253261, "mmk": 3752094867.8215895, "mxn": 48726598.796073325, "myr": 10415735.140027016, "ngn": 903624846.2419329, "nok": 22967992.071614705, "nzd": 3879150.886098995, "php": 126823335.71138434, "pkr": 386616130.2856906, "pln": 9758342.860357786, "rub": 160392481.2583176, "sar": 9351968.236636551, "sek": 23874913.154037297, "sgd": 3410371.61666638, "thb": 75353805.46695949, "try": 14342334.804821806, "twd": 76080545.386132, "uah": 59622388.088770665, "usd": 2493891.4483223897, "vef": 619701205998.6221, "vnd": 57695040926.20256, "xag": 146872.49967690572, "xau": 1705.9215063104489, "xdr": 1816408.3791454732, "xlm": 43460071.34132379, "xrp": 11096533.203190174, "zar": 36555543.14792731, "bits": 336867941.52874917, "link": 1152717.758887537, "sats": 33686794152.874916}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.077, "reddit_subscribers": 369, "reddit_accounts_active_48h": "19.2142857142857"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1774649, "bing_matches": null}}, "FTM_20191214": {"id": "fantom", "symbol": "ftm", "name": "Fantom", "localization": {"en": "Fantom", "de": "Fantom", "es": "Fantom", "fr": "Fantom", "it": "Fantom", "pl": "Fantom", "ro": "Fantom", "hu": "Fantom", "nl": "Fantom", "pt": "Fantom", "sv": "Fantom", "vi": "Fantom", "tr": "Fantom", "ru": "Fantom", "ja": "\u30d5\u30a1\u30f3\u30c8\u30e0", "zh": "Fantom", "zh-tw": "Fantom", "ko": "Fantom", "ar": "Fantom", "th": "Fantom", "id": "Fantom"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4001/thumb/Fantom.png?1558015016", "small": "https://assets.coingecko.com/coins/images/4001/small/Fantom.png?1558015016"}, "market_data": {"current_price": {"aed": 0.040074610778762516, "ars": 0.6517644711380676, "aud": 0.016017025061895687, "bch": 5.2765446278649025e-05, "bdt": 0.9264423688675077, "bhd": 0.004114215424623006, "bmd": 0.01090999966752764, "bnb": 0.0007371263916738279, "brl": 0.045233949621536276, "btc": 1.5095673625014584e-06, "cad": 0.014438217190008415, "chf": 0.01074133107266766, "clp": 8.499969220011142, "cny": 0.07674421066128975, "czk": 0.2510870854383492, "dkk": 0.07349914036018029, "eos": 0.004188331778001429, "eth": 7.494386127196129e-05, "eur": 0.009835124680283478, "gbp": 0.008309852176764774, "hkd": 0.08539311289772215, "huf": 3.2545506653305205, "idr": 152.85670369217027, "ils": 0.037913339844625235, "inr": 0.7727792129902531, "jpy": 1.1866261138386436, "krw": 12.987045404231548, "kwd": 0.0033124177290570636, "lkr": 1.9765825867154392, "ltc": 0.00024731612044145464, "mmk": 16.445590730575518, "mxn": 0.2101767795950531, "myr": 0.04541287361608379, "ngn": 3.95601975302388, "nok": 0.1001292494486518, "nzd": 0.016673676121884758, "php": 0.5534642831336772, "pkr": 1.6910482792368329, "pln": 0.04219910410402057, "rub": 0.6930053608812886, "sar": 0.04091121137326795, "sek": 0.10358439179335946, "sgd": 0.014820547218357249, "thb": 0.33067847871287326, "try": 0.0633434580696655, "twd": 0.3324276898695674, "uah": 0.258111936034273, "usd": 0.01090999966752764, "vef": 2711.000094234038, "vnd": 252.58183882156794, "xag": 0.0006548815671430771, "xau": 7.4509842729379975e-06, "xdr": 0.0079139282888302, "xlm": 0.2054340693794537, "xrp": 0.04891823510491671, "zar": 0.1613527309329209, "bits": 1.5095673625014585, "link": 0.004831293463320283, "sats": 150.95673625014584}, "market_cap": {"aed": 84272218.53672895, "ars": 1370637206.9880948, "aud": 33684407.81728924, "bch": 110942.2234102629, "bdt": 1948199926.4297853, "bhd": 8651713.756749755, "bmd": 22942453.048221946, "bnb": 1550393.4475096813, "brl": 95119410.33792815, "btc": 3173.9314469975775, "cad": 30359220.442292012, "chf": 22584849.032559317, "clp": 17874439956.113823, "cny": 161384097.4771078, "czk": 527995343.14892805, "dkk": 154552615.00275078, "eos": 8811736.9971735, "eth": 157569.22279689013, "eur": 20681153.105976995, "gbp": 17472261.025481343, "hkd": 179566496.25179055, "huf": 6843802135.737146, "idr": 321424501364.08624, "ils": 79727318.58787607, "inr": 1625066717.0475736, "jpy": 2495580175.4640155, "krw": 27310237259.54247, "kwd": 6965626.997329801, "lkr": 4156521959.081629, "ltc": 520172.5246344893, "mmk": 34583153499.94922, "mxn": 441992093.5872595, "myr": 95497960.81322378, "ngn": 8319046765.11843, "nok": 210550921.4820997, "nzd": 35052626.88972588, "php": 1164045831.7077756, "pkr": 3556076712.2790713, "pln": 88738402.9291731, "rub": 1456942126.8648965, "sar": 86031491.72137254, "sek": 217847562.19200936, "sgd": 31164454.6593785, "thb": 695385751.8916082, "try": 133208264.40650906, "twd": 699033624.8687273, "uah": 542779207.5262189, "usd": 22942453.048221946, "vef": 5700916065177.512, "vnd": 531150059999.09283, "xag": 1376850.0232735556, "xau": 15668.777733813673, "xdr": 16642065.419478394, "xlm": 431299112.9328134, "xrp": 102927456.47525336, "zar": 339287908.27158624, "bits": 3173931446.9975777, "link": 10158005.951782273, "sats": 317393144699.75775}, "total_volume": {"aed": 17861618.429539546, "ars": 290497351.3945701, "aud": 7138933.715697266, "bch": 23518.039211825864, "bdt": 412923788.10674846, "bhd": 1833743.22603493, "bmd": 4862686.058352267, "bnb": 328543.93558823224, "brl": 20161182.66653431, "btc": 672.8279002269593, "cad": 6435244.690820986, "chf": 4787508.93189014, "clp": 3788513573.065777, "cny": 34205592.54026739, "czk": 111911797.15865669, "dkk": 32759235.199071076, "eos": 1866777.5586886576, "eth": 33403.16044655181, "eur": 4383604.502511284, "gbp": 3703776.678123344, "hkd": 38060486.913026094, "huf": 1450582825.7362525, "idr": 68129622788.342476, "ils": 16898320.321379937, "inr": 344434722.2463031, "jpy": 528890049.1366843, "krw": 5788444230.141371, "kwd": 1476374.7022345047, "lkr": 880980832.310248, "ltc": 110231.04376949652, "mmk": 7329949331.25045, "mxn": 93677701.83973315, "myr": 20240930.71789131, "ngn": 1763233976.7022884, "nok": 44628516.97204253, "nzd": 7431609.064177334, "php": 246684063.74021056, "pkr": 753715595.0536337, "pln": 18808524.422996454, "rub": 308878790.96374744, "sar": 18234498.921866145, "sek": 46168505.333292395, "sgd": 6605652.661049881, "thb": 147386404.87957212, "try": 28232755.25479328, "twd": 148166044.1979937, "uah": 115042836.94745512, "usd": 4862686.058352267, "vef": 1208317393598.1372, "vnd": 112578022333.61127, "xag": 291886.6694283021, "xau": 3320.97144355168, "xdr": 3527309.8010657425, "xlm": 91563832.77034698, "xrp": 21803302.208329268, "zar": 71916379.38540675, "bits": 672827900.2269592, "link": 2153351.428398333, "sats": 67282790022.69593}}, "community_data": {"facebook_likes": null, "twitter_followers": 20142, "reddit_average_posts_48h": 0.25, "reddit_average_comments_48h": 0.917, "reddit_subscribers": 2239, "reddit_accounts_active_48h": "15.0769230769231"}, "developer_data": {"forks": 27, "stars": 49, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 285, "pull_request_contributors": 18, "code_additions_deletions_4_weeks": {"additions": 7296, "deletions": -3734}, "commit_count_4_weeks": 179}, "public_interest_stats": {"alexa_rank": 617714, "bing_matches": null}}, "REN_20191218": {"id": "republic-protocol", "symbol": "ren", "name": "REN", "localization": {"en": "REN", "de": "REN", "es": "REN", "fr": "REN", "it": "REN", "pl": "REN", "ro": "REN", "hu": "REN", "nl": "REN", "pt": "REN", "sv": "REN", "vi": "REN", "tr": "REN", "ru": "REN", "ja": "\u30ec\u30f3", "zh": "REN", "zh-tw": "REN", "ko": "\ub9ac\ud37c\ube14\ub9ad \ud504\ub85c\ud1a0\ucf5c", "ar": "REN", "th": "REN", "id": "REN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3139/thumb/REN.png?1589985807", "small": "https://assets.coingecko.com/coins/images/3139/small/REN.png?1589985807"}, "market_data": {"current_price": {"aed": 0.1341897346380344, "ars": 2.1835627991361974, "aud": 0.05312817468785907, "bch": 0.00017720426591981433, "bdt": 3.1027815156707557, "bhd": 0.013776788400107539, "bmd": 0.03653409600817712, "bnb": 0.0025421964417867305, "brl": 0.1500966800399946, "btc": 5.165783633894596e-06, "cad": 0.04811248171508857, "chf": 0.035954299904527344, "clp": 27.92661008727955, "cny": 0.25474859805541805, "czk": 0.8369194179457177, "dkk": 0.24553469904215608, "eos": 0.014233737741062003, "eth": 0.000257533330398792, "eur": 0.03285292049439319, "gbp": 0.027402873654181342, "hkd": 0.28490932101496846, "huf": 10.83053276162412, "idr": 510.5130449173916, "ils": 0.12725081378320122, "inr": 2.5825769797700353, "jpy": 3.994327517718013, "krw": 42.914775876005216, "kwd": 0.011080243307840009, "lkr": 6.614635852356526, "ltc": 0.0008441203785274342, "mmk": 55.13406399446998, "mxn": 0.6946045003554646, "myr": 0.15105018341171228, "ngn": 13.264672768801704, "nok": 0.3299670042923338, "nzd": 0.05538868534426902, "php": 1.848995859883669, "pkr": 5.6609581764670285, "pln": 0.1402434343465896, "rub": 2.295915848851475, "sar": 0.13702156548782032, "sek": 0.3433620479232514, "sgd": 0.0494494469585078, "thb": 1.1038672621356143, "try": 0.21203201965025711, "twd": 1.1046083928072326, "uah": 0.8578199531923653, "usd": 0.03653409600817712, "vef": 9078.271378478248, "vnd": 850.8628169852741, "xag": 0.002157317544848134, "xau": 2.475806084186138e-05, "xdr": 0.02639573822952394, "xlm": 0.7175008863885951, "xrp": 0.1690500505095785, "zar": 0.5298598398619535, "bits": 5.165783633894597, "link": 0.018302823676056054, "sats": 516.5783633894596}, "market_cap": {"aed": 114714434.86399859, "ars": 1866656739.195626, "aud": 45417546.66341002, "bch": 151461.52251879132, "bdt": 2652466889.7865596, "bhd": 11777327.824831117, "bmd": 31231809.110808197, "bnb": 2173251.575836879, "brl": 128312764.5508442, "btc": 4418.058747253008, "cad": 41129794.05420549, "chf": 30736160.30021965, "clp": 23873549660.642178, "cny": 217776281.7487542, "czk": 715455159.9294823, "dkk": 209899619.4910086, "eos": 12166797.682087902, "eth": 220191.37323340733, "eur": 28084892.02480313, "gbp": 23425824.437080115, "hkd": 243559701.760182, "huf": 9258669810.899078, "idr": 436420979565.7394, "ils": 108782577.35958263, "inr": 2207760970.138477, "jpy": 3414620537.798327, "krw": 36686444572.010826, "kwd": 9472139.22617148, "lkr": 5654636814.663985, "ltc": 721431.2695729397, "mmk": 47132316118.97472, "mxn": 593794770.7192403, "myr": 129127883.5368271, "ngn": 11339536846.342817, "nok": 282078048.09558743, "nzd": 47349983.62033217, "php": 1580646356.478516, "pkr": 4839368821.71974, "pln": 119889545.63365915, "rub": 1962703703.13143, "sar": 117135274.85179548, "sek": 293529034.7470196, "sgd": 42272722.10861553, "thb": 943660179.9856613, "try": 181259269.74116948, "twd": 944293748.4652855, "uah": 733322346.98102, "usd": 31231809.110808197, "vef": 7760718608865.699, "vnd": 727374917765.0621, "xag": 1844220.525862031, "xau": 21164.860080121398, "xdr": 22564857.155322496, "xlm": 613376131.8271089, "xrp": 144426508.49009743, "zar": 452959924.6235092, "bits": 4418058747.253008, "link": 15653568.93983277, "sats": 441805874725.3008}, "total_volume": {"aed": 15184727.266715037, "ars": 247088986.82947502, "aud": 6011911.753083337, "bch": 20052.192932261405, "bdt": 351106522.4978171, "bhd": 1558962.57661711, "bmd": 4134148.45268583, "bnb": 287671.4804681006, "brl": 16984735.503014434, "btc": 584.553027183023, "cad": 5444342.780311018, "chf": 4068539.516741705, "clp": 3160137090.986087, "cny": 28827003.745733004, "czk": 94704659.3392814, "dkk": 27784371.505965672, "eos": 1610670.3405218169, "eth": 29142.120257878996, "eur": 3717591.654593205, "gbp": 3100871.7908668905, "hkd": 32239950.000847768, "huf": 1225568308.7987158, "idr": 57768959556.26718, "ils": 14399528.451096406, "inr": 292240887.0461349, "jpy": 451992651.5548205, "krw": 4856177479.947406, "kwd": 1253825.2134728231, "lkr": 748503167.2325859, "ltc": 95519.51021283501, "mmk": 6238895449.938147, "mxn": 78600497.45668902, "myr": 17092632.64348111, "ngn": 1501012270.571892, "nok": 37338615.958287515, "nzd": 6267708.054444821, "php": 209229848.50780705, "pkr": 640586302.7436675, "pln": 15869755.665325107, "rub": 259802704.6269808, "sar": 15505173.38157963, "sek": 38854380.81772246, "sgd": 5595631.942937056, "thb": 124912113.131445, "try": 23993254.02114141, "twd": 124995978.46695577, "uah": 97069735.38853943, "usd": 4134148.45268583, "vef": 1027284801682.1787, "vnd": 96282475348.51456, "xag": 244119.10966648022, "xau": 2801.588381931606, "xdr": 2986905.720471702, "xlm": 81191421.25756198, "xrp": 19129473.04305029, "zar": 59958216.47305497, "bits": 584553027.183023, "link": 2071122.5525660443, "sats": 58455302718.3023}}, "community_data": {"facebook_likes": null, "twitter_followers": 10311, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 873, "reddit_accounts_active_48h": "2356.76923076923"}, "developer_data": {"forks": 2, "stars": 5, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 2544, "deletions": -744}, "commit_count_4_weeks": 95}, "public_interest_stats": {"alexa_rank": 377121, "bing_matches": null}}, "FTM_20191221": {"id": "fantom", "symbol": "ftm", "name": "Fantom", "localization": {"en": "Fantom", "de": "Fantom", "es": "Fantom", "fr": "Fantom", "it": "Fantom", "pl": "Fantom", "ro": "Fantom", "hu": "Fantom", "nl": "Fantom", "pt": "Fantom", "sv": "Fantom", "vi": "Fantom", "tr": "Fantom", "ru": "Fantom", "ja": "\u30d5\u30a1\u30f3\u30c8\u30e0", "zh": "Fantom", "zh-tw": "Fantom", "ko": "Fantom", "ar": "Fantom", "th": "Fantom", "id": "Fantom"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4001/thumb/Fantom.png?1558015016", "small": "https://assets.coingecko.com/coins/images/4001/small/Fantom.png?1558015016"}, "market_data": {"current_price": {"aed": 0.03618377937828231, "ars": 0.5886267137263326, "aud": 0.014379141554633188, "bch": 5.5857130497115186e-05, "bdt": 0.8369578179287606, "bhd": 0.003714028732166431, "bmd": 0.009850751219177358, "bnb": 0.0007967767202015032, "brl": 0.04011422911473403, "btc": 1.4864192511503436e-06, "cad": 0.012963440843169118, "chf": 0.009653105746715787, "clp": 7.462939959475111, "cny": 0.06892767643082773, "czk": 0.22467297858163066, "dkk": 0.06601382422019512, "eos": 0.004489230637862729, "eth": 8.087177779488357e-05, "eur": 0.00883400593208996, "gbp": 0.0075086267585545196, "hkd": 0.07670730720617308, "huf": 2.9171029585349935, "idr": 137.76502147297572, "ils": 0.03439468594185525, "inr": 0.6997480340482541, "jpy": 1.0787853182657698, "krw": 11.455438642035107, "kwd": 0.002992165682825127, "lkr": 1.7861586119670156, "ltc": 0.0002666512215549286, "mmk": 14.83743375718793, "mxn": 0.18639591456927462, "myr": 0.040796886174223064, "ngn": 3.5744669829248417, "nok": 0.08886556734618906, "nzd": 0.014997187536875626, "php": 0.49824799218686844, "pkr": 1.5271684236018632, "pln": 0.037646123396769135, "rub": 0.6151183389800665, "sar": 0.03694843409091961, "sek": 0.0924042822589078, "sgd": 0.013353333576424157, "thb": 0.2979852243801147, "try": 0.05791577776244115, "twd": 0.2970592537655121, "uah": 0.23132807715004944, "usd": 0.009850751219177358, "vef": 2447.7899447560408, "vnd": 228.4860642417884, "xag": 0.0005793707508657694, "xau": 6.675755593724308e-06, "xdr": 0.007131540001884424, "xlm": 0.22594214405940635, "xrp": 0.05306999511670604, "zar": 0.14184412889607603, "bits": 1.4864192511503436, "link": 0.005623818283230736, "sats": 148.64192511503435}, "market_cap": {"aed": 76456440.62379691, "ars": 1243707669.5885875, "aud": 30382172.620441675, "bch": 117876.61395679007, "bdt": 1768494524.6349957, "bhd": 7847754.494280228, "bmd": 20814668.578840505, "bnb": 1680337.6871442816, "brl": 84759411.91989641, "btc": 3138.338322357649, "cad": 27391021.48698798, "chf": 20398437.651269417, "clp": 15769215811.464983, "cny": 145642317.51300487, "czk": 474726390.6781889, "dkk": 139485567.50873813, "eos": 9469732.338519445, "eth": 170587.1296909423, "eur": 18665345.901389416, "gbp": 15860777.457076458, "hkd": 162079140.92300075, "huf": 6162807072.823084, "idr": 291060075974.0469, "ils": 72676080.51650783, "inr": 1478571918.262112, "jpy": 2279528836.7460046, "krw": 24205585071.39796, "kwd": 6322455.580822808, "lkr": 3774158813.893972, "ltc": 562676.1595418353, "mmk": 31351544602.519978, "mxn": 393784388.97565204, "myr": 86203949.91926797, "ngn": 7552860075.35594, "nok": 187765815.71741617, "nzd": 31686211.606906097, "php": 1052799588.2438364, "pkr": 3226911724.2002287, "pln": 79531204.28093176, "rub": 1299747001.803401, "sar": 78072158.45756081, "sek": 195260324.4712447, "sgd": 28215636.212075923, "thb": 629758205.1871086, "try": 122518240.6406733, "twd": 627666330.9949347, "uah": 488796960.9348058, "usd": 20814668.578840505, "vef": 5172187919183.896, "vnd": 482878549480.4324, "xag": 1224224.7235054208, "xau": 14105.892749194429, "xdr": 15068966.649668792, "xlm": 476521770.6344167, "xrp": 112085060.58494249, "zar": 299721340.56772816, "bits": 3138338322.357649, "link": 11873799.685102079, "sats": 313833832235.7649}, "total_volume": {"aed": 8798356.68391036, "ars": 143128989.5646086, "aud": 3496395.854160933, "bch": 13582.079205035116, "bdt": 203512555.57191363, "bhd": 903093.8746963716, "bmd": 2395283.862547738, "bnb": 193742.22102339877, "brl": 9754074.945066897, "btc": 361.43396234891844, "cad": 3152157.6338548856, "chf": 2347224.887129581, "clp": 1814669689.0784159, "cny": 16760280.24301901, "czk": 54630915.751829855, "dkk": 16051755.276477404, "eos": 1091590.0181494453, "eth": 19664.57785580012, "eur": 2148054.6386748715, "gbp": 1825778.7761045226, "hkd": 18651955.673466098, "huf": 709315410.2162622, "idr": 33498595733.01849, "ils": 8363325.228794423, "inr": 170148970.0138077, "jpy": 262314721.63919038, "krw": 2785475615.733184, "kwd": 727567.4732488765, "lkr": 434317830.5900357, "ltc": 64838.23961321203, "mmk": 3607833032.167597, "mxn": 45323561.24712846, "myr": 9920068.116741465, "ngn": 869158391.1632457, "nok": 21608327.59496405, "nzd": 3646678.358981048, "php": 121152727.2060864, "pkr": 371342428.5169891, "pln": 9153936.573305558, "rub": 149570626.45615828, "sar": 8984288.198456736, "sek": 22468792.602758665, "sgd": 3246962.9691345245, "thb": 72457336.84206899, "try": 14082654.690457342, "twd": 72232180.15898952, "uah": 56249152.76238033, "usd": 2395283.862547738, "vef": 595198439502.4037, "vnd": 55558096059.7141, "xag": 140878.33294168155, "xau": 1623.2599208099775, "xdr": 1734087.3098461984, "xlm": 54939522.83368373, "xrp": 12904366.383861324, "zar": 34490461.22294473, "bits": 361433962.34891844, "link": 1367473.4931381657, "sats": 36143396234.891846}}, "community_data": {"facebook_likes": null, "twitter_followers": 20234, "reddit_average_posts_48h": 0.182, "reddit_average_comments_48h": 2.0, "reddit_subscribers": 2237, "reddit_accounts_active_48h": "12.6666666666667"}, "developer_data": {"forks": 27, "stars": 50, "subscribers": 17, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 289, "pull_request_contributors": 18, "code_additions_deletions_4_weeks": {"additions": 10577, "deletions": -4654}, "commit_count_4_weeks": 185}, "public_interest_stats": {"alexa_rank": 522255, "bing_matches": null}}, "QKC_20200109": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.010342584609313662, "ars": 0.16815415287481145, "aud": 0.004055766626176653, "bch": 1.2650331013763167e-05, "bdt": 0.23871841789559975, "bhd": 0.0010617872697864274, "bmd": 0.0028158143359139393, "bnb": 0.00020111335699301002, "brl": 0.0114357428666165, "btc": 3.833719443012343e-07, "cad": 0.0036571768436706917, "chf": 0.0027356593650278154, "clp": 2.1521288933513905, "cny": 0.019613554756808534, "czk": 0.0640033078013497, "dkk": 0.01885341159775692, "eos": 0.0010500894051635895, "eth": 2.0849955898662776e-05, "eur": 0.0025227753537897138, "gbp": 0.002152608401190465, "hkd": 0.021912568608580537, "huf": 0.8317632305525727, "idr": 39.242205660250704, "ils": 0.00978126610052091, "inr": 0.20207310883588195, "jpy": 0.3039375915113829, "krw": 3.283084626176478, "kwd": 0.0008532649549546578, "lkr": 0.5107931216525958, "ltc": 6.517837370297811e-05, "mmk": 4.123739449395251, "mxn": 0.05335120606441825, "myr": 0.011551878313086931, "ngn": 1.023402243629038, "nok": 0.024887276531655764, "nzd": 0.004231445282594305, "php": 0.14389941242813248, "pkr": 0.43615417618073626, "pln": 0.010706455401057793, "rub": 0.17474539417743262, "sar": 0.010564935388349088, "sek": 0.026502514924980413, "sgd": 0.0038017886205202224, "thb": 0.08491435319856104, "try": 0.016809665394607227, "twd": 0.08462165492997133, "uah": 0.06663960271009185, "usd": 0.0028158143359139393, "vef": 699.695065319663, "vnd": 65.06470777276914, "xag": 0.00015486415684659496, "xau": 1.7935892575471047e-06, "xdr": 0.0020385679205859528, "xlm": 0.062102243756797314, "xrp": 0.014533191698782397, "zar": 0.040314506614788546, "bits": 0.3833719443012343, "link": 0.0015706748029418033, "sats": 38.337194430123425}, "market_cap": {"aed": 38592480.1597887, "ars": 627211293.6320372, "aud": 15131123.568262305, "bch": 47171.55689494358, "bdt": 890757596.3280838, "bhd": 3961969.439075074, "bmd": 10506973.159740832, "bnb": 751021.4741158845, "brl": 42671507.7868364, "btc": 1430.8446253415868, "cad": 13644933.228763226, "chf": 10205023.765076201, "clp": 8030487035.433886, "cny": 73186321.5441748, "czk": 238697374.21509916, "dkk": 70331051.58801512, "eos": 3922300.368790862, "eth": 77826.33940414543, "eur": 9411053.83128722, "gbp": 8030679.218479945, "hkd": 81758645.73601243, "huf": 3102902019.0568423, "idr": 146383070723.35532, "ils": 36497967.595260195, "inr": 754018723.3810881, "jpy": 1134043880.5637274, "krw": 12250552747.18521, "kwd": 3183886.0487036216, "lkr": 1905981353.576034, "ltc": 243376.00558724048, "mmk": 15387385155.313173, "mxn": 199032121.58872864, "myr": 43104857.38783679, "ngn": 3818738958.84501, "nok": 92843912.19149235, "nzd": 15787389.11181961, "php": 536756204.8302504, "pkr": 1627472438.1472614, "pln": 39936899.910443336, "rub": 652047666.2800579, "sar": 39422163.29534764, "sek": 98860667.32957889, "sgd": 14184098.556455333, "thb": 316785545.4684075, "try": 62723845.41576538, "twd": 315758551.88388157, "uah": 248660044.13727248, "usd": 10506973.159740832, "vef": 2610852987553.4756, "vnd": 242707490713.41968, "xag": 577989.0137962699, "xau": 6694.517948728864, "xdr": 7606743.865430735, "xlm": 231923881.27723888, "xrp": 54261361.7776447, "zar": 150429017.68126538, "bits": 1430844625.3415868, "link": 5862170.23273578, "sats": 143084462534.1587}, "total_volume": {"aed": 5771101.9912085775, "ars": 93829038.20887515, "aud": 2263094.1622781293, "bch": 7058.811047794847, "bdt": 133203487.22260822, "bhd": 592471.1141725921, "bmd": 1571208.00406437, "bnb": 112220.08219839184, "brl": 6381077.933754446, "btc": 213.919312696556, "cad": 2040683.3844708016, "chf": 1526481.997020675, "clp": 1200875391.4928741, "cny": 10944249.352310363, "czk": 35713473.08715091, "dkk": 10520093.895573186, "eos": 585943.7738250977, "eth": 11634.15399038913, "eur": 1407693.9582893965, "gbp": 1201142.9540750927, "hkd": 12227085.695348796, "huf": 464119039.61930203, "idr": 21896922266.543392, "ils": 5457889.531638372, "inr": 112755618.13845816, "jpy": 169595406.3547062, "krw": 1831942105.300376, "kwd": 476116.87663961004, "lkr": 285019587.7353872, "ltc": 36369.15301831456, "mmk": 2301022601.8551826, "mxn": 29769662.34092769, "myr": 6445880.836674076, "ngn": 571052493.0776274, "nok": 13886955.395874513, "nzd": 2361121.8296516947, "php": 80295034.2654097, "pkr": 243371490.75521255, "pln": 5974139.774325784, "rub": 97506912.47754093, "sar": 5895172.43124951, "sek": 14788249.014453962, "sgd": 2121375.9139355347, "thb": 47381714.6620301, "try": 9379695.414143227, "twd": 47218390.732423544, "uah": 37184510.296124205, "usd": 1571208.00406437, "vef": 390425772400.14343, "vnd": 36305728091.089806, "xag": 86413.29780753229, "xau": 1000.8123623488832, "xdr": 1137509.0299104874, "xlm": 34652690.41943635, "xrp": 8109436.346880885, "zar": 22495259.955590237, "bits": 213919312.696556, "link": 876427.3946220204, "sats": 21391931269.6556}}, "community_data": {"facebook_likes": null, "twitter_followers": 50964, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9207, "reddit_accounts_active_48h": "50.4615384615385"}, "developer_data": {"forks": 110, "stars": 189, "subscribers": 37, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 551, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 1648, "deletions": -413}, "commit_count_4_weeks": 11}, "public_interest_stats": {"alexa_rank": 296858, "bing_matches": null}}, "PPT_20200116": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 1.2676208410076284, "ars": 20.574233715731236, "aud": 0.500089817151405, "bch": 0.0012912461803092877, "bdt": 29.199832917584402, "bhd": 0.12986083745365035, "bmd": 0.345130406291428, "bnb": 0.02257752850357463, "brl": 1.41267880564151, "btc": 4.2335351338528244e-05, "cad": 0.4509322031225035, "chf": 0.33591266340019643, "clp": 267.0617161506707, "cny": 2.3880608202522753, "czk": 7.847299419059862, "dkk": 2.3201039529926826, "eos": 0.1083603607575588, "eth": 0.002379386798388366, "eur": 0.3104582605449848, "gbp": 0.2645928454616979, "hkd": 2.6808159617369514, "huf": 103.64474214566569, "idr": 4739.752694593221, "ils": 1.1958043804144767, "inr": 24.491250536547856, "jpy": 37.814471813124996, "krw": 399.98198348897654, "kwd": 0.10462938884090285, "lkr": 62.4382734786437, "ltc": 0.006788913572475811, "mmk": 505.77325729396284, "mxn": 6.48873464521202, "myr": 1.4069517116795076, "ngn": 125.1829595992096, "nok": 3.0687867151005195, "nzd": 0.5200483634168289, "php": 17.445124072827884, "pkr": 53.354318663758846, "pln": 1.3154341721040235, "rub": 21.058349862288242, "sar": 1.2948947713648096, "sek": 3.279650004041173, "sgd": 0.4653462294108602, "thb": 10.435178319860245, "try": 2.028716563308144, "twd": 10.339082625445291, "uah": 8.239802079788431, "usd": 0.345130406291428, "vef": 85760.64092503549, "vnd": 7982.268480577747, "xag": 0.019118702483453376, "xau": 0.00022141150954813968, "xdr": 0.2502067747362526, "xlm": 7.075883632181643, "xrp": 1.6085424381233953, "zar": 4.946320974715158, "bits": 42.33535133852824, "link": 0.15509439329662975, "sats": 4233.535133852824}, "market_cap": {"aed": 45922197.93441577, "ars": 745344350.9904047, "aud": 18116792.360369794, "bch": 46768.96734178796, "bdt": 1057824598.2665358, "bhd": 4704478.570055035, "bmd": 12503065.836549249, "bnb": 817945.54670473, "brl": 51177224.00245162, "btc": 1533.6776660684607, "cad": 16335955.6871384, "chf": 12169133.954186691, "clp": 9674865380.114141, "cny": 86512463.44283521, "czk": 284284721.0418537, "dkk": 84050584.77348699, "eos": 3923487.106284224, "eth": 86193.15894408936, "eur": 11246995.339543676, "gbp": 9585425.411327142, "hkd": 97118126.52335906, "huf": 3754746064.2027416, "idr": 171707386278.27737, "ils": 43320497.47981748, "inr": 887246421.340552, "jpy": 1369907785.6808968, "krw": 14490178152.467354, "kwd": 3790416.9359424305, "lkr": 2261956146.989699, "ltc": 245882.87377742038, "mmk": 18322686784.579136, "mxn": 235067890.24111128, "myr": 50969748.127959974, "ngn": 4535012728.381204, "nok": 111173172.91606733, "nzd": 18839832.15463159, "php": 631985854.7182282, "pkr": 1932871015.5833445, "pln": 47654335.1662139, "rub": 762882463.9546621, "sar": 46910252.71214919, "sek": 118812133.54102644, "sgd": 16858133.728736144, "thb": 378036009.49368054, "try": 73494471.34287348, "twd": 374554743.36361283, "uah": 298503945.19206136, "usd": 12503065.836549249, "vef": 3106857350508.114, "vnd": 289174255638.90137, "xag": 692614.7088244898, "xau": 8021.091826121447, "xdr": 9064260.118062248, "xlm": 256175715.45220572, "xrp": 58264609.62554607, "zar": 179190751.28763598, "bits": 1533677666.0684607, "link": 5618585.877070654, "sats": 153367766606.84607}, "total_volume": {"aed": 16583801.45624839, "ars": 269164876.4506902, "aud": 6542484.92107314, "bch": 16892.882786911727, "bdt": 382010310.96642536, "bhd": 1698919.957454787, "bmd": 4515209.871353745, "bnb": 295373.22041695367, "brl": 18481539.649968505, "btc": 553.8573037506936, "cad": 5899374.548676471, "chf": 4394617.6461096285, "clp": 3493866883.481631, "cny": 31242091.662857942, "czk": 102663234.40215425, "dkk": 30353037.808768675, "eos": 1417637.3962914278, "eth": 31128.61273306701, "eur": 4061607.372467677, "gbp": 3461567.587033862, "hkd": 35072095.860184446, "huf": 1355944751.0830534, "idr": 62008382235.47261, "ils": 15644254.010167744, "inr": 320409718.09085476, "jpy": 494712355.9622763, "krw": 5232812198.784044, "kwd": 1368826.509389728, "lkr": 816856190.0715351, "ltc": 88816.7748173614, "mmk": 6616839207.357775, "mxn": 84889648.05354513, "myr": 18406614.25736323, "ngn": 1637721060.2254224, "nok": 40147769.70244957, "nzd": 6803594.992723614, "php": 228227924.82129586, "pkr": 698014263.3579971, "pln": 17209325.086196113, "rub": 275498383.91328734, "sar": 16940615.916332133, "sek": 42906413.93192093, "sgd": 6087947.773743709, "thb": 136519470.0329706, "try": 26540927.3881624, "twd": 135262286.60285982, "uah": 107798197.46523996, "usd": 4515209.871353745, "vef": 1121973855155.9834, "vnd": 104428983312.6641, "xag": 250122.71479746499, "xau": 2896.6425887695673, "xdr": 3273360.0939662266, "xlm": 92571094.98952447, "xrp": 21043949.077536162, "zar": 64710836.49772491, "bits": 553857303.7506937, "link": 2029040.9736117064, "sats": 55385730375.06937}}, "community_data": {"facebook_likes": null, "twitter_followers": 23673, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 813674, "bing_matches": null}}, "QKC_20200211": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.014453686421452122, "ars": 0.23883342668433472, "aud": 0.005897072579012804, "bch": 8.93165038825608e-06, "bdt": 0.3339584022110696, "bhd": 0.001483586502892599, "bmd": 0.003935117457514876, "bnb": 0.0001778448387514647, "brl": 0.01700206848693875, "btc": 4.0139407005726596e-07, "cad": 0.005236027937794723, "chf": 0.0038471124906950113, "clp": 3.1173961186609422, "cny": 0.027552118390536146, "czk": 0.08999613625336529, "dkk": 0.026864653370708282, "eos": 0.0008558567957942855, "eth": 1.7622221600148227e-05, "eur": 0.0035951941412998263, "gbp": 0.003053556704212563, "hkd": 0.030554022743001365, "huf": 1.2157545384992188, "idr": 53.839157512801876, "ils": 0.013493045547723615, "inr": 0.2814238600916337, "jpy": 0.43187910314578054, "krw": 4.692194705166152, "kwd": 0.0011970745359283985, "lkr": 0.7140010633450341, "ltc": 5.294222134706849e-05, "mmk": 5.709656247013727, "mxn": 0.07383578939058896, "myr": 0.016297682462043595, "ngn": 1.4304151958066573, "nok": 0.03660131449583734, "nzd": 0.006147424751659924, "php": 0.20047126517978353, "pkr": 0.6082215920271443, "pln": 0.015363485577629565, "rub": 0.2524004012837327, "sar": 0.014762467218108413, "sek": 0.03801874380403422, "sgd": 0.005468829486581297, "thb": 0.12327372068570937, "try": 0.023670912042189237, "twd": 0.1187539746328838, "uah": 0.09669876672710576, "usd": 0.003935117457514876, "vef": 977.8280589592687, "vnd": 91.46933786716916, "xag": 0.00022238627665590262, "xau": 2.505804094596322e-06, "xdr": 0.0028675830531704103, "xlm": 0.054658888015934895, "xrp": 0.014066954222539054, "zar": 0.059328860829936526, "bits": 0.40139407005726596, "link": 0.0011862400412167475, "sats": 40.139407005726596}, "market_cap": {"aed": 53849683.368013844, "ars": 889814821.605701, "aud": 21970553.526519135, "bch": 33337.28501828285, "bdt": 1244219204.2068076, "bhd": 5527355.5202672575, "bmd": 14660953.816502545, "bnb": 662665.8508174996, "brl": 63344117.0595809, "btc": 1496.91219279845, "cad": 19507718.538700167, "chf": 14333076.245350283, "clp": 11614392967.140451, "cny": 102650134.24162427, "czk": 335296013.78341264, "dkk": 100088865.60988125, "eos": 3188758.471722114, "eth": 65842.67065017659, "eur": 13394511.30392542, "gbp": 11376548.298714375, "hkd": 113834242.8605431, "huf": 4529501681.608457, "idr": 200586999076.02646, "ils": 50270651.322329335, "inr": 1048492773.1409963, "jpy": 1609039540.4693878, "krw": 17481574721.259438, "kwd": 4459906.133841526, "lkr": 2660133205.0825186, "ltc": 197994.58001854914, "mmk": 21272301894.245846, "mxn": 275087874.7451819, "myr": 60719806.326427005, "ngn": 5329256712.298676, "nok": 136364463.63805348, "nzd": 22903283.408325043, "php": 746890020.9633781, "pkr": 2266033674.2631783, "pln": 57239295.890389256, "rub": 940360908.2673821, "sar": 55000099.09208723, "sek": 141645339.20275766, "sgd": 20375060.566484436, "thb": 459277352.01657337, "try": 88190035.4924077, "twd": 442438264.27441376, "uah": 360267811.1657088, "usd": 14660953.816502545, "vef": 3643065846866.906, "vnd": 340784678621.39056, "xag": 828538.1482704619, "xau": 9335.802171272495, "xdr": 10683671.621346474, "xlm": 203934795.9014381, "xrp": 52435252.00758812, "zar": 221039828.67203054, "bits": 1496912192.79845, "link": 4423825.147765014, "sats": 149691219279.845}, "total_volume": {"aed": 8584735.182861399, "ars": 141854587.20463693, "aud": 3502553.2565727467, "bch": 5304.934055804445, "bdt": 198353856.68935198, "bhd": 881172.9324151773, "bmd": 2337254.337833218, "bnb": 105630.54986816455, "brl": 10098341.092042187, "btc": 238.40712292596896, "cad": 3109927.2493775035, "chf": 2284983.9818219147, "clp": 1851570551.51439, "cny": 16364519.971773053, "czk": 53453006.706245735, "dkk": 15956201.63895358, "eos": 508334.2568883588, "eth": 10466.679666333435, "eur": 2135357.633622509, "gbp": 1813653.2720544687, "hkd": 18147494.443389118, "huf": 722094727.6735713, "idr": 31977648901.374977, "ils": 8014164.653909569, "inr": 167151081.2244803, "jpy": 256513641.11618245, "krw": 2786918699.888944, "kwd": 710999.7813318787, "lkr": 424079357.36042833, "ltc": 31444.915643282155, "mmk": 3391237739.393174, "mxn": 43854604.31706607, "myr": 9679972.565570047, "ngn": 849591951.8023747, "nok": 21739270.04705431, "nzd": 3651249.37754571, "php": 119069465.95903258, "pkr": 361251873.5913475, "pln": 9125108.385768441, "rub": 149912661.8557914, "sar": 8768134.856242504, "sek": 22581149.05954185, "sgd": 3248199.216003713, "thb": 73218154.6101729, "try": 14059286.018368157, "twd": 70533661.40713078, "uah": 57434019.2983162, "usd": 2337254.337833218, "vef": 580778819725.7252, "vnd": 54328011556.68303, "xag": 132085.83870755314, "xau": 1488.316817245436, "xdr": 1703194.6320484711, "xlm": 32464526.02638761, "xrp": 8355036.445975365, "zar": 35238246.083013706, "bits": 238407122.92596897, "link": 704564.657085542, "sats": 23840712292.596897}}, "community_data": {"facebook_likes": null, "twitter_followers": 50762, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 9206, "reddit_accounts_active_48h": "11.5384615384615"}, "developer_data": {"forks": 111, "stars": 190, "subscribers": 39, "total_issues": 226, "closed_issues": 195, "pull_requests_merged": 553, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 789, "deletions": -155}, "commit_count_4_weeks": 13}, "public_interest_stats": {"alexa_rank": 327738, "bing_matches": null}}, "STEEL_20210617": {"id": "steel", "symbol": "steel", "name": "Steel", "localization": {"en": "Steel", "de": "Steel", "es": "Steel", "fr": "Steel", "it": "Steel", "pl": "Steel", "ro": "Steel", "hu": "Steel", "nl": "Steel", "pt": "Steel", "sv": "Steel", "vi": "Steel", "tr": "Steel", "ru": "Steel", "ja": "Steel", "zh": "Steel", "zh-tw": "Steel", "ko": "Steel", "ar": "Steel", "th": "Steel", "id": "Steel"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14589/thumb/logo_-_2021-03-31T123426.828.png?1617165280", "small": "https://assets.coingecko.com/coins/images/14589/small/logo_-_2021-03-31T123426.828.png?1617165280"}, "market_data": {"current_price": {"aed": 9.02007057248187, "ars": 233.60823089995748, "aud": 3.186012843849597, "bch": 0.004007151192109799, "bdt": 208.4339964098012, "bhd": 0.9256102903282258, "bmd": 2.455779455437034, "bnb": 0.0067195186568165255, "brl": 12.564504427852471, "btc": 6.30574336155674e-05, "cad": 2.985908566482223, "chf": 2.2049756112121566, "clp": 1773.0741715313845, "cny": 15.713796001504925, "czk": 51.53968900920254, "dkk": 15.08013859595686, "dot": 0.11154864320155915, "eos": 0.4832843866617115, "eth": 0.000979721782620775, "eur": 2.0279777627409894, "gbp": 1.7394531460806053, "hkd": 19.061146188238396, "huf": 706.3312869727993, "idr": 34845.58560324497, "ils": 7.989338186784179, "inr": 179.8412776252051, "jpy": 269.4112851587195, "krw": 2742.003127080864, "kwd": 0.738359562630609, "lkr": 486.64495084643613, "ltc": 0.014376368158069204, "mmk": 4045.54851171379, "mxn": 48.81401939161293, "myr": 10.100620900212524, "ngn": 1011.7811356400565, "nok": 20.505512874953638, "nzd": 3.439756256082627, "php": 117.31578201107803, "pkr": 383.0083343675771, "pln": 9.122680405468376, "rub": 177.05261235302478, "sar": 9.209909691725493, "sek": 20.430761404109617, "sgd": 3.2556636607647036, "thb": 76.30693944910671, "try": 20.599814806042467, "twd": 67.91703661956682, "uah": 66.41174941190005, "usd": 2.455779455437034, "vef": 0.24589719687290978, "vnd": 56537.87091122283, "xag": 0.08816555217450867, "xau": 0.0013103302440375382, "xdr": 1.7035398273242943, "xlm": 7.115838459365917, "xrp": 2.7806822934874402, "yfi": 6.374122687695234e-05, "zar": 33.69683045101187, "bits": 63.0574336155674, "link": 0.10530551389595985, "sats": 6305.74336155674}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 66488639.163436234, "ars": 1721970271.1973639, "aud": 23484700.772856947, "bch": 29537.466203239874, "bdt": 1536406247.082286, "bhd": 6822847.793159055, "bmd": 18102012.923897337, "bnb": 49530.83767304967, "brl": 92615328.72253576, "btc": 464.80822035122964, "cad": 22009694.453779034, "chf": 16253290.548005521, "clp": 13069663685.405252, "cny": 115829350.09614173, "czk": 379908755.4351256, "dkk": 111158542.00742717, "dot": 822246.0597621081, "eos": 3562380.243021953, "eth": 7221.713795007245, "eur": 14948606.068528559, "gbp": 12821836.774125723, "hkd": 140503298.81206018, "huf": 5206500957.17135, "idr": 256853374815.1492, "ils": 58890916.60505663, "inr": 1325643931.3449345, "jpy": 1985881327.8161554, "krw": 20211821519.189095, "kwd": 5442587.409724819, "lkr": 3587151594.6059847, "ltc": 105970.91755121064, "mmk": 29820500078.360703, "mxn": 359817331.2908916, "myr": 74453579.15598978, "ngn": 7458029324.645693, "nok": 151149997.71325, "nzd": 25355091.258218627, "php": 864756726.1954024, "pkr": 2823226574.085183, "pln": 67244995.56943528, "rub": 1305088154.3651779, "sar": 67887979.06849207, "sek": 150598990.5418597, "sgd": 23998110.06340453, "thb": 562472823.4583923, "try": 151845115.009528, "twd": 500629269.42330635, "uah": 489533513.88750964, "usd": 18102012.923897337, "vef": 1812554.5540698376, "vnd": 416751295666.51605, "xag": 649884.8914840682, "xau": 9658.691035803904, "xdr": 12557112.93712665, "xlm": 52452185.58638205, "xrp": 20496932.94017898, "yfi": 469.8485892766473, "zar": 248385684.2144814, "bits": 464808220.3512296, "link": 776226.7777271061, "sats": 46480822035.12296}}, "community_data": {"facebook_likes": null, "twitter_followers": 14430, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 5, "stars": 7, "subscribers": 0, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 98686, "bing_matches": null}}, "ITEN_20210618": {"id": "iten", "symbol": "iten", "name": "ITEN", "localization": {"en": "ITEN", "de": "ITEN", "es": "ITEN", "fr": "ITEN", "it": "ITEN", "pl": "ITEN", "ro": "ITEN", "hu": "ITEN", "nl": "ITEN", "pt": "ITEN", "sv": "ITEN", "vi": "ITEN", "tr": "ITEN", "ru": "ITEN", "ja": "ITEN", "zh": "ITEN", "zh-tw": "ITEN", "ko": "ITEN", "ar": "ITEN", "th": "ITEN", "id": "ITEN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12314/thumb/logo-light_%281%29.png?1599084234", "small": "https://assets.coingecko.com/coins/images/12314/small/logo-light_%281%29.png?1599084234"}, "market_data": {"current_price": {"aed": 0.0007959852932493886, "ars": 0.020644562921475942, "aud": 0.00028092351918450846, "bch": 3.3859714856131095e-07, "bdt": 0.018379533374463394, "bhd": 8.17070278829583e-05, "bmd": 0.00021670077677485235, "bnb": 5.841653815595024e-07, "brl": 0.001096527600558429, "btc": 5.3398835905377266e-09, "cad": 0.00026309532957846427, "chf": 0.00019490002852897207, "clp": 0.1558945388118289, "cny": 0.0013866032603492497, "czk": 0.0045457410791379235, "dkk": 0.0013293389965826079, "dot": 8.342512454365676e-06, "eos": 4.082942456098927e-05, "eth": 8.378190845304694e-08, "eur": 0.0001787590711708971, "gbp": 0.00015355785433586534, "hkd": 0.0016820563499157313, "huf": 0.06255718023936456, "idr": 3.084508021574411, "ils": 0.0007033825503101885, "inr": 0.01585839016349853, "jpy": 0.023847920484072516, "krw": 0.24212160294448443, "kwd": 6.521198145563304e-05, "lkr": 0.042917025201539116, "ltc": 1.2104360428888984e-06, "mmk": 0.35677542339968066, "mxn": 0.004321784943655877, "myr": 0.000891723696428515, "ngn": 0.08939966383709938, "nok": 0.0018011856516407167, "nzd": 0.00030328097172592353, "php": 0.010380900537760987, "pkr": 0.033773550025891656, "pln": 0.0008073362966376301, "rub": 0.015612077442278155, "sar": 0.0008126976905558179, "sek": 0.0018034395564199552, "sgd": 0.00028749301993321463, "thb": 0.006743403122068244, "try": 0.0018343937454768035, "twd": 0.005994788835322636, "uah": 0.005851355457978427, "usd": 0.00021670077677485235, "vef": 2.169824877846596e-05, "vnd": 4.971793224326405, "xag": 7.778214341401186e-06, "xau": 1.1604109895516581e-07, "xdr": 0.00015070368840496394, "xlm": 0.000626359147523346, "xrp": 0.00024276000660261815, "yfi": 5.491738261250921e-09, "zar": 0.002984507114116116, "bits": 0.0053398835905377265, "link": 8.712434643229349e-06, "sats": 0.5339883590537726}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 127.18054019215418, "ars": 3298.5366521861224, "aud": 44.8852575865028, "bch": 0.05410020590425486, "bdt": 2936.635893738325, "bhd": 13.05494464756937, "bmd": 34.62390836114397, "bnb": 0.09333648425212339, "brl": 175.2004386982244, "btc": 0.0008531932503871416, "cad": 42.03671402172307, "chf": 31.140639308287835, "clp": 24908.439675006994, "cny": 221.54800243045224, "czk": 726.3071452719596, "dkk": 212.39846152647766, "dot": 1.3329457836774117, "eos": 6.523623382793462, "eth": 0.013386463877856707, "eur": 28.561677494008013, "gbp": 24.535090071148723, "hkd": 268.75475844866077, "huf": 9995.22986569507, "idr": 492834.9804171055, "ils": 112.38470543218614, "inr": 2533.8139343483867, "jpy": 3810.3611151438963, "krw": 38685.58441446236, "kwd": 10.419407367027409, "lkr": 6857.174994138916, "ltc": 0.19340044484268096, "mmk": 57004.68521224248, "mxn": 690.5239938349769, "myr": 142.47738290610704, "ngn": 14284.054788732146, "nok": 287.7889404550246, "nzd": 48.45747545993875, "php": 1658.634335672106, "pkr": 5396.253389261904, "pln": 128.99417513601895, "rub": 2494.458703533598, "sar": 129.85080525278218, "sek": 288.1490637258894, "sgd": 45.934915992379196, "thb": 1077.4440923362588, "try": 293.09484666791997, "twd": 957.8323731357624, "uah": 934.9149466871481, "usd": 34.62390836114397, "vef": 3.4668919442013446, "vnd": 794380.6918998123, "xag": 1.2427836419332279, "xau": 0.018540756688309006, "xdr": 24.07905857412413, "xlm": 100.0780986934114, "xrp": 38.78758695494982, "yfi": 0.000877456210037019, "zar": 476.85708542568767, "bits": 853.1932503871416, "link": 1.3920510262085772, "sats": 85319.32503871416}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "GDM_20210619": {"id": "goldmoney", "symbol": "gdm", "name": "Goldmoney", "localization": {"en": "Goldmoney", "de": "Goldmoney", "es": "Goldmoney", "fr": "Goldmoney", "it": "Goldmoney", "pl": "Goldmoney", "ro": "Goldmoney", "hu": "Goldmoney", "nl": "Goldmoney", "pt": "Goldmoney", "sv": "Goldmoney", "vi": "Goldmoney", "tr": "Goldmoney", "ru": "Goldmoney", "ja": "Goldmoney", "zh": "Goldmoney", "zh-tw": "Goldmoney", "ko": "Goldmoney", "ar": "Goldmoney", "th": "Goldmoney", "id": "Goldmoney"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15767/thumb/20210402_171342.png?1621828239", "small": "https://assets.coingecko.com/coins/images/15767/small/20210402_171342.png?1621828239"}, "market_data": {"current_price": {"aed": 0.036529677416986525, "ars": 0.9466797374444614, "aud": 0.01293862835678548, "bch": 1.5751003034276154e-05, "bdt": 0.8432235479461953, "bhd": 0.00374922461519287, "bmd": 0.009944919257591871, "bnb": 2.695012905736503e-05, "brl": 0.05017479283783134, "btc": 2.4640146101742997e-07, "cad": 0.012118182462953419, "chf": 0.008937021580673448, "clp": 7.230956540358372, "cny": 0.06370715276413347, "czk": 0.2087965632889186, "dkk": 0.06099366165486108, "dot": 0.0004123502852953421, "eos": 0.0019039915645791348, "eth": 3.883641960656843e-06, "eur": 0.008200978216580569, "gbp": 0.007062145732716684, "hkd": 0.07720389993457422, "huf": 2.881390067267421, "idr": 141.6529436753242, "ils": 0.03223496403559546, "inr": 0.7294265916242055, "jpy": 1.0946869872794258, "krw": 11.107983442214517, "kwd": 0.0029925952682367607, "lkr": 1.968964927951227, "ltc": 5.6524001648357574e-05, "mmk": 16.36822197419987, "mxn": 0.1992331311340478, "myr": 0.04094323258350572, "ngn": 4.0946765018825975, "nok": 0.08272967498102415, "nzd": 0.013961403632913264, "php": 0.4779145614154824, "pkr": 1.5489180417203663, "pln": 0.037128073153634956, "rub": 0.7184647248131701, "sar": 0.037296599755374256, "sek": 0.08277255747286288, "sgd": 0.013202586403720495, "thb": 0.3098836840665622, "try": 0.08511495392003837, "twd": 0.27423711547965063, "uah": 0.26776384819585314, "usd": 0.009944919257591871, "vef": 0.0009957847652626742, "vnd": 228.08977598462366, "xag": 0.00035911332172307227, "xau": 5.351957747665627e-06, "xdr": 0.006903295537415163, "xlm": 0.029570926504620707, "xrp": 0.011397918709104643, "yfi": 2.536375235005414e-07, "zar": 0.13697087568884994, "bits": 0.24640146101742996, "link": 0.0004017770141934563, "sats": 24.640146101742996}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 2375.7694586170655, "ars": 61568.92056939796, "aud": 841.4856155328033, "bch": 1.0243931673488345, "bdt": 54840.472012100065, "bhd": 243.8371747057529, "bmd": 646.7846723883973, "bnb": 1.7527473015817838, "brl": 3263.202657276341, "btc": 0.01602513646538861, "cad": 788.1265268454335, "chf": 581.234339411178, "clp": 470277.50913514383, "cny": 4143.302611320069, "czk": 13579.43823219612, "dkk": 3966.8261198895552, "dot": 26.81789939927486, "eos": 123.82931710445932, "eth": 0.2525792344950132, "eur": 533.3645122383685, "gbp": 459.298612264483, "hkd": 5021.08642945198, "huf": 187396.0846145688, "idr": 9212639.177332236, "ils": 2096.455497846135, "inr": 47439.49416531387, "jpy": 71194.82281315287, "krw": 722426.5220739614, "kwd": 194.6285032610986, "lkr": 128054.96986785508, "ltc": 3.676134208963582, "mmk": 1064535.0467859874, "mxn": 12957.46421984053, "myr": 2662.8124962230313, "ngn": 266304.2234138661, "nok": 5380.464571248531, "nzd": 908.003538379916, "php": 31081.983174351764, "pkr": 100736.508987321, "pln": 2414.6871391393393, "rub": 46726.570585896334, "sar": 2425.6475521976427, "sek": 5383.253506755869, "sgd": 858.652574307337, "thb": 20153.810391622428, "try": 5535.59522813622, "twd": 17835.475411913503, "uah": 17414.475507239837, "usd": 646.7846723883973, "vef": 64.76254924625025, "vnd": 14834205.00601233, "xag": 23.355543280419713, "xau": 0.348073639292539, "xdr": 448.96752069242274, "xlm": 1923.1953036634088, "xrp": 741.2829533583299, "yfi": 0.01649574604816108, "zar": 8908.132953571776, "bits": 16025.136465388608, "link": 26.13024880015246, "sats": 1602513.6465388609}}, "community_data": {"facebook_likes": null, "twitter_followers": 147525, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1835807, "bing_matches": null}}, "TOP_20210623": {"id": "top-network", "symbol": "top", "name": "TOP Network", "localization": {"en": "TOP Network", "de": "TOP Network", "es": "TOP Network", "fr": "TOP Network", "it": "TOP Network", "pl": "TOP Network", "ro": "TOP Network", "hu": "TOP Network", "nl": "TOP Network", "pt": "TOP Network", "sv": "TOP Network", "vi": "TOP Network", "tr": "TOP Network", "ru": "TOP Network", "ja": "\u30c8\u30c3\u30d7\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "TOP Network", "zh-tw": "TOP Network", "ko": "TOP Network", "ar": "TOP Network", "th": "TOP Network", "id": "TOP Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/7058/thumb/topnetwork-logo.png?1547043514", "small": "https://assets.coingecko.com/coins/images/7058/small/topnetwork-logo.png?1547043514"}, "market_data": {"current_price": {"aed": 0.006642460047946432, "ars": 0.17246075400355154, "aud": 0.0024183032190456697, "bch": 3.2574956298900096e-06, "bdt": 0.15328757184110536, "bhd": 0.0006816374556892843, "bmd": 0.0018084070806529719, "bnb": 5.395987495184513e-06, "brl": 0.009205063301585735, "btc": 5.079279394915672e-08, "cad": 0.002253926249042636, "chf": 0.0016692501557967253, "clp": 1.353774871564426, "cny": 0.011669831732161672, "czk": 0.03899468188011997, "dkk": 0.011335827986400492, "dot": 8.865779891649098e-05, "eos": 0.00040322767787078, "eth": 8.311095853641403e-07, "eur": 0.0015242358004062435, "gbp": 0.0013093482122334952, "hkd": 0.014037741879497887, "huf": 0.542475105611796, "idr": 26.20291439512123, "ils": 0.005928609436929485, "inr": 0.13408271542864172, "jpy": 0.19927735401793478, "krw": 2.0529941383112846, "kwd": 0.0005449092215423554, "lkr": 0.3594796172156511, "ltc": 1.1806648645280854e-05, "mmk": 2.977126147442674, "mxn": 0.03738800260931385, "myr": 0.007486805313903279, "ngn": 0.7414469030677154, "nok": 0.015684495451211266, "nzd": 0.00260746440808905, "php": 0.08770911237582928, "pkr": 0.28364865060041833, "pln": 0.006939762172005764, "rub": 0.1316513121087042, "sar": 0.006781584421475228, "sek": 0.015568775482120292, "sgd": 0.0024318282956018724, "thb": 0.05684984451838045, "try": 0.015808913858360196, "twd": 0.05026377060320897, "uah": 0.04918396711853691, "usd": 0.0018084070806529719, "vef": 0.00018107580098578215, "vnd": 41.773440825804016, "xag": 7.008787261867217e-05, "xau": 1.0249327970308786e-06, "xdr": 0.0012656100785808195, "xlm": 0.006188086600450622, "xrp": 0.002375123078754009, "yfi": 5.419479851615667e-08, "zar": 0.025955361549850606, "bits": 0.050792793949156714, "link": 8.8326768073895e-05, "sats": 5.079279394915671}, "market_cap": {"aed": 27273414.193692084, "ars": 708110179.3829304, "aud": 9929361.24009687, "bch": 13332.464213848532, "bdt": 629386613.9037268, "bhd": 2798749.337558395, "bmd": 7425176.062097956, "bnb": 22087.08740494908, "brl": 37795259.93248788, "btc": 208.2084317261788, "cad": 9254442.436756408, "chf": 6853808.764119521, "clp": 5558492265.016117, "cny": 47915403.64632439, "czk": 160109071.42701837, "dkk": 46544010.75353525, "dot": 361373.54258798185, "eos": 1649775.4815845897, "eth": 3401.6961897444417, "eur": 6258391.320875946, "gbp": 5376079.9249450285, "hkd": 57637854.93027477, "huf": 2227359764.0517697, "idr": 107587088551.76851, "ils": 24342400.19493951, "inr": 550532996.4657978, "jpy": 818217012.4206313, "krw": 8429431124.496723, "kwd": 2237354.0510313665, "lkr": 1475994800.6828275, "ltc": 48303.733409037945, "mmk": 12223843868.08277, "mxn": 153512173.7546474, "myr": 30740228.897085544, "ngn": 3044322185.460156, "nok": 64399294.50418196, "nzd": 10706042.081368394, "php": 360126659.8700305, "pkr": 1164638865.3400655, "pln": 28494113.138300855, "rub": 540549847.2503076, "sar": 27844647.838501368, "sek": 63924157.48796825, "sgd": 9984894.131865306, "thb": 233420953.26205683, "try": 64910146.617254145, "twd": 206379056.0579818, "uah": 201945468.5809511, "usd": 7425176.062097956, "vef": 743482.8790978689, "vnd": 171518435295.67966, "xag": 287775.24683415244, "xau": 4208.292784954641, "xdr": 5196494.6167071415, "xlm": 25302333.152683616, "xrp": 9701806.903510824, "yfi": 221.86642798060748, "zar": 106570656.20062779, "bits": 208208431.72617877, "link": 360180.7768909531, "sats": 20820843172.617878}, "total_volume": {"aed": 1145428.156738288, "ars": 29739193.332303867, "aud": 417013.0612200091, "bch": 561.723696942894, "bdt": 26432963.028377883, "bhd": 117541.80360863947, "bmd": 311842.3557045242, "bnb": 930.4859894946399, "brl": 1587324.3668893855, "btc": 8.758727328251961, "cad": 388667.8384558905, "chf": 287846.086433061, "clp": 233445416.99638057, "cny": 2012349.9055968614, "czk": 6724256.716056646, "dkk": 1954754.1817100178, "dot": 15288.182158473857, "eos": 69532.72318923136, "eth": 143.31683044228183, "eur": 262839.7597714708, "gbp": 225784.4681701697, "hkd": 2420673.167732812, "huf": 93544598.8101092, "idr": 4518439812.980702, "ils": 1022331.5052474854, "inr": 23121270.805591766, "jpy": 34363457.31021958, "krw": 354019034.3135608, "kwd": 93964.33862088756, "lkr": 61988792.158352055, "ltc": 2035.9426624179096, "mmk": 513376684.36513615, "mxn": 6447200.3751309635, "myr": 1291027.352616726, "ngn": 127855365.8388544, "nok": 2704639.9352609045, "nzd": 449632.08346905775, "php": 15124590.316332705, "pkr": 48912473.49225457, "pln": 1196695.040016109, "rub": 22701998.758347098, "sar": 1169418.8128473489, "sek": 2684685.1429193737, "sgd": 419345.33019832306, "thb": 9803207.267716777, "try": 2726094.689333377, "twd": 8667502.355629388, "uah": 8481300.661353504, "usd": 311842.3557045242, "vef": 31224.77507669402, "vnd": 7203426890.088615, "xag": 12085.977508909966, "xau": 176.73977351909616, "xdr": 218242.24895509958, "xlm": 1067075.8389705885, "xrp": 409567.0625771918, "yfi": 9.345370197349638, "zar": 4475751.712908303, "bits": 8758727.328251962, "link": 15231.099083058829, "sats": 875872732.8251961}}, "community_data": {"facebook_likes": null, "twitter_followers": 10852, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 3252, "reddit_accounts_active_48h": "5.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1982919, "bing_matches": null}}, "DAI_20190414": {"id": "dai", "symbol": "dai", "name": "Dai", "localization": {"en": "Dai", "de": "Dai", "es": "Dai", "fr": "Dai", "it": "Dai", "pl": "Dai", "ro": "Dai", "hu": "Dai", "nl": "Dai", "pt": "Dai", "sv": "Dai", "vi": "Dai", "tr": "Dai", "ru": "Dai", "ja": "\u30c0\u30a4", "zh": "Dai", "zh-tw": "Dai", "ko": "Dai", "ar": "Dai", "th": "Dai", "id": "Dai"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9956/thumb/4943.png?1636636734", "small": "https://assets.coingecko.com/coins/images/9956/small/4943.png?1636636734"}}, "TNT_20190415": {"id": "tierion", "symbol": "tnt", "name": "Tierion", "localization": {"en": "Tierion", "de": "Tierion", "es": "Tierion", "fr": "Tierion", "it": "Tierion", "pl": "Tierion", "ro": "Tierion", "hu": "Tierion", "nl": "Tierion", "pt": "Tierion", "sv": "Tierion", "vi": "Tierion", "tr": "Tierion", "ru": "Tierion", "ja": "Tierion", "zh": "Tierion", "zh-tw": "Tierion", "ko": "\ud2f0\uc5d0\ub9ac\uc628", "ar": "Tierion", "th": "Tierion", "id": "Tierion"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/923/thumb/tierion.png?1547034767", "small": "https://assets.coingecko.com/coins/images/923/small/tierion.png?1547034767"}, "market_data": {"current_price": {"aed": 0.06985235237839992, "ars": 0.8122859667114051, "aud": 0.026690441976142742, "bch": 6.987899654220699e-05, "bdt": 1.60756200273263, "bhd": 0.007169639784138699, "bmd": 0.019016855520705332, "bnb": 0.0010779029523991664, "brl": 0.07335371680001657, "btc": 3.7693332934763553e-06, "cad": 0.02544027389421157, "chf": 0.01907017878358539, "clp": 12.625298291208168, "cny": 0.12778376067137937, "czk": 0.43247290378488323, "dkk": 0.12606431364576368, "eos": 0.0035744637471591474, "eth": 0.00011522230520954549, "eur": 0.016887766410318205, "gbp": 0.014564210935376324, "hkd": 0.14915965711942833, "huf": 5.439866605975366, "idr": 268.9011895911014, "ils": 0.06806608012248457, "inr": 1.3125466579550877, "jpy": 2.122813548065293, "krw": 21.71705883609026, "kwd": 0.0057847372808433484, "lkr": 3.3287193853169197, "ltc": 0.00023968626230325894, "mmk": 28.863036061005687, "mxn": 0.35811583867074004, "myr": 0.07849967790391957, "ngn": 6.846067987453919, "nok": 0.16224258812773013, "nzd": 0.028273652248807995, "php": 0.9885818969678071, "pkr": 2.6996700447224367, "pln": 0.07233545927116039, "rub": 1.2285763441729598, "sar": 0.07131415904542109, "sek": 0.1765315300794442, "sgd": 0.02578472619825811, "thb": 0.605791441039827, "try": 0.10907615725515174, "twd": 0.5869938878969886, "uah": 0.5080543120911637, "usd": 0.019016855520705332, "vef": 4725.453591177821, "vnd": 442.02163685770256, "xag": 0.001270019397072122, "xau": 1.4717714993139459e-05, "xdr": 0.013645753864292813, "xlm": 0.16384768750688752, "xrp": 0.057663083076938244, "zar": 0.2665093636048401, "bits": 3.7693332934763553, "link": 0.03898961839087828, "sats": 376.93332934763555}, "market_cap": {"aed": 29986967.5988476, "ars": 348706838.57320887, "aud": 11457959.417054774, "bch": 29967.72536926413, "bdt": 690111471.5213025, "bhd": 3077859.922851483, "bmd": 8163759.8579671495, "bnb": 461991.8449893284, "brl": 31490070.900136754, "btc": 1617.4993524295062, "cad": 10921273.843992004, "chf": 8186651.040608899, "clp": 5419923565.828491, "cny": 54856384.36561025, "czk": 185656610.14427176, "dkk": 54118241.69053245, "eos": 1532076.5836804302, "eth": 49399.480330106686, "eur": 7249761.631788861, "gbp": 6252280.797303007, "hkd": 64032858.633958235, "huf": 2335284326.1707997, "idr": 115436788955.63434, "ils": 29220137.471628997, "inr": 563464117.7273487, "jpy": 911304185.425158, "krw": 9322932120.199902, "kwd": 2483334.11119503, "lkr": 1428988386.996984, "ltc": 102818.80703324731, "mmk": 12390633925.642694, "mxn": 153735811.11026916, "myr": 33699184.317702614, "ngn": 2938953548.8681736, "nok": 69649239.68464462, "nzd": 12137616.916510122, "php": 424389047.8103317, "pkr": 1158943334.078819, "pln": 31052942.3785418, "rub": 527416440.120025, "sar": 30614507.655369736, "sek": 75783350.05800359, "sgd": 11069144.026299369, "thb": 260060652.15547335, "try": 46825383.57045345, "twd": 251991036.7761884, "uah": 218103008.36545038, "usd": 8163759.8579671495, "vef": 2028593438927.976, "vnd": 189755792770.41425, "xag": 545207.5587032959, "xau": 6318.178666876515, "xdr": 5857995.6874427665, "xlm": 70258255.87013993, "xrp": 24761983.340291917, "zar": 114410000.22325833, "bits": 1617499352.4295063, "link": 16731256.587966884, "sats": 161749935242.95062}, "total_volume": {"aed": 3715816.780341219, "ars": 43209794.98573427, "aud": 1419806.0450766264, "bch": 3717.2341246052483, "bdt": 85514741.62006846, "bhd": 381391.13303709804, "bmd": 1011607.3181096221, "bnb": 57339.36999582995, "brl": 3902072.90814424, "btc": 200.5108121015739, "cad": 1353302.9799840995, "chf": 1014443.8650296016, "clp": 671606519.3216225, "cny": 6797495.374037601, "czk": 23005525.48640701, "dkk": 6706028.8751560785, "eos": 190144.6682921226, "eth": 6129.284993122432, "eur": 898349.7859887051, "gbp": 774747.557432798, "hkd": 7934592.5799587285, "huf": 289375331.3818481, "idr": 14304279219.16777, "ils": 3620795.4933438655, "inr": 69821312.1039922, "jpy": 112923701.7059408, "krw": 1155245441.2080061, "kwd": 307720.8300957656, "lkr": 177072223.4521696, "ltc": 12750.182422762926, "mmk": 1535377837.3288248, "mxn": 19050079.16455206, "myr": 4175813.8484247113, "ngn": 364178634.51946396, "nok": 8630543.008562, "nzd": 1504025.3891312052, "php": 52587909.732735574, "pkr": 143609755.60597074, "pln": 3847906.3942960594, "rub": 65354486.143544905, "sar": 3793578.023276991, "sek": 9390647.55006516, "sgd": 1371626.223337019, "thb": 32225256.922040977, "try": 5802338.8141350765, "twd": 31225315.459523913, "uah": 27026101.110616665, "usd": 1011607.3181096221, "vef": 251371917350.80176, "vnd": 23513473198.615383, "xag": 67559.0617397548, "xau": 782.9132517045789, "xdr": 725889.9587900572, "xlm": 8715926.750184318, "xrp": 3067404.953562496, "zar": 14177045.320339844, "bits": 200510812.10157388, "link": 2074064.4136234713, "sats": 20051081210.15739}}, "community_data": {"facebook_likes": null, "twitter_followers": 17282, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.13, "reddit_subscribers": 2507, "reddit_accounts_active_48h": "158.0"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1084384, "bing_matches": null}}, "PPT_20190419": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 5.251620348068861, "ars": 59.4963681791171, "aud": 1.9935958524412016, "bch": 0.004559036154878776, "bdt": 120.55498282651668, "bhd": 0.5389829950979103, "bmd": 1.42972000238182, "bnb": 0.0736993155075348, "brl": 5.535875849222401, "btc": 0.0002831280253307287, "cad": 1.911901651505103, "chf": 1.435197259710946, "clp": 944.8540639621044, "cny": 9.591562579978909, "czk": 32.43354138683207, "dkk": 9.437407309882092, "eos": 0.2668286718763936, "eth": 0.008893840061084578, "eur": 1.2647346032669649, "gbp": 1.0913467396981125, "hkd": 11.209533815074357, "huf": 405.0396766747706, "idr": 20104.75032570772, "ils": 5.094664256487392, "inr": 99.31335538544948, "jpy": 160.06930688666506, "krw": 1623.0181467038426, "kwd": 0.43474782860426153, "lkr": 249.59472907952843, "ltc": 0.018221530110263635, "mmk": 2168.6944517680645, "mxn": 26.98682287695828, "myr": 5.883743882441947, "ngn": 514.9127195317709, "nok": 12.143612784230454, "nzd": 2.1130947096802783, "php": 73.81676398025382, "pkr": 202.6252301473605, "pln": 5.406843619007438, "rub": 91.9944757212568, "sar": 5.362307840933256, "sek": 13.25171870179649, "sgd": 1.9341452353021586, "thb": 45.45079887571792, "try": 8.30081136182862, "twd": 44.14272231057888, "uah": 38.198389753876015, "usd": 1.42972000238182, "vef": 355267.7524566567, "vnd": 33197.19439902703, "xag": 0.09518791261577687, "xau": 0.0011095628022484583, "xdr": 1.0252364867879757, "xlm": 12.63294805792333, "xrp": 4.465477707198818, "zar": 20.088482483986112, "bits": 283.1280253307287, "link": 2.8854614511950905, "sats": 28312.802533072867}, "market_cap": {"aed": 190175908.2999141, "ars": 2154530432.3398776, "aud": 72193699.63793415, "bch": 165267.23443332373, "bdt": 4365634192.796134, "bhd": 19518086.582295593, "bmd": 51774172.93074147, "bnb": 2669737.647444379, "brl": 200469597.58783036, "btc": 10255.39405792603, "cad": 69235323.39667162, "chf": 51972519.78723907, "clp": 34215816817.553074, "cny": 347337393.94046485, "czk": 1174509538.7353685, "dkk": 341754999.0667266, "eos": 9669365.660390167, "eth": 322231.81175846065, "eur": 45799588.69705269, "gbp": 39520727.64904997, "hkd": 405928672.2209971, "huf": 14667623191.279064, "idr": 728049421116.365, "ils": 184492087.8214041, "inr": 3596415261.37456, "jpy": 5796558740.066421, "krw": 58774041110.97775, "kwd": 15743438.73060692, "lkr": 9038525476.622644, "ltc": 660495.1898610624, "mmk": 78534511227.87973, "mxn": 977268578.5715034, "myr": 213066875.15195504, "ngn": 18646434365.374924, "nok": 439754292.6218393, "nzd": 76521088.55983135, "php": 2673112145.828915, "pkr": 7337628128.797118, "pln": 195796978.48083127, "rub": 3331378092.724805, "sar": 194184212.99403897, "sek": 479881917.1259825, "sgd": 70040825.97912805, "thb": 1645900957.4682689, "try": 300595670.6185917, "twd": 1598531834.7188187, "uah": 1383270873.6664085, "usd": 51774172.93074147, "vef": 12865242160537.71, "vnd": 1202163557037.2715, "xag": 3447021.403124629, "xau": 40180.382386360485, "xdr": 37126689.89273248, "xlm": 456910943.0631252, "xrp": 161847584.58493522, "zar": 727460316.9217666, "bits": 10255394057.926031, "link": 104516478.67212775, "sats": 1025539405792.603}, "total_volume": {"aed": 17855296.17509362, "ars": 202285238.60663164, "aud": 6778145.0370580265, "bch": 15500.538009807628, "bdt": 409882051.8399278, "bhd": 1832520.3219138018, "bmd": 4860990.017941834, "bnb": 250574.6834446246, "brl": 18821753.34947076, "btc": 962.6238023105632, "cad": 6500388.067432825, "chf": 4879612.470700573, "clp": 3212465493.719085, "cny": 32610923.73336636, "czk": 110272725.19461451, "dkk": 32086802.06765182, "eos": 907206.661675729, "eth": 30238.69546909898, "eur": 4300046.3528414, "gbp": 3710534.649405523, "hkd": 38111960.30697064, "huf": 1377118472.082925, "idr": 68355335648.70601, "ils": 17321651.829933982, "inr": 337661380.1113024, "jpy": 544229150.9237411, "krw": 5518195868.367572, "kwd": 1478124.9836657355, "lkr": 848611955.1837026, "ltc": 61952.4633005473, "mmk": 7373473172.682842, "mxn": 91754103.18266287, "myr": 20004490.552716296, "ngn": 1750682361.2913098, "nok": 41287790.915392525, "nzd": 7184436.30473764, "php": 250974003.48810068, "pkr": 688917563.9206338, "pln": 18383049.0003515, "rub": 312777486.11045665, "sar": 18231629.16129265, "sek": 45055306.08978837, "sgd": 6576015.350131962, "thb": 154530872.67037046, "try": 28222421.945168536, "twd": 150083465.4051356, "uah": 129872975.81743902, "usd": 4860990.017941834, "vef": 1207895948515.4072, "vnd": 112869114461.93034, "xag": 323635.04202443175, "xau": 3772.468523224117, "xdr": 3485762.4709758884, "xlm": 42951510.99826555, "xrp": 15182443.08247307, "zar": 68300025.64668432, "bits": 962623802.3105632, "link": 9810451.898307756, "sats": 96262380231.05632}}, "community_data": {"facebook_likes": null, "twitter_followers": 24059, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 609298, "bing_matches": null}}, "STORM_20190420": {"id": "storm", "symbol": "stmx", "name": "StormX", "localization": {"en": "StormX", "de": "StormX", "es": "StormX", "fr": "StormX", "it": "StormX", "pl": "StormX", "ro": "StormX", "hu": "StormX", "nl": "StormX", "pt": "StormX", "sv": "StormX", "vi": "StormX", "tr": "StormX", "ru": "StormX", "ja": "\u30b9\u30c8\u30fc\u30e0", "zh": "StormX", "zh-tw": "StormX", "ko": "\uc2a4\ud1b0", "ar": "StormX", "th": "StormX", "id": "StormX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1369/thumb/StormX.png?1603113002", "small": "https://assets.coingecko.com/coins/images/1369/small/StormX.png?1603113002"}, "market_data": {"current_price": {"aed": 0.01308950671732569, "ars": 0.1508387950797043, "aud": 0.004973316491405654, "bch": 1.1229025163437882e-05, "bdt": 0.3006322796080903, "bhd": 0.0013434636457518901, "bmd": 0.0035636963859450796, "bnb": 0.00018020055380498705, "brl": 0.0139173034960313, "btc": 6.845988466760886e-07, "cad": 0.004760563817164736, "chf": 0.0035906806949794557, "clp": 2.3587644452244962, "cny": 0.02392043888504178, "czk": 0.08108079609315237, "dkk": 0.023573406130978466, "eos": 0.0006454895602036275, "eth": 2.140296489415923e-05, "eur": 0.003157962425012458, "gbp": 0.0027317835379136743, "hkd": 0.02795488174508826, "huf": 1.0096308231020996, "idr": 50.19466359603645, "ils": 0.012710635899750305, "inr": 0.247787041987383, "jpy": 0.3990985159199176, "krw": 4.054417378289717, "kwd": 0.0010836594881273394, "lkr": 0.6225909621197153, "ltc": 4.407589925574155e-05, "mmk": 5.4066996045704085, "mxn": 0.06727902407025713, "myr": 0.014726961060132493, "ngn": 1.2834783321638568, "nok": 0.03026362244872277, "nzd": 0.0053114827688607565, "php": 0.18448498191816368, "pkr": 0.5047975930691204, "pln": 0.01349625276803193, "rub": 0.22826045543400006, "sar": 0.0133647523713905, "sek": 0.033003349465880766, "sgd": 0.0048277430577361845, "thb": 0.11346274738391265, "try": 0.020630680276587942, "twd": 0.10999729854363172, "uah": 0.09513167049342545, "usd": 0.0035636963859450796, "vef": 885.5345126062624, "vnd": 82.78715360040279, "xag": 0.00023745311717243697, "xau": 2.7916572008939332e-06, "xdr": 0.0025565245133492816, "xlm": 0.030596073506452697, "xrp": 0.01091905759396033, "zar": 0.05001193150015071, "bits": 0.6845988466760886, "link": 0.0070971672945164535, "sats": 68.45988466760886}, "market_cap": {"aed": 59148614.4482308, "ars": 681607483.511644, "aud": 22473328.142290883, "bch": 50741.50572401154, "bdt": 1358491437.5493503, "bhd": 6070818.016588201, "bmd": 16103563.571560241, "bnb": 814286.8414025691, "brl": 62889246.81601412, "btc": 3093.5522711600365, "cad": 21511945.397068754, "chf": 16225499.754924094, "clp": 10658739993.62472, "cny": 108091225.10102303, "czk": 366386362.0560729, "dkk": 106523060.08042459, "eos": 2916825.969943268, "eth": 96715.31142560046, "eur": 14270140.651810953, "gbp": 12344331.587851645, "hkd": 126321988.90256846, "huf": 4562300595.45873, "idr": 226818692905.426, "ils": 57436580.19068389, "inr": 1119695381.0627408, "jpy": 1803438796.8006837, "krw": 18321024275.364086, "kwd": 4896819.921530759, "lkr": 2813352219.6546063, "ltc": 199169.33677005366, "mmk": 24431691526.223915, "mxn": 304019176.66748565, "myr": 66547912.04521837, "ngn": 5799757520.375729, "nok": 136754682.5624037, "nzd": 24001427.496723387, "php": 833647233.8199562, "pkr": 2281069779.9115076, "pln": 60986610.78003446, "rub": 1031459012.4601489, "sar": 60392389.284243636, "sek": 149134908.9934566, "sgd": 21815513.673956227, "thb": 512713308.77312195, "try": 93225526.35764518, "twd": 497053704.3456659, "uah": 429879186.53831345, "usd": 16103563.571560241, "vef": 4001536543575.047, "vnd": 374097017964.41254, "xag": 1072998.6377998956, "xau": 12614.88755941741, "xdr": 11552374.434965888, "xlm": 138256956.09044632, "xrp": 49340830.1558318, "zar": 225992966.57973057, "bits": 3093552271.1600366, "link": 32070544.829798874, "sats": 309355227116.00366}, "total_volume": {"aed": 10767083.148948492, "ars": 124076016.29178865, "aud": 4090919.035025474, "bch": 9236.700070319566, "bdt": 247292187.68142983, "bhd": 1105097.7774627293, "bmd": 2931402.697879313, "bnb": 148228.2249595171, "brl": 11448006.956028065, "btc": 563.1329632979232, "cad": 3915914.293962081, "chf": 2953599.279107655, "clp": 1940257448.8845491, "cny": 19676322.4158539, "czk": 66694925.345228955, "dkk": 19390862.421134423, "eos": 530962.6952779937, "eth": 17605.51467874724, "eur": 2597656.637920355, "gbp": 2247093.120683668, "hkd": 22994948.753109567, "huf": 830495698.3361874, "idr": 41288806999.63012, "ils": 10455434.002526136, "inr": 203823088.36579522, "jpy": 328287917.8207596, "krw": 3335056849.377294, "kwd": 891389.7265792364, "lkr": 512126912.1665116, "ltc": 36255.672761380054, "mmk": 4447408558.700086, "mxn": 55341951.53326352, "myr": 12114009.923375465, "ngn": 1055755439.8891357, "nok": 24894057.990930673, "nzd": 4369085.699832639, "php": 151752482.57567346, "pkr": 415233192.15460455, "pln": 11101661.727273658, "rub": 187761033.04348674, "sar": 10993492.967721865, "sek": 27147685.20822795, "sgd": 3971174.1662198026, "thb": 93331464.79643069, "try": 16970253.711957894, "twd": 90480877.93952924, "uah": 78252804.20577638, "usd": 2931402.697879313, "vef": 728417344854.9343, "vnd": 68098530046.24335, "xag": 195322.67424474738, "xau": 2296.343617410735, "xdr": 2102929.6674046614, "xlm": 25167523.466661397, "xrp": 8981728.919296378, "zar": 41138496.394893646, "bits": 563132963.2979232, "link": 5837942.714900791, "sats": 56313296329.79232}}, "community_data": {"facebook_likes": null, "twitter_followers": 27044, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2575, "reddit_accounts_active_48h": "84.36"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3845738, "bing_matches": null}}, "SOUL_20190422": {"id": "phantasma", "symbol": "soul", "name": "Phantasma", "localization": {"en": "Phantasma", "de": "Phantasma", "es": "Phantasma", "fr": "Phantasma", "it": "Phantasma", "pl": "Phantasma", "ro": "Phantasma", "hu": "Phantasma", "nl": "Phantasma", "pt": "Phantasma", "sv": "Phantasma", "vi": "Phantasma", "tr": "Phantasma", "ru": "Phantasma", "ja": "Phantasma", "zh": "Phantasma", "zh-tw": "Phantasma", "ko": "Phantasma", "ar": "Phantasma", "th": "Phantasma", "id": "Phantasma"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4130/thumb/phantasma.png?1548331035", "small": "https://assets.coingecko.com/coins/images/4130/small/phantasma.png?1548331035"}, "market_data": {"current_price": {"aed": 0.3504038263893438, "ars": 3.9919379787464195, "aud": 0.13349531705030354, "bch": 0.0003115116068491671, "bdt": 8.045909045254604, "bhd": 0.0359666977019022, "bmd": 0.09539706727716042, "bnb": 0.004337265613383373, "brl": 0.37473847348693884, "btc": 1.8075593294054665e-05, "cad": 0.1276556809739995, "chf": 0.0968212500945411, "clp": 63.17607188744895, "cny": 0.6400284640691974, "czk": 2.1817690874555633, "dkk": 0.6339802900038249, "eos": 0.01740286244661635, "eth": 0.000549619061447057, "eur": 0.08490682417109469, "gbp": 0.07342626410962487, "hkd": 0.7484233817628708, "huf": 27.169782590082374, "idr": 1339.6680356617555, "ils": 0.34287613920757015, "inr": 6.61971878738717, "jpy": 10.683851454104653, "krw": 108.47695917153179, "kwd": 0.029007195452831543, "lkr": 16.630381852234166, "ltc": 0.0011635369788448918, "mmk": 145.07155378785478, "mxn": 1.7939132310268182, "myr": 0.3965656086711554, "ngn": 34.34294421977775, "nok": 0.8120579954901008, "nzd": 0.1426818638349596, "php": 4.934543808099159, "pkr": 13.513026251636107, "pln": 0.36325772263133543, "rub": 6.0989634639903345, "sar": 0.35777716111626257, "sek": 0.8879442637736016, "sgd": 0.12932035979798592, "thb": 3.0345807100864715, "try": 0.5549198751008103, "twd": 2.941577059830225, "uah": 2.562030001770117, "usd": 0.09539706727716042, "vef": 23704.9923244076, "vnd": 2217.45826249634, "xag": 0.006361942651411924, "xau": 7.478176103856592e-05, "xdr": 0.06851570007153301, "xlm": 0.812175287645537, "xrp": 0.2834738041924863, "zar": 1.3407501640902673, "bits": 18.075593294054666, "link": 0.18269949517506798, "sats": 1807.5593294054665}, "market_cap": {"aed": 20600479.919242255, "ars": 234652301.18169016, "aud": 7848050.782733047, "bch": 18342.18441693131, "bdt": 473024479.86012703, "bhd": 2114506.686197619, "bmd": 5608458.643411424, "bnb": 258519.04900567725, "brl": 22029918.990605876, "btc": 1063.6400113641425, "cad": 7504398.087816652, "chf": 5692529.438476163, "clp": 3714116863.794558, "cny": 37627709.884511605, "czk": 128240300.84626181, "dkk": 37265173.50934281, "eos": 1023962.3174762388, "eth": 32371.495819886033, "eur": 4990843.960681666, "gbp": 4317340.987570317, "hkd": 44001442.709816515, "huf": 1597064683.297833, "idr": 78759997433.46431, "ils": 20157922.05614937, "inr": 389344807.4842644, "jpy": 628114652.0720208, "krw": 6377434408.009563, "kwd": 1705352.8027848247, "lkr": 977711490.5577986, "ltc": 68415.84747472686, "mmk": 8528855582.014464, "mxn": 105485292.27994291, "myr": 23314362.58066127, "ngn": 2019045111.6281126, "nok": 47732469.822345935, "nzd": 8388364.079980656, "php": 290007692.6483639, "pkr": 794440028.8474975, "pln": 21353925.861856814, "rub": 358413597.2199861, "sar": 21033963.29625023, "sek": 52192428.30475957, "sgd": 7604116.4824965075, "thb": 178348984.86048305, "try": 32647398.609162234, "twd": 172937321.42241022, "uah": 150623491.0383579, "usd": 5608458.643411424, "vef": 1393632664907.4592, "vnd": 130318966268.08206, "xag": 374022.94714715617, "xau": 4396.470730570219, "xdr": 4028084.7330363733, "xlm": 47786668.41699885, "xrp": 16675095.12611552, "zar": 78833094.79686584, "bits": 1063640011.3641425, "link": 10750767.068218408, "sats": 106364001136.41426}, "total_volume": {"aed": 2994719.994097207, "ars": 34117026.07055621, "aud": 1140915.3239230942, "bch": 2662.3283399536517, "bdt": 68764216.80891865, "bhd": 307388.734419403, "bmd": 815309.3181000629, "bnb": 37068.36248322567, "brl": 3202695.6174327056, "btc": 154.482732682057, "cad": 1091006.9793249173, "chf": 827481.0709099782, "clp": 539933161.0598516, "cny": 5469991.746065137, "czk": 18646450.228675626, "dkk": 5418301.135297588, "eos": 148733.25060525181, "eth": 4697.309414148848, "eur": 725654.6442445071, "gbp": 627536.2443577555, "hkd": 6396386.958756331, "huf": 232206057.78255942, "idr": 11449448749.430658, "ils": 2930384.7511152476, "inr": 56575307.44502211, "jpy": 91309344.11663929, "krw": 927096378.7047616, "kwd": 247909.47373604932, "lkr": 142131259.11193413, "ltc": 9944.147843141885, "mmk": 1239851422.7995577, "mxn": 15331647.13407625, "myr": 3389240.8353419574, "ngn": 293511354.5160226, "nok": 6940239.039394979, "nzd": 1219427.9806374945, "php": 42172989.82187292, "pkr": 115488835.5915675, "pln": 3104575.586927326, "rub": 52124681.4485005, "sar": 3057736.0666024773, "sek": 7588799.665138579, "sgd": 1105234.1269257632, "thb": 25934989.408762988, "try": 4742612.722612836, "twd": 25140135.386144713, "uah": 21896343.287223887, "usd": 815309.3181000629, "vef": 202594290151.80173, "vnd": 18951467120.667816, "xag": 54372.228339520465, "xau": 639.1209744586382, "xdr": 585568.1972085545, "xlm": 6941241.4746898655, "xrp": 2422703.7642984265, "zar": 11458697.140563933, "bits": 154482732.682057, "link": 1561437.9464689582, "sats": 15448273268.2057}}, "community_data": {"facebook_likes": null, "twitter_followers": 10648, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 467, "reddit_accounts_active_48h": "8.2"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 2602528, "bing_matches": null}}, "ENJ_20190423": {"id": "enjincoin", "symbol": "enj", "name": "Enjin Coin", "localization": {"en": "Enjin Coin", "de": "Enjin Coin", "es": "Enjin Coin", "fr": "Enjin Coin", "it": "Enjin Coin", "pl": "Enjin Coin", "ro": "Enjin Coin", "hu": "Enjin Coin", "nl": "Enjin Coin", "pt": "Enjin Coin", "sv": "Enjin Coin", "vi": "Enjin Coin", "tr": "Enjin Coin", "ru": "Enjin Coin", "ja": "\u30a8\u30f3\u30b8\u30f3", "zh": "\u6069\u91d1\u5e01", "zh-tw": "\u6069\u91d1\u5e63", "ko": "\uc5d4\uc9c4\ucf54\uc778", "ar": "Enjin Coin", "th": "Enjin Coin", "id": "Enjin Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1102/thumb/enjin-coin-logo.png?1547035078", "small": "https://assets.coingecko.com/coins/images/1102/small/enjin-coin-logo.png?1547035078"}, "market_data": {"current_price": {"aed": 0.6792119374579325, "ars": 7.7030493366853365, "aud": 0.2583644972597538, "bch": 0.0006045457507177415, "bdt": 15.622424672952121, "bhd": 0.06971159839148426, "bmd": 0.1849114015689239, "bnb": 0.007608113887623065, "brl": 0.7278114614866876, "btc": 3.503160504106962e-05, "cad": 0.24777092306387039, "chf": 0.18760186246175198, "clp": 122.45090482529687, "cny": 1.2397200006786937, "czk": 4.225780260054611, "dkk": 1.2278856709782822, "eos": 0.03383407368461549, "eth": 0.00106752344577538, "eur": 0.16443153928815785, "gbp": 0.14228377616523988, "hkd": 1.4505282440373448, "huf": 52.635955013602, "idr": 2598.624645238638, "ils": 0.6646732785095755, "inr": 12.831002154867628, "jpy": 20.69528406359398, "krw": 210.1666007952076, "kwd": 0.05624080278718835, "lkr": 32.26703957377725, "ltc": 0.002246229524454549, "mmk": 281.19715945519624, "mxn": 3.4708546850216786, "myr": 0.764144332958161, "ngn": 66.56810456481261, "nok": 1.573725465332643, "nzd": 0.27652575547624725, "php": 9.55589800795205, "pkr": 26.18345446215963, "pln": 0.7041241260343045, "rub": 11.836567128370122, "sar": 0.6934454925937004, "sek": 1.719916419413033, "sgd": 0.2505235141876252, "thb": 5.885175177734131, "try": 1.0745647181647953, "twd": 5.699154307755794, "uah": 4.966070467476183, "usd": 0.1849114015689239, "vef": 45948.19819934074, "vnd": 4293.586341830168, "xag": 0.012323353789456362, "xau": 0.00014495204768987942, "xdr": 0.13280891594884817, "xlm": 1.6036674058307614, "xrp": 0.5587273922348334, "zar": 2.599299571854366, "bits": 35.03160504106962, "link": 0.359412456344732, "sats": 3503.160504106962}, "market_cap": {"aed": 589151461.8760433, "ars": 6681659328.009869, "aud": 224106516.48312768, "bch": 523833.40165033913, "bdt": 13550960792.246359, "bhd": 60468151.15731436, "bmd": 160392973.89208096, "bnb": 6599082.088966364, "brl": 631306905.6322042, "btc": 30364.497478558165, "cad": 214917603.0088506, "chf": 162726691.66221067, "clp": 106214460623.10457, "cny": 1075338654.1620667, "czk": 3665460632.3557215, "dkk": 1065073503.8329753, "eos": 29332889.50728533, "eth": 924784.301694264, "eur": 142628650.06866363, "gbp": 123417581.62073945, "hkd": 1258194664.0477328, "huf": 45656661983.25021, "idr": 2254058599646.2734, "ils": 576540564.3037807, "inr": 11129668458.371492, "jpy": 17951181638.001694, "krw": 182299446266.26144, "kwd": 48783523.00927628, "lkr": 27988573944.16813, "ltc": 1946641.9645044042, "mmk": 243911669439.2328, "mxn": 3010634823.782802, "myr": 662822200.2863127, "ngn": 57741470601.14915, "nok": 1365056482.9033332, "nzd": 239859672.8069123, "php": 8288828523.824385, "pkr": 22711645103.11865, "pln": 610760405.2836535, "rub": 10267091084.077278, "sar": 601497711.0413877, "sek": 1491863168.062411, "sgd": 217305212.81820786, "thb": 5104827180.063251, "try": 932082225.9935918, "twd": 4943471848.32783, "uah": 4307591657.8310375, "usd": 160392973.89208096, "vef": 39855671914465.53, "vnd": 3724275929907.2603, "xag": 10689332.003567137, "xau": 125732.0522340022, "xdr": 115199045.63850936, "xlm": 1390210808.372473, "xrp": 484267718.9299609, "zar": 2254644034.000983, "bits": 30364497478.558167, "link": 311529506.3314288, "sats": 3036449747855.8164}, "total_volume": {"aed": 272655190.8055966, "ars": 3092225373.039688, "aud": 103714934.04753835, "bch": 242682.037700298, "bdt": 6271290219.061613, "bhd": 27984238.957770802, "bmd": 74228750.55111624, "bnb": 3054115.555542713, "brl": 292164436.3979447, "btc": 14062.69299748684, "cad": 99462368.928465, "chf": 75308778.87163508, "clp": 49155312176.07185, "cny": 497659235.19490385, "czk": 1696349636.3446567, "dkk": 492908595.15963227, "eos": 13581969.496495798, "eth": 428534.5894930794, "eur": 66007545.28382741, "gbp": 57116796.68656742, "hkd": 582283722.2607037, "huf": 21129584988.127983, "idr": 1043162611557.53, "ils": 266818955.2935149, "inr": 5150733000.741955, "jpy": 8307681761.680936, "krw": 84366913301.38773, "kwd": 22576674.480122063, "lkr": 12952916971.169794, "ltc": 901701.0829867102, "mmk": 112880620815.05583, "mxn": 1393300815.5671546, "myr": 306749495.1362319, "ngn": 26722350198.401848, "nok": 631738627.3153859, "nzd": 111005385.01166679, "php": 3836012076.625726, "pkr": 10510791078.038063, "pln": 282655659.2235952, "rub": 4751538203.153111, "sar": 278368948.8792687, "sek": 690423877.5010979, "sgd": 100567338.10916884, "thb": 2362478443.7903724, "try": 431361158.58141947, "twd": 2287804320.73595, "uah": 1993523399.9735458, "usd": 74228750.55111624, "vef": 18444927210942.242, "vnd": 1723568946172.2898, "xag": 4946948.358128941, "xau": 58187.91755702001, "xdr": 53313315.5083282, "xlm": 643758182.699172, "xrp": 224289231.8828498, "zar": 1043433546.4970421, "bits": 14062692997.48684, "link": 144278488.72819686, "sats": 1406269299748.684}}, "community_data": {"facebook_likes": null, "twitter_followers": 45329, "reddit_average_posts_48h": 0.217, "reddit_average_comments_48h": 1.913, "reddit_subscribers": 12315, "reddit_accounts_active_48h": "157.583333333333"}, "developer_data": {"forks": 32, "stars": 61, "subscribers": 21, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 7, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 288, "deletions": -766}, "commit_count_4_weeks": 6}, "public_interest_stats": {"alexa_rank": 18567, "bing_matches": null}}, "PAX_20190424": {"id": "payperex", "symbol": "pax", "name": "PayperEx", "localization": {"en": "PayperEx", "de": "PayperEx", "es": "PayperEx", "fr": "PayperEx", "it": "PayperEx", "pl": "PayperEx", "ro": "PayperEx", "hu": "PayperEx", "nl": "PayperEx", "pt": "PayperEx", "sv": "PayperEx", "vi": "PayperEx", "tr": "PayperEx", "ru": "PayperEx", "ja": "PayperEx", "zh": "PayperEx", "zh-tw": "PayperEx", "ko": "PayperEx", "ar": "PayperEx", "th": "PayperEx", "id": "PayperEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1601/thumb/pax.png?1547035800", "small": "https://assets.coingecko.com/coins/images/1601/small/pax.png?1547035800"}}, "UKG_20190427": {"id": "unikoin-gold", "symbol": "ukg", "name": "Unikoin Gold", "localization": {"en": "Unikoin Gold", "de": "Unikoin Gold", "es": "Unikoin Gold", "fr": "Unikoin Gold", "it": "Unikoin Gold", "pl": "Unikoin Gold", "ro": "Unikoin Gold", "hu": "Unikoin Gold", "nl": "Unikoin Gold", "pt": "Unikoin Gold", "sv": "Unikoin Gold", "vi": "Unikoin Gold", "tr": "Unikoin Gold", "ru": "Unikoin Gold", "ja": "Unikoin Gold", "zh": "Unikoin Gold", "zh-tw": "Unikoin Gold", "ko": "\uc720\ub2c8\ucf54\uc778\uace8\ub4dc", "ar": "Unikoin Gold", "th": "Unikoin Gold", "id": "Unikoin Gold"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1120/thumb/unikoin-gold.png?1548759441", "small": "https://assets.coingecko.com/coins/images/1120/small/unikoin-gold.png?1548759441"}, "market_data": {"current_price": {"aed": 0.11820742373002809, "ars": 1.364354747685525, "aud": 0.04534284777261278, "bch": 0.0001107276326910206, "bdt": 2.7148695781265215, "bhd": 0.012133926729286454, "bmd": 0.03218121397503362, "bnb": 0.001406335018761372, "brl": 0.1261439225393369, "btc": 5.806653559894254e-06, "cad": 0.043220818523099065, "chf": 0.032824838254534285, "clp": 21.49404981185082, "cny": 0.21644688690675717, "czk": 0.7378735295942123, "dkk": 0.2140804413371031, "eos": 0.006233374237046953, "eth": 0.0001883874003738057, "eur": 0.028671788228628283, "gbp": 0.024874855516569924, "hkd": 0.25238921590269514, "huf": 9.192241959828587, "idr": 452.4439725859853, "ils": 0.1160854910241564, "inr": 2.245236089197193, "jpy": 3.6008968991380694, "krw": 36.78297233128724, "kwd": 0.009789493109991233, "lkr": 5.6217362692986255, "ltc": 0.00043101290875964163, "mmk": 49.39060170310406, "mxn": 0.6088235147080711, "myr": 0.13284578907449376, "ngn": 11.58945669615094, "nok": 0.2753778661057605, "nzd": 0.048368428966903486, "php": 1.674840065553068, "pkr": 4.557331836367705, "pln": 0.1228871836850637, "rub": 2.049994820152004, "sar": 0.12068975385120595, "sek": 0.30118262998135253, "sgd": 0.04367158078724736, "thb": 1.028833410781823, "try": 0.18789645403602875, "twd": 0.9934013792958887, "uah": 0.8554261299822734, "usd": 0.03218121397503362, "vef": 7996.633985109229, "vnd": 749.0461640400739, "xag": 0.0021705971376448385, "xau": 2.5309559354944705e-05, "xdr": 0.02312146207314023, "xlm": 0.28919844333961137, "xrp": 0.10030903302496975, "zar": 0.4590656931593482, "bits": 5.8066535598942535, "link": 0.06673416203954956, "sats": 580.6653559894254}, "market_cap": {"aed": 16950785.859599277, "ars": 195655868.54426488, "aud": 6501448.20056389, "bch": 15876.185710521735, "bdt": 389308652.56539106, "bhd": 1739988.80217499, "bmd": 4614742.878066533, "bnb": 201560.37036667496, "brl": 18088873.748188056, "btc": 832.2515168823451, "cad": 6197576.611528967, "chf": 4708103.7412327025, "clp": 3082186768.2606416, "cny": 31038192.984501503, "czk": 105815038.95063248, "dkk": 30701233.689030826, "eos": 893106.1382692364, "eth": 26997.336298843675, "eur": 4111495.9377276236, "gbp": 3567422.36714646, "hkd": 36194120.604107544, "huf": 1318687904.68248, "idr": 64882759403.3029, "ils": 16646503.558448255, "inr": 321954920.4769166, "jpy": 516278974.226572, "krw": 5274628848.110405, "kwd": 1403800.1687649642, "lkr": 806149433.3694434, "ltc": 61740.61796180719, "mmk": 7082545973.239102, "mxn": 87299859.87011182, "myr": 19049907.796774115, "ngn": 1661912530.4196098, "nok": 39491585.127629995, "nzd": 6934980.220243852, "php": 240194819.46529427, "pkr": 653515266.7385284, "pln": 17623010.83990437, "rub": 293965120.49858, "sar": 17306748.666241877, "sek": 43189415.51376773, "sgd": 6262524.502794876, "thb": 147602550.95495838, "try": 26946120.499547664, "twd": 142452424.06715, "uah": 122666958.55881205, "usd": 4614742.878066533, "vef": 1146706577319.204, "vnd": 107430934506.43773, "xag": 311218.9057608103, "xau": 3628.895357025181, "xdr": 3315586.618804611, "xlm": 41473040.23629727, "xrp": 14373497.1432227, "zar": 65843608.24379831, "bits": 832251516.8823451, "link": 9564821.977479706, "sats": 83225151688.23451}, "total_volume": {"aed": 184506.4602941807, "ars": 2129580.843043693, "aud": 70774.30569242194, "bch": 172.83147639892786, "bdt": 4237559.369913197, "bhd": 18939.48619845331, "bmd": 50230.70202480644, "bnb": 2195.1066025432388, "brl": 196894.30579683642, "btc": 9.063433248808167, "cad": 67462.09320090621, "chf": 51235.31606530255, "clp": 33549424.587992016, "cny": 337845.523442499, "czk": 1151724.898438992, "dkk": 334151.8087691048, "eos": 9729.488892281091, "eth": 294.04830348369904, "eur": 44752.94350759729, "gbp": 38826.423898498404, "hkd": 393946.838305051, "huf": 14347897.726365685, "idr": 706206372.0628356, "ils": 181194.3984947712, "inr": 3504522.3918308723, "jpy": 5620533.125412179, "krw": 57413450.10144722, "kwd": 15280.129325244061, "lkr": 8774801.336713439, "ltc": 672.7552604307252, "mmk": 77092324.69910033, "mxn": 950294.559326503, "myr": 207355.05041631078, "ngn": 18089639.079041213, "nok": 429829.14029647154, "nzd": 75496.84560468813, "php": 2614208.163100085, "pkr": 7113404.039957786, "pln": 191810.95875192632, "rub": 3199776.0881034127, "sar": 188381.05572556565, "sek": 470107.0305606781, "sgd": 68165.67464416767, "thb": 1605875.543733059, "try": 293281.9999122372, "twd": 1550570.7371125163, "uah": 1335209.2644083672, "usd": 50230.70202480644, "vef": 12481708714.254383, "vnd": 1169163932.035349, "xag": 3388.020667011575, "xau": 39.50494022144954, "xdr": 36089.60409867685, "xlm": 451401.2692218429, "xrp": 156569.3933169424, "zar": 716542.0192286065, "bits": 9063433.248808166, "link": 104163.37341668789, "sats": 906343324.8808167}}, "community_data": {"facebook_likes": null, "twitter_followers": 5975, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1161, "reddit_accounts_active_48h": "2078.72"}, "developer_data": {"forks": 7, "stars": 17, "subscribers": 9, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2873193, "bing_matches": null}}, "CTXC_20190428": {"id": "cortex", "symbol": "ctxc", "name": "Cortex", "localization": {"en": "Cortex", "de": "Cortex", "es": "Cortex", "fr": "Cortex", "it": "Cortex", "pl": "Cortex", "ro": "Cortex", "hu": "Cortex", "nl": "Cortex", "pt": "Cortex", "sv": "Cortex", "vi": "Cortex", "tr": "Cortex", "ru": "Cortex", "ja": "\u30b3\u30eb\u30c6\u30c3\u30af\u30b9", "zh": "Cortex", "zh-tw": "Cortex", "ko": "\ucf54\ub974\ud14d\uc2a4", "ar": "Cortex", "th": "Cortex", "id": "Cortex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3861/thumb/2638.png?1523930406", "small": "https://assets.coingecko.com/coins/images/3861/small/2638.png?1523930406"}, "market_data": {"current_price": {"aed": 0.5498665802345019, "ars": 6.574720985407305, "aud": 0.21348577114440262, "bch": 0.0005371729929952, "bdt": 12.631900503301063, "bhd": 0.056433021791412685, "bmd": 0.14969765449470182, "bnb": 0.006482050440275151, "brl": 0.597461302806894, "btc": 2.7544316312637584e-05, "cad": 0.20202446962332474, "chf": 0.15277394129456798, "clp": 100.73155170948469, "cny": 1.006252663747935, "czk": 3.4559338238489024, "dkk": 1.002250796350328, "eos": 0.03136735615210911, "eth": 0.0009035532943955275, "eur": 0.13423388678539905, "gbp": 0.11601673011697536, "hkd": 1.1740562495537714, "huf": 43.21164500789321, "idr": 2111.4700603629753, "ils": 0.541651023258179, "inr": 10.494673826474667, "jpy": 16.78754406799934, "krw": 173.0894099860439, "kwd": 0.045546259868285574, "lkr": 26.182119771123343, "ltc": 0.002044631447251929, "mmk": 228.94913781368888, "mxn": 2.8571843727250896, "myr": 0.6182962223594667, "ngn": 53.95603053971399, "nok": 1.293836827797707, "nzd": 0.22705556412903824, "php": 7.822011573004694, "pkr": 21.1964393881773, "pln": 0.5767401534717381, "rub": 9.64100798195318, "sar": 0.5614185985342034, "sek": 1.412510990677273, "sgd": 0.20396305424903102, "thb": 4.801178023781329, "try": 0.8815470326711243, "twd": 4.629719120648034, "uah": 3.9877539027411033, "usd": 0.14969765449470182, "vef": 37198.01721439618, "vnd": 3493.4567855342907, "xag": 0.010027323737048382, "xau": 0.00011744529483381814, "xdr": 0.10770042661917678, "xlm": 1.456923589383632, "xrp": 0.49602376104158064, "zar": 2.163611187826406, "bits": 27.544316312637584, "link": 0.3149254606578538, "sats": 2754.4316312637584}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 21052518.657926723, "ars": 251723674.78110778, "aud": 8173643.101391388, "bch": 20566.52443351422, "bdt": 483632449.379642, "bhd": 2160628.208537841, "bmd": 5731413.360225585, "bnb": 248175.63521921463, "brl": 22874758.49026353, "btc": 1054.5780629990961, "cad": 7734828.900292436, "chf": 5849193.9047782235, "clp": 3856668050.0957904, "cny": 38525987.46610032, "czk": 132315936.12419713, "dkk": 38372769.59274141, "eos": 1200949.2381960815, "eth": 34593.978380320266, "eur": 5139358.36011428, "gbp": 4441885.47406835, "hkd": 44950615.272245206, "huf": 1654426719.9879863, "idr": 80840997506.13655, "ils": 20737972.961304218, "inr": 401805318.74930286, "jpy": 642737888.4557778, "krw": 6627004011.894436, "kwd": 1743811.1719154385, "lkr": 1002424196.7034547, "ltc": 78281.97464464503, "mmk": 8765682747.046297, "mxn": 109391858.82196915, "myr": 23672456.601739727, "ngn": 2065792649.4833717, "nok": 49536605.67242971, "nzd": 8693184.259669112, "php": 299478183.44037545, "pkr": 811539474.7411417, "pln": 22081416.25294113, "rub": 369121360.92128044, "sar": 21494806.095521964, "sek": 54080235.19646881, "sgd": 7809050.703307353, "thb": 183820754.99583527, "try": 33751433.56636442, "twd": 177256177.53826016, "uah": 152677515.7073085, "usd": 5731413.360225585, "vef": 1424185392591.0188, "vnd": 133752562533.90804, "xag": 383912.0754952128, "xau": 4496.5803517649765, "xdr": 4123482.5362543813, "xlm": 55780642.34344233, "xrp": 18991060.485344324, "zar": 82837303.69790596, "bits": 1054578062.9990962, "link": 12057423.336272132, "sats": 105457806299.9096}}, "community_data": {"facebook_likes": null, "twitter_followers": 21100, "reddit_average_posts_48h": 0.13, "reddit_average_comments_48h": 0.043, "reddit_subscribers": 20048, "reddit_accounts_active_48h": "81.625"}, "developer_data": {"forks": 5, "stars": 13, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 21, "deletions": -14}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2113593, "bing_matches": null}}, "BLZ_20190430": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.17981610879113466, "ars": 2.2435070537632917, "aud": 0.06954964883084529, "bch": 0.00018417178362711644, "bdt": 4.128215512876466, "bhd": 0.01846233931137247, "bmd": 0.04895600963980393, "bnb": 0.0021306475993892993, "brl": 0.19240201348539313, "btc": 9.236414947256047e-06, "cad": 0.06590741962566316, "chf": 0.049927786431154086, "clp": 33.05020210783165, "cny": 0.3294592580729887, "czk": 1.128876626284244, "dkk": 0.32787308336065946, "eos": 0.010235238082210803, "eth": 0.00031107536020080485, "eur": 0.04388416704112024, "gbp": 0.037893664921545694, "hkd": 0.3840574478237803, "huf": 14.164442269084475, "idr": 694.5144307550786, "ils": 0.17727534084683902, "inr": 3.4196751853595897, "jpy": 5.46300111570572, "krw": 56.73585391171337, "kwd": 0.01491165784421685, "lkr": 8.589821451399999, "ltc": 0.0006641106726335513, "mmk": 74.6265162254024, "mxn": 0.9272591825002618, "myr": 0.20233523679731977, "ngn": 17.557655898981576, "nok": 0.4252025261255532, "nzd": 0.07347562706789977, "php": 2.548332235257652, "pkr": 6.9284992642732535, "pln": 0.1886887001542144, "rub": 3.172324946654478, "sar": 0.18358993175022853, "sek": 0.46466523115605457, "sgd": 0.06668302968638659, "thb": 1.5628104567290508, "try": 0.2908012919289467, "twd": 1.5135769644266066, "uah": 1.2939073347800178, "usd": 0.04895600963980393, "vef": 12164.963408922535, "vnd": 1137.4729474292196, "xag": 0.003246527570465532, "xau": 3.806231837475478e-05, "xdr": 0.035251753861333626, "xlm": 0.4895498151354749, "xrp": 0.16257426329314914, "zar": 0.70402281381535, "bits": 9.236414947256048, "link": 0.11098753381882491, "sats": 923.6414947256047}, "market_cap": {"aed": 36851540.69035487, "ars": 459784676.8939341, "aud": 14253515.611701157, "bch": 37946.29103375627, "bdt": 846037115.2176886, "bhd": 3783674.6270739436, "bmd": 10033052.063061826, "bnb": 439680.54086703964, "brl": 39430897.91303933, "btc": 1903.8617697593663, "cad": 13507076.60431347, "chf": 10232208.1465136, "clp": 6773313447.773038, "cny": 67519430.46878707, "czk": 231352147.5221421, "dkk": 67194359.58194391, "eos": 2109935.129399114, "eth": 64131.79182026345, "eur": 8993627.869328612, "gbp": 7765933.453632058, "hkd": 78708791.78211679, "huf": 2902862953.4056797, "idr": 142333893092.62637, "ils": 36330835.321334094, "inr": 700828752.7089945, "jpy": 1119588279.7170675, "krw": 11627454531.663296, "kwd": 3055997.4270441835, "lkr": 1760399314.9848268, "ltc": 136875.5675979445, "mmk": 15293969587.865065, "mxn": 190032637.92180446, "myr": 41466614.20968659, "ngn": 3598268670.9127026, "nok": 87141070.38851719, "nzd": 15058106.18884632, "php": 522255595.9612131, "pkr": 1419927693.2248244, "pln": 38669890.91405595, "rub": 650136757.1603743, "sar": 37624948.54168814, "sek": 95228563.16077037, "sgd": 13666030.248148566, "thb": 320282612.74610597, "try": 59596861.006346524, "twd": 310192693.34395206, "uah": 265173566.02672407, "usd": 10033052.063061826, "vef": 2493089451631.434, "vnd": 233113878885.31775, "xag": 665343.8541723568, "xau": 7800.497317989292, "xdr": 7224499.799048925, "xlm": 101025101.47765504, "xrp": 33515891.878075, "zar": 144282542.5634706, "bits": 1903861769.7593663, "link": 22877374.367022123, "sats": 190386176975.93665}, "total_volume": {"aed": 2792513.2248730757, "ars": 34841278.45857881, "aud": 1080094.0775056363, "bch": 2860.1561055053903, "bdt": 64110476.48808914, "bhd": 286716.9523114691, "bmd": 760278.40483948, "bnb": 33088.590554196395, "brl": 2987970.1588596357, "btc": 143.43993463114862, "cad": 1023530.8847423886, "chf": 775369.9311755444, "clp": 513263951.10713327, "cny": 5116445.581048252, "czk": 17531259.737193648, "dkk": 5091812.5607314585, "eos": 158951.4860289723, "eth": 4830.946810788351, "eur": 681513.5620981099, "gbp": 588482.0950899278, "hkd": 5964346.072045486, "huf": 219971350.8722068, "idr": 10785689590.255285, "ils": 2753055.5359403198, "inr": 53106967.13484744, "jpy": 84839467.19603756, "krw": 881098047.544546, "kwd": 231575.48016527254, "lkr": 133398448.91313519, "ltc": 10313.524458827455, "mmk": 1158936954.4622006, "mxn": 14400175.531685404, "myr": 3142231.4074799833, "ngn": 272667374.6045055, "nok": 6603322.057392822, "nzd": 1141063.843903334, "php": 39575161.069652766, "pkr": 107598401.24490745, "pln": 2930303.0418525673, "rub": 49265660.494395934, "sar": 2851120.0459885313, "sek": 7216171.075357854, "sgd": 1035575.9755102609, "thb": 24270177.44808951, "try": 4516094.019501975, "twd": 23505589.78525137, "uah": 20094158.239907455, "usd": 760278.40483948, "vef": 188919788265.3107, "vnd": 17664759125.22948, "xag": 50418.01447261118, "xau": 591.1012541945992, "xdr": 547453.6709727645, "xlm": 7602624.382156483, "xrp": 2524750.331448053, "zar": 10933353.14287842, "bits": 143439934.6311486, "link": 1723617.3003004985, "sats": 14343993463.114862}}, "community_data": {"facebook_likes": null, "twitter_followers": 35644, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 29, "stars": 199, "subscribers": 55, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 270, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 1839, "deletions": -748}, "commit_count_4_weeks": 13}, "public_interest_stats": {"alexa_rank": 850620, "bing_matches": null}}, "PPT_20190501": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 4.363751318915973, "ars": 53.39477286084166, "aud": 1.6880608055107629, "bch": 0.004506815400764873, "bdt": 99.86077737280485, "bhd": 0.44804137995142723, "bmd": 1.1880573607712828, "bnb": 0.05331223644485904, "brl": 4.665976478693146, "btc": 0.0002258045555137945, "cad": 1.5994317263972264, "chf": 1.2116402993825939, "clp": 802.0575242566941, "cny": 7.995150815046419, "czk": 27.395295876288902, "dkk": 7.956835965161556, "eos": 0.25231033059404656, "eth": 0.007507780959899386, "eur": 1.0649009586390101, "gbp": 0.9197583669883044, "hkd": 9.319775369438377, "huf": 343.66935275030835, "idr": 16854.37574858182, "ils": 4.302092329949298, "inr": 82.9893708219564, "jpy": 132.5575000280558, "krw": 1376.8393463059517, "kwd": 0.3618739556894079, "lkr": 208.13226188819212, "ltc": 0.016524075819281753, "mmk": 1806.3255145224862, "mxn": 22.502519247424573, "myr": 4.9102422601250755, "ngn": 428.29467855804745, "nok": 10.318693998374869, "nzd": 1.783334689443095, "php": 61.89778849618384, "pkr": 168.13981798315592, "pln": 4.579129485620765, "rub": 76.98552294929878, "sar": 4.455452714364477, "sek": 11.302576573353447, "sgd": 1.6180153196344098, "thb": 37.907346210129425, "try": 7.054338883567903, "twd": 36.73126684366934, "uah": 31.31949686121091, "usd": 1.1880573607712828, "vef": 295217.5724251218, "vnd": 27604.096957444406, "xag": 0.07878626149101992, "xau": 0.0009236908368524579, "xdr": 0.8555260457782058, "xlm": 11.904868826584062, "xrp": 4.004910728905674, "zar": 17.086403351140447, "bits": 225.8045555137945, "link": 2.6934686209443606, "sats": 22580.455551379448}, "market_cap": {"aed": 158085180.2984769, "ars": 1934327068.1151552, "aud": 61153209.08347565, "bch": 163267.94840794327, "bdt": 3617646341.874391, "bhd": 16231150.025385674, "bmd": 43039634.561283164, "bnb": 1931337.0296715705, "brl": 169033860.77598384, "btc": 8180.198930190916, "cad": 57942452.34520395, "chf": 43893971.30732467, "clp": 29056057292.3223, "cny": 289639524.7436109, "czk": 992446629.385171, "dkk": 288251496.52900994, "eos": 9140420.979130551, "eth": 271983.626001402, "eur": 38578059.96339142, "gbp": 33319993.888308596, "hkd": 337626565.2977142, "huf": 12450075089.542355, "idr": 610581775703.6442, "ils": 155851466.30438066, "inr": 3006447593.0093117, "jpy": 4802147226.175165, "krw": 49878620571.09232, "kwd": 13109571.409924941, "lkr": 7539986525.789973, "ltc": 598616.0333732706, "mmk": 65437572806.500435, "mxn": 815196502.3714402, "myr": 177882852.68141794, "ngn": 15515788259.34258, "nok": 373814290.036841, "nzd": 64604686.49784865, "php": 2242364960.642853, "pkr": 6091184281.285603, "pln": 165887663.48955402, "rub": 2788946799.7538695, "sar": 161407237.53172454, "sek": 409457305.1609605, "sgd": 58615678.309011534, "thb": 1373265619.9468656, "try": 255556825.4912424, "twd": 1330659910.9812257, "uah": 1134608263.9264731, "usd": 43039634.561283164, "vef": 10694817315047.531, "vnd": 1000010845159.315, "xag": 2854181.97385841, "xau": 33462.455078706465, "xdr": 30993056.045752853, "xlm": 431276486.0642365, "xrp": 145085498.32203424, "zar": 618987416.3334627, "bits": 8180198930.190916, "link": 97576016.92940977, "sats": 818019893019.0917}, "total_volume": {"aed": 14656974.168337137, "ars": 179342439.41746822, "aud": 5669861.046779336, "bch": 15137.498010973772, "bdt": 335412521.7994463, "bhd": 1504882.0274949868, "bmd": 3990448.7617899454, "bnb": 179065.2159854728, "brl": 15672088.467053864, "btc": 758.4326638669905, "cad": 5372173.569149811, "chf": 4069659.1697114795, "clp": 2693951959.084396, "cny": 26854123.987341594, "czk": 92015358.95323806, "dkk": 26725432.014773905, "eos": 847460.2990988527, "eth": 25217.14542113613, "eur": 3576790.862245276, "gbp": 3089285.717914923, "hkd": 31303274.83429935, "huf": 1154317113.3229752, "idr": 56610501359.13312, "ils": 14449873.868048979, "inr": 278744817.357313, "jpy": 445234320.59671295, "krw": 4624529964.684064, "kwd": 1215462.7596998867, "lkr": 699074938.7732359, "ltc": 55501.08948440757, "mmk": 6067088720.477603, "mxn": 75581493.81755868, "myr": 16492528.722926617, "ngn": 1438556778.6252754, "nok": 34658444.153212324, "nzd": 5989867.10433356, "php": 207902380.48925617, "pkr": 564748261.0123224, "pln": 15380386.66256702, "rub": 258579084.5396077, "sar": 14964980.946464693, "sek": 37963110.35259611, "sgd": 5434592.168681726, "thb": 127323248.64243212, "try": 23694123.52691905, "twd": 123373031.58505821, "uah": 105195970.83138083, "usd": 3990448.7617899454, "vef": 991577204300.7032, "vnd": 92716680323.12248, "xag": 264627.40772785305, "xau": 3102.49410331645, "xdr": 2873542.1056087525, "xlm": 39986090.43377628, "xrp": 13451699.8816167, "zar": 57389836.00231068, "bits": 758432663.8669906, "link": 9046826.25457565, "sats": 75843266386.69905}}, "community_data": {"facebook_likes": null, "twitter_followers": 24134, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 609298, "bing_matches": null}}, "PPT_20190504": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 4.128589698586257, "ars": 49.85857535125944, "aud": 1.5945358677888795, "bch": 0.004239297763468009, "bdt": 94.92040461483668, "bhd": 0.4238125025394409, "bmd": 1.1240041334428859, "bnb": 0.051616680525741414, "brl": 4.404309036523945, "btc": 0.0002121613390327621, "cad": 1.505241607415777, "chf": 1.1452489355690894, "clp": 761.7488412755773, "cny": 7.570007106146748, "czk": 25.697114007254832, "dkk": 7.482894537796656, "eos": 0.23450148948723473, "eth": 0.006989448592583727, "eur": 1.002099141146204, "gbp": 0.8621920986483005, "hkd": 8.81820582830615, "huf": 324.6318030416814, "idr": 16016.328298874387, "ils": 4.0472016832877875, "inr": 78.19247154708773, "jpy": 125.22281649145705, "krw": 1308.6335166159217, "kwd": 0.34214685822001334, "lkr": 198.03828827130198, "ltc": 0.015249364720052404, "mmk": 1710.2747273980594, "mxn": 21.290603046633528, "myr": 4.649443097986495, "ngn": 403.9448729896881, "nok": 9.704171738380884, "nzd": 1.6902830358920795, "php": 58.20086209340814, "pkr": 159.18146537818154, "pln": 4.296674400705447, "rub": 72.6514683704545, "sar": 4.218106511777791, "sek": 10.673768052000327, "sgd": 1.5289772027016897, "thb": 35.85292184649446, "try": 6.705839008231855, "twd": 34.733907167399906, "uah": 29.65645903145624, "usd": 1.1240041334428859, "vef": 279301.1369883609, "vnd": 26170.10902700747, "xag": 0.07521441135548956, "xau": 0.0008760375815640506, "xdr": 0.807721734337525, "xlm": 11.267312428597165, "xrp": 3.6639166551074625, "zar": 16.07961984762443, "bits": 212.1613390327621, "link": 2.4123336336068, "sats": 21216.133903276208}, "market_cap": {"aed": 149471004.111908, "ars": 1805074339.039768, "aud": 57728399.9261222, "bch": 153534.92600614481, "bdt": 3436487814.0703835, "bhd": 15343660.895012809, "bmd": 40693321.138008125, "bnb": 1869450.260694936, "brl": 159453116.48038253, "btc": 7682.700478718706, "cad": 54495600.41495542, "chf": 41462465.60083764, "clp": 27578270668.439495, "cny": 274063698.7195617, "czk": 930335468.975713, "dkk": 270909884.94472414, "eos": 8491154.887284176, "eth": 253127.4803740136, "eur": 36279886.30066433, "gbp": 31214707.231974166, "hkd": 319253346.9900725, "huf": 11752933836.926182, "idr": 579853375557.8759, "ils": 146524441.42162594, "inr": 2830871578.2866716, "jpy": 4533552976.966569, "krw": 47377622874.47896, "kwd": 12387046.95440968, "lkr": 7169756251.305649, "ltc": 552299.5694684077, "mmk": 61918596778.68791, "mxn": 770802634.2792215, "myr": 168327922.8873708, "ngn": 14624375435.587791, "nok": 351328758.65743595, "nzd": 61194819.79394227, "php": 2107097564.1535072, "pkr": 5762988139.564712, "pln": 155556324.04820645, "rub": 2630265713.0726347, "sar": 152711860.9006601, "sek": 386431916.19075286, "sgd": 55354921.27742679, "thb": 1298015210.9996142, "try": 242777452.62902722, "twd": 1257502527.514135, "uah": 1073679157.6439095, "usd": 40693321.138008125, "vef": 10111787424539.504, "vnd": 947459728275.8235, "xag": 2723054.216998306, "xau": 31715.967561752135, "xdr": 29242668.196305126, "xlm": 408050915.8425789, "xrp": 132665178.51415186, "zar": 582144775.7778361, "bits": 7682700478.718706, "link": 87354448.48827186, "sats": 768270047871.8706}, "total_volume": {"aed": 7247117.48057782, "ars": 87519220.69382395, "aud": 2798967.5905111455, "bch": 7441.448816656147, "bdt": 166618475.98545775, "bhd": 743939.0251573685, "bmd": 1973019.9894906015, "bnb": 90605.3095698984, "brl": 7731101.257019879, "btc": 372.4172807323599, "cad": 2642224.9634860447, "chf": 2010312.0403119624, "clp": 1337135377.0776742, "cny": 13288007.487360694, "czk": 45107413.84307283, "dkk": 13135094.49213519, "eos": 411632.05059258285, "eth": 12268.924444649629, "eur": 1759034.1335104082, "gbp": 1513448.389378533, "hkd": 15479032.3745501, "huf": 569842243.0740637, "idr": 28114252387.247902, "ils": 7104253.076158788, "inr": 137255108.58890307, "jpy": 219809796.7141616, "krw": 2297109067.821584, "kwd": 600587.2848009372, "lkr": 347626391.94834894, "ltc": 26767.963323708696, "mmk": 3002129729.1327305, "mxn": 37372447.43989364, "myr": 8161397.186527869, "ngn": 709064393.4018899, "nok": 17034212.109726317, "nzd": 2967037.325295915, "php": 102162848.7825441, "pkr": 279419090.91165906, "pln": 7542164.862826246, "rub": 127528711.94671153, "sar": 7404250.765560857, "sek": 18736192.42420064, "sgd": 2683889.2266041166, "thb": 62934405.11477648, "try": 11771090.528840637, "twd": 60970143.36101918, "uah": 52057447.78477316, "usd": 1973019.9894906015, "vef": 490271085282.8819, "vnd": 45937685370.67205, "xag": 132027.57239654797, "xau": 1537.7520496090794, "xdr": 1417833.8676678296, "xlm": 19778070.19389196, "xrp": 6431453.929098822, "zar": 28225351.169836137, "bits": 372417280.73235995, "link": 4234488.414066461, "sats": 37241728073.23599}}, "community_data": {"facebook_likes": null, "twitter_followers": 24122, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 552418, "bing_matches": null}}, "ENJ_20190505": {"id": "enjincoin", "symbol": "enj", "name": "Enjin Coin", "localization": {"en": "Enjin Coin", "de": "Enjin Coin", "es": "Enjin Coin", "fr": "Enjin Coin", "it": "Enjin Coin", "pl": "Enjin Coin", "ro": "Enjin Coin", "hu": "Enjin Coin", "nl": "Enjin Coin", "pt": "Enjin Coin", "sv": "Enjin Coin", "vi": "Enjin Coin", "tr": "Enjin Coin", "ru": "Enjin Coin", "ja": "\u30a8\u30f3\u30b8\u30f3", "zh": "\u6069\u91d1\u5e01", "zh-tw": "\u6069\u91d1\u5e63", "ko": "\uc5d4\uc9c4\ucf54\uc778", "ar": "Enjin Coin", "th": "Enjin Coin", "id": "Enjin Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1102/thumb/enjin-coin-logo.png?1547035078", "small": "https://assets.coingecko.com/coins/images/1102/small/enjin-coin-logo.png?1547035078"}, "market_data": {"current_price": {"aed": 0.537932823928224, "ars": 6.500936602729527, "aud": 0.20878509545517335, "bch": 0.0005433610735286855, "bdt": 12.36323177354674, "bhd": 0.05521559889171428, "bmd": 0.14645542432678557, "bnb": 0.006726868149918064, "brl": 0.5742224277004602, "btc": 2.7356401275543227e-05, "cad": 0.19684341306641606, "chf": 0.14902029817302037, "clp": 99.42892969532589, "cny": 0.9863772828409001, "czk": 3.3512830895314774, "dkk": 0.9762572130199184, "eos": 0.030907429295289085, "eth": 0.0009182773307392098, "eur": 0.13076155396677583, "gbp": 0.1121945210923232, "hkd": 1.1490965820391739, "huf": 42.439068299707785, "idr": 2086.9884748964896, "ils": 0.5254967080269402, "inr": 10.199580470847902, "jpy": 16.321871219522926, "krw": 170.72015902924727, "kwd": 0.04457795560116254, "lkr": 25.774690127270972, "ltc": 0.0020056206089415995, "mmk": 222.72202166520594, "mxn": 2.7822381539917984, "myr": 0.605285623200173, "ngn": 52.96768533936169, "nok": 1.2698637249390423, "nzd": 0.22096476790846198, "php": 7.601558489692475, "pkr": 20.741017193159355, "pln": 0.560150551164871, "rub": 9.484292178435878, "sar": 0.5492883917088243, "sek": 1.3970529381956402, "sgd": 0.19935746688040965, "thb": 4.691333379747744, "try": 0.8731442463346752, "twd": 4.53001507313858, "uah": 3.8695282036782914, "usd": 0.14645542432678557, "vef": 36392.363084368124, "vnd": 3414.1639116716406, "xag": 0.009964648395576798, "xau": 0.00011467606180211616, "xdr": 0.10520347141208425, "xlm": 1.4520853584563957, "xrp": 0.4854645293586023, "zar": 2.116302849835698, "bits": 27.356401275543227, "link": 0.3107578908064273, "sats": 2735.6401275543226}, "market_cap": {"aed": 465749884.7292754, "ars": 5628603310.062369, "aud": 180769103.15926832, "bch": 471038.92107173114, "bdt": 10704261791.206503, "bhd": 47806450.313404076, "bmd": 126803187.98928472, "bnb": 5825546.308703375, "brl": 497169939.4683866, "btc": 23696.438866276203, "cad": 170429824.81699803, "chf": 129023892.22054115, "clp": 86086980538.17249, "cny": 854019471.107832, "czk": 2901588531.531431, "dkk": 845257370.8177722, "eos": 26772877.358511355, "eth": 795406.4125772421, "eur": 113215211.97072904, "gbp": 97139611.01019925, "hkd": 994904153.1233262, "huf": 36744348530.85681, "idr": 1806944284448.536, "ils": 454982518.82435244, "inr": 8830941740.818947, "jpy": 14131708088.653822, "krw": 147811940175.34933, "kwd": 38596227.556990415, "lkr": 22316093054.234207, "ltc": 1736899.2081419153, "mmk": 192835891960.89227, "mxn": 2408901338.364826, "myr": 524064895.6409146, "ngn": 45860174809.62615, "nok": 1099466061.9392908, "nzd": 191314436.68202117, "php": 6581537383.205858, "pkr": 17957867483.04249, "pln": 484986308.75681376, "rub": 8211634970.679285, "sar": 475581696.71321106, "sek": 1209588290.548585, "sgd": 172606528.34202212, "thb": 4061823119.266761, "try": 755980698.691601, "twd": 3922151436.547568, "uah": 3350292517.3056774, "usd": 126803187.98928472, "vef": 31509025212099.547, "vnd": 2956031641081.065, "xag": 8627534.210901571, "xau": 99288.16422748979, "xdr": 91086660.83153087, "xlm": 1259698888.9605894, "xrp": 420472288.4504867, "zar": 1832325086.923363, "bits": 23696438866.276203, "link": 269182166.45296717, "sats": 2369643886627.62}, "total_volume": {"aed": 25902828.873309452, "ars": 313036574.1712113, "aud": 10053531.516036538, "bch": 26164.21284957547, "bdt": 595320944.746761, "bhd": 2658771.031641315, "bmd": 7052199.875445466, "bnb": 323915.75079622347, "brl": 27650265.271646548, "btc": 1317.2800567465088, "cad": 9478509.242592474, "chf": 7175705.051864132, "clp": 4787754969.378833, "cny": 47496566.161125176, "czk": 161372774.65286696, "dkk": 47009259.14973185, "eos": 1488271.0560465942, "eth": 44217.38086678065, "eur": 6296500.241192478, "gbp": 5402450.549783, "hkd": 55331912.832738794, "huf": 2043548701.2718532, "idr": 100493784578.99399, "ils": 25303998.373085916, "inr": 491135650.7056613, "jpy": 785939467.3188945, "krw": 8220608350.809263, "kwd": 2146541.5458882092, "lkr": 1241116656.0796466, "ltc": 96575.71560483315, "mmk": 10724629836.459135, "mxn": 133971818.75121623, "myr": 29146036.86522861, "ngn": 2550528296.7150826, "nok": 61147156.85003118, "nzd": 10640013.614278218, "php": 366034307.5759759, "pkr": 998732546.360586, "pln": 26972668.751014188, "rub": 456692706.51398546, "sar": 26449628.242851924, "sek": 67271639.83186184, "sgd": 9599567.30565437, "thb": 225899592.51020616, "try": 42044108.46202537, "twd": 218131707.18260106, "uah": 186327590.40131962, "usd": 7052199.875445466, "vef": 1752384519661.7168, "vnd": 164400645611.57794, "xag": 479823.0758414608, "xau": 5521.943024472544, "xdr": 5065813.788728618, "xlm": 69921590.3481527, "xrp": 23376347.50787293, "zar": 101905346.03016818, "bits": 1317280056.7465088, "link": 14963780.064225104, "sats": 131728005674.65088}}, "community_data": {"facebook_likes": null, "twitter_followers": 45727, "reddit_average_posts_48h": 0.208, "reddit_average_comments_48h": 0.75, "reddit_subscribers": 12389, "reddit_accounts_active_48h": "196.92"}, "developer_data": {"forks": 33, "stars": 61, "subscribers": 21, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 7, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 19139, "bing_matches": null}}, "PAX_20190508": {"id": "payperex", "symbol": "pax", "name": "PayperEx", "localization": {"en": "PayperEx", "de": "PayperEx", "es": "PayperEx", "fr": "PayperEx", "it": "PayperEx", "pl": "PayperEx", "ro": "PayperEx", "hu": "PayperEx", "nl": "PayperEx", "pt": "PayperEx", "sv": "PayperEx", "vi": "PayperEx", "tr": "PayperEx", "ru": "PayperEx", "ja": "PayperEx", "zh": "PayperEx", "zh-tw": "PayperEx", "ko": "PayperEx", "ar": "PayperEx", "th": "PayperEx", "id": "PayperEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1601/thumb/pax.png?1547035800", "small": "https://assets.coingecko.com/coins/images/1601/small/pax.png?1547035800"}}, "PAX_20190510": {"id": "payperex", "symbol": "pax", "name": "PayperEx", "localization": {"en": "PayperEx", "de": "PayperEx", "es": "PayperEx", "fr": "PayperEx", "it": "PayperEx", "pl": "PayperEx", "ro": "PayperEx", "hu": "PayperEx", "nl": "PayperEx", "pt": "PayperEx", "sv": "PayperEx", "vi": "PayperEx", "tr": "PayperEx", "ru": "PayperEx", "ja": "PayperEx", "zh": "PayperEx", "zh-tw": "PayperEx", "ko": "PayperEx", "ar": "PayperEx", "th": "PayperEx", "id": "PayperEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1601/thumb/pax.png?1547035800", "small": "https://assets.coingecko.com/coins/images/1601/small/pax.png?1547035800"}}, "PAX_20190518": {"id": "payperex", "symbol": "pax", "name": "PayperEx", "localization": {"en": "PayperEx", "de": "PayperEx", "es": "PayperEx", "fr": "PayperEx", "it": "PayperEx", "pl": "PayperEx", "ro": "PayperEx", "hu": "PayperEx", "nl": "PayperEx", "pt": "PayperEx", "sv": "PayperEx", "vi": "PayperEx", "tr": "PayperEx", "ru": "PayperEx", "ja": "PayperEx", "zh": "PayperEx", "zh-tw": "PayperEx", "ko": "PayperEx", "ar": "PayperEx", "th": "PayperEx", "id": "PayperEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1601/thumb/pax.png?1547035800", "small": "https://assets.coingecko.com/coins/images/1601/small/pax.png?1547035800"}}, "LEND_20190519": {"id": "ethlend", "symbol": "lend", "name": "Aave [OLD]", "localization": {"en": "Aave [OLD]", "de": "Aave [OLD]", "es": "Aave [OLD]", "fr": "Aave [OLD]", "it": "Aave [OLD]", "pl": "Aave [OLD]", "ro": "Aave [OLD]", "hu": "Aave [OLD]", "nl": "Aave [OLD]", "pt": "Aave [OLD]", "sv": "Aave [OLD]", "vi": "Aave [OLD]", "tr": "Aave [OLD]", "ru": "Aave [OLD]", "ja": "\u30a4\u30fc\u30b5\u30ec\u30f3\u30c9", "zh": "Aave [OLD]", "zh-tw": "Aave [OLD]", "ko": "\uc5d0\uc774\ube0c", "ar": "Aave [OLD]", "th": "Aave [OLD]", "id": "Aave [OLD]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1365/thumb/ethlend.png?1547394586", "small": "https://assets.coingecko.com/coins/images/1365/small/ethlend.png?1547394586"}, "market_data": {"current_price": {"aed": 0.03186760483282708, "ars": 0.3901658874261566, "aud": 0.012522909103767648, "bch": 2.1420630997291163e-05, "bdt": 0.7331615588752165, "bhd": 0.003271270109112761, "bmd": 0.00867575129916741, "bnb": 0.0003220483467405664, "brl": 0.034715151248488486, "btc": 1.0585660775549637e-06, "cad": 0.011661033942454466, "chf": 0.00874602488469066, "clp": 6.004487474153768, "cny": 0.05965620108333495, "czk": 0.1991340857822242, "dkk": 0.05781317653184762, "eos": 0.0013345668906380836, "eth": 3.49040540591027e-05, "eur": 0.007741711238547743, "gbp": 0.006753204811271908, "hkd": 0.06809900846011976, "huf": 2.5140158327162356, "idr": 125.45484192068416, "ils": 0.0309649709919104, "inr": 0.6091661423207796, "jpy": 0.9498733067406429, "krw": 10.298203549624711, "kwd": 0.0026390420846885395, "lkr": 1.5292727728389481, "ltc": 8.445432149155576e-05, "mmk": 13.37134222953285, "mxn": 0.1653771712647297, "myr": 0.036208248047075176, "ngn": 3.1263288522240016, "nok": 0.07562652407484229, "nzd": 0.013217671943556253, "php": 0.45393074213400014, "pkr": 1.2305279964608298, "pln": 0.03328833718982743, "rub": 0.5611406534291089, "sar": 0.03253927282265733, "sek": 0.0833087283352291, "sgd": 0.011870006763997467, "thb": 0.27364620960268937, "try": 0.05218932897019351, "twd": 0.2695381025505125, "uah": 0.22874504094462567, "usd": 0.00867575129916741, "vef": 2155.8169849993997, "vnd": 202.16397061042878, "xag": 0.0005867147728362552, "xau": 6.690739401917909e-06, "xdr": 0.006245447790736838, "xlm": 0.06211079168203596, "xrp": 0.018917249082707317, "zar": 0.12336575655239758, "bits": 1.0585660775549637, "link": 0.010264104586296034, "sats": 105.85660775549637}, "market_cap": {"aed": 35378905.71083175, "ars": 433155934.2236394, "aud": 13902733.598325642, "bch": 23838.486718097323, "bdt": 813944248.3463117, "bhd": 3631711.8074008576, "bmd": 9631680.472819526, "bnb": 357511.0742258113, "brl": 38540206.24394005, "btc": 1176.9749017560416, "cad": 12945893.56511442, "chf": 9709697.084649371, "clp": 6666086055.2384, "cny": 66229361.2672017, "czk": 221075480.30860287, "dkk": 64183264.85763867, "eos": 1484745.101260179, "eth": 38813.121773027066, "eur": 8594724.121435309, "gbp": 7497300.080042727, "hkd": 75602431.119326, "huf": 2791020209.011283, "idr": 139277961006.56644, "ils": 34376816.042759076, "inr": 676286518.0629288, "jpy": 1054534168.2471187, "krw": 11432901038.041508, "kwd": 2929822.3563050795, "lkr": 1697774197.9741993, "ltc": 93684.61964409487, "mmk": 14844650498.446072, "mxn": 183599093.1728859, "myr": 40197818.45331227, "ngn": 3470800339.846988, "nok": 83959358.6815678, "nzd": 14674048.202269483, "php": 503946657.0974791, "pkr": 1366112520.5268335, "pln": 36956180.073380165, "rub": 622969387.6375895, "sar": 36124580.78135693, "sek": 92488019.10664012, "sgd": 13177891.852663135, "thb": 303797649.63343704, "try": 57939759.15146483, "twd": 299236894.8226696, "uah": 253949089.6116496, "usd": 9631680.472819526, "vef": 2393353571509.6074, "vnd": 224439210033.94687, "xag": 651361.3663849524, "xau": 7427.951980638418, "xdr": 6933596.348690486, "xlm": 69429717.1976397, "xrp": 21030154.8355637, "zar": 136958691.80970657, "bits": 1176974901.7560415, "link": 11412224.275099399, "sats": 117697490175.60416}, "total_volume": {"aed": 5413028.998413907, "ars": 66273548.76241326, "aud": 2127140.413557783, "bch": 3638.5067958800387, "bdt": 124534768.1299782, "bhd": 555657.6986304093, "bmd": 1473662.473592753, "bnb": 54703.10834287112, "brl": 5896713.021834044, "btc": 179.80795559005156, "cad": 1980742.3624436595, "chf": 1485599.1396288534, "clp": 1019921797.973545, "cny": 10133197.90091849, "czk": 33824901.07325071, "dkk": 9820141.887003286, "eos": 226689.43327380152, "eth": 5928.800039264463, "eur": 1315006.498023283, "gbp": 1147098.8694445982, "hkd": 11567292.537095284, "huf": 427030543.2853399, "idr": 21309750163.857914, "ils": 5259707.680998843, "inr": 103472915.85082039, "jpy": 161345409.58377612, "krw": 1749252092.7793345, "kwd": 448267.4931922855, "lkr": 259762160.01444948, "ltc": 14345.404798174368, "mmk": 2271255201.5085588, "mxn": 28090954.07162515, "myr": 6150330.333539353, "ngn": 531037987.4622445, "nok": 12845915.782308023, "nzd": 2245152.7781055607, "php": 77104642.26391336, "pkr": 209017394.40866944, "pln": 5654354.491426984, "rub": 95315309.86200042, "sar": 5527118.473456986, "sek": 14150814.429424943, "sgd": 2016238.4704450802, "thb": 46481524.9108259, "try": 8864875.556396147, "twd": 45783722.15098011, "uah": 38854615.72565855, "usd": 1473662.473592753, "vef": 366186913522.10266, "vnd": 34339557085.930744, "xag": 99659.32789178286, "xau": 1136.4884996347314, "xdr": 1060851.2995151093, "xlm": 10550134.478352007, "xrp": 3213282.529141661, "zar": 20954898.277811907, "bits": 179807955.59005156, "link": 1743460.0453919559, "sats": 17980795559.005157}}, "community_data": {"facebook_likes": null, "twitter_followers": 11532, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 5894, "reddit_accounts_active_48h": "1963.12"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 548468, "bing_matches": null}}, "PAX_20190523": {"id": "payperex", "symbol": "pax", "name": "PayperEx", "localization": {"en": "PayperEx", "de": "PayperEx", "es": "PayperEx", "fr": "PayperEx", "it": "PayperEx", "pl": "PayperEx", "ro": "PayperEx", "hu": "PayperEx", "nl": "PayperEx", "pt": "PayperEx", "sv": "PayperEx", "vi": "PayperEx", "tr": "PayperEx", "ru": "PayperEx", "ja": "PayperEx", "zh": "PayperEx", "zh-tw": "PayperEx", "ko": "PayperEx", "ar": "PayperEx", "th": "PayperEx", "id": "PayperEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1601/thumb/pax.png?1547035800", "small": "https://assets.coingecko.com/coins/images/1601/small/pax.png?1547035800"}}, "PAX_20190611": {"id": "payperex", "symbol": "pax", "name": "PayperEx", "localization": {"en": "PayperEx", "de": "PayperEx", "es": "PayperEx", "fr": "PayperEx", "it": "PayperEx", "pl": "PayperEx", "ro": "PayperEx", "hu": "PayperEx", "nl": "PayperEx", "pt": "PayperEx", "sv": "PayperEx", "vi": "PayperEx", "tr": "PayperEx", "ru": "PayperEx", "ja": "PayperEx", "zh": "PayperEx", "zh-tw": "PayperEx", "ko": "PayperEx", "ar": "PayperEx", "th": "PayperEx", "id": "PayperEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1601/thumb/pax.png?1547035800", "small": "https://assets.coingecko.com/coins/images/1601/small/pax.png?1547035800"}}, "DLT_20190612": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.4109597628793293, "ars": 5.013734751456341, "aud": 0.15986307408629233, "bch": 0.00028354925208585004, "bdt": 9.45752094510503, "bhd": 0.042185032291520874, "bmd": 0.11188625006039458, "bnb": 0.003511256704475718, "brl": 0.4339228492967251, "btc": 1.4093033739853273e-05, "cad": 0.14865744237024256, "chf": 0.11048990965964085, "clp": 77.53717129185343, "cny": 0.7731116106673134, "czk": 2.527851641926995, "dkk": 0.7371513698979035, "eos": 0.017521890432663396, "eth": 0.0004573459083866959, "eur": 0.09868702914076984, "gbp": 0.08784357321616665, "hkd": 0.8774846990361523, "huf": 31.602271329558448, "idr": 1595.696660344423, "ils": 0.4000604757159472, "inr": 7.76378689169078, "jpy": 12.104382057300713, "krw": 132.25849847139122, "kwd": 0.03400983965835799, "lkr": 19.74332114230843, "ltc": 0.0009425186999841061, "mmk": 170.41851947482294, "mxn": 2.194928510559787, "myr": 0.46410438902301626, "ngn": 34.31551289352302, "nok": 0.9650775351659345, "nzd": 0.16787412959061587, "php": 5.803680319762741, "pkr": 16.731469834031362, "pln": 0.4205076879144842, "rub": 7.2486849736627335, "sar": 0.4195398718514612, "sek": 1.0516300529426539, "sgd": 0.15237128266849737, "thb": 3.4957180537619346, "try": 0.6523675499621376, "twd": 3.5097038350194905, "uah": 2.9689016453525725, "usd": 0.11188625006039458, "vef": 27802.350476694395, "vnd": 2599.4921547539757, "xag": 0.007452128861010046, "xau": 8.346042937005072e-05, "xdr": 0.08049868844470191, "xlm": 0.896989938901445, "xrp": 0.2718270053255352, "zar": 1.6737120089659443, "bits": 14.093033739853274, "link": 0.09734385220023098, "sats": 1409.3033739853274}, "market_cap": {"aed": 33155625.93199503, "ars": 404500705.3168412, "aud": 12897516.407951277, "bch": 22876.334338882483, "bdt": 763018803.843296, "bhd": 3403426.021046958, "bmd": 9026817.194814695, "bnb": 283282.99838685297, "brl": 35008253.78579007, "btc": 1137.0051210165875, "cad": 11993462.61225611, "chf": 8914162.51622341, "clp": 6255584316.006581, "cny": 62373501.452730484, "czk": 203943332.22330788, "dkk": 59472282.406317115, "eos": 1413640.2083173655, "eth": 36897.99155458989, "eur": 7961923.570342405, "gbp": 7087089.581906935, "hkd": 70794167.87291336, "huf": 2549624516.6754103, "idr": 128738446802.26851, "ils": 32276287.561779447, "inr": 626370845.1481916, "jpy": 976563644.1338354, "krw": 10670420069.646551, "kwd": 2743863.5690734303, "lkr": 1592861952.8667552, "ltc": 76041.01489556093, "mmk": 13749114132.253267, "mxn": 177083586.31927696, "myr": 37443255.7777257, "ngn": 2768524833.649667, "nok": 77861028.35748678, "nzd": 13543836.519099956, "php": 468232345.5774347, "pkr": 1349870243.3125856, "pln": 33925938.40413182, "rub": 584813184.1467035, "sar": 33847856.43539663, "sek": 84843957.49578273, "sgd": 12293089.755403602, "thb": 282029363.0261926, "try": 52632049.19423671, "twd": 283157715.1755449, "uah": 239526594.2644081, "usd": 9026817.194814695, "vef": 2243052521680.0215, "vnd": 209723182854.48788, "xag": 601226.7361202068, "xau": 6733.464018300071, "xdr": 6494515.140336123, "xlm": 72367821.78043076, "xrp": 21930600.80539867, "zar": 135032609.7580926, "bits": 1137005121.0165875, "link": 7853558.041101855, "sats": 113700512101.65875}, "total_volume": {"aed": 2898236.0552253053, "ars": 35358660.726776816, "aud": 1127411.89543681, "bch": 1999.6913081456196, "bdt": 66697839.23396018, "bhd": 297504.0201539867, "bmd": 789062.0768734645, "bnb": 24762.64515232173, "brl": 3060179.9996345122, "btc": 99.389142689239, "cad": 1048385.7503137708, "chf": 779214.5821540836, "clp": 546820019.2733108, "cny": 5452261.138780258, "czk": 17827318.955906007, "dkk": 5198656.587273133, "eos": 123570.67332298355, "eth": 3225.3678367662937, "eur": 695976.4236647019, "gbp": 619504.4724845098, "hkd": 6188337.697191668, "huf": 222870583.61291003, "idr": 11253426763.268728, "ils": 2821370.362068762, "inr": 54753017.514249705, "jpy": 85364455.77761386, "krw": 932734499.8305849, "kwd": 239849.62138307304, "lkr": 139237001.65588278, "ltc": 6646.980862260509, "mmk": 1201852692.729619, "mxn": 15479425.29306516, "myr": 3273031.0729952804, "ngn": 242005338.97709155, "nok": 6806073.88156191, "nzd": 1183908.7401409452, "php": 40929640.98939514, "pkr": 117996342.97565758, "pln": 2965571.4566173865, "rub": 51120333.52473963, "sar": 2958746.069652427, "sek": 7416473.366741374, "sgd": 1074577.0878314327, "thb": 24653060.99879606, "try": 4600730.595404875, "twd": 24751693.758405294, "uah": 20937762.209837396, "usd": 789062.0768734645, "vef": 196072175064.0739, "vnd": 18332553618.869724, "xag": 52555.092989739394, "xau": 588.592965622992, "xdr": 567705.7033860738, "xlm": 6325895.664052789, "xrp": 1917021.80792263, "zar": 11803619.061053991, "bits": 99389142.689239, "link": 686503.8567877349, "sats": 9938914268.923899}}, "community_data": {"facebook_likes": null, "twitter_followers": 15038, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2677, "reddit_accounts_active_48h": "23.625"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2533353, "bing_matches": null}}, "PPT_20190614": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 4.210209116088123, "ars": 51.43010459840508, "aud": 1.6461851496560278, "bch": 0.0029065861237630645, "bdt": 96.63862221753358, "bhd": 0.4321653235544304, "bmd": 1.1462024648630507, "bnb": 0.03573183976231873, "brl": 4.454142778457818, "btc": 0.00014324397425070353, "cad": 1.520380259517588, "chf": 1.1339277826668333, "clp": 801.993388744051, "cny": 7.944329283965804, "czk": 25.960054222269527, "dkk": 7.56369607702916, "eos": 0.17811476852217445, "eth": 0.004635726285410148, "eur": 1.0128590011132088, "gbp": 0.9030929220655983, "hkd": 8.989608621797663, "huf": 324.2136830086974, "idr": 16330.92621282914, "ils": 4.102373241991345, "inr": 79.6996284126975, "jpy": 124.19906048516563, "krw": 1356.6452374119076, "kwd": 0.3482392328746924, "lkr": 202.22555079724535, "ltc": 0.008839100460589097, "mmk": 1750.7096448318193, "mxn": 22.007710859511498, "myr": 4.77157094287452, "ngn": 412.63288735069824, "nok": 9.91659986525566, "nzd": 1.7337149008853026, "php": 59.705820500404734, "pkr": 172.6939216710457, "pln": 4.316426552304527, "rub": 74.18176504495068, "sar": 4.298603103975903, "sek": 10.793163931272003, "sgd": 1.5651280037458457, "thb": 35.91224252785666, "try": 6.639684959979801, "twd": 35.9874230937295, "uah": 30.161153321166957, "usd": 1.1462024648630507, "vef": 284817.1480246419, "vnd": 26755.944662866605, "xag": 0.07787774074100019, "xau": 0.0008622193421685817, "xdr": 0.824033607051669, "xlm": 9.251057945587469, "xrp": 2.859831063073027, "zar": 16.98556515718586, "bits": 143.24397425070353, "link": 0.9594721536040491, "sats": 14324.397425070354}, "market_cap": {"aed": 152535829.31796104, "ars": 1863399322.477843, "aud": 59640439.073518015, "bch": 105319.27510863906, "bdt": 3501216205.097415, "bhd": 15657344.852288367, "bmd": 41526902.51799763, "bnb": 1294405.8555621046, "brl": 161373543.1849389, "btc": 5190.482635297271, "cad": 55083899.694730476, "chf": 41084350.31786334, "clp": 29056581326.35552, "cny": 287822961.3522419, "czk": 940555273.2008834, "dkk": 274019958.8049918, "eos": 6457360.596288849, "eth": 167961.97771435295, "eur": 36691759.15021709, "gbp": 32722368.646131754, "hkd": 325689267.4132776, "huf": 11745718269.605555, "idr": 591678355192.6041, "ils": 148628936.80216524, "inr": 2886863056.555907, "jpy": 4499619837.597531, "krw": 49151241820.30199, "kwd": 12616703.523018027, "lkr": 7326629449.893013, "ltc": 320201.2312201067, "mmk": 63428190905.989815, "mxn": 797341901.2829945, "myr": 172873962.0413704, "ngn": 14949684906.479147, "nok": 359212191.6861515, "nzd": 62812346.941647515, "php": 2163366577.3100553, "pkr": 6256698856.027225, "pln": 156382009.50227538, "rub": 2687587909.4427943, "sar": 155738342.51324674, "sek": 390999872.81040835, "sgd": 56701580.18231952, "thb": 1301024027.4303281, "try": 240552888.21600467, "twd": 1303071760.5203903, "uah": 1092738248.4281487, "usd": 41526902.51799763, "vef": 10318922096269.055, "vnd": 969458118238.2222, "xag": 2821317.8241595533, "xau": 31235.70553598746, "xdr": 29854728.39275147, "xlm": 335307691.7302541, "xrp": 103691077.29174404, "zar": 615528276.8289605, "bits": 5190482635.297272, "link": 34766722.84739149, "sats": 519048263529.7271}, "total_volume": {"aed": 23473925.931357387, "ars": 286747387.765538, "aud": 9178268.158858184, "bch": 16205.605351431974, "bdt": 538806457.706442, "bhd": 2409528.0104859914, "bmd": 6390625.980956942, "bnb": 199222.06637354224, "brl": 24833972.561998695, "btc": 798.6535464059122, "cad": 8476845.832440306, "chf": 6322188.767326879, "clp": 4471496043.481115, "cny": 44293428.67401257, "czk": 144739696.57682478, "dkk": 42171216.817004465, "eos": 993074.8730730924, "eth": 25846.38730792361, "eur": 5647172.507462322, "gbp": 5035174.210395979, "hkd": 50121360.03734625, "huf": 1807646074.3474982, "idr": 91052710623.21985, "ils": 22872689.448442996, "inr": 444363479.9438807, "jpy": 692469059.4185517, "krw": 7563944911.060641, "kwd": 1941599.98553434, "lkr": 1127503995.633629, "ltc": 49282.205180459394, "mmk": 9761042123.31361, "mxn": 122703495.33490716, "myr": 26603786.130538896, "ngn": 2300625353.144499, "nok": 55289778.79944521, "nzd": 9666288.311894005, "php": 332888455.05128706, "pkr": 962851063.7657629, "pln": 24066138.850386746, "rub": 413598757.23714083, "sar": 23966764.616382845, "sek": 60177041.97151193, "sgd": 8726335.870736888, "thb": 200227897.92235237, "try": 37019413.68245597, "twd": 200647065.47106937, "uah": 168162829.81288573, "usd": 6390625.980956942, "vef": 1587991582452.0674, "vnd": 149177165770.6139, "xag": 434205.5863377758, "xau": 4807.2844879150525, "xdr": 4594380.783359472, "xlm": 51579064.84302767, "xrp": 15944923.565494029, "zar": 94702635.28679325, "bits": 798653546.4059122, "link": 5349515.343748069, "sats": 79865354640.59122}}, "community_data": {"facebook_likes": null, "twitter_followers": 23987, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 688169, "bing_matches": null}}, "LEND_20190615": {"id": "ethlend", "symbol": "lend", "name": "Aave [OLD]", "localization": {"en": "Aave [OLD]", "de": "Aave [OLD]", "es": "Aave [OLD]", "fr": "Aave [OLD]", "it": "Aave [OLD]", "pl": "Aave [OLD]", "ro": "Aave [OLD]", "hu": "Aave [OLD]", "nl": "Aave [OLD]", "pt": "Aave [OLD]", "sv": "Aave [OLD]", "vi": "Aave [OLD]", "tr": "Aave [OLD]", "ru": "Aave [OLD]", "ja": "\u30a4\u30fc\u30b5\u30ec\u30f3\u30c9", "zh": "Aave [OLD]", "zh-tw": "Aave [OLD]", "ko": "\uc5d0\uc774\ube0c", "ar": "Aave [OLD]", "th": "Aave [OLD]", "id": "Aave [OLD]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1365/thumb/ethlend.png?1547394586", "small": "https://assets.coingecko.com/coins/images/1365/small/ethlend.png?1547394586"}, "market_data": {"current_price": {"aed": 0.03643575453171433, "ars": 0.44319981946232767, "aud": 0.01424822730199101, "bch": 2.555189697343588e-05, "bdt": 0.8378031354718601, "bhd": 0.0037391776460939203, "bmd": 0.009919400795036884, "bnb": 0.000310470224322965, "brl": 0.03825317722598023, "btc": 1.254799251641546e-06, "cad": 0.013174442246527385, "chf": 0.009844092704200962, "clp": 6.877016377813126, "cny": 0.0685559547147384, "czk": 0.2242733271170371, "dkk": 0.06539265780120114, "eos": 0.001567605228797077, "eth": 4.0425317361803544e-05, "eur": 0.008755378950540895, "gbp": 0.007796649024898991, "hkd": 0.0777318964201873, "huf": 2.811753349361151, "idr": 141.2066380776687, "ils": 0.035523358127186044, "inr": 0.6882656787170803, "jpy": 1.0763602548113054, "krw": 11.68584768861705, "kwd": 0.0030143571105997846, "lkr": 1.74961421599804, "ltc": 7.297968540908609e-05, "mmk": 15.141308599694213, "mxn": 0.18963513663919718, "myr": 0.04130041715021553, "ngn": 3.5759439866107967, "nok": 0.08559788205664358, "nzd": 0.015069692559431178, "php": 0.51506612620739, "pkr": 1.5016636362816678, "pln": 0.03732984964177583, "rub": 0.6405968872236416, "sar": 0.03722255148337587, "sek": 0.09371801266086952, "sgd": 0.01352666032995756, "thb": 0.31011270690543713, "try": 0.05756306644626183, "twd": 0.3112410387458727, "uah": 0.2613863684156363, "usd": 0.009919400795036884, "vef": 2464.848516002219, "vnd": 231.18290408667025, "xag": 0.0006724117781695947, "xau": 7.473078170964894e-06, "xdr": 0.0071278235068928395, "xlm": 0.08074709095493406, "xrp": 0.02522555008773209, "zar": 0.14554091033565822, "bits": 1.2547992516415458, "link": 0.00874964482989566, "sats": 125.4799251641546}, "market_cap": {"aed": 41791175.658893816, "ars": 508424388.5672078, "aud": 16342013.385512043, "bch": 29212.604503441904, "bdt": 960945600.0588849, "bhd": 4288771.615576247, "bmd": 11377379.894672709, "bnb": 355159.4565604256, "brl": 43875727.82581589, "btc": 1434.966560414633, "cad": 15110412.01191383, "chf": 11292197.451401306, "clp": 7887874859.877654, "cny": 78632485.66605148, "czk": 257238008.46659273, "dkk": 75009211.1326543, "eos": 1794506.8398239422, "eth": 46231.93708178314, "eur": 10043791.687698549, "gbp": 8942848.144810637, "hkd": 89156675.84242274, "huf": 3225441690.620136, "idr": 161955865062.67596, "ils": 40744672.87880187, "inr": 789428742.4243411, "jpy": 1234701594.02544, "krw": 13403463706.316029, "kwd": 3457415.089292615, "lkr": 2006777023.7179499, "ltc": 83381.30266680977, "mmk": 17366817169.78201, "mxn": 217512748.82635358, "myr": 47370858.929459326, "ngn": 4101545452.0295115, "nok": 98190781.95136856, "nzd": 17283252.646818474, "php": 590925285.793867, "pkr": 1722382028.6141222, "pln": 42818769.233600676, "rub": 734899099.5365942, "sar": 42693618.05475933, "sek": 107498275.12180337, "sgd": 15515537.755203286, "thb": 355702405.0270479, "try": 66016404.91272613, "twd": 356988048.955145, "uah": 299805610.66163784, "usd": 11377379.894672709, "vef": 2827138304907.375, "vnd": 265230775430.68848, "xag": 771244.5947053226, "xau": 8572.514429239043, "xdr": 8175489.380434556, "xlm": 92346965.15890582, "xrp": 28859222.736675963, "zar": 166937883.18999466, "bits": 1434966560.414633, "link": 10005941.372677615, "sats": 143496656041.4633}, "total_volume": {"aed": 14330052.940137351, "ars": 174308915.99696064, "aud": 5603777.228297043, "bch": 10049.470391276218, "bdt": 329504999.6638546, "bhd": 1470605.297180405, "bmd": 3901265.1269124406, "bnb": 122106.83731036421, "brl": 15044838.835425135, "btc": 493.5080921575757, "cad": 5181461.3770436095, "chf": 3871646.722068921, "clp": 2704706133.5995045, "cny": 26962813.671629947, "czk": 88205903.56789488, "dkk": 25718700.22265757, "eos": 616533.5727669722, "eth": 15899.133841520092, "eur": 3443459.46679952, "gbp": 3066394.3897531787, "hkd": 30571678.97728031, "huf": 1105852612.874599, "idr": 55536069587.64962, "ils": 13971210.672498817, "inr": 270692448.658103, "jpy": 423328668.0170201, "krw": 4596002420.713008, "kwd": 1185535.9530917876, "lkr": 688117061.4497813, "ltc": 28702.651253084045, "mmk": 5955022932.974132, "mxn": 74582826.1902613, "myr": 16243307.482412625, "ngn": 1406406078.2519348, "nok": 33665343.210270606, "nzd": 5926856.598517163, "php": 202573679.37306955, "pkr": 590598978.4694868, "pln": 14681697.373616751, "rub": 251944482.14903107, "sar": 14639497.388738919, "sek": 36858961.75707752, "sgd": 5319987.499170018, "thb": 121966226.9789455, "try": 22639349.731417913, "twd": 122409995.88713183, "uah": 102802330.98963289, "usd": 3901265.1269124406, "vef": 969416173143.5092, "vnd": 90923415666.69368, "xag": 264457.1658411822, "xau": 2939.1351213132975, "xdr": 2803347.6873059827, "xlm": 31757544.286316935, "xrp": 9921119.319393963, "zar": 57240723.483588465, "bits": 493508092.15757567, "link": 3441204.2575011966, "sats": 49350809215.75757}}, "community_data": {"facebook_likes": null, "twitter_followers": 42141, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5866, "reddit_accounts_active_48h": "1552.16666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1092370, "bing_matches": null}}, "LEND_20190618": {"id": "ethlend", "symbol": "lend", "name": "Aave [OLD]", "localization": {"en": "Aave [OLD]", "de": "Aave [OLD]", "es": "Aave [OLD]", "fr": "Aave [OLD]", "it": "Aave [OLD]", "pl": "Aave [OLD]", "ro": "Aave [OLD]", "hu": "Aave [OLD]", "nl": "Aave [OLD]", "pt": "Aave [OLD]", "sv": "Aave [OLD]", "vi": "Aave [OLD]", "tr": "Aave [OLD]", "ru": "Aave [OLD]", "ja": "\u30a4\u30fc\u30b5\u30ec\u30f3\u30c9", "zh": "Aave [OLD]", "zh-tw": "Aave [OLD]", "ko": "\uc5d0\uc774\ube0c", "ar": "Aave [OLD]", "th": "Aave [OLD]", "id": "Aave [OLD]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1365/thumb/ethlend.png?1547394586", "small": "https://assets.coingecko.com/coins/images/1365/small/ethlend.png?1547394586"}, "market_data": {"current_price": {"aed": 0.03398142082186119, "ars": 0.40593512812279464, "aud": 0.013460553144298363, "bch": 2.2059981900208805e-05, "bdt": 0.7826640938562077, "bhd": 0.0034861722495019777, "bmd": 0.009251239274431845, "bnb": 0.0002843169148631884, "brl": 0.0360474538328237, "btc": 1.0661764189821826e-06, "cad": 0.012424442099279762, "chf": 0.009244624638350626, "clp": 6.47128812866144, "cny": 0.06406853247115021, "czk": 0.21086072141034234, "dkk": 0.061634531418047284, "eos": 0.0014138600417154107, "eth": 3.510048252741376e-05, "eur": 0.008238321086274297, "gbp": 0.007347519256539254, "hkd": 0.07242008872614362, "huf": 2.660563902933848, "idr": 132.3373384363897, "ils": 0.03331047469348297, "inr": 0.6464766004972966, "jpy": 1.0043607918286932, "krw": 10.976687911506113, "kwd": 0.002812765291476807, "lkr": 1.636864810841568, "ltc": 7.004570731619888e-05, "mmk": 14.128048930476695, "mxn": 0.17724819375454934, "myr": 0.03855407711423099, "ngn": 3.3430476033582606, "nok": 0.08064490300307726, "nzd": 0.014252459226189744, "php": 0.48059634806564777, "pkr": 1.4200652286252915, "pln": 0.0351315811446549, "rub": 0.5956179125861082, "sar": 0.03470556157606736, "sek": 0.08778223410330137, "sgd": 0.01268509576583693, "thb": 0.28811597034326775, "try": 0.05458693733878506, "twd": 0.29148794529516614, "uah": 0.24486180111566236, "usd": 0.009251239274431845, "vef": 2298.8186351109102, "vnd": 216.3900738154924, "xag": 0.0006222248467889451, "xau": 6.89596626755424e-06, "xdr": 0.0066575895851699535, "xlm": 0.0742313178097268, "xrp": 0.022853588142279013, "zar": 0.13708569618006564, "bits": 1.0661764189821825, "link": 0.005670981363289326, "sats": 106.61764189821827}, "market_cap": {"aed": 38096300.57514766, "ars": 455090643.09130526, "aud": 15090519.056903016, "bch": 24685.509084715053, "bdt": 877438489.8508959, "bhd": 3908319.977848752, "bmd": 10371490.7607581, "bnb": 318805.8753333528, "brl": 40412513.749293976, "btc": 1193.637156611504, "cad": 13928943.206170427, "chf": 10364075.144864164, "clp": 7254909644.604098, "cny": 71826722.11455417, "czk": 236394277.46273124, "dkk": 69097982.8953987, "eos": 1583725.3812172292, "eth": 39244.960821231325, "eur": 9235916.2373627, "gbp": 8237245.392009306, "hkd": 81189585.39882854, "huf": 2982737027.8864284, "idr": 148362337431.881, "ils": 37344108.20772362, "inr": 724759774.3617759, "jpy": 1125980894.4417038, "krw": 12305877502.547071, "kwd": 3153368.793882416, "lkr": 1835076118.8474452, "ltc": 78465.97848692449, "mmk": 15838843273.132921, "mxn": 198711540.08166838, "myr": 43222669.1709213, "ngn": 3747864075.554794, "nok": 90410359.25968051, "nzd": 15978318.666023895, "php": 538792742.8699083, "pkr": 1592023831.7763696, "pln": 39385736.16397884, "rub": 667742503.9045084, "sar": 38908129.01444602, "sek": 98411964.38160543, "sgd": 14221159.958354816, "thb": 323001929.6349803, "try": 61196981.233853206, "twd": 326784816.80356807, "uah": 274512617.45574594, "usd": 10371490.7607581, "vef": 2577187285665.0933, "vnd": 242593190460.4169, "xag": 697571.3261920789, "xau": 7731.012927976699, "xdr": 7463770.725544239, "xlm": 83112193.1110866, "xrp": 25595824.864919785, "zar": 153685683.52708247, "bits": 1193637156.611504, "link": 6348943.710587379, "sats": 119363715661.1504}, "total_volume": {"aed": 9236930.864925297, "ars": 110342493.73418278, "aud": 3658887.5859348755, "bch": 5996.409884151855, "bdt": 212746081.55166698, "bhd": 947621.70836467, "bmd": 2514699.3717765417, "bnb": 77283.86932634098, "brl": 9798526.102127297, "btc": 289.8112449028744, "cad": 3377248.800394003, "chf": 2512901.361725721, "clp": 1759044784.0545475, "cny": 17415299.029301237, "czk": 57316788.371091075, "dkk": 16753681.624586852, "eos": 384319.6412082911, "eth": 9541.117545698946, "eur": 2239364.9375607264, "gbp": 1997224.535052363, "hkd": 19685443.887172528, "huf": 723202392.3292139, "idr": 35972328890.93192, "ils": 9054552.29298719, "inr": 175727192.09974453, "jpy": 273008337.2969202, "krw": 2983715951.6065803, "kwd": 764574.2263936832, "lkr": 444937460.74459976, "ltc": 19040.03247116387, "mmk": 3840328275.595259, "mxn": 48180131.14361543, "myr": 10479883.896910148, "ngn": 908717141.412428, "nok": 21921137.363650467, "nzd": 3874145.852158952, "php": 130637128.57356688, "pkr": 386006353.56769997, "pln": 9549570.864321409, "rub": 161902632.30340317, "sar": 9433768.958251113, "sek": 23861227.928976048, "sgd": 3448100.455193821, "thb": 78316539.88492261, "try": 14837983.64316747, "twd": 79233120.14424208, "uah": 66559062.97218157, "usd": 2514699.3717765417, "vef": 624871717837.677, "vnd": 58819793385.564224, "xag": 169135.00828460732, "xau": 1874.4820587159513, "xdr": 1809685.800003385, "xlm": 20177777.563074533, "xrp": 6212130.292971836, "zar": 37263041.61392821, "bits": 289811244.9028744, "link": 1541503.0190640008, "sats": 28981124490.28744}}, "community_data": {"facebook_likes": null, "twitter_followers": 42118, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5868, "reddit_accounts_active_48h": "1209.72"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1092370, "bing_matches": null}}, "PAX_20190620": {"id": "payperex", "symbol": "pax", "name": "PayperEx", "localization": {"en": "PayperEx", "de": "PayperEx", "es": "PayperEx", "fr": "PayperEx", "it": "PayperEx", "pl": "PayperEx", "ro": "PayperEx", "hu": "PayperEx", "nl": "PayperEx", "pt": "PayperEx", "sv": "PayperEx", "vi": "PayperEx", "tr": "PayperEx", "ru": "PayperEx", "ja": "PayperEx", "zh": "PayperEx", "zh-tw": "PayperEx", "ko": "PayperEx", "ar": "PayperEx", "th": "PayperEx", "id": "PayperEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1601/thumb/pax.png?1547035800", "small": "https://assets.coingecko.com/coins/images/1601/small/pax.png?1547035800"}}, "REQ_20190621": {"id": "request-network", "symbol": "req", "name": "Request", "localization": {"en": "Request", "de": "Request", "es": "Request", "fr": "Request", "it": "Request", "pl": "Request", "ro": "Request", "hu": "Request", "nl": "Request", "pt": "Request", "sv": "Request", "vi": "Request", "tr": "Request", "ru": "Request", "ja": "\u30ea\u30af\u30a8\u30b9\u30c8\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "Request", "zh-tw": "Request", "ko": "\ub9ac\ud018\uc2a4\ud2b8\ub124\ud2b8\uc6cc\ud06c", "ar": "Request", "th": "Request", "id": "Request"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1031/thumb/Request_icon_green.png?1643250951", "small": "https://assets.coingecko.com/coins/images/1031/small/Request_icon_green.png?1643250951"}, "market_data": {"current_price": {"aed": 0.08491037001908186, "ars": 1.0165857174827941, "aud": 0.03372934645757805, "bch": 5.354084301412308e-05, "bdt": 1.9547246610453008, "bhd": 0.00871505479597222, "bmd": 0.023116304374622948, "bnb": 0.0006843274396665573, "brl": 0.08988751839767747, "btc": 2.480998933376088e-06, "cad": 0.031003633659853126, "chf": 0.023092055371333974, "clp": 16.172166540486213, "cny": 0.16009890083776357, "czk": 0.5266151421006806, "dkk": 0.15380927804568992, "eos": 0.0032488953342515417, "eth": 8.465224316023276e-05, "eur": 0.020598175990182162, "gbp": 0.018435229622457423, "hkd": 0.18108734939470245, "huf": 6.639881035957943, "idr": 331.14359584013295, "ils": 0.08344176808585771, "inr": 1.6154690614378995, "jpy": 2.509139994833522, "krw": 27.403272489788222, "kwd": 0.00702340364183732, "lkr": 4.091554112506051, "ltc": 0.00017256532841024492, "mmk": 35.36786638113284, "mxn": 0.44339152257920583, "myr": 0.09659163964349252, "ngn": 8.32186957486426, "nok": 0.2017498580599593, "nzd": 0.03558188709016033, "php": 1.207653762454284, "pkr": 3.6264127596527227, "pln": 0.08777607515609949, "rub": 1.4871435209630564, "sar": 0.0867023228178983, "sek": 0.21903791796152172, "sgd": 0.03169088138891058, "thb": 0.7250082122534872, "try": 0.13577095536934475, "twd": 0.7281179793320928, "uah": 0.6119428076463315, "usd": 0.023116304374622948, "vef": 5744.115971375365, "vnd": 539.6086423077909, "xag": 0.0015576003985556008, "xau": 1.7254009585218576e-05, "xdr": 0.01665296255517401, "xlm": 0.17713991375764823, "xrp": 0.05188136886037526, "zar": 0.3425254239774971, "bits": 2.480998933376088, "link": 0.011774582174600225, "sats": 248.0998933376088}, "market_cap": {"aed": 62002268.89216559, "ars": 742319471.6162282, "aud": 24629453.48312332, "bch": 39113.7516448189, "bdt": 1427356446.7690034, "bhd": 6363806.5733124595, "bmd": 16879720.572486244, "bnb": 500315.94534437236, "brl": 65636624.648907036, "btc": 1810.8180743675614, "cad": 22639114.9912597, "chf": 16862013.745605703, "clp": 11809052512.51137, "cny": 116905568.74092522, "czk": 384538821.7702346, "dkk": 112312833.08923979, "eos": 2372995.2145451275, "eth": 61855.34118180195, "eur": 15040961.971363597, "gbp": 13461560.276837204, "hkd": 132231511.03471412, "huf": 4848497177.799803, "idr": 241803848771.17358, "ils": 60929883.36447489, "inr": 1179629144.3758569, "jpy": 1832195203.1629782, "krw": 20010100875.255814, "kwd": 5128548.6218179185, "lkr": 2987687348.594004, "ltc": 125951.10379013055, "mmk": 25825914561.582684, "mxn": 323768232.3288007, "myr": 70532030.57017776, "ngn": 6076699406.095048, "nok": 147319449.26843095, "nzd": 25982194.28980237, "php": 881838970.805318, "pkr": 2648037206.6149077, "pln": 64094830.971816055, "rub": 1085924751.5618138, "sar": 63310767.95122422, "sek": 159943336.5321378, "sgd": 23140949.083879776, "thb": 529407116.17517126, "try": 99141097.61463214, "twd": 531677894.3446274, "uah": 446845803.3781737, "usd": 16879720.572486244, "vef": 4194401966744.004, "vnd": 394026785295.89655, "xag": 1137372.9582863129, "xau": 12599.023435303725, "xdr": 12160133.820698509, "xlm": 129459767.81819265, "xrp": 37876204.64355869, "zar": 250114955.7478452, "bits": 1810818074.3675613, "link": 8593968.313754251, "sats": 181081807436.75613}, "total_volume": {"aed": 2761414.8839265984, "ars": 33060919.772382613, "aud": 1096929.8486408838, "bch": 1741.2299671282904, "bdt": 63570630.67533238, "bhd": 283426.88911172166, "bmd": 751777.5148914794, "bnb": 22255.37324769564, "brl": 2923279.348880365, "btc": 80.68587358753834, "cad": 1008285.5065274845, "chf": 750988.9002783584, "clp": 525943549.41807896, "cny": 5206660.712635407, "czk": 17126328.517602004, "dkk": 5002112.575718644, "eos": 105659.0370564363, "eth": 2753.0202043390877, "eur": 669884.1348618063, "gbp": 599541.8163484398, "hkd": 5889237.107281124, "huf": 215939069.82239866, "idr": 10769295364.799597, "ils": 2713653.706628028, "inr": 52537520.56168209, "jpy": 81601063.8751391, "krw": 891196263.8319889, "kwd": 228411.81057196346, "lkr": 133063587.19348639, "ltc": 5612.087972466056, "mmk": 1150217018.4353113, "mxn": 14419769.335381996, "myr": 3141307.608416648, "ngn": 270639905.3609326, "nok": 6561213.438966877, "nzd": 1157177.298684287, "php": 39274744.33949329, "pkr": 117936480.1674508, "pln": 2854611.9906701795, "rub": 48364178.04326505, "sar": 2819691.925103472, "sek": 7123447.544361314, "sgd": 1030635.8520452054, "thb": 23578374.088298928, "try": 4415478.77930089, "twd": 23679508.462044753, "uah": 19901314.489227366, "usd": 751777.5148914794, "vef": 186807422165.1818, "vnd": 17548896984.305824, "xag": 50655.543284228246, "xau": 561.1267371150005, "xdr": 541579.7699503073, "xlm": 5760860.472965974, "xrp": 1687261.3337726602, "zar": 11139449.794909239, "bits": 80685873.58753833, "link": 382927.3911025344, "sats": 8068587358.753834}}, "community_data": {"facebook_likes": null, "twitter_followers": 41695, "reddit_average_posts_48h": 0.13, "reddit_average_comments_48h": 1.609, "reddit_subscribers": 29970, "reddit_accounts_active_48h": "155.625"}, "developer_data": {"forks": 9, "stars": 129, "subscribers": 36, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 5, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 444138, "bing_matches": null}}, "BLZ_20190622": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.23872575428743206, "ars": 2.8236865949918704, "aud": 0.09449565169367866, "bch": 0.00015708523493719918, "bdt": 5.495457941250005, "bhd": 0.02450481604841039, "bmd": 0.06499451248686552, "bnb": 0.0018853274588469565, "brl": 0.25095031216303626, "btc": 7.150491480226922e-06, "cad": 0.08693341017680703, "chf": 0.0650436483383056, "clp": 45.23618069085842, "cny": 0.4486766180505791, "czk": 1.4864699967333574, "dkk": 0.4334451540492818, "eos": 0.009568611399834696, "eth": 0.00024516685369382836, "eur": 0.05804633912396969, "gbp": 0.05172048821813552, "hkd": 0.5090063443872372, "huf": 18.76261586470831, "idr": 933.2066361490037, "ils": 0.2346691867850765, "inr": 4.516007211673629, "jpy": 7.057169160336345, "krw": 76.2828489130279, "kwd": 0.01977731019365331, "lkr": 11.491718619521162, "ltc": 0.0004782462100738541, "mmk": 99.50902252274005, "mxn": 1.2431240425312853, "myr": 0.2706761467028004, "ngn": 23.42164018638918, "nok": 0.567990944293467, "nzd": 0.09944082417075424, "php": 3.368376746580747, "pkr": 10.209292980239672, "pln": 0.24720337851816881, "rub": 4.158719377630829, "sar": 0.2437521699051164, "sek": 0.6195351673937382, "sgd": 0.08883813935974728, "thb": 2.030786039908355, "try": 0.37891092339656485, "twd": 2.032379835343558, "uah": 1.7159372177225178, "usd": 0.06499451248686552, "vef": 16150.333166464414, "vnd": 1517.4476098458788, "xag": 0.004333408378567405, "xau": 4.832536986935914e-05, "xdr": 0.046832380923023345, "xlm": 0.5212516557117575, "xrp": 0.1512780735992804, "zar": 0.9441158129177675, "bits": 7.150491480226922, "link": 0.035719655608178656, "sats": 715.0491480226922}, "market_cap": {"aed": 49399740.00198881, "ars": 584308065.3616891, "aud": 19554072.15664612, "bch": 32495.4441804459, "bdt": 1137180168.5156803, "bhd": 5070804.133392849, "bmd": 13449374.274638962, "bnb": 390260.3213748143, "brl": 51929379.01180845, "btc": 1481.4480838603372, "cad": 17989210.56104341, "chf": 13459542.001590583, "clp": 9360764495.148714, "cny": 92845065.43011513, "czk": 307596604.2229857, "dkk": 89693204.56885342, "eos": 1983566.4787958483, "eth": 50791.205121287145, "eur": 12011582.367182959, "gbp": 10702568.218406625, "hkd": 105329151.2143147, "huf": 3882565365.602771, "idr": 193109307923.20587, "ils": 48560310.75601143, "inr": 934501527.7873118, "jpy": 1460346508.1145732, "krw": 15785280118.446627, "kwd": 4092536.996778436, "lkr": 2377991908.2247324, "ltc": 99025.08139081617, "mmk": 20591493595.43644, "mxn": 257240802.00131032, "myr": 56011264.104161404, "ngn": 4846661555.563342, "nok": 117534888.7485264, "nzd": 20577381.24770635, "php": 697021299.6352612, "pkr": 2112618390.6439097, "pln": 51154022.58487554, "rub": 860567627.5247662, "sar": 50439860.81089219, "sek": 128200982.26390019, "sgd": 18383357.923535857, "thb": 420232423.89823234, "try": 78408386.03934921, "twd": 420562229.4541947, "uah": 355080467.4101776, "usd": 13449374.274638962, "vef": 3342003303121.789, "vnd": 314006830208.90125, "xag": 896716.1832314276, "xau": 10000.013254422307, "xdr": 9691067.677959569, "xlm": 107938217.0880894, "xrp": 31354931.93886458, "zar": 195366753.91021848, "bits": 1481448083.8603373, "link": 7400444.501362876, "sats": 148144808386.03372}, "total_volume": {"aed": 3252400.973383971, "ars": 38469921.51096249, "aud": 1287409.2720596474, "bch": 2140.130094212015, "bdt": 74870148.84783696, "bhd": 333853.7469756398, "bmd": 885485.5912294287, "bnb": 25685.711542117373, "brl": 3418948.416295944, "btc": 97.41833477448219, "cad": 1184381.252548923, "chf": 886155.0183363982, "clp": 616297971.4956825, "cny": 6112772.681934119, "czk": 20251675.311330922, "dkk": 5905259.133629497, "eos": 130362.81369661051, "eth": 3340.154546690532, "eur": 790823.6395846383, "gbp": 704640.2124758688, "hkd": 6934705.201309828, "huf": 255621980.47611102, "idr": 12714012280.907848, "ils": 3197134.275692973, "inr": 61526106.786835276, "jpy": 96146910.98128259, "krw": 1039277948.0278134, "kwd": 269446.18152638566, "lkr": 156563236.90565884, "ltc": 6515.628964307711, "mmk": 1355711463.4718978, "mxn": 16936328.70920883, "myr": 3687693.2932340815, "ngn": 319096553.14668196, "nok": 7738311.710889449, "nzd": 1354782.3287539287, "php": 45890783.09545384, "pkr": 139091463.0288038, "pln": 3367900.171961572, "rub": 56658415.394728824, "sar": 3320880.887067291, "sek": 8440550.486441905, "sgd": 1210331.293285495, "thb": 27667440.040759083, "try": 5162284.478938124, "twd": 27689153.918427218, "uah": 23377937.9767586, "usd": 885485.5912294287, "vef": 220032226802.97818, "vnd": 20673714480.674038, "xag": 59038.37929255576, "xau": 658.3851016468172, "xdr": 638044.6121306861, "xlm": 7101535.3893225845, "xrp": 2061013.296594511, "zar": 12862638.9644739, "bits": 97418334.77448219, "link": 486644.7820669703, "sats": 9741833477.44822}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 30, "stars": 203, "subscribers": 53, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 293, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 851, "deletions": -715}, "commit_count_4_weeks": 11}, "public_interest_stats": {"alexa_rank": 922433, "bing_matches": null}}, "BAT_20190625": {"id": "basic-attention-token", "symbol": "bat", "name": "Basic Attention Token", "localization": {"en": "Basic Attention Token", "de": "Basic Attention Token", "es": "Basic Attention Token", "fr": "Basic Attention Token", "it": "Basic Attention Token", "pl": "Basic Attention Token", "ro": "Basic Attention Token", "hu": "Basic Attention Token", "nl": "Basic Attention Token", "pt": "Basic Attention Token", "sv": "Basic Attention Token", "vi": "Basic Attention Token", "tr": "Basic Attention Token", "ru": "Basic Attention Token", "ja": "\u30d0\u30c3\u30c8", "zh": "\u6ce8\u610f\u529b\u5e01", "zh-tw": "\u6ce8\u610f\u529b\u5e63", "ko": "\ubca0\uc774\uc9c1\uc5b4\ud150\uc158\ud1a0\ud070", "ar": "Basic Attention Token", "th": "Basic Attention Token", "id": "Basic Attention Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/677/thumb/basic-attention-token.png?1547034427", "small": "https://assets.coingecko.com/coins/images/677/small/basic-attention-token.png?1547034427"}, "market_data": {"current_price": {"aed": 1.2052247165062937, "ars": 14.005927364960208, "aud": 0.4733390530078139, "bch": 0.0007459258411920546, "bdt": 27.653224766702923, "bhd": 0.12367615133175015, "bmd": 0.32811524539568415, "bnb": 0.008430367672204992, "brl": 1.2540564679023056, "btc": 3.2416791781799735e-05, "cad": 0.4341296092982761, "chf": 0.31995337866646717, "clp": 224.33075270080275, "cny": 2.254138611258537, "czk": 7.390165593151402, "dkk": 2.154995308709779, "eos": 0.04645249118075785, "eth": 0.0011140561076472143, "eur": 0.2881616363095883, "gbp": 0.2575064851627602, "hkd": 2.5638104987105326, "huf": 93.51940724267816, "idr": 4634.430972066819, "ils": 1.1883431871306849, "inr": 22.830204307501017, "jpy": 35.21173235065011, "krw": 380.3413490053143, "kwd": 0.09960332012280472, "lkr": 57.84303893512797, "ltc": 0.002367064210134697, "mmk": 498.6199950349658, "mxn": 6.275105633618859, "myr": 1.3573911145957502, "ngn": 118.1214883424463, "nok": 2.7881921092743696, "nzd": 0.49775082726525327, "php": 16.836352171815196, "pkr": 51.560029661477905, "pln": 1.2283322326632844, "rub": 20.681103917290013, "sar": 1.230563416331977, "sek": 3.0684681518913646, "sgd": 0.44460075112458736, "thb": 10.078059762328449, "try": 1.9100900895464399, "twd": 10.15791546640713, "uah": 8.600348459130858, "usd": 0.32811524539568415, "vef": 81532.58371170076, "vnd": 7583.319016682437, "xag": 0.02141051395126197, "xau": 0.0002344842789695722, "xdr": 0.2355234199517401, "xlm": 2.6664702925192048, "xrp": 0.7387015921894433, "zar": 4.702974246829975, "bits": 32.41679178179974, "link": 0.19267377613002087, "sats": 3241.6791781799734}, "market_cap": {"aed": 1531790413.028238, "ars": 17800950287.019634, "aud": 601594220.2139931, "bch": 947787.5475672497, "bdt": 35146096828.93052, "bhd": 157187236.81619334, "bmd": 417020809.7975834, "bnb": 10754776.739400866, "brl": 1593853535.0463648, "btc": 41205.37286077842, "cad": 551760650.4639941, "chf": 406647417.1538683, "clp": 285115042554.5586, "cny": 2864916282.477003, "czk": 9392592643.714926, "dkk": 2738909274.588568, "eos": 59005572.101676054, "eth": 1414143.3396472123, "eur": 366241436.8509611, "gbp": 327280016.6331923, "hkd": 3258496352.5558653, "huf": 118859271208.50735, "idr": 5890168725905.003, "ils": 1510334692.3641512, "inr": 29016238720.261414, "jpy": 44752645130.938515, "krw": 483398012093.06323, "kwd": 126591671.0637741, "lkr": 73516093129.99463, "ltc": 3009320.8963845223, "mmk": 633725244494.4824, "mxn": 7975397881.135843, "myr": 1725187566.7591548, "ngn": 150127491527.13004, "nok": 3543676033.3359447, "nzd": 632620568.4629356, "php": 21398302319.847046, "pkr": 65530650051.59232, "pln": 1561159103.5582337, "rub": 26284821641.541664, "sar": 1563994845.064855, "sek": 3899895209.06504, "sgd": 565069035.5670605, "thb": 12808794172.93276, "try": 2427644942.155652, "twd": 12910287446.558863, "uah": 10930684658.20005, "usd": 417020809.7975834, "vef": 103624517792033.83, "vnd": 9638082599535.025, "xag": 27211871.41234599, "xau": 298019.7515137449, "xdr": 299340456.4183739, "xlm": 3390212987.744843, "xrp": 939254735.0942757, "zar": 5977284373.071703, "bits": 41205372860.77842, "link": 244909947.88660997, "sats": 4120537286077.8423}, "total_volume": {"aed": 146497282.9726997, "ars": 1702446254.5271235, "aud": 57535233.25635623, "bch": 90668.65916136466, "bdt": 3361300376.8282666, "bhd": 15033063.868075112, "bmd": 39883012.10062126, "bnb": 1024726.7099027049, "brl": 152432872.24857458, "btc": 3940.3207166973184, "cad": 52769253.19334421, "chf": 38890922.174618386, "clp": 27267815958.13431, "cny": 273994697.81078434, "czk": 898288232.3002514, "dkk": 261943646.8744609, "eos": 5646385.81676381, "eth": 135415.57073485895, "eur": 35026577.36616497, "gbp": 31300387.311628107, "hkd": 311635885.8012301, "huf": 11367456108.919104, "idr": 563323616114.0172, "ils": 144445302.0001226, "inr": 2775053361.381225, "jpy": 4280050888.0081673, "krw": 46231191136.67704, "kwd": 12106966.919288797, "lkr": 7030927865.007885, "ltc": 287721.0122373405, "mmk": 60608178299.08989, "mxn": 762750641.5207536, "myr": 164993388.78147164, "ngn": 14357884356.223654, "nok": 338909883.6262397, "nzd": 60502529.35664251, "php": 2046489600.289871, "pkr": 6267216521.491637, "pln": 149306044.0998859, "rub": 2513826252.702163, "sar": 149577248.58217037, "sek": 372977952.5625906, "sgd": 54042039.7585112, "thb": 1225006716.6705832, "try": 232174966.64255714, "twd": 1234713324.5065982, "uah": 1045388187.4688021, "usd": 39883012.10062126, "vef": 9910435642352.66, "vnd": 921766386503.8903, "xag": 2602487.3850922063, "xau": 28501.995767588036, "xdr": 28628305.266910676, "xlm": 324114372.7236558, "xrp": 89790538.39607808, "zar": 571655177.3418366, "bits": 3940320716.6973186, "link": 23419852.179069433, "sats": 394032071669.7318}}, "community_data": {"facebook_likes": null, "twitter_followers": 102728, "reddit_average_posts_48h": 1.042, "reddit_average_comments_48h": 21.917, "reddit_subscribers": 27951, "reddit_accounts_active_48h": "463.76"}, "developer_data": {"forks": 21, "stars": 34, "subscribers": 14, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 795, "pull_request_contributors": 33, "code_additions_deletions_4_weeks": {"additions": 7294, "deletions": -2439}, "commit_count_4_weeks": 58}, "public_interest_stats": {"alexa_rank": 47977, "bing_matches": null}}, "PPT_20190626": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 3.18451883760986, "ars": 37.00732230351523, "aud": 1.2506855445591283, "bch": 0.0017985117956192088, "bdt": 73.0670504713011, "bhd": 0.3267847300881247, "bmd": 0.8669662723964573, "bnb": 0.02287354448403497, "brl": 3.31354509309926, "btc": 8.082462234063471e-05, "cad": 1.147083941974028, "chf": 0.8454004863705943, "clp": 592.7405056060962, "cny": 5.956023612712767, "czk": 19.526749843520918, "dkk": 5.694061083845459, "eos": 0.11604888844310846, "eth": 0.0027911137620584806, "eur": 0.7613983903055584, "gbp": 0.6803994654081023, "hkd": 6.774257710937825, "huf": 247.10272695843852, "idr": 12245.37841783655, "ils": 3.139913422895064, "inr": 60.3233693169443, "jpy": 93.03860387179135, "krw": 1004.9612939738005, "kwd": 0.2631780155812138, "lkr": 152.83643339764907, "ltc": 0.006113088040755461, "mmk": 1317.4844037389792, "mxn": 16.580469869700558, "myr": 3.5865822491301658, "ngn": 312.0991884000007, "nok": 7.3671325963161385, "nzd": 1.3151878352254236, "php": 44.48604472965033, "pkr": 136.23508004437969, "pln": 3.24557493734338, "rub": 54.64488414914873, "sar": 3.251470307995677, "sek": 8.107695186197201, "sgd": 1.1747514366250105, "thb": 26.628435573520978, "try": 5.046957458128738, "twd": 26.839868707134237, "uah": 22.72436940847302, "usd": 0.8669662723964573, "vef": 215430.40493026396, "vnd": 20037.111693356263, "xag": 0.056572176181674205, "xau": 0.0006195687769054047, "xdr": 0.6225806177357098, "xlm": 6.709663313764818, "xrp": 1.8210996283208274, "zar": 12.426487672140176, "bits": 80.82462234063472, "link": 0.47039354389461085, "sats": 8082.462234063471}, "market_cap": {"aed": 115538477.35045512, "ars": 1342673693.5162435, "aud": 45376495.11002503, "bch": 65179.05559221011, "bdt": 2650967441.687095, "bhd": 11856174.216918511, "bmd": 31454661.798159625, "bnb": 829687.6110200583, "brl": 120219717.392566, "btc": 2929.9313144388893, "cad": 41617694.479806736, "chf": 30672227.085930306, "clp": 21505394998.092747, "cny": 216092268.36688468, "czk": 708455832.5982318, "dkk": 206587927.75795287, "eos": 4209167.870469782, "eth": 101286.21969914237, "eur": 27624521.994983137, "gbp": 24685775.852504674, "hkd": 245778863.62536976, "huf": 8965207705.71145, "idr": 444278225101.9251, "ils": 113920135.00093977, "inr": 2188610146.4420877, "jpy": 3375561324.745372, "krw": 36461300316.572754, "kwd": 9548440.044772934, "lkr": 5545104205.347455, "ltc": 221501.85592161646, "mmk": 47800044434.726295, "mxn": 601560970.4912629, "myr": 130125859.8513078, "ngn": 11323363700.719484, "nok": 267289134.09604126, "nzd": 47716721.94780827, "php": 1614011451.4963098, "pkr": 4942785554.962818, "pln": 117753671.90759036, "rub": 1982587333.138002, "sar": 117967563.60781778, "sek": 294157706.2040286, "sgd": 42621507.1017714, "thb": 966114209.7995756, "try": 183110168.1918066, "twd": 973785278.3549229, "uah": 824469621.3431194, "usd": 31454661.798159625, "vef": 7816094747712.732, "vnd": 726972423026.6917, "xag": 2052511.9899551657, "xau": 22478.759507436804, "xdr": 22588033.00252362, "xlm": 243385236.947532, "xrp": 65932129.511605784, "zar": 450849103.95156157, "bits": 2929931314.4388895, "link": 17051991.515137605, "sats": 292993131443.8889}, "total_volume": {"aed": 5700573.099856273, "ars": 66246411.71206518, "aud": 2238838.812159139, "bch": 3219.496722957404, "bdt": 130796545.30012506, "bhd": 584973.849042239, "bmd": 1551947.048495176, "bnb": 40945.687255510646, "brl": 5931541.619348562, "btc": 144.68329170471415, "cad": 2053382.6918110212, "chf": 1513342.3656638565, "clp": 1061058437.32091, "cny": 10661814.145279922, "czk": 34954625.97707366, "dkk": 10192877.825106628, "eos": 207737.87358831524, "eth": 4996.342883175148, "eur": 1362971.112241065, "gbp": 1217975.8033942576, "hkd": 12126526.250179194, "huf": 442335947.7620955, "idr": 21920320891.765316, "ils": 5620725.424211199, "inr": 107984218.01108433, "jpy": 166547409.36555085, "krw": 1798970460.2041516, "kwd": 471112.1499352934, "lkr": 273590864.2193914, "ltc": 10942.973497477851, "mmk": 2358414735.2921762, "mxn": 29680521.71835575, "myr": 6420302.511119343, "ngn": 558685417.9877784, "nok": 13187825.239292612, "nzd": 2354303.672567178, "php": 79633992.71181075, "pkr": 243872959.20053264, "pln": 5809868.970746545, "rub": 97819222.466651, "sar": 5820422.210676314, "sek": 14513498.408117209, "sgd": 2102909.9779696376, "thb": 47667277.621005066, "try": 9034504.54810982, "twd": 48045761.81135097, "uah": 40678650.54877985, "usd": 1551947.048495176, "vef": 385639662963.4447, "vnd": 35868219264.073296, "xag": 101269.24731386719, "xau": 1109.0834387365935, "xdr": 1114474.9027830653, "xlm": 12010896.510898942, "xrp": 3259930.9606080577, "zar": 22244522.630195968, "bits": 144683291.70471415, "link": 842046.4501583192, "sats": 14468329170.471415}}, "community_data": {"facebook_likes": null, "twitter_followers": 24049, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 671795, "bing_matches": null}}, "LEND_20190705": {"id": "ethlend", "symbol": "lend", "name": "Aave [OLD]", "localization": {"en": "Aave [OLD]", "de": "Aave [OLD]", "es": "Aave [OLD]", "fr": "Aave [OLD]", "it": "Aave [OLD]", "pl": "Aave [OLD]", "ro": "Aave [OLD]", "hu": "Aave [OLD]", "nl": "Aave [OLD]", "pt": "Aave [OLD]", "sv": "Aave [OLD]", "vi": "Aave [OLD]", "tr": "Aave [OLD]", "ru": "Aave [OLD]", "ja": "\u30a4\u30fc\u30b5\u30ec\u30f3\u30c9", "zh": "Aave [OLD]", "zh-tw": "Aave [OLD]", "ko": "\uc5d0\uc774\ube0c", "ar": "Aave [OLD]", "th": "Aave [OLD]", "id": "Aave [OLD]"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1365/thumb/ethlend.png?1547394586", "small": "https://assets.coingecko.com/coins/images/1365/small/ethlend.png?1547394586"}, "market_data": {"current_price": {"aed": 0.027791016138068652, "ars": 0.3204926312121805, "aud": 0.010863156749160753, "bch": 1.8074977110581902e-05, "bdt": 0.641923391869935, "bhd": 0.0028528459392828344, "bmd": 0.007565926138153433, "bnb": 0.00022753348935676375, "brl": 0.029060722296647454, "btc": 7.12760364257156e-07, "cad": 0.009937465686157679, "chf": 0.0074683181250451754, "clp": 5.1486453612869365, "cny": 0.05184021271339984, "czk": 0.17058483590497897, "dkk": 0.05003126030117645, "eos": 0.0012523093169909592, "eth": 2.5624642456799414e-05, "eur": 0.006703304635438029, "gbp": 0.005983785059699637, "hkd": 0.05910993284324459, "huf": 2.167789157103731, "idr": 106.87169536329687, "ils": 0.027039863425146672, "inr": 0.5213566212909478, "jpy": 0.8198021437365488, "krw": 8.78217066821778, "kwd": 0.002298437569657362, "lkr": 1.340158587421663, "ltc": 6.142607530418069e-05, "mmk": 11.505094433065159, "mxn": 0.14453264360975945, "myr": 0.03127148591421585, "ngn": 2.729559172861614, "nok": 0.06494817974775072, "nzd": 0.011339817661790565, "php": 0.386885168957483, "pkr": 1.227937880756789, "pln": 0.028422536426894216, "rub": 0.4763204459535888, "sar": 0.028375627684837663, "sek": 0.07080842079954043, "sgd": 0.010259380711483829, "thb": 0.2319334657650942, "try": 0.04277091435381693, "twd": 0.23430160064633662, "uah": 0.19896445839881807, "usd": 0.007565926138153433, "vef": 1880.0391474393075, "vnd": 176.75478398197515, "xag": 0.0004993359932658517, "xau": 5.458286093848048e-06, "xdr": 0.00545054615140872, "xlm": 0.07133676886170297, "xrp": 0.01850842793757813, "zar": 0.10697344938287424, "bits": 0.712760364257156, "link": 0.0021010899794907, "sats": 71.2760364257156}, "market_cap": {"aed": 31442493.48508628, "ars": 362602339.5058003, "aud": 12290473.065685308, "bch": 20453.56509513923, "bdt": 726266069.816244, "bhd": 3227682.982666537, "bmd": 8560017.457644014, "bnb": 257666.95889742166, "brl": 32879027.054810625, "btc": 806.6855277185227, "cad": 11243154.9297425, "chf": 8449584.67242297, "clp": 5825128790.72203, "cny": 58651527.61628522, "czk": 192998074.0880377, "dkk": 56604895.92230224, "eos": 1420784.2379908455, "eth": 29018.264715918423, "eur": 7584055.627228192, "gbp": 6769997.967006245, "hkd": 66876420.39046249, "huf": 2452616201.9641623, "idr": 120913627933.07736, "ils": 30592646.39187392, "inr": 589857962.9800627, "jpy": 927516411.614288, "krw": 9936065045.210855, "kwd": 2600430.583422763, "lkr": 1516242783.0865362, "ltc": 69581.9206061693, "mmk": 13016755305.374489, "mxn": 163522869.49511948, "myr": 35380264.15593427, "ngn": 3088197498.1942306, "nok": 73481757.86165352, "nzd": 12829762.725534275, "php": 437718230.38017046, "pkr": 1389277334.2280931, "pln": 32156989.58225841, "rub": 538904459.0634367, "sar": 32103917.47402099, "sek": 80111979.30359384, "sgd": 11607366.552530354, "thb": 262407335.16407746, "try": 48390609.00975503, "twd": 265086620.6283194, "uah": 225106511.25127652, "usd": 8560017.457644014, "vef": 2127058555591.7632, "vnd": 199978695136.59717, "xag": 564944.0321695897, "xau": 6175.453394468117, "xdr": 6166696.496608949, "xlm": 80835319.64525752, "xrp": 20992459.716868732, "zar": 121028751.47090504, "bits": 806685527.7185228, "link": 2377964.5500574545, "sats": 80668552771.85228}, "total_volume": {"aed": 7207485.324025842, "ars": 83118441.02583967, "aud": 2817314.863666213, "bch": 4687.6707065838, "bdt": 166480182.05112585, "bhd": 739873.818824557, "bmd": 1962191.7144910146, "bnb": 59009.87128775182, "brl": 7536778.375360018, "btc": 184.85145845004638, "cad": 2577240.7073982367, "chf": 1936877.4791823816, "clp": 1335279922.681813, "cny": 13444545.189349575, "czk": 44240473.07871976, "dkk": 12975400.847948486, "eos": 324781.25227631314, "eth": 6645.645251804972, "eur": 1738474.3883550416, "gbp": 1551869.956306946, "hkd": 15329917.09821827, "huf": 562207170.035968, "idr": 27716733064.307934, "ils": 7012676.968419468, "inr": 135211687.7580046, "jpy": 212612302.12781733, "krw": 2277619713.140462, "kwd": 596090.2965617982, "lkr": 347564597.95212466, "ltc": 15930.599085253745, "mmk": 2983798752.2974863, "mxn": 37483944.54109346, "myr": 8110130.794334282, "ngn": 707899904.8369234, "nok": 16844042.33470527, "nzd": 2940934.9038708634, "php": 100337071.64541638, "pkr": 318460620.8855597, "pln": 7371267.504242702, "rub": 123531741.57749665, "sar": 7359101.915612857, "sek": 18363871.662506286, "sgd": 2660728.0404664, "thb": 60150987.007722236, "try": 11092460.094614055, "twd": 60765153.01435803, "uah": 51600611.03155799, "usd": 1962191.7144910146, "vef": 487580392758.6994, "vnd": 45840623645.14816, "xag": 129500.72877297836, "xau": 1415.583968585257, "xdr": 1413576.6464613336, "xlm": 18500896.55159617, "xrp": 4800084.389435172, "zar": 27743122.5492811, "bits": 184851458.4500464, "link": 544909.0136323957, "sats": 18485145845.00464}}, "community_data": {"facebook_likes": null, "twitter_followers": 42038, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5861, "reddit_accounts_active_48h": "1189.95833333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 929610, "bing_matches": null}}, "FUN_20190706": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.01697020230415381, "ars": 0.19474414114486402, "aud": 0.006605712673640862, "bch": 1.1327087908208834e-05, "bdt": 0.3906705707804513, "bhd": 0.0017413859057541546, "bmd": 0.004620028880731379, "bnb": 0.00014463499657101935, "brl": 0.01776589139816667, "btc": 4.2718091415145407e-07, "cad": 0.006052247073815882, "chf": 0.004552313117426517, "clp": 3.143467650449639, "cny": 0.03175345849726685, "czk": 0.10412733358094226, "dkk": 0.030539915511165125, "eos": 0.0007852463495515838, "eth": 1.5864869131296527e-05, "eur": 0.004091543777064524, "gbp": 0.003667120203907255, "hkd": 0.0360378422798131, "huf": 1.3210048578675269, "idr": 65.59978810013257, "ils": 0.016509211202405547, "inr": 0.31828033617450935, "jpy": 0.49808993366053134, "krw": 5.389679491972442, "kwd": 0.0014033799728109672, "lkr": 0.8153544178847467, "ltc": 3.898965990130474e-05, "mmk": 7.002578532209317, "mxn": 0.08805511705027831, "myr": 0.0191384696384298, "ngn": 1.6632103970632965, "nok": 0.03958719332752162, "nzd": 0.00691702869974006, "php": 0.2365121775252747, "pkr": 0.723128823863976, "pln": 0.017363269741297576, "rub": 0.29251019854018706, "sar": 0.017325339304186765, "sek": 0.043110732273873374, "sgd": 0.006262869570459553, "thb": 0.14152765471788487, "try": 0.026118016568983913, "twd": 0.14309547075861898, "uah": 0.1210445395338051, "usd": 0.004620028880731379, "vef": 1148.0200836582674, "vnd": 107.43997047732269, "xag": 0.0003005977438970622, "xau": 3.2275059757901405e-06, "xdr": 0.003333965301288836, "xlm": 0.044704656528188724, "xrp": 0.011524360644854615, "zar": 0.06505388746495765, "bits": 0.4271809141514541, "link": 0.0012315956831237072, "sats": 42.71809141514541}, "market_cap": {"aed": 102046133.73618758, "ars": 1171045949.5667577, "aud": 39721826.93144364, "bch": 68133.81955311468, "bdt": 2349201299.910051, "bhd": 10471395.44007702, "bmd": 27781406.289585922, "bnb": 870665.0871792425, "brl": 106830814.21581791, "btc": 2571.1368581127717, "cad": 36393697.802170284, "chf": 27374214.217599384, "clp": 18902468839.43426, "cny": 190941605.4283241, "czk": 626144085.8364166, "dkk": 183644263.43823868, "eos": 4720802.992285033, "eth": 95375.92045085233, "eur": 24603491.224120196, "gbp": 22051324.5539211, "hkd": 216704692.55097172, "huf": 7943537500.38132, "idr": 394468176015.3895, "ils": 99274077.2352064, "inr": 1913900445.5422866, "jpy": 2995141193.4865375, "krw": 32409510763.368122, "kwd": 8438879.974524617, "lkr": 4902933063.413873, "ltc": 234705.91535054703, "mmk": 42108282069.27612, "mxn": 529497768.4779223, "myr": 115084475.55460972, "ngn": 10001306264.250933, "nok": 238047841.27716494, "nzd": 41593849.21286125, "php": 1422207753.6502655, "pkr": 4348357158.385376, "pln": 104409748.00189933, "rub": 1758938067.1156995, "sar": 104181662.65626176, "sek": 259235775.2864183, "sgd": 37660224.33350614, "thb": 851041709.5720307, "try": 157054262.75738165, "twd": 860469385.3592157, "uah": 727871539.0610558, "usd": 27781406.289585922, "vef": 6903336147038.491, "vnd": 646063812289.2211, "xag": 1807570.5300818698, "xau": 19407.812619841847, "xdr": 20047979.564972773, "xlm": 268446954.81054306, "xrp": 69588469.50333399, "zar": 391185536.93865293, "bits": 2571136858.1127715, "link": 7412786.831691747, "sats": 257113685811.27716}, "total_volume": {"aed": 5407280.908286276, "ars": 62052075.60522001, "aud": 2104803.6661920035, "bch": 3609.1936380479124, "bdt": 124480868.34494404, "bhd": 554864.4968032256, "bmd": 1472097.592872843, "bnb": 46085.6059115508, "brl": 5660814.388316399, "btc": 136.11429964568208, "cad": 1928450.7908586147, "chf": 1450521.0584541115, "clp": 1001615202.190685, "cny": 10117726.755815076, "czk": 33178493.267883338, "dkk": 9731050.881095162, "eos": 250206.0681499632, "eth": 5055.08434305006, "eur": 1303704.349224121, "gbp": 1168468.6317572643, "hkd": 11482876.458565708, "huf": 420916864.7301331, "idr": 20902313091.143757, "ils": 5260393.538371829, "inr": 101414889.13529947, "jpy": 158708313.5852143, "krw": 1717334330.8695369, "kwd": 447164.3648110559, "lkr": 259799517.90179327, "ltc": 12423.425474031947, "mmk": 2231258562.941383, "mxn": 28057341.02452853, "myr": 6098164.278475772, "ngn": 529955133.4342235, "nok": 12613819.850583049, "nzd": 2203999.490390145, "php": 75360785.87564026, "pkr": 230413321.7406662, "pln": 5532525.499390311, "rub": 93203650.94635503, "sar": 5520439.578152823, "sek": 13736538.633348968, "sgd": 1995562.248020097, "thb": 45095501.611270286, "try": 8322084.1934926715, "twd": 45595060.87360692, "uah": 38568887.74468174, "usd": 1472097.592872843, "vef": 365798060001.6245, "vnd": 34234011518.33449, "xag": 95780.61666658254, "xau": 1028.3926574050413, "xdr": 1062314.2022376112, "xlm": 14244416.856315361, "xrp": 3672051.4097745945, "zar": 20728370.669627648, "bits": 136114299.64568207, "link": 392428.0750885653, "sats": 13611429964.568209}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.333, "reddit_average_comments_48h": 2.792, "reddit_subscribers": 17583, "reddit_accounts_active_48h": "1310.32"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 429165, "bing_matches": null}}, "PPT_20190707": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 2.3671918664772535, "ars": 27.090320065458492, "aud": 0.9164202928265484, "bch": 0.0015244069646265874, "bdt": 54.44995761028787, "bhd": 0.24299093708021688, "bmd": 0.6444528234457407, "bnb": 0.019768251599027644, "brl": 2.4660567296692393, "btc": 5.368794966123646e-05, "cad": 0.8415232745913327, "chf": 0.6352371480704672, "clp": 437.18875007654367, "cny": 4.434544323412496, "czk": 14.526490580612478, "dkk": 4.260986089077498, "eos": 0.10608880732386107, "eth": 0.0021167815103961406, "eur": 0.5709787570446954, "gbp": 0.5122426822630247, "hkd": 5.024959777612311, "huf": 184.02994826316632, "idr": 9093.06626712142, "ils": 2.3000521268778535, "inr": 44.338676479478785, "jpy": 69.46009199021739, "krw": 753.9228983238255, "kwd": 0.19576478972528938, "lkr": 113.5544048481021, "ltc": 0.005289350012779539, "mmk": 974.0282355405524, "mxn": 12.257267143449821, "myr": 2.6665002468927455, "ngn": 232.15857317408435, "nok": 5.495920100911065, "nzd": 0.9605794891946965, "php": 32.98711817847704, "pkr": 102.22097629392947, "pln": 2.4205622270509117, "rub": 40.80829946736067, "sar": 2.4167947558450473, "sek": 5.997664646680138, "sgd": 0.8740655643640466, "thb": 19.758923566846466, "try": 3.623883894535977, "twd": 20.01734914904821, "uah": 16.884663974278467, "usd": 0.6444528234457407, "vef": 160138.56263358763, "vnd": 14998.250572552739, "xag": 0.0421252323675438, "xau": 0.0004546679114692056, "xdr": 0.4650693800396196, "xlm": 6.099761296879262, "xrp": 1.5793908457266685, "zar": 9.07251726952672, "bits": 53.68794966123646, "link": 0.18252633517948152, "sats": 5368.794966123646}, "market_cap": {"aed": 85670753.63747878, "ars": 980422486.7256432, "aud": 33166055.63196925, "bch": 55208.06264306396, "bdt": 1970591809.6719487, "bhd": 8794055.522723056, "bmd": 23323313.944365647, "bnb": 715369.8658767696, "brl": 89248759.90636995, "btc": 1945.1646698663321, "cad": 30455466.731983, "chf": 22989790.554961283, "clp": 15822245011.606348, "cny": 160490055.5825742, "czk": 525726458.16023785, "dkk": 154208830.5809032, "eos": 3843141.528422678, "eth": 76634.68465452518, "eur": 20664222.92156851, "gbp": 18538512.76536508, "hkd": 181857709.65270483, "huf": 6660205529.953048, "idr": 329086058046.9617, "ils": 83240907.46744081, "inr": 1604655661.0293274, "jpy": 2513821761.8946466, "krw": 27285132142.698975, "kwd": 7084899.753566002, "lkr": 4109633688.7425404, "ltc": 191615.3622871736, "mmk": 35250937697.383484, "mxn": 443601268.0619534, "myr": 96502986.91917215, "ngn": 8402022754.844895, "nok": 198902177.57342237, "nzd": 34764215.75006497, "php": 1193832791.7982728, "pkr": 3699466950.979381, "pln": 87602273.88178155, "rub": 1476888214.9106975, "sar": 87465925.78846265, "sek": 217060753.55463323, "sgd": 31633200.792917617, "thb": 715092805.5342497, "try": 131151542.35538708, "twd": 724445454.4259394, "uah": 611070825.3423799, "usd": 23323313.944365647, "vef": 5795555291282.049, "vnd": 542799866791.7398, "xag": 1524549.1737228695, "xau": 16454.83122088939, "xdr": 16831269.507951446, "xlm": 220800430.94590744, "xrp": 57205323.914290115, "zar": 328342371.7681407, "bits": 1945164669.866332, "link": 6613099.974046036, "sats": 194516466986.6332}, "total_volume": {"aed": 14088139.659493813, "ars": 161225719.76834482, "aud": 5453996.887606612, "bch": 9072.37749491092, "bdt": 324054259.44995934, "bhd": 1446139.751515686, "bmd": 3835405.785746411, "bnb": 117649.0563756292, "brl": 14676525.425679373, "btc": 319.5192344019659, "cad": 5008253.697998744, "chf": 3780559.4830102404, "clp": 2601891403.8445425, "cny": 26391810.752299685, "czk": 86453164.59562802, "dkk": 25358893.784734525, "eos": 631378.4510048486, "eth": 12597.84387121695, "eur": 3398131.1721134833, "gbp": 3048568.4533947557, "hkd": 29905617.76291126, "huf": 1095238476.1777487, "idr": 54116605129.63729, "ils": 13688563.249328969, "inr": 263877835.76224655, "jpy": 413385788.6964285, "krw": 4486907561.017707, "kwd": 1165077.3801304025, "lkr": 675809315.2928361, "ltc": 31479.113604287788, "mmk": 5796845624.941443, "mxn": 72948075.65287195, "myr": 15869447.851814296, "ngn": 1381671865.4464598, "nok": 32708497.79248277, "nzd": 5716806.562857523, "php": 196320008.71741644, "pkr": 608359385.8835703, "pln": 14405768.789640395, "rub": 242867099.3273491, "sar": 14383347.00741692, "sek": 35694587.48562759, "sgd": 5201926.348555782, "thb": 117593541.3909853, "try": 21567234.63738032, "twd": 119131539.11106962, "uah": 100487631.58655632, "usd": 3835405.785746411, "vef": 953050940737.6161, "vnd": 89260803784.6333, "xag": 250704.712696464, "xau": 2705.9171359019565, "xdr": 2767820.5852839025, "xlm": 36302206.95540561, "xrp": 9399609.354283474, "zar": 53994309.530333996, "bits": 319519234.4019659, "link": 1086289.8516844087, "sats": 31951923440.19659}}, "community_data": {"facebook_likes": null, "twitter_followers": 24027, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 660913, "bing_matches": null}}, "FUN_20190711": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.015110790942392135, "ars": 0.17194391648024815, "aud": 0.005892066919550034, "bch": 9.98411248107184e-06, "bdt": 0.3476151014933619, "bhd": 0.0015509592219477026, "bmd": 0.004113982928107399, "bnb": 0.00012444815800831337, "brl": 0.015712658416808384, "btc": 3.596980068902555e-07, "cad": 0.005380061174232451, "chf": 0.00407860267492567, "clp": 2.8139530751961277, "cny": 0.02836035841234751, "czk": 0.09346074009974822, "dkk": 0.027345331860427265, "eos": 0.0006915277723009466, "eth": 1.3443888996909004e-05, "eur": 0.0036638761699261035, "gbp": 0.003284875492674193, "hkd": 0.03207034821691475, "huf": 1.1871952276297826, "idr": 57.884195232837016, "ils": 0.014705843374812672, "inr": 0.2816040979127903, "jpy": 0.4462848680410912, "krw": 4.83401195277584, "kwd": 0.0012510622084374577, "lkr": 0.7246969718537744, "ltc": 3.42247560548942e-05, "mmk": 6.189462540932359, "mxn": 0.07820722686161431, "myr": 0.017013376399188103, "ngn": 1.4823978451584774, "nok": 0.03543908313759547, "nzd": 0.006204639114461785, "php": 0.21116840695744904, "pkr": 0.6454839214200475, "pln": 0.015579859047889074, "rub": 0.26234416594418714, "sar": 0.015428670175281147, "sek": 0.03882768859581887, "sgd": 0.005594971528413831, "thb": 0.12662839452714528, "try": 0.02363611137066759, "twd": 0.12829091262415446, "uah": 0.10560840604029065, "usd": 0.004113982928107399, "vef": 1022.2739180251311, "vnd": 95.89039514403095, "xag": 0.0002744759724805417, "xau": 2.9455706366956093e-06, "xdr": 0.002972788747747965, "xlm": 0.03908651703403663, "xrp": 0.010380706191376144, "zar": 0.05845806827116663, "bits": 0.3596980068902555, "link": 0.0012485051951252068, "sats": 35.96980068902555}, "market_cap": {"aed": 90792646.942134, "ars": 1033118872.6225333, "aud": 35402273.35720428, "bch": 60021.20607642361, "bdt": 2088632904.919574, "bhd": 9318883.015242916, "bmd": 24718719.28753512, "bnb": 748071.6298214028, "brl": 94408946.13646196, "btc": 2161.489331352735, "cad": 32325905.14827407, "chf": 24506138.301662326, "clp": 16907536411.695557, "cny": 170402199.2165171, "czk": 561555514.2796305, "dkk": 164303448.48158067, "eos": 4156179.893761936, "eth": 80916.91146839493, "eur": 22014268.929005157, "gbp": 19737056.914641093, "hkd": 192693540.27001646, "huf": 7133220065.349785, "idr": 347795116836.72046, "ils": 88359533.96522337, "inr": 1692008150.7796056, "jpy": 2681486668.311827, "krw": 29044987930.522778, "kwd": 7516962.535339447, "lkr": 4354315836.702139, "ltc": 205961.86796160592, "mmk": 37189164311.969086, "mxn": 469905325.52797395, "myr": 102224263.61360183, "ngn": 8906934434.892426, "nok": 212934463.5586145, "nzd": 37280352.21123282, "php": 1268797820.796627, "pkr": 3878367056.2142725, "pln": 93611025.87786016, "rub": 1576285538.3749034, "sar": 92702612.9440432, "sek": 233294778.26137236, "sgd": 33617186.32513575, "thb": 760842179.6703335, "try": 142016729.82858813, "twd": 770831360.1964964, "uah": 634544330.623882, "usd": 24718719.28753512, "vef": 6142296274976.748, "vnd": 576154009716.9456, "xag": 1649179.064056303, "xau": 17698.355822682333, "xdr": 17861894.86948867, "xlm": 235002944.44267482, "xrp": 62419239.770558655, "zar": 351243212.4630375, "bits": 2161489331.352735, "link": 7502489.887926892, "sats": 216148933135.2735}, "total_volume": {"aed": 6806884.904445549, "ars": 77454744.3586937, "aud": 2654170.885135611, "bch": 4497.494855880501, "bdt": 156588493.34447157, "bhd": 698653.0986719585, "bmd": 1853205.9901589658, "bnb": 56059.559778327566, "brl": 7078005.234393822, "btc": 162.03142129321458, "cad": 2423530.1336303875, "chf": 1837268.4186435961, "clp": 1267587830.603552, "cny": 12775353.474059327, "czk": 42100807.52017697, "dkk": 12318119.37293136, "eos": 311509.1706466954, "eth": 6056.003647921207, "eur": 1650448.5759816666, "gbp": 1479721.9741382648, "hkd": 14446574.635984678, "huf": 534790091.68951374, "idr": 26074813438.852512, "ils": 6624470.132422224, "inr": 126852835.85884413, "jpy": 201035785.81244487, "krw": 2177553982.098187, "kwd": 563559.9416073405, "lkr": 326450739.52879024, "ltc": 15417.06031382041, "mmk": 2788137252.1876783, "mxn": 35229631.19352089, "myr": 7663933.372302383, "ngn": 667768586.9032649, "nok": 15964072.36102634, "nzd": 2794973.7698559123, "php": 95124010.85385704, "pkr": 290768019.8559402, "pln": 7018183.745031488, "rub": 118176907.46584772, "sar": 6950078.424893156, "sek": 17490521.071000427, "sgd": 2520339.761350292, "thb": 57041680.377092764, "try": 10647244.760526173, "twd": 57790586.86259986, "uah": 47572907.83776866, "usd": 1853205.9901589658, "vef": 460498787081.4985, "vnd": 43195282475.6567, "xag": 123641.86367434736, "xau": 1326.8769568939147, "xdr": 1339137.7677248053, "xlm": 17607114.265603036, "xrp": 4676146.506224957, "zar": 26333323.25058681, "bits": 162031421.2932146, "link": 562408.0961889251, "sats": 16203142129.321457}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.292, "reddit_average_comments_48h": 3.208, "reddit_subscribers": 17573, "reddit_accounts_active_48h": "1591.4"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 429165, "bing_matches": null}}, "BLZ_20190713": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.18945987029464761, "ars": 2.1562751260160518, "aud": 0.07446200324236005, "bch": 0.0001241049186865079, "bdt": 4.358421472031486, "bhd": 0.01944464992683398, "bmd": 0.05157923617013341, "bnb": 0.001584178661001614, "brl": 0.19602688706459262, "btc": 4.106137797387401e-06, "cad": 0.06771837916776849, "chf": 0.05124603430447448, "clp": 35.50173035972209, "cny": 0.35533967382328435, "czk": 1.1764160722349997, "dkk": 0.34357702901468545, "eos": 0.008743949380814887, "eth": 0.00016746814972119125, "eur": 0.046030496680659255, "gbp": 0.04139579283535566, "hkd": 0.40274357082544543, "huf": 14.98728637870222, "idr": 730.8210393710042, "ils": 0.1839650826862071, "inr": 3.535756639462657, "jpy": 5.61770092823395, "krw": 60.99141518645958, "kwd": 0.015695148932682274, "lkr": 9.060725631631188, "ltc": 0.0004325506082674278, "mmk": 77.81540242076956, "mxn": 0.9883693182737042, "myr": 0.21363088036945932, "ngn": 18.594314639333092, "nok": 0.4461799929814013, "nzd": 0.07813970593976323, "php": 2.651207245653866, "pkr": 8.16793614536878, "pln": 0.19652720565544307, "rub": 3.293246544761543, "sar": 0.19344534629427745, "sek": 0.4885587828996859, "sgd": 0.07025824391525827, "thb": 1.5905746953964952, "try": 0.2951517083986468, "twd": 1.6064958645420737, "uah": 1.3226732258927782, "usd": 0.05157923617013341, "vef": 12816.80278450821, "vnd": 1197.6280226393842, "xag": 0.0034153516179241837, "xau": 3.6950848999922e-05, "xdr": 0.03738205141430434, "xlm": 0.5071891036714196, "xrp": 0.130635636511306, "zar": 0.7319424751238168, "bits": 4.106137797387401, "link": 0.016725375390147432, "sats": 410.6137797387401}, "market_cap": {"aed": 39336108.094683565, "ars": 447690961.188424, "aud": 15459977.904201651, "bch": 25781.382896630046, "bdt": 904905813.9826205, "bhd": 4037144.3841679404, "bmd": 10709003.47537557, "bnb": 329028.37493992713, "brl": 40699567.70816491, "btc": 853.373649000476, "cad": 14059850.662820587, "chf": 10639823.312924651, "clp": 7370953547.083635, "cny": 73776466.7425575, "czk": 244250298.0171546, "dkk": 71334278.49999812, "eos": 1817856.1657431922, "eth": 34795.09400505205, "eur": 9556961.008505138, "gbp": 8594692.79222179, "hkd": 83618576.38660148, "huf": 3111695981.432668, "idr": 151734799342.24948, "ils": 38195267.245448336, "inr": 734102188.2369964, "jpy": 1166360404.5170605, "krw": 12663182429.56209, "kwd": 3258664.0855289837, "lkr": 1881209368.019832, "ltc": 89854.17690437102, "mmk": 16156218603.413528, "mxn": 205207584.4906855, "myr": 44354550.59431063, "ngn": 3860595752.8728933, "nok": 92636949.48331968, "nzd": 16223551.270002909, "php": 550449942.9576306, "pkr": 1695846295.1812549, "pln": 40803445.04187609, "rub": 683751666.5968235, "sar": 40163582.084222384, "sek": 101435734.46377476, "sgd": 14587183.41195503, "thb": 330238894.67189467, "try": 61280098.460131265, "twd": 333544485.6106531, "uah": 274616555.5098668, "usd": 10709003.47537557, "vef": 2661055024346.751, "vnd": 248654373522.47473, "xag": 709103.4117941842, "xau": 7671.822999724316, "xdr": 7761350.268778455, "xlm": 105420386.84273362, "xrp": 27133389.300187428, "zar": 151967634.49581078, "bits": 853373649.000476, "link": 3476014.525541327, "sats": 85337364900.0476}, "total_volume": {"aed": 2765399.4537044135, "ars": 31473483.256626423, "aud": 1086864.3727450925, "bch": 1811.4636825410898, "bdt": 63616513.2965889, "bhd": 283818.5426893505, "bmd": 752862.2884917464, "bnb": 23123.032845377264, "brl": 2861253.1274128915, "btc": 59.9341232740776, "cad": 988432.8985608189, "chf": 747998.7981080918, "clp": 518191348.8574283, "cny": 5186618.877877358, "czk": 17171237.151320204, "dkk": 5014928.632986816, "eos": 127628.67832285038, "eth": 2444.403287258846, "eur": 671871.6220826741, "gbp": 604222.4282879585, "hkd": 5878536.964115697, "huf": 218757848.2964136, "idr": 10667230479.410719, "ils": 2685196.281249099, "inr": 51608709.8761094, "jpy": 81997243.28879066, "krw": 890244598.8957236, "kwd": 229089.97148973108, "lkr": 132252416.688086, "ltc": 6313.6072770553865, "mmk": 1135811351.551762, "mxn": 14426463.865733584, "myr": 3118205.026475127, "ngn": 271406855.0012746, "nok": 6512544.883123273, "nzd": 1140544.9596391357, "php": 38697625.293346934, "pkr": 119221057.83756293, "pln": 2868555.8916112636, "rub": 48068977.25430778, "sar": 2823572.3698738795, "sek": 7131115.360905285, "sgd": 1025505.3433707305, "thb": 23216390.82136432, "try": 4308101.614849469, "twd": 23448779.835402206, "uah": 19306039.9050462, "usd": 752862.2884917464, "vef": 187076974999.47842, "vnd": 17480851614.63142, "xag": 49851.250735722926, "xau": 539.3430148526041, "xdr": 545636.9435843955, "xlm": 7403047.769622583, "xrp": 1906787.528571953, "zar": 10683599.211287132, "bits": 59934123.2740776, "link": 244127.39170032897, "sats": 5993412327.40776}}, "community_data": {"facebook_likes": null, "twitter_followers": 36587, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 30, "stars": 204, "subscribers": 53, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 307, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 714, "deletions": -435}, "commit_count_4_weeks": 16}, "public_interest_stats": {"alexa_rank": 875271, "bing_matches": null}}, "FUN_20190721": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.010338566450402152, "ars": 0.1196208610852807, "aud": 0.004014588682361848, "bch": 9.650678344730248e-06, "bdt": 0.23785495049147828, "bhd": 0.0010606626948964529, "bmd": 0.0028146084961242473, "bnb": 0.00010202047385955555, "brl": 0.010591861512793866, "btc": 2.9113798445379673e-07, "cad": 0.0036740210543308263, "chf": 0.002777801860820431, "clp": 1.9198444552063485, "cny": 0.019346774419809257, "czk": 0.06421804271157543, "dkk": 0.018719752826693668, "eos": 0.0007332050528102739, "eth": 1.3326112425005451e-05, "eur": 0.0025066649951717914, "gbp": 0.002263958489942501, "hkd": 0.02199549270578042, "huf": 0.8184318585030098, "idr": 39.318454674639874, "ils": 0.009968780371572852, "inr": 0.1936338060993638, "jpy": 0.30388202089254945, "krw": 3.320337350707854, "kwd": 0.0008569188150790116, "lkr": 0.4948413437797695, "ltc": 3.133215834328334e-05, "mmk": 4.263144650512841, "mxn": 0.053683590768277015, "myr": 0.011581742433229802, "ngn": 1.0150842618492533, "nok": 0.02416787509369304, "nzd": 0.004179699245961493, "php": 0.14367872720590247, "pkr": 0.44902505098316914, "pln": 0.010686530869561013, "rub": 0.17716919077958573, "sar": 0.010557315008112444, "sek": 0.026356292306208055, "sgd": 0.0038295281737417003, "thb": 0.08694325644527816, "try": 0.015999222619552375, "twd": 0.08731160988838278, "uah": 0.07286345046044071, "usd": 0.0028146084961242473, "vef": 699.3954290334024, "vnd": 65.25143792969865, "xag": 0.00017655332629454878, "xau": 1.974673028710851e-06, "xdr": 0.002036588786408592, "xlm": 0.034164236313129176, "xrp": 0.009072110132154648, "zar": 0.03943271850826224, "bits": 0.29113798445379674, "link": 0.0011733652404367007, "sats": 29.113798445379672}, "market_cap": {"aed": 62206913.34570167, "ars": 719705126.5516956, "aud": 24154196.205722965, "bch": 58220.25917442092, "bdt": 1431167692.837529, "bhd": 6381982.7117206855, "bmd": 16935433.71418443, "bnb": 614149.7366563083, "brl": 63733117.696590275, "btc": 1751.4944675521347, "cad": 22106753.075979136, "chf": 16715205.334165176, "clp": 11551462580.576305, "cny": 116409090.72118959, "czk": 386393774.9927173, "dkk": 112629948.6878693, "eos": 4402076.910509761, "eth": 80257.88965194953, "eur": 15082544.846949235, "gbp": 13621169.336318543, "hkd": 132349567.70466569, "huf": 4925438050.492403, "idr": 236756623059.55496, "ils": 59981919.12889841, "inr": 1165090097.8010314, "jpy": 1828069989.1270585, "krw": 19978223089.61199, "kwd": 5156263.761222868, "lkr": 2977448831.0399404, "ltc": 188397.70253591784, "mmk": 25651241990.549603, "mxn": 322989543.41885674, "myr": 69687074.25661859, "ngn": 6107738342.4842005, "nok": 145424213.6595937, "nzd": 25152878.731848396, "php": 864560004.8006865, "pkr": 2701773265.235703, "pln": 64300386.98428069, "rub": 1066026278.2899091, "sar": 63523118.31853432, "sek": 158577846.4773648, "sgd": 23038709.993270863, "thb": 523033934.82887197, "try": 96272233.4239768, "twd": 525252239.54935724, "uah": 438417683.013019, "usd": 16935433.71418443, "vef": 4208245993966.4243, "vnd": 392598173440.8651, "xag": 1061850.8471076791, "xau": 11876.81966375755, "xdr": 12254107.256042147, "xlm": 205230032.64801016, "xrp": 54657086.8389799, "zar": 237315826.18645692, "bits": 1751494467.5521348, "link": 7058998.951643187, "sats": 175149446755.21347}, "total_volume": {"aed": 1115337.1035920205, "ars": 12904843.758764125, "aud": 433098.7022794245, "bch": 1041.126899396287, "bdt": 25660080.90472442, "bhd": 114425.57957035716, "bmd": 303643.38255915546, "bnb": 11006.092611338392, "brl": 1142662.882518667, "btc": 31.40831931429772, "cad": 396357.8529897681, "chf": 299672.63804542937, "clp": 207115151.24359986, "cny": 2087153.5186968686, "czk": 6927920.432671893, "dkk": 2019509.6677906348, "eos": 79099.05148490248, "eth": 1437.6371913408814, "eur": 270422.063716741, "gbp": 244238.5911952824, "hkd": 2372900.463931368, "huf": 88293422.78055134, "idr": 4241722637.7474365, "ils": 1075444.132348016, "inr": 20889450.146539666, "jpy": 32783161.441381663, "krw": 358202025.5373847, "kwd": 92445.44239366511, "lkr": 53384085.09116299, "ltc": 3380.151291142, "mmk": 459913221.96433276, "mxn": 5791450.964227285, "myr": 1249452.4383044282, "ngn": 109508522.86380102, "nok": 2607259.714031708, "nzd": 450911.0303871102, "php": 15500235.571188482, "pkr": 48441367.78598994, "pln": 1152875.927691045, "rub": 19113227.45158337, "sar": 1138935.9636411367, "sek": 2843348.8204824845, "sgd": 413134.1498761624, "thb": 9379544.087252328, "try": 1726015.5652935193, "twd": 9419282.504014594, "uah": 7860597.519408259, "usd": 303643.38255915546, "vef": 75451628214.20667, "vnd": 7039404363.734944, "xag": 19046.787243045597, "xau": 213.03012433585246, "xdr": 219709.6714653887, "xlm": 3685679.3017407767, "xrp": 978710.2580234029, "zar": 4254049.558878048, "bits": 31408319.31429772, "link": 126584.06704667633, "sats": 3140831931.429772}}, "community_data": {"facebook_likes": null, "twitter_followers": 36184, "reddit_average_posts_48h": 0.304, "reddit_average_comments_48h": 3.435, "reddit_subscribers": 17540, "reddit_accounts_active_48h": "1490.75"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 408436, "bing_matches": null}}, "MATIC_20190727": {"id": "matic-network", "symbol": "matic", "name": "Polygon", "localization": {"en": "Polygon", "de": "Polygon", "es": "Polygon", "fr": "Polygon", "it": "Polygon", "pl": "Polygon", "ro": "Polygon", "hu": "Polygon", "nl": "Polygon", "pt": "Polygon", "sv": "Polygon", "vi": "Polygon", "tr": "Polygon", "ru": "Polygon", "ja": "\u30de\u30c6\u30a3\u30c3\u30af", "zh": "Polygon", "zh-tw": "Polygon", "ko": "Polygon", "ar": "Polygon", "th": "Polygon", "id": "Polygon"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4713/thumb/matic-token-icon.png?1624446912", "small": "https://assets.coingecko.com/coins/images/4713/small/matic-token-icon.png?1624446912"}, "market_data": {"current_price": {"aed": 0.04249794646019456, "ars": 0.4930457419389574, "aud": 0.016535912741680942, "bch": 3.8565991692237234e-05, "bdt": 0.977693419403073, "bhd": 0.004361670260000358, "bmd": 0.011570307158907079, "bnb": 0.00039090220449410377, "brl": 0.04366518218699937, "btc": 1.1670739928223569e-06, "cad": 0.01520280509144592, "chf": 0.01140125340100828, "clp": 8.003219019033066, "cny": 0.07959660908468513, "czk": 0.2651729275906961, "dkk": 0.07746160972649495, "eos": 0.002772037922841114, "eth": 5.4186600401909524e-05, "eur": 0.010374863023248804, "gbp": 0.009303128611733553, "hkd": 0.09036814851856992, "huf": 3.381190861047411, "idr": 162.49917889327, "ils": 0.04095020961216188, "inr": 0.7986976552421545, "jpy": 1.2522485586549383, "krw": 13.651162153997612, "kwd": 0.0035238527483167402, "lkr": 2.0370890933797567, "ltc": 0.00012732652635632333, "mmk": 17.477499455603105, "mxn": 0.22196361550575772, "myr": 0.04764666372406525, "ngn": 4.175913375280827, "nok": 0.10047539033723321, "nzd": 0.01726868343466881, "php": 0.5927259744870015, "pkr": 1.857034299004586, "pln": 0.04417196164055957, "rub": 0.7312237429207576, "sar": 0.04339675106091274, "sek": 0.10962831322142982, "sgd": 0.015801568486919382, "thb": 0.3576555497425567, "try": 0.06619365783426447, "twd": 0.3589805697480873, "uah": 0.29663283573221466, "usd": 0.011570307158907079, "vef": 2875.0783459209806, "vnd": 269.29107480747894, "xag": 0.0007076650934052922, "xau": 8.167132714257739e-06, "xdr": 0.008387986737306953, "xlm": 0.1353409519013593, "xrp": 0.03720104075021125, "zar": 0.16127366352930603, "bits": 1.1670739928223568, "link": 0.0048736384496635985, "sats": 116.70739928223568}, "market_cap": {"aed": 91997460.34768742, "ars": 1067270506.944238, "aud": 35794526.07439476, "bch": 83974.27876779217, "bdt": 2116462537.0304894, "bhd": 9441928.851077814, "bmd": 25046830.793556567, "bnb": 851361.9594484239, "brl": 94524234.7318032, "btc": 2535.4402378993077, "cad": 32913063.519411843, "chf": 24680320.51855445, "clp": 17325018094.05705, "cny": 172306817.10556188, "czk": 574046636.8198597, "dkk": 167696121.35259166, "eos": 6034429.979268291, "eth": 117904.8732474805, "eur": 22462123.08981549, "gbp": 20140707.6713763, "hkd": 195629524.2546131, "huf": 7318717019.693884, "idr": 351770215080.1044, "ils": 88646995.88609505, "inr": 1728981327.056685, "jpy": 2711169152.417728, "krw": 29551503311.77762, "kwd": 7628262.786485591, "lkr": 4409790088.762178, "ltc": 277307.0163792234, "mmk": 37834429591.78272, "mxn": 480505540.2903652, "myr": 103143149.76983541, "ngn": 9039811500.482964, "nok": 217537811.8219215, "nzd": 37383396.83261503, "php": 1283038234.1871493, "pkr": 4020016342.3658204, "pln": 95628674.73564504, "rub": 1582929649.9558222, "sar": 93943148.25739254, "sek": 237332322.1980694, "sgd": 34208861.31051638, "thb": 774197539.8288343, "try": 143288786.24285626, "twd": 777103448.0906714, "uah": 642136145.7701745, "usd": 25046830.793556567, "vef": 6223827929500.143, "vnd": 582927902382.3561, "xag": 1531494.7305797136, "xau": 17680.557857171585, "xdr": 18157900.358435165, "xlm": 294558041.39881486, "xrp": 80971669.03460604, "zar": 349119734.39870113, "bits": 2535440237.8993077, "link": 10587862.557340998, "sats": 253544023789.93076}, "total_volume": {"aed": 28589570.039798096, "ars": 331685809.4588392, "aud": 11124175.9867875, "bch": 25944.432907416303, "bdt": 657722003.5244471, "bhd": 2934218.8923312444, "bmd": 7783672.729019597, "bnb": 262970.964127957, "brl": 29374802.51204702, "btc": 785.123669226554, "cad": 10227356.782295274, "chf": 7669945.486775886, "clp": 5383991692.464535, "cny": 53546889.2005992, "czk": 178389325.0727628, "dkk": 52110614.773949586, "eos": 1864828.2787563107, "eth": 36452.85799538493, "eur": 6979463.662657294, "gbp": 6258477.625113664, "hkd": 60793208.299098216, "huf": 2274622681.6013937, "idr": 109317791642.71541, "ils": 27548363.706182607, "inr": 537306492.5985497, "jpy": 842423007.6254295, "krw": 9183522711.90115, "kwd": 2370595.3663502084, "lkr": 1370407423.498428, "ltc": 85656.15391788131, "mmk": 11757607988.765173, "mxn": 149321199.26623917, "myr": 32053257.702175446, "ngn": 2809254984.462474, "nok": 67592635.6115333, "nzd": 11617131.548061743, "php": 398743519.9457431, "pkr": 1249279473.0076451, "pln": 29715727.377578124, "rub": 491914884.2303994, "sar": 29194221.30473377, "sek": 73750065.59727882, "sgd": 10630161.84602205, "thb": 240604999.5630896, "try": 44530344.98068475, "twd": 241496377.98034403, "uah": 199553294.6800943, "usd": 7783672.729019597, "vef": 1934146484409.6477, "vnd": 181159719129.30124, "xag": 476066.31467666075, "xau": 5494.261069233062, "xdr": 5642835.814284585, "xlm": 91047684.55720681, "xrp": 25026191.820297163, "zar": 108493352.8109306, "bits": 785123669.2265539, "link": 3278634.3673292063, "sats": 78512366922.6554}}, "community_data": {"facebook_likes": null, "twitter_followers": 20911, "reddit_average_posts_48h": 0.13, "reddit_average_comments_48h": 0.522, "reddit_subscribers": 1033, "reddit_accounts_active_48h": "12.8333333333333"}, "developer_data": {"forks": 18, "stars": 53, "subscribers": 16, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 47, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 962, "deletions": -826}, "commit_count_4_weeks": 30}, "public_interest_stats": {"alexa_rank": 191906, "bing_matches": null}}, "QKC_20190728": {"id": "quark-chain", "symbol": "qkc", "name": "QuarkChain", "localization": {"en": "QuarkChain", "de": "QuarkChain", "es": "QuarkChain", "fr": "QuarkChain", "it": "QuarkChain", "pl": "QuarkChain", "ro": "QuarkChain", "hu": "QuarkChain", "nl": "QuarkChain", "pt": "QuarkChain", "sv": "QuarkChain", "vi": "QuarkChain", "tr": "QuarkChain", "ru": "QuarkChain", "ja": "\u30af\u30aa\u30fc\u30af\u30c1\u30a7\u30fc\u30f3", "zh": "QuarkChain", "zh-tw": "QuarkChain", "ko": "\ucffc\ud06c\uccb4\uc778", "ar": "QuarkChain", "th": "QuarkChain", "id": "QuarkChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3849/thumb/quarkchain.png?1548387524", "small": "https://assets.coingecko.com/coins/images/3849/small/quarkchain.png?1548387524"}, "market_data": {"current_price": {"aed": 0.050697089986551404, "ars": 0.591103357389421, "aud": 0.019779986304877595, "bch": 4.5527143002254033e-05, "bdt": 1.1664443404359612, "bhd": 0.005203213958451816, "bmd": 0.013801958026721631, "bnb": 0.0004761767446532063, "brl": 0.0520720272432154, "btc": 1.407518212182486e-06, "cad": 0.018139223336618916, "chf": 0.013592168264715453, "clp": 9.54399326066464, "cny": 0.09485257634284167, "czk": 0.31602619332945026, "dkk": 0.09247725936644295, "eos": 0.0030036352676497094, "eth": 6.355733034894124e-05, "eur": 0.012387105507444367, "gbp": 0.011055409785278098, "hkd": 0.10785195051030948, "huf": 4.030891405498142, "idr": 193.15326153402972, "ils": 0.04863257930295634, "inr": 0.9522136466131574, "jpy": 1.49339532181993, "krw": 16.264589446859553, "kwd": 0.004203331109205971, "lkr": 2.433225313415145, "ltc": 0.00014596335030008238, "mmk": 20.87347357799593, "mxn": 0.26324809931946147, "myr": 0.05682956217502622, "ngn": 4.968704889619787, "nok": 0.11925998652121225, "nzd": 0.02059994682928709, "php": 0.7056215984188039, "pkr": 2.2186647527954975, "pln": 0.05266620153626574, "rub": 0.873387903930945, "sar": 0.05176976436243018, "sek": 0.130072978715709, "sgd": 0.01882863114005363, "thb": 0.4265150079207644, "try": 0.07884793623071953, "twd": 0.42913047896682943, "uah": 0.35384079793106177, "usd": 0.013801958026721631, "vef": 3429.616008369304, "vnd": 320.80239188999315, "xag": 0.0008308938834799527, "xau": 9.685109986511099e-06, "xdr": 0.010007247686854785, "xlm": 0.16933215303789456, "xrp": 0.04422595878881032, "zar": 0.19167440225497734, "bits": 1.4075182121824859, "link": 0.005733235324539139, "sats": 140.75182121824858}, "market_cap": {"aed": 203225370.63052458, "ars": 2369591751.3280034, "aud": 79285525.30582291, "bch": 182057.9635997084, "bdt": 4675832152.651364, "bhd": 20857707.71965015, "bmd": 55326805.466576435, "bnb": 1905175.5059031206, "brl": 208736971.66429946, "btc": 5631.817563293509, "cad": 72712424.18236613, "chf": 54483624.951265864, "clp": 38264018660.68427, "cny": 380227937.8885003, "czk": 1266851060.851479, "dkk": 370696401.8231349, "eos": 12040571.516175665, "eth": 254262.68908175325, "eur": 49655420.61861413, "gbp": 44321695.264414266, "hkd": 432337489.6171954, "huf": 16159492388.598787, "idr": 774352995392.4498, "ils": 194949531.7420288, "inr": 3816439998.1101427, "jpy": 5986332688.080812, "krw": 65198559115.88185, "kwd": 16849557.297623966, "lkr": 9753875740.748497, "ltc": 583558.0791001966, "mmk": 83673824382.42493, "mxn": 1055256349.03122, "myr": 227808121.50862858, "ngn": 19917649967.967518, "nok": 478068635.2508705, "nzd": 82566847.48443432, "php": 2828351940.0659013, "pkr": 8893783978.75214, "pln": 211130741.22961646, "rub": 3501080249.924956, "sar": 207525314.6245816, "sek": 521395388.572579, "sgd": 75478985.7629169, "thb": 1709708942.528147, "try": 316081486.3624964, "twd": 1720221035.566797, "uah": 1418413311.7466204, "usd": 55326805.466576435, "vef": 13748027443116.033, "vnd": 1286034692912.9902, "xag": 3331098.5989538846, "xau": 38832.778220880704, "xdr": 40115253.57159594, "xlm": 676809973.0823475, "xrp": 176866124.4190846, "zar": 768391012.197435, "bits": 5631817563.2935095, "link": 22940048.03331671, "sats": 563181756329.351}, "total_volume": {"aed": 16502129.70719205, "ars": 192406788.56684923, "aud": 6438474.076049748, "bch": 14819.288823488205, "bdt": 379682853.7338241, "bhd": 1693669.4326917292, "bmd": 4492599.114280524, "bnb": 154997.66171786547, "brl": 16949677.938357566, "btc": 458.15347801682435, "cad": 5904398.385943182, "chf": 4424311.607743456, "clp": 3106612524.5814753, "cny": 30874938.152981445, "czk": 102867940.43950391, "dkk": 30101761.845413793, "eos": 977696.7236778416, "eth": 20688.195506671276, "eur": 4032058.2864765115, "gbp": 3598585.3683360387, "hkd": 35106292.62876657, "huf": 1312073194.4729283, "idr": 62872251169.58964, "ils": 15830122.239078851, "inr": 309949804.01315045, "jpy": 486106861.5836482, "krw": 5294196664.098529, "kwd": 1368203.0898576777, "lkr": 792025730.4600992, "ltc": 47511.723844252905, "mmk": 6794409077.82104, "mxn": 85688434.60825695, "myr": 18498276.853050023, "ngn": 1617335681.1409886, "nok": 38819659.41187335, "nzd": 6705374.896830036, "php": 229682988.5974165, "pkr": 722185307.6205925, "pln": 17143084.330227334, "rub": 284291671.95167154, "sar": 16851290.01775482, "sek": 42339336.76936616, "sgd": 6128803.7117014835, "thb": 138832544.1290536, "try": 25665356.160854682, "twd": 139683891.66121018, "uah": 115176763.49280955, "usd": 4492599.114280524, "vef": 1116355361441.5725, "vnd": 104422614448.88571, "xag": 270459.6780946599, "xau": 3152.5466504729275, "xdr": 3257403.9138002354, "xlm": 55118373.73251, "xrp": 14395747.538004268, "zar": 62390875.85498912, "bits": 458153478.01682436, "link": 1866193.7596910961, "sats": 45815347801.682434}}, "community_data": {"facebook_likes": null, "twitter_followers": 50888, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.083, "reddit_subscribers": 9226, "reddit_accounts_active_48h": "14.32"}, "developer_data": {"forks": 103, "stars": 176, "subscribers": 35, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 447, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 247409, "deletions": -172577}, "commit_count_4_weeks": 66}, "public_interest_stats": {"alexa_rank": 202056, "bing_matches": null}}, "MANA_20190729": {"id": "decentraland", "symbol": "mana", "name": "Decentraland", "localization": {"en": "Decentraland", "de": "Decentraland", "es": "Decentraland", "fr": "Decentraland", "it": "Decentraland", "pl": "Decentraland", "ro": "Decentraland", "hu": "Decentraland", "nl": "Decentraland", "pt": "Decentraland", "sv": "Decentraland", "vi": "Decentraland", "tr": "Decentraland", "ru": "Decentraland", "ja": "\u30c7\u30a3\u30bb\u30f3\u30c8\u30e9\u30e9\u30f3\u30c9", "zh": "Decentraland", "zh-tw": "Decentraland", "ko": "\ub514\uc13c\ud2b8\ub7f4\ub79c\ub4dc", "ar": "Decentraland", "th": "Decentraland", "id": "Decentraland"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/878/thumb/decentraland-mana.png?1550108745", "small": "https://assets.coingecko.com/coins/images/878/small/decentraland-mana.png?1550108745"}, "market_data": {"current_price": {"aed": 0.1557429940654157, "ars": 1.8374308517933695, "aud": 0.061007286875060754, "bch": 0.00014030747546273708, "bdt": 3.5825472926567947, "bhd": 0.015984218681503785, "bmd": 0.04240003257814294, "bnb": 0.0014681009875088895, "brl": 0.16025092312909103, "btc": 4.287748053531465e-06, "cad": 0.05580119887495379, "chf": 0.042009952278424016, "clp": 29.54434270045001, "cny": 0.29139422389328723, "czk": 0.9711743150035704, "dkk": 0.28403044063531113, "eos": 0.009288949094411391, "eth": 0.00019336870705771419, "eur": 0.03803889242725289, "gbp": 0.0340452333587176, "hkd": 0.33141519064347064, "huf": 12.410489535622446, "idr": 592.6179568574955, "ils": 0.14942619481189118, "inr": 2.9315636924723476, "jpy": 4.607844740445969, "krw": 50.20121457219537, "kwd": 0.012914159522618195, "lkr": 7.470403355098144, "ltc": 0.00045495171650483137, "mmk": 64.11032189608383, "mxn": 0.8068141503171349, "myr": 0.174496570874761, "ngn": 15.242811711842387, "nok": 0.3678394898301479, "nzd": 0.06366373371614686, "php": 2.1706316350088026, "pkr": 6.827465245895473, "pln": 0.16195735484023105, "rub": 2.6799661391569076, "sar": 0.15902840298976545, "sek": 0.4006446494360526, "sgd": 0.05798865895569263, "thb": 1.3131290089450856, "try": 0.24179504738366886, "twd": 1.3163468322175063, "uah": 1.0786214247607537, "usd": 0.04240003257814294, "vef": 10535.884126284305, "vnd": 983.6297913553558, "xag": 0.0025815467595361945, "xau": 2.995901501906422e-05, "xdr": 0.030751005227591378, "xlm": 0.49715983361576177, "xrp": 0.13560905188451347, "zar": 0.5971309796066853, "bits": 4.287748053531465, "link": 0.01782206718810743, "sats": 428.7748053531465}, "market_cap": {"aed": 209420364.8331127, "ars": 2470707858.4643207, "aud": 82033662.90420346, "bch": 188175.82033962064, "bdt": 4817284819.533783, "bhd": 21493235.87837785, "bmd": 57013352.95840654, "bnb": 1966232.3242488592, "brl": 215481967.50629738, "btc": 5755.540185990027, "cad": 75033278.3612054, "chf": 56488830.11118921, "clp": 39726904341.41767, "cny": 391824268.2066493, "czk": 1305892959.0063598, "dkk": 381922531.144951, "eos": 12443288.507888136, "eth": 259395.88532116055, "eur": 51149130.51316373, "gbp": 45779042.79801142, "hkd": 445638601.93055964, "huf": 16687808410.925602, "idr": 796865820363.1516, "ils": 200926458.49601617, "inr": 3941937431.5560064, "jpy": 6195954639.431314, "krw": 67503239769.22402, "kwd": 17365070.030718543, "lkr": 10045104150.354603, "ltc": 610256.6919500793, "mmk": 86206169860.8857, "mxn": 1084885485.3847466, "myr": 234637427.85996887, "ngn": 20496300388.54715, "nok": 494616663.96306705, "nzd": 85605663.49375321, "php": 2918747463.7280197, "pkr": 9180575160.127438, "pln": 217776526.90946174, "rub": 3603625896.436118, "sar": 213838101.50044796, "sek": 538728237.2271038, "sgd": 77974654.25368258, "thb": 1765703541.1218529, "try": 325130561.03608143, "twd": 1770030398.504569, "uah": 1450372093.112145, "usd": 57013352.95840654, "vef": 14167113652888.383, "vnd": 1322641259097.8987, "xag": 3471285.931415533, "xau": 40284.49493335092, "xdr": 41349447.35326102, "xlm": 666998993.3591008, "xrp": 182057647.59070477, "zar": 802934272.2784805, "bits": 5755540185.990026, "link": 23922959.702374183, "sats": 575554018599.0027}, "total_volume": {"aed": 49446061.013062455, "ars": 583356693.187095, "aud": 19368897.119048763, "bch": 44545.515732189444, "bdt": 1137404947.6696556, "bhd": 5074749.313216623, "bmd": 13461373.401708886, "bnb": 466100.0094245751, "brl": 50877260.77175867, "btc": 1361.2955955791276, "cad": 17716042.385920037, "chf": 13337528.76641316, "clp": 9379884986.310755, "cny": 92513288.70324427, "czk": 308333255.8369582, "dkk": 90175398.13907598, "eos": 2949101.7970065437, "eth": 61391.65966705866, "eur": 12076776.917729314, "gbp": 10808850.157022351, "hkd": 105219344.4433833, "huf": 3940143994.680193, "idr": 188147298875.6358, "ils": 47440572.1423024, "inr": 930727433.8181927, "jpy": 1462921485.1174126, "krw": 15938131493.889275, "kwd": 4100051.64931909, "lkr": 2371740843.335914, "ltc": 144440.33561372734, "mmk": 20354064123.80489, "mxn": 256151372.60059914, "myr": 55400039.93001173, "ngn": 4839363737.914345, "nok": 116783512.26197556, "nzd": 20212279.085412722, "php": 689142936.4485443, "pkr": 2167617652.010175, "pln": 51419027.205683865, "rub": 850848990.1897932, "sar": 50489128.9924672, "sek": 127198657.63111815, "sgd": 18410528.10108756, "thb": 416898734.2509238, "try": 76766295.25028585, "twd": 417920344.80112636, "uah": 342446099.0926836, "usd": 13461373.401708886, "vef": 3344984937916.3433, "vnd": 312287682469.96906, "xag": 819602.3156360118, "xau": 9511.53721817946, "xdr": 9762982.211949987, "xlm": 157840778.73758912, "xrp": 43053836.82677122, "zar": 189580115.80296445, "bits": 1361295595.5791276, "link": 5658238.605531885, "sats": 136129559557.91277}}, "community_data": {"facebook_likes": null, "twitter_followers": 45555, "reddit_average_posts_48h": 0.208, "reddit_average_comments_48h": 0.875, "reddit_subscribers": 6343, "reddit_accounts_active_48h": "1170.12"}, "developer_data": {"forks": 33, "stars": 105, "subscribers": 36, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 559, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 291, "deletions": -213}, "commit_count_4_weeks": 4}, "public_interest_stats": {"alexa_rank": 146197, "bing_matches": null}}, "FUN_20190803": {"id": "funfair", "symbol": "fun", "name": "FUNToken", "localization": {"en": "FUNToken", "de": "FUNToken", "es": "FUNToken", "fr": "FUNToken", "it": "FUNToken", "pl": "FUNToken", "ro": "FUNToken", "hu": "FUNToken", "nl": "FUNToken", "pt": "FUNToken", "sv": "FUNToken", "vi": "FUNToken", "tr": "FUNToken", "ru": "FUNToken", "ja": "\u30d5\u30a1\u30f3\u30d5\u30a7\u30a2", "zh": "FUNToken", "zh-tw": "FUNToken", "ko": "\ud380\ud398\uc5b4", "ar": "FUNToken", "th": "FUNToken", "id": "FUNToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/761/thumb/funfair.png?1592404368", "small": "https://assets.coingecko.com/coins/images/761/small/funfair.png?1592404368"}, "market_data": {"current_price": {"aed": 0.010730969422060643, "ars": 0.12816639297525007, "aud": 0.004248468627428925, "bch": 9.197576695907258e-06, "bdt": 0.24680643046050965, "bhd": 0.001101510553052361, "bmd": 0.002921437691761074, "bnb": 0.00010937329025335344, "brl": 0.011074586001927874, "btc": 3.051882581621182e-07, "cad": 0.0038411033556897583, "chf": 0.002892568044491092, "clp": 2.0426735636500033, "cny": 0.020112637788929126, "czk": 0.06718912296962092, "dkk": 0.019551935017062476, "eos": 0.0006969980167293766, "eth": 1.393762792472542e-05, "eur": 0.0026181281877270565, "gbp": 0.002401512347196046, "hkd": 0.022856598140915715, "huf": 0.8575588200395459, "idr": 40.94803926279999, "ils": 0.010208964013859078, "inr": 0.20111030998198634, "jpy": 0.31718779378872985, "krw": 3.452116848469476, "kwd": 0.0008897267704635277, "lkr": 0.5149224876896425, "ltc": 3.240339844397638e-05, "mmk": 4.406549622114954, "mxn": 0.055712792542072884, "myr": 0.012050898342699823, "ngn": 1.0550590305870053, "nok": 0.025574949170096305, "nzd": 0.004414382916819425, "php": 0.14867745643658153, "pkr": 0.47035146837353387, "pln": 0.011253757775563587, "rub": 0.1855860822317374, "sar": 0.010958020638026622, "sek": 0.027942803633645565, "sgd": 0.004003409669530945, "thb": 0.08996713443662822, "try": 0.01621996229366668, "twd": 0.09067282523969934, "uah": 0.07339216195609627, "usd": 0.002921437691761074, "vef": 725.9411639796979, "vnd": 67.71337428271224, "xag": 0.000176469005555174, "xau": 2.0415883021333926e-06, "xdr": 0.0021243993749440523, "xlm": 0.03508542970840821, "xrp": 0.009209934471944976, "zar": 0.0414992269121046, "bits": 0.3051882581621182, "link": 0.0014010011866055225, "sats": 30.518825816211823}, "market_cap": {"aed": 64504136.63081517, "ars": 770411525.6314597, "aud": 25537655.549742796, "bch": 55286.87302430846, "bdt": 1483559880.3459656, "bhd": 6621208.61777, "bmd": 17560838.039512653, "bnb": 657445.6957971047, "brl": 66569624.84018451, "btc": 1834.494566925113, "cad": 23088972.293513134, "chf": 17387301.838006195, "clp": 12278563982.389227, "cny": 120897589.48302495, "czk": 403875567.7774383, "dkk": 117527190.52061528, "eos": 4189673.22841234, "eth": 83779.44439182962, "eur": 15737636.712574378, "gbp": 14435553.254458617, "hkd": 137391606.61163723, "huf": 5154808398.118546, "idr": 246139730297.0256, "ils": 61366348.52907701, "inr": 1208879310.2210305, "jpy": 1906624088.0449917, "krw": 20750764269.390144, "kwd": 5348170.785771623, "lkr": 3095212482.1015306, "ltc": 194777.6718323394, "mmk": 26487884525.234993, "mxn": 334891046.7334124, "myr": 72438263.74377126, "ngn": 6341987306.631523, "nok": 153731685.43399492, "nzd": 26534970.66368283, "php": 893704062.2063128, "pkr": 2827294924.361543, "pln": 67646631.03714791, "rub": 1115562772.9628658, "sar": 65868947.402408056, "sek": 167964920.27340034, "sgd": 24064599.77247444, "thb": 540794787.8458123, "try": 97498615.7156001, "twd": 545036713.6392853, "uah": 441162196.65248775, "usd": 17560838.039512653, "vef": 4363651240214.56, "vnd": 407026856071.9522, "xag": 1060759.7876510564, "xau": 12272.040447152638, "xdr": 12769819.962220661, "xlm": 210899431.60302445, "xrp": 55361155.93786809, "zar": 249452933.60994074, "bits": 1834494566.925113, "link": 8421454.614804337, "sats": 183449456692.51132}, "total_volume": {"aed": 372123.4324913664, "ars": 4444492.963137052, "aud": 147326.36598708606, "bch": 318.9491718844511, "bdt": 8558635.520393673, "bhd": 38197.65687568199, "bmd": 101308.22099193207, "bnb": 3792.7947225607504, "brl": 384039.2041362159, "btc": 10.583172658182876, "cad": 133199.94765197096, "chf": 100307.09315208984, "clp": 70834858.25634246, "cny": 697456.4474189568, "czk": 2329952.3167161015, "dkk": 678012.6644886375, "eos": 24170.16433685861, "eth": 483.3224045419363, "eur": 90790.19887210772, "gbp": 83278.49821021887, "hkd": 792610.193985629, "huf": 29738015.18997175, "idr": 1419976548.7113192, "ils": 354021.5782563068, "inr": 6974007.278974105, "jpy": 10999286.823646568, "krw": 119710859.33511665, "kwd": 30853.520011313936, "lkr": 17856236.10036043, "ltc": 1123.6695753292352, "mmk": 152808223.2210915, "mxn": 1931981.6112619613, "myr": 417895.2972012889, "ngn": 36586833.16494415, "nok": 886875.8726870852, "nzd": 153079.86247366, "php": 5155765.825734887, "pkr": 16310623.579701098, "pln": 390252.4373296513, "rub": 6435665.523445084, "sar": 379997.0061186383, "sek": 968987.1988832558, "sgd": 138828.3284856203, "thb": 3119837.319557047, "try": 562468.1057418141, "twd": 3144308.9281869764, "uah": 2545058.3401085082, "usd": 101308.22099193207, "vef": 25173840973.91536, "vnd": 2348132053.368281, "xag": 6119.507892784512, "xau": 70.79722407579193, "xdr": 73668.90690802925, "xlm": 1216675.774575107, "xrp": 319377.70893979503, "zar": 1439090.3707658688, "bits": 10583172.658182876, "link": 48583.2500288694, "sats": 1058317265.8182876}}, "community_data": {"facebook_likes": null, "twitter_followers": 36101, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.783, "reddit_subscribers": 17499, "reddit_accounts_active_48h": "1431.83333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 375652, "bing_matches": null}}, "LOOM_20200519": {"id": "loom-network", "symbol": "loomold", "name": "Loom Network (OLD)", "localization": {"en": "Loom Network (OLD)", "de": "Loom Network (OLD)", "es": "Loom Network (OLD)", "fr": "Loom Network (OLD)", "it": "Loom Network (OLD)", "pl": "Loom Network (OLD)", "ro": "Loom Network (OLD)", "hu": "Loom Network (OLD)", "nl": "Loom Network (OLD)", "pt": "Loom Network (OLD)", "sv": "Loom Network (OLD)", "vi": "Loom Network (OLD)", "tr": "Loom Network (OLD)", "ru": "Loom Network (OLD)", "ja": "\u30eb\u30fc\u30e0\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "Loom Network (OLD)", "zh-tw": "Loom Network (OLD)", "ko": "\ub8f8\ub124\ud2b8\uc6cc\ud06c", "ar": "Loom Network (OLD)", "th": "Loom Network (OLD)", "id": "Loom Network (OLD)"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3387/thumb/1_K76UVoLq-FOL7l-_Fag-Qw_2x.png?1547038040", "small": "https://assets.coingecko.com/coins/images/3387/small/1_K76UVoLq-FOL7l-_Fag-Qw_2x.png?1547038040"}, "market_data": {"current_price": {"aed": 0.05113313421614891, "ars": 0.941617091203247, "aud": 0.021702019241213046, "bch": 5.9316019700790233e-05, "bdt": 1.1821944712701715, "bhd": 0.005255482162014927, "bmd": 0.013921733294167788, "bnb": 0.0008899006563201433, "brl": 0.08153501165368689, "btc": 1.5036028463006845e-06, "cad": 0.01964057250541246, "chf": 0.013528583545940488, "clp": 11.523032736376772, "cny": 0.09887493420183838, "czk": 0.3565884922501544, "dkk": 0.095913781530169, "eos": 0.005393472201278048, "eth": 7.165851797511256e-05, "eur": 0.012864767459007984, "gbp": 0.011502052517241663, "hkd": 0.10790735476309447, "huf": 4.565423607822913, "idr": 207.13311664394598, "ils": 0.049257876741424414, "inr": 1.0563393571615687, "jpy": 1.4903701121836945, "krw": 17.168142281034832, "kwd": 0.004303597569759496, "lkr": 2.6151916268858333, "ltc": 0.0003262761910652773, "mmk": 19.554550352057294, "mxn": 0.33316606697364853, "myr": 0.06058322069796328, "ngn": 5.387850002175876, "nok": 0.14240471377937758, "nzd": 0.023460612590932357, "php": 0.704912041252094, "pkr": 2.227477327066848, "pln": 0.05878312666129409, "rub": 1.0247161399838671, "sar": 0.05230194725659402, "sek": 0.13728081984045906, "sgd": 0.019872230147427467, "thb": 0.44632902919435724, "try": 0.09608849928301075, "twd": 0.4172204250929147, "uah": 0.3706827993502369, "usd": 0.013921733294167788, "vef": 3459.3786821757853, "vnd": 324.8351437587451, "xag": 0.0008374255305867653, "xau": 7.990378824187597e-06, "xdr": 0.010242622914784763, "xlm": 0.2078520667070076, "xrp": 0.07000253995635342, "zar": 0.25869907754821064, "bits": 1.5036028463006845, "link": 0.0038210595861106205, "sats": 150.36028463006843}, "market_cap": {"aed": 42508663.3616927, "ars": 782797388.8002714, "aud": 18041605.396102514, "bch": 49355.108682840015, "bdt": 982797310.9343845, "bhd": 4369055.905787175, "bmd": 11573596.711506637, "bnb": 738689.7197829045, "brl": 67782748.22597638, "btc": 1246.6570669652308, "cad": 16330923.639771389, "chf": 11246758.340373699, "clp": 9579477710.593914, "cny": 82197998.5644625, "czk": 296443791.449189, "dkk": 79736294.54392499, "eos": 4486294.797232933, "eth": 59573.5302999578, "eur": 10694906.101975624, "gbp": 9562036.16146652, "hkd": 89706948.11088796, "huf": 3795387437.5879335, "idr": 172196601312.48083, "ils": 40949699.88465276, "inr": 878169797.6789886, "jpy": 1238993900.0284593, "krw": 14272443728.66294, "kwd": 3577722.8042346193, "lkr": 2174095177.1835375, "ltc": 271360.0330370938, "mmk": 16256343579.313698, "mxn": 276971955.6922679, "myr": 50364832.3830601, "ngn": 4479097663.320184, "nok": 118385742.08216585, "nzd": 19503582.132700015, "php": 586016662.5914643, "pkr": 1851775473.841064, "pln": 48868354.75466559, "rub": 851880372.748802, "sar": 43480336.24720401, "sek": 114126079.81249589, "sgd": 16520441.28592235, "thb": 370920638.5715205, "try": 79881543.18265447, "twd": 346849119.84714293, "uah": 308160854.4655313, "usd": 11573596.711506637, "vef": 2875895759090.4736, "vnd": 270046184059.7803, "xag": 696179.5030932645, "xau": 6642.665832569238, "xdr": 8515030.73496006, "xlm": 172714351.48483747, "xrp": 58311775.91121218, "zar": 215065087.7959333, "bits": 1246657066.9652307, "link": 3168091.193788183, "sats": 124665706696.52309}, "total_volume": {"aed": 47917460.74653445, "ars": 882400437.5571356, "aud": 20337217.169506844, "bch": 55585.73886041257, "bdt": 1107848326.5351639, "bhd": 4924974.071370915, "bmd": 13046219.81173852, "bnb": 833936.3589034319, "brl": 76407417.2310344, "btc": 1409.0438904336906, "cad": 18405411.21710349, "chf": 12677794.564255023, "clp": 10798369340.950422, "cny": 92656862.34692924, "czk": 334163265.0139077, "dkk": 89881931.39297256, "eos": 5054286.158164825, "eth": 67152.03898342022, "eur": 12055724.711191712, "gbp": 10778708.531139499, "hkd": 101121249.76078524, "huf": 4278312093.9624715, "idr": 194106876846.97037, "ils": 46160134.93789319, "inr": 989908020.6552832, "jpy": 1396643339.8447158, "krw": 16088467809.63788, "kwd": 4032951.837963102, "lkr": 2450726794.8067794, "ltc": 305757.2514880489, "mmk": 18324798846.672523, "mxn": 312213835.1387261, "myr": 56773247.80096235, "ngn": 5049017529.340925, "nok": 133449130.14328273, "nzd": 21985215.65612569, "php": 660581354.6197412, "pkr": 2087395169.8781655, "pln": 55086358.53308475, "rub": 960273532.3529198, "sar": 49012769.177048735, "sek": 128647468.94157231, "sgd": 18622500.31477087, "thb": 418260176.38686025, "try": 90045661.45160982, "twd": 390982161.537992, "uah": 347371205.7664327, "usd": 13046219.81173852, "vef": 3241824401176.7295, "vnd": 304406829128.78644, "xag": 784761.3021414219, "xau": 7487.877860947319, "xdr": 9598482.255870562, "xlm": 194780613.39673564, "xrp": 65600202.52888982, "zar": 242429944.56745186, "bits": 1409043890.4336905, "link": 3580759.8250020724, "sats": 140904389043.36908}}, "community_data": {"facebook_likes": null, "twitter_followers": 21552, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 37, "stars": 183, "subscribers": 31, "total_issues": 69, "closed_issues": 40, "pull_requests_merged": 225, "pull_request_contributors": 19, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 710421, "bing_matches": null}}, "NWC_20201031": {"id": "newscrypto-coin", "symbol": "nwc", "name": "Newscrypto Coin", "localization": {"en": "Newscrypto Coin", "de": "Newscrypto Coin", "es": "Newscrypto Coin", "fr": "Newscrypto Coin", "it": "Newscrypto Coin", "pl": "Newscrypto Coin", "ro": "Newscrypto Coin", "hu": "Newscrypto Coin", "nl": "Newscrypto Coin", "pt": "Newscrypto Coin", "sv": "Newscrypto Coin", "vi": "Newscrypto Coin", "tr": "Newscrypto Coin", "ru": "Newscrypto Coin", "ja": "Newscrypto Coin", "zh": "Newscrypto Coin", "zh-tw": "Newscrypto Coin", "ko": "Newscrypto Coin", "ar": "Newscrypto Coin", "th": "Newscrypto Coin", "id": "Newscrypto Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9805/thumb/Tu1_NI3s_%281%29.png?1614745476", "small": "https://assets.coingecko.com/coins/images/9805/small/Tu1_NI3s_%281%29.png?1614745476"}, "market_data": {"current_price": {"aed": 0.6649227074213082, "ars": 14.175441799695925, "aud": 0.2541158925944766, "bch": 0.0006842214205524799, "bdt": 15.324164564370708, "bhd": 0.06824888893684286, "bmd": 0.18102001182111216, "bnb": 0.005734820020503663, "brl": 1.0330269014595386, "btc": 1.325861187401275e-05, "cad": 0.23875453439133737, "chf": 0.1645406740249654, "clp": 139.92854570918487, "cny": 1.2138296892664662, "czk": 4.1985055651541225, "dkk": 1.1432698988587149, "dot": 0.038677587193013285, "eos": 0.06781084202757433, "eth": 0.00044914724530426383, "eur": 0.1536410970731925, "gbp": 0.13892398909212397, "hkd": 1.4029177630144385, "huf": 56.14697706655432, "idr": 2653.5034751711846, "ils": 0.6119272887605594, "inr": 13.3616663365541, "jpy": 18.92481256144644, "krw": 204.46749702421764, "kwd": 0.05531736235237814, "lkr": 33.35904135385843, "ltc": 0.0031269651613229188, "mmk": 232.79853648583406, "mxn": 3.8077016426535435, "myr": 0.7534957992053787, "ngn": 68.92644865128949, "nok": 1.665492720761319, "nzd": 0.2701146222592384, "php": 8.758071654666512, "pkr": 29.102297487441206, "pln": 0.7047710046635128, "rub": 13.993806319834539, "sar": 0.6789713084987216, "sek": 1.582033082271169, "sgd": 0.24647684809562592, "thb": 5.64901493743644, "try": 1.4837803073949891, "twd": 5.175180936933763, "uah": 5.133694227564554, "usd": 0.18102001182111216, "vef": 44981.235935866076, "vnd": 4211.147147460156, "xag": 0.007442496590415789, "xau": 9.500654300419234e-05, "xdr": 0.12797010613680498, "xlm": 2.214594764840335, "xrp": 0.7172040201809121, "yfi": 1.3492133330364804e-05, "zar": 2.932243610483688, "bits": 13.25861187401275, "link": 0.015125713782361693, "sats": 1325.861187401275}, "market_cap": {"aed": 67546264.3950559, "ars": 1440078559.9908774, "aud": 25827711.38331734, "bch": 69367.48863248964, "bdt": 1556707358.2320561, "bhd": 6933072.739649784, "bmd": 18388942.718898002, "bnb": 580590.6503382483, "brl": 104942018.30820672, "btc": 1345.413872512973, "cad": 24259612.681906104, "chf": 16720127.778215228, "clp": 14214660500.230814, "cny": 123307055.40157011, "czk": 426562787.5674597, "dkk": 116161112.26100637, "dot": 3918109.455653805, "eos": 6879236.990359265, "eth": 45540.00268762738, "eur": 15610961.920239406, "gbp": 14112943.479529824, "hkd": 142515409.40802148, "huf": 5705537257.39246, "idr": 269586260167.0283, "ils": 62162717.52467132, "inr": 1357320042.731611, "jpy": 1922159404.5209694, "krw": 20770862469.27681, "kwd": 5619421.838639869, "lkr": 3388782789.4943705, "ltc": 317303.4465110324, "mmk": 23648871245.85857, "mxn": 387147927.7437741, "myr": 76543974.06741261, "ngn": 7001902736.136037, "nok": 169224760.2610543, "nzd": 27450278.13306211, "php": 889916608.6667596, "pkr": 2956360880.219934, "pln": 71598911.53616019, "rub": 1421560894.672947, "sar": 68973393.46158418, "sek": 160737325.3602046, "sgd": 25040609.46812043, "thb": 574286681.1111822, "try": 150748874.62098128, "twd": 525721465.00162977, "uah": 521507031.9424855, "usd": 18388942.718898002, "vef": 4569425019523.75, "vnd": 427841188906.45026, "xag": 726692.7672499917, "xau": 9652.907701431095, "xdr": 12999860.776754986, "xlm": 224625348.33487818, "xrp": 72716072.92657547, "yfi": 1367.8744765026006, "zar": 297967072.2399349, "bits": 1345413872.512973, "link": 1531904.3120886784, "sats": 134541387251.2973}, "total_volume": {"aed": 2185590.414959546, "ars": 46594452.82803628, "aud": 835274.9168355133, "bch": 2249.024979563485, "bdt": 50370286.37364603, "bhd": 224333.01769838497, "bmd": 595009.9136882145, "bnb": 18850.262637201744, "brl": 3395543.0744445263, "btc": 43.58084737381382, "cad": 784782.3755599327, "chf": 540842.5911856942, "clp": 459942914.97018385, "cny": 3989838.9762363173, "czk": 13800421.339109017, "dkk": 3757910.0619797884, "dot": 127132.61691820959, "eos": 222893.1644409847, "eth": 1476.3398862546123, "eur": 505015.85426269914, "gbp": 456640.95326993265, "hkd": 4611368.4817775935, "huf": 184554224.92867336, "idr": 8722023923.483376, "ils": 2011395.3126281844, "inr": 43919585.76105086, "jpy": 62205559.34931494, "krw": 672081426.426224, "kwd": 181827.2944942402, "lkr": 109650640.92635265, "ltc": 10278.284991956933, "mmk": 765205104.7155199, "mxn": 12515855.03145747, "myr": 2476728.7657271908, "ngn": 226560145.75541937, "nok": 5474448.211879768, "nzd": 887862.4880171918, "php": 28787642.906951517, "pkr": 95658791.2127822, "pln": 2316571.137279559, "rub": 45997419.88064125, "sar": 2231767.944341063, "sek": 5200117.701153981, "sgd": 810165.4984778715, "thb": 18568222.687274598, "try": 4877162.385271689, "twd": 17010737.827422448, "uah": 16874371.670373604, "usd": 595009.9136882145, "vef": 147852610562.4052, "vnd": 13841974020.059166, "xag": 24463.368493558206, "xau": 312.28500310012197, "xdr": 420635.71337283193, "xlm": 7279337.939631805, "xrp": 2357438.262496646, "yfi": 44.348428704687294, "zar": 9638238.336382838, "bits": 43580847.373813815, "link": 49717.98179424278, "sats": 4358084737.381382}}, "community_data": {"facebook_likes": null, "twitter_followers": 11259, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 499419, "bing_matches": null}}, "GAS_20210215": {"id": "gas", "symbol": "gas", "name": "Gas", "localization": {"en": "Gas", "de": "Gas", "es": "Gas", "fr": "Gas", "it": "Gas", "pl": "Gas", "ro": "Gas", "hu": "Gas", "nl": "Gas", "pt": "Gas", "sv": "Gas", "vi": "Gas", "tr": "Gas", "ru": "Gas", "ja": "\u30ac\u30b9", "zh": "Gas", "zh-tw": "Gas", "ko": "\uac00\uc2a4", "ar": "Gas", "th": "Gas", "id": "Gas"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/858/thumb/GAS_512_512.png?1594358948", "small": "https://assets.coingecko.com/coins/images/858/small/GAS_512_512.png?1594358948"}, "market_data": {"current_price": {"aed": 12.114440123556586, "ars": 291.67793558075965, "aud": 4.255525250535347, "bch": 0.00625236659562667, "bdt": 279.63040983041077, "bhd": 1.2434121241158755, "bmd": 3.298061669268375, "bnb": 0.02665673782591365, "brl": 17.700696978963364, "btc": 6.91076570676378e-05, "cad": 4.189478267546579, "chf": 2.9357300181592128, "clp": 2395.3781601582623, "cny": 21.298552453968217, "czk": 70.06289416484614, "dkk": 20.221685848027096, "dot": 0.13114962423073118, "eos": 0.724002597482817, "eth": 0.0018532444155180132, "eur": 2.718839588603114, "gbp": 2.387925272955407, "hkd": 25.56904760642039, "huf": 973.4196036228878, "idr": 46122.212460916075, "ils": 10.715204479752815, "inr": 239.80123945708635, "jpy": 345.4719598558619, "krw": 3638.4208387040085, "kwd": 0.9972645894917003, "lkr": 639.7581411232694, "ltc": 0.017799496672744157, "mmk": 4649.789473492178, "mxn": 65.85625938049635, "myr": 13.332414298017374, "ngn": 1291.3712935411288, "nok": 27.961181206065742, "nzd": 4.561351211064931, "php": 158.4920407496377, "pkr": 525.8759331648421, "pln": 12.239891793332205, "rub": 242.98436367718023, "sar": 12.369792548299667, "sek": 27.441093371130517, "sgd": 4.368942293279815, "thb": 98.47366713766674, "try": 23.181415860953518, "twd": 92.27284287468498, "uah": 91.70539817224106, "usd": 3.298061669268375, "vef": 0.33023491494384244, "vnd": 75876.78955575242, "xag": 0.12220413441113497, "xau": 0.0018052929965241228, "xdr": 2.288178695830053, "xlm": 7.266711256408089, "xrp": 6.283695538810819, "yfi": 7.531591241626812e-05, "zar": 48.239864155861156, "bits": 69.1076570676378, "link": 0.1191336390032212, "sats": 6910.76570676378}, "market_cap": {"aed": 169140793.33370712, "ars": 4072484090.042393, "aud": 59431171.66528076, "bch": 87447.73784152411, "bdt": 3904176245.5844946, "bhd": 17360415.41901363, "bmd": 46047259.42875622, "bnb": 373555.63642337976, "brl": 247121827.17630574, "btc": 965.6840447189799, "cad": 58491531.2893776, "chf": 40988599.60243191, "clp": 33444149250.48393, "cny": 297368596.664965, "czk": 978200350.9488351, "dkk": 282347013.6468566, "dot": 1835767.3788196957, "eos": 10144147.58404467, "eth": 25907.30270286911, "eur": 37960854.15321293, "gbp": 33338584.20449492, "hkd": 356992890.5362893, "huf": 13592276085.439634, "idr": 643978207787.5967, "ils": 149604783.0484635, "inr": 3348084721.250005, "jpy": 4823381354.273064, "krw": 50799838747.16793, "kwd": 13923724.258807825, "lkr": 8932249317.97502, "ltc": 248316.41509344475, "mmk": 64919969256.51516, "mxn": 919694084.5364444, "myr": 186146046.240747, "ngn": 18030017305.809864, "nok": 390397414.41628635, "nzd": 63689161.74465781, "php": 2213016875.353824, "pkr": 7342235515.91518, "pln": 170911310.45874318, "rub": 3392527233.68767, "sar": 172692971.02055994, "sek": 383178309.2720835, "sgd": 61006908.88293277, "thb": 1375526864.86945, "try": 323680000.7025557, "twd": 1288291805.3939734, "uah": 1280383050.4453063, "usd": 46047259.42875622, "vef": 4610712.086601361, "vnd": 1059629183011.0917, "xag": 1707355.0202224392, "xau": 25216.86068096972, "xdr": 31947358.355373867, "xlm": 101417538.49887232, "xrp": 88117346.2788909, "yfi": 1050.961871074193, "zar": 673478927.8982908, "bits": 965684044.7189801, "link": 1667079.9979572434, "sats": 96568404471.898}, "total_volume": {"aed": 84039509.21621516, "ars": 2023409278.9596813, "aud": 29521154.08262112, "bch": 43373.51250055638, "bdt": 1939833963.7983735, "bhd": 8625718.03553656, "bmd": 22879099.753951658, "bnb": 184921.3947443584, "brl": 122792128.3794585, "btc": 479.40916161313476, "cad": 29062977.23094849, "chf": 20365556.09678302, "clp": 16617062193.0352, "cny": 147750938.30104426, "czk": 486035770.5208309, "dkk": 140280569.044883, "dot": 909802.6769565556, "eos": 5022503.9162485, "eth": 12856.207100729072, "eur": 18860957.859663878, "gbp": 16565360.506751414, "hkd": 177375940.6174487, "huf": 6752743413.279052, "idr": 319956024351.82446, "ils": 74332822.35460384, "inr": 1663533623.3348873, "jpy": 2396585699.2264333, "krw": 25240217334.696423, "kwd": 6918159.3045001365, "lkr": 4438088731.193731, "ltc": 123477.51521462102, "mmk": 32256218308.525852, "mxn": 456853776.21296453, "myr": 92488760.75534937, "ngn": 8958417278.73793, "nok": 193970494.85548586, "nzd": 31642710.123705283, "php": 1099480717.5096698, "pkr": 3648072455.767589, "pln": 84909784.4126559, "rub": 1685615386.4624102, "sar": 85810923.51466472, "sek": 190362575.2197868, "sgd": 30307943.444059756, "thb": 683125144.2547767, "try": 160812616.35057515, "twd": 640109187.8851813, "uah": 636172747.2561176, "usd": 22879099.753951658, "vef": 2290884.2583631794, "vnd": 526367548985.45013, "xag": 847746.60449509, "xau": 12523.561623318055, "xdr": 15873405.013792897, "xlm": 50410158.5691105, "xrp": 43590845.615632735, "yfi": 522.4766684286839, "zar": 334646460.50231683, "bits": 479409161.61313474, "link": 826446.1626669983, "sats": 47940916161.31348}}, "community_data": {"facebook_likes": null, "twitter_followers": 339208, "reddit_average_posts_48h": 3.333, "reddit_average_comments_48h": 101.917, "reddit_subscribers": 103427, "reddit_accounts_active_48h": "450.461538461538"}, "developer_data": {"forks": 922, "stars": 3123, "subscribers": 380, "total_issues": 944, "closed_issues": 862, "pull_requests_merged": 942, "pull_request_contributors": 54, "code_additions_deletions_4_weeks": {"additions": 6717, "deletions": -7052}, "commit_count_4_weeks": 49}, "public_interest_stats": {"alexa_rank": 149199, "bing_matches": null}}, "BTCST_20210223": {"id": "btc-standard-hashrate-token", "symbol": "btcst", "name": "BTC Standard Hashrate Token", "localization": {"en": "BTC Standard Hashrate Token", "de": "BTC Standard Hashrate Token", "es": "BTC Standard Hashrate Token", "fr": "BTC Standard Hashrate Token", "it": "BTC Standard Hashrate Token", "pl": "BTC Standard Hashrate Token", "ro": "BTC Standard Hashrate Token", "hu": "BTC Standard Hashrate Token", "nl": "BTC Standard Hashrate Token", "pt": "BTC Standard Hashrate Token", "sv": "BTC Standard Hashrate Token", "vi": "BTC Standard Hashrate Token", "tr": "BTC Standard Hashrate Token", "ru": "BTC Standard Hashrate Token", "ja": "BTC Standard Hashrate Token", "zh": "BTC Standard Hashrate Token", "zh-tw": "BTC Standard Hashrate Token", "ko": "BTC Standard Hashrate Token", "ar": "BTC Standard Hashrate Token", "th": "BTC Standard Hashrate Token", "id": "BTC Standard Hashrate Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14449/thumb/4a3IskOf_400x400.png?1616137396", "small": "https://assets.coingecko.com/coins/images/14449/small/4a3IskOf_400x400.png?1616137396"}}, "ENJ_20210304": {"id": "enjincoin", "symbol": "enj", "name": "Enjin Coin", "localization": {"en": "Enjin Coin", "de": "Enjin Coin", "es": "Enjin Coin", "fr": "Enjin Coin", "it": "Enjin Coin", "pl": "Enjin Coin", "ro": "Enjin Coin", "hu": "Enjin Coin", "nl": "Enjin Coin", "pt": "Enjin Coin", "sv": "Enjin Coin", "vi": "Enjin Coin", "tr": "Enjin Coin", "ru": "Enjin Coin", "ja": "\u30a8\u30f3\u30b8\u30f3", "zh": "\u6069\u91d1\u5e01", "zh-tw": "\u6069\u91d1\u5e63", "ko": "\uc5d4\uc9c4\ucf54\uc778", "ar": "Enjin Coin", "th": "Enjin Coin", "id": "Enjin Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1102/thumb/enjin-coin-logo.png?1547035078", "small": "https://assets.coingecko.com/coins/images/1102/small/enjin-coin-logo.png?1547035078"}, "market_data": {"current_price": {"aed": 2.0871712023266076, "ars": 50.99072120901722, "aud": 0.7327502948098249, "bch": 0.0012393396442221748, "bdt": 48.17006043079628, "bhd": 0.21434150935423754, "bmd": 0.5682406491859477, "bnb": 0.0027054212243301447, "brl": 3.18297044790133, "btc": 1.2586935764766706e-05, "cad": 0.7213843453448069, "chf": 0.5157494192173956, "clp": 411.3496605175189, "cny": 3.6803128477696423, "czk": 12.312496894639478, "dkk": 3.495759649727038, "dot": 0.016984974822265, "eos": 0.16470437919227154, "eth": 0.0004025955383686467, "eur": 0.47009867018374435, "gbp": 0.40667108068096014, "hkd": 4.407689290760119, "huf": 170.36001552802497, "idr": 8115.644769172378, "ils": 1.8827108296210564, "inr": 41.87580991177614, "jpy": 60.51990210090018, "krw": 639.2050991074516, "kwd": 0.17205190376052082, "lkr": 110.49087398338587, "ltc": 0.003456468958835764, "mmk": 800.9865452303386, "mxn": 11.813689570377566, "myr": 2.3039317121244225, "ngn": 226.96073516417977, "nok": 4.904017381069639, "nzd": 0.7815922833293037, "php": 27.668241248673894, "pkr": 89.64247971515923, "pln": 2.1250592158517296, "rub": 42.348519647743, "sar": 2.1311581427394364, "sek": 4.78276789606829, "sgd": 0.7553435430214579, "thb": 17.249711462675187, "try": 4.216774638649873, "twd": 15.833172760352065, "uah": 15.881449917666266, "usd": 0.5682406491859477, "vef": 0.056897936202989, "vnd": 13098.79451057516, "xag": 0.021236300906190247, "xau": 0.0003269713519480869, "xdr": 0.39372314924860863, "xlm": 1.4048188340408687, "xrp": 1.3730365775178346, "yfi": 1.856609014847996e-05, "zar": 8.5478821371192, "bits": 12.586935764766706, "link": 0.02310349369146318, "sats": 1258.6935764766706}, "market_cap": {"aed": 1971808599.9004679, "ars": 48166762552.174835, "aud": 692071325.0346738, "bch": 1161038.099133353, "bdt": 45507593871.212456, "bhd": 202494376.59412292, "bmd": 536832722.5044502, "bnb": 2536031.0247515636, "brl": 3007040579.807109, "btc": 11833.530940130993, "cad": 681697032.6722752, "chf": 487277157.05734104, "clp": 388613448322.0313, "cny": 3476893757.1901245, "czk": 11629729904.08012, "dkk": 3301835827.3777494, "dot": 15814526.94866598, "eos": 154368478.3793085, "eth": 377684.4593330061, "eur": 444002534.46353585, "gbp": 384092539.4647611, "hkd": 4164068630.962828, "huf": 160904502038.51276, "idr": 7665429726955.079, "ils": 1778649207.517977, "inr": 39561240601.534836, "jpy": 57176621718.23282, "krw": 603874809174.889, "kwd": 162542211.71989775, "lkr": 104383797212.2743, "ltc": 3238448.2484593517, "mmk": 756714234332.6561, "mxn": 11162360114.871408, "myr": 2176588273.394295, "ngn": 214416109678.78497, "nok": 4632717155.716544, "nzd": 738129425.294666, "php": 26132797366.933174, "pkr": 84687740144.03767, "pln": 2007137024.5357585, "rub": 40007822617.229996, "sar": 2013364284.116815, "sek": 4519299969.600306, "sgd": 713840965.597675, "thb": 16337055534.737587, "try": 3985456868.52749, "twd": 14958038026.670057, "uah": 15003646797.94132, "usd": 536832722.5044502, "vef": 53753060.5043706, "vnd": 12373409451780.256, "xag": 20048662.221195687, "xau": 308882.8118746109, "xdr": 371961193.60160565, "xlm": 1312120124.624998, "xrp": 1287856795.1830122, "yfi": 17414.929754020002, "zar": 8077901814.486499, "bits": 11833530940.130995, "link": 21647650.392033733, "sats": 1183353094013.0994}, "total_volume": {"aed": 341808416.4706117, "ars": 8350564463.384759, "aud": 119999843.64393663, "bch": 202962.13400636212, "bdt": 7888635133.902955, "bhd": 35101927.34291481, "bmd": 93058698.9011587, "bnb": 443056.9679877964, "brl": 521263462.8424979, "btc": 2061.316569132585, "cad": 118138483.54851553, "chf": 84462401.59016414, "clp": 67365233824.84598, "cny": 602711413.9991564, "czk": 2016372716.1742823, "dkk": 572487809.7700393, "dot": 2781567.387150605, "eos": 26973035.549134556, "eth": 65931.60316438036, "eur": 76986344.89654179, "gbp": 66599039.866495624, "hkd": 721831201.5275851, "huf": 27899238487.303993, "idr": 1329069548342.0767, "ils": 308324686.84288776, "inr": 6857848679.7887125, "jpy": 9911123667.769009, "krw": 104680288077.13927, "kwd": 28176312.853292763, "lkr": 18094687502.690624, "ltc": 566053.3166050263, "mmk": 131174645536.62685, "mxn": 1934684859.6918566, "myr": 377306494.69474757, "ngn": 37168531934.99296, "nok": 803113042.9067057, "nzd": 127998517.99058777, "php": 4531126970.894352, "pkr": 14680422001.693932, "pln": 348013198.2785453, "rub": 6935262629.406723, "sar": 349011997.2938505, "sek": 783256456.9112735, "sgd": 123699857.51224665, "thb": 2824922341.329489, "try": 690565805.1642689, "twd": 2592940963.7737465, "uah": 2600847137.773692, "usd": 93058698.9011587, "vef": 9317967.520973029, "vnd": 2145141809326.774, "xag": 3477791.556508085, "xau": 53546.90593471585, "xdr": 64478604.35333375, "xlm": 230062057.46626642, "xrp": 224857193.21656263, "yfi": 3040.5008782358186, "zar": 1399855485.8409448, "bits": 2061316569.132585, "link": 3783574.9098180844, "sats": 206131656913.2585}}, "community_data": {"facebook_likes": null, "twitter_followers": 86401, "reddit_average_posts_48h": 1.25, "reddit_average_comments_48h": 12.833, "reddit_subscribers": 18403, "reddit_accounts_active_48h": "386.153846153846"}, "developer_data": {"forks": 97, "stars": 164, "subscribers": 26, "total_issues": 14, "closed_issues": 7, "pull_requests_merged": 15, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 49755, "bing_matches": null}}, "FLM_20210313": {"id": "flamingo-finance", "symbol": "flm", "name": "Flamingo Finance", "localization": {"en": "Flamingo Finance", "de": "Flamingo Finance", "es": "Flamingo Finance", "fr": "Flamingo Finance", "it": "Flamingo Finance", "pl": "Flamingo Finance", "ro": "Flamingo Finance", "hu": "Flamingo Finance", "nl": "Flamingo Finance", "pt": "Flamingo Finance", "sv": "Flamingo Finance", "vi": "Flamingo Finance", "tr": "Flamingo Finance", "ru": "Flamingo Finance", "ja": "Flamingo Finance", "zh": "Flamingo Finance", "zh-tw": "Flamingo Finance", "ko": "Flamingo Finance", "ar": "Flamingo Finance", "th": "Flamingo Finance", "id": "Flamingo Finance"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12618/thumb/flamingo_finance_logo.jpg?1601274535", "small": "https://assets.coingecko.com/coins/images/12618/small/flamingo_finance_logo.jpg?1601274535"}, "market_data": {"current_price": {"aed": 1.6443909283130975, "ars": 40.549645273191366, "aud": 0.5803403517147677, "bch": 0.0008205031725720868, "bdt": 37.9672477744408, "bhd": 0.16884016198524832, "bmd": 0.44767258203013705, "bnb": 0.0015189876435509292, "brl": 2.597843993520881, "btc": 8.177036629476197e-06, "cad": 0.566034974355995, "chf": 0.41553640572910333, "clp": 329.2183008777639, "cny": 2.9127816549790864, "czk": 9.859719567991975, "dkk": 2.7984008625978016, "dot": 0.011647960280862624, "eos": 0.10736624197103936, "eth": 0.0002395950579276997, "eur": 0.3762746249398962, "gbp": 0.3223533577795306, "hkd": 3.474829657319516, "huf": 137.9368759751254, "idr": 6447.924224748907, "ils": 1.4893798200593438, "inr": 32.57984221345429, "jpy": 48.61634706330882, "krw": 508.51576265385245, "kwd": 0.1355722693968427, "lkr": 88.02917840143614, "ltc": 0.0021966300027955565, "mmk": 631.2639777485223, "mxn": 9.488308457983218, "myr": 1.8430680202180703, "ngn": 177.31749592795853, "nok": 3.791744688572546, "nzd": 0.6237601154458706, "php": 21.69782604291739, "pkr": 70.30426790267619, "pln": 1.7199500020533083, "rub": 33.195459164633064, "sar": 1.679468313478072, "sek": 3.8052514180449766, "sgd": 0.6015376484738949, "thb": 13.765227260782568, "try": 3.408896887110704, "twd": 12.654405643504063, "uah": 12.403213871691463, "usd": 0.44767258203013705, "vef": 0.04482545563867762, "vnd": 10329.115395809573, "xag": 0.017262935225406742, "xau": 0.00026096177824282737, "xdr": 0.31384802639354015, "xlm": 1.0349556793756287, "xrp": 0.9217857314907428, "yfi": 1.1456288953682169e-05, "zar": 6.8530144146126215, "bits": 8.177036629476198, "link": 0.014174450632266359, "sats": 817.7036629476197}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 97026630.92296003, "ars": 2392615647.676309, "aud": 34242751.00647372, "bch": 48413.46247144432, "bdt": 2240242313.1525745, "bhd": 9962346.422526779, "bmd": 26414742.16567574, "bnb": 89627.26011785118, "brl": 153284748.78741607, "btc": 482.4827852252952, "cad": 33398667.920569576, "chf": 24518559.89931269, "clp": 19425394547.21971, "cny": 171867519.9009692, "czk": 581768820.9389671, "dkk": 165118526.8628967, "dot": 687283.2510307847, "eos": 6335102.288599923, "eth": 14137.210839738844, "eur": 22201934.18189859, "gbp": 19020331.3175273, "hkd": 205030938.12781096, "huf": 8138910356.087984, "idr": 380457197374.4221, "ils": 87880262.30067323, "inr": 1922360596.5863223, "jpy": 2868588169.708054, "krw": 30004769773.4127, "kwd": 7999387.6879689135, "lkr": 5194126564.520477, "ltc": 129611.2772734563, "mmk": 37247479251.66334, "mxn": 559853856.5159541, "myr": 108749493.49608679, "ngn": 10462548130.957397, "nok": 223730383.1575097, "nzd": 36804716.849122606, "php": 1280271572.3179214, "pkr": 4148275289.440816, "pln": 101484963.93516712, "rub": 1958684829.275453, "sar": 99096358.04535173, "sek": 224527342.3433903, "sgd": 35493489.04801848, "thb": 812211744.7903585, "try": 201140601.31639266, "twd": 746668158.2713714, "uah": 731846687.9537578, "usd": 26414742.16567574, "vef": 2644908.133049112, "vnd": 609465334558.8499, "xag": 1018592.6083165468, "xau": 15397.945650637334, "xdr": 18518477.631121635, "xlm": 61067147.10924293, "xrp": 54389599.467781655, "yfi": 675.973760811248, "zar": 404359382.4726694, "bits": 482482785.2252952, "link": 836357.8066217378, "sats": 48248278522.52952}}, "community_data": {"facebook_likes": null, "twitter_followers": 16341, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 156358, "bing_matches": null}}, "MDA_20210321": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 4.565936221105522, "ars": 113.37625268663938, "aud": 1.5914764325482385, "bch": 0.0022896485055832615, "bdt": 105.37825962288778, "bhd": 0.4686606623715897, "bmd": 1.2431020542522597, "bnb": 0.004587857739375961, "brl": 6.94222648907511, "btc": 2.1090159652070914e-05, "cad": 1.5405055190177324, "chf": 1.1465428590861604, "clp": 898.0167698471778, "cny": 8.085260071062118, "czk": 27.07078481504055, "dkk": 7.71481565889494, "dot": 0.034242907835753046, "eos": 0.30421037709991766, "eth": 0.0006798604632984851, "eur": 1.0375489140713774, "gbp": 0.8895961506763266, "hkd": 9.652973364741275, "huf": 380.4306649219667, "idr": 17830.869400886273, "ils": 4.099651126759606, "inr": 89.87111964891321, "jpy": 135.38997403477626, "krw": 1394.5118844601832, "kwd": 0.37531488601573304, "lkr": 247.07487822672712, "ltc": 0.006015386985507165, "mmk": 1752.2629355566125, "mxn": 25.330566249292847, "myr": 5.123445116600678, "ngn": 503.6235925966662, "nok": 10.444018870760594, "nzd": 1.7152036231100192, "php": 60.388453310987764, "pkr": 193.98607556606495, "pln": 4.769693078818019, "rub": 91.60356882682183, "sar": 4.662563786884595, "sek": 10.503963738020737, "sgd": 1.6654074410207833, "thb": 38.1508020450019, "try": 9.322022304837681, "twd": 35.03944315651581, "uah": 34.405282102151524, "usd": 1.2431020542522597, "vef": 0.12447180869227871, "vnd": 28449.022461138757, "xag": 0.04716547979794615, "xau": 0.0007111662542171758, "xdr": 0.8706214409202206, "xlm": 3.062673567983921, "xrp": 2.6334175496662056, "yfi": 3.515364337599353e-05, "zar": 18.190685290489583, "bits": 21.090159652070916, "link": 0.03996362874792816, "sats": 2109.0159652070915}, "market_cap": {"aed": 89431182.67031485, "ars": 2220477973.6948423, "aud": 31187566.00528195, "bch": 45078.41368949802, "bdt": 2064002195.7057712, "bhd": 9179470.600839071, "bmd": 24348147.128686707, "bnb": 90017.63057235185, "brl": 135977072.92142949, "btc": 414.05391965760873, "cad": 30177775.299413927, "chf": 22450209.06000559, "clp": 17589098442.244907, "cny": 158362783.73969135, "czk": 530166294.83887696, "dkk": 151098611.43643627, "dot": 672966.1272855565, "eos": 5958029.201381175, "eth": 13354.817459052661, "eur": 20319746.186245486, "gbp": 17428135.88509555, "hkd": 189078458.30547208, "huf": 7450411280.642474, "idr": 349246170191.813, "ils": 80298241.37863837, "inr": 1760269992.5934637, "jpy": 2650583934.617413, "krw": 27313751448.96075, "kwd": 7351143.884798845, "lkr": 4839357690.938142, "ltc": 118365.10566777182, "mmk": 34320879462.096924, "mxn": 496261499.96218073, "myr": 100350888.39088227, "ngn": 9864275654.662424, "nok": 204670938.68224174, "nzd": 33611594.488972634, "php": 1182745236.7893486, "pkr": 3799528359.431563, "pln": 93434918.93971454, "rub": 1794373224.8692608, "sar": 91316484.05063586, "sek": 205724799.53441292, "sgd": 32624496.256228533, "thb": 747561161.2920688, "try": 182594059.76216012, "twd": 686296353.4868654, "uah": 673882621.1103367, "usd": 24348147.128686707, "vef": 2437979.971995402, "vnd": 557219724785.8127, "xag": 922806.706769318, "xau": 13925.922750252372, "xdr": 17052517.01934129, "xlm": 60054248.623376556, "xrp": 51651537.900774315, "yfi": 689.946607122526, "zar": 356454706.97887903, "bits": 414053919.65760875, "link": 788726.8527327091, "sats": 41405391965.76087}, "total_volume": {"aed": 5753494.770093623, "ars": 142864386.4691244, "aud": 2005405.0008557776, "bch": 2885.165290161754, "bdt": 132786188.0372597, "bhd": 590555.0448645301, "bmd": 1566421.6102653537, "bnb": 5781.117876202396, "brl": 8747836.558266276, "btc": 26.575518663125287, "cad": 1941177.0155700666, "chf": 1444748.245266381, "clp": 1131582777.0194118, "cny": 10188162.795326881, "czk": 34111650.12242648, "dkk": 9721369.1554678, "dot": 43149.17721257629, "eos": 383332.7337254839, "eth": 856.6859961600989, "eur": 1307405.964899926, "gbp": 1120972.0312677526, "hkd": 12163624.08068083, "huf": 479377226.2727342, "idr": 22468516614.40469, "ils": 5165933.156926307, "inr": 113245781.77250244, "jpy": 170603676.83883032, "krw": 1757211762.3956716, "kwd": 472930.8797280941, "lkr": 311336810.4285091, "ltc": 7579.93451621734, "mmk": 2208010613.23473, "mxn": 31918816.510216054, "myr": 6456006.666708642, "ngn": 634611515.7515502, "nok": 13160413.33952997, "nzd": 2161312.5101470975, "php": 76094941.64477979, "pkr": 244440092.2819082, "pln": 6010246.936232229, "rub": 115428825.24964869, "sar": 5875254.288281148, "sek": 13235949.322420174, "sgd": 2098564.7932830895, "thb": 48073479.21904377, "try": 11746595.655379867, "twd": 44152884.13713202, "uah": 43353783.551185034, "usd": 1566421.6102653537, "vef": 156845.7958358698, "vnd": 35848354864.8445, "xag": 59432.7927955015, "xau": 896.1341390167067, "xdr": 1097062.171808663, "xlm": 3859247.1516461484, "xrp": 3318345.540930217, "yfi": 44.29678679667234, "zar": 22921917.34949599, "bits": 26575518.663125288, "link": 50357.805685576604, "sats": 2657551866.3125286}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 372, "reddit_accounts_active_48h": "3118.16666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1218144, "bing_matches": null}}, "GTO_20210404": {"id": "gifto", "symbol": "gto", "name": "Gifto", "localization": {"en": "Gifto", "de": "Gifto", "es": "Gifto", "fr": "Gifto", "it": "Gifto", "pl": "Gifto", "ro": "Gifto", "hu": "Gifto", "nl": "Gifto", "pt": "Gifto", "sv": "Gifto", "vi": "Gifto", "tr": "Gifto", "ru": "Gifto", "ja": "\u30ae\u30d5\u30c8", "zh": "Gifto", "zh-tw": "Gifto", "ko": "\uae30\ud504\ud1a0", "ar": "Gifto", "th": "Gifto", "id": "Gifto"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1359/thumb/gifto.png?1547742697", "small": "https://assets.coingecko.com/coins/images/1359/small/gifto.png?1547742697"}, "market_data": {"current_price": {"aed": 0.2620945237246947, "ars": 6.56349419017199, "aud": 0.09397357335181772, "bch": 0.000131707965963245, "bdt": 6.049103005492182, "bhd": 0.02690222045774744, "bmd": 0.07135318624760266, "bnb": 0.00023549858474496927, "brl": 0.4019182274954967, "btc": 1.2133228385332182e-06, "cad": 0.08966155760050258, "chf": 0.06735869217508936, "clp": 51.40997204710823, "cny": 0.4675560235246662, "czk": 1.5885930679793714, "dkk": 0.4525859823435471, "dot": 0.0019260952658730391, "eos": 0.014897129879588872, "eth": 3.7206145308118845e-05, "eur": 0.060845216568476974, "gbp": 0.05176502414616586, "hkd": 0.5547531847785488, "huf": 22.038663271273048, "idr": 1039.4589466178265, "ils": 0.23794860549850502, "inr": 5.223320308300647, "jpy": 7.903439595573301, "krw": 80.50066472454533, "kwd": 0.021575419691618865, "lkr": 14.231928645453483, "ltc": 0.00036204851680446187, "mmk": 100.58667042188615, "mxn": 1.4585092168377445, "myr": 0.2958659867756848, "ngn": 28.21711383437803, "nok": 0.6101508709897672, "nzd": 0.10221351065287712, "php": 3.4630921455256933, "pkr": 10.891375821921567, "pln": 0.28181904176504974, "rub": 5.402627797153862, "sar": 0.2676299612074113, "sek": 0.623102615944687, "sgd": 0.09597802705988535, "thb": 2.22923144297627, "try": 0.5893412850461438, "twd": 2.0256741456576974, "uah": 1.986215048777722, "usd": 0.07135318624760266, "vef": 0.007144594538972454, "vnd": 1647.4783821281533, "xag": 0.002918105570821159, "xau": 4.176872816562171e-05, "xdr": 0.05031641175896698, "xlm": 0.1751785657304081, "xrp": 0.12428235397642505, "yfi": 1.974654449404764e-06, "zar": 1.0545886762297685, "bits": 1.2133228385332182, "link": 0.0024557098143978733, "sats": 121.33228385332181}, "market_cap": {"aed": 173688321.66545996, "ars": 4349910815.13081, "aud": 62275008.64732129, "bch": 87195.64406093836, "bdt": 4008700882.697746, "bhd": 17827925.032453094, "bmd": 47285288.485641874, "bnb": 155975.2182150839, "brl": 266372215.62616676, "btc": 803.9076086594887, "cad": 59407345.04182107, "chf": 44632583.801597424, "clp": 34069052765.454735, "cny": 309846309.8598659, "czk": 1052764391.3731782, "dkk": 299910772.32855076, "dot": 1273942.4593849508, "eos": 9880112.175975367, "eth": 24638.94884135171, "eur": 40320401.91814928, "gbp": 34304247.3788326, "hkd": 367623967.43402874, "huf": 14604877587.44035, "idr": 688842625601.1344, "ils": 157686980.0419188, "inr": 3461460105.983791, "jpy": 5238484097.675489, "krw": 53347262469.50123, "kwd": 14297889.105845988, "lkr": 9431405759.12197, "ltc": 239857.7097563441, "mmk": 66658126691.138084, "mxn": 966492382.5311282, "myr": 196068448.70571414, "ngn": 18699296248.11379, "nok": 404295694.63676083, "nzd": 67723597.86894485, "php": 2294772451.194365, "pkr": 7217643315.296368, "pln": 186772160.98943722, "rub": 3579798964.2094, "sar": 177356619.7755987, "sek": 412908426.22269, "sgd": 63600840.851170234, "thb": 1477722291.2342205, "try": 390548111.71831113, "twd": 1342452982.751615, "uah": 1316251684.2635486, "usd": 47285288.485641874, "vef": 4734675.936067328, "vnd": 1091773117215.2921, "xag": 1933520.9802336774, "xau": 27675.133644876507, "xdr": 33344356.022574026, "xlm": 116088186.45156714, "xrp": 82349424.42435059, "yfi": 1307.560963622392, "zar": 699079654.1318337, "bits": 803907608.6594887, "link": 1629131.9091065181, "sats": 80390760865.94887}, "total_volume": {"aed": 863258900.343294, "ars": 21618134925.127464, "aud": 309520101.5273122, "bch": 433805.6066494234, "bdt": 19923888276.542736, "bhd": 88607655.43328209, "bmd": 235015490.67387894, "bnb": 775660.0420727887, "brl": 1323795255.8678267, "btc": 3996.3129502613956, "cad": 295317645.39490837, "chf": 221858853.4749738, "clp": 169328665495.82404, "cny": 1539986005.738727, "czk": 5232337881.26509, "dkk": 1490679285.7643673, "dot": 6343966.510801698, "eos": 49066572.53027311, "eth": 122545.6206724752, "eur": 200405464.40880886, "gbp": 170498098.11212322, "hkd": 1827186686.1167402, "huf": 72588591132.02739, "idr": 3423658665038.9346, "ils": 783729658.2992504, "inr": 17204013580.309555, "jpy": 26031503738.593437, "krw": 265144476578.27026, "kwd": 71062808.99251418, "lkr": 46875603876.19355, "ltc": 1192476.6685161095, "mmk": 331301613111.15326, "mxn": 4803881610.248539, "myr": 974491732.0792402, "ngn": 92938510554.73862, "nok": 2009649657.874564, "nzd": 336659925.4058224, "php": 11406362387.31276, "pkr": 35872848396.99107, "pln": 928225407.5077245, "rub": 17794597402.706905, "sar": 881490932.0787923, "sek": 2052308729.6797235, "sgd": 316122156.6913228, "thb": 7342404017.932828, "try": 1941109270.1434526, "twd": 6671948770.937039, "uah": 6541982619.423979, "usd": 235015490.67387894, "vef": 23532101.081175495, "vnd": 5426288028776.918, "xag": 9611343.91651299, "xau": 137573.36793067545, "xdr": 165726813.62046197, "xlm": 576984417.1753639, "xrp": 409347920.36502206, "yfi": 6503.905554095854, "zar": 3473491349.6814256, "bits": 3996312950.2613955, "link": 8088354.24644778, "sats": 399631295026.1395}}, "community_data": {"facebook_likes": null, "twitter_followers": 748, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 5, "stars": 4, "subscribers": 1, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 454525, "bing_matches": null}}, "SDT_20210508": {"id": "terra-sdt", "symbol": "sdt", "name": "Terra SDT", "localization": {"en": "Terra SDT", "de": "Terra SDT", "es": "Terra SDT", "fr": "Terra SDT", "it": "Terra SDT", "pl": "Terra SDT", "ro": "Terra SDT", "hu": "Terra SDT", "nl": "Terra SDT", "pt": "Terra SDT", "sv": "Terra SDT", "vi": "Terra SDT", "tr": "Terra SDT", "ru": "Terra SDT", "ja": "Terra SDT", "zh": "Terra SDT", "zh-tw": "Terra SDT", "ko": "Terra SDT", "ar": "Terra SDT", "th": "Terra SDT", "id": "Terra SDT"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9601/thumb/SDT.png?1600423439", "small": "https://assets.coingecko.com/coins/images/9601/small/SDT.png?1600423439"}, "market_data": {"current_price": {"aed": 5.222255156763709, "ars": 133.20859415238868, "aud": 1.8433329495446655, "bch": 0.0014837599980279165, "bdt": 120.5305390136767, "bhd": 0.5359323004869884, "bmd": 1.4217181631176385, "bnb": 0.0023316711009896745, "brl": 7.740402367277683, "btc": 2.651133113930917e-05, "cad": 1.7488484038601937, "chf": 1.2989286305236594, "clp": 1000.6044427748695, "cny": 9.203919044390963, "czk": 30.589119310373988, "dkk": 8.799856790405812, "dot": 0.0409316145001293, "eos": 0.22307601890822815, "eth": 0.0004379424760672021, "eur": 1.1832960271628128, "gbp": 1.0235361354551185, "hkd": 11.043977777005985, "huf": 426.2595396659308, "idr": 20593.94302229978, "ils": 4.638810456983498, "inr": 104.8931561926627, "jpy": 155.43644677365148, "krw": 1600.727741998631, "kwd": 0.42849732405467816, "lkr": 280.0284222810876, "ltc": 0.004638749465502913, "mmk": 2213.926839077856, "mxn": 28.739761119253814, "myr": 5.861743986534023, "ngn": 560.9801780014939, "nok": 11.841786297984736, "nzd": 1.9851678186517712, "php": 68.29368638303664, "pkr": 218.02048031408992, "pln": 5.389779051360195, "rub": 106.32518323418108, "sar": 5.332522195776962, "sek": 12.054279138080636, "sgd": 1.899958562263478, "thb": 44.343389507639195, "try": 11.827131227159343, "twd": 39.67873221445008, "uah": 39.53588792544736, "usd": 1.4217181631176385, "vef": 0.1423566396729692, "vnd": 32791.734021412, "xag": 0.053704493712144336, "xau": 0.0007994463403026787, "xdr": 0.9914962949311003, "xlm": 2.823412153723666, "xrp": 1.0231006598891714, "yfi": 2.8231372230788376e-05, "zar": 20.57284756819544, "bits": 26.51133113930917, "link": 0.03110035739682727, "sats": 2651.1331139309173}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 66065.30314033637, "ars": 1685185.018617387, "aud": 23319.494441498595, "bch": 18.770636653067413, "bdt": 1524798.455566346, "bhd": 6779.931051150046, "bmd": 17985.762588570287, "bnb": 29.497325099278875, "brl": 97921.68583721222, "btc": 0.33538750516696525, "cad": 22124.196631387393, "chf": 16432.38623108326, "clp": 12658369.583851445, "cny": 116436.22984588625, "czk": 386974.4735506444, "dkk": 111324.55021787675, "dot": 517.8145147641977, "eos": 2822.0729110533443, "eth": 5.540288930910682, "eur": 14969.550202467075, "gbp": 12948.472074626818, "hkd": 139714.30307614358, "huf": 5392491.339305148, "idr": 260528267.5360878, "ils": 58684.30588923895, "inr": 1326974.2579007547, "jpy": 1966383.42380839, "krw": 20250363.17563268, "kwd": 5420.8009296195605, "lkr": 3542561.987219126, "ltc": 58.68353430291603, "mmk": 28007775.063378282, "mxn": 363578.7554472927, "myr": 74155.29915267529, "ngn": 7096804.809965638, "nok": 149807.1576388203, "nzd": 25113.808074622142, "php": 863964.5053771018, "pkr": 2758116.692957254, "pln": 68184.60151767288, "rub": 1345090.4352538544, "sar": 67460.26090094344, "sek": 152495.34568683332, "sgd": 24035.849379638763, "thb": 560975.9351375079, "try": 149621.7603980576, "twd": 501964.6480844069, "uah": 500157.56455984805, "usd": 17985.762588570287, "vef": 1800.9144079935431, "vnd": 414839142.01626354, "xag": 679.400670895185, "xau": 10.11357416117895, "xdr": 12543.14492893081, "xlm": 35718.20491847788, "xrp": 12942.962993892368, "yfi": 0.35714726847060846, "zar": 260261.39479079857, "bits": 335387.50516696525, "link": 393.4420049416905, "sats": 33538750.516696524}}, "community_data": {"facebook_likes": null, "twitter_followers": 64862, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 21924, "bing_matches": null}}, "JST_20210515": {"id": "just", "symbol": "jst", "name": "JUST", "localization": {"en": "JUST", "de": "JUST", "es": "JUST", "fr": "JUST", "it": "JUST", "pl": "JUST", "ro": "JUST", "hu": "JUST", "nl": "JUST", "pt": "JUST", "sv": "JUST", "vi": "JUST", "tr": "JUST", "ru": "JUST", "ja": "\u30b8\u30e3\u30b9\u30c8", "zh": "JUST", "zh-tw": "JUST", "ko": "JUST", "ar": "JUST", "th": "JUST", "id": "JUST"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11095/thumb/JUST.jpg?1588175394", "small": "https://assets.coingecko.com/coins/images/11095/small/JUST.jpg?1588175394"}, "market_data": {"current_price": {"aed": 0.4736986526621634, "ars": 12.10689802751676, "aud": 0.16451136889947285, "bch": 8.308411635543692e-05, "bdt": 10.944943165436433, "bhd": 0.048612402160041944, "bmd": 0.12896075701354803, "bnb": 0.000191888841185963, "brl": 0.6735232166939006, "btc": 2.273916488550811e-06, "cad": 0.15600473048458816, "chf": 0.11656517801016272, "clp": 90.59504373995459, "cny": 0.8291144989915018, "czk": 2.7095170891574396, "dkk": 0.7895342503311746, "dot": 0.003326133522664292, "eos": 0.009069377019680493, "eth": 3.085347862418795e-05, "eur": 0.1061838370705721, "gbp": 0.09123045041258031, "hkd": 1.0018896732004046, "huf": 38.080155211416795, "idr": 1830.9519785495227, "ils": 0.42419190765223275, "inr": 9.462540682134032, "jpy": 14.017389483587595, "krw": 144.33546684715242, "kwd": 0.03881589825350776, "lkr": 25.363328127390638, "ltc": 0.00034049199421089677, "mmk": 201.06808412237245, "mxn": 2.5751941438672814, "myr": 0.5311248777602975, "ngn": 52.75923111965499, "nok": 1.0659297796827332, "nzd": 0.17755626531442126, "php": 6.170421320878425, "pkr": 19.661419947134945, "pln": 0.48210624921566203, "rub": 9.568810793951052, "sar": 0.48364784610500194, "sek": 1.0730289403955715, "sgd": 0.1710277559513672, "thb": 4.0193974192562125, "try": 1.0703029679138194, "twd": 3.6021318649024296, "uah": 3.5711361469542138, "usd": 0.12896075701354803, "vef": 0.012912840599766561, "vnd": 2977.543357474939, "xag": 0.004678084990463264, "xau": 7.023460748471845e-05, "xdr": 0.08975758960672851, "xlm": 0.17742130149009044, "xrp": 0.08732611127096761, "yfi": 1.5805776433409823e-06, "zar": 1.8042907251410922, "bits": 2.273916488550811, "link": 0.002637616341740403, "sats": 227.39164885508112}, "market_cap": {"aed": 676398958.1794685, "ars": 17289477007.114384, "aud": 234877936.17213663, "bch": 119435.17577731119, "bdt": 15628391832.717579, "bhd": 69414126.45119822, "bmd": 184144331.42204815, "bnb": 274673.4895020891, "brl": 961693770.851646, "btc": 3260.0513707640616, "cad": 222725331.01993874, "chf": 166421176.10000196, "clp": 129361547136.93866, "cny": 1183900735.5786316, "czk": 3868246312.45041, "dkk": 1127331596.9657807, "dot": 4776213.073224536, "eos": 12967580.799640084, "eth": 44297.11005823537, "eur": 151602713.46180674, "gbp": 130243260.02716891, "hkd": 1430538128.7553825, "huf": 54359153621.477196, "idr": 2612639774216.0215, "ils": 605707790.7898575, "inr": 13511654768.608778, "jpy": 20010780351.30256, "krw": 206112892688.41104, "kwd": 55425602.3147224, "lkr": 36216545318.24532, "ltc": 489967.15149142186, "mmk": 287107091943.7667, "mxn": 3676478405.707468, "myr": 758398428.9617052, "ngn": 75335424247.31252, "nok": 1521803558.1504447, "nzd": 253502662.1408255, "php": 8809789461.68709, "pkr": 28074734631.0392, "pln": 688361526.3816389, "rub": 13663969752.344538, "sar": 690605509.2043465, "sek": 1532004785.8225632, "sgd": 244184222.39354423, "thb": 5740791604.248064, "try": 1527366742.5470355, "twd": 5143519281.136318, "uah": 5099260375.223367, "usd": 184144331.42204815, "vef": 18438371.905289672, "vnd": 4251663401640.7363, "xag": 6677522.769532144, "xau": 100279.47856250468, "xdr": 128165743.68006551, "xlm": 254509060.6046535, "xrp": 125342429.74005039, "yfi": 2269.8877161779283, "zar": 2576163728.4706173, "bits": 3260051370.7640615, "link": 3787327.9129834543, "sats": 326005137076.4061}, "total_volume": {"aed": 1121825342.7117045, "ars": 28671867552.431175, "aud": 389600058.51493084, "bch": 196761.9430212113, "bdt": 25920096138.172073, "bhd": 115125142.12727083, "bmd": 305408184.3383719, "bnb": 454436.0931073197, "brl": 1595055018.9358308, "btc": 5385.147561071088, "cad": 369454418.4514188, "chf": 276052655.0679517, "clp": 214549514592.01025, "cny": 1963530298.7482576, "czk": 6416748116.222904, "dkk": 1869795335.0356774, "dot": 7877035.026377643, "eos": 21478332.112844102, "eth": 73068.00227720501, "eur": 251467296.22871277, "gbp": 216054301.03012583, "hkd": 2372700913.7155952, "huf": 90182403792.96469, "idr": 4336107606136.4434, "ils": 1004582194.8260478, "inr": 22409432418.69253, "jpy": 33196342596.65931, "krw": 341818967926.72455, "kwd": 91924809.40400639, "lkr": 60066086548.72392, "ltc": 806361.9052947774, "mmk": 476174612512.22, "mxn": 6098641059.579774, "myr": 1257823607.1975842, "ngn": 124945769212.95203, "nok": 2524362342.343447, "nzd": 420493317.99349445, "php": 14612950604.921476, "pkr": 46562680823.42211, "pln": 1141736429.2896457, "rub": 22661104032.99658, "sar": 1145387278.7252264, "sek": 2541174757.4830894, "sgd": 405032334.0695483, "thb": 9518840431.592813, "try": 2534719039.2825456, "twd": 8530661404.939417, "uah": 8457256547.833666, "usd": 305408184.3383719, "vef": 30580521.497801166, "vnd": 7051494824116.665, "xag": 11078761.293002333, "xau": 166331.40535436387, "xdr": 212566234.15679714, "xlm": 420173693.1906104, "xrp": 206807944.57336357, "yfi": 3743.1646606097356, "zar": 4272967739.527266, "bits": 5385147561.071088, "link": 6246470.915392716, "sats": 538514756107.10876}}, "community_data": {"facebook_likes": null, "twitter_followers": 45431, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 74071, "bing_matches": null}}, "DODO_20210521": {"id": "dodo", "symbol": "dodo", "name": "DODO", "localization": {"en": "DODO", "de": "DODO", "es": "DODO", "fr": "DODO", "it": "DODO", "pl": "DODO", "ro": "DODO", "hu": "DODO", "nl": "DODO", "pt": "DODO", "sv": "DODO", "vi": "DODO", "tr": "DODO", "ru": "DODO", "ja": "DODO", "zh": "DODO", "zh-tw": "DODO", "ko": "DODO", "ar": "DODO", "th": "DODO", "id": "DODO"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12651/thumb/dodo_logo.png?1601433025", "small": "https://assets.coingecko.com/coins/images/12651/small/dodo_logo.png?1601433025"}, "market_data": {"current_price": {"aed": 9.343838616970588, "ars": 239.23629174633174, "aud": 3.2725082787250335, "bch": 0.0023492681876702104, "bdt": 215.73936631585804, "bhd": 0.9589721073879104, "bmd": 2.54378705678172, "bnb": 0.004939822289695552, "brl": 13.414154830314077, "btc": 5.834103346475854e-05, "cad": 3.068649183994547, "chf": 2.297566276194645, "clp": 1820.333041018768, "cny": 16.379953616028843, "czk": 53.17855524452717, "dkk": 15.560192799110366, "dot": 0.06568530064178742, "eos": 0.278046378031602, "eth": 0.0007657194998845126, "eur": 2.0924709009545635, "gbp": 1.7983302597918351, "hkd": 19.75545220132182, "huf": 735.7166363494647, "idr": 36489.480625358214, "ils": 8.342197025492265, "inr": 186.38315046104387, "jpy": 277.72939896589946, "krw": 2890.9640529487097, "kwd": 0.7656926230265791, "lkr": 501.2168328584809, "ltc": 0.00894633798062611, "mmk": 3962.665159779831, "mxn": 50.30002870515646, "myr": 10.509656225093691, "ngn": 1044.6301783923757, "nok": 21.002553981057265, "nzd": 3.5242287269288664, "php": 121.81094500753336, "pkr": 388.1680412254306, "pln": 9.475225218453392, "rub": 187.99552988698494, "sar": 9.539280320330219, "sek": 21.190000561697367, "sgd": 3.395955720803593, "thb": 80.08733252112236, "try": 21.138616063150383, "twd": 71.34788244612065, "uah": 70.06539150085128, "usd": 2.54378705678172, "vef": 0.25470939799555326, "vnd": 58671.71187297119, "xag": 0.09010617775254563, "xau": 0.001361740087236388, "xdr": 1.7670467665675371, "xlm": 3.9324566007830657, "xrp": 1.697258517244047, "yfi": 3.929943603378874e-05, "zar": 35.86815554916517, "bits": 58.341033464758546, "link": 0.06847823787456585, "sats": 5834.103346475855}, "market_cap": {"aed": 1115514630.0068028, "ars": 28562422293.829857, "aud": 390698886.27815074, "bch": 279485.58187074354, "bdt": 25756054792.795834, "bhd": 114484502.39320073, "bmd": 303690142.1122738, "bnb": 588980.5382555593, "brl": 1601418857.3864455, "btc": 6955.917823450003, "cad": 366431614.40224314, "chf": 274325431.2010117, "clp": 217320534197.71152, "cny": 1955521563.0893552, "czk": 6347959118.037334, "dkk": 1857647393.018982, "dot": 7799478.99762776, "eos": 33136794.205642916, "eth": 91281.11399508652, "eur": 249816421.97198266, "gbp": 214697086.55783528, "hkd": 2358501678.7145243, "huf": 87841614380.6196, "idr": 4356298428036.619, "ils": 995933599.648674, "inr": 22251361528.05921, "jpy": 33154546961.991653, "krw": 345219769046.1273, "kwd": 91415288.12792604, "lkr": 59837796089.90964, "ltc": 1067074.3461472602, "mmk": 473082973792.3924, "mxn": 6005580673.96081, "myr": 1254695822.1368573, "ngn": 124713224908.10703, "nok": 2507463211.8713074, "nzd": 420769373.0796821, "php": 14531810785.76341, "pkr": 46341460575.058464, "pln": 1131210855.0018768, "rub": 22427516994.991432, "sar": 1138923977.2312453, "sek": 2529641702.9497666, "sgd": 405547815.7767304, "thb": 9562882485.705687, "try": 2523877664.052472, "twd": 8517931474.97927, "uah": 8364760189.072495, "usd": 303690142.1122738, "vef": 30408493.929702003, "vnd": 7005356245146.072, "xag": 10759143.465457933, "xau": 162583.55448122672, "xdr": 210958964.5985754, "xlm": 466871021.9930699, "xrp": 202351468.5688545, "yfi": 4684.242394505276, "zar": 4281586705.105154, "bits": 6955917823.450002, "link": 8158321.7582863495, "sats": 695591782345.0002}, "total_volume": {"aed": 162302809.50890484, "ars": 4155542906.787759, "aud": 56843585.33478459, "bch": 40806.872076777065, "bdt": 3747400475.3398633, "bhd": 16657379.65412283, "bmd": 44185671.76001995, "bnb": 85804.88907804336, "brl": 233004347.0777846, "btc": 1013.3858287947735, "cad": 53302545.5999366, "chf": 39908808.033352315, "clp": 31619249744.172306, "cny": 284520377.59712034, "czk": 923713398.274592, "dkk": 270281103.01573634, "dot": 1140956.0111875727, "eos": 4829675.487581903, "eth": 13300.574980104146, "eur": 36346294.06202897, "gbp": 31237060.650746077, "hkd": 343152908.2244533, "huf": 12779424172.104713, "idr": 633823577845.1942, "ils": 144904259.3966802, "inr": 3237481960.573076, "jpy": 4824169549.923094, "krw": 50216148546.3403, "kwd": 13300108.128124764, "lkr": 8706154234.977697, "ltc": 155398.2093006873, "mmk": 68831634935.04764, "mxn": 873713289.7819988, "myr": 182553102.87652272, "ngn": 18145263397.736263, "nok": 364815110.5474897, "nzd": 61215978.48379733, "php": 2115860452.442958, "pkr": 6742492698.667947, "pln": 164584999.45531037, "rub": 3265489048.618164, "sar": 165697638.85589954, "sek": 368071064.32814157, "sgd": 58987871.799626596, "thb": 1391119817.7849438, "try": 367178513.7585893, "twd": 1239315258.7721868, "uah": 1217038345.3836253, "usd": 44185671.76001995, "vef": 4424311.313330792, "vnd": 1019129724520.8157, "xag": 1565147.516223735, "xau": 23653.473806573842, "xdr": 30693665.259441413, "xlm": 68306911.1895534, "xrp": 29481440.88354753, "yfi": 682.6326033515528, "zar": 623031139.1464658, "bits": 1013385828.7947735, "link": 1189469.430376841, "sats": 101338582879.47736}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 933, "reddit_accounts_active_48h": "29.5384615384615"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 23089, "bing_matches": null}}, "WOM_20210605": {"id": "wom-token", "symbol": "wom", "name": "WOM Protocol", "localization": {"en": "WOM Protocol", "de": "WOM Protocol", "es": "WOM Protocol", "fr": "WOM Protocol", "it": "WOM Protocol", "pl": "WOM Protocol", "ro": "WOM Protocol", "hu": "WOM Protocol", "nl": "WOM Protocol", "pt": "WOM Protocol", "sv": "WOM Protocol", "vi": "WOM Protocol", "tr": "WOM Protocol", "ru": "WOM Protocol", "ja": "WOM Protocol", "zh": "WOM Protocol", "zh-tw": "WOM Protocol", "ko": "WOM Protocol", "ar": "WOM Protocol", "th": "WOM Protocol", "id": "WOM Protocol"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4559/thumb/wom_logo_small.png?1572098941", "small": "https://assets.coingecko.com/coins/images/4559/small/wom_logo_small.png?1572098941"}, "market_data": {"current_price": {"aed": 0.5093127436011876, "ars": 13.122762025951944, "aud": 0.17880548922271045, "bch": 0.00020097940767941028, "bdt": 11.758808993453119, "bhd": 0.052277766806245046, "bmd": 0.1386564150063124, "bnb": 0.00038325264314413853, "brl": 0.7142607906220192, "btc": 3.7799668661267366e-06, "cad": 0.16737423840034507, "chf": 0.12438880855857792, "clp": 101.01113205433225, "cny": 0.884863643645786, "czk": 2.8839979695652973, "dkk": 0.8439809383375897, "dot": 0.006053162351673246, "eos": 0.021959213655908718, "eth": 5.267497324443888e-05, "eur": 0.11348902777493187, "gbp": 0.09795216050422952, "hkd": 1.075925250703732, "huf": 39.28344221751333, "idr": 1976.0688312832126, "ils": 0.44934245754680646, "inr": 10.101848472670733, "jpy": 15.181213566211134, "krw": 153.60939165538213, "kwd": 0.04170424456710882, "lkr": 27.388000776743844, "ltc": 0.0007570092427481303, "mmk": 228.2586372531474, "mxn": 2.7685970084838445, "myr": 0.5721656965235504, "ngn": 57.095357184951176, "nok": 1.153175453821862, "nzd": 0.19116587668203305, "php": 6.62168767949317, "pkr": 21.40855047697466, "pln": 0.506208226469197, "rub": 10.198373442695281, "sar": 0.5200166028704294, "sek": 1.1469665582142927, "sgd": 0.18338031897942852, "thb": 4.321698466826336, "try": 1.1906703669422058, "twd": 3.827956977286787, "uah": 3.804929751821014, "usd": 0.1386564150063124, "vef": 0.013883666834582085, "vnd": 3196.9742766507925, "xag": 0.004981050069198127, "xau": 7.30317203479747e-05, "xdr": 0.09585276372461875, "xlm": 0.3271310931929254, "xrp": 0.13710084643944284, "yfi": 3.0699051670354935e-06, "zar": 1.9084668961468862, "bits": 3.7799668661267365, "link": 0.004510780026994056, "sats": 377.99668661267367}, "market_cap": {"aed": 50969376.92284677, "ars": 1313042277.9835057, "aud": 17899004.289945062, "bch": 20065.429669776182, "bdt": 1176760596.079608, "bhd": 5230979.9935682155, "bmd": 13876014.625625307, "bnb": 38407.765164467906, "brl": 71479514.14098358, "btc": 378.17497744398224, "cad": 16755690.064866692, "chf": 12449629.702184133, "clp": 10108676654.768017, "cny": 88552562.5363528, "czk": 288700197.49637216, "dkk": 84475789.4393443, "dot": 604183.8992874161, "eos": 2188018.490561787, "eth": 5254.098932152235, "eur": 11356352.385845736, "gbp": 9803987.125618525, "hkd": 107673016.88973345, "huf": 3932601305.0484505, "idr": 197754716237.83008, "ils": 44967861.83711778, "inr": 1010940583.9336591, "jpy": 1519548485.6375992, "krw": 15377089639.967434, "kwd": 4173391.7868469567, "lkr": 2740849021.139287, "ltc": 75505.86517055558, "mmk": 22842940146.734447, "mxn": 277148415.3205389, "myr": 57259374.35264261, "ngn": 5713807120.410662, "nok": 115467923.60973692, "nzd": 19137480.223326, "php": 662661608.4879432, "pkr": 2142456658.1965435, "pln": 50676135.105763406, "rub": 1020601689.7366768, "sar": 52039176.02243867, "sek": 114772818.53308064, "sgd": 18354637.106192116, "thb": 432525658.00757796, "try": 119390617.44034259, "twd": 383082087.6529633, "uah": 380777628.52401394, "usd": 13876014.625625307, "vef": 1389405.34446386, "vnd": 319972443762.91705, "xag": 498677.32369689026, "xau": 7308.7744236093395, "xdr": 9592447.282650884, "xlm": 32670359.58558395, "xrp": 13671818.227177568, "yfi": 306.3774923608491, "zar": 190949224.86469212, "bits": 378174977.44398224, "link": 449178.0161612625, "sats": 37817497744.39822}, "total_volume": {"aed": 313011.0057362567, "ars": 8064924.7272657445, "aud": 109889.42789263737, "bch": 123.51696932851432, "bdt": 7226672.953982452, "bhd": 32128.62150270788, "bmd": 85214.80064691718, "bnb": 235.53758822803147, "brl": 438967.00257246575, "btc": 2.323074074389403, "cad": 102864.0640829036, "chf": 76446.2828751501, "clp": 62078941.53860448, "cny": 543815.2932884326, "czk": 1772433.7675356197, "dkk": 518689.79453248973, "dot": 3720.1237537965853, "eos": 13495.589179672164, "eth": 32.37273474798989, "eur": 69747.54739629604, "gbp": 60198.973339407, "hkd": 661237.0278398509, "huf": 24142631.2452813, "idr": 1214442992.1595733, "ils": 276154.752308458, "inr": 6208346.030905327, "jpy": 9329998.09322967, "krw": 94404529.98017937, "kwd": 25630.396449776, "lkr": 16831987.371097032, "ltc": 465.23914314183645, "mmk": 140282108.61054227, "mxn": 1701511.193253204, "myr": 351638.8748695052, "ngn": 35089393.30472843, "nok": 708713.0905834723, "nzd": 117485.8160815061, "php": 4069525.3481670474, "pkr": 13157165.219884027, "pln": 311103.0463497727, "rub": 6267667.888301661, "sar": 319589.3327017965, "sek": 704897.2570253031, "sgd": 112701.00502518164, "thb": 2656008.9072685754, "try": 731756.5361152072, "twd": 2352567.608859777, "uah": 2338415.6460571312, "usd": 85214.80064691718, "vef": 8532.557988775832, "vnd": 1964781259.0980163, "xag": 3061.23008185166, "xau": 44.883487648737685, "xdr": 58908.73604281191, "xlm": 201046.67274553532, "xrp": 84258.7867090668, "yfi": 1.8866877295360698, "zar": 1172896.5161041694, "bits": 2323074.074389403, "link": 2772.2137540112717, "sats": 232307407.43894032}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1098811, "bing_matches": null}}, "EVX_20211003": {"id": "everex", "symbol": "evx", "name": "Everex", "localization": {"en": "Everex", "de": "Everex", "es": "Everex", "fr": "Everex", "it": "Everex", "pl": "Everex", "ro": "Everex", "hu": "Everex", "nl": "Everex", "pt": "Everex", "sv": "Everex", "vi": "Everex", "tr": "Everex", "ru": "Everex", "ja": "Everex", "zh": "Everex", "zh-tw": "Everex", "ko": "\uc5d0\ubc84\ub809\uc2a4", "ar": "Everex", "th": "Everex", "id": "Everex"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/997/thumb/everex.png?1548125695", "small": "https://assets.coingecko.com/coins/images/997/small/everex.png?1548125695"}, "market_data": {"current_price": {"aed": 2.064564120453846, "ars": 55.42976958123769, "aud": 0.7828864015992164, "bch": 0.0011581678187418851, "bdt": 48.16124598371363, "bhd": 0.21191515285390305, "bmd": 0.5620614506299276, "bnb": 0.0015273678673297457, "brl": 3.044012404321559, "btc": 1.3522059505096553e-05, "cad": 0.7169105044013745, "chf": 0.525169423194931, "clp": 455.11794591264396, "cny": 3.636874822446012, "czk": 12.35916923790148, "dkk": 3.602417645215139, "dot": 0.020564808150681832, "eos": 0.1497908838026241, "eth": 0.00019691801996257744, "eur": 0.48445256758839794, "gbp": 0.41854355570318025, "hkd": 4.375864786812475, "huf": 174.55994462897857, "idr": 8059.427243655072, "ils": 1.8090453643829818, "inr": 41.77366546640413, "jpy": 62.923903520921705, "krw": 667.858277481999, "kwd": 0.1695267264931957, "lkr": 112.2871966054105, "ltc": 0.003875820728382556, "mmk": 1052.0447619089764, "mxn": 11.532433050169915, "myr": 2.3518562103288336, "ngn": 231.33838684367853, "nok": 4.929257001627898, "nzd": 0.8178398790909898, "php": 28.62725160241529, "pkr": 95.8197184447941, "pln": 2.244379943862276, "rub": 40.963038521909105, "sar": 2.1082812600838405, "sek": 4.946212147347589, "sgd": 0.7653703185517852, "thb": 19.070745019873456, "try": 5.0168818197196465, "twd": 15.639246889426143, "uah": 14.948095099245746, "usd": 0.5620614506299276, "vef": 0.056279213051574704, "vnd": 12852.982430846574, "xag": 0.0260618058581712, "xau": 0.000325056998742806, "xdr": 0.3970570705685003, "xlm": 2.0710771096211653, "xrp": 0.6054424135167202, "yfi": 1.9603345588538572e-05, "zar": 8.533736850305395, "bits": 13.522059505096554, "link": 0.024536267489365406, "sats": 1352.2059505096554}, "market_cap": {"aed": 44488065.3086518, "ars": 1194535801.2800076, "aud": 16876736.27244615, "bch": 25014.708620296686, "bdt": 1037798068.5814192, "bhd": 4566433.692543739, "bmd": 12111528.17942174, "bnb": 32934.242008383175, "brl": 65593614.314112164, "btc": 291.64531930684643, "cad": 15450192.03736113, "chf": 11317678.064901534, "clp": 9807066150.336018, "cny": 78368854.2377663, "czk": 266353397.05159354, "dkk": 77638843.98827991, "dot": 444653.0652159178, "eos": 3233952.3581318315, "eth": 4249.984819357841, "eur": 10440742.867070518, "gbp": 9020593.518864239, "hkd": 94291940.89289299, "huf": 3761719537.246587, "idr": 173667808141.1373, "ils": 38982043.48300507, "inr": 900143816.8126228, "jpy": 1356038992.4169092, "krw": 14393323992.20383, "kwd": 3653030.6833644686, "lkr": 2419610069.949679, "ltc": 83696.32009303095, "mmk": 22669887368.353065, "mxn": 248529757.28302374, "myr": 50678751.82228156, "ngn": 4984973419.007853, "nok": 106227791.35607225, "nzd": 17635196.50162607, "php": 615697722.3939527, "pkr": 2064762169.3103647, "pln": 48370221.88211474, "rub": 882685751.4106197, "sar": 45430099.970447466, "sek": 106608371.90605411, "sgd": 16492389.037200378, "thb": 411107656.7582028, "try": 108197779.8605679, "twd": 336987514.49424946, "uah": 322107617.98427176, "usd": 12111528.17942174, "vef": 1212727.3166054979, "vnd": 276961280170.2468, "xag": 561485.7229020019, "xau": 7006.397936513672, "xdr": 8555946.851788893, "xlm": 44708280.66021438, "xrp": 13085580.342797412, "yfi": 423.78431881315333, "zar": 183770033.79559278, "bits": 291645319.30684644, "link": 530467.9888610606, "sats": 29164531930.684647}, "total_volume": {"aed": 3371580.6161743775, "ars": 90520771.34714067, "aud": 1278509.390988632, "bch": 1891.3707398386393, "bdt": 78650753.3482659, "bhd": 346072.57510548347, "bmd": 917886.4794115172, "bnb": 2494.300779636014, "brl": 4971089.595196889, "btc": 22.08248863111987, "cad": 1170766.0402623499, "chf": 857639.1645623833, "clp": 743240100.5665317, "cny": 5939276.253680167, "czk": 20183405.795779854, "dkk": 5883005.223059835, "dot": 33583.80001341002, "eos": 244619.20814430146, "eth": 321.58118631613, "eur": 791145.6322208544, "gbp": 683511.509985621, "hkd": 7146099.628513228, "huf": 285068852.95582855, "idr": 13161620122.605728, "ils": 2954300.24376912, "inr": 68219378.29769127, "jpy": 102759227.14307824, "krw": 1090660251.4311473, "kwd": 276849.24837418325, "lkr": 183373009.23167276, "ltc": 6329.491978533885, "mmk": 1718064210.9678612, "mxn": 18833286.573213447, "myr": 3840749.1112607913, "ngn": 377792103.00706804, "nok": 8049828.62686632, "nzd": 1335590.9153702746, "php": 46750345.81916149, "pkr": 156480441.63662803, "pln": 3665232.6944406726, "rub": 66895566.61951133, "sar": 3442973.826543004, "sek": 8077517.590404229, "sgd": 1249904.3767442512, "thb": 31143888.246432796, "try": 8192926.211120086, "twd": 25540006.79444308, "uah": 24411306.57364577, "usd": 917886.4794115172, "vef": 91907.9731834753, "vnd": 20989837997.545937, "xag": 42560.78974897318, "xau": 530.8412876380627, "xdr": 648422.5456506789, "xlm": 3382216.79250445, "xrp": 988730.6891558663, "yfi": 32.013663002123124, "zar": 13936201.575419111, "bits": 22082488.631119866, "link": 40069.476671050834, "sats": 2208248863.1119866}}, "community_data": {"facebook_likes": null, "twitter_followers": 18396, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2790, "reddit_accounts_active_48h": "9.76923076923077"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 2963834, "bing_matches": null}}, "VIA_20210317": {"id": "viacoin", "symbol": "via", "name": "Viacoin", "localization": {"en": "Viacoin", "de": "Viacoin", "es": "Viacoin", "fr": "Viacoin", "it": "Viacoin", "pl": "Viacoin", "ro": "Viacoin", "hu": "Viacoin", "nl": "Viacoin", "pt": "Viacoin", "sv": "Viacoin", "vi": "Viacoin", "tr": "Viacoin", "ru": "Viacoin", "ja": "\u30f4\u30a3\u30a2\u30b3\u30a4\u30f3", "zh": "\u7ef4\u5c14\u5e01", "zh-tw": "\u7dad\u723e\u5e63", "ko": "\ube44\uc544\ucf54\uc778", "ar": "Viacoin", "th": "Viacoin", "id": "Viacoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/112/thumb/Via.png?1612494568", "small": "https://assets.coingecko.com/coins/images/112/small/Via.png?1612494568"}, "market_data": {"current_price": {"aed": 2.972342791881723, "ars": 73.46756477625887, "aud": 1.0428738032097804, "bch": 0.0013530870043404644, "bdt": 68.5195284205001, "bhd": 0.3051579372024668, "bmd": 0.8091971011329985, "bnb": 0.002919796142626328, "brl": 4.493511962446599, "btc": 1.3189374350034327e-05, "cad": 1.009554303373529, "chf": 0.7524489176276424, "clp": 585.9396217396005, "cny": 5.266659332724119, "czk": 17.726150317854305, "dkk": 5.034136545713552, "dot": 0.02154281721735078, "eos": 0.18867650149077378, "eth": 0.00041912811238626745, "eur": 0.6769589200629442, "gbp": 0.5813247698626419, "hkd": 6.28135203768984, "huf": 248.52870567097796, "idr": 11645.534186648309, "ils": 2.69244960657083, "inr": 58.819930383531734, "jpy": 88.2024828339771, "krw": 919.6444134666415, "kwd": 0.2447578471796977, "lkr": 158.9338701818403, "ltc": 0.0035606832760321505, "mmk": 1140.4407012654083, "mxn": 16.76878922750388, "myr": 3.3322736624656804, "ngn": 308.304095531672, "nok": 6.82193616110174, "nzd": 1.1274785969216397, "php": 39.24046785298154, "pkr": 127.0844047329373, "pln": 3.1021784667585117, "rub": 59.28177962900348, "sar": 3.0349293324717546, "sek": 6.85888005475397, "sgd": 1.0879695484588223, "thb": 24.84744409133758, "try": 6.120443194129539, "twd": 22.787556805876058, "uah": 22.42518539683506, "usd": 0.8091971011329985, "vef": 0.08102490573644709, "vnd": 18599.780607242643, "xag": 0.031231148233561323, "xau": 0.0004685251215560061, "xdr": 0.5657744291701696, "xlm": 1.9867799270558144, "xrp": 1.755545211340089, "yfi": 2.1106474692884014e-05, "zar": 12.0959834633592, "bits": 13.189374350034328, "link": 0.02710526434048372, "sats": 1318.9374350034327}, "market_cap": {"aed": 68760002.8535023, "ars": 1699544876.6719577, "aud": 24125079.341589127, "bch": 31231.24431805917, "bdt": 1585080624.8129666, "bhd": 7059300.390964269, "bmd": 18719373.530845642, "bnb": 67262.15861798212, "brl": 103949617.1854625, "btc": 304.97179651078886, "cad": 23354290.417083025, "chf": 17406602.584500954, "clp": 13554698392.40469, "cny": 121835042.62550882, "czk": 410063788.6606744, "dkk": 116456030.6414203, "dot": 497009.97279790434, "eos": 4348612.76813473, "eth": 9652.111847203245, "eur": 15660496.860290755, "gbp": 13447941.786438908, "hkd": 145308201.06451264, "huf": 5749281192.528605, "idr": 269399265149.21182, "ils": 62285158.74291809, "inr": 1360697222.427021, "jpy": 2040411687.3446941, "krw": 21274380824.07077, "kwd": 5662048.911874882, "lkr": 3676659837.845595, "ltc": 82043.52700412874, "mmk": 26382120557.372055, "mxn": 387916897.8363322, "myr": 77086380.20002247, "ngn": 7132081315.25219, "nok": 157813678.55179426, "nzd": 26082264.721733145, "php": 907760265.3749162, "pkr": 2939877613.0193086, "pln": 71763526.33652641, "rub": 1371381304.8697507, "sar": 70207834.07987186, "sek": 158668311.5503449, "sgd": 25168291.30908961, "thb": 574802587.1339641, "try": 141585853.63790408, "twd": 527150662.190085, "uah": 518767827.212994, "usd": 18719373.530845642, "vef": 1874370.871643574, "vnd": 430273712413.5213, "xag": 722478.5268789008, "xau": 10838.517274359616, "xdr": 13088211.585296648, "xlm": 45802336.528286085, "xrp": 40445797.123423025, "yfi": 487.2110790856195, "zar": 279819629.0576395, "bits": 304971796.5107886, "link": 624914.5863391733, "sats": 30497179651.07886}, "total_volume": {"aed": 7784973.172022302, "ars": 192421621.87992513, "aud": 2731429.4306725003, "bch": 3543.920323380286, "bdt": 179462036.4683829, "bhd": 799250.4635869748, "bmd": 2119398.119357051, "bnb": 7647.346295388082, "brl": 11769123.726695674, "btc": 34.54477920622762, "cad": 2644161.093709857, "chf": 1970766.8486446603, "clp": 1534656180.3458366, "cny": 13794102.659835361, "czk": 46427217.29291768, "dkk": 13185093.610238114, "dot": 56423.59102890766, "eos": 494169.61808998126, "eth": 1097.7539735589419, "eur": 1773048.198089839, "gbp": 1522569.2507517452, "hkd": 16451721.93160313, "huf": 650930744.3981314, "idr": 30501250213.987175, "ils": 7051894.55651789, "inr": 154057459.7474743, "jpy": 231014391.89440334, "krw": 2408674768.668095, "kwd": 641054.3491619263, "lkr": 416269590.0589574, "ltc": 9325.917540093003, "mmk": 2986970509.5531235, "mxn": 43919757.37790642, "myr": 8727681.455512317, "ngn": 807490683.4750352, "nok": 17867585.84523961, "nzd": 2953020.981643757, "php": 102776163.74781205, "pkr": 332851474.6450246, "pln": 8125030.600273138, "rub": 155267106.22409758, "sar": 7948895.900165855, "sek": 17964346.966378864, "sgd": 2849541.3684661523, "thb": 65078861.75602467, "try": 16030279.61556897, "twd": 59683734.61977817, "uah": 58734634.231560126, "usd": 2119398.119357051, "vef": 212215.33369122137, "vnd": 48715374763.76195, "xag": 81798.6578781528, "xau": 1227.1315111077324, "xdr": 1481840.7770920622, "xlm": 5203648.944222249, "xrp": 4598013.529893914, "yfi": 55.28075015064013, "zar": 31681038.609904695, "bits": 34544779.20622762, "link": 70992.40245357114, "sats": 3454477920.6227627}}, "community_data": {"facebook_likes": null, "twitter_followers": 37813, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2142, "reddit_accounts_active_48h": "281.384615384615"}, "developer_data": {"forks": 38, "stars": 79, "subscribers": 29, "total_issues": 16, "closed_issues": 13, "pull_requests_merged": 26, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1480037, "bing_matches": null}}, "ATM_20210327": {"id": "atletico-madrid", "symbol": "atm", "name": "Atletico Madrid Fan Token", "localization": {"en": "Atletico Madrid Fan Token", "de": "Atletico Madrid Fan Token", "es": "Atletico Madrid Fan Token", "fr": "Atletico Madrid Fan Token", "it": "Atletico Madrid Fan Token", "pl": "Atletico Madrid Fan Token", "ro": "Atletico Madrid Fan Token", "hu": "Atletico Madrid Fan Token", "nl": "Atletico Madrid Fan Token", "pt": "Atletico Madrid Fan Token", "sv": "Atletico Madrid Fan Token", "vi": "Atletico Madrid Fan Token", "tr": "Atletico Madrid Fan Token", "ru": "Atletico Madrid Fan Token", "ja": "Atletico Madrid Fan Token", "zh": "Atletico Madrid Fan Token", "zh-tw": "Atletico Madrid Fan Token", "ko": "Atletico Madrid Fan Token", "ar": "Atletico Madrid Fan Token", "th": "Atletico Madrid Fan Token", "id": "Atletico Madrid Fan Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11689/thumb/Atletico-10.png?1604941960", "small": "https://assets.coingecko.com/coins/images/11689/small/Atletico-10.png?1604941960"}, "market_data": {"current_price": {"aed": 35.700914576207644, "ars": 889.8403389715007, "aud": 12.786966988226164, "bch": 0.018975045002111626, "bdt": 823.9118627912054, "bhd": 3.663600795293012, "bmd": 9.719295049604614, "bnb": 0.038061348325648656, "brl": 53.6641156868869, "btc": 0.0001782295869326941, "cad": 12.243318219626536, "chf": 9.084401539079286, "clp": 7027.053576827971, "cny": 63.33481426124349, "czk": 215.22116350922417, "dkk": 61.05712662425382, "dot": 0.28301367150321, "eos": 2.362523775541448, "eth": 0.0058024438996725726, "eur": 8.211113159577257, "gbp": 7.081429776666671, "hkd": 75.49316640354644, "huf": 3005.254625813, "idr": 140541.9783467876, "ils": 31.998349127060855, "inr": 705.7418258246627, "jpy": 1054.676111863761, "krw": 11010.694633793977, "kwd": 2.9367044378281255, "lkr": 1928.728186335012, "ltc": 0.052069412569844715, "mmk": 13700.287064108372, "mxn": 202.37710538187653, "myr": 40.067793841994934, "ngn": 3698.191766374547, "nok": 84.15587688830848, "nzd": 13.909283145489153, "php": 473.4267549539959, "pkr": 1517.18195724328, "pln": 37.93076384296323, "rub": 742.3169909905812, "sar": 36.45089425941529, "sek": 83.65840449048956, "sgd": 13.086039416197552, "thb": 301.3321835090063, "try": 77.23024741128691, "twd": 277.15930535254455, "uah": 270.07045975375604, "usd": 9.719295049604614, "vef": 0.97319301331691, "vnd": 225135.8138720297, "xag": 0.38787995947043186, "xau": 0.005628152184374544, "xdr": 6.809979585226266, "xlm": 24.35174213912457, "xrp": 17.562128719704933, "yfi": 0.00028665812704128013, "zar": 144.94676286326842, "bits": 178.2295869326941, "link": 0.3609985927859348, "sats": 17822.95869326941}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 10487620.50305334, "ars": 261402484.900508, "aud": 3756342.344432799, "bch": 5574.17291329361, "bdt": 242035114.4358778, "bhd": 1076231.6672224302, "bmd": 2855172.738498679, "bnb": 11181.0294445496, "brl": 15764550.758346599, "btc": 52.357321720036666, "cad": 3596638.2573048775, "chf": 2668664.2897017277, "clp": 2064290846.41741, "cny": 18605447.633152783, "czk": 63224091.42466576, "dkk": 17936346.46740384, "dot": 83139.04613187532, "eos": 694022.9145791103, "eth": 1704.545397012826, "eur": 2412124.1639748816, "gbp": 2080264.5814064438, "hkd": 22177125.97037772, "huf": 882833686.6074854, "idr": 41286083315.964714, "ils": 9399942.448322292, "inr": 207321087.7155984, "jpy": 309825194.84905374, "krw": 3234538615.187029, "kwd": 862696.1532828504, "lkr": 566589666.173551, "ltc": 15296.085417749398, "mmk": 4024642315.662555, "mxn": 59450977.79556698, "myr": 11770449.614460776, "ngn": 1086393226.9987447, "nok": 24721912.880474195, "nzd": 4086037.7060654564, "php": 139075432.6853707, "pkr": 445692464.47964364, "pln": 11142668.508583412, "rub": 218065531.00647938, "sar": 10707937.052246837, "sek": 24575773.719026886, "sgd": 3844198.8647691435, "thb": 88520353.70838913, "try": 22687416.718065865, "twd": 81419247.88012357, "uah": 79336804.80191796, "usd": 2855172.738498679, "vef": 285888.4463058727, "vnd": 66136652395.718895, "xag": 113944.9188894622, "xau": 1653.3448776824298, "xdr": 2000522.4619929148, "xlm": 7153649.512204737, "xrp": 5159109.883442222, "yfi": 84.20965362407114, "zar": 42580047.60105232, "bits": 52357321.72003666, "link": 106048.15837962618, "sats": 5235732172.003667}}, "community_data": {"facebook_likes": null, "twitter_followers": 4896524, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 183792, "bing_matches": null}}, "LOOM_20190107": {"id": "loom-network", "symbol": "loomold", "name": "Loom Network (OLD)", "localization": {"en": "Loom Network (OLD)", "de": "Loom Network (OLD)", "es": "Loom Network (OLD)", "fr": "Loom Network (OLD)", "it": "Loom Network (OLD)", "pl": "Loom Network (OLD)", "ro": "Loom Network (OLD)", "hu": "Loom Network (OLD)", "nl": "Loom Network (OLD)", "pt": "Loom Network (OLD)", "sv": "Loom Network (OLD)", "vi": "Loom Network (OLD)", "tr": "Loom Network (OLD)", "ru": "Loom Network (OLD)", "ja": "\u30eb\u30fc\u30e0\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "Loom Network (OLD)", "zh-tw": "Loom Network (OLD)", "ko": "\ub8f8\ub124\ud2b8\uc6cc\ud06c", "ar": "Loom Network (OLD)", "th": "Loom Network (OLD)", "id": "Loom Network (OLD)"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3387/thumb/1_K76UVoLq-FOL7l-_Fag-Qw_2x.png?1547038040", "small": "https://assets.coingecko.com/coins/images/3387/small/1_K76UVoLq-FOL7l-_Fag-Qw_2x.png?1547038040"}, "market_data": {"current_price": {"aed": 0.1763515892042617, "ars": 1.7979005969270792, "aud": 0.06848984409983172, "bch": 0.00030175107987963357, "bdt": 4.031051285195952, "bhd": 0.018102249155350407, "bmd": 0.048010590603692456, "bnb": 0.008278066094086337, "brl": 0.18033790854208567, "btc": 1.2733290085662026e-05, "cad": 0.06471107454518692, "chf": 0.04740383275964303, "clp": 33.30946032143584, "cny": 0.32992877862857484, "czk": 1.0809945514062695, "dkk": 0.3146599224882915, "eos": 0.018247328365441278, "eth": 0.00032737942971059803, "eur": 0.04214225611420313, "gbp": 0.038013921449372774, "hkd": 0.37597333554704576, "huf": 13.533753395865432, "idr": 691.8063920156801, "ils": 0.17895947647526353, "inr": 3.36606998969899, "jpy": 5.178614344876686, "krw": 54.013354746872125, "kwd": 0.014565116903214017, "lkr": 8.780091974889686, "ltc": 0.0015268751741408654, "mmk": 74.13747803322664, "mxn": 0.9422311257339081, "myr": 0.19888387157579562, "ngn": 17.475854979744053, "nok": 0.41720036577257147, "nzd": 0.07177890563031887, "php": 2.5252119297388296, "pkr": 6.675872623443444, "pln": 0.1808385149703116, "rub": 3.307891284121923, "sar": 0.18009252641351126, "sek": 0.4323512118811504, "sgd": 0.06551045087873843, "thb": 1.5454609115328666, "try": 0.26272100934022397, "twd": 1.4823269848890035, "uah": 1.3309015821249586, "usd": 0.048010590603692456, "vef": 11930.038461709451, "vnd": 1115.3147999603766, "xag": 0.003050228046470036, "xau": 3.70771388055136e-05, "xdr": 0.03445552050559901, "xlm": 0.4273217689950865, "xrp": 0.1356633646169774, "zar": 0.6875868900403523, "bits": 12.733290085662025, "link": 0.13412371359806619, "sats": 1273.3290085662027}, "market_cap": {"aed": 101020509.55909884, "ars": 1029901886.6669304, "aud": 39233436.91887193, "bch": 172750.31977617033, "bdt": 2309130622.1101685, "bhd": 10369616.979868233, "bmd": 27502186.67664308, "bnb": 4741309.2251584865, "brl": 103304016.11885987, "btc": 7293.159137630449, "cad": 37068822.312113345, "chf": 27154614.041423682, "clp": 19080852460.663353, "cny": 188995026.8418912, "czk": 619232414.6689998, "dkk": 180248478.91093174, "eos": 10454966.278831184, "eth": 187556.33896037217, "eur": 24140594.399156988, "gbp": 21775736.371205855, "hkd": 215370998.97412577, "huf": 7752618904.465565, "idr": 396291491066.2825, "ils": 102514400.83718728, "inr": 1928205507.5620718, "jpy": 2966495863.689428, "krw": 30940785076.82376, "kwd": 8343420.878653244, "lkr": 5029551303.060628, "ltc": 874698.0554079234, "mmk": 42468604009.393555, "mxn": 539743752.0896584, "myr": 113927808.30799387, "ngn": 10010795950.298082, "nok": 238987319.18866578, "nzd": 41117529.2215287, "php": 1446531880.0811048, "pkr": 3824179057.387224, "pln": 103590781.41933748, "rub": 1894878660.271364, "sar": 103163452.44275622, "sek": 247666266.74477416, "sgd": 37526733.72027952, "thb": 885295389.121139, "try": 150496008.31603253, "twd": 849130013.6413544, "uah": 762388116.8632228, "usd": 27502186.67664308, "vef": 6833953523750.882, "vnd": 638892282849.2352, "xag": 1747279.9248151586, "xau": 21239.11370477115, "xdr": 19737356.801293056, "xlm": 244782122.65725946, "xrp": 77691263.72594444, "zar": 393874409.1360512, "bits": 7293159137.630448, "link": 76821118.56558777, "sats": 729315913763.0449}, "total_volume": {"aed": 17068536.536525704, "ars": 174013356.87509432, "aud": 6628924.704754953, "bch": 29205.573678704033, "bdt": 390153252.67232287, "bhd": 1752061.9036980204, "bmd": 4646799.745649806, "bnb": 801208.9611227204, "brl": 17454360.31940695, "btc": 1232.4166061558271, "cad": 6263189.0371740945, "chf": 4588073.490464288, "clp": 3223921843.1417546, "cny": 31932807.852105495, "czk": 104626190.66671412, "dkk": 30454981.4821967, "eos": 1766103.6813156756, "eth": 31686.064086726445, "eur": 4078821.4127390306, "gbp": 3679252.3962100903, "hkd": 36389321.14817091, "huf": 1309891027.1009657, "idr": 66957846717.47266, "ils": 17320946.051909644, "inr": 325791725.8524568, "jpy": 501222407.764771, "krw": 5227789117.848401, "kwd": 1409713.579237021, "lkr": 849798526.5892867, "ltc": 147781.62654577094, "mmk": 7175542098.859753, "mxn": 91195698.70625417, "myr": 19249367.946354285, "ngn": 1691435107.4165294, "nok": 40379560.61735869, "nzd": 6947263.014930184, "php": 244407619.34554884, "pkr": 646137504.6326063, "pln": 17502812.500354957, "rub": 320160785.0354747, "sar": 17430610.525907036, "sek": 41845965.15349263, "sgd": 6340558.252939167, "thb": 149580483.81246787, "try": 25427971.28775836, "twd": 143469942.14693767, "uah": 128813935.74915828, "usd": 4646799.745649806, "vef": 1154672312762.599, "vnd": 107947943643.43332, "xag": 295222.34016052226, "xau": 3588.584039572979, "xdr": 3334845.5394617743, "xlm": 41359180.59971285, "xrp": 13130446.434201622, "zar": 66549453.892906696, "bits": 1232416606.155827, "link": 12981428.27231057, "sats": 123241660615.58272}}, "community_data": {"facebook_likes": null, "twitter_followers": 16529, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 20, "stars": 147, "subscribers": 25, "total_issues": 31, "closed_issues": 11, "pull_requests_merged": 137, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 3896, "deletions": -1811}, "commit_count_4_weeks": 80}, "public_interest_stats": {"alexa_rank": 352906, "bing_matches": null}}, "BRD_20190317": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 0.87425688758296, "ars": 9.817709052701058, "aud": 0.33575831886856927, "bch": 0.0018632819139944147, "bdt": 20.01320175990854, "bhd": 0.08972651572722991, "bmd": 0.23801083790397495, "bnb": 0.015899185982872443, "brl": 0.907868540100924, "btc": 6.15588131148912e-05, "cad": 0.3164949117028106, "chf": 0.23878389710548728, "clp": 159.15666724865366, "cny": 1.5963386898219585, "czk": 5.38994464295165, "dkk": 1.5671073887647846, "eos": 0.06655190571211558, "eth": 0.001808295153622905, "eur": 0.2100281417024424, "gbp": 0.17918764937019696, "hkd": 1.8683731770043102, "huf": 66.08132903565956, "idr": 3395.2325634487015, "ils": 0.856910419705679, "inr": 16.563697833580992, "jpy": 26.462657257705207, "krw": 269.2782721731662, "kwd": 0.07235481870113254, "lkr": 42.53771085104557, "ltc": 0.004297481889417985, "mmk": 361.95854595476766, "mxn": 4.592363184810294, "myr": 0.9731073107704018, "ngn": 85.564896226479, "nok": 2.0379218634610723, "nzd": 0.34703432032510806, "php": 12.529853975137064, "pkr": 33.15490972002373, "pln": 0.9030607211752626, "rub": 15.559720517134481, "sar": 0.8927072497264389, "sek": 2.211285863649433, "sgd": 0.3219658288228718, "thb": 7.520309439832952, "try": 1.2999378431091901, "twd": 7.3571475362005065, "uah": 6.3472730252232035, "usd": 0.23801083790397495, "vef": 59142.75193856359, "vnd": 5506.522371587938, "xag": 0.015402266827427454, "xau": 0.00018173317528158021, "xdr": 0.1705004917975399, "xlm": 2.2147020511068862, "xrp": 0.7599228386026233, "zar": 3.432866492736393, "bits": 61.558813114891194, "link": 0.4935795215866082, "sats": 6155.88131148912}, "market_cap": {"aed": 52393750.07350058, "ars": 588370079.4439005, "aud": 20121817.390005093, "bch": 111665.49363791362, "bdt": 1199380532.2805529, "bhd": 5377262.34330914, "bmd": 14263862.868042883, "bnb": 952829.7558647206, "brl": 54408078.523862876, "btc": 3689.186914020033, "cad": 18967371.648780014, "chf": 14310191.894638298, "clp": 9538174379.628174, "cny": 95667728.25596347, "czk": 323016514.41781133, "dkk": 93915911.93782501, "eos": 3988420.2965056766, "eth": 108370.1663477606, "eur": 12586874.77450994, "gbp": 10738620.47952042, "hkd": 111970610.32099332, "huf": 3960218886.6834226, "idr": 203474480896.05328, "ils": 51354185.483814664, "inr": 992653597.4854128, "jpy": 1585892968.4547064, "krw": 16137703566.134218, "kwd": 4336185.784159297, "lkr": 2549262376.6341543, "ltc": 257545.80290703737, "mmk": 21691983057.92267, "mxn": 275217882.0311137, "myr": 58317803.33599333, "ngn": 5127858701.061417, "nok": 122131572.88208374, "nzd": 20797582.157241497, "php": 750907481.490666, "pkr": 1986956097.5183744, "pln": 54119948.49392834, "rub": 932485771.1354365, "sar": 53499470.459168434, "sek": 132521185.1649488, "sgd": 19295240.800664876, "thb": 450688143.1101173, "try": 77904583.22981796, "twd": 440909937.04522806, "uah": 380388694.9649676, "usd": 14263862.868042883, "vef": 3544393653328.925, "vnd": 330002955663.0071, "xag": 923049.6552937094, "xau": 10891.17249289415, "xdr": 10218003.748699727, "xlm": 132725915.46149226, "xrp": 45541771.35620543, "zar": 205729862.25293845, "bits": 3689186914.020033, "link": 29579958.090925284, "sats": 368918691402.0033}, "total_volume": {"aed": 4661483.858119003, "ars": 52347419.76057013, "aud": 1790242.668790516, "bch": 9934.90436114619, "bdt": 106709158.69020234, "bhd": 478416.25344707805, "bmd": 1269059.12290165, "bnb": 84773.4800480585, "brl": 4840699.118396063, "btc": 328.22779864322183, "cad": 1687531.368678468, "chf": 1273181.0269328356, "clp": 848613543.4892017, "cny": 8511579.537301358, "czk": 28738852.740110584, "dkk": 8355720.0411222065, "eos": 354850.6607271609, "eth": 9641.718342800148, "eur": 1119857.1108812252, "gbp": 955417.505972121, "hkd": 9962050.661821816, "huf": 352341574.88241386, "idr": 18103170834.412537, "ils": 4568993.5601828, "inr": 88316616.29279612, "jpy": 141097258.02763325, "krw": 1435775155.912944, "kwd": 385791.4352438555, "lkr": 226808453.33879784, "ltc": 22913.908649281013, "mmk": 1929940665.31305, "mxn": 24486197.547493476, "myr": 5188548.223983397, "ngn": 456226754.68314314, "nok": 10866073.81143467, "nzd": 1850365.6137971047, "php": 66808409.38087229, "pkr": 176779935.82019994, "pln": 4815064.124113444, "rub": 82963471.10057257, "sar": 4759860.052267218, "sek": 11790439.978787621, "sgd": 1716701.961677488, "thb": 40097826.57676202, "try": 6931188.485073856, "twd": 39227857.359653115, "uah": 33843268.6895412, "usd": 1269059.12290165, "vef": 315345509314.2625, "vnd": 29360438006.377842, "xag": 82123.93772840805, "xau": 968.9900932915555, "xdr": 909098.1170453343, "xlm": 11808654.879825752, "xrp": 4051861.753535179, "zar": 18303832.62659718, "bits": 328227798.64322186, "link": 2631735.597685806, "sats": 32822779864.32218}}, "community_data": {"facebook_likes": null, "twitter_followers": 152, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 207, "stars": 170, "subscribers": 30, "total_issues": 21, "closed_issues": 10, "pull_requests_merged": 7, "pull_request_contributors": 5, "code_additions_deletions_4_weeks": {"additions": 28, "deletions": -7}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "RDN_20190324": {"id": "raiden-network", "symbol": "rdn", "name": "Raiden Network Token", "localization": {"en": "Raiden Network Token", "de": "Raiden Network Token", "es": "Raiden Network Token", "fr": "Raiden Network Token", "it": "Raiden Network Token", "pl": "Raiden Network Token", "ro": "Raiden Network Token", "hu": "Raiden Network Token", "nl": "Raiden Network Token", "pt": "Raiden Network Token", "sv": "Raiden Network Token", "vi": "Raiden Network Token", "tr": "Raiden Network Token", "ru": "Raiden Network Token", "ja": "\u30e9\u30a4\u30c7\u30f3\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "\u96f7\u7535\u7f51\u7edc", "zh-tw": "\u96f7\u96fb\u7db2\u7d61", "ko": "\ub808\uc774\ub4e0\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Raiden Network Token", "th": "Raiden Network Token", "id": "Raiden Network Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1132/thumb/raiden-logo.jpg?1547035131", "small": "https://assets.coingecko.com/coins/images/1132/small/raiden-logo.jpg?1547035131"}, "market_data": {"current_price": {"aed": 1.2593395199450805, "ars": 14.007019008144852, "aud": 0.4805808050270927, "bch": 0.002164593444037888, "bdt": 28.872738050877427, "bhd": 0.12927427718100867, "bmd": 0.34284711805519075, "bnb": 0.0226123164892125, "brl": 1.2944535789291811, "btc": 8.479887370796867e-05, "cad": 0.45560850664218927, "chf": 0.33979097884484716, "clp": 227.1338027535469, "cny": 2.2951900318204754, "czk": 7.69313825370959, "dkk": 2.23893327676015, "eos": 0.09244435767078024, "eth": 0.0024649656989543783, "eur": 0.30001797037350053, "gbp": 0.25965937902451536, "hkd": 2.6910118294748417, "huf": 94.04777394191119, "idr": 4821.126839380242, "ils": 1.237952373873687, "inr": 23.59987417153958, "jpy": 37.94275673165239, "krw": 386.0285421792247, "kwd": 0.10409249920697225, "lkr": 61.17157375170845, "ltc": 0.005685920170145639, "mmk": 528.2759818553403, "mxn": 6.4515506718431705, "myr": 1.3923014607278918, "ngn": 123.52228993974218, "nok": 2.911309616569678, "nzd": 0.4955707667227016, "php": 18.103182551179373, "pkr": 48.02228554934874, "pln": 1.2837094359435683, "rub": 21.88893711338645, "sar": 1.2859338280455095, "sek": 3.128867026649897, "sgd": 0.4613625098245088, "thb": 10.847511391707204, "try": 1.861396887300134, "twd": 10.545938609653343, "uah": 9.325291444063481, "usd": 0.34284711805519075, "vef": 85193.27201465608, "vnd": 7908.812042523778, "xag": 0.022097820148532715, "xau": 0.00026061523678965354, "xdr": 0.2452100872340797, "xlm": 3.122132526973766, "xrp": 1.0796238689311115, "zar": 4.880008737796027, "bits": 84.79887370796867, "link": 0.7105754472333293, "sats": 8479.887370796867}, "market_cap": {"aed": 63685934.73227156, "ars": 708330239.5259621, "aud": 24314760.968541987, "bch": 109566.29271590381, "bdt": 1460120390.0361485, "bhd": 6536407.09136363, "bmd": 17338087.813334383, "bnb": 1144129.8762969768, "brl": 65452859.26132839, "btc": 4290.267448418423, "cad": 23045474.235903405, "chf": 17184333.65060574, "clp": 11486742432.761114, "cny": 116069828.86636682, "czk": 389061870.5428115, "dkk": 113229520.65887445, "eos": 4677676.786016175, "eth": 124709.24633608568, "eur": 15172716.688239224, "gbp": 13132110.443048863, "hkd": 136095771.08105123, "huf": 4757556783.999454, "idr": 245297098168.4833, "ils": 62604367.47638794, "inr": 1193466910.5310285, "jpy": 1919407232.0703726, "krw": 19521272922.077137, "kwd": 5263739.431601442, "lkr": 3093501626.623706, "ltc": 287761.1423438428, "mmk": 26715392607.176296, "mxn": 326289323.61463416, "myr": 70409939.93377528, "ngn": 6246633549.168827, "nok": 147228470.57555443, "nzd": 25066627.14656722, "php": 915397583.2193282, "pkr": 2428530269.044276, "pln": 64919279.60887288, "rub": 1106936345.972083, "sar": 65026498.34391038, "sek": 158236751.95190853, "sgd": 23333858.650502607, "thb": 548741810.2481266, "try": 94133974.91242936, "twd": 533300751.97479874, "uah": 471588394.440233, "usd": 17338087.813334383, "vef": 4308300561702.891, "vnd": 399983441125.18414, "xag": 1117578.811033665, "xau": 13180.067593940528, "xdr": 12400495.151589584, "xlm": 157967461.2125693, "xrp": 54624932.99433252, "zar": 246826387.81956545, "bits": 4290267448.4184227, "link": 35950462.2833692, "sats": 429026744841.8423}, "total_volume": {"aed": 3551235.2648537373, "ars": 39498657.08920964, "aud": 1355198.8763907263, "bch": 6103.977879510824, "bdt": 81418778.60200222, "bhd": 364542.97248107905, "bmd": 966801.0546863185, "bnb": 63764.897761667184, "brl": 3650254.062073672, "btc": 239.1259433712915, "cad": 1284779.0211694858, "chf": 958182.9900848457, "clp": 640498894.3838629, "cny": 6472249.660597562, "czk": 21694025.662880983, "dkk": 6313610.175937239, "eos": 260685.5878004556, "eth": 6951.003266508602, "eur": 846026.3333327952, "gbp": 732218.3803793396, "hkd": 7588435.01344767, "huf": 265207091.5856531, "idr": 13595186506.246223, "ils": 3490925.248261371, "inr": 66549730.2965106, "jpy": 106995495.35067925, "krw": 1088569167.0239372, "kwd": 293532.40181542165, "lkr": 172498874.587166, "ltc": 16033.833530647022, "mmk": 1489695405.1134129, "mxn": 18192849.42303679, "myr": 3926177.149479025, "ngn": 348322835.170479, "nok": 8209656.898340587, "nzd": 1397469.3521037211, "php": 51049505.92246693, "pkr": 135418948.77495816, "pln": 3619956.450621915, "rub": 61725026.616026185, "sar": 3626229.0558647173, "sek": 8823151.142403388, "sgd": 1301004.8432702844, "thb": 30589101.969747763, "try": 5248988.190537755, "twd": 29738691.19363202, "uah": 26296565.22860591, "usd": 966801.0546863185, "vef": 240238114595.11523, "vnd": 22302208247.808487, "xag": 62314.05982660425, "xau": 734.9138217198059, "xdr": 691472.5499295855, "xlm": 8804160.399746424, "xrp": 3044451.7109200163, "zar": 13761228.682167765, "bits": 239125943.3712915, "link": 2003765.1059058807, "sats": 23912594337.12915}}, "community_data": {"facebook_likes": null, "twitter_followers": 25161, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 4464, "reddit_accounts_active_48h": "1723.5"}, "developer_data": {"forks": 353, "stars": 1664, "subscribers": 220, "total_issues": 1353, "closed_issues": 1131, "pull_requests_merged": 2020, "pull_request_contributors": 66, "code_additions_deletions_4_weeks": {"additions": 16326, "deletions": -11826}, "commit_count_4_weeks": 297}, "public_interest_stats": {"alexa_rank": 918297, "bing_matches": null}}, "BLZ_20190413": {"id": "bluzelle", "symbol": "blz", "name": "Bluzelle", "localization": {"en": "Bluzelle", "de": "Bluzelle", "es": "Bluzelle", "fr": "Bluzelle", "it": "Bluzelle", "pl": "Bluzelle", "ro": "Bluzelle", "hu": "Bluzelle", "nl": "Bluzelle", "pt": "Bluzelle", "sv": "Bluzelle", "vi": "Bluzelle", "tr": "Bluzelle", "ru": "Bluzelle", "ja": "\u30d6\u30eb\u30bc\u30eb", "zh": "Bluzelle", "zh-tw": "Bluzelle", "ko": "\ube14\ub8e8\uc824", "ar": "Bluzelle", "th": "Bluzelle", "id": "Bluzelle"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2848/thumb/ColorIcon_3x.png?1622516510", "small": "https://assets.coingecko.com/coins/images/2848/small/ColorIcon_3x.png?1622516510"}, "market_data": {"current_price": {"aed": 0.2898540908516973, "ars": 3.424655003081192, "aud": 0.11069939456029922, "bch": 0.0002681025197429424, "bdt": 6.655014750623406, "bhd": 0.02974925889655535, "bmd": 0.0789109196774396, "bnb": 0.004302768308858018, "brl": 0.30378368312591847, "btc": 1.5265222986686743e-05, "cad": 0.10516852820010757, "chf": 0.07888180154807853, "clp": 52.453420168096315, "cny": 0.5296366780186296, "czk": 1.7951490096644922, "dkk": 0.5228575198200605, "eos": 0.014275137903947709, "eth": 0.00045077518775614743, "eur": 0.0700406221074183, "gbp": 0.06043574278611971, "hkd": 0.6187997043805621, "huf": 22.576218815189208, "idr": 1116.0430375620454, "ils": 0.2825563300890071, "inr": 5.466280455407023, "jpy": 8.767197165244712, "krw": 90.04446133472945, "kwd": 0.024022535633724217, "lkr": 13.789971554133064, "ltc": 0.0009160120286951781, "mmk": 118.70683736484898, "mxn": 1.4927708878398704, "myr": 0.323061305159438, "ngn": 28.416237957481783, "nok": 0.6752282717545409, "nzd": 0.11684971163995891, "php": 4.103211974160499, "pkr": 11.169840680341574, "pln": 0.3001116423896481, "rub": 5.121081954306796, "sar": 0.29595934979622024, "sek": 0.7302522247582623, "sgd": 0.10679267274890865, "thb": 2.5070393736120944, "try": 0.44871147820550356, "twd": 2.432981475494809, "uah": 2.1163499109816173, "usd": 0.0789109196774396, "vef": 19608.388377715837, "vnd": 1832.3712964735664, "xag": 0.005183162753035437, "xau": 6.048521993275744e-05, "xdr": 0.05661669100649069, "xlm": 0.6331900926746336, "xrp": 0.22669821656864658, "zar": 1.1114083802715882, "bits": 15.265222986686743, "link": 0.14795986548390225, "sats": 1526.5222986686742}, "market_cap": {"aed": 59674052.789617054, "ars": 705054887.5801657, "aud": 22790368.406943895, "bch": 55135.04448137211, "bdt": 1370109010.2867417, "bhd": 6124663.759716731, "bmd": 16245878.651124783, "bnb": 885587.0887988557, "brl": 62541824.02674968, "btc": 3140.3966150692627, "cad": 21651694.77228653, "chf": 16239883.92190251, "clp": 10798909737.342514, "cny": 109039575.70697874, "czk": 369578419.44951975, "dkk": 107643908.51793936, "eos": 2934953.0660864995, "eth": 92698.68184305467, "eur": 14419695.677830499, "gbp": 12442279.82017289, "hkd": 127396118.9124576, "huf": 4647905673.537143, "idr": 229766676548.4339, "ils": 58171617.68608262, "inr": 1125376935.3412635, "jpy": 1804957055.8708284, "krw": 18538009670.011982, "kwd": 4945667.854247316, "lkr": 2839026656.724649, "ltc": 188352.431549342, "mmk": 24438910137.800545, "mxn": 307325967.013305, "myr": 66510627.19770494, "ngn": 5850226501.804647, "nok": 139013416.76884794, "nzd": 24056572.189012557, "php": 844753604.2481515, "pkr": 2299604123.0667133, "pln": 61785838.30959813, "rub": 1054308786.8220452, "sar": 60930980.17497618, "sek": 150341537.98524794, "sgd": 21986067.44668399, "thb": 516139687.6855583, "try": 92379004.7574055, "twd": 500892930.5714803, "uah": 435706033.8121467, "usd": 16245878.651124783, "vef": 4036900082151.3887, "vnd": 377241601643.9428, "xag": 1067089.7444744562, "xau": 12452.465986087152, "xdr": 11656028.031094406, "xlm": 130362408.592962, "xrp": 46603650.23483695, "zar": 228812511.01294014, "bits": 3140396615.0692625, "link": 30438642.20896003, "sats": 314039661506.9263}, "total_volume": {"aed": 5296885.146633101, "ars": 62583226.49461852, "aud": 2022955.6776817613, "bch": 4899.390070460976, "bdt": 121615840.16158415, "bhd": 543647.3472204022, "bmd": 1442043.0538634227, "bnb": 78630.14621468542, "brl": 5551438.912630244, "btc": 278.96150321919714, "cad": 1921882.8800364756, "chf": 1441510.9399765453, "clp": 958550356.7056783, "cny": 9678747.830212139, "czk": 32805119.628793024, "dkk": 9554863.353497786, "eos": 260868.3759038174, "eth": 8237.608065079698, "eur": 1279944.4362216892, "gbp": 1104421.8397915415, "hkd": 11308141.117633497, "huf": 412564948.65376586, "idr": 20394922739.55971, "ils": 5163523.562968742, "inr": 99892534.43516386, "jpy": 160214528.3019269, "krw": 1645500908.3330112, "kwd": 438995.39871542616, "lkr": 252002292.88795182, "ltc": 16739.492945142716, "mmk": 2169286214.9852176, "mxn": 27279366.387038235, "myr": 5903724.262516858, "ngn": 519287301.82106936, "nok": 12339334.569106786, "nzd": 2135348.5132998773, "php": 74983390.76586665, "pkr": 204121194.27436748, "pln": 5484334.881161757, "rub": 93584268.06657451, "sar": 5408454.575667445, "sek": 13344859.654221322, "sgd": 1951563.010171093, "thb": 45814428.842767864, "try": 8199895.185355797, "twd": 44461071.43671689, "uah": 38674846.284272045, "usd": 1442043.0538634227, "vef": 358329878464.5322, "vnd": 33485331446.8956, "xag": 94718.75217791005, "xau": 1105.3260007863132, "xdr": 1034631.2821137137, "xlm": 11571115.615544414, "xrp": 4142754.7652762295, "zar": 20310227.549336854, "bits": 278961503.21919715, "link": 2703865.284345785, "sats": 27896150321.919716}}, "community_data": {"facebook_likes": null, "twitter_followers": 35450, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 29, "stars": 198, "subscribers": 57, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 261, "pull_request_contributors": 10, "code_additions_deletions_4_weeks": {"additions": 1839, "deletions": -748}, "commit_count_4_weeks": 25}, "public_interest_stats": {"alexa_rank": 1258307, "bing_matches": null}}, "ARDR_20190417": {"id": "ardor", "symbol": "ardr", "name": "Ardor", "localization": {"en": "Ardor", "de": "Ardor", "es": "Ardor", "fr": "Ardor", "it": "Ardor", "pl": "Ardor", "ro": "Ardor", "hu": "Ardor", "nl": "Ardor", "pt": "Ardor", "sv": "Ardor", "vi": "Ardor", "tr": "Ardor", "ru": "Ardor", "ja": "\u30a2\u30fc\u30c0\u30fc", "zh": "\u963f\u6735\u5e01", "zh-tw": "\u963f\u6735\u5e63", "ko": "\uc544\ub354", "ar": "Ardor", "th": "Ardor", "id": "Ardor"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/525/thumb/Ardor_Vertical_1.png?1606797362", "small": "https://assets.coingecko.com/coins/images/525/small/Ardor_Vertical_1.png?1606797362"}, "market_data": {"current_price": {"aed": 0.294265533263888, "ars": 3.4332836451341477, "aud": 0.11175025353867084, "bch": 0.00028766311805079685, "bdt": 6.759075001827604, "bhd": 0.03015000442093731, "bmd": 0.08011373869622505, "bnb": 0.004323180705722492, "brl": 0.31110968716598586, "btc": 1.5788791400735498e-05, "cad": 0.1068354358971348, "chf": 0.08025393773894349, "clp": 52.964263051737134, "cny": 0.5370985269672327, "czk": 1.8160662970092516, "dkk": 0.5292433748880664, "eos": 0.015062732241324185, "eth": 0.0004886606025520563, "eur": 0.0708445791290718, "gbp": 0.06126297598100324, "hkd": 0.6283200355336884, "huf": 22.788753540834733, "idr": 1134.9324275102892, "ils": 0.2855493988349546, "inr": 5.540866452577657, "jpy": 8.975524899138357, "krw": 90.89865019951083, "kwd": 0.02436827601296951, "lkr": 14.033501175570906, "ltc": 0.0010266317793375297, "mmk": 121.92614512709854, "mxn": 1.5026613512296145, "myr": 0.329103953900806, "ngn": 28.84292313771204, "nok": 0.6799672799139382, "nzd": 0.11859236739202193, "php": 4.149573372580623, "pkr": 11.387219248774741, "pln": 0.30351891042451895, "rub": 5.153596639720113, "sar": 0.30045856560632317, "sek": 0.7425982780969193, "sgd": 0.10837786570825325, "thb": 2.546295013851473, "try": 0.462690488740952, "twd": 2.4711082700850664, "uah": 2.1400823875929333, "usd": 0.08011373869622505, "vef": 19907.274039736458, "vnd": 1858.8337615907374, "xag": 0.00534822575764611, "xau": 6.207933497831787e-05, "xdr": 0.05744860065419862, "xlm": 0.6946183944306712, "xrp": 0.2463064499232765, "zar": 1.1180056496657198, "bits": 15.788791400735498, "link": 0.14958152763833135, "sats": 1578.8791400735497}, "market_cap": {"aed": 293886372.5010958, "ars": 3428859863.5538354, "aud": 111606263.48008642, "bch": 287459.334580296, "bdt": 6750365942.342976, "bhd": 30111156.178849123, "bmd": 80010512.24650355, "bnb": 4319555.686415682, "brl": 310708822.7324591, "btc": 15771.991767194844, "cad": 106697778.57478796, "chf": 80150530.64293493, "clp": 52896018666.61753, "cny": 536406476.2030084, "czk": 1813726297.9110959, "dkk": 528561445.4772385, "eos": 15047770.32754878, "eth": 488135.09894621104, "eur": 70753295.9795831, "gbp": 61184038.71490124, "hkd": 627510445.9724903, "huf": 22759390261.079132, "idr": 1133470068530.7632, "ils": 285181468.8002117, "inr": 5533727053.2488, "jpy": 8963959946.799297, "krw": 90781527405.12773, "kwd": 24336877.52053115, "lkr": 14015419027.276588, "ltc": 1025683.3190301302, "mmk": 121769043445.23303, "mxn": 1500725174.002767, "myr": 328679903.8776341, "ngn": 28805759068.18352, "nok": 679091142.9444919, "nzd": 118439561.27849902, "php": 4144226652.6037264, "pkr": 11372546831.35444, "pln": 303127826.697104, "rub": 5146956237.049202, "sar": 300071425.12928617, "sek": 741641441.1665145, "sgd": 108238220.96707001, "thb": 2543014115.9867487, "try": 462094312.63870054, "twd": 2467924250.2434015, "uah": 2137324894.1769738, "usd": 80010512.24650355, "vef": 19881623542628.277, "vnd": 1856438656669.2273, "xag": 5341334.575605978, "xau": 61999.34583469311, "xdr": 57374578.20582074, "xlm": 693933520.8712275, "xrp": 246043232.99544114, "zar": 1116565100.8177724, "bits": 15771991767.194843, "link": 149422369.48714706, "sats": 1577199176719.4844}, "total_volume": {"aed": 3471019.7187793525, "ars": 40497421.15647808, "aud": 1318154.149108158, "bch": 3393.1406918269954, "bdt": 79726913.14484741, "bhd": 355635.46537579084, "bmd": 944984.4964016345, "bnb": 50994.23405442608, "brl": 3669705.5441012913, "btc": 186.23725884506158, "cad": 1260181.2402229102, "chf": 946638.2192703378, "clp": 624741876.5089774, "cny": 6335365.060775846, "czk": 21421475.555130143, "dkk": 6242709.330903649, "eos": 177673.00182398185, "eth": 5764.013775027243, "eur": 835649.7901679652, "gbp": 722629.6443983292, "hkd": 7411371.657603556, "huf": 268805564.92392737, "idr": 13387136412.736546, "ils": 3368208.240524342, "inr": 65357490.23237796, "jpy": 105871127.90870476, "krw": 1072198309.307222, "kwd": 287436.879254982, "lkr": 165532669.63901532, "ltc": 12109.672208231405, "mmk": 1438184245.626186, "mxn": 17724696.205206893, "myr": 3881957.566853563, "ngn": 340217740.92195964, "nok": 8020578.59283678, "nzd": 1398860.5500233395, "php": 48946442.49020053, "pkr": 134318355.65708587, "pln": 3580168.2630672413, "rub": 60789435.176772535, "sar": 3544069.8553046985, "sek": 8759344.792495675, "sgd": 1278375.0267321311, "thb": 30034914.7413814, "try": 5457682.3602079265, "twd": 29148046.791508473, "uah": 25243419.04658618, "usd": 944984.4964016345, "vef": 234816969465.14008, "vnd": 21925940727.241932, "xag": 63085.18996217565, "xau": 732.259036416663, "xdr": 677637.0425556552, "xlm": 8193396.342933493, "xrp": 2905316.6202089787, "zar": 13187475.993718972, "bits": 186237258.84506157, "link": 1764394.3082256403, "sats": 18623725884.506157}}, "community_data": {"facebook_likes": null, "twitter_followers": 69171, "reddit_average_posts_48h": 0.217, "reddit_average_comments_48h": 0.174, "reddit_subscribers": 6582, "reddit_accounts_active_48h": "208.75"}, "developer_data": {"forks": 5, "stars": 11, "subscribers": 11, "total_issues": 10, "closed_issues": 2, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1030225, "bing_matches": null}}, "REQ_20190429": {"id": "request-network", "symbol": "req", "name": "Request", "localization": {"en": "Request", "de": "Request", "es": "Request", "fr": "Request", "it": "Request", "pl": "Request", "ro": "Request", "hu": "Request", "nl": "Request", "pt": "Request", "sv": "Request", "vi": "Request", "tr": "Request", "ru": "Request", "ja": "\u30ea\u30af\u30a8\u30b9\u30c8\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "Request", "zh-tw": "Request", "ko": "\ub9ac\ud018\uc2a4\ud2b8\ub124\ud2b8\uc6cc\ud06c", "ar": "Request", "th": "Request", "id": "Request"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1031/thumb/Request_icon_green.png?1643250951", "small": "https://assets.coingecko.com/coins/images/1031/small/Request_icon_green.png?1643250951"}, "market_data": {"current_price": {"aed": 0.07981030779174067, "ars": 0.9789487201805691, "aud": 0.030958454759142256, "bch": 8.126338186857413e-05, "bdt": 1.8332097626692494, "bhd": 0.008192540978642584, "bmd": 0.021728341993620327, "bnb": 0.0009737028354476762, "brl": 0.0859182099111736, "btc": 4.1760171018125515e-06, "cad": 0.029288675133616517, "chf": 0.022164994754324107, "clp": 14.660003701385664, "cny": 0.14651638289718122, "czk": 0.5017771211538093, "dkk": 0.14566319782045978, "eos": 0.004728738350587056, "eth": 0.00014088788134148926, "eur": 0.019509726177677746, "gbp": 0.016847700086671323, "hkd": 0.1704360281808581, "huf": 6.285779300797695, "idr": 306.88670580517436, "ils": 0.07889126411043673, "inr": 1.5246777576923365, "jpy": 2.4234670027956833, "krw": 25.204876712599596, "kwd": 0.0066145635980399044, "lkr": 3.8081092178018996, "ltc": 0.0003035080155900439, "mmk": 33.11315544032346, "mxn": 0.41340154440486704, "myr": 0.09015740943412896, "ngn": 7.833067288700128, "nok": 0.1883226037549285, "nzd": 0.03275412839817904, "php": 1.1337848852271073, "pkr": 3.07700483057156, "pln": 0.08372712390453677, "rub": 1.4046569150221793, "sar": 0.08147693680767737, "sek": 0.20714625753415758, "sgd": 0.02960258449039837, "thb": 0.6968279277354054, "try": 0.1294897933708764, "twd": 0.6720584218113304, "uah": 0.574291051704092, "usd": 0.021728341993620327, "vef": 5399.224471800804, "vnd": 504.35796679123456, "xag": 0.0014528662392536836, "xau": 1.6993084422950633e-05, "xdr": 0.015651337576502618, "xlm": 0.2189709519769628, "xrp": 0.07479047734134213, "zar": 0.31354021397970333, "bits": 4.176017101812551, "link": 0.04847865802654486, "sats": 417.60171018125516}, "market_cap": {"aed": 58133315.080190755, "ars": 713059953.9361241, "aud": 22549939.40889538, "bch": 59289.71300156852, "bdt": 1335298205.0817442, "bhd": 5967394.177473499, "bmd": 15826784.612600934, "bnb": 710993.6932779234, "brl": 62582271.71514654, "btc": 3046.911444175127, "cad": 21333682.664986208, "chf": 16144839.676175768, "clp": 10678252444.198795, "cny": 106721591.32122958, "czk": 365491229.0299931, "dkk": 106100136.79663101, "eos": 3448308.250049887, "eth": 102804.67926269444, "eur": 14210759.116162112, "gbp": 12271756.426133899, "hkd": 124144507.16201119, "huf": 4578521230.256756, "idr": 223534303476.77728, "ils": 57463889.571431465, "inr": 1110565476.2662091, "jpy": 1765237783.916255, "krw": 18359070150.61711, "kwd": 4818005.598552598, "lkr": 2773802271.2044425, "ltc": 221457.75650846827, "mmk": 24119409532.09632, "mxn": 301119027.1090843, "myr": 65670077.393065125, "ngn": 5705555852.842637, "nok": 137172973.81404275, "nzd": 23857896.542849958, "php": 825841621.0855186, "pkr": 2241270535.9519515, "pln": 60986298.75481192, "rub": 1023143066.1015859, "sar": 59347276.94033108, "sek": 150884002.20606208, "sgd": 21562332.222284466, "thb": 507564982.52611154, "try": 94319532.9773801, "twd": 489523033.65877783, "uah": 418309909.83727205, "usd": 15826784.612600934, "vef": 3932760392641.343, "vnd": 367371100399.55554, "xag": 1058258.4279251003, "xau": 12377.653441976829, "xdr": 11400333.665364107, "xlm": 159822969.6169335, "xrp": 54559514.94280051, "zar": 228380676.0544625, "bits": 3046911444.175127, "link": 35371066.338598095, "sats": 304691144417.5127}, "total_volume": {"aed": 963045.3279156012, "ars": 11812659.508831251, "aud": 373565.72152405436, "bch": 980.5791056885339, "bdt": 22120752.89365807, "bhd": 98856.75837545558, "bmd": 262188.9179391678, "bnb": 11749.359104126897, "brl": 1036747.4193150585, "btc": 50.39065592492829, "cad": 353417.02755826514, "chf": 267457.86643407313, "clp": 176897551.98896676, "cny": 1767966.092555602, "czk": 6054783.217264138, "dkk": 1757670.9825038037, "eos": 57060.165553445826, "eth": 1700.0487736483847, "eur": 235417.5940951533, "gbp": 203295.78100275382, "hkd": 2056596.7628689343, "huf": 75848478.16572727, "idr": 3703103225.667148, "ils": 951955.523253531, "inr": 18397796.37179138, "jpy": 29243197.26331813, "krw": 304139144.80943483, "kwd": 79815.81258795953, "lkr": 45951229.75801856, "ltc": 3662.333656971258, "mmk": 399565801.9833715, "mxn": 4988383.542274748, "myr": 1087900.4772049906, "ngn": 94519104.91707, "nok": 2272428.320416197, "nzd": 395233.53808038327, "php": 13681017.738065759, "pkr": 37129228.141660415, "pln": 1010308.288830071, "rub": 16949543.44577084, "sar": 983156.0044882897, "sek": 2499567.29942742, "sgd": 357204.87085573253, "thb": 8408398.598309128, "try": 1562511.710191455, "twd": 8109512.932848422, "uah": 6929785.506535765, "usd": 262188.9179391678, "vef": 65150706040.42259, "vnd": 6085925451.919834, "xag": 17531.26986367, "xau": 205.05008705268477, "xdr": 188859.65918102363, "xlm": 2642252.0860453164, "xrp": 902472.6475696038, "zar": 3783388.9699402894, "bits": 50390655.92492829, "link": 584976.3822225692, "sats": 5039065592.492829}}, "community_data": {"facebook_likes": null, "twitter_followers": 42181, "reddit_average_posts_48h": 0.174, "reddit_average_comments_48h": 3.652, "reddit_subscribers": 30299, "reddit_accounts_active_48h": "203.541666666667"}, "developer_data": {"forks": 10, "stars": 129, "subscribers": 37, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 5, "pull_request_contributors": 3, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 359801, "bing_matches": null}}, "NAV_20190518": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.6605633806733553, "ars": 8.081926507526097, "aud": 0.2591769760941364, "bch": 0.00046033921665457854, "bdt": 15.185650734329348, "bhd": 0.06778956161569631, "bmd": 0.1798341493853299, "bnb": 0.007634127241018021, "brl": 0.7151284784457015, "btc": 2.2507999306162335e-05, "cad": 0.24206395843862946, "chf": 0.1813938509629487, "clp": 124.51679637439607, "cny": 1.2365216277585886, "czk": 4.132462868970308, "dkk": 1.198348053034415, "eos": 0.029739184323670172, "eth": 0.000822227417138185, "eur": 0.16048399491146825, "gbp": 0.13932902491437565, "hkd": 1.4115991638926773, "huf": 52.071564753351595, "idr": 2595.0099952010787, "ils": 0.643296604820123, "inr": 12.64821066825878, "jpy": 19.72514621391025, "krw": 213.62049469695242, "kwd": 0.05471777696517559, "lkr": 31.78748424535098, "ltc": 0.001964335419901707, "mmk": 277.2041671604838, "mxn": 3.4454244846586057, "myr": 0.7499983200115188, "ngn": 64.83021085341143, "nok": 1.5723978685655706, "nzd": 0.2736699900272508, "php": 9.412197475700765, "pkr": 25.475872439164736, "pln": 0.6914533126791231, "rub": 11.670103339966778, "sar": 0.6743870519024557, "sek": 1.7272728363577106, "sgd": 0.24618198062540342, "thb": 5.666574047131742, "try": 1.085606787770063, "twd": 5.602732924099945, "usd": 0.1798341493853299, "vef": 44686.56377517643, "vnd": 4213.437223555511, "xag": 0.012152209921004934, "xau": 0.00013863774244413852, "xdr": 0.12939156965349172, "xlm": 1.58575268638274, "xrp": 0.44136731624005276, "zar": 2.5635827362008605, "bits": 22.507999306162336, "link": 0.21665896958003797, "sats": 2250.7999306162333}, "market_cap": {"aed": 42979843.1701836, "ars": 525854057.26296175, "aud": 16863462.48030479, "bch": 29903.5344151344, "bdt": 988060958.4099925, "bhd": 4410757.259732023, "bmd": 11700987.011035841, "bnb": 496630.3167855351, "brl": 46530144.94808512, "btc": 1464.991845558678, "cad": 15749996.556334686, "chf": 11802469.671382556, "clp": 8101739419.417842, "cny": 80454816.58918136, "czk": 268880490.8226966, "dkk": 77971036.3753617, "eos": 1931342.4922623946, "eth": 53445.33502434712, "eur": 10441960.80864839, "gbp": 9065503.500618182, "hkd": 91846312.49377532, "huf": 3388058969.366039, "idr": 168845452052.01752, "ils": 41856372.902319014, "inr": 822961318.7928467, "jpy": 1283425202.7694952, "krw": 13899310238.258879, "kwd": 3560235.915873849, "lkr": 2068266464.0706997, "ltc": 127687.75185388852, "mmk": 18036409494.171577, "mxn": 224178040.0457348, "myr": 48798966.32952492, "ngn": 4218205817.4784207, "nok": 102308750.0296931, "nzd": 17806456.72451119, "php": 612408715.3908668, "pkr": 1657598701.4943964, "pln": 44989710.008082196, "rub": 759320340.798057, "sar": 43879286.34073502, "sek": 112385757.05346717, "sgd": 16017937.457900386, "thb": 368698100.7177397, "try": 70635477.00037722, "twd": 364544250.32882166, "usd": 11700987.011035841, "vef": 2907550674264.8613, "vnd": 274149122361.62695, "xag": 790688.8148167224, "xau": 9020.524906547751, "xdr": 8418918.65937534, "xlm": 103101201.81207521, "xrp": 28719002.368849315, "zar": 166800623.7999262, "bits": 1464991845.5586782, "link": 14101814.17657149, "sats": 146499184555.8678}, "total_volume": {"aed": 864321.358139223, "ars": 10574884.863047794, "aud": 339122.9404024042, "bch": 602.3358675106168, "bdt": 19869830.285693362, "bhd": 88699.99106461904, "bmd": 235305.95365140546, "bnb": 9988.957030040352, "brl": 935717.6552901771, "btc": 29.450837116444507, "cad": 316731.2258529378, "chf": 237346.76218742385, "clp": 162925359.931028, "cny": 1617940.2067116972, "czk": 5407166.100741736, "dkk": 1567991.5766241592, "eos": 38912.56000050338, "eth": 1075.8524294152523, "eur": 209987.03303851403, "gbp": 182306.5818747774, "hkd": 1847022.3178890238, "huf": 68133606.68309104, "idr": 3395469123.872258, "ils": 841728.4569993834, "inr": 16549689.16332694, "jpy": 25809582.644019168, "krw": 279514065.57631195, "kwd": 71596.07190560587, "lkr": 41592680.36742251, "ltc": 2570.256099028269, "mmk": 362710815.11931264, "mxn": 4508203.235411923, "myr": 981343.4797031869, "ngn": 84827796.29133166, "nok": 2057421.1363464287, "nzd": 358086.4825131262, "php": 12315492.416457523, "pkr": 33334183.078624055, "pln": 904739.62649197, "rub": 15269873.964468202, "sar": 882409.0914904522, "sek": 2260068.9766905555, "sgd": 322119.4968856004, "thb": 7414490.599555781, "try": 1420474.0387729278, "twd": 7330956.986009526, "usd": 235305.95365140546, "vef": 58470621628.107796, "vnd": 5513117877.932573, "xag": 15900.691577255022, "xau": 181.40206578894148, "xdr": 169303.81018195438, "xlm": 2074895.3933385003, "xrp": 577511.8775460965, "zar": 3354347.7841546787, "bits": 29450837.116444506, "link": 283489.7911682201, "sats": 2945083711.6444507}}, "community_data": {"facebook_likes": null, "twitter_followers": 48644, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 1.652, "reddit_subscribers": 11296, "reddit_accounts_active_48h": "164.041666666667"}, "developer_data": {"forks": 64, "stars": 81, "subscribers": 22, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 187, "pull_request_contributors": 18, "code_additions_deletions_4_weeks": {"additions": 1128, "deletions": -1192}, "commit_count_4_weeks": 74}, "public_interest_stats": {"alexa_rank": 1061172, "bing_matches": null}}, "SNM_20190602": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.10222437136712981, "ars": 1.2367509724695607, "aud": 0.04022535348780194, "bch": 6.135872665455936e-05, "bdt": 2.3534681436081684, "bhd": 0.010491967229091655, "bmd": 0.027829930342972473, "bnb": 0.0008281665291633014, "brl": 0.11062119012028129, "btc": 3.2183550996466786e-06, "cad": 0.037610982001452756, "chf": 0.028060918764819132, "clp": 19.6117084423415, "cny": 0.19242448737041437, "czk": 0.6461636716822369, "dkk": 0.1866224200027205, "eos": 0.003493092671312709, "eth": 0.00010356171946287768, "eur": 0.024987603897183998, "gbp": 0.02203651808361519, "hkd": 0.21844686373761105, "huf": 8.144846563826022, "idr": 400.7507695961024, "ils": 0.10064694308535979, "inr": 1.9432276691910855, "jpy": 3.048727124177119, "krw": 33.22609213751925, "kwd": 0.008469566191067845, "lkr": 4.910168834164675, "ltc": 0.0002424486308126861, "mmk": 42.72917021407462, "mxn": 0.5326398198271831, "myr": 0.1167608067131052, "ngn": 10.01877492347009, "nok": 0.24334212792591695, "nzd": 0.042716716682035194, "php": 1.4545133312404552, "pkr": 4.174489551445882, "pln": 0.10729133895474449, "rub": 1.807751568281496, "sar": 0.10443598810155572, "sek": 0.26576748579628406, "sgd": 0.03842915412360591, "thb": 0.8859797474337007, "try": 0.1676264887886571, "twd": 0.8802546019934738, "uah": 0.7380775826259743, "usd": 0.027829930342972473, "vef": 6915.393774656478, "vnd": 652.5494214667001, "xag": 0.0019306229371401477, "xau": 2.1742411379750685e-05, "xdr": 0.020078765973778116, "xlm": 0.20462765305117173, "xrp": 0.06266413015946706, "zar": 0.4077916353564125, "bits": 3.2183550996466788, "link": 0.02372515872322632, "sats": 321.83550996466784}, "market_cap": {"aed": 41666653.76924211, "ars": 504099696.3785931, "aud": 16395854.081628071, "bch": 25009.816984398396, "bdt": 959273615.3346893, "bhd": 4276525.842577756, "bmd": 11343479.60779558, "bnb": 337560.67728696164, "brl": 45089197.09302666, "btc": 1311.8015386159864, "cad": 15330236.263792144, "chf": 11437630.488540277, "clp": 7993732361.098395, "cny": 78432221.05218092, "czk": 263376312.57767975, "dkk": 76067298.39310887, "eos": 1423784.5728270602, "eth": 42211.75685306895, "eur": 10184947.348492198, "gbp": 8982084.770881552, "hkd": 89038941.65945025, "huf": 3319839459.4154863, "idr": 163346013687.37134, "ils": 41023694.00159265, "inr": 792059597.9622862, "jpy": 1242661175.8145938, "krw": 13542955155.252846, "kwd": 3452195.1794792535, "lkr": 2001384816.8055215, "ltc": 98822.06191925086, "mmk": 17416409779.256817, "mxn": 217103990.56155983, "myr": 47591704.81626168, "ngn": 4083652658.8064084, "nok": 99186251.34260373, "nzd": 17411333.719597545, "php": 592859633.8136095, "pkr": 1701521941.1693416, "pln": 43731949.75795386, "rub": 736839539.2315378, "sar": 42568108.7501941, "sek": 108326827.2105654, "sgd": 15663723.22078177, "thb": 361125345.0539764, "try": 68324556.83025664, "twd": 358791775.7725399, "uah": 300840422.6783471, "usd": 11343479.60779558, "vef": 2818714502549.9805, "vnd": 265979144189.82697, "xag": 786921.9091783243, "xau": 8862.206878386378, "xdr": 8184105.010911962, "xlm": 83406231.38365759, "xrp": 25541899.452998772, "zar": 166215870.57127374, "bits": 1311801538.6159863, "link": 9670374.695587048, "sats": 131180153861.59863}, "total_volume": {"aed": 1119152.0615269803, "ars": 13539945.337143617, "aud": 440387.0298193945, "bch": 671.7551256099122, "bdt": 25765761.035573196, "bhd": 114866.02066488338, "bmd": 304681.980421597, "bnb": 9066.764275537322, "brl": 1211080.403977806, "btc": 35.23454041658814, "cad": 411764.89989660913, "chf": 307210.84085909615, "clp": 214708915.6898459, "cny": 2106662.6172290463, "czk": 7074197.626022756, "dkk": 2043141.603904811, "eos": 38242.366393866025, "eth": 1133.7933438192447, "eur": 273564.20039717836, "gbp": 241255.72319327213, "hkd": 2391555.5030222633, "huf": 89169751.8000865, "idr": 4387418029.123896, "ils": 1101882.382194704, "inr": 21274449.751136035, "jpy": 33377453.932215314, "krw": 363759140.9453939, "kwd": 92724.78114764592, "lkr": 53756511.2869739, "ltc": 2654.326765326137, "mmk": 467798806.6140898, "mxn": 5831338.891486973, "myr": 1278296.9050425761, "ngn": 109685512.95177492, "nok": 2664108.7686084015, "nzd": 467662.46538871643, "php": 15924006.882175421, "pkr": 45702297.06323968, "pln": 1174625.2050203604, "rub": 19791257.870443705, "sar": 1143364.8338291068, "sek": 2909621.508432123, "sgd": 420722.2454390249, "thb": 9699703.187711757, "try": 1835174.2151644807, "twd": 9637024.315381398, "uah": 8080470.80276119, "usd": 304681.980421597, "vef": 75709706948.28099, "vnd": 7144108792.411944, "xag": 21136.4531885635, "xau": 238.035844024177, "xdr": 219822.25991655418, "xlm": 2240262.832580102, "xrp": 686046.678632969, "zar": 4464501.402933907, "bits": 35234540.41658814, "link": 259742.95503167412, "sats": 3523454041.658814}}, "community_data": {"facebook_likes": null, "twitter_followers": 31445, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.087, "reddit_subscribers": 10005, "reddit_accounts_active_48h": "97.0416666666667"}, "developer_data": {"forks": 60, "stars": 327, "subscribers": 71, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1502, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 542, "deletions": -227}, "commit_count_4_weeks": 11}, "public_interest_stats": {"alexa_rank": 15277898, "bing_matches": null}}, "DVI_20210822": {"id": "dvision-network", "symbol": "dvi", "name": "Dvision Network", "localization": {"en": "Dvision Network", "de": "Dvision Network", "es": "Dvision Network", "fr": "Dvision Network", "it": "Dvision Network", "pl": "Dvision Network", "ro": "Dvision Network", "hu": "Dvision Network", "nl": "Dvision Network", "pt": "Dvision Network", "sv": "Dvision Network", "vi": "Dvision Network", "tr": "Dvision Network", "ru": "Dvision Network", "ja": "Dvision Network", "zh": "Dvision Network", "zh-tw": "Dvision Network", "ko": "Dvision Network", "ar": "Dvision Network", "th": "Dvision Network", "id": "Dvision Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13020/thumb/WGAhHOLv_400x400.png?1604396086", "small": "https://assets.coingecko.com/coins/images/13020/small/WGAhHOLv_400x400.png?1604396086"}, "market_data": {"current_price": {"aed": 1.2879523436065865, "ars": 34.10219541964146, "aud": 0.4846371258746379, "bch": 0.0005497368985058023, "bdt": 29.790446755093686, "bhd": 0.13220095174970686, "bmd": 0.35063496232347496, "bnb": 0.0008742898715844769, "brl": 1.8864511607965333, "btc": 7.785509510835774e-06, "cad": 0.44406164803456544, "chf": 0.321619217921283, "clp": 276.19906344123734, "cny": 2.2737625401790393, "czk": 7.623223089692327, "dkk": 2.227276058144118, "dot": 0.014481418312405854, "eos": 0.06953177715985492, "eth": 0.00011518636008484361, "eur": 0.2994990606881442, "gbp": 0.2550487158794348, "hkd": 2.7308327453158046, "huf": 104.94347267751505, "idr": 5050.002513115734, "ils": 1.1337571125752182, "inr": 26.041465802535225, "jpy": 38.507432832288686, "krw": 410.5068299065116, "kwd": 0.10549729428907594, "lkr": 69.9567367498494, "ltc": 0.002081640302571725, "mmk": 577.1862760629808, "mxn": 7.026401710162141, "myr": 1.4859909703268845, "ngn": 144.4471239545974, "nok": 3.123519358670737, "nzd": 0.5095329094695289, "php": 17.67985211663966, "pkr": 57.60931344006314, "pln": 1.364749815594529, "rub": 25.904385064014843, "sar": 1.31502837539721, "sek": 3.060790413276105, "sgd": 0.4772913234139607, "thb": 11.669163103271856, "try": 2.9665797077892586, "twd": 9.767007002512846, "uah": 9.339388030401478, "usd": 0.35063496232347496, "vef": 0.03510907877744959, "vnd": 8000.758934980669, "xag": 0.014913023887361621, "xau": 0.0001961346788748825, "xdr": 0.24685998696933273, "xlm": 1.0145766393740756, "xrp": 0.30132842079701827, "yfi": 9.35665173160819e-06, "zar": 5.251074132260136, "bits": 7.785509510835774, "link": 0.01361542831057487, "sats": 778.5509510835774}, "market_cap": {"aed": 289824473.9792697, "ars": 7674249401.178449, "aud": 109050600.71324846, "bch": 123514.46585063735, "bdt": 6703664621.801986, "bhd": 29748826.88060162, "bmd": 78902448.54058288, "bnb": 196309.31896811846, "brl": 424526734.12775236, "btc": 1751.4239564908528, "cad": 99891683.38910615, "chf": 72361751.16636276, "clp": 62152337136.37677, "cny": 511658708.05111873, "czk": 1714952609.2744231, "dkk": 501078599.8238629, "dot": 3244168.422999714, "eos": 15591950.38040089, "eth": 25870.58578305003, "eur": 67373696.1745241, "gbp": 57380069.84727109, "hkd": 614500238.3813624, "huf": 23609481486.738525, "idr": 1136388569983.3176, "ils": 255126333.2090621, "inr": 5860041456.762399, "jpy": 8663883361.998703, "krw": 92359254905.88597, "kwd": 23739774.20464787, "lkr": 15742177519.593424, "ltc": 467085.9148495295, "mmk": 129882685239.40352, "mxn": 1581112358.376246, "myr": 334388576.9149902, "ngn": 32504550285.400326, "nok": 702785292.6876992, "nzd": 114639261.1433779, "php": 3977023160.3888025, "pkr": 12963669849.241861, "pln": 307026470.2002932, "rub": 5827837422.390559, "sar": 295902408.4927984, "sek": 688674299.888253, "sgd": 107375659.53562894, "thb": 2626662511.9159966, "try": 667315485.9707668, "twd": 2198111674.010238, "uah": 2101617530.055291, "usd": 78902448.54058288, "vef": 7900502.172368571, "vnd": 1799779414077.824, "xag": 3355766.1108266655, "xau": 44135.66264014584, "xdr": 55550243.163166285, "xlm": 227433201.0616511, "xrp": 67437513.26458772, "yfi": 2097.3827161702557, "zar": 1181499230.1800807, "bits": 1751423956.4908528, "link": 3053125.746581362, "sats": 175142395649.08527}, "total_volume": {"aed": 5050284.09315683, "ars": 133720611.57733993, "aud": 1900346.064749699, "bch": 2155.613542478457, "bdt": 116813498.66873737, "bhd": 518382.8167524784, "bmd": 1374900.3847209075, "bnb": 3428.2419323893314, "brl": 7397101.559836977, "btc": 30.528330520050194, "cad": 1741242.5922297956, "chf": 1261124.628084484, "clp": 1083024339.8106444, "cny": 8915816.524799675, "czk": 29891977.36979229, "dkk": 8733534.981594147, "dot": 56784.14804129816, "eos": 272646.134697825, "eth": 451.6656574855474, "eur": 1174387.6624139806, "gbp": 1000090.1657425256, "hkd": 10708067.921302611, "huf": 411501522.8434438, "idr": 19801934045.92364, "ils": 4445657.899971977, "inr": 102113095.37801027, "jpy": 150994310.05081958, "krw": 1609668341.7677429, "kwd": 413673.15325290465, "lkr": 274312474.813775, "ltc": 8162.471973391107, "mmk": 2263247303.5661416, "mxn": 27551737.426552672, "myr": 5826827.830447197, "ngn": 566402177.8689247, "nok": 12247860.10916311, "nzd": 1997966.7418656512, "php": 69325760.65974696, "pkr": 225896090.58773333, "pln": 5351420.275019965, "rub": 101575578.07260355, "sar": 5156453.900864998, "sek": 12001889.055436153, "sgd": 1871541.9016897941, "thb": 45756808.544546425, "try": 11632472.570667028, "twd": 38298125.19647777, "uah": 36621357.182889074, "usd": 1374900.3847209075, "vef": 137668.77552210467, "vnd": 31372360773.35605, "xag": 58476.54821474955, "xau": 769.0780282013352, "xdr": 967980.7421577552, "xlm": 3978330.633547523, "xrp": 1181560.900076355, "yfi": 36.68905114379226, "zar": 20590370.67154187, "bits": 30528330.520050194, "link": 53388.45133497982, "sats": 3052833052.005019}}, "community_data": {"facebook_likes": null, "twitter_followers": 57881, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 348108, "bing_matches": null}}, "BELT_20210825": {"id": "belt", "symbol": "belt", "name": "Belt", "localization": {"en": "Belt", "de": "Belt", "es": "Belt", "fr": "Belt", "it": "Belt", "pl": "Belt", "ro": "Belt", "hu": "Belt", "nl": "Belt", "pt": "Belt", "sv": "Belt", "vi": "Belt", "tr": "Belt", "ru": "Belt", "ja": "Belt", "zh": "Belt", "zh-tw": "Belt", "ko": "Belt", "ar": "Belt", "th": "Belt", "id": "Belt"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14319/thumb/belt_logo.jpg?1615387083", "small": "https://assets.coingecko.com/coins/images/14319/small/belt_logo.jpg?1615387083"}, "market_data": {"current_price": {"aed": 63.10586901609353, "ars": 1670.5555948800027, "aud": 24.09807801820932, "bch": 0.025359911580573324, "bdt": 1460.0941455499171, "bhd": 6.477762731478531, "bmd": 17.181483028694885, "bnb": 0.03816786453511067, "brl": 92.41031438462385, "btc": 0.0003503999383947788, "cad": 22.028379391089697, "chf": 15.75456086316175, "clp": 13515.46999486226, "cny": 111.70541191105967, "czk": 375.5399699289409, "dkk": 109.2175331685048, "dot": 0.614425479743804, "eos": 3.204464935899323, "eth": 0.005329109421282349, "eur": 14.688793470891806, "gbp": 12.612583061704319, "hkd": 133.86033292465564, "huf": 5144.539783642432, "idr": 247476.92710041255, "ils": 55.64635634435518, "inr": 1276.630579036207, "jpy": 1886.4409291355532, "krw": 20192.36611464338, "kwd": 5.174272340023566, "lkr": 3422.9007704104406, "ltc": 0.09542177084962929, "mmk": 28241.09651053761, "mxn": 349.85193465273926, "myr": 72.81512507560878, "ngn": 7060.323197949917, "nok": 154.96666802901055, "nzd": 25.125118347732563, "php": 864.91807207581, "pkr": 2822.820242605796, "pln": 67.2947145784894, "rub": 1276.2216597401243, "sar": 64.42124899380411, "sek": 151.37573807601316, "sgd": 23.417588201374837, "thb": 572.8335993917697, "try": 145.94123499403696, "twd": 480.78943959196835, "uah": 457.26216480294045, "usd": 17.181483028694885, "vef": 1.7203818956632164, "vnd": 391617.95502863516, "xag": 0.7463732443969998, "xau": 0.009642935535024712, "xdr": 12.117739168994886, "xlm": 46.140411941756504, "xrp": 14.076960739954483, "yfi": 0.00044288725392700544, "zar": 261.906366084986, "bits": 350.3999383947788, "link": 0.6164261234375162, "sats": 35039.99383947788}, "market_cap": {"aed": 302695660.9773704, "ars": 8013041225.415804, "aud": 115589623.71860951, "bch": 121512.39638090465, "bdt": 7003535001.850768, "bhd": 31071447.113095336, "bmd": 82413259.54351334, "bnb": 182946.48027524957, "brl": 443258315.42937464, "btc": 1679.8602742323992, "cad": 105662040.06073841, "chf": 75568838.33842453, "clp": 64828742354.71388, "cny": 535809806.92215174, "czk": 1801327217.1574519, "dkk": 523876366.940251, "dot": 2941580.7905783853, "eos": 15305830.792352878, "eth": 25535.785506091648, "eur": 70435646.0544973, "gbp": 60497925.56570232, "hkd": 642078820.6394274, "huf": 24676466618.927193, "idr": 1187055866486.9033, "ils": 266915120.21395847, "inr": 6123527699.883814, "jpy": 9048563831.580044, "krw": 96855359145.91862, "kwd": 24819082.7645672, "lkr": 16418397009.87415, "ltc": 456633.4495050674, "mmk": 135462160782.5864, "mxn": 1678111152.81395, "myr": 349267393.94540894, "ngn": 33865775567.915836, "nok": 743318153.1267642, "nzd": 120515958.72108258, "php": 4148694116.7309427, "pkr": 13540031259.81762, "pln": 322788013.654078, "rub": 6121566264.30667, "sar": 309005055.301503, "sek": 726093781.882169, "sgd": 112325564.16112913, "thb": 2747672330.674629, "try": 700026467.8885558, "twd": 2306170241.806133, "uah": 2193318551.3960776, "usd": 82413259.54351334, "vef": 8252039.678091983, "vnd": 1878447402693.5325, "xag": 3580078.145995562, "xau": 46253.61778620135, "xdr": 58124341.27758947, "xlm": 221041452.81823656, "xrp": 67378805.71752296, "yfi": 2119.8944057529684, "zar": 1256268582.183033, "bits": 1679860274.2323997, "link": 2953373.5567610515, "sats": 167986027423.23996}, "total_volume": {"aed": 6036839.086282202, "ars": 159808833.44474864, "aud": 2305272.418441841, "bch": 2425.9820495495132, "bdt": 139675652.1213531, "bhd": 619676.2972882756, "bmd": 1643616.511825041, "bnb": 3651.217550093785, "brl": 8840163.467370274, "btc": 33.5199891375083, "cad": 2107280.7298108838, "chf": 1507114.160517969, "clp": 1292918056.6969323, "cny": 10685972.751630493, "czk": 35924937.00308784, "dkk": 10447977.080718242, "dot": 58777.22325286664, "eos": 306545.80116350856, "eth": 509.7937252281183, "eur": 1405160.6282894618, "gbp": 1206546.009000524, "hkd": 12805358.71705096, "huf": 492137408.62844604, "idr": 23674159151.374348, "ils": 5323246.541508226, "inr": 122125144.59318246, "jpy": 180460874.91583022, "krw": 1931643869.3572617, "kwd": 494981.68700215715, "lkr": 327441828.81008285, "ltc": 9128.245675539307, "mmk": 2701602210.894252, "mxn": 33467565.956258237, "myr": 6965646.777114511, "ngn": 675405246.8923192, "nok": 14824434.766754769, "nzd": 2403521.2390526924, "php": 82739867.23180248, "pkr": 270036873.5872321, "pln": 6437552.791865152, "rub": 122086026.52020104, "sar": 6162671.07919448, "sek": 14480918.91578332, "sgd": 2240175.3428744986, "thb": 54798457.20628703, "try": 13961043.013093056, "twd": 45993320.85040007, "uah": 43742652.65971428, "usd": 1643616.511825041, "vef": 164575.32132904112, "vnd": 37462990600.82444, "xag": 71399.62169892622, "xau": 922.4633310966856, "xdr": 1159208.2098434519, "xlm": 4413888.067940601, "xrp": 1346631.4327966105, "yfi": 42.36751869530382, "zar": 25054509.38841779, "bits": 33519989.137508295, "link": 58968.60900250027, "sats": 3351998913.7508297}}, "community_data": {"facebook_likes": null, "twitter_followers": 24278, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "MMDA_20210908": {"id": "pokerain", "symbol": "mmda", "name": "Pokerain", "localization": {"en": "Pokerain", "de": "Pokerain", "es": "Pokerain", "fr": "Pokerain", "it": "Pokerain", "pl": "Pokerain", "ro": "Pokerain", "hu": "Pokerain", "nl": "Pokerain", "pt": "Pokerain", "sv": "Pokerain", "vi": "Pokerain", "tr": "Pokerain", "ru": "Pokerain", "ja": "Pokerain", "zh": "Pokerain", "zh-tw": "Pokerain", "ko": "Pokerain", "ar": "Pokerain", "th": "Pokerain", "id": "Pokerain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/6617/thumb/download_%287%29.jpeg?1547042818", "small": "https://assets.coingecko.com/coins/images/6617/small/download_%287%29.jpeg?1547042818"}, "market_data": {"current_price": {"aed": 0.013643873558118505, "ars": 0.3636698090927406, "aud": 0.004981622200355055, "bch": 5.218263056772463e-06, "bdt": 0.31620048786180616, "bhd": 0.0014000051015237082, "bmd": 0.003714437971827974, "bnb": 7.431137466564541e-06, "brl": 0.019282486974740616, "btc": 7.432510194748161e-08, "cad": 0.004652946441979885, "chf": 0.003393740826216292, "clp": 2.8491596462906434, "cny": 0.023971125451191858, "czk": 0.07934132368773872, "dkk": 0.02325210312079522, "dot": 0.00011397097678057423, "eos": 0.0006486441336233828, "eth": 9.53955339849708e-07, "eur": 0.0031257106966071585, "gbp": 0.0026790049572391794, "hkd": 0.028867311863756854, "huf": 1.086881694936582, "idr": 52.936498477404974, "ils": 0.011888430172632632, "inr": 0.27113409970029295, "jpy": 0.40752770486012024, "krw": 4.292961685940182, "kwd": 0.001116504337761914, "lkr": 0.7393217970580852, "ltc": 1.734430952415573e-05, "mmk": 6.112326466753904, "mxn": 0.07400544068025827, "myr": 0.015401917050184712, "ngn": 1.5285655141666485, "nok": 0.03221253470118515, "nzd": 0.005193742609612236, "php": 0.18526711394944193, "pkr": 0.6211121004128887, "pln": 0.014090389861149915, "rub": 0.2705180601626647, "sar": 0.013930178722549019, "sek": 0.03174172968825593, "sgd": 0.00498221279599258, "thb": 0.12060240758131942, "try": 0.030914524351929856, "twd": 0.10260131998922398, "uah": 0.09990837846071463, "usd": 0.003714437971827974, "vef": 0.0003719266741191351, "vnd": 84.456674974604, "xag": 0.0001503214846452721, "xau": 2.032577602563985e-06, "xdr": 0.0026161380945659905, "xlm": 0.009931361195404982, "xrp": 0.0029644335407239576, "yfi": 8.917221802768406e-08, "zar": 0.05315810184680419, "bits": 0.07432510194748161, "link": 0.0001237345579427958, "sats": 7.43251019474816}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 2618.9824611015215, "ars": 69807.51086477883, "aud": 956.2373262247538, "bch": 1.0016612485366447, "bdt": 60695.63224653728, "bhd": 268.73517925278037, "bmd": 712.9975120062951, "bnb": 1.4264291301194634, "brl": 3701.3312222623854, "btc": 0.014266926294124937, "cad": 893.1470283773649, "chf": 651.4387328146959, "clp": 546904.7415844279, "cny": 4601.329443732631, "czk": 15229.805105832509, "dkk": 4463.310950346005, "dot": 21.877070905961563, "eos": 124.5091873814092, "eth": 0.183114589350171, "eur": 599.9895453458339, "gbp": 514.2430385569322, "hkd": 5541.167114183719, "huf": 208630.20198816172, "idr": 10161319.692233317, "ils": 2282.0198369273517, "inr": 52045.00383977034, "jpy": 78226.16553101466, "krw": 824046.8745012758, "kwd": 214.31635714641268, "lkr": 141915.03691069063, "ltc": 3.329292246090265, "mmk": 1173279.4022728123, "mxn": 14205.566354897615, "myr": 2956.444183534106, "ngn": 293412.7361408307, "nok": 6183.292673496593, "nzd": 996.9544751428975, "php": 35562.578323937225, "pkr": 119224.33101055521, "pln": 2704.6926050173097, "rub": 51926.75320240398, "sar": 2673.939596329452, "sek": 6092.920238849791, "sgd": 956.3506928291636, "thb": 23149.993942457008, "try": 5934.135692925992, "twd": 19694.63117589151, "uah": 19177.712970669556, "usd": 712.9975120062951, "vef": 71.39244087719034, "vnd": 16211712.131400162, "xag": 28.854659942113916, "xau": 0.39015936854496464, "xdr": 502.1755556662256, "xlm": 1906.3545755415726, "xrp": 569.0319114425859, "yfi": 0.017116874767068038, "zar": 10203.857123799604, "bits": 14266.926294124936, "link": 23.75121960079348, "sats": 1426692.6294124937}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "PEOS_20210912": {"id": "peos", "symbol": "peos", "name": "pEOS", "localization": {"en": "pEOS", "de": "pEOS", "es": "pEOS", "fr": "pEOS", "it": "pEOS", "pl": "pEOS", "ro": "pEOS", "hu": "pEOS", "nl": "pEOS", "pt": "pEOS", "sv": "pEOS", "vi": "pEOS", "tr": "pEOS", "ru": "pEOS", "ja": "pEOS", "zh": "pEOS", "zh-tw": "pEOS", "ko": "pEOS", "ar": "pEOS", "th": "pEOS", "id": "pEOS"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8366/thumb/AHBvYJJV_400x400.png?1557801507", "small": "https://assets.coingecko.com/coins/images/8366/small/AHBvYJJV_400x400.png?1557801507"}, "market_data": {"current_price": {"aed": 0.005259417534191536, "ars": 0.14034602483609768, "aud": 0.0019445039699196329, "bch": 2.163859985581985e-06, "bdt": 0.12197788710246098, "bhd": 0.0005398506018148666, "bmd": 0.0014318353300096693, "bnb": 3.4597990330890233e-06, "brl": 0.007620370809844455, "btc": 3.099790129316142e-08, "cad": 0.001817407106851325, "chf": 0.0013200218772538854, "clp": 1.1298656861454703, "cny": 0.009252233535456485, "czk": 0.030783314126943902, "dkk": 0.009008821529354852, "dot": 5.200618206269614e-05, "eos": 0.0003018385703697441, "eth": 4.0941656655040826e-07, "eur": 0.0012115202596164134, "gbp": 0.0010400135919525241, "hkd": 0.0111338083426222, "huf": 0.42382916113992714, "idr": 20.445105085441583, "ils": 0.0045890322326809915, "inr": 0.10568698733750627, "jpy": 0.1578541177922462, "krw": 1.6717103735240642, "kwd": 0.00043062161182974833, "lkr": 0.2859753044009608, "ltc": 7.984029792067056e-06, "mmk": 2.356518316060952, "mxn": 0.028554089701651852, "myr": 0.005948559878525166, "ngn": 0.5892618229683576, "nok": 0.012469554635470241, "nzd": 0.0020169534057827916, "php": 0.07175623140199455, "pkr": 0.24019767467379932, "pln": 0.00547364873626758, "rub": 0.10489052893518858, "sar": 0.005369916562114371, "sek": 0.012354018410856435, "sgd": 0.00192767990479202, "thb": 0.046891504544612675, "try": 0.012140388579618987, "twd": 0.0396416497631148, "uah": 0.038297081932798446, "usd": 0.0014318353300096693, "vef": 0.00014336967159386832, "vnd": 32.58226255968182, "xag": 5.970462663568328e-05, "xau": 7.996800318104005e-07, "xdr": 0.0010075395666679064, "xlm": 0.004349387764953048, "xrp": 0.0012948591307964193, "yfi": 4.142721309776233e-08, "zar": 0.020319747902299238, "bits": 0.03099790129316142, "link": 5.270599938997393e-05, "sats": 3.099790129316142}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 697.0895982026655, "ars": 18601.63286643782, "aud": 257.7269217137992, "bch": 0.2868006348820981, "bdt": 16167.097545894903, "bhd": 71.5524555071173, "bmd": 189.7771965051353, "bnb": 0.4585659727829028, "brl": 1010.0132175199798, "btc": 0.004108499547164656, "cad": 240.8813488660209, "chf": 174.95730545285295, "clp": 149753.77255329385, "cny": 1226.3022883768838, "czk": 4080.0579031032075, "dkk": 1194.0401649710122, "dot": 6.89296263748952, "eos": 40.006051311432024, "eth": 0.05426456979670276, "eur": 160.5763690560869, "gbp": 137.84466668150515, "hkd": 1475.688502304283, "huf": 56174.832616901156, "idr": 2709819.1000370034, "ils": 608.2359147989588, "inr": 14007.88187273618, "jpy": 20922.176805905172, "krw": 221570.52658688553, "kwd": 57.07511229452647, "lkr": 37903.51474184571, "ltc": 1.05821302142456, "mmk": 312335.80437774904, "mxn": 3784.5937858643624, "myr": 788.4293628805839, "ngn": 78101.478868862, "nok": 1652.729940929154, "nzd": 267.32945807976245, "php": 9510.658203378958, "pkr": 31836.09200810706, "pln": 725.4840623437634, "rub": 13902.318307180223, "sar": 711.7352737885561, "sek": 1637.416629165959, "sgd": 255.49703965486393, "thb": 6215.057057101887, "try": 1609.1018714473919, "twd": 5254.152484721538, "uah": 5075.941828788983, "usd": 189.7771965051353, "vef": 19.00239068605921, "vnd": 4318492.716846771, "xag": 7.913323846555235, "xau": 0.10599056424811809, "xdr": 133.54051986476887, "xlm": 576.4731455124463, "xrp": 171.62220442623195, "yfi": 0.0054908132212808745, "zar": 2693.2041064829796, "bits": 4108.499547164656, "link": 6.985717277393257, "sats": 410849.9547164656}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3485259, "bing_matches": null}}, "PTI_20210922": {"id": "paytomat", "symbol": "pti", "name": "Paytomat", "localization": {"en": "Paytomat", "de": "Paytomat", "es": "Paytomat", "fr": "Paytomat", "it": "Paytomat", "pl": "Paytomat", "ro": "Paytomat", "hu": "Paytomat", "nl": "Paytomat", "pt": "Paytomat", "sv": "Paytomat", "vi": "Paytomat", "tr": "Paytomat", "ru": "Paytomat", "ja": "Paytomat", "zh": "Paytomat", "zh-tw": "Paytomat", "ko": "Paytomat", "ar": "Paytomat", "th": "Paytomat", "id": "Paytomat"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/7623/thumb/paytomat.png?1548840578", "small": "https://assets.coingecko.com/coins/images/7623/small/paytomat.png?1548840578"}, "market_data": {"current_price": {"aed": 0.0004732303299133985, "ars": 0.01266316369845832, "aud": 0.00017731939173452272, "bch": 2.0500865639059074e-07, "bdt": 0.010994440819943076, "bhd": 4.855178269359521e-05, "bmd": 0.00012884027495600267, "bnb": 3.138324281295445e-07, "brl": 0.0006814490982697944, "btc": 2.670644208156286e-09, "cad": 0.00016440276764935843, "chf": 0.00012011559805680709, "clp": 0.10107648410573362, "cny": 0.0008331069859205037, "czk": 0.0027888421913442236, "dkk": 0.0008170931704656741, "dot": 3.6878729566338297e-06, "eos": 2.3499188692040325e-05, "eth": 3.7588947987488665e-08, "eur": 0.00010987666140605355, "gbp": 9.376685994637977e-05, "hkd": 0.0010027405398928024, "huf": 0.038770615539760356, "idr": 1.837693935793701, "ils": 0.0004131070156051779, "inr": 0.009495367213913714, "jpy": 0.014163282585638428, "krw": 0.15229178180349434, "kwd": 3.877770175488298e-05, "lkr": 0.02571837211973311, "ltc": 7.113382926786745e-07, "mmk": 0.23526917124843494, "mxn": 0.0025791858231998654, "myr": 0.0005374572069789653, "ngn": 0.05304740640763501, "nok": 0.0011219668823718618, "nzd": 0.0001830375808176201, "php": 0.006449099705242156, "pkr": 0.02165805022010404, "pln": 0.0005045514007552018, "rub": 0.009389840586711001, "sar": 0.0004831247476689183, "sek": 0.0011188811577866654, "sgd": 0.00017369472827918545, "thb": 0.0042922901823889015, "try": 0.0011137823039052835, "twd": 0.0035813731229520016, "uah": 0.003438125541929588, "usd": 0.00012884027495600267, "vef": 1.2900776731344541e-05, "vnd": 2.948267509757206, "xag": 5.751798357222337e-06, "xau": 7.344797554416834e-08, "xdr": 9.057960922451812e-05, "xlm": 0.0003985646872381806, "xrp": 0.00011988933636940643, "yfi": 3.804587053566134e-09, "zar": 0.0018926636391036788, "bits": 0.002670644208156286, "link": 4.546416064896386e-06, "sats": 0.2670644208156286}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 4078.0418898111925, "ars": 109124.2651951319, "aud": 1528.0421850847026, "bch": 1.766653225053713, "bdt": 94744.11800060018, "bhd": 418.39288636830355, "bmd": 1110.2754940950683, "bnb": 2.7044373688551433, "brl": 5872.358115818232, "btc": 0.023014160896314566, "cad": 1416.7337359751884, "chf": 1035.0909684614332, "clp": 871022.2278725218, "cny": 7179.263399917525, "czk": 24032.726901624952, "dkk": 7041.265038205477, "dot": 31.7800856175191, "eos": 202.50324166723425, "eth": 0.32392113268599027, "eur": 946.8573749456981, "gbp": 808.0318579905322, "hkd": 8641.073210677492, "huf": 334104.1016830883, "idr": 15836247.968700899, "ils": 3559.931830491712, "inr": 81825.91607043904, "jpy": 122051.47479037687, "krw": 1312367.8395302533, "kwd": 334.1651668352639, "lkr": 221626.95882408283, "ltc": 6.129926955233977, "mmk": 2027421.9023701597, "mxn": 22226.022221654774, "myr": 4631.51422361758, "ngn": 457133.7291837628, "nok": 9668.50105767867, "nzd": 1577.3184320636306, "php": 55574.837636377604, "pkr": 186637.31055738093, "pln": 4347.949862425696, "rub": 80916.54492700048, "sar": 4163.306606655706, "sek": 9641.909959595092, "sgd": 1496.8068046093256, "thb": 36988.62490536169, "try": 9597.970806916297, "twd": 30862.327909360578, "uah": 29627.898078689268, "usd": 1110.2754940950683, "vef": 111.17188522373915, "vnd": 25406567.68419611, "xag": 49.565873444317006, "xau": 0.6329347509187747, "xdr": 780.565862817608, "xlm": 3434.6139450830206, "xrp": 1033.141168161338, "yfi": 0.03278586429723416, "zar": 16309.947008256553, "bits": 23014.160896314566, "link": 39.178543701015414, "sats": 2301416.0896314564}}, "community_data": {"facebook_likes": null, "twitter_followers": 3582, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1798155, "bing_matches": null}}, "ETI_20210926": {"id": "etherinc", "symbol": "eti", "name": "EtherInc", "localization": {"en": "EtherInc", "de": "EtherInc", "es": "EtherInc", "fr": "EtherInc", "it": "EtherInc", "pl": "EtherInc", "ro": "EtherInc", "hu": "EtherInc", "nl": "EtherInc", "pt": "EtherInc", "sv": "EtherInc", "vi": "EtherInc", "tr": "EtherInc", "ru": "EtherInc", "ja": "EtherInc", "zh": "EtherInc", "zh-tw": "EtherInc", "ko": "EtherInc", "ar": "EtherInc", "th": "EtherInc", "id": "EtherInc"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3734/thumb/etherinc.png?1547394330", "small": "https://assets.coingecko.com/coins/images/3734/small/etherinc.png?1547394330"}, "market_data": {"current_price": {"aed": 0.0011149459966935844, "ars": 0.029895487463099894, "aud": 0.00041966014851153963, "bch": 5.568879884666468e-07, "bdt": 0.02592276245942185, "bhd": 0.0001144524090327622, "bmd": 0.0003035518640603286, "bnb": 8.023282064796972e-07, "brl": 0.0016055768745742913, "btc": 6.967688641808383e-09, "cad": 0.00038814569753666044, "chf": 0.00028118009167908193, "clp": 0.23907744813391452, "cny": 0.0019616432111170578, "czk": 0.006595848098980464, "dkk": 0.0019312121367450114, "dot": 9.67030523727064e-06, "eos": 7.101043426791008e-05, "eth": 9.889549123779058e-08, "eur": 0.000259679209595825, "gbp": 0.00022291482913202237, "hkd": 0.002363439635980516, "huf": 0.09224030493201167, "idr": 4.325113202283979, "ils": 0.0009718728966060339, "inr": 0.02242493675826962, "jpy": 0.0333387976778818, "krw": 0.358806947869293, "kwd": 9.135666545573229e-05, "lkr": 0.06064380176341418, "ltc": 1.886309352991577e-06, "mmk": 0.5572546571335967, "mxn": 0.006098372126565201, "myr": 0.0012726411900729278, "ngn": 0.12515045580844683, "nok": 0.0026299900455712105, "nzd": 0.0004343226142012458, "php": 0.015267565064868323, "pkr": 0.05114848909416533, "pln": 0.0012000522257164519, "rub": 0.022144381679878596, "sar": 0.0011385929904557494, "sek": 0.002640036094512283, "sgd": 0.0004110395791240905, "thb": 0.010153809852817955, "try": 0.0026274842249333864, "twd": 0.008414214526709155, "uah": 0.008083789216123608, "usd": 0.0003035518640603286, "vef": 3.039464814836067e-05, "vnd": 6.93591869385506, "xag": 1.3378517192696867e-05, "xau": 1.7175875124125583e-07, "xdr": 0.00021403836552317057, "xlm": 0.0010305322479284892, "xrp": 0.00030452495360215034, "yfi": 9.973690367590623e-09, "zar": 0.004493842505921916, "bits": 0.006967688641808383, "link": 1.2475044967907876e-05, "sats": 0.6967688641808383}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 6622.788139927866, "ars": 177579.43469471307, "aud": 2492.7846394397334, "bch": 3.3079191065957896, "bdt": 153981.41639106546, "bhd": 679.8482252738797, "bmd": 1803.1005009332644, "bnb": 4.765835965115053, "brl": 9537.139479586287, "btc": 0.04138812627385093, "cad": 2305.5885485333433, "chf": 1670.21199401448, "clp": 1420121.9545350373, "cny": 11652.176367181013, "czk": 39179.39047472875, "dkk": 11471.415541962462, "dot": 57.4416904718295, "eos": 421.80254763486005, "eth": 0.5874400091164059, "eur": 1542.4965824328772, "gbp": 1324.115868362846, "hkd": 14038.850345241352, "huf": 547908.1492185887, "idr": 25691207.022472452, "ils": 5772.932780823015, "inr": 133204.3037436156, "jpy": 198032.72491699932, "krw": 2131316.1407991834, "kwd": 542.6593236603735, "lkr": 360224.66762509436, "ltc": 11.204692647244793, "mmk": 3310097.1214108216, "mxn": 36224.37921877431, "myr": 7559.498850162712, "ngn": 743394.7087058206, "nok": 15622.161910613355, "nzd": 2579.879802936314, "php": 90689.45862583836, "pkr": 303822.4344072548, "pln": 7128.319821173531, "rub": 131537.8043335323, "sar": 6763.251472051075, "sek": 15681.835521691719, "sgd": 2441.5783883137306, "thb": 60313.71175621747, "try": 15607.277315978115, "twd": 49980.5016023686, "uah": 48017.77261408796, "usd": 1803.1005009332644, "vef": 180.54445315844757, "vnd": 41199412.5288486, "xag": 79.46849915275693, "xau": 1.0202483564430695, "xdr": 1271.3896035145574, "xlm": 6121.3697969532095, "xrp": 1808.8806605964019, "yfi": 0.05924380057301124, "zar": 26693.46043591623, "bits": 41388.12627385093, "link": 74.10186690973252, "sats": 4138812.627385093}}, "community_data": {"facebook_likes": null, "twitter_followers": 5644, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 199, "reddit_accounts_active_48h": "7.0"}, "developer_data": {"forks": 5, "stars": 7, "subscribers": 3, "total_issues": 1, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "TFF_20210929": {"id": "tutti-frutti-finance", "symbol": "tff", "name": "Tutti Frutti", "localization": {"en": "Tutti Frutti", "de": "Tutti Frutti", "es": "Tutti Frutti", "fr": "Tutti Frutti", "it": "Tutti Frutti", "pl": "Tutti Frutti", "ro": "Tutti Frutti", "hu": "Tutti Frutti", "nl": "Tutti Frutti", "pt": "Tutti Frutti", "sv": "Tutti Frutti", "vi": "Tutti Frutti", "tr": "Tutti Frutti", "ru": "Tutti Frutti", "ja": "Tutti Frutti", "zh": "Tutti Frutti", "zh-tw": "Tutti Frutti", "ko": "Tutti Frutti", "ar": "Tutti Frutti", "th": "Tutti Frutti", "id": "Tutti Frutti"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14445/thumb/VOUyAE3u_400x400.png?1616117977", "small": "https://assets.coingecko.com/coins/images/14445/small/VOUyAE3u_400x400.png?1616117977"}, "market_data": {"current_price": {"aed": 0.003071426876227782, "ars": 0.08240133484414591, "aud": 0.0011515802052980025, "bch": 1.6137314230351962e-06, "bdt": 0.07126711054330294, "bhd": 0.0003150650122144958, "bmd": 0.0008362174996536294, "bnb": 2.3813799248975942e-06, "brl": 0.004461303982402083, "btc": 1.9522194735131276e-08, "cad": 0.0010579823805617733, "chf": 0.0007722527144526248, "clp": 0.6629783202503877, "cny": 0.005407567705010133, "czk": 0.018153947430480443, "dkk": 0.00530550317808991, "dot": 2.7854330513239903e-05, "eos": 0.0002074134837048252, "eth": 2.8403964045261757e-07, "eur": 0.0007134900383169654, "gbp": 0.0006110467048693981, "hkd": 0.006510563673578262, "huf": 0.2546324097320286, "idr": 11.944321710677528, "ils": 0.0026749427109420128, "inr": 0.06172380592368339, "jpy": 0.09260732510789106, "krw": 0.9869540661411937, "kwd": 0.00025160279373078273, "lkr": 0.16701591330358528, "ltc": 5.505042539630013e-06, "mmk": 1.5567498063602407, "mxn": 0.016770091090303647, "myr": 0.003502496997299224, "ngn": 0.3441035011074679, "nok": 0.007172739225028967, "nzd": 0.0011928416853834115, "php": 0.04238131747442018, "pkr": 0.1414043791914288, "pln": 0.00328590412162645, "rub": 0.060759061794332894, "sar": 0.003136664384463264, "sek": 0.007234284833003475, "sgd": 0.0011317158585937308, "thb": 0.027932632224337603, "try": 0.00742770194067337, "twd": 0.02319767690139124, "uah": 0.022349745667002586, "usd": 0.0008362174996536294, "vef": 8.373045824031792e-05, "vnd": 19.05899105907958, "xag": 3.7281277117082656e-05, "xau": 4.778899388770527e-07, "xdr": 0.0005892640752209209, "xlm": 0.002993270390539347, "xrp": 0.0008868757559594959, "yfi": 2.753039159647205e-08, "zar": 0.012505549085570063, "bits": 0.019522194735131275, "link": 3.3954132600531027e-05, "sats": 1.9522194735131275}, "market_cap": {"aed": 663721.4910512344, "ars": 17806556.701925788, "aud": 248851.28695109952, "bch": 349.9165271427094, "bdt": 15400501.06314375, "bhd": 68084.12770741596, "bmd": 180702.82903654687, "bnb": 515.8167984907833, "brl": 964067.6631928819, "btc": 4.226377728593333, "cad": 228625.2192970392, "chf": 166880.32753505438, "clp": 143266623.94504526, "cny": 1168550.9845306359, "czk": 3922986.137251814, "dkk": 1146495.300732583, "dot": 6032.902055078892, "eos": 45032.75407684934, "eth": 61.671268642264586, "eur": 154181.97833299806, "gbp": 132044.43615338855, "hkd": 1406903.437114714, "huf": 55024914.955773585, "idr": 2581114034.2507744, "ils": 578043.0516918477, "inr": 13338235.989957519, "jpy": 20012025.1530669, "krw": 213276320.99867466, "kwd": 54370.22860617429, "lkr": 36091385.36395308, "ltc": 1193.8189426676365, "mmk": 336406609.796988, "mxn": 3623941.025479234, "myr": 756873.7994195757, "ngn": 74359214.14853905, "nok": 1549996.5863438856, "nzd": 257767.70664425005, "php": 9158411.50071119, "pkr": 30556848.390080042, "pln": 710069.0561566735, "rub": 13129759.136098076, "sar": 677819.0222585213, "sek": 1563296.3145609745, "sgd": 244558.69124733662, "thb": 6039308.461744312, "try": 1605092.8789171255, "twd": 5012913.32086864, "uah": 4829679.2066029785, "usd": 180702.82903654687, "vef": 18093.774271429444, "vnd": 4118561982.240835, "xag": 8056.315788587027, "xau": 103.26985976609622, "xdr": 127337.3081598158, "xlm": 649683.391510018, "xrp": 191451.4589693858, "yfi": 5.982327895128491, "zar": 2702392.737958651, "bits": 4226377.728593333, "link": 7400.961457799186, "sats": 422637772.8593333}, "total_volume": {"aed": 15722.395240136217, "ars": 421806.02271919115, "aud": 5894.8494846307585, "bch": 8.260565615531588, "bdt": 364810.7947015276, "bhd": 1612.7932872875215, "bmd": 4280.532327834525, "bnb": 12.190098577944848, "brl": 22837.068022229996, "btc": 0.09993259613512524, "cad": 5415.729501176248, "chf": 3953.101568481481, "clp": 3393734.44547705, "cny": 27680.918404407563, "czk": 92928.64462435644, "dkk": 27158.45803113372, "dot": 142.584150991217, "eos": 1061.7334875137592, "eth": 1.4539768228332215, "eur": 3652.3000007398955, "gbp": 3127.900546321541, "hkd": 33327.06896079115, "huf": 1303443.4964872529, "idr": 61142053.637706384, "ils": 13692.823642216767, "inr": 315959.360767683, "jpy": 474049.6929121986, "krw": 5052141.085249982, "kwd": 1287.9351278635045, "lkr": 854941.4673274976, "ltc": 28.1798844998475, "mmk": 7968881.152613206, "mxn": 85844.79167502308, "myr": 17929.00965513489, "ngn": 1761439.0529039039, "nok": 36716.6940952334, "nzd": 6106.063791283097, "php": 216946.66712980505, "pkr": 723838.0166368184, "pln": 16820.28757424089, "rub": 311020.91062105977, "sar": 16056.340969692248, "sek": 37031.741274562024, "sgd": 5793.165439183051, "thb": 142984.9713589052, "try": 38021.8284019902, "twd": 118747.10341292298, "uah": 114406.60938824079, "usd": 4280.532327834525, "vef": 428.609701986071, "vnd": 97561492.55198766, "xag": 190.8399572942819, "xau": 2.4462814200341527, "xdr": 3016.3969597137802, "xlm": 15322.318270020358, "xrp": 4539.848000944461, "yfi": 0.14092593287685937, "zar": 64014.93290953254, "bits": 99932.59613512525, "link": 173.8085633466836, "sats": 9993259.613512525}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 121, "reddit_accounts_active_48h": "6.84615384615385"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 282389, "bing_matches": null}}, "HALV_20211003": {"id": "halving-coin", "symbol": "halv", "name": "Halving", "localization": {"en": "Halving", "de": "Halving", "es": "Halving", "fr": "Halving", "it": "Halving", "pl": "Halving", "ro": "Halving", "hu": "Halving", "nl": "Halving", "pt": "Halving", "sv": "Halving", "vi": "Halving", "tr": "Halving", "ru": "Halving", "ja": "Halving", "zh": "Halving", "zh-tw": "Halving", "ko": "Halving", "ar": "Halving", "th": "Halving", "id": "Halving"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12085/thumb/Halv-logo-200x200.png?1597009175", "small": "https://assets.coingecko.com/coins/images/12085/small/Halv-logo-200x200.png?1597009175"}, "market_data": {"current_price": {"aed": 0.05405466977237904, "ars": 1.4514058505690448, "aud": 0.020505868252832182, "bch": 3.0393810217219283e-05, "bdt": 1.2609636202065133, "bhd": 0.005548388395301013, "bmd": 0.014715961497435256, "bnb": 4.001634064362318e-05, "brl": 0.07969870427780976, "btc": 3.5436001355459636e-07, "cad": 0.018772563443818252, "chf": 0.013751403801085856, "clp": 11.915953604959203, "cny": 0.09522110046530456, "czk": 0.3236293783621843, "dkk": 0.09433411060200823, "dot": 0.0005402701699156209, "eos": 0.003929373542445921, "eth": 5.163891132468173e-06, "eur": 0.012685894608864072, "gbp": 0.0109603598275208, "hkd": 0.11456824862579021, "huf": 4.570630481488403, "idr": 211.01290770979904, "ils": 0.047364646516030194, "inr": 1.0937085357135683, "jpy": 1.647638291865899, "krw": 17.48842908603921, "kwd": 0.004438569443010434, "lkr": 2.9399170856642596, "ltc": 0.00010169417151328181, "mmk": 27.544764353576852, "mxn": 0.30197298680755946, "myr": 0.061576586332178246, "ngn": 6.056929878138651, "nok": 0.1290707551017052, "nzd": 0.021427425909686056, "php": 0.748095850712093, "pkr": 2.5087635626822236, "pln": 0.05877163577499813, "rub": 1.072496330740781, "sar": 0.055199277257649844, "sek": 0.12953317475983897, "sgd": 0.020038871930672563, "thb": 0.4995112390881949, "try": 0.13146436510310902, "twd": 0.4094524832002292, "uah": 0.39137285023543933, "usd": 0.014715961497435256, "vef": 0.0014735092247381912, "vnd": 336.5183546524453, "xag": 0.0006822262357961147, "xau": 8.51303656665131e-06, "xdr": 0.01039579668063318, "xlm": 0.05432223969309682, "xrp": 0.015899471449307763, "yfi": 5.149138594638471e-07, "zar": 0.2232874911948096, "bits": 0.35436001355459634, "link": 0.0006445385242933062, "sats": 35.43600135545964}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 8003.118187819351, "ars": 214889.3446118505, "aud": 3036.0168300413216, "bch": 4.499985965520618, "bdt": 186693.22975329554, "bhd": 821.4721922546868, "bmd": 2178.7863954642744, "bnb": 5.924659330332273, "brl": 11799.871360555402, "btc": 0.052465126166839314, "cad": 2779.390653237955, "chf": 2035.9778411735676, "clp": 1764228.4269358397, "cny": 14098.055250491132, "czk": 47915.271242791554, "dkk": 13966.731079290932, "dot": 79.99024027702717, "eos": 581.7673292003734, "eth": 0.7645450655087078, "eur": 1878.222812209979, "gbp": 1622.7470346234195, "hkd": 16962.516618539994, "huf": 676709.266567247, "idr": 31241727.06388201, "ils": 7012.620104577367, "inr": 161930.11096360808, "jpy": 243942.73494049752, "krw": 2589266.8567626216, "kwd": 657.1568374543529, "lkr": 435272.3640351076, "ltc": 15.056432257570453, "mmk": 4078167.6311331745, "mxn": 44708.91253478002, "myr": 9116.783065996982, "ngn": 896764.8100376962, "nok": 19109.69971733807, "nzd": 3172.4589704844784, "php": 110760.07927302962, "pkr": 371437.4980364793, "pln": 8701.493306303124, "rub": 158789.51674415707, "sar": 8172.584193658606, "sek": 19178.16372224272, "sgd": 2966.875222567657, "thb": 73955.63601444178, "try": 19464.08803970591, "twd": 60621.896852693135, "uah": 57945.09871445821, "usd": 2178.7863954642744, "vef": 218.1618817778376, "vnd": 49823561.51642244, "xag": 101.00768756702955, "xau": 1.2604061419121262, "xdr": 1539.160073347826, "xlm": 8042.733520001142, "xrp": 2354.01214489871, "yfi": 0.07623608637677935, "zar": 33059.05279633873, "bits": 52465.12616683932, "link": 95.42779575276975, "sats": 5246512.616683932}}, "community_data": {"facebook_likes": null, "twitter_followers": 815, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "DISTX_20211006": {"id": "distx", "symbol": "distx", "name": "DistX", "localization": {"en": "DistX", "de": "DistX", "es": "DistX", "fr": "DistX", "it": "DistX", "pl": "DistX", "ro": "DistX", "hu": "DistX", "nl": "DistX", "pt": "DistX", "sv": "DistX", "vi": "DistX", "tr": "DistX", "ru": "DistX", "ja": "DistX", "zh": "DistX", "zh-tw": "DistX", "ko": "DistX", "ar": "DistX", "th": "DistX", "id": "DistX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12291/thumb/DISTX-icon.png?1598885812", "small": "https://assets.coingecko.com/coins/images/12291/small/DISTX-icon.png?1598885812"}, "market_data": {"current_price": {"aed": 0.0014836203514195692, "ars": 0.03986951995286382, "aud": 0.0005561342606812407, "bch": 7.312255835365951e-07, "bdt": 0.03459268467320202, "bhd": 0.00015229344730650026, "bmd": 0.00040392604176955367, "bnb": 9.390890601076394e-07, "brl": 0.0021675075327396037, "btc": 8.443825928957042e-09, "cad": 0.0005108250687238663, "chf": 0.0003758047107415578, "clp": 0.3244576323118121, "cny": 0.0026039900134757826, "czk": 0.008820452188913409, "dkk": 0.0025909876341912216, "dot": 1.2546417430103184e-05, "eos": 9.294298171056049e-05, "eth": 1.1873549357980745e-07, "eur": 0.000348393885621034, "gbp": 0.00029821051811762636, "hkd": 0.0031445844314780627, "huf": 0.1245175118211169, "idr": 5.7791063476259215, "ils": 0.0013001975358520193, "inr": 0.029952024830806372, "jpy": 0.04486669097861584, "krw": 0.47683436593671685, "kwd": 0.00012176350529143235, "lkr": 0.0806664718703764, "ltc": 2.3767235872454055e-06, "mmk": 0.7557805306315134, "mxn": 0.008260651087624967, "myr": 0.001691036373868241, "ngn": 0.16592070017767951, "nok": 0.003486689592554791, "nzd": 0.0005821519448837016, "php": 0.02054388206312457, "pkr": 0.06897037163215132, "pln": 0.0015953891107334576, "rub": 0.029354355663102117, "sar": 0.0015150352953921572, "sek": 0.0035337873690251234, "sgd": 0.0005480872460771074, "thb": 0.013566728997006701, "try": 0.003579188656120014, "twd": 0.01121702617994051, "uah": 0.01075502082440306, "usd": 0.00040392604176955367, "vef": 4.0445114562385406e-05, "vnd": 9.182266403365087, "xag": 1.7926387186368295e-05, "xau": 2.293694028188409e-07, "xdr": 0.0002863783125760705, "xlm": 0.0012673886380680855, "xrp": 0.00038837685994484077, "yfi": 1.2558595468711647e-08, "zar": 0.006003605269206309, "bits": 0.008443825928957044, "link": 1.4947085699339817e-05, "sats": 0.8443825928957043}, "market_cap": {"aed": 43501.053693090165, "ars": 1169009.3941672936, "aud": 16306.345697747849, "bch": 21.510808407143987, "bdt": 1014287.9422739408, "bhd": 4465.377832035636, "bmd": 11843.46683721487, "bnb": 27.551477463400214, "brl": 63553.22739517867, "btc": 0.2478342226305031, "cad": 14977.840335683799, "chf": 11018.924676007968, "clp": 9513383.171661215, "cny": 76351.27765947302, "czk": 258623.41663089304, "dkk": 75970.03646198311, "dot": 367.9509083512475, "eos": 2727.017136870923, "eth": 3.497279850557682, "eur": 10215.215172967746, "gbp": 8743.794696578994, "hkd": 92201.98150105968, "huf": 3650962.971947363, "idr": 169448481.40267795, "ils": 38122.93540231092, "inr": 878219.7137798676, "jpy": 1315530.844143899, "krw": 13981203.031810958, "kwd": 3570.2130780784205, "lkr": 2365211.9093053727, "ltc": 70.31498185769772, "mmk": 22160149.941146158, "mxn": 242209.5559411976, "myr": 49582.67391400006, "ngn": 4864940.872722761, "nok": 102232.80573883878, "nzd": 17069.20708366653, "php": 602364.6924480345, "pkr": 2022271.9624544391, "pln": 46778.21202774851, "rub": 860695.528074181, "sar": 44422.16748288769, "sek": 103613.75397205798, "sgd": 16070.40015141685, "thb": 397788.42745969695, "try": 104944.95964456108, "twd": 328893.07406945777, "uah": 315346.67066611943, "usd": 11843.46683721487, "vef": 1185.8863344103252, "vnd": 269232127.64967155, "xag": 525.6174403183251, "xau": 6.725312643512474, "xdr": 8396.864022516453, "xlm": 37227.34544641873, "xrp": 11412.69193275881, "yfi": 0.36935138274616863, "zar": 176030.98725221347, "bits": 247834.2226305031, "link": 438.36412192131473, "sats": 24783422.263050307}, "total_volume": {"aed": 59272.490235167694, "ars": 1592837.2307819868, "aud": 22218.259883083087, "bch": 29.213377410472443, "bdt": 1382021.0558170946, "bhd": 6084.313860832024, "bmd": 16137.351003312757, "bnb": 37.51778350298564, "brl": 86594.63921887665, "btc": 0.3373414158431317, "cad": 20408.10094633949, "chf": 15013.868626462141, "clp": 12962488.566921024, "cny": 104032.66071305638, "czk": 352388.10638914077, "dkk": 103513.19938425979, "dot": 501.2450819379612, "eos": 3713.188465361397, "eth": 4.743631601604171, "eur": 13918.771850026329, "gbp": 11913.883498725754, "hkd": 125630.08442833992, "huf": 4974630.468274917, "idr": 230882532.87298152, "ils": 51944.51914456355, "inr": 1196620.8859353978, "jpy": 1792480.4687194698, "krw": 19050129.820431117, "kwd": 4864.604459948646, "lkr": 3222726.5295110242, "ltc": 94.95308249304045, "mmk": 30194378.284797203, "mxn": 330023.35163364897, "myr": 67559.01997536904, "ngn": 6628739.671630779, "nok": 139297.61386059585, "nzd": 23257.698935908484, "php": 820753.8052533932, "pkr": 2755452.6838156544, "pln": 63737.792081890446, "rub": 1172743.2545233488, "sar": 60527.55657209945, "sek": 141179.22898758223, "sgd": 21896.771576395084, "thb": 542007.8062617762, "try": 142993.06724035428, "twd": 448134.23736199545, "uah": 429676.5450699703, "usd": 16137.351003312757, "vef": 1615.8329559617061, "vnd": 366843037.175519, "xag": 716.1816083468933, "xau": 9.163594767231142, "xdr": 11441.172075785698, "xlm": 50633.76260791715, "xrp": 15516.141724949668, "yfi": 0.501731609824838, "zar": 239851.54581786803, "bits": 337341.4158431317, "link": 597.1547844505042, "sats": 33734141.58431318}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "MNSTP_20211010": {"id": "moon-stop", "symbol": "mnstp", "name": "Moon Stop", "localization": {"en": "Moon Stop", "de": "Moon Stop", "es": "Moon Stop", "fr": "Moon Stop", "it": "Moon Stop", "pl": "Moon Stop", "ro": "Moon Stop", "hu": "Moon Stop", "nl": "Moon Stop", "pt": "Moon Stop", "sv": "Moon Stop", "vi": "Moon Stop", "tr": "Moon Stop", "ru": "Moon Stop", "ja": "Moon Stop", "zh": "Moon Stop", "zh-tw": "Moon Stop", "ko": "Moon Stop", "ar": "Moon Stop", "th": "Moon Stop", "id": "Moon Stop"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15865/thumb/MNSTP.jpg?1622174103", "small": "https://assets.coingecko.com/coins/images/15865/small/MNSTP.jpg?1622174103"}, "market_data": {"current_price": {"aed": 0.0005520398743408413, "ars": 0.01486386748884699, "aud": 0.00020638374099928153, "bch": 2.4243307019116385e-07, "bdt": 0.01288526171708139, "bhd": 5.665036436718229e-05, "bmd": 0.0001502885425081242, "bnb": 3.449520873081886e-07, "brl": 0.0008255952297026701, "btc": 2.7057541108071248e-09, "cad": 0.00018918697452278938, "chf": 0.00013943831089320766, "clp": 0.12238096213807842, "cny": 0.0009688651469871238, "czk": 0.0033038230876645844, "dkk": 0.0009676703530741849, "dot": 4.635232439551207e-06, "eos": 3.141084228777869e-05, "eth": 4.176115288593939e-08, "eur": 0.0001300467798718748, "gbp": 0.00011058621707958291, "hkd": 0.0011702487881771605, "huf": 0.04670351823330193, "idr": 2.1389741668197515, "ils": 0.00048670944491255904, "inr": 0.011236698752264716, "jpy": 0.016739613778773775, "krw": 0.17906733413716028, "kwd": 4.5320712301664795e-05, "lkr": 0.02997182085390957, "ltc": 8.384024847443117e-07, "mmk": 0.2949191375397904, "mxn": 0.003090040190852008, "myr": 0.0006288824061252465, "ngn": 0.061669400532783636, "nok": 0.0012893707933170344, "nzd": 0.00021727590311755772, "php": 0.007625640195996602, "pkr": 0.025676959949427463, "pln": 0.0005916998184003952, "rub": 0.01088439220062862, "sar": 0.0005635739188241703, "sek": 0.0013230200974075168, "sgd": 0.00020418351673696247, "thb": 0.005083284517523528, "try": 0.0013344764427143693, "twd": 0.004202954651505039, "uah": 0.003950057658619279, "usd": 0.0001502885425081242, "vef": 1.5048391761338453e-05, "vnd": 3.4156642155770176, "xag": 6.63393765295555e-06, "xau": 8.52121007166814e-08, "xdr": 0.00010649145545040669, "xlm": 0.0004195424097387784, "xrp": 0.00013897918000024695, "yfi": 4.661206014269949e-09, "zar": 0.002250668611611788, "bits": 0.0027057541108071246, "link": 5.584707294584974e-06, "sats": 0.2705754110807125}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 122340.76870709067, "ars": 3294068.162589139, "aud": 45737.90172792453, "bch": 53.72700333036935, "bdt": 2855577.82459476, "bhd": 12554.61687888641, "bmd": 33306.318389167696, "bnb": 76.44683924107811, "brl": 182964.9627453718, "btc": 0.5996379124674115, "cad": 41926.82624624401, "chf": 30901.735426743347, "clp": 27121557.117523953, "cny": 214715.8427594473, "czk": 732179.4584127488, "dkk": 214451.05752825356, "dot": 1027.240831955939, "eos": 6961.139529662654, "eth": 9.254932086673325, "eur": 28820.423590604212, "gbp": 24507.65503502769, "hkd": 259345.6432745643, "huf": 10350238.429443587, "idr": 474030511.1579096, "ils": 107862.51210331933, "inr": 2490230.193468414, "jpy": 3709763.2123047505, "krw": 39684153.857233234, "kwd": 10043.786760800605, "lkr": 6642229.616468903, "ltc": 185.80325305672488, "mmk": 65358746.11617855, "mxn": 684801.786711572, "myr": 139370.28929947238, "ngn": 13666914.687811062, "nok": 285744.9639688231, "nzd": 48151.777153179435, "php": 1689962.4951474154, "pkr": 5690420.500919478, "pln": 131130.0396794449, "rub": 2412153.488594206, "sar": 124896.89541818586, "sek": 293202.1820435206, "sgd": 45250.29722670709, "thb": 1126536.2600360112, "try": 295741.0893880086, "twd": 931441.2360522626, "uah": 875395.2619271167, "usd": 33306.318389167696, "vef": 3334.9616603073564, "vnd": 756965221.539394, "xag": 1470.1855241645005, "xau": 18.8843494634742, "xdr": 23600.191084196453, "xlm": 92977.23461363022, "xrp": 30799.984758009392, "yfi": 1.0329969869817985, "zar": 498783.7669847387, "bits": 599637.9124674115, "link": 1237.659479289311, "sats": 59963791.246741146}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 26, "reddit_accounts_active_48h": "2.25"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 2750150, "bing_matches": null}}, "LIBFX_20211013": {"id": "libfx", "symbol": "libfx", "name": "Libfx", "localization": {"en": "Libfx", "de": "Libfx", "es": "Libfx", "fr": "Libfx", "it": "Libfx", "pl": "Libfx", "ro": "Libfx", "hu": "Libfx", "nl": "Libfx", "pt": "Libfx", "sv": "Libfx", "vi": "Libfx", "tr": "Libfx", "ru": "Libfx", "ja": "Libfx", "zh": "Libfx", "zh-tw": "Libfx", "ko": "Libfx", "ar": "Libfx", "th": "Libfx", "id": "Libfx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12225/thumb/libfx.png?1598306252", "small": "https://assets.coingecko.com/coins/images/12225/small/libfx.png?1598306252"}, "market_data": {"current_price": {"aed": 0.03016203494568751, "ars": 0.8118108236088285, "aud": 0.011233839835368315, "bch": 1.3334944246533314e-05, "bdt": 0.7022717761225865, "bhd": 0.003095456901029718, "bmd": 0.008211937256343664, "bnb": 1.9440557869671374e-05, "brl": 0.04526279391569546, "btc": 1.4907280352131778e-07, "cad": 0.010242502981719762, "chf": 0.007616161208395937, "clp": 6.770331670992534, "cny": 0.0529119753237992, "czk": 0.18058748041366543, "dkk": 0.052796433366602454, "dot": 0.00022562718019796622, "eos": 0.0016481287480171747, "eth": 2.2897033407781744e-06, "eur": 0.007097462403536241, "gbp": 0.006032201690706078, "hkd": 0.06392500437828168, "huf": 2.555719112919282, "idr": 117.07635767310319, "ils": 0.026549275269131645, "inr": 0.6169750572198006, "jpy": 0.9214204198480405, "krw": 9.826239882195706, "kwd": 0.0024761536528425648, "lkr": 1.6414931466657063, "ltc": 4.558051445622945e-05, "mmk": 16.098941442368353, "mxn": 0.17009139280947017, "myr": 0.03430947385700389, "ngn": 3.3732724867679056, "nok": 0.0701241958130955, "nzd": 0.011847361879727002, "php": 0.4154763138155307, "pkr": 1.4026561780697362, "pln": 0.032653947306124996, "rub": 0.5897246713835331, "sar": 0.030797688160952037, "sek": 0.07172141760945439, "sgd": 0.011131280950973847, "thb": 0.27797405970335876, "try": 0.07371609716902024, "twd": 0.23053946295341457, "uah": 0.21623615699843285, "usd": 0.008211937256343664, "vef": 0.0008222612774776908, "vnd": 186.78496376552965, "xag": 0.0003623500890487135, "xau": 4.673988328193122e-06, "xdr": 0.0058190280114686545, "xlm": 0.023208657851269906, "xrp": 0.007049989778114554, "yfi": 2.4088500824676217e-07, "zar": 0.12291336161522604, "bits": 0.14907280352131777, "link": 0.00029924640542347466, "sats": 14.907280352131778}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 71323.23981099245, "ars": 1919664.1790805396, "aud": 26564.316831375218, "bch": 31.532734050415726, "bdt": 1660640.5499853166, "bhd": 7319.732082874613, "bmd": 19418.51639989445, "bnb": 45.97049149683766, "brl": 107031.54182991388, "btc": 0.35250789059801463, "cad": 24220.132950096355, "chf": 18009.703035082126, "clp": 16009595.845892983, "cny": 125119.32671944011, "czk": 427029.6813726198, "dkk": 124846.1081936936, "dot": 533.533679346075, "eos": 3897.279548475116, "eth": 5.414391328848381, "eur": 16783.15186519918, "gbp": 14264.162499288457, "hkd": 151161.4990633385, "huf": 6043430.673975169, "idr": 276846875.53583527, "ils": 62780.2577060228, "inr": 1458942.0124579591, "jpy": 2178854.6326501565, "krw": 23235808.353785716, "kwd": 5855.284668576582, "lkr": 3881588.545287396, "ltc": 107.78284585652182, "mmk": 38068673.52500477, "mxn": 402209.9046360956, "myr": 81130.56151875918, "ngn": 7976674.085644527, "nok": 165820.5370936188, "nzd": 28015.093610127722, "php": 982464.1082543775, "pkr": 3316818.084090897, "pln": 77215.78861254042, "rub": 1394503.8600772603, "sar": 72826.34949144266, "sek": 169597.43853339838, "sgd": 26321.798980056956, "thb": 657316.741299395, "try": 174314.1961669327, "twd": 545149.6038557156, "uah": 511327.0145458714, "usd": 19418.51639989445, "vef": 1944.3760471214312, "vnd": 441684680.35148823, "xag": 856.8381524420641, "xau": 11.052436979327924, "xdr": 13760.0772320636, "xlm": 54880.80206120407, "xrp": 16670.894802520706, "yfi": 0.5696133978026958, "zar": 290649.4599002984, "bits": 352507.89059801464, "link": 707.6188053965355, "sats": 35250789.05980147}}, "community_data": {"facebook_likes": null, "twitter_followers": 2295, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 6985310, "bing_matches": null}}, "BNW_20211020": {"id": "nagaswap", "symbol": "bnw", "name": "NagaSwap", "localization": {"en": "NagaSwap", "de": "NagaSwap", "es": "NagaSwap", "fr": "NagaSwap", "it": "NagaSwap", "pl": "NagaSwap", "ro": "NagaSwap", "hu": "NagaSwap", "nl": "NagaSwap", "pt": "NagaSwap", "sv": "NagaSwap", "vi": "NagaSwap", "tr": "NagaSwap", "ru": "NagaSwap", "ja": "NagaSwap", "zh": "NagaSwap", "zh-tw": "NagaSwap", "ko": "NagaSwap", "ar": "NagaSwap", "th": "NagaSwap", "id": "NagaSwap"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13828/thumb/1_dQKxZmGq8IWJAJHu6kDS5Q.png?1612157547", "small": "https://assets.coingecko.com/coins/images/13828/small/1_dQKxZmGq8IWJAJHu6kDS5Q.png?1612157547"}, "market_data": {"current_price": {"aed": 0.005888594758543448, "ars": 0.15895223098902164, "aud": 0.0021613472166316762, "bch": 2.5505068603778803e-06, "bdt": 0.13721176069823574, "bhd": 0.0006042883604358237, "bmd": 0.0016031675583413098, "bnb": 3.4311915428605604e-06, "brl": 0.008752813918276052, "btc": 2.6191559404929334e-08, "cad": 0.0019827335094541963, "chf": 0.0014803665265399229, "clp": 1.3206092761836532, "cny": 0.010317665771972986, "czk": 0.0350802720364908, "dkk": 0.010283975205734439, "dot": 3.8373727221811415e-05, "eos": 0.00034969636653103, "eth": 4.1644239256422107e-07, "eur": 0.0013820763235380164, "gbp": 0.0011663637158929611, "hkd": 0.012469517427156619, "huf": 0.49759916259576575, "idr": 22.547669965913414, "ils": 0.005163979053848776, "inr": 0.12013857127887057, "jpy": 0.1833711069068579, "krw": 1.8962105563305172, "kwd": 0.0004838039057562401, "lkr": 0.3227050911206312, "ltc": 8.578391519249321e-06, "mmk": 3.070503882044878, "mxn": 0.03260778686963897, "myr": 0.00666597070758316, "ngn": 0.6586934546956924, "nok": 0.013502710823480842, "nzd": 0.002266665706209351, "php": 0.08129662047081744, "pkr": 0.27446228598803296, "pln": 0.006314796853928498, "rub": 0.11380197134614868, "sar": 0.006012862688660736, "sek": 0.013807192421998803, "sgd": 0.0021616710564784617, "thb": 0.05377884250388547, "try": 0.01485879819773057, "twd": 0.044836268054398894, "uah": 0.04230594220520953, "usd": 0.0016031675583413098, "vef": 0.00016052516761671528, "vnd": 36.51452260975835, "xag": 6.875826944137592e-05, "xau": 9.069599827804274e-07, "xdr": 0.001135409756676506, "xlm": 0.003912875967085143, "xrp": 0.0014046753921059744, "yfi": 4.5376389964841853e-08, "zar": 0.02341538440686565, "bits": 0.026191559404929336, "link": 5.8040625603455894e-05, "sats": 2.6191559404929334}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 91.61240853437853, "ars": 2472.915410198661, "aud": 33.62537792355747, "bch": 0.039679768441133, "bdt": 2134.6858447969403, "bhd": 9.401277285806966, "bmd": 24.94144143485851, "bnb": 0.05338110946218323, "brl": 136.17278780189707, "btc": 0.0004074778344825928, "cad": 30.84657710897558, "chf": 23.03095196238977, "clp": 20545.51238196469, "cny": 160.51812878646217, "czk": 545.7648802613588, "dkk": 159.99398439470855, "dot": 0.597003142410322, "eos": 5.440436590945303, "eth": 0.0064788446417162245, "eur": 21.50179218801858, "gbp": 18.14582147719265, "hkd": 193.99577855240113, "huf": 7741.449299758534, "idr": 350787.65598849545, "ils": 80.3391264202371, "inr": 1869.0679736057843, "jpy": 2852.8145420398296, "krw": 29500.487514736287, "kwd": 7.5268281962115955, "lkr": 5020.517093823547, "ltc": 0.13345919368778353, "mmk": 47769.674698734, "mxn": 507.2989422084492, "myr": 103.70651348614159, "ngn": 10247.690042340293, "nok": 210.06978931392442, "nzd": 35.26388097717908, "php": 1264.7803953959071, "pkr": 4269.974773647789, "pln": 98.24309073983588, "rub": 1770.4856792624355, "sar": 93.54571942576047, "sek": 214.80679257843974, "sgd": 33.630416094727316, "thb": 836.669781499892, "try": 231.16725579484222, "twd": 697.5447750411182, "uah": 658.178974722678, "usd": 24.94144143485851, "vef": 2.4973865308723817, "vnd": 568078.3786165003, "xag": 1.0697137311140597, "xau": 0.014110121662942478, "xdr": 17.664252125968385, "xlm": 60.8749636100996, "xrp": 21.853379482956893, "yfi": 0.0007059477762913025, "zar": 364.2872111651127, "bits": 407.4778344825928, "link": 0.9029729031124464, "sats": 40747.78344825928}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3055278, "bing_matches": null}}, "PAMP_20211027": {"id": "pamp-network", "symbol": "pamp", "name": "Pamp Network", "localization": {"en": "Pamp Network", "de": "Pamp Network", "es": "Pamp Network", "fr": "Pamp Network", "it": "Pamp Network", "pl": "Pamp Network", "ro": "Pamp Network", "hu": "Pamp Network", "nl": "Pamp Network", "pt": "Pamp Network", "sv": "Pamp Network", "vi": "Pamp Network", "tr": "Pamp Network", "ru": "Pamp Network", "ja": "Pamp Network", "zh": "Pamp Network", "zh-tw": "Pamp Network", "ko": "Pamp Network", "ar": "Pamp Network", "th": "Pamp Network", "id": "Pamp Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11546/thumb/pMqJaqDK_400x400.jpg?1595199126", "small": "https://assets.coingecko.com/coins/images/11546/small/pMqJaqDK_400x400.jpg?1595199126"}, "market_data": {"current_price": {"aed": 0.002949409732260497, "ars": 0.079743264481691, "aud": 0.0010644950636750842, "bch": 1.249661770664782e-06, "bdt": 0.06857803353586471, "bhd": 0.0003027103537578355, "bmd": 0.0008029537548351571, "bnb": 1.6083284977777605e-06, "brl": 0.00449509571031818, "btc": 1.2357179784799652e-08, "cad": 0.0009872701833500584, "chf": 0.0007376374816480912, "clp": 0.6534999724476894, "cny": 0.005131356265649556, "czk": 0.017572599565064635, "dkk": 0.0051219857953306355, "dot": 1.8201591456626352e-05, "eos": 0.0001662755950304992, "eth": 1.913370499705868e-07, "eur": 0.0006883762687889549, "gbp": 0.0005807363031845275, "hkd": 0.006242042047025287, "huf": 0.24958211561541188, "idr": 11.330616346446217, "ils": 0.0025795210555581336, "inr": 0.06004407883281821, "jpy": 0.09178256572848985, "krw": 0.9433355994890703, "kwd": 0.0002421202663717291, "lkr": 0.1606793512932008, "ltc": 3.882519492435949e-06, "mmk": 1.5065788156041107, "mxn": 0.016221848275975816, "myr": 0.0033374772819723332, "ngn": 0.32937163023338206, "nok": 0.006662832371107918, "nzd": 0.0011130448595074371, "php": 0.04078965087465608, "pkr": 0.1390582179456162, "pln": 0.0031544102494999553, "rub": 0.05689601834161146, "sar": 0.003012070637380328, "sek": 0.006889060576763945, "sgd": 0.001077571968526329, "thb": 0.02679231611947442, "try": 0.0074234238917454745, "twd": 0.022383299460535848, "uah": 0.02098899997455345, "usd": 0.0008029537548351571, "vef": 8.039975947164424e-05, "vnd": 18.226181052574557, "xag": 3.287629912872163e-05, "xau": 4.4896356247852943e-07, "xdr": 0.0005690982914619471, "xlm": 0.0020600676560033867, "xrp": 0.0007044483057930103, "yfi": 2.2368937030529976e-08, "zar": 0.01155960569728238, "bits": 0.012357179784799652, "link": 2.9286655812054883e-05, "sats": 1.2357179784799652}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "MASH_20211031": {"id": "marshmellowdefi", "symbol": "mash", "name": "MarshmallowDeFi", "localization": {"en": "MarshmallowDeFi", "de": "MarshmallowDeFi", "es": "MarshmallowDeFi", "fr": "MarshmallowDeFi", "it": "MarshmallowDeFi", "pl": "MarshmallowDeFi", "ro": "MarshmallowDeFi", "hu": "MarshmallowDeFi", "nl": "MarshmallowDeFi", "pt": "MarshmallowDeFi", "sv": "MarshmallowDeFi", "vi": "MarshmallowDeFi", "tr": "MarshmallowDeFi", "ru": "MarshmallowDeFi", "ja": "MarshmallowDeFi", "zh": "MarshmallowDeFi", "zh-tw": "MarshmallowDeFi", "ko": "MarshmallowDeFi", "ar": "MarshmallowDeFi", "th": "MarshmallowDeFi", "id": "MarshmallowDeFi"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14893/thumb/gF1MHZw.png?1618912293", "small": "https://assets.coingecko.com/coins/images/14893/small/gF1MHZw.png?1618912293"}, "market_data": {"current_price": {"aed": 0.021996099713838996, "ars": 0.5961217285046178, "aud": 0.007958705304551282, "bch": 9.655288683713678e-06, "bdt": 0.5137536227963586, "bhd": 0.0022574266823544753, "bmd": 0.0059882662838503286, "bnb": 1.2309171354111571e-05, "brl": 0.033336672413928514, "btc": 9.736115256920331e-08, "cad": 0.00741973139767333, "chf": 0.005504294602789546, "clp": 4.8153445668325645, "cny": 0.03822789430284373, "czk": 0.132659859466022, "dkk": 0.03839197279902125, "dot": 0.00013202919056690916, "eos": 0.0012538971494889207, "eth": 1.392374163943026e-06, "eur": 0.005160939390606138, "gbp": 0.004347876547650078, "hkd": 0.04657481891057706, "huf": 1.885485576836897, "idr": 84.89774699934546, "ils": 0.019156853079345615, "inr": 0.4487426745832946, "jpy": 0.6828300278148854, "krw": 7.004120123724022, "kwd": 0.0018064563367839947, "lkr": 1.2087259084483506, "ltc": 2.9405021791486645e-05, "mmk": 11.187478983770765, "mxn": 0.12090647964138887, "myr": 0.02484531681169504, "ngn": 2.465429111724017, "nok": 0.05007747562532679, "nzd": 0.008354170409936757, "php": 0.3042548274830096, "pkr": 1.0515620034661468, "pln": 0.023792807153112928, "rub": 0.4159838998070894, "sar": 0.022460579588145915, "sek": 0.05155178678441075, "sgd": 0.008070386470745095, "thb": 0.19922961926370003, "try": 0.05715422907159254, "twd": 0.1665067441438662, "uah": 0.15846750264606366, "usd": 0.0059882662838503286, "vef": 0.0005996051030019333, "vnd": 136.51606283531953, "xag": 0.00024939679911795896, "xau": 3.3492972152203302e-06, "xdr": 0.00423597381560376, "xlm": 0.0159260763049379, "xrp": 0.005361670073276954, "yfi": 1.5133934344873103e-07, "zar": 0.08890180125004202, "bits": 0.09736115256920332, "link": 0.00017719431346429232, "sats": 9.736115256920332}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 676917, "bing_matches": null}}, "EIDOS_20211103": {"id": "eidos", "symbol": "eidos", "name": "EIDOS", "localization": {"en": "EIDOS", "de": "EIDOS", "es": "EIDOS", "fr": "EIDOS", "it": "EIDOS", "pl": "EIDOS", "ro": "EIDOS", "hu": "EIDOS", "nl": "EIDOS", "pt": "EIDOS", "sv": "EIDOS", "vi": "EIDOS", "tr": "EIDOS", "ru": "EIDOS", "ja": "EIDOS", "zh": "EIDOS", "zh-tw": "EIDOS", "ko": "EIDOS", "ar": "EIDOS", "th": "EIDOS", "id": "EIDOS"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9857/thumb/newenumivologo.png?1572852497", "small": "https://assets.coingecko.com/coins/images/9857/small/newenumivologo.png?1572852497"}, "market_data": {"current_price": {"aed": 2.331536445362783e-05, "ars": 0.0006305228220830502, "aud": 8.463962339125612e-06, "bch": 1.0002724014799621e-08, "bdt": 0.000543301777461881, "bhd": 2.3934030047486278e-06, "bmd": 6.3478924056891385e-06, "bnb": 1.2835398193846395e-08, "brl": 3.617790839850355e-05, "btc": 9.97101e-11, "cad": 7.824754965442335e-06, "chf": 5.81864322425721e-06, "clp": 0.0052014630372216805, "cny": 4.055858894766962e-05, "czk": 0.0001400466690313518, "dkk": 4.059706987143285e-05, "dot": 1.3829831460123414e-07, "eos": 1.3277075784665538e-06, "eth": 1.5323015630677e-09, "eur": 5.456242046816421e-06, "gbp": 4.602355299865139e-06, "hkd": 4.934883295644766e-05, "huf": 0.0019837518361048357, "idr": 0.09011087185571957, "ils": 2.0359658791690795e-05, "inr": 0.0004753972361254837, "jpy": 0.0007225795345363669, "krw": 0.0074660038705700645, "kwd": 1.914029213948204e-06, "lkr": 0.0012784464043059723, "ltc": 3.1876295190440606e-08, "mmk": 0.011832798697101783, "mxn": 0.00012817661171621322, "myr": 2.6343753483609878e-05, "ngn": 0.0026108881464599453, "nok": 5.3020485663360253e-05, "nzd": 8.87649282289413e-06, "php": 0.0003224697983501599, "pkr": 0.0010997723592856455, "pln": 2.508744844549237e-05, "rub": 0.00044633618477501715, "sar": 2.3808703607720752e-05, "sek": 5.443484052659466e-05, "sgd": 8.551353773874736e-06, "thb": 0.00021138481710944782, "try": 6.104847475206316e-05, "twd": 0.0001768998979634348, "uah": 0.00016675849870821264, "usd": 6.3478924056891385e-06, "vef": 6.356144665816536e-07, "vnd": 0.14446699103231855, "xag": 2.5929889942436226e-07, "xau": 3.5279681623098537e-09, "xdr": 4.4912163996263345e-06, "xlm": 1.6639338694883406e-05, "xrp": 5.736230713717954e-06, "yfi": 1.8286098141286564e-10, "zar": 9.30530945941869e-05, "bits": 9.97101e-05, "link": 2.148455787183102e-07, "sats": 0.00997101}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 4035, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 5654777, "bing_matches": null}}, "PEOS_20211107": {"id": "peos", "symbol": "peos", "name": "pEOS", "localization": {"en": "pEOS", "de": "pEOS", "es": "pEOS", "fr": "pEOS", "it": "pEOS", "pl": "pEOS", "ro": "pEOS", "hu": "pEOS", "nl": "pEOS", "pt": "pEOS", "sv": "pEOS", "vi": "pEOS", "tr": "pEOS", "ru": "pEOS", "ja": "pEOS", "zh": "pEOS", "zh-tw": "pEOS", "ko": "pEOS", "ar": "pEOS", "th": "pEOS", "id": "pEOS"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8366/thumb/AHBvYJJV_400x400.png?1557801507", "small": "https://assets.coingecko.com/coins/images/8366/small/AHBvYJJV_400x400.png?1557801507"}, "market_data": {"current_price": {"aed": 0.00449018880971529, "ars": 0.12205139736743581, "aud": 0.0016374238973291876, "bch": 1.9957796445062994e-06, "bdt": 0.10484616908206054, "bhd": 0.00046092279544092916, "bmd": 0.0012224188200248508, "bnb": 2.1467955737701303e-06, "brl": 0.006788825158890013, "btc": 1.93856e-08, "cad": 0.0015134461806022672, "chf": 0.001114292208137192, "clp": 0.9957130999849689, "cny": 0.007831915138017207, "czk": 0.02683038049077863, "dkk": 0.007828992334618541, "dot": 2.2881103321861788e-05, "eos": 0.00025944312667589665, "eth": 2.6542565968105895e-07, "eur": 0.0010526003975469974, "gbp": 0.0008926933468619079, "hkd": 0.00951466632519293, "huf": 0.3777123649671658, "idr": 17.52416835728926, "ils": 0.003811092370532773, "inr": 0.09099166168266472, "jpy": 0.13945572187394603, "krw": 1.4416495406616916, "kwd": 0.0003687499715734166, "lkr": 0.24630146656262009, "ltc": 5.893390603852875e-06, "mmk": 2.2008213400032863, "mxn": 0.0251157009464427, "myr": 0.005077316568973213, "ngn": 0.5023154381571034, "nok": 0.010383760876734255, "nzd": 0.0017043122103233073, "php": 0.061865708224274424, "pkr": 0.20727751457335972, "pln": 0.004825267254891117, "rub": 0.08768324626720854, "sar": 0.004585748956133079, "sek": 0.01042691959559405, "sgd": 0.0016471360148542843, "thb": 0.0406943225186273, "try": 0.011782222675868512, "twd": 0.03396490691439045, "uah": 0.032069830135108265, "usd": 0.0012224188200248508, "vef": 0.0001224007964490883, "vnd": 27.744529786555983, "xag": 5.171523497757261e-05, "xau": 6.882217956739904e-07, "xdr": 0.0008669577634439237, "xlm": 0.0031638260572936917, "xrp": 0.0010112226086574768, "yfi": 3.524981580207481e-08, "zar": 0.01864431961883082, "bits": 0.0193856, "link": 3.830930056716369e-05, "sats": 1.93856}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 13.810473722041317, "ars": 375.39348288302233, "aud": 5.036224681015383, "bch": 0.006138419452608025, "bdt": 322.47536224569365, "bhd": 1.4176602419376658, "bmd": 3.7597935647504337, "bnb": 0.0066028991462447895, "brl": 20.880389541198014, "btc": 5.962428992e-05, "cad": 4.654906417678393, "chf": 3.4272285445675617, "clp": 3062.514781623769, "cny": 24.088621389999524, "czk": 82.52220127548783, "dkk": 24.07963172358625, "dot": 0.0703754094870503, "eos": 0.7979692247170553, "eth": 0.0008163697014810329, "eur": 3.2374830427353, "gbp": 2.74565692694317, "hkd": 29.264259216395896, "huf": 1161.729920929512, "idr": 53899.08461651457, "ils": 11.721776804047652, "inr": 279.86305383737187, "jpy": 428.9239637676958, "krw": 4434.081492213165, "kwd": 1.1341642875683573, "lkr": 757.5494207066506, "ltc": 0.018126301480270286, "mmk": 6769.066195448108, "mxn": 77.24836140097382, "myr": 15.616302571190912, "ngn": 1544.9715931398032, "nok": 31.93733332857155, "nzd": 5.241953065291397, "php": 190.28035878540086, "pkr": 637.5234515732825, "pln": 14.84107449586861, "rub": 269.6873605440533, "sar": 14.10438806437851, "sek": 32.07007660016862, "sgd": 5.0660962408873225, "thb": 125.16352777054199, "try": 36.23858228416878, "twd": 104.4658641965907, "uah": 98.63717654655248, "usd": 3.7597935647504337, "vef": 0.3764681296384608, "vnd": 85333.85026451024, "xag": 0.15906054822052007, "xau": 0.0021167637769544923, "xdr": 2.6665019930244758, "xlm": 9.730979804418208, "xrp": 3.110217377447802, "yfi": 0.0001084178584624415, "zar": 57.344333851637955, "bits": 59.62428992, "link": 0.11782791575442536, "sats": 5962.428992}}, "community_data": {"facebook_likes": null, "twitter_followers": 1346, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "DCNT_20211110": {"id": "decenturion", "symbol": "dcnt", "name": "Decenturion", "localization": {"en": "Decenturion", "de": "Decenturion", "es": "Decenturion", "fr": "Decenturion", "it": "Decenturion", "pl": "Decenturion", "ro": "Decenturion", "hu": "Decenturion", "nl": "Decenturion", "pt": "Decenturion", "sv": "Decenturion", "vi": "Decenturion", "tr": "Decenturion", "ru": "Decenturion", "ja": "Decenturion", "zh": "Decenturion", "zh-tw": "Decenturion", "ko": "Decenturion", "ar": "Decenturion", "th": "Decenturion", "id": "Decenturion"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/6195/thumb/X5_20dt1_400x400.jpg?1547042224", "small": "https://assets.coingecko.com/coins/images/6195/small/X5_20dt1_400x400.jpg?1547042224"}, "market_data": {"current_price": {"aed": 0.002207915608906576, "ars": 0.05969835760439785, "aud": 0.0007994888146407413, "bch": 9.366916008991589e-07, "bdt": 0.05133722487445195, "bhd": 0.00022658364267423169, "bmd": 0.000601087773305722, "bnb": 1.2040923056045962e-06, "brl": 0.00336488935496543, "btc": 9.21633458122797e-09, "cad": 0.0007398446781589342, "chf": 0.00055220911884382, "clp": 0.4892073060603279, "cny": 0.0038417322855288593, "czk": 0.013160215708755474, "dkk": 0.0038363224955691036, "dot": 1.3630429836348486e-05, "eos": 0.0001238384415113441, "eth": 1.4324857868228413e-07, "eur": 0.0005155854419040757, "gbp": 0.0004348509387202913, "hkd": 0.0046727842191458795, "huf": 0.18698638451994368, "idr": 8.49763796000032, "ils": 0.0019310185152555607, "inr": 0.04503109823693697, "jpy": 0.06859793995296891, "krw": 0.7064404273330156, "kwd": 0.00018125621477702088, "lkr": 0.12028388048931442, "ltc": 2.8764731320579555e-06, "mmk": 1.1278185077631961, "mxn": 0.012153333579691021, "myr": 0.0024984213297452327, "ngn": 0.2465662046100066, "nok": 0.004989562885467961, "nzd": 0.0008353695470926796, "php": 0.030544575744416866, "pkr": 0.10409839182077445, "pln": 0.0023625971321379804, "rub": 0.04262824325118183, "sar": 0.0022547265214283045, "sek": 0.005158998108095151, "sgd": 0.0008071905522801074, "thb": 0.02005137746950231, "try": 0.005556996355434064, "twd": 0.016753819562551515, "uah": 0.0157122763081272, "usd": 0.000601087773305722, "vef": 6.018691874110194e-05, "vnd": 13.65024011369897, "xag": 2.46478926665323e-05, "xau": 3.3653702251840774e-07, "xdr": 0.0004260245658570697, "xlm": 0.0015291374876297812, "xrp": 0.0005243665516184296, "yfi": 1.680144804774789e-08, "zar": 0.008675259397012157, "bits": 0.00921633458122797, "link": 2.1767607332338395e-05, "sats": 0.921633458122797}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "AAC_20211114": {"id": "acute-angle-cloud", "symbol": "aac", "name": "Acute Angle Cloud", "localization": {"en": "Acute Angle Cloud", "de": "Acute Angle Cloud", "es": "Acute Angle Cloud", "fr": "Acute Angle Cloud", "it": "Acute Angle Cloud", "pl": "Acute Angle Cloud", "ro": "Acute Angle Cloud", "hu": "Acute Angle Cloud", "nl": "Acute Angle Cloud", "pt": "Acute Angle Cloud", "sv": "Acute Angle Cloud", "vi": "Acute Angle Cloud", "tr": "Acute Angle Cloud", "ru": "Acute Angle Cloud", "ja": "Acute Angle Cloud", "zh": "Acute Angle Cloud", "zh-tw": "Acute Angle Cloud", "ko": "Acute Angle Cloud", "ar": "Acute Angle Cloud", "th": "Acute Angle Cloud", "id": "Acute Angle Cloud"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2577/thumb/acute-angle-cloud.png?1547036708", "small": "https://assets.coingecko.com/coins/images/2577/small/acute-angle-cloud.png?1547036708"}, "market_data": {"current_price": {"aed": 0.0047216838160020515, "ars": 0.12871293114593468, "aud": 0.0017532059856643558, "bch": 1.931343938461971e-06, "bdt": 0.11025297660865914, "bhd": 0.0004846268808773187, "bmd": 0.001285441526734743, "bnb": 2.1058206587275645e-06, "brl": 0.007058102334995135, "btc": 1.9794150124467905e-08, "cad": 0.001605458622022992, "chf": 0.001180019896244173, "clp": 1.0222216653052703, "cny": 0.008212814458460957, "czk": 0.028234324647855386, "dkk": 0.008324275093244115, "dot": 2.739696719733223e-05, "eos": 0.0002662731962249932, "eth": 2.773235588592444e-07, "eur": 0.00111919151775756, "gbp": 0.0009584264877749514, "hkd": 0.010015453383477424, "huf": 0.4067329099824902, "idr": 18.388112495787833, "ils": 0.0040029677495741385, "inr": 0.0956434696129276, "jpy": 0.14637194120775848, "krw": 1.5233888262001645, "kwd": 0.00038791411673037775, "lkr": 0.25874497981572114, "ltc": 4.9610828180458575e-06, "mmk": 2.2815390700549454, "mxn": 0.02649256551898648, "myr": 0.005339081381292752, "ngn": 0.5277894364620187, "nok": 0.011119866180002111, "nzd": 0.0018193599483962335, "php": 0.0643517775677194, "pkr": 0.22026040560599758, "pln": 0.005159831702155696, "rub": 0.09158642333832374, "sar": 0.004820017521914209, "sek": 0.011184797687842056, "sgd": 0.0017388488892522568, "thb": 0.04220187828881089, "try": 0.012659124563398252, "twd": 0.035701467331072746, "uah": 0.03348769535902845, "usd": 0.001285441526734743, "vef": 0.0001287112600719498, "vnd": 29.29462628308083, "xag": 5.21668163911708e-05, "xau": 6.952824673955559e-07, "xdr": 0.0009113214830277573, "xlm": 0.0033434864209392896, "xrp": 0.001084821643092351, "yfi": 3.896253367833741e-08, "zar": 0.019865856074922028, "bits": 0.019794150124467908, "link": 3.7543791166828e-05, "sats": 1.9794150124467906}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 536936.004217449, "ars": 14636856.179652283, "aud": 199369.43115979372, "bch": 219.6267555173607, "bdt": 12537644.412509214, "bhd": 55110.34433791491, "bmd": 146176.63187886577, "bnb": 239.46773527353943, "brl": 802626.650320477, "btc": 2.250932567465144, "cad": 182568.0352682689, "chf": 134188.39394521617, "clp": 116244042.96903047, "cny": 933937.1187372624, "czk": 3210724.4044634085, "dkk": 946612.0944874774, "dot": 3115.5025765930486, "eos": 30279.805167537383, "eth": 31.536419923883464, "eur": 127271.16954807658, "gbp": 108989.44290551421, "hkd": 1138927.9184525898, "huf": 46252470.9362366, "idr": 2091042101.3639874, "ils": 455205.7258013394, "inr": 10876294.221441792, "jpy": 16644986.895414567, "krw": 173235299.33057055, "kwd": 44112.453085244786, "lkr": 29423718.526585348, "ltc": 564.1597550191036, "mmk": 259449916.48732722, "mxn": 3012656.676210482, "myr": 607144.6405088685, "ngn": 60018663.28314356, "nok": 1264518.4952639546, "nzd": 206892.26534280778, "php": 7317894.983649686, "pkr": 25047365.872443575, "pln": 586760.8938998878, "rub": 10414938.84473731, "sar": 548118.2242029187, "sek": 1271902.315470051, "sgd": 197736.78435833883, "thb": 4799073.547040614, "try": 1439558.4339904606, "twd": 4059865.920814055, "uah": 3808122.279511851, "usd": 146176.63187886577, "vef": 14636.666150030826, "vnd": 3331298789.676103, "xag": 5932.257016213642, "xau": 79.06547841695978, "xdr": 103632.80023031324, "xlm": 380211.4476471886, "xrp": 123362.72843102235, "yfi": 4.430704799955877, "zar": 2259086.757371924, "bits": 2250932.567465144, "link": 4269.369571925233, "sats": 225093256.7465144}}, "community_data": {"facebook_likes": null, "twitter_followers": 7036, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 4019931, "bing_matches": null}}, "FDS_20211124": {"id": "fds", "symbol": "fds", "name": "Fair Dollars", "localization": {"en": "Fair Dollars", "de": "Fair Dollars", "es": "Fair Dollars", "fr": "Fair Dollars", "it": "Fair Dollars", "pl": "Fair Dollars", "ro": "Fair Dollars", "hu": "Fair Dollars", "nl": "Fair Dollars", "pt": "Fair Dollars", "sv": "Fair Dollars", "vi": "Fair Dollars", "tr": "Fair Dollars", "ru": "Fair Dollars", "ja": "Fair Dollars", "zh": "Fair Dollars", "zh-tw": "Fair Dollars", "ko": "Fair Dollars", "ar": "Fair Dollars", "th": "Fair Dollars", "id": "Fair Dollars"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8434/thumb/E52F6C4B6C8A4342918C2734D4F38D91.png?1558509805", "small": "https://assets.coingecko.com/coins/images/8434/small/E52F6C4B6C8A4342918C2734D4F38D91.png?1558509805"}, "market_data": {"current_price": {"aed": 0.0009841683542608864, "ars": 0.026610271750691795, "aud": 0.00035636850782744695, "bch": 4.1753607335104085e-07, "bdt": 0.022883334812797324, "bhd": 0.00010099862957333312, "bmd": 0.0002679321447949708, "bnb": 5.367023678129911e-07, "brl": 0.0014998841465622486, "btc": 4.10852728685322e-09, "cad": 0.00032978240489587625, "chf": 0.0002461447065766782, "clp": 0.21806193468428314, "cny": 0.0017124347170280982, "czk": 0.0058661063781410925, "dkk": 0.0017100233277249437, "dot": 6.076395944035522e-06, "eos": 5.520559098782824e-05, "eth": 6.386302093014319e-08, "eur": 0.00022981986892646542, "gbp": 0.00019383283083047382, "hkd": 0.0020828723417787294, "huf": 0.08334833160281974, "idr": 3.7877835241809827, "ils": 0.0008607427324396373, "inr": 0.020072407506713626, "jpy": 0.030577220160436482, "krw": 0.3148926118131854, "kwd": 8.079413446648891e-05, "lkr": 0.05361599339564736, "ltc": 1.282251164362539e-06, "mmk": 0.5027199772549109, "mxn": 0.005417293242395017, "myr": 0.0011136599598402974, "ngn": 0.10990576579489707, "nok": 0.0022240749934749806, "nzd": 0.0003723621813466932, "php": 0.013615105903828828, "pkr": 0.046401385336549555, "pln": 0.0010531169406738448, "rub": 0.019001345810642153, "sar": 0.001005034105901085, "sek": 0.002299599974381932, "sgd": 0.00035980152239870495, "thb": 0.008937810433160874, "try": 0.002477005885415028, "twd": 0.0074679389737299885, "uah": 0.007003675798786467, "usd": 0.0002679321447949708, "vef": 2.6828045658320425e-05, "vnd": 6.08453253094123, "xag": 1.098668620474727e-05, "xau": 1.500098492278082e-07, "xdr": 0.00018989851521630446, "xlm": 0.0006814661105850764, "xrp": 0.00023375740130782496, "yfi": 7.4900945264404e-09, "zar": 0.0038669574729678965, "bits": 0.004108527286853221, "link": 9.70533522798958e-06, "sats": 0.410852728685322}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "XGM_20211128": {"id": "defis", "symbol": "xgm", "name": "Defis", "localization": {"en": "Defis", "de": "Defis", "es": "Defis", "fr": "Defis", "it": "Defis", "pl": "Defis", "ro": "Defis", "hu": "Defis", "nl": "Defis", "pt": "Defis", "sv": "Defis", "vi": "Defis", "tr": "Defis", "ru": "Defis", "ja": "Defis", "zh": "Defis", "zh-tw": "Defis", "ko": "Defis", "ar": "Defis", "th": "Defis", "id": "Defis"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11643/thumb/defis.png?1593505282", "small": "https://assets.coingecko.com/coins/images/11643/small/defis.png?1593505282"}, "market_data": {"current_price": {"aed": 0.00210108098400385, "ars": 0.0575331013035914, "aud": 0.000794276796553192, "bch": 9.30612621615701e-07, "bdt": 0.04908638050379, "bhd": 0.000215645809055184, "bmd": 0.000572018454167828, "bnb": 9.671252253224e-07, "brl": 0.00320713586698276, "btc": 1e-08, "cad": 0.000724166782699658, "chf": 0.000534284112801739, "clp": 0.465939538379912, "cny": 0.00365662796826784, "czk": 0.013024173207238, "dkk": 0.00379672100787808, "dot": 1.49193897111272e-05, "eos": 0.00013877428517577, "eth": 1.33996459599766e-07, "eur": 0.000510525898326332, "gbp": 0.000429111655781534, "hkd": 0.00446070286892247, "huf": 0.188220784111007, "idr": 8.18183735826682, "ils": 0.00180263607572633, "inr": 0.0426851290538782, "jpy": 0.0660212259431424, "krw": 0.680067725274343, "kwd": 0.000173272398025793, "lkr": 0.116000516385538, "ltc": 2.69555090097206e-06, "mmk": 1.020835450121, "mxn": 0.0122510936985409, "myr": 0.00240848370127364, "ngn": 0.234871861828299, "nok": 0.00512706375471775, "nzd": 0.000832058615450977, "php": 0.0288329568461585, "pkr": 0.100184213564037, "pln": 0.00238965056568862, "rub": 0.0428849099311071, "sar": 0.00214577106977262, "sek": 0.00521919419098293, "sgd": 0.000782624208623339, "thb": 0.0190950182177456, "try": 0.00681897479028926, "twd": 0.015891873895536, "uah": 0.0154091297894917, "usd": 0.000572018454167828, "vef": 5.72762078158246e-05, "vnd": 12.9797401722621, "xag": 2.42637929861228e-05, "xau": 3.19558109420857e-07, "xdr": 0.000408268447348566, "xlm": 0.00173994837274816, "xrp": 0.000550225513722619, "yfi": 1.83552120703245e-08, "zar": 0.00908330984111261, "bits": 0.01, "link": 2.23379860416651e-05, "sats": 1.0}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 1049.391200703675, "ars": 28735.080045382634, "aud": 396.7039288688814, "bch": 0.46479726570382673, "bdt": 24516.34000175943, "bhd": 107.70494627003882, "bmd": 285.6963329894842, "bnb": 0.48303359516294864, "brl": 1601.8136301721404, "btc": 0.00499453, "cad": 361.6872721196923, "chf": 266.84980299116694, "clp": 232714.90026246218, "cny": 1826.3138086352774, "czk": 6504.962380874641, "dkk": 1896.2836975477308, "dot": 7.451533949391614, "eos": 69.31123305389386, "eth": 0.06692493373648192, "eur": 254.9836914967815, "gbp": 214.3211038150545, "hkd": 2227.9114299919343, "huf": 94007.43528659477, "idr": 4086443.214098438, "ils": 900.3319959297427, "inr": 21319.21576134663, "jpy": 32974.4993609803, "krw": 339661.86559144646, "kwd": 86.54141901117639, "lkr": 57936.80591030611, "ltc": 1.3463009841431983, "mmk": 509859.3280692838, "mxn": 6118.845501017348, "myr": 1202.9244100522233, "ngn": 117307.45600572941, "nok": 2560.7273734850446, "nzd": 415.5741716628368, "php": 14400.706795684402, "pkr": 50037.30601719897, "pln": 1193.5181439848784, "rub": 21418.996919821235, "sar": 1071.7117981111444, "sek": 2606.7421962689973, "sgd": 390.88400886955253, "thb": 9537.064133907694, "try": 3405.7574159343417, "twd": 7937.244092747142, "uah": 7696.136100750998, "usd": 285.6963329894842, "vef": 28.606773822237045, "vnd": 6482770.168256823, "xag": 12.11862419829799, "xau": 0.1596042564245753, "xdr": 203.91090083358333, "xlm": 869.0224346141867, "xrp": 274.81178350530325, "yfi": 0.009167565734159782, "zar": 4536.686350073216, "bits": 4994.53, "link": 11.156774142467759, "sats": 499453.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 910, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3547727, "bing_matches": null}}, "FBN_20211201": {"id": "five-balance", "symbol": "fbn", "name": "Fivebalance Coin", "localization": {"en": "Fivebalance Coin", "de": "Fivebalance Coin", "es": "Fivebalance Coin", "fr": "Fivebalance Coin", "it": "Fivebalance Coin", "pl": "Fivebalance Coin", "ro": "Fivebalance Coin", "hu": "Fivebalance Coin", "nl": "Fivebalance Coin", "pt": "Fivebalance Coin", "sv": "Fivebalance Coin", "vi": "Fivebalance Coin", "tr": "Fivebalance Coin", "ru": "Fivebalance Coin", "ja": "Fivebalance Coin", "zh": "Fivebalance Coin", "zh-tw": "Fivebalance Coin", "ko": "Fivebalance Coin", "ar": "Fivebalance Coin", "th": "Fivebalance Coin", "id": "Fivebalance Coin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/6147/thumb/five_balance_token.jpg?1547042169", "small": "https://assets.coingecko.com/coins/images/6147/small/five_balance_token.jpg?1547042169"}}, "BSL_20211212": {"id": "bsclaunch", "symbol": "bsl", "name": "BSClaunch", "localization": {"en": "BSClaunch", "de": "BSClaunch", "es": "BSClaunch", "fr": "BSClaunch", "it": "BSClaunch", "pl": "BSClaunch", "ro": "BSClaunch", "hu": "BSClaunch", "nl": "BSClaunch", "pt": "BSClaunch", "sv": "BSClaunch", "vi": "BSClaunch", "tr": "BSClaunch", "ru": "BSClaunch", "ja": "BSClaunch", "zh": "BSClaunch", "zh-tw": "BSClaunch", "ko": "BSClaunch", "ar": "BSClaunch", "th": "BSClaunch", "id": "BSClaunch"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/16044/thumb/Logo_BSCLaunch_Final_Expand-03.png?1622685068", "small": "https://assets.coingecko.com/coins/images/16044/small/Logo_BSCLaunch_Final_Expand-03.png?1622685068"}, "market_data": {"current_price": {"aed": 0.9228504246819068, "ars": 25.472349997000812, "aud": 0.35052134882029895, "bch": 0.0005235964147844652, "bdt": 21.569432937400222, "bhd": 0.09472549705831426, "bmd": 0.2512539343900166, "bnb": 0.0004148543253672606, "brl": 1.3902133956273355, "btc": 4.9783932076383216e-06, "cad": 0.3179229096107352, "chf": 0.2312292470730664, "clp": 210.94861566453318, "cny": 1.5941308375243353, "czk": 5.6383646675068695, "dkk": 1.6468615007347684, "dot": 0.008439438938408605, "eos": 0.068841623911847, "eth": 5.6753443043760286e-05, "eur": 0.22146853422988333, "gbp": 0.19022862504356614, "hkd": 1.9592404922831907, "huf": 80.8761289408023, "idr": 3594.413659990137, "ils": 0.7785449887504097, "inr": 18.940489404474718, "jpy": 28.5645572929322, "krw": 294.63292616245275, "kwd": 0.07609049525247576, "lkr": 51.00908833725965, "ltc": 0.0015265045550442724, "mmk": 447.4954904514309, "mxn": 5.261056382979452, "myr": 1.0614222458306246, "ngn": 103.20124024638427, "nok": 2.230183438733813, "nzd": 0.369001829456488, "php": 12.624451167764871, "pkr": 44.55988526406939, "pln": 1.020993729009728, "rub": 18.482490667663978, "sar": 0.9425527532010365, "sek": 2.2701232666523152, "sgd": 0.3421324824588854, "thb": 8.404444105346034, "try": 3.4334176764510476, "twd": 6.945915016212023, "uah": 6.834665301650681, "usd": 0.2512539343900166, "vef": 0.02515805645047237, "vnd": 5761.384710812505, "xag": 0.011194206990294798, "xau": 0.0001408454180010115, "xdr": 0.17910913092320158, "xlm": 0.8206524868548192, "xrp": 0.29216027746462925, "yfi": 1.0897825739051768e-05, "zar": 3.9431289955300395, "bits": 4.978393207638322, "link": 0.011064388474368346, "sats": 497.8393207638322}, "market_cap": {"aed": 5908960.745729161, "ars": 163098866.8726576, "aud": 2244512.186523306, "bch": 3352.9772405118865, "bdt": 138107898.2313594, "bhd": 606522.1717053388, "bmd": 1608765.1864410806, "bnb": 2660.8427639641022, "brl": 8901458.653097149, "btc": 31.879939509080003, "cad": 2035514.283622373, "chf": 1480701.042539623, "clp": 1350692437.2465672, "cny": 10207132.478412727, "czk": 36106160.58537166, "dkk": 10546099.303195849, "dot": 54097.86019220685, "eos": 439857.997759909, "eth": 363.6198471060776, "eur": 1418226.2552893723, "gbp": 1218045.9943753215, "hkd": 12545392.238645501, "huf": 517821127.07414323, "idr": 23014833880.707455, "ils": 4984980.939783404, "inr": 121274916.71742688, "jpy": 182924415.69608846, "krw": 1886518495.8801343, "kwd": 487203.27535737486, "lkr": 326608400.01692736, "ltc": 9786.72037408123, "mmk": 2865289126.2197275, "mxn": 33689314.254546545, "myr": 6796228.530120336, "ngn": 660791891.3150458, "nok": 14281772.723501036, "nzd": 2362930.174366863, "php": 80833669.67340352, "pkr": 285314505.81532556, "pln": 6538573.524155512, "rub": 118338353.96682614, "sar": 6035113.676589132, "sek": 14537944.447963983, "sgd": 2190623.379073092, "thb": 53833988.77648874, "try": 21984234.770795513, "twd": 44474313.57916361, "uah": 43761987.7474418, "usd": 1608765.1864410806, "vef": 161085.65811834528, "vnd": 36889830883.449524, "xag": 71695.05490034723, "xau": 902.0829029931061, "xdr": 1146825.9595715737, "xlm": 5269683.954709139, "xrp": 1871012.5453565673, "yfi": 69.91057301471916, "zar": 25245386.811708014, "bits": 31879939.509080004, "link": 70990.9672670572, "sats": 3187993950.9080005}, "total_volume": {"aed": 900670.4203964304, "ars": 24860141.542646606, "aud": 342096.8362329369, "bch": 511.01217533116215, "bdt": 21051028.110148035, "bhd": 92448.84216982409, "bmd": 245215.23820213298, "bnb": 404.88361888179105, "brl": 1356800.6797114606, "btc": 4.858741333697575, "cad": 310281.87558287766, "chf": 225671.82893266098, "clp": 205878626.9921355, "cny": 1555817.1218210703, "czk": 5502850.884185496, "dkk": 1607280.4438625523, "dot": 8236.603476870578, "eos": 67187.06812193096, "eth": 55.389417437595526, "eur": 216145.70735898477, "gbp": 185656.6255018843, "hkd": 1912151.6452145027, "huf": 78932333.02488446, "idr": 3508024676.195894, "ils": 759833.2552721786, "inr": 18485269.22477434, "jpy": 27878030.000724092, "krw": 287551649.0777311, "kwd": 74261.71838284854, "lkr": 49783123.90395657, "ltc": 1489.8161853289403, "mmk": 436740278.52273154, "mxn": 5134610.91576212, "myr": 1035911.7737849104, "ngn": 100720877.35147606, "nok": 2176582.68512787, "nzd": 360133.1526484185, "php": 12321032.137428153, "pkr": 43488922.49514825, "pln": 996454.9254515176, "rub": 18038278.137387075, "sar": 919899.218515291, "sek": 2215562.589822954, "sgd": 333909.58985984436, "thb": 8202449.717861328, "try": 3350898.108013114, "twd": 6778975.260097981, "uah": 6670399.347357318, "usd": 245215.23820213298, "vef": 24553.401801179585, "vnd": 5622914234.819447, "xag": 10925.162785105393, "xau": 137.4603060789696, "xdr": 174804.37992001072, "xlm": 800928.7318577938, "xrp": 285138.42860061093, "yfi": 10.635904830603513, "zar": 3848358.905296632, "bits": 4858741.333697574, "link": 10798.464357941511, "sats": 485874133.3697575}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 118736, "bing_matches": null}}, "LEV_20211219": {"id": "lever-network", "symbol": "lev", "name": "Lever Network", "localization": {"en": "Lever Network", "de": "Lever Network", "es": "Lever Network", "fr": "Lever Network", "it": "Lever Network", "pl": "Lever Network", "ro": "Lever Network", "hu": "Lever Network", "nl": "Lever Network", "pt": "Lever Network", "sv": "Lever Network", "vi": "Lever Network", "tr": "Lever Network", "ru": "Lever Network", "ja": "Lever Network", "zh": "Lever Network", "zh-tw": "Lever Network", "ko": "Lever Network", "ar": "Lever Network", "th": "Lever Network", "id": "Lever Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15323/thumb/lever.PNG?1620513101", "small": "https://assets.coingecko.com/coins/images/15323/small/lever.PNG?1620513101"}, "market_data": {"current_price": {"aed": 0.22525117275113327, "ars": 6.245260626552238, "aud": 0.08552492242290367, "bch": 0.00013734823388964366, "bdt": 5.261409178493676, "bhd": 0.02312106916773685, "bmd": 0.061324541327797556, "bnb": 0.00011387370475650344, "brl": 0.3483785868290846, "btc": 1.2566270796612848e-06, "cad": 0.07871507740661704, "chf": 0.05668607567084555, "clp": 52.19204408793507, "cny": 0.39049014935888365, "czk": 1.3718361832815051, "dkk": 0.40383436955181273, "dot": 0.002271918500638753, "eos": 0.018171224342834007, "eth": 1.526870707387634e-05, "eur": 0.05430748068636435, "gbp": 0.046226255279269796, "hkd": 0.47851846220787053, "huf": 20.064163431628817, "idr": 878.9493197159906, "ils": 0.19249589549171728, "inr": 4.673644234786478, "jpy": 7.000278158418783, "krw": 72.69397889028652, "kwd": 0.018603780804448678, "lkr": 12.387617323616523, "ltc": 0.0004002486049735131, "mmk": 109.15844570487928, "mxn": 1.2897378922543778, "myr": 0.2594028098165836, "ngn": 25.280222069293373, "nok": 0.5516169475233569, "nzd": 0.09042450797682931, "php": 3.0784310180613543, "pkr": 10.921320005749834, "pln": 0.25096222259730794, "rub": 4.517043065122913, "sar": 0.23004233651599168, "sek": 0.5568749750213438, "sgd": 0.08373406184250805, "thb": 2.047771896747187, "try": 0.9088787621110225, "twd": 1.7020012586871553, "uah": 1.6707552397143497, "usd": 0.061324541327797556, "vef": 0.006140426323152368, "vnd": 1412.6824367953907, "xag": 0.002776753154487793, "xau": 3.446623196246201e-05, "xdr": 0.04387464309297275, "xlm": 0.22521733532517751, "xrp": 0.07402852866685389, "yfi": 2.9766364794302837e-06, "zar": 0.9807468318293084, "bits": 1.2566270796612848, "link": 0.003120170883911932, "sats": 125.66270796612848}, "market_cap": {"aed": 3179436.996001668, "ars": 88132000.05134027, "aud": 1207001.0514708785, "bch": 1939.2127896938014, "bdt": 74265180.46007082, "bhd": 326355.6047285717, "bmd": 865600.4454007954, "bnb": 1608.0916196286373, "brl": 4917303.010232833, "btc": 17.742662219932857, "cad": 1111128.0117387325, "chf": 800049.389271039, "clp": 736694570.0809715, "cny": 5511797.396134111, "czk": 19361837.32276957, "dkk": 5699551.326344216, "dot": 32158.556210203362, "eos": 256773.9875653366, "eth": 215.65819748604443, "eur": 766487.4632015146, "gbp": 652463.6477297572, "hkd": 6754323.555484675, "huf": 283207153.7262317, "idr": 12406434783.818266, "ils": 2717093.830099729, "inr": 65968834.72232787, "jpy": 98804612.04060788, "krw": 1026074002.9079927, "kwd": 262593.744719458, "lkr": 174852136.52819642, "ltc": 5650.1661817239565, "mmk": 1540779550.4957528, "mxn": 18201325.940020334, "myr": 3661489.884045373, "ngn": 356832207.9417222, "nok": 7789418.089699847, "nzd": 1276373.7335670788, "php": 43452281.95227722, "pkr": 154155241.22406334, "pln": 3543032.463092261, "rub": 63766188.011340484, "sar": 3247064.6275999295, "sek": 7858994.187900721, "sgd": 1181769.6640878909, "thb": 28928366.885294616, "try": 12808397.990651244, "twd": 24023873.896053314, "uah": 23582834.022713155, "usd": 865600.4454007954, "vef": 86672.57259798169, "vnd": 19940117284.58989, "xag": 39166.58508144169, "xau": 485.94809004800675, "xdr": 619293.8386619994, "xlm": 3209338.8360449933, "xrp": 1044706.5681983486, "yfi": 42.06452419224805, "zar": 13843954.755504265, "bits": 17742662.219932858, "link": 44196.756732892296, "sats": 1774266221.9932857}, "total_volume": {"aed": 121772.21232349648, "ars": 3376227.4963705624, "aud": 46235.31538163765, "bch": 74.25132617598234, "bdt": 2844351.1648757965, "bhd": 12499.396604476655, "bmd": 33152.435905228944, "bnb": 61.560846872893016, "brl": 188335.67313401485, "btc": 0.6793405676295171, "cad": 42553.86998410558, "chf": 30644.85195822921, "clp": 28215349.9875234, "cny": 211101.4508701358, "czk": 741623.3395959978, "dkk": 218315.4209231138, "dot": 1228.2135478474222, "eos": 9823.479104804517, "eth": 8.254359864130777, "eur": 29358.968426773143, "gbp": 24990.206728053854, "hkd": 258690.11499029663, "huf": 10846813.979472814, "idr": 475165575.7206703, "ils": 104064.50173343682, "inr": 2526601.709246998, "jpy": 3784394.7617192515, "krw": 39298825.945949286, "kwd": 10057.321870825708, "lkr": 6696824.475938561, "ltc": 216.3769338544884, "mmk": 59011747.92978097, "mxn": 697240.4828754383, "myr": 140234.8038791184, "ngn": 13666648.354405278, "nok": 298207.61967471393, "nzd": 48884.06240072178, "php": 1664219.3289212016, "pkr": 5904134.84800082, "pln": 135671.76890599437, "rub": 2441942.1239073547, "sar": 124362.34583590034, "sek": 301050.14268166426, "sgd": 45267.164795897275, "thb": 1107038.4724535602, "try": 491345.62206421746, "twd": 920112.6729612901, "uah": 903220.8769712897, "usd": 33152.435905228944, "vef": 3319.5534071905736, "vnd": 763705083.2546985, "xag": 1501.1303629118395, "xau": 18.632663551815796, "xdr": 23718.91026839605, "xlm": 121753.91959645919, "xrp": 40020.29201763978, "yfi": 1.6091885558505976, "zar": 530197.9562746325, "bits": 679340.5676295172, "link": 1686.7841650755797, "sats": 67934056.76295172}}, "community_data": {"facebook_likes": null, "twitter_followers": 24275, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 5, "stars": 3, "subscribers": 4, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1889320, "bing_matches": null}}, "DUO_20211222": {"id": "parallelcoin", "symbol": "duo", "name": "ParallelCoin", "localization": {"en": "ParallelCoin", "de": "ParallelCoin", "es": "ParallelCoin", "fr": "ParallelCoin", "it": "ParallelCoin", "pl": "ParallelCoin", "ro": "ParallelCoin", "hu": "ParallelCoin", "nl": "ParallelCoin", "pt": "ParallelCoin", "sv": "ParallelCoin", "vi": "ParallelCoin", "tr": "ParallelCoin", "ru": "ParallelCoin", "ja": "ParallelCoin", "zh": "ParallelCoin", "zh-tw": "ParallelCoin", "ko": "ParallelCoin", "ar": "ParallelCoin", "th": "ParallelCoin", "id": "ParallelCoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2659/thumb/Parallelcoin.png?1561954155", "small": "https://assets.coingecko.com/coins/images/2659/small/Parallelcoin.png?1561954155"}, "market_data": {"current_price": {"aed": 0.1453370718961464, "ars": 4.03312621971904, "aud": 0.055522314667087624, "bch": 9.147326157775374e-05, "bdt": 3.396662613498382, "bhd": 0.014918940842926774, "bmd": 0.039567959460985666, "bnb": 7.523566945852168e-05, "brl": 0.22539492427355876, "btc": 8.527997704e-07, "cad": 0.051023675084130304, "chf": 0.0365785209877893, "clp": 33.36607749507076, "cny": 0.2522615687475685, "czk": 0.8879702974376287, "dkk": 0.26184176309226237, "dot": 0.0015873523045737768, "eos": 0.012219846744729517, "eth": 1.014703072438121e-05, "eur": 0.03520234735773624, "gbp": 0.029896442265855867, "hkd": 0.30873493888826004, "huf": 12.931996190633969, "idr": 569.2147728158752, "ils": 0.12370882957517691, "inr": 3.009242236906612, "jpy": 4.4996089979641045, "krw": 47.002383364110294, "kwd": 0.011992178017516661, "lkr": 7.993154986809448, "ltc": 0.0002684537566485416, "mmk": 70.43470301635969, "mxn": 0.8246081455547802, "myr": 0.16691743698616837, "ngn": 16.229194252517914, "nok": 0.35780189924112554, "nzd": 0.05874089119352256, "php": 1.9736500553217236, "pkr": 7.049031977974606, "pln": 0.16304017263858606, "rub": 2.9349098682632038, "sar": 0.14849400154174136, "sek": 0.36180657241817205, "sgd": 0.054125407426276965, "thb": 1.3185212929922911, "try": 0.6498697057015536, "twd": 1.1016590409046596, "uah": 1.078482543897938, "usd": 0.039567959460985666, "vef": 0.0039619397808284985, "vnd": 909.865227805362, "xag": 0.0017699848256171934, "xau": 2.2004533615443344e-05, "xdr": 0.028219473007980375, "xlm": 0.14896174921207694, "xrp": 0.0483958270810884, "yfi": 1.201730694713406e-06, "zar": 0.6297656211790217, "bits": 0.8527997704, "link": 0.002029750393383062, "sats": 85.27997704}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0002765197663603271, "ars": 0.0076734662768996416, "aud": 0.00010563731110874759, "bch": 1.7403794221045004e-07, "bdt": 0.006462524255068157, "bhd": 2.838492603716091e-05, "bmd": 7.528239535006593e-05, "bnb": 1.4314413706847792e-07, "brl": 0.0004288386368721156, "btc": 1.622545371160744e-09, "cad": 9.707815445181716e-05, "chf": 6.95946598165778e-05, "clp": 0.06348263270289657, "cny": 0.0004799553833148113, "czk": 0.0016894611676078067, "dkk": 0.0004981827568769693, "dot": 3.0201123682051138e-06, "eos": 2.3249602614989827e-05, "eth": 1.9305842126514932e-08, "eur": 6.697633810630255e-05, "gbp": 5.6881270019440035e-05, "hkd": 0.0005874021820781925, "huf": 0.024604545272262097, "idr": 1.0829937189072123, "ils": 0.00023536965623802735, "inr": 0.005725414372360889, "jpy": 0.008561001075616484, "krw": 0.0894272046123899, "kwd": 2.2816437817907376e-05, "lkr": 0.015207856609453525, "ltc": 5.107628019370818e-07, "mmk": 0.13400977030595612, "mxn": 0.0015689077038139804, "myr": 0.0003175787847842538, "ngn": 0.030877827276783107, "nok": 0.0006807574715151579, "nzd": 0.00011176100699370796, "php": 0.0037550863317556645, "pkr": 0.013411558731614264, "pln": 0.00031020186286390025, "rub": 0.005583988864456254, "sar": 0.00028252617227333255, "sek": 0.0006883768027485383, "sgd": 0.00010297954142330882, "thb": 0.002508631797260063, "try": 0.0012364486007648329, "twd": 0.002096027507815614, "uah": 0.002051931672845656, "usd": 7.528239535006593e-05, "vef": 7.53802624640211e-06, "vnd": 1.7311186810747596, "xag": 3.3675908290675287e-06, "xau": 4.186604570207866e-08, "xdr": 5.369065153971354e-05, "xlm": 0.0002834161136683897, "xrp": 9.207838456274961e-05, "yfi": 2.2864248370686734e-09, "zar": 0.0011981983685114186, "bits": 0.001622545371160744, "link": 3.861823395954548e-06, "sats": 0.1622545371160744}}, "community_data": {"facebook_likes": null, "twitter_followers": 475, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BXH_20211226": {"id": "bxh", "symbol": "bxh", "name": "BXH Token", "localization": {"en": "BXH Token", "de": "BXH Token", "es": "BXH Token", "fr": "BXH Token", "it": "BXH Token", "pl": "BXH Token", "ro": "BXH Token", "hu": "BXH Token", "nl": "BXH Token", "pt": "BXH Token", "sv": "BXH Token", "vi": "BXH Token", "tr": "BXH Token", "ru": "BXH Token", "ja": "BXH Token", "zh": "BXH Token", "zh-tw": "BXH Token", "ko": "BXH Token", "ar": "BXH Token", "th": "BXH Token", "id": "BXH Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14936/thumb/qzfeN3Q.jpeg?1631512429", "small": "https://assets.coingecko.com/coins/images/14936/small/qzfeN3Q.jpeg?1631512429"}, "market_data": {"current_price": {"aed": 0.05214398877545391, "ars": 1.4516318372465473, "aud": 0.019681578110930444, "bch": 3.2312648224335556e-05, "bdt": 1.2179680191889313, "bhd": 0.00535221106525479, "bmd": 0.014196319142670551, "bnb": 2.655013240787794e-05, "brl": 0.0802730865922305, "btc": 2.909037868502884e-07, "cad": 0.018233553558378045, "chf": 0.013053444470089859, "clp": 12.218487959713679, "cny": 0.09043197257072565, "czk": 0.3144960266792796, "dkk": 0.09320025480354624, "dot": 0.0005207160882472399, "eos": 0.004225098506027346, "eth": 3.5584981684730806e-06, "eur": 0.012533717226276685, "gbp": 0.010630785823116547, "hkd": 0.11072774023304464, "huf": 4.615163771330752, "idr": 201.9071490066318, "ils": 0.04493646076144369, "inr": 1.0713216750218473, "jpy": 1.620197511114704, "krw": 16.864588307131182, "kwd": 0.004299383644996058, "lkr": 2.8747414238139823, "ltc": 9.126552938230217e-05, "mmk": 25.240937293900316, "mxn": 0.2941960001212195, "myr": 0.05981619070764226, "ngn": 5.835626239952558, "nok": 0.12610831631859656, "nzd": 0.020860994108984367, "php": 0.7129391047559578, "pkr": 2.5325454398492897, "pln": 0.058068538643264736, "rub": 1.0454098435066885, "sar": 0.053298532822370064, "sek": 0.1290064238899771, "sgd": 0.01933444971525387, "thb": 0.4774926123146384, "try": 0.17090524145918687, "twd": 0.3936071445496824, "uah": 0.38702503537550215, "usd": 0.014196319142670551, "vef": 0.0014214774357556024, "vnd": 325.97749463039463, "xag": 0.000623069632938622, "xau": 7.870439332696547e-06, "xdr": 0.010136697131675053, "xlm": 0.05278159120661409, "xrp": 0.014849880317878017, "yfi": 4.483374775407125e-07, "zar": 0.22313064612492414, "bits": 0.2909037868502884, "link": 0.0007089472422170112, "sats": 29.090378685028842}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 341159.763873746, "ars": 9497516.136697449, "aud": 128769.63766432284, "bch": 211.41028327965256, "bdt": 7968736.024810423, "bhd": 35017.63302166712, "bmd": 92881.5190461552, "bnb": 173.7081706981378, "brl": 525198.5494464836, "btc": 1.9032810792284658, "cad": 119295.722721615, "chf": 85404.09235534447, "clp": 79941265.81264478, "cny": 591664.564475913, "czk": 2057636.7999611355, "dkk": 609776.4606899122, "dot": 3406.862073338627, "eos": 27643.332290262806, "eth": 23.282000924964063, "eur": 82003.6999430647, "gbp": 69553.48960404184, "hkd": 724452.6281802491, "huf": 30195392.0181696, "idr": 1321007404.6339414, "ils": 294003.44512793806, "inr": 7009280.614438339, "jpy": 10600382.005699595, "krw": 110339064.95847523, "kwd": 28129.353806166164, "lkr": 18808421.227033705, "ltc": 597.1182332820605, "mmk": 165142567.90406233, "mxn": 1924820.8718010965, "myr": 391356.2805009742, "ngn": 38180448.347573124, "nok": 825082.3235452332, "nzd": 136486.14138515835, "php": 4664509.607853358, "pkr": 16569553.356939076, "pln": 379922.00821727875, "rub": 6839748.621799349, "sar": 348713.5391732138, "sek": 844043.6212509109, "sgd": 126498.49876060631, "thb": 3124066.0849751444, "try": 1118172.836222466, "twd": 2575232.9970736904, "uah": 2532168.573649458, "usd": 92881.5190461552, "vef": 9300.22650209152, "vnd": 2132756003.2885623, "xag": 4076.52528780661, "xau": 51.49351415918839, "xdr": 66320.84121515953, "xlm": 345331.3721447712, "xrp": 97157.53976200397, "yfi": 2.9333143007567877, "zar": 1459865.2756079426, "bits": 1903281.079228466, "link": 4638.392256396644, "sats": 190328107.9228466}}, "community_data": {"facebook_likes": null, "twitter_followers": 61316, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 255956, "bing_matches": null}}, "DS_20220102": {"id": "destorage", "symbol": "ds", "name": "DeStorage", "localization": {"en": "DeStorage", "de": "DeStorage", "es": "DeStorage", "fr": "DeStorage", "it": "DeStorage", "pl": "DeStorage", "ro": "DeStorage", "hu": "DeStorage", "nl": "DeStorage", "pt": "DeStorage", "sv": "DeStorage", "vi": "DeStorage", "tr": "DeStorage", "ru": "DeStorage", "ja": "DeStorage", "zh": "DeStorage", "zh-tw": "DeStorage", "ko": "DeStorage", "ar": "DeStorage", "th": "DeStorage", "id": "DeStorage"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15984/thumb/DS_LOG_Transparent_200x200.png?1622535280", "small": "https://assets.coingecko.com/coins/images/15984/small/DS_LOG_Transparent_200x200.png?1622535280"}, "market_data": {"current_price": {"aed": 0.004610941548924416, "ars": 0.1288441460234231, "aud": 0.0017301260580349183, "bch": 2.9132296388758093e-06, "bdt": 0.10775050265323374, "bhd": 0.00047333196869737477, "bmd": 0.0012553792768924875, "bnb": 2.4418170844768175e-06, "brl": 0.007159804629900925, "btc": 2.698020168802611e-08, "cad": 0.001604983574817891, "chf": 0.0011478321896203827, "clp": 1.0666581101972379, "cny": 0.007994631849034425, "czk": 0.027576538706334853, "dkk": 0.008222106574007338, "dot": 4.6924018844830434e-05, "eos": 0.0004131562906723814, "eth": 3.445814569948508e-07, "eur": 0.001105656467433903, "gbp": 0.0009303402406573154, "hkd": 0.00978807421627868, "huf": 0.4093540746091013, "idr": 17.851116703628076, "ils": 0.003916281192193811, "inr": 0.09361433945640567, "jpy": 0.14432718932649855, "krw": 1.4872123987651962, "kwd": 0.000379715825260948, "lkr": 0.2546374454759358, "ltc": 8.628868969273619e-06, "mmk": 2.2330241846700924, "mxn": 0.025831060615122872, "myr": 0.00524999613596438, "ngn": 0.518264670741354, "nok": 0.01102396247451814, "nzd": 0.0018363047818952085, "php": 0.0640688513383998, "pkr": 0.2240236308486737, "pln": 0.005084476889064657, "rub": 0.09291062028281288, "sar": 0.00471255069221683, "sek": 0.011337758333949451, "sgd": 0.0016968459534044988, "thb": 0.04202498879670338, "try": 0.01586786852199333, "twd": 0.034691904165213075, "uah": 0.034206290821049846, "usd": 0.0012553792768924875, "vef": 0.00012570112699524457, "vnd": 28.651815433395484, "xag": 5.500745592730881e-05, "xau": 6.954926731912062e-07, "xdr": 0.0008965404090062606, "xlm": 0.004685429527032028, "xrp": 0.0015335017789028626, "yfi": 4.349499198106399e-08, "zar": 0.020002962322149494, "bits": 0.02698020168802611, "link": 6.356718894219473e-05, "sats": 2.698020168802611}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 336877.98118539585, "ars": 9413425.72647707, "aud": 126403.98223287138, "bch": 212.8421948230665, "bdt": 7872312.285979933, "bhd": 34581.89967350082, "bmd": 91718.71556692678, "bnb": 178.40052863702954, "brl": 523099.3504928536, "btc": 1.9711886997910928, "cad": 117261.00207158232, "chf": 83861.26492302355, "clp": 77930641.05575053, "cny": 584092.2963448595, "czk": 2014757.417525289, "dkk": 600711.7276055863, "dot": 3428.295190868201, "eos": 30185.43081471623, "eth": 25.175314923136646, "eur": 80779.88295483711, "gbp": 67971.1808884848, "hkd": 715122.2037160635, "huf": 29907638.772063408, "idr": 1304212619.7470267, "ils": 286125.7050825852, "inr": 6839516.257462593, "jpy": 10544625.572582865, "krw": 108656573.75482856, "kwd": 27742.251616243935, "lkr": 18603954.887727797, "ltc": 630.4300168281866, "mmk": 163146002.0232316, "mxn": 1887231.8071197541, "myr": 383567.66850088764, "ngn": 37864708.139661394, "nok": 805416.8945050986, "nzd": 134161.4594768065, "php": 4680906.289254975, "pkr": 16367292.384291438, "pln": 371474.73929081927, "rub": 6788102.139108242, "sar": 344301.60230466834, "sek": 828342.9963669224, "sgd": 123972.51908319218, "thb": 3070369.30200834, "try": 1159315.392894396, "twd": 2534610.0172057906, "uah": 2499130.8333378974, "usd": 91718.71556692678, "vef": 9183.794989716363, "vnd": 2093317739.57325, "xag": 4018.875647482252, "xau": 50.81308561123304, "xdr": 65501.74619056076, "xlm": 342320.114732573, "xrp": 112038.501885047, "yfi": 3.177768560886176, "zar": 1461427.6701002961, "bits": 1971188.6997910927, "link": 4644.254552624391, "sats": 197118869.97910926}}, "community_data": {"facebook_likes": null, "twitter_followers": 9159, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 5758178, "bing_matches": null}}, "BQT_20220105": {"id": "blockchain-quotations-index-token", "symbol": "bqt", "name": "Blockchain Quotations Index Token", "localization": {"en": "Blockchain Quotations Index Token", "de": "Blockchain Quotations Index Token", "es": "Blockchain Quotations Index Token", "fr": "Blockchain Quotations Index Token", "it": "Blockchain Quotations Index Token", "pl": "Blockchain Quotations Index Token", "ro": "Blockchain Quotations Index Token", "hu": "Blockchain Quotations Index Token", "nl": "Blockchain Quotations Index Token", "pt": "Blockchain Quotations Index Token", "sv": "Blockchain Quotations Index Token", "vi": "Blockchain Quotations Index Token", "tr": "Blockchain Quotations Index Token", "ru": "Blockchain Quotations Index Token", "ja": "Blockchain Quotations Index Token", "zh": "Blockchain Quotations Index Token", "zh-tw": "Blockchain Quotations Index Token", "ko": "Blockchain Quotations Index Token", "ar": "Blockchain Quotations Index Token", "th": "Blockchain Quotations Index Token", "id": "Blockchain Quotations Index Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5814/thumb/blockchain-quotations-index-token.png?1547351058", "small": "https://assets.coingecko.com/coins/images/5814/small/blockchain-quotations-index-token.png?1547351058"}, "market_data": {"current_price": {"aed": 0.029492164216921017, "ars": 0.8245440228627275, "aud": 0.011053001521948384, "bch": 1.804504873601424e-05, "bdt": 0.6884242196165589, "bhd": 0.0030267568055316997, "bmd": 0.008029448466354755, "bnb": 1.5178161829825503e-05, "brl": 0.04473446624060223, "btc": 1.68217194458875e-07, "cad": 0.010149624333895737, "chf": 0.007320480284569494, "clp": 6.841090093334259, "cny": 0.05103437150730429, "czk": 0.17562210421822763, "dkk": 0.05250528617185581, "dot": 0.00028026569994123483, "eos": 0.0025576078865727305, "eth": 2.123422683997704e-06, "eur": 0.007059507150516042, "gbp": 0.005933890887811632, "hkd": 0.06259838318854834, "huf": 2.6072422115100484, "idr": 114.35540505782446, "ils": 0.02495841643487851, "inr": 0.5983227833913147, "jpy": 0.9242537540651633, "krw": 9.546050692679842, "kwd": 0.002429084808938577, "lkr": 1.6293489153237803, "ltc": 5.318659941840647e-05, "mmk": 14.279674098124099, "mxn": 0.16458201404941336, "myr": 0.03353499151973059, "ngn": 3.3077312957148397, "nok": 0.07080395760701252, "nzd": 0.011735536759382405, "php": 0.40950187178409286, "pkr": 1.4312491891277366, "pln": 0.0324012333962813, "rub": 0.6005352979162193, "sar": 0.030143954696177398, "sek": 0.07266691009293393, "sgd": 0.010828915674149354, "thb": 0.26653955723221096, "try": 0.10696108596515848, "twd": 0.22255302608680141, "uah": 0.21910783866279154, "usd": 0.008029448466354755, "vef": 0.0008039886749361028, "vnd": 182.8305415788979, "xag": 0.00034438248266056317, "xau": 4.389940360010146e-06, "xdr": 0.005726723087931208, "xlm": 0.028933357145627805, "xrp": 0.009432682960937822, "yfi": 2.1962089232933563e-07, "zar": 0.12807809381200574, "bits": 0.168217194458875, "link": 0.00038848921045264365, "sats": 16.8217194458875}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 3955.487844691067, "ars": 110587.81023519914, "aud": 1482.4281068642124, "bch": 2.4202011899557356, "bdt": 92331.42785506023, "bhd": 405.9484975418501, "bmd": 1076.9092961315182, "bnb": 2.035694436699992, "brl": 5999.784761537526, "btc": 0.0225612831617272, "cad": 1361.2671957750467, "chf": 981.8225129202893, "clp": 917526.7203040546, "cny": 6844.727795282331, "czk": 23554.429352312578, "dkk": 7042.006809240662, "dot": 37.58922408160674, "eos": 343.0262639396294, "eth": 0.2847933625323843, "eur": 946.8208069774242, "gbp": 795.853200389931, "hkd": 8395.692563570934, "huf": 349683.21754686476, "idr": 15337342.195505086, "ils": 3347.421779723372, "inr": 80247.02695600108, "jpy": 123960.87525910682, "krw": 1280315.9239848396, "kwd": 325.7887540842996, "lkr": 218528.20911752782, "ltc": 7.133384513682303, "mmk": 1915189.2992943798, "mxn": 22073.73291559657, "myr": 4497.71167529328, "ngn": 443632.7845413787, "nok": 9496.223865113088, "nzd": 1573.9697046725764, "php": 54922.37410270748, "pkr": 191959.0820354433, "pln": 4345.6520826795095, "rub": 80543.7693125502, "sar": 4042.9059568045473, "sek": 9746.082975455058, "sgd": 1452.373722227774, "thb": 35748.27438931905, "try": 14345.616424697588, "twd": 29848.80265180691, "uah": 29386.734257025124, "usd": 1076.9092961315182, "vef": 107.83092782164908, "vnd": 24521224.672914688, "xag": 46.18856432743014, "xau": 0.5887786194739864, "xdr": 768.0678636404409, "xlm": 3880.5406634069095, "xrp": 1265.1110484935903, "yfi": 0.029455544993557133, "zar": 17177.828643512184, "bits": 22561.2831617272, "link": 52.104156834221286, "sats": 2256128.31617272}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3991016, "bing_matches": null}}, "TUBER_20220109": {"id": "tokentuber", "symbol": "tuber", "name": "TokenTuber", "localization": {"en": "TokenTuber", "de": "TokenTuber", "es": "TokenTuber", "fr": "TokenTuber", "it": "TokenTuber", "pl": "TokenTuber", "ro": "TokenTuber", "hu": "TokenTuber", "nl": "TokenTuber", "pt": "TokenTuber", "sv": "TokenTuber", "vi": "TokenTuber", "tr": "TokenTuber", "ru": "TokenTuber", "ja": "TokenTuber", "zh": "TokenTuber", "zh-tw": "TokenTuber", "ko": "TokenTuber", "ar": "TokenTuber", "th": "TokenTuber", "id": "TokenTuber"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9617/thumb/Wlk5tQQe_400x400.png?1569853753", "small": "https://assets.coingecko.com/coins/images/9617/small/Wlk5tQQe_400x400.png?1569853753"}, "market_data": {"current_price": {"aed": 0.003387961913307099, "ars": 0.09509805076933282, "aud": 0.0012768844369433693, "bch": 2.285000265509132e-06, "bdt": 0.07914372332537155, "bhd": 0.00034778981889488304, "bmd": 0.0009224044187989372, "bnb": 1.93212178087046e-06, "brl": 0.005266468029132534, "btc": 2.115872624509443e-08, "cad": 0.0011766329126862056, "chf": 0.0008461446334747354, "clp": 0.7734655243294419, "cny": 0.005862802485886047, "czk": 0.020082588083686036, "dkk": 0.006064819200051629, "dot": 3.42611944900601e-05, "eos": 0.00031545367013916583, "eth": 2.5925758430879224e-07, "eur": 0.0008152846712393977, "gbp": 0.0006802898621437538, "hkd": 0.007190465286084297, "huf": 0.29543691129711214, "idr": 13.287097292135883, "ils": 0.002855848941808041, "inr": 0.06865489572400893, "jpy": 0.10710129947116336, "krw": 1.1071161231956768, "kwd": 0.0002790872929738997, "lkr": 0.18638334471836898, "ltc": 6.787346464747714e-06, "mmk": 1.6405394162918572, "mxn": 0.018985570663599634, "myr": 0.0038681029302333383, "ngn": 0.3798532984420961, "nok": 0.00816338241566549, "nzd": 0.0013572378530782015, "php": 0.04709794564135887, "pkr": 0.16294274058083222, "pln": 0.0037293271854250444, "rub": 0.07074528274685447, "sar": 0.0034647253314439566, "sek": 0.008403749938351471, "sgd": 0.0012522719198365575, "thb": 0.030659301455667243, "try": 0.012630022504404457, "twd": 0.025469060927704415, "uah": 0.025342399120128055, "usd": 0.0009224044187989372, "vef": 9.236035445433766e-05, "vnd": 20.993478644671587, "xag": 4.044661282440069e-05, "xau": 5.092963757956455e-07, "xdr": 0.0006572094587765686, "xlm": 0.003427031119654854, "xrp": 0.0011885280803452458, "yfi": 2.7902478340141754e-08, "zar": 0.014659370337240487, "bits": 0.02115872624509443, "link": 3.626678984531557e-05, "sats": 2.1158726245094432}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 3964.8505160573786, "ars": 111290.96646213175, "aud": 1494.3072113283383, "bch": 2.6740809707189652, "bdt": 92619.99995832251, "bhd": 407.01007809702816, "bmd": 1079.467753614345, "bnb": 2.2611157492299583, "brl": 6163.221139261105, "btc": 0.02476154951520413, "cad": 1376.985258526762, "chf": 990.2227570842795, "clp": 905168.139950162, "cny": 6861.09704197278, "czk": 23502.17085222376, "dkk": 7097.51235415962, "dot": 40.095053643049575, "eos": 369.1678592757824, "eth": 0.30340292873455615, "eur": 954.1080839193573, "gbp": 796.1268987101436, "hkd": 8414.828953137587, "huf": 345742.7268051392, "idr": 15549571.070651613, "ils": 3342.131476223347, "inr": 80345.17674831027, "jpy": 125338.08033991516, "krw": 1295631.4281889438, "kwd": 326.60916087232346, "lkr": 218119.955123634, "ltc": 7.943068671379096, "mmk": 1919883.9059403695, "mxn": 22218.357693914724, "myr": 4526.74802478175, "ngn": 444533.19868762244, "nok": 9553.410519875346, "nzd": 1588.3428857489453, "php": 55117.59543338689, "pkr": 190687.978675974, "pln": 4364.34210125048, "rub": 82791.50651185786, "sar": 4054.684901980908, "sek": 9834.706862854206, "sgd": 1465.5037732586472, "thb": 35879.84467033244, "try": 14780.61221636443, "twd": 29805.830746230215, "uah": 29657.60147270698, "usd": 1079.467753614345, "vef": 108.08710616940446, "vnd": 24568164.21437169, "xag": 47.33370026968834, "xau": 0.5960173254806248, "xdr": 769.1164565792076, "xlm": 4010.5722705852036, "xrp": 1390.9058877541129, "yfi": 0.03265360074198773, "zar": 17155.50928078445, "bits": 24761.54951520413, "link": 42.44215375301653, "sats": 2476154.951520413}}, "community_data": {"facebook_likes": null, "twitter_followers": 541, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 54, "reddit_accounts_active_48h": "1.88888888888889"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1453977, "bing_matches": null}}, "POFI_20220116": {"id": "pofi", "symbol": "pofi", "name": "PoFi", "localization": {"en": "PoFi", "de": "PoFi", "es": "PoFi", "fr": "PoFi", "it": "PoFi", "pl": "PoFi", "ro": "PoFi", "hu": "PoFi", "nl": "PoFi", "pt": "PoFi", "sv": "PoFi", "vi": "PoFi", "tr": "PoFi", "ru": "PoFi", "ja": "PoFi", "zh": "PoFi", "zh-tw": "PoFi", "ko": "PoFi", "ar": "PoFi", "th": "PoFi", "id": "PoFi"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14734/thumb/POLLO200_200.png?1617963715", "small": "https://assets.coingecko.com/coins/images/14734/small/POLLO200_200.png?1617963715"}, "market_data": {"current_price": {"aed": 0.2395094387259728, "ars": 6.76026818216633, "aud": 0.08953907555692722, "bch": 0.00016977006572051008, "bdt": 5.605152389673109, "bhd": 0.024589509643592647, "bmd": 0.06520634851378189, "bnb": 0.00013379757882133232, "brl": 0.360884535849525, "btc": 1.4815040702674423e-06, "cad": 0.08154379913390997, "chf": 0.05960362343043215, "clp": 53.692211493218295, "cny": 0.4146210876597326, "czk": 1.3863474808944227, "dkk": 0.4240520122579788, "dot": 0.0023816024301287707, "eos": 0.022571366564447515, "eth": 1.9298582572544503e-05, "eur": 0.056990348601045286, "gbp": 0.04756809644715239, "hkd": 0.5080585247625563, "huf": 20.120809815753823, "idr": 934.1787519826952, "ils": 0.20260720991156703, "inr": 4.812186136190563, "jpy": 7.479102968182257, "krw": 77.33179505166217, "kwd": 0.01971494385409646, "lkr": 13.226470143138526, "ltc": 0.0004602160453529386, "mmk": 115.91678088870182, "mxn": 1.3279817347841758, "myr": 0.27295377487869027, "ngn": 26.991515903794834, "nok": 0.564902159079447, "nzd": 0.0952267645123904, "php": 3.325139121952994, "pkr": 11.486544041301116, "pln": 0.2579162780225339, "rub": 4.8643675165887155, "sar": 0.24475111625760154, "sek": 0.5832375322180369, "sgd": 0.08778235132161749, "thb": 2.169663781654062, "try": 0.8642579844713679, "twd": 1.8005233396065028, "uah": 1.8078398831478393, "usd": 0.06520634851378189, "vef": 0.006529111676684971, "vnd": 1480.1123448948483, "xag": 0.002818334450066, "xau": 3.5729166604641646e-05, "xdr": 0.046432658300481953, "xlm": 0.2295610651499744, "xrp": 0.08124376664441207, "yfi": 1.9287741084842785e-06, "zar": 0.998040871621866, "bits": 1.4815040702674422, "link": 0.0024296772568971905, "sats": 148.15040702674423}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 119870.34182600304, "ars": 3383397.590267301, "aud": 44812.762498571494, "bch": 84.96698885017142, "bdt": 2805282.065337212, "bhd": 12306.625333808239, "bmd": 32634.652426016928, "bnb": 66.96337979044942, "brl": 180616.48385179025, "btc": 0.7414672267791305, "cad": 40811.26459135548, "chf": 29830.585185616244, "clp": 26872025.500630863, "cny": 207510.70091607078, "czk": 693842.9955345707, "dkk": 212230.7159657509, "dot": 1191.9509264927228, "eos": 11296.579541718644, "eth": 9.6586076191134, "eur": 28522.68622033875, "gbp": 23807.011579431768, "hkd": 254274.5261099317, "huf": 10070118.168453036, "idr": 467540347.981331, "ils": 101401.4129785467, "inr": 2408416.1365159694, "jpy": 3743161.99861171, "krw": 38703229.217896886, "kwd": 9866.989257048963, "lkr": 6619620.110351453, "ltc": 230.3301905917153, "mmk": 58014348.92257459, "mxn": 664631.9465906097, "myr": 136608.6550553065, "ngn": 13508788.025225425, "nok": 282723.7843623126, "nzd": 47659.35269108326, "php": 1664174.7619122025, "pkr": 5748817.115326864, "pln": 129082.64732073351, "rub": 2434532.0171198887, "sar": 122493.71099592077, "sek": 291900.32227798406, "sgd": 43933.5523275622, "thb": 1085879.289508633, "try": 432546.21018491354, "twd": 901130.8670438764, "uah": 904792.6708539897, "usd": 32634.652426016928, "vef": 3267.70774741707, "vnd": 740770692.2415851, "xag": 1410.527767533766, "xau": 17.881831450311715, "xdr": 23238.74437673756, "xlm": 114891.35249050515, "xrp": 40661.10350682233, "yfi": 0.9653181641566878, "zar": 499502.23704758583, "bits": 741467.2267791305, "link": 1216.0115478553305, "sats": 74146722.67791305}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "BSC_20220119": {"id": "bitsonic-token", "symbol": "bsc", "name": "Bitsonic Token", "localization": {"en": "Bitsonic Token", "de": "Bitsonic Token", "es": "Bitsonic Token", "fr": "Bitsonic Token", "it": "Bitsonic Token", "pl": "Bitsonic Token", "ro": "Bitsonic Token", "hu": "Bitsonic Token", "nl": "Bitsonic Token", "pt": "Bitsonic Token", "sv": "Bitsonic Token", "vi": "Bitsonic Token", "tr": "Bitsonic Token", "ru": "Bitsonic Token", "ja": "Bitsonic Token", "zh": "Bitsonic Token", "zh-tw": "Bitsonic Token", "ko": "Bitsonic Token", "ar": "Bitsonic Token", "th": "Bitsonic Token", "id": "Bitsonic Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/9238/thumb/image.png?1604295837", "small": "https://assets.coingecko.com/coins/images/9238/small/image.png?1604295837"}, "market_data": {"current_price": {"aed": 0.004678471477005398, "ars": 0.13228771530803102, "aud": 0.001767379250475522, "bch": 3.2559211587304434e-06, "bdt": 0.10940512928236708, "bhd": 0.00048025347393231124, "bmd": 0.0012737501264652004, "bnb": 2.57712006664705e-06, "brl": 0.007050079574972225, "btc": 2.9493149103171766e-08, "cad": 0.0015981615461746223, "chf": 0.0011644801981162544, "clp": 1.044105716164788, "cny": 0.00809162505338283, "czk": 0.02735531246599192, "dkk": 0.00830446869951515, "dot": 4.579418721948066e-05, "eos": 0.00043603683100811713, "eth": 3.823787984694788e-07, "eur": 0.001115826764535666, "gbp": 0.0009314106737257795, "hkd": 0.009916017359518935, "huf": 0.39813607702922765, "idr": 18.233159872792406, "ils": 0.003957974717970374, "inr": 0.0944565328156849, "jpy": 0.14550684569675196, "krw": 1.516093825526469, "kwd": 0.0003845706381823724, "lkr": 0.2583388035368544, "ltc": 8.614594156475147e-06, "mmk": 2.264110236268817, "mxn": 0.02586349631787588, "myr": 0.005322364903434836, "ngn": 0.5277019398932676, "nok": 0.011147542669291815, "nzd": 0.0018708981970034766, "php": 0.06537324965438017, "pkr": 0.22437108477684475, "pln": 0.005064366815319321, "rub": 0.09710446826608722, "sar": 0.004779291347015392, "sek": 0.011496887747726798, "sgd": 0.001716728576696635, "thb": 0.042256557271722776, "try": 0.01722925371061887, "twd": 0.0350956372344957, "uah": 0.03533259297052183, "usd": 0.0012737501264652004, "vef": 0.00012754060016296047, "vnd": 28.9357154070096, "xag": 5.547701490807532e-05, "xau": 7.008555320849465e-07, "xdr": 0.000905708943673965, "xlm": 0.004893771093862569, "xrp": 0.0016300432267497343, "yfi": 3.797641054791728e-08, "zar": 0.019583124838074676, "bits": 0.029493149103171766, "link": 5.030791610934315e-05, "sats": 2.9493149103171765}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 1522.5528683808302, "ars": 43051.46272318653, "aud": 575.172545254178, "bch": 1.059600795647034, "bdt": 35604.5974039079, "bhd": 156.29277807493088, "bmd": 414.5268210315945, "bnb": 0.8386930579614893, "brl": 2294.3645017277686, "btc": 0.009598194407152923, "cad": 520.1026570801314, "chf": 378.96622316257736, "clp": 339791.7804678079, "cny": 2633.323083285307, "czk": 8902.460913838724, "dkk": 2702.590515079681, "dot": 14.90317327975207, "eos": 141.90299781330273, "eth": 0.12444062965419009, "eur": 363.1325421796345, "gbp": 303.1165199770376, "hkd": 3227.049849048859, "huf": 129568.6484498455, "idr": 5933764.905997802, "ils": 1288.0757720643144, "inr": 30739.754572124148, "jpy": 47353.471400544135, "krw": 493394.69400106557, "kwd": 125.15393780585872, "lkr": 84073.28937930717, "ltc": 2.8035171545543744, "mmk": 736827.7334818749, "mxn": 8416.967101046523, "myr": 1732.1003216805166, "ngn": 171734.31668517925, "nok": 3627.8351059632564, "nzd": 608.8615545262371, "php": 21274.94615834714, "pkr": 73018.89952471528, "pln": 1648.1379140805705, "rub": 31601.49365402572, "sar": 1555.3634953191297, "sek": 3741.5253045334885, "sgd": 558.6888862158571, "thb": 13751.893711050643, "try": 5607.055592001755, "twd": 11421.457499883534, "uah": 11498.571924399981, "usd": 414.5268210315945, "vef": 41.50657058989354, "vnd": 9416784.244197931, "xag": 18.054334325355708, "xau": 0.22808509273621402, "xdr": 294.7521977822622, "xlm": 1592.619566621556, "xrp": 530.4781706313026, "yfi": 0.012358970893534158, "zar": 6373.09493936583, "bits": 9598.194407152923, "link": 16.372112633584027, "sats": 959819.4407152924}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SUP_20210929": {"id": "supertx-governance-token", "symbol": "sup", "name": "SuperTx Governance Token", "localization": {"en": "SuperTx Governance Token", "de": "SuperTx Governance Token", "es": "SuperTx Governance Token", "fr": "SuperTx Governance Token", "it": "SuperTx Governance Token", "pl": "SuperTx Governance Token", "ro": "SuperTx Governance Token", "hu": "SuperTx Governance Token", "nl": "SuperTx Governance Token", "pt": "SuperTx Governance Token", "sv": "SuperTx Governance Token", "vi": "SuperTx Governance Token", "tr": "SuperTx Governance Token", "ru": "SuperTx Governance Token", "ja": "SuperTx Governance Token", "zh": "SuperTx Governance Token", "zh-tw": "SuperTx Governance Token", "ko": "SuperTx Governance Token", "ar": "SuperTx Governance Token", "th": "SuperTx Governance Token", "id": "SuperTx Governance Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13007/thumb/logo-symbol-sup.png?1606721604", "small": "https://assets.coingecko.com/coins/images/13007/small/logo-symbol-sup.png?1606721604"}, "market_data": {"current_price": {"aed": 102.42192849006696, "ars": 2747.8119991118006, "aud": 38.40139133719736, "bch": 0.05376184183782834, "bdt": 2376.522441818514, "bhd": 10.50637617340496, "bmd": 27.885088072438595, "bnb": 0.07934844154585424, "brl": 148.7697333752672, "btc": 0.0006503694824865769, "cad": 35.28021342924929, "chf": 25.75207403051354, "clp": 22108.134376471506, "cny": 180.32449903803902, "czk": 605.3741080174127, "dkk": 176.92098461335712, "dot": 0.9290304161793762, "eos": 6.911165087526473, "eth": 0.009456458577385137, "eur": 23.792533121487136, "gbp": 20.376386751908864, "hkd": 217.10576675822765, "huf": 8491.148743497906, "idr": 398303.626754695, "ils": 89.20049283140114, "inr": 2058.2847943997194, "jpy": 3088.148021126251, "krw": 32911.65404837641, "kwd": 8.390121069411478, "lkr": 5569.4283531477495, "ltc": 0.183691870265317, "mmk": 51912.45755450936, "mxn": 559.2270757663342, "myr": 116.79669139140933, "ngn": 11474.713741808479, "nok": 239.18713145014954, "nzd": 39.77732523795571, "php": 1413.2767741523057, "pkr": 4715.368393049366, "pln": 109.57403530432651, "rub": 2026.1137682905437, "sar": 104.5973836360384, "sek": 241.23947393228076, "sgd": 37.738981070036616, "thb": 931.4609057970209, "try": 247.68929480343567, "twd": 773.5658052351363, "uah": 745.2901028489739, "usd": 27.885088072438595, "vef": 2.792133868693276, "vnd": 635554.3198682051, "xag": 1.243207295103784, "xau": 0.015936048982517905, "xdr": 19.650008092709868, "xlm": 99.90066953465688, "xrp": 29.544897652626815, "yfi": 0.0009214816709227314, "zar": 417.01870361451205, "bits": 650.3694824865769, "link": 1.1364679563278393, "sats": 65036.94824865769}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 332446.6375125737, "ars": 8918996.869991701, "aud": 124645.31388992391, "bch": 174.50309527419395, "bdt": 7713845.134563716, "bhd": 34102.164280468874, "bmd": 90510.92771918695, "bnb": 257.55346508966124, "brl": 482884.8504746345, "btc": 2.111004457550551, "cad": 114514.42575031525, "chf": 83587.47532516315, "clp": 71759778.82360303, "cny": 585307.0162816673, "czk": 1964956.0364124603, "dkk": 574259.7049989006, "dot": 3015.49719438932, "eos": 22432.633602142065, "eth": 30.694284936584772, "eur": 77227.09141248044, "gbp": 66138.77867945841, "hkd": 704693.6452711064, "huf": 27561030.045130994, "idr": 1292835463.8089373, "ils": 289531.786243799, "inr": 6680892.158829125, "jpy": 10023677.945725225, "krw": 106826427.54984769, "kwd": 27233.108954004434, "lkr": 18077551.908727486, "ltc": 596.237012018603, "mmk": 168500263.69777405, "mxn": 1815169.502129978, "myr": 379105.0207518154, "ngn": 37245246.756445415, "nok": 776366.5336040987, "nzd": 129111.39459637179, "php": 4587290.225521547, "pkr": 15305397.877314512, "pln": 355661.3328086298, "rub": 6576469.701519488, "sar": 339507.8475385865, "sek": 783028.13788423, "sgd": 122495.22680195473, "thb": 3023386.209103328, "try": 803963.3154656775, "twd": 2510881.7480435176, "uah": 2419102.9432488238, "usd": 90510.92771918695, "vef": 9062.859192522188, "vnd": 2062916601.0798802, "xag": 4035.2695080178787, "xau": 51.72609008223805, "xdr": 63781.05952330117, "xlm": 324262.9987705455, "xrp": 95898.4274663553, "yfi": 2.990995068574984, "zar": 1353581.8729476691, "bits": 2111004.4575505513, "link": 3688.8091865856404, "sats": 211100445.75505513}}, "community_data": {"facebook_likes": null, "twitter_followers": 7514, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SASHIMI_20210930": {"id": "sashimi", "symbol": "sashimi", "name": "Sashimi", "localization": {"en": "Sashimi", "de": "Sashimi", "es": "Sashimi", "fr": "Sashimi", "it": "Sashimi", "pl": "Sashimi", "ro": "Sashimi", "hu": "Sashimi", "nl": "Sashimi", "pt": "Sashimi", "sv": "Sashimi", "vi": "Sashimi", "tr": "Sashimi", "ru": "Sashimi", "ja": "Sashimi", "zh": "Sashimi", "zh-tw": "Sashimi", "ko": "Sashimi", "ar": "Sashimi", "th": "Sashimi", "id": "Sashimi"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12427/thumb/SashimiSwap-200x200.png?1601347413", "small": "https://assets.coingecko.com/coins/images/12427/small/SashimiSwap-200x200.png?1601347413"}, "market_data": {"current_price": {"aed": 0.10216365175046523, "ars": 2.7405170058968333, "aud": 0.038292354321739754, "bch": 5.531179747147389e-05, "bdt": 2.3705560413889497, "bhd": 0.010481028451377895, "bmd": 0.027815080906284248, "bnb": 8.068344503656535e-05, "brl": 0.14842764136946016, "btc": 6.420346420283178e-07, "cad": 0.03519008271810011, "chf": 0.025722107328409995, "clp": 22.019043161542893, "cny": 0.17987178369666812, "czk": 0.6031019103196343, "dkk": 0.17645164134843194, "dot": 0.0009675545208808282, "eos": 0.006989348002961692, "eth": 9.084268754673414e-06, "eur": 0.0237291567814747, "gbp": 0.020352906630908118, "hkd": 0.21655347794344879, "huf": 8.464129119782298, "idr": 396.5904811067543, "ils": 0.08897165425363682, "inr": 2.05311846104689, "jpy": 3.080550400859797, "krw": 32.827351086785164, "kwd": 0.008371310194798053, "lkr": 5.555445973207234, "ltc": 0.00018453573575438024, "mmk": 52.05012647442786, "mxn": 0.5579699666784438, "myr": 0.11650346637597143, "ngn": 11.44482170015768, "nok": 0.2384537375251738, "nzd": 0.03965142698990171, "php": 1.4095600718506764, "pkr": 4.7082235589293875, "pln": 0.1093591628451922, "rub": 2.025171536657105, "sar": 0.10433158697138147, "sek": 0.24032800112188166, "sgd": 0.037644874868403275, "thb": 0.9296564953605135, "try": 0.24658069223420997, "twd": 0.7716459466870583, "uah": 0.7434190078777931, "usd": 0.027815080906284248, "vef": 0.0027851240511462447, "vnd": 633.88863366905, "xag": 0.0012407762416707657, "xau": 1.5898822095222994e-05, "xdr": 0.019600675582878584, "xlm": 0.1000534025338226, "xrp": 0.029408741409498586, "yfi": 9.140053642656226e-07, "zar": 0.41592446780785, "bits": 0.6420346420283178, "link": 0.0011327560246807426, "sats": 64.20346420283178}, "market_cap": {"aed": 7440436.402909102, "ars": 199644147.74363223, "aud": 2790267.7231538463, "bch": 4050.900707478296, "bdt": 172644293.37908983, "bhd": 763318.697926272, "bmd": 2025733.58507653, "bnb": 5894.425166927622, "brl": 10809778.302959329, "btc": 46.89466146910231, "cad": 2563829.1972804065, "chf": 1873722.5368523875, "clp": 1603616232.2831726, "cny": 13099811.37461437, "czk": 43928845.11155211, "dkk": 12853346.446518887, "dot": 70763.36667985383, "eos": 513454.292950276, "eth": 665.5475607789941, "eur": 1728534.159342781, "gbp": 1482569.5874427867, "hkd": 15772462.98008509, "huf": 616542204.0322405, "idr": 28883132132.75977, "ils": 6479681.606846934, "inr": 149525756.71795577, "jpy": 224378354.8174164, "krw": 2390770238.2621875, "kwd": 609670.8569653871, "lkr": 404595389.311324, "ltc": 13533.906642961017, "mmk": 3790738184.871051, "mxn": 40653999.631778546, "myr": 8484785.12109304, "ngn": 833510417.2925125, "nok": 17370442.66133685, "nzd": 2888953.3604844357, "php": 102682573.77836451, "pkr": 342893361.39291894, "pln": 7966191.246112693, "rub": 147468340.65960845, "sar": 7598324.104263538, "sek": 17515537.855101578, "sgd": 2742610.314831336, "thb": 67700016.41325752, "try": 17956720.346861817, "twd": 56197899.091459505, "uah": 54142170.46918853, "usd": 2025733.58507653, "vef": 202836.70387371283, "vnd": 46175751486.05493, "xag": 90412.39956778467, "xau": 1158.314463946761, "xdr": 1427489.8912645604, "xlm": 7323577.92416069, "xrp": 2157530.21512201, "yfi": 66.8313071136081, "zar": 30284413.23685636, "bits": 46894661.46910231, "link": 83170.05852252897, "sats": 4689466146.910231}, "total_volume": {"aed": 553655.2467261218, "ars": 14851677.608029848, "aud": 207517.66911689664, "bch": 299.7510988617799, "bdt": 12846748.990325915, "bhd": 56799.813767078915, "bmd": 150738.20500749393, "bnb": 437.24761109304865, "brl": 804373.5809689336, "btc": 3.479376882564174, "cad": 190705.5356360011, "chf": 139395.7580335001, "clp": 119327750.7743515, "cny": 974778.7503219597, "czk": 3268388.8177234423, "dkk": 956243.9806342412, "dot": 5243.4660253499615, "eos": 37877.35781495164, "eth": 49.230357103716244, "eur": 128595.365644713, "gbp": 110298.46084449346, "hkd": 1173567.7729396936, "huf": 45869635.78378041, "idr": 2149241896.7432957, "ils": 482163.88454619015, "inr": 11126460.229566872, "jpy": 16694419.815827671, "krw": 177901189.45348188, "kwd": 45366.62239367054, "lkr": 30106615.79014754, "ltc": 1000.0540951533925, "mmk": 282075132.6089317, "mxn": 3023805.3776862277, "myr": 631366.9716738876, "ngn": 62022896.33904377, "nok": 1292251.8001287556, "nzd": 214882.8885517678, "php": 7638825.707424093, "pkr": 25515265.27778916, "pln": 592649.8637177121, "rub": 10975007.525467614, "sar": 565403.9331626083, "sek": 1302408.992596774, "sgd": 204008.7851807322, "thb": 5038085.341414227, "try": 1336294.1873914343, "twd": 4181779.1325797006, "uah": 4028808.9469706523, "usd": 150738.20500749393, "vef": 15093.416467400384, "vnd": 3435231237.8979144, "xag": 6724.135878502499, "xau": 86.16045060023336, "xdr": 106221.89682827088, "xlm": 542219.1779220467, "xrp": 159374.72576597193, "yfi": 4.953267202091547, "zar": 2254018.5271180603, "bits": 3479376.882564174, "link": 6138.742161027555, "sats": 347937688.2564174}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 284966, "bing_matches": null}}, "BOX_20211001": {"id": "defibox", "symbol": "box", "name": "DefiBox", "localization": {"en": "DefiBox", "de": "DefiBox", "es": "DefiBox", "fr": "DefiBox", "it": "DefiBox", "pl": "DefiBox", "ro": "DefiBox", "hu": "DefiBox", "nl": "DefiBox", "pt": "DefiBox", "sv": "DefiBox", "vi": "DefiBox", "tr": "DefiBox", "ru": "DefiBox", "ja": "DefiBox", "zh": "DefiBox", "zh-tw": "DefiBox", "ko": "DefiBox", "ar": "DefiBox", "th": "DefiBox", "id": "DefiBox"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12402/thumb/66k0hGqJ_200x200.png?1599559330", "small": "https://assets.coingecko.com/coins/images/12402/small/66k0hGqJ_200x200.png?1599559330"}, "market_data": {"current_price": {"aed": 18.65349582972406, "ars": 500.50398616627035, "aud": 6.974392383378639, "bch": 0.010354448057347617, "bdt": 434.3855143839045, "bhd": 1.9143853435440694, "bmd": 5.0782684933366165, "bnb": 0.01511628748009356, "brl": 27.38151588922165, "btc": 0.00011941833905642947, "cad": 6.413167540837547, "chf": 4.700882048522792, "clp": 4032.399097133936, "cny": 32.790379661474546, "czk": 110.37362656842471, "dkk": 32.28610760008618, "dot": 0.18333520593399144, "eos": 1.3232478880098595, "eth": 0.0017273790224381223, "eur": 4.341330482657578, "gbp": 3.706044172409659, "hkd": 39.52543325076215, "huf": 1554.3056377555408, "idr": 72327.49292977138, "ils": 16.257822667992563, "inr": 374.90597980305296, "jpy": 563.4821328863844, "krw": 5981.94637172587, "kwd": 1.5291225042970849, "lkr": 1015.809718310244, "ltc": 0.03497837449731413, "mmk": 9497.838690669283, "mxn": 102.08389662778139, "myr": 21.277944987080414, "ngn": 2095.014768175594, "nok": 43.684281233380226, "nzd": 7.246618044232438, "php": 259.42855120730616, "pkr": 861.5568456244422, "pln": 19.9628410301665, "rub": 368.8092493285722, "sar": 19.048255031053603, "sek": 44.218098660862786, "sgd": 6.876813454279172, "thb": 170.55800450307777, "try": 44.78423418903692, "twd": 140.51010819354963, "uah": 135.19823427125107, "usd": 5.0782684933366165, "vef": 0.5084870242377955, "vnd": 115730.6242427089, "xag": 0.22441929830169577, "xau": 0.002899183482845869, "xdr": 3.5830942139174873, "xlm": 19.01241709231337, "xrp": 5.503281331724844, "yfi": 0.00017740447093036034, "zar": 75.97952971675439, "bits": 119.41833905642947, "link": 0.21990725103042524, "sats": 11941.833905642949}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 7069198.159715385, "ars": 189678218.5084474, "aud": 2643116.456656297, "bch": 3924.071167144498, "bdt": 164621007.60740587, "bhd": 725503.1159362067, "bmd": 1924533.9648577222, "bnb": 5728.686601775003, "brl": 10376894.685116332, "btc": 45.256498320747596, "cad": 2430426.585530048, "chf": 1781514.1477932828, "clp": 1528176194.7952726, "cny": 12426715.811086316, "czk": 41828783.459200166, "dkk": 12235609.58837593, "dot": 69479.35723310398, "eos": 501477.1290141032, "eth": 654.6324998819899, "eur": 1645253.2940134283, "gbp": 1404496.0195436913, "hkd": 14979128.98197884, "huf": 589042110.624004, "idr": 27410271221.184334, "ils": 6161299.261793774, "inr": 142079784.22290406, "jpy": 213545326.47363046, "krw": 2267004783.904155, "kwd": 579498.3466922747, "lkr": 384965920.42854667, "ltc": 13255.909931490114, "mmk": 3599438111.0249033, "mxn": 38687187.686704144, "myr": 8063797.312753852, "ngn": 793957051.2120218, "nok": 16555226.07249909, "nzd": 2746283.024376459, "php": 98316790.24207048, "pkr": 326508024.1888684, "pln": 7565406.525476539, "rub": 139769279.19779223, "sar": 7218801.807473608, "sek": 16757529.233817007, "sgd": 2606136.5365215545, "thb": 64637124.459888525, "try": 16972080.12928727, "twd": 53249739.74478565, "uah": 51236675.293010525, "usd": 1924533.9648577222, "vef": 192703.58590120374, "vnd": 43858948659.671844, "xag": 85049.17818304914, "xau": 1098.7164405372714, "xdr": 1357901.1277205215, "xlm": 7205220.144663426, "xrp": 2085602.967816505, "yfi": 67.23176024880998, "zar": 28794299.822011754, "bits": 45256498.32074759, "link": 83339.22758945651, "sats": 4525649832.0747595}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 452549, "bing_matches": null}}, "TON_20211005": {"id": "tontoken", "symbol": "ton", "name": "TONToken", "localization": {"en": "TONToken", "de": "TONToken", "es": "TONToken", "fr": "TONToken", "it": "TONToken", "pl": "TONToken", "ro": "TONToken", "hu": "TONToken", "nl": "TONToken", "pt": "TONToken", "sv": "TONToken", "vi": "TONToken", "tr": "TONToken", "ru": "TONToken", "ja": "TONToken", "zh": "TONToken", "zh-tw": "TONToken", "ko": "TONToken", "ar": "TONToken", "th": "TONToken", "id": "TONToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12334/thumb/ton.jpg?1599128436", "small": "https://assets.coingecko.com/coins/images/12334/small/ton.jpg?1599128436"}, "market_data": {"current_price": {"aed": 0.04243915398547206, "ars": 1.140442156330951, "aud": 0.015907427003317418, "bch": 2.1298499291528456e-05, "bdt": 0.9894743862995734, "bhd": 0.0043561367593935715, "bmd": 0.011553728080548836, "bnb": 2.7419131235791253e-05, "brl": 0.06199846025303299, "btc": 2.398666534543405e-07, "cad": 0.014611422217066078, "chf": 0.010749357531581022, "clp": 9.280647617981648, "cny": 0.07448341881687424, "czk": 0.25229644934932843, "dkk": 0.07411150430996136, "dot": 0.00036090870785153586, "eos": 0.002703091167982654, "eth": 3.4935067466678992e-06, "eur": 0.009965309990306903, "gbp": 0.008529886367307586, "hkd": 0.08994635079347671, "huf": 3.561645757092518, "idr": 165.30309112165912, "ils": 0.03719029531847872, "inr": 0.8567349330608781, "jpy": 1.2833476771390813, "krw": 13.639166663675606, "kwd": 0.003482871329881439, "lkr": 2.3073493284181206, "ltc": 6.9586891062467e-05, "mmk": 21.61802368878013, "mxn": 0.236284137602496, "myr": 0.04836968260921773, "ngn": 4.745924883647045, "nok": 0.09973178079129763, "nzd": 0.016651625736441713, "php": 0.5876284332556653, "pkr": 1.9727990697537139, "pln": 0.04563382912211222, "rub": 0.8396394593064922, "sar": 0.04333542288759247, "sek": 0.10107894548548958, "sgd": 0.015677253632496713, "thb": 0.38805692519161417, "try": 0.10237758452174318, "twd": 0.3208470287968406, "uah": 0.30763202481677393, "usd": 0.011553728080548836, "vef": 0.0011568747927053545, "vnd": 262.6456286969609, "xag": 0.0005127587270941469, "xau": 6.560784490539644e-06, "xdr": 0.008180906010634606, "xlm": 0.03836623704525325, "xrp": 0.011090047004587888, "yfi": 3.650360722917228e-07, "zar": 0.17172456244584786, "bits": 0.23986665345434047, "link": 0.0004393617997503309, "sats": 23.986665345434048}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 135794.37677458848, "ars": 3649121.56164667, "aud": 50899.67478480404, "bch": 68.14971944344593, "bdt": 3166063.528692522, "bhd": 13938.517167171227, "bmd": 36968.958067785105, "bnb": 87.73416734790524, "brl": 198379.12588754125, "btc": 0.7675115937982345, "cad": 46752.79282042441, "chf": 34395.17920710589, "clp": 29695685.25752903, "cny": 238327.78197559042, "czk": 807283.7435346084, "dkk": 237137.75121538833, "dot": 1154.8150340602554, "eos": 8649.196462463742, "eth": 11.178323007663762, "eur": 31886.428743667944, "gbp": 27293.442362284357, "hkd": 287805.1870056104, "huf": 11396350.314659933, "idr": 528927373.1861605, "ils": 118999.3791243937, "inr": 2741331.42088192, "jpy": 4106382.4708163273, "krw": 43641825.128102176, "kwd": 11144.292409533793, "lkr": 7382924.366519243, "ltc": 222.66015262094245, "mmk": 69172115.32824421, "mxn": 756048.4645484658, "myr": 154770.5429507824, "ngn": 15185738.905504085, "nok": 319116.04604112124, "nzd": 53280.91931186617, "php": 1880259.8396824128, "pkr": 6312449.590074306, "pln": 146016.5154940792, "rub": 2686630.302076916, "sar": 138662.20672773858, "sek": 323426.62655182485, "sgd": 50163.179202177605, "thb": 1241682.3466249453, "try": 327581.93743864365, "twd": 1026627.9655423905, "uah": 984343.3519009129, "usd": 36968.958067785105, "vef": 3701.701771327321, "vnd": 840398455.4848346, "xag": 1640.6960375627873, "xau": 20.99282283879173, "xdr": 26176.7949838469, "xlm": 122762.09018044456, "xrp": 35485.297890349844, "yfi": 1.168021538649594, "zar": 549474.429726039, "bits": 767511.5937982345, "link": 1405.8447488392853, "sats": 76751159.37982345}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 5653016, "bing_matches": null}}, "SUP_20211009": {"id": "supertx-governance-token", "symbol": "sup", "name": "SuperTx Governance Token", "localization": {"en": "SuperTx Governance Token", "de": "SuperTx Governance Token", "es": "SuperTx Governance Token", "fr": "SuperTx Governance Token", "it": "SuperTx Governance Token", "pl": "SuperTx Governance Token", "ro": "SuperTx Governance Token", "hu": "SuperTx Governance Token", "nl": "SuperTx Governance Token", "pt": "SuperTx Governance Token", "sv": "SuperTx Governance Token", "vi": "SuperTx Governance Token", "tr": "SuperTx Governance Token", "ru": "SuperTx Governance Token", "ja": "SuperTx Governance Token", "zh": "SuperTx Governance Token", "zh-tw": "SuperTx Governance Token", "ko": "SuperTx Governance Token", "ar": "SuperTx Governance Token", "th": "SuperTx Governance Token", "id": "SuperTx Governance Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13007/thumb/logo-symbol-sup.png?1606721604", "small": "https://assets.coingecko.com/coins/images/13007/small/logo-symbol-sup.png?1606721604"}, "market_data": {"current_price": {"aed": 89.2441306634088, "ars": 2402.6690094852884, "aud": 33.337026930672394, "bch": 0.04082354232201407, "bdt": 2082.9980981124695, "bhd": 9.159064001206186, "bmd": 24.296017277417203, "bnb": 0.054728222570571534, "brl": 133.06928662841395, "btc": 0.00047076061892283857, "cad": 30.578335648908094, "chf": 22.55642244035411, "clp": 19688.713689969125, "cny": 156.62913458232555, "czk": 530.7416382217216, "dkk": 155.84194362253734, "dot": 0.7680081423150357, "eos": 5.119217156294667, "eth": 0.006889806911146075, "eur": 20.9511602828179, "gbp": 17.830093903360886, "hkd": 189.15056850901215, "huf": 7494.592449564894, "idr": 345490.5804857366, "ils": 78.55752746393703, "inr": 1811.589840188259, "jpy": 2709.0545184665743, "krw": 28849.212395291583, "kwd": 7.327047114419791, "lkr": 4851.666077747435, "ltc": 0.13935607325260455, "mmk": 45456.179626988946, "mxn": 500.0063017091705, "myr": 101.52722515817995, "ngn": 9994.485422220232, "nok": 207.2425977746411, "nzd": 34.92914494286156, "php": 1231.9494058975527, "pkr": 4152.165761277825, "pln": 96.480116305073, "rub": 1757.1900127753784, "sar": 91.11861698839594, "sek": 212.39119109191572, "sgd": 32.97698425063836, "thb": 821.6913043222513, "try": 215.5139581925823, "twd": 677.3972577116699, "uah": 641.7675128145938, "usd": 24.296017277417203, "vef": 2.432760209987782, "vnd": 552813.0654845714, "xag": 1.0739996127040798, "xau": 0.01380523997720125, "xdr": 17.211614487546967, "xlm": 76.12684856894681, "xrp": 22.500642433938356, "yfi": 0.0007588786253304391, "zar": 364.811866745516, "bits": 470.76061892283855, "link": 0.8871286542659863, "sats": 47076.061892283855}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 228047.39599991412, "ars": 6139590.435693134, "aud": 85186.80304693624, "bch": 104.31725260611104, "bdt": 5322728.661438878, "bhd": 23404.3480478209, "bmd": 62084.12174668254, "bnb": 139.8481732316294, "brl": 340034.73480658006, "btc": 1.2029444680184262, "cad": 78137.46144320926, "chf": 57638.89862962, "clp": 50310982.40532538, "cny": 400237.70766433846, "czk": 1356215.2227319262, "dkk": 398226.1821197462, "dot": 1962.507289383971, "eos": 13081.242804124737, "eth": 17.605667883695197, "eur": 53536.93862169501, "gbp": 45561.61234211617, "hkd": 483340.4088283599, "huf": 19151089.035199184, "idr": 882839315.4439132, "ils": 200739.69504963627, "inr": 4629193.456239479, "jpy": 6922503.7429986, "krw": 73718996.58261959, "kwd": 18722.956931633977, "lkr": 12397563.930162873, "ltc": 356.0994923228027, "mmk": 116155127.72639322, "mxn": 1277676.5736939993, "myr": 259434.64459016718, "ngn": 25539117.900006983, "nok": 529571.3500870276, "nzd": 89255.17554499638, "php": 3148026.1158929993, "pkr": 10610116.122825833, "pln": 246537.66164324194, "rub": 4490184.438031419, "sar": 232837.31016091377, "sek": 542727.6584104885, "sgd": 84266.77844677218, "thb": 2099684.997472807, "try": 550707.3305785899, "twd": 1730967.398419258, "uah": 1639921.9651395667, "usd": 62084.12174668254, "vef": 6216.4831104953155, "vnd": 1412614803.0278902, "xag": 2744.4137016228797, "xau": 35.27681881768253, "xdr": 43981.198938932655, "xlm": 194528.5303669403, "xrp": 57496.36281110274, "yfi": 1.9391784434464545, "zar": 932211.4028423532, "bits": 1202944.4680184263, "link": 2266.8984281474413, "sats": 120294446.80184263}}, "community_data": {"facebook_likes": null, "twitter_followers": 7500, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "CS_20211015": {"id": "credits", "symbol": "cs", "name": "CREDITS", "localization": {"en": "CREDITS", "de": "CREDITS", "es": "CREDITS", "fr": "CREDITS", "it": "CREDITS", "pl": "CREDITS", "ro": "CREDITS", "hu": "CREDITS", "nl": "CREDITS", "pt": "CREDITS", "sv": "CREDITS", "vi": "CREDITS", "tr": "CREDITS", "ru": "CREDITS", "ja": "\u30af\u30ec\u30b8\u30c3\u30c8", "zh": "CREDITS", "zh-tw": "CREDITS", "ko": "\ud06c\ub808\ub527", "ar": "CREDITS", "th": "CREDITS", "id": "CREDITS"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1566/thumb/cs.png?1547035736", "small": "https://assets.coingecko.com/coins/images/1566/small/cs.png?1547035736"}, "market_data": {"current_price": {"aed": 0.14854959826215558, "ars": 3.9975588626703398, "aud": 0.0550354584934728, "bch": 6.768154299142842e-05, "bdt": 3.46112317935607, "bhd": 0.015244087626084394, "bmd": 0.040441467456755774, "bnb": 9.820949666207454e-05, "brl": 0.22394058189503932, "btc": 7.042613680300817e-07, "cad": 0.050486521351002005, "chf": 0.0375104721028274, "clp": 33.3419678447223, "cny": 0.26087577412329455, "czk": 0.8889722051941708, "dkk": 0.26041732964820485, "dot": 0.0011929113728218383, "eos": 0.008918351239360453, "eth": 1.1485771098357634e-05, "eur": 0.03500245405702918, "gbp": 0.029758813386586272, "hkd": 0.31459215327272994, "huf": 12.580840264844262, "idr": 574.4047263526528, "ils": 0.1305397995596381, "inr": 3.0494022683948416, "jpy": 4.5838886807203005, "krw": 48.36422362834924, "kwd": 0.012198076738709023, "lkr": 8.08909576918259, "ltc": 0.00022685210944967989, "mmk": 79.37439073196438, "mxn": 0.8437343796970402, "myr": 0.1686409192946718, "ngn": 16.61214158721157, "nok": 0.3472052041080117, "nzd": 0.058262970686794126, "php": 2.054644283663976, "pkr": 6.919212480265008, "pln": 0.16059508934415015, "rub": 2.9063221359574065, "sar": 0.1516834480168464, "sek": 0.35476872911764434, "sgd": 0.05482475844802311, "thb": 1.36045096524526, "try": 0.36402578101849536, "twd": 1.1347066939016506, "uah": 1.0662504109009125, "usd": 0.040441467456755774, "vef": 0.004049404136444953, "vnd": 921.432564416092, "xag": 0.0017926214277577386, "xau": 2.305284969437445e-05, "xdr": 0.02865023188066166, "xlm": 0.11805543000201163, "xrp": 0.03583296369388976, "yfi": 1.1453639689205664e-06, "zar": 0.6091940891815861, "bits": 0.7042613680300817, "link": 0.0016123615993596106, "sats": 70.42613680300816}, "market_cap": {"aed": 33194361.865748305, "ars": 893280204.1842624, "aud": 12298026.6931164, "bch": 15123.875499985314, "bdt": 773410205.2212949, "bhd": 3406389.2928233794, "bmd": 9036905.65875755, "bnb": 21945.542828737616, "brl": 50040961.394804046, "btc": 157.3717261570886, "cad": 11281537.470808035, "chf": 8381955.921139099, "clp": 7450476870.362664, "cny": 58294367.33294735, "czk": 198646549.11911142, "dkk": 58191924.970399715, "dot": 266563.70832678734, "eos": 1992862.8670051037, "eth": 2566.569325035777, "eur": 7821523.179805579, "gbp": 6649797.992091084, "hkd": 70297637.27419196, "huf": 2811269563.916471, "idr": 128354425505.05763, "ils": 29169956.668733705, "inr": 681408523.1835973, "jpy": 1024299368.0239475, "krw": 10807296413.163002, "kwd": 2725738.5955114234, "lkr": 1807560405.8859751, "ltc": 50691.560927629966, "mmk": 17736717430.76911, "mxn": 188537866.4492244, "myr": 37683896.59701905, "ngn": 3712089737.44784, "nok": 77585232.9569612, "nzd": 13019235.02302487, "php": 459123462.1649494, "pkr": 1546142470.8169768, "pln": 35886004.216209196, "rub": 649436348.5867618, "sar": 33894640.72215094, "sek": 79275351.20088474, "sgd": 12250944.414634276, "thb": 304001506.3606031, "try": 81343898.90617427, "twd": 253557498.97341883, "uah": 238260502.84219822, "usd": 9036905.65875755, "vef": 904865.3636113931, "vnd": 205900024880.137, "xag": 400572.7720398973, "xau": 5151.307332661558, "xdr": 6402078.334173217, "xlm": 26380244.103976395, "xrp": 8007105.892525473, "yfi": 255.93893552807285, "zar": 136128332.08126023, "bits": 157371726.1570886, "link": 360292.55557545775, "sats": 15737172615.708858}, "total_volume": {"aed": 983017.3237573386, "ars": 26453586.281732466, "aud": 364193.57408517756, "bch": 447.87821736001905, "bdt": 22903757.96884181, "bhd": 100876.76033206387, "bmd": 267618.7857337844, "bnb": 649.8949691262994, "brl": 1481912.264122257, "btc": 4.66040388749394, "cad": 334091.2778282701, "chf": 248223.11423772838, "clp": 220638307.89821854, "cny": 1726328.5011329234, "czk": 5882715.862364343, "dkk": 1723294.7745778458, "dot": 7894.0135746550895, "eos": 59016.61041299164, "eth": 76.00634467197563, "eur": 231626.46762166164, "gbp": 196927.01586341945, "hkd": 2081793.1532838193, "huf": 83252893.79740067, "idr": 3801085990.527388, "ils": 863838.6499065096, "inr": 20179221.56643574, "jpy": 30333585.79247793, "krw": 320047110.41250455, "kwd": 80719.9810093811, "lkr": 53529066.168228455, "ltc": 1501.1791087202316, "mmk": 525254878.26972395, "mxn": 5583357.488642509, "myr": 1115970.3365098822, "ngn": 109929768.61586662, "nok": 2297607.9001879725, "nzd": 385551.4265182338, "php": 13596475.174818607, "pkr": 45787439.4439967, "pln": 1062727.5790881454, "rub": 19232398.077736173, "sar": 1003755.371082631, "sek": 2347659.03597105, "sgd": 362799.2802115046, "thb": 9002695.95208448, "try": 2408916.976025511, "twd": 7508847.890118502, "uah": 7055842.881037275, "usd": 267618.7857337844, "vef": 26796.669015523814, "vnd": 6097520182.428695, "xag": 11862.555934447135, "xau": 152.55073643182882, "xdr": 189591.04970888482, "xlm": 781224.1447519569, "xrp": 237122.31123303648, "yfi": 7.579371715764617, "zar": 4031302.340779433, "bits": 4660403.88749394, "link": 10669.698221158873, "sats": 466040388.749394}}, "community_data": {"facebook_likes": null, "twitter_followers": 43784, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 10376, "reddit_accounts_active_48h": "14.3076923076923"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 749566, "bing_matches": null}}, "TSL_20211016": {"id": "treasure-sl", "symbol": "tsl", "name": "Treasure SL", "localization": {"en": "Treasure SL", "de": "Treasure SL", "es": "Treasure SL", "fr": "Treasure SL", "it": "Treasure SL", "pl": "Treasure SL", "ro": "Treasure SL", "hu": "Treasure SL", "nl": "Treasure SL", "pt": "Treasure SL", "sv": "Treasure SL", "vi": "Treasure SL", "tr": "Treasure SL", "ru": "Treasure SL", "ja": "Treasure SL", "zh": "Treasure SL", "zh-tw": "Treasure SL", "ko": "Treasure SL", "ar": "Treasure SL", "th": "Treasure SL", "id": "Treasure SL"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8212/thumb/treasure_sl.png?1556527565", "small": "https://assets.coingecko.com/coins/images/8212/small/treasure_sl.png?1556527565"}, "market_data": {"current_price": {"aed": 0.00041525189057985774, "ars": 0.011191079148796973, "aud": 0.00015380892946978831, "bch": 1.9126391283972709e-07, "bdt": 0.009679074121147166, "bhd": 4.262119991477872e-05, "bmd": 0.00011304908270169306, "bnb": 2.5642200568133545e-07, "brl": 0.0006254666598636576, "btc": 2.004e-09, "cad": 0.0001409215601399608, "chf": 0.00010524485232646429, "clp": 0.0930574829167257, "cny": 0.0007290535343432178, "czk": 0.0024903130232025107, "dkk": 0.0007293587668665133, "dot": 3.208788042869794e-06, "eos": 2.499899553206999e-05, "eth": 3.2287484805544776e-08, "eur": 9.80222594817358e-05, "gbp": 8.318716750604086e-05, "hkd": 0.0008798553582131407, "huf": 0.0353504481608195, "idr": 1.6079479753533954, "ils": 0.0003652909789706723, "inr": 0.008533187817851597, "jpy": 0.012842714942160438, "krw": 0.13543847715802154, "kwd": 3.4124996104333106e-05, "lkr": 0.022664383071577025, "ltc": 6.530301068127775e-07, "mmk": 0.21817192183149126, "mxn": 0.002350799263289442, "myr": 0.00047090595399390203, "ngn": 0.046642232789076074, "nok": 0.0009672140368708741, "nzd": 0.00016308291096922174, "php": 0.005748640590512393, "pkr": 0.01935186520037596, "pln": 0.00044935009405159247, "rub": 0.008126024589139042, "sar": 0.0004239896802800381, "sek": 0.0009931361915343736, "sgd": 0.00015341891013446768, "thb": 0.0037667954356204133, "try": 0.0010223593794127597, "twd": 0.003181653496605528, "uah": 0.002978335738808289, "usd": 0.00011304908270169306, "vef": 1.1319604650920522e-05, "vnd": 2.577209320033188, "xag": 5.009823232994386e-06, "xau": 6.420961799290768e-08, "xdr": 8.024076926358658e-05, "xlm": 0.0003358997514887058, "xrp": 0.00010236810669364234, "yfi": 3.2441080542986422e-09, "zar": 0.0016901177011151216, "bits": 0.002004, "link": 4.567857375740697e-06, "sats": 0.2004}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 179.1061721329064, "ars": 4826.928892673982, "aud": 66.34076622438914, "bch": 0.08249582499925412, "bdt": 4174.77187932503, "bhd": 18.383347894666166, "bmd": 48.760255943838324, "bnb": 0.11059977071770638, "brl": 269.77586806047447, "btc": 0.000864363961, "cad": 60.782194567303506, "chf": 45.394140435011344, "clp": 40137.49228272997, "cny": 314.454890581813, "czk": 1074.1201740844347, "dkk": 314.5865432728618, "dot": 1.384012346678829, "eos": 10.782550298962734, "eth": 0.013926216695233532, "eur": 42.27889644301545, "gbp": 35.88023433627344, "hkd": 379.4986339980959, "huf": 15247.332033638279, "idr": 693539.0624043868, "ils": 157.55706462108682, "inr": 3680.5289531911935, "jpy": 5539.311355987866, "krw": 58417.234824408944, "kwd": 14.718770859207053, "lkr": 9775.58678910662, "ltc": 0.2816645158567592, "mmk": 94101.76972717073, "mxn": 1013.9451909844032, "myr": 203.11084613405833, "ngn": 20117.697147430077, "nok": 417.17812177869695, "nzd": 70.34081382074194, "php": 2479.499875838658, "pkr": 8346.83376114522, "pln": 193.8133868114556, "rub": 3504.9115773710673, "sar": 182.87494983531803, "sek": 428.3588484666197, "sgd": 66.17254334138299, "thb": 1624.6917280486932, "try": 440.96337462810123, "twd": 1372.3086920436397, "uah": 1284.6138105709551, "usd": 48.760255943838324, "vef": 4.88236442765653, "vnd": 1111600.227639722, "xag": 2.1608336594714834, "xau": 0.027694850170981316, "xdr": 34.60939578560916, "xlm": 144.8800597283899, "xrp": 44.15334440208947, "yfi": 0.0013992465507612663, "zar": 728.9804544371659, "bits": 864.363961, "link": 1.9702052368155163, "sats": 86436.3961}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "ULU_20211017": {"id": "universal-liquidity-union", "symbol": "ulu", "name": "Universal Liquidity Union", "localization": {"en": "Universal Liquidity Union", "de": "Universal Liquidity Union", "es": "Universal Liquidity Union", "fr": "Universal Liquidity Union", "it": "Universal Liquidity Union", "pl": "Universal Liquidity Union", "ro": "Universal Liquidity Union", "hu": "Universal Liquidity Union", "nl": "Universal Liquidity Union", "pt": "Universal Liquidity Union", "sv": "Universal Liquidity Union", "vi": "Universal Liquidity Union", "tr": "Universal Liquidity Union", "ru": "Universal Liquidity Union", "ja": "Universal Liquidity Union", "zh": "Universal Liquidity Union", "zh-tw": "Universal Liquidity Union", "ko": "Universal Liquidity Union", "ar": "Universal Liquidity Union", "th": "Universal Liquidity Union", "id": "Universal Liquidity Union"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/12376/thumb/ulu_finance_logo.ico?1599444401", "small": "https://assets.coingecko.com/coins/images/12376/small/ulu_finance_logo.ico?1599444401"}, "market_data": {"current_price": {"aed": 6.382391145318366, "ars": 172.10213636448896, "aud": 2.354730843123714, "bch": 0.0029333887782520968, "bdt": 148.8270821268099, "bhd": 0.6550030559916089, "bmd": 1.7375561214522397, "bnb": 0.0037103651276518476, "brl": 9.581058209299798, "btc": 3.0234599560798194e-05, "cad": 2.162223525315777, "chf": 1.606023123058305, "clp": 1417.4549579188497, "cny": 11.169184504307164, "czk": 38.051870915161466, "dkk": 11.150158264777257, "dot": 0.041657880326019144, "eos": 0.3784383980594056, "eth": 0.000482278087110352, "eur": 1.4982164535028029, "gbp": 1.2715835334695422, "hkd": 13.517057213419484, "huf": 539.8808234001993, "idr": 24656.181996825508, "ils": 5.613366181524825, "inr": 130.84936910084224, "jpy": 196.880746565632, "krw": 2062.1576682813406, "kwd": 0.5244066003471358, "lkr": 349.2805342500207, "ltc": 0.009771292061485016, "mmk": 3327.715037411362, "mxn": 35.73295284125702, "myr": 7.22823346524133, "ngn": 714.005162329955, "nok": 14.754297950148526, "nzd": 2.493766608850079, "php": 88.11147091884315, "pkr": 297.08613804439983, "pln": 6.855951640883453, "rub": 125.14661086953708, "sar": 6.516891889567744, "sek": 15.098493917359264, "sgd": 2.348480853754848, "thb": 57.65211210978551, "try": 15.90072357863374, "twd": 48.675723430751006, "uah": 45.77188488945762, "usd": 1.7375561214522397, "vef": 0.17398149444101305, "vnd": 39427.35117904914, "xag": 0.07535426437289607, "xau": 0.0009697126958212828, "xdr": 1.2327891179458783, "xlm": 4.717022683842135, "xrp": 1.5393517027521624, "yfi": 5.0253597553623995e-05, "zar": 25.70662155004948, "bits": 30.234599560798195, "link": 0.06819700123002942, "sats": 3023.4599560798197}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 185272.59368994934, "ars": 4995903.331186338, "aud": 68354.80320996369, "bch": 85.15249768833276, "bdt": 4320258.487630774, "bhd": 19013.89499567487, "bmd": 50439.01603232858, "bnb": 107.70712027592403, "brl": 278125.77830386313, "btc": 0.8776714795856755, "cad": 62766.56374570993, "chf": 46620.782518681306, "clp": 41146891.58230892, "cny": 324227.038957412, "czk": 1104596.7974523823, "dkk": 323674.7317318578, "dot": 1209.2746056920155, "eos": 10985.579223198507, "eth": 13.999911638807141, "eur": 43491.29376895553, "gbp": 36912.43202982679, "hkd": 392382.75937109545, "huf": 15672044.874308776, "idr": 715737203.3511477, "ils": 162948.78958420115, "inr": 3798388.635862473, "jpy": 5715194.467607124, "krw": 59861780.81240806, "kwd": 15222.848111668984, "lkr": 10139163.995516064, "ltc": 283.64802198957625, "mmk": 96599281.05385585, "mxn": 1037281.5928018615, "myr": 209826.30669448728, "ngn": 20726650.141133808, "nok": 428298.26424904336, "nzd": 72390.83239483855, "php": 2557762.5029993844, "pkr": 8624027.906091407, "pln": 199019.4448754645, "rub": 3632844.910220457, "sar": 189176.9770429799, "sek": 438289.82981292, "sgd": 68173.37406929533, "thb": 1673566.5519526682, "try": 461577.5235150454, "twd": 1412993.5512280527, "uah": 1328698.8588545052, "usd": 50439.01603232858, "vef": 5050.458675317069, "vnd": 1144525217.7352314, "xag": 2187.4372297293903, "xau": 28.149510457482325, "xdr": 35786.280118873, "xlm": 136929.09244066154, "xrp": 44685.39706770145, "yfi": 1.458797204530525, "zar": 746230.1104934926, "bits": 877671.4795856755, "link": 1979.6711000754492, "sats": 87767147.95856754}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 4440637, "bing_matches": null}}, "BTF_20211022": {"id": "btf", "symbol": "btf", "name": "Bitcoin Faith", "localization": {"en": "Bitcoin Faith", "de": "Bitcoin Faith", "es": "Bitcoin Faith", "fr": "Bitcoin Faith", "it": "Bitcoin Faith", "pl": "Bitcoin Faith", "ro": "Bitcoin Faith", "hu": "Bitcoin Faith", "nl": "Bitcoin Faith", "pt": "Bitcoin Faith", "sv": "Bitcoin Faith", "vi": "Bitcoin Faith", "tr": "Bitcoin Faith", "ru": "Bitcoin Faith", "ja": "Bitcoin Faith", "zh": "Bitcoin Faith", "zh-tw": "Bitcoin Faith", "ko": "Bitcoin Faith", "ar": "Bitcoin Faith", "th": "Bitcoin Faith", "id": "Bitcoin Faith"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/7412/thumb/25354097_138346030206993_1134755924546955396_n.png?1547112675", "small": "https://assets.coingecko.com/coins/images/7412/small/25354097_138346030206993_1134755924546955396_n.png?1547112675"}, "market_data": {"current_price": {"aed": 0.03142407099048064, "ars": 0.8195447334423435, "aud": 0.011360959608121063, "bch": 1.6848377485911644e-05, "bdt": 0.7256750935248699, "bhd": 0.0032252299002946388, "bmd": 0.008555190708252038, "bnb": 2.8463683944161074e-05, "brl": 0.043277903690494585, "btc": 2.456839827628118e-07, "cad": 0.010536786756050914, "chf": 0.007878663337424876, "clp": 6.293632751795117, "cny": 0.055377749454515485, "czk": 0.1843866032586727, "dkk": 0.053615166288847695, "dot": 0.0005469614693164239, "eos": 0.0021108383506903148, "eth": 3.830288007432748e-06, "eur": 0.007210537163873219, "gbp": 0.006189321159410593, "hkd": 0.0664364456197233, "huf": 2.5359125193586536, "idr": 123.70420780550555, "ils": 0.027997546008011437, "inr": 0.6372158417631996, "jpy": 0.9499256002907632, "krw": 9.673952997170135, "kwd": 0.002577336752768009, "lkr": 1.7033462466813334, "ltc": 6.083489786583962e-05, "mmk": 14.082552549339587, "mxn": 0.16915708051937783, "myr": 0.03561953651380732, "ngn": 3.5113391497912714, "nok": 0.07353614173278038, "nzd": 0.012163239727168812, "php": 0.42014534724073144, "pkr": 1.3519340116715257, "pln": 0.03251999092020761, "rub": 0.626205739081215, "sar": 0.03208381307713818, "sek": 0.07308357214431391, "sgd": 0.011524697403086297, "thb": 0.2748476755389749, "try": 0.07434375173563933, "twd": 0.23880617135386387, "uah": 0.23384475105123662, "usd": 0.008555190708252038, "vef": 0.0008566312456172767, "vnd": 196.1528906921694, "xag": 0.00032332580912552544, "xau": 4.786030337917426e-06, "xdr": 0.006002304690528212, "xlm": 0.03205697303248334, "xrp": 0.012565734674650952, "yfi": 2.585542258084552e-07, "zar": 0.12201079335671415, "bits": 0.24568398276281178, "link": 0.00045539517329429345, "sats": 24.568398276281176}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "INK_20211027": {"id": "ink", "symbol": "ink", "name": "Ink", "localization": {"en": "Ink", "de": "Ink", "es": "Ink", "fr": "Ink", "it": "Ink", "pl": "Ink", "ro": "Ink", "hu": "Ink", "nl": "Ink", "pt": "Ink", "sv": "Ink", "vi": "Ink", "tr": "Ink", "ru": "Ink", "ja": "Ink", "zh": "\u58a8\u94fe", "zh-tw": "\u58a8\u93c8", "ko": "\uc789\ud06c", "ar": "Ink", "th": "Ink", "id": "Ink"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1216/thumb/ink.png?1547035244", "small": "https://assets.coingecko.com/coins/images/1216/small/ink.png?1547035244"}, "market_data": {"current_price": {"aed": 0.005550388091620882, "ars": 0.15014092931493878, "aud": 0.002024575529073818, "bch": 2.4000028369377396e-06, "bdt": 0.12929513917436766, "bhd": 0.0005698863844066342, "bmd": 0.001511049790814785, "bnb": 3.101466921947531e-06, "brl": 0.008540049967391031, "btc": 2.452950509836718e-08, "cad": 0.0018683904005956204, "chf": 0.001384213782423585, "clp": 1.232593535363438, "cny": 0.009647901809373333, "czk": 0.03332952744595998, "dkk": 0.009653794903557502, "dot": 3.430633077550681e-05, "eos": 0.00031774010372390653, "eth": 3.617389078713456e-07, "eur": 0.001297929817268479, "gbp": 0.0010981070818813388, "hkd": 0.011745843338940585, "huf": 0.4731739091202188, "idr": 21.50344736312707, "ils": 0.004844380297858473, "inr": 0.11332796367571563, "jpy": 0.17163712363907002, "krw": 1.7791100237053292, "kwd": 0.00045567519701768955, "lkr": 0.3042503649606899, "ltc": 7.674052547338183e-06, "mmk": 2.8160069400608743, "mxn": 0.030475985468495708, "myr": 0.006270856631881368, "ngn": 0.621335122952274, "nok": 0.012627087576943757, "nzd": 0.0021108504279301788, "php": 0.0767102347357645, "pkr": 0.26344460890946614, "pln": 0.005971742814739779, "rub": 0.10621984946524181, "sar": 0.005668117002922843, "sek": 0.012954380961634248, "sgd": 0.0020368951180183325, "thb": 0.05041617475948554, "try": 0.01450441583705206, "twd": 0.04208454993394073, "uah": 0.03968524312304361, "usd": 0.001511049790814785, "vef": 0.00015130141555428462, "vnd": 34.35799477613202, "xag": 6.210653386115723e-05, "xau": 8.429995677976604e-07, "xdr": 0.0010676805832934933, "xlm": 0.003982395434287792, "xrp": 0.0013794152636608151, "yfi": 4.207574115632527e-08, "zar": 0.02243837920019789, "bits": 0.02452950509836718, "link": 4.832275413966209e-05, "sats": 2.452950509836718}, "market_cap": {"aed": 2575912.0965760015, "ars": 69679782.679948, "aud": 939597.1073889447, "bch": 1113.751395166509, "bdt": 60005337.920518436, "bhd": 264481.90775761026, "bmd": 701271.9417880877, "bnb": 1437.9980624828052, "brl": 3963401.7753778202, "btc": 11.386140412879167, "cad": 867112.2369418445, "chf": 642407.8762663372, "clp": 572041548.3553795, "cny": 4477551.221122767, "czk": 15468095.47440825, "dkk": 4480286.181695731, "dot": 15898.437550788209, "eos": 147260.38035756303, "eth": 167.68400432394608, "eur": 602363.8458463544, "gbp": 509626.9429923562, "hkd": 5451197.18510134, "huf": 219598049.03137615, "idr": 9979660749.197916, "ils": 2248256.807214359, "inr": 52595037.985416204, "jpy": 79656077.32382536, "krw": 825677584.2612956, "kwd": 211476.96930949917, "lkr": 141201332.6911402, "ltc": 3554.967741820118, "mmk": 1306897143.2638097, "mxn": 14143778.475938534, "myr": 2910278.558420564, "ngn": 288359053.9653432, "nok": 5860178.981552155, "nzd": 979636.9301772771, "php": 35600901.833395235, "pkr": 122263550.52398823, "pln": 2771461.0762716727, "rub": 49296191.656770356, "sar": 2630549.5961046005, "sek": 6012074.484143453, "sgd": 945314.5775303423, "thb": 23397937.63648758, "try": 6731439.242029679, "twd": 19531265.10512844, "uah": 18417756.7638077, "usd": 701271.9417880877, "vef": 70218.35953124118, "vnd": 15945402897.419333, "xag": 28823.38481715843, "xau": 391.2326036041565, "xdr": 495506.1311725111, "xlm": 1848631.7236912749, "xrp": 638822.9631862933, "yfi": 19.507005616304653, "zar": 10413558.737740459, "bits": 11386140.412879167, "link": 22437.81512990441, "sats": 1138614041.2879167}, "total_volume": {"aed": 31628862.602831867, "ars": 855577438.18539, "aud": 11537034.920999775, "bch": 13676.405815749475, "bdt": 736787792.9714016, "bhd": 3247495.1037807968, "bmd": 8610710.716223398, "bnb": 17673.69587895958, "brl": 48665437.908333495, "btc": 139.78127901415814, "cad": 10647014.639949495, "chf": 7887936.269414335, "clp": 7023928945.43776, "cny": 54978526.85201485, "czk": 189928168.40988335, "dkk": 55012108.62380806, "dot": 195494.4779706267, "eos": 1810640.6107465813, "eth": 2061.36760642624, "eur": 7396247.4660965465, "gbp": 6257558.470272435, "hkd": 66933637.61041944, "huf": 2696379480.4549856, "idr": 122537302060.43208, "ils": 27605680.23489071, "inr": 645798912.25429, "jpy": 978073408.8343846, "krw": 10138250797.281437, "kwd": 2596663.145005768, "lkr": 1733769392.5818574, "ltc": 43730.55534496673, "mmk": 16047003403.287441, "mxn": 173667271.75783074, "myr": 35734449.472327165, "ngn": 3540675518.4991217, "nok": 71955404.10012086, "nzd": 12028672.060053267, "php": 437132941.81199044, "pkr": 1501237967.7077591, "pln": 34029950.67533995, "rub": 605293354.0812112, "sar": 32299740.29615426, "sek": 73820484.0412549, "sgd": 11607238.045469156, "thb": 287296354.43608314, "try": 82653351.09395689, "twd": 239818626.29968107, "uah": 226146186.7853223, "usd": 8610710.716223398, "vef": 862190.46401545, "vnd": 195788885055.37704, "xag": 353913.81535971374, "xau": 4803.829401473872, "xdr": 6084173.199290566, "xlm": 22693663.207332544, "xrp": 7860591.930939359, "yfi": 239.76842951842914, "zar": 127865007.10188094, "bits": 139781279.01415813, "link": 275367.0060623562, "sats": 13978127901.415813}}, "community_data": {"facebook_likes": null, "twitter_followers": 5031, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 185, "reddit_accounts_active_48h": "8.5"}, "developer_data": {"forks": 52, "stars": 224, "subscribers": 19, "total_issues": 9, "closed_issues": 5, "pull_requests_merged": 103, "pull_request_contributors": 9, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "GOD_20211029": {"id": "bitcoin-god", "symbol": "god", "name": "Bitcoin God", "localization": {"en": "Bitcoin God", "de": "Bitcoin God", "es": "Bitcoin God", "fr": "Bitcoin God", "it": "Bitcoin God", "pl": "Bitcoin God", "ro": "Bitcoin God", "hu": "Bitcoin God", "nl": "Bitcoin God", "pt": "Bitcoin God", "sv": "Bitcoin God", "vi": "Bitcoin God", "tr": "Bitcoin God", "ru": "Bitcoin God", "ja": "Bitcoin God", "zh": "Bitcoin God", "zh-tw": "Bitcoin God", "ko": "Bitcoin God", "ar": "Bitcoin God", "th": "Bitcoin God", "id": "Bitcoin God"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2543/thumb/bitcoin-god.png?1547036659", "small": "https://assets.coingecko.com/coins/images/2543/small/bitcoin-god.png?1547036659"}, "market_data": {"current_price": {"aed": 40.873183353664544, "ars": 1106.34667434701, "aud": 14.852303572172406, "bch": 0.017936934262296853, "bdt": 952.9819490081261, "bhd": 4.194530880725424, "bmd": 11.127404811517076, "bnb": 0.022835132267099666, "brl": 61.819399043459406, "btc": 0.0001759, "cad": 13.774503142128868, "chf": 10.237379337667882, "clp": 9005.430401272753, "cny": 71.05738164538575, "czk": 246.6444913496814, "dkk": 71.30852717198172, "dot": 0.24931790656260583, "eos": 2.30501900240012, "eth": 0.0026309321819355316, "eur": 9.584033764159654, "gbp": 8.084671602831792, "hkd": 86.50833959641777, "huf": 3505.0212415797687, "idr": 157573.5104251715, "ils": 35.61826643142557, "inr": 835.5607218885003, "jpy": 1266.0204824303546, "krw": 12996.80893112599, "kwd": 3.355713723818828, "lkr": 2247.6786883397644, "ltc": 0.05675360213394822, "mmk": 20585.1952638374, "mxn": 224.63225915153924, "myr": 46.195421075013115, "ngn": 4588.119440181478, "nok": 92.92935290587968, "nzd": 15.529684340073516, "php": 565.1163251206826, "pkr": 1941.591099753735, "pln": 44.22429033189139, "rub": 777.1190354481728, "sar": 41.73543482510414, "sek": 95.77865843672632, "sgd": 14.991485151554862, "thb": 367.84958134805856, "try": 106.72850324966606, "twd": 309.51876836927215, "uah": 293.7721886546136, "usd": 11.127404811517076, "vef": 1.114187043777205, "vnd": 253528.9399831103, "xag": 0.4533566214225132, "xau": 0.006155346519586901, "xdr": 7.862880170128626, "xlm": 28.66294074573433, "xrp": 10.151336352570606, "yfi": 0.00031855915340690464, "zar": 163.52555925885196, "bits": 175.9, "link": 0.342131700202501, "sats": 17590.0}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 5009139.414178322, "ars": 135586325.250584, "aud": 1820197.3301411592, "bch": 2198.2286920341185, "bdt": 116790987.39318268, "bhd": 514053.181931719, "bmd": 1363699.0673468143, "bnb": 2798.518531756319, "brl": 7576165.174852889, "btc": 21.55710788, "cad": 1688109.4384779474, "chf": 1254623.5974450794, "clp": 1103644313.0532598, "cny": 8708309.50426329, "czk": 30227071.677275777, "dkk": 8739088.192213312, "dot": 30554.707266548343, "eos": 282487.45480494236, "eth": 322.42915787918156, "eur": 1174554.006705811, "gbp": 990802.3758761651, "hkd": 10601873.844227705, "huf": 429551569.2235737, "idr": 19311137937.838127, "ils": 4365132.529623784, "inr": 102400640.26174577, "jpy": 155154861.38738376, "krw": 1592800524.2980697, "kwd": 411253.45513791364, "lkr": 275460215.8278408, "ltc": 6955.335553042183, "mmk": 2522781552.2081175, "mxn": 27529402.18225042, "myr": 5661396.678090298, "ngn": 562288719.3764488, "nok": 11388789.572544854, "nzd": 1903212.5108658976, "php": 69256814.01578005, "pkr": 237948202.36633945, "pln": 5419828.297902351, "rub": 95238424.575087, "sar": 5114811.091207953, "sek": 11737981.083127808, "sgd": 1837254.4780755334, "thb": 45081143.31286489, "try": 13079919.604456974, "twd": 37932515.52371308, "uah": 36002721.79062659, "usd": 1363699.0673468143, "vef": 136547.18761343657, "vnd": 31070782887.538113, "xag": 55560.304696517545, "xau": 754.3574130842374, "xdr": 963621.1260658076, "xlm": 3512735.1098001283, "xrp": 1244078.754283856, "yfi": 39.04044363930707, "zar": 20040580.568961937, "bits": 21557107.88, "link": 41929.33468125715, "sats": 2155710788.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 3322, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SOP_20211030": {"id": "sopay", "symbol": "sop", "name": "SoPay", "localization": {"en": "SoPay", "de": "SoPay", "es": "SoPay", "fr": "SoPay", "it": "SoPay", "pl": "SoPay", "ro": "SoPay", "hu": "SoPay", "nl": "SoPay", "pt": "SoPay", "sv": "SoPay", "vi": "SoPay", "tr": "SoPay", "ru": "SoPay", "ja": "SoPay", "zh": "SoPay", "zh-tw": "SoPay", "ko": "SoPay", "ar": "SoPay", "th": "SoPay", "id": "SoPay"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/6736/thumb/sopay.png?1548609877", "small": "https://assets.coingecko.com/coins/images/6736/small/sopay.png?1548609877"}, "market_data": {"current_price": {"aed": 0.0001814031818471666, "ars": 0.004916252414101125, "aud": 6.574996155419287e-05, "bch": 8.102045116896084e-08, "bdt": 0.004228521305426748, "bhd": 1.861728429880789e-05, "bmd": 4.938559889120284e-05, "bnb": 1.0289695823677691e-07, "brl": 0.00027492962902732625, "btc": 8.148813415052475e-10, "cad": 6.119048552216147e-05, "chf": 4.542788638166071e-05, "clp": 0.03970663008726223, "cny": 0.00031522827772254784, "czk": 0.0010950255014178746, "dkk": 0.0003168183458500475, "dot": 1.0949137952389578e-06, "eos": 1.0419908657352089e-05, "eth": 1.1912330261192686e-08, "eur": 4.258846137341103e-05, "gbp": 3.587399534816311e-05, "hkd": 0.0003840150091381592, "huf": 0.015546420496567183, "idr": 0.6985938662352874, "ils": 0.0001580097175083927, "inr": 0.00369845046176301, "jpy": 0.005639489694183126, "krw": 0.05775752221230343, "kwd": 1.489509171037793e-05, "lkr": 0.00995059631428372, "ltc": 2.478593362003296e-07, "mmk": 0.09209868956443293, "mxn": 0.0009975365019394774, "myr": 0.0002048267714012635, "ngn": 0.020281771782819487, "nok": 0.0004131253504045788, "nzd": 6.891750448147574e-05, "php": 0.0025118750236038045, "pkr": 0.00864858870577216, "pln": 0.0001962826183226957, "rub": 0.0034324620954149392, "sar": 0.00018520399630903096, "sek": 0.0004254100181287656, "sgd": 6.654348935717676e-05, "thb": 0.0016405896445513529, "try": 0.00047110898206274013, "twd": 0.0013735073871878431, "uah": 0.0013045636095677553, "usd": 4.938559889120284e-05, "vef": 4.944980016976137e-06, "vnd": 1.12649462570955, "xag": 2.045504095898687e-06, "xau": 2.754481778156838e-08, "xdr": 3.493433555806016e-05, "xlm": 0.00013164842380634229, "xrp": 4.453137091311781e-05, "yfi": 1.3173424648012656e-09, "zar": 0.0007328711757856992, "bits": 0.0008148813415052475, "link": 1.5210373458378507e-06, "sats": 0.08148813415052475}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 2039.8034468195265, "ars": 55281.21677693123, "aud": 739.3310130551539, "bch": 0.9110413272494691, "bdt": 47547.96606062954, "bhd": 209.34363056058237, "bmd": 555.3205506968101, "bnb": 1.1570335643586218, "brl": 3091.4695057291424, "btc": 0.009163002281579253, "cad": 688.0615985326217, "chf": 510.8177170845181, "clp": 446484.56597538176, "cny": 3544.6110750977405, "czk": 12313.107021624985, "dkk": 3562.490730868521, "dot": 12.31185093203237, "eos": 117.16754567578937, "eth": 0.13394920683863917, "eur": 478.8895620222054, "gbp": 403.38817994946726, "hkd": 4318.089304135787, "huf": 174813.0423716644, "idr": 7855397.91399186, "ils": 1776.7536551599544, "inr": 41587.53955127106, "jpy": 63413.719645720834, "krw": 649459.3517531075, "kwd": 167.48912065456378, "lkr": 111890.32327385628, "ltc": 2.787075304631594, "mmk": 1035611.5174394674, "mxn": 11216.883707689063, "myr": 2303.1919840150167, "ngn": 228060.1010904947, "nok": 4645.423002744022, "nzd": 774.9487178562966, "php": 28244.991509816507, "pkr": 97249.78841342207, "pln": 2207.116530859516, "rub": 38596.61083124561, "sar": 2082.54202704225, "sek": 4783.558989729855, "sgd": 748.2539036637506, "thb": 18447.749249468532, "try": 5297.424861317148, "twd": 15444.520179245163, "uah": 14669.276030855875, "usd": 555.3205506968101, "vef": 55.60424674127157, "vnd": 12666964.255797608, "xag": 23.000844102133215, "xau": 0.3097300371511458, "xdr": 392.82209583135864, "xlm": 1480.3318547895096, "xrp": 500.7367729453931, "yfi": 0.014812968951158028, "zar": 8240.83202521675, "bits": 9163.002281579253, "link": 17.10343329807328, "sats": 916300.2281579253}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "KALM_20211103": {"id": "kalmar", "symbol": "kalm", "name": "Kalmar", "localization": {"en": "Kalmar", "de": "Kalmar", "es": "Kalmar", "fr": "Kalmar", "it": "Kalmar", "pl": "Kalmar", "ro": "Kalmar", "hu": "Kalmar", "nl": "Kalmar", "pt": "Kalmar", "sv": "Kalmar", "vi": "Kalmar", "tr": "Kalmar", "ru": "Kalmar", "ja": "Kalmar", "zh": "Kalmar", "zh-tw": "Kalmar", "ko": "Kalmar", "ar": "Kalmar", "th": "Kalmar", "id": "Kalmar"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/15849/thumb/kyljoFN.png?1622520569", "small": "https://assets.coingecko.com/coins/images/15849/small/kyljoFN.png?1622520569"}, "market_data": {"current_price": {"aed": 6.929622567544273, "ars": 188.09104155307145, "aud": 2.509766664107174, "bch": 0.003230037808921659, "bdt": 161.5989869389654, "bhd": 0.7113135877412247, "bmd": 1.8866383249508003, "bnb": 0.0035884099769717356, "brl": 10.632716271757712, "btc": 3.052241149867478e-05, "cad": 2.3369600267333075, "chf": 1.726779686401068, "clp": 1534.7802773474757, "cny": 12.08523911813734, "czk": 41.86205180083574, "dkk": 12.140894948723387, "dot": 0.04418478763674016, "eos": 0.42247754351106265, "eth": 0.0004362988949807157, "eur": 1.6318855519326942, "gbp": 1.3786175632763225, "hkd": 14.676508557882388, "huf": 587.4472918357422, "idr": 26844.127738478688, "ils": 5.959013181698477, "inr": 141.36307406299235, "jpy": 215.1050913532572, "krw": 2216.0642428704573, "kwd": 0.5692346287658292, "lkr": 381.2006542488111, "ltc": 0.009920802736257565, "mmk": 3387.4002870662025, "mxn": 38.78032242894504, "myr": 7.812569303621255, "ngn": 774.1065711105616, "nok": 15.928076123079883, "nzd": 2.6302322944319334, "php": 95.33371931145061, "pkr": 324.78478764027875, "pln": 7.522404329243839, "rub": 133.8379341081772, "sar": 7.076597352972915, "sek": 16.20877960625767, "sgd": 2.544773238226635, "thb": 62.804716373080424, "try": 18.126821026127285, "twd": 52.50835186853327, "uah": 49.545420338687876, "usd": 1.8866383249508003, "vef": 0.18890909547732365, "vnd": 43266.397360390925, "xag": 0.07903818452845823, "xau": 0.0010578192424166627, "xdr": 1.333998566891236, "xlm": 5.268981793821868, "xrp": 1.753493871921978, "yfi": 5.5759268949686746e-05, "zar": 28.76581980350707, "bits": 30.52241149867478, "link": 0.0635971084958656, "sats": 3052.2411498674783}, "market_cap": {"aed": 22032183.35555064, "ars": 598020494.571083, "aud": 7979603.331102297, "bch": 10269.648102456824, "bdt": 513791115.6930801, "bhd": 2261564.93166164, "bmd": 5998416.3777704025, "bnb": 11409.063884347468, "brl": 33805875.021838404, "btc": 97.04357777608116, "cad": 7430178.382980421, "chf": 5490158.561249158, "clp": 4879711723.316223, "cny": 38424055.79108387, "czk": 133097061.48143388, "dkk": 38601009.0742281, "dot": 140482.01518191944, "eos": 1343233.72038096, "eth": 1387.177607199145, "eur": 5188450.214280067, "gbp": 4383204.804479029, "hkd": 46662790.70970585, "huf": 1867741903.5873122, "idr": 85348767351.92502, "ils": 18946208.073761046, "inr": 449452641.48258895, "jpy": 683909515.5924095, "krw": 7045799861.492886, "kwd": 1809836.1910845041, "lkr": 1211997136.6120167, "ltc": 31542.402604033123, "mmk": 10769969575.664143, "mxn": 123298948.24916542, "myr": 24839442.22034721, "ngn": 2461210223.9629703, "nok": 50642050.15847308, "nzd": 8362614.213655694, "php": 303105971.9867, "pkr": 1032627379.4331703, "pln": 23916885.781446178, "rub": 425527057.9973944, "sar": 22499477.986628085, "sek": 51534524.5392396, "sgd": 8090903.946991823, "thb": 199682596.4527859, "try": 57632784.55761801, "twd": 166946125.1011928, "uah": 157525720.15139917, "usd": 5998416.3777704025, "vef": 600621.4319061507, "vnd": 137562066402.1331, "xag": 251295.6162687445, "xau": 3363.2520788520837, "xdr": 4241342.25714476, "xlm": 16752308.202505842, "xrp": 5575094.187663724, "yfi": 177.28215718772063, "zar": 91458634.30599438, "bits": 97043577.77608117, "link": 202201.9441327684, "sats": 9704357777.608116}, "total_volume": {"aed": 1075770.7746650463, "ars": 29199692.119856615, "aud": 389622.03239185776, "bch": 501.4386053542939, "bdt": 25087003.753802467, "bhd": 110425.98090379497, "bmd": 292886.13522054144, "bnb": 557.0731368289636, "brl": 1650647.6808759263, "btc": 4.738370371910577, "cad": 362795.12683633255, "chf": 268069.30721103435, "clp": 238262871.0019104, "cny": 1876140.716382222, "czk": 6498762.588568014, "dkk": 1884780.8573712278, "dot": 6859.3495188340685, "eos": 65586.39952342222, "eth": 67.73205837172162, "eur": 253337.7203817118, "gbp": 214019.8069313004, "hkd": 2278415.429815607, "huf": 91196688.13895792, "idr": 4167345019.2922316, "ils": 925091.109108813, "inr": 21945533.42717911, "jpy": 33393416.23644794, "krw": 344026983.2913998, "kwd": 88369.31183260634, "lkr": 59178478.93256791, "ltc": 1540.1285626823171, "mmk": 525867923.5987879, "mxn": 6020347.730992051, "myr": 1212841.4859482606, "ngn": 120174110.14234017, "nok": 2472711.698628887, "nzd": 408323.39789795986, "php": 14799829.00594305, "pkr": 50420348.17821597, "pln": 1167795.5983513442, "rub": 20777313.143931676, "sar": 1098587.4832571321, "sek": 2516288.762257673, "sgd": 395056.5346308747, "thb": 9749950.697420228, "try": 2814049.9871989614, "twd": 8151519.049617555, "uah": 7691546.646204128, "usd": 292886.13522054144, "vef": 29326.688719632817, "vnd": 6716776469.666806, "xag": 12270.07216764337, "xau": 164.21832715680515, "xdr": 207093.04983333463, "xlm": 817969.0265648167, "xrp": 272216.4796973072, "yfi": 8.656199001905874, "zar": 4465672.97890517, "bits": 4738370.371910577, "link": 9872.963499265967, "sats": 473837037.1910576}}, "community_data": {"facebook_likes": null, "twitter_followers": 20682, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 270536, "bing_matches": null}}, "NBOT_20211105": {"id": "naka-bodhi-token", "symbol": "nbot", "name": "Naka Bodhi Token", "localization": {"en": "Naka Bodhi Token", "de": "Naka Bodhi Token", "es": "Naka Bodhi Token", "fr": "Naka Bodhi Token", "it": "Naka Bodhi Token", "pl": "Naka Bodhi Token", "ro": "Naka Bodhi Token", "hu": "Naka Bodhi Token", "nl": "Naka Bodhi Token", "pt": "Naka Bodhi Token", "sv": "Naka Bodhi Token", "vi": "Naka Bodhi Token", "tr": "Naka Bodhi Token", "ru": "Naka Bodhi Token", "ja": "Naka Bodhi Token", "zh": "Naka Bodhi Token", "zh-tw": "Naka Bodhi Token", "ko": "Naka Bodhi Token", "ar": "Naka Bodhi Token", "th": "Naka Bodhi Token", "id": "Naka Bodhi Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8133/thumb/mBKP0Lne_400x400.jpg?1561427531", "small": "https://assets.coingecko.com/coins/images/8133/small/mBKP0Lne_400x400.jpg?1561427531"}, "market_data": {"current_price": {"aed": 0.05020608303493755, "ars": 1.3636763268505427, "aud": 0.018175197992770314, "bch": 2.3259540258844405e-05, "bdt": 1.1707995553281696, "bhd": 0.005153080631919816, "bmd": 0.013668213828524864, "bnb": 2.4825325619658126e-05, "brl": 0.0776381881887869, "btc": 2.2362364717006268e-07, "cad": 0.016914031902812328, "chf": 0.012428370152139379, "clp": 11.106562748939428, "cny": 0.08744513161075354, "czk": 0.3013854680721418, "dkk": 0.08765316182522372, "dot": 0.0002728800969515759, "eos": 0.002937501201096671, "eth": 3.1618734218753186e-06, "eur": 0.011782000320188425, "gbp": 0.010006007288165229, "hkd": 0.10638175845948321, "huf": 4.247576418805976, "idr": 195.13630495500945, "ils": 0.04261065661042638, "inr": 1.0228054119234382, "jpy": 1.5598438985389147, "krw": 16.09525038786733, "kwd": 0.004124465532040351, "lkr": 2.760286419944128, "ltc": 6.90893332450523e-05, "mmk": 24.685707662050802, "mxn": 0.2849877256102754, "myr": 0.05674358970912095, "ngn": 5.635516299148859, "nok": 0.11508739922043032, "nzd": 0.01903916578887137, "php": 0.692500026285785, "pkr": 2.347162087352766, "pln": 0.05439353169629967, "rub": 0.9787917268317287, "sar": 0.05127126060680831, "sek": 0.11644812457991532, "sgd": 0.018427895930032086, "thb": 0.45497485882614436, "try": 0.13046419445037621, "twd": 0.3803207834214693, "uah": 0.35947925861610114, "usd": 0.013668213828524864, "vef": 0.0013685982506501948, "vnd": 310.21950863519686, "xag": 0.000568869282675408, "xau": 7.626453269902019e-06, "xdr": 0.009719548862747, "xlm": 0.03723948755440168, "xrp": 0.012511699082673052, "yfi": 3.930027828853774e-07, "zar": 0.2108977647267316, "bits": 0.2236236471700627, "link": 0.0004318227459254928, "sats": 22.36236471700627}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 177935.13168359667, "ars": 4832998.555635213, "aud": 64414.62971665283, "bch": 82.43402210798548, "bdt": 4149424.9393533356, "bhd": 18263.007695278262, "bmd": 48441.449331263364, "bnb": 87.98331429576199, "brl": 275157.1204914421, "btc": 0.7925434668759508, "cad": 59944.93718685716, "chf": 44047.32546242449, "clp": 39362714.35294862, "cny": 309913.8603866237, "czk": 1068138.7534578394, "dkk": 310651.1392454456, "dot": 967.1130080218114, "eos": 10410.783543383224, "eth": 11.205980026299596, "eur": 41756.529323548995, "gbp": 35462.241163242, "hkd": 377027.06636262214, "huf": 15053814.67202765, "idr": 691581617.595181, "ils": 151016.21829021396, "inr": 3624919.6243938506, "jpy": 5528235.080582439, "krw": 57043097.65118875, "kwd": 14617.497984404717, "lkr": 9782717.51005586, "ltc": 244.8591657774914, "mmk": 87488494.97964513, "mxn": 1010023.5951365759, "myr": 201104.6768987398, "ngn": 19972805.568128206, "nok": 407880.6849193867, "nzd": 67476.61372888199, "php": 2454285.933485561, "pkr": 8318565.597025957, "pln": 192775.8478665196, "rub": 3468930.9397712355, "sar": 181710.22227143132, "sek": 412703.2249661114, "sgd": 65310.21523188924, "thb": 1612474.1569984637, "try": 462377.50918285566, "twd": 1347893.0159322668, "uah": 1274028.6704873235, "usd": 48441.449331263364, "vef": 4850.442321539401, "vnd": 1099447433.1210504, "xag": 2016.1268237787713, "xau": 27.028875483365024, "xdr": 34447.005268157365, "xlm": 131980.28448487117, "xrp": 44342.65111484083, "yfi": 1.392839227789732, "zar": 747441.72956718, "bits": 792543.4668759508, "link": 1530.4208676617077, "sats": 79254346.68759508}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 5886672, "bing_matches": null}}, "SUSD_20210328": {"id": "nusd", "symbol": "susd", "name": "sUSD", "localization": {"en": "sUSD", "de": "sUSD", "es": "sUSD", "fr": "sUSD", "it": "sUSD", "pl": "sUSD", "ro": "sUSD", "hu": "sUSD", "nl": "sUSD", "pt": "sUSD", "sv": "sUSD", "vi": "sUSD", "tr": "sUSD", "ru": "sUSD", "ja": "sUSD", "zh": "sUSD", "zh-tw": "sUSD", "ko": "sUSD", "ar": "sUSD", "th": "sUSD", "id": "sUSD"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/5013/thumb/sUSD.png?1616150765", "small": "https://assets.coingecko.com/coins/images/5013/small/sUSD.png?1616150765"}, "market_data": {"current_price": {"aed": 3.695645888596392, "ars": 92.00771842035896, "aud": 1.3253255018911854, "bch": 0.00211318389025642, "bdt": 85.25639656687213, "bhd": 0.3794043516796529, "bmd": 1.0061107177927675, "bnb": 0.004048896592736149, "brl": 5.6555495668567, "btc": 1.9082339260149573e-05, "cad": 1.2655212747148665, "chf": 0.9416753629824474, "clp": 732.1477150818716, "cny": 6.564469989310687, "czk": 22.36156528598254, "dkk": 6.3326872326991905, "dot": 0.033150315955254875, "eos": 0.2720698979650734, "eth": 0.0006332009769664406, "eur": 0.8516264415185589, "gbp": 0.7350725393051385, "hkd": 7.816021416709008, "huf": 310.74031251633875, "idr": 14548.411284819309, "ils": 3.3241193838370613, "inr": 73.08977130649792, "jpy": 109.43332129671603, "krw": 1142.438720053689, "kwd": 0.30393196229514635, "lkr": 200.24814890098273, "ltc": 0.005685684450884131, "mmk": 1418.843258686226, "mxn": 21.02972622330444, "myr": 4.157249485919709, "ngn": 394.51295333881086, "nok": 8.65071702706856, "nzd": 1.4436944278395047, "php": 48.91394592365201, "pkr": 156.3475118285925, "pln": 3.940766654993677, "rub": 77.11949324060517, "sar": 3.773670780871941, "sek": 8.666295645422846, "sgd": 1.3547139959579124, "thb": 31.19949335875372, "try": 7.973266460792841, "twd": 28.651217138838916, "uah": 28.05484199253517, "usd": 1.0061107177927675, "vef": 0.10074186617258994, "vnd": 23262.23169482896, "xag": 0.04009849235209492, "xau": 0.00058002282880753, "xdr": 0.7063953655158917, "xlm": 2.768344979934316, "xrp": 2.077998439395563, "yfi": 3.243285827751381e-05, "zar": 15.054428633668882, "bits": 19.08233926014957, "link": 0.04036047523485443, "sats": 1908.2339260149572}, "market_cap": {"aed": 870898309.6956464, "ars": 21678164957.4173, "aud": 312416393.72064865, "bch": 495064.3345074431, "bdt": 20091116383.72649, "bhd": 89408622.61413138, "bmd": 237095260.1806726, "bnb": 951759.7164353397, "brl": 1332831005.1056504, "btc": 4485.39621712061, "cad": 298246869.68647146, "chf": 221886073.43060282, "clp": 172534025229.88553, "cny": 1546951734.5748143, "czk": 5268398938.370635, "dkk": 1492408681.2560341, "dot": 7728395.160687587, "eos": 63790938.2625174, "eth": 148396.81589240025, "eur": 200703271.60028073, "gbp": 173267319.37795383, "hkd": 1841907722.0499775, "huf": 73219995344.2553, "idr": 3428409316975.5312, "ils": 783346142.968729, "inr": 17223987418.08188, "jpy": 25788179680.738194, "krw": 269221667935.15372, "kwd": 71623158.76693857, "lkr": 47189525093.75422, "ltc": 1326737.3041730092, "mmk": 334357845140.35345, "mxn": 4957949486.928451, "myr": 979677615.066539, "ngn": 92969043726.8324, "nok": 2039512632.7902195, "nzd": 340299744.69893664, "php": 11542149826.247002, "pkr": 36844110036.840065, "pln": 928709958.271282, "rub": 18173683626.212807, "sar": 889124770.7267761, "sek": 2042379825.7715816, "sgd": 319268446.7398702, "thb": 7355551833.074745, "try": 1877201722.480474, "twd": 6736374478.874556, "uah": 6611270453.554419, "usd": 237095260.1806726, "vef": 23740348.401890732, "vnd": 5482519210720.157, "xag": 9452810.201958269, "xau": 136723.35273578638, "xdr": 166465767.64915088, "xlm": 647612628.50499, "xrp": 484792170.28091884, "yfi": 7583.958239162317, "zar": 3549338094.7638617, "bits": 4485396217.12061, "link": 9438428.83314719, "sats": 448539621712.06085}, "total_volume": {"aed": 148118029.8104139, "ars": 3687583277.885647, "aud": 53117806.22796004, "bch": 84694.43336487106, "bdt": 3416996614.0929585, "bhd": 15206171.469429148, "bmd": 40323976.31776488, "bnb": 162275.9875540857, "brl": 226669135.67741975, "btc": 764.8023053585224, "cad": 50720908.751655824, "chf": 37741467.57846994, "clp": 29343795470.975243, "cny": 263097815.88288856, "czk": 896230616.6445603, "dkk": 253808179.838684, "dot": 1328633.650219654, "eos": 10904306.97964203, "eth": 25378.102775403993, "eur": 34132391.05007734, "gbp": 29461019.68956957, "hkd": 313258826.2233725, "huf": 12454181017.346655, "idr": 583086713753.6962, "ils": 133227595.07555304, "inr": 2929369655.955831, "jpy": 4385985138.915945, "krw": 45787875108.82208, "kwd": 12181308.70992834, "lkr": 8025758468.8832245, "ltc": 227876.9136370131, "mmk": 56865910431.20981, "mxn": 842851752.993922, "myr": 166618670.14500424, "ngn": 15811710089.308868, "nok": 346712645.3999749, "nzd": 57861922.0417451, "php": 1960425191.9320467, "pkr": 6266262005.585952, "pln": 157942240.8086635, "rub": 3090877141.130626, "sar": 151245194.49783295, "sek": 347337021.8492785, "sgd": 54295669.57620196, "thb": 1250446505.613889, "try": 319561060.48207605, "twd": 1148313978.7202303, "uah": 1124411820.7859492, "usd": 40323976.31776488, "vef": 4037639.748697803, "vnd": 932328483706.5531, "xag": 1607110.059945706, "xau": 23246.772347191436, "xdr": 28311665.392584335, "xlm": 110952676.91330533, "xrp": 83284233.41157396, "yfi": 1299.8786177022603, "zar": 603367415.6988584, "bits": 764802305.3585224, "link": 1617610.0887926603, "sats": 76480230535.85225}}, "community_data": {"facebook_likes": null, "twitter_followers": 102738, "reddit_average_posts_48h": 0.909, "reddit_average_comments_48h": 3.455, "reddit_subscribers": 5619, "reddit_accounts_active_48h": "80.9166666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 22945, "bing_matches": null}}, "REAP_20210401": {"id": "reapchain", "symbol": "reap", "name": "ReapChain", "localization": {"en": "ReapChain", "de": "ReapChain", "es": "ReapChain", "fr": "ReapChain", "it": "ReapChain", "pl": "ReapChain", "ro": "ReapChain", "hu": "ReapChain", "nl": "ReapChain", "pt": "ReapChain", "sv": "ReapChain", "vi": "ReapChain", "tr": "ReapChain", "ru": "ReapChain", "ja": "ReapChain", "zh": "ReapChain", "zh-tw": "ReapChain", "ko": "ReapChain", "ar": "ReapChain", "th": "ReapChain", "id": "ReapChain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13109/thumb/REAP.jpg?1605259422", "small": "https://assets.coingecko.com/coins/images/13109/small/REAP.jpg?1605259422"}, "market_data": {"current_price": {"aed": 0.56714968326968, "ars": 14.193735469717483, "aud": 0.20217572287483154, "bch": 0.00031179150944342176, "bdt": 13.059925279832147, "bhd": 0.05815844092709451, "bmd": 0.15441182261040134, "bnb": 0.0005750141949213178, "brl": 0.8885401346736296, "btc": 2.772587271208302e-06, "cad": 0.19428913903500528, "chf": 0.14505199557104917, "clp": 113.16829415876128, "cny": 1.0100849376059393, "czk": 3.414199809738573, "dkk": 0.9740623579209828, "dot": 0.004804723795518035, "eos": 0.0376652926485259, "eth": 9.159322983658646e-05, "eur": 0.13098631382582254, "gbp": 0.11196524786938274, "hkd": 1.1996439792789197, "huf": 47.4919296256764, "idr": 2226.3540357369357, "ils": 0.5144455311526518, "inr": 11.186742180328613, "jpy": 16.949785767943737, "krw": 174.32444359235095, "kwd": 0.04664117190222985, "lkr": 30.723778021433784, "ltc": 0.0008408239181696302, "mmk": 217.69122184756395, "mxn": 3.1849797826044797, "myr": 0.6402686224540282, "ngn": 60.966075119664964, "nok": 1.3275060786978676, "nzd": 0.2208376269318793, "php": 7.482721107495135, "pkr": 23.875529379807315, "pln": 0.6070314776371388, "rub": 11.68985511899624, "sar": 0.5790983789269175, "sek": 1.3349056476491803, "sgd": 0.2078352249971478, "thb": 4.807719104367907, "try": 1.2515263516760162, "twd": 4.417259009415745, "uah": 4.31798456042307, "usd": 0.15441182261040134, "vef": 0.015461255797979478, "vnd": 3560.2913642215294, "xag": 0.006168174813068966, "xau": 8.919753344912429e-05, "xdr": 0.10868029075516908, "xlm": 0.38922620261401575, "xrp": 0.28068465402808934, "yfi": 4.738400517541177e-06, "zar": 2.316959280625718, "bits": 2.772587271208302, "link": 0.005794029028569086, "sats": 277.2587271208302}, "market_cap": {"aed": 36306985.301927395, "ars": 908666089.7636538, "aud": 12941758.91476631, "bch": 19954.181691999867, "bdt": 836051802.8424429, "bhd": 3723104.7150545497, "bmd": 9884917.402473273, "bnb": 36782.30285590384, "brl": 56881304.10967422, "btc": 177.44558535733134, "cad": 12437786.285918605, "chf": 9287324.720906751, "clp": 7244665275.864858, "cny": 64662187.18827885, "czk": 218570351.14478815, "dkk": 62357953.63225801, "dot": 307235.44347160903, "eos": 2411696.155604925, "eth": 5864.183812452288, "eur": 8385296.353178861, "gbp": 7167583.263285581, "hkd": 76797999.13246937, "huf": 3040538466.294905, "idr": 142523579994.58145, "ils": 32933045.52428055, "inr": 716137019.7301427, "jpy": 1085116807.8565037, "krw": 11159655374.901491, "kwd": 2985808.495838872, "lkr": 1966831314.4652846, "ltc": 53782.65930461744, "mmk": 13935848375.004562, "mxn": 203969833.89546472, "myr": 40987810.0093555, "ngn": 3902839864.997969, "nok": 84862015.90023296, "nzd": 14136202.909094175, "php": 479038438.71566385, "pkr": 1528429830.5006964, "pln": 38865844.445318736, "rub": 748303074.7433293, "sar": 37071899.98036564, "sek": 85459094.56609453, "sgd": 13306087.315469261, "thb": 307786811.54965466, "try": 80191392.42756441, "twd": 282777832.13255227, "uah": 276422621.0361544, "usd": 9884917.402473273, "vef": 989776.7795096487, "vnd": 227943202770.7932, "xag": 394875.760951821, "xau": 5708.14440323222, "xdr": 6957340.955052365, "xlm": 24911895.554080434, "xrp": 17967370.22863106, "yfi": 303.20957422308066, "zar": 148347897.9176176, "bits": 177445585.35733134, "link": 370820.16519334464, "sats": 17744558535.73313}, "total_volume": {"aed": 658647.2568561888, "ars": 16483593.674558243, "aud": 234792.48812540722, "bch": 362.09245718349655, "bdt": 15166867.255778817, "bhd": 67541.07197737608, "bmd": 179322.8955047225, "bnb": 667.7805406764351, "brl": 1031887.2417162849, "btc": 3.2198854278604885, "cad": 225633.5712375035, "chf": 168453.05887080813, "clp": 131425598.40824158, "cny": 1173040.7209441408, "czk": 3965008.5425049057, "dkk": 1131206.6619747411, "dot": 5579.864083896229, "eos": 43741.78883185741, "eth": 106.36985501018128, "eur": 152118.177673492, "gbp": 130028.46611363812, "hkd": 1393181.0939236477, "huf": 55153745.287176795, "idr": 2585529044.069963, "ils": 597440.4075167249, "inr": 12991485.788642002, "jpy": 19684274.239553366, "krw": 202447995.58582702, "kwd": 54165.735847469776, "lkr": 35680408.03163692, "ltc": 976.4730256195245, "mmk": 252811083.812934, "mxn": 3698808.7251692363, "myr": 743562.3862103305, "ngn": 70801658.40410402, "nok": 1541671.0314523946, "nzd": 256465.09463031683, "php": 8689899.468617143, "pkr": 27727339.705701504, "pln": 704963.1329529386, "rub": 13575765.330211844, "sar": 672523.6211561345, "sek": 1550264.3639278756, "sgd": 241365.0308914461, "thb": 5583342.62230611, "try": 1453433.5868132361, "twd": 5129890.071703589, "uah": 5014599.795725697, "usd": 179322.8955047225, "vef": 17955.60152688785, "vnd": 4134668871.0716443, "xag": 7163.279007784469, "xau": 103.58766381725782, "xdr": 126213.55083467068, "xlm": 452019.59590334806, "xrp": 325967.1703445572, "yfi": 5.502840951566636, "zar": 2690751.5237136716, "bits": 3219885.4278604886, "link": 6728.772735640481, "sats": 321988542.7860488}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "QQQ_20210403": {"id": "qqq-token", "symbol": "qqq", "name": "Poseidon Network", "localization": {"en": "Poseidon Network", "de": "Poseidon Network", "es": "Poseidon Network", "fr": "Poseidon Network", "it": "Poseidon Network", "pl": "Poseidon Network", "ro": "Poseidon Network", "hu": "Poseidon Network", "nl": "Poseidon Network", "pt": "Poseidon Network", "sv": "Poseidon Network", "vi": "Poseidon Network", "tr": "Poseidon Network", "ru": "Poseidon Network", "ja": "Poseidon Network", "zh": "Poseidon Network", "zh-tw": "Poseidon Network", "ko": "Poseidon Network", "ar": "Poseidon Network", "th": "Poseidon Network", "id": "Poseidon Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8442/thumb/LNBLzKy2_400x400.jpg?1558562627", "small": "https://assets.coingecko.com/coins/images/8442/small/LNBLzKy2_400x400.jpg?1558562627"}, "market_data": {"current_price": {"aed": 0.10680608364090434, "ars": 2.6737663772571056, "aud": 0.03821914330123771, "bch": 5.543965885926241e-05, "bdt": 2.464066827479036, "bhd": 0.010962481982410966, "bmd": 0.029077121757841735, "bnb": 9.397538003143082e-05, "brl": 0.16787676246889943, "btc": 4.955164130698587e-07, "cad": 0.03670346925248847, "chf": 0.027382826950134075, "clp": 21.205944897993973, "cny": 0.19109484419253608, "czk": 0.648823987192303, "dkk": 0.18446895322621115, "dot": 0.0008570984564432998, "eos": 0.006705595423665773, "eth": 1.5801881421831698e-05, "eur": 0.0248003133040896, "gbp": 0.021151250831967505, "hkd": 0.22607026009895603, "huf": 9.017716847881202, "idr": 423.12736810793706, "ils": 0.0970146536601688, "inr": 2.135585112690289, "jpy": 3.2080885358196762, "krw": 32.96650701929497, "kwd": 0.008786262958688815, "lkr": 5.786174918786991, "ltc": 0.0001485785174948214, "mmk": 40.9975652763648, "mxn": 0.5983453768926472, "myr": 0.12069913241680112, "ngn": 11.40194435413423, "nok": 0.24847316471411127, "nzd": 0.04160470889599031, "php": 1.410815318106722, "pkr": 4.450547512892892, "pln": 0.11550749955830371, "rub": 2.2079276249990736, "sar": 0.10904871481072143, "sek": 0.2539200365473991, "sgd": 0.03917560614434018, "thb": 0.9101139110204458, "try": 0.24217462398453646, "twd": 0.8274185476640232, "uah": 0.810858806974594, "usd": 0.029077121757841735, "vef": 0.0029114922016126948, "vnd": 671.3635652417985, "xag": 0.001210463132505897, "xau": 1.7251456338927483e-05, "xdr": 0.0205003013071747, "xlm": 0.07220486509273906, "xrp": 0.05129906894652311, "yfi": 8.188699551074521e-07, "zar": 0.4335631471068269, "bits": 0.4955164130698587, "link": 0.001047146065640335, "sats": 49.55164130698587}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 1373461.6253837298, "ars": 34383018.169177555, "aud": 491475.0629353493, "bch": 712.9204757995687, "bdt": 31686408.81264722, "bhd": 140970.88675607703, "bmd": 373914.19617329, "bnb": 1208.4665386475342, "brl": 2158793.611606492, "btc": 6.372041319176315, "cad": 471984.4115456206, "chf": 352126.5898764689, "clp": 272695623.26918036, "cny": 2457364.097250865, "czk": 8343483.981991156, "dkk": 2372159.147626265, "dot": 11021.76766501775, "eos": 86229.90073035986, "eth": 203.20263604757866, "eur": 318917.0266291419, "gbp": 271992.2906661788, "hkd": 2907126.788117907, "huf": 115962383.57341842, "idr": 5441161991.294098, "ils": 1247549.7589643374, "inr": 27462332.669012606, "jpy": 41254077.90061812, "krw": 423929337.82850987, "kwd": 112986.02657187948, "lkr": 74406709.22295848, "ltc": 1910.6298553333463, "mmk": 527203888.78379065, "mxn": 7694359.589579436, "myr": 1552117.8283153279, "ngn": 146622107.0123253, "nok": 3195214.589272557, "nzd": 535011.3884525908, "php": 18142231.54589133, "pkr": 57231348.74467374, "pln": 1485356.5703311749, "rub": 28392613.615124494, "sar": 1402300.5055919876, "sek": 3265258.06607072, "sgd": 503774.59650427377, "thb": 11703514.340223972, "try": 3114219.1656684806, "twd": 10640101.992392952, "uah": 10427153.744616117, "usd": 373914.19617329, "vef": 37440.02846283156, "vnd": 8633329320.833515, "xag": 15565.823638176364, "xau": 221.84329258961276, "xdr": 263621.47355644737, "xlm": 928510.8861805154, "xrp": 659674.9942901201, "yfi": 10.530172263418274, "zar": 5575359.796300697, "bits": 6372041.319176314, "link": 13465.664953730673, "sats": 637204131.9176315}}, "community_data": {"facebook_likes": null, "twitter_followers": 1783, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 49, "reddit_accounts_active_48h": "3.08333333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 3572910, "bing_matches": null}}, "HTDF_20210411": {"id": "orient-walt", "symbol": "htdf", "name": "Orient Walt", "localization": {"en": "Orient Walt", "de": "Orient Walt", "es": "Orient Walt", "fr": "Orient Walt", "it": "Orient Walt", "pl": "Orient Walt", "ro": "Orient Walt", "hu": "Orient Walt", "nl": "Orient Walt", "pt": "Orient Walt", "sv": "Orient Walt", "vi": "Orient Walt", "tr": "Orient Walt", "ru": "Orient Walt", "ja": "Orient Walt", "zh": "Orient Walt", "zh-tw": "Orient Walt", "ko": "Orient Walt", "ar": "Orient Walt", "th": "Orient Walt", "id": "Orient Walt"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/10428/thumb/ljNSTB1aq9SOWE49wMCrB4lWtLJbMoZQqlvcWXQwlkGDE5cwp4BME45KtQ6g9bVQN8G5Ix_9Aq0rpu8eu3kErjMLAQViiuLdfLPhqgxmSdcsLcMZHlUR1Yi5kkUnIGnf6mUf10HLMWvuznxpD8dEAomxyqBAgPf0eq9uvvdrmysbvKoJ8A_TBFle-M6UJx8KtH4NguXTR1guR1nuKigdrUJ.jpg?1579215445", "small": "https://assets.coingecko.com/coins/images/10428/small/ljNSTB1aq9SOWE49wMCrB4lWtLJbMoZQqlvcWXQwlkGDE5cwp4BME45KtQ6g9bVQN8G5Ix_9Aq0rpu8eu3kErjMLAQViiuLdfLPhqgxmSdcsLcMZHlUR1Yi5kkUnIGnf6mUf10HLMWvuznxpD8dEAomxyqBAgPf0eq9uvvdrmysbvKoJ8A_TBFle-M6UJx8KtH4NguXTR1guR1nuKigdrUJ.jpg?1579215445"}, "market_data": {"current_price": {"aed": 0.27639477533944, "ars": 6.941001494116995, "aud": 0.09881331432707209, "bch": 0.00012127593154381282, "bdt": 6.3834667601313395, "bhd": 0.028368162877619018, "bmd": 0.07524631801683528, "bnb": 0.00019940790771476617, "brl": 0.42240273081930696, "btc": 1.3390686233898582e-06, "cad": 0.09491141650630919, "chf": 0.06993701306388543, "clp": 53.70327015518721, "cny": 0.4922990356251447, "czk": 1.6395119247416183, "dkk": 0.4713579853210598, "dot": 0.0018916567265649421, "eos": 0.012744890767771438, "eth": 3.796063219000145e-05, "eur": 0.06337869447817406, "gbp": 0.05475463872394666, "hkd": 0.5857963480769635, "huf": 22.756992646912625, "idr": 1096.0943029717357, "ils": 0.24778236291353753, "inr": 5.59845021687728, "jpy": 8.265582295195305, "krw": 84.17200533375569, "kwd": 0.022719271291459182, "lkr": 15.078812079989119, "ltc": 0.00034180324228447526, "mmk": 106.14632799384154, "mxn": 1.520812062011149, "myr": 0.31088016288655523, "ngn": 29.93166766882228, "nok": 0.638075307691839, "nzd": 0.10726325010140873, "php": 3.658922117398055, "pkr": 11.523663213216517, "pln": 0.28986010394855233, "rub": 5.808489026673566, "sar": 0.28220619897251586, "sek": 0.649151490457599, "sgd": 0.10086768930156781, "thb": 2.3602761637653384, "try": 0.614243218603229, "twd": 2.134339311898443, "uah": 2.1037242939648486, "usd": 0.07524631801683528, "vef": 0.007534413823025724, "vnd": 1740.1684931913398, "xag": 0.00299077326427707, "xau": 4.3317800355931776e-05, "xdr": 0.052784690118265816, "xlm": 0.15771942454488003, "xrp": 0.08156086254766778, "yfi": 1.7062078481035582e-06, "zar": 1.096688748884069, "bits": 1.339068623389858, "link": 0.0024043418623883876, "sats": 133.9068623389858}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 6684937.122860355, "ars": 167876395.2787021, "aud": 2389917.7991576702, "bch": 2933.2029735043257, "bdt": 154391753.1181274, "bhd": 686117.8359650561, "bmd": 1819921.899940199, "bnb": 4822.917955801664, "brl": 10216313.577504313, "btc": 32.386970917098346, "cad": 2295545.749036274, "chf": 1691510.0306023196, "clp": 1298877606.635359, "cny": 11906839.03035875, "czk": 39653550.30903705, "dkk": 11400354.765605401, "dot": 45751.972914800695, "eos": 308250.37599080155, "eth": 918.1231411575734, "eur": 1532889.2776473304, "gbp": 1324306.208773287, "hkd": 14168182.987129448, "huf": 550404995.0407958, "idr": 26510347335.953903, "ils": 5992911.820408074, "inr": 135405192.2266859, "jpy": 199912960.94273105, "krw": 2035800287.7232075, "kwd": 549492.659092746, "lkr": 364699045.11892813, "ltc": 8266.91886724486, "mmk": 2567275476.1370096, "mxn": 36782652.63063179, "myr": 7519007.329602939, "ngn": 723933063.1438214, "nok": 15432611.94547282, "nzd": 2594289.5687552574, "php": 88495393.09203728, "pkr": 278713531.79800457, "pln": 7010612.1468546465, "rub": 140485231.2220838, "sar": 6825493.331036528, "sek": 15700502.629222116, "sgd": 2439605.30686984, "thb": 57086092.629573174, "try": 14856204.461401863, "twd": 51621540.5351556, "uah": 50881079.83125851, "usd": 1819921.899940199, "vef": 182228.77984101232, "vnd": 42088049406.43465, "xag": 72335.4166006593, "xau": 1047.692639357575, "xdr": 1276660.6534328503, "xlm": 3814632.2948449454, "xrp": 1972646.686782773, "yfi": 41.26667072159957, "zar": 26524724.71896344, "bits": 32386970.917098347, "link": 58151.87408006632, "sats": 3238697091.709835}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 4972858, "bing_matches": null}}, "XDEX_20210425": {"id": "xdefi-governance-token", "symbol": "xdex", "name": "XDEFI Governance Token", "localization": {"en": "XDEFI Governance Token", "de": "XDEFI Governance Token", "es": "XDEFI Governance Token", "fr": "XDEFI Governance Token", "it": "XDEFI Governance Token", "pl": "XDEFI Governance Token", "ro": "XDEFI Governance Token", "hu": "XDEFI Governance Token", "nl": "XDEFI Governance Token", "pt": "XDEFI Governance Token", "sv": "XDEFI Governance Token", "vi": "XDEFI Governance Token", "tr": "XDEFI Governance Token", "ru": "XDEFI Governance Token", "ja": "XDEFI Governance Token", "zh": "XDEFI Governance Token", "zh-tw": "XDEFI Governance Token", "ko": "XDEFI Governance Token", "ar": "XDEFI Governance Token", "th": "XDEFI Governance Token", "id": "XDEFI Governance Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14485/thumb/logo.png?1616472896", "small": "https://assets.coingecko.com/coins/images/14485/small/logo.png?1616472896"}, "market_data": {"current_price": {"aed": 0.8998302128476241, "ars": 22.768506861804916, "aud": 0.3158053247556662, "bch": 0.0002672851916036148, "bdt": 20.772897212053334, "bhd": 0.09235802235019791, "bmd": 0.2449717447586909, "bnb": 0.00044381548447753455, "brl": 1.3643456352590535, "btc": 4.526553246308216e-06, "cad": 0.30625975574939895, "chf": 0.22455261491781964, "clp": 171.03922221628187, "cny": 1.5901115952286617, "czk": 5.262556512429632, "dkk": 1.5133374504212902, "dot": 0.007194183891367386, "eos": 0.038360790789410765, "eth": 0.00010329527679657524, "eur": 0.20349802837104428, "gbp": 0.1758262650548475, "hkd": 1.901809968683447, "huf": 73.75609291194678, "idr": 3554.638005146506, "ils": 0.8003998562262428, "inr": 18.4781599139293, "jpy": 26.46205201113785, "krw": 273.4520608357514, "kwd": 0.07378108002991193, "lkr": 47.03576923092451, "ltc": 0.0009435589073538488, "mmk": 345.41804477033065, "mxn": 4.874386534272222, "myr": 1.0095285601505637, "ngn": 93.2117488806819, "nok": 2.0433299006587986, "nzd": 0.339955374269212, "php": 11.862550228758787, "pkr": 37.54286082074096, "pln": 0.927359647580117, "rub": 18.764345705026198, "sar": 0.9189213508601559, "sek": 2.0589875146967977, "sgd": 0.32542046573744465, "thb": 7.674229113140264, "try": 2.008455968046699, "twd": 6.857983994519533, "uah": 6.861412374087463, "usd": 0.2449717447586909, "vef": 0.02452902080268771, "vnd": 5638.532517839804, "xag": 0.00923246327013871, "xau": 0.00013652765278891334, "xdr": 0.1708315361509626, "xlm": 0.4953938549430793, "xrp": 0.18708924981020275, "yfi": 5.3439448284859515e-06, "zar": 3.490357419321828, "bits": 4.526553246308215, "link": 0.006709044069118748, "sats": 452.65532463082155}, "market_cap": {"aed": 7836026.976963509, "ars": 198293380.47259086, "aud": 2751097.831173136, "bch": 2318.955927251819, "bdt": 180897441.11637726, "bhd": 804285.0132636111, "bmd": 2133297.1188510046, "bnb": 3852.4096527789216, "brl": 11881184.973728785, "btc": 39.361749454839696, "cad": 2667577.1156730005, "chf": 1955793.9987798866, "clp": 1489467613.189158, "cny": 13847231.598461874, "czk": 45833643.26934521, "dkk": 13179294.137252498, "dot": 62181.545868487185, "eos": 332166.7288376529, "eth": 895.2691043581997, "eur": 1772283.5140220877, "gbp": 1531306.2714766774, "hkd": 16561291.125057515, "huf": 642218431.1445011, "idr": 30954994513.3756, "ils": 6970153.675878662, "inr": 160908297.78194508, "jpy": 230460087.74947408, "krw": 2381976404.5145316, "kwd": 642506.4262555457, "lkr": 409603446.6428475, "ltc": 8179.256346237048, "mmk": 3008017599.8809834, "mxn": 42456601.930747055, "myr": 8791317.426784992, "ngn": 811719553.7228072, "nok": 17793592.339058917, "nzd": 2961073.9999874015, "php": 103310670.74928378, "pkr": 326935977.4581498, "pln": 8076502.894685969, "rub": 163399892.8183927, "sar": 8000284.4552236935, "sek": 17931541.997249424, "sgd": 2834298.552105443, "thb": 66815932.41097291, "try": 17479809.932441335, "twd": 59721652.84223368, "uah": 59751508.33541197, "usd": 2133297.1188510046, "vef": 213607.04051055113, "vnd": 49113562235.342316, "xag": 80459.32746972847, "xau": 1189.206478903491, "xdr": 1487659.0124249847, "xlm": 4302261.975485428, "xrp": 1619748.2968171476, "yfi": 46.12637539586692, "zar": 30399242.881052386, "bits": 39361749.454839684, "link": 58145.78444143317, "sats": 3936174945.483969}, "total_volume": {"aed": 43543.68440490601, "ars": 1101790.8300988073, "aud": 15282.135672052846, "bch": 12.934197877687284, "bdt": 1005221.2822624726, "bhd": 4469.29711856573, "bmd": 11854.427857156152, "bnb": 21.476675392953, "brl": 66022.0505076455, "btc": 0.2190444410345942, "cad": 14820.216036170894, "chf": 10866.32573197861, "clp": 8276759.111563134, "cny": 76947.09122080055, "czk": 254660.37555578593, "dkk": 73231.9135303679, "dot": 348.13375728428366, "eos": 1856.3170516031403, "eth": 4.998561805469343, "eur": 9847.473220939604, "gbp": 8508.408904623111, "hkd": 92030.4874098281, "huf": 3569131.13923258, "idr": 172012489.97847852, "ils": 38732.149954104185, "inr": 894176.6482026023, "jpy": 1280525.1757803736, "krw": 13232618.850640273, "kwd": 3570.3402908739986, "lkr": 2276107.9389097923, "ltc": 45.659759688699616, "mmk": 16715124.82520517, "mxn": 235876.4418947279, "myr": 48852.09719934044, "ngn": 4510609.799647916, "nok": 98878.77852847938, "nzd": 16450.780733494863, "php": 574040.6757001036, "pkr": 1816736.601966578, "pln": 44875.861298637545, "rub": 908025.4650024466, "sar": 44467.523676669785, "sek": 99636.4661393975, "sgd": 15747.421965446216, "thb": 371363.6259178466, "try": 97191.19403316262, "twd": 331864.7078610856, "uah": 332030.61057894805, "usd": 11854.427857156152, "vef": 1186.983861337045, "vnd": 272854230.6738404, "xag": 446.7681360048789, "xau": 6.606709733350254, "xdr": 8266.708975043557, "xlm": 23972.604351110047, "xrp": 9053.436007116617, "yfi": 0.25859883761007485, "zar": 168901.88810876085, "bits": 219044.4410345942, "link": 324.65735583584274, "sats": 21904444.103459418}}, "community_data": {"facebook_likes": null, "twitter_followers": 25256, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 573823, "bing_matches": null}}, "QQQ_20210515": {"id": "qqq-token", "symbol": "qqq", "name": "Poseidon Network", "localization": {"en": "Poseidon Network", "de": "Poseidon Network", "es": "Poseidon Network", "fr": "Poseidon Network", "it": "Poseidon Network", "pl": "Poseidon Network", "ro": "Poseidon Network", "hu": "Poseidon Network", "nl": "Poseidon Network", "pt": "Poseidon Network", "sv": "Poseidon Network", "vi": "Poseidon Network", "tr": "Poseidon Network", "ru": "Poseidon Network", "ja": "Poseidon Network", "zh": "Poseidon Network", "zh-tw": "Poseidon Network", "ko": "Poseidon Network", "ar": "Poseidon Network", "th": "Poseidon Network", "id": "Poseidon Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8442/thumb/LNBLzKy2_400x400.jpg?1558562627", "small": "https://assets.coingecko.com/coins/images/8442/small/LNBLzKy2_400x400.jpg?1558562627"}, "market_data": {"current_price": {"aed": 0.12450515090162186, "ars": 3.182667156867019, "aud": 0.04323252566820077, "bch": 2.1866123869522916e-05, "bdt": 2.8767272036008933, "bhd": 0.012777098758064036, "bmd": 0.0338955545305515, "bnb": 5.0358585337921173e-05, "brl": 0.17702970220216419, "btc": 5.975109265942354e-07, "cad": 0.041005147093334644, "chf": 0.030635751260239274, "clp": 23.81160024632881, "cny": 0.21792129918782166, "czk": 0.7120913677996392, "dkk": 0.20750095833626708, "dot": 0.0008761296937522125, "eos": 0.0023916578779819187, "eth": 8.095966767392311e-06, "eur": 0.027906210045003058, "gbp": 0.023975173108322353, "hkd": 0.26331558163731744, "huf": 10.007663695385311, "idr": 480.90673812401155, "ils": 0.11149298647288805, "inr": 2.487098177123299, "jpy": 3.6843281430300903, "krw": 37.93762374532791, "kwd": 0.01020222295815072, "lkr": 6.666400628587578, "ltc": 8.96743497639467e-05, "mmk": 52.847969937144626, "mxn": 0.6767111879806502, "myr": 0.1395988413340761, "ngn": 13.867035498390946, "nok": 0.28003998719823714, "nzd": 0.04665597667578651, "php": 1.6217700916242175, "pkr": 5.167732784758493, "pln": 0.1267039555240187, "rub": 2.5151145477205294, "sar": 0.127120159038099, "sek": 0.281987219014908, "sgd": 0.044948352534091865, "thb": 1.0566386966316117, "try": 0.28113989794275324, "twd": 0.9467705952518116, "uah": 0.938623832615944, "usd": 0.0338955545305515, "vef": 0.00339396187514412, "vnd": 782.6061631273669, "xag": 0.001229213133250729, "xau": 1.846155273061019e-05, "xdr": 0.023591543222145555, "xlm": 0.04659145100326425, "xrp": 0.0229360945703756, "yfi": 4.107964187537276e-07, "zar": 0.4741864699005662, "bits": 0.5975109265942353, "link": 0.0006936587248004096, "sats": 59.751092659423534}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 1444577.3644558697, "ars": 36927058.03826566, "aud": 501607.5843953431, "bch": 253.70281760679774, "bdt": 33377374.124223076, "bhd": 148246.94011174503, "bmd": 393274.90048346634, "bnb": 584.2880552199912, "brl": 2053996.150245046, "btc": 6.932651005379741, "cad": 475764.310859873, "chf": 355452.8667541701, "clp": 276275306.509189, "cny": 2528442.9901883015, "czk": 8262076.419316867, "dkk": 2407540.4539071745, "dot": 10165.339463924241, "eos": 27749.332529906056, "eth": 93.93386740122045, "eur": 323783.22556803795, "gbp": 278173.16898446804, "hkd": 3055132.467911779, "huf": 116114428.52564007, "idr": 5579744960.569372, "ils": 1293603.0629092674, "inr": 28856683.46918948, "jpy": 42747605.22040109, "krw": 440173214.7374982, "kwd": 118371.81229651882, "lkr": 77347253.3522832, "ltc": 1040.45121750548, "mmk": 613171267.0182302, "mxn": 7851576.078192234, "myr": 1619702.6776411533, "ngn": 160892986.74004206, "nok": 3249178.236559329, "nzd": 541328.3493441737, "php": 18816670.21602195, "pkr": 59958883.245860726, "pln": 1470089.1072502316, "rub": 29181744.838184126, "sar": 1474918.1297532644, "sek": 3271771.0930423, "sgd": 521515.55313271715, "thb": 12259704.377759164, "try": 3261940.0070800143, "twd": 10984954.127029302, "uah": 10890430.897972953, "usd": 393274.90048346634, "vef": 39378.61578540947, "vnd": 9080227929.130001, "xag": 14262.008081809803, "xau": 214.2011072973249, "xdr": 273722.083660796, "xlm": 540579.6869372214, "xrp": 266117.2072436094, "yfi": 4.766286403685162, "zar": 5501772.705699916, "bits": 6932651.005379741, "link": 8048.210738652597, "sats": 693265100.5379741}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 49, "reddit_accounts_active_48h": "2.58333333333333"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1623861, "bing_matches": null}}, "QQQ_20210522": {"id": "qqq-token", "symbol": "qqq", "name": "Poseidon Network", "localization": {"en": "Poseidon Network", "de": "Poseidon Network", "es": "Poseidon Network", "fr": "Poseidon Network", "it": "Poseidon Network", "pl": "Poseidon Network", "ro": "Poseidon Network", "hu": "Poseidon Network", "nl": "Poseidon Network", "pt": "Poseidon Network", "sv": "Poseidon Network", "vi": "Poseidon Network", "tr": "Poseidon Network", "ru": "Poseidon Network", "ja": "Poseidon Network", "zh": "Poseidon Network", "zh-tw": "Poseidon Network", "ko": "Poseidon Network", "ar": "Poseidon Network", "th": "Poseidon Network", "id": "Poseidon Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/8442/thumb/LNBLzKy2_400x400.jpg?1558562627", "small": "https://assets.coingecko.com/coins/images/8442/small/LNBLzKy2_400x400.jpg?1558562627"}, "market_data": {"current_price": {"aed": 0.11105302358699255, "ars": 2.8441631085478734, "aud": 0.0387951215260854, "bch": 2.747337628442272e-05, "bdt": 2.563518132010645, "bhd": 0.011395965477714168, "bmd": 0.03023331797533288, "bnb": 5.922851625487567e-05, "brl": 0.159054432303111, "btc": 7.066685241149171e-07, "cad": 0.036487684464890056, "chf": 0.027132135384013156, "clp": 21.538173550148574, "cny": 0.19425511465510933, "czk": 0.6283390474813435, "dkk": 0.18390401264662268, "dot": 0.000738540228614523, "eos": 0.003233721712591923, "eth": 8.893262997371905e-06, "eur": 0.02473073317055044, "gbp": 0.02130747504283943, "hkd": 0.23477834240334633, "huf": 8.674534825820277, "idr": 432.9909983814268, "ils": 0.09836500703228514, "inr": 2.211239178395572, "jpy": 3.2907584536298624, "krw": 34.11224904356996, "kwd": 0.009091037781910723, "lkr": 5.955696378609682, "ltc": 0.00010238760276908318, "mmk": 49.76174670879699, "mxn": 0.5999620854630144, "myr": 0.12469731998926088, "ngn": 12.395429508270446, "nok": 0.24886102191625675, "nzd": 0.04174885622563951, "php": 1.4445616890210884, "pkr": 4.621885198595924, "pln": 0.1118254848612629, "rub": 2.2285281012797666, "sar": 0.11339072419948155, "sek": 0.2503763158131802, "sgd": 0.04020517324313698, "thb": 0.9493453221157342, "try": 0.252760515268715, "twd": 0.8459463769405989, "uah": 0.8290729203120252, "usd": 0.03023331797533288, "vef": 0.0030272621288700815, "vnd": 695.6399686172451, "xag": 0.0010729257326390301, "xau": 1.616091779053447e-05, "xdr": 0.02097678301082521, "xlm": 0.04654573871165973, "xrp": 0.01891145240848637, "yfi": 4.1192664041239694e-07, "zar": 0.42355472634155583, "bits": 0.706668524114917, "link": 0.0007089150274113767, "sats": 70.6668524114917}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 1111522.742690096, "ars": 28467050.035739906, "aud": 388297.93632670434, "bch": 274.97929882744194, "bdt": 25658092.080637503, "bhd": 114061.50318336899, "bmd": 302603.38198031625, "bnb": 592.8145016377144, "brl": 1591965.8296568661, "btc": 7.073000902867596, "cad": 365202.94361058495, "chf": 271563.8400736858, "clp": 215574227.19105953, "cny": 1944287.249899933, "czk": 6289006.087696916, "dkk": 1840683.7195978041, "dot": 7392.002792733832, "eos": 32366.117652448043, "eth": 89.01211114310428, "eur": 247528.35604637125, "gbp": 213265.18031150382, "hkd": 2349881.692937246, "huf": 86822874.60281138, "idr": 4333779725.5384035, "ils": 984529.181374422, "inr": 22132154.145165693, "jpy": 32936994.81350916, "krw": 341427359.5759853, "kwd": 90991.62654795346, "lkr": 59610191.236225665, "ltc": 1024.7910896204119, "mmk": 498062199.4455125, "mxn": 6004982.855973577, "myr": 1248087.6489778187, "ngn": 124065075.93250513, "nok": 2490834.348263681, "nzd": 417861.6815394176, "php": 14458527.27555836, "pkr": 46260158.85391731, "pln": 1119254.2590996989, "rub": 22305197.88915114, "sar": 1134920.6413915812, "sek": 2506000.829768532, "sgd": 402411.05545888457, "thb": 9501937.742122758, "try": 2529864.1324715004, "twd": 8467024.189838436, "uah": 8298138.821528198, "usd": 302603.38198031625, "vef": 30299.676637689074, "vnd": 6962616783.113489, "xag": 10738.846314360057, "xau": 161.75361180375862, "xdr": 209955.30451940285, "xlm": 465873.377259225, "xrp": 189283.54015384128, "yfi": 4.12294788875909, "zar": 4239332.670971617, "bits": 7073000.902867597, "link": 7095.486013357066, "sats": 707300090.2867596}}, "community_data": {"facebook_likes": null, "twitter_followers": 1839, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 50, "reddit_accounts_active_48h": "4.61538461538461"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1659581, "bing_matches": null}}, "DEP_20210529": {"id": "depth-token", "symbol": "dep", "name": "Depth Token", "localization": {"en": "Depth Token", "de": "Depth Token", "es": "Depth Token", "fr": "Depth Token", "it": "Depth Token", "pl": "Depth Token", "ro": "Depth Token", "hu": "Depth Token", "nl": "Depth Token", "pt": "Depth Token", "sv": "Depth Token", "vi": "Depth Token", "tr": "Depth Token", "ru": "Depth Token", "ja": "Depth Token", "zh": "Depth Token", "zh-tw": "Depth Token", "ko": "Depth Token", "ar": "Depth Token", "th": "Depth Token", "id": "Depth Token"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14574/thumb/depth_icon_round__500.png?1617086437", "small": "https://assets.coingecko.com/coins/images/14574/small/depth_icon_round__500.png?1617086437"}, "market_data": {"current_price": {"aed": 0.1576096222450506, "ars": 4.042739158331135, "aud": 0.05537228678029847, "bch": 5.9886235169425975e-05, "bdt": 3.6366748208745254, "bhd": 0.01617502431060557, "bmd": 0.0429079881969536, "bnb": 0.00012516924028005454, "brl": 0.22877252066969733, "btc": 1.122145232571746e-06, "cad": 0.051771233870869196, "chf": 0.038432041408188365, "clp": 31.494463336563967, "cny": 0.2750831123306698, "czk": 0.8905147898869155, "dkk": 0.26051752374934384, "dot": 0.0019515972403784559, "eos": 0.007602109371399523, "eth": 1.591518359532812e-05, "eur": 0.03503377165097792, "gbp": 0.030345129964720354, "hkd": 0.333092566973541, "huf": 12.218507596040544, "idr": 615.3112777413644, "ils": 0.13916562351858985, "inr": 3.1239227743253712, "jpy": 4.668640433922548, "krw": 48.15905573535214, "kwd": 0.012900801547272486, "lkr": 8.556302736728798, "ltc": 0.0002354508280846533, "mmk": 70.59346372426657, "mxn": 0.854255780632973, "myr": 0.17774634110588086, "ngn": 17.699545131243386, "nok": 0.3565010199343892, "nzd": 0.059394653225833746, "php": 2.064887375690774, "pkr": 6.620702578789952, "pln": 0.15705301982215927, "rub": 3.1538400687397754, "sar": 0.16090538481845815, "sek": 0.35434699601891384, "sgd": 0.056883377400630604, "thb": 1.3451654299744966, "try": 0.36290718257219484, "twd": 1.194326688266924, "uah": 1.177926482834259, "usd": 0.0429079881969536, "vef": 0.004296376858160973, "vnd": 989.660323111134, "xag": 0.0015337408891415258, "xau": 2.261122254014861e-05, "xdr": 0.029673963213343594, "xlm": 0.10050947844796071, "xrp": 0.044331688983687556, "yfi": 9.171402050280343e-07, "zar": 0.595104833399714, "bits": 1.1221452325717458, "link": 0.0015664543743199673, "sats": 112.21452325717459}, "market_cap": {"aed": 106197269.7662015, "ars": 2723885378.150571, "aud": 37305159.180791445, "bch": 40243.084591876875, "bdt": 2450389332.219178, "bhd": 10899444.548488852, "bmd": 28911376.937330242, "bnb": 84385.68089787597, "brl": 154149679.55445746, "btc": 756.7670981298799, "cad": 34882154.50242772, "chf": 25894041.083265774, "clp": 21220928034.39228, "cny": 185350837.54522395, "czk": 599989132.1673332, "dkk": 175531204.0139681, "dot": 1313307.5812684433, "eos": 5109648.736715354, "eth": 10728.58561794165, "eur": 23605387.57352978, "gbp": 20443899.59405579, "hkd": 224417335.63179147, "huf": 8233722182.208071, "idr": 414596373125.5505, "ils": 93769714.38969018, "inr": 2104894388.0480638, "jpy": 3145526008.2669034, "krw": 32449216482.08716, "kwd": 8692176.564831393, "lkr": 5765231697.090839, "ltc": 158979.44860244362, "mmk": 47565833887.98744, "mxn": 575486740.2129465, "myr": 119765378.96289074, "ngn": 11925942986.648762, "nok": 240200085.2132572, "nzd": 40014617.78185031, "php": 1392243488.9654725, "pkr": 4461025461.430058, "pln": 105830962.62040547, "rub": 2125055563.2870443, "sar": 108412343.82163218, "sek": 238749919.45745766, "sgd": 38318127.09454468, "thb": 906163129.2234561, "try": 244520861.58516467, "twd": 804875387.1091113, "uah": 793686163.8295805, "usd": 28911376.937330242, "vef": 2894896.1727348766, "vnd": 666753457637.4487, "xag": 1032892.767397144, "xau": 15227.044005353102, "xdr": 19994298.771303326, "xlm": 67309037.47914134, "xrp": 29725401.12790106, "yfi": 618.233061929912, "zar": 400955060.32245606, "bits": 756767098.1298798, "link": 1059720.888785147, "sats": 75676709812.98799}, "total_volume": {"aed": 301070.09312738874, "ars": 7722547.88477369, "aud": 105773.61521558023, "bch": 114.39627950808043, "bdt": 6946872.985282508, "bhd": 30897.96172444491, "bmd": 81963.98048769124, "bnb": 239.1016125221626, "brl": 437007.3547662231, "btc": 2.143551674450131, "cad": 98894.78815315085, "chf": 73413.9078631177, "clp": 60161561.677965425, "cny": 525471.0789065891, "czk": 1701085.0410244542, "dkk": 497647.50412625715, "dot": 3727.992964759154, "eos": 14521.751551775722, "eth": 30.401607077866057, "eur": 66922.4425724732, "gbp": 57966.074496622095, "hkd": 636282.2823269229, "huf": 23340118.245433792, "idr": 1175383971.1886153, "ils": 265837.8761147541, "inr": 5967400.385787328, "jpy": 8918161.151569497, "krw": 91994709.38789646, "kwd": 24643.45430139027, "lkr": 16344477.101581058, "ltc": 449.76443524591605, "mmk": 134849512.32612512, "mxn": 1631822.116989154, "myr": 339535.78917026205, "ngn": 33810141.951172695, "nok": 680997.7318819831, "nzd": 113457.24660241845, "php": 3944402.794965223, "pkr": 12647042.18925078, "pln": 300006.8563725015, "rub": 6024549.197434499, "sar": 307365.7464686474, "sek": 676883.0580975204, "sgd": 108660.14071641528, "thb": 2569570.7882891227, "try": 693234.9541687963, "twd": 2281434.611282689, "uah": 2250106.502588642, "usd": 81963.98048769124, "vef": 8207.053366232542, "vnd": 1890475476.0485914, "xag": 2929.792646854871, "xau": 43.19255879759859, "xdr": 56683.993913833605, "xlm": 191995.8794740596, "xrp": 84683.57160365174, "yfi": 1.751945617313563, "zar": 1136785.0836774493, "bits": 2143551.6744501307, "link": 2992.2828164834837, "sats": 214355167.44501308}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 4, "stars": 16, "subscribers": 3, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 2302, "deletions": -256}, "commit_count_4_weeks": 22}, "public_interest_stats": {"alexa_rank": 595775, "bing_matches": null}}, "BAS_20210605": {"id": "basis-share", "symbol": "bas", "name": "Basis Share", "localization": {"en": "Basis Share", "de": "Basis Share", "es": "Basis Share", "fr": "Basis Share", "it": "Basis Share", "pl": "Basis Share", "ro": "Basis Share", "hu": "Basis Share", "nl": "Basis Share", "pt": "Basis Share", "sv": "Basis Share", "vi": "Basis Share", "tr": "Basis Share", "ru": "Basis Share", "ja": "Basis Share", "zh": "Basis Share", "zh-tw": "Basis Share", "ko": "Basis Share", "ar": "Basis Share", "th": "Basis Share", "id": "Basis Share"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13251/thumb/BAS.png?1613231139", "small": "https://assets.coingecko.com/coins/images/13251/small/BAS.png?1613231139"}, "market_data": {"current_price": {"aed": 38.648172878880565, "ars": 995.7943950928014, "aud": 13.568294816874507, "bch": 0.015250918007995337, "bdt": 892.2935633131722, "bhd": 3.9669931581991764, "bmd": 10.521663094544403, "bnb": 0.02908235577180254, "brl": 54.200243098926734, "btc": 0.000286835180846957, "cad": 12.700857346370988, "chf": 9.438994483778883, "clp": 7665.026535020641, "cny": 67.14609737045417, "czk": 218.84638370128587, "dkk": 64.04379552869084, "dot": 0.4593320469015913, "eos": 1.6663307492702135, "eth": 0.003997134369635151, "eur": 8.61188654791676, "gbp": 7.432902633183772, "hkd": 81.64442303158147, "huf": 2980.944979630842, "idr": 149950.00767505437, "ils": 34.09744837385909, "inr": 766.5584477771228, "jpy": 1151.9958488954776, "krw": 11656.339644164833, "kwd": 3.164642695598514, "lkr": 2078.283337939324, "ltc": 0.057444123384333835, "mmk": 17320.94746202765, "mxn": 210.08941394095854, "myr": 43.41764275963765, "ngn": 4332.566311738136, "nok": 87.5063992780976, "nzd": 14.506237951774567, "php": 502.4734476060904, "pkr": 1624.5447817976576, "pln": 38.412592842193774, "rub": 773.8830509320727, "sar": 39.46041370479007, "sek": 87.03524972638688, "sgd": 13.915446569015891, "thb": 327.9433934743349, "try": 90.35162532547169, "twd": 290.4768138826359, "uah": 288.7294392058714, "usd": 10.521663094544403, "vef": 1.0535341256567328, "vnd": 242595.96109789127, "xag": 0.37797696329285474, "xau": 0.005541865168527474, "xdr": 7.273594132269261, "xlm": 24.82368486282637, "xrp": 10.403621903443941, "yfi": 0.00023295357736083125, "zar": 144.8201708333093, "bits": 286.83518084695703, "link": 0.3422914672607876, "sats": 28683.5180846957}, "market_cap": {"aed": 15673112.7164914, "ars": 403761255.6163988, "aud": 5503954.112955325, "bch": 6174.565169161954, "bdt": 361854560.0547473, "bhd": 1608529.3563821511, "bmd": 4266882.477537687, "bnb": 11820.562776821329, "brl": 21979991.70653991, "btc": 116.37370911355994, "cad": 5152384.331218596, "chf": 3828268.293259193, "clp": 3108423884.8861976, "cny": 27229963.906902228, "czk": 88775476.76290584, "dkk": 25976353.835001647, "dot": 185975.02954480122, "eos": 673281.2614696606, "eth": 1616.903251190219, "eur": 3492084.8897364824, "gbp": 3014731.6794444295, "hkd": 33109514.616825283, "huf": 1209277162.9589548, "idr": 60809688972.75216, "ils": 13827643.376131611, "inr": 310864810.95603955, "jpy": 467262033.2326741, "krw": 4728463907.722831, "kwd": 1283320.3745916616, "lkr": 842812650.2748283, "ltc": 23235.06043005501, "mmk": 7024217232.197619, "mxn": 85223297.10035567, "myr": 17607290.543559197, "ngn": 1756998975.5622418, "nok": 35506452.916111976, "nzd": 5884786.174722984, "php": 203768825.70968905, "pkr": 658806654.5318185, "pln": 15582940.68909358, "rub": 313835606.54661304, "sar": 16002076.55486216, "sek": 35292707.70528228, "sgd": 5644061.465987746, "thb": 133001888.58476594, "try": 36712683.52498203, "twd": 117797962.26550408, "uah": 117089339.75804684, "usd": 4266882.477537687, "vef": 427242.942475849, "vnd": 98391710474.6767, "xag": 153343.56382834795, "xau": 2247.4523385686475, "xdr": 2949683.0560743664, "xlm": 10157048.330102924, "xrp": 4207108.307159627, "yfi": 94.29713357021556, "zar": 58716996.46164385, "bits": 116373709.11355993, "link": 138209.23213750264, "sats": 11637370911.355993}, "total_volume": {"aed": 579501.9532704969, "ars": 14931231.00076564, "aud": 203446.96173788386, "bch": 228.67670361801285, "bdt": 13379309.403608017, "bhd": 59482.25006629877, "bmd": 157764.87892586732, "bnb": 436.0693072938674, "brl": 812694.2208108227, "btc": 4.300890189257567, "cad": 190440.35182459865, "chf": 141531.03064927456, "clp": 114931638.88588226, "cny": 1006808.1278412099, "czk": 3281446.375706472, "dkk": 960291.3110547967, "dot": 6887.35840665484, "eos": 24985.448264863713, "eth": 59.934196163616896, "eur": 129129.13351691233, "gbp": 111451.10553863208, "hkd": 1224200.2427571064, "huf": 44697156.67288203, "idr": 2248394060.2559457, "ils": 511267.06548626884, "inr": 11494000.484188208, "jpy": 17273361.063835364, "krw": 174778549.37533343, "kwd": 47451.57369404906, "lkr": 31162385.284285933, "ltc": 861.3339059897387, "mmk": 259715327.76458156, "mxn": 3150141.822274052, "myr": 651016.7728875941, "ngn": 64963760.33595628, "nok": 1312096.420812594, "nzd": 217510.75410485128, "php": 7534233.125763335, "pkr": 24358897.306153942, "pln": 575969.5976313476, "rub": 11603827.715828031, "sar": 591680.9286289365, "sek": 1305031.867299171, "sgd": 208652.25615316373, "thb": 4917278.694548128, "try": 1354758.568312208, "twd": 4355493.894945902, "uah": 4329293.25044315, "usd": 157764.87892586732, "vef": 15796.997326847124, "vnd": 3637554451.8583064, "xag": 5667.496603420405, "xau": 83.09633937904346, "xdr": 109062.38750681531, "xlm": 372213.5561352782, "xrp": 155994.93494886567, "yfi": 3.4929737435458725, "zar": 2171475.7935356405, "bits": 4300890.189257567, "link": 5132.4178891221145, "sats": 430089018.9257567}}, "community_data": {"facebook_likes": null, "twitter_followers": 6449, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 286561, "bing_matches": null}}, "BRD_20190414": {"id": "bread", "symbol": "brd", "name": "Bread", "localization": {"en": "Bread", "de": "Bread", "es": "Bread", "fr": "Bread", "it": "Bread", "pl": "Bread", "ro": "Bread", "hu": "Bread", "nl": "Bread", "pt": "Bread", "sv": "Bread", "vi": "Bread", "tr": "Bread", "ru": "Bread", "ja": "\u30d6\u30ec\u30c3\u30c9", "zh": "Bread", "zh-tw": "Bread", "ko": "\ube0c\ub808\ub4dc", "ar": "Bread", "th": "Bread", "id": "Bread"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1440/thumb/bread.png?1547563238", "small": "https://assets.coingecko.com/coins/images/1440/small/bread.png?1547563238"}, "market_data": {"current_price": {"aed": 1.216365653946312, "ars": 14.238029015470708, "aud": 0.46192694902929343, "bch": 0.0010870971619093414, "bdt": 27.932582634955427, "bhd": 0.12486422947991552, "bmd": 0.33114775829078746, "bnb": 0.01813128164057152, "brl": 1.2665779196837024, "btc": 6.239115807484166e-05, "cad": 0.44100569595599776, "chf": 0.3319017817364158, "clp": 219.3540142798439, "cny": 2.224120803784246, "czk": 7.516160014253475, "dkk": 2.1923875764027563, "eos": 0.05664614057230306, "eth": 0.0018668824501763554, "eur": 0.2936369959703989, "gbp": 0.25287038889049435, "hkd": 2.595095702964665, "huf": 94.41022588870338, "idr": 4696.999803596529, "ils": 1.185293728638133, "inr": 22.898933715359597, "jpy": 36.753360111264904, "krw": 376.8130341590872, "kwd": 0.10073481692429938, "lkr": 57.86268464302655, "ltc": 0.0037500699238770152, "mmk": 500.0637011506357, "mxn": 6.230909334775285, "myr": 1.3612159752301092, "ngn": 119.33571765525107, "nok": 2.812641567035005, "nzd": 0.4892049144707386, "php": 17.168144918611585, "pkr": 46.89981789155077, "pln": 1.2569541035322562, "rub": 21.284720852795335, "sar": 1.2418372083662839, "sek": 3.0669226453758203, "sgd": 0.44763891670232075, "thb": 10.511623291424469, "try": 1.8821104055782423, "twd": 10.212596865687882, "uah": 8.88545334560383, "usd": 0.33114775829078746, "vef": 82286.12569107005, "vnd": 7681.921454826861, "xag": 0.021731031866986928, "xau": 0.0002530896087064832, "xdr": 0.23755016900092946, "xlm": 2.6292347800169185, "xrp": 0.9336292994927463, "zar": 4.6053311499987135, "bits": 62.39115807484166, "link": 0.6359952063140679, "sats": 6239.115807484166}, "market_cap": {"aed": 72915169.19360611, "ars": 853500171.8260825, "aud": 27690260.35409898, "bch": 65165.27022409052, "bdt": 1674421652.9251456, "bhd": 7484999.588091935, "bmd": 19850687.780865196, "bnb": 1087373.0554424399, "brl": 75925148.83250675, "btc": 3740.2411740434763, "cad": 26436133.601479467, "chf": 19895887.796942245, "clp": 13149199841.857344, "cny": 133325159.41140293, "czk": 450557015.76863104, "dkk": 131422907.70273831, "eos": 3395910.9926548186, "eth": 111858.66516480621, "eur": 17602101.1224877, "gbp": 15158342.50184873, "hkd": 155563289.4116729, "huf": 5659431086.324675, "idr": 281562155483.7923, "ils": 71052559.30843993, "inr": 1372679030.1843843, "jpy": 2203184101.961418, "krw": 22588097625.84652, "kwd": 6038559.372251398, "lkr": 3468584818.2694383, "ltc": 224790.56243154412, "mmk": 29976372038.032646, "mxn": 373512526.353538, "myr": 81598237.19202462, "ngn": 7153592355.590391, "nok": 168604099.49587342, "nzd": 29325440.90935997, "php": 1029146282.9615269, "pkr": 2811414598.576522, "pln": 75348248.14421901, "rub": 1275914867.5277803, "sar": 74442064.24702258, "sek": 183847005.92766857, "sgd": 26833762.728417993, "thb": 630120382.228004, "try": 112823309.51926206, "twd": 612195211.1618849, "uah": 532639450.93700695, "usd": 19850687.780865196, "vef": 4932650603529.428, "vnd": 460493603048.9205, "xag": 1302669.0289981985, "xau": 15171.483657159662, "xdr": 14239970.282354785, "xlm": 157658223.65570176, "xrp": 55974197.958457, "zar": 276067068.2416051, "bits": 3740241174.0434766, "link": 38126804.03041532, "sats": 374024117404.34766}, "total_volume": {"aed": 658465.6553190541, "ars": 7707594.402807293, "aud": 250058.87844275666, "bch": 588.4876334593653, "bdt": 15120984.606731895, "bhd": 67593.8246230934, "bmd": 179263.05709385264, "bnb": 9815.162248703396, "brl": 685647.491929252, "btc": 33.7747408886297, "cad": 238733.39702168107, "chf": 179671.23907485546, "clp": 118744790.50854371, "cny": 1204002.3966651522, "czk": 4068787.385776293, "dkk": 1186823.9764299626, "eos": 30664.741274323354, "eth": 1010.6154937627607, "eur": 158957.0343015467, "gbp": 136888.49713189344, "hkd": 1404825.421635682, "huf": 51107897.577457316, "idr": 2542667201.8192053, "ils": 641645.223408883, "inr": 12396076.25065132, "jpy": 19896011.756271943, "krw": 203983432.66709498, "kwd": 54531.64270489294, "lkr": 31323303.513527136, "ltc": 2030.0575257996754, "mmk": 270703773.6647228, "mxn": 3373031.6085836403, "myr": 736878.7224899897, "ngn": 64601027.88491168, "nok": 1522591.390678202, "nzd": 264825.4935078056, "php": 9293779.183726469, "pkr": 25388680.798502177, "pln": 680437.748963991, "rub": 11522240.552541632, "sar": 672254.3904076578, "sek": 1660243.5484333166, "sgd": 242324.21531832815, "thb": 5690347.221330165, "try": 1018858.9735094482, "twd": 5528472.680774413, "uah": 4810038.692754925, "usd": 179263.05709385264, "vef": 44544654398.165054, "vnd": 4158520448.560227, "xag": 11763.845923001025, "xau": 137.00716927568976, "xdr": 128595.07105850351, "xlm": 1423306.2211142504, "xrp": 505409.558812399, "zar": 2493043.4230914274, "bits": 33774740.8886297, "link": 344288.7415858044, "sats": 3377474088.86297}}, "community_data": {"facebook_likes": null, "twitter_followers": 161, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 213, "stars": 173, "subscribers": 28, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 8, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 28, "deletions": -7}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "SYS_20190523": {"id": "syscoin", "symbol": "sys", "name": "Syscoin", "localization": {"en": "Syscoin", "de": "Syscoin", "es": "Syscoin", "fr": "Syscoin", "it": "Syscoin", "pl": "Syscoin", "ro": "Syscoin", "hu": "Syscoin", "nl": "Syscoin", "pt": "Syscoin", "sv": "Syscoin", "vi": "Syscoin", "tr": "Syscoin", "ru": "Syscoin", "ja": "\u30b7\u30b9\u30b3\u30a4\u30f3", "zh": "\u7cfb\u7edf\u5e01", "zh-tw": "\u7cfb\u7d71\u5e63", "ko": "\uc2dc\uc2a4\ucf54\uc778", "ar": "Syscoin", "th": "Syscoin", "id": "Syscoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/119/thumb/Syscoin.png?1560401261", "small": "https://assets.coingecko.com/coins/images/119/small/Syscoin.png?1560401261"}, "market_data": {"current_price": {"aed": 0.2693442715532364, "ars": 3.2975343112978877, "aud": 0.10627083090048277, "bch": 0.00017530576895496337, "bdt": 6.177978710477634, "bhd": 0.027648968697814295, "bmd": 0.07333068651703183, "bnb": 0.0025110794865017467, "brl": 0.30057390434299136, "btc": 8.961809897232686e-06, "cad": 0.0986423129128022, "chf": 0.07410586520420341, "clp": 51.133487708326335, "cny": 0.5073544874191181, "czk": 1.6927882267412968, "dkk": 0.4905325012627979, "eos": 0.011317369000689375, "eth": 0.0002813923246606585, "eur": 0.06567642945838409, "gbp": 0.0576232534650836, "hkd": 0.5756151636010488, "huf": 21.43895951011943, "idr": 1059.2176522441414, "ils": 0.2619026001548017, "inr": 5.154609381561736, "jpy": 8.075776510884983, "krw": 87.61767608549226, "kwd": 0.022313427946835045, "lkr": 12.909166026637633, "ltc": 0.0007689899227213505, "mmk": 112.5989088732398, "mxn": 1.4043662437837903, "myr": 0.30626561223838356, "ngn": 26.406787126762644, "nok": 0.6442394133267318, "nzd": 0.11233769858809577, "php": 3.862864479461491, "pkr": 10.869738511582266, "pln": 0.282840124430518, "rub": 4.751953148470743, "sar": 0.27499374097319534, "sek": 0.7071381497105367, "sgd": 0.10096146920458954, "thb": 2.33338244497195, "try": 0.4439976542366412, "twd": 2.301187487024889, "uah": 1.9327774911748994, "usd": 0.07333068651703183, "vef": 18221.76939653113, "vnd": 1715.92056391022, "xag": 0.00507865382312083, "xau": 5.7386395347633634e-05, "xdr": 0.05288279123519013, "xlm": 0.5128151939354567, "xrp": 0.1760633880360777, "zar": 1.058158873213309, "bits": 8.961809897232685, "link": 0.07381108957644934, "sats": 896.1809897232686}, "market_cap": {"aed": 149314807.0755805, "ars": 1828034792.339117, "aud": 58912738.41526953, "bch": 96723.9782543338, "bdt": 3424849891.7478724, "bhd": 15327596.919531722, "bmd": 40651903.40551317, "bnb": 1390659.3135261443, "brl": 166627395.78650025, "btc": 4967.614989705636, "cad": 54683761.5558974, "chf": 41081634.67641286, "clp": 28346572244.664307, "cny": 281259137.12979203, "czk": 938421099.6510166, "dkk": 271933631.1404707, "eos": 6262983.680693043, "eth": 155713.24314370402, "eur": 36408657.72804569, "gbp": 31944265.69605225, "hkd": 319100408.58575135, "huf": 11884990479.635838, "idr": 587192289198.6329, "ils": 145189411.26608583, "inr": 2857530627.696099, "jpy": 4476920948.623037, "krw": 48572098176.33028, "kwd": 12369764.427746553, "lkr": 7156378799.736428, "ltc": 425107.59257611335, "mmk": 62420797956.36382, "mxn": 778530293.3854601, "myr": 169782674.5731257, "ngn": 14638975993.73729, "nok": 357143232.17879534, "nzd": 62275992.339718, "php": 2141433568.2127275, "pkr": 6025793307.054315, "pln": 156796424.03023458, "rub": 2634312448.913042, "sar": 152446670.36584455, "sek": 392012036.4577435, "sgd": 55969418.653000124, "thb": 1293543566.3634274, "try": 246136380.41026956, "twd": 1275695835.9960783, "uah": 1071462543.274336, "usd": 40651903.40551317, "vef": 10101495629844.826, "vnd": 951244837990.3065, "xag": 2815423.5894081844, "xau": 31812.960048052446, "xdr": 29316323.40040284, "xlm": 284348267.80706495, "xrp": 97561529.02015144, "zar": 586605340.0654175, "bits": 4967614989.705636, "link": 40914176.84498056, "sats": 496761498970.5636}, "total_volume": {"aed": 13937049.680336053, "ars": 170628835.928622, "aud": 5498917.208409525, "bch": 9071.086595179084, "bdt": 319675617.066045, "bhd": 1430678.4700833333, "bmd": 3794450.185212195, "bnb": 129934.226381831, "brl": 15553007.358513135, "btc": 463.72320838006874, "cad": 5104184.350092072, "chf": 3834561.318120075, "clp": 2645870114.1484656, "cny": 26252738.3854313, "czk": 87592260.56054555, "dkk": 25382295.307393823, "eos": 585610.1304984583, "eth": 14560.468599703267, "eur": 3398385.474879748, "gbp": 2981678.9555397425, "hkd": 29784844.079288106, "huf": 1109345456.1486375, "idr": 54808550248.664566, "ils": 13551985.081090542, "inr": 266722015.7283088, "jpy": 417875968.88708556, "krw": 4533721461.522669, "kwd": 1154594.2746072935, "lkr": 667976664.9850371, "ltc": 39790.899189504074, "mmk": 5826359617.25958, "mxn": 72668046.72002473, "myr": 15847521.198538737, "ngn": 1366402567.098989, "nok": 33335762.65716324, "nzd": 5812843.455582655, "php": 199881489.3971832, "pkr": 562447772.7874802, "pln": 14635384.086872716, "rub": 245886822.56706515, "sar": 14229377.917054998, "sek": 36590418.1534773, "sgd": 5224187.631649577, "thb": 120739404.89345188, "try": 22974378.958810207, "twd": 119073497.0730369, "uah": 100010353.88723926, "usd": 3794450.185212195, "vef": 942873980124.3041, "vnd": 88789228777.04555, "xag": 262791.74319871713, "xau": 2969.4228814415087, "xdr": 2736386.7233167025, "xlm": 26535299.20459802, "xrp": 9110289.117331754, "zar": 54753764.39460458, "bits": 463723208.3800687, "link": 3819308.3389315107, "sats": 46372320838.006874}}, "community_data": {"facebook_likes": null, "twitter_followers": 62051, "reddit_average_posts_48h": 0.083, "reddit_average_comments_48h": 0.375, "reddit_subscribers": 4591, "reddit_accounts_active_48h": "140.56"}, "developer_data": {"forks": 33, "stars": 95, "subscribers": 59, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 98, "pull_request_contributors": 13, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1089755, "bing_matches": null}}, "ARDR_20190531": {"id": "ardor", "symbol": "ardr", "name": "Ardor", "localization": {"en": "Ardor", "de": "Ardor", "es": "Ardor", "fr": "Ardor", "it": "Ardor", "pl": "Ardor", "ro": "Ardor", "hu": "Ardor", "nl": "Ardor", "pt": "Ardor", "sv": "Ardor", "vi": "Ardor", "tr": "Ardor", "ru": "Ardor", "ja": "\u30a2\u30fc\u30c0\u30fc", "zh": "\u963f\u6735\u5e01", "zh-tw": "\u963f\u6735\u5e63", "ko": "\uc544\ub354", "ar": "Ardor", "th": "Ardor", "id": "Ardor"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/525/thumb/Ardor_Vertical_1.png?1606797362", "small": "https://assets.coingecko.com/coins/images/525/small/Ardor_Vertical_1.png?1606797362"}, "market_data": {"current_price": {"aed": 0.3158880079851387, "ars": 3.8653739891685253, "aud": 0.124267813521448, "bch": 0.00019362834295451404, "bdt": 7.258494941577445, "bhd": 0.032425041484950734, "bmd": 0.08599848686605394, "bnb": 0.002511701058746668, "brl": 0.34770830811044734, "btc": 9.752911951642498e-06, "cad": 0.11556691661277485, "chf": 0.08634884470154625, "clp": 60.12198076034132, "cny": 0.5932261622507262, "czk": 1.9852400679186983, "dkk": 0.5736317510122436, "eos": 0.010642019387111618, "eth": 0.0003145260993129064, "eur": 0.07683087616915879, "gbp": 0.06781617078191159, "hkd": 0.6750473586157488, "huf": 25.030615443066036, "idr": 1236.5077437818363, "ils": 0.3099041472705122, "inr": 5.977168484375957, "jpy": 9.419672261899485, "krw": 101.76286949347016, "kwd": 0.026182153327883262, "lkr": 15.15313092432306, "ltc": 0.0007248350006158981, "mmk": 131.3583201367618, "mxn": 1.6385635696536667, "myr": 0.36004487704986965, "ngn": 30.984394832970576, "nok": 0.74849797826015, "nzd": 0.1313575287786853, "php": 4.4862144375489175, "pkr": 12.974484559366951, "pln": 0.32961070053586783, "rub": 5.536229990640396, "sar": 0.3224986256720453, "sek": 0.8237363344495231, "sgd": 0.11826890307161975, "thb": 2.7372243388379127, "try": 0.5217093905804819, "twd": 2.7062140584603926, "uah": 2.2664168506440427, "usd": 0.08599848686605394, "vef": 21369.56123763932, "vnd": 2011.2599267941355, "xag": 0.005893133170968073, "xau": 6.688016325086147e-05, "xdr": 0.061974551564561164, "xlm": 0.6237815756900914, "xrp": 0.1968083578278629, "zar": 1.2411981872540017, "bits": 9.7529119516425, "link": 0.07158454915276881, "sats": 975.2911951642499}, "market_cap": {"aed": 316857073.1924862, "ars": 3877231987.419815, "aud": 124649036.01623334, "bch": 194492.6228791021, "bdt": 7280762184.169081, "bhd": 32524513.382444687, "bmd": 86262308.66175294, "bnb": 2522266.609269671, "brl": 348774990.0204219, "btc": 9781.272778137842, "cad": 115921446.93737982, "chf": 86613741.30724093, "clp": 60306419923.20572, "cny": 595046031.3796378, "czk": 1991330286.696938, "dkk": 575391509.4002925, "eos": 10647707.188749785, "eth": 315395.81091860426, "eur": 77066574.03379276, "gbp": 68024213.79063319, "hkd": 677118234.6604549, "huf": 25107403095.433994, "idr": 1240301039515.8533, "ils": 310854855.4934934, "inr": 5995504938.65799, "jpy": 9448569454.64779, "krw": 102075052462.53851, "kwd": 26262473.609761994, "lkr": 15199616930.723854, "ltc": 724483.4406396423, "mmk": 131761294528.07178, "mxn": 1643590271.8558445, "myr": 361149404.46025914, "ngn": 31079447187.74297, "nok": 750794182.3899888, "nzd": 131760500.74230818, "php": 4499977018.635358, "pkr": 13014287024.962069, "pln": 330621863.52333385, "rub": 5553213756.178139, "sar": 323487970.5970063, "sek": 826263350.9919833, "sgd": 118631722.41322382, "thb": 2745621456.8177648, "try": 523309864.1849808, "twd": 2714516044.6751227, "uah": 2273369649.2935224, "usd": 86262308.66175294, "vef": 21435117693624.383, "vnd": 2017429967975.5635, "xag": 5911211.82597837, "xau": 67085.33482315866, "xdr": 62164673.95016629, "xlm": 625349242.4786785, "xrp": 197334798.035831, "zar": 1245005872.0925708, "bits": 9781272778.137842, "link": 71792712.31350844, "sats": 978127277813.7842}, "total_volume": {"aed": 7819207.4880756615, "ars": 95679989.35161018, "aud": 3076013.6296766596, "bch": 4792.901759046349, "bdt": 179670252.00276613, "bhd": 802620.2982425933, "bmd": 2128729.1554855765, "bnb": 62172.38777637762, "brl": 8606858.56289688, "btc": 241.41480599166454, "cad": 2860639.4573704028, "chf": 2137401.5980650247, "clp": 1488205409.1186595, "cny": 14684186.587455044, "czk": 49140846.161618195, "dkk": 14199164.164294286, "eos": 263422.97135845793, "eth": 7785.496026358839, "eur": 1901802.3700525016, "gbp": 1678660.4650578822, "hkd": 16709514.852942076, "huf": 619585330.1046239, "idr": 30607399979.8604, "ils": 7671088.384707829, "inr": 147953449.92242032, "jpy": 233166090.58780164, "krw": 2518946496.9776344, "kwd": 648089.4626584285, "lkr": 375086966.88742936, "ltc": 17941.91334006512, "mmk": 3251525649.820583, "mxn": 40559528.09112875, "myr": 8912226.88898044, "ngn": 766959827.4298984, "nok": 18527645.394809045, "nzd": 3251506.0612548864, "php": 111047715.12835, "pkr": 321158715.2915819, "pln": 8158886.670687334, "rub": 137038855.24062377, "sar": 7982840.76952868, "sek": 20390027.958360262, "sgd": 2927521.9987066127, "thb": 67754788.1076615, "try": 12913924.778107474, "twd": 66987187.53275574, "uah": 56100843.21558192, "usd": 2128729.1554855765, "vef": 528962888816.2852, "vnd": 49784918333.44645, "xag": 145873.31539609598, "xau": 1655.4913769295777, "xdr": 1534062.2797132141, "xlm": 15440527.795499803, "xrp": 4871616.985586545, "zar": 30723502.996729836, "bits": 241414805.99166453, "link": 1771939.51215832, "sats": 24141480599.166454}}, "community_data": {"facebook_likes": null, "twitter_followers": 68413, "reddit_average_posts_48h": 0.13, "reddit_average_comments_48h": 0.478, "reddit_subscribers": 6554, "reddit_accounts_active_48h": "169.666666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1228634, "bing_matches": null}}, "NEBL_20190616": {"id": "neblio", "symbol": "nebl", "name": "Neblio", "localization": {"en": "Neblio", "de": "Neblio", "es": "Neblio", "fr": "Neblio", "it": "Neblio", "pl": "Neblio", "ro": "Neblio", "hu": "Neblio", "nl": "Neblio", "pt": "Neblio", "sv": "Neblio", "vi": "Neblio", "tr": "Neblio", "ru": "Neblio", "ja": "\u30cd\u30d6\u30ea\u30aa", "zh": "Neblio", "zh-tw": "Neblio", "ko": "\ub124\ube14\ub9ac\uc624", "ar": "Neblio", "th": "Neblio", "id": "Neblio"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/894/thumb/Mark_Color_4x.png?1616034795", "small": "https://assets.coingecko.com/coins/images/894/small/Mark_Color_4x.png?1616034795"}, "market_data": {"current_price": {"aed": 5.142304427636108, "ars": 61.141808597441816, "aud": 2.020234725863643, "bch": 0.0035444399692333437, "bdt": 118.29675182741128, "bhd": 0.5278577075594538, "bmd": 1.4000230948305978, "bnb": 0.03997037547260199, "brl": 5.414467517248088, "btc": 0.00017209261984143707, "cad": 1.8670119982961058, "chf": 1.3928829770469613, "clp": 973.9960670736465, "cny": 9.685305169137372, "czk": 31.720323259576865, "dkk": 9.2572509079391, "eos": 0.21815726135256677, "eth": 0.005361936265787805, "eur": 1.2395622478627792, "gbp": 1.1029731946849155, "hkd": 10.954270702037784, "huf": 399.3845882623253, "idr": 19978.353838233106, "ils": 5.015722739540101, "inr": 97.32407546139852, "jpy": 151.88010541960256, "krw": 1656.9693404249736, "kwd": 0.4253998174104666, "lkr": 247.10040957711513, "ltc": 0.010365447299942303, "mmk": 2143.44879980738, "mxn": 26.844552428688363, "myr": 5.823362462393598, "ngn": 504.35148920004315, "nok": 12.12574002663729, "nzd": 2.1285517126645073, "php": 72.84388903537558, "pkr": 212.12363119893948, "pln": 5.275637027095393, "rub": 90.73983684756507, "sar": 5.251066621781115, "sek": 13.259478728831102, "sgd": 1.913233760771942, "thb": 43.79272240630107, "try": 8.139454268726135, "twd": 43.999764821680074, "uah": 37.00956151103852, "usd": 1.4000230948305978, "vef": 347888.4379174033, "vnd": 32721.773372133397, "xag": 0.09472095652025629, "xau": 0.0010498493183515676, "xdr": 1.0061797979776128, "xlm": 11.040800500033027, "xrp": 3.4874930852308696, "zar": 20.829119397891965, "bits": 172.09261984143706, "link": 1.226495796244426, "sats": 17209.261984143708}, "market_cap": {"aed": 78254870.09697856, "ars": 930617940.9705575, "aud": 30738451.205605596, "bch": 54080.73250640454, "bdt": 1800223436.286155, "bhd": 8032864.820829515, "bmd": 21305355.791450478, "bnb": 609971.6250849466, "brl": 82396609.95748095, "btc": 2621.135903213952, "cad": 28416337.867183942, "chf": 21197295.026876226, "clp": 14821709916.996262, "cny": 147389620.45637837, "czk": 482721837.773632, "dkk": 140877404.09980795, "eos": 3323136.0511485953, "eth": 81954.69212784476, "eur": 18865381.224790394, "gbp": 16784551.04070682, "hkd": 166696299.51567718, "huf": 6077137661.944521, "idr": 304027796557.5629, "ils": 76328567.65845054, "inr": 1481064178.46626, "jpy": 2311362123.255508, "krw": 25215527846.382153, "kwd": 6473674.967943809, "lkr": 3760339498.464198, "ltc": 158301.92242689955, "mmk": 32618704269.43159, "mxn": 408521888.2123036, "myr": 88619116.08599928, "ngn": 7675150475.039128, "nok": 184477855.98600066, "nzd": 32388806.675923023, "php": 1108528101.4535046, "pkr": 3228067773.421028, "pln": 80284695.25929748, "rub": 1380857633.3045416, "sar": 79909997.96699338, "sek": 201784963.4882044, "sgd": 29121119.03676514, "thb": 666375496.0708404, "try": 123871469.10707207, "twd": 669561094.1741322, "uah": 563206334.6595402, "usd": 21305355.791450478, "vef": 5294117627723.153, "vnd": 498013586023.99194, "xag": 1441989.5167840666, "xau": 15980.93432560909, "xdr": 15311903.543045959, "xlm": 168248805.6220244, "xrp": 53152300.47087452, "zar": 316975693.2101855, "bits": 2621135903.213952, "link": 18680709.083511643, "sats": 262113590321.3952}, "total_volume": {"aed": 2280767.915412532, "ars": 27118245.779051244, "aud": 896035.3493638181, "bch": 1572.066584873387, "bdt": 52468195.895883135, "bhd": 234120.89662265487, "bmd": 620952.6877416025, "bnb": 17728.07332350214, "brl": 2401480.496956815, "btc": 76.32829431571939, "cad": 828076.4243593175, "chf": 617785.8290341201, "clp": 431996784.8618327, "cny": 4295726.476641582, "czk": 14068925.046161493, "dkk": 4105871.4342699605, "eos": 96759.35939014978, "eth": 2378.1812943185614, "eur": 549783.4373414746, "gbp": 489202.05122002796, "hkd": 4858551.162331006, "huf": 177139173.23204723, "idr": 8861005620.771336, "ils": 2224625.099103066, "inr": 43166178.088679604, "jpy": 67363431.37696, "krw": 734916137.6275826, "kwd": 188677.71607566133, "lkr": 109596523.11130364, "ltc": 4597.390131854873, "mmk": 950684526.699149, "mxn": 11906372.861535808, "myr": 2582837.801796691, "ngn": 223695176.1307488, "nok": 5378133.323798793, "nzd": 944077.2169090153, "php": 32308473.230965268, "pkr": 94083261.49250261, "pln": 2339904.9655822907, "rub": 40245868.645865284, "sar": 2329007.245912425, "sek": 5880980.810331941, "sgd": 848577.1773451084, "thb": 19423400.07255731, "try": 3610094.7359921318, "twd": 19515229.660783973, "uah": 16414862.567105185, "usd": 620952.6877416025, "vef": 154299069320.12277, "vnd": 14513098532.532696, "xag": 42011.615918254174, "xau": 465.64000148367245, "xdr": 446271.2452476369, "xlm": 4896929.7511080615, "xrp": 1546808.9153317825, "zar": 9238345.939555205, "bits": 76328294.3157194, "link": 543988.0699067368, "sats": 7632829431.5719385}}, "community_data": {"facebook_likes": null, "twitter_followers": 40228, "reddit_average_posts_48h": 0.125, "reddit_average_comments_48h": 0.792, "reddit_subscribers": 6157, "reddit_accounts_active_48h": "769.84"}, "developer_data": {"forks": 39, "stars": 98, "subscribers": 35, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 84, "pull_request_contributors": 8, "code_additions_deletions_4_weeks": {"additions": 2570, "deletions": -169}, "commit_count_4_weeks": 27}, "public_interest_stats": {"alexa_rank": 715559, "bing_matches": null}}, "REN_20190619": {"id": "republic-protocol", "symbol": "ren", "name": "REN", "localization": {"en": "REN", "de": "REN", "es": "REN", "fr": "REN", "it": "REN", "pl": "REN", "ro": "REN", "hu": "REN", "nl": "REN", "pt": "REN", "sv": "REN", "vi": "REN", "tr": "REN", "ru": "REN", "ja": "\u30ec\u30f3", "zh": "REN", "zh-tw": "REN", "ko": "\ub9ac\ud37c\ube14\ub9ad \ud504\ub85c\ud1a0\ucf5c", "ar": "REN", "th": "REN", "id": "REN"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3139/thumb/REN.png?1589985807", "small": "https://assets.coingecko.com/coins/images/3139/small/REN.png?1589985807"}, "market_data": {"current_price": {"aed": 0.15106674398636766, "ars": 1.8046125380298625, "aud": 0.05985593680230536, "bch": 9.743134645739046e-05, "bdt": 3.479387071944765, "bhd": 0.015462567071620262, "bmd": 0.041127020625580823, "bnb": 0.0012556157235928287, "brl": 0.1602555485696383, "btc": 4.662543218264267e-06, "cad": 0.055233712081216864, "chf": 0.041097614805833536, "clp": 28.768556562696894, "cny": 0.2848210686403976, "czk": 0.9373958430126741, "dkk": 0.27399643681174457, "eos": 0.005966818033218606, "eth": 0.0001533168604227724, "eur": 0.03662402313728598, "gbp": 0.03266904319882698, "hkd": 0.3219484865101406, "huf": 11.828131131917026, "idr": 588.4968198865927, "ils": 0.1480840068154975, "inr": 2.8739150742949606, "jpy": 4.464965599229721, "krw": 48.797621242457915, "kwd": 0.012504341605042848, "lkr": 7.288393806794841, "ltc": 0.0002986277101580668, "mmk": 62.90802700270755, "mxn": 0.7879690389737537, "myr": 0.17139480210607697, "ngn": 14.805727425209096, "nok": 0.3585165768993757, "nzd": 0.06333569401743555, "php": 2.1414839639739935, "pkr": 6.312997666026657, "pln": 0.15617986082564297, "rub": 2.6478604054264587, "sar": 0.15424277815417836, "sek": 0.39024196060994887, "sgd": 0.05638514527767145, "thb": 1.2808393668527773, "try": 0.24271580070221646, "twd": 1.2958297134735712, "uah": 1.0902836914723448, "usd": 0.041127020625580823, "vef": 10219.556387647575, "vnd": 961.9795195916163, "xag": 0.002766143361826451, "xau": 3.065649244451419e-05, "xdr": 0.029590767959043543, "xlm": 0.3252029033677844, "xrp": 0.10027830923897359, "zar": 0.6094498030847084, "bits": 4.662543218264267, "link": 0.023810214170948234, "sats": 466.25432182642675}, "market_cap": {"aed": 118101320.21438283, "ars": 1410814303.6165986, "aud": 46794317.34928267, "bch": 76214.03991223624, "bdt": 2720123542.0193677, "bhd": 12088362.646027388, "bmd": 32152380.49218529, "bnb": 982163.4301302213, "brl": 125284965.82584934, "btc": 3646.2771934083353, "cad": 43180743.45814623, "chf": 32129391.5401334, "clp": 22490750916.186085, "cny": 222668095.86058003, "czk": 732839562.8442308, "dkk": 214205589.31503686, "eos": 4669228.161655856, "eth": 119886.16129279866, "eur": 28632016.35209592, "gbp": 25540082.68206492, "hkd": 251693657.3499002, "huf": 9247024629.552473, "idr": 460076450557.8008, "ils": 115769468.81918712, "inr": 2246776196.413416, "jpy": 3490631478.9469304, "krw": 38149120977.78293, "kwd": 9775674.069604987, "lkr": 5697937932.00758, "ltc": 233549.95441448674, "mmk": 49180387721.68331, "mxn": 616020318.8019768, "myr": 133993438.08215743, "ngn": 11574856977.186705, "nok": 280281946.46452695, "nzd": 49514730.26272622, "php": 1674174452.2280872, "pkr": 4935390405.55045, "pln": 122098664.9190738, "rub": 2070050637.0381198, "sar": 120584287.79789169, "sek": 305084292.77619845, "sgd": 44080913.65478607, "thb": 1001337661.8583714, "try": 189750938.84600756, "twd": 1013056850.8715873, "uah": 852364590.4668087, "usd": 32152380.49218529, "vef": 7989469220938.661, "vnd": 752058648283.434, "xag": 2162522.169428866, "xau": 23966.705942679826, "xdr": 23133541.306985855, "xlm": 254523613.03164887, "xrp": 78475488.77536266, "zar": 476457123.8471564, "bits": 3646277193.408335, "link": 18620447.43341095, "sats": 364627719340.83356}, "total_volume": {"aed": 1416967.565759814, "ars": 16926805.77918967, "aud": 561433.4355064245, "bch": 913.8812036015548, "bdt": 32635764.163386233, "bhd": 145034.93916469652, "bmd": 385760.9740237848, "bnb": 11777.355547887037, "brl": 1503156.2113810803, "btc": 43.73346733964186, "cad": 518078.1453968645, "chf": 385485.1549273578, "clp": 269841730.1345074, "cny": 2671549.0495043206, "czk": 8792534.152631901, "dkk": 2570016.761141259, "eos": 55967.23276583292, "eth": 1438.0730845883413, "eur": 343524.0049779206, "gbp": 306427.3009109231, "hkd": 3019794.7688042917, "huf": 110944856.12924032, "idr": 5519950217.549846, "ils": 1388990.2511187398, "inr": 26956591.10380804, "jpy": 41880239.61721697, "krw": 457709253.288961, "kwd": 117287.5380641396, "lkr": 68363276.7754956, "ltc": 2801.051828914033, "mmk": 590061263.8928862, "mxn": 7390948.805711307, "myr": 1607639.5711954234, "ngn": 138873950.64856252, "nok": 3362794.1388575393, "nzd": 594072.671518575, "php": 20086573.917418472, "pkr": 59214309.512650974, "pln": 1464927.2988553208, "rub": 24836255.910086337, "sar": 1446757.9569788028, "sek": 3660370.154219488, "sgd": 528878.2953866103, "thb": 12013946.894509751, "try": 2276612.364952404, "twd": 12154552.526170673, "uah": 10226583.214321509, "usd": 385760.9740237848, "vef": 95856834903.7621, "vnd": 9023122774.854631, "xag": 25945.719901817676, "xau": 287.5500876470693, "xdr": 277553.8635271913, "xlm": 3050320.3696814734, "xrp": 940584.9890673532, "zar": 5716483.860985753, "bits": 43733467.33964186, "link": 223333.74191922025, "sats": 4373346733.964187}}, "community_data": {"facebook_likes": null, "twitter_followers": 6409, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 780, "reddit_accounts_active_48h": "954.083333333333"}, "developer_data": {"forks": 0, "stars": 2, "subscribers": 6, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 2964, "deletions": -934944}, "commit_count_4_weeks": 206}, "public_interest_stats": {"alexa_rank": 1312648, "bing_matches": null}}, "NAV_20190624": {"id": "nav-coin", "symbol": "nav", "name": "Navcoin", "localization": {"en": "Navcoin", "de": "Navcoin", "es": "Navcoin", "fr": "Navcoin", "it": "Navcoin", "pl": "Navcoin", "ro": "Navcoin", "hu": "Navcoin", "nl": "Navcoin", "pt": "Navcoin", "sv": "Navcoin", "vi": "Navcoin", "tr": "Navcoin", "ru": "Navcoin", "ja": "\u30ca\u30d6\u30b3\u30a4\u30f3", "zh": "\u7eb3\u74e6\u970d\u5e01", "zh-tw": "\u7d0d\u74e6\u970d\u5e63", "ko": "\ub098\ube0c\ucf54\uc778", "ar": "Navcoin", "th": "Navcoin", "id": "Navcoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/233/thumb/Navcoin_Logo.png?1618823660", "small": "https://assets.coingecko.com/coins/images/233/small/Navcoin_Logo.png?1618823660"}, "market_data": {"current_price": {"aed": 0.8385363780483515, "ars": 9.893922086773173, "aud": 0.32975593090707356, "bch": 0.0005511100275880702, "bdt": 19.286446729040232, "bhd": 0.08606251184081608, "bmd": 0.22828615797815333, "bnb": 0.006211636699357035, "brl": 0.8764362177097257, "btc": 2.3885740367478637e-05, "cad": 0.30102155220236165, "chf": 0.22398570333416093, "clp": 156.1043576870412, "cny": 1.56419392585051, "czk": 5.172065805467162, "dkk": 1.5090762875821073, "eos": 0.0332963848687207, "eth": 0.0008382002906556524, "eur": 0.20211337825211606, "gbp": 0.17964979202090792, "hkd": 1.7839634121329715, "huf": 65.30604333524201, "idr": 3234.65883135348, "ils": 0.8179264754199256, "inr": 15.870646832730879, "jpy": 24.497672970333213, "krw": 264.4146194149991, "kwd": 0.06935995509234442, "lkr": 40.31105855777213, "ltc": 0.0016810225683082248, "mmk": 347.4618936666007, "mxn": 4.338329600462618, "myr": 0.9469309832933807, "ngn": 82.1830168721352, "nok": 1.9520785894497188, "nzd": 0.34671485301095356, "php": 11.734362581245303, "pkr": 35.85724949115161, "pln": 0.859577284943041, "rub": 14.359496108831221, "sar": 0.8561427196962593, "sek": 2.147267363671882, "sgd": 0.309527494448628, "thb": 7.046508838311653, "try": 1.3163605373093188, "twd": 7.056771214257415, "uah": 6.014641935367077, "usd": 0.22828615797815333, "vef": 56726.28915224778, "vnd": 5322.893541831796, "xag": 0.014765792964215993, "xau": 0.00016420166771052627, "xdr": 0.163911516003736, "xlm": 1.8760083183938088, "xrp": 0.5293115654470295, "zar": 3.275480613301867, "bits": 23.885740367478636, "link": 0.12947290525618682, "sats": 2388.574036747864}, "market_cap": {"aed": 54892803.39878416, "ars": 647649363.0822508, "aud": 21584780.286802515, "bch": 36052.58167139152, "bdt": 1262541681.2832456, "bhd": 5633879.061369754, "bmd": 14944214.129057113, "bnb": 406686.2349089053, "brl": 57375231.64040425, "btc": 1562.3442518008872, "cad": 19704917.70308016, "chf": 14661947.812587487, "clp": 10218853621.449255, "cny": 102396260.79088648, "czk": 338565026.7010347, "dkk": 98783631.52311409, "eos": 2178962.411341094, "eth": 54805.355716706654, "eur": 13230396.708522711, "gbp": 11759691.763439821, "hkd": 116779499.00996697, "huf": 4274788117.7946973, "idr": 211755542455.06107, "ils": 53543624.8029988, "inr": 1038934409.0572047, "jpy": 1603700978.7244477, "krw": 17309579439.702114, "kwd": 4540485.634617302, "lkr": 2638868235.3397813, "ltc": 110009.93608407791, "mmk": 22745772177.471577, "mxn": 283999845.3086014, "myr": 61988600.2073289, "ngn": 5379917086.460561, "nok": 127785823.05073285, "nzd": 22681924.711301453, "php": 768142588.9685745, "pkr": 2347310144.516407, "pln": 56267207.82801936, "rub": 940053834.4170341, "sar": 56045360.96927348, "sek": 140553771.0530318, "sgd": 20262650.71859076, "thb": 461327890.16399294, "try": 86168338.66814324, "twd": 461940259.22635925, "uah": 393734327.94963473, "usd": 14944214.129057113, "vef": 3713452534074.0425, "vnd": 348434400788.99274, "xag": 966795.3100638518, "xau": 10752.212623715302, "xdr": 10730080.24259018, "xlm": 122705273.21328907, "xrp": 34623609.24459367, "zar": 214412620.3199271, "bits": 1562344251.800887, "link": 8468703.342617678, "sats": 156234425180.0887}, "total_volume": {"aed": 1594300.7937124607, "ars": 18811214.69361245, "aud": 626961.6395178315, "bch": 1047.8199603594214, "bdt": 36669127.46178906, "bhd": 163629.7893909492, "bmd": 434038.17936346185, "bnb": 11810.122469686501, "brl": 1666359.3782122016, "btc": 45.41371826337763, "cad": 572329.2538813493, "chf": 425861.76814061304, "clp": 296799647.4305291, "cny": 2973986.2011805065, "czk": 9833596.77010209, "dkk": 2869191.589116814, "eos": 63306.082137435944, "eth": 1593.661794128228, "eur": 384276.1361376204, "gbp": 341566.34525007656, "hkd": 3391831.7181864544, "huf": 124165724.28965399, "idr": 6150024348.637753, "ils": 1555115.3928413475, "inr": 30174701.425647628, "jpy": 46577179.57521749, "krw": 502728860.23580915, "kwd": 131873.3859978214, "lkr": 76643010.77029693, "ltc": 3196.111325712604, "mmk": 660625808.6820341, "mxn": 8248422.497187106, "myr": 1800390.3679996408, "ngn": 156253744.57084626, "nok": 3711467.416347836, "nzd": 659205.4677863824, "php": 22310425.7212207, "pkr": 68175028.32392608, "pln": 1634305.6586662135, "rub": 27301565.73159493, "sar": 1627775.5542576895, "sek": 4082577.872390822, "sgd": 588501.5164444325, "thb": 13397456.482411968, "try": 2502783.068670868, "twd": 13416968.234727094, "uah": 11435578.303436533, "usd": 434038.17936346185, "vef": 107853123832.60292, "vnd": 10120364030.408266, "xag": 28074.05386208063, "xau": 312.19498165255106, "xdr": 311643.3191265801, "xlm": 3566835.7740037916, "xrp": 1006374.7632243147, "zar": 6227638.392661157, "bits": 45413718.26337763, "link": 246165.53439771503, "sats": 4541371826.337763}}, "community_data": {"facebook_likes": null, "twitter_followers": 48355, "reddit_average_posts_48h": 0.304, "reddit_average_comments_48h": 1.696, "reddit_subscribers": 11259, "reddit_accounts_active_48h": "194.875"}, "developer_data": {"forks": 69, "stars": 83, "subscribers": 23, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 211, "pull_request_contributors": 21, "code_additions_deletions_4_weeks": {"additions": 5184, "deletions": -27175}, "commit_count_4_weeks": 58}, "public_interest_stats": {"alexa_rank": 919129, "bing_matches": null}}, "DNT_20190626": {"id": "district0x", "symbol": "dnt", "name": "district0x", "localization": {"en": "district0x", "de": "district0x", "es": "district0x", "fr": "district0x", "it": "district0x", "pl": "district0x", "ro": "district0x", "hu": "district0x", "nl": "district0x", "pt": "district0x", "sv": "district0x", "vi": "district0x", "tr": "district0x", "ru": "district0x", "ja": "district0x", "zh": "district0x", "zh-tw": "district0x", "ko": "\ub514\uc2a4\ud2b8\ub9ad\ud2b80x", "ar": "district0x", "th": "district0x", "id": "district0x"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/849/thumb/district0x.png?1547223762", "small": "https://assets.coingecko.com/coins/images/849/small/district0x.png?1547223762"}, "market_data": {"current_price": {"aed": 0.06137297794195171, "ars": 0.7132159334717657, "aud": 0.024103577417100924, "bch": 3.4644776023689626e-05, "bdt": 1.4081695557575535, "bhd": 0.006297890844482475, "bmd": 0.016708427434563144, "bnb": 0.0004406430003832787, "brl": 0.06385960965490055, "btc": 1.5570506756482093e-06, "cad": 0.022106937047098058, "chf": 0.01629280530212848, "clp": 11.4234682948737, "cny": 0.11478622813835193, "czk": 0.376325231074435, "dkk": 0.10973760970472439, "eos": 0.002235548047859842, "eth": 5.378594123560508e-05, "eur": 0.014673892351138754, "gbp": 0.013112857392782383, "hkd": 0.13055547486681834, "huf": 4.762235987399205, "idr": 235.99651245674403, "ils": 0.06051332935044347, "inr": 1.1625696072979552, "jpy": 1.7930671710075794, "krw": 19.36790782932264, "kwd": 0.005072043648890878, "lkr": 2.9455084218250973, "ltc": 0.00011773428635917706, "mmk": 25.3909445579621, "mxn": 0.3195436621577919, "myr": 0.06912166154057738, "ngn": 6.0148667921683865, "nok": 0.14198153296794436, "nzd": 0.025346684418232478, "php": 0.8573480582600951, "pkr": 2.6255622870672712, "pln": 0.06254966894403093, "rub": 1.0531321812005192, "sar": 0.06266328625058594, "sek": 0.15625387168254884, "sgd": 0.02264015309181722, "thb": 0.5131909944388915, "try": 0.09726643946756627, "twd": 0.5172657955963502, "uah": 0.4379506900633505, "usd": 0.016708427434563144, "vef": 4151.837738769448, "vnd": 386.16107383423724, "xag": 0.0010902755166403767, "xau": 1.1940510581836252e-05, "xdr": 0.011998555658743935, "xlm": 0.12930346875094453, "xrp": 0.03507053772472677, "zar": 0.2394869029478256, "bits": 1.5570506756482094, "link": 0.009061924004480387, "sats": 155.70506756482092}, "market_cap": {"aed": 39219327.15645271, "ars": 455768156.7037616, "aud": 15402969.190386664, "bch": 22138.87119214383, "bdt": 899866103.1447386, "bhd": 4024556.8930841945, "bmd": 10677228.0537825, "bnb": 281815.7870050358, "brl": 40808365.621556856, "btc": 995.1844716402424, "cad": 14127051.115187684, "chf": 10411632.005944699, "clp": 7299967434.230847, "cny": 73352129.64036387, "czk": 240484050.9563608, "dkk": 70125898.4116329, "eos": 1430717.8363349664, "eth": 34427.84269298891, "eur": 9377094.025357597, "gbp": 8379541.962748804, "hkd": 83429190.70524333, "huf": 3043223539.8890963, "idr": 150809439922.84592, "ils": 38669983.77308557, "inr": 742919755.5623323, "jpy": 1145828186.140073, "krw": 12376722443.103085, "kwd": 3241200.702462337, "lkr": 1882275592.800922, "ltc": 75267.58733039074, "mmk": 16225638625.06301, "mxn": 204198783.3601749, "myr": 44170987.76144683, "ngn": 3843695327.0811625, "nok": 90730813.1098225, "nzd": 16197354.957588071, "php": 547873267.8680706, "pkr": 1677819616.3713906, "pln": 39971270.94214032, "rub": 672985684.2299134, "sar": 40043876.09290599, "sek": 99851301.313364, "sgd": 14467793.494068097, "thb": 327945721.057904, "try": 62156415.39228967, "twd": 330549651.403976, "uah": 279864721.7059334, "usd": 10677228.0537825, "vef": 2653159224753.8853, "vnd": 246769474085.42804, "xag": 696721.4825103134, "xau": 7630.374256355154, "xdr": 7667466.946613995, "xlm": 82701602.50435331, "xrp": 22412079.75554336, "zar": 153039912.86328107, "bits": 995184471.6402423, "link": 5791902.7257661205, "sats": 99518447164.02423}, "total_volume": {"aed": 6513894.71523283, "ars": 75698029.58324304, "aud": 2558262.134582451, "bch": 3677.0649073698887, "bdt": 149457766.83798295, "bhd": 668434.2077679377, "bmd": 1773369.010524357, "bnb": 46768.174003480635, "brl": 6777816.358224114, "btc": 165.2594432854082, "cad": 2346346.3111938005, "chf": 1729256.4563875734, "clp": 1212443525.6504555, "cny": 12182974.167541964, "czk": 39941730.32019213, "dkk": 11647132.987321932, "eos": 237272.57667660445, "eth": 5708.635463311035, "eur": 1557431.1862198438, "gbp": 1391748.8663045736, "hkd": 13856662.105984753, "huf": 505445635.379654, "idr": 25047773252.250263, "ils": 6422654.879641355, "inr": 123390721.37302962, "jpy": 190309337.44702566, "krw": 2055636155.929527, "kwd": 538327.443572797, "lkr": 312625073.5420993, "ltc": 12495.869867062926, "mmk": 2694898392.0466323, "mxn": 33915150.31557539, "myr": 7336310.554184604, "ngn": 638395110.0986633, "nok": 15069380.503831837, "nzd": 2690200.788965469, "php": 90995665.73252653, "pkr": 278667206.31379944, "pln": 6638784.227799018, "rub": 111775448.73335066, "sar": 6650843.137070582, "sek": 16584192.31262181, "sgd": 2402939.8364266586, "thb": 54468142.47375054, "try": 10323490.357866531, "twd": 54900626.38793017, "uah": 46482422.41454301, "usd": 1773369.010524357, "vef": 440660284248.4538, "vnd": 40985669303.13566, "xag": 115717.70124481668, "xau": 1267.3204296811314, "xdr": 1273481.113623694, "xlm": 13723778.933371829, "xrp": 3722253.636796665, "zar": 25418230.038548943, "bits": 165259443.2854082, "link": 961798.1864666409, "sats": 16525944328.54082}}, "community_data": {"facebook_likes": null, "twitter_followers": 60661, "reddit_average_posts_48h": 0.087, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6374, "reddit_accounts_active_48h": "266.25"}, "developer_data": {"forks": 18, "stars": 72, "subscribers": 13, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 74, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 1037935, "bing_matches": null}}, "SNGLS_20190628": {"id": "singulardtv", "symbol": "sngls", "name": "SingularDTV", "localization": {"en": "SingularDTV", "de": "SingularDTV", "es": "SingularDTV", "fr": "SingularDTV", "it": "SingularDTV", "pl": "SingularDTV", "ro": "SingularDTV", "hu": "SingularDTV", "nl": "SingularDTV", "pt": "SingularDTV", "sv": "SingularDTV", "vi": "SingularDTV", "tr": "SingularDTV", "ru": "SingularDTV", "ja": "SingularDTV", "zh": "SingularDTV", "zh-tw": "SingularDTV", "ko": "\uc2f1\uade4\ub7ec\ub514\ud2f0\ube44", "ar": "SingularDTV", "th": "SingularDTV", "id": "SingularDTV"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/521/thumb/singulardtv.png?1547034199", "small": "https://assets.coingecko.com/coins/images/521/small/singulardtv.png?1547034199"}, "market_data": {"current_price": {"aed": 0.05940801314210553, "ars": 0.6859354676430228, "aud": 0.023215630428336735, "bch": 3.395117586187176e-05, "bdt": 1.3660605744719885, "bhd": 0.006097585131451872, "bmd": 0.01617345106111175, "bnb": 0.0004308983851506409, "brl": 0.061899031901086934, "btc": 1.4644666333556728e-06, "cad": 0.021325746498394773, "chf": 0.01572240585791945, "clp": 11.010883153427942, "cny": 0.11122644029237168, "czk": 0.3626983413621025, "dkk": 0.1059297482840151, "eos": 0.002236233865682408, "eth": 5.201575054747762e-05, "eur": 0.014187884994692257, "gbp": 0.012696514898896083, "hkd": 0.12630847452897762, "huf": 4.591735769766676, "idr": 228.8219856126096, "ils": 0.058242214616169574, "inr": 1.1201918199613206, "jpy": 1.7357162838882336, "krw": 18.668293984076165, "kwd": 0.004913591473072127, "lkr": 2.8503019305908626, "ltc": 0.0001191790477885009, "mmk": 24.58173363602579, "mxn": 0.3106936122290628, "myr": 0.06691957840602615, "ngn": 5.826485744765508, "nok": 0.13718285608442662, "nzd": 0.024415700497071303, "php": 0.8305151060091901, "pkr": 2.5432122484617476, "pln": 0.060323349604909225, "rub": 1.0119113737797312, "sar": 0.06065852820469963, "sek": 0.1500479792106349, "sgd": 0.021887029944019636, "thb": 0.49587800953368694, "try": 0.09384712906704551, "twd": 0.49906468076970895, "uah": 0.4228369092886379, "usd": 0.01617345106111175, "vef": 4018.9027210758622, "vnd": 376.41363488209913, "xag": 0.0010451680325241413, "xau": 1.1347454998986618e-05, "xdr": 0.011602413281513992, "xlm": 0.12616883406409427, "xrp": 0.03416229196083489, "zar": 0.23240172022976888, "bits": 1.4644666333556728, "link": 0.008659375380318132, "sats": 146.44666333556728}, "market_cap": {"aed": 35084636.18431941, "ars": 405093438.668121, "aud": 13710472.784529518, "bch": 20050.57213905337, "bdt": 806755448.0646855, "bhd": 3601055.5584172537, "bmd": 9551567.479064986, "bnb": 254475.99197196733, "brl": 36555759.05587754, "btc": 864.8711902291008, "cad": 12594362.573033296, "chf": 9285193.365208812, "clp": 6502705764.3217325, "cny": 65687084.71027786, "czk": 214199039.4613364, "dkk": 62559013.221856475, "eos": 1320654.360428604, "eth": 30718.98195698328, "eur": 8378950.194362624, "gbp": 7498190.60555056, "hkd": 74594093.31272064, "huf": 2711744938.37112, "idr": 135135576693.81174, "ils": 34396149.64886095, "inr": 661552547.9026424, "jpy": 1025063305.7488455, "krw": 11024948790.098814, "kwd": 2901823.5095448233, "lkr": 1683305011.5821364, "ltc": 70383.66225867986, "mmk": 14517253410.526117, "mxn": 183486566.42958626, "myr": 39520747.081161395, "ngn": 3440952184.3331614, "nok": 81016185.22294472, "nzd": 14419199.091476182, "php": 490477947.3135092, "pkr": 1501946820.9339104, "pln": 35625207.14579714, "rub": 597605281.2086763, "sar": 35823153.83023323, "sek": 88613950.9194646, "sgd": 12925840.170826796, "thb": 292851058.90813285, "try": 55423371.4631087, "twd": 294733013.80010056, "uah": 249715119.94868484, "usd": 9551567.479064986, "vef": 2373446482578.6724, "vnd": 222298890943.6474, "xag": 617245.6918375031, "xau": 6701.475258986788, "xdr": 6852046.16872677, "xlm": 74511625.73557207, "xrp": 20175251.136599656, "zar": 137249663.33022264, "bits": 864871190.2291007, "link": 5113974.003392273, "sats": 86487119022.91008}, "total_volume": {"aed": 3574295.1091819326, "ars": 41269445.94740547, "aud": 1396773.0935234285, "bch": 2042.6793527632017, "bdt": 82189310.36292922, "bhd": 366862.4409477509, "bmd": 973078.9496030639, "bnb": 25925.088370052537, "brl": 3724167.755920849, "btc": 88.10993077049056, "cad": 1283067.8451833613, "chf": 945941.7238565326, "clp": 662472008.7663981, "cny": 6691961.244315235, "czk": 21821818.96132363, "dkk": 6373284.699872883, "eos": 134543.46217531743, "eth": 3129.5381371794406, "eur": 853616.9661971454, "gbp": 763888.3831752973, "hkd": 7599374.880241192, "huf": 276262709.96934885, "idr": 13767120978.984182, "ils": 3504154.605415596, "inr": 67396567.09030028, "jpy": 104429720.7783925, "krw": 1123181677.9403749, "kwd": 295627.22336310905, "lkr": 171488991.32231885, "ltc": 7170.431480488005, "mmk": 1478964968.922473, "mxn": 18692943.929769818, "myr": 4026229.9503776804, "ngn": 350551691.59450376, "nok": 8253634.242796303, "nzd": 1468975.5515839804, "php": 49968109.09009224, "pkr": 153012878.57488912, "pln": 3629366.5123347226, "rub": 60881852.176655285, "sar": 3649532.6004862916, "sek": 9027666.974021217, "sgd": 1316837.5770503886, "thb": 29834600.59482998, "try": 5646331.4743876625, "twd": 30026327.31334923, "uah": 25440068.0466591, "usd": 973078.9496030639, "vef": 241798093901.21445, "vnd": 22647002365.997604, "xag": 62882.745766776534, "xau": 682.7219218310058, "xdr": 698061.538392549, "xlm": 7590973.383468652, "xrp": 2055381.1954959065, "zar": 13982496.435215576, "bits": 88109930.77049056, "link": 520993.0686691295, "sats": 8810993077.049057}}, "community_data": {"facebook_likes": null, "twitter_followers": 6, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2181, "reddit_accounts_active_48h": "1240.58333333333"}, "developer_data": {"forks": 13, "stars": 20, "subscribers": 25, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 4, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "VIB_20190702": {"id": "viberate", "symbol": "vib", "name": "Viberate", "localization": {"en": "Viberate", "de": "Viberate", "es": "Viberate", "fr": "Viberate", "it": "Viberate", "pl": "Viberate", "ro": "Viberate", "hu": "Viberate", "nl": "Viberate", "pt": "Viberate", "sv": "Viberate", "vi": "Viberate", "tr": "Viberate", "ru": "Viberate", "ja": "Viberate", "zh": "Viberate", "zh-tw": "Viberate", "ko": "\ubc14\uc774\ubc84\ub808\uc774\ud2b8", "ar": "Viberate", "th": "Viberate", "id": "Viberate"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/983/thumb/Viberate.png?1547034873", "small": "https://assets.coingecko.com/coins/images/983/small/Viberate.png?1547034873"}, "market_data": {"current_price": {"aed": 0.1415715445922006, "ars": 1.634522626791362, "aud": 0.05489008118503038, "bch": 8.866151841879415e-05, "bdt": 3.259664295497462, "bhd": 0.014531321267809193, "bmd": 0.0385436986061585, "bnb": 0.0011191501492745387, "brl": 0.14838167652412815, "btc": 3.113305036557992e-06, "cad": 0.05052261760856917, "chf": 0.037637921688913833, "clp": 26.113045297636376, "cny": 0.26467186958876887, "czk": 0.8617099066283027, "dkk": 0.25297385706179976, "eos": 0.006221386657344108, "eth": 0.00012437019887762664, "eur": 0.03387220233509215, "gbp": 0.030361256829057083, "hkd": 0.30104555796340055, "huf": 10.950264774009607, "idr": 543.2209926507825, "ils": 0.13747380981858526, "inr": 2.657607290743928, "jpy": 4.158672361111478, "krw": 44.57231850514784, "kwd": 0.011694697768888962, "lkr": 6.8090812692474, "ltc": 0.00032218984213001266, "mmk": 58.44488255930084, "mxn": 0.7411897739038273, "myr": 0.15930114488295163, "ngn": 13.87573149821706, "nok": 0.3288162928091369, "nzd": 0.05733964886254744, "php": 1.971897740594491, "pkr": 6.282622872803819, "pln": 0.14389711719130172, "rub": 2.438016131044923, "sar": 0.14501488445088026, "sek": 0.35782428038013275, "sgd": 0.052141992561808334, "thb": 1.1806705757038447, "try": 0.2232489566967304, "twd": 1.1938139769285456, "uah": 1.0089969421120173, "usd": 0.0385436986061585, "vef": 9577.632789892046, "vnd": 897.6756330794087, "xag": 0.0025163180402003197, "xau": 2.7340587169292428e-05, "xdr": 0.027726563767134508, "xlm": 0.34474008878267304, "xrp": 0.09085375168038667, "zar": 0.5429305856547018, "bits": 3.1133050365579917, "link": 0.01267780837774403, "sats": 311.3305036557992}, "market_cap": {"aed": 25665714.718422245, "ars": 296325024.6430136, "aud": 9951104.006275276, "bch": 16074.248069935249, "bdt": 590949361.5193174, "bhd": 2634404.726003674, "bmd": 6987644.1305212, "bnb": 203107.1280896723, "brl": 26900333.60926755, "btc": 564.0873620574532, "cad": 9159320.074557673, "chf": 6823434.493453988, "clp": 4734072605.967009, "cny": 47982754.7154631, "czk": 156220663.53282365, "dkk": 45862004.72184991, "eos": 1129546.4265331284, "eth": 22535.130696990618, "eur": 6140741.66190203, "gbp": 5504237.158052871, "hkd": 54576994.48143601, "huf": 1985189697.4810798, "idr": 98481337239.01778, "ils": 24922830.320330027, "inr": 481801556.6215035, "jpy": 753931863.4625877, "krw": 8080581548.97604, "kwd": 2120149.0562179666, "lkr": 1234428414.6539183, "ltc": 58367.10290113594, "mmk": 10595559205.344343, "mxn": 134371390.40916806, "myr": 28879940.179088324, "ngn": 2515551886.987632, "nok": 59611592.07747666, "nzd": 10395189.753702294, "php": 357488258.0378928, "pkr": 1138985993.2749581, "pln": 26087321.21468138, "rub": 441991550.48109776, "sar": 26289962.894466504, "sek": 64870493.05010676, "sgd": 9452898.955057353, "thb": 214045515.0061258, "try": 40473133.56839196, "twd": 216428301.65463373, "uah": 182922548.0487845, "usd": 6987644.1305212, "vef": 1736343214812.378, "vnd": 162740943278.2614, "xag": 456187.0194086932, "xau": 4956.615487543923, "xdr": 5026589.755866962, "xlm": 62627034.67332717, "xrp": 16552867.428576475, "zar": 98428688.92515543, "bits": 564087362.0574533, "link": 2297041.697005683, "sats": 56408736205.74532}, "total_volume": {"aed": 2238967.1844842727, "ars": 25850127.8221168, "aud": 868091.754462155, "bch": 1402.1901847439776, "bdt": 51551894.91699547, "bhd": 229814.20143109464, "bmd": 609572.1890753136, "bnb": 17699.464012730798, "brl": 2346670.0562832314, "btc": 49.2372095834785, "cad": 799019.9105736504, "chf": 595247.2426320446, "clp": 412980247.3849692, "cny": 4185810.307942359, "czk": 13628022.559500048, "dkk": 4000805.148558, "eos": 98391.81035924895, "eth": 1966.9262973495145, "eur": 535692.0397593866, "gbp": 480166.1090565148, "hkd": 4761063.58277273, "huf": 173179458.9162962, "idr": 8591090674.128874, "ils": 2174161.126774917, "inr": 42030307.22283735, "jpy": 65769791.340281054, "krw": 704915375.1685848, "kwd": 184952.73617609698, "lkr": 107686255.47065862, "ltc": 5095.462409350645, "mmk": 924311269.8123437, "mxn": 11721985.417523032, "myr": 2519362.467020459, "ngn": 219445988.0671129, "nok": 5200260.345001481, "nzd": 906831.8957944565, "php": 31185746.719563425, "pkr": 99360266.81927586, "pln": 2275746.3320843205, "rub": 38557452.5472375, "sar": 2293423.9255675036, "sek": 5659024.374499576, "sgd": 824630.4765254608, "thb": 18672415.29575497, "try": 3530703.07634312, "twd": 18880279.412229665, "uah": 15957380.76561356, "usd": 609572.1890753136, "vef": 151471156039.00977, "vnd": 14196823878.45239, "xag": 39795.804545065876, "xau": 432.3939365986823, "xdr": 438498.1925000826, "xlm": 5452096.663803178, "xrp": 1436860.5582825243, "zar": 8586497.860394713, "bits": 49237209.5834785, "link": 200500.72216639828, "sats": 4923720958.34785}}, "community_data": {"facebook_likes": null, "twitter_followers": 32662, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1120, "reddit_accounts_active_48h": "554.52"}, "developer_data": {"forks": 0, "stars": 3, "subscribers": 1, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2278285, "bing_matches": null}}, "PIVX_20190705": {"id": "pivx", "symbol": "pivx", "name": "PIVX", "localization": {"en": "PIVX", "de": "PIVX", "es": "PIVX", "fr": "PIVX", "it": "PIVX", "pl": "PIVX", "ro": "PIVX", "hu": "PIVX", "nl": "PIVX", "pt": "PIVX", "sv": "PIVX", "vi": "PIVX", "tr": "PIVX", "ru": "PIVX", "ja": "\u30d4\u30f4\u30af\u30b9", "zh": "\u666e\u7ef4\u5e01", "zh-tw": "\u666e\u7dad\u5e63", "ko": "\ud53c\ubca1\uc2a4", "ar": "PIVX", "th": "PIVX", "id": "PIVX"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/548/thumb/PIVX-Shield.png?1609817792", "small": "https://assets.coingecko.com/coins/images/548/small/PIVX-Shield.png?1609817792"}, "market_data": {"current_price": {"aed": 2.278866801860678, "ars": 26.280435874741368, "aud": 0.8907802131481015, "bch": 0.0014836451938794162, "bdt": 52.637798481443404, "bhd": 0.2339337241055086, "bmd": 0.6204068903385589, "bnb": 0.018692541950683428, "brl": 2.3829828657904044, "btc": 5.852385546945049e-05, "cad": 0.81487343011518, "chf": 0.6124030210462991, "clp": 422.1895640699007, "cny": 4.250903931221739, "czk": 13.987977895928916, "dkk": 4.102569606996911, "eos": 0.10288993595057558, "eth": 0.002104220534876829, "eur": 0.5496718191434992, "gbp": 0.49067112387230205, "hkd": 4.847021891803548, "huf": 177.75898221980424, "idr": 8763.492396680325, "ils": 2.2172721853809754, "inr": 42.75130820289465, "jpy": 67.22387839918946, "krw": 720.1390940384322, "kwd": 0.18847216840217026, "lkr": 109.89317191321547, "ltc": 0.005045531977314393, "mmk": 943.4191835781629, "mxn": 11.851694866826515, "myr": 2.5642657591473355, "ngn": 223.8241938274419, "nok": 5.325758868733298, "nzd": 0.9298664676463245, "php": 31.724632280060995, "pkr": 100.69105992028203, "pln": 2.3306515445903475, "rub": 39.05833618815436, "sar": 2.3268050218702516, "sek": 5.8062993684932565, "sgd": 0.8412705024853034, "thb": 19.018573223328538, "try": 3.5072203305522405, "twd": 19.21276058000452, "uah": 16.315110492637295, "usd": 0.6204068903385589, "vef": 154163.44541029935, "vnd": 14493.914410521138, "xag": 0.04094561394856424, "xau": 0.0004475801428969468, "xdr": 0.44694546664813045, "xlm": 5.8595286178632895, "xrp": 1.519683318356185, "zar": 8.771836239022017, "bits": 58.52385546945049, "link": 0.17251785095566904, "sats": 5852.385546945049}, "market_cap": {"aed": 137606724.55786827, "ars": 1586913591.31807, "aud": 53788728.385611214, "bch": 89514.15063847406, "bdt": 3178472313.98274, "bhd": 14125816.178242393, "bmd": 37462549.37011498, "bnb": 1127668.3974659578, "brl": 143893652.1306115, "btc": 3530.4246232962764, "cad": 49205185.4701774, "chf": 36979245.02069122, "clp": 25493426384.876137, "cny": 256685895.77415368, "czk": 844647795.9462252, "dkk": 247728899.92015433, "eos": 6218001.29770562, "eth": 126997.1912947901, "eur": 33191294.266230706, "gbp": 29628605.821132764, "hkd": 292681786.3364287, "huf": 10733769645.525349, "idr": 529173308159.2744, "ils": 133887405.19385387, "inr": 2581488083.2705693, "jpy": 4059235805.7241235, "krw": 43484762635.441505, "kwd": 11380672.948048504, "lkr": 6635771527.280706, "ltc": 304522.2920250315, "mmk": 56967271466.349556, "mxn": 715650826.8722444, "myr": 154840209.05655932, "ngn": 13515363936.256382, "nok": 321589762.55787814, "nzd": 56148906.45847759, "php": 1915655066.9383512, "pkr": 6080112684.329304, "pln": 140733686.09124258, "rub": 2358492258.1449594, "sar": 140501418.28514773, "sek": 350606642.41034603, "sgd": 50799142.02077709, "thb": 1148414450.9408758, "try": 211779425.45654902, "twd": 1160140228.893719, "uah": 985168994.4574409, "usd": 37462549.37011498, "vef": 9308980565316.947, "vnd": 875198184652.7566, "xag": 2472453.3333288487, "xau": 27026.606992082037, "xdr": 26988282.804076422, "xlm": 353772310.4005173, "xrp": 91872599.84394889, "zar": 529677141.3863526, "bits": 3530424623.2962766, "link": 10407059.891841568, "sats": 353042462329.6276}, "total_volume": {"aed": 5189492.540224051, "ars": 59846466.59227817, "aud": 2028507.0050328805, "bch": 3378.5939835053196, "bdt": 119868112.66469434, "bhd": 532719.7338436578, "bmd": 1412806.1046335725, "bnb": 42567.12456019503, "brl": 5426588.247897551, "btc": 133.27198901484175, "cad": 1855650.1781309654, "chf": 1394579.49307769, "clp": 961420646.2230699, "cny": 9680264.867728315, "czk": 31853773.50026443, "dkk": 9342474.230559263, "eos": 234303.53833917755, "eth": 4791.783688196958, "eur": 1251726.4294198821, "gbp": 1117368.568869229, "hkd": 11037759.613365496, "huf": 404797205.099612, "idr": 19956444308.965412, "ils": 5049227.737349924, "inr": 97354349.46114267, "jpy": 153083899.06451863, "krw": 1639918776.0270977, "kwd": 429193.54091442405, "lkr": 250251482.62265852, "ltc": 11489.811750452509, "mmk": 2148377786.4883113, "mxn": 26988976.297425576, "myr": 5839410.191671492, "ngn": 509698058.36865395, "nok": 12127951.444005994, "nzd": 2117515.202430908, "php": 72244126.96007708, "pkr": 229296202.7868018, "pln": 5307418.052971711, "rub": 88944621.1233113, "sar": 5298658.65512299, "sek": 13222250.30199265, "sgd": 1915762.2522709111, "thb": 43309571.1375422, "try": 7986729.951685745, "twd": 43751779.448292546, "uah": 37153178.117010735, "usd": 1412806.1046335725, "vef": 351064857884.08844, "vnd": 33005904799.101006, "xag": 93242.3772936066, "xau": 1019.2407080657989, "xdr": 1017795.4074207587, "xlm": 13343465.281429783, "xrp": 3460660.9028983954, "zar": 19975445.11566182, "bits": 133271989.01484175, "link": 392861.969755731, "sats": 13327198901.484175}}, "community_data": {"facebook_likes": null, "twitter_followers": 63459, "reddit_average_posts_48h": 0.217, "reddit_average_comments_48h": 1.609, "reddit_subscribers": 8628, "reddit_accounts_active_48h": "1588.91666666667"}, "developer_data": {"forks": 577, "stars": 378, "subscribers": 124, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 508, "pull_request_contributors": 41, "code_additions_deletions_4_weeks": {"additions": 5220, "deletions": -8592}, "commit_count_4_weeks": 108}, "public_interest_stats": {"alexa_rank": 286633, "bing_matches": null}}, "SYS_20190707": {"id": "syscoin", "symbol": "sys", "name": "Syscoin", "localization": {"en": "Syscoin", "de": "Syscoin", "es": "Syscoin", "fr": "Syscoin", "it": "Syscoin", "pl": "Syscoin", "ro": "Syscoin", "hu": "Syscoin", "nl": "Syscoin", "pt": "Syscoin", "sv": "Syscoin", "vi": "Syscoin", "tr": "Syscoin", "ru": "Syscoin", "ja": "\u30b7\u30b9\u30b3\u30a4\u30f3", "zh": "\u7cfb\u7edf\u5e01", "zh-tw": "\u7cfb\u7d71\u5e63", "ko": "\uc2dc\uc2a4\ucf54\uc778", "ar": "Syscoin", "th": "Syscoin", "id": "Syscoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/119/thumb/Syscoin.png?1560401261", "small": "https://assets.coingecko.com/coins/images/119/small/Syscoin.png?1560401261"}, "market_data": {"current_price": {"aed": 0.16879264363901086, "ars": 1.9313926572492948, "aud": 0.0653550556879305, "bch": 0.00010871096313247677, "bdt": 3.8825548622511046, "bhd": 0.01732647160161427, "bmd": 0.045952716089680934, "bnb": 0.001408172700275664, "brl": 0.1758382059753131, "btc": 3.829319275016734e-06, "cad": 0.06000344832484241, "chf": 0.045298992750589316, "clp": 31.174465140564955, "cny": 0.3162052346847045, "czk": 1.0358115802195924, "dkk": 0.30382855989669, "eos": 0.007570570953322103, "eth": 0.00015119746995247634, "eur": 0.040711165481627835, "gbp": 0.0365232187480785, "hkd": 0.3583103298561967, "huf": 13.121490104305183, "idr": 648.3629180437201, "ils": 0.16400524372407188, "inr": 3.1612217974564403, "jpy": 4.953402848682465, "krw": 53.75910996408169, "kwd": 0.013959010613846311, "lkr": 8.09699816166118, "ltc": 0.0003770972621982598, "mmk": 69.45309469172707, "mxn": 0.8739655167664271, "myr": 0.19013483119427027, "ngn": 16.554069766989432, "nok": 0.39189073666589175, "nzd": 0.06849413167673273, "php": 2.352267196487149, "pkr": 7.288867906465808, "pln": 0.17259702305135943, "rub": 2.9098362693172213, "sar": 0.17232957824371747, "sek": 0.4276480155421879, "sgd": 0.062334124132194794, "thb": 1.4083588427165459, "try": 0.2584070112522897, "twd": 1.4273373144615822, "uah": 1.2039611615496453, "usd": 0.045952716089680934, "vef": 11418.682075694927, "vnd": 1069.4255376127858, "xag": 0.0030027586351036467, "xau": 3.240539585928218e-05, "xdr": 0.03316177756611835, "xlm": 0.43502973476829077, "xrp": 0.11271113880051632, "zar": 0.6468279042789645, "bits": 3.8293192750167337, "link": 0.013018780152925222, "sats": 382.9319275016734}, "market_cap": {"aed": 94087651.71686856, "ars": 1076588385.2878425, "aud": 36429927.187190466, "bch": 60597.186088801005, "bdt": 2164196624.7792645, "bhd": 9658045.459737847, "bmd": 25614760.535042576, "bnb": 784937.4221787348, "brl": 98014958.03162244, "btc": 2134.522278299079, "cad": 33446857.790039975, "chf": 25250364.95167117, "clp": 17377133003.960117, "cny": 176257728.71768206, "czk": 577377527.2601763, "dkk": 169358777.1889762, "eos": 4219954.3048651405, "eth": 84279.82752485582, "eur": 22693038.489373636, "gbp": 20358611.673251893, "hkd": 199727765.35312566, "huf": 7314123200.656315, "idr": 361407601088.90967, "ils": 91419080.34956732, "inr": 1762114325.9949102, "jpy": 2761103991.219599, "krw": 29966166213.539593, "kwd": 7780970.192969361, "lkr": 4513393039.899226, "ltc": 210199.89440401446, "mmk": 38714238032.726875, "mxn": 487162007.6638697, "myr": 105984119.87024277, "ngn": 9227496632.283754, "nok": 218446007.76171324, "nzd": 38179697.09409978, "php": 1311190416.5765848, "pkr": 4062928633.670131, "pln": 96208272.12680416, "rub": 1621988112.5041852, "sar": 96059194.22049023, "sek": 238377672.60636732, "sgd": 34746012.82961672, "thb": 785041180.8779876, "try": 144040097.6709582, "twd": 795620076.978959, "uah": 671106726.0181181, "usd": 25614760.535042576, "vef": 6364951451920.574, "vnd": 596114471287.1941, "xag": 1673784.4882249106, "xau": 18063.272981706723, "xdr": 18484891.940113537, "xlm": 242492358.01352665, "xrp": 62826946.38490556, "zar": 360551960.47943026, "bits": 2134522278.2990792, "link": 7256871.072098145, "sats": 213452227829.9079}, "total_volume": {"aed": 3533687.2620894206, "ars": 40433857.091610305, "aud": 1368213.2278909907, "bch": 2275.872558120904, "bdt": 81281591.2193534, "bhd": 362731.0448820293, "bmd": 962023.7233311968, "bnb": 29480.206166023512, "brl": 3681186.66339801, "btc": 80.16710001615698, "cad": 1256176.9070955643, "chf": 948337.973843091, "clp": 652639878.1054758, "cny": 6619781.442614321, "czk": 21684796.849172316, "dkk": 6360674.783090907, "eos": 158490.49797283718, "eth": 3165.330917938957, "eur": 852291.4493531528, "gbp": 764616.4553036372, "hkd": 7501254.919591001, "huf": 274699426.71423, "idr": 13573528652.12608, "ils": 3433462.668569055, "inr": 66180426.80936771, "jpy": 103699877.98651467, "krw": 1125451192.6930628, "kwd": 292232.9844125949, "lkr": 169511292.95785722, "ltc": 7894.560824870045, "mmk": 1454005996.551169, "mxn": 18296536.789291438, "myr": 3980487.636105919, "ngn": 346560751.7615211, "nok": 8204263.375652502, "nzd": 1433930.0304554687, "php": 49244898.65230326, "pkr": 152593022.54436535, "pln": 3613332.244120287, "rub": 60917651.01826758, "sar": 3607733.266050499, "sek": 8952844.819535665, "sgd": 1304969.788319196, "thb": 29484103.07265462, "try": 5409771.091977695, "twd": 29881418.87039036, "uah": 25205021.551277455, "usd": 962023.7233311968, "vef": 239051006790.47818, "vnd": 22388507689.33651, "xag": 62862.98804992727, "xau": 678.4095094559285, "xdr": 694244.4199419604, "xlm": 9107381.691754969, "xrp": 2359616.5501547162, "zar": 13541393.018305156, "bits": 80167100.01615699, "link": 272549.18580884195, "sats": 8016710001.615698}}, "community_data": {"facebook_likes": null, "twitter_followers": 61423, "reddit_average_posts_48h": 0.261, "reddit_average_comments_48h": 2.174, "reddit_subscribers": 4605, "reddit_accounts_active_48h": "782.375"}, "developer_data": {"forks": 40, "stars": 102, "subscribers": 56, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 119, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 827, "deletions": -453}, "commit_count_4_weeks": 126}, "public_interest_stats": {"alexa_rank": 806939, "bing_matches": null}}, "CND_20190709": {"id": "cindicator", "symbol": "cnd", "name": "Cindicator", "localization": {"en": "Cindicator", "de": "Cindicator", "es": "Cindicator", "fr": "Cindicator", "it": "Cindicator", "pl": "Cindicator", "ro": "Cindicator", "hu": "Cindicator", "nl": "Cindicator", "pt": "Cindicator", "sv": "Cindicator", "vi": "Cindicator", "tr": "Cindicator", "ru": "Cindicator", "ja": "\u30b7\u30f3\u30c7\u30a3\u30b1\u30fc\u30bf\u30fc", "zh": "Cindicator", "zh-tw": "Cindicator", "ko": "\uc2e0\ub514\ucf00\uc774\ud130", "ar": "Cindicator", "th": "Cindicator", "id": "Cindicator"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1006/thumb/cindicator.png?1547034913", "small": "https://assets.coingecko.com/coins/images/1006/small/cindicator.png?1547034913"}, "market_data": {"current_price": {"aed": 0.050674148126713475, "ars": 0.576260078961384, "aud": 0.019725560471606153, "bch": 3.460210248155365e-05, "bdt": 1.165709160448195, "bhd": 0.0052010610722577144, "bmd": 0.013796027746262452, "bnb": 0.00042227819158622155, "brl": 0.05272841804621528, "btc": 1.255234155512671e-06, "cad": 0.01804818423410451, "chf": 0.013684693802350096, "clp": 9.436551958582273, "cny": 0.09510498667302242, "czk": 0.3134002235035214, "dkk": 0.09171875166270221, "eos": 0.0024037139561467248, "eth": 4.795442281553407e-05, "eur": 0.012281154919584134, "gbp": 0.011018266539691264, "hkd": 0.10750071760303928, "huf": 3.9831891309009038, "idr": 193.98923087783123, "ils": 0.04931045217207865, "inr": 0.9443105071761743, "jpy": 1.4963861494983586, "krw": 16.210677502552066, "kwd": 0.0041953720376384195, "lkr": 2.43023359747546, "ltc": 0.00011656126916335585, "mmk": 20.7854923970135, "mxn": 0.2622895414668604, "myr": 0.05705347274466858, "ngn": 4.9665699886544825, "nok": 0.11889002830896626, "nzd": 0.02081791615252747, "php": 0.707724524351737, "pkr": 2.1645967533885813, "pln": 0.05225935310284234, "rub": 0.8799961850286478, "sar": 0.0517399326581955, "sek": 0.13027589000795645, "sgd": 0.018758417538509865, "thb": 0.4246624280715781, "try": 0.07765033514461753, "twd": 0.43019935343931875, "uah": 0.3563250600689928, "usd": 0.013796027746262452, "vef": 3428.1424069601812, "vnd": 321.3686511790411, "xag": 0.0009195207008394709, "xau": 9.860296950808719e-06, "xdr": 0.009969051037532517, "xlm": 0.13785779419431504, "xrp": 0.036525116903783156, "zar": 0.19557938734489044, "bits": 1.255234155512671, "link": 0.00373662649307393, "sats": 125.52341555126709}, "market_cap": {"aed": 88274013.22137001, "ars": 1003841045.3784986, "aud": 34361789.003643304, "bch": 60276.621608043744, "bdt": 2030657241.3287435, "bhd": 9060212.175833313, "bmd": 24032584.280069333, "bnb": 735605.6696595508, "brl": 91852537.11842532, "btc": 2186.609159419274, "cad": 31439811.276535235, "chf": 23838641.32492915, "clp": 16438407810.488869, "cny": 165672224.62230045, "czk": 545941007.3150531, "dkk": 159773426.81075725, "eos": 4187252.9759100485, "eth": 83536.27066520094, "eur": 21393686.363196366, "gbp": 19193743.598198812, "hkd": 187265501.59794286, "huf": 6938687733.341634, "idr": 337927889552.1451, "ils": 85898464.36303796, "inr": 1644982328.8021894, "jpy": 2606694253.937724, "krw": 28238887343.688526, "kwd": 7308308.879569097, "lkr": 4233450006.463477, "ltc": 203048.91933253052, "mmk": 36208183037.99781, "mxn": 456906555.0618926, "myr": 99386752.2902271, "ngn": 8651730340.824959, "nok": 207105601.55035415, "nzd": 36264664.99435492, "php": 1232851193.936091, "pkr": 3770712473.5428824, "pln": 91035429.25290294, "rub": 1532947227.4053617, "sar": 90130602.45475823, "sek": 226939693.35669485, "sgd": 32677032.747857507, "thb": 739758993.016955, "try": 135266343.1866622, "twd": 749404278.4570869, "uah": 620715773.7508025, "usd": 24032584.280069333, "vef": 5971800204712.5625, "vnd": 559821952846.164, "xag": 1601798.6587610194, "xau": 17176.568636651187, "xdr": 17366017.498530995, "xlm": 240147317.66083106, "xrp": 63626499.342708334, "zar": 340697931.04640424, "bits": 2186609159.419274, "link": 6509177.33492291, "sats": 218660915941.9274}, "total_volume": {"aed": 4137441.049290925, "ars": 47050462.49224618, "aud": 1610551.8618964273, "bch": 2825.191236386681, "bdt": 95177780.19499244, "bhd": 424656.04999256216, "bmd": 1126417.5842050773, "bnb": 34478.15481219978, "brl": 4305168.00683182, "btc": 102.48731381736559, "cad": 1473597.5063384315, "chf": 1117327.3943005407, "clp": 770475259.6841958, "cny": 7765128.579355352, "czk": 25588490.335111573, "dkk": 7488649.383312209, "eos": 196258.3518532244, "eth": 3915.3810135280896, "eur": 1002731.3013714411, "gbp": 899619.035713308, "hkd": 8777214.778763618, "huf": 325219284.91169053, "idr": 15838825843.649523, "ils": 4026098.050345003, "inr": 77101030.80366927, "jpy": 122176883.27080382, "krw": 1323568821.880573, "kwd": 342543.5873567646, "lkr": 198423626.5880184, "ltc": 9516.990371263588, "mmk": 1697093146.1557775, "mxn": 21415407.180621207, "myr": 4658299.919480113, "ngn": 405510330.3138278, "nok": 9707128.81540412, "nzd": 1699740.4797962012, "php": 57784266.867609225, "pkr": 176734918.96177682, "pln": 4266869.808968847, "rub": 71849897.30962203, "sar": 4224460.18692352, "sek": 10636761.247648552, "sgd": 1531586.6099908946, "thb": 34672822.86820862, "try": 6339991.810324584, "twd": 35124901.55428867, "uah": 29093215.868848998, "usd": 1126417.5842050773, "vef": 279900849677.92334, "vnd": 26239096235.393517, "xag": 75076.99357496292, "xau": 805.0731757830542, "xdr": 813952.7255993438, "xlm": 11255808.291794006, "xrp": 2982201.4497407465, "zar": 15968658.88248334, "bits": 102487313.81736559, "link": 305087.9474017662, "sats": 10248731381.736559}}, "community_data": {"facebook_likes": null, "twitter_followers": 36201, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 6137, "reddit_accounts_active_48h": "278.434782608696"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 575045, "bing_matches": null}}, "SNM_20190711": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.07735424639602421, "ars": 0.8802048901620865, "aud": 0.030162312351108757, "bch": 5.11100643143561e-05, "bdt": 1.779490187800831, "bhd": 0.00793957657558169, "bmd": 0.02106005240249048, "bnb": 0.0006370674781225233, "brl": 0.08043528994240372, "btc": 1.8413442657782473e-06, "cad": 0.027541283529356923, "chf": 0.02087893595182903, "clp": 14.40501826512018, "cny": 0.14518063024442818, "czk": 0.4784385639105542, "dkk": 0.13998456775537121, "eos": 0.0035400271165284825, "eth": 6.882114284767334e-05, "eur": 0.018755893129186435, "gbp": 0.016815735801606915, "hkd": 0.16417258550099403, "huf": 6.077417953061843, "idr": 296.31726873508137, "ils": 0.07528126331794228, "inr": 1.4415706536555175, "jpy": 2.28459448462217, "krw": 24.745981405070825, "kwd": 0.0064043619355973426, "lkr": 3.709824875279168, "ltc": 0.00017520129970741307, "mmk": 31.68472201591121, "mxn": 0.4003537021765835, "myr": 0.08709384671049915, "ngn": 7.588601325270619, "nok": 0.18141760941077328, "nzd": 0.03176241301254522, "php": 1.0810005277100687, "pkr": 3.304322221950739, "pln": 0.07975547145085131, "rub": 1.342976375649171, "sar": 0.07898151452505989, "sek": 0.19876435337365608, "sgd": 0.02864143960681051, "thb": 0.6482284129486546, "try": 0.1209965507286047, "twd": 0.6567390749652346, "uah": 0.5406241601433186, "usd": 0.02106005240249048, "vef": 5233.162766966758, "vnd": 490.8763069558588, "xag": 0.001405080785379924, "xau": 1.5078786919659123e-05, "xdr": 0.015218120226353986, "xlm": 0.20008933224872116, "xrp": 0.053140282831900885, "zar": 0.29925500485863843, "bits": 1.8413442657782473, "link": 0.006391272227815148, "sats": 184.13442657782474}, "market_cap": {"aed": 31689868.92315707, "ars": 360595298.8276041, "aud": 12354886.180670645, "bch": 20982.730174125943, "bdt": 729007306.3700733, "bhd": 3252622.224479248, "bmd": 8627713.813317502, "bnb": 261217.84891794986, "brl": 32952086.198617805, "btc": 755.2698135299784, "cad": 11281003.270040773, "chf": 8552342.105444362, "clp": 5901476699.8217, "cny": 59476439.329176, "czk": 195995403.70543894, "dkk": 57347128.18776302, "eos": 1451960.2720822596, "eth": 28279.13707822201, "eur": 7684100.7535549365, "gbp": 6888168.271134966, "hkd": 67252597.78911905, "huf": 2489855830.07131, "idr": 121380892243.68936, "ils": 30840625.797084607, "inr": 590571134.5687838, "jpy": 936115576.4587612, "krw": 10138152761.92546, "kwd": 2623687.770629843, "lkr": 1519811380.7945635, "ltc": 72134.83226922444, "mmk": 12980343476.043543, "mxn": 164013702.36254674, "myr": 35679910.474974416, "ngn": 3108837491.309106, "nok": 74320852.33067942, "nzd": 13011179.115022054, "php": 442844286.797048, "pkr": 1353688297.3095093, "pln": 32674446.368105274, "rub": 550141857.449282, "sar": 32356515.114084527, "sek": 81428190.41581412, "sgd": 11732810.759302834, "thb": 265561031.1739121, "try": 49529108.060397804, "twd": 269047611.11386657, "uah": 221478581.58843344, "usd": 8627713.813317502, "vef": 2143880263401.3638, "vnd": 201093590752.0466, "xag": 575680.8393852215, "xau": 6178.305861716643, "xdr": 6234437.767786085, "xlm": 82192767.14934015, "xrp": 21834434.226138245, "zar": 122589460.03066498, "bits": 755269813.5299784, "link": 2621527.6922596977, "sats": 75526981352.99783}, "total_volume": {"aed": 1803846.2593386055, "ars": 20525754.855676986, "aud": 703363.7691847073, "bch": 1191.8505140106356, "bdt": 41496451.30482795, "bhd": 185145.30454182727, "bmd": 491105.5115606426, "bnb": 14855.962547605619, "brl": 1875694.0134689035, "btc": 42.93884461072584, "cad": 642243.2327434303, "chf": 486882.0041612204, "clp": 335914827.22501004, "cny": 3385509.5097700167, "czk": 11156848.577064605, "dkk": 3264341.011324703, "eos": 82550.92602693029, "eth": 1604.860326007442, "eur": 437374.1486463051, "gbp": 392131.053393779, "hkd": 3828388.460095403, "huf": 141721083.86840084, "idr": 6909908915.002774, "ils": 1755505.7616246687, "inr": 33616407.01476041, "jpy": 53275125.89409857, "krw": 577058766.272125, "kwd": 149345.18606559114, "lkr": 86510489.54459962, "ltc": 4085.5702670864925, "mmk": 738865284.7055926, "mxn": 9335964.885318954, "myr": 2030966.8430590322, "ngn": 176960810.19418928, "nok": 4230530.208236833, "nzd": 740676.9837420627, "php": 25208166.96047715, "pkr": 77054454.76386443, "pln": 1859841.1275557254, "rub": 31317258.256159365, "sar": 1841793.0000058743, "sek": 4635043.995999089, "sgd": 667898.0935618441, "thb": 15116227.645836525, "try": 2821553.8977299803, "twd": 15314690.258535342, "uah": 12606972.653963095, "usd": 491105.5115606426, "vef": 122033650659.26404, "vnd": 11446887938.989546, "xag": 32765.489121310795, "xau": 351.62663522230366, "xdr": 354875.78928678855, "xlm": 4665941.565283814, "xrp": 1239193.77245005, "zar": 6978414.841494156, "bits": 42938844.610725835, "link": 149039.94334759135, "sats": 4293884461.0725837}}, "community_data": {"facebook_likes": null, "twitter_followers": 31275, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.174, "reddit_subscribers": 9982, "reddit_accounts_active_48h": "865.0"}, "developer_data": {"forks": 62, "stars": 324, "subscribers": 70, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1504, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 259, "deletions": -186}, "commit_count_4_weeks": 2}, "public_interest_stats": {"alexa_rank": 14838367, "bing_matches": null}}, "DLT_20190715": {"id": "agrello", "symbol": "dlt", "name": "Agrello", "localization": {"en": "Agrello", "de": "Agrello", "es": "Agrello", "fr": "Agrello", "it": "Agrello", "pl": "Agrello", "ro": "Agrello", "hu": "Agrello", "nl": "Agrello", "pt": "Agrello", "sv": "Agrello", "vi": "Agrello", "tr": "Agrello", "ru": "Agrello", "ja": "Agrello", "zh": "Agrello", "zh-tw": "Agrello", "ko": "\uc544\uadf8\ub810\ub85c", "ar": "Agrello", "th": "Agrello", "id": "Agrello"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/900/thumb/delta_200x200.png?1616645398", "small": "https://assets.coingecko.com/coins/images/900/small/delta_200x200.png?1616645398"}, "market_data": {"current_price": {"aed": 0.25689960913706567, "ars": 2.916537627910191, "aud": 0.10030627603918714, "bch": 0.00020179690412682169, "bdt": 5.907792989885798, "bhd": 0.02636437833036744, "bmd": 0.06993927310880309, "bnb": 0.0023691032428162914, "brl": 0.26271261182150396, "btc": 6.146206850625403e-06, "cad": 0.09139363470984024, "chf": 0.06926988432587887, "clp": 47.61955288159067, "cny": 0.4804967941120979, "czk": 1.5914474575659732, "dkk": 0.46416863153357063, "eos": 0.014866004349121179, "eth": 0.0002595924426039597, "eur": 0.062160417335822386, "gbp": 0.05584930714830349, "hkd": 0.5470824790753336, "huf": 20.257010197641318, "idr": 987.9815398681528, "ils": 0.24834037095473732, "inr": 4.788846938669402, "jpy": 7.593481729605506, "krw": 82.12304949610642, "kwd": 0.02128287050337426, "lkr": 12.262293502441562, "ltc": 0.0006795858433662341, "mmk": 105.7403597714766, "mxn": 1.33375312846857, "myr": 0.28783507847927864, "ngn": 25.17813831916911, "nok": 0.597520514723936, "nzd": 0.10496667950279229, "php": 3.5868133107568387, "pkr": 11.089056251203136, "pln": 0.2652481902287905, "rub": 4.394606250082389, "sar": 0.26231773468553193, "sek": 0.6562939129416471, "sgd": 0.09494948723323793, "thb": 2.1527308262889573, "try": 0.3978275242083961, "twd": 2.1664389238182777, "uah": 1.802446691093734, "usd": 0.06993927310880309, "vef": 17379.045074855825, "vnd": 1625.514141806052, "xag": 0.004624703661039426, "xau": 4.980305698804749e-05, "xdr": 0.05051405963847155, "xlm": 0.7918581515172226, "xrp": 0.20976019408400765, "zar": 0.9765478028064982, "bits": 6.146206850625403, "link": 0.025010600404313302, "sats": 614.6206850625404}, "market_cap": {"aed": 20609297.115864035, "ars": 233996292.64583188, "aud": 8047076.6771362545, "bch": 16393.63275820091, "bdt": 473941791.6459881, "bhd": 2115033.6044135084, "bmd": 5610749.134296402, "bnb": 190934.0496792412, "brl": 21076111.443837497, "btc": 495.3634184563011, "cad": 7331857.652740115, "chf": 5556279.981700655, "clp": 3820216836.219625, "cny": 38546968.702443175, "czk": 127642298.50558984, "dkk": 37229340.375745006, "eos": 1199495.4833841904, "eth": 20920.291460028267, "eur": 4985863.17096244, "gbp": 4479717.491557536, "hkd": 43892609.9401441, "huf": 1624729128.959682, "idr": 79244991979.46698, "ils": 19922648.02605967, "inr": 384176409.34897673, "jpy": 608981172.7630019, "krw": 6588197740.982204, "kwd": 1707379.0153120703, "lkr": 983719870.0404083, "ltc": 54965.58140018174, "mmk": 8482825252.201995, "mxn": 106997547.06594598, "myr": 23091038.062196888, "ngn": 2019869688.346705, "nok": 47924858.96674325, "nzd": 8420690.851239953, "php": 287708594.4586086, "pkr": 889599076.3989121, "pln": 21272313.73031468, "rub": 352546933.2542072, "sar": 21043956.24054883, "sek": 52641439.84375417, "sgd": 7615020.940049771, "thb": 172698858.35364348, "try": 31931895.473107748, "twd": 173792954.43483117, "uah": 144597959.946437, "usd": 5610749.134296402, "vef": 1394201823587.0454, "vnd": 130394778700.32317, "xag": 370959.27982829715, "xau": 3996.143855919929, "xdr": 4052397.2267403854, "xlm": 63623759.917784, "xrp": 16902791.03468322, "zar": 78341958.77782471, "bits": 495363418.4563011, "link": 2015769.5331494603, "sats": 49536341845.630104}, "total_volume": {"aed": 922165.8312404283, "ars": 10469192.051400986, "aud": 360059.0157883702, "bch": 724.3693770533117, "bdt": 21206590.588496055, "bhd": 94637.46924265998, "bmd": 251053.74095108057, "bnb": 8504.12372577981, "brl": 943032.1629195778, "btc": 22.0624000496575, "cad": 328066.23336401134, "chf": 248650.90559643824, "clp": 170934960.6013619, "cny": 1724789.4110821097, "czk": 5712653.563434513, "dkk": 1666177.9026121888, "eos": 53362.95101374376, "eth": 931.8320157112091, "eur": 223130.79072127744, "gbp": 200476.4542990754, "hkd": 1963805.1251545849, "huf": 72714484.50272682, "idr": 3546454667.7321577, "ils": 891441.6233690943, "inr": 17190026.22353188, "jpy": 27257532.28941113, "krw": 294788576.97354615, "kwd": 76396.90864011834, "lkr": 44016680.75158475, "ltc": 2439.4386828852175, "mmk": 379565181.4802891, "mxn": 4787635.008535651, "myr": 1033211.6708841703, "ngn": 90379346.74238901, "nok": 2144857.3004625347, "nzd": 376787.98181664565, "php": 12875211.01853278, "pkr": 39805232.907562256, "pln": 952133.865244018, "rub": 15774861.391164731, "sar": 941614.713498169, "sek": 2355830.0606170394, "sgd": 340830.30766144587, "thb": 7727434.146474253, "try": 1428040.1234718186, "twd": 7776640.6797006475, "uah": 6470055.586079893, "usd": 251053.74095108057, "vef": 62383752164.71669, "vnd": 5834939199.817465, "xag": 16600.81815674415, "xau": 178.7728583938546, "xdr": 181325.07072436318, "xlm": 2842450.9206971433, "xrp": 752954.3715087097, "zar": 3505412.1699367655, "bits": 22062400.0496575, "link": 89777.95329910485, "sats": 2206240004.96575}}, "community_data": {"facebook_likes": null, "twitter_followers": 15086, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2675, "reddit_accounts_active_48h": "24.44"}, "developer_data": {"forks": 3, "stars": 6, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1, "pull_request_contributors": 1, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 2880330, "bing_matches": null}}, "SYS_20190717": {"id": "syscoin", "symbol": "sys", "name": "Syscoin", "localization": {"en": "Syscoin", "de": "Syscoin", "es": "Syscoin", "fr": "Syscoin", "it": "Syscoin", "pl": "Syscoin", "ro": "Syscoin", "hu": "Syscoin", "nl": "Syscoin", "pt": "Syscoin", "sv": "Syscoin", "vi": "Syscoin", "tr": "Syscoin", "ru": "Syscoin", "ja": "\u30b7\u30b9\u30b3\u30a4\u30f3", "zh": "\u7cfb\u7edf\u5e01", "zh-tw": "\u7cfb\u7d71\u5e63", "ko": "\uc2dc\uc2a4\ucf54\uc778", "ar": "Syscoin", "th": "Syscoin", "id": "Syscoin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/119/thumb/Syscoin.png?1560401261", "small": "https://assets.coingecko.com/coins/images/119/small/Syscoin.png?1560401261"}, "market_data": {"current_price": {"aed": 0.12485445677500157, "ars": 1.4116716769357016, "aud": 0.04841649746665552, "bch": 9.843963745473545e-05, "bdt": 2.872155309760632, "bhd": 0.012815823758328708, "bmd": 0.03399161273623181, "bnb": 0.001076225244718238, "brl": 0.12706404756930778, "btc": 2.9808333652642617e-06, "cad": 0.0443233634274093, "chf": 0.03344149247570854, "clp": 23.10783825421767, "cny": 0.2338910525296488, "czk": 0.7717013864668462, "dkk": 0.22519443437753478, "eos": 0.007128424489739829, "eth": 0.00012565542540745957, "eur": 0.030130403470684828, "gbp": 0.027037608602653394, "hkd": 0.2659690734352817, "huf": 9.831054235572916, "idr": 475.22108877654074, "ils": 0.12085377992239815, "inr": 2.3304819650024116, "jpy": 3.6682048884304352, "krw": 40.01900550662033, "kwd": 0.010345075403370223, "lkr": 5.964492208793748, "ltc": 0.00033489797139719187, "mmk": 51.3523903474829, "mxn": 0.6454434499935792, "myr": 0.13980845494927738, "ngn": 12.26138775269451, "nok": 0.29001847936229286, "nzd": 0.05077164034669797, "php": 1.7351955530056467, "pkr": 5.370674812324616, "pln": 0.1287772248512138, "rub": 2.1432051746321443, "sar": 0.1274770456640529, "sek": 0.3185829912090577, "sgd": 0.04614038508622445, "thb": 1.0500349090349317, "try": 0.1942787906610302, "twd": 1.0555245544918341, "uah": 0.8725986905518033, "usd": 0.03399161273623181, "vef": 8446.495704795356, "vnd": 786.7085845403086, "xag": 0.0022327649162050558, "xau": 2.4016434062657137e-05, "xdr": 0.02457355659540397, "xlm": 0.35066604645710486, "xrp": 0.10224158453771938, "zar": 0.474478690709624, "bits": 2.9808333652642616, "link": 0.010680857693205672, "sats": 298.0833365264262}, "market_cap": {"aed": 69657996.50257626, "ars": 787590793.9111838, "aud": 27012221.255961962, "bch": 54920.810186967785, "bdt": 1602414440.7011647, "bhd": 7150122.066880328, "bmd": 18964382.227574926, "bnb": 600440.6752388943, "brl": 70890757.20489764, "btc": 1663.0474033179576, "cad": 24728606.205646228, "chf": 18657462.665603798, "clp": 12892176682.127666, "cny": 130490993.5930795, "czk": 430542680.39796317, "dkk": 125639032.25768335, "eos": 3977044.8008115934, "eth": 70104.86777685506, "eur": 16810161.157197893, "gbp": 15084648.911457581, "hkd": 148387756.95877087, "huf": 5484878627.859193, "idr": 265132297196.25543, "ils": 67425964.57191968, "inr": 1300207527.7136457, "jpy": 2046541308.0887363, "krw": 22327146484.168453, "kwd": 5771658.015904585, "lkr": 3327671179.319765, "ltc": 186844.12493456365, "mmk": 28650195752.88484, "mxn": 360101663.5175931, "myr": 78001035.10471767, "ngn": 6840794692.11975, "nok": 161805247.0286023, "nzd": 28326187.44298166, "php": 968089156.6439774, "pkr": 2996372391.9568324, "pln": 71846562.06916738, "rub": 1195723263.8308222, "sar": 71121174.44896261, "sek": 177741775.9897225, "sgd": 25742347.25762118, "thb": 585828731.3920143, "try": 108390774.9066462, "twd": 588891479.121768, "uah": 486834656.16407394, "usd": 18964382.227574926, "vef": 4712414626287.198, "vnd": 438915399946.1212, "xag": 1245689.8595487464, "xau": 13399.09461907074, "xdr": 13709920.843780689, "xlm": 195641348.0833948, "xrp": 57041968.08112877, "zar": 264718103.23566663, "bits": 1663047403.3179576, "link": 5958995.514101671, "sats": 166304740331.79575}, "total_volume": {"aed": 563502.4261511976, "ars": 6371261.670824626, "aud": 218516.93958646324, "bch": 444.28509776908635, "bdt": 12962825.093619013, "bhd": 57841.32955669012, "bmd": 153413.4763020624, "bnb": 4857.299868572401, "brl": 573474.9157647379, "btc": 13.45331898168302, "cad": 200043.5024240735, "chf": 150930.63260158937, "clp": 104292015.32490468, "cny": 1055614.5047591368, "czk": 3482900.128442815, "dkk": 1016364.280501159, "eos": 32172.535913898348, "eth": 567.1174173923552, "eur": 135986.7792884813, "gbp": 122028.14732018596, "hkd": 1200391.4159992982, "huf": 44370245.616082266, "idr": 2144803184.4499693, "ils": 545446.2736443507, "inr": 10518104.642007507, "jpy": 16555615.29513697, "krw": 180616753.91994363, "kwd": 46690.1642047221, "lkr": 26919390.122148495, "ltc": 1511.486448060994, "mmk": 231767429.82925528, "mxn": 2913063.413268585, "myr": 630993.923607716, "ngn": 55339007.714199014, "nok": 1308932.9846177695, "nzd": 229146.34570552743, "php": 7831413.705379431, "pkr": 24239329.255725812, "pln": 581206.9549703614, "rub": 9672873.094321301, "sar": 575338.8895018075, "sek": 1437852.4652934438, "sgd": 208244.2197997997, "thb": 4739095.696446986, "try": 876833.4964966235, "twd": 4763871.972869774, "uah": 3938277.3501502275, "usd": 153413.4763020624, "vef": 38121353014.29486, "vnd": 3550631731.6435494, "xag": 10077.080785142913, "xau": 108.39275754645878, "xdr": 110907.20442304954, "xlm": 1582652.0979024516, "xrp": 461444.32828995364, "zar": 2141452.538244112, "bits": 13453318.981683021, "link": 48205.64182457079, "sats": 1345331898.168302}}, "community_data": {"facebook_likes": null, "twitter_followers": 61294, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.208, "reddit_subscribers": 4604, "reddit_accounts_active_48h": "940.92"}, "developer_data": {"forks": 41, "stars": 103, "subscribers": 55, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 120, "pull_request_contributors": 14, "code_additions_deletions_4_weeks": {"additions": 26, "deletions": -39}, "commit_count_4_weeks": 7}, "public_interest_stats": {"alexa_rank": 806939, "bing_matches": null}}, "BTS_20190719": {"id": "bitshares", "symbol": "bts", "name": "BitShares", "localization": {"en": "BitShares", "de": "BitShares", "es": "BitShares", "fr": "BitShares", "it": "BitShares", "pl": "BitShares", "ro": "BitShares", "hu": "BitShares", "nl": "BitShares", "pt": "BitShares", "sv": "BitShares", "vi": "BitShares", "tr": "BitShares", "ru": "BitShares", "ja": "\u30d3\u30c3\u30c8\u30b7\u30a7\u30a2\u30fc\u30ba", "zh": "\u6bd4\u7279\u80a1", "zh-tw": "\u6bd4\u7279\u80a1bts", "ko": "\ube44\ud2b8\uc250\uc5b4", "ar": "BitShares", "th": "BitShares", "id": "BitShares"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/95/thumb/bitshares.png?1547273755", "small": "https://assets.coingecko.com/coins/images/95/small/bitshares.png?1547273755"}, "market_data": {"current_price": {"aed": 0.15797684355103167, "ars": 1.8238910582713297, "aud": 0.06109106068439045, "bch": 0.00013636085134762296, "bdt": 3.633910299950422, "bhd": 0.01621597764985041, "bmd": 0.04300818379247633, "bnb": 0.0015175001049149443, "brl": 0.16150433177750673, "btc": 3.937500036197932e-06, "cad": 0.056117164228790664, "chf": 0.04233295530693446, "clp": 29.21549640929991, "cny": 0.295801686487893, "czk": 0.9772782289384042, "dkk": 0.2851793102139082, "eos": 0.009961598283046874, "eth": 0.00018729362395067327, "eur": 0.03819199834684335, "gbp": 0.03435979713819857, "hkd": 0.33661516266143915, "huf": 12.427431726131438, "idr": 598.2753018136957, "ils": 0.15218660875886691, "inr": 2.9478561814579565, "jpy": 4.640389494381133, "krw": 50.726002374036064, "kwd": 0.01308954073724015, "lkr": 7.5575564121466465, "ltc": 0.0004735837046439854, "mmk": 64.99451286299326, "mxn": 0.816312531654717, "myr": 0.17647548055566759, "ngn": 15.547784744070627, "nok": 0.36719527158340337, "nzd": 0.06395901841240809, "php": 2.1939033228849576, "pkr": 6.861212198608193, "pln": 0.16276232115343653, "rub": 2.6959421961210945, "sar": 0.1612548843115104, "sek": 0.4020921119126181, "sgd": 0.05832769885935613, "thb": 1.3285227973495888, "try": 0.24563694091234883, "twd": 1.3332552028531968, "uah": 1.1082414172084643, "usd": 0.04300818379247633, "vef": 10687.002187660024, "vnd": 999.3317770906741, "xag": 0.0027936537791247375, "xau": 3.0385711931222364e-05, "xdr": 0.031075262141967153, "xlm": 0.5051680340904782, "xrp": 0.13894872413859047, "zar": 0.598046385981551, "bits": 3.9375000361979318, "link": 0.015805447753982908, "sats": 393.7500036197932}, "market_cap": {"aed": 428148208.14668655, "ars": 4943102235.115736, "aud": 165568747.78519678, "bch": 369564.63272404834, "bdt": 9848609128.507938, "bhd": 43948477.62537681, "bmd": 116560607.31738712, "bnb": 4112722.701487974, "brl": 437708392.598251, "btc": 10671.396814755819, "cad": 152088513.54894122, "chf": 114730605.78250417, "clp": 79179721259.06564, "cny": 801680545.0075232, "czk": 2648615538.679134, "dkk": 772891823.4092382, "eos": 26997883.735953238, "eth": 507602.4288703824, "eur": 103507800.82816388, "gbp": 93121784.4737555, "hkd": 912293064.5335037, "huf": 33680775649.1835, "idr": 1621443324807.3276, "ils": 412455537.0229396, "inr": 7989268006.596496, "jpy": 12576365006.81315, "krw": 137477408300.49185, "kwd": 35475220.83704671, "lkr": 20482459093.967358, "ltc": 1283504.6579804118, "mmk": 176147868232.7781, "mxn": 2212366951.1269326, "myr": 478283140.00543314, "ngn": 42137543890.56316, "nok": 995171153.154385, "nzd": 173341475.32354984, "php": 5945907991.488806, "pkr": 18595229797.70981, "pln": 441117790.3622842, "rub": 7306531733.325998, "sar": 437032341.0758103, "sek": 1089748429.9317112, "sgd": 158079495.6438397, "thb": 3600557160.034075, "try": 665724252.6325234, "twd": 3613382906.4602513, "uah": 3003551446.5667367, "usd": 116560607.31738712, "vef": 28963870490476.543, "vnd": 2708384976480.446, "xag": 7571349.273908594, "xau": 82351.23467580692, "xdr": 84220050.89292663, "xlm": 1369104381.0414832, "xrp": 376578275.1887199, "zar": 1620822918.0366511, "bits": 10671396814.75582, "link": 42835861.14719317, "sats": 1067139681475.5819}, "total_volume": {"aed": 74527990.71185084, "ars": 860448485.9603069, "aud": 28820641.689758804, "bch": 64330.31597705543, "bdt": 1714352730.404554, "bhd": 7650135.3268349925, "bmd": 20289768.108854696, "bnb": 715903.8703529981, "brl": 76192137.20237097, "btc": 1857.5758290225403, "cad": 26474130.007969808, "chf": 19971218.749545682, "clp": 13782857006.704613, "cny": 139548967.09908047, "czk": 461045942.75987977, "dkk": 134537698.722715, "eos": 4699536.258769986, "eth": 88358.62998918303, "eur": 18017659.00672077, "gbp": 16209759.509149395, "hkd": 158803348.34134027, "huf": 5862830877.223434, "idr": 282245518611.7034, "ils": 71796358.94158769, "inr": 1390696213.2750876, "jpy": 2189174674.988933, "krw": 23930766995.9886, "kwd": 6175190.923929917, "lkr": 3565392759.0141153, "ltc": 223420.3516643206, "mmk": 30662154921.519814, "mxn": 385107914.6133053, "myr": 83255005.48106322, "ngn": 7334905109.821614, "nok": 173229982.15977913, "nzd": 30173644.586329736, "php": 1035007427.6414483, "pkr": 3236881732.2567, "pln": 76785612.9195549, "rub": 1271851940.0426872, "sar": 76074456.54733962, "sek": 189693100.00330356, "sgd": 27516983.509228613, "thb": 626750936.8825191, "try": 115882981.57691248, "twd": 628983521.5163783, "uah": 522829828.6737193, "usd": 20289768.108854696, "vef": 5041756638985.933, "vnd": 471450041201.84406, "xag": 1317948.8729022383, "xau": 14334.92406658689, "xdr": 14660229.918676164, "xlm": 238320741.86529243, "xrp": 65551184.523314066, "zar": 282137524.0687794, "bits": 1857575829.0225403, "link": 7456461.573274605, "sats": 185757582902.25403}}, "community_data": {"facebook_likes": null, "twitter_followers": 13686, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.333, "reddit_subscribers": 7180, "reddit_accounts_active_48h": "263.56"}, "developer_data": {"forks": 560, "stars": 1032, "subscribers": 180, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 815, "pull_request_contributors": 69, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 160624, "bing_matches": null}}, "SNT_20190722": {"id": "status", "symbol": "SNT", "name": "Status", "localization": {"en": "Status", "de": "Status", "es": "Status", "fr": "Status", "it": "Status", "pl": "Status", "ro": "Status", "hu": "Status", "nl": "Status", "pt": "Status", "sv": "Status", "vi": "Status", "tr": "Status", "ru": "Status", "ja": "\u30b9\u30c6\u30fc\u30bf\u30b9", "zh": "Status", "zh-tw": "Status", "ko": "\uc2a4\ud14c\uc774\ud130\uc2a4\ub124\ud2b8\uc6cc\ud06c\ud1a0\ud070", "ar": "Status", "th": "Status", "id": "Status"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/779/thumb/status.png?1548610778", "small": "https://assets.coingecko.com/coins/images/779/small/status.png?1548610778"}, "market_data": {"current_price": {"aed": 0.07393978899844857, "ars": 0.8527879167842466, "aud": 0.028483713868129746, "bch": 6.389798722061332e-05, "bdt": 1.7007877183162559, "bhd": 0.007587986298986943, "bmd": 0.02012963395989714, "bnb": 0.0006920788621079921, "brl": 0.07486009573346111, "btc": 1.8871882489921859e-06, "cad": 0.0262427018490083, "chf": 0.01978541721918274, "clp": 13.752567048661165, "cny": 0.1384918816440916, "czk": 0.45676335598071466, "dkk": 0.1334720743049764, "eos": 0.004905784252834823, "eth": 8.892079103497883e-05, "eur": 0.01787787271624108, "gbp": 0.016051068175112506, "hkd": 0.15731812180508534, "huf": 5.8253963369314175, "idr": 280.1466135048683, "ils": 0.07129715052255928, "inr": 1.3861405443148447, "jpy": 2.1623842398713053, "krw": 23.58772724902101, "kwd": 0.0061305001521206135, "lkr": 3.53603223250118, "ltc": 0.00019886414452456022, "mmk": 30.533665788594963, "mxn": 0.3818864922621641, "myr": 0.08278352225275573, "ngn": 7.24666822556297, "nok": 0.1720845972594131, "nzd": 0.029712507243577716, "php": 1.0251392518232616, "pkr": 3.2105420902598274, "pln": 0.07605881543577298, "rub": 1.26594060195755, "sar": 0.07550525050187588, "sek": 0.187561246199846, "sgd": 0.0273130146162901, "thb": 0.6201940223044289, "try": 0.11317377414212934, "twd": 0.622106337530619, "uah": 0.5241796741128764, "usd": 0.02012963395989714, "vef": 5001.965281869175, "vnd": 465.39516742787805, "xag": 0.001232453546790884, "xau": 1.3945005222058286e-05, "xdr": 0.014561938243661202, "xlm": 0.22721717504807484, "xrp": 0.06238054955728514, "zar": 0.27918886404032034, "bits": 1.8871882489921858, "link": 0.007545742301163644, "sats": 188.7188248992186}, "market_cap": {"aed": 262440930.0223976, "ars": 3026888683.241818, "aud": 101094938.31433867, "bch": 224713.08053934842, "bdt": 6036753913.038012, "bhd": 26932700.353596162, "bmd": 71447862.2268808, "bnb": 2441355.5981135163, "brl": 265707454.83554837, "btc": 6667.242114747403, "cad": 93128001.54100582, "chf": 70203026.12330222, "clp": 48806391926.49366, "cny": 491561292.1209421, "czk": 1621109053.7627366, "dkk": 473713616.1366666, "eos": 17282731.698401332, "eth": 312771.39952144807, "eur": 63449988.529203996, "gbp": 56967523.98935911, "hkd": 558390050.054855, "huf": 20674867892.59257, "idr": 994263644737.3748, "ils": 253061183.22139, "inr": 4919949306.311554, "jpy": 7672238157.36288, "krw": 83720461521.59222, "kwd": 21759517.889058854, "lkr": 12550747036.974245, "ltc": 699380.0561806677, "mmk": 108375798133.8035, "mxn": 1355258774.6505942, "myr": 293830762.3652932, "ngn": 25721230401.67709, "nok": 610779195.0327156, "nzd": 105426965.09687898, "php": 3639079259.344963, "pkr": 11395456539.124294, "pln": 269944313.06560224, "rub": 4491212619.581745, "sar": 267997358.81991988, "sek": 665841633.2236575, "sgd": 96952034.02311292, "thb": 2200594156.5879374, "try": 401809273.5180186, "twd": 2208087036.795392, "uah": 1860516550.5125642, "usd": 71447862.2268808, "vef": 17753910827917.504, "vnd": 1651733307400.7156, "xag": 4370708.655149889, "xau": 49453.35231895799, "xdr": 51685955.1178236, "xlm": 801612437.674046, "xrp": 219986104.34318954, "zar": 990674980.5185797, "bits": 6667242114.747403, "link": 26658331.983688366, "sats": 666724211474.7404}, "total_volume": {"aed": 69807217.89476769, "ars": 805124720.1453606, "aud": 26891729.708431683, "bch": 60326.66278017142, "bdt": 1605728937.7406638, "bhd": 7163885.914889582, "bmd": 19004567.946629375, "bnb": 653397.8603664826, "brl": 70676087.73671964, "btc": 1781.7113504152253, "cad": 24775970.16350133, "chf": 18679589.834741864, "clp": 12983921885.392935, "cny": 130751427.47280942, "czk": 431234380.6926487, "dkk": 126012182.34568685, "eos": 4631594.908791885, "eth": 83950.9162689674, "eur": 16878659.96241549, "gbp": 15153957.412122995, "hkd": 148525449.64489448, "huf": 5499808924.584374, "idr": 264488930200.03, "ils": 67312279.2101662, "inr": 1308667718.9704795, "jpy": 2041526353.3964791, "krw": 22269384833.507008, "kwd": 5787860.172713904, "lkr": 3338399742.286403, "ltc": 187749.42228431068, "mmk": 28827107700.769684, "mxn": 360542462.1508287, "myr": 78156665.7718718, "ngn": 6841644460.786575, "nok": 162466611.54893544, "nzd": 28051844.554165736, "php": 967843161.2241563, "pkr": 3031101579.9597864, "pln": 71807809.75794141, "rub": 1195185875.4227488, "sar": 71285184.13940918, "sek": 177078254.6101334, "sgd": 25786462.045791656, "thb": 585530738.4356492, "try": 106848375.12423272, "twd": 587336172.3905789, "uah": 494882731.2392473, "usd": 19004567.946629375, "vef": 4722400280866.788, "vnd": 439383751291.0869, "xag": 1163570.4463237743, "xau": 13165.604490706914, "xdr": 13748056.4891352, "xlm": 214517772.67510653, "xrp": 58894036.27365136, "zar": 263584710.34133253, "bits": 1781711350.4152253, "link": 7124002.977695117, "sats": 178171135041.52252}}, "community_data": {"facebook_likes": null, "twitter_followers": 111756, "reddit_average_posts_48h": 0.042, "reddit_average_comments_48h": 0.042, "reddit_subscribers": 5728, "reddit_accounts_active_48h": "1263.92"}, "developer_data": {"forks": 685, "stars": 2713, "subscribers": 185, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 2886, "pull_request_contributors": 156, "code_additions_deletions_4_weeks": {"additions": 6499, "deletions": -3958}, "commit_count_4_weeks": 80}, "public_interest_stats": {"alexa_rank": 282023, "bing_matches": null}}, "ADX_20190726": {"id": "adex", "symbol": "adx", "name": "Ambire AdEx", "localization": {"en": "Ambire AdEx", "de": "Ambire AdEx", "es": "Ambire AdEx", "fr": "Ambire AdEx", "it": "Ambire AdEx", "pl": "Ambire AdEx", "ro": "Ambire AdEx", "hu": "Ambire AdEx", "nl": "Ambire AdEx", "pt": "Ambire AdEx", "sv": "Ambire AdEx", "vi": "Ambire AdEx", "tr": "Ambire AdEx", "ru": "Ambire AdEx", "ja": "\u30a2\u30c7\u30c3\u30af\u30b9", "zh": "Ambire AdEx", "zh-tw": "Ambire AdEx", "ko": "\uc560\ub4dc\uc5d1\uc2a4", "ar": "Ambire AdEx", "th": "Ambire AdEx", "id": "Ambire AdEx"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/847/thumb/ambireadex.png?1634704581", "small": "https://assets.coingecko.com/coins/images/847/small/ambireadex.png?1634704581"}, "market_data": {"current_price": {"aed": 0.38101026990774384, "ars": 4.404233276417289, "aud": 0.14753552405105894, "bch": 0.0003339317383430043, "bdt": 8.765890250632259, "bhd": 0.03910203212522068, "bmd": 0.1037343269165199, "bnb": 0.0033747201267077787, "brl": 0.38810258583902624, "btc": 1.0030341506985159e-05, "cad": 0.13617547417610434, "chf": 0.10193640356240244, "clp": 71.53357545335011, "cny": 0.7138062769452657, "czk": 2.364020559482401, "dkk": 0.6910531896793957, "eos": 0.025137416323915425, "eth": 0.0004766323346755605, "eur": 0.09256618554636055, "gbp": 0.08315592608012834, "hkd": 0.8102204873485939, "huf": 30.10657002904768, "idr": 1446.339164937665, "ils": 0.3659435850634077, "inr": 7.150510888682637, "jpy": 11.19423055337901, "krw": 121.96978424517535, "kwd": 0.03159291166838766, "lkr": 18.249770902285917, "ltc": 0.0010893682295721335, "mmk": 157.47823625720494, "mxn": 1.9764688029192983, "myr": 0.42666219116880055, "ngn": 37.397741656733594, "nok": 0.8937054587137017, "nzd": 0.15383717694258414, "php": 5.30027483217315, "pkr": 16.606309724431064, "pln": 0.3930554850119826, "rub": 6.5390177783751335, "sar": 0.389097086831175, "sek": 0.9768376296329663, "sgd": 0.14121768860453526, "thb": 3.199166642105472, "try": 0.5884315171533826, "twd": 3.221797322865588, "uah": 2.6635830964713523, "usd": 0.1037343269165199, "vef": 25776.698314943194, "vnd": 2418.1656883033625, "xag": 0.006347906990553565, "xau": 7.285469248001034e-05, "xdr": 0.07507844524611972, "xlm": 1.1614415688725426, "xrp": 0.32177644891641, "zar": 1.4386204257256077, "bits": 10.030341506985158, "link": 0.043006368853502695, "sats": 1003.0341506985159}, "market_cap": {"aed": 35093999.212552555, "ars": 405664023.62831604, "aud": 13589165.36849542, "bch": 30747.622633833227, "bdt": 807406439.7988526, "bhd": 3601600.2533054384, "bmd": 9554735.592834588, "bnb": 310703.16080031346, "brl": 35747256.48503464, "btc": 923.245928055892, "cad": 12542816.718988497, "chf": 9389132.915539563, "clp": 6588796782.92871, "cny": 65747091.08785393, "czk": 217744617.9417205, "dkk": 63651355.382921584, "eos": 2314299.6387805454, "eth": 43884.44938523975, "eur": 8526063.204174405, "gbp": 7659305.364870418, "hkd": 74627587.20884451, "huf": 2773048467.034466, "idr": 133219048210.16113, "ils": 33706240.75084256, "inr": 658617479.1496793, "jpy": 1031075404.6617628, "krw": 11234362562.698994, "kwd": 2909952.053211326, "lkr": 1680945360.945698, "ltc": 100335.44509470453, "mmk": 14504966232.387117, "mxn": 182048097.10268387, "myr": 39298895.02592518, "ngn": 3444621890.560707, "nok": 82317200.19501545, "nzd": 14169596.446288949, "php": 488196396.468882, "pkr": 1529569847.3789258, "pln": 36203456.890650146, "rub": 602294223.7770385, "sar": 35838857.73516319, "sek": 89974317.52543509, "sgd": 13007243.751949446, "thb": 294668045.68301827, "try": 54199103.88405582, "twd": 296752506.79995054, "uah": 245336649.62041003, "usd": 9554735.592834588, "vef": 2374233719699.63, "vnd": 222731804005.4097, "xag": 584691.4388470037, "xau": 6710.481901559571, "xdr": 6915306.768463174, "xlm": 107018637.66581081, "xrp": 29640204.02757898, "zar": 132508092.49787693, "bits": 923245928.055892, "link": 3958534.701616601, "sats": 92324592805.5892}, "total_volume": {"aed": 3892045.6737816427, "ars": 44989540.76475582, "aud": 1507085.3556022763, "bch": 3411.1352900565425, "bdt": 89544161.72319703, "bhd": 399429.90252175054, "bmd": 1059653.1647187658, "bnb": 34472.99431733741, "brl": 3964494.160653464, "btc": 102.46061681819404, "cad": 1391041.6778807638, "chf": 1041287.2560678567, "clp": 730720310.8744482, "cny": 7291579.391746306, "czk": 24148629.887305126, "dkk": 7059155.066596886, "eos": 256780.40772295365, "eth": 4868.831532041482, "eur": 945569.8453519798, "gbp": 849443.4085145158, "hkd": 8276457.071243521, "huf": 307540648.87104386, "idr": 14774452381.768152, "ils": 3738138.4691783944, "inr": 73042952.29722929, "jpy": 114349822.13771437, "krw": 1245929594.5446818, "kwd": 322723.7292340887, "lkr": 186422643.94853884, "ltc": 11127.970136049124, "mmk": 1608650833.1862705, "mxn": 20189762.48495629, "myr": 4358383.136776902, "ngn": 382020460.1296896, "nok": 9129261.699596528, "nzd": 1571457.1660526164, "php": 54142665.85362181, "pkr": 169634576.87400335, "pln": 4015088.3606561287, "rub": 66796508.821845084, "sar": 3974653.055543624, "sek": 9978462.447536323, "sgd": 1442548.239258245, "thb": 32679703.599926718, "try": 6010867.741722896, "twd": 32910877.53434185, "uah": 27208681.461235695, "usd": 1059653.1647187658, "vef": 263310716494.18073, "vnd": 24701726039.897026, "xag": 64844.29919995211, "xau": 744.2156106452844, "xdr": 766931.39553736, "xlm": 11864204.171124019, "xrp": 3286968.1865351726, "zar": 14695604.938719938, "bits": 102460616.81819405, "link": 439312.9662406792, "sats": 10246061681.819405}}, "community_data": {"facebook_likes": null, "twitter_followers": 54064, "reddit_average_posts_48h": 0.333, "reddit_average_comments_48h": 0.5, "reddit_subscribers": 3874, "reddit_accounts_active_48h": "1785.2"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 831404, "bing_matches": null}}, "WABI_20190802": {"id": "wabi", "symbol": "wabi", "name": "Wabi", "localization": {"en": "Wabi", "de": "Wabi", "es": "Wabi", "fr": "Wabi", "it": "Wabi", "pl": "Wabi", "ro": "Wabi", "hu": "Wabi", "nl": "Wabi", "pt": "Wabi", "sv": "Wabi", "vi": "Wabi", "tr": "Wabi", "ru": "Wabi", "ja": "Wabi", "zh": "\u86d9\u5e01", "zh-tw": "\u86d9\u5e63", "ko": "Wabi", "ar": "Wabi", "th": "Wabi", "id": "Wabi"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1338/thumb/Tael.png?1547035364", "small": "https://assets.coingecko.com/coins/images/1338/small/Tael.png?1547035364"}, "market_data": {"current_price": {"aed": 0.5375402340770669, "ars": 6.401691546179329, "aud": 0.21205524606248272, "bch": 0.000478210169657424, "bdt": 12.370156964173106, "bhd": 0.055169427492060365, "bmd": 0.14634188570535106, "bnb": 0.0054147373620187225, "brl": 0.5533918407947859, "btc": 1.538506262254993e-05, "cad": 0.1926800194207506, "chf": 0.14515885790130909, "clp": 101.95560547596625, "cny": 1.0087785207326965, "czk": 3.3692156247989336, "dkk": 0.9806662444886989, "eos": 0.034822611722902415, "eth": 0.0006941695648246141, "eur": 0.13132720823198216, "gbp": 0.11977717490268722, "hkd": 1.1446686689609717, "huf": 43.064612074056555, "idr": 2051.718813507554, "ils": 0.5157673419799402, "inr": 10.060785129414327, "jpy": 15.932680122398772, "krw": 173.2409877168511, "kwd": 0.044572665206250146, "lkr": 25.793122185889274, "ltc": 0.0016198323046951054, "mmk": 220.73482442573646, "mxn": 2.7894812201839745, "myr": 0.6030602768031819, "ngn": 52.68307885392638, "nok": 1.2732358692285504, "nzd": 0.22070551492652504, "php": 7.465851397454593, "pkr": 23.594080864627134, "pln": 0.5632333326084705, "rub": 9.2852609403074, "sar": 0.5489137790922015, "sek": 1.3885635190963674, "sgd": 0.20050301760490194, "thb": 4.515671567210027, "try": 0.8222066652794016, "twd": 4.54040334589422, "uah": 3.7002961411553423, "usd": 0.14634188570535106, "vef": 36364.15014002454, "vnd": 3390.671529103287, "xag": 0.008902778860990177, "xau": 0.00010272615008972834, "xdr": 0.10640298996807522, "xlm": 1.7553204727210332, "xrp": 0.47210556815792626, "zar": 2.0732717388235944, "bits": 15.38506262254993, "link": 0.06854705058023376, "sats": 1538.506262254993}, "market_cap": {"aed": 30653478.46999538, "ars": 365053005.0633156, "aud": 12092898.195939062, "bch": 27258.882101242292, "bdt": 705413876.2706621, "bhd": 3146061.9142926894, "bmd": 8345213.173539592, "bnb": 308792.5851236683, "brl": 31557423.615739968, "btc": 876.85256553111, "cad": 10987724.924940923, "chf": 8276907.603714173, "clp": 5814085933.719814, "cny": 57526057.96916053, "czk": 192104946.27234375, "dkk": 55918052.22360382, "eos": 1985601.7853173055, "eth": 39537.27828966441, "eur": 7488735.600326053, "gbp": 6829146.641515828, "hkd": 65278343.746720076, "huf": 2455537250.2481585, "idr": 117000206662.33754, "ils": 29411869.3088229, "inr": 573720887.861087, "jpy": 908480769.1044538, "krw": 9869455702.849333, "kwd": 2541776.683183516, "lkr": 1470864626.4527972, "ltc": 92160.9485533089, "mmk": 12587504635.313326, "mxn": 159071680.0520763, "myr": 34389788.966839336, "ngn": 3004276742.474253, "nok": 72603688.41832139, "nzd": 12587051.64879708, "php": 425721887.004058, "pkr": 1345463286.1946514, "pln": 32114466.595073763, "rub": 529494596.1265966, "sar": 31302060.09262964, "sek": 79191249.48367645, "sgd": 11435020.005829468, "thb": 257562486.78153908, "try": 46887955.750125006, "twd": 258918742.48128998, "uah": 211011085.13349006, "usd": 8345213.173539592, "vef": 2073682345491.3872, "vnd": 193354599576.43442, "xag": 507603.2660255041, "xau": 5857.171317980501, "xdr": 6067679.32028303, "xlm": 100245794.94996214, "xrp": 26918478.81282619, "zar": 118233453.06869856, "bits": 876852565.53111, "link": 3906754.1442939406, "sats": 87685256553.11101}, "total_volume": {"aed": 1107980.288307461, "ars": 13195194.694904078, "aud": 437089.203327865, "bch": 985.6888992845669, "bdt": 25497421.794120174, "bhd": 113715.46593784256, "bmd": 301640.53671938885, "bnb": 11160.880401407407, "brl": 1140653.6896043709, "btc": 31.711758561531763, "cad": 397152.90118782653, "chf": 299202.0746205495, "clp": 210151341.21779457, "cny": 2079298.7117677634, "czk": 6944642.024320589, "dkk": 2021353.5646639697, "eos": 71776.5200266453, "eth": 1430.8253518719334, "eur": 270692.2176519798, "gbp": 246885.23829140182, "hkd": 2359396.0813546544, "huf": 88764967.30256161, "idr": 4229011817.9135685, "ils": 1063101.907613816, "inr": 20737334.438652907, "jpy": 32840510.1542502, "krw": 357085083.7737787, "kwd": 91873.3730334548, "lkr": 53164896.586650506, "ltc": 3338.805451553438, "mmk": 454979588.3216817, "mxn": 5749690.9266229505, "myr": 1243030.487766931, "ngn": 108590593.21897998, "nok": 2624399.358484105, "nzd": 454919.17545334605, "php": 15388645.648106866, "pkr": 48632222.96954834, "pln": 1160939.0156987493, "rub": 19138820.578362197, "sar": 1131423.4891807563, "sek": 2862113.216256556, "sgd": 413277.69935923564, "thb": 9307722.0415502, "try": 1694735.9849420676, "twd": 9358699.292255757, "uah": 7627066.636862177, "usd": 301640.53671938885, "vef": 74953945773.71063, "vnd": 6988867028.385357, "xag": 18350.44683878166, "xau": 211.73959115554246, "xdr": 219318.30964061694, "xlm": 3618074.257784033, "xrp": 973106.0678970175, "zar": 4273436.802113192, "bits": 31711758.561531764, "link": 141289.48132582905, "sats": 3171175856.1531763}}, "community_data": {"facebook_likes": null, "twitter_followers": 36406, "reddit_average_posts_48h": 0.261, "reddit_average_comments_48h": 0.217, "reddit_subscribers": 7992, "reddit_accounts_active_48h": "1436.125"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1256578, "bing_matches": null}}, "SNM_20190804": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.04660230994354741, "ars": 0.5559433635612537, "aud": 0.01853113673065231, "bch": 3.852976071555901e-05, "bdt": 1.0718304059615174, "bhd": 0.004783549119004826, "bmd": 0.012687180387666044, "bnb": 0.000457396336359031, "brl": 0.04837738603876614, "btc": 1.2598491095650882e-06, "cad": 0.016743627198653747, "chf": 0.012614343285060486, "clp": 8.926826992565688, "cny": 0.08734362466084801, "czk": 0.29457186771781696, "dkk": 0.0855795102894842, "eos": 0.002866703819873003, "eth": 5.802701472781273e-05, "eur": 0.011460317356998324, "gbp": 0.010439456074285168, "hkd": 0.09930446397132002, "huf": 3.7366932627030782, "idr": 179.90406875929884, "ils": 0.044368338533706864, "inr": 0.8755423185528317, "jpy": 1.3808425107994298, "krw": 15.063616704315741, "kwd": 0.0038633098639462384, "lkr": 2.23670284559346, "ltc": 0.00012833130802455725, "mmk": 19.137380717240198, "mxn": 0.24298741622065723, "myr": 0.05227879550541662, "ngn": 4.567384939559776, "nok": 0.11241868216365458, "nzd": 0.019363834441036086, "php": 0.6470575294230535, "pkr": 2.0395227732804386, "pln": 0.049136574225983734, "rub": 0.8067130962317054, "sar": 0.047583409602925626, "sek": 0.12262856370882488, "sgd": 0.017439087678784063, "thb": 0.3922178380945015, "try": 0.07079475836832534, "twd": 0.3950293933914909, "uah": 0.31843474125766486, "usd": 0.012687180387666044, "vef": 3152.6075412173836, "vnd": 296.73242723234534, "xag": 0.0007804374381616328, "xau": 8.988740432857497e-06, "xdr": 0.009224696613707312, "xlm": 0.15132209590949405, "xrp": 0.039655305290613174, "zar": 0.18197857189048727, "bits": 1.2598491095650883, "link": 0.005756344184614308, "sats": 125.98491095650883}, "market_cap": {"aed": 19658293.61085608, "ars": 234516221.3731455, "aud": 7815753.461343183, "bch": 16259.179602729231, "bdt": 452131167.896153, "bhd": 2017945.0878502745, "bmd": 5351844.521371546, "bnb": 193310.92020047698, "brl": 20406583.159989774, "btc": 532.4135576624666, "cad": 7062342.197002618, "chf": 5320268.638695468, "clp": 3765587304.604031, "cny": 36844238.422930345, "czk": 124216204.30414319, "dkk": 36102788.531095, "eos": 1211036.2569868194, "eth": 24532.72429555292, "eur": 4834615.507603606, "gbp": 4403883.00499006, "hkd": 41891884.101707175, "huf": 1576546359.1056347, "idr": 75889092402.11617, "ils": 18715935.475688465, "inr": 369330790.41985154, "jpy": 582480040.1336449, "krw": 6354303196.181755, "kwd": 1629711.582580941, "lkr": 943510339.1264752, "ltc": 54137.402898781605, "mmk": 8072738229.885357, "mxn": 102489107.02695052, "myr": 22052810.534763634, "ngn": 1926664027.6937566, "nok": 47428533.166246176, "nzd": 8168445.367146132, "php": 273143876.3533102, "pkr": 860333694.8692572, "pln": 20728138.034367327, "rub": 340320582.0073045, "sar": 20072092.87740403, "sek": 51699513.816237025, "sgd": 7355939.035600509, "thb": 165453611.33933192, "try": 29861975.875501025, "twd": 166635598.31294417, "uah": 134325608.47569966, "usd": 5351844.521371546, "vef": 1329867226756.0334, "vnd": 125188474074.95181, "xag": 329384.8369861148, "xau": 3793.226841412521, "xdr": 3891261.9293550053, "xlm": 63862886.11228464, "xrp": 16742114.407025443, "zar": 76733173.30513611, "bits": 532413557.6624666, "link": 2432637.1016908023, "sats": 53241355766.24666}, "total_volume": {"aed": 450087.1717017527, "ars": 5369325.60713742, "aud": 178974.5385930727, "bch": 372.12213402765894, "bdt": 10351785.49191115, "bhd": 46199.729075176474, "bmd": 122533.34962305262, "bnb": 4417.554057469731, "brl": 467230.9351808635, "btc": 12.167678451605061, "cad": 161710.6924313321, "chf": 121829.88566286699, "clp": 86215690.12827589, "cny": 843568.5921449424, "czk": 2844988.1339491974, "dkk": 826530.6974799057, "eos": 27686.75235103667, "eth": 560.4274760795068, "eur": 110684.25218115357, "gbp": 100824.72873708428, "hkd": 959086.9075020739, "huf": 36089148.8890647, "idr": 1737521457.2753592, "ils": 428511.3769667768, "inr": 8456026.457486842, "jpy": 13336238.07498228, "krw": 145485076.7324143, "kwd": 37312.017626967536, "lkr": 21602175.06235037, "ltc": 1239.4294518775662, "mmk": 184829669.84332782, "mxn": 2346783.2186506246, "myr": 504910.92045674985, "ngn": 44112005.86429895, "nok": 1085744.6071400894, "nzd": 187016.7699288834, "php": 6249310.253056888, "pkr": 19697801.19824746, "pln": 474563.20828895783, "rub": 7791270.782446827, "sar": 459562.6756281034, "sek": 1184352.0949157442, "sgd": 168427.48052426951, "thb": 3788057.236921856, "try": 683738.9091636739, "twd": 3815211.362398425, "uah": 3075456.822587964, "usd": 122533.34962305262, "vef": 30448023143.724396, "vnd": 2865854913.350591, "xag": 7537.499314043493, "xau": 86.81365287443637, "xdr": 89092.52811072592, "xlm": 1461475.498669264, "xrp": 382992.6933416512, "zar": 1757557.1003182493, "bits": 12167678.451605061, "link": 55595.026867409986, "sats": 1216767845.1605062}}, "community_data": {"facebook_likes": null, "twitter_followers": 31142, "reddit_average_posts_48h": 0.043, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9952, "reddit_accounts_active_48h": "757.56"}, "developer_data": {"forks": 62, "stars": 323, "subscribers": 69, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 1512, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 1416, "deletions": -742}, "commit_count_4_weeks": 16}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "POA_20190806": {"id": "poa-network", "symbol": "poa", "name": "POA Network", "localization": {"en": "POA Network", "de": "POA Network", "es": "POA Network", "fr": "POA Network", "it": "POA Network", "pl": "POA Network", "ro": "POA Network", "hu": "POA Network", "nl": "POA Network", "pt": "POA Network", "sv": "POA Network", "vi": "POA Network", "tr": "POA Network", "ru": "POA Network", "ja": "\u30dd\u30a2\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "POA Network", "zh-tw": "POA Network", "ko": "POA \ub124\ud2b8\uc6cc\ud06c", "ar": "POA Network", "th": "POA Network", "id": "POA Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3157/thumb/poa-network.png?1548331565", "small": "https://assets.coingecko.com/coins/images/3157/small/poa-network.png?1548331565"}, "market_data": {"current_price": {"aed": 0.06838180115534359, "ars": 0.828573558083586, "aud": 0.027371301183217973, "bch": 5.6732576520735196e-05, "bdt": 1.5730311864659845, "bhd": 0.007017889945423839, "bmd": 0.018617956994508012, "bnb": 0.0006680663251092515, "brl": 0.07237916961184952, "btc": 1.768893851302666e-06, "cad": 0.02461064913802931, "chf": 0.018287208988500572, "clp": 13.276558222568662, "cny": 0.12921234513328458, "czk": 0.4315865846810897, "dkk": 0.12513019050062582, "eos": 0.004447075829583136, "eth": 8.547908891931366e-05, "eur": 0.016735681542363278, "gbp": 0.015309546036583962, "hkd": 0.14574788363795688, "huf": 5.486153387571689, "idr": 264.96773584684126, "ils": 0.06499156427642869, "inr": 1.2970553481406915, "jpy": 1.9844019801237955, "krw": 22.427377175154284, "kwd": 0.005672798406441629, "lkr": 3.2881163049585584, "ltc": 0.0001962531230964238, "mmk": 28.154999451344707, "mxn": 0.359447996309524, "myr": 0.07739588983176157, "ngn": 6.730391453514646, "nok": 0.16602842419207461, "nzd": 0.028472180980303182, "php": 0.9591693849831752, "pkr": 2.970495038473758, "pln": 0.0722376731386912, "rub": 1.2152610776767192, "sar": 0.06983968027779862, "sek": 0.17941008078187745, "sgd": 0.025633203190038648, "thb": 0.5714223360754408, "try": 0.10351286201634563, "twd": 0.585814016832196, "uah": 0.4728588717465158, "usd": 0.018617956994508012, "vef": 4626.332236909641, "vnd": 430.99537359779424, "xag": 0.0011490085191730526, "xau": 1.2923282488597857e-05, "xdr": 0.013556758475336, "xlm": 0.2261272418568428, "xrp": 0.05954940767216681, "zar": 0.27529795851112215, "bits": 1.768893851302666, "link": 0.007681944470757963, "sats": 176.8893851302666}, "market_cap": {"aed": 15055458.48006705, "ars": 182425069.10676846, "aud": 6026274.265183586, "bch": 12490.676405770726, "bdt": 346330534.0830231, "bhd": 1545112.1337237866, "bmd": 4099071.2993611386, "bnb": 147086.57346951647, "brl": 15935549.583396403, "btc": 389.4531510428357, "cad": 5418468.071985614, "chf": 4026251.2977279867, "clp": 2923068238.9309306, "cny": 28448374.6318262, "czk": 95021391.60475056, "dkk": 27549616.357799582, "eos": 979102.1058059204, "eth": 18819.72765261275, "eur": 3684655.190995734, "gbp": 3370666.3294646693, "hkd": 32088964.806353796, "huf": 1207873339.7827497, "idr": 58337316043.15547, "ils": 14309038.091809891, "inr": 285569590.3054627, "jpy": 436901063.0715454, "krw": 4937782277.923418, "kwd": 1248966.5295588446, "lkr": 723936744.4340363, "ltc": 43208.58322595978, "mmk": 6198819248.45887, "mxn": 79138810.22068468, "myr": 17040068.939437035, "ngn": 1481814274.7190516, "nok": 36554083.17274791, "nzd": 6268652.351114799, "php": 211178041.6277788, "pkr": 654006825.8130708, "pln": 15904396.641521245, "rub": 267561140.36597943, "sar": 15376436.258163542, "sek": 39500290.669163786, "sgd": 5643601.364960421, "thb": 125808696.31999227, "try": 22790180.573040076, "twd": 128977278.43439855, "uah": 104108212.8611745, "usd": 4099071.2993611386, "vef": 1018568562556.004, "vnd": 94891226067.03256, "xag": 252974.47217506397, "xau": 2845.2883610255503, "xdr": 2984759.2619863143, "xlm": 49785896.8829127, "xrp": 13110851.419140115, "zar": 60611696.59155048, "bits": 389453151.0428357, "link": 1691315.4387808847, "sats": 38945315104.28357}, "total_volume": {"aed": 317445.6190162302, "ars": 3846448.0549262413, "aud": 127064.50401397952, "bch": 263.36697144168613, "bdt": 7302408.685976949, "bhd": 32578.820391874993, "bmd": 86429.26601937432, "bnb": 3101.332877097406, "brl": 336002.4145769204, "btc": 8.211652722120476, "cad": 114248.85887789265, "chf": 84893.85010854011, "clp": 61633141.74474604, "cny": 599836.392027662, "czk": 2003534.1014483224, "dkk": 580885.9975895203, "eos": 20644.45094575896, "eth": 396.8155537946735, "eur": 77691.26722481569, "gbp": 71070.78544773161, "hkd": 676598.5446427694, "huf": 25468111.817929093, "idr": 1230047256.7861958, "ils": 301707.2818204324, "inr": 6021259.032845154, "jpy": 9212095.971651744, "krw": 104113558.13959844, "kwd": 26334.565209773307, "lkr": 15264267.658784289, "ltc": 911.0566421566738, "mmk": 130702629.62114623, "mxn": 1668648.5258469083, "myr": 359291.29888143647, "ngn": 31244179.666003816, "nok": 770745.9441176745, "nzd": 132175.0665137049, "php": 4452706.919282535, "pkr": 13789789.393391194, "pln": 335345.5521551729, "rub": 5641549.338442236, "sar": 324213.4626918777, "sek": 832866.9790691008, "sgd": 118995.81345547465, "thb": 2652687.032666641, "try": 480532.89038515906, "twd": 2719496.8552996195, "uah": 2195130.498360075, "usd": 86429.26601937432, "vef": 21476604533.774555, "vnd": 2000789550.0452435, "xag": 5333.988202434312, "xau": 59.99314642202834, "xdr": 62933.90219833759, "xlm": 1049739.8584838079, "xrp": 276443.41420017777, "zar": 1278002.7635560243, "bits": 8211652.722120476, "link": 35661.52947958008, "sats": 821165272.2120476}}, "community_data": {"facebook_likes": null, "twitter_followers": 17767, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 44, "stars": 57, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 133, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 707962, "bing_matches": null}}, "YOYO_20190808": {"id": "yoyow", "symbol": "yoyow", "name": "YOYOW", "localization": {"en": "YOYOW", "de": "YOYOW", "es": "YOYOW", "fr": "YOYOW", "it": "YOYOW", "pl": "YOYOW", "ro": "YOYOW", "hu": "YOYOW", "nl": "YOYOW", "pt": "YOYOW", "sv": "YOYOW", "vi": "YOYOW", "tr": "YOYOW", "ru": "YOYOW", "ja": "YOYOW", "zh": "YOYOW", "zh-tw": "YOYOW", "ko": "YOYOW", "ar": "YOYOW", "th": "YOYOW", "id": "YOYOW"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1270/thumb/yoyow.png?1548761123", "small": "https://assets.coingecko.com/coins/images/1270/small/yoyow.png?1548761123"}, "market_data": {"current_price": {"aed": 0.06135878801833308, "ars": 0.7449809151886222, "aud": 0.024598197916801668, "bch": 4.9808624915023715e-05, "bdt": 1.4115148292995745, "bhd": 0.006297566345230599, "bmd": 0.016706192554198307, "bnb": 0.0006103598289107188, "brl": 0.06491072502966633, "btc": 1.5254634749288893e-06, "cad": 0.022057286266463447, "chf": 0.016415638453295692, "clp": 11.92162253763871, "cny": 0.11594431756464726, "czk": 0.38736722182666855, "dkk": 0.11229560157984757, "eos": 0.003954140036037302, "eth": 7.522922734953374e-05, "eur": 0.01504058515654476, "gbp": 0.01374919647210522, "hkd": 0.13083204105932117, "huf": 4.922479636094543, "idr": 236.89128350667116, "ils": 0.058316172699399677, "inr": 1.1638694312451299, "jpy": 1.7803872935971952, "krw": 20.129896974621246, "kwd": 0.005084529703870263, "lkr": 2.93711571295361, "ltc": 0.00017981785889789945, "mmk": 25.263934293986203, "mxn": 0.3231779537224564, "myr": 0.06944278094576917, "ngn": 6.053214472801054, "nok": 0.1489507421939769, "nzd": 0.025619815003876018, "php": 0.8624108977509212, "pkr": 2.67377052009062, "pln": 0.06480383880970446, "rub": 1.090289562187625, "sar": 0.06267578729595813, "sek": 0.16089926170162763, "sgd": 0.02300778509183443, "thb": 0.513381297190515, "try": 0.0927354233268454, "twd": 0.5256591291657943, "uah": 0.42705941459761104, "usd": 0.016706192554198307, "vef": 4151.282398616894, "vnd": 387.5058362637618, "xag": 0.0010314693970712493, "xau": 1.1601615419263037e-05, "xdr": 0.012166435083327922, "xlm": 0.2035700433455849, "xrp": 0.05243694897430075, "zar": 0.24629567134560665, "bits": 1.5254634749288893, "link": 0.006667257412587386, "sats": 152.5463474928889}, "market_cap": {"aed": 10484485.18954346, "ars": 127296213.37132522, "aud": 4203137.807596677, "bch": 8510.409545116638, "bdt": 241188048.20901355, "bhd": 1076076.3569353716, "bmd": 2854616.8212419753, "bnb": 104245.11642065666, "brl": 11091410.981141351, "btc": 260.6737225631639, "cad": 3768967.7167866924, "chf": 2804969.32548694, "clp": 2037068836.7223752, "cny": 19811611.662783496, "czk": 66190125.83727755, "dkk": 19188149.07594016, "eos": 675593.8656193874, "eth": 12855.294840584556, "eur": 2570011.524164142, "gbp": 2349349.64388214, "hkd": 22355503.443033297, "huf": 841112846.3789449, "idr": 40478034747.28921, "ils": 9964588.100974757, "inr": 198872438.79077265, "jpy": 304217941.9481672, "krw": 3439631282.0649896, "kwd": 868802.6295449937, "lkr": 501870183.3425501, "ltc": 30708.60366980927, "mmk": 4316893365.881942, "mxn": 55221991.483561516, "myr": 11865811.43240788, "ngn": 1034323518.0957408, "nok": 25451478.116511263, "nzd": 4377703.335449266, "php": 147361683.25340497, "pkr": 456871922.0749959, "pln": 11073147.142719047, "rub": 186299715.7579862, "sar": 10709523.197412416, "sek": 27493142.88631574, "sgd": 3931381.140831255, "thb": 87722374.91676562, "try": 15845866.644658135, "twd": 89820309.89335065, "uah": 72972401.37901603, "usd": 2854616.8212419753, "vef": 709337003411.9142, "vnd": 66213811132.5661, "xag": 176249.0095767481, "xau": 1982.388651511484, "xdr": 2078900.3916208532, "xlm": 34780232.570919335, "xrp": 8957141.22666677, "zar": 42084979.2160193, "bits": 260673722.5631639, "link": 1139311.978024921, "sats": 26067372256.31639}, "total_volume": {"aed": 5175446.243065137, "ars": 62837106.19440829, "aud": 2074790.8344709578, "bch": 4201.221520406804, "bdt": 119057422.02969398, "bhd": 531182.5271408383, "bmd": 1409121.72946954, "bnb": 51482.185119269845, "brl": 5475042.432211118, "btc": 128.66867917754365, "cad": 1860471.8741490187, "chf": 1384614.284350606, "clp": 1005556311.7581133, "cny": 9779586.626864517, "czk": 32673367.54256632, "dkk": 9471827.39553972, "eos": 333520.9161554533, "eth": 6345.379930557089, "eur": 1268632.293041429, "gbp": 1159707.1833534327, "hkd": 11035325.456081303, "huf": 415197717.588201, "idr": 19981132985.761776, "ils": 4918809.948085494, "inr": 98169208.84350294, "jpy": 150170807.270434, "krw": 1697901849.6822987, "kwd": 428866.19836405525, "lkr": 247737691.2580403, "ltc": 15167.145446078403, "mmk": 2130943880.243994, "mxn": 27259178.03224244, "myr": 5857308.974981609, "ngn": 510572113.8488813, "nok": 12563588.42777749, "nzd": 2160961.44647148, "php": 72742004.60755275, "pkr": 225525243.24448434, "pln": 5466026.871385963, "rub": 91962947.78167902, "sar": 5286531.5363644045, "sek": 13571413.425520029, "sgd": 1940643.854947177, "thb": 43302310.74659905, "try": 7821979.764537985, "twd": 44337912.351872906, "uah": 36021295.63224785, "usd": 1409121.72946954, "vef": 350149336186.4469, "vnd": 32685059291.879795, "xag": 87001.6274492588, "xau": 978.564585030124, "xdr": 1026205.5815817593, "xlm": 17170577.354277678, "xrp": 4422913.478762936, "zar": 20774367.423423808, "bits": 128668679.17754366, "link": 562364.9593146086, "sats": 12866867917.754366}}, "community_data": {"facebook_likes": null, "twitter_followers": 7588, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1167957, "bing_matches": null}}, "YOYO_20190810": {"id": "yoyow", "symbol": "yoyow", "name": "YOYOW", "localization": {"en": "YOYOW", "de": "YOYOW", "es": "YOYOW", "fr": "YOYOW", "it": "YOYOW", "pl": "YOYOW", "ro": "YOYOW", "hu": "YOYOW", "nl": "YOYOW", "pt": "YOYOW", "sv": "YOYOW", "vi": "YOYOW", "tr": "YOYOW", "ru": "YOYOW", "ja": "YOYOW", "zh": "YOYOW", "zh-tw": "YOYOW", "ko": "YOYOW", "ar": "YOYOW", "th": "YOYOW", "id": "YOYOW"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1270/thumb/yoyow.png?1548761123", "small": "https://assets.coingecko.com/coins/images/1270/small/yoyow.png?1548761123"}, "market_data": {"current_price": {"aed": 0.05404694016307273, "ars": 0.6661144735645939, "aud": 0.021759141103156594, "bch": 4.3655066740758165e-05, "bdt": 1.2433891607651055, "bhd": 0.005547064563340994, "bmd": 0.014713933281009735, "bnb": 0.0005323736560811118, "brl": 0.05826983901472252, "btc": 1.2824035059152647e-06, "cad": 0.01954225163143998, "chf": 0.014359327488937467, "clp": 10.517492185491685, "cny": 0.10338745219901524, "czk": 0.3380448040326272, "dkk": 0.09801944148977082, "eos": 0.0034956682434541557, "eth": 6.481799966589404e-05, "eur": 0.013131655751703056, "gbp": 0.012094573592257697, "hkd": 0.11532738235248943, "huf": 4.265580175903226, "idr": 209.22446501715464, "ils": 0.051267757731022365, "inr": 1.0433650089564035, "jpy": 1.564360372750385, "krw": 17.842964990776508, "kwd": 0.0044754193746184955, "lkr": 2.606865852580238, "ltc": 0.00015740207827363056, "mmk": 22.228820476946254, "mxn": 0.2884254629610093, "myr": 0.06169237346555186, "ngn": 5.326443847725524, "nok": 0.1309855675878751, "nzd": 0.022528164826088555, "php": 0.7656926944322209, "pkr": 2.343140492850861, "pln": 0.05669197566540014, "rub": 0.9606476902305511, "sar": 0.055205206277020594, "sek": 0.1408843220608746, "sgd": 0.020315660106489768, "thb": 0.4520120303926196, "try": 0.08135323411317008, "twd": 0.46248555524137536, "uah": 0.37623347889555947, "usd": 0.014713933281009735, "vef": 3656.2305890894945, "vnd": 342.08616726048217, "xag": 0.0008927016891255032, "xau": 9.96368706056858e-06, "xdr": 0.01069296844970855, "xlm": 0.1850326352453547, "xrp": 0.0469655308659542, "zar": 0.21975240227074863, "bits": 1.2824035059152648, "link": 0.0059648538155310585, "sats": 128.24035059152646}, "market_cap": {"aed": 9443926.159237837, "ars": 116387504.8192448, "aud": 3802621.730955084, "bch": 7651.758825940564, "bdt": 217264388.80781177, "bhd": 969269.8232065646, "bmd": 2571048.407153868, "bnb": 93230.42231592628, "brl": 10181817.052090993, "btc": 224.68667159429634, "cad": 3415779.2165663117, "chf": 2509196.695622974, "clp": 1837785401.4335825, "cny": 18065471.632866632, "czk": 59072094.53486143, "dkk": 17127306.35328981, "eos": 612293.2545597061, "eth": 11357.57047503245, "eur": 2294555.2904001293, "gbp": 2113455.7826970275, "hkd": 20151671.73139941, "huf": 745340299.9290141, "idr": 36559054485.41442, "ils": 8958303.9650462, "inr": 182313042.55128062, "jpy": 273329441.6887315, "krw": 3117801735.423516, "kwd": 782015.2256167346, "lkr": 455512348.05383515, "ltc": 27595.07151098486, "mmk": 3884166958.5333266, "mxn": 50417814.47291296, "myr": 10779855.766837016, "ngn": 930719523.3897003, "nok": 22888061.690568943, "nzd": 3937468.0778134945, "php": 134015898.22289531, "pkr": 409430131.0756322, "pln": 9906285.50744154, "rub": 167850638.15619943, "sar": 9646316.518800598, "sek": 24617264.004623268, "sgd": 3550486.7268107133, "thb": 78989677.45088644, "try": 14216982.398327935, "twd": 80812705.034463, "uah": 65741394.10301869, "usd": 2571048.407153868, "vef": 638873756781.1431, "vnd": 59773252074.95187, "xag": 156019.90748971267, "xau": 1740.908297452026, "xdr": 1868442.5826404842, "xlm": 32439855.65617544, "xrp": 8218261.187568666, "zar": 38402780.77240786, "bits": 224686671.59429634, "link": 1045086.9357236209, "sats": 22468667159.429634}, "total_volume": {"aed": 3756322.278820251, "ars": 46295694.62666604, "aud": 1512284.4373274087, "bch": 3034.0755514913494, "bdt": 86416925.57864214, "bhd": 385527.138788304, "bmd": 1022634.6806270215, "bnb": 37000.55949440779, "brl": 4049818.4321602057, "btc": 89.12846583307555, "cad": 1358208.1605360578, "chf": 997989.1848239149, "clp": 730977370.6795951, "cny": 7185542.58342579, "czk": 23494488.76839046, "dkk": 6812459.8860660335, "eos": 242952.81957928272, "eth": 4504.922859257736, "eur": 912664.637611113, "gbp": 840586.2774164821, "hkd": 8015380.970348876, "huf": 296462552.7087072, "idr": 14541332346.417604, "ils": 3563166.017708741, "inr": 72515025.20326231, "jpy": 108724780.76530838, "krw": 1240105854.5189815, "kwd": 311046.609728877, "lkr": 181180067.7410667, "ltc": 10939.618997262267, "mmk": 1544927674.6752627, "mxn": 20045889.53658702, "myr": 4287688.37204746, "ngn": 370193754.3869818, "nok": 9103642.208970485, "nzd": 1565732.438910379, "php": 53216491.408162974, "pkr": 162850862.77123216, "pln": 3940155.1795484857, "rub": 66766079.81918139, "sar": 3836823.0582445334, "sek": 9791616.622458272, "sgd": 1411960.907253861, "thb": 31415337.388862137, "try": 5654139.990744053, "twd": 32143258.980879273, "uah": 26148644.02220196, "usd": 1022634.6806270215, "vef": 254112080662.8869, "vnd": 23775367994.55558, "xag": 62043.757390981846, "xau": 692.4873003333958, "xdr": 743173.1656439938, "xlm": 12859973.348793402, "xrp": 3264156.4794622785, "zar": 15273035.66091378, "bits": 89128465.83307555, "link": 414563.95513938845, "sats": 8912846583.307554}}, "community_data": {"facebook_likes": null, "twitter_followers": 7588, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1167957, "bing_matches": null}}, "LRC_20190902": {"id": "loopring", "symbol": "lrc", "name": "Loopring", "localization": {"en": "Loopring", "de": "Loopring", "es": "Loopring", "fr": "Loopring", "it": "Loopring", "pl": "Loopring", "ro": "Loopring", "hu": "Loopring", "nl": "Loopring", "pt": "Loopring", "sv": "Loopring", "vi": "Loopring", "tr": "Loopring", "ru": "Loopring", "ja": "\u30eb\u30fc\u30d7\u30ea\u30f3\u30b0", "zh": "\u8def\u5370\u534f\u8bae", "zh-tw": "\u8def\u5370\u5354\u8b70", "ko": "\ub8e8\ud504\ub9c1", "ar": "Loopring", "th": "Loopring", "id": "Loopring"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/913/thumb/LRC.png?1572852344", "small": "https://assets.coingecko.com/coins/images/913/small/LRC.png?1572852344"}, "market_data": {"current_price": {"aed": 0.11841747120262829, "ars": 1.865990717767331, "aud": 0.047890430454895834, "bch": 0.00011529884879862995, "bdt": 2.7245385887927087, "bhd": 0.012155036648712437, "bmd": 0.03223839805406492, "bnb": 0.0014800617997757074, "brl": 0.1343889861281751, "btc": 3.399121780751747e-06, "cad": 0.042830904025893075, "chf": 0.03179737676868533, "clp": 23.240702583516892, "cny": 0.23032723489726675, "czk": 0.7548620904359313, "dkk": 0.21733606315662413, "eos": 0.010091360760013612, "eth": 0.00019099843824265517, "eur": 0.029148766699757526, "gbp": 0.026456667031854758, "hkd": 0.2529396341531648, "huf": 9.660690409359516, "idr": 459.0790269299853, "ils": 0.11386118616724916, "inr": 2.3111663720737794, "jpy": 3.4328091015929405, "krw": 38.94882060901849, "kwd": 0.009793638468048274, "lkr": 5.817096544875476, "ltc": 0.0005060963204411252, "mmk": 49.06071460835265, "mxn": 0.6493603208840992, "myr": 0.13598114389287114, "ngn": 11.69447889411205, "nok": 0.29321532274929235, "nzd": 0.051047278869146256, "php": 1.6821935818806724, "pkr": 5.101053031920439, "pln": 0.1278687701217405, "rub": 2.144685221265112, "sar": 0.12090366422215962, "sek": 0.31528843808254187, "sgd": 0.044748508418944885, "thb": 0.9877522779784941, "try": 0.1880800070681429, "twd": 1.0085736730304984, "uah": 0.8132708140703331, "usd": 0.03223839805406492, "vef": 8010.843522081427, "vnd": 749.0150106334218, "xag": 0.001765967219196829, "xau": 2.1097452454541184e-05, "xdr": 0.023536867558496165, "xlm": 0.5177877315213134, "xrp": 0.1260082651554805, "zar": 0.4941017755372294, "bits": 3.399121780751747, "link": 0.018106687314530415, "sats": 339.91217807517467}, "market_cap": {"aed": 113973150.89069389, "ars": 1795958311.5300505, "aud": 46093057.05503856, "bch": 110890.78120262222, "bdt": 2622284064.457354, "bhd": 11698846.563570853, "bmd": 31028460.315648496, "bnb": 1424306.5778927696, "brl": 129345239.67181219, "btc": 3269.711623458628, "cad": 41223419.46464038, "chf": 30603990.978530392, "clp": 22368456913.12248, "cny": 221682834.72515053, "czk": 726531398.2909081, "dkk": 209179234.014833, "eos": 9704602.95745659, "eth": 183673.48868321202, "eur": 28054785.764377683, "gbp": 25463723.157259148, "hkd": 243446569.13207015, "huf": 9298115510.760681, "idr": 441849354454.7411, "ils": 109587867.5658231, "inr": 2224426100.1582365, "jpy": 3303972511.3308687, "krw": 37487034330.35071, "kwd": 9426073.902370231, "lkr": 5598775379.3556, "ltc": 486902.30521819834, "mmk": 47219419331.24935, "mxn": 624989210.4849323, "myr": 130877642.24142112, "ngn": 11255573979.501492, "nok": 282210672.8320924, "nzd": 49131425.94606757, "php": 1619059256.9484608, "pkr": 4909605660.415361, "pln": 123069733.57297248, "rub": 2064193145.2667685, "sar": 116366034.72177668, "sek": 303455363.15485173, "sgd": 43069054.341136016, "thb": 950680995.6111552, "try": 181021185.53452495, "twd": 970720943.905238, "uah": 782747986.9792922, "usd": 31028460.315648496, "vef": 7710188946203.908, "vnd": 720903764954.0939, "xag": 1699688.7899855138, "xau": 20305.644999766675, "xdr": 22653506.53493115, "xlm": 498273086.97187513, "xrp": 121232441.88292958, "zar": 475557665.9993257, "bits": 3269711623.4586277, "link": 17417335.945391625, "sats": 326971162345.8628}, "total_volume": {"aed": 13409918.43871918, "ars": 211309894.38078445, "aud": 5423243.376785201, "bch": 13056.75710488847, "bdt": 308534204.3517845, "bhd": 1376469.6072589206, "bmd": 3650764.402494507, "bnb": 167606.24777482697, "brl": 15218576.488238608, "btc": 384.92585072314165, "cad": 4850288.760693339, "chf": 3600821.945468384, "clp": 2631840748.990546, "cny": 26082886.27362199, "czk": 85482648.48440902, "dkk": 24611730.44081998, "eos": 1142773.3032393127, "eth": 21629.18573370025, "eur": 3300886.0944526433, "gbp": 2996025.3622579346, "hkd": 28643576.2347045, "huf": 1094003014.3824956, "idr": 51987365086.72405, "ils": 12893952.25495022, "inr": 261722803.51087248, "jpy": 388740695.10642, "krw": 4410671012.8737335, "kwd": 1109058.4163050011, "lkr": 658743928.786109, "ltc": 57311.73204702537, "mmk": 5555769556.3143, "mxn": 73535339.4390254, "myr": 15398876.789784597, "ngn": 1324314787.0048823, "nok": 33204505.40885609, "nzd": 5780733.5286063, "php": 190496203.8292202, "pkr": 577657202.2263893, "pln": 14480209.387834098, "rub": 242870022.48746905, "sar": 13691461.738675142, "sek": 35704125.38301365, "sgd": 5067443.528882508, "thb": 111855770.52802907, "try": 21298694.60243586, "twd": 114213642.27273096, "uah": 92097012.1597383, "usd": 3650764.402494507, "vef": 907169838753.2323, "vnd": 84820509169.4918, "xag": 199982.95973031706, "xau": 2389.1332402804574, "xdr": 2665379.281088411, "xlm": 58635699.426387735, "xrp": 14269520.71496346, "zar": 55953436.96406782, "bits": 384925850.7231417, "link": 2050450.8128514646, "sats": 38492585072.31416}}, "community_data": {"facebook_likes": null, "twitter_followers": 34417, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 2442, "reddit_accounts_active_48h": "13.64"}, "developer_data": {"forks": 10, "stars": 25, "subscribers": 17, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 309, "pull_request_contributors": 11, "code_additions_deletions_4_weeks": {"additions": 30398, "deletions": -29613}, "commit_count_4_weeks": 44}, "public_interest_stats": {"alexa_rank": 491659, "bing_matches": null}}, "QLC_20190904": {"id": "qlink", "symbol": "qlc", "name": "QLC Chain", "localization": {"en": "QLC Chain", "de": "QLC Chain", "es": "QLC Chain", "fr": "QLC Chain", "it": "QLC Chain", "pl": "QLC Chain", "ro": "QLC Chain", "hu": "QLC Chain", "nl": "QLC Chain", "pt": "QLC Chain", "sv": "QLC Chain", "vi": "QLC Chain", "tr": "QLC Chain", "ru": "QLC Chain", "ja": "QLC Chain", "zh": "QLC Chain", "zh-tw": "QLC Chain", "ko": "\ud050\ub9c1\ud06c", "ar": "QLC Chain", "th": "QLC Chain", "id": "QLC Chain"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/2053/thumb/QLC_Chain_logo.jpg?1547036348", "small": "https://assets.coingecko.com/coins/images/2053/small/QLC_Chain_logo.jpg?1547036348"}, "market_data": {"current_price": {"aed": 0.05494664902150572, "ars": 0.8885217057559562, "aud": 0.02220230169626463, "bch": 5.357532076081017e-05, "bdt": 1.2639312891543173, "bhd": 0.005640119473232415, "bmd": 0.014959537094973585, "bnb": 0.0007078769849730145, "brl": 0.06201326507350347, "btc": 1.558748326509314e-06, "cad": 0.01998914289982295, "chf": 0.014811886463846194, "clp": 10.790089713548024, "cny": 0.10706091912759749, "czk": 0.35316923959926516, "dkk": 0.10147951583746273, "eos": 0.004494281905576005, "eth": 8.6956320676886e-05, "eur": 0.01358625158965501, "gbp": 0.01230324689070459, "hkd": 0.11731642978305658, "huf": 4.510001243392636, "idr": 212.89576182034747, "ils": 0.05281427172537691, "inr": 1.0731956952396957, "jpy": 1.5901291094279713, "krw": 18.108669248836485, "kwd": 0.004548447253726711, "lkr": 2.682071440579384, "ltc": 0.0002325590920708354, "mmk": 22.766937979868587, "mxn": 0.30019958316208323, "myr": 0.06291143568068573, "ngn": 5.430311965475411, "nok": 0.13644857072178274, "nzd": 0.02369665473529293, "php": 0.7788788902020622, "pkr": 2.356127092458337, "pln": 0.05957560850387761, "rub": 0.9979881184484255, "sar": 0.05610649185155321, "sek": 0.146886198781836, "sgd": 0.02075635771927581, "thb": 0.45747012413283966, "try": 0.08722906080079101, "twd": 0.46866597633055185, "uah": 0.3773842422948981, "usd": 0.014959537094973585, "vef": 3717.2601017467705, "vnd": 347.80316674334733, "xag": 0.0008138812450159558, "xau": 9.838438761251277e-06, "xdr": 0.010932624182988935, "xlm": 0.23846575346592613, "xrp": 0.058046990937848056, "zar": 0.22715742928438437, "bits": 1.558748326509314, "link": 0.008394330883971656, "sats": 155.8748326509314}, "market_cap": {"aed": 13187195.765161373, "ars": 213245209.3814295, "aud": 5328552.4071035115, "bch": 12858.07698259444, "bdt": 303343509.3970361, "bhd": 1353628.6735757797, "bmd": 3590288.9027936594, "bnb": 169890.47639352348, "brl": 14883183.617640832, "btc": 374.0995983622354, "cad": 4797394.295957508, "chf": 3554852.7513230857, "clp": 2589621531.251525, "cny": 25694620.5906234, "czk": 84760617.50382365, "dkk": 24355083.800991047, "eos": 1078627.657338241, "eth": 20869.51696245264, "eur": 3260700.3815172026, "gbp": 2952779.2537691016, "hkd": 28155943.147933584, "huf": 1082400298.4142327, "idr": 51094982836.8834, "ils": 12675425.214090459, "inr": 257566966.85752705, "jpy": 381630986.262713, "krw": 4346080619.720756, "kwd": 1091627.3408944106, "lkr": 643697145.7390522, "ltc": 55814.1820970005, "mmk": 5464065115.168462, "mxn": 72047899.95889997, "myr": 15098744.563364575, "ngn": 1303274871.7140985, "nok": 32747656.973227847, "nzd": 5687197.136470303, "php": 186930933.64849493, "pkr": 565470502.1900009, "pln": 14298146.040930627, "rub": 239517148.4276221, "sar": 13465558.044372771, "sek": 35252687.70764064, "sgd": 4981525.852626194, "thb": 109792829.79188153, "try": 20934974.59218984, "twd": 112479834.31933244, "uah": 90572218.15077554, "usd": 3590288.9027936594, "vef": 892142424419.2249, "vnd": 83472760018.40335, "xag": 195331.4988038294, "xau": 2361.2253027003067, "xdr": 2623829.8039173433, "xlm": 57231780.83182226, "xrp": 13931277.825083535, "zar": 54517783.02825226, "bits": 374099598.36223537, "link": 2014639.4121531975, "sats": 37409959836.22354}, "total_volume": {"aed": 187145.41932005153, "ars": 3026258.564623004, "aud": 75619.88100842101, "bch": 182.4747468233018, "bdt": 4304884.015910386, "bhd": 19209.952610943474, "bmd": 50951.40272115503, "bnb": 2410.992072108683, "brl": 211213.944840276, "btc": 5.309015460885339, "cad": 68081.97763564518, "chf": 50448.51237629723, "clp": 36750482.51172832, "cny": 364643.9038544903, "czk": 1202876.0008618452, "dkk": 345633.935499227, "eos": 15307.28964804291, "eth": 296.16869063726483, "eur": 46274.063951353, "gbp": 41904.21689697311, "hkd": 399573.63798997796, "huf": 15360828.892373815, "idr": 725111855.3514827, "ils": 179882.65352196997, "inr": 3655248.5360753904, "jpy": 5415896.769982188, "krw": 61677182.50798542, "kwd": 15491.773997367163, "lkr": 9134995.369728714, "ltc": 792.0841321051739, "mmk": 77543002.72630812, "mxn": 1022464.1151198122, "myr": 214273.0670596543, "ngn": 18495359.187779274, "nok": 464736.71166653384, "nzd": 80709.56948044572, "php": 2652820.856270061, "pkr": 8024845.928581909, "pln": 202911.41376686405, "rub": 3399095.454035056, "sar": 191095.78347582812, "sek": 500286.72817874874, "sgd": 70695.07127560247, "thb": 1558119.3709142813, "try": 297097.62926705513, "twd": 1596251.8592734186, "uah": 1285351.0364465762, "usd": 50951.40272115503, "vef": 12660793931.051506, "vnd": 1184599436.7290692, "xag": 2772.0370502598253, "xau": 33.509209027622035, "xdr": 37235.94747685549, "xlm": 812201.9125931737, "xrp": 197705.02210387783, "zar": 773686.3505261692, "bits": 5309015.460885339, "link": 28590.652954600955, "sats": 530901546.08853394}}, "community_data": {"facebook_likes": null, "twitter_followers": 24800, "reddit_average_posts_48h": 0.05, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5749, "reddit_accounts_active_48h": "482.190476190476"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 940522, "bing_matches": null}}, "EDO_20190906": {"id": "pnetwork", "symbol": "pnt", "name": "pNetwork", "localization": {"en": "pNetwork", "de": "pNetwork", "es": "pNetwork", "fr": "pNetwork", "it": "pNetwork", "pl": "pNetwork", "ro": "pNetwork", "hu": "pNetwork", "nl": "pNetwork", "pt": "pNetwork", "sv": "pNetwork", "vi": "pNetwork", "tr": "pNetwork", "ru": "pNetwork", "ja": "pNetwork", "zh": "pNetwork", "zh-tw": "pNetwork", "ko": "pNetwork", "ar": "pNetwork", "th": "pNetwork", "id": "pNetwork"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/11659/thumb/pNetwork.png?1592411134", "small": "https://assets.coingecko.com/coins/images/11659/small/pNetwork.png?1592411134"}}, "POA_20200728": {"id": "poa-network", "symbol": "poa", "name": "POA Network", "localization": {"en": "POA Network", "de": "POA Network", "es": "POA Network", "fr": "POA Network", "it": "POA Network", "pl": "POA Network", "ro": "POA Network", "hu": "POA Network", "nl": "POA Network", "pt": "POA Network", "sv": "POA Network", "vi": "POA Network", "tr": "POA Network", "ru": "POA Network", "ja": "\u30dd\u30a2\u30cd\u30c3\u30c8\u30ef\u30fc\u30af", "zh": "POA Network", "zh-tw": "POA Network", "ko": "POA \ub124\ud2b8\uc6cc\ud06c", "ar": "POA Network", "th": "POA Network", "id": "POA Network"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/3157/thumb/poa-network.png?1548331565", "small": "https://assets.coingecko.com/coins/images/3157/small/poa-network.png?1548331565"}, "market_data": {"current_price": {"aed": 0.06829832101189336, "ars": 1.3358374331603906, "aud": 0.02617129182994805, "bch": 7.908891423730165e-05, "bdt": 1.5762527668267265, "bhd": 0.007012022939543408, "bmd": 0.01859469670892823, "bnb": 0.0009701694385142266, "brl": 0.09726049087088452, "btc": 1.949610793434776e-06, "cad": 0.024949341335720854, "chf": 0.017118649684173502, "clp": 14.396021667120309, "cny": 0.1304845652155621, "czk": 0.4188529812472908, "dkk": 0.11871040325946873, "eos": 0.007172517286016589, "eth": 6.656286231717036e-05, "eur": 0.015952222954319143, "gbp": 0.01453091871667551, "hkd": 0.1441358618044216, "huf": 5.519324363885844, "idr": 271.5337073663024, "ils": 0.06345849335249357, "inr": 1.3894831331656494, "jpy": 1.9736869568855306, "krw": 22.343201618480965, "kwd": 0.005698512158721429, "lkr": 3.4526984846746553, "ltc": 0.0004210729569926753, "mmk": 25.40493873929382, "mxn": 0.41439397297649033, "myr": 0.07925989472180661, "ngn": 7.205444974709689, "nok": 0.17033300026279505, "nzd": 0.027976688122811278, "php": 0.9173673539077302, "pkr": 3.113681963910038, "pln": 0.07027307780238162, "rub": 1.332683772598557, "sar": 0.06974357521889803, "sek": 0.1643097503207491, "sgd": 0.0257118168742704, "thb": 0.5881169909909865, "try": 0.12730477910485172, "twd": 0.5478834411802151, "uah": 0.5169321036407872, "usd": 0.01859469670892823, "vef": 4620.552343388056, "vnd": 428.33362386800695, "xag": 0.0008168116596436621, "xau": 9.778393158324083e-06, "xdr": 0.013314063169346524, "xlm": 0.19420658360586132, "xrp": 0.09098165485499718, "yfi": 5.790913072333165e-06, "zar": 0.30989028989657674, "bits": 1.9496107934347762, "link": 0.002504001760502721, "sats": 194.96107934347762}, "market_cap": {"aed": 19065946.509507466, "ars": 372908216.02479213, "aud": 7305896.290299857, "bch": 22063.88049144993, "bdt": 440021811.5544622, "bhd": 1957454.4777681034, "bmd": 5190837.601281639, "bnb": 270783.1114130834, "brl": 27150935.61538366, "btc": 544.0565857073598, "cad": 6964780.397331643, "chf": 4778788.912491903, "clp": 4018748557.6289606, "cny": 36425664.699473605, "czk": 116925693.30390966, "dkk": 33138826.330342118, "eos": 1999826.621054098, "eth": 18582.117451981125, "eur": 4453172.860601105, "gbp": 4056405.997709544, "hkd": 40236518.12445454, "huf": 1540757393.9064186, "idr": 75800503782.11522, "ils": 17714875.29864587, "inr": 387883782.50449014, "jpy": 550968301.8406748, "krw": 6237258553.324029, "kwd": 1590778.9004511698, "lkr": 963844552.0615561, "ltc": 117445.78040199234, "mmk": 7091963549.094308, "mxn": 115680930.44712192, "myr": 22125945.27546301, "ngn": 2011449570.4966352, "nok": 47549629.67902019, "nzd": 7809885.09468347, "php": 256089412.44876894, "pkr": 869205756.3346115, "pln": 19617213.462763563, "rub": 372027849.9676153, "sar": 19469399.171229444, "sek": 45868197.99070026, "sgd": 7177630.693172207, "thb": 164176906.92006943, "try": 35538005.51546646, "twd": 152945434.50296292, "uah": 144305155.54468942, "usd": 5190837.601281639, "vef": 1289858996798.404, "vnd": 119572279960.86176, "xag": 228018.59812038665, "xau": 2729.705769385972, "xdr": 3716712.394244072, "xlm": 54288919.949467376, "xrp": 25399016.74329636, "yfi": 1616.006848582879, "zar": 86508007.86091115, "bits": 544056585.7073598, "link": 698764.4164732127, "sats": 54405658570.73598}, "total_volume": {"aed": 1781972.1985466378, "ars": 34853348.25808083, "aud": 682835.445294431, "bch": 2063.5096777791778, "bdt": 41126027.21051249, "bhd": 182950.76289886725, "bmd": 485154.4237807347, "bnb": 25312.70083507471, "brl": 2537624.4713063217, "btc": 50.86731533681831, "cad": 650953.5223356806, "chf": 446642.8656210199, "clp": 375606749.9231231, "cny": 3404474.1379965506, "czk": 10928297.457430534, "dkk": 3097274.356858589, "eos": 187138.22254943932, "eth": 1736.6923278279437, "eur": 416209.6137716782, "gbp": 379126.35023557406, "hkd": 3760650.2582151727, "huf": 144004748.952657, "idr": 7084588761.864142, "ils": 1655696.2051249896, "inr": 36253018.77068827, "jpy": 51495486.76594375, "krw": 582956704.0706903, "kwd": 148679.93955742003, "lkr": 90084391.80493082, "ltc": 10986.218867519578, "mmk": 662840518.8953131, "mxn": 10811957.426607925, "myr": 2067970.731365383, "ngn": 187997339.2150347, "nok": 4444160.068158659, "nzd": 729940.0586081493, "php": 23935041.100544795, "pkr": 81239108.26208419, "pln": 1833495.5983521543, "rub": 34771066.06780764, "sar": 1819680.34098057, "sek": 4287007.391744338, "sgd": 670847.2794828082, "thb": 15344566.482920466, "try": 3321510.305757923, "twd": 14294832.51948744, "uah": 13487280.852243837, "usd": 485154.4237807347, "vef": 120554878888.06569, "vnd": 11175657001.91378, "xag": 21311.441443491418, "xau": 255.12815683357488, "xdr": 347377.3595889387, "xlm": 5067045.977603226, "xrp": 2373803.2960010576, "yfi": 151.09077274829374, "zar": 8085350.7526062885, "bits": 50867315.33681831, "link": 65331.93578141796, "sats": 5086731533.68183}}, "community_data": {"facebook_likes": null, "twitter_followers": 17329, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 51, "stars": 60, "subscribers": 8, "total_issues": 72, "closed_issues": 63, "pull_requests_merged": 134, "pull_request_contributors": 6, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 642825, "bing_matches": null}}, "SNM_20200904": {"id": "sonm", "symbol": "snm", "name": "SONM", "localization": {"en": "SONM", "de": "SONM", "es": "SONM", "fr": "SONM", "it": "SONM", "pl": "SONM", "ro": "SONM", "hu": "SONM", "nl": "SONM", "pt": "SONM", "sv": "SONM", "vi": "SONM", "tr": "SONM", "ru": "SONM", "ja": "\u30bd\u30f3", "zh": "SONM", "zh-tw": "SONM", "ko": "SONM", "ar": "SONM", "th": "SONM", "id": "SONM"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/861/thumb/sonm.png?1548609871", "small": "https://assets.coingecko.com/coins/images/861/small/sonm.png?1548609871"}, "market_data": {"current_price": {"aed": 0.050959765292998935, "ars": 1.0283273313163825, "aud": 0.01880885924969601, "bch": 5.064225768333946e-05, "bdt": 1.1753985985170916, "bhd": 0.00523034038829551, "bmd": 0.013873397934498207, "bnb": 0.0005998465331944369, "brl": 0.07620241283481849, "btc": 1.19e-06, "cad": 0.01808924609883351, "chf": 0.012542300896274842, "clp": 10.771283181997456, "cny": 0.09501474043399813, "czk": 0.30529383292718826, "dkk": 0.08651173483994415, "dot": 0.002205286487602279, "eos": 0.004308964922072518, "eth": 3.1912507663754935e-05, "eur": 0.011622231018656882, "gbp": 0.010381893749721, "hkd": 0.10752368968163845, "huf": 4.129694363162088, "idr": 201.69988032428142, "ils": 0.04652443997333985, "inr": 1.0188318228340947, "jpy": 1.4705593709599156, "krw": 16.480764342307854, "kwd": 0.004235742616973398, "lkr": 2.576880614733186, "ltc": 0.00022752040142948017, "mmk": 18.408283016868417, "mxn": 0.30400850422875014, "myr": 0.05785900608582488, "ngn": 5.360520294068627, "nok": 0.12123920834764186, "nzd": 0.020609418200624854, "php": 0.6727817203395886, "pkr": 2.29583583046115, "pln": 0.05111215069591147, "rub": 1.0245213033270317, "sar": 0.05203047252538974, "sek": 0.11999963411559235, "sgd": 0.01887427232095711, "thb": 0.4307689781193748, "try": 0.10208046200203807, "twd": 0.4067874501965964, "uah": 0.3817594518676197, "usd": 0.013873397934498207, "vef": 3447.3679426146255, "vnd": 321.0369295144095, "xag": 0.0004934522086157579, "xau": 7.0519869040847985e-06, "xdr": 0.009775418159014409, "xlm": 0.14289082214903756, "xrp": 0.04920787179123274, "yfi": 3.962790989727108e-07, "zar": 0.2353441605414473, "bits": 1.19, "link": 0.0008859427873596074, "sats": 119.0}, "market_cap": {"aed": 22357090.045317028, "ars": 451207106.5014074, "aud": 8247935.394563206, "bch": 22126.007711082002, "bdt": 515671376.3317967, "bhd": 2294444.145263846, "bmd": 6086543.081051164, "bnb": 262365.9990507797, "brl": 33430946.526981518, "btc": 520.74577072, "cad": 7937004.341267691, "chf": 5501961.050831597, "clp": 4725581974.899309, "cny": 41684907.59919495, "czk": 133925865.42476004, "dkk": 37947423.21447395, "dot": 965036.6484410509, "eos": 1882799.1518861067, "eth": 13929.309938331837, "eur": 5097930.23456833, "gbp": 4554328.898913486, "hkd": 47171895.75404714, "huf": 1811659548.0748727, "idr": 88486847305.85962, "ils": 20411222.222304974, "inr": 446982333.47761726, "jpy": 644814460.5496395, "krw": 7230752314.857932, "kwd": 1858245.9488172354, "lkr": 1130530166.4632413, "ltc": 99567.84288692762, "mmk": 8076089805.781519, "mxn": 133395605.79153894, "myr": 25353495.204118542, "ngn": 2351769758.2627482, "nok": 53173805.453556344, "nzd": 9036781.810582845, "php": 295096035.00793946, "pkr": 1007230078.3916085, "pln": 22418259.803281616, "rub": 449588591.2249236, "sar": 22828042.402756467, "sek": 52630526.70468449, "sgd": 8280541.005848384, "thb": 188987162.6666378, "try": 44795538.91199848, "twd": 178451368.76642436, "uah": 167485670.1553104, "usd": 6086543.081051164, "vef": 1512430739608.67, "vnd": 140805392499.0382, "xag": 216472.1043923097, "xau": 3093.1203283593777, "xdr": 4288675.639597928, "xlm": 62442818.73345322, "xrp": 21498284.99917596, "yfi": 173.41232337375752, "zar": 103216601.84807351, "bits": 520745770.71999997, "link": 382494.1868846511, "sats": 52074577072.0}, "total_volume": {"aed": 2997119.205960439, "ars": 60479469.96972913, "aud": 1106213.7546229092, "bch": 2978.4454905404873, "bdt": 69129237.42917114, "bhd": 307614.3216386572, "bmd": 815942.2862791114, "bnb": 35279.039354461536, "brl": 4481726.195845286, "btc": 69.98799611, "cad": 1063890.828233607, "chf": 737655.8876797757, "clp": 633496239.8666776, "cny": 5588143.936039765, "czk": 17955381.169172306, "dkk": 5088052.908779296, "dot": 129700.48917289401, "eos": 253425.05899507384, "eth": 1876.8844220430467, "eur": 683543.411196033, "gbp": 610594.907033535, "hkd": 6323838.298463326, "huf": 242881540.3567035, "idr": 11862664234.893507, "ils": 2736262.4570370065, "inr": 59921006.431308255, "jpy": 86488658.43215682, "krw": 969290479.5624107, "kwd": 249118.60319302135, "lkr": 151555218.85704255, "ltc": 13381.257958144619, "mmk": 1082654487.5431645, "mxn": 17879786.564175364, "myr": 3402887.3049270404, "ngn": 315270649.9906312, "nok": 7130495.16152457, "nzd": 1212110.8242476434, "php": 39568608.76134978, "pkr": 135026007.70715427, "pln": 3006081.516032929, "rub": 60255624.362911284, "sar": 3060091.1837886046, "sek": 7057591.534187816, "sgd": 1110060.9225027116, "thb": 25335006.357081912, "try": 6003703.342441717, "twd": 23924570.152904376, "uah": 22452587.422072858, "usd": 815942.2862791114, "vef": 202751574922.2278, "vnd": 18881286868.92507, "xag": 29021.62290510132, "xau": 414.751623538536, "xdr": 574925.9899888436, "xlm": 8403901.096404657, "xrp": 2894084.318912753, "yfi": 23.306537846534777, "zar": 13841400.161752965, "bits": 69987996.11, "link": 52105.344836476266, "sats": 6998799611.0}}, "community_data": {"facebook_likes": null, "twitter_followers": 29105, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 9585, "reddit_accounts_active_48h": "266.25"}, "developer_data": {"forks": 73, "stars": 337, "subscribers": 71, "total_issues": 225, "closed_issues": 145, "pull_requests_merged": 1521, "pull_request_contributors": 16, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": null, "bing_matches": null}}, "GVT_20200930": {"id": "genesis-vision", "symbol": "gvt", "name": "Genesis Vision", "localization": {"en": "Genesis Vision", "de": "Genesis Vision", "es": "Genesis Vision", "fr": "Genesis Vision", "it": "Genesis Vision", "pl": "Genesis Vision", "ro": "Genesis Vision", "hu": "Genesis Vision", "nl": "Genesis Vision", "pt": "Genesis Vision", "sv": "Genesis Vision", "vi": "Genesis Vision", "tr": "Genesis Vision", "ru": "Genesis Vision", "ja": "\u30b8\u30a7\u30cd\u30b7\u30b9\u30d3\u30b8\u30e7\u30f3", "zh": "Genesis Vision", "zh-tw": "Genesis Vision", "ko": "\uc81c\ub124\uc2dc\uc2a4 \ube44\uc804", "ar": "Genesis Vision", "th": "Genesis Vision", "id": "Genesis Vision"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1173/thumb/Genesis-vision.png?1558045005", "small": "https://assets.coingecko.com/coins/images/1173/small/Genesis-vision.png?1558045005"}, "market_data": {"current_price": {"aed": 4.738310504253499, "ars": 97.76783368166461, "aud": 1.8358960094880974, "bch": 0.005824665058769289, "bdt": 109.36387143684817, "bhd": 0.486557277793839, "bmd": 1.290038253268031, "bnb": 0.04930207410802583, "brl": 7.174354239812188, "btc": 0.00012017176636471154, "cad": 1.727058062136379, "chf": 1.1984352169799783, "clp": 1016.6789409944175, "cny": 8.802963032650425, "czk": 30.07350076400981, "dkk": 8.256941441572195, "dot": 0.2974478945257961, "eos": 0.5019971241108526, "eth": 0.003638369488854191, "eur": 1.1090897476351411, "gbp": 1.0121923943556717, "hkd": 9.997848064357404, "huf": 403.10990075405203, "idr": 19162.86033278746, "ils": 4.490120044707257, "inr": 95.07517424672754, "jpy": 136.21642920082553, "krw": 1515.078976359378, "kwd": 0.3953464131347756, "lkr": 239.05599409360596, "ltc": 0.027982003171467165, "mmk": 1687.038728940429, "mxn": 28.821905650689125, "myr": 5.3813945735076105, "ngn": 490.8595553684858, "nok": 12.342118478578636, "nzd": 1.9710752479332965, "php": 62.5438229405259, "pkr": 213.6948366538498, "pln": 5.046803801948739, "rub": 100.81261937813719, "sar": 4.838996699882811, "sek": 11.784002778875992, "sgd": 1.776769686226059, "thb": 40.76682909131596, "try": 9.887756199823508, "twd": 37.75632358134753, "uah": 36.48352668933444, "usd": 1.290038253268031, "vef": 320558.5639552722, "vnd": 29952.096693357074, "xag": 0.05634591671514777, "xau": 0.0006930730515682513, "xdr": 0.919144515223956, "xlm": 17.462968202413094, "xrp": 5.3409587523356405, "yfi": 4.072584872356725e-05, "zar": 22.061202176787276, "bits": 120.17176636471154, "link": 0.12506919804618388, "sats": 12017.176636471155}, "market_cap": {"aed": 21024083.832131073, "ars": 433800007.31568706, "aud": 8145948.134024571, "bch": 25835.688189719076, "bdt": 485252116.5995099, "bhd": 2158875.1915452527, "bmd": 5723954.215118739, "bnb": 218331.7016267548, "brl": 31832912.774250478, "btc": 533.0790347226953, "cad": 7663029.564803403, "chf": 5317507.674211575, "clp": 4511047401.102389, "cny": 39059118.77312714, "czk": 133437393.0582693, "dkk": 36636397.91203599, "dot": 1319042.8078092895, "eos": 2227041.9732599044, "eth": 16157.170656858521, "eur": 4921078.053180882, "gbp": 4491140.40417488, "hkd": 44360874.125338726, "huf": 1788615655.1807575, "idr": 85026420648.93869, "ils": 19922852.28068439, "inr": 421852563.6771424, "jpy": 604398049.528599, "krw": 6722469408.175132, "kwd": 1754168.7327194968, "lkr": 1060701542.4349496, "ltc": 124234.57230176407, "mmk": 7485462093.177733, "mxn": 127884012.67876117, "myr": 23877475.008367736, "ngn": 2177964578.85268, "nok": 54762500.96459463, "nzd": 8745744.12436418, "php": 277509583.9547012, "pkr": 948173015.7344153, "pln": 22392881.62336349, "rub": 447309850.048883, "sar": 21470832.73466686, "sek": 52286118.03273669, "sgd": 7883602.140483035, "thb": 180884142.48424596, "try": 43872391.87262047, "twd": 167526402.38640872, "uah": 161878948.81937495, "usd": 5723954.215118739, "vef": 1422331887210.2864, "vnd": 132898718069.22585, "xag": 250009.212261233, "xau": 3075.1944020725305, "xdr": 4078283.034546796, "xlm": 77460874.56127156, "xrp": 23701636.357220948, "yfi": 182.38365943331615, "zar": 97886485.82358833, "bits": 533079034.7226953, "link": 552842.9766790364, "sats": 53307903472.26952}, "total_volume": {"aed": 608991.5460406286, "ars": 12565614.71296407, "aud": 235958.60764809043, "bch": 748.6153083729956, "bdt": 14055995.926718509, "bhd": 62534.793482824294, "bmd": 165802.21781666917, "bnb": 6336.551035881625, "brl": 922084.1640547361, "btc": 15.44508105224072, "cad": 221970.20613533352, "chf": 154028.9339339436, "clp": 130668701.33296248, "cny": 1131401.1739373915, "czk": 3865197.8819639916, "dkk": 1061223.7272243076, "dot": 38229.50247586882, "eos": 64519.20034488771, "eth": 467.62158328276234, "eur": 142545.80393239675, "gbp": 130092.06774775095, "hkd": 1284973.8201679029, "huf": 51809716.029399484, "idr": 2462907386.5355372, "ils": 577092.8573548788, "inr": 12219540.551979646, "jpy": 17507221.981480025, "krw": 194725585.7036987, "kwd": 50811.91347431444, "lkr": 30724681.150097076, "ltc": 3596.3880706864456, "mmk": 216826719.74442714, "mxn": 3704336.5702382536, "myr": 691643.9516222379, "ngn": 63087743.87924262, "nok": 1586271.2684065364, "nzd": 253332.52464644596, "php": 8038447.331311586, "pkr": 27465137.381331306, "pln": 648640.6593982164, "rub": 12956945.915719291, "sar": 621932.2433390012, "sek": 1514539.4259014183, "sgd": 228359.3945988984, "thb": 5239558.330592332, "try": 1270824.258899428, "twd": 4852632.99017116, "uah": 4689046.718995612, "usd": 165802.21781666917, "vef": 41199802183.59299, "vnd": 3849594418.9541135, "xag": 7241.8611871533285, "xau": 89.07724152200572, "xdr": 118133.08538107033, "xlm": 2244428.6828605286, "xrp": 686446.9360976464, "yfi": 5.234291327197305, "zar": 2835416.8873264254, "bits": 15445081.05224072, "link": 16074.523653912955, "sats": 1544508105.224072}}, "community_data": {"facebook_likes": null, "twitter_followers": 20793, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 5497, "reddit_accounts_active_48h": "29.25"}, "developer_data": {"forks": 2, "stars": 16, "subscribers": 5, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 166748, "bing_matches": null}}, "PPT_20201021": {"id": "populous", "symbol": "ppt", "name": "Populous", "localization": {"en": "Populous", "de": "Populous", "es": "Populous", "fr": "Populous", "it": "Populous", "pl": "Populous", "ro": "Populous", "hu": "Populous", "nl": "Populous", "pt": "Populous", "sv": "Populous", "vi": "Populous", "tr": "Populous", "ru": "Populous", "ja": "\u30dd\u30d4\u30e5\u30e9\u30b9", "zh": "Populous", "zh-tw": "Populous", "ko": "\ud30c\ud4f0\ub7ec\uc2a4", "ar": "Populous", "th": "Populous", "id": "Populous"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/753/thumb/populous.png?1548331905", "small": "https://assets.coingecko.com/coins/images/753/small/populous.png?1548331905"}, "market_data": {"current_price": {"aed": 0.7228651793251257, "ars": 15.251433865224707, "aud": 0.2779340844536679, "bch": 0.0008036537100582694, "bdt": 16.68508334202556, "bhd": 0.07423665979527674, "bmd": 0.19680511280292104, "bnb": 0.00650917046534937, "brl": 1.1116310470793223, "btc": 1.7317255646784565e-05, "cad": 0.2596351450652525, "chf": 0.18006447629767863, "clp": 156.16481961614585, "cny": 1.3181219235088393, "czk": 4.582607051616, "dkk": 1.2500371947346691, "dot": 0.04964812484012862, "eos": 0.07790758241125151, "eth": 0.0005337797770400843, "eur": 0.16799422192436234, "gbp": 0.15238501801262427, "hkd": 1.5253212983444457, "huf": 61.2122942350922, "idr": 2905.6995672118023, "ils": 0.664911977758051, "inr": 14.454255075305197, "jpy": 20.748171066321373, "krw": 224.79289699877717, "kwd": 0.06022511978927285, "lkr": 36.26190037004299, "ltc": 0.004191130947681078, "mmk": 254.9940739059968, "mxn": 4.160676767082922, "myr": 0.8164460104629144, "ngn": 74.98274797791268, "nok": 1.8460978878041856, "nzd": 0.29789209094301294, "php": 9.582556073365184, "pkr": 32.03003210867528, "pln": 0.764003548859433, "rub": 15.312146274473292, "sar": 0.7385861685409356, "sek": 1.7437188840985423, "sgd": 0.26734006523148773, "thb": 6.142200976329513, "try": 1.5615304870234907, "twd": 5.664149549024449, "uah": 5.581337500049011, "usd": 0.19680511280292104, "vef": 48903.63846137171, "vnd": 4562.469643686779, "xag": 0.008147601778666446, "xau": 0.00010362182799299363, "xdr": 0.13942146523229598, "xlm": 2.401856341211286, "xrp": 0.8169605831015981, "yfi": 1.4006431526733291e-05, "zar": 3.256279338928848, "bits": 17.317255646784563, "link": 0.018481073358541798, "sats": 1731.7255646784565}, "market_cap": {"aed": 26290892.30956729, "ars": 554700678.3359841, "aud": 10108572.514658397, "bch": 29271.345107027057, "bdt": 606843076.506869, "bhd": 2700016.66136661, "bmd": 7157879.746683165, "bnb": 236674.97964987348, "brl": 40430460.59296903, "btc": 629.9357261000039, "cad": 9443032.855811791, "chf": 6549016.179670779, "clp": 5679776218.995941, "cny": 47940615.39138521, "czk": 166671229.90151742, "dkk": 45464346.89302012, "dot": 1806441.153540442, "eos": 2834034.299998551, "eth": 19420.033787593402, "eur": 6110016.256926977, "gbp": 5542303.340578294, "hkd": 55476538.55688945, "huf": 2226315337.610866, "idr": 105681441837.94154, "ils": 24183111.46056146, "inr": 525706970.6340698, "jpy": 754619183.1157287, "krw": 8175806521.028109, "kwd": 2190411.4128015013, "lkr": 1318859650.231214, "ltc": 152599.9983280598, "mmk": 9274235263.20543, "mxn": 151325458.67048353, "myr": 29694464.129115134, "ngn": 2727152183.486289, "nok": 67143309.91360337, "nzd": 10834453.099769544, "php": 348521352.2256554, "pkr": 1164944928.772683, "pln": 27787111.07089621, "rub": 556908812.6590388, "sar": 26862670.901612062, "sek": 63419745.07997997, "sgd": 9723263.847894432, "thb": 223394277.42689326, "try": 56793481.062082954, "twd": 206007358.04941472, "uah": 202995451.09384584, "usd": 7157879.746683165, "vef": 1778644661697.908, "vnd": 165938824415.1234, "xag": 296331.4973120501, "xau": 3768.766844223623, "xdr": 5070813.801664274, "xlm": 87618344.20253313, "xrp": 29704112.024974458, "yfi": 510.8919170041632, "zar": 118432166.71409473, "bits": 629935726.1000038, "link": 672571.2634603961, "sats": 62993572610.00039}, "total_volume": {"aed": 2070037.3193143466, "ars": 43674862.446057834, "aud": 795907.6513627279, "bch": 2301.3878925240206, "bdt": 47780341.59303229, "bhd": 212588.26767798688, "bmd": 563582.1724242733, "bnb": 18640.026060781627, "brl": 3183329.088988665, "btc": 49.59066570396795, "cad": 743505.7809707194, "chf": 515642.7456735188, "clp": 447202346.7380465, "cny": 3774647.9580287994, "czk": 13123010.884899156, "dkk": 3579676.705478623, "dot": 142175.15823489276, "eos": 223100.52781822113, "eth": 1528.5617434219928, "eur": 481077.68745656474, "gbp": 436378.2946150783, "hkd": 4367995.722889658, "huf": 175290963.08912078, "idr": 8320924447.432306, "ils": 1904079.2770005749, "inr": 41392016.49843608, "jpy": 59415627.75910919, "krw": 643729562.8746307, "kwd": 172464.03491224092, "lkr": 103841614.15179487, "ltc": 12001.957930707007, "mmk": 730215348.9841876, "mxn": 11914747.629020905, "myr": 2338020.642302088, "ngn": 214724807.69364747, "nok": 5286589.577367438, "nzd": 853060.5194682758, "php": 27441145.67090865, "pkr": 91722998.56205015, "pln": 2187843.4643983645, "rub": 43848721.91042904, "sar": 2115056.826829769, "sek": 4993411.31336147, "sgd": 765570.0230211322, "thb": 17589151.625205647, "try": 4471686.388883137, "twd": 16220176.713456742, "uah": 15983031.479779711, "usd": 563582.1724242733, "vef": 140043205234.76788, "vnd": 13065344272.756266, "xag": 23331.929974131017, "xau": 296.73728542482735, "xdr": 399255.1369174918, "xlm": 6878090.692625451, "xrp": 2339494.201405554, "yfi": 40.109603837644904, "zar": 9324864.368191142, "bits": 49590665.70396795, "link": 52923.439456420245, "sats": 4959066570.396795}}, "community_data": {"facebook_likes": null, "twitter_followers": 23547, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1442073, "bing_matches": null}}, "GTO_20201103": {"id": "gifto", "symbol": "gto", "name": "Gifto", "localization": {"en": "Gifto", "de": "Gifto", "es": "Gifto", "fr": "Gifto", "it": "Gifto", "pl": "Gifto", "ro": "Gifto", "hu": "Gifto", "nl": "Gifto", "pt": "Gifto", "sv": "Gifto", "vi": "Gifto", "tr": "Gifto", "ru": "Gifto", "ja": "\u30ae\u30d5\u30c8", "zh": "Gifto", "zh-tw": "Gifto", "ko": "\uae30\ud504\ud1a0", "ar": "Gifto", "th": "Gifto", "id": "Gifto"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/1359/thumb/gifto.png?1547742697", "small": "https://assets.coingecko.com/coins/images/1359/small/gifto.png?1547742697"}, "market_data": {"current_price": {"aed": 0.0323889563986244, "ars": 0.6907233745451231, "aud": 0.012545345960055023, "bch": 3.3739755594365915e-05, "bdt": 0.7483194220537484, "bhd": 0.003325392583318499, "bmd": 0.008818120446126971, "bnb": 0.00030998525751082715, "brl": 0.0506415839100626, "btc": 6.510808655669205e-07, "cad": 0.011746618246285718, "chf": 0.008094329119908842, "clp": 6.819051297634979, "cny": 0.059003807529124805, "czk": 0.2061764741508949, "dkk": 0.05636278045550979, "dot": 0.002159947710608276, "eos": 0.0035232154176781157, "eth": 2.3078797070974444e-05, "eur": 0.007552720162107732, "gbp": 0.006811989226512656, "hkd": 0.0683708559730232, "huf": 2.774268873556007, "idr": 128.66499702172882, "ils": 0.030042190004296622, "inr": 0.6579539779760917, "jpy": 0.9228603952894188, "krw": 10.022763880272402, "kwd": 0.002694641245927483, "lkr": 1.6251426238421685, "ltc": 0.00016373657009049455, "mmk": 11.347126544290886, "mxn": 0.1868242270198244, "myr": 0.036621654212765316, "ngn": 3.3552948297513154, "nok": 0.08390366650466011, "nzd": 0.013332610117244367, "php": 0.42709474697504785, "pkr": 1.4148674255810736, "pln": 0.03488582483918613, "rub": 0.6999118560499907, "sar": 0.03307018265744903, "sek": 0.07801302977484068, "sgd": 0.01204643434145405, "thb": 0.2742080793941147, "try": 0.07360308773973274, "twd": 0.2521858993906068, "uah": 0.25096477488934754, "usd": 0.008818120446126971, "vef": 2191.1939586552503, "vnd": 204.33289048471477, "xag": 0.00037293850716253144, "xau": 4.693268245042162e-06, "xdr": 0.0062452574435605075, "xlm": 0.11499433618831169, "xrp": 0.036989815572828155, "yfi": 7.990852895251649e-07, "zar": 0.14328612412574201, "bits": 0.6510808655669205, "link": 0.0007963883369176659, "sats": 65.10808655669204}, "market_cap": {"aed": 21538222.025282558, "ars": 459321789.0662644, "aud": 8342486.968277971, "bch": 22397.242859968606, "bdt": 497622388.92974585, "bhd": 2211341.5109535214, "bmd": 5863931.942630708, "bnb": 205680.24783369893, "brl": 33675974.75333384, "btc": 431.7601926602026, "cad": 7811343.740778371, "chf": 5382620.408779573, "clp": 4534577744.421925, "cny": 39236741.41453057, "czk": 137104592.7506484, "dkk": 37480493.797712654, "dot": 1432737.3316986933, "eos": 2340515.842276041, "eth": 15321.019515520096, "eur": 5022457.708863184, "gbp": 4529881.561750258, "hkd": 45465703.1205901, "huf": 1844851628.4710472, "idr": 85560499036.45581, "ils": 19977653.81739024, "inr": 437530579.4251777, "jpy": 613689797.4560167, "krw": 6665003685.3134775, "kwd": 1791900.323029089, "lkr": 1080698069.5602024, "ltc": 108733.79388317249, "mmk": 7545687111.743233, "mxn": 124235607.70935097, "myr": 24352909.357745316, "ngn": 2231226104.170981, "nok": 55794813.99991601, "nzd": 8866007.084252162, "php": 284012284.0935731, "pkr": 940867880.195095, "pln": 23198606.082702313, "rub": 465432006.1504829, "sar": 21991228.359646637, "sek": 51877619.50325942, "sgd": 8010717.426827801, "thb": 182344698.68154165, "try": 48945067.13874989, "twd": 167700244.05451837, "uah": 166888212.62303495, "usd": 5863931.942630708, "vef": 1457114622685.9915, "vnd": 135878634314.82617, "xag": 247999.11025800108, "xau": 3120.9604978263387, "xdr": 4153012.519729342, "xlm": 76282885.53964151, "xrp": 24566240.226144984, "yfi": 526.5510559354319, "zar": 95283352.65206301, "bits": 431760192.6602026, "link": 527754.4684801965, "sats": 43176019266.02026}, "total_volume": {"aed": 14017391.052151687, "ars": 298933362.6776576, "aud": 5429412.977754704, "bch": 14601.99403616277, "bdt": 323859955.2807152, "bhd": 1439173.515460351, "bmd": 3816332.984522644, "bnb": 134156.3624790254, "brl": 21916818.696815096, "btc": 281.77675708046394, "cad": 5083737.168682605, "chf": 3503088.3731530136, "clp": 2951169758.8283987, "cny": 25535847.26603792, "czk": 89229681.51112403, "dkk": 24392855.537173398, "dot": 934788.7390740956, "eos": 1524787.883337346, "eth": 9988.11198408484, "eur": 3268689.2012436367, "gbp": 2948113.414210765, "hkd": 29589746.97884711, "huf": 1200656520.2606692, "idr": 55684028709.67784, "ils": 13001750.354980672, "inr": 284751323.5715548, "jpy": 399398328.49521756, "krw": 4337682233.538293, "kwd": 1166195.033410431, "lkr": 703334167.1633184, "ltc": 70862.41076276185, "mmk": 4910843934.950967, "mxn": 80854357.14329052, "myr": 15849230.884722544, "ngn": 1452114700.6108673, "nok": 36312083.95942923, "nzd": 5770127.553946926, "php": 184839363.48511955, "pkr": 612330627.3666587, "pln": 15097993.369385235, "rub": 302909981.6475316, "sar": 14312214.224205006, "sek": 33762716.280773364, "sgd": 5213492.490156381, "thb": 118672606.52739055, "try": 31854168.155213665, "twd": 109141780.49116927, "uah": 108613298.51580556, "usd": 3816332.984522644, "vef": 948311585330.5923, "vnd": 88431809765.33032, "xag": 161401.46131799725, "xau": 2031.1669043524887, "xdr": 2702841.5096284733, "xlm": 49767598.538698934, "xrp": 16008564.877790378, "yfi": 345.8305617951868, "zar": 62011804.56382273, "bits": 281776757.08046395, "link": 344663.3664436861, "sats": 28177675708.046394}}, "community_data": {"facebook_likes": null, "twitter_followers": 16450, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 4, "stars": 4, "subscribers": 2, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 840774, "bing_matches": null}}, "MXC_20210523": {"id": "mxc", "symbol": "mxc", "name": "MXC", "localization": {"en": "MXC", "de": "MXC", "es": "MXC", "fr": "MXC", "it": "MXC", "pl": "MXC", "ro": "MXC", "hu": "MXC", "nl": "MXC", "pt": "MXC", "sv": "MXC", "vi": "MXC", "tr": "MXC", "ru": "MXC", "ja": "MXC", "zh": "MXC", "zh-tw": "MXC", "ko": "MXC", "ar": "MXC", "th": "MXC", "id": "MXC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4604/thumb/MXC-app-icon10242x.png?1597628240", "small": "https://assets.coingecko.com/coins/images/4604/small/MXC-app-icon10242x.png?1597628240"}, "market_data": {"current_price": {"aed": 0.10660893877671174, "ars": 2.7341106294380877, "aud": 0.03759465604275583, "bch": 4.013507278428141e-05, "bdt": 2.4616585883727478, "bhd": 0.010942363301676588, "bmd": 0.02902345060892739, "bnb": 8.332471641282922e-05, "brl": 0.15410726687075188, "btc": 7.784991730834846e-07, "cad": 0.0352168518047182, "chf": 0.026242394548129336, "clp": 20.754678556737062, "cny": 0.1867659046684475, "czk": 0.6076349619485032, "dkk": 0.17733328322054645, "dot": 0.0011297926937585282, "eos": 0.004997377041983219, "eth": 1.1608442235117354e-05, "eur": 0.023847959872892815, "gbp": 0.020575914098143605, "hkd": 0.2253685451508511, "huf": 8.367588803970982, "idr": 417.70550116368264, "ils": 0.0948129377457258, "inr": 2.125188332337829, "jpy": 3.171566588741148, "krw": 32.83422076368023, "kwd": 0.00872456534684603, "lkr": 5.719048391268013, "ltc": 0.00015164995057598743, "mmk": 47.78452088146795, "mxn": 0.578946383912702, "myr": 0.11976526893773871, "ngn": 11.96303574908664, "nok": 0.2417185287465329, "nzd": 0.04052280295123985, "php": 1.3860956851158226, "pkr": 4.4464780493028115, "pln": 0.10790509705745606, "rub": 2.1409525646533156, "sar": 0.10885233541497935, "sek": 0.24250663152436774, "sgd": 0.038741372576314485, "thb": 0.9124382244226846, "try": 0.24422798335653265, "twd": 0.8099255393711143, "uah": 0.7965199267928075, "usd": 0.02902345060892739, "vef": 0.002906118109471898, "vnd": 670.8102487259603, "xag": 0.0010505656147399268, "xau": 1.5559762105952064e-05, "xdr": 0.020123293385897363, "xlm": 0.06382238230322472, "xrp": 0.0265929142515394, "yfi": 6.201684534595876e-07, "zar": 0.40941712925603785, "bits": 0.7784991730834847, "link": 0.0010572677449334704, "sats": 77.84991730834847}, "market_cap": {"aed": 261780537.1793938, "ars": 6712947525.523642, "aud": 92298235.72273085, "bch": 96869.3759443077, "bdt": 6044655495.222436, "bhd": 26869207.929407757, "bmd": 71267705.86393152, "bnb": 197471.10084644714, "brl": 378413701.2110103, "btc": 1886.9020719999785, "cad": 86462835.96659201, "chf": 64418879.33040762, "clp": 50963536463.297424, "cny": 458607687.23439986, "czk": 1491862066.8710258, "dkk": 435374415.1227584, "dot": 2702875.85337152, "eos": 12045356.20592869, "eth": 27934.743394569792, "eur": 58546420.367219664, "gbp": 50506781.73641551, "hkd": 553401219.1425428, "huf": 20541256604.211704, "idr": 1025684822793.7014, "ils": 232815203.48511553, "inr": 5218452972.133421, "jpy": 7787065881.2224655, "krw": 80623737416.51895, "kwd": 21423357.453521274, "lkr": 14043246065.480246, "ltc": 366231.0805423768, "mmk": 117335916563.3409, "mxn": 1421405458.7675316, "myr": 294086188.24751353, "ngn": 29375491029.428276, "nok": 593421029.2287878, "nzd": 99499481.0617517, "php": 3402888922.969187, "pkr": 10918422279.212654, "pln": 264900708.60982108, "rub": 5257183478.152869, "sar": 267289245.77185097, "sek": 595277624.2342484, "sgd": 95134619.14840932, "thb": 2240264699.9797463, "try": 599807185.8158426, "twd": 1988062542.4684753, "uah": 1955871774.9421978, "usd": 71267705.86393152, "vef": 7136035.388155457, "vnd": 1646808263814.41, "xag": 2579874.56070197, "xau": 38180.96073954266, "xdr": 49413178.78993336, "xlm": 154929332.91705567, "xrp": 63763313.29942542, "yfi": 1499.8999411629372, "zar": 1004943212.2144761, "bits": 1886902071.9999785, "link": 2538202.2304229867, "sats": 188690207199.99783}, "total_volume": {"aed": 100415939.3044975, "ars": 2575283931.795505, "aud": 35410752.069013976, "bch": 37803.59394749338, "bdt": 2318658850.1379056, "bhd": 10306712.567979736, "bmd": 27337454.89069417, "bnb": 78484.31624856291, "brl": 145155051.10586306, "btc": 733.2755265173824, "cad": 33171076.402184043, "chf": 24717952.625612944, "clp": 19549022494.283825, "cny": 175916522.22161674, "czk": 572336955.5915725, "dkk": 167031849.3821415, "dot": 1064162.1224720753, "eos": 4707075.368046866, "eth": 10934.09843749374, "eur": 22462612.597130664, "gbp": 19380642.607663628, "hkd": 212276704.0989843, "huf": 7881508803.163225, "idr": 393440650786.8702, "ils": 89305177.51327306, "inr": 2001734423.3922586, "jpy": 2987327720.6354947, "krw": 30926854325.24367, "kwd": 8217748.28996225, "lkr": 5386824245.00883, "ltc": 142840.482301986, "mmk": 45008679418.31677, "mxn": 545314920.2554076, "myr": 112808007.60644934, "ngn": 11268093327.463383, "nok": 227676903.9247437, "nzd": 38168800.555481166, "php": 1305576265.7795155, "pkr": 4188178543.3840837, "pln": 101636802.70246123, "rub": 2016582898.7034087, "sar": 102529015.21772856, "sek": 228419225.17484564, "sgd": 36490854.91174524, "thb": 859433950.042719, "try": 230040582.28695786, "twd": 762876309.7716745, "uah": 750249440.0696666, "usd": 27337454.89069417, "vef": 2737299.3582052058, "vnd": 631842338867.8868, "xag": 989537.4085475955, "xau": 14655.882941450052, "xdr": 18954314.998643234, "xlm": 60114888.499659464, "xrp": 25048110.355973393, "yfi": 584.1423664444702, "zar": 385633757.10645986, "bits": 733275526.5173825, "link": 995850.2065779304, "sats": 73327552651.73825}}, "community_data": {"facebook_likes": null, "twitter_followers": 15646, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.364, "reddit_subscribers": 1098, "reddit_accounts_active_48h": "13.6666666666667"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 169557, "bing_matches": null}}, "BDO_20210610": {"id": "bdollar", "symbol": "bdo", "name": "bDollar", "localization": {"en": "bDollar", "de": "bDollar", "es": "bDollar", "fr": "bDollar", "it": "bDollar", "pl": "bDollar", "ro": "bDollar", "hu": "bDollar", "nl": "bDollar", "pt": "bDollar", "sv": "bDollar", "vi": "bDollar", "tr": "bDollar", "ru": "bDollar", "ja": "bDollar", "zh": "bDollar", "zh-tw": "bDollar", "ko": "bDollar", "ar": "bDollar", "th": "bDollar", "id": "bDollar"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/13487/thumb/bdollar-yellow.png?1609291587", "small": "https://assets.coingecko.com/coins/images/13487/small/bdollar-yellow.png?1609291587"}, "market_data": {"current_price": {"aed": 0.41431058275599836, "ars": 10.692907790211468, "aud": 0.1457342036183243, "bch": 0.00017217113376616575, "bdt": 9.547728061054753, "bhd": 0.042527415236672826, "bmd": 0.11279972849148091, "bnb": 0.0002877328641543001, "brl": 0.5696837487733742, "btc": 3.152679780889772e-06, "cad": 0.1362479720516477, "chf": 0.1014401190340179, "clp": 81.02389224459837, "cny": 0.7213881036215695, "czk": 2.357660852319264, "dkk": 0.6895898601598194, "dot": 0.00466854035135989, "eos": 0.019290295332198896, "eth": 4.1562098116438964e-05, "eur": 0.09271991042352698, "gbp": 0.07964958028376225, "hkd": 0.8749254540577488, "huf": 32.07123234066541, "idr": 1612.4721187857215, "ils": 0.3666946589673443, "inr": 8.224222338727998, "jpy": 12.36645983397805, "krw": 125.28440695290729, "kwd": 0.03391436636824864, "lkr": 22.329916483175662, "ltc": 0.0006401992685917499, "mmk": 185.63124345270063, "mxn": 2.2514600207442643, "myr": 0.4656372792128347, "ngn": 46.53552798916047, "nok": 0.93699530945584, "nzd": 0.15647724975985272, "php": 5.379976169617747, "pkr": 17.427558051933808, "pln": 0.4130159802721003, "rub": 8.225987880078334, "sar": 0.42301026181590357, "sek": 0.9339797215143514, "sgd": 0.14939026841818998, "thb": 3.5112081781352167, "try": 0.9787821944749686, "twd": 3.1077453196687923, "uah": 3.0735469235842023, "usd": 0.11279972849148091, "vef": 0.011294636813851996, "vnd": 2587.3846338621934, "xag": 0.004065809813611196, "xau": 5.971504826610519e-05, "xdr": 0.0782689116070263, "xlm": 0.29489140180429013, "xrp": 0.1199193921217575, "yfi": 2.6212539882846176e-06, "zar": 1.5149567535048354, "bits": 3.152679780889772, "link": 0.004109877445483836, "sats": 315.2679780889772}, "market_cap": {"aed": 0.0, "ars": 0.0, "aud": 0.0, "bch": 0.0, "bdt": 0.0, "bhd": 0.0, "bmd": 0.0, "bnb": 0.0, "brl": 0.0, "btc": 0.0, "cad": 0.0, "chf": 0.0, "clp": 0.0, "cny": 0.0, "czk": 0.0, "dkk": 0.0, "dot": 0.0, "eos": 0.0, "eth": 0.0, "eur": 0.0, "gbp": 0.0, "hkd": 0.0, "huf": 0.0, "idr": 0.0, "ils": 0.0, "inr": 0.0, "jpy": 0.0, "krw": 0.0, "kwd": 0.0, "lkr": 0.0, "ltc": 0.0, "mmk": 0.0, "mxn": 0.0, "myr": 0.0, "ngn": 0.0, "nok": 0.0, "nzd": 0.0, "php": 0.0, "pkr": 0.0, "pln": 0.0, "rub": 0.0, "sar": 0.0, "sek": 0.0, "sgd": 0.0, "thb": 0.0, "try": 0.0, "twd": 0.0, "uah": 0.0, "usd": 0.0, "vef": 0.0, "vnd": 0.0, "xag": 0.0, "xau": 0.0, "xdr": 0.0, "xlm": 0.0, "xrp": 0.0, "yfi": 0.0, "zar": 0.0, "bits": 0.0, "link": 0.0, "sats": 0.0}, "total_volume": {"aed": 143480.97274882838, "ars": 3703088.637145979, "aud": 50469.59012931527, "bch": 59.62503199341813, "bdt": 3306498.4742333074, "bhd": 14727.779498320866, "bmd": 39063.96660713126, "bnb": 99.64551464276533, "brl": 197288.6569526554, "btc": 1.0918127138307536, "cad": 47184.38866558874, "chf": 35129.99078599352, "clp": 28059594.321291603, "cny": 249825.78564258709, "czk": 816487.6461816669, "dkk": 238813.65345603623, "dot": 1616.774320545825, "eos": 6680.472220778698, "eth": 14.393478022116907, "eur": 32110.072719496027, "gbp": 27583.65278079456, "hkd": 302997.7037898839, "huf": 11106671.673415601, "idr": 558419402.648942, "ils": 126990.97865289253, "inr": 2848151.773999679, "jpy": 4282660.787073019, "krw": 43387567.993767254, "kwd": 11744.972200100081, "lkr": 7733131.307179372, "ltc": 221.709069557439, "mmk": 64286437.498155974, "mxn": 779708.9606850197, "myr": 161256.05415423837, "ngn": 16115839.42377201, "nok": 324493.27643892285, "nzd": 54190.04230897838, "php": 1863153.5044251631, "pkr": 6035382.840801783, "pln": 143032.6356040779, "rub": 2848763.203205009, "sar": 146493.7811734033, "sek": 323448.9403556487, "sgd": 51735.731414985545, "thb": 1215975.6132012259, "try": 338964.60099646874, "twd": 1076251.343993074, "uah": 1064408.0087250571, "usd": 39063.96660713126, "vef": 3911.474976372058, "vnd": 896043884.9339141, "xag": 1408.041144370747, "xau": 20.680073282149255, "xdr": 27105.509829523195, "xlm": 102124.60638753156, "xrp": 41529.59578928073, "yfi": 0.9077732689302824, "zar": 524648.6035170768, "bits": 1091812.7138307537, "link": 1423.3023202880117, "sats": 109181271.38307537}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 32082, "bing_matches": null}}, "CGG_20210619": {"id": "chain-guardians", "symbol": "cgg", "name": "Chain Guardians", "localization": {"en": "Chain Guardians", "de": "Chain Guardians", "es": "Chain Guardians", "fr": "Chain Guardians", "it": "Chain Guardians", "pl": "Chain Guardians", "ro": "Chain Guardians", "hu": "Chain Guardians", "nl": "Chain Guardians", "pt": "Chain Guardians", "sv": "Chain Guardians", "vi": "Chain Guardians", "tr": "Chain Guardians", "ru": "Chain Guardians", "ja": "Chain Guardians", "zh": "Chain Guardians", "zh-tw": "Chain Guardians", "ko": "Chain Guardians", "ar": "Chain Guardians", "th": "Chain Guardians", "id": "Chain Guardians"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14326/thumb/cgg_logo.png?1615429976", "small": "https://assets.coingecko.com/coins/images/14326/small/cgg_logo.png?1615429976"}, "market_data": {"current_price": {"aed": 1.11892147445076, "ars": 28.99725271489688, "aud": 0.3963163691013834, "bch": 0.00048239052440093714, "bdt": 25.82834019554819, "bhd": 0.11484054147513445, "bmd": 0.3046176288932712, "bnb": 0.0008253997111345255, "brl": 1.5368778799087224, "btc": 7.5469596111353856e-06, "cad": 0.371185719335317, "chf": 0.27374524144019574, "clp": 221.4876540372865, "cny": 1.9513805306902934, "czk": 6.395538503902889, "dkk": 1.8682650014115094, "dot": 0.012628355368869337, "eos": 0.058299300357112255, "eth": 0.00011893072260758357, "eur": 0.25119988149054706, "gbp": 0.21631689833546286, "hkd": 2.3647923457427975, "huf": 88.25835459021764, "idr": 4338.897351548526, "ils": 0.9873723514132001, "inr": 22.342685047205638, "jpy": 33.530785500426774, "krw": 340.24284062135735, "kwd": 0.09166462303367627, "lkr": 60.31033658404458, "ltc": 0.001731265239560288, "mmk": 501.3664603835959, "mxn": 6.102606007253965, "myr": 1.2541107781535943, "ngn": 125.42189783353817, "nok": 2.5340494758257956, "nzd": 0.4276444645272825, "php": 14.638751380592218, "pkr": 47.444099745573816, "pln": 1.1372506217989007, "rub": 22.006917828816995, "sar": 1.1424126721381282, "sek": 2.535362987041585, "sgd": 0.4044015302074688, "thb": 9.491885316314338, "try": 2.607111709498214, "twd": 8.400013887309257, "uah": 8.201734617251104, "usd": 0.3046176288932712, "vef": 0.030501363181083225, "vnd": 6986.498827749946, "xag": 0.010999812641390645, "xau": 0.00016393302316520297, "xdr": 0.21145124094915085, "xlm": 0.9057435439175381, "xrp": 0.3489562092766023, "yfi": 7.768152325123908e-06, "zar": 4.195483371865572, "bits": 7.546959611135385, "link": 0.012301349343837758, "sats": 754.6959611135385}, "market_cap": {"aed": 19364984.862075288, "ars": 501902217.50456786, "aud": 6860488.205322738, "bch": 8342.051311377016, "bdt": 447006718.8091407, "bhd": 1987525.8434110587, "bmd": 5271965.823280874, "bnb": 14268.610359576465, "brl": 26598485.737258386, "btc": 130.54993058229692, "cad": 6425034.372251391, "chf": 4737731.166578704, "clp": 3833249397.3037715, "cny": 33772213.063937224, "czk": 110698102.37434009, "dkk": 32337711.16342249, "dot": 216711.5274417692, "eos": 1007819.6402936077, "eth": 2054.7738899994233, "eur": 4348317.411042058, "gbp": 3744297.7427371275, "hkd": 40926666.08356609, "huf": 1527830536.170592, "idr": 75092563195.35687, "ils": 17088286.421291407, "inr": 386727952.54797065, "jpy": 580422349.2799306, "krw": 5889476715.725868, "kwd": 1586424.139644204, "lkr": 1043780802.8932259, "ltc": 29902.815972467877, "mmk": 8677064599.59255, "mxn": 105653885.4746249, "myr": 21704683.294447303, "ngn": 2170655589.670778, "nok": 43862186.27738797, "nzd": 7402367.212468668, "php": 253386925.66554564, "pkr": 821107016.3067611, "pln": 19686332.26686753, "rub": 380901639.5183727, "sar": 19771543.050469253, "sek": 43883711.71384442, "sgd": 6999589.023570005, "thb": 164327174.71166486, "try": 45125159.49787635, "twd": 145393436.65393373, "uah": 141946034.9385005, "usd": 5271965.823280874, "vef": 527881.9378851136, "vnd": 120927625835.85243, "xag": 190519.72435249577, "xau": 2837.7937633556326, "xdr": 3659550.8921278813, "xlm": 15660871.238116447, "xrp": 6030990.65509846, "yfi": 134.39135616118685, "zar": 72624228.79689673, "bits": 130549930.58229694, "link": 212287.62643267374, "sats": 13054993058.229692}, "total_volume": {"aed": 1291346.9743132284, "ars": 33465721.6004893, "aud": 457388.61555149994, "bch": 556.7267751548859, "bdt": 29808480.50970324, "bhd": 132537.4381926154, "bmd": 351559.12400991854, "bnb": 952.593585797238, "brl": 1773710.350034394, "btc": 8.709944068137283, "cad": 428385.3393798052, "chf": 315929.30990976107, "clp": 255618842.26878485, "cny": 2252087.7484075357, "czk": 7381089.2763254335, "dkk": 2156164.138303185, "dot": 14574.381552688015, "eos": 67283.20694505364, "eth": 137.25791514330928, "eur": 289909.7160235391, "gbp": 249651.27449666715, "hkd": 2729206.213557598, "huf": 101858943.42039202, "idr": 5007520272.61627, "ils": 1139526.1666095443, "inr": 25785686.835535035, "jpy": 38697870.575391725, "krw": 392674171.3343201, "kwd": 105790.1169196924, "lkr": 69604143.31653412, "ltc": 1998.0527498028894, "mmk": 578626897.7957498, "mxn": 7043015.960312538, "myr": 1447368.913548831, "ngn": 144749378.73496842, "nok": 2924545.82210422, "nzd": 493544.36210117536, "php": 16894579.051966567, "pkr": 54755222.823420666, "pln": 1312500.6383640333, "rub": 25398177.978622105, "sar": 1318458.159279508, "sek": 2926061.7450469523, "sgd": 466719.69782097137, "thb": 10954582.30414907, "try": 3008866.9264388704, "twd": 9694453.780047873, "uah": 9465619.727520356, "usd": 351559.12400991854, "vef": 35201.61508711312, "vnd": 8063116427.974891, "xag": 12694.880826596653, "xau": 189.19505817717794, "xdr": 244035.82060885694, "xlm": 1045318.3817173445, "xrp": 402730.2677682093, "yfi": 8.965222520174695, "zar": 4842006.2370323995, "bits": 8709944.068137283, "link": 14196.98398668455, "sats": 870994406.8137282}}, "community_data": {"facebook_likes": null, "twitter_followers": 35730, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 107209, "bing_matches": null}}, "XTK_20210623": {"id": "xtoken", "symbol": "xtk", "name": "xToken", "localization": {"en": "xToken", "de": "xToken", "es": "xToken", "fr": "xToken", "it": "xToken", "pl": "xToken", "ro": "xToken", "hu": "xToken", "nl": "xToken", "pt": "xToken", "sv": "xToken", "vi": "xToken", "tr": "xToken", "ru": "xToken", "ja": "xToken", "zh": "xToken", "zh-tw": "xToken", "ko": "xToken", "ar": "xToken", "th": "xToken", "id": "xToken"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14089/thumb/xToken.png?1614226407", "small": "https://assets.coingecko.com/coins/images/14089/small/xToken.png?1614226407"}, "market_data": {"current_price": {"aed": 0.13436388118522527, "ars": 3.48854130740486, "aud": 0.048917510086365704, "bch": 6.595479470418368e-05, "bdt": 3.1007056032497315, "bhd": 0.013788182909124053, "bmd": 0.036580512696421395, "bnb": 0.0001093357263047579, "brl": 0.18620029670168903, "btc": 1.0285283852165267e-06, "cad": 0.0455924878043118, "chf": 0.03376564224443175, "clp": 27.384198727798424, "cny": 0.23605770648127694, "czk": 0.7887855952729347, "dkk": 0.2293014686888115, "dot": 0.0017929195712182895, "eos": 0.008165712528296848, "eth": 1.683765982286695e-05, "eur": 0.03083228751181845, "gbp": 0.026485534929640734, "hkd": 0.2839558640008443, "huf": 10.973202715596297, "idr": 530.0333387147975, "ils": 0.11992408960344042, "inr": 2.712229191414737, "jpy": 4.030988297242346, "krw": 41.528027038612315, "kwd": 0.011022440085685679, "lkr": 7.2715644847584375, "ltc": 0.00023920443232405017, "mmk": 60.22139705184733, "mxn": 0.7562856387677991, "myr": 0.15144332256318463, "ngn": 14.998010205532813, "nok": 0.3172664446673322, "nzd": 0.052743868294923994, "php": 1.7741825572245458, "pkr": 5.737653416433697, "pln": 0.14037771747251676, "rub": 2.6630466920944, "sar": 0.13717809318798604, "sek": 0.314925657659888, "sgd": 0.04919109574082217, "thb": 1.1500137319080568, "try": 0.3197831839408458, "twd": 1.0167370601406838, "uah": 0.9948947628486259, "usd": 0.036580512696421395, "vef": 0.0036628067362926772, "vnd": 844.9944146147525, "xag": 0.0014177395906162698, "xau": 2.0732371375823764e-05, "xdr": 0.025600798649565076, "xlm": 0.12534511283864877, "xrp": 0.048101815677521864, "yfi": 1.0977645992568652e-06, "zar": 0.525025832331784, "bits": 1.0285283852165268, "link": 0.0017860946232125842, "sats": 102.85283852165267}, "market_cap": {"aed": 10629688.418132924, "ars": 275982703.12228286, "aud": 3869923.1208730433, "bch": 5217.7632203176245, "bdt": 245300553.60240498, "bhd": 1090799.751267757, "bmd": 2893928.4032922965, "bnb": 8649.680950996766, "brl": 14730529.662018253, "btc": 81.36811892911638, "cad": 3606876.6047273884, "chf": 2671240.6126589524, "clp": 2166396932.635919, "cny": 18674809.379285514, "czk": 62401778.16019179, "dkk": 18140315.272839457, "dot": 141840.02600036934, "eos": 645999.3498415283, "eth": 1332.0475415626165, "eur": 2439179.387927349, "gbp": 2095302.5575493313, "hkd": 22464090.29127243, "huf": 868103278.8492023, "idr": 41931575599.5037, "ils": 9487339.12021736, "inr": 214567716.92654428, "jpy": 318896337.6084578, "krw": 3285332219.837573, "kwd": 871998.5064800335, "lkr": 575262221.5399565, "ltc": 18923.75064944618, "mmk": 4764187228.8830185, "mxn": 59830667.47028675, "myr": 11980863.589630108, "ngn": 1186510645.3498445, "nok": 25099330.434594397, "nzd": 4172630.9257858144, "php": 140357718.2634774, "pkr": 453912670.0563967, "pln": 11105450.247634161, "rub": 210676830.18831792, "sar": 10852324.118054975, "sek": 24914147.956067707, "sgd": 3891566.8114012615, "thb": 90978970.97736621, "try": 25298432.70874089, "twd": 80435293.00530769, "uah": 78707322.56784509, "usd": 2893928.4032922965, "vef": 289769.0510216578, "vnd": 66848525535.18758, "xag": 112159.08600859465, "xau": 1640.1628618499394, "xdr": 2025310.0051873035, "xlm": 9916202.795406139, "xrp": 3805392.5540723535, "yfi": 86.84547918403047, "zar": 41535425.74037699, "bits": 81368118.92911637, "link": 141300.09614622503, "sats": 8136811892.911637}, "total_volume": {"aed": 58469.95203018705, "ars": 1518077.9321051452, "aud": 21287.00394001795, "bch": 28.70096969883082, "bdt": 1349306.8693945978, "bhd": 6000.0826573963095, "bmd": 15918.420960547528, "bnb": 47.57866932566561, "brl": 81027.15045233085, "btc": 0.44757567893110906, "cad": 19840.08314838803, "chf": 14693.498467633386, "clp": 11916541.647023717, "cny": 102723.16230050927, "czk": 343248.9111722864, "dkk": 99783.10954120097, "dot": 780.2090889187883, "eos": 3553.401521377865, "eth": 7.327096787167639, "eur": 13417.016209228055, "gbp": 11525.478001749054, "hkd": 123566.58352204066, "huf": 4775112.409219278, "idr": 230649960.5078533, "ils": 52186.31454022076, "inr": 1180256.9955409318, "jpy": 1754129.832325223, "krw": 18071387.395461548, "kwd": 4796.538603832174, "lkr": 3164302.9574453034, "ltc": 104.09249539401723, "mmk": 26206017.314715292, "mxn": 329106.1900698879, "myr": 65902.26277666679, "ngn": 6526552.593824504, "nok": 138062.0568329247, "nzd": 22952.086690912143, "php": 772055.4668312209, "pkr": 2496804.3276618803, "pln": 61086.94043610099, "rub": 1158854.6785594763, "sar": 59694.58799152377, "sek": 137043.43707565917, "sgd": 21406.057810381855, "thb": 500441.39202875574, "try": 139157.24419501028, "twd": 442444.551387938, "uah": 432939.63039555337, "usd": 15918.420960547528, "vef": 1593.9114907796252, "vnd": 367708810.228484, "xag": 616.9453064574435, "xau": 9.021924263599907, "xdr": 11140.475072397248, "xlm": 54545.33368823279, "xrp": 20932.045356389037, "yfi": 0.4777045951099274, "zar": 228470.88786256377, "bits": 447575.6789311091, "link": 777.2391361384574, "sats": 44757567.89311091}}, "community_data": {"facebook_likes": null, "twitter_followers": 8023, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": 1, "stars": 4, "subscribers": 2, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 41, "pull_request_contributors": 2, "code_additions_deletions_4_weeks": {"additions": 8274, "deletions": -152445}, "commit_count_4_weeks": 23}, "public_interest_stats": {"alexa_rank": 284539, "bing_matches": null}}, "FLY_20210627": {"id": "franklin", "symbol": "fly", "name": "Franklin", "localization": {"en": "Franklin", "de": "Franklin", "es": "Franklin", "fr": "Franklin", "it": "Franklin", "pl": "Franklin", "ro": "Franklin", "hu": "Franklin", "nl": "Franklin", "pt": "Franklin", "sv": "Franklin", "vi": "Franklin", "tr": "Franklin", "ru": "Franklin", "ja": "Franklin", "zh": "Franklin", "zh-tw": "Franklin", "ko": "Franklin", "ar": "Franklin", "th": "Franklin", "id": "Franklin"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14810/thumb/fly_logo_sq_bArtboard_4.png?1626420796", "small": "https://assets.coingecko.com/coins/images/14810/small/fly_logo_sq_bArtboard_4.png?1626420796"}, "market_data": {"current_price": {"aed": 0.14089006261634213, "ars": 3.661484639376029, "aud": 0.0506419457183743, "bch": 8.107338293992516e-05, "bdt": 3.25197976332933, "bhd": 0.014459412265850142, "bmd": 0.0383562187238218, "bnb": 0.00012948017225471935, "brl": 0.19050383153560616, "btc": 1.138116338843553e-06, "cad": 0.04719659837150705, "chf": 0.03522209373567967, "clp": 28.237848224477617, "cny": 0.24831816001802268, "czk": 0.8160209204617839, "dkk": 0.2390961743502537, "dot": 0.002416791780484545, "eos": 0.010508611115691367, "eth": 1.9454422404864322e-05, "eur": 0.03215018253430748, "gbp": 0.027464701923661558, "hkd": 0.2978590521217112, "huf": 11.262828356344077, "idr": 553.5300992690896, "ils": 0.12470220406614048, "inr": 2.847839426389564, "jpy": 4.258038909187637, "krw": 43.505115908810424, "kwd": 0.011559298568142072, "lkr": 7.641261762562085, "ltc": 0.00029761715646905204, "mmk": 63.12514406666227, "mxn": 0.7748416840398891, "myr": 0.15958104800046113, "ngn": 15.777191288946693, "nok": 0.3274853954639909, "nzd": 0.054436871642690565, "php": 1.8717782956329823, "pkr": 6.070443734403293, "pln": 0.14562521453023541, "rub": 2.7872006610289843, "sar": 0.14386278463609428, "sek": 0.3253351458423331, "sgd": 0.05162785396445147, "thb": 1.2214407057895191, "try": 0.33138046947539473, "twd": 1.076409744155974, "uah": 1.0461204135730526, "usd": 0.0383562187238218, "vef": 0.003840608180816285, "vnd": 884.1739225666126, "xag": 0.00148382834875385, "xau": 2.1582277151520054e-05, "xdr": 0.026819780462039186, "xlm": 0.14966089457368853, "xrp": 0.05985867835038947, "yfi": 1.2379890503292764e-06, "zar": 0.5458088006588907, "bits": 1.138116338843553, "link": 0.0020950847387521698, "sats": 113.8116338843553}, "market_cap": {"aed": 27590923.678415492, "ars": 716979431.2730376, "aud": 9917694.67461505, "bch": 15905.048523287236, "bdt": 636844954.0554312, "bhd": 2831630.086986295, "bmd": 7511413.393884232, "bnb": 25305.833597216115, "brl": 37305434.6207261, "btc": 222.94632341866512, "cad": 9242959.432269197, "chf": 6899015.371294252, "clp": 5529902540.577575, "cny": 48628890.31200647, "czk": 159843628.16319585, "dkk": 46830627.89985713, "dot": 472677.58911548945, "eos": 2058401.7982061137, "eth": 3809.08097407679, "eur": 6297771.797594163, "gbp": 5379591.647152552, "hkd": 58325599.20457352, "huf": 2206065585.7804637, "idr": 108395704404.46454, "ils": 24420806.76966062, "inr": 557700939.3193575, "jpy": 834009129.8031014, "krw": 8533190957.854305, "kwd": 2263669.586034519, "lkr": 1496411217.2464223, "ltc": 58360.66968752204, "mmk": 12361986358.647844, "mxn": 151734088.43216985, "myr": 31251235.42525532, "ngn": 3089694706.8472495, "nok": 64152225.1084497, "nzd": 10660535.902203234, "php": 366724996.42775714, "pkr": 1188793209.8243625, "pln": 28526680.53619882, "rub": 545835632.8000824, "sar": 28171195.38591995, "sek": 63718305.77951168, "sgd": 10110933.295586118, "thb": 239191607.818568, "try": 64890702.20485608, "twd": 210796549.77927014, "uah": 204864899.29332057, "usd": 7511413.393884232, "vef": 752117.8231296269, "vnd": 173190363717.18744, "xag": 290655.7937872964, "xau": 4229.0759690246905, "xdr": 5252198.075992283, "xlm": 29478269.246461198, "xrp": 11718347.977342464, "yfi": 243.0593903986617, "zar": 106955466.0003212, "bits": 222946323.4186651, "link": 411142.7178771337, "sats": 22294632341.866512}, "total_volume": {"aed": 806785.9749167545, "ars": 20966946.84894736, "aud": 289993.5651199069, "bch": 464.254661260971, "bdt": 18621978.12284092, "bhd": 82799.67234732468, "bmd": 219641.17796927886, "bnb": 741.4489358939089, "brl": 1090891.8386200198, "btc": 6.51725382863218, "cad": 270264.2963088167, "chf": 201694.07767623157, "clp": 161699835.22098318, "cny": 1421956.9861731133, "czk": 4672822.352701999, "dkk": 1369148.657753957, "dot": 13839.398440034887, "eos": 60175.997558330986, "eth": 111.40285450146614, "eur": 184103.23537384984, "gbp": 157272.5279966565, "hkd": 1705645.5316382358, "huf": 64494910.3368426, "idr": 3169707731.628055, "ils": 714088.6121666007, "inr": 16307728.63152644, "jpy": 24383026.0899036, "krw": 249125571.38919735, "kwd": 66192.60288106806, "lkr": 43756548.23499024, "ltc": 1704.2603521845917, "mmk": 361476742.5880568, "mxn": 4437015.584034182, "myr": 913817.1209411878, "ngn": 90345737.79815003, "nok": 1875296.3775017054, "nzd": 311724.64362700976, "php": 10718459.833341818, "pkr": 34761492.581449024, "pln": 833901.1176194182, "rub": 15960489.76655124, "sar": 823808.8251329064, "sek": 1862983.2930647454, "sgd": 295639.22195842955, "thb": 6994398.414789991, "try": 1897600.939124484, "twd": 6163900.197940862, "uah": 5990452.854316193, "usd": 219641.17796927886, "vef": 21992.67115006394, "vnd": 5063090376.049943, "xag": 8496.92220109522, "xau": 123.58769801975386, "xdr": 153579.48123028086, "xlm": 857010.8387583437, "xrp": 342771.8128116282, "yfi": 7.089160046908237, "zar": 3125492.864296949, "bits": 6517253.82863218, "link": 11997.190945185397, "sats": 651725382.863218}}, "community_data": {"facebook_likes": null, "twitter_followers": 20591, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 256905, "bing_matches": null}}, "DORA_20210728": {"id": "dora-factory", "symbol": "dora", "name": "Dora Factory", "localization": {"en": "Dora Factory", "de": "Dora Factory", "es": "Dora Factory", "fr": "Dora Factory", "it": "Dora Factory", "pl": "Dora Factory", "ro": "Dora Factory", "hu": "Dora Factory", "nl": "Dora Factory", "pt": "Dora Factory", "sv": "Dora Factory", "vi": "Dora Factory", "tr": "Dora Factory", "ru": "Dora Factory", "ja": "Dora Factory", "zh": "Dora Factory", "zh-tw": "Dora Factory", "ko": "Dora Factory", "ar": "Dora Factory", "th": "Dora Factory", "id": "Dora Factory"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/14478/thumb/dora_logo.jpg?1616410086", "small": "https://assets.coingecko.com/coins/images/14478/small/dora_logo.jpg?1616410086"}, "market_data": {"current_price": {"aed": 16.64620778131165, "ars": 436.70678520050404, "aud": 6.154370211679273, "bch": 0.00986250355577624, "bdt": 384.430133724775, "bhd": 1.7089599093879277, "bmd": 4.531800005801943, "bnb": 0.015010936228214025, "brl": 23.582870905392454, "btc": 0.00013245334314153105, "cad": 5.692824508288373, "chf": 4.168449344936752, "clp": 3454.183282422297, "cny": 29.372408557604725, "czk": 98.74792212642427, "dkk": 28.627380636650855, "dot": 0.32733098163598806, "eos": 1.232601650227018, "eth": 0.002071601055521499, "eur": 3.8498728681288883, "gbp": 3.2962137978200525, "hkd": 35.20936696507757, "huf": 1386.730801775392, "idr": 65598.4848539839, "ils": 14.83530049899329, "inr": 337.3630537319164, "jpy": 501.0086178414274, "krw": 5221.177422684523, "kwd": 1.363818020946061, "lkr": 903.5025018575292, "ltc": 0.03597953583900323, "mmk": 7454.461159115535, "mxn": 90.89635202637216, "myr": 19.153652724521887, "ngn": 1863.606827775327, "nok": 40.16534345142261, "nzd": 6.49809364671933, "php": 227.78232593522316, "pkr": 728.4632901044314, "pln": 17.61080141254658, "rub": 334.75590918857864, "sar": 17.00005978936474, "sek": 39.38474090042323, "sgd": 6.169320619898409, "thb": 149.38836721005848, "try": 38.77136176963785, "twd": 127.10837974273333, "uah": 123.34144787831072, "usd": 4.531800005801943, "vef": 0.45376913458094864, "vnd": 104196.78851090024, "xag": 0.1800479157325107, "xau": 0.0025144692332191992, "xdr": 3.1879944136814986, "xlm": 16.89328237534007, "xrp": 7.40520958008986, "yfi": 0.00015324309887702908, "zar": 67.27035651212444, "bits": 132.45334314153104, "link": 0.2709999706351412, "sats": 13245.334314153104}, "market_cap": {"aed": 40578553.87769954, "ars": 1064562574.540884, "aud": 15002542.711157892, "bch": 24085.75452884766, "bdt": 937127488.6449163, "bhd": 4165941.1362016783, "bmd": 11047194.238729088, "bnb": 36658.610219915376, "brl": 57488096.399929784, "btc": 323.3588512706505, "cad": 13877430.166720262, "chf": 10161452.299056267, "clp": 8420281920.701698, "cny": 71601284.73889862, "czk": 240718362.4619067, "dkk": 69785126.00605151, "dot": 799523.2296269926, "eos": 3011105.0737046776, "eth": 5061.133230874396, "eur": 9384856.638462085, "gbp": 8035198.823928079, "hkd": 85830070.91838162, "huf": 3380441437.051085, "idr": 159909793684.73935, "ils": 36164095.0599035, "inr": 822391804.3108286, "jpy": 1221311511.8684552, "krw": 12727693426.324556, "kwd": 3324586.822980084, "lkr": 2202473105.7017527, "ltc": 87926.65952652428, "mmk": 18171781690.361313, "mxn": 221578546.08359656, "myr": 46690966.44998857, "ngn": 4542924794.716872, "nok": 97911282.5378557, "nzd": 15840439.252582777, "php": 555266250.8350511, "pkr": 1775779039.5128539, "pln": 42929949.171413235, "rub": 816036353.465288, "sar": 41441140.89824815, "sek": 96008403.33023459, "sgd": 15038987.404951444, "thb": 364164858.8779798, "try": 94513165.59002271, "twd": 309852808.7272972, "uah": 300670137.83779234, "usd": 11047194.238729088, "vef": 1106155.5591239424, "vnd": 254001094544.77057, "xag": 438903.8119133407, "xau": 6129.535723358822, "xdr": 7771391.825507238, "xlm": 41311570.9229606, "xrp": 18119082.422586165, "yfi": 374.59106519644274, "zar": 163985324.58329102, "bits": 323358851.2706505, "link": 662207.2578284614, "sats": 32335885127.065052}, "total_volume": {"aed": 33083954.367374424, "ars": 867944672.0421642, "aud": 12231668.97338115, "bch": 19601.498543931957, "bdt": 764046031.9060096, "bhd": 3396518.4383519385, "bmd": 9006848.079977818, "bnb": 29833.88983906272, "brl": 46870412.47686555, "btc": 263.2479672169099, "cad": 11314357.523827737, "chf": 8284697.01462135, "clp": 6865109675.039888, "cny": 58376985.14556825, "czk": 196259219.6627165, "dkk": 56896259.32121984, "dot": 650562.7829319091, "eos": 2449767.3755486333, "eth": 4117.259359529487, "eur": 7651533.608295073, "gbp": 6551148.964668022, "hkd": 69977805.47257957, "huf": 2756095512.473207, "idr": 130375476984.89073, "ils": 29484817.874615483, "inr": 670501295.0418276, "jpy": 995743082.6338664, "krw": 10376969809.90402, "kwd": 2710556.8885808466, "lkr": 1795690401.97982, "ltc": 71508.49836160711, "mmk": 14815569771.898558, "mxn": 180654405.02175102, "myr": 38067443.41002619, "ngn": 3703875624.93757, "nok": 79827694.53284338, "nzd": 12914811.37970322, "php": 452712123.74242824, "pkr": 1447804002.253265, "pln": 35001061.98119768, "rub": 665319655.3414165, "sar": 33787227.07915538, "sek": 78276264.95106721, "sgd": 12261382.565196987, "thb": 296905937.29959506, "try": 77057188.06344204, "twd": 252624975.63202554, "uah": 245138285.3572904, "usd": 9006848.079977818, "vef": 901855.698248179, "vnd": 207088716037.27872, "xag": 357841.0834642302, "xau": 4997.449657175675, "xdr": 6336065.432518143, "xlm": 33575009.42937785, "xrp": 14717683.393546611, "yfi": 304.5671276586211, "zar": 133698283.3785563, "bits": 263247967.2169099, "link": 538606.1966689182, "sats": 26324796721.690987}}, "community_data": {"facebook_likes": null, "twitter_followers": 17545, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": null, "reddit_accounts_active_48h": null}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 1438735, "bing_matches": null}}, "MXC_20210826": {"id": "mxc", "symbol": "mxc", "name": "MXC", "localization": {"en": "MXC", "de": "MXC", "es": "MXC", "fr": "MXC", "it": "MXC", "pl": "MXC", "ro": "MXC", "hu": "MXC", "nl": "MXC", "pt": "MXC", "sv": "MXC", "vi": "MXC", "tr": "MXC", "ru": "MXC", "ja": "MXC", "zh": "MXC", "zh-tw": "MXC", "ko": "MXC", "ar": "MXC", "th": "MXC", "id": "MXC"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/4604/thumb/MXC-app-icon10242x.png?1597628240", "small": "https://assets.coingecko.com/coins/images/4604/small/MXC-app-icon10242x.png?1597628240"}, "market_data": {"current_price": {"aed": 0.15375059735022995, "ars": 4.067135993113079, "aud": 0.05864390666549174, "bch": 6.23274199023175e-05, "bdt": 3.5572998205345243, "bhd": 0.01576062055526918, "bmd": 0.04186009969341646, "bnb": 9.333464514891596e-05, "brl": 0.22522826640042734, "btc": 8.496176612379372e-07, "cad": 0.05368963828647689, "chf": 0.03840153453654696, "clp": 32.928423156602996, "cny": 0.2721534381567475, "czk": 0.9149027527793488, "dkk": 0.2661634253310184, "dot": 0.00150814351533981, "eos": 0.007741922048560811, "eth": 1.2917490093607687e-05, "eur": 0.035791306160064325, "gbp": 0.03072527131486799, "hkd": 0.3261257576964538, "huf": 12.536228707643502, "idr": 605.003149048652, "ils": 0.1355733095194604, "inr": 3.110278453094809, "jpy": 4.598499391720574, "krw": 49.19568206585479, "kwd": 0.012598383044129352, "lkr": 8.339383000335625, "ltc": 0.00022555993355006227, "mmk": 68.80518482648695, "mxn": 0.8532082076284995, "myr": 0.1773821724508521, "ngn": 17.233803043779567, "nok": 0.3782114006828779, "nzd": 0.061309683394267636, "php": 2.1043622157590445, "pkr": 6.876168699225312, "pln": 0.16382406290105217, "rub": 3.1072752002423054, "sar": 0.15698793188021992, "sek": 0.3687484228259852, "sgd": 0.05703019982231061, "thb": 1.3946687646032376, "try": 0.35560531430454495, "twd": 1.1714967918800518, "uah": 1.1140505026667917, "usd": 0.04186009969341646, "vef": 0.00419145178230179, "vnd": 954.1834991848921, "xag": 0.0018188196572749612, "xau": 2.35287248356755e-05, "xdr": 0.029523049251673063, "xlm": 0.11284663466227171, "xrp": 0.03419132251436094, "yfi": 1.0599258231810334e-06, "zar": 0.6412488812091901, "bits": 0.8496176612379371, "link": 0.0014963685190180086, "sats": 84.96176612379371}, "market_cap": {"aed": 375139575.4619459, "ars": 9923159134.328594, "aud": 143066888.04252854, "bch": 151894.05050479295, "bdt": 8679536648.734749, "bhd": 38454696.15088726, "bmd": 102135408.2417782, "bnb": 227444.7908643976, "brl": 549539564.0448874, "btc": 2070.3088092537387, "cad": 131001836.53774376, "chf": 93708930.65560687, "clp": 80342809583.50859, "cny": 664033356.6839219, "czk": 2231250128.449879, "dkk": 649402357.3178775, "dot": 3668398.242885229, "eos": 18854994.602238514, "eth": 31446.00650080818, "eur": 87321382.2241659, "gbp": 74967287.5140569, "hkd": 795742072.3821071, "huf": 30585174385.02394, "idr": 1476160928144.275, "ils": 330788397.9224447, "inr": 7588839058.651499, "jpy": 11218195767.348072, "krw": 120033662325.91791, "kwd": 30739081.00607857, "lkr": 20347450041.018017, "ltc": 549974.4853201889, "mmk": 167879333610.60522, "mxn": 2082070538.3594973, "myr": 432798792.4245364, "ngn": 42049147573.14004, "nok": 922624685.7700522, "nzd": 149583739.90080342, "php": 5134216647.533281, "pkr": 16777320225.66514, "pln": 399755536.6085215, "rub": 7581521567.32803, "sar": 383038421.52914184, "sek": 899721024.7426492, "sgd": 139169707.27024698, "thb": 3405194510.7808833, "try": 867982446.6315174, "twd": 2858157264.237915, "uah": 2718197131.0432887, "usd": 102135408.2417782, "vef": 10226818.427249266, "vnd": 2328133997304.9507, "xag": 4438743.560942731, "xau": 57427.67599210462, "xdr": 72033958.58935322, "xlm": 275200829.6870494, "xrp": 83270119.80714372, "yfi": 2582.3543495873, "zar": 1565597925.545335, "bits": 2070308809.2537389, "link": 3646298.9651702708, "sats": 207030880925.3739}, "total_volume": {"aed": 49186883.55272719, "ars": 1301131494.3425117, "aud": 18760974.317790058, "bch": 19939.37973388067, "bdt": 1138028047.0468514, "bhd": 5042034.446245905, "bmd": 13391608.778179146, "bnb": 29859.008039606666, "brl": 72053551.03099293, "btc": 271.80411450667015, "cad": 17176037.244066242, "chf": 12285167.277708415, "clp": 10534245351.186174, "cny": 87065544.47133182, "czk": 292689693.1692479, "dkk": 85149258.82160953, "dot": 482475.3903286798, "eos": 2476744.9677572404, "eth": 4132.478780426918, "eur": 11450120.120736288, "gbp": 9829427.451574717, "hkd": 104332015.24947706, "huf": 4010508136.294369, "idr": 193548642763.9872, "ils": 43371724.74849943, "inr": 995019900.5760287, "jpy": 1471121790.7180924, "krw": 15738360219.558329, "kwd": 4030392.144315896, "lkr": 2667880760.1945724, "ltc": 72159.65581203774, "mmk": 22011703838.620724, "mxn": 272952778.5785303, "myr": 56746942.197534084, "ngn": 5513325333.976357, "nok": 120994912.82838088, "nzd": 19613792.13961086, "php": 673213769.8530008, "pkr": 2199778829.6540704, "pln": 52409520.63876099, "rub": 994059119.6042385, "sar": 50222550.4008053, "sek": 117967578.96476828, "sgd": 18244727.799391277, "thb": 446173291.6907119, "try": 113762921.81542179, "twd": 374777576.65773004, "uah": 356399736.2670847, "usd": 13391608.778179146, "vef": 1340901.7869590777, "vnd": 305256132146.47363, "xag": 581864.865747534, "xau": 7527.155462038926, "xdr": 9444820.447465409, "xlm": 36101155.859619856, "xrp": 10938263.83774434, "yfi": 339.08452349343685, "zar": 205144139.8728709, "bits": 271804114.5066701, "link": 478708.4106687899, "sats": 27180411450.66701}}, "community_data": {"facebook_likes": null, "twitter_followers": 17994, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 1381, "reddit_accounts_active_48h": "12.25"}, "developer_data": {"forks": null, "stars": null, "subscribers": null, "total_issues": null, "closed_issues": null, "pull_requests_merged": null, "pull_request_contributors": null, "code_additions_deletions_4_weeks": {"additions": null, "deletions": null}, "commit_count_4_weeks": null}, "public_interest_stats": {"alexa_rank": 108162, "bing_matches": null}}, "MDA_20210131": {"id": "moeda-loyalty-points", "symbol": "mda", "name": "Moeda Loyalty Points", "localization": {"en": "Moeda Loyalty Points", "de": "Moeda Loyalty Points", "es": "Moeda Loyalty Points", "fr": "Moeda Loyalty Points", "it": "Moeda Loyalty Points", "pl": "Moeda Loyalty Points", "ro": "Moeda Loyalty Points", "hu": "Moeda Loyalty Points", "nl": "Moeda Loyalty Points", "pt": "Moeda Loyalty Points", "sv": "Moeda Loyalty Points", "vi": "Moeda Loyalty Points", "tr": "Moeda Loyalty Points", "ru": "Moeda Loyalty Points", "ja": "Moeda Loyalty Points", "zh": "Moeda Loyalty Points", "zh-tw": "Moeda Loyalty Points", "ko": "\ubaa8\uc5d0\ub2e4", "ar": "Moeda Loyalty Points", "th": "Moeda Loyalty Points", "id": "Moeda Loyalty Points"}, "image": {"thumb": "https://assets.coingecko.com/coins/images/895/thumb/moeda-loyalty-points.png?1547034720", "small": "https://assets.coingecko.com/coins/images/895/small/moeda-loyalty-points.png?1547034720"}, "market_data": {"current_price": {"aed": 2.219403308613787, "ars": 52.629501212339086, "aud": 0.7897999114816793, "bch": 0.0016031771499768661, "bdt": 51.2443505324067, "bhd": 0.2278429092458519, "bmd": 0.6042152097935806, "bnb": 0.014713652857328669, "brl": 3.2713419888643984, "btc": 1.9915525183574047e-05, "cad": 0.774336835832642, "chf": 0.5373165017652362, "clp": 446.33369088438906, "cny": 3.917489734217663, "czk": 13.01874295691932, "dkk": 3.713208801292922, "dot": 0.03902371663123707, "eos": 0.24115678995836615, "eth": 0.00048288788965047323, "eur": 0.49920683583792613, "gbp": 0.4419997397746689, "hkd": 4.683785674038374, "huf": 179.98362669331203, "idr": 8489.156497388407, "ils": 1.9733004115127604, "inr": 44.13027775301728, "jpy": 62.9284098847918, "krw": 669.7725600561845, "kwd": 0.18299563951413303, "lkr": 116.48745873605517, "ltc": 0.004925089028518439, "mmk": 803.4610101292955, "mxn": 12.281341796861362, "myr": 2.444352631219927, "ngn": 234.15512016552617, "nok": 5.236805729106145, "nzd": 0.8458620197223783, "php": 29.044207017852305, "pkr": 97.1147239819192, "pln": 2.270426262004803, "rub": 45.86500983109512, "sar": 2.266325453375932, "sek": 5.056677090762474, "sgd": 0.8038551656918976, "thb": 18.12796683183192, "try": 4.469319485322151, "twd": 16.88056392699787, "uah": 17.028281857272983, "usd": 0.6042152097935806, "vef": 0.06050006895663135, "vnd": 13955.365331191888, "xag": 0.024000630521268555, "xau": 0.00032831241854553925, "xdr": 0.41887098575898085, "xlm": 2.5247467061353355, "xrp": 2.4025290068041616, "yfi": 2.1757922223380017e-05, "zar": 9.236773860536678, "bits": 19.915525183574047, "link": 0.02870561334203844, "sats": 1991.5525183574048}, "market_cap": {"aed": 43497916.5039163, "ars": 1031501719.4336112, "aud": 15483657.241333688, "bch": 31564.77205413152, "bdt": 1004334125.350242, "bhd": 4463296.912748729, "bmd": 11841967.903712427, "bnb": 289910.34931008454, "brl": 64107677.44353758, "btc": 391.4587144304494, "cad": 15176133.176842157, "chf": 10532246.253561817, "clp": 8747661690.472357, "cny": 76778583.10050993, "czk": 255242759.07995352, "dkk": 72798497.68807213, "dot": 770406.2650662258, "eos": 4753910.569138468, "eth": 9549.971884473252, "eur": 9788049.622620912, "gbp": 8662103.472368056, "hkd": 91797277.31407195, "huf": 3530179446.855949, "idr": 166436771964.8325, "ils": 38674564.55705534, "inr": 864730693.3472348, "jpy": 1233506744.7222986, "krw": 13126821421.265215, "kwd": 3585013.6792340884, "lkr": 2283028836.7097735, "ltc": 97152.49363116531, "mmk": 15746971177.845634, "mxn": 240876344.14246362, "myr": 47906681.154468626, "ngn": 4589188376.170441, "nok": 102649825.11549348, "nzd": 16577724.813989764, "php": 569421062.1759171, "pkr": 1903344082.9214857, "pln": 44512453.42013121, "rub": 898895362.8478416, "sar": 44413170.36122638, "sek": 99127739.65369973, "sgd": 15751356.767764982, "thb": 355395515.7914627, "try": 87591483.99338976, "twd": 330852729.41985327, "uah": 333735999.92308146, "usd": 11841967.903712427, "vef": 1185736.2461987238, "vnd": 273605854183.44492, "xag": 470760.4999979863, "xau": 6434.806939198287, "xdr": 8209420.565312829, "xlm": 49840629.71561103, "xrp": 47373452.26954491, "yfi": 428.05541381627256, "zar": 181030531.73763254, "bits": 391458714.43044937, "link": 567421.512721567, "sats": 39145871443.04494}, "total_volume": {"aed": 2738278.4365463355, "ars": 64933771.94519429, "aud": 974447.527586718, "bch": 1977.9845342698754, "bdt": 63224786.370780885, "bhd": 281110.3880428018, "bmd": 745474.9092198428, "bnb": 18153.563250843385, "brl": 4036150.253498066, "btc": 24.571583249886093, "cad": 955369.3337099638, "chf": 662935.9272710228, "clp": 550682211.0742111, "cny": 4833361.121417778, "czk": 16062399.732177366, "dkk": 4581321.272934914, "dot": 48147.085908398134, "eos": 297536.92589661735, "eth": 595.7824296139931, "eur": 615916.5883218003, "gbp": 545335.0239168643, "hkd": 5778809.675035846, "huf": 222062065.9584071, "idr": 10473839563.564886, "ils": 2434639.0512719965, "inr": 54447511.860908024, "jpy": 77640466.32033762, "krw": 826358936.8701963, "kwd": 225778.25838086798, "lkr": 143721105.19392213, "ltc": 6076.527430828397, "mmk": 991302459.5862852, "mxn": 15152601.279668013, "myr": 3015818.74524887, "ngn": 288898333.1094748, "nok": 6461120.495197492, "nzd": 1043616.4170386832, "php": 35834463.01756074, "pkr": 119819211.55057372, "pln": 2801230.0652554007, "rub": 56587807.599023625, "sar": 2796170.527046524, "sek": 6238879.515260861, "sgd": 991788.7649249901, "thb": 22366110.963868354, "try": 5514203.356008274, "twd": 20827077.268309087, "uah": 21009330.228640236, "usd": 745474.9092198428, "vef": 74644.40266018301, "vnd": 17217995400.933624, "xag": 29611.74688928156, "xau": 405.0687014227877, "xdr": 516798.98986683844, "xlm": 3115008.1809465447, "xrp": 2964217.160069909, "yfi": 26.844714981319136, "zar": 11396242.669098321, "bits": 24571583.249886096, "link": 35416.7093998953, "sats": 2457158324.9886093}}, "community_data": {"facebook_likes": null, "twitter_followers": null, "reddit_average_posts_48h": 0.0, "reddit_average_comments_48h": 0.0, "reddit_subscribers": 370, "reddit_accounts_active_48h": "22.2727272727273"}, "developer_data": {"forks": 3, "stars": 11, "subscribers": 8, "total_issues": 0, "closed_issues": 0, "pull_requests_merged": 0, "pull_request_contributors": 0, "code_additions_deletions_4_weeks": {"additions": 0, "deletions": 0}, "commit_count_4_weeks": 0}, "public_interest_stats": {"alexa_rank": 3273620, "bing_matches": null}}} File: TargetCoinPrediction\\FeatGeneration\\raw\\neg_binance_required_file_name.txt LSKBTC-202011 ALCXBTC-202004 NEARBTC-202104 BCCBTC-202110 QLCBTC-202012 JOEBTC-202103 WAVESBTC-201912 ELFBTC-202102 CVPBTC-201910 BTCSTBTC-202003 ETHBEARBTC-201906 WINGBTC-202101 CVPBTC-202109 KEYBTC-202008 TRIBEBTC-202007 PYRBTC-202101 NAVBTC-202101 KLAYBTC-202007 XRPBULLBTC-202102 XTZDOWNBTC-202008 TLMBTC-202012 RPXBTC-202107 VTHOUSDT-202108 LINKUPBTC-202009 POWRBTC-201905 POWRBTC-202004 LOOMBTC-201912 CHRBTC-202101 ENGBTC-202104 LITBTC-201903 FORTHBTC-201909 ALPHABTC-202105 PERLBTC-201903 OXTBTC-202010 NPXSBTC-202106 AXSBTC-202007 UNIDOWNBTC-201912 RCNBTC-202005 BQXBTC-202011 FXSBTC-202112 ADADOWNBTC-201906 CLVUSDT-202103 POLSBTC-201910 PLABTC-202007 SUSHIDOWNBTC-202105 DLTBTC-202009 ALGOBTC-202008 IDEXBTC-202109 WINUSDT-202103 MATICBTC-202102 HCBTC-201903 LENDBTC-202009 WAXPBTC-201911 MASKBTC-202006 AKROBTC-202008 SOLBTC-201911 KAVAUSDT-202108 HOTBTC-201903 DASHUSDT-202109 SKYBTC-202003 SUSHIDOWNBTC-202010 LINKBTC-202001 GASBTC-202007 BCHSVBTC-201902 ELFBTC-202109 MCBTC-202105 FARMBTC-202105 ADXBTC-201907 WANBTC-202108 JASMYBTC-202104 AKROUSDT-202109 EOSBTC-202107 KAVABTC-202008 AIONBTC-202107 DOTDOWNBTC-201907 WOOUSDT-202106 HSRBTC-202104 SUSDBTC-202001 DARBTC-202110 XTZDOWNBTC-202105 MDTBTC-202110 ALICEBTC-202108 ASTUSDT-202108 HARDBTC-202006 QKCUSDT-202106 USTBTC-202110 EOSBTC-202006 MTLBTC-201903 TRXBTC-202002 ICPBTC-202201 FORTHBTC-201901 REEFBTC-202109 LTCBTC-201902 NXSBTC-201911 SNXBTC-202009 BNBBULLBTC-202012 BCPTBTC-202011 CKBBTC-201902 AGLDBTC-201912 SYSBTC-202004 YFIBTC-202008 RAYBTC-202001 HOTBTC-202010 STEEMBTC-201907 DEGOBTC-201908 HARDBTC-202108 RIFUSDT-202111 USDPBTC-202111 REPBTC-202001 STPTBTC-202005 ELFBTC-202001 BCPTUSDT-202106 BCPTBTC-202106 EZBTC-201903 ADXBTC-202110 STORMBTC-201902 RENBTC-202104 ORNBTC-202005 UNIDOWNBTC-201903 DATAUSDT-202107 NEOBTC-201904 RENUSDT-202106 OCEANBTC-202104 STXBTC-202008 PHXBTC-202003 DEGOUSDT-202107 BKRWBTC-202109 YFIIUSDT-202108 PNTUSDT-202106 DGBUSDT-202111 FTMBTC-202008 DOTDOWNBTC-201902 AIONBTC-202101 TNBBTC-202109 ZILBTC-201906 AIONUSDT-202111 SUBBTC-202110 BETAUSDT-202108 USDCBTC-201908 LOOMBTC-202003 FUNUSDT-202109 COSBTC-202004 ACABTC-202109 POLYBTC-201903 HSRBTC-202004 AGLDBTC-202105 XLMUPBTC-202102 SFPUSDT-202103 BKRWUSDT-202106 GOUSDT-202111 DASHBTC-202110 STPTUSDT-202111 MKRBTC-202008 TCTBTC-202008 DODOBTC-202104 PNTBTC-202101 NUBTC-202010 ARPABTC-201909 SSVBTC-201902 WAVESBTC-202111 ARNBTC-201911 BTCBTC-202110 QIBTC-202110 DUSKBTC-202010 RUNEBTC-201906 IOTXUSDT-202107 FORTHBTC-202004 NEOBTC-202101 WINBTC-202110 ETHBEARBTC-201909 NXSBTC-201902 MIRBTC-202001 ZRXUSDT-202111 USDSUSDT-202107 RPXBTC-202109 GVTUSDT-202107 TRUBTC-201911 UNFIBTC-202001 AUCTIONBTC-201902 FLUXBTC-202001 GALAUSDT-202111 OSTBTC-201904 USDSBBTC-202102 JUVBTC-202002 JUVBTC-202007 SUSHIBTC-202011 OXTBTC-202110 XTZUPUSDT-202109 MCOBTC-202112 XECBTC-202005 UMABTC-201903 USDSBBTC-202106 NBSUSDT-202106 WAXPUSDT-202106 COTIBTC-201903 NXSBTC-202010 SKYUSDT-202109 BAKEUSDT-202107 BNBDOWNBTC-202109 BNBUPBTC-202009 BUSDBTC-202106 LINABTC-201912 TLMBTC-202010 API3BTC-201908 DGDBTC-202105 LOOMBTC-201907 LINKBTC-202107 FETUSDT-202107 NULSBTC-202009 1INCHDOWNBTC-202004 ARDRUSDT-202106 FILDOWNBTC-201907 TORNBTC-202102 DFBTC-201911 STMXBTC-202012 BCHUPBTC-201912 CTKBTC-202109 OMGBTC-202111 BCHBTC-201903 EOSDOWNBTC-202101 DARUSDT-202106 POWRBTC-202102 ANKRBTC-201904 ALPINEBTC-202001 MBOXBTC-201905 BULLBTC-202006 RNDRBTC-201905 XECBTC-201906 OMBTC-202008 ACMBTC-202109 ANTUSDT-202107 ONTBTC-201908 ANCBTC-202105 ZENBTC-202007 PAXBTC-202106 ALPINEUSDT-202108 AUCTIONBTC-202008 GHSTUSDT-202107 QSPUSDT-202107 FORBTC-201905 ILVUSDT-202109 ICPBTC-202103 XNOBTC-202111 GRTBTC-202109 GRSBTC-202201 XNOBTC-202201 SKYBTC-202112 WNXMBTC-202005 SUBBTC-201908 AGIXBTC-202005 MOVRBTC-202002 THETAUSDT-202106 BCHABCBTC-201910 PIVXBTC-201909 GLMRBTC-202007 YFIIBTC-202108 ANCBTC-202011 ADXBTC-202112 MINABTC-201906 CELOBTC-201904 XRPBTC-201904 STRAXBTC-202001 WRXBTC-201902 AKROBTC-202002 WOOBTC-202002 SHIBBTC-202102 HIVEUSDT-202106 POWRUSDT-202111 VIDTBTC-202002 FRONTBTC-202007 MASKBTC-202101 TRXUPBTC-202007 CHATBTC-202010 INSBTC-202112 ATOMBTC-201907 ICPBTC-202001 PIVXBTC-201904 EOSBULLBTC-201903 IOTABTC-202111 STXBTC-202007 PPTBTC-201903 CHESSBTC-201906 PPTBTC-202107 DASHUSDT-202108 AMBBTC-202112 FARMBTC-202007 HSRBTC-201901 SUSHIUPBTC-201904 PERPBTC-202103 XMRBTC-202102 APPCBTC-202103 PERPBTC-201905 RNDRBTC-202201 JSTBTC-201910 VTHOBTC-202001 RSRBTC-202002 HSRBTC-201902 EOSUPBTC-202108 BURGERUSDT-202108 GTOBTC-202005 NEBLBTC-201908 BCNBTC-202005 KLAYUSDT-202103 IDEXBTC-201902 CHRBTC-202103 XVGBTC-202010 COMPBTC-201905 LTOBTC-202102 ARKBTC-201906 IDEXBTC-202201 NUBTC-202107 CVCBTC-202005 ALICEBTC-202111 DOTBTC-201908 LAZIOBTC-202009 ELFBTC-202005 AIONBTC-202003 NKNBTC-202007 ATOMBTC-202101 LINKDOWNBTC-202002 GLMBTC-202105 MTLBTC-202005 YOYOBTC-202108 SUNBTC-202111 DEXEBTC-201903 WPRBTC-202004 RNDRBTC-201912 TRXBTC-202102 FIROBTC-202112 FORTHUSDT-202107 RCNBTC-201904 BNBBULLBTC-201910 BCHDOWNBTC-202112 SUSHIDOWNBTC-201909 MTLBTC-201902 YFIIBTC-202003 LTCDOWNBTC-202110 AAVEBTC-202111 CVCBTC-202201 CVXBTC-202102 RIFBTC-202006 CDTBTC-201909 BCDBTC-201911 DNTBTC-202110 EOSDOWNBTC-201906 EOSUSDT-202103 1INCHUPBTC-201901 YFIDOWNBTC-201910 AGLDUSDT-202106 CHESSUSDT-202107 REQBTC-202008 BTTBTC-201901 AEUSDT-202108 XVSBTC-201901 ARBTC-202201 BTSUSDT-202106 RVNBTC-201909 GHSTBTC-201910 C98BTC-202108 UTKBTC-201907 HNTBTC-202007 BARBTC-202111 SXPBTC-202102 SUNBTC-201908 ORNBTC-201905 OMBTC-201902 AXSBTC-201911 IMXBTC-202109 CRVBTC-202010 SOLBTC-202101 USDCBTC-202001 MITHBTC-201908 ELFBTC-201903 SUSDBTC-201908 WTCBTC-201904 NEOBTC-201905 ANTUSDT-202109 ARPAUSDT-202111 XVSBTC-201910 RLCBTC-201903 AGIXBTC-202007 MBLUSDT-202103 IMXUSDT-202107 JUVBTC-202005 ATOMBTC-202109 ICNUSDT-202103 GHSTBTC-201901 INSBTC-202002 GRTBTC-202001 RPXBTC-202106 NPXSBTC-201903 TUSDBTC-202007 1INCHUPBTC-202105 DASHBTC-202106 BTCBBTC-202001 XRPUSDT-202111 MFTUSDT-202111 EOSUPBTC-201910 BEAMBTC-201903 SALTBTC-202107 BEARBTC-201911 HSRUSDT-202107 YFIUPBTC-202102 MTLBTC-202003 CRVBTC-201907 IOSTBTC-202011 NASBTC-202008 ILVBTC-202002 REPBTC-201910 VETBTC-202109 BCHABCBTC-201908 SRMBTC-201909 GRSBTC-202011 EOSUPBTC-202102 RLCBTC-202107 KLAYUSDT-202108 ONGBTC-202002 LAZIOBTC-202107 GVTUSDT-202109 WINGSBTC-202009 ROSEBTC-202112 MBLBTC-202111 INJBTC-201912 ILVBTC-202106 WANBTC-202111 GRSBTC-202110 MBLBTC-202010 ANCUSDT-202106 XRPDOWNBTC-202104 RADBTC-201901 XLMUPBTC-202009 LTCDOWNBTC-202008 BNBUPBTC-202109 KNCBTC-202012 PHXBTC-202105 ETHBULLBTC-202005 DENTBTC-202008 ACMBTC-202101 HARDBTC-201912 ILVBTC-202011 EZBTC-202010 BCDBTC-202107 RCNBTC-202012 MDXBTC-201912 IOTXBTC-201911 ANCBTC-201911 STMXUSDT-202108 FXSUSDT-202111 SNMBTC-202012 HSRBTC-201908 DARBTC-201904 USDSBBTC-202005 DEXEBTC-201909 MODBTC-201910 GBPBTC-202104 USDSBBTC-202107 USDSBTC-201909 GBPBTC-201901 BELBTC-202107 UNIUPBTC-202108 LINABTC-202107 NAVBTC-201912 CKBBTC-202010 CITYBTC-201912 LINKBTC-202110 POABTC-202008 DGDBTC-202106 TROYBTC-202001 BCHBTC-202111 MBLBTC-201909 BETAUSDT-202109 IOTXBTC-201912 KSMBTC-202106 SXPUPBTC-202109 GRSBTC-202107 FILBTC-202004 XLMUPBTC-201911 AUDIOBTC-201903 MOVRBTC-202003 STORJBTC-202003 AMPBTC-202106 XECBTC-202007 SUNBTC-202005 LENDBTC-202107 HNTBTC-201901 HCBTC-201909 SUNBTC-201902 APPCUSDT-202103 UMAUSDT-202106 CHRBTC-202108 GLMBTC-202001 QLCBTC-202105 CNDUSDT-202107 QTUMUSDT-202111 INJBTC-202006 SXPBTC-202011 LINKDOWNUSDT-202107 SNGLSBTC-202003 LRCBTC-202101 TWTUSDT-202109 MDTBTC-202109 DASHBTC-202102 QUICKBTC-201907 BCCBTC-201909 ETHBULLBTC-201904 SANTOSBTC-202105 BRDBTC-201906 BTTCBTC-202008 AUTOBTC-202112 BARBTC-202001 NXSBTC-201909 CVCBTC-202105 LUNUSDT-202106 GRTBTC-201907 XRPUSDT-202109 RVNBTC-201906 ONEUSDT-202108 GVTUSDT-202111 CVXBTC-202108 ONEBTC-202011 ETHUSDT-202111 SCBTC-202003 SANDUSDT-202103 JUVBTC-202012 GRTBTC-202008 ASTBTC-202002 ENJBTC-202107 DEXEBTC-201912 POABTC-202005 LSKBTC-201907 UNIBTC-202009 RAYBTC-202104 HIVEBTC-201910 IRISBTC-202112 NKNBTC-201903 OXTUSDT-202103 MCOUSDT-202108 FLMBTC-201910 STMXUSDT-202106 ALPINEBTC-202101 SUPERBTC-201908 POLSBTC-201902 GOBTC-201911 SOLUSDT-202103 FLUXBTC-201903 GVTBTC-201911 ETHDOWNBTC-202106 CHESSBTC-202102 LUNABTC-202002 GNOBTC-202105 ADAUPBTC-201906 BNBBEARBTC-202108 BADGERBTC-201905 VIABTC-201907 DYDXBTC-201909 SCBTC-202004 AAVEBTC-201901 PHBBTC-201902 ROSEBTC-202010 DIABTC-202102 GOBTC-202001 BICOBTC-202003 AERGOBTC-201911 BNBUPBTC-202112 RLCBTC-201907 LRCBTC-202010 DATABTC-202001 BUSDUSDT-202106 BALBTC-201912 ARBTC-201905 DYDXUSDT-202107 KSMUSDT-202107 POAUSDT-202111 XEMBTC-201907 ALPHAUSDT-202111 DOCKBTC-201911 INJBTC-202008 JOEBTC-202111 VIAUSDT-202107 DENTBTC-201902 CHATBTC-202108 TUSDBTC-202112 MBLBTC-202103 OXTBTC-201908 ARNUSDT-202109 IOSTBTC-202101 SXPDOWNBTC-202011 ONTBTC-202112 OXTBTC-202007 ROSEBTC-202004 DEXEBTC-202002 FISBTC-202106 YFIIBTC-201905 SKLBTC-202105 BARBTC-202105 LITBTC-202109 ETHBULLBTC-201911 SUSHIUPBTC-202105 XRPBEARBTC-201910 CVCBTC-202112 BNBBULLBTC-201907 PONDBTC-202110 VENBTC-202004 PROMBTC-201902 SFPBTC-202108 COSBTC-202010 FORTHBTC-202108 ALICEBTC-201902 SANDUSDT-202111 DOCKBTC-201909 MCBTC-202010 USTBTC-201908 XTZBTC-202108 SXPBTC-202005 ETHBTC-202001 CVPUSDT-202103 ENJBTC-201905 AMBBTC-202004 MOVRBTC-201904 AEBTC-202011 AMBBTC-201901 FLMBTC-201912 GASBTC-202004 EOSBULLUSDT-202108 ALPACABTC-201901 GOBTC-202002 TFUELBTC-202001 SNGLSBTC-202008 BADGERBTC-201911 QLCBTC-201904 SCRTBTC-202110 NBSBTC-202001 YFIDOWNUSDT-202109 FRONTBTC-201907 REPBTC-201912 EOSDOWNUSDT-202109 PNTBTC-201902 ETHBTC-202102 XRPUPBTC-202004 RENBTCBTC-202003 JASMYUSDT-202108 BCHUPBTC-201908 STXBTC-202110 XTZUPBTC-202004 YFIUSDT-202106 USDPBTC-202108 MKRBTC-202105 BETABTC-202103 TRBBTC-201904 SUPERBTC-202011 SNTBTC-202005 DYDXBTC-202104 RAMPUSDT-202103 ENSBTC-202008 DFBTC-202005 DOTDOWNBTC-201905 STRATUSDT-202103 RLCBTC-202010 AUTOBTC-202003 YFIUPBTC-201905 OAXBTC-202109 AUTOBTC-201911 MITHBTC-202001 SUNBTC-202112 AEBTC-201907 PAXGBTC-202005 ZILBTC-202006 XZCUSDT-202109 APPCBTC-202112 POLSBTC-202010 FIDABTC-202005 FORTHBTC-202008 OGBTC-202110 VIBEBTC-201904 FIROUSDT-202107 ACHBTC-202103 SCRTBTC-202105 RDNBTC-201908 TRIGBTC-201906 BCHABCBTC-202110 QNTBTC-202010 AUDIOBTC-202110 MTLBTC-202007 KNCUSDT-202103 VENBTC-202107 DOCKBTC-202012 ADAUPBTC-202104 AGIBTC-202112 PERLBTC-201905 QUICKBTC-202005 SCBTC-201912 MATICBTC-202008 HNTBTC-201908 MATICUSDT-202108 INJBTC-201910 WRXBTC-202104 VIDTBTC-201905 RENBTCBTC-202002 TRXBTC-202008 ATOMBTC-202007 BADGERBTC-202101 STXUSDT-202103 DOGEBTC-201904 SRMBTC-202107 LTCDOWNBTC-201911 SUSHIDOWNBTC-202012 ARKBTC-201911 DYDXBTC-202008 BCPTUSDT-202107 BCPTBTC-202105 RENBTCBTC-202004 POEUSDT-202109 WBTCBTC-201911 VOXELBTC-201908 PPTUSDT-202108 LTCDOWNUSDT-202111 DAIUSDT-202109 DOTUPBTC-202012 WINGBTC-202010 ALCXBTC-201904 ERNBTC-202101 ARKBTC-202101 CTKBTC-202111 CITYBTC-202006 TCTUSDT-202111 SPELLBTC-202005 YFIDOWNBTC-201901 CTKBTC-202105 DGDUSDT-202106 STORJBTC-202104 SXPUPBTC-202105 DOTDOWNUSDT-202108 MCOBTC-201905 STEEMBTC-202009 IDEXUSDT-202109 DARBTC-202002 SNMBTC-202010 TNTUSDT-202108 CAKEBTC-202008 XTZDOWNBTC-202101 AAVEBTC-201902 WAVESBTC-202108 ICXBTC-202101 AUCTIONBTC-202112 KEEPBTC-201903 OGNBTC-202006 UNIDOWNBTC-202003 HARDBTC-202012 DEGOBTC-202107 LSKBTC-202007 AUDIOBTC-201902 UTKBTC-202109 ICXBTC-202005 MCOBTC-202105 REPBTC-202107 MATICBTC-202110 FIROBTC-202103 ARDRBTC-202011 C98BTC-202109 BTTUSDT-202108 LINKDOWNBTC-202201 MBOXUSDT-202108 ICPBTC-201909 POWRBTC-202110 RENBTC-201908 TROYUSDT-202109 POLYBTC-202011 BNBUPBTC-202104 VIBBTC-202005 TWTBTC-202106 RENBTC-202107 JSTBTC-202003 BZRXBTC-201909 SUPERBTC-202110 MANABTC-202105 KNCBTC-202002 FLOWBTC-202005 LUNBTC-201909 CTSIUSDT-202103 NASBTC-202007 STMXBTC-201909 KEEPUSDT-202111 LUNABTC-202009 SFPBTC-202109 CTKBTC-202201 BTCUPBTC-202111 DENTBTC-202003 VTHOBTC-202007 PHXBTC-202012 BETABTC-202112 JASMYBTC-201910 FXSBTC-202001 DIABTC-202004 BNBBTC-202010 TRXBTC-202010 USDSBTC-202109 REQBTC-202106 CTXCBTC-202011 WTCBTC-202103 BNXUSDT-202109 SFPBTC-201905 DATABTC-202002 ACABTC-202201 MITHBTC-201909 QNTBTC-202106 USDSBBTC-201911 FLOWBTC-202006 ARPABTC-201902 COCOSBTC-201902 VTHOUSDT-202106 EZBTC-202111 KEYUSDT-202111 CKBBTC-202111 PHBBTC-201910 DOCKBTC-201903 SUNBTC-201905 UNIUPBTC-201903 NEOBTC-202001 IDEXBTC-201906 ATOMBTC-202107 AUDBTC-202002 WINGBTC-201912 QTUMUSDT-202109 INJUSDT-202108 BCHBTC-202004 ELFUSDT-202109 NUBTC-202102 TRUBTC-201907 ALICEUSDT-202109 XTZDOWNBTC-202110 GRSUSDT-202107 AGIBTC-202012 QSPBTC-202001 BTGBTC-202009 CTKBTC-202108 QUICKUSDT-202109 EOSBULLBTC-201905 UMABTC-201906 EURBTC-201912 MKRBTC-202110 SANTOSBTC-202001 RGTBTC-201903 STEEMBTC-202003 SNGLSBTC-201901 SKYBTC-202106 JASMYBTC-202107 MDTBTC-202003 LPTBTC-202112 EDOBTC-202007 SSVBTC-201912 MCBTC-202111 LTOBTC-201909 QLCBTC-201902 EOSBTC-202010 XEMBTC-202008 STORJBTC-202108 LINKDOWNBTC-201909 BCHBTC-202105 KNCBTC-202009 MIRBTC-202201 SFPBTC-201908 BQXBTC-202001 NPXSBTC-201910 ADXUSDT-202107 NULSBTC-202003 STPTBTC-201911 WNXMBTC-201903 LTCUPBTC-201909 BOTBTC-202102 ENSBTC-201907 NASBTC-201912 HIGHBTC-202201 IOSTBTC-201908 ZRXBTC-201902 BQXUSDT-202108 OGNBTC-202104 XRPBTC-201906 BRDBTC-201909 BCHUPBTC-202012 DAIBTC-202104 DOGEBTC-202102 BNBBULLBTC-202002 ANTBTC-201906 KEYBTC-202105 TVKUSDT-202108 PNTBTC-202107 OOKIBTC-201911 ALPACABTC-202008 IMXBTC-201911 BRDBTC-202002 LTCBTC-201908 USDCBTC-202111 AMPBTC-202010 LTCUPBTC-202008 MITHBTC-201912 BUSDBTC-202201 CHESSBTC-201909 WAVESBTC-202107 OMGBTC-202001 TROYBTC-202003 DOTUPUSDT-202108 ONGUSDT-202103 TOMOBTC-202002 XRPBEARBTC-202012 TRIBEBTC-202002 USDPBTC-202001 SNXBTC-202109 IOTABTC-201901 BZRXBTC-202102 MATICBTC-202001 BONDBTC-202006 AAVEUPUSDT-202111 AXSBTC-201901 SHIBBTC-201905 HOTBTC-202012 YFIIUSDT-202109 DOTUPBTC-202109 HIGHBTC-202104 CLOAKUSDT-202107 ARUSDT-202111 KNCBTC-202102 FILDOWNUSDT-202106 OMGBTC-202104 NCASHBTC-202005 NAVBTC-202004 EVXBTC-201908 SUSHIBTC-202108 AUDBTC-201910 EPSBTC-202109 FLOWBTC-202107 SANDBTC-201904 LSKBTC-202104 FISBTC-202001 BTCBTC-201906 ONGBTC-202007 ASRBTC-201901 LTCDOWNBTC-202009 KMDBTC-201910 RAMPUSDT-202111 ZILBTC-202005 FIOUSDT-202108 CTSIBTC-202108 RSRBTC-202109 FILDOWNBTC-202001 EGLDBTC-202005 STORJBTC-202002 EVXBTC-202111 YOYOBTC-201912 EOSBULLBTC-202108 ARNUSDT-202106 CTSIBTC-202010 NPXSBTC-202112 YFIUSDT-202103 TRXUPBTC-202102 CELRBTC-201902 UNIBTC-202001 BADGERBTC-202001 XRPBEARUSDT-202106 ETHBTC-202111 SKYUSDT-202107 TCTBTC-201906 RUNEBTC-201910 QUICKBTC-201904 WBTCBTC-202107 NXSBTC-201907 WOOBTC-202008 OOKIBTC-201903 SXPBTC-202008 DOTUPBTC-201910 WPRBTC-202111 ADADOWNBTC-202004 FLOWBTC-202012 SNGLSBTC-201906 BKRWBTC-201912 1INCHBTC-202112 PNTBTC-202109 WBTCBTC-202009 RSRBTC-201907 BCPTUSDT-202103 IMXUSDT-202106 THETABTC-202005 MANAUSDT-202107 REEFBTC-201907 XECUSDT-202103 FARMBTC-201907 BETABTC-201902 BTCDOWNBTC-202006 VIBEBTC-202102 CHZBTC-202003 SUSHIBTC-202009 PAXBTC-202108 BELBTC-202006 LUNABTC-201901 BOTUSDT-202108 ERDBTC-201905 TCTUSDT-202108 CHESSBTC-202109 BCHSVUSDT-202106 VETBTC-201905 PIVXBTC-202110 LRCBTC-202201 PEOPLEBTC-201901 THETABTC-202111 XZCBTC-202008 APPCUSDT-202106 BCHABCUSDT-202107 LINKBTC-201905 SUSHIDOWNBTC-202011 TRXBTC-202110 NCASHBTC-201905 ROSEUSDT-202111 DATABTC-201911 SNMBTC-202001 BTCBTC-202107 ZRXBTC-202111 XLMDOWNBTC-202003 VIDTUSDT-202106 NMRUSDT-202111 TLMBTC-202103 AERGOBTC-202012 FARMBTC-201906 ARBTC-202002 DOGEBTC-201909 XTZUPUSDT-202108 SHIBUSDT-202111 TUSDBTC-202001 CHATBTC-202008 QUICKBTC-202201 SANTOSBTC-202005 NAVUSDT-202111 XMRBTC-201901 COSBTC-202111 GALABTC-202101 OMBTC-201910 QUICKBTC-201912 BTTCBTC-202001 BTTBTC-202102 VITEBTC-202007 OGBTC-202011 PAXBTC-201904 TWTBTC-202108 1INCHUPBTC-201908 STRATBTC-202009 KMDBTC-201904 OMGBTC-202102 MDXBTC-202003 AEBTC-202003 PORTOBTC-201910 RAMPBTC-202102 SFPBTC-202010 PUNDIXBTC-201910 CRVBTC-202111 TRXDOWNBTC-202110 ANKRBTC-202007 MITHBTC-202106 MASKUSDT-202107 EOSBEARBTC-202009 ATOMUSDT-202109 ARKUSDT-202109 NANOBTC-202006 GALABTC-202004 USDSBUSDT-202107 SNMBTC-201902 ALPACABTC-202010 PNTUSDT-202111 EZBTC-201911 VITEBTC-202104 MBOXBTC-202108 ANCBTC-202102 BTCUPBTC-201911 XNOBTC-202103 WTCUSDT-202106 POEBTC-202002 FISBTC-202108 ARBTC-201911 SXPDOWNUSDT-202106 CHRBTC-202010 AAVEDOWNBTC-202008 NULSBTC-201911 LITBTC-202004 ZRXBTC-202104 MDABTC-201907 AGLDBTC-201903 WBTCBTC-201910 MLNBTC-202101 SUSDUSDT-202108 WINBTC-202107 DFBTC-202003 VENBTC-202105 PLABTC-202110 BURGERBTC-202009 RSRUSDT-202103 AERGOBTC-201910 FUELBTC-202010 USDCBTC-201902 INSUSDT-202103 NASBTC-202009 REQBTC-202001 LSKBTC-201909 MCBTC-202007 AAVEBTC-202106 MATICBTC-202112 BTCUPBTC-202005 PORTOBTC-202109 RAMPBTC-201903 CHATBTC-201912 FORTHUSDT-202109 TKOBTC-202007 YFIUPBTC-201911 FIOUSDT-202111 ARBTC-201902 FILUPBTC-201911 DYDXBTC-202005 SUSHIUPBTC-202004 QSPBTC-201907 AUDIOBTC-202104 RPXBTC-202005 ALPACABTC-202106 STORMBTC-202003 BNBDOWNBTC-202102 OGNBTC-202101 BNBBULLBTC-202112 BKRWBTC-201905 DCRUSDT-202108 PSGBTC-202003 EOSBULLBTC-202111 ENSUSDT-202111 WINGSBTC-201901 AAVEUPBTC-202106 QIUSDT-202103 RDNBTC-201901 FRONTBTC-202010 DASHBTC-201908 TKOBTC-201910 TRXUSDT-202103 UNIUPBTC-202105 ETHDOWNBTC-202102 BTTCBTC-201904 NBSBTC-202003 DODOUSDT-202103 HIVEBTC-202004 RCNBTC-202109 OGBTC-202112 PEOPLEBTC-201909 AMBBTC-202108 NEARBTC-202101 ZRXBTC-201912 ALPHABTC-201902 JASMYBTC-202110 STRATBTC-202007 WANBTC-202010 TNTBTC-202111 NMRBTC-201902 OSTBTC-201909 GALABTC-201902 KMDBTC-201909 NPXSBTC-201905 PORTOBTC-202005 BELBTC-201911 CFXBTC-201908 ANCBTC-202103 WRXBTC-202007 CVXBTC-202112 RADBTC-202103 ALPINEBTC-201909 JUVBTC-201908 DEXEBTC-201908 ONGBTC-201905 MKRBTC-201911 DYDXBTC-202011 CDTUSDT-202106 TRBUSDT-202103 BQXBTC-202105 ASRBTC-201907 OSTBTC-202103 BALBTC-202112 DOCKBTC-202001 ETHBEARBTC-202009 PERLBTC-201908 VIBEBTC-201901 VGXUSDT-202103 BCHSVBTC-201906 SUSHIBTC-202107 PSGBTC-202002 QSPUSDT-202111 DGDBTC-202008 WPRBTC-201910 FRONTBTC-201912 AMBBTC-202002 ZILBTC-201911 BATBTC-201907 OOKIBTC-202109 MITHBTC-202011 SXPBTC-202109 BCCUSDT-202111 IOSTBTC-202003 DEXEUSDT-202111 BNTBTC-201906 ADABTC-202106 RUNEBTC-202003 POLSUSDT-202111 AVABTC-201912 NEBLBTC-202112 SNTBTC-202009 BICOUSDT-202108 DYDXBTC-201910 CAKEBTC-202012 SKLBTC-202102 EOSDOWNBTC-202009 ARDRBTC-201901 SANTOSBTC-202108 YOYOBTC-202112 UTKBTC-202006 LOOMBTC-202109 PHABTC-202009 EOSDOWNBTC-201904 AUDBTC-202009 WABIBTC-202201 APPCBTC-202010 AGIXBTC-202105 ALICEBTC-202101 VIBBTC-202107 MDTBTC-202011 TLMBTC-201903 MLNBTC-202007 GTCBTC-201910 RAMPUSDT-202109 ZRXBTC-202101 BONDBTC-202001 TRXUPBTC-201907 RLCBTC-202012 BCHBTC-202011 DIABTC-202110 MOVRBTC-202007 NAVBTC-202011 GLMBTC-201905 MOVRBTC-201906 ERDBTC-202007 CAKEBTC-201912 CFXBTC-202004 GHSTBTC-201907 CELRUSDT-202111 MBOXBTC-202007 FETUSDT-202103 WINBTC-201909 BCHABCBTC-201911 AUTOBTC-201904 FILUPUSDT-202108 ARNBTC-202106 ARKBTC-202111 RIFUSDT-202103 IOTABTC-202112 FTTBTC-201903 SUSHIDOWNBTC-202004 BCHDOWNUSDT-202111 ALCXBTC-201903 EURBTC-201901 HOTBTC-201904 OGBTC-202003 TRUBTC-202101 KEYBTC-201901 YFIIBTC-202009 XRPBEARBTC-202006 GNTBTC-201910 FXSUSDT-202107 LUNABTC-201907 SKLUSDT-202108 PERLBTC-202110 XZCBTC-202011 DODOBTC-202109 AAVEDOWNBTC-202109 REPBTC-202002 PUNDIXBTC-202105 ANKRBTC-202105 DREPBTC-202010 DGBBTC-202105 CKBBTC-202104 KSMUSDT-202108 CVCBTC-201902 ALPINEBTC-202103 QIUSDT-202107 GLMBTC-202107 PYRUSDT-202108 XRPUPBTC-202108 GTOBTC-202102 FILDOWNBTC-201905 RAYBTC-202101 ZECBTC-202004 FIOBTC-202009 PHABTC-201905 MATICBTC-201905 AERGOBTC-201905 AGIUSDT-202106 KMDBTC-202001 SPELLBTC-202004 NEARBTC-202003 JOEBTC-202108 BTCBBTC-201910 ALCXBTC-202102 OMGBTC-202011 KP3RBTC-202007 PHAUSDT-202107 WINBTC-201902 JASMYBTC-201903 XTZBTC-202109 BCPTBTC-201905 APPCBTC-201912 AVAXBTC-201901 XRPBULLUSDT-202107 BONDBTC-202103 DGDBTC-202110 ERNBTC-201904 YFIUPBTC-202107 MKRBTC-201907 BNBBTC-202003 EURBTC-202006 ZRXBTC-201905 EURBTC-202002 XTZDOWNBTC-202011 MASKBTC-202112 SNGLSBTC-202011 CTXCBTC-202004 SNXBTC-201902 ETHBTC-202108 GOBTC-201908 ARDRBTC-202108 GTCUSDT-202108 DATABTC-202109 SNTBTC-201903 CVPUSDT-202111 CTXCUSDT-202109 SXPUPBTC-201902 EPSUSDT-202107 AEBTC-202109 TVKBTC-202006 SXPUPBTC-201906 ANCBTC-202008 DOCKBTC-202112 GXSBTC-202005 SUPERBTC-202104 TORNBTC-202104 BOTBTC-202109 ONEBTC-202103 NUBTC-202011 BKRWBTC-202002 ERNUSDT-202107 PROMBTC-202110 FIOBTC-202112 ASRUSDT-202107 BNBBTC-202008 JUVBTC-201905 POEUSDT-202111 LOOMBTC-202005 JASMYBTC-202102 CHRBTC-202011 BKRWBTC-202009 WINGSBTC-202104 ANKRBTC-201903 LAZIOBTC-202008 BEAMBTC-202006 ZECBTC-202007 NBSBTC-201912 OCEANBTC-201909 CKBBTC-202105 POLYBTC-202112 MTHBTC-202109 RDNBTC-201904 GTCUSDT-202106 BLZBTC-202104 EPSBTC-202101 SPELLBTC-202109 STXBTC-201901 NBSUSDT-202109 FLUXBTC-202201 INJUSDT-202107 MITHBTC-201901 XNOBTC-201909 MTLBTC-201901 DOTBTC-201906 POEBTC-202006 MATICBTC-202011 ONEBTC-202111 TCTBTC-202112 LINKBTC-202108 COMPBTC-201901 GNOBTC-202003 OOKIBTC-202105 THETAUSDT-202103 QNTUSDT-202111 NKNUSDT-202107 AUCTIONBTC-202201 SALTBTC-202103 SXPDOWNBTC-202005 BTGBTC-202107 AAVEDOWNBTC-201902 POABTC-202109 EOSBEARBTC-202007 TRIGBTC-202008 BADGERBTC-202104 ACAUSDT-202108 SUNBTC-201901 GASUSDT-202103 CVPBTC-201907 LRCBTC-202007 LINKDOWNUSDT-202106 TUSDBTC-202102 MTHBTC-201908 OMGBTC-202112 FTMBTC-202105 ROSEBTC-202011 ONGBTC-201910 VOXELBTC-201905 HOTUSDT-202109 MITHUSDT-202111 HCBTC-202107 XZCBTC-202112 XMRBTC-202103 ADADOWNBTC-202105 FLUXBTC-202110 EOSBULLBTC-201907 ALPINEUSDT-202103 XTZBTC-202004 BTGBTC-201910 BCHSVBTC-201907 MINABTC-202004 GNTBTC-202009 MDXBTC-201908 BEAMUSDT-202108 XLMDOWNBTC-202012 STXBTC-202002 FISBTC-202112 KEEPBTC-202111 YGGBTC-202108 DEGOBTC-202009 XLMDOWNUSDT-202103 KEYBTC-202011 FTMBTC-201911 MBOXBTC-202101 BELBTC-202003 FRONTBTC-202102 WPRBTC-202201 XVGBTC-201909 VGXBTC-202102 NEARBTC-201912 TFUELBTC-202005 DOGEBTC-202011 POAUSDT-202103 GLMBTC-202008 DOCKBTC-201908 XEMBTC-201910 OGBTC-202007 CMTBTC-202105 RLCBTC-202106 WPRUSDT-202108 HARDUSDT-202103 LPTUSDT-202106 DGBBTC-201911 PYRBTC-201909 CLOAKBTC-202003 CLOAKBTC-202108 GNOBTC-202109 ICPBTC-202104 1INCHUPBTC-202103 BLZBTC-202201 ARPABTC-201911 LTOBTC-202108 ANYUSDT-202103 KMDBTC-202005 ARKBTC-201905 ADAUPBTC-202105 VIABTC-202105 OMBTC-202006 SANTOSUSDT-202106 CAKEBTC-201901 ARBTC-201904 MDXUSDT-202111 SUSDBTC-201904 TKOBTC-202101 SOLBTC-202111 USDSBBTC-202012 FORTHBTC-202005 QNTBTC-202112 WPRBTC-202003 ATABTC-201903 DGDBTC-202111 EGLDBTC-201904 PHABTC-202003 FTTBTC-202008 GVTBTC-202006 BCHDOWNBTC-202109 XLMDOWNBTC-202107 IOTXBTC-202007 AVAXBTC-202112 NEBLBTC-201912 RENBTCBTC-201912 THETABTC-202006 POWRUSDT-202106 CVCBTC-202010 KAVABTC-201903 ZRXBTC-202105 MBOXBTC-202106 YFIUSDT-202107 SUNBTC-202009 XLMUSDT-202111 RGTBTC-202006 BCCBTC-202003 SRMBTC-202007 NKNUSDT-202109 GASBTC-202109 AUDIOBTC-202112 EOSBULLBTC-201910 SKLUSDT-202107 HOTBTC-202004 WNXMBTC-202110 ZILBTC-201904 PERLBTC-202111 BANDBTC-201911 YFIDOWNBTC-202106 DGBBTC-202106 COSUSDT-202107 UNIUPBTC-202101 ILVBTC-202111 TRXUPBTC-202109 CNDBTC-202201 BNBUSDT-202106 NEBLBTC-202004 MODBTC-201908 RNDRBTC-202108 ALGOBTC-202105 LAZIOUSDT-202111 TOMOBTC-202004 WRXBTC-202006 MFTBTC-201902 RAYBTC-201901 UNIUPBTC-201910 LINKBTC-202009 FIROBTC-202009 ETHBTC-202103 PHXBTC-202112 ROSEBTC-202008 RENBTCBTC-202009 CAKEBTC-202003 VIBEBTC-201908 EOSUPBTC-202106 RLCBTC-201905 AAVEDOWNBTC-202002 VGXBTC-202002 PYRBTC-202009 ZRXBTC-201911 POEBTC-202009 MBLBTC-202101 LSKBTC-202102 BANDBTC-202003 POLYBTC-202005 LUNABTC-202102 HCBTC-202108 QKCBTC-202110 CFXUSDT-202106 GASBTC-202104 PSGBTC-202008 UNIDOWNBTC-202105 XVGBTC-202105 GTOBTC-202008 SUSDBTC-202112 IOSTBTC-201905 SOLUSDT-202111 RLCBTC-202104 USTBTC-201904 HOTBTC-201911 XNOBTC-201912 CTSIBTC-201910 SSVBTC-202111 FORBTC-202001 TNTBTC-202003 TROYBTC-202109 TRXUPBTC-201901 JSTBTC-202002 HARDBTC-202104 XTZBTC-202001 LUNABTC-202006 AMPUSDT-202109 STMXBTC-202108 WOOBTC-201903 QUICKBTC-202011 BNBBEARBTC-202002 BCHDOWNUSDT-202107 LENDBTC-202012 FLOWBTC-202108 PLABTC-202101 COSBTC-202012 PLABTC-201904 USDSBTC-202112 YGGUSDT-202107 TUSDBTC-202109 CLVBTC-202010 NBSBTC-201903 BCDBTC-202004 BEARBTC-202107 VETUSDT-202107 TLMUSDT-202108 USDCBTC-202004 PEOPLEBTC-201906 HBARBTC-201906 GLMRBTC-202106 SANDBTC-201902 CVXBTC-202005 XRPDOWNBTC-202112 POEBTC-202106 BUSDBTC-202007 HBARBTC-202002 COCOSBTC-201910 GTOUSDT-202108 XTZBTC-202103 AAVEUPBTC-202104 XZCBTC-202201 FTTBTC-202010 TRIGBTC-201905 QLCBTC-201903 SUSHIDOWNBTC-202104 HNTUSDT-202111 TKOUSDT-202103 NULSBTC-202111 ETHBULLBTC-201905 LUNABTC-201910 SUSHIBTC-202002 BRDBTC-202109 SKYUSDT-202106 REEFBTC-202102 ONGBTC-201902 BEAMBTC-201906 DEXEBTC-202109 WANBTC-201907 ROSEBTC-201910 BULLBTC-202109 BATBTC-202111 XTZDOWNBTC-201904 ASTBTC-202201 SOLBTC-202104 AMBBTC-202105 ARPABTC-202001 CHRBTC-202104 BTTBTC-202004 ERDUSDT-202107 ENGBTC-201905 DEXEBTC-202108 CHESSBTC-202004 JASMYBTC-202002 TFUELBTC-201901 MCBTC-202110 TKOBTC-201902 TRIGBTC-201911 CVPBTC-201902 PYRBTC-202109 KP3RBTC-201901 MINABTC-201902 PHBUSDT-202106 BADGERBTC-202002 UMABTC-202101 RSRBTC-202104 CVCBTC-202004 TRIBEBTC-201911 MTHBTC-201911 TOMOBTC-201903 GTOBTC-202012 OSTBTC-202108 VITEBTC-202110 RENBTC-201903 CRVBTC-202005 BTCDOWNBTC-202004 STMXBTC-201910 ATABTC-202110 AGLDBTC-202011 AVAXBTC-202001 MTHBTC-201904 GRTBTC-201903 FTTBTC-201905 KAVABTC-201901 FLUXBTC-202007 WINGSBTC-202201 PYRBTC-201902 MTLBTC-201909 CITYBTC-202009 PLABTC-201908 KNCBTC-201908 PNTBTC-201907 BNBBEARBTC-202005 LUNABTC-202201 DYDXBTC-202012 MTLBTC-202103 MDABTC-202112 EGLDBTC-201907 LTOUSDT-202108 GRTBTC-202102 FILBTC-202111 ROSEUSDT-202109 CLOAKBTC-202007 ARKBTC-201912 XRPUPBTC-202106 BEARBTC-202009 HSRBTC-202107 DATABTC-202005 ONTBTC-202006 EGLDBTC-202009 VIABTC-202009 BZRXBTC-202105 ICPUSDT-202103 BTGBTC-202105 DOGEBTC-202007 WBTCUSDT-202107 TRXBTC-202105 TORNBTC-201901 DCRBTC-201909 ICPBTC-202002 HNTBTC-202106 AGIXBTC-201912 PYRBTC-202002 BICOBTC-202102 OSTUSDT-202109 REQBTC-202109 ASRBTC-202103 BETABTC-201909 USTBTC-202112 AUTOBTC-202106 PERPUSDT-202109 RUNEBTC-202011 EOSBULLBTC-201906 JSTBTC-201909 GTCBTC-202009 SYSBTC-201909 SXPDOWNBTC-202107 GALABTC-201906 GASBTC-201901 LRCBTC-202110 API3BTC-202009 AAVEUPBTC-202109 QKCBTC-201911 USDSBBTC-202010 ACABTC-202012 MCOBTC-202006 LTOBTC-202009 PYRBTC-202006 WABIBTC-202008 BTGBTC-202111 KP3RBTC-202110 STXUSDT-202107 AUTOBTC-202110 ADXBTC-201904 POLYBTC-202106 SSVUSDT-202103 HSRBTC-201906 TROYBTC-202106 TRXDOWNUSDT-202103 FLMBTC-202007 SUSHIUPBTC-202012 OSTBTC-202002 BCHSVBTC-202104 EPSBTC-202108 PROMBTC-202108 OAXUSDT-202109 CMTBTC-202001 FIROBTC-201901 SYSBTC-202006 USDPBTC-202110 DLTBTC-202111 XTZDOWNBTC-201908 BTTBTC-202201 HSRBTC-202105 ENGUSDT-202107 PLABTC-202006 STORJBTC-202106 XRPDOWNBTC-202111 SUNBTC-202107 WRXBTC-202109 VETBTC-202201 UNIDOWNBTC-202201 XMRBTC-202106 AAVEUPBTC-201905 DIABTC-202108 ELFBTC-201905 HOTBTC-202107 BNBBULLUSDT-202111 LUNABTC-201911 QNTBTC-201909 IMXBTC-202107 LUNABTC-201906 QIBTC-202106 COCOSBTC-201906 ALCXBTC-202104 USDCBTC-201905 OGNBTC-202012 BCPTBTC-201910 GLMBTC-202006 IDEXBTC-202001 ARPABTC-201903 QIBTC-201903 LITUSDT-202111 TKOBTC-202003 NULSBTC-201906 IRISBTC-202109 SKYBTC-201902 MTLUSDT-202107 ETHUPBTC-201903 PONDBTC-202109 GTCBTC-201911 AUDIOBTC-202010 ALPHAUSDT-202109 LENDUSDT-202109 NMRBTC-201903 COCOSBTC-201907 FARMBTC-201912 EOSDOWNBTC-202110 BTCBBTC-202110 ARNBTC-202006 GASBTC-201904 NEARBTC-202004 AAVEDOWNBTC-202110 PHABTC-202006 ANCBTC-202109 BNBBTC-202005 HCBTC-202012 VOXELBTC-201911 DLTBTC-202010 VETBTC-201909 LINKUSDT-202106 FUNBTC-201907 LUNBTC-201912 AIONBTC-202006 SKLUSDT-202103 IDEXBTC-202010 CHZBTC-202103 CTKUSDT-202107 XZCBTC-202005 MASKBTC-202008 PNTBTC-202104 LRCBTC-201902 CELOBTC-202105 GTOBTC-201909 CFXUSDT-202111 AGIBTC-202010 DOTUPBTC-202009 XTZUPBTC-202107 RAREBTC-202103 KAVABTC-201910 OSTBTC-202001 DNTUSDT-202108 1INCHBTC-202003 VTHOBTC-201909 STPTBTC-202003 BNBBEARUSDT-202103 BCDUSDT-202106 ICNBTC-202001 QKCBTC-202008 YFIBTC-202106 RSRBTC-202102 XRPBULLBTC-202107 WAVESBTC-202201 LUNAUSDT-202107 RENBTC-202001 AAVEUPBTC-202012 YOYOUSDT-202106 NAVBTC-202006 ALICEBTC-202112 SKYBTC-202104 FILUPBTC-202108 CITYBTC-201909 XRPBTC-202008 ETHBEARBTC-202105 PROMBTC-202001 PAXGBTC-202103 ALPINEBTC-202102 FLMBTC-202110 WABIBTC-202105 QNTUSDT-202108 PSGBTC-201902 AKROUSDT-202103 DENTBTC-201912 TUSDBTC-202003 VIBEBTC-202107 BNTUSDT-202108 FLMBTC-202012 XLMDOWNBTC-202104 WINBTC-202004 LITBTC-201906 POLYUSDT-202106 ERNBTC-201906 IOTXBTC-201909 SNXBTC-202008 MANABTC-201905 KAVAUSDT-202103 SUSHIUPUSDT-202108 CLVBTC-202004 ETCUSDT-202108 DARBTC-202004 RGTBTC-201904 NMRBTC-201910 RUNEUSDT-202103 CAKEBTC-201907 VITEBTC-202010 AGIXBTC-201902 SNXBTC-202101 REPBTC-202103 API3BTC-202112 KEYBTC-202010 STXBTC-201907 LTOBTC-201911 AGLDUSDT-202111 DASHBTC-202005 LTCUPBTC-202109 SFPBTC-202002 USDSBTC-202101 ONTBTC-202009 PERLBTC-202107 KAVABTC-202108 SFPBTC-202102 TRXUPUSDT-202111 KNCBTC-202108 ZECUSDT-202111 QIBTC-202201 PROMBTC-201908 QTUMBTC-202201 QIBTC-201912 RAREBTC-202008 MFTBTC-201907 SUPERBTC-202106 STMXUSDT-202103 AMPBTC-202009 SCRTBTC-202011 TROYBTC-202101 SXPBTC-202111 SANDBTC-202105 HIGHBTC-202109 CRVBTC-202009 GLMRUSDT-202103 PUNDIXBTC-202007 AGIXBTC-202111 WABIBTC-201902 BICOBTC-202007 RENBTCBTC-201901 DOTDOWNBTC-202101 ADADOWNBTC-202003 QSPBTC-202009 BNBBTC-201901 OGNBTC-202002 FTMBTC-202004 XVGBTC-201905 MOVRUSDT-202103 FETBTC-202110 FUNBTC-202002 FUNBTC-201901 BTCBTC-202006 KAVABTC-202104 AVAUSDT-202106 CTKBTC-201904 KLAYBTC-202004 PERPBTC-201908 AXSUSDT-202103 BURGERBTC-202101 DATAUSDT-202109 DASHBTC-202003 STEEMBTC-201910 BEAMBTC-202111 BEARBTC-202001 LAZIOBTC-202012 ALGOUSDT-202108 ORNBTC-202103 BADGERUSDT-202108 ETHUPBTC-202101 CMTBTC-201908 MBLBTC-202108 FUNBTC-202001 ADXBTC-202105 FIDABTC-202106 NULSUSDT-202103 PAXBTC-201910 TUSDBTC-202111 AEBTC-202106 RGTBTC-201901 AGLDBTC-201906 LUNBTC-202111 SUSHIBTC-201912 HBARUSDT-202107 XRPBEARBTC-201901 BURGERBTC-202112 FUELBTC-202104 STRATBTC-202010 NEARBTC-201909 PSGUSDT-202103 PEOPLEBTC-201911 BCDUSDT-202108 PHBBTC-202102 HSRBTC-202012 PHXBTC-202107 BTSBTC-202201 XTZDOWNBTC-202010 WOOBTC-202110 IOTXBTC-202010 POLYBTC-202105 RSRBTC-202107 AVAXBTC-202009 BCDBTC-202007 ARKBTC-201901 ADXBTC-201910 CFXBTC-202106 FXSBTC-201903 COCOSBTC-201903 XNOBTC-202110 AVABTC-201903 XTZUPUSDT-202103 SUSHIBTC-202112 BOTBTC-202011 WAVESBTC-201901 TRUBTC-202105 IRISBTC-201912 ICPBTC-202007 ONEBTC-202201 INSBTC-202006 PUNDIXBTC-202010 SXPUPBTC-201908 PPTBTC-201901 VIBBTC-201910 ATMUSDT-202106 DOTUPBTC-202106 ADAUPUSDT-202106 HCBTC-202101 KSMBTC-202001 STRAXBTC-202109 ARBTC-202102 XRPBTC-202105 LTCUPBTC-202111 EVXBTC-202101 VITEBTC-202003 FILUPBTC-202201 PHABTC-202012 BTGUSDT-202106 SUSHIBTC-202004 LINABTC-201911 ETHDOWNUSDT-202103 XNOUSDT-202108 FXSBTC-202011 BCHSVBTC-202005 AAVEUPBTC-202001 USDCUSDT-202106 FETBTC-202112 PONDBTC-201904 IOTXBTC-202110 ADXUSDT-202111 ASRBTC-202201 ARBTC-202009 BTCSTBTC-202106 XVSBTC-202007 PAXBTC-202002 BCNBTC-202102 RPXUSDT-202108 ATMBTC-202004 BZRXBTC-202112 PSGBTC-202007 THETABTC-202008 FLMBTC-202104 NEARBTC-201907 FILBTC-202106 FORBTC-201903 SUSDBTC-201912 BTGBTC-201905 LUNBTC-201911 ACMBTC-201902 PEOPLEUSDT-202109 FILUSDT-202109 BURGERBTC-202103 BCHUSDT-202108 USDCBTC-202002 DOGEBTC-202001 OGNBTC-201911 AAVEBTC-202101 MFTBTC-202012 1INCHBTC-201903 PORTOUSDT-202103 CNDBTC-201901 KSMBTC-201907 RNDRBTC-202003 BCPTBTC-202109 ALPACABTC-202005 FORTHBTC-202001 ARBTC-202101 SFPBTC-202001 XLMBTC-201901 KP3RBTC-202004 TRUBTC-202108 FIROUSDT-202108 HIVEBTC-202111 RNDRBTC-201902 FLMBTC-202003 IMXBTC-202009 IOSTUSDT-202107 INJBTC-201909 HARDUSDT-202107 RPXBTC-202008 BALBTC-202009 IOSTBTC-202002 DENTBTC-201910 SYSBTC-202005 DEGOBTC-201901 SUNBTC-202001 XRPBULLUSDT-202108 NANOBTC-202012 EOSBEARBTC-202112 TNTBTC-202102 PERPBTC-201910 OGUSDT-202106 DNTUSDT-202109 BNBBTC-202105 LRCBTC-201912 DGDBTC-202004 RADBTC-202112 QKCBTC-202109 SYSBTC-201908 GTCBTC-202011 USDSBTC-201902 RAREBTC-202112 LINABTC-201909 DLTBTC-202004 ALPACAUSDT-202109 ANCUSDT-202107 ELFBTC-201907 SKYBTC-201912 1INCHUPBTC-202201 SUBUSDT-202108 ALPHABTC-201911 BNBBTC-202109 SLPBTC-202002 CTKBTC-202103 DUSKBTC-201903 CAKEUSDT-202109 SCBTC-202008 BELBTC-202101 MDABTC-202101 YOYOBTC-202107 TRIGBTC-202201 WABIBTC-202101 ALPINEBTC-202201 ADXBTC-201909 SNXBTC-202108 WRXBTC-201909 TUSDBTC-202002 BNBDOWNBTC-202112 POEBTC-201912 MOVRBTC-201909 BARBTC-201911 KEEPBTC-202105 TRBBTC-202004 BADGERBTC-202004 BEAMBTC-202007 ARNBTC-202103 UNFIBTC-201909 C98BTC-201905 DYDXBTC-202102 IRISBTC-202011 AGLDBTC-202012 YFIBTC-202109 AAVEUPBTC-202008 GHSTUSDT-202109 WOOBTC-201901 YGGBTC-202004 ETCBTC-201902 FTTBTC-201909 EGLDUSDT-202111 SANDBTC-202109 VIDTBTC-202007 CHATBTC-202105 NAVBTC-202009 BARBTC-202007 UNFIBTC-202012 WPRBTC-202011 WPRBTC-202101 AVAXBTC-202101 BKRWBTC-202003 POLYBTC-202004 FILUPBTC-202102 BARBTC-202103 RENBTC-201907 SNTBTC-202006 VENBTC-202006 DGBBTC-201910 MATICUSDT-202107 YGGBTC-202005 FIROBTC-202010 HCBTC-202109 BALBTC-202004 GASBTC-202103 LUNABTC-202001 BCHBTC-201911 BTCBTC-201901 NANOUSDT-202106 BCHDOWNBTC-202001 ADADOWNBTC-202008 POWRBTC-202103 YGGBTC-202002 RGTBTC-201905 BNTBTC-201909 AAVEBTC-202103 BALBTC-202008 BALBTC-202107 OAXBTC-202112 BNBBULLBTC-201905 HCBTC-202011 HNTBTC-202105 PHABTC-201901 EASYBTC-202201 AVAUSDT-202103 PPTBTC-201911 ACMBTC-201907 1INCHBTC-202201 TRBBTC-202110 TUSDBTC-202006 ERNUSDT-202109 PAXBTC-201901 ATOMBTC-202005 RAYBTC-202004 JOEBTC-201910 FUNBTC-202107 SKLBTC-202108 NEARBTC-202106 STXBTC-202101 MDXBTC-202012 TNTBTC-202010 STORJBTC-201908 RADBTC-202011 LUNBTC-202104 LITUSDT-202107 YOYOBTC-201906 ICPUSDT-202111 BTGUSDT-202108 ONGBTC-201909 ACHBTC-201902 AGIBTC-201908 EPSBTC-201902 VOXELBTC-201903 TRXBTC-201901 NANOBTC-201910 BLZUSDT-202106 UNFIBTC-202011 MINABTC-201905 FORUSDT-202107 SCRTBTC-201904 SUSHIDOWNBTC-201910 SUNBTC-202105 GASBTC-201909 WNXMBTC-202106 FLOWBTC-201905 STRAXBTC-201904 AUDBTC-201909 TROYUSDT-202111 ARDRBTC-201912 FISBTC-202110 BNBBTC-202106 TOMOBTC-201906 BANDBTC-202007 SALTBTC-201904 CKBBTC-202007 FUELBTC-201910 PORTOUSDT-202108 ELFBTC-202004 ALCXBTC-202108 YOYOBTC-202008 UTKBTC-201910 ETHUPUSDT-202111 TRIGBTC-202104 DUSKBTC-202006 LTCUPBTC-201912 QKCBTC-202002 USDPBTC-202012 WABIBTC-201912 XVGUSDT-202108 SNXBTC-201907 ROSEBTC-202102 SHIBBTC-202011 AEBTC-202009 PAXGBTC-202001 KMDBTC-201903 CTXCBTC-202201 VIBBTC-201903 RAYBTC-202111 ANTBTC-202201 WAVESBTC-202109 FRONTBTC-201911 SHIBBTC-201902 TRUUSDT-202103 PHABTC-202011 ARNBTC-201910 DAIBTC-202201 BCNUSDT-202106 NANOBTC-201902 XRPDOWNBTC-201910 PUNDIXBTC-202001 INSBTC-202107 RAYBTC-202109 ORNBTC-202105 LOOMBTC-201905 FRONTBTC-202005 RENBTCBTC-202112 ANCBTC-202201 VIBEBTC-202009 RENBTCBTC-201907 ARKBTC-201903 QSPBTC-202012 CVPUSDT-202107 FILBTC-202109 ZECBTC-201903 AUDBTC-202110 ARBTC-202103 BADGERBTC-201907 CVPBTC-202006 MANABTC-202109 ANYBTC-202108 LTCDOWNBTC-201903 ZRXBTC-202103 BKRWBTC-202004 ALCXBTC-202012 CTSIBTC-202103 GNOUSDT-202111 RENBTC-202009 SNMBTC-202201 LTCDOWNBTC-202106 POLYUSDT-202107 LAZIOBTC-202005 CHZBTC-202001 AERGOBTC-202011 WINGUSDT-202103 INSBTC-202102 STEEMBTC-201904 IOTABTC-201906 UMAUSDT-202111 CMTBTC-202006 TRIBEBTC-202001 ANKRBTC-202112 CTSIBTC-202111 WRXUSDT-202108 PERLBTC-202104 BNBUPBTC-201907 BETABTC-201903 EOSBTC-201910 EOSDOWNBTC-202005 LTOBTC-202010 XRPUPBTC-202104 TUSDBTC-201908 QNTBTC-202111 ENJUSDT-202106 NKNBTC-201908 BNXBTC-202112 QTUMBTC-202110 BTCUPBTC-202103 MATICBTC-202108 RPXBTC-201909 BEARBTC-202103 WAVESUSDT-202103 ARBTC-202110 CTXCBTC-202110 ANYBTC-202011 STORMBTC-202010 HARDBTC-202011 YFIDOWNBTC-202105 REQBTC-202112 SRMBTC-202102 SNMBTC-201905 PYRBTC-201906 ANTBTC-202008 CELOBTC-202012 BULLBTC-202002 SNXBTC-201908 RNDRBTC-201906 SNMBTC-202111 DOTDOWNBTC-202102 STORMBTC-202103 DNTUSDT-202111 ARUSDT-202108 BCPTBTC-202008 ZECBTC-202105 XZCBTC-201901 AUCTIONBTC-202007 PEOPLEBTC-202103 IDEXBTC-202101 OXTBTC-202105 ERNBTC-202109 DGBBTC-201905 SUSHIBTC-201908 MIRBTC-202009 ANKRBTC-201909 DAIBTC-202109 BELBTC-202008 RLCBTC-201904 POABTC-202007 QUICKUSDT-202107 IOSTBTC-202109 DYDXBTC-202101 LPTBTC-202011 EOSDOWNBTC-201912 FIDABTC-202104 CKBBTC-202001 ROSEBTC-202104 RVNBTC-202101 RIFBTC-201904 POEBTC-202112 AUTOBTC-201907 ZILBTC-201905 MIRBTC-202010 XECBTC-201912 ETHUPBTC-202106 YGGBTC-201902 API3USDT-202111 NUBTC-202008 MCOUSDT-202109 UNIUSDT-202108 DOTBTC-202110 FTMBTC-202112 MODBTC-202106 XLMDOWNBTC-202105 MINABTC-202006 SOLBTC-202110 BONDBTC-202110 WBTCBTC-202105 AUDBTC-202102 VIBEBTC-202005 VITEBTC-201902 PAXGBTC-201904 STORJUSDT-202103 SOLBTC-202010 ZENBTC-201903 WAVESBTC-201905 DOGEBTC-202002 AMPBTC-202111 CHZUSDT-202107 BEAMBTC-201911 LAZIOBTC-202004 XLMUSDT-202108 NASUSDT-202109 RPXBTC-202103 ETCBTC-202106 GNTBTC-202101 RAREBTC-201911 ALPHABTC-202006 UMABTC-202106 STMXBTC-202111 GOBTC-201912 XRPBULLBTC-201908 HARDBTC-201904 ASTBTC-201912 ORNBTC-201902 SXPBTC-202007 PHXBTC-202009 LENDBTC-201912 SANDUSDT-202108 AKROBTC-201901 ERDBTC-202008 CTKUSDT-202103 VGXBTC-202011 SPELLUSDT-202108 CHZBTC-202005 RAREUSDT-202107 XRPBEARBTC-202001 YFIBTC-202001 XRPUPBTC-202102 LPTBTC-202004 BNBBULLBTC-202105 RENBTCBTC-202005 WTCBTC-201912 BARBTC-202009 KP3RBTC-202101 FISBTC-201904 BELBTC-202005 POABTC-201902 CHATUSDT-202106 APPCBTC-201906 ARDRBTC-201903 ERNBTC-202007 AMBBTC-201902 DOGEBTC-202101 TROYBTC-202008 UTKBTC-201908 THETABTC-202101 SUSHIUPBTC-202103 ARBTC-202112 YOYOBTC-201905 XRPBULLBTC-202010 PAXGBTC-202110 ENGBTC-201904 RAYBTC-201907 FTTUSDT-202107 AGIBTC-202004 DFBTC-201912 HIGHBTC-202112 LINABTC-201903 XECBTC-202104 FTTBTC-202102 AAVEDOWNBTC-202108 BCCBTC-202010 NANOBTC-202001 GTCBTC-202201 CVPBTC-201904 1INCHUPBTC-202107 FLUXBTC-201904 AAVEUPBTC-202011 MCOBTC-202104 STMXUSDT-202109 DYDXBTC-202007 MATICUSDT-202106 VETBTC-201902 CITYBTC-202111 ATABTC-202009 FXSBTC-201912 HCBTC-201910 POLSBTC-201907 MODBTC-202011 SKLBTC-202201 USDPBTC-202112 QLCBTC-202008 CDTBTC-201911 AUDIOBTC-201908 WOOBTC-202011 THETABTC-201909 BTGBTC-201912 OXTBTC-202102 HBARBTC-202010 RAMPBTC-202106 RDNBTC-201902 XTZUPBTC-202201 DOTDOWNBTC-202103 LTCUPBTC-202003 SUPERBTC-202005 WABIBTC-202001 EPSBTC-201910 SUPERBTC-202111 MTHBTC-201910 MTHBTC-202107 GASBTC-201908 LTCBTC-202109 POABTC-202107 QTUMBTC-202108 XRPUPBTC-201908 WINBTC-201901 XTZDOWNUSDT-202103 WTCBTC-201910 BNTUSDT-202103 DASHBTC-201910 SUPERUSDT-202109 WAVESBTC-201907 AXSBTC-201905 PROMBTC-201904 DYDXBTC-202010 TRBBTC-202112 EOSDOWNBTC-202102 TUSDBTC-202010 BRDBTC-202010 RENBTC-201911 DODOBTC-202105 FILUPBTC-202104 EOSBTC-201901 XRPBULLBTC-202006 BALBTC-201907 DCRBTC-202111 BLZBTC-201904 JOEBTC-201909 DNTBTC-202109 ASRBTC-202109 MANABTC-202007 PERPBTC-202001 TOMOBTC-202006 COSBTC-202107 IOTABTC-202011 FARMBTC-202003 KSMBTC-202103 LITUSDT-202106 XLMBTC-202112 ETHDOWNBTC-202007 CITYBTC-202001 1INCHUPUSDT-202109 BULLBTC-202107 AUCTIONUSDT-202107 INSBTC-202201 YFIDOWNBTC-202003 BCHBTC-201905 NUBTC-202005 CRVBTC-202004 SNMBTC-202104 SYSBTC-201911 STXBTC-202004 KSMBTC-201911 NCASHBTC-202107 SNGLSBTC-202006 WANBTC-202007 CITYBTC-201903 NBSBTC-201910 CDTBTC-202107 FXSBTC-202010 RAREBTC-202108 SALTBTC-202009 STMXBTC-201904 SHIBBTC-201909 SUBBTC-202009 SUBUSDT-202111 IRISBTC-202009 XRPUPBTC-201909 AXSBTC-202201 AAVEDOWNBTC-202005 COMPBTC-201906 FARMBTC-202104 AKROBTC-201906 AGIUSDT-202108 ASTBTC-202008 DOCKBTC-201901 PORTOBTC-202009 DOCKBTC-202011 EDOBTC-202110 GNTBTC-201909 AGLDBTC-202112 PAXBTC-202004 SUNUSDT-202108 MTHBTC-201902 IOSTBTC-202012 TRXDOWNBTC-202004 BTSBTC-202106 YFIIBTC-202006 TKOBTC-202006 BOTBTC-202010 RNDRBTC-201909 WOOUSDT-202109 POLYBTC-202108 SYSUSDT-202103 WAXPBTC-201905 CFXBTC-201902 FLUXUSDT-202103 SCBTC-201905 AGLDBTC-202001 ADAUPBTC-202009 1INCHDOWNBTC-202102 FIDABTC-202110 PONDBTC-201901 CITYUSDT-202109 DEGOUSDT-202103 GRTBTC-201908 SPELLBTC-202112 LINKBTC-202104 LTOBTC-202001 ELFBTC-202105 SUSDBTC-201901 PHBBTC-202110 COMPBTC-202107 REPBTC-202105 ETCBTC-202010 XMRUSDT-202108 SRMBTC-202006 WAVESBTC-202008 SUSHIUSDT-202108 JUVUSDT-202106 COCOSBTC-202110 XRPDOWNBTC-202005 DLTBTC-202005 BONDBTC-202106 UNIBTC-202105 BTTCBTC-201908 BCDBTC-202008 ALPINEBTC-201906 YGGBTC-202106 XRPDOWNBTC-202110 SHIBBTC-201903 AMBBTC-202006 ALPINEBTC-202108 SUSHIDOWNBTC-202002 PROMBTC-202102 XRPBEARBTC-201912 MIRBTC-202104 YFIIBTC-201904 ZECUSDT-202108 GLMBTC-202012 MLNBTC-201912 LAZIOBTC-202006 AMPBTC-202001 MDABTC-201905 CELOBTC-202003 PROMBTC-202106 VTHOUSDT-202103 ETHBTC-201902 KEYBTC-202004 RENBTCUSDT-202103 ENJBTC-201911 YFIBTC-202011 BONDBTC-202112 XTZDOWNBTC-202104 DAIBTC-202008 BICOBTC-202110 EOSBTC-202109 MDTBTC-201912 CTKBTC-202004 DNTBTC-202104 DLTBTC-202011 WANBTC-202002 BICOBTC-202201 FXSBTC-202109 OAXBTC-202002 STMXBTC-202107 LINKUPBTC-202106 TFUELBTC-202006 GLMRBTC-201901 NEOBTC-202107 MATICBTC-202104 PHBBTC-202108 BRDBTC-201902 BTCUPBTC-202003 DODOBTC-202106 TRBBTC-202109 MBLBTC-202009 BCHDOWNBTC-202011 NANOBTC-202005 WAVESUSDT-202107 XNOBTC-202102 MTLBTC-201905 KLAYBTC-202103 XNOUSDT-202103 SUSHIUPUSDT-202107 BTCDOWNBTC-202011 GXSUSDT-202109 ACABTC-202104 ENGBTC-202009 BCPTBTC-201901 EGLDBTC-202006 ICXUSDT-202103 BARUSDT-202106 BZRXBTC-201908 SPELLBTC-202101 FTTBTC-202111 APPCBTC-202011 FETBTC-202105 FIOBTC-202011 BUSDBTC-201902 USDSBTC-201905 XTZDOWNBTC-202112 POWRBTC-202108 BOTBTC-202111 LOOMBTC-201908 YFIDOWNBTC-202107 ADADOWNBTC-202104 GLMUSDT-202111 SANDUSDT-202106 BNBBTC-202011 TRXDOWNBTC-202002 WAXPBTC-201904 ACMBTC-202107 ONEBTC-201905 ANKRBTC-201905 WANUSDT-202103 DGBBTC-202005 EOSDOWNBTC-201903 STRAXBTC-202003 ONGBTC-202012 GXSBTC-202111 STEEMUSDT-202103 AUTOBTC-201903 FISBTC-202011 NPXSUSDT-202103 GRTBTC-201906 BTCSTBTC-202105 XNOBTC-202005 SOLBTC-202011 QNTBTC-201908 STRATBTC-202001 1INCHDOWNBTC-202001 C98BTC-202112 LINKDOWNUSDT-202111 FUNBTC-202108 HBARBTC-202003 YOYOBTC-201902 USDSBBTC-201901 GASBTC-202002 LOOMBTC-201906 QUICKBTC-202108 NEARBTC-201908 LENDUSDT-202103 MOVRBTC-202010 HSRBTC-202002 BTCSTBTC-201907 BNBUPUSDT-202106 LENDBTC-202004 API3USDT-202106 FXSBTC-202009 MIRUSDT-202103 BTGBTC-202007 SANTOSBTC-202002 GXSBTC-202011 MATICUSDT-202111 VGXBTC-202008 STORJBTC-201905 PROMUSDT-202107 AERGOUSDT-202107 BCHBTC-202006 VIBEUSDT-202111 LSKBTC-202103 AUTOUSDT-202111 LUNABTC-202107 EZBTC-202001 CVXBTC-202006 XTZUPBTC-202011 LTCBTC-201910 1INCHUPBTC-202108 DNTBTC-201909 LINKUPBTC-202001 AERGOUSDT-202108 ETHBTC-202006 ALICEBTC-201906 BTSBTC-201911 TRIGBTC-201908 RGTBTC-201910 OCEANUSDT-202103 FORBTC-201908 LUNBTC-201910 ILVBTC-202004 EDOBTC-202006 BCNBTC-202105 JUVBTC-201912 EOSDOWNBTC-202010 SXPBTC-202006 1INCHBTC-202102 PHBBTC-201905 IOSTUSDT-202106 XZCBTC-202105 MFTBTC-202001 OOKIBTC-202107 POLYBTC-202103 AVAXBTC-201909 GASUSDT-202108 ADXBTC-202108 TWTBTC-202109 XTZBTC-202111 KP3RBTC-202201 DODOBTC-202112 NCASHBTC-202101 ADABTC-201902 KMDBTC-202010 SANDBTC-201911 BEARBTC-202004 PSGBTC-201901 FLMBTC-201908 ARNBTC-202108 GNOBTC-202104 USDCUSDT-202109 QKCBTC-201912 PIVXBTC-201906 LTCBTC-202110 RDNBTC-202101 RIFBTC-201909 AIONBTC-202005 ALPINEBTC-202004 VIDTUSDT-202109 ETHBTC-202008 STORMUSDT-202111 DODOBTC-202001 OGNBTC-202105 LINABTC-201907 BOTBTC-201906 LTCBTC-201904 FLUXBTC-202108 MCBTC-202106 ENGBTC-202108 CRVBTC-201912 CHZUSDT-202109 DODOBTC-201911 ARPABTC-202012 ATMUSDT-202103 DEGOBTC-202002 MODBTC-202112 BNBBEARBTC-202009 XTZUPBTC-201906 KLAYBTC-201903 MODBTC-202005 LOKAUSDT-202107 BNXUSDT-202107 YFIIBTC-202012 WRXUSDT-202111 DGDBTC-202009 MFTUSDT-202106 ADADOWNBTC-201903 YFIDOWNBTC-202005 ONEBTC-201903 MDTBTC-202004 PHABTC-202008 SXPUPUSDT-202109 IRISUSDT-202108 STORJBTC-201902 AAVEDOWNBTC-202106 ORNBTC-202111 COCOSUSDT-202108 VIBEBTC-202011 PHAUSDT-202108 BATBTC-202008 AGIXBTC-202103 CAKEBTC-202006 PNTBTC-202112 PAXGBTC-201901 FILUPBTC-201902 MDTBTC-202201 RCNBTC-202006 FORBTC-201901 XLMDOWNBTC-202011 FILDOWNBTC-201910 WAXPBTC-202005 EASYUSDT-202103 ATMBTC-202006 ETCBTC-202002 EURBTC-202001 FETBTC-202101 STORJBTC-202103 MINABTC-201911 NKNBTC-202010 BALBTC-202005 ETHUPUSDT-202107 XTZDOWNBTC-202111 WAXPBTC-202105 KSMUSDT-202111 AEBTC-202012 XTZDOWNBTC-201911 ATOMBTC-201911 ACABTC-202110 GHSTBTC-202010 LOOMUSDT-202109 REPBTC-202004 AAVEUPBTC-201912 BICOBTC-201901 POEUSDT-202103 UNIUPBTC-202201 BRDUSDT-202106 1INCHDOWNBTC-202006 ICNBTC-202006 QLCBTC-202002 CTKBTC-201907 UNIBTC-202106 DFBTC-201908 NPXSBTC-202004 DFUSDT-202106 BNXBTC-202201 VIBBTC-201904 OXTBTC-201910 CNDBTC-202112 HCBTC-202104 ORNBTC-202108 XTZBTC-201910 BTCUPUSDT-202111 USDSBBTC-202002 ANCBTC-202107 AAVEUPBTC-201908 PPTBTC-202105 GNTBTC-202006 LTCBTC-202102 IOTXBTC-202102 AEBTC-202105 CVXBTC-202109 LTOBTC-201905 BATBTC-201910 WINBTC-202008 RIFBTC-202111 STEEMBTC-202008 BTCUPBTC-201908 1INCHBTC-201910 MITHBTC-202101 FUELBTC-202011 RGTUSDT-202106 BZRXBTC-202103 UNIDOWNUSDT-202109 EOSDOWNBTC-202008 EASYBTC-202109 ZRXBTC-202007 BICOBTC-201907 STEEMBTC-202004 SUSHIBTC-201905 ANCBTC-201901 DOGEBTC-201903 XZCBTC-202107 DREPBTC-202012 COTIBTC-202001 CNDUSDT-202108 YGGUSDT-202106 VOXELBTC-202104 PONDBTC-202106 CHATBTC-202201 INSBTC-202001 ZECBTC-202106 PEOPLEBTC-201904 XRPBTC-202009 BAKEBTC-201902 GBPBTC-202012 WINGBTC-202002 VENBTC-201909 AERGOBTC-202109 SUNBTC-201907 MOVRBTC-202101 WINGBTC-202107 TRXBTC-201906 ZRXBTC-201906 DEXEBTC-202201 BICOBTC-201904 FUELBTC-201909 BNBBTC-201903 ROSEBTC-202201 POAUSDT-202107 ALPINEUSDT-202109 LTCUPBTC-202010 TRXUPBTC-201909 HCBTC-201902 ATABTC-201910 QUICKBTC-201910 ANYBTC-202008 MBOXBTC-201902 ZENBTC-202105 CDTUSDT-202108 ILVBTC-201912 BCPTBTC-202110 TRXUPBTC-202006 FIDABTC-202108 MDABTC-201908 OAXBTC-202011 DFBTC-202007 JASMYBTC-202112 CHRBTC-201904 BCHABCBTC-202003 DUSKBTC-202107 IRISBTC-201908 ETHBEARBTC-202111 YFIUPBTC-202110 BCHSVBTC-202012 XLMDOWNBTC-201903 LINKDOWNUSDT-202109 NCASHUSDT-202109 BQXBTC-202101 ETCBTC-202007 RCNBTC-202101 BARBTC-202010 BICOBTC-201903 TOMOBTC-201901 TKOUSDT-202108 BTCUPBTC-202001 ORNUSDT-202106 ERDBTC-202010 POLYUSDT-202108 NMRBTC-201901 BTCBUSDT-202106 WRXBTC-201912 NXSBTC-202101 DCRBTC-201904 DOGEBTC-202105 TOMOBTC-202009 EPSUSDT-202108 FILUPUSDT-202109 PERPUSDT-202103 REEFBTC-201904 INJBTC-202106 LINABTC-202006 LOOMBTC-202111 MBLBTC-202201 ICPBTC-202101 BTTCBTC-201909 ALGOBTC-202102 BLZBTC-201901 HBARBTC-202111 EZBTC-202106 CFXBTC-202103 CHZBTC-201911 YGGBTC-201904 AAVEUPBTC-201910 UMABTC-202012 MITHBTC-202102 ALICEBTC-201908 QUICKBTC-202001 VENBTC-202012 FLUXBTC-202102 QNTBTC-202003 NPXSBTC-202103 MBOXBTC-201908 MTLBTC-202201 SOLBTC-201909 MDXBTC-201911 ANYBTC-202006 FLOWBTC-202112 QLCBTC-202111 IMXUSDT-202111 WNXMBTC-201910 XLMDOWNUSDT-202108 AGLDBTC-202111 GLMBTC-201910 JSTBTC-201903 UTKBTC-202104 AUCTIONBTC-201904 EOSBEARBTC-202005 CVCBTC-202107 AIONBTC-202009 TKOBTC-202102 FUNUSDT-202108 DARBTC-202106 AXSBTC-202009 MDABTC-202003 QTUMBTC-202107 NPXSBTC-202012 BTTCBTC-202103 TVKBTC-201906 CTKBTC-202006 XRPBULLBTC-202004 SOLBTC-202004 ARNUSDT-202108 NAVBTC-201901 GOBTC-202007 BTTCUSDT-202109 STEEMUSDT-202106 MANABTC-202104 TKOUSDT-202111 OAXBTC-201904 HIGHBTC-201902 ALICEBTC-201912 XZCBTC-202102 SUSHIBTC-202006 NEARBTC-201911 VIBBTC-201908 FILDOWNUSDT-202111 TRBBTC-202005 CELRBTC-202102 WANUSDT-202109 SCRTBTC-202004 ETCBTC-202105 LAZIOBTC-201908 CMTUSDT-202108 BTSUSDT-202109 ATMBTC-202012 NPXSBTC-201906 KNCBTC-202008 LITUSDT-202108 MCOBTC-201907 CHZBTC-202105 EZBTC-202109 1INCHDOWNBTC-201905 STEEMBTC-202007 ZILBTC-202112 CVCBTC-202009 XVSBTC-202111 VIBBTC-202004 SUSHIDOWNBTC-202006 DODOBTC-201905 XVGBTC-202108 EGLDBTC-202110 XECUSDT-202111 DATABTC-201905 EZBTC-201912 IMXBTC-201912 FARMBTC-202010 LINKUPBTC-201907 GLMUSDT-202106 GASBTC-202112 BOTBTC-202002 IRISBTC-202003 UTKBTC-202011 DAIUSDT-202103 RGTBTC-202008 BARBTC-201909 ETHBEARBTC-202012 IDEXBTC-202004 LOOMUSDT-202106 APPCBTC-202201 LOKABTC-202106 RNDRBTC-202008 ACHBTC-201911 NANOBTC-201908 BTCUPBTC-201903 XLMDOWNBTC-202002 BTCBBTC-202111 RGTBTC-201912 COSBTC-202102 DOTUPBTC-202108 SUPERBTC-201909 SOLBTC-202107 STRATBTC-201907 JUVBTC-201903 OOKIBTC-201902 BONDBTC-202109 FIOBTC-202105 RENUSDT-202111 CAKEBTC-202112 YOYOUSDT-202108 PIVXBTC-201912 TORNBTC-202005 GRSBTC-201907 VIABTC-202011 MDABTC-202110 FLUXBTC-202107 XTZDOWNBTC-202102 IOTXBTC-202004 ARPABTC-201904 ATABTC-202109 CTXCBTC-202005 JOEUSDT-202109 EGLDBTC-202002 ROSEBTC-201909 SCBTC-202107 PHABTC-202105 HCBTC-202106 IRISBTC-202110 BNBBEARBTC-202110 BOTUSDT-202103 ALPINEBTC-202009 LENDBTC-202011 BATBTC-202007 ADAUPUSDT-202108 ONEBTC-202106 DNTBTC-202106 ONTBTC-202010 SUSDBTC-201902 LAZIOBTC-201909 PYRBTC-202012 ANCBTC-201907 FORBTC-202102 RGTBTC-202005 CELOBTC-202112 NBSBTC-202006 BRDBTC-202103 FUNBTC-202110 RAMPBTC-202104 ENGBTC-202201 WAXPBTC-202102 AUDIOBTC-202106 WANBTC-201910 CHZBTC-201904 ROSEBTC-202107 OGBTC-202002 AVABTC-202011 EOSBULLUSDT-202107 SXPUPBTC-201912 FILUPBTC-201909 IRISBTC-202008 NMRBTC-202006 SANDBTC-202009 AVABTC-202005 CVXBTC-202105 CELOBTC-201902 KAVABTC-202009 UMABTC-202105 XECBTC-202108 DNTBTC-201901 XRPDOWNUSDT-202107 DIABTC-202011 ALPHABTC-202012 FIOBTC-202007 BOTUSDT-202107 LAZIOBTC-201912 UMABTC-202102 OOKIBTC-202111 ACHBTC-201901 FLUXBTC-202005 APPCBTC-201903 KEEPBTC-202009 UTKBTC-202001 BCHUSDT-202107 YFIUPBTC-202112 BCNUSDT-202103 DCRBTC-201902 USDSBBTC-202109 BNBDOWNBTC-201903 BUSDUSDT-202109 RPXBTC-202001 ICNUSDT-202109 CTKBTC-202110 QTUMUSDT-202103 ENJBTC-201909 PHBBTC-202006 CLVBTC-202012 FTMBTC-202108 INSBTC-202108 TOMOUSDT-202111 DLTBTC-201909 REPBTC-202012 XTZUPUSDT-202106 SALTBTC-201911 ETHUPBTC-201901 MODBTC-202004 SXPBTC-201912 LTOBTC-202103 SKLBTC-201910 YOYOBTC-202103 HARDBTC-202001 WINGBTC-202011 BADGERBTC-201908 XNOBTC-202109 OOKIBTC-202008 IDEXUSDT-202106 TORNBTC-201909 BNBDOWNUSDT-202111 UNIDOWNBTC-202004 SUPERBTC-202102 TROYBTC-202107 XLMBTC-202110 GXSBTC-201911 KAVABTC-202111 BICOBTC-202010 WINGBTC-202201 SUNUSDT-202103 MDABTC-202104 XRPUPBTC-202001 VETBTC-202005 ORNBTC-201910 MCBTC-202012 KP3RBTC-202102 AGIXBTC-202006 LAZIOBTC-202010 LTOBTC-202005 1INCHDOWNBTC-202008 LUNABTC-201904 LUNABTC-202101 LITBTC-201902 BICOBTC-202106 LUNABTC-202110 ICXBTC-201906 LTCDOWNUSDT-202107 COTIUSDT-202109 CKBUSDT-202109 MCOBTC-201908 CKBUSDT-202111 SPELLBTC-202003 YFIDOWNUSDT-202111 YFIDOWNBTC-202006 BKRWBTC-202111 BCHDOWNUSDT-202108 BEARBTC-202201 DGDBTC-202103 ARNBTC-202102 PERLBTC-202103 PONDBTC-202108 HNTBTC-201904 ETHDOWNUSDT-202109 OGNBTC-201910 ETHBULLBTC-202007 OMBTC-202108 JSTBTC-201901 CNDBTC-202006 TROYBTC-201901 CFXBTC-202001 UMABTC-201907 THETABTC-201912 TRIGBTC-201909 POLYBTC-201912 OXTBTC-202012 DAIBTC-201901 SXPBTC-202004 BICOBTC-201909 NXSBTC-202004 NULSBTC-202010 BTCDOWNBTC-202007 GNOBTC-201908 RLCBTC-202103 SHIBBTC-202109 ICNBTC-202011 AAVEUPBTC-202102 BICOBTC-202006 LOKABTC-202112 ETHBULLBTC-202002 QLCBTC-202007 DOTDOWNBTC-202106 INJUSDT-202109 BTCBBTC-202004 OAXBTC-202103 EPSBTC-201901 FRONTBTC-202008 YFIDOWNBTC-202002 WAVESBTC-202105 TFUELBTC-202007 FISBTC-202103 APPCBTC-201909 NMRBTC-202009 ADAUPBTC-201907 SNXBTC-201905 AUDIOBTC-202102 CNDBTC-201908 AUCTIONBTC-202104 NUBTC-202111 PNTBTC-202001 LOKABTC-202004 MODBTC-201911 QNTUSDT-202106 KNCBTC-201902 RAREBTC-201908 LUNABTC-202108 BCHDOWNBTC-202103 HOTBTC-202109 PHABTC-202110 FXSBTC-202002 ETHBTC-201906 SANTOSBTC-202110 NCASHBTC-202011 NXSBTC-201910 ELFBTC-202201 TRBUSDT-202111 MATICBTC-201903 LAZIOBTC-201904 FORTHBTC-202012 GVTBTC-202001 BTCDOWNBTC-201906 INJBTC-202012 XNOBTC-202007 DOGEUSDT-202103 BTCBBTC-202005 ERNBTC-202102 PSGBTC-202006 ERDBTC-202102 KSMBTC-201901 UTKBTC-202002 TNBBTC-202010 ETHUPBTC-202006 SUSDBTC-202101 LITBTC-202101 DGDUSDT-202107 LOOMBTC-202012 HBARBTC-202108 XRPUPBTC-201911 NEOBTC-201910 1INCHBTC-201905 POABTC-202104 SXPDOWNBTC-202006 BURGERBTC-201910 BTCSTBTC-202009 COMPBTC-202003 BNBBEARBTC-202201 NANOBTC-202103 DLTBTC-202108 FILBTC-201903 FUELBTC-201904 CVXBTC-202201 DODOBTC-202005 CVXUSDT-202111 CLVUSDT-202108 STXBTC-201912 ALGOBTC-201901 NEOBTC-201909 SLPBTC-202108 DAIBTC-202009 POEBTC-202102 VENUSDT-202103 MDXBTC-202102 BICOBTC-202107 HOTBTC-202101 KP3RBTC-202108 BCCBTC-201902 BEAMBTC-202112 NULSBTC-202112 1INCHUSDT-202103 SKYBTC-201910 SCUSDT-202106 FUNUSDT-202103 BNTBTC-201908 BAKEBTC-201912 ACHBTC-202007 KNCBTC-202011 DOTUPBTC-202201 CRVBTC-201910 FILBTC-201905 DNTBTC-202011 MCOBTC-202009 BNXBTC-202105 BURGERBTC-202111 1INCHBTC-202105 KEYBTC-201908 ZRXBTC-202011 MCBTC-202112 HIVEUSDT-202111 TLMBTC-201907 YFIIBTC-202101 CITYBTC-202002 WTCBTC-201907 LOKABTC-201907 WPRBTC-201911 ARKBTC-201908 MANAUSDT-202111 PIVXBTC-202111 RAMPBTC-201907 PSGBTC-201904 KSMBTC-202005 IDEXUSDT-202111 WANBTC-201911 MKRBTC-202106 DYDXBTC-201906 HOTBTC-202011 FILUPBTC-202003 EOSBTC-201905 EURBTC-202110 VTHOBTC-201904 RPXBTC-202002 VITEBTC-202201 QNTBTC-201906 ACABTC-201902 ZENUSDT-202109 LUNABTC-202011 WANBTC-202011 KSMBTC-202009 AUDUSDT-202108 EPSBTC-202107 FLMUSDT-202111 PPTBTC-201912 NANOUSDT-202103 HOTBTC-201909 CHZBTC-202007 AGIXUSDT-202109 HCBTC-202004 QNTUSDT-202103 FUNUSDT-202106 FISBTC-202010 AAVEBTC-202009 NEARBTC-201903 BTCBTC-202011 CAKEBTC-202009 IDEXBTC-201911 NULSUSDT-202111 BTCSTBTC-201901 ADXBTC-202007 ENJUSDT-202108 BNBUPBTC-202012 KLAYBTC-202005 BATBTC-202002 WOOBTC-202111 YFIBTC-201902 DAIBTC-202111 EOSDOWNBTC-202112 GVTUSDT-202108 SUSHIUPBTC-201907 FUELUSDT-202108 SUNBTC-202103 DFBTC-202111 ANCBTC-201910 VOXELBTC-201904 KLAYBTC-202101 SUSHIDOWNBTC-202110 OMGUSDT-202108 UNIUSDT-202107 RADBTC-202110 CELOBTC-202102 BNBUPBTC-202004 CELRUSDT-202106 COTIBTC-202101 LPTBTC-202105 VIBUSDT-202107 SKLBTC-202009 ERNBTC-202201 RSRUSDT-202111 BCHBTC-202012 1INCHUPBTC-202006 CRVBTC-202107 XTZBTC-201912 VIBEBTC-202110 ARNBTC-202003 HIGHBTC-202002 MOVRBTC-201903 FLMBTC-201905 ZILBTC-201903 EGLDUSDT-202106 SALTUSDT-202106 MLNBTC-202106 OGUSDT-202109 ATMBTC-202101 ACABTC-202106 JUVUSDT-202108 ETHBULLUSDT-202108 EPSBTC-202005 BNBBULLBTC-202005 POLSBTC-202104 AXSBTC-202005 EOSBEARBTC-202107 BADGERBTC-202108 AERGOBTC-202010 PAXGBTC-202101 AUCTIONBTC-202003 BNXBTC-201901 QIBTC-202103 OGUSDT-202108 DUSKBTC-202001 ALGOBTC-202201 POWRBTC-202111 SOLBTC-202005 AUDBTC-202106 ETHBTC-201909 SNTBTC-202111 GXSBTC-202107 RCNBTC-202107 FARMBTC-202006 NASBTC-201908 TVKBTC-202104 PROMBTC-202109 BALBTC-202103 WINBTC-201908 NKNBTC-201902 SNTBTC-202101 FLOWBTC-202009 BCHSVBTC-202106 ALPHABTC-201910 BCHABCBTC-202111 BTCSTBTC-202101 DOCKUSDT-202109 XRPUPBTC-201901 BCDBTC-202105 RPXBTC-202004 GBPBTC-202002 MFTBTC-202102 ALCXBTC-202111 LTCUPBTC-202107 BCNBTC-202109 EASYUSDT-202109 MDABTC-202010 NEARUSDT-202108 FISBTC-202007 LITUSDT-202103 WOOBTC-202105 XTZBTC-201908 AKROBTC-202108 TORNBTC-201902 AXSBTC-202011 GRTBTC-202004 USDSBBTC-202108 ICNBTC-202110 BCHUPBTC-202112 RAMPBTC-202009 IOTABTC-202007 WBTCBTC-202110 DODOBTC-201909 LTCDOWNBTC-202003 KEEPUSDT-202103 LTCDOWNBTC-202112 MASKBTC-202003 PYRBTC-202201 RCNUSDT-202108 IRISBTC-202106 YGGBTC-201912 ADABTC-201905 CDTBTC-202010 CNDBTC-201909 BNBBTC-201905 CVCUSDT-202107 USDSUSDT-202109 DCRBTC-202010 STRAXBTC-201911 MTLBTC-202105 DFBTC-202008 ALGOBTC-202012 MCUSDT-202111 AGIXBTC-202112 CITYBTC-202004 ASTBTC-202010 CLOAKBTC-201910 BOTBTC-201911 FLOWBTC-202101 SUSHIBTC-202105 SFPUSDT-202111 OMGBTC-202110 UNIDOWNBTC-201906 ADAUPBTC-201904 ALICEBTC-202012 WINGSBTC-201909 USDPBTC-202104 WAXPBTC-202012 RCNBTC-202001 STRATBTC-201905 TOMOBTC-202003 GNTBTC-202002 SKYBTC-202105 EOSBTC-202112 LPTBTC-202201 STORMBTC-201903 USDCBTC-201907 MDAUSDT-202111 ORNBTC-202109 GTOBTC-201912 POEBTC-201910 GLMRBTC-202004 PHXUSDT-202107 RNDRBTC-202109 EDOBTC-201910 CKBBTC-202112 GTOBTC-202009 FIOBTC-201906 GBPBTC-202102 VENBTC-202108 DARBTC-202005 ANKRBTC-201908 ICNBTC-202111 RGTBTC-202106 ONTBTC-201910 ADABTC-202102 ARDRBTC-202001 XTZBTC-202201 TLMBTC-202104 VTHOBTC-201907 AMPBTC-202101 AKROUSDT-202111 DENTUSDT-202111 GLMBTC-201902 ONTBTC-202106 ALPINEBTC-201901 LRCBTC-201911 OXTBTC-202103 GBPBTC-202110 QSPBTC-202201 DREPBTC-201904 AAVEBTC-201903 BTCDOWNBTC-202105 ANTBTC-201908 BNBUPBTC-201910 ACMBTC-202012 DUSKBTC-202201 AGIBTC-202102 ICXBTC-202104 EDOBTC-201908 GHSTBTC-202105 ARBTC-201908 VENBTC-201903 BADGERBTC-202103 BCPTBTC-202004 C98BTC-202104 OMBTC-202109 CAKEBTC-201904 ENJBTC-202007 SXPDOWNBTC-202108 FRONTBTC-201902 ASTBTC-201908 SOLBTC-202008 QLCBTC-202104 MCOBTC-202201 BOTBTC-202007 WINBTC-202001 BETABTC-201910 OCEANBTC-202107 LINKUPBTC-202108 GOBTC-202003 WTCBTC-202007 COMPBTC-202105 FXSBTC-202102 MINABTC-202112 SOLBTC-201901 API3BTC-202109 WAXPBTC-202011 KEYBTC-202012 UNIDOWNBTC-202009 C98BTC-201906 DCRBTC-202110 DOTDOWNBTC-202005 TORNBTC-202001 STEEMUSDT-202111 WAXPBTC-202112 ETHDOWNUSDT-202106 ADABTC-202103 EOSUPBTC-202112 HOTBTC-202009 AXSBTC-202104 SHIBBTC-201906 GLMBTC-201912 HNTBTC-202110 GASBTC-202105 SPELLBTC-202107 YOYOBTC-201901 UTKBTC-202107 TRUBTC-201906 CTXCBTC-202006 LTCUPBTC-202004 WOOBTC-202108 FLMBTC-202107 PROMBTC-202107 POEBTC-202108 FORTHBTC-201907 QTUMBTC-201906 ARPABTC-201908 ONEBTC-202101 BCHABCBTC-201906 VITEBTC-201911 SSVBTC-201901 XRPBEARBTC-202008 CLOAKBTC-202005 GNOBTC-202002 WBTCBTC-202104 PYRBTC-201912 DODOBTC-202102 SUNBTC-201909 1INCHUPBTC-202112 FILUPBTC-202010 MCOBTC-202007 ANYBTC-202103 DIABTC-201912 KEYBTC-201910 ALPHABTC-202112 ATOMUSDT-202107 IOTXBTC-201904 CHATBTC-201911 APPCBTC-202102 TROYBTC-202104 FUELBTC-202012 FXSBTC-202101 JOEUSDT-202103 DFBTC-201902 PAXBTC-202104 POLYUSDT-202109 SNGLSBTC-202111 OAXBTC-201903 XTZDOWNUSDT-202107 XLMUSDT-202103 ADXBTC-202201 GLMRBTC-201908 FXSBTC-201905 STORJBTC-202012 DOCKBTC-201904 WOOBTC-202101 BARBTC-201910 BARBTC-201904 BNBBEARBTC-202112 QUICKBTC-202105 FUNBTC-201904 TUSDBTC-202104 RIFBTC-202102 DOGEBTC-201907 ONEBTC-202104 TRXBTC-201910 ICNBTC-202106 PONDUSDT-202108 TOMOBTC-202109 BNBBTC-202103 MASKBTC-202105 EZBTC-201902 MITHBTC-201906 ALPACABTC-202111 SXPUPBTC-202110 FTTBTC-202106 TFUELBTC-202112 AERGOBTC-202112 STEEMBTC-201912 CMTBTC-201911 LENDUSDT-202108 ACMBTC-201910 STRATBTC-201903 GHSTBTC-201904 LTOBTC-202011 SUSHIDOWNBTC-202108 YFIUPBTC-202105 SUNBTC-202110 EDOBTC-201906 DATABTC-202012 KMDBTC-202106 OAXBTC-201902 XVGUSDT-202109 MKRBTC-202009 DYDXBTC-202002 FLOWBTC-202010 QSPBTC-202101 BATBTC-202009 LTOBTC-201910 ALPACAUSDT-202106 IOTXUSDT-202108 1INCHDOWNBTC-202201 BALUSDT-202107 FETBTC-202011 JASMYBTC-202103 TRUBTC-202103 OSTUSDT-202108 XEMUSDT-202103 BOTBTC-202105 OXTBTC-202011 LENDBTC-201903 PAXGBTC-202002 LUNABTC-202003 MINABTC-202012 ANKRUSDT-202109 OGBTC-202201 BTGUSDT-202103 BTCBBTC-202103 XLMBTC-202103 TFUELBTC-202010 AAVEDOWNBTC-201911 ATAUSDT-202108 XZCBTC-201904 HNTBTC-201906 LRCBTC-202003 ALPHABTC-202107 DAIUSDT-202106 SPELLBTC-202201 ACABTC-202105 ETCUSDT-202111 BTCSTUSDT-202107 CHESSBTC-202103 BUSDBTC-202110 XLMUPBTC-202101 GXSBTC-202002 UNIDOWNBTC-202011 BNBBEARBTC-202008 AAVEUPBTC-202110 FILUPBTC-202004 KEEPBTC-202109 ANKRUSDT-202108 BKRWUSDT-202103 AVABTC-202107 COMPUSDT-202108 CLOAKBTC-202106 FLOWBTC-202103 AERGOBTC-202005 ADXBTC-202011 DLTBTC-201906 WANBTC-201902 CHESSBTC-202110 MODBTC-202111 SUSHIDOWNBTC-202106 BQXBTC-202107 BICOBTC-202108 RAMPBTC-202107 TNTBTC-202108 USDSBBTC-201902 DOGEBTC-202010 AAVEUPUSDT-202106 EOSBULLBTC-202003 OGNBTC-202103 USTBTC-201912 LUNBTC-202007 XTZBTC-202104 MASKBTC-202110 BICOBTC-202009 LPTBTC-201906 ACHBTC-202112 AXSBTC-202101 INSBTC-201908 MIRBTC-201908 RENBTCBTC-202001 1INCHBTC-202002 CTXCBTC-201906 BAKEBTC-202110 ALGOBTC-202003 ETHDOWNBTC-202101 KLAYBTC-201906 MTHBTC-202005 RSRBTC-201910 CMTBTC-201906 FTTBTC-202006 NXSBTC-202109 MASKUSDT-202106 AUTOBTC-202001 RENBTCBTC-201911 BNXBTC-202102 ASTBTC-202012 ANKRBTC-202001 CFXUSDT-202108 MASKBTC-202107 OGUSDT-202107 BNBBEARBTC-201912 BCCBTC-202012 ICNBTC-202112 NEBLUSDT-202103 PEOPLEBTC-202006 WABIBTC-202004 CLVBTC-202201 BLZBTC-201906 VIDTBTC-202005 BCCBTC-202106 OGBTC-201909 NBSBTC-202105 STORJBTC-202107 ENSBTC-202005 NEOBTC-202105 ILVBTC-202103 MDXBTC-201905 MBOXBTC-202103 CMTBTC-202012 ARNBTC-201905 POLSBTC-202101 C98USDT-202107 SNMBTC-202107 MCUSDT-202109 MCOBTC-202010 RAREUSDT-202106 ANCUSDT-202111 BCCBTC-202102 STMXBTC-202011 LOKABTC-201912 MTHBTC-202003 EOSBTC-201908 ARNBTC-202002 GLMRBTC-202011 RAYBTC-202107 WINGBTC-202111 BNBUPBTC-202102 BOTBTC-202001 CTXCBTC-202108 JASMYBTC-201902 XRPBTC-202106 AUTOBTC-201902 WINGBTC-202009 PONDBTC-202012 CLOAKBTC-202001 DARBTC-202104 RDNBTC-202107 PHXBTC-202106 REEFUSDT-202111 LSKBTC-201905 ATOMBTC-202009 SUNBTC-202109 CTXCBTC-202111 BCHUPBTC-202011 FLOWUSDT-202107 BNBUSDT-202111 BCHUPBTC-202002 QNTBTC-201912 ENJBTC-202008 WTCBTC-202003 WINBTC-202109 OSTUSDT-202106 AGIBTC-202002 XRPDOWNUSDT-202109 GOBTC-202101 CITYBTC-202011 FTTBTC-202101 AXSBTC-202107 PHABTC-202004 OGBTC-202001 SCRTBTC-202112 BTCBTC-201907 AAVEUPBTC-202002 STORMBTC-202005 CITYBTC-202007 ARBTC-202012 ARDRBTC-202004 SXPDOWNBTC-202003 BANDBTC-201905 TVKBTC-202008 TRIBEBTC-202008 CLVBTC-201912 AUTOUSDT-202107 TCTBTC-202104 PHXBTC-202004 SXPUPUSDT-202106 BNBDOWNBTC-201911 DEGOUSDT-202108 OAXBTC-201911 BUSDUSDT-202107 STRATBTC-202105 FTMBTC-202102 USDSBTC-202012 RGTBTC-202007 XLMDOWNUSDT-202111 VENBTC-202002 NEOBTC-202005 GTCBTC-202001 XLMUPUSDT-202108 GOBTC-202012 VOXELUSDT-202111 KP3RBTC-202111 DAIBTC-201905 LTCUSDT-202107 ACABTC-202102 SXPUPBTC-202010 MOVRBTC-202112 BULLBTC-202103 EDOBTC-202012 TLMBTC-202106 DGBBTC-202003 CKBBTC-201905 WPRBTC-202007 RENBTC-202006 WPRBTC-202103 IOSTBTC-201906 QUICKBTC-202109 BICOBTC-201911 HIVEBTC-202007 TRXUPBTC-201904 FTMBTC-201903 XTZDOWNBTC-201905 BTCDOWNBTC-201908 LTCUSDT-202108 WANBTC-201901 USDCUSDT-202111 CLOAKBTC-201909 WINBTC-202003 CMTBTC-202201 XECBTC-202006 LSKBTC-201904 ETHUPUSDT-202103 BICOBTC-202012 DOCKBTC-202101 MANAUSDT-202106 CNDBTC-202101 LTCUPBTC-201908 TUSDUSDT-202106 MBOXBTC-202201 EURBTC-202107 GLMUSDT-202108 SUBBTC-202008 BURGERBTC-202110 REQBTC-201903 ARBTC-202008 SUSDBTC-202008 XVGBTC-202007 FIOBTC-202103 BTCBTC-202001 SKLBTC-202110 BAKEBTC-202105 ASTBTC-202001 MFTBTC-202108 LITBTC-201911 WPRBTC-202010 PUNDIXBTC-202012 ADADOWNBTC-202108 ZRXBTC-202107 STRAXBTC-202108 SOLBTC-201902 PUNDIXUSDT-202107 SFPUSDT-202109 SANTOSBTC-202112 QSPBTC-202107 XVGBTC-202001 NULSBTC-201901 RLCBTC-201911 AVAUSDT-202109 ALPACAUSDT-202108 ROSEBTC-201901 ICPBTC-202108 SSVBTC-201909 SKYBTC-202012 NASUSDT-202108 DOTUPBTC-202110 WINBTC-202108 PORTOBTC-202201 RCNBTC-202104 NUBTC-202012 BTCDOWNBTC-201912 KNCUSDT-202107 ADADOWNBTC-202110 CRVBTC-202112 CHZBTC-201908 BTCBBTC-202201 FIDABTC-201911 SUSHIBTC-202104 NKNBTC-202102 BNBUPUSDT-202111 MDABTC-201910 DOTBTC-202201 XLMUPUSDT-202111 USDCBTC-201909 JUVBTC-202105 EOSBTC-202011 RPXUSDT-202103 BCCBTC-201904 OAXBTC-201910 BQXBTC-202002 KP3RBTC-202005 BALBTC-202109 LUNUSDT-202108 BCCBTC-202109 RGTBTC-202201 WRXBTC-202001 CHATBTC-202012 XTZUSDT-202111 API3BTC-201901 FUELBTC-202006 FTMUSDT-202109 MCOUSDT-202103 CHRUSDT-202107 CFXBTC-202110 GNOBTC-201912 1INCHUPBTC-202001 XRPBEARBTC-202004 ETHBTC-202011 GNTBTC-201906 OMBTC-202012 BCNBTC-201903 ARNBTC-202007 LTCBTC-202011 XRPBULLBTC-201907 STORJBTC-202005 TOMOBTC-201912 XLMUPBTC-202107 BULLBTC-202009 PHABTC-201903 1INCHBTC-202008 BCNBTC-202011 YFIIUSDT-202111 AAVEBTC-201906 BELBTC-202102 PORTOBTC-202112 PAXBTC-202011 SXPBTC-202103 XLMBTC-202104 CHATBTC-202009 CTSIBTC-202011 DOTUPUSDT-202107 BETAUSDT-202106 NEBLBTC-201901 ANCBTC-202003 LTCUPBTC-201906 DARBTC-202008 MBLBTC-201905 TVKBTC-202002 PAXBTC-202102 WBTCBTC-201908 AGIBTC-201904 VIBEBTC-201910 WANBTC-202012 QLCUSDT-202108 STORMUSDT-202109 QSPBTC-202104 MDXBTC-202001 ENSBTC-202011 ZILBTC-202110 GLMRBTC-201903 ANTUSDT-202103 ONGUSDT-202108 ICXUSDT-202106 TROYBTC-201903 DASHBTC-202112 ARKBTC-202103 FILDOWNBTC-202005 MDTBTC-202007 FORTHUSDT-202108 NPXSBTC-201911 BTCUPUSDT-202107 BCNBTC-202004 STXBTC-202108 CDTBTC-202007 WINGBTC-202105 GLMRBTC-202111 STPTBTC-202110 XLMDOWNBTC-202007 IMXBTC-202007 XNOBTC-201904 BLZBTC-202007 BNBBULLBTC-201909 DGBBTC-202112 SRMBTC-202008 FUNBTC-202201 BCHDOWNBTC-202010 STMXBTC-202106 AGIXBTC-202008 BTCBTC-202106 ANCBTC-202111 PHXBTC-202108 ANTBTC-202006 RUNEUSDT-202107 BULLBTC-201912 BNBUPBTC-202008 EASYBTC-201907 LSKUSDT-202106 KNCBTC-202103 ETHDOWNUSDT-202108 LSKBTC-201912 CKBBTC-201911 FIOBTC-202106 ENGBTC-202109 XRPBEARBTC-201904 LPTUSDT-202111 LINKBTC-202106 GALABTC-202011 XLMUPBTC-202108 NPXSBTC-202007 EPSBTC-202006 WOOUSDT-202111 DUSKBTC-202106 JASMYBTC-202109 EOSBULLBTC-202004 WOOBTC-202107 SUSDBTC-202103 LTCDOWNBTC-202012 BNBBULLBTC-201912 WPRBTC-201902 NASBTC-201910 PAXGUSDT-202111 BAKEBTC-201909 FILUPBTC-202110 WAVESBTC-202112 SRMBTC-201910 MKRBTC-202102 LITBTC-202009 MKRUSDT-202107 XMRBTC-202006 POLSBTC-202005 BAKEBTC-201901 BNTBTC-202112 MBLBTC-201908 PONDBTC-202001 SFPBTC-202009 HIVEBTC-201907 RAYBTC-202002 POLSUSDT-202108 1INCHDOWNUSDT-202108 WINGBTC-202110 MCOUSDT-202106 MOVRUSDT-202109 AUDIOBTC-202006 GRSBTC-202002 INJBTC-201906 FRONTBTC-202201 MATICBTC-201906 1INCHDOWNBTC-201903 BNBBEARBTC-202010 NANOBTC-202010 NCASHBTC-201910 BCHUPUSDT-202107 KP3RBTC-202112 SUNBTC-201906 POLSBTC-202007 DOTUPBTC-201901 MDXUSDT-202107 BICOBTC-202103 ARBTC-202005 NBSBTC-202012 VIDTBTC-201906 RAREBTC-202003 TRBBTC-202101 PEOPLEBTC-201905 FLOWBTC-201904 BALBTC-202011 LOOMBTC-202201 PSGBTC-202104 TFUELBTC-202102 ALPHABTC-202201 WINBTC-202111 DARBTC-202009 AXSUSDT-202111 TNBBTC-202002 BALBTC-201903 RPXBTC-202108 ANYBTC-202007 BONDUSDT-202109 PUNDIXBTC-201911 FILUPBTC-202007 FILUPBTC-201908 ARNBTC-202109 CLVBTC-202007 ALPACABTC-202012 DATABTC-202104 INJBTC-202001 ATOMBTC-202108 SNGLSBTC-201912 BCHUPBTC-202101 ICNBTC-201911 KEYUSDT-202107 TUSDBTC-202009 DAIBTC-201907 SKYBTC-202108 KNCBTC-202010 AUDIOBTC-201907 DAIBTC-202102 RAYBTC-202102 SNMUSDT-202103 CITYUSDT-202111 RSRBTC-202003 POWRBTC-201911 GLMBTC-202111 SKYBTC-202005 STRAXBTC-202101 OOKIBTC-201912 ASTBTC-202004 NEARUSDT-202111 AMPBTC-201912 USDCBTC-201904 SRMBTC-202003 STRAXBTC-202105 SCBTC-202011 NCASHUSDT-202107 API3BTC-202107 THETABTC-201902 AVABTC-202008 DEGOBTC-201902 VIABTC-201908 WABIBTC-202007 BCNBTC-201909 NCASHUSDT-202111 ETHBTC-201908 BTSUSDT-202108 JUVBTC-201902 FISBTC-202009 POLSBTC-202201 KMDBTC-201902 ZECUSDT-202107 SALTBTC-202001 ADABTC-202006 KSMBTC-201912 LTCDOWNBTC-202011 BURGERBTC-202007 TKOBTC-202010 DOCKBTC-201906 BTCDOWNBTC-202110 PYRBTC-202010 GOBTC-201905 VITEBTC-202004 SOLBTC-202106 BNBBEARBTC-202103 ERNBTC-202004 DAIBTC-201911 ETHDOWNBTC-202112 ROSEBTC-202101 MDABTC-202201 LINKBTC-202105 TRIBEBTC-202104 WINBTC-202007 OXTBTC-202008 EURBTC-202109 DASHBTC-202107 COCOSBTC-202010 PAXGBTC-202007 ATOMBTC-202011 SUSHIBTC-202111 BADGERBTC-202003 PNTBTC-202004 DFBTC-201905 GASBTC-202106 CHESSBTC-202112 BZRXBTC-202101 WOOBTC-202201 GALABTC-202006 BQXBTC-201908 TRIGBTC-202003 KAVABTC-202102 LINKUPUSDT-202108 ZILBTC-202103 CTSIBTC-202102 KSMBTC-202102 MTLBTC-201904 PEOPLEBTC-202107 AAVEBTC-202003 TVKBTC-201909 NAVBTC-201905 AEBTC-201901 STPTBTC-202101 ETCBTC-201909 UNIUPBTC-201902 UTKBTC-201909 GXSBTC-201902 USDSBBTC-202112 PAXBTC-202201 CVPBTC-202104 BTGBTC-202012 CELOBTC-201903 XLMDOWNBTC-202004 DREPBTC-202201 PROMBTC-202007 VITEBTC-202005 NXSBTC-202107 DLTBTC-202103 KP3RBTC-201912 XRPBEARUSDT-202103 JASMYUSDT-202109 SCBTC-202106 SNXBTC-201903 BADGERBTC-201904 BETABTC-202012 XMRBTC-202107 SLPBTC-201907 WOOUSDT-202108 EPSUSDT-202109 DOTUPBTC-202002 OGBTC-202004 AXSBTC-202012 DODOBTC-201906 XRPDOWNBTC-202010 DATABTC-202007 BOTBTC-201909 AIONBTC-201908 ROSEBTC-201906 AKROBTC-202005 ANYBTC-202105 TLMBTC-202107 UMABTC-202005 LTCUPUSDT-202106 TROYBTC-201906 NMRUSDT-202108 OCEANBTC-202004 ALCXBTC-202005 EOSBTC-201912 ADABTC-201906 IMXBTC-201901 BARBTC-201902 PPTBTC-202106 ERDBTC-201904 FILBTC-202002 PYRBTC-202105 OAXBTC-202102 ORNBTC-201912 FARMBTC-202106 INJBTC-202110 ICNBTC-202105 TROYBTC-202102 BKRWBTC-201911 CDTBTC-202011 XRPBEARBTC-202109 BCDBTC-202002 LITBTC-202111 EGLDBTC-201901 APPCBTC-202004 WINGSBTC-202107 GHSTBTC-202011 GBPBTC-202109 NXSBTC-202003 MKRBTC-202003 REQBTC-201912 COMPBTC-202012 BNBBTC-202110 DOTUPBTC-201908 AMBBTC-202101 GRTBTC-202105 ERDBTC-202104 GNOBTC-202011 JUVBTC-202001 RENBTCUSDT-202108 TUSDBTC-202107 AIONBTC-201912 LINKUPBTC-202107 ATMBTC-202201 DASHBTC-202103 SSVUSDT-202107 DAIBTC-202012 HSRBTC-201905 UMABTC-201904 NAVBTC-202008 MASKUSDT-202111 USTBTC-202102 MOVRBTC-202105 DARBTC-201903 DENTBTC-202002 GRTBTC-202101 LTCBTC-202005 YFIBTC-202107 UNIBTC-202111 FUELBTC-201906 SOLBTC-201910 XLMDOWNBTC-202111 FIDABTC-202006 UTKBTC-201912 TNBUSDT-202103 GBPBTC-201908 SNGLSBTC-201911 ANYBTC-202102 XRPBULLBTC-202007 XRPBEARBTC-202010 BRDBTC-201908 ARPABTC-201910 WAXPBTC-202110 BCCBTC-201910 TRXDOWNBTC-202101 DGBBTC-202107 TRXDOWNBTC-202111 ALPHABTC-201903 C98USDT-202103 ANYBTC-201902 WPRBTC-201901 PSGBTC-202005 NEBLBTC-202101 AUDBTC-202105 WBTCBTC-202006 KAVABTC-202103 BCHDOWNBTC-202105 QIBTC-202108 MDTUSDT-202103 YFIIBTC-202008 FUELBTC-202003 NCASHUSDT-202106 HNTBTC-202008 BETAUSDT-202107 RUNEUSDT-202109 ANCBTC-202001 BNXBTC-202002 DOTBTC-201901 MBOXUSDT-202106 TNBBTC-202009 MBOXBTC-202003 DIABTC-202104 MTHUSDT-202108 SXPBTC-202010 ETHBEARBTC-202101 GALABTC-202102 BLZBTC-201902 GVTBTC-202010 TRXBTC-202107 RAMPBTC-202105 BKRWBTC-201908 SALTUSDT-202107 USDSBTC-202011 BQXBTC-201909 EVXBTC-202002 BCDBTC-202102 BTCUPUSDT-202109 ONEBTC-202007 RSRBTC-202010 ALICEUSDT-202103 1INCHDOWNBTC-202002 CVXBTC-201907 SKLBTC-202006 AXSBTC-201902 OGBTC-202009 CDTBTC-201910 KMDBTC-202102 LINABTC-202008 ZECBTC-201901 POABTC-201906 WNXMBTC-202112 DFBTC-202104 MLNBTC-201903 SANDBTC-202001 WNXMBTC-202004 STEEMBTC-202101 ICPBTC-201903 BNBDOWNUSDT-202109 HOTBTC-202007 BKRWBTC-202011 STORJBTC-201904 EOSDOWNBTC-202004 BCDBTC-202009 FISBTC-202105 HIGHBTC-202105 EOSBULLUSDT-202103 LPTUSDT-202108 OCEANBTC-202201 HOTBTC-202003 SKLBTC-202107 QTUMBTC-202002 BCCBTC-202002 MCOBTC-202109 TLMBTC-201901 HSRBTC-202103 XNOBTC-201910 ORNBTC-202009 VIAUSDT-202108 VENBTC-202011 LTOBTC-201901 SNXBTC-201909 AGIBTC-202107 WINGSBTC-202007 JOEBTC-202106 RENBTCBTC-201904 EZBTC-202110 XRPUPBTC-202201 RAREBTC-202104 JSTBTC-202201 REEFBTC-202201 RVNBTC-202106 AKROBTC-202011 DFBTC-202110 NCASHBTC-202007 MDABTC-201904 DENTBTC-202009 RCNUSDT-202111 XTZDOWNBTC-202103 ONGBTC-202110 ALGOUSDT-202106 PHBBTC-202003 INSUSDT-202107 TRIBEUSDT-202103 BRDUSDT-202108 SUSHIDOWNBTC-202003 FIROUSDT-202109 LINKDOWNUSDT-202103 CAKEBTC-202010 CHESSBTC-202104 VIABTC-201904 XNOUSDT-202109 PEOPLEBTC-201903 ATAUSDT-202111 STPTBTC-201904 VIBEBTC-202108 YFIDOWNUSDT-202106 ENSBTC-201908 FXSBTC-201910 MTHBTC-201901 PHBUSDT-202107 PPTBTC-201907 BELBTC-202109 EVXBTC-202004 DARBTC-202003 MLNBTC-202104 TORNBTC-202101 ADABTC-202105 TROYBTC-202110 BCHDOWNBTC-202008 ZRXBTC-202001 ZENBTC-201904 CHATBTC-201905 PNTBTC-201910 TNBBTC-202006 TORNBTC-201910 BNBDOWNBTC-202106 QIBTC-202002 TRIBEBTC-202010 SUSHIBTC-201909 FIROBTC-202005 COMPBTC-202005 DEXEUSDT-202107 ANKRBTC-202009 WNXMBTC-202012 BEARBTC-201909 FXSUSDT-202109 DOTUPBTC-202005 NCASHBTC-202201 MDTUSDT-202108 EOSDOWNBTC-201909 RAYBTC-201904 JASMYBTC-202108 SCBTC-202007 CITYUSDT-202106 LTCDOWNBTC-202201 FLMBTC-201911 LTCDOWNBTC-202103 DAIBTC-202101 AUCTIONBTC-202011 FILDOWNBTC-202108 AVABTC-201901 QIBTC-202004 COCOSBTC-202109 YFIDOWNBTC-202108 WRXBTC-201910 ZILBTC-201908 BATBTC-202101 MATICBTC-201910 GNOBTC-202006 ATMBTC-201910 HCBTC-201907 PLABTC-202008 WANBTC-201912 DIABTC-201903 GHSTBTC-202110 IRISBTC-202103 INJBTC-202111 YFIIBTC-202107 PLABTC-202012 FETBTC-202106 RSRBTC-201909 MDXBTC-202010 CVPBTC-202108 STXUSDT-202109 IOSTBTC-201912 PHXUSDT-202111 BTGBTC-201906 EZBTC-201908 STXBTC-201903 BCHABCBTC-202005 TNTBTC-201909 ARBTC-201907 MTLBTC-201907 SNXBTC-201912 EOSUPBTC-201908 STORJBTC-202109 NANOBTC-202111 SXPBTC-201906 TRXDOWNBTC-201905 SLPBTC-202107 BELBTC-201906 PHBBTC-201904 KLAYBTC-201909 MBOXBTC-201912 RAREBTC-202201 AAVEDOWNUSDT-202103 BCCBTC-202105 TLMBTC-201912 BCHDOWNBTC-202108 YFIIBTC-201908 YFIBTC-202201 1INCHUPBTC-202004 EPSBTC-201908 ETCBTC-202103 FLUXBTC-202105 TUSDBTC-202008 DGDBTC-202006 LTOUSDT-202109 IMXBTC-202102 XMRBTC-201902 VIABTC-202109 MDAUSDT-202106 LTOBTC-202201 DODOBTC-202008 OMBTC-201912 EOSBTC-202105 BARBTC-202108 POLYBTC-202012 DIABTC-202111 FILBTC-202006 EURBTC-202112 SUSHIDOWNBTC-201904 DOGEBTC-202106 XVGBTC-202103 COSBTC-202110 DOTUPBTC-202006 VOXELBTC-202109 POLYBTC-201901 AERGOBTC-202106 GXSBTC-202105 NCASHBTC-202106 SUSDBTC-201905 EASYBTC-202002 SUPERUSDT-202111 TLMBTC-201908 FXSBTC-202003 ARKUSDT-202106 IMXBTC-202003 BATBTC-202010 NULSBTC-202002 XRPBEARUSDT-202107 API3BTC-201903 DYDXBTC-201902 COTIBTC-202002 POWRUSDT-202109 BNBDOWNBTC-202010 LINKUPBTC-202008 MFTUSDT-202109 ANTBTC-202101 GOBTC-202005 PORTOBTC-202102 AMBBTC-201911 BTTBTC-201902 ALPHABTC-201907 BTCBBTC-201906 ZECBTC-201910 TNBBTC-201904 CHRBTC-201905 ANYBTC-202012 ICXBTC-201908 WNXMBTC-202002 IOTXBTC-201901 ENJBTC-201910 NULSBTC-202102 TWTBTC-202011 ZRXBTC-201904 1INCHBTC-201909 EVXUSDT-202103 IOSTBTC-202102 VETBTC-202004 BARBTC-201905 GVTBTC-202104 FRONTBTC-202104 VOXELBTC-202101 KNCBTC-201909 AEBTC-202111 ETHDOWNBTC-201903 GLMUSDT-202107 USTBTC-201907 ANKRUSDT-202106 INJBTC-202010 DATABTC-202112 ACMUSDT-202111 BZRXBTC-202003 WRXBTC-202012 SKLBTC-201904 DFBTC-201904 TRUBTC-202010 BCNBTC-202106 BOTBTC-201907 SCRTBTC-201907 BNBUPBTC-202108 HSRBTC-202008 NBSBTC-202010 DASHBTC-202002 XRPBEARBTC-201911 SXPDOWNBTC-202109 WAVESBTC-201909 ETHBULLBTC-202006 TUSDBTC-202004 XTZDOWNBTC-202012 OOKIBTC-202101 HSRUSDT-202103 HARDBTC-202010 ACHBTC-201907 ARNBTC-202011 HBARBTC-202009 BAKEUSDT-202106 BTCDOWNBTC-202003 VIBBTC-202011 XVSBTC-202201 SFPBTC-201911 TORNBTC-202107 ARNBTC-201901 PNTBTC-202009 KEYBTC-201912 USDSBBTC-202004 CHATUSDT-202108 ONTBTC-201911 BNBBULLBTC-202009 OMGBTC-201910 CMTBTC-202103 TCTBTC-201912 LSKBTC-202111 LOKABTC-201911 FARMBTC-202002 QTUMBTC-202112 TRXDOWNBTC-201909 RLCUSDT-202111 XRPBULLBTC-202011 XRPDOWNBTC-202201 RGTBTC-201908 VETUSDT-202111 WABIBTC-202108 BNBBULLBTC-201903 BELUSDT-202108 EPSBTC-202010 NASBTC-202107 ARPABTC-201901 EASYBTC-202108 NEARBTC-201902 CLVBTC-202104 BOTBTC-201903 STPTUSDT-202108 ERDBTC-202002 WTCBTC-202107 ROSEBTC-202005 TFUELUSDT-202103 XTZBTC-202003 CVXBTC-201911 XTZDOWNUSDT-202108 SUSHIDOWNUSDT-202103 KSMBTC-202111 BOTBTC-202106 TOMOBTC-201905 XRPBTC-202201 XTZDOWNUSDT-202109 DOTDOWNUSDT-202107 YFIBTC-202007 HARDBTC-202103 DEGOBTC-202011 MBLBTC-202011 XMRBTC-202110 AIONBTC-201910 BALBTC-201905 ENSBTC-201905 WABIBTC-201910 SNGLSBTC-202101 AUTOBTC-202105 LUNAUSDT-202106 BZRXBTC-202012 PROMBTC-202002 WANBTC-201905 JSTBTC-202005 BTGBTC-201908 EOSBEARBTC-202105 USDPBTC-201905 SSVBTC-202107 SOLBTC-202103 BTTBTC-202007 ETCBTC-201904 SPELLBTC-202009 RENBTC-202003 WOOBTC-202009 ASRBTC-201911 WAXPUSDT-202107 NKNBTC-202006 NEOBTC-202004 BEAMBTC-202101 MODBTC-202001 UMABTC-201910 HSRBTC-201907 MIRBTC-201901 TNBBTC-202105 MBOXBTC-202107 BTCDOWNBTC-202002 VOXELBTC-201901 IDEXUSDT-202103 DCRBTC-201911 VIDTBTC-202009 XTZUPBTC-202009 ETHBEARBTC-201911 NUBTC-201902 KNCBTC-202006 NBSBTC-202109 USTBTC-201905 RVNUSDT-202107 BLZUSDT-202103 VOXELBTC-201906 RVNBTC-202004 EOSBTC-202103 BALBTC-201902 CHESSUSDT-202103 XRPBEARBTC-202110 GNOBTC-201905 ALPINEBTC-201912 GRSBTC-201909 POEBTC-202111 SLPBTC-202112 BTCDOWNBTC-202106 TRXDOWNBTC-201908 BICOUSDT-202106 ONEBTC-202004 BQXBTC-201904 VGXUSDT-202107 VGXBTC-202101 BCPTBTC-202002 TRXUPBTC-202004 GLMRBTC-202102 FIROBTC-201903 QTUMBTC-201908 QUICKBTC-202008 ENGUSDT-202109 DARBTC-201910 BNBBULLBTC-202103 BAKEBTC-202004 CMTBTC-201910 PAXUSDT-202109 POWRBTC-202011 GRSBTC-201905 FRONTBTC-202101 ANTBTC-202012 ASRBTC-202104 BTCBBTC-202108 JOEBTC-202112 SLPUSDT-202106 ONGUSDT-202106 HCBTC-201912 AUDIOUSDT-202107 MINABTC-201912 XLMBTC-201905 AIONBTC-202108 PORTOBTC-202106 PAXBTC-201903 OGBTC-202005 HIVEBTC-201912 ROSEBTC-202103 BADGERUSDT-202107 BATBTC-202107 SUNBTC-202003 ILVBTC-202012 ROSEBTC-201907 MASKBTC-202201 EOSBEARBTC-202002 AGLDUSDT-202108 HARDBTC-202004 LRCBTC-202005 GTOBTC-202010 GNTBTC-202012 ICPBTC-201901 HBARBTC-202109 BCCBTC-202108 BNTBTC-202108 ICPBTC-202107 NPXSBTC-202001 CNDBTC-202004 WNXMUSDT-202111 OMGBTC-202107 TRUBTC-202110 YFIUPBTC-202111 XZCBTC-201906 SALTBTC-202201 YFIBTC-201910 REEFBTC-202007 ATMBTC-201903 STMXBTC-201902 FTMBTC-202009 HIVEBTC-202001 BICOUSDT-202111 POABTC-201910 ALPACABTC-202110 NAVUSDT-202109 BARBTC-202109 AAVEDOWNBTC-201905 EURBTC-201909 COTIBTC-202201 QTUMBTC-202012 COCOSBTC-202101 STRAXBTC-202010 DEGOBTC-202108 ETHBTC-202002 AGLDBTC-201907 DEGOBTC-202010 DARBTC-202103 ICNBTC-202007 ARDRBTC-202003 SANDBTC-201901 XZCBTC-202010 ASRBTC-201905 DATABTC-201912 LOKABTC-202111 FTMBTC-202003 MCBTC-201907 AUCTIONBTC-202004 DREPBTC-202109 HIVEUSDT-202107 ZILBTC-202107 TFUELBTC-201912 BTCBBTC-201908 ANTBTC-202106 SUBBTC-202002 XRPBEARBTC-201903 LINKDOWNBTC-201902 BETABTC-201906 UTKUSDT-202109 TROYBTC-201910 TNTBTC-202104 BTGBTC-201901 ROSEBTC-202007 CTXCBTC-202105 AERGOBTC-201906 XRPBTC-201910 RUNEBTC-202109 AAVEDOWNBTC-202201 HIVEBTC-201906 PYRBTC-201904 FLUXBTC-202101 YFIBTC-201905 ETHUPBTC-201912 SLPUSDT-202107 BTTBTC-202107 BUSDBTC-202109 BCDBTC-202109 TRXBTC-201909 BTCBTC-202201 FISBTC-201906 BTCSTBTC-202109 ALPINEBTC-201904 TRXUPBTC-202010 STMXBTC-202004 XVSUSDT-202109 SALTBTC-202111 FILBTC-201901 RDNBTC-202007 DOTBTC-202101 RAYUSDT-202107 KEYBTC-201911 BETABTC-202102 EASYUSDT-202108 KLAYBTC-202107 OAXUSDT-202107 SANTOSBTC-201909 YGGBTC-202109 ADABTC-201904 CVXBTC-202003 REQBTC-202103 AAVEUSDT-202111 PROMBTC-201903 STRATBTC-201906 CELOBTC-202111 OMBTC-202007 SRMBTC-202201 WABIBTC-201909 QTUMBTC-202010 TRUBTC-202005 FRONTBTC-202001 MINAUSDT-202109 BURGERUSDT-202107 BATBTC-202201 DNTBTC-202112 NPXSBTC-202002 VGXBTC-202010 NEBLBTC-202007 ETHBEARBTC-201903 YFIDOWNBTC-202010 CELRBTC-202108 DAIBTC-202107 ONTBTC-202110 AKROBTC-202012 SUSHIUPBTC-202111 CHZBTC-201901 EASYUSDT-202106 PUNDIXBTC-202109 TORNUSDT-202111 BNTBTC-202001 SANTOSBTC-202009 BNBUSDT-202109 ENSBTC-202108 BTCDOWNUSDT-202107 VIDTUSDT-202108 TRIBEBTC-201908 PSGBTC-201903 SNXUSDT-202109 RPXBTC-201908 ADABTC-202008 ICXBTC-201902 ENJBTC-202002 BATBTC-202012 LENDBTC-202010 BZRXBTC-202005 EZBTC-202108 XECBTC-202011 ETHBTC-202105 RENBTC-202008 GNOBTC-202009 BRDBTC-202110 ONTBTC-202101 GRSBTC-202010 BETABTC-202003 FORTHBTC-201902 FIROBTC-202109 KAVABTC-201912 BZRXUSDT-202108 FORBTC-202111 IOTXUSDT-202106 WAVESBTC-202101 BZRXUSDT-202109 PEOPLEUSDT-202111 LSKUSDT-202103 COMPBTC-202108 GLMRUSDT-202107 INSUSDT-202109 LSKUSDT-202111 POLSBTC-202110 MCUSDT-202106 WTCBTC-202111 PPTBTC-201910 DLTBTC-202110 NXSBTC-202009 USDPBTC-202011 BALBTC-202110 MDTBTC-202104 SUNUSDT-202107 MIRUSDT-202109 CTXCBTC-202109 BETABTC-202110 GRTBTC-202201 BTTBTC-201909 XRPUPBTC-202006 EOSDOWNUSDT-202108 FARMBTC-202109 USTBTC-202108 CKBUSDT-202106 PNTUSDT-202103 THETABTC-202012 QLCBTC-202102 WTCBTC-201903 XRPDOWNBTC-202102 BEARBTC-202002 DYDXUSDT-202103 SYSBTC-201902 PUNDIXUSDT-202103 ALCXBTC-202003 1INCHUPBTC-202008 LRCBTC-202004 INSBTC-202103 ARPABTC-201912 BTGBTC-202110 QKCUSDT-202108 CDTBTC-201903 BANDBTC-201910 EZBTC-202101 ALPACABTC-201909 USDPBTC-201912 TNBBTC-202103 PAXBTC-202003 CMTBTC-201904 SUBBTC-201907 IMXBTC-202108 TLMBTC-201909 NEBLBTC-201903 RCNUSDT-202103 EDOBTC-202107 ALCXBTC-201901 TVKBTC-202011 ERDBTC-201912 ONEBTC-201906 MFTBTC-202106 BNXBTC-201905 WAVESBTC-201911 1INCHUPBTC-202102 STPTBTC-201903 STEEMBTC-202105 BTCBUSDT-202109 TCTBTC-202005 BQXBTC-202008 BTCUPBTC-202105 RADUSDT-202103 AKROUSDT-202107 BKRWBTC-202007 OMGBTC-202002 KEYBTC-202101 YFIDOWNBTC-202111 VENBTC-202106 CDTBTC-201912 QUICKBTC-202104 ATABTC-202005 RSRBTC-202110 RAMPBTC-202004 IOSTBTC-201901 ETHUPBTC-202104 TORNBTC-202003 MKRUSDT-202109 SSVBTC-202108 BEAMBTC-201907 BCHSVBTC-202002 TCTUSDT-202106 EOSUPBTC-202001 XTZUPBTC-202109 LTCBTC-202004 BCHDOWNBTC-202101 EURBTC-201904 HIGHBTC-201903 DARBTC-202006 NBSBTC-202102 AUTOBTC-201909 PEOPLEBTC-202201 RENBTCBTC-202006 BLZBTC-201903 BTCSTBTC-202002 SUPERBTC-202003 CKBBTC-202108 AIONBTC-202008 LTOBTC-202112 SCBTC-201908 ONGBTC-202108 XRPBULLBTC-201902 MTHBTC-201907 XRPUPBTC-202103 LRCBTC-202111 DUSKBTC-202011 LOKABTC-202201 CHATUSDT-202111 INSBTC-202009 HNTBTC-202003 WINBTC-202009 RSRBTC-202111 MINABTC-202101 TORNBTC-201911 EOSBTC-202005 ICXBTC-202004 ADABTC-201903 CTXCBTC-202002 ETHDOWNBTC-201908 BCPTBTC-201908 ANYBTC-202107 GLMRBTC-202010 NEBLBTC-202107 SANTOSBTC-201912 NPXSBTC-201912 BKRWBTC-201902 BETABTC-202106 ERNBTC-202002 SANTOSUSDT-202111 FORTHBTC-202109 BNBUPBTC-201908 COCOSBTC-202003 MCOBTC-202111 ILVBTC-202007 XTZBTC-201905 SNGLSBTC-202102 IMXBTC-202011 YOYOBTC-202105 PROMBTC-201909 XEMUSDT-202107 ERNBTC-201910 MFTBTC-202003 POLYBTC-202010 PPTBTC-202112 VIABTC-202201 XLMDOWNBTC-202101 AAVEBTC-201905 UTKUSDT-202111 API3BTC-202001 PHBBTC-202105 XVSBTC-201909 STRAXUSDT-202103 XECBTC-202102 DENTBTC-202007 BTCDOWNUSDT-202106 FIDABTC-202102 XECBTC-201902 AUCTIONBTC-201912 REEFBTC-202010 BEAMBTC-202001 XRPUPUSDT-202107 ENSBTC-202007 NMRBTC-202108 KAVABTC-202012 CVPBTC-202107 ASTBTC-202109 WBTCBTC-202106 BCHBTC-201912 BATBTC-202104 UNFIBTC-202106 GLMRBTC-202009 TRBBTC-202002 BZRXBTC-202108 VENBTC-202111 TRXBTC-202004 MKRBTC-201901 JUVBTC-202009 OCEANBTC-202009 WINGBTC-201907 EGLDBTC-202011 RLCUSDT-202109 VETBTC-201904 UTKBTC-201902 ARNBTC-202004 KP3RBTC-202105 TRBBTC-202106 SCRTBTC-202009 KEYBTC-201905 CNDBTC-202109 PERPBTC-202111 OMBTC-202111 BELUSDT-202111 PNTBTC-202011 PHABTC-201907 NMRBTC-202003 OMBTC-202011 CDTBTC-202012 AUDBTC-202107 AVABTC-202007 BNBUPBTC-201904 SKLBTC-202005 OMGUSDT-202109 NAVBTC-201902 MBLBTC-202004 XZCBTC-202109 QNTBTC-202109 BNBDOWNBTC-201902 FETBTC-202009 AEBTC-202008 SCBTC-201910 EPSBTC-202201 SUNUSDT-202111 RDNBTC-201910 PHBBTC-201908 TVKBTC-201902 TWTBTC-202110 TUSDUSDT-202108 TLMBTC-202105 TCTBTC-202004 XZCBTC-201912 GLMBTC-202106 INSBTC-202010 SNTBTC-202109 DEXEBTC-202101 ADAUPBTC-202103 VETBTC-201906 PROMBTC-201901 EOSUPBTC-202101 JSTBTC-202105 STORMBTC-202107 BNXBTC-201912 BCNBTC-201901 KLAYBTC-201907 GRTBTC-202010 ONGBTC-202112 FILBTC-201912 BTGBTC-202103 ETHBTC-202010 UNFIBTC-201910 RAREUSDT-202108 SUSHIBTC-202103 EOSBEARBTC-201907 AVAXBTC-202011 WNXMBTC-201909 UTKBTC-202105 C98BTC-202102 PIVXBTC-201908 ANKRBTC-201910 XZCBTC-201902 GXSUSDT-202106 ETCBTC-202001 PAXGUSDT-202106 SUSHIDOWNBTC-202201 AGIBTC-202105 TRXDOWNBTC-201906 MODBTC-201909 SPELLBTC-201911 FARMBTC-202102 USDPBTC-202005 POABTC-202201 IRISBTC-202007 NEARBTC-202103 PORTOBTC-202011 ASRBTC-202005 ANYBTC-201912 CKBBTC-202008 BELBTC-202001 AERGOBTC-202006 LTOBTC-201907 VETBTC-202012 BTCUPBTC-202102 RPXBTC-202102 RNDRBTC-202110 DLTBTC-202101 SRMUSDT-202109 XTZUPBTC-202105 MDABTC-201901 FILUPUSDT-202106 MATICBTC-202010 SUBBTC-201903 AUDBTC-202101 FORBTC-202103 LENDBTC-202106 GLMBTC-202109 FRONTBTC-202004 AUCTIONBTC-202105 BKRWBTC-202110 SUSHIUSDT-202106 BEARBTC-202012 EDOUSDT-202106 EGLDBTC-201911 WNXMBTC-202105 DOGEBTC-202004 ANCBTC-202006 MODBTC-202010 BNBBEARBTC-202106 CITYUSDT-202107 ETHBEARUSDT-202111 RDNBTC-202110 BTTBTC-202106 PLABTC-201911 BTCSTBTC-202001 FUNBTC-202101 BTTCBTC-202102 FIROBTC-202105 FILBTC-202102 SUSDBTC-202110 MBLBTC-202110 PERLBTC-202007 FILDOWNBTC-202102 NULSBTC-202110 MCBTC-201905 IOTABTC-202201 PAXBTC-201911 PEOPLEBTC-202012 NEARUSDT-202107 XVGBTC-202004 BLZBTC-202110 FTTBTC-202003 DAIBTC-202003 XNOBTC-202011 TVKUSDT-202106 RIFBTC-201902 ENJBTC-202109 EOSBEARBTC-202110 SXPDOWNBTC-201908 ATOMBTC-201906 CTKBTC-202005 ALPACABTC-202109 CNDBTC-201903 BNBDOWNUSDT-202103 QNTBTC-201907 MDTBTC-201905 CVXBTC-202008 RCNBTC-201908 EOSUPBTC-201907 FILDOWNBTC-202006 WINUSDT-202109 OGNBTC-202007 NBSBTC-202009 ALPINEBTC-202008 TRXDOWNBTC-201902 ARNBTC-202001 BUSDBTC-201905 HOTBTC-201908 ZILBTC-202012 XNOUSDT-202107 WINBTC-202006 POLSBTC-201906 ADXBTC-201901 TVKUSDT-202107 DEXEUSDT-202103 SCBTC-202108 RAREBTC-201909 ETHDOWNBTC-202009 CHATBTC-201904 MBOXUSDT-202109 SKLUSDT-202106 USDCBTC-202109 MBLBTC-201907 GOUSDT-202107 DLTUSDT-202108 STMXUSDT-202107 IOTABTC-202002 FUNBTC-202006 SUPERBTC-201903 ICNUSDT-202111 LUNBTC-202004 EZBTC-202012 ARNBTC-202201 TLMBTC-201904 DARBTC-201909 FILDOWNBTC-202002 XTZBTC-202002 VIABTC-202101 VITEBTC-202006 WAXPUSDT-202111 MTHBTC-201905 ONTBTC-202001 XRPBULLBTC-201909 NULSBTC-202104 PYRBTC-201910 QNTBTC-201910 USDSBBTC-201910 ZILBTC-202101 SUBBTC-202005 REEFBTC-202106 CELOBTC-202110 BCHSVBTC-202101 OXTUSDT-202111 SANDBTC-202110 FLMBTC-202005 BCDBTC-201910 XECBTC-202105 COSBTC-202009 MITHBTC-202112 BOTBTC-201910 MTHUSDT-202109 VOXELBTC-202012 BCPTBTC-202112 SUSHIUPUSDT-202103 SKYBTC-202107 WANBTC-201903 LOKABTC-202011 SUBBTC-202201 IDEXBTC-202107 CLVBTC-202102 IOTAUSDT-202111 FILBTC-202108 SNTBTC-201912 BCHUPBTC-202104 GNTUSDT-202108 ACHBTC-201906 ARUSDT-202103 CAKEBTC-201908 SOLBTC-202012 CHATUSDT-202109 BCPTBTC-202010 COCOSBTC-202009 PERPBTC-201911 BULLBTC-202108 PERPBTC-202112 BTGBTC-202003 QIBTC-201905 TVKBTC-201901 HARDUSDT-202106 ZENUSDT-202107 VOXELBTC-202105 TRIGBTC-201901 SNXBTC-202111 EURBTC-202009 HIGHBTC-202010 LENDBTC-202001 TRBBTC-202006 XTZBTC-201907 NAVUSDT-202108 SUSHIUPBTC-202005 DIABTC-201910 KEEPBTC-201907 DATABTC-202009 ILVBTC-202008 SANDBTC-202004 PERPBTC-202007 RNDRBTC-201903 CTSIBTC-201911 FETBTC-201912 MBOXBTC-201901 AVAXUSDT-202106 BLZBTC-202111 PNTBTC-202003 SALTBTC-202109 GASBTC-201910 LINKDOWNBTC-201911 TRXDOWNBTC-202008 DFBTC-202101 FARMUSDT-202109 TNBBTC-201906 DODOBTC-202009 STMXBTC-202003 DOTBTC-202103 SKLBTC-201912 XTZBTC-202102 ADADOWNBTC-202111 LINKDOWNBTC-201905 ADAUPUSDT-202111 SKYBTC-201911 BCHSVBTC-202011 ASRBTC-202112 SUSHIDOWNBTC-201911 FTMBTC-202103 HSRBTC-202006 OSTBTC-202004 BCNBTC-202010 DFBTC-201910 BTCSTBTC-202108 FTTBTC-202109 USDPBTC-202102 IOTABTC-202004 XTZBTC-201904 CNDBTC-201912 VITEBTC-201906 USDSBBTC-201907 LPTBTC-201909 BTCSTBTC-202007 PPTBTC-202102 PORTOBTC-202008 GVTBTC-201910 COTIBTC-201901 TCTBTC-202010 GTOBTC-202003 KMDBTC-201907 SUSHIDOWNBTC-202005 FISBTC-202101 KEEPBTC-201904 PUNDIXUSDT-202111 BALUSDT-202109 ORNUSDT-202107 KSMBTC-202109 SUSHIBTC-201907 ENGBTC-201906 YOYOBTC-201909 OSTUSDT-202111 RADUSDT-202111 FETBTC-202007 UTKBTC-202003 ORNUSDT-202103 NKNUSDT-202108 SLPBTC-202011 MTLBTC-202111 OOKIBTC-201906 XVSBTC-201911 USTBTC-201906 XLMUPBTC-202103 ICXBTC-202003 AERGOBTC-201903 ZILBTC-201912 ELFBTC-201909 EVXUSDT-202108 STMXBTC-202110 GVTBTC-202110 FORTHBTC-201911 XLMBTC-202004 AGLDBTC-202201 ACABTC-202005 AMPBTC-202003 FILDOWNBTC-202101 ARKUSDT-202111 XRPUPBTC-202003 NANOBTC-201905 SUBBTC-201909 RSRBTC-202105 OGNUSDT-202106 XVGBTC-202201 VETUSDT-202109 FLUXBTC-202003 COMPBTC-202102 POWRBTC-202201 GLMUSDT-202103 WOOBTC-202010 FXSBTC-201909 FUNBTC-201910 1INCHDOWNUSDT-202106 LUNABTC-201903 UNIDOWNBTC-202007 CHESSBTC-202201 TNTBTC-202105 OGNBTC-202112 NMRUSDT-202106 FIDAUSDT-202109 FLUXBTC-201911 OCEANBTC-202112 SSVBTC-202012 ATABTC-202105 CKBBTC-201909 STRATBTC-202112 NPXSBTC-202110 BATBTC-202003 BTCBUSDT-202108 ZRXBTC-202003 LTCDOWNBTC-202004 CHZBTC-201907 EASYBTC-202011 MIRBTC-202002 1INCHDOWNBTC-202103 SKYBTC-201904 HARDUSDT-202111 ATABTC-202201 DOTDOWNBTC-202006 ARBTC-202011 WINBTC-202010 SALTBTC-202104 JOEBTC-202110 DOCKBTC-202110 CTKBTC-201909 UNFIBTC-201902 TRXDOWNBTC-202001 DUSKBTC-202110 MBLBTC-202002 DEGOBTC-201910 YFIDOWNBTC-202012 LUNBTC-202006 DGDBTC-202002 ERNBTC-202010 VTHOBTC-202104 COTIUSDT-202107 CELRUSDT-202108 ARDRBTC-202103 BEARBTC-202109 TVKBTC-202101 YOYOBTC-201903 KP3RUSDT-202103 PROMBTC-202011 RGTBTC-202011 MATICBTC-202009 CELOBTC-202106 VIAUSDT-202109 SCRTBTC-201912 FIOBTC-202004 WTCBTC-202109 MIRBTC-202006 TNBBTC-201902 DATABTC-201903 MCOBTC-202110 NUBTC-202110 MDTBTC-202006 ICPBTC-202012 ONTUSDT-202107 IDEXBTC-201905 DAIBTC-202108 1INCHBTC-201912 RDNUSDT-202106 ANTBTC-201903 OMGBTC-202010 BNTBTC-202008 ETHBEARBTC-202005 BEAMBTC-202002 NMRBTC-201909 TRUBTC-201909 HIGHBTC-202101 AERGOBTC-202103 BCHSVBTC-201910 PHBBTC-201903 DEGOBTC-202001 NMRBTC-201912 FIDABTC-201904 LRCUSDT-202107 XLMBTC-202002 HCBTC-202105 ANCBTC-201903 OSTBTC-202012 BNBUPBTC-201902 ETCBTC-202008 CLOAKBTC-201903 SRMBTC-202011 BAKEBTC-201904 BTCDOWNUSDT-202103 NBSBTC-201907 PERLBTC-201902 BCCBTC-202009 KNCUSDT-202109 RAREBTC-202010 VITEUSDT-202109 KP3RBTC-202107 BCDBTC-201907 YOYOUSDT-202109 BURGERUSDT-202106 HARDBTC-202106 WTCBTC-202002 ANCBTC-201909 BELBTC-202012 VENBTC-202001 HNTBTC-202005 OOKIBTC-202102 MINABTC-202104 ARPABTC-202201 ARDRBTC-201907 BCHDOWNUSDT-202103 UTKBTC-202102 AAVEBTC-202112 PORTOBTC-202007 ADABTC-202201 BCHDOWNBTC-201906 ETHDOWNBTC-202201 NANOBTC-201903 BNBBEARBTC-202012 IRISUSDT-202103 UNIDOWNBTC-201904 SUSDBTC-202002 FORTHBTC-202010 TCTBTC-202111 MOVRBTC-202006 RCNBTC-201907 ALPHAUSDT-202106 RVNBTC-202010 1INCHUPBTC-202007 HOTBTC-202001 TCTBTC-201905 ONTBTC-201912 XTZDOWNBTC-202109 SNGLSBTC-201907 DOCKBTC-202106 QSPBTC-201904 ADXUSDT-202108 FILDOWNBTC-201902 SUSHIUPBTC-201911 ACMBTC-202111 FILDOWNBTC-202106 VGXBTC-201906 MBLBTC-202008 TWTBTC-202107 ETCBTC-201911 MODBTC-202101 SUBBTC-201901 EOSBEARBTC-201911 ETHUPBTC-202005 BNBDOWNBTC-202001 ENGBTC-201901 LINAUSDT-202107 ETHUPBTC-202004 GNOBTC-201909 FTMBTC-201907 DODOBTC-202201 OGBTC-201901 FETBTC-201904 BCNUSDT-202108 TORNBTC-202109 ALGOBTC-202005 ETHBULLBTC-202108 LAZIOBTC-201910 SYSBTC-202106 BANDBTC-202008 ELFBTC-202006 DOTDOWNBTC-201906 ZILUSDT-202108 XEMBTC-202101 CHRBTC-202112 PHBBTC-202008 TWTBTC-202112 STRATUSDT-202109 EASYBTC-202007 FRONTBTC-201903 GXSBTC-202110 USDCBTC-202201 MATICBTC-202005 ALCXBTC-201907 HARDBTC-202111 BTCUPBTC-202012 NEARBTC-202102 BELBTC-202106 ALPHABTC-201901 RENBTCBTC-202010 ASRBTC-202111 UNIUPBTC-202003 FILUPBTC-202111 WINGBTC-202104 LUNABTC-202008 COSBTC-201910 TNBBTC-202007 BNBBTC-202004 GTCUSDT-202111 ADAUPBTC-201912 BLZUSDT-202107 PUNDIXBTC-202011 COMPBTC-202110 SNMBTC-202110 MBLUSDT-202108 LUNBTC-202112 ANTUSDT-202108 ALPACABTC-202006 HCBTC-201905 ZENBTC-201907 IRISBTC-202104 KSMBTC-202108 FILBTC-202110 WNXMUSDT-202106 LINKUPBTC-202104 COMPBTC-202011 WABIBTC-201907 SYSBTC-202001 ANYBTC-201909 TRXUPBTC-201902 VIBEBTC-201903 SXPUPBTC-201901 NEBLBTC-201911 CRVBTC-202002 HSRBTC-202011 ICNBTC-202201 RVNBTC-202108 CELOBTC-201910 FIDABTC-201912 VETBTC-202104 OAXBTC-202101 SALTBTC-201910 BCCBTC-202107 BCHUPBTC-202108 REQBTC-202012 LPTBTC-202002 BEARBTC-201901 GVTBTC-201903 RAMPBTC-201904 HIVEBTC-202106 ILVUSDT-202108 BELBTC-202112 RAREBTC-202101 ETHBULLBTC-201902 BELBTC-202103 PNTBTC-202108 SALTBTC-201905 TLMBTC-202007 FLOWBTC-201910 BAKEBTC-201906 MDABTC-202002 USTBTC-202002 SUSHIUPBTC-202112 GXSBTC-202004 NCASHBTC-202103 HNTBTC-202104 LSKBTC-202101 BCHSVUSDT-202108 ELFBTC-202012 ARKBTC-202010 FILDOWNBTC-202103 HBARBTC-202101 KNCBTC-202111 EOSUPBTC-201905 ERDUSDT-202103 PERPBTC-202104 OGNUSDT-202107 LRCBTC-201905 VENUSDT-202106 POEBTC-202010 BELUSDT-202103 XTZUPBTC-202110 CAKEUSDT-202108 REEFBTC-202008 UNFIBTC-201905 SCUSDT-202111 BEARBTC-202105 WANUSDT-202108 SYSBTC-201906 SUPERBTC-202010 XZCUSDT-202103 GTOBTC-202106 AUDBTC-202001 PHXBTC-202002 OMGBTC-202006 POLYBTC-202008 KMDBTC-201908 TRUUSDT-202107 DARBTC-202001 USDPUSDT-202108 FLUXBTC-202106 SUSHIBTC-201903 UNIBTC-202004 PIVXUSDT-202109 AGIXUSDT-202111 PLABTC-201903 RIFBTC-202109 BELBTC-202011 FTMBTC-202007 ZECBTC-201909 TWTBTC-202105 PORTOBTC-202003 RSRBTC-202201 OSTBTC-202111 LINKUSDT-202109 SNMBTC-201904 DIABTC-202007 MODBTC-202110 HBARBTC-202005 SCRTBTC-202010 LPTBTC-202102 KNCBTC-202106 STMXBTC-201912 WABIUSDT-202109 IMXBTC-201905 LTOBTC-202012 STPTBTC-202004 SOLBTC-202007 NAVBTC-201903 CVCBTC-201908 CAKEBTC-202011 BCDBTC-202012 QIBTC-202111 BQXBTC-201910 LINKDOWNBTC-202004 COTIBTC-201911 BCHSVBTC-201911 GRSBTC-201904 BCHSVBTC-202201 BCHSVUSDT-202109 CTSIBTC-202006 XEMBTC-202009 PHBBTC-202011 C98BTC-201907 ENGBTC-202103 SXPDOWNBTC-201910 WPRBTC-202110 EOSUPBTC-201904 GRSBTC-202104 TRIBEBTC-202110 WTCUSDT-202108 SYSBTC-201907 POLSBTC-202004 VGXBTC-202005 SXPUPBTC-202008 XZCUSDT-202106 LOKABTC-202010 FXSBTC-201908 XLMBTC-202108 BTCDOWNUSDT-202111 BETABTC-201907 NXSBTC-201904 ENGBTC-201912 ARNUSDT-202103 NAVBTC-202104 XTZDOWNBTC-201907 OGBTC-201910 GNOBTC-201907 VIBBTC-202009 KLAYBTC-201905 MTHBTC-202103 MODBTC-202104 DNTBTC-202107 GALABTC-202002 VIBEBTC-202112 DODOBTC-202006 ADAUPBTC-202002 XRPUPBTC-201907 SUSDBTC-201911 VENBTC-201908 UNFIBTC-202109 USTBTC-201903 MATICBTC-202109 BQXBTC-202201 ARDRBTC-201904 MASKBTC-201912 MATICBTC-201909 TRXUPBTC-202104 FLOWBTC-201907 ASRBTC-202004 NUBTC-202002 SUSHIUPBTC-202006 MINABTC-201907 XRPBTC-202107 RNDRBTC-202101 NASBTC-202012 INSBTC-201906 NPXSBTC-202005 PORTOBTC-202103 HNTBTC-202103 SUPERBTC-202009 FUELBTC-202112 VITEBTC-202101 JSTUSDT-202111 SNGLSBTC-201902 DIABTC-202005 KLAYUSDT-202109 AGIXBTC-202002 COMPBTC-202009 ONGBTC-202107 NEBLBTC-202102 CLVBTC-202003 BNBBTC-202001 XTZBTC-201903 NEOBTC-201907 CHZBTC-202110 C98BTC-202107 BTTCBTC-201912 GNOUSDT-202108 MFTBTC-202105 EOSUPBTC-201902 KMDBTC-202101 ZRXBTC-201909 NEBLBTC-202002 DGBBTC-202008 VETBTC-202003 ACABTC-202002 NAVBTC-202106 BETABTC-201912 MBOXBTC-201910 ANYBTC-201910 BUSDBTC-202001 ONTUSDT-202109 GHSTBTC-202007 ORNBTC-202007 DGBUSDT-202103 HSRBTC-202201 XLMUPBTC-201905 QKCBTC-202003 STORJBTC-202006 UNIBTC-202012 PORTOBTC-202107 SFPBTC-202111 WINBTC-202101 LUNABTC-202105 BURGERBTC-201908 VETBTC-202009 DUSKBTC-201904 WINGSBTC-202004 DOGEBTC-202009 WINBTC-202002 AXSBTC-202102 XRPDOWNUSDT-202103 TWTBTC-201910 AVAXUSDT-202107 GXSBTC-201908 ICXBTC-202109 DREPBTC-202102 DOTDOWNBTC-202008 CLVBTC-201903 ONTBTC-202107 FILBTC-202008 1INCHUPBTC-201910 SSVBTC-201903 OMGBTC-201911 PHXBTC-201910 HCBTC-202103 DATABTC-202110 REEFUSDT-202103 ICXBTC-201910 FIROBTC-202002 VIBBTC-202008 REPBTC-202104 PHXBTC-202008 RLCBTC-202007 PPTUSDT-202107 JOEBTC-202201 FISBTC-201911 AGLDBTC-202003 CVXBTC-202007 FISBTC-201903 MTHBTC-202008 MBOXBTC-201904 NAVBTC-202105 FETUSDT-202106 WAVESBTC-202009 IOTXBTC-202108 PONDBTC-202007 SUSHIUPBTC-202002 DLTBTC-201912 NASBTC-202001 ACABTC-202009 KEEPBTC-202108 PSGBTC-202109 AMPBTC-202004 ORNBTC-201903 PHABTC-201909 HBARUSDT-202111 WINBTC-201904 TRXDOWNBTC-201910 RIFBTC-202007 CHZBTC-202107 TLMUSDT-202111 BNBDOWNBTC-201910 ADADOWNBTC-202010 LINABTC-202201 CVPBTC-202004 ZRXBTC-202009 MCBTC-202009 FETBTC-201908 USDSBUSDT-202103 SLPBTC-202012 RSRBTC-202101 DENTBTC-202011 MODBTC-202107 QSPBTC-202010 PORTOBTC-201912 RENBTC-202106 MIRBTC-201912 SHIBBTC-202001 SHIBBTC-202105 FETBTC-201911 DOTUPBTC-202007 STORJBTC-201911 DOTUPBTC-202111 BTCSTBTC-201912 ASTBTC-202003 ARNBTC-201906 TLMBTC-202201 SSVBTC-202112 WINGSBTC-202111 QNTBTC-202110 WOOBTC-202102 ARPABTC-202109 NANOBTC-202011 VTHOBTC-202107 BNBBULLBTC-201901 LOKABTC-202110 RPXUSDT-202111 NBSUSDT-202103 NCASHBTC-202102 AVABTC-202009 IOTAUSDT-202103 STRATBTC-202110 FORTHBTC-202101 OOKIBTC-202004 MLNBTC-201906 ASRUSDT-202106 XNOBTC-202104 ANYBTC-202001 FARMUSDT-202103 BETABTC-202011 TVKBTC-201911 RADBTC-201911 BTTBTC-202012 CHATBTC-201902 PROMBTC-202006 APPCBTC-202104 TRUBTC-202008 XMRBTC-202002 GRSBTC-201912 WOOBTC-201907 GBPBTC-202008 DCRBTC-202001 ALPINEBTC-202104 STRAXUSDT-202111 MBLBTC-201904 DEXEUSDT-202109 DASHBTC-201912 XVGBTC-202011 SHIBBTC-202009 PYRBTC-202008 EOSBEARUSDT-202103 QKCBTC-202011 PPTBTC-202201 WAXPBTC-201908 NMRBTC-202010 OMGBTC-202009 OGBTC-201905 XMRBTC-202101 WBTCBTC-202101 STRATBTC-201902 ERNBTC-201905 RAYBTC-202008 KMDUSDT-202106 SKYBTC-201909 KNCBTC-202007 PSGBTC-202102 RPXBTC-202007 OMGBTC-202106 UNIBTC-202201 NCASHBTC-202001 DAIBTC-202001 NBSUSDT-202107 DYDXBTC-202103 NANOUSDT-202109 HIVEUSDT-202109 EZBTC-202201 LINKBTC-201901 AVABTC-202102 YOYOBTC-202109 DGDBTC-202102 MASKBTC-202012 VETBTC-202105 ATOMBTC-202112 OMBTC-202104 STRAXBTC-201909 INSBTC-201905 COMPBTC-201907 CHZBTC-201910 RPXBTC-201903 AMBBTC-202007 FIROBTC-202004 MANABTC-202101 QTUMBTC-202008 LINKUPBTC-202110 OGNBTC-201901 ETHBEARBTC-202106 NPXSBTC-202108 ZENUSDT-202108 STRAXUSDT-202107 MCBTC-202102 RUNEBTC-202004 TRXDOWNBTC-201911 DGBBTC-202101 STORMBTC-202108 TRXBTC-201902 BULLBTC-202008 HCUSDT-202109 AGIXBTC-202109 FILUPBTC-202001 EURBTC-202101 JOEBTC-201903 GALAUSDT-202103 MFTUSDT-202108 WBTCBTC-202201 BTCDOWNBTC-202012 KMDBTC-202107 RENBTC-202101 DOTBTC-202002 EZBTC-202004 DOCKBTC-202109 1INCHUSDT-202108 GVTBTC-202105 STXBTC-202012 SPELLBTC-202008 STORJBTC-202201 ADABTC-201901 GRTBTC-202107 BTTCBTC-202109 IOTXBTC-202105 XZCBTC-202104 QNTBTC-202103 LOKABTC-201904 1INCHUPBTC-202110 JASMYBTC-202001 SUBBTC-202102 SRMBTC-201912 LOKABTC-202103 MKRBTC-202107 AMBUSDT-202106 FXSUSDT-202106 STORMBTC-202102 IDEXBTC-201904 CELOUSDT-202111 XLMDOWNBTC-201906 TLMBTC-202111 DIABTC-202106 CELOBTC-201901 STPTBTC-202006 FIOBTC-202104 BNBUPBTC-202103 FISUSDT-202106 MOVRUSDT-202106 DOTBTC-202104 FORBTC-202110 NULSBTC-202001 BONDBTC-202012 RSRBTC-202005 MANABTC-202110 GOBTC-202107 MITHBTC-201905 BNBUPBTC-202007 VIABTC-202103 XLMBTC-202005 BZRXBTC-202104 SNGLSBTC-202108 ZILBTC-202009 DATABTC-201909 ADXBTC-202104 TRIBEBTC-202006 TRXDOWNBTC-201904 CAKEBTC-202106 BCCBTC-202001 STMXBTC-202010 MOVRBTC-202009 UMABTC-202004 MDTBTC-201911 POLYBTC-202006 ACHBTC-202111 PNTUSDT-202109 CDTBTC-202106 ETHBEARBTC-201912 BZRXBTC-202007 ORNBTC-202002 FARMBTC-202101 TVKBTC-202112 KAVABTC-202201 LOKABTC-202107 FIDABTC-202004 SRMBTC-202004 CLOAKBTC-202112 PEOPLEBTC-202003 BTCBBTC-202104 BCHBTC-201904 PERLBTC-202108 POABTC-201905 SSVBTC-202004 MDXBTC-201903 COTIBTC-202105 QKCUSDT-202103 ICXBTC-201905 EPSBTC-202008 QKCBTC-202111 BUSDBTC-202011 AUDIOBTC-202001 GOBTC-201904 BCHABCBTC-202001 VIBEUSDT-202109 NAVBTC-202005 ONEBTC-201909 NULSUSDT-202107 BKRWBTC-202201 BTTBTC-202009 FORTHBTC-202105 MDXBTC-201906 NEARUSDT-202109 BALBTC-202104 SUBBTC-201910 LTCUPBTC-202110 ILVBTC-202108 TRXBTC-202201 AAVEDOWNBTC-202006 STEEMBTC-202001 BCCUSDT-202108 ARPAUSDT-202107 NEARBTC-202108 ICPBTC-202008 XRPBTC-202004 MODBTC-202102 FIOBTC-202201 WPRBTC-201912 RDNUSDT-202103 FIROUSDT-202103 TRIBEUSDT-202109 SUPERBTC-202108 GOBTC-202006 1INCHDOWNBTC-202010 PERLBTC-201907 DEGOBTC-202012 MINABTC-202107 HSRBTC-201910 MDTBTC-201903 BTCUPBTC-201910 BTCSTBTC-201902 1INCHUPBTC-201907 MDTBTC-202103 CLVBTC-202009 VGXBTC-202107 ALGOBTC-201908 USDSBBTC-201906 OXTBTC-202109 LUNUSDT-202109 DAIBTC-201906 RVNBTC-202003 COCOSBTC-201909 ICPBTC-201905 TVKBTC-202107 PAXGUSDT-202109 LTCBTC-202010 BCHDOWNBTC-202002 MFTBTC-202111 UMAUSDT-202109 RAMPBTC-201902 RGTBTC-202009 PONDUSDT-202111 GTOUSDT-202111 SUSDBTC-201903 BRDBTC-202201 OMGBTC-202108 PLABTC-202002 AUCTIONBTC-201905 TVKBTC-202009 TRIGUSDT-202108 NANOBTC-202007 FILBTC-202005 FORTHBTC-201903 XMRBTC-201903 BNBDOWNBTC-201905 BTCSTBTC-202201 QSPBTC-201901 ANTBTC-202001 ICNBTC-202012 RENBTC-202004 RAREBTC-202005 TRUBTC-202009 ARPAUSDT-202103 REEFBTC-202112 BNTBTC-202010 BUSDBTC-202006 ADAUPBTC-202007 QKCBTC-201905 CVXUSDT-202109 JSTBTC-201911 CVPBTC-202003 WAVESBTC-202005 OMBTC-202110 AGIXBTC-202001 AEUSDT-202106 ARDRUSDT-202107 DGDUSDT-202103 BULLBTC-202004 APPCBTC-202006 FORTHBTC-202112 STORJUSDT-202108 XZCBTC-202001 ALPACABTC-202108 ASTUSDT-202107 SUBUSDT-202107 DEGOBTC-201904 MDXBTC-202007 KMDBTC-202008 AMBBTC-202005 ALGOBTC-201905 CTKBTC-202007 PPTBTC-202108 DOTDOWNBTC-202012 GBPBTC-201907 NXSUSDT-202109 NAVBTC-201910 IOTXBTC-202002 WINGSUSDT-202107 LUNABTC-201905 ADADOWNBTC-202009 XEMBTC-202003 TROYBTC-202111 MCOBTC-201909 VIDTBTC-202104 EOSBTC-202108 ERNBTC-202108 NEOBTC-202102 WINGBTC-201905 BICOBTC-202001 CKBBTC-201908 IRISBTC-202010 FILDOWNUSDT-202108 APPCUSDT-202107 CHRUSDT-202111 SYSUSDT-202111 LTCUSDT-202103 BURGERBTC-202102 GNTUSDT-202106 PHBBTC-202201 LINABTC-202003 OXTBTC-201905 C98BTC-202005 TRXUPBTC-202002 DGBBTC-201901 TROYBTC-201909 PAXBTC-202005 PYRUSDT-202109 CHZBTC-202011 ANYBTC-202004 AAVEDOWNBTC-201901 BLZBTC-202103 WINGSBTC-202102 1INCHUPUSDT-202106 1INCHUPBTC-202101 XLMUPBTC-202104 VENBTC-202110 DFUSDT-202107 FISBTC-202201 VIBEBTC-202008 DUSKBTC-202109 LOOMBTC-202106 FTTBTC-202011 BLZBTC-202108 MOVRBTC-201902 BCHABCBTC-202106 LOOMBTC-201910 EVXBTC-202010 SNXBTC-201904 MDXBTC-202005 LTCDOWNUSDT-202109 CVCBTC-202108 VENBTC-201905 ASRBTC-202011 BTGBTC-201904 IOSTBTC-202112 JSTBTC-201906 BTCBTC-201911 EGLDUSDT-202103 IOTXBTC-201907 RPXUSDT-202106 EVXUSDT-202111 DOTDOWNBTC-202011 FIROBTC-202001 USTBTC-202006 CHRBTC-202009 CNDUSDT-202109 COMPBTC-202111 SNMBTC-202112 TRXUPUSDT-202108 CVXBTC-202104 VIBEBTC-202104 COMPBTC-202010 BCHUPBTC-201902 PERPBTC-201902 BLZBTC-202002 EOSUSDT-202109 CELOBTC-202107 HIVEBTC-202110 AMPUSDT-202111 CMTBTC-201903 ERDBTC-202107 MBOXBTC-202102 RSRBTC-201911 JUVUSDT-202109 CTSIBTC-202003 XRPBULLUSDT-202103 XLMDOWNBTC-202006 RAMPUSDT-202106 DOGEUSDT-202108 MKRBTC-202007 ETHBEARBTC-202010 ELFBTC-202003 CVXBTC-202004 AEBTC-202104 OGNBTC-202009 TORNBTC-201904 BLZBTC-201909 NANOBTC-201906 KP3RBTC-202002 PAXBTC-202109 MCOBTC-202001 IMXBTC-202101 ACMBTC-202103 BTCBTC-202102 APPCBTC-201901 XEMBTC-202109 MTLBTC-202104 TFUELBTC-201911 GALABTC-202108 SUSHIBTC-202008 ALPACABTC-202112 EURBTC-202108 ADXBTC-202109 RGTBTC-201907 BTCUPBTC-202201 DEXEBTC-202103 GRTBTC-202011 TVKBTC-202004 HNTBTC-202001 RCNBTC-202111 BELUSDT-202107 CHZUSDT-202103 SXPUPBTC-202011 ONGBTC-201901 FXSUSDT-202108 SOLBTC-201908 STXBTC-202104 EOSBULLBTC-202102 FETUSDT-202111 MKRUSDT-202106 SUBUSDT-202106 USDCBTC-201901 BURGERBTC-201911 ELFBTC-201904 LITBTC-202108 XRPDOWNBTC-201911 TKOBTC-202004 NASBTC-202006 AGIXBTC-202009 NAVBTC-201906 SANTOSUSDT-202109 AAVEBTC-202104 STRAXBTC-201910 SXPDOWNBTC-201903 DREPBTC-202105 NEOBTC-201906 GLMRBTC-202006 ACABTC-202101 BANDBTC-201912 ENGBTC-202106 ILVBTC-201908 ALGOBTC-202101 FLMBTC-202002 CTXCBTC-201902 LAZIOBTC-202003 WTCBTC-202112 CHRBTC-201908 TNBBTC-201909 AERGOBTC-202102 SXPUSDT-202106 AEUSDT-202107 LINKDOWNBTC-202112 RENBTCBTC-202111 DAIBTC-201909 EVXBTC-202006 SHIBBTC-202104 POAUSDT-202109 ALCXBTC-202101 MODBTC-202007 PROMUSDT-202111 UNIDOWNUSDT-202107 PROMBTC-201906 LINABTC-202005 GRTBTC-201912 BRDBTC-202105 XNOBTC-202010 NANOBTC-201909 DIABTC-201908 BTGBTC-202102 DENTBTC-202006 BATBTC-201911 ONTBTC-201905 BTTBTC-202001 STRAXUSDT-202108 DEGOBTC-201909 CHRBTC-202107 PERLBTC-202008 BALBTC-202101 CITYBTC-202012 DIABTC-202009 XVGBTC-201902 KP3RUSDT-202106 CVPBTC-202101 FTMBTC-201906 CTSIBTC-202007 USTBTC-202010 SXPBTC-202108 CTSIBTC-201908 UMABTC-202110 BTCSTUSDT-202106 ONEBTC-202107 DAIBTC-202106 DENTBTC-201909 DYDXBTC-202009 POLYBTC-202111 SANDBTC-202007 SYSBTC-202105 XVGBTC-202006 TORNUSDT-202109 CLVBTC-202011 GBPBTC-202111 WABIBTC-202011 CVXBTC-202107 DOCKBTC-202201 ATOMBTC-202012 EURBTC-202201 ONGBTC-202011 POLSBTC-201905 XLMUPBTC-202105 OMGUSDT-202111 KEYBTC-202103 PHXBTC-201907 TWTUSDT-202106 RUNEBTC-202005 MBLBTC-202007 ONEBTC-202009 BCNBTC-201905 LINKBTC-202102 SANDBTC-202002 WNXMBTC-202111 ADADOWNBTC-202002 RAREBTC-202109 BNTBTC-202012 SXPDOWNUSDT-202107 VTHOUSDT-202109 STPTBTC-202007 WOOBTC-202106 BUSDBTC-201911 PORTOBTC-202111 ETHBULLBTC-202105 RENBTCBTC-202106 NANOBTC-201911 ACABTC-202112 API3BTC-202006 CVXBTC-201906 DENTBTC-202108 SYSBTC-202012 PPTBTC-201906 RENBTC-201909 BNBUPBTC-202101 1INCHBTC-201902 CFXBTC-202112 COCOSBTC-202105 BNBUSDT-202107 AXSBTC-201910 XLMUPBTC-201907 SUNBTC-202102 LTCUPBTC-202006 UTKBTC-202106 PERPUSDT-202108 GALAUSDT-202108 CTXCBTC-202104 TRIGBTC-202108 CHRBTC-202109 JOEBTC-202001 KNCBTC-202004 ACAUSDT-202107 REPBTC-201909 PUNDIXBTC-202106 PROMBTC-201910 USTBTC-202003 CHZBTC-202012 CHZBTC-202002 ATOMBTC-202001 AMPBTC-201909 IOTABTC-202101 XTZBTC-202110 REQUSDT-202107 RAREBTC-202110 JSTBTC-202011 AGIUSDT-202107 ADAUPBTC-202006 FIROBTC-201907 ZENBTC-201909 DGDBTC-201910 FIROBTC-201905 XLMBTC-202003 DGDBTC-201904 TRXUPBTC-201906 EOSUPBTC-202007 1INCHDOWNBTC-202012 MIRBTC-202008 CNDBTC-201906 ERDBTC-201907 AXSBTC-201903 TLMBTC-201905 ERNBTC-202105 STORMBTC-202006 PSGBTC-202105 REQBTC-202107 RADBTC-202003 MFTBTC-201910 JSTBTC-202108 DEGOBTC-201905 STORJBTC-202001 BEAMUSDT-202106 DAIBTC-202103 ENJBTC-201901 CVXBTC-202010 ERDBTC-202004 EOSUPBTC-202003 IOTABTC-201910 PROMBTC-202009 LTCUPBTC-202011 DGDUSDT-202111 ASTUSDT-202109 KLAYBTC-202110 MDTBTC-201907 FRONTBTC-202105 BNBBTC-201904 LTCBTC-201906 XZCBTC-202004 SSVUSDT-202109 BONDBTC-201909 ORNBTC-201901 ATMBTC-202001 OAXBTC-202007 STRATBTC-201910 EURBTC-202105 ELFUSDT-202106 NULSBTC-202108 REQBTC-202101 CTSIBTC-201903 SALTBTC-201907 EOSBEARBTC-202106 BNBDOWNBTC-202005 FILBTC-201908 TCTUSDT-202107 ALPINEBTC-202110 DOTBTC-202105 FXSBTC-202104 RAMPBTC-202103 IOTABTC-202003 BTCBBTC-202003 REQBTC-202004 VITEUSDT-202107 BCNBTC-202002 BEARUSDT-202111 CTSIBTC-202105 NPXSBTC-201909 LENDBTC-202103 NPXSBTC-202006 OCEANBTC-202110 ARBTC-202104 SKYBTC-202011 WABIBTC-202111 LTCUPBTC-202012 REQBTC-201906 MBOXBTC-202008 RAYBTC-202005 AAVEUPBTC-202009 KMDBTC-201906 NUBTC-202104 COCOSUSDT-202109 UNIDOWNUSDT-202111 FORBTC-202106 YFIBTC-202102 OXTBTC-202001 MCOBTC-201901 ENSBTC-202201 XRPUPBTC-202005 SHIBBTC-201912 ATOMUSDT-202111 REPBTC-202006 REQBTC-201905 SSVBTC-201906 NMRBTC-202201 SOLBTC-202002 XRPBEARBTC-201909 SPELLBTC-202006 BETABTC-202101 NMRBTC-201908 AMPBTC-202110 MASKBTC-201909 LUNBTC-202005 DODOBTC-201907 CFXBTC-202107 TRXDOWNBTC-202201 INSBTC-201904 BNBBTC-201908 FORBTC-201910 CHESSBTC-201902 XTZUPBTC-202008 XRPDOWNUSDT-202108 ANTBTC-201904 HBARBTC-201907 BTCBUSDT-202111 AVAXBTC-202003 GNTBTC-201912 PLAUSDT-202109 UMAUSDT-202108 MATICBTC-202002 BNBBEARBTC-202011 AUDBTC-201906 RAREBTC-201902 NMRBTC-202012 BNTUSDT-202109 QNTBTC-202006 NULSBTC-202109 DNTBTC-202007 SUSDBTC-202111 ADXBTC-202004 BCPTBTC-202108 WNXMBTC-201906 USDSBTC-201904 BOTBTC-201912 SNXUSDT-202108 IMXBTC-201903 RADBTC-202201 ETHUPBTC-202103 XEMBTC-202107 OGNBTC-202102 PIVXBTC-201911 ETHBTC-201910 BARBTC-202005 1INCHUSDT-202109 GTCBTC-202107 LUNABTC-202104 DFBTC-202012 RUNEBTC-202006 LAZIOUSDT-202107 MASKUSDT-202109 VIBBTC-202001 VETBTC-202011 BNBBULLUSDT-202106 BCHBTC-202110 OMGBTC-201901 RUNEBTC-202012 FORTHBTC-202106 CTXCBTC-201904 SXPDOWNBTC-202106 BCPTBTC-201912 TKOBTC-202107 KLAYBTC-201911 FIDABTC-202201 XRPBTC-202007 AUTOUSDT-202106 JSTBTC-201912 CHATBTC-202002 AXSBTC-202108 RPXBTC-202111 SYSBTC-202102 UNIDOWNBTC-202111 SUPERBTC-201901 POEBTC-202103 API3USDT-202103 ALPINEUSDT-202106 ILVBTC-202001 OCEANBTC-202105 VIDTUSDT-202107 BEAMBTC-202008 BULLBTC-202106 UNIUPBTC-202008 COCOSBTC-202008 RNDRBTC-202105 MTLBTC-202108 GOBTC-202109 ELFBTC-202108 GLMBTC-202102 LAZIOBTC-202112 MDXUSDT-202109 ONTUSDT-202108 QIBTC-202005 WAVESBTC-202002 GTOBTC-201901 CHRBTC-202007 UNIUPBTC-201901 SOLBTC-202105 YOYOBTC-202003 ADADOWNUSDT-202107 DOTUSDT-202109 SPELLBTC-201905 FIROBTC-202012 AMBBTC-202003 YFIBTC-202105 KAVABTC-201902 BCHDOWNBTC-202005 ATOMBTC-202201 RAMPBTC-202201 ICPBTC-201906 IOSTBTC-202005 YGGBTC-202105 REEFUSDT-202107 API3BTC-201910 JSTUSDT-202103 KP3RBTC-201908 BULLBTC-201910 MCBTC-201910 LINKUPBTC-202011 SANTOSBTC-201910 OMGUSDT-202107 MINABTC-201908 WAXPBTC-201909 CLVBTC-201909 BTCUPBTC-201905 BULLBTC-202007 TWTBTC-202103 CLVBTC-201901 SNMBTC-202109 BUSDBTC-202003 JSTBTC-202006 SCBTC-201901 ANCUSDT-202108 LENDBTC-202101 EOSUPBTC-202009 WINGSBTC-202101 BTTCBTC-202010 VOXELBTC-201912 1INCHDOWNBTC-201904 HARDBTC-201903 PPTBTC-202103 XTZUPBTC-202005 DOTDOWNBTC-201904 DEGOBTC-201906 ARKBTC-202109 WOOBTC-202006 VIBEBTC-202201 CTSIBTC-202106 SPELLBTC-201904 TRXUSDT-202108 ETHUPBTC-202107 VIBEBTC-202007 XRPBEARBTC-202103 GALABTC-202201 RENBTC-202201 ADABTC-201907 DIABTC-201905 WBTCBTC-202007 YOYOBTC-202009 GOBTC-202010 1INCHDOWNUSDT-202109 RAREBTC-202004 FLMBTC-202103 SNGLSBTC-202110 GNTBTC-202110 PLAUSDT-202103 EASYBTC-202101 NMRBTC-202112 1INCHDOWNBTC-201901 RGTBTC-202012 NKNBTC-202201 NKNBTC-202110 EPSBTC-202012 TOMOUSDT-202109 VITEBTC-202112 BEAMBTC-202102 ICNBTC-202103 ETHBEARBTC-202001 BQXBTC-201906 XRPUPBTC-201904 SXPDOWNBTC-202103 PHABTC-202007 HNTUSDT-202108 CFXBTC-202005 TRXUPBTC-202003 NUBTC-202101 SLPBTC-202006 GHSTBTC-202005 GXSBTC-202012 STORJBTC-202007 WINBTC-202104 CHRBTC-202110 ENSBTC-201909 FISBTC-202005 BCDBTC-202110 XTZUPBTC-202103 WRXBTC-202106 NEOUSDT-202106 STMXBTC-202103 AGIXBTC-202201 SRMUSDT-202106 LPTBTC-201902 ICNUSDT-202108 BTSUSDT-202107 CVPBTC-202112 MKRBTC-202108 SFPBTC-202012 SUBBTC-202107 WINGBTC-202103 ETHBEARBTC-201902 PROMUSDT-202106 XRPBEARBTC-202102 POWRBTC-201910 XMRBTC-202109 POWRBTC-201906 IOSTUSDT-202103 XRPUPBTC-202007 XEMBTC-202006 PHBBTC-202002 CTSIBTC-202005 FIOBTC-201903 AUDIOUSDT-202108 ROSEBTC-201905 XECBTC-202001 SLPBTC-202102 CLOAKBTC-201906 ARPAUSDT-202108 EOSUPBTC-202110 WINBTC-202011 ZILBTC-201901 WRXBTC-202009 EASYBTC-202102 BTSBTC-201912 OAXBTC-202104 TROYBTC-202006 ZRXBTC-202002 ALCXBTC-202002 WRXBTC-202103 SUPERUSDT-202106 XRPDOWNBTC-201912 ATMBTC-201905 KAVABTC-202106 CRVBTC-201903 ZECBTC-201902 BNTUSDT-202107 VIBEUSDT-202107 LINKBTC-202011 ACABTC-202107 ADADOWNUSDT-202106 BRDBTC-202001 BTCDOWNBTC-201904 TRBBTC-202012 AKROBTC-202004 FUELBTC-202105 LENDBTC-202201 NULSBTC-201902 AAVEDOWNUSDT-202111 SNMUSDT-202109 ACABTC-201906 BNBDOWNBTC-202007 OGBTC-201907 API3BTC-202007 RAYBTC-201908 GBPBTC-202003 WABIBTC-202107 BICOUSDT-202107 C98BTC-202010 HOTBTC-201907 OMBTC-202005 TNBBTC-202012 ANTBTC-202105 USTBTC-202103 SUPERBTC-202103 SCRTUSDT-202107 VITEBTC-201904 RAMPBTC-201906 ATOMBTC-202002 SXPUPBTC-201909 ALPHABTC-201909 BETABTC-202108 HIGHUSDT-202111 RADUSDT-202107 MANAUSDT-202109 API3BTC-201912 LOOMBTC-202002 PAXGBTC-201902 EOSUPBTC-202105 MTHBTC-201903 BELUSDT-202106 BULLUSDT-202109 WINGSBTC-202002 QIBTC-202109 CELRBTC-201904 SNTUSDT-202103 BZRXBTC-202110 OXTBTC-202111 BTGBTC-202104 PROMUSDT-202103 HIVEBTC-201908 BANDBTC-202109 NUBTC-202112 ARDRUSDT-202103 KLAYBTC-202010 KAVABTC-202004 API3BTC-202110 KLAYUSDT-202106 QNTBTC-201904 XRPDOWNBTC-202006 CFXBTC-202102 BCDUSDT-202103 XVSBTC-201903 BCDBTC-202201 FETBTC-201906 SALTBTC-202110 USDSBBTC-202011 CKBUSDT-202107 ATABTC-202010 DASHBTC-202011 PUNDIXUSDT-202108 NKNBTC-201907 1INCHDOWNBTC-202108 STMXBTC-202008 LPTBTC-202001 CLVBTC-202106 XECBTC-202003 BTTCBTC-202007 GTOBTC-201903 WOOBTC-201911 TKOBTC-202005 UTKBTC-201901 FETBTC-201903 STEEMBTC-202110 YFIUPBTC-202101 EOSBTC-202009 NUBTC-201901 UNFIBTC-202103 IMXBTC-202106 ACMBTC-201911 DATABTC-201908 SUBBTC-202109 UNIUPBTC-202107 WRXBTC-202108 NBSBTC-202002 OCEANBTC-202109 DOTBTC-201909 MIRBTC-202007 MASKBTC-201907 DEGOBTC-202112 RIFBTC-201906 STMXBTC-201908 JOEBTC-202006 SANTOSBTC-201906 MIRUSDT-202111 XTZUPBTC-201901 CRVUSDT-202103 PUNDIXBTC-202008 CVXBTC-202110 AMBBTC-201905 CTSIBTC-201904 GALABTC-201910 DREPBTC-202107 HOTBTC-202005 MDXBTC-201910 SHIBBTC-202107 LTCUSDT-202111 ERDBTC-201908 CNDUSDT-202106 FUNBTC-201909 INJBTC-201908 BLZBTC-202112 LSKBTC-202112 JUVBTC-202107 USDPBTC-202008 BCCBTC-202103 TWTBTC-202003 BEAMBTC-202104 OOKIBTC-202012 TRUBTC-201905 ALPACABTC-201911 COMPBTC-202006 EPSBTC-201909 ETHBEARBTC-202104 XMRBTC-202004 CAKEBTC-202101 DGBBTC-201902 QKCBTC-202201 WINGSBTC-201903 USDSBTC-201908 BTCDOWNBTC-201903 VOXELBTC-202107 TOMOBTC-202101 ADADOWNBTC-201904 HBARBTC-201908 MKRBTC-202002 MKRBTC-202011 SNTBTC-201902 PERPBTC-202012 DOTDOWNBTC-202110 WAXPBTC-202108 POLYBTC-201904 POLSBTC-201903 ALCXBTC-202006 ARNBTC-201903 AUDBTC-201904 USDSBBTC-202003 WBTCBTC-202001 QLCBTC-202201 ARDRBTC-202111 ZRXBTC-202006 ADAUPBTC-201908 PYRBTC-202111 XEMBTC-202102 TUSDBTC-202012 HIGHBTC-202107 XTZUPBTC-202111 DOTDOWNBTC-202111 FRONTBTC-202112 JOEBTC-202010 NANOBTC-201901 ANYUSDT-202109 RENBTC-201904 STORJBTC-202101 SPELLBTC-201912 EASYBTC-201909 TRXBTC-201911 CTXCUSDT-202108 BICOBTC-202008 WTCBTC-202201 VITEBTC-201901 DIABTC-202109 TWTBTC-201909 ETHDOWNBTC-202002 FUNUSDT-202107 UNIDOWNBTC-201901 LINKBTC-202006 XLMBTC-201912 INSBTC-202012 BNXBTC-202110 BTTCBTC-201907 DOGEBTC-201905 TRXDOWNBTC-202103 MITHBTC-201910 CKBUSDT-202108 RDNBTC-201905 BNBBEARBTC-202101 EVXBTC-202003 STPTBTC-201908 DCRBTC-202107 ADADOWNBTC-202107 JUVBTC-202106 DFBTC-202112 ILVBTC-202105 AUDIOUSDT-202103 ALICEBTC-202003 LENDBTC-202006 QIUSDT-202108 XMRBTC-202005 BRDBTC-202107 SYSBTC-202008 AAVEBTC-202107 OSTBTC-202008 ALPACABTC-201903 FIDABTC-202112 REEFUSDT-202108 QSPBTC-202111 DEGOBTC-202003 WINBTC-201911 ARNBTC-202008 ACMBTC-202104 RVNBTC-202001 MDXBTC-202111 POWRBTC-202012 BEAMBTC-201908 ERDUSDT-202106 LINKUPUSDT-202106 KMDBTC-202108 ANKRBTC-202004 EURBTC-201902 LINKBTC-202005 AVABTC-201902 WTCBTC-202004 1INCHUPBTC-202106 SANTOSBTC-202010 BNBBEARBTC-202105 HIGHBTC-202110 YFIIUSDT-202103 PEOPLEBTC-202102 AXSBTC-201906 LOOMBTC-202004 ANCBTC-201905 GTCBTC-202007 XLMDOWNBTC-202103 ICPBTC-202005 USDCBTC-201911 BURGERBTC-202108 JASMYBTC-202009 SANTOSBTC-202101 CFXUSDT-202103 SXPDOWNUSDT-202109 UMAUSDT-202103 UNIUPBTC-201911 AKROBTC-201912 JASMYBTC-201911 JASMYBTC-201906 RAYUSDT-202109 DOCKBTC-202004 BALBTC-201906 USDSUSDT-202111 LUNBTC-202108 HARDBTC-202008 GTCBTC-202003 CLOAKUSDT-202103 RIFBTC-202001 POWRBTC-202009 SPELLBTC-202110 HNTBTC-202009 XRPBEARUSDT-202111 SXPDOWNBTC-201906 FLUXBTC-201902 MINABTC-202108 BNTBTC-201911 OXTUSDT-202106 COSBTC-202103 ARBTC-202006 WAXPBTC-201903 EGLDBTC-202102 LINABTC-201910 POLYBTC-202101 REQBTC-202201 DARBTC-201906 EASYBTC-202001 FETBTC-202001 GASUSDT-202106 VTHOBTC-201911 GLMUSDT-202109 SNTBTC-201906 BTSBTC-202107 NEBLBTC-202105 SCRTBTC-201911 EGLDBTC-202008 BANDUSDT-202111 BICOBTC-202104 ZRXBTC-202106 NASBTC-202101 UTKBTC-202008 AAVEUSDT-202107 LUNBTC-202012 RCNBTC-201905 POLSBTC-202111 CNDBTC-202005 ATAUSDT-202109 LINKDOWNBTC-201912 XEMBTC-201902 API3BTC-202201 FIOBTC-202012 TVKBTC-202108 MDXBTC-202112 OOKIUSDT-202103 BTSBTC-202002 RLCBTC-202002 HIVEBTC-202008 EOSBEARUSDT-202107 BCNUSDT-202107 STXBTC-202106 QKCBTC-202001 BRDBTC-201912 BNXBTC-201909 BEARBTC-202112 MCBTC-202108 TNTUSDT-202107 TNBBTC-202101 XRPUPBTC-202105 EOSDOWNBTC-202006 BADGERBTC-202106 MDTBTC-202105 DCRBTC-202103 FILBTC-201911 PROMBTC-202103 VETBTC-202103 SKLBTC-201901 DEXEBTC-202004 DUSKBTC-201912 BCHSVUSDT-202107 AUDUSDT-202109 USDPBTC-201901 SXPUPUSDT-202107 BQXBTC-202109 BRDUSDT-202103 CVXUSDT-202108 KP3RBTC-202103 MBLBTC-202105 BCHABCBTC-201901 CLVBTC-202109 AAVEUPBTC-202201 FIDABTC-202012 BNTBTC-202106 BELBTC-202108 ETHUPBTC-202007 COCOSBTC-201904 XVGBTC-201904 ARPAUSDT-202109 SNGLSBTC-201908 DODOBTC-201903 WINBTC-201906 FLUXBTC-201907 BZRXBTC-202107 RCNBTC-201901 QIBTC-201907 FTTUSDT-202108 IDEXBTC-202008 DGBBTC-201904 BALBTC-202105 BTTBTC-202110 IDEXBTC-202012 VIAUSDT-202103 BTCBTC-202108 SKYBTC-201906 GALABTC-202110 1INCHUPBTC-202011 DLTBTC-202112 LTCUPBTC-202002 DGDBTC-202007 BNBBULLBTC-202008 PAXBTC-202001 GOBTC-201903 SNXBTC-202105 BKRWBTC-201910 FILBTC-202007 ANYUSDT-202111 ANKRBTC-201907 PYRBTC-202110 SXPDOWNBTC-201904 JUVBTC-201901 FARMBTC-201905 LTCDOWNBTC-202101 TRXBTC-201905 ACMBTC-201904 FRONTUSDT-202106 EDOBTC-201912 ATMBTC-202008 YFIDOWNBTC-201903 REPBTC-201904 ICPBTC-201904 BADGERBTC-202006 SANTOSBTC-202109 VGXBTC-201912 MDAUSDT-202108 VGXBTC-202106 XRPBEARUSDT-202108 DGBBTC-202111 OOKIBTC-201904 WAXPBTC-201910 MANABTC-201908 ROSEBTC-202003 ACHBTC-201908 WINGSBTC-202001 LTCUPBTC-202108 QIBTC-202101 PSGBTC-202101 MASKBTC-202102 XECBTC-201907 CVCBTC-201912 BUSDBTC-202101 DEGOBTC-201907 FILBTC-202105 ADXBTC-202006 RAMPBTC-202111 RIFUSDT-202106 COTIBTC-201906 AGIBTC-202103 ARBTC-202010 DUSKBTC-201905 LOKAUSDT-202109 ACHBTC-202005 BOTBTC-202101 BTSBTC-202009 MANABTC-202012 DARBTC-201905 PLABTC-201909 AAVEDOWNBTC-201907 ENSUSDT-202107 DOGEBTC-202110 OSTBTC-201901 UMABTC-201911 GLMRBTC-202108 ANTBTC-202103 VOXELUSDT-202109 SXPBTC-202012 ETHUPBTC-202110 XVSBTC-202003 XEMBTC-201912 EOSDOWNBTC-202002 ICPUSDT-202109 EOSUPBTC-201901 TVKBTC-201908 PHABTC-202101 OCEANBTC-202003 YGGUSDT-202109 AUTOBTC-202101 BANDUSDT-202103 DUSKUSDT-202111 NBSBTC-201905 AVABTC-202201 POWRBTC-202107 MBOXBTC-201907 USTUSDT-202103 TNBBTC-202001 OXTBTC-201901 NMRBTC-202105 DOTUPBTC-202011 BETABTC-201901 OSTBTC-202007 KP3RBTC-202009 PEOPLEBTC-202108 VIBBTC-201909 VETBTC-201901 XZCBTC-201903 SKYUSDT-202103 KMDBTC-202012 USTUSDT-202109 BCPTBTC-201909 VETBTC-202111 VIBEBTC-201909 INSBTC-202007 TCTBTC-201911 EVXBTC-202102 YFIUPBTC-202005 LINKDOWNBTC-202107 BICOBTC-202002 WRXBTC-202010 POEBTC-202008 XECBTC-202201 BETAUSDT-202111 XLMDOWNBTC-201911 ONEUSDT-202103 AAVEUPBTC-201906 RADBTC-202007 BTSUSDT-202111 JASMYBTC-201908 ERDBTC-202111 SHIBBTC-202010 SOLBTC-202003 KP3RBTC-201907 DARUSDT-202109 ICNBTC-202108 SUSDBTC-202108 YFIBTC-202111 DOGEUSDT-202111 MITHBTC-202010 DFBTC-202105 GNOBTC-202101 RGTUSDT-202109 NMRBTC-202111 EASYBTC-202105 PONDUSDT-202107 FTTBTC-202005 TOMOUSDT-202108 ETHBEARBTC-202011 BATBTC-202109 UNIUPUSDT-202109 CHATBTC-201901 PUNDIXBTC-202101 JUVBTC-202101 CHESSBTC-202002 RDNBTC-202106 ETHBULLBTC-201906 SYSBTC-202002 HNTBTC-202109 YFIUPBTC-202108 VETBTC-201903 BTCBBTC-202106 CDTBTC-202004 CTXCBTC-202102 CMTBTC-202107 TOMOBTC-202112 TRIGBTC-202112 ALPHABTC-201908 RAYBTC-202006 BTCBUSDT-202107 NAVBTC-201907 DLTUSDT-202106 ALPINEBTC-201908 OSTBTC-201908 RIFBTC-201910 DLTBTC-202102 MASKBTC-201902 YFIDOWNBTC-202102 CHESSBTC-201911 FORBTC-202003 GNTBTC-202104 ILVUSDT-202106 MKRBTC-202104 GHSTUSDT-202111 ICPBTC-201907 CHRBTC-202006 OXTBTC-202005 FUELBTC-202106 VIDTBTC-201912 BANDBTC-202001 PPTBTC-202006 GBPUSDT-202107 LOOMBTC-202103 AMBUSDT-202109 LTCUSDT-202106 NAVBTC-202010 DENTBTC-202111 TOMOBTC-202001 LOOMUSDT-202107 XNOBTC-202105 MDTUSDT-202111 BNBDOWNBTC-202004 XRPDOWNBTC-201906 DIABTC-202112 USDCBTC-202005 TRIBEBTC-201910 ALICEBTC-201907 ANKRBTC-201912 TRUBTC-202201 PROMBTC-201905 FUNBTC-202011 TKOBTC-202103 TNTBTC-202009 PERLBTC-202105 SCUSDT-202103 ICXBTC-202106 ANYBTC-202002 RVNBTC-201901 BNTBTC-202003 HOTBTC-202102 AMBBTC-202106 TRUBTC-202007 INSBTC-201911 DNTBTC-202111 OMUSDT-202107 POLSBTC-202006 GRTBTC-202108 TOMOBTC-202108 MASKBTC-202001 TLMBTC-202101 EOSBTC-202007 CHRBTC-202012 PHBBTC-202009 LINKDOWNBTC-202005 EOSBULLBTC-201909 VIBBTC-202101 NASBTC-202110 NPXSUSDT-202106 FRONTBTC-202006 GTCBTC-202112 PIVXUSDT-202108 EGLDBTC-201905 BQXBTC-202111 GTCBTC-202103 FIROBTC-202011 OCEANUSDT-202107 FLOWUSDT-202109 ACABTC-202103 ETHBEARUSDT-202107 ICXBTC-202105 GRSBTC-202112 XRPBEARBTC-202107 WBTCBTC-202005 SKYBTC-202109 APPCBTC-201905 ENSBTC-202104 AVAXBTC-201905 REQBTC-202010 PONDBTC-201911 ASTUSDT-202106 BNBBEARBTC-202107 EOSBEARBTC-201908 JUVBTC-202201 MINAUSDT-202106 CKBBTC-201910 YFIDOWNBTC-201909 BNBBTC-202201 RUNEBTC-201902 COCOSUSDT-202106 MTHBTC-202101 QSPBTC-202102 ATMUSDT-202111 BADGERBTC-201901 POLSBTC-202008 MBOXBTC-202001 NCASHBTC-202012 MIRBTC-202102 CITYBTC-202104 WINBTC-202106 ERDBTC-202112 AAVEBTC-202008 YOYOBTC-201904 PAXBTC-202110 AEBTC-202001 BEARBTC-201903 UTKBTC-201906 SANDBTC-202104 GXSBTC-201901 IOTABTC-201905 SANDBTC-202012 LOKAUSDT-202106 OGBTC-202010 BTSBTC-201905 AGLDUSDT-202109 BONDBTC-201905 ANKRBTC-202201 ATABTC-202104 TNBBTC-202106 SXPUPBTC-202006 TRXDOWNBTC-202011 EOSBEARBTC-202010 BNBBULLUSDT-202103 BLZBTC-202011 BNBUPBTC-202002 LENDBTC-201906 ARKBTC-202003 COMPBTC-202001 ATABTC-202107 ARKBTC-202105 BADGERBTC-201902 CELRBTC-201909 EOSBEARBTC-202111 DEGOBTC-202106 MTLBTC-202102 ONEUSDT-202109 BRDBTC-202005 PLABTC-202112 DASHBTC-201903 LSKBTC-202001 TVKBTC-202110 BZRXBTC-201905 UNIDOWNBTC-201908 DODOBTC-201910 CTXCBTC-201909 TUSDBTC-201907 WTCBTC-201911 DYDXUSDT-202106 ALPHABTC-202009 MCBTC-202103 LAZIOBTC-201907 XZCBTC-201907 BULLBTC-201903 ADADOWNBTC-201905 FILDOWNBTC-202110 AAVEDOWNBTC-202012 SKLBTC-202012 EZBTC-202003 ONEBTC-201908 SUSHIUPBTC-201910 LSKBTC-202105 RGTBTC-201909 UMABTC-202111 MASKBTC-201911 GVTBTC-202007 OAXBTC-202108 RIFBTC-202008 CKBBTC-201912 MBLBTC-201910 SUSHIDOWNUSDT-202109 DYDXBTC-202105 ETHBEARBTC-201904 JASMYBTC-202003 BCDUSDT-202109 ARDRBTC-202107 VETBTC-202101 MBOXBTC-202004 GLMBTC-202201 LINKUPUSDT-202111 ERNBTC-201901 PPTBTC-202010 MIRUSDT-202106 JUVBTC-202112 EOSBTC-202003 ETHBTC-202101 LINKBTC-201909 STEEMBTC-202010 STEEMBTC-201911 UNFIBTC-201901 SUSHIDOWNBTC-202103 ACHBTC-202106 FRONTBTC-201905 UNFIBTC-201903 KAVABTC-202101 POABTC-202101 JOEUSDT-202107 WNXMBTC-202010 ENJBTC-202111 BQXBTC-201905 SUPERBTC-201904 AMBBTC-201909 RUNEBTC-202002 EURUSDT-202108 WABIUSDT-202106 TOMOBTC-201908 STRATUSDT-202111 NAVBTC-202002 PEOPLEBTC-202008 SKYBTC-201901 PHABTC-201904 PORTOUSDT-202111 VTHOBTC-202102 GNTBTC-201908 ZILUSDT-202107 XTZDOWNBTC-202108 BCHDOWNBTC-201907 FORTHBTC-202003 OOKIBTC-202110 MLNBTC-202111 VITEBTC-201903 EOSDOWNBTC-201907 GHSTBTC-202111 STEEMUSDT-202109 SRMBTC-201902 EOSBEARBTC-201903 XRPUPBTC-201905 WINGBTC-202008 GNOBTC-201903 PERLBTC-202010 QLCBTC-202103 AIONBTC-202004 BKRWUSDT-202109 USDPBTC-202010 BLZBTC-202004 GTOBTC-202011 CHZBTC-202106 XVSBTC-202005 1INCHDOWNBTC-202109 LENDBTC-201910 AKROUSDT-202106 ETHUPBTC-202001 NBSBTC-202106 ANKRBTC-202010 REPBTC-201907 ADABTC-201911 ONEBTC-201912 FILBTC-202003 DOTUPBTC-202105 EOSBTC-202101 CELRBTC-201903 TCTBTC-201907 BCCBTC-201905 ICXBTC-202108 XLMUPBTC-202006 C98BTC-201910 SANTOSBTC-201902 GBPBTC-202103 PUNDIXBTC-202111 BEAMBTC-202107 AUDBTC-201911 CMTBTC-202010 INJBTC-202003 COTIBTC-202103 THETABTC-202001 GLMRBTC-202104 SKLBTC-201911 SUSHIUPBTC-202008 AGLDBTC-202006 FLOWBTC-202106 CMTBTC-202101 MATICBTC-201902 CAKEBTC-201905 SKYBTC-202001 MIRBTC-202005 GLMBTC-201909 QTUMBTC-202106 QKCUSDT-202111 XNOBTC-201911 BTSBTC-202104 TRXDOWNBTC-202108 GTCBTC-201905 CVXBTC-201902 AKROBTC-202107 BNXBTC-202008 ARDRBTC-202106 XLMDOWNBTC-201912 MIRBTC-201910 DCRBTC-202011 SNGLSBTC-201909 DGBBTC-202006 AVAXUSDT-202109 OAXBTC-202106 TWTBTC-202006 UTKBTC-202005 PUNDIXBTC-202110 ERNBTC-202112 VETBTC-202006 DENTBTC-202005 ICNBTC-202008 GLMRBTC-202112 WINGBTC-201908 AUDBTC-201905 DENTBTC-202109 BELBTC-202004 GLMBTC-201908 CTKBTC-201903 BTCDOWNBTC-202109 CTXCBTC-201908 GHSTBTC-202001 ETCBTC-202012 BTSBTC-202011 NUBTC-201903 ADADOWNBTC-202011 ALPHABTC-202111 BTCBBTC-202012 BNXBTC-202003 EOSUPBTC-202005 AUDIOBTC-202105 AGIBTC-202005 PAXBTC-201902 BNXBTC-202007 THETABTC-202112 MDXBTC-202011 EZBTC-202105 ZENBTC-202005 SSVBTC-201910 RLCBTC-202201 TRBUSDT-202106 FLUXUSDT-202111 ALICEBTC-202011 AGIBTC-201912 SNMUSDT-202107 BTGUSDT-202107 PIVXBTC-202012 TNTUSDT-202111 ZILUSDT-202111 WINGBTC-202012 ACHBTC-202004 SXPDOWNBTC-202110 NKNBTC-201911 GALABTC-202003 BAKEBTC-202102 HARDBTC-202105 COTIBTC-202110 HOTBTC-201910 BCPTBTC-202107 XRPDOWNBTC-202011 CDTUSDT-202107 NUUSDT-202108 XRPDOWNBTC-201902 FORBTC-201911 STEEMBTC-201908 MITHBTC-201902 SHIBBTC-202006 EOSDOWNBTC-202109 AUDIOBTC-202108 EOSBULLBTC-202001 TNBBTC-202008 XTZBTC-202112 AERGOBTC-202003 INJBTC-202004 TFUELBTC-202104 NBSBTC-201904 ETHDOWNBTC-201909 BICOBTC-201902 ORNUSDT-202108 TRIBEBTC-201901 STRAXBTC-201901 TWTBTC-202009 TRIBEBTC-201905 ZECBTC-201908 RCNBTC-202004 BTCUSDT-202107 BTCBBTC-202007 PLABTC-202005 XECBTC-202010 TRIGBTC-202102 XEMBTC-201901 BNTBTC-201912 ETHBULLBTC-202103 LSKBTC-202004 LOOMUSDT-202103 ASTBTC-202009 SXPDOWNBTC-202008 WPRBTC-201908 XRPDOWNBTC-202012 KAVABTC-202002 CLOAKBTC-202111 ARDRBTC-202110 LAZIOBTC-202109 DLTUSDT-202109 KEYBTC-201904 PERPBTC-202005 SYSBTC-202003 BONDBTC-202008 MBLUSDT-202107 VITEBTC-202103 TOMOBTC-202011 CHRBTC-202005 JSTBTC-202104 LTCUPBTC-202201 VENBTC-201907 WTCBTC-202005 PORTOBTC-201907 FLOWBTC-202104 ZECBTC-202101 NEBLBTC-201910 HARDBTC-201902 KP3RBTC-202106 CHESSBTC-202012 TOMOBTC-202008 ANKRBTC-202109 VIBBTC-202201 HCBTC-201901 TFUELBTC-201906 LTCDOWNBTC-201907 ENSBTC-202105 FORBTC-202104 WOOBTC-202103 BNBBULLBTC-202001 COSBTC-201911 CDTBTC-202112 CTKUSDT-202106 DFBTC-202103 ATOMBTC-202106 TUSDUSDT-202109 AGIXBTC-202110 LENDBTC-202108 ADADOWNBTC-202112 ETHBTC-202003 BEARBTC-202003 STEEMBTC-201905 CHESSBTC-201912 NEARBTC-202001 QKCBTC-201902 MIRBTC-201907 VITEUSDT-202108 QUICKBTC-202006 AGIBTC-202111 FTTBTC-201901 XRPUPBTC-202009 BELBTC-201907 ACHBTC-201903 ASRUSDT-202108 XRPUPBTC-202112 VENUSDT-202107 MCBTC-201912 EZBTC-201906 BULLBTC-202011 VENBTC-202102 ATOMBTC-201904 POWRBTC-202101 ARDRBTC-202104 EOSBEARBTC-201906 QTUMBTC-201907 RVNBTC-201910 FLMBTC-201901 SYSUSDT-202108 SNTBTC-202001 DFBTC-202004 PONDBTC-202011 SUSHIUPBTC-201902 XZCBTC-202110 CTKBTC-201905 EVXBTC-201901 ETHUPBTC-202108 MLNBTC-202001 FTMBTC-202104 FXSBTC-202012 FLOWBTC-202109 RADBTC-202109 RAREBTC-202012 QSPBTC-202106 THETABTC-202102 RSRBTC-202001 BTSBTC-201904 BANDBTC-202112 ATMBTC-202002 POAUSDT-202106 NKNBTC-202112 UTKBTC-201911 GLMBTC-202002 BNBBEARUSDT-202106 AKROBTC-202111 RNDRBTC-201904 STRATUSDT-202106 TFUELBTC-201908 ENGBTC-202002 STORMUSDT-202107 WAVESBTC-202001 OOKIUSDT-202111 SYSBTC-202201 NKNBTC-202104 RSRBTC-202108 RIFBTC-202011 AUDIOUSDT-202111 TRUBTC-201904 UMABTC-202112 RAMPBTC-202006 AMPBTC-201902 STORJBTC-201909 1INCHBTC-202005 EOSBULLBTC-202107 PAXUSDT-202107 ALICEBTC-202006 SANDBTC-202112 DASHUSDT-202107 RUNEBTC-202111 BEARBTC-202010 HBARBTC-202105 OGBTC-201902 WTCBTC-202101 SNXBTC-202102 AVAXBTC-201908 PHXBTC-202005 XEMBTC-201904 BUSDBTC-201904 JOEUSDT-202108 XLMDOWNBTC-202001 MTHBTC-202111 FUELBTC-202101 AKROUSDT-202108 ERNBTC-202001 USDSBBTC-202006 SSVBTC-202101 MTHBTC-202010 JASMYBTC-202007 FUELBTC-201902 AMPBTC-202107 MFTBTC-202008 AMPBTC-202011 TRXBTC-201907 BELBTC-201912 ARBTC-201909 ADADOWNBTC-202012 HOTBTC-202106 RAYBTC-201902 NASBTC-202003 IOSTBTC-202010 SXPDOWNBTC-201905 EOSDOWNBTC-202108 VENBTC-202010 WNXMBTC-202108 AEBTC-201903 BCPTBTC-201906 ONGUSDT-202109 LUNBTC-202003 FARMBTC-201909 DASHBTC-202105 GRTUSDT-202103 RNDRUSDT-202106 CTSIBTC-202101 ALPHABTC-202002 HCBTC-201911 BATUSDT-202108 BCPTBTC-202003 ASTBTC-201901 THETABTC-202104 AKROBTC-201909 APPCBTC-202105 POWRBTC-201904 RSRBTC-201902 BTCUPBTC-202109 BRDBTC-202106 KEYUSDT-202103 ASTBTC-201905 ADXBTC-201911 TRXBTC-202006 RPXBTC-201906 VTHOBTC-201903 QKCBTC-201903 LINAUSDT-202109 LOOMBTC-201909 ARBTC-202003 BARUSDT-202108 JASMYBTC-201909 NEOBTC-202104 ACHUSDT-202106 AUDBTC-202005 FILUPBTC-202006 MTHBTC-202004 PERLBTC-201904 DASHBTC-201905 XVSBTC-202002 SPELLUSDT-202109 USDCBTC-202107 XLMUPBTC-202110 GTOBTC-202108 KP3RBTC-202010 EVXBTC-201909 QNTUSDT-202107 WAVESBTC-202011 SXPBTC-201907 HNTBTC-201909 ARDRBTC-202002 FETBTC-201901 HARDUSDT-202109 RAMPBTC-202003 LSKBTC-201911 ETHBULLBTC-202009 VIBBTC-202102 BANDBTC-201903 UMABTC-201905 ERDUSDT-202111 RSRUSDT-202109 TRIGBTC-202009 ALICEBTC-202106 DEXEBTC-202104 JASMYBTC-202201 AAVEDOWNBTC-201904 BCHSVBTC-202001 RADBTC-201904 GNOBTC-202010 BEARBTC-202006 POEBTC-202011 RPXBTC-201905 RPXBTC-201910 SANDBTC-202103 WINGSBTC-202109 SHIBBTC-202110 GTOBTC-202112 NXSUSDT-202107 FARMUSDT-202111 AUDBTC-202003 ETHBEARBTC-201905 RADBTC-202005 USDCBTC-202009 BCHSVBTC-202108 GTOBTC-202110 OMGBTC-202007 REQBTC-201911 NEARBTC-202201 XLMBTC-201911 ZILBTC-202106 FTTUSDT-202103 DOTUPBTC-201902 GVTBTC-202004 THETABTC-202108 JSTBTC-202106 TCTBTC-202110 API3BTC-202003 GASBTC-202012 ALCXUSDT-202107 ACHBTC-202201 ETHDOWNBTC-201904 AUCTIONBTC-201910 FORUSDT-202106 KEEPBTC-202001 ZENBTC-202103 TRUBTC-202104 PEOPLEBTC-201910 MDAUSDT-202107 VTHOBTC-201912 SUBBTC-202011 VIBUSDT-202111 DATABTC-201901 EOSBTC-201907 KSMBTC-202010 BETABTC-201905 VENBTC-201910 BNBBTC-201911 TRUBTC-202107 VIABTC-202003 BETABTC-201911 BADGERBTC-202112 BNTBTC-202107 SUPERBTC-201911 XRPBTC-201902 SHIBBTC-202005 BCHDOWNBTC-202009 ERDBTC-202103 PROMBTC-202111 USDCBTC-202011 AMPBTC-201903 EPSBTC-201904 OCEANBTC-201905 KAVABTC-201904 PHBBTC-202010 STEEMBTC-202108 GBPBTC-202112 SUSHIUPBTC-201908 BTTBTC-202105 NASUSDT-202111 SANTOSBTC-202012 ASTUSDT-202103 RLCBTC-202112 BUSDBTC-202107 WANBTC-202105 NULSBTC-202008 XRPBEARBTC-202104 BCHABCBTC-202101 TCTBTC-201901 USTBTC-202101 DIAUSDT-202111 BCHSVBTC-202109 XRPBULLBTC-202110 ATMBTC-201901 MDABTC-202005 FIDABTC-202105 SUSHIUPBTC-202109 REQUSDT-202106 CRVBTC-201901 HIVEBTC-201902 AVAXBTC-202006 SALTBTC-201909 BNTBTC-202103 TRXDOWNBTC-202102 BTCUPBTC-202007 BTCBTC-202012 AUDUSDT-202111 EVXBTC-202012 FIOBTC-202102 ROSEBTC-202001 WANBTC-202104 JSTBTC-202007 FIOBTC-201904 WINGSBTC-201910 AGIBTC-202101 ADAUPBTC-202106 SXPUPUSDT-202111 NUUSDT-202109 CHRBTC-202004 PAXBTC-202006 ORNBTC-201911 CLOAKBTC-202103 XEMBTC-201911 ATOMBTC-202008 ZECUSDT-202103 XZCBTC-201911 BCPTBTC-201902 LOKABTC-202104 ONEBTC-202001 RDNBTC-202006 RNDRBTC-201911 DATAUSDT-202108 DNTBTC-202001 SSVBTC-202011 NMRBTC-202102 TLMUSDT-202109 ETHBULLUSDT-202106 XRPUPBTC-202008 GTOBTC-201905 YFIBTC-202104 PPTBTC-201908 NCASHBTC-202108 XECBTC-201905 IOTXBTC-202009 OGNBTC-202003 HCBTC-202008 HNTBTC-202102 PROMBTC-202112 SSVBTC-202009 BTSBTC-201903 DENTBTC-202105 CELRBTC-202109 FISBTC-201910 ICNBTC-202004 ZECBTC-201906 YGGBTC-202007 AUDIOBTC-202007 JSTBTC-202004 FORTHBTC-201905 TNTUSDT-202106 VIBBTC-202108 XECBTC-202002 NANOBTC-202106 ICXBTC-202008 AAVEUPBTC-202107 BONDBTC-202107 DUSKUSDT-202106 PERPBTC-202009 LRCBTC-201901 RCNBTC-202110 EPSBTC-202110 FIOBTC-201905 OXTBTC-202107 KSMBTC-201909 ASRBTC-201909 EURUSDT-202103 FORUSDT-202111 REEFUSDT-202109 MASKBTC-202009 JSTUSDT-202108 CHESSUSDT-202108 EDOBTC-202008 XECUSDT-202109 SHIBUSDT-202107 PHBBTC-201911 TFUELBTC-202008 AGLDBTC-202004 BTCDOWNBTC-202103 SALTUSDT-202111 DOGEBTC-201912 KEYBTC-202201 PLABTC-201910 GBPBTC-202106 XLMBTC-201910 RAMPBTC-202109 ARDRBTC-201902 BCCBTC-202201 SNMBTC-202106 ETHBEARBTC-202004 ENJBTC-202004 GNOBTC-202008 BNBDOWNBTC-202108 XLMUPBTC-201909 SHIBBTC-201907 WRXBTC-202105 LUNBTC-201907 JASMYBTC-201904 XRPBULLBTC-202012 ALPACABTC-201905 XLMBTC-202011 SUSHIBTC-202101 POLSUSDT-202109 ADAUPBTC-201905 EURBTC-202010 AGLDBTC-201904 UMABTC-201902 STPTBTC-202105 YOYOBTC-202104 BTSBTC-202108 NXSBTC-201908 VIABTC-201905 1INCHBTC-201911 ELFUSDT-202107 1INCHDOWNBTC-201910 SRMBTC-201911 SFPBTC-202107 DOTUPUSDT-202111 BCHUPBTC-202201 ACMBTC-202009 LOOMBTC-202112 CHESSBTC-202101 RLCBTC-201902 MASKBTC-202106 LSKBTC-201902 UNIBTC-202002 IRISBTC-202105 AUTOUSDT-202108 SNTBTC-201910 ALICEBTC-202103 SNXBTC-202201 ILVUSDT-202107 LPTBTC-201912 CHATBTC-202110 TLMBTC-202112 SUNBTC-202104 YGGBTC-202010 BCHUPBTC-202109 TRUUSDT-202108 NKNBTC-201904 ETHDOWNBTC-202109 DOTBTC-202006 AVABTC-201908 AMBUSDT-202111 STORJBTC-202010 FUNBTC-201903 ZECBTC-201907 TLMBTC-202110 FILDOWNBTC-201904 FILUPBTC-202011 SKLBTC-202111 DGDBTC-201901 XNOBTC-202002 GASBTC-201907 FORTHBTC-202201 ENSBTC-202009 SNTBTC-202112 COMPBTC-202106 DARBTC-201907 HNTBTC-202004 ZENBTC-201908 YFIUPUSDT-202103 EVXBTC-201905 HCBTC-202005 MDXBTC-202110 THETABTC-202201 CVPBTC-201911 RVNUSDT-202109 XNOBTC-201907 BNBDOWNUSDT-202106 QIBTC-201906 ELFBTC-202110 WAXPBTC-202008 FTTBTC-202001 XVGBTC-201911 PAXBTC-201905 IMXUSDT-202108 TNBUSDT-202107 DODOBTC-202010 BTCDOWNUSDT-202109 ADADOWNBTC-202101 TROYBTC-202011 FXSBTC-201907 C98USDT-202106 RUNEBTC-202112 RENBTC-202108 QNTBTC-202104 DEXEBTC-202112 CLOAKUSDT-202111 GXSBTC-202008 RAMPBTC-202005 KEEPBTC-202006 SALTBTC-202102 ETCBTC-201906 GTOBTC-202004 EPSBTC-202002 PEOPLEUSDT-202107 XRPUPBTC-201910 ALCXBTC-201911 VTHOBTC-202011 BUSDBTC-202112 FARMBTC-201911 ICPBTC-201912 VTHOBTC-202110 QSPUSDT-202106 SNTBTC-201905 HIVEBTC-202012 IDEXBTC-202111 DREPBTC-202103 EDOBTC-202106 BANDUSDT-202106 CHRBTC-202201 EOSUPBTC-202201 SUSHIBTC-201906 MINABTC-202105 DEXEBTC-202007 TRIBEUSDT-202108 IDEXBTC-201909 XMRUSDT-202106 SALTBTC-202108 XTZUSDT-202108 BNBBEARBTC-202104 PUNDIXBTC-202009 KSMBTC-201904 ALICEBTC-201904 BCHDOWNBTC-202007 LINABTC-201905 STRAXBTC-202107 DOTDOWNUSDT-202111 LITBTC-201905 ETHUPBTC-202003 API3BTC-202102 MTHBTC-202201 BONDBTC-201910 EZUSDT-202108 GALABTC-202107 OSTBTC-201912 MDXBTC-202008 VOXELBTC-202103 OMGBTC-201905 MOVRBTC-202110 CVCUSDT-202111 DENTBTC-202001 JASMYBTC-202111 LUNABTC-201908 KLAYBTC-202109 LTCDOWNBTC-202010 ERNBTC-202103 AAVEDOWNBTC-202011 AUCTIONBTC-202010 BCDBTC-201908 PNTBTC-202012 QTUMBTC-202104 UMABTC-202001 USDPBTC-201911 CTKBTC-201912 RGTBTC-202003 FIDAUSDT-202108 ARPABTC-202003 RDNBTC-201911 SRMBTC-202111 ENSBTC-202101 AAVEUPBTC-202108 BNBBTC-202007 OCEANBTC-201902 MIRBTC-202105 XLMDOWNBTC-201904 XEMBTC-202004 YFIIUSDT-202106 THETABTC-202004 STPTBTC-202002 SANTOSBTC-202007 YFIIBTC-201907 SUPERBTC-202101 UMABTC-201901 DEGOBTC-202005 CVXBTC-201908 XRPBULLBTC-202008 RIFBTC-201911 SNGLSBTC-202005 BTTCBTC-202009 DGBBTC-202002 AGLDBTC-202009 BCDUSDT-202107 ARKBTC-201909 NEOBTC-202009 MODBTC-202008 BZRXBTC-202106 BNBBEARUSDT-202109 ENGBTC-201911 BNBBULLUSDT-202109 DGDBTC-201906 SYSBTC-202107 BURGERUSDT-202111 IOTABTC-202108 ICXBTC-202006 NKNBTC-202106 STORJUSDT-202109 ACMBTC-201912 WTCBTC-202008 EOSBULLBTC-202110 BEARBTC-201902 POABTC-202110 APPCBTC-202107 OGNBTC-202110 ENSUSDT-202109 AUDIOBTC-202103 UNIUPBTC-201912 COTIBTC-202111 OMBTC-202009 ERNUSDT-202108 FTTBTC-202007 ICXBTC-201904 1INCHUPBTC-202111 AUTOBTC-202103 ALICEBTC-202201 NEARUSDT-202103 WABIBTC-202103 FLOWBTC-202001 BAKEBTC-202002 XLMUPBTC-202007 NAVUSDT-202107 QNTBTC-202107 OXTBTC-202009 ZENBTC-202001 ARKBTC-202104 ERNUSDT-202111 GXSBTC-201904 AEUSDT-202109 BNBDOWNBTC-202009 GRTUSDT-202111 GHSTBTC-202009 GTCBTC-202004 BELBTC-202009 CRVBTC-202012 ICNBTC-202102 DUSKBTC-202009 TUSDBTC-202011 ICPUSDT-202108 ALGOUSDT-202109 WOOBTC-201910 ACMBTC-202010 MDABTC-202102 OAXBTC-201909 NCASHBTC-201908 BCDBTC-201904 RIFBTC-201901 BTTCBTC-202012 PORTOBTC-202104 GOUSDT-202106 MOVRBTC-202102 BALBTC-201911 SNMBTC-202108 NEOBTC-202003 NEBLBTC-202109 RVNBTC-201911 UNIBTC-202005 CVXBTC-202111 REEFBTC-201910 PSGBTC-202110 ZRXBTC-202010 AVABTC-201905 WINGUSDT-202111 1INCHBTC-202106 VTHOBTC-202005 LOOMBTC-202008 KLAYBTC-202001 ADADOWNBTC-202103 SNGLSUSDT-202108 ONTBTC-202007 FILDOWNUSDT-202103 ELFUSDT-202111 DYDXBTC-202108 LENDBTC-201911 LINKUPBTC-202002 RDNBTC-201912 BNBDOWNBTC-201906 NMRBTC-202106 ZRXBTC-202110 AGLDBTC-202005 ATOMBTC-202111 ASTBTC-201910 YFIIBTC-201902 XTZUPBTC-202106 PAXBTC-201908 BONDBTC-202010 UNIDOWNBTC-201911 ETCBTC-202101 UNIUPUSDT-202107 PSGBTC-201907 KNCBTC-201912 BEARBTC-201905 LOOMBTC-201902 AGIXUSDT-202103 SUSHIDOWNBTC-202001 GRTBTC-202005 PORTOUSDT-202107 ETHBEARUSDT-202108 TRUBTC-202001 BATBTC-202112 DENTBTC-202106 ATOMBTC-201912 CRVBTC-202108 STRAXBTC-202007 CVXUSDT-202107 DLTBTC-201910 ALCXUSDT-202111 HIVEBTC-202105 AUTOUSDT-202109 DAIBTC-202004 GRSBTC-202009 LINKUPBTC-202201 STEEMBTC-201902 FTTUSDT-202106 MLNBTC-202110 GRTBTC-201901 EOSDOWNBTC-201901 EPSBTC-202111 ETHBTC-202012 VETBTC-202106 MLNBTC-201902 SFPBTC-202201 SXPUPBTC-202001 UTKBTC-202108 LITBTC-201910 IMXBTC-201906 FISBTC-201908 BCHABCUSDT-202109 NMRBTC-201905 TOMOBTC-202104 IOTABTC-202110 ONGBTC-201903 TCTBTC-201902 AKROBTC-202106 NKNBTC-202101 AUCTIONBTC-202108 BATBTC-202005 BEARBTC-202101 ADXBTC-202106 NKNBTC-202105 FILDOWNBTC-201912 XVSBTC-201906 CNDBTC-201902 OGBTC-202012 ENJBTC-202104 CTSIBTC-202009 BTCBBTC-201912 SPELLBTC-202011 EASYBTC-201904 IOTXBTC-202003 BTCBBTC-202011 ALICEBTC-201905 XEMUSDT-202109 INJBTC-202011 AVAXBTC-202104 ARUSDT-202107 CRVBTC-201909 BTCBTC-202002 NEARBTC-202105 OXTUSDT-202109 XMRBTC-202112 ANCBTC-202112 AAVEBTC-202006 QKCBTC-201909 SUSHIDOWNBTC-201912 YFIUPBTC-202103 OCEANBTC-201906 FTTBTC-201910 MODBTC-202012 ARDRBTC-202101 BCHUPBTC-202008 LUNABTC-201909 XEMUSDT-202111 FIDABTC-202101 1INCHBTC-202110 NCASHBTC-202006 BTTCBTC-202110 CNDBTC-202106 RVNBTC-201912 WINGBTC-202108 UNIUPBTC-202010 RCNBTC-202010 FIDABTC-202111 POLYBTC-202104 RPXBTC-202003 XRPDOWNBTC-202108 TORNBTC-202009 PIVXUSDT-202111 BAKEBTC-202003 LITBTC-202007 BARBTC-201907 C98BTC-202004 VETBTC-201911 PERPBTC-201906 PAXGBTC-201905 SUSHIUPBTC-201906 GVTBTC-201902 FTTUSDT-202111 PERPBTC-202010 OMGBTC-201903 COTIBTC-202108 SUNBTC-202007 PLABTC-202104 KEEPBTC-201910 WANBTC-201909 NEOBTC-202106 AVAUSDT-202107 EOSBULLBTC-202011 C98USDT-202111 KLAYBTC-202106 ENGBTC-202107 POEBTC-201904 BCPTBTC-201903 GHSTBTC-202006 LINKUPBTC-202005 SNTUSDT-202106 BATBTC-202011 XVGBTC-201910 FUNBTC-201912 FILBTC-201909 AUCTIONBTC-202102 POWRBTC-201902 EPSBTC-201911 CHRBTC-202002 BCDBTC-201901 STORMBTC-201911 BNXBTC-201910 BKRWUSDT-202108 AGIBTC-201910 POABTC-201912 DATABTC-202107 STMXBTC-201903 USDCBTC-202008 ARDRBTC-202010 TRIBEBTC-201909 DGDBTC-201905 PLABTC-201907 GNTBTC-201904 BADGERBTC-201910 DODOBTC-201904 IOTXBTC-201905 GTCBTC-202005 BKRWBTC-201904 STPTUSDT-202107 RLCUSDT-202108 TORNBTC-202011 XNOBTC-202106 ATMBTC-201912 BNBBTC-202101 WRXBTC-201907 REQBTC-201908 XRPBEARBTC-202112 MODUSDT-202106 ALGOBTC-202112 OAXBTC-202010 TRXUPBTC-202011 NUBTC-202007 PYRUSDT-202106 AAVEBTC-201912 QIBTC-202009 DARBTC-202111 XRPBULLBTC-202103 RUNEBTC-202009 TRIGBTC-202011 BRDBTC-201903 SUSDUSDT-202107 NKNBTC-202004 1INCHUPUSDT-202111 MTLBTC-202004 STRAXBTC-202111 IOTXBTC-202008 XRPBTC-202012 DIABTC-201902 VIDTBTC-201907 YOYOBTC-202111 USDPBTC-201906 NULSBTC-202105 AMPBTC-202005 MDABTC-202109 AMPUSDT-202103 BZRXBTC-201901 CTKBTC-201902 WINGSBTC-201904 XECBTC-201910 FLUXBTC-202006 MDAUSDT-202103 BZRXUSDT-202107 DASHBTC-201909 IOTXBTC-202001 MLNBTC-201907 LINKDOWNBTC-201904 BTCBTC-202112 TKOUSDT-202106 ONTUSDT-202106 DENTBTC-201903 XRPBTC-202003 BCHDOWNBTC-201910 CELOBTC-201912 ADADOWNBTC-202106 TRXBTC-201904 TUSDUSDT-202111 ETCUSDT-202103 ENSBTC-202006 YFIUPBTC-202104 MDABTC-201906 GTOBTC-201907 GTCBTC-201903 PAXGBTC-202004 GTCUSDT-202103 AUCTIONBTC-202101 UNIUPBTC-202106 STEEMBTC-202111 EOSUPBTC-202109 ARDRBTC-202012 BEAMUSDT-202107 EVXUSDT-202107 RUNEBTC-201904 GBPBTC-201905 EDOBTC-202010 AAVEBTC-201904 CAKEBTC-202103 ORNBTC-201908 EGLDBTC-202101 SUNBTC-201904 XTZDOWNUSDT-202111 AKROBTC-202201 JUVBTC-202008 GBPBTC-201909 DGDBTC-201907 ATABTC-201907 POEBTC-201908 FETBTC-202006 BCPTBTC-202111 SNTBTC-202010 NPXSUSDT-202107 BTCDOWNBTC-202001 NKNBTC-202008 FISBTC-201901 GLMRBTC-202107 EVXBTC-201907 ILVBTC-202005 BCHBTC-202201 VENBTC-201906 BTSBTC-201910 CELOBTC-202007 FIDABTC-201903 BQXBTC-201911 WINGSBTC-201907 QIBTC-202008 EDOBTC-201903 SNMBTC-201908 EVXBTC-202005 LSKBTC-202109 MTHBTC-201912 BQXUSDT-202103 VIBUSDT-202108 ALPHABTC-202004 AUDBTC-202104 SCBTC-202102 QTUMBTC-201904 AMPBTC-201905 JOEBTC-201908 MOVRBTC-202103 FARMBTC-202107 XTZDOWNBTC-202001 MDXBTC-202105 CVCBTC-201901 UTKUSDT-202108 XMRUSDT-202111 QNTBTC-201905 GNOBTC-202103 MCBTC-201902 CLOAKUSDT-202109 LINKUPBTC-201901 FLOWBTC-202002 WABIBTC-202102 XLMDOWNBTC-201910 AMBBTC-202109 LOKABTC-201910 OSTBTC-201907 MBOXUSDT-202111 GLMBTC-201906 FORUSDT-202103 XLMUPBTC-202011 SXPBTC-201905 SKLBTC-202101 XRPBTC-202001 TRXDOWNUSDT-202108 XRPBEARBTC-202108 FISBTC-202006 BCHDOWNUSDT-202109 ACMBTC-202004 ERDBTC-201909 ACHUSDT-202108 PSGBTC-202201 ANCBTC-201906 PUNDIXBTC-201905 TRBBTC-202011 SYSBTC-201903 ALPACABTC-201910 PNTBTC-202102 KNCBTC-201904 IOSTBTC-202006 ALICEBTC-202010 LPTBTC-201903 ICNBTC-201901 VIABTC-202110 FTMUSDT-202108 EOSDOWNBTC-201905 EVXBTC-202110 CTKBTC-202102 XTZUPUSDT-202107 OMBTC-202105 QLCBTC-201908 ICXBTC-202107 RUNEBTC-202201 LOOMBTC-202009 1INCHUPBTC-201904 SPELLBTC-202002 LINABTC-202007 TNTBTC-202006 ZILBTC-202001 STEEMBTC-201901 FXSBTC-202106 IMXBTC-202103 NMRBTC-201904 KEEPBTC-202010 BCCBTC-202005 INSBTC-202004 KEEPUSDT-202106 MTHBTC-202009 GNTBTC-202107 LUNBTC-201903 RAYBTC-202007 CITYUSDT-202103 CELOBTC-202006 HOTBTC-201902 BCNBTC-202112 SHIBBTC-202007 GTCBTC-202104 HNTBTC-201903 CTSIBTC-202001 OOKIBTC-201908 XLMDOWNBTC-201901 BNBBULLBTC-202111 BQXBTC-201907 XTZBTC-201906 YOYOBTC-201910 RVNBTC-201904 ENGBTC-201908 PONDBTC-201909 BNBUPBTC-201905 C98BTC-202012 ACABTC-201907 NASBTC-202102 ETHBEARBTC-202109 QKCBTC-202112 DCRBTC-202104 NAVBTC-201908 SRMUSDT-202107 GNTBTC-201901 ADABTC-202011 VIABTC-202111 1INCHUPBTC-202010 VITEBTC-201905 TVKUSDT-202109 WINGSBTC-202008 RSRBTC-201904 UTKUSDT-202103 AIONBTC-201911 ASRBTC-202002 PIVXBTC-202104 SNGLSBTC-202103 CHATUSDT-202107 QIBTC-202007 YFIUSDT-202109 LAZIOUSDT-202103 EOSBTC-202104 BCNBTC-201910 FLMBTC-201904 GBPBTC-201912 MINABTC-202008 GBPUSDT-202111 TCTBTC-202106 UTKBTC-202009 FISBTC-202012 STRAXBTC-202110 LAZIOUSDT-202106 1INCHBTC-201904 OAXBTC-202110 BULLBTC-201908 PUNDIXUSDT-202106 CNDBTC-202002 ONEBTC-202005 ENSBTC-202001 TWTBTC-202007 LINABTC-202110 DYDXBTC-202004 CHESSBTC-201901 XVGUSDT-202103 FTMBTC-202110 USTBTC-202109 RAYBTC-202010 RNDRUSDT-202108 BALUSDT-202106 CVCBTC-201910 HBARBTC-201909 MDABTC-202011 THETABTC-202103 CELOBTC-201908 QUICKBTC-201903 NEOUSDT-202108 STPTBTC-201906 BTTCBTC-201902 RSRUSDT-202107 BTCSTBTC-202107 AERGOBTC-202110 LRCBTC-202008 STORJBTC-201912 VOXELBTC-202004 RENBTCBTC-201903 UNIDOWNBTC-202107 XLMUSDT-202107 FXSBTC-202007 PONDBTC-202104 CRVBTC-202101 FILDOWNBTC-202111 WINBTC-201907 ADXBTC-202010 NUBTC-201909 CDTBTC-202009 BUSDBTC-202105 ADAUPBTC-202005 SCRTBTC-202003 ANKRBTC-202104 SRMBTC-202101 ANYBTC-202005 KEEPBTC-202005 ATOMBTC-202105 ETCUSDT-202109 WPRBTC-202105 TCTBTC-202103 KSMBTC-201905 YFIDOWNBTC-202103 ARNBTC-202105 SXPUPBTC-202101 BNBDOWNBTC-201901 PHBBTC-201901 INJBTC-201903 PPTBTC-202004 SNXUSDT-202106 DARBTC-201912 STORMBTC-201912 RLCBTC-201908 NASBTC-202005 AEBTC-202102 XRPUPUSDT-202103 DASHBTC-201904 EASYBTC-202112 AGIBTC-202011 ZENBTC-202106 ALPACAUSDT-202107 ENJBTC-201903 FUNBTC-202008 VTHOBTC-202010 STXBTC-201911 QKCBTC-202010 AKROBTC-201904 ARDRBTC-201908 GRTBTC-201905 SLPBTC-202008 TNTBTC-202106 XTZUPBTC-201910 HIGHUSDT-202106 STRAXBTC-201905 EOSBTC-202001 DEGOBTC-202101 SANDBTC-202003 AMBBTC-202107 GNTBTC-202005 IDEXBTC-202003 GLMRBTC-202101 FARMBTC-201908 ENGBTC-202111 DGDBTC-202011 BAKEBTC-201905 ETHUPBTC-201905 ENGBTC-202105 BTCUPBTC-202104 ERNUSDT-202103 ETHBULLBTC-202106 ICPBTC-202112 DEGOBTC-202006 XTZUPBTC-201905 MCOBTC-202003 PAXGBTC-202003 NPXSBTC-202010 XZCBTC-202007 NPXSBTC-202201 UNIDOWNBTC-202112 NEBLBTC-202111 XRPBULLBTC-201903 LINKUPBTC-202006 MDTBTC-202012 SXPUPBTC-202104 YFIBTC-202004 LINABTC-202002 ACMBTC-201905 ARPABTC-202105 SUBBTC-202108 EDOUSDT-202103 MINABTC-202102 COTIBTC-201908 NBSBTC-201911 XEMBTC-202010 DGBBTC-202103 ALICEBTC-202001 ADABTC-202110 MIRBTC-202004 STMXBTC-202112 IOSTBTC-202105 ASRBTC-202007 BELBTC-202110 DOTDOWNBTC-202004 TROYUSDT-202106 BNBUPBTC-202107 TFUELBTC-202004 1INCHBTC-202001 OMBTC-202101 WPRUSDT-202103 PHXBTC-201912 FLUXBTC-202103 FIROBTC-202201 CDTBTC-202103 BANDBTC-202104 ENSBTC-202103 YFIDOWNBTC-202004 BNBBULLBTC-202109 IOTXBTC-201908 FARMBTC-202008 CLVUSDT-202111 KLAYBTC-202009 ENJBTC-202103 PUNDIXBTC-201909 ILVBTC-201909 PSGUSDT-202108 TRIBEBTC-202011 BAKEBTC-202103 FTTBTC-202002 PORTOUSDT-202109 XECBTC-202111 BNXBTC-202012 GALABTC-202103 THETAUSDT-202109 YFIDOWNBTC-202101 ACABTC-201908 ALGOBTC-202107 VIBEBTC-202006 SNGLSUSDT-202109 RUNEBTC-202110 AUDIOBTC-202201 AXSBTC-202008 AGIXBTC-201911 TRBBTC-201912 KLAYBTC-202008 ILVBTC-201901 TRXUPBTC-202107 LOOMUSDT-202108 TRIBEBTC-201904 FILDOWNBTC-202201 AERGOBTC-202004 AIONUSDT-202103 POLYBTC-201911 WANBTC-202109 NUBTC-202105 EOSBULLBTC-202201 ALGOBTC-201902 TVKBTC-202003 EGLDBTC-201902 XZCBTC-201910 BNBUSDT-202108 LSKBTC-201908 INJBTC-202005 TRXBTC-202106 XRPBULLBTC-202001 CELOBTC-202011 KLAYBTC-202111 DARBTC-201911 FTMBTC-201908 FIDABTC-202003 RNDRBTC-202106 TWTBTC-202010 ROSEUSDT-202107 FRONTBTC-202009 XRPBULLBTC-201904 CLOAKBTC-201901 VIBUSDT-202109 DOTBTC-202010 FLUXBTC-202004 BADGERBTC-202008 NPXSBTC-202109 NEBLBTC-202103 DCRUSDT-202103 VOXELBTC-202110 WAXPBTC-202104 MFTBTC-201903 BRDBTC-202007 EOSBTC-201902 AVABTC-202109 GNOBTC-202102 TLMBTC-202002 KAVABTC-202011 FETBTC-202004 PHABTC-202010 OOKIBTC-202006 BANDBTC-201902 POLSBTC-202003 ADABTC-202009 PONDBTC-202003 DOTDOWNBTC-202010 OOKIBTC-202002 XRPDOWNBTC-202001 AIONUSDT-202106 OXTBTC-201912 TORNBTC-202012 XVSUSDT-202106 ARBTC-202007 COCOSBTC-202001 PONDBTC-201906 XTZDOWNBTC-202201 PONDBTC-202009 CNDBTC-202107 PERPBTC-202201 TFUELBTC-201904 GRSBTC-201901 WOOBTC-202109 GBPBTC-202201 MKRBTC-201906 BTCDOWNBTC-202102 UNIDOWNUSDT-202108 ARPABTC-202008 TKOBTC-202001 ICXBTC-201912 BCHSVBTC-202010 DOGEUSDT-202106 BQXUSDT-202106 ETHDOWNBTC-201905 YFIUPBTC-202201 BURGERBTC-202105 OGBTC-201911 EPSBTC-202105 DREPUSDT-202106 ERDBTC-202001 USDCBTC-202012 BONDUSDT-202111 USDCBTC-201903 GLMBTC-202104 OAXBTC-202005 DLTBTC-201902 ALGOBTC-202109 PYRBTC-202104 FISUSDT-202103 ARKBTC-202006 AGIXBTC-202108 YOYOBTC-202106 DNTBTC-201902 RDNBTC-202003 PERPBTC-202008 ALPHABTC-202007 BTTCBTC-202006 WBTCBTC-202003 PERLUSDT-202108 MBLBTC-201903 CELRBTC-202104 CKBUSDT-202103 XVGUSDT-202107 ANKRBTC-202005 ATABTC-201902 NULSBTC-202011 SXPBTC-202104 ETHBEARBTC-201907 BCHUPBTC-202001 XRPBULLBTC-202111 EZUSDT-202107 DOTDOWNBTC-201909 ACHBTC-202107 QNTBTC-202011 BTCUSDT-202108 WINGSBTC-201911 PIVXUSDT-202106 CHESSUSDT-202106 HSRBTC-202111 EZBTC-201907 DOTDOWNUSDT-202106 OSTBTC-202009 AIONBTC-201907 ADAUPBTC-202108 EURBTC-201906 ALPHABTC-202104 USDSUSDT-202108 KSMBTC-201906 YGGBTC-202003 AUDIOBTC-202109 SKYBTC-202002 XEMBTC-202007 AERGOBTC-201907 CELRUSDT-202107 BTCUPBTC-202107 UNIBTC-202008 API3BTC-201905 LTCDOWNBTC-201901 SANDBTC-202111 ACHBTC-202110 COSBTC-202001 ETHBULLBTC-202001 BTCBTC-201902 KSMUSDT-202106 LOOMBTC-202007 QIBTC-202011 MTHBTC-202007 REPBTC-201908 LUNBTC-201902 LTCUSDT-202109 CNDBTC-202105 LOOMBTC-202010 DEXEBTC-202110 RUNEBTC-201908 UNIBTC-202104 DCRBTC-202012 STXBTC-202111 XRPUPBTC-201912 CHZBTC-202102 BCHSVUSDT-202103 TRXUPBTC-202005 XNOBTC-201906 CRVBTC-202007 RPXBTC-202006 OAXUSDT-202103 SKYBTC-202004 BELBTC-202111 RDNBTC-202008 FETBTC-202104 DGBBTC-202010 CMTUSDT-202103 GHSTBTC-202002 SSVUSDT-202108 BCHUSDT-202106 LTOBTC-202107 PNTBTC-202006 HNTBTC-201911 MDABTC-201909 TRIGBTC-202005 IOTXBTC-202201 RAYBTC-201911 UNIDOWNBTC-202002 AIONBTC-202011 BANDBTC-201906 TRXDOWNBTC-202010 ACAUSDT-202109 ILVBTC-201904 1INCHUPBTC-202003 SANTOSBTC-202008 SSVBTC-202110 MIRBTC-202103 COMPUSDT-202107 CTXCUSDT-202106 STORMBTC-201908 QSPBTC-202008 AAVEDOWNUSDT-202109 IMXBTC-201904 GASBTC-202011 DIABTC-202201 DUSKBTC-202111 CRVBTC-202104 DGBBTC-202104 FLOWBTC-201903 USTBTC-202007 GVTBTC-202003 QNTBTC-202201 BCHABCBTC-202108 NASBTC-201909 XRPBTC-202002 AGLDBTC-201911 AEBTC-201904 GOUSDT-202108 AAVEDOWNBTC-202004 AGIXBTC-201908 UNIBTC-202112 COCOSBTC-202002 FLMUSDT-202108 EOSUPUSDT-202108 QIBTC-201910 CFXBTC-202108 BONDBTC-202005 BTGBTC-201909 XRPBULLBTC-202005 PLABTC-202105 WINGSBTC-201912 NUBTC-202109 REEFBTC-202104 LTOBTC-201912 TNBUSDT-202108 MOVRBTC-202008 EZBTC-201905 ETHUPBTC-201909 GRTBTC-202106 GASBTC-202102 SNXBTC-202012 ADAUPBTC-202010 KNCBTC-202107 OMBTC-202004 C98BTC-202001 NKNUSDT-202103 DGDBTC-202107 ADXBTC-202003 AAVEUPUSDT-202109 WABIBTC-201906 MTHBTC-202102 EOSBTC-202111 ALPACABTC-201904 MTHUSDT-202103 MITHBTC-202107 BCHUPBTC-201901 POWRBTC-201901 TNBBTC-202004 USDSBTC-201910 CHATBTC-202103 1INCHUPUSDT-202107 1INCHUSDT-202106 NANOBTC-202009 ENJBTC-202006 GRSBTC-202105 AKROBTC-202112 TKOUSDT-202109 CHZBTC-202008 LENDUSDT-202111 CVPBTC-202009 IDEXBTC-201901 BALBTC-202111 JUVUSDT-202103 YFIUPBTC-202011 WAXPBTC-202107 WINGBTC-202001 YFIUPBTC-202003 BNTBTC-202007 RAMPBTC-201911 COSBTC-202106 WINGSBTC-202110 CAKEBTC-201903 CFXBTC-202009 GLMRBTC-202103 SCBTC-202201 WPRBTC-202002 HIGHBTC-202111 SSVBTC-201907 WNXMBTC-202101 PIVXBTC-202011 1INCHDOWNUSDT-202103 LOKABTC-202109 BCCBTC-202008 FLUXBTC-202010 RAYBTC-201906 RAMPBTC-202112 DNTBTC-202101 XNOBTC-202107 SCRTUSDT-202106 TCTBTC-201909 GTOBTC-201906 XLMDOWNBTC-202108 STPTBTC-202009 TRXUPUSDT-202109 VGXBTC-201903 DUSKBTC-202104 SXPDOWNBTC-201909 ORNBTC-201906 ICXBTC-201909 GHSTBTC-202201 AGLDBTC-202002 YFIIBTC-201901 WAXPBTC-202002 BAKEBTC-202006 LITBTC-202107 DCRBTC-202003 EPSBTC-202007 VITEBTC-202108 STEEMBTC-202103 REQBTC-202006 ENSBTC-201902 LRCBTC-202102 AUCTIONBTC-202103 XRPBEARBTC-202111 BNTBTC-202009 GBPBTC-202005 EVXBTC-201906 GTCUSDT-202109 MITHBTC-202110 BQXBTC-202102 RSRUSDT-202106 GRTBTC-202003 LINKUPBTC-202012 SNMBTC-201911 RSRBTC-202008 DGDBTC-201912 SXPUPBTC-201905 UNIUPBTC-202006 SUSHIBTC-202106 BTGBTC-201903 PHXUSDT-202109 BTGBTC-202001 CVPBTC-202005 CFXBTC-201901 QTUMBTC-201902 TNBBTC-201907 BTSBTC-201908 CELRBTC-201907 QUICKUSDT-202108 EOSBULLBTC-202009 AGIBTC-202007 BNXBTC-202101 ALCXBTC-201908 TRUBTC-201910 ILVBTC-202201 ARNBTC-201909 AVABTC-202003 WRXBTC-201906 ELFBTC-202002 GBPUSDT-202103 FIOBTC-202001 AAVEDOWNUSDT-202106 DUSKBTC-202003 BZRXUSDT-202111 TNBBTC-201908 AGIXBTC-202012 WINGBTC-201911 OMGBTC-202201 XTZDOWNBTC-201901 POLSBTC-202107 WINBTC-202201 TRXBTC-202012 UNIBTC-201901 PHABTC-202108 NAVBTC-202111 PONDBTC-202004 AKROBTC-201905 BADGERBTC-202005 SXPBTC-201908 BCHUPBTC-201909 BANDBTC-201901 DREPUSDT-202107 AUDIOBTC-202008 OSTBTC-202110 EOSBEARUSDT-202111 FUELBTC-201907 IRISBTC-201904 RVNBTC-202111 REEFBTC-201906 SUPERBTC-202006 ASTBTC-202006 C98BTC-202009 SXPBTC-202112 TRIGBTC-202101 LINKUPBTC-202102 XMRBTC-202001 SUSHIBTC-201904 DOTBTC-202112 UNIUPBTC-201906 BANDBTC-202110 TNTBTC-202107 VIBBTC-201906 TRXUPBTC-201908 SCBTC-202103 MBOXBTC-202112 STXBTC-202102 USDSBBTC-202009 SUSHIDOWNBTC-201908 PEOPLEUSDT-202103 COSUSDT-202108 STORMBTC-202109 MFTBTC-201905 GTCBTC-202106 BNTBTC-202105 LTOBTC-202007 EASYBTC-202003 ACHBTC-201905 CKBBTC-202002 MASKBTC-202002 AUDIOUSDT-202109 ERDBTC-202201 BICOBTC-201906 XLMBTC-202006 YOYOUSDT-202103 RLCBTC-201909 USDSBUSDT-202109 RENBTCBTC-202108 AAVEDOWNBTC-202104 QUICKBTC-201901 PAXBTC-202010 LOKABTC-202108 AAVEDOWNBTC-202107 CHRBTC-201910 SXPUPBTC-202108 EURBTC-202003 XNOBTC-202009 BONDBTC-202007 FIDABTC-202010 BLZBTC-201910 NUBTC-202201 FISBTC-202004 ASTBTC-201902 KP3RBTC-202003 NEARBTC-201901 QKCBTC-201906 TRXUPBTC-201910 PNTBTC-201901 VIBBTC-202006 DREPBTC-201906 DOCKBTC-202104 ICXBTC-201907 BTCUPBTC-202006 CFXBTC-201911 AVAXBTC-201911 NCASHUSDT-202108 AAVEUPBTC-202112 RLCBTC-202111 FILUPBTC-201912 OSTBTC-201910 ONGBTC-202001 AIONBTC-202002 VGXBTC-201909 AUDIOBTC-202005 MASKBTC-202109 ETHBULLBTC-202110 DGDBTC-202108 PERLUSDT-202106 WRXBTC-201904 LITBTC-202001 HSRBTC-202007 XRPBULLBTC-202106 LTOBTC-202106 STRAXBTC-202012 NEOBTC-202002 BCCBTC-201906 DAIBTC-201908 VIDTBTC-201902 MITHUSDT-202103 SSVBTC-202002 PPTBTC-202001 BNBBULLBTC-202006 BCPTBTC-201911 GOBTC-202112 FIDABTC-201901 LPTBTC-202104 ALGOUSDT-202111 SALTBTC-202112 BADGERBTC-202105 QKCBTC-202004 ANKRBTC-202008 XMRUSDT-202109 PLABTC-202108 RADBTC-201905 JSTUSDT-202109 ADAUSDT-202108 BANDBTC-202012 XTZUPBTC-202108 XEMBTC-202106 SXPBTC-201909 STORMBTC-202105 DYDXBTC-201911 BTCBBTC-201911 INJBTC-202201 OGBTC-202104 STXBTC-201909 TROYBTC-201911 ASTBTC-201906 USDSBTC-202102 ORNBTC-201904 EOSBULLBTC-202112 BUSDBTC-201903 CFXBTC-201906 GHSTUSDT-202106 REEFBTC-202110 TRXBTC-202003 XRPBEARBTC-202201 CMTBTC-201907 DASHBTC-201901 OAXUSDT-202108 ONEBTC-202003 QSPBTC-201902 CAKEBTC-201909 LSKBTC-202106 ZENBTC-201905 BNXUSDT-202108 BTCSTBTC-202012 CLOAKBTC-202006 BOTBTC-202201 UNFIBTC-201906 VENBTC-202201 KEYBTC-202112 USDPBTC-201908 LOKABTC-201909 CTSIBTC-202112 LINKDOWNBTC-201901 SALTBTC-201906 KEYUSDT-202108 ANKRBTC-202111 CTXCBTC-202103 BLZBTC-202009 TROYBTC-202105 LTCDOWNBTC-202002 STXBTC-201906 VETBTC-202007 HCUSDT-202103 PLABTC-202111 ATABTC-202011 BZRXUSDT-202106 BARBTC-202004 TFUELBTC-201903 FARMBTC-202012 OAXBTC-202008 PYRBTC-201901 UNIUPUSDT-202106 RENBTCBTC-202102 TOMOBTC-202107 EGLDBTC-201909 ILVBTC-202006 AAVEBTC-202201 XLMUPBTC-202109 KNCUSDT-202111 ENGBTC-202112 NEARBTC-202012 ERNBTC-202005 VGXBTC-201901 TROYBTC-202010 VIDTBTC-201903 INJBTC-201904 PIVXBTC-201903 RENBTCBTC-202011 ARKBTC-201910 POWRBTC-202003 SUSHIBTC-202201 SXPDOWNUSDT-202108 TRBUSDT-202109 AAVEUPBTC-202101 LPTBTC-202012 WABIBTC-202009 CVXBTC-202106 NULSUSDT-202109 MBLUSDT-202109 ICXBTC-202001 IDEXBTC-201908 EZBTC-201901 BATUSDT-202107 FUNBTC-202109 QLCBTC-201901 CKBBTC-202107 GNTBTC-202106 SNXBTC-201906 PERPBTC-202108 NUUSDT-202106 EOSDOWNBTC-202011 BELBTC-201908 BTGBTC-202201 KLAYBTC-202002 AGIBTC-202003 ETCUSDT-202107 AUDIOBTC-201911 SCRTBTC-202005 KP3RUSDT-202109 COSBTC-201903 RAREBTC-202107 FUNBTC-202103 AGLDBTC-202104 BTSBTC-201901 KNCBTC-201906 EOSBULLBTC-202106 RLCBTC-202108 BNBBULLBTC-202107 NEOBTC-202111 APPCUSDT-202111 XVSBTC-201907 GNTBTC-202105 CRVUSDT-202107 STORJUSDT-202106 BCDBTC-202003 BULLBTC-201909 MCOBTC-202002 VENBTC-202104 GALAUSDT-202107 WINGSUSDT-202108 TRXBTC-202103 WINGBTC-201906 BNBUPBTC-201909 VIABTC-202107 ARDRBTC-202201 SUSHIDOWNBTC-201907 UNIUPBTC-201905 WRXBTC-202110 PAXGBTC-202201 UNIUPBTC-202004 RUNEBTC-201903 KP3RBTC-201904 ICPUSDT-202106 BURGERBTC-202005 BRDUSDT-202107 MCBTC-202004 FLMUSDT-202107 JOEBTC-201904 LENDBTC-201904 PHXBTC-202007 CDTBTC-202104 ALICEUSDT-202106 TRXDOWNBTC-202003 PONDBTC-202010 MDXBTC-201902 IRISBTC-202107 PERLBTC-202101 PLAUSDT-202111 CELRBTC-202001 SXPUPBTC-202106 JASMYUSDT-202111 C98BTC-202105 CLOAKUSDT-202106 HIGHBTC-202106 KMDUSDT-202107 KAVABTC-202109 LITBTC-202104 ONTBTC-202105 EPSBTC-202103 BARBTC-201912 SNXBTC-202010 OSTBTC-201911 ONEBTC-202002 VIBBTC-202104 WPRBTC-202001 CVCBTC-202111 CHRUSDT-202103 EGLDBTC-202105 FORBTC-202112 ALPINEBTC-202006 ARNBTC-201908 DAIBTC-202002 THETABTC-202002 ZECBTC-202112 OAXBTC-202001 MBLBTC-202001 VOXELBTC-202003 VOXELBTC-202011 NXSBTC-202104 AVAXUSDT-202108 ALCXBTC-202110 SLPBTC-201902 DASHBTC-202201 CLVUSDT-202107 ALPHABTC-202110 VITEBTC-202109 XECBTC-201908 SXPUPBTC-202012 AUTOBTC-202109 AMPBTC-202002 DOTUSDT-202106 BTCUPBTC-202110 CKBBTC-202009 TNTBTC-202012 DCRUSDT-202111 WTCBTC-202006 PAXGBTC-201908 XTZUPBTC-202102 MLNBTC-202006 WINUSDT-202111 BNBBEARBTC-201903 CELOBTC-202103 QNTBTC-201911 GHSTBTC-201911 APPCBTC-202001 SCRTBTC-202103 STRAXBTC-202104 OOKIBTC-202005 KAVABTC-202006 FILDOWNBTC-201906 RUNEBTC-201912 MLNBTC-202108 AAVEUSDT-202106 CTKBTC-202008 VOXELBTC-202002 SKYBTC-201903 WAVESBTC-202104 SUSDUSDT-202103 RGTUSDT-202111 ZENBTC-201912 PSGBTC-201908 DUSKBTC-201906 BTCDOWNBTC-202008 UNIBTC-202102 OCEANBTC-202111 OMGBTC-202103 API3BTC-201902 XNOBTC-201901 DIABTC-201901 UNFIBTC-201911 DODOBTC-201912 SXPDOWNBTC-201911 ASTBTC-201903 ADADOWNBTC-201912 XTZDOWNBTC-202107 BANDBTC-202005 WINGSBTC-202106 SUNBTC-202002 MFTBTC-202110 PERPBTC-202004 MTLBTC-201912 MTLBTC-202101 TRXUSDT-202109 XEMBTC-202105 BCHABCBTC-202109 ETHBULLUSDT-202111 SLPBTC-202111 DGDBTC-202201 MASKBTC-202104 MTLBTC-202002 JASMYUSDT-202107 LTCDOWNBTC-202108 BONDBTC-202011 KEYBTC-201907 MBOXBTC-202105 IOSTBTC-202201 SNGLSBTC-202107 TRBUSDT-202107 USDSBTC-202001 FETBTC-202107 FILUSDT-202103 PNTBTC-202010 PAXBTC-202111 PORTOUSDT-202106 HIGHBTC-202102 TRIBEBTC-202009 ETHBTC-201905 RENBTCUSDT-202109 USDSBTC-201911 IRISBTC-201901 OGBTC-201903 TWTBTC-201906 CKBBTC-202005 BAKEBTC-202101 AVABTC-202002 SKLBTC-202010 NBSUSDT-202108 XRPUPUSDT-202108 VIDTBTC-201909 HBARBTC-202004 PHABTC-202109 EASYBTC-201912 IRISBTC-201906 BONDBTC-201911 AUTOBTC-201905 XRPBTC-202011 THETABTC-202003 YFIUPBTC-202007 TNBBTC-201910 ENJBTC-202005 VIABTC-201902 CHATBTC-202007 DOCKBTC-202008 BQXBTC-201902 RAYBTC-202108 ETHBTC-202112 YFIBTC-202006 AGLDBTC-202106 QIUSDT-202106 VIDTBTC-202103 SNXBTC-202103 FILUPBTC-201903 QTUMBTC-201910 GTOBTC-201902 BTCBTC-202101 AXSBTC-202106 GNTUSDT-202111 MTHUSDT-202106 DATABTC-202006 CHRBTC-201902 COTIBTC-202102 VOXELUSDT-202108 GASBTC-202107 MITHUSDT-202106 REEFBTC-202012 AGLDBTC-202102 XLMDOWNBTC-202201 EURUSDT-202109 FIDABTC-201910 NEBLUSDT-202106 PHXBTC-202102 RLCBTC-201901 GLMRBTC-202001 GNTBTC-202001 HARDBTC-202005 HARDBTC-201906 DOTUPUSDT-202109 ETHUPBTC-202105 ARPABTC-201905 AMBBTC-201908 RAYBTC-202011 REQBTC-202111 WINGBTC-201909 QIBTC-202003 DFBTC-202001 ENGBTC-202006 WINGSBTC-201902 ALICEBTC-202009 XEMBTC-202108 TROYUSDT-202103 TRIGUSDT-202103 ACMBTC-202110 TNTBTC-201905 BARBTC-202006 DOGEBTC-202108 COCOSBTC-202201 DENTBTC-202112 ZENBTC-202111 LOOMBTC-202107 HIGHBTC-201907 ALICEUSDT-202107 PERPBTC-201904 GNTBTC-202102 SPELLBTC-202012 LPTUSDT-202103 RENBTCBTC-202201 BTCSTBTC-201911 COMPBTC-201904 WABIBTC-201908 ERDBTC-202012 ALPHABTC-202005 RAYBTC-201903 EDOUSDT-202108 ACMUSDT-202103 STORMBTC-202201 SNXBTC-201911 VIABTC-202006 DEXEBTC-201911 ETHDOWNBTC-202010 1INCHUPBTC-201903 BURGERBTC-202104 SPELLBTC-201902 PUNDIXBTC-202003 MODBTC-201902 LINKDOWNBTC-202102 ONEUSDT-202106 PPTBTC-202009 DOTUSDT-202111 HSRBTC-202102 VIBBTC-201911 NBSBTC-202112 RNDRBTC-202006 REPBTC-202011 BTGBTC-202010 ADXBTC-202008 CVPBTC-202106 SXPBTC-202101 ADABTC-202004 MODBTC-201912 RVNBTC-202110 SCRTBTC-201906 THETABTC-202107 FIOBTC-201907 QUICKBTC-202106 AIONBTC-201909 LINKBTC-201907 BTTCBTC-202111 NXSUSDT-202106 YFIIBTC-202005 ALGOBTC-202004 DENTBTC-202201 AAVEBTC-201907 ICXBTC-201901 GTCBTC-202012 CTXCBTC-201907 OGBTC-202006 GTCBTC-202002 SNTBTC-202004 ZILBTC-202007 STRAXBTC-202102 RCNBTC-201903 FLMBTC-202201 FIROBTC-202110 FETBTC-202002 PHABTC-201911 BNBBTC-202111 AAVEDOWNBTC-202105 NEBLBTC-202104 XEMBTC-201903 ORNBTC-202102 LUNBTC-202109 FTMUSDT-202107 KMDBTC-202007 TWTBTC-202104 CTXCUSDT-202103 SANDBTC-201907 ALPHABTC-201906 SXPUPUSDT-202103 JOEBTC-202002 EOSDOWNBTC-202105 ANTBTC-202112 PAXGBTC-202108 ICNBTC-202005 WPRBTC-201906 WAXPBTC-201906 LINABTC-202012 GHSTBTC-202008 EOSBEARBTC-202104 HSRUSDT-202111 MLNBTC-202008 AIONBTC-202103 SPELLBTC-202102 EOSBTC-202201 KSMUSDT-202103 DOTBTC-201907 TFUELBTC-201905 KEEPBTC-202004 CNDUSDT-202111 OXTUSDT-202108 GNTUSDT-202103 WINUSDT-202108 FARMBTC-202009 SOLBTC-202102 CFXBTC-202002 QUICKUSDT-202103 QKCBTC-202104 TUSDBTC-202101 PPTBTC-202111 DIAUSDT-202103 RADBTC-202108 ARBTC-202106 NMRBTC-202011 DOTDOWNBTC-201903 BZRXBTC-201910 UNFIUSDT-202107 GRSBTC-202003 RENBTCUSDT-202106 HIGHBTC-202005 ZECBTC-202108 RENBTCUSDT-202111 CITYBTC-202106 PIVXBTC-202005 TROYBTC-201912 WANBTC-202006 AVABTC-202006 XVGBTC-202005 BTCSTBTC-201906 STRAXBTC-201907 ONGBTC-201906 AUDBTC-202109 KMDBTC-202104 QKCBTC-202007 CLVBTC-202112 SFPBTC-202003 FTMBTC-202101 ANTBTC-202110 BONDBTC-202104 WINBTC-202102 XVGBTC-201908 ERNUSDT-202106 PONDBTC-201910 COMPUSDT-202111 BRDBTC-202011 VENBTC-201911 IRISBTC-201907 RENBTCBTC-201902 MBLBTC-202102 PSGBTC-201905 CFXBTC-202007 KLAYBTC-202003 C98BTC-202003 LINKUSDT-202103 CVXBTC-202001 UNIUPUSDT-202111 FILDOWNUSDT-202107 INSBTC-202109 DOTBTC-202102 SALTBTC-202012 OMGBTC-201906 EOSUPBTC-202002 TRXUPUSDT-202106 BCHDOWNBTC-201908 TRXBTC-201912 EDOBTC-202009 JASMYBTC-202105 PERLBTC-202003 ANTBTC-201902 BUSDBTC-202104 QLCUSDT-202107 1INCHDOWNUSDT-202107 EDOBTC-201911 DCRBTC-202101 POEBTC-202012 TRXDOWNBTC-202005 KSMBTC-201902 SNTBTC-202003 LTOUSDT-202107 ARPABTC-202110 EOSUPBTC-201906 PAXGBTC-202011 SUNBTC-202008 TKOBTC-201906 AMBBTC-201907 SANDBTC-201908 BICOBTC-202111 CHZBTC-202010 ASRBTC-202001 FLMUSDT-202106 CLVBTC-202006 BNBBTC-202102 DREPBTC-201909 SCBTC-202105 LTCUPBTC-202101 ZENBTC-202110 OMUSDT-202111 EVXBTC-202106 MIRBTC-201906 LOKABTC-202007 ONTBTC-202004 EDOUSDT-202111 EZUSDT-202111 IOTABTC-201904 XMRBTC-201904 VENBTC-202005 LITBTC-202002 FLMBTC-202109 CITYUSDT-202108 ADAUPBTC-202101 FILDOWNBTC-202010 LUNAUSDT-202111 RUNEUSDT-202106 NASBTC-202004 MDABTC-202106 CHATBTC-202106 SANTOSBTC-201901 TVKBTC-202105 ROSEBTC-202006 XLMUPBTC-202005 SOLBTC-202112 BUSDBTC-202111 ZENBTC-202107 ELFBTC-201902 AKROBTC-202009 TRXBTC-202007 AUDIOBTC-202011 AUDBTC-201901 TNBBTC-202005 HNTBTC-201912 ACHBTC-202012 IMXBTC-202012 CVCUSDT-202109 ONEBTC-201904 PIVXBTC-202101 COTIBTC-202104 CNDBTC-202110 KEYBTC-202005 AAVEUPBTC-201907 ADADOWNUSDT-202109 WRXBTC-201905 REPBTC-201901 MANABTC-201903 XEMUSDT-202106 POLYBTC-202009 OCEANBTC-202001 XVGBTC-202106 APPCBTC-202002 LRCUSDT-202111 FIDAUSDT-202111 EASYBTC-202010 OSTBTC-201903 EOSUSDT-202111 HSRBTC-202112 MBOXBTC-202011 FIROBTC-202003 GRSBTC-202008 BQXUSDT-202107 INSBTC-201903 VETUSDT-202106 PYRUSDT-202107 LENDBTC-202110 FTTBTC-202112 TOMOBTC-202110 CKBBTC-202103 GNTBTC-201907 BARBTC-201908 MDTBTC-201902 LINKBTC-202103 QSPBTC-202004 FUELBTC-202008 OXTBTC-201907 TWTBTC-201907 BEAMBTC-202110 BCHBTC-202001 KMDBTC-202009 BTTCBTC-201901 CTKBTC-201908 ARPABTC-202002 JOEBTC-202005 UNFIUSDT-202111 CKBBTC-202006 ETHBULLBTC-202201 REQBTC-202009 SXPUPBTC-202111 OCEANUSDT-202109 DYDXBTC-202112 ETHBEARBTC-201908 BCDBTC-201903 UMABTC-202003 ADADOWNBTC-201908 TWTUSDT-202107 YFIIBTC-202002 WANBTC-201906 DYDXBTC-201912 GXSBTC-202106 TFUELBTC-201902 DENTBTC-202110 YFIBTC-202112 RENBTC-202105 IOSTBTC-202110 NEARBTC-201910 TRIBEBTC-202112 ICPBTC-202106 TRXUPBTC-202101 NAVBTC-202007 BURGERBTC-202002 GTCBTC-202010 POLYBTC-201906 RSRBTC-202106 TWTBTC-201904 XLMUPBTC-201903 NXSUSDT-202103 CELOBTC-202004 EZBTC-202104 USTUSDT-202108 ETHBTC-202107 ANYBTC-201903 RSRBTC-202103 TVKBTC-202005 GNTBTC-201902 ALCXBTC-201910 ATABTC-201901 FORTHBTC-201904 LOOMBTC-202110 WINUSDT-202106 FILUPBTC-201906 CRVBTC-201906 XMRUSDT-202107 VOXELBTC-202009 AGIXBTC-201905 ASTBTC-201904 ICNBTC-201912 MDABTC-202111 BANDBTC-201904 FUNBTC-202010 XVSUSDT-202107 ADABTC-202107 HSRBTC-202010 ANKRBTC-202003 ALPHAUSDT-202108 XZCBTC-202006 SXPUSDT-202111 HIGHBTC-201905 POEBTC-202107 HIGHBTC-201901 SKYBTC-202009 AMBUSDT-202103 BTCBTC-202005 BNTUSDT-202111 ADXUSDT-202103 FILUPBTC-202112 IMXBTC-201908 IOTABTC-202106 STORMUSDT-202108 FIOBTC-202005 EZUSDT-202106 CKBBTC-202004 GOBTC-201901 USDPBTC-202003 TKOBTC-202112 AAVEUPBTC-202010 LPTBTC-202106 CHESSBTC-202006 ICXBTC-202002 TNBBTC-201901 NEBLBTC-201904 PHABTC-202107 AVAXBTC-201906 BELBTC-202104 BTTBTC-201907 NMRBTC-201911 HNTBTC-202101 SYSBTC-202103 ANTBTC-202109 PLAUSDT-202106 NEBLBTC-202005 BEARBTC-202104 MCOBTC-202103 LINKUPBTC-201906 EDOBTC-202011 MKRUSDT-202111 POLSBTC-202012 ZENBTC-201901 BCHUPBTC-202111 IRISBTC-202012 DEXEBTC-201905 NAVBTC-202108 STORJBTC-202110 BCHBTC-201910 ICXBTC-202102 PEOPLEBTC-202112 CHATBTC-202001 JASMYBTC-201912 CHESSBTC-202008 XEMUSDT-202108 STPTBTC-202111 VIBBTC-202106 SNGLSBTC-202009 CFXUSDT-202109 OMBTC-202010 NEOUSDT-202111 AVABTC-202110 LINKUPBTC-202003 USTBTC-202009 TKOBTC-202002 FILDOWNBTC-202011 OOKIBTC-202106 COSBTC-201909 GRSBTC-202004 OAXBTC-202009 HIVEBTC-202005 POABTC-202111 ADAUPBTC-202111 MKRUSDT-202103 FILBTC-202107 ILVBTC-201907 DODOBTC-202003 BNXBTC-201906 NCASHBTC-202110 ALPINEBTC-202112 POEBTC-201903 USTBTC-202111 PHBBTC-202012 CLVBTC-202108 DEXEBTC-202006 OMBTC-201901 XMRBTC-202011 ICNBTC-202002 SALTBTC-202005 SXPDOWNBTC-202104 WRXUSDT-202106 VGXBTC-201904 ETHBULLBTC-202004 AVABTC-202004 SKYBTC-202010 NBSBTC-201908 CVCBTC-202006 VIDTBTC-202012 SUNBTC-202108 AUTOBTC-201906 GLMRBTC-201912 GASUSDT-202111 GALABTC-201908 EPSBTC-202011 XECBTC-202112 SANDUSDT-202107 NBSBTC-202008 LAZIOBTC-202110 GTCBTC-202108 HBARBTC-202011 LINKBTC-202004 HIVEBTC-202011 SUSDBTC-201910 CNDBTC-202003 REEFBTC-202001 DOTUPBTC-201911 EOSUPBTC-202103 ETCBTC-202003 ASRBTC-201908 FORBTC-202011 WOOBTC-202004 IDEXBTC-201907 ANYBTC-202101 OAXUSDT-202111 ETHDOWNBTC-202005 MKRBTC-202201 XVGBTC-202008 WPRUSDT-202111 NCASHBTC-202109 GXSBTC-201912 KMDBTC-202110 AAVEUPUSDT-202103 ETHBTC-201904 JOEBTC-201906 IOTAUSDT-202106 PROMBTC-201907 PEOPLEBTC-202011 LTCDOWNBTC-202109 REEFBTC-202006 LUNABTC-202111 NAVBTC-202201 KP3RBTC-201902 CHESSBTC-202111 HBARUSDT-202106 ARPABTC-202006 ALPHABTC-202003 BAKEBTC-202201 POABTC-202106 COTIBTC-201902 AAVEDOWNBTC-201903 ASTBTC-202106 DOTDOWNUSDT-202109 KAVABTC-202105 OCEANBTC-202010 CNDUSDT-202103 AVABTC-202106 GNTBTC-202004 WBTCBTC-202004 TRBBTC-202104 LTOBTC-201906 BOTBTC-202005 AUCTIONBTC-201901 NEBLBTC-202009 NXSBTC-202110 ONGBTC-202005 ANCBTC-201912 XNOBTC-201908 ARPABTC-202112 MCUSDT-202107 UNIDOWNBTC-201905 MDABTC-202007 CITYBTC-201910 ASRBTC-201904 HCBTC-202111 ZRXBTC-201901 TRIBEBTC-202005 RAREBTC-202011 DEGOBTC-202007 BCHABCBTC-202009 BNBBULLBTC-202011 POLSBTC-202108 PUNDIXBTC-201901 BANDBTC-202002 NANOBTC-202112 OMBTC-201911 CVXBTC-201910 JUVBTC-202010 AKROBTC-201911 AERGOBTC-202009 SUPERBTC-202012 YGGBTC-202103 VENBTC-202003 DOGEBTC-201910 BTSBTC-202103 NMRBTC-202109 BADGERBTC-202111 SNXBTC-202005 AGLDUSDT-202107 DGDBTC-202109 ENSBTC-202010 THETABTC-201905 BCHABCBTC-202007 LITBTC-201904 MDXUSDT-202106 POEUSDT-202107 TRXUSDT-202111 IOTXBTC-202006 COSBTC-202105 CVCBTC-202008 ASTBTC-202007 TKOBTC-202110 DEXEBTC-202008 XTZUPBTC-202001 BTCBTC-201910 ANCBTC-202012 BCNBTC-202108 MBLBTC-201912 MINABTC-202001 QLCBTC-201907 ANTBTC-202009 IRISBTC-202102 NBSBTC-202103 DEXEBTC-201902 SCBTC-202109 AGLDBTC-202108 EZBTC-201904 USDSBBTC-202201 ETHDOWNBTC-201901 QKCBTC-202103 STORMBTC-202111 HCUSDT-202108 MFTBTC-202109 ACABTC-202003 NAVBTC-201904 WINGUSDT-202107 BATBTC-201904 BADGERBTC-202102 MCBTC-202107 RAYBTC-202106 SNTBTC-201904 KSMBTC-202107 COSBTC-201907 APPCBTC-201908 XLMUPBTC-201901 BTCUPBTC-202106 1INCHDOWNBTC-202005 UTKUSDT-202107 DEXEUSDT-202108 EOSUSDT-202106 AUDIOBTC-201910 AXSUSDT-202106 XVSBTC-202105 FISBTC-202107 POWRBTC-202006 THETABTC-202105 EOSBULLBTC-202006 USDSUSDT-202106 NEBLBTC-201907 CHZBTC-201912 LINKBTC-202002 QSPUSDT-202103 FIDABTC-201902 BCPTUSDT-202108 OCEANBTC-201912 UNFIBTC-202108 WANBTC-202201 KP3RBTC-202008 XTZDOWNBTC-201906 FIOBTC-201911 STEEMBTC-202002 BNTBTC-202011 RENBTCBTC-201909 ICNBTC-202003 VETBTC-202110 JSTBTC-202101 PUNDIXBTC-202201 NEBLUSDT-202109 SRMBTC-201908 YOYOBTC-202004 MATICBTC-202105 DENTBTC-202010 ICPBTC-201910 ALGOUSDT-202103 EGLDBTC-202012 GHSTBTC-202112 BOTBTC-201904 MCBTC-202005 BNXBTC-201907 WANBTC-202110 FTTBTC-202201 CRVBTC-202003 FUELBTC-202009 UNIDOWNBTC-202001 CLVBTC-202111 ETHUPBTC-202008 GBPBTC-202001 PNTBTC-202005 PERLBTC-202011 BTTCBTC-202004 USTBTC-201910 BTSBTC-202003 BEAMBTC-202105 EZBTC-202008 LINKDOWNBTC-202106 AEBTC-201905 INJBTC-202007 LINABTC-202104 MLNUSDT-202106 MDTUSDT-202107 USDPBTC-202109 LSKBTC-202010 JSTBTC-201904 EPSBTC-202112 SUSHIDOWNBTC-201905 EVXBTC-202001 FILBTC-202010 FILUPBTC-202101 EDOBTC-201904 ARKBTC-202110 QLCBTC-202108 NEOBTC-202109 1INCHUPBTC-202005 STXBTC-201910 ARDRBTC-202006 PERPBTC-201912 BNTBTC-201910 AVAXUSDT-202103 ALPINEBTC-202002 RENBTCBTC-202110 AUDIOBTC-201912 AAVEDOWNBTC-202112 KSMUSDT-202109 SUSDUSDT-202109 FARMUSDT-202108 LTCUPBTC-202001 POABTC-202002 BZRXBTC-202111 AERGOBTC-202201 XZCBTC-202002 XLMBTC-202109 COCOSBTC-202107 VITEBTC-201909 QNTBTC-202108 QIBTC-202102 STMXBTC-202002 GASUSDT-202107 SCRTBTC-202006 BTTBTC-202109 MDXBTC-202104 USDPBTC-201909 XRPUPUSDT-202111 SANDBTC-202006 TKOBTC-202106 SXPBTC-201910 FILDOWNBTC-202109 INSBTC-202111 PYRBTC-202107 RADBTC-202104 INSUSDT-202111 CLOAKBTC-201911 ACABTC-201909 GTOBTC-202111 LTCDOWNBTC-202001 DODOBTC-201902 ENGBTC-201902 GTOBTC-202105 OAXBTC-201907 LSKBTC-202108 ARPABTC-202102 PIVXBTC-202106 CHESSBTC-202005 AIONBTC-202010 ARBTC-202001 COMPBTC-202101 XRPBULLUSDT-202109 TOMOUSDT-202106 OSTBTC-201902 TOMOBTC-202010 VETBTC-202102 FTMBTC-201905 VITEBTC-202012 SANTOSBTC-202011 ANCBTC-201904 BEAMUSDT-202109 INSBTC-201907 OOKIBTC-202009 GXSBTC-202103 BCHABCBTC-202112 LUNBTC-202201 TCTBTC-202003 BOTBTC-201905 AEBTC-202201 XEMBTC-202012 AIONBTC-202012 RAYBTC-202201 RAYUSDT-202106 SUSDUSDT-202106 XRPUPBTC-202110 OGNBTC-201908 KEYBTC-202109 WPRBTC-202109 DOTDOWNBTC-202201 BTCUPBTC-201912 TOMOBTC-201909 ETCBTC-202104 ZRXUSDT-202107 XRPBULLBTC-201906 ROSEBTC-202002 BETABTC-202005 NEBLBTC-201909 TRUUSDT-202109 SFPBTC-202112 IOTABTC-201912 ALPACABTC-201907 EOSBTC-201903 BTSBTC-202008 IOSTBTC-202001 CTSIBTC-202004 RCNBTC-201902 SNMBTC-202005 CVCUSDT-202106 BADGERBTC-202009 WANBTC-202112 POLYBTC-202107 CELOBTC-202009 VIABTC-202010 XLMUPUSDT-202103 AMBBTC-202008 TROYBTC-202103 AKROBTC-201908 AGLDBTC-202107 PHBBTC-202111 CTXCBTC-202106 GVTBTC-201912 LINKDOWNBTC-201908 IRISBTC-201905 KAVABTC-202107 AGIBTC-201903 LRCBTC-202002 KEYBTC-202003 SXPDOWNBTC-202101 EASYBTC-202008 CTSIBTC-201902 RAMPBTC-201901 TORNBTC-202008 XRPBULLBTC-201911 KAVABTC-202010 OMBTC-201903 SALTBTC-202006 GVTBTC-202102 VTHOBTC-202108 WABIBTC-202002 PORTOBTC-201906 MFTBTC-202002 COSBTC-201902 PLABTC-202010 ACABTC-201905 XNOUSDT-202106 LTCUPBTC-201902 MBLBTC-202112 ALPHABTC-202109 STPTBTC-202012 BNBBULLBTC-201908 ALCXBTC-202103 TRXUPBTC-202001 SYSBTC-202011 TNTBTC-202008 LTCDOWNBTC-201904 FETBTC-201907 MBLUSDT-202111 USDSBBTC-202007 DYDXBTC-202106 LSKBTC-202008 SSVBTC-202007 LINABTC-202112 XNOBTC-201902 SUSHIUPBTC-201905 BALUSDT-202103 GTCBTC-202008 JSTUSDT-202107 REQBTC-202104 HIGHBTC-201904 CDTBTC-202201 ETHBEARBTC-202108 NUBTC-201905 DCRBTC-201903 DUSKBTC-202007 SFPUSDT-202106 XRPDOWNBTC-201909 ANYBTC-202109 BCCBTC-201903 SANTOSUSDT-202108 TNTBTC-202112 BTTCUSDT-202103 EOSBTC-201909 PLABTC-201902 EASYBTC-202103 SNGLSBTC-201910 POWRBTC-202008 SALTUSDT-202103 BQXUSDT-202111 ANCUSDT-202103 STRATBTC-202012 MITHBTC-202007 CRVUSDT-202108 PPTUSDT-202109 CHRBTC-202008 ENSBTC-201901 SANDBTC-201905 HIGHBTC-202008 ICXBTC-202110 OGBTC-202111 ARDRBTC-202009 ZRXUSDT-202109 ALICEBTC-202102 BULLBTC-202012 FLOWBTC-202102 FORUSDT-202108 WNXMBTC-202009 GLMRBTC-201905 ERDBTC-202009 VOXELBTC-202106 ALCXBTC-202107 LOOMBTC-202108 BNXBTC-202106 BEARBTC-202005 PHBBTC-202107 LTCBTC-202001 STRATBTC-201904 AAVEUPBTC-202007 XRPBTC-202101 BCCBTC-202006 BCPTBTC-202006 WINBTC-202103 GASBTC-202110 POWRBTC-202005 LOOMBTC-202011 PONDBTC-202006 SANDBTC-201906 DGBBTC-202001 XECBTC-202110 OGNUSDT-202109 GTOUSDT-202106 GNOBTC-202110 1INCHUPUSDT-202108 MANABTC-202003 GNTUSDT-202109 TKOBTC-201911 RVNBTC-201908 DOCKBTC-201910 HCBTC-202010 CHZBTC-202101 ALCXBTC-201912 DEXEUSDT-202106 CVXBTC-202101 BTTUSDT-202103 BULLBTC-202001 MASKBTC-201901 FLOWUSDT-202111 SPELLBTC-202103 FLUXBTC-201912 AGIXBTC-202106 HIVEUSDT-202103 KAVABTC-201908 ATOMBTC-201910 QLCBTC-202006 PAXGBTC-201911 VIBBTC-202103 VTHOUSDT-202107 TCTBTC-202001 GXSBTC-202009 ETHDOWNBTC-202103 NXSBTC-202012 VIBBTC-202110 BTSBTC-201907 ILVBTC-202112 HOTBTC-202201 CVCBTC-202007 ARBTC-202107 NMRBTC-202002 ADAUPBTC-202110 TRBBTC-201902 AUDIOBTC-201909 AAVEBTC-202109 GXSBTC-202007 ALCXUSDT-202106 DEGOBTC-202201 XRPBULLBTC-202101 GLMBTC-201911 SXPUPBTC-201910 CELOBTC-202108 AUDIOBTC-201904 SCBTC-202101 IOSTBTC-202111 EOSBULLBTC-202012 FUELBTC-202007 FRONTUSDT-202107 LTCUPBTC-201911 ARKBTC-202102 XVSBTC-202006 KEYBTC-202001 ZECBTC-202011 HARDBTC-202101 ERDBTC-201903 LINKBTC-201908 MDTBTC-202107 MITHBTC-202111 RDNBTC-202109 HNTUSDT-202103 DUSKBTC-202108 BCHUPBTC-201910 MKRBTC-202005 OGNBTC-201905 XRPBEARBTC-201906 MDABTC-202009 EPSBTC-201906 ARUSDT-202106 GNOBTC-202108 BONDBTC-202002 COTIBTC-202011 QIBTC-201909 TNBBTC-201911 BTCBBTC-202105 SYSBTC-201912 WOOBTC-201902 LITBTC-201901 WBTCBTC-202102 XMRBTC-201912 REPUSDT-202107 RVNBTC-202104 SNXBTC-201910 SPELLBTC-202105 NULSBTC-201904 FLMBTC-202108 VGXBTC-202012 UNFIUSDT-202108 COMPBTC-202002 ATMBTC-201906 RSRBTC-202012 NUBTC-202106 HIGHBTC-202009 AIONBTC-201902 STRATUSDT-202107 UNFIBTC-201904 HNTBTC-201910 ILVBTC-202107 FIOBTC-201902 AUTOBTC-202010 AXSBTC-201908 STRAXBTC-202112 LENDBTC-202102 STRATBTC-202104 BTCBTC-202010 EASYUSDT-202107 FILDOWNBTC-202008 POWRBTC-202109 NKNBTC-202109 SCRTBTC-201910 LITBTC-202106 BOTBTC-202006 WBTCUSDT-202103 ZILUSDT-202106 ALPACABTC-202003 MBOXBTC-201903 CHESSBTC-201905 API3BTC-201909 TNBBTC-202102 LRCBTC-201903 SUSDBTC-202006 XECBTC-201909 IOSTBTC-201903 WPRBTC-202008 BTCDOWNBTC-202010 RGTBTC-201902 XVSBTC-202004 TNTUSDT-202103 LPTBTC-201911 LUNABTC-202103 ENGUSDT-202106 MIRBTC-201904 DODOBTC-202011 YFIIBTC-202103 IOTAUSDT-202107 AVABTC-201904 PONDBTC-202101 ORNBTC-202110 ETHDOWNBTC-202003 FARMBTC-201902 XRPBULLBTC-202104 CELRBTC-202112 SNXBTC-201901 ETHBULLBTC-202107 SLPBTC-202009 DOTUPUSDT-202103 HCBTC-202006 ASRBTC-201902 STEEMBTC-202102 RPXUSDT-202109 MDTBTC-202009 QTUMBTC-201912 GNOBTC-202112 KEYBTC-201909 SUSHIBTC-202102 UNIDOWNBTC-202012 SRMUSDT-202108 EASYBTC-201902 VENBTC-202103 ACMBTC-202005 GALABTC-202010 HCBTC-202002 TUSDBTC-201903 XRPDOWNBTC-202007 ALCXBTC-202201 SUSHIUPBTC-201909 TVKBTC-201912 RUNEBTC-201905 PAXBTC-202008 BELBTC-202010 COTIUSDT-202106 SNGLSBTC-202201 ENSBTC-201906 SOLBTC-201905 GHSTBTC-202102 FETBTC-201910 TKOBTC-201909 SALTBTC-201903 INSBTC-202110 CMTUSDT-202107 RVNBTC-202109 LTOBTC-202109 PLABTC-202009 SXPBTC-202201 WINBTC-201912 VIBEBTC-202010 ENJBTC-201907 GNTBTC-202109 ANKRBTC-202101 XVGBTC-202107 GRTBTC-201910 KNCBTC-201911 PHXBTC-202111 BCHBTC-202103 BALBTC-202201 GBPUSDT-202109 ONEBTC-202109 RVNBTC-202107 EOSDOWNBTC-202001 MANABTC-202102 SUSHIUPBTC-201912 ELFUSDT-202108 THETABTC-201908 MKRBTC-201905 AGIXBTC-201907 ANCBTC-201902 BQXBTC-201901 USDPBTC-201902 ADAUPBTC-202001 BATUSDT-202111 OGBTC-202109 DOGEBTC-202112 DAIBTC-202110 RADBTC-201908 CVXBTC-202012 BNBUPBTC-201901 GNOBTC-202007 CMTBTC-202112 PORTOBTC-202101 FIDABTC-202002 CVCBTC-201905 VIBEBTC-202105 CITYBTC-201911 AEBTC-201908 YFIUPBTC-201903 MTHBTC-202105 PONDBTC-202107 VOXELBTC-201907 SUSHIBTC-201902 XNOBTC-202004 HNTBTC-202112 ICNBTC-202104 IOTXBTC-202005 VETBTC-202002 ETHBTC-202009 QTUMBTC-201909 LTCUPBTC-202112 BZRXBTC-201906 GOUSDT-202109 ACHBTC-202003 CFXBTC-201905 BCNBTC-201902 AUCTIONUSDT-202106 CITYBTC-201905 ERDBTC-202006 MANABTC-201904 VITEBTC-202001 DUSKBTC-202103 1INCHBTC-202012 GVTBTC-201904 ZRXUSDT-202106 BCNUSDT-202111 REPBTC-201903 AAVEUPBTC-201904 VITEBTC-202111 XRPDOWNUSDT-202106 WAVESBTC-202004 ANKRUSDT-202103 EOSDOWNBTC-202111 GNTBTC-202010 SNMBTC-202004 XVSBTC-202008 OGUSDT-202111 XRPDOWNBTC-201905 LINABTC-202111 SKLBTC-202001 USDSBTC-201912 LINKDOWNBTC-201907 ALPHABTC-202001 TRBBTC-202009 XVGUSDT-202111 1INCHDOWNBTC-201909 IDEXBTC-202009 FETBTC-202109 DNTBTC-202105 ETHDOWNBTC-202012 IOSTBTC-202104 RUNEUSDT-202111 ADADOWNBTC-202001 USDPBTC-201910 DOGEBTC-202005 SXPBTC-201903 GTOBTC-201910 GOBTC-202011 OOKIBTC-202103 COTIBTC-202012 ADAUPBTC-201903 UNIDOWNBTC-202006 ACMBTC-202003 WPRBTC-202006 ENJBTC-202105 DOGEUSDT-202107 ICPBTC-202004 TCTBTC-201903 DOGEBTC-201911 DGDBTC-202010 TOMOBTC-202103 BUSDBTC-201910 ALCXBTC-202009 UNIUPBTC-202104 DFBTC-202006 WABIUSDT-202103 LUNABTC-202004 MCBTC-201908 DOCKUSDT-202108 USTBTC-202106 LINABTC-201902 MFTUSDT-202107 CNDBTC-202011 MFTBTC-202011 BICOBTC-202011 GOBTC-201906 BTCBBTC-202109 CKBBTC-201904 LINKUPBTC-202010 LITBTC-201909 NCASHBTC-201901 TNBBTC-202111 EZBTC-202009 ADXBTC-202005 XTZUSDT-202109 DCRBTC-202105 GBPBTC-202011 COMPBTC-202008 MIRBTC-202003 NANOBTC-202101 WBTCBTC-201902 TRBUSDT-202108 XRPBTC-201903 SYSBTC-202112 SHIBBTC-201904 CAKEBTC-202004 ROSEBTC-202108 AUCTIONBTC-202005 SNGLSUSDT-202103 STMXBTC-201906 INJBTC-202104 MIRBTC-201909 API3BTC-202005 BNBUPBTC-202106 RIFBTC-202104 FISUSDT-202111 ZECBTC-201904 KNCBTC-201905 YFIDOWNBTC-202008 KEYUSDT-202106 SNXBTC-202003 HIGHBTC-202011 ALGOBTC-201909 PPTBTC-202109 VITEBTC-201910 XVSBTC-201908 CVPBTC-201909 LINKBTC-202003 YOYOBTC-202102 UNIBTC-201908 REEFBTC-201901 VIBEUSDT-202103 TUSDBTC-202105 RENBTC-202102 BNTBTC-201905 CHESSBTC-201903 VGXUSDT-202108 BEARBTC-202108 NUUSDT-202111 BOTBTC-201901 BCHSVBTC-202004 PPTUSDT-202106 ZECBTC-202009 AMPBTC-201910 FTMBTC-202011 ERNBTC-202003 BCHUPBTC-201907 HNTBTC-202111 ANTBTC-201907 BNXBTC-202004 POABTC-202011 TLMBTC-202011 ALPACABTC-202007 LTCDOWNBTC-201905 QLCBTC-202005 ETHBULLUSDT-202103 API3USDT-202108 GXSUSDT-202108 REEFBTC-202005 YGGBTC-202107 BICOBTC-201908 ANTBTC-202107 DYDXBTC-202109 COMPBTC-202104 PUNDIXBTC-202108 BQXBTC-202010 CAKEBTC-201911 ARPABTC-202108 MASKBTC-202111 QIBTC-201901 SYSBTC-202111 IOSTUSDT-202111 GXSBTC-202109 VIDTBTC-202102 BZRXBTC-202201 RADUSDT-202106 QLCBTC-201911 BTGBTC-202006 NASBTC-201904 NMRBTC-202104 EOSBULLBTC-201902 SCBTC-201902 TRIGBTC-202004 LTCUPBTC-202104 ENSBTC-202112 VITEBTC-202011 ARBTC-202109 PYRBTC-202112 UNFIBTC-202003 FORBTC-202005 LAZIOBTC-202111 ANTBTC-201911 RVNBTC-202002 ETCBTC-202009 FORTHUSDT-202111 WRXBTC-202004 XRPBULLBTC-202201 CVPBTC-202201 ALPINEBTC-201910 ENSUSDT-202106 JOEBTC-201911 BCPTBTC-202009 ANYBTC-201911 FUNBTC-202005 HIVEBTC-202006 ARPABTC-202103 NKNBTC-201905 ETHBTC-202201 POWRBTC-202105 JUVBTC-202109 LTCDOWNBTC-201902 DOCKUSDT-202103 DGDBTC-201909 XVGBTC-201912 GXSBTC-201907 KMDBTC-202003 DAIBTC-201904 SPELLBTC-202007 GXSBTC-202001 STORJUSDT-202111 DGBUSDT-202106 YFIDOWNBTC-201904 ETHBTC-202109 STXBTC-202107 BAKEBTC-202008 SOLBTC-202001 USDSBTC-201903 YGGBTC-202012 ZENUSDT-202103 LUNUSDT-202103 NEBLBTC-202006 VETUSDT-202108 WNXMBTC-202201 QLCUSDT-202111 BADGERBTC-202011 BAKEBTC-202007 MITHBTC-201907 PNTBTC-202007 TRIGBTC-202106 SLPBTC-202001 LOOMBTC-202006 DLTBTC-202012 AIONBTC-202111 AEBTC-201902 BCHABCBTC-201902 STEEMBTC-202107 ZECBTC-202006 RCNBTC-202112 BRDBTC-202101 BTCSTUSDT-202108 RENBTC-202109 PSGBTC-202010 WPRBTC-201904 BCHABCBTC-202006 WBTCUSDT-202106 GVTBTC-202109 RDNBTC-202012 DAIBTC-201910 INSBTC-202005 QSPUSDT-202109 USDSBTC-202009 UMABTC-201909 DOCKBTC-202105 QIBTC-202012 LTCBTC-202103 OMGBTC-201912 GNTBTC-202008 SCUSDT-202107 SNXBTC-202107 DOTBTC-202109 VGXBTC-202112 ONGBTC-202102 DGBBTC-201912 ALPINEBTC-202011 RAMPBTC-201912 FLMBTC-201903 NUBTC-202001 LTCDOWNBTC-202102 CFXBTC-201909 RLCBTC-201912 REQBTC-202110 XVGBTC-202112 BURGERBTC-202010 GVTBTC-202103 BARBTC-202101 GTCBTC-201908 BCNBTC-202007 APPCBTC-202007 OGUSDT-202103 AUCTIONBTC-201903 DCRUSDT-202109 BNBBULLBTC-202106 BCCBTC-201907 BCHABCUSDT-202111 POLYBTC-202001 BAKEBTC-202111 MBOXBTC-202109 QIBTC-201904 DATABTC-201910 BTGBTC-202004 RCNUSDT-202109 PPTBTC-202110 EURBTC-202106 AMPUSDT-202107 NCASHBTC-201904 KEEPUSDT-202109 COSBTC-202003 KLAYBTC-201901 TRBBTC-201911 TRBBTC-201905 WABIBTC-202006 NANOUSDT-202108 STRAXUSDT-202109 AGLDBTC-202103 LITUSDT-202109 WNXMUSDT-202107 RIFBTC-201907 OCEANBTC-201904 QNTBTC-202012 MKRBTC-202001 IDEXBTC-202104 ZILBTC-202010 BNBBEARUSDT-202111 RVNBTC-202008 RVNBTC-202102 BNTBTC-201907 BZRXBTC-201902 BONDUSDT-202108 BTCUPBTC-202009 KNCUSDT-202108 YGGBTC-202101 WTCBTC-202108 BLZBTC-202001 ARBTC-201901 VIABTC-201909 TRIGBTC-202001 MLNBTC-201909 MLNUSDT-202111 SUBBTC-201904 OMBTC-201906 LUNABTC-202109 RPXBTC-201911 LINKUPUSDT-202107 MDABTC-201912 FTMBTC-201902 USDPBTC-202009 HOTBTC-202008 OMGUSDT-202106 MBLUSDT-202106 STEEMUSDT-202107 YFIIBTC-202106 COCOSUSDT-202111 BTTBTC-201911 SUSHIDOWNBTC-201906 SHIBBTC-202111 VITEUSDT-202103 RGTBTC-202109 CHESSBTC-202108 YFIDOWNBTC-201906 NASBTC-201903 ATMBTC-201902 MCUSDT-202103 EOSBTC-202106 AGIXBTC-202010 XLMBTC-202007 EOSBEARBTC-202101 UNFIBTC-201912 ALPINEBTC-202106 BUSDBTC-202004 LOOMBTC-201911 EOSUPBTC-201909 EGLDBTC-202111 DIAUSDT-202106 BNXBTC-202011 SHIBBTC-202008 TRIGBTC-202007 XRPUPBTC-202107 SLPUSDT-202108 QSPBTC-201905 TNBBTC-202104 EOSBULLBTC-201901 ETCBTC-202005 OMUSDT-202106 WOOBTC-202003 BTCBBTC-202102 POWRBTC-201912 SFPUSDT-202108 FTTBTC-202104 GNOUSDT-202109 MINAUSDT-202103 SYSBTC-202009 CELOUSDT-202108 EOSDOWNBTC-202007 EGLDBTC-201908 XRPBTC-201909 VTHOBTC-202002 YOYOBTC-202011 EOSBULLBTC-202104 ETHBTC-201907 1INCHBTC-201901 SLPBTC-202003 FISBTC-201907 TRUBTC-202111 BCPTBTC-202001 DNTBTC-202003 FRONTUSDT-202109 BCHBTC-201908 ALPINEBTC-201903 MINABTC-202110 VIABTC-201901 FISUSDT-202109 NANOBTC-202008 ETHBEARBTC-202002 FORBTC-202004 ZECBTC-202111 BTCBBTC-202112 MASKBTC-201910 BEARBTC-202110 ETHDOWNBTC-202008 TFUELBTC-202106 SFPBTC-202110 SXPUSDT-202103 AUCTIONUSDT-202103 SFPBTC-202101 MTHUSDT-202107 SANDBTC-202107 FXSBTC-202103 MINABTC-202005 BULLBTC-201902 POWRBTC-202001 ACMBTC-202112 QKCBTC-201910 IOSTBTC-201911 BTCUPBTC-202112 ARPABTC-202004 REQBTC-201902 RIFUSDT-202107 DOTDOWNBTC-201912 RADBTC-202105 DNTBTC-202108 XNOBTC-202108 BELBTC-201909 AAVEDOWNUSDT-202108 FLOWBTC-202110 WNXMBTC-201907 ALPACABTC-202001 AAVEBTC-201910 DLTBTC-202002 BKRWBTC-202105 NPXSBTC-202102 1INCHDOWNBTC-202112 DYDXBTC-202006 REEFBTC-201911 FLMBTC-202105 OMBTC-202112 INJBTC-201901 NANOBTC-202201 BURGERBTC-202003 BNTBTC-202201 XTZBTC-202008 STRATBTC-201908 FISUSDT-202108 CLVBTC-202107 LAZIOBTC-202201 BCHSVBTC-201904 FRONTBTC-202107 ILVBTC-202102 YFIUPBTC-202001 KAVABTC-201911 DENTBTC-202102 BTCBBTC-201902 FLUXBTC-202002 RVNUSDT-202106 RADBTC-202012 DNTUSDT-202103 ETHBTC-202007 SUSHIBTC-202003 UNIDOWNBTC-202106 MATICUSDT-202103 BICOBTC-202004 EVXBTC-202107 PLAUSDT-202107 VIBBTC-202109 XMRBTC-201909 PHXBTC-202011 GVTBTC-202107 ETHBEARBTC-201901 ZENBTC-202109 BCDUSDT-202111 AXSBTC-201904 XRPBULLBTC-202002 IDEXBTC-201903 BKRWBTC-202108 BCNBTC-202101 RNDRBTC-202107 EOSBEARBTC-202201 RVNBTC-202006 RAYUSDT-202111 CTXCBTC-201901 XLMDOWNBTC-202009 NKNBTC-202103 EASYBTC-202104 1INCHDOWNBTC-202009 HIVEBTC-202104 BAKEBTC-202107 SNMBTC-201901 BTCBTC-201912 MITHUSDT-202107 DOTBTC-201904 BNBBULLBTC-202003 CDTBTC-202003 ETHDOWNBTC-201907 AUCTIONBTC-201907 FTMBTC-201912 PSGBTC-202012 EOSBULLBTC-202002 SCBTC-202010 KAVABTC-202007 FRONTBTC-201908 ADABTC-202104 QIBTC-202006 REPBTC-202009 ALPACABTC-202101 RCNBTC-201906 TUSDBTC-202108 AUCTIONBTC-202001 TRIBEBTC-202012 LTCDOWNUSDT-202108 BCHBTC-202007 TRUUSDT-202111 BNXBTC-201908 TVKBTC-201905 SLPBTC-202005 TRXUPBTC-202105 UNIBTC-201902 MCBTC-202104 SLPBTC-202103 DIABTC-201909 PHABTC-202103 SXPDOWNBTC-201907 XEMBTC-201905 VIBEBTC-201912 DLTBTC-202105 REEFBTC-202103 KP3RBTC-202012 ATOMBTC-201908 QTUMBTC-202006 TWTBTC-202008 ENGBTC-202001 PUNDIXBTC-201907 XEMBTC-202110 LAZIOBTC-202007 QNTBTC-202102 PSGBTC-202009 EASYBTC-201905 CMTBTC-202111 XLMBTC-202201 TORNBTC-201905 BANDUSDT-202108 PLABTC-201905 ZECBTC-202005 ATMUSDT-202109 BUSDBTC-201912 ALPACABTC-202011 XLMBTC-202009 BUSDBTC-202010 HIGHBTC-202006 PHABTC-202201 SNGLSBTC-202007 BCHUPUSDT-202106 BALUSDT-202111 BRDBTC-201907 BKRWBTC-202005 XZCBTC-202012 PAXGBTC-202111 DLTBTC-202109 FXSBTC-201911 ATMBTC-201904 FIOBTC-202110 KNCBTC-201901 LINABTC-201901 OGBTC-202106 1INCHUPUSDT-202103 USDPUSDT-202107 AKROBTC-202010 OMBTC-201908 WNXMBTC-202008 FILDOWNUSDT-202109 WOOBTC-202005 CMTBTC-202009 LUNBTC-202101 ORNBTC-202006 SXPUPBTC-202003 ADAUPBTC-202004 TUSDBTC-201911 SUNBTC-201903 BTCBTC-202009 BTCSTBTC-202103 NCASHBTC-202112 EOSDOWNUSDT-202111 MFTBTC-202010 CHRUSDT-202109 NASBTC-202112 SLPBTC-201910 HARDBTC-202003 EOSUPUSDT-202107 ARNBTC-202110 BCDBTC-202103 BKRWBTC-202008 BNXBTC-202111 EOSUPBTC-202006 KLAYBTC-202011 BNBDOWNBTC-202011 MDXBTC-202107 ELFBTC-201911 REPUSDT-202108 IDEXBTC-202108 GRSBTC-202001 EDOBTC-202108 LENDBTC-201908 CTXCBTC-201911 CTKBTC-201911 BNBUPUSDT-202103 SNXBTC-202002 BARBTC-202112 AAVEBTC-202005 ATMBTC-202011 FLUXBTC-202008 NAVBTC-202112 RIFBTC-202005 SANDBTC-201912 XLMDOWNBTC-202106 UNIUPBTC-202007 NUBTC-201906 COTIBTC-201909 ENSBTC-202003 RSRBTC-202006 BCHDOWNBTC-202111 EOSDOWNBTC-202107 MCBTC-201906 BNBBTC-201906 ASRBTC-202108 AAVEBTC-202010 GNTBTC-202103 CLOAKBTC-202012 SCBTC-202009 CHZBTC-202109 PORTOBTC-202001 SUSDBTC-202011 TLMUSDT-202103 WRXBTC-202101 APPCBTC-202109 XVSBTC-202104 RAREBTC-202007 ANTBTC-202002 SNGLSBTC-202001 FILUPBTC-201901 BTCUPBTC-201901 CHATBTC-201909 POEBTC-202005 EVXBTC-201904 ASRBTC-202003 PEOPLEBTC-202001 BETABTC-202109 DODOUSDT-202108 FILUPBTC-201904 BTGBTC-202106 PHBBTC-202103 PIVXBTC-201910 ERDBTC-202108 FUNBTC-202007 XLMBTC-201909 SXPBTC-202110 SUNBTC-202201 SUSHIUSDT-202111 ACHBTC-202109 DOGEUSDT-202109 FILDOWNBTC-202004 AMBBTC-202001 ADABTC-202010 CLVBTC-202110 DODOUSDT-202107 BTSUSDT-202103 WRXBTC-202008 KLAYBTC-202108 BTCDOWNBTC-201909 ARBTC-202108 EGLDBTC-201910 ATABTC-202111 LRCBTC-202106 PIVXBTC-202006 ARBTC-202111 LUNBTC-202102 RAREBTC-201910 DARBTC-201901 CELRBTC-201908 STXBTC-201905 ICPBTC-202009 DOGEBTC-202006 LAZIOBTC-202101 PYRBTC-201903 FORBTC-201907 FORTHBTC-201906 JASMYBTC-201901 NBSBTC-202005 FIROBTC-201911 FLUXBTC-202104 ALCXUSDT-202109 MFTBTC-201904 VIBEBTC-201905 BNBBULLBTC-201911 SUSHIUPBTC-202201 ORNBTC-202201 ALICEBTC-201903 AUCTIONUSDT-202111 REQBTC-201909 CVCBTC-202102 ANYBTC-202112 OMGBTC-202008 BTTCBTC-202108 TKOBTC-201901 CRVBTC-202011 RUNEBTC-202008 MTHBTC-201909 KEEPBTC-202104 ANKRBTC-202108 APPCBTC-201902 MCOBTC-202008 RIFBTC-201905 REEFBTC-201902 SPELLBTC-202001 LSKBTC-202012 NEBLBTC-201905 WRXBTC-201908 DOGEBTC-201902 AEBTC-202010 STXBTC-202112 EURBTC-202102 PNTBTC-201912 USDPUSDT-202106 BCHABCBTC-201904 FISBTC-202111 ETHDOWNBTC-202110 STRATBTC-202002 DOCKBTC-201905 KEEPBTC-201911 PLABTC-202001 KEYBTC-201902 ETHDOWNBTC-202011 AAVEUPBTC-202003 AMBBTC-202111 SNXBTC-202104 BTCBUSDT-202103 MODBTC-202105 GASBTC-202005 DODOUSDT-202111 NPXSBTC-201907 ELFBTC-202101 ORNBTC-202012 SXPBTC-201904 LPTBTC-202007 HCBTC-201906 POLSUSDT-202107 XTZBTC-202009 PAXBTC-202101 ENSBTC-202107 NULSBTC-201912 REQBTC-202007 OCEANBTC-202102 EGLDBTC-202106 YFIUPUSDT-202108 NXSBTC-202103 STPTBTC-202001 TCTBTC-202101 ANTBTC-202111 WPRBTC-201903 SFPBTC-202011 TRIBEBTC-202109 CLVBTC-202001 QSPBTC-201912 SXPUSDT-202108 LTCDOWNBTC-202104 ETHBEARBTC-202006 ARNBTC-202012 ZENBTC-202002 BTCDOWNBTC-201911 XLMUPBTC-202112 OSTBTC-202105 CAKEBTC-202110 FARMUSDT-202107 AMBBTC-201906 BNBDOWNUSDT-202107 TRBBTC-202007 CFXUSDT-202107 SUSHIUPBTC-202107 XLMUPBTC-202002 XZCBTC-202108 AGIBTC-202201 COMPBTC-202004 XVGBTC-202111 NCASHBTC-201909 SFPUSDT-202107 BUSDBTC-202002 BRDBTC-202104 VTHOBTC-202006 STRATBTC-202201 AGLDBTC-201905 SYSUSDT-202107 KNCBTC-202112 PPTBTC-202011 UNIDOWNBTC-202008 NUUSDT-202107 BCHUPBTC-202010 ACHBTC-202010 KMDBTC-201905 MDTBTC-201908 EOSUPBTC-202010 XRPUPBTC-201902 HNTBTC-201902 CLOAKBTC-201912 EOSBTC-202008 OMGBTC-201907 BATBTC-202103 LTCDOWNBTC-202105 DREPBTC-202111 LITBTC-202201 BNXBTC-202109 ETCBTC-202107 XRPBULLBTC-202003 OMBTC-202002 BKRWBTC-201906 SANDBTC-202201 MTLBTC-202107 NUBTC-201904 INJBTC-202009 SCRTBTC-202007 ALPACABTC-202104 XRPBULLBTC-201905 CELRBTC-202106 ATABTC-201911 EOSBEARUSDT-202109 RENBTCBTC-202104 SUPERBTC-202107 STMXBTC-202101 BETABTC-202006 GXSBTC-201905 ATMUSDT-202108 PERLBTC-201906 TWTBTC-201902 BNBBULLBTC-202101 GRSBTC-202109 DENTBTC-202012 CNDBTC-202104 PIVXBTC-201905 GTCBTC-202105 DEXEBTC-202011 GALABTC-202012 CAKEBTC-202108 NEOBTC-201902 PPTBTC-202008 INSBTC-201912 ENJBTC-202101 QUICKBTC-202110 SALTBTC-202002 XLMBTC-201904 LOKABTC-202002 NEBLUSDT-202111 NUBTC-202003 ORNBTC-202001 TNTBTC-202201 MFTBTC-201909 TRIBEBTC-202102 BUSDBTC-202102 GRTBTC-202103 BTCDOWNBTC-202104 XEMBTC-202111 IOSTBTC-201910 CTKBTC-201910 STMXBTC-202105 LRCBTC-202001 OAXUSDT-202106 HOTBTC-202104 RDNUSDT-202108 ACMBTC-201906 LTOUSDT-202103 GNTBTC-202007 WANUSDT-202107 RLCBTC-202110 SLPUSDT-202103 SANTOSBTC-202102 QSPBTC-202112 INJBTC-201905 MTLUSDT-202108 ROSEBTC-201902 XRPBULLUSDT-202111 USDCBTC-202104 JUVBTC-201910 DASHBTC-202111 SLPBTC-201903 BCHABCBTC-202012 VENBTC-202009 BNBUPBTC-201903 DGDUSDT-202109 CELRBTC-202012 UNIBTC-202109 BTCSTBTC-202010 CNDBTC-202111 QKCBTC-201907 SXPDOWNBTC-202010 ETCBTC-202109 JSTBTC-202111 XVGBTC-201907 RCNBTC-202007 AUDIOBTC-202009 GNOBTC-202005 CKBBTC-201906 ENSBTC-202111 ONGBTC-201912 SUSHIUPBTC-202007 WANBTC-202101 TFUELBTC-202110 BEARBTC-202111 MCOBTC-201910 RLCBTC-202001 EURBTC-202005 BONDBTC-201908 AERGOBTC-202111 ICXBTC-202009 RPXBTC-202009 ARPABTC-202101 CELRUSDT-202109 BTTCBTC-202002 ENGBTC-202008 MKRBTC-201903 ACABTC-201912 POLSBTC-201908 MDABTC-202006 BETAUSDT-202103 UNIUPBTC-202102 DENTUSDT-202106 BTCDOWNBTC-201901 UNIBTC-201905 VTHOBTC-202111 GNOBTC-202111 STEEMBTC-202112 NKNBTC-202108 ZECBTC-202107 ICXBTC-202112 UNIBTC-201911 SNMBTC-202011 LINABTC-202108 DEXEBTC-201901 WINGSUSDT-202109 DATAUSDT-202103 EGLDBTC-202201 AAVEUSDT-202108 PHXBTC-202101 GXSBTC-202108 ASTBTC-202103 VIBBTC-201901 LTCDOWNBTC-202111 RNDRUSDT-202107 FLUXBTC-202109 ETCBTC-201907 SUSHIDOWNBTC-202007 VIDTBTC-201910 ETHBULLBTC-201909 FUELBTC-202001 BCHDOWNBTC-201902 UNFIBTC-202104 BRDBTC-202111 ALGOBTC-201910 ACHBTC-202006 DOTDOWNBTC-202112 ERDBTC-202110 MODBTC-202201 CVXBTC-202002 ETHBULLUSDT-202109 WINGSBTC-202011 RLCBTC-202004 GALABTC-202104 GRSBTC-201902 TRBBTC-202111 AERGOBTC-202007 EZUSDT-202109 GRSUSDT-202108 USDCBTC-202105 OGNBTC-201907 HCBTC-201908 XLMUPBTC-201910 RCNUSDT-202107 ZILBTC-202201 POEBTC-202110 JSTBTC-201902 NULSUSDT-202106 NPXSBTC-202003 GRTBTC-202009 BTCDOWNBTC-202111 BTTBTC-201912 IDEXBTC-202102 WINGSUSDT-202103 CHATBTC-201906 XLMDOWNBTC-202109 BUSDBTC-202108 PERLUSDT-202111 ERNBTC-202012 DFUSDT-202103 WBTCUSDT-202108 WBTCBTC-201901 YGGBTC-201910 BTCDOWNBTC-202108 XRPBTC-202112 ETHDOWNUSDT-202111 DNTBTC-202010 FIDABTC-201905 1INCHDOWNBTC-202101 STXBTC-202009 XRPBTC-202005 FILUSDT-202108 1INCHDOWNBTC-201902 KAVABTC-202112 BURGERBTC-202106 HBARBTC-201912 SNTBTC-201908 EOSBULLBTC-201908 1INCHDOWNBTC-201912 TNTBTC-201911 BTCBBTC-202010 TCTBTC-201904 AUDBTC-201908 RAMPBTC-202007 MCOBTC-202011 TKOBTC-202009 ATOMBTC-201905 UNIBTC-201904 PHXUSDT-202108 RENBTCBTC-202101 PHXBTC-202201 VIDTBTC-202111 TKOBTC-201905 ARDRBTC-201911 CRVBTC-202110 LSKBTC-202005 MATICUSDT-202109 SNXUSDT-202107 CTKBTC-202101 SLPBTC-202104 STEEMBTC-202104 NKNBTC-202002 SANTOSBTC-201911 MASKBTC-202010 GNTUSDT-202107 FORTHBTC-202002 BTCDOWNBTC-201910 XMRBTC-202105 TFUELBTC-201909 KMDBTC-201901 MANABTC-202010 CTKBTC-202009 BTTCBTC-202106 FUELBTC-201901 SXPDOWNBTC-202105 API3BTC-202101 KP3RBTC-201905 LINKDOWNBTC-202010 LRCUSDT-202109 EPSUSDT-202103 STRATBTC-202102 CMTBTC-201912 OMGUSDT-202103 EOSBEARBTC-202109 TRXDOWNUSDT-202107 BRDBTC-201904 NAVUSDT-202106 EOSBEARBTC-202006 CVPBTC-201906 MATICBTC-202004 XVSBTC-201912 ASTBTC-202011 COTIBTC-202009 COCOSBTC-202111 WPRBTC-202005 BALBTC-201910 AUDUSDT-202103 ELFUSDT-202103 NEARBTC-202011 AVAXBTC-202109 WBTCBTC-201907 BTCBBTC-202006 SLPUSDT-202111 FTTBTC-202012 EZBTC-202006 AEBTC-202002 WNXMBTC-202001 CHZBTC-202112 DOGEBTC-202104 DUSKUSDT-202108 YFIIUSDT-202107 PYRUSDT-202103 JUVUSDT-202111 WNXMBTC-202003 MTLUSDT-202109 SNXUSDT-202103 UNIUPBTC-201904 ARDRUSDT-202109 NUBTC-201908 AAVEDOWNBTC-202103 PERLUSDT-202107 FIOBTC-202107 CHZBTC-201909 HOTUSDT-202103 XRPBULLBTC-201912 NXSUSDT-202108 ETHBTC-202005 WAVESBTC-201910 ANYBTC-202104 STPTUSDT-202103 BRDBTC-201910 POLYBTC-202201 TCTBTC-201908 CLVBTC-202005 PHABTC-202005 EDOBTC-201905 PLABTC-201901 RCNBTC-202106 SRMBTC-202104 ICXUSDT-202109 C98BTC-202008 OOKIBTC-202011 ETHUPBTC-201908 TLMUSDT-202106 XNOUSDT-202111 LINKUPBTC-202109 VIDTBTC-202006 TRIBEBTC-202111 XVGUSDT-202106 BTGBTC-201911 DATABTC-202101 VETBTC-202001 PEOPLEBTC-202004 GVTBTC-202111 IOTXBTC-201910 BURGERBTC-201902 BKRWBTC-202006 VTHOBTC-202201 ZILUSDT-202109 AAVEDOWNBTC-202009 EZBTC-201910 NUBTC-202006 VIBUSDT-202106 TRUBTC-202112 RPXBTC-201912 BETABTC-202201 ETHBTC-202104 DGBBTC-202007 BAKEBTC-202001 NAVBTC-202102 VIBBTC-201905 BTSBTC-202111 COMPBTC-202109 AVABTC-202108 ALICEBTC-202002 TRUBTC-201902 BNBDOWNBTC-202103 WOOUSDT-202107 CHESSBTC-201907 UNIDOWNBTC-202101 BCHUSDT-202103 QUICKBTC-201906 ADADOWNBTC-202007 XTZDOWNBTC-202003 OGNBTC-202004 PORTOBTC-201909 BEAMBTC-201901 MFTBTC-201906 FTMUSDT-202111 FUELBTC-202005 COMPBTC-201911 WTCBTC-201902 MINABTC-202201 XRPBTC-202110 WAVESBTC-202012 MDXBTC-202109 SNGLSBTC-201903 CELOBTC-202109 SKLBTC-202008 QLCUSDT-202106 AERGOBTC-202108 CVCBTC-202003 WAVESBTC-201906 DLTBTC-202201 RADBTC-201902 OGBTC-202102 FILUPBTC-201905 CVPBTC-201901 SCRTBTC-202109 LITBTC-202011 CHATBTC-202111 SUSHIDOWNBTC-202008 AGIBTC-202009 1INCHUPBTC-201905 XZCUSDT-202107 STPTBTC-201901 OSTBTC-202101 BTTBTC-201908 GRTBTC-202111 BARBTC-202012 ZECBTC-202110 CELOBTC-202005 DNTBTC-201904 REEFBTC-202105 POAUSDT-202108 AUTOBTC-202007 MIRUSDT-202107 PNTBTC-202002 SKYUSDT-202111 MDTBTC-202002 NEOBTC-202011 BCHABCBTC-201912 POWRUSDT-202107 PONDBTC-202112 CITYBTC-202010 CVXBTC-201909 BNBUPBTC-201911 FILUPBTC-202106 LINABTC-201908 NMRBTC-202110 ARDRBTC-201906 WBTCBTC-202103 BADGERBTC-202109 MKRBTC-201908 JUVBTC-202110 NEOBTC-202110 USDPBTC-202101 ARNUSDT-202111 HBARBTC-201905 BQXBTC-202009 ERNBTC-201911 OCEANBTC-201908 CELOBTC-202201 FILDOWNBTC-201911 LOKAUSDT-202108 ARKUSDT-202108 ATMBTC-201908 POLSBTC-202009 LTCUPBTC-201905 XTZDOWNBTC-202007 XVGBTC-202101 GASBTC-202003 XVGBTC-202104 DOCKBTC-202010 BADGERUSDT-202111 ONGBTC-201908 NEOBTC-202201 EOSUPBTC-202004 MATICBTC-201908 FTTBTC-201902 NULSBTC-202101 CITYBTC-201906 SANTOSBTC-202104 IOTXBTC-202103 CAKEBTC-201906 GNOBTC-201911 RDNBTC-202105 DUSKBTC-202012 FORBTC-202009 USDSBTC-201901 GLMBTC-202011 REQBTC-201904 BCHDOWNUSDT-202106 APPCBTC-202111 DOTDOWNBTC-201901 ZRXBTC-201907 STMXBTC-202007 EOSDOWNBTC-202103 SALTBTC-201902 ANTBTC-202102 ALCXBTC-202007 LRCUSDT-202108 WNXMBTC-202011 MKRUSDT-202108 NCASHBTC-201902 NASBTC-202011 DUSKBTC-201908 VITEBTC-202002 TRIBEBTC-202106 GOBTC-201910 TRBBTC-201903 CRVBTC-202006 TORNBTC-201906 AUDBTC-202108 WAXPBTC-202010 DGDUSDT-202108 PHBBTC-202005 CDTBTC-202008 ETHBEARUSDT-202106 LRCBTC-202112 FTMBTC-201909 MATICBTC-202107 BCNBTC-202001 CFXBTC-202104 RAMPBTC-202011 LINKDOWNBTC-202007 BCHUPBTC-201905 MCBTC-201901 USDSBUSDT-202111 DATABTC-201904 AAVEDOWNBTC-202007 NMRBTC-202007 BCHSVBTC-202107 BANDUSDT-202109 MDXBTC-201909 VTHOBTC-201906 SCRTBTC-202101 ETCUSDT-202106 LTCBTC-201912 COTIBTC-202008 ANKRBTC-202103 AMPBTC-202103 LENDBTC-201901 SUBBTC-202111 NCASHBTC-201903 DATABTC-202106 DASHBTC-202108 WINGSBTC-202003 CITYBTC-202109 YGGBTC-202104 QLCBTC-202110 SFPBTC-201907 LINKBTC-202109 BNBUPUSDT-202109 OXTBTC-202006 CELRBTC-201910 SNXBTC-202112 GRTBTC-202104 EOSBULLUSDT-202111 FIROBTC-202104 XRPBEARBTC-201905 STEEMBTC-202012 UNFIBTC-202010 IOTXBTC-202011 WANBTC-201908 CMTBTC-202005 AVABTC-201906 SOLBTC-202009 PONDBTC-202103 SALTBTC-202004 FILBTC-202104 POLSBTC-202002 TKOUSDT-202107 GRSBTC-202106 DIABTC-201904 PHXBTC-202104 POWRBTC-202007 ONTBTC-202201 HARDBTC-201905 SXPDOWNBTC-202001 TRUBTC-201912 HOTBTC-202110 ETCBTC-201901 ADABTC-202005 ORNBTC-202104 IRISBTC-201902 VIDTBTC-202107 BTSBTC-202105 RENBTC-202012 MLNBTC-202002 ICNBTC-201902 OXTBTC-201906 USDSBTC-202008 LENDBTC-202007 DARBTC-202012 GLMRBTC-201909 GTOBTC-202006 SNTBTC-202104 ACABTC-201903 YFIUPBTC-202002 GHSTBTC-201906 IOTXBTC-202106 REEFBTC-202009 BURGERUSDT-202109 MOVRBTC-201908 ANTUSDT-202106 DUSKBTC-202008 VIBBTC-201907 IOTABTC-201902 PROMBTC-202012 CHZBTC-201905 HIGHUSDT-202108 IOSTBTC-202004 FTMBTC-202201 SLPBTC-201904 RAREUSDT-202109 BONDUSDT-202107 BEAMBTC-202011 API3BTC-202008 CTSIUSDT-202111 HARDBTC-202009 BCNBTC-202103 LINKUPUSDT-202109 TRXUPBTC-201912 AIONBTC-201905 TRIGBTC-202107 PHABTC-201912 LINABTC-202011 SYSBTC-201904 ETHUPBTC-201907 ETCBTC-202006 OGNUSDT-202103 SUSHIUPBTC-202104 VIBBTC-202010 OOKIBTC-202201 AAVEUPBTC-201901 LINKBTC-202112 COSUSDT-202109 NASBTC-202105 OAXBTC-201912 XRPUPUSDT-202106 POABTC-202006 SANDBTC-202010 DAIBTC-201912 AERGOBTC-202008 PPTBTC-202007 SKYBTC-202201 SFPBTC-202005 LINAUSDT-202111 PIVXBTC-201901 ARBTC-201906 SRMBTC-202005 ALCXBTC-202106 ICNBTC-201906 WANUSDT-202106 ZRXUSDT-202108 TROYBTC-202108 SNMBTC-202002 LINABTC-202105 XRPBULLBTC-202105 KMDBTC-202201 FILBTC-202012 WABIBTC-201904 PAXGBTC-202102 THETABTC-202106 ATOMBTC-202104 AUDUSDT-202107 RGTBTC-202108 PAXBTC-202103 CLOAKBTC-202011 MLNBTC-202112 REEFUSDT-202106 BTSBTC-202109 STEEMBTC-201903 DEGOUSDT-202106 REPBTC-202003 TORNBTC-201903 GALABTC-202001 BCDBTC-201909 DNTUSDT-202106 LENDBTC-202005 RCNBTC-202108 XZCBTC-202106 ONGBTC-202103 MLNBTC-202201 RIFBTC-202004 OXTUSDT-202107 BETABTC-202009 POABTC-202003 SXPDOWNBTC-202111 VIBBTC-202111 XVSBTC-202011 CMTBTC-202008 USDSBTC-202002 BRDBTC-202108 ZENBTC-202010 RVNBTC-202105 RUNEBTC-202101 YFIBTC-201912 FIOUSDT-202103 MATICBTC-202201 PHAUSDT-202106 JASMYBTC-202006 KEYBTC-202007 SUSDBTC-202009 EASYBTC-202006 LTCUPBTC-202007 DGDBTC-202101 MKRBTC-202010 WABIBTC-202109 CITYBTC-202101 NEOUSDT-202107 BCHABCBTC-202002 ALCXBTC-201902 KSMBTC-202008 ETHUPBTC-201906 LINKUPBTC-202112 GBPUSDT-202108 CDTBTC-202006 ENGBTC-202011 LINKDOWNBTC-202008 LPTBTC-201907 YFIIBTC-201903 STRATBTC-202111 BTCUPBTC-202008 MATICBTC-202106 EGLDBTC-202010 KSMBTC-201903 SUBBTC-202003 JSTBTC-202103 BCHUPBTC-201903 YFIDOWNBTC-202007 PPTBTC-202002 TRXDOWNBTC-201907 SUSDBTC-202105 VIBBTC-201912 UNIUPBTC-202112 MATICBTC-201911 CDTBTC-201906 TOMOBTC-202007 EGLDUSDT-202109 BATBTC-201905 DFBTC-202201 ALPHAUSDT-202103 MCUSDT-202108 DYDXBTC-202110 ETHUPBTC-202102 ARKBTC-202106 LINKBTC-202101 QTUMBTC-202111 SPELLUSDT-202111 YFIDOWNBTC-202104 ONTBTC-202109 YOYOBTC-202012 MANABTC-201912 GRSUSDT-202109 UTKBTC-201903 STORMBTC-202112 LTOUSDT-202106 RGTBTC-202111 CVCBTC-201903 RADUSDT-202108 BALBTC-202106 AGIXBTC-201903 PYRBTC-202007 PHBBTC-202106 GTOBTC-201911 GRSBTC-201906 ACHBTC-202001 STORJBTC-202105 MANABTC-201902 SUSDBTC-201907 IDEXBTC-202007 ANYBTC-202003 SCBTC-202012 AEBTC-201911 MATICBTC-202101 ATABTC-201905 FTMBTC-202012 GBPUSDT-202106 LOKABTC-202102 GLMBTC-201903 FRONTBTC-201906 TRXDOWNBTC-202012 LUNBTC-201906 HSRBTC-202005 CITYBTC-202108 EURBTC-201911 NPXSBTC-201902 QKCBTC-202107 YFIIBTC-201910 NEARBTC-202009 GBPBTC-201910 TRUBTC-202002 POEBTC-201911 CVPUSDT-202109 LINKDOWNBTC-202006 BAKEBTC-202012 BURGERBTC-201909 ZRXBTC-202108 MBLBTC-201902 NANOBTC-201904 FILDOWNBTC-201903 AUDIOBTC-202004 CELOBTC-202002 SFPBTC-202004 RVNUSDT-202103 TRUBTC-202011 DCRBTC-201912 WNXMUSDT-202103 YFIBTC-202003 MTHBTC-202112 BUSDBTC-201909 NANOUSDT-202107 ANYBTC-201901 TROYBTC-201904 FIOBTC-202002 GOBTC-202201 VIABTC-201910 NPXSBTC-202111 KLAYBTC-202112 UNIUPBTC-202103 INSBTC-201910 XTZBTC-201901 SUSDBTC-201906 SKYBTC-201908 POEBTC-202105 ONEBTC-201911 BETABTC-202104 EVXBTC-202104 BNTBTC-202102 FUELUSDT-202103 BCHUPUSDT-202108 ONTUSDT-202103 BARBTC-202002 PERPUSDT-202111 KEYBTC-202006 THETABTC-201903 LOKAUSDT-202111 YFIDOWNUSDT-202108 ZECBTC-202012 GNTBTC-202112 PHXBTC-202103 MANABTC-202111 RAYBTC-202009 SUNBTC-202006 VIABTC-202104 SXPUPBTC-202102 BCNBTC-201908 IMXBTC-202005 PAXGBTC-202106 XRPDOWNUSDT-202111 DNTBTC-201912 RAYBTC-201912 BNBBEARBTC-201904 BAKEBTC-201911 ZENBTC-201911 ACMBTC-201903 FLOWUSDT-202103 PSGBTC-201906 MDTBTC-202102 YFIIBTC-202109 SKYBTC-202006 CITYBTC-202110 POEBTC-201902 DEGOBTC-202102 GHSTBTC-202004 BTCDOWNBTC-202101 RSRBTC-202011 EZBTC-202103 EOSBEARBTC-202108 BCHDOWNBTC-202110 GTOBTC-202002 GTOBTC-201908 CELOUSDT-202103 VOXELBTC-201910 AVABTC-202101 BOTBTC-202104 ADXBTC-201902 GNOBTC-202001 BTTCBTC-201903 MLNBTC-202010 BNTBTC-201902 BEARBTC-201907 TLMBTC-202102 ADABTC-202108 RUNEBTC-202107 API3BTC-202104 NEOBTC-201908 KLAYUSDT-202111 PLABTC-202102 BNBUPUSDT-202107 VTHOBTC-202101 SRMBTC-202002 DOTBTC-202111 ONGBTC-202010 ALGOBTC-202011 BNBBTC-202002 FETBTC-202103 PROMBTC-202005 NEARBTC-202112 BCDBTC-201905 ENJUSDT-202109 AUDBTC-202004 GRSUSDT-202103 AUDBTC-202112 HIVEBTC-202103 PIVXBTC-202105 NPXSBTC-201908 ROSEBTC-202109 BKRWBTC-202103 STRATBTC-202005 SANTOSBTC-202111 WANUSDT-202111 ASRUSDT-202111 C98BTC-201902 NASBTC-202111 C98USDT-202109 SKYBTC-202103 CKBBTC-202106 ATMBTC-202009 RADBTC-201910 ACHUSDT-202109 HIVEBTC-201905 FIDABTC-202103 TCTUSDT-202103 STRAXBTC-202005 BCPTBTC-201904 HIGHBTC-201910 IRISBTC-202201 BOTBTC-202110 CITYBTC-202008 BTCUPBTC-202011 FLUXBTC-202009 CKBBTC-201903 GTCBTC-201912 FLUXBTC-201910 BCDBTC-202101 BCNBTC-202111 VIDTBTC-202004 DOTDOWNBTC-202007 API3BTC-202012 ALGOBTC-201904 MCOBTC-202012 ADADOWNBTC-201907 XLMDOWNBTC-202008 EPSBTC-202003 UNIUSDT-202111 LTCDOWNUSDT-202103 CHESSBTC-202107 ILVBTC-202010 ERNBTC-201907 ADABTC-202101 TFUELBTC-202108 QNTBTC-202008 VENBTC-201902 LUNBTC-202011 BURGERBTC-201904 AAVEDOWNBTC-201906 ANKRBTC-202107 SLPBTC-202007 RCNBTC-202105 BCNBTC-202107 BTCUPBTC-202108 BATBTC-201909 COTIBTC-202109 OXTBTC-201909 VENBTC-201904 MANABTC-202107 CTSIBTC-202008 STPTBTC-201907 ENJBTC-202012 CTSIBTC-201909 PHXUSDT-202106 TOMOBTC-202201 CDTBTC-202105 FIROBTC-201906 QTUMBTC-201903 ENGBTC-201909 LOKABTC-202001 LUNABTC-201912 PHAUSDT-202103 GASBTC-202001 BADGERBTC-202010 DARBTC-201908 FLMUSDT-202109 ANCBTC-202007 QKCBTC-202012 PPTBTC-201905 PAXGBTC-202112 ATMBTC-201911 SUSHIDOWNUSDT-202106 BCNBTC-202110 WNXMBTC-201904 ALPACABTC-202102 NULSBTC-202201 NKNBTC-202001 SXPDOWNBTC-202201 XMRBTC-202009 KP3RBTC-201910 BNXBTC-202009 MCBTC-201911 DAIBTC-202005 FETUSDT-202108 BCDBTC-202006 DENTBTC-201904 BCHABCBTC-201905 PYRBTC-202001 CTKBTC-202011 DLTBTC-201908 DNTBTC-202004 USDSBTC-202010 CMTBTC-201909 BADGERBTC-202110 KLAYBTC-201908 BNTBTC-202006 FORTHBTC-201908 FXSBTC-202008 DGBBTC-202009 GALABTC-202005 RUNEBTC-202001 QSPBTC-202005 CRVBTC-202109 AGIBTC-201906 MDTBTC-202005 DLTUSDT-202107 POLSBTC-202102 XLMUPBTC-202003 VGXBTC-202110 SKYUSDT-202108 ETCBTC-201912 YFIUPBTC-201901 SOLBTC-201903 FIOBTC-201910 CTSIUSDT-202108 BCHDOWNBTC-201903 TRXDOWNBTC-202107 SXPBTC-201902 MLNBTC-202004 BTCUSDT-202106 BNBUPBTC-202111 WNXMBTC-201908 LUNABTC-202012 TLMBTC-202005 YGGBTC-201906 BANDBTC-202105 BCPTBTC-202005 HCBTC-202009 DODOBTC-202004 VIDTBTC-201901 BCCBTC-201901 DUSKBTC-201909 AIONBTC-202007 ZILBTC-202008 GVTBTC-201907 BTTCUSDT-202111 ALPINEBTC-202109 DCRBTC-202102 CVPBTC-202110 BKRWBTC-202101 TRXBTC-202101 CTKBTC-202010 GTOBTC-201904 BTTCBTC-202104 STPTBTC-202106 DEXEBTC-202107 ASTBTC-202005 WPRBTC-202112 XLMBTC-201908 ONGBTC-201907 TRXUPBTC-202201 ONTBTC-202108 QLCBTC-202001 UNIBTC-202007 DUSKBTC-201907 DUSKBTC-201910 DATABTC-202008 MASKBTC-201903 WRXBTC-201911 RAMPBTC-201908 BONDUSDT-202103 ARNBTC-202111 RCNBTC-202008 CFXBTC-201910 FARMUSDT-202106 CHRUSDT-202108 WINBTC-202005 AVAXUSDT-202111 SUNBTC-201911 TVKBTC-202201 MANABTC-202112 MBOXBTC-202009 ROSEBTC-202105 OSTBTC-202104 GALAUSDT-202109 ALICEBTC-202105 YFIIBTC-201906 FILBTC-201910 QSPBTC-201909 TRUBTC-201901 CVXBTC-201904 BURGERBTC-201912 1INCHDOWNBTC-202106 AUDIOBTC-202012 LAZIOBTC-201903 EPSUSDT-202111 ENGBTC-202012 TWTBTC-202012 DOCKBTC-202005 BCHBTC-202112 ANTUSDT-202111 SKLBTC-202103 BATBTC-202110 LOKABTC-201905 SHIBBTC-202103 BTSBTC-202112 MINABTC-201909 EOSBEARBTC-202004 IMXBTC-202001 CVXUSDT-202106 FILBTC-201907 TKOBTC-201912 RAYBTC-201905 WINBTC-202105 IRISBTC-201909 GTOBTC-202001 REQBTC-202002 YGGBTC-201903 FILUPBTC-202107 RIFBTC-202106 BTSBTC-202101 EDOBTC-202004 KLAYBTC-202201 TWTBTC-201912 RADBTC-202107 XMRBTC-202108 PNTBTC-201908 OAXBTC-202006 QTUMBTC-202001 PAXBTC-202012 HBARUSDT-202108 OXTBTC-202004 REEFBTC-202101 SSVBTC-201905 KLAYBTC-202102 LINKUSDT-202107 GTCBTC-202111 SPELLBTC-201903 SUSHIUPUSDT-202111 HCUSDT-202107 PUNDIXBTC-202004 AVAXBTC-201910 LITBTC-201908 PROMBTC-202105 WABIUSDT-202108 BNBBEARBTC-202109 NBSBTC-202201 NPXSBTC-202101 MIRBTC-202109 SCRTBTC-201905 STRAXBTC-202103 GHSTBTC-201912 1INCHDOWNBTC-202011 MBOXUSDT-202107 ONTBTC-201901 DIABTC-202001 VIBEBTC-202001 RNDRBTC-202012 MINABTC-201901 PNTBTC-201905 MLNBTC-201905 YOYOBTC-201911 SKLBTC-202109 BONDBTC-202108 KEYBTC-201906 DAIBTC-202010 MCBTC-202003 COTIBTC-202106 EVXBTC-202103 BTTBTC-202108 BELBTC-202201 NXSBTC-202102 ONGBTC-202009 OXTBTC-202112 ALPACABTC-202009 FORTHUSDT-202106 DENTUSDT-202103 PHXBTC-201909 EVXBTC-202007 BAKEUSDT-202111 ASRUSDT-202103 PERLBTC-201912 APPCBTC-201907 POEBTC-202201 POEBTC-202001 BCDBTC-202104 APPCBTC-201911 YFIUPBTC-202004 SXPDOWNBTC-202012 SNMBTC-202102 FIOUSDT-202106 ZRXBTC-202201 MLNUSDT-202108 XLMDOWNUSDT-202109 LINABTC-202101 QIBTC-202107 PIVXBTC-202107 NEARBTC-201904 ADAUPBTC-201902 MKRBTC-202101 JASMYBTC-202011 TNTBTC-201904 XVSBTC-201905 QKCBTC-202108 POABTC-202012 PERPBTC-201909 SUSDBTC-202012 BCPTBTC-202104 STORMBTC-201906 JASMYUSDT-202106 CMTBTC-202004 SALTBTC-202007 BEARUSDT-202109 AEUSDT-202103 MTHBTC-202012 HBARBTC-202007 ERNBTC-201903 DOCKBTC-202009 PUNDIXUSDT-202109 EPSBTC-202001 MTHBTC-202108 HARDBTC-201911 XVSBTC-202109 SNTBTC-202103 WAXPBTC-201901 ETHUPBTC-202002 HBARBTC-202001 TWTBTC-202102 TORNBTC-202106 MLNBTC-201908 AKROBTC-202105 WNXMBTC-201905 ANKRBTC-201911 FIDABTC-202009 JOEBTC-202102 STPTBTC-201902 NAVBTC-201911 MINABTC-202009 IOTABTC-202103 STMXBTC-202104 AUCTIONBTC-202106 WAVESBTC-201908 NMRBTC-202103 GNTBTC-201903 LITBTC-202006 BRDBTC-202012 TROYBTC-202005 DEGOBTC-202103 FUELBTC-202108 LOOMUSDT-202111 GLMRBTC-201911 USDPUSDT-202111 ATOMBTC-202110 OOKIBTC-202104 C98BTC-202101 PYRBTC-201911 AUDBTC-201902 CHZBTC-201902 SFPBTC-201901 BTGUSDT-202111 HIVEUSDT-202108 LOKABTC-201908 ERNBTC-201908 TRBBTC-202108 FILUPBTC-202008 MASKBTC-202005 ZRXBTC-202109 BANDBTC-201908 BCHABCUSDT-202108 KEEPBTC-202008 TORNBTC-202007 LSKBTC-202107 JSTBTC-202009 BULLUSDT-202103 ONGBTC-201911 ENSBTC-202110 SLPBTC-202101 GTCUSDT-202107 ANYBTC-202110 BKRWBTC-201907 XECBTC-201911 POLYBTC-201902 NCASHUSDT-202103 JUVBTC-202108 RAREBTC-201901 THETABTC-202010 SXPUPBTC-202005 ZRXBTC-202005 YOYOBTC-201907 JASMYBTC-202012 TLMBTC-202109 KSMBTC-202002 TUSDUSDT-202107 UNIUPBTC-201908 POABTC-201904 XRPUSDT-202103 PERPBTC-201903 TORNBTC-201907 ILVBTC-201910 BNBBTC-202012 ENGBTC-202102 WABIBTC-201901 REPUSDT-202103 ANYBTC-201905 RAREBTC-201907 ONGBTC-202006 FETBTC-201909 FTTBTC-201907 LTCBTC-202002 DLTBTC-201904 XMRBTC-201910 CTKBTC-201906 IOTABTC-202109 HIVEBTC-202002 TLMBTC-202004 ASRBTC-201912 ZENBTC-202101 AVABTC-202001 ZENBTC-202009 UNIDOWNBTC-202010 YFIBTC-202010 CITYBTC-202105 OMGBTC-201908 ONGBTC-202109 DOTUPBTC-202001 SUSHIBTC-202005 RGTBTC-202110 DGBBTC-202012 XEMBTC-201906 AGIXUSDT-202106 COTIBTC-202112 VTHOBTC-201901 ARKBTC-202011 VIABTC-202102 DIABTC-201907 QIBTC-202010 BNXUSDT-202103 SUSHIUPBTC-202009 CTXCBTC-201912 FARMBTC-202005 TRIBEUSDT-202111 YGGUSDT-202103 ERNBTC-201909 BNXUSDT-202106 AUDBTC-202103 QUICKBTC-202103 SXPDOWNBTC-202112 TNTUSDT-202109 KEEPBTC-202003 BEAMBTC-202106 MITHBTC-202008 LOKAUSDT-202103 FUELUSDT-202107 WRXBTC-201901 FILDOWNBTC-202007 LINABTC-202106 TRXDOWNBTC-202007 ADXBTC-202107 VOXELBTC-202112 FILUPBTC-202009 CVCBTC-202011 NXSBTC-202006 RAREBTC-201912 ALGOUSDT-202107 SKLBTC-202007 XECBTC-202106 ANTBTC-202003 VIBEBTC-202103 MIRUSDT-202108 ALCXBTC-201905 ERNBTC-202104 YFIIBTC-202011 RGTBTC-202010 HBARBTC-201904 BTCDOWNBTC-202107 AXSBTC-201907 BUSDUSDT-202108 SOLBTC-202108 COMPBTC-201908 ARPABTC-202104 XEMBTC-202001 SOLBTC-202109 ANYBTC-201908 HIVEBTC-201903 ICXBTC-202012 SUSHIUPBTC-202010 OOKIBTC-201905 QSPBTC-202103 TWTBTC-202201 XTZUPBTC-201902 SANDBTC-202011 BCHUPBTC-201906 XRPBTC-202006 BULLBTC-202104 NASBTC-202104 USDSBTC-202104 HIGHBTC-202012 MDABTC-201911 TVKBTC-202001 SYSBTC-201905 HIGHBTC-201909 GLMBTC-202009 ACABTC-201910 OSTBTC-202109 FILDOWNBTC-202105 TWTBTC-202004 PHBBTC-202109 POABTC-202105 TRBBTC-201907 FXSBTC-202004 DATAUSDT-202111 JUVBTC-201909 BCNBTC-201912 MTLBTC-201908 QSPBTC-202105 ZRXBTC-202012 REEFBTC-202111 CLOAKBTC-202008 MANABTC-202005 AAVEBTC-201911 FILUPBTC-202012 IOSTBTC-201907 ZECBTC-202104 STXBTC-202006 OCEANUSDT-202111 LSKBTC-202110 STRAXBTC-202009 MKRBTC-202109 PAXGUSDT-202108 AKROBTC-202101 ERDBTC-202105 REEFBTC-202004 AMBBTC-201903 DOTUPBTC-202104 ASRBTC-202010 RDNBTC-202112 SLPBTC-202106 GTCBTC-201901 REQBTC-201910 BONDBTC-201904 ZILBTC-202002 AMBBTC-202010 STMXBTC-202109 VGXBTC-202004 FRONTUSDT-202111 FIDABTC-201908 CVCUSDT-202103 USDSBTC-202003 RDNUSDT-202111 VIBBTC-201902 XTZUSDT-202107 SSVBTC-201908 CAKEUSDT-202111 BARBTC-202003 IMXBTC-201910 CELOBTC-202008 QSPBTC-202002 BCDBTC-201912 NEOBTC-201903 ZILBTC-201909 C98BTC-201908 BOTBTC-202107 POABTC-201903 FILUPBTC-202105 LAZIOBTC-202105 AIONUSDT-202108 RLCBTC-202006 UNIBTC-201912 MBLBTC-201901 STRAXBTC-201912 COMPBTC-201909 EOSDOWNBTC-202012 LINAUSDT-202106 1INCHBTC-202107 TNTBTC-201903 LTOBTC-202002 WPRUSDT-202109 AIONBTC-202105 ANYUSDT-202106 VETBTC-201910 OGNUSDT-202108 SUBBTC-201902 TRIGBTC-202109 LTCBTC-201901 BCHBTC-202009 SPELLBTC-201907 ETHDOWNBTC-202006 BNBDOWNBTC-201908 VGXBTC-202111 ETHUPBTC-202201 EOSBEARBTC-201904 GHSTBTC-201905 LINAUSDT-202103 BNBBULLBTC-201904 BNBBEARBTC-201902 CHZBTC-202006 LINKDOWNBTC-202012 GNOBTC-201910 LPTBTC-201905 INSBTC-202101 AEBTC-202110 MDXUSDT-202108 UNIUPBTC-201907 EOSBEARBTC-202102 STXBTC-201908 DGDBTC-201908 MIRBTC-202106 IOTXBTC-201902 SANTOSUSDT-202107 DATABTC-202201 UNIDOWNUSDT-202106 OGBTC-202008 FLUXBTC-201908 IOTABTC-201908 LAZIOBTC-201905 EOSUSDT-202108 DENTBTC-202004 ARBTC-201910 FRONTUSDT-202103 MFTBTC-201908 UTKBTC-201905 ZRXUSDT-202103 PIVXBTC-201907 NEBLBTC-202003 VIBEBTC-202012 SUSHIUPBTC-201901 XLMUPBTC-201908 YFIIBTC-202007 AXSBTC-201909 ENJBTC-201912 NBSBTC-201909 FISBTC-201912 GRSBTC-202102 XLMUPBTC-202106 REQUSDT-202109 SANTOSBTC-202103 BRDBTC-202008 GASBTC-201903 BZRXBTC-202010 CTKUSDT-202109 IOTXBTC-202112 BCHBTC-202104 LAZIOBTC-202106 TRIGUSDT-202106 BTCBTC-202104 C98BTC-201903 KEEPUSDT-202107 PPTUSDT-202111 TUSDBTC-201904 MBOXBTC-201906 BADGERUSDT-202109 COCOSBTC-202106 BLZBTC-201908 COCOSBTC-201911 TKOBTC-201904 FRONTBTC-202103 NXSBTC-202001 DREPBTC-202005 FARMBTC-202001 EGLDBTC-202001 CTKBTC-202106 HIVEBTC-202201 FIROUSDT-202106 GXSBTC-202006 TOMOBTC-202005 BCHABCBTC-201909 GTOBTC-202201 DCRBTC-202006 PSGUSDT-202111 WINGBTC-202112 ACHUSDT-202107 LINKUPBTC-201911 DODOBTC-202002 OOKIBTC-202010 STORMBTC-201910 HSRUSDT-202108 CVPBTC-202103 XVSUSDT-202103 HIVEBTC-202003 YGGBTC-202102 SHIBBTC-201908 TOMOBTC-202012 PERPBTC-202011 DOTDOWNBTC-202109 TROYBTC-201908 ELFBTC-202008 PYRBTC-202106 ERDUSDT-202109 VOXELBTC-202201 ORNUSDT-202111 GXSBTC-201903 CKBBTC-202109 YFIIBTC-202001 JOEBTC-202104 TCTBTC-201910 SSVBTC-202006 GOBTC-201909 EOSBEARBTC-202003 AKROBTC-202102 EPSBTC-202009 XTZDOWNBTC-201910 PHXBTC-201908 AMBBTC-202104 ATABTC-202101 ATMBTC-202111 YFIUPBTC-201910 OMBTC-202103 LPTBTC-202010 ERDBTC-202109 STORMBTC-202011 XLMDOWNBTC-202112 ETCBTC-202111 XTZUSDT-202106 SLPBTC-201911 OGBTC-202103 ALPINEBTC-202111 AVABTC-202103 LTCBTC-202003 WAXPBTC-202004 ENJBTC-202201 ALCXUSDT-202108 VITEBTC-201907 LINKDOWNBTC-202108 AAVEUPBTC-201911 SNXBTC-202110 SLPBTC-202201 BTSBTC-202010 CVCBTC-201909 LINKBTC-202008 SHIBBTC-202112 DEXEBTC-202102 LINKUPBTC-202101 MATICBTC-201901 XRPBTC-202104 KAVABTC-201905 MIRBTC-202111 XVSBTC-202102 XTZDOWNBTC-202005 DAIBTC-201902 PONDBTC-201912 BEAMBTC-201910 PHABTC-201902 CLVBTC-201905 EASYBTC-202110 XLMUPBTC-202001 BNBBTC-202009 HIVEBTC-202109 POWRBTC-202104 BTTUSDT-202107 CELRBTC-202004 CLOAKBTC-202010 PERLBTC-202009 BLZBTC-202109 BICOBTC-202005 DEGOBTC-202008 SXPBTC-202009 AVAXBTC-202105 AMPBTC-202008 IOTABTC-202105 CVCBTC-202106 FUELUSDT-202111 PEOPLEBTC-202009 BNXBTC-201911 WAXPBTC-202111 PHAUSDT-202111 CTSIUSDT-202106 WANBTC-202106 TOMOBTC-201910 ATMBTC-201909 XLMUPBTC-202201 SFPBTC-201904 KEEPUSDT-202108 PNTUSDT-202108 BCHBTC-202008 SRMUSDT-202103 NMRBTC-201906 BNBDOWNUSDT-202108 FTMUSDT-202106 IOSTUSDT-202109 DEXEBTC-202003 SYSUSDT-202109 SSVBTC-202001 AGIBTC-201907 FISBTC-201905 CRVBTC-202102 JOEBTC-201902 LPTBTC-202110 TKOBTC-202008 SNGLSBTC-201904 STPTBTC-202112 OGNBTC-201912 BQXBTC-202006 GXSUSDT-202103 OCEANBTC-201911 CITYBTC-201907 POABTC-201909 RAREBTC-202002 BATUSDT-202103 DYDXBTC-202201 DOGEBTC-201906 WOOBTC-202104 PAXGBTC-202009 JASMYBTC-202005 RENBTCBTC-202105 XEMBTC-202103 GOBTC-202111 BZRXBTC-202002 BCHBTC-201902 FTMBTC-202107 PHBUSDT-202103 SXPDOWNBTC-201901 ICXUSDT-202111 VETBTC-202010 BANDBTC-202101 BEARBTC-201906 AXSBTC-202004 PROMBTC-202008 VOXELBTC-202006 LPTBTC-201908 WINGBTC-202102 RCNBTC-201912 SKYBTC-202008 BCHABCBTC-202011 ARPAUSDT-202106 GASBTC-201911 BEAMBTC-202012 CLVBTC-201908 ZENBTC-202201 MANABTC-201906 FIROBTC-202102 INSBTC-202105 LTOBTC-202110 YFIBTC-202009 CTXCBTC-202003 MBOXBTC-201909 ARPABTC-202005 DOTBTC-202108 SSVBTC-201911 RSRBTC-201903 WOOBTC-202007 FORBTC-202201 SALTBTC-201912 SKLBTC-201906 WINGSBTC-201905 MATICBTC-201907 CTXCBTC-201905 BALBTC-202002 ETHBULLBTC-201907 UMABTC-202201 NCASHBTC-202002 FORBTC-202006 NCASHBTC-202003 MDABTC-201903 CHATBTC-202102 OCEANBTC-202103 PHBBTC-202101 SUSHIBTC-201910 USDSBTC-202106 MCBTC-202109 BTTUSDT-202109 MITHBTC-202103 XEMBTC-201908 GTCBTC-202101 DOTUPBTC-201909 DOTDOWNUSDT-202103 LUNAUSDT-202103 TLMBTC-201911 ADABTC-201910 VIDTBTC-202001 MTLBTC-202110 CAKEBTC-202109 FUELBTC-202110 QTUMBTC-201911 BTCSTBTC-202111 EOSBTC-202002 RAREBTC-202105 USDPBTC-202004 BNBBEARBTC-202006 BTTBTC-202010 VIBEUSDT-202108 WRXUSDT-202103 UNIDOWNBTC-202108 CVCBTC-201904 REPBTC-202108 OGNBTC-201902 SUBBTC-202103 XTZUPBTC-202012 NKNBTC-202009 PAXGBTC-201907 DREPBTC-202003 ETCBTC-201908 DYDXBTC-201903 USDSBBTC-201909 BTCBTC-202003 STRATBTC-202003 SOLUSDT-202106 AUTOBTC-202002 NEARBTC-202107 FIDABTC-201909 BTCUPBTC-201907 BULLBTC-202010 ACABTC-202008 SHIBUSDT-202103 SLPUSDT-202109 POABTC-201901 STXBTC-202010 BAKEBTC-202106 ALICEBTC-201911 EASYBTC-201906 CKBBTC-202201 CKBBTC-202101 BCHBTC-202109 SNGLSBTC-202106 CHATBTC-201907 MOVRBTC-202011 DEGOBTC-202105 BCHBTC-202108 PEOPLEBTC-202110 MCOBTC-202102 PEOPLEUSDT-202106 BCHUPBTC-202004 API3BTC-202002 AUDIOBTC-202003 RUNEBTC-201909 LINKBTC-201904 DOCKUSDT-202106 GXSBTC-201906 CELRBTC-201911 TOMOUSDT-202107 BETABTC-202007 WAVESBTC-202102 WTCBTC-201909 GVTBTC-201906 CFXBTC-202010 WNXMBTC-202109 NASBTC-202109 EZBTC-202102 XTZUPBTC-201903 ARNBTC-202101 GALABTC-201903 BTCBBTC-202002 USDCUSDT-202107 SUSHIUPBTC-202102 EOSBULLBTC-202010 ENJBTC-202102 USDSBBTC-201908 RNDRUSDT-202111 FORUSDT-202109 API3USDT-202107 FXSBTC-201906 MITHBTC-202109 SKLBTC-201907 CTSIBTC-201907 PHXBTC-201905 AERGOBTC-201908 MASKBTC-202011 SUSHIUPBTC-202106 AMPBTC-201908 QUICKBTC-201911 ETHBULLBTC-202102 VIDTBTC-202101 RAYBTC-202105 EZBTC-202107 FUNUSDT-202111 MBOXBTC-202002 SNMBTC-202101 REPBTC-202109 BNBBULLBTC-202104 BNBUPBTC-202110 IOTABTC-201911 MFTBTC-202201 REQUSDT-202103 VITEBTC-202106 RENBTCBTC-202107 PUNDIXBTC-201904 EDOBTC-202001 FUNBTC-202012 EOSBULLBTC-201912 ONGBTC-202003 WINGBTC-201901 GRTUSDT-202106 PPTBTC-202104 VTHOBTC-202103 CKBBTC-201907 KLAYBTC-201910 XVSBTC-202012 SFPBTC-202007 BCDBTC-202112 YFIIBTC-202010 RLCBTC-202005 ANKRBTC-201902 WBTCBTC-202011 FORBTC-202109 DGBBTC-201906 RLCBTC-202008 XRPUSDT-202108 ACABTC-202006 MODBTC-201907 GALABTC-201909 ONTBTC-202008 TCTUSDT-202109 KEYBTC-202104 SANDBTC-202101 CRVBTC-202008 ACHBTC-202002 PHBBTC-202112 BNTUSDT-202106 BEAMBTC-201912 MCBTC-201909 DENTUSDT-202108 TCTBTC-202009 NEBLUSDT-202107 SKYBTC-202111 XECUSDT-202106 NASUSDT-202103 UNIDOWNBTC-202110 HNTBTC-202012 LINABTC-202010 SXPDOWNBTC-202009 VTHOBTC-202112 SFPBTC-202106 GRSBTC-202103 API3BTC-202106 TORNBTC-202105 FARMBTC-202004 AKROBTC-202006 QIBTC-202104 TNTBTC-202005 BICOBTC-201905 ADAUPUSDT-202109 QLCBTC-201910 SXPBTC-202003 TRXDOWNBTC-201912 XECBTC-202101 BTSBTC-202006 ETHDOWNBTC-201910 SXPUPBTC-202004 AMPBTC-202007 DLTBTC-202003 SXPDOWNUSDT-202103 GTOBTC-202007 SCRTBTC-202104 OSTBTC-202005 RGTUSDT-202107 EPSBTC-202106 BNBBEARBTC-201907 TWTBTC-201908 WABIBTC-202003 AUCTIONBTC-201906 DYDXBTC-201908 NEBLBTC-202010 XRPBEARBTC-202101 POLSBTC-202109 WBTCBTC-201906 COCOSBTC-202004 SUPERBTC-201910 MKRBTC-201909 AXSBTC-202112 DIAUSDT-202107 ETHBULLBTC-202012 ANTBTC-201912 KMDBTC-202103 XRPBEARBTC-202011 MKRBTC-202103 PERPBTC-202101 AGLDBTC-202010 SXPDOWNBTC-202007 WRXBTC-202011 ALGOBTC-202007 WPRBTC-202108 CTKUSDT-202111 WAXPBTC-202001 MTLBTC-201911 BQXBTC-202103 ZECBTC-201911 BNTBTC-201901 MTLUSDT-202103 RAMPBTC-201909 DENTBTC-201911 IDEXBTC-202105 LTCBTC-202101 SXPBTC-201911 UMABTC-202107 AUTOBTC-202108 NEBLUSDT-202108 EOSBTC-202110 LTCDOWNBTC-201910 TORNBTC-202006 MOVRBTC-202005 ATABTC-202001 FTMUSDT-202103 RIFBTC-202103 ADXBTC-202111 BTCBTC-202109 PORTOBTC-202004 SNMBTC-202103 DLTUSDT-202103 TNTBTC-202110 GVTBTC-202112 RENBTC-202111 BALBTC-202001 LAZIOBTC-202002 STORMBTC-201907 PHXBTC-202010 ETHDOWNBTC-202104 YGGBTC-202001 FUELBTC-202201 RIFUSDT-202108 DEXEBTC-201910 KNCBTC-202104 ASTBTC-202110 KNCBTC-202001 EDOBTC-202103 UTKBTC-202201 STMXBTC-201905 TUSDBTC-202103 STORMUSDT-202106 BICOBTC-202105 ETHDOWNBTC-202004 ETHUSDT-202107 CVXBTC-201905 SCBTC-202001 FIOBTC-202008 MIRBTC-202110 LINKBTC-201910 CELRBTC-202105 VTHOBTC-202009 AUDBTC-202201 STORMBTC-202106 C98BTC-201904 VTHOBTC-202109 AEBTC-202005 THETABTC-202009 AERGOBTC-202105 EOSUPBTC-202111 POEBTC-202104 REPBTC-202110 BULLBTC-201904 XRPBTC-201901 LITBTC-202102 ADAUSDT-202109 ACHUSDT-202111 OCEANBTC-202002 BTTCUSDT-202106 IOTXUSDT-202111 BCDBTC-202011 TFUELBTC-201910 STEEMBTC-202201 ICNUSDT-202107 SLPBTC-201906 DYDXBTC-202111 RAMPBTC-202012 CELRBTC-202009 SRMBTC-202109 ROSEBTC-202106 TCTBTC-202109 FIROUSDT-202111 EGLDBTC-201906 ILVBTC-202110 LTCBTC-202107 EOSBULLBTC-202008 PIVXBTC-202008 ORNUSDT-202109 DAIUSDT-202107 AVAXBTC-202106 ANCBTC-202010 XTZDOWNBTC-202106 MANABTC-202006 AGLDBTC-201902 TUSDBTC-201905 PORTOBTC-202012 POEBTC-202101 SCBTC-201906 UMABTC-202108 FIDAUSDT-202103 RPXBTC-202110 GVTBTC-202012 BANDBTC-202004 BTGBTC-201902 YGGBTC-201907 OMBTC-202003 ARKBTC-202007 FILUPBTC-201910 PHBUSDT-202109 POWRUSDT-202108 CFXBTC-201903 PSGBTC-202001 PHBUSDT-202111 LITBTC-202008 LOOMBTC-202102 QKCBTC-201908 BADGERBTC-202107 REEFBTC-202003 CAKEBTC-202104 WBTCBTC-201903 YGGBTC-202009 SXPBTC-202002 GHSTBTC-202109 XTZDOWNBTC-201903 GOBTC-202009 TROYBTC-202007 BNBBTC-201902 TFUELBTC-202002 GNOBTC-202012 YGGBTC-201908 ASRBTC-202106 ONEBTC-201910 ADADOWNBTC-202006 EURBTC-202007 XLMUPBTC-202004 LRCBTC-201904 THETABTC-202109 STPTBTC-202102 MOVRBTC-201901 AUDBTC-201903 IOTXBTC-202111 RSRBTC-201905 DFBTC-201907 VTHOBTC-201908 SYSBTC-201910 FIDAUSDT-202107 BNBDOWNBTC-202110 STXUSDT-202106 GLMRUSDT-202108 WTCBTC-201908 1INCHUPBTC-202012 IOTXBTC-202109 RAREBTC-202111 LPTBTC-202103 GVTBTC-202108 BQXBTC-202112 CLVBTC-202008 XRPBEARBTC-201908 FORBTC-202105 HSRBTC-202003 ADAUPBTC-202003 GBPBTC-201906 UNIDOWNBTC-202102 TRIGBTC-202111 KSMBTC-202201 VENBTC-202008 BAKEBTC-201908 STEEMBTC-202006 COSBTC-202005 ANYBTC-202111 VIBEBTC-202111 RPXBTC-201901 GLMRUSDT-202106 POLSBTC-201904 SUPERBTC-201907 PROMBTC-202101 TKOBTC-202111 DREPBTC-201902 FLMBTC-202001 HIGHBTC-202003 DIABTC-202002 REQBTC-202005 ZENBTC-202108 AAVEDOWNBTC-201910 API3BTC-202010 NEOBTC-202006 ARKBTC-201904 USDPUSDT-202109 REEFBTC-201912 SCBTC-202104 ONEUSDT-202107 DASHBTC-202010 ANTBTC-201910 PAXBTC-202105 DNTBTC-201906 DOTUPBTC-201912 ARPABTC-202010 STEEMBTC-201906 KP3RBTC-201909 NXSBTC-202112 USDSBBTC-202103 YGGBTC-202011 NEARBTC-202002 ARKBTC-201902 FIOBTC-201901 SNMBTC-201906 WAVESUSDT-202111 CVPBTC-201912 ARNBTC-202005 ALICEBTC-202110 TVKBTC-202010 SALTBTC-202008 SCRTBTC-202001 STORJBTC-202004 CTSIBTC-202109 ETHBTC-201901 BCNBTC-202003 BCPTBTC-202101 PAXGBTC-202010 OMUSDT-202103 ETHBEARBTC-202007 ATOMBTC-201909 VGXBTC-202003 RSRBTC-202112 TRIBEUSDT-202107 NULSBTC-201903 AGIXBTC-202101 XTZUPBTC-202003 NMRUSDT-202103 DEXEBTC-202005 ADABTC-202112 DGBUSDT-202109 XVGBTC-202109 NEOBTC-202103 BUSDUSDT-202111 XRPBEARBTC-202005 RAYBTC-202110 MIRBTC-201911 ETHBEARBTC-202103 BKRWBTC-202112 ETHBTC-201912 GASBTC-201905 NEBLBTC-202012 CTKBTC-202107 FIDABTC-201906 ICXUSDT-202107 AGIBTC-201902 SUPERBTC-201902 AAVEUPBTC-201909 OCEANBTC-202106 QTUMBTC-202004 DYDXBTC-201901 WNXMBTC-202107 DARBTC-202109 YFIUPBTC-201904 TRXBTC-202112 AGIXBTC-202004 LRCBTC-201907 WRXBTC-202112 IRISBTC-201903 RCNBTC-202002 DGBBTC-202201 TUSDBTC-201909 GVTBTC-202011 ACHUSDT-202103 COMPUSDT-202106 CNDBTC-202001 UTKBTC-202004 KEEPBTC-201906 ENJUSDT-202107 BANDBTC-202009 KAVABTC-201909 BTCUPUSDT-202106 UMABTC-201912 CAKEBTC-201902 SYSBTC-202104 TCTBTC-202007 BCHABCBTC-202103 ADABTC-202003 SNTBTC-202110 GASBTC-202201 KNCBTC-202110 TORNBTC-202110 LTOBTC-201904 OCEANBTC-202011 HIGHBTC-201911 CAKEBTC-202002 DLTBTC-202007 DFBTC-201901 DREPBTC-202011 BKRWUSDT-202107 XMRBTC-202003 ERDBTC-201911 TRBBTC-201908 GLMRUSDT-202111 QUICKBTC-201905 YGGBTC-202008 LTCUPBTC-202105 BARUSDT-202109 AMPBTC-201911 HNTBTC-201907 WINUSDT-202107 LINABTC-202103 RGTUSDT-202103 WINGBTC-202003 PERPUSDT-202106 WPRBTC-202107 HCBTC-202102 BNTBTC-202002 ADXBTC-202002 GRTBTC-202002 FLOWBTC-202008 BULLBTC-201901 XVSBTC-202010 LINKUPBTC-201908 FORTHBTC-202110 LPTBTC-202111 ADXBTC-202101 EURBTC-201903 LTCUPUSDT-202107 HSRBTC-201912 XVSBTC-202001 TFUELBTC-202012 BURGERBTC-202004 ANYBTC-202106 AGLDBTC-201909 FTMBTC-202002 SNTBTC-202008 INSBTC-202011 PORTOBTC-201903 KLAYBTC-202105 CVPBTC-202001 SNXBTC-202011 ALPACABTC-202004 ENGBTC-202005 AAVEDOWNBTC-202111 XTZBTC-202107 QLCBTC-202107 GLMBTC-201904 ARNBTC-201904 CITYBTC-201908 IOTABTC-202010 DEGOUSDT-202111 LTCBTC-202007 DOTBTC-202001 WABIUSDT-202107 TUSDBTC-202005 BATBTC-201902 MDXBTC-202006 PUNDIXBTC-201908 FUELBTC-202102 ANKRBTC-201906 ACMUSDT-202108 AVAXBTC-202201 MBOXBTC-202012 XRPDOWNBTC-202103 GRTBTC-202110 COSBTC-202008 YFIIBTC-202102 ETHBULLBTC-202010 ADAUPBTC-202102 QLCBTC-202003 ZECBTC-202003 ONTBTC-201902 OXTBTC-202002 KEYBTC-201903 TCTBTC-202006 IMXUSDT-202103 CELRBTC-201912 BTCBTC-201903 LPTBTC-202005 FILUSDT-202106 JSTBTC-201907 TORNBTC-201908 NASBTC-201907 NCASHBTC-202008 STMXBTC-201901 VITEBTC-202102 AGLDBTC-201908 INJBTC-202002 PAXUSDT-202108 INSBTC-202008 JOEBTC-202009 ASRBTC-202105 MKRBTC-201902 SNXBTC-202106 BICOBTC-202101 LTCBTC-202111 AIONBTC-202201 HARDBTC-202201 LOKABTC-202101 USDSBBTC-201912 MINABTC-202007 NBSBTC-202104 OMGBTC-201909 TRIBEBTC-201907 ALCXUSDT-202103 ILVBTC-202104 AAVEBTC-202007 AIONBTC-202106 ERDBTC-201906 DATABTC-202003 FORTHUSDT-202103 USDPBTC-201907 ASRBTC-202009 PEOPLEBTC-202005 FARMBTC-202103 COMPBTC-201902 FUNBTC-202102 MDXBTC-202101 AIONUSDT-202109 QSPUSDT-202108 TUSDBTC-201912 GXSBTC-202010 BCHSVBTC-202008 CTXCUSDT-202107 ARDRBTC-202112 WINGSUSDT-202111 VIDTBTC-201904 MDXBTC-202004 POEUSDT-202106 MOVRBTC-202104 BEARUSDT-202106 QTUMUSDT-202107 SUSHIDOWNUSDT-202108 BQXBTC-202004 NEARUSDT-202106 GRSBTC-201911 PSGBTC-201911 VOXELBTC-201902 TVKBTC-202103 AUTOBTC-202201 BCHUPBTC-201911 SLPBTC-201901 AIONBTC-202102 ALCXBTC-202010 RUNEBTC-202105 TNBUSDT-202106 GBPBTC-202010 EGLDBTC-202104 USDSBTC-202110 FORBTC-202108 RADBTC-202101 QSPBTC-202108 HOTBTC-201906 QLCBTC-202106 SLPBTC-202105 AUDIOBTC-201906 BULLBTC-202112 ROSEUSDT-202103 SCRTBTC-202102 QIBTC-201902 USDSBTC-202201 JOEBTC-202007 HIVEBTC-202107 LITBTC-202010 GRSBTC-202012 SCRTBTC-202111 SFPBTC-202103 FIROBTC-202106 LRCBTC-202012 NULSBTC-202012 GALABTC-201901 LPTBTC-201904 PERPBTC-202110 USTBTC-202104 JUVBTC-202006 GRTBTC-202007 ALPACABTC-202107 QTUMBTC-202109 LTCDOWNBTC-201908 COSBTC-202112 AAVEDOWNBTC-201908 BNBBEARBTC-202111 MCBTC-202008 RDNBTC-202001 STRATBTC-202008 MIRBTC-202108 DARUSDT-202107 BCHDOWNBTC-201912 RCNBTC-202103 NUBTC-201910 GNTBTC-202003 AERGOUSDT-202103 TFUELBTC-202105 ALICEBTC-201910 ARDRBTC-202005 USDCBTC-202102 TWTBTC-202002 BALBTC-202102 BNBBULLBTC-202201 POLSBTC-201909 BTCSTBTC-202112 AVAXBTC-201912 ALPACABTC-201902 EOSBULLBTC-202005 QLCBTC-201912 XLMUPBTC-202010 RNDRUSDT-202109 VGXBTC-202109 GXSBTC-202201 THETABTC-201907 LENDBTC-201907 MODBTC-202006 XECBTC-202107 MTLBTC-202106 LINKDOWNBTC-201903 WRXBTC-202107 XRPBULLBTC-202108 OOKIBTC-201909 TNTBTC-201901 PEOPLEBTC-202106 COSBTC-202006 CVPBTC-202012 CVCBTC-202103 CTXCBTC-202008 BULLBTC-202105 ETHDOWNBTC-202107 TFUELBTC-202101 SUSHIUPBTC-202101 SCRTBTC-201908 QTUMUSDT-202108 FTTBTC-201908 AUDBTC-202012 TRBBTC-202105 BCHABCBTC-202104 ADXBTC-201905 RENBTCBTC-201906 RPXBTC-202105 SUBBTC-201911 ZECBTC-202109 DGDBTC-202012 KNCBTC-202109 IOTXUSDT-202103 EOSBEARBTC-202011 AAVEDOWNBTC-202101 XLMBTC-202106 DOCKBTC-202111 TRXBTC-202104 TKOBTC-201903 YFIIBTC-201909 USDPBTC-202107 DGBUSDT-202108 HARDBTC-202110 BCHUPUSDT-202111 KEEPBTC-201902 RDNBTC-202005 DCRUSDT-202107 ARDRBTC-202008 SCBTC-202110 LRCBTC-201906 HSRUSDT-202109 ATMBTC-202106 QUICKBTC-202003 USDCBTC-202003 ASTBTC-202111 COMPBTC-202103 IDEXBTC-202112 RPXBTC-202104 USDPBTC-202002 COCOSBTC-201908 STRAXBTC-202011 SOLBTC-201904 NAVUSDT-202103 PUNDIXBTC-202107 ICNUSDT-202106 EGLDBTC-202107 XTZUPBTC-201912 SHIBBTC-202004 ROSEBTC-202009 TOMOBTC-202102 IOSTBTC-202103 CKBBTC-202102 ETHBTC-201911 TFUELUSDT-202109 GASBTC-201902 BTTBTC-201905 RAREBTC-202001 LTOBTC-202111 RPXBTC-202101 FUELBTC-202004 RENBTCBTC-202109 UTKBTC-202112 ONEBTC-202012 XRPBTC-202010 RENBTC-202110 RENBTCBTC-201910 WTCBTC-202105 SXPDOWNUSDT-202111 STMXBTC-202201 AGLDBTC-202008 BCNBTC-202008 API3BTC-202004 SUSDBTC-202104 ADXBTC-201912 CTKBTC-201901 ARNBTC-202104 CVCBTC-202101 SUBBTC-202006 SUSHIUPBTC-202108 RADBTC-201903 RPXUSDT-202107 MANABTC-201911 AKROBTC-202104 MODBTC-202009 HBARBTC-202201 1INCHUPBTC-201912 REQBTC-202003 BTCDOWNBTC-201907 PHXBTC-201906 RAYBTC-201910 YFIBTC-201901 1INCHUPBTC-201911 FUNBTC-202003 DREPBTC-202112 UNIUPBTC-202009 FLMBTC-201907 POWRBTC-201908 ETHBULLBTC-202003 STEEMBTC-202005 BRDBTC-202006 KLAYBTC-202104 EASYBTC-202107 WINGUSDT-202108 BEAMBTC-201905 AUCTIONBTC-201908 IOTAUSDT-202109 GHSTBTC-201908 LPTBTC-201901 ANCBTC-201908 PEOPLEBTC-201912 ARNBTC-202010 GNOBTC-202107 WINGBTC-201904 GRSUSDT-202111 AUTOBTC-202012 INJUSDT-202111 SSVBTC-201904 XRPDOWNBTC-202003 AVAXBTC-202008 SRMBTC-201904 TWTUSDT-202103 LSKUSDT-202107 BTCSTBTC-201905 RADBTC-201909 RIFBTC-202003 FTTBTC-202107 QSPBTC-201906 LINKBTC-201912 CVPBTC-202008 CLOAKBTC-202105 TRXBTC-201903 IMXBTC-202105 ERNBTC-202107 REPBTC-202007 BCHABCBTC-202105 FRONTBTC-202011 GVTBTC-202005 SUSDBTC-202201 KNCBTC-201910 ETHBEARBTC-202112 DREPBTC-202004 FIOBTC-201908 CVXBTC-202103 USDSBTC-202111 AAVEUPBTC-202004 STRATBTC-201909 GVTBTC-202101 ENJBTC-202106 VIABTC-202008 OOKIBTC-202003 XMRBTC-202010 ATOMBTC-202102 KMDBTC-202011 NPXSBTC-202011 ARKBTC-202005 OGBTC-202101 MCOBTC-201911 ACMBTC-202008 SHIBBTC-202003 VIDTBTC-202011 DCRBTC-202112 LINKDOWNUSDT-202108 CELOUSDT-202109 DYDXUSDT-202109 HSRBTC-202101 ASRBTC-201906 PAXUSDT-202103 SANDBTC-202108 SNGLSBTC-202104 RIFBTC-202101 FARMBTC-202201 SKLBTC-201903 DOTDOWNBTC-201911 INJBTC-201907 XTZDOWNBTC-201909 XLMDOWNBTC-202102 USTBTC-202105 MDXBTC-201907 QUICKBTC-201902 WANBTC-202102 STPTUSDT-202106 IMXUSDT-202109 YFIDOWNBTC-201907 AXSUSDT-202109 LTCBTC-202012 NAVBTC-201909 USDSBTC-202103 PROMBTC-202104 SXPUPBTC-201911 PHABTC-202112 MATICBTC-202012 OCEANBTC-202108 GVTBTC-202008 CDTBTC-201902 BAKEUSDT-202109 RNDRBTC-202010 TLMBTC-202001 LINKBTC-201906 XECBTC-202008 NXSBTC-201901 WAVESBTC-202103 CLOAKUSDT-202108 MOVRBTC-202004 BCHBTC-201901 STRAXBTC-202008 FUELBTC-202111 USDCBTC-202108 FUELBTC-201905 AERGOBTC-201902 ICXBTC-202103 HCBTC-202001 UNFIBTC-202201 FTMBTC-202001 BONDBTC-202102 DODOUSDT-202109 XLMUSDT-202109 CAKEBTC-202111 REEFBTC-201903 CHRBTC-202003 BNXBTC-202107 SNMBTC-202008 HBARBTC-202104 ACABTC-201911 MASKBTC-202108 CTKBTC-202001 PERPUSDT-202107 IDEXBTC-201912 WBTCUSDT-202109 PROMBTC-202010 PAXGBTC-202107 VGXBTC-202201 ALPHABTC-202010 OMBTC-201907 RUNEBTC-202106 INJUSDT-202103 COTIBTC-201904 BOTBTC-202103 MOVRBTC-201912 FORTHBTC-202011 ANYBTC-202201 XLMUPBTC-201912 TNTBTC-202007 SCRTUSDT-202111 STRATBTC-201901 PNTBTC-202008 DUSKUSDT-202103 AVABTC-201907 MLNBTC-202005 DOTDOWNBTC-202001 OGNBTC-202201 COSBTC-202104 ONTBTC-202012 UNIBTC-202103 DASHBTC-202004 AEBTC-201912 ETHBULLBTC-202104 JOEBTC-202101 ADABTC-201908 NEOBTC-202007 OAXBTC-201906 FIROBTC-202008 FLUXBTC-202012 KP3RUSDT-202108 SCRTBTC-202002 USDSBTC-202105 BTGBTC-202101 BCHBTC-202101 ADAUPBTC-201911 RGTBTC-202107 COTIBTC-201910 RADBTC-201912 COTIBTC-201905 NMRBTC-202008 IDEXBTC-202006 FLOWBTC-201911 FIOBTC-202101 VENBTC-202112 BEAMBTC-201909 BOTBTC-202112 DREPBTC-201911 MANABTC-202201 EASYBTC-202004 ZECBTC-202001 AGIXBTC-201901 COMPBTC-202201 WTCBTC-202011 BATBTC-201903 XZCUSDT-202108 PSGBTC-202108 SFPBTC-201903 XMRBTC-202111 DODOBTC-202108 CFXBTC-202006 DENTBTC-202107 JOEBTC-201901 SCRTBTC-202106 YFIIBTC-202110 NPXSBTC-201901 PUNDIXBTC-202104 XECBTC-201901 CTSIBTC-202104 RAMPUSDT-202107 BAKEBTC-202112 ALPHABTC-202108 FLMBTC-202011 FRONTBTC-201910 BCHUPUSDT-202103 JASMYUSDT-202103 KEYBTC-202111 FTTBTC-202004 NMRBTC-202001 FILUPBTC-202109 FTMBTC-202010 CLOAKBTC-202201 DYDXBTC-202003 PHXBTC-201904 BEAMBTC-202010 SRMBTC-202110 CLOAKBTC-202104 RENUSDT-202108 PYRBTC-201908 ADABTC-201912 VGXBTC-202104 STORJBTC-202011 ASRBTC-202101 SNGLSBTC-202002 BONDBTC-202004 BCHSVBTC-202006 WAVESBTC-202003 CVCBTC-202002 BTCSTUSDT-202103 TLMBTC-202108 AUDBTC-202006 CELRBTC-202007 BEAMBTC-201904 AUCTIONBTC-202012 BTCBTC-202007 BETABTC-201908 DNTBTC-201903 DOTUPBTC-201907 SUSHIBTC-202109 XRPBTC-201911 TLMUSDT-202107 SNTUSDT-202107 BELBTC-201904 DNTBTC-201910 AVAXBTC-201907 GOBTC-202004 HNTBTC-202107 ALGOBTC-202103 PAXGBTC-202012 SUNBTC-202010 WTCBTC-202110 STORJUSDT-202107 LTOBTC-202105 LINAUSDT-202108 ETHDOWNBTC-201906 DOTDOWNBTC-202003 PNTBTC-201909 BNBDOWNBTC-202002 CNDBTC-202009 SCBTC-201909 PAXGBTC-202104 ZECBTC-201905 ONTBTC-202003 OMGBTC-202012 AMBBTC-202201 EGLDBTC-202109 LITBTC-201912 UNIUPBTC-202011 USDSBBTC-201903 ONEBTC-201902 UNFIBTC-202009 ADAUPBTC-202109 OCEANBTC-201910 BRDBTC-201905 1INCHBTC-202104 BCCBTC-202004 ETCBTC-202112 LOKABTC-202012 AUDIOBTC-202111 LTCBTC-201903 AVAXBTC-202110 JSTBTC-202008 USTBTC-202012 WINBTC-202012 ETHBTC-201903 ALPHABTC-201912 MBOXBTC-202005 ALGOBTC-202104 ARKBTC-202004 PORTOBTC-201904 GNOUSDT-202106 LOOMBTC-201904 PERLBTC-201901 YFIDOWNBTC-202009 HBARBTC-201903 ONGBTC-202008 QSPBTC-202110 PONDUSDT-202106 CFXBTC-202105 ENSBTC-202109 GBPBTC-202006 POLYBTC-202110 DATABTC-201906 RENBTCUSDT-202107 XMRBTC-201907 FORBTC-201909 QSPBTC-201910 LINKUPBTC-201910 LTOBTC-202101 FIDABTC-201907 RENBTC-202007 PIVXBTC-202109 FORBTC-201906 PEOPLEBTC-202101 SSVBTC-202010 HIVEBTC-202009 EZUSDT-202103 MTLBTC-202008 PNTUSDT-202107 WNXMBTC-202103 PLABTC-202201 IMXBTC-201909 IDEXBTC-202103 HBARBTC-202106 JASMYBTC-202101 YFIBTC-202108 ARKBTC-201907 LRCBTC-201908 GOBTC-202110 RGTBTC-202112 HNTBTC-202002 C98BTC-202106 YFIDOWNUSDT-202103 POLSBTC-202112 CITYBTC-202102 SNTBTC-202012 RAYBTC-202112 DOTUPBTC-202101 YFIDOWNBTC-202011 ELFBTC-201901 GXSUSDT-202107 CHZBTC-202201 GOBTC-202008 FETBTC-202111 DIAUSDT-202108 TORNBTC-202103 UNIUPBTC-202111 ARPABTC-201907 CNDBTC-202007 UNIDOWNBTC-202103 XZCBTC-201908 USTBTC-202008 ATABTC-202108 MKRBTC-202111 PHBBTC-202004 WOOBTC-201912 REQBTC-202105 DGBBTC-202109 OGBTC-202107 ETHUPUSDT-202109 PSGBTC-201910 SNMUSDT-202106 DOTBTC-202005 BCHSVBTC-201905 ARDRBTC-201909 ALPINEUSDT-202111 MATICBTC-202007 TLMBTC-202003 ACHBTC-201904 BTGBTC-202008 MTHBTC-201906 OAXBTC-202012 GTOBTC-202101 QTUMBTC-202103 LPTBTC-202107 NULSBTC-202007 BNBUPBTC-201906 ENGUSDT-202108 PNTBTC-202110 PORTOBTC-202108 KNCBTC-202003 DODOBTC-202101 UMABTC-202011 YFIDOWNUSDT-202107 FILDOWNBTC-202009 ACMBTC-201901 DEGOBTC-201903 QNTUSDT-202109 BADGERBTC-202007 DODOBTC-202012 USDSBTC-201907 BOTBTC-202008 REQBTC-202102 DASHUSDT-202111 QUICKBTC-202111 STMXBTC-201911 BTCSTBTC-202006 LTCBTC-202201 HSRBTC-201909 CHATBTC-202011 MBLBTC-202106 NKNBTC-202012 CHESSUSDT-202109 ATOMBTC-202003 IOSTBTC-201904 BANDBTC-202103 POLSBTC-201912 RDNBTC-202011 ILVUSDT-202103 PYRBTC-202011 DARBTC-202107 FLMBTC-202008 RAYBTC-202003 MOVRUSDT-202107 REPBTC-201905 FLMBTC-202101 DODOBTC-202103 AERGOBTC-202002 SCRTBTC-201902 ATOMUSDT-202106 CKBBTC-202012 DLTBTC-202106 VETBTC-202107 BTTBTC-202008 REPBTC-201902 MTHBTC-202001 STMXBTC-202009 ONEBTC-202110 SNTBTC-202107 MITHBTC-202003 UNIBTC-201909 QLCBTC-201905 CELRBTC-201901 SNGLSBTC-201905 XMRBTC-202012 PEOPLEBTC-202109 MOVRBTC-202111 AVAXBTC-202012 CDTBTC-201901 MITHUSDT-202109 IMXBTC-202004 HIVEBTC-201909 DUSKBTC-202005 BTCSTBTC-201910 BCHUPBTC-202105 VIDTBTC-202201 ERDBTC-202005 TORNUSDT-202103 FIOUSDT-202109 BEARBTC-202011 DNTBTC-201905 RENBTC-201901 FUNBTC-202106 ILVBTC-201905 BCHDOWNBTC-202201 EOSBULLBTC-201911 C98BTC-202111 GBPBTC-201903 NASBTC-202002 ACMBTC-202102 DIABTC-202006 ANTBTC-202010 MFTBTC-202005 GLMRBTC-202201 ERDBTC-202003 BCDBTC-202111 POWRBTC-202002 VTHOBTC-202003 IOTABTC-202009 OGBTC-202105 ALGOBTC-202108 CLVBTC-202002 ZECBTC-202002 AMPBTC-202006 AUTOBTC-201912 ADAUPBTC-201910 DARBTC-201902 XRPUPBTC-202012 STORMBTC-202101 MITHBTC-201911 MLNUSDT-202103 ERNBTC-201902 CAKEBTC-202107 ORNBTC-202010 AVAXBTC-202010 ADAUPBTC-201909 PEOPLEBTC-201907 SUBBTC-202007 CVCBTC-202012 SXPUPUSDT-202108 FORBTC-201912 ENJBTC-201906 RIFBTC-202010 LRCBTC-202103 GXSBTC-202101 XRPDOWNBTC-202002 MANABTC-202103 QKCBTC-202006 USTUSDT-202107 GLMRBTC-202002 BEAMBTC-202201 IOTABTC-202107 ARDRBTC-202102 XRPBEARBTC-201907 BONDBTC-202105 FUELBTC-201908 SLPBTC-201908 GALABTC-202009 RAYUSDT-202103 WINBTC-201903 BQXBTC-202012 VGXBTC-202001 ETHUSDT-202103 BTSBTC-202005 ATOMBTC-201901 HCBTC-202003 BAKEBTC-202109 DOCKBTC-201907 SRMBTC-202105 CTKBTC-202104 COCOSUSDT-202103 IRISBTC-202004 ERNBTC-201912 DLTBTC-201911 THETAUSDT-202107 VIBBTC-202003 DOTBTC-202008 DEGOBTC-201911 ONEBTC-202102 WAXPBTC-202106 1INCHBTC-201906 XECBTC-202009 CNDBTC-202108 BLZBTC-202107 GASBTC-202009 JSTBTC-202102 EPSBTC-202004 SUSHIUPBTC-202001 STRATBTC-202101 ENGBTC-202003 SUSHIUSDT-202107 ZILBTC-202011 NEOBTC-201912 TRXUPBTC-202103 RDNBTC-201907 DASHUSDT-202106 NANOBTC-201912 ALCXBTC-202011 SFPBTC-201902 BCCBTC-202011 MBOXUSDT-202103 HBARBTC-201901 JUVBTC-201907 HNTBTC-201905 SANTOSBTC-201905 TORNBTC-201912 USDCBTC-202112 UTKBTC-202111 WANBTC-202003 VGXBTC-201902 GALABTC-201905 CFXBTC-202008 BULLBTC-202003 LTCUPUSDT-202109 BARBTC-202008 COCOSBTC-202005 STRATBTC-202103 CMTBTC-202011 ACHBTC-202108 PNTBTC-202111 SUNUSDT-202109 BAKEUSDT-202108 EVXBTC-202008 KEEPBTC-202201 YFIUPUSDT-202111 NXSBTC-201905 AXSBTC-202103 ACMBTC-202201 CVXBTC-201903 ONEBTC-202008 INSUSDT-202106 XRPUPBTC-202101 XLMBTC-202102 NUUSDT-202103 VIBEBTC-202003 KP3RUSDT-202107 DLTBTC-201901 SUSDBTC-202007 BARBTC-201901 BNBBTC-201909 BICOUSDT-202109 AUTOBTC-202005 EURBTC-202012 DOGEBTC-202107 EASYBTC-202106 QKCBTC-201901 CMTBTC-202108 SNTBTC-202108 ALCXBTC-201909 GNOUSDT-202107 WTCBTC-202012 PAXBTC-201906 LENDBTC-202002 CNDBTC-201904 WPRBTC-202104 KSMBTC-202112 VIABTC-202001 PEOPLEBTC-202105 UNFIBTC-202101 WAVESUSDT-202106 DASHBTC-201911 XRPDOWNBTC-201901 DASHBTC-202007 QLCBTC-202010 ADXBTC-202001 STRATBTC-202108 RADBTC-202106 AGIBTC-201909 SNTBTC-202201 BCHSVBTC-202112 TRIBEBTC-201912 FLMBTC-201906 XRPBTC-201905 BZRXBTC-202009 SUNBTC-202106 NXSBTC-202201 BARBTC-201906 BCHUPBTC-202003 KEEPBTC-202110 ADADOWNUSDT-202111 BAKEBTC-202108 VIDTBTC-202008 ANCBTC-202005 BTCUPBTC-202101 BALBTC-201901 FIDABTC-202007 RNDRBTC-202102 LPTBTC-202008 IRISUSDT-202106 BEARUSDT-202103 PERLBTC-202102 OAXBTC-202201 FLMBTC-202112 CAKEBTC-202201 REQBTC-202011 EDOUSDT-202109 BNXBTC-202001 SYSBTC-202109 BNBBEARBTC-202004 MITHBTC-201903 BNBBULLBTC-202004 NEBLBTC-202008 EZBTC-202005 EPSBTC-201905 SUBBTC-202101 IOTABTC-202012 LTOBTC-202008 STORJBTC-201901 PIVXBTC-201902 AMBBTC-202009 JOEUSDT-202106 BOTUSDT-202111 CHESSBTC-202010 IMXBTC-201902 GTCBTC-202109 BZRXBTC-201912 OSTBTC-202107 EOSBEARBTC-201905 ICPBTC-201911 STORMBTC-202008 DREPBTC-202104 MFTBTC-202009 SNTBTC-202002 SALTBTC-202106 BTCUSDT-202111 ANYUSDT-202107 CFXBTC-202003 CAKEBTC-202105 REQBTC-201907 1INCHBTC-202009 AAVEDOWNBTC-202003 KMDUSDT-202111 BNBUPBTC-201912 XRPBULLBTC-201901 APPCBTC-202012 MINABTC-202103 NASBTC-201902 RGTBTC-201906 BTTBTC-202111 DLTUSDT-202111 EOSBTC-201906 BNTBTC-201903 RPXBTC-202012 CTSIBTC-202110 ONTBTC-202011 KNCBTC-202005 MOVRBTC-202108 TRBBTC-202107 ENJBTC-201908 STXBTC-202003 OGNBTC-201909 NUBTC-201911 LPTBTC-201910 RDNBTC-202004 MTHBTC-202006 AAVEBTC-202002 OMGBTC-202003 POEBTC-201909 TRIGBTC-202006 SUPERBTC-202201 USDSBBTC-202001 QLCBTC-202109 VTHOBTC-201905 FIROBTC-201912 ONTBTC-201909 STORJBTC-202009 LINKDOWNBTC-202111 DASHBTC-201902 AGIBTC-202108 EOSBULLBTC-202103 JUVBTC-201906 1INCHDOWNBTC-202007 QLCBTC-202009 NEBLBTC-202201 ATABTC-201906 FORTHBTC-202006 BATBTC-201901 EOSUPBTC-201912 API3BTC-202103 LUNBTC-201908 DOTBTC-202012 XRPDOWNBTC-202106 TUSDBTC-202201 C98BTC-201911 MKRBTC-201910 OGBTC-201908 ALICEBTC-201909 TNTBTC-202109 BCHBTC-202003 IMXBTC-202110 DATABTC-202103 WAXPBTC-201907 ICNBTC-202010 CHATBTC-201903 FIROBTC-201908 TRXUPBTC-201911 SUSHIUPUSDT-202106 IOSTBTC-202107 PEOPLEBTC-202002 PYRBTC-201905 SNXUSDT-202111 CLOAKBTC-202009 GBPBTC-202004 ONGBTC-201904 TVKBTC-202111 1INCHUPBTC-201902 SUSHIBTC-201901 SUSHIDOWNUSDT-202111 XLMDOWNBTC-202010 UNIBTC-201907 POWRBTC-202106 KAVAUSDT-202106 STXUSDT-202111 HIVEBTC-202112 HIGHBTC-201908 DOTBTC-201912 DREPBTC-201905 BTCSTBTC-201908 PHBUSDT-202108 XZCBTC-201905 GLMBTC-202004 DASHUSDT-202103 AMPBTC-202105 NASBTC-202108 BTTCBTC-201911 IOTXBTC-201906 SUBBTC-202105 TNBUSDT-202111 FILBTC-202001 PYRBTC-202102 MDXUSDT-202103 BONDBTC-201901 LTCBTC-202106 TLMBTC-202008 ETHBEARBTC-202102 SRMBTC-201903 AUDIOBTC-202101 GRSBTC-202005 BCHABCBTC-201907 XECBTC-202103 NASUSDT-202106 ADAUPBTC-202201 WABIBTC-202005 TROYUSDT-202108 LTCBTC-201911 USTBTC-201911 DIABTC-202003 ASRBTC-202107 AUTOBTC-202104 XVGBTC-202012 PAXGBTC-202105 CTXCBTC-202101 ROSEBTC-201903 SUBBTC-202112 ARUSDT-202109 AEBTC-201906 OCEANUSDT-202108 OMUSDT-202109 TRBBTC-202103 MCOUSDT-202107 GLMRBTC-201904 GHSTBTC-202106 LINKUPUSDT-202103 SLPBTC-202010 IMXBTC-202111 XMRBTC-202201 SANDBTC-201903 SNTUSDT-202109 CFXBTC-201912 SXPBTC-202107 KLAYUSDT-202107 DIABTC-202105 ARKBTC-202002 RCNBTC-201910 EGLDBTC-202007 FETBTC-202003 DCRBTC-202201 SUSHIDOWNBTC-202112 TRIBEBTC-202103 ICNBTC-201903 AMPUSDT-202106 CHRBTC-202106 IOTAUSDT-202108 DIABTC-202107 BCHUPBTC-202107 BKRWUSDT-202111 EASYBTC-201910 RADBTC-202004 HBARBTC-202110 MDXBTC-202106 CRVBTC-202201 BTCBTC-201905 EGLDBTC-202108 VITEBTC-201912 DIABTC-201911 ZRXBTC-201910 UNFIBTC-202112 IMXBTC-202201 MITHBTC-202012 RSRBTC-201901 TUSDBTC-201902 SANDBTC-201910 UNFIUSDT-202106 CMTBTC-202003 MODBTC-201901 FRONTBTC-202111 BNBDOWNBTC-202111 QSPBTC-202109 ACABTC-202111 ETHUPBTC-201911 LINKBTC-202111 CAKEUSDT-202107 OSTBTC-202112 DCRBTC-202109 GLMRBTC-202109 STORJBTC-201910 SOLUSDT-202107 MODBTC-202002 LSKBTC-202201 BTTBTC-201910 XLMDOWNUSDT-202107 RENBTC-202103 ARDRUSDT-202111 FIROBTC-202111 BCCBTC-202111 FLOWUSDT-202108 DASHBTC-202012 XVSBTC-202009 ADAUPBTC-202008 WOOUSDT-202103 DARBTC-202201 DUSKUSDT-202107 AGIXUSDT-202108 DOTBTC-202003 RDNBTC-201909 DGBBTC-202011 RAREBTC-202102 RVNBTC-202112 VOXELBTC-202008 MANABTC-201907 BCHUPBTC-202106 BRDBTC-201901 OSTBTC-201905 MINAUSDT-202111 TUSDBTC-201906 APPCBTC-201910 BARBTC-202107 PPTBTC-201904 XTZBTC-202012 ADADOWNBTC-201902 ZENBTC-201902 XRPDOWNBTC-202004 POEUSDT-202108 ENGBTC-201903 EDOBTC-201909 BTTBTC-201906 SUSHIDOWNUSDT-202107 NEARBTC-202005 IOSTUSDT-202108 ZILBTC-202004 CAKEUSDT-202106 UNIDOWNBTC-201902 LENDUSDT-202107 WAVESBTC-202106 LAZIOBTC-201902 TRBBTC-202008 WABIBTC-202112 SANTOSBTC-202006 EOSUPUSDT-202109 PIVXUSDT-202103 ARNBTC-201907 CHESSBTC-201908 BCHABCBTC-202107 JSTBTC-202110 SCRTBTC-201903 XRPBTC-201912 EOSBEARUSDT-202106 TOMOBTC-201911 GRSBTC-202111 LOOMBTC-201901 NEARBTC-202008 PORTOBTC-202110 ZRXBTC-202102 RENBTC-201905 NEARBTC-202109 PYRBTC-202103 LOOMBTC-202105 FTTBTC-201911 BUSDBTC-202008 XVSBTC-202101 NXSUSDT-202111 QNTBTC-202009 SUNBTC-201910 CELOBTC-201906 DFUSDT-202108 WINGBTC-202007 CHATBTC-202107 ATOMBTC-202010 CNDBTC-202010 COCOSBTC-202006 TRXBTC-202111 POLYBTC-202007 STPTBTC-202104 CTXCBTC-202112 CAKEBTC-202102 KMDBTC-202006 ZENBTC-202008 LUNBTC-201904 BLZUSDT-202111 BCNBTC-201911 VIBEBTC-202004 ELFBTC-202112 SUSHIDOWNBTC-201903 ALPINEBTC-201907 ALPHABTC-202101 BALBTC-202010 PNTBTC-202103 ALGOBTC-202106 EDOBTC-202201 UTKBTC-202007 BCPTBTC-202012 YFIIBTC-202004 XRPBULLUSDT-202106 ADADOWNUSDT-202108 CNDBTC-201907 RVNBTC-202005 XVGBTC-202002 CHATBTC-202112 DNTBTC-202002 DOGEBTC-202111 BEAMBTC-202109 BEAMBTC-202004 YFIDOWNBTC-201908 IOTABTC-201907 TRXDOWNBTC-202006 XVGBTC-201901 ATAUSDT-202107 BURGERBTC-201901 XTZUPBTC-202101 CLVBTC-201906 NBSBTC-202101 AGLDBTC-202110 LTCDOWNUSDT-202106 LINKDOWNBTC-202101 JOEBTC-201905 BCPTBTC-202201 EURBTC-202103 BCHDOWNBTC-202004 ARKBTC-202107 ACHBTC-202102 COSBTC-202007 XRPBULLBTC-202109 ONTBTC-202111 BRDUSDT-202111 PPTBTC-201909 MKRBTC-202112 MODUSDT-202111 USDCUSDT-202103 LTCBTC-202006 WBTCBTC-202112 EDOBTC-201902 SUNBTC-202011 YFIUPBTC-201907 EDOBTC-201907 SKLBTC-202112 BATBTC-201912 ONGBTC-202201 TRXUPBTC-202012 WNXMBTC-201901 VENBTC-201912 FISBTC-202002 AKROBTC-201903 VETBTC-202108 TRXBTC-202005 ZRXBTC-202112 BNBDOWNBTC-202201 ZENBTC-202104 BTTCUSDT-202108 GNTBTC-201905 MTLBTC-202012 XZCBTC-202111 MINABTC-201903 ERDBTC-202011 LITBTC-202105 COTIBTC-201912 ALPINEBTC-202105 RAYUSDT-202108 RPXBTC-202201 APPCUSDT-202108 ARKBTC-202012 CHATBTC-201908 MOVRBTC-202012 VIBBTC-202112 TWTBTC-202001 SUPERUSDT-202103 RAREUSDT-202103 LENDBTC-201902 TRXBTC-201908 FETBTC-202012 RLCBTC-201910 EGLDBTC-202004 MODBTC-202108 BNTBTC-202004 LTCDOWNBTC-202005 YFIIBTC-201911 BQXBTC-202104 ENGBTC-201907 STRAXBTC-201906 UNIBTC-202003 RVNBTC-201907 BNBUPBTC-202201 EDOBTC-202109 SNTBTC-201911 WNXMBTC-202007 BCNBTC-202006 ATABTC-202007 XTZUPBTC-201907 TOMOUSDT-202103 VITEBTC-202008 JSTBTC-202112 ETHBULLBTC-202112 SUPERBTC-202007 XLMUPBTC-202012 UNFIBTC-202110 BARBTC-202106 TFUELUSDT-202107 ATMBTC-202105 NASBTC-202106 LSKBTC-202009 MBOXBTC-202110 BADGERUSDT-202103 PIVXBTC-202103 BULLBTC-201905 BEARBTC-201910 GLMBTC-202101 AMPBTC-201907 ENGBTC-202110 SCRTUSDT-202103 CMTBTC-202106 EDOBTC-202112 CHATBTC-202003 CTSIUSDT-202107 STORMBTC-202004 ICPBTC-201908 FXSBTC-202005 CRVBTC-201911 MDTBTC-201901 BADGERBTC-201903 AMPBTC-202108 ALPINEBTC-202012 C98BTC-202011 BALBTC-201904 FXSBTC-202111 PHXBTC-201911 GNOBTC-202004 CELRBTC-202110 REPBTC-202201 APPCBTC-202108 PHBBTC-201912 BURGERBTC-201905 TRXUSDT-202106 SANTOSBTC-201908 AIONBTC-202110 NEOBTC-202108 BICOBTC-201910 AKROBTC-202103 ARDRBTC-202105 COCOSBTC-202112 EZBTC-202112 USTBTC-201902 ANKRBTC-202110 BTTCUSDT-202107 API3BTC-202011 PSGBTC-202111 ALPHAUSDT-202107 NASBTC-201911 FLMUSDT-202103 BULLBTC-202101 ICPBTC-202111 ELFBTC-202103 GRSBTC-202108 GVTBTC-201909 BAKEBTC-202005 ETHUPBTC-202112 SRMBTC-202001 IOTABTC-202102 SXPUPBTC-202107 DATABTC-202111 IDEXBTC-202005 SHIBUSDT-202106 ALGOBTC-202009 NKNBTC-202011 BANDBTC-202111 ATOMBTC-201903 GRSUSDT-202106 CHATUSDT-202103 REEFBTC-201909 NXSBTC-201906 ETHDOWNBTC-202111 NXSBTC-201903 DASHBTC-202008 PPTBTC-202012 PNTBTC-201911 LUNBTC-202105 SPELLBTC-202108 FLOWBTC-202011 FILBTC-201902 OOKIUSDT-202109 SSVBTC-202003 JOEBTC-202107 WINGSBTC-202108 UNIBTC-201910 AEUSDT-202111 EPSBTC-202102 SCRTBTC-202012 SANTOSBTC-202003 XTZUPBTC-201911 MINABTC-202111 JUVBTC-202004 ICNBTC-201908 KEEPBTC-202101 GTOUSDT-202109 INSBTC-202104 XNOBTC-202012 POLYBTC-202002 FORBTC-202012 FLUXBTC-201905 USDPBTC-202006 TFUELUSDT-202111 BQXBTC-202110 TROYBTC-202201 ELFBTC-202011 DUSKBTC-201901 GBPBTC-201902 BCHABCBTC-202201 ATMBTC-201907 AEBTC-201910 ADXBTC-201903 ASRBTC-202008 FORBTC-202007 SXPUPBTC-202007 MKRBTC-202004 SALTBTC-201908 LINABTC-202109 NCASHBTC-202111 AERGOUSDT-202109 PHABTC-202001 TRIGBTC-201907 FIOBTC-202006 BONDBTC-202201 GNOBTC-201906 RUNEUSDT-202108 YFIUPUSDT-202109 WOOBTC-201904 QTUMBTC-202102 WRXUSDT-202107 TRXDOWNBTC-201903 BCNBTC-202104 AGIXBTC-201906 REQBTC-202108 STORJBTC-201903 AAVEDOWNBTC-202010 ZRXBTC-201908 BONDBTC-201902 ANKRBTC-202006 EDOBTC-202002 UNFIBTC-202005 RADBTC-202006 EDOBTC-202105 TRBBTC-202010 WNXMBTC-201911 YGGBTC-201901 COCOSBTC-202104 DLTBTC-202104 IOSTBTC-202108 RGTBTC-202105 CVCBTC-202109 EURUSDT-202107 BCDBTC-202108 BEARUSDT-202107 STORMBTC-202110 NBSBTC-202111 RADUSDT-202109 LTCUPBTC-201904 UNIDOWNBTC-202109 LOOMBTC-202001 DAIBTC-202105 XLMBTC-202111 AVAXBTC-202002 KP3RBTC-201911 BCPTUSDT-202111 TRBBTC-202003 CELOBTC-201905 CNDBTC-202102 BATBTC-201906 CELOBTC-202001 SALTBTC-201901 NCASHBTC-202105 CLVUSDT-202109 DREPBTC-202008 WBTCBTC-201905 IRISBTC-201910 SANTOSBTC-201904 STPTBTC-201910 ZENBTC-202006 ETHDOWNBTC-201911 UNFIBTC-202105 TOMOBTC-202111 LOOMBTC-202101 BTCUPBTC-201904 XNOBTC-201905 WAXPBTC-202007 POWRUSDT-202103 ARKBTC-202201 WAXPBTC-202003 TORNBTC-202108 GHSTBTC-201903 OGNBTC-201903 SNMBTC-201903 YFIBTC-202101 TRUBTC-202006 CLOAKBTC-201907 GASBTC-202008 FLOWBTC-201901 BICOUSDT-202103 QIBTC-202001 QIBTC-201911 XZCBTC-201909 PIVXBTC-202007 PSGBTC-202103 LINKBTC-201903 WAXPUSDT-202103 HARDBTC-201901 BEAMBTC-202103 USDCBTC-202101 STPTBTC-202201 ONEBTC-201901 AKROBTC-201910 USTBTC-201909 REPBTC-202106 INSBTC-201902 ALCXBTC-202109 ASTBTC-202108 BQXBTC-202003 GNOBTC-201901 MTLUSDT-202106 DYDXBTC-201905 ALPACABTC-202103 QSPBTC-202007 SCRTBTC-202108 LINKUPBTC-201903 WABIBTC-201905 ACMBTC-201909 XTZBTC-201902 KEYUSDT-202109 BATBTC-202108 YGGBTC-202111 BLZBTC-201907 AMBBTC-202102 BARBTC-202102 JSTBTC-201908 UNIUSDT-202109 DUSKBTC-202105 BCHUPBTC-202007 AAVEBTC-202102 OMGBTC-201904 LAZIOBTC-202001 HIGHBTC-201906 DATABTC-202102 VIBBTC-202002 XTZBTC-202106 ETHBULLBTC-201910 TRUBTC-202003 VOXELBTC-202007 APPCUSDT-202109 PONDUSDT-202109 FUNBTC-201908 FIOBTC-202003 ZECBTC-202201 SXPUSDT-202107 NULSBTC-202004 GLMBTC-202003 OGNBTC-201904 ADXUSDT-202109 CMTBTC-201905 ETHUPBTC-202012 SNMBTC-202009 TORNUSDT-202107 UNIUPUSDT-202103 WBTCBTC-202108 BTCSTBTC-202102 ACABTC-201904 EOSBEARBTC-202012 PERLBTC-201911 KP3RUSDT-202111 MDABTC-202105 SUPERBTC-202109 DENTBTC-201901 JSTBTC-201905 SYSBTC-202110 GNTBTC-202201 SUBBTC-202001 NXSBTC-202011 ONTBTC-201907 MIRBTC-202107 NEOBTC-202008 BCHUPBTC-202110 XTZDOWNBTC-202009 ATABTC-201912 RGTBTC-201911 NEOBTC-202010 STXUSDT-202108 LAZIOBTC-202011 XTZBTC-202005 PSGBTC-202004 XTZBTC-202101 GNOBTC-202106 TRIBEUSDT-202106 PONDBTC-201908 OXTBTC-202201 CLOAKBTC-201904 BNBBEARBTC-202102 GASBTC-202111 REPBTC-202111 BCPTBTC-202102 ENJBTC-201902 ORNBTC-202011 NEBLBTC-201902 MANABTC-202009 BTCBTC-202111 IDEXBTC-202002 SNGLSUSDT-202107 SUSHIUPBTC-202003 BCDBTC-201906 NEBLBTC-201906 AAVEBTC-202001 DEGOBTC-202004 BTCUPUSDT-202103 MBOXBTC-201911 PIVXBTC-202002 STORJBTC-201906 ATMBTC-202112 USDSBTC-202005 UNIDOWNBTC-202005 XRPBEARBTC-202007 WINGBTC-202006 PAXGBTC-201903 VIDTBTC-201908 UNIUPBTC-202002 ELFBTC-202106 ENGBTC-202010 REQUSDT-202108 MDXBTC-202002 BARUSDT-202103 NKNBTC-201910 LINABTC-202102 ARNBTC-202107 YOYOBTC-202110 OGNBTC-202008 OXTBTC-202003 VITEBTC-201908 SNTBTC-201909 FORBTC-202002 BCNBTC-201904 UMABTC-202008 BTTBTC-202112 IOTABTC-202006 GRTBTC-201904 SOLUSDT-202109 RENUSDT-202109 BCHABCBTC-202004 WINGSBTC-202006 YOYOUSDT-202107 TRXDOWNBTC-202105 RPXBTC-202011 AUTOBTC-202004 COMPUSDT-202103 DASHBTC-202109 WRXBTC-202102 WINGSBTC-201908 CNDBTC-201911 TNTBTC-202101 LUNBTC-202106 OGNBTC-202011 FORTHBTC-202009 SYSBTC-201901 MTLBTC-202011 TRUBTC-202012 SRMUSDT-202111 OGNBTC-201906 RUNEBTC-202102 TLMBTC-201902 BLZBTC-201905 APPCBTC-202005 DOGEBTC-202103 ALICEBTC-202008 MTLBTC-202009 AUCTIONBTC-202006 BTCUPBTC-201909 RIFBTC-202107 SUNBTC-202012 STXBTC-201902 HOTBTC-201901 VGXBTC-202108 ERNBTC-202106 XLMUPUSDT-202107 ICXBTC-202011 FUELBTC-202002 MODBTC-202003 WTCUSDT-202109 FORBTC-202107 BNBDOWNBTC-201909 ATMBTC-202010 FUNBTC-202112 LINKDOWNBTC-202009 KP3RBTC-202109 RUNEBTC-201901 FORTHBTC-202007 STXBTC-202005 SNTBTC-202105 XTZUPBTC-202006 DCRUSDT-202106 GHSTBTC-201902 SKLBTC-201905 KP3RBTC-202006 ARKBTC-202008 CTXCBTC-202010 SUNBTC-201912 STXBTC-202109 EOSUPBTC-202104 PAXBTC-201909 RUNEBTC-202007 IOSTBTC-202008 CDTUSDT-202109 RDNBTC-202009 PROMBTC-202004 SOLBTC-201906 GLMBTC-202005 AUCTIONUSDT-202108 CLOAKBTC-202109 VIDTBTC-202110 ENJBTC-202001 COTIUSDT-202108 ACHBTC-201909 SNTUSDT-202108 BTGBTC-202112 ZECBTC-202102 TRXUPUSDT-202107 REEFBTC-202108 NAVBTC-202103 MBOXBTC-202010 BTCBBTC-201909 BTCDOWNBTC-202201 GNTBTC-202111 GOBTC-202105 ACHBTC-202009 TNBBTC-202107 BTCUSDT-202103 NCASHBTC-202104 SKLBTC-201902 POLYBTC-201908 ZILBTC-202105 HOTBTC-202105 IRISBTC-202002 TORNUSDT-202108 SANDBTC-202102 FLUXBTC-201909 ANYBTC-202010 JASMYBTC-202004 UNIDOWNBTC-201907 GLMBTC-201907 STMXBTC-201907 OMBTC-201905 ADABTC-202001 MINABTC-201910 REEFBTC-202107 SKYBTC-201905 AXSBTC-201912 LOKABTC-202006 AEBTC-202004 WTCBTC-201906 XTZUPUSDT-202111 LUNAUSDT-202109 WAXPBTC-201912 BNBUPBTC-202006 BURGERBTC-202109 1INCHDOWNBTC-202110 POEBTC-201906 XVGBTC-201903 AVABTC-202104 DFBTC-202102 WRXBTC-202003 SYSBTC-202101 FLOWBTC-202201 LRCBTC-202109 GALABTC-201911 SUSHIBTC-202001 ELFBTC-201906 FIDABTC-202109 SANTOSBTC-201907 ETHUPBTC-202109 BTCBBTC-202107 FTTBTC-201906 CVCUSDT-202108 RDNBTC-202201 BNBBEARBTC-201908 XRPDOWNBTC-201903 ADADOWNBTC-201909 FXSBTC-202201 AGIUSDT-202111 SANDBTC-202008 AXSBTC-202002 LPTUSDT-202109 LOKABTC-202005 CELRBTC-202107 BNTBTC-202101 LINKUPBTC-201909 CHRBTC-202102 ASTBTC-202101 TRXUPBTC-202008 ONEBTC-202010 QKCBTC-202101 SNMBTC-202006 PUNDIXBTC-202102 HSRUSDT-202106 XZCBTC-202101 SKLBTC-202002 RADBTC-202008 ATOMBTC-201902 BCCUSDT-202107 VOXELUSDT-202107 QKCBTC-202102 OXTBTC-201904 RADBTC-201906 RIFBTC-202108 SUBBTC-201906 ETHBTC-202004 IMXBTC-202006 LUNBTC-202110 RLCBTC-202101 API3BTC-202111 RIFBTC-202105 USDPBTC-202007 MCOBTC-202005 ALPACABTC-202002 WAVESUSDT-202109 DIABTC-202101 AGIUSDT-202109 ARNUSDT-202107 TVKBTC-201910 PERPBTC-202003 MFTBTC-202112 EOSUPUSDT-202111 FILDOWNBTC-201909 BTSBTC-202012 1INCHUPBTC-202109 STRATBTC-202106 VENBTC-202109 GASBTC-202006 CHESSUSDT-202111 TOMOBTC-201902 VENBTC-201901 VOXELUSDT-202106 API3BTC-201906 BNBBEARBTC-201901 BNBBTC-201910 ALPINEBTC-202007 SNXBTC-202004 YFIUPBTC-201912 CHZBTC-202108 LUNAUSDT-202108 DGBBTC-201907 DYDXBTC-202001 BCHDOWNBTC-201905 DREPBTC-202001 AVAXBTC-201902 UTKBTC-202010 ILVBTC-202109 FRONTBTC-201904 GTCBTC-201902 CVCBTC-201906 CTKUSDT-202108 HARDBTC-201907 CHZUSDT-202111 FILBTC-201904 BCHABCBTC-201903 ETHBEARUSDT-202103 GLMRBTC-202012 NAVBTC-202003 DOTBTC-201910 BARBTC-202201 USDCBTC-201910 NPXSUSDT-202108 VIDTBTC-202105 FIDABTC-202011 BNBDOWNBTC-201904 MFTBTC-202007 BTSBTC-202102 KNCBTC-201907 GLMRBTC-201910 CRVBTC-202106 BCHSVBTC-202105 ACHBTC-201910 BCHDOWNBTC-201911 DIABTC-202008 DREPUSDT-202111 PIVXBTC-202112 MANABTC-202001 MDTBTC-201910 AMPBTC-202012 STXBTC-202103 PORTOBTC-201902 SKLBTC-202106 PHABTC-201908 CKBBTC-202003 VIBEBTC-202002 YFIDOWNBTC-202109 LTCUPBTC-202009 OOKIUSDT-202106 HOTUSDT-202108 GHSTUSDT-202108 MFTBTC-201912 FLUXBTC-202112 STPTBTC-201909 HBARBTC-201910 SANTOSBTC-202107 VIDTBTC-202106 YFIBTC-201907 NANOBTC-202002 LTOBTC-201908 LUNBTC-201905 ARPABTC-202107 PONDBTC-201905 NUBTC-202004 XEMBTC-202005 USDSBUSDT-202106 TRIGBTC-202110 ONTBTC-202104 CTSIBTC-201912 ANCUSDT-202109 XNOBTC-202112 DCRBTC-201910 FTMBTC-202109 BONDBTC-202101 JUVBTC-202104 RENBTC-202005 NPXSBTC-202009 FLUXUSDT-202109 AAVEUPUSDT-202108 PHBBTC-202001 RNDRBTC-202112 HARDBTC-201909 SYSBTC-202108 ARDRBTC-202109 NUBTC-201912 WAXPUSDT-202109 XLMUPBTC-202008 TRXUPBTC-202009 SRMBTC-201905 USDPBTC-202103 MANABTC-202106 BLZBTC-202008 OOKIUSDT-202107 BTCUPBTC-201902 IMXBTC-202008 BULLUSDT-202106 ALPACAUSDT-202103 BOTUSDT-202109 DEXEBTC-202010 PAXGUSDT-202103 GALABTC-202007 SKYBTC-202007 MANAUSDT-202103 BNXBTC-201904 USDCBTC-202007 BETABTC-202111 ASRBTC-202006 VITEUSDT-202106 KEEPBTC-202011 IOSTBTC-202106 ATOMBTC-202103 PAXGBTC-202109 MINABTC-202011 PHBBTC-201906 SANDBTC-202106 HIGHBTC-201912 BEARBTC-202007 EOSDOWNBTC-202003 GOBTC-202102 BCCUSDT-202106 CTSIBTC-202012 ZILBTC-202109 DOTUPBTC-202112 TKOBTC-202201 ADABTC-202007 ZILBTC-202111 CITYBTC-202201 XLMUPBTC-202111 WAVESUSDT-202108 TRIGBTC-201902 DNTBTC-202008 AEBTC-202112 SUSDBTC-202109 STORJBTC-202102 VIABTC-201912 GLMBTC-202010 ATMBTC-202109 EASYBTC-202111 FISBTC-202008 TORNBTC-202004 ATAUSDT-202106 ADADOWNBTC-202005 MBLBTC-202006 USDSBBTC-202104 AUCTIONBTC-201909 TRXUPBTC-202106 BQXBTC-201912 DOGEBTC-202109 WANBTC-202001 BCHABCBTC-202010 IDEXBTC-201910 BATBTC-202106 ZILBTC-202102 DOGEBTC-201901 REPUSDT-202109 MANAUSDT-202108 VGXBTC-202009 BNBUPBTC-202003 FUNBTC-202104 SUSHIUSDT-202109 FRONTBTC-202002 KSMBTC-202006 MDABTC-202012 DODOBTC-202107 LOKABTC-202009 DARBTC-202007 YFIDOWNBTC-202201 UNIBTC-202107 RADBTC-202102 CITYBTC-202103 LAZIOBTC-202104 OXTBTC-201911 FETUSDT-202109 GRTBTC-202012 ADAUSDT-202111 RENBTC-201910 AAVEUSDT-202103 CMTBTC-202002 XRPUSDT-202107 XVSBTC-202108 SANTOSBTC-202201 MKRBTC-201912 NKNBTC-201912 FLUXBTC-202011 TKOBTC-202011 MKRBTC-202006 ADAUPBTC-202107 VIABTC-202108 BARUSDT-202111 NAVBTC-202109 GXSBTC-201909 LUNBTC-202107 OAXBTC-202004 GNOBTC-201902 POLSBTC-201901 REEFBTC-202011 SRMBTC-202010 WPRBTC-202102 SSVBTC-202103 BETABTC-201904 CHZUSDT-202106 PEOPLEBTC-202111 C98BTC-201912 SNXBTC-202006 ONGBTC-202004 BCHUPBTC-202009 SNGLSUSDT-202111 RAREBTC-202006 LAZIOUSDT-202108 MANABTC-201909 BNBDOWNBTC-202012 WABIBTC-202012 LUNBTC-202103 MINABTC-202003 BURGERBTC-202008 BCNBTC-201907 NULSBTC-201907 ETHBEARUSDT-202109 BETABTC-202002 CTSIBTC-201901 BTCBTC-202004 FUELUSDT-202109 LINKUPBTC-201912 YGGBTC-201909 PROMBTC-202201 ONTUSDT-202111 CLOAKBTC-202002 SXPUPBTC-201907 PSGBTC-202011 IMXBTC-202104 XRPBTC-202102 APPCBTC-202110 EGLDBTC-201912 ENGBTC-202004 AUTOBTC-202006 ETHDOWNBTC-202105 STORMBTC-201904 MASKBTC-202103 USDSBBTC-202101 ICNBTC-201909 KSMBTC-202101 SUSHIDOWNBTC-202009 BNBDOWNBTC-202006 VIABTC-201906 FXSBTC-202105 TFUELBTC-202111 BANDBTC-202010 DASHBTC-202009 XTZUPBTC-201908 XRPBULLBTC-202009 CKBBTC-202011 QUICKBTC-202002 YFIDOWNBTC-202112 XTZUPBTC-202010 IMXBTC-201907 ANYBTC-201907 ENJBTC-202003 LOKABTC-201906 ICPBTC-202105 CELRUSDT-202103 WAXPBTC-202009 BNTBTC-202109 BLZBTC-202006 CTSIUSDT-202109 GASBTC-202101 FARMBTC-202011 POWRBTC-202010 JASMYBTC-202010 THETABTC-201901 WRXUSDT-202109 CDTBTC-201908 EVXBTC-201902 BKRWBTC-202106 SRMBTC-202012 DODOBTC-202111 GTCBTC-201904 QUICKUSDT-202111 CELRBTC-202005 ICNBTC-202101 ARKBTC-202108 FRONTBTC-202109 MTHBTC-202104 PERLBTC-202112 WTCBTC-202104 AVABTC-202112 FORBTC-201902 FARMBTC-201910 YOYOBTC-202101 MITHBTC-202006 PHXBTC-202109 MDAUSDT-202109 AAVEUPBTC-202006 IOTABTC-201909 SRMBTC-202009 FETBTC-202108 1INCHUPBTC-202009 WPRBTC-202009 USDSBBTC-202111 BLZBTC-202012 XECBTC-202109 COSBTC-201908 IOTXBTC-202101 MOVRBTC-201911 BCHBTC-201909 UTKBTC-202012 DREPBTC-201908 XZCBTC-202103 REQBTC-201901 SUSHIDOWNBTC-202111 BTSBTC-202004 XLMDOWNBTC-201902 STORJBTC-202008 NEOUSDT-202103 DNTBTC-202012 THETAUSDT-202111 ADADOWNBTC-201901 RLCBTC-202009 STRAXUSDT-202106 HBARBTC-202006 STXBTC-202011 CFXBTC-201904 BELBTC-202105 KEYBTC-202002 MTLBTC-202112 DLTBTC-201905 SUPERUSDT-202108 RLCBTC-202109 ADADOWNBTC-202201 HIGHBTC-202108 BTCSTBTC-202104 BTCSTBTC-201904 AGIBTC-202104 TOMOBTC-201907 BICOBTC-202109 ZENUSDT-202106 SLPBTC-201905 ETHBULLBTC-201912 STRAXBTC-201902 WTCUSDT-202107 AIONBTC-201901 ATAUSDT-202103 PORTOBTC-202006 BNBDOWNBTC-202003 MFTBTC-202103 BNXBTC-202005 HCBTC-202201 BAKEBTC-201907 MDTBTC-202101 BCHSVBTC-202102 HBARBTC-202008 AVAXBTC-202004 CDTBTC-202109 ALPINEBTC-201905 RADBTC-202002 ARBTC-201912 VIDTBTC-202109 TLMBTC-201906 NXSBTC-202005 TRUBTC-202102 XRPBTC-202111 WAXPBTC-202101 PHABTC-201910 GOBTC-202103 RADBTC-202010 LUNBTC-202009 AVAXBTC-201904 ASRUSDT-202109 WOOBTC-201909 NEARBTC-202111 RPXBTC-201902 PERPBTC-202107 GLMRBTC-202008 ANCBTC-202004 FLOWBTC-201912 QTUMBTC-202011 GASBTC-201912 USDCBTC-201912 DOTDOWNBTC-202105 STPTBTC-202107 1INCHDOWNUSDT-202111 BURGERBTC-202201 DARBTC-202011 NBSBTC-202110 PHBBTC-202104 ENSBTC-201911 AUTOUSDT-202103 CNDBTC-202008 VOXELBTC-202010 STORMBTC-201909 SHIBUSDT-202109 TNTBTC-202011 CHZBTC-202004 BTTBTC-202103 ALGOBTC-201906 LRCBTC-202104 RENBTC-201902 BULLBTC-202110 BTCBBTC-202008 PERLBTC-202002 POLSUSDT-202103 RENBTCBTC-201905 RIFBTC-201908 OCEANBTC-202006 JOEBTC-202012 SUSDBTC-202106 BNBBEARBTC-201910 CTSIBTC-201906 PYRUSDT-202111 LRCBTC-202108 DUSKBTC-201902 MATICBTC-202103 USDSBTC-202004 XLMDOWNBTC-201908 LITBTC-202103 XRPBEARBTC-202003 SOLBTC-201912 NKNUSDT-202111 CVCBTC-201907 GXSBTC-202104 RCNBTC-202102 DUSKBTC-202101 TNTBTC-202001 DATABTC-202105 USDSBUSDT-202108 WTCUSDT-202103 XRPBTC-202108 OMGBTC-201902 CRVBTC-201904 THETAUSDT-202108 RADBTC-202001 DOTDOWNBTC-202009 NCASHBTC-201911 COSBTC-201905 BTCBTC-201904 ANKRBTC-202102 TNTBTC-201910 FTTBTC-202110 RNDRBTC-202103 KLAYBTC-201912 SKLBTC-201909 BKRWBTC-202107 BNBBEARBTC-202001 AVAUSDT-202111 AAVEBTC-201909 FTMBTC-201904 WAVESBTC-202110 MITHBTC-202005 XRPBEARBTC-202106 XRPBEARBTC-202009 DYDXBTC-201907 ATABTC-202002 BCPTUSDT-202109 PORTOBTC-202002 OXTBTC-202104 ARKBTC-202001 QUICKBTC-202007 CVPUSDT-202108 STPTBTC-202103 PORTOBTC-201911 NANOBTC-202104 DEXEBTC-202105 MTHBTC-202106 FIROBTC-201902 SKLUSDT-202109 VTHOUSDT-202111 AUCTIONBTC-202109 INJUSDT-202106 RAYBTC-202012 SUPERUSDT-202107 SALTBTC-202010 BTTBTC-201903 MLNBTC-202105 AUTOBTC-201901 BCHSVBTC-202110 RSRBTC-201912 SUBBTC-202106 LPTUSDT-202107 CTSIBTC-201905 DENTBTC-201907 PHAUSDT-202109 SALTBTC-202101 BNXBTC-202010 CITYBTC-202005 XLMUPBTC-201902 POABTC-201908 LSKUSDT-202108 PUNDIXBTC-202005 BONDBTC-202003 GRSBTC-202101 PPTBTC-202005 HNTUSDT-202106 BATBTC-202105 HARDBTC-201908 PUNDIXBTC-201903 ENSBTC-202004 GXSUSDT-202111 ALGOBTC-202006 ASTBTC-201911 RUNEBTC-202108 CVXBTC-201901 FIDAUSDT-202106 KSMBTC-202110 ENGBTC-201910 MOVRBTC-202107 BZRXBTC-202008 KEEPBTC-202103 QLCUSDT-202109 FTTBTC-202108 CNDBTC-202012 BEARBTC-202102 TVKBTC-201903 LRCBTC-202107 MATICBTC-202003 BATUSDT-202106 SSVUSDT-202106 PIVXBTC-202009 ADXBTC-202012 ATMBTC-202102 DCRBTC-201905 CVPBTC-202111 RVNBTC-201905 XRPUPBTC-202011 STPTUSDT-202109 LSKBTC-201903 XRPBEARBTC-202105 ERNBTC-202110 FUNBTC-201902 PERLUSDT-202109 TRIGBTC-202103 XTZBTC-202006 DFBTC-201903 TVKBTC-202012 QSPBTC-202003 LSKBTC-202003 BTTUSDT-202111 HIGHBTC-202103 LRCBTC-202011 DEGOBTC-202111 TORNBTC-202002 ETHBEARBTC-202201 APPCBTC-201904 EGLDUSDT-202108 RNDRBTC-202009 BANDBTC-201909 AMBBTC-201912 VIBBTC-202007 AMBBTC-202012 REPBTC-202010 AUCTIONBTC-202107 BULLBTC-202201 XVGBTC-202003 HBARUSDT-202109 AAVEBTC-202012 DGBUSDT-202107 STRATUSDT-202108 VIAUSDT-202111 NPXSBTC-202008 NUBTC-202103 IMXBTC-202002 CMTUSDT-202109 ETHBULLBTC-202109 IOTABTC-201903 UMABTC-202010 ALPHABTC-202102 BTSBTC-201906 POABTC-202103 FILBTC-202103 EOSDOWNUSDT-202106 NEARBTC-202007 RVNBTC-202201 PORTOBTC-201908 SNTBTC-202102 DEXEBTC-202012 DREPBTC-202108 QNTBTC-201902 CHRBTC-202001 MBLBTC-201906 BARBTC-202104 SOLBTC-201907 DOTUPUSDT-202106 RENBTC-202011 FUNBTC-202111 ARDRUSDT-202108 DIABTC-202010 AUDBTC-201912 ONEBTC-202108 PYRBTC-202004 BALBTC-202003 USDCBTC-201906 TCTBTC-202011 MOVRBTC-202201 MATICBTC-202006 LINKDOWNBTC-202104 AVAUSDT-202108 RAMPUSDT-202108 BEAMBTC-202108 VGXBTC-202103 CLVBTC-201902 DUSKUSDT-202109 LINKUPBTC-202103 NANOBTC-202004 BEARBTC-201912 FISBTC-202104 VIDTBTC-202108 HIVEBTC-201911 SOLUSDT-202108 GNOUSDT-202103 VIBEBTC-201902 BRDUSDT-202109 PORTOBTC-201905 XLMUSDT-202106 MCBTC-202001 NMRBTC-202005 UMABTC-202006 ZECBTC-201912 ANTBTC-202104 UNIBTC-202010 RCNUSDT-202106 ORNBTC-201909 LENDBTC-202008 BNBBEARBTC-201906 RGTBTC-202103 AXSUSDT-202108 ZILBTC-202003 DIABTC-202012 GOBTC-201902 KSMBTC-201908 SKLBTC-202003 NUBTC-202009 CKBBTC-202110 ETHUPBTC-202009 STPTBTC-202109 RDNBTC-202108 GALABTC-202105 TNBBTC-202011 AUDBTC-202011 USDCBTC-202110 SNXBTC-202007 BETABTC-202105 COTIBTC-202007 C98BTC-202201 C98BTC-202007 UNIUPBTC-202109 RENBTC-202002 YFIBTC-201908 LTCBTC-202008 TRIBEBTC-201906 AERGOBTC-201901 BCHDOWNBTC-202104 COTIUSDT-202111 XTZDOWNBTC-202006 FUELUSDT-202106 FETBTC-201905 QSPBTC-201911 NCASHBTC-201912 TNTBTC-202002 EOSBULLBTC-202101 CELRBTC-201906 TORNBTC-202111 EPSBTC-201903 MBLBTC-202003 STEEMBTC-202106 MDTBTC-202108 CTXCBTC-201910 BULLBTC-202111 OMBTC-202001 DFBTC-202107 GNOBTC-202201 STEEMBTC-202011 SXPBTC-202106 SXPBTC-202105 MITHBTC-202105 DOTBTC-202009 RGTBTC-202004 DCRBTC-202106 MOVRBTC-202109 NULSBTC-202006 1INCHDOWNBTC-201906 DIAUSDT-202109 ALPACABTC-201912 CVXBTC-202011 HSRBTC-202110 BAKEBTC-202010 DOTUPBTC-202102 CLVBTC-202103 VIABTC-201903 YFIBTC-201906 SUNBTC-202101 USDSBTC-201906 SFPBTC-202105 SUSHIDOWNBTC-202107 THETABTC-201911 LITBTC-202112 CHZBTC-202111 GXSBTC-201910 DOTUPBTC-202103 NEBLBTC-202110 IOTXBTC-202107 ADAUPBTC-202112 PAXBTC-201912 XLMBTC-201903 EOSUPUSDT-202103 TLMBTC-201910 BCNUSDT-202109 ATABTC-202106 SFPBTC-201909 DENTBTC-201908 RAMPBTC-202110 ARKBTC-202112 ANKRBTC-202011 USDCBTC-202006 VENUSDT-202111 MDXBTC-201904 XMRBTC-201906 NBSBTC-201902 ICXUSDT-202108 GLMRBTC-202105 EOSBEARBTC-202008 XLMBTC-202001 PSGBTC-201912 ETHUPBTC-201904 FLUXBTC-201906 QIBTC-202105 XRPBEARBTC-202002 AEBTC-201909 PIVXBTC-202003 PONDBTC-201902 WAVESBTC-201902 UNIBTC-202006 RVNBTC-202103 OSTBTC-202102 USTBTC-202001 VIABTC-202007 ASTBTC-202107 HSRBTC-202106 XRPUSDT-202106 BAKEBTC-202011 XEMBTC-202002 SRMBTC-202108 BELBTC-201903 WBTCBTC-202008 YOYOBTC-202005 REPBTC-201906 JSTUSDT-202106 STPTBTC-202010 RAMPBTC-202108 WBTCBTC-201904 SHIBBTC-201911 CDTBTC-202108 WTCBTC-202102 BNBUPUSDT-202108 DOCKBTC-201912 STORMBTC-202009 QUICKBTC-201908 AXSBTC-202003 EOSBTC-201911 WOOBTC-201906 BCHBTC-202002 COSBTC-202201 MINABTC-202002 DAIBTC-201903 QNTBTC-201903 VIABTC-202012 LINKBTC-202012 BCDBTC-202005 RLCUSDT-202106 GRTBTC-202006 FISUSDT-202107 SUSHIBTC-202110 DFBTC-201906 ALCXBTC-202112 ANYBTC-201904 DFBTC-202109 LINKBTC-201911 OOKIBTC-202112 WTCBTC-202010 VOXELBTC-202001 SKLBTC-202011 QLCBTC-202004 DARUSDT-202111 ROSEBTC-201904 DYDXUSDT-202111 IOTXUSDT-202109 BTSBTC-201909 DOTDOWNBTC-202107 RAMPBTC-202008 WABIUSDT-202111 RNDRBTC-201910 XMRBTC-202008 TRXBTC-202011 ZENBTC-201906 AGIBTC-202008 BZRXBTC-202011 BNBDOWNBTC-202101 XECUSDT-202108 USTBTC-202005 PPTBTC-202101 HCUSDT-202111 WNXMBTC-202104 BZRXUSDT-202103 DFUSDT-202111 IOTABTC-202104 LOOMBTC-202104 STPTBTC-201912 HIVEBTC-202101 BCHBTC-202102 XRPUPBTC-202002 NULSUSDT-202108 BTCBTC-202008 OSTUSDT-202107 ANKRBTC-202012 ZENBTC-202102 MINABTC-202106 SCBTC-201903 PAXBTC-201907 MCBTC-202101 MFTBTC-201901 BRDBTC-202003 GALABTC-201907 MLNUSDT-202107 BCHBTC-202010 ZILBTC-201907 JUVBTC-202011 SSVBTC-202102 1INCHUPBTC-202002 QNTBTC-202101 TRUBTC-202109 MTLBTC-202010 BANDBTC-202011 FLOWBTC-202105 MANABTC-201901 AXSBTC-202010 EOSBULLUSDT-202106 BELBTC-201901 LRCBTC-202105 POEBTC-201907 FXSBTC-201902 NBSBTC-202007 SNTBTC-201901 ERNBTC-202011 YFIUPBTC-201909 RAYBTC-202103 STPTBTC-201905 FUNBTC-202004 OMBTC-202102 ACMBTC-202007 TRXUSDT-202107 WINBTC-201910 BTCUPUSDT-202108 RENBTCBTC-202012 LPTBTC-202006 BATBTC-202006 BONDBTC-201906 DEXEBTC-202111 TUSDUSDT-202103 YFIUPBTC-202012 IDEXUSDT-202107 HIVEBTC-202010 SNGLSBTC-202010 BTSBTC-201902 DEXEBTC-201906 GOBTC-202104 ETHBULLUSDT-202107 WABIBTC-202104 AMBBTC-202011 BTCDOWNBTC-201905 DCRBTC-202108 RNDRBTC-202002 MANABTC-202008 CAKEBTC-202005 MLNBTC-202102 TFUELBTC-202011 BOTBTC-202012 USDPBTC-201903 DYDXUSDT-202108 OCEANBTC-202007 STMXBTC-202005 POWRBTC-201907 XNOBTC-202101 BQXUSDT-202109 NXSBTC-202111 MCBTC-202006 FRONTBTC-202012 AVABTC-202111 SUSDBTC-202004 ALICEUSDT-202108 ZENBTC-202004 FARMBTC-201903 XRPBTC-201908 BTGBTC-202108 PYRBTC-202108 ANTBTC-201905 STEEMUSDT-202108 REPBTC-202005 FILUPUSDT-202111 NAVBTC-202012 MOVRUSDT-202108 PEOPLEBTC-201908 FRONTBTC-202003 HNTBTC-202010 BQXBTC-202007 FTMBTC-201901 BCCBTC-201911 HARDBTC-202112 LSKUSDT-202109 DREPUSDT-202103 QNTBTC-201901 MDXBTC-202201 DATABTC-202004 USDSBTC-202006 PHXBTC-201901 GTCBTC-201906 HOTUSDT-202107 COCOSBTC-202102 RVNBTC-202007 UNIBTC-202110 FORBTC-202010 MBLBTC-202104 FORTHBTC-201910 ORNBTC-202004 ARNBTC-201902 WTCBTC-201905 SUPERBTC-201906 DREPBTC-201910 DOTDOWNBTC-201910 GVTBTC-201908 BUSDBTC-201906 MDXBTC-202009 HNTBTC-202108 ERNBTC-202006 SFPBTC-202104 FORTHBTC-202107 MTHBTC-202002 BCHSVBTC-202103 CELRBTC-202003 YOYOBTC-202001 BURGERBTC-202006 LAZIOBTC-201906 NEOUSDT-202109 NEOBTC-201911 TORNBTC-202112 PLABTC-202109 COMPBTC-201910 MIRBTC-201905 INJBTC-202103 RVNBTC-201903 MDABTC-202004 CELOBTC-202010 MITHBTC-202201 ZENUSDT-202111 AVAXBTC-202108 DREPBTC-201907 XVSBTC-202110 FETBTC-202005 QTUMBTC-202003 QUICKBTC-201909 XNOBTC-201903 AUDBTC-202007 CVPUSDT-202106 ETHUSDT-202108 STPTBTC-202108 SSVBTC-202008 OGNBTC-202107 EURUSDT-202106 AAVEBTC-201908 DOTDOWNBTC-202002 CMTBTC-201902 ALPHABTC-202106 BUSDBTC-202005 TROYBTC-202112 EGLDBTC-202003 CITYBTC-201904 ELFBTC-202010 BNBBTC-202107 DARBTC-202102 NKNBTC-202111 ALGOBTC-201911 STXBTC-202001 EGLDBTC-201903 FILDOWNBTC-202107 ROSEBTC-202111 EVXBTC-202009 OSTBTC-202006 BCHDOWNBTC-202003 XRPUPUSDT-202109 FLMBTC-202102 ALPACABTC-201908 XECBTC-201904 ORNBTC-202107 XLMBTC-201907 EOSBTC-202004 IOTXBTC-201903 DATABTC-201902 LUNABTC-202007 YFIIBTC-202105 LSKBTC-202006 XVSBTC-202107 ROSEBTC-202110 AUTOBTC-202008 HIGHUSDT-202109 EOSDOWNBTC-201908 PIVXBTC-202001 ETHBULLBTC-202111 AVABTC-201911 BNXBTC-202104 PERPBTC-202105 RSRBTC-201906 EOSBEARBTC-201912 AUCTIONBTC-201911 ELFBTC-202007 BCHABCBTC-202008 BNXBTC-202103 RCNBTC-202009 RGTBTC-202102 AUDBTC-202010 LINABTC-201906 SYSUSDT-202106 TOMOBTC-201904 CHRBTC-201909 SSVBTC-202109 MINABTC-202109 ADABTC-202109 QIUSDT-202109 AERGOBTC-202107 RLCBTC-202105 BZRXBTC-201907 MCBTC-201903 DFBTC-202011 ARPABTC-201906 XNOBTC-202001 MLNBTC-202103 FIDABTC-202001 PIVXBTC-202201 BONDBTC-201912 TFUELBTC-202103 WINGSBTC-201906 QTUMBTC-202105 BEARBTC-202008 CTKBTC-202012 XNOBTC-202006 DOTBTC-201903 GNTBTC-202011 API3USDT-202109 CTSIBTC-202201 LRCBTC-201910 STORJBTC-202111 BTGBTC-202005 BTCSTBTC-201903 QUICKBTC-202112 UMABTC-202007 MANABTC-202004 SCBTC-202111 CTKBTC-202112 JOEBTC-202011 DNTBTC-202006 WOOBTC-201908 LUNUSDT-202107 CHATBTC-202104 OGNUSDT-202111 DUSKBTC-202002 ICNBTC-202107 AMPBTC-202109 ACABTC-202004 AIONBTC-202104 FLMBTC-202106 BCNBTC-202009 GBPBTC-202007 EVXBTC-201910 OAXBTC-202107 VTHOBTC-202105 ZENBTC-202012 BALBTC-202108 BCDBTC-202106 LUNBTC-202010 AMBUSDT-202108 API3BTC-202108 THETABTC-201904 BNBBTC-202108 MODUSDT-202108 ERDBTC-201902 SPELLBTC-201909 LINKDOWNBTC-202001 XLMDOWNBTC-201905 MDTBTC-202111 BTTCBTC-202105 UMABTC-202002 REEFBTC-201908 WINBTC-201905 EOSUSDT-202107 CTXCBTC-202107 AUCTIONBTC-202110 DGDBTC-202001 MINAUSDT-202108 AUDIOBTC-202002 GASBTC-201906 THETABTC-202110 VENUSDT-202108 INJBTC-201911 AUDBTC-201907 WOOBTC-202112 ICXBTC-202201 RVNUSDT-202108 XRPUPBTC-202010 MCOUSDT-202111 DGBBTC-201903 STRATBTC-201912 BCHABCUSDT-202103 MANABTC-202011 FISBTC-201909 STXBTC-201904 GRTBTC-202112 DOTUSDT-202107 NULSBTC-202106 WBTCBTC-202010 ACHBTC-202008 BTSBTC-202007 MTLBTC-202006 GBPBTC-202108 ANKRUSDT-202107 ANYUSDT-202108 OMBTC-202107 EDOBTC-202101 BAKEBTC-201903 DOTBTC-201905 FLMBTC-202004 MOVRBTC-201907 COMPBTC-201903 PROMUSDT-202108 CELOBTC-201909 EVXBTC-201903 ENJBTC-202011 FILDOWNBTC-202012 BELUSDT-202109 ETHDOWNBTC-201912 MLNBTC-202012 HOTUSDT-202111 FRONTBTC-202108 BURGERBTC-201906 XLMBTC-201906 TRXUPBTC-201905 GXSBTC-202112 QTUMBTC-201905 FIROBTC-201910 DGDBTC-201903 EOSBTC-202102 KAVAUSDT-202111 1INCHBTC-202007 TUSDBTC-202106 CHRBTC-202111 ARKBTC-202009 RLCBTC-202102 NXSBTC-202108 APPCBTC-202101 PHABTC-202106 WANBTC-201904 PONDBTC-201903 AEBTC-202107 AIONUSDT-202107 API3BTC-202105 WANBTC-202008 STMXBTC-202001 ALGOBTC-202010 CFXBTC-202111 SOLBTC-202006 TRIGUSDT-202109 PROMBTC-201911 DASHBTC-202101 ICPBTC-201902 LOKABTC-201903 BTCSTBTC-202011 AGIBTC-202001 SSVBTC-202201 SUSHIBTC-201911 ACABTC-201901 USDCBTC-202103 GASUSDT-202109 OSTBTC-202003 NEARBTC-202006 ALPACABTC-201906 XVGBTC-202110 IRISBTC-201911 REPBTC-202102 ASTBTC-202105 NXSBTC-201912 ONGBTC-202111 MCOBTC-201906 XVGBTC-201906 ERDBTC-202101 ANTBTC-202108 PAXGBTC-202008 QTUMBTC-202009 STXBTC-202201 MCOBTC-202101 LINKDOWNBTC-202103 WINGSBTC-202010 MASKBTC-201905 UNFIBTC-202002 ANKRUSDT-202111 HCBTC-202112 GVTBTC-202106 HARDBTC-202102 SHIBBTC-201901 ANCBTC-202108 BCCUSDT-202103 BNBBTC-202112 DUSKBTC-202112 DLTBTC-202001 MLNBTC-201911 INJBTC-202108 ERDUSDT-202108 USTUSDT-202111 AGIXBTC-201904 EVXBTC-202108 LINABTC-202001 UNIUPBTC-201909 CHRBTC-201912 XRPDOWNBTC-202008 APPCBTC-202106 FLOWBTC-201908 SFPBTC-202006 WINGSUSDT-202106 BCCBTC-202112 ACHBTC-202104 BATUSDT-202109 SUNUSDT-202106 AERGOUSDT-202106 YGGBTC-202112 SXPUPBTC-202112 ICNBTC-201904 USTBTC-202201 XLMUPUSDT-202106 LTCBTC-202112 CHRBTC-201901 BZRXBTC-201904 BCHSVBTC-201912 SCBTC-202002 ARNBTC-202112 VETBTC-202112 STORJBTC-202112 LTOBTC-202006 ACABTC-202007 UNFIBTC-201907 ASTUSDT-202111 LINKUSDT-202108 RENBTC-201912 TRUUSDT-202106 CDTBTC-202001 EOSUPBTC-202011 XRPDOWNBTC-202101 BCHUPUSDT-202109 ONEBTC-201907 TNBBTC-202201 MLNBTC-202011 LINKBTC-202010 SSVBTC-202105 BCHUSDT-202109 ACMBTC-202108 OXTBTC-201903 AGLDBTC-202101 SRMBTC-202103 XECBTC-202004 FLOWBTC-201906 ETHBTC-202110 OMBTC-202106 BLZBTC-202106 ONTBTC-201903 AMPBTC-202104 OGNBTC-202001 QKCBTC-201904 NEBLBTC-202011 POLSBTC-202105 BONDBTC-202111 BCPTBTC-202007 ETCBTC-202102 KAVABTC-202001 ELFBTC-201908 ENSBTC-202102 BNBBULLUSDT-202107 NKNBTC-202005 ONTBTC-202103 XVSBTC-202106 XTZDOWNBTC-201902 KP3RBTC-202104 RENBTCBTC-201908 OXTBTC-202106 WRXBTC-202111 WPRBTC-201907 CLVUSDT-202106 PIVXBTC-202108 VTHOBTC-201902 TROYBTC-202012 XEMBTC-202201 WAXPUSDT-202108 SUPERBTC-201912 LOKABTC-201902 FLOWBTC-201909 TFUELBTC-201907 OAXBTC-202111 DUSKBTC-202102 1INCHBTC-202103 ZILBTC-202108 STRAXBTC-202106 BTTCBTC-201906 ADABTC-202111 CHZUSDT-202108 MFTBTC-202004 USDPUSDT-202103 MCBTC-202011 BCHDOWNBTC-202102 SXPDOWNBTC-201902 IOTXBTC-202012 EOSBULLBTC-202105 RDNBTC-202103 SUSHIUSDT-202103 OGBTC-201904 PIVXUSDT-202107 FLOWBTC-202007 MINABTC-201904 BTCBBTC-201903 EURBTC-202104 PERPBTC-202006 THETABTC-201910 GLMBTC-202108 BCHUPBTC-202102 LITBTC-202110 LINABTC-201904 SPELLUSDT-202103 AUTOBTC-202011 CAKEBTC-202007 VGXUSDT-202109 RUNEBTC-202103 STRAXBTC-201903 BULLUSDT-202108 EURBTC-202011 AAVEBTC-202105 TROYBTC-201902 BCHSVUSDT-202111 GNTBTC-201911 TNTBTC-201908 THETABTC-202011 PNTBTC-202106 MANABTC-202108 ETHDOWNBTC-202001 FIDABTC-202107 EASYBTC-202009 ACHBTC-202011 EVXBTC-202109 PAXGBTC-201909 BNBDOWNBTC-202105 WANBTC-202009 WAXPBTC-202103 NAVBTC-202001 XMRUSDT-202103 VIBEBTC-202109 KEEPBTC-202007 ALICEBTC-201901 BEARBTC-201908 VIBBTC-202012 NXSBTC-202106 TCTBTC-202012 CLVBTC-201907 DOCKBTC-202007 PHABTC-202104 COCOSBTC-201901 STRATBTC-202004 POLYBTC-202102 MCBTC-201904 CTXCBTC-201903 HIGHBTC-202004 RSRBTC-202009 WAXPBTC-201902 CTSIBTC-202002 AKROBTC-202109 PEOPLEBTC-202104 DOCKBTC-202108 AAVEUPBTC-201903 ICXBTC-201911 RVNUSDT-202111 STRATBTC-202107 RSRUSDT-202108 PERPBTC-202102 KAVABTC-202110 NULSBTC-201910 GALABTC-202111 AVAXBTC-202107 RPXBTC-202010 INJBTC-202112 FIROBTC-202007 AGIBTC-202006 EASYUSDT-202111 BTTCBTC-202011 ADADOWNBTC-202102 BEAMBTC-202005 GLMBTC-202112 WTCBTC-202001 KNCBTC-202101 XRPDOWNBTC-201904 YFIBTC-202103 KAVABTC-201907 EOSBEARBTC-201902 CELRBTC-202201 ROSEBTC-201911 ALPINEUSDT-202107 FORTHBTC-202104 SHIBBTC-202108 BTTCBTC-202003 TNBBTC-202112 BNBBTC-202104 TKOBTC-202109 SXPUPBTC-202103 QTUMBTC-201901 AUDBTC-202008 USTBTC-202004 AIONBTC-202109 VENUSDT-202109 DUSKBTC-201911 GTOBTC-202104 HOTBTC-202108 ARBTC-202004 ADXBTC-202009 CNDBTC-202103 RVNBTC-202009 FORTHBTC-202111 PERLBTC-202006 DGBBTC-202110 1INCHDOWNBTC-201908 WINGBTC-202005 AMPUSDT-202108 EDOBTC-202111 BCHSVBTC-202007 AGIXBTC-201910 UNIDOWNBTC-202104 QTUMUSDT-202106 LPTBTC-202101 PONDBTC-202005 DREPBTC-201903 BTTCBTC-202005 FILBTC-202112 LAZIOBTC-202102 OMGBTC-202101 WNXMUSDT-202108 GLMBTC-201901 ZECUSDT-202106 ENJBTC-201904 C98BTC-202002 LITBTC-202003 TKOBTC-201907 FLMBTC-202009 AAVEBTC-202011 FILDOWNBTC-202112 BCHUPBTC-202103 VIABTC-202112 AMBBTC-202103 HIVEBTC-202102 ANCBTC-202002 PORTOBTC-202010 BLZUSDT-202108 RIFBTC-202012 BCDBTC-202010 DFBTC-202009 EOSUPBTC-202008 YFIDOWNBTC-201905 RDNUSDT-202109 SUBBTC-202012 CLVBTC-201904 SKLBTC-201908 BOTUSDT-202106 BTCBBTC-201904 MDABTC-202103 BCHSVBTC-202009 BULLUSDT-202111 INSBTC-201901 ALGOBTC-202002 SPELLBTC-201906 CHESSBTC-202009 SXPBTC-202001 AMPBTC-202112 TWTBTC-202111 BETABTC-202001 CDTBTC-201905 BCHSVBTC-201909 BKRWBTC-202010 SSVUSDT-202111 BTCBTC-201908 UNIUPBTC-202001 RIFBTC-201912 FILBTC-202011 TNTBTC-201906 XLMUPUSDT-202109 PORTOBTC-201901 ATABTC-202006 BNBBEARUSDT-202108 HOTBTC-201905 SRMBTC-201907 AGIXBTC-202102 SPELLBTC-202106 DEXEBTC-201904 WRXBTC-202005 DODOUSDT-202106 RVNBTC-201902 ETHBULLBTC-201908 AGIXBTC-202104 NEOBTC-201901 STPTBTC-202008 NANOBTC-202108 GBPBTC-202101 ACHBTC-201912 ADABTC-201909 MIRBTC-201902 DEXEBTC-202009 FILUPUSDT-202107 PSGBTC-202107 STRATBTC-202011 BOTBTC-202009 XRPBTC-202103 HOTBTC-201912 DOTUPBTC-202008 BCNBTC-202201 SXPBTC-201901 BCHDOWNBTC-201904 BNXBTC-201903 FIOBTC-202109 KNCUSDT-202106 ICPBTC-202109 NCASHBTC-201906 GRSBTC-201908 USDSBBTC-202008 NULSBTC-202103 ALGOBTC-202110 UNFIBTC-202004 GOUSDT-202103 INSBTC-202106 QNTBTC-202007 MODBTC-202103 TRXBTC-202109 ICPBTC-202010 QIBTC-201908 VOXELUSDT-202103 SSVBTC-202005 LUNABTC-202010 TRIBEBTC-202105 QKCBTC-202005 PAXGBTC-201910 ATABTC-202112 EOSUPBTC-202012 FILUPUSDT-202103 WPRBTC-202012 USDPBTC-201904 YGGBTC-202110 BNBDOWNBTC-202008 HNTUSDT-202107 PHXUSDT-202103 LITBTC-202005 WBTCBTC-202002 OOKIBTC-202001 TNBBTC-202110 BNBUPBTC-202001 TRBBTC-202102 SYSBTC-202010 1INCHDOWNBTC-202104 ALPHABTC-202011 BUSDBTC-202009 GRTUSDT-202108 LTCDOWNBTC-202107 BALBTC-201908 VGXBTC-201908 TNTBTC-201902 JOEBTC-202003 ZECBTC-202103 BALBTC-202012 ADABTC-202002 XLMBTC-202105 TRIBEBTC-202201 PUNDIXBTC-202002 SSVBTC-202104 FIROBTC-202108 LINKUPBTC-202004 CFXBTC-202011 MOVRBTC-202106 XTZBTC-202010 BLZBTC-202003 BARBTC-202110 WNXMBTC-202102 DASHBTC-202006 STORMBTC-202012 POABTC-202112 GASBTC-202108 CMTBTC-202109 XRPBTC-201907 SPELLUSDT-202107 DNTBTC-202103 BTTBTC-202002 CLOAKBTC-202004 LENDBTC-201909 TWTUSDT-202111 NAVBTC-202110 BICOBTC-202112 C98BTC-201901 SUSHIUPUSDT-202109 HOTUSDT-202106 WAXPBTC-202006 LRCBTC-202009 POLSBTC-202103 CTKBTC-202003 PNTBTC-201906 FTMBTC-202006 ACABTC-202010 FRONTUSDT-202108 VTHOBTC-202008 AAVEUPBTC-202105 ACHBTC-202101 YFIIBTC-202111 ACMBTC-202001 COSUSDT-202103 ONTBTC-202005 REPBTC-202101 YFIUSDT-202111 LINKUPBTC-202007 BNBDOWNBTC-201912 GHSTBTC-202003 HBARBTC-202103 AAVEBTC-202108 CLOAKBTC-201905 STRAXBTC-201908 ATABTC-201908 IOSTBTC-202009 FLMBTC-202111 FILBTC-201906 BURGERBTC-201903 COSBTC-202109 YFIBTC-202002 GLMRBTC-202005 SNGLSBTC-202105 EURUSDT-202111 SSVBTC-202106 DARUSDT-202103 GBPBTC-202009 ETCBTC-202201 TRIBEBTC-202004 HCBTC-202110 LTOBTC-202004 QUICKUSDT-202106 1INCHBTC-202004 OCEANBTC-201903 TROYBTC-202002 TRXDOWNBTC-201901 SUBBTC-201912 PERLBTC-202106 COCOSBTC-202012 XTZDOWNBTC-202002 EOSUPUSDT-202106 BTGUSDT-202109 EZBTC-202011 MIRBTC-202011 ANTBTC-202004 TVKBTC-202106 CRVUSDT-202106 UTKUSDT-202106 BCHABCBTC-202102 NASBTC-201905 IRISBTC-202005 EDOUSDT-202107 STMXUSDT-202111 XRPDOWNBTC-202109 TOMOBTC-202106 PROMBTC-201912 ALICEBTC-202109 KEEPBTC-202107 XZCUSDT-202111 MFTBTC-201911 RVNBTC-202011 EOSBULLBTC-201904 CTXCBTC-202007 PHBBTC-201907 MIRBTC-202012 GALABTC-202109 DEGOBTC-202104 VENBTC-202007 NPXSBTC-202105 NEARBTC-201906 OOKIUSDT-202108 KLAYBTC-202006 THETABTC-202007 BANDBTC-202108 COSBTC-201904 FLUXUSDT-202106 COSBTC-202011 IRISUSDT-202109 NMRBTC-202004 ADXUSDT-202106 STORMUSDT-202103 GLMRBTC-202003 DREPBTC-202106 ETHUPBTC-202111 EURBTC-201905 TFUELUSDT-202108 WAVESBTC-201904 BADGERBTC-202201 SUPERBTC-202001 LTCUPBTC-202102 GVTBTC-202009 BKRWBTC-201903 TRXDOWNBTC-202009 LINABTC-202004 BTCBBTC-201905 ACHBTC-202105 SUSHIUPBTC-202011 CHZBTC-201903 BUSDBTC-202103 CTSIBTC-202107 AXSBTC-202110 LTCUPBTC-201910 XLMBTC-202008 MFTBTC-202101 EOSBEARBTC-201901 BTCSTBTC-201909 BEAMUSDT-202103 CLOAKBTC-202101 OOKIBTC-202007 SUPERBTC-202008 ATABTC-201909 CLOAKBTC-202110 YFIBTC-202005 RIFBTC-202201 ALPINEBTC-202010 FILBTC-202009 FRONTBTC-201909 DCRBTC-202007 XECBTC-202012 LUNBTC-202001 MBLBTC-202107 TVKBTC-202102 NEARBTC-202110 LINKDOWNBTC-201910 PHBBTC-201909 BONDBTC-201903 COTIBTC-202107 EURBTC-202111 UNIUPBTC-202110 ETHBTC-202106 QLCUSDT-202103 RSRBTC-202007 CVPBTC-201908 BNBBULLBTC-202102 PEOPLEBTC-201902 GVTUSDT-202103 INJBTC-201902 FUELBTC-201911 SALTBTC-202011 GHSTBTC-201909 ANYBTC-201906 FORTHBTC-201912 YFIUPBTC-201906 DREPBTC-202009 CHRBTC-201911 TNTBTC-201907 1INCHBTC-202108 SNMUSDT-202108 XRPUPBTC-201906 ETHUPBTC-201910 API3BTC-201907 ETHBEARBTC-202003 BTCBTC-201909 NANOBTC-201907 MDABTC-202001 RIFBTC-202110 NEBLBTC-202106 PEOPLEBTC-202007 QSPBTC-202006 VENBTC-202101 GOBTC-202106 EASYBTC-201903 SCUSDT-202108 MATICBTC-202111 VETBTC-201912 BKRWBTC-201901 CMTBTC-202110 QNTBTC-202004 FXSBTC-202110 ILVBTC-201911 UNIUPBTC-202012 VIDTBTC-202112 JSTBTC-202107 TROYBTC-202009 LTCUPBTC-202106 MODUSDT-202107 RUNEBTC-202010 ALICEUSDT-202111 AUDUSDT-202106 GLMRBTC-202110 ANKRBTC-202106 AGIBTC-202106 ACMBTC-202106 ARNBTC-201912 XTZUPBTC-202112 BTCSTUSDT-202111 MBOXBTC-202104 FIOBTC-202108 GALAUSDT-202106 NPXSBTC-201904 ENSBTC-202106 BTCDOWNBTC-201902 LINKUSDT-202111 ADAUPBTC-202011 MDABTC-202008 IRISUSDT-202107 TNBBTC-201903 BKRWBTC-202104 RDNBTC-201906 ASRBTC-202012 ALPINEBTC-201902 TORNBTC-202201 TKOBTC-201908 RAMPBTC-202010 QKCUSDT-202109 EOSBEARBTC-202001 TRXDOWNBTC-202109 1INCHBTC-202010 WPRUSDT-202106 DCRBTC-202009 ASRBTC-202102 UTKBTC-202101 CLOAKBTC-202107 MITHBTC-202002 MLNUSDT-202109 EOSDOWNBTC-201910 WAVESBTC-202010 XLMDOWNBTC-202005 STRATBTC-202006 AERGOBTC-202101 BNTBTC-201904 1INCHDOWNBTC-202105 POEBTC-201901 BANDBTC-202102 ACABTC-202011 TWTUSDT-202108 HBARBTC-202112 NMRBTC-202107 CDTBTC-201907 TRIGBTC-201910 XTZUSDT-202103 OGBTC-201912 RAREBTC-202106 UTKBTC-202103 ETCBTC-201910 BTTCBTC-202107 SKYBTC-201907 ASTBTC-202102 XVSUSDT-202108 CDTBTC-202111 SPELLBTC-202111 BEARBTC-202106 UNFIBTC-201908 DATABTC-202010 MDTBTC-201906 XVSBTC-201904 RIFBTC-202002 MODBTC-201904 HARDBTC-202107 MITHUSDT-202108 LOKABTC-201901 HSRBTC-202109 ADADOWNBTC-201910 ATMBTC-202110 NKNBTC-201906 BURGERBTC-202012 CVCBTC-202001 INJBTC-202105 LRCUSDT-202103 SPELLBTC-201910 NBSBTC-201901 USDSBBTC-202105 MASKBTC-201904 HNTUSDT-202109 BCHBTC-201906 MBOXBTC-202111 GVTBTC-201905 ATOMUSDT-202108 1INCHBTC-201907 WINGSBTC-202012 ENJBTC-202010 BZRXBTC-201903 FLMBTC-201909 USDSBBTC-202110 BNBBTC-202006 TRBBTC-202201 ALPINEBTC-201911 ETHUPBTC-202011 BEAMBTC-201902 ANKRBTC-201901 TNBUSDT-202109 PLABTC-202107 LINKDOWNBTC-201906 LTOBTC-201903 PLABTC-202011 PHXBTC-202110 DENTBTC-201906 GALABTC-202106 MODBTC-201905 POABTC-202102 POABTC-202004 CHZBTC-202009 BZRXBTC-202004 TCTBTC-202102 ERDBTC-201901 DODOBTC-202007 USDSBTC-202007 DATABTC-201907 AUCTIONUSDT-202109 SNMUSDT-202111 ALICEBTC-202007 WANBTC-202004 COCOSBTC-202007 WNXMBTC-201912 AVABTC-202105 DOTBTC-202007 LINKDOWNBTC-202110 CVPBTC-202002 DOCKBTC-202002 DAIUSDT-202108 TUSDBTC-201910 BTCUPBTC-201906 LITBTC-202012 DOTUPBTC-202010 DGBBTC-202102 SUSHIUPBTC-201903 AUCTIONBTC-202111 AMPBTC-202102 BANDBTC-202006 ALICEBTC-202005 WINGBTC-201903 MTHBTC-202110 VIBEBTC-202101 XTZUPBTC-202104 POABTC-202001 SUSDBTC-202010 TRBBTC-201901 WTCBTC-201901 GTCBTC-202110 EPSBTC-202104 TNBBTC-202108 ORNBTC-202101 LSKBTC-201901 SLPBTC-202004 USDSBTC-202108 KLAYBTC-201904 XVSBTC-202112 BTTCBTC-201910 POLYBTC-201910 SCBTC-201907 BRDBTC-202009 NCASHBTC-202009 NANOBTC-202110 BELBTC-201910 BNTBTC-202110 WRXBTC-202002 FIOUSDT-202107 TVKBTC-202109 YFIBTC-202110 QLCBTC-202011 DGDBTC-201911 HCBTC-202007 TKOBTC-202104 MANABTC-202002 LINKDOWNBTC-202003 BNBDOWNBTC-201907 BADGERBTC-201909 IOSTBTC-201909 DOTUPBTC-201905 BALUSDT-202108 ATABTC-202103 AEBTC-202006 DLTBTC-201907 BTSBTC-202001 AIONBTC-202001 BTCSTBTC-202110 LTCBTC-202009 FILDOWNBTC-201908 VIBBTC-202105 XVSUSDT-202111 EDOBTC-202102 LINKBTC-202007 KSMBTC-202003 GALABTC-201904 EGLDBTC-202112 ELFBTC-201910 KSMBTC-202105 ALPACABTC-202105 AVAXBTC-202007 ALPINEBTC-202003 DATABTC-202108 TNTBTC-202004 QUICKBTC-202107 NULSBTC-202005 MODBTC-202109 WBTCBTC-202012 MITHBTC-202104 EOSUPBTC-201903 DCRBTC-201901 BURGERUSDT-202103 YOYOBTC-202006 SHIBBTC-202101 CMTUSDT-202111 BEARBTC-201904 CMTBTC-201901 STRATBTC-201911 DASHBTC-202001 BCHDOWNBTC-201909 TORNUSDT-202106 ALGOBTC-202001 RAREUSDT-202111 POWRBTC-202112 ANCBTC-202104 YFIIBTC-202104 DOTBTC-202107 CMTBTC-202104 ACMBTC-202006 UTKBTC-202110 EDOBTC-201901 APPCBTC-202008 AGIXBTC-202107 UTKBTC-201904 ELFBTC-202104 BALBTC-201909 SUBBTC-201905 HSRBTC-201911 ENSUSDT-202103 LTCDOWNBTC-201906 WNXMBTC-201902 1INCHDOWNBTC-202111 DARUSDT-202108 RDNBTC-202002 GTOBTC-202103 AAVEBTC-202110 COMPBTC-202112 1INCHUPBTC-201909 MDXBTC-202103 TRXDOWNUSDT-202109 ENSBTC-201904 MLNBTC-201901 FTTBTC-201904 GRSBTC-202006 DOCKBTC-202102 MITHBTC-202108 NEARBTC-202010 SUSDBTC-201909 OMBTC-202201 VETBTC-201907 GLMRBTC-201902 HARDBTC-202002 XMRBTC-201911 BCPTBTC-201907 UNFIBTC-202006 QNTBTC-202005 LOKABTC-202003 WINGBTC-201910 SHIBBTC-202012 MFTBTC-202107 BCDBTC-201902 BNBBEARBTC-201909 BULLBTC-201911 BLZBTC-202101 SUSHIBTC-202012 YFIUPBTC-202009 XEMBTC-202104 AVABTC-202010 ICPBTC-202006 DREPBTC-201912 DEXEBTC-202106 LTCUPBTC-202005 LTCBTC-201905 TRXDOWNBTC-202106 ONTBTC-201904 COTIBTC-202006 LINABTC-202009 TWTBTC-201901 EOSUPBTC-202107 ASRBTC-201903 BCCBTC-202104 DARBTC-202108 WABIBTC-201903 BELBTC-202007 XZCBTC-202003 DOTBTC-202004 EOSBEARUSDT-202108 QTUMBTC-202007 TORNBTC-202010 MODBTC-201903 NASBTC-202010 LUNUSDT-202111 SCRTUSDT-202108 DNTBTC-202005 NPXSBTC-202107 MCOBTC-202106 KAVABTC-201906 EOSDOWNBTC-202106 YFIDOWNBTC-201912 BTTBTC-201904 FILBTC-202201 ILVBTC-201903 ETCBTC-202108 TFUELBTC-202201 YFIUPBTC-202006 RDNBTC-202111 LITBTC-201907 WINGSBTC-202005 RAMPBTC-202101 UMAUSDT-202107 MDTBTC-202106 HNTBTC-202201 MCOBTC-201903 ADXBTC-202103 OMBTC-201909 1INCHDOWNBTC-202003 DOCKBTC-202006 AVAXBTC-201903 ALICEBTC-202004 MASKBTC-202004 KMDBTC-202112 XRPBEARBTC-201902 CRVUSDT-202111 BCHDOWNBTC-202107 VIABTC-201911 TKOBTC-202105 GASBTC-202010 STXBTC-202105 HIVEBTC-201901 XTZBTC-202007 NANOBTC-202107 AGIBTC-201905 BOTBTC-202004 RENUSDT-202107 BCHUPBTC-202005 SOLBTC-202201 DFBTC-202108 WBTCBTC-201909 BCHUSDT-202111 YFIDOWNBTC-201902 AUDIOBTC-202107 LPTBTC-202109 BUSDBTC-201907 DENTBTC-202103 RENBTCBTC-202103 MASKBTC-202007 SUBBTC-202104 SXPDOWNBTC-201912 WOOBTC-202001 DEGOBTC-202109 GVTBTC-202201 HSRBTC-201903 PHABTC-202002 BANDBTC-202107 YFIUPUSDT-202107 EOSBTC-201904 LENDBTC-202003 TRUBTC-201903 BURGERBTC-202011 NEARBTC-201905 MATICBTC-201912 BLZBTC-201912 LINKUPBTC-201904 OMGBTC-202109 XEMBTC-201909 DYDXBTC-201904 SUNBTC-202004 BLZBTC-202105 VTHOBTC-202106 USTUSDT-202106 MOVRBTC-201910 BTCUPBTC-202004 ETHUSDT-202109 OSTBTC-202011 NPXSUSDT-202109 WBTCBTC-201912 SUSHIDOWNBTC-202101 OMBTC-201904 MFTUSDT-202103 ATABTC-202008 GRSBTC-201910 DODOBTC-201908 MDABTC-201902 GALABTC-201912 TNBBTC-202003 RENBTC-201906 PAXBTC-202009 BTTBTC-202101 BUSDBTC-201908 XTZUPBTC-202002 AAVEDOWNBTC-201912 POLSBTC-201911 C98BTC-202103 SPELLBTC-201901 USTBTC-202011 BTGBTC-201907 WINGSBTC-202105 ONEBTC-202105 ZENBTC-202003 BRDBTC-202004 RDNBTC-202102 DOTUSDT-202108 1INCHUSDT-202107 BTTBTC-202011 DOGEBTC-202008 POWRBTC-201909 BRDBTC-201911 XECBTC-201903 XRPBTC-202109 DOCKUSDT-202111 FUELBTC-202109 IOTXBTC-202104 XRPDOWNBTC-202105 AGIXBTC-202003 ICPBTC-202102 YOYOBTC-202007 COTIBTC-202003 FLUXUSDT-202108 INSBTC-201909 FTTUSDT-202109 BNBBULLBTC-202110 DODOBTC-201901 RPXBTC-201907 POLYBTC-202109 BCHBTC-202107 TVKBTC-201904 ERNBTC-202009 AUTOBTC-202107 JUVBTC-202003 SRMBTC-201906 VGXUSDT-202111 OOKIBTC-201910 GVTBTC-201901 WINGBTC-201902 OOKIBTC-202108 GLMRBTC-201907 DOTBTC-201911 DATABTC-202011 DYDXBTC-202107 ETHBEARBTC-202107 BCDBTC-202001 ELFBTC-202111 HBARUSDT-202103 MBLBTC-202012 ATABTC-201904 VGXBTC-201911 TRIGBTC-202012 MDXBTC-202108 AAVEUPBTC-202103 TKOBTC-202012 ACMBTC-202011 MASKUSDT-202103 LINKUPBTC-202105 DREPBTC-202007 GTOBTC-202107 BQXBTC-202106 AVAXBTC-202103 FARMBTC-202110 RLCUSDT-202107 EASYBTC-202012 ALPINEBTC-202107 OCEANBTC-202012 ICPBTC-202110 SANTOSUSDT-202103 ACMUSDT-202107 CVPBTC-202011 CVPBTC-201903 XEMBTC-202011 VITEBTC-202105 BNXBTC-202108 SUSDBTC-202102 POABTC-202009 CHZBTC-201906 RNDRBTC-202104 AXSBTC-202109 KEYBTC-202009 FUNBTC-201906 PUNDIXBTC-201902 RNDRBTC-202011 DNTUSDT-202107 JOEUSDT-202111 SHIBBTC-201910 SXPUPBTC-201904 STRAXBTC-202004 BTTBTC-202104 C98BTC-202006 IOTABTC-202005 AUTOBTC-202102 USTBTC-202107 TRIGUSDT-202111 ASTBTC-201907 ANKRBTC-202002 FORBTC-202101 CDTBTC-202102 CRVBTC-202001 PERLBTC-202005 VIABTC-202004 CLVBTC-202101 YFIBTC-201904 DEGOBTC-201912 ADXBTC-201908 ARPABTC-202106 KMDBTC-201912 DAIBTC-202007 DAIUSDT-202111 ACMBTC-201908 COSBTC-201906 TRXDOWNBTC-202112 INJBTC-202102 XRPDOWNBTC-202009 GBPBTC-202107 BTCDOWNBTC-202005 DENTBTC-201905 ACMUSDT-202109 BLZBTC-202102 BCHSVBTC-201903 FIOBTC-201912 MASKUSDT-202108 NMRUSDT-202109 DOCKBTC-201902 SYSBTC-202007 PLAUSDT-202108 NEOBTC-202012 BTCSTUSDT-202109 OGNBTC-202108 KNCBTC-201903 IDEXBTC-202110 LTCDOWNBTC-202006 SNGLSUSDT-202106 QSPBTC-202011 YGGBTC-202006 HOTBTC-202002 SUPERBTC-202112 BTGBTC-202002 C98USDT-202108 ARKUSDT-202107 LUNBTC-201901 FRONTBTC-201901 QSPBTC-201908 LRCBTC-202006 NULSBTC-202107 DCRBTC-202008 ICNBTC-202109 CHESSBTC-202105 OGNBTC-202111 GVTBTC-202002 PHXBTC-201902 VITEBTC-202009 AUDIOUSDT-202106 TRUBTC-201908 EPSBTC-201912 BTTBTC-202005 UNIUSDT-202103 EOSDOWNBTC-201911 TVKBTC-202007 PERLBTC-201910 CTKBTC-202002 DNTBTC-201911 UMABTC-202104 YFIUPBTC-202008 OMGBTC-202004 EVXBTC-202105 1INCHDOWNBTC-202107 LPTBTC-202108 BNBBULLBTC-202010 NASBTC-201906 ATABTC-202003 BNXBTC-202006 AAVEUPBTC-202111 MTLBTC-202001 GHSTBTC-202103 MIRBTC-202112 COTIBTC-201907 POLYUSDT-202103 FORTHBTC-202102 PPTBTC-202003 UNFIBTC-202107 PERLUSDT-202103 LAZIOBTC-202103 GHSTBTC-202104 BADGERBTC-201912 ATMBTC-202003 LINKUPBTC-201902 RAREBTC-201903 BNBBEARUSDT-202107 PYRBTC-202005 EURBTC-201908 TCTBTC-202002 DREPBTC-202110 ETHBEARBTC-202110 ETHBEARBTC-201910 IRISBTC-202001 ERDBTC-201910 LENDBTC-201905 MDTBTC-202008 MINABTC-202010 BNXBTC-201902 HARDBTC-202109 BTCUSDT-202109 ERNBTC-202008 YFIUPUSDT-202106 ROSEBTC-201908 RENBTCBTC-202008 AAVEBTC-202004 CLVBTC-201910 HARDBTC-201910 WRXBTC-201903 RCNBTC-202003 XMRBTC-202104 SUPERBTC-202004 ALGOBTC-201907 CRVBTC-201908 SUSHIBTC-202007 DIABTC-202103 SNTBTC-201907 GHSTUSDT-202103 ALPHABTC-201904 ADAUPUSDT-202107 SCRTBTC-201909 YOYOBTC-201908 PYRBTC-201907 SUPERBTC-202105 RPXBTC-202112 MLNBTC-202107 C98BTC-202110 BNBBEARBTC-202007 CVCBTC-202104 AXSBTC-202001 FTMBTC-202106 MASKBTC-201908 FARMBTC-201904 DEXEBTC-201907 TRXUPBTC-202112 RADBTC-201907 FUELBTC-202103 BONDBTC-201907 POEBTC-201905 ANCBTC-202009 MOVRBTC-201905 PERPBTC-201901 ZILUSDT-202103 CKBBTC-201901 BCNBTC-201906 VIABTC-202002 CAKEBTC-201910 ONGBTC-202105 TROYUSDT-202107 KMDBTC-202002 RENBTC-202112 ATMBTC-202104 FIOBTC-201909 USDPBTC-202201 GXSBTC-202102 BQXBTC-202108 DGBBTC-202004 WTCUSDT-202111 VETBTC-201908 COCOSUSDT-202107 BCCBTC-202101 COSUSDT-202111 ETHDOWNUSDT-202107 USDCBTC-202106 ALPINEBTC-202005 MLNBTC-202009 BNBDOWNBTC-202107 BOTBTC-202003 KEYBTC-202107 YFIIBTC-202112 TFUELBTC-202009 PAXBTC-202007 ENSUSDT-202108 FIOBTC-202010 SNGLSBTC-202109 TFUELBTC-202003 MINAUSDT-202107 YFIBTC-202012 AEBTC-202101 ONGBTC-202104 NXSBTC-202007 HNTBTC-202006 CELRBTC-202103 USTBTC-201901 STEEMBTC-201909 ATMBTC-202007 SKLUSDT-202111 PAXGBTC-201906 VGXBTC-202105 WINGBTC-202109 EDOBTC-202003 OMUSDT-202108 COCOSBTC-201905 REPUSDT-202106 LTCUPBTC-201907 DNTBTC-201907 YOYOBTC-202010 CHRBTC-201906 QKCBTC-202106 1INCHBTC-202011 EOSDOWNBTC-202104 PYRBTC-202003 AMBUSDT-202107 FXSBTC-202006 XVGBTC-202009 KEEPBTC-201909 UMABTC-202103 ZRXBTC-202008 COTIBTC-202010 DOTUPBTC-202003 IRISBTC-202101 BCHDOWNBTC-201901 ROSEBTC-202012 AMBBTC-201910 NASUSDT-202107 PUNDIXBTC-202006 ROSEUSDT-202106 XTZDOWNBTC-201912 CHATBTC-202004 CRVBTC-201905 LTCUPBTC-201903 CITYBTC-202003 BOTBTC-201908 PHABTC-201906 WANBTC-202103 API3BTC-201904 XRPDOWNBTC-201907 XLMBTC-202010 XLMBTC-202101 KSMBTC-201910 IRISUSDT-202111 CHRBTC-201907 ZRXBTC-202004 BLZBTC-202005 RGTBTC-202104 RGTBTC-202002 BOTBTC-201902 DGBBTC-201909 STORMBTC-202001 TRIBEBTC-202101 ONEUSDT-202111 GBPBTC-201911 WINBTC-202112 SCBTC-202005 BTSBTC-202110 LRCBTC-201909 SXPDOWNBTC-202002 ZENBTC-202112 FILUPBTC-201907 DEXEBTC-202001 LTCUPBTC-201901 AGIBTC-201901 NMRUSDT-202107 MCOBTC-202004 FTMBTC-202005 VGXBTC-202007 GHSTBTC-202108 XRPUPBTC-202111 EZBTC-202002 ARPABTC-202011 YOYOBTC-202201 FXSBTC-202107 PROMUSDT-202109 PONDBTC-202102 XRPUPBTC-202109 FILDOWNBTC-202003 OGNBTC-202005 KMDBTC-202105 BNTBTC-202005 NMRBTC-201907 MITHBTC-202009 TROYBTC-201905 AAVEUPUSDT-202107 VOXELBTC-201909 DOTUPBTC-202107 EASYBTC-201901 PONDBTC-202105 BNBBTC-201907 FORBTC-202008 1INCHUSDT-202111 YGGUSDT-202111 TKOBTC-202108 RSRBTC-202004 KAVAUSDT-202109 AERGOUSDT-202111 TWTBTC-202005 MLNBTC-201910 SUSDUSDT-202111 ONTBTC-202002 ETHBEARBTC-202008 WBTCBTC-202109 PSGUSDT-202107 TWTBTC-202101 JUVBTC-202111 MCBTC-202002 GOBTC-202108 HARDUSDT-202108 KEEPBTC-202012 FILBTC-202101 ASRBTC-201910 HSRBTC-202001 ZECBTC-202008 YGGUSDT-202108 KEYBTC-202110 ZENBTC-202011 C98BTC-201909 AKROBTC-202007 JOEBTC-201907 FXSBTC-201904 OCEANBTC-201901 NULSBTC-201908 BONDBTC-202009 BAKEBTC-202104 ANCBTC-202110 SNMBTC-202105 AGIBTC-202110 IOTABTC-202008 FIROBTC-202107 HCUSDT-202106 DGDBTC-202104 TVKUSDT-202103 MTLBTC-201906 PERLBTC-202004 BNTBTC-202111 EOSBEARBTC-201909 WINGBTC-202106 OXTBTC-201902 DOTBTC-202011 GTOBTC-202109 QLCBTC-202112 FLUXUSDT-202107 YGGBTC-201905 BTTCBTC-202201 FLMBTC-201902 WOOBTC-201905 OCEANBTC-202005 CHESSBTC-202003 QTUMBTC-202005 RGTBTC-202001 EGLDUSDT-202107 KEYBTC-202106 LOOMBTC-201903 DENTUSDT-202107 LTCDOWNBTC-202007 RAREBTC-201905 NULSBTC-201909 KAVABTC-202003 NKNBTC-201901 DCRBTC-201906 COSUSDT-202106 TRBBTC-202001 AGIBTC-201911 PAXUSDT-202106 DOGEBTC-202012 REEFBTC-201905 CRVUSDT-202109 WABIBTC-202010 BETABTC-202107 ARDRBTC-202007 KP3RBTC-202001 ONEBTC-202112 RAMPBTC-202001 DOCKBTC-202003 COTIBTC-202005 BZRXBTC-202006 SNXBTC-202001 ENSBTC-201910 SCBTC-201911 SNMBTC-201907 XTZBTC-201911 BCHSVBTC-201908 HBARBTC-201902 AAVEDOWNUSDT-202107 MCOBTC-202108 RADBTC-202111 AERGOBTC-201912 RAMPBTC-202002 DNTBTC-202009 BURGERBTC-201907 SALTBTC-202105 LTCDOWNBTC-201912 AGIXBTC-201909 UNIDOWNBTC-201909 PAXGBTC-201912 SNMBTC-201909 LAZIOBTC-201901 GALABTC-202112 SXPUPBTC-202002 MLNBTC-201904 RDNBTC-202010 DUSKBTC-202004 VIAUSDT-202106 XLMDOWNBTC-201909 BNBBEARBTC-202003 ANTBTC-202005 SUSHIBTC-202010 AAVEDOWNBTC-202102 AUTOBTC-202009 ANCBTC-202106 RIFBTC-202112 GTCBTC-201907 FILDOWNBTC-201901 NUBTC-202108 CVCBTC-202110 ELFBTC-201912 ATMUSDT-202107 NCASHBTC-202010 SNMBTC-202003 LINKDOWNBTC-202105 AKROBTC-202003 WINGBTC-202004 AUCTIONBTC-202009 BTCBTC-202105 ICXBTC-202111 XMRBTC-201905 ICPBTC-202011 AVABTC-201909 WAXPBTC-202109 DOCKBTC-202107 OSTBTC-201906 AAVEUPBTC-201902 FUELBTC-201903 QSPBTC-201903 PONDUSDT-202103 SALTUSDT-202109 DOTBTC-201902 INJBTC-202109 LAZIOUSDT-202109 HOTBTC-202006 FUNBTC-202105 TRUBTC-202004 SRMBTC-202106 FTMBTC-202111 UNIBTC-202101 SCBTC-201904 TUSDBTC-202110 COCOSBTC-202108 JOEBTC-202008 RLCBTC-202011 UNIDOWNUSDT-202103 SCRTBTC-202008 RCNBTC-201909 FORBTC-201904 MDABTC-202107 GRSBTC-202007 AERGOBTC-202104 ALPACABTC-202201 ATABTC-202012 ONGUSDT-202107 TFUELBTC-202107 CMTBTC-202102 BCCBTC-201912 MCOBTC-201904 PERLBTC-202201 DGDBTC-202003 VITEUSDT-202111 HIVEBTC-202108 COMPUSDT-202109 DODOBTC-202110 LTOUSDT-202111 INJBTC-202101 YFIBTC-201903 ETHBULLBTC-201903 CITYBTC-202107 TRIBEBTC-202003 DOTUSDT-202103 TRXUPBTC-202108 CELOBTC-201911 RNDRBTC-201908 ICNBTC-201910 IOTABTC-202001 DNTBTC-202102 EDOBTC-202005 ZECUSDT-202109 XTZUPBTC-201909 LUNBTC-202002 TOMOBTC-202105 OSTBTC-202010 TCTBTC-202108 COCOSBTC-201912 NKNBTC-202107 NCASHBTC-202004 BKRWBTC-201909 AVAXBTC-202111 MATICBTC-201904 MFTBTC-202006 DIABTC-201906 SHIBUSDT-202108 CVPBTC-202105 CELOBTC-202101 LUNABTC-202112 AERGOBTC-202001 BULLBTC-202102 FIROBTC-201909 BALBTC-202006 COMPBTC-202007 BCHSVBTC-202111 SUPERBTC-201905 FTTBTC-202009 ENSBTC-201912 ALPACAUSDT-202111 AAVEUSDT-202109 PHXBTC-201903 SANTOSBTC-202106 SUSDBTC-202107 CHATBTC-202006 ALICEBTC-202104 NBSBTC-202108 PSGBTC-201909 RAREBTC-201904 ETCBTC-201905 ENGBTC-202007 COSBTC-201912 JUVBTC-202103 CVPBTC-202007 BCCBTC-201908 IDEXBTC-202106 BCCUSDT-202109 ENJBTC-202108 RLCUSDT-202103 FILUSDT-202111 PUNDIXBTC-202103 PLABTC-202003 CDTUSDT-202111 BUSDBTC-201901 ETHUPUSDT-202106 SUSHIDOWNBTC-201901 AVAXBTC-202005 CHRUSDT-202106 AIONBTC-201904 CDTUSDT-202103 SHIBBTC-202002 FLUXBTC-202111 HIGHUSDT-202107 SKYBTC-202102 KMDUSDT-202103 DOCKBTC-202103 CTXCUSDT-202111 ACMUSDT-202106 LUNABTC-201902 FIROBTC-202101 1INCHBTC-202109 SUBUSDT-202103 AEBTC-202007 FTTBTC-202103 SNTBTC-202106 ARPABTC-202009 LTCBTC-202104 VIBEBTC-201906 CLVBTC-201911 BNBUSDT-202103 ADXBTC-201906 TNBBTC-201905 HOTBTC-202103 WBTCUSDT-202111 QUICKBTC-202009 DFUSDT-202109 DOGEBTC-202003 UNFIBTC-202111 KP3RBTC-201903 BZRXBTC-202001 DREPBTC-202006 OGNBTC-202010 UNIBTC-201903 CELRBTC-202011 KEEPBTC-201908 WNXMBTC-202006 MTHBTC-202011 PNTBTC-201903 STORMBTC-201905 CELRBTC-202002 ASTBTC-201909 TLMBTC-202006 SFPBTC-201906 NCASHBTC-201907 WNXMUSDT-202109 DFBTC-202106 BELBTC-201905 AKROBTC-201907 EOSUPBTC-201911 FXSBTC-202108 1INCHBTC-202101 GBPBTC-201904 MANABTC-201910 MFTBTC-202104 LTCUPUSDT-202108 RUNEBTC-201911 EURBTC-201910 EPSUSDT-202106 ICXBTC-201903 ONGUSDT-202111 BNBUPBTC-202010 MODBTC-201906 ACABTC-202108 CVPBTC-202102 EOSBULLUSDT-202109 TROYBTC-201907 ROSEUSDT-202108 WPRBTC-201909 BADGERBTC-202012 GNOBTC-201904 NPXSUSDT-202111 ORNBTC-202112 EZBTC-202007 SFPBTC-201912 PERLBTC-202001 POEBTC-202003 FXSUSDT-202103 BCHSVBTC-202003 BELBTC-202002 SANTOSBTC-202004 DASHBTC-201906 VIDTUSDT-202111 VOXELBTC-202102 FUELBTC-201912 UNFIBTC-202102 RIFBTC-202009 GLMRUSDT-202109 TVKUSDT-202111 CVPBTC-202010 BAKEBTC-201910 ENJUSDT-202111 SUSDBTC-202003 HARDBTC-202007 ADADOWNBTC-202109 DGDBTC-202005 OSTBTC-202106 ENSBTC-202002 OAXBTC-201901 PIVXBTC-202004 PSGUSDT-202106 SUSHIUPBTC-202110 EGLDBTC-202103 USDPBTC-202105 CHRBTC-201903 TCTBTC-202107 RADBTC-202009 COSBTC-202101 OXTBTC-202108 AAVEUPBTC-202005 NEBLBTC-202108 XRPDOWNBTC-201908 LUNABTC-202005 JOEBTC-202105 AMPBTC-202201 OSTBTC-202201 REPUSDT-202111 RAYBTC-201909 KEEPBTC-202002 BTCDOWNBTC-202112 VGXBTC-201905 ACAUSDT-202106 WAVESBTC-201903 QLCBTC-201909 DLTBTC-202008 WBTCBTC-202111 JASMYBTC-202106 NEBLBTC-202001 MCOBTC-201912 PIVXBTC-202102 JUVBTC-201911 WABIBTC-201911 BKRWBTC-202012 RNDRBTC-202111 NXSBTC-202002 CHATBTC-202005 PAXBTC-202112 XTZBTC-202011 ASTBTC-202112 BETABTC-202008 AMPBTC-201904 TNTBTC-202103 DOTDOWNBTC-202108 ILVBTC-201902 AGLDUSDT-202103 MDXBTC-201901 BLZUSDT-202109 ICNBTC-201905 KEEPBTC-201905 XNOBTC-202003 ARPABTC-202007 PPTBTC-201902 LINKUPBTC-202111 BLZBTC-202010 XRPDOWNBTC-202107 LINKDOWNBTC-202109 GLMBTC-202007 BCCBTC-202007 DFBTC-201909 XVSBTC-201902 POLYBTC-201905 SUSDBTC-202005 CVXUSDT-202103 BEAMUSDT-202111 DOGEBTC-202201 PHBBTC-202007 SUBBTC-202004 TFUELUSDT-202106 HNTBTC-202011 VIDTBTC-201911 TCTBTC-202105 VGXBTC-202006 TWTBTC-201903 BANDBTC-202201 FETBTC-202102 BCHABCUSDT-202106 LTCUPUSDT-202111 ETHUSDT-202106 AMBBTC-202110 ELFBTC-202009 RGTUSDT-202108 WAVESBTC-202006 KMDBTC-202109 LTCBTC-202105 RUNEBTC-202104 TWTBTC-201905 MODUSDT-202109 ETCBTC-202011 ARPABTC-202111 CLOAKBTC-201902 HSRBTC-201904 USDSBBTC-201905 ACMBTC-202105 BZRXBTC-202109 CHESSBTC-202007 XTZBTC-201909 VGXBTC-201907 NASBTC-201901 ACABTC-202001 OCEANBTC-201907 LTCBTC-202108 ALGOBTC-202111 ETHUPBTC-201902 PUNDIXBTC-201912 SHIBBTC-202201 NASBTC-202201 LENDBTC-202112 RNDRUSDT-202103 MBLBTC-202005 ENJBTC-202110 TRXUPBTC-202111 FARMBTC-202112 EOSBULLBTC-202007 FLMBTC-202006 LTCUPUSDT-202103 EVXUSDT-202106 TRBBTC-201906 KSMBTC-202004 TRXDOWNUSDT-202106 PERPBTC-201907 BTCSTBTC-202004 PEOPLEUSDT-202108 HSRBTC-202108 FTTBTC-201912 BTTCBTC-202101 ETCBTC-202110 NASBTC-202103 BTCDOWNUSDT-202108 CELRBTC-202111 SNMBTC-201912 PNTBTC-202105 SPELLBTC-201908 LUNABTC-202106 VOXELBTC-202111 YFIBTC-201911 MIRBTC-202101 TRIBEBTC-201903 SKLBTC-202104 MDTUSDT-202109 JASMYBTC-202008 BANDUSDT-202107 DOTUPBTC-202004 PLABTC-202106 ARKUSDT-202103 UNIBTC-201906 QKCBTC-202009 FETBTC-202201 VIBEBTC-202106 WAVESBTC-202007 PHABTC-202102 WAXPBTC-202201 LENDBTC-202109 CRVBTC-202105 VITEBTC-202107 RSRBTC-201908 GRSBTC-201903 MLNBTC-202003 JUVUSDT-202107 FLOWBTC-202003 BTCBBTC-202101 AEBTC-202103 BCHDOWNBTC-202012 HIGHBTC-202007 ZENBTC-201910 HOTBTC-202111 ORNBTC-202106 HSRBTC-202009 EOSBEARBTC-202103 NBSBTC-202011 STORMBTC-201901 BEAMBTC-202009 EURBTC-202004 HBARBTC-202012 BETABTC-202004 DCRBTC-202005 BARBTC-201903 AGLDBTC-202109 GVTUSDT-202106 VIBUSDT-202103 JUVBTC-202102 XLMUPBTC-201904 UNFIUSDT-202109 VOXELBTC-202005 VIDTUSDT-202103 COMPBTC-201912 ANYBTC-202009 MITHBTC-201904 FORTHBTC-202103 FILUPBTC-202103 BULLUSDT-202107 KLAYBTC-201902 BCHUPBTC-202006 NEOBTC-202112 TCTBTC-202201 LENDUSDT-202106 CELOBTC-202104 RDNBTC-202104 MOVRUSDT-202111 TLMBTC-202009 DCRBTC-202004 QIBTC-202112 BCNBTC-202012 LINKDOWNBTC-202011 UNIBTC-202011 VIDTBTC-202003 KSMBTC-202012 ATABTC-202102 EASYBTC-202005 ELFBTC-202107 PAXBTC-202107 DLTBTC-202006 STRAXBTC-202006 LTOBTC-201902 SPELLUSDT-202106 CELOBTC-201907 WPRUSDT-202107 EDOBTC-202104 WINGUSDT-202109 SCRTBTC-201901 LOKABTC-202105 FIROBTC-201904 YFIUPBTC-201902 WOOBTC-202012 ETHBULLBTC-202008 ADADOWNUSDT-202103 CVPBTC-201905 KSMBTC-202011 CHATBTC-201910 ETHUPBTC-202010 SXPDOWNBTC-202004 SCRTBTC-202201 OGBTC-201906 LAZIOBTC-202108 CVXBTC-202009 AUDBTC-202111 VIBEBTC-201907 SXPDOWNBTC-202102 MDTUSDT-202106 FARMBTC-201901 FTTBTC-202105 DLTBTC-201903 RIFUSDT-202109 BONDUSDT-202106 GHSTBTC-202101 LINKUPBTC-201905 MDTBTC-201909 CHRBTC-202105 SLPBTC-202110 BTTUSDT-202106 OAXBTC-201908 COTIBTC-202004 XLMBTC-202012 BCHBTC-202106 STRATBTC-202109 LSKBTC-201906 LTCBTC-201909 TVKBTC-201907 AIONBTC-201906 XMRBTC-202007 BATBTC-202001 ACAUSDT-202111 KSMBTC-202007 RAMPBTC-201905 QNTBTC-202001 BULLBTC-201906 BQXBTC-202005 CVXBTC-201912 VIBEUSDT-202106 GHSTBTC-202107 ILVBTC-202003 ICNBTC-202009 UNIBTC-202108 ROSEBTC-201912 YGGBTC-201911 GRTBTC-201909 QUICKBTC-202012 API3BTC-201911 DCRBTC-201908 BUSDUSDT-202103 EURBTC-202008 ARDRBTC-201905 ICXBTC-202007 FARMBTC-202108 ENSBTC-201903 CHESSBTC-201904 MKRBTC-202012 SANDBTC-202005 MDTBTC-202010 ICPUSDT-202107 ENGBTC-202101 CHESSBTC-202001 1INCHBTC-202111 BNXUSDT-202111 AGLDBTC-202007 MBOXBTC-202006 LPTBTC-202003 EOSBEARBTC-201910 VTHOBTC-202004 FTMBTC-201910 REPBTC-202008 DARBTC-202010 TRIGBTC-201904 BTCBBTC-202009 COCOSBTC-202011 PERLBTC-202012 IDEXBTC-202011 PORTOBTC-202105 HBARBTC-202102 CLOAKBTC-201908 CMTBTC-202007 PLABTC-202004 ASRBTC-202110 CRVBTC-201902 TRIGBTC-202105 PNTBTC-201904 REPBTC-202112 ALPHABTC-202008 OOKIBTC-201901 BTTBTC-202003 INSBTC-202003 MLNBTC-202109 KAVABTC-202005 DARBTC-202101 FRONTBTC-202106 LTCBTC-201907 KMDUSDT-202109 MCOBTC-201902 BCHBTC-202005 FILUPBTC-202002 QUICKBTC-202004 DNTBTC-201908 MTLBTC-202109 BICOBTC-201912 OMGBTC-202005 SFPBTC-201910 ILVBTC-202101 ALGOBTC-201903 KNCBTC-202105 ADAUSDT-202107 ICPBTC-202003 ALGOBTC-201912 BTCDOWNBTC-202009 COSBTC-202108 DOTDOWNBTC-202104 GTOUSDT-202107 CHATBTC-202109 QKCBTC-202105 HOTBTC-202112 AKROBTC-201902 BNBUPBTC-202005 XTZDOWNUSDT-202106 AXSUSDT-202107 RAREBTC-201906 INSUSDT-202108 ZILBTC-201910 JUVBTC-201904 EOSDOWNUSDT-202103 ZECBTC-202010 VETUSDT-202103 KSMBTC-202104 SRMBTC-201901 ETHBULLBTC-201901 INJBTC-202107 LTOBTC-202104 DFBTC-202002 SXPUPBTC-202201 WTCBTC-202009 POEBTC-202109 1INCHBTC-202006 NBSUSDT-202111 EASYBTC-201908 PUNDIXBTC-202112 MBLBTC-201911 TRXDOWNUSDT-202111 WANBTC-202107 SXPUSDT-202109 ATOMBTC-202004 XRPUPBTC-201903 USDSBBTC-201904 POLYUSDT-202111 KEYBTC-202108 LTCUPBTC-202103 XLMBTC-201902 ARBTC-202105 SUBBTC-202010 PLABTC-201906 TRIBEBTC-202108 PONDBTC-201907 ANTBTC-202007 PERLBTC-202109 YFIUPBTC-201908 CITYBTC-202112 ILVUSDT-202111 AUCTIONBTC-202002 CELOUSDT-202106 SNTBTC-202011 BRDBTC-202102 PSGBTC-202106 ILVBTC-202009 FILDOWNBTC-202104 PONDBTC-202201 XLMDOWNBTC-202110 YFIUSDT-202108 BKRWBTC-202001 TRIGBTC-201903 QLCBTC-202101 SLPBTC-202109 FUNBTC-202009 RIFBTC-201903 SUSHIDOWNBTC-202109 BTTCBTC-202112 BANDBTC-201907 BLZBTC-201911 STORMBTC-202104 UNFIBTC-202008 AVABTC-202012 EVXBTC-201911 OAXBTC-201905 FISBTC-202109 JSTBTC-202012 DREPBTC-202002 TRXBTC-202108 BARUSDT-202107 RVNBTC-202012 LSKBTC-202002 NANOUSDT-202111 SKLBTC-202004 BURGERBTC-202001 ALCXBTC-201906 BAKEUSDT-202103 LINKBTC-202201 LTOBTC-202003 RENUSDT-202103 TFUELBTC-202109 ILVBTC-201906 PONDBTC-202008 ALPHABTC-201905 AAVEDOWNBTC-201909 AAVEDOWNBTC-202001 POLSBTC-202106 DENTUSDT-202109 BNBUPBTC-202011 LRCUSDT-202106 FLOWBTC-202111 CLOAKBTC-202102 MIRBTC-201903 REQUSDT-202111 KLAYBTC-202012 BTGBTC-202109 TRBBTC-201910 ATMBTC-202108 BRDBTC-202112 FRONTBTC-202110 TRUBTC-202106 ADADOWNBTC-201911 SUSHIDOWNBTC-202102 GTCBTC-202102 XRPBEARUSDT-202109 CFXBTC-202201 ARDRBTC-201910 POLYBTC-201909 SRMBTC-202112 NANOBTC-202003 SANDBTC-201909 LSKBTC-201910 CDTBTC-202101 BATBTC-202004 VGXBTC-201910 VIABTC-202005 ORNBTC-201907 ATMBTC-202107 SNTUSDT-202111 COCOSBTC-202103 PIVXBTC-202010 ADAUPUSDT-202103 SXPUPBTC-201903 WPRBTC-201905 CELRBTC-202008 KEEPBTC-201912 KP3RBTC-202011 RDNBTC-201903 TRIGBTC-201912 CFXBTC-202101 NMRBTC-202101 EVXBTC-202201 FARMBTC-202111 MODUSDT-202103 IDEXUSDT-202108 ONGBTC-202101 QUICKBTC-202102 RLCBTC-202003 SFPBTC-202008 POLSUSDT-202106 QNTBTC-202105 BTCBBTC-201907 1INCHBTC-201908 FISBTC-202102 HBARBTC-201911 STEEMBTC-202109 AMPBTC-201901 SCBTC-202112 ACAUSDT-202103 CDTBTC-202005 SUBUSDT-202109 YFIUPBTC-202010 GLMRBTC-201906 PSGUSDT-202109 XLMUPBTC-201906 SNTBTC-202007 FILUSDT-202107 TNBBTC-201912 PUNDIXBTC-201906 SUPERBTC-202002 QTUMBTC-202101 MITHBTC-202004 CAKEUSDT-202103 AGLDBTC-201901 CHATBTC-202101 TRBBTC-201909 YFIBTC-201909 KEEPBTC-202112 DOTUPBTC-201906 AMBBTC-201904 QUICKBTC-202010 VTHOBTC-202012 JSTBTC-202010 DGBBTC-201908 YOYOUSDT-202111 NKNBTC-201909 EASYBTC-201911 EOSBTC-202012 SPELLBTC-202104 WTCBTC-202106 DARBTC-202105 XVSBTC-202103 VOXELBTC-202108 TRIBEBTC-202107 ATOMUSDT-202103 ADAUPBTC-202012 1INCHUPBTC-201906 GBPBTC-202105 GRTUSDT-202109 CDTBTC-202110 AUTOBTC-201908 BTCSTBTC-202005 ICNBTC-201907 AEBTC-202108 COTIUSDT-202103 ARNBTC-202009 BOTBTC-202108 MDABTC-202108 RPXBTC-201904 SCUSDT-202109 BNBBULLBTC-201902 GRTBTC-201911 USDCBTC-202010 USDSBTC-202107 ADAUPBTC-201901 BNBBEARBTC-201911 FLMBTC-202010 AUTOBTC-201910 BCHSVBTC-201901 GTCBTC-202006 AGIXUSDT-202107 NXSBTC-202105 EURBTC-201907 IRISBTC-202006 CMTUSDT-202106 SCBTC-202006 CFXBTC-201907 DOCKUSDT-202107 ZRXBTC-201903 POWRBTC-201903 SCRTBTC-202107 OCEANUSDT-202106 FLOWUSDT-202106 ADXBTC-202102 XTZUPBTC-201904 RNDRBTC-201901 PERPBTC-202002 PHXBTC-202006 HCBTC-201904 RENBTC-202010 STPTBTC-202011 DASHBTC-202104 BCHBTC-201907 AMPBTC-201906 FUELBTC-202107 SALTBTC-202003 DCRBTC-202002 GTOUSDT-202103 EOSDOWNBTC-201902 CELOUSDT-202107 DGBBTC-202108 QUICKBTC-202101 TRIGUSDT-202107 CITYBTC-201901 ETHBULLBTC-202011 DREPBTC-202101 QIUSDT-202111 RNDRBTC-202007 BALBTC-202007 KEEPBTC-201901 CDTBTC-202002 BTCUPBTC-202010 BEAMBTC-202003 QNTBTC-202002 ASTBTC-202104 ORNBTC-202003 DCRBTC-201907 BTCBBTC-201901 POABTC-202108 MTLUSDT-202111 STRAXBTC-202201 MDTBTC-202112 YFIDOWNBTC-201911 RDNUSDT-202107 RNDRBTC-202005 SANTOSBTC-201903 WPRBTC-202106 POEBTC-202007 NBSBTC-201906 DOTUPBTC-201903 AUTOBTC-202111 XEMBTC-202112 PHABTC-202111 PLABTC-201912 XLMDOWNBTC-201907 BNBBEARBTC-201905 EZBTC-201909 POABTC-201911 FLOWBTC-201902 RUNEBTC-201907 NBSBTC-202107 OMGBTC-202105 RAMPBTC-201910 WANBTC-202005 PAXUSDT-202111 MKRBTC-201904 EOSBULLBTC-202109 CNDBTC-201910 GALABTC-202008 KAVAUSDT-202107 RGTBTC-202101 WINGSBTC-202112 AKROBTC-202110 UMABTC-201908 PHXBTC-202001 CITYBTC-201902 AIONBTC-202112 TNTBTC-201912 POLSBTC-202001 SNMBTC-201910 POLSBTC-202011 FETBTC-202008 DAIBTC-202011 GLMBTC-202110 CELRBTC-202006 1INCHUPBTC-202104 YFIUPBTC-202106 ALPHABTC-202103 CNDBTC-201905 QLCBTC-201906 ORNBTC-202008 EVXUSDT-202109 WABIBTC-202110 WINGUSDT-202106 ENJBTC-202009 RAREBTC-202009 CAKEBTC-202001 KMDBTC-202111 PEOPLEBTC-202010 ATMBTC-202005 XVGBTC-202102 POABTC-202010 ONGBTC-202106 BCPTBTC-202103 ENGUSDT-202103 MDTBTC-201904 UNIUSDT-202106 GRTBTC-201902 BEARUSDT-202108 DOGEBTC-201908 XTZBTC-202105 CELRBTC-202010 PAXGUSDT-202107 BTCSTBTC-202008 BULLBTC-202005 BADGERBTC-201906 BNBBULLBTC-201906 CHESSBTC-202011 BKRWBTC-202102 NAVBTC-202107 LPTBTC-202009 YFIIBTC-202201 ANTBTC-202011 FLUXBTC-201901 GXSBTC-202003 RCNBTC-202201 FIDABTC-202008 ANTBTC-201909 CVCBTC-201911 XRPBULLBTC-202112 UMABTC-202109 VETBTC-202008 DEGOUSDT-202109 CFXBTC-202109 BETABTC-202010 NBSBTC-202004 YOYOBTC-202002 TRIGBTC-202002 DAIBTC-202006 NULSBTC-201905 ETHUPUSDT-202108 BUSDBTC-202012 CHZBTC-202104 BTCUPBTC-202002 DOTDOWNBTC-201908 XTZDOWNBTC-202004 DENTBTC-202104 FUNBTC-201905 XMRBTC-201908 SUSHIDOWNBTC-201902 AERGOBTC-201909 AXSBTC-202006 KMDBTC-201911 ANCBTC-202101 PAXGBTC-202006 HBARBTC-202107 SHIBBTC-202106 YFIDOWNBTC-202001 KMDUSDT-202108 OSTUSDT-202103 ADAUSDT-202103 GOBTC-201907 ACMBTC-202002 AERGOBTC-201904 NPXSBTC-202104 BTTBTC-202006 BADGERUSDT-202106 OCEANBTC-202101 NANOBTC-202109 BNBBULLBTC-202007 RCNBTC-201911 LENDBTC-202111 PLABTC-202103 OAXBTC-202105 DASHBTC-201907 OAXBTC-202003 ALCXBTC-202105 CELRBTC-201905 STMXBTC-202102 IRISBTC-202108 DATAUSDT-202106 NXSBTC-202008 UNIUPBTC-202005 PONDBTC-202111 NANOBTC-202102 GNTBTC-202108 APPCBTC-202003 NKNUSDT-202106 STORMBTC-202002 BTCBTC-202103 LENDBTC-202104 ERNBTC-202111 PROMBTC-202003 IOSTBTC-201902 STMXBTC-202006 IRISBTC-202111 POLYBTC-202003 OOKIBTC-201907 PERPBTC-202106 ATOMBTC-202006 UNFIBTC-202007 RENBTCBTC-202007 XECUSDT-202107 YFIUPBTC-202109 WRXBTC-202201 SKYBTC-202101 SLPBTC-201912 BCHDOWNBTC-202006 CHESSBTC-202106 HIVEBTC-201904 RCNBTC-202011 CDTBTC-201904 BURGERBTC-202107 POEBTC-202004 ADAUSDT-202106 ARBTC-201903 AVABTC-201910 RNDRBTC-202004 KMDBTC-202004 ENJBTC-202112 ATABTC-202004 ETCBTC-202004 PONDBTC-202002 POABTC-201907 CHESSBTC-201910 SKYBTC-202110 ICXBTC-202010 MASKBTC-201906 MTLBTC-201910 LUNBTC-202008 TRIGBTC-202010 SALTUSDT-202108 AVAXBTC-202102 YFIIBTC-201912 ONTBTC-201906 ERDBTC-202106 EOSDOWNUSDT-202107 AUDIOBTC-201905 RNDRBTC-201907 ZILBTC-202104 VTHOBTC-201910 BTTCBTC-201905 JOEBTC-202109 DARBTC-202112 POLYBTC-201907 STRAXBTC-202002 FIOBTC-202111 DAIBTC-202112 DFBTC-202010 ZILBTC-201902 WINGSBTC-202103 MOVRBTC-202001 TRXUPBTC-202110 UMABTC-202009 XTZUPBTC-202007 SANDUSDT-202109 CFXBTC-202012 ONTBTC-202102 GHSTBTC-202012 THETABTC-201906 JASMYBTC-201905 RLCBTC-201906 ANTBTC-201901 NANOBTC-202105 ETCBTC-201903 PERPBTC-202109 SLPBTC-201909 HIGHBTC-202001 AGIXBTC-202011 BQXBTC-201903 JSTBTC-202109 NUBTC-201907 BCHUPBTC-201904 XLMBTC-202107 AXSBTC-202111 STORMBTC-202007 ETHDOWNBTC-202108 OGBTC-202108 OGNBTC-202106 WABIBTC-202106 BARBTC-202011 AGLDBTC-201910 SXPUPBTC-202009 TRXBTC-202001 MCOBTC-202107 ALCXBTC-202001 1INCHDOWNBTC-201907 DEGOBTC-202110 AGIBTC-202109 AUDIOBTC-201901 CRVBTC-202103 DREPUSDT-202108 ALICEBTC-202107 TRXUPUSDT-202103 AIONBTC-201903 DOTUPBTC-201904 ETHDOWNBTC-201902 YGGBTC-202201 USDPBTC-202106 IMXBTC-202112 COSBTC-202002 XZCBTC-202009 IOSTBTC-202007 YFIDOWNBTC-202110 BATBTC-202102 USDCUSDT-202108 DREPUSDT-202109 FISBTC-202003 JOEBTC-201912 SPELLBTC-202010 FIROBTC-202006 TWTBTC-201911 PNTBTC-202201 QKCUSDT-202107 BAKEBTC-202009 BNBBULLBTC-202108 BATBTC-201908 CLVBTC-202105 BNBDOWNBTC-202104 TUSDBTC-201901 BELBTC-201902 REEFBTC-202002 ALCXBTC-202008 XNOBTC-202008 LENDBTC-202105 LOKABTC-202008 ADABTC-202012 SNMBTC-202007 MCBTC-202201 DGDBTC-201902 LINKBTC-201902 OGNBTC-202109 OXTBTC-202101 BNBBULLUSDT-202108 FETBTC-201902 UNIUPUSDT-202108 EVXBTC-202112 DLTBTC-202107 ONEBTC-202006 ENGUSDT-202111 GRTUSDT-202107 ATMBTC-202103 OCEANBTC-202008 FUNBTC-201911 KEYBTC-202102 PERLBTC-201909 VIABTC-202106 JOEBTC-202004 AXSBTC-202105 KP3RBTC-201906 ENSBTC-202012 TRXUPBTC-201903 HIGHUSDT-202103 CTXCBTC-202001 EVXBTC-202011 SCRTUSDT-202109 FISBTC-201902 MBLBTC-202109 BTGBTC-202011 DOTBTC-202106 KEEPBTC-202102 EPSBTC-201907 VIDTBTC-202010 MDTBTC-202001 SNGLSBTC-202112 BNBUPBTC-202105 XLMDOWNUSDT-202106 DNTBTC-202201 DREPBTC-201901 FETBTC-202010 SNGLSBTC-202004 FXSBTC-201901 BZRXBTC-201911 CTXCBTC-202012 GLMBTC-202103 NKNBTC-202003 KEEPBTC-202106 REPBTC-201911 DENTBTC-202101 KNCBTC-202201 IMXBTC-202010 TRIBEBTC-201902 LAZIOBTC-201911 UNIDOWNBTC-201910 PPTUSDT-202103 LTCDOWNBTC-201909 USDSUSDT-202103 EVXBTC-201912 RNDRBTC-202001 JASMYBTC-201907 1INCHDOWNBTC-201911 CELRBTC-202101 CTXCBTC-202009 COSBTC-201901 DGDBTC-202112 FILUPBTC-202005 BNBBTC-201912 TRXBTC-202009 TRXDOWNBTC-202104 BANDBTC-202106 BULLBTC-201907 EOSDOWNBTC-202201 GTCBTC-201909 BCHDOWNBTC-202106 VIBEBTC-201911 VGXUSDT-202106 AKROBTC-202001 APPCBTC-202009 PSGBTC-202112 ETHBULLBTC-202101 JSTBTC-202001 FLOWBTC-202004 XRPBULLBTC-201910 SNGLSBTC-202012 BNTBTC-202104 UNFIUSDT-202103 AGIUSDT-202103 TROYBTC-202004 STORJBTC-201907 File: TargetCoinPrediction\\FeatGeneration\\raw\\neg_coin_gecko_statistics.txt WNXM_20211002 124511687.55942817 2585.377798915117 56.274913455655486 0.001168322040291561 4992075.485500458 103.64035159476984 33992 None 130804 STEEM_20200106 40953231.074945025 5577.3545666806185 0.12210576185762284 1.662464841402494e-05 263199.52202152205 35.83450485693897 10440 3797 188997 SYS_20201014 29897768.100352734 2616.878497875571 0.04997983221320806 4.375750378149768e-06 631183.1754553627 55.260289928518276 61165 4494 313828 GLM_20210304 368814061.7611211 7254.017888348491 0.36871698121712476 7.277070412814871e-06 8602990.547918888 169.7903030430835 151190 20687 158485 TCT_20200927 6141415.933147908 572.0871977789013 0.010631625237706877 9.898089021962005e-07 484487.31108920363 45.10597794741562 None None 472405 BEAM_20210221 59191922.03724471 1055.5702751039785 0.7352273564532372 1.3074122704146476e-05 28308690.827631906 503.397070614504 16838 1795 251636 WRX_20201231 15649831.624279361 541.7558450035963 0.06563404067103923 2.2752016686992146e-06 1209023.0078321479 41.91073925651531 46113 None 5759 FUEL_20190201 3945319.3939839248 1149.810104993068 0.007436391254818778 2.167235895403289e-06 913954.0257642751 266.35956924686445 1 1519 None ETC_20191012 531071912.7505949 64050.3607234735 4.6412930329789335 0.0005613769802545246 631844388.4959952 76423.29244981727 229694 24987 362235 SYS_20200324 9626360.036359204 1496.041016204123 0.01659143175535325 2.5729019199264756e-06 221631.17104263604 34.369262032323654 58663 4509 831215 BLZ_20200105 3734972.217503762 508.1929878110669 0.01750263644806949 2.380313911358719e-06 376286.3888935189 51.17398906134349 36198 None 709947 FTM_20201229 44657092.791750155 1645.6505184297698 0.01753153354997332 6.454922570710138e-07 6649267.8737192275 244.81890962033592 28290 2830 128838 QLC_20200320 1928829.537968473 311.8974271019326 0.008090643466731131 1.3089913761965387e-06 97377.6687196527 15.754807279828047 24520 5667 940522 CHR_20210508 158506932.14255393 2766.0874189125198 0.3523657693698176 6.147630989700017e-06 90825622.70987777 1584.6102583364998 57434 None 102679 XTZ_20211021 6096121529.729907 91968.5468648852 7.050205644541212 0.00010637717566558524 267337366.82488254 4033.725463699741 203576 61373 44126 DYDX_20211125 924967901.3852178 16178.539798773092 14.94091559922137 0.0002612096274426598 423928050.1051212 7411.466003878821 None 2356 13000 ARK_20201229 60064790.01788762 2215.0625953292943 0.38564412865878656 1.4204271023226243e-05 2670862.0453949184 98.37475936786426 62966 21629 103800 AST_20210105 11686464.87279186 373.53304716049155 0.06787726982796005 2.169552872297791e-06 1524469.460517904 48.7264308829712 34579 3466 211626 FUEL_20190509 4000480.365764681 671.5764858397762 0.007540525165829873 1.2658757491366387e-06 3550396.0918645477 596.0274932689256 1 1515 None POA_20210204 9263114.316150635 247.2509632231894 0.0326331628597659 8.699968115283453e-07 2079501.9840156732 55.43931194885969 18253 None 427710 LOOM_20190507 43977764.6402378 7687.557346610166 0.06353499341592131 1.1106670795119676e-05 3197329.906791259 558.9312092259111 19359 None 495542 AMB_20190421 7870762.609726533 1482.2640084274194 0.054448179519445486 1.0251409404682679e-05 1317281.1556953357 248.01542581021744 20642 5696 593270 SXP_20201228 52049013.1411727 1966.8184397390498 0.6716917210625336 2.5541250650089712e-05 29928156.8659506 1138.0258711529998 None None 107070 CTSI_20201129 8600220.026151123 485.9045862031323 0.04329273367790065 2.4456432114244e-06 1420579.496416926 80.24973954172394 17445 156 456815 CTK_20201124 28448785.865596905 1553.8397656814652 1.1940968647500088 6.506469161387576e-05 6117644.707988798 333.3420244863323 None None 292384 LEND_20191017 7471436.254323613 933.126332568471 0.006533267794215196 8.160302363245067e-07 3557251.7768413667 444.31440736164274 41490 5802 671068 VIB_20200721 3136053.4484497593 342.29713038398285 0.017177947382323 1.8748412211732176e-06 760494.6373557821 83.00215752570223 30740 1100 None ENG_20190227 24419729.942813765 6411.405392206859 0.317367757111777 8.33002402522485e-05 667540.2063669417 175.21080299539454 61078 3207 251266 XMR_20190601 1601157732.513235 186767.6543249079 94.11112842561033 0.010971328124477124 378675732.3329295 44145.42447533401 317786 158039 113684 UST_20220105 10329098171.523268 223283.52015591346 1.0009078006632974 2.177285278384194e-05 223862226.34726933 4869.698582518929 285275 None 4371 SKY_20200207 11928204.47079502 1224.739554630916 0.7021552739752694 7.210807527729063e-05 2057878.8636583546 211.33457158572642 16317 3824 315268 SNT_20200407 66050351.68923496 9064.564485327039 0.017288478462162964 2.372622156666051e-06 49997823.04826495 6861.560605752734 None 5640 188189 NCASH_20190523 6008768.133640577 783.7103144844172 0.00206995949928035 2.701002675222255e-07 689136.1016703916 89.92245765441741 60629 59279 878224 WAVES_20210710 1505906225.184679 44308.82675504974 15.062266006471438 0.000443203797201471 107969558.65112247 3176.980034463923 194132 59121 98898 POLS_20220105 252802374.28955662 5464.814362086814 2.8681581665599487 6.234785296290433e-05 17664382.018623613 383.98729387321487 618148 None 6619 ANKR_20210702 526865761.42640626 15680.20468473461 0.07553383008355755 2.2456672564495506e-06 26659682.51349928 792.6087690995881 114842 None 5363 PIVX_20210704 37753802.961305596 1089.71424925286 0.5780592495924224 1.6642295944068904e-05 458554.1883478121 13.201751402226227 67671 9836 316227 BTG_20190908 186779754.76692745 17839.764117718078 10.662120375048383 0.0010184661318603915 13464131.404920906 1286.11958489238 75019 None 255203 EVX_20190513 12791125.021459583 1840.029476357148 0.6638497965254236 9.540077532672803e-05 2370302.877692656 340.63237418254425 17213 2390 712033 FET_20190616 0 0 0.21023380346874546 2.3843007410332993e-05 53935580.04209218 6116.934638512565 9591 269 385628 IOST_20190603 174827464.10258046 19999.025146910593 0.012908041340406774 1.4761369780678457e-06 40749157.7530747 4659.989614081764 199852 49779 109542 ADX_20210603 118823667.50726885 3158.974634505904 0.9809204599086118 2.6078162005305987e-05 5762759.6009303 153.20526445609462 58508 3834 11246 UTK_20210909 183016758.93882942 3948.8297694652742 0.40478133362232505 8.743157888809355e-06 21020740.702673 454.0418236644072 79211 4083 190761 APPC_20190515 7455285.018839156 932.8246255231361 0.06934822785985577 8.67581941884483e-06 347956.17735157965 43.53110459397006 25625 3386 1192201 QLC_20200322 2053779.7063396329 333.3169711050434 0.00855780355001838 1.389615136454179e-06 138020.85713014024 22.411810588245 24514 5666 940522 COCOS_20200316 5986003.048987481 1107.9892624417282 0.0002451866391755099 4.562796227261317e-08 456311.5373621222 84.91721115526698 14611 213 67575 WBTC_20210519 7655176129.672379 179410.13225878272 43016.99652132369 1.0040248528444813 417787576.0662107 9751.241218623836 None None 221187 VIB_20211221 7388001.68053645 156.59619783892964 0.040137656388522056 8.515869978005738e-07 833119.5383904303 17.67601375724046 33303 1324 3416907 SUN_20210710 0.0 0.0 0.00033137560635496615 9.9e-09 0.4970634095324492 1.485e-05 66 None 2023134 DASH_20190708 1405183952.2936969 123009.76186599924 157.86216958389912 0.01381063012467936 371924374.9523147 32537.94110620705 320441 28362 107234 WPR_20190826 3671861.4431389123 363.01654864384136 0.006037045840034852 5.968491945547528e-07 291352.21644555463 28.804375571259104 34548 None 1022788 OXT_20210110 0.0 0.0 0.3100651990398333 7.697110859970752e-06 25374287.57303648 629.8955995295337 None 1835 172682 TNT_20190512 7298091.8190243095 1001.9746053960196 0.0170371775966277 2.339198527696027e-06 1418417.8956035585 194.7482811771764 17277 2503 1010954 SCRT_20210708 78390198.7573792 2306.9109811689787 1.1241236168668352 3.3085271614067825e-05 2755105.3413547063 81.08842050499116 85320 None 51837 WAVES_20201226 670600397.2820636 27169.20857201375 6.704920310909392 0.0002715438934894516 121491074.33237123 4920.291042796001 149098 57197 196756 LRC_20201015 213833101.75426653 18733.236993584153 0.17999121677812083 1.575613263028076e-05 82753177.01531269 7244.075883089772 42087 7164 153137 POWR_20191108 20826899.936137117 2259.2010605545897 0.0484729165481526 5.257519619960405e-06 1667163.5489794342 180.82561753293658 83367 12941 276526 TNT_20200107 19234001.68441622 2478.946991104181 0.044535415742794175 5.741601201354954e-06 1084516.8587271655 139.81823667976198 17736 2566 553344 PIVX_20190603 44802633.660832986 5122.751538106219 0.7448731223410571 8.517681646825249e-05 5744704.736785655 656.9114206881641 63044 8611 306282 TCT_20200807 4792582.538884757 407.3652411803666 0.008275389878386856 7.026655793294732e-07 1417781.4736552031 120.38420608440563 None None 695906 MBL_20200607 6735932.09441848 696.1214567608546 0.0019066700790674421 1.9718358381767658e-07 5958494.031282456 616.2142156335537 None None 90223 NULS_20210125 34546084.60221353 1072.937651893618 0.34985898475876825 1.0839990803810988e-05 46512716.948459096 1441.1447067143636 38256 5100 890471 NULS_20190104 15998868.702137318 4243.16679407836 0.4000630934475 0.00010607916985230186 318649.7862200696 84.4919347709695 19634 None 368769 AAVE_20210128 3526891987.711221 116457.29336304593 287.5833397992802 0.009459691375014938 1175549928.5648599 38668.23275613223 101428 2660 22200 CVC_20211225 242571260.57367718 4770.699287763935 0.36360294411248734 7.150394531688063e-06 20728931.579753976 407.64257114968296 114028 10245 204035 NXS_20200410 9903250.552732294 1357.5329625576928 0.1658616845475369 2.273624228728669e-05 48039.00182529817 6.585163943794074 23665 3530 537983 MANA_20200329 32314590.792828012 5181.540048088203 0.024350577220591623 3.895787599286777e-06 20063828.935844176 3209.961523884314 47972 6805 47233 REN_20200314 36361534.887370266 6614.430717885642 0.04200579642964538 7.550844746185198e-06 5818580.246586249 1045.9317479857546 11320 873 409604 LRC_20200329 30844101.141877897 4934.543627428231 0.027061761932651317 4.3284502782936684e-06 2596051.8360435297 415.23095651172537 34187 6816 553678 REQ_20190213 14729532.18708752 4053.7197447581084 0.020193219595203572 5.557203283921226e-06 237257.55428725042 65.29362262436857 41715 30984 476226 AST_20190524 11871065.663458357 1509.0831035772364 0.07125229535056771 9.057791276112909e-06 35690680.87046907 4537.099278507509 31739 3597 410300 REP_20190804 122345942.65355055 11338.847460340741 11.123876226845445 0.0010307585903774712 11058414.391493939 1024.6927777277763 126105 10048 203996 RARE_20220105 147503249.8389888 3186.25230109676 1.0289142754883878 2.2362400901994904e-05 15321214.5680478 332.9909504011312 None 3211 9003 TOMO_20210105 72466357.4769889 2316.233319455016 0.9429858760293298 3.014054220302405e-05 25927145.175627306 828.7061696623125 35330 1707 198557 BEAM_20210828 67321716.53040655 1372.474571979039 0.7060332436537504 1.4395599856927013e-05 8149260.2566002915 166.1585921604401 22558 2657 247381 VIA_20190819 5912970.790916084 573.4832000698858 0.2586509101156788 2.5063236354724028e-05 164497.97534867033 15.939830384487685 40840 2221 1896727 PNT_20210212 67944366.25061816 1425.4816565785648 1.9679503754450727 4.1216607156662904e-05 98299768.9393943 2058.7830925611834 8674 163 785804 OGN_20210131 38071725.00768312 1112.917276025388 0.18335256148798515 5.36676209561321e-06 12836668.279547874 375.7315643564233 None 2571 192490 ICX_20190321 159134397.77141717 39375.62011970179 0.33614733787736634 8.317503987742867e-05 13820730.448858434 3419.7498438567713 112336 23558 270821 MTL_20200807 21773762.986291323 1850.6735530607034 0.3371185955773965 2.8632594136564718e-05 3071521.389985217 260.87444150209467 39689 None 438797 AMB_20200330 1059343.2017821225 179.1483266122832 0.00737961743073611 1.2502136294376567e-06 70839.48669886541 12.001230769012224 19026 5488 780586 REN_20200315 35046074.846773796 6780.169044797746 0.039899065634019674 7.700884958752997e-06 2894600.9722341066 558.6844888333217 11329 873 409604 VIBE_20190930 3635974.713574535 451.0770469745075 0.01934871089903372 2.400952146546951e-06 786637.991913654 97.61271358573 20222 None 1366400 ETH_20200607 26923196533.750423 2783680.9971038895 242.02164036721499 0.02502344178684638 7581565794.828065 783883.9123318554 459880 464538 19155 CTXC_20210204 1317261.1911592137 35.14938044775373 0.1307301499324397 3.485252535912511e-06 10665017.782321448 284.32829221566067 17278 20095 607104 ATOM_20211225 7661696798.306933 150735.3934153525 26.976263671401615 0.0005304988074620514 457902418.0412037 9004.83067869669 278363 49449 30956 TWT_20210220 302479389.805871 5414.5935828957 0.8764178657501391 1.566501664380962e-05 79996097.33410257 1429.8432804150448 None 11452 9818 SAND_20210207 84541734.50964834 2155.020388527472 0.12875130739599383 3.2729055472822686e-06 70460550.7089293 1791.1330917249688 68320 None 48574 ALGO_20210819 3058244650.344873 67884.8761286418 0.9369338269852893 2.0800209603932288e-05 170725254.29454637 3790.151419164164 None 37297 238182 MIR_20210506 659976041.2082002 11528.431866576884 10.702039153131071 0.00018668138760319112 89244650.98545083 1556.7421351894595 39591 None 16442 BOND_20211221 78976261.95305248 1673.982069327484 15.201806500284812 0.000322553059262855 9183273.786589032 194.85138518617367 None None 188518 ENJ_20200807 177915047.2203801 15121.992132898953 0.1929602423123414 1.639952211290705e-05 10427718.248783149 886.2426474945722 63824 15747 104408 RUNE_20210708 1927323325.5236757 56577.057676954144 7.0792833773665915 0.00020835293283577867 108341487.1547341 3188.637238148768 2559 5851 58738 STORM_20191102 8645040.077053845 935.8913063252669 0.0013646590120835727 1.4773471194163536e-07 1004276.0332935142 108.72051492334224 26143 2544 2077933 REN_20210610 434744535.88937724 11582.092541481485 0.49212558923321664 1.313958870121602e-05 53813506.46780933 1436.8026313343287 82962 1171 81558 NKN_20210729 143219385.45794556 3581.6455139867476 0.22048657172543193 5.510961555394404e-06 9647095.028637052 241.1247515348029 28769 3298 146372 POA_20190531 8176869.14984944 983.7824132281811 0.03710474640273156 4.469425413743628e-06 1294984.2636996743 155.98639364777648 17511 None 609541 1INCH_20211120 706980767.5412223 12156.157399514783 3.919757838810689 6.719850012553463e-05 118391200.58538577 2029.6435225225853 412888 None 3702 CKB_20210430 607251906.8128792 11328.512359868097 0.024450211988474246 4.5620938833270436e-07 30379049.685130376 566.8338451018482 41782 3404 121056 QLC_20210108 4050260.449430926 103.59877364606109 0.01717749757251594 4.3528753642015575e-07 1173781.1395821609 29.744280177495433 27333 5595 940522 AUCTION_20210401 92818927.78172529 1578.0942721205088 40.15787431119345 0.000683195124390085 12767760.614072887 217.21448036115234 None None 32825 ETH_20210703 250754468066.2188 7418801.287459255 2157.880584866453 0.06370457460764484 22869223901.008 675141.2429575485 1409106 1030204 3687 DOCK_20211111 70448412.58601576 1560.1781752227776 0.08588062507151609 1.3223806159049407e-06 9089266.173513427 139.95554166781574 55304 15223 199061 LOOM_20200306 21131871.576607604 2333.431004594494 0.02534470279985577 2.797802525799523e-06 15377173.963196034 1697.486709299008 21551 None 487535 NAV_20200914 8758340.837237569 848.4783323444933 0.12556163546795376 1.216037977660719e-05 275623.7118767871 26.69357562418274 48587 13767 892932 BNB_20200701 2283276873.7562456 249587.05930912742 15.429636809481364 0.001687005697785319 152275345.61008513 16649.087651796588 1170209 65353 1041 HARD_20210421 100814226.17611387 1784.4640590230106 1.6407400056383539 2.909942641833881e-05 16171363.125886936 286.80801939908775 29199 None None TRX_20211111 7614435238.2881775 117469.63068337843 0.10671854395264302 1.6438545330408371e-06 2898294866.551449 44644.304335559595 1237424 119776 28507 CTSI_20210201 14651572.39797763 443.23874134305254 0.07039995055519206 2.1235524334641576e-06 6473138.817360762 195.25652474686234 None 198 421222 KNC_20200317 70345261.81581435 13936.759407152334 0.3950023263042809 7.843948667671779e-05 48304080.87468991 9592.215174152188 104099 7205 120611 MANA_20190922 44640592.57716194 4469.58091301455 0.033656686074665536 3.3702418025189565e-06 8452831.885344356 846.4317403814919 45785 6387 114138 FUN_20210314 198646145.09515673 3234.358863687395 0.032999652897281975 5.378554342378004e-07 8726361.029530032 142.22939603223148 35956 16933 200934 RDN_20200629 12548954.759087391 1376.0062812581298 0.1877668270440195 2.058801300045423e-05 1389043.4170119397 152.30402716946818 25444 4318 1567773 COCOS_20191102 15060714.494703595 1628.1288709356388 0.000958352443231979 1.0360207557924374e-07 5105262.714490092 551.901147989736 None 151 53406 AUDIO_20210325 320546915.6523149 6066.120604377698 2.047636111896381 3.886527791298222e-05 118191295.21325773 2243.336845189923 None 3600 60815 BURGER_20210727 0.0 0.0 4.005450362488016 0.00010734532543616257 19147987.65002146 513.162511009728 None None 44547 OCEAN_20211111 384176659.94177616 5915.671908200225 0.8891212266312123 1.368799060537931e-05 51667056.14037976 795.4125465395755 130954 3840 158476 VIB_20201226 3020506.176230915 122.37505767619746 0.01653939682275308 6.704649569156158e-07 716695.9576977476 29.053025908319132 30386 1094 3150523 KEY_20200407 2183556.4154474675 300.2142615988819 0.0008046894626913341 1.1056410648630843e-07 949394.226410634 130.44650043667357 23374 2748 226427 RSR_20210310 979636641.8299569 17923.12986763923 0.07364236007215316 1.3449828959575571e-06 347320489.6324466 6343.361585825754 61762 None 104993 TRX_20201106 1788274392.3737195 115085.29439699078 0.025020506827350044 1.6058729102828956e-06 758550823.9655175 48685.51335448741 541535 75805 29248 MATIC_20190507 8147697.346860495 1424.2631168455453 0.0037703573823272924 6.593462530264607e-07 4031985.293164879 705.0987812898223 8563 71 593763 XMR_20210420 6321028991.742264 112912.6675502068 354.17568857803315 0.006328936235471784 1154619855.0090277 20632.4591840295 391029 211672 39530 HBAR_20210702 1920066237.9982834 57143.6480111203 0.21492772581627712 6.390426819235709e-06 185757295.61262092 5523.105030973572 115695 22720 40505 KNC_20210825 191387169.3557489 3982.688088520058 2.0690771585757624 4.308498342488684e-05 77715304.00134714 1618.2879265183662 178821 11345 108939 NEBL_20210703 17611219.647802718 521.0714735998545 0.9790738125564905 2.89142087285666e-05 1092633.7879922064 32.26788522450468 40316 6108 1020612 WABI_20200314 3761852.1159797017 681.0910256199772 0.06402498215148056 1.1535860072213155e-05 613600.717349014 110.55703223470799 36808 7766 3668499 CHZ_20200725 64138163.60048845 6726.7005200430285 0.012002873600986967 1.2586402444373978e-06 3923227.4890054963 411.3958181930169 27064 None 256662 REP_20200324 93035600.06103687 14352.222062916244 8.457781823730624 0.001304747460265113 30059117.154394638 4637.097241615607 130623 10108 262137 KAVA_20200223 16307504.511404496 1689.3468129608075 0.886670021462698 9.184269015982605e-05 1055311.4540447437 109.31083779742339 14197 None 362040 VIA_20191012 4596746.224356986 556.0630829429131 0.1985112213708004 2.401367323027529e-05 195910.708101065 23.699092142822437 40483 2207 3844028 REN_20190421 20727256.211654335 3903.3789805697834 0.026889156952183812 5.063909501974272e-06 917691.5501011484 172.82456897784175 6209 790 1322561 AE_20200407 38842406.8748841 5340.3907571021045 0.11035711876112032 1.516760061444664e-05 11327934.194369458 1556.9234098875547 25308 6342 695802 KAVA_20200711 39987497.14907912 4306.531506731537 1.4749335146242832 0.00015886587251581126 13123255.075209187 1413.51277674488 25779 None 340069 ELF_20200718 43609603.73269239 4763.295072681362 0.09459460039840656 1.0334253894937323e-05 10993758.985587442 1201.0442048309874 81329 33362 495562 AST_20200725 12071051.852084078 1265.1783317050533 0.06998353953754148 7.337611695470591e-06 4693314.553814049 492.0831382373104 32373 3459 221691 ZIL_20210318 2304888403.3810525 39183.52000096092 0.19923186957186617 3.3801182474746026e-06 1243170148.340298 21091.314919398465 None 23731 33725 UNFI_20210310 92899444.43771924 1699.010288283018 37.858583473453955 0.0006921076948842504 80165945.9196899 1465.5452726485785 16489 None 99267 CVC_20200621 20101747.892530933 2148.455745115622 0.030057177404151557 3.21249460352754e-06 10016100.770866184 1070.5153462065052 85369 8000 100053 SXP_20210813 601658596.1068277 13534.129947880388 3.21414733795961 7.229636044914873e-05 152589973.09691453 3432.2321088564445 None None 79966 EZ_20210806 0.0 0.0 2.7787588757166635 6.791391690460451e-05 6344806.922829331 155.06947864328745 35526 None 164218 AVA_20210506 279119347.46315855 4875.644233903791 5.322249553552407 9.286530245086158e-05 15649435.291715315 273.05926317947876 71861 10005 44048 PLA_20211225 513786830.76566696 10104.752153241032 1.6949616039540254 3.3339054422937186e-05 175342928.51754764 3448.908472549841 19563 None 86021 INJ_20210703 192939471.05238065 5705.193916839759 6.670513298804276 0.00019692573124534737 14083973.530335564 415.784612377373 75931 3713 124543 CHR_20210430 171394863.85899502 3198.29545935528 0.37577117485506123 7.0103952848019345e-06 263709417.7421683 4919.768684787026 56107 None 107103 HBAR_20200412 127636613.19711196 18548.878377479436 0.032879997445564295 4.7778149207891325e-06 6781600.089965853 985.4389481114418 None 6398 106388 ENG_20200629 19276164.328631856 2114.220216190214 0.23375059684762936 2.561795960027021e-05 819131.752936529 89.77296501923065 274 3570 566856 OXT_20210422 0.0 0.0 0.6411656558817654 1.1842541207292182e-05 37016881.11818306 683.7140074270563 63117 3636 93493 AION_20191024 25742456.354881156 3448.6292663191293 0.07270952003623976 9.738980695261597e-06 1024235.7646199736 137.18990764976436 75817 72558 187992 FIRO_20210207 55365149.44745861 1411.9001074899077 4.811009975296932 0.00012234443055205254 9508746.8478724 241.8083155803003 68583 220 276546 MDA_20200626 9111147.010965904 983.828153046123 0.4636606077662325 5.010839604354979e-05 323757.7980662025 34.98892011949431 None 375 1694044 GTO_20190702 20449335.49950025 1926.449430995315 0.030852358118682425 2.9093693243385724e-06 15747752.384892255 1485.008942902862 17477 None 1222950 PHA_20210523 127243612.0559436 3385.452071295615 0.709343518415157 1.888821296270028e-05 37525911.33112416 999.2301140994473 48075 None 148583 DODO_20210727 139616295.95921382 3729.22796256609 1.0144533212629874 2.7187160507746067e-05 61451396.6076095 1646.886010404348 None 1039 27217 SUSHI_20210624 1338053793.3481565 39676.736764553476 7.054258301290857 0.00020939456310612226 304790847.62788665 9047.23695276473 108100 None 6774 ADA_20200310 1295651579.797846 163649.4223244031 0.04161723666032623 5.258418691293164e-06 166720941.06616473 21065.514750239414 155745 77071 41962 PPT_20210220 75481089.36482999 1349.4708378296582 2.083564712689041 3.725051986087117e-05 7389737.017063292 132.11566880755367 23746 None 693522 BQX_20190421 19431791.12451778 3659.2287763173313 0.1652186232883353 3.111009819074092e-05 1328814.251657088 250.2111506773859 61261 5809 418149 BZRX_20201130 35685942.74867652 1966.9501235187297 0.2542148980318292 1.3991113231451148e-05 13211903.3390501 727.1376974786633 None None 85173 VIDT_20220115 33218457.31982976 770.8207819155143 0.719036595526102 1.6671185119009372e-05 2822533.063835339 65.44169170874346 39194 1890 257097 REP_20210711 97257258.48808867 2884.2803843788306 14.978879610865437 0.0004444040604822723 13216808.799074283 392.1256896053707 151544 11231 153452 ADA_20200801 4329088644.234307 381968.0746410909 0.13914532295246507 1.2280087767585979e-05 291750874.0171488 25748.090292797267 161296 85085 30582 BNT_20190312 38000411.65615314 9828.094453090062 0.5864326352916195 0.00015167943863625177 4086314.8717075163 1056.915847671653 847 5123 160054 WBTC_20210724 6510671599.067282 194745.78528968332 33471.08444171674 1.0009651521051595 198546989.79992273 5937.621118645412 None None 177929 TRX_20200721 1137189741.0033946 124123.13484006062 0.017198084737448896 1.877041326171544e-06 351985299.6293183 38416.54252176388 514283 73688 53101 AERGO_20210218 26045558.667650886 499.60534408986973 0.09816532241192917 1.8822618046158689e-06 31242675.794907633 599.0597685400674 12377 None 567735 YFII_20220105 118128663.7484497 2553.6459722190707 2942.5476845508324 0.06395326856936509 17764167.3591008 386.0860342187249 None None 1111130 BAT_20200217 379200052.5555888 38039.339069913054 0.264195532103269 2.6556488338555216e-05 93513016.26605631 9399.770337531461 None 34625 21502 FUN_20190821 13736623.889103523 1278.0551926000112 0.002286319225531092 2.1271909180312763e-07 111392.29537658431 10.36393677740629 35964 17434 345008 POLS_20210825 142656573.5595559 2970.5423241378126 1.939768630252489 4.0436514860052965e-05 32570599.516348742 678.968362929056 384645 None 25468 AAVE_20210120 2312276665.2308903 63854.963238381206 187.08760347700172 0.0051908383452321715 528471458.47059065 14662.702712567108 96538 2251 22200 STORJ_20210819 173125226.34699157 3840.8094879287623 1.2004892634844941 2.6659841652475392e-05 44357282.08748104 985.0634675015582 104220 13738 71027 LTO_20211216 94986347.1953059 1946.984430642497 0.32329948268261904 6.615588554083294e-06 18939736.501677167 387.55862823589104 None 6056 179975 QLC_20210421 21454641.746446796 379.69131116519907 0.08843054799523115 1.5683644061079844e-06 2429199.173429757 43.083183417110845 32695 5637 940522 LSK_20190605 255994635.42431852 33429.04964229473 1.9381592775520935 0.00025280520001288623 5031175.268792142 656.244966478354 183165 30429 180914 ARDR_20210108 92361694.47484964 2357.873400847097 0.09204693146780002 2.3325214784347137e-06 23727161.81147644 601.2597450565231 64361 6288 None ARPA_20210813 50596962.40878884 1138.0598418793038 0.051513082862081096 1.158692497528152e-06 20165156.564297706 453.5782819500307 None None 741710 DCR_20201228 490165294.41963303 18462.19206980896 39.17998273462806 0.001489828932100472 11746380.407574654 446.6591396222315 41253 10043 350762 HC_20191108 85324819.1410032 9255.149539531583 1.920662845819123 0.00020833354271402061 41710826.20797428 4524.356897074299 12825 848 511707 QLC_20200316 1789279.617519704 331.18816803768505 0.007454993805849848 1.3799436222282705e-06 60094.10173489181 11.1236138596828 24547 5670 940522 AMB_20200913 3749147.3622225383 359.39668806007677 0.025876277395982816 2.4781092601346572e-06 967360.778549071 92.64183045068467 20295 5503 374093 ALGO_20190716 98632960.45747326 9020.422340019553 0.8063751162949739 7.382553201783913e-05 120083360.31651469 10993.913109061825 10312 510 261967 DASH_20190923 822094649.9032748 81806.28404356148 90.9103181804447 0.009050413031684086 220815909.74953878 21982.930289977638 318794 30818 76311 QSP_20200526 7681355.178226753 864.3594251651854 0.01086167372133413 1.2210033587730753e-06 529920.254983345 59.5704150038742 54566 8253 544618 FIS_20211007 40716843.32923302 733.4493947721894 1.5100868400084273 2.7218299947367893e-05 8384468.844111714 151.12441341262203 27540 None 277306 ZIL_20210825 1345163336.8068476 27992.29445029463 0.1080791515740389 2.253023453687194e-06 200776204.74580115 4185.3909070030995 315030 35870 59302 RVN_20190627 226413442.44122574 17419.172386576065 0.06040555235707501 4.632074282168013e-06 68295149.48907444 5237.071646578682 25828 6707 184956 STPT_20210725 46797202.47803417 1369.7857853287867 0.04200102599015932 1.2275864558560725e-06 4606644.584449812 134.64086568119245 None None 433078 BNB_20190520 4217095485.716915 515503.35811059637 29.214251300313293 0.003575349222069521 494012446.8039641 60459.08892945931 969316 51306 924 GTO_20200314 4002349.542903285 728.0568282470996 0.0060756369261016985 1.0971684236531318e-06 7192662.563020035 1298.8864117660562 16910 None 1191106 GXS_20210813 44238005.80376064 995.0300471266708 0.6319855586423848 1.4215358209207471e-05 12433990.246035732 279.679848534652 None 27013 491456 MDA_20190915 12350222.790784463 1192.8318012302257 0.629186064477237 6.076919901067374e-05 1423506.6987884052 137.48772701056768 None 366 3117488 LTC_20210909 12015537429.12473 259251.1864561568 179.3006525594279 0.0038816921285208432 4555784101.837267 98628.48257889543 191850 342247 106402 BLZ_20210814 69629848.6857417 1459.755003144712 0.23419301436354953 4.908618672509482e-06 17730876.181554552 371.6340990838646 65642 None 416953 REP_20191012 89507323.69103323 10826.184171337589 8.137029426457566 0.00098419856103069 7356099.619486408 889.7427157823103 125564 10051 198909 EOS_20210828 4902768917.577163 99958.79863579365 5.072974147259771 0.00010341496118335277 1679073797.755052 34228.70816572521 None 92550 70056 FLM_20210107 0.0 0.0 0.14979261797188703 4.055668180108504e-06 10501236.071460007 284.3232835066755 12306 None 65365 DLT_20201111 3277613.270058502 214.2849769441451 0.039762680166126954 2.6030960251754197e-06 401086.5502209769 26.25745549016 None 2542 None STEEM_20190318 144384628.5335902 36257.15458185472 0.47467509290817 0.00011920394396425896 3620563.579940985 909.2228864551271 4624 3692 256324 CELO_20210401 439879169.01491565 7478.763369040335 4.637017873761842 7.885001336027956e-05 52840920.55675665 898.531643676758 20338 None 83063 ENG_20200907 48185256.8186086 4692.228039595531 0.5825250645630129 5.672565888772396e-05 2644115.5342802624 257.4811024995638 998 3592 461818 TRX_20201111 1783715409.8667557 116616.39966261543 0.02485461472946424 1.6271808685489128e-06 663760733.7461019 43455.05971433447 541958 75856 29248 BNB_20200319 1563418016.331947 290503.2588497135 10.373602762410638 0.00192540214580107 272872630.2164863 50646.777188440705 1125262 60297 1672 GRS_20210314 58319530.16437703 949.559273968696 0.7676171879543656 1.2512977126385599e-05 21454510.22806257 349.7313504104504 38183 106777 5238877 DUSK_20210729 39077700.06337057 977.4173710088677 0.10857385297334181 2.7128997764716935e-06 2136165.942855587 53.375688070149515 28130 13634 415059 IOST_20200430 46344751.27054778 5308.363098392097 0.0038675801110116116 4.411345119939436e-07 96227015.21570472 10975.611669155738 193704 52214 215999 BLZ_20210618 54805651.03139736 1442.4964699404063 0.18842734586026383 4.938517424702243e-06 16610006.417884989 435.3338722924696 62631 None 221752 OCEAN_20211202 539983894.482254 9445.562398926284 1.2437964093661835 2.1750704002975467e-05 268156364.73637593 4689.34439107042 136031 4089 94055 GAS_20211120 114161624.92503804 1964.1106082438714 8.198045182521074 0.00014094570347620292 6657753.48851754 114.46408602516097 427312 115073 87407 BTG_20210511 1959424152.8897367 35094.076223434706 111.76070778465677 0.001998875717429832 42608646.42795888 762.0691599547382 96355 None 155846 CHR_20200801 23023810.889465213 2031.1979255970455 0.060316768126806586 5.325436071087444e-06 22973836.88678208 2028.3861925581925 24566 None 325862 ENG_20190726 37014386.499766424 3743.1189085653755 0.4741628153390722 4.7971294547845294e-05 383774.3884269189 38.82665116618619 61805 3476 316821 RDN_20190509 13603186.589371 2283.6208181629972 0.26895527880839243 4.5155982302143114e-05 414799.1584850214 69.64229719706478 25695 4451 1314746 GRS_20190520 29184284.047643308 3566.2853336220032 0.40323871975828657 4.9289863795014664e-05 2277208.969735268 278.35451917494197 38766 107041 6849352 DOCK_20190608 7000058.986499523 871.0813340755238 0.013574175422120666 1.6907846672827143e-06 2128523.7021085685 265.1266193015474 170 15265 238088 AVA_20211002 163215087.86334273 3389.0205239444945 3.0825864086377295 6.39975468434872e-05 8989071.825476203 186.62203389283547 122245 10779 58653 HOT_20200316 55516443.17218909 10275.909053228172 0.00030895909808181663 5.749568621872034e-08 4014468.318782846 747.0717393491659 25129 6920 515134 BCD_20210418 593292643.7279879 9841.847406646451 3.1536141415314063 5.233394957167095e-05 18728369.14981662 310.79564038553764 29976 None 1334994 VITE_20210420 106675013.87391877 1905.5379105514169 0.17620162544845017 3.1507319564129544e-06 26055574.05838632 465.9101731865677 31001 2151 143258 POWR_20210722 72253222.02779338 2245.276935692217 0.1681391625607354 5.212723908748664e-06 5771107.485189654 178.9184001504694 91497 14009 159703 AERGO_20210421 86116171.79341872 1524.3008779093968 0.3271804371615545 5.802725004561822e-06 6486986.455638347 115.05027267812964 19995 None 413577 ONT_20191108 611052870.3680372 66280.66427507342 0.8915942165464142 9.6710873644889e-05 125593561.91067465 13623.084213806691 None 16291 359928 LUN_20190729 3848625.781834863 403.71717235797587 1.423647415225691 0.0001493392554876146 368920.9629686629 38.69945701041422 31110 2208 1689451 BQX_20210107 45724374.66234603 1244.6682603703957 0.20526641645496155 5.561362463552182e-06 2371092.2949603726 64.24092121130651 18856 120 152603 SC_20190316 111476544.9169012 28405.904704074277 0.002795381713954231 7.122961730669986e-07 7305685.912492641 1861.5747864133004 109480 31095 227818 DASH_20201129 1084586062.991411 61268.524462118614 109.33498208197092 0.0061721302629598575 596956808.9948702 33699.14291214531 321943 35612 75926 COTI_20210325 281459041.57338166 5324.942656762135 0.41808235064754684 7.935436698946074e-06 200303785.4021313 3801.87780506878 63853 3088 107112 ETH_20200701 25169333234.47631 2753617.1636932236 225.59281496891896 0.024680679520480347 5282884955.518924 577966.9469911683 462502 467976 16696 ONE_20200315 8930480.578408405 1728.5003108069716 0.0017559802616011122 3.3892026716789075e-07 13719993.349115001 2648.0843282280753 None None 408073 SYS_20210825 142469652.05287015 2966.686173014723 0.2305877659127547 4.8015947743443915e-06 3341693.6768613425 69.58503992075661 74759 5522 438149 RDN_20210207 19436803.8448383 495.678530285494 0.2832365002154622 7.19997591866664e-06 1362548.2278862323 34.63647665939922 26959 4382 1282732 NANO_20210110 479661294.70607626 11853.53777946997 3.552847820822896 8.790912392532114e-05 107443202.5126066 2658.4977125269725 None 55203 338450 TFUEL_20190908 0.0 0.0 0.004588436812433255 4.382768925188849e-07 338295.49306845386 32.31320458711072 70104 4024 310301 CDT_20210117 4866958.839377239 134.1141067932923 0.007214208258891177 1.9882972868656209e-07 433482.03890976036 11.947134473239156 19268 294 808485 QSP_20190414 0.0 0.0 0.02742708077584759 5.408284696864502e-06 209394.818048714 41.290095701794186 57178 8530 846011 NKN_20200109 11225260.45701513 1394.948464980234 0.017198958284385783 2.1433633181388895e-06 1567202.1394653225 195.30738561580978 12127 1003 256364 DLT_20190227 7707363.28482275 2023.3494286220869 0.09529434575216492 2.5016825197307756e-05 861409.3929607183 226.138581853139 14518 2693 922398 IOTX_20200407 10053430.780028604 1382.2328000365646 0.002336379705090334 3.206381791673698e-07 2089604.953817057 286.77150640850635 22545 1813 530142 MITH_20200412 2184634.8525439897 317.48355870632025 0.003525641415047215 5.123133657796912e-07 2125969.24214934 308.9260448726156 96 2090 1121889 CTK_20210930 80488957.9754855 1937.3327646083453 1.4157362879201472 3.405948322976757e-05 9193144.483032985 221.16671940978955 88022 None 92732 LRC_20200404 31894041.021508086 4742.826167551599 0.027946926864814606 4.153291393279432e-06 3285394.1308422815 488.25401208379077 34191 6812 552171 ZIL_20190914 66979543.80675097 6468.141313971655 0.007179188533749639 6.935947537654129e-07 8807582.350859344 850.9169083935802 66209 10603 166369 BCH_20191203 3882281413.7446513 531207.3183155815 213.70694637939135 0.02925070880384282 1635681279.0472171 223880.58787929596 None 278369 120170 SNT_20200411 60996775.760667436 8895.034010233303 0.016070714935623804 2.341795467913275e-06 18260668.31562169 2660.911507290731 None 5638 188189 DENT_20190816 32882309.44600803 3195.2816082598224 0.0004497251268538387 4.3652326301891864e-08 369863.1824187893 35.90056984129423 46579 10042 273311 PPT_20190329 53882137.47216406 13383.333222186173 1.4873623427177805 0.0003694308213429007 169247035.82601082 42037.55175138137 23930 None 550893 KEEP_20211230 337634009.32335556 7265.874195441558 0.6157724034234517 1.3233253334314162e-05 12697960.994501652 272.88545854810957 30840 3645 142199 LUNA_20210617 2561304704.3358617 66963.87014370455 6.158882197338815 0.00016081096613994485 157722595.4186437 4118.202319624012 82028 None 19103 XMR_20191019 974597807.7595598 122458.99256943763 56.31212542410191 0.007075756403085108 90316181.56653202 11348.449294156224 320026 161912 81315 QTUM_20210723 582300955.5141624 18004.23692865309 5.6280287605842645 0.0001738466290806634 115704516.86685969 3574.047163295258 249291 16753 143849 CRV_20210221 655278798.1607697 11733.477179450998 2.9361287625745534 5.221147904813443e-05 545870954.3606011 9706.907360422681 76809 None 26864 TOMO_20200531 28722275.101392515 2975.8074425460786 0.4054924236417985 4.1981111274542806e-05 14830399.5040878 1535.4088400354926 23397 1554 183642 GRS_20210508 117248964.27947295 2045.879025106495 1.512882465386068 2.6398309975746528e-05 6679696.751599155 116.55413386505465 41595 106847 7089967 FOR_20210221 38386477.53091018 684.7601988500428 0.06809517539873498 1.2147211426007778e-06 24179097.702212453 431.32073624753417 19870 None 211911 ZEN_20190726 50653188.36808965 5114.490990607671 7.2555182696543135 0.0007337219442163653 1957793.745580462 197.98395924242874 26364 1728 256228 WABI_20210120 5382264.147185305 148.62862251124284 0.09103221171664913 2.5160373496862203e-06 670919.6001395994 18.543532456863755 40820 7446 977058 MIR_20210513 520344368.26595753 10094.595856929067 7.991163290537006 0.0001593061871206599 51743605.96971018 1031.5239815797095 41610 None 16442 EVX_20190523 13966941.412300631 1821.6772228798914 0.7234111393734048 9.439486247979531e-05 12450314.617803626 1624.5889401091033 17232 2395 688933 BAR_20210523 56081902.74348125 1491.9718341891112 19.079343943895296 0.0005077827097470605 9357058.646909613 249.0312355058827 None None 36746 COS_20210809 50657632.76735019 1151.5103897534761 0.014754142989327139 3.3540938262714006e-07 4879401.834392988 110.9245828813893 None None 402883 GAS_20201115 18701597.04029968 1161.8912670904015 1.3415366761357386 8.339746405589938e-05 1242465.2314694475 77.23862591714465 324232 100966 108774 RSR_20210422 1222620624.96346 22564.23103538717 0.09286021554073023 1.7142185015853943e-06 224890295.3301803 4151.520679088948 68969 None 82413 OMG_20210207 681804292.1098019 17387.102950574576 4.886287378891281 0.0001242587419177485 691667282.920826 17589.16325157091 294811 42555 203205 UMA_20210826 813790846.2560577 16602.57532552504 12.995881717930638 0.0002651638979399078 35185024.9968979 717.9042237986868 43356 None 226348 BQX_20200113 4419821.305198567 541.8466126053974 0.031520362937172856 3.865826038641708e-06 3966290.775549257 486.4471322079894 9429 4 319214 WNXM_20210916 161323691.17971376 3347.4421946007305 73.04749069623708 0.001515568158450028 12241401.048658293 253.9810398322006 33489 None 134188 CTK_20210814 97002671.1462774 2033.567780981293 1.7274442645344459 3.620540773833973e-05 37087001.41849041 777.3043887530035 81643 None 93731 VIB_20190904 2907250.7821178837 273.57663490197615 0.015924567776784682 1.4985255800559086e-06 273161.19955160463 25.704876310902645 32342 1120 4329648 GXS_20190621 136323296.67172903 14251.463920432045 2.2691572897942374 0.00023727445781398444 23289448.025432408 2435.261397645348 None None 715062 NULS_20210727 35476609.87506893 947.068596073254 0.37769829076624367 1.009202744354159e-05 12198152.747102438 325.9323520753203 56555 5361 334900 VIBE_20200127 2498501.1834653676 291.37383036030525 0.013085466638562552 1.5234211363824228e-06 80215.67030429712 9.338776444588 19609 None 1683059 YOYO_20201031 1243124.3481641 91.4561679902821 0.007115000089487134 5.242545740864675e-07 1240274.1158797564 91.38712160127058 7726 None 3762297 KNC_20200313 75762234.34832607 15766.743092983583 0.41817200377693253 8.754871985948616e-05 91232227.76871233 19100.429198843533 103697 7178 154836 AUDIO_20211104 1334165698.3064477 21159.103236766106 2.6382618882201068 4.183373488101072e-05 60751225.95562284 963.3049287758474 None 8123 20865 CELR_20190805 26488702.399194986 2418.856572582589 0.008478977730069002 7.742708835666523e-07 5568994.485154881 508.54129092795637 17858 None 493170 EVX_20200331 2956757.413846095 460.28561496717623 0.13536596904139325 2.111444965346725e-05 391459.0814940606 61.05997782257522 16755 2862 863501 COCOS_20200127 9449187.144578323 1100.900937486145 0.0005459637491746108 6.356278778044566e-08 1613676.005317314 187.8691499709402 14676 192 52674 NEO_20191118 851504311.9283521 100179.02398483687 12.077409577468012 0.0014192701087016033 342716166.28483796 40274.10078766678 323658 98665 161604 QKC_20200612 15278167.359192673 1644.6532064459382 0.004729672723751102 5.084904282035719e-07 3399036.7315419675 365.43282041947896 49444 9198 677381 QTUM_20210804 810518294.2564305 21095.907949534918 7.821337195080907 0.0002035982806800496 219078387.42731008 5702.8589743466155 249594 16763 166372 ZRX_20190520 198497036.90378755 24256.105454626264 0.33718701886754215 4.1207932264532635e-05 37766716.06356198 4615.504720875564 150355 15889 222198 CTXC_20200411 869380.4208663394 126.77995377623893 0.08507626469729875 1.24045087077306e-05 8801083.861025695 1283.2383013052854 16578 20065 374531 DNT_20200323 2549282.9210230894 436.9501823640277 0.0033635843839832447 5.768560930498107e-07 73483.15790091951 12.602391536105408 58857 6086 656002 ATOM_20200224 915911724.8447849 92060.15029193643 4.8103521510571134 0.0004836998727404405 241676410.03705373 24301.515795179348 31075 8151 100979 SKL_20210617 281405080.1000867 7357.097840507827 0.2844820628806331 7.433035298652911e-06 33156506.6951136 866.3234586716679 26348 2228 129791 GTC_20210725 90274982.35169044 2642.275540205676 6.51049134952903 0.000190252299549898 25895633.123739034 756.7330153120101 53613 1043 25375 FUEL_20191011 3556573.8602404837 415.80931313765205 0.0035957141178674214 4.2004308738015635e-07 360635.50701191404 42.12861390494386 1 1501 None DGB_20200905 329655611.08195055 31439.931550249083 0.024389229818577784 2.3260508551415436e-06 25775998.458986837 2458.309823788839 165114 22981 135081 RAMP_20210428 149900888.07255405 2720.9844509308405 0.5479862514316612 9.944297497330158e-06 30577571.16017014 554.8906812316902 23965 None 95701 TROY_20210519 32391967.920661405 759.9408492131896 0.017419515448009425 4.0717995306525464e-07 18109214.832767118 423.3016278588474 16802 None 513803 BAR_20210624 42743063.57838241 1267.8878274996466 14.406801416278268 0.0004276432417801068 6098721.111260429 181.03094443887557 None None 39510 XVG_20200914 76630594.11962624 7423.711855189199 0.004646536210886107 4.499313168255411e-07 1403014.4506565963 135.85606797386876 289330 51467 238378 POWR_20190608 51193259.84645841 6367.89605344006 0.12205376569026431 1.52028855673191e-05 4025834.764021675 501.4536412229567 84765 13221 613771 NANO_20200418 74771582.38992521 10621.07084455692 0.5611447800938024 7.970887164523402e-05 2550747.9204453765 362.32581287870323 None 50458 313652 IOTX_20210702 184150046.72944042 5480.542932992245 0.019352997250270947 5.754209336697881e-07 8215048.349850452 244.25729671135142 57172 3210 211014 BTS_20210219 169635177.79626104 3281.961511540343 0.06289780478285796 1.2165814320412085e-06 50002188.7198425 967.1519470033985 13343 6964 134881 FUEL_20190131 4094510.3210372343 1183.9403228108492 0.007717595891109894 2.2315667208599624e-06 665943.2027952354 192.55953671435677 1 1519 None GAS_20190615 44167235.593978085 5087.577703980997 3.170350878353951 0.0003653686758467583 5108264.6431227075 588.7045188832833 322045 97680 216321 FET_20210111 48079501.03264508 1247.197266779329 0.06993409862409582 1.8234720923300726e-06 6655674.931370233 173.54105839283494 None 742 338598 BAT_20190205 137012652.04730916 39549.964602144486 0.11139701087420673 3.215577372619805e-05 10780407.510904072 3111.863970823138 91857 22432 119907 REP_20190426 235547374.89899516 45353.85616443623 21.44440485908288 0.004121446609042501 12818914.521029856 2463.6949419431767 124995 9905 258583 PERL_20200607 6972510.995901971 720.1820146180298 0.019987464372687305 2.0666224990941704e-06 1636429.7255436436 169.2001759671079 11777 479 827795 FXS_20210707 76249900.36720534 2232.3843860041143 2.6659254244675785 7.806107203555831e-05 2406224.326016197 70.45675348715946 None None 136180 ICX_20190627 163899248.62661746 12620.941033729747 0.3479428296973229 2.668127299918587e-05 46304990.0864681 3550.801960185233 113799 25295 300375 HC_20200313 32187318.604577135 6688.260901503584 0.6947727937598497 0.0001449837659596463 40342282.006088786 8418.54491883075 12775 842 804824 KAVA_20211216 499871538.6099279 10246.68457380122 3.4803320917990073 7.12165317135314e-05 18825630.893540535 385.2207502600854 None None 47415 GAS_20190625 49510822.30873686 4484.310001950477 3.559364951081498 0.0003222667117132716 2591062.3371876334 234.5961009128461 322626 97854 201306 AUDIO_20210809 270466772.43124163 6148.427628320552 1.2624465085270529 2.8699491683871644e-05 16879683.68208865 383.729796223763 None 6004 34312 KMD_20200520 65730108.50314585 6745.61825595565 0.5493569646000038 5.632964352200697e-05 2656670.3622611514 272.4081136763489 99642 8375 191330 NAV_20190703 12658969.079747386 1173.1168346279037 0.19368921399846425 1.790905157373005e-05 312831.500634531 28.92528377339381 48367 11253 893210 DLT_20191019 3044153.8562752577 382.6104238889564 0.03795200819287369 4.769417796165073e-06 117858.46438267769 14.8112388308606 14962 2638 7624999 OGN_20200229 8832040.173224444 1009.9728098862826 0.3102719978596376 3.560987228998931e-05 39495576.2956404 4532.901575422004 62383 2148 124471 OST_20210427 21594040.027863335 400.8336037053138 0.031242648099403705 5.797561058610017e-07 1192423.7966337642 22.12728494309599 None 767 441171 CND_20210104 16806657.716547873 501.47808431193874 0.008556370572194029 2.599321862207328e-07 129426.76239050741 3.931828456911884 34049 5904 513668 GXS_20210108 23213543.33083336 592.6114356215921 0.3330918409294673 8.440736273008003e-06 12868056.500015574 326.0838541097662 None None 482061 ILV_20211230 633784026.3548938 13639.014066751863 1001.3303446245937 0.021498977288466354 23977785.96657792 514.8129972196438 232856 None 9424 CHZ_20200410 33663494.55398859 4618.426296534125 0.006947121446103042 9.527765865484196e-07 2049284.3695091147 281.0531212957529 None None 262392 ELF_20200626 44577243.859478705 4813.482588018103 0.09669049572118407 1.0449465777534832e-05 17731466.729995266 1916.262331665642 81120 33376 528254 OCEAN_20200907 136711855.1118391 13277.543323241243 0.39256424709075993 3.82274805440201e-05 15971334.97994694 1555.2712752946984 24744 980 128881 BCPT_20190405 4628536.378020565 944.9271461183785 0.055131920928448756 1.1263415282019407e-05 712420.067314272 145.5469524419244 10378 1595 1777808 STX_20210422 2383277196.376311 43982.3912465246 2.233216747661868 4.1288552700204406e-05 43638775.03086431 806.810115731325 60193 None 58797 SUSD_20210902 296407267.77004874 6094.465406612937 1.000269203282098 2.0558305030781197e-05 53660270.489637084 1102.867313259738 151658 7542 50358 MANA_20210201 203149598.90398738 6146.000673979275 0.15407742366279545 4.657659183345958e-06 51528512.54001068 1557.6730446985703 59714 8648 56631 ADA_20190205 1180880829.111025 340872.1332871191 0.03795520809563006 1.0956120578783272e-05 20337416.673156355 5870.582734539466 147994 71065 104586 WTC_20181231 30520765.26809698 8033.669340012115 1.2089130178594008 0.0003180782765762267 4723360.986946833 1242.7680901606159 54677 20509 554738 PROM_20220105 207498386.0501799 4480.215907425473 12.635297987138886 0.00027505036897800125 21799318.905789487 474.5365494830106 17155 None 672740 POWR_20201130 42645390.40494107 2350.936752004146 0.0996477773766704 5.487086657139778e-06 917720.3675192168 50.53410438413902 81101 12595 284033 VIBE_20190821 2816756.175110795 262.070934237644 0.015052265300233 1.40046244132926e-06 101980.49400564091 9.48826297932 20380 None 1220128 RIF_20210704 117049326.40797734 3376.4008845853277 0.15818228134498827 4.558714868411974e-06 924278.2646019674 26.637124155527324 44475 3354 427293 KMD_20210511 368906661.8781875 6602.308846744088 2.9348585351409993 5.2525054364298846e-05 18631725.835076567 333.4513063135057 110260 9136 204449 OAX_20200127 2498451.5277792877 291.13735260777844 0.04773973954959623 5.55518520454366e-06 1024422.4460297461 119.205853845824 12067 None None MATIC_20210519 14970890736.983139 350864.4924240143 2.450046072959683 5.726965528822645e-05 9357699828.93366 218735.57783602754 328052 30165 14850 PPT_20190414 54277473.227185674 10698.75470979305 1.4988163476624645 0.0002953787484641969 5194257.4662638875 1023.6566154210095 24082 None 635728 QSP_20190305 0.0 0.0 0.015777990065475426 4.249087246147463e-06 190514.1864228947 51.30637022715666 56551 8557 1028822 AE_20191020 60256595.94094477 7582.7075715926185 0.18080677847488158 2.2744173442677898e-05 35733873.15755158 4495.060504531438 25042 6350 393899 HIVE_20210107 45733256.64666991 1241.6844800697083 0.12268195306873893 3.3238696350577013e-06 6449552.132377162 174.74021203851098 10204 97 154138 ANKR_20201224 60037745.63336287 2567.6678202767457 0.009218118607447952 3.953645559806457e-07 21672600.97955113 929.5365603457082 30569 None 5391 XEM_20200531 385138471.60071677 39839.41444312213 0.04285875893370817 4.4372181155084334e-06 11172071.418272743 1156.6577968715978 208841 17886 216344 QTUM_20200701 158267658.78673878 17300.402760093646 1.643293594270379 0.00017967018218891109 185402131.98389563 20271.018488664668 179798 15083 112420 BAT_20200707 385180674.975128 41225.94096922923 0.2610051963231838 2.7935422297539907e-05 68368858.65497458 7317.5284072223 119314 41712 21649 TCT_20211225 19817511.367099766 389.5192744659128 0.03420610434371537 6.72817113763202e-07 5613163.909584767 110.40815121118779 None None 456283 NEO_20190716 871625373.1535807 79585.80033798871 12.327519559302306 0.0011272842041600121 467238325.6004763 42726.388021030194 324259 98118 191074 CVC_20190923 30725757.9740219 3058.7649857149922 0.04587276320952644 4.566861325880644e-06 4606611.08753939 458.61100459471953 88023 8138 118286 DGB_20200807 370347104.6055677 31475.476288006594 0.02759498838270454 2.3452739111668927e-06 17913537.54314467 1522.4558776396311 163458 22703 120835 BAL_20210508 699455223.8347878 12206.117856107505 64.79847362049262 0.001130521574859653 74579832.74273953 1301.1743217733283 78549 None 45464 VIB_20210723 5378446.245863036 166.29847971196492 0.02949814144814258 9.110985825851458e-07 1698363.275450855 52.45674123904419 32259 1279 None IOST_20210722 437973462.6410141 13609.692604637385 0.019426143026847552 6.015147982993576e-07 94512188.75492013 2926.493441193005 248911 53583 204537 BAND_20200526 23913126.576707155 2689.265312330802 1.1707608717883586 0.0001316779984070361 4044757.907008603 454.92263883260864 14054 1143 537280 PERL_20210616 0.0 0.0 0.09336031848980214 2.3130643675767e-06 84740907.9111292 2099.5127023558944 None 669 362669 AMB_20210616 5276714.493259371 130.66600041420747 0.03647926435334485 9.037807027743749e-07 314953.15306490596 7.8030241854892575 None 5623 1325034 POE_20200730 5865976.203305996 528.5918763807016 0.002330642847409015 2.0999415783253315e-07 350025.6680517581 31.53779887982953 None 10218 672576 MITH_20191026 6926135.5977441855 799.9520971925162 0.012760654493623616 1.473896372321051e-06 1512769.0928098995 174.729664467137 None 2081 644077 AAVE_20210902 5403545583.965687 111103.49304905029 411.5706932945851 0.008455751156388629 645475333.9757116 13261.339766431975 280926 12765 14216 PUNDIX_20210708 324809336.9169439 9559.458775543308 1.256510653333648 3.6981694564324977e-05 14501423.296077985 426.8067331229698 156103 None 60619 LSK_20190806 172691337.22672713 14620.540856960806 1.2853702843577006 0.00010882118948557318 3999227.33146553 338.5800033884892 182430 30764 180876 IOTX_20211125 1728299337.814432 30229.54588926758 0.18200838181364223 3.182023303006979e-06 163036313.70479977 2850.3376837678356 172937 15167 51674 FUEL_20190302 4215446.606382678 1102.581805642315 0.007978030980699014 2.0883481988412466e-06 455613.0908817468 119.26235684133968 1 1513 None HIVE_20210125 53358449.754945524 1655.2802206133945 0.1437136054614184 4.452805928818589e-06 28787227.197534323 891.9401578428916 None 101 147152 VITE_20211225 64815383.17046945 1273.9662694835224 0.08435368183908423 1.6591951009673954e-06 2361103.943510116 46.441743982438034 39842 2911 156048 WAN_20191024 18884105.971999895 2530.365986735106 0.17790623397061145 2.3829415698837035e-05 2073866.4139043458 277.78129960834696 107467 16741 356039 QI_20211230 166396711.81135583 3579.5011793104745 0.14312221347617055 3.0755192499115255e-06 11154136.978357889 239.68860011238795 None None 875386 IOTX_20210813 1073885717.3066862 24155.15714184266 0.11261856787866252 2.532896930098016e-06 1944304690.5128376 43729.23110761926 101303 7431 162985 AAVE_20220112 2883074393.0224466 67291.90371470612 213.70345665918137 0.004994725002403833 228554591.64146283 5341.829051957767 403155 14906 14216 RARE_20211221 135629553.7855698 2875.59193738827 0.9348854088026025 1.9827477780113628e-05 12305453.582900066 260.9796935451876 None 3144 8540 TOMO_20210702 136812320.83026594 4071.7111474547823 1.6718741563355144 4.97058476398401e-05 9921826.100131271 294.9819964458755 49990 2191 118140 CHR_20210703 61041745.64221504 1805.9761193951515 0.13619583827816426 4.022163442053791e-06 14981096.013389895 442.42480143841004 67859 None 101399 NULS_20201014 25944442.81087898 2270.967114545579 0.2656006027690048 2.325341815965814e-05 8778358.145652262 768.5480777828814 30587 5155 275025 GXS_20190520 66101299.7981709 8076.872824032054 1.1007686107860732 0.00013452593312916118 9339790.02688035 1141.4242341987474 None None 869901 MTL_20201228 24478574.909428988 921.9913296966029 0.37564872852260783 1.4284139629421146e-05 6410561.544136975 243.7632533978861 42825 None 417448 NAS_20190818 30387213.53994104 2974.63940540139 0.6696893273496093 6.552188996814682e-05 7741902.986227669 757.4618481904832 24259 5104 694216 LUN_20190512 6481205.737304887 889.8221236677551 2.393693622263655 0.000328661996388437 1248331.2572684593 171.39998174868714 31681 2233 1641403 DENT_20190623 172665406.34782353 16093.496394500344 0.0024217513387484344 2.257724937974976e-07 3787431.392875656 353.0906815141404 45370 9637 252434 OAX_20210207 9737122.821344119 248.3166866230907 0.17390240185251674 4.422354232380744e-06 1031139.5187479533 26.221973741210068 13054 None 1390628 PNT_20200718 20800381.07985496 2271.9322685105217 0.7201542051070011 7.867294225582466e-05 987787.3474564041 107.9104119595127 3553 56 538447 WABI_20200323 4342144.313097805 744.2487978923807 0.07301280910176955 1.2521726525309094e-05 1792676.6460946933 307.4447756066685 36676 7758 2574958 STX_20210318 1271985281.6352222 21623.979994332847 1.2171851180732032 2.0650459371760768e-05 19887113.30937729 337.3998082288415 None None 83546 QKC_20190712 57889192.58834063 5111.164515734989 0.014522525908148818 1.279713041476478e-06 5192552.863012997 457.5634885681392 51069 9224 176500 NEO_20201208 1233657941.5344481 64244.35085892172 17.49026531651197 0.0009109570423396709 236404560.2465126 12312.814877340074 None 101061 125500 MTH_20190103 4403006.558474089 1136.9569894172503 0.017076703243763054 4.41060480449323e-06 85044.4015473245 21.965436812101196 18730 2029 766237 CELR_20200707 16575152.213535897 1775.6795338169923 0.004294812880647714 4.596744172144696e-07 3194331.895004478 341.8897849641191 20903 None 735036 EVX_20210826 12515326.735618139 255.4064439257927 0.5740975566797311 1.17158919232015e-05 1034989.1871310561 21.121534688701345 None 2796 2395989 OM_20211225 65857097.02544816 1295.2251850877335 0.15841181755752995 3.1152305347332534e-06 6956712.413563576 136.80647862158798 None None 70938 AE_20190730 98290121.3184403 10353.969504848843 0.30577554283228625 3.214647571503108e-05 24495172.83573363 2575.2009837205874 24887 6364 321495 SNT_20190812 71313829.18956055 6178.96894791143 0.020136057287819465 1.7436383785381605e-06 19315306.459951594 1672.5672337638025 None 5719 278039 BCD_20210304 207304419.4655367 4078.147927256758 1.1005909629708115 2.164576299500046e-05 5329766.096785593 104.82264313564897 28636 None 1565972 LRC_20191118 29572074.491261497 3476.5943859496233 0.030743432400494614 3.6141192487976486e-06 4892571.69793771 575.1582100297557 33664 6846 1005851 BAL_20211007 237815496.60430512 4284.531330645965 22.036246777172458 0.00039723491700522485 38428794.80296572 692.7340789258324 101902 None None QSP_20190225 0.0 0.0 0.014832169583061338 3.949768631955931e-06 75146.4008118328 20.01129336263317 56568 8569 788091 OAX_20190213 3047531.699714931 838.7122732071903 0.1298735355834869 3.574138512367016e-05 2101094.8766736942 578.2243536466334 14306 None None CHZ_20200626 67893839.51978064 7331.458945999123 0.012690225462806246 1.3714491233221407e-06 5998075.177518011 648.219763150552 26068 None 373448 NCASH_20200229 2409907.445658356 275.7489542480903 0.0008117001597879779 9.315870986491598e-08 376888.10869330505 43.25539368929978 58069 58377 791025 IDEX_20210112 18798219.79317195 530.98234398559 0.03339737698252523 9.394837068177877e-07 2903835.8487057523 81.68624944886857 44447 1944 159964 VITE_20200113 5924067.200145574 726.6939270008362 0.011686648396742744 1.4310012233875703e-06 3359842.3809389626 411.40439878837395 None None 589611 DNT_20211028 115628565.26051998 1975.5701996391888 0.15378124354737513 2.627929863292143e-06 10910095.857756108 186.4399458256726 None 10284 652716 DNT_20200113 4024482.3582439343 493.38015786742045 0.005355135741164055 6.568866403392315e-07 92008.10253426945 11.286155249649394 59372 6152 582264 JUV_20210124 0.0 0.0 9.097866220056034 0.00028388859154908716 956125.7626236586 29.83481945433086 2237247 None 106290 TVK_20210624 20886056.456408415 619.4997799382294 0.09536901807126216 2.8298159020288994e-06 4979328.577562896 147.74801581458644 49658 None 67689 REP_20200801 218541112.00551796 19280.051225854662 19.88168889701347 0.0017546323472659685 13450297.83477348 1187.038374028682 135028 10315 153322 YOYO_20191118 2195402.9985755696 258.21267484915734 0.012555681492681605 1.4754739683736727e-06 989726.1547881354 116.30712184437361 7511 None 1455580 LOOM_20210729 52816543.713616036 1320.841702059286 0.06339739989394479 1.584589169278629e-06 5275055.2613199 131.84760650147933 33851 None 286849 GXS_20210909 48325890.32504324 1042.695299916369 0.6420539898572601 1.3868177557070079e-05 9263903.431882491 200.097592561428 None 27009 679946 ALGO_20210909 10128165583.10062 218616.2037724264 1.928041291321666 4.1626840374677986e-05 3075833747.7502074 66407.93483674632 132971 40713 252639 RCN_20201111 23507682.895269193 1536.5414096195475 0.04571027798885116 2.992254947640312e-06 332208.09323471994 21.746778938211577 None 1131 1716221 REQ_20201018 17010238.600580208 1497.471677334644 0.022054503975073268 1.9406176905669375e-06 124464.69013213567 10.9518844674244 39466 27580 322939 STX_20201115 230764985.1055374 14336.947821439855 0.25106271236512906 1.560158026829239e-05 1927551.2581223731 119.78220657119414 44477 None 111210 LTC_20200526 2781168940.105863 312939.43744208984 42.911179875214096 0.0048284202319619956 2510220608.049391 282453.1976477878 132773 213733 149425 DNT_20190608 11206591.397016404 1393.9805619647984 0.01797171060814341 2.2385369126417104e-06 787620.0844040791 98.10510921968667 60624 6385 1082435 POA_20190706 6649124.128143726 604.9717979257126 0.03020028148527674 2.7477782390432094e-06 403641.89361953427 36.72543291342064 17737 None 637225 XLM_20200207 1423263290.1859488 146156.38716600378 0.07092806486561173 7.283676731435536e-06 365005943.9542937 37482.839914677024 280966 106146 69512 VIB_20210127 3520058.833444283 108.01256714074067 0.019240907904482536 5.905343479413299e-07 710005.9538819996 21.791222383663545 30365 1091 None OMG_20200531 220667699.7075634 22826.262736936285 1.5701984357552186 0.00016257952234766232 147713484.92502022 15294.36488826192 278782 42962 412498 RENBTC_20210610 372095762.56126523 9933.473839670787 37438.926680026896 0.9996068254792811 4879444.345824937 130.2795326991834 82956 5356 81558 SYS_20190325 31614955.250318307 7916.675482995459 0.05731010698664003 1.4361971303559105e-05 433807.33666019526 108.71256132604194 62474 4615 853485 IOTX_20190901 18477796.41656393 1924.9901827888987 0.0044889347873851605 4.6763336301741143e-07 772964.6212079482 80.52334516525868 21174 1764 585663 SNM_20190906 4104110.574905508 388.4954568028422 0.009378648581984502 8.877836740876033e-07 37183.14624500949 3.5197597925719726 30987 9902 18762051 ELF_20200421 27620622.134911213 4033.531795536724 0.05993257552156908 8.753529056820642e-06 30307693.393004134 4426.628965167605 None 33423 612782 BNB_20200501 2521986646.0992293 291442.6274686668 16.98087375117161 0.0019700065749959873 487612724.2536601 56569.54329367994 None 62363 1326 ALPHA_20210704 130919371.80596781 3776.4604523773687 0.4588859080622458 1.3233704423969358e-05 14417222.023247048 415.77492687902 68920 None 51351 PLA_20211216 420266070.64191335 8614.459918869601 1.394109695805743 2.8527283960311916e-05 10038633.509792782 205.4178014606285 18985 None 86021 BNT_20210408 1250257174.3393717 22197.190361454963 7.123511374967596 0.00012676860239786976 212975605.88175356 3790.0718453744653 109354 6843 30846 PPT_20190712 24148523.512691323 2133.987341530318 0.6668066894405751 5.881140756967636e-05 3077578.741103095 271.4380952336199 24141 None 660913 FUEL_20200314 1253529.4826039455 227.68624775018094 0.001279529017108286 2.3000456550337036e-07 119523.72550851827 21.485251358394397 1 1469 None GXS_20200713 33152703.71147127 3572.559311976139 0.5105923555750191 5.495443624647999e-05 12844398.18257651 1382.427005304226 None None 671757 TRB_20210723 57394101.043441385 1773.098398764843 31.987130062535222 0.0009880303849222121 24723553.89043993 763.6703392664526 23256 None 258398 LSK_20210902 598874897.467656 12313.538642166539 4.142780943480363 8.514563282796323e-05 23200266.54765726 476.8297923370678 197526 32774 254494 STEEM_20210206 99583535.52696392 2612.5632579909084 0.26464286546327476 6.933093927600675e-06 11872990.872014442 311.04772378095674 12200 3858 197343 LSK_20201229 172057542.88733503 6345.1187855730905 1.2038540516795355 4.435268045046203e-05 4905101.056128015 180.71491258940617 177245 31057 311147 VITE_20200312 6872398.832656334 866.4447883826584 0.013810128856661016 1.739708854454802e-06 2104346.0723896716 265.0916246308388 None None 441540 CTXC_20201111 889910.5182448524 58.21233450424667 0.08869842765399825 5.806315793142325e-06 6064419.292941397 396.9848671297772 16572 20064 571475 BZRX_20201229 25117775.31917393 925.5456010914678 0.17901901915946855 6.595461750747723e-06 10538559.281876162 388.26413516256446 None None 127378 DOCK_20190531 7093988.853430974 854.1824993570464 0.01380390197954332 1.662118694768361e-06 1506790.509581004 181.4316472824583 168 15272 236654 ADX_20200903 16071897.672345547 1410.7286287351553 0.18943014873354536 1.662744122766497e-05 1761777.0300527876 154.64193117779752 52697 3742 10625 BAND_20210616 259488713.8456254 6425.350219932986 7.361863228597619 0.00018240206967514333 67261478.07184507 1666.5119180774152 None 5371 189686 CELO_20210727 317951420.8203299 8492.657115091892 2.523198690959225 6.762427379479821e-05 25562541.712470856 685.1019405839625 None None 78180 AUTO_20211002 33411775.780883756 693.7330949923146 956.474125510272 0.01985733487947185 3963548.128999793 82.28712142784225 76274 None 17931 DOCK_20190316 5729287.932549462 1459.89002088061 0.011111202243931351 2.831413374015635e-06 1030193.6072017559 262.51920298270136 121 15356 190400 FET_20210707 197587716.36434644 5784.8171703013495 0.28865542665019944 8.450746668058791e-06 25555669.65829941 748.1740174474411 67603 2968 137103 LTC_20211207 11229625592.46898 222377.56279113737 162.4364291438251 0.0032166893654694997 1694912645.8328393 33563.94567392841 205309 352259 122881 QTUM_20200320 121764927.74191165 19677.89919041965 1.2635827284115955 0.0002044360132050098 451223908.57125634 73003.86025935093 179638 15160 109238 ALGO_20210314 2932657776.012394 47749.568296247344 1.137696084889756 1.8543689218818815e-05 604590538.4651523 9854.423513308036 None 8990 159535 SUSD_20210711 266060141.6721569 7891.917088187719 1.0041568885469496 2.9844614796100206e-05 14694891.442072913 436.7478623721759 141080 7159 47664 YFI_20211221 1335542745.9537828 28308.18469068621 37270.038401308666 0.7904400382207271 997757619.309119 21160.900406102857 None 7863 26210 XMR_20210809 4606230668.471649 104734.39792455168 256.33927516635663 0.005828526962995618 245168998.39127663 5574.542241671015 432160 230742 35880 POE_20190626 14893880.88557545 1259.948273567312 0.005806705908087958 4.907264489296752e-07 3244592.2995284987 274.2014633726257 None 10855 945513 QSP_20200629 14308063.889454009 1569.3162505723412 0.020065660612219108 2.1994306982528243e-06 391383.8511449919 42.9002400491368 54655 8234 457360 TWT_20210408 234060696.74633962 4155.5265271487215 0.6666702857440517 1.1857413125777521e-05 25821143.635802373 459.2554580830611 None 15886 6198 BAT_20210206 548331510.870576 14467.350193608532 0.3715360419250645 9.774318385045355e-06 350834885.49527746 9229.715248200351 132985 51929 21155 CND_20190122 18421712.416170284 5216.263553184151 0.011175550190853945 3.16474626636972e-06 270464.6809582134 76.59149434520847 37189 6264 440166 REN_20190601 31071355.883814525 3622.020394183189 0.040308943386759735 4.6988556135354416e-06 4468905.602640483 520.9449916820362 6377 784 1322492 PPT_20201111 8772957.523881307 573.5616316195393 0.2489029169909728 1.6295165668917186e-05 1529577.280791901 100.13830088949845 23456 None 1538811 SNM_20201101 3797960.0921166628 275.68961790297783 0.008683051499643426 6.300015535685319e-07 157527.2869006297 11.429442227874382 28998 9548 None CRV_20210813 732302667.0356442 16472.92920099828 2.030360312785683 4.566923839527007e-05 167073218.2709256 3758.0061955659876 147445 None 12841 THETA_20190729 122328086.3094185 12829.61781261616 0.1221666596601887 1.2815166033346196e-05 2308041.0492818025 242.1113038581641 None 4018 240889 ARK_20190419 90418486.22987099 17148.57099176802 0.6415273501539577 0.00012165200671007526 1056784.9542198463 200.39677234494636 63636 21724 188283 DOCK_20210819 58778327.378335066 1304.7221296298408 0.0846852283921378 1.8822205765590748e-06 6142423.69995064 136.5219944198035 None 15158 293388 OMG_20190805 214243587.2536777 19564.865324148366 1.52617194966506 0.00013937714602195952 78296022.87272856 7150.358264195533 289350 40925 None BQX_20210506 905372288.964701 15803.262006117238 4.078972241410285 7.115169241355184e-05 7975468.38296042 139.1203567107895 71086 4954 19051 PAXG_20210124 111530136.20720004 3484.656608638839 1867.5197527907412 0.0582722666425111 2497949.8918873835 77.94359440759489 14545 None 66993 TROY_20210718 13396175.456376126 423.8539108138285 0.007045149403237881 2.2333263735559741e-07 1593596.8222589511 50.51733623037457 58687 None 506506 ADA_20191011 1294889108.2642887 151228.37677622976 0.04162496906474528 4.86132477665216e-06 72632590.20551354 8482.663610134423 154392 75383 120482 ZEN_20201229 129428492.2476057 4773.04943315644 12.174923987783432 0.00044843395026160495 11459850.352264196 422.0959381782788 80270 6307 401562 ELF_20190419 61058614.72201756 11578.46661734404 0.1823734017454927 3.4583233727381346e-05 13220841.169200785 2507.0511151901374 88286 32374 961601 ONG_20200927 0.0 0.0 0.12280017596029458 1.1432615123765533e-05 6086258.772943191 566.6266644210602 91668 16656 209787 MANA_20210401 1345738461.688699 22879.19611499808 1.0158315070022284 1.7287327477274e-05 422269651.53937584 7186.146225586166 103472 24972 15640 ATOM_20190613 1463122291.8002238 179932.8638689591 6.1254005551869275 0.0007523108224461937 226345147.6829556 27799.30923307154 25723 5187 120610 POLY_20200502 14109822.184726072 1592.3290992562906 0.022255019026451883 2.5199485550000655e-06 5070769.529739723 574.1661390636511 34725 4987 371818 EVX_20210821 11318581.721048724 230.15453172692054 0.5180592676703123 1.0533976865295552e-05 4247479.925931767 86.36628677019709 18326 2799 2395989 IOST_20201201 103986636.57305862 5289.126757031714 0.006162920249477042 3.139333819560958e-07 35771635.12266857 1822.1735699259984 None 52156 330054 TRU_20210508 103197313.43270078 1800.931067216995 0.4191639040507255 7.313997566196544e-06 11496409.47930037 200.60103014363133 None None 91000 SKY_20200927 9791327.020756474 911.8708838420423 0.5154973759335937 4.799302837991177e-05 594502.1202391739 55.34840420260816 17489 3821 1104953 ZRX_20191011 162933657.22766328 19028.805128944703 0.27101471384221265 3.165144798520238e-05 41702645.788689695 4870.396537933058 151057 15906 149013 ILV_20211028 522879015.0021518 8933.825587645722 824.0645785754074 0.014071152602644202 28606607.81987273 488.4665043767443 None None 11454 SFP_20210519 200806146.44674376 4706.182677201004 1.8765765713195341 4.386484586863527e-05 18810037.400303386 439.68330627052205 None None 23941 NEO_20190826 680452412.3077129 67402.39057283483 9.652929951169764 0.0009556788627139881 219718528.1922219 21753.017394940078 324119 98211 189804 HBAR_20200113 21327323.539400533 2616.17768338224 0.01098073363947108 1.346985471336539e-06 763501.8791671519 93.65730672853627 35080 6132 146335 SUSD_20210523 233714142.00802132 6218.214127749408 1.0026389137349656 2.6697117824831433e-05 74427743.90601699 1981.7765112401714 129548 6625 36942 FORTH_20211221 78872298.47663371 1671.7784578740395 9.098818749782621 0.0001929936219927575 6179253.314357345 131.0671759866704 None None 98724 ADA_20211028 61715577622.51048 1054440.619667364 1.923902863221468 3.285094918208096e-05 4104852629.764946 70091.01536162989 677445 643581 6822 BTS_20190405 189294190.4200835 38644.877024156245 0.06992638364791158 1.4285914311210274e-05 33212554.808613073 6785.303161697132 13800 7208 195741 RUNE_20210430 3337999386.989184 62286.61829238325 14.212376124855238 0.00026514640089130503 131770456.12212646 2458.3125212599407 1134 4063 83196 OGN_20220115 208947480.65720642 4848.541245270872 0.5209289468474269 1.2081861147754064e-05 15370871.759044554 356.495332879058 133517 7589 99270 CELR_20210725 145670082.4997136 4263.861893228309 0.025891618896080416 7.566157098734545e-07 29179480.484076563 852.6949754980524 None None 211241 OAX_20200321 1496909.394400794 242.22951216735797 0.028756879365686206 4.637838260046918e-06 314218.40866385034 50.676366485410846 12027 None None GXS_20190318 56402956.54320463 14163.631787055816 0.9397409011075369 0.00023599473279761163 10616913.400039257 2666.198351082446 None None 590574 LTC_20200316 2348597741.507014 434876.17593592586 36.529436034437104 0.006763943084420519 2712125771.2373605 502188.5456196392 447823 212298 131624 COS_20210128 22633882.00868362 748.2059084885803 0.0075371188605682215 2.4787349603670976e-07 1954782.6362752253 64.28700608402862 14620 None 378436 ONG_20190421 0.0 0.0 0.5876916744245332 0.0001106495756409585 3980353.839438471 749.4141612027934 75893 13394 265242 VIBE_20190704 5930370.796589459 494.13929363360427 0.031690891582231984 2.64059623220678e-06 2878859.6678798352 239.876684198992 20483 None 1464833 GTO_20210401 47285288.485641874 803.9076086594887 0.07135318624760266 1.2133228385332182e-06 235015490.67387894 3996.3129502613956 748 None 454525 GRS_20200224 15994020.697024414 1607.328918233299 0.2147047157708373 2.1576882078421445e-05 8549203.124405138 859.157410760594 37806 106871 3972954 DLT_20200530 3194826.544539254 338.9831120196363 0.03889425602034148 4.1334458232308055e-06 149306.64191575334 15.867405076074 None 2567 8395900 ENJ_20200310 79527529.66353609 10044.856573520417 0.08726306704232858 1.1025858024648388e-05 7803731.897334799 986.016683560948 53767 15214 23333 SNGLS_20190207 6173281.940349966 1812.0233301440346 0.01045662101826863 3.0690658499064532e-06 240427.2211526845 70.56648343078108 None 2183 1020593 TRX_20190726 1521190455.0362105 153595.7582915428 0.022968124614512458 2.3226758476575034e-06 782899449.3796786 79171.53327658125 448875 71308 80727 ZEN_20190622 70506309.04818511 6966.651747614005 10.490480782508243 0.0010364277063915248 928376.4390747056 91.7207784244251 26035 1675 240249 FOR_20210708 15526780.424801059 456.9510438955251 0.027523341752028908 8.100685938177941e-07 2511203.637678677 73.90989138935278 29239 None 170276 WABI_20200719 6630864.511221124 723.3566347341238 0.11220365547773632 1.2240222748314837e-05 1020388.1634138861 111.31347153309183 None 7663 820507 KMD_20201229 65859834.665404715 2428.928367173895 0.5376836515404936 1.980428001795561e-05 2649398.5412537446 97.58420297850685 97109 8411 269586 AION_20210131 36223350.64814198 1058.7767127742902 0.07459314990925199 2.183039492683801e-06 3665304.8370471857 107.26863286687029 68080 72544 360629 XMR_20190801 1383130998.4055822 137596.9897170396 80.80435042364488 0.008029360055847498 149266820.47216448 14832.333156307986 320349 159866 104374 BNT_20190623 51953573.548827186 4842.398175029679 0.7914829678876207 7.378754399722258e-05 4752509.334555736 443.06195565604816 793 5132 142963 FIO_20210806 74599618.03789401 1820.5522075849967 0.2164554345977189 5.290252611439058e-06 23209211.34019825 567.2418949892178 None 508 318266 VIA_20210124 7740311.233836227 241.88193137503757 0.3326190698189733 1.0378721348414604e-05 1140664.3847193252 35.59217998987793 37755 2125 2961182 STX_20191203 44685641.55171053 6112.097887092263 0.10496784582329259 1.4363663256304545e-05 355147.3017062207 48.59789403205392 None None 43734 THETA_20190321 93467638.44276178 23127.28282727611 0.1257971890926882 3.1126785906809615e-05 6931655.339556386 1715.1428683767472 None 3932 345140 LUN_20190904 2566271.3158310233 241.82129637423753 0.9492909242552676 8.945225725884328e-05 100936.28298543175 9.5112869212856 30911 2196 1370867 MDA_20190511 14867734.7767406 2333.2454926246633 0.8368952227114426 0.00013134627714120583 1422745.439690866 223.2923689271147 None 360 1527812 EGLD_20201228 329232387.47542596 12436.023984662133 21.863788783561066 0.0008313761982925561 70084479.95266338 2664.98039654342 None 3054 53733 LRC_20200502 41202950.84332803 4649.857152280722 0.035252329221210944 3.991641434940616e-06 3896222.340046497 441.1714878378368 34210 6808 546784 DIA_20211125 100725388.75421084 1761.321817986828 1.7785198191634601 3.1096504577942446e-05 8274111.782046626 144.66859021556562 38124 437 327673 QNT_20210826 2550145482.193469 52026.86003897682 194.77061001065593 0.0039740384896934005 73694609.71052852 1503.641722211327 41173 6589 134103 XMR_20200315 632355117.8007421 122338.22514439764 36.15182619081327 0.00697763343878684 128172206.51414737 24738.40932338495 320666 166799 88356 ELF_20190813 40410169.43684684 3550.6850784858852 0.08787472993018382 7.721177659732926e-06 12891935.180731889 1132.7593494429736 86194 33512 1285223 NMR_20211225 200972624.63404357 3948.414138023906 34.10667245082935 0.0006708581941867909 3056636.0907444498 60.12223476445093 32634 3757 3023938 DNT_20200719 6233935.704493214 680.0559330868722 0.00829839655726189 9.052666054617898e-07 474686.06038874364 51.7831891478004 58096 5993 528666 SCRT_20210428 223009887.09432626 4048.1064648167026 3.2115634411522014 5.830495853310938e-05 3271799.0979070193 59.39851858062452 77569 None 64525 RSR_20201015 112803250.00553536 9884.547771848665 0.012155639540086808 1.0636692010339993e-06 52856730.391029455 4625.184549022447 44699 None 125682 FLOW_20211002 1160021339.0340564 24085.67563312972 17.654838500919706 0.0003665316509934072 47480200.92983384 985.7352382693344 92784 None 50509 OMG_20190811 185152106.89821154 16340.932836570953 1.3199734741765627 0.00011659018125696675 85692625.32013841 7569.029919099622 289231 40990 None RLC_20200927 68561690.13322012 6385.236188409192 0.9776910188460148 9.107548275874966e-05 3231768.3390424647 301.05100279037384 33502 3849 260309 EOS_20190410 5753092261.897248 1112304.4271887941 5.537056750228684 0.0010700299261937314 3509832665.826534 678271.175062745 836 63966 105033 THETA_20210107 2180082147.100357 59478.71377204963 2.1802779150513034 5.9071113367142575e-05 174726669.713444 4733.9372855424535 78897 4851 64313 POWR_20200905 39304068.921116 3746.356531199589 0.0914442209548069 8.721222848441892e-06 5110498.966915137 487.3987649719935 81639 12682 213418 APPC_20190615 10205162.257243328 1173.4481489069842 0.09560525906917697 1.1016210534687463e-05 1741732.5454828541 200.69285521493023 25548 3371 1192397 OG_20210511 10072471.431378579 180.43155211187266 7.850329395896695 0.00014047643824296387 2984545.5991940256 53.40646416284547 None None 233476 BQX_20200701 10846954.33371186 1186.6665675995837 0.04879526837893807 5.338246281942271e-06 509469.7128739183 55.73644516904242 12330 33 385504 WABI_20190220 6958996.555914465 1778.102237187524 0.1327732133261977 3.3910458225622504e-05 533193.7913347369 136.1784153163243 34680 8020 1817938 BAND_20210707 225586073.56409138 6605.6114529785655 6.404543530256946 0.00018750097833547514 47788186.67526633 1399.0586077149 99737 5451 205919 INJ_20211021 445201375.9397638 6716.747801397394 13.585381364974925 0.00020571868473225386 35158526.794522315 532.3932906248735 87571 4186 116431 RENBTC_20211120 994939855.9968405 17115.703814512635 58343.24846305911 1.0002094390500758 1678638.7009957302 28.777798935103256 104316 6263 69295 QTUM_20210603 1259056271.497638 33459.75026840141 12.17627081361053 0.00032337484105855263 366297508.4942451 9728.05224215828 244971 16676 104838 SKY_20200229 8357845.849673209 956.2591739899258 0.4916379911572476 5.625053964646622e-05 239139.43730054938 27.361031166946 16290 3827 299478 XEM_20211002 1437120664.3315356 29844.522133865263 0.15979845949054708 3.3179228008290366e-06 56514880.105247326 1173.4281412044008 371469 22084 147813 TNT_20191017 31095934.73871959 3882.9764574790406 0.07252978731591644 9.058993375934174e-06 2039185.7213422637 254.6949415621033 17676 2551 505684 ONE_20210930 1520844683.2221308 36606.885837649425 0.14461700219726625 3.4775894124852225e-06 93778576.72318307 2255.083292942435 None 32696 29145 TRU_20210620 79617326.34338039 2232.7904725045723 0.23317446865352115 6.546482288529543e-06 2227802.493236051 62.54659718334273 None None 102070 GXS_20190627 132532357.13904114 10204.793684422326 2.215208468893051 0.000170667855765859 28664273.0187758 2208.4016388968657 None None 715062 NAV_20190321 12571255.750753572 3109.37835697677 0.19458666841797745 4.812912785572797e-05 653799.4223777323 161.71095505899427 48142 11386 772440 XVS_20211207 197863802.01913226 3920.086574423286 17.068545177595826 0.0003381959363936054 27371457.295527797 542.3377056569082 137168 None 25188 ONT_20220105 599454955.2046041 12943.279662546922 0.6773685388888833 1.472191336624398e-05 40184030.66378358 873.3588647460908 183144 21067 103230 INJ_20210902 437161404.7317919 8988.572102742559 13.36998920888558 0.00027479034195258026 65551941.85261014 1347.274125349562 83198 3963 148597 NULS_20190512 47445798.82789233 6513.961010240065 0.6675604566098277 9.17399518085833e-05 8659285.620167216 1190.0082421376958 20895 5321 670223 STEEM_20211104 245285502.48109353 3889.382144648364 0.6235277508088707 9.893410863180717e-06 14782868.088046996 234.55730324997592 14575 3941 227417 OST_20200321 5258612.992013916 850.6237378160109 0.007705478393348591 1.2427204652560252e-06 1633927.1674990712 263.5157255831976 17806 752 732102 BAND_20200903 296177753.50845534 25961.58408116777 14.451869574102803 0.0012664972417814804 240953001.6984614 21116.043878289358 33079 2027 119492 NAS_20191017 20295357.30280821 2534.2727013369117 0.44746124952368266 5.5874875996930946e-05 5029005.095403295 627.9762468654191 24047 5082 1447881 MITH_20190512 18790234.0215249 2579.7245473345783 0.03626488764139336 4.983726959294155e-06 7505672.286843086 1031.4721416886675 73 2035 435662 TNB_20210210 10639217.329706097 228.81028465682374 0.0031088414214296973 6.6749818650431e-08 1705686.3346442813 36.62272791632605 15629 1429 3046579 STORM_20200411 8232094.341519598 1200.5995836466218 0.0011037283062705107 1.6083328935804738e-07 204933.8327424233 29.86258686441417 None 2512 908527 COTI_20210805 98772316.74618211 2483.547045750452 0.1474863833380086 3.7089572493167016e-06 14741356.682113104 370.7126074519201 124922 5500 114114 ZRX_20190513 162338739.8687639 23394.71776936549 0.2765301720701139 3.977943041425001e-05 36443456.92357102 5242.465760222149 150152 15869 221725 ONG_20210825 0.0 0.0 1.3299583130017414 2.772437818006459e-05 1211964598.5577042 25264.675247922572 143078 19870 180960 BCH_20200317 3134914769.1284146 621109.5126554768 171.4691201927769 0.034050305208757146 3392306569.6203833 673643.592078755 2649 287539 138735 ADX_20201101 22124714.068123024 1603.4181925163493 0.21722631423375502 1.5742772990358014e-05 751880.5871029272 54.49010834792857 53052 3746 13140 ONE_20200430 13569195.965685407 1554.2260377794007 0.0026044283283055115 2.9705996686639927e-07 33923191.95221455 3869.2645782592062 71868 None 276485 LINK_20190213 155749602.58117458 42863.90302164622 0.4285050355678923 0.00011792520650844073 5534989.435428369 1523.2371104575082 9665 6334 271589 EOS_20201015 2466142787.653423 216050.91504598182 2.6100683721213898 0.00022865648682618338 1352189321.2338588 118459.29517391048 191720 73020 84814 MITH_20201224 4281208.189886796 183.0810092671345 0.0069391283161631765 2.9735418197991857e-07 7805065.607745228 334.4611590024533 129 2110 908145 ONG_20200421 0.0 0.0 0.08452275311704437 1.234507893134433e-05 16571385.331133071 2420.354902913189 84098 16493 204987 SNT_20190716 74137704.65458274 6768.20524600114 0.021023893818525496 1.9225200412419736e-06 22774376.394155324 2082.5920936668103 None 5732 282023 CDT_20200109 4326001.444328862 537.525236986368 0.00639298107157232 7.96704131482444e-07 328980.2241791994 40.998072862294066 19310 295 203287 UMA_20211230 587642401.2327311 12670.334701219828 9.283409227864164 0.00019933636161211158 26448701.62781441 567.9150646540905 None None 199741 BAT_20210128 450923179.1704327 14905.949893624855 0.30547040704832895 1.0046016141122354e-05 236161240.67763954 7766.643121602591 129553 50384 23802 TCT_20200321 2786197.1908385465 450.6902242783036 0.004801363690112558 7.757207728337946e-07 568549.8769742504 91.85639298044619 26 None 409993 CELR_20190530 40166941.31824208 4644.700793461522 0.014127616344530082 1.6337680081314488e-06 20479011.799974866 2368.266061379816 14379 None 371735 STORJ_20210201 61392528.42924858 1857.6626650695127 0.4269704131049138 1.2913600988847958e-05 42216624.6426881 1276.8300308379517 83765 8679 105291 JASMY_20220115 334209116.464571 7755.186521642907 0.07047575924182728 1.6345383426958784e-06 44083786.12134776 1022.4315350657735 51449 None 70194 RUNE_20201101 86596744.74612537 6277.5360369048585 0.40541881885443215 2.938141474138511e-05 3620657.4003796037 262.39540882095736 17762 1886 224255 DASH_20190704 1408783820.97606 117585.20357841087 158.26426700462648 0.013187270083488783 387972482.7802643 32327.562072084685 320285 28232 107234 NCASH_20190725 4633369.567201647 471.3459367320866 0.0015994449659951012 1.6311076404254498e-07 956895.2537862383 97.58379892530564 60102 59054 884263 NULS_20190701 59166054.127574444 5452.835259317084 0.8042375010271355 7.41505363582535e-05 7595512.718742531 700.3047498921488 21210 5307 511487 KSM_20220105 2666441872.696653 57934.01710423242 297.3726241026713 0.006462136877591951 98963286.68726036 2150.5486806635236 215690 None 91017 TROY_20200229 4738538.898532442 541.3750664793955 0.004049681805195205 4.641780177765894e-07 969517.1490417946 111.12689097333609 8106 None 291470 HNT_20210718 971178978.2333596 30728.024529453414 10.709741582804591 0.00033883524253366574 6375505.589736961 201.70850678990467 None 42308 2371 NAS_20190719 40964218.873130605 3816.8762739324943 0.8941404413018715 8.38026940630026e-05 7777042.028089166 728.8978819100702 24325 5140 512130 XTZ_20200312 1775506600.2119584 223848.8303651094 2.5196111660589 0.0003174039794177317 186745368.8850658 23524.948619221403 57022 22374 104382 KMD_20190512 136634808.21552837 18668.814905514624 1.2012840338381283 0.0001649275078501842 1944233.0174487538 266.92896701819893 96947 8363 329492 WABI_20190205 5888382.225220653 1699.7357914870547 0.11220557635862347 3.238917360430679e-05 105776.66640688937 30.53340950353117 34792 8134 2083509 BCPT_20210220 357486.6594595671 6.3944124583114705 0.0030775719857354 5.504894833470731e-08 8329.278920848128 0.14898694396244 12414 3278 1170393 XVG_20211207 326213763.69285625 6458.760757673241 0.01978545483642506 3.9173552281668137e-07 19424787.590934936 384.5946118220644 336140 55629 173593 DCR_20210420 2772404991.3239884 49528.916258881654 215.80197431334605 0.0038563579058190425 36321563.09778919 649.062398291516 44203 10916 225224 MDA_20200719 8620184.339742994 940.0036848241052 0.4391123552002629 4.788879454535253e-05 159185.32068501847 17.360461455119495 None 375 1312356 ANT_20210128 120285647.08585195 3976.2245792786644 3.504391187233992 0.00011527252973587842 41466213.16527837 1363.978801094292 77119 2702 136164 IOTX_20190318 23281937.575700108 5846.770006196484 0.00922042325254174 2.315515791678114e-06 1597303.140210197 401.1291612057165 14115 1654 1193452 DLT_20190507 7878358.150040243 1377.2875212525585 0.09954228339856488 1.740189290088682e-05 16694524.92084153 2918.521906318443 15137 2677 2743184 LRC_20210314 723826109.0795333 11796.855299802499 0.5800071871304269 9.453731243058768e-06 108931884.48032734 1775.5172393154567 64823 9485 117202 COCOS_20200411 5849528.84233934 853.1172750560485 0.00024154078700476804 3.519688592510122e-08 483259.9711378255 70.41976755656587 14727 217 63890 ACM_20210909 16012680.437911715 345.6333114654288 7.988273365159963 0.00017263419755304875 2651070.99149906 57.29216970336379 None None 40531 CFX_20210724 181479110.53130418 5428.36249121768 0.21135284223404563 6.321893278251129e-06 2693596.848995374 80.5696844858386 37323 1163 173501 BAND_20210708 236149389.74235174 6950.109185712757 6.71029154258982 0.0001974976906142753 53451974.66829674 1573.201624513477 99829 5456 205919 IOTX_20210131 68133876.13068484 1991.6977182701996 0.011178325064413191 3.271915634081117e-07 14255595.229726104 417.26380863412095 None 2043 512659 ALGO_20190719 95752479.76592726 8935.256364419281 0.6945135487257579 6.509280170991088e-05 108244042.96027109 10145.098015178122 10468 512 261967 RLC_20200117 40011138.06979242 4596.858722785804 0.5696207694845999 6.537193971426214e-05 2111232.0230285167 242.29336415720567 27682 3525 233222 ONE_20201124 39361169.39250204 2149.8432255847983 0.0054222165301194974 2.9534025532719874e-07 7566800.352008273 412.1526197927048 79204 1534 160621 ETC_20201224 601121594.1046633 25708.50315869113 5.122515062144295 0.0002196681461212845 972255708.0437483 41693.11487634839 245411 26175 161974 COS_20200301 16725829.680125922 1950.8914714473558 0.008527833148816243 9.97068235639756e-07 4508789.117389192 527.1644427952966 10196 None 161709 AUCTION_20210314 52421153.12795375 854.4804861353865 24.667008712591443 0.0004020984947191679 5227919.330832767 85.22064908373119 23418 None 37117 THETA_20210916 6890217318.544094 142972.9648823421 6.880348845292578 0.0001427269135591973 405427231.1878029 8410.238881982967 196859 23680 23104 XTZ_20200106 870026463.2840824 118476.6502196322 1.2504643218563425 0.00017025019449437248 54504458.064607315 7420.759172508251 52452 19332 175595 DIA_20210108 37484114.59261725 956.9204772039304 1.4670862522995973 3.7176798179330855e-05 17808763.938573398 451.2841843687899 21070 191 308409 BAND_20210826 331026795.8450832 6753.451870428039 9.399765454432476 0.0001918156707652912 69652505.0127648 1421.3590790402272 103355 5614 341497 SNGLS_20190903 4077064.990933819 394.92355883642296 0.007068711944467099 6.841931774529473e-07 79802.49219858999 7.724224884953007 10 2165 None NEBL_20210711 16984324.723783545 503.66435667491504 0.9382900499577547 2.7842708731066556e-05 479065.43827103474 14.215731544314803 40374 6110 1020612 HC_20190104 37397926.26627563 9918.020601195112 0.8535214433430864 0.00022632186090426322 12449454.395029569 3301.128176569172 12125 762 378719 LSK_20210106 176451538.17394575 5186.607095237641 1.2310538931730963 3.6126619552321805e-05 5630344.929439903 165.228614557185 177489 31037 299861 CITY_20211221 36604277.830694884 775.7344790341044 9.639599712251826 0.00020452367041944651 6257081.016638229 132.7566718365059 None None 37465 HOT_20200113 121481176.96744162 14892.560027882078 0.0006849211429224518 8.386690179874133e-08 8375892.960452913 1025.607399698285 24796 6798 499870 NAS_20210519 35702530.45520555 836.7404749988134 0.7892578254072921 1.8448846368022823e-05 9088095.732911594 212.433600981843 25096 4899 415703 REP_20190524 215183676.5499301 27315.414794810484 19.518368281140482 0.0024819413076377288 10505202.899050336 1335.8338486451162 125476 9970 279308 ENJ_20210429 2537275640.0662327 46353.18020875598 2.720625143620395 4.968562167834547e-05 588239203.278028 10742.7627723643 165720 30176 22644 WRX_20200322 19168896.656524345 3112.6431901997707 0.10205208092595616 1.658639840474883e-05 10157239.612022968 1650.8435826971934 21593 None 25580 SNM_20190520 10611944.249036845 1297.21817184107 0.02635853017644522 3.22210176810996e-06 239363.14836366757 29.2600694500088 31499 10018 15277898 XVG_20200927 69281525.01777938 6453.826634005773 0.004233922571252871 3.944053230591806e-07 1288328.8605434464 120.01253020050949 289008 51437 248955 LOOM_20210916 88044437.33563547 1826.72787665448 0.10552132480870964 2.189922200504197e-06 3369725.884184889 69.93313945562812 34902 None 482810 APPC_20200806 4864319.660752135 415.2013338720416 0.04447042003827574 3.7882041125774237e-06 349129.37681549834 29.740518302631802 24489 3194 1501614 AAVE_20210821 5275197584.874662 107367.68350356865 407.2783650751067 0.008284368751019625 340053596.33949596 6916.963012919312 271781 12553 14216 SC_20200312 77177393.63357934 9722.10164950053 0.0017631090704322734 2.2210034305228156e-07 3278126.9359398806 412.9484268733672 107901 30200 227333 ICX_20190615 175544005.76718938 20182.542229255276 0.3702485379140691 4.2642860627540915e-05 25790669.025181934 2970.404450286092 113605 24897 290071 MTH_20190903 7736825.539948209 748.8610783920335 0.022268898696244713 2.1545410969821286e-06 2036243.7174345 197.00887917839063 19525 1994 715962 SFP_20211011 113551764.22498791 2075.540581487884 1.0489498091571405 1.9171545096301823e-05 9513552.219051344 173.87819112157518 None None 28591 TCT_20210314 19965913.33207203 325.4027280203718 0.03449450251430406 5.62205566069137e-07 8791295.021227565 143.28413612692296 None None 839224 EVX_20210108 8623369.866453072 220.30659332838923 0.3965082133642009 1.0105769075429162e-05 1525520.1717349018 38.88079503992906 16662 2807 1350138 AMB_20210114 2166407.610111473 58.259497946782254 0.015012097831893794 4.0169025051078527e-07 182289.12997001794 4.877650485829025 20264 5483 666960 MTL_20211230 131383650.70623611 2826.3054451355606 2.033803811930108 4.3703927029998926e-05 9991050.703662924 214.69531542057575 None 4508 205875 UTK_20210804 106956627.99594952 2783.7144683840925 0.23767662125674105 6.188032884317108e-06 11837099.544789841 308.1849651462812 77567 3994 176037 FIO_20210418 91960292.42992464 1525.4809669415868 0.39648032550923684 6.595892890477437e-06 13906928.138128446 231.35727685061394 67767 367 172858 OCEAN_20200903 181313538.51853973 15892.760509396077 0.5212945290145384 4.57572049720805e-05 15278635.474840268 1341.099160272348 24570 967 128881 DCR_20190701 304420338.8289344 28223.425200623067 30.401353294664577 0.0028185709404647957 17240146.077045023 1598.3688052023404 40478 9505 383707 GO_20200905 11807757.015624132 1125.483158069049 0.011425422741327138 1.0896339504179873e-06 1509181.138196718 143.9294670088146 11942 682 742486 XZC_20200629 44343136.30854591 4863.579373701063 4.244474383454782 0.000465392610411293 7668681.323426264 840.8456023279706 63648 4124 444213 REQ_20210217 61371371.240814336 1247.2174362261155 0.07991843238140375 1.6240420481755555e-06 964490.1069322391 19.599639808147362 40565 27281 403462 XEM_20200330 322971289.36533344 54618.527721964005 0.035847896002610756 6.0731506192262275e-06 8538066.587260257 1446.4716249354776 211305 18004 216330 YGG_20211202 763009702.0476792 13349.354922229104 8.74097626993068 0.0001528565174433795 310583445.6694396 5431.28163428501 130467 None 44049 POND_20211104 76564054.9222529 1214.2620248607768 0.095138694686419 1.5085715895786872e-06 87641774.23085366 1389.6962860455221 24926 733 732622 QUICK_20210930 122031298.52927381 2935.77213329721 338.0173843299077 0.008131950513091426 7529442.047871209 181.1417192221048 52485 2819 4536 YFII_20210110 77628666.32541412 1919.128423261214 1937.7264181473843 0.04808578282975319 160065919.14678994 3972.1267948115187 None None 153054 NMR_20210620 210364218.62407005 5901.014731755125 36.574336626527824 0.0010272646927635056 25977894.668297768 729.642050861308 29247 3486 564321 STMX_20210108 21724605.899865914 555.0120186564459 0.0026253981176517774 6.652907816929316e-08 3060918.955596839 77.5654233533595 21866 155 199234 ATA_20211207 124187937.38200599 2460.4170195286547 0.7219805820880442 1.4294614054920271e-05 21035673.671973787 416.4888142233213 None None 227011 EVX_20211221 9320139.114484267 197.54981275967296 0.42750298990468394 9.070185468721235e-06 6446747.900569173 136.77845654667541 18875 2813 1001283 MKR_20210418 3019403070.3790607 50107.35695349899 3341.9599441612295 0.05544988370893299 293184946.91483384 4864.532036070664 132870 24204 31771 VIB_20200626 3002018.9193832246 324.16014419607194 0.01649283696156037 1.7813607882008024e-06 542808.3901831283 58.62772936107076 30826 1101 None TNB_20200903 9431682.039160803 826.7380091378899 0.00274412826524498 2.404290820441917e-07 757303.378870072 66.35176588381567 15981 1434 593209 DOGE_20201226 585882282.2384405 23760.195639502934 0.004589209805707651 1.861133646126579e-07 154364516.27139553 6260.184370813436 158130 171320 134102 IOST_20200518 42430337.29860541 4356.821476821592 0.0035395612456278268 3.62423533087954e-07 25223668.33610424 2582.707392646955 193679 52203 468295 SYS_20210509 324459899.48917 5532.007733606235 0.5351632802128377 9.110325609325151e-06 45178174.82800831 769.0884227977714 67142 5303 365678 EOS_20191011 3207760684.9153666 374699.3466745864 3.1130187451458897 0.00036365513481573296 1855190986.844825 216718.8133646688 1313 68566 90750 ADA_20210318 44206349365.28759 751150.6746128588 1.3830039530574736 2.3482867122354128e-05 9359322303.77906 158917.63832564797 None 273163 9201 BRD_20210204 8033597.649524814 214.43550419054742 0.10399178207790892 2.772425848894975e-06 8877450.281700332 236.67324611118812 479 None None ETH_20200309 22145350491.45419 2741271.301301672 198.81964228768578 0.024706181595179 18839637103.648037 2341094.1198480832 452750 454232 19200 IRIS_20210724 71737720.41545607 2146.1661907475177 0.0682505811687606 2.041239149481264e-06 5876951.7262707325 175.76793835077552 26451 None 789272 LTO_20210114 53039993.93235198 1424.3299229554025 0.1951498426319491 5.221294746550321e-06 8710780.448435307 233.05964063494704 None 1000 1001701 XVG_20190401 119090219.142003 29021.434740843328 0.007471772583802699 1.820339868244931e-06 9519323.007047348 2319.182361892813 305233 53268 432369 HARD_20210127 42149008.88804845 1293.5897526301258 0.881178533778858 2.704606970570456e-05 16549702.91452848 507.96110149838336 15658 None None BZRX_20210310 78829085.46118778 1442.2326357953245 0.5622262530338981 1.0268338674208777e-05 34514097.44826045 630.3555547627823 19684 None 171037 DNT_20210902 144291829.27166945 2966.8016191671427 0.19183692763665003 3.9429707010108044e-06 8972193.97599809 184.4123465016721 None 10263 432268 LSK_20210620 369224105.23638976 10357.175834723039 2.5579127784847486 7.184418712327677e-05 11735078.120078312 329.60355624972067 196149 32535 424383 FTT_20211007 6864601838.908234 123674.03332066882 56.798389616121376 0.0010238723414807138 807271705.2373049 14552.228974073696 258899 None 1144 QSP_20191022 0.0 0.0 0.0118998952356767 1.4489669382609191e-06 231402.68961803993 28.17628559249465 56037 8470 465255 ETH_20200105 14636213160.069315 1991671.650082176 134.1368826978575 0.018242273891669603 6958393690.018681 946323.7924300876 448725 449149 21447 TNT_20190507 7437835.540344817 1300.0682160343754 0.017359672620835105 3.0346767748676893e-06 383508.716073641 67.04187452424537 17292 2504 1010954 DGB_20210125 353741696.57976973 10964.688671999074 0.025318336300307328 7.847750997689961e-07 15312865.625524927 474.64238986645756 180279 24014 218245 YOYO_20190813 2635726.756376702 231.56501050896077 0.015080664398000508 1.3252273784320135e-06 860479.0734296185 75.61539707945055 7581 None 1167957 POWR_20190703 45505938.80906512 4211.521739231422 0.1084318556082694 1.0025915507815235e-05 2845246.258992394 263.079502158862 84664 13183 757422 VITE_20200903 14072225.990598772 1233.5068179038462 0.026159689617791405 2.2920029799718802e-06 2132088.6236185106 186.80471940975372 None None 366677 TNB_20190830 8103792.666561631 853.9600356061552 0.002808877905047177 2.961598169520191e-07 483524.86747616244 50.98143852610226 15584 1465 1174424 KMD_20190123 73428825.1148911 20556.603231670444 0.6583796272525448 0.00018432259029664864 286417.18720722373 80.18649980380533 94901 8236 233047 ELF_20190901 35658063.05984285 3714.841017851161 0.07726897891862466 8.051646037435214e-06 9089681.078281602 947.1704642631839 85532 33551 1052488 STEEM_20190901 53722447.21076295 5598.0321057120755 0.16597307906251246 1.729486785348248e-05 602166.0952534713 62.747423269371495 10582 3771 235183 DOT_20210125 17273184189.924995 536073.5996462107 17.99637972827149 0.0005578214353904274 1518953639.2466738 47081.9638243694 None 9071 32256 QUICK_20211216 89339084.81123425 1831.329354574723 247.8417197991 0.00507151706870143 4651398.718244889 95.18029495613827 63499 4216 4934 ADX_20210707 43053548.482664645 1260.487803025497 0.35319852169026916 1.0336757270409691e-05 4912418.910799133 143.76753800807305 59121 3875 14172 POLY_20191024 12341271.052385233 1653.707917433559 0.023265347659168694 3.116246285331845e-06 3272023.44450054 438.26686167851784 35195 5048 332480 LUNA_20210603 2834308878.660297 75322.50099567074 6.912255705141129 0.00018357423419882737 276250381.762431 7336.599576525155 None None 18879 PHA_20211207 82284153.49822433 1630.2173622691441 0.4528319725017016 8.965695808492973e-06 17699630.627666783 350.4379411499032 116182 None 121041 BQX_20190302 16787528.241741423 4390.878130981452 0.1427096925941373 3.732159189147782e-05 1014145.9397385332 265.2205340317277 60541 5814 398770 OGN_20200207 5434147.525711037 557.9561816477183 0.24299229602578076 2.4954176694321628e-05 48933809.141577065 5025.274214930541 61286 2111 145661 1INCH_20210826 573813783.6503506 11706.676979359738 3.173727763808183 6.476415090823424e-05 86529014.14924647 1765.7400216262633 253951 None 4603 GAS_20201031 16997731.24700317 1251.3796906734433 1.2194878123194506 8.985552433032441e-05 2357180.7928326535 173.68415981008948 None 100975 108689 DCR_20201229 495910571.75364035 18288.134492649053 39.85557854790099 0.001467984074983191 9060772.472447006 333.7316928071236 41251 10046 350762 QSP_20200511 6696944.800242493 764.8266962672667 0.009454707595560123 1.078035108984657e-06 476814.1495518222 54.36682081198441 54714 8270 461426 ZIL_20190701 154347945.8680676 14226.558479975167 0.017433793759599112 1.6163222734392655e-06 34227924.53821072 3173.340098407848 64993 10591 184168 PNT_20210111 11767955.18851741 305.2644314410657 0.4098947278658759 1.0662231226937392e-05 3489203.5985029074 90.76158592913967 None 115 1089026 DNT_20190903 4461702.528616412 432.1813473635801 0.006647136736045231 6.438727127746978e-07 109419.82491851758 10.59891533742311 60267 6281 485543 FORTH_20210708 153760461.1662838 4525.486828014454 17.9798904463263 0.0005291851804216278 48375179.830061235 1423.781103823699 None None 63782 BAL_20210806 261582465.90106353 6384.475534310276 24.14126588694551 0.0005900216602979393 69461077.7216237 1697.6549860858227 93135 None 286590 BAL_20210519 535716605.78381467 12555.294021825954 49.83146561012368 0.0011648070170988394 61201506.40799024 1430.5809240851202 81426 None 46563 REQ_20190826 8291843.976960002 821.2006508749324 0.01136356745809492 1.1250388513810573e-06 352909.4276823994 34.93945177212117 41219 29498 589589 LRC_20210105 454996395.8381324 14542.994141893729 0.3645987536589682 1.1653625362980836e-05 553507198.5807076 17691.68287943746 46099 7523 277317 SOL_20200520 4996233.199332481 512.2578534063136 0.6219357513498963 6.371566250359149e-05 2375972.6144311675 243.41207092580083 51560 1841 132466 ASR_20210603 7375846.937742293 195.7743743309435 5.9709833844115465 0.00015874097686185648 3687873.3451511776 98.04358506179202 1973777 None 158800 RVN_20200806 153857494.32915542 13106.320836792416 0.02278135030918871 1.9406249110545116e-06 32322584.935198545 2753.3931335765224 32969 8561 216731 QSP_20210310 43622396.60766543 798.1099795609883 0.0611662678468822 1.1182046648380859e-06 4907426.400830752 89.71459739043468 60898 8257 196197 WTC_20201014 10944072.929175928 957.9558097476452 0.37358369812561093 3.27073728733273e-05 1506186.1311126908 131.86707999869168 55321 19334 722283 DGB_20210204 455929547.0593595 12169.825595488288 0.03268334027075543 8.713345362153221e-07 31512604.027211513 840.1228267221042 182527 24869 203281 TRX_20190615 2121402969.5579555 243900.69504938644 0.03204407541399676 3.690631837510763e-06 916745471.4964126 105584.88520223087 431180 70900 107576 EOS_20210428 5769224914.773258 104722.3367977834 6.0253751766726635 0.0001093423842903357 3471593936.2090178 62998.95809684407 212934 82965 58571 POLY_20190730 26016654.32015253 2740.617692151687 0.05327223892283642 5.600561506508667e-06 3677553.157740264 386.6246861374245 35260 5090 307913 SCRT_20211221 639161433.3112803 13547.675621882021 4.104920848227351 8.70927088396362e-05 5780785.830338852 122.64896591207346 None None 56219 BAL_20211021 249166174.07945776 3759.153168175561 23.076371525885058 0.0003481883155329051 24368167.739639644 367.6796097848832 None None None SNM_20210804 64024385.667147115 1658.50963952 0.14571879741005797 3.79e-06 104331.49042684304 2.71355759 32356 9710 None OCEAN_20210508 620737037.036536 10832.691059349683 1.46144699823912 2.5500811699073752e-05 106968200.72767632 1866.4898199057936 105338 2916 66643 DUSK_20210430 92291167.11676879 1722.1407290747832 0.2578799568539779 4.810206963564632e-06 10948393.122873634 204.21919362003928 26564 13574 307369 ONT_20190916 492863886.9100944 47826.763249663796 0.7572728458530564 7.348471186349994e-05 70635645.67452878 6854.385573323768 81455 16286 297056 PIVX_20210603 58880043.965811945 1565.3494734558171 0.8993170183676693 2.390870193624649e-05 942629.0049755353 25.060168390149187 67369 9785 263514 ZIL_20200506 86055487.1500208 9596.868028473982 0.008170582798183801 9.098102324296597e-07 38951695.60658363 4337.346809732189 70429 10605 175667 BADGER_20211204 185967850.58827612 3463.5902293454424 18.685694158743747 0.0003478580382290035 32039088.616717085 596.4485139365939 None None None BCPT_20191017 3301915.72319498 412.38450069785597 0.028425909219455665 3.5501827917658184e-06 184918.3587566674 23.0949156303564 10851 3124 1510702 PIVX_20200520 18363784.82041646 1881.3208814039776 0.28944733785925264 2.964990476043512e-05 293408.06234011555 30.055626590556127 63767 8474 243551 VET_20210702 5576415176.039806 165988.62512192273 0.08551731688253669 2.5424824634218786e-06 749285885.8923701 22276.73054321356 387020 190936 29344 MITH_20210718 23434330.4877837 741.4603262622397 0.03781244072311849 1.197391932682134e-06 8733643.21283375 276.56490102151594 None 2743 479656 WAVES_20210825 2405744843.522513 50062.55834478626 24.0105987613874 0.0004999795417818416 165418441.26996446 3444.555352006738 195593 59324 144631 PSG_20210909 84845677.51083979 1830.6582364800636 29.169815939978605 0.0006297828150038552 28470896.749641538 614.6929942090856 None None 11962 CVC_20190805 16503217.386348335 1507.0166609951075 0.04909503379464334 4.482704908478281e-06 4465865.472447935 407.7633831088286 88508 8146 266707 ENG_20190318 33244679.45743422 8348.23852140237 0.43185003797885213 0.00010844599790285511 348672.958591146 87.55860509617318 61359 3256 352140 HARD_20210511 86163702.24376024 1543.2144390405936 1.3913583893243608 2.4899944728351653e-05 5168427.959171799 92.49491109069196 None None None WRX_20200417 25524252.505069558 3597.661667899872 0.13746884725632053 1.9401383096496772e-05 17636769.79757457 2489.129240965068 None None 29308 CMT_20210128 8133423.98260156 268.86575964699654 0.010181763181346842 3.360423622603535e-07 3825476.511220434 126.25732308890352 280273 1628 1294863 MDT_20210108 15200838.32622618 388.7743669823288 0.02490640402255589 6.309661222881933e-07 1473861.7562197873 37.33806117770644 13542 72 1369225 AVA_20210310 116950456.25805861 2139.8758127569636 3.0423315812069385 5.557020415618541e-05 11923056.62238554 217.7825371713338 50872 9491 53817 COMP_20210112 18784.39939990436 0.5457069829894245 2.0366200351815538e-07 5.9166e-12 13.521774957220597 0.00039282208919622823 1962 None 4236498 POLY_20190225 37421737.53714094 9906.088093535463 0.08294337084945522 2.207080511271437e-05 4754487.789236093 1265.1447889364292 32707 4993 244935 HBAR_20210221 1013472392.9656596 18138.66920218125 0.14263247780491517 2.5368948084365443e-06 108097698.5339014 1922.6510990692675 None 9023 100428 DASH_20210930 1587101564.938638 38164.85969776011 153.22685380819365 0.0036846295830758693 334449658.36792576 8042.474766300918 408047 42518 74827 MDA_20210310 22917744.988325566 419.33785837544735 1.1684441586742842 2.136611807648405e-05 4312372.711652241 78.8558561938552 None 372 1160920 AION_20200207 49281972.37489481 5060.120008692618 0.12636363691399768 1.297641326651067e-05 12108961.540155554 1243.481851351622 1141 72533 234875 GAS_20210108 23184585.875438467 591.8721896146833 1.6587539922152088 4.203376747691789e-05 5086000.146733155 128.88212993528404 328112 101278 181319 CND_20191113 14422168.23660838 1640.846960077112 0.00800009414954404 9.101911689179579e-07 343062.7423429925 39.03112546283786 35433 6052 432083 IDEX_20220105 161154812.34785724 3479.5853962181254 0.25976946589295585 5.64582402711637e-06 12474232.772026487 271.11470881327836 76892 1988 51993 GRS_20190329 32227414.966118738 8004.697280409729 0.4462494930325356 0.00011084016844097374 3517685.6415669015 873.7284302197356 38784 107064 7284589 CELR_20191213 15275008.311817313 2119.452886595241 0.004233619486082388 5.881430909887312e-07 4886929.330327012 678.9022327657733 18733 None 642881 FOR_20210124 10720196.05949649 334.91269177713315 0.018832057138393424 5.876171608656769e-07 4063386.1637792047 126.78994246427337 16816 None 247763 WAVES_20190614 247614838.8037443 30115.40476517465 2.47680885481386 0.00030119239460581925 26692844.19734086 3245.9838986005843 139615 56859 46755 SNT_20190213 65193985.89501331 17941.316954033053 0.01864972983913202 5.130605660627302e-06 28616781.038083922 7872.576173991303 109350 5771 290397 DUSK_20201031 14283145.290841453 1051.6652687822207 0.04845825466273556 3.573998095136704e-06 8611164.028046902 635.1092099240695 18264 13349 802123 SKY_20200501 8178298.718113506 945.0902011385392 0.45294800020811354 5.254797554099368e-05 285046.37223763624 33.06915979209567 None 3829 441501 NANO_20191024 95718479.38239366 12826.500138257816 0.7187736176518518 9.627518353973091e-05 2418574.278120555 323.95273951653604 98225 47842 267335 JST_20210704 76601886.056078 2209.634749065527 0.05343940270733054 1.5411265580340106e-06 65379437.26192231 1885.4624492246694 48785 None 109468 CDT_20190414 7415858.391052675 1461.718059393492 0.01099229770178891 2.1667164997938365e-06 558563.442648291 110.09969527760715 19822 289 420503 LAZIO_20211104 0.0 0.0 11.567817654867843 0.00018345895737998034 16924269.100003142 268.40920700355446 None None 72795 XEM_20190205 348985343.7258129 100737.835409954 0.038776149307176565 1.1193092824571896e-05 12714156.23147637 3670.0583587521364 214916 18484 174519 XMR_20210828 5668357392.685963 115567.7954104372 314.7808631648227 0.006416955773968678 271857469.1851066 5541.942223058343 435577 232841 39268 TFUEL_20210420 0.0 0.0 0.3016543338599862 5.393399342406529e-06 48628831.34392461 869.4544634457552 142605 14237 21480 MANA_20200607 54870838.72041994 5673.282919794075 0.04133794647290924 4.274071093738201e-06 13831693.856464975 1430.1059422024232 48878 6973 60458 SNT_20210108 278030655.8807845 7103.022088410922 0.07109554042885692 1.8010981198150465e-06 426454133.4298893 10803.571268672302 114907 5682 172923 NEBL_20210324 41522846.43070583 761.9940280016108 2.3526829123886115 4.3159032654999023e-05 1653790.0187551293 30.338120385079044 39766 6017 617385 REN_20190329 17858459.47746732 4433.0481988065885 0.02368015703386065 5.882366592786574e-06 883354.4176816388 219.43327946393077 6012 809 2336942 WTC_20190122 28443327.085861124 8053.498278720668 1.1021741889302052 0.00031211083874727795 1483759.9802973545 420.1673171095984 54728 20464 575473 CND_20190625 27754950.640860427 2513.1018299110174 0.015946110828458586 1.4438570256722002e-06 757381.8755025701 68.57792184095089 36263 6150 632693 WNXM_20211225 169630772.49354124 3338.552955364903 70.58969188956353 0.0013886648766650964 3950404.393124292 77.71372395189981 None None 103901 SC_20210428 1988398603.3013706 36093.68779803112 0.04185754857561318 7.599110771802681e-07 610294636.5318953 11079.713705797183 132560 41841 54045 AMB_20200106 2285648.4555777307 311.2171553944449 0.015859825203041227 2.1595649138191733e-06 648241.7472343041 88.2683204308958 19154 5533 724593 POWR_20210729 92737864.10762908 2319.200310236318 0.2151530579931742 5.375399663784534e-06 14881414.295137435 371.798338098722 91543 14012 159703 YOYO_20200417 1312180.93901762 184.81316677400036 0.007495429999791955 1.0567164281774914e-06 284462.89074055257 40.10398467609519 7496 None 3352047 LOOM_20190324 50085273.02968714 12516.716126791029 0.07229352153684132 1.8051415465567308e-05 2140764.6146671004 534.5407258055309 18337 None 438947 SC_20200320 55462164.45480381 8984.604611271448 0.001265384170062516 2.049861659949851e-07 3014435.966613432 488.32416751581945 107721 30183 162098 QTUM_20201124 286419653.5173164 15639.418026774669 2.7951834311939954 0.00015224957979260127 339149724.87884 18472.99269283485 186987 15022 161930 MDA_20200314 5776940.682820705 1049.3011658684657 0.29848419542018206 5.3654686028454495e-05 1123557.0429752967 201.96747868353694 None 372 1557783 BEAM_20201111 19232096.677775368 1258.0424908705668 0.25815967443924337 1.6899472003002203e-05 9852335.137150135 644.946822837927 None 1583 422204 SYS_20200914 40122227.86376603 3886.9052507131337 0.06722532179514774 6.510630739930641e-06 1501899.689775062 145.45581973320654 59093 4491 424365 SOL_20201228 61706533.09169116 2324.1912042134854 1.3065401279822344 4.9681524792960445e-05 15721103.749787897 597.7990181778872 104880 2766 87194 ZIL_20210813 1219833593.8696272 27439.79140504153 0.09878952020333447 2.222089409800566e-06 136900990.82551003 3079.3371734009324 311943 35518 45480 TWT_20210809 158968790.79387873 3613.5564227091186 0.459086623129846 1.0436549526045068e-05 11490903.883712446 261.22605503900604 None 42709 3506 STX_20210314 1334014115.9427974 21741.646641737752 1.2655020696077826 2.0629030588274442e-05 47946757.372976385 781.5831741486235 55020 None 60484 AXS_20210513 402700561.1476519 7807.574399395045 7.109518277331023 0.00014173033485217863 104489783.09182225 2083.0345135275543 68263 None 17077 RDN_20181231 13543811.939099604 3564.9992969137243 0.26757481650729614 7.040186947489659e-05 3739274.569515968 983.8441584680488 24821 4429 561475 ONE_20191024 13276940.367491206 1779.1410661564573 0.004767780426221064 6.386140564133806e-07 3116731.2004798613 417.46644701634654 71185 None 174888 KSM_20210617 3245714742.9834633 84857.38545856028 362.3444137233758 0.009467446875923585 358382544.21180505 9363.929924345099 82637 None 86794 NAS_20190228 28047028.89722887 7347.43322909581 0.6157270182447083 0.00016149571379243992 1887571.6375980908 495.0809691887159 23430 5181 410300 WAVES_20210110 617369902.2268199 15256.63533981323 6.225570971786267 0.00015404107287034913 128593772.39125583 3181.832277451481 None 57236 144968 MASK_20210727 66406179.3329717 1773.7455298774064 4.048048052682066 0.00010849177705660733 34904625.74362889 935.4792297767032 None 82 229094 TNB_20210104 7515322.720548056 224.65028748303 0.002152164640079405 6.53801580100744e-08 287467.93364052277 8.732928036376213 15741 1414 3447610 BNT_20210421 1215430981.8303447 21513.75838079071 6.77485938583982 0.00012017708339468292 220720616.31864348 3915.293056811288 111615 6980 28639 BLZ_20210127 37234403.50905329 1142.6087156617507 0.1442447768843429 4.42852538659927e-06 18902381.062511314 580.3307142942444 44512 None 447066 PERL_20210201 0.0 0.0 0.03920316746487871 1.1856888594667908e-06 2860204.124266861 86.50607553541154 13875 512 461577 REQ_20190702 14389829.387706138 1357.9263226664366 0.019639779722145367 1.8526480730790232e-06 811764.602004335 76.5748978335695 41673 29892 539616 CELR_20200308 13546644.450660052 1523.9898527124446 0.0035084047559449504 3.9442858859136704e-07 7162056.171227313 805.1863748737901 19286 None 1113968 STMX_20210318 302044020.8549593 5134.803019087571 0.03879779806937492 6.583791294587556e-07 958018939.1838746 16257.099798732002 None 1802 141471 ENG_20190426 31132700.381252564 5993.54723031926 0.40288904381939145 7.743211781260975e-05 1240816.2191873714 238.47515622932698 62055 3376 361311 YOYO_20200913 2009229.2804687903 192.68600341632086 0.011555445973051623 1.1066374514616437e-06 878647.0418031742 84.1459278458809 7788 None 2642123 BLZ_20200704 6749099.076454799 744.2945826874451 0.02928037532628052 3.2288440375902302e-06 939832.1414928045 103.63840533393123 36202 None 458289 ADA_20200331 933379645.645711 145301.4786340005 0.029919979067588413 4.666932879283789e-06 104645794.60082452 16322.701910925152 155249 77651 49001 REN_20200207 50641382.36713962 5199.651317017597 0.0597617880960979 6.1370001593765495e-06 4347884.259139077 446.4887554632849 10683 871 448735 DOGE_20200907 349731791.61472195 34056.50249266361 0.0027723635407561308 2.6996975425197916e-07 160023366.51023656 15582.901843948011 152045 166810 90441 SRM_20210828 372748821.877289 7600.18370509996 7.450457647294322 0.00015188107923028645 944513170.7113518 19254.344700148176 111789 None 38162 WBTC_20210513 9027706987.913645 175029.53997183742 50162.82397570515 1.0000106282695418 900244022.190753 17946.628974933406 None None 227802 COMP_20210221 8024138.080958592 140.97765443839347 8.644701904354327e-05 1.528491326390748e-09 253.36730965717697 0.004479850658666281 None None 1914243 NCASH_20191017 2613206.5703717256 326.3100016145551 0.0009015055294347041 1.1257178073259208e-07 460554.1683604261 57.50980017688992 59243 58761 890063 CELR_20210310 130770150.06500632 2392.53033456114 0.03317384425294254 6.05877555657527e-07 52066858.20328149 950.9341316743261 33745 None 259985 XVG_20200404 41681048.230182335 6198.210070143739 0.002570385940181691 3.8203459385572475e-07 642835.0928605223 95.54411257004357 294654 52107 317602 NEAR_20211225 8852401191.409712 174161.18274904127 14.843810965722534 0.0002920330455069095 1115877096.8900454 21953.458432522322 None None 8222820 FET_20191017 13616207.582728717 1700.5621858341235 0.04001759744254134 4.998351594754843e-06 3665781.1996268486 457.8701490384521 16303 310 518889 IOST_20190923 78677181.42287508 7826.589891027419 0.006543159485096293 6.513924608069515e-07 14894732.809249474 1482.8183050984076 195633 50815 97717 XVG_20190509 107869606.01618518 18122.962305221878 0.00673826083459037 1.131187230242452e-06 1587085.6598769235 266.43240382409897 305052 53092 413203 AERGO_20210310 46655788.7229701 852.107914090776 0.17671315870546764 3.2274383346299246e-06 20015047.8307742 365.54908028189465 14247 None 593763 BTG_20190821 238968317.99892727 22207.735834231487 13.630365423246248 0.0012678637337587577 12265063.298069019 1140.8666213274387 75028 None 269887 MANA_20201124 117970799.35887681 6441.5783744906 0.08921463364472476 4.861182368780587e-06 39811228.59516538 2169.2589502412293 54209 7532 87671 BTS_20210428 333708754.69805205 6055.80728624329 0.12313085686086096 2.2344536355184036e-06 101234107.66012664 1837.093687695546 5170 7098 102843 LRC_20210814 419894581.05740803 8802.686373031409 0.33696928953676053 7.062520495423946e-06 113597913.2936834 2380.8923121064076 83776 11117 273210 SNM_20190922 5811996.0077584 581.7473054683504 0.01327741403500973 1.3295540958688294e-06 2466501.2096321043 246.98685881790257 30946 9864 16793543 BQX_20191024 5917285.019528197 793.1185276772059 0.0421203030288549 5.64249588473967e-06 434000.6824928565 58.13935059447569 59862 5731 349258 LSK_20190414 258921289.85804787 51035.214723570556 1.974348408655306 0.000389103987455045 5410741.1355897905 1066.347227123371 183819 30422 170136 CDT_20190421 7552742.6227797475 1422.3727877178487 0.011197939487968484 2.1085334695999128e-06 259546.03038073686 48.87162433299262 19891 289 416908 GVT_20200718 4962819.58117654 542.201650587079 1.1180234070259758 0.00012213799533191097 83687.90104359007 9.142449436 20318 5516 229821 AUDIO_20210527 225337132.31355414 5751.407817206891 1.2686016826107847 3.2382159401009525e-05 17589348.52275278 448.9833928420252 49628 5367 31398 ADA_20190901 1396454704.9680758 145482.0248895906 0.044880548452087936 4.675635409967987e-06 96161823.44197886 10018.095640083226 154457 75199 100209 ONE_20190702 49416337.74486219 4654.092026589596 0.019415769035337357 1.831516829595879e-06 16764704.028112398 1581.438134889112 63670 None 175184 SKY_20200318 5002980.192218407 920.9749411454995 0.2913758095734927 5.417272558149235e-05 151212.99804841442 28.11359069108086 16210 3830 253868 BRD_20190904 16033758.05378007 1512.3840839374582 0.26695347614818005 2.5180384232073512e-05 108185.36006461408 10.204583113201673 169 None None ONG_20200626 0.0 0.0 0.20270419728861983 2.190650548171749e-05 30408715.75238244 3286.3093474727652 86050 16500 143020 BAND_20200306 8149881.564502903 899.5708470014266 0.45269865531801196 5.000161595476979e-05 2140569.623681176 236.4308773406106 8214 1043 796393 BTS_20210104 65944038.11825169 1971.2190243743507 0.024284354207963682 7.377293008729579e-07 72385210.62196521 2198.975124822231 13136 6874 130433 BAT_20210617 977738813.1651381 25562.431056490448 0.6535535286957411 1.7076248671583034e-05 97531237.49373887 2548.3263291592734 206036 75101 26903 JST_20210508 206672811.22197497 3606.7168233159214 0.14421838831151862 2.516468929976342e-06 551205664.3377154 9617.996321915929 None None 74071 NULS_20190716 45231206.23961086 4129.263089277073 0.6148619893197796 5.621909213186545e-05 5860884.771434205 535.8822413205681 21318 5317 418042 POA_20190716 4889700.559754264 447.18483517719 0.02218622582365932 2.0312009780574865e-06 501923.3794621837 45.95226188432226 17793 None 582366 DOT_20220112 27475553928.56419 640922.3610209067 25.549876615214746 0.0005971969601136967 1276554183.5632813 29837.88490745344 1088018 37978 13365 POA_20190723 4741868.290070067 458.64949320119666 0.021537537029889003 2.0831832179410102e-06 351014.3636333972 33.951293063945336 17788 None 582366 BCD_20190625 246453849.0228769 22315.428587222475 1.314640520587626 0.00011903749978797474 8149488.435489358 737.9163449777496 21326 None 3124822 IOST_20211111 1100655865.6482482 16958.067449492508 0.048318704364257295 7.440264645217865e-07 182513115.65968218 2810.393820774307 266287 53940 219178 ARDR_20190605 79621143.89138262 10397.324019347292 0.07972960178592725 1.0399587980145951e-05 1151504.0708468903 150.1972620711388 68242 6548 1048625 CDT_20191113 9071109.296626851 1032.0433009591418 0.013465461960207455 1.5298144225960064e-06 6395282.777175709 726.569638532662 19523 299 193282 ARK_20210809 196485870.56593722 4466.365857155873 1.2355663530808327 2.8088173652907747e-05 9682455.340723611 220.11160009225068 73144 23422 125650 KAVA_20201018 59740966.9160938 5257.558202153969 2.030138906399205 0.00017865168686753433 7664155.425323843 674.44365054685 46022 None 82175 SNM_20190801 5351844.521371546 532.4135576624666 0.012687180387666044 1.2598491095650882e-06 122533.34962305262 12.167678451605061 31142 9952 None WNXM_20210804 124212268.50310439 3232.9567402896596 56.630866785782146 0.0014744136974215016 11199879.55280983 291.5946154346991 31821 None 129643 OMG_20210826 934259004.2651914 19059.913908678125 6.647399562483428 0.00013564906017503862 499021539.57167804 10183.200545373826 None 5060 356595 POA_20190511 5815293.098893002 912.8442900901632 0.026413755024297405 4.146247668644618e-06 1272039.6863099337 199.6759483433683 17414 None 629300 NEO_20201130 1245809886.1283963 68678.47191686166 17.685954215371066 0.000973374062453789 339909970.45027214 18707.475139688817 324796 101021 122930 ELF_20191015 37826629.11617731 4531.943538145086 0.08208138186298855 9.833511520650502e-06 8730990.872675667 1045.989935652681 None 33552 876099 CRV_20210108 129489552.80833647 3300.2885545769764 0.7199306776901756 1.8258589026056673e-05 82870816.91033982 2101.735951958768 53274 None 29021 PERL_20200610 7050329.491753787 721.3519980946438 0.02001526460137642 2.0496365298022174e-06 1630335.0569264507 166.95229141581444 11780 480 827795 BAR_20211011 50192991.66419602 917.3047867238587 17.024966607775504 0.0003110510378446989 4731604.522014128 86.44777585472562 None None 34891 NEO_20190902 618319575.3431855 63551.135390744086 8.773683769067764 0.0009008826552427319 142822468.54971996 14665.024188473177 323997 98214 210014 APPC_20190201 4193940.5485110143 1222.316793815329 0.04024054139418421 1.1727772519065493e-05 154832.69051804178 45.12470533442919 25334 3437 1889954 DCR_20190908 251080652.96380448 23981.59902838072 24.251689637210912 0.00231653712768178 12231897.181646192 1168.3987543611127 40572 9599 193164 AION_20200713 50322312.55624355 5422.768769859807 0.11461710985668834 1.2346018360819384e-05 5264089.32598274 567.0230522549143 67605 72558 281333 BCH_20200305 5844116225.652796 667567.5265750958 319.16897169620177 0.03644495724424958 10546645824.965351 1204290.1730653404 2592 285892 124622 RLC_20190305 23607645.487716664 6354.7370418212995 0.33742225934464165 9.082776727175506e-05 607083.9097047753 163.41564475381176 23920 3272 901823 CVC_20191017 27145766.75690894 3389.715540727778 0.0375967953275819 4.695984114316592e-06 2975073.9235219858 371.5981578229728 None 8143 107901 XZC_20201030 38020929.73374986 2822.6156503836546 3.4020931964852217 0.00025300466341940256 5493863.120129801 408.56405433476107 66929 4194 317901 CMT_20200113 8702240.333291631 1067.485421381024 0.010991522527473634 1.3460358419788423e-06 7908141.207784898 968.4410401290385 288134 1641 926664 ARK_20210115 61748124.84910507 1581.0195039200214 0.40010051908601774 1.0199100395791735e-05 2998111.4462777367 76.42589344350492 63100 21564 94251 VIBE_20190929 4155949.2755029793 507.3032370618819 0.02220716987432744 2.7109421040399706e-06 2153377.0348013244 262.873680102042 20226 None 1366400 THETA_20190723 126109624.6790627 12188.73997424719 0.1260437811181518 1.218750057986267e-05 4624094.702262239 447.1157272910864 None 4016 240889 ARPA_20210107 23166038.974095065 630.9717647587289 0.02360356026792015 6.40850370344237e-07 18958299.91206206 514.7288536913861 22159 None 1160562 GTC_20210708 100316859.384916 2951.589832314844 7.056343153336759 0.0002076751306495192 25158203.913706042 740.4307261071209 None 979 25905 TKO_20210930 123666603.96769792 2975.1135497486903 1.6495860997391611 3.9685687887708245e-05 21620505.735686228 520.1454126805044 320345 None 31824 BNB_20211111 102244405701.09842 1577347.7876278686 611.442280988011 0.0094134309056379 3696723702.1209984 56912.736049132145 5909537 699005 121 LOOM_20211202 99223490.10915864 1735.6474458630416 0.11901705427253682 2.0813325549721224e-06 2523083.6162552717 44.12288727465708 38702 None 339032 ONT_20200626 402428267.2475125 43463.47475521221 0.630277193048762 6.811487363956708e-05 144972671.3019323 15667.38459812497 86091 16501 143020 PIVX_20200109 14474940.476277296 1798.7190597444226 0.23271467324561354 2.9001296821573094e-05 399533.97763233114 49.790601142669395 63602 8520 243133 VIB_20210916 9190837.331029152 190.7111491871213 0.050349022524213825 1.0446269217391826e-06 2305281.668737186 47.829315697172916 32928 1294 6471622 AE_20190930 51014321.88119276 6330.2897161693445 0.15414577179490097 1.9144049556769416e-05 44857789.07598547 5571.088503292847 25006 6351 366959 AST_20201101 19693883.224444814 1427.2238570972356 0.11445830631073317 8.294998557830218e-06 927092.6638264473 67.18806661823035 33946 3465 170837 NULS_20190227 16583322.28931316 4353.480488562356 0.4145830572341691 0.00010883701221441065 2986874.4731047507 784.1190995139887 19562 None 499055 CHZ_20210420 2737396790.3873663 48898.17372294922 0.5069459300269714 9.064903560590357e-06 1237527294.857575 22128.72205303106 290530 None 33338 WRX_20200421 23642936.864649832 3453.6924871445567 0.12671132367334753 1.850879065542801e-05 12479010.049694672 1822.8156560988045 23744 None 29308 STX_20200321 48601042.18304771 7859.220867951196 0.08142303054692536 1.3154944251156198e-05 712819.7824335161 115.16526019785057 35786 None 40997 RCN_20210703 19377846.158996485 573.3113796185139 0.037779636138195814 1.1157159664364573e-06 285089.4711882891 8.419320760639028 19903 570 2739535 DGB_20210809 767374029.6015276 17443.384559904436 0.052649105038057975 1.1968844160898166e-06 25151427.88998496 571.7732915340013 223384 40710 115108 DNT_20190622 10946284.08361561 1081.3533346536149 0.01715398970574798 1.6954769481708768e-06 1555155.9975021244 153.70949789546736 60662 6375 1037935 BNT_20200410 13562339.97747874 1860.0336973524247 0.19444112343222208 2.6667008962728397e-05 4507396.24824371 618.1756926146439 736 5016 146407 STEEM_20210217 165669777.60351163 3368.667244300909 0.4424130382133234 8.99416235347661e-06 58586873.23789889 1191.058590434525 12396 3875 182454 BAT_20201030 282203144.28970593 20963.12168357413 0.1893406289299579 1.4080761262957976e-05 200669182.29870114 14923.235782776756 123085 46995 18546 REP_20190812 120921316.10774589 10477.978783611805 10.994638029446545 0.0009523254688566483 7593343.0349677205 657.7146011171607 126066 10045 203996 DOT_20211104 55783091481.4853 886890.6458978122 53.33615766815946 0.0008458808885474749 3252716884.514119 51586.22534425105 814012 33674 19767 APPC_20190708 10085258.62274628 882.544038350821 0.09309797325308042 8.137249844562592e-06 727749.7468618008 63.60913463103464 25470 3362 1256272 MATIC_20200223 53019036.52154578 5492.587856368269 0.020738147281666508 2.148374236956319e-06 14530943.250439076 1505.3371785779393 31680 1529 160214 DCR_20200127 197981535.07307208 23070.2174308863 18.01133037944796 0.002095869750904481 102339457.87947041 11908.624714268293 40875 9717 104467 SNGLS_20200421 3927806.658796354 573.5907383835215 0.0060908000884441395 8.895996057151535e-07 26926.393935955628 3.932768943476499 8875 2127 2196057 INJ_20210702 191869197.1286099 5706.699044022392 6.622056126760157 0.00019689300163677347 15872662.12402363 471.940441117093 75834 3713 124543 OM_20220105 63625081.399028294 1375.3039084085794 0.15047891258586552 3.2711017214137935e-06 4445108.676691716 96.62751008983194 56706 None 64108 ZRX_20200707 278187330.68857056 29801.09880407869 0.3999640254958181 4.280798326085066e-05 103292403.40034696 11055.342965542082 154672 16114 78133 YFI_20210422 1661331121.0980244 30661.249139730255 45660.586206262866 0.8441901225545342 535222762.6004351 9895.400105302722 105654 4655 20046 VET_20190712 336430665.16675806 29628.310503124285 0.006050562837450448 5.317185768262819e-07 34853322.734754786 3062.8818607559297 112556 56900 139851 YFII_20211002 170010692.50799748 3529.9543690473133 4282.219671820575 0.08891334645524074 32783097.42366798 680.6878494085422 18597 None 483541 AKRO_20201224 25521755.19302355 1091.6051324698958 0.010832300420070821 4.645967174223565e-07 5811172.765766957 249.24085251061314 24762 None 166133 APPC_20210202 5393114.305480733 161.54938754656897 0.04832214048553441 1.4468476592935192e-06 2964863.776248584 88.7731001087082 24281 3120 1221759 LTC_20210731 9736551488.51875 233371.62054272692 145.8541556975912 0.0034917203863022088 1806024558.0415397 43235.879960465376 189260 339511 80364 XLM_20210610 8369854110.691828 223441.74595841859 0.3639689739692573 9.701048407560557e-06 922082909.952647 24576.740285534568 589258 193363 22006 PIVX_20210430 103134227.28606069 1924.3515258076065 1.5752428077059195 2.9391997014904176e-05 1096190.2495030214 20.453494777787196 67495 9663 208244 XTZ_20211221 3590700544.7734737 76108.54425913867 4.11231476362891 8.723035780250152e-05 182830054.10716295 3878.1883084126907 238056 66058 36113 EOS_20210508 9874771055.21383 172333.5333829687 10.42237400315968 0.00018186016819777276 15163479629.48477 264587.79497315956 215002 84532 54887 MATIC_20200412 33703665.538224384 4898.008316612988 0.012222629702698409 1.776078683142083e-06 16716585.320677117 2429.0984481372116 33899 1620 187719 BCD_20200605 111383417.191035 11411.858552738635 0.5922308392568238 6.058536822960556e-05 7586345.815680497 776.0851416263602 28419 None 975447 DCR_20200321 124809366.13823341 20188.937596317075 11.168620519399406 0.001801247447545483 37060983.191649035 5977.103552003725 40766 9743 200827 NANO_20210107 340664581.86305076 9278.657117398732 2.5385647206392994 6.875030764827508e-05 118771803.21102715 3216.619983847455 100224 54565 338450 MFT_20191102 9033335.454563418 976.5429295929742 0.0010009235960735093 1.0820420272498335e-07 1407471.2128309095 152.15377181651456 18624 2337 1257642 YFI_20211207 849539739.5174363 16831.119655728337 23865.3893454435 0.47251482716735854 179291022.17484158 3549.812874591927 156589 7670 25552 BTS_20200605 61555692.66272521 6297.1690982390655 0.022712635121254765 2.3235105940372787e-06 14678826.193896484 1501.6491035702495 13135 6986 151831 RVN_20190622 246005202.72066322 24307.506641494827 0.06427867750824669 6.350538519724919e-06 32664760.984785467 3227.179383783592 25699 6686 184956 PIVX_20190813 20875904.457477804 1834.4894764880883 0.3436610876928955 3.0199536989413676e-05 6410896.565312114 563.3634848192639 63283 8609 295552 GLM_20210825 448953536.7884981 9342.538004430726 0.45817369323936885 9.551111955423021e-06 15134001.784345778 315.4841657404831 159326 21163 187771 IOTX_20190608 22326497.22816994 2774.8736434539665 0.010805879785708006 1.3441363071572024e-06 1504075.7555739393 187.09099785245965 19622 1727 736941 LRC_20200511 36090264.7619437 4121.735091012453 0.031019983048692402 3.538303355536528e-06 2663517.6110609076 303.8149081498197 34194 6803 546784 UNFI_20210809 44129904.801382646 1003.1270926338234 10.356961538266054 0.00023544781439402917 14800130.6796001 336.4556688159003 None None 266714 RLC_20190321 27213463.106877763 6733.59751533495 0.38895993295445214 9.624279085027632e-05 543683.2502621111 134.52694972029988 24387 3305 890313 AERGO_20210117 13165599.135025837 362.9983214891911 0.05052113540517033 1.3958024496506354e-06 5322258.521724392 147.0438346786761 None None 562212 AAVE_20210707 4084231061.66215 119594.45479625912 317.5958147980293 0.009299536119654239 971401609.6076249 28443.650496405808 250511 11781 14216 POWR_20210809 129273268.81915846 2938.5452912700393 0.30105256218276427 6.8438385556207225e-06 10697741.672937436 243.1921402312229 91897 14045 171172 DUSK_20220105 336908877.51639163 7274.3915802639995 0.8601302400993115 1.8694052279428227e-05 101861401.32376404 2213.85352220892 38258 14134 206848 DGB_20201208 297627351.30535173 15495.727947453186 0.021439906326731782 1.1173312022070477e-06 7488238.028051985 390.2462012095585 None 23516 249405 BRD_20200305 13748629.652530046 1570.4921559651718 0.22404377181765928 2.558320026480735e-05 756959.9821015518 86.43605067633749 180 None None AMB_20191030 4812568.582041667 511.86366321831997 0.03331217158509405 3.5401323982562984e-06 2655235.0118368743 282.17564461015985 None 5588 589761 1INCH_20210212 542978142.2769104 11374.534630349239 5.638933018993051 0.00011810230348367069 454039291.93822813 9509.438411377883 None None 12553 HNT_20201224 76830035.62658924 3286.140023816049 1.2352759478182955 5.2980911552619036e-05 4878794.179856818 209.25119070192443 17256 2016 69753 SUN_20210125 0.0 0.0 0.00032688804480533 1e-08 19.6132826883198 0.0006 41 None None POWR_20201129 43897452.5322385 2479.8391353465313 0.10159742109498664 5.735332877348557e-06 1457548.6857783934 82.28089657970172 81115 12598 284033 ZEC_20210206 1030880160.0773765 27149.553650246402 95.94479856292482 0.002524102382326111 832685608.8743693 21906.176890975716 72416 17073 125065 RVN_20210408 1533917110.5451236 27232.42771346251 0.1796622427834974 3.1972338110338644e-06 250924637.36861378 4465.405319375397 55785 30094 44096 DEGO_20211202 53393640.792048596 934.1503369388004 9.851667081162091 0.00017228283410389598 18140374.065055285 317.23311698266224 None None 193048 PIVX_20201111 21023444.066078227 1374.163184192452 0.32341555412474243 2.117335585327217e-05 320108.2188977041 20.95683137015737 64856 8622 313548 WRX_20210201 24607793.215962015 744.6016623948807 0.10348688253136307 3.120852078440472e-06 2633357.8681952637 79.4141264594002 None None 4666 OG_20210304 0.0 0.0 5.065138338154382 9.9842148880446e-05 1815179.5456204081 35.78015334219077 None None 482158 WAVES_20190729 137050305.6766886 14355.68770314863 1.3687545291056316 0.00014353206402405795 9342581.045573361 979.6935186467606 143307 56859 48211 ARDR_20190131 51631651.601400435 14929.451746682618 0.05168336106256033 1.4944403697303787e-05 402129.1799695291 116.27689609149161 69935 6613 704749 FTM_20210723 469057859.258989 14490.787799789361 0.18442873019451272 5.696806282555158e-06 30035638.8296211 927.7687690235697 103040 9259 42722 KAVA_20210727 353299700.1943914 9415.927770773511 5.01943452162787 0.00013448680108883645 243946255.1826079 6536.105084297423 124961 None 50166 VIB_20200315 1571162.9356573413 303.96414854595656 0.008593226346902754 1.658571359265098e-06 451450.2626616244 87.13403389556375 31505 1106 None REEF_20211207 325978613.473837 6458.303000284731 0.020297810846828263 4.0187974498710453e-07 42822368.88986798 847.8472293918833 221600 14407 78929 TFUEL_20210710 1934444055.1227016 57035.25858852475 0.3665010164206075 1.0784210163731179e-05 141357113.76542833 4159.40135138769 181940 21232 18384 DEGO_20210814 58669689.10160252 1229.9536504236437 10.804216007094606 0.00022631760323129317 35455977.30295133 742.7019043452942 123995 None 244168 SNGLS_20200318 2532446.9192708223 466.1861656092938 0.003914818072403757 7.278447907128142e-07 76305.63220181256 14.18677851 8198 2132 1285734 MTH_20200318 1528302.4109365656 281.33795635531123 0.0043886818445109145 8.15945762879816e-07 43074.786974153125 8.008484361305475 19208 1928 1053445 ARDR_20210826 307353883.23467463 6270.512111662733 0.30871076839621 6.299685178257748e-06 50449070.79816227 1029.485512329671 None 7036 None ETH_20190316 14361253091.20203 3659607.950369339 136.4478648131974 0.03477034265117202 4756481151.442661 1212070.8497411853 440541 432629 32450 DODO_20211230 226262901.9462379 4878.534736973088 0.8612201529659919 1.8490753434549034e-05 30431592.506857973 653.3788970532845 None 1262 17050 MDA_20200903 8117188.161234745 711.4996955564786 0.413710392364756 3.624758038032917e-05 257976.68244709613 22.602841760395638 None 373 1669605 NANO_20200914 117109853.64553292 11345.205121477076 0.8769713462400514 8.493282668497321e-05 5609299.990958098 543.2488826444032 98855 52604 201446 RLC_20190207 15772534.410267591 4631.169493644218 0.22543561995933473 6.619294900740874e-05 143756.75221071506 42.2102033843234 23850 3262 451476 COCOS_20200309 9749260.315330574 1212.0332085105322 0.0004032155964540621 5.012268931921648e-08 2028912.3803901551 252.20885747606158 14702 212 73199 OMG_20190621 284830216.6754979 29776.62406576406 2.0284188158362664 0.00021223487933162442 130198359.03978816 13622.745364148434 289309 39814 None NBS_20210603 0.0 0.0 0.012996768595272197 3.4552428135157696e-07 2336501.1448318083 62.116815655148585 None None 498254 LTC_20211007 12309753394.568789 221879.10572308247 179.19993360488678 0.0032300176729316895 3225630004.9054756 58140.88048244286 198381 344249 150290 NXS_20190712 15947592.090539046 1401.4615165554728 0.26709356433317777 2.347196677764597e-05 173231.5325204113 15.223447207764531 21422 3529 987625 CTXC_20210624 26000441.835396074 771.1971874126791 0.14526728888288548 4.310411205222288e-06 2973258.8019817392 88.22335816028149 19963 20582 541278 TNT_20190430 6743105.078074931 1295.3539758155925 0.015741000122214847 3.0231285893287946e-06 653964.4697553682 125.59676447321708 17294 2504 1188979 NAS_20200502 13574420.611111324 1531.9076783274536 0.2985109833853882 3.380056967552212e-05 5090240.539179344 576.3708526180834 23488 4940 943407 MFT_20200113 8201945.422884146 1006.1153025613895 0.0008982155686263481 1.1017882933082372e-07 1098999.2278621283 134.80778177393148 18554 2420 945394 HOT_20200412 60022975.659508154 8722.880116250353 0.00033791319048498506 4.909735355755991e-08 3966846.1895738323 576.3659287713419 25075 6943 474054 WTC_20200229 12611823.801844846 1442.9761481817936 0.43018225277435373 4.937195489244441e-05 9643916.441697357 1106.83089429014 55026 19427 899275 PPT_20190126 48388235.57392469 13569.547531485092 1.3084364640416 0.0003669458224253477 668018.0787178595 187.34302354503333 23360 None 502199 WABI_20201129 5119284.12046084 289.19676141920917 0.08665523993415639 4.891823446229377e-06 577342.7552420746 32.59189898671814 41049 7509 1314956 XLM_20201129 4311762511.303184 243572.48900101075 0.19993481233901436 1.1286631985101115e-05 1909522436.233778 107795.51971429636 293472 113079 47328 BTCB_20190922 0.0 0.0 10005.0089144148 1.0 2361.0430341779825 0.2359861 None None 85843 LSK_20190312 166149039.42475855 42971.33587741813 1.2739068302103667 0.0003298831842103916 3699099.285819489 957.8963093517672 183022 30457 174476 ATOM_20211207 6901113373.16055 136725.16956933736 24.34591656727006 0.0004820288658400165 799267750.177984 15824.835596403103 None 47523 31405 RCN_20190207 5214968.340944312 1531.2315486330226 0.010417215336694447 3.058727825289525e-06 243427.58165436587 71.47579207913482 18112 1101 1863788 LSK_20201111 162340119.18745336 10613.531797572392 1.1383036612352044 7.45224160713045e-05 3543978.7049961267 232.0170483462873 177231 31044 211425 ENG_20200305 21152263.06777628 2416.2533873508473 0.2571164964357495 2.935972183620832e-05 1748872.3519753898 199.70093904054008 61405 3614 363885 XTZ_20191030 711236178.6742585 75581.40370360142 0.8771451079850286 9.32257304314449e-05 23778335.737411812 2527.23602672385 None 17069 211690 FET_20190613 0 0 0.23158402788497148 2.8480255220139664e-05 57657801.17919021 7090.7692037857105 9429 263 299153 GAS_20190220 34382349.54865938 8782.180508556112 2.46731702546782 0.0006302193937859323 4482716.473540868 1145.0068350796876 316156 97925 150509 MTL_20210610 168253677.49766234 4482.47074396438 2.568185459162758 6.845114073112018e-05 35159196.1783738 937.115766703048 None 4161 163728 AMB_20210318 20228350.250743877 343.9944594247753 0.1430649559402997 2.427740383090954e-06 11484591.628809402 194.88774659954993 None 5554 320095 BRD_20211225 68701531.35129492 1350.3497059212173 0.8001927797046788 1.574277218898969e-05 4000835.046032236 78.7113259365533 1110 None None CDT_20210902 30231026.872539975 621.4725359946361 0.04621767830255403 9.499014117807027e-07 15112710.07159453 310.60808677719297 21467 337 791972 BTS_20200506 55973009.62800391 6241.527509348454 0.020703176143667668 2.307436557728293e-06 24081711.916931182 2683.9853974195153 13183 6999 125350 BCD_20190613 233401544.1238404 28733.66629340045 1.2388253454071008 0.0001523510163140293 6079987.850823389 747.7182572055768 21273 None 3286107 HC_20190329 60246546.3530107 14964.13430158849 1.3704800784734719 0.0003403988592492388 9879934.137345167 2453.970957064887 12514 796 596410 PPT_20200526 11419515.066046447 1283.3393931905107 0.3152099772309585 3.546768825450617e-05 2599047.824659669 292.4470183760663 23715 None 2264384 TLM_20210616 185021407.3170637 4581.422145798066 0.14882034828142407 3.6871237196745122e-06 15777782.216860719 390.90511295965894 49175 None 11143 ONG_20210723 0.0 0.0 0.6787692622656111 2.0964904308962963e-05 11807056.536900388 364.680347546099 141631 19697 156257 QLC_20201030 3444338.123077039 255.85852126195175 0.014233695508257111 1.0585309713856369e-06 217448.80577725338 16.171225207994304 27506 5615 940522 ETC_20191030 563829869.7213051 59918.94582496143 4.920810659765865 0.0005229991752736802 812950671.9707234 86402.94463170879 229711 24963 405893 COS_20200223 22682459.07908824 2350.7605280704224 0.01147550500231837 1.1886510481281665e-06 2316591.0142893237 239.9561794154584 10107 None 173574 BTS_20210220 171622190.13300294 3068.3068124458846 0.06332464171200723 1.1321346581701895e-06 52058913.68619348 930.7229990952266 13351 6965 134881 INJ_20210120 119018721.92244062 3286.7762873339702 8.677598712565493 0.00024076427996609322 137367730.9050402 3811.335821975352 40570 2026 116830 NEO_20200704 690768228.2366455 76166.82423521836 9.786296060950093 0.0010795725149324916 130382991.4139768 14383.163258964705 319626 99710 207094 NXS_20210324 87916456.04961812 1612.7183079010188 1.2905267457471925 2.365905033283406e-05 823278.589781477 15.093053792005831 24973 3766 380426 LUN_20200105 2696101.272715149 367.0723859992329 0.9967330807681857 0.0001355531565260634 4526092.608133002 615.5370495869012 30176 2164 3002754 CRV_20210814 850232176.0988092 17824.692948801458 2.3572533967775855 4.9407357733125366e-05 218046009.2579029 4570.182058667343 147733 None 12841 BQX_20191026 6229791.597320472 719.5260304998853 0.0442279522291578 5.108469818559698e-06 746517.6324627303 86.22517214225358 59846 5728 349258 AION_20210418 200946248.21823186 3335.8604514854533 0.4093761256529812 6.810428924203427e-06 21414743.825837776 356.25817339314176 72773 73108 244178 CDT_20190227 4965717.585872575 1303.3613769974925 0.007360383592503209 1.93225976069626e-06 260547.2230222453 68.39927681484073 19449 283 414605 XEM_20200713 412429437.90435076 44443.694298406415 0.04591025890886527 4.941265509988501e-06 9727864.65407889 1046.998279762572 208491 17840 240826 DUSK_20210427 95668572.99977762 1775.822348544571 0.2681417357236973 4.976099147285401e-06 16830643.296020206 312.33835914260965 26410 13565 307369 DEGO_20210703 23598093.351961996 697.7924107819264 4.360028933535748 0.00012872627459742454 4604395.401226274 135.94099392655156 None None 168590 MANA_20210727 919048653.2622534 24534.22377993643 0.6894335162515912 1.8421534162606483e-05 232310197.18266025 6207.284869162825 151017 34794 17778 REQ_20200129 9298420.43600288 998.0307800308954 0.012134035586671912 1.300820598997702e-06 367633.4576988612 39.41188166455635 39969 28509 1277267 WABI_20201106 3612541.9747109055 232.4869485656685 0.06094491518351483 3.920524035673953e-06 657744.4014436825 42.31202434895595 41195 7601 1658910 PERL_20201111 0.0 0.0 0.020930967481846762 1.3705022189668894e-06 2911547.2032018537 190.6401080636008 13273 503 374818 MITH_20201130 3770072.8833777285 207.83495742695828 0.006092329012049 3.3530082505298384e-07 619246.9931186428 34.08122366563192 124 2107 756695 QTUM_20210210 520828619.3245126 11200.13173821638 5.0004206361205075 0.00010736384568738113 668365449.7714353 14350.44973890635 196081 15263 197984 CRV_20211104 1720150488.7061682 27323.6624334744 4.395820946871317 6.970256019574738e-05 419937585.793501 6658.761857227486 192520 None 11896 WRX_20200318 18629455.71764273 3440.7994444242518 0.09898828029799442 1.840394695845381e-05 33330171.29008772 6196.760896263217 20957 None 25580 DNT_20201129 37813554.5028732 2136.1497511482644 0.050481859973931766 2.850138808157531e-06 3914239.820150938 220.99278476681792 59443 6093 346319 ARK_20210212 109674114.32926245 2300.0445993758385 0.7066327153090791 1.47997770347387e-05 9339935.025489705 195.61641132866768 64048 21768 89752 LTC_20210110 11784199681.35584 292532.9628230073 177.8924583201147 0.004416032425060202 8258547885.496881 205011.587285164 None 221671 152475 WPR_20200107 3802400.5140288565 490.06879035444473 0.006235172498691532 8.038517955215246e-07 271659.34022239165 35.02290409026993 33855 None 779057 NPXS_20190405 130130897.99585676 26553.142806261392 0.0006510539664692718 1.3300989829225016e-07 6710725.239024888 1370.9967644472752 58238 4204 151112 MITH_20200730 6052794.6692139665 545.105007993099 0.009782399406653012 8.814077743680399e-07 8637833.273480766 778.2807759579895 105 2097 578289 SNM_20200306 5270762.284876166 582.00997904 0.012048189396131654 1.33e-06 124601.87014509329 13.754804298327382 30236 9706 None POA_20200425 2014118.585353487 268.6095548706639 0.009144394249073247 1.2200229711265249e-06 63986.83692427385 8.536969073184117 17265 None 511690 BAND_20210724 185998247.9551708 5563.537917262894 5.288178116606649 0.00015814492123987053 32295834.084979754 965.8188557806014 100861 5521 263918 GO_20191024 6613299.3147103395 886.4989276853541 0.007966574650634831 1.0675396382927112e-06 1727092.020988042 231.43437076019623 10274 688 791048 MATIC_20211202 13854636684.673172 242349.5157110363 2.0145983029321948 3.523065714164556e-05 2158555695.3531327 37748.13843208725 None None 4158 MITH_20210114 5383642.0638893135 144.5717074526615 0.008740552601119368 2.3385620384148755e-07 2448547.734018337 65.51165631436999 23995 2123 507648 PERL_20191213 5847063.502422076 811.2570348716142 0.022417153548141108 3.114236889336761e-06 901025.1863861239 125.17226451785086 10793 384 591123 C98_20211225 449436806.6555572 8842.171081676785 2.431405580921654 4.7814544550991044e-05 47156197.113645345 927.345114874261 330534 None 39046 CTSI_20210128 12940244.947636006 427.7643456564906 0.06305860941349663 2.07423345179046e-06 5644740.751010248 185.67663006416146 20039 185 602670 MANA_20190224 47252669.29386892 11483.66233683345 0.03737003089687722 9.081916910722612e-06 1778047.3000446376 432.11304499321335 42399 6015 109319 REP_20210508 306057734.8092134 5340.406236981988 47.67576801014514 0.0008318952271962671 69129329.07667284 1206.2387522719466 148536 11063 144608 VET_20210729 5404620173.706475 135159.42925990224 0.08283707873165937 2.0704750982288416e-06 756434528.9071971 18906.73692895741 None 194696 33228 HOT_20200423 57484312.79021029 8082.068989799843 0.0003231228685943931 4.5419123786808396e-08 5038738.447743498 708.2602549393926 25055 6954 509246 NAV_20200106 6262517.515429825 852.1918207070703 0.09334151205510499 1.2708407832211703e-05 222603.83056453645 30.30741844161033 49931 14070 586166 BEAM_20200323 14202560.322049752 2435.0321771989543 0.24307214864600046 4.168697258342758e-05 103156301.3603815 17691.347735938045 14967 1476 244013 ETH_20200417 18989526634.23506 2678782.3125153505 171.7759907508837 0.02423180390967147 17430629608.3789 2458874.4727713247 453436 457795 21984 BLZ_20190902 6648023.997451919 683.5060137985299 0.03180542480890259 3.2691841177086636e-06 102543.15246262758 10.540102747401942 36488 None 878308 EOS_20200913 2642382956.1925697 253405.72938761648 2.8053172341324726 0.0002686585287804294 2080215225.7699785 199217.24192267246 191313 72733 82491 DENT_20190419 44485338.421680465 8433.965001416536 0.0007928576768725596 1.5022426497875251e-07 3788296.1928071626 717.7757467532678 44633 9041 247980 NAV_20191213 5833303.267390256 810.1881287269848 0.0872119246401808 1.211287375060793e-05 53323.579043625235 7.406117724736138 50019 14098 566047 RVN_20190708 208200284.26162475 18225.846762376736 0.05324620487642708 4.658263870498807e-06 19669610.045481082 1720.8030888644473 26287 6755 214144 SNX_20210724 1466248917.7718625 43858.117027825036 8.740925989985758 0.0002613215074555367 96996637.63833016 2899.842373085713 143806 7285 44436 ARDR_20211104 340873547.17949176 5405.078875727921 0.34121493442746115 5.410492100126558e-06 18569343.429690745 294.4457460499506 74371 7379 None GAS_20190316 38059224.20011223 9698.064256882764 2.7336727507046303 0.0006965720026801053 1579178.949281991 402.3933892628817 317771 97806 162875 ETH_20200106 14738834254.266087 2006860.704781248 135.00571364233375 0.018385021180886967 7260645128.406949 988751.5933311429 448766 449203 21447 ICX_20190316 160367997.03789532 40866.734886272265 0.3387100228248956 8.630730173029926e-05 11222304.392281441 2859.5752886669707 112126 23555 270821 RAMP_20210821 105692849.33780381 2151.198360575021 0.328332027024732 6.6754882325680435e-06 10134203.403305154 206.0437301174969 31831 None 126255 DGD_20190708 52391926.6843526 4581.329204800206 26.18855339322111 0.002289016555161758 2570231.1907256274 224.6516505828446 17131 3373 483052 ANKR_20200310 7846815.949466178 991.1384546101431 0.001966657986562823 2.4815315586497953e-07 3538238.1066343603 446.4553360890129 None None 5490 WAN_20190616 47789389.61641591 5419.265970242296 0.45051107137796365 5.109330010717682e-05 2728925.89816703 309.4925713120115 108564 17032 440153 ZIL_20190725 98808924.46921223 10057.942647204227 0.010337819850588056 1.0542467732326905e-06 12139457.088255089 1237.9770250457248 65661 10610 174377 BAND_20210727 191159111.56119174 5105.964882076087 5.408500899428267 0.00014494681911630911 48607003.34361332 1302.6586576286463 100960 5528 263918 SAND_20200927 27408814.898334585 2552.6173061106724 0.04648810260153791 4.330536238300242e-06 5451525.733118068 507.82949658420966 46684 None 97484 BNT_20210806 883785486.6755828 21568.175027136313 3.725633537386866 9.105589142197267e-05 102699383.46912867 2510.0117379841695 126158 7658 39422 EOS_20190812 4283749159.0075808 371192.06312972907 4.202686043231478 0.00036392251835506366 2404577675.4201083 208219.20891011762 None 67797 89433 SOL_20210127 1054703273.4109547 32365.582339551107 4.032884053809296 0.0001237756849553046 99915130.853126 3066.5557436651666 108705 3102 90687 SNGLS_20181231 6288936.971574495 1655.0718837131212 0.01065393918899914 2.8032335527603402e-06 919481.4836025581 241.93129886061294 36028 2188 921387 KMD_20190923 79819716.25913563 7946.129849094457 0.68848592976384 6.853943929613816e-05 3166071.8298496814 315.1855086764511 98294 8422 202863 OST_20210422 22138936.038493305 408.59249847565087 0.03197671615947567 5.908673554977835e-07 2201145.902704106 40.67288373544116 None 765 441171 WTC_20190510 47558552.33481268 7694.653694151254 1.6687551212157123 0.0002702817552156534 4102687.9694978707 664.4963610300074 55653 20242 966813 ZRX_20190730 133253348.91807488 14037.02724759871 0.2226244762369726 2.3404724434905664e-05 42418669.66152717 4459.515373622052 151352 15949 206099 RAMP_20210703 45819148.51374302 1354.8659895746039 0.1569294222136636 4.634913571461826e-06 3606616.4094490074 106.52148658555794 30178 None 114205 AUTO_20211011 34308613.99928482 627.0422003277104 980.8901375007237 0.01792762565133911 4615296.936859457 84.35329563472891 None None 17931 PNT_20211230 31272629.32706621 672.7321251592992 0.9297682301317406 1.9979568651671527e-05 9061796.119068285 194.72678437584602 None 389 330723 RDN_20200113 6090937.1403053235 747.1623801229553 0.12073663830106743 1.4783903070506086e-05 1136532.4061528512 139.1655852397893 25263 4335 2088256 UNFI_20210523 19299898.205600947 513.494385299433 7.8627105008628035 0.00020920949047807165 7464015.609423006 198.60109340111234 None None 107472 WTC_20200501 8287826.770528135 957.747343247764 0.28284214053931406 3.2813439680036675e-05 11531033.081431748 1337.752775256895 54547 19647 1205901 ALGO_20210703 2616014514.3923817 77396.35321359464 0.843268817593555 2.4903587751495282e-05 177746968.94482058 5249.259958777679 114117 34636 196865 GTO_20210624 21296916.215103272 631.730591395086 0.03215792049862593 9.533680151701886e-07 18632486.65587787 552.3869872605203 14249 None 252134 AKRO_20210826 95358731.98540656 1945.4232860319864 0.035153230479523796 7.173760067549743e-07 23017659.886155453 469.72402560818756 44689 None 223104 AR_20210826 1183431555.500108 24143.901563857362 27.00579068691542 0.0005510176901357647 62485047.06441414 1274.925318818378 26084 None 98920 NEO_20190227 586713911.7316481 154025.08149635777 9.026367872794586 0.0023696166384055035 321052669.1071641 84283.26401517421 316457 97918 150509 KSM_20211104 4088545944.9564033 64841.995149033806 455.3357183959556 0.0072200541615229435 188892368.67524645 2995.1815274629525 175944 None 83525 CAKE_20210418 3796644104.0490203 62980.709982519016 24.26860476680943 0.00040273536363084244 468105728.56206274 7768.173433190229 370573 None 2459 CTK_20210722 45577362.62847744 1416.2837373555403 1.0033920280207198 3.1068266055420155e-05 6990330.87688663 216.4432778352188 79972 None 108429 VIBE_20200704 2596233.48852119 286.31414341498896 0.013960140701417477 1.5400090199578074e-06 71136.31004727173 7.847382162 18845 None 1079841 AST_20200312 3063869.7409728165 386.2805454093722 0.01776161664697998 2.2374911972873385e-06 5262373.705766156 662.9190955706251 31810 3483 336261 IOST_20190816 100593601.48678522 9775.009424660842 0.008386752446057806 8.138347280789233e-07 38095526.46122345 3696.718439944701 196668 50648 99205 FXS_20210429 58827869.6438213 1074.719198748967 5.543288755918388 0.00010124333618481255 10384601.012432627 189.66568362947828 8893 None 111454 TFUEL_20201130 0.0 0.0 0.009476425050099182 5.215498262761032e-07 1835515.1494670452 101.02043779913328 74699 4533 80855 STEEM_20190511 98589284.94152953 15471.960467762774 0.3191443747310252 5.0094850645451605e-05 1282286.8283931857 201.27557381239927 5489 3725 297313 HC_20190530 56914985.198155634 6581.852149178993 1.2908233102742865 0.00014927541752597127 23413881.70406266 2707.66489840889 12697 804 698921 MFT_20190909 9796078.690165034 943.0964037088806 0.0010861570535945705 1.0450695398474346e-07 511961.9372087265 49.25952691348425 18767 2218 866690 QNT_20210916 4925360801.316996 102201.91966722402 367.7292439628671 0.007630910669535255 91852664.56192519 1906.0748894412536 48434 8112 92231 LTC_20200117 3677471974.6937833 422273.4103097926 57.57398848454515 0.006611053634074267 3604666158.9625134 413913.3302573022 449144 210424 163494 ELF_20190512 60618838.270735815 8302.178348723774 0.17343703367644334 2.3811635656050602e-05 17564103.30911711 2411.422864866112 88528 32682 938169 MDA_20210107 11626847.305065073 317.65068321287265 0.5929760934748034 1.6065730795072158e-05 1244614.8210515014 33.72083103957374 None 369 3261426 LTC_20210723 8077469395.050521 249752.40334434947 121.10550765969118 0.003740752018554832 1422550728.1290965 43940.276628036 188848 339113 73316 ANKR_20210603 762300741.9730324 20256.233180544725 0.10862700178544578 2.884893082188244e-06 38519253.11278486 1022.9862281904554 109352 None 5363 HBAR_20200518 148473615.96408984 15353.98705899885 0.03593837350834843 3.7195363114305064e-06 5365946.604645192 555.3627304958201 39055 6484 137425 KMD_20200223 87417548.90175962 9056.193988849654 0.7364951000547679 7.62974183330749e-05 2009491.0934584045 208.17379855315096 None 8409 157439 NAV_20200502 6819188.827203069 769.5186044846887 0.0992855766199503 1.1224793515577089e-05 740427.8645012473 83.7095394431759 48950 13905 1266720 MDA_20190730 12549105.282403858 1319.2994589087477 0.6396524437102121 6.721213442701124e-05 763822.850940896 80.25946690374982 None 364 3017941 CHZ_20210725 1338258885.5982938 39169.752546764845 0.24950342394461983 7.302665571257141e-06 406162400.422886 11887.885669118992 None None 41451 POE_20200721 5535679.215709556 604.2139081527179 0.0021992954479000595 2.4003658458678956e-07 807412.938156987 88.12305968779279 None 10229 672576 TROY_20200407 3815550.695476673 524.4457079797919 0.0020081845765666704 2.7602405683146935e-07 456976.26960506075 62.8111804482393 8743 None 412780 GRS_20200807 16439811.62039018 1397.2052012880977 0.21739090064886296 1.847586238291011e-05 3374762.013518698 286.81806989500694 37793 106852 5311872 XZC_20190221 37848202.0951138 9532.207440034243 5.535840791523245 0.0013942216501379174 1152608.8893485698 290.28874351514986 58687 3930 292752 ADA_20200901 3800068624.5751796 325953.4314949372 0.12213967054745463 1.047661204830337e-05 462276340.225975 39652.06270779455 164055 87680 22859 RVN_20190605 236486307.78011337 30866.904781993097 0.06432831370725056 8.390709887266254e-06 74395277.20863807 9703.801515475994 24998 6578 169696 ICX_20200903 313597291.9353248 27488.500961882757 0.5547177973582461 4.861298787115108e-05 79439061.02584586 6961.6841726299945 116019 27940 115181 POLY_20211002 639155246.9504458 13273.26465204048 0.7317683625360224 1.5192224276143794e-05 91544592.01623449 1900.5549356614258 55010 7370 151419 ELF_20191220 24058689.88424216 3368.067808250486 0.05217901971692434 7.302215261200008e-06 14682872.555452304 2054.8008880646416 83988 33504 971152 EVX_20190130 5261862.2086761305 1540.7140368970993 0.2732503145077479 7.999816777144343e-05 921283.3209002296 269.7196444336365 14083 2336 1346938 KSM_20211221 2395708254.772768 50779.469205739624 265.623024812392 0.00563408845180484 49469964.64818387 1049.299686020756 208484 None 86184 AUTO_20210828 48715484.85349059 993.1529923609053 1394.6643238360798 0.028430887429462315 9497438.088363107 193.60973715584612 74596 None 13897 MFT_20190601 24608465.999933694 2868.634573097393 0.0037056958116291356 4.3198539527498953e-07 2491323.9154721587 290.4219884983323 18135 2036 844355 KMD_20201106 53126889.61369843 3419.00759618503 0.4336796901358103 2.7918825185225485e-05 3164143.4924386577 203.69680904056077 96610 8392 291140 UTK_20210120 96745314.01541553 2671.7714338598616 0.21381396178466158 5.9323744115107115e-06 6086508.179092692 168.87318805431906 56947 3157 109478 ZEC_20210624 1254024983.2275596 37198.15283476324 111.7033372250161 0.0033115736525156717 982961558.6654586 29141.023714941217 76110 20003 96879 MANA_20210725 950961090.4804962 27833.860097308352 0.719347142188678 2.102106287046119e-05 340716792.6083339 9956.568530528877 150436 34734 17778 LOOM_20210428 125867902.99960095 2284.7716685767036 0.15115350895243676 2.7429802424082173e-06 6479339.523200817 117.58046782484574 31847 None 252037 SKL_20210508 402516938.3101161 7024.05618806432 0.6093866753608557 1.0633197699968287e-05 86324374.49272357 1506.2753706645804 23175 1536 131705 COS_20220115 71292749.16470319 1653.9363503762042 0.0209621015426025 4.860079550866832e-07 4242814.95463701 98.36999480817913 None None 138222 VET_20200423 247808014.1163979 34840.83516181657 0.003822382611512265 5.372856144414411e-07 107610766.19514011 15126.093463677476 119310 61729 321528 MANA_20200223 68381851.775046 7084.122105896053 0.051452748207959274 5.330262012764392e-06 29833508.23748441 3090.6107293440487 47687 6715 66224 IDEX_20210527 34824219.11350636 888.8383551400095 0.05982995619050991 1.5261390598830208e-06 1436277.4347018157 36.636481680638596 51635 1983 4781331 ENG_20190904 26346653.954258725 2479.6121468952415 0.33612203069624225 3.163408422187048e-05 330652.6816302762 31.119337096746943 61524 3472 285692 RLC_20200418 21372039.91576781 3035.831833199957 0.3042995991104751 4.32248121120158e-05 411161.4394853705 58.40420434799482 30570 3566 508763 BAT_20200913 401587861.54722744 38496.578944723595 0.2744350312305166 2.6282171689091174e-05 179190268.76578516 17160.744339380348 122467 45560 16252 BNT_20210314 1321947808.4173937 21544.991005674656 8.253264494393258 0.00013452271995782666 279643277.98177713 4557.999370744364 104421 6520 42430 WNXM_20201031 37346874.15155097 2750.538417420895 21.130260276071123 0.0015569410347212478 13948432.466060545 1027.7623934921876 14362 None 70740 REP_20200320 97178812.2897858 15702.112886629058 8.779673655831527 0.0014222650195688513 32958297.93130415 5339.0861767495535 130581 10106 262137 CDT_20190916 8981480.957746493 871.7663632319146 0.013314198197202419 1.292311390106905e-06 392295.40166989446 38.07723216641706 19673 299 180702 QSP_20200109 6369149.147085622 791.4858510391956 0.008911293757001877 1.1105405246117804e-06 377262.23132201214 47.01505838693338 55501 8362 458793 ONG_20200308 0.0 0.0 0.1286181740511534 1.445975831957036e-05 9841473.769647194 1106.416983970652 84512 16495 345761 ZIL_20210325 1893534027.476624 35822.09975532108 0.15771837494391058 2.99358291181046e-06 335612776.75195646 6370.118090724761 188266 24827 33725 QLC_20200411 2073540.808896245 302.40016000861874 0.008628234220948874 1.2580360328101914e-06 147592.09660987067 21.5196030773491 24475 5660 940522 FTT_20200621 295350775.00332177 31570.505576510717 2.9752656097980177 0.0003179947533668625 2119258.6172056873 226.50519640317782 14595 None 12681 STX_20211216 2446553800.096352 50148.28482199256 2.314717455969321 4.7365063092497526e-05 130215343.030349 2664.5402972782676 100381 None 37004 QLC_20210114 3596160.589406858 96.70872161682797 0.015102752631392036 4.040788447954727e-07 689062.4972653921 18.436081466906707 27341 5595 940522 NCASH_20190515 5810711.997940305 727.1629316826113 0.0020033939945952924 2.506348764532525e-07 652995.8158905077 81.69312979959791 60641 59329 935849 TCT_20200425 3471246.565678896 462.93698972530285 0.005988306125906869 7.989453246161706e-07 383148.5914079152 51.11875867773332 None None 458106 BQX_20210624 457759557.2320955 13578.525307898997 2.0604293482228178 6.10837931251766e-05 3567279.758628448 105.75610320423648 86221 5984 20141 ENG_20190305 24384478.410468984 6566.8552070266405 0.3167715692556941 8.530807975419585e-05 799430.058133756 215.29029046835777 61125 3209 328243 CDT_20210421 27013973.738341343 478.16133750062977 0.039886845806346334 7.074151484164122e-07 1387101.353270806 24.6010054155886 20621 327 413427 RSR_20210823 674246872.5172678 13667.14309771852 0.051143877421464035 1.0377979428659398e-06 108785074.96422888 2207.437775631248 78837 None 160893 COMP_20210202 2172688.063639244 64.68713248137534 2.3674192036454823e-05 7.072156943912154e-10 1.2384453856276783 3.6995898825759116e-05 1995 None 2426495 REP_20190130 131787010.6787839 38593.790753115936 11.963744245687758 0.003504933431645555 13955004.941218035 4088.298976709046 122054 9739 233231 POLS_20210814 114691892.34970741 2406.317859668966 1.5938783414583904 3.338721901193594e-05 19042162.240842417 398.87915197724635 381601 None 22359 KAVA_20201101 42387150.23053951 3072.7120731154 1.4404970893857192 0.00010439540531531238 7097670.996635085 514.3809355452646 45950 None 85552 SCRT_20201124 23235447.91371276 1268.7288686351737 0.4127160981559408 2.2488331092151595e-05 669725.251233854 36.4924054521146 None None 408987 ZEN_20210603 1225611699.7903147 32570.952013316597 109.9725096386787 0.002920626796955484 82549766.91646822 2192.3393594526965 111170 7332 1013649 SUSHI_20201106 51865749.20706053 3339.4255955286408 0.5194329912307327 3.333838819015609e-05 31357317.020584945 2012.5837693849537 12001 None 57761 BEAM_20210513 115013481.37791587 2229.8859237553124 1.2664080844510008 2.5125253906312795e-05 25193514.553464945 499.8337089916807 19947 2284 172921 VET_20200414 234090271.19143876 34167.50854144807 0.0036385286182941527 5.313724467594439e-07 110845908.72629322 16187.989133030005 118783 61624 281766 CND_20200305 11740803.723387718 1341.1688704871706 0.00621835037512292 7.100634919366697e-07 45823.58435963757 5.232521868440974 35003 5979 433845 AMB_20200721 1721961.341220269 187.94132037452974 0.011914361596321404 1.300362769032606e-06 301001.12481599796 32.85200411145062 19144 5457 573873 XEM_20211011 1580045385.949402 28876.206572205898 0.17535232688948948 3.2048959953618592e-06 61626509.83969737 1126.3412245327481 371619 22190 147813 YFII_20210616 72198063.6178426 1787.6662739971964 1815.0047191921803 0.044969406992104534 21626909.402689714 535.8384364663178 16795 None 423261 RENBTC_20210704 381765860.80970216 11012.302117920215 34606.01603273429 0.99823463219521 3266584.6002025492 94.2269076519319 86306 5511 90516 REN_20200626 139555362.68487293 15072.402901752046 0.15954518658158182 1.7242255223036182e-05 20150682.46386418 2177.7103866599214 14792 896 366546 STPT_20200903 22347529.777911644 1958.8820107621302 0.027213426665925265 2.388688682958911e-06 4409750.172917521 387.07070822189087 14306 None 980559 MTH_20210125 3317932.6277486593 103.04886599304416 0.009553405180761318 2.964901113667633e-07 155521.08245405174 4.826599749955 19054 1883 1172879 LRC_20190807 38970434.91650683 3405.668009831464 0.04049477861532193 3.5293517427168606e-06 5152110.791390525 449.03594542394654 34678 2452 581854 COTI_20200314 4841030.033500232 877.3212316656629 0.015627814289284742 2.8092122861720934e-06 5784594.187194825 1039.8225087899427 22581 897 296885 REEF_20210825 289378158.67073005 6021.840176096242 0.022807165026259672 4.754393143165669e-07 75038277.15092963 1564.2517162943202 None 12794 76465 LEND_20200312 42470500.11138521 5354.690231033164 0.037933512902618434 4.778621563267539e-06 11385523.254184738 1434.2754669519584 None 5742 155774 SNGLS_20200310 4652802.902460301 587.679989782235 0.008320169238904085 1.0498400169585459e-06 2036880.9214364341 257.01389475402425 7726 2134 1276289 WRX_20210624 522907875.6719866 15509.931929125301 1.2267434394903942 3.64139496434923e-05 30165790.710296024 895.424054060693 277757 None 1299 BADGER_20210703 81616388.14238411 2410.551849479977 8.984598306970573 0.00026526288849022545 5496294.972142226 162.27359649163282 35722 None None LOOM_20190524 50705587.273334056 6436.6275036060615 0.0731570615906145 9.302597967811998e-06 4302983.997506233 547.1642698654321 19533 None 434311 XZC_20200704 43764839.583045125 4826.412035864815 4.177693193253641 0.0004609038498339162 10259218.10149531 1131.847864486756 63823 4123 587407 BCPT_20190723 4945869.384349979 478.3811670437421 0.04257707942061374 4.118341757956075e-06 153959.53921792805 14.892003115880444 10972 2901 908173 KEY_20190414 7823734.069411694 1542.153802424285 0.0029912974902226016 5.895089884254622e-07 391949.9026785573 77.24340069710023 23924 2835 702225 SNM_20201228 4177078.568758225 157.53653568 0.009467391510903277 3.6e-07 319167.7918780179 12.13643747 28806 9503 None EOS_20190915 4142710948.2433963 400197.65815992624 4.033748078338634 0.0003896760661475 2644468566.928082 255466.15410739146 1310 68302 84416 SLP_20210702 72131400.09015886 2145.379238036782 0.13331660255286784 3.964174845066949e-06 16854517.20067858 501.1697855575224 None 12365 5695 COS_20190922 26678380.899332434 2671.4584046321015 0.020279854076794147 2.030513853220901e-06 972132.8619048004 97.3344894787832 9338 None 303115 TRU_20210724 48966836.7851247 1465.496725154205 0.13724388480271368 4.103086893401049e-06 2211355.224580935 66.11138012943047 27255 None 118402 GRT_20210418 2381292841.8411827 39502.01560865071 1.9438631154373802 3.225262585370079e-05 349527115.1644794 5799.362713143932 89242 13468 26419 STORM_20200621 0.0 0.0 0.002368987009151849 2.5309932137709534e-07 1706585.2338912808 182.32922464386894 19588 60 267635 LUN_20200331 1591504.5101102463 247.70676955119959 0.5874337625189214 9.162820383356333e-05 2404932.737500331 375.1225774507503 29492 2147 2458212 SCRT_20210107 50781891.72074616 1385.4714633018993 0.7271801954469626 1.9701774469690785e-05 680540.0512177523 18.43813499134532 63489 None 361970 PIVX_20200317 11611140.839231217 2300.490641400763 0.18455426702393365 3.6648751172679796e-05 213941.39302114162 42.484441052514406 63900 8511 174953 TCT_20210523 15534223.13160896 412.95664722148024 0.026805605852492347 7.132098251333348e-07 3161770.318135873 84.12440547393139 None None 279525 ICX_20190528 188389127.03862336 21364.824377854704 0.39659950140546274 4.506578827575851e-05 23977363.228984296 2724.559085069692 113579 24590 274094 CHZ_20211204 2135713608.3280604 39780.021400308186 0.39860529156878177 7.42953844087835e-06 279052971.10027134 5201.222411451685 424115 None 45115 BLZ_20200421 3171676.2384594604 463.263424561752 0.01437572724668744 2.09966525001948e-06 150647.86223522385 22.003066411677217 36091 None 563523 WTC_20200511 7575614.259493502 865.1827670229325 0.2601140519396903 2.963269456043536e-05 11143205.359282142 1269.45544992077 54443 19637 1205901 BLZ_20191024 5047423.891803238 676.0705313220781 0.023997224382037222 3.2142765470056303e-06 257390.12756299577 34.475780918888496 36382 None 563370 IOTX_20190810 20645685.318578057 1741.030568047165 0.005014526680208153 4.2277922801005003e-07 871041.5038283743 73.43828800567609 20429 1760 857691 DCR_20200331 124176402.05417621 19327.20593119789 10.957083840396054 0.0017090912637438237 74304813.58395319 11590.100942940076 40686 9760 200827 IDEX_20210511 66693398.59778718 1194.6613074252962 0.11510587775966873 2.060045625567596e-06 5529376.677903916 98.95904934771794 51607 1981 5142522 MATIC_20201231 87162609.82626477 3018.405279274095 0.018151044672524746 6.295067132546842e-07 10251337.233696166 355.5324624492708 69097 2571 48642 STPT_20210729 56336505.45357305 1408.8692769229147 0.046114159270354636 1.1522395949920077e-06 5309725.328200317 132.67239083370777 30705 None 433078 KNC_20190201 18240589.78861177 5324.42283282843 0.11666148523331188 3.39994158113801e-05 2334287.6698764744 680.2966459134865 92554 6541 188819 XRP_20210724 28196999500.970444 842986.4780640496 0.6094632044963907 1.8220706080814024e-05 1813927386.3669374 54229.75089405398 1929886 323161 15139 NANO_20210707 617001387.4100267 18064.079517006478 4.630602605638429 0.0001355824714163115 21187681.926921528 620.3681300003667 133552 107051 57343 TRX_20190905 1027390089.3716469 97273.01721746293 0.015540680801947355 1.4712677593073557e-06 471859607.69401485 44671.905727104895 460162 71279 65746 WING_20201130 6348706.77204498 349.9130798305333 10.206790397461303 0.0005620573035831077 1207267.9405301681 66.48062093304983 None None 213558 ADX_20190228 10246155.364776913 2684.16817601234 0.11735706074843057 3.0780784642273606e-05 739748.8547009795 194.02369180606723 54237 3940 833344 PERL_20210114 0.0 0.0 0.027293022055491136 7.32365522546886e-07 1635831.552228564 43.89497898440024 13537 504 591773 DOT_20210408 39229624713.84908 696484.922136071 39.7504883353942 0.0007073918445078175 2407805210.9192314 42848.826283502276 278390 21175 15426 ROSE_20210125 99311923.15437189 3080.844042948846 0.06630713245493565 2.0546344325560803e-06 8804064.943719653 272.8082833640896 None 649 196498 KSM_20201014 275632860.50354403 24125.898220812018 30.635056926643987 0.0026821090827106988 22668685.040788498 1984.6506630163292 13505 None 184424 DASH_20210325 1930007259.8822398 36632.616554084496 192.23652294052604 0.003648756654418199 796127967.6968546 15110.953815998031 385196 38942 48362 QLC_20200430 2553717.426844488 292.6171128369422 0.010682025025733635 1.2182088315761452e-06 244421.35532470577 27.8745137710364 24376 5653 940522 ENJ_20200129 79170737.78466767 8497.66191265272 0.08830130926218326 9.44358948264091e-06 7436489.911535342 795.3127592686391 50499 14298 23876 OST_20190819 6618243.852025164 641.3036325091069 0.010057275914253894 9.747652134001137e-07 144343.02870325214 13.989927727580122 None 757 528261 SNM_20210221 11073904.170992946 196.92083091678296 0.02530591068509563 4.500003686385613e-07 1257987.9832837342 22.37007248089169 29105 9495 None DASH_20191127 457992673.8208556 63880.97372341391 50.167743522269376 0.007009770977007323 297016195.34124804 41501.07937144941 316141 32286 74160 YOYO_20200719 1882792.6244683908 205.21005999141914 0.01078115588488166 1.1759581073588523e-06 1460582.3180109705 159.31349445921114 7547 None 1934644 QNT_20210809 1956241685.4129288 44467.78308744231 151.46818198794475 0.0034440152886432572 38581045.92798657 877.2384423179303 38067 5915 173273 ETC_20200414 603612388.048363 88151.83970765168 5.189249293248922 0.0007578404303141511 1598752484.5863636 233482.57183577731 230748 25365 329004 XMR_20190524 1444745783.6267068 183396.02234493845 84.84244673733575 0.010788502920190998 440614137.00457597 56028.16852356818 317508 157894 116319 TRX_20190920 1163546132.7573056 113524.94618752091 0.017619714132030555 1.7181109058025461e-06 876870131.380341 85504.23261171572 464891 71257 69613 NCASH_20200325 1008709.7521706993 149.22972575178375 0.0003732952577269982 5.524363626357756e-08 2279757.3151860023 337.37927627645035 57734 58309 679947 STPT_20211216 141902731.66303614 2908.653899970426 0.10778849158355733 2.2056463105513703e-06 16236866.38433472 332.2505390824723 None None 430598 SCRT_20211021 798446443.1982936 12046.10733241109 5.349611936433774 8.073587970425167e-05 16242087.051330112 245.1241701087462 None None 146484 TRB_20210826 106812941.09248449 2179.1470233260093 55.28832578838994 0.0011280856732016657 31165321.81742248 635.8874598140985 23916 None 404146 YFI_20210519 2630544886.1908436 61650.62670665969 73384.4368857363 1.715275569468044 1164793202.9751403 27225.68175669996 119662 5709 19154 LINA_20210711 98129231.21537295 2910.357704662991 0.035676171802490726 1.0583520853600748e-06 32919241.58885788 976.5663249106643 None None 80589 WPR_20191026 4621828.532174107 535.1067064761153 0.007524605649925227 8.705760342297919e-07 786177.2751267453 90.95853340676095 34138 None 763120 STPT_20210110 18485380.988303866 456.5092931171422 0.02004718026125369 4.974821767219353e-07 3918142.9019301008 97.23094391120567 17806 None 1561164 GRS_20190805 20906052.580869455 1908.9579815147526 0.28598320463798904 2.6113486463361393e-05 1106869.3710969954 101.06963580409919 38613 107010 None COMP_20220115 0.0 0.0 6.097983437092405e-08 1.414209464e-12 18.151244217549337 0.00042095328104192357 2641 None 5053090 NULS_20210110 27538110.49742877 680.0727215152982 0.2763164111264233 6.856948851647117e-06 19736677.663322423 489.7768782069509 None 5104 933536 WPR_20190702 6901241.762366183 651.0038520688431 0.011363635693008023 1.070659248396748e-06 969812.048993925 91.37377046510116 34816 None 1294750 LOOM_20190703 48075927.247797124 4467.858148538486 0.06962260727281332 6.4519829496300715e-06 10739203.762021024 995.2106403262959 20526 None 438184 SNT_20190629 102261589.33871743 8262.472131348512 0.029057046810309916 2.347036051376371e-06 28875645.37767426 2332.3836434786717 111603 5745 303277 CDT_20200423 2535787.03942058 356.5217152518114 0.0037073852336310126 5.211212365876924e-07 88935.87283940261 12.501094197239281 19092 289 263916 BNB_20190714 4394416140.5938425 386098.4028615913 31.572765100961472 0.002769933601604551 261655985.37868467 22955.534735197984 1009114 54404 760 KEY_20200425 1758801.7019098334 234.55964593706014 0.0006294520921521775 8.397997622719903e-08 521647.30844192853 69.59692263814803 23342 2746 220323 ANT_20210131 137679844.27921495 4024.6738814146565 3.966506311394578 0.00011608914895803953 36305277.66545178 1062.5594555995538 77308 2704 124714 ONT_20190703 902003688.9467604 83788.08579202791 1.3924160403851 0.00012901340748192652 205040414.08418784 18997.886928385415 80851 16274 247326 DNT_20210314 222133061.89173666 3616.7731183678334 0.2943919433358128 4.79890199302341e-06 52728816.5588399 859.535828347515 65324 9176 196882 AXS_20211111 9293219428.872742 143103.65480567532 142.36246034755635 0.0021917345687525553 624363534.9582373 9612.359463974399 675732 None 450 FUEL_20190605 6050522.614747352 789.2232437183203 0.008221090793012576 1.0702524462271937e-06 526633.3766593331 68.55910898266566 1 1516 None CTK_20210114 24016148.665455528 644.576242153375 0.9447940570267961 2.528058141493731e-05 3851833.376119934 103.06646886434748 10816 None 220154 IOTX_20190524 28930456.735679813 3672.466557047288 0.011407015593486588 1.4505076854041094e-06 3471781.8378999913 441.46921661050527 19659 1721 780068 FIS_20210617 31832307.90901299 832.2287703281146 1.1968465899839746 3.1271577759037985e-05 3505133.945849176 91.58322349812084 22181 None 388114 BNT_20201208 87502122.95185937 4556.787500453818 1.0280698054170943 5.3577401604932766e-05 37375804.44670623 1947.8234596494015 None 5251 106287 BAT_20190405 352536490.7554756 71896.63730675481 0.2822286249483985 5.758426714601842e-05 50287456.07062467 10260.356492875115 96531 24604 78239 RUNE_20200903 195021002.87337232 17094.647061485575 0.928303551474078 8.137646016687683e-05 8031697.913639342 704.0704996806323 15771 1818 320641 DOGE_20201231 591471700.0622396 20475.188382589873 0.004656390926635217 1.6134407754718713e-07 138903963.936452 4813.026286255004 159709 171979 103509 POA_20190227 6145288.357588362 1613.271001709416 0.027911862469497103 7.3274671106584555e-06 307464.3380233103 80.71603344378231 16492 None 772242 HIVE_20210723 112413213.05166899 3475.7183592568945 0.30236136893609644 9.339450558755778e-06 6977343.1612027045 215.51877382622192 22269 172 113471 BTCB_20190901 0.0 0.0 9604.878434850227 1.0005851759051265 52006.28261648927 5.417738058108289 None None 70056 BTS_20200318 39080490.868527606 7194.142569974859 0.014344639439351145 2.6669620139396634e-06 11292102.997432167 2099.433023672293 13312 7032 131725 BAT_20190603 454181164.1921188 51961.848003813255 0.3576793318477805 4.09034704884568e-05 46377294.82112406 5303.611758192451 101883 27345 48578 AION_20200322 24929351.808631234 4045.8945089463673 0.06229229823575747 1.0114779302121854e-05 2174637.013098079 353.10903711506114 538 72542 244642 SYS_20200331 10828401.613813743 1685.3664982545306 0.018578338445193025 2.8978582617478356e-06 996493.4436668432 155.43353174592846 58520 4509 923586 ZEC_20190712 610535914.8096516 53952.61176397388 88.10000241682897 0.0077632997703012225 445799427.2366223 39283.478957151376 72 15313 191872 SNT_20220115 255568943.26313204 5930.373309714516 0.06602894773004298 1.5309516124892637e-06 112816462.05053708 2615.7700588800694 146425 6297 131841 QTUM_20190316 206099921.93965724 52517.368084014284 2.5357164891648374 0.000646130416536227 321514421.9921521 81925.66018002066 175816 15214 328111 MLN_20210828 186874609.41881445 3809.7758464015897 128.43217982753262 0.002618150320898442 137205789.41725454 2797.0044740679555 28003 427 127987 DGB_20200806 350526339.49917835 29922.455116508678 0.02621939315657181 2.2373159229193205e-06 15118437.350209698 1290.064968754026 163414 22698 120835 STMX_20210731 212286233.89343044 5088.176547769922 0.022977636548701746 5.500801919726834e-07 95735944.43683437 2291.9000647817043 69282 4677 91475 MITH_20201124 3447030.7882352574 188.21877195349143 0.005588064540791973 3.0437375547339034e-07 1700031.5427835607 92.59824780529802 123 2106 756695 CMT_20191220 9127844.149536248 1277.9950371733312 0.011414633154983336 1.597442690665958e-06 5349050.288042972 748.5830835403101 288916 1645 824632 ELF_20210821 134802644.5066816 2743.3411871500484 0.2929896156675502 5.959350147395213e-06 11969313.93963752 243.45345014321077 88123 33384 746184 TNT_20191019 30345725.432193704 3812.9646256417536 0.07082159149604272 8.898789508573644e-06 829497.0560868817 104.22696728738609 17693 2551 505684 FUEL_20190324 6076560.348648619 1518.5817369162926 0.011460677292454478 2.8621412609799767e-06 485127.34995968686 121.15366044410484 1 1526 None ZEN_20200730 77930952.33334784 7025.95468160418 8.111238276640309 0.0007312780203121097 5174948.446547414 466.55343193491973 65415 6027 70851 ATOM_20191020 675827719.7460624 85046.3569603745 2.7482945567205865 0.0003457154018056044 125298006.73672171 15761.574987841112 28885 7064 99736 OGN_20210718 226173991.084708 7156.126833199777 0.7146963671437292 2.2632013378917162e-05 60924011.15368773 1929.2570928239636 None 5973 73435 YOYO_20210108 1701540.7602063578 43.51835193211265 0.00976068481608249 2.4734129225924684e-07 459529.6521312517 11.644742160130969 9327 None 2139137 WABI_20220105 11334942.93258083 244.7117754829665 0.1916364245477667 4.1737726683622964e-06 607956.9865325335 13.241085351688506 45911 7944 512122 NANO_20191017 108073183.06028491 13495.235814672615 0.8111539677645361 0.000101289502524538 3066969.68967516 382.9751766870608 None 47805 267335 FIO_20210430 77811292.4893962 1451.9482217447494 0.33211304782742357 6.1968006853307405e-06 22414436.683245387 418.2244495019454 75597 418 172858 SRM_20210916 535708542.9101075 11115.87124886508 10.711132363376006 0.00022223146881775787 330263608.9595667 6852.213606013643 137060 None 20949 QTUM_20200324 118039913.83838508 18344.686047937794 1.235235174282404 0.00019062710898612234 394615587.70908844 60898.87190068393 179384 15149 109238 BTG_20200325 134956005.58933696 19965.552686799885 7.707231070567878 0.0011405863349412744 23142408.432248246 3424.824632059097 74834 None 195914 BRD_20191020 18475765.119749952 2324.9849148641074 0.3061626109173308 3.8527414007731064e-05 1239008.7531121161 155.91650151965368 172 None None NEO_20190810 732092197.7098559 61736.81355527821 10.384321952974714 0.000875449138868011 240139896.1287487 20244.967964763808 324479 98217 192021 XLM_20200107 998735305.632098 128720.58146964587 0.05003460817991111 6.443528706510627e-06 199331679.9177375 25670.22004146753 279535 105782 56844 CMT_20190916 17129666.897500593 1662.441602309168 0.021414718522245746 2.0780517705255727e-06 2809865.3286410426 272.66506515391745 289765 1649 632576 PAXG_20220112 329745182.7233259 7696.360919408808 1823.177478648426 0.04261171194318929 6722472.387662913 157.11912871011006 28436 None 33151 ETH_20200313 11956631650.303354 2483615.744088336 110.5978978308351 0.022874135637860775 17357843633.111378 3589992.9151625335 452873 454613 19200 HIVE_20210408 204975751.19955832 3639.1598962533094 0.5498889158666416 9.771032311878615e-06 30831514.775618702 547.848335189563 18294 160 120339 POWR_20190810 27002112.19869419 2276.3511791130645 0.0637304965326458 5.372574115382635e-06 581146.8740149622 48.99153187938762 84294 13115 515073 SNM_20210519 181302001.6160139 4253.48646336 0.414308466921881 9.72e-06 766153.6628429017 17.97456291 32521 9708 None DUSK_20210509 97950824.04761069 1670.3511709117556 0.27379721772044585 4.660973382494632e-06 4750072.668825079 80.86262694208388 26877 13588 280853 SNM_20200711 4509685.440544263 485.73752921529683 0.010305303833783043 1.10999972055716e-06 716625.119519066 77.18876563374418 29298 9594 None PIVX_20210117 26555507.88817919 731.3732237778095 0.406953978640705 1.1243106367516302e-05 1526392.7550783905 42.17036078938106 64832 8718 325207 MOVR_20211225 493224947.1988239 9700.357324870061 189.0159100920908 0.0037178492413401853 27259873.979535803 536.1882062968575 87300 6620 15676 ZRX_20200711 288129401.88795775 31034.373818863725 0.41022505417264143 4.418218222517687e-05 58452864.04562534 6295.507952472455 154873 16129 78133 WTC_20190821 41591042.75983002 3870.7561747832838 1.4251919936189745 0.0001326384323039967 4248505.208109034 395.39589961351095 56000 19977 638612 GO_20191102 7084619.256498359 765.8837049763 0.008487960625425993 9.179863719629507e-07 1317483.7162114882 142.487948535288 10280 685 729197 STEEM_20210809 205647780.5796983 4674.63477022442 0.5290150192725601 1.2026252063324006e-05 18190064.16315832 413.5200111614784 14158 3927 205413 TWT_20210314 186113475.32738596 3033.705353369794 0.5359918897943171 8.736311182011608e-06 13626566.686489299 222.10397056807392 None 13014 8428 TRB_20211007 98672837.83283015 1777.5939865829748 49.25417935446394 0.0008878771437747283 35665702.6458676 642.9253844234787 24949 None 559592 SNGLS_20191015 6648333.305907941 796.5532456865714 0.011520033737707729 1.380243715524235e-06 476260.4683926206 57.06194386392002 17 2162 None ZEC_20200530 432223184.62385035 45832.22581162187 46.64929079460162 0.0049496651998500165 148246291.01818666 15729.489026754301 72085 15803 146242 HARD_20210930 69248464.36752763 1666.7791743419648 0.8869440027302459 2.133806951440303e-05 17094954.04513844 411.26983962665236 36339 None None AAVE_20201030 327515080.9960911 24328.685183002195 29.181641354875662 0.0021685467386801964 83819127.44354852 6228.76874012289 73158 1481 13793 MDA_20190816 11774094.777710225 1138.604199720588 0.5998874875431612 5.822443643595985e-05 813278.4470016342 78.9359341967869 None 363 3033915 CTSI_20210823 304615361.7240413 6174.625212427869 0.7654378267409448 1.5534386409670358e-05 20450610.243659865 415.0404784555985 None 4341 202161 LUN_20190712 4272453.7819861015 375.4597887080154 1.5804258787914363 0.00013888655016505982 589968.6295763054 51.84596681631174 31254 2220 2096763 NAS_20210724 13727246.81106066 410.6686494695643 0.3016977321112233 9.025684603726687e-06 2581856.0719858613 77.23962137498005 25259 4926 687324 DASH_20210821 2384843031.0270596 48537.45666863938 231.9153911310869 0.004717345147495291 567008498.4756122 11533.407833896808 402833 41988 76415 DOCK_20200502 2992284.6911695166 337.6712696092225 0.0053304091735975456 6.032663184686713e-07 789504.7458324175 89.35179381556172 42637 14991 414692 RDN_20200425 4893634.581402441 652.6313873318936 0.09579864607625821 1.2781223734715943e-05 595087.0365466119 79.39507359714463 25014 4312 1251833 BLZ_20181229 8676646.54424994 2253.9973345168846 0.04295017101963038 1.1157486997029683e-05 220767.8221679958 57.35050750033479 34984 None 690157 XRP_20200629 7893165939.317899 865726.7449137983 0.1769985457927027 1.940730649395996e-05 1184828112.2307308 129912.49286111249 951521 214744 34884 NXS_20210805 35053876.43114979 879.2212613243207 0.5142506265694334 1.2898433227984336e-05 323001.75157779484 8.101529312741933 26074 3961 456047 POE_20200314 2208492.390968073 401.1420175294117 0.0008865404699872594 1.5936204093393896e-07 94383.88629306664 16.9661840154416 None 10454 759696 BRD_20210718 8033958.730520631 254.2074388904743 0.09778459922058974 3.1000415254123603e-06 497280.0834248093 15.765150347446852 796 None None AST_20200407 2384511.7390635656 327.2436841283891 0.013842323667872015 1.8996815657325975e-06 4206823.068284931 577.3325653169098 31708 3462 340670 AKRO_20210201 46391674.92266203 1403.7552236212018 0.01820580501922964 5.506294920752e-07 10786145.216236744 326.22395195338066 27030 None 187936 ZIL_20200411 43809119.10452536 6389.286611007092 0.004194077662916473 6.1151571564234e-07 14654241.949143562 2136.6555350086264 68904 10556 227703 MDA_20190629 16807525.81782105 1356.8110688229972 0.855502055905201 6.91231754352563e-05 556773.7766030534 44.98641607256141 None 363 2360786 ARPA_20210809 41254988.659697786 937.7767075887142 0.041979593366529656 9.543319123443192e-07 5655338.146050541 128.56412449619566 None None 741710 BTS_20191022 71343228.11260031 8687.792091678979 0.0262191572677331 3.1903595695136282e-06 12661308.659023283 1540.6340802796199 13530 7121 129148 AMB_20190513 5065503.463613713 729.0822532069736 0.035083714498227454 5.041823590201684e-06 407255.7193407899 58.52605752793623 20694 5692 611574 SC_20200719 154535604.1410246 16858.18709896551 0.0034710666150472836 3.7865636695631743e-07 6082981.621388807 663.5884517548385 106760 30118 172459 ONE_20210704 664616655.3943686 19171.509414433935 0.06455198870921959 1.8615998520515532e-06 17955917.247050308 517.8265388713677 None 25513 23324 KMD_20210324 269750762.0333196 4948.243048558087 2.168190026942971 3.977458402163888e-05 33484026.420692652 614.2511522066171 103290 8837 256487 TFUEL_20200411 0.0 0.0 0.001681211745417113 2.4512836582290254e-07 190186.4019894197 27.730047716171242 67945 4025 349819 JST_20211002 99129444.29503897 2058.609946825281 0.06918719928875323 1.4365599833913554e-06 53474919.62605512 1110.3199788338206 53092 None 184239 OM_20210813 68004101.60712352 1529.6318166235437 0.20664815673254308 4.647710334606754e-06 64985781.82357703 1461.591018084189 48612 None 86864 TLM_20210823 357372892.0135913 7242.788280540425 0.2877373808729435 5.838690318584493e-06 109804761.53427523 2228.1289840048626 59591 None 12690 XTZ_20210112 1763337784.9620879 49779.44417221639 2.3349262044748924 6.568255725214131e-05 376322794.96214753 10586.134790048302 79185 31983 186076 TFUEL_20210602 1882916215.460486 51316.737299748194 0.37096191434940134 1.011293811953702e-05 106041767.04479715 2890.8461670281545 165730 18266 16282 YFII_20201101 51580515.28067625 3739.1537571746285 1298.0265567240908 0.09407031051832002 102926517.02657503 7459.2691244275875 11433 None 77375 VET_20190810 274121418.79577744 23116.46398724544 0.004944206428247053 4.168504646922822e-07 30775391.710143115 2594.7007920558326 113421 57259 138282 PAXG_20210128 111412006.90104121 3682.9352476057056 1852.3647751221004 0.06091878624163734 3562285.8953746227 117.15302293935162 14564 None 66993 LTO_20211120 146002848.6388968 2511.650828255103 0.5023395835325453 8.611875517625078e-06 28847534.683480527 494.5486794759247 19964 5796 214303 BLZ_20210611 56646567.77521469 1537.0294062716641 0.1923426403866388 5.2390248054927e-06 37604594.80223696 1024.2731646679983 None None 205295 ALGO_20190801 96225161.17215908 9567.681267172402 0.5640171504997753 5.604520988402922e-05 68285939.53867957 6785.431631258438 10715 522 241883 ETH_20200905 43627087090.328964 4160682.394666732 387.9040290939166 0.03699411471890641 10260946593.268202 978578.7383611604 486075 481831 12393 SKY_20210821 32859211.607429024 668.7111288493372 1.565701125959825 3.184604756215232e-05 3438506.715247054 69.93853844833195 19669 4414 978551 HC_20190626 280541474.22466874 23761.71805944868 6.34034289466298 0.0005362839192643587 452931811.4378086 38310.23826831763 12855 832 640655 WABI_20211028 11535407.052977247 197.12009540110012 0.1951919489670653 3.3355872272337487e-06 1224472.4662858234 20.924708935262224 45361 7914 845056 WPR_20201101 3439934.423829084 249.29346947914104 0.005582364441805783 4.0463265991498807e-07 84083.3265683635 6.094704213337206 32650 None None DEGO_20210804 61439142.3597854 1599.0503133524512 11.3359838175444 0.0002951381598582944 99573098.26619153 2592.4367453833293 120696 None 244168 YFI_20200927 942932874.319467 87815.78142438341 31604.062358820684 2.945581629995603 467500909.1976799 43572.312777524654 41599 None 15815 NPXS_20190312 108294685.7121788 28008.474848578793 0.0006185941848524297 1.5999794870796673e-07 4019114.6455950104 1039.5346653165723 56874 4098 173865 WRX_20201129 18725712.165575437 1057.9856554257199 0.07869068359000612 4.445303397934472e-06 1062613.3309052347 60.027927513942934 42817 None 9361 TNB_20201015 7124903.676330591 624.1954554586849 0.002069075641243752 1.8126251869789162e-07 327676.69726000115 28.706298735531394 15882 1430 727189 LSK_20191108 108433519.5411114 11761.741173951541 0.7949565332134009 8.622862218036605e-05 4428082.9471663 480.3124139266941 180315 31136 157769 LRC_20210111 448907875.8296193 11644.89655560504 0.355172817024621 9.234419907005539e-06 99718605.05731702 2592.663141718634 48299 7710 277317 DGD_20190419 49012020.83280895 9295.553916387536 24.512581690977523 0.004648792890535929 5475497.804968449 1038.4240872209543 16656 3324 470646 DGB_20210220 1177381727.1372483 21049.54127100271 0.08378356038823367 1.4979046061057883e-06 122770597.80950335 2194.925151199978 188632 27970 191254 DOGE_20200607 322823373.1550713 33378.62340895045 0.0025843731472846077 2.672701295826659e-07 113261241.697058 11713.226001002346 140596 156781 103614 DOGE_20200308 299943225.37830424 33699.85073555572 0.0024261943328266946 2.725928774306797e-07 68887904.53028291 7739.838421847115 138903 149858 115347 RSR_20210902 637885831.8696145 13115.711339146432 0.048484150159797595 9.96483691463019e-07 78650118.39149761 1616.4779634262688 80077 None 135884 BTS_20210125 65274823.162216075 2027.3155785345273 0.024222259270868914 7.5080075208954e-07 14626332.050322989 453.3623796563346 13172 6859 133221 XVG_20191203 64333627.85516514 8802.82448740827 0.004005084617661587 5.481879081178367e-07 2347222.1958972043 321.2713209060508 299673 52331 387360 ZEC_20200107 276288764.1524683 35609.08498446155 32.73523967019369 0.004221984630310106 181680689.79462418 23432.028836968115 173 15428 169401 ATA_20220115 111567641.58602037 2588.8817140364076 0.5570279775987429 1.2915288064153339e-05 4002306.898834124 92.79775630377168 None None 206696 LSK_20200721 177161501.1895434 19337.00253153411 1.2567239026778316 0.00013717830531786074 6711107.135253543 732.5541446765097 175636 31140 173512 IOST_20210729 525388188.96498084 13138.974706468825 0.02323647006117344 5.807849983248181e-07 70274490.60344052 1756.4789230010751 249499 53586 204537 BEAM_20210823 73860226.51214677 1497.164208122538 0.7760343349028614 1.574708209388777e-05 15765136.252884185 319.9019471562019 22463 2628 247381 FUEL_20190130 4016233.908055128 1175.8132998483482 0.007548686124621097 2.2112848683716828e-06 596129.628543071 174.6280618140673 1 1518 None DLT_20201106 2760828.2731895195 177.20777111392817 0.03356015517328769 2.160802512042637e-06 407610.3971528376 26.24438312501 None 2542 None DASH_20201130 1062570950.2829274 58582.592501782325 108.22946248953848 0.005956577196670176 798695875.5602028 43957.47266966503 322123 35622 75926 ZEN_20190702 62324150.775112145 5873.351392844898 9.167502454854784 0.0008647834139800959 739702.189999449 69.77714904865108 26137 1696 233714 SFP_20220105 153825361.65395108 3320.958701648881 1.4156007972893374 3.0766637513258075e-05 19572956.036446255 425.3982087247969 None None 22684 ELF_20210603 122395657.9065148 3252.6966746429157 0.2661433127450669 7.06817816186636e-06 11137866.17922652 295.7971090305292 48726 33391 236117 BNB_20210422 85489582707.6955 1577674.7580470243 550.8887930884299 0.010185039579878487 9391918685.628746 173641.33150694543 2892111 267155 141 NULS_20201208 25204967.823768362 1312.5816660685687 0.25608045877453195 1.3345519448820099e-05 5975946.852960879 311.4338178436452 None 5120 479758 MBL_20200418 4252346.433798844 602.1265875863814 0.0012029947917843074 1.7088167055958583e-07 736517.4597423186 104.6200156281605 None None 95998 XTZ_20200526 1939622209.2440097 218248.74414339027 2.737913809510576 0.0003079846924913516 81740503.84567171 9194.892787913419 64933 25488 103096 SRM_20210704 169657796.43362904 4893.897288314704 3.395285160185857 9.791584238166285e-05 32001211.707346786 922.8755329014159 94861 None 25633 SNM_20190818 3977510.0662245154 389.12855661204867 0.009194397561167232 8.995081325565128e-07 120063.7824891892 11.746103869888728 31064 9920 19008991 ARPA_20210212 37544582.33477913 787.690229160749 0.03825749055909266 8.01268208952846e-07 26481811.326830525 554.6373591572005 23863 None 1157851 LTC_20190905 4235067217.828058 401059.9556405375 67.03629153995453 0.00634646163209946 2616311564.957448 247691.52026740825 452138 208145 124361 AMB_20190929 2475472.87394271 302.2318377979464 0.017120521346112444 2.0902538197695015e-06 190749.40777805314 23.288699576744015 19217 5609 570829 OG_20211216 5676278.728158367 116.34242604716206 4.107822544971111 8.405659771285677e-05 1050237.0596609942 21.49054713552106 None None 169740 IOTX_20200430 11538138.69848535 1322.0949185575566 0.0026703453409184204 3.0457843276922664e-07 1735400.8875512504 197.93907344392147 22605 1818 547255 NXS_20200207 11739573.045051172 1205.2381378793198 0.1962402776008441 2.0160810219878853e-05 148291.29791720453 15.234755836665293 23080 3541 456173 OG_20210826 8376144.086423726 170.88612359316744 6.051837875497027 0.00012350054971992935 2797176.1616004705 57.082294788468474 703748 None 316019 CND_20190207 16151938.557285016 4742.624744705736 0.009816090223107133 2.8810687664781486e-06 109921.51564112454 32.26248315567533 36956 6245 572490 QSP_20190608 0.0 0.0 0.026241735592764506 3.2686423155272295e-06 834963.8733446664 104.00220056722932 56812 8598 693082 AE_20200610 55105374.14733128 5637.256427903348 0.15397706896068397 1.5760627911072026e-05 16704755.075410906 1709.8482966731083 25335 6343 486173 FTT_20200430 313639856.73193914 35938.34947545316 3.138229945405822 0.00035789112757355973 5437045.521806034 620.0534652715844 10777 None 13510 PSG_20210731 54281078.14342279 1300.2773485633784 25.78580581290146 0.0006173072231196289 17836243.439258885 426.99623150290404 9335394 None 33698 MATIC_20190806 25449415.368029878 2154.289768777505 0.011703940872436737 9.915839091539401e-07 31353815.806671806 2656.3650298072093 21224 1068 193229 LTO_20211221 95956582.26708676 2033.786940990142 0.32177886338875594 6.825568323450528e-06 22139798.32939866 469.629063181056 21645 6069 179975 JUV_20210509 37446738.45497841 638.463018257161 17.134625989800217 0.00029169045734790054 6409084.5328947585 109.10473328652006 2445730 None 39485 REN_20210819 494178704.5345842 10963.429750581576 0.559195525439964 1.2416394682607991e-05 109035806.277576 2421.034403330752 None 1188 128608 ZEC_20210710 1259712020.867639 37076.938326751486 111.38232229982789 0.0032773998389878595 740669891.0949258 21794.045335876574 76667 20088 101519 VET_20210723 4409558028.187658 136339.68266466985 0.06767169673677725 2.090268568779438e-06 538083674.4696567 16620.52891169807 393173 193971 33228 NANO_20200316 53842926.30169273 9963.532019448312 0.40135099667078583 7.468933949970084e-05 2608087.369797007 485.3515367433736 None 49348 321803 OMG_20190629 372676175.29774886 30111.271811119528 2.668903620906411 0.00021557638175720276 244464503.1786209 19746.225622572725 289517 40111 None XRP_20191203 9504650285.869356 1300529.3043486497 0.2195849101640445 3.00552432840613e-05 1244090274.1824234 170282.35605968267 941706 207798 27644 OAX_20190623 9741741.838372327 908.2982253455513 0.21778466907175234 2.030575555247848e-05 955859.9878934051 89.12224785741827 12299 None None EOS_20200418 2464571760.601502 348136.54404777306 2.616058918760798 0.00037160303716452084 2895033863.8244143 411230.56089305814 None 70949 96512 OMG_20210104 410680695.62067914 12286.491938931089 2.9433085067092013 8.86409810473598e-05 412826458.05693823 12432.723977476397 None 42596 211368 BEAM_20210427 112814355.0463704 2094.211166974864 1.3106530601394764 2.4313625602638814e-05 54642132.7683343 1013.6537262710708 19375 2213 172330 BAND_20201014 150986172.85080263 13215.684923393075 6.692435539000839 0.0005857111211845877 122164936.13163374 10691.677386224843 37012 2628 113456 LRC_20200903 267075075.5326208 23410.576747542324 0.22277040344947452 1.9518214321949645e-05 76848315.69774407 6733.129144822016 39717 7049 169251 1INCH_20210722 328253808.3445674 10200.25081909755 1.8273047787224934 5.658161255792111e-05 41223213.12681208 1276.4569439612426 240283 None 4419 BCH_20210511 25228674307.88394 451855.72397448693 1343.418819769293 0.02404311679677407 11729521439.486824 209922.8102136294 None 530301 307702 SKY_20190225 12708740.885272453 3373.9864502248456 0.9473574073103178 0.0002528907177319721 1781187.7656509588 475.47614975615 14529 3520 348246 XRP_20201124 27755744126.98821 1511815.050491987 0.6120580566284565 3.333791295784597e-05 16337857185.588816 889899.3402214367 981951 220783 23989 VIA_20200323 2319724.6752790916 398.28178246508844 0.10020401744534398 1.7185029840982914e-05 76139.65758971109 13.057982315680146 39438 2177 2066197 XEM_20190916 416582262.42236006 40435.349191239155 0.046290345415126354 4.4930637013140186e-06 55669750.261207364 5403.453612556385 216185 18343 181782 RLC_20190329 30548938.038940284 7587.740355357711 0.4366336193519178 0.00010845098870014182 1429059.6257629923 354.94960180914995 24574 3314 890313 BAT_20190507 432302544.71934944 75574.74398960202 0.3447071656702163 6.028112325408705e-05 48242189.10054583 8436.416868685496 None 26493 57848 BAL_20210124 222158567.32114872 6940.518939200442 20.60523269432241 0.0006429456031189218 63778632.73336165 1990.0863094911956 None None 81450 GAS_20210718 85321427.11346188 2699.5109833790043 6.116619223703059 0.00019369261475027234 10315445.016753262 326.65520682812473 406849 112343 108336 KMD_20210610 193471660.11555603 5165.628642113053 1.5334733142269534 4.094322480695902e-05 18826739.892381605 502.6676608223267 111826 9304 214803 IOST_20211216 699088596.1112659 14329.582301527149 0.030620082572731334 6.265655184889772e-07 65191430.86305081 1333.9840799816036 270523 53974 217229 WABI_20190324 12062618.391653037 3013.8308351698265 0.23031602952077115 5.750391631781709e-05 446648.15721681656 111.5164164194082 35007 8004 1579546 XTZ_20210723 2105300869.6348462 65094.06399571551 2.510667761034179 7.755075515719056e-05 67535511.01797076 2086.0704712331294 125222 50641 65574 NKN_20211011 220723915.04509255 4033.852079785905 0.3402132951322197 6.215794778188337e-06 7677433.517630232 140.2689190915593 31848 3790 224199 PAXG_20210127 112450194.58642136 3451.1943041086656 1867.168632651588 0.057320128667697326 3075928.3619114365 94.42779103834847 14562 None 66993 CHZ_20200711 66988019.00308397 7215.365033957478 0.012593402997613468 1.3556438192107242e-06 6954466.41576537 748.6284218989505 26360 None 264986 DASH_20190312 708406281.245715 183216.01108544352 81.63954406206507 0.021115878395300717 1475220536.8330305 381562.36441417184 319912 23230 94938 RCN_20200411 27928146.091980346 4072.703945953802 0.05477916453349438 7.982320621981299e-06 1954927.5539843268 284.8685017659781 None 1135 866129 VITE_20200224 10134669.749266218 1019.0670731182616 0.019966562024381955 2.0077165261456544e-06 4183588.3607531716 420.6763027214119 None None 469368 DASH_20200806 871811887.8989646 74473.25185470798 92.2882220257174 0.00787522818512054 371666812.63152945 31715.43338969188 317410 35172 74768 VIDT_20211216 36471945.41844258 747.5843843004407 0.7908633062594478 1.6183218708922955e-05 8210068.011223105 168.00036768575066 None 1862 290376 FET_20200730 43617307.31382672 3930.420703496106 0.06857552730602416 6.182864413227717e-06 11612502.585033976 1046.9992984685975 19275 472 533444 BTCST_20210731 126167579.69240175 3021.304747768639 17.31142027888831 0.0004145524262789152 5295135.262006174 126.8013331648293 None None 1340549 STORJ_20191017 17720295.367391013 2213.131942153012 0.12325978407181341 1.5395620368491587e-05 3338950.1931186235 417.04770124054716 83241 7822 147955 FTT_20210206 1320773626.5106475 34847.98346876323 14.827068993681465 0.00038965152957448076 41456375.59469757 1089.4628040087957 55454 None 4702 AST_20190903 4196828.298861987 406.58063984913775 0.024405567907951276 2.364275640053538e-06 2101007.472192249 203.53391508075669 32046 3578 238019 TRX_20210702 4656219826.830843 138597.9169273338 0.06503644923842729 1.933722919472831e-06 1338402260.9222069 39794.59453469562 1063752 113529 20767 JST_20210823 101431362.39072438 2056.0376338342912 0.07055309695745787 1.4316446577150232e-06 105197792.33618955 2134.645591707087 None None 156569 ZIL_20190314 157207673.69778132 40659.98796782899 0.018298100256142757 4.733333082345761e-06 24221739.147201512 6265.653680573202 56896 10019 179574 ZEC_20210106 647649710.367102 19061.382844261825 59.82543082214908 0.0017556425359207496 445735705.18111736 13080.600557996771 71950 16566 167554 BCH_20210602 12958746456.287617 353175.87801893876 689.7422496827412 0.01880732869828684 3474451921.8462267 94738.51916511281 None 552542 273497 ETC_20210112 849055574.7758608 23982.7773176838 7.2472241435025735 0.000203878802841704 2351565387.1420345 66154.20282872557 253587 26479 167227 WABI_20190410 15896105.126877958 3072.6291652120576 0.30172045338857967 5.8338420456226154e-05 806852.9599111927 156.0070810348033 35657 8011 1213575 IOTX_20210114 40376251.02658375 1084.3454839079775 0.007068429151213805 1.891353965490796e-07 1967595.4303393036 52.64846460284265 31034 2018 689535 ADX_20211207 83303367.45319146 1650.3989934836159 0.6105793697106903 1.2091155756597158e-05 8712101.649698831 172.52364432772825 None 4049 10416 QKC_20200801 40154542.0045617 3542.9519601093903 0.007561039845307433 6.670412586430271e-07 4090639.9428212307 360.87967686195515 50613 9213 348302 YOYO_20200109 1789232.0483476329 222.37969078825768 0.01024928019352583 1.2772826610129341e-06 538903.9344790288 67.15912127141507 7499 None 1425817 ALICE_20211028 183346455.59594867 3132.627643127916 10.542440772714112 0.0001800153735204189 144502973.9162662 2467.432104686239 None None 26870 BZRX_20210427 109240770.51397571 2027.19568318886 0.7757551783344843 1.4390857152788986e-05 103970854.49375795 1928.7395777175805 None None 181064 MC_20220115 259859509.08066356 6028.148227292545 3.966413549225652 9.196307246268303e-05 11057087.051641911 256.3635095374394 None None 41620 SUPER_20210428 223340548.47003847 4054.0832365840765 2.192981817562782 3.979600499666865e-05 27250627.146083925 494.5166828939582 None None 80916 INJ_20210314 154843277.0723847 2523.62233256971 11.438338103545867 0.00018645708472859665 24799537.274986375 404.2588513342404 53418 2647 104898 TRB_20210902 110191100.65371598 2265.246994620247 56.629417100721504 0.0011634556758692803 37488593.50236559 770.206001116119 24154 None 492317 IDEX_20220112 130143463.47317664 3034.64861121721 0.20834332986102255 4.8694469196186965e-06 9048880.873195564 211.4924683375819 77098 1992 51993 ONT_20200621 360597266.7274691 38544.71119502679 0.5660286013011748 6.049682585534827e-05 90802652.30871764 9704.937579649522 85767 16477 143020 CTXC_20201130 854332.5756124995 47.09727901117011 0.08504146065323011 4.680389365765523e-06 3031514.619247527 166.84413316870655 16570 20062 643557 KEY_20200323 2402669.5011497494 411.82046450401094 0.00085375571715329 1.4631879902731333e-07 809632.4842100322 138.75684854926962 23441 2759 250395 ORN_20210104 40812359.15527214 1219.7187640718516 2.433552848831532 7.392839135978089e-05 7063660.588621736 214.58546284664587 None None 137368 CELR_20190901 19006727.085682653 1980.112303758648 0.005844134714684928 6.089449926542801e-07 4286550.806755873 446.64843932723744 18309 None 503834 CMT_20190725 33337100.742609262 3391.334697039343 0.04166308590704468 4.243312039034046e-06 5217083.604286175 531.3507913481624 290893 1650 580172 CHESS_20211225 96362881.41759355 1896.5461149240125 1.833203116390882 3.605819643529307e-05 14501589.059010718 285.23906720340227 27719 None 49485 MBL_20200407 4996622.475810884 686.7830559177564 0.0014172926651410003 1.945052589302939e-07 1462464.5428203607 200.70452036760432 None None 105584 GVT_20190531 14986333.629343102 1804.4945065736422 3.3760771954144952 0.0004066629388103036 2348222.348013345 282.8534259584361 21406 5784 169607 HIGH_20220115 0.0 0.0 8.598464460143832 0.00019942346133777539 32132074.84574077 745.2365030296236 None None 74480 ENG_20190716 39144873.95353987 3579.58451165967 0.49379560593847865 4.520814516695007e-05 2058011.773931966 188.4158018263134 61849 3479 316821 JST_20211120 113200805.68593042 1947.3654110914777 0.07901462963730775 1.3581182809398616e-06 583224345.5728841 10024.569491087344 55395 None 202325 ASR_20210814 17071828.676917512 357.89448217833177 8.396341946285649 0.00017602124001637367 6626603.135694244 138.92036657193196 1999382 None 92555 YFI_20210111 1029895512.3556176 26796.95328219115 34213.87461904417 0.889975443834107 824165892.9790485 21438.302868763283 None 2592 18869 CND_20190905 10838419.97089579 1026.0618107374116 0.006206174519566263 5.875320094993736e-07 217609.59025766514 20.600870866157443 35862 6108 335034 MTL_20210325 106528032.97526637 2015.3098748711216 1.6420018878845666 3.1166113615359294e-05 21595388.169202145 409.8925380142165 45481 3535 291535 BCD_20200713 184995841.86794066 19939.19430651958 0.9840777148375658 0.00010600024334105824 44355501.04765184 4777.76687112738 28316 None 1537818 SXP_20200901 188849789.91906762 16170.065816180191 2.8601709228881043 0.0002449795487044926 125612671.91223572 10758.984867083373 78912 None 88692 KEEP_20210725 108607433.14418882 3178.851511301787 0.24860006858051237 7.275175113589177e-06 20433562.038933437 597.9794892111396 None 2818 132886 OST_20200113 7185095.325149401 881.3804511336386 0.010390625718744856 1.2745570414203072e-06 70068.20242758369 8.594854939547186 17857 755 561579 POLS_20211104 242817821.8207131 3852.752636849756 2.9859706608441554 4.7382394883346137e-05 33613409.41497569 533.3889777154407 533260 None 14809 DGD_20190509 64547452.81715015 10844.491766548026 32.28890979881234 0.005422331163385501 4485201.257327321 753.2074233288706 16940 3352 465743 WAN_20190615 46445965.66932776 5338.260195279238 0.4372992454084952 5.036533264801497e-05 6202219.707281686 714.3320323398111 108580 17038 409918 CELR_20200417 5917066.084631025 834.0147016990734 0.001577075235516192 2.2247217257066364e-07 5013280.76068674 707.2049813600901 19311 None 1594945 ETC_20190605 914148760.4420825 119237.65136422394 8.241965174822191 0.001072969954409216 1191357680.1875107 155095.41337311463 227935 24610 668165 WAN_20190507 36534994.51046406 6386.519818706305 0.3442927464079755 6.018645766543449e-05 2167774.3144007134 378.9526743246905 109196 17121 543432 UNI_20210722 8689643628.797651 270024.421009207 16.768448517662996 0.0005198627801483721 384141492.3870195 11909.322677784194 None 49122 1613 EZ_20210704 0.0 0.0 2.6175167861966697 7.550409454420432e-05 587247.9559493209 16.939576250555806 34868 None 116746 LOOM_20190130 23468636.976594914 6872.784048066716 0.03915744060095566 1.1471678083509111e-05 1383663.3182983333 405.362044093635 16762 None 403185 BTG_20200310 164089081.26315218 20725.543639322106 9.442737334878823 0.001193108204275218 31061032.57959687 3924.621800830006 75030 None 217881 STORM_20190805 12651194.485848928 1155.2632692965092 0.0020292869974585038 1.8529675057487161e-07 161844.40783091463 14.778216638327434 26649 2553 2770937 CMT_20190426 24788540.043924022 4771.852655630307 0.030888104679511315 5.936451728442426e-06 5595620.3136938745 1075.434385748174 292554 1637 827580 ROSE_20210120 93787140.76224077 2584.959120397974 0.06200429871076883 1.7147551260304599e-06 11048566.126270548 305.5527728598997 9000 633 196498 POA_20211021 12016721.668737974 181.26624409887214 0.041760466874814585 6.299874450458724e-07 287666.32189677097 4.339658646555657 20446 None 235797 ENG_20190220 24926677.29166121 6366.946480608712 0.3238151150536721 8.271112443248075e-05 362853.49237933237 92.68258016298186 61122 3186 251266 REQ_20190614 17519260.52355535 2130.4300566259863 0.024028334700607966 2.9192537822698287e-06 350724.8822775894 42.610316190538484 41700 30002 442629 ARDR_20200927 53660484.41931924 4997.468212000631 0.05371732836838904 5.001106475485222e-06 3271097.5256784395 304.54059266359474 64285 6301 1172262 REQ_20210131 28344047.44786454 828.4716031676062 0.036682177176153026 1.0734026156766883e-06 7322483.843950144 214.27226834442425 39571 27138 458949 POLY_20210806 234161025.57499072 5715.197055440149 0.27261836012300156 6.66289573300527e-06 16348878.17750236 399.5727602467984 47922 5805 197469 ONT_20200730 438567506.47147936 39541.85312290439 0.688109675034376 6.204092027147983e-05 118502363.19356726 10684.337008496163 88308 16584 168500 REQ_20200501 8662530.29891403 1000.3458832022255 0.011176300769743023 1.2957282794794854e-06 227458.6436870291 26.370496205258096 39243 28157 689696 ZEC_20190314 310148736.6769138 80195.73806127229 50.92076238632498 0.013172128571136586 220007166.46448466 56911.219460058666 73760 15045 156560 REQ_20210125 28267830.33761902 877.946657510031 0.036245318769144774 1.1243984696694085e-06 1263784.681683894 39.20499557826182 39513 27175 455841 CHR_20210813 180463360.66086227 4059.0635282761064 0.3184358351347813 7.1619197832021345e-06 65305877.01979555 1468.7902584502585 76986 None 86794 THETA_20200208 123135030.7338008 12572.32859287524 0.12344008940360285 1.2591268349391484e-05 4779814.023775862 487.5557148761265 None 4020 477822 OGN_20200322 5708183.05613514 926.0291220751302 0.19976274480304593 3.243669175315553e-05 25718449.767023616 4176.061098301648 66410 2173 104622 POLY_20200404 11835990.462118363 1759.9559581811593 0.01912784994622612 2.8426572602378476e-06 6656624.918069281 989.2645124897152 34854 4992 460641 WPR_20201129 4982017.266462374 281.4423315629138 0.008174921378302419 4.614870618308543e-07 112399.62463612846 6.345134114915392 32572 None None AERGO_20210108 12603150.133575886 321.7419584580386 0.04798037384909837 1.2158499013679726e-06 5150815.2096730545 130.52458041160764 11554 None 652713 PERL_20210711 0.0 0.0 0.06261651110219878 1.8568976661533585e-06 2646969.1254569725 78.49608202250113 295 682 5749080 LEND_20200914 864618715.0648924 83761.32638650356 0.6910036206533318 6.691095363539198e-05 135045048.2201907 13076.621728272685 66084 5909 20694 XRP_20200531 9100788486.566254 939100.115219946 0.20577482926769294 2.127500720881511e-05 1464684241.188124 151433.33079566108 952183 214035 35259 REEF_20210708 200137010.573764 5890.229388724719 0.015800289471039706 4.650180849902035e-07 19300583.79799326 568.0351953922262 184156 12434 42955 MINA_20211230 1110017638.7352977 23933.4244389623 3.3497429513003727 7.198183062404237e-05 41379553.995616846 889.1954070250738 169535 11922 61676 DGB_20210115 384883858.76202035 9812.159739957242 0.02760926080417061 7.038655198065036e-07 14887799.007159287 379.54686513613495 179610 23918 242284 QKC_20210422 226538585.0385832 4180.911778249335 0.03495126127764698 6.452074054211965e-07 25724373.021303646 474.87716798870684 72002 9386 311852 OGN_20210722 209618977.47459653 6513.750468635154 0.6656665265437534 2.0611191013390902e-05 46035399.75942589 1425.4050338776804 117107 5986 73435 GAS_20200410 17154669.037948314 2353.597437656998 1.2315847341086004 0.0001689081021704843 7394553.073005257 1014.1404739514289 321463 99277 235469 BRD_20190629 21954097.898076594 1772.2753102988079 0.3659275887587385 2.954001726352442e-05 141639.7158621192 11.4340644988271 168 None None ANKR_20200319 4469681.66471607 830.0865760471337 0.001120811289736661 2.0802921720857846e-07 1544719.0189182677 286.70900378624145 None None 5425 APPC_20200331 2654834.9316397374 412.99004468050214 0.024496874951864422 3.821034463102461e-06 207409.43101372742 32.35182387276738 24790 3224 749720 REN_20210207 688560419.541274 17559.395035792604 0.7796370773079537 1.9826243294085273e-05 249243323.8238352 6338.28087630309 None 1026 83739 HBAR_20200410 141466716.6716048 19409.04258400423 0.03654963398133751 5.012671186836247e-06 11848636.331348097 1625.004452076767 38454 6394 106388 HC_20191220 48857371.44538298 6839.729875262674 1.0970794339520584 0.0001535312512349666 25429964.257848587 3558.807239055935 12804 846 1381561 XEM_20200913 1153567464.311881 110629.64692763444 0.12795408931520166 1.2254489983234022e-05 39034628.412409365 3738.446074206884 210966 17849 239986 OAX_20190805 4960895.470031289 453.43762321527834 0.09474083516423717 8.651404979201367e-06 828240.0899021932 75.63201681020053 12316 None None STEEM_20200403 49765576.13684305 7333.501846177267 0.1449057563076729 2.1256198181032557e-05 1664142.917347894 244.1128120376503 11177 3839 214846 RCN_20210704 19885766.62389927 573.9324146760647 0.03872203074502699 1.1169363118526108e-06 484508.1108382389 13.975628136492805 19912 570 2739535 BOND_20210731 81149485.45934527 1943.897236373249 21.356130070120365 0.0005112616392841827 15263648.937163215 365.4088147735446 21796 None 139149 TCT_20200224 5827365.895932613 585.7232554573325 0.010067527767122648 1.0117423768385812e-06 215172.52128394996 21.623894480342045 8 None 380561 BCH_20210202 7713555824.385732 231015.74438503015 414.4448543274221 0.012410493045595286 4510524022.126259 135067.009335733 None 428556 337812 EOS_20210324 3916793473.8087554 71848.71669433091 4.118799737129394 7.544398396025249e-05 2826376348.854194 51770.686981058716 None 80281 55495 REQ_20200531 10909366.011591768 1130.2222672233518 0.014018185953880508 1.4519714700516647e-06 103952.7960894846 10.76719160743104 38945 28003 826510 DEGO_20211002 40098886.850084 832.5784616384017 7.4943613719675195 0.00015559024494420464 15363693.309457771 318.96524421781413 154798 None 206155 STEEM_20190616 127536506.02812532 14464.456924461228 0.4086574157576957 4.6346599031334234e-05 1762272.401025244 199.86259689639695 5706 3744 341474 SNGLS_20200719 8022040.890080457 874.7780440980797 0.010165277116303162 1.1085994101263102e-06 1096617.3726127124 119.59431685959171 9089 2129 783082 DLT_20210718 4331586.043244602 137.03331519614673 0.05281791126521601 1.6709384068905454e-06 825053.8594644015 26.10126278204888 15226 2597 None MTH_20190905 6518521.141070476 617.7397046086094 0.018773244495888436 1.777445737473544e-06 1078787.0320333831 102.13926591908098 19529 1994 715962 CHR_20200701 11681043.566223059 1276.865432688063 0.03319920334272427 3.632022728749673e-06 12129172.730347762 1326.942414333815 22111 None 392224 CRV_20211011 1053835495.1911132 19259.428699243683 2.6952112940726165 4.926357518845719e-05 141317151.87459457 2583.021283749913 None None 15184 LTO_20210527 73822729.55720349 1887.6692707313425 0.26348365428068893 6.72103562208368e-06 23075876.712701533 588.6277455058254 9882 4167 180046 RUNE_20210702 1684123691.1428754 50121.69346521431 6.221112639512741 0.00018501823761631745 67595165.43522981 2010.305729039038 2487 5772 58738 LTO_20200417 8259143.008617529 1164.1321212405678 0.03903473590483731 5.5064858713787624e-06 1353939.099118703 190.99518280794942 14584 423 889154 GVT_20210408 43235218.92454083 767.5661245039963 9.617364640302084 0.00017105466999182815 3104457.9604995884 55.21596110762429 23882 5554 234214 EOS_20190601 8965769797.438963 1045815.6371992158 8.590282017746835 0.0010014416389980158 6997858678.669094 815799.4173142404 1054 65704 114129 CKB_20210821 411921272.4013899 8383.95758490448 0.015031293516725516 3.0574857143320383e-07 18451512.119414113 375.3185622392322 None 5517 124430 ADA_20211007 70967214662.64716 1278476.3953235785 2.2133070922060374 3.989803109258672e-05 2144512119.753268 38657.903159323534 643052 629735 6972 LSK_20210804 462323540.3059931 12032.69729364586 3.1950283865414373 8.317556311446466e-05 38015771.8365343 989.6573198078967 196487 32607 284613 XVG_20210722 291405442.43315274 9055.4566352579 0.017764375657540975 5.500431881952396e-07 9492478.407748938 293.9181870462341 321684 54453 103436 APPC_20210602 10258068.086561289 279.7839974703062 0.09093779655394241 2.479617613209299e-06 458229.9267942646 12.494639637597501 None 3132 545194 CHESS_20211125 118028871.732069 2063.173453121918 2.583412445112157 4.516963829164967e-05 40031534.41255614 699.9307962211142 None None 43497 ONG_20190614 0.0 0.0 0.43798875587276664 5.323733041739099e-05 7399763.36561228 899.4378098145621 80400 16238 249314 GXS_20210902 55257049.03305068 1136.1468169690786 0.740250976334187 1.5214209655637988e-05 6906651.510025353 141.95083485376762 None 27006 679946 XLM_20210826 8470722679.016552 172812.08344716637 0.35887403402190093 7.322353326698247e-06 618854449.6441485 12626.912254725295 616162 198664 37413 ONT_20190626 1156171438.0733702 97927.12402261629 1.7783672339135108 0.00015041927005197855 289111339.39398944 24453.844968619524 80493 16257 232873 GXS_20200704 31799812.088728424 3506.9018249694986 0.4922659331861505 5.4309221202258616e-05 14235337.570676198 1570.5131005324406 None None 671757 VET_20200526 307784485.4875171 34632.29958098481 0.0047821693214915115 5.3776364867206e-07 195830362.0046733 22021.480820247947 120384 62137 302162 BQX_20210814 957508666.4631919 20113.240196673585 4.314479855162881 9.055953239512198e-05 6794383.10105903 142.61189696109864 100431 6576 29593 FLM_20211011 0.0 0.0 0.4805286406596323 8.77939650836183e-06 12306418.048036305 224.84179817681218 None None 94802 BAND_20200312 10964244.40578542 1382.3284496826227 0.6191963022218033 7.800226202099255e-05 16405017.990917236 2066.595855296702 8563 1056 796393 CELR_20200430 7474888.0294324765 855.6883021520695 0.001977569541509183 2.255402845844096e-07 2743608.2738286606 312.9064125832075 19405 None 1594945 DLT_20190729 5278734.716829747 553.7342351041362 0.06580076228833975 6.902437180416859e-06 839576.7256286197 88.0707974384448 15061 2666 2867435 MTH_20200901 4103114.101634332 351.04973163825184 0.011790567036480308 1.010087449781889e-06 363959.4368464267 31.1800830486609 19085 1899 1279779 NEBL_20210418 74484413.4692055 1235.5862478442873 4.187877653064498 6.948476028121633e-05 2539251.195551087 42.13094919034921 40210 6045 477279 CELR_20190512 20237115.005655695 2765.056424467262 0.008507233812017076 1.1680661015672462e-06 6657163.43894403 914.0464594542104 13167 None 376913 SYS_20210202 61346307.87128692 1836.8002550439226 0.10126213056456278 3.0319397157124795e-06 10858856.15880822 325.13040236802425 61468 4501 273624 TNT_20190513 6896407.875588514 991.7064202270176 0.01609506646170777 2.3144774833512927e-06 1368679.2007003957 196.81665804169617 17277 2503 1010954 FTM_20200309 13624771.010392105 1692.1399988204719 0.006379417318110545 7.930088892524108e-07 4579098.083308266 569.2158552652326 21266 2318 349202 FTM_20200301 13981508.35669987 1632.192158163128 0.006656137611541066 7.782309138442638e-07 2906337.9124627663 339.80697839455627 None 2315 349202 NULS_20210210 53924888.427948676 1159.7252588153717 0.4853181779674588 1.0420248567129446e-05 46613112.66276197 1000.8284100707165 38020 5102 775793 DIA_20210703 56476919.238783 1670.0148203240328 1.1659140317577101 3.442265455044206e-05 7226047.302407665 213.34311388373757 33620 391 433777 ZIL_20190723 102655835.77268468 9921.885758177297 0.01141453763536862 1.103701291851242e-06 14280356.802603683 1380.804790751506 65620 10607 174377 QKC_20190818 62489658.15520098 6113.940208658421 0.015608660527817586 1.5271237228787112e-06 3172017.9962935396 310.34462713216305 None 9237 287849 YFI_20210421 1768988916.898156 31312.02076084304 48876.349946939044 0.8668489486392297 853981993.6573237 15145.8403535112 105131 4641 20046 AXS_20210221 98935768.12676474 1762.3478489431982 1.7903682631755715 3.1891920557799365e-05 23303389.609587304 415.10445948042644 None None 20130 ZEN_20210704 748501198.3102652 21591.240083511642 66.5495620658575 0.001919207407442765 35052857.77313939 1010.8812470271813 115150 7408 1147969 REEF_20210702 191003594.59072027 5684.513358002497 0.015050775505753773 4.4746881893920614e-07 14766794.216550538 439.02588043201587 183255 12397 42955 ALGO_20210120 424064341.1743447 11710.171943977026 0.5248478354130859 1.4514889045979514e-05 281964815.554865 7797.85632425779 38081 1910 270468 QKC_20190205 44426927.27402623 12819.207203177239 0.02812787841809122 8.117638477263918e-06 3556449.663279653 1026.3828718245131 33825 8636 205712 HIVE_20210613 123190215.50046307 3434.7044647015846 0.3345031849875054 9.374462462944303e-06 6294536.117269638 176.4045761034996 20478 169 114577 PSG_20210930 74790150.8378711 1800.1650578249269 24.076537041180515 0.0005795113421941915 12022273.650383709 289.37068181538285 10383490 None 10612 TRX_20210826 6270617577.917241 127927.51329525435 0.08748035750269194 1.785254791593426e-06 1072126835.504711 21879.420991412662 None 115855 32149 MTH_20210813 8408129.055733232 189.12597061026653 0.024192998512513757 5.44178650841711e-07 622330.0869742864 13.998213033936311 21818 2055 1226676 CND_20190623 27012188.9979131 2518.2640246376154 0.015567389642005377 1.4514685997323365e-06 1250439.5538826417 116.58818787618927 36285 6149 632693 TNT_20190227 6794885.475013304 1783.804283689849 0.015858068855498723 4.1630857884962085e-06 773351.2874061578 203.02142609246295 16976 2511 1224257 MIR_20210828 310459455.82599795 6330.1310662216565 3.990861884615274 8.13555943525838e-05 88417913.19362885 1802.4406975878799 57765 None 15309 RVN_20211028 1057134377.7816125 18064.17118566218 0.10601797718847505 1.811282402383466e-06 89974390.37839383 1537.1829785796076 74897 56372 54350 KNC_20190325 42065127.121510714 10541.552294259016 0.2553538632658185 6.399247637909583e-05 6286489.400459989 1575.413895530525 95052 6656 212741 VIDT_20210105 28080216.19580175 897.5245153017304 0.6062590500466176 1.9377783854873985e-05 2376687.53922808 75.96577308362278 160 1148 None NAV_20201101 6961686.766495751 504.5260778344869 0.09973237992254838 7.22778428487839e-06 105088.45945186562 7.615948966004239 48232 13727 1185476 ZEC_20190904 335039878.4835162 31532.237597394997 45.60216795516969 0.0042971198346671464 210395051.38654855 19825.652791721248 111 15330 175119 NAS_20190227 27606240.325488325 7247.234692955748 0.606730556604139 0.00015927988336166476 1692225.2499844802 444.24569935588653 23428 5182 410300 RCN_20190801 9473831.351241818 941.3948955554952 0.01875444154948607 1.8602107566606406e-06 1477268.3601052517 146.5269166608439 None 1120 1860009 PERL_20191015 9610241.689830378 1151.293550404308 0.03677681159636057 4.40581073420138e-06 3347746.0490871957 401.0553073586248 11147 373 269968 AVA_20210724 91371428.9888751 2733.544787324488 1.7674646603398403 5.284068643797632e-05 3163772.4445473575 94.5851486904937 None 10513 50781 QLC_20200407 2289830.242368529 314.4619528056456 0.009527030596181906 1.3094860230485184e-06 124042.99434320873 17.049653164189 24494 5661 940522 IOST_20190130 77215056.89799614 22612.408715868634 0.005790398876314041 1.6963721546848598e-06 5673979.095732128 1662.265475982374 196790 47844 76901 FUEL_20190714 4759106.419176108 418.13889274366835 0.005807811228039838 5.099926409136392e-07 452486.07697451167 39.73348311645582 1 1511 None BAT_20190816 237862720.29475048 23113.89887916576 0.18601676165946732 1.8055616403704628e-05 22901780.76004444 2222.948968018765 105166 29524 32625 RSR_20201031 114087190.25530292 8400.218100517766 0.012199851001797634 8.990018825116898e-07 89514439.50523019 6596.2813492823 46042 None 118902 INJ_20210916 370502917.96408874 7687.986928411991 11.363614315937074 0.0002357283961409138 23462500.128074836 486.7093664812561 84997 4045 121135 ICP_20210617 7432591669.034574 194318.82359118032 55.22393258382 0.0014438343592127834 222028405.2667153 5804.951318139703 231951 20280 24602 MATIC_20200905 73039273.53069113 6963.012209562044 0.019429452735267812 1.8527139182367251e-06 20356501.58857557 1941.1135420867076 51373 2257 59373 PSG_20210220 0.0 0.0 12.629626104145068 0.00022592511829089499 5786419.8806245 103.51039573387047 8667871 None 33422 XMR_20190716 1550962155.100556 141590.97915708047 90.4118959844753 0.008267673129307557 559965139.609008 51205.74773577698 320031 159473 109892 NULS_20210124 38723960.31242895 1210.5845877713236 0.38831449694327536 1.2125975195789527e-05 67943293.2731661 2121.6789366249623 38217 5099 890471 ETC_20210117 907638662.3657149 25010.92622961494 7.793986355898006 0.00021532807694625922 1339349353.8367457 37002.825967566445 256079 26550 164892 KAVA_20200801 65967733.12695267 5819.780371159836 2.427209301053957 0.00021413043447587632 24227306.059691146 2137.353202498449 None None 136453 ONT_20201030 351424783.2757069 26089.23822097349 0.4532826003869731 3.370942685028701e-05 118452922.53653619 8809.030225380859 93546 16685 214666 RCN_20190220 5769501.54358796 1473.68648929806 0.011524929018852617 2.9437780815013165e-06 670310.2336342055 171.2153341986353 18092 1098 2734596 ZEN_20200312 75580632.31324784 9529.223165294577 8.751143718925416 0.0011023889869709652 1634114.5223966625 205.8507905707899 None 5070 41227 BTS_20210828 156605762.5730511 3192.8955238594226 0.05780060678575506 1.1782925230068219e-06 17566579.033257693 358.1029660539325 6697 7232 252207 AION_20210930 68632200.42860156 1652.457041844234 0.13842780764684934 3.328758520450953e-06 4308357.83444385 103.60261492505836 647 73599 662533 XEM_20200801 465101109.2813807 41037.22280259901 0.0516924170889475 4.560348267270619e-06 12764631.931060899 1126.106504344659 208858 17828 241923 POE_20201101 3820646.1425794815 276.889161745405 0.001517831442135591 1.1e-07 32483.17251027888 2.35411448 None 10111 1320650 SKY_20210422 70783960.4655756 1308.680532273444 3.53919802327878 6.54340266136722e-05 15737652.911631646 290.9636569310793 19114 4297 267586 MKR_20210401 1912421633.1237512 32514.721913283476 2117.2643725267208 0.036020545475186315 84197282.7977722 1432.4295507248942 125529 23494 31168 XRP_20190830 10998830452.849558 1157925.1557595585 0.2558310903917157 2.697407700238698e-05 1517389984.2828093 159989.13273607602 937763 204964 32072 MKR_20210219 2367986008.3801594 45813.49469262504 2629.1930649951237 0.050854357718321024 156323137.5916224 3023.63217999338 106483 22087 33476 TROY_20201115 5367056.97058959 333.51382383384447 0.0028263839830135634 1.7570392284056612e-07 614051.0263436484 38.17286497562815 9621 None 684232 XVG_20211230 277019683.960251 5972.904792505668 0.01691640028845022 3.6320212161386684e-07 10893870.543914981 233.8959132362325 336608 55616 176659 CND_20200403 6546053.645086585 964.6325877834635 0.003408553003541715 5e-07 34115.76287799267 5.00443485 34728 5958 426986 AION_20200711 49297119.31716692 5309.149425856785 0.11225220081342764 1.2090688714224268e-05 6602650.375184869 711.1717168726279 67555 72559 281333 FIRO_20210620 77628805.14950846 2177.4519484042803 6.460233442817051 0.00018144880631963507 8481287.102812804 238.2142123007304 72896 1043 230087 WAVES_20210131 666425232.9027892 19481.02311432124 6.661912500388445 0.00019497655919047555 65734324.04064501 1923.8698078681464 155541 57315 119606 XLM_20210201 6803504942.507117 205830.31513555875 0.3055520987160284 9.21670963774063e-06 2145624846.0750735 64720.881580901136 350186 131682 30646 OM_20211104 87441443.80180764 1386.5197363274183 0.2351507605085272 3.7286800890030007e-06 7786193.580400901 123.46217766670176 53845 None 97672 IOST_20200423 37782003.076952785 5311.7451612881805 0.003149579584631298 4.42408023984436e-07 37048403.42233702 5204.031366546045 193309 52213 215999 AMB_20210127 2916423.065106419 89.4900787275713 0.019871697295052726 6.098084592081807e-07 424241.6389283299 13.018824528453639 20399 5467 518256 CRV_20210603 767107564.5940505 20383.962453924214 2.349717602839637 6.24033062324311e-05 584311733.8045052 15518.028215705468 126326 None 22444 KAVA_20210202 112578222.27789348 3372.252437073841 2.4132364370196173 7.225591004269077e-05 71509630.04197337 2141.105329024552 56425 None 91263 DGD_20190625 58539887.94800685 5300.554436442695 29.269958608982726 0.002650278543360619 2214856.6687929234 200.54647785253812 17077 3369 464575 ENJ_20200531 186074672.64592403 19200.835925287152 0.2022901235305314 2.0893552521308414e-05 16976374.607751805 1753.4062874549331 55629 15507 107463 IOST_20190706 146502426.87535655 13329.550611353678 0.012191755248281703 1.1095073448714638e-06 54025968.00157807 4916.618410625473 198035 50324 104916 REN_20210821 558660027.4577441 11370.57561334989 0.6362237987238452 1.2941302580191914e-05 74822386.31783822 1521.9473761487645 89823 1189 128608 UTK_20201231 56071813.19453658 1941.7437970502426 0.12396206963066442 4.299185054452204e-06 2438809.208887692 84.58145409115312 54580 3103 130314 SNX_20201030 428425756.2430674 31805.672640500892 3.273770701097381 0.0002434616591923931 37727014.30994675 2805.6581657340625 41557 2453 30438 SUB_20190207 15145877.845446197 4447.169085687998 0.03954320480346489 1.1610770913742144e-05 104679.34931040982 30.73620234585191 68645 13839 506806 RSR_20210513 943479341.7798241 18292.214776768986 0.06963379978546273 1.3815190549968366e-06 118543483.87707825 2351.8762774178485 72401 None 79462 POE_20201124 751409.3055846908 41.02993942227365 0.00025998353769399527 1.42e-08 12556.060943054117 0.68579752 None 10086 990343 MITH_20190126 25093732.669615936 7038.009201747015 0.051236588445628485 1.4368020701848056e-05 3691862.4970604074 1035.2905686222787 42 1970 482840 ONE_20190712 31257319.65420156 2759.6551449859635 0.012101164613336672 1.06344057553086e-06 8977626.135288516 788.9465360788654 68590 None 175184 POLY_20210111 74865270.21490304 1942.0284816459587 0.09984042584060723 2.6032541176411184e-06 5456359.594102801 142.26993185461305 35785 5028 310362 ANKR_20200308 8673064.828342948 975.7752715296247 0.0021642913527368207 2.4316700416718446e-07 2720277.867783474 305.63436793051784 None None 5490 DCR_20191220 186935294.2149226 26177.73069961385 17.250517695261408 0.0024141310868107603 19279423.003037814 2698.0671090348255 40867 9701 101440 SUSD_20210916 270191020.45857996 5606.389220795487 0.9998570924151503 2.074474506682664e-05 31527464.451624185 654.1226917464559 155174 7664 52479 ONT_20191026 403533670.4610315 46766.857368793164 0.6191196296824896 7.163042649659057e-05 88245188.42401935 10209.723904774588 None 16268 327053 MKR_20210513 4651666807.300791 90186.6999531722 5113.84288839715 0.09952575175899014 826946909.0248184 16094.063619397713 146029 26422 30227 XVS_20211202 249899421.28875026 4371.97338620262 21.608731224486153 0.0003779878308240994 9914121.578612847 173.4214411339358 None None 25188 NEBL_20190812 8854941.844953598 767.9009259416074 0.5741482811727274 4.971713000787238e-05 173918.81211198773 15.060123797505765 40447 6141 850260 SKY_20190906 7953433.7475660145 752.0253645954825 0.4903881029176076 4.642017961663752e-05 862387.797451402 81.6337024057382 16369 3805 477504 FIS_20210804 24383788.98144738 634.6264598417425 0.9040825823389523 2.3535809010267293e-05 2788555.784204697 72.59393957322362 24162 None 435557 GRS_20190623 31324365.759278994 2919.626913519964 0.4302806822367408 4.0113756151233343e-05 2154831.7255734145 200.8883920543633 38599 107029 12971590 WPR_20210428 31150298.66344954 565.3160178949414 0.05062547900454588 9.190901902345326e-07 1294564.835495372 23.50243127219673 33597 None None IOTX_20190806 23804323.73499367 2015.1687657546554 0.005775621153755531 4.893234735080089e-07 1398233.0446429932 118.46141427290513 20380 1759 857691 POA_20200306 3349472.2313368055 369.8566085495919 0.01521773714570518 1.6798864740859961e-06 127073.40869395353 14.0276375151624 17440 None 535987 STEEM_20210724 148278006.4145461 4435.931653187493 0.38291733941065503 1.1451779543822476e-05 11776470.512548959 352.19492625118795 14112 3934 238289 NBS_20201014 0.0 0.0 0.006951694389333084 6.085739367659225e-07 2314679.33208117 202.63455707098396 None None 918577 PIVX_20190706 38048928.22992987 3453.7209467408616 0.6283059473978653 5.716653371469267e-05 1359555.0554438117 123.69937008537313 63407 8632 286633 ETC_20200224 1133136674.5836887 113886.33345102037 9.732522494446153 0.0009791185050618992 1926004661.5348387 193761.36104698048 230747 25267 366297 DLT_20210603 7524921.911158879 199.6981045273557 0.09168917132465995 2.4350617408048968e-06 353087.348671835 9.377219594106881 15092 2600 None DNT_20190621 11299330.95390724 1181.2508305341264 0.017954335814240153 1.8785747131041736e-06 1009786.2654327549 105.65464317412031 60655 6377 1037935 VIB_20210401 22188729.372720763 377.23547725912454 0.1214090470090539 2.065499491598144e-06 17270546.790054165 293.8191715796816 31170 1180 4807299 RDN_20200117 6121940.881589814 703.2624674492074 0.12133964993348424 1.3925419692084904e-05 1217497.8820024296 139.72488786972932 25267 4333 2042821 XRP_20210201 22460670801.01922 679585.8127695596 0.4916478062400711 1.4830122565638915e-05 18464504612.211376 556965.5005827249 1097991 248217 11661 VIBE_20200207 3053461.9976838944 313.51706757559873 0.016294157975690594 1.6739133715102108e-06 732321.3931819282 75.232029425458 19549 None 1853934 ALPHA_20210513 555189836.7018893 10764.04250216243 1.8198319540783503 3.627888447078396e-05 312010689.1090446 6220.024721771305 62550 None 30246 ATOM_20200530 498177191.2661315 52829.85103966832 2.6740842807893035 0.00028373039934018597 85957917.45619169 9120.458327176284 None 8471 115651 BNT_20190929 21752367.702176478 2649.981629556627 0.3118602557040646 3.799236753992137e-05 5434294.758826589 662.0328176525549 775 5103 171453 ONE_20200913 55877802.59074315 5358.803678979854 0.007887025707772504 7.553249930814576e-07 12120081.29945109 1160.716430102786 None 1468 127975 AXS_20210401 315366432.1285998 5361.815440613289 5.694615918615775 9.691045174698688e-05 90202235.09879594 1535.053369172102 None None 20530 GVT_20190603 16306015.453363298 1864.4365055959877 3.6753032769061966 0.0004202737664883399 914639.9835562829 104.5897880823627 21402 5784 170487 DASH_20201014 694701271.5207658 60808.542066477654 71.21867243370322 0.006232821201800418 290653132.8625729 25436.994919583052 320817 35415 67756 ATM_20210809 27284492.550000165 620.211106595095 14.463547638946016 0.0003288188064617765 24213169.202592377 550.469746192481 None None 101859 BQX_20190903 11372190.851097424 1101.1952547641124 0.08090253867934674 7.829366697443336e-06 164839.72694604524 15.952412490814563 None 5755 423715 OST_20190512 13780552.57250076 1891.94183033543 0.02205164400893048 3.0304622430050843e-06 518056.6704237928 71.19429185508498 18167 748 1072673 PHA_20211011 145366207.0231182 2656.648131721471 0.7989024349043373 1.4601455593591087e-05 17340319.10605073 316.9271845266274 None None 143113 LRC_20200531 58394434.18323475 6048.173704345386 0.05017192519879907 5.194838721234719e-06 12476264.540022334 1291.8017770310128 34415 6806 560725 WBTC_20210401 8244287417.230183 140162.9469745014 58821.45238754192 1.0009574672628199 394268426.8690184 6709.217640197081 None None 196125 ORN_20210202 62168485.330045715 1862.1601621086268 3.6861844104382486 0.00011038227526015813 10073687.28205943 301.6551530369145 None None 131553 BCD_20210112 179989092.83566383 5081.1348085604795 0.9520708758175231 2.678219538122162e-05 32179733.99591361 905.230844766941 27910 None 2021519 AKRO_20210825 91860566.97613184 1910.7785926712745 0.0337548878985257 7.036560983721503e-07 19139060.53010588 398.97382268334917 44502 None 223104 BZRX_20210218 85462809.67777175 1639.3457702629971 0.607800077911717 1.1658807973279727e-05 58761063.89588538 1127.1534591136667 18731 None 179211 CVC_20200425 13602136.207638863 1814.0261346045716 0.020244604527629762 2.700986188077303e-06 9982835.760145081 1331.885810325233 86036 8036 107790 XTZ_20201229 1596704990.3514733 58883.107705028066 2.1219614915089156 7.817781551657222e-05 129211582.20851526 4760.444181915198 77608 31302 166360 FET_20210711 196549389.02533126 5828.687918579835 0.2859392125068011 8.480504533434747e-06 20683628.194326177 613.4436796271509 67907 2976 137103 TLM_20210603 244293814.80818334 6486.650442211311 0.19679198395273437 5.229456152545775e-06 24968004.855792224 663.4878310961874 47465 None 13783 ACM_20211202 12661709.190094585 221.52338238581743 6.315337878311143 0.00011049182777986781 2369213.201041077 41.45125756172926 None None 33797 MATIC_20200321 29799618.05420903 4819.031292082636 0.010818518552931191 1.7447838697575041e-06 34080699.93506022 5496.450851917016 32806 1586 190232 AION_20210204 38129687.19436107 1017.7572643972725 0.07881985706530906 2.1013411326133143e-06 7702623.570928794 205.3523102080502 68348 72576 360629 ARK_20181229 53982714.18828956 14023.493209024096 0.38955755218707927 0.00010119827744423852 385131.15620279877 100.0483994701615 63056 21812 157798 AR_20211007 2366437739.020092 52810.94202412789 64.0129832332439 0.0011538121860934622 206822535.29747906 3727.905645569826 36446 None 54433 WPR_20200106 3716041.35703294 505.9814940664545 0.006095754856141802 8.299344745058498e-07 257099.63360855475 35.00400760039992 33860 None 779057 XLM_20210513 14429187300.50263 279879.79529490124 0.6052887669538565 1.2066609336411736e-05 2684565004.8035064 53517.59180033767 545090 184575 25553 ZIL_20210310 1588979156.264373 29073.35639689465 0.13541425886541678 2.4731670992660713e-06 246520731.36959597 4502.38377567195 163584 22116 35245 FIL_20210117 1017544913.0502763 28042.605084692234 22.87440971406909 0.0006320734916850455 265852064.7538983 7346.114935474036 45268 None 34991 AXS_20210210 72116404.35880649 1548.338730219909 1.2878323776473082 2.764894321054122e-05 24913016.554466724 534.866642486579 33205 None 20130 REQ_20210616 54975755.78912602 1362.0977823184269 0.07123049285827131 1.7648306051099463e-06 677275.8187687355 16.780413066103975 43054 27745 366720 GVT_20190702 13697124.709873583 1290.0122066624372 3.067255703068498 0.0002893385490226751 3000080.1869107815 283.0017880035404 21462 5751 196385 VIA_20210108 7676498.284502564 194.5268228092234 0.33127092189555735 8.394593151348686e-06 225605.60332210336 5.716974015457696 37847 2128 3644327 CDT_20210814 15240001.926549133 319.49199474299735 0.022609740474209643 4.7360977144890605e-07 1493466.8964772157 31.283884762582908 21105 337 695021 POLY_20210508 353677584.4243621 6172.14662262963 0.4541521019765424 7.924537273395592e-06 183699078.19761437 3205.380281033241 45926 5527 152972 QTUM_20190305 158162953.893422 42594.0305078585 1.945437761735238 0.0005239155777928159 217384881.64689294 58542.77536479458 174694 15200 269800 JST_20210806 81493807.00871097 1989.03965943753 0.05691687361766344 1.3892031018538796e-06 111893798.30190685 2731.056746429964 50107 None 152000 LRC_20200612 102231268.99196096 11021.920422529818 0.08643997143261099 9.295442226212457e-06 25426468.556192305 2734.2705644570115 35179 6858 564975 TROY_20210813 15905723.08149815 357.761885957831 0.008369910215555153 1.882670300288198e-07 5922975.908342713 133.22736498696983 None None 543401 AST_20191026 4400363.603632981 508.75828698768225 0.025517695211838227 2.9473753420340796e-06 1710333.524800719 197.54898770454955 31926 3541 318017 LRC_20190524 64608073.030231915 8215.514890942412 0.06917309013809907 8.793476888175132e-06 13180978.20212499 1675.6028529667697 35848 2464 907750 XEM_20210110 2184498480.844436 54004.96135777371 0.24125240142407547 5.9888903519182665e-06 126043367.71020316 3128.9218442888077 None 17927 99771 IDEX_20210616 30459213.372768253 754.1919598316846 0.052546984091318125 1.3018866954542804e-06 4152612.6404801225 102.88375710813754 52484 1982 6709853 KNC_20191220 33688001.9188638 4717.543820409775 0.1985645510026316 2.7788496250187623e-05 15337729.027302569 2146.4678534485374 98731 6765 187338 PPT_20190225 42318471.95432504 11260.72810408225 1.1339910830308682 0.0003027113280335558 1642832.0269549892 438.5430115432982 23338 None 575286 QSP_20190906 0.0 0.0 0.011469251336266322 1.0851225441017926e-06 87262.18923384289 8.25600259416278 56468 8532 551928 TFUEL_20211204 1886178773.9046779 28765.286079276702 0.32582784930418235 6.073051669702748e-06 97532403.95110264 1817.8904287349503 224881 26448 31041 KNC_20190909 30371788.832738925 2922.2874606144874 0.18102010113671296 1.7417241196565975e-05 17114018.426908083 1646.6623591090174 97731 6696 205924 VIA_20190621 11927214.747635266 1246.9317717236456 0.5152148445260483 5.3873446077296626e-05 651173.5641241717 68.0899711383044 41046 2235 1573301 UMA_20210616 773565449.1736574 19153.932874669008 12.591201803561756 0.0003119673915898814 37992342.227642775 941.3217332276466 None None 140212 LTO_20210120 65056558.47534101 1796.5054124236297 0.24018937021367065 6.621717091064742e-06 34111727.51201297 940.4171752942277 None 1110 818812 LSK_20210616 438678637.78287554 10868.972835985636 3.041056945838998 7.534710489679512e-05 16776487.253362464 415.66460851988614 196111 32520 424383 TNB_20210111 7882228.368796086 204.5268518976252 0.0022844052336537827 5.9432778778196124e-08 531265.447674649 13.821795432347573 15750 1412 3447610 CAKE_20210722 2570512382.906674 79876.8220587444 12.971394928244685 0.00040163638686225607 182275251.39389962 5643.831969439693 982488 None 809 TNT_20190510 6170471.468987011 998.3407558169273 0.01443221506410681 2.3378246323512848e-06 783378.5535500781 126.89678409101752 17288 2503 1010954 BLZ_20210703 41362616.80841174 1223.751015076204 0.14046786893901264 4.148325928107905e-06 8354709.374893211 246.73299156210084 64038 None 284185 BLZ_20190314 11339918.2169225 2932.9416777874544 0.05526459732112202 1.4295721277301741e-05 826729.5349457527 213.8565297892922 34842 None 1431746 RUNE_20210104 332277892.2394249 9932.550708933291 1.4833656360158567 4.5062853400403875e-05 32990590.810320627 1002.2142357774682 26197 2029 287788 WABI_20191118 11615363.171391577 1366.201957287545 0.1972897900516321 2.318440059321057e-05 291954.5668601396 34.3088794981804 36091 7885 1548766 NULS_20190411 37136180.48224807 6997.151575790895 0.9281568730829339 0.00017487294036252303 31283947.702187758 5894.171642189782 25 None 680951 SXP_20210108 66171232.11614946 1689.265111419471 0.8726814466735854 2.211424309032718e-05 98010737.5525776 2483.647708979722 91873 None 116678 NAV_20210106 9863798.768749528 289.9359745425367 0.13979559364182276 4.098214245375799e-06 186245.51222327803 5.459928968050114 48267 13639 819464 FOR_20210325 32586954.145262763 616.514790969401 0.05769988563453687 1.0943614589113744e-06 8379875.5051155435 158.9364117870066 None None 130989 OST_20200610 6626323.902983975 677.861721295588 0.00953341951154765 9.754084857130133e-07 519084.729759247 53.109972722580856 17642 754 914098 LRC_20210219 950274778.1681055 18385.132658516315 0.7633519616267258 1.4764900394113725e-05 119600430.98387547 2313.3345289462977 59654 9024 128184 WNXM_20210111 51491630.0065057 1339.5140438201367 28.57228825291174 0.0007428735950057191 22899860.883044146 595.3916546247996 None None 132342 BCD_20210805 398022709.17459315 9983.196691981018 2.1020367800337416 5.285334619860972e-05 4827584.26537613 121.38416649245778 34407 None 1282493 RCN_20210120 25073069.45810176 692.5633606710285 0.04895798546451428 1.3583635876000732e-06 606716.7384227284 16.833656810864223 None 1127 5522516 FUEL_20190205 3945966.1071299566 1138.5922963343703 0.007438094260580834 2.146616224292692e-06 98668.76181033326 28.475568810066818 1 1516 None CDT_20190723 10673712.579235189 1032.058262644832 0.01581763609738323 1.5299351090999145e-06 209137.74504308635 20.228508027968715 19785 297 299913 ORN_20201014 17744210.93741678 1553.0941132860075 1.9867613219520068 0.00017393922823742661 6279697.607812438 549.7820716552561 14407 None 146736 MITH_20210210 10626842.661706036 228.42035182919244 0.017394643751062543 3.734797496806108e-07 10127203.897878233 217.4408186148123 24545 2185 386896 NAV_20200301 6319509.061650588 738.8725412719936 0.09291767582527086 1.0863869106973535e-05 64916.97848930806 7.590047328069868 49809 14006 1136873 COS_20200208 17245188.445634317 1760.767626340914 0.008656835035748617 8.830237690053345e-07 5815686.868228121 593.2179273985129 9782 None 188976 LTC_20201129 4796382565.5026455 270948.79103799164 72.64577033380746 0.004101483768304143 3599533905.743632 203224.90655725627 135076 216588 178888 TCT_20210105 5101877.047318219 163.07067196683195 0.008945197838727418 2.8591426428127905e-07 986580.6751766102 31.533957435353674 None None 2545563 NAS_20200404 12049328.893642768 1791.8040658336834 0.26473356472807275 3.935286405266458e-05 4406660.980292547 655.0538110335999 23533 4963 1093908 LEND_20190629 8847221.386669423 714.8326230790368 0.007925348046380338 6.386400495378035e-07 2287915.241123251 184.36468586342863 42022 5861 977023 XMR_20211028 4621654134.503168 78978.31125371848 256.55728331496834 0.00438424433901007 320903467.67014647 5483.840463707688 449440 239344 43320 MTH_20210314 13476765.5965965 219.54294593312275 0.038716689508215885 6.310412868183046e-07 2632313.937636578 42.90394647929418 20122 1952 696575 HNT_20210104 84421338.39687623 2525.665571203355 1.3173806171543692 4.002042934121627e-05 1922525.6083513985 58.404002050601136 18250 2097 70077 SUSHI_20201030 64254947.733349554 4773.027214809627 0.6434118038028745 4.784883230988351e-05 30509181.70810528 2268.8870655381234 None None 57516 VITE_20200305 7321587.247574916 836.355425944382 0.015123403836172658 1.7267254656541848e-06 2363488.6115680337 269.85300515594747 None None 441540 IOST_20190426 138679365.60270983 26716.224326056905 0.010250948798138022 1.9737857725610997e-06 28836424.37586209 5552.356692577477 197199 49303 95321 KMD_20210428 345441989.5967316 6268.730107087232 2.752219885851869 4.9944489029561314e-05 26863676.545798704 487.4946967109953 107822 9032 203738 DOGE_20190914 293651320.7986318 28358.570747433525 0.0024210202628565185 2.337930159827104e-07 48510168.35464504 4684.528559905591 138188 140624 101956 ETH_20211028 466683206492.3765 7974620.35927998 3944.090861781322 0.06739959906761786 28770879596.15931 491658.4879913346 1732223 1133147 3948 PERP_20211204 709499024.2790213 13213.543631204542 12.546148803696356 0.00023396623660714919 19667526.887185205 366.76890424007513 34547 None 104435 ATOM_20211202 7539593630.525845 131884.86328460198 26.615349321396934 0.00046565657296347837 378066238.42869544 6614.5676622161845 261844 46970 31405 PPT_20200725 12629499.693374373 1323.7097767560463 0.3473215436102934 3.64206845027584e-05 2339134.7016537734 245.2853517027303 23675 None 1142876 NAS_20201208 14384778.69320128 749.1061649102668 0.31621069963596643 1.6479180262763937e-05 2898493.7637265734 151.05371601256988 23306 4861 1293947 CTXC_20210702 27462811.062918548 817.4632100392301 0.15265000395196185 4.538062894434979e-06 4622364.51960559 137.41618321592782 20077 20587 663987 LEND_20190723 5408273.182401736 522.9345443868152 0.00481704842894437 4.6593735326555985e-07 1096330.3379227452 106.0444509727307 41919 5858 751506 NPXS_20190421 134915646.64278543 25407.971963628206 0.000691587134030762 1.3021083372362306e-07 4158850.3238501297 783.0211716694513 59357 4285 161982 CVC_20210206 166115600.0455091 4352.955322870403 0.2479864476380323 6.496730343501735e-06 164600752.22037357 4312.198153159516 None 8403 155763 LUNA_20210104 323192424.0497319 9658.933523532945 0.6600324861121158 2.0050988400311334e-05 36340416.95139514 1103.9779012197405 17516 None 167354 BAL_20211120 222464810.2042573 3826.953459096689 20.667200318739653 0.00035430884261836425 23418052.909769166 401.46817637958236 108940 None 3310661 ATOM_20190601 1397957412.300526 162961.3550334206 5.836199382750526 0.0006805135232640741 160627942.79961953 18729.56698708828 25053 4848 120610 QKC_20200626 23686849.112599596 2558.25162451323 0.007344488619495934 7.937284099466063e-07 7951376.402804118 859.3155597425149 49785 9207 656041 DCR_20190920 243742038.2528331 23798.237176988092 23.4282452449554 0.002285987484253404 11646537.975698495 1136.3992381401854 40567 9623 165659 BLZ_20190614 13528613.410289716 1645.3092060732517 0.0653314476355839 7.944632109248906e-06 903333.4229504048 109.84988052554068 36541 None 848455 MTL_20200523 19634180.76322784 2144.8787033274534 0.303782294673336 3.318506067421947e-05 4558211.388601057 497.9372535825448 36651 None 416687 WTC_20200106 11106738.458206391 1512.3093580895265 0.38154880275943626 5.194770993742248e-05 10006482.740741385 1362.3784405833837 55239 19573 1004613 MANA_20190507 72579775.14799081 12688.331337936655 0.054635340526213945 9.554427712247254e-06 12812368.73332139 2240.5799928425763 44386 6205 121517 HBAR_20211028 5287142422.411411 90333.39631457406 0.3529559376664506 6.03157724325593e-06 226583976.45724088 3872.0378671669982 157624 11898 41483 RENBTC_20210324 682039343.9626267 12516.239892873444 54556.16236367715 1.0008111082826805 34605028.60971073 634.8154916793922 63960 4514 63602 SC_20211207 881259400.5108632 17459.433778812767 0.017727885443205586 3.510610327867375e-07 86588434.27441075 1714.689846183065 145105 50677 96597 NXS_20210310 83759974.95187417 1532.5801216298742 1.2302539327492603 2.2499747997340705e-05 1225077.7273519633 22.40508191750026 24793 3730 416310 BADGER_20210804 106105861.78217001 2761.571939558295 11.378855812776713 0.0002962543542694699 16665922.56501353 433.905852138418 36160 None None BLZ_20210626 38583174.01037731 1212.610528725372 0.13164606843840485 4.137051809394365e-06 6302016.339491277 198.0444111198339 63109 None 221752 SNT_20200914 112052558.86745022 10852.60861205248 0.028616956750295706 2.7715646529817065e-06 9363697.462051103 906.8781538682368 112250 5708 113908 WAN_20190915 26741937.45026215 2583.969850813363 0.25379265750478314 2.452683143052095e-05 4558439.202639682 440.53311474274904 108027 16844 451102 QLC_20201226 3530553.3456701185 143.0394920908259 0.014696153377403263 5.959959704893989e-07 581322.5395129413 23.575277299235438 27315 5606 940522 WRX_20200506 25100363.02976515 2797.5173888884965 0.13446909415735195 1.4968161502843083e-05 7451074.846273346 829.401673058667 25210 None 31508 POND_20210428 136120126.07013294 2470.8375731323763 0.18004970552578842 3.2692299163839876e-06 63985475.136520185 1161.808229119233 15758 437 75680 ADX_20201018 20666015.50051401 1819.492781789958 0.2031800575886829 1.7878199145746023e-05 695937.9154774976 61.23689890456597 53090 3746 13156 BAT_20200526 299043240.0996465 33648.72359435207 0.20491504952173784 2.306048337948233e-05 53201872.369042866 5987.168323591114 117384 38958 19122 IOTX_20210325 226990058.32337356 4294.2246586199335 0.037182991565957155 7.048115090578727e-07 47485712.18823477 900.1017684849112 43638 2466 337079 FLM_20210422 0.0 0.0 0.8338646948129312 1.5397078747267555e-05 53721166.015297055 991.9463297557219 19553 None 105842 RUNE_20201115 180188185.71321476 11197.058491498648 0.8333399741922747 5.178554941774496e-05 29933903.937556893 1860.15757029642 22975 1917 224255 ETC_20200113 644929651.9938104 79109.73327492287 5.5557934066687995 0.0006802931766174756 1103588099.2927647 135131.6362562998 228811 24985 399840 MKR_20210930 2009092270.4560058 48367.20463641749 2234.04275137382 0.053746126502686786 75120931.23752813 1807.2434248668674 184768 30558 43242 SNM_20200605 3807077.026617331 389.46532432 0.008699872214825126 8.9e-07 169506.16253823214 17.34054029 29505 9617 7325463 LRC_20200306 51542144.74948749 5692.949375868151 0.04518259690128933 4.98770826909552e-06 5110464.344449238 564.1443170124626 34310 6824 607711 STMX_20201106 15252614.961330445 980.8009615517572 0.0019203105971929862 1.235432684382133e-07 546074.0601474491 35.13169916291485 21439 134 217902 KMD_20190916 80683866.59560321 7830.404249324031 0.6959396689618984 6.754124673307827e-05 834113.0499687425 80.95103329180054 98377 8424 202863 TRX_20210310 3800847390.540205 69539.13163198566 0.053280839184977946 9.73105931366782e-07 1606042605.3172722 29332.300488664765 629640 86951 26578 AE_20200707 48961317.72945822 5245.030618834801 0.13583687106817127 1.4544678460088185e-05 7689366.041155222 823.3357832160021 25404 6345 446163 GTO_20200607 9046343.79209555 935.5527780897722 0.013651159149259753 1.4117725525084353e-06 10653680.671041086 1101.7799873339725 16625 None 1410862 AMB_20190613 6840224.876969474 841.5329547454277 0.04748965829057815 5.83748921055413e-06 723252.740862605 88.9031469853046 19325 5681 617435 CHZ_20210509 2671715182.548784 45560.643587275 0.5003628081471996 8.521019951368196e-06 328004427.7531966 5585.811390281963 322724 None 28385 POLY_20210729 203314602.47096393 5084.775653949068 0.23645476335906324 5.91007924094533e-06 27904986.408777736 697.4724406077713 47636 5718 180054 LIT_20210722 55978801.122162156 1739.5009516509797 2.522514583725357 7.838532499772571e-05 15580724.048966082 484.15978490575037 53311 None 411368 ZEN_20210527 1184431370.5732281 30230.915667200847 107.68682829318742 0.002747057487895185 130906493.05077454 3339.3839121174956 109686 7294 752253 DLT_20200701 3000032.8461032524 328.20629373416944 0.036581396993218426 4.002037758472359e-06 26218.189834751505 2.868293567272 None 2563 4351611 DEGO_20210427 59163962.601404466 1097.9136179799298 10.911458156980167 0.00020248539779656896 23982193.56396766 445.04079417908486 None None 65410 ICX_20220105 836971965.5678719 18095.474944171867 1.2173019254539168 2.646163741753842e-05 41860654.5582023 909.964438417304 159980 34730 278401 STRAX_20201130 80852814.82587887 4457.648218507515 0.8095212420207557 4.457613930487178e-05 15443364.763015576 850.3860594117431 129151 10277 361194 OST_20191102 8167341.614053705 882.931549135962 0.012105496533255225 1.309228604346326e-06 137114.4764568261 14.829147582183097 17963 757 684764 DLT_20200725 4041678.851719889 423.8408171951628 0.049486960217866804 5.1879979530093e-06 506998.92130333924 53.151564661068 None 2560 4398873 FET_20190729 27098493.537170336 2838.742533722505 0.08984080084078687 9.420999385973396e-06 4720469.388359613 495.0038155609636 16003 294 438146 BCD_20210324 232941145.76648855 4273.016307993998 1.2356029196052485 2.2666644312774493e-05 13351998.289096761 244.93710016517213 29020 None 1465954 POA_20210724 7229103.008217097 217.3792299284235 0.02507689306741875 7.5e-07 238825.12849348295 7.14278463 19935 None 239848 IDEX_20210314 54398584.045956194 885.7183832930665 0.09299253732003974 1.5156804768260067e-06 4693837.655637447 76.5046131772479 51238 1932 5102043 LINK_20211230 9181750595.896471 197972.1326718092 19.759929988922877 0.00042425388218191436 1073856704.7377548 23056.148283291797 687384 74074 18014 STX_20210108 491128987.59162235 12561.041513623419 0.5416620170587484 1.3726022896089464e-05 8375618.853785483 212.24293477367678 47259 None 83877 WING_20210902 43040458.995412886 884.8016746182404 22.60606751389419 0.00046461735498018995 5109608.845066487 105.01662640435157 14759 None 426927 COCOS_20191026 16922282.032677405 1957.861164760541 0.001076127176031043 1.2429612773395058e-07 6230825.003747713 719.6801993330366 None 148 65492 CVX_20220115 2073389835.3242652 48096.90407026563 44.83356420106318 0.0010394696739886617 33288689.540450055 771.8008568076508 None None 34910 EVX_20191213 5713569.254888987 792.735233734813 0.2618930622348898 3.637949084064932e-05 980325.202869557 136.17669530575122 18007 2889 982037 QKC_20200711 27220345.13053243 2931.548165960767 0.007262734100892523 7.822693594580191e-07 11613578.024710102 1250.898919910787 49980 9206 550084 1INCH_20210206 561417527.329104 14814.770561754944 5.819219195129979 0.0001524514677337174 448044194.6223935 11737.828184392625 None None 12553 1INCH_20210310 642208803.4141104 11749.65420263469 4.4495244710965345 8.126483593010762e-05 291459861.4559775 5323.139129875355 None None 8283 ELF_20201124 49717682.97490149 2715.4991984492544 0.10799564623858288 5.884533847784365e-06 17639478.147703975 961.1508411005992 82167 33339 429697 INJ_20210111 59711581.43616797 1553.3495813271236 4.427997389972132 0.00011518160355457601 10631074.97478946 276.5368077854446 None 1965 132125 DGD_20200117 46674775.371364884 5356.582423275009 23.337399354382125 0.0026782925507837798 2533344.7149792216 290.7366915937984 17550 3347 319938 UTK_20211207 135089312.35699272 2676.3775818504805 0.3006705110899761 5.957523526159316e-06 15920449.524428207 315.4497999986104 81587 4263 147587 LOOM_20210202 52989827.51208479 1587.0092504987433 0.06363264194294722 1.905096505910889e-06 20792162.09936235 622.4961616609155 24472 None 265333 PPT_20190916 14252646.365285737 1383.1611822365821 0.3934271652831704 3.8180501298514307e-05 1813509.9107094062 175.99373813161282 23997 None 830282 DOGE_20191220 261111807.148829 36565.53627009231 0.0021336403310170822 2.9869645221165415e-07 61022074.5829602 8542.713089715793 138312 145500 132211 LSK_20210613 395682538.6264891 11032.147127137303 2.7389807697919184 7.677312288404752e-05 32834696.51315332 920.3504522801867 196116 32508 207056 DUSK_20200518 5578838.239979099 576.4650286905136 0.020771492983773995 2.151350457580298e-06 252337.7983618921 26.135195885761867 17386 13333 1128839 NKN_20210610 210160319.7802769 5598.957947206029 0.3225557864262419 8.612131658184519e-06 26706551.526919935 713.0559970236867 27897 3197 103719 XZC_20191012 47500550.55074719 5746.086751706418 5.546736211353905 0.0006708437270353999 14431594.882321207 1745.4128930999298 61020 4060 207313 CVC_20210823 243310244.90326032 4931.892775169367 0.3627349128895464 7.360997243233279e-06 117709267.23827443 2388.679889514208 None 9862 272876 TRX_20210117 2168667455.1479344 59759.88461740591 0.03022322739693512 8.349911248647172e-07 1365604384.164025 37728.18587100798 562902 77122 30212 KMD_20210804 102396560.74247022 2665.0315458933455 0.8036745097580336 2.100403718238673e-05 4722043.052602942 123.41061791740087 114411 9453 251896 TCT_20210304 11970096.69749209 235.43379868501046 0.02061803380336588 4.069224947676736e-07 1626854.4101543154 32.10799155328354 None None 839224 FRONT_20210519 80915634.91934292 1890.4977542465165 2.120753234205325 4.9570131840989685e-05 39339091.79476392 919.5053603216363 63892 None 149805 ENJ_20190426 132146192.67663302 25457.62530741112 0.15241794009633067 2.934756260804385e-05 23643106.225568917 4552.400719790462 45575 12360 18567 GAS_20211104 125886094.0582406 1996.1193039828574 9.033731179422881 0.00014324382156058655 15415897.438096816 244.4429680228891 None 114697 82188 WAXP_20211202 1236767141.8552933 21638.051899562208 0.6671224532508825 1.1671834608537442e-05 117160351.1009344 2049.8129452315434 214725 6018 3854 BCH_20210408 11684000996.48534 207438.91706876594 620.7966459135254 0.011041503506457086 7738808197.706892 137642.62164309775 None 493013 298671 PHA_20211216 65244316.140485436 1337.2637936042365 0.358400958507273 7.344155963951001e-06 7727937.738332589 158.35666362724186 None None 134566 FUN_20190314 26489227.05513757 6851.13918427116 0.004405375154153625 1.1395777520838133e-06 2438157.567154782 630.7000022426453 36403 17805 523273 VITE_20200605 7081427.748653327 725.532222593954 0.014199912564016752 1.452656070101708e-06 2819454.436214192 288.4311845356306 None None 642638 LRC_20210420 702656144.0181341 12552.882608188314 0.5636526290678837 1.0072411427920818e-05 160542908.90754104 2868.8843925488313 69897 9967 144294 ORN_20210511 359641891.862978 6441.280329815629 14.143344997194617 0.0002531229209093689 30436901.22115509 544.7280924036629 None None 51666 REEF_20201229 0.0 0.0 0.023733663585965417 8.657701165856184e-07 293355440.86368424 10701.187084650684 None 350 None OG_20210809 6395617.757132971 145.29819411644579 4.9785669571368505 0.00011317793891522384 3225933.8553779772 73.33526855657497 None None 320611 ALPHA_20211204 443386683.7905158 8258.565989850209 0.9827296996408595 1.831693716794206e-05 50223872.24017029 936.114490576753 91746 None 52382 REQ_20210127 28682480.119945742 880.0698728959046 0.03729202199935482 1.144919557636249e-06 444892.01653662336 13.658834878350708 39513 27158 455841 VIBE_20210105 3161515.227551583 101.05112448 0.016894598963277708 5.4e-07 74516.53428569507 2.38176287 18513 None 1637707 SUSD_20210304 244381678.6036159 4808.591422786142 1.0059791678998902 1.985424781965896e-05 23312687.181429785 460.10482464419647 91841 5163 24026 MANA_20190524 80744982.5290553 10267.54904196103 0.060952895934981245 7.748502786293639e-06 22227055.89697497 2825.565576613944 44669 6233 119390 YOYO_20190524 7631199.073810655 968.1037621113362 0.026217462601521847 3.328994748372577e-06 4035047.749442689 512.3551798848594 7464 None 1390874 TWT_20210206 168815512.75063437 4454.839985419398 0.4707905344205114 1.2385491733854033e-05 60783149.40628993 1599.0746191527921 327410 7503 11832 KAVA_20210826 657340329.8063384 13410.746004731142 8.079781432533991 0.00016485732831787844 219316219.26049086 4474.859408755479 129146 None 51016 TNB_20190627 17256697.304699656 1328.8392774496656 0.0063461152457054875 4.866386627431237e-07 2366656.1729576103 181.48211158948422 15739 1491 506098 TNT_20200506 25609237.02180398 2855.9302392851946 0.06014347756337345 6.683983498563256e-06 1565721.674264076 174.00486732907368 17537 2558 722675 POLS_20210902 148762618.92121533 3058.7410322430846 2.030278753746035 4.1727856641062606e-05 24086600.480650082 495.0464117169404 390837 None 29742 POLY_20200318 10393000.525289958 1913.198269701686 0.016722420653364496 3.1090401994558956e-06 3096610.321769927 575.7232264394535 34957 5003 422167 XVS_20210819 359433764.3120841 7978.471102377533 33.53980254947268 0.0007454583011812122 44245841.59081393 983.4115707142033 None None 17193 ONE_20210114 57901305.64607447 1554.8750310016005 0.006614339724405869 1.7741298111498847e-07 5551380.693277273 148.90178598846913 79999 1614 186131 SNM_20210725 65711485.51271883 1934.19857696 0.15090294823906428 4.42e-06 241620.03329164625 7.07713507 32354 9708 None LRC_20201226 189393701.9397477 7673.238803737943 0.15176687098732575 6.154838020492482e-06 27791871.66278761 1127.087006920356 44024 7277 249793 ADA_20191220 1026352153.1014036 143725.2543251149 0.032983787593688675 4.615930280895856e-06 81170389.83155663 11359.424968140902 155093 75929 94966 LINK_20190302 156446941.85621232 40919.87581526061 0.4286889941102943 0.00011221464179308805 5190373.474601108 1358.6443977492418 10069 6390 327842 KMD_20190426 105636314.66373342 20350.565257266288 0.9354231047671584 0.0001800711626708012 1167400.2066470596 224.72730408492043 96927 8363 335722 APPC_20210821 10150201.306748027 206.40164448501721 0.08951584440107732 1.820173661285476e-06 1361395.7189421654 27.6819891136 24957 3118 837968 PIVX_20211104 53198252.68444662 845.0255416279389 0.789298678569907 1.2529396563580662e-05 1292507.7694315983 20.51738187888435 68134 10290 269232 EVX_20190623 17128393.386029992 1596.4734513546166 0.814273820010971 7.588180315449777e-05 2176981.038382341 202.87186271490006 18134 2908 694179 ANKR_20191030 9078405.103995988 964.7111491112364 0.0022713693210533264 2.414082483127588e-07 1563540.892504863 166.17802509101725 None None 5007 MTH_20200316 1609073.9864627414 297.7561081274077 0.004626941747229034 8.567438764639738e-07 107469.0348189159 19.899415752476326 19210 1930 1053445 ICX_20200707 195203626.97116956 20892.671219843836 0.3524942983295439 3.772751355156126e-05 31931553.591113023 3417.638601645861 113044 27773 182019 RLC_20190312 21976590.58304364 5690.924569754728 0.314244360382533 8.132495741467567e-05 280146.2374905276 72.50052413371851 23991 3281 901823 WTC_20190305 28038132.309846785 7550.801458815293 1.0529624901895387 0.00028356777188788437 7560008.987710816 2035.9461273037807 54432 20364 860641 ZEC_20190615 613598034.914827 70523.79939751163 90.63802484685947 0.010439108504993641 501079201.3897957 57711.1004100271 38 15173 179963 EOS_20190923 3922444562.401984 390194.0105760463 3.8147760638821713 0.0003797731620847225 2498242030.1459603 248707.98693120695 1314 68418 87912 AST_20210408 78390779.81627323 1391.7122575091178 0.4540046806642417 8.079377686142727e-06 6490377.77796882 115.50148187291153 41269 3624 153125 JUV_20210710 16686897.954460688 490.98466968135256 7.572531432315444 0.00022282003808641622 1326348.152671164 39.02749675397129 2548612 None 41859 ENG_20191030 23641305.886018768 2512.283077763425 0.29561064176991597 3.141288350151286e-05 1282312.8239046228 136.26418558085638 None 3472 386456 ARK_20191108 31080591.612616275 3371.471786449193 0.21867065764424226 2.3719120143234118e-05 525869.5970987319 57.04086816051778 63105 21693 95337 BAND_20210115 195385895.05427814 5002.633856206333 8.786312213431664 0.00022399666029287925 180023507.75123686 4589.48686672457 44618 3030 375522 PROM_20211221 218622701.64829582 4633.678952619359 13.1817456650342 0.00027959594646756296 22795723.57782568 483.5165289269428 17406 None 741894 SOL_20200605 9543805.262487222 977.8166127152446 0.5867553687536804 6.001935217634146e-05 863889.7763493777 88.36749945448015 51025 1905 125337 CMT_20200502 7482788.175575185 844.4031776261696 0.009295671495504868 1.0525542092330161e-06 8500098.362308685 962.4710075511066 284955 1632 895705 THETA_20191108 91536519.63573287 9928.930246625729 0.09157249095218936 9.932832041159726e-06 2367368.181025054 256.7874945542854 None 4028 431634 LINK_20210430 15328076532.583496 286019.84046576446 36.360929124458444 0.0006784479923076997 1346539752.2042387 25124.69327498461 256482 51053 26155 IOTX_20190920 19411142.91362119 1895.7928309816186 0.004711947229353946 4.600603102091836e-07 1106782.4695715248 108.0629008561661 22534 1768 600073 XZC_20200308 50682967.35667633 5701.570440380812 5.250353500938328 0.0005898987352268515 30207142.591031563 3393.8962788090525 63727 4093 107900 FET_20200314 4094553.6391261355 744.8294317210832 0.012263129882479499 2.2043860065835382e-06 5672057.99825541 1019.5933175060184 16615 359 523257 COS_20210527 49979691.582375795 1277.5448138086156 0.016641733280257868 4.245254386601614e-07 7000704.432361181 178.58579211841663 25540 None 187764 FUN_20190520 38271376.15532689 4678.09966035651 0.00635801373576345 7.780522132357014e-07 4082614.2546707746 499.60367948981747 36460 17690 458828 MTH_20190302 5302324.670349468 1383.359000359923 0.01760621763709101 4.608946562709106e-06 124696.42875799818 32.64296673781403 18647 2017 959226 NAS_20190605 46387033.19270334 6048.713536752887 1.0238413070650905 0.00013328750331532456 4549303.046401666 592.2453418273038 24017 5158 510015 MIR_20220115 233496659.99046677 5417.388012154832 1.726203545098057 4.0023871221714434e-05 36712843.67499961 851.2264568125707 None None 17649 ELF_20191102 42203881.46958471 4568.649570863989 0.09174627204279377 9.932405669940139e-06 15578611.172033574 1686.5326785455213 84766 33539 873376 SYS_20200721 66546465.99145336 7263.911675546788 0.11264981127446655 1.2296344624368665e-05 37351117.09299081 4077.0792483756604 57524 4464 1072348 EOS_20190807 4276963871.115905 373768.44949951133 4.208881831465581 0.0003668281426571836 2846982011.472729 248130.7780226508 1255 67725 89433 AION_20200315 23139042.815542717 4474.407451007493 0.05814552039277302 1.1222617780547263e-05 1956298.21742709 377.58346663071507 510 72545 246428 VIBE_20210202 4685670.062668355 140.35194966008078 0.025382424977390614 7.59987785571785e-07 465349.9213481947 13.9332729854 18506 None 1388875 XMR_20210610 4923225928.193019 131448.486311007 274.6053701279364 0.007331871574181365 333501479.0928524 8904.377992932665 423627 224549 31429 ATA_20211028 165812169.20567897 2832.8465808148276 0.9631353527609375 1.6445828249442917e-05 62144425.50573934 1061.1349127596259 None None 285149 AMB_20200321 1152206.4618770296 186.37185140931325 0.008049411442774889 1.2981891353867362e-06 477108.70955101884 76.9469106581039 19075 5498 780586 PPT_20200707 12262995.454461563 1312.510101251065 0.3385052443703529 3.623026316958348e-05 5539582.321039763 592.9022627527141 23664 None 1105002 LTC_20210218 15732859207.897224 301668.2392195288 236.55134066811442 0.004535731584539274 10039322859.255548 192498.05835596533 143984 260346 93783 IOST_20210624 417482460.2425421 12387.655118035527 0.01847480338786426 5.481894798871737e-07 124472953.16386169 3693.395919966323 247504 53570 149907 QTUM_20210217 660585554.4357206 13424.725649007582 6.423377736681499 0.00013060252197496288 736678928.3928386 14978.43189020108 200015 15455 134759 DUSK_20211011 61578096.86725523 1125.3739046196672 0.16135444381698985 2.9479921086721386e-06 6157494.550643461 112.49919689275563 28889 13674 352907 TROY_20210108 5706273.462175488 145.58687560771102 0.0030117655363142695 7.63198478150244e-08 2558577.9956721016 64.83581835906533 None None 988367 MKR_20210902 3316225739.024469 68173.11329355664 3694.746114134233 0.07593727506198482 118931823.29481146 2444.378666402017 176195 29777 42157 GALA_20211225 3581296448.3260465 70458.03864161286 0.474810801343992 9.341296832481777e-06 636715859.400707 12526.572318437416 None None 3466 POA_20200530 2361171.4829908083 250.68242467404232 0.0106939493588378 1.1386982639257248e-06 169812.6236922651 18.081751961098615 17196 None 556929 NCASH_20190902 3176772.2592922756 326.61159278564776 0.0010947562358951213 1.1251948756210275e-07 382510.9361717285 39.31462832888248 59748 58896 754232 BRD_20190213 11713161.351245387 3222.331500290378 0.19543899124393457 5.3785093497671927e-05 74680.22703163748 20.552106658750702 142 None None XEM_20190930 359282154.42249566 44582.351451363356 0.039765961457137754 4.938711765775533e-06 56951169.75538893 7073.0192817991965 215805 18323 181782 CDT_20190625 11983147.76323307 1085.0264540199892 0.017763886055833598 1.6084493555119144e-06 2447430.2556067687 221.6050927661919 19719 296 372453 KEEP_20210711 122275092.5482599 3626.026163963132 0.27942088285223693 8.286248724333828e-06 14585626.173639758 432.5379157106367 None 2789 132559 WAXP_20220112 782048139.4633492 18253.26055699286 0.40904470462155246 9.560284354840745e-06 76790807.65766622 1794.7719375181698 237638 6703 2900 BRD_20200626 8117976.211957151 876.7660794931246 0.1252167283165123 1.3524427020633381e-05 901114.2665595488 97.32768376227484 204 None None YFI_20210318 1275694011.9733236 21676.488365397327 35350.0521438269 0.5997401748891733 251231237.49336186 4262.326564579172 None 3841 21713 DODO_20210421 422343203.7904024 7475.693623041166 3.7294968167554314 6.614467729418215e-05 96204862.36927149 1706.2461474582253 65239 836 26612 ZEC_20210704 1304694838.5802555 37655.40817630976 115.97773123557751 0.003342406009654294 623085709.2099464 17956.942223354763 76354 20074 101519 NPXS_20190801 139465403.06426075 13853.072908051476 0.0005933918273230848 5.885719695722767e-08 3780642.636962433 374.9934159228584 63964 4685 187000 NANO_20201101 99359496.88216889 7200.623806045111 0.7459897960447395 5.4063217269246825e-05 3193129.390958191 231.4118087773914 98515 52851 262836 PIVX_20200127 17135473.46667144 1993.9515710179178 0.27546547953332845 3.205425439483809e-05 233623.15176487577 27.185315386457166 63743 8519 226941 VGX_20210902 3471675307.307422 71381.88202178755 176.5309077846898 0.0036281995263777534 206240609.3101866 4238.816252685556 314608 10330 49149 AMB_20190316 9062049.081812404 2309.2376866998075 0.06267368403741937 1.5970828654415032e-05 1500187.8175393038 382.28553102217796 18107 4955 634689 PIVX_20200208 22806479.97592558 2328.5864192784697 0.3667501909468966 3.740964619933401e-05 939269.1912559669 95.80834311251405 63854 8519 230532 MLN_20211207 137037257.67174074 2714.988332948496 94.22139558616895 0.001865505138275321 15461200.34452563 306.1188863440128 31099 580 104412 BCD_20190227 139866739.98985887 36711.09032619292 0.7434505832181284 0.000195171845049179 1916090.302216022 503.0151135877422 20524 None 2421830 CND_20200913 20526662.469108954 1968.55189818902 0.010757412498812818 1.030211692371751e-06 60206.59114651716 5.765841382751905 34316 5931 303234 MKR_20210127 1326621136.4465084 40709.90079151715 1470.0867594851452 0.045130129508816896 163668243.6480974 5024.444295319069 88582 19576 39551 EGLD_20210115 640719799.4179362 16405.202617940908 37.80717079068116 0.0009655630553029536 83581152.41964167 2134.591698036897 120298 3295 49960 ARPA_20210128 22988242.016495284 759.9112209551919 0.023490741450910776 7.725408495803834e-07 12917854.588308206 424.82994328902083 23262 None 1180898 BNB_20211207 98720942135.86618 1955863.7604861502 588.4348263784073 0.011654970691071388 1134910473.6514003 22478.867181955087 None 734664 109 SRM_20210616 218547419.4959776 5411.579136191935 4.367649434411589 0.00010821434872811841 66239012.47176913 1641.1600112754668 91789 None 25883 BLZ_20200905 35359400.50403672 3372.298526501937 0.1477324046073514 1.4089542335908196e-05 23313183.895563796 2223.4261491538327 41626 None 210138 KNC_20191113 29840791.512757722 3393.032116999454 0.17459826020198693 1.983847487711646e-05 6552434.695951999 744.5109186609791 98384 6723 172247 BAT_20210204 480017464.0033611 12808.633987745536 0.3230173110844525 8.611608746586242e-06 250127993.67429352 6668.386938334869 132252 51643 21155 CND_20211230 19685570.52380838 424.44757311718683 0.011410867931332624 2.4523864929877257e-07 138353.04552660164 2.9734384987621976 38254 6360 138944 XTZ_20200927 1577005808.2684586 146868.52871802615 2.1697197373763637 0.0002021173036507794 90507387.20002252 8431.093079083908 73903 29660 72703 ZRX_20201130 308529174.8896846 17008.46373843102 0.41525072122651374 2.286570510445847e-05 38263721.016010284 2106.984807557023 161918 16305 88488 DOT_20210718 12431619895.169931 393288.0751412918 12.274409909483534 0.00038910123549811075 602223527.0661373 19090.60558963552 502277 27519 21430 XMR_20210806 4515132471.709771 110188.69271870046 251.90931910194757 0.006156758945330528 267999462.54280132 6550.008130848103 431789 230506 35880 POND_20210430 133462990.51769547 2490.4013999936064 0.17617334756453853 3.287167210281454e-06 35613524.18903162 664.5023811780845 15901 442 75680 QKC_20200701 19242785.29448016 2103.446257336792 0.005944913505480547 6.499872427217439e-07 5419987.907753637 592.5944914923049 49808 9206 550084 CTXC_20200530 1099385.670237473 116.62017012291177 0.10814163390701247 1.147423407488121e-05 20977417.39197142 2225.782880707483 16395 20062 554748 ONE_20210128 61200591.059914015 2023.078399911895 0.007005339387463105 2.3038484559114848e-07 6853534.39786562 225.3924294990785 80406 1664 164688 OMG_20191015 115872454.7165686 13883.521264147796 0.8267817199605743 9.905133430944301e-05 53424495.752790794 6400.440964485089 None 41683 None LINK_20190205 145639892.39945054 42040.29703088668 0.3996599013662211 0.00011536551344523096 6243253.316465835 1802.1726021563732 9594 6299 271589 EOS_20200707 2451972347.3565784 262670.0145099178 2.6110892052734753 0.00027958132885916136 1739690688.1258028 186276.6823162515 190168 71756 93319 TROY_20200321 2184273.5404901463 353.2287737024667 0.0018689325661727717 3.014168140645505e-07 998655.607682534 161.06070227658518 8809 None 356286 GRT_20210202 954452928.7997241 28589.151097747057 0.7788477324485616 2.331986656154549e-05 668552305.2485119 20017.456427323672 None 4569 34817 IOTX_20190708 30106484.38521286 2632.613933036187 0.008604717051357699 7.523365136208365e-07 603884.1552054111 52.799423530889655 19932 1743 776154 ONE_20201224 38409749.51720389 1641.8547534325228 0.004400219136347834 1.8872513569678807e-07 5340429.283871858 229.050692714897 79314 1562 179768 FUEL_20190819 2413452.374692547 234.0742817774879 0.002683046766407359 2.601054946261455e-07 70602.46080689532 6.8444904576115 1 1503 None GTO_20200315 4458859.762067868 862.6307815081846 0.006795025880234095 1.311502205976854e-06 7580964.564914709 1463.1955676930363 16906 None 1191106 IOTX_20200411 10392509.139131151 1515.682598844141 0.002406698400738456 3.5069973116069556e-07 2599964.0451701963 378.8620507616947 22562 1816 530142 ZIL_20200612 266950870.31839618 28771.018525488555 0.025464207280286706 2.7381997232988525e-06 242962066.4415051 26126.030776433272 78912 11211 123931 DNT_20190224 7470741.499756267 1815.589977688334 0.012857089978102861 3.124616707356592e-06 633124.6316921543 153.86621742505687 60143 6486 733347 LUN_20200320 1517506.8530274404 245.37039037038969 0.5578215898226803 9.020094935279956e-05 2347211.5342775183 379.5491472299861 29643 2149 2364106 NAS_20210707 14149247.256107578 414.2244000870156 0.3111358043979551 9.105743891020397e-06 5165776.0780200055 151.18232392388438 25264 4925 609906 AION_20190726 35776012.516010344 3611.614947126495 0.11083884110270704 1.1197592888722416e-05 1190393.4118847582 120.26055731989453 67606 72603 240336 CVC_20190714 21216061.50837449 1864.0601167790348 0.062100633913708514 5.453150085036833e-06 2164229.9135722886 190.0442844695464 88678 8143 447156 WABI_20191220 9310557.975911405 1303.8060034126515 0.15738893192854372 2.2025861484320068e-05 843621.9661527294 118.0610373545579 36654 7871 2266956 VIA_20190903 5586316.069965244 540.6054341274245 0.24127448254284892 2.3348893035291154e-05 160306.15587016972 15.513332561583983 40722 2218 1917066 MBL_20210120 5992004.415476399 165.4663052572919 0.0017005086263651185 4.702828585354459e-08 6530640.869294402 180.60763753048724 None None 959943 OST_20190818 6631619.441158283 648.792769388701 0.010080911575514072 9.862481701600827e-07 397514.0591258363 38.89008553333835 18038 757 528261 GRS_20200207 16124364.128037862 1655.827718281995 0.21679313367567019 2.226271231677221e-05 10864670.563700072 1115.7043171764574 37905 106880 4012909 MTH_20190930 4636410.196386509 575.2664689475521 0.013422482883446054 1.6655724836226842e-06 489708.9487342867 60.7671290832157 19515 1980 708112 LINK_20210611 10034956905.839642 272287.7410232138 23.103305130326913 0.0006292873406715357 1144246111.8778331 31166.951600883658 367341 60155 24731 AION_20211225 74995906.2553308 1473.4091127668112 0.1494281136810972 2.938562473837474e-06 5433026.725810863 106.84260185400109 1037 74024 309330 REP_20210722 103683336.46124664 3221.880907924708 16.148242914065637 0.0005000225658544159 57576856.46750599 1782.8396351182575 151845 11239 153333 SKL_20211104 882141750.4836472 13990.262522592433 0.3711082772164662 5.884497422542102e-06 80861950.93846676 1282.1916704422692 78918 2939 155813 BAT_20200711 377369963.82144505 40641.59436716883 0.25452963545831336 2.7415396478385324e-05 51965214.343814574 5597.175164906407 119384 42012 21649 WPR_20210519 16357654.33087179 383.75403393561993 0.026967780979677277 6.303699908503402e-07 2681200.5793918576 62.67287567979195 33738 None 7291918 ENG_20190405 48343993.33428412 9859.528620373694 0.6229450111499482 0.0001271116091279054 1982949.042258601 404.6197321892633 61825 3351 361220 XVG_20190810 76333543.1069457 6437.153316958312 0.004811780842235814 4.056855451309636e-07 1376122.9206147168 116.02215385964901 303659 52868 396565 SNM_20200313 2086831.2126164867 433.6264160070603 0.004733980208895887 9.911086906479322e-07 148491.78972339013 31.088322466612567 30196 9701 None REP_20210110 114988983.10861112 2841.6431981154187 20.263185925377535 0.0005030167491444053 20997865.01262446 521.2545468674424 None 10448 135410 ICX_20201115 201997051.63645625 12554.051900358398 0.352476517130957 2.1923634759445937e-05 22223791.780094437 1382.2943381381237 116203 28006 230904 ADX_20190804 9236548.193954075 856.0298174443221 0.10036567434947971 9.299950198304813e-06 238615.68002965825 22.110287757180416 54006 3862 708738 ATOM_20191203 912940742.8888277 124916.44786338153 3.6669126108757206 0.0005019012943053694 96034890.02887374 13144.582573636671 None 7404 111022 CDT_20190312 5581170.600031215 1445.2660787254613 0.008284206181545815 2.1424706137407903e-06 938623.2817462906 242.74779676465354 19489 283 399523 INJ_20210220 230833721.79042554 4132.578302775294 17.11796883407083 0.00030639527304629537 65483619.598538116 1172.0941720036085 48879 2491 114661 LUN_20190714 4264034.293800075 374.64290543061384 1.5787286818352173 0.0001386305405120733 233202.41080104423 20.47785451043178 31231 2219 2096763 FTM_20210201 305760160.9069939 9250.61742883237 0.1209749862263561 3.657915104198728e-06 195699920.7484352 5917.369518495026 31224 3203 133702 ETH_20210916 421477522819.9356 8745717.04823443 3595.9625714292315 0.07459514780934974 18985547836.191357 393838.84535797255 1575755 1101814 4234 VIDT_20210509 56906795.63027063 970.2549807142335 1.2310352498973207 2.095646763855178e-05 5386004.292303603 91.68837745480964 27555 1560 391219 TNB_20190916 10032861.164079892 973.8161146216071 0.0035002197408084777 3.3965649306030414e-07 475359.9321341361 46.128271778951564 15550 1461 1364178 BAND_20191015 6714063.551536686 804.4285488770457 0.42866560487635663 5.135948562853046e-05 2250052.485401589 269.5843496021904 7481 974 630283 WTC_20200530 10448461.376110634 1109.0751907029185 0.35707817002431086 3.80915606751321e-05 11313770.009494515 1206.9042382283108 54309 19634 960738 ADA_20190903 1409467876.7763908 136398.6541166298 0.045354229791424734 4.386027984736804e-06 72218997.65344046 6984.013314619693 154474 75226 100209 PERL_20210310 0.0 0.0 0.11848732688081944 2.1666540055922898e-06 65847980.599130124 1204.0932535238403 15334 570 400824 IDEX_20211216 170511638.50360793 3495.0655037534957 0.2825310132148838 5.781310039374235e-06 23963662.91438098 490.35807931542297 75863 1988 56023 XMR_20190813 1562311891.0669897 137263.2837397512 91.05745246315158 0.00800082991173078 93435928.33111995 8209.816440059938 320442 160182 104374 KAVA_20211230 515973767.2501512 11103.740670262832 3.552503857872198 7.633917965689358e-05 45352871.57365457 974.5805070260931 None None 47415 CTSI_20210710 157648685.6904239 4648.122818896441 0.41597453438251547 1.2240798485055726e-05 8582385.150816808 252.55211189365275 47055 3868 120521 WTC_20190703 51988693.30965864 4816.978747642751 1.7664848683691121 0.00016333417828876627 21781063.96431544 2013.9386691441227 55685 20082 771082 LPT_20210613 613466485.3535925 17104.248642059185 25.77001560811603 0.0007223287570419919 6941615.602674078 194.5721976421198 12975 1055 99080 SKL_20210301 117980096.21328746 2600.741965616093 0.2089030102828101 4.611052983345646e-06 16573466.155164247 365.821107391848 None 169 180893 AKRO_20210314 136407133.5111367 2220.9825472857456 0.05189614920505246 8.458727029944877e-07 106969582.70664935 1743.5330260199105 None None 152537 POLY_20200718 27209709.988003854 2972.00310072494 0.04073324214147699 4.4494725785109216e-06 685436.2692340105 74.8732417046676 34969 5009 381210 CAKE_20211028 4285297900.981182 73217.90115886106 18.10623576861517 0.00030941301156466256 356968907.5305912 6100.153898660707 1122171 None 560 FTM_20200306 16199909.62786777 1789.3175740617064 0.00766588717666736 8.462375224812725e-07 8211384.438327338 906.4549820640967 21183 2315 349202 REP_20210511 252951294.2830378 4527.059933094187 39.355886427758946 0.0007043508398860175 63433439.71209259 1135.2659181005688 148730 11083 144608 FTM_20210401 1073819183.9845881 18256.23655847757 0.42247841537801556 7.189698949457301e-06 164980122.86726177 2807.616609238523 55470 5868 61839 TRB_20210427 141639735.8159892 2628.4276434817875 87.9846143744296 0.0016327938035501466 145384083.92436615 2697.9970652176708 18628 None 295366 LEND_20190901 4030094.8207173203 419.8602562197604 0.0035849243594251907 3.734583623429235e-07 2626514.027439175 273.61626885634706 41719 5822 754376 EZ_20211216 0.0 0.0 3.344879562701095 6.851379191630055e-05 1035665.8694682261 21.21373716016854 None None 290326 FUN_20200520 15859871.761415165 1625.9193743452147 0.00263794809048146 2.702215547194977e-07 384869.33039474016 39.424577457904924 34326 16856 215039 TKO_20210909 156563895.4738464 3378.074089254377 2.078921481806944 4.4904093257508665e-05 49284829.644218646 1064.5378413237913 316649 None 26791 NKN_20211204 312335704.9994504 5816.867006670102 0.48177463984978186 8.96724577729667e-06 41401535.20157342 770.6045752546615 36728 4550 115228 WNXM_20210729 115815478.96954568 2895.0029868576853 52.95346970088 0.001323547885309297 9410451.516318323 235.20995459947736 31628 None 131125 ICX_20200312 158989392.65019044 20044.752061724583 0.302544960124909 3.8112680837714145e-05 23755241.803032074 2992.5335681939378 112586 27527 143772 WRX_20210930 458729425.0039199 11041.409498936675 1.0146230550929654 2.4409586180942456e-05 8647890.482080506 208.04911434459248 None None 1480 MBL_20200913 6244547.234447772 598.604052818322 0.0017660904853328168 1.6913545310109816e-07 2143455.327707404 205.27503605537834 None None 428070 SKY_20190803 17778029.505359184 1689.1571322294271 1.1109663101206975 0.00010555706783146502 675757.807079001 64.20627883102111 16364 3798 513361 BTS_20200421 44085315.92093602 6438.937264662506 0.016266467834319287 2.3758197874928297e-06 24216072.49193845 3536.909474614025 13213 7007 127468 GNO_20211207 648980936.6128075 12857.639602146734 431.48795132372504 0.008543101970530148 3188632.905769317 63.13227513538988 91584 2404 141994 SUPER_20210418 256473953.87225023 4256.216098481582 2.517041132175923 4.18737895441212e-05 17003975.07046964 282.88011046478357 92888 None 80916 MTH_20190220 5343261.6288029775 1364.8133052157573 0.017764800694308025 4.537609803982091e-06 90759.5661394256 23.18244399169491 18625 2015 836408 MDX_20210819 815657634.7921401 18107.808199521474 1.3129819901244704 2.915349257795839e-05 45959033.41471571 1020.4757945073085 9273 None 93491 NANO_20190830 127061213.75412828 13389.434192875828 0.9529418763392135 0.00010047538597367227 1699436.8497223214 179.18361828077585 98660 47519 238230 FET_20200610 17301986.02014348 1770.2466531860566 0.027440784138387596 2.8087558187226124e-06 2622820.2868292634 268.4639660784955 17257 405 941705 DUSK_20200422 4783862.469977068 698.5765053587128 0.017925944155944822 2.618662230379751e-06 100469.05119614347 14.676744912327523 17523 13331 1548362 TRB_20201130 39476612.83957372 2175.7790485452515 25.140361078849402 0.001383638965524787 26440295.03172824 1455.1828572044105 None None 262414 VIB_20210325 16988574.8568413 321.3918600837087 0.09196175007562679 1.7441870788833485e-06 11676251.774199706 221.45693679817774 31068 1164 None CND_20210708 22352554.578109764 656.344187362735 0.01158604574487347 3.402042371753609e-07 162542.65507174708 4.772784537089313 36086 6258 150163 HBAR_20210324 2519655155.467413 46192.49336833671 0.3264337699658213 5.988297727442414e-06 189323723.37287903 3473.068434504961 70032 12784 57776 LOOM_20190522 49196721.652972065 6182.508897416283 0.07109165775255401 8.933859094176644e-06 3172494.8182856482 398.6771806928542 19499 None 434311 LRC_20210120 587619126.0355425 16228.010740461257 0.46869540185896036 1.3004186375729418e-05 229808555.97610644 6376.152359928261 50914 7808 177149 SKY_20200520 8348297.635488165 855.8492194976856 0.4652086299588961 4.765423539228052e-05 955347.2701802728 97.86220797014417 16047 3824 462485 MATIC_20191216 36302072.47564437 5101.27549427871 0.01421681076660729 1.999495251238447e-06 27858440.93316338 3918.0953638071037 27538 1356 165961 AMB_20190701 5408477.416983424 498.6605335347213 0.03747092933107513 3.470221146045128e-06 747908.8761178455 69.26460708479378 19394 5670 665326 DGD_20200207 78105200.85806516 8020.7042892242525 39.05261995534256 0.004010354149789201 3035233.176144467 311.69125086737216 17601 3339 310939 ALGO_20210304 958815966.3857038 18858.46797322204 1.1843481751204383 2.337458162547363e-05 830083670.234079 16382.731795813432 62100 7868 159535 STRAX_20210325 151084214.8339049 2858.228971172431 1.4987585888417871 2.8426115889198606e-05 4942209.841917898 93.7361298617561 152577 10590 200259 BRD_20200410 7634620.483035798 1047.4234024147927 0.12236813195559314 1.67825931999823e-05 175632.96368831515 24.08777951401529 185 None None SUSHI_20210729 1566945256.863211 39168.436198880874 8.131834811499854 0.00020316635291827673 294847803.56251436 7366.498988770266 118538 None 5721 EOS_20190608 6963478132.099133 865463.6568404415 6.672637189474325 0.0008300049684730215 3223506320.3760056 400969.8393367993 1105 66025 114129 XLM_20190523 2369751355.941455 309145.2276670551 0.12282074618251576 1.6037526120640685e-05 348525993.39869297 45509.36952090817 271315 101452 74186 ETC_20200308 909323497.7675629 102232.86939935971 7.809218857076102 0.0008782155960081532 1409598433.1074553 158521.78697001253 231156 25286 362649 SRM_20201228 50195349.7866425 1895.9752336880056 1.002864878309683 3.790989339817701e-05 22234368.514266647 840.4946253301187 None None 80741 BAT_20191011 263989790.53070754 30831.016534666465 0.19517976689192368 2.2794785389919372e-05 38320725.955160074 4475.426618464374 106257 30698 24857 NEBL_20200414 6426362.577935896 938.3026597615358 0.3968232657331685 5.796555439909827e-05 521112.2602241414 76.12094268779843 39420 5993 1168706 CHZ_20200224 62490788.090250075 6283.60924346799 0.013178765216104171 1.3244080922311317e-06 4966085.410154299 499.0697987306282 19064 None 373629 STPT_20200506 8438426.999312222 940.7746203605479 0.012032486297916136 1.3372179847301948e-06 1461107.5903704106 162.37868875092644 11232 None 1326696 REP_20200321 89469472.73193939 14472.420281022374 8.13650056910391 0.001315744523007433 27990735.727130126 4526.35096810126 130602 10105 262137 SKY_20190324 14901555.725281684 3720.506276886752 1.0644684610408564 0.0002657683307610235 649952.1496712186 162.27507363041423 15114 3578 436972 CAKE_20210916 4982755963.207799 103392.87723591276 22.54772523758825 0.0004677331489003798 305847576.656103 6344.544676038052 1081677 None 615 FLM_20210620 0.0 0.0 0.4718182893590943 1.3255990826266199e-05 11628924.312247531 326.72093786761536 22855 None 89339 AION_20200331 23429080.48137356 3646.5758046730803 0.05845596406402012 9.104734160348769e-06 1943293.5217394286 302.6752050755358 535 72553 268121 ADX_20210430 159205871.5133249 2970.5760136683966 1.3498709895838887 2.5186849863568696e-05 5397203.9866959695 100.70485812712384 None 3835 11197 STEEM_20200217 80797940.89805815 8105.22110758798 0.2346298554803831 2.35845964969087e-05 4751884.021276868 477.65135009126277 10631 3815 201794 POA_20210708 9458112.961432764 277.7211635459297 0.032693874366541524 9.599991950746277e-07 376595.55650199705 11.058078558 19868 None 217721 RVN_20190225 30845099.775439102 8189.0079171630605 0.010302722306088079 2.7502427473249952e-06 3360494.1171420426 897.0614075113754 19312 5752 319806 BCH_20200330 3791141261.0713167 641129.9111837739 206.7490435687663 0.034940344570750737 2013457257.6303847 340271.9023301563 None 289741 138735 ENJ_20210422 2345090504.303496 43280.597885954245 2.4942546018869813 4.611471890740577e-05 442047634.3399119 8172.743225910825 159384 29473 22644 DLT_20190224 8127341.871733199 1975.1614278243935 0.10047019939320456 2.4416945370228906e-05 1211466.259449833 294.4186998086403 14509 2694 922398 OAX_20190419 5365884.683304859 1016.7169613391467 0.22868837873759143 4.333141080110869e-05 926231.3410809451 175.50043845163233 15207 None None ETC_20200318 545661765.6302636 100448.29145402757 4.636298698915383 0.0008619828032320702 1493027139.8752854 277584.29792979715 231139 25308 345588 NEBL_20210527 29066090.08182473 742.9664222822739 1.6308278158028282 4.162829595042384e-05 1299718.3123004285 33.176438390580586 40223 6085 583020 AMB_20210707 3928497.838298304 115.0154582816995 0.02715624721427208 7.954550487512691e-07 508811.5356221265 14.903999867139065 586 59 581251 RLC_20190804 21278317.41451504 1973.2886839066887 0.3058044846926226 2.833639939396066e-05 132598.26686830784 12.286796423878595 None 3317 861371 GLM_20210219 284162271.4711581 5497.737262493529 0.2856754174147074 5.525588843953972e-06 11188400.60438341 216.40819542944 148399 20551 179505 WAN_20200315 11589456.311582142 2243.146789332555 0.10980773214624978 2.1139305360832034e-05 336060.4634849281 64.6956695895414 106053 16374 700059 CND_20190726 17766748.669401195 1793.566430231249 0.01018059470464026 1.0285036701350051e-06 293252.77694409183 29.62612363173711 36134 6129 486164 SKL_20210131 77240281.74183005 2258.1202683914153 0.1378246592819502 4.034152298023092e-06 21685170.572396316 634.7288007343694 11812 116 222285 AERGO_20210120 13852104.472071312 382.51916856263193 0.052573071209062336 1.452973924106326e-06 4248920.844197965 117.42839157449309 None None 562212 CVC_20190922 14528249.357429886 1454.7776910177624 0.04691009400755315 4.6974137780805e-06 3658458.380473833 366.3453072638225 88039 8138 118286 SKL_20210506 405274315.0170188 7078.627169984184 0.6154486596380945 1.0735599836237716e-05 86555370.87320717 1509.831585169613 22988 1513 131705 ZIL_20210206 959110777.2632142 25310.75680987979 0.08299241896406032 2.174229163326781e-06 209068883.0001336 5477.1709059341065 136107 16716 35643 ENJ_20200412 79789743.68466666 11593.33337919173 0.08726679536718725 1.2679495286433352e-05 4954930.653327319 719.9304110930007 54165 15295 101377 CAKE_20211111 4402285330.200536 67789.54538529844 18.31568978372951 0.000281969412248346 299313498.8649543 4607.920987388652 None None 550 GXS_20210508 84221668.29541492 1469.7806940969683 1.2020076717969652 2.0973850804215878e-05 55914317.12116867 975.6498004424519 None 645 810772 CRV_20210509 1055582527.7464609 17997.538517889436 3.5633337570934986 6.068893012413862e-05 458806353.83073676 7814.16186252962 114711 None 25483 MIR_20210729 226371578.29111114 5658.538920041788 2.912386653293413 7.278799939518463e-05 13472390.106395401 336.70952371900086 51731 None 15750 MBL_20210117 5824845.394410185 160.5369661357344 0.0016372686929209098 4.524156699548065e-08 4672604.934033107 129.11501336371305 None None 959943 RAMP_20210826 109564962.21548295 2235.2460481525195 0.3334968885962911 6.805481444653499e-06 9436054.391447503 192.55619847618365 32043 None 126255 ICX_20210115 350157455.67346925 8965.547831867298 0.6028972510840984 1.539748411785419e-05 51568400.115615234 1317.0131731991876 117663 28131 340142 MANA_20210602 1103095199.338304 30063.603518977212 0.8303495661087241 2.2641294239217307e-05 103243717.82795063 2815.1654304438803 None 32762 11364 AST_20210310 43658014.098861024 797.4425836794766 0.253439038253711 4.629232127064469e-06 3421028.765679283 62.487359401358326 38586 3525 159367 RLC_20200711 61818594.051311776 6657.674072255654 0.8805114973250247 9.47845446793735e-05 4078578.089011609 439.0472677309442 30986 3621 559121 SNGLS_20200625 7930121.735598655 853.1676524644574 0.011710897813301709 1.2599250716132302e-06 263189.27886028826 28.31540128710199 9101 2132 970834 CND_20210127 19012643.63433711 582.4982733427321 0.009542433648788684 2.928313910011523e-07 120087.05026713834 3.6851456625444077 33968 5895 464745 CTSI_20200718 8969664.024516458 979.9603954475017 0.04494739284894722 4.910258965480439e-06 3094569.1862276536 338.0649049443087 15602 119 236053 SNM_20211002 70064409.10879582 1455.18485050467 0.16085798787960667 3.34e-06 195214.1607048938 4.05335977 32427 9722 None CKB_20210620 427593481.80277926 12018.543953419996 0.016009936021116195 4.4967164205424023e-07 16974387.5147825 476.760225435622 47735 4794 116696 XVS_20201106 8952935.053863045 576.1706205630442 2.4229966958375995 0.00015586889826305647 3505204.756081042 225.48623547664826 11121 None 227768 TOMO_20200506 25559516.89405977 2850.3854736912444 0.36201232962387925 4.029668712938549e-05 13838442.456364546 1540.3988770258263 22717 1539 211142 MTL_20190430 20169125.78224009 3875.1888660854 0.4426548171775968 8.504940860590565e-05 1625005.0119743193 312.2200637762386 None None 736398 AERGO_20210511 68547451.07918109 1227.7124733545704 0.28453053811702494 5.088918948198043e-06 7792096.7474656 139.36412255355506 20456 None 378551 PERP_20211207 643503064.0534283 12749.026140079673 11.341510597589338 0.00022472780996791794 21010044.340687126 416.3062064250101 34663 None 104435 NCASH_20190509 5131731.235831135 861.4906702942124 0.0017666271566605008 2.96574897132728e-07 486451.19422114827 81.66364495321436 60723 59351 935849 AST_20190225 5013834.626508718 1326.327803055594 0.029953305602480846 7.952168366209295e-06 3496515.1858508987 928.2740884061567 30516 3594 387473 POLY_20190810 20742099.120282188 1749.1610501967443 0.0420923335122574 3.548842274125669e-06 1850940.2148591278 156.05442448227538 35278 5074 295167 QSP_20190625 0.0 0.0 0.0248126674132282 2.2465154974343477e-06 3697593.7331503993 334.77664800802523 56816 8600 682845 BTG_20210617 956964953.2955282 25019.4076338242 54.675675997136096 0.00142932998641864 13955702.567219933 364.82958458368006 99227 None 159409 PERL_20190904 22583402.679863997 2125.0287221265994 0.0860431875701788 8.09679228791573e-06 6909474.838124164 650.1918880822706 11300 358 317628 TOMO_20210731 220149079.93201068 5274.294335248137 2.6308792563562062 6.29827425168817e-05 9065895.151412223 217.03578323745492 50715 2216 135490 MDA_20210202 12818762.016944077 383.9131934557188 0.6531057100617386 1.955496225345824e-05 1015458.3590705736 30.404342781977185 None 370 2554978 FET_20200323 4028861.261870054 690.7162591702378 0.011840836012788748 2.029181860316245e-06 3058709.1670891144 524.1755861779263 16596 360 584622 OMG_20200306 129556168.18293644 14305.897070147434 0.9240467959130838 0.00010200555437475064 189829350.13436028 20955.267831344136 281923 42908 381601 BLZ_20210120 36613777.24340293 1011.0717586141376 0.1432936122895547 3.9628455011984515e-06 37595391.7092371 1039.7164710991374 43968 None 447066 BNB_20191022 2839090495.702674 345738.7295529423 18.270884965957617 0.0022232100024954524 170907976.01575089 20796.164087969533 1052364 56921 1996 NAS_20200806 20624163.472460892 1760.5684260474684 0.45338440010855835 3.86886379221166e-05 6968843.331791907 594.6721067930372 23535 4914 789535 REN_20210916 953164263.961069 19778.01432781778 1.0793039869489511 2.239710995221354e-05 652580563.4751585 13541.985214145136 93807 1195 100322 ALGO_20190712 95216842.72320805 8406.905090004653 0.8722444405242868 7.686146287182412e-05 151249458.6429593 13327.977926556492 10214 501 350942 VIA_20181229 7475913.984865984 1943.795005464027 0.3231134366122536 8.40114473175383e-05 123277.42191638348 32.052875130657526 41176 2232 2533080 VIB_20210704 6452700.685162862 186.13438428009076 0.03541711514799976 1.0196569161271394e-06 955326.1431037027 27.503790325728154 32274 1279 5353041 VITE_20210731 39469854.074774645 946.0320726589724 0.060173782751396045 1.4405487656423337e-06 7251817.0410697665 173.60710278654918 33157 2413 646501 MTH_20200325 1881858.4498215823 278.40438715519446 0.005412982462960112 8.010625050682646e-07 224367.58004311274 33.20396047009412 19185 1926 1053445 WAXP_20211204 1063073556.3578068 19800.91743439384 0.5712431210161603 1.0652799142036063e-05 72822700.14745693 1358.0305287030887 215849 6066 3854 LSK_20190629 255609014.9240404 20634.395835474737 1.8917070950253343 0.0001527995869522974 9029968.287471004 729.3811119841655 182843 30481 183148 NAS_20190625 81533178.62388867 7384.649079629608 1.7802609113682302 0.00016118645582839704 30136503.305914644 2728.5866514969525 24340 5151 467000 XMR_20201018 2135498805.2406511 187906.59560144562 120.4442235987347 0.010598115981501136 298439166.40545857 26260.22904614244 324767 181492 84563 PPT_20210401 111153389.1155188 1889.8141885724096 3.066151843719714 5.2163755907690014e-05 7691471.390450147 130.85328340937147 None None 897116 NCASH_20190318 5287332.933239665 1327.728743038914 0.0018223183176445357 4.5761151034997533e-07 509341.56322642986 127.90331951079531 60309 59535 708822 FIRO_20220112 55242085.59466642 1288.1193865349096 4.31247388888343 0.0001007754539913295 1957817.4369741948 45.750987977413544 78415 1708 200302 STEEM_20211007 256797022.72005403 4625.842113013646 0.6564038203356818 1.1832468941121773e-05 53170141.507601716 958.4557988434784 14436 3935 227916 BRD_20210813 15201848.230272222 341.96055384822364 0.18061588162079611 4.062530078733528e-06 2394690.694818542 53.86294322328008 804 None None ICX_20190712 137783956.99859032 12165.249511367165 0.29083451896560136 2.562809866450157e-05 18797561.862572778 1656.4256945134696 114100 25545 268065 BTG_20210124 189524222.4476441 5920.980096318303 10.802615192609077 0.0003370742783306417 31547241.77705384 984.369392570615 83105 None 278818 KEY_20190608 9232817.46365273 1148.464115496135 0.00353026402594804 4.397258839609265e-07 831738.1134092149 103.60040338474204 23935 2835 681571 HOT_20200407 63641027.54637853 8749.920064838268 0.00035922282199839917 4.929872970133403e-08 6925226.269667609 950.3985745940236 25087 6934 474054 ADA_20210314 35195036232.59664 573045.992622554 1.1022266932718396 1.7964995528393855e-05 5574966052.413064 90865.37353332582 265450 261031 11673 ONT_20200713 424392452.0873337 45741.80413433444 0.6712472557467726 7.224552839224963e-05 127563615.27782544 13729.51726874372 86953 16540 150808 DCR_20190622 295015248.31788707 29138.451775351215 29.55805686782996 0.002920246432937135 16701515.32397736 1650.0590944654502 40466 9492 389258 SNT_20190915 51955412.29417827 5019.040572376898 0.014590392493723608 1.4094897946239385e-06 11646743.872628238 1125.1216604440278 111209 5709 268012 ALPHA_20210220 391320776.40342486 7005.751748257139 1.568527136072459 2.807513582925222e-05 159065229.3715358 2847.1154993844675 39172 None 39039 STORJ_20211125 318984989.75365955 5579.341017360936 2.220329551427382 3.881766489320769e-05 179542386.46065813 3138.910702366769 110496 14470 56471 SNGLS_20190220 7257623.481315769 1853.4218730684258 0.012292404853426957 3.1391835201436435e-06 218645.47897970493 55.83677828310812 None 2181 1185727 MATIC_20210823 10528073400.706945 213406.53042044447 1.6286931636952782 3.30490080154426e-05 1132547141.795204 22981.345044841866 598531 None 5701 OGN_20211021 310943379.1370736 4691.153034519983 0.868788063144872 1.3111674152819649e-05 38973735.26538201 588.1882348477121 124112 6620 103485 NAS_20200117 19555139.378101546 2246.4110379951067 0.43320288877895674 4.9716082429588786e-05 5313237.058231393 609.7681672888449 23847 5036 940894 ATOM_20211230 7734245432.063119 166760.81089758486 27.993757799867403 0.0006010375760497005 788524290.5345699 16929.94315473618 None 50321 30956 GRS_20191024 13252565.366420176 1775.0973765461447 0.179938544439487 2.4101630842236307e-05 1526335.6126159579 204.44300909080587 38199 106956 None MDA_20200129 16704850.862423634 1788.2010355154387 0.8310028615885431 8.887353935422307e-05 1800396.7939347974 192.54763456904473 None 372 2164064 MKR_20201226 484665590.2884717 19636.106038104568 535.7418067795319 0.02172677093546569 46429056.95291116 1882.9097755679034 77934 18267 35335 HC_20190316 56003690.82766161 14270.584955004326 1.3242551813525256 0.0003374358117651307 12547159.285920879 3197.163914183718 12362 791 596410 NANO_20200730 125124689.81960735 11281.415138806315 0.9390341130802305 8.466461474894961e-05 7261012.663269938 654.6629470216807 98361 52194 209112 QKC_20190225 46244501.362706065 12305.424371568608 0.028972478347401243 7.734009136583782e-06 3600825.4020506693 961.216235103367 32780 8973 181289 VIBE_20201231 2972973.7087581847 102.9239444149348 0.015858798398447137 5.500080153009991e-07 41579.40357008893 1.4420389654 18507 None 1627164 RCN_20190908 6732692.980195534 643.1347325769658 0.013275822419500026 1.2681615702096768e-06 1215094.100712849 116.07082363870262 None 1111 1734382 ENJ_20190318 144531058.80134186 36293.92048039783 0.1666765051663753 4.1857045121714134e-05 16546337.066343462 4155.239375181884 42239 11988 17926 XZC_20210104 33222603.8582033 993.9333863190284 2.8947103180194014 8.793779735109784e-05 4559328.813722589 138.50689334347106 67125 87 582569 BLZ_20200430 3639802.518206472 416.9057518571834 0.01659612220309556 1.8929465089061813e-06 276896.7250472744 31.582720504915702 36036 None 563523 BEAM_20200305 34717896.886986256 3965.6867683349096 0.6155106967515942 7.027637468236119e-05 30478775.620172042 3479.936037906523 15065 1470 244463 TRX_20210114 2159051159.9791036 57983.52534781404 0.030156684576222878 8.092074235327714e-07 1056283724.9934592 28343.72026079709 561708 77038 32747 WABI_20210624 10366531.147398187 307.48091569797083 0.175595996426535 5.208837061898794e-06 670357.1011716126 19.885310510200664 45413 7889 327925 RDN_20201224 10648762.150530996 455.38222751471176 0.15488139303487464 6.642853687890436e-06 849877.4888045583 36.45119468604729 26431 4384 1993466 BTCST_20210702 134916837.49426576 4012.7847464487336 18.508701884031012 0.0005502750983814129 1942217.5340467386 57.743322644781294 63287 None 922062 NANO_20190805 155734822.27201557 14222.430879609787 1.1681117241041359 0.00010665641215759709 3941884.9653577167 359.92045869196954 98806 47174 262200 ELF_20190522 80943256.93385962 10172.068165627603 0.22246982245097816 2.7957064292991988e-05 16983683.526102643 2134.2846730401247 88264 32809 928009 TFUEL_20201224 0.0 0.0 0.01901932685120061 8.151320560470813e-07 46840379.173161104 2007.4892702647617 76119 4640 78073 LTC_20200318 2232853826.640809 411254.35532286373 34.52394451160115 0.006401436256279644 2945929415.658272 546234.7839047944 133734 212361 131624 SC_20190221 99448621.61198531 25046.49728007289 0.0025182095997577417 6.342202523135263e-07 2521238.7001401894 634.9831422687644 108937 31173 213763 BLZ_20191118 5737623.881886973 675.0283614863154 0.02728594157887981 3.2064923378048712e-06 240282.7184725554 28.23669080511182 36258 None 603268 AUTO_20210513 71915954.17698878 1395.1577788790037 2764.1772785569465 0.05484066062000186 24705444.22106262 490.15050246740856 55731 None 12456 AE_20190201 83068398.13060501 24209.163831400092 0.36514308057292233 0.00010641602412500517 65643772.82095067 19130.991887372133 961 6308 511202 OAX_20210610 10483940.372478452 279.30649005431883 0.1842568983325043 4.913419276114017e-06 545682.3358917488 14.551238689403597 None None 1441903 SNX_20201031 406921279.9026416 29961.536376474513 3.108808234839551 0.00022906632699561807 35646140.547418505 2626.514686644269 41585 2458 34427 BQX_20200725 30405097.317331407 3186.786932128839 0.1377256103801186 1.444021060050667e-05 6847474.14915318 717.9417722121116 13218 47 341287 BZRX_20210106 29609536.939645357 870.3411484374448 0.21016156036574946 6.167420271330222e-06 20140242.059973832 591.0373758836229 16975 None 145216 MTL_20190621 28307402.651138987 2959.302902828876 0.6081459763450411 6.359079093283589e-05 2957127.187125092 309.2120379525226 33149 None 940825 SNGLS_20210210 9104722.474923078 195.47260887847324 0.010230025252722562 2.1963214480727334e-07 706982.529399481 15.17846588227677 9119 2114 2522161 DCR_20200701 164984050.89067447 18049.403671833734 14.115629244282962 0.0015442625449949214 103911120.51271345 11367.970115907372 40531 9852 294466 EVX_20200217 7557743.149824831 758.152727938651 0.34479080085739994 3.465778853001791e-05 3494871.726877476 351.2985988850476 17868 2878 594950 SOL_20210110 895647361.5109031 22142.107935863936 3.3885883690214627 8.411888988488174e-05 120168621.41585141 2983.086150241703 None 2899 92318 STRAX_20210427 185928133.63772786 3451.4470570600643 1.8591523014563638 3.448870976662883e-05 9426725.197907044 174.87302634953792 155505 10626 156260 AGIX_20210703 191481261.0570525 5830.0 0.1638958961906697 4.846379358468092e-06 513373.35497617547 15.180380281453852 54870 None 164854 RDN_20211007 39359303.93776999 709.0032577703319 0.7695156302765047 1.3870001833097806e-05 4024403.9516853886 72.53717532280082 31591 4793 1383523 DOCK_20211204 70448412.58601576 1560.1781752227776 0.09994689198362308 1.8603061908230003e-06 80108914.68223801 1491.062973202788 56730 15261 178550 CDT_20200414 2094178.8911066265 305.6636005632632 0.003057322165225586 4.464927804331656e-07 43169.209184633604 6.3044518033400685 19136 291 258072 ADA_20210408 37822168969.25518 671498.5538373597 1.1771597102783828 2.094850185758996e-05 4444431697.675934 79092.22925466765 310793 314825 8118 DASH_20190513 1092775104.9377193 157480.3721285123 124.39194138256457 0.01789403499545277 594422086.7748485 85508.83204006401 319928 25596 97874 BCD_20200410 105730473.8283969 14507.225302320332 0.5639397104765508 7.734261687167611e-05 16447897.988700483 2255.779206272742 28836 None 841501 WINGS_20190201 7328224.392752961 2135.7502874178804 0.08198611564863469 2.3894174178674046e-05 242700.15367220744 70.73294909942786 37436 1225 1583228 THETA_20200306 138780769.1517948 15324.19665902179 0.1388213116051426 1.5324488880803957e-05 8414970.244069913 928.9288254554169 None 4028 385146 RLC_20190830 14237037.635594854 1498.875728558779 0.2030894834372057 2.1401127798208685e-05 76800.00128045987 8.093017001611054 24822 3309 784217 BNT_20191118 22258369.38259506 2617.921675332278 0.3238032789724719 3.805156329239452e-05 9252243.098010046 1087.2722319482136 766 5068 157122 ETH_20210210 203102939465.473 4367994.369658796 1769.053533934599 0.03798328269787848 42127693213.60732 904522.1357337964 676451 641631 7116 YFII_20210131 71174309.95545076 2082.8826483487646 1796.5052154608506 0.05257643414890864 74563827.35592689 2182.1813402661473 13911 None 213676 STMX_20201031 15335878.20724837 1129.1777930158619 0.0019534359139031687 1.4387065095918546e-07 1002375.1323934224 73.82497771047429 21473 134 212710 GXS_20190608 89176229.61993858 11092.572779319822 1.4863695769731295 0.00018514059325962657 23915071.840259403 2978.8355850021935 None None 820367 DLT_20200320 2373592.4000506364 383.5240926931692 0.02886853682663176 4.676564494784155e-06 77676.55392507107 12.5832291516784 None 2584 None HIVE_20210114 46588026.32551456 1250.389284166812 0.12488722344457963 3.341703513580228e-06 3678231.9006606997 98.42128063368534 10474 98 154138 SXP_20210104 60049113.909940384 1801.3178260195182 0.776415511121198 2.3586563896293596e-05 91769136.94444379 2787.8353552238095 None None 116678 LRC_20210203 673408879.3540157 18906.66324448965 0.53866156248932 1.5167275495576273e-05 120876593.7698357 3403.563065093041 54455 8226 159364 RLC_20210422 182849289.61456138 3374.635888473169 2.5765166694043162 4.7635611007768754e-05 45533194.27899431 841.8348526022935 36813 4263 302860 WRX_20200410 26624287.60923769 3651.6884786322826 0.14253665117304515 1.9544726153044654e-05 16526717.132929746 2266.1551110794376 None None 25623 CHZ_20200417 32382644.71999348 4564.356961724989 0.006821282535890184 9.62253107082179e-07 3099085.242538023 437.1764969497152 20212 None 267652 FTM_20190816 31917239.011990342 3101.502556227138 0.015413100785527697 1.4960642949186771e-06 5516766.296309173 535.4819380061773 18343 2082 361717 DOCK_20210106 10347542.009540852 304.60527575246607 0.018578527430889606 5.450356612080291e-07 7621746.650468175 223.59811565534227 43082 14867 239744 LRC_20190414 59181279.973541126 11665.048218789947 0.07488920954152815 1.475914277450733e-05 26564779.90019315 5235.378791158127 29547 2465 750583 HOT_20200314 57532566.10997752 10465.59705841239 0.0003313268160777456 5.955838386831022e-08 9280939.832320323 1668.315845169382 25128 6920 537857 QSP_20210602 29890280.632655866 815.2188024814525 0.04165126373441868 1.135471422950328e-06 649663.1168281285 17.710720817663944 None 8476 240687 AMB_20200506 1307731.3416155807 145.8245893472048 0.009137743397921035 1.0155137108833277e-06 87465.36399691932 9.720373236403296 18905 5467 863223 KEY_20200306 4707492.567263477 519.953467263759 0.001713834903948578 1.8919028804306996e-07 2983655.504395261 329.36582339250066 23522 2765 281483 RVN_20190704 210680893.1578471 17570.789081005692 0.05414570540312172 4.511656702590427e-06 48207132.74156589 4016.8288865549207 26124 6740 214144 CDT_20190818 10615110.448735679 1038.499598598082 0.015735899799215528 1.53947768174295e-06 389521.5477608435 38.10774960359646 19762 297 224421 KEY_20190714 6315624.95807565 554.5845284775497 0.00246581240567765 2.161788960801665e-07 117453.72115039702 10.29722119993253 24017 2841 905724 KMD_20190821 91018024.0974919 8458.461156009347 0.7884809992620868 7.335682471304644e-05 1613986.6762699308 150.15826356136608 98440 8425 208596 ASR_20211007 16068113.053720023 289.4447655710995 7.5243169669497405 0.00013562324656645223 7091304.031775139 127.81833612320501 2029994 None 69254 CDT_20210707 10564792.790198153 309.3076627330366 0.015661308617456137 4.5851942958128435e-07 243623.3597191739 7.132612392722011 21048 336 541618 BTG_20200309 161155247.23900747 19948.668434078027 9.151678301327804 0.0011376214915315864 27745654.531800594 3448.9906498797627 75064 None 217881 TFUEL_20210725 1720544693.843592 50358.94820408632 0.32460759835008945 9.499503096209703e-06 181311789.65513852 5306.012292881487 183834 21773 19127 BRD_20190626 26320567.39014865 2229.828805442512 0.4401003855808294 3.721945454637357e-05 705193.327498347 59.6384639940519 168 None None PPT_20190905 14601317.888983093 1382.741667050135 0.40172876089611065 3.803123895708315e-05 2138247.621005478 202.42565168219002 None None 732961 ALPHA_20201124 33894537.545635425 1851.2804211262155 0.1949823048592112 1.0628570341793344e-05 49174110.06761703 2680.5021523678292 None None 171757 BQX_20200107 3478013.473507597 448.10120712909986 0.024961440571503634 3.2180823908909957e-06 1976398.0535672798 254.80147090697233 9293 4 319214 BAT_20190810 254768583.4560465 21484.386918167063 0.19933884967389612 1.6805240157250853e-05 23617061.169180684 1991.0337869705218 105080 29370 37775 GAS_20190803 29134126.852479786 2768.8028032898765 2.091926244918457 0.0001987540955260805 638991.6859742118 60.71065598177446 324447 98215 192021 ZEN_20200325 47345661.897994146 7005.5141352170995 5.434316382436376 0.0008051940590051125 2577396.6496708957 381.8887830531983 58296 5091 39151 LUN_20190213 4626480.856418286 1273.2353032289543 1.708042542754265 0.0004700557819876208 1507303.6277386458 414.8121417906631 31733 2259 1530504 FLM_20210509 0.0 0.0 0.9582344812518443 1.6312457257559178e-05 39373006.016311824 670.264418896344 20774 None 99101 DEGO_20210708 31741180.425627068 934.0973596173213 5.85238403599791 0.00017224770702754723 26881866.356061503 791.1886526877631 None None 168590 AGIX_20210718 191481261.0570525 5830.0 0.1851150706937784 5.856678183147858e-06 699097.7826495059 22.118084260699877 55648 None 182415 WTC_20191015 21839720.569885883 2616.5794527342487 0.7479798244391509 8.960945897711679e-05 2134041.3817709414 255.66236869913004 55597 19773 471391 DNT_20210506 234794935.76529408 4101.387399757261 0.3124528046173622 5.456028612963569e-06 23010697.64834393 401.8111628966369 68539 9905 161725 STRAX_20210117 52394471.35618925 1444.6061255967961 0.5195157631403255 1.4355436774027821e-05 1364257.1378788755 37.69761858226122 144292 10287 214690 REQ_20190929 7340492.6512533445 896.0912491457839 0.010056954234780664 1.227703522229921e-06 165713.49546449032 20.229488701379562 40910 29278 689575 CHR_20210821 216190353.48721823 4399.645890898062 0.3812690914820802 7.755319255962225e-06 64417690.8508856 1310.3075214896487 84841 None 83278 BAL_20210207 388103642.1370098 9892.998606168589 35.960522030904876 0.0009154826967202501 139233067.98927474 3544.5943873092256 None None 75993 RDN_20200423 5011773.902889646 704.6017577184404 0.09815789512036024 1.3797369429523438e-05 844250.9790525725 118.67046084211555 25020 4315 1251833 NEO_20190401 655640985.2255282 159775.01933602418 10.089009431168542 0.002458616960161372 220894951.76899576 53830.465571324 318936 97724 185739 AUCTION_20210724 76356484.27605942 2284.304690335094 16.675694809367744 0.0004987143726394291 5170134.562687237 154.6214682127392 45583 None 56782 FTM_20210703 578020263.097412 17101.075013604477 0.22759442160967408 6.7190028555794995e-06 45755854.55293038 1350.7963649823996 100584 8972 43795 WAN_20190430 35541438.665647246 6827.528764373881 0.33484443259624086 6.430835202972104e-05 2713665.1580598676 521.1713777715106 109257 17131 455982 LTC_20190522 5658312828.363383 711028.0943977982 91.37524183235016 0.011483542686674368 3735104325.0332394 469407.5670343764 444660 202879 194516 RCN_20200913 25929013.28046742 2486.6041870424474 0.05060088833708678 4.845926175557289e-06 329901.6362116439 31.593891467424452 None 1136 1085396 REQ_20190811 9285978.347356895 819.5507522873176 0.012713066718691338 1.122915560093952e-06 200446.8268759342 17.70500114968444 41373 29598 541329 MTL_20191108 19404658.378019165 2104.854413726465 0.3605531033259609 3.91090531666929e-05 6530060.408987025 708.3130816541816 None None 239021 TNT_20190708 29505151.185544852 2580.03130201266 0.06886822762385836 6.021358048212007e-06 6376824.255090476 557.5450882827784 17603 2539 678101 CTK_20211011 102834722.24026111 1879.4612485647604 1.8110334165987403 3.3100066861283876e-05 7056810.508508474 128.9765818334396 None None 106519 YOYO_20191203 2197934.79482343 300.62828057649693 0.012559111548103187 1.718572460551437e-06 494743.5820878158 67.70006715475856 7516 None 1285347 ADX_20210519 118066398.37188591 2769.8627034776314 0.9883412527376068 2.3101323346773118e-05 1649345.8792070185 38.55153507018976 58529 3825 10793 DOCK_20210711 54114233.53039885 1604.7854901294222 0.0783536204290061 2.3235829072593996e-06 10246287.561089857 303.8544806156699 None 15135 237761 UNI_20210519 18180660856.575863 424769.558495523 35.231647792055035 0.0008234986503188783 1070183144.2233391 25014.282047309487 490614 43350 1386 WTC_20210107 9439464.34376198 257.5348817065661 0.3239155907555141 8.794496420867052e-06 3873816.5529348995 105.17636934492496 54798 19152 816491 DOGE_20190930 267453320.9467537 33167.630842050574 0.0022415801087572133 2.781542709414483e-07 65087519.69597859 8076.611457111648 138209 141450 96250 FUN_20190730 17021945.485986196 1793.3869647864522 0.0028385969528251197 2.984244166931422e-07 250493.77494065388 26.334650503140058 36102 17504 408436 ARK_20210422 302058429.0173413 5584.570050390725 1.9266696814958584 3.562099503490396e-05 8225860.185063881 152.08280258112558 71969 22741 73958 VET_20190813 282371741.5190214 24810.800375588562 0.005091438244419717 4.474148604484189e-07 34639307.26766431 3043.9612705070313 113467 57288 138282 ANKR_20200318 4591050.9397857115 845.4299586748224 0.0011443266045050402 2.1275373275562407e-07 1576058.2942602546 293.02148864166696 None None 5425 TFUEL_20190804 0.0 0.0 0.006662407211596211 6.171747200358391e-07 779056.6943665034 72.16822418191657 70420 4019 242693 POLY_20211202 681260064.4126296 11916.808101241446 0.7580144521903215 1.3256025768506015e-05 25371576.18974241 443.6937406496764 62996 8427 124612 QLC_20190523 10432623.53559181 1360.7039729493504 0.043449211816016076 5.669504035811253e-06 3903674.7093325695 509.37401609888695 24991 5804 940522 BTG_20190915 179718850.44020984 17361.55389280924 10.255993971564456 0.0009910979750938735 12153276.245621592 1174.4436971382763 75035 None 255203 GVT_20200913 7651397.803957253 733.7858111832236 1.7303034725859914 0.00016570777209105224 207229.39833321093 19.84595329872634 20780 5499 155510 RDN_20200612 12120576.60918472 1306.3127823727707 0.18172654381256304 1.9541294433651588e-05 1880794.1863898572 202.24427425006465 25255 4310 1725009 COTI_20210107 29022253.18556365 790.017964187753 0.05065923234676134 1.3719712484573527e-06 10181688.992955668 275.74410254487236 35071 1273 237911 CELO_20210724 301343591.2541682 9013.721981245833 2.3997625527401176 7.176455370254021e-05 13947629.188871903 417.10184318236276 34644 None 78180 WTC_20220105 27397576.879530847 591.5250285181095 0.932268093129338 2.02939956986092e-05 6164215.378708734 134.1851783867288 67826 20380 402204 POA_20190419 9435559.543545086 1788.8855470695305 0.04288861210828422 8.126187609534148e-06 1210214.0900768067 229.30158520485685 17354 None 757661 RVN_20190511 159631359.3234096 25050.763504451683 0.04557917639022142 7.154385960069594e-06 32952656.513605416 5172.450267410134 24008 6416 171456 STEEM_20190414 130743553.89911 25772.69158529441 0.4267932172139272 8.411013567490666e-05 1240472.4390464257 244.465705969454 5196 3708 263510 MTL_20210602 143489738.84087378 3910.6494345558526 2.2217744522475873 6.0568664011112825e-05 12814642.41278473 349.3449886136422 None 4138 163728 GTO_20210823 33762910.454468355 684.3733777231154 0.05095955737325287 1.0343057056787892e-06 6700195.962331112 135.99119125478174 13445 None 734299 HNT_20211120 4598246831.695898 79111.21961857163 46.04758483443974 0.0007894938250805399 42459311.18245285 727.972251231914 118928 70215 2229 VIDT_20210207 25959819.405401997 662.0288619501454 0.5611586631299038 1.427031692773446e-05 4583324.836772813 116.55437633039625 24957 1247 None XVG_20200418 46098035.789121754 6548.0826841127955 0.002840867397402098 4.035363827189147e-07 1284702.5699110061 182.48800644678698 293830 52052 294741 FUEL_20200423 1760220.7753512554 247.48013941797657 0.001777558357112335 2.5e-07 11012.040929607478 1.54875941 1 1466 None IOST_20190906 86374331.45586897 8172.375220162565 0.007188653212792991 6.801289320660087e-07 16172434.744285315 1530.0975643064073 195902 50754 94352 WRX_20200914 24746920.115265153 2397.5424385543756 0.10825993602575286 1.0482977720349409e-05 4483691.754309861 434.16283521693276 None None 17152 QTUM_20190523 275303806.2310717 35907.26547629106 2.8706265056250597 0.00037457592160391713 268658693.02719414 35056.137515755625 177458 15299 449132 MANA_20210506 1875498772.5154283 32750.75225249327 1.4159945471198538 2.469994952481081e-05 242833255.62994605 4235.870236368547 126739 30782 10949 DOCK_20190901 3704310.165087524 385.9133717110764 0.006694812982493317 6.97618592665808e-07 3594396.0453856383 374.54631178235127 None 15184 184011 POA_20210112 6120467.8135970635 172.88128246763932 0.021634777384439922 6.099971641338032e-07 228003.7294044944 6.428613795152907 18159 None 255706 FET_20200707 19818823.604029585 2123.1113180704087 0.031223533876297664 3.3433231435778277e-06 3756261.00365602 402.209256536953 17738 428 786167 NBS_20210710 0.0 0.0 0.011986405045821186 3.527055607882453e-07 3547490.1586455777 104.38655301675142 None None 626214 GTO_20210509 52805084.64219739 900.4828271716854 0.08069355952530838 1.3741857297670899e-06 14965500.533342639 254.85772833321587 2162 None 267517 POLY_20210117 77654319.67324229 2139.84544873412 0.10368368107678108 2.8650228420386926e-06 6254527.860496708 172.82724726199294 35893 5028 305151 DIA_20210509 182978441.05128703 3120.3234503985814 4.407158728178261 7.50250484482327e-05 34715658.35172437 590.9802914738738 None 370 348922 TOMO_20191017 21032867.836253047 2626.847390430815 0.32490514027420114 4.058189970963102e-05 578841.5669284088 72.29953455654702 17552 1337 283886 CVC_20190806 16423421.236836005 1390.495165672919 0.0538115198154949 4.559031676400975e-06 5160768.167298408 437.2317605959977 None 8140 266707 SUSD_20210220 257870775.91423088 4616.22579498241 1.0278037689554378 1.8385871930513784e-05 20204812.430130813 361.43386990882345 84767 4869 30058 ENJ_20200105 68717676.36094187 9350.987606616814 0.07725047742537683 1.0505867879979238e-05 3598063.7685461 489.3274946112882 49971 14243 25300 APPC_20191127 3217946.7333330046 449.1061353838072 0.029209497077420744 4.081345312559158e-06 367905.06524099386 51.406144019124994 25099 3264 895295 AION_20190804 32164957.519566953 2981.0013584514368 0.09569819932870953 8.867569094635291e-06 813614.0386437833 75.39095567783141 67560 72599 199411 ARK_20190524 87076664.97654219 11046.658086172025 0.6131185301726984 7.796369986440449e-05 1380111.6997465098 175.4939853278982 63467 21721 215073 ZIL_20190813 83466666.6085364 7333.892725717094 0.008736752866857732 7.676612048513229e-07 13671975.605459418 1201.2981740388489 65952 10610 160236 SAND_20210509 388417375.6988709 6623.358228655498 0.5534780728414707 9.422106575029218e-06 62872199.90508142 1070.3017828167754 111773 None 21212 NEO_20190430 613384264.2612028 117852.7832465761 9.414043140507086 0.0018087539251552037 298269142.51115036 57307.521775458976 320710 97627 201868 EOS_20191113 3585757507.927378 407716.7451462534 3.47819377517331 0.00039522797463855297 2609582024.517148 296527.41763983405 1343 69046 87264 APPC_20200430 3313583.6512276563 379.54039444355703 0.03055612191282889 3.485218028209772e-06 152904.73601279772 17.440247950009635 24696 3212 778214 NMR_20211207 214901989.25185123 4257.647908744727 36.462961598607144 0.0007225000086620718 42144788.83111068 835.083299890314 None 3743 3047444 XMR_20211125 4403711783.430862 76989.38573582284 244.1743792681995 0.004268861450700718 243192017.7819316 4251.686982634287 457019 243160 34214 ETH_20190816 20166571469.133984 1959651.7398750996 188.15278116773473 0.018262947982472296 9569868633.162851 928894.1250926213 447703 444679 27728 AERGO_20210809 52484967.99582879 1193.0479702957678 0.20038861726451848 4.55634610828043e-06 24847997.63283981 564.9825766475681 21523 None 411041 LRC_20190716 37812923.86028603 3458.1598438165784 0.03922168697384166 3.5908373770078087e-06 4641263.893301145 424.9185884262883 34843 2455 709028 GO_20190929 7423868.991392539 905.2543768657239 0.009389037451140473 1.144883787288765e-06 466070.5823872972 56.83188040139662 10266 686 748628 AST_20190131 4355425.192656371 1259.3855091947046 0.026142054218411804 7.559060896915658e-06 244377.99630810088 70.66270081630144 30419 3593 376884 CHR_20210207 18302078.173338607 466.74068856952925 0.04085380671363731 1.039322891892682e-06 6132818.478764379 156.01920970254628 39288 None 474695 RCN_20190318 12018400.73826806 3018.0014162150687 0.02400748390172497 6.028640747887698e-06 1657978.1171027268 416.3432734887075 18447 1112 1862328 AE_20200629 46814674.10503304 5133.278975042094 0.13059957984948067 1.430951853306805e-05 7331992.21988143 803.350812273852 25414 6345 480616 BAR_20210806 62976728.293530256 1536.3678423095203 21.308264082074256 0.0005207820257085582 16906256.344597932 413.1952932615806 None None 44064 ARDR_20190920 60151033.374967486 5872.965406211637 0.06024878289939333 5.878714441030083e-06 1691401.6219436324 165.03681339265458 66861 6528 1028714 RLC_20210727 182242682.7852408 4867.802171276057 2.546437186616239 6.82440434314293e-05 23758011.814198866 636.7103019914163 45943 7735 149507 WAVES_20210620 1608993585.056443 45134.18609736145 16.06484963973013 0.00045121400281200347 128391865.34563252 3606.146885298566 192991 59048 97299 OAX_20200320 1446019.0028682342 233.64716118921245 0.027804294140893426 4.504162284452309e-06 146731.49183323706 23.769797863153084 12030 None None TKO_20211028 137136834.34181184 2343.097589499876 1.8293578578438763 3.12368402329187e-05 36452116.931009 622.4309518464786 None None 32245 ELF_20190726 58523251.98201989 5909.137305000646 0.12691966922806852 1.2822172908414785e-05 19550933.32561171 1975.1504959519914 86375 33443 1184009 ZRX_20210401 1428881407.14078 24293.639433662116 1.8819784330641827 3.2027336475867104e-05 490819143.3772397 8352.715194586724 None 18674 55682 BEL_20210523 46025094.97092254 1224.5907926757109 1.4512890965600866 3.864325977976114e-05 9762779.019012539 259.95207067862344 None None 396046 NBS_20210523 0.0 0.0 0.011948723287397245 3.1815688488655043e-07 2155780.2874424593 57.4016423558778 None None 482747 DOT_20210427 32971528339.239906 612025.1933791152 33.46053388171351 0.0006207187226021641 2073188240.1405542 38459.24158541768 None 23058 15695 SCRT_20220115 1341345531.6763217 31120.741529054143 8.503109656917795 0.00019714840115195062 63983349.77952174 1483.4825867635725 None None 52790 QKC_20200310 12447164.933601044 1572.158761619312 0.003335865875870071 4.2091998217047827e-07 7876463.584178274 993.8531807889361 50449 9198 398743 THETA_20210110 2056654510.721088 50824.68027170782 2.0566287663659306 5.088775039313887e-05 147946208.05793118 3660.6750962481865 None 4875 64313 NULS_20210221 72558146.28322361 1293.9303167926362 0.6525758920248641 1.1605993236386317e-05 45784550.15750873 814.2733832999 39669 5141 599020 ASR_20210212 0.0 0.0 6.275644843285827 0.00013143765129698714 2667791.441821695 55.87445593553581 1943483 None 183417 ONT_20200207 546694945.5755528 56132.94069713825 0.858222535258765 8.813176451806145e-05 127832516.57550718 13127.254046279397 81758 16267 309416 ONT_20200412 258073254.81643552 37505.13622527192 0.4051788683054324 5.887077128505217e-05 80629179.22367424 11715.077809537297 84085 16509 252464 ARDR_20210124 83254730.83527187 2602.7010975910257 0.08363644292149804 2.609754340966681e-06 7658885.889229528 238.98446655778955 64443 6298 None APPC_20210420 22571162.52791825 403.23301328966187 0.20031929349235228 3.5819896546701887e-06 2222223.1076024626 39.736462938877885 24834 3139 715817 ENG_20200310 16918393.006699905 2136.905697005088 0.20537354679003036 2.5914060357897455e-05 1173180.0048860386 148.0320028186369 61367 3608 363885 CELR_20210201 33958783.244757175 1027.5511597095115 0.008576895170000197 2.594058008449044e-07 8062566.170942749 243.850063803262 27760 None 412914 IOTX_20210221 153381910.7334775 2745.1598678991463 0.02525134812017994 4.504481596698376e-07 36323779.43975806 647.9645967027091 None 2196 483474 BNT_20190105 42677283.23581168 11200.884195973053 0.6842111384524493 0.00017957919085058495 743248.064174195 195.07412034763524 865 5096 104600 GVT_20200520 3555260.962398305 364.4775800571053 0.8019292217989797 8.214512065618693e-05 169301.39685529494 17.34228320142864 20380 5549 249419 SUN_20201229 0.0 0.0 0.00021390186887775708 7.9e-09 0.05119390234878829 1.890735367004e-06 42 None None ACM_20210704 12167162.315772835 351.16216436205184 6.100588842301379 0.0001759487931311677 2775321.5158703676 80.04382591437565 None None 41859 EOS_20200224 4225650770.467659 424728.7532828713 4.377998051555368 0.0004402676418046408 3424661692.499422 344396.6190893454 1458 70193 90022 STMX_20200905 19375939.100357436 1847.9230401620378 0.0024323600083698475 2.3197916127597918e-07 1774297.9273931389 169.21843133172558 21334 116 160167 CLV_20211011 152839537.7279306 2793.656841664119 1.1868354482534023 2.169319988749739e-05 40312732.77433458 736.8436554299728 74239 None 89370 REQ_20211125 158480741.9780402 2770.282007121115 0.20493854703702896 3.582907698305458e-06 7525267.226578405 131.5630381288977 48173 29858 298341 BTG_20210814 1090526423.33752 22861.838469002316 62.28041639517086 0.0013053317643845616 54694975.724309795 1146.3489375565566 101395 None 198666 XVG_20190318 111318163.92250879 27953.667354331104 0.00706080871027156 1.7731628611160186e-06 1632989.3548258329 410.0884467189611 304972 53301 418037 OAX_20191220 2577902.832318838 360.89045513728007 0.050041943851865424 7.00314126401041e-06 256960.23252634608 35.96040979027402 12155 None None ALPHA_20210703 127001449.61436279 3755.415591312485 0.4456219392968723 1.3160198548477646e-05 18820244.27910152 555.8033157762098 68915 None 51351 CITY_20211207 39722034.82161703 786.8706352889096 10.425732118953528 0.0002065767745261639 10947151.123778481 216.90823662056812 None None 33797 PERP_20210704 342998353.1835539 9894.026362638035 7.946100855410495 0.0002291557622407716 24948154.325931057 719.4740445770235 22653 None 159386 ELF_20190221 46914304.71994377 11828.867726636958 0.14181784622891663 3.573327791791523e-05 14764246.769141944 3720.08845909873 86003 31250 1006337 XRP_20211216 39175910677.259605 802447.4848672444 0.8291672579272524 1.6983987587153037e-05 3907096831.805005 80029.79309513827 2303170 341141 18381 QNT_20210821 2493714514.2384887 50755.32174959756 190.91414242707378 0.00388334684892701 49051217.1587026 997.7411163347613 40138 6312 134103 VET_20210110 1903362137.1724617 47036.47188129201 0.02908476529501204 7.215281182767842e-07 395836024.5248119 9819.808378186615 None 71094 134055 BNT_20210131 216735836.16892272 6335.648210253795 1.9211434599064168 5.6232210868439897e-05 61112223.12541854 1788.765643558489 91370 5360 79308 BLZ_20190201 7463754.144310821 2175.249310691461 0.036851237115843684 1.0739987757430124e-05 295515.40884697257 86.12551766366339 34825 None 995474 QLC_20210324 28673391.721798703 525.6653689624465 0.11936734725846605 2.1897465277368343e-06 2861375.855665886 52.49080245477263 32407 5629 940522 KEY_20190920 4030837.9286533063 393.09702100603647 0.0015417563796288332 1.503557946701244e-07 178957.73716660793 17.452389456322756 23737 2814 575319 XVS_20201030 10872458.303698001 807.6349169372869 2.94619445871618 0.00021910248680440472 9088100.41026079 675.8635345081591 11054 None 309906 GO_20200412 6535455.549751648 949.781297027431 0.007305159622314881 1.0615177419045365e-06 1038141.8541284265 150.85310297734318 10707 678 675555 RENBTC_20210314 787597097.4982568 12838.06842452418 61300.34885573575 0.9992609273320228 12020358.623799155 195.94463864388158 59700 4268 64010 LUN_20190414 7178191.0865776595 1414.6396939804754 2.6596809912686075 0.0005242992200227254 1525138.9851722403 300.64853002188494 31823 2243 1417813 SYS_20201124 46834961.06966857 2557.3368497632823 0.07774365305926939 4.236144454073674e-06 1425706.5745333063 77.68478533213909 60975 4486 330848 CVC_20210902 235565950.8330063 4842.633016583205 0.3519583801272558 7.234069049758197e-06 35597663.98143216 731.6659406111081 None 9868 249289 CELR_20210614 198010468.73472044 5087.516983882152 0.03522831438969603 9.024207849677137e-07 35085655.63241826 898.7663884984128 55781 None 140975 YOYO_20210506 6390984.018216079 111.56089553414725 0.036560924200484034 6.379334996598902e-07 1362395.2904110572 23.771762189769035 9865 None 873930 UMA_20211204 772819893.6534653 14393.517074239246 12.088446018271355 0.0002254307888083038 27298926.27887861 509.0826790611223 50988 None 201960 ENJ_20190312 137339059.88781387 35520.17448888523 0.16031100736047804 4.1513165890881544e-05 147636341.45646566 38231.01130307073 41453 11872 17990 ELF_20210220 147562263.6448835 2642.146658659396 0.31931684716376235 5.7074415309731e-06 192129085.74294117 3434.098554514344 82742 33322 415664 BAT_20190712 366668435.3648449 32402.221162551825 0.2899905096423629 2.5553725256947862e-05 38833214.66786632 3421.9509448448866 103929 28654 46382 KNC_20211221 115154348.90001112 2443.3535267288717 1.2468754484040183 2.645629586160863e-05 23177348.485066243 491.77870138784823 199743 12202 89231 POLY_20200312 15446276.274625868 1947.4052516383608 0.02550799036778802 3.213328214586831e-06 6865239.8686412405 864.8375921322842 35026 5003 364083 FET_20200109 12513093.499798527 1554.9314217449692 0.036773662016741704 4.582796058751901e-06 5693488.618352106 709.5321969526469 16375 341 374290 NBS_20201224 0.0 0.0 0.01053439060585721 4.5181938330087136e-07 7361598.415883724 315.7385159540134 None None 802802 TCT_20200318 2648032.1699456978 487.7692665829691 0.004514955354876512 8.394225924603507e-07 327160.89524923236 60.825905298297485 26 None 409993 ICX_20200321 106220607.31632444 17182.053550188215 0.20226122916599695 3.262018994555789e-05 27890388.855402738 4498.092817244962 113248 27507 126672 BEL_20210506 131590944.51133703 2298.6247125894374 4.182199853638558 7.302927587584877e-05 24608985.511835214 429.72035169601406 None None 339562 WABI_20201224 3704401.7787875896 158.4145377450876 0.0622597079278726 2.669874944758759e-06 715411.4678009477 30.67889678004316 40909 7493 1416175 MITH_20190507 19282262.666984227 3370.768329591943 0.0373851391402436 6.537775842293543e-06 6658585.353582115 1164.428954114496 74 2032 435662 COTI_20220105 349854256.6171657 7553.964555990467 0.3962943200159828 8.613052292596838e-06 44401939.660347454 965.0308088490347 215777 10012 83565 ZEC_20191030 303062623.54225916 32206.865752917973 39.156870894029595 0.0041617149286637765 276882254.6038113 29427.91357320799 148 15347 189800 STORJ_20190314 33978202.43930247 8788.078023509317 0.25068610921117607 6.48472156892605e-05 4468430.678673462 1155.8888879971828 83109 7631 219991 WAXP_20211104 831393300.560921 13206.234014481708 0.45971399286771136 7.294259235918647e-06 132060012.70767921 2095.389703888607 None 5300 4134 FTM_20210107 61195992.046045415 1669.597129513948 0.024287429551838085 6.58028728607911e-07 14450945.555024806 391.5250607504268 28523 2842 142400 CAKE_20210428 5679183215.047925 103089.32302176354 35.87105322357322 0.0006509514132258504 841648989.99297 15273.390386987312 477792 None 2459 ATM_20210725 25146097.77485779 736.0058938951757 13.326107205618394 0.00039004435335571956 18910694.5328331 553.5006965467487 5011622 None 94240 QSP_20190523 0.0 0.0 0.029420072937563876 3.836566871146971e-06 4313971.884159313 562.5697002502259 57078 8611 772894 POA_20210408 32424744.216608103 575.644945844103 0.11297206376916326 2.010428548530954e-06 1852093.8083710119 32.959495849476234 19365 None 365851 GXS_20200523 31759612.5618808 3469.4860677604483 0.4877649725511815 5.337702242913773e-05 18489911.58209748 2023.3851973182245 None None 497565 CHR_20200607 7513918.83744858 776.3360690757361 0.02270272395447756 2.347865276176579e-06 2052463.077062146 212.26117178411687 14223 None 533180 BRD_20211221 62348689.12052457 1321.5437785074575 0.7268197111807598 1.541645926289673e-05 5443325.674320849 115.4575298687478 1104 None None REN_20181229 15978461.369260175 4154.4965743712255 0.02137636631445246 5.553098475166424e-06 350073.7854087086 90.9412841898444 5335 756 716747 KNC_20210513 408196209.5612633 8137.511320700447 2.9520467814299414 5.884991957407709e-05 203010061.3530954 4047.065195074942 162041 10743 105580 ADA_20190213 1297644168.2918518 357455.31687350624 0.04172181557351035 1.1481904082860548e-05 27814367.31660506 7654.554176627851 147815 71180 104586 CVC_20200423 12599643.69629763 1771.0438731904485 0.01880543835268303 2.6433490644633557e-06 7680638.4697255585 1079.6136805039525 None 8042 107790 STMX_20210509 434064309.3290992 7401.737395984655 0.051551148267634225 8.778997074763094e-07 30420242.539170273 518.0470837981889 61002 4215 55160 XRP_20190818 11401791011.938265 1115462.2880638433 0.26574470528445515 2.600025807216686e-05 1729599062.0181088 169222.64519141524 937532 204645 32072 THETA_20190625 132367770.8742417 11985.38204984487 0.13228460963548222 1.1978049470434262e-05 5079841.543157256 459.96728926797294 None 3997 231431 LEND_20201018 144395557.1040453 12711.653385560958 0.4109236531250757 3.61573138833154e-05 1156721.8518196018 101.78035446209991 72099 1438 13793 DCR_20190312 158832072.25246382 41078.93941787011 16.72579083136887 0.004331209321625031 3178244.6015121876 823.018940225944 39863 9377 242491 WRX_20210702 492443019.54172105 14646.562089747773 1.1289618267964967 3.356732086776351e-05 11158315.562008135 331.769197083049 282128 None 1268 DOT_20210916 37410339125.7701 776269.7248561404 36.32933883533318 0.0007537505892616418 1625848750.932562 33732.6385052139 620021 30057 27536 QLC_20201115 3875969.2865380896 240.8058977976492 0.01613935514842314 1.0033130773234447e-06 985423.0486895307 61.2594383328098 27477 5610 940522 ARDR_20200610 50866977.79512394 5203.6702768212035 0.05097056210516468 5.217192853325503e-06 3076638.002353837 314.91537733156866 63297 6309 2127258 REN_20190316 15516275.130312702 3954.1108168401734 0.02059037998258647 5.246945918080199e-06 466970.3173620895 118.99576416849844 5757 804 2336942 NEO_20210825 3960094939.9767866 82407.94301909329 56.068526234128 0.0011675008723161123 777655730.677542 16192.930417618532 411046 112880 110676 BEAM_20211204 84833226.31540304 1579.9910192025645 0.8425664039785956 1.571255799009906e-05 211033016.66037086 3935.438793244187 30560 2924 266564 MIR_20210902 316044921.02042353 6498.2693566934195 4.06981089187045 8.364589598293576e-05 48009211.81010672 986.7223917731721 58934 None 15699 CND_20200612 12889567.72285397 1389.1121949415199 0.006696706632936105 7.199676219107837e-07 125942.55291278595 13.540172100720525 34407 5940 343900 BADGER_20211225 166812633.40208563 3281.8536917397673 16.755871016855828 0.00032957967568793647 11687615.223593498 229.88959697065908 None None None TFUEL_20200320 0.0 0.0 0.0016656513187292715 2.6950571819467873e-07 559029.2277725914 90.45204829400242 68362 4026 384607 DCR_20190324 179454373.25066438 44809.06974506569 18.862136532651302 0.0047105505078554695 1848436.0364377387 461.6206279234394 40176 9399 241098 DIA_20201018 32610948.682628 2869.783494265383 1.2764192082503738 0.00011232455276102734 5549443.709346637 488.3495788027876 15582 166 85637 LEND_20200324 27207111.427611407 4223.2281762842695 0.023461700481146434 3.620716303854828e-06 1688718.5284996107 260.61072229925173 44135 5739 109064 BCPT_20200421 1741630.3820157608 254.33610755110988 0.014991191016053963 2.1895575989079625e-06 91587.41269721092 13.3769168320746 10612 3167 1977022 CELO_20210204 289530108.7730863 7725.729728201406 2.9643604023506755 7.902998910779874e-05 33720413.52691461 898.9878260515499 None None 140742 CVC_20200315 11021326.597823009 2132.2347155246307 0.016567536478646915 3.1976862225871112e-06 4829056.296505345 932.052077104817 86659 8070 106398 LUN_20200329 1549910.7797175134 249.48360948164984 0.5733935791527415 9.171263879388975e-05 2090621.340116475 334.38881562680524 29505 2147 2364106 BQX_20210724 422292098.74859506 12633.646841652087 1.9000260868467027 5.683274480707721e-05 1781970.0628443398 53.30150493015556 None 6313 24773 ETC_20190901 709407807.3029948 73922.31529857316 6.2702165412795745 0.0006534527976396501 873933953.1250507 91077.33088039458 229935 24942 350041 AMB_20200317 908650.3164744723 180.02895480283976 0.006241878187462154 1.2412189709364697e-06 144703.39686272605 28.774768739597974 19104 5499 780586 WAVES_20200502 107678618.2172693 12151.80424744631 1.0752206065623753 0.00012166639430325576 36519127.543488726 4132.315307388255 74 56844 74379 LTC_20210814 12256846299.426054 257241.0838697412 183.51082956106092 0.003844030060670184 2851759419.0041957 59736.25076335845 190216 340222 80775 FET_20211120 499520557.31973606 8593.12837536185 0.7274609985602308 1.2471252055178852e-05 57444056.962364845 984.7941193652716 86577 6712 68010 ENJ_20211204 2912075719.028203 54230.406989695264 3.109500416245781 5.798736500742342e-05 345199095.82786024 6437.428297298696 403897 42695 16030 FOR_20210128 11336668.343543062 374.5579152465296 0.01993627914361684 6.556451212604992e-07 5265312.986201626 173.1605354461521 16788 None 247763 XRP_20201018 10900012046.55129 959112.7612227285 0.24089456466337247 2.1196770250445347e-05 1001465502.6832975 88120.85155922268 973172 218804 20197 NXS_20191102 21153364.58517654 2286.7872859009462 0.35428091668119915 3.829958551707803e-05 91494.74105985607 9.891051125223726 22158 3541 319693 ALPHA_20210826 475245051.79347456 9695.724407302496 1.168959260244427 2.385428718280942e-05 156862402.79397634 3201.0018926156818 73778 None 63427 YFI_20210314 1384474749.7068987 22567.35280668361 38321.86375265333 0.6246208817568198 345595812.6970332 5632.9818051539705 96814 3780 21151 LSK_20211230 359448522.19580394 7732.402852767669 2.4909081024681683 5.35308464120782e-05 9038268.284723084 194.23685317866995 203286 33706 225551 FTM_20200914 66980626.25989158 6488.855723307021 0.026857023746654912 2.6006073151946567e-06 8720909.03036655 844.4591639586712 25450 2676 147748 BRD_20190903 15373175.253098028 1489.1175625284634 0.25547700257663397 2.4728072601102384e-05 145932.88994542515 14.125103477275587 None None None BAT_20211002 1013224255.1564252 21041.513395571816 0.6799800292677013 1.4118682496084966e-05 90094079.85500497 1870.6574509542872 213798 79797 25671 WABI_20211002 12244645.747635866 254.35433133095768 0.2074880902298395 4.307654939434894e-06 3019080.20803636 62.67904705417952 45288 7891 847605 TRX_20200531 1074220048.5416143 110955.24082807364 0.016268951028373706 1.6787747355963322e-06 1533761388.5189612 158267.11046017395 508810 72901 67624 BNT_20191113 22014770.767500293 2501.3964989758942 0.31662125784731204 3.598063802667943e-05 8325079.998832214 946.0567872722625 765 5080 171240 CND_20190124 18619270.290407922 5241.002759021535 0.011305346373682008 3.1822595951403102e-06 281500.62284764036 79.23755968948025 37126 6263 440166 ZRX_20220115 635561975.863394 14745.760513937817 0.7510384908502394 1.7413628842149787e-05 40234862.39125943 932.8882190887243 251828 20917 60955 TFUEL_20191203 0.0 0.0 0.0028716960326995718 3.9305762329560964e-07 277202.2727587677 37.94150399695219 69037 4024 468336 AST_20200309 2992110.2259052834 370.3795925817751 0.017014089230617126 2.1149774861270943e-06 6242144.136525395 775.9448146160101 31804 3484 336261 DASH_20210401 2233762630.8145556 38013.96770941427 222.12897964169713 0.0037801706156868837 1023510994.9987482 17418.016300113733 385063 39055 47814 CFX_20210710 211640984.90790954 6240.034841114611 0.2486697530124341 7.317223500460828e-06 2190220.2058015973 64.44825141348913 37085 None 151953 POLY_20190816 19502727.531661946 1895.0228503090382 0.03929192916768012 3.818125330542372e-06 2164814.6645960035 210.36212479031113 35257 5068 281069 ALGO_20210727 2670929412.8227406 71301.09998203586 0.8499005941365424 2.2709184367521283e-05 286685690.50141364 7660.187845545624 117227 36176 209093 MOVR_20211202 709604670.6849016 12414.998889296321 291.28057817970415 0.0050951256894550346 70237787.72042224 1228.6104306069674 81492 6281 15099 ZIL_20190426 154212645.96316785 29708.670973227196 0.017626735875622475 3.3939688094350305e-06 16020163.869345773 3084.6287638423846 60141 10186 186514 REQ_20210429 101043575.92809853 1845.9968039398038 0.13092908343000526 2.391102251352069e-06 1203329.7171589488 21.975899627799716 42778 27545 383830 CELR_20190410 36065203.71707086 6969.559643748528 0.018043318312175732 3.490458336831132e-06 37992339.63793801 7349.57264127376 11807 None 421658 LTC_20210610 11530249363.662664 307179.0537472791 172.68540133195464 0.00460267098959323 4624100106.642941 123248.46946909848 185797 335843 88308 PAXG_20210217 126777838.2190261 2578.214430525738 1819.4925893461068 0.03697728927548537 6130807.703612868 124.59553354396422 15153 None 57778 WAN_20210427 271906448.0926208 5047.190860026443 1.5545459729315556 2.8847818420903514e-05 16267175.593812805 301.8711160187261 117459 16320 185285 REQ_20210201 29513617.17924146 893.0458827447593 0.03859794118137714 1.1642728620691463e-06 1186848.6602898743 35.80024333591468 39570 27138 458949 COS_20190830 28533058.759504773 3003.961240450586 0.02172651163622293 2.2894925146621e-06 1185464.6174965715 124.92168156576689 9283 None 257237 REP_20190221 154844802.96755767 38998.22715987198 14.076800269777973 0.00354529337817018 2132808.870336144 537.1556760053837 122273 9776 236100 TCT_20210722 10750231.618606117 334.3633969533742 0.018652850897066912 5.779685100350389e-07 1813077.4622298393 56.17916988699396 None None 514683 PAXG_20211125 314716054.6402465 5504.673413731337 1793.072705243455 0.03134800208219191 5061456.023780986 88.48862263555907 26891 None 38197 FIO_20210120 16671226.068813885 460.3678486268876 0.07811578404177666 2.153025529563065e-06 1579944.951615125 43.54640816652909 55545 163 523991 NANO_20210408 700801683.3260627 12442.102864665654 5.258694699178265 9.350842511458823e-05 69142420.5573203 1229.4683804206866 113586 81654 65889 XEM_20200621 401898344.8610671 42959.541709291414 0.04472959490108275 4.778734383246607e-06 12717574.691767499 1358.6957714563407 208632 17875 219464 DOCK_20190524 8638895.65327605 1096.6316801127393 0.016775260896289376 2.1331297967735508e-06 13950065.013012826 1773.8799730243286 168 15272 233199 NEO_20190221 591169000.8409264 149026.5760158262 9.111349411548444 0.0022957268896475827 216120335.33012116 54454.42193097631 316108 97930 150509 SKY_20201124 8419154.612544624 459.7124422178417 0.4442716697886987 2.419883227849322e-05 334606.8479930472 18.2255487901583 17140 3810 936289 BLZ_20200301 4361677.179583414 509.0486229274217 0.02017852906294329 2.355455945834964e-06 239123.43131760773 27.913070686598473 36177 None 543870 GNO_20211204 642584351.8958538 11968.842250310614 427.1238013693345 0.007965197124258602 3315823.0306369653 61.83496209648643 91299 2401 141994 ARK_20201224 52438658.494880356 2242.479715080418 0.34086993686066064 1.4617481098692256e-05 2624748.609863705 112.55675272174285 62951 21621 103800 ADX_20210809 60820231.340595745 1381.9970423024452 0.4901204624530733 1.1141925826888182e-05 21196846.141511083 481.868653862396 92574 3891 14822 MATIC_20200113 38163919.757122084 4681.343931664136 0.0149737028279832 1.8334929175637762e-06 6905039.184228297 845.5049886607208 28519 1417 155878 WAVES_20210325 1097840611.148571 20769.0779871619 10.859911938205107 0.00020612719864466505 315367535.3548472 5985.852093098186 167896 57801 97613 WAXP_20211021 532001339.8025298 8025.986672542341 0.30285296334961476 4.587162237106171e-06 69390892.41814213 1051.0291125404747 162883 5171 4564 ALGO_20190804 146841706.48570368 13609.079913441687 0.74332511269038 6.887699977084528e-05 121187138.53531434 11229.280930540888 10877 528 241883 TFUEL_20210916 1747330198.8286872 36256.62013214586 0.3293271905650039 6.833120609270413e-06 61279256.08795613 1271.46667415159 196736 23685 23104 KNC_20190419 44700942.917454146 8474.841407801638 0.2693721351331818 5.103994596890778e-05 4794726.2902581105 908.4925234359557 96028 6658 249884 CMT_20210127 9007689.845059345 276.39984165277167 0.011269117525633414 3.459783717981912e-07 3445302.435237823 105.77581822041786 280278 1629 1294863 SKY_20210729 19634515.574880205 491.11376341478746 0.9348865975861427 2.3365209774847406e-05 594359.0409682761 14.854554241827477 19651 4412 638153 STEEM_20211204 233609210.57857835 4351.229190977501 0.5807153184228397 1.0806034094277362e-05 31381668.07408744 583.9545890831229 14871 3945 181404 BQX_20190902 11460917.911459848 1178.4337696480763 0.08149388078736149 8.378310941520526e-06 142198.15465024576 14.619261513374235 60398 5755 423715 BCH_20210710 9493856587.519743 279341.19650917273 506.43482884077474 0.014901731192429662 3563636303.1002884 104859.19852301573 None 584106 271205 NAS_20190507 43497647.60275917 7603.630223690315 0.9562176519466628 0.0001671581926377053 2787777.861678717 487.3366517392155 24133 5182 484793 QKC_20190131 47238421.289589986 13659.144771824333 0.02990309890236496 8.646579328500872e-06 3384845.2037106073 978.7391154387941 33894 8497 207640 CHR_20200629 9463930.899587464 1037.7301228052474 0.0273953836188411 3.0038134156940563e-06 5819346.50859298 638.0721422372046 18053 None 439287 ZEN_20200313 41302967.7588799 8582.418056361383 4.8937045393555385 0.001021208256831694 1239742.1855722466 258.7068643125878 57638 5073 41227 ENG_20190915 25154778.32828773 2429.2768877239873 0.32085105829910515 3.0989023621754114e-05 1294987.8632501974 125.07488582672744 61414 3481 285692 BAT_20190812 266420214.6420574 23085.63491036931 0.20823922711171583 1.8032025987964967e-05 23325482.50104038 2019.819764385393 None 29417 37775 NAS_20201224 12113888.829270087 518.0814535454854 0.26421104966169273 1.1331996124488495e-05 6373380.57289418 273.35391174746377 23316 4857 1482948 ELF_20190324 56925141.37598548 14212.633211356608 0.1719397273545327 4.293950309438139e-05 5176756.661380203 1292.8213979416591 88953 31969 915905 YOYO_20200306 2115789.78875597 233.44316908550238 0.012100895685370464 1.3352887755633008e-06 179706.19584167228 19.8299094914658 7518 None 2563708 BLZ_20211221 72042664.13088393 1527.0174226955903 0.22198968507422037 4.7085885042526995e-06 7982088.045886618 169.3068216220434 76088 None 208169 OST_20200625 6337457.633483005 680.4446741526318 0.009075567235324716 9.764012017856886e-07 363908.3888432199 39.15133665953172 17638 754 855262 ZEC_20210620 1441429470.4171107 40433.813141489205 128.28824305716665 0.003603236442399456 809938296.2041318 22748.76571251492 75971 19977 96879 XMR_20211202 4171517706.582755 72969.45556780523 231.04790808388552 0.004042365770575427 183426204.1397935 3209.1864202123725 458562 244044 31566 HC_20200404 44470585.72748832 6613.030237605973 0.9971096713248137 0.0001481839858851509 30160960.847219955 4482.326794131665 12694 843 1040016 GXS_20210707 32293146.980071265 945.3937154831876 0.4618280717951543 1.3520591260764435e-05 3596203.6743664793 105.28333581492468 None 27098 581243 STORJ_20190522 36633979.54026668 4603.455032064363 0.2696033102349063 3.388009413672039e-05 5893302.75808421 740.5905070160954 83876 7714 179109 ARPA_20200612 0.0 0.0 0.012182030072453574 1.3099497269421813e-06 5089241.675367693 547.252855504399 16938 None 1048081 NEAR_20210422 1701251323.3381922 31397.66099578796 4.785113145350691 8.846897484765194e-05 83734674.47803299 1548.118212726297 None None None ADX_20191012 7204181.143129911 871.6878320622789 0.07826771874632074 9.470197475462094e-06 310112.15036582417 37.52279165083759 53395 3834 372232 PHA_20210710 143615285.12667245 4234.361238193015 0.7932467459799808 2.3342711545746177e-05 14813191.767837258 435.9047979216967 108144 None 165668 FXS_20210314 103110177.537032 1680.7267557105017 13.553340832941066 0.00022093388018140842 31666051.86379411 516.1903470537605 7583 None 69148 REQ_20200518 9353463.222358745 960.4945555908099 0.0121301344570722 1.2406025863589295e-06 60710.8223534252 6.209164745715111 39071 28064 876989 CRV_20211202 1953843841.0007122 34183.54424462513 4.986968603617 8.721052767415876e-05 604721620.42504 10575.180195638219 None None 10198 VET_20210508 15207067774.35781 265376.90358785464 0.2336508822969001 4.077293372474854e-06 4856459487.419483 84746.99469179277 310819 157493 28728 APPC_20190830 3915964.8341137157 412.84013278023815 0.03606507661061575 3.8021564665112374e-06 227877.65676359745 24.023975204370085 25234 3316 1230496 GAS_20190801 30377202.709170163 3021.992604911924 2.1809752182664384 0.00021684339305909751 866895.9742133898 86.19110520069134 324428 98210 192021 VIB_20200322 2060199.5481140653 334.3588755549815 0.011256786631691005 1.8267622265151358e-06 1282837.16730738 208.18005676765372 31446 1105 None GRS_20190605 28214610.332818437 3682.655874579902 0.38950199933448587 5.080619492277857e-05 2132656.921489849 278.18132754583996 38662 107042 6997430 SNX_20210828 2107996196.9534676 42975.30317487409 12.214505382421596 0.0002490465335961642 115283953.78022951 2350.571567928233 150381 7514 47795 ARK_20200607 35709872.96860702 3692.25558283238 0.238000247751735 2.4624905043673028e-05 1599490.8444047538 165.49272756546665 61873 21907 92267 REN_20211204 849165983.7363179 15815.43796445341 0.849722545750231 1.581584060262774e-05 59454623.65628181 1106.625751593714 106655 1226 69235 KSM_20210108 610677682.4521698 15580.510885237893 68.8350569086928 0.0017438321845189423 131692392.80384938 3336.22783710755 28410 None 180647 YFII_20210310 96486089.09265931 1764.6053648310135 2422.597210697314 0.0442864488893714 132880224.29273947 2429.1257480044533 None None 240399 SKL_20210430 450144034.1499401 8399.626956486823 0.6724046909873146 1.254620340028006e-05 171643835.91017854 3202.6523708086706 22275 1433 134291 POLY_20191019 13347007.703753091 1677.314563812341 0.025350709592590934 3.1858162778068473e-06 3278221.076999702 411.97308624479217 35216 5055 332480 FET_20210124 61323362.49984059 1915.8205959724903 0.08936633340396283 2.788499988392244e-06 6683003.974900731 208.52994406962702 27358 764 346755 DCR_20210616 1836713323.3638911 45505.80172014366 140.9856596733827 0.003493014066414288 34771771.53514867 861.4939091521582 46291 11246 151114 CDT_20201201 4704090.025985462 239.40906146813964 0.006996661728797077 3.552016860817458e-07 171543.00416281735 8.70877665321068 19211 293 459975 FET_20190803 25983651.234164115 2469.3929130310107 0.08497315854998551 8.073307814019252e-06 4299559.349693992 408.50153962800954 16153 293 429380 RCN_20190901 7594670.966864828 791.3863591886228 0.014975508817528438 1.5604906982551423e-06 1184728.3845169488 123.45207408469608 None 1112 1734382 BQX_20200404 4034551.6626336686 599.9608888373148 0.02864842034901597 4.257542814713652e-06 279600.5902662501 41.5524301017406 None 12 327684 IOTX_20200129 17655316.35523941 1889.9453367649662 0.004020583826515162 4.2999071537454066e-07 2878181.409068602 307.8138241768218 22142 1797 516890 DENT_20190207 17196299.0471571 5049.218691127645 0.0009190047741626207 2.698403924130741e-07 993977.8812525288 291.85417646115167 42328 8805 245774 CTXC_20200301 1559584.5376361546 182.06488079681247 0.07307144086014863 8.543461315750127e-06 3627778.4410139835 424.15729603901275 None 20064 415103 RLC_20200430 25342554.936650828 2902.7555387957036 0.3617820664382937 4.126470577093575e-05 1199034.5755402844 136.76136425432162 30524 3577 508763 DLT_20200313 1766420.1010016717 367.047614071197 0.021440498413989085 4.434377854225278e-06 82480.86948065713 17.05890105538 None 2589 None LINK_20190318 174198580.39339098 43743.88091410856 0.4780431690325005 0.00012004976032073193 10019008.364461573 2516.047986292316 10671 6481 307556 BAT_20210620 896242391.9462827 25140.66636569521 0.5976951205165917 1.678748409337895e-05 61711119.958723105 1733.2824196327138 206276 75221 26903 RENBTC_20210210 778030189.1745548 16698.63828274635 46605.166895438844 1.0006578067957468 22976730.22148837 493.33252088455185 42583 2820 83739 REQ_20210718 37292958.35670004 1179.7936520412486 0.04810662922626526 1.52498971483159e-06 956660.0927191626 30.3263152179041 43415 27786 339521 ZEC_20190729 486666113.7421352 50981.424296012505 68.7836290447227 0.007212875674870029 220571785.81326163 23129.876840616922 89 15358 211514 CDT_20190629 13827781.476960523 1116.2670323143343 0.02049838151168892 1.6547605655632335e-06 909319.6989945908 73.4061066493489 19738 297 372453 ZEC_20200629 490576878.9085728 53806.7396242009 51.799471510226276 0.005675558056411778 354323383.5780199 38822.460453950815 71769 15866 226404 EOS_20200315 1820312954.9635494 351994.76113953255 1.953430581752024 0.0003770299866911129 2951166492.6801014 569602.1521586297 1476 70376 94982 POLY_20200713 29206398.739397854 3147.9197239160358 0.04408456083195338 4.7485824598132225e-06 1119019.8861431058 120.53558214579793 34952 5007 323415 AION_20200410 29617461.802816052 4063.7970842131963 0.07213802104700479 9.893892923906576e-06 2486171.603846494 340.984064740096 544 72558 269211 KAVA_20200309 14859402.424644897 1847.3287833919999 0.8030844485506342 9.98293534917459e-05 6992293.08398717 869.1938926958742 None None 380992 VET_20200913 853959716.0214145 81895.12583666467 0.013405155167010971 1.2837796814648853e-06 103039707.26074652 9867.866572031 134979 67231 75670 AXS_20210314 286999018.47165674 4678.169902624054 5.139486185388188 8.377020527014151e-05 81488505.01970063 1328.2084135306773 None None 23096 FIO_20210727 57233506.746152565 1528.7384061228672 0.16807457657773409 4.490921142224353e-06 11069394.193555232 295.77213536790384 None 501 141932 ZEC_20210813 1529272954.840602 34397.09896258596 133.48862150812218 0.0030022839571644012 719920654.6280318 16191.68890503167 77446 20212 132489 BNB_20210804 50072708742.12465 1303276.2639575093 323.0998008181091 0.008444214850174266 1140522219.2311575 29807.55369145886 4669645 577611 143 BRD_20211021 16931293.52086619 255.32956639392518 0.19737439854967792 2.978769017411595e-06 1785175.4849865849 26.941819528748773 849 None None ZEC_20200306 480371747.01093113 53043.77911549255 51.84462927927669 0.005723130229308733 256050344.70747703 28265.405469994093 200 15577 157694 VIB_20191203 4461677.500454363 610.267832718859 0.024492184345077554 3.351751465262359e-06 706174.6502560207 96.63988664214247 31747 1116 None XMR_20200501 1094705897.7905898 126505.01684892044 62.07621545999171 0.007196827421853851 170133373.1546143 19724.47122007243 319724 169958 81111 STX_20210729 1188456446.8594596 29721.07010206705 1.127161686133219 2.816108962236333e-05 26197280.624939732 654.5147662639205 None None 61461 SXP_20210220 290319728.36589915 5196.9271004113525 3.435825460828855 6.141164521223172e-05 925251061.0535574 16537.85692593201 105913 None 126923 NULS_20210422 128177355.6654257 2365.619825102611 1.1452482517144495 2.1146689176921874e-05 95800294.16275062 1768.9256811216574 48141 5317 273594 DOT_20201201 5021807204.881335 255102.3616881028 5.354461939485786 0.00027275127328811474 281162258.87326753 14322.141977091147 None 6069 36558 DGD_20190511 73238957.38171759 11493.645115512667 36.49632119200015 0.0057286855228532545 964249.8178505761 151.35454181462256 16940 3350 465743 FUEL_20200316 1336984.2627720619 247.48013941797657 0.0013434012114687175 2.5e-07 62747.22789143192 11.67693377 1 1469 None QKC_20190220 50450472.43750392 12886.412985274595 0.03193640739433804 8.157420834051141e-06 3716046.7248143996 949.1786787102013 33325 8958 181289 QLC_20200621 3683344.122905719 393.71840541503616 0.015345221607552369 1.6400715970974168e-06 159746.3220436055 17.0734194803384 24392 5644 940522 PIVX_20200526 18731812.963055618 2107.727285876557 0.29459129156533015 3.3116162913277526e-05 555748.6701123815 62.473888486270894 63729 8470 243551 1INCH_20210511 1006629272.9828343 18026.904831499283 6.2001326682602995 0.00011089133990909079 353650010.6963371 6325.14264505004 None None 24204 LUNA_20211028 16064880455.35779 274487.85112659866 40.01183123162367 0.0006837523468601437 1319330827.8307078 22545.72015442283 183766 13043 9739 NU_20210710 132814327.537599 3907.844280762042 0.24017723674567296 7.067646965614053e-06 23237318.180362534 683.7998619342778 None 7133 128147 IOST_20200403 37484610.61804507 5523.767280715897 0.0031336510008456464 4.596746768481483e-07 37596231.60791669 5514.984154398022 191777 52245 158956 OM_20210804 43144910.65726047 1122.9141595442159 0.13268134499611595 3.454426950492937e-06 8690647.485042147 226.2654700285265 48132 None 86864 AKRO_20201226 25452097.67164671 1030.6533762375157 0.010865751959667276 4.4046986704327954e-07 5559196.272521404 225.3556359572908 24899 None 166133 LOOM_20211204 91949490.93363097 1712.6606782970061 0.11029873163022456 2.0524546481549774e-06 2554533.1062965854 47.53511912957911 38789 None 339032 RSR_20210724 299496933.1851917 8958.486779360472 0.022792580338960675 6.816500022651552e-07 44260039.09236757 1323.6700408157444 76600 None 123422 ENJ_20191012 53964632.33911778 6529.585033627639 0.06159128068806857 7.449087664398235e-06 2181448.314110927 263.8327949286161 49225 14050 29190 POA_20190627 7776008.432983072 598.2490699895744 0.03531479331829937 2.7080415545709992e-06 1033767.5053271175 79.27231336054281 17700 None 649823 POWR_20210210 62933486.66263044 1351.0856024495515 0.14652241016914613 3.145977224697674e-06 11759814.6993541 252.49454447360267 81518 12614 369771 KAVA_20200629 30392803.206437375 3332.603306009638 1.118105497084577 0.00012250844413815807 10351976.674393263 1134.2440936398432 None None 334665 FET_20211204 525218302.6930689 9782.770142725276 0.7639311638322723 1.4215340873859482e-05 82293581.98547184 1531.3307992122063 88389 6919 73164 JST_20201015 40220117.093775585 3524.3458746380384 0.028059359826342074 2.458155774390086e-06 51779924.777811676 4536.209018231731 29783 None 133827 QLC_20191011 4865700.6991524985 568.3714556480144 0.02027375291313541 2.368214398533393e-06 423269.9098134776 49.4429373378007 24701 5727 940522 PERL_20210727 0.0 0.0 0.05793294817557568 1.5526772728540768e-06 6759149.817551488 181.1538793731291 344 681 5644185 POLS_20211125 297806051.402944 5205.722383150368 3.6608615874523363 6.400932075765524e-05 47269532.591753185 826.4968782487086 567259 None 11070 DIA_20210218 77057973.61183694 1476.8537063445283 3.0135173122583465 5.780328351400146e-05 48557703.51019739 931.4015523890707 24991 241 245610 MTL_20191102 20573101.36243279 2224.041914123104 0.385019906212189 4.1622329764596884e-05 8740222.19122975 944.8561084494268 None None 239021 XTZ_20191127 856332011.1760311 119441.47981251663 1.2348805500253237 0.00017254572822865492 37614380.354709305 5255.731536171522 46118 17974 238038 WNXM_20210219 107690561.19470343 2083.5081590310733 67.5817049771328 0.0013070375397584426 55248269.747647114 1068.507558240936 22039 None 109999 HOT_20210106 129252844.29187638 3804.1211310983476 0.0007330708382838434 2.151276351624214e-08 13651421.645149807 400.61586162687433 26914 7416 750555 TOMO_20200421 21482333.33694637 3137.136959973484 0.3045383840915737 4.447974362629232e-05 17648056.555495903 2577.6094971815573 22506 1529 222907 WAVES_20211221 1562968305.657039 33128.70037014858 15.576386189195699 0.0003305009189197761 89865135.62041213 1906.7651212960923 206895 60044 105979 RSR_20210506 1099895940.2118742 19212.93291775265 0.0838120471987923 1.461978324416533e-06 94379547.90928622 1646.3128860739296 71255 None 79462 DOCK_20210111 12700372.356632257 329.45162387431026 0.0223065962872642 5.799668976310453e-07 10465162.605159715 272.0920669005974 None 14866 239744 TNB_20191011 8441717.95456715 985.8970125891145 0.0029268053449575154 3.418177036419861e-07 454443.8123998975 53.07388844853203 15483 1463 2032004 XTZ_20200330 1044926130.1051265 176710.21754504394 1.4784793091272739 0.0002504757191631424 67375183.21119775 11414.327792341453 58341 22831 103142 NEO_20211230 1830102046.3711283 39459.38110705884 26.163842784724213 0.0005617984835618553 103949457.48801154 2232.0363283156003 432573 115711 78285 ARDR_20200531 46857396.8981723 4841.243185835847 0.046879107239930384 4.837402283924218e-06 3308846.0112664895 341.4360936980554 63451 6310 2112337 AAVE_20210506 6115001074.6027355 106816.56431579888 480.8639144487364 0.0083903568225547 708893368.3052684 12369.130081309057 190927 9027 14216 BNT_20210916 990086084.5984566 20544.423558718972 4.270489155120751 8.861879165975771e-05 85989101.31578887 1784.3975192809555 130067 7949 40873 GLM_20211002 524324075.411098 10888.57871318939 0.5244703451061774 1.088977611466148e-05 6913568.166416946 143.54903034696758 160338 21424 143737 MITH_20190902 10130983.745967774 1041.6009807904152 0.019874828989981674 2.043398932235591e-06 1240730.0125634538 127.56368289472012 83 2082 697406 TNB_20210202 10056991.946680859 301.25467355586596 0.0030779312540180435 9.215012764551118e-08 418034.5108837583 12.515527592722947 15899 1410 3046579 FTM_20191020 23814404.212688588 2995.8347630285352 0.011389892952677729 1.4328402654988513e-06 4320031.434671607 543.4568185614966 None 2180 498287 GRS_20200511 9875933.538442584 1127.9268783744187 0.1316430982471615 1.5034911716191384e-05 7527081.327815802 859.6652976962532 37420 106886 None WAVES_20190411 279163361.2102559 52599.11259855782 2.7907124264452703 0.000525794832610273 30410820.07527717 5729.666697112503 139360 56731 40979 FTM_20210809 679417589.0356774 15443.998663515984 0.26685874757027034 6.0677139877030445e-06 61493595.011794634 1398.2136617386302 104590 9431 45171 ETC_20200422 604503440.4604292 88270.98993769115 5.194065176113129 0.000758760720243988 1719481892.5537229 251185.78127217208 230755 25400 313555 FUN_20201226 21500460.012793206 870.6363612430432 0.003565715229525279 1.4454499963675686e-07 364219.29960462113 14.764521320469786 33757 16523 396619 QTUM_20210513 2215371075.801635 42977.837461512405 21.200950211639146 0.0004126134795039948 1323995900.5859656 25767.644843101756 241199 16556 91634 QKC_20211028 181096398.0455426 3094.551084665709 0.027432891451233322 4.686819617750288e-07 22532506.931872416 384.9604979231826 76761 9599 401013 TFUEL_20200423 0.0 0.0 0.001679690340382554 2.36102334152976e-07 170970.03808475705 24.032063584315654 67716 4022 358410 ASR_20210710 6118988.3470227355 179.91107503504153 4.959042493310127 0.00014591871253463422 1763697.3025212784 51.89639734523197 1982303 None 120026 XVG_20190729 91276792.05702683 9561.834557283044 0.005730158999974181 6.008831612705142e-07 763043.8657036836 80.01526837460689 304004 52951 416991 HIVE_20210428 253964388.18757483 4609.9968707687685 0.6829610244465235 1.2400779031127235e-05 124997618.81431332 2269.6285656850737 19240 163 113776 NAS_20191216 18246333.56761239 2563.933106964143 0.40071896549580915 5.6358326895087515e-05 4003881.0307448367 563.1179340377824 23906 5044 1040847 ZEN_20210117 260643493.581077 7186.39157296688 24.399114003082516 0.0006742046406760132 37496290.88187063 1036.1102996404306 82654 6399 413746 COMP_20200707 22310.301998095576 2.387874711623464 2.418901295321896e-07 2.5889534052499353e-11 18.609917854250483 0.001991822084405133 1822 None 1076754 THETA_20200312 100993423.2697394 12732.85025851256 0.1013785786016533 1.2771003998291476e-05 13018683.645059805 1640.007812072828 None 4027 385146 TNB_20201226 6926113.372473023 280.4649826365878 0.0020111521492859152 8.156138182788163e-08 359112.6592488205 14.563654336455189 15718 1414 3433473 ATOM_20201111 1212879674.7302349 79338.94014203797 5.083079033453266 0.000332745042390838 236444326.90332094 15477.956777915606 44552 9694 79924 RUNE_20210203 884704818.395047 24838.9584251211 3.799969820504416 0.00010699703330624919 84166577.41176361 2369.90673926038 32229 2267 162982 QLC_20210204 7675148.380557581 204.78340735673095 0.03222275296239719 8.590553252965381e-07 2052713.3641080419 54.725130059563924 30153 5592 940522 MBOX_20211002 173252196.98709923 3597.2581528828728 5.147032229062329 0.00010686977662786375 87046076.28712119 1807.3706002092292 139451 6849 8170 BCPT_20190103 2856122.3697211365 738.4033099852761 0.03404462712134253 8.80167657384662e-06 1110116.9673320574 287.00242392935087 10005 1327 1028846 ALGO_20201129 250607754.1758365 14157.80332582376 0.3123506895433187 1.7634905339896114e-05 108379072.9962208 6118.938606821871 None 1500 368912 VIDT_20210106 29902253.22812101 880.0718776886386 0.6416431070188642 1.8829716996297948e-05 2968318.6877650814 87.10855027356469 160 1150 None BAR_20210813 71133443.2673454 1600.0208145727424 24.171843475419337 0.0005437048981697905 26137923.334555928 587.928552467924 None None 44064 ZIL_20210408 2324128679.2633038 41262.81198536918 0.19449383652777458 3.4611739258629163e-06 365342215.66871214 6501.557959184761 202563 26589 35468 MDA_20190909 11146230.500918254 1073.0052876639027 0.5682825247509111 5.4678534257943137e-05 611281.0089479531 58.815726567768465 None 364 3117488 SYS_20200423 11246499.038809434 1581.2136687986126 0.019211298251057485 2.7020061724393315e-06 268128.80362981 37.7114379751322 58347 4501 804811 SFP_20210710 79354997.92027539 2334.933663396998 0.7336216536716106 2.1586443662879966e-05 5362649.428314309 157.79322923297997 359048 None 22344 KEY_20191020 3749289.091144441 471.8094499402989 0.0014340666823277565 1.8046253466153485e-07 164075.38399846526 20.6471986531798 23646 2798 382534 FET_20190708 39727585.67032919 3473.9159253335674 0.14559781805154812 1.2730058893269363e-05 7574192.7860756675 662.2346510823551 15771 291 401657 GXS_20190305 37412624.97117522 10075.3966094685 0.6235437495195871 0.00016792327682447496 8083921.556544575 2177.0382565984382 None None 478262 ADX_20200605 8987504.509192834 919.4248852932614 0.0976421138199175 9.988822726802933e-06 226489.00443384753 23.169905139828096 None 3750 28242 NAS_20220105 15339462.156910142 331.5922698010542 0.33488867230568886 7.278463255922754e-06 2063311.9078198546 44.8439769645788 27041 5245 595906 RDN_20190305 13923826.031119606 3749.752114235701 0.2752074143100276 7.411465651437669e-05 690146.6692734229 185.85975768850187 24973 4460 714743 YOYO_20190513 5197330.671427168 747.6602613573576 0.01781467302643585 2.560117707061828e-06 385162.957630553 55.351142649153815 7455 None 1472428 KEY_20190903 3758822.143866322 363.9753467493406 0.0014377129824547892 1.392170369563569e-07 47916.250134481415 4.639840112170588 23810 2827 766085 VIA_20200610 5132073.3943014685 525.5431447987442 0.22151249524383396 2.268369222699058e-05 1545545.251582472 158.2695042606605 38815 2158 1856302 CTSI_20210212 89306486.77056669 1873.213447882649 0.32131686176036617 6.719078552031877e-06 473299302.49244505 9897.193613325955 None 412 421222 DOGE_20210602 48461329054.11711 1321123.2823572434 0.3732368104078912 1.0174954952473183e-05 6733327602.348271 183559.88242227628 1716911 2012088 9227 PSG_20211204 51689149.137008786 962.6934513024347 16.61628402674759 0.00030986795238617266 6978931.690594238 130.14626310710074 10897586 None 16273 BTS_20190510 136880517.77872542 22172.928095706688 0.05050783898024852 8.181300601504898e-06 15933153.76332435 2580.8651310290957 13784 7199 176364 AION_20200305 55991693.36397822 6396.01154357453 0.1401337428372277 1.5999144915611223e-05 4324381.997836145 493.71702241767935 615 72548 246428 XMR_20211002 4639229961.212992 96342.36337831346 257.8001888635355 0.0053521831335722175 283486899.9404945 5885.464285882841 442680 236355 46981 BLZ_20181231 9003881.627492523 2369.99980624651 0.044588447005046584 1.1731709534974257e-05 599368.3787701321 157.70039542717808 34917 None 711097 QTUM_20200329 116840502.491168 18750.307250795922 1.2144678318677702 0.0001942996536083018 339805874.8994387 54364.687194296566 179274 15146 109238 TFUEL_20210310 0.0 0.0 0.18217493881683292 3.3271907166023386e-06 110533463.45142655 2018.7514037771086 93583 5279 39899 BQX_20201224 30742758.482966047 1314.792732980077 0.1408940337681314 6.042357688589527e-06 1248142.2398833428 53.52761687569997 17477 95 178993 REP_20190915 117150070.21357277 11317.161514094942 10.568608847591047 0.0010212037432967265 8850590.022518937 855.1982376981554 125739 10048 201886 MATIC_20200127 42113887.1059709 4904.716525578319 0.016445686261904204 1.9146207579534254e-06 10747137.863297159 1251.1909149891228 29141 1442 157746 GAS_20210220 66621727.256490394 1190.7909538322888 4.78085192209971 8.545253110190751e-05 38359176.08387678 685.6285743130499 344272 104418 123772 BEAM_20191015 30124638.86416851 3609.0368268281063 0.7437236003525047 8.910068182911857e-05 47199011.97584164 5654.606290179507 11684 1375 186825 GTO_20210710 23454926.597396128 690.3457714971781 0.035441059150002716 1.042835121980718e-06 7608859.612810823 223.8868203367203 13957 None 269467 HOT_20190603 408611609.2820208 46720.81926664604 0.002299626163005813 2.6296402670071384e-07 26725747.733087678 3056.109881483569 22160 6319 302460 ELF_20201226 46968784.319096714 1902.9286333731775 0.10192476481498106 4.1335135503016925e-06 16652377.294148384 675.3297622520629 82338 33321 543167 STEEM_20191127 39281657.56343289 5482.26396572793 0.1207651153165913 1.6874105569556035e-05 428943.3832509161 59.93482400413105 10466 3796 205566 DLT_20210115 3885758.7494116775 100.05194713898541 0.05140931461118102 1.3104925787050844e-06 102745.28208415353 2.6191154402 None 2534 None ROSE_20210210 131042623.49293637 2812.854473904201 0.08729108890087721 1.8734187386716782e-06 14866055.406503972 319.05143032757013 10270 720 215578 POE_20190929 6189198.958523374 755.4954255544751 0.002458788495533698 3.001363299564808e-07 293164.1068258746 35.785590853998606 None 10702 709572 UNFI_20210105 14596826.85562064 466.5565912022045 5.976484028368584 0.00019102562791421888 16349611.70074184 522.5806387941468 None None 133722 BEL_20210703 54824063.5741799 1621.1401031307441 1.1438805159625363 3.378131411024019e-05 6392018.906623083 188.77041392870484 None None 582298 AKRO_20210711 60392313.56661361 1790.9651898257875 0.022312749101938402 6.617608276020554e-07 21905382.145098165 649.6789683356458 None None 210414 XMR_20190414 1102834708.2056189 217382.2274141609 65.19802996879564 0.012848880734820363 109210765.26273118 21522.676352198017 316303 157558 118862 MTL_20210702 105008628.97493434 3125.7066411374785 1.6312382196401083 4.849771623208437e-05 10710285.94255151 318.4233928266733 57304 4203 185263 WRX_20210325 110901600.7015518 2098.0495442429105 0.43944573101045054 8.34092559911791e-06 9829881.40440414 186.57664338611536 None None 3664 XRP_20210725 28269947663.60385 827480.499069781 0.6110446430727691 1.7884542852843047e-05 1614041890.5268197 47241.067710290066 1930916 323212 15139 WAVES_20190401 280754254.3560748 68418.85763889717 2.8073192951778707 0.0006841229437638811 12140026.563437164 2958.434661926878 137832 56738 40979 STMX_20210107 21854890.52368035 597.1718756125327 0.002680567048116576 7.262564047198314e-08 3143759.0420681555 85.17508042942212 21837 153 199234 HC_20200425 46063043.833729915 6142.755536736013 1.032182863982254 0.00013771134207048646 24745746.028279535 3301.5176041019554 12641 838 962062 SNT_20201229 121081303.45229536 4465.222740161469 0.031586893056414225 1.1637319093618777e-06 10539934.586813223 388.3148044777612 None 5682 158181 IOST_20200626 92807781.75947945 10021.769966929516 0.00615409746114545 6.650812936825913e-07 50071846.094820954 5411.32934407911 None 52174 434234 WABI_20200718 6601372.642702264 721.2180665582475 0.11173129298710509 1.2206037955491888e-05 990399.3744279647 108.19576174383245 None 7664 820507 VIBE_20190520 8341964.915607396 1014.1679785274423 0.04190290922283447 5.103728966543708e-06 656095.7411050432 79.91175077836907 20677 None 1508897 FET_20200105 13649617.555557178 1857.2132599885952 0.04025487364420715 5.474455687813324e-06 7276845.094109326 989.6134904528751 16345 341 374290 XTZ_20200501 1949795564.1728845 225319.8061648019 2.7460934447862924 0.0003185832614419573 324889160.1920692 37691.451635646314 60765 24229 100263 ZRX_20200612 216719283.19454545 23357.236124325096 0.3340349970856456 3.591922287328119e-05 104461005.92520432 11232.829452395728 153625 16081 97412 ONG_20190819 0.0 0.0 0.18113967965064354 1.7552320094090726e-05 5404476.009593032 523.6902982503095 81511 16281 248344 CHZ_20201229 148905540.70949435 5486.905843791565 0.0277049100687376 1.0207109586691067e-06 134116183.5577835 4941.140684184317 62302 None 331947 GAS_20200331 13851502.975984065 2155.8915063157187 0.9880525933118297 0.00015389287205485426 4838273.734828544 753.5791575067934 321700 99278 234757 GTO_20210422 59608288.28246748 1100.120592825372 0.08976304851149008 1.6574496259687161e-06 101267332.03420681 1869.8730088412813 1885 None 321700 KAVA_20210702 277128549.7818654 8242.53842606852 3.9654927127334063 0.00011789653895246103 37647430.887432836 1119.2812907783302 110611 None 48831 TRU_20210823 266598117.8401069 5404.00671418739 0.6318574510595559 1.2823403100393794e-05 21036432.133019313 426.92960031321576 None None 91553 SYS_20201106 23075138.910125196 1484.8054607744318 0.038533147404581906 2.473144848421501e-06 678277.7156563496 43.533403089599126 60968 4491 320728 VIBE_20210114 3336978.7223902983 89.82322176 0.017945662301172192 4.8e-07 79540.47527106144 2.12750176 18454 None 1637707 AXS_20210821 4204890120.0701184 85583.3936672721 73.23278747125184 0.0014896136600946635 736669545.539612 14984.449669382162 397796 None 935 DNT_20200526 4256526.059846474 478.47397254242094 0.005661864397517799 6.371680857046632e-07 1614339.3686808322 181.67258221002047 58162 6037 635978 TROY_20201226 4925925.651756207 199.46348685590658 0.0026177091261108108 1.0612535277790394e-07 1245773.7525165037 50.50529779971841 None None 1087895 XTZ_20200404 1182157972.1993062 175793.64624713492 1.6758853906929556 0.00024908562740460263 131441790.94636367 19536.097842300518 58561 22955 99470 CMT_20200321 5851658.165236017 946.553653690412 0.00728809259849303 1.1785904848794875e-06 9767835.483475154 1579.6009453931001 286350 1637 911838 BNB_20190509 2973223295.6839013 499498.1777524012 20.597111887211472 0.003457745332012667 250990334.3875546 42135.06543350433 959848 50424 978 APPC_20200106 2955001.13765655 402.43129430715805 0.026483328626414844 3.6066721196398558e-06 26089.786042550415 3.553076928297512 25006 3249 1530437 IOST_20200807 84948909.54948683 7220.2816005465675 0.005614911752183057 4.768929730427022e-07 44043594.895127915 3740.7677698335365 263 52174 321409 NEO_20200927 1479646407.7264485 137801.3256427412 21.05124152185396 0.001960999893951005 457086155.8481559 42579.24180928623 323799 100614 108767 POWR_20190813 27050879.698136374 2376.8454044446657 0.06373748264539299 5.600990434162121e-06 1010091.1422398895 88.76269646219615 84247 13106 515073 ETC_20200129 1344163876.0118947 144404.71707157098 11.507981040768293 0.0012307478748740741 3771331922.4701324 403333.8891141407 229558 25129 379003 AERGO_20210131 14408331.680170482 421.14287551902805 0.05478244047795077 1.6034917793145676e-06 11952977.072426375 349.8657655035553 None None 586684 QNT_20211104 3572837024.8316236 56804.942297300695 267.5634551243847 0.004243403031984045 62457113.72514763 990.5340235162404 58088 9748 86328 ONG_20200407 0.0 0.0 0.08802597582542913 1.2099130347581945e-05 13138383.518018963 1805.8648399000433 84108 16516 252464 BCPT_20200310 2326737.1849887185 293.8822029658111 0.02024586407562678 2.558104252465813e-06 73835.34561434994 9.3292393395911 10698 3162 1771218 RVN_20200807 153812009.45111117 13073.3405251776 0.02278648269550062 1.935331124949281e-06 28912809.820157252 2455.6602922195843 32986 8569 216731 XZC_20190615 87291883.09803423 10032.879674217547 11.267690925031719 0.0012977406377276532 9858353.906308142 1135.4222058838748 60451 3996 387504 LIT_20211011 103215299.04811506 1886.6068992138842 3.7244137444987406 6.804611059033159e-05 7753552.059427337 141.65962674877147 None None 455737 BTS_20190220 123042522.34002332 31428.382748795204 0.045691845686001174 1.167093121474008e-05 22677910.77358649 5792.550787976372 13797 7213 130894 BCPT_20200626 2925999.3974162242 315.95150199084475 0.025076056843723493 2.7100015970504316e-06 374284.8423573922 40.4494425444 10482 3172 3960582 LTC_20190614 8157896757.904061 992179.483603193 131.15347272119587 0.015941643864197483 5119765922.609904 622305.1766216118 446856 203887 172197 POWR_20210115 47632921.25475002 1219.6091414351313 0.1109227903281097 2.8275711246816105e-06 3977176.7435945105 101.3835847861214 80933 12555 337778 BLZ_20190930 5181331.88840047 642.7932182500919 0.024678101105784667 3.064883227317532e-06 284945.7805988012 35.38868488740632 None None 550438 OMG_20200913 578880977.9860673 55514.949531216116 4.126884387481193 0.00039524005462433114 270129788.2601505 25870.87551845973 284815 42927 113182 TRU_20210731 57523513.72007678 1377.9483469794275 0.15622830005238755 3.740075403413885e-06 5169387.740553965 123.75414654497287 None None 127918 SNM_20220105 11674118.141244926 252.192 0.26092854495566586 5.68e-06 152970.36965960832 3.32992199 33308 9782 None AKRO_20210106 21996686.113998123 647.398197841106 0.009407237656628238 2.7606565215703166e-07 5544578.032457203 162.71169139512037 25165 None 214700 DUSK_20200318 3927558.1228431645 723.0055830836884 0.014936300202003296 2.77142314005759e-06 116766.3725996942 21.66594287921287 17668 13344 994052 PERL_20211221 0.0 0.0 0.08750771513975997 1.8566537641242177e-06 37906396.40480486 804.2611266556572 1555 726 815622 KEEP_20211207 381738530.8980215 7562.970218725199 0.6933315286869193 1.3727386664644089e-05 21336889.38137087 422.45263433141565 30296 3617 144845 POA_20190512 6470106.251837414 883.8006055099878 0.029198750702715676 4.012658263105602e-06 504994.0073067836 69.39914645217715 17417 None 629300 RIF_20210301 168653679.68953085 3717.6730350234234 0.23989639444562477 5.314933317172191e-06 5343523.998612255 118.38641342219393 42712 3114 698568 LSK_20200306 192176702.73957428 21214.39215801989 1.3880504439936179 0.00015322693143454788 5328168.477616049 588.1766830047192 178565 31316 155203 RCN_20200325 25087457.54500764 3711.4684389583085 0.04910990188556669 7.267731107075385e-06 2411842.7925089383 356.9264896789461 None 1132 875851 DOGE_20210722 24902296662.105995 773841.6470850835 0.1915879421457505 5.939693236490099e-06 3663618236.022215 113581.09604323865 1980467 2119333 9379 FET_20200316 3729524.965961448 690.3472121842924 0.010964985729231673 2.0296545535697267e-06 2133945.570093232 395.0002718072998 16612 361 584622 TFUEL_20200711 0.0 0.0 0.008391844566904266 9.038900370217184e-07 3308253.0229301276 356.33369082724073 71563 4285 81176 LINK_20210805 10745747765.74576 269925.05642058793 24.20083346938293 0.000608597585107656 1193169797.4075668 30005.58878454825 413596 63434 29120 EPS_20211111 255418783.0684357 3937.880512392364 0.5579841583131862 8.59014686431428e-06 32489030.533779502 500.1675040525279 26864 None 75193 FET_20200305 12347197.249722594 1410.4079402033847 0.036445628721446896 4.161668100805017e-06 6936344.203357777 792.0500597738578 16557 357 523257 BRD_20200224 16082875.66568419 1616.5304290563106 0.261317661744369 2.6265961188333682e-05 847973.3764530417 85.23279921448251 179 None None APPC_20200511 3137214.913274477 358.2896629155843 0.028769378827319152 3.2803130214300935e-06 1840179.1188987084 209.81904273008183 24658 3212 1060091 AUCTION_20210723 68550969.31430046 2117.5007169412456 14.99968749249379 0.00046331593293765227 2862910.891919009 88.4306577367429 45581 None 56782 NEBL_20200422 6284504.117009161 917.6778204163214 0.38653770699014034 5.646629740152312e-05 67924.55233664415 9.92257133973246 39374 5984 1629881 TRX_20210616 5182420474.568162 128324.91264287454 0.07211073430888777 1.786649326773751e-06 1114269539.468034 27607.663985328327 1043828 112570 19409 GTO_20190601 28220179.04646402 3289.6557335960492 0.04256646458198572 4.963342217402231e-06 30858441.864677392 3598.1613407241716 17360 None 1170930 RENBTC_20210819 619833574.5431113 13758.652507897748 44872.481759103764 0.996349968055989 2533865.694670215 56.26203198423806 89571 5637 128608 STORM_20190220 13368459.50972644 3414.9806004154184 0.0029674001185035926 7.579541195963869e-07 1660632.8596880857 424.17047478330795 26548 2567 3385939 FIS_20211011 47181048.34668044 862.3055530511165 1.7476289909439418 3.1943488952512094e-05 71608682.7724259 1308.8768719780887 None None 277306 ADX_20200721 9913018.06953419 1081.9961121273225 0.10772079945185421 1.1756916431610144e-05 749217.3228579023 81.77144524342287 None 3734 16348 XEM_20210519 2627215037.355084 61572.58687976271 0.28884467830235067 6.751724116857656e-06 159835524.72917613 3736.144191360005 364131 21472 32038 RENBTC_20210217 878642312.3509985 17865.98388607288 49173.78960981616 0.9997210279066996 15941616.70442444 324.09886577178526 46162 3127 73664 RDN_20190515 14554894.282441223 1822.3079315133255 0.2873994449176709 3.5960165024331644e-05 581548.690774295 72.76488267372379 25665 4447 1314746 ARK_20200621 41866220.66305345 4474.6219478375215 0.2786725140064874 2.9772277779254767e-05 3426181.439256073 366.0397793278028 62014 21903 104717 LRC_20191213 22234356.70625975 3084.9541824184225 0.02307058895480756 3.2050134745026406e-06 2774182.5511437412 385.39512253296823 33538 6833 988537 SRM_20211207 548040670.3364881 10857.806491640496 4.113002684272899 8.143402667215001e-05 116661350.70087741 2309.797555180481 176509 None 18033 IOTX_20190421 38499065.30463031 7250.331568108348 0.015264828403343055 2.8740355845875663e-06 1268281.923744157 238.78993486304725 15331 1692 782632 NCASH_20190723 4931262.168328047 476.616058984846 0.0016988804674576046 1.642691650359824e-07 1043410.723892559 100.89009302692328 60120 59063 884263 RDN_20210806 19390735.186926477 473.0525511118693 0.3795491505518293 9.263875960484492e-06 600102.6607751502 14.647053233803899 30509 4677 1394664 NAV_20190131 9661412.286242863 2793.62911620324 0.15080839348675712 4.360674263040649e-05 72311.59000296798 20.90913391191185 48077 11476 833062 WABI_20190603 17303812.05417641 1978.5249788368144 0.3297313473340981 3.770161771079647e-05 1178661.2939087856 134.76861655023603 36301 8028 932643 ANKR_20201031 40355147.4730394 2971.3418263128156 0.00686778926611368 5.070911386546988e-07 20712547.084359594 1529.3347944251138 27876 None 5113 SKY_20190220 13011886.840558799 3322.921854828805 1.0100897949503607 0.00025795255492983964 1242816.406928257 317.3853147299859 14473 3510 348246 ENJ_20190421 172153924.81797725 32420.2106007281 0.19853538741048557 3.738924342529266e-05 58353741.19311069 10989.487882755719 45414 12327 18567 FET_20190321 0 0 0.2205815464763599 5.456826891208934e-05 21033543.97040421 5203.35495822757 7178 152 185069 SNGLS_20201201 5598350.168330916 284.7518166408668 0.006284943753347532 3.1994583459876773e-07 153841.1100178287 7.8315453999152655 8939 2114 2514667 POE_20200520 2699892.6079987497 276.76785551718615 0.0010722475319624694 1.0995189937649178e-07 22460.593920647763 2.30318549503152 None 10309 1075811 STMX_20210203 42748856.27674824 1200.382493320526 0.005045353277233032 1.4202246433340587e-07 145294834.8859702 4089.927775431713 23339 553 181816 QSP_20191127 7366856.03082406 1028.1401515013551 0.010309991693642991 1.440580649500498e-06 173562.54174303715 24.251313341727286 55735 8418 411478 XLM_20210704 6154538257.145279 177629.00822211226 0.26595702691704975 7.656889070590978e-06 337324946.77790785 9711.567797857146 599371 195373 23566 GRS_20201014 13736960.519361775 1202.4226467565697 0.18034901071308732 1.578961386785485e-05 522720.5992687801 45.76435651403767 37613 106816 2941693 ARK_20200107 21732090.199095063 2800.9198706055568 0.15248725968825178 1.9666844452894005e-05 524971.1916856768 67.70747136672463 62593 21666 97018 KNC_20211216 119880119.47772597 2457.245115895974 1.3073384751221901 2.6751502304405984e-05 35232455.439974286 720.9465114260182 199265 12208 89231 OMG_20200629 197098481.89425427 21612.058878173768 1.41081376370622 0.00015464166176136179 73843178.94360864 8094.074636458619 122 43083 539864 FUN_20190816 13840549.01658925 1344.8455660716418 0.0023080660630699123 2.2403118459555282e-07 115259.25114626167 11.187576899574724 35985 17447 345008 ARK_20190130 54026844.04643044 15827.861914792124 0.3879769697024811 0.00011365321095520413 280468.76194002037 82.1599678753051 62610 21773 151902 KSM_20210125 936732328.7288921 29071.50562659838 103.8181111429122 0.0032179787630445007 140416134.34063953 4352.382578748452 None None 134935 LRC_20190530 67473805.64826077 7802.911854814686 0.07220067132806529 8.349543483114047e-06 32436267.250813667 3751.0457847405446 35769 2464 907750 AVA_20210703 118420714.98259269 3504.35897630061 2.28743369459255 6.755296122720999e-05 7670422.123833885 226.5244800549209 88160 10466 46420 LTO_20210430 142865747.69503406 2665.214172911124 0.5090262384312635 9.496404675306433e-06 19424967.567569163 362.3926212425477 8569 3866 174432 ONT_20190515 906420291.9636337 113447.34786102429 1.473862730290285 0.00018441353294761323 143458774.6902193 17949.934501531487 80214 15968 249396 ZEC_20210204 1025080223.1694678 27352.916031743152 95.4448987738806 0.0025445655341075563 809801854.6820204 21589.355904311 72354 17023 125065 DREP_20210806 0.0 0.0 0.593850595004705 1.4494259485492862e-05 4327347.586979607 105.61865111730143 4098 None 292177 SNX_20210527 2218192076.6343694 56616.17825094652 14.449887559240596 0.00036884592593872036 148443536.22562942 3789.1501469674936 131216 6687 36942 ATOM_20201101 1097747240.2637484 79554.19621978792 4.598148926248597 0.0003336650772977428 163797239.4299863 11885.960944756152 44231 9668 79924 CAKE_20210616 3147787603.8408227 77944.19060812624 17.33764191550939 0.0004295516808562465 214564049.7282421 5315.967918892259 901107 None 861 CTSI_20211104 379983824.4613632 6041.330635450933 0.8028452993683616 1.2732666260308588e-05 45097631.648644835 715.2225881677167 58105 5523 138671 ADA_20210718 37700201068.36395 1192808.3050498802 1.1759484192387804 3.720470421803669e-05 1020948117.1263099 32300.798315825657 528995 544134 7136 POA_20200329 1800089.538293275 288.3113962617044 0.00818713583086459 1.3095086141740359e-06 103929.05133294748 16.623150121726763 17352 None 758180 POLY_20200314 8796693.744488347 1600.1833118322543 0.015441510124206522 2.7757227693519696e-06 3686678.2838037754 662.7070003721819 35022 5004 364083 MASK_20211104 463343159.36520046 7347.878650958126 13.152109488967973 0.00020854709835447878 128692904.24334955 2040.6256335741102 49150 420 92686 CVC_20200224 20415643.568742484 2052.0278676317193 0.030430205872462673 3.061362324060778e-06 6262437.315904516 630.0184013231212 86900 8088 120378 SC_20210206 432934889.9095819 11416.073226652838 0.009237917667957738 2.430298498999087e-07 53575945.95615757 1409.4685157384718 110146 31934 135248 WBTC_20210206 4528472871.583199 119481.601237441 38036.33060779648 1.000654481953148 427181365.308679 11238.227793597314 None None 144337 SXP_20210809 214667312.13104516 4879.957789045483 2.4708227205995974 5.6169930454108825e-05 111034262.29349059 2524.174129957473 None None 79966 NULS_20200325 12627065.873339972 1868.3673417130601 0.15088345028398437 2.2329108857251832e-05 6129501.791594386 907.0995691550603 22680 5181 563630 FUEL_20190826 2603348.4658828075 257.5305179654722 0.002829970962352711 2.799486497151655e-07 276040.1843251382 27.306667770436466 1 1504 None CMT_20200407 6433126.357900296 884.502266052368 0.008079414245818215 1.1105118139914525e-06 7635532.769818161 1049.500506969392 285615 1636 926050 BNB_20200331 1843126769.70464 286870.0497526381 12.186326182993438 0.0018980297249598676 276558085.3459742 43074.13561580109 1128377 61026 1691 RDN_20211225 13290099.53648626 261.37914377440904 0.2598380043786658 5.111425613957831e-06 16127174.472968133 317.2470973944426 33690 4898 706677 ONG_20200914 0.0 0.0 0.14784197603589902 1.431576812079483e-05 6922725.473305101 670.3382577603736 90977 16631 197799 STORJ_20200305 21187707.497584406 2420.3022554701665 0.14733408507284393 1.682121186777584e-05 1076088.1447599423 122.8575632207537 82400 7992 120208 OGN_20211230 247398960.1062144 5334.256788839237 0.6283781073251945 1.3491538262548745e-05 19533292.09551184 419.3878727282845 132444 7523 100062 POA_20210418 29882328.21413916 495.7036254333216 0.10419036569162389 1.7290299634791568e-06 1454765.6656016994 24.141708390877174 None None 274673 OST_20190205 9344568.165907191 2697.395712451022 0.01922471117274518 5.549390038125722e-06 160144.07396044285 46.22706269631039 17297 730 739768 OCEAN_20200901 198590984.10698837 16995.13055736159 0.5712616964424563 4.8939484278602456e-05 17475544.653254446 1497.1144541004783 None 961 128881 MTL_20200612 19747239.00146062 2128.2874203055976 0.3073522324264863 3.3051548632742636e-05 5398461.5578367505 580.5310516607682 None None 394171 ARPA_20200607 0.0 0.0 0.011383205106851086 1.1777733321574594e-06 2241667.063051134 231.9360550613593 16749 None 1048081 NAV_20211007 30292827.864354286 546.01788849253 0.42209103089551225 7.608046844395043e-06 259157.17790398415 4.671219725687127 58517 17042 980663 PPT_20210106 23905639.51981782 703.5167137823963 0.6583929436283391 1.931518171717604e-05 2143846.958194165 62.89373841574849 23672 None 755937 RDN_20211221 18323373.58961321 388.36145516013494 0.3583353977381299 7.601004970352853e-06 4339695.370102992 92.0535517456084 33484 4889 706677 DGB_20210511 1841473178.6098938 32956.77718661692 0.12880563864237318 2.3052297380302345e-06 132259969.89906032 2367.051776427418 213920 36692 157922 TCT_20200309 4614444.768988792 571.2009399694069 0.00793532765825463 9.857142809304944e-07 640849.2083620267 79.60530980070361 23 None 365886 OMG_20200626 206816741.36363602 22332.21925076073 1.4733657225843124 0.00015913550415904464 73089136.77346954 7894.222358176154 117 43072 539864 NAS_20210128 13035767.2373066 430.9170657887301 0.2874722673804311 9.45411068173273e-06 5471847.442043331 179.95284144113324 23372 4840 953730 DNT_20190405 9673693.53720979 1972.904009714992 0.016695320327054838 3.406414873676451e-06 741276.5814280941 151.24570975692896 60664 6429 1038838 AUDIO_20210203 32826531.38984637 921.7588238348737 0.2138329379132692 6.019217907918166e-06 2489124.28131715 70.06676144165905 25307 2495 56398 UNFI_20210422 55658558.75244722 1027.2250456243664 22.579077951050454 0.0004174505008884714 42350342.75208456 782.9890942837925 17203 None 90822 BADGER_20220105 155341477.8391846 3358.5089294148474 15.351297807087565 0.00033425110101746965 10584176.979762051 230.4543142414879 43366 None None EVX_20190806 10967924.323042102 928.603457752787 0.5192192704496933 4.3989411729946064e-05 2337182.020027089 198.0112604020924 18248 2915 1025264 RCN_20200321 21125683.63670872 3417.124362630976 0.04126184354458445 6.66067151835754e-06 2090632.3620248877 337.4792358477486 None 1132 875851 QTUM_20190201 149190330.1696541 43479.50877130416 1.8368051221135246 0.0005353120696716303 169667678.30836326 49447.35559487231 174308 15205 244025 YOYO_20210707 1975685.8721193902 57.838928129960486 0.011288819238557117 3.305483805697208e-07 242467.60923245424 7.09970404155782 10111 None 1096916 POLY_20190906 17386578.070880108 1644.9694296820296 0.03430598476170235 3.2457390958749657e-06 5064979.125875746 479.2050390868809 35239 5060 289476 VIDT_20210115 28604997.60106509 732.4118623421608 0.6198218815643909 1.580162735790676e-05 1472245.3335445698 37.53315723764367 187 1174 None VIB_20190225 3804689.9125872613 1012.4084506697528 0.022659074316826466 6.048688196140662e-06 854873.2637424096 228.20269474799818 32692 1122 2777721 AUDIO_20210108 27238166.77308222 694.9403361161341 0.17561482222843441 4.450179253640986e-06 2736063.593358924 69.33340412445457 24238 2374 55662 DLT_20211011 7622174.911588628 139.27427416210173 0.09238099204835959 1.68884842046085e-06 341418.64072259545 6.241590605548 15435 2597 None XVG_20190207 87044007.88924913 25558.07097677322 0.005597901957812621 1.6436694383469861e-06 1028231.5299822015 301.91181519672466 304766 53556 374789 NEO_20210620 3145290038.1875014 88229.13107434912 44.56274560975031 0.0012516354198013053 271415780.2117809 7623.264665535824 403542 111990 92050 ELF_20210217 111871899.76192643 2274.761333884522 0.24333916884773488 4.944954879630125e-06 32588371.045945726 662.2362736994548 82576 33308 415664 VIA_20210324 22309589.311381977 409.2417363128557 0.9625060253715305 1.7650153683643514e-05 1299615.7623945219 23.831973339693683 37889 2157 1369846 SNT_20210422 753199516.9681959 13925.436473046948 0.19409938503989543 3.588582566688866e-06 88281081.5121409 1632.1738990455394 129504 5921 113848 SC_20210202 329951654.45402056 9888.508282723611 0.007267199538860118 2.1759082868426455e-07 80060120.75037241 2397.1198156158307 109376 31109 135248 BTG_20200301 143901530.0344384 16780.056802397932 8.194538285752632 0.0009580996353794708 18054287.518040538 2110.8945598735518 75023 None 217881 FIRO_20220115 57140491.57211452 1324.8278581605734 4.467050115251799 0.00010357055519930276 1715247.663662022 39.768784375898775 78592 1713 200302 BAT_20210509 2120526167.195834 36159.56781877989 1.4199194335867042 2.418077767955994e-05 498671671.93741673 8492.220437996288 None 71297 21549 ONE_20190909 24178426.232872978 2325.8157827433056 0.008747111134344843 8.413884987579391e-07 2421498.2942112507 232.9249946889942 70883 None 133162 TRX_20200502 1049259998.7714851 118406.16535616489 0.01581227925194013 1.7904334390738425e-06 1696419825.605757 192086.58878824764 507942 72608 68362 EPS_20210723 109106109.56087029 3370.2260891242736 0.41644143647443105 1.2863640720463072e-05 16781111.084887784 518.3590415826227 18551 None 22794 ENG_20200331 9351364.42714227 1455.4757830896472 0.1126880534814142 1.7577137360520576e-05 747904.3203490003 116.65847944981458 60988 3596 415661 ANKR_20210219 180106785.64791223 3484.5575436813856 0.02782510498682348 5.381985299555717e-07 45841070.383708544 886.6667961822611 46074 None 5433 MDT_20210826 25997014.558593117 530.3787753739438 0.042843805060194425 8.743184443937112e-07 2658653.6323115416 54.25544964361688 34787 326 955933 EOS_20190411 6078255508.488522 1144508.213731868 5.84487590590477 0.0011013185090093104 4523208508.646277 852283.8347428393 839 63983 105033 OAX_20211028 14843334.60243716 253.6657363035095 0.25762962495681035 4.399103980414014e-06 591486.6568915806 10.099814053332329 None None 2965045 OCEAN_20210201 228035678.8869014 6900.080153241566 0.5448560290877997 1.643510169158326e-05 53414089.70427271 1611.1889181492575 40466 1486 65645 WTC_20190531 68265512.62933935 8214.897244779551 2.37706913538634 0.0002861648095058402 29835423.907378726 3591.7543465109957 56198 20190 899673 LTC_20190623 8842055698.191433 824317.8947962269 141.82264047557197 0.013221692378071985 6469626473.662427 603143.5513325451 447709 204595 158874 QKC_20190201 44863489.024286605 13074.8585536648 0.02839970754259835 8.276711579072853e-06 2893925.4660015423 843.3955306582473 33775 8528 205712 ZEC_20190224 335509121.6533144 81537.68922624974 56.29306356237979 0.013680719915227095 176402528.00512177 42870.531913791114 73544 15034 147645 DUSK_20210314 104104970.50467663 1695.0383504518613 0.28984992585432656 4.724862274078425e-06 8239042.186530338 134.3051563216287 None 13451 445908 MFT_20190708 23717482.083675228 2073.9377268734556 0.0026871610901926645 2.3494664543491622e-07 1512787.2446443345 132.2675777358897 18847 2121 960456 XEM_20200422 316432908.6382005 46206.264885907396 0.03521705534225573 5.144586633077e-06 7236035.315173577 1057.0563097093589 210387 17961 216672 ANT_20210408 394354328.1797377 7001.177352946583 11.150815198233717 0.00019843770633179393 131813258.5347088 2345.7227317237384 81922 2940 113796 DREP_20210722 0.0 0.0 0.48924796178615454 1.5203028254625949e-05 2993895.360716498 93.03314334554383 4080 None 319856 ENJ_20190904 65773252.0265747 6189.361119676623 0.07467838427112752 7.044037923423181e-06 52438930.62822369 4946.301658963142 48447 13717 25046 WAVES_20200106 88602469.7314144 12064.23871678172 0.885075574728598 0.00012053535430451644 51193017.26673316 6971.798398182064 141370 56857 25440 MANA_20200306 62451048.937012136 6895.991835403065 0.04726777869281965 5.21789155154174e-06 30165669.569534447 3329.9891965810534 48014 6771 51080 BAND_20211007 346501587.882661 6242.235983981569 8.361456793759265 0.0001507272372241024 42162475.109270826 760.0390152698724 109239 5910 392188 TVK_20210603 45955513.931183085 1221.1526958670436 0.20894745871943537 5.5559507993017874e-06 6586196.883758975 175.12816889443192 48868 None 58369 STMX_20200730 28580441.343492676 2573.816784363077 0.0036566631994789465 3.2968981290256415e-07 76117740.17790827 6862.880760086545 20401 87 227126 LEND_20201014 647264125.0376713 56656.464063797284 0.514681417399121 4.5059911093190946e-05 13861524.771230863 1213.564455006091 71674 1417 14275 BNT_20190414 43167276.54931262 8509.305980324278 0.6636498999487809 0.00013079192163458495 3589222.360196264 707.3628575851822 839 5134 158493 ETH_20210723 236554595198.76672 7314181.680371712 2027.5334479167045 0.06262936283076523 21655718476.41885 668932.9101890415 1447528 1045257 3522 PPT_20190615 36553631.42307815 4201.286221670473 1.007815923538193 0.000115987813238142 6046876.750463077 695.9247168316793 23985 None 688169 REN_20200719 153008390.31885 16685.07830460295 0.17442185002757557 1.9027564542532333e-05 10121803.770082768 1104.1808952929266 16368 914 163395 LTO_20201201 37801630.336408064 1922.724121683136 0.13808135734863086 7.0292681769678024e-06 8128434.579408459 413.79189497203396 18459 647 1484481 COCOS_20210828 31525698.315176293 642.6292211628675 0.7483986016304709 1.5256457078358428e-05 2357500.873483493 48.05876281721398 115388 1205 313765 XTZ_20210725 2364325678.657519 69200.97311611965 2.8174667752221003 8.246368799753346e-05 94636957.31317261 2769.9040107737064 125389 50722 65574 CTK_20210218 76543652.1969306 1468.2093947622207 2.186986016414058 4.1944087848979e-05 19613515.786915805 376.1665703481014 16649 None 218849 EVX_20200625 5102302.21092011 548.4086240011068 0.2330934339199308 2.5077518914951912e-05 3885436.2585205403 418.0173573630527 16643 2838 1214977 EVX_20210421 30717131.83729923 543.6800167961997 1.3953300279939378 2.475131712516659e-05 7421205.51947123 131.6424126036705 18076 2824 782921 BAND_20200223 6644922.754874992 688.3908955059876 0.37206626669018444 3.854431019999376e-05 693414.3055710073 71.83445123579988 7971 1027 671457 ALICE_20210616 98850939.65421584 2447.6070702968573 5.6761541072865045 0.0001405800557128889 32711721.346369322 810.1639811776487 79022 None 45300 RLC_20200325 20793146.577355865 3076.6637622924204 0.29593887432396 4.3795733245991976e-05 318991.0667068164 47.20720688439504 28301 3561 324809 STORJ_20201018 62326303.131527744 5486.805675333258 0.4331000461331011 3.81092956006262e-05 25976509.46724334 2285.7224024755915 82424 8408 92855 PERL_20200422 4343054.404238047 634.2063107658537 0.012324299350150204 1.8003613613528535e-06 1454067.912892262 212.41351031629313 11645 478 526137 KAVA_20200701 34533625.79466212 3774.3544356541993 1.260230769843048 0.00013787038057173006 15915974.071807437 1741.2218896410282 24896 None 340069 ALGO_20191011 111706449.2901853 13046.04764514169 0.2531965011430886 2.9570482621956654e-05 79865913.29735109 9327.4337938476 12482 635 276742 PSG_20210421 0.0 0.0 34.496721965413876 0.0006118183374921103 89230696.35955496 1582.5554774363973 8973073 None 26882 DGB_20210703 647815671.6347115 19166.22174600978 0.04481589739415658 1.32315257587336e-06 15625437.682446754 461.3282187979531 222101 39979 90181 LSK_20200506 169221607.7689681 18869.83256904876 1.2139319626706013 0.0001351736771282258 4725177.594057806 526.1576843792293 176195 31273 170063 HOT_20190531 391151614.3181907 47098.306812853596 0.0022018908074027403 2.653706062509242e-07 50294163.873747945 6061.423533441659 22057 6300 299918 KAVA_20201111 46061494.792861 3015.8820134923512 1.5650421176557046 0.00010244971647214547 13765118.966181712 901.0828011472769 46329 None 85552 AAVE_20201231 980356484.3757354 33969.378430442324 81.41681167802331 0.0028232270832744496 230388387.57396632 7988.997874824962 88814 1850 24542 PIVX_20190426 41676186.7294058 8023.338498857468 0.6993902268387446 0.0001344173222686156 4498820.8421449 864.6381201245799 62984 8592 268196 NAV_20190708 12370965.889288343 1081.7274552498582 0.18876024625936805 1.650535153566969e-05 171450.201140502 14.991746921101608 48359 11246 893210 LTC_20210902 12088044122.03615 248543.72596731712 181.11743498435027 0.003722644792029537 2774015017.4297585 57016.44658637589 191062 341455 106402 POA_20210125 6938517.879149168 215.99640697852064 0.024735551724623613 7.708359982245721e-07 356606.02585339086 11.112942414700834 18222 None 322201 POA_20190410 8854330.50480295 1711.579296085813 0.04020747005924837 7.774237015048423e-06 520443.93548913824 100.62942288025091 17220 None 742810 MTL_20210725 105717327.51523203 3094.2604627845653 1.6364004850260812 4.7827952399186264e-05 47307224.69533335 1382.6735640633535 57257 4217 206234 BNT_20190712 42774186.78601643 3779.9235674860315 0.6220517397739024 5.4814687809585546e-05 3057686.8471064335 269.44085069922806 790 5128 145805 TRB_20210617 80009130.99444313 2091.79370543177 46.06340545129633 0.0012027346029641003 33130069.027040415 865.039829926194 22509 None 262407 SYS_20200421 10786175.647548525 1572.502241930943 0.018500828913927382 2.702425950521404e-06 286317.79585438035 41.822593204485436 58364 4499 804811 CDT_20190225 4734138.182700009 1256.857502206684 0.0069461143159223054 1.8542187153939897e-06 186766.2384312964 49.85599702976722 19469 282 414605 CHR_20210823 228052823.12881365 4622.684501158534 0.4023080195623973 8.164056223149373e-06 76264350.11279951 1547.6361689734479 85509 None 83278 BNB_20201101 4195740161.800611 304076.3091303066 28.38586753473156 0.0020571746852878067 256734113.1870628 18605.981228230045 1312148 75306 670 STORM_20190708 18757724.728884432 1641.026465644093 0.0030381324412542916 2.655486674038745e-07 705192.8846831913 61.637546884889616 None 2575 3762880 ANT_20210527 187857176.7374968 4794.785589545137 5.358483728340449 0.00013677994962274785 69863814.85717955 1783.334532878676 83996 2993 111610 RDN_20190314 15906686.840560852 4113.021722919885 0.31287814636591205 8.093498561084924e-05 1133502.0851865653 293.2131119415162 24998 4455 714743 BAL_20210823 326950753.2415723 6627.368865318666 30.186043132497787 0.0006126188722547925 55018225.56249781 1116.5823605834164 None None 8467904 VIA_20191026 4562632.060074173 527.8838930979128 0.1970296343778132 2.279578302207598e-05 285895.06381838943 33.07726709470283 40409 2201 4136825 VIA_20200306 4879786.423974425 538.1900848598616 0.2078535501448181 2.293452276608897e-05 1383934.7580517135 152.70310847808312 39593 2187 2317316 BZRX_20210523 41271046.02371555 1098.0996996674864 0.29359755321364966 7.811243968646699e-06 10931950.923505038 290.8475727474164 None None 131291 LOOM_20190803 23117093.224061582 2196.96553278538 0.03804425020815096 3.6146309167842576e-06 1245531.343478033 118.33946200351058 20771 None 419085 GLM_20210221 427897640.7845512 7610.688113637786 0.4278976407845512 7.610688113637786e-06 56240050.77845961 1000.2987751585226 149019 20600 179505 DNT_20201101 6865855.370771165 498.2213929448588 0.009139585852706082 6.632148433914507e-07 149818.50739470817 10.87159303717278 58198 5959 606726 AE_20200711 54704270.50536195 5892.188611184564 0.1513526754177826 1.6302202284505526e-05 11484909.766025778 1237.0400569942449 25376 6345 446163 GTO_20210523 18823504.11518943 500.77006283225387 0.02825801007311857 7.524468727869728e-07 7348799.171039872 195.68189482134338 2082 None 266465 SOL_20200725 22240716.375305213 2332.523997454719 0.996204458635239 0.00010443774823559256 2030487.6493153644 212.86750533639596 80230 2009 132942 CVC_20190305 19588697.27982384 5275.328697441094 0.05715990419054765 1.5393432172233306e-05 1165273.7639966148 313.8137283849956 88316 8200 405899 DCR_20200324 132143932.77675268 20512.062874173025 11.901344652337237 0.001835952260611354 37823812.71942123 5834.862907992874 40746 9749 200827 ADA_20190914 1423985160.856117 137511.3585701149 0.0457576836247777 4.4203333936405815e-06 67183583.02113278 6490.141370965879 154401 75292 100209 HBAR_20200502 172085721.18694466 19420.308620834443 0.04204424792832409 4.7606942814614296e-06 43744096.02127388 4953.169054925209 38864 6448 102046 AVA_20201018 20518387.780976787 1806.512889503379 0.5322401879226244 4.683699577962414e-05 364825.7104351066 32.1045660355726 None 8968 72238 LTC_20200607 3032639391.2564874 313562.575059503 46.7525912561538 0.004833909661580277 2104956593.542735 217638.63224145956 132504 213836 144329 LSK_20200109 76368944.59296438 9489.93720817421 0.5547694471845391 6.89510665973164e-05 2821114.5267479517 350.63007993616094 178891 31074 161971 MTL_20190901 20340635.206265077 2118.9792451756443 0.407332135186744 4.243567916577911e-05 9137656.42341879 951.956948188112 34210 None 253517 AE_20191019 61396308.82570633 7716.9356170171095 0.1841778590006894 2.314557780218893e-05 28563950.214425113 3589.623289210637 25034 6350 393899 XRP_20211104 56780580558.89655 902358.3253327856 1.2088823954696684 1.9182955740588505e-05 7581930544.08609 120312.64463811844 2171554 335770 21985 PNT_20210708 22791114.668403484 670.7394163077453 0.7185120658200002 2.1147288873707347e-05 6368895.583501585 187.44970490798667 44753 321 307388 XZC_20190512 52630623.90655793 7208.135931694179 7.067580948707765 0.0009703271495880722 3238302.499633002 444.5952379996923 60356 3965 353652 TNT_20200530 15793100.304432286 1675.7073396630353 0.03689517982644479 3.9174336380419224e-06 972036.2949343906 103.20826994436545 17994 2602 456220 PERL_20200905 0.0 0.0 0.03700104939906635 3.528865947635389e-06 2783718.725324202 265.48896253303127 13189 506 1250088 PSG_20210429 90047839.32902291 1645.0730294791092 42.747348171738594 0.0007807430448828454 204376613.72950405 3732.760663069884 9007737 None 26882 BNT_20200417 12903781.0457856 1817.423624683468 0.18474890617532186 2.6054528390652394e-05 6980130.970413667 984.3848296808358 737 5016 138596 BTG_20190509 338819661.46538156 56921.32297440344 19.361345745607956 0.00325029078056937 18131754.608121127 3043.872859493308 73700 None 432620 ZEC_20200106 257721025.13739994 35091.662557673735 30.69720215960649 0.004179411236897713 134074305.4870225 18254.16062409323 173 15427 169401 OG_20210106 0.0 0.0 4.202674917535472 0.00012322199722315802 2182480.9731126186 63.99011812366961 616010 None 397078 GVT_20210819 19713925.077960815 437.3564273758098 4.441348132881137 9.871375447748349e-05 592316.9309406483 13.1648829014 25848 5699 751259 XTZ_20200412 1391734719.192588 202217.0247690134 1.9714404417317302 0.00028644193571270417 185051510.1805624 26887.19966407816 59021 23276 99470 APPC_20191019 3508521.2000248404 440.9148355096268 0.03175866632182608 3.991102330290588e-06 65562.53238268245 8.239224315047704 25010 3285 831430 XZC_20191108 43977605.418534875 4771.76131239018 5.016862862953521 0.000544144169794836 13790508.402582143 1495.7603886652805 61512 4063 207316 QTUM_20211125 1494455648.7439094 26139.404572305517 14.385398869523415 0.0002514976176907187 198823547.28742087 3476.0001399433504 266592 17498 143970 CVC_20200701 18052011.884783313 1974.956162010847 0.026943301320572106 2.9476957641952937e-06 7675739.991061179 839.7540445958621 85276 7991 96333 ENJ_20200713 163130402.51938263 17579.050072630493 0.1769644972931188 1.9046474312042906e-05 7629302.574011008 821.1325871426859 59582 15641 100201 COMP_20210821 47810.65321988677 0.9838088424009697 5.222046337744253e-07 1.0666536398458332e-11 227.52103995541015 0.00464733803022475 2564 None 6343475 STEEM_20190622 121021540.55011842 11921.837159966479 0.3873009678120114 3.815303498173574e-05 2020563.0895866705 199.0457567800931 5752 3748 341474 WABI_20200306 8077680.416333508 892.1985281779625 0.136685837715395 1.5097267649492036e-05 542946.1002711923 59.96965546723132 36887 7780 3668499 XRP_20190515 17161276914.8212 2148633.3345960868 0.40749103338427184 5.098633649286105e-05 6817202849.651052 852986.1271931872 920294 200753 40096 HNT_20210708 1138256348.4894545 33500.431595230526 12.755379712062775 0.00037541707689623207 8836198.469160635 260.0675068128399 61514 40953 2473 DOCK_20190509 6257981.534061774 1050.5521494522022 0.012169580208592174 2.0431997131954112e-06 2376012.7940196944 398.9183337533773 163 15295 217238 NKN_20191102 9151098.512732768 989.2736293883002 0.026145995750665046 2.8264960839665724e-06 2194010.9899505135 237.18214943552158 12306 None 224602 SKY_20191118 9738277.525222115 1145.3690688418185 0.6092126358518917 7.15912860586428e-05 208284.96375396635 24.4764923514315 16327 3802 1289341 SNM_20210220 11200585.987289377 201.2969078793275 0.025678505090401576 4.6000050798206506e-07 1313424.3063282813 23.528466551303918 29088 9494 None QSP_20190227 0.0 0.0 0.016639505611351222 4.368229824793547e-06 293795.65892081044 77.12770978106842 56547 8563 788091 VIBE_20200430 1699106.7465039552 194.61698048 0.009030369209463828 1.03e-06 143395.80703368873 16.35566363 19098 None 1007181 PNT_20220105 33094634.998262905 715.4048183083038 0.9757063246339015 2.1205980433810728e-05 8189593.020467258 177.99243990558773 82991 392 340029 MTL_20210813 179850203.83101892 4045.307955054953 2.7849307760568527 6.263569805655799e-05 206487786.57057604 4644.103459660846 57522 4230 202262 SC_20190401 108280911.00642353 26387.586118130905 0.0026996842634390006 6.578930828101241e-07 5663292.117716148 1380.1023922080353 109887 31056 238121 APPC_20190811 4258163.6172643835 375.79643700659216 0.039038475396819525 3.4472081735863477e-06 216681.0641356288 19.13355293097796 25332 3330 1400807 NEO_20200325 488540678.0456544 72205.42087565851 6.906957670119969 0.0010221545795663033 499918154.9818938 73982.44725513196 322108 98981 219445 BLZ_20200331 3223599.0031495593 501.82549390895167 0.014774896516383954 2.3045955408111694e-06 2437005.1040882426 380.1252407817455 35999 None 582195 SNM_20190723 5722277.399268007 552.9267928714214 0.01365597499804812 1.3208978362390222e-06 76701.9186116805 7.419125938941131 31194 9958 14424702 DUSK_20210125 21331918.90395144 662.496196740652 0.07036883602107517 2.181174531139989e-06 2562939.587344302 79.44167999441652 21398 13350 977461 BEAM_20191012 31288299.42618129 3784.1279267426485 0.778883212105267 9.420114767030933e-05 49132086.48326698 5942.224536655081 11661 1376 186825 SXP_20210523 173786300.5686549 4623.769961546554 2.0101574667933018 5.349208200943618e-05 232794261.32343584 6194.862802417367 0 None 53111 CHZ_20210804 1382949371.4450293 35994.95883758708 0.25874301626628904 6.735374263485085e-06 155355595.41750914 4044.0824033163376 366553 None 53111 OST_20200530 5712091.105161 605.7006164908292 0.00833166161797342 8.84020632789157e-07 1683962.5255746879 178.6747572945553 17674 753 805326 KSM_20210128 856047513.2947613 28266.523822060622 95.30842623649286 0.0031350505153214564 126694061.68571545 4167.44142212988 32661 None 134935 RUNE_20210325 1075725011.478795 20429.171332950722 4.634982426045326 8.802328578074722e-05 55644465.694444835 1056.748064116868 None 3026 105445 FUEL_20190325 6062777.663885749 1518.176241248036 0.011331638588989364 2.8397440534803898e-06 5752613.929386066 1441.6230335668954 1 1526 None RDN_20190725 13399782.77418174 1363.1403824145455 0.2645554594275626 2.6944508346928376e-05 149068.4502641037 15.182359536619547 25659 4402 778116 WTC_20190207 24661205.459695607 7241.082468464042 0.9313939043150209 0.000273478118609901 1923519.9611860653 564.7885579416835 54510 20422 741681 NEBL_20210203 19868805.948709473 557.9135654439967 1.1428793291746537 3.217047904696948e-05 4451600.801977365 125.30643145755951 38990 5870 713465 STORJ_20210108 49820541.22563332 1272.7963528381476 0.3477420909059532 8.809520573769345e-06 39422742.77105899 998.7156360947599 83130 8563 92086 POWR_20190318 43776999.08953769 10993.063730117381 0.10534127490082547 2.6454085369149288e-05 1265335.2292984915 317.7604050071363 84851 13282 634986 DNT_20210813 129559635.41664308 2914.4052010145547 0.17285543529073563 3.888066582319994e-06 18834465.3381352 423.6468188223211 70483 10249 294360 AST_20210707 22393303.928503633 655.6134735952613 0.1306532009737932 3.8254813455400416e-06 3881200.7560272557 113.64023980902175 44181 3695 208588 TRX_20210201 2261454306.6984525 68417.06687154683 0.03163174515604489 9.541437013961543e-07 1697690360.394583 51209.332785798055 574310 79128 29522 FIL_20210212 1998338676.5334198 41925.40580219129 40.163738214799466 0.0008398666367211773 668497999.8765751 13979.006730112867 50944 None 48258 BZRX_20210104 25629284.669093296 766.1182869970419 0.17784381405787913 5.402679910115718e-06 9386826.0831616 285.16041993309113 None None 145216 FLM_20210813 0.0 0.0 0.5100166991854964 1.147189199571879e-05 18100719.077009372 407.1425398970609 24643 None 72660 STX_20210221 709835211.1624807 12654.9486179803 0.7770169710445871 1.3821723845831087e-05 16032020.758657355 285.1805969165607 52014 None 59729 FARM_20211221 58167757.186818674 1232.9246806035483 90.94356223548401 0.0019295522329397159 3110495.696323668 65.99547861177716 None None 114343 TOMO_20200605 28409468.50945232 2906.6513788838456 0.40295296974368894 4.121815920137234e-05 10616619.363942795 1085.9766275000138 23997 1551 184288 CVC_20200421 12264317.171185927 1790.9992403103577 0.01831856701909772 2.6771311562656025e-06 7589072.193810141 1109.0901158380448 None 8043 107790 HIVE_20201226 42572950.03116067 1723.9425705522992 0.11450455906870405 4.643681516861754e-06 2074335.2124331235 84.1237428805918 10040 97 156100 GO_20200506 7825490.947652244 872.555979862585 0.008177439173310645 9.087912889193988e-07 1167903.346881321 129.79373682285114 10734 676 1079767 OCEAN_20200913 127751597.03669351 12246.30399435846 0.3675867148027515 3.5202901403298154e-05 9562814.115950616 915.8078594938314 None 994 128881 IRIS_20200807 53885579.485779814 4580.035931706859 0.06727947856805869 5.717213009475483e-06 9587287.954983288 814.6996467335974 8740 None 1075049 VIB_20200718 3060479.8586359653 334.34083073611566 0.01676388539925987 1.8313635866408308e-06 482082.6496911084 52.66491564268282 30742 1101 None ELF_20190623 96544253.03109714 8992.880991696862 0.20871256347883885 1.9457635963500063e-05 39643483.59020929 3695.8411087768045 86616 33236 1215448 ONT_20210511 1912913127.1832004 34261.04500915264 2.3405009748746672 4.1860602514366845e-05 1175206695.2091315 21018.944605654982 132542 18856 138836 CTK_20210324 85042604.26164147 1560.6337749801899 2.381563777724632 4.368884064721861e-05 11750735.769039964 215.56257585998515 24186 None 213642 NPXS_20190903 93584909.81624489 9056.507037078858 0.0003956755930060524 3.829077571903194e-08 121663150.17388158 11773.72695946839 None 5466 165759 SNM_20210819 109506854.87894425 2428.6882584 0.25024333299100715 5.55e-06 1011321.3559443173 22.42950275 32377 9711 None QTUM_20200323 110610467.11375563 18970.62038277086 1.1488397311188001 0.00019695566696534546 335982739.93723845 57600.46666277776 None 15150 109238 RCN_20200410 30416086.622092843 4173.375995247658 0.05996337438586976 8.22379450374251e-06 2130975.2517610327 292.2567774500255 None 1135 866129 DOGE_20210909 33662035510.82945 728751.7162218223 0.2565693309193465 5.554487047499145e-06 2760848633.9289517 59769.80148919169 2091518 2157327 29714 GAS_20190826 23723082.424644407 2349.4666303429435 1.7022420950685864 0.00016852880915000154 1524494.4479229671 150.93107767018 324121 98211 189804 DASH_20190816 848848378.4678897 82485.37458639179 94.58634836199205 0.009178481849114727 283390673.27410597 27499.699437598654 320260 29795 87828 STMX_20200721 20934809.300426137 2285.013717548118 0.002602579383507758 2.8405192392433624e-07 8653100.478696628 944.4206983502545 19791 81 227126 QTUM_20210602 1231469585.2994413 33562.30122325772 11.886275186970266 0.00032410238937865903 433218756.50899106 11812.551190311486 None 16673 104838 POLY_20211230 431182456.49196094 9296.854736123158 0.4809020335188971 1.0333989570774903e-05 13561056.24431347 291.4103165087166 64057 8503 142188 ARDR_20200518 39665965.3533375 4085.834380502723 0.03970569109580731 4.089926372287829e-06 2669996.142854515 275.02575417256907 63629 6315 1998735 CTXC_20210610 34838644.71560629 930.0529613934533 0.19509159268447981 5.208880300114675e-06 5737269.778390161 153.18318495370625 19825 20569 441880 LTC_20191127 2995594718.5046024 417825.8188975417 46.90301696526966 0.006553601656635897 2239767969.0337987 312955.2856527111 449985 209852 165449 POWR_20210408 195338750.3522255 3467.89981184081 0.4536167320551602 8.068037690835617e-06 10798166.839948175 192.0564452327992 88715 13337 290549 SC_20190805 112667515.84703894 10293.089368487334 0.002697812404234628 2.4637682109632853e-07 7977134.63716798 728.5091692357465 109538 30765 197380 DCR_20210703 1827151020.8620074 54057.94142170143 140.3289032023059 0.004144221963457102 26677497.094965976 787.8453181639658 47008 11341 133920 COS_20200318 9769347.123197084 1799.5201626927358 0.004973952223521686 9.247595030442324e-07 6371445.783044999 1184.5821534309466 10347 None 117572 UTK_20210128 96439696.26495516 3187.9971155898133 0.2146001062154061 7.058999924196053e-06 6682927.294145338 219.82646744558326 57759 3167 109478 FOR_20201231 8832987.818239221 305.90640237510377 0.01586502939851063 5.501392126721022e-07 2168397.8317122515 75.19183519509016 17024 None 225790 REQ_20190130 14939034.689248852 4376.583203685071 0.0204763100027049 5.998256348397562e-06 159438.01464775988 46.70519656180709 41877 31123 456080 YFII_20201111 67820503.11867785 4437.573079303925 1705.6515299071784 0.11165419362708397 196404310.3347094 12856.884604382778 11564 None 77375 NANO_20210711 579313638.870496 17179.348368565203 4.345568124666188 0.00012892740778176325 9840653.55734669 291.95951314756 133659 107205 57343 CTK_20210117 26619208.494522754 733.6009859666051 1.0495827157215336 2.899730862388844e-05 4491032.254973134 124.07583164874121 10939 None 186270 BEL_20210428 121324645.37532733 2202.3018247514806 3.861395635379981 7.007268312442219e-05 28565264.473853465 518.373384871938 16857 None 318373 GVT_20190601 16277822.264844034 1898.0743726937346 3.673533662584393 0.00042822765425342145 2647921.2659449754 308.6709464275441 21397 5783 170487 STEEM_20200718 72875711.0443605 7961.276301918244 0.20267448241071415 2.2141088309077004e-05 1666444.8189274508 182.05006105951705 11556 3863 194139 AMB_20191022 5047003.2729279455 614.5382572648662 0.034905382392835686 4.250184060691659e-06 678373.1962426129 82.60075519076926 19188 5591 589761 MDA_20190929 13335061.531691616 1628.084959562812 0.6793950023847911 8.294331087745836e-05 575059.7086107819 70.205632977839 None 366 3013477 AION_20200324 23615048.60626255 3665.649656474625 0.0592911639443843 9.150082030092978e-06 2239363.0828449205 345.58869382987785 None 72542 244642 ADX_20211011 68132635.30539677 1245.1617332531537 0.5197535215703317 9.498229599372734e-06 6230719.960229439 113.86321842101374 None 3921 9788 HC_20190904 95633950.17179862 9011.644897119808 2.16061693618782 0.0002035962391248092 44157779.197308786 4161.014209459239 12914 853 399646 AMB_20200423 1243181.9470728298 174.83366757790355 0.008597922152975522 1.2091603060142829e-06 36610.33654263066 5.148658588616464 18945 5476 839960 INJ_20210513 433555515.9192794 8405.791482288858 17.530725024502907 0.00034780567402436645 292024483.6396843 5793.700615459741 68500 3393 92186 ETH_20190923 22812625864.180454 2271069.8910800167 211.61753840452246 0.021069685925255044 8770978542.694231 873281.8864873878 448198 445991 24076 GVT_20200506 3751252.437138056 418.30063161716345 0.8456767924799496 9.428311841499193e-05 168378.4285611087 18.772234806164036 20417 5560 208818 WTC_20210202 10638156.796465063 318.6055519881781 0.3644986380091041 1.0914860601857475e-05 3034065.2809963403 90.85465937511525 54839 19019 815573 STPT_20210325 80635044.07594618 1532.7332636823942 0.07892817284146171 1.5003359110220804e-06 21978549.75178624 417.78754375862275 None None 1177944 ZEN_20191020 29480243.65946225 3710.185889657353 3.90819804797314 0.000491622797558915 3157032.2164566102 397.1316169719062 36037 1835 95686 AST_20211002 44207964.37174561 918.0617911435993 0.25530508421324805 5.30038232968361e-06 1895679.5405648835 39.35615450243141 45932 3714 204668 1INCH_20210117 159152191.34084275 4386.37004763088 1.6512222705814212 4.5620116644475905e-05 261832774.0919613 7233.93931164459 None None 17332 XEM_20200905 1227498166.2521863 117001.7735671074 0.1367312603112458 1.3040585798362608e-05 165633020.38204673 15797.057735131344 210520 17848 239986 WTC_20190629 43823264.28384863 3540.806496275813 1.5006615074662697 0.00012121351085432555 6145001.492837963 496.3525761446261 55659 20104 829543 GXS_20190201 32419678.048996814 9448.446581359236 0.5403279674832802 0.00015747410968932062 782840.5831165684 228.15240238099443 None None 278365 XZC_20201111 36909660.60555896 2413.0933156600845 3.3004728390654567 0.00021605329516164443 4120759.280774293 269.7503250568507 54 4201 276944 NULS_20210708 45515741.03483144 1339.5901292947847 0.4014696916526062 1.1815198622893097e-05 33207340.032305 977.2875172832136 56188 5368 232645 GRS_20190703 26397367.986868117 2453.196483391836 0.36326886009109016 3.3664417108873335e-05 854935.838247346 79.22759097178344 38599 107027 None PIVX_20211216 34504318.86975709 707.2091344807573 0.5115732009103173 1.0478649284705924e-05 613309.3901838266 12.562530623803772 68886 10388 315235 KNC_20190905 26332268.61891404 2493.660180825292 0.1569520607478565 1.4860178879844924e-05 6563707.900270599 621.4500978726685 97752 6699 205924 IDEX_20210814 41030255.915818155 860.1788239371566 0.06933458410713643 1.4523623820424999e-06 6327408.985548642 132.54122606704541 53457 1974 8041913 POE_20200315 1958085.5291703253 378.81990921928315 0.0007797247153540572 1.5049400874486304e-07 26648.33347008719 5.143372335532907 None 10452 759696 OAX_20200610 2519345.081706675 257.7279344476684 0.04813363410759604 4.927035921703503e-06 238283.8662855161 24.3911184043728 11846 None None ATA_20210813 84874025.17988975 1909.041868867352 0.4930727625802176 1.1089667629231205e-05 17849193.14343531 401.44504915427603 66805 None 92285 NXS_20200607 12053565.796914045 1246.289664648711 0.20144481252674692 2.087311420596049e-05 126552.43503744743 13.112988100541452 23349 3523 680331 BCH_20200306 6105489572.959797 674182.5311650829 333.253486709677 0.036811833394614066 4776597303.446318 527632.3013562718 2604 286010 124622 BCH_20201111 4778749847.112582 312426.85855372646 257.0458665506128 0.016826560672944475 2180639719.889575 142747.54558377512 None 336169 124397 TCT_20200913 8868279.776513921 850.4720710199681 0.01524970472641095 1.4604343314894221e-06 7281632.499122115 697.3476720889842 None None 525749 AR_20210909 2431996203.724108 52494.57794551096 54.757233829119656 0.0011854431118906307 215111608.89326808 4656.965979070818 31047 None 72192 BTCST_20210916 141962699.60195044 2945.7045473724834 19.48745932781887 0.0004043201561727799 3756761.892218564 77.94420654915433 63412 None 1943121 DNT_20190324 8186311.473125961 2044.0906237584518 0.014088580524729718 3.5178646020500422e-06 427442.133322116 106.7306637172714 60441 6449 957318 PERL_20191026 7505787.456271287 866.9424369054941 0.02872341196722678 3.3176458715603655e-06 4043995.368389423 467.09438815467314 None 373 274565 HC_20190601 79640892.18795022 9283.821948238936 1.8099736731079274 0.00021104686124026888 135410010.4701711 15789.101308402001 12700 805 744090 OAX_20210804 8296514.661707682 215.24246307103905 0.1441730192451743 3.751597502773527e-06 1043299.5322039298 27.148213584991293 14148 None 1659116 TOMO_20210813 233234108.679073 5246.053521941455 2.7828339330125123 6.25947549806203e-05 9478020.667692304 213.19072415981913 51017 2226 136634 RIF_20211120 206154183.54561538 3546.3697161936516 0.2585808985467678 4.432990316750801e-06 1363448.3204640865 23.374322063136745 48463 3543 383088 WAVES_20190830 112065763.4062307 11797.96043804408 1.1191575149845783 0.00011800067357243937 9455814.339340622 996.9932259566693 142684 56912 38385 ONG_20200719 0.0 0.0 0.18776463167427604 2.0477135796213982e-05 11077800.366720771 1208.1168876692543 87555 16567 168500 XMR_20190426 1049708603.9800076 202259.76935700641 61.69602447664809 0.011879362362799871 440650255.05849415 84845.72708702403 316999 157587 117211 COTI_20211125 355851208.9927346 6224.1651180637255 0.4123679220058192 7.209362141236998e-06 38706617.997888245 676.7015849631492 198439 9390 53932 UMA_20211225 612972667.6699079 12059.557908177643 9.61033978908111 0.0001889911019374218 35061592.34051326 689.4999674873976 None None 199741 TNB_20190804 10570815.616622474 979.6877764853801 0.0038262228961164946 3.545447682484215e-07 590632.1942111116 54.729052672068796 15680 1474 836143 NANO_20210202 470315670.0300085 14087.573465812535 3.536271443454799 0.00010587236621290227 53941242.256106675 1614.9458675429312 104214 61489 188898 RDN_20200730 18613158.332612284 1676.2712723894592 0.27932722536115545 2.516777099272132e-05 1940381.2210999038 174.8310432256582 25794 4349 1173290 NAS_20210825 23696189.12673802 493.1079261795 0.5208840596761651 1.0839382529954953e-05 5973513.402969398 124.30635113474769 25475 4942 625809 WAN_20210304 138576363.5951475 2726.1112494337353 0.8375739348339879 1.65305228948383e-05 6730006.166373829 132.8247171847534 106132 15885 322886 TCT_20210115 5431314.624418499 139.06518415119353 0.00939720725613905 2.395707084295645e-07 500563.31782245816 12.761271024030833 None None 2545563 LUNA_20201030 137451072.9025873 10210.387889359405 0.3016325183161902 2.2414921968231963e-05 2444798.985726796 181.67795302373204 14830 None 170162 FTM_20200901 98901098.32483104 8463.813631093291 0.03951835221804092 3.3855022822905167e-06 53130644.60687057 4551.655331772932 24608 2586 147748 ALICE_20210427 154972620.18039593 2875.84777335467 8.938967883876327 0.00016582475180689917 75858645.89612228 1407.236416054447 None None 73832 KSM_20210422 3186447967.30804 58807.89727289875 352.0452459205988 0.006508745156182161 297535388.4239577 5500.946371631998 51431 None 86081 HOT_20190524 362581991.7490562 46026.58890081693 0.002040670486805382 2.594901532508396e-07 41779970.67219051 5312.7102404045545 21758 6201 277166 FUN_20190812 13946128.816848418 1208.4489861675788 0.0023216807587356676 2.0104092950181923e-07 43596.194277950664 3.7751182574963913 None 17452 379326 SNM_20200612 3695057.5860763835 398.21735408 0.008461942870192703 9.1e-07 393967.1696379586 42.36735344 29424 9614 7325463 KNC_20200129 49513614.23155212 5314.462964304004 0.285379236411923 3.0520548087704487e-05 21343524.232914332 2282.6329830509426 99563 6799 187251 XRP_20210128 11407608804.15268 377100.15037273726 0.25189792881979306 8.284176144233065e-06 2101770534.4904563 69121.00232048317 1075437 232920 12972 BCD_20201231 86591577.60305163 2998.630668570977 0.4603949194061293 1.596475443683082e-05 1662221.6429583023 57.63955949740977 27880 None 2009322 ATM_20210108 0.0 0.0 6.300496356869078 0.00015965815310570975 1850632.1199144886 46.896068120334505 None None 231684 BRD_20200719 7693137.447589963 839.2392885148732 0.11796253076424519 1.2868454653830791e-05 608004.6039649703 66.3268211079706 211 None None YFII_20210727 99674137.67441405 2663.274251998367 2501.848857172409 0.06705207668220213 56518158.46301722 1514.7437401482985 None None 545530 BLZ_20210727 44247168.19606144 1181.866169471514 0.14922220646581458 3.985807109155022e-06 25796928.47658297 689.0501310197656 65047 None 404484 REN_20190131 14079702.51636313 4071.192257595715 0.01871388950587634 5.411182656542748e-06 339575.0256034794 98.18923471593727 5528 801 15461597 TRX_20200331 758711403.2919053 118344.17350065126 0.011471253962243135 1.7892917692914e-06 1065456432.4644526 166190.4122619944 502548 72445 51903 GXS_20200412 26417002.1255226 3839.1163938539407 0.40968083161196434 5.9531001888840026e-05 13712167.373838946 1992.52442107242 1 None 493162 HBAR_20201208 253388615.68420428 13192.473865064416 0.039561014799036016 2.0617047272648147e-06 13604835.319732193 709.0099542399668 None 6780 190045 REN_20200502 58715233.910299405 6625.856035156945 0.06694081195668806 7.579746490456316e-06 1934990.2374422818 219.1000532053602 11862 878 405575 ICX_20210614 591601661.6651355 15200.268340846382 0.9416753967217072 2.4183613803768546e-05 49337967.68576231 1267.0718174533606 140341 32345 245600 BTG_20190723 454461118.08712596 43913.23785540682 25.929018234798566 0.0025079194472301166 11568698.112486633 1118.9533947144052 74927 None 299895 JUV_20211111 33745925.87785331 519.6439581442229 12.481007695199061 0.00019214468281771458 6036272.695254163 92.92820986537689 None None 32257 BAT_20190902 241689768.624972 24819.45551280122 0.18150088679950496 1.863652223043564e-05 21721208.24323828 2230.334999653215 105629 29951 30571 MITH_20210819 32977998.961030673 731.6219246325477 0.053252306353761186 1.18221489481109e-06 12209981.113188777 271.0647204926992 None 2755 771999 SYS_20210723 72414600.99686553 2239.0056503050364 0.11766948488005917 3.6347439151914933e-06 499991.34065665817 15.444450062415463 74465 5465 381052 REP_20210702 102255670.1946404 3043.761551230663 15.427882509742211 0.0004586804422621306 21399121.606096685 636.2090556566956 151310 11226 153452 BLZ_20190805 7700032.464135407 703.1402993730367 0.036931661648728305 3.372471447228675e-06 392091.23794764583 35.804414035416464 36524 None 1145955 ZEN_20200903 83413165.95359913 7311.615729838877 8.465245084543273 0.0007418562349739363 3618382.0471667624 317.0988264840351 69526 6093 78884 CHR_20200903 25169182.26622244 2206.1984656392283 0.05997516511913421 5.2547740124512545e-06 4704781.66972641 412.21336203454626 26985 None 270101 NAS_20210217 29110330.43320328 591.9185624537786 0.6399445760741624 1.3004470546749048e-05 12915821.110391276 262.46556576439804 23689 4844 603021 DLT_20210421 20800112.504789103 368.1727727948923 0.2536296140989349 4.489375635069439e-06 7307687.836995998 129.3498625570826 15087 2573 4793076 BNB_20200127 2674086712.651739 311551.09152078466 17.436952810120008 0.0020290329016661745 243479316.87407124 28332.217801608804 1100747 58702 1770 ZEC_20190305 291029189.0489036 78339.61963138398 48.307658888168575 0.013003519114180167 167295396.69649157 45032.79477263146 73595 15032 156560 DOCK_20200312 3589684.4097892074 452.58821985092436 0.006486993503602604 8.171886123687342e-07 1286220.2649380888 162.02953693750024 43118 15024 375776 UNFI_20210624 15650805.575484933 464.24996756098017 6.426047847067099 0.00019074712378896382 5161248.2736077905 153.20353766129702 19968 None 178336 FTM_20190723 44968038.46656247 4349.42106765656 0.02182238844373202 2.1108083224385747e-06 11786633.522996986 1140.0825440361707 17551 2008 417127 MATIC_20210821 9948484709.52927 202484.50232375698 1.5416069331704796 3.135752202589391e-05 1307117643.8684218 26587.821724272115 593580 None 5701 CHR_20200806 22064072.0648364 1883.4687334541406 0.05349828909796027 4.5668068212070455e-06 6900688.24867302 589.0676262068499 25580 None 325862 OGN_20200423 6480900.938531776 911.1452913419921 0.22647616318323796 3.18590600356106e-05 18225608.906249434 2563.849370143053 65500 2210 171904 OST_20190810 6964500.937805498 587.3095921403708 0.010589335264657912 8.927327639310919e-07 203611.99393248576 17.165487121701858 18056 759 571534 CVC_20210711 163046528.6763547 4835.08919603137 0.24318789773734048 7.214294743548637e-06 13807398.684332525 409.6036220439176 103597 9841 166246 DASH_20211120 1977561705.525397 34019.504015931845 189.79387607459756 0.0032631086441108517 432828258.56430686 7441.576415150049 417742 43241 62240 DOGE_20201106 336504090.4105543 21655.889317570134 0.0026552157725537513 1.7041777408917257e-07 70147423.33269826 4502.220823640172 152169 168315 144250 NEBL_20200721 9784533.299326986 1067.9721266108409 0.5901168476813462 6.441448987478799e-05 198735.9388430918 21.693117508275947 38889 5952 643631 BQX_20190805 15390663.083536653 1405.4854772488302 0.10948693538252549 9.997131619213293e-06 505380.42375088466 46.14573050528325 60612 5776 410121 HC_20190901 95458896.2372838 9944.400351463819 2.156954160918435 0.000224710517146072 45921486.295544885 4784.079847665509 12924 853 399646 VIB_20200506 2448524.329610781 273.03395086564456 0.01343096969003473 1.495564509567476e-06 738372.5886098528 82.21921900260851 31129 1108 None MBL_20210909 34089940.3708731 735.8305203011033 0.009734314493814492 2.1016601533111403e-07 30121659.077212535 650.3333200753563 None None None ELF_20190329 62748958.09632104 15585.687364320962 0.18957743074094055 4.708710631933996e-05 13878721.888272474 3447.1869914866766 84887 32080 915905 TLM_20210813 336396904.8723505 7566.391330583575 0.2708950928503679 6.099601394736293e-06 171293119.60334504 3856.916492091692 57501 None 11192 EOS_20210509 9800513195.05819 167119.99456445573 10.28762202933724 0.0001751949408244766 9313853278.018515 158611.96778391293 215248 84705 54887 EVX_20200707 4830438.107469771 517.4655616105233 0.22185406203754093 2.3745070974637995e-05 342074.25489930203 36.61225486061137 16647 2832 1106208 ICX_20211007 1489818504.4327972 26839.122829997792 2.2183503615601863 3.9988943247618756e-05 100496787.21736719 1811.5985600114507 148273 33670 246285 ICP_20211002 8660925810.198198 179827.94171763991 52.249042952564984 0.0010848666378717286 354441253.95045 7359.397795005689 263613 23497 23600 WRX_20200626 25229874.268787526 2724.3398195169384 0.13028440419083487 1.4080004522674253e-05 11917098.45299359 1287.8962847274381 28780 None 21864 FIL_20210314 2858128526.5366325 46588.35044760049 49.74767465540784 0.0008108390539963824 824403628.202127 13436.982987302963 56484 None 51977 DCR_20191017 155833564.81856 19458.871473873885 14.787012710018107 0.0018464671575847249 12656440.688969634 1580.4207734445642 40552 9637 135598 FUN_20200331 10725255.906972442 1669.3125758984047 0.0017767404222241829 2.771368347450832e-07 495730.41183816706 77.32427061670766 34717 16970 280405 STRAX_20210805 194144503.0564509 4881.273260703007 1.949534423919478 4.902649092572317e-05 32928146.662258647 828.0702632028944 157373 10764 188062 XVG_20200314 34887054.90835474 6271.1996356463005 0.0021528085650558805 3.869828600969564e-07 1444957.319855581 259.7414955663886 296493 51928 314536 GRS_20190905 15949376.363612788 1509.9106729325647 0.2175464197506355 2.0594890580746647e-05 587466.1625903929 55.614803278806505 38464 107004 None ONE_20200730 57510725.541493915 5179.138729895706 0.008412044932945437 7.579369328540013e-07 10593044.417692421 954.4480158548947 76225 1357 140564 NANO_20200310 90511178.9407763 11432.156941385296 0.6854455536824918 8.64896074874761e-05 3461666.022054708 436.7934606793437 97668 49279 295755 POE_20191220 4428861.503151394 620.013222986599 0.0016728583719218307 2.3410888130026814e-07 82808.15378108436 11.5886225454692 None 10566 716092 DOT_20210127 16415459288.594057 504036.93515668163 17.114219195402026 0.0005254315325360605 1296758574.747851 39812.38276076873 136719 9232 32256 POA_20190426 7019964.554411844 1351.4564620732615 0.03194965248558675 6.140472900139015e-06 253760.54192269949 48.7707880861575 17398 None 757661 PERL_20200531 6593313.542924675 682.6149338926273 0.018690595208110224 1.9359613577290384e-06 1357178.408972517 140.57577760685055 11775 479 821642 MFT_20190813 11264165.637716576 989.7386080981133 0.0012552017396647518 1.102892223789178e-07 278598.97003692674 24.479303039483284 18821 2186 955030 NAS_20210725 13640610.389363367 399.33373401803567 0.3002704871700507 8.774629686775162e-06 2636624.9830240384 77.04855734234586 25255 4926 687324 LRC_20201111 254580029.11433762 16644.02642769992 0.21095219407169263 1.3808253983129388e-05 77941801.47180408 5101.820321714956 42428 7191 160661 FTM_20200526 12184600.321043093 1371.215895781447 0.005719032828714139 6.432142036046657e-07 3569526.64221933 401.46127941303786 21873 2363 335778 STORJ_20190329 40244814.29739944 9996.000553243708 0.29639460386676425 7.361659882663457e-05 10229763.81367396 2540.8034051152463 83606 7662 210414 1INCH_20210221 492736420.75466824 8786.97466324014 5.184956076859786 9.221389557048177e-05 687679940.1658264 12230.315020676604 None None 9629 RLC_20210724 172376022.3847673 5156.855507008843 2.4182032893404863 7.229537575634168e-05 9213215.086520016 275.4412127136002 45881 7728 149507 BRD_20190625 23762565.630179934 2153.521608477272 0.39630662187466087 3.5884008929665605e-05 297836.7177311326 26.9679456479695 168 None None WPR_20190706 6630900.000344085 601.8902316653915 0.010906595683810708 9.899973461323417e-07 754659.2446723501 68.50081098805596 34775 None 1294750 AION_20210624 57902858.315552875 1717.6163495852325 0.1175600991425581 3.4872742766116873e-06 2972901.749109682 88.18743665733263 73467 73368 263057 CLOAK_20190220 3997930.005753536 1021.1792804156787 0.7606346388625175 0.00019428662634289005 392081.3221195408 100.14815712387528 18062 1379 1179717 ORN_20210427 316276673.8776089 5870.801331974571 12.76818350720954 0.00023694836945516897 22896914.101031642 424.914511820031 None None 53561 FXS_20210902 222862715.9323396 4582.329477141023 6.255512764435727 0.00012856812857302996 2584688.6390852276 53.12251669606096 14018 None 91194 1INCH_20210203 450700373.82564056 12653.856534827597 4.665715582888708 0.00013137412905915176 299870559.8340165 8443.556605369247 None None 12553 YOYO_20201014 1453708.8910336655 127.24594279109631 0.008367639258287022 7.323253752842706e-07 1411215.7618418317 123.50784737456087 7761 None 2332569 BTS_20190515 165608071.67477906 20734.53071381289 0.06101147246647598 7.633913903001575e-06 36884843.934085906 4615.127475790382 13763 7196 176364 UMA_20210813 666841490.4223078 14999.418215794465 10.728436999371908 0.00024129258302890968 41193716.26693893 926.4852096527786 42661 None 213282 ETC_20210523 7481006733.341302 199202.28307780926 58.709204802040894 0.0015632932907448127 6549173651.158498 174389.67642809695 434331 55620 91962 HARD_20210508 95257232.6954413 1662.3660445406335 1.5554139402171723 2.7140545405747645e-05 7080147.443407842 123.54207339839627 30649 None None FUN_20210613 208702676.33969375 5816.992781250921 0.020021174725131183 5.610940623235086e-07 3344999.071030415 93.74370600127315 3516 319 199069 CHR_20210704 63376780.8837855 1828.1644636922924 0.1414534206465801 4.079342437210609e-06 12809830.316826234 369.4197297317863 67937 None 101399 FET_20200208 15824920.836408764 1615.477000740027 0.04673330907981715 4.766941099297816e-06 9852834.512094261 1005.0193899187473 16477 347 466224 IOST_20210127 313410026.8002706 9623.259793013785 0.016996450993839268 5.21703272131071e-07 217654644.04534772 6680.873556140661 200881 52196 269048 THETA_20210930 4822127372.167961 116080.05276571 4.833713783618702 0.00011628932650774511 236638251.37308148 5693.035233365584 None 24195 23104 BNT_20200422 12866137.766571298 1878.8126989106809 0.18417156259441927 2.6904628671353306e-05 6329004.635914262 924.5700975211611 737 5013 138596 LUN_20191118 2692167.5639125668 316.6534305377851 1.0011196686384993 0.00011764602432484156 89506.22631600295 10.518274696088925 30457 2169 6561004 VIBE_20191015 3670279.0299973865 439.76281578712604 0.01961413168240585 2.3500175959981474e-06 334522.43304364465 40.079959522952 20149 None 995532 ICX_20190616 176595406.8833487 20025.73137480047 0.3733691227221287 4.234448796040881e-05 19687940.268781748 2232.845993258849 113625 24911 300375 REP_20190419 233929724.3456601 44350.68222299443 21.285002080643444 0.0040329101753149 21449921.419059288 4064.1577587299057 124595 9889 258583 FIO_20210813 68328315.86713228 1536.8849956518386 0.20102676098193858 4.521758330937215e-06 5976324.369525311 134.4273487484192 78118 512 318266 OGN_20211204 377799830.9765738 7036.938521474446 0.9598899973040008 1.7891231714253594e-05 60343562.935437545 1124.7337402971582 130327 7408 96329 LOOM_20190520 49001071.94476194 5987.407623564443 0.07082954107346798 8.656142637655854e-06 3881905.96518529 474.4112587960573 19476 None 434311 AAVE_20210106 1444937745.3552537 42462.689512394434 120.05282960241281 0.003521973073789129 616606750.2278315 18089.306004790706 91025 1940 24520 ANT_20210115 112788110.02016476 2887.864241836034 3.2687266606911454 8.33242392560423e-05 28111016.59247166 716.587624303348 76642 2694 131856 WAVES_20190703 182977526.8777247 17004.71901969445 1.835323810429414 0.00017005074040279334 23483545.501375962 2175.852717160209 142710 56861 50285 DASH_20190220 754042823.7638937 192602.89876652972 87.22739756262916 0.022280232757288868 270670115.5068942 69136.45646261435 320084 23238 89364 STORJ_20200520 16143043.11733896 1654.8344967021162 0.11234231530517287 1.1507831032258811e-05 2969889.829993242 304.22187984238894 81426 8089 107093 KNC_20200423 84344515.32765824 11858.508151209131 0.468559157627463 6.590131075564813e-05 69692709.04130222 9802.05124831954 105130 7352 116749 WBTC_20210219 6381297954.482137 123460.08977828358 51752.469356210364 1.0010062115586973 281105647.18123466 5437.199469572296 None None 140839 LEND_20190706 8736130.722956633 791.4152983635105 0.0076830844504830464 6.973975598434671e-07 1856135.6189829775 168.48239268486589 42009 5862 929610 BUSD_20210618 9301641423.542768 244796.65529138313 1.0049737486915065 2.6339490940778404e-05 3572760471.0800314 93638.95542954195 22333 None 40331 MKR_20210617 2646934231.0973654 69202.60593363902 2942.239060242849 0.0768230809962198 91534867.68022516 2390.0133231171867 160028 28138 30673 HOT_20200711 129757235.31081751 13976.131973869482 0.0007323834398461158 7.883898289507832e-08 24142697.91118252 2598.892389020552 25529 7132 637680 WAVES_20200626 118465141.1426735 12802.68143702671 1.1846514114267348 0.00012802681437026707 21457332.563631583 2318.921757495449 216 56864 114930 IOST_20210731 594417384.5723342 14247.276143614712 0.02622018536433871 6.275511563126766e-07 165299333.0482538 3956.256836125618 249837 53590 219818 ZEN_20200318 42745332.10101566 7871.440510174342 4.89711006483903 0.0009104729732822102 1710581.8642300148 318.03217312807556 57866 5082 39151 GRS_20200306 15770430.194933536 1740.8982768810056 0.21148942870370738 2.334632457439974e-05 11907874.792745264 1314.5106665932879 37763 106867 3955402 VIA_20200721 4807780.145351935 524.826399678844 0.2075023397062108 2.2651348976144844e-05 296311.97890633746 32.34597763823974 38577 2154 1442044 PIVX_20191019 14143657.450542081 1777.161849586168 0.23019964726089803 2.892514917217245e-05 255978.86802976613 32.16437136540531 63034 8583 244902 POWR_20211207 205611279.808584 4073.552602007861 0.4780146023718376 9.464290900677325e-06 38391522.705411516 760.120166206412 101242 15451 166762 DAR_20211225 0.0 0.0 2.3411349751768684 4.605884420937617e-05 80306983.9311686 1579.9374666687595 None 712 22834 CFX_20211225 268654014.0440316 5285.469989949145 0.23141370913336354 4.550841370065867e-06 9045552.18370664 177.8843321204386 None 2217 165568 YFI_20210610 1461455441.089748 38935.16894593563 40367.497492253824 1.077798687062834 380306207.81542677 10154.048601699107 127917 6364 17925 ZEN_20200305 88149923.39530651 10069.492343025153 10.269305620333617 0.001173021786173049 1786458.3851308236 204.06000983169702 57229 5053 41227 FTT_20200305 76261473.94713052 8706.813565776796 2.6434061174597874 0.000301799100543378 2440970.118390602 278.68687346894336 None None 19129 YFII_20210702 76966833.82799208 2289.197868135233 1939.4366947723315 0.0576606465816573 38154518.3371871 1134.3573127516624 17331 None 427366 SFP_20210511 236568379.40962726 4237.001537985889 2.189121652570417 3.917288015893721e-05 29831142.053117365 533.8085031861469 None None 22445 NULS_20200526 22883820.105255682 2574.9064312476144 0.24073837493880382 2.7062345263465224e-05 14835158.489776291 1667.678371554219 24181 5186 694372 ROSE_20210703 100862177.84109376 2982.4808802445305 0.06732092123546442 1.988324732711588e-06 21886453.767719056 646.4168424774872 None 1637 188060 TLM_20210825 337877709.64015913 7031.095836205177 0.27188791222100805 5.667789153473686e-06 130240892.49154367 2715.008224426929 None None 12690 TFUEL_20211125 1886178773.9046779 28765.286079276702 0.32077408575952837 5.608569957347042e-06 31230192.262139656 546.0438541002237 220498 26145 31742 CTSI_20200807 11185596.451124663 950.1838504641322 0.07160539857711047 6.084817020090435e-06 5162108.517033873 438.6608606078236 15898 126 383002 ZRX_20210909 853516637.5348127 18415.755620270116 1.0065994168575025 2.17422516834239e-05 228176275.21103477 4928.54051049666 228342 19874 56700 SOL_20210511 11724389834.30516 210022.91937787196 42.96048600238864 0.000768862224796724 610750904.6029066 10930.586290003639 226181 14887 15641 STPT_20200403 10376171.063530283 1530.1539474314548 0.014922460432898911 2.188770041265436e-06 15115475.50705856 2217.0807621236318 11195 None 1339283 XVG_20190623 145634077.28199795 13574.007366205475 0.009229525036897295 8.604404799146888e-07 4891117.496467106 455.98397199798615 303974 53025 395064 ALGO_20191213 135722250.9571563 18833.227056082214 0.2748671102209296 3.813703506189563e-05 88596168.80759558 12292.468143784563 13425 700 433100 GO_20190509 12966503.333543867 2176.738277955933 0.018159917792988044 3.04862049192943e-06 783290.6291312203 131.49596216937599 9547 654 839463 MDA_20200607 9178286.193164667 949.1979680919368 0.467590736325189 4.835719517539337e-05 336745.4698119914 34.825468391664515 None 376 2681133 ONE_20191203 19486398.353266437 2665.3031042450834 0.0054166745844654906 7.413964479848818e-07 3904452.75732638 534.414124471944 71134 None 210866 MFT_20190512 24496470.610198725 3347.024683042702 0.003672310609097103 5.04181375719333e-07 1850085.9842633742 254.0032682514029 18023 1979 690074 LSK_20200329 135756420.23698252 21715.306201465788 0.9777406054121367 0.00015639729299776506 4055060.9743992514 648.6388678412252 177535 31359 164419 AMB_20200801 3392314.875710055 299.30945727842266 0.023558104324256923 2.08000492682218e-06 4489059.579699868 396.3504836405613 19535 5482 494689 MITH_20190318 23023160.952684894 5781.461643982563 0.04519179225648129 1.1348899388804033e-05 3516319.183318243 883.0442573269936 52 1996 567173 AAVE_20210422 4430861443.882133 81774.32906346858 353.0981296100794 0.006528211266556722 576648981.4554474 10661.303648770307 176186 8403 14216 NCASH_20190826 3817858.2435180955 377.4504414819624 0.0013158530206400863 1.3009108036140738e-07 1423745.554224291 140.75781595933228 59796 58914 801228 OM_20210703 31848868.05908035 941.7666966629499 0.10171332811768424 3.003002504131803e-06 4603612.273336922 135.91787271858104 45765 None 75678 WABI_20200403 4505883.339826042 663.9911833917304 0.07622760102968691 1.1181812480322489e-05 598377.2161094705 87.77584146230328 36746 7742 1806690 ARPA_20200718 0.0 0.0 0.023750279891839525 2.594666307002325e-06 14931169.206746394 1631.1976886725806 18801 None 680510 MATIC_20201015 65950052.59140272 5778.968649960558 0.017249153828043904 1.509372963082861e-06 5324181.759476339 465.8881286818372 55413 2385 52093 PAXG_20210616 276158651.4744559 6838.124193113944 1863.121603861053 0.04616049881354059 7139973.420204359 176.89920717415194 None None 40331 NAS_20200612 16222599.35714935 1748.4142534520836 0.3571957811130996 3.840973246257656e-05 5278124.8183170315 567.563708462311 23423 4917 697228 XTZ_20210826 4234314682.8955245 86386.48222473329 5.025524698872199 0.00010255836058576489 1282647658.2093048 26175.623226891654 None 52754 67956 LINK_20200109 798009538.3826036 99156.29288538962 2.1809369562451804 0.00027106382674420797 201412257.8428287 25033.083697230286 39487 12110 107276 JUV_20210125 0.0 0.0 9.084813319962118 0.000281579373477013 1046285.4256289254 32.429108254692366 None None 106290 FUN_20210220 211899279.38950086 3788.3912447412067 0.035233791847111846 6.299190301033475e-07 6071211.276319912 108.5427176083358 35388 16918 206769 XVG_20210711 340869942.99289674 10108.906065033214 0.020692700262082305 6.137127427999105e-07 8379537.680324722 248.52382666609904 321362 54442 100558 ZRX_20210219 1205256727.2979271 23318.137220365526 1.6124617122897138 3.118854443046753e-05 275037198.68226665 5319.822372062608 181043 18144 64913 TROY_20201229 5157385.1077177115 190.04052066422258 0.0027230323766057685 1.0025913077383807e-07 1147613.3598783717 42.253892724282935 9741 None 1087895 RLC_20190507 40900561.824270405 7149.903558560459 0.5841974441121054 0.00010216130388773992 622253.9509899563 108.81642092606081 24799 3300 1063788 ICX_20210125 443629358.73889303 13778.30940777238 0.7604512179164358 2.3561733635752893e-05 59397588.36959672 1840.3680904148684 118417 28205 307045 BTG_20210603 1065465675.8405625 28330.92543740218 60.83534882534391 0.0016176229517384096 21181501.564409826 563.2199657676356 98543 None 157405 STORM_20190906 9424200.493787717 891.6440509837572 0.0015118150012923594 1.4303609658760056e-07 293511.9335507032 27.769800697230295 26489 2546 2939778 COMP_20210704 17052.784118964417 0.48927833900117756 2.3592831097078163e-07 6.7615562952e-12 19.41759380357712 0.0005564959672706396 None None 3613749 RDN_20200329 3729331.74765331 597.9862758268671 0.07375350680710373 1.1796659354953739e-05 388234.3168088455 62.09695217985242 25079 4319 1385636 NAS_20210428 48235079.933349036 875.5698747408067 1.0600562401234424 1.9247838051946795e-05 10327809.862549566 187.52591055216496 24800 4897 465428 SNT_20190626 108986826.03738151 9231.12790952433 0.030938777998925464 2.616888297394774e-06 30599651.12095686 2588.2039984118314 111569 5745 303277 QTUM_20190922 206233893.7415846 20651.411973305763 2.1473675038909263 0.00021502991867284292 149330853.7349377 14953.472694257965 None 15340 210417 BNB_20190615 4571563043.66355 525599.0586474792 32.53511291051955 0.0037471863985229065 729707610.6941328 84043.05960799685 985056 52777 864 PHA_20210722 125121121.72382408 3888.048796101539 0.6903240042541634 2.1375550375044257e-05 16810590.826406952 520.5318500149077 107701 None 155093 ICX_20210805 673356048.1173354 16929.35876639237 1.0350479319338832 2.6029172616826273e-05 47211505.727193914 1187.2652407288813 142585 32656 233721 BAR_20211125 35127452.20612786 614.0366823674626 11.871318832925354 0.00020754436025079102 4063180.406254925 71.03593036864989 None None 33092 SKY_20210217 61909972.3881253 1258.163138245087 3.0183240088860193 6.13636249038786e-05 15147912.441916049 307.9625694345507 17934 4086 536790 RLC_20191030 45962304.4522771 4884.052219616846 0.6559138331985273 6.971257736418375e-05 4713390.183804059 500.9538771788211 25235 3358 696039 LEND_20190511 8648285.297951553 1357.3217484378815 0.00775359851756977 1.216903413101546e-06 1243667.2721609168 195.18974896957462 11571 5897 565182 NANO_20210909 760496548.3094705 16408.7235887712 5.688226799995754 0.0001228640277817809 60162999.606648676 1299.5031167027435 136653 109418 97814 RDN_20200105 5962357.054327346 811.258523325804 0.11745584206115793 1.597369491493747e-05 1312279.9383385193 178.46672426134242 25273 4342 2088256 GTO_20210206 15962136.68140737 421.150009857215 0.024207754986939115 6.341929483229671e-07 38573276.55396042 1010.5398041839024 None None 738206 ARDR_20210221 193043900.0210628 3432.787985933555 0.19323723484070712 3.4362259471748327e-06 24179461.418551072 429.9693730539512 65713 6421 None SNT_20190821 62686332.98810215 5825.548487237928 0.017709024575935726 1.6460359653094875e-06 23153293.537178375 2152.0752717996365 111445 5724 264981 TFUEL_20190801 0.0 0.0 0.007562930670402543 7.51512673658035e-07 574283.2455052003 57.06533036929922 70354 4018 242693 BNB_20211125 99379066100.37683 1738231.3198782566 591.4138284048736 0.010339069029953971 1684423139.7574818 29447.00695378752 None 718982 123 WAVES_20210217 1107702857.25246 22511.25060089865 11.094568909584709 0.0002255789304655405 137911694.37132892 2804.072223851678 160709 57542 101997 HOT_20200320 60142002.85474481 9717.720311677745 0.0003358296445797198 5.44027915778765e-08 7659798.195454196 1240.8505665942446 25118 6920 515134 ONG_20190227 0.0 0.0 0.6133337252400402 0.00016098296624082964 9045093.223839175 2374.084250019976 67655 11137 278128 YOYO_20210725 1684693.5940533597 49.38296406649757 0.009686699478211455 2.8351806023451837e-07 198919.6815954265 5.822140182552304 10117 None 1359216 XMR_20200329 827644722.2538548 132388.2770214171 47.29057301114516 0.007564498766151441 159545771.5239488 25520.59987839773 319756 167790 83083 MITH_20210221 14208101.898306768 253.37325623696137 0.023039149838593776 4.097488437231791e-07 9372085.506679136 166.68154973338775 None 2202 386165 PPT_20191108 18438364.822454583 1999.8809998928627 0.5106500478363757 5.539102962387457e-05 325362.1284910867 35.29255186422971 None None 826068 GVT_20190507 14756692.3960752 2579.5517341351815 3.324525846042498 0.000581375181735677 1088907.1586119176 190.4222215582651 21463 5800 192676 BNB_20190124 926816549.631004 261079.98239034245 6.4439656198170905 0.001814389093040933 36033504.69380319 10145.739713355506 907360 46980 1078 ENJ_20190914 60670276.16693751 5859.065487147109 0.0692347762060659 6.6858619022898435e-06 2692178.4835253777 259.978215334937 48472 13726 25046 QKC_20200412 9800258.054351306 1424.2468233785216 0.0026278310030325154 3.8181270065318035e-07 2300259.664093951 334.21797426766324 None 9195 784929 FIO_20201208 9348739.117870975 486.86841034600957 0.07813528960391139 4.069584167030191e-06 976171.7219798943 50.84274985362196 55499 151 366875 POWR_20210112 43411208.62654801 1225.508722550369 0.10159709750997506 2.85812805046137e-06 6143829.723259033 172.83812726619365 80926 12565 337778 WTC_20190806 51060176.784213506 4322.528737844246 1.746483313353808 0.00014796595181080583 4748363.934324303 402.29195647863827 56088 20015 698794 ROSE_20210107 71845284.89100158 1960.139502810456 0.04753352573186026 1.2873197563580769e-06 10282562.79147346 278.47600243513864 8176 589 219756 EOS_20190105 2754557900.9063473 722948.644333213 2.686170871525037 0.0007050237571866077 951519474.5958978 249739.82188816016 526 61834 80070 QTUM_20210429 1478726796.9269323 27015.32399219227 14.355656274664817 0.0002621767905264908 875920853.5478202 15996.90837845404 233836 16185 88405 QLC_20210428 18966471.422469784 344.2517152643165 0.0788576791658292 1.4317999745490695e-06 1549563.0259870798 28.13504435636342 32989 5639 940522 ICP_20210620 6559670902.552096 184437.2105154713 48.89853573601593 0.0013734149111814648 286636113.82503474 8050.758716696188 232879 20452 24602 DGB_20210218 1121386906.570363 21501.928487296846 0.07983420731382677 1.5307735505419186e-06 89673048.3878537 1719.4274896347335 187898 27610 191254 SNT_20200316 36085615.71244997 6677.575167031719 0.009537691775796896 1.7749149871186848e-06 17534880.30871352 3263.150308153835 None 5608 189796 KAVA_20200520 247.70999047583325 0.025377229267925867 0.611185457358022 6.260755664797367e-05 10586720.88489052 1084.4641663795462 21968 None 364805 NMR_20210304 237116267.01732185 4663.720342843475 42.82281072739964 0.0008451593629055727 28507996.60991085 562.6393934280069 25551 2582 2364685 CHZ_20210207 126239382.52018647 3219.3067214395887 0.02366075109734938 6.016950981816243e-07 50987886.43070858 1296.6266880443866 70091 None 105011 QKC_20210112 36140287.00657997 1018.6846947038437 0.005627102284863044 1.582929975606201e-07 14102605.280520884 396.7128284255478 63126 9206 114091 LOOM_20210117 37573123.175211005 1034.8126776474553 0.045231251388788286 1.2496247664136984e-06 9762771.779984396 269.72062524313174 None None 299124 UTK_20210602 141641781.53861296 3860.285462626236 0.31418381386071925 8.566907800236745e-06 8281402.060277199 225.81051211803177 None 3945 115864 SC_20190909 77260213.36359997 7438.397255419587 0.0018352903825298139 1.765864401662108e-07 5203891.258908608 500.7036712937194 108960 30621 202127 TRU_20211207 169439008.47241935 3356.9332819759447 0.31170659195095823 6.176150436258934e-06 9092455.542626794 180.15779812284075 35627 None 108013 APPC_20211021 10272032.008287411 154.81102744625719 0.08880667939939783 1.339773365151435e-06 98452.36951472037 1.4852921346 25112 3110 898868 BADGER_20210718 70011567.7192399 2215.023459123965 7.5992939861367494 0.00024089913085227805 3613004.7809791826 114.53297017996798 35875 None None XLM_20190922 1425219300.7000535 142713.4950988454 0.07099691202644134 7.109384020856502e-06 237307711.81488422 23763.169499180858 276218 104131 63333 BCPT_20190513 3506498.8138104402 503.91324554236996 0.04179703428787681 6.006583866247482e-06 458922.2961246493 65.95097730565789 10746 1926 1145743 DOCK_20201106 4681614.743496321 301.28766217660484 0.008332284258264943 5.347849131696202e-07 2653467.2804425107 170.30555189740565 43074 14892 246761 RVN_20210527 897792216.5335765 22914.861476153255 0.10142611713183983 2.588989702133617e-06 147835399.69970667 3773.6269341340703 62677 39702 39810 FRONT_20210731 32284068.5247019 773.3494701638363 0.7156020333521883 1.7131374806459594e-05 10204287.881129447 244.28868585761316 71161 None 252646 GVT_20200217 6824129.245585157 685.9499374892472 1.5381286498500117 0.00015461009210773893 2641206.216722847 265.4895846864775 20796 5622 172341 LSK_20210718 332716072.89181995 10526.906587295998 2.2979879057519597 7.28466736797636e-05 14724920.584983831 466.7829113155184 196513 32587 298346 AAVE_20201031 349536003.8141375 25742.775763808746 31.09806869175312 0.002296161756254171 121391905.97210081 8963.111335780728 73204 1489 15035 MKR_20210408 1915200954.9126647 34002.66845027291 2113.2808029917737 0.037586861253133166 185568991.84272638 3300.5343820858566 128938 23719 31168 OMG_20200721 228647857.4494568 24956.687365160786 1.6262300107656393 0.00017751192323033708 105658893.56175072 11533.247620799682 None 43068 389790 PERL_20210508 0.0 0.0 0.14045768942803075 2.4508577420719346e-06 8818590.153815717 153.8763028257911 19047 650 314180 SUSHI_20210718 1433805034.3554358 45360.01155478016 7.441621841165244 0.00023590089249585415 428722846.6636564 13590.59951177033 114727 None 5721 LUN_20190908 2488934.365145331 237.7328608587493 0.9197415472563765 8.785547180067759e-05 49134.04912577413 4.69337835210274 30872 2196 1370867 POA_20190902 3015758.9254476647 310.0574248647684 0.013697558758867932 1.4082789442720477e-06 53071.05755398059 5.456363007396059 17724 None 617003 DNT_20211207 114519298.3586964 2268.846272653308 0.15243282671753866 3.020399709605946e-06 7763988.909868231 153.84054966194253 None 10394 332155 ICX_20190530 193582537.66783896 22404.876286856208 0.40849040165307277 4.7238000415200484e-05 27277816.988177005 3154.4181332016256 113562 24666 274094 COS_20210804 39930206.40184414 1039.2464251078118 0.013252088722731327 3.449890919902566e-07 2844226.49511792 74.04320454648487 27277 None 402883 DENT_20190228 30351104.152123615 7951.259602372376 0.0008747920589940942 2.294444840019388e-07 1064130.9757475741 279.10516577120654 42462 8829 243701 ATM_20210613 20872684.08395299 582.0889521463772 11.017686731790276 0.0003087710232101539 17563745.313073676 492.22452441603286 4993557 None 91720 BTG_20191030 146902128.22156098 15611.483419333726 8.38956145372721 0.0008916688782770516 5732714.565433 609.2908663028155 None None 318337 WING_20201015 9592644.850665001 840.5693655113969 17.54494840285311 0.0015358556877114766 3745541.672180068 327.87850660436476 4070 None 307280 ELF_20190629 89523106.45060018 7223.722350728761 0.19405801089719138 1.5624534069875846e-05 31186190.025482126 2510.9485885687805 86528 33279 1215448 ZRX_20210804 713719528.2560992 18576.460983757366 0.8475188174717112 2.2061876348938598e-05 70122223.02979784 1825.3610207866934 223448 19611 56204 VET_20210809 6635250833.093989 150827.42432948074 0.10159181183176885 2.309948852343312e-06 927619512.5718753 21091.794602747737 397174 195722 38303 RVN_20190410 222547956.35106802 43027.48258542226 0.06772642209561094 1.308805412430332e-05 20432405.884541985 3948.539223422959 23189 6302 225475 RLC_20210602 379944812.3722184 10357.824422752758 5.3263878542647065 0.00014520474659858963 120032841.02188802 3272.26231753604 None 7575 155158 XLM_20200331 812149862.9667219 126405.56006529968 0.03991531455466779 6.226010167364346e-06 258724057.33760446 40355.90423118208 280732 107252 84938 WAVES_20190523 237125601.7342881 30934.1517834941 2.368456565508145 0.0003092667533223048 42302836.59890592 5523.791789891117 139942 56809 43809 JST_20211007 107537865.61197832 1937.4235952838062 0.07546649893177729 1.3603744783947194e-06 209493564.9046597 3776.373664052723 53229 None 184239 GVT_20210508 62817929.524384834 1097.2092501393302 14.598535389609971 0.0002546967281353806 16890725.1378982 294.68794736206985 25624 5615 216420 RCN_20210430 64787084.15377588 1208.9182510613286 0.1259745220975886 2.3496069869627343e-06 4056007.378120471 75.65040228865995 19661 1155 909754 ANKR_20190923 12721595.868377805 1266.6174893142045 0.0031834409135101964 3.1695724176188353e-07 4823153.617565564 480.21417979823144 None None 6100 LSK_20190730 186804740.86790854 19681.25132985696 1.3966648686515308 0.000146832715482315 7496612.637127552 788.1260674160443 182544 30779 196756 TVK_20210617 33573348.282267936 877.756297740494 0.15360575758543046 4.010709977963936e-06 6032538.812621529 157.5120880138855 49148 None 67689 PPT_20201228 16646796.88176924 628.02977489743 0.45746061402204957 1.732401690323866e-05 2343699.940067773 88.75583194118764 23623 None 1593572 BTG_20210731 915166141.7771007 21935.133590626254 52.29230292798481 0.001251064043384209 37039276.077226 886.1439236480786 101023 None 201850 ONE_20210105 42174186.63243322 1348.0083682966308 0.004814220613485626 1.5387634456034914e-07 10768533.925502187 344.19333257988245 79597 1583 186131 XEM_20210324 3273269553.5877457 60044.068800801935 0.36666186523205707 6.726266141333413e-06 282715701.2941604 5186.307138962278 275620 20514 26657 AE_20190414 147061564.28955346 28989.362973950847 0.552858576021241 0.00010895442561561132 43855553.558006875 8642.819077448365 994 6362 440681 TRX_20200224 1406078277.0130973 141328.47680197778 0.0212598786834365 2.136524545849598e-06 1801015585.5909832 180994.16574144043 499592 72115 48265 ZRX_20210104 296330789.262915 8856.146312470843 0.39133565833783013 1.1888303850285277e-05 78403362.05969122 2381.7992845540653 None 16320 98378 POE_20200317 1905609.040186103 377.554266528652 0.0007542806996133644 1.4999131441749516e-07 59445.31605558425 11.8209057923806 None 10446 698681 GAS_20200318 12828836.884934701 2362.396579721378 0.9143108759676923 0.00016964993235227884 6720167.479254101 1246.923763260285 322516 98957 219445 ELF_20200523 39426779.41363785 4307.521359768101 0.08533543319919012 9.338414171172165e-06 37401082.82995725 4092.8696184291643 81860 33397 471890 TRX_20201231 1929169522.3468943 66782.7545896905 0.0269722756539759 9.352965014767774e-07 1055738424.1298763 36609.01539161474 555431 76625 32731 OMG_20190225 187825637.14890632 49864.983515373024 1.3295127157131452 0.0003543730051070879 87786956.66813709 23399.04483501425 288184 37081 None ARK_20200323 20863827.670596104 3578.3209744822334 0.14606783179271185 2.505069269837008e-05 1099715.9414858872 188.60173227433535 62636 21951 77737 XZC_20190622 97841090.6944453 9665.45257554094 12.610573908758797 0.0012458864816118273 7955916.7743309 786.0204642298676 60533 4010 343816 BCD_20191113 94612482.98502733 10764.304128505853 0.5033013240592606 5.719024752464574e-05 4705908.696076107 534.7335091160753 21409 None 2003139 EOS_20210708 3682664391.9058175 108385.8189879228 3.8360721426063646 0.0001129360291441466 1057360393.9382242 31129.25925958718 None 89267 47044 SNT_20190507 78723556.823229 13761.314667957722 0.022318657551403432 3.9015661871514684e-06 16785973.042476207 2934.3872806921136 None 5763 311029 ENJ_20210611 1211980505.2001019 32885.784864015506 1.2897369626553672 3.5129828343469373e-05 98088812.95074143 2671.741030263852 211392 33215 21502 ZIL_20190702 160097708.48658025 15082.159487537569 0.017421955479348928 1.6428858580802286e-06 29845613.7323153 2814.4335912617234 65017 10599 184168 DCR_20200421 136726276.21191806 19966.595237876627 12.002763069912186 0.0017530789287838592 98071989.45672415 14324.029993683258 40581 9772 260313 POWR_20191030 19927238.99922859 2117.510795527486 0.0463713748481723 4.927732033304622e-06 42522158.98202784 4518.688644170515 None 12950 308100 ANKR_20200325 5148635.351266165 761.6952644821537 0.001287868913313448 1.9059058568134448e-07 1950058.2458745227 288.5874015218996 None None 5425 STRAX_20210804 192702105.12996593 5015.261393884714 1.9221141463240614 5.003481191278982e-05 17730270.932656154 461.539067788895 157413 10763 188062 DGD_20190614 65461705.36279894 7953.082614974092 32.730869046833995 0.003976543295758694 3525020.1553344117 428.26223911293323 17046 3366 471901 PHA_20211202 114228761.67942661 1998.4244198160393 0.6282167833559181 1.0986146562655658e-05 11497189.238089448 201.06085888615428 None None 121041 SOL_20211216 54610048507.25148 1119370.4920732505 178.2619337658359 0.003647725009840912 3458991299.158227 70780.38930810546 1130198 108289 3127 XMR_20210131 2478898958.641306 72463.47456114761 138.90259252330623 0.00406491892873345 439777621.23643184 12869.88489215846 341121 192734 56021 BTS_20210114 70051426.88997386 1874.247717938431 0.02584736569195795 6.915543096496996e-07 14773256.252161115 395.26306666988944 13142 6870 130433 SOL_20200807 57169342.30736419 4856.369174363656 2.2019224919095755 0.0001871394654372743 10399801.556090286 883.8700322156448 82315 2154 111447 DEGO_20211204 48854434.90769446 909.8978284214843 9.021302352386137 0.00016794305375608881 15558151.827108229 289.63484722960425 156939 None 193048 AERGO_20210825 59000622.689595886 1227.7786331869459 0.22323417194493797 4.653550825774583e-06 4268504.458812727 88.98145958599005 21770 None 449238 BCD_20190314 171466439.40063182 44347.856557682535 0.9111574238766134 0.00023569614550517976 21430642.552578215 5543.630236640625 20641 None 3143940 CELR_20200312 10680608.170890054 1346.5687181091598 0.0028352645347792206 3.571679067641707e-07 3507213.972425573 441.81566049280036 19283 None 1113968 QKC_20210212 67869292.65024664 1423.3294791422632 0.010638012704474878 2.2280346311178355e-07 19028568.67564099 398.5359969733648 63522 9237 366724 NKN_20201101 12734577.864060104 922.9083036386362 0.019484109898419463 1.4138661316996157e-06 1903714.2868685338 138.14319302594606 None 1022 271625 STX_20200407 60446100.17543333 8310.82144420713 0.10243880030167733 1.408016651764131e-05 262726.54387962166 36.11164398192292 35844 None 52879 NKN_20201129 13502349.410274472 762.8000498862867 0.020717856855659682 1.1695553321316498e-06 518663.59259625437 29.279368736336984 None 1025 337822 SUN_20210523 0.0 0.0 0.00027078109515894273 7.1e-09 0.031952169228755246 8.378e-07 54 None None SNT_20210506 756308961.8086892 13211.170999814038 0.194964544227981 3.404456980707661e-06 109285587.89708883 1908.3371496097263 130629 5941 112521 POE_20190324 11467683.384289665 2865.992856102961 0.005045104442802124 1.2599431275500865e-06 507292.78983226354 126.689164010621 None 10955 686511 LRC_20191102 31917235.681337014 3457.5755310561963 0.03318243781865156 3.59379338429327e-06 5133438.542675707 555.972336154708 33975 2435 717545 RLC_20190901 14331964.02882773 1493.0173325367468 0.20465226451542667 2.132058113594528e-05 95324.76103782681 9.930890854219603 24829 3310 984845 TRX_20191113 1295133216.6159825 147262.46781664976 0.019575540499965013 2.224242486524572e-06 970897979.8149734 110316.87920899042 483790 71607 68557 NAV_20200421 5187265.918127282 757.6327655640481 0.07575119368631479 1.1063937587387112e-05 29433.064802127134 4.298883966432943 49111 13924 1361419 LINK_20190613 415194463.64591056 51113.36640021566 1.1409350143787533 0.00014031244164748938 22795354.219533313 2803.3777283132185 14663 7322 252422 EVX_20191108 7714366.327218384 836.723581107857 0.3538569560078366 3.838039922814528e-05 2734435.9678896824 296.58522272791396 18108 2896 520642 STORM_20190702 18136829.744596276 1710.8726856137134 0.002910274505096192 2.744381268349245e-07 2683529.8209604067 253.05616225562628 26817 2577 3762880 PYR_20211225 347407227.7331476 6832.529995478045 17.527403140197265 0.00034468325847654906 156045275.5570107 3068.691557935838 65838 None 44132 BZRX_20201208 37593668.465259016 1957.7394556809097 0.2668868787413504 1.3908691229007636e-05 9213024.443382297 480.1326797054358 15701 None 100494 BNT_20190613 48834711.86292846 6005.703718690876 0.7465169504422224 9.168588664485701e-05 5287398.184465426 649.3888588865202 799 5131 144123 SUSHI_20211104 2529034080.127213 40208.89859727584 13.328936462750505 0.0002113892922068322 540322092.4749571 8569.198676218019 156571 None 4019 TLM_20211221 250763524.89527255 5316.640439000167 0.2013242661120336 4.271713229415789e-06 72079027.25271314 1529.3781530910644 None None 9460 REP_20200410 115512982.91547531 15849.478469355003 10.532809520341933 0.0014442738768420244 22165072.484184075 3039.3063793085453 130836 10121 261589 BQX_20200526 5439866.255896036 611.4378811343103 0.03823805092144254 4.302593851690614e-06 2681204.6330240997 301.6925363919328 11475 24 379386 LOOM_20190305 39464566.64474972 10623.123920905362 0.05811295141959612 1.5642920645678806e-05 11013073.72137239 2964.513659692492 17293 None 434508 GRS_20190803 20911560.08441715 1987.2063637497442 0.28611230106612817 2.7188989397752997e-05 1624415.0601633608 154.36667240016337 38632 107008 None GVT_20200407 3350525.562235755 459.8167041035239 0.7551936919517894 0.00010364065814239856 384308.59033714246 52.74142998914453 20573 5580 153070 ARK_20190716 47143522.19917218 4299.884078432693 0.3301507359290455 3.0190478126134893e-05 590851.2221179724 54.030110964182114 63481 21843 182377 HARD_20211120 94298444.88034007 1622.37158109822 1.0042166593134942 1.7265094341177595e-05 6914274.165468867 118.87434316136013 39133 None 43706 RENBTC_20210506 701702857.5367345 12256.125613108457 57450.51705383378 1.0021400677638814 10761770.41509693 187.72331192317586 75764 4962 67818 PERL_20191203 5982422.388138767 818.2614700237174 0.022964229893997545 3.1426511458255244e-06 926990.8997025479 126.85855465510335 10833 380 591123 VIA_20200425 2900100.603416646 386.7670641781857 0.12515983502459552 1.6695046841204078e-05 38155.94487496713 5.089614306640746 39140 2168 2765618 FET_20200403 4888528.609743215 721.486917269967 0.014440558445208083 2.118282806546264e-06 2325207.093179301 341.08419184962867 16611 363 974663 XRP_20201014 11579458886.39285 1013572.3679602051 0.2560156485194728 2.241425233367015e-05 1614693932.0923936 141366.97285834915 972608 218735 20960 STEEM_20201106 51662001.59735063 3324.733994024775 0.14067303613768434 9.05605218213703e-06 1048071.0539462753 67.47125402081383 11661 3848 215994 WAN_20200410 15331071.492861912 2103.568632766247 0.1445804575395879 1.9828770215820705e-05 455760.6126354167 62.5061824755594 105270 16307 867725 FUEL_20190419 6067883.809049121 1149.730333805037 0.011441382582873595 2.1678207060220654e-06 720952.3609332156 136.60022683150103 1 1524 None SKY_20200301 8318170.223759248 969.9644528678135 0.4926027119724773 5.7519071386084275e-05 176866.24970256802 20.6519010049612 16284 3827 308227 OG_20210724 5593803.37496037 167.3489429480499 4.35443146763279 0.00013024783927603395 2130854.6934630442 63.73718858541055 694672 None 316582 XMR_20200321 701188328.0522394 113422.95723730957 40.12497701819938 0.006471256885424146 166397685.0692144 26836.206404165412 320255 167029 83083 NEBL_20200316 5205041.443509676 963.4701155309951 0.3199255724072604 5.953649023017689e-05 440811.1645229068 82.03267213838812 39629 6023 841626 BLZ_20190909 6439923.081061006 620.017782578971 0.03078721251289549 2.962258349983219e-06 83144.72874805292 7.999950202956708 36571 None 878308 TRX_20190523 1794686228.3213809 234206.6421111109 0.02716965682627237 3.5477237729257166e-06 813542522.1877607 106229.68720976116 421192 70620 115818 DCR_20200411 136029656.44321254 19839.076438374068 12.01713312706456 0.0017521530011573626 92766709.54141887 13525.810758010188 40608 9767 206207 CLV_20210930 126819642.54882997 3050.9678831308574 0.9854868723350125 2.369789624528809e-05 18415492.945311133 442.8353673446627 73160 None 84710 STPT_20200807 15257704.492682764 1296.0975722169496 0.018916953356730427 1.6066792365336505e-06 4125909.65270723 350.4271140183336 13064 None 1449224 XVG_20210603 441596310.6067487 11734.721664576917 0.026833409184554607 7.130552962723009e-07 19489345.22349868 517.8984428297746 316420 54267 107080 REN_20200531 83224102.93707407 8623.07621676304 0.09542461527918976 9.880336153078828e-06 6982586.859421632 722.9822744090449 12794 884 394183 VIDT_20211111 43919621.96375329 677.2569309622147 0.950302438298369 1.463343818921717e-05 10913079.958620623 168.04742847383858 35067 1821 369812 PPT_20201101 7943506.7302945545 575.6867954051594 0.21927746693456257 1.5891430955206214e-05 932872.3645114339 67.60693188360042 23495 None 1538811 FTT_20200707 296611780.2689817 31775.177606061607 2.9925605332899767 0.00032029416818542126 2834079.4363000547 303.3319144335499 None None 12401 TROY_20200113 6934792.344559979 850.2197052499872 0.005933582847728927 7.277263628248594e-07 2502594.2779564424 306.9315585979576 None None 397449 HBAR_20210428 2471000039.791819 44853.32123762161 0.3046916774496398 5.529234862378006e-06 165386953.55014852 3001.274327563863 84542 15676 42635 XMR_20190103 858349785.8925095 221912.17356351056 51.42343312970918 0.013294680100660802 507835370.08531064 131292.4551741821 312477 150656 82788 REP_20210212 159344709.29182136 3341.7177816951817 27.219180335255565 0.0005691821144789431 59657180.91412949 1247.4953308045035 138364 10596 129604 GTO_20190703 21022980.285521757 1953.736498749198 0.0316621311459443 2.934155130130466e-06 14693090.197966324 1361.6204728327289 None None 1222950 KEY_20190430 6085493.870526253 1169.0265224575228 0.0023278197552584106 4.4706806418192644e-07 298042.4234908877 57.24036365494697 23993 2834 663823 DASH_20200607 740065953.4831287 76519.80870428846 78.27058082847597 0.00809456958741319 446034872.00455993 46127.935574745454 317094 35000 77341 TFUEL_20200407 0.0 0.0 0.0018168068115978172 2.4939029812561637e-07 694673.9093220464 95.35682728619328 68001 4027 349819 CELR_20220115 476048512.89126325 11046.511985898625 0.08454217521212837 1.9602005470922794e-06 187365937.58790645 4344.2792008216875 103831 5402 35839 HIVE_20211011 298691245.7177603 5459.037661427927 0.8283280540076599 1.5133791848806888e-05 21360309.70834545 390.2590035290049 None 187 79218 ATM_20210318 0.0 0.0 11.257463061059203 0.00019103348898309442 16697766.538193412 283.3527041319135 None None 183792 GRS_20191213 13044614.019220324 1810.1098084534526 0.17545396675193273 2.4343742241073793e-05 561560.2026694472 77.91489175025787 38137 106926 None GO_20200331 6679687.834003343 1039.8432445168569 0.0071685228752621025 1.1165241416626102e-06 1151477.859404157 179.3469660327643 10703 678 674544 DGD_20190613 66546643.36768982 8183.9209917223 33.29360047149037 0.0040890609074850206 2418235.9887609347 297.00345131441037 17034 3366 471901 MTH_20210112 2797662.5695398767 78.97867832288524 0.007927263292266085 2.2300965415664471e-07 178663.57612272078 5.026161091481499 18955 1882 1263562 WAN_20211104 200872194.71385434 3185.510525570716 1.04050057590694 1.6498750723111836e-05 11167307.706883501 177.07498714602843 129092 17279 227468 RUNE_20210204 865481014.7596548 23078.082617566542 3.728760801519533 9.940719665404731e-05 52360247.13085559 1395.9021939059107 32661 2283 162982 NBS_20201115 0.0 0.0 0.006444644877047881 4.004841794414832e-07 1584887.60660743 98.48834571159523 None None 802433 MDT_20210602 20143539.082576793 549.3890141230665 0.03315820887741423 9.039389262374134e-07 1890651.0176194522 51.54177829915026 None 304 392405 ZIL_20210513 2301631995.413727 44624.13211694508 0.18283795902479155 3.64492841081785e-06 303065571.30727625 6041.701171302459 261583 31541 34741 MBL_20201111 5037532.655062605 329.5236206118035 0.0014336029218447444 9.384553375255806e-08 1227542.6353407586 80.35655624176458 None None 627263 WBTC_20210523 6830666216.7655325 181737.16321186186 37547.86023876052 0.99981456384907 724459247.1988683 19290.710619958154 None None 221187 HNT_20210825 2166387443.251505 45081.62952825462 22.88071116213212 0.00047643038945184167 45762230.52079953 952.8776074623471 76917 48297 2626 PIVX_20210217 46386256.55853063 942.6718561425357 0.7103950867724634 1.4437258374824891e-05 1853916.2721627948 37.676876888478986 65425 8982 316171 HOT_20201111 86443327.23558283 5651.523522927916 0.00048411211438701394 3.1690616054456475e-08 6267986.154890043 410.3106217880624 26311 7311 245882 TRX_20190515 1822286360.87122 228076.92691466317 0.027637135268202773 3.458030148002007e-06 959201610.3004982 120017.79686071257 419169 70580 110041 WNXM_20210408 93611358.16662508 1661.9853737826957 52.51379799016175 0.000934525183915657 38559114.61566715 686.190392943625 24778 None 102039 TOMO_20210523 117295626.30573682 3120.7752956280883 1.4391397093144622 3.832103431824254e-05 16556889.765267579 440.8725134826641 None 2161 82082 NMR_20201106 121215085.8743889 7800.85757683614 23.318194869805172 0.0015011461708092468 8163973.045299527 525.5688505893204 None 1919 1007007 YFI_20210624 1115201269.2284646 33068.586194845666 30965.80798190082 0.9182755674650922 258259040.59547937 7658.542841653524 130878 6627 17690 ARK_20200520 30966089.095630933 3174.4107336471848 0.2071152816662806 2.123190213634581e-05 1307498.2141733547 134.03489063402682 62111 21968 92164 VET_20190421 387142143.77254087 72907.02112539038 0.006981412015975644 1.3147735283669694e-06 13614847.331350848 2564.014388931063 107181 55173 430690 TRB_20210206 66252819.369905114 1748.332863886722 39.5283068923186 0.001035559617311887 71446702.36597316 1871.755346411793 13557 None 357137 JST_20200907 57565643.38543596 5595.170198505998 0.04014388389112095 3.902651034912244e-06 271813156.97545534 26424.74508072328 None None 173233 SFP_20210909 125417189.98031153 2707.1269457768003 1.1579482159838344 2.500035957002772e-05 20700317.82367889 446.9244666231695 None None 23382 PORTO_20211216 0.0 0.0 3.4146173436972163 6.98723772401262e-05 9786545.158994425 200.2593867476779 None None 203949 DGD_20190623 59352460.78984219 5533.89072506077 29.676245233043712 0.002766946746003758 3510661.9871132425 327.32627343118185 17082 3368 464575 CDT_20210821 17243331.745497707 350.76267932571847 0.025980963028796353 5.284736354641985e-07 1073120.4664792453 21.82813137383525 21125 337 774115 NCASH_20190706 7739137.123500802 703.4726500089446 0.0026673507269149837 2.424570406781182e-07 7209654.125557143 655.3436658917055 60223 59112 1075927 UMA_20201226 448427067.19510424 18158.010340478653 8.072995675894033 0.00032694984821653265 17243152.963942856 698.3338615143304 None None 163943 VET_20210114 1692828132.163427 45461.94865297624 0.026123337369878315 6.990022347170125e-07 351888805.2966733 9415.759471754665 150857 71412 134055 GTO_20200308 7072651.9317043 795.6976736224767 0.01070941392380557 1.203246548550435e-06 9289463.564611461 1043.7093058059572 16917 None 1191106 AMB_20190126 18530988.309589997 5196.552536678703 0.0683527706152658 1.91678262160447e-05 1509403.8108133173 423.2745750476374 17881 4978 577805 SNX_20210131 2532771659.436748 74038.28787494662 17.69052762948579 0.0005177549550913584 240399059.03993678 7035.844640934839 None 3695 30058 SC_20210809 797934974.5299253 18138.073582905286 0.016387414922050734 3.726096582936163e-07 62022232.58785292 1410.2335848023465 139646 47751 83896 COTI_20201201 26801504.544287935 1364.0306655351167 0.04692919605737467 2.387351487634358e-06 6057289.090458616 308.1424643085334 32898 1227 262833 XTZ_20211111 4978439714.156367 76803.52597402698 5.804507927486643 8.936019926250378e-05 362747903.80344737 5584.49146264969 212805 63040 40506 NAS_20190314 35553224.72252576 9195.439735432068 0.7822372661624982 0.0002023473701400442 3639873.7538832994 941.5543257779989 23505 5159 511386 ZIL_20210112 751930345.5356843 21208.80162897117 0.06527463908772604 1.8363051852151063e-06 294983406.3093326 8298.468840712396 117850 14450 39054 TRX_20210508 10631125309.042025 185527.3476767058 0.1485400839272502 2.5918782648685896e-06 7091574084.943302 123740.9879441837 878595 104775 20833 BNT_20210219 667973230.1232159 12924.060398879537 5.970095705111617 0.00011547473886286141 1151866422.0902736 22279.621779243498 95213 5798 60733 SAND_20201228 24552126.12312056 927.3811869363326 0.03943305909311545 1.4994522257976361e-06 7102954.20882153 270.091662759575 None None 75408 MBL_20201224 5583104.0073774345 238.7980349890832 0.001554819558442938 6.668611790882586e-08 27108387.721978266 1162.6771287572242 None None 994623 POE_20190325 11534647.261071695 2888.3099229192167 0.0050415517400092275 1.2634180116310064e-06 466082.7426318881 116.80081100396055 None 10956 686511 RCN_20190410 15105559.066875882 2919.968047346057 0.030151683308619004 5.832807056507039e-06 884589.640594275 171.12280747179392 18890 1113 1899234 DENT_20190329 39072777.90012202 9704.96032797421 0.0008848981025499895 2.197856398907872e-07 2185431.9305672776 542.8043679982385 43545 8865 257059 RDN_20190627 21111432.122694574 1623.7287131650683 0.41728497850434293 3.214917851962992e-05 996304.1229479215 76.75895553034552 25679 4427 754056 TCT_20210325 29959855.56831989 568.9616011934361 0.05176059121273741 9.829749942539353e-07 43278873.96084328 821.900405042279 None None 642117 AVA_20211021 170416286.1115248 2571.0432553422625 3.2068839363997905 4.839801443378504e-05 7317672.554738194 110.43767998773617 125980 10851 51898 FTT_20210117 851115052.0823025 23466.71291837528 9.459722822854934 0.00026134815110993344 15028263.435477687 415.19280604775287 47770 None 4837 NAV_20211230 23796685.801019672 513.0887887785221 0.32957287194269536 7.0760660823147594e-06 93958.38341462301 2.0173254130726557 58686 17324 706369 HBAR_20210120 474133893.8683697 13092.978271681508 0.07006769244742853 1.9377516928916813e-06 79357708.56565294 2194.6710209198873 1818 7081 166052 TFUEL_20191030 0.0 0.0 0.0035999555026633716 3.826145505473428e-07 2163747.758678377 229.969891453395 69635 4023 413739 XRP_20190314 12980064617.475113 3356279.5490790308 0.3131691581340176 8.100989085864663e-05 832098059.6368948 215245.2476371566 913539 197796 32700 GRS_20190507 26483771.608592287 4629.13027886715 0.36435643572488796 6.369382864633184e-05 2237320.2369259917 391.1101268575746 38899 107047 6883994 LUNA_20211120 17214623725.885563 296134.7628613174 42.74275057019365 0.0007327617795971639 862792970.5008179 14791.320260259008 214618 15605 6570 AGIX_20211028 308107166.96208054 5265.016992153106 0.31594009352655267 5.398217409574158e-06 3946981.0634088027 67.43893012730985 None None 118461 STORJ_20190708 39458825.7306368 3454.224444219315 0.2744326740621961 2.400884369947391e-05 7334761.420688224 641.6843079054228 83799 7775 206682 XLM_20210602 9814348519.536839 267488.7674517641 0.42426851913176483 1.1568505576876166e-05 1846989589.2572882 50361.76006525539 580279 192013 22006 MDA_20190821 13043772.24606173 1213.5922905623838 0.6645191641045448 6.182684880378266e-05 1651494.38927243 153.65500262649775 None 364 3033915 SUSHI_20211202 1456687071.2129939 25485.69523042519 7.545470919549684 0.00013201397762487369 257375728.46871442 4502.991797532791 None None 4035 RAMP_20210711 50997505.77682874 1512.3351299799647 0.1722193559210203 5.107178832660122e-06 4340014.519935493 128.70347918277602 30450 None 114205 CMT_20190507 24749464.46495188 4326.518503061336 0.03093676602047238 5.410108031659293e-06 3537399.943002566 618.6075115338475 292187 1639 877566 STEEM_20210722 136578095.85795048 4244.179566589526 0.3528636901750794 1.0925802379835466e-05 3500119.1965774004 108.37502330913935 14103 3936 238289 BRD_20210107 5270827.221912489 143.80284893898946 0.07038193058478238 1.910910293567106e-06 1598711.0592195431 43.405933797484245 353 None None SAND_20210508 384574654.0922927 6711.341789635905 0.5487112117900981 9.574470580109551e-06 66956300.95673878 1168.3215503686288 111136 None 21212 BRD_20190401 17622136.90889746 4294.437966461507 0.2933973573507499 7.148008064124694e-05 579854.0257471852 141.2692087441344 None None None LRC_20190811 34718896.3222968 3064.1787580328237 0.035518371038382436 3.1363729682424966e-06 4605320.827253713 406.6628995196319 34668 2448 581854 COCOS_20200229 11765698.045806702 1345.4462256208944 0.00048525717499279077 5.569289574469258e-08 1596110.275544687 183.1853453259365 14614 208 69097 LTO_20200329 6546201.55730815 1050.0855340976475 0.030644081411376263 4.901761625336388e-06 807139.5872728057 129.10831955024503 14509 419 882624 NEBL_20200511 7024287.600229911 802.2109841371904 0.43168169023599456 4.922077317322594e-05 113788.62899638279 12.974291993856529 39268 5974 1526179 ETC_20210909 7645193733.478931 164955.2138456423 58.74113559778587 0.0012682341845906032 6885017651.20823 148649.06266982536 509850 59880 218720 CHR_20210115 11329935.207185436 290.09542531832705 0.02521702842644546 6.428159733268373e-07 2780620.101735756 70.88174652945781 36844 None 675741 BADGER_20210506 278610079.6500093 4866.276510908898 34.03014112565205 0.0005942318997972236 29384312.00010237 513.1067626073683 32898 None None DOCK_20201101 4934016.205481939 357.5701937253015 0.008798671487761612 6.383394467277695e-07 2008923.4732100065 145.74644594823278 None 14894 246761 CELR_20210819 238802352.21926877 5300.775429397138 0.04197727991122705 9.329903396024472e-07 41761051.88713179 928.1844384564263 None None 206136 YFI_20201208 857918372.3706099 44677.22134900509 28596.698471339914 1.4894207371192894 325510324.6778382 16953.76926841752 55881 2265 10841 STORJ_20200319 10301953.622011848 1913.2265002669722 0.07140875834980366 1.325388871202079e-05 1774317.7977665926 329.3238977235471 82251 8002 127597 CELO_20211202 1798897557.9788377 31472.892029740025 4.9145451737648616 8.594237495691343e-05 41292952.61683638 722.1043436163164 None None 34752 BZRX_20210727 27801369.864931155 740.6710091361622 0.19648546236011138 5.2660622574942616e-06 14646093.86564703 392.53408979564125 None None 119612 DODO_20210723 121964405.38518526 3767.4115833481983 0.8964591323736889 2.7690163509342585e-05 41330714.17027017 1276.6384902592727 98216 1038 27217 AXS_20210106 30886278.365397755 906.4572357485899 0.5584891600679033 1.6389473703595154e-05 6840438.222614551 200.74012243492322 29418 None 19930 ONT_20190613 870059445.8122116 107110.45338430823 1.4228592440621821 0.00017498354607319483 145370928.79566765 17877.74913279346 80417 16235 249314 LTO_20210916 88803094.12761833 1841.7137871462514 0.30340379294943753 6.2952430589675204e-06 5068761.6839590045 105.17036223677374 12399 4724 609824 POE_20190905 6120866.637559339 580.055240568517 0.0024340278889974794 2.304531055959891e-07 69619.1906356922 6.591526236654014 None 10738 694514 AE_20190316 123721138.28739987 31526.011742571045 0.4649978238595274 0.00011848692032513124 77997848.71238457 19874.770185392976 979 6342 437952 AION_20200626 43368057.632698685 4686.841562771683 0.10093032024990892 1.0907669047517202e-05 3618130.6368056713 391.0160144071726 67485 72563 377141 ONT_20190923 519012814.9848947 51629.9691678256 0.7971770280383589 7.93615236149233e-05 92339989.93229051 9192.741428646172 81683 16297 297056 HOT_20190430 218323168.36414462 41947.59229749079 0.0012287053060229534 2.3607556412879706e-07 7449603.273470604 1431.3190369566553 21105 6000 231377 XVG_20190902 72687784.3950534 7473.205851595134 0.004567568187379082 4.6960725859368893e-07 855196.0548236213 87.92562221086507 302828 52776 272149 TRX_20200905 2557999528.638269 243961.65993353527 0.0356962276151141 3.404422418711095e-06 3974134939.433115 379021.3976857484 526882 74547 41399 XLM_20190524 2410613680.113453 306003.2881586385 0.12489350051750443 1.588136536440821e-05 373715797.7048313 47521.42506382755 271360 101481 74186 GTO_20210111 12924381.041112918 335.26247908325723 0.019588169592140624 5.092883648551425e-07 25182067.48539186 654.7285550587037 16521 None 786393 VIA_20210825 7272720.601315553 150.85942946042346 0.3096028644248779 6.430134174744043e-06 605356.4270981427 12.572632546586794 38250 2308 1271022 BNT_20190531 46734784.080451794 5632.449139957339 0.7183516168886852 8.6575321280323e-05 6024964.789126491 726.1252707698548 803 5134 144602 TFUEL_20190803 0.0 0.0 0.0069504022261373125 6.603837331130547e-07 865323.9443609382 82.21766714165702 70403 4018 242693 HIVE_20210106 44191328.39912143 1298.6598647478747 0.1187844028889388 3.4847614166734643e-06 8203905.136819357 240.67681776004878 10188 97 154138 CTXC_20200321 968010.4743736166 156.58362560759372 0.04560030813334206 7.354304722754325e-06 5840854.873126313 941.9986034468765 16605 20064 396619 BRD_20211028 18080468.800710686 308.91359135791384 0.21050350162583256 3.596628503261211e-06 252994.41993141477 4.322621404696378 None None None ELF_20200331 28150077.07315008 4381.366568621452 0.06097219302535657 9.5104723071255e-06 42511683.096518375 6630.992994635998 82614 33433 698072 ETC_20190909 753010194.8466327 72452.50723405431 6.64489255320356 0.000639352732639364 644454407.47375 62007.576974465796 229980 24965 350041 ONE_20190930 14094869.37420374 1749.00775018926 0.005084928197371898 6.315198676524576e-07 2362820.4373177923 293.4491878631971 None None 165581 XVG_20210703 381790054.3824937 11296.202660653062 0.023204318283921915 6.852746888546783e-07 18817613.78579785 555.725631508215 321191 54427 100558 NXS_20200330 7445228.622943268 1259.2025471115458 0.12432237288097366 2.103568307528253e-05 42424.688504259575 7.178372494527609 23614 3531 599319 THETA_20190703 113773803.7608999 10568.57011475737 0.11417963900995662 1.058111887709816e-05 4442489.4377825195 411.6890652223097 None 4007 256073 1INCH_20210506 954415103.8814425 16671.68019803591 5.9813965599902845 0.0001043366963666223 321592838.35526675 5609.715723180243 185981 None 24204 SRM_20210711 157537564.93325976 4672.314866821574 3.149840661112433 9.344165205549219e-05 31574612.0920613 936.6771955542467 95565 None 25633 ACM_20210723 16035339.27635393 495.3225717115019 8.014495897801435 0.0002475632508084308 14539190.43795446 449.10737928386123 None None 42486 VITE_20211111 91081840.67754082 1404.240522674536 0.12033268376857212 1.8529201568777425e-06 7367395.568632106 113.44545243472362 38476 2737 286292 RENBTC_20210527 431204553.4835526 11022.139664179704 39181.823841326725 1.0001500728273833 36960033.72197308 943.4369509809486 80130 5156 67257 XEM_20200423 328076646.2705821 46115.441699761766 0.03645296070078167 5.123937967209523e-06 7865153.650690332 1105.5496901749493 210343 17963 216672 CHR_20210602 90935729.02578926 2478.3497424160587 0.20268291145268352 5.526543417070412e-06 42391494.402208425 1155.8864664473435 61228 None 86697 REN_20210218 886087575.0053443 16982.30122017456 1.008287955481849 1.9337900775032243e-05 258373150.62887266 4955.324838137019 47449 1050 73664 STORJ_20210212 99600096.04499257 2088.7719442226376 0.6897931932483254 1.4424311953939586e-05 77406371.92219266 1618.6498602145894 84341 8786 105291 SNGLS_20190104 5903474.249690123 1565.7097567293622 0.010001198705915123 2.651878850180954e-06 153282.12958673752 40.6436917728025 35701 2188 980440 LSK_20190131 144972866.4984968 41919.38082244318 1.1207862763558682 0.0003240790354353435 2494239.3135295683 721.2174951872069 183152 30510 184066 ARK_20220105 225392955.4618466 4873.0336808657985 1.4249439028504935 3.0969700370102064e-05 37502120.02802922 815.0702762321491 77238 24369 114658 AST_20191017 4405971.837751377 550.2728260555983 0.02557709708472004 3.1943875297873614e-06 2488828.132940852 310.83596098948146 31929 3542 318017 POLY_20200330 10257053.355534514 1734.5973821568368 0.01667569859601149 2.82510385677925e-06 5264500.327532651 891.8822856923905 34872 4993 422167 THETA_20200322 72004534.85550602 11692.08792229623 0.072317767129115 1.1735797223469266e-05 8798537.635407967 1427.8352008276984 None 4027 384607 AUDIO_20201115 8589888.45859434 533.6718764613839 0.1298445950760204 8.071870224149991e-06 2046202.7595931604 127.20347056466632 21047 2002 79642 FET_20210202 74301793.32730532 2226.792588611382 0.10820622599273642 3.2398797575087346e-06 11641541.32256342 348.56768851458264 27766 815 293884 TCT_20200319 2393392.5486074416 444.723245999398 0.004079906181527514 7.572547644724597e-07 286545.6023404798 53.18456183953695 26 None 409993 BNB_20190318 2253087911.698374 565784.304954259 15.597596531360292 0.003916984587310312 124009261.35904667 31142.12913832562 932457 48156 1100 NULS_20210310 76397549.44049585 1397.7460026746046 0.6853013450805326 1.2516146777573999e-05 40755285.60132496 744.3428211689669 40932 5190 573202 SUN_20210422 0.0 0.0 0.00042070732384700394 7.6e-09 15.306827214339066 0.00027651500279392 52 None None POLY_20200414 11271639.452735355 1644.306482330922 0.018010192642431273 2.6302170836035335e-06 1867479.3550503065 272.7275715728907 34799 4987 460641 AE_20200704 48033384.069263846 5296.800468883381 0.13330573861949996 1.4700065641979961e-05 5327569.243728618 587.4887188356063 25417 6345 446163 UTK_20210722 78909011.14235486 2452.1063250031552 0.17608339717174804 5.452337602717695e-06 5710145.330117284 176.81190049970596 77429 3988 165733 BAND_20210125 209672666.05378327 6509.050933581455 9.37826757006049 0.00029067484533500945 178572422.8249468 5534.7654561965655 None 3088 319982 REN_20200612 77340312.58052126 8317.215329303373 0.08847718432404766 9.51186627279321e-06 11430376.777295005 1228.8390072978439 13315 881 397347 WRX_20210421 1325491741.6799357 23461.890878651328 3.0408334428209223 5.393085358783846e-05 61568390.07719543 1091.9492610591155 112298 None 2746 RDN_20190719 12251249.398366362 1141.5206841726517 0.23797702552269565 2.2304232022952207e-05 304775.3006858129 28.564854134262205 25665 4406 778116 GAS_20200309 20335589.19330703 2517.2492560993746 1.4691204016868464 0.00018262256250462677 1369588.7683624777 170.25004224890327 322734 98968 240012 FUN_20190801 17624987.25149259 1752.4549536327306 0.0029346689034698333 2.9108318939103076e-07 154930.10226959022 15.367167399357859 None 17498 379326 SAND_20210429 397693777.7814655 7265.419278184542 0.5865328406087279 1.0711826387245575e-05 135303086.04248902 2471.0349821870236 107460 None 22461 STRAX_20210511 381481072.8846133 6827.352614204525 3.8119715659417523 6.82227137488358e-05 157665010.96956667 2821.724854321267 157086 10664 146304 YGG_20211021 606823120.8020711 9152.03343370132 6.852481276245521 0.00010376473044297397 63701676.03655285 964.6122296769233 96043 None 48672 BCD_20210104 94222072.5027061 2816.51453464612 0.49974330937975714 1.5181597134000176e-05 2143069.695100221 65.10386458495331 27857 None 2021519 GRT_20210218 2672242440.076456 51257.17604261248 2.186576833899654 4.193624015941827e-05 714258146.3149848 13698.718789710152 63562 9719 27786 AMB_20200612 1744116.8388144025 187.9747304074914 0.012092646013905093 1.3000372089963563e-06 333189.6614436384 35.82003120173597 18909 5448 1126030 STEEM_20210711 151538848.25952637 4494.0658856823775 0.3908297026534312 1.1594165234820373e-05 4972539.695253675 147.5129614562531 14040 3941 206155 POA_20190213 5973650.482590302 1643.9423852778036 0.02713226737410791 7.467080867028214e-06 149184.21101781432 41.05703929546535 16335 None 763440 PNT_20200730 36373475.96882026 3277.668242501752 1.2604557466930608 0.00011364443390860056 7859808.029473616 708.6511656464487 4200 73 538447 ARPA_20210610 45780949.225860715 1219.6569405663683 0.04648546628861189 1.2411464085179827e-06 15290000.872329706 408.2379114174423 42058 None 459767 NEBL_20200223 11859214.758524114 1228.573418950424 0.7392569043023363 7.65835282257478e-05 478090.59459926485 49.52793045674858 39748 6026 775420 NAV_20200707 8891561.778052943 951.6650881042651 0.128792048340753 1.3784630764627152e-05 9233745.359990845 988.2890442529539 48519 13836 884815 WBTC_20201208 2293899920.273726 119457.83863719631 19187.188063923535 0.9999317898001467 74212299.1076195 3867.541029182541 None None 161492 LUNA_20201106 134536512.02605405 8656.597669272862 0.2921448890492784 1.880206411258459e-05 3106760.791354244 199.94707342510952 14969 None 186488 WPR_20190410 10026029.0902394 1937.8713219309795 0.01689132550334306 3.265980937685751e-06 559371.2982943306 108.1558695293772 35254 None 821639 NAS_20210729 14880010.213174816 372.14008606819226 0.32797924602000555 8.194257359057268e-06 3410501.3869739445 85.20821493254371 25269 4925 687324 AAVE_20210916 5416142919.304927 112384.14647897134 411.805329595945 0.008544017584546319 694255448.7179588 14404.210765881608 291600 12997 14216 SNM_20190224 8465120.281727789 2057.250614806126 0.02118398468900848 5.148274811827142e-06 119412.7498153483 29.020491711568937 31351 10092 10312209 ARK_20190818 30696966.986236613 3003.151785121771 0.21502820920849203 2.1036682569504546e-05 454726.636309745 44.486906807057494 63348 21824 119780 BLZ_20200518 3447674.680101787 356.5917269541572 0.015484460457069893 1.5999875902474825e-06 433410.55753091065 44.78370528015935 36011 None 859932 DASH_20200330 572448245.2027432 96980.989193196 60.82428091389272 0.010304510459115786 443271695.56282777 75096.61856296357 315803 34595 60317 BTG_20210616 1033098211.7188951 25580.25236762933 59.79695410861369 0.0014815494104921392 33217216.460228078 823.0009069601024 99204 None 159409 IOST_20191113 77145134.36285192 8768.82940373787 0.006407941111718424 7.281358517931902e-07 46872031.11846489 5326.07989191834 194922 52283 92684 HARD_20210710 46152082.80563037 1360.7506354331706 0.6977389751873864 2.0530614116823978e-05 2054962.2826568752 60.466218958924465 34890 None None XRP_20210127 12218188875.589693 374892.962037856 0.26855552578611364 8.245046991260678e-06 1978755667.4820125 60750.68988007465 1073941 232160 12972 VITE_20210427 94490624.29073882 1753.9569900746046 0.15600676055231388 2.8940457874838603e-06 22416851.556572337 415.8498938524812 31172 2167 143258 ETC_20200629 667871281.3283479 73252.48637250414 5.751173339239191 0.0006301438456354828 670903780.5329756 73509.50204056271 231669 25576 386622 NAS_20210105 11198054.937023733 357.9220601291889 0.2458806147233402 7.859052010598541e-06 5708153.78292846 182.44902110321263 23358 4857 1361296 MITH_20190830 10160645.033066273 1070.7066618351998 0.01990322401612264 2.098537345029566e-06 1609359.133906683 169.68608911459893 83 2081 648556 NBS_20210617 0.0 0.0 0.014144806507551089 3.6932675889217634e-07 3266477.0980772465 85.28907051392791 None None 552078 BNT_20200801 109458786.33515841 9657.866887220083 1.6710055411748685 0.00014741750634689795 66961271.08680676 5907.379336692861 714 5141 102885 NMR_20210131 138029469.4100899 4034.8941655810536 26.40077271503175 0.0007724326921476175 6443782.127318593 188.53190510531678 22748 2005 2472794 FTT_20200605 298206429.39925766 30508.314457423934 3.0019717659180705 0.00030707243637971435 2985667.4646634134 305.4046653611534 12487 None 12803 SNM_20201226 3782300.7126001497 153.15991041985882 0.008642112100822346 3.4999860684568194e-07 145170.51482761448 5.879289385739474 28800 9505 None TFUEL_20210902 1804394243.560053 37100.548183030514 0.34040755467141093 6.99762042888072e-06 42443145.97971966 872.4865864400173 192267 23187 22308 BAR_20210616 52174113.50565385 1291.8684548987621 17.671548772175445 0.00043782444668157033 7665747.645968026 189.92402786908258 None None 39510 WTC_20191020 19793610.177727137 2490.8336659259844 0.6784262151253824 8.534106760281023e-05 1428525.8540805655 179.698128945269 55521 19764 556908 THETA_20210614 8756044605.157654 224970.5579963519 8.76034653824938 0.0002250774505004809 337332125.15405226 8666.992152659275 173424 19530 16282 REEF_20210114 0.0 0.0 0.008028484418192646 2.1480459809813636e-07 5567570.381405192 148.96207750628693 15650 488 142268 FTM_20211230 5366687359.858694 115713.05097892716 2.1283968875320127 4.5730186053286246e-05 916459979.1459773 19690.822516346125 286372 25903 17107 VIB_20191216 3660207.7627706025 514.7368928020221 0.02006425288826373 2.8194886569790487e-06 766687.9052183003 107.73727106831171 31835 1117 None MATIC_20210111 148192013.74024463 3844.1471006503452 0.03042168693976294 7.909575790023455e-07 76396986.71329752 1986.3058801924228 None 2669 49015 FRONT_20210723 24312043.411741816 750.9852868547337 0.5390217635023142 1.664950495506976e-05 6509669.113504694 201.07308368578637 None None 222970 CND_20190104 16093365.113272706 4267.524180415547 0.009782552480079169 2.594496062040659e-06 217669.20558410976 57.72950340573293 37363 6276 422522 CDT_20190509 5618392.228756613 944.0817677835503 0.00833566469891655 1.3995082353041717e-06 739369.387456611 124.13569691830611 19863 291 447254 LRC_20190730 42040868.48089017 4428.62277886753 0.04378159863531931 4.602801402162773e-06 6427771.726045596 675.7577986098845 34689 2451 709028 WABI_20210207 7895079.059790333 200.69762030230456 0.13510972619109662 3.43453888963296e-06 2085823.5392130136 53.02240086110864 40823 7427 958104 BEAM_20210511 114551794.01752646 2051.6525862101357 1.3028344651713073 2.3301607764326722e-05 18222170.64846474 325.9093034580735 19827 2269 172921 REP_20200417 110484611.2227846 15585.65561161247 10.044055565707685 0.0014168777828738614 22450617.557185866 3167.0256123611193 130994 10124 257312 ZIL_20191024 44305616.548725024 5939.075141135289 0.004773562367696292 6.396486916391429e-07 6602514.125643235 884.7249070372577 66316 10569 188924 DUSK_20191213 10999596.81978015 1526.8496642662599 0.04265090334557072 5.923788629889462e-06 925547.652336871 128.54941464923093 17847 13342 821729 DNT_20201124 34822661.64259429 1901.4273481080736 0.04670833524953568 2.545072781381774e-06 12827707.543221733 698.9640958377734 59207 6079 346319 SUSD_20210221 246532944.6957975 4412.334822649908 1.017126102374052 1.814408398260527e-05 38222227.68472775 681.8302150493043 85596 4901 30058 DLT_20201030 2543694.9306068984 188.91177260512754 0.03085325522329833 2.294493808932548e-06 26923.611020280565 2.002254165826 None 2541 None WRX_20210804 478187116.2417308 12445.571808110686 1.0557840281598974 2.748787933135821e-05 8206270.416822126 213.65446432377593 301543 None 1330 LOOM_20190411 53567364.58856011 10086.494171552546 0.07734070163716991 1.4572892151009114e-05 3530201.4841771866 665.1768656249412 18913 None 433767 SOL_20210106 100329573.08891995 2948.406271952194 2.1618689571522256 6.344240310690565e-05 65041612.88843685 1908.7170894146684 105244 2843 92318 ALGO_20200901 407810551.2371883 34891.00742142147 0.5062446136278073 4.3369528298596314e-05 226102546.96578524 19370.00522088853 None 1250 193545 OGN_20201018 22464679.69099523 1977.0245957692357 0.17298896280864423 1.5221627377278874e-05 4974889.956793683 437.7500155836325 None 2421 140595 BTS_20190702 164120143.051971 15487.540284560579 0.06038875452497298 5.689020734051321e-06 20616946.23897947 1942.2529169379006 13700 7180 171113 XLM_20210117 6457646084.372649 178439.87930780117 0.29225935430589034 8.075810167906613e-06 1576543275.0254478 43563.58153474063 327990 120864 30260 POA_20201030 4309989.064924032 320.1623619406717 0.015339618896738566 1.1396807949970891e-06 101932.08216899644 7.573202256463489 18093 None 216356 AAVE_20211021 4190288942.024608 63218.60505415001 316.88914794667056 0.004781388551941205 195022605.3010081 2942.602668466626 318273 13535 14216 AST_20190801 7046502.135114835 701.0019173485255 0.0410152962382288 4.07335346697889e-06 838362.7923652945 83.26035162667756 32069 3593 229078 THETA_20190712 110810846.8056367 9758.736394151805 0.11101134664979646 9.755587511106848e-06 6251064.472800962 549.338498652404 None 4018 256073 EVX_20200801 7404763.975723175 653.3330811775774 0.3400169545141434 2.999658009206816e-05 725404.172399104 63.99576276301547 16793 2832 865823 WBTC_20210819 8771036840.217295 194586.7868346311 45011.5315193287 0.9994374332178685 349574492.61349726 7761.962808709226 None None 222414 ARDR_20190615 104483677.9104375 12012.635991068706 0.10488573012254859 1.2071119529537083e-05 2466533.0957973474 283.8690810288603 68128 6560 1048625 AXS_20201226 33824049.77166634 1369.6659326444533 0.6014461515926474 2.4391381445891797e-05 8296744.856311199 336.47080127397584 None None 21811 WAVES_20190904 115056596.8390593 10828.53768064329 1.1485303650738865 0.00010822671012764861 12263073.53717865 1155.5568275261858 142653 56909 33279 NAV_20210217 25295896.472113572 514.044110887333 0.3564739785827009 7.243995071573123e-06 1444843.0240772567 29.361009146378052 49095 13708 541634 LOOM_20210310 125022236.08676423 2287.368273138438 0.14985218926615107 2.739382878669129e-06 45740891.86320216 836.1694055904961 26870 None 236528 MDT_20200901 11270959.90412125 964.3084134733817 0.018706046359227 1.6045236554576828e-06 14745297.013128756 1264.787727452862 14110 62 538522 PHA_20211028 127032339.8146334 2170.50068167009 0.6982560827788138 1.1932326529760047e-05 23986147.721119646 409.8933813228552 112382 None 146405 VITE_20210105 7404107.650605985 236.6565871150776 0.012858328249519437 4.1098917292046765e-07 421793.0647042958 13.481720130522149 None None 1009411 OM_20210731 45228899.23946143 1083.5863003464406 0.13906105846352987 3.3290949473158522e-06 17488509.81247748 418.67155547411204 47966 None 86463 ZRX_20200113 130857715.33991806 16042.043956600273 0.2161514388715976 2.6467209670520274e-05 38926412.12093384 4766.4429934138 152043 15982 131322 ARDR_20200701 47376674.163162656 5180.163112852501 0.04740157290903137 5.1826519675031845e-06 2790300.243115721 305.07753556323524 63056 6304 1411218 SKL_20211125 915643726.9898816 16005.675580222045 0.3846145180575059 6.724896166185472e-06 139588073.28515816 2440.665276031583 80162 3057 157471 ZEN_20190201 23265103.96597095 6780.300645513898 4.07295109783984 0.0011870066430058818 358593.3599364842 104.50719641788929 24907 4276 232878 DUSK_20200713 10847501.87122139 1168.7552672389365 0.03876194530642364 4.173611572039889e-06 737730.585059803 79.43360124248197 17322 13328 912304 LUN_20200113 2473893.126070548 303.3043500022971 0.9059117961150723 0.00011110587200771734 3566415.598092856 437.40429991894973 30127 2162 3002754 VET_20210125 1991002717.1549795 61833.7119016117 0.030664906132618797 9.504990566596076e-07 290619457.87010133 9008.131945938798 154921 72385 117810 SAND_20210124 67256737.49640623 2101.186850506857 0.1022184065158334 3.1895235546302004e-06 51606655.356858134 1610.2837878898608 64989 None 55627 MANA_20210125 230499544.9256919 7158.890604907303 0.17092105894928628 5.297922797870427e-06 144801497.99153218 4488.312687102801 58428 8149 67623 BEL_20211216 72381550.25099386 1483.6421819094533 1.5186149136407037 3.107500005066276e-05 4770526.344887825 97.61797087431405 None None 290468 PERP_20211225 547120314.463526 10760.328690049138 9.173313945741116 0.00018043453737377234 13138182.959506739 258.4215451746492 None None 104435 UNFI_20210821 61512501.10754742 1251.9824412576932 13.28291967815605 0.0002701852446390736 17009496.40349107 345.9868054854232 21509 None 252503 NBS_20210828 0.0 0.0 0.015520029964497412 3.1638310185553256e-07 5030750.373143145 102.55420971202028 None None 3265664 GTO_20211021 30970547.055395316 467.2476905694599 0.04700720947966596 7.094287314441826e-07 14515486.089171665 219.0664580289804 13227 None 1200639 HNT_20211104 2871667092.870154 45614.89032664044 28.75167157560966 0.0004559850308474824 28358517.749449387 449.74983651876113 105020 63475 2469 XTZ_20200306 2146896298.2735438 237129.67321623815 3.067364044969095 0.0003386064117749297 311903031.9702416 34430.985344039516 56737 22196 104382 IOTX_20201031 43411659.43407997 3196.392220157435 0.007449362523335189 5.48645915555907e-07 1403080.9374882465 103.33697992759667 27216 1958 414705 CITY_20220112 39011419.88823257 910.0195543482749 10.222191858015016 0.00023891535518783533 4291942.973569102 100.31225144460498 None None 38699 TRB_20210731 75561420.18944986 1810.2876950092175 40.95848318126956 0.0009802960247633356 49410966.101539806 1182.5968611846924 23366 None 289221 DOGE_20200107 261857064.67104656 33749.07589259504 0.0021300120654640553 2.7471551433156543e-07 38106371.073414624 4914.719263086372 138331 146280 132410 GRS_20190819 16439353.355076984 1594.4088517454945 0.22458670261870656 2.1782062767633836e-05 520574.24133880594 50.48910139308826 38554 107007 None MDT_20210506 43265327.466877244 755.5174344850351 0.07131754512420058 1.2440300482683074e-06 12244443.080643086 213.58636349727698 31270 261 371904 SNT_20210106 150191875.30630058 4420.390821588253 0.03892557745277851 1.1419542223569867e-06 29407873.172589 862.7346628503168 114642 5679 172923 NMR_20201115 126453910.40248129 7857.961528670138 24.30848931614903 0.0015112374579150467 2116052.6122430493 131.55313474853511 21607 1928 1007007 KMD_20200707 75405807.14519297 8077.922574861757 0.6260832834816031 6.705720243673445e-05 2918150.8604581077 312.5511224361257 100071 8379 267955 AUDIO_20211216 754178836.888704 15458.881446494537 1.4830134034600382 3.03890540709807e-05 18579561.424969185 380.72164111341436 None 8773 22668 ETC_20200721 703282336.3501887 76762.57102742078 6.039772630672115 0.0006592743021879132 589478885.1880229 64344.85277032616 232191 25608 352262 CELR_20190615 52371360.97992918 6021.209325613737 0.018246031027959568 2.099904545840525e-06 47722443.940916546 5492.29456075067 15173 None 333919 XVS_20210201 82752602.86747472 2503.4282015289946 10.253936847755824 0.00031012745837315773 20269997.431300547 613.0604155198683 None None 58717 BEAM_20210930 50832244.11421665 1223.509093645309 0.5255596658150922 1.263807644812586e-05 7576893.849727768 182.20074701448746 23448 2736 291991 ARK_20190725 58337526.45889645 5934.591587523315 0.40792236074107047 4.1599760757706775e-05 4836970.232466353 493.272308233361 63461 21839 182377 DNT_20210218 238650337.3302675 4574.5487740171975 0.3171850766737602 6.0818356232956595e-06 23905547.96925058 458.374696434194 63570 8665 221054 POLY_20190601 45686813.97433607 5325.759602480004 0.10253912607185273 1.1956284797571377e-05 8889574.092254188 1036.543645804282 35027 5090 303523 MDT_20200907 7780178.518200596 757.6253444821593 0.012831808128070549 1.2495475560896076e-06 827894.4858349448 80.61946696444788 14120 64 538522 SXP_20201229 51761994.49444408 1907.4719770042252 0.6710515692868466 2.4723043276581046e-05 19829465.719034437 730.5619442096997 90814 None 107070 AION_20191022 24607265.947219014 2996.254512528618 0.06957124029572276 8.46546172227837e-06 1824219.869237309 221.97194430350723 68226 72553 187992 OCEAN_20210111 184166940.06320617 4777.383248255425 0.4394887391856725 1.1432034227983854e-05 51661577.65430196 1343.8272050154033 None 1366 63800 STPT_20200407 10109111.189216832 1389.4927358612704 0.0144922854432223 1.9888804916275e-06 6008597.546493365 824.6030268366281 11233 None 1339283 FTT_20200903 396883918.173356 34789.0248003611 4.239813712476478 0.0003721543470866029 22461133.26150932 1971.5508629929122 22889 None 9100 BLZ_20210624 40192127.29667529 1192.0424181138383 0.1371725710630342 4.070222497481421e-06 8993851.867778445 266.8680620881948 63121 None 221752 TRX_20190220 1628416359.9397597 415941.51079865545 0.024843060488243158 6.345588491093582e-06 150969103.15228477 38561.585595592 386948 70037 75623 ENG_20191213 37641997.06090626 5225.070656353839 0.4825852322645391 6.704172897508658e-05 628963.9080190634 87.37695444731453 61317 3566 384802 DGD_20200317 40497036.627903365 8023.247644787958 20.19127277056309 0.0040136293511282275 583788.9581375404 116.0458047330939 17619 4713 334920 IDEX_20211225 163026935.70242625 3207.3742850062795 0.2697087876009717 5.306176346826987e-06 15626899.751176512 307.439318427423 76580 1986 56023 POLY_20190621 44425008.59820457 4644.129984211595 0.09603619148954247 1.0048333881111597e-05 7772689.608897162 813.2619498238861 35118 5111 316227 LTC_20191220 2521238729.6566815 353068.8528469184 39.64559521417565 0.005548219801423588 2387843926.3654227 334167.8409265663 449609 209910 178248 CELR_20190621 52539472.648044966 5492.405020925805 0.018429785160100267 1.9271106948639666e-06 38564258.94038481 4032.472174684568 15639 None 371624 NEO_20200411 512976220.8626022 74814.38035543331 7.285536881553551 0.0010616352364459924 336520945.14496654 49037.22251033662 321466 99285 235469 PAXG_20210821 322923036.83649594 6572.549721072851 1787.3600105488715 0.03633974067623604 6125054.644139553 124.53165343419244 None None 41531 BNT_20191102 21909193.55633339 2373.477874832995 0.3140922786409498 3.402640412543491e-05 5259876.112913884 569.8155683486951 None 5091 171240 ANT_20210212 216528882.20633727 4540.962917032588 6.23127023989263 0.00013050826574492275 81305126.96428023 1702.8616490338263 77954 2766 124714 STX_20200704 95260104.33152322 10505.339867886052 0.13329743571472655 1.4704669367485768e-05 753616.5670004546 83.13500097119332 41069 None 98970 APPC_20200329 2567024.1162572107 410.6812007931441 0.023749798603979473 3.7987113563651816e-06 225865.8250142648 36.126583168276376 24799 3226 700856 RLC_20200315 17565726.980061665 3396.692780617418 0.2510898194811937 4.846263398434189e-05 469779.8431780866 90.67181074964431 28434 3561 249120 QSP_20210421 59127678.544098794 1046.5905582719174 0.08290706149543627 1.4704023350783732e-06 1489644.5154244422 26.41966479583122 63732 8400 217402 UMA_20210617 732380785.7914435 19147.758086432154 11.967152867699472 0.00031284497418476606 44600735.49901328 1165.9511748589114 40012 None 140212 LINK_20210703 7984941870.18389 236241.84040925605 18.3293454875173 0.0005411157435253113 669998149.4331417 19779.568617875608 390549 61807 24345 UNI_20210204 5686308871.089227 151731.66505988294 19.826955201427335 0.0005285875672765963 1207216842.8498006 32184.458362591708 190127 None 5312 VIB_20211204 9823261.657379175 182.95502684563027 0.05376561854521892 1.0021298181330537e-06 2347611.2507368606 43.75679661844503 33293 1322 3749819 PIVX_20201124 21564506.405652374 1177.5078973857944 0.33400767127880066 1.819961744307376e-05 300919.2903696913 16.396677193076226 64838 8648 298063 LINK_20210826 11890759056.800566 242584.5968802909 26.567243523334998 0.0005420697112414175 1319105775.713046 26914.62086797241 None 64730 31110 PERL_20200806 25667477.928052146 2191.0684483829414 0.07279542675063741 6.214080058312815e-06 13727268.031805342 1171.8090866307018 12432 498 889559 FTT_20200423 271988646.3219029 38260.199666433495 2.711076947617735 0.00038107714262087747 1815827.497084318 255.2381829993267 10605 None 13510 STORJ_20210107 50728326.106310904 1380.881376126064 0.353710681173396 9.583220378706282e-06 33761459.05879675 914.7122766940458 83105 8561 92086 GRS_20190726 19484172.22160789 1966.9416091705164 0.2665857597879052 2.6932064412957883e-05 541842.2368628293 54.740095781788895 38586 107011 None GRT_20210902 4555590169.121108 93668.4946623156 0.9212416980089426 1.8934070720761155e-05 192737015.60675612 3961.279967997435 135254 17189 31512 FOR_20201208 18391901.503563765 957.822839570231 0.020756885167498667 1.0811896828628606e-06 7281493.439969576 379.2802012247877 16817 None 174751 YOYO_20200806 1890459.7656946955 161.0384487689329 0.010809185980028287 9.207784128846524e-07 638604.9973214839 54.39944293495679 7621 None 1631861 SKL_20210727 273846067.85575527 7314.578908358856 0.22502384823133714 6.0308664464985515e-06 45446759.361556 1218.019060157255 None 2320 175658 WAVES_20190615 249899595.492133 28731.30937767673 2.3837412309942176 0.00027434070672146724 45357905.97043102 5220.163924480983 139694 56859 46755 TROY_20200506 5081968.424356233 567.0391825282047 0.002676434717619873 2.9842370743187044e-07 1244125.2032508687 138.72053490388365 8715 None 489734 FXS_20210324 73065844.92477953 1340.3022720336382 7.957382610228792 0.00014597502031181423 12793650.552703563 234.69443292729386 7715 None 69007 MDA_20190325 21220291.18648074 5314.0655904839905 1.1908292886259872 0.00029842554230169195 13007414.363893185 3259.698701202175 None 358 1647124 POE_20190627 14067208.70646096 1083.235054956686 0.005600960374853086 4.2999263979438757e-07 1856494.5191905338 142.52537522933088 None 10855 945513 GTC_20210902 174513756.84156597 3587.408720038683 12.28639690672391 0.00025251951625510706 28668726.289397314 589.221799459108 None 1165 25731 GVT_20200526 3990101.701510593 448.97128998049055 0.8946907025009845 0.00010062779149661541 764378.6403156834 85.97131302151689 20369 5549 249419 NXS_20210930 48923599.97584459 1021.8120047259132 0.5668080095236444 1.3647032746464784e-05 297510.02048967726 7.16314682185991 26657 4099 581951 SOL_20200721 18811046.939017244 2053.18897298778 0.8730589788162091 9.528783211822309e-05 3041235.988885012 331.92807287052545 78943 1994 132942 FUN_20210724 154745230.13588753 4629.488910070413 0.014875885373455857 4.4490814711761707e-07 1114812.5955118514 33.34182764930345 None 340 132450 STORM_20200430 8915853.161509085 1021.6209448915604 0.0011609145656809763 1.3239342882964104e-07 317046.73736996605 36.15675597543959 25917 2509 799916 RLC_20200626 47263628.99230028 5107.841679920735 0.6729494896859267 7.272652407751294e-05 2579528.77265367 278.7730197709039 30565 3590 529294 QSP_20201129 19232340.400024224 1086.4664721320712 0.02698765896024622 1.5244368497163899e-06 278082.10657501186 15.707868960926012 None 8198 237712 WAXP_20220115 772247485.5870515 17919.688591834696 0.40566850801479926 9.40585724643906e-06 35088541.976612896 813.5652886461313 238444 6731 2900 CTSI_20210506 290701388.15148807 5077.958800816235 0.9341750025025749 1.6295313746854817e-05 185799342.76000085 3240.9972179974775 34293 1174 173640 YOYO_20190430 5075095.399542863 974.9284531864472 0.017366959565358196 3.3354012809933285e-06 347835.1723211972 66.80328096397729 7462 None 1423576 MITH_20190626 21420443.617586527 1814.300517797206 0.05040496811218795 4.2633930528194285e-06 8797342.127271099 744.1037801115918 75 2076 556863 ZRX_20190507 166265611.84644532 29065.32572028558 0.28227878005562906 4.936387643541506e-05 31797433.24094513 5560.618354521876 150017 15857 221725 KAVA_20210909 565602657.9075915 12208.519390882428 6.15445372395546 0.00013293439237027486 74980876.38491727 1619.5649018892198 None None 47968 XTZ_20210210 2855996017.0101438 61421.929957783635 3.7664131429843617 8.086851665183632e-05 658915682.7448413 14147.554142184701 83786 34987 140734 GRS_20190902 15216695.67764097 1564.465062823234 0.20728064757199166 2.1305755386768033e-05 710381.7206603666 73.01800408725789 38474 107005 None ELF_20200106 24294124.07753108 3308.531990729757 0.05274562292773232 7.181294504142524e-06 12986098.097872641 1768.0518254241017 83813 33490 1063129 PERL_20210509 0.0 0.0 0.1415050294249132 2.4089038637056535e-06 6719923.136244655 114.39627886367397 19083 650 314180 STEEM_20190805 70692317.90354726 6458.315339397381 0.2209282644835362 2.0176031239028953e-05 799273.6894897571 72.99279232278134 6109 3764 297203 EVX_20210617 10673132.97923821 278.630859223216 0.48895155878322083 1.2785012678677675e-05 131524.02683392423 3.4390653233769144 18151 2811 977080 ARK_20210124 64288009.38883835 2007.9970352078544 0.4134984554014247 1.290240288672237e-05 3226088.8282335377 100.66373227395559 63317 21548 90989 YOYO_20200914 1925092.5371412064 186.46530111085409 0.011004335595052178 1.0661919484741293e-06 933907.5995839272 90.48476890716479 7784 None 2642123 DENT_20190405 43675815.97491073 8912.027786042958 0.0009245439546251759 1.8888372347734315e-07 3145779.738361035 642.6807370798361 44156 8902 242433 DGD_20190826 37352583.39238751 3699.9698570831983 18.67940192302565 0.0018499548544046512 2297280.1646777876 227.51609554128626 17235 3365 558523 SRM_20201111 58624817.5833179 3838.467112039996 1.177606153287713 7.708764841478916e-05 32059750.638937265 2098.6734644858743 26713 None 63040 WAVES_20190419 269830818.4949771 51173.60618845663 2.700295067992669 0.0005120534824459047 13447867.076921603 2550.1017462236946 139883 56748 40445 ETH_20200531 27012940828.466957 2791047.101984294 242.70977026782677 0.02509051008248154 13546265992.193748 1400366.8788531185 459097 463421 19133 DGB_20210131 400956551.7486841 11720.810477765997 0.02863425671904732 8.380087626997172e-07 50983517.93160662 1492.081152975218 181631 24458 203281 OAX_20201101 2854852.7564745066 207.13473995339822 0.0511276846318782 3.7100848881526502e-06 198231.48416576398 14.384684912974025 12734 None 1447630 ADA_20190207 1142636303.3233032 335503.6199405256 0.03672597403660614 1.0783568839258872e-05 28173078.13361925 8272.246970628661 147955 71089 104586 MTH_20210131 3911072.511779456 114.31721316084658 0.010930094210635038 3.19925802154454e-07 1356583.3170521539 39.70743504433569 19102 1879 1161820 GXS_20210430 64020935.33774638 1194.5479967490244 0.914584790539234 1.706497138212892e-05 20368774.1663603 380.05502806694034 None None 582398 NANO_20200523 124789230.59212661 13632.23484236011 0.9340647976655831 0.00010222662551420442 17415826.89499246 1906.0360892136034 97934 51342 299823 ICP_20210828 9851335651.229694 200805.17569056622 62.71270790470652 0.0012786749874107053 526409294.87110865 10733.173881041695 None 22577 30297 DLT_20200612 3074280.69651502 331.3350758755334 0.037579413567628686 4.0401890813044384e-06 194165.195199714 20.8748361707 None 2563 4273653 SKY_20210219 71701603.13015649 1387.2690394421438 3.5913430072156896 6.945609738741895e-05 35544575.36327966 687.4273727310764 18059 4124 536790 LRC_20190626 62058844.19373642 5257.508182268739 0.06460484377850371 5.465248581492646e-06 29290614.215845384 2477.8403356725034 34933 2455 720276 SNT_20190908 54959603.7966671 5249.777010271105 0.015506334953613572 1.481175174664931e-06 24997353.712550957 2387.7634439155704 111263 5714 268012 TRU_20210429 84569993.55877243 1544.998931050621 0.3490369968072337 6.374449056670672e-06 5104299.833958546 93.21962874758208 23144 None 84906 OXT_20210828 245625644.0344201 5007.521614677711 0.41399490946135575 8.441054291087543e-06 41005319.117681205 836.0685529830802 69761 4403 281740 FET_20210430 392626288.8341572 7326.353587568056 0.561612058170187 1.0477446882408628e-05 51969158.00579683 969.5377522756726 54360 2367 124282 QLC_20191213 3198182.2010364574 444.0088467058318 0.013263422764206072 1.8410904441635956e-06 30105.469557166252 4.1789282679232 24525 5703 940522 LSK_20191022 103530155.11018525 12607.26420685851 0.7595419399320713 9.24214257447314e-05 2711316.4920204664 329.91428473343524 180681 30970 158256 STX_20210304 1105217979.672141 21747.370679183194 1.0480420015520333 2.0684361798868416e-05 19455707.890113834 383.98165384236614 53677 None 60484 GLM_20210729 364283484.1240597 9110.047740737054 0.36305245406779796 9.070528942210549e-06 27705082.57079209 692.1857998452584 158746 21022 185713 ENJ_20190729 74536113.06786938 7808.140115755123 0.0848730318573527 8.900062928321702e-06 2415142.231280527 253.25969119815096 46982 12717 21300 XLM_20210916 8073282906.755709 167521.73990307358 0.34069751309408014 7.069963377773326e-06 495005752.4309482 10272.08126555222 628133 200458 38178 BTG_20190819 242378817.90685287 23486.35375823521 13.857348367848582 0.001343073537417981 10020461.114390237 971.1970716337611 75048 None 269887 BAND_20220105 241285226.1482037 5215.848834171885 5.7302935104213235 0.00012456478216141853 56892597.642239146 1236.727930081489 119944 6397 251134 CTK_20210708 51334047.71046404 1510.7540679335505 1.1354532509911321 3.3418726063975345e-05 6173008.510068176 181.68434517976303 77219 None 123040 STEEM_20190801 76786031.03313437 7630.068024705061 0.2405954810257821 2.38942669360114e-05 1356870.7551218062 134.754950019504 6101 3763 297203 COS_20210408 111510223.90405546 1979.6989621558032 0.03677985257662429 6.541673088361704e-07 18516734.249683343 329.3390637527577 23011 None 200238 AVA_20210108 38745100.61673835 989.8451831743374 0.9912904269920223 2.5119861960140075e-05 6151731.838780623 155.88837579605877 41959 9043 96594 AUTO_20211104 39511587.03370845 626.5175053608021 1130.0960646872713 0.017919426184068298 10545121.60999497 167.20926140435628 78041 None 20194 ARDR_20210111 85175829.46679305 2210.1293496616836 0.08533785015100229 2.219818477434654e-06 9293842.711337175 241.7525604464192 64291 6289 None ONG_20190806 0.0 0.0 0.23862836461381196 2.0217125940547545e-05 8178893.35582078 692.9340411670637 81480 16292 237451 PIVX_20190405 59190302.62336647 12088.182923099537 0.9940589298034425 0.00020308558730806745 867142.0199616128 177.15654587825043 62093 8594 250995 LINK_20200425 1379465990.1957376 183959.23594630032 3.7785830325030734 0.0005041294122275926 399334721.6000844 53278.273032671845 50226 14636 77374 DREP_20211120 0.0 0.0 0.716453189677573 1.2314531863341908e-05 6932333.963227989 119.15425698072042 4131 None 511631 FUN_20200319 8714307.631666534 1618.376951024091 0.0014510050900275982 2.69315143243271e-07 301602.1460644992 55.97914557852696 34864 16987 317174 CND_20191220 12139730.47058241 1698.8997798360112 0.006566043060762437 9.188877082036157e-07 90964.53798151623 12.730071225565544 35313 6029 515969 MBL_20200323 4276730.205690775 733.2463603684073 0.001206338003717898 2.068874594126077e-07 1462995.4564269965 250.9043171810331 None None 114904 NXS_20190615 22009890.63046291 2533.0807186252173 0.37020460152224355 4.266441483624887e-05 661889.0020468018 76.27972975689444 21314 3519 793300 TNT_20191022 34975118.428543225 4259.2457906946975 0.08152724866513499 9.927002342759672e-06 1265505.2122726582 154.0917105961122 17718 2555 505684 ETH_20190830 18182244936.177788 1914174.3197184717 168.79916502828434 0.017796369326971533 7553876741.007874 796399.5574911201 447934 445167 27728 GTO_20211207 46006660.180672266 911.4860276002831 0.06946306324080447 1.3755602606961455e-06 70256950.0642231 1391.2814096757008 14707 None 649191 GXS_20210314 48166056.61224791 784.2402985372165 0.6876696606647614 1.120974734468694e-05 11883403.31129008 193.71212129062903 None None 470318 GAS_20200312 19273179.24454159 2429.9667852046846 1.3895857265943374 0.00017505113049137434 3413993.0656931405 430.0730312652107 322780 98979 240012 DASH_20200927 671880066.8996686 62588.0776946218 69.0807525955709 0.006435123950924092 332660841.2267917 30988.570136833387 320405 35376 67756 MTH_20210703 7360450.497244009 217.48533405552243 0.021151093201110045 6.258073843241941e-07 176444.84309240335 5.220556908489002 21805 2056 662461 XRP_20210325 22421022550.637875 424163.54539747955 0.48641604303514624 9.219530962126958e-06 4542722141.91615 86102.76745479272 1296732 277712 10645 LTC_20201014 3273623459.1479406 286546.5747451929 49.865154002068266 0.004364032331330738 1779079777.6592371 155699.141516731 135037 215322 137966 REEF_20210212 0.0 0.0 0.043074851251148225 9.025913845826353e-07 427634033.66661626 8960.652987316344 37341 2733 104266 ARK_20211125 290394282.2026946 5076.916589341923 1.7985483509216202 3.144373191602325e-05 2606561.4853328583 45.57009575274384 76676 24261 148315 LINK_20210418 16990628189.677645 281848.60263993917 40.07482368344696 0.0006666894360553246 2210095288.2538695 36767.40272130291 238349 48873 26155 STORJ_20210221 115250385.00206144 2054.684914848058 0.8061912283459088 1.43360321809127e-05 94578630.27502236 1681.8370624439522 85053 8899 75920 LTO_20210610 81318741.15834951 2166.4244348143775 0.28471053318050693 7.592452979453444e-06 17392485.768687118 463.8101334693128 10151 4250 193640 FRONT_20210729 31563557.777872097 788.9842951547336 0.6990856025903559 1.7466005587705973e-05 11149992.988213003 278.5722365235523 71122 None 222970 ONE_20190906 23823644.378088627 2254.1301767708364 0.008771973190742044 8.300050352073087e-07 3886254.085950719 367.7177744727252 70868 None 133162 NKN_20210828 283072219.67132795 5770.937574907022 0.43841078434552844 8.938936347726498e-06 18687924.405295335 381.0357151214622 30190 3407 164254 MTH_20210114 2926184.546356801 78.46328916097258 0.008390307013824164 2.2571383645011386e-07 161595.12887875558 4.3471897310525405 18960 1882 1263562 POE_20190329 13096927.68615864 3253.0362683048393 0.005757900415819644 1.4301463864817614e-06 2171636.737697688 539.3907863769958 None 10957 686511 CDT_20190523 6987322.124348755 911.3409433822642 0.010356043324195367 1.3513163292853801e-06 7799690.375925505 1017.7486360773867 19817 291 386642 AUDIO_20210523 195377160.7177813 5198.217833874932 1.0959349384473864 2.9182267791643985e-05 12474073.598390464 332.15635657771537 49220 5307 31398 ICX_20210703 521317605.4442269 15423.492991130583 0.8195333892326854 2.420262821086971e-05 35608048.722343266 1051.584201283494 141771 32494 225369 ORN_20211120 256013033.42522776 4402.755889734776 8.03025905946577 0.00013766701582241497 21094577.604229894 361.63559946245044 None None 71458 BTG_20201226 147944648.80186555 5993.940708508911 8.430050767866245 0.0003418769632871857 13164788.868253788 533.8921632300853 81342 None 361014 QNT_20210729 1282341941.8894882 32068.9426845375 98.09333336049491 0.0024507709817549374 21207575.15580373 529.8516015784877 35204 5332 200658 COS_20191011 23058649.182720527 2692.988970483822 0.017459986962305066 2.039128655876076e-06 1004832.6088921385 117.3530639841996 9381 None 265359 BAT_20190522 462985150.46258724 58182.93812944828 0.369219965257848 4.640155414953798e-05 60047269.15873177 7546.413719677773 101105 27034 50152 KMD_20190614 191088952.2735827 23215.805573930214 1.6696222062628334 0.00020284597336123962 916077.7327024094 111.29624334627789 97186 8401 375668 BAT_20211104 1448871385.5248845 23014.540243731368 0.9700023273944646 1.539232582458657e-05 295599265.1697096 4690.669366971769 221416 81962 25142 BZRX_20210620 37933865.05369011 1064.0987235298924 0.26905635601410127 7.556995434236351e-06 8617531.713463506 242.04091952251667 None None 126012 VIA_20190701 10239255.480224095 949.302081023461 0.4423575074529082 4.101185903530228e-05 975244.1944430682 90.4168613703339 41040 2235 1727246 VET_20210422 15345230222.22657 283209.00088793656 0.23387945809321778 4.324552760418609e-06 2751070155.136135 50868.71728921723 271955 136315 33497 KNC_20200407 81813808.61184704 11248.471515202216 0.4578089538662187 6.282841314464645e-05 64217666.11707204 8813.05187221696 104841 7305 125566 TRB_20210120 47129000.14181577 1301.4445556473502 28.14407395035969 0.0007778734570554772 47901103.29016863 1323.9375677741482 12542 None 436665 MTH_20210523 8433642.018711302 223.03433177430486 0.024125458392954303 6.418835630937141e-07 345329.0012416887 9.187846553885313 21725 2049 420234 XLM_20190126 1917013864.229289 537578.6273554324 0.10001729582513824 2.8047350937180843e-05 93610535.37709226 26250.7350901482 261177 98882 59724 LRC_20190903 32128909.82523484 3111.115835422201 0.033390180047660416 3.2332475163002353e-06 3247082.159463695 314.4223934199604 34425 2438 519433 ICX_20200410 135004678.87016076 18523.924298453352 0.25343625797990177 3.475154147030331e-05 26392617.58796029 3618.993398689598 112945 27507 109675 ZEN_20210718 563489380.8648393 17828.758555707533 49.75580732705335 0.0015741762686589064 20509380.667984378 648.8766249980728 116264 7437 1253134 HC_20190729 128175037.66229399 13427.164527590645 2.897367963104884 0.0003037015925901964 63171578.509676605 6621.633580591541 12938 846 470640 RVN_20200526 126200811.47620292 14200.274921214326 0.020588525765935416 2.3144369603937416e-06 28971420.47940785 3256.791045407969 31426 7796 210247 AMB_20190419 8445672.64411186 1601.8123898690808 0.05842064670393949 1.1078232133250445e-05 1716465.7476306737 325.49119316311175 20040 5695 593270 TWT_20211216 255003001.18169323 5227.213627220455 0.7383932747025416 1.5109538858525474e-05 12188009.517173264 249.39989260058448 None 61532 3138 MTL_20190923 15418061.582068102 1533.820428243925 0.30250728611427863 3.011475568714518e-05 3463788.818699468 344.82195575148535 34389 None 247818 ZEC_20210805 1348369262.3819518 33819.795249489835 118.64731743722514 0.00298308717961523 548708405.9128509 13795.887225952412 77196 20173 132489 BEAM_20201208 19958042.69765669 1039.3411774505194 0.2608246913648699 1.3584704698023602e-05 4679006.431422619 243.69978286338994 None 1600 512574 IOTX_20190804 23249228.94030035 2154.705377284981 0.005643942963534064 5.229780136553158e-07 995557.0226045928 92.25012327841321 20389 1759 857691 RSR_20200913 124407941.4913518 11925.780234104288 0.018176259660687956 1.7406969592448234e-06 49537444.344939545 4744.082685311518 43688 None 120167 BEL_20210723 70753652.7818291 2185.5403649337 1.4741117308776985 4.553291208151622e-05 9369073.592027854 289.39543401981996 32720 None 593705 DOGE_20210506 84871718669.88199 1482065.8227744843 0.6553331774061838 1.1434584777275071e-05 44644519734.09104 778980.1635875134 1153872 1693316 8878 RLC_20210509 341512811.15139896 5822.758113990619 4.847606990973786 8.25650333906589e-05 79251948.19135109 1349.8288456299197 None 4724 331686 WTC_20200314 5900879.151685159 1071.812870075877 0.2024660767040823 3.639473695308425e-05 7912821.791098507 1422.38676390501 54932 19433 905715 LIT_20210729 82961819.84701256 2073.7704354303614 3.738701538695248 9.340799141572387e-05 30700632.896707267 767.0268472603732 53373 None 411368 KMD_20190723 135963946.48851278 13137.795257470685 1.1812998565068442 0.00011422295140982169 2684050.915609508 259.5278545294363 98148 8454 276726 YOYO_20210729 1839019.4097735768 45.97786273389858 0.010493067665976772 2.6241174414786655e-07 162805.14677423408 4.071448301034024 None None 1359216 BTG_20200423 159020733.3580255 22357.69161055366 9.091433669249659 0.0012779193036366015 39231330.968022615 5514.474061551421 75190 None 211621 DREP_20211230 0.0 0.0 1.0389740080963337 2.2307202336651643e-05 35039636.13698851 752.3155026203315 4249 None 533342 STX_20200610 98923951.14950709 10115.776315368727 0.1466320978033087 1.5015664798082414e-05 857670.403612468 87.82859606329848 41039 None 95761 KNC_20211011 164926993.86576223 3014.132370216101 1.7840697354513055 3.2609559683556423e-05 35060989.22602241 640.8513064324175 188690 11846 105658 IOST_20190914 81227445.78599082 7844.317749672027 0.006757765292166939 6.528209739003358e-07 10878765.112249974 1050.9222691773512 195766 50792 94352 CVC_20191118 26636630.381298482 3131.493520064074 0.04090674140243687 4.807133097910268e-06 4513818.600705005 530.4388970987417 87569 8135 119637 APPC_20190703 9543423.922022946 884.2397699499289 0.08817110799107147 8.152549580471429e-06 1295868.494841649 119.81965968985261 25504 3368 1256272 KEY_20190712 5926473.549121735 523.718128236427 0.00234189510152639 2.065518380099746e-07 247740.57962140662 21.850368975581276 24033 2842 905724 ARK_20210821 204562583.148294 4163.3547308601055 1.2880860511747658 2.620818425877169e-05 8161502.589052686 166.05890847684802 73196 23438 142622 MBL_20200711 7248004.03743352 780.6917666168459 0.0020340008241970385 2.1908330947124425e-07 10613343.249324735 1143.1688404228018 None None 121072 XRP_20200207 12336435223.046865 1266841.360372891 0.2823097578555551 2.8990682577421433e-05 2897162400.397639 297512.61934113683 944736 209295 32294 SYS_20210221 115464785.52194686 2053.8973942262573 0.19025586137710845 3.384287392491979e-06 11826793.016175373 210.3759968735993 61694 4620 261910 TNT_20200207 26185260.93837062 2688.5961670153088 0.060709317567793034 6.234302946057839e-06 1249845.2268872354 128.34790592726276 17720 2565 948981 CDT_20200730 6048819.4767919 545.068156826748 0.008959433743258213 8.077949412865326e-07 702210.5879163275 63.312278084928 19190 290 313567 ETH_20190224 16550258314.845478 4022668.40394755 157.67559560191677 0.03831938651741846 5041062545.201769 1225113.0137841038 439707 430099 29840 SNGLS_20200511 4770197.367982215 544.7818971666817 0.007416562298771963 8.449090837234204e-07 716878.7176361117 81.66820638168703 8811 2124 2345766 MTH_20190726 5717408.3808658095 576.1927327736065 0.016696515721704892 1.6867804088510858e-06 142180.27053444096 14.36388878135069 19510 1998 1394829 POND_20210420 121970871.09938483 2178.768114692348 0.16129188376530024 2.882202479080674e-06 32908871.686385937 588.0645035820149 None 428 75680 DNT_20190806 5799111.24896028 491.3136066335425 0.008665455868354512 7.341566997129722e-07 417564.7934637848 35.37701828304545 60479 6311 717960 NU_20210809 131237898.34308377 2983.203811081254 0.235092928716728 5.344435821387811e-06 31324119.04914687 712.1002951194457 None 7145 153146 VIA_20210620 16849385.324026 472.6412087891436 0.7270681069300317 2.039494867753042e-05 871566.2752792429 24.448259088741896 38157 2295 822358 NAS_20191127 18731187.255459707 2613.257036803371 0.41151104705055913 5.7499061982973915e-05 4407368.278421828 615.8268256444499 23935 5054 1061187 DOCK_20200314 2078558.48809954 376.6891509140478 0.0036165492112953963 6.501007939979821e-07 1554046.6680267658 279.3510923724576 43102 15023 375776 DCR_20190207 138302111.2596324 40608.59858738019 14.911962197745702 0.004378486210536916 2993052.0374488137 878.8271388838547 39773 9341 257134 FUEL_20190719 3665307.7875477676 342.53302504553403 0.004256865230848928 3.9853355036985076e-07 1118345.465877322 104.70103348027071 1 1509 None ELF_20190618 99811094.27226909 10708.218683934632 0.21619158692634963 2.3203150809780165e-05 29533575.8091026 3169.744129239107 86882 33193 1215448 STORJ_20210704 125162831.75390662 3610.442783567298 0.8703308044832622 2.5082391941115527e-05 21598251.62969425 622.448165488605 103342 13647 49703 COTI_20210702 93380461.90165763 2779.5804284633477 0.1395740857664092 4.150241374467984e-06 11459574.133401161 340.7509240778469 122727 5370 94644 IRIS_20210401 213011329.53628024 3621.5884741577615 0.218887494527661 3.7250073191236387e-06 15330862.48356581 260.8992125520625 20506 None 562612 CRV_20210418 1065794189.8076608 17679.949168199262 3.8037788787346396 6.32801086181754e-05 456120731.64275056 7588.077635826335 103364 None 25328 BAT_20201106 283636817.0395181 18253.589454742152 0.1909773231335384 1.2257358006963033e-05 110390620.23251794 7085.120529490999 123125 47204 21140 NXS_20210731 34504076.76302815 826.9365353387994 0.5054883231296368 1.2101293065444144e-05 95804.67388822873 2.2935454346062754 26002 3960 452746 GVT_20200411 3089063.7692661905 450.52067206438755 0.6981342494065355 0.00010179116827402625 231040.57200488023 33.68677265592964 20534 5570 153070 SNX_20210124 2075729115.2463787 64834.14168417241 14.547681305384412 0.0004539438870826934 213638271.95835975 6666.339849396692 None 3348 36126 AKRO_20210125 40582399.29264267 1259.8347174876533 0.01667755912159342 5.169128393937874e-07 9714975.212271275 301.1109350596391 26220 None 227046 RENBTC_20210201 544886444.096665 16483.881394848373 33048.084339487046 0.9995300880510101 39949761.775477126 1208.2693960372321 None 2412 83739 NEO_20210519 6132504015.305791 143873.33059261742 87.73330320797204 0.0020507598152831514 1114333245.6315367 26047.4615387279 397872 111257 83834 PSG_20210125 0.0 0.0 9.155196461149995 0.000283757167251839 1911988.7504871218 59.26038987343147 None None 41999 FET_20210203 75739462.06067482 2126.726177345738 0.1098072433876705 3.0918796287856834e-06 8815666.154482253 248.22568854578492 27854 831 293884 BNB_20200913 4189027940.767463 401729.6880709685 28.453207780628457 0.0027250211882763296 722048008.6022166 69151.99641333062 1261020 71562 775 ENJ_20190401 130981008.75193548 31918.130917795334 0.151250505570544 3.6858629260459595e-05 21729934.17685183 5295.4242014431575 43774 12110 18229 BCPT_20190807 4297450.0197681915 376.31864581747215 0.03709866574222848 3.239694784985916e-06 168619.19404820222 14.724915645272873 10963 3044 1188214 FORTH_20210428 275300992.7230401 4997.270523687093 34.99926418620488 0.0006351310718945625 60253122.23639705 1093.4124188268138 None None None STRAX_20211021 220540002.4463687 3326.3943917313145 2.209348576256283 3.334342820534651e-05 9529526.089776503 143.81934676141424 157364 11104 259417 POLY_20190401 58132544.03309669 14166.039555757086 0.12017219963833113 2.9285076021232188e-05 14806334.07310182 3608.1940767625015 34052 5031 277280 NEO_20211028 2784040539.553463 47573.31324315939 39.36112205248387 0.0006726325376770882 365009238.18378544 6237.553132448039 422431 114527 97523 NKN_20200523 10132277.77580499 1106.8461153066896 0.015588119655084597 1.7028401773949069e-06 998173.1472023136 109.04004951606821 12292 998 285670 SUN_20210120 0.0 0.0 0.0003920346859736322 1.07e-08 50.5865595691316 0.00138068443113759 41 None None CTXC_20210325 2302073.3493046863 43.55089476409033 0.2286128066986418 4.339198852368756e-06 3720621.185729604 70.61946971544134 18773 20374 422109 AXS_20210408 413785683.0361696 7346.373852226199 7.411136379623523 0.00013188712020961095 132330454.98464608 2354.9266576631403 54418 None 20530 OG_20220112 6055774.6929015275 141.26308150424717 4.368942235770821 0.0001021255788454254 1841948.5434579258 43.05620240615066 776405 None 169599 CDT_20200721 4842369.182578282 528.5320402403718 0.007106053569191335 7.755723908163907e-07 392259.3558622084 42.81216338772564 19015 290 313567 DREP_20210422 0.0 0.0 1.6558574610561223 3.059701672354426e-05 7866718.077178227 145.36160885086719 3801 None 197188 LIT_20210708 60070979.002556525 1767.9480917394487 2.7056123140138086 7.965468317303757e-05 9726637.134951472 286.3574338831558 53459 None 323209 TROY_20200719 9060926.159670305 988.1631249112883 0.004769925816362099 5.202812198566844e-07 4864910.165674538 530.6416688511008 9048 None 599996 ONE_20190708 40724087.63880572 3561.053464640478 0.016011759147912138 1.4001229663971308e-06 6756811.538928664 590.8387034728007 66048 None 175184 ZRX_20200506 132078168.07160537 14727.982734571993 0.20273387677567772 2.2530620806562826e-05 41976563.92716526 4665.022243183721 152387 15915 152410 ARK_20200901 68745192.16493054 5896.664902319494 0.4530159142271874 3.885774346527108e-05 1815221.9253819967 155.70187645473214 63034 21819 112680 PSG_20210725 46200673.68283604 1352.2562600744263 21.934718162941003 0.0006420014499585388 14382080.174503675 420.94529124386577 9311146 None 40943 NULS_20200310 19188449.21208732 2423.628912141012 0.230703581314032 2.9110207348501352e-05 6584165.754892182 830.7908756774713 22669 5188 619302 BCD_20200312 109219098.65777586 13769.910787803305 0.5807996413991138 7.316530419764018e-05 7099987.235206845 894.40951549469 29147 None 1280057 DCR_20190316 184627296.98569152 47045.81943991738 19.495859803471824 0.004967774618880218 3509467.772518914 894.2537083177458 40079 9384 241098 FET_20190902 16723073.061005382 1719.056235155752 0.04918537474658412 5.050913935448942e-06 1758711.731646328 180.60453213131007 16203 303 439975 WTC_20210806 17748219.204675786 432.98205516855063 0.6166780884812112 1.5071845500521123e-05 4804280.233493898 117.41842425237024 65340 19901 1106983 REP_20200407 111251997.32379942 15296.239846883744 10.118360265834955 0.0013906782734829778 21771444.904350877 2992.2907087074373 130793 10115 261589 GAS_20190228 33637246.03358113 8812.149771597702 2.412939527495113 0.0006328768752777806 1448716.2822354326 379.97596848894125 316550 97917 150509 XZC_20190723 76863231.71513547 7427.067448253963 9.615392948649692 0.0009300248374353938 10388136.965333328 1004.7665700232748 60857 4040 262317 AST_20210708 22217339.80242201 653.8244063036675 0.12897793255119172 3.7960860057107076e-06 1829556.1214775343 53.847602082214145 44196 3695 208588 AE_20191011 61402480.689540274 7171.114055596588 0.18475396526786986 2.157716988436456e-05 42647584.64588233 4980.754690313826 25027 6354 361614 BAT_20200315 181981602.56457517 35206.967793844226 0.12571830865496286 2.4264784570177757e-05 59329988.007358335 11451.230874421639 111533 35758 21544 BTG_20210310 543100874.4692438 9919.038257669024 31.009662624392096 0.000566351564484865 40677982.737062566 742.930983876686 86457 None 197145 CDT_20200711 4841721.82549566 521.4386764590737 0.007180383193227682 7.734028887943218e-07 626617.936425291 67.49335086444178 18980 290 305990 DOCK_20210408 67151556.93892461 1192.215428181007 0.11953877244609198 2.1261193722766277e-06 32245048.989932656 573.5111873297978 46412 14937 236352 REP_20210610 144716410.4369816 3863.8797759349636 22.327424928358496 0.000596134780906261 35901122.85460545 958.5479774712398 150284 11181 154273 UMA_20210722 499735871.59984064 15528.932502948872 8.098571424504211 0.0002507657104238935 19343018.408744548 598.940911768056 None None 160207 XLM_20190929 1196040440.7934575 146034.28906802298 0.05962228213860419 7.263482970809403e-06 218532335.57748544 26622.69609788257 276259 104321 63333 CTSI_20210107 9580809.982822916 261.3911844701178 0.04615340395559577 1.251074903734978e-06 2463005.5838726205 66.76440326496338 None 172 553409 DNT_20190908 4442460.425656436 424.30961639768304 0.006618469452952361 6.321452451221412e-07 220984.654223102 21.106752762873246 60186 6274 485543 QSP_20191213 7202487.992136882 999.7744965433886 0.010084311534439687 1.4006111318198064e-06 94254.82479190626 13.09106292287949 55630 8408 442072 SNGLS_20191030 5315747.758418454 564.9743275731007 0.009210969230996131 9.789706705584628e-07 125913.80227745212 13.382513431194281 22 2163 None PNT_20210219 71799127.86535312 1389.1937323092486 2.04302062677505 3.952365374609059e-05 24731139.09144093 478.4410717083485 None 181 453797 QKC_20200127 9442570.328843316 1100.1300289905903 0.0025536297035817536 2.9715046795517236e-07 923112.2171683889 107.41699429716935 50925 9207 299608 CELR_20210124 30207178.388523806 943.7110449235306 0.0076613343057443705 2.390608658570053e-07 10286896.336345648 320.98773490463327 None None 526594 XZC_20210111 47383338.99411052 1229.1386061641472 4.147179088658483 0.000107825800000821 11117908.346373666 289.063321394044 67117 96 582569 TROY_20210112 7125756.4759388715 200.85338721588232 0.0037384045614398706 1.0516874204969256e-07 7630555.022153922 214.6626614728411 None None 988367 DOT_20210318 35349519331.46919 600948.2262642912 36.29445282846255 0.0006158986191602195 1407907457.9845603 23891.481802366583 None 19140 15796 VIA_20201130 4808547.646564798 265.0835478050266 0.2077420292812671 1.1439729853544755e-05 25438.943729169918 1.4008462564270914 37948 2133 5297351 TFUEL_20190614 0.0 0.0 0.013237266560586484 1.6082238305482018e-06 4510328.513313166 547.9694592166542 70168 3998 222751 ATOM_20200403 369544829.9992059 54456.47179071032 1.9886612265850967 0.00029171634187861306 138454221.50502884 20309.823752361433 31912 8329 80555 GRS_20190813 17997577.021870036 1581.250539989039 0.2462152837564131 2.1631546074562783e-05 720513.0421970299 63.301558017933125 38583 107011 None GTO_20190807 13079855.671618283 1143.0625839686145 0.019756251056425735 1.7252432732512138e-06 6614415.301957428 577.6134082118966 17440 None 944506 VITE_20201030 8790009.503189502 652.5568565647158 0.01611041474749377 1.1980888897892795e-06 509349.35214319115 37.87896273241867 None None 465291 ENJ_20190629 113627016.21159829 9180.769249604853 0.1302416012897882 1.0520055104418225e-05 9893755.58440031 799.1521365431614 46629 12626 19875 COS_20211216 84768926.05033441 1737.5526493605648 0.025152130540796156 5.146771788078371e-07 57357427.02681874 1173.6802446201452 None None 173868 GRS_20200704 13971844.668153511 1540.8231793390191 0.18616209551952065 2.0536419539467736e-05 567830.7572905688 62.64009129565273 37408 106871 None QKC_20200331 9011174.106907243 1402.7913808386552 0.0024185774182424766 3.7670244246085606e-07 2313416.3096347447 360.32320805404066 50097 9198 796774 WTC_20190221 29763695.79022714 7486.876201079143 1.1241025859101037 0.0002827611516169731 3355979.333494839 844.1761392920155 54429 20395 795747 NEO_20201224 967548675.6668069 41379.69493778755 13.515675534385558 0.0005796865156533509 408241418.5894464 17509.450037138366 325919 101150 122618 DLT_20190902 3326703.981228314 342.05338090574406 0.041478200179873144 4.26377128068127e-06 146712.54185089713 15.0813853963496 15024 2652 9139526 BTG_20210704 853684150.3682613 24625.34393759166 48.74765957313939 0.0014058224644015447 30746431.55023139 886.6892185592579 100392 None 156251 DUSK_20200421 4815853.046368376 703.2751214031149 0.01805324708044798 2.636790118118496e-06 193780.06359924114 28.302795309339643 17541 13331 1548362 AMB_20200129 2094001.2767608636 224.1561617229041 0.014488082007681749 1.5494617238928978e-06 308970.6058383359 33.043582118093234 19081 5510 758216 PIVX_20190513 34942201.29108584 5021.486957199847 0.5829477230310522 8.377446983217272e-05 1394974.9501774942 200.46958288583295 63054 8603 304717 LSK_20200320 158879760.81875962 25689.761371606965 1.142517970145358 0.00018508243094972427 10646173.270954091 1724.6290043468396 178060 31309 164419 GO_20190302 14627257.054812513 3829.1157995579288 0.02103758293808235 5.502275499829965e-06 2317195.810581398 606.0510741369825 7968 630 731173 DCR_20191113 243509893.35245958 27678.955135222895 22.821062029526708 0.0025931626321139063 30973756.014392506 3519.555162192502 40644 9675 100172 POND_20210408 175488540.18444118 3115.4938504955385 0.23820741201610937 4.232731834701787e-06 78683903.08666241 1398.142310748009 13918 392 81447 MANA_20210806 972731254.6071608 23741.57180262712 0.7338920839362343 1.7936599839933196e-05 144697365.59092465 3536.458290402325 154764 35063 19440 PERL_20191113 7190183.094702446 817.2840641191011 0.02744525264458195 3.118427150738911e-06 698402.7114731976 79.35499832382277 10970 376 281717 HNT_20211007 2119452832.7526267 38178.58336563485 21.65554728086173 0.0003903673054077462 17920717.13807942 323.042496660842 89688 57009 2627 NEBL_20210819 27697588.00769731 614.4752042055849 1.520417475880153 3.379291893516723e-05 882060.7600352142 19.60475213724231 40663 6115 2191823 HOT_20200106 119655786.86303864 16292.502691358193 0.000673529081995485 9.170070285341653e-08 8064911.196674664 1098.0342867962647 24755 6786 499870 APPC_20190903 3896411.3538719784 377.44107213097897 0.03591358336552805 3.476139487592939e-06 195268.31447964165 18.90036679798237 25226 3312 1154369 LOOM_20200410 13344950.270909078 1830.9091649504717 0.016055228044315382 2.2019257171472195e-06 22250774.989941593 3051.626145799647 21571 None 466308 TRU_20210711 50360816.94432055 1493.6221326888826 0.14369305352480083 4.2617085679046935e-06 1015804.4008086236 30.127150979460723 None None 106582 GAS_20190626 54147478.678884536 4587.2722236775135 3.8816059648910004 0.00032836456607287005 3406011.6144902916 288.13164858753674 322748 97902 201306 DENT_20190410 42223082.87415778 8159.562794735832 0.0008420214846073725 1.6288804863324107e-07 3165434.1287254477 612.3494444391488 44365 8986 242433 CVC_20200319 11019675.781187374 2046.5182141637858 0.016556621865833537 3.070799964348802e-06 6586049.872628005 1221.531896902286 86579 8062 104560 DGD_20190812 43162771.27023445 3737.5869285180734 21.58430902225254 0.001868423332662276 2081650.4722191002 180.19591494598203 17195 3360 575541 GO_20210104 7713467.796280899 230.76677552855926 0.00691318434434 2.1001173375102332e-07 394325.0695564946 11.978979207585187 13381 683 698826 REN_20210428 791566308.1451347 14367.356650303116 0.8973816612016504 1.6284770255318043e-05 115596207.727732 2097.722481548605 73577 1148 63508 STORJ_20200701 22136499.021554485 2419.763783119791 0.1539313871321859 1.6830091438360664e-05 77600123.60902186 8484.411141221048 81281 8146 96917 AST_20200316 1719423.7434176893 318.25961826337596 0.009914943362240405 1.8469731123414645e-06 3755516.049030265 699.584144064984 31791 3482 355183 REP_20210724 110424098.39421104 3303.4821898813852 16.956472037944497 0.0005070895638945559 44900787.288768895 1342.774640493207 151926 11245 153333 NXS_20200414 9006393.346323196 1315.0087205985146 0.15091674440110492 2.202406117484319e-05 11484.192443971328 1.6759476089509697 23695 3529 537983 LTC_20200305 3869179765.241715 441815.45414830826 60.24834798560568 0.006879662575016793 4202923459.5906315 479925.113258109 447911 212059 137206 RLC_20200109 30577715.200873915 3799.419353268699 0.43409112076525813 5.40971708631178e-05 1547257.586384295 192.82186162280388 27639 3524 255946 LUNA_20210825 12218269662.662598 254257.15428896196 29.876138489757867 0.0006227994922491577 2337161953.858376 48720.5961595756 111763 6011 18941 QKC_20190618 57421197.903622076 6160.015657202334 0.02199773285337419 2.3609462335089923e-06 15732403.690765789 1688.508515188151 50951 9196 162641 RSR_20211125 483586181.75757575 8453.207848457922 0.03677267967886774 6.428908519827182e-07 71221462.22176075 1245.1533836277817 86978 None 101795 DLT_20200417 2454584.3926274693 345.69098251881354 0.02987920065221294 4.215699279304195e-06 63481.2460244933 8.9566600602807 None 2581 None TRX_20190421 1735873596.129898 326859.03314383246 0.026106731008503487 4.915330322302375e-06 419615548.25168985 79004.49226520368 412980 70499 98802 HIVE_20210727 124168333.86462308 3316.6044087608934 0.3334884468024509 8.937428406670608e-06 22854714.612219285 612.5021048258315 22282 174 113471 BNT_20200511 13084398.295253754 1494.3078402619692 0.18841287496238127 2.1464358166656266e-05 5807688.154273323 661.6230376425118 None 5017 133106 POLY_20200927 26151974.052066952 2435.566141837076 0.037585935041679 3.501266875602816e-06 469459.51900847646 43.73186569705154 35302 4997 329775 APPC_20190807 4367903.74942187 382.08751380282416 0.04021836112792779 3.5121267086033273e-06 310419.46850358683 27.107830245346193 25350 3334 1400807 SNT_20210120 225225260.7741469 6219.401807019668 0.0582773926900379 1.6116859625020896e-06 33502196.36074082 926.5174211684429 None 5688 159141 XLM_20210304 9511801208.287199 187726.76787740187 0.4219139375611347 8.326975941399243e-06 1146364385.9593294 22624.871596182067 425445 157889 27460 LTC_20201124 5844961531.093229 318483.89418153797 88.64648495365853 0.004830224730027562 5326473375.035798 290232.18950397265 134933 216370 178888 TOMO_20200301 34713065.413767315 4047.435871003489 0.495722764270499 5.7959555881585125e-05 9742347.52831407 1139.068400088694 22019 1504 211808 AUDIO_20210408 382524107.9953883 6791.371101314382 2.4774501072721615 4.406398492418478e-05 72145422.20460829 1283.180148428141 41403 4408 43135 PPT_20190302 43106720.76812781 11274.887445585831 1.1894314193257058 0.00031134837257505715 1079311.2137621983 282.52304794283447 23384 None 563513 NMR_20201229 125260463.19280429 4619.341324749053 24.184328452718884 0.0008910048442134521 10422078.005628925 383.9727039740013 None 1976 2410731 TRX_20200626 1053493048.9567636 113852.36004295743 0.015928172767150774 1.7213782876952854e-06 448186721.8765642 48436.12027254829 508981 73156 60096 XRP_20200319 6436304690.825929 1196134.3127230764 0.14686144782598295 2.724434944102516e-05 1931411749.8110197 358297.27546131174 946380 210849 34201 STEEM_20210930 167979620.27534798 4044.4442211799164 0.4346083965828372 1.0455716591594659e-05 1787935.2639043196 43.01376722236988 14396 3936 232571 XRP_20190421 13746239989.046755 2588574.393979452 0.32764739391135816 6.168888666264952e-05 1064420338.4787904 200407.22692151673 918116 200355 39208 DUSK_20210916 60618202.346162364 1257.6939941848925 0.16804451605727394 3.4871653848336e-06 3444629.642544472 71.48101904711261 28769 13664 360157 LOOM_20210519 91536895.85278964 2138.6509073665848 0.10946176635104252 2.5586611188057227e-06 6942894.358388633 162.28966916004282 32746 None 298596 NCASH_20190806 4127477.047955144 349.4139518940066 0.0014226054152686205 1.2052629573494522e-07 431817.7377614617 36.584559433302594 60018 59003 884408 OST_20200425 4555598.4093966065 607.5497588950383 0.006572769019371576 8.769229507306925e-07 338406.0217411958 45.14931321269787 17775 755 821883 BCH_20200129 6909735674.179765 739665.1780651421 377.84679698761016 0.04040970703488667 4863286788.946908 520115.54930403037 1006755 282465 124204 XVG_20190807 85665676.66844293 7493.705744045826 0.005413981552968175 4.7185948120668e-07 2218942.7826215816 193.39356442045883 303780 52895 396565 XZC_20200621 45603834.869583994 4874.665126726967 4.393925505601013 0.00046962034342904125 20444956.220998403 2185.1456857104095 63575 4117 444213 SYS_20190225 25490831.75883742 6767.513303828167 0.0461596917719689 1.2322020699286176e-05 689610.7749854958 184.08697973547177 62596 4629 882608 RVN_20210429 1417038638.1686916 25888.323657310233 0.16408383473549468 2.996593395204419e-06 169513920.98171392 3095.760754420768 59008 34192 40524 QKC_20190510 31549055.624595325 5109.877429709259 0.019979610169746483 3.2364464049601443e-06 8337876.827437483 1350.631531541185 50727 9178 157816 FET_20201101 30347446.826618627 2199.3591754276404 0.044089588911142334 3.19579415168082e-06 3913589.130925982 283.6729841573573 25740 689 257164 APPC_20190915 3977095.8791261557 384.29137247702715 0.03662201225059101 3.5391958536065624e-06 261171.9716777441 25.23997733699642 25142 3304 1154369 MTH_20191030 5128200.258193274 544.9812190238532 0.014671132075946003 1.5592938860232592e-06 224600.37426019993 23.87123151570996 None 1970 790483 CMT_20190616 49824950.34488869 5650.8592752896175 0.06279200285400463 7.121358053060471e-06 51898814.87247759 5885.941305228518 291478 1643 705322 ALGO_20200801 261329569.08150417 23057.86749869229 0.3258292642736655 2.8767836388894555e-05 110769173.17772149 9779.93630502565 21619 984 217668 DOGE_20190902 297741581.28762805 30601.999836997107 0.0024606062291818607 2.5265519909636735e-07 46215310.70842854 4745.390948726031 138222 139975 101956 AST_20201224 10632512.442630515 454.687327199015 0.06100312719768449 2.615989156995628e-06 1161740.1745597792 49.818752570605035 34320 3470 210501 ATOM_20200905 1311302091.0535069 125061.56909967438 5.497519278999506 0.0005243096856766429 316324473.52248025 30168.51362721998 41675 9343 98949 FET_20210310 295186991.29764694 5401.000112487096 0.42890760717046167 7.833445248429654e-06 63137321.27889004 1153.1218870970843 34880 1246 237569 OMG_20190410 314841453.2043459 60842.753132530124 2.2416759682049596 0.0004336495336567332 87862313.87284657 16996.85948253774 289815 37295 None CVC_20210401 370193089.7832142 6293.734289899856 0.5585913038379976 9.506055609460184e-06 78024639.28363612 1327.8161597614596 None 9377 118406 AMB_20200901 4837854.696535845 414.9706322192124 0.03345889808500043 2.8699621965977636e-06 6375795.1743643675 546.8886356385799 20195 5497 374093 WAVES_20200526 105586801.7953299 11880.71457244242 1.0567056032491167 0.00011891826421537224 32075545.41682985 3609.679150940882 128 56833 89919 XMR_20200113 1027995719.9442624 126023.5400236442 59.14583049179684 0.007242260819246094 84169292.38475369 10306.321905587489 319855 164483 86242 OAX_20211221 10635447.777723005 225.66372077362104 0.18446759544311775 3.914047139326866e-06 278346.1767583058 5.905969849427358 14821 None 1057415 WIN_20210301 153378278.51789263 3377.3375381479527 0.00019897625851480433 4.408342810447303e-09 8568172.2329935 189.82888081183225 None 2293 81084 CLV_20210823 194348818.939799 3939.496388624027 1.507964917614613 3.059922259155245e-05 19109385.71654468 387.76256681975565 65572 None 93229 APPC_20210218 9180931.601663878 175.50621827003764 0.08302131763663088 1.590747929307304e-06 707667.1035541813 13.559408735775332 24403 3114 1017685 ICX_20190421 178245418.56427446 33562.99980835512 0.3766909611149353 7.092272497473452e-05 12234783.423414284 2303.543937704132 113465 23917 296108 NEO_20190621 959521559.6094853 100309.97798256097 13.588288791221663 0.0014217521595702761 457522612.1433931 47870.91088962799 322290 97735 201306 ENJ_20190520 131944122.4768334 16122.162504789083 0.152011069871266 1.8581065166014942e-05 18680035.4794987 2283.3531587007556 45979 12466 19374 DUSK_20200301 8953749.385507077 1044.078011173946 0.034372065737396124 4.018757677597912e-06 363188.1467923585 42.4637019050726 17682 13340 936304 RVN_20210511 1318073990.499478 23607.236351811178 0.15056078172069404 2.694580726914271e-06 174078861.58631033 3115.482930102088 60853 36696 40253 ANKR_20210723 431076707.89492154 13317.421243949415 0.061604360457600135 1.902858426398795e-06 16535126.538073469 510.7431459530998 116310 None 5363 DGD_20190615 63998430.91435728 7355.650192370873 31.940244701487106 0.003678673279544938 3608458.569370103 415.59919917797976 17053 3366 471901 FTM_20190915 32889324.341665965 3176.576865073914 0.015821451324409066 1.5284149612484314e-06 3578082.129459077 345.6569278700581 None 2146 342679 HBAR_20191012 22788598.94091064 2756.7105001114082 0.035809490885628195 4.330938305625918e-06 2989456.064439865 361.55637687841386 34842 6168 87146 RVN_20191012 165959073.90152457 20015.629321594814 0.0356788560940231 4.3154666139932905e-06 37162388.1960579 4494.904352699015 28159 7072 266417 WRX_20210106 16698793.218714427 490.73094945250693 0.07041123087895639 2.0656444339488526e-06 1299727.1455331515 38.129913513913245 47211 None 5719 POWR_20200314 20663520.33937475 3758.846376968766 0.049005240575437536 8.809045293411857e-06 3018193.7842013757 542.542092174734 82664 12834 280064 MTH_20190305 5302753.745735218 1428.0566293274103 0.01763012369002884 4.7478755791095454e-06 1323379.8718810903 356.39244999415365 18660 2017 959226 SNGLS_20190123 7001296.644701522 1960.2094351297528 0.011858258158083466 3.3200520853906117e-06 399246.4477059551 111.78024492470492 35493 2190 957120 DLT_20190515 8994308.090897685 1124.9680376316367 0.11284732366622856 1.4114441152538837e-05 1556856.6064023774 194.724697406216 15133 2677 2743184 KNC_20210725 125027359.456121 3659.635420313299 1.3608907164479787 3.9768517357613255e-05 42953086.15034256 1255.1930375360546 176538 11244 107693 LSK_20200421 139003660.12461036 20299.169224719517 0.9973167908262671 0.0001456643808709839 4214611.2712613875 615.5704457071606 176687 31325 162071 ICX_20210725 515919643.7243156 15100.34836474657 0.8059105527602997 2.3584629041732443e-05 29127840.472884227 852.41384417516 142197 32605 243184 ADX_20210408 136668770.23352918 2426.351711240603 1.1872380133019418 2.109615352326395e-05 10743715.329780336 190.90617506167047 57284 3821 10649 MTL_20190622 27575598.557258762 2716.4733988169664 0.5925665948772644 5.837376072433132e-05 2537872.243534459 250.00590376460053 33140 None 940825 BAND_20210128 185543627.69295287 6133.426147133599 8.272474269752877 0.0002720571555326095 169677098.04822177 5580.176758338336 50882 3279 319982 DOGE_20200626 301536937.7869516 32587.48792046356 0.002409626744337685 2.6041148723016647e-07 109759531.73824641 11861.854938657601 140572 158383 114634 NAS_20201129 14247837.27636406 804.8837104164184 0.31279370096415515 1.7657692268487872e-05 2087017.823024881 117.81541112954159 23323 4864 1414953 ADA_20190130 1181459627.4495773 346137.8248595533 0.037970569740954696 1.1123024070648639e-05 32538836.95817334 9531.862945061344 147961 70994 103505 DOT_20210314 36630956614.64997 597095.5568125283 37.31727832816065 0.0006083113529331224 1507640392.6381807 24576.142957624957 225291 18717 17587 BNB_20200407 2289489107.291751 314203.04541515897 15.136323870581913 0.002077266513904824 444447157.62263274 60994.67781103844 None 61274 1688 RCN_20190507 12784566.514786039 2233.03420679829 0.025610648829674103 4.47704532742309e-06 765904.7586359816 133.8892405150348 19022 1120 1766498 NAV_20200806 9708922.496715853 828.7197084562864 0.14044069218114894 1.1963413145995471e-05 513978.19772744767 43.78313316425655 48524 13805 799052 NANO_20210902 892643236.4371616 18350.460215129722 6.704675639826935 0.00013779967081235553 52119835.144235075 1071.2070965830078 None 109063 97814 VIA_20200109 4045604.848327208 502.6846922811539 0.17550141040422215 2.1871283081345197e-05 183327.78612401307 22.84661928220114 39984 2185 2950394 BEL_20210707 60703597.65650097 1777.522759191347 1.2653198361561462 3.704813501146468e-05 9078673.974378306 265.82049021661845 32363 None 582298 USDC_20211104 33740471390.199013 535358.3943071968 1.0008430284983136 1.5881716526693704e-05 3403760701.5529337 54012.02890714333 None None 31640 ZRX_20211221 645964467.6915729 13691.872843781408 0.7588658791938455 1.6101672580793936e-05 80312476.79240534 1704.0760968692798 248511 20864 59550 ARK_20191118 29780426.862999417 3503.824589956002 0.20996972895242458 2.4674476602194465e-05 786383.2142521213 92.41138861887542 63022 21711 94634 GAS_20200306 24489327.60555718 2704.1692028706043 1.7578637125329473 0.00019405062958418256 5219574.893109859 576.1890338530876 322786 98967 240012 STEEM_20200414 52928646.88548844 7729.724718338024 0.15167650648642947 2.215090901371136e-05 1653824.8075109257 241.52536002054376 11221 3846 214846 SYS_20200329 10233618.009940008 1636.9476172600473 0.017592716836769565 2.8140933029851746e-06 1007777.6611119189 161.20195609047647 58546 4509 831215 SYS_20210108 47464238.531567425 1214.1354321360411 0.07879428212832353 1.9983485348895753e-06 4414518.225963787 111.95921570465048 61085 4492 315243 VIA_20190507 14126049.597207582 2469.6690503463783 0.6104789444659888 0.00010673054378442885 2775398.603122906 485.22525603068533 41322 2233 2027413 SNM_20190511 9609990.483177816 1508.2237063738023 0.023869822362587716 3.7462089080322956e-06 206017.861561826 32.33312491702212 31550 10029 15333127 ZEC_20200330 273607791.4695669 46270.53622225135 28.40458304292216 0.004812146048499531 233363423.43208262 39535.12974424184 72761 15668 148838 ICP_20210821 10456778887.771381 212829.96665530818 67.5458710957735 0.001374329482089149 586090675.8649294 11924.95828318851 251213 22427 30297 PERL_20200502 5175053.027886801 585.0688856101084 0.014652836966846867 1.6591491248499804e-06 2196354.263091359 248.6944515736817 11655 476 557708 ICP_20211028 7126915252.171073 121761.01187619222 40.870048285871775 0.0006982513834720607 714241897.6397766 12202.58879246504 None 24193 22760 CHR_20200626 9712799.106182823 1048.7949754342565 0.028607849536430627 3.0916874000277577e-06 2932300.5109497346 316.89751902719826 14732 None 439287 IOTX_20210523 299340569.46183765 7964.56162597513 0.031263550590010784 8.324776165342626e-07 23960788.882596474 638.0215952067167 None 3016 196383 CHR_20201229 10132646.624513814 373.6706067392579 0.02244578615139521 8.269530506985799e-07 2206072.365772474 81.27664857147286 36233 None 874188 HOT_20201228 103992853.64970998 3923.313832230014 0.0005824076685017383 2.21462015613445e-08 8753326.18052134 332.8474819445836 26666 7362 472191 IOST_20190629 155335538.6981229 12550.710074044558 0.012951177981328783 1.046110495275287e-06 53079804.01779831 4287.435486580897 198015 50254 103864 ATM_20210624 16341186.5057857 484.72874246818935 8.686408986303585 0.0002576715300089355 6166405.614987748 182.91876101792064 4998412 None 100469 RCN_20190520 14969632.718454856 1829.271587625075 0.02987207310944759 3.6514112923530435e-06 932235.3371067274 113.9517376169477 19025 1126 1774527 BRD_20190813 17008280.427411105 1494.4517275210019 0.2833363423026979 2.4895842616156494e-05 522353.55929556297 45.897507875352 169 None None RENBTC_20211230 796261162.0556532 17135.51736629594 46538.80898410895 1.000142009840051 3446075.9572986998 74.05787576495686 None 6470 77574 ZEC_20211204 2454463481.8168097 45713.57741143802 207.02232350344676 0.0038539846960847766 544186563.7202872 10130.727222554971 83039 21614 109049 IOST_20200905 83552005.77524059 7965.216632418131 0.00550879677478758 5.252965483099003e-07 87143677.99878755 8309.668178230742 494 52176 275570 SNX_20210125 2467391902.3444095 76597.39282060995 17.438946052813726 0.0005405430461991655 386093462.08028746 11967.474151156479 64045 3367 36126 CVC_20190621 27889958.99227316 2915.662649193686 0.08125420487803796 8.501684283759615e-06 4071450.6644924944 425.9987305072292 88712 8168 458176 TRX_20190512 1714553939.4382765 234820.2802922295 0.02561292869975983 3.5164676964024853e-06 785117450.9788992 107790.88118396429 418427 70564 110041 XZC_20190627 91609533.91318248 7045.899574695352 11.744570192903106 0.0009048451375395885 17588911.347892243 1355.114801678506 60591 4017 343816 ATOM_20210210 3600483068.2441072 77296.8588479073 15.076049250657647 0.0003236972933098578 1095021606.387637 23511.168225191923 56216 13051 88305 ELF_20210318 147110821.91999894 2499.416454313393 0.319897310510784 5.427298046739008e-06 37715956.59382579 639.8795201676553 None 33329 211873 VIB_20200730 3330518.096888236 299.9304060903755 0.018260396866222325 1.646382643938676e-06 1008942.3789183829 90.96764071202091 30731 1099 None ACM_20210519 31947719.81767095 746.420548127787 15.92976102479189 0.0003720014221596412 57542243.64578087 1343.7613054692206 None None 36746 QLC_20210217 13519386.996002259 274.9366855801464 0.056611402762758674 1.1504141879829376e-06 1470406.9372735985 29.88049969079506 30228 5608 940522 NKN_20200730 15039036.036620134 1354.3898557303569 0.02312823196174354 2.0838858250465654e-06 1835195.2106742796 165.35363758212563 13162 1012 248862 BCD_20210127 122587213.80366994 3761.822554420858 0.6499957169865417 1.995036056386648e-05 1821960.7470407127 55.92155899917471 28077 None 1665696 ATOM_20190901 494046889.83540833 51467.178634734206 2.02930195974032 0.00021141176807606187 105200395.93031587 10959.730068351111 28219 6759 108058 NULS_20200506 20796770.81443884 2319.2462390765822 0.21855148496738525 2.4288494418521988e-05 8808082.99534267 978.8772412238916 23832 5190 573098 BNT_20200320 12381700.074564474 2002.0354930746605 0.17696429905159997 2.8667367617523843e-05 5732071.082906886 928.5680209179119 745 5025 126378 HARD_20210814 72124739.16353059 1512.0258446642185 0.9865886700136964 2.067785676286282e-05 15860800.515809806 332.42563104409345 35401 None None PERL_20210202 0.0 0.0 0.03742719961509563 1.1206263617824682e-06 2354347.0972421407 70.49267508893303 13879 513 461577 BNB_20210324 39376090108.768486 722598.475010781 255.27786787587382 0.004681210798969081 2813775574.1344523 51598.19264049287 None 207407 178 LEND_20190813 4145588.9258998563 364.25521451417364 0.003632782075107117 3.1923409597572643e-07 1518509.9803328302 133.44047365884876 41792 5838 699914 VIA_20190625 11057765.273261713 1001.7349175013823 0.47815088584373583 4.329202422382352e-05 415133.5859737282 37.58640586513684 41030 2236 1573301 TNB_20190719 11670635.048992906 1087.4214435331114 0.004202255907927478 3.9385352676112594e-07 626601.7515197251 58.72781551575166 15708 1486 578897 EVX_20200117 5689356.88997071 653.5690628232425 0.2609171712361278 2.9967521728675676e-05 1137630.2593849134 130.6620003421063 17919 2888 683099 INJ_20210725 170997747.30729827 5004.898699509261 5.898881700918332 0.00017265280442589867 13701335.595045526 401.02075864595304 77659 3783 133527 ONT_20210429 1390816593.3520474 25408.659260722907 1.6999852956881643 3.1046765138304813e-05 761496713.0733371 13907.18476468266 127586 18573 153956 XEM_20211230 1119806049.5250978 24089.100266706955 0.12450715369888854 2.675867110626017e-06 23434317.78652647 503.642709370556 377186 22508 308464 DUSK_20200907 18250565.936945464 1772.4958864147088 0.06354049650356178 6.187574693615046e-06 1424277.6947340465 138.69618755847708 18367 13346 627816 BCPT_20200229 2602167.9020354925 297.2960338874317 0.022300544547436116 2.559430270245223e-06 225225.8595428299 25.8491393037392 10718 3160 1896885 XVG_20211125 393214605.681121 6873.490013282142 0.02384003311034457 4.1679146941291247e-07 18198404.940674026 318.1597903445657 335229 55552 173959 ARPA_20200913 0.0 0.0 0.039291701342877315 3.762889223972027e-06 9971285.000513757 954.9304202982495 20974 None 330815 ADA_20200329 910287954.9100559 145961.72744064574 0.029258974440926674 4.680202881134148e-06 105439265.1832665 16865.83901605002 155296 77607 42201 ENG_20190623 49853336.050314896 4643.726623428804 0.6431383988466172 5.995783210326273e-05 2831429.672642881 263.96555582588655 61780 3463 334360 BTS_20210110 82587332.78864582 2040.9236269850553 0.03025982353417393 7.509147263018164e-07 62010961.36882807 1538.8372649099533 None 6874 130433 IRIS_20210125 59741683.74074107 1855.4664764774734 0.06344495020425131 1.965771086989624e-06 9099669.141535662 281.94310882135215 11670 None 857234 DUSK_20200117 9830889.015380783 1129.1222374705478 0.038008213168823926 4.3619733567077335e-06 701846.051770574 80.54663776840968 17884 13339 884255 MDA_20191012 18905684.350682486 2286.998805694709 0.9631561579383655 0.00011651188827888309 5810204.033543937 702.8536729524883 None 368 2423736 BNT_20210304 742363218.154496 14597.533047275134 6.576060647209477 0.00012979155476868512 564018956.1940881 11132.028910728763 99977 6107 42430 NXS_20191020 15949075.747046994 2007.0363341726677 0.2670858130189313 3.359920139961039e-05 1999281.7256329088 251.50818980167742 22129 3540 388787 BRD_20190225 12411170.914617391 3302.5488555835386 0.2066408169284673 5.507877164863774e-05 79817.06635653914 21.27472218152246 143 None None DGD_20191022 25055834.760387857 3050.8735967259267 12.53641195782037 0.0015254365900699031 708279.4714077599 86.18378410951769 17341 3353 576212 FET_20200607 9432654.171460433 974.5510510343513 0.027860892513080483 2.881311609387227e-06 2525875.828132558 261.22046679057485 17157 404 941705 OAX_20210310 15131570.993389508 276.35866307294117 0.2688858547934783 4.910853961060211e-06 520834.9905332292 9.512380553760922 13432 None 1088622 PNT_20200907 15648494.936096877 1520.97652990139 0.5836211984953135 5.683239922101002e-05 2817761.8443860244 274.3905918132307 None 88 271040 DASH_20190614 1361312317.5645099 165565.48732431332 153.62892947971363 0.01867352522345909 454496966.4380197 55243.89576565199 319834 27200 107403 TRX_20200223 1324837690.4265544 137246.16051124677 0.02003666857376416 2.0757043516786162e-06 1652340417.3096304 171174.67317670622 499429 72110 48265 YFII_20211104 163205423.9702035 2588.176012254506 4106.790772848735 0.06511953842423163 40500922.41169798 642.2049525001532 None None 542811 XLM_20210221 11070221769.962349 196918.0434021655 0.49282122255387173 8.76634568926993e-06 2082739775.7404797 37047.9517101919 403288 152497 26616 DASH_20200905 706908091.3511475 67380.54908020985 72.90630477933308 0.006952927211580154 463734986.60624874 44225.47017155022 319468 35324 76082 AUCTION_20210420 114105488.4321039 2039.2392655520057 39.016429272162334 0.0006976684251354558 8343940.192779337 149.20134216060129 None None 33253 GTO_20210318 26173617.5563682 444.42123906952247 0.039449001359163335 6.692819257546527e-07 15143120.78444602 256.91441332760496 None None 477560 BRD_20200322 6996537.097499142 1135.4988786595952 0.11313099164929281 1.837019715153323e-05 375361.68751655467 60.95118678166756 178 None None KEY_20200316 2341855.940615355 433.60475109338444 0.0008490244689482664 1.572089199469877e-07 897919.9000225925 166.2626023680129 23498 2757 250395 NAS_20190816 30446777.41840398 2958.6129914490366 0.6697214023126955 6.502446507582634e-05 9037176.653707488 877.4358646354045 24262 5104 694216 ONT_20190818 494435686.4069976 48375.20820183538 0.7599162064547307 7.434885679067783e-05 51133847.05169645 5002.845102277048 81492 16279 248344 ZRX_20210107 350079056.7542744 9551.131842426894 0.46128664773404715 1.2492728149854158e-05 158638744.51104194 4296.310588970769 163711 16315 98378 MANA_20190528 82751502.59295107 9395.349931100058 0.06225834753943862 7.074445375417927e-06 20502813.15952069 2329.7443230009767 44747 6241 119390 AMB_20200907 2770546.159737073 269.792779659764 0.01916126618370941 1.8659033156098714e-06 773459.1856003649 75.31861647679716 20204 5502 374093 ARPA_20200414 0.0 0.0 0.006981112369524783 1.019524964636985e-06 1347266.776831491 196.75547968571257 None None 1878146 ENG_20190807 34968545.445861705 3047.7088906205054 0.4459296252930061 3.8854902980623696e-05 420546.6713075244 36.64322616318979 61748 3476 330014 REP_20190509 219422281.3401937 36862.697075865275 19.846411425580463 0.0033317213034421353 60139971.38311776 10096.012802963116 125271 9941 267119 XEM_20210430 3062374138.248057 57139.94762559195 0.34026379317648014 6.348883070215648e-06 347509817.1920642 6484.084523092703 307112 21168 27283 STPT_20201231 15120338.165653685 523.6110831764719 0.016515274441689556 5.727756346732064e-07 1217203.3498962037 42.21452230325924 17761 None 1550892 AUDIO_20211011 813252491.4733299 14863.428516408714 1.9724242776431227 3.604979061701778e-05 16528955.454728337 302.09797659405115 None 7814 20921 NKN_20211225 245285729.22101262 4824.085305595868 0.3783143484719948 7.439700069470317e-06 10087421.09043221 198.37309287998187 37376 4597 115682 SC_20200801 134578350.89735097 11874.239084731495 0.003051182086569627 2.6917783545838555e-07 4052293.607664339 357.49673110439835 106754 30113 156023 SC_20190225 92810448.72343361 24640.07265091866 0.002329361683099949 6.218075072310515e-07 2944006.541351947 785.8828373590171 109061 31163 213763 HC_20190430 48655271.02067749 9348.365743334463 1.1054509031833184 0.0002123956227519935 11607723.062701164 2230.247911992746 12747 800 924680 RDN_20210120 14754314.685981676 407.43326747009576 0.2202221976169862 6.090338090765862e-06 748415.4941390875 20.69774727978222 26722 4383 1545077 ENJ_20210324 1896891923.2792623 34796.12885050236 2.0416830929351795 3.745386461352163e-05 462564880.22457457 8485.568822531803 119497 24456 32417 DLT_20210325 14833007.22491918 281.2441283128706 0.18007312092452407 3.4299911286884707e-06 1755193.7147236206 33.432523631081686 14808 2554 3522473 NANO_20210804 574818918.636188 14960.566451001538 4.313124379294299 0.00011227552093468355 41011839.588047765 1067.584713379199 134160 107837 67455 ZEN_20210902 1063123812.2741108 21855.10450822359 92.65270851370059 0.00190427000781661 53976679.89431598 1109.3704036624542 None 7545 1266292 SNGLS_20210212 11879014.294111444 249.08792704712462 0.013362921741168413 2.7987419492098024e-07 1784417.5999718416 37.37299737798808 9136 2115 2522161 GAS_20200610 24731542.152702197 2530.026283816367 1.7713672812465648 0.0001813118070243488 12764743.997352583 1306.560657897268 320121 99621 220108 ONE_20211007 1793305731.8288436 32303.56029852226 0.16833318875084916 3.0341564108984785e-06 128020225.04103464 2307.5270504608784 228600 33385 25924 REQ_20210725 37882795.804791845 1109.0323579336796 0.04920997840829022 1.4380345584293447e-06 827167.2212200691 24.171826287857918 43408 27792 339521 XRP_20200506 9557432319.43245 1062155.4073658143 0.21665867531586175 2.407813896537458e-05 2076215754.529813 230738.10170207833 952143 213043 35731 CHZ_20210620 1531706353.7230017 43052.29363726216 0.28703643341108265 8.062002507137776e-06 305555067.3432954 8582.13603658575 354581 None 30309 SYS_20211120 288453630.8848267 4945.587509625635 0.46323686278121595 7.94227632199119e-06 11063531.251121204 189.6861613426689 83379 6134 187489 VIDT_20210202 26090544.753461424 781.9223344168036 0.5620179456006719 1.682777999697071e-05 2901845.77272722 86.88623313692057 24638 1213 None DGB_20210711 592663104.3976979 17576.133577410048 0.04089893133838167 1.2132879477823566e-06 14188626.959549172 420.9129559687417 222392 40202 90181 YOYO_20190621 6726072.919856415 704.1765859874843 0.03845803778809505 4.026309270815421e-06 2534950.8038717783 265.3930494043416 7555 None 3542595 DASH_20210106 879299828.8459523 25876.828164597115 89.17139477632641 0.0026160087387738697 441035783.4970032 12938.605105753531 327859 35834 87017 ADA_20210703 44559309654.74349 1318328.1095019549 1.3950917178971345 4.118565459579666e-05 3183425155.5044465 93980.52271703312 521454 535234 6662 NEO_20190904 658752600.7224365 61986.59330283011 9.294227262463076 0.0008747250734768595 167164580.9772054 15732.674298655318 323965 98203 210014 HC_20190131 42221024.845502205 12208.339915070934 0.962923928488833 0.0002784324320493007 6242506.784468431 1805.0401435256908 12201 786 369913 DLT_20200308 3725524.0942090605 419.1452913781056 0.04540532859515556 5.101474768518919e-06 461343.3999072064 51.8338218677808 None 2587 None THETA_20210217 3397643916.355295 69086.41958955424 3.4084427263860464 6.926379987074317e-05 264250919.03017858 5369.907679444225 85800 3833 42831 NEBL_20200417 6562321.131445823 924.2653308151422 0.4027334896110147 5.681212435714981e-05 160538.004292574 22.64650271008632 39454 5991 1629881 PNT_20210725 20819234.127872854 609.4905041904956 0.6632239697079975 1.9411726516694957e-05 5673169.899574665 166.04650555946463 47512 318 305973 AST_20210519 54540694.25863724 1279.567256089682 0.3188583305713816 7.453291135681787e-06 3356270.975424576 78.45259888694672 43272 3668 181542 IOST_20190302 102223201.17693403 26722.789429226843 0.0076048690259828 1.989110764597416e-06 4710198.01822742 1231.9877632910025 195615 48296 87686 NEO_20200331 467038403.83995223 72691.3266890643 6.617609730134407 0.0010307173670735205 401269642.417721 62499.24159715082 321703 99278 234757 NANO_20210217 863038301.8949919 17539.0641677331 6.46701389427334 0.00013148974867474835 112571783.30368133 2288.8516611316954 107262 68506 127851 ASR_20210718 6618818.820516473 209.39182013307732 5.365716630899951 0.00016977084136676217 2213579.3184956796 70.03747107495784 1987888 None 109290 DASH_20200725 680488630.9623415 71339.4722354379 71.97637363867287 0.007545690368907525 275083925.149106 28838.60383212772 316957 35140 73738 POLY_20200117 10404060.559154151 1195.2388045920222 0.01821824172927702 2.09225786973248e-06 2571920.783497761 295.36996926295933 34895 5003 309062 GVT_20210128 9761081.540082958 322.67106803538746 2.2041779488151754 7.250365457873169e-05 536713.5577479884 17.6545157888 21292 5439 340322 SNM_20190904 4127269.670245669 389.3046744537692 0.009431571380410089 8.896328854662606e-07 105761.88693959118 9.975989032522582 30999 9905 18762051 KMD_20190830 78595403.33431296 8282.65901452263 0.6793769957882569 7.159512846431653e-05 2053052.760975395 216.35789418437332 98439 8434 208596 DGB_20201030 274596000.577458 20385.586943569175 0.020086554980041263 1.493783911396367e-06 11334239.527474307 842.8973843885648 177794 23253 172687 GRS_20191019 15329339.098506775 1926.1436951862643 0.2082330350368728 2.6164647085459982e-05 1107396.0502257366 139.1451977485611 38232 106956 None BNT_20200127 16162623.174503287 1883.3838759339346 0.23210138067110553 2.7008236073822203e-05 14378377.496337214 1673.1249622762464 754 5051 111697 OAX_20190807 5181170.128182097 453.4130506373062 0.09651739028192709 8.42852107214427e-06 552068.9754494679 48.21022387013542 12304 None None FET_20210513 321308213.7292091 6234.2414962042885 0.45537000709537934 9.03443936442554e-06 19814411.450816248 393.1135033157411 59889 2586 119551 KMD_20200329 41627246.89640431 6677.486082203698 0.35146383192594227 5.621940174681481e-05 1637764.9749703018 261.9733774316746 99706 8388 161250 SNGLS_20210610 9745781.548071666 259.6387865989204 0.010950316346147938 2.917289737066521e-07 663625.1344010006 17.679733924111368 9507 2138 1063291 DOT_20210616 24229295867.459297 599931.5340952206 24.11981873706437 0.0005976039257052691 1499821201.2995617 37160.27253452318 471230 26158 18773 BQX_20200422 3806749.1033892846 555.8703049641064 0.027000071469289857 3.94423115229529e-06 125817.02689751913 18.379634199961675 11011 16 397017 DREP_20210828 0.0 0.0 0.8252412473016123 1.6822930509649167e-05 22565524.082580857 460.0088092983168 4122 None 303395 NCASH_20190615 6425166.4576961165 738.8025291661933 0.0022085187871395784 2.5447876158505184e-07 1309478.9723582647 150.88600973098136 60310 59202 943621 ZRX_20190812 116383202.75282456 10084.745754224978 0.19390445067063455 1.6790736991158548e-05 41552891.26151579 3598.1828471768245 151378 15916 188207 PPT_20200625 13190012.659490256 1417.6966385226706 0.36397744449973535 3.915876606028029e-05 4076616.703819199 438.58563829881234 23698 None 1787425 WRX_20200502 27038013.37095669 3056.7996630783255 0.1444992391031413 1.6361731632031914e-05 10575179.607626196 1197.4336458409412 None None 31508 EGLD_20210112 555153398.6432542 15624.772773545887 32.67905550494272 0.0009192769904400569 138512134.9700769 3896.4106094027225 None 3262 49960 DUSK_20210909 56403844.22974225 1216.9878895141626 0.15595455196696517 3.370326440127171e-06 3282754.2563312617 70.94344683762013 None 13664 353421 WPR_20210201 7834526.842209742 237.06317992800277 0.012894558669121233 3.8999232843659915e-07 1129680.0592501024 34.16685812988491 32546 None 7510517 SNGLS_20190201 7232303.658737139 2107.7573191855454 0.012249520083949078 3.569957351315414e-06 435331.33837318444 126.87144484294787 None 2189 1020593 BNT_20200518 19472474.1866182 2006.8181391123471 0.2818369360809045 2.885790950934866e-05 19128424.687174965 1958.6018651594568 None 5018 143192 CTXC_20210427 2986675.7720952616 55.44338746792591 0.2994721160922055 5.555438834683695e-06 3174478.5375680933 58.88902638950798 19484 20502 377528 APPC_20190401 9356197.23037463 2280.086665264379 0.08959804546285417 2.1834865561659966e-05 562294.6123724128 137.03007921403187 25658 3406 1339078 NAS_20210930 13524712.011644721 325.5960530709524 0.2975434494309134 7.154995151149914e-06 1893092.8876192581 45.522999943365285 None 5042 494994 BAND_20201228 123207546.67945984 4655.74388638085 5.410829726492611 0.00020574819360686736 98801285.54357618 3756.9443235472436 None 2902 377723 VET_20201014 744392497.1235656 65158.32583829209 0.011481898660401207 1.0048771779003852e-06 91476774.87007995 8005.899206539661 136688 67768 73117 LTC_20200807 3855607230.7220745 327709.5620715366 59.1744019805959 0.005025877116871616 2086062050.8559995 177176.12979357838 134063 214591 128052 MDA_20200713 9025269.497541277 972.5695637722206 0.45981325663453293 4.953253626976129e-05 154601.35646382722 16.654146408147945 None 375 1869072 ARPA_20210408 110955574.16897227 1969.8519771309234 0.11270492732953274 2.0045724449313015e-06 52413735.362089194 932.2319097510652 35961 None 610578 XEM_20201124 1317128288.119915 71919.36600660709 0.14648659270471714 7.978911843726953e-06 59927728.79557801 3264.1763060087656 212377 17802 134230 SKL_20210108 63931812.61244927 1629.4243424450428 0.11310986321811034 2.866268121836834e-06 17396249.957953215 440.83084600532936 10524 90 244845 SNM_20190305 7994462.389449269 2152.9464803723017 0.02000616213575893 5.38775395488564e-06 116264.43923240551 31.31056261747083 31340 10087 18629318 REN_20200927 219063793.81993058 20401.685856216714 0.24905378937723455 2.318674298956971e-05 72437379.98893401 6743.872144411308 None 962 83733 AUDIO_20210624 162093655.1322218 4807.847948384912 0.7269926868400713 2.1571528233010807e-05 8078777.894200415 239.71573385483762 51623 5676 27098 SNM_20200316 2382729.384762703 441.03528715509344 0.005401323185455676 9.998025049349542e-07 47343.79602643597 8.763490766081034 30168 9695 None BCD_20210704 386462997.7897229 11153.889397345964 2.0583681693159743 5.936080291386842e-05 4388626.179897678 126.5625739899201 34296 None 1330822 REP_20191113 128584139.0677646 14620.594544455174 11.684976564824435 0.0013277666282938483 9118685.172371292 1036.1583353311973 126489 10060 254763 LTO_20201101 14742898.923143093 1068.736238871353 0.06046232332113416 4.3865129037232655e-06 3171809.1893407814 230.11325355947938 17880 562 2813904 ATM_20210418 0.0 0.0 11.004188017405152 0.0001830669539938841 5329846.201983195 88.6679424151656 4922689 None 149248 QTUM_20190902 200624522.79716477 20623.293074274174 2.090574933512284 0.00021488392029290492 160180819.20400962 16464.505449923574 178193 15347 240356 WNXM_20210124 81588943.41461429 2548.3455161965944 44.82614024928569 0.0013987488397991838 38599013.72381029 1204.4384228337117 19107 None 131837 VIA_20200324 2528930.2449139915 390.1235814699694 0.10916754258671585 1.684065140976374e-05 277009.9446844781 42.73273726724796 39419 2176 2066197 XRP_20201224 12163610689.503866 520163.0060008268 0.26050698013612983 1.1173128803979907e-05 14873825893.383224 637937.5033555721 1011884 225814 17736 HNT_20210805 1235216759.601949 31058.48921266134 13.252505975046247 0.0003332712959345685 8107799.73041737 203.89328089510352 67439 44477 2417 REP_20200308 138367180.0432492 15546.119797425326 12.57883454938629 0.0014132836179477572 31266660.233401664 3512.9374285283925 130366 10113 288679 AMB_20200903 4015233.584447374 351.88697428974734 0.027776621488789153 2.4336718117082424e-06 1567981.1933255033 137.3799773678406 20203 5501 374093 UNI_20201015 577560863.213238 50605.45412067899 3.122753139292542 0.00027325393499402756 260812435.53290272 22822.176818269898 107322 None 3603 HBAR_20210704 1739256805.6715431 50170.542602885274 0.19468201224934212 5.6143894626241245e-06 46577645.84078193 1343.241940952396 None 22808 40505 JASMY_20211202 794239611.9344666 13895.74266821599 0.16707366885168656 2.9230858904176142e-06 70230463.29898441 1228.7374650818958 41324 None 84310 CDT_20200701 3898426.2111981767 426.14103286328185 0.005706925215887116 6.239525212823947e-07 299067.9994491024 32.697858344397886 18949 290 305990 DREP_20220112 0.0 0.0 1.0191693873770389 2.382375721687605e-05 2614440.408306006 61.11427042149778 4262 None 476367 IRIS_20220105 114596168.75665404 2474.331469939283 0.09537260483625047 2.076593039495513e-06 5236649.971070303 114.02006791016878 33619 None 695613 ORN_20210617 258189429.04043606 6750.243621421434 8.908071441361702 0.00023287455344794873 23345916.248529468 610.3082869279787 71114 None 59739 BCH_20200421 4040931015.1278644 590110.6663519811 219.63623198900495 0.032079251090326236 3476384158.9238358 507747.73957209854 None 292626 142695 LINA_20210731 113039709.54325248 2708.186197672046 0.04070012727282453 9.743532053914797e-07 40661274.88021869 973.4230865980205 None None 101185 QKC_20210729 106513277.83568174 2663.8548330727153 0.016396727181603715 4.0979619475592316e-07 8101292.668348598 202.4720464836451 75183 9535 284050 WTC_20200323 5437171.149455129 932.8322970003977 0.1862836954818803 3.19366528852794e-05 7702029.819215338 1320.4432745015922 54810 19433 966319 QTUM_20191030 219935517.63418984 23372.83828652385 2.2941931357904455 0.00024383403485677522 326313381.76330787 34681.60865004623 177357 15282 181813 IOST_20211011 1248725358.139984 22821.149135494943 0.054723407446065485 1.0001739497131416e-06 213894972.3602374 3909.3358640024385 263725 53884 208271 TNB_20200530 6331099.464921255 671.7534642978146 0.0019214669862729007 2.0420186684460136e-07 970726.722630275 103.16295329202727 14847 1433 6344512 LINK_20200313 693758319.3547386 144157.29062231688 1.9744280382744082 0.00041336733603479053 621181721.2937518 130050.94556351559 46045 13617 95530 AERGO_20210212 20166308.859849293 422.92030408551744 0.07691760436425793 1.6109689941815739e-06 14945016.7949441 313.0097312984626 None None 586684 ZIL_20201226 733368369.1137741 29695.984550865196 0.06356381803894386 2.574397933191515e-06 328800830.4376763 13316.761082410148 109134 13235 50668 FET_20200523 6826273.261919521 745.1062256783576 0.020011836976870298 2.186134652816218e-06 2272672.9038206697 248.27151027170927 16846 388 951449 ETH_20190414 17327865226.321712 3414877.0957675185 163.97160033492332 0.032323493848964394 4895342267.034281 965012.0224103014 441170 435011 33191 XVG_20200718 93175815.74844512 10179.713420415672 0.005703279497993476 6.229944978542616e-07 6778876.42673992 740.4867176821217 290122 51644 240038 TFUEL_20200511 0.0 0.0 0.0018728690010960756 2.1336084939407817e-07 436104.0317353361 49.681812545767116 67473 4034 365481 IOTX_20201014 39792688.23617072 3483.130743737364 0.0068104009495591625 5.962527925916027e-07 2773589.1187709356 242.82861902218852 27369 1954 348688 HBAR_20201018 177802360.35730374 15652.572844523695 0.03144961803312646 2.7673116196872174e-06 1974249.6463993562 173.71797587142893 None 6718 185788 OAX_20210819 10981801.778023358 243.46497171026877 0.19092433301490475 4.238011074489671e-06 331257.2558053323 7.35302774894838 14274 None 1894568 WPR_20200502 3438510.9563204176 388.0267020088031 0.005627568582107623 6.372128147718226e-07 694896.1501258163 78.68348920768537 33221 None 1386470 BNT_20200229 19132411.675937448 2185.8659103082778 0.2740537609453454 3.1370742314572515e-05 11298474.956423625 1293.3285249688759 751 5031 112981 UNI_20210401 14611600101.943754 248413.1748423468 28.040616383225696 0.0004770474714238728 904458391.4378318 15387.307566520985 315162 32134 1940 LTC_20190902 4177834249.9796133 429462.4552960565 66.14788889990668 0.006799142885555866 2148678761.750623 220856.23833601057 452130 208046 124361 VIBE_20200607 2424694.2627651333 250.75649408 0.01295715320963415 1.34e-06 87303.17857492788 9.02870078 18968 None 1004646 CAKE_20210421 4162770750.7197356 73683.20000428286 27.02492690593882 0.0004793019425733983 1082094596.8197465 19191.542834105043 408413 None 2459 FUEL_20190513 4007714.409496141 576.3110567172606 0.007553997385365992 1.0862680747121956e-06 3274110.5092733945 470.81850017493224 1 1513 None AION_20211011 84065286.30660678 1536.3397751277917 0.1692292009781274 3.0918661874987087e-06 6168582.669192241 112.70178000858786 680 73716 599418 THETA_20210117 2070843522.577844 57070.54927114959 2.0598082057100395 5.691732294118516e-05 126255234.71165712 3488.7277112392044 79824 4936 50826 WRX_20211202 572878518.5406185 10022.885227797064 1.2611555451717729 2.2054269298558875e-05 17486886.460060153 305.79931607957326 None None 640 EOS_20211104 4574655507.474991 72665.93455419049 4.70606249653485 7.467739535440736e-05 1194381292.690283 18952.847324874005 None 95205 75988 GO_20210401 80398197.22493589 1366.8674664268528 0.07483114652263648 1.2733924759657108e-06 9531757.813408466 162.20075792437663 18470 890 147513 PIVX_20190916 17313040.240496866 1680.4816019187524 0.2835330995991532 2.7517010297151635e-05 257440.73927430535 24.984735410195288 62992 8595 243854 DLT_20190618 9524733.739285842 1022.686767777177 0.1181188543906051 1.2682621133231632e-05 468246.0791336707 50.2763733140802 15064 2674 2617266 WAN_20200801 27872306.918316845 2459.2546571145745 0.26279372822324654 2.3202357205104487e-05 1975593.0803821073 174.42736039734578 103866 16079 598620 QTUM_20191118 205487609.91722715 24175.506705146112 2.134399036335463 0.0002508227226113093 307157374.0338447 36095.42897732106 181017 15279 173908 MTH_20191118 4824882.855955917 567.6729642636425 0.013900289610444922 1.6334848478771135e-06 126733.33061124757 14.892997273878201 19375 1965 821892 ADA_20200330 878075726.9380016 148493.70520825833 0.02813464997437409 4.766415493426426e-06 87505944.23006178 14824.769056127352 155271 77629 42201 BTG_20210804 948844283.1938155 24696.212039313083 54.231665508010686 0.0014118025793651513 103509792.54986979 2694.6506389310857 101168 None 198666 BLZ_20210105 17986600.86361286 574.9035231592485 0.07028978071140876 2.2466636625505804e-06 7633107.6167425085 243.97608501985255 43235 None 444357 CELO_20210420 433491563.7352924 7743.468489988869 4.123837805821257 7.373175722524514e-05 25442128.754850265 454.89006817824327 None None 83997 CVC_20200801 19895376.741683092 1755.4269207217744 0.029655966868640596 2.6162741991911304e-06 5920804.757747704 522.3383474481699 85309 7979 102776 SYS_20210722 71778537.03138706 2230.52604646903 0.11632335834446174 3.606307667727817e-06 780420.08121132 24.19492493147355 74468 5462 381052 UTK_20201224 52106603.18911708 2228.2797467968717 0.11572351975859897 4.962556622988256e-06 4168854.661015246 178.77245136902616 54368 3096 117682 RDN_20210125 13946815.652911317 433.1623629807531 0.20932825627629512 6.487943025448455e-06 623744.4703884731 19.332404799557903 26802 4387 1545077 GRT_20210207 1057428970.2051176 26957.806321243344 0.8655992344270244 2.2003850627831714e-05 385012352.30711347 9787.155479225494 51937 5352 34817 SUN_20201106 0.0 0.0 6.8512369389989e-05 5e-09 0.0 0.0 36 None 8079244 FET_20200330 4284172.11092159 724.5076603120252 0.0125840295841503 2.1319161117789908e-06 2390145.221724466 404.92507377000277 16584 363 584622 BNB_20200105 2116144291.915908 287961.41102881957 13.794575234456074 0.0018760270447988393 169907478.42152599 23106.98366675199 1082037 58206 1604 WRX_20200501 26467840.174419735 3066.180293094852 0.14124405542562146 1.6386183770335946e-05 13835069.956457624 1605.0516115444573 24925 None 31508 BNT_20190314 38214363.43265001 9883.713185380737 0.5873948296271395 0.00015194596850646595 2216588.3979877396 573.3820829274824 846 5123 160054 ZEC_20200410 400262249.3999117 54894.7506771114 40.98535919264761 0.005621017414620922 491815446.9842263 67450.99339702346 72645 15664 146498 MANA_20200625 54824295.66517573 5892.6569428248295 0.04137722246853369 4.451597205690756e-06 11613646.439983217 1249.4622150973437 49054 7005 63956 REN_20200109 33898418.323944084 4212.512198475742 0.04002173248846504 4.987576103491135e-06 3793395.6034200275 472.73938648605713 10434 869 419374 XZC_20201130 50277985.28060404 2771.703161596578 4.453575912060917 0.0002452353439982478 10180885.235764168 560.6085856172012 66882 17 286121 KAVA_20211002 533772139.45718 11083.318089101918 5.849968146102071 0.00012146510090299956 91556276.00531553 1901.0175825826607 208 None 50736 NXS_20190719 13668640.418458518 1277.3717849017703 0.23012496964780702 2.1428256025888833e-05 201894.27699042397 18.799534288406797 21443 3532 1023997 WAVES_20210506 3571733082.535545 62371.1126940732 35.73727915300202 0.0006235621242335879 846888288.3294417 14776.935250116634 183759 58536 111881 QTUM_20190806 297738920.365942 25207.425686920516 3.103357900987378 0.0002627469694924014 304479133.7827906 25778.840928932572 None 15354 320250 STPT_20210930 56599349.507057704 1362.480699950967 0.046406537845384725 1.1163740875640828e-06 7065452.137973484 169.96932005653383 None None 952678 DLT_20210916 8665461.040378446 179.80592873717836 0.10566373326848617 2.1924933486687183e-06 1071600.6237088994 22.235417652158 15335 2597 None MTL_20200217 25154603.276195284 2523.3108341519523 0.3898049188156753 3.9182531583439504e-05 11034355.624795532 1109.1547769203469 None None 562991 ETC_20210325 1329152066.6819563 25145.05534718202 11.315370168335736 0.00021477205042713727 1138444391.7668834 21608.310879767767 310727 32055 133346 POE_20190207 10074774.70905525 2958.1795844770245 0.004429212786179814 1.3005161125444553e-06 483280.7931651911 141.9020689987413 None 10986 524889 BCPT_20200520 2130797.7413799115 218.36573998690685 0.01833630924794192 1.88e-06 94057.76035671114 9.64363041 10537 3172 4184037 WBTC_20210107 4013408022.775032 109249.42372099099 36880.69654146443 1.0002991908461305 287098615.5079328 7786.851651859453 None None 159793 VITE_20210819 58120615.04486452 1289.4146879620814 0.08724818220095852 1.939184990392795e-06 7050161.164611078 156.69743902256096 None 2445 442806 ALPACA_20220105 95189641.83686866 2055.063391147045 0.6187963825889052 1.3451359247005378e-05 13446921.987341309 292.30839660281254 None None 29947 MKR_20210703 2333736422.015864 69044.98710999064 2586.804143020241 0.07639403073799664 108556427.8542499 3205.9107020843326 164299 28607 29892 MDA_20210617 16602223.982844617 434.1118057648352 0.84601147583781 2.211640824216988e-05 2864618.5294807786 74.88677714843095 None 389 1492828 BAR_20211230 26895443.44129187 578.198981701617 9.212895410248786 0.0001980005412503634 3605671.1274547805 77.49190705157213 None None 37465 WTC_20201129 10738021.258678881 606.6084434831104 0.3657684127693865 2.0648197371964363e-05 1689653.6660590156 95.38358471934663 54837 19255 748902 YOYO_20190305 4899995.454206728 1319.5919191385917 0.0167808063500265 4.519150408009807e-06 1041012.8937176437 280.3496891184928 6888 None 1397331 MANA_20200523 50105583.80557407 5469.160258064996 0.037700592442898515 4.1184910543885175e-06 23455768.571528215 2562.356896167101 48656 6926 48961 CHESS_20211221 93587905.50327381 1984.2329270488422 1.815946172153807 3.852831201559965e-05 13907872.306317024 295.0785942379324 None None 49485 BCD_20190603 257635629.06709895 29458.163666575558 1.3694371514851231 0.00015659619526914084 8258400.050690991 944.3544200230048 21260 None 3286107 XRP_20190228 12872053115.844961 3368079.3742344663 0.3104579357086018 8.138324504886983e-05 827703872.0783693 216973.76456331942 912659 197664 30397 AXS_20210707 606739273.1140251 17766.53952140007 11.012521694372195 0.00032245810081098583 806742907.8977921 23622.27227723834 147167 None 5695 REN_20210805 378237589.7608291 9501.042178007376 0.4270933449004491 1.074045563971199e-05 27357065.706868134 687.9698645873102 88494 1184 110606 REN_20210105 287743580.2558769 9197.112856949885 0.3289120563578296 1.0512975822586174e-05 89129533.0979888 2848.8363634750817 31703 984 104896 CTSI_20210616 217864280.82381946 5394.446992358746 0.5921114760115991 1.4670352717919608e-05 26438357.382515576 655.0456185995615 43786 3705 123787 TCT_20210117 5662747.682641625 156.13174020672344 0.009819347132557693 2.706295765497762e-07 781889.3966716956 21.549538220154957 None None 2451414 VIB_20210527 9528313.937884036 243.55588580655797 0.052260350754827385 1.3330540025162177e-06 1365543.0975900923 34.832194303302074 32284 1269 3689033 CTSI_20210221 55573828.206179865 990.7707160679151 0.20096325542088042 3.5736133011590845e-06 14876303.869866576 264.53670483243934 None 537 258951 CELR_20210828 257178034.2335293 5243.405873226941 0.04546905059776925 9.270870233992234e-07 54408785.137167476 1109.3629182145098 60075 None 206136 CRV_20210909 804549182.7462057 17366.174223460683 1.9860351013082655 4.2897774727075386e-05 230672971.4901171 4982.46841664064 None None 12438 MDA_20190706 16091020.176496273 1464.0444694708287 0.8197621880819878 7.458621545300115e-05 418231.35205717635 38.052857508251726 None 363 2408870 ARPA_20200511 0.0 0.0 0.01206495191656683 1.3756577475096658e-06 4339516.701614943 494.79598528917353 16649 None 1333028 LUN_20200506 2003196.6791906753 223.37564592111335 0.7435033888823905 8.26284841474174e-05 482396.88084479474 53.6106810240146 29023 2135 3953623 STEEM_20190507 102442425.45791517 17906.034704436603 0.33170461479222213 5.7986149780399804e-05 1006915.6406536832 176.0215521624415 5459 3728 297313 COTI_20210508 239188728.8543083 4174.298174445238 0.35636996339632576 6.2187862319243774e-06 45056771.94067947 786.2571534628471 95961 4290 74171 COTI_20200229 5943239.746455285 679.0113749697621 0.019397531009957277 2.2262518266897166e-06 3587271.1903088624 411.71059534107627 21807 846 383574 VIA_20190523 14876352.076559737 1941.152315796783 0.6428419990342401 8.388173583784417e-05 3316198.041544757 432.7166683644408 41252 2239 1806760 XLM_20210428 11645272588.0674 211386.6064977158 0.5079676149074985 9.218079958123475e-06 1449720276.5777736 26308.05002960735 512716 175613 26729 BZRX_20201201 34431441.1387247 1749.07988149679 0.2433638470361702 1.2396726300716592e-05 14108971.817855544 718.6978022437472 15635 None 100494 STEEM_20210519 307847519.5039421 7214.852180299104 0.8052256298000074 1.882120936426961e-05 9253572.916271392 216.29146760757655 13847 3944 198346 XLM_20181229 2281656883.567354 593270.0219303467 0.11916572685403276 3.097426042529339e-05 108418773.72711018 28180.848815095535 259755 98547 58177 KMD_20210725 84050613.02549231 2460.0605004946083 0.6623195223360672 1.9385296988984944e-05 4073116.605827114 119.21523133763314 114204 9435 217175 ENJ_20190325 159014530.468197 39818.09971188522 0.18342319237286 4.5933529682492206e-05 19946255.0674362 4995.0166461621675 42944 12071 17926 POA_20190712 5433735.589012296 479.24779911755337 0.02459904894519422 2.161744559606987e-06 192119.66015668496 16.88332061384001 17760 None 637225 QTUM_20200331 115808700.67085296 18024.83055929993 1.2020531343116412 0.00018749683221677785 367856258.85362977 57378.398073615564 179203 15144 110433 ORN_20210304 351829101.29020274 6918.226560098789 17.152144132739476 0.00033809677323518885 58831291.8783004 1159.6608444622527 40738 None 89793 CTXC_20210727 23974764.52725475 640.3791309367972 0.1315748783755256 3.526182291688944e-06 4727987.9664785685 126.70919896374595 20175 20593 753985 BAT_20200410 249264034.21964473 34201.39315802874 0.17134456759128103 2.3499386544453147e-05 116082241.46526818 15920.32651800099 114920 36633 18490 HIVE_20210722 107815465.05980366 3350.287971779586 0.2910762571904259 9.01294075162813e-06 4432869.304896964 137.26021074473766 None 172 113471 OMG_20210916 1254550477.5817091 26032.096388552738 8.970335415587806 0.00018611391845088814 478514550.765049 9928.081164489424 1157 5192 313993 AION_20190819 27861843.04361174 2703.7097507954945 0.08237349726061302 7.989184875145572e-06 2111869.8433630257 204.82459980413327 67466 72583 170946 BCD_20210813 478991378.4001323 10774.062666426878 2.5468608488426727 5.728697243189932e-05 11264249.393192546 253.36866941399273 34485 None 1282493 OM_20211002 87656142.10479163 1820.016007417215 0.23930208509558937 4.968719689833126e-06 18933920.96173895 393.1321611792778 51757 None 105890 MDT_20200903 9407055.488728255 824.4153729252944 0.015585395778377616 1.365834410847387e-06 2417362.2032382376 211.84681657204194 14134 63 538522 HIVE_20210523 156904401.91748998 4174.174035609428 0.4244646792337275 1.1302158133648465e-05 10176208.152722243 270.96038697641234 19930 166 111095 LSK_20210429 794769930.4399892 14519.555238083476 5.576402787325884 0.00010184162656807645 120987658.38470589 2209.5928853213145 194388 32099 143089 ALICE_20211104 246728281.91705176 3912.969127552632 14.181721997836096 0.00022487320188441305 128866258.69936316 2043.3744373929032 130582 None 32176 LTC_20190329 3696440370.195734 918121.2693009382 60.5086026344057 0.015028740292787696 1854899666.6726115 460708.1331564275 440600 200883 251595 UTK_20210318 273182470.1052088 4641.894199774525 0.6089427096198596 1.0331170253412967e-05 24610267.190042894 417.53165988478116 None 3577 72941 STRAX_20210212 105885870.4798197 2220.5989629983146 1.0601989029418488 2.2237789372715912e-05 7398257.508678995 155.17927036766736 147930 10404 249759 ELF_20190920 38514902.81213114 3758.392419320702 0.08349933225080262 8.146868382436108e-06 14230020.124939272 1388.3955465546005 85274 33573 944758 PNT_20200629 0.0 0.0 0.6632088069266979 7.266613101831413e-05 625723.836742521 68.5589965439644 None 37 None NAV_20200229 6452772.007017764 740.5837093628754 0.0948870905305677 1.0890177647583722e-05 63834.665433568465 7.3262953132880035 49812 14009 1012653 DGB_20210617 794013014.4986246 20746.217545654163 0.05511335979225279 1.4400189052870574e-06 22942883.77226504 599.4587609683239 220513 39478 87100 WTC_20190930 20063226.292420883 2488.785052346027 0.6874237719230586 8.53143829088427e-05 4107299.2013648865 509.7462600197194 55663 19832 452938 BNT_20191203 19110915.532677487 2613.9454593297182 0.27399653881354097 3.7502725605687576e-05 6620098.920104271 906.1127354317861 None 5069 141630 KSM_20210804 1819277106.286722 47357.64969919826 202.51714176017435 0.005271750960506039 110832239.06592351 2885.0889246834004 96695 None 59674 RLC_20190723 19244754.84314405 1861.417592317578 0.2750637992715581 2.6605098331828967e-05 138071.1461613747 13.354706908505703 24941 3316 855809 NANO_20190812 150414786.2798095 13033.6237655322 1.1294081889078966 9.779866212470133e-05 2284907.778185748 197.85665269610794 None 47257 262200 FORTH_20210620 128853924.997365 3622.9650608291345 15.139462861657238 0.00042565330112109145 16914809.203148674 475.5680198792418 None None 66617 FUN_20210131 167828234.42151493 4905.975273115401 0.027709704993147993 8.110679950745907e-07 54361258.68131718 1591.1637131932578 34502 16530 258794 XMR_20190603 1615303246.4112444 184803.22036116634 94.68783786340379 0.010828305794615493 201800547.19511706 23077.49425751765 317954 158074 113684 NAV_20210826 35929629.49688908 732.8951091645424 0.5025523420672627 1.025283480709666e-05 667866.0272651539 13.625486297912921 52996 14171 1077021 NAS_20210108 13298783.668426957 339.7522976255499 0.2919043229523966 7.397021194265364e-06 7460945.385821888 189.06459003411538 23339 4854 1361296 SNM_20190730 5510337.325131069 579.3070412472885 0.01304247785672172 1.3708266284339808e-06 43187.63648473644 4.539226576634916 31151 9956 14424702 STORM_20190613 20095932.861468405 2473.501652371156 0.0034057853399326087 4.1882052410412474e-07 655110.772879127 80.56110701589998 26866 2576 4240387 IRIS_20210610 85860767.90242328 2287.4481220008147 0.08321909757907582 2.2219220828958535e-06 17552673.772094894 468.65052136651184 24878 None 569511 FLOW_20211202 3862752324.377287 67578.58930836206 12.293802235640843 0.00021499012031364533 55310101.63808358 967.2455419250272 121433 None 221603 VIBE_20210104 3380284.6749156658 101.04448634228538 0.0174455063328935 5.299733762786141e-07 100536.95761454252 3.0541911396 18514 None 1637707 ALPHA_20210207 421265597.67145956 10739.630473361383 2.4343163691448524 6.190489138368196e-05 251964792.6631737 6407.488081676526 33104 None 61683 RVN_20190528 193873832.90971395 22011.835985991453 0.05309346375062082 6.033035310767994e-06 29803547.528908577 3386.5911531521647 24472 6490 170444 GAS_20190719 32379446.10348137 3021.5264667793454 2.315895148889975 0.0002170556700934361 781579.4340025481 73.25299155274118 324254 98141 191074 VITE_20200403 4502505.262536481 663.9199357925901 0.009510599621556513 1.3951080724979722e-06 2779076.029069905 407.6621408237247 None None 524494 DOGE_20191022 328307185.6572894 39979.47172635756 0.0026990178962066455 3.284177857252657e-07 74780009.93505754 9099.267297894436 138322 142702 101092 WAVES_20210108 589627326.7803184 15052.41537774586 5.951824516409725 0.00015082261080323433 164624908.0254324 4171.688591150794 151085 57237 144968 WABI_20191020 7042434.875864511 886.2220545614922 0.11916801122971184 1.4996137218384694e-05 197237.82341246214 24.8204651065902 36184 7916 1653961 SKY_20210325 48623157.6271126 919.6742698689708 2.4353157576189846 4.618927188691928e-05 4608974.891887719 87.4158489449946 18636 4214 346885 MFT_20190905 9442612.247702284 894.0239868483969 0.0010434228713724187 9.877974498498118e-08 250404.8316960228 23.70556185471218 18785 2215 866690 MITH_20190929 7028907.661940998 857.9959411271158 0.012980379761019702 1.584580935784026e-06 1375770.8021891534 167.94733476934672 85 2078 719075 OXT_20210427 0.0 0.0 0.5988740697931183 1.110957610286962e-05 28857623.239555553 535.3311784538135 63368 3738 93493 ELF_20210204 71338130.20799613 1904.1015531379967 0.1555674880194068 4.147413449807694e-06 24912467.750604644 664.1638631065948 40867 33304 465986 1INCH_20210707 489796965.1048171 14347.029089899945 2.8367627888322953 8.304975923715626e-05 118830796.9762854 3478.9193927992296 None None 4913 VIB_20190512 7249100.762288671 995.2484917819556 0.04246768225368941 5.83079792642158e-06 1563040.2125275952 214.60487472983488 33041 1125 1885935 CDT_20210111 4925686.100067485 127.75119084401169 0.00727137924921214 1.8959502438082308e-07 236230.99179509137 6.159522026546643 19236 293 987559 DGD_20190906 30396849.50135393 2876.037915583849 15.196960909781556 0.001437806566579782 1251532.827241677 118.40934039252649 17262 3367 548048 FTT_20210909 9171444405.759565 197965.40080688504 75.4766908048117 0.0016340000574550828 2601541159.4427733 56320.94304444857 None None 1511 FTT_20200418 271908374.19206095 38501.86339172841 2.6964501210061234 0.0003830223575404629 2376485.6620659432 337.5724007852094 10375 None 13510 DREP_20210703 0.0 0.0 0.4007036163446485 1.183483936814031e-05 2694442.429890633 79.58074757436158 4092 None 201937 PERL_20210902 0.0 0.0 0.09668723773822635 1.9871907677292893e-06 5201522.170535492 106.90570004091374 617 685 3287183 NANO_20191015 104371825.67373036 12505.046403850401 0.7834059086896049 9.385357377759451e-05 1841037.8517464714 220.5599676102166 None 47794 240289 BRD_20200412 6966149.983739785 1012.1714320842757 0.11160388741550548 1.62172372243845e-05 393091.48494177364 57.12039257604419 184 None None CELR_20211204 579010225.2323745 10783.350804176393 0.1024281309048663 1.910125942668199e-06 93334577.76473998 1740.5452658508118 94213 5231 43614 RVN_20210203 197987649.72869685 5558.711705107429 0.02465041294428954 6.93875173764932e-07 52320006.00614171 1472.7361095710921 36518 13269 133359 SAND_20211002 717253064.6911594 14892.419718248206 0.8065238129360865 1.6746158931519826e-05 179517724.2831612 3727.394397602002 198163 None 14594 LOOM_20190716 31935012.478077963 2920.5987395081916 0.04612231456576038 4.222606007928736e-06 2546503.121364842 233.13832969403995 20622 None 431801 GNO_20211230 901267680.8608295 19432.503760695003 485.0481645549339 0.0104141850185199 18964813.54935346 407.1824028566795 102915 2429 136852 MITH_20190714 15983678.38891143 1404.3441723245808 0.03688349405170376 3.238795098355748e-06 3719750.9473023643 326.6369264890872 74 2076 608806 ENG_20200423 11878832.749621887 1670.117309240719 0.14360069194781472 2.0184945843731938e-05 826386.6122984241 116.15939163643169 60827 3576 458891 NPXS_20190704 209537339.51755738 17475.416693338375 0.0008768778326257749 7.306529154001852e-08 5668513.675425934 472.3253215939531 62916 4613 223593 OMG_20190929 114209715.88271777 13944.791576218762 0.8159277937902136 9.940038225688835e-05 47460773.59468837 5781.9075087575975 287132 41600 None FIS_20210916 46055406.586316876 955.6427215937385 1.7189806580937357 3.565877389567792e-05 11739970.63037752 243.53558388188878 26856 None 322498 GXS_20190316 54407351.962536044 13863.813739481197 0.9067916751402393 0.00023106119523753205 8146056.946014267 2075.7112201410105 None None 590574 CTK_20210826 149138912.43380362 3042.647452867677 2.6550504786424547 5.416654933941525e-05 66712542.960447334 1361.0243115500318 84468 None 88969 ZEN_20190513 80570587.5723833 11609.33189515221 12.536546890658977 0.0018034078919442727 2451785.548057754 352.6943619551883 None 1625 234358 SKL_20210805 329822035.80698305 8273.012255525511 0.2697703587327812 6.7830716853574504e-06 30076043.07642503 756.2282126086656 None 2355 190534 WABI_20190923 7818575.498348619 777.7679435457752 0.13457867665725265 1.3387474561182015e-05 400616.7017721217 39.8521224682431 36240 7928 1396317 BTS_20210128 60369803.23543215 1995.6154477816835 0.022342461889106994 7.347773387910172e-07 12493396.051076325 410.8707602785565 13164 6857 133221 EPS_20210429 229979339.09572116 4201.464587078243 2.4189001811339943 4.417534681664111e-05 75570000.34907122 1380.1028254042637 12671 None 50287 NU_20210909 188289222.36759707 4064.218210842551 0.33667795457119787 7.272144908845705e-06 64864293.59578364 1401.0496857129365 None 7353 189883 ZEN_20190405 44630681.152783744 9111.463911417888 7.2370954588035685 0.0014785338550766679 478706.0229464246 97.7993264817882 25272 1539 329639 DOCK_20210114 11233543.204067566 301.6837649558903 0.0201110541037632 5.380775086639859e-07 6126550.920775993 163.91777572401537 43068 14865 239744 ZEC_20190207 272218962.11592 79929.58646658936 46.6266583078965 0.01369063157063288 143537635.5391658 42145.865820148094 73267 15006 148346 ETC_20190329 514962721.8160648 127906.47521440567 4.711080126110364 0.001170137329966948 180330365.98696306 44790.42752816984 226513 24282 601028 IOST_20200305 65397345.91957212 7470.273138729054 0.005449683770421221 6.222906807336981e-07 43727489.37098094 4993.172131406084 191590 52272 110553 UNI_20201014 619474718.5315651 54220.64368340651 3.3499527005941827 0.00029328943590440964 156290894.7283672 13683.318079012848 103948 None 3603 ZEC_20210804 1300778426.72313 33854.80446118963 114.35624283637068 0.0029770142054561803 589670363.226453 15350.775824049177 77166 20171 132489 ENJ_20210703 1050028625.9329529 31066.0614824351 1.12699389042471 3.3273569331748465e-05 71705028.82194626 2117.032104799544 237496 33770 29114 KNC_20210710 141927402.9532669 4177.330595408518 1.5378502086294943 4.525045944920889e-05 35820539.30251798 1054.0011322701564 174932 11220 114765 HIVE_20200626 84808906.86481224 9160.05302976434 0.23554515165898612 2.545566638133982e-05 6884352.725185036 744.0008210293902 7831 89 99356 YOYO_20210201 2425902.621875604 73.3922155371921 0.013649982808381523 4.117396955663731e-07 752151.451842377 22.687985336598807 9399 None 1427347 ALGO_20200308 230435044.11171556 25923.81236657378 0.34089485901680305 3.8300934621527695e-05 110545648.13171129 12420.25665625653 15929 812 407593 ELF_20190615 95674809.58764756 10999.867960968948 0.20964884063771083 2.4146013762556245e-05 43151186.86286134 4969.877957311574 87088 33142 1112151 NEO_20200403 491969924.0678214 72551.9314891621 7.010235471847716 0.0010283301249186401 510559858.950693 74893.92983183583 321581 99282 235469 BNT_20190124 33253608.260901224 9360.315948181358 0.5298673172505601 0.00014914849123040923 736211.03800646 207.23068204245033 856 5091 105322 REN_20200807 203073178.83326787 17260.322050869745 0.231851687552666 1.96919284686834e-05 24773041.178401448 2104.056088554531 18064 930 146117 ARDR_20210804 243230200.45091432 6330.4485269376155 0.24301990991192376 6.3513265157397226e-06 37915675.05332257 990.9263500904752 72566 7003 None BTG_20210212 267195276.34590402 5603.519628096587 15.257227160869947 0.00031954869235069133 40602844.92122423 850.3895146538093 83752 None 263524 WBTC_20210418 8943529385.925066 148359.50925131966 60212.01882844466 0.9990393355104396 233525873.21721533 3874.667180121327 None None 239911 ANT_20210519 247175422.53074506 5792.913774442357 7.075147759449934 0.000165381083143261 35719672.08260962 834.9448321632444 83831 2985 111610 APPC_20190701 8360318.337121903 770.5872408301367 0.07841243870341474 7.269775754989472e-06 163111.8250614879 15.122427140280355 25527 3366 1256272 WTC_20210217 31342811.409927234 636.9556071255747 1.0736934974704682 2.1830738335218454e-05 16703475.475623785 339.6213195443247 55510 19101 511678 DODO_20210603 216347798.29866588 5744.609386068151 1.6929270502692604 4.5015237111511356e-05 38051160.2755364 1011.7872485403071 90893 973 25824 POA_20190603 8490676.120756298 971.2732843487611 0.03856459947285481 4.411517369980398e-06 570656.064256511 65.2790168746407 17524 None 614936 STEEM_20210324 289104086.8773176 5300.105685836281 0.7638224166254216 1.3990922658232704e-05 30397730.05843868 556.7947221454936 12978 3911 174807 NKN_20201224 11303067.18337565 483.44974931025416 0.01751565420232624 7.50687515633636e-07 1016077.8911722051 43.547159529618106 13685 1024 401461 DOCK_20210603 37139186.96612924 987.5377129470261 0.06633279228733 1.7638009698101698e-06 5313383.893838987 141.28384079373376 48371 15026 249470 BQX_20200621 12627874.830538776 1349.643940038396 0.056707451082922355 6.058401532039728e-06 578338.7114401311 61.787438308648575 12214 32 380325 ZEN_20210108 152859198.6892369 3910.138980383989 14.624322992775324 0.0003704851315141636 19992426.2963553 506.47791965149804 81045 6340 350689 STX_20210420 2486373713.0637965 44435.29381615164 2.2870103811386797 4.08903798194243e-05 90786806.97227888 1623.2138910715923 59954 None 58797 WBTC_20210201 3827329157.350029 115774.57697432241 33138.52583197373 0.9993579349327252 269519173.4345464 8127.884926264415 None None 144337 AVA_20210217 88963237.8569246 1808.9451778754612 2.306402669673506 4.686897382694054e-05 10772022.043203853 218.9008995890634 46450 9349 58416 DUSK_20200629 8199633.211058266 899.066370923774 0.029276181413802692 3.207729006487595e-06 195971.13424637046 21.472140880367128 17354 13330 976071 MATIC_20210809 7004321717.976944 159216.86014165208 1.0843235571187275 2.465486057560365e-05 684095725.4498539 15554.660433782143 570478 None 5735 QSP_20190920 0.0 0.0 0.012408526371342248 1.2101093712986686e-06 681144.8831437111 66.42688919193392 56339 8522 561299 ONG_20200313 0.0 0.0 0.05740053827622598 1.1978226957278701e-05 6276084.806657253 1309.6805443792425 84517 16506 345761 ELF_20201101 39511471.0213481 2863.4126356897696 0.0857269712327282 6.212787220633109e-06 6786155.721620838 491.8048653562639 82427 33346 424990 XMR_20190513 1280587179.6747217 184546.06504754783 75.53175946719524 0.010865397968324943 46602444.36202382 6703.856865799985 317149 157707 117450 COS_20210318 103144347.09174858 1753.4725678375592 0.03432500899541229 5.82349548289872e-07 21915685.370233852 371.8160562616145 17540 None 274525 STEEM_20211230 163378579.16923654 3522.6635338735905 0.41484839291059866 8.915297028898927e-06 22081348.14348102 474.53908671663487 15032 3950 164208 TFUEL_20200319 0.0 0.0 0.0014841055460060525 2.754587840233908e-07 208565.59207877345 38.71100983198077 68368 4026 384607 KSM_20201130 472438737.16842353 26038.766553491685 52.87832087166593 0.0029117350787475128 81672028.65022787 4497.255337409285 None None 173763 LSK_20190719 175450775.64028108 16347.77669893999 1.3050672962299585 0.00012235233241179947 5288255.514870079 495.7831665102932 182802 30486 196756 ALGO_20211204 11016167025.546354 205188.26040944026 1.7551941714039472 3.2660905363714936e-05 416143291.6261811 7743.654170567264 201105 58233 65951 APPC_20190312 7531132.894770672 1950.216484535461 0.07212062453128092 1.8675919387049866e-05 1926229.2011125733 498.8046278683682 25352 3415 1657371 QKC_20190626 73587782.46212311 6234.218078600194 0.018405579137681972 1.5570204862446736e-06 9081591.043604428 768.2574504617887 50932 9209 162641 ICP_20210930 7349890406.43664 176820.23954558664 44.53975283725497 0.0010710426198039008 279108346.33915484 6711.688220734336 263358 23456 22553 BTG_20190419 303507490.5250182 57507.98455851468 17.293399448789696 0.0032766135675520096 14307991.00545896 2710.962502874473 73490 None 444329 MATIC_20210104 97731623.9131488 2921.42310113213 0.0199551095767846 6.062120866321778e-07 19922331.924040448 605.2163411972314 69838 2585 49015 FUEL_20190813 2763857.214045501 242.84942888729125 0.0030698019501555385 2.697616950649398e-07 129040.7335571937 11.339574207726363 1 1505 None XLM_20200905 1678902134.281909 160120.33894447604 0.08132791784276133 7.756410278316344e-06 277436299.90502137 26459.668773542766 288435 111249 46719 DLT_20200518 2747309.399527318 284.4108849548242 0.03366758937718997 3.4680014111385113e-06 250966.77299262956 25.851364442415 None 2569 8395900 RLC_20190807 20806195.281264987 1821.9546933280824 0.29708899153926427 2.60154571825282e-05 337109.55872956384 29.519973949593023 24904 3316 861371 SNM_20210219 12304985.43677844 236.30480352 0.028019930608139815 5.4e-07 2036730.73026541 39.25186717 29071 9493 None QLC_20200329 1934907.8655813148 309.5531049469166 0.008063944391923145 1.2898045010606122e-06 40270.73594228053 6.441187334005099 24459 5664 940522 TOMO_20210401 215747579.9514475 3667.9721458293548 2.6649111646607397 4.53484676353245e-05 30524586.929109003 519.4331656502222 None 2001 79126 PSG_20210723 48029491.77939925 1483.6929363901006 22.823027593056498 0.0007049661752640097 40210370.22937863 1242.032889412924 9302223 None 40943 ARDR_20190811 56640600.53062182 4998.91826563318 0.05665479355014676 5.004185900938862e-06 2255884.5478047603 199.2570255909295 67433 6550 897983 AST_20200905 21949149.79702115 2092.133027279798 0.12728094277217947 1.2136995180119702e-05 13434245.483482063 1281.0352369357665 33375 3482 151828 OAX_20210430 20996197.36792659 391.7035787972947 0.36948891333882977 6.89315913470266e-06 796965.8093983568 14.86813798946713 None None 1298527 LTC_20211225 11191816306.083565 220091.45803263818 161.58309840126907 0.0031775950165689785 934925762.2287643 18385.68187090007 206282 353685 134071 SXP_20201111 78592506.58054131 5142.397584791404 1.0113310820305141 6.620306344770694e-05 51247770.00583254 3354.746461898278 89332 None 69849 REP_20210112 104000787.56894928 2935.9669161551783 18.291601016802346 0.0005145790503398736 20196042.29075335 568.154764203169 136391 10454 135410 RSR_20210821 667351225.8174337 13582.80027362942 0.05068728907735609 1.0305494862710354e-06 177145495.22211787 3601.636671035478 None None 160893 BNT_20191030 23069229.09373033 2451.3999419218785 0.3288716807827348 3.494810152914172e-05 6218461.0730930185 660.8152104195391 765 5091 174130 MDT_20210523 19932221.239458427 530.3370829074204 0.03281138857666988 8.736930400417533e-07 3730140.004409593 99.32518864962775 32901 302 346465 WTC_20190512 57216669.02537371 7836.227224398535 1.997940221747855 0.000274302573183887 5425577.6227769535 744.8921077501866 55629 20235 966813 ZIL_20201014 224877285.23583642 19684.00740422147 0.019979809500133124 1.7486005737642985e-06 22316290.61306806 1953.0856172598458 96084 12160 100341 TWT_20211120 402136040.7184672 6917.749870831185 1.1591899461040842 1.992627072571998e-05 20503023.063304286 352.44335031387345 10089 54222 3798 ARDR_20190329 80453579.24831738 19983.189706195506 0.08054326225249539 2.0005322625827647e-05 1515561.9771610866 376.43504204605784 69262 6591 1067590 XZC_20190515 54928018.77400246 6871.777212262783 7.334058935409649 0.0009175284343150886 3686093.561930173 461.1492332421256 60342 3967 353652 BADGER_20210819 213373487.20182034 4736.322434569934 22.630209843283303 0.0005024818768772728 22186284.521908805 492.62494535863675 36938 None None POE_20190807 7187032.019726295 629.3712192279337 0.0028631756016125444 2.5003096147699577e-07 191397.50655190006 16.714064816883393 None 10790 756599 NKN_20211221 214186526.49806437 4539.900926970093 0.3291638872350393 6.982219336205893e-06 7430084.578754965 157.60684032262728 37256 4591 115682 KMD_20200610 94353823.14202411 9652.356131046987 0.7849979519144873 8.03500203932112e-05 5692194.288111963 582.6358221909595 99792 8376 202548 MDT_20201015 7745297.457109186 678.6783856459515 0.012776715428369927 1.1180639159930292e-06 878783.7503903062 76.90054668438209 14214 65 903169 OGN_20200318 6052894.086968871 1114.9470701353832 0.20723475305713726 3.851464950164892e-05 45104850.75335859 8382.751888679713 66602 2170 104622 LUN_20200412 1659726.355163174 241.15581859345141 0.612149679854396 8.900571428505388e-05 2278525.7278431407 331.29448008825034 29380 2145 2462612 SNT_20190520 95996566.75394355 11729.75514222431 0.027230820931029884 3.327903393796734e-06 22667075.373887867 2770.1638982998834 111546 5756 333146 ZRX_20210616 761865522.0055397 18864.33651905325 0.8990715035332203 2.2275950793728847e-05 177460701.42528042 4396.875929483942 219281 19417 58328 TRX_20190426 1532207032.4039762 295175.7575019272 0.02305626025684116 4.439405498902218e-06 508862699.17566454 97979.8041721174 414734 70500 98802 WAN_20200531 20604649.19316491 2134.9038817116107 0.19621556726559602 2.0316306828998305e-05 1688593.0694903885 174.8381914195955 104465 16167 812761 BADGER_20211002 182755478.6458171 3794.576039873421 18.91445353094156 0.0003927279515516232 20756430.57264701 430.97361744996476 None None None EGLD_20210804 1920280031.4912806 49977.17228304597 98.14246002265368 0.0025649536652684853 92643536.6933814 2421.2392775794906 298721 9830 43311 WPR_20201111 4561807.769153585 298.4046984024687 0.007485558976256592 4.900145408877239e-07 365305.1829350936 23.913357982701157 32630 None None ADA_20210210 22537176367.01823 484428.90507277066 0.7059190563060789 1.5156090467841292e-05 4430904463.339153 95131.57110694605 200164 153242 26016 SKY_20200629 8773936.674788877 962.3301595254661 0.4869233721056183 5.336625017704115e-05 270054.6438532631 29.597683148836264 16103 3815 781514 OG_20210114 0.0 0.0 5.21333733281514 0.00013948446209695255 16321914.189271634 436.69789153156626 616637 None 397078 OXT_20210708 163321145.58986488 4806.519183352075 0.27606599295030415 8.12519034661482e-06 9702131.996400101 285.55371270565627 67093 4303 118089 TVK_20210513 81050842.93989524 1572.3731306408426 0.36144375284142705 7.170963431529477e-06 13448096.10469428 266.807226940135 47894 None 59216 QSP_20190201 0.0 0.0 0.013932908109651324 4.060558078224435e-06 86663.15533127109 25.25680731512542 56838 8613 722611 SKY_20210804 21852812.51000908 568.7538163721921 1.042371122490086 2.713866744455097e-05 552167.9694614101 14.375976630040139 19652 4411 730332 CVC_20210814 227252276.1870814 4764.2304758885075 0.33949263067986213 7.115407061332077e-06 79805362.44858927 1672.6361286891436 103852 9857 242818 NANO_20190703 167603126.08902112 15511.474492345695 1.2607729719996916 0.00011657462856184865 8270749.813405933 764.7368787550528 None 46652 329357 FTM_20210821 1249159905.0667005 25421.39903446827 0.49192388998089615 1.0006126648259907e-05 172555889.63359424 3509.925256209768 107512 9688 52942 APPC_20190908 4073833.4651121125 389.149453844824 0.037519008020257434 3.5839711183385213e-06 258541.12537677254 24.696919645444655 25186 3310 1154369 XEM_20210902 1790246392.5327973 36809.47093736286 0.19905375779669454 4.091106531002129e-06 67401384.16196701 1385.285291751401 372171 21885 130359 HOT_20200331 58859879.507392354 9162.860540768119 0.0003315091171764069 5.1708953246190085e-08 6900729.61855671 1076.3791603977738 25093 6928 517070 XMR_20190531 1580052496.8673189 190100.61551785583 92.81686022128527 0.01117381010453337 226206627.35036767 27232.012506929343 317788 158048 113304 CELR_20210814 260680351.4296489 5471.039981014366 0.04626408468974422 9.696819975258146e-07 40967128.854289345 858.6593165460582 58632 None 199421 BAND_20210218 366394037.6949358 7022.120712361718 16.22048501612576 0.00031109181465411624 346441526.4681809 6644.383508469859 60907 4012 238789 NEBL_20190906 7532283.116218645 712.6846926856339 0.48524622139342455 4.591404901886079e-05 151862.02258245577 14.369200709964975 40361 6118 464857 RDN_20210422 64179467.07265879 1184.405420852866 0.9553663974107423 1.7663173934548307e-05 3895709.8148734313 72.02535094925737 28805 4518 626244 XTZ_20220115 3736752394.224848 86709.8184183777 4.294493189975226 9.957240725532995e-05 127922133.3679745 2966.0111676088304 274158 67348 35201 TRB_20210624 62758730.39419413 1861.4820729586204 36.07241729144706 0.0010694082169118433 50290434.43256647 1490.9176554409792 22758 None 262407 TORN_20210821 54681829.32898164 1112.9557235209704 51.651496134954584 0.0010501532785817775 5267246.187220058 107.0911060960185 22920 None 123832 REN_20190725 95727262.99860667 9738.195020805986 0.11885225159996274 1.2104892835006018e-05 20526248.997355785 2090.562366912024 8337 834 661465 TROY_20201018 5867250.88478639 516.514919636963 0.0030891195835706796 2.7178011871271403e-07 577369.3498423923 50.79683909804122 9906 None 540021 GRS_20211028 67354402.83597806 1150.9699009091669 0.8555163629112865 1.4619708793920878e-05 1671860.3592359056 28.570010645913776 41802 107127 None HOT_20190329 199328860.610361 49509.627633560536 0.001122232483924725 2.787399252803731e-07 8187579.7152127465 2033.629743156304 19837 5814 221294 XRP_20190909 11250359538.167639 1083153.1504754624 0.2620627186965279 2.521493221748914e-05 1257546823.36327 120997.59198538665 938127 205191 31314 OST_20210429 23893629.420916088 436.5202155644176 0.0345144788040064 6.303232697464216e-07 1303416.0655026142 23.803734105706866 None 768 441171 CVC_20200308 21440971.03055848 2412.246390783549 0.03250858112761889 3.652472331201062e-06 6986337.600190383 784.9436639806383 86768 8077 106398 DLT_20201124 2739208.966238294 149.3642724702156 0.033611456253636256 1.8307671810460013e-06 181974.61779995187 9.91189300271687 None 2538 None REP_20220105 125069051.09881863 2703.4614497135176 17.998979315876525 0.00039118943227538824 19000736.292550996 412.9615970246154 159775 12078 173717 ATM_20210422 0.0 0.0 9.222957728881795 0.00017053728288425742 5016212.249773852 92.75237213419138 None None 149248 ELF_20200316 25325764.424990024 4686.484968359901 0.05464168868896047 1.0168534951152391e-05 30020867.91971351 5586.727863467573 None 33433 652715 XVG_20190806 89913621.47338738 7612.570741744918 0.00566416494051844 4.798806551594127e-07 4443788.159940748 376.48761926534235 303826 52896 396565 HOT_20191213 119629486.11738971 16600.14668753503 0.000672256699564691 9.339127772811037e-08 7495661.629073085 1041.3126673337692 24635 6753 592618 WTC_20190228 27903132.23382249 7309.949812647057 1.0526840147603316 0.00027610280420412936 3067067.6783142863 804.4446147111134 54437 20381 795747 COS_20200927 22336900.76988508 2080.263582412312 0.007444854109757983 6.935153019150939e-07 1051549.0275269358 97.9556255303938 13011 None 228449 NAV_20200323 4173565.3338605682 715.3541565353946 0.06124961387837244 1.0504333749119758e-05 27616.346396579156 4.736214665075644 49548 13966 1082339 GLM_20211007 565713264.9943112 10190.42779101639 0.5684640426666808 1.0247378743419956e-05 41282763.24125499 744.1809485848605 160470 21460 143737 KMD_20210314 191103455.94835514 3111.548710556509 1.5182213613776536 2.474862400923463e-05 5107905.5525286505 83.26429676862409 101913 8803 245879 CTXC_20200421 870306.3632700046 127.09374795980793 0.08472187167519672 1.2374161447311153e-05 9171380.844064608 1339.5377724221976 16550 20065 404295 AUDIO_20210310 170765294.41556147 3124.2691606333515 1.1012502134523334 2.0112917345557457e-05 89366853.61751175 1632.170526084848 None 3080 66000 VIB_20210508 21711599.28998804 378.90869571737835 0.11913912988501606 2.0788605545393766e-06 2719721.0487969965 47.45645543283109 32423 1249 3730171 LAZIO_20211230 0.0 0.0 4.851784529184602 0.00010425884531484418 8859974.713687124 190.38989213376715 632508 None 86457 CMT_20191012 13718689.843507305 1654.5537657585544 0.01712205121140028 2.070964387736053e-06 3030903.597139081 366.5970469797934 289063 1653 599967 OST_20200319 4836787.935348243 898.7376651065209 0.006987456537453643 1.296913340431263e-06 158881.38265203303 29.489326137930618 17809 752 732102 HIVE_20200725 81035086.15649989 8496.18916677081 0.2230738068678188 2.3386088947576968e-05 5694767.36666726 597.0146743922891 8227 91 125013 RIF_20211111 231165480.41073385 3559.5580918909504 0.29015928448532396 4.466992172875059e-06 3357603.1375069967 51.69018444978659 48239 3524 896172 ZEN_20200207 90166033.1630666 9257.968513153472 10.81192713056863 0.001110288039186026 1221056.193224037 125.39153012580172 54307 4992 52317 TRX_20190915 1045540122.5787927 101002.1490265199 0.015808198414585438 1.5271346775854997e-06 638690135.6556286 61700.00077248372 463194 71244 65746 ONT_20200129 443292691.401365 47453.06955020236 0.6945482446210728 7.428008206101764e-05 115619893.8557678 12365.239232845672 81704 16232 348769 NANO_20200105 87179102.52533126 11855.909371285288 0.6542431361295722 8.897293053274693e-05 1058290.4146785466 143.92080611758706 97659 48556 260915 GTO_20210711 24524896.29908509 727.2774348043681 0.03684604512255404 1.0931746893337883e-06 7858101.78459247 233.13975620864986 13941 None 269467 TNB_20190701 19528436.885652654 1799.900427424094 0.006726727332142486 6.236484935075086e-07 3215020.8573113857 298.07108498016834 15741 1489 481694 BTG_20200629 175943045.6991055 19292.342722834197 10.112488636248619 0.0011084468322340617 60282515.395481385 6607.667571531658 75160 None 228624 HOT_20200330 55572661.21620365 9398.03950742852 0.0003109258336936392 5.260949534609763e-08 6070496.5676475335 1027.1445030162122 25094 6928 515134 BTS_20200417 46134529.58604246 6508.027515994207 0.01702258055513732 2.4013125015059884e-06 37126344.04604698 5237.276087736267 13222 7011 127468 XLM_20190314 2065605419.8373756 534107.4510317462 0.10774158236848563 2.7870477756172107e-05 163189848.81003785 42213.776253425334 265093 99417 70469 APPC_20200312 3611262.821186345 455.30883082575235 0.03329060502596887 4.195923294984938e-06 113502.90652906605 14.305822594161334 24910 3231 683942 CDT_20200621 4377540.368779592 467.92212623245206 0.006492660871728037 6.936504078586147e-07 329820.5914502535 35.236737648788896 18940 291 271628 HIVE_20210814 182151234.59756693 3818.625585938746 0.48806232696529933 1.0229646934606312e-05 24491259.266684186 513.3297971180988 22688 175 88793 HC_20190515 53176240.39544472 6657.793781269913 1.2104988704781987 0.00015146076276045947 22218586.990122642 2780.0473135957423 12722 801 932135 BEAM_20200901 32873862.0441833 2813.2977933409043 0.4731551923685016 4.053478684543648e-05 12308981.634063393 1054.4995698421233 15844 1549 271885 LTC_20191203 2905742274.0158777 397595.16284997965 45.53208922752043 0.006232113208245364 1787699894.7056391 244687.83038929707 449369 209747 164753 KAVA_20210105 68273489.16799217 2182.2171825949704 1.4570639656322562 4.657195729544379e-05 30316424.226926025 969.0001590522486 51685 None 85719 WTC_20200322 5907063.672054857 958.6834290047077 0.20171184312772672 3.2733993076594766e-05 8276014.489261437 1343.0396390842545 54821 19432 966319 VIB_20190305 4037089.0686211116 1087.2071538804344 0.02393599206944887 6.4460757171301575e-06 1254193.2238111545 337.76015889131355 32646 1124 2369421 WBTC_20210422 8367358008.80899 154424.843988057 54141.19894702364 1.0009828863753896 351531980.52737665 6499.255712195395 None None 239911 JST_20220115 371718635.7815029 8622.843259727311 0.05103133422448884 1.1832159394373084e-06 261290467.79323313 6058.298318361886 56817 None 162886 BRD_20210729 9202262.295857372 230.07016398798424 0.1095472998097756 2.736937713358706e-06 143916.72125599853 3.5956258408235597 None None None MANA_20190509 67606478.03966576 11347.916585940859 0.050932572484728156 8.549159796861076e-06 12125512.212442879 2035.297580031863 44428 6211 121517 VET_20190929 190011809.7041092 23200.084711399708 0.003434848032543766 4.1845027222709903e-07 24949139.36061908 3039.4282537010204 113669 57545 165877 REEF_20210408 405770794.6530858 7204.095090910095 0.035684415700653976 6.350328184570468e-07 103782222.31012711 1846.8879438070214 96296 9171 36587 LTC_20190803 5972279503.138756 567448.6317706576 94.85673656505452 0.009012347494091721 3176258586.66285 301776.6281097633 451480 207139 141428 CTSI_20210509 535502078.6639473 9131.893813238645 1.7222880889707812 2.9319286026772872e-05 767574783.0159965 13066.771322579772 36420 2361 173640 SRM_20210108 70024943.25723144 1784.719413687441 1.4013344168471926 3.554007350731741e-05 82530016.25890322 2093.092704452831 29552 None 89781 FRONT_20210725 26777918.338851128 783.7679587543715 0.5938809822840011 1.7382145003955184e-05 9437226.669653047 276.21568512974665 71162 None 222970 EOS_20210702 3790127522.400963 112817.65016048805 3.961676349116694 0.00011778976584943764 1413830074.1284912 42036.425671072066 225673 89159 47044 LTC_20210108 11282929355.746391 285835.9712305171 170.36551131211365 0.004315952874887098 9860941062.12867 249812.04586776203 138120 221127 152475 ELF_20210207 85669206.15049274 2177.4344606994555 0.18459489104548393 4.699415334122946e-06 70800421.71659389 1802.4365982878185 82250 33303 465986 IOTX_20200423 10432472.289137257 1466.7646994875715 0.002409396191712474 3.386719867859965e-07 2925823.793952622 411.2626062463393 22589 1816 547255 FIL_20210707 4881822295.539246 142949.5214723808 56.892695206156596 0.0016656044198778966 309162033.16815466 9051.10308164116 94950 None 26863 SYS_20210110 50340251.433958806 1244.0238117734643 0.08295280299815214 2.0508476357885763e-06 2469380.8607331663 61.05066636758479 None 4492 315243 NEBL_20210115 15313416.043521801 392.08261953716715 0.8823370859835792 2.2491799489058857e-05 4446130.842493929 113.33705111127435 38277 5880 781583 MITH_20201015 3283672.9388514226 287.7092005963852 0.005307252562558171 4.644067532839644e-07 581981.7283034169 50.92583059241166 120 2106 358765 ONG_20191108 0.0 0.0 0.1489570888127417 1.6157614307629462e-05 4938663.237765747 535.7047215886626 81640 16290 359928 DOCK_20200129 3991282.7436694964 427.0601403151742 0.006976401457017964 7.479001241874242e-07 2397662.7806737595 257.03972205062456 43452 15072 305470 DNT_20200605 4990386.083836069 510.51825876770977 0.006643026919200393 6.795839998676569e-07 560977.3729142487 57.38818336238255 None 6025 623804 ALGO_20210117 411210591.9552867 11337.786691471583 0.5150007788864988 1.4230677189064018e-05 439717242.1039899 12150.41682145975 None 1875 270468 WAVES_20201115 430874304.1739533 26769.32297036315 4.308970333683791 0.00026776874152816514 61009175.16364629 3791.242173922049 145227 57082 240575 CMT_20200730 10134973.95433 912.7395459959232 0.012693571654704578 1.1436521480711044e-06 4096469.0372538157 369.07938454231146 283168 1633 956184 BAT_20191024 325669920.5421386 43627.20717331149 0.24068619406406774 3.22383945931376e-05 87659059.10213295 11741.376974225157 106791 30924 23933 XEM_20190531 822421268.1135223 98947.84483004716 0.09129388691720904 1.09904661037403e-05 92206411.18391663 11100.32085262601 217090 18459 167890 SNT_20211021 356485684.29329354 5377.84948900571 0.09195799195314798 1.3924877518707553e-06 13399248.360459102 202.9001376598119 137553 6172 177655 TRX_20200404 782726302.6656741 116358.86846741513 0.011839294213209482 1.7594792799967534e-06 801850600.5019559 119165.84653011043 502963 72460 50971 ARPA_20200518 0.0 0.0 0.010747847557164422 1.1036078440082897e-06 2508538.822041977 257.5811674179749 16669 None 1143848 BTS_20210825 154424163.2515571 3213.5031707295566 0.05674582423250726 1.1816040788213765e-06 17473575.95706959 363.84789368590884 6655 7212 252207 GAS_20190510 30306269.119849943 4908.58814910097 2.1681831396441367 0.00035121849065013585 1287594.3407321349 208.57414332436005 320868 97560 218328 YOYO_20191012 2403097.1127676875 290.6398577702663 0.013740320789334345 1.6618075310866659e-06 321874.4501819802 38.92874071702861 7531 None 1153684 TWT_20210724 107548044.32873972 3216.953586196944 0.31126541329007246 9.305689936389097e-06 4241573.916621724 126.80744478852175 935935 41499 2945 OXT_20210220 0.0 0.0 0.654263779356847 1.1694253841225014e-05 82442206.88746794 1473.5648296480158 58662 2537 125162 THETA_20190623 131528229.9391207 12251.56010591396 0.13141423649403597 1.2246432318313634e-05 8116587.65962923 756.3810746929242 None 3997 231431 DNT_20211104 136879812.04254833 2170.441756793787 0.18220960479169376 2.8892159393516285e-06 34611328.61994401 548.816306611286 None 10304 549306 PERL_20220105 0.0 0.0 0.08278652924891843 1.799608687240387e-06 1802262.1481680518 39.177468217996605 1627 728 870534 KMD_20190812 98219531.2167667 8510.841573280353 0.8516733906743811 7.376961923752751e-05 2067837.404712714 179.11041915960917 98411 8439 220245 RLC_20201228 56878095.27075388 2142.3269484978246 0.798485369966681 3.03626117982924e-05 2596228.8835763964 98.72227181173469 33746 3893 508696 GTO_20210506 54032068.212492496 943.5308119896949 0.08164209940961034 1.4241267656140733e-06 18834844.929041114 328.54626453273823 2108 None 267517 BEAM_20200207 40941792.60865536 4206.598649705483 0.7461268390480567 7.662054091805238e-05 30059482.153911635 3086.8394779736755 12353 1440 250044 YOYO_20210115 1853860.1446849236 47.602090789605974 0.010754785085335894 2.741519919426774e-07 407260.7802823499 10.38155139955065 9337 None 2139137 HOT_20210128 110266999.53134814 3645.042982617215 0.0006248129893021093 2.0548247001611595e-08 9078455.565848708 298.56349108327515 27539 7536 800111 CND_20191022 13884775.217844434 1690.812758597678 0.007836249159702026 9.54165202928987e-07 190288.1625839461 23.17005745562576 35492 6066 332150 BTCB_20190714 0.0 0.0 11406.31803266773 0.9999970942492514 807807.4821950939 70.82084969 None None 49193 STORJ_20190915 21216508.416963942 2049.530130321837 0.14759375618951162 1.4258142348728458e-05 3244905.505960865 313.47074433661277 83451 7798 165970 LOOM_20190706 43366945.99943132 3945.749663594813 0.06265486184167181 5.701888529548625e-06 3665851.8123382195 333.60983945054693 20556 None 438184 DODO_20211002 135653144.87219545 2816.720550335467 1.2984120211232912 2.695978115676525e-05 55001259.05312276 1142.0272481272268 None 1115 31561 APPC_20210204 6068475.89288034 161.98180995969457 0.054751232940307794 1.4596704703921508e-06 783535.9858590665 20.88910659409256 24286 3121 1221759 DCR_20210124 631337506.0361136 19723.79445235146 50.56736488545987 0.0015778547807118431 14300253.64344304 446.2111804284768 41572 10150 350350 WAN_20210115 56288870.56903752 1441.2389435428788 0.34117626323962286 8.697041856858684e-06 1983336.8162165391 50.557923177584144 103794 15874 601908 BNB_20190614 4911356614.844514 597304.3953319228 35.06496913774314 0.004262130757995838 610526678.3203813 74209.23497820616 984166 52690 864 QTUM_20200404 121631890.66067596 18081.60671058191 1.26671265715659 0.00018827058144992685 341350265.7644574 50734.641870415064 None 15139 108429 NEBL_20190123 16552645.29950291 4634.377478777008 1.1229395921316312 0.00031439844578546943 111257.59685537897 31.149685858664792 39768 6181 488373 DOCK_20210304 20514696.13563047 403.37559669318 0.03653777253929266 7.204678817582371e-07 10514309.68122488 207.3257863772575 44270 14835 205614 NEO_20211202 2634168469.0557985 46064.62780641105 37.34819890905712 0.0006531210521254934 158500429.8402729 2771.75260182407 430103 115307 77665 WABI_20190626 15130306.723915692 1281.811036520258 0.265185135747976 2.2426806314471973e-05 1387121.1854637528 117.30935851042993 36432 8021 994304 ENG_20200523 24730318.636437826 2701.5913935732365 0.29843307529949353 3.265808299136553e-05 2360255.354977648 258.2871056980518 60486 3576 481598 GAS_20190621 45389562.761374034 4745.100300908851 3.2532503200593537 0.00034017615671554 2169428.20525883 226.8462849553416 322294 97735 201306 SC_20190509 108570821.20093028 18239.776146538046 0.002667005420211106 4.4787472519312636e-07 2031305.9839573281 341.12064507016595 110006 30935 237750 THETA_20191113 89919732.57254371 10220.87829590225 0.0898602734397731 1.0210243647464862e-05 1217543.257996311 138.3415923367114 None 4022 431634 HC_20200208 106587539.87229466 10880.921365053006 2.4240333233589126 0.00024725884605028884 103637380.90001735 10571.33124453271 12788 845 843276 RVN_20190830 134258005.21682137 14147.81641544804 0.031184476261167018 3.28806422776739e-06 16373224.230345286 1726.3786133247659 27539 6949 259754 SYS_20210418 275570967.22009355 4573.133330882088 0.4458741189620821 7.417613793402148e-06 6461214.0236751335 107.48950931644417 63583 5012 411439 ROSE_20201226 68388535.1919852 2769.738184342311 0.04558940825513533 1.8464164363999973e-06 7585193.188478532 307.20787815662095 7567 560 229578 XMR_20191118 1067789637.5893135 125624.87613547264 61.70844815283539 0.007254656567201796 231296887.32893148 27192.05445708598 319939 162890 99230 QKC_20210825 139727919.75226754 2907.680402528127 0.021360971722958966 4.448765683326517e-07 25425584.319818318 529.5286584690256 75275 9552 280880 LRC_20200423 34707730.73613535 4878.623186038093 0.030384041813380565 4.270872446350399e-06 3432903.299385594 482.5392290592051 34134 6806 593192 CKB_20210219 245843618.15985188 4756.6652079167925 0.010279879668702334 1.9883540883082825e-07 12646381.023478888 244.60873298833792 27922 825 255152 JUV_20210729 23829323.32912039 595.9262339395051 10.778773864197552 0.00026932573917221313 4862047.421683616 121.48640765948376 2576017 None 42486 CDT_20200430 2726844.67922015 312.46202974081655 0.004124912946090179 4.7048578368426924e-07 148518.93107473597 16.94000493874168 18985 289 263916 NEBL_20200701 9459505.638094282 1034.8784314375305 0.5739696319542278 6.279279437368497e-05 238817.535103281 26.126853303218837 38915 5958 736542 CELR_20210325 400485841.9089787 7576.818748082098 0.07204584613031635 1.3664532678464165e-06 177398977.82037154 3364.6271919243577 38624 None 237739 SKY_20190224 14324344.625558598 3481.1988261093525 1.087079105684071 0.0002641892949045002 1052106.2343444033 255.68995187444673 14521 3520 348246 TFUEL_20210702 2050515074.7348878 61025.97366344154 0.3874233308011288 1.1519223190708798e-05 117838711.8412937 3503.6878636053657 180386 20867 18384 XEM_20210506 3324950967.6719055 58080.094271819406 0.37073638662910424 6.466952895669967e-06 408332501.9379179 7122.762024557849 344110 21282 27944 LUNA_20210620 2397880607.8427486 67398.20578860895 5.752889068505318 0.00016158159973773077 83586897.32428081 2347.708156013483 82692 None 19103 HC_20200305 71326303.7254579 8147.706107456771 1.6066490829418287 0.00018344030986265639 14033462.401257515 1602.2806216146346 12776 842 804824 FET_20200404 4891126.89085361 727.2875000473124 0.014363559909091836 2.136000705685374e-06 2185589.300226513 325.01833230543497 16615 363 974663 YOYO_20201228 2090610.3449314812 78.74333448465497 0.01184043351513396 4.5023553325529884e-07 641183.0684452956 24.38115127851975 9202 None 2222023 ZIL_20190916 67290856.87097856 6530.303128131351 0.00726646976532905 7.051812452022074e-07 9147621.568687014 887.7393530520204 66259 10604 170382 BNT_20200322 11770338.422006562 1910.2601606171272 0.16871867004662103 2.7420229499745707e-05 6082197.925429619 988.4813751321852 745 5023 126378 NPXS_20190902 92577712.07218073 9506.932872354131 0.00039191507697222916 4.024186423124278e-08 2569552.90653069 263.8418506337035 64976 5467 165759 KNC_20190401 46729700.826949395 11387.869279916142 0.2830200186649535 6.896988477433198e-05 10809457.845939016 2634.1849089833713 95334 6650 240920 QKC_20200610 17537959.2045328 1794.3901670821208 0.005412784824659337 5.540363130690295e-07 3218967.9277558145 329.4838387915279 49434 9199 677381 AE_20191024 61609002.22919494 8252.136488666172 0.1844550798576423 2.4706592217651194e-05 15846685.644652437 2122.563393352452 25056 6351 393899 OMG_20200806 223075525.08877593 19040.947559096978 1.5930464264248807 0.00013570335110204388 68959428.64018643 5874.2955643526775 None 43116 264295 MITH_20190702 17633285.911575425 1661.7391987078781 0.040451365107799966 3.815834224244307e-06 8091308.70052297 763.2645419036265 75 2073 608806 TROY_20200223 6195804.9289691895 641.8525408224871 0.005318660119834406 5.509881004018513e-07 857414.0484858757 88.82405101828583 7717 None 291470 BLZ_20210513 97748456.11644767 1895.1509314518783 0.32894962260100596 6.526287135808179e-06 35346051.078459784 701.2577689890485 56755 None 200625 MATIC_20200531 82521775.96242885 8515.329130971924 0.02396138642440334 2.4786087986122344e-06 64304969.477114566 6651.821406216322 39698 1805 145668 PSG_20211104 62759143.89106081 996.2441635232984 20.145714229071107 0.00031967902408626934 6633590.931399919 105.26407011558366 10680300 None 9461 LINK_20200718 3159609187.9398394 345110.9294357129 8.274893639177886 0.0009039033085000927 672319415.1188794 73440.42959266105 65595 18125 75270 BAND_20200520 21838851.79559978 2239.1115256924386 1.060065238930579 0.00010858912576844358 4337935.857882734 444.36195542293177 13836 1137 537280 ZIL_20200414 43644268.86621549 6369.117261107482 0.0041529390780614735 6.065100074080646e-07 12752711.339231677 1862.451363587237 68994 10554 227703 VIA_20190916 5461291.533358332 530.0874411450731 0.23586534211799687 2.289371568875971e-05 1794207.884306836 174.15057600663752 40631 2209 3148663 ONE_20190730 26702594.729291692 2812.8752698523044 0.01037517383222887 1.0907519631807356e-06 2373453.4885724504 249.52343874342685 69445 None 156927 GXS_20200106 25318243.276546992 3447.734959150974 0.38958480425129305 5.304180817999742e-05 3335039.28242641 454.0642036364301 None None 1062662 XMR_20200418 983625802.3686212 139720.98754056767 56.12118072184268 0.00797183926399273 137435740.7541952 19522.31974324445 319625 169139 82357 SYS_20210519 191333979.1830622 4488.735661926706 0.31391828716631015 7.337473606618151e-06 3482218.030180571 81.39278256001487 73195 5351 397899 TRX_20210823 6301988260.494347 127741.14950848812 0.08784537062875375 1.7825348707440062e-06 815329314.1906749 16544.445350759997 1095183 115700 32149 ONT_20191020 381476292.7537402 48005.087713249166 0.5847614451320183 7.355872297963252e-05 73662079.88165486 9266.152160382102 81271 16278 327053 SKY_20200711 9342297.240893688 1006.1123708236076 0.5201049038398344 5.6020518488727574e-05 539825.3581089141 58.14460934968838 None 3820 1118226 MKR_20210221 2336042811.0715165 41809.434658764876 2623.314097193911 0.046658881739207195 320402433.8131638 5698.75307125204 108114 22209 33476 PNT_20210825 36997480.34811433 769.6669000777761 1.1635968803424739 2.4229909500965474e-05 6209673.042901702 129.30579172385654 47844 334 475621 GVT_20200320 2695236.166671883 435.5019851055357 0.608362544294552 9.842743996285625e-05 286723.1952152288 46.38916440151717 20655 5601 160290 FET_20190302 0.0 0.0 0.4398964080415009 0.00011504218050657026 119059415.52718568 31136.546063347385 6122 100 214900 LTC_20210114 9776750028.990845 261579.98836299524 147.5223343027861 0.003947005945306737 6355675929.232986 170048.0866011605 138485 222552 152475 RCN_20191118 23888949.40161038 2808.4667310172995 0.04696989492892483 5.519641232160125e-06 6023895.067110082 707.8946981027002 None 1130 778517 TWT_20211028 361664716.9030536 6179.217353123833 1.0402649011706746 1.7776831143122378e-05 27509871.314799603 470.10942749474043 8505 50147 4876 WTC_20200329 6551491.426847211 1050.5104465209442 0.22525519570311195 3.602891478222037e-05 10092938.028016485 1614.336144294378 54733 19676 966319 BRD_20200907 6724261.0856742645 654.8012503188929 0.09650222040736174 9.397281541597607e-06 356233.8152806449 34.6896625041212 233 None None TNT_20200721 15332101.721594928 1673.4837298935602 0.03574046711847149 3.9008026080930645e-06 2189409.7158360803 238.957568780733 18004 2602 477306 MITH_20200313 2032213.8413162509 423.40564394549796 0.0032546230331054744 6.791680796322901e-07 7846655.452592016 1637.4240153361723 94 2083 1367265 PPT_20191203 19926853.163575474 2725.5474629979967 0.5491346264727529 7.516169841548244e-05 1157660.1347330832 158.45240441917778 None None 666942 ADX_20210805 58594813.14137368 1469.9323232795264 0.46545278027323883 1.170263476276229e-05 11734970.765195781 295.046205838885 92876 3891 14822 TRX_20190105 1393197052.1182725 365652.11418737145 0.021256042416602568 5.578950708732439e-06 150367586.7970132 39466.11219952895 364210 68789 91065 ETC_20201030 628853312.3967483 46685.10774977309 5.400525080742105 0.00040162606094771127 489300236.7842746 36388.26295265473 236919 25911 147921 IDEX_20210707 22879551.93360149 669.8188309446194 0.039455558529440056 1.1547118845464765e-06 1194345.7231863646 34.95388868444244 53045 1977 9238367 XTZ_20201014 1743902395.5281086 152647.64349060415 2.3983923184009703 0.00020989931406374465 121506136.84258036 10633.812734522471 74520 29902 89746 MITH_20210602 31533761.744776413 859.4484947663027 0.0509716079854895 1.3898399354474586e-06 9391294.97750083 256.0719059326817 32015 2723 247942 BAND_20211104 428579904.1806921 6796.58923307179 10.30442686906743 0.00016339267290562719 86239018.46948063 1367.4534174030616 112419 6164 342912 POLS_20211002 148800951.34520075 3089.573723691993 1.8325352692858385 3.804521789989731e-05 27252971.14890021 565.7982376424299 None None 26189 MFT_20200417 4944427.288291086 696.3475904173526 0.0005057029650743891 7.133764755281435e-08 1017393.538213914 143.51994483745736 18297 2580 823194 CHZ_20201015 58043411.719699204 5084.998434484008 0.010860946364928094 9.514792278769337e-07 4169130.437029104 365.23898340500995 44644 None 303879 UNI_20210430 21517770855.962162 401410.1965210526 41.28410891505423 0.0007700083250341519 1436741925.8732455 26797.31434010887 403822 37444 1654 BQX_20200520 4241787.2220819555 435.67409452499834 0.03019435252639194 3.0943397417819637e-06 252547.95340709508 25.88130241409271 11478 23 379386 ONT_20190730 634211576.2179478 66808.41606155169 0.975542996956537 0.00010255976972570576 125359168.43634363 13179.129457079345 81465 16296 245341 FIRO_20210602 86875832.74465844 2367.701892441458 7.28570594588447 0.00019865892958291365 7504003.842250176 204.6112459053573 None 957 213065 MANA_20201231 103574832.16553083 3585.4871840211686 0.07822335658133414 2.7124901392407236e-06 12512593.419101594 433.88941294473113 55606 7717 76875 TRX_20200107 955193949.4867893 123109.26785639576 0.01447064742626509 1.86633278509203e-06 1286051294.0481205 165866.78001949878 493034 71729 62423 LEND_20200317 18502714.827636838 3665.903539613249 0.016340270597901628 3.2493190746801784e-06 905874.311426724 180.13622612587696 44142 5741 109064 DCR_20210104 607024450.1472241 18141.54161679533 47.96000138734926 0.001456966818650357 19799127.891203027 601.473551735691 41378 10063 378546 OXT_20201111 0.0 0.0 0.2323983590514055 1.5213102398210445e-05 7705687.907777519 504.4244704143595 47890 1728 99245 TWT_20210805 162746542.9155272 4091.85084150659 0.46897669492361316 1.179372951610821e-05 31286416.973964144 786.7843824930571 None 42382 3506 BNT_20210104 134978103.68859598 4034.80607887269 1.4238288319838643 4.27111757235858e-05 32861340.252052754 985.755061626589 None 5304 101085 AE_20190703 144334254.47087798 13373.196979619279 0.4544797085766436 4.202247699852532e-05 63332671.00775251 5855.917570035214 24771 6362 357340 ADA_20190916 1450964365.2016687 140816.720991307 0.046636019949772525 4.526045964264175e-06 72942355.66157754 7079.087255335465 154402 75296 108471 CTXC_20210110 1866734.2686410258 46.13131270290787 0.18547867485690642 4.5893515950603175e-06 77845559.76855464 1926.1548216677736 None 20072 682759 MTH_20200701 2676267.7225062274 292.54561448706903 0.007698800678148696 8.417515441562031e-07 64347.04399871262 7.035410567458433 18989 1907 2218636 ALICE_20210422 150380633.3354114 2775.383597690854 8.566789076436857 0.00015838602438582192 37417759.56966832 691.7936378246012 None None 73832 CRV_20210506 912105539.8565481 15932.61863281241 3.099122560137068 5.4059650838548594e-05 276236761.84769034 4818.545444552206 112841 None 25483 REP_20210523 157678666.6655712 4198.626135765788 24.345778663122427 0.0006482730019994147 36794782.23497766 979.7618004929512 149310 11132 147108 OAX_20200329 1638396.5491138326 262.71158401198136 0.031325298257669845 5.010390539185379e-06 108240.94223624883 17.312824557072673 12022 None None CND_20191216 13501642.696992073 1897.3004531286883 0.007473751619043505 1.0502338677807332e-06 220498.01791230432 30.985039106726667 35343 6031 515969 QTUM_20210104 251899624.93567425 7536.177726869723 2.452640230529185 7.450824292324914e-05 293187717.52765286 8906.688150895261 188902 15019 249496 UNI_20210429 22066932316.44179 403138.1037858963 42.77086929696888 0.0007811062232245801 2010272799.5539074 36712.75847138175 None 37239 1654 ZEN_20191024 27508039.35084787 3685.0161958256863 3.5969515074316005 0.0004817889222100289 1389435.4541639227 186.10609805524825 36909 1845 95686 EPS_20210731 156318386.35533231 3745.049399723508 0.563077082047786 1.3479956858564063e-05 21655010.629922237 518.4167823017967 18941 None 26249 HIVE_20210220 118049949.25820933 2113.4289009606705 0.3246513412281343 5.810238675182614e-06 18602152.304651592 332.92006234520244 10858 119 135333 STX_20200730 119956061.38107745 10802.664677499852 0.15645653147680388 1.4096950805395016e-05 2432443.826841053 219.1665674817093 41769 None 98084 XMR_20190803 1436903029.897784 136525.53566424505 83.80517368343773 0.007962337461608385 118867537.85407631 11293.615990819342 320412 159909 104374 TRX_20190904 1054243299.6570797 99219.98050116963 0.01593951610044105 1.5001456278624403e-06 495799859.71673113 46662.14376660313 459388 71284 65746 XLM_20191213 1038254352.7225986 144071.29139762736 0.05207711554315452 7.234659564001295e-06 161302919.22614107 22408.531945547184 278999 105545 52861 SYS_20190401 34889397.16853765 8502.476731127033 0.0633529991871098 1.5438999958453226e-05 1590959.8373057381 387.7137495814365 62539 4617 1033934 FIL_20210513 9266311898.599695 179655.6214129291 128.65718007437877 0.002552529753977614 1072739957.3641653 21282.921465165884 85443 None 28149 BADGER_20210930 144475342.07960522 3477.4560502332024 14.981588256935508 0.0003604030314935574 4269808.720496278 102.71621275214912 37900 None None SCRT_20210703 70301347.33988975 2078.8012789787786 1.010235077108258 2.983446958728904e-05 1577997.539557537 46.6017471275166 85069 None 51837 ADX_20210722 39925184.316650696 1242.3516181210202 0.32308632994761194 1.0004106750533636e-05 20368395.74651263 630.6908912496181 59380 3876 13599 ETC_20190813 652214008.1870157 57302.92202005395 5.789730961074006 0.0005087189615037846 528681779.25683796 46453.01267325571 229442 24879 465281 ONE_20210823 1220090258.4844093 24731.51724468954 0.11667628198753574 2.367564047404302e-06 125647617.00422557 2549.607988819946 201378 27587 31812 CND_20190701 22208299.351150285 2042.6078991737045 0.012764082068897531 1.1764421753777795e-06 694755.960252833 64.0343903168837 36228 6142 575045 ZRX_20210218 1169935408.7463644 22416.80067078851 1.5591274811397382 2.99024225787739e-05 314444077.1646629 6030.706139498555 180481 18112 64913 IOST_20200318 30784338.934895717 5670.495470160223 0.002543705100129961 4.71983227482075e-07 30706300.41774193 5697.538906715076 191123 52253 127057 LIT_20210511 133293614.25536096 2387.3234876659044 7.445224735095819 0.0001332469109781275 33391837.607882436 597.6124793332162 None None 92801 GAS_20191026 17258603.295176227 1993.3274054129784 1.2389159408125514 0.0001430987502785844 1068816.6569216645 123.45173941511625 323225 98482 172955 LINK_20190515 302604133.36907715 37857.33100219425 0.8303956841961554 0.00010388676429963105 45915407.15379968 5744.25321745966 12196 6752 419208 TWT_20210813 169197861.45655367 3805.7085304811494 0.48765928089128363 1.0969002799376942e-05 13960856.37522352 314.0239069820261 1025626 43047 3506 GVT_20190615 14448010.42989656 1662.7968424256223 3.251733242114746 0.00037475209544573585 1793575.6435742334 206.70398852667012 21322 5774 170487 OAX_20200607 2532771.3661171403 261.93358801017035 0.04839899588142413 5.005316633354799e-06 245534.77991537287 25.3926614715 11846 None None UNI_20211120 9610398035.361753 165322.98286167264 21.304314237857245 0.00036523122648348424 208319586.15252754 3571.3338200681733 721056 57444 2749 KEY_20210710 20805451.155049782 612.3641090641576 0.0074374408967780884 2.192859305810739e-07 4146387.3543092352 122.25232067836448 32207 3871 185366 HARD_20211216 69888768.00319941 1432.5463310977732 0.7230214161313572 1.4815758494233074e-05 1953765.9601500025 40.03550098794983 39348 None 47415 STORJ_20210112 47659334.93459539 1344.2699664906131 0.32993277334788707 9.281161962741331e-06 50597117.814316384 1423.3203949927708 83105 8571 92086 UTK_20210902 203143270.1473236 4176.105687742172 0.45130018378273073 9.27591691515464e-06 11993471.70873574 246.51097228014808 79079 4065 190761 MATIC_20200322 30686838.345935334 4980.302404724311 0.01110287195064533 1.8028830447616607e-06 22169117.10271543 3599.8186342677154 32839 1585 190232 PERP_20210421 179593349.69209766 3178.8953793609658 6.1152803711032275 0.00010845786082798385 13398354.870014831 237.62719280749042 17192 None 280871 GAS_20210826 144251429.09079137 2942.9604848943045 10.356774473483695 0.00021134480984941382 38625214.70340222 788.202801729781 None 112923 110676 STMX_20210813 263241565.46102995 5921.000789418958 0.028326343708808346 6.371492466423514e-07 61402902.96454242 1381.1458961202252 69617 4708 91821 QSP_20210124 21190910.112967107 662.031245301163 0.029702956334687357 9.268470468503434e-07 619768.3968666475 19.339169539033364 58501 8168 193675 AST_20190811 4962324.293079119 437.94084873808305 0.028790662929526794 2.5422972481584138e-06 936679.8921164073 82.71149288787849 32080 3586 229078 BTG_20200229 145771638.74642256 16678.396487087903 8.298351936506934 0.0009524006507673266 20638090.413073257 2368.630649844393 75017 None 182910 COTI_20211216 277868383.8414613 5695.644313297126 0.3205709992893791 6.5597563474971656e-06 36361370.46385907 744.0527409925879 207799 9704 60051 DASH_20190920 900260944.6619579 87842.05690789029 99.75344598563876 0.009727029743788465 530711832.5844147 51750.089732963024 318846 30755 76311 XMR_20200905 1455431786.430163 138727.78387783535 82.24720498101587 0.00784385391274305 166264205.23070303 15856.491865577498 322724 178846 87669 HOT_20190923 146871962.59127498 14610.419398654454 0.0008266908956522835 8.226365447569074e-08 6602546.811336533 657.0165855265664 24424 6671 466446 ALGO_20190923 120546130.77154146 11992.176639000876 0.3020980600179388 3.00518851829122e-05 51636223.86778809 5136.629711762376 None 616 199307 RDN_20210105 11512440.299269563 367.97072100487793 0.1665324000518907 5.322854731472964e-06 590766.7287914053 18.88260468572065 26577 4384 1792183 TORN_20210819 50223195.5617208 1114.821016398246 47.32006257011159 0.001050859356661541 4107662.9409109578 91.22084378211682 22835 None 123832 POA_20190626 8767101.758622607 741.4370814009568 0.03985991436674296 3.367517569721503e-06 696084.8456269156 58.80790224730877 17703 None 649823 MBL_20200229 8097481.680698207 926.4697246941669 0.0022806007248247716 2.61744215126388e-07 10827616.94816839 1242.6840301058244 None None 131347 UNI_20210702 9333359969.878733 277598.8914047618 17.96679464680169 0.0005342050958319253 286288256.61330616 8512.183089201759 None 47853 1526 BZRX_20210506 139911524.02621996 2443.9682221067474 0.9943891517990853 1.736395252166319e-05 155735282.90647465 2719.4384144711453 None None 145743 DNT_20210707 97677582.88762198 2859.727158341753 0.13012754820371988 3.8083309936067014e-06 4354110.0182895465 127.42799169831362 69896 10245 207406 BCH_20210821 13019442206.542154 264977.86383774976 692.7884666262064 0.01408544057833791 3265497202.3662357 66392.51231570428 None 607844 398111 MITH_20191216 5382590.969032354 756.349385788091 0.00952327007610099 1.3393814974417967e-06 1457982.4888582807 205.0550654938932 88 2085 874298 CRV_20211225 2022463444.03718 39776.20798596697 5.176936268331683 0.00010182776978036419 558656623.3474798 10988.498810868134 None None 9223 ONE_20211125 3340672908.105435 58395.80101998068 0.3094501461694465 5.410067198104659e-06 306214879.29890275 5353.50554709203 277600 42871 12207 EGLD_20210823 2860868164.3095064 57990.47230185549 145.9919263711892 0.002962429297538364 81034801.59697938 1644.3366173601978 None 10116 47013 BETA_20211216 163781549.04114956 3357.134178141885 0.6409640354010675 1.3134283632707764e-05 11885826.073271038 243.55783200486727 53136 None 51622 POA_20200315 1569169.746085818 303.71382256582024 0.007153158891168342 1.3806251559334795e-06 68476.59949896627 13.216610633070003 17405 None 535987 NKN_20210508 425681073.3584331 7428.944231307541 0.6571739256487897 1.1467038183186224e-05 69929637.90337433 1220.2033535988587 25974 2821 131546 FUN_20190507 33608979.663236566 5877.414940256694 0.0055889505170547546 9.773751419542397e-07 2042609.1330871382 357.2039840603422 None 17714 471824 ONG_20210203 0.0 0.0 0.21170382394186474 5.9610160531120174e-06 4323668.055293322 121.74298133135598 96909 16695 259663 BNB_20190706 4588827809.904668 417515.35345521674 32.69095244848287 0.0029750311676858417 246047340.03585237 22391.47074366835 1002040 53993 760 MANA_20201015 98148561.30699313 8598.482856298648 0.07396623834623438 6.479853319034623e-06 9188524.54219285 804.9657868641717 52977 7408 79376 EVX_20190511 12280684.558466373 1927.3712720111707 0.6368205590758347 9.994472581275505e-05 3056705.2113553714 479.7294306620398 17208 2388 712033 CND_20211207 25145021.334547088 497.8504745107592 0.013033470801730541 2.5805186389914627e-07 627724.7558166432 12.428427217761008 37441 6353 176268 BNB_20210727 47090950811.835976 1257120.1371882348 302.9585615137897 0.008117234645637185 2462514230.174129 65978.67947572161 4598076 568275 142 EVX_20191102 7897687.254661526 853.7805288260339 0.36213805733779136 3.916580390457994e-05 3735734.09778127 404.0255536492198 18143 2896 520642 RLC_20210124 93330668.28026746 2917.905165705513 1.3251240088156169 4.1348579799976325e-05 8551255.77152332 266.8295791990582 34121 3922 538469 XVG_20190524 182333281.70875332 23145.385842582615 0.01136370002535326 1.4447855872692384e-06 4296302.7765677385 546.2337369238077 304493 53091 436140 QTUM_20211120 1538272889.6313388 26462.15709623569 14.907795501491588 0.0002555722927471413 311697215.1481756 5343.591673923067 265405 17482 143970 LINK_20200711 2345426949.8176913 252625.5781205707 6.147214258264654 0.0006617300356511862 590142034.398459 63527.102367828855 62799 17133 82512 AMB_20190528 6818344.237843186 773.2544307581593 0.04706373732247759 5.34787465471956e-06 1036877.7313708399 117.82090533198904 19604 5686 582766 ANKR_20200725 33484240.524380546 3509.5148363340368 0.006484521678766098 6.798870480696785e-07 18428875.30951274 1932.2248045615252 21919 None 5287 SAND_20210828 631087571.7342278 12867.596616481256 0.7101004097564186 1.447573044520831e-05 429988724.86624604 8765.522157321011 166907 None 25914 ETC_20201130 740006467.7834699 40798.68486833682 6.385066725242568 0.0003514121014735124 557149566.0380663 30663.59495703693 240253 26078 183443 COMP_20210727 24860.9779400414 0.6696130711055711 2.723388116864897e-07 7.26e-12 27.11606766571202 0.0007228593311176415 2550 None 3559162 TRB_20210107 38544819.2654092 1049.8425156496369 23.413897275088697 0.0006341034474402037 52538712.10409449 1422.871984012686 11980 None 425795 QLC_20210620 7669853.698768493 215.14852973612662 0.031957723744868716 8.964522072338609e-07 683948.0327768888 19.185556784673864 33921 5659 940522 XEM_20190324 456942472.48363215 114096.78542858263 0.05076937725319413 1.2678930374062128e-05 18854636.363606315 4708.677447237829 216096 18476 129022 WABI_20200914 7943190.493523648 769.3164823585237 0.13433201468126288 1.3014415715358863e-05 1466291.846907715 142.0579576728413 41705 7633 1644461 REN_20201115 271254569.40087616 16856.006777835835 0.30741966509862173 1.911093518813707e-05 34518957.58050844 2145.892524056709 None 974 87270 AMB_20190531 6420976.793286299 772.7164535426746 0.04436682798597597 5.344174202821531e-06 1020845.8330834687 122.96524709738088 19558 5689 612232 GTO_20210117 24805044.378680374 683.5287662388308 0.03608203612606492 9.970311298254174e-07 372348478.46255344 10288.860165020356 16568 None 744307 UTK_20201130 54681162.15770248 3014.729735793752 0.12197046622968127 6.7128347595847635e-06 2967010.2395151258 163.2940340685053 53137 3080 120780 WTC_20211111 28311889.479799565 436.7739821881209 0.9729053118447477 1.4981099121146528e-05 9279489.25615995 142.88846678877033 66556 20354 284012 MATIC_20210511 5386111669.381659 96467.43059405769 0.8806570303630454 1.5761086213274208e-05 1564514780.1801527 28000.06300091176 261923 21316 18351 VIB_20210519 13912934.163035246 326.4003811884513 0.07622114902667092 1.7816640179165365e-06 1154814.1862610858 26.993700689568385 32329 1261 3689033 STEEM_20190618 129469662.82703337 13889.211288936289 0.4152991476410171 4.457272778690725e-05 2102185.529377808 225.62084196600992 5716 3746 341474 WPR_20190813 3744707.064709911 328.995837180247 0.006145785915293577 5.400666404332132e-07 1020529.0609282862 89.67993825305149 34639 None 1323626 RLC_20200901 114637823.14991063 9808.057016094168 1.6300661322202683 0.00013964632382614488 3539215.5686113285 303.20146748380233 33029 3834 240774 ALPHA_20210430 402807561.23469055 7516.334757191575 1.6084945541178348 3.001243167202392e-05 132324602.77902505 2469.0062451664735 57776 None 28389 CELR_20210809 204114331.51057988 4639.770170695889 0.036093637645894974 8.206808733276117e-07 37133801.71354425 844.3316553246292 58096 None 199421 MTL_20190321 15735489.00824936 3893.5305393656245 0.3642018334305712 9.009758024815233e-05 2278640.80760204 563.6984885161934 32847 None 615522 CTXC_20200518 912316.8891108554 94.34471988950614 0.08912374470543145 9.20903159140868e-06 6199577.417631022 640.5936429292401 16441 20059 554748 ATA_20210804 76086233.87681212 1980.2189037379646 0.43924982241624455 1.1462602609182369e-05 40854987.448589 1066.1461014377637 66942 None 92285 RSR_20210112 362692400.8206154 10238.892554965085 0.03925724443159785 1.1043842220271295e-06 194262408.1606896 5464.987204577661 53331 None 170522 GO_20211002 35406270.87559364 735.278018784728 0.03221227457118146 6.688295893294664e-07 1141321.5727135772 23.69747709321369 23266 1124 240788 ICX_20190329 154032850.30349404 38258.9306862549 0.3253734371830801 8.081620240705255e-05 8872757.60939804 2203.81411917886 112665 23554 270821 BCH_20210825 12092814063.130999 251646.47498598363 641.8178072161137 0.013364411375177658 4331155285.765974 90186.56122961243 None 610287 398111 ENJ_20210418 2789804789.9660687 46278.73500107947 2.982229694415244 4.948123032939447e-05 376696560.22257507 6250.158831014747 155151 28910 22644 ETH_20190704 32463482348.950417 2709589.0256751836 304.1705424011823 0.025344818321929925 13852646285.058842 1154263.0019369333 445110 441426 35893 POA_20210207 9363629.140871443 238.78756081094394 0.033435553196397017 8.499440490834519e-07 675160.2069182092 17.1628205664 None None 427710 LTC_20190915 4466785782.717142 431509.22624044784 70.59657070159929 0.006822034133629521 2410066743.857679 232894.5645308799 451582 208373 124361 MANA_20211221 4297679225.544778 91093.67530663594 3.214160652588346 6.819829942153531e-05 725709959.0464998 15398.167804831892 410681 73203 4163 QTUM_20200807 283393045.84422374 24088.156131377767 2.7609621377887517 0.00023449761999135439 263077712.95186973 22344.057788996128 181645 15076 86277 DUSK_20190923 11736151.677256873 1168.3452350718828 0.08550624793430027 8.51222956980945e-06 1331627.0064499732 132.56475467114137 None 13324 178526 LTC_20210206 10246105819.517834 270177.1770676868 154.6357221656558 0.004068135016772835 6320811443.973973 166287.02611226257 141169 242668 113602 SNT_20190623 106305515.89571594 9902.120770494592 0.030063904702788056 2.8027661756333e-06 38431307.33375086 3582.8336121094662 111593 5744 303277 POWR_20201229 42757270.07997702 1576.913381235997 0.09942181413342138 3.662922383251409e-06 2141504.9956243355 78.8978419946193 81029 12575 371056 XMR_20190804 1504124743.8988187 139400.08787871595 87.77928377666787 0.008133686869111426 106718794.94713809 9888.63458213423 320408 159930 104374 UNFI_20210708 28558042.16837438 840.4913153362035 6.864718694614721 0.00020207557802420691 22018454.954390664 648.153582112395 20268 None 196692 WABI_20210219 16864489.712799545 326.29961796115236 0.28743872056440106 5.5590961826862786e-06 5840319.0824558735 112.95240757125491 41048 7436 943415 BCD_20211104 407373237.45511216 6460.285544237019 2.167799046509131 3.4380050304002154e-05 9734091.303664211 154.37710853440763 None None 744535 BRD_20190419 18894292.74674207 3580.0523197767093 0.3151844384074831 5.971860016449788e-05 159289.72760751756 30.1809302558488 160 None None DASH_20191203 469394748.39416105 64227.67879230085 51.57601120518734 0.0070593628826103195 263009616.84580854 35998.91274151352 315873 32481 75646 FTM_20201101 42132781.028189935 3053.380055318251 0.016697453234676904 1.2113923192168213e-06 8934381.883433228 648.185171620297 None 2801 103373 GRS_20190801 21464815.1822889 2134.4005129941006 0.2937368244471935 2.9208359049960982e-05 3462353.121748569 344.2866018862611 38648 107010 None POA_20200511 1967284.3652185295 224.67624041017615 0.008935393661807017 1.0204781220312871e-06 214421.18189160668 24.4882467748181 17220 None 548176 BTS_20210513 276196880.5502862 5354.916038933756 0.10113081667831234 1.963435386042983e-06 51905201.05882729 1007.7295113986013 5662 7139 108198 BAKE_20210725 349114315.3370252 10218.15673203181 1.9336883963825044 5.659673704893238e-05 120988030.82513304 3541.174358541098 None None 8420 ETH_20190608 26701545587.49556 3318831.249760816 250.63689323005363 0.03117655894610021 8150833842.114468 1013876.8816660366 442902 438370 37291 LTC_20200530 2885584679.1775365 305955.00243944925 44.47093855968127 0.00471853383500945 2329123256.9168653 247128.73731955717 132639 213796 149425 AUTO_20210703 25947666.256383725 766.3680825338206 836.3892585359728 0.02470287793833486 1636397.903617503 48.33124918697366 None None 10455 STORJ_20190614 42262853.673767634 5136.815628676276 0.2941605986440995 3.573820037411152e-05 7509757.375742096 912.3764878516181 83704 7736 192975 SNX_20200914 639623936.5663615 61964.59593328862 5.379018169862908 0.0005208586823717863 68649258.39691289 6647.414294815004 35051 2004 31979 NEO_20200625 740971986.920334 79641.58353863319 10.482619885217517 0.0011277799379801224 335900694.6416373 36138.10943432536 319604 99685 217061 CELR_20190622 49539830.97804757 4894.976842765272 0.01749451511675773 1.7284050705403238e-06 59831518.663084015 5911.1727044292065 15664 None 371624 PERL_20210112 0.0 0.0 0.026177167781487792 7.364156983968769e-07 1910939.4089962523 53.75851930266036 13501 504 591773 RVN_20190816 145610636.4983143 14137.600672395289 0.034675802013680916 3.3648747932207746e-06 15802895.554192767 1533.4833463757934 27334 6888 259754 GRS_20210429 107782244.63727555 1968.4229291984598 1.3918397403918306 2.541911488276243e-05 3338974.579850471 60.97956249758244 41492 106845 7053372 SUSHI_20210823 2651533342.943041 53747.206110246196 13.737172199237174 0.0002787510405532998 303681175.3046468 6162.217549935062 None None 5258 GALA_20211221 3271519491.3210664 69343.17771563216 0.4322350288945087 9.171194942382687e-06 427870479.73204803 9078.587614126767 None None 3466 GVT_20201101 4781851.813943016 346.5427773783072 1.0777877582730089 7.810917415843288e-05 231075.33920946324 16.7464361842 20613 5478 262282 LRC_20200310 48621200.78631851 6141.18142984189 0.04272799674734038 5.391424085472215e-06 4699725.633694403 593.0119805625654 34349 6823 607711 OST_20190201 8983252.215172166 2618.047651213407 0.018663412140520277 5.4391996515017654e-06 372724.9083544847 108.62564553381961 17296 731 739768 BTS_20210127 63555900.83805534 1950.3340831454184 0.02340846316300416 7.18674017997598e-07 11815036.772238662 362.7388902366714 13166 6857 133221 IOST_20190507 147535062.53955355 25789.947788087527 0.01088839354322518 1.9034203998517112e-06 22637983.96942509 3957.388234348888 197224 49438 105349 HC_20200612 53928116.40480586 5812.181223746512 1.2130170712991954 0.00013043732217651207 30025989.76360562 3228.734197672357 12672 846 1027994 ENJ_20210731 1344528020.7631938 32226.28155201592 1.4391523548079366 3.445303009875564e-05 194160845.17598996 4648.173225371236 249202 34291 37956 NEO_20210624 2332210977.4857664 69180.39237156526 33.386769320538576 0.0009910337383194174 480573472.76915914 14265.067718384491 404491 112051 92050 WNXM_20210602 147744843.447487 4026.6174651498827 72.57670473398885 0.0019785419890933423 28791483.575197227 784.8959165425061 29184 None 116861 RVN_20210325 1613668177.1953573 30527.564636644907 0.19005251332529288 3.607302931187048e-06 186713373.34100485 3543.924187900715 53518 27888 51823 GVT_20190623 15414844.809878089 1435.8582777170448 3.479334397903289 0.0003243677380089765 2565401.498975558 239.16456027020524 21401 5769 171234 TOMO_20210318 194082421.12466577 3297.4650710317674 2.411805332719581 4.0918088215507026e-05 22984575.741917066 389.9505839234808 None 1964 86466 ASR_20211021 16104448.240494011 242.96523515736084 7.554593553105788 0.00011398764319776496 2177470.445667057 32.85480846713913 None None 71825 CMT_20200801 9871769.10423924 871.0148827905552 0.01234041175885448 1.088681445966485e-06 3063126.374310722 270.2315705122167 283135 1630 939682 COS_20200530 17184382.38351229 1822.3402786111753 0.008777897749750503 9.314356420915781e-07 12776469.114360884 1355.7299312966136 12051 None 168356 NAS_20200721 21967312.834359746 2397.7104564865135 0.4829516279364609 5.2710543915864986e-05 10890333.129481962 1188.5980903153322 23522 4927 784060 CTXC_20210201 1445666.1486915527 43.73789061233171 0.14487911594169053 4.38182842994397e-06 28901502.137717955 874.1178665537158 17212 20084 607104 GO_20190703 13024399.138489073 1206.7672768236832 0.017725631186724346 1.6389619047268222e-06 988130.9926877432 91.36538139798624 9983 677 942776 COMP_20210708 25147.95125007537 0.7316491250484922 2.716299507971702e-07 7.9326e-12 25.09856569788504 0.0007329710205768554 2534 None 3613749 CTSI_20210304 58541259.8211248 1151.418533016634 0.2092117186136987 4.1290433722697995e-06 17231703.054205474 340.0882596842718 None 617 224647 QNT_20211120 3188203416.939263 54845.10599027811 238.56808340495238 0.004089899948385692 54365885.92889028 932.023390895444 62658 10199 82634 JASMY_20211221 308202733.6456583 6534.455590362437 0.06503360864793542 1.3798879379172356e-06 50129767.72827412 1063.6571344720257 None None 74967 RCN_20190622 17958187.499668255 1773.4528404542662 0.03582946362411614 3.5295620012270368e-06 4631484.945433244 456.24778099254934 None 1119 1997723 QSP_20190819 0.0 0.0 0.010494380766458162 1.0171300255191939e-06 50057.7292682278 4.851664960619611 56589 8555 585298 WAVES_20190903 114282998.4650445 11059.52638998523 1.143287747407781 0.00011056283124634465 9514993.700348059 920.1573664957614 142684 56911 33279 IOST_20200315 31055997.400936857 6010.908448726149 0.002587385164069923 5.004480004264728e-07 35231967.784518816 6814.512224039272 191305 52255 110553 EVX_20200502 3763868.879301103 424.7621170438345 0.17208549977835316 1.948533973336537e-05 635412.7617694724 71.94815106410013 16694 2853 1393959 BCD_20200807 157044854.24932882 13348.118034833517 0.8352880816045961 7.094377154345777e-05 14868724.998882016 1262.8498510799068 None None 3244311 TNB_20200329 3156149.4140675846 505.5047679701214 0.001015020802155612 1.6236055341758364e-07 296395.25142971106 47.41074956323314 15077 1446 1775001 CHZ_20210217 183028602.5875356 3721.6350937730153 0.034568589089966066 7.024767698180112e-07 65576035.66752909 1332.5866899950397 71175 None 95433 ALGO_20200317 88249526.60321064 17484.564811896307 0.12785051419508317 2.541417681595272e-05 73680963.95032904 14646.33175386567 16066 822 354014 DOGE_20200309 269347499.5804046 33341.29080332486 0.002173767373930563 2.700220628791807e-07 79686704.90746602 9898.560766532986 138864 149906 115347 CFX_20210523 316135712.43296814 8412.123529589391 0.378626872397576 1.0075598575656297e-05 5758617.96191008 153.24195709448918 33838 None 127715 SNGLS_20190523 10366920.422080893 1352.7356358224238 0.017554069577423805 2.2905563565926425e-06 4624233.229137642 603.3966523062293 0 2179 None LRC_20190426 46058340.60018822 8868.378837375276 0.058549880071659934 1.1252828244332454e-05 12665111.138068069 2434.135136701082 33888 2462 792629 COTI_20200330 4975904.863487995 841.5015573729216 0.015755941790522362 2.6692837882210553e-06 4155750.725180442 704.0441114909884 None 911 294374 HNT_20211111 4869320668.178433 75110.32437520819 49.5336574961683 0.0007629988603414776 92423936.78824218 1423.665483275823 111569 66234 2469 ZRX_20190405 201101306.05035108 41034.61806780637 0.3421743468792069 6.990599461890925e-05 35855195.66603278 7325.192955433502 148906 15779 212447 ENJ_20191030 56005928.86792877 5951.618950898165 0.06329958947185609 6.727678705386003e-06 1046208.3973833601 111.1943065539389 None 14135 31815 BQX_20210429 964699514.4862844 17634.008609307155 4.307683180034909 7.867104987318801e-05 11204137.310513932 204.62072262573986 68101 4628 20896 ENG_20200430 13612249.897355024 1559.1574678950035 0.16465783107143478 1.8780800880858732e-05 1675454.0842097083 191.1015670242416 60689 3586 458891 VIBE_20190507 8138190.079423629 1421.040492909691 0.04060274925069071 7.097585924345199e-06 354238.1212127657 61.9227896973859 20739 None 1402427 STX_20201106 135313097.54496068 8701.145116369462 0.15301657849604305 9.82095126715692e-06 678031.7844261923 43.51761866512574 43635 None 111210 MTL_20190807 15352295.11876234 1342.9600580991603 0.3228496039379381 2.8193309847851098e-05 922466.354990623 80.555712174477 33304 None 712205 LINK_20190807 892135980.726144 77964.7180353047 2.4667718163851995 0.00021499328325133327 104674276.61193237 9122.962347500497 30180 10197 107221 FTT_20210115 860628481.3607639 22035.41446671346 9.625141589229411 0.00024535606415933666 12570417.72834696 320.43458167069764 47546 None 5141 CTSI_20210220 59050716.74727224 1057.175307404452 0.21241287763869196 3.7975734897972343e-06 14362971.234644717 256.78499063595154 None 528 258951 NXS_20200317 5858612.41857959 1159.8289802153975 0.09809423200254178 1.9499211031202554e-05 70848.30438737918 14.083254542597203 23651 3533 599319 NULS_20190123 16044692.259640701 4491.388372879034 0.4011173064923141 0.00011228470932233885 6018473.899553105 1684.750524191986 19630 None 403917 NAV_20200224 8412395.891529463 845.559624683776 0.1237672267971364 1.2440281126583012e-05 124549.98638674594 12.518959057738666 49864 14016 1012653 COMP_20210513 322100.1001138803 6.24488947451365 3.5997293706373043e-06 7.106680734148237e-11 75.44530777158654 0.001489461178931055 2458 None 1890272 VIB_20201106 2097389.42297272 134.95976257087383 0.011499806684881557 7.397707975788174e-07 651149.9189315897 41.88780803634576 30468 1097 3115290 FTT_20201130 392205772.8722715 21621.351265359295 4.288569460008071 0.00023602810606482885 5443397.762846255 299.58588207632994 32142 None 5253 WPR_20200404 4039613.638285443 600.7136335448467 0.006646461613489723 9.877541079417754e-07 141466.8556113574 21.023888482876043 33426 None 1058111 ONT_20191024 358543451.6707354 48030.99230237143 0.548648006355449 7.348793307570033e-05 87227158.97733803 11683.526682054857 81331 16270 327053 RDN_20200801 20388107.531368107 1798.6719020313456 0.3064154085163637 2.7032223602316162e-05 2161648.427728683 190.70243213580542 25824 4352 903633 BRD_20191216 15038694.286450518 2113.2029634153223 0.24951109565632204 3.507851383733692e-05 911963.4095442655 128.21201797336948 178 None None POA_20190729 4489181.759694113 470.8198093000719 0.02030057101680081 2.129510529924201e-06 192875.84245714216 20.232491841759686 17770 None 582366 RSR_20210217 519531818.7130402 10563.96553063037 0.05560135759148468 1.1299784873039349e-06 265915746.6114379 5404.167921833391 57673 None 119341 CTSI_20210217 62023896.222915396 1261.1706890202597 0.22526574827558424 4.577680471350269e-06 24986406.74608794 507.754894325311 24194 511 258951 XVG_20190723 94270242.09216495 9109.055536157855 0.005951184309276368 5.754354683487846e-07 1127071.9369171446 108.97951301420034 304114 52965 416991 FTT_20210421 4627021021.501135 81896.2812026427 52.34214231074074 0.0009283166824210058 240144207.11069325 4259.089594081744 None None 2918 POA_20210821 12586111.301107055 255.90659005243376 0.04274664515609246 8.7e-07 239411.605247483 4.87261856 19996 None 244986 WPR_20191022 4838271.306107377 589.6074853563007 0.007884761435733313 9.600722031736934e-07 299112.4636681271 36.42083077988043 34144 None 763120 ADX_20201031 20874772.245953325 1537.0055066852028 0.20431215926156643 1.5085271097231708e-05 949654.9918976706 70.11723165861817 None 3745 13118 QSP_20190318 0.0 0.0 0.02104034743744023 5.283547378034626e-06 1710484.7984903846 429.52843336371495 56705 8552 1062367 TWT_20210219 266140761.91830444 5149.071959101336 0.7681692302704215 1.485647663358766e-05 46129347.11637714 892.146600711741 None 11347 9818 MITH_20201018 3207471.1445231447 282.27641925756876 0.005178413297668028 4.5569900069869753e-07 552421.9914481677 48.612989152541886 None 2106 407878 CND_20211221 22381380.036188982 474.39607726250944 0.011588517512916462 2.458696328021279e-07 137684.73369809327 2.9212101443586085 38036 6362 138944 MIR_20210430 568710072.0758766 10612.053230595362 9.505076903300463 0.00017735246312605146 17586884.5284302 328.14855908714424 37952 None 17155 RLC_20191118 57581961.93908244 6774.822104069301 0.818969894020945 9.62407942742079e-05 3042164.458452267 357.4982742732225 25650 3437 588041 CND_20190513 25828022.911817566 3715.481577255642 0.014822955707575728 2.1301828735023435e-06 437852.26968846517 62.92303805089359 36662 6178 553989 BQX_20201030 35477766.83476236 2633.815127870781 0.15970532310410024 1.1876862033051989e-05 949683.7664504009 70.62546726641322 15802 71 171918 BNT_20210703 712514328.5808717 21080.390945668096 3.1955334075836763 9.433798042500782e-05 41914085.406418204 1237.380325681745 123828 7541 36831 AMB_20210711 3970291.480699838 117.74374495093767 0.027446254478454696 8.142950108503007e-07 255640.85314546115 7.584534765910392 602 60 581251 XZC_20190207 30873606.913702466 9065.182727033674 4.582395474738216 0.00134549398203284 1000216.4120725187 293.68594888701426 58814 3928 286073 VIB_20191220 3443917.463569131 482.18498856595085 0.018804334227069692 2.6315806068138188e-06 468118.94224104495 65.51110585507284 31818 1115 None ZEC_20200309 396735944.4605472 49272.95732746329 42.625744720082125 0.005298696227015414 265293005.44858903 32977.88827515199 201 15570 157694 DOGE_20210809 31238430538.07484 710285.3612840804 0.238877348719468 5.431485545696275e-06 5671545397.4692 128957.04432943437 2016584 2129357 15471 TRB_20210509 197367947.75665957 3365.551344078862 122.85819986565237 0.0020914704837493654 194639450.16674605 3313.4350449714143 20064 None 320975 IDEX_20210218 48094135.71170984 922.540672963067 0.08355094839519081 1.6020398552125387e-06 5478726.601048046 105.05133142447139 49763 1933 6676020 THETA_20200113 94554026.25996882 11598.74247315994 0.09469460968450143 1.1595121005308783e-05 1480588.2125297748 181.29436871343248 None 4018 523233 CELR_20190523 32647646.981585123 4258.160260814083 0.01376513067620245 1.7961537312267592e-06 46716615.010610394 6095.853670801561 13926 None 371735 AST_20190622 10257789.986945499 1011.8278749672364 0.05999977019602162 5.927795445940744e-06 7114512.559049812 702.892277917759 31907 3598 344733 DIA_20210508 192258860.588635 3355.1741170821715 4.6467286278905755 8.108084104268342e-05 70641536.3962725 1232.6252816182284 None 369 348922 RSR_20201231 181387478.7568591 6281.859796956257 0.01936556053777188 6.713064623229238e-07 58465561.39347369 2026.7065913338276 49423 None 172570 CRV_20210723 542201380.3402393 16748.294343337337 1.5464237411922148 4.77665123840714e-05 110448773.48033273 3411.582844807123 142860 None 13850 ETC_20200229 871603082.8557135 99724.07472569816 7.463801867858258 0.0008566194601694395 1719430494.6694043 197338.78902726367 230936 25296 366297 LUNA_20210821 12367032980.386003 251709.94290782168 30.44913696496518 0.0006195367082584065 1193188612.1195815 24277.34309627673 107316 5569 18941 REP_20200322 94434844.32375276 15324.977910819138 8.584985847613888 0.0013931798100744674 30093333.35488938 4883.5752547600505 130634 10106 262137 FXS_20210428 61401996.769751094 1114.5705851547682 5.8325616930286905 0.0001058434011719766 8368855.190046084 151.86947757259992 None None 111454 VIB_20200308 3336091.1342782527 375.3217294121972 0.0182866803304331 2.055860145706465e-06 756594.7108869292 85.05933742255688 31546 1108 None DGD_20190818 38443873.53722438 3763.3151512817917 19.28280522020292 0.0018864991743575157 1548468.3121517797 151.49166104382647 17215 3363 558523 RDN_20190714 13857708.87296585 1217.5540713470036 0.2752526779574102 2.4170351727741825e-05 163989.72023397227 14.400184031642342 25690 4408 772412 POLY_20201228 60250749.20502517 2269.358758845064 0.08004337863737719 3.040627437558162e-06 28729817.24227959 1091.366607332523 35593 5011 311827 ICP_20210610 10395852555.205402 276965.7714840758 81.6851770108435 0.002180966916556481 312732596.64657444 8349.85577523373 None 19636 26403 KNC_20190903 26923240.36549054 2605.4469284609545 0.16105520469093565 1.557519267863287e-05 9095295.487050151 879.580265361514 97749 6698 205924 DIA_20210819 92486433.22374102 2052.952193430814 1.9041795423451107 4.228046124958326e-05 19111467.445019275 424.35161221019007 None 403 452698 ETC_20211125 6336447337.835819 110762.64428083878 48.26255555573335 0.0008438459687719278 1199535283.369531 20973.257665607052 576486 62160 193595 DASH_20190915 825651531.1885209 79762.16480355305 91.29469051414534 0.008819429267471245 338920253.328272 32741.040959868278 319065 30599 81581 AXS_20210624 204145789.07687917 6055.153191431641 3.7197543802925774 0.00011027638838392712 30255805.274212923 896.968076968873 106455 None 8042 SYS_20190629 25783704.24675208 2082.6370897293446 0.04640095125489415 3.7479619358548532e-06 571283.2998291592 46.14448636165418 61471 4600 932870 MTL_20210212 49437063.17541504 1036.775640824819 0.7586730930715598 1.5889715231771385e-05 30420105.391435932 637.1213325009776 43238 3391 419249 PERL_20210527 0.0 0.0 0.06645837569545168 1.6953324884868165e-06 6275116.426680512 160.07626782724466 19406 657 309210 TFUEL_20210703 1984539920.8151987 58713.79987873189 0.36977939005380245 1.092040082209919e-05 54654616.54133896 1614.0713502791841 180604 20916 18384 RIF_20210828 189858901.23611692 3870.616015751146 0.2487711154476599 5.0722616234104145e-06 4300699.610859596 87.68812870708392 44664 3398 841825 XEM_20210325 2976058756.595064 56487.258643485286 0.33067319521397076 6.276362072195739e-06 196611922.1577433 3731.804177154015 276480 20535 26657 OST_20200117 7404040.724775832 850.3876929545551 0.010705214912350379 1.229430945114122e-06 154279.5542211968 17.718099049008924 17845 754 484111 RAD_20211111 254879583.51651672 3930.336093985387 12.189902958744915 0.0001877088643471866 144997596.45610404 2232.7769348091074 22632 None 204559 BTS_20210324 202771278.64623314 3721.096135269301 0.07482535271289618 1.37264134667387e-06 60748124.68333263 1114.400195254547 3305 7022 119116 EPS_20210509 285095130.3775955 4860.833194338261 2.4128524087441385 4.107507354047401e-05 56837173.25218068 967.5648053339123 14607 None 33734 NULS_20210131 30746663.78605158 898.7901993076346 0.3114858040292727 9.115928371888327e-06 31397030.898954686 918.8639773064516 37996 5089 775793 COS_20210708 46995029.3797108 1383.0573464321315 0.015596290485647141 4.590309278687312e-07 31326194.02064081 921.9943627700386 26850 None 334513 RLC_20190812 17996165.384058345 1557.541704817586 0.2569649353593231 2.2239938062163078e-05 88621.01865290257 7.670019114048914 24880 3310 861371 XEM_20190329 465265662.56644726 115563.43528418602 0.05170255330567212 1.2841843119038392e-05 30611077.8943849 7603.157579090565 215850 18474 129022 SNT_20190805 73768678.97892155 6736.604291702828 0.02080966091637206 1.9004353663066499e-06 25286030.686775163 2309.238347697235 111622 5723 278039 RLC_20190414 33417887.71000849 6587.467509462523 0.47859168461026014 9.432070450600561e-05 224882.34962155248 44.319745472685895 24750 3316 889327 ELF_20210408 169799930.3166942 3014.5464160426804 0.3675110014617662 6.540153243085331e-06 40336533.289834514 717.8209848441113 86749 33353 212649 HC_20200626 51821845.310881875 5600.454028878085 1.1602093539908607 0.000125385329525032 22446527.184444044 2425.82530302223 12693 845 1025848 MBL_20200730 7435930.508782856 669.6694247595625 0.002135687151190223 1.9241890812987268e-07 11649430.64393594 1049.578222911348 None None 152748 POA_20190312 6849918.00392838 1771.6029433494139 0.03236736979243088 8.373174564003092e-06 548103.9001890044 141.79000842282485 16660 None 755314 CND_20211021 34443464.6434276 519.6143378257312 0.017853152111816956 2.693327720866776e-07 184963.89032656452 2.7903664857376196 36773 6323 235338 ELF_20211204 230908010.83363673 4300.585975861118 0.501815218788844 9.337849702306436e-06 38898804.80207372 723.8345495335849 93805 33544 102632 ZEN_20200523 62739811.918870546 6853.827417520034 6.869655013048071 0.0007504384633873985 11015848.16028168 1203.3670032351067 62036 5749 47922 HIVE_20200530 95791555.88003954 10180.146043828441 0.2684421905194944 2.8583888519758908e-05 4940537.497275102 526.0714523917013 6998 80 122787 QLC_20190314 7700618.439081375 1991.677923304259 0.03208591016283906 8.298658013767745e-06 356899.92851872434 92.30813266270704 23545 5843 940522 REP_20211202 150896084.8923491 2639.520178598959 21.885849491845534 0.00038273595442835405 17369941.59506798 303.76253739797176 158193 12070 164632 ADA_20190629 2763836871.007907 223310.87625341918 0.08904612991804452 7.192557403288482e-06 418527931.38976073 33805.918058101095 153047 74222 101159 BNT_20210702 712118824.031547 21197.063129790375 3.185024302048701 9.469811102735145e-05 51034407.94471858 1517.370535180993 123748 7541 36831 PNT_20210422 67504592.59251969 1245.8534636895608 1.6983754080110158 3.136955413989156e-05 21349121.133931432 394.3253111714989 32704 240 387057 MKR_20210916 2755921059.0820704 57185.7441619715 3059.0366463285 0.06346800543753736 111929505.74945332 2322.2809337879057 180100 30082 43242 LEND_20200423 34499369.89412577 4850.476139577907 0.029304504010352776 4.1191293607509505e-06 1247076.669654335 175.2928533875174 None 5721 90147 BLZ_20190131 7623655.569104173 2204.405064058874 0.03764072792787862 1.0883940192070884e-05 394517.448046526 114.07601674160342 34812 None 959454 VITE_20201106 9045055.73640895 581.6313718041506 0.016594556843934984 1.0684563265413618e-06 708034.7963336584 45.58749381913208 None None 740345 IDEX_20210617 29572197.40082204 773.4266443380643 0.050914072394763206 1.3309576588066337e-06 1405090.3799283402 36.73082341520768 52508 1982 6709853 LTO_20201014 16098692.195597535 1409.1542240208676 0.06613687291482087 5.790225783909537e-06 2167266.4791901074 189.7422979851419 18165 556 1676975 NAS_20211202 20077012.340776112 351.1902578066285 0.4412530184785959 7.718467204541286e-06 2846295.3350326754 49.78784569822546 26561 5233 607302 AMB_20210401 13938030.721583638 237.08915061176134 0.0969172076999362 1.6493281574186331e-06 4727419.866310281 80.4507979799227 24437 5593 316316 VIA_20200217 5472629.714141709 548.9852016035794 0.23636578047304313 2.3759088743076453e-05 794660.4946118542 79.87792976764388 39685 2185 2490082 AST_20190621 9708008.487915074 1014.8913361296501 0.05649984542792109 5.907906979731463e-06 18807420.898129985 1966.5981801058158 31898 3598 344733 REQ_20200224 12474760.564810956 1253.8635561708056 0.016168594713826676 1.6248728411088407e-06 134037.65925779275 13.4701967653095 39858 28362 818245 CMT_20190312 27832136.383509815 7198.717412101531 0.0348043098008111 9.001129299011999e-06 5862606.47085915 1516.1938040270477 292488 1635 1016404 DREP_20211225 0.0 0.0 0.8522682914690178 1.6767291453751867e-05 4527929.025096477 89.0812275965744 4248 None 533342 ICX_20200612 175788180.33838493 18945.826949525643 0.3207508981793647 3.4490766234161214e-05 38733207.53370406 4165.032784404484 112685 27750 121711 ANT_20200905 192631883.56541607 18361.145166953982 5.524623702773712 0.0005268057400592701 39806501.67616218 3795.7867726181557 75266 2667 541569 NEAR_20210506 1925005139.5791912 33625.90337949572 5.228049730993517 9.129823526978432e-05 75935054.33945227 1326.0655144896073 None None None BQX_20210708 508812135.6147499 14940.39021371676 2.2829153968732583 6.721025836071081e-05 1436061.6632337202 42.2784285129638 90262 6148 22386 GTO_20190818 10543501.34294679 1031.4939223051347 0.015910407356921757 1.5565501398681348e-06 2978391.4371931157 291.3825839995303 17422 None 815582 OM_20210420 99877286.21172942 1782.5907623551298 0.34117913465328986 6.0966945437825236e-06 18904285.185821395 337.8097915150297 None None 70476 CTK_20210511 116897843.25076239 2093.6874822876766 2.582955950179072 4.622706685152951e-05 19931306.727647256 356.70985735293425 None None 214700 POWR_20201106 34951707.16955024 2248.927538439844 0.08162235914875741 5.238708245793483e-06 2834063.6896941774 181.89663929274963 81260 12607 252653 CLV_20211104 264459000.4735245 4194.168160682233 1.3889485056072794 2.2023933183582168e-05 43998362.80992341 697.6622954708345 None None 106367 DUSK_20190901 12893782.585754123 1343.2556749213643 0.12690044623997074 1.322043157769706e-05 2133873.8650816013 222.3060222767092 20370 13316 183070 FUEL_20190312 5726586.273221393 1481.074239306974 0.010775639203132403 2.7875699713988575e-06 4275635.912890256 1106.0721368568795 1 1520 None EVX_20210401 23946000.845977034 407.134207342941 1.0967830965518854 1.8664954208384758e-05 2304431.0368793965 39.21659616651447 17698 2825 673277 GO_20190916 7293366.538706228 707.913500354462 0.009315480295066158 9.03961351713223e-07 138102.72538017743 13.401297877905996 10248 686 748628 ZEC_20201111 616274727.9833715 40291.03498402081 58.874787641436676 0.0038540210727733798 385770577.47181106 25253.04963963748 71676 16285 172675 OST_20190804 8530903.871977512 790.7987459781649 0.01313105612207897 1.2167324015704477e-06 312061.91685634904 28.915864954447223 18073 758 571534 AST_20200223 4211785.283015785 436.56196321671155 0.024464979789466466 2.5344565053702852e-06 5709676.014855953 591.4955027119579 31790 3488 361112 MITH_20210620 29992995.968907967 841.3392534629747 0.04834874778109 1.3579729973507593e-06 12632612.490906904 354.8126360235744 None 2735 253945 TNT_20200625 15412882.711270882 1656.6164547227481 0.03588328675562565 3.860528317815915e-06 448144.4190174769 48.21392844725675 18003 2603 432834 SRM_20201224 49702409.86695825 2126.9316421447506 0.9890133942396292 4.241466105396966e-05 31553650.360571615 1353.2045095183466 28773 None 80741 COS_20211104 69394387.2742666 1101.572599895052 0.020245391577533058 3.2123025270756467e-07 5979772.07254406 94.88004648567187 30972 None 292740 IOST_20211202 931207963.6199524 16292.093769460562 0.04064614099866113 7.107933220160978e-07 74907228.49069011 1309.9289741594496 269534 53972 176563 NAV_20190512 12336905.2479772 1693.7668193523261 0.189688994570699 2.6044921985280884e-05 192209.73271519478 26.391027611847665 48647 11299 1061172 SAND_20211111 2016389601.621462 31093.478772319817 2.2926243386105547 3.530254388184338e-05 1182634496.836459 18210.574457241193 None None 11780 WAVES_20190305 258292497.5493234 69566.51111730094 2.5829249754932344 0.0006956651111730093 16050419.573963363 4322.896337770115 136928 56719 38107 BCPT_20201229 2394017.8447403065 88.2804968525094 0.020369956989951667 7.499999630040002e-07 134806.80741157496 4.963442025 10379 3210 2904727 FET_20200612 16495467.357371163 1773.9306888100775 0.026322414566331675 2.830483882287796e-06 4518602.200903486 485.89124177409707 17320 406 941705 BCH_20201228 6401427167.816329 241111.27254133977 339.3443832344113 0.012903657551681044 6137348997.852671 233374.27597479383 None 350909 540127 REQ_20190901 8142933.732906654 848.2875485400396 0.011139856633390541 1.160804809246594e-06 91343.40012650363 9.518242617410541 41182 29469 564071 BRD_20190702 22240728.14007472 2094.659382423185 0.3703188493046595 3.49326984464862e-05 568711.8554053194 53.6473900400125 167 None None XRP_20190807 13399477814.693472 1172135.0694025652 0.31326371634697087 2.7302725956891925e-05 1412038823.4333668 123067.26577294564 937043 204391 35107 STPT_20201014 18346423.18276151 1605.8460432280676 0.02001892501460579 1.7526394986199355e-06 11021473.036105333 964.9203921768708 16047 None 947092 BLZ_20190414 14386297.640985956 2835.247189545073 0.07038685936509691 1.3879427324975434e-05 2267034.1419083686 447.03139051346875 35507 None 1258307 RDN_20190510 12741572.869100904 2063.700474904559 0.2512131063913173 4.0693374302676166e-05 440173.3840494868 71.30257068394937 25686 4450 1314746 NEBL_20210105 8516479.370312179 272.21118831910695 0.49215150763659415 1.573057843523979e-05 1035378.8758226283 33.09368835327168 38410 5880 781583 IOST_20200725 90439819.21311982 9479.082767091786 0.005979702673256403 6.267793316923076e-07 29894896.438848823 3133.517540053278 165 52176 346780 ARK_20190522 87762476.46813329 11050.33411126744 0.6194714140018109 7.799878003197473e-05 1266292.274226564 159.44117891660787 63514 21722 215073 SOL_20210828 25629594571.27215 522505.49528569233 87.96820731391372 0.0017938625543577117 3193853129.576366 65129.59293145714 436412 36398 11331 MDA_20201130 9837097.430150915 542.3474733592298 0.5003836539097708 2.7568865326978208e-05 106127.8282707433 5.847161037695242 None 371 4480394 NEO_20210420 7736803550.473382 138246.8225245943 109.47165661220988 0.0019572878441007032 7123470411.042305 127363.39683553351 379429 108952 88657 DNT_20191015 5329450.255042597 638.4607072186374 0.007050456664088275 8.447326391354962e-07 390268.31064828014 46.759010902665366 59945 6237 377310 SYS_20190421 32876632.567939352 6191.502855584466 0.059509744821229164 1.1204392196670968e-05 142038.7479966396 26.74281068519614 62428 4609 1041442 OMG_20190430 205908484.94724926 39561.93686520934 1.467849723201576 0.000281907021701024 99278014.45626098 19066.781110747488 None 38033 None NAS_20201130 14406024.989466537 794.1691534872896 0.31691925876578303 1.7467195589933498e-05 2045370.1674623038 112.7318071738985 23314 4865 1414953 DREP_20210509 0.0 0.0 1.5614428422551236 2.6593111675912757e-05 7233111.615975008 123.18795140151343 3886 None 195950 AMB_20190515 5034915.425745597 629.9816954943338 0.034196303482448724 4.2780636033661266e-06 999775.7677532191 125.07504870366178 20685 5697 611574 HARD_20210207 60563103.85701329 1544.4838847485853 1.2607643290361958 3.2061353995998296e-05 48474283.4093572 1232.705529730394 None None None AST_20190318 6581880.777710109 1652.809157691246 0.03952046099635282 9.92467245160956e-06 467082.9983253903 117.29736063865752 30850 3596 404922 DENT_20190708 94633172.38288574 8275.048157564506 0.0013012008793772097 1.1373176325411108e-07 936061.5884156906 81.8166792324296 45972 9794 256957 BEAM_20200403 15832849.973252669 2333.1435808121996 0.27088265635147035 3.973572599135251e-05 110474070.69122374 16205.420683855258 14950 1480 257482 AERGO_20210703 41768992.780105 1235.7606201340063 0.15817186679427192 4.67116402545261e-06 53986376.73257731 1594.3367551307135 21378 None 362973 ONG_20200501 0.0 0.0 0.09152742442845616 1.061839517557607e-05 12580058.900160369 1459.453683615238 84145 16479 182484 ANKR_20210106 55676831.76539386 1636.1867685216275 0.008588583283330982 2.519620667506467e-07 11020739.26640937 323.31388671212346 31282 None 5158 BAND_20191108 5520521.9850526 598.7957680096331 0.35246283830813196 3.823067031179699e-05 1811301.660746282 196.4668870045918 7630 983 534835 TRX_20190122 1654286771.4729545 468397.9348249462 0.02531189553933505 7.167944802253172e-06 191499430.8337289 54229.73351584589 373761 69367 85818 RLC_20190627 29382962.870315958 2260.5852812792327 0.43123683447278255 3.310658394657736e-05 10756941.314036807 825.8236591893975 24944 3318 714682 FUN_20210107 87328878.83297135 2371.02978138086 0.014323179421497797 3.8780324293855287e-07 32025215.628441438 867.0897788151348 34286 16527 359571 MDT_20210718 12802872.62566173 405.08185710983514 0.021094907900441783 6.680042879437389e-07 1859179.989987668 58.873933521413974 34170 313 701499 SYS_20200208 19590346.32521413 2000.0394621844775 0.034106949815581905 3.479449287535182e-06 1497385.096130494 152.75700506988176 59174 4530 762164 KEEP_20211007 231693354.81211558 4173.634361655699 0.4233839684905553 7.632005637583659e-06 29335233.71542418 528.802897034931 24852 3022 140553 DCR_20190627 349209222.4526216 26778.38369653149 34.944923604195644 0.0026796788639970415 68548132.67454264 5256.471136551079 40469 9504 389258 TRB_20220115 69052960.07534842 1602.1071913031733 29.72401005842793 0.000689182891640907 6408796.0321604805 148.59477482005445 27175 None 308104 STEEM_20190314 152134566.25650185 39347.88606675724 0.5003444196403867 0.00012942856148445705 7875217.46130201 2037.1528638736181 4435 3690 267616 TFUEL_20190616 0.0 0.0 0.012208550468300772 1.384075318974286e-06 6676707.102797245 756.9338831007167 70165 3998 231431 RLC_20201101 51098759.40836341 3703.261299042059 0.727594550023493 5.2730080827380194e-05 4325766.271036186 313.4960330650198 33473 3841 531109 PPT_20210722 58708764.09016643 1824.3813941465532 1.6167053258081823 5.012180610925453e-05 2465573.6659262427 76.43879392174487 24455 None 885459 NAV_20210708 26201940.44307362 771.3992332536288 0.36842753322647825 1.0846704932327242e-05 1430413.65069479 42.112147983038795 53077 14121 770142 POLY_20201129 49578610.9089142 2800.7770956128043 0.06799728241057144 3.840924592234491e-06 1897639.9208870658 107.19092853345977 35382 4997 340645 FUN_20200719 21533486.05623207 2349.073786890224 0.0035805046984296557 3.905948952693694e-07 361794.68183087383 39.46794314240762 34083 16752 237156 CDT_20190708 16067328.359127631 1405.6561470336933 0.02385313071127874 2.084888396496449e-06 723811.1734390547 63.264882711769815 19745 298 343226 THETA_20190205 43169153.86446031 12461.17407211712 0.060758607297065864 1.753853189444737e-05 4360369.663842387 1258.6608848187598 None 3815 561867 WPR_20200605 4629654.9008542625 474.33426270550586 0.007623610725498659 7.798210316523294e-07 144994.36012438792 14.831509053549386 33017 None 2763388 ZEN_20201015 60454246.47377126 5296.249272459128 5.947494188806858 0.0005204305681408326 2620725.6870378354 229.32443730894857 74447 6124 102470 ADX_20210902 72513220.87661414 1490.6862231750015 0.5678780534814442 1.1667097744436558e-05 8913076.619278165 183.11983617477205 None 3890 12905 VIA_20200412 2740650.5104305 397.98106143036705 0.11821273965146331 1.717934748924573e-05 57668.99153566753 8.380785758511431 39251 2172 2861314 IOST_20200410 42023424.24335064 5765.55708547509 0.003490395168243563 4.787156003935949e-07 42344737.8628808 5807.676676259896 192036 52236 158956 LTC_20190621 8468197398.4707155 885279.4250275028 135.80290167434305 0.014209152579693466 4433680320.526082 463899.07275332964 447460 204424 158874 AE_20200411 35594528.47205263 5190.676677393964 0.10097368510262446 1.4722750979355635e-05 9824523.651362529 1432.492189056897 25301 6341 695802 JST_20210724 59719269.0473899 1786.3097179138854 0.04165700760856953 1.2458220573737735e-06 45809579.74717948 1370.011629839651 49534 None 151372 EGLD_20210902 3471675307.307422 71381.88202178755 176.5309077846898 0.0036281995263777534 206240609.3101866 4238.816252685556 314608 10330 49149 OM_20210821 75722169.7454446 1541.1961020651643 0.21503452526021447 4.373974790258122e-06 21499360.27021673 437.31423925906563 49504 None 103723 ELF_20190818 41667918.44025191 4076.4640917865527 0.09032128526341923 8.836329960381685e-06 12841714.88030028 1256.3332066027886 86019 33520 1269907 YOYO_20201018 1385988.3569358264 122.02622276301578 0.007242024819381244 6.37228260173737e-07 1497890.4902807185 131.7999005606722 7756 None 2175374 ARPA_20210206 31065960.847182162 819.8249865484362 0.031797756055330424 8.330352266728022e-07 26332458.953816477 689.8557833853042 23871 None 1157851 TOMO_20210104 63477145.55142803 1897.4779296890292 0.8167890091135294 2.481306192019044e-05 24327081.633470867 739.0273083669014 35260 1706 198557 CDT_20201124 4946236.295797574 270.0801294157943 0.007382962734380424 4.021392518965031e-07 797289.6172260281 43.42720690205823 19197 293 497751 DGD_20190605 64402371.25929121 8405.991366077209 32.208419308654655 0.004201128348804911 3880761.037576586 506.1898584237464 17009 3363 471901 LINA_20210723 79008973.57760291 2440.5425607959305 0.02864622561266048 8.848352841693547e-07 11415994.933489747 352.621502659183 None None 92304 YFII_20201226 58095759.19987933 2352.520846686011 1463.2005218392883 0.05926107832226118 71717192.2568364 2904.617708885598 None None 117104 TRX_20200317 634828487.9792799 125777.2182520202 0.009597606127513404 1.905890795659635e-06 1213152266.453217 240907.54586590346 501237 72200 50139 TNB_20200208 8451492.668998597 862.9140083185064 0.002732388087569735 2.7871197932125743e-07 4884337.399628334 498.2174203277459 15267 1450 1326459 ADX_20210131 48331042.67138477 1412.818892405045 0.42771983910149775 1.2519435787550302e-05 5914631.410031586 173.1223136632365 52831 3737 11021 BTG_20190703 457776513.0329196 42523.34909224698 26.16829888151471 0.002424606804856961 13318158.799615012 1233.9853881951324 74571 None 363617 ZEC_20190830 328110527.19268715 34595.00802751504 44.94545465902013 0.004738916419514898 173687427.3743492 18313.09100535305 108 15348 180529 WING_20210813 40660162.651368186 914.5548680164438 21.996859292803794 0.0004947676899327289 6856536.029733452 154.2216753407863 14551 None 410110 NMR_20210207 172835274.9087136 4407.576709482935 32.90523306362378 0.0008367831332761174 18826873.998821445 478.76915456174913 22952 2028 2472794 VIB_20210104 3414557.0311527364 102.296033586884 0.018347247266319155 5.573671748819338e-07 1007288.9590969282 30.60021992793763 30376 1092 3160516 ARK_20200903 61907689.9827929 5426.544295512937 0.4079628134641313 3.5752037157020325e-05 1839679.840267787 161.22131683469706 63056 21812 112680 WPR_20200801 5103949.617836545 450.27871041301046 0.00838380673418946 7.396171122547649e-07 319597.06884190737 28.19476505558925 32924 None None VET_20200403 207247998.55544847 30557.945692080677 0.003237692925245892 4.7493656720046774e-07 93671684.16552077 13740.681759707068 118600 61513 281766 GXS_20190916 34363633.67575528 3335.00555328507 0.518422273620467 5.030691028965847e-05 1802997.7689946548 174.96016593544672 None None 561908 SKL_20210724 240224613.86155754 7185.544824060576 0.19800753317079145 5.921488468752553e-06 21770001.574712638 651.0399439105872 27475 2315 175658 GO_20210603 33817843.78790471 898.7180584177914 0.031208620403505583 8.287918207809413e-07 1342190.024699992 35.64387339211478 21885 1079 95450 AION_20200719 48189336.45900155 5254.8938694785 0.10960783493556712 1.1955504994257706e-05 2723992.779623942 297.12026791023 67316 72557 276087 LTC_20190618 8346180239.006554 895359.2545457853 133.9626898489453 0.014377786571814257 4245137132.5190372 455616.97610181896 447269 204185 158874 QLC_20190201 5114579.0149964355 1490.638846886382 0.021311679099832535 6.211001324942886e-06 173292.84377146076 50.50386115639856 23286 5871 940522 IOTX_20190723 24629459.97287812 2382.244432650151 0.007042032521253791 6.811527936583428e-07 871449.6174048079 84.29247374763526 20427 1757 905527 QKC_20200320 8361689.845244575 1352.1032100505088 0.002242639807048285 3.6329689167191744e-07 2156954.5120289284 349.4162848777774 50290 9198 585547 VIBE_20190205 7004421.937155454 2021.8909387822705 0.03498709738719192 1.0099348071281986e-05 742562.3138449198 214.34745469573477 20572 None 1520887 NULS_20200109 17704785.113451615 2200.4885518554916 0.22488759216524773 2.8025872717487358e-05 2488618.5013858206 310.1358536089172 21671 5231 591161 GRS_20191216 12795623.942655483 1799.4567750806857 0.1737288956353288 2.4433757157522912e-05 1077636.0541187865 151.56199292143054 38125 106928 None BTCST_20211011 350986857.45527714 6414.819654021965 48.106173572350656 0.0008792936212542517 87736284.47121777 1603.6601866091964 None None 2853213 SKY_20201226 11904758.165993057 482.06946851143584 0.6188869279107595 2.5098684380262672e-05 1471132.1461058122 59.66111053826045 17163 3816 846842 LUN_20190228 5608252.732828159 1469.1845841261388 2.072028718348823 0.0005434612205618499 8147965.004047465 2137.0857300296398 31694 2257 1490290 GO_20201115 7050048.264844702 438.0048128423174 0.006722070563250749 4.177240119558607e-07 161802.7950413186 10.054775839432114 None 678 694128 STEEM_20190524 117211603.75274922 14878.98026680549 0.3787010223945263 4.8155342556672734e-05 7497768.210695425 953.4106729197678 5600 3737 288379 BCPT_20191113 3366057.2454834697 383.2774428748334 0.028919722014606297 3.2902707259710365e-06 89255.02764412411 10.1547727344984 10808 3133 1601179 DLT_20200407 2601790.9665517015 357.72399038822283 0.03173503839213467 4.361966595558418e-06 106180.60344994235 14.5944756587934 None 2579 None POWR_20200605 40959160.92205986 4196.49710681816 0.0952312649573674 9.741229708413925e-06 4141937.4353014766 423.67980739532436 81702 12749 204075 BEAM_20220112 50100103.808483794 1168.6853303781222 0.47857124584462263 1.1186014614490972e-05 2499891.1082474208 58.43188180296706 30443 2995 244658 FET_20190522 0 0 0.23166746787151382 2.9169675078859985e-05 156481734.4726701 19702.901716333265 8670 224 203647 COS_20200317 9126580.948520806 1811.6079090141204 0.004633657859136447 9.210803795206902e-07 5834692.806606499 1159.822591152063 10345 None 117572 LINK_20190509 214718918.11221316 36072.53733068424 0.5899874744108914 9.904429547022237e-05 12190796.57201056 2046.5330368262785 11776 6673 419208 NAV_20190730 8798630.516155664 927.0003413321158 0.13417141408577465 1.410556928330083e-05 487876.75421148655 51.29095049890873 48319 11226 923849 NANO_20210702 645422408.4845582 19211.76505428603 4.853225644936007 0.00014427934914784066 27009584.651250392 802.9557204499807 133309 106809 57343 FUN_20210217 205349018.81115624 4175.490082288917 0.034325158699566025 6.975853213653056e-07 4837444.866255177 98.31070443546791 35313 16894 206769 VIA_20190811 6739552.369964185 594.8113390180449 0.29096255523633324 2.5692819415277995e-05 174461.19811087043 15.40541893576244 40879 2227 1890047 HC_20190801 131801450.726373 13096.835729966077 2.9884847193013107 0.00029642105878181123 55192430.14368287 5474.412659455238 12926 846 463002 KEY_20190122 6752377.606727796 1911.9351751234155 0.002750368690016873 7.788734652496972e-07 512942.25168847304 145.25947393734052 23555 2812 659258 BAKE_20211207 247152427.35536543 4896.562165671492 1.2803666633305264 2.535019328104863e-05 41208364.55574012 815.8912881772304 426526 None 27201 NAS_20190205 23562496.84370894 6801.531845285755 0.5178570734881086 0.00014948421637990666 829765.0987919776 239.51934215524977 23535 5196 429754 LIT_20210718 58273508.155530855 1843.7690973065883 2.6244406918758005 8.310714812793054e-05 7756483.688369046 245.62156837326978 None None 411368 GO_20191220 13617563.216413893 1906.374641208536 0.015632414475122862 2.188441357871915e-06 2787850.010217886 390.2817617594235 10372 678 917483 VITE_20210104 7871788.698999149 236.13326463788013 0.013544334701929141 4.1146050188836347e-07 384590.9315270821 11.683407209754456 None None 1009411 ORN_20210519 293039392.4048885 6874.932861829684 11.720968493015095 0.00027397681727195155 11293720.389531007 263.98992278897384 67597 None 50279 LTC_20200621 2827164191.979875 302165.7552171612 43.5909040849994 0.004658971873939341 1163084948.1209483 124309.88010093643 132188 214011 123439 ZEN_20201124 138150880.14553717 7545.576982934784 13.174082361197017 0.0007175731228446024 29722880.30604233 1618.9620997029504 77286 6177 249437 KEY_20190131 6941785.938477266 2007.2402192994293 0.0028278974309496633 8.176958364551396e-07 1133294.3339358051 327.695781394132 23480 2811 802712 MATIC_20190801 24649793.515025653 2448.4594690105682 0.01135779248663543 1.1265538192544902e-06 6685808.752269515 663.1502902995487 21125 1043 193229 LEND_20200316 23283889.968818646 4309.770620262121 0.02048003572848556 3.8112284613200343e-06 784444.832189534 145.9811159712879 44140 5739 109064 FOR_20210203 15539359.49354956 436.2838774288768 0.027327612445924583 7.689576672761653e-07 7954384.338065745 223.82434020976015 None None 253691 LSK_20210805 486184049.2374564 12223.870168670503 3.357524776455765 8.443434286985338e-05 44668691.06944063 1123.3190604436923 196511 32610 284613 BNB_20191213 2262402193.447172 313937.7213454799 14.713131417378417 0.002043978354310691 158091955.7680111 21962.458324730596 1071703 57850 1585 STEEM_20210814 219467816.7134927 4601.033170740903 0.5635193555660731 1.1811204696132305e-05 13311539.124225384 279.00605695941346 14173 3927 205413 REP_20200317 74041560.6848474 14703.159009723371 6.731050971349764 0.0013366508190657614 22432261.19385921 4454.594152665635 130574 10106 262137 BCPT_20190916 3916644.999112432 380.15995168389287 0.03371806082375611 3.272764413557646e-06 672280.1252250986 65.25329203477253 10909 3115 1056617 ALGO_20200807 292336829.9487228 24847.337601329164 0.3640600627298198 3.0936757703374154e-05 109316654.08766204 9289.409047219171 21963 1005 217668 CHR_20210106 10378055.286006287 305.4430223914594 0.023230011696392897 6.814956046388597e-07 2260804.570578576 66.32490753485006 36383 None 675741 SKY_20200511 7982534.37832612 911.6478601098784 0.44415569921437215 5.064538968766693e-05 221733.72032375404 25.283455086934744 None 3826 441501 PERL_20200113 5747420.922843552 705.0250679879721 0.022002927845929648 2.694204154752314e-06 1329127.0063216377 162.74831821019237 10831 390 1210386 WAN_20190312 41592549.8078111 10757.165760437021 0.3899257192691928 0.00010097279865970045 10524856.49821795 2725.4529865549307 108632 17225 537237 NAS_20210131 14523397.853950586 424.5061586788279 0.31926550589476704 9.344958159120616e-06 23161856.979037385 677.9516745789101 23416 4839 795646 BEAM_20200907 23158947.28414763 2248.990241708268 0.32569786506398524 3.166323202827442e-05 26612472.849663243 2587.173552763386 15883 1550 271885 SNGLS_20190905 3879078.167973389 367.5984734607604 0.006729546651725884 6.371516662375127e-07 18239.157575239973 1.7268785315355992 10 2164 None MITH_20200501 2398906.9563856027 277.23604195728393 0.003898591339320342 4.522883029592974e-07 2354691.160047007 273.17540518534724 97 2092 1209693 EVX_20200309 4832533.043696596 598.1970865798477 0.22061838774932171 2.740487914373019e-05 1033185.8338715681 128.3407661488156 17845 2873 590577 NPXS_20190530 236096467.33846852 27300.99462869532 0.0011049205439252596 1.2777695770958687e-07 77260465.85224818 8934.67619196831 61182 4444 188211 BTCST_20211216 166183341.70762998 3406.5317834130633 22.870279336702293 0.00046798824716062396 5049814.277968236 103.33296317201031 67634 None 2315848 TNT_20200316 10314110.024048137 1909.107473679108 0.023896522521381552 4.447018939199834e-06 199127.719517482 37.056636136977104 17705 2563 1338754 DOCK_20200927 11023994.69252592 1026.678451403009 0.019559928572085522 1.8210377994049692e-06 25007864.162834175 2328.242956259954 None 14902 233076 LUN_20200319 1279898.6552150808 237.6962772945725 0.4817641413291638 8.941827952448286e-05 2063924.942069504 383.07669989375154 29650 2149 2364106 NAV_20210616 27589240.37780583 683.5480277223865 0.3887836777935703 9.63246223988955e-06 489170.861384245 12.119644214178763 52992 14099 660151 KEY_20190625 8159620.605628641 738.7795339026001 0.0031181202174026517 2.823334060084756e-07 222180.86477629753 20.11759519472698 23911 2839 824192 CELR_20211021 788674547.9099131 11898.483018900595 0.13957975856463883 2.1065256191527636e-06 121845144.99660994 1838.8763682083547 81628 None 66819 VIB_20210624 6272499.570085949 186.03358563112863 0.03435524305154835 1.0190083300109225e-06 872699.56916977 25.885077548326638 32252 1278 3737754 ZIL_20190915 65548754.19389395 6332.196055054278 0.007079863063645697 6.839199166198594e-07 8868207.215331022 856.6752611954685 66227 10604 166369 PPT_20190903 16897288.453304123 1636.2030946185996 0.4664293302825168 4.51654190397574e-05 1395070.36044626 135.0878543194017 None None 732961 NXS_20190816 12902101.478909193 1247.659289055021 0.21612621784786357 2.0961088396215045e-05 84880.48119466499 8.232167698816877 22159 3541 857246 BNT_20191012 23513966.13409468 2844.077977488292 0.33760792255073757 4.08316077077935e-05 3842447.48122348 464.72045740436556 None 5102 168578 TFUEL_20190704 0.0 0.0 0.009212784400824885 7.676879894284488e-07 3038001.5843030433 253.15227478081692 70155 4009 256073 MATIC_20210115 158782678.79729143 4070.51009049725 0.03281826324349183 8.380150921659908e-07 38146195.109804794 974.06395254826 73472 2688 49015 VIDT_20210201 25479799.293098673 770.9874975226409 0.5508317039557155 1.661535265493308e-05 1765469.0538380842 53.253817309776935 24621 1209 None LRC_20210430 660742826.6231693 12326.832674199673 0.5302948239155901 9.893191872864202e-06 84427527.77972327 1575.0818111121664 71520 10112 144294 RLC_20211230 215804101.26624578 4653.017187329153 3.0379264844243443 6.528128063236483e-05 17784950.263167027 382.1765717883919 50695 8490 265933 ATA_20211007 169730480.6846997 3057.3382622698073 0.9846230618817072 1.7749241248885536e-05 27614644.431071118 497.7935262582343 None None 267687 CVC_20210418 434973317.4657726 7215.563957714668 0.6479731897402237 1.0753058146546851e-05 58749835.009885915 974.9483496602777 100803 9560 120797 QLC_20210220 15380750.17951191 275.3969523825571 0.06419023367191615 1.1481794328049585e-06 1951294.6464544998 34.90307251181876 30476 5610 940522 TFUEL_20190702 0.0 0.0 0.009838102568231998 9.280420668484875e-07 5605423.704081917 528.767510179816 70167 4006 256073 WRX_20200711 27078579.222646996 2916.2804099766176 0.13954903330679566 1.5030839855908254e-05 7492484.295077489 807.0162070892194 30873 None 21406 DOT_20201231 6890483558.510944 238691.2489598882 7.279015190253465 0.0002522180825938657 1162860045.9212942 40293.133540922114 95031 6846 41823 AAVE_20210115 1772279084.6009612 45378.02250660978 147.24045918961338 0.0037533573538665855 455778664.8956208 11618.411223632944 93939 2095 24520 PIVX_20200316 13142631.485488484 2445.7755756971274 0.2098345741037034 3.904912626107707e-05 229425.2128090341 42.69484254785795 63929 8513 174953 ONE_20190726 28403165.07249097 2867.8892000313444 0.010948144640175394 1.106046087706147e-06 2959201.123333098 298.955935710562 69463 None 156927 CELR_20200223 14559154.5236229 1508.2296176392701 0.003911468245573949 4.052096599242842e-07 4365074.268155348 452.20110421321647 19286 None 1202590 YOYO_20190117 4247215.094364541 1180.1123190451997 0.014532077305744137 4.041480728912155e-06 1875303.7642957813 521.5361757855532 6884 None 754371 STEEM_20211125 245070772.49774557 4284.315841772522 0.6210267376094061 1.0856760530792234e-05 8830886.130243953 154.38114043175617 14714 3944 232850 DLT_20201231 3165108.795750983 109.57563492788776 0.038240938760692206 1.3262557668350751e-06 638786.2266366608 22.154108772102575 None 2536 None BEAM_20200523 21550574.55473092 2354.176450382207 0.3452377439912518 3.778000439027491e-05 77706889.006834 8503.608481195453 14955 1494 578426 EPS_20211021 255150677.65970662 3849.4071429168503 0.5971931526401155 9.012822704293084e-06 21111433.225771975 318.6131720637276 24516 None 62864 THETA_20201231 1588653462.851883 55014.41511179091 1.5950865599520716 5.5311568746179824e-05 104900497.59699143 3637.552487758912 77358 4739 64430 DNT_20190531 11778789.104368553 1417.5498799399832 0.01903502153801702 2.2928497634714332e-06 1151671.9685139717 138.72381469756021 60747 6389 1073485 POWR_20190213 34295978.93581087 9434.943303876584 0.08246968665741977 2.2695777231354745e-05 3268211.391436307 899.4165091609559 84683 13284 646917 UNI_20210325 14351045746.375404 271583.25363791734 27.5259305169569 0.0005217598640890621 1384567626.283326 26244.77367138137 None 30986 2272 BTS_20190419 171450668.98950264 32517.103161879477 0.06294424065772813 1.193603543951305e-05 17351434.825818986 3290.330280312123 13791 7205 210686 CMT_20200518 7009622.00805816 724.8806119615832 0.008757535342753383 9.066100735811477e-07 2451617.8721241034 253.79988460777156 284344 1633 1222646 GO_20200430 7740106.608185924 886.0492165174921 0.007962054366631782 9.102801402257979e-07 1476733.0278104846 168.8308928490844 10734 676 903309 OST_20190922 8835879.279643226 884.4205941494774 0.013270527558239325 1.3288559253587311e-06 762873.461535569 76.39100368930372 17972 751 557470 STEEM_20191108 46674241.53160078 5062.736603113318 0.14390319734099696 1.560912316036339e-05 492897.0433896896 53.464348241112816 10660 3789 194536 RENBTC_20210212 845084222.0128139 17729.729267923485 47568.428959792174 0.9962773124505041 10688652.572477404 223.86406891062228 43939 2901 83739 BAND_20201229 137631667.53180888 5075.56521202717 6.113222924023742 0.0002251387787721529 83528386.5530897 3076.197150846432 42147 2909 377723 SCRT_20211202 915802290.8598639 16021.89881839058 5.945924444825677 0.00010398044374448829 7511806.83140221 131.3640990396036 None None 60335 BCPT_20190126 2745661.45647706 769.9521346701712 0.032727946630777716 9.177734681125381e-06 261272.16384667135 73.26724852005442 9909 1328 1188589 LINK_20210814 12296383598.097542 258070.87460995893 27.717304857796975 0.0005805987217701471 1109543009.0626929 23241.771020517772 424035 63963 29120 IOST_20190312 98898285.04006673 25578.264629478235 0.007306852868428823 1.8921382895765547e-06 5459696.749306812 1413.809947299707 195716 48476 87686 XMR_20190130 716904620.2627325 210008.63041938393 42.784724050323526 0.012533272972054246 545669855.6199876 159847.45501835295 313293 153537 96546 PPT_20190124 47681482.35259612 13431.655463983077 1.2867515992861467 0.0003623029986407703 1116168.9120896435 314.2730454456237 23390 None 502199 YFI_20201018 419690209.7629704 36934.63958041923 14045.04828746066 1.2358504730969575 196200564.625569 17264.06030450458 45405 1763 9593 THETA_20200626 237066815.0461228 25598.64378377844 0.23707171023119145 2.5620647175574313e-05 16242836.892237347 1755.3844477714576 71599 4270 93022 WPR_20200324 3396449.085874005 527.2143467689452 0.0054775017709279995 8.45312980716375e-07 286392.56618274254 44.197403104432155 33507 None 964364 OMG_20200730 222017099.24812666 19994.547147081383 1.582627290964526 0.00014259691719747857 59716680.19570694 5380.555832564878 205 43060 389790 VET_20200318 157080738.72818843 28916.249624633612 0.002469780385331578 4.5826653309031934e-07 88359481.04825766 16395.0581542126 118693 60859 265359 QKC_20190810 71859406.37860702 6059.8338672874315 0.01795093785783077 1.5134596211331838e-06 39618550.445057765 3340.2754118646862 51709 9241 258370 HBAR_20191113 28264740.420090314 3215.7517950699257 0.035216118105045664 4.00161576178882e-06 1348671.8737775888 153.2499014085375 34998 6161 83811 MKR_20210218 2345262980.2371583 44948.11065449315 2603.323233787062 0.04993521369499272 144684897.6621848 2775.249415605342 105599 22020 33476 SYS_20210106 40936827.52679056 1204.7258702470347 0.06834325285371919 2.005752694803553e-06 1955264.3295266104 57.38352411166863 61094 4489 315243 VET_20210603 8296917292.355093 220469.79899120197 0.1272200198013717 3.3786825467735845e-06 1184997906.4114683 31470.9253355461 368840 182545 25894 ADA_20200704 2993888384.7179904 330117.91952387814 0.09627543371927394 1.0621583728862715e-05 526680394.6547377 58105.99541402869 158062 82050 46523 VIA_20201111 4777649.933269959 312.3549123840581 0.2045517818368485 1.3393052970681613e-05 301719.58773766685 19.755126963821166 38050 2140 4087654 DGB_20210909 901804166.3380972 19457.623219379188 0.061486120233395246 1.328082133531566e-06 45797119.353617854 989.204323673001 226676 41648 149269 NCASH_20191019 2563427.7263799105 322.18514300531996 0.0008800899646687834 1.106006490719972e-07 625974.9258922214 78.66608629326953 59228 58750 890063 REQ_20190207 13439952.69488312 3946.2712394556806 0.018419532766555335 5.408387518249446e-06 321923.4753693148 94.52394520995703 41805 31048 476226 STPT_20210916 75850116.7270813 1573.8690208617702 0.062351553961693056 1.293429308989312e-06 4669741.70261749 96.86977147812384 30945 None 952678 FUN_20200625 21819983.311662585 2343.3561731428877 0.0036220827537652316 3.896438961228955e-07 589755.1004437448 63.44263527838343 34156 16790 229791 ONE_20210107 48504334.28861768 1321.1091217950407 0.005592920106808217 1.518510292968444e-07 9216454.620062618 250.23209589933728 79615 1586 186131 NEAR_20220105 9910727526.736305 213988.16619569066 16.032932962996124 0.0003490114860575761 1033777436.19828 22503.692873479646 None None 8074850 ROSE_20210325 222189148.5730305 4204.770367186854 0.14759980207205053 2.801526743010335e-06 36034496.07637313 683.9548767116977 None 1142 263459 ATOM_20200719 832010012.2758662 90763.42331026364 4.372712420195288 0.0004770163129679258 236651076.52758485 25816.109804915413 36077 8742 173745 ARK_20200425 25702747.197541848 3427.8038710780434 0.17242860650741088 2.300500777727271e-05 1068830.0132380838 142.60071611764613 62404 22032 88173 COS_20200730 16895051.750628207 1521.5445563622106 0.00855631395437502 7.714953791248014e-07 2628524.399044633 237.00561229907018 12561 None 262147 ICX_20200721 223132573.02824795 24354.699528644636 0.4007854403316796 4.374272148891411e-05 29095662.842428803 3175.573132592934 113454 27790 129774 TUSD_20210618 1426010843.5596745 37532.91073493747 1.0049952990148774 2.6330028252595996e-05 73735802.26634356 1931.8157595401028 12694 None 726197 COMP_20200907 16192.085392116796 1.5725761518388413 1.7519666881805936e-07 1.705e-11 23.906843811530752 0.002326594961744972 1901 None 827585 NXS_20210114 20783363.84699924 559.1085976372003 0.3127960654839993 8.369724958500697e-06 116871.8542684436 3.1272301143023378 24101 3524 514648 HBAR_20200801 218422818.2119713 19269.61515559607 0.044297445565539426 3.907908401065309e-06 21317547.052461743 1880.6281073965088 40894 6590 141021 NXS_20190714 16211632.114314232 1423.9981986752261 0.2719427480418297 2.387970180256241e-05 78553.59707256845 6.897909531027598 21422 3526 987625 ROSE_20210708 103036208.72027394 3032.457130078125 0.068693606409072 2.0217942155940396e-06 10914024.549262682 321.22220474417406 22256 1644 188060 ARK_20210202 66217977.88496011 1983.1833464410986 0.4331397932715093 1.2967764366476629e-05 3241529.708572658 97.04809879094721 63479 21577 89752 IOST_20190726 106045242.99319878 10707.46891477409 0.008815350069213032 8.914615815637692e-07 41768781.45441439 4223.9121172720215 197518 50503 111016 POA_20190901 3042313.426838959 316.94684840883514 0.013807293751642405 1.4386872997712308e-06 83435.99648298981 8.69383317563992 17730 None 617003 DNT_20190430 8179068.855590746 1571.4829143482518 0.014058709611896585 2.7011503785997542e-06 443576.77058273903 85.22599832232993 60918 6412 1091663 SKY_20210620 24816802.940989558 695.3687425324486 1.2183355683074948 3.422215559016121e-05 189749.39097290154 5.329921698037502 19476 4400 389358 WTC_20200914 14356985.71994566 1390.8560454008716 0.49329733654112035 4.7774807430410015e-05 2863033.3565897522 277.27874680408706 55564 19410 628603 BEAM_20210111 30023712.609988388 778.8244782390899 0.3821649966364782 9.940922105036683e-06 15442575.707954213 401.6941466775125 None 1619 333744 CND_20190430 27982641.5928413 5376.4363569848865 0.016102893060332597 3.0939345465080723e-06 363275.3921285489 69.79803451415142 36768 6192 608018 PERP_20210805 753360779.4723372 18941.354355170373 17.064279933665805 0.0004291290038571901 69116613.673979 1738.13039232797 24799 None 147640 GVT_20191022 5847108.520159575 711.961472125781 1.3193784406879834 0.00016054259834045426 5941349.563997092 722.946250475067 21145 5686 109882 LSK_20200321 148107296.21923676 23957.568678120544 1.0713012880602675 0.00017293425024145106 10193891.802721892 1645.5436538661304 178012 31306 164419 BEAM_20200223 39008566.60187361 4041.151881828596 0.7003033667394136 7.253853583910395e-05 26627742.919249535 2758.143935614069 12560 1457 234451 TVK_20210707 26105513.179902643 764.2966053828987 0.12116051013163166 3.547705881959983e-06 6561764.444438151 192.1352946622461 49901 None 76424 AKRO_20210813 79678696.05211383 1792.3484072610179 0.029416973120021946 6.61680958707423e-07 13887688.733949777 312.378134834537 44141 None 238743 NAV_20210823 37180041.06352887 754.560467787989 0.5203601199060613 1.0560590151679207e-05 376581.5774660396 7.642637370076741 53004 14145 1077021 ZEC_20211207 2144844743.5913002 42493.760848493184 180.9694511306724 0.0035830443696451813 653389981.0028328 12936.577295160818 83221 21641 109049 XMR_20190621 1805294497.3665805 188728.48605567703 105.79053567100968 0.0110689377347883 488102102.7004116 51070.46437321944 318277 158557 113923 MTL_20200223 21908119.503719658 2270.830780357788 0.3392959989534004 3.514946503915786e-05 2958247.918442323 306.46053035459136 34734 None 562991 AION_20190902 26214823.71296636 2694.765249956662 0.07596698473850548 7.809062264113473e-06 1138109.8450497154 116.99254187837877 67421 72578 168998 OMG_20190623 317009974.86975914 29547.31347465086 2.2625456361431224 0.00021093023153511347 171617766.38597354 15999.401126352592 289350 39857 None POE_20190623 13499250.167832656 1258.2145926025057 0.005363694467675007 5.000408822157032e-07 1698375.2568977468 158.3343471390154 None 10853 945513 XLM_20200224 1477746650.7850497 148521.4904806306 0.07310428622784546 7.350924180762696e-06 287592976.267914 28918.6075475294 281535 106564 78179 GTO_20191203 7631435.5751348445 1044.537407629547 0.011516027244566612 1.5762330856102784e-06 583281.6439395179 79.83550280678601 None None 1276665 POE_20201014 4405884.807674 385.3100022480526 0.0017503297196217638 1.5307244234520547e-07 12036.756889661481 1.0526563963126414 None 10123 1047091 UTK_20201229 53447192.4252924 1969.5729037593496 0.11894329671114333 4.382137538511314e-06 5819774.940309862 214.4135477727179 54581 3100 117682 ZEC_20211125 3097828470.877949 54150.8192976642 260.64180484553094 0.004557261860539814 1730273063.805983 30253.425564926532 82359 21497 126489 NU_20211021 704776755.1068406 10632.743601245864 1.1832596099516175 1.7917686969290005e-05 226539837.72712523 3430.4136339398556 None 9012 228996 BAT_20191203 256501380.743688 35097.29997735992 0.1888714314447567 2.5832696614382433e-05 44125864.513773784 6035.269929984462 None 32187 23040 BEL_20210115 20396136.02808921 522.2294433040134 0.9780941419952054 2.497969428465124e-05 6431561.89184253 164.25663229442705 9690 None 319671 ARDR_20190905 56159741.4233789 5318.315447091173 0.056220360430476526 5.322495505321384e-06 2327613.5104933595 220.3598901335117 67055 6534 930148 OMG_20210616 733884581.0948117 18171.50836209685 5.2237222391607 0.0001294253887621171 217544311.06339657 5389.979739215776 324800 4984 165671 PAXG_20210710 291592489.70692015 8597.329557742642 1819.8964960454011 0.05355372608282228 6379661.558580541 187.73301028478383 23048 None 39244 DCR_20190801 272524813.78654957 27111.382828851984 26.805397569875 0.0026666613777256254 15210567.305493899 1513.1815247702687 40573 9558 266485 APPC_20200217 5998040.982394178 601.6916747422636 0.055960671910182794 5.625072154587339e-06 17363638.490754616 1745.3635927286289 24962 3241 775270 ALGO_20200106 123075692.17720635 16758.16187923387 0.22989036171920443 3.129947661119483e-05 48672976.430193685 6626.805386625395 13736 721 440890 FIRO_20210523 84564655.1776346 2249.6984384056304 7.04708866238638 0.00018764178585581456 8259401.539756471 219.92186124920298 72243 922 195652 POWR_20190904 23020920.298390105 2169.2752266460866 0.053875255444577816 5.076697866562933e-06 78678589.08890033 7413.930979551423 84003 13064 414066 DUSK_20210806 45181504.53951246 1101.6445503384173 0.1249710351883205 3.0543393215696245e-06 9715499.548693683 237.4504800696438 28151 13635 324432 GTO_20191113 8766226.900307303 997.3560510966619 0.013237231229922935 1.5041496900396123e-06 1003317.584021192 114.00721244525351 17148 None 1042582 ENG_20191019 22411509.81087098 2816.0240989136455 0.2859023242928508 3.592432689294674e-05 1156139.0524440682 145.27170199273885 61235 3481 386456 BTCST_20210703 129743323.95049606 3836.4924425027702 17.872881311410087 0.0005276400876588682 2331751.672471102 68.83756655822036 None None 922062 PPT_20200612 13085558.1241638 1410.3150694269514 0.36038242046993146 3.87523959866787e-05 3465630.2060904745 372.663777313795 None None 2134911 XLM_20200306 1205098087.939905 133030.81519242076 0.059589245446268646 6.578058647466441e-06 304416292.9726867 33604.5239945902 281648 106746 84088 STRAX_20210219 168074167.22285622 3251.9535122567804 1.6802659803429938 3.24965271863209e-05 5275938.898561643 102.03723330485943 149516 10469 212375 XEM_20190805 566225799.4885345 51729.30913637294 0.06311074937901102 5.7635682097840674e-06 52911031.44594457 4832.082359810351 217226 18410 178171 ZEN_20200506 49672967.79259822 5539.012409891349 5.537135865363958 0.0006153638973469358 3402436.432730508 378.1262722515168 61432 5352 41746 XEM_20190513 500222455.1958554 71958.02251576209 0.055637726393419996 7.995607233940533e-06 51303988.85475568 7372.812855731683 216660 18436 133593 WAVES_20210602 1328230163.875057 36199.40060716322 13.261259067198562 0.00036152038024963543 145757598.3176299 3973.555007186422 None 58889 99701 DLT_20200113 3320541.0429614214 407.10511382966007 0.040197083206400815 4.9299854588124035e-06 156361.06384195804 19.176957867991348 None 2606 5297076 TORN_20210902 87021083.92117131 1789.259707782651 79.09782634676958 0.0016257579582887817 54239927.18722049 1114.834596023373 23922 None 113088 KNC_20190405 48700662.737082206 9937.345183451278 0.2953541097629973 6.034065088769952e-05 9194834.387334945 1878.4986340010696 95458 6651 240920 LTC_20200914 3146550355.8324947 304685.35717869835 48.07473058354407 0.004655150816819338 1774626149.2591496 171839.80581891126 135110 215317 123582 NCASH_20190627 10058690.360018509 774.9587181810093 0.0033850082122730543 2.5987125769643564e-07 5889452.597792106 452.14054376075933 60251 59135 1027921 CELO_20210602 403164654.82691437 10987.793567456582 3.4156527684364923 9.311544864546092e-05 17915265.093398888 488.39506234054704 30369 None 77496 NULS_20190401 33518906.36088081 8168.411402918824 0.8365399442309142 0.00020385859570956478 29523199.72237991 7194.5853605241 12 None 680951 THETA_20200404 75869542.90513834 11282.23460827712 0.07599447480330293 1.1293806995814118e-05 2602841.835610049 386.8175075634946 None 4025 349819 VIA_20201208 4900534.653133116 255.14238341660146 0.21142745197437088 1.1010650265917123e-05 182638.99293837912 9.511414233983054 None 2130 7728977 ZIL_20200518 111264119.07259056 11424.419073131146 0.010561647714529079 1.0801864989400308e-06 28814551.61893968 2946.991840011116 72963 10702 162490 PHA_20210718 136080708.83973923 4305.582650501076 0.7477174167907344 2.367767818393585e-05 11790763.639677318 373.37355093503976 107838 None 155093 SNX_20201208 705048463.8603721 36716.32091830109 5.18756904703264 0.00027034785840580693 54666413.99369014 2848.91590182749 45315 2573 43275 FIRO_20210603 92013615.05324565 2446.6587018326604 7.713761984189703 0.0002051103292872742 7050929.796988448 187.4855012905448 72425 961 213065 GXS_20190801 104953783.57454766 10441.038987571543 1.752625299497492 0.00017425471574424145 9547944.701050833 949.3041041347414 None None 741400 ETC_20190904 773754112.1109138 72807.88176200376 6.821109790169906 0.0006418766052690464 1008182515.8011404 94871.47848970826 229994 24946 350041 OCEAN_20201130 159919249.30435959 8815.959637667478 0.4627581373878069 2.546861552605618e-05 20479107.50498648 1127.099608243464 32481 1235 73952 MATIC_20190821 34246470.686036184 3182.597230362048 0.01573045122893184 1.4632086528516288e-06 21782359.904134385 2026.1426088425087 22367 1122 173960 DLT_20200314 1986616.5811677608 360.8413534436932 0.024354653415392082 4.398083200394456e-06 75789.87100055565 13.686507983601317 None 2588 None LOOM_20190904 17491434.366206113 1645.8753045256233 0.02914300748938935 2.7461632010043803e-06 1751395.525397624 165.03505837555772 20862 None 439430 RDN_20191020 7788681.089330508 980.1253654184718 0.15403731869963258 1.93767707311715e-05 1055868.9290638708 132.82060693703187 25455 4375 2691065 BNB_20200320 1858603761.587601 300360.85212463816 12.253209773574119 0.0019827134304099604 346191031.6141539 56017.779875864144 1125510 60324 1672 ROSE_20210806 129289003.37486798 3155.5889297732383 0.0861126522649989 2.10462575989143e-06 7574121.534863119 185.11439227032778 None 1707 217823 CELR_20210210 68883270.83432403 1478.9233745815181 0.01746427738150602 3.7495824143726317e-07 56805455.94024842 1219.6138092694862 29027 None 412914 BCD_20211225 348979846.15873855 6859.306093531524 1.8565909129582945 3.65234997086302e-05 11776954.51694407 231.68032971936674 35998 None 1761338 SNT_20211221 277539429.94834155 5882.730047936109 0.07130769116617354 1.5130118867247266e-06 12908277.70961579 273.88879505689573 145170 6258 174489 NAV_20200423 6304046.184858867 886.1157220886049 0.09204065161315486 1.2937511254531262e-05 3543560.07713734 498.09347908310167 49091 13922 1361419 ALGO_20210805 2624257932.097299 65922.86852081747 0.8260441309946281 2.076879368360129e-05 150389606.50245553 3781.16688008742 118213 36538 221911 DOCK_20200417 2481137.556272669 349.4061860429783 0.004413586651292483 6.226083505905367e-07 418812.94528977707 59.08039371935123 42758 15004 521704 VITE_20200306 7192780.6155803725 794.2280861535921 0.014835564681514328 1.6387836059359024e-06 2027145.4960097526 223.92493154284773 None None 441540 DOGE_20200629 289858451.97126293 31759.17483983923 0.0023155332177285906 2.5370805580852503e-07 126780703.7606329 13891.092392403287 140554 158564 114634 QTUM_20210724 607968347.3372531 18188.173022434443 5.873723871214358 0.0001756634760336545 148421993.4319792 4438.806429747166 249277 16754 143849 REEF_20210127 0.0 0.0 0.021239520388956865 6.518749731428823e-07 42564586.03463154 1306.375467526556 None 769 125550 INJ_20210217 178976732.2438526 3639.755023289196 13.282744923811222 0.00026994333711288516 22507897.370671205 457.4247990519998 46885 2443 114661 VITE_20200309 7200201.248512859 895.1328345837358 0.014861453135006255 1.8475837287907903e-06 2341456.6552904253 291.0911321177258 None None 441540 DCR_20210819 2135083090.9222982 47367.14323015315 160.874538563883 0.0035720632128092076 13814124.512601571 306.72924646205104 47966 11492 147946 PPT_20190813 22982796.203122083 2019.634543776397 0.6344124544400274 5.574958315189665e-05 1996283.5629841117 175.42527059557904 24080 None 744473 ARDR_20200319 31942414.24801311 5935.313100936609 0.03205568979308473 5.949725984918683e-06 2095130.2252115062 388.86858536479104 64510 6381 1001396 NEBL_20190401 22715438.95922037 5533.638032676912 1.5166869339358358 0.0003694754266628327 235812.9433196233 57.44566389817805 40283 6181 641318 DNT_20200721 5959480.04556599 650.4713493280009 0.007856752985223387 8.575053715529912e-07 277710.119215555 30.30996639576663 None 5992 528666 CKB_20210519 597262610.9387844 13954.331889018707 0.022577248832964008 5.277416095520251e-07 40047907.61245474 936.1170344071992 43938 3868 110155 NANO_20190227 116415416.2348572 30561.562653396813 0.8736728721611152 0.00022935801017331486 1691460.8018094285 444.0450151891952 97037 44769 310679 ALGO_20190725 99037780.17702855 10081.238291763326 0.6050585051241535 6.162414480870561e-05 83785597.55010775 8533.415781424834 10557 515 261967 CVC_20191030 28953359.832065847 3077.253802383249 0.043213969898605736 4.592916122960073e-06 1861022.9632985264 197.79535167419354 87713 8145 107901 XZC_20200314 28845379.966449797 5185.1650077908525 2.9833407747058387 0.0005362770124474898 37695060.525826454 6775.958889513969 63723 4093 107900 STEEM_20190623 126428933.30665165 11783.967763828621 0.4046325398273162 3.7722658031291026e-05 2616742.4838436153 243.95092375939456 5762 3745 341474 NKN_20201111 16250780.082863092 1062.4494549351898 0.025256342226955164 1.6533133971824902e-06 3774281.3671490243 247.06942489811252 13608 1023 271625 ELF_20220105 220824099.91728273 4767.683747194701 0.49621253821258765 1.0784672714195991e-05 253326414.28159592 5505.7908809175915 95154 33569 101897 ANKR_20210828 817782168.4465425 16671.963958373257 0.10672499457850312 2.176354131046676e-06 73221879.57849455 1493.1529463460565 120643 None 5363 BQX_20190821 11953323.797880232 1111.869364511758 0.08498716248249208 7.905300980621255e-06 429764.80530449416 39.975686180957176 60469 5765 396128 REN_20191024 42461465.84656613 5689.602096301237 0.05138857003099699 6.883174187362724e-06 2816075.27981197 377.19548654457765 9861 876 270891 KMD_20210707 97193482.10994674 2845.4239292470947 0.767182347117195 2.2462838534764512e-05 14793488.07182471 433.1483058389513 113695 9407 230876 DGB_20200701 276382497.03932166 30211.658852321987 0.02080646277388001 2.2748750434668755e-06 16664889.398505896 1822.0560316667022 161684 22478 171984 SYS_20200707 18556805.14871611 1987.9164962548944 0.03149539914697578 3.3724336681902633e-06 904085.5842443688 96.80679546250295 57168 4456 880000 YOYO_20191127 2084537.9121933803 290.8215743737738 0.01197063849429426 1.6726172716200086e-06 393907.3196068719 55.03935203673864 7520 None 1455580 AST_20200605 8476105.816172883 868.4248586620033 0.049739009752358516 5.0883182633607114e-06 3097187.1115940097 316.84333531030796 31847 3455 366039 REP_20190909 120130286.91973485 11565.808035129226 10.928591508756298 0.0010515181079420299 12786944.075418718 1230.3235261169527 125787 10051 201886 OGN_20200605 14613910.27105544 1495.0910713095668 0.22644295662593703 2.316575551145797e-05 8087524.861772644 827.3766887355829 64583 2245 171471 GTO_20210221 15582518.339285826 279.0591252638109 0.023971593426592865 4.2627297681777687e-07 19514959.664970916 347.02323708017076 None None 550878 ANT_20210725 124435023.30044225 3642.297340188407 3.5437729715172868 0.00010372197889033797 15205745.050630622 445.053895898443 85778 3064 128582 REQ_20201030 13719984.282017391 1018.550641150264 0.0173378157272604 1.2886661316846854e-06 153737.18146880125 11.426808431699227 39451 27543 322939 YFI_20210108 978404460.503393 24977.387712600867 33171.73586857471 0.8405906112957247 1903907376.3903553 48246.09335221904 63420 2548 18869 XRP_20210429 62692541827.17323 1144951.4457380548 1.3622756938570046 2.4879187854197696e-05 8368326797.080264 152830.42584457243 1525204 297670 11104 YFI_20210127 908111968.0434444 27867.148435207117 30226.505638155442 0.9279978828910171 437471810.47277564 13431.023711545718 72153 2776 20013 BCPT_20200927 2119858.535876339 197.4697339 0.01825437774277894 1.7e-06 73176.22269199212 6.81478056 10484 3190 1322052 UMA_20201231 436317994.99944544 15114.365528302349 7.870025838146695 0.000272902728986659 13160875.000154562 456.3693661570326 16264 None 193539 PIVX_20210513 98711612.7036664 1913.8246494411128 1.5012347851007175 2.921707291651377e-05 1430645.0448861283 27.843253439722837 67711 9739 218406 FLM_20210723 0.0 0.0 0.35709177578305595 1.1029983746266906e-05 8345448.46136135 257.7773198004064 23915 None 74148 STX_20201208 243480489.52170646 12676.021343783144 0.2656306250713657 1.3843222126579193e-05 5984020.364131173 311.85456529489176 None None 104655 APPC_20200323 2245886.6283474695 384.9476900867174 0.02076940782327008 3.560681668211224e-06 28429.044597330896 4.873840352302235 24820 3228 700856 MIR_20210624 372458251.0664314 11044.345195099047 4.804491509687887 0.0001424360923676293 55745177.327934295 1652.6463229086519 47240 None 15162 YOYO_20190712 4406113.291143702 389.3650054301496 0.02521742267218447 2.2264029990564212e-06 520691.5574332304 45.97096460342911 7617 None 1328336 NXS_20210108 21299868.8854137 544.7622601476048 0.31351448740229376 7.9650834941397e-06 329958.785079672 8.382863881540857 23945 3524 514648 DASH_20201115 759291800.709839 47189.74161456295 77.46948243804323 0.004814121289514404 322509858.2637003 20041.460532374884 321203 35533 71186 TROY_20210401 49179795.09748494 836.1102790266701 0.026067846146816523 4.4362021640486877e-07 33669991.63916142 572.992831597597 13858 None 562100 AE_20200501 38873046.01433098 4492.466615743219 0.10952684373927515 1.2706566544612757e-05 11036626.468468279 1280.3950507645181 25247 6334 567449 WABI_20190726 9016806.688887218 908.6685073314682 0.15741383583571383 1.5902873317731372e-05 287676.24611684366 29.0627496257145 36436 7999 1256578 STX_20210218 660003613.4429027 12646.1421151475 0.7148462416948203 1.3709997839548724e-05 12300353.449261796 235.90782098153522 51456 None 59729 BCD_20190515 179168868.1521418 22432.375198203827 0.9851805064950359 0.00012326834382879446 7215776.892746474 902.8567467005847 21213 None 2990373 ELF_20191127 28789101.24875287 4016.543545563145 0.06236782852608181 8.704112071876446e-06 13939972.25012843 1945.4754736766888 84189 33516 765119 NULS_20210825 64561784.47724064 1343.5041172125568 0.6776514122849706 1.4126355574288436e-05 28258717.079051442 589.0826438121949 64539 5386 365718 NULS_20190207 14925573.707034579 4382.462356236878 0.3731393426770706 0.00010956155890627607 4990511.81365739 1465.3192293305974 19600 None 445264 SXP_20210430 398985607.8580106 7443.226343662586 4.607671312821746 8.597319778869253e-05 966298887.9879882 18029.889673078524 184078 None 66436 AAVE_20210508 5671911567.483671 98976.76781254605 445.4162810592284 0.007772075706254682 542815813.8413764 9471.601688413446 192545 9113 14216 RVN_20190207 29279165.963057425 8597.019139751377 0.010291772310216293 3.021894942107616e-06 4169785.6806023186 1224.342501764897 19158 5703 264314 KMD_20210430 352438442.8418507 6576.046314428906 2.8076886490397763 5.238784521831234e-05 29213366.365434892 545.08369935593 108257 9041 203738 NKN_20210212 36006812.74485595 755.1214404696254 0.05547724998944735 1.1619203478077792e-06 5520591.401641332 115.62374635945127 14290 1031 338143 BEAM_20210420 135995121.6619732 2431.5115594613912 1.57824379799859 2.8218056586031664e-05 53244194.89826723 951.9744075169466 19180 2171 172330 UNFI_20211225 47533207.20802467 934.8454439168075 9.303816789615075 0.00018300146361216755 9792416.532921676 192.6119783253809 None None 309205 REQ_20190618 16879720.572486244 1810.8180743675614 0.023116304374622948 2.480998933376088e-06 751777.5148914794 80.68587358753834 41695 29970 444138 AR_20220105 3308821382.221305 71443.23377706979 63.03825104505979 0.0013725617913749786 114408647.61062613 2491.0738434190125 54003 None 54416 POWR_20211230 179054096.0092043 3860.6392617378156 0.41774017615876174 8.977935523879281e-06 9644752.655859651 207.28187622337524 102507 15515 175165 NULS_20210201 29929312.07093568 905.6243006747263 0.3010194250019294 9.104248503074141e-06 29204492.239866327 883.2817176371232 38056 5091 775793 DLT_20200502 2703628.7451152955 305.0938567188993 0.03270533370642107 3.7007590633778847e-06 127407.55787981732 14.416751677235 None 2572 8451664 QKC_20200713 26558387.060374916 2862.512123070271 0.0071201785654658395 7.66952293697399e-07 3836521.2948086215 413.2521087523987 50036 9207 550084 WABI_20200417 4499905.623157912 633.7859236261764 0.07610466476808506 1.0735803677860801e-05 1122210.7821737474 158.30612590318242 36660 7730 1879614 BTS_20210613 131369480.90604852 3682.2621801685045 0.04847231761709216 1.3586700709747268e-06 13477910.824401595 377.78334019505644 6066 7174 112571 OXT_20201030 0.0 0.0 0.21330816924847543 1.586316377842764e-05 3689060.9768013535 274.34569744695506 47564 1712 92225 SRM_20211104 1157749192.792096 18407.459728346577 8.717681637374541 0.00013825743382895716 644042417.5765514 10214.143580259084 None None 18455 BLZ_20210107 21683031.23023268 591.5734918378075 0.08498240647002922 2.3049410775784595e-06 13861721.716935938 375.96548648684166 43237 None 444357 ONE_20210120 68310632.99287058 1886.440763832532 0.007656494705917649 2.1243324288148277e-07 7652170.11928548 212.31325508057913 80189 1632 164688 ATOM_20200305 696621598.6068698 79574.38551606346 3.7317468787550467 0.0004260748728741607 145761418.65976182 16642.414382117568 31484 8201 85359 GLM_20210930 435591775.6880766 10486.50520558907 0.43929421273372027 1.0568446962335696e-05 4763046.483109841 114.58836168733797 160288 21406 160186 STORM_20191203 9557598.434893256 1307.7532752165346 0.001425354152896758 1.9509248517694282e-07 2576648.064496719 352.6735255988237 None 2539 2433967 ONE_20200801 59279615.849019125 5229.743821332881 0.008572988035019095 7.563161742574088e-07 10723089.572538476 945.9999300819916 76306 1359 135490 OG_20210718 5025894.120197005 159.00622575215647 3.910742238467268 0.00012397733458656787 1282002.9256058559 40.64172373352046 692338 None 316582 EOS_20200323 2000655728.9691606 343499.69991027494 2.137672406934855 0.00036661168923151006 2365423168.4756083 405671.03768048075 None 70422 93580 DLT_20200621 3357750.8434745814 358.8728174772638 0.040943526613461054 4.3759755838710524e-06 117669.75125229941 12.576346031486 None 2562 4282096 VIBE_20191213 2548285.574666509 353.72650815140327 0.013609710861323095 1.89025422986173e-06 64846.413204646444 9.006525421476 19775 None 1365160 APPC_20190520 8113349.530486485 991.4418112805969 0.07593541150925734 9.281961049656289e-06 593792.801712468 72.58223202477134 25612 3384 1307105 GTC_20210718 86235529.2804338 2728.1565560630997 6.056194662625323 0.00019177917354979188 32810922.04716153 1039.010775602042 52915 1019 25375 IOST_20210603 784649633.7657894 20852.269583445053 0.03482121498163654 9.247296994644922e-07 166579504.94028664 4423.769119532758 246448 53515 156257 BLZ_20210314 106255914.04981339 1731.7496938427903 0.3858492313147241 6.289753123612492e-06 85421113.38374819 1392.45506048358 50003 None 336789 XRP_20211002 48635128492.83734 1010114.8797990808 1.041123216492475 2.1617235066139015e-05 5450641793.35395 113173.73682743676 2064314 331583 22215 ALGO_20200719 284293007.42753947 31001.248235438696 0.35412186423513475 3.8630920533124886e-05 106714173.33093399 11641.378762674007 None 960 270923 SNM_20210813 88048196.42403026 1982.33474064 0.20141447779740465 4.53e-06 532407.3178909208 11.97433857 32376 9708 None MTL_20190903 19558249.11604399 1893.8700027184002 0.3918474083825299 3.7927606263230954e-05 8334299.731666742 806.6916660421648 None None 253517 LINK_20190816 883271812.5716602 85758.46154937638 2.4230464694438836 0.00023525797441350691 82741473.450394 8033.519657753914 31244 10321 91625 NAS_20190616 70519762.10660295 7997.945788865087 1.5516984518981165 0.00017598101293310442 9016146.13945536 1022.5379347600411 24291 5153 467000 MFT_20200229 8166675.351346292 934.386487401851 0.0008905935611760065 1.0194562197685646e-07 1210660.750740712 138.58348927905428 18474 2495 850762 ALGO_20200407 130710762.87092887 17966.12363660101 0.18648302029177272 2.5592405182133615e-05 83021711.05789387 11393.66610956473 None 830 317295 PSG_20210131 0.0 0.0 8.127907010663424 0.00023790528426490364 2869791.558859976 83.99930950192753 8606355 None 40302 ENJ_20191011 55812569.06433172 6518.275711364927 0.06366529180385642 7.4353847561417e-06 2317392.3386687753 270.645169145265 49229 14037 29190 INJ_20201124 19035060.179812968 1039.672961414538 1.409140080800286 7.696560068705543e-05 8045850.376983872 439.45503767875607 None 1718 178085 PERL_20200324 4016900.2093787654 624.2699679350868 0.011732848286540244 1.8106664994666078e-06 1904912.6004217805 293.97477456112404 11578 475 685227 SKY_20201208 8415845.08779755 438.1657102085716 0.4409296786133955 2.2978854496188104e-05 432036.63452311704 22.515397450562766 None 3809 871030 CRV_20210110 142665971.56556398 3526.1284686633458 0.7706345560994837 1.912373468135505e-05 87272967.413498 2165.7283085224453 None None 29021 VIDT_20210314 42448044.55955373 691.1395592480466 0.9119583147084873 1.4863471080341958e-05 7402401.836942637 120.6473847038034 25963 1352 None BLZ_20210506 116121603.75619051 2028.4069625816985 0.405560345057967 7.076422051789279e-06 24056401.536441185 419.7482628505959 56068 None 200625 LSK_20210814 608962465.2638698 12776.467682340322 4.211904262443453 8.82900906620187e-05 61904633.43073133 1297.6471822338058 196687 32622 284613 GTO_20200310 6066099.192196931 766.1887223727573 0.009228529168006889 1.1644569888002582e-06 6311493.195694853 796.3850173406811 16912 None 1191106 LTC_20210420 17498490056.874878 312608.7964568228 261.92515569580087 0.0046804669612423465 11485534248.092134 205240.55216310226 165706 294475 95869 FET_20210408 418088712.6740416 7422.546216766711 0.6056841491712858 1.0778635569362873e-05 54408303.6652508 968.2394329740386 45587 1957 141764 POA_20200411 1907954.4539216764 278.26324966196063 0.008677590720327904 1.2644828000915187e-06 214672.4608080354 31.281682104364563 17313 None 691851 BLZ_20200530 4078448.357542006 433.0034182360465 0.018136119815683548 1.927396905665055e-06 362722.9748052265 38.547999591877854 36056 None 859932 HOT_20200605 116133559.3535776 11881.945989853813 0.0006535884932784415 6.686395313854648e-08 15983674.51708497 1635.175152076688 25298 7044 546031 TOMO_20210220 166946622.1130283 2988.818024137334 2.086702651392507 3.7349982047361296e-05 30263835.178527787 541.6937098575122 39990 1843 133375 NULS_20200901 45047638.417283334 3854.136391436296 0.463346251199909 3.9694463531096376e-05 32199256.844638158 2758.4818550662003 30414 5169 285430 WRX_20211216 516045773.1815865 10577.657900851153 1.1332679255885727 2.3189571866657223e-05 10391403.496438947 212.63479953423465 None None 612 ORN_20210704 164299175.16690886 4739.368413250291 5.66641577928928 0.00016313581766499636 5006620.427407965 144.14034355698396 None None 65422 SOL_20200801 37711209.168728195 3326.9440147428268 1.538097031663773 0.0001356922064830609 5087571.122031662 448.8297792508104 81569 2100 111447 BEAM_20201130 20775544.538561333 1145.1136427608492 0.274309617414504 1.510480897080833e-05 4653594.637315268 256.2493385640534 16218 1593 425445 OGN_20210711 244385131.24751526 7247.3670427037505 0.7708079013845398 2.2866414994262266e-05 83931096.07801162 2489.859367549038 None 5929 54387 IDEX_20210624 20702035.97830389 613.9935028892688 0.03573839200466702 1.0601349950735345e-06 685567.5289767961 20.336508952598656 52931 1982 6709853 GTO_20200501 6335401.25505 732.123617980257 0.009535585046322992 1.106254337259507e-06 17720822.106257077 2055.850398231247 16760 None 966534 ZRX_20200313 91732511.67353696 19090.28894503203 0.14862486073931003 3.1193154958240966e-05 48020799.95409047 10078.530918282955 152988 15983 118984 ATOM_20200718 786371681.3875232 85892.09794725403 4.138080211884812 0.0004520208424978691 193595209.29452398 21147.262771159145 35989 8731 173745 LTO_20210708 54363579.587051004 1599.9940449660012 0.19258153438864073 5.668070910974295e-06 10390511.145476256 305.81412782274515 10797 4305 318165 HARD_20210603 49533974.816160284 1316.3783578779594 0.7649752431573764 2.0340830368141602e-05 16136555.76474098 429.07394255257964 31924 None None APPC_20210127 4134730.2202875605 126.87368213407693 0.03753328595933083 1.1523267136851776e-06 154960.73946995405 4.7575210936 24245 3113 531818 REP_20190916 114875424.20100164 11148.709745343842 10.444579268114097 0.001013526113731196 8725799.280558964 846.7383134352199 125741 10046 187186 DLT_20200315 1888955.5433171135 365.4457156127658 0.023087713362631507 4.456140055938882e-06 33956.23755835111 6.553864731258 None 2587 None NEAR_20210212 974276610.8247341 20432.165518091904 3.443675961544189 7.212464878370538e-05 96780556.31137589 2026.980386946618 37725 None None KNC_20210707 149480185.41220966 4376.162755842503 1.619021520383952 4.740440018380416e-05 46931988.80647656 1374.1526908650503 174926 11219 114765 THETA_20190830 114138341.6241411 12027.65005076746 0.11399111950388774 1.2018888049838575e-05 2740943.579609273 288.9970216769747 None 4027 248011 WPR_20190905 3273230.188750629 309.908553528866 0.005382274158987521 5.095342295542622e-07 78738.43664427272 7.45408492149231 34495 None 785340 BNB_20200605 2622151848.8793354 268654.228410776 17.76777119114562 0.001817693292521072 257877264.18799347 26381.57416400053 None 64176 995 CDT_20200229 3728444.3458120725 426.61996467213555 0.0055315774841354125 6.33205563115538e-07 77055.20582479374 8.820591438013341 19264 292 220223 REEF_20210826 311209157.7912709 6349.141807128457 0.024572357453392247 5.014341315276481e-07 67795468.69143315 1383.4635943774936 195754 12821 76465 WRX_20201031 19190772.24503744 1413.0129071890647 0.08063543891827046 5.9388040349739725e-06 7420492.7470981935 546.5196551187456 39569 None 11546 MTL_20210624 75059921.27827121 2226.4162535944124 1.1628151119217132 3.447298874902931e-05 21770628.811184835 645.4152808755342 57194 4188 153721 OST_20190511 12624725.50077487 1981.242220999874 0.02022647043111124 3.174437514681751e-06 408077.8125890078 64.0456535214011 18168 749 1072673 SNGLS_20200913 7331560.580689007 703.1 0.008353388942336674 7.999876859611685e-07 256436.50091897568 24.558421065063612 9060 2123 759166 ONG_20200530 0.0 0.0 0.12071062469960371 1.2874709666684158e-05 7727377.6176149845 824.1838161239592 85230 16480 164481 ADA_20190605 2558656183.3409514 333963.5073269321 0.08237800551134446 1.0745034425788225e-05 227552475.9490182 29680.970940827563 152163 73536 105576 POA_20210825 11188397.55274601 232.75474924871997 0.038455825110996864 8.000051739907903e-07 211576.2749408704 4.4014688062951475 20032 None 244986 AST_20200229 3385979.8897223445 387.43413792845115 0.01959973779525331 2.2494590701736047e-06 7349783.601223174 843.5336002091151 31795 3487 361112 DOGE_20200612 305790127.8598937 32882.01491124738 0.002447400714129744 2.631722199111798e-07 124324062.61402173 13368.73008069822 140595 157137 103614 CND_20200914 19362006.18378457 1875.7254396647652 0.010139643151746914 9.818373920595263e-07 43201.840869934946 4.183301338824702 34309 5929 303234 TRB_20211207 86120606.54658496 1706.2253431874003 37.03020042881092 0.0007335015486350154 25036360.117881157 495.92518285052824 26658 None 355372 STX_20210707 912373908.8397512 26711.763011921317 0.8689339272868175 2.544209024017194e-05 25127622.097108092 735.7282399039564 67685 None 54271 THETA_20190318 95825508.0064975 24063.228142516913 0.12897626170736018 3.2389479252196804e-05 7117826.176749287 1787.481511874275 None 3931 345140 GAS_20190104 26356962.638774525 6989.9303125806355 2.2279497673972584 0.0005907686810814935 522644.9376545615 138.58582675892546 315201 97819 129908 CKB_20210722 242146984.3957326 7524.543244085871 0.00896205638317263 2.775057603414319e-07 7767385.192638168 240.51334220514852 None 5150 122182 QTUM_20200129 197398536.74007922 21130.88411952625 2.0492552428863764 0.0002195604552587727 412465077.9959071 44192.16230749828 179719 15212 148036 SNGLS_20190615 9929341.060240721 1144.3255309284343 0.016813126438029555 1.93766028591817e-06 1940927.2635848073 223.68580230250558 5 2182 None BCPT_20210107 2678167.1264255927 73.1793226947756 0.023262177351973872 6.299945148194549e-07 475448.3541880049 12.876260493 10384 3212 2139942 RDN_20191203 6518557.682616729 891.6077123499554 0.1296167343877332 1.7741030031610813e-05 1205557.245253544 165.00822516396656 25270 4358 2359051 DLT_20190520 9610184.370849349 1175.6832215029185 0.1219506215671596 1.4919099789933577e-05 1716604.1213467885 210.004572810481 15136 2675 2919270 ANT_20201030 105515532.2577636 7833.31167320066 3.0148306173995363 0.00022420497075439024 19361119.517837044 1439.8351967823478 75996 2680 86369 DOCK_20210909 62324598.73006565 1344.736035444268 0.0898785318651909 1.9413498836014656e-06 8709176.32130673 188.11564994178096 53659 15185 267340 PIVX_20200404 15290793.142802034 2273.828323961656 0.24327065224472583 3.6157140207809284e-05 236483.59734476963 35.148385171591656 63710 8504 213367 DOGE_20210610 44769090935.4369 1195319.7604203646 0.3445023012056359 9.198096265462316e-06 3815915047.7118497 101883.6560070723 1808952 2056483 9227 SNGLS_20191213 4340130.082291916 602.2059722216968 0.007413861812355667 1.0299488692398094e-06 204465.87438133938 28.40481808903276 3580 2155 2409727 STMX_20210823 298133609.50755835 6043.161048767616 0.031910727709099924 6.476209530401256e-07 42322734.067449875 858.9302513527285 70167 4760 93146 AE_20200914 51587847.35725252 4997.655550104123 0.14120939103938326 1.3675831926389584e-05 9062663.519107455 877.6998624558138 25732 6356 378824 MDA_20210114 10871157.181246514 291.95603590281706 0.5549993121564327 1.4850543556929854e-05 755954.5033486192 20.227656202701162 None 369 3261426 LOOM_20210125 54064931.62448976 1678.38469499946 0.06463395794341606 2.0034144499808124e-06 92469046.41581102 2866.1995901220084 24086 None 299124 OGN_20200511 7747696.885786666 884.9428882584405 0.1533513238825663 1.750465677991572e-05 12514942.937053023 1428.5483501994622 65160 2227 153973 COCOS_20200113 9952960.99709709 1220.2533464401008 0.0005749840283159838 7.040537372355744e-08 2593407.3783754027 317.5563262630469 13927 188 47947 TKO_20210506 300783544.8411937 5252.409387348505 3.9920120513320163 6.96546456163429e-05 149115741.79056782 2601.8468924146637 235774 None 35525 STEEM_20210212 128488190.75657059 2694.60638948941 0.3455592336378009 7.237422637441424e-06 13842578.917334761 289.9201765272371 12319 3869 197343 BTS_20200526 56704878.28847793 6380.479968664901 0.02092279616148733 2.3542503894934674e-06 24680971.612225723 2777.123410403149 13146 6994 152581 LUN_20200106 2460837.299938396 334.96386947512235 0.9144267883093937 0.00012449882482806562 4295203.025088398 584.7900956730585 30169 2164 3002754 BLZ_20200502 3605379.627851052 406.85738223787274 0.016321238068753793 1.8468267574772444e-06 1056162.3814413669 119.50986426826493 36032 None 714156 RVN_20200322 85213449.1620961 13836.949877736222 0.014760529268556616 2.395352971802732e-06 10579665.137873711 1716.8782953242753 30202 7607 202553 STEEM_20190512 106983284.08786462 14617.44012894548 0.3431206368431698 4.7107952767594625e-05 1684527.0459549532 231.27323744404293 5498 3726 297313 ZRX_20200325 98627863.36969133 14591.123928831354 0.15108605612596648 2.235909231728154e-05 33086168.351758186 4896.39290064795 152654 15946 132419 NEO_20200324 467853079.95047075 72201.21473064646 6.633391180355462 0.001023695090467127 505610774.5656713 78028.15385635423 322188 98942 219445 LEND_20200109 20830499.034451548 2588.2836781565093 0.01837272387751013 2.2896399748292114e-06 5010477.958204694 624.4142513973721 None 5775 450933 AVA_20210324 168778734.3097278 3096.036476402555 4.3771325688783635 8.029675672854839e-05 14463538.391164772 265.327861414757 None 9650 50242 EGLD_20210304 2460440350.249416 48393.161119447235 142.2034218973274 0.0028065545304535324 172379002.07607687 3402.1056791514866 168357 6868 28708 NXS_20200325 8110729.216826371 1200.1063222605972 0.1375737101313677 2.035941213988389e-05 44966.52177685195 6.654555935707478 23639 3532 599319 NMR_20210508 388282330.744896 6776.265052961615 68.19423586712745 0.001189766527223785 17653811.39832267 308.0013085060584 28041 3209 699246 WING_20210710 25076129.268585626 739.3460221532933 14.357681353990387 0.00042332269397397476 1300548.8494201826 38.34545627579983 None None 421675 CVC_20210202 102544932.64339374 3071.5737625081356 0.15385348983651964 4.606216824574838e-06 19817187.57773915 593.3064172501482 87835 8228 155763 PAXG_20210201 112787098.22014427 3412.030469967333 1877.2286535520766 0.056776256744626476 2890710.8948922134 87.42874429938819 None None 71165 GTO_20190902 13052484.904373894 1340.3776678618806 0.019694382621997842 2.022443300432936e-06 24975144.790309835 2564.7320471008875 17361 None 900303 BCPT_20190225 2576361.0789313796 685.5564548525999 0.030563668696333337 8.139026405963903e-06 494539.98632313596 131.69472707875252 9871 1320 2528232 QKC_20190821 58102720.28682118 5405.623054227544 0.014512176079794013 1.3502125518206097e-06 4357715.486298544 405.4417555652248 51371 9239 287849 CHR_20210220 27737583.648562185 496.89719620794193 0.06188476005562192 1.1061228144176822e-06 10039777.34824194 179.4501064007182 38287 None 468046 COCOS_20191220 11227202.742751393 1572.2333416648678 0.000650177043315965 9.099027111795156e-08 3016652.8634668994 422.1712604857485 13566 184 42934 REP_20190929 91635630.60432181 11186.427205327682 8.330511873120164 0.0010169479277570615 6308123.516806648 770.0647014442559 125597 10051 187186 HBAR_20210725 1645855160.6240506 48182.99681496373 0.1807315180469374 5.289794479034316e-06 38304503.557608366 1121.1268163451396 None 23504 41411 HNT_20210725 1036354220.2858399 30333.24777159508 11.267328596979876 0.00032978557269917186 10322975.864154113 302.14513387248763 None 43085 2371 REP_20200217 159229276.03645283 15973.036871136741 14.475047020581385 0.0014517454811785208 20510076.76808552 2057.016548848267 129604 10107 295562 DLT_20191024 2986433.2731572934 400.28417640791395 0.03690604238834481 4.943331137098019e-06 144899.69294002157 19.4083981243288 14956 2637 7624999 MDT_20210519 30979488.564221367 726.0491524254807 0.05125052163366464 1.1979773522202106e-06 5236308.301781889 122.3983396621056 32712 299 346465 XZC_20190816 55112378.18597151 5350.960710265933 6.756064008828512 0.0006559585025580556 11210305.366142556 1088.428870949742 60847 4041 203720 VET_20190329 324200048.14370733 80525.33057376578 0.005846250162058307 1.452087423457463e-06 11362328.048079021 2822.166893728106 105839 54897 762391 EGLD_20210930 4012334141.887151 96577.289906673 203.51883274940175 0.004893995361937113 163877859.8785515 3940.7531742153656 335140 11182 41484 XEM_20211028 1406457606.0447443 24033.3598972386 0.15617414085785591 2.666720819861876e-06 80381014.0114054 1372.5301923121892 372204 22319 128433 HC_20190305 47478044.58261046 12786.061651123997 1.081541561332041 0.0002912642507292588 8879728.680337599 2391.352873737243 12248 786 443467 ATOM_20200907 1237650675.0663762 120521.08018500918 5.188742161905485 0.0005052740831905664 301466646.13062537 29356.494981482818 41780 9383 98949 EVX_20200610 4948500.25182117 506.2474516711924 0.22685782949402727 2.3220482527055518e-05 818122.80837351 83.74058069405464 16634 2847 2249084 SYS_20210314 168150519.04749674 2737.8287227994497 0.2778262682024979 4.528126599851401e-06 10356444.342844384 168.7935824503602 63107 4806 264718 WABI_20211221 11611220.67794274 246.11161299878938 0.19631617995871248 4.16524616025794e-06 513049.7539767915 10.885391709550087 45830 7949 525909 OGN_20210127 41482319.31720894 1272.8798046876718 0.20038979905870616 6.1522595931397865e-06 23596098.111336716 724.4346850390829 70457 2536 231099 SNGLS_20210704 7409409.23788678 213.84642672577309 0.008330185900738654 2.402532269721559e-07 28701.912851804384 0.8277999152825798 9514 2138 None GRS_20201228 26443223.486687977 995.9902843267524 0.3435449874602456 1.3063386608999395e-05 28364552.36221951 1078.5694072796168 37646 106780 4622785 AE_20201201 50177139.70337793 2549.9475618896313 0.1349148743034609 6.868072929979293e-06 13067487.405109724 665.2228449474765 25554 6343 626578 BCD_20190513 166054225.7480807 23878.669120356393 0.8874267123682984 0.00012753065053073743 4720182.06190205 678.3296925685263 21211 None 2990373 XRP_20210902 57176500918.343796 1175612.8975499778 1.2318568493947302 2.5319293448040748e-05 4776288908.80461 98170.70914860441 2003207 327951 21062 NEAR_20220112 11030496530.274855 257308.43854131983 18.096208842649432 0.00042294864186147085 1163236650.6173604 27187.42725728112 271554 None 8074850 LEND_20190621 10604931.060669016 1108.6571120249066 0.009332418238212126 9.758444192142865e-07 2276947.94799528 238.08908807737797 42038 5866 977023 NULS_20210203 36619381.447186574 1028.2676130761952 0.3674307081043506 1.0345870512087726e-05 68320752.34648839 1923.730492510822 39114 5095 775793 YOYO_20200309 1794167.7862271601 222.09179592810776 0.01015953217479739 1.2629052033307659e-06 239266.63204202626 29.742617021174883 7526 None 2563708 LOOM_20190122 25617759.636265785 7253.461682332583 0.044197990294992925 1.2516200310352313e-05 973392.887737168 275.6500981668136 16709 None 360086 ZRX_20210624 539230872.9117801 15995.209578815327 0.6422099239204673 1.9062991557473117e-05 94632385.68698819 2809.0135362623328 220705 19470 58328 XMR_20190318 872134231.5179389 219006.0095695575 51.722899387926624 0.01298903964506137 324290313.207911 81438.19825673112 315115 157495 112141 XRP_20190719 13932325656.554388 1298156.4082522779 0.32269232604642406 3.0252967687738243e-05 2138625334.6926086 200499.8505521506 934773 203750 39002 TLM_20210523 225496388.81155777 5999.572035381487 0.18230362529659366 4.854333068648786e-06 28622326.814139884 762.1478033116668 45573 None 16975 XMR_20210427 7192212117.816104 133421.08450022133 401.8875248575369 0.0074553236939129495 777134458.7334826 14416.443868482256 395642 213749 39530 WABI_20200105 8641999.38662175 1176.6285049542705 0.14576142596660022 1.9823182124430828e-05 820305.3748051645 111.55943854541 36618 7859 2468394 REN_20200430 60190846.21415231 6890.351106168306 0.0694378189442311 7.920047547735264e-06 2859244.487596277 326.1241876066133 11838 878 420454 KNC_20210724 123803581.03470694 3703.7470166306753 1.3435444797606912 4.018093098949116e-05 33437749.96289506 1000.0114949244246 176446 11245 107693 TNB_20210125 8285986.579649366 257.33430827195514 0.002413772655104468 7.48798016321976e-08 224849.9883503535 6.975272708086801 15862 1413 3029706 RIF_20210723 119391368.06599033 3691.655251177794 0.1586476311059012 4.90036710771223e-06 3347276.223577835 103.391914471756 44729 3361 493990 FUEL_20200229 2681675.949284825 306.8227476667355 0.0027089809667066476 3.099468389547549e-07 76752.67612055561 8.78162291919138 1 1475 None NBS_20201229 0.0 0.0 0.013986004055463908 5.150788564531813e-07 4393547.14066327 161.80627633250876 None None 802802 WPR_20201106 3580124.5086473376 230.21557742450426 0.005933472479291503 3.808237292774489e-07 154017.13235685014 9.88516908462306 32634 None None QKC_20210806 121357949.63017769 2960.6246032882286 0.018705312786634447 4.565514036996463e-07 15405607.580485748 376.0135874735177 75152 9538 280880 NXS_20190224 17825030.58344986 4331.959134224553 0.29853729176494137 7.255254580985421e-05 273857.84216452413 66.5547795438358 24 3505 888108 DLT_20190708 7380976.187954225 646.130438464539 0.09203555765593861 8.047903844222503e-06 332207.35353490093 29.04934685773592 15076 2675 2880330 EGLD_20210427 2911265733.086755 54024.750090664056 165.90121545155597 0.003077595560706659 129062545.7533613 2394.20981204342 None 8130 24132 WABI_20210703 9737617.76854444 288.0963669169245 0.16504217916953076 4.874544675332366e-06 545870.5066695112 16.122364507642676 45497 7890 437012 SNGLS_20210420 27982943.61138683 498.41246318055846 0.03140618667431148 5.600139619916009e-07 1633429.5673085006 29.126215580029942 9455 2130 958581 DOGE_20200321 222079539.2994962 35989.64568408781 0.0017757305670515226 2.868922522009819e-07 158961780.25948435 25682.332668432256 138956 150672 105974 AST_20201014 30653086.39352773 2683.1237682173837 0.1760877066241815 1.5410610079053136e-05 21405413.58370689 1873.3305614764267 33858 3469 145555 OCEAN_20210828 374552647.3143768 7636.466919167614 0.8635876644021974 1.7604640236697492e-05 39628379.156748235 807.8431258057918 120708 3425 157087 AERGO_20210509 78098316.05823204 1331.7455826421533 0.29601610636536246 5.039215533473345e-06 1116706.6320267022 19.01020007166788 None None 378551 REQ_20200106 8722745.71807759 1187.9203038216142 0.011372411986874274 1.548349136232221e-06 859790.1438115735 117.06006852795392 40133 28648 1668382 GO_20190615 16574110.564455554 1908.9001426105979 0.022691567282307708 2.6151010436828926e-06 2336927.356191962 269.32036435198535 9824 669 891610 XMR_20210814 4883605487.272385 102494.8782132473 272.3947551158939 0.0057058955568939996 248654189.04405406 5208.598204711775 432945 231187 35880 CHZ_20220115 1424727406.4864025 33055.295835079625 0.2674268824029084 6.200577639243908e-06 99106616.84907839 2297.892668133747 430984 None 51051 BCD_20200903 161701491.17649454 14174.011415441857 0.8611952138077074 7.549364418680113e-05 10271432.593193866 900.4089491519535 28149 None 3034323 LTC_20210806 9589445531.089306 234023.8018681626 143.33057178225835 0.0035030533332616833 1764040351.1347475 43113.81274218567 189710 339771 80775 XRP_20200913 11065127814.291183 1061169.9975730432 0.2462457036617809 2.3583580056625807e-05 1419186192.1654565 135919.0868327287 967021 218224 21508 NEBL_20210916 24706589.930374894 512.6549329181065 1.3597716238695865 2.8211497347188435e-05 522734.0253253079 10.845284097621695 40768 6172 1297789 ADX_20210418 160969361.55681783 2670.243614741061 1.3742527507508162 2.2862228880472394e-05 3550211.371392065 59.061730021989526 57998 3836 11197 ETH_20191026 19637705780.19648 2272028.1719567333 181.45319156222183 0.020958423482375022 11568719162.372278 1336224.0325793484 447855 447087 24016 MDT_20210508 40918378.02564856 714.080393716613 0.06760965830279342 1.1795675593819018e-06 11283677.21553687 196.863287407475 31457 285 371904 ORN_20211111 262352204.6569744 4044.7754925880513 8.429723676921004 0.00012980692820202324 17905767.119476233 275.7258382316227 None None 69672 BNT_20210826 1111422923.748278 22674.253227492034 4.40419245354481 8.987385203933654e-05 164354414.83037534 3353.887123753641 None 7769 39587 YFI_20201130 736944419.4035103 40617.1683015603 24596.866014728057 1.3544219336342904 392827712.3147805 21630.98621507054 None 2179 9390 ALGO_20200625 192227267.57515782 20660.31272121213 0.23888532484451894 2.5691363229452767e-05 84784625.69116384 9118.31907766879 19000 915 276496 RUNE_20210428 3456699926.481938 62740.97339137463 14.699469802772159 0.00026675103689169263 170360092.64272183 3091.5218009319406 1046 3981 83196 UNI_20210729 9913956668.465853 247816.0468889776 19.07803500737772 0.00047664701548225856 385362059.2539111 9627.913742292742 580039 49508 1613 STORJ_20190625 40614671.070528105 3678.5649523611073 0.28270034585598147 2.5595948615737775e-05 6380827.652028008 577.72598831694 83700 7756 209007 ENG_20190821 31648487.411229465 2944.436892748659 0.403761095264524 3.756416694756934e-05 311407.70371503173 28.972011192526786 61566 3475 308569 LRC_20190220 44015403.21187056 11241.717135476527 0.05579292386695255 1.4248166183278496e-05 2215134.813466877 565.69196867878 28488 2470 544203 AST_20200707 12871615.58084157 1378.2543141067201 0.0747209863048964 8.000900981094971e-06 3422250.9152623797 366.44444967238974 32152 3457 274586 KMD_20190625 161478900.22736964 14628.548246418311 1.4109313677189796 0.00012774702018534338 4077455.4817249775 369.1765592899526 97308 8414 339259 IOTX_20190801 25460720.438327853 2529.978777241536 0.006234309055388056 6.183670537232016e-07 951944.6343853937 94.42124117407356 20396 1757 857691 ONE_20190922 21011228.998364903 2103.102933666942 0.007628100093879397 7.637677728171856e-07 2160687.495194212 216.34003954438907 70797 None 165581 LTC_20200308 3882319278.0156283 436596.1337115596 60.43170477676251 0.006796001763311619 3829713821.3963246 430680.25268081186 447934 212111 137206 ZEN_20210131 392629227.1573267 11477.3851168473 36.68723246169654 0.0010736867586177768 58764540.88794208 1719.8001918926607 84691 6483 437186 COS_20210616 52296503.06778141 1295.0830521703936 0.017363947624521394 4.299414969924396e-07 11118087.630193444 275.2903511795896 None None 231566 AERGO_20201228 10663080.076309133 401.6274401019429 0.04074064898912118 1.5491736682899988e-06 1652525.1439813052 62.83769411544174 11382 None 826479 BCPT_20190430 3822811.873327097 734.3641396024352 0.04559084399926654 8.755922929655552e-06 692065.9460564511 132.91432126167544 10708 1743 1630798 PHA_20210509 164214244.63030556 2800.3384194633654 0.925640396723767 1.576504733664628e-05 52635227.147531435 896.457037196048 43952 None 179387 DASH_20210131 1037693127.0562004 30373.462448347032 104.28343126957198 0.0030523945866701087 421103881.360765 12325.785527412158 335468 36287 65272 JUV_20211007 38896712.794690646 700.7253898872078 14.336109278459189 0.00025842562538278224 61743867.49080063 1113.0075294443295 2713424 None 34891 STORM_20200113 7481998.895928041 917.3083460771317 0.0010599049592121517 1.2979731066598603e-07 1093279.362442323 133.88438257437528 25922 2521 3220539 XRP_20200612 8386316203.510396 901791.6189256805 0.19011049188788876 2.0442831404636785e-05 1464763764.6771228 157507.97544921353 951696 214388 34981 NEAR_20210106 367328449.4261304 10780.435471683542 1.5036654917749683 4.408731788389384e-05 56520795.66680101 1657.183927704171 34568 None None OXT_20210325 0.0 0.0 0.5983549613904844 1.1374055724254475e-05 57832366.80174825 1099.3283337034763 60999 3019 118033 AMB_20201030 1969915.9340447262 146.24347536231775 0.013589545871681579 1.010618545911508e-06 215397.73116335477 16.018558965577196 20154 5499 395288 TROY_20210125 7367166.797910813 228.64016160110458 0.003887375112082297 1.2044598624497582e-07 1110317.7688538625 34.40195886917881 None None 965237 BQX_20190312 18181570.631479338 4702.621001876493 0.15448824575633713 3.9980828906231055e-05 3343006.516651921 865.1543094448875 60549 5821 398770 GAS_20200319 12466274.322739074 2316.3947700736267 0.9008892934048242 0.00016721039145013245 8009597.514900567 1486.628762966893 322452 98952 219445 POA_20210105 5227542.8612103835 167.0873130039628 0.018146726879344852 5.800216114123777e-07 144240.97832300366 4.610356745592177 18168 None 255706 WAVES_20200310 108540136.6220381 13709.34202849483 1.08683737668615 0.00013732401366789066 58518996.26791285 7393.98884847766 141230 56861 51296 XTZ_20191118 798333778.3159513 93928.18767588965 1.1561020023766337 0.00013585868758184643 27141289.32434659 3189.4936080939647 45710 17579 238038 PERL_20210930 0.0 0.0 0.07637766427231556 1.8374913236614747e-06 7665719.47333878 184.42162582586892 852 694 2872538 DOCK_20200412 2477054.5089083705 359.91240720984365 0.004415788542168026 6.416612537379107e-07 270620.0252178798 39.32398098542878 None 15007 604505 WTC_20190729 53512340.32890476 5605.763890982646 1.8341498454138823 0.00019225525932313006 8263600.929942482 866.1891740750606 56113 20033 613904 FUEL_20200621 3797001.581382252 405.8674286454816 0.0038361379285094506 4.1e-07 730673.25390039 78.09313421 1 1466 None DCR_20201130 287496983.23159534 15849.01011695665 23.663286745140702 0.0013030145617049453 7808380.983580033 429.9670723904871 40894 9981 350460 ENJ_20200501 125011871.05986454 14446.463553965865 0.1363654520922002 1.582020107801576e-05 19969706.565008517 2316.750822736255 54500 15334 90947 WRX_20210708 498790565.4814447 14680.084360111337 1.1465697346244297 3.3745907056245655e-05 16523857.051141819 486.3311209249499 286905 None 1268 OG_20211007 12281099.915486908 221.2587409736723 8.919279022970192 0.0001607669617641922 12351102.117180513 222.62440234290992 720399 None 488504 POWR_20200410 26570266.007086903 3645.692876899476 0.061859722532359 8.483872886988994e-06 1142920.4297200185 156.748062369909 82287 12790 242937 CVC_20210819 206711781.13178203 4585.932316104657 0.3085623793900936 6.8513285826056816e-06 48737588.72907599 1082.170922349062 103936 9857 272876 BZRX_20211111 113834500.88002007 1755.0262250417036 0.3326329622895917 5.121985992215621e-06 22239046.670647915 342.4437696830514 None None 278581 SUSD_20210602 242131504.78090844 6599.018437894674 1.0105062861657932 2.7551604872572945e-05 40597574.11320882 1106.898923901013 132446 6732 40897 QSP_20200412 5306366.727269941 771.0073458139601 0.007438676120586797 1.080919115602062e-06 225421.7126000436 32.756183260459 54990 8297 386866 VIBE_20190716 4260946.653543086 389.17510402652135 0.022714470856962952 2.079563049048224e-06 257030.35351953874 23.531731336774 20497 None 1758563 XRP_20190916 11220417029.639263 1089087.6266759606 0.26076181400840165 2.5310233283052913e-05 1221139575.904966 118527.04605102635 938358 205425 30361 BAT_20190806 298886703.0593054 25304.600241433367 0.23398977733934673 1.980989152106936e-05 31704851.664637905 2684.175690535429 None 29242 37775 DOGE_20190812 349219977.53246 30260.33484566178 0.002894687882018233 2.506592434075711e-07 47970746.4139438 4153.923148851551 138036 138706 127721 KSM_20210806 1938301986.5628436 47308.37584502321 215.52553559772898 0.00526752552850758 128895209.4412686 3150.2476231005267 97191 None 59674 ASR_20210428 11724312.936890477 212.81844029960274 9.549081321250165 0.00017328702177586 2742812.2013682798 49.77376793387431 1961078 None 190056 WTC_20200109 10035634.617570005 1246.972971585498 0.34312602363713796 4.276094635512766e-05 9075437.548539422 1130.996401989029 55197 19570 1004613 POE_20200301 4227381.715453466 492.9461507028544 0.001625078280484095 1.9000300611224818e-07 44643.52371323457 5.219689297940269 None 10467 759696 ZEC_20190812 430598902.8564019 37311.91748157698 59.99130645837223 0.005194817576464569 171744634.04988936 14871.855545351771 97 15350 186923 OMG_20200502 106006249.28206894 11963.07318582496 0.7539736517729023 8.537286856663544e-05 138911668.9828951 15729.0478660131 279002 42845 632859 LEND_20190201 8055457.938692009 2349.8407783683624 0.00723019712134687 2.107675323961577e-06 131002.24080239501 38.1884733830667 11742 5962 413082 BNB_20210814 63016725340.47912 1322566.2076928972 410.21123138822196 0.008592758849450767 1593153826.498612 33372.04248370894 4742566 589204 143 IDEX_20210120 19447311.744214043 537.028112527851 0.03429107503145108 9.483341947235572e-07 956679.9004657172 26.45738759091849 44607 1941 441014 CHZ_20200913 69366200.42597178 6652.250224592333 0.013013353075476535 1.2463151126790543e-06 6675538.4665567605 639.3298043852074 32571 None 244050 BTCST_20211120 233762600.2543257 4020.106520748838 32.081133994792744 0.0005514165509805436 6068586.953395392 104.30801129754236 None None 2435724 BCH_20200105 4087532902.428845 556224.7086395326 224.48750494850444 0.030529728052145676 1621509868.058547 220521.20592214662 999131 280565 122390 NBS_20210825 0.0 0.0 0.015331111464009213 3.1959312408039255e-07 3181032.703151086 66.31196843024536 None None 3265664 REQ_20210804 43890721.1926106 1142.325051761256 0.056805250170022664 1.478705108825969e-06 1028137.4647050126 26.763584652549994 43410 27799 309382 RSR_20201229 185573108.98300806 6838.521361626302 0.01969610508640926 7.256486397146541e-07 43419646.19347324 1599.6770457386629 49350 None 180905 MITH_20201014 3392765.9592136624 296.97632729741673 0.0055222761823750036 4.834770551088222e-07 744700.8144260255 65.19879571488381 120 2106 358765 EGLD_20210127 828426681.4648623 25436.854259551605 48.5063414308269 0.001489215547885711 101108898.43008792 3104.190898140826 126262 3509 51208 HIVE_20201231 42318305.47775007 1465.4654893718498 0.11310820466523801 3.922040452724823e-06 1909843.077862369 66.22403593003695 10121 97 154883 GVT_20190302 18208102.420705236 4762.437779669918 4.100403251049736 0.0010723418567047908 1703800.8882151665 445.5798359481307 20771 5808 151314 ADA_20200421 1059941619.8015928 154786.81848656212 0.03403570805043787 4.9711289193929175e-06 140386733.6710988 20504.364140664104 155045 77994 53187 DLT_20200208 4259809.463355333 434.89721348784906 0.05186476382052036 5.291027679087438e-06 443311.37869652343 45.22478465832115 None 2599 5190517 LUNA_20210708 2976582874.9187374 87603.76642759467 7.124870483582119 0.00020969195748921706 376457390.18532324 11079.511864972776 87936 None 21739 PPT_20200730 12006500.31379273 1082.5226787725367 0.3314457684290725 2.9881874642453716e-05 1221546.706488945 110.12994893919155 23682 None 1142876 TOMO_20200418 23862053.153745662 3370.6678180885324 0.3379239482067594 4.799587934189257e-05 30794245.54536985 4373.75599291906 22432 1519 222907 DOGE_20210527 45956150665.45352 1173070.6467635226 0.3541554065646925 9.040124244913023e-06 4005070154.3294535 102232.8930565614 1645123 1984011 9826 INJ_20210420 165651850.07818443 2959.3643916840056 12.211667343305752 0.0002182161747320133 25781539.819164593 460.7027721831318 None 2939 97465 SUSHI_20210708 1681146730.1112614 49477.804470403724 8.806314849463257 0.0002591879703813797 345784154.0470645 10177.139315313429 112439 None 6114 XRP_20210104 10455111151.166016 312527.3275829725 0.22563669593809668 6.854490109266155e-06 3986801676.0503383 121112.80278448174 1040960 228362 14934 BCD_20200129 119338918.68224986 12809.048044259946 0.6342277114625708 6.782896194419643e-05 8837183.689791933 945.1132225151048 26466 None 4350628 LSK_20201015 159143256.82856637 13925.69928406917 1.119565123125101 9.796662167324377e-05 2047907.2627633312 179.20043406943944 177539 31064 175033 RCN_20190725 9264135.813538456 943.0134695729203 0.018256414006038293 1.8593836643366185e-06 702682.1415428153 71.56694051600934 None 1122 2034448 EOS_20200316 1924213062.055253 356072.00003587955 2.0574098871324167 0.000380958615533199 2371978699.4060884 439205.4918426778 None 70390 93580 ONT_20200418 260675780.02218908 36823.382079926225 0.40562209341362254 5.761735745803947e-05 82236796.613162 11681.481318703516 84101 16502 204987 XRP_20190723 13814272018.726711 1334832.3735834719 0.32230396188388133 3.1174044717323245e-05 1412589495.9376864 136629.18648653702 935366 203908 39002 OXT_20210916 227744112.3322927 4725.721914025968 0.3850957201749709 7.989854352144544e-06 15686285.25999409 325.4544986804827 71010 4442 256467 WTC_20190419 64015053.765194535 12140.407346013995 2.3032311947639026 0.0004366690684169857 10052857.501160182 1905.9189237884154 55433 20283 1107833 VET_20210325 5553317431.172294 105063.58833059666 0.08521338841563256 1.6152378214753908e-06 1361185772.4425683 25801.56454968626 213649 107696 48429 CND_20201014 18514187.090331245 1620.582501662216 0.009595798722196548 8.398896158461961e-07 32839.33609092462 2.874322208348407 34206 5915 292389 ARPA_20210207 28890576.01161483 736.4384076390961 0.02938847084453313 7.47065728485244e-07 19688839.64863628 500.49753908423486 23912 None 1157851 NKN_20200129 12105030.600394895 1295.2167006768677 0.018643279537793617 1.9938490157862603e-06 1943961.1583740886 207.90146038917388 12126 1004 285563 BCD_20190922 113368422.77055728 11352.24652419292 0.6026466888905327 6.034694492944678e-05 1981364.3079154158 198.40693557126986 21368 None 2265228 AE_20201106 34587462.3390653 2225.8934661881026 0.09373231062159236 6.015952413917545e-06 14617569.426774671 938.1887792527615 25591 6347 520399 DASH_20211125 2121463247.0535247 37106.59736373237 203.36419466984762 0.0035552033887735614 589689255.4297041 10308.920125445666 418546 43293 62240 LUNA_20210105 317539137.01669014 10149.46459289885 0.6527886446258707 2.086500359459144e-05 53310922.54995076 1703.9704961063067 None None 167354 DUSK_20210108 16287759.80094772 415.5573818512391 0.05494263749846377 1.3934328251028912e-06 2126801.005519779 53.939062056057246 18459 13348 1115146 NEBL_20210325 40058750.396263614 757.8361581813072 2.248384116810107 4.2675587252673885e-05 1664937.4566432496 31.60144353004466 39790 6021 617385 LUN_20190805 3156641.809471743 288.2768481760871 1.1676405158166558 0.00010662488835929827 120852.87220601083 11.0358657757383 31080 2207 1249671 XZC_20181229 34386332.339473285 8941.037667875662 5.334557782052108 0.0013870172802718987 419034.248665809 108.95143846424864 59047 3916 313707 AVA_20200914 37778750.770999275 3659.917681040735 0.9880683892793797 9.567619648817572e-05 8767279.390711438 848.9492779585947 38036 8939 60068 ALGO_20200913 329380141.6693127 31574.472947126313 0.4104811919689703 3.931283229954643e-05 195091316.2136201 18684.393700512348 None 1292 193545 OCEAN_20211204 540076402.9981767 10059.518647674782 1.2465149626210323 2.3233587279974562e-05 154216457.72459137 2874.41517991799 136497 4103 94055 ELF_20201130 48032683.35365177 2647.925122064168 0.10428891463584408 5.742650032452236e-06 9286275.893629609 511.3470856238418 82277 33335 429697 KMD_20200217 95101987.20547555 9540.12720502272 0.8053100778439556 8.076694084621554e-05 6398305.4553144695 641.7050679521441 99817 8413 157439 XZC_20200725 62142984.96946946 6513.264876521214 5.87613871571009 0.0006160288588042266 6640860.105123498 696.1989275543133 64600 4137 551795 DCR_20210112 662177313.0491526 18693.422705591962 53.41555548949796 0.001500572703683951 47173999.70810278 1325.2322406249496 41416 10114 378546 ONE_20211111 2993322856.1644216 46108.08172330547 0.27816880123215676 4.282399096917166e-06 231855625.47717357 3569.4093541782577 266005 40454 15128 POA_20211028 10121689.444500696 172.9341416375106 0.03453720138801078 5.899991705006239e-07 329633.93016365304 5.6311379483379 20500 None 235797 CHR_20210218 27383854.716092136 524.8249523816761 0.06045561186959155 1.159474946885913e-06 8700671.32054333 166.869709945538 38080 None 468046 STPT_20210718 46345208.44172015 1466.358656578767 0.04126571723402457 1.3057055892427964e-06 3171853.8645569654 100.36193714327645 30740 None 433078 FTM_20190807 46088179.36118605 4027.695313589677 0.022229859470952074 1.9374594934683753e-06 10812756.70085039 942.3936371708044 18161 2056 402967 ALICE_20210723 102143819.51409361 3162.697978493833 5.9600713050318355 0.0001841032357042557 115677678.64361753 3573.2181457405077 None None 50440 NXS_20191108 17180144.41752908 1863.4828008773377 0.28773660513669974 3.120999462076647e-05 459541.98316060245 49.84524932323062 22195 3542 319693 FTT_20210523 2933962031.4193273 78061.19046671067 33.32586004991153 0.0008873922513512944 123881587.48203965 3298.686385048037 127891 None 2698 TVK_20210523 40974308.3275973 1090.051597392736 0.18496857886294563 4.925294752501803e-06 6968499.506947047 185.5553752175869 48575 None 56079 POND_20210809 56469873.25811254 1283.7101052633182 0.07282084863335957 1.6557676518836643e-06 9420005.781005515 214.18784792355234 None 600 162799 BCH_20210804 10165672842.575476 264588.84401714767 540.3920171744193 0.014067922063033242 2903807306.3666906 75594.26041419113 None 597851 320566 ROSE_20210218 201303530.70793605 3861.8826950726893 0.13356459093781797 2.5616281465734426e-06 49067067.931578964 941.0546717571314 12302 823 193183 ARK_20200217 34875002.95163436 3498.475417924585 0.24439342474271727 2.4566013976582446e-05 1091847.5829877222 109.75067357974585 62782 21876 82103 SC_20210821 920633639.5280387 18737.172553884924 0.018959389085431648 3.8575929157183306e-07 66741332.81715518 1357.959855673248 139778 47964 113075 VIA_20190511 15075628.332051983 2365.8709536084616 0.6540552389432406 0.00010266450579412833 1651777.79326074 259.27313280269584 41302 2231 2027413 WABI_20191127 10330161.123925544 1440.8517962344338 0.1737824414664265 2.42572677049484e-05 649138.5591762573 90.6094290923231 36032 7884 1548766 XRP_20210203 17039497521.900589 478516.96289368405 0.3692716435922792 1.0394488175234084e-05 8890335318.020376 250250.6946865954 1106544 252029 11661 TUSD_20190325 207528117.53785184 51966.981951795 1.0220880389069977 0.0002559551530311357 57727115.777907945 14456.24270173558 8446 None 298928 QLC_20190509 7764360.330474506 1303.4339251249198 0.03233300074824382 5.428517395276793e-06 1457494.790020853 244.7046558641249 24997 5810 940522 BCD_20210115 154706538.56863013 3966.0152548090987 0.82325319274302 2.1021788845858607e-05 7886859.363039988 201.39113172994766 27985 None 2021519 MATIC_20200713 78863141.68616445 8498.349143847161 0.021204145618393122 2.2821764874148334e-06 11461288.774916682 1233.5646164822274 43936 1986 125573 DOCK_20211104 70448412.58601576 1560.1781752227776 0.09155310094582948 1.4519797031342346e-06 10771106.297730243 170.82357192750078 54982 15214 199061 PERL_20201229 0.0 0.0 0.027005894447784822 9.949576570768196e-07 2264800.5273796464 83.44032562316534 13426 503 454264 DCR_20190325 177945915.69019568 44561.88933631964 18.67833197984415 0.004680848383236838 2118318.357307445 530.8572022749861 40170 9397 241098 TNB_20200117 4937970.985525194 567.3209034464355 0.0015950804801584894 1.8305776505071093e-07 711168.4804274873 81.6165166717047 15331 1454 1303746 BNB_20191118 3069364634.7970867 361109.09722958645 20.09585979748175 0.002361553852776063 204979868.32080936 24088.095889044627 1062630 57428 1628 PPT_20210731 93550882.83884703 2242.0725372236498 2.5842003569814405 6.188322568102366e-05 5682288.952847324 136.0724096735987 24461 None 822334 BLZ_20200319 1884188.8711117357 349.9219868372008 0.008711014699946904 1.6156546816618458e-06 89148.41396182144 16.53458952158845 36087 None 563457 DOCK_20190426 6840093.385549155 1316.7341734832214 0.013267567928560417 2.5525821368217553e-06 747971.1994650485 143.90413773587414 164 15311 209394 OMG_20190801 222678097.34675476 22140.914441103185 1.5890278914937639 0.0001578983930035296 97740784.0374453 9712.298200071096 None 40796 None OST_20200106 7054121.034985589 960.6893799513839 0.010280650384542182 1.3997062506338586e-06 127668.95273468384 17.38207452548961 17884 755 561579 YFII_20210325 82284777.5876937 1557.1804324979162 2047.2244442055292 0.03885746423011162 76651481.08458255 1454.8879546937562 None None 270842 ENJ_20210408 2634914149.910805 46778.31852725509 2.8134227591861203 5.003960228391259e-05 1597224149.6111572 28408.265677044466 140792 26702 26970 FORTH_20210804 130536789.61292605 3398.006567545192 15.190173726888279 0.00039548397332246437 32652979.450005576 850.137087691516 None None 110884 PAXG_20210203 115267672.68175457 3236.2612629351825 1848.7333731996462 0.05205540981911256 4427108.339559123 124.65558434232584 14748 None 71165 AXS_20210428 475808315.4977699 8636.938671536916 8.577216761352883 0.00015565061158220815 83947655.751352 1523.39672904916 59147 None 19374 KEY_20190130 6776396.217333982 1983.8926167628895 0.00276402612028495 8.09688379120383e-07 897524.6105560176 262.91909537628976 23501 2811 664181 SNX_20200905 634170066.3175371 60456.980214244424 5.356073276610288 0.0005108292935131302 104756601.16096626 9991.039666238454 33857 1952 31979 GTO_20191022 8661060.538932405 1054.7265301490447 0.013074174767711963 1.5908718254265167e-06 2406352.7307590093 292.80614871822 17240 None 1047356 RUNE_20211002 2100510999.4736598 43615.29918084377 8.00390689726498 0.0001661881457495276 85313374.94284333 1771.3938669414238 115423 7270 89015 CDT_20210120 5330008.909803127 147.1964372885432 0.007732261119810113 2.1453541961155183e-07 309073.0530313794 8.575385142236213 19263 294 808485 GTO_20190806 13682310.764330223 1158.3834299973469 0.020284893852504846 1.717428203986701e-06 3723960.190843927 315.29049689798126 None None 944506 UMA_20210710 572606702.1154212 16882.768585728823 9.281946041396072 0.00027313794872214594 18152784.795609258 534.1783264580926 41409 None 148626 XVG_20190228 93816103.69756456 24576.847703105184 0.005948507105220849 1.560193438563823e-06 707857.1050743131 185.65902187599784 304444 53413 414559 BQX_20200423 4000959.2601351286 562.3868861171903 0.028408861767632115 3.9932351890763115e-06 265340.324291119 37.297035295072696 None 16 397017 NANO_20200106 87411299.97435912 11904.239946807456 0.6564559654620516 8.937620517712374e-05 1442042.9937656936 196.3335505593588 97653 48559 260915 VET_20190905 228660382.17051715 21654.08906475099 0.004124945328256281 3.904752258308736e-07 29864359.388434947 2827.0174629012668 113663 57416 147845 XRP_20191127 9539776013.866621 1330611.199050401 0.22021257541061043 3.0769566488477095e-05 1360148283.0929322 190048.9695140246 942224 207702 26921 BTG_20210210 244827961.52627158 5256.4547337366685 14.050319798497583 0.0003016738943535343 44913129.67735403 964.3281385539358 83687 None 263524 STRAX_20210506 296123247.20725745 5172.667591521584 2.954874712810639 5.1543458558520106e-05 75499858.99230959 1316.984383897161 156533 10636 146304 ELF_20190703 98412755.91425523 9141.665978330848 0.2141698845444635 1.9843772108119488e-05 47872924.59837142 4435.634860147885 None 33318 1102918 TFUEL_20210727 1791963741.34446 47864.33593739309 0.3354731367896467 8.990617729539433e-06 175328482.90286314 4698.7707628826765 184307 21852 19127 SKY_20210124 10223632.21615919 319.3993996238639 0.5373500346897281 1.6789008004573642e-05 1262331.862328664 39.440398944612596 17269 3825 762023 JUV_20210217 0.0 0.0 10.959544559649306 0.00022272926632548992 4156308.737930838 84.4680717143944 2298955 None 93564 APPC_20200414 2961687.0063402317 432.43106216437656 0.027197184048400533 3.971889669935027e-06 62513.9471356481 9.129566517366985 24742 3218 735722 SUB_20190131 16053837.402590541 4642.019848229686 0.041913726412565085 1.2119491747748731e-05 60237.586623435156 17.417896151752434 68683 13858 503994 BRD_20190726 15553917.978503931 1567.4457621567892 0.25817457871345284 2.6082317334695222e-05 340047.4445617761 34.3535967100632 168 None None VIBE_20200421 1486573.2987211577 217.07278592 0.00794214392318143 1.16e-06 52709.446918205314 7.69854576 19157 None 1007181 THETA_20200711 241268893.6358821 25983.92412917282 0.24236950120196055 2.6105747749233153e-05 11808855.893101376 1271.9381424788614 71558 4285 81176 PAXG_20210513 196500637.7132015 3809.76213219597 1777.929385826671 0.0354435444663264 16720989.262453638 333.33783173237845 18659 None 44452 QSP_20200725 22262813.259041753 2335.0842772521705 0.03123544990632557 3.274588890930406e-06 394362.8460500687 41.34328778820417 55100 8222 336431 PSG_20210708 29803901.84001531 875.1401395785253 14.138624470629217 0.0004162374428827536 10573554.672269834 311.2827112785409 9231567 None 41128 ENJ_20200223 112255011.99310736 11629.024072554535 0.12395534802305934 1.2841189360301193e-05 6450846.222262518 668.2772401142914 53257 15018 23328 MDA_20190807 13078443.419826271 1145.1340694727207 0.6695984788235342 5.8473658189001986e-05 349154.273767197 30.490403286702826 None 364 2972990 STRAX_20211216 184721874.64635396 3779.913006538587 1.4011355141211097 2.8671051351600435e-05 6525042.612803334 133.5201555721147 158716 11176 200312 MFT_20191020 8040054.182568682 1011.7627584858644 0.0008911293098153232 1.1210342030206817e-07 930840.0465900042 117.09900216221307 18641 2310 1251152 RAD_20220112 220873359.78577814 5152.313784412893 8.039428208162247 0.00018791175234512752 12382428.59173399 289.42404791907876 25930 None 202367 IOTX_20201101 43261885.25013304 3135.2067049607217 0.0074285550844989615 5.383606983087334e-07 3369788.919398895 244.21464136224847 None 1959 414237 POLY_20210930 464510175.83799124 11181.862601286171 0.533956646308389 1.2839997729971416e-05 11070576.113787465 266.2129466001809 None 7316 160340 SYS_20210104 39962465.215290345 1194.3188213211065 0.066057225045876 1.9789952401726394e-06 2070141.0165345364 62.0189421424048 61051 4489 315243 LINK_20200907 4932509571.553684 480322.4314927673 12.811395169598967 0.0012475597643367893 1489069255.7555358 145003.94884390145 86359 22636 40610 HNT_20210218 285099558.9016151 5462.711817634005 4.091542008933195 7.848123579372265e-05 6788795.380939434 130.21815488722314 21827 4048 50086 EPS_20210826 256994890.60595658 5242.965432618814 0.8036359991671528 1.639713708458762e-05 63611799.604017526 1297.9152245361793 20532 None 31668 CTXC_20200308 1753344.5831186424 197.25729744908983 0.08213477657415175 9.236676153504417e-06 5704476.512861706 641.5114811569074 None 20064 415103 STEEM_20191022 44872571.582434505 5460.643065069192 0.138362043267244 1.6835959458481713e-05 554405.5308191965 67.4603295818757 10861 3786 220628 KMD_20190220 104500686.9197587 26692.297293371386 0.9347472012954904 0.00023875967638647657 4115135.971196382 1051.1168489271595 94932 8279 262903 AE_20200305 59516388.18819046 6798.49724395848 0.17085119757097664 1.9509225217373097e-05 12816716.32555943 1463.5203551244979 25452 6341 460321 BTS_20190906 88676811.61752526 8390.609335919522 0.03261125862981119 3.085447784331835e-06 13526864.8288091 1279.8167525141887 13593 7151 133075 BNB_20210420 78419210502.81401 1400951.4497936664 503.64777746828946 0.009004921484280068 8755730468.082388 156547.23187488873 2822993 258313 141 RSR_20210711 309592690.8534776 9180.996114038899 0.023510480171440834 6.9745055201029e-07 26617605.33199484 789.6250266527039 76233 None 97085 PIVX_20190819 20082297.540277205 1948.783631902384 0.3306065205462688 3.203556219715925e-05 6463874.171293894 626.345308334947 63239 8601 276830 BCH_20200501 4604740584.161843 532127.2008856342 248.9945043535512 0.028916186989166266 5183766148.8649235 602000.239554888 None 293796 146470 FTT_20210105 665602429.7532066 21274.569041146373 7.347573209082598 0.0002348495836763464 26770076.78528087 855.6486895884922 None None 5141 ROSE_20210202 91975466.55103019 2755.102052172135 0.061668239000882995 1.8464393547952774e-06 7086829.022988335 212.19026553626196 None 671 215578 CDT_20200523 2662654.529024753 290.87391332974005 0.003939896543718629 4.311931351508131e-07 192532.94252399172 21.07133580425815 18913 289 287726 XEM_20210418 4254193583.858572 70570.7790805958 0.4719221404873075 7.850951714441648e-06 942662356.9293708 15682.24080275652 298274 20999 27283 ACM_20210825 17452584.10042166 362.8525842509336 8.678010823385964 0.00018090225202264 4569811.207276919 95.2625152859787 None None 38736 DENT_20190302 30660194.392590955 8026.2098578189125 0.0008854831564536504 2.3159372878561022e-07 760832.5143672844 198.9919714445454 42485 8823 259704 LSK_20190818 168220310.2928782 16457.36288462324 1.2506975238664289 0.00012235848913447737 5291096.392778739 517.6395956105142 182179 30899 173926 ZEN_20210427 1471631654.4792964 27318.397939849685 133.0807654520311 0.00246875088802596 206358730.02140367 3828.1136741423393 101353 7119 749117 TRB_20200913 65953092.04423626 6322.281938359135 45.01674713339049 0.004311368865007213 49347711.93685778 4726.156427373331 8627 None 216196 WTC_20211230 28576720.287617445 616.1512680972359 0.9798691385463889 2.105902771574752e-05 14150487.392438492 304.11765659929534 67793 20382 392507 MITH_20200308 4446060.564677859 500.1793034277116 0.007124140120733555 8.004263419688847e-07 6305379.598456595 708.4352414727871 94 2082 1367265 SC_20190426 114405273.49217847 22028.35128450156 0.002831958432260695 5.442802238760442e-07 2550986.4031852884 490.2796011458617 110144 30981 247728 LOOM_20190614 59416615.96207072 7226.06983223866 0.08593654364160687 1.0450315256769496e-05 5240476.039824018 637.2682026880261 20322 None 406238 RDN_20190801 11571837.925970748 1149.869440548614 0.228969249765072 2.2710943444177126e-05 183585.7655169483 18.209458004030182 25646 4399 836731 BZRX_20210707 29953728.665939778 876.9616203355389 0.21349400353149545 6.248145314513275e-06 12437098.105508579 363.985849572639 28059 None 110017 WPR_20210314 22053939.215956457 358.98804410611115 0.035584703461195674 5.799932108977328e-07 1450537.6298017881 23.64223656814078 32887 None 7585359 UMA_20201018 411786922.9600977 36239.11454129656 7.452135252364467 0.0006557275339123989 10699212.25567084 941.4440062652301 13895 None 85233 BAT_20210616 1039045817.2913823 25728.414818940633 0.6934926776828851 1.718229938412845e-05 160547413.05354747 3977.7978992516537 205892 75043 26903 LINA_20210727 93834349.55471714 2504.9304213095693 0.03347055396016184 8.970446573135639e-07 53489751.801653475 1433.579382397226 None None 92304 SUSHI_20211021 2221239941.8016915 33511.820272296754 11.525476953273397 0.00017394149928824944 274579485.7256786 4143.929801304778 None None 4331 LOOM_20211104 110641491.58307663 1754.5964313518068 0.13266854906698317 2.1040471431274095e-06 7785365.737666915 123.47143805929153 36031 None 416662 UTK_20201208 52712289.89474828 2744.422849962773 0.11724915681353323 6.107302596136017e-06 3223751.2064378154 167.91953688575944 53513 3091 121875 ENJ_20200511 131562494.71173207 15054.263369474776 0.1424808002938208 1.6274174479476362e-05 14865874.113761974 1697.9819640147375 54719 15374 90947 ANKR_20190901 8482484.429707156 883.7014237110059 0.0031681600361562587 3.301313048688423e-07 1909717.0178978008 198.99795586517527 14054 None 7336 BAT_20200421 231532289.86719844 33811.43438084879 0.1584825941765837 2.314737821713955e-05 100815969.15259907 14724.805461617598 None 37075 18644 XVG_20190712 103878366.1277194 9179.655156096938 0.0065783823834225956 5.80204028584695e-07 3314496.1893526735 292.33387931920436 304342 52989 387398 ADA_20210711 43008320824.210785 1275397.0847755298 1.3414118788967055 3.979367705752525e-05 1016273066.9652808 30148.26606600467 526011 540508 6662 GVT_20210108 11120705.441692652 284.4487311921655 2.5333115073806307 6.41955512074646e-05 1202095.2365235065 30.461775461749145 20871 5452 383832 XMR_20200320 715187225.8093766 115640.84105100874 40.90926249569054 0.0066187407755164875 164283548.9711713 26579.560666403966 320294 166992 83083 FUEL_20190614 6896840.617571192 838.6904531545126 0.008875708772232255 1.0788122073182464e-06 3449915.799885119 419.32552933461307 1 1515 None GVT_20210420 42446392.14136547 758.4750580813036 9.567229676612653 0.00017095693458418204 4010516.8628665656 71.66397088280097 24911 5592 213426 ZEN_20210408 765619374.3952714 13592.438682580487 69.2386970042708 0.0012321581856280686 180719374.55746523 3216.0463194278573 95970 6940 739625 ICX_20201030 192409607.6774989 14284.194882078276 0.33644728774758925 2.50206939900682e-05 11995489.352322586 892.0727830944904 116387 28017 188394 FLM_20210219 0.0 0.0 0.5273858332230819 1.020079817468678e-05 46874927.0341057 906.6638502703601 15096 None 174277 BAR_20210618 50601009.02480529 1332.8824484456873 17.22819997150712 0.00045153618954352063 11966154.334249862 313.6225340147476 None None 39510 REN_20200414 45263076.197728485 6602.934122897385 0.05172958311885565 7.554612876619167e-06 1614605.673987986 235.79777914208412 11571 876 365402 ONE_20200625 31525376.182960037 3388.6158683533777 0.00468996735413446 5.045733938357728e-07 4888902.206550845 525.9759380448418 74169 1289 151549 RSR_20210624 298459249.1252067 8852.577773094345 0.022774186168855935 6.757619558192251e-07 48564729.452432185 1441.0260948637763 75543 None 81455 ARK_20210519 327763817.78797716 7657.812511377954 2.210452481617099 5.166917187818089e-05 38121516.56409244 891.0877786280367 72711 23172 74988 MFT_20190811 11251993.185222927 993.4300894284407 0.0012527247866327112 1.106502613847724e-07 409331.5120954806 36.15529866550688 18830 2183 955030 NMR_20210219 222971172.94466433 4314.186362648123 41.91585824045626 0.0008107445882961622 23435050.693314828 453.2852558345804 24753 2377 2608504 RCN_20190929 17875140.440371957 2182.2699980419943 0.03510192540344377 4.285386116935565e-06 7407975.641607883 904.3958587533415 None 1119 2070155 ALPHA_20201226 29586135.206658326 1198.2395613380475 0.16933188355886922 6.867179300921151e-06 13675733.079358047 554.6132786909005 19917 None 104236 XLM_20210106 4274899984.8637395 125817.2495533566 0.19558882975790834 5.737962147353122e-06 2621535350.5071435 76907.61598081434 314542 117372 34006 BNX_20211202 0.0 0.0 126.35041272191523 0.0022101412931675277 26446935.556734856 462.6139566344444 89160 None 25932 NXS_20210104 14944958.89697354 446.6452607056998 0.21772886632681454 6.614339543872576e-06 1062392.1638735686 32.27418862348563 24186 3522 514648 INJ_20210704 194634516.36080047 5614.3681684749245 6.737221515147543 0.00019431009453185275 15577065.811755247 449.2625221845282 75961 3717 124543 IOTX_20190507 23939982.091159254 4185.010775769887 0.00947967839496424 1.6573400920175441e-06 812626.5762377862 142.07218309782277 15532 1713 727084 ARDR_20191127 47572999.63455115 6639.428115194218 0.047806088642430626 6.679784841054193e-06 3459272.8676009285 483.35262553903635 65913 6485 1032831 AION_20200411 26621369.986939333 3882.8242977499535 0.06484704690671815 9.449394203184374e-06 4081961.122133315 594.8159801416411 545 72559 269211 SNGLS_20200907 7130082.064845461 694.3275198575645 0.00801132816274771 7.801432807388365e-07 85091.95703811591 8.286256308521462 9062 2121 759166 PSG_20210902 95191017.95892242 1957.2435242360525 32.75023271811473 0.0006731080711461139 21664051.413436368 445.25631269919796 10124235 None 11962 ZRX_20200704 265032677.1754521 29223.546355835577 0.3795899436399062 4.187824674736713e-05 96313672.30531609 10625.802399479191 154492 16112 78133 REQ_20210819 166991130.19880795 3706.7577922026635 0.21666023719785932 4.8155075485849565e-06 25347837.94335401 563.3830486627726 44586 28083 270313 SC_20200410 64075909.327814564 8787.816168607065 0.0014572175970048692 1.9985296337541478e-07 2561135.1482730173 351.25189953740625 107212 30106 166038 NXS_20210127 25912665.034837898 795.1795684770481 0.3826732300036101 1.1743202873104156e-05 142667.72941990793 4.378085422926771 24259 3531 480496 SUSHI_20210217 2090291390.580843 42509.16014113309 16.426581924107303 0.0003339914161462817 715620761.5855328 14550.269355480765 42325 None None ONT_20210418 1864550789.1999679 30930.13969285227 2.2832049740521816 3.798366397250816e-05 1292183072.780466 21496.908155533187 None 18338 153956 ZEN_20201129 154009720.86041486 8700.261882690538 14.644183155984614 0.0008267911433570706 20215237.814768314 1141.3254947768794 77912 6203 249437 BTG_20210722 673867019.045338 20940.492799119158 38.606168388404384 0.0011954087622627044 22038948.5328413 682.4182063902597 100867 None 177172 ENJ_20190701 107658449.259465 9923.094315504502 0.12293873971328648 1.1385482608443856e-05 10047691.841409544 930.5270330748978 46701 12638 20679 EVX_20201101 5066152.844286717 367.15329344307787 0.2320591395279083 1.683939167046478e-05 164919.73209978468 11.96741472310082 16716 2814 1244228 XMR_20190614 1533770385.2224822 186540.1774423644 90.07346558165476 0.010948388023009086 431683884.9009613 52470.97627093312 318027 158322 113684 SNT_20210105 143087351.647261 4573.483517274945 0.03666795175889845 1.1720132565942626e-06 42116794.24236379 1346.1739423534727 114586 5678 172923 ZIL_20200325 40807166.75864825 6038.043868977637 0.003917752322619663 5.804073282664633e-07 8399580.885515887 1244.381446007406 68646 10566 233633 ZRX_20201015 279125907.0471989 24453.331709948816 0.38769802847063806 3.396450073355043e-05 52528071.4803784 4601.7508249011335 160274 16321 48441 JST_20210202 46803930.47300565 1401.9388488271697 0.032721949912028106 9.797441448318873e-07 109565650.38110936 3280.559524239435 None None 170314 ATOM_20210110 1587941763.4697092 39247.527615068284 6.60421795665234 0.00016394422177392481 594946490.7237154 14769.052151069356 None 10117 104708 AMB_20200704 1755729.0536709887 193.67474726359467 0.012141099505250065 1.339466362015988e-06 167883.92843797538 18.521788308260447 18986 5443 661727 PERL_20200323 3794740.5468116943 650.423128904068 0.010977792480848387 1.8826958856654435e-06 1823998.5936250421 312.81650237680867 11573 475 685227 DREP_20210724 0.0 0.0 0.5856394103230883 1.7513430929491835e-05 2986393.049179303 89.30749446363596 4081 None 319856 SNT_20210519 646015562.9849701 15140.30972417687 0.1671240468626449 3.906512885545469e-06 77706262.20732996 1816.3784344571204 131729 5967 111002 TNT_20200113 19782453.82835278 2425.2237490479397 0.04617516528281386 5.6540349094652785e-06 654852.9921606872 80.18513102371917 17717 2569 553344 HC_20190903 95953621.64770956 9287.521375750963 2.1697544976643135 0.0002099786222156909 44867757.291386575 4342.09025403341 12915 853 399646 DNT_20200905 9084428.020922566 865.9028742469815 0.012085808435819795 1.1526700001968746e-06 1484329.7127085042 141.56622946041946 58363 5992 478994 FIO_20211028 60271847.39496415 1029.7737874928698 0.16633771566529143 2.8425043282599844e-06 5065800.2126696445 86.56821438854516 78086 532 544451 RSR_20220115 349997829.3725503 8121.557178533799 0.026685262572673864 6.186998888226099e-07 27988016.77121161 648.9043462681162 None None 101626 GLM_20210821 431630509.9842755 8784.748892341999 0.43239431314451693 8.795247288110793e-06 9871364.972736552 200.79148445552119 159163 21148 187771 ONG_20190908 0.0 0.0 0.17622898116929545 1.683298547979545e-05 8465959.008477468 808.6488619334644 81502 16275 256067 WABI_20211120 11195244.703969296 192.58902066210737 0.18943945810194118 3.2588800580372954e-06 575149.9853905226 9.894162686851613 45412 7918 676123 MITH_20210729 25342414.455844454 633.7663265558946 0.04093705417982719 1.0232030459300002e-06 6243711.710366033 156.0587337792244 32687 2748 479656 EOS_20210602 6074422525.256249 165551.4687359649 6.3129045286547365 0.00017209856425503262 3379729482.909911 92136.12988111304 None 88152 49952 FET_20190329 0 0 0.22232081067041606 5.52186986201336e-05 44213981.84035018 10981.601455464805 7484 165 185069 BCPT_20200625 2766633.4343473525 297.3649094321835 0.023887796183210335 2.56998513663302e-06 105624.70194584678 11.3637068895 10481 3173 3960582 STORJ_20190726 25956401.19985071 2620.3179156715887 0.18034933323716668 1.8238016707137824e-05 3898930.8889183546 394.2835019997427 83872 7776 215806 LUN_20191017 2391762.7622897383 298.6614995136984 0.8847383630900771 0.00011047805006580646 115731.60109943095 14.451505839311192 None 2181 2505082 MANA_20200520 49572712.626906 5080.248521815271 0.03745236602691308 3.839946587860885e-06 19294833.315442618 1978.2763337231331 48655 6914 48961 STPT_20210427 88183432.29355615 1636.4318233310512 0.0879213522514813 1.6310089268724972e-06 53935340.884707764 1000.5421914491473 29477 None 910650 MANA_20210221 400059431.44988763 7134.264770922384 0.30387064152915366 5.42062034086459e-06 150185390.71724126 2679.093905636384 68189 12192 42015 XMR_20190618 1665178655.369479 178636.58306696668 97.6288554431663 0.010478192460864528 1948294918.2459867 209104.255409303 318197 158433 113923 POWR_20190729 32073071.58404695 3358.104933333035 0.07617293733099503 7.987742641507033e-06 814866.7461840059 85.44958463865828 84450 13131 580575 CHZ_20200301 50992627.12711916 5952.846001850505 0.010444669889437016 1.2211834350847067e-06 3187701.287529398 372.7037857142768 19165 None 294872 FTT_20200721 286695827.8499005 31290.952738128766 2.8853608445604655 0.0003149529582782066 3262598.9759812877 356.1305689366162 15896 None 11932 NAV_20181229 11125133.840303784 2892.726090829086 0.1741678464141056 4.528469322365788e-05 393413.10366722004 102.28978583899122 48180 11525 680062 NXS_20190131 20500836.257941917 5927.884182962807 0.34335223755773087 9.928142796686533e-05 137127.6700258631 39.65091647800234 18 3504 885909 ZRX_20200403 98737752.07680938 14572.482243855688 0.15209799567539134 2.23112264232581e-05 27755507.528200768 4071.4501871264633 152404 15947 126435 GAS_20190213 30049957.128304787 8266.847910074806 2.1553031564794516 0.0005927842628163825 1590005.3513056457 437.3074605371909 315975 97838 145826 KAVA_20200430 12174293.938381061 1392.557529911994 0.6209952118686404 7.083044484541922e-05 13080953.517226947 1492.0078913964726 21666 None 326778 XMR_20190730 1339500086.1630177 141126.17126125804 78.27396347395359 0.0082290167572846 212055939.79978415 22293.644075846853 320308 159825 109892 XZC_20200407 35033728.55677705 4816.8511813355435 3.57219029798282 0.0004909656609999603 54816627.37096487 7534.055984131592 63594 4091 105092 MDA_20201129 10072241.264126603 568.9833027887506 0.5094230103914179 2.8775493653527617e-05 403944.70197943307 22.81739923615571 None 371 4480394 CFX_20210401 0.0 0.0 1.1206572322550092 1.9071242061529557e-05 58842061.945242085 1001.3688168496736 28340 None 128225 AMB_20210430 10389710.41906748 193.87607603374423 0.07187441247101906 1.340876465017356e-06 1541663.1203974742 28.76099746846226 25401 5625 373333 BCPT_20190613 7121938.359528075 876.6015701692093 0.061622338291078896 7.577899792152497e-06 1515922.6212067541 186.4179457439541 10834 2568 1057836 EZ_20211230 0.0 0.0 3.338710306032812 7.174475273044565e-05 252967.38393332125 5.435956026603969 None None 290326 COS_20201208 19121664.454504456 995.5974181385143 0.006359445327278765 3.314196706185669e-07 1181712.0637347405 61.584399703698715 None None 389177 BURGER_20210828 0.0 0.0 5.685755193454288 0.00011590679068347563 11796668.778770722 240.48063491678067 None None 79299 BTG_20190513 377196302.4674347 54357.94959975408 21.589821973974573 0.003105740015422302 24111413.05278643 3468.4760456423855 73727 None 432620 TRX_20190622 2196403825.480544 217024.2742219393 0.033246755757863296 3.2846787034333336e-06 790695993.5355769 78118.3676919244 434119 70994 93718 IOTX_20190213 9265835.701155996 2550.013605322565 0.006982413544189046 1.9215703218856735e-06 308277.91499789036 84.83852877000291 13421 1561 1480640 GXS_20210427 58872671.597775094 1092.8733868932509 0.8424238409344983 1.5628168055795297e-05 14838268.180092143 275.2711135503946 None None 582398 ALPHA_20211002 385295667.5727116 7999.944621479118 0.9516483632419281 1.975714735232876e-05 13576824.938614404 281.8681156295803 80046 None 59816 GAS_20190131 27517453.195675943 7949.478395946113 1.9786640014938632 0.000571731757695828 888434.7093878309 256.7117699684203 315811 97901 143904 SXP_20210823 686275699.881628 13910.970264869751 3.6549193671168707 7.416465062429736e-05 105942024.21683435 2149.7473468670173 None None 111870 ROSE_20211216 954723122.3965622 19570.521493815442 0.2741939408766981 5.610755333758521e-06 134204371.38163926 2746.1872065285793 95097 5522 45093 AUDIO_20210117 29118501.047351506 802.4791977793806 0.18833922902041564 5.203335257036715e-06 2459412.307995037 67.94732483689538 24527 2420 50334 POA_20211111 11819552.27083919 182.2254204348806 0.040312406632055604 6.209579884194897e-07 4025.7716291147312 0.06201155578400813 21137 None 242458 REN_20190613 36482404.75820938 4488.324057263533 0.04681027672697157 5.753978764487399e-06 290119.2244655408 35.66182414346675 6396 779 1322492 TCT_20200719 4606770.928482468 502.1029538433947 0.007945398795299893 8.665051619869453e-07 2450337.8675400945 267.22767044639403 None None 700075 FTM_20210418 1267278276.4190123 21022.213385944608 0.4956779971172057 8.24615691321436e-06 473619810.57540447 7879.1943518286935 None 6145 57773 DIA_20201208 45996238.64492957 2395.3771969421105 1.8000063609150996 9.375120286963169e-05 18416634.354776617 959.2086234032639 20172 184 238286 BTS_20190805 121354200.46516879 11082.63202080473 0.04447763450087081 4.061308802840586e-06 16297368.806470735 1488.1332638219167 13654 7163 153233 DLT_20190201 8411196.187476296 2451.373467709101 0.10411440876786192 3.0343282164761148e-05 1497968.2313369177 436.57043492076986 14498 2692 924698 STORJ_20190730 26537398.718273506 2795.909843553063 0.1846663440931855 1.9414149643194914e-05 6776659.223365339 712.436675396373 83846 7773 215806 AERGO_20201030 11559008.867055375 858.1231326942645 0.04369672878521932 3.2496100254557957e-06 2737035.567815424 203.54608842505962 11120 None 342590 JUV_20210809 28982948.571593754 658.5694976863942 13.12411516622561 0.0002983509747659733 26974341.985516656 613.2086714508847 None None 44064 1INCH_20210805 894247218.8548774 22482.952423418013 2.347564506786331 5.9023581272448496e-05 137261623.28610682 3451.0968939066215 245806 None 4437 UMA_20210930 546408201.926006 13152.100861662482 8.68793153006206 0.00020901241338119032 37551729.259996295 903.4115349678428 None None 252779 OST_20200109 7065001.282543058 877.9584876365003 0.01019285933646003 1.269734999630001e-06 615610.641739805 76.68725253233863 None 755 561579 POLY_20210210 106433812.14577836 2284.9709880982928 0.1326088794568925 2.846017420757592e-06 7041638.105670978 151.12581300353077 36619 5069 279172 THETA_20190103 35202065.26243995 9100.913106409123 0.04972024232303439 1.2854348221845696e-05 2438794.117542477 630.5099766932645 None 3803 526193 DIA_20211216 70903046.28434432 1453.3365911161193 1.2532032402000775 2.567991694445571e-05 5555676.210506508 113.84370793145891 None 448 272189 NXS_20200806 14049086.500520911 1199.1809464672451 0.2357711793256088 2.0084122218314238e-05 179387.64314116113 15.28110161559127 23277 3526 412893 BAKE_20210813 404857855.21173656 9106.245989258285 2.381492065845867 5.356198410490226e-05 99632761.31893916 2240.833994211563 353354 None 9385 REN_20200625 150296428.72241902 16154.248466807026 0.17037773317919097 1.8330206709964537e-05 26061197.864787813 2803.812065444193 14693 894 366546 SUPER_20211202 539731274.3015285 9442.887659765373 1.8784406421534854 3.2848950267881725e-05 57348270.399084955 1002.8693161839337 None None None EOS_20181231 2699950805.394341 710386.6749165135 2.634550156050117 0.0006931790466396573 925021259.5725057 243383.24072494404 512 61708 79456 ELF_20201115 43929092.74463093 2729.223024172973 0.09517954708864594 5.917065189645753e-06 5011289.013707803 311.53881989633743 82239 33341 424990 RDN_20210513 52436986.88025069 1017.4182469555116 0.7710348272545865 1.5297158983140603e-05 3458764.6297967043 68.62111873163626 29273 4602 580559 NEBL_20200713 9947680.252006698 1071.9692133154986 0.6028132935064887 6.488006399787495e-05 196236.82428431892 21.12073150252999 38876 5950 736542 BAT_20210523 1019574914.0481412 27126.878503635646 0.6820732463576971 1.8162067318453183e-05 230827384.29968047 6146.41098295579 202164 73137 22972 KNC_20190221 23689767.16759497 5968.955095411672 0.15123809002030478 3.8089863378060784e-05 3029537.6979385316 763.0000947358625 92941 6560 205097 EGLD_20210825 2712942078.393267 56455.20615009379 137.42968929579897 0.0028648662457742132 82849924.1082872 1727.0937033985044 310309 10145 47013 VIB_20190804 4523716.681452036 419.34002920883063 0.024789356943957223 2.2969983166161915e-06 251266.13688428787 23.28248751069574 32512 1119 2890790 KEY_20190513 8152719.328420892 1172.8067058289657 0.003131420920024341 4.5001141102739985e-07 358293.817259949 51.48982215597182 None 2834 639890 LTC_20201224 6886301322.949848 294484.8604423038 102.80138066948912 0.004408722614246042 8558041125.265569 367018.70341517724 136161 218013 164709 IOTX_20210610 269566534.82911825 7181.561341743427 0.028144071206378116 7.514372918622959e-07 32293175.357239474 862.2169855290497 54827 3096 179770 AMB_20190117 18534173.02645638 5149.727717893579 0.06835409764633216 1.899256592789164e-05 807215.9447936421 224.28943658743836 17859 4968 577805 SCRT_20210105 34117306.853039354 1090.4873054806712 0.5977241845770029 1.9104984993911984e-05 725302.6054823966 23.182758455043427 63452 None 361970 FUN_20210618 213198919.24074006 5599.615575231997 0.020737375242478102 5.435086319876035e-07 2577847.9753728705 67.56316120937848 None 324 191066 GVT_20190520 13359561.377640005 1633.0905421476978 3.007106498693921 0.0003680209282197218 1442379.926778448 176.52384434307626 21427 5777 174958 ONT_20210731 715569321.19438 17151.102884196778 0.8149717343241013 1.9505447697285413e-05 431228326.2657951 10320.973365464422 141944 19752 172256 LEND_20190316 10637278.715415426 2710.6457570249922 0.0095368255830271 2.43022266255531e-06 618062.3161317892 157.49779991867453 11643 5930 466790 SC_20191015 96385997.17149375 11548.707107049637 0.002285667551510162 2.738309463054833e-07 17867284.42183889 2140.563004409266 108501 30513 221641 FXS_20211028 494074580.4782412 8441.504185344404 13.867781138355856 0.00023679458155258573 50147005.04781156 856.268133881133 18029 None 101271 AKRO_20210408 217757247.79651132 3865.9575989693562 0.07929247038162299 1.4102977126527355e-06 269544785.081957 4794.129783433496 36004 None 141673 MDA_20190523 16860200.170807242 2200.016269978494 0.948630657872654 0.00012378280568304303 2381204.2481820164 310.7132795026315 None 361 1619229 PERL_20200411 4397466.311655184 641.3874815452413 0.01255605478201042 1.8298206024694937e-06 2289468.5196725097 333.6491229716757 11631 479 646764 MATIC_20210221 720289330.6803454 12891.41173430466 0.1459451499886792 2.5958147752938646e-06 871489994.3496522 15500.526081401626 515 4661 35829 LUNA_20210430 6373809560.585448 118934.4266257097 16.274136199795404 0.00030361064209694934 342330993.0192685 6386.534518592333 62405 None 23843 TNT_20200501 21056219.960410327 2431.5647075817565 0.04917049185615278 5.708920837725139e-06 897484.8311224598 104.2021273434975 17544 2558 722675 SNM_20200208 6298342.856778932 643.0174357720496 0.014439904038697462 1.4729145739373948e-06 346046.09220727626 35.297764521166265 30348 9732 None TCT_20200607 4936617.805849439 510.4261969786655 0.00852203569805307 8.817399218098872e-07 1990375.684881692 205.9359715145088 None None 990413 QSP_20190902 0.0 0.0 0.010923828329563148 1.1228275143046582e-06 172484.91671749123 17.7292066892717 56492 8540 551928 GAS_20190902 20467365.44859212 2103.952548868337 1.4688660963663907 0.0001509803356544891 678747.059419888 69.76637224401588 323996 98214 210014 HNT_20210723 1013757016.5775189 31344.99667093436 11.0608711682349 0.0003416523075549705 8122770.830693454 250.89917022236548 64616 42898 2371 DCR_20190819 263917409.13881245 25573.429590588803 25.72523493895302 0.002493325661822303 15040213.944199458 1457.718519397761 40562 9573 278378 SUSD_20210506 196187951.97574663 3425.916936999152 1.0243216469526082 1.786778983602892e-05 46172318.04066092 805.4084158498564 120814 6290 31416 ANT_20210511 322481640.792402 5771.4419660419635 9.190780894242385 0.00016448706482448833 79523690.28788617 1423.2325359492022 83603 2978 103669 TRX_20190901 1024664148.3023121 106748.0332432677 0.015525468507979446 1.6173607759261927e-06 523327428.94360536 54517.46954397349 457933 71286 65746 ARPA_20210731 39684993.45173346 950.7663453396179 0.04044380530901437 9.67595377648998e-07 9131164.3753543 218.45799065244634 43123 None 759470 QTUM_20201014 239633707.14139044 20975.669733496397 2.3284245760541276 0.00020385432019256645 135551096.40359956 11867.542068096805 187045 15059 80997 ALGO_20200207 168878038.66654593 17339.710630364694 0.286877267762843 2.947227780491999e-05 74374975.21171153 7640.897964023043 14353 765 450102 1INCH_20201229 83352512.45479786 3071.694825879985 1.1148117848985653 4.107216384663334e-05 93000761.71774873 3426.356426148323 None None None COMP_20210206 12996457.436682487 342.7397989692615 0.00014085688371918165 3.71601309456e-09 445.97845616849 0.011765571829047068 2033 None 2426495 ONE_20200323 9760037.599801723 1673.9280925103565 0.0019167744995224514 3.2848052625227245e-07 8577690.794553844 1469.971760854656 71109 None 395411 CTSI_20210527 269298632.4102212 6873.462192871382 0.8671883021561164 2.2120189023371057e-05 66404218.50371324 1693.834962486539 40859 3459 121908 BNB_20200421 2228118491.7570333 325379.5927125742 15.027804337444612 0.0021962090790231432 377680441.78727716 55195.36963599671 None 61891 1429 BNT_20190909 23899231.884702004 2299.5163715776575 0.3426395079717301 3.296780256082824e-05 3800491.3974483656 365.6725132687894 None 5114 161703 PROM_20211002 279179155.3450735 5796.914364400755 16.947109189532867 0.00035183850084391527 13385083.215015167 277.88737060540535 11737 None 645407 XTZ_20210304 2962520217.4735246 58279.48924337522 3.8656039083014133 7.629249234681578e-05 492361659.4311702 9717.368624692814 90035 38046 112847 WAN_20190723 27289128.493483648 2637.547230652533 0.2569693167231815 2.4846772348572968e-05 1361338.2543338975 131.6299631651186 108332 16929 474498 DNT_20211216 97110344.94911696 1990.521114381759 0.12986559579706355 2.657404032927794e-06 3346754.029022742 68.48370886343307 73525 10393 293812 DUSK_20200526 7277551.504846175 818.8761355128997 0.02725337555122391 3.0670075985176433e-06 1924516.6333259793 216.57893814989455 17349 13334 1128839 FXS_20210704 82246335.88321996 2372.4750047863577 2.8979492734064993 8.35912970238605e-05 11121359.718628982 320.79543009264734 11975 None 136180 GAS_20190511 32038602.426612277 5027.929662750867 2.3024733620630236 0.00036141028424796224 1173917.7898379865 184.26530751649722 320780 97557 218328 WABI_20190804 7701401.433502224 713.754900173611 0.13421195978454872 1.2433489220874106e-05 172577.2588389782 15.987677186049599 36361 7988 1513094 ICX_20211216 812426330.4956838 16652.72392533147 1.2012092431656203 2.4580014957669335e-05 37219203.8488033 761.6063500353799 157274 34578 309513 ATM_20201231 0.0 0.0 10.993600646931377 0.0003812753224369492 27293836.988505192 946.5930983438611 None None 229740 WABI_20200127 7323383.06856519 852.9043607195206 0.12409168365633765 1.4439799872356648e-05 565015.5778959986 65.74745082980003 36728 7843 2320940 REP_20211007 168214254.26113847 3030.1464289897026 25.58572418515841 0.00046121933222033427 49181227.84961181 886.5620883903712 154889 11750 234935 COTI_20210725 79538460.31176282 2327.9952095504627 0.11897411044779069 3.477319973503778e-06 14527446.715242267 424.6014568782335 123978 5475 101712 SNGLS_20190520 8693827.928813523 1063.893905018669 0.014721060270848489 1.8014672507678201e-06 486812.76197489747 59.572967695149636 0 2179 None ARDR_20201031 47538974.319993675 3497.423590742123 0.04745763447970979 3.496821031397192e-06 3605156.0454871175 265.6387242966766 64138 6303 1475712 ATOM_20200713 759991399.4111261 81913.2799479871 4.017786703656249 0.0004328086734158583 201899075.04028898 21749.20603738267 None 8713 179013 AUDIO_20210724 212144849.22495565 6345.6291959240925 1.002401090232001 2.997847085611698e-05 29539197.939980906 883.4188162662855 53912 5907 31979 AVA_20210527 163040753.29487243 4168.285847730073 3.1486608234173628 8.037230131508276e-05 7412074.899473754 189.1996472785857 78996 10127 42343 ETC_20190225 450927465.25820047 119989.48323124956 4.115630968955254 0.0010986401347871642 305634584.0633292 81587.10612389834 225793 24179 470641 PPT_20200224 16893234.44054139 1697.8609674500185 0.46641133664977846 4.689949864327885e-05 5290474.903576839 531.9781083042434 24135 None 954834 EVX_20200330 2802004.273747094 473.8543429153001 0.12822828862645674 2.172416798934642e-05 329485.68858395424 55.820775006479074 16761 2862 688824 FET_20200701 17417487.938438937 1903.64525431795 0.027711856648200795 3.0317020611332187e-06 1855628.102969259 203.00738474099603 17614 422 786167 KSM_20210710 1920742227.8341033 56631.27313313204 214.09808665793213 0.006299727199765301 131784564.41423701 3877.6937146384953 91807 None 64367 ICX_20200414 121380515.36836882 17716.540608483803 0.22772537293111292 3.3233141653048346e-05 21097775.768871706 3078.9075528411204 112864 27512 109675 CMT_20200323 5411316.362478303 928.3965013152704 0.006539538622903964 1.1211446846666016e-06 8211053.1480147485 1407.710715274247 286238 1637 911838 YOYO_20200324 1229759.8379196506 190.7039425341369 0.007031465593745774 1.0903984413646692e-06 363513.86278603267 56.37159765794786 7525 None 2721333 RCN_20210724 6621968.360939148 198.07486969535975 0.012474300888103704 3.731285606144799e-07 1204966.382015712 36.04269094864745 20042 575 2225791 FTM_20200612 12935662.743732017 1394.1598766675331 0.006038728144708516 6.492278936527503e-07 3519804.427573723 378.4166400313447 22137 2383 340286 TOMO_20190904 29035622.29500049 2735.257871174509 0.45052978786754183 4.2395525025231715e-05 2387876.0730604785 224.70270010725963 17023 1316 270545 BNB_20210916 66397294535.7022 1377753.069469419 429.92698493835917 0.008920000435614788 1561669782.1864479 32401.071868951876 5042785 633340 145 XEM_20190410 652381655.6501423 126072.01376735675 0.07238424788675159 1.4002646138602501e-05 33014567.425863113 6386.628563256879 216190 18452 129462 YFI_20210428 1748473948.522545 31738.34296041478 48378.79537134901 0.8784319012249964 499052745.5961605 9061.487553805655 107623 4766 20046 TLM_20210620 148144967.0641922 4165.368184339179 0.11942618471302766 3.357886805328388e-06 16856644.050016955 473.9555464631257 49505 None 11143 NEO_20200719 743615405.3538312 81120.51396057554 10.543249756895376 0.0011501561599401044 145419250.1596569 15863.690057765567 319871 99799 192818 BTG_20200330 116493521.97232535 19700.527163816754 6.627368178014049 0.0011227717562898234 21031001.442772612 3562.95497581839 74705 None 195914 PIVX_20190411 57828169.98868714 10895.808144080156 0.9705813419349066 0.0001828660844382873 1623513.0779311375 305.88418174592334 62365 8592 250995 QSP_20210823 34282853.159509905 694.8388799824721 0.048155896535237976 9.773129554723073e-07 417070.9877501295 8.464360732679259 67189 8503 208905 DODO_20210902 305113080.1045916 6273.497363502592 2.000992046908001 4.112593362818988e-05 73701836.18299127 1514.7770466260026 103711 1073 34581 SC_20190523 131250981.68588305 17122.308850283116 0.003211423566547664 4.1933704959269345e-07 2821044.62334579 368.3626605489685 109843 30911 231960 LEND_20200421 30128584.63589363 4399.777944530605 0.025394521271195677 3.709191730258437e-06 1563018.7033986326 228.2986943117318 44345 5718 90147 GTO_20200321 6924839.262230317 1119.8081109444108 0.010580684756390749 1.7064266242754487e-06 16996238.864294 2741.1112965121324 16880 None 1148049 THETA_20190124 36683992.10287519 10333.712767687646 0.05161138851374206 1.4531874162844365e-05 5528049.401963429 1556.4959709218083 None 3811 514220 IOST_20200701 83184069.68722068 9100.641638087875 0.0055266759827795695 6.046385775332034e-07 36144689.8913921 3954.36134656815 None 52176 403755 IDEX_20210805 27200890.558899976 683.9357423598256 0.046035498630526576 1.1575107389442483e-06 1033479.1462646918 25.985668578879274 53281 1975 8041913 QUICK_20211111 140227990.29692066 2162.3678460135757 390.14773727359943 0.006006310953507443 13687562.42614507 210.71955126916268 59413 3845 5352 ICX_20210212 773587549.4761982 16223.389413251756 1.333650546270039 2.7932093008771633e-05 353140189.9253776 7396.198845131103 119383 28735 278107 ADA_20190909 1447219677.0790892 139327.9613199007 0.04652576544236705 4.476577316419433e-06 77249547.09945424 7432.732529193136 154430 75266 100209 SNM_20190524 11475196.727136232 1454.741077014449 0.02815308323634993 3.569040915148305e-06 1752935.7205386972 222.22430331004554 31484 10010 15277898 PAXG_20211002 320206082.96694714 6648.8031301093 1768.6332687965269 0.03671855010059069 7970686.678055333 165.47922245262032 25446 None 42739 SNT_20210131 198530247.00838846 5803.460223161266 0.05118529084498825 1.4982025695769809e-06 29363123.045463085 859.4638356309209 117526 5698 152018 FUN_20191020 20091286.873134922 2528.29338791837 0.0033464760757402983 4.2096227215830486e-07 292802.9411990439 36.832473513057174 35637 17313 389622 AGIX_20220115 171745811.20641494 3984.6981057691614 0.17784607710590944 4.124504567338981e-06 2814237.202833391 65.26618065210005 71915 None 134947 OST_20200224 9083395.463094555 912.9950060221228 0.013205833650343522 1.3271283511296526e-06 206871.56174538564 20.78968446097517 17834 756 817761 QLC_20210509 20315394.06691922 346.42150655439815 0.08475134272382466 1.4434098135050255e-06 6691763.746000951 113.96819389764867 33464 5638 940522 FUEL_20200129 2590373.9273415776 277.16539366544737 0.0025247202995305686 2.700121013660651e-07 106061.90913858257 11.343038263181121 1 1480 None ARDR_20210509 429601266.0111358 7325.632832866977 0.4327009655837746 7.36606346827422e-06 39529906.66407933 672.9354093067988 72031 6840 None AION_20190807 29237085.28855063 2560.3136470862096 0.0873995277674885 7.6173691074854625e-06 822469.6956314591 71.68294167461816 67567 72602 199411 LTC_20200312 3118218947.183739 392953.7250718813 48.5160916176663 0.006113932103551958 3127779538.5171247 394158.5378326199 447872 212181 137206 REQ_20190603 18020922.184787333 2060.5196457661864 0.024688120814273927 2.823105670579713e-06 356945.86651177466 40.817035343441816 41822 30047 442629 POLS_20210624 71461804.49252602 2119.772062689903 1.025025040287211 3.0426256215270703e-05 13499370.220113523 400.70757388217726 376282 None 13861 SKY_20190622 29216841.916238897 2878.152352635393 1.947789461082593 0.00019187682350902625 1582170.792285013 155.85971273490466 16137 3769 427664 XMR_20190818 1409561427.7396894 137900.49420365263 82.13026790380064 0.00803556239718591 167896962.67652002 16426.91000917504 320383 160337 90338 ANT_20210202 146859859.8154413 4398.958393618811 4.231543186185146 0.00012668809423063492 43979671.18141384 1316.706572924366 77386 2711 124714 PIVX_20220112 31475120.51543476 733.9279915486873 0.4613829448618623 1.078499045550127e-05 137657.010986146 3.217781598023557 69233 10399 350674 CVC_20210304 266103086.1463638 5233.847478138506 0.3929764831094624 7.755860684061965e-06 47617861.22131835 939.7954167213348 91736 9249 137471 ADA_20201115 3248323140.867968 201811.5502076757 0.10430680876088493 6.484297812474641e-06 372055933.6183114 23129.08912792012 165996 89985 32496 RUNE_20210527 3203927215.9794836 81775.65697474667 12.73785062388089 0.000325144696702496 234020011.55228224 5973.563980710167 1912 5038 71377 BLZ_20210110 23602057.221514378 583.2613138399402 0.09114716983844046 2.2618688445132786e-06 10075059.985893194 250.01834208442298 None None 444357 ZIL_20210703 995680946.438855 29457.81600012528 0.08175352342931215 2.4137056580802007e-06 70271708.12800728 2074.714488094066 306256 34754 36438 STX_20210724 1225798329.138075 36665.811595991865 1.176060004073752 3.517202934107928e-05 85638376.69807345 2561.1580085314663 69396 None 61461 XRP_20211202 46758577987.40217 817908.4008787494 0.9903099747669621 1.7322657845885494e-05 4045490613.2193785 70764.35812739498 2271390 339430 19483 BAND_20200407 6305945.929565857 866.7494004034708 0.32896526852927843 4.521612656310059e-05 1514103.5686070076 208.11284696969003 9598 1063 769411 LPT_20210610 661713986.3134266 17665.12611469591 27.971952428638424 0.0007468417780407544 20397238.242796365 544.599441716998 12843 1040 99080 SNGLS_20200113 4065378.053933138 498.39375290875677 0.006767475562568066 8.299994291878418e-07 159068.88818315396 19.509059940138425 5087 2153 2483820 ETC_20200905 617608731.1918293 58868.77789854798 5.306743216488964 0.000506093395166201 777168054.163533 74116.94953021669 235292 25757 179202 ZEC_20191020 274725147.2862176 34575.065822707504 35.84259522741616 0.004508736947610095 128699032.06637141 16189.39915811269 140 15332 189800 DOGE_20190906 300430049.19734126 28425.584448605056 0.002480772021271866 2.3472019350879997e-07 57381859.58044829 5429.22971926794 138175 140145 101956 SCRT_20210217 168432913.92373335 3425.3318667844133 2.4243657308487996 4.927004015519893e-05 4620899.026299883 93.90987410930123 67759 None 189901 OMG_20210428 1048957599.5509878 19040.824132900052 7.476767325279107 0.00013575387177616508 346131991.3416201 6284.635581924423 320334 4499 121524 MTH_20210117 2689574.968080998 74.15623010542399 0.007965479885468767 2.2007099103402826e-07 255582.27538526533 7.0612499740757535 18975 1881 1172879 TFUEL_20210506 0.0 0.0 0.38407947276607757 6.699703477060833e-06 103896178.03867055 1812.3165506503235 152709 16000 19506 SAND_20210325 390896103.95327884 7430.26147054303 0.5691376325467815 1.0818325841011378e-05 193479250.32580253 3677.707207890685 None None 31612 APPC_20210203 5602569.1103020385 157.29802608791357 0.050356570773818124 1.417468111988913e-06 1017636.2136841624 28.6450578412384 24287 3120 1221759 KNC_20200323 76595376.51917346 13128.540368074382 0.4268175255157191 7.319937962210854e-05 76331225.02779272 13090.836209405405 104461 7223 120611 DUSK_20200502 5964082.497090805 673.061785340081 0.022290962255467877 2.522324992578842e-06 1887524.163101613 213.58204801229795 17493 13335 1673538 SKY_20190329 17802092.579019263 4422.201867951216 1.2716636061525897 0.0003158928170703497 3751265.0053453604 931.8483790702868 15247 3580 436972 DUSK_20200223 10484151.89162141 1086.1025495723043 0.04039430656869475 4.184659621383759e-06 766978.581696862 79.45536324122503 17764 13340 874362 FIL_20210523 5310542624.92256 141292.65303584214 72.55451324560588 0.0019305165497740312 1231601972.324746 32770.22867286973 87867 None 27077 NBS_20210204 0.0 0.0 0.01609658319239606 4.291281463301892e-07 9876963.927129677 263.3157093501397 None None 745524 ANKR_20210805 741776254.2671971 18605.215423881775 0.09630501767729374 2.4214811502392123e-06 70867849.80676968 1781.892227465283 118171 None 5363 VIBE_20210206 3904798.799388251 102.9224416 0.021286413566839288 5.6e-07 1632131.0441564538 42.93787593 18538 None 1388875 BTS_20190901 91279922.66978268 9509.501407042639 0.03368364589506012 3.5091471230993633e-06 12334545.74252289 1285.0074437298215 13610 7157 133075 WNXM_20210131 69122601.31354736 2020.60025255324 40.86160906960494 0.0011960265672911845 25572314.777089946 748.5062031804179 19639 None 132574 FTM_20200713 28527147.670990594 3074.106050085199 0.011772890841471638 1.268120672999587e-06 9820439.448796093 1057.811751646402 22987 2444 295003 TRX_20210825 6118736855.660526 127328.39131201594 0.08491583539821176 1.770159794514594e-06 1244886137.4659321 25950.9593111436 1097249 115790 32149 PAXG_20210806 303786147.84503376 7414.546009030099 1807.8623222866286 0.04418483827571177 7421909.4748970885 181.39427200989476 24104 None 40633 EVX_20210408 22171354.247660093 392.9268253846405 1.013562845193772 1.8027023745478893e-05 1467742.6638942782 26.104974131343763 17860 2820 673277 CELR_20200719 19058028.819638383 2078.2214902147684 0.004934502120946298 5.382324341533204e-07 3758117.0296101565 409.91784522573397 None None 610073 HIVE_20210219 120356600.3216976 2328.5602376063416 0.32721531529410364 6.329061534669158e-06 24334471.248171017 470.68202111775383 10811 118 135333 YFII_20210602 74933442.09746827 2042.3010276912228 1882.415437692947 0.0513281677317941 34392864.532131635 937.7965586840229 16663 None 469501 LOOM_20210708 58761369.17986545 1729.2627136858157 0.07036384597071853 2.070952803429476e-06 5043835.343071233 148.45045491283818 33676 None 264943 XVS_20211104 305064069.1638338 4838.14127544964 26.719115042010635 0.00042394774357401804 17395811.029371176 276.0164332518611 130635 None 26974 WRX_20210401 196351954.32174987 3338.348134806062 0.7918432654099223 1.347141668946335e-05 61827863.49447205 1051.8608271829037 76275 None 3317 ZEN_20200913 65333982.96480545 6265.558732959101 6.612841766627825 0.0006332960559554716 2328929.3013056503 223.03599468524965 71035 6104 78884 TROY_20210111 6414318.939425508 166.3894357820099 0.003356480295164422 8.73091713134022e-08 1968203.310995 51.197142526603145 None None 988367 QTUM_20200113 168115050.30999663 20609.4766352408 1.747690024175373 0.0002140003256531843 276532960.0582998 33860.77776248547 179857 15215 156080 DIA_20201228 30521327.641819093 1152.875528157825 1.1936909402948823 4.534503024251842e-05 11271434.17665171 428.1707319405201 None 188 284096 ANT_20210430 348591689.88527143 6503.3342167222645 9.935193690148303 0.00018535119152200582 91822775.72582462 1713.0477190913687 83004 2957 100052 PERL_20210418 0.0 0.0 0.19909338624408798 3.302664794180733e-06 17978895.887605727 298.2432897767813 18171 633 340450 DLT_20210304 9050631.586612158 178.10086777702188 0.10955399042057612 2.1621840141913533e-06 276488.95032114757 5.4568527005717495 None 2544 3551597 FUN_20200518 15660771.333119279 1613.9869891517153 0.0026199134357026773 2.679501530565684e-07 322325.44835773425 32.96565147707551 None 16862 215039 STORJ_20200325 13026643.13833527 1927.4909037421837 0.09056273319803657 1.3402299087031544e-05 2176291.4736531563 322.0674575564663 82193 8024 127597 ZIL_20200430 55968587.190638706 6407.007724856024 0.005330737086687217 6.080215627876678e-07 20142321.693992466 2297.4244865946134 70102 10578 194676 ENJ_20210430 2462840680.477635 45956.27488063436 2.6314840535874953 4.910009496278937e-05 489962557.7191766 9142.068742322648 166871 30257 22644 ADX_20200318 4504797.874067513 829.2669164260768 0.048534098879879355 9.005478123658776e-06 112098.70363445266 20.799859203506884 52337 3770 39887 QSP_20190821 0.0 0.0 0.010124049384081546 9.422155364927117e-07 94989.62466177212 8.840405332540014 56564 8554 585298 STX_20210823 1519251695.058277 30795.19508724693 1.4437555189176148 2.929630256984057e-05 27597312.132084142 559.997309615136 71724 None 67440 KNC_20191102 30105278.566807035 3259.1252595762376 0.18037260630621765 1.952670579159973e-05 6362907.673168016 688.8331252592282 98461 6715 172247 REEF_20211221 310761102.10289925 6586.897124530146 0.018889681347124106 4.0080266163769517e-07 123926774.52323692 2629.4875050737687 None 14461 99045 YOYO_20200412 1311363.1092174377 190.53914706650164 0.00749725478447448 1.0894312213230503e-06 203048.79338241706 29.505159064470003 7467 None 3120831 QKC_20200301 11627751.775184128 1357.0676565900037 0.003102202562069196 3.627073350501494e-07 1404571.6727308063 164.2215290942558 None 9199 398743 LAZIO_20220115 0.0 0.0 4.363385567589354 0.00010119963361753626 9873789.633019267 229.00197055705542 None None 97982 ETC_20200530 839879526.7497624 89114.37654912588 7.160131243159017 0.0007636826597528933 1442227524.4358654 153824.57589479577 231650 25508 359190 UNI_20210724 9652174791.000511 288713.68964036263 18.617164835114142 0.0005567772609902313 355034093.2487028 10617.884718103007 576798 49215 1613 QUICK_20210804 51561240.50918147 1341.9623814119868 322.2880488718465 0.008390934851295653 6243607.600871423 162.5555300587597 None 1895 4564 SYS_20190603 42870106.498812415 4904.792728797986 0.07746577725224275 8.858826472676831e-06 1242577.01921859 142.09854444950815 61880 4602 1053467 LEND_20191108 14318000.870342879 1553.14726870003 0.012691194870039115 1.3765255070568778e-06 2706123.8214500756 293.51440141181763 41600 5795 541859 SC_20200621 166998438.52093667 17848.63468509408 0.0037665064782986244 4.0256214257878356e-07 6667754.822651376 712.6459712898286 106613 30112 209759 STX_20191108 84631236.23155582 9180.385906527752 0.21933514680289531 2.378975559511834e-05 3685845.4868741287 399.77798621077176 32983 None 53113 CELR_20210207 41489769.551598854 1058.4151982661783 0.010519136466905289 2.6750261744436047e-07 15237817.512307512 387.4991147330339 None None 412914 HC_20190512 52471700.3348958 7203.876930923371 1.1826259778017887 0.00016252318293701274 21284124.424507715 2924.9853397674765 12732 801 932135 GXS_20190613 138346758.68219724 17013.703253777276 2.305040836761204 0.00028333855198848135 24446440.90743815 3004.987615628556 None None 820367 ANKR_20191113 9032659.93420432 1026.7122441250965 0.0022598037185269024 2.56766930239435e-07 1598114.6930333332 181.58347140352356 None None 5174 NKN_20210519 346527019.65314984 8096.192448999915 0.5344829352013674 1.2492914846181398e-05 46937199.596173115 1097.1022628669896 26886 3035 131157 XTZ_20211007 6746435032.6953335 121537.21944542938 7.812109164866137 0.00014082445922488181 995222838.0921168 17940.31740018267 173424 59784 44733 RLC_20200913 83379437.4913135 7996.126043690568 1.1921621824983812 0.00011423800798637103 2895944.223979219 277.5015884950471 33158 3837 240774 FET_20190419 0 0 0.2127477013984959 4.034307312365059e-05 20776037.821447566 3939.7333439594818 7849 171 178040 NULS_20200610 33142088.061623685 3390.5419360309193 0.34696997090730153 3.551479869500416e-05 36630028.748233646 3749.3391540021526 24962 5184 769732 MTL_20210620 114155183.00060825 3202.188822491211 1.7597045331224057 4.942488376566758e-05 13834765.528600106 388.57755112048727 56668 4179 153721 ATM_20210221 0.0 0.0 8.712173856223128 0.0001549728871920144 3232184.4174012416 57.49437044853216 None None 230170 AERGO_20210731 49284993.05104788 1181.2859515197508 0.1851020870567033 4.4313083013078065e-06 30904516.813053273 739.8481782630456 21524 None 407974 ETC_20210731 6575210234.521767 157598.66002340757 50.997787185787764 0.0012205756699705187 2888416184.7495966 69131.0489023911 487948 58627 120036 CVC_20190811 14096976.811266772 1244.6115727015479 0.0411872767008822 3.6369534273003623e-06 3594970.3973716013 317.44608906089536 88450 8138 266707 SOL_20200502 5735879.899599453 647.3085453804233 0.7169539321663891 8.1140892768978e-05 4174109.6429038513 472.4027134036497 52680 1820 146569 LOOM_20190930 17766049.67976833 2204.56211976529 0.029453213381830733 3.6579256765998663e-06 5176455.234094435 642.8870177623672 21001 None 411903 VIA_20210217 16269536.361272654 330.6172351946201 0.702078732128672 1.4267113957706463e-05 748566.3040800645 15.211799298959674 37788 2138 1515639 IOST_20200629 84432046.80988611 9258.064036429176 0.005612304994059611 6.151741589995529e-07 46034241.87377836 5045.890424675451 None 52176 434234 APPC_20211120 9215761.113581575 158.53645493709757 0.07868529977101975 1.348944078684441e-06 295062.0776022856 5.058406634837859 25191 3102 1126197 ADA_20210420 38453861925.1591 686974.4450217838 1.194858148474349 2.1363350129230366e-05 5343870506.968918 95545.21332211145 339996 342569 7301 CELO_20210909 604069920.1370364 13038.834295306144 4.264336353569228 9.210841245222131e-05 169802875.75794256 3667.692231358587 None None 100542 PIVX_20190318 48923311.17461407 12286.327395736911 0.8244829107007875 0.0002070560379060423 421768.38815070136 105.92055969998721 61184 8596 217374 BLZ_20210902 81989572.56384066 1685.4957590822046 0.2687190359764656 5.52292112068919e-06 15980135.120915797 328.4360761792197 66262 None 465931 STEEM_20210408 351423580.19531316 6238.914528931127 0.9184168813662142 1.6343965544651742e-05 21798354.751396377 387.9192186199117 13299 3922 170877 LOOM_20200704 15887643.941618545 1751.8341668696826 0.01907869688130584 2.1046611144304995e-06 8101362.994708183 893.6995946277387 21820 None 624225 CTXC_20210805 26773673.524254095 673.1373778458668 0.14770330122430278 3.7144122557292827e-06 5259848.015948101 132.2735766348353 20220 20595 812838 QSP_20211002 33691023.632107906 699.737110625022 0.047218196566028346 9.802957723672194e-07 528740.213856463 10.97716206927188 69227 8566 197683 NEO_20200309 717165157.9954247 89068.93544697724 10.037104319215878 0.0012476865128255013 548420747.5072589 68172.76659250088 322737 98968 240012 XZC_20190923 44684192.032484815 4445.060681196344 5.298438306973863 0.0005274764851865339 15452677.71494995 1538.3635055396874 60779 4047 176312 AVA_20210219 99111581.68949252 1917.6442970241078 2.5729705804636356 4.976153144549918e-05 8822613.49382973 170.63030651737313 47614 9359 58416 SNGLS_20200502 5943938.887080818 670.757497240594 0.009186415026983294 1.0401830367056815e-06 448658.58154067845 50.80186823916019 8848 2124 2345766 AVA_20210916 199280180.49303848 4134.624196457105 3.7831309637768404 7.849130440071232e-05 6751106.433122743 140.06999893940292 119976 10706 53689 HOT_20200129 117892193.09710172 12614.254554119587 0.0006619706091348491 7.079599084631616e-08 11036405.903625576 1180.3141718791046 24875 6823 519557 FUN_20200316 9170539.78057197 1696.9911001378973 0.0015287743570537055 2.8449698124477695e-07 235757.2866415401 43.87320865666607 None 16995 317174 FTM_20200903 134259998.055826 11768.615930717564 0.055195285012138044 4.837068025612549e-06 68246591.13007453 5980.826147373656 24937 2627 147748 BTG_20190923 177369462.96185964 17659.778605843934 10.127339993131162 0.0010083279227341587 14951412.345876418 1488.6363608691545 75085 None 262678 WABI_20210408 42369695.010828316 752.2357839770784 0.7211185986629502 1.2825832079024304e-05 7684173.084146535 136.67088024932033 43503 7645 354354 ADA_20211207 45537066741.6724 902176.3635051356 1.4176556501197515 2.8089608312315354e-05 2441175917.2691627 48369.768308513834 745544 668977 6716 SOL_20210125 946423915.3825785 29392.67898347444 3.63170707484897 0.00011256299571296779 39857016.48670482 1235.3488548112641 108484 3062 90687 ANT_20210127 139398127.01092935 4277.697501744168 4.005147128451737 0.00012296386821434327 42393819.38212677 1301.5521908234248 77100 2702 136164 LRC_20191220 20929252.74156497 2929.965960273387 0.021766927282743292 3.046214312274713e-06 1853894.8703751655 259.44686699379486 33490 6833 844781 STEEM_20190626 132402229.8589592 11184.756744192444 0.4237221864119884 3.5794182523843414e-05 2071274.7763354545 174.97216284326848 5784 3753 341474 POLY_20211007 762778549.2146844 13741.477309851673 0.8752661458256199 1.5777725791420154e-05 105949722.16038792 1909.871268180862 56000 7535 151419 ETC_20210420 4250624511.803815 75936.98704893698 33.625643769943856 0.0006008728497178476 4784981972.43936 85505.15116674497 336671 34972 130525 ZRX_20190930 121633962.90902601 15106.26328962774 0.20245228109132904 2.5143449975717223e-05 17558246.16869492 2180.6367496780827 151119 15893 146664 NANO_20201208 140417596.92634675 7310.72890802117 1.0543504646338824 5.494700649545767e-05 5640304.06595901 293.941942972656 None 53423 339047 MTL_20190908 19529104.034576397 1865.374937006756 0.387210132659754 3.698656307825265e-05 9035644.068735588 863.0905834135064 34278 None 253517 DOGE_20200511 302726858.91509694 34577.49894335605 0.002431493137807546 2.7772544433164297e-07 232503916.47255927 26556.62584736427 140868 154671 106341 BETA_20211221 160302007.8810328 3397.76383731049 0.6262418107109042 1.32831171403747e-05 8256818.582017847 175.13408807256423 None None 51622 SNGLS_20190902 4177833.895181736 429.5331460754963 0.00730534613157366 7.508464224607583e-07 54169.82991820815 5.567596971703357 10 2165 None GVT_20210210 15318897.789724877 329.2744735342341 3.4489315345622718 7.405188083344327e-05 1324308.0346787372 28.434168607886768 21765 5475 282943 VIA_20200301 4231754.2124133315 494.05987051329004 0.18268052282577193 2.132806182075714e-05 34924.0233027868 4.077400899174115 39607 2186 2317316 STPT_20200425 8019709.868698474 1069.747590227141 0.011481649973735896 1.53185397882552e-06 1314526.2093171435 175.38090854703958 11246 None 1265534 VIA_20210421 45818868.4163415 810.9417472730532 1.959072524657377 3.475958244360926e-05 4440086.46667031 78.77990715120269 38265 2233 732301 BCD_20210616 537961861.6155958 13320.321367501347 2.8591284119489626 7.079369139486425e-05 10610837.578216301 262.7305432711298 33943 None 1272149 DASH_20191113 640165566.8336232 72789.70222807303 70.28544637492008 0.007986551760171021 400589248.74285656 45519.050310740604 316562 31892 74210 LINK_20190316 177506589.06254178 45231.35568127366 0.4870303309514424 0.00012410106253916286 6033479.580287573 1537.4016342252876 10619 6473 307556 PPT_20210105 22784351.444043826 728.2534380677992 0.6312156321204653 2.017546803484005e-05 3291834.021171756 105.21648813899276 23666 None 755937 XZC_20200417 35277178.41136704 4967.9085030619935 3.5667628817327017 0.0005031500523713145 29722852.7852567 4192.892948426598 63622 4094 120622 LOOM_20210217 91148927.01754414 1853.3881631206266 0.1096159792102693 2.2275331745726113e-06 28821717.013420627 585.6931740981394 25315 None 256262 COTI_20210519 247219095.36177588 5793.937310447099 0.370285190492696 8.65539038302033e-06 52014717.29969303 1215.8403723687802 109648 4818 65620 MIR_20211225 296609310.73531246 6213.759998811874 2.5466036032473336 5.007995885039779e-05 27667572.733914964 544.0936713660483 None None 16589 NAV_20200907 9016908.275126912 875.7225875109563 0.12961479967919276 1.2600707332651169e-05 188552.77320956104 18.33045545612053 48549 13774 892932 IOTX_20210117 46800588.751675 1290.3731146095392 0.008170109386138205 2.257592493837737e-07 5937783.748456853 164.07486591662547 None 2019 602191 ACM_20210707 12129192.587718066 355.10892495938674 6.068711426119099 0.00017760775588549673 2277316.1682250868 66.64825292885467 None None 41859 OAX_20211002 10746817.800184533 223.35592544530604 0.18737662089185592 3.890571639891329e-06 227689.3480960109 4.727600039916115 14355 None 3028474 FUEL_20200325 1672555.4729023268 247.48013941797657 0.0016893133896270776 2.5e-07 100702.85346217547 14.90292655 1 1469 None CELR_20200625 14581300.400492262 1567.177383085468 0.0037801248465700325 4.0664520199528755e-07 2829842.4521231153 304.419007907263 20589 None 899619 YFII_20210212 120566396.32409415 2529.4987037753685 3042.519569528239 0.06362233177479654 366577332.67159534 7665.523309672088 14029 None 213676 ARK_20200704 38697026.87646336 4266.886524368872 0.25641348316610507 2.828618173415016e-05 1625672.758542909 179.33563602274913 62101 21895 108686 ARK_20200318 18041615.7948342 3323.111897558564 0.12558259227474147 2.3348373768811705e-05 445667.1909483483 82.85865072759212 62622 21969 77737 BAL_20210731 224108856.0363532 5368.420803038719 20.722321185012376 0.0004959658538045262 24535676.753073033 587.2343045387686 92623 None 284414 DCR_20200907 163687376.40919733 15897.326271728614 13.66672102156783 0.00132850784699484 4499781.939376016 437.4125737104502 40822 9908 216074 BTS_20210420 297991634.2879538 5323.030534910488 0.10986779745754817 1.963280673589628e-06 86815917.84611301 1551.3555164612858 4967 7083 102843 BRD_20200502 7591387.889769648 856.6676808524883 0.12247736050260509 1.3868181701032125e-05 514778.0530765957 58.288613883199595 187 None None CELR_20200314 5140409.684637487 931.5766530230608 0.0013801599824879236 2.4809370702251847e-07 5861534.911219736 1053.6531586323813 19285 None 1113968 TFUEL_20210210 0.0 0.0 0.041454261852539226 8.899966732391448e-07 37491968.32970385 804.9287478647967 83984 3495 46280 MBL_20200610 6460573.471009257 661.0493951442223 0.0018310651658082285 1.8735558472614883e-07 3116435.3058299064 318.8753572990683 None None 90223 GALA_20220115 2433354922.456366 56465.01057970849 0.3243525909250315 7.520259915540315e-06 384159661.1837042 8906.913593408282 274156 None 3011 COS_20191216 15044725.355395382 2115.7474341385796 0.01110866420380515 1.5623561210565048e-06 5538597.7255739495 778.9651302679594 9359 None 207553 XEM_20210107 2357462798.500629 64318.15205072602 0.25905813926224824 7.015904155708896e-06 437336920.13570976 11844.113156077903 219906 17893 99771 GRT_20210620 1749670490.1524243 49195.203436105265 0.605060779755478 1.698736444442755e-05 87215414.23342466 2448.613554746745 111847 15361 33300 BTS_20190213 109092425.62035573 30023.364905537685 0.040662539803637716 1.119038985655497e-05 14767687.706066485 4064.0890487601546 13798 7225 107513 BCPT_20200324 1579007.4136607917 245.1016756290565 0.01355149036590022 2.101485639962328e-06 277821.45404804515 43.08292153788036 10651 3168 1690012 DOGE_20201015 335281826.0762547 29373.22406616308 0.002648955090012703 2.3188513571386066e-07 92411042.53938185 8089.509415050577 151892 167783 89289 BAT_20210731 911729329.9491545 21852.886155582637 0.6123829345781255 1.464636481593558e-05 95274772.32180196 2278.6870671724923 208953 76784 27688 LRC_20200319 30866009.166966546 5735.303135194967 0.027170498003436773 5.043005439524271e-06 2733667.331207455 507.3848561548348 34287 6820 553678 STPT_20200607 10031647.972899904 1036.715528411221 0.01425354134345386 1.4747551964094974e-06 2181438.6191123948 225.7044661158439 11160 None 1498022 RDN_20210428 66993443.261120684 1215.7978637259553 1.005011812235779 1.8237932836988086e-05 1797082.1740558585 32.611620673459456 28930 4534 626244 NKN_20210616 196821532.9650921 4873.611886169213 0.30259698758425696 7.497329833353374e-06 12323379.519451676 305.3316612849449 27943 3217 104026 EPS_20220115 129514224.222004 3005.324859694539 0.23205746142051736 5.3803560509436995e-06 4774708.10848216 110.70374339917943 29578 None 83602 YFII_20210523 71322222.03866595 1897.6720521033694 1798.7932558685898 0.04789779452503552 97976556.75606431 2608.8940285171298 16471 None 421483 ARDR_20190706 109007912.1257827 9918.10519940971 0.10911691969310636 9.928023273237237e-06 1335043.766263839 121.46920587142502 67900 6570 885731 QTUM_20190708 462559931.8367186 40492.48283195245 4.827412336205951 0.0004224387432535306 354915244.09111977 31058.03673551706 None 15367 346886 RDN_20210206 18562871.591225654 489.8707632909831 0.28154715912000966 7.411752816566565e-06 2379717.1095416057 62.646254518797996 26939 4382 1282732 BADGER_20211104 369629766.16511524 5861.053336260512 37.20884014783468 0.0005900038813146664 387075393.94372433 6137.680827481824 39805 None None CMT_20190625 37773384.90161491 3421.2230745346783 0.04711070215296585 4.265426916879259e-06 11978001.615998425 1084.4943541153843 291113 1642 705322 XVG_20210108 274466495.9764589 7011.966278587172 0.016821199630476572 4.262587443759621e-07 52396832.104443096 1327.7654598220377 289204 51352 225034 ALPHA_20210421 337369793.1946032 5971.620210664619 1.3584550189959281 2.4092946921541808e-05 167198011.02869934 2965.3486856555896 54324 None 28389 WAN_20210221 172628567.9631488 3077.6236839413627 1.0577080011928206 1.8812643364002425e-05 19040576.814609844 338.66017904203005 None 15868 363625 CRV_20201129 81885740.50588349 4626.783694133296 0.6099627903110516 3.443335084223772e-05 44216084.06219062 2496.0669069778496 46364 None 14362 LSK_20190706 220043099.75508237 20020.662438308686 1.6487154049836223 0.00015004089355303242 9901868.49280034 901.1168282976887 182865 30485 193702 AST_20200331 2115753.334218104 329.30250606078494 0.012192200008849652 1.9017452840982474e-06 5659457.668606106 882.7649582530767 31702 3465 329444 PIVX_20210421 108656378.33563831 1923.2742171212806 1.6536255130791344 2.933313886990024e-05 2188522.6358598513 38.82150939849766 67412 9614 208244 BQX_20200318 3320065.911248461 611.3814076468263 0.02344896360814911 4.359642183659933e-06 433189.18799638556 80.53873463465638 10788 11 311435 UNFI_20210120 18484715.066973574 510.4669431742444 7.461249554284334 0.00020701606931688863 21608237.252054904 599.5312592404287 13411 None 124475 FUEL_20200217 3550180.3984602788 356.13527747755904 0.0035858447211987174 3.5976147249140625e-07 446247.7458278459 44.7712487899723 1 1478 None POE_20201031 3426412.5142468745 251.71741976855 0.00136072804711485 1e-07 15914.153890094583 1.16953229 None 10113 1322043 XMR_20200106 931292660.5662628 126819.63072885582 53.599592895835706 0.007297562158181722 78679811.46957998 10712.223428806825 319861 164237 86242 ANKR_20210616 603574107.952053 14945.44779925487 0.08618876349562524 2.1354531714419316e-06 38728808.81289559 959.5631060406613 111804 None 5363 FTT_20200506 316153931.7487869 35251.718460837794 3.161608699041918 0.000351425843333596 3596820.662935132 399.80144765376093 10958 None 13192 DOGE_20210111 1263664502.9384043 32870.59385650579 0.00988108787044481 2.570280525365591e-07 430989178.5231064 11210.942628237017 186253 183259 103049 BCD_20190205 131255304.0783762 37888.05305623188 0.6975843325773043 0.00020136414592512663 1237363.817890294 357.17646849604625 20606 None 1643339 WPR_20200412 3187184.372181541 463.1797554429017 0.0052592108784801864 7.646819662246584e-07 56444.502070855626 8.20695230205082 33374 None 1058111 DUSK_20200404 4818983.557474578 716.6103944614105 0.018336952282461124 2.7251191682762734e-06 266903.0997690045 39.66541124440595 17602 13337 1650258 FUN_20211104 210484227.7373388 3337.5539475872893 0.019859102455901036 3.1489687616852757e-07 10158193.37205549 161.07391396359972 None 486 158342 EOS_20190626 7475533986.569557 633173.870008389 7.177291466022409 0.0006070753681699306 3690603798.9383936 312161.58220916183 1176 66757 103805 WAN_20210206 85445988.22989796 2254.8176927466307 0.5204318042090783 1.3691447337615484e-05 10537860.743160402 277.2285710620094 104326 15794 443553 OMG_20200518 136551093.30107638 14065.734821557477 0.9772906330043238 0.00010031707236128742 100549951.64119653 10321.266196633274 None 42791 572237 RVN_20190321 121406059.76423965 30040.261291422357 0.03859349308172723 9.549429563690345e-06 47161942.826110676 11669.574716935134 21379 6027 283361 QSP_20190706 0.0 0.0 0.019819643735160066 1.799039339857636e-06 536708.8881177997 48.71734409949393 56838 8596 721105 BRD_20191102 20474452.10386841 2211.195160149665 0.3360597122551718 3.631197725222514e-05 1329640.3060207593 143.6705049286206 172 None None XRP_20190426 12175771462.06511 2346049.864051427 0.290039376343368 5.584610808055334e-05 1375461388.2715502 264840.47207129275 918817 200383 39208 ONT_20191127 400313562.2853828 55835.87165300692 0.6265545191027455 8.754636695129816e-05 119395432.22876117 16682.72433367271 81543 16293 302631 REQ_20200313 4403737.641977944 917.5054977782427 0.00564126811716888 1.1772082956632501e-06 119744.42360134564 24.9880214687726 39742 28264 787523 LOOM_20210814 79155853.03286012 1659.4629268032031 0.09504674306566827 1.9920793727149014e-06 8020397.1147801485 168.099054612496 34026 None 309472 ONG_20190522 0.0 0.0 0.43467373835110007 5.462404525555215e-05 11491111.33127421 1444.0508593346492 80814 16169 231698 ANKR_20200313 3637071.5908357734 757.7729310200339 0.0009082736809805501 1.9062706961934712e-07 2386288.622631533 500.83055022264625 None None 5490 XZC_20210106 33652569.71614579 990.6459204238142 2.9607427659342744 8.68588964922397e-05 4010936.2130395104 117.66827479030934 67137 86 582569 SOL_20211230 52726687301.09404 1136858.8193261349 171.27231463236643 0.003677287542708781 1935535240.3698783 41556.74338356233 1193744 112969 3127 BNB_20200719 2534108968.2212358 276441.61717612325 17.13579467205755 0.0018693145599285952 140702673.06949532 15349.014178990468 1192529 66498 1050 HIVE_20210221 112161564.61550207 2000.1785639395548 0.30260495871082177 5.381048904591588e-06 7740334.346865615 137.6418874159194 10900 119 135333 RVN_20190430 165608260.66920447 31819.09294463195 0.04912388559250409 9.438348598807342e-06 27598220.530075535 5302.545247140667 23739 6392 171966 BTS_20210117 69156502.1137439 1910.662028584463 0.02551715902829725 7.049903529321136e-07 12224939.920677198 337.7517340270779 13158 6865 133221 BOND_20211104 146935998.59096572 2329.8981943289923 30.559168138933142 0.00048456301621020237 13450361.758079804 213.2763507495478 25687 None 197803 ELF_20191213 25724176.853778396 3569.156869377418 0.05576093857964239 7.736672706992011e-06 11087555.662542244 1538.3670265723033 84037 33512 883111 ARDR_20201208 69310167.92498404 3608.577979971885 0.06916587750187232 3.6045490070316388e-06 6454607.215554362 336.37899018885315 None 6297 4558154 BCD_20190130 134965484.32435066 39513.18950093057 0.7140773446046843 0.00020918041384498495 1543157.17264974 452.04942915732994 20630 None 1287719 ICX_20210624 490740071.22566134 14556.826551104048 0.7859375547303089 2.3329320230779224e-05 54344649.17117512 1613.1354402306724 141156 32441 229472 NXS_20210325 79394695.45691346 1504.9617249818623 1.1614556863907033 2.2077271553884365e-05 1298560.5221408396 24.683398266830906 25010 3765 380426 YFII_20210207 84791311.5952468 2161.7877562346957 2144.1971709974114 0.05452713322649252 173784872.1548904 4419.365441253126 14300 None 213676 NULS_20210805 39847101.055160455 1001.8547310635398 0.42359116711108574 1.0652383592609947e-05 13616482.39335849 342.42450007942614 59824 5366 385574 DEGO_20210725 38041622.09585997 1113.432591674067 7.033856582751526 0.00020587208330564763 56009047.9374747 1639.3139733797625 None None 198268 RVN_20191203 113848304.56782694 15571.89964387669 0.02284594095977639 3.1269922559178333e-06 10272027.078453206 1405.9630629114542 28715 7194 221280 NEO_20190305 531600744.7381997 143096.98719448055 8.178472995972303 0.0022014921106843157 262317726.214066 70611.03032770475 316852 97883 156064 SNM_20210602 106932068.65605842 2914.42591008 0.2420672595857901 6.6e-06 1004295.6547834595 27.38227108 None 9707 None ARK_20190618 80880534.01115012 8684.279704616405 0.5685888776732139 6.105034927152425e-05 796242.7369894873 85.49392910576921 63505 21825 211362 PPT_20200425 8781506.108210225 1171.1308678512514 0.24166341867364705 3.223892631919232e-05 3741750.003582547 499.1653405070771 23857 None 1377509 ANT_20200913 165703070.7940426 15891.287491975889 4.781170066420907 0.0004578844471749227 35134292.75809153 3364.750885856563 75455 2667 541569 COTI_20210806 112560971.60322767 2747.289528155179 0.16673074341450647 4.074962369944875e-06 50643019.86641639 1237.7345415114505 125082 5507 114114 GO_20190305 14164108.560017718 3812.7133592189703 0.020343493419406264 5.476088297734456e-06 2716009.790088768 731.0990851674185 7994 627 731173 CTSI_20210111 11227094.37663036 292.0639837365874 0.054211006335709855 1.4094749713083468e-06 6527082.568783914 169.7027990846179 None 172 553409 VIDT_20210813 22468387.53109077 505.41894541242857 0.4850583349334141 1.0909415655107786e-05 3064889.6051156893 68.93223398339529 29581 1623 1199855 LUNA_20210428 6959352055.689933 126327.12573706593 17.689347413917563 0.00032118123998774536 695123737.3131577 12621.195043040394 61461 None 23843 XRP_20190819 12092359196.325548 1172008.3244222638 0.28202860047193007 2.7335069401913756e-05 1838892908.0792031 178231.09138902728 937588 204682 32072 BLZ_20211011 74646062.0512823 1364.1982228879801 0.2418557621248638 4.418774353619072e-06 19320280.514241517 352.9870832557689 67608 None 328996 BQX_20210408 978863126.1264493 17344.214065389413 4.295944401840385 7.638962669345607e-05 13816251.182138156 245.67782340349027 61604 3840 22587 HC_20190421 61630111.834098846 11605.65576615553 1.4015436975530882 0.0002638802319742974 11793602.877687186 2220.479224879077 12736 797 924680 WPR_20200325 3436723.179486614 508.51570867449925 0.0056496973770036076 8.360937366172774e-07 364558.5032637272 53.95069166891007 33495 None 964364 BAT_20210427 1727798578.7260702 32073.711509179517 1.162667070081827 2.156837129688484e-05 378541812.0075945 7022.242706332752 189984 69310 19254 MINA_20211125 1568345097.065754 27431.799020365943 5.191757681977992 9.076666559529405e-05 169097089.5097815 2956.2972536161033 154519 11556 61857 EOS_20211204 3726736729.0343723 69414.58173802565 3.7952075749939715 7.077474110642429e-05 771117559.8935242 14380.147748352996 255717 96032 69184 TNT_20190312 7676580.489968431 1982.8036622083134 0.01800589495474009 4.657978161463034e-06 673492.5362686293 174.22702585642784 16985 2509 1349382 BEAM_20210107 25707713.416016847 699.7925104914411 0.32565408736913737 8.832575049791848e-06 9738269.769272834 264.12688164642117 15576 1617 333744 PERL_20210707 0.0 0.0 0.0684810792117283 2.0051027383513082e-06 9641070.091005603 282.28725748237736 265 682 5749080 SC_20210624 501281414.0900409 14869.514486509941 0.010426794701662283 3.095030020026741e-07 64194277.32627844 1905.506161036035 138311 47026 46227 RSR_20201030 110686516.25097296 8222.086749969594 0.011880349180282189 8.835173937021036e-07 59389352.17702814 4416.665272447651 46018 None 130786 TRB_20210220 92813164.73212108 1661.4776282089163 54.791627520700914 0.00097957917828969 91070150.86552735 1628.1761938512714 14577 None 359747 ZEN_20200403 49817670.72779071 7341.178553824337 5.709594562883142 0.000837539354228978 2800600.543533557 410.81956780832587 59032 5102 40228 ENJ_20191108 57857136.36084959 6275.856367183291 0.0655301426680922 7.108028775751375e-06 1947084.5237712502 211.1994917191767 49361 14156 30961 QSP_20200518 7252291.584221772 744.7280666642141 0.010198351329450451 1.0433253302618588e-06 323581.63276510884 33.10347947088431 54609 8264 544618 LOOM_20190613 60490248.02619768 7439.011506075483 0.08760647694944201 1.0759671980902309e-05 5329803.669877113 654.597025327045 20300 None 406238 ARDR_20201130 67482624.65527274 3720.1531259847548 0.06750667245535372 3.715334960750735e-06 8372408.2189258225 460.788538822209 64199 6299 1570658 SYS_20200309 14437029.195815397 1794.0071760646563 0.024861229716487954 3.0893630477729463e-06 393069.2740766442 48.844474082550136 58875 4511 856942 RAMP_20210702 46222913.300776206 1375.6535245689 0.1581325407206282 4.7020778215725275e-06 1729043.1915181277 51.41317281268349 30167 None 114205 LTO_20211207 97869332.29220316 1938.9916278336727 0.3294405060837657 6.5226475688660046e-06 20618908.76750558 408.2372163149966 21179 6021 189843 XTZ_20200109 923504731.069732 114749.63793113174 1.3244151424864765 0.00016479806974292578 64184824.706289 7986.570735310425 52526 19432 175595 POA_20210217 14286010.789728723 290.3269291661938 0.04970129426662141 1.0099921799332228e-06 1099318.2829574512 22.33951621236361 18412 None 431187 SKL_20210401 492093117.43212306 8366.120942710431 0.7454051650928927 1.2681377767664916e-05 148341555.73059535 2523.6950251456406 19452 1050 148914 OST_20190902 7186051.745661359 738.815254894418 0.010804460149681056 1.1108325213915553e-06 421410.24914595793 43.32620076467833 18010 754 572437 RSR_20210708 350107431.3071689 10303.614260935326 0.026607406345524623 7.830821813758753e-07 45413007.21878975 1336.5495416545857 76132 None 97085 AE_20190110 91556887.73749866 23022.645187872196 0.40235478653846163 0.00010117104911847484 9128852.505275605 2295.4258681803067 949 5514 442626 LOOM_20200317 9874511.68381802 1956.4160000775516 0.011819442702038227 2.347357130564477e-06 23467354.769755363 4660.648047709736 21584 None 494145 ZEN_20210120 313663632.3552654 8661.669575101761 29.250370912227243 0.0008115660477852961 46080812.91688896 1278.5350083222443 83145 6414 413746 MDX_20210813 830597040.9607095 18684.031707395734 1.3656229709971732 3.0717188780625115e-05 41569764.54521321 935.0357545385007 8762 None 12116 LINK_20200224 1552714326.3254926 156056.14528984285 4.248606936842866 0.0004272141768713197 359617948.92113155 36161.00249336284 43576 13101 107371 PIVX_20190806 27028426.658738445 2288.4994409521582 0.4443367965811019 3.7618155114210374e-05 495030.5610592056 41.90995788664288 63288 8616 295552 BAR_20211007 50723137.474194445 913.6969234224586 17.173106416195473 0.0003095393849070897 55484359.40623137 1000.0866509725857 None None 34891 SUPER_20210704 90983069.55312356 2625.9266373746823 0.4195881060709588 1.2103011713875757e-05 8664087.06651842 249.91544264216628 126422 None None NULS_20201228 22739957.18040739 858.932068656514 0.22946799473680266 8.725579586532526e-06 8342457.917421664 317.22411044404544 33438 5113 733138 TWT_20210513 312869485.1771047 6069.616971839833 0.8872318542192676 1.7602482078824968e-05 64291450.89334399 1275.528044659295 690249 30173 4038 ONE_20211221 2738100767.8666162 58036.82620665454 0.23725957479634363 5.0341912777623504e-06 307601352.02321225 6526.708330790727 295350 45739 8495 STORJ_20200315 10925484.595465817 2113.6926967560585 0.07675337096374094 1.4775944412682703e-05 1065862.387054985 205.19129238159192 82339 8000 120208 FUEL_20191113 3393440.4457135387 386.08039708051683 0.0034328908509986345 3.900115681567511e-07 365914.398180988 41.5716241616555 1 1493 None DGB_20200629 263771104.2107311 28930.55856246296 0.01984659320163112 2.176113455621831e-06 15830118.556695925 1735.7202641954527 161603 22466 183057 UMA_20210704 579338414.291095 16711.42001319629 9.40498669976414 0.0002710458614003929 17738558.778761875 511.2142204636599 41164 None 148626 PERP_20220112 600562553.7249123 14009.325194130148 9.425488112666658 0.00022033241673766427 14081893.423664503 329.18163740598106 36428 None 104435 HIVE_20210131 50573359.92599303 1478.3665819431405 0.13591512133451952 3.978259782569592e-06 3346923.4250552887 97.96504411357077 11051 103 140605 LTO_20210428 146986895.04540947 2668.0899696576967 0.5237978943852803 9.509646049209958e-06 19356777.74208375 351.4258208244047 8451 3832 174432 AKRO_20210212 126710225.30493079 2657.3195615088016 0.04968932795270197 1.0406976053809517e-06 65416400.913576595 1370.0867890224208 28916 None 187936 RIF_20210206 130619024.78506894 3446.7945673107306 0.1908951963195247 5.002289133000247e-06 5214875.306282431 136.65254326727046 43635 3036 663041 SYS_20190627 24956647.13877181 1913.7486351800078 0.04492044981598182 3.4446313661041695e-06 2631312.4340290856 201.77672711219685 61486 4604 932870 FORTH_20210511 267549939.0539529 4791.927230705675 32.22316534757164 0.0005766121736633085 51335896.566128746 918.6218233579283 None None 71804 XEM_20190729 573799845.9256294 60109.2465246536 0.06376177346430321 6.683497710360795e-06 40981649.95334083 4295.689231155142 217367 18425 192645 RDN_20200325 3731543.6649866956 552.1389044589879 0.07604048976498623 1.1253165077584046e-05 171103.52857511412 25.32146042672489 25099 4323 1385636 CMT_20200423 6099705.286576456 857.553263527752 0.007608272985467406 1.0694417700424272e-06 6615937.481657967 929.9561023098158 285301 1632 944279 VIB_20190915 3270775.0901759453 316.04233004902017 0.017915784880512552 1.7311329095360106e-06 537496.6148459368 51.93621629918694 32270 1118 4329648 GVT_20210724 12565162.807100672 377.45154069832546 2.846571640039262 8.512616283145058e-05 899940.6707572483 26.912548063069202 25763 5687 392150 XEM_20200224 550755889.1834062 55357.864622841786 0.06117920155233982 6.148241377966575e-06 23305648.067918245 2342.1153947051075 212780 18050 232859 SC_20190410 139374405.75323847 26933.945565082668 0.003453420284329876 6.680600216361995e-07 4452188.603437332 861.2705578400062 110113 31036 238121 XTZ_20191108 979819571.5604707 106282.60027452014 1.2084411653642573 0.00013107913743935906 95136024.69018874 10319.367142744268 45410 17307 215238 LEND_20190601 10884528.3158011 1269.189693740603 0.009741845505173772 1.1356396194349963e-06 2070956.611610439 241.4183613388885 42285 5872 1092370 STEEM_20200309 63135866.390388004 7815.299138551701 0.1807131572206727 2.2463985805416253e-05 2701591.7148329825 335.8278880598064 10926 3838 211376 LTC_20190221 3121401274.418479 785169.458798701 51.54260189028718 0.012965227240388453 1584532760.8464906 398579.5547912799 437489 199834 251431 XRP_20200322 6893765822.423717 1120435.2268203334 0.1572388916037732 2.5555842440425594e-05 2026937931.3596132 329435.71327683824 946360 210948 34201 CELR_20191020 14524136.75679958 1827.910511086816 0.004311438525067875 5.423475072601332e-07 4970806.231329267 625.2911535117211 18461 None 557601 TROY_20201208 5610580.472196481 292.1859899991988 0.0029511548539796957 1.537074109418653e-07 1703841.4318448 88.7425662503533 9561 None 1550924 UTK_20210813 142822893.99728587 3212.465579377584 0.31737135411715467 7.138733954973311e-06 8749679.228909597 196.8092942108585 78052 4017 176037 CDT_20190902 8700927.305491632 894.5632528885969 0.012898303875470486 1.3261056283396356e-06 468417.9182069397 48.15917222501471 19706 298 193122 UMA_20211120 1099775680.4177387 18918.90380568844 17.313450273720484 0.00029684210650974554 61961290.74553378 1062.337071824716 49465 None 217168 BEL_20210509 128425643.88952287 2189.9356167977035 4.079621735563982 6.94846148718906e-05 16231744.119731499 276.4610451568494 17560 None 339562 ORN_20210420 332773220.9210049 5944.334713944785 13.403953390469747 0.0002396814682165253 24539516.53645971 438.8009403974986 None None 53561 LRC_20190909 33772088.01842532 3251.3351273804574 0.03511900105655554 3.379050769187909e-06 3451288.386334889 332.0731890338688 34384 2438 519433 TFUEL_20200315 0.0 0.0 0.0015649185268922965 3.026840991782183e-07 579045.8290869512 111.99814057294432 68450 4027 385146 NXS_20200903 14190752.567230156 1245.6090324875026 0.23766965333909418 2.0861717202439604e-05 92519.91632753893 8.121038184309947 23309 3525 382066 GAS_20200117 15048127.358851073 1728.871480497859 1.083053428867162 0.00012429550896343006 2635569.713607926 302.4684380567877 323250 98693 204331 SAND_20210217 154598224.44782296 3143.9822203194876 0.23108868974127317 4.696382595285468e-06 75002521.64571609 1524.2655867486678 69954 None 43842 EVX_20190914 8490666.205191921 819.9627967547691 0.38948010115559273 3.761297232820042e-05 1290816.5306095232 124.65706541244822 18296 2907 505983 ZEC_20190421 442856363.9031966 83388.3315292734 69.47746340634927 0.013081097073649219 210566542.05170146 39645.10565003197 74849 15131 154432 ICX_20190719 134279803.6899746 12511.636029480283 0.27174909914912193 2.5476951424458784e-05 17601998.022733923 1650.217976812972 114138 25674 240617 ORN_20201226 37724153.15036133 1527.5517762000513 2.278322450798711 9.239635469778234e-05 3593309.6117748916 145.7250747417738 30568 None 150714 CHZ_20210304 464033740.64298373 9124.185207527054 0.0860639273448939 1.6986417155889572e-06 772784199.1760871 15252.42361539044 92434 None 88491 MANA_20201030 88905794.81843683 6600.230179052171 0.06786850092637492 5.047200720837598e-06 13077383.042509722 972.5303523416122 53459 7447 82845 AXS_20210805 2422686103.4653983 60859.26825733968 43.94023420179134 0.001104999976885379 1623084808.9500225 40817.00311692165 325316 None 1596 ZEC_20190703 697932719.9124942 64831.715579095646 101.78501539436657 0.009430824757660624 547867574.0822686 50762.31566656019 62 15273 191872 ARK_20190515 82167045.0422903 10287.51257027091 0.5813329035281865 7.275948775015667e-05 3143867.194304642 393.48566926770735 63573 21710 202158 HC_20190201 39858864.395926796 11630.630577198619 0.9052917724173579 0.00026390167483484375 7205866.034079714 2100.5825668240523 12200 786 367356 TNT_20191030 30086729.024063922 3197.246260345417 0.07024662050039307 7.466030930199786e-06 680547.7369499428 72.3307458401833 None 2555 505684 FUN_20190426 31033307.57568123 5979.5543342634855 0.005160499131139334 9.936367808418734e-07 1504897.4429954959 289.7629498147158 36624 17735 481860 ASR_20210429 11605690.626210002 212.02295113263264 9.369116117177859 0.00017112433860984745 3557082.333500841 64.96913413049431 1961191 None 190056 DEGO_20210616 36973483.40428024 915.521820593376 6.8171824528321485 0.00016890025734688974 7617699.951869381 188.7336140941345 112277 None 129325 XMR_20190220 859899884.0779748 219714.1347464669 50.9156411976996 0.013030770685644155 109882918.38717401 28122.18560133361 313830 155377 108704 QKC_20190528 41760322.607401274 4735.952506891574 0.026394083084869815 2.9991721013775797e-06 14046727.594519552 1596.1362772735788 52195 9188 159226 IOST_20200502 45282859.0755005 5110.285109155761 0.0037612333326339236 4.2567564920130344e-07 42623870.58046684 4823.93464489125 193697 52215 307791 BEAM_20200526 22314939.273880526 2511.2517964908684 0.35550712213974983 3.996395043130308e-05 97421395.6041084 10951.5213125336 14997 1494 578426 OST_20200501 4565936.582374559 527.1352983961131 0.006635987661955269 7.698625828804687e-07 554933.9344597709 64.37969656883604 17753 754 852611 ETC_20190803 660520049.9946905 62758.48249057833 5.876061256010481 0.0005582851345451521 502078271.55460864 47702.503969022975 229309 24870 465281 YFII_20201014 90818794.17670101 7949.287979819051 2288.229321407614 0.2003352127259986 231551214.01849538 20272.38322810356 11169 None 101060 BLZ_20210723 40828625.46794774 1262.4464569650577 0.1378704296373326 4.258593171617848e-06 11493595.283402694 355.0184511645568 64902 None 404484 SNT_20210325 453060087.84906405 8571.044104082812 0.11587966862441142 2.197824862551747e-06 101954261.76656869 1933.7094592490841 125704 5840 128099 QTUM_20190703 497929939.15098524 46274.30948071705 5.216532511077857 0.0004833344452914179 782566214.4496822 72508.16636560913 None 15362 346886 MATIC_20210723 5679796018.974048 175468.1586341292 0.8901569748965514 2.7496446095336048e-05 1343919613.8488762 41512.91767719386 544535 None 5822 QKC_20190701 102277447.07281108 9426.048058385613 0.023285799454862116 2.146209685758847e-06 17125397.030019164 1578.4166246702978 None 9213 176500 WPR_20191216 4299840.773940264 604.6888108466558 0.007055259728273362 9.922730600080243e-07 904641.766936163 127.23155331781034 33958 None 723687 SOL_20200718 20917439.75564856 2285.28766280069 0.9818241501710889 0.00010725896498834908 11550958.719088707 1261.8796111469735 74734 1989 132942 ATOM_20191220 808026222.7129247 113154.25555212253 4.253615411651468 0.000595274030496251 146146652.17377096 20452.5558292628 29507 7568 109683 LEND_20200129 26592387.572103284 2845.338077306186 0.023619737591586695 2.526067929982256e-06 860171.5091102571 91.99304839956504 42596 5763 395684 AE_20200301 57632843.08443851 6726.293166503361 0.16487277499743963 1.9276808540109237e-05 13572741.731812734 1586.9153881383259 25448 6340 460321 WPR_20190530 7981176.898663393 923.7262988301865 0.01329332047272561 1.5371719658266761e-06 282160.48186882824 32.62760297420098 35039 None 1131129 MBL_20200310 6684405.014310033 844.2672387931248 0.0019002019291672917 2.400942047911138e-07 5358170.161170602 677.015207823458 None None 120670 BNB_20190813 4689030304.883849 412052.8893377791 30.147418023961 0.0026492323348621823 271495248.4518648 23857.896898117873 1021902 55495 791 DASH_20210508 4113346421.4550195 71773.84651853159 406.46031820516527 0.007092332496617575 2629681958.887257 45885.36193432534 None 40285 48371 NEO_20200629 708446500.8550514 77681.91485477843 10.058831762227987 0.001102124828337932 257505545.48363012 28214.335602860327 319653 99697 217061 AST_20210318 63480217.16535308 1078.6506606620696 0.37170540714166866 6.306261302794851e-06 32419561.759178765 550.0222053470316 None 3548 145891 XVG_20190510 100851401.33687276 16317.077996696242 0.006274930885565285 1.0163260696823747e-06 2252046.684737701 364.75521365595074 304990 53090 413203 BNT_20210112 136312197.16351318 3844.7954207654197 1.396584598756495 3.9288697358272155e-05 141385687.63480514 3977.4600817029286 89939 5312 101085 WPR_20190201 6146748.792726701 1791.3870003803033 0.011830846428995935 3.4479405635507615e-06 265437.7383747924 77.35824741977434 35143 None 633230 GRS_20191012 14858889.139620416 1797.4626618070677 0.20206277037165554 2.4438252840246843e-05 1063151.4178549764 128.5816437596038 38243 106961 None ATOM_20200127 846435603.1405241 98632.70025908216 4.484176926580714 0.0005217965902645552 123113340.99501263 14325.95604479407 30046 8037 115238 RDN_20200331 3863357.4615738234 601.3051112005222 0.07600956939819838 1.185600958354035e-05 487415.05606693955 76.02723738135616 25062 4319 1240249 AST_20190719 7421655.607664402 691.5191350267149 0.042803031561678306 4.00727841023676e-06 818822.2623115164 76.65926112859431 32033 3600 228402 TRX_20200324 746570343.9393891 115807.80404262122 0.011361560264654161 1.7539521400764435e-06 1220999724.404406 188493.0440684543 502249 72216 50139 BTG_20190601 519231272.2801751 60527.33149235185 29.594046960905217 0.00345073014889302 30732853.891895372 3583.5175103420083 74073 None 422397 NXS_20200531 11076257.356170349 1147.426059799114 0.1855074446308541 1.9217328508316537e-05 241517.17937332485 25.01956180602381 23534 3521 675342 GTO_20220115 31853701.474478286 738.5620597118129 0.048068032601310644 1.114508629170231e-06 3086679.6674561664 71.5679618801456 14997 None 469851 NKN_20200719 14072059.632898975 1534.513345266113 0.02160325348414194 2.356381945615838e-06 1135024.4776113841 123.80316644614624 13012 1014 248862 DCR_20190813 280454561.373627 24645.204835123168 27.427644345558207 0.002410229698994494 15553158.420608746 1366.7482291306692 40580 9581 266485 VET_20190819 249787238.29927012 24204.224996442586 0.004502956267758419 4.364328039416765e-07 26964195.002852373 2613.4073997976366 113566 57338 133902 LEND_20190626 9545225.065269325 808.653456799558 0.008441800489768355 7.14835413994483e-07 2031568.4053393796 172.0293015511359 42014 5866 977023 CELR_20200903 39273440.44779267 3442.529745276756 0.009943519438512325 8.714055906678922e-07 9164759.952683749 803.1585908070257 24055 None 306281 NMR_20210221 213861126.218388 3814.978521998424 40.209843738185164 0.0007172864603613957 21270291.737241708 379.4317722396837 24918 2408 2608504 ZRX_20201014 301046128.0090503 26351.235103749004 0.41781000774565585 3.65660553101696e-05 42948080.1869146 3758.746431311749 160241 16319 48441 POLS_20210724 67650276.01366256 2023.539898107136 0.9376047062796795 2.804062728548913e-05 8941642.131714307 267.41467129628177 382872 None 18534 BLZ_20190812 6864391.005270333 594.7634470047069 0.03296610844410592 2.8536769993674945e-06 170883.05711188435 14.792314673373994 None None 1145955 VIA_20210408 34578088.60633424 612.6799087156448 1.4892876459697975 2.6456483088410395e-05 3868516.544559869 68.72234710020523 37990 2192 925933 COTI_20210704 92335613.17842366 2663.5099541513514 0.13819738964033387 3.978695711060529e-06 8329915.909331208 239.81784886245174 122899 5383 94644 ICX_20210203 465210893.0627022 13063.063210844648 0.7904869588686101 2.2235393266899616e-05 64304280.14460019 1808.7976553168255 119020 28390 278107 ENG_20200704 18602885.647592228 2051.5370796912393 0.22402365416491452 2.4718578928239914e-05 760081.482559505 83.86674250349427 295 3571 584808 MTL_20190117 9758690.05048391 2711.4561071364756 0.2405756083233257 6.6845269838312e-05 2640283.8714681636 733.617547797427 32295 None 571829 WABI_20200224 8981374.754444465 902.7406470781783 0.15191503125375197 1.5275655290362007e-05 623034.3241569693 62.648557495198304 36811 7789 3929057 FTM_20200707 29382242.36509153 3147.6903350991124 0.01240965571664427 1.3287589060292983e-06 24515427.836240537 2624.9795978491425 22953 2426 295003 GRT_20210616 885514925.5886683 21925.867374714264 0.7216016032973417 1.7878739290152436e-05 174345250.39296535 4319.659579480949 110803 15297 33300 KMD_20190908 87900552.21359019 8396.428876461763 0.7588714597137207 7.248789415759146e-05 3856717.36782518 368.3961450600877 98389 8423 213183 SNM_20190411 12813056.646754485 2412.8891361925234 0.03199671554350943 6.028463389439097e-06 198584.83266961054 37.41513380705358 31621 10060 None OMG_20210511 1413776998.1279597 25302.314505628703 10.080737163702427 0.00018041457917501957 765945972.5336454 13708.106665356749 None 4799 120611 OST_20200725 7968436.288100606 835.3593345180176 0.011515620911406529 1.2077487807551608e-06 420706.47720177216 44.123346783059255 17651 753 831793 MDX_20210902 932138215.2334329 19165.89952053961 1.4343452772445469 2.947977167776267e-05 31589740.55592601 649.2567401465949 12374 None 63148 AAVE_20210620 3273211787.647306 92032.36877404212 255.96626328323202 0.007189333534453077 149430997.8123771 4197.0737466701285 240771 11310 14216 XLM_20200208 1443597169.3070984 147381.33048704258 0.0719730504883811 7.341472264010349e-06 371703529.1228526 37914.90191083002 281206 106159 69512 RLC_20210430 193740471.89533424 3614.947069592891 2.7390181872338837 5.1106543060614945e-05 15812138.894038338 295.0340969019608 37203 4278 302860 OST_20210527 14064282.105762204 359.6868178803285 0.019779590999579443 5.044847570343823e-07 686371.2028181768 17.506115748120727 None 778 522637 OGN_20210217 83201133.68571 1691.7807085280435 0.3935267087642179 7.99695268124327e-06 30380923.028485183 617.378181608651 72240 2801 162285 LOOM_20210131 57458863.17880124 1679.6444468844534 0.06846389273605347 2.0036204587427963e-06 25688254.60449227 751.7760153280097 None None 265333 LRC_20211125 4161913167.2981997 72751.28690100204 3.4102509501920055 5.9620869569201836e-05 1903862902.0995054 33284.92929745414 149900 71210 76303 XMR_20190430 1029348936.0604106 197773.64569021628 60.713367850608634 0.011665077456110416 270566322.9076892 51984.879532614126 317018 157601 117211 ZEC_20190816 363364454.55711377 35309.3130714595 50.78656395459218 0.004928232916362808 201796893.33951128 19581.992061221343 101 15355 180529 TFUEL_20190903 0.0 0.0 0.004654286106074613 4.5049661447625525e-07 712950.7757814984 69.00777121513636 70138 4023 310301 FUN_20210727 156315514.96726602 4175.273275901403 0.015003102745285542 4.0074111620405405e-07 5517083.663612847 147.36433543668872 4937 341 132450 DOCK_20200607 4213440.299899144 435.6419446909976 0.007525454460895122 7.78082370386586e-07 1348223.1909543432 139.39738811510188 None 14978 355846 LTO_20210203 59366263.964647606 1666.9972056250972 0.21693345622666238 6.108268575154852e-06 4380161.994988892 123.33370026669893 1654 1368 777868 IDEX_20210610 30022036.893030226 801.2789690624369 0.05160995658123093 1.3779685860708742e-06 1084307.052014258 28.950635774689673 52321 1980 6783998 QTUM_20190622 343506436.12445146 33934.05719609849 3.5874610581659225 0.00035443027954290025 385028515.8872375 38039.6504116115 177979 15312 453664 DASH_20201224 917529781.2950162 39237.119743197196 92.14672006239928 0.003951515792867382 563281000.2280378 24155.10575651489 324046 35722 92093 GAS_20210725 93122128.22453387 2725.609191492408 6.681162822236333 0.000195549183145269 14487403.815853728 424.0279809761592 407204 112395 108336 XEM_20210104 1933699867.6407576 57931.32895494571 0.2137156780100179 6.431094742285566e-06 162662164.7875581 4894.80136635094 219324 17884 99771 POA_20200323 1758129.6570833449 301.6348173270085 0.007994465176618334 1.3700235103165808e-06 180176.6389657378 30.8771413646084 17376 None 758180 QKC_20200113 10829400.325344402 1328.4217048205107 0.0029032413259561848 3.561255088347816e-07 786284.3815411215 96.44941430177182 50982 9207 296858 STMX_20201115 17359515.093761988 1078.8882891437745 0.00218600724290911 1.3583263005331604e-07 386935.41143841454 24.04312921054081 21426 136 217902 ELF_20190930 34743693.388709776 4310.44597863277 0.07524422992198403 9.338366383936532e-06 9493065.676802458 1178.159780340221 None 33560 944758 MDA_20210620 14645390.339546945 410.8206391826126 0.7482251495604654 2.10170975475184e-05 2684054.7394954246 75.39313576400409 None 389 1492828 TROY_20210711 15020504.771777604 445.43427546827655 0.00790552882725137 2.3443909235172454e-07 1337962.2461649103 39.677377876419 59086 None 430405 TVK_20210725 94404392.78177907 2763.1031993210454 0.2174701730771458 6.365090789528821e-06 38712326.9226835 1133.0633164548512 50788 None 92892 IOTX_20200418 10421932.63061649 1472.1647250539095 0.0023994516096794796 3.408346422520774e-07 2893111.695685583 410.95752288416315 22577 1819 547255 STEEM_20210508 441012249.6066823 7696.253273665711 1.1486996162015368 2.004105384880774e-05 34717598.58649746 605.708623002808 13716 3932 174026 TRB_20200903 85560377.11158527 7499.830416315956 59.11519534170212 0.005180591442770972 45829249.53037301 4016.270547247587 8127 None 216196 AION_20190324 42461361.2779188 10611.438718878566 0.1455737062942109 3.638164643150221e-05 2183511.4716949854 545.7011734096044 67690 72463 245314 NXS_20190810 14689900.318289885 1238.3983765614337 0.24602948291101592 2.07409516485215e-05 1563309.435224259 131.7912187759673 21937 3541 855550 ENJ_20200506 132524144.38720167 14777.71337190616 0.1444299484335165 1.6051073718022944e-05 14142270.607073225 1571.686693212749 54582 15356 90947 DENT_20190512 56792847.56473807 7759.773464685159 0.0008411892165528139 1.1548912431079471e-07 1463678.405153795 200.95233504841215 45082 9261 250017 XRP_20190806 13777732234.366962 1166561.8910800857 0.321464413323065 2.7216906040200746e-05 1542252024.10215 130575.35046068476 936879 204369 35107 MITH_20190329 22906130.542339213 5689.462078919814 0.044790880248792596 1.1124872785637571e-05 2830836.8660312523 703.1051820496331 59 1999 567173 INJ_20210809 278370700.9776388 6328.10490331482 8.486055386433723 0.00019295210457782674 57018707.10980401 1296.4656764710244 None 3832 150337 DUSK_20200329 4589849.90554831 736.264373667964 0.017532957088869174 2.8043455995029338e-06 833225.1092320695 133.27193790679678 17612 13343 994052 SUSHI_20210203 1623732137.9662344 45593.585547834635 12.669256850435083 0.0003567325429472718 1133464558.4640222 31915.34429011055 32370 None None DEGO_20210930 35838270.08942163 862.6109297161761 6.612369177040168 0.00015908015919860905 14919733.834671652 358.9384636692106 None None 225650 CND_20190821 12981405.775906762 1207.789715514164 0.007444350043981945 6.926221687404856e-07 924990.482817068 86.06109472122243 35982 6119 336080 DGD_20190131 32586285.516492456 9422.431556658745 16.293150904821683 0.004711218133938439 219526.7803322289 63.47689003974373 15896 3286 551530 WRX_20210523 463950947.1887455 12343.909998791445 1.0673249789930515 2.8420449303142027e-05 25971925.276574224 691.5736070603816 220851 None 1865 BQX_20190726 15147002.665746279 1529.10113186294 0.12567717544086432 1.2709237036003716e-05 431770.45891448454 43.6632434508392 60670 5778 463128 BOND_20210930 109532806.11961292 2636.4657570443155 24.310211169452845 0.000584849902275578 39735290.04020657 955.9431769193308 24200 None 152097 GRS_20210131 28423420.764589157 830.7916154762404 0.3694797317716178 1.0813175836989505e-05 4671610.090434674 136.71911340714294 37544 106760 3797410 LINK_20200309 1477502212.0254056 183499.64116145266 4.044218234050518 0.0005027263227589924 592675608.6521628 73673.97407439897 45688 13535 95530 XRP_20210916 52164873856.70661 1082115.3998414723 1.1188839268554256 2.3210283824537494e-05 3333096499.5505505 69142.21744749122 2032798 329858 22650 QLC_20200605 3094924.8500227774 317.2528691958235 0.012921160008851965 1.321748287929686e-06 149308.2799787115 15.273238881059438 24326 5648 940522 BNB_20210207 10648242256.756302 271494.8298690689 72.63187897909684 0.0018463290542680513 2640506902.149394 67122.65578089793 1626768 130662 423 ATM_20210617 20787160.13567961 543.5387230377861 11.05143402373068 0.0002885575215833636 8083256.874262525 211.0571863298781 4995766 None 100469 CHZ_20210202 118726616.9903402 3555.781331824873 0.022312072958393474 6.680007451329073e-07 55960478.09244486 1675.3997323984402 None None 105011 LSK_20200308 190545959.0065141 21437.639239228112 1.3773424594407055 0.0001547500705720304 5838546.40043571 655.9846182861369 178510 31325 155203 VIBE_20190621 8345383.513316401 872.4402574315228 0.044758998347424646 4.680225171233161e-06 2396055.230299883 250.54354240614097 20518 None 1430855 BCPT_20190511 3472388.2711916473 544.934006697207 0.041392545108135274 6.497226738759677e-06 1732565.8000397966 271.95411186413605 10736 1896 1145743 SNM_20190811 4366825.796406754 385.29306476366935 0.010203445432402373 9.009931903279534e-07 150650.51356814633 13.30286791295657 31114 9935 None ALPHA_20210131 377694817.7078601 11040.820651218433 2.1681148786201043 6.345498817920149e-05 457861451.00588757 13400.393700439796 29047 None 61683 KMD_20190806 113964673.76834255 9649.39970424902 0.9889317914962021 8.372430511297499e-05 3240674.4714869573 274.3598906979268 98299 8444 220245 QLC_20190325 8633661.255957501 2162.1461067633727 0.035984719855353633 9.017883285184442e-06 570367.5519884665 142.93589151627464 23924 5844 940522 FLM_20210724 0.0 0.0 0.35536080103416157 1.0623979693140662e-05 9579306.310914027 286.3859925612375 23931 None 74148 AMB_20200127 2121115.568379343 247.16748125267526 0.014673299168660319 1.7081649167873809e-06 284487.8632058383 33.118127122899 19085 5508 758216 QTUM_20210809 1066464249.7299248 24242.046001331368 10.257101807362503 0.00023322136027577323 555235073.5921324 12624.684980997936 250265 16790 166372 ARDR_20190716 67231725.185437 6147.973357931495 0.06715684159455598 6.148366261766237e-06 1137580.4462128659 104.14815630798142 67811 6562 883304 THETA_20201031 609764384.9196872 44896.83558505689 0.6098021839235639 4.491196078304771e-05 27064535.96313459 1993.304402366728 74749 4499 75588 COS_20190908 28051910.111428685 2679.4040601199295 0.021321602816076732 2.036552552989445e-06 1861864.7344301494 177.8377268788483 9320 None 256445 MTH_20200407 2046221.7091604606 280.8177119363335 0.005887664002045384 8.080064473476114e-07 161915.03059169723 22.22076337833258 19156 1922 1281286 STORJ_20200309 18213867.388319377 2254.6110514973257 0.12624307566833132 1.568750610708093e-05 1847116.1081113995 229.53057086959163 82407 7995 120208 HOT_20210105 127596189.72827022 4078.3414038434385 0.0007185275452857118 2.2966208034748632e-08 23203773.871210724 741.6593858007061 26903 7411 750555 NXS_20210110 24192881.859304395 597.4599821905512 0.3539514372398999 8.78074524180074e-06 1053791.275666165 26.142209795253056 None 3525 514648 RDN_20200310 5782805.5314473715 730.4068465562167 0.11430609837837755 1.4423158089008734e-05 948946.9931200808 119.73825276193175 25178 4328 1576973 HIVE_20210809 172232479.4272424 3915.3014083229705 0.465874088728279 1.0590732154498848e-05 16132077.913331939 366.73109840039587 None 174 88793 SNGLS_20210809 9484928.481490353 214.55920190732218 0.010602628375864457 2.4107778773753473e-07 318144.3744957708 7.233823469581791 9471 2135 None DOT_20201129 4574371937.667865 258448.20448567646 4.889793511050391 0.0002760712512755727 165147373.40301624 9324.001497652418 76781 6024 30578 TRB_20210203 53771804.844518304 1509.700031307825 31.914691812290798 0.0008979580404232418 55402409.463067114 1558.8130798437714 13405 None 357137 LTC_20200430 3152446130.7976546 359514.0161490119 48.78332040513955 0.005563390050854921 4340997192.780498 495059.79487529455 133100 213335 145046 ELF_20190811 41332674.555130884 3649.231021002151 0.08966098424100803 7.919545815766045e-06 14458203.709401578 1277.0594440777359 86238 33506 1285223 STX_20200523 82364529.28810118 8997.672320023781 0.12228463481309551 1.338183359296595e-05 606215.1187955277 66.33924085115795 36150 None 93144 MITH_20200907 4369530.684595903 424.3690409802896 0.007059877666464169 6.874832288930405e-07 2820480.0270574884 274.6552854932042 113 2102 363135 CND_20210212 36061012.8927635 756.2566202409008 0.01870967350561799 3.919847307631198e-07 697071.4612420022 14.604283125280299 34207 5954 421392 MTH_20200324 1875114.6368323609 291.06496619838737 0.005493594453654506 8.477964766917605e-07 274455.56347942085 42.355230567032 19195 1927 1053445 ETHUP_20210828 0.0 0.0 90.12563756847565 0.0018375025641799458 9236663.409197712 188.31925250983764 None 605771 153 XVS_20210105 12898275.328780688 412.2659965282943 3.50555669628886 0.00011204767985973694 4747629.997293974 151.74791684083638 None None 105222 AST_20190426 6633037.072585674 1276.2612533002803 0.039695706227624354 7.637160870082112e-06 1032465.1957826508 198.63868267610425 31575 3590 448937 ZEN_20190826 37198920.25055908 3682.9039327642413 5.173448722248219 0.0005124573079297396 5024686.675505326 497.7216447215321 None 1782 227019 XRP_20210930 43276000832.10583 1041955.9896271175 0.9281598600445693 2.232947297986791e-05 4115648364.824045 99013.39511984834 2060331 331377 22650 ELF_20210902 225101525.1633164 4627.511208578172 0.48877928336471516 1.004200750409546e-05 381400798.79662526 7835.908382241805 88857 33396 727274 POWR_20190224 40436407.722656325 9827.128484818966 0.09731139042754183 2.364927031418843e-05 1992146.6506202796 484.14491293395236 84684 13278 761259 NPXS_20190915 84142876.70557918 8128.263033240314 0.00035575481883870985 3.4366174013540166e-08 8354031.67465102 807.0055303336463 65163 5476 165759 SNT_20190701 95701487.00092468 8819.997385029452 0.027178721298823653 2.5050131953230375e-06 27637472.107208446 2547.2954210294674 111624 5744 317609 MFT_20200425 5157687.598931291 687.8463761694212 0.0005399709637868063 7.204162043078988e-08 716353.5872765855 95.57416359371184 18292 2609 823194 NAS_20200905 17853159.344427217 1702.692412552155 0.3923771284489498 3.742181126488253e-05 7336416.279728068 699.6890630854256 23593 4898 894508 CVC_20190411 29393776.569152642 5534.716115341477 0.08577116586486565 1.6150325318934812e-05 2773272.4147374406 522.194740439975 88931 8206 424604 GO_20190807 9241455.563906612 809.2812455719254 0.012271393806744628 1.0695222099822002e-06 376056.61630818737 32.77548660619973 10134 683 898219 ONE_20210112 54614997.35113364 1541.7943373027392 0.006264545210875775 1.7622456276493444e-07 11030380.158258917 310.28971059950925 79798 1608 186131 BQX_20210723 411746829.58291954 12731.06157737503 1.8540559457622965 5.727074078851638e-05 2147648.216401717 66.33964017514683 97775 6306 24773 TNB_20200501 3736894.084206951 431.83822252108035 0.0011382179765718086 1.3195969317940263e-07 298736.8094605964 34.6341549063796 14934 1437 6404689 IOTX_20211011 667109916.2700673 12191.80405821477 0.07025339620964703 1.2835497599828067e-06 83445784.15057492 1524.5784829878426 146790 9973 63450 SNM_20210722 61834664.24902633 1925.4465472 0.14192432367760505 4.4e-06 254450.5616489744 7.88858768 32357 9708 None TRX_20200313 571153079.7804911 118639.1638310092 0.00853406936172757 1.780872144299558e-06 1186339164.3887012 247562.83104825506 501190 72195 46870 POLS_20210916 141194775.3659728 2929.81116947338 1.8774685612482775 3.894646900567126e-05 21460714.14476656 445.1840395788084 425617 None 28089 ONT_20210729 617928161.1108061 15453.2126997464 0.7048247512420303 1.7615375180043953e-05 153612941.65107396 3839.1807253157467 141820 19741 156257 CND_20210218 38171958.32913861 731.4020711578062 0.019770841942926547 3.7929127272577564e-07 375080.73284630064 7.195689943143184 34308 5971 249426 ENJ_20201228 127777005.89943956 4820.612927642314 0.137255552430006 5.219177723652394e-06 13039855.16686185 495.8438504063071 69822 16034 75174 NKN_20200310 11251450.608744886 1421.1321814908783 0.017322115507020047 2.1878528601811426e-06 1690926.7393592931 213.5708482930232 12237 999 370779 ARPA_20200806 0.0 0.0 0.023069225055340436 1.9692722163465592e-06 4575038.616398427 390.54178952146304 19028 None 446273 AST_20190618 8182499.733690614 877.7999817974651 0.04753452350222544 5.10172820864172e-06 1330494.3158914542 142.7976948691431 31795 3591 344733 ADA_20190513 2174479762.308658 313365.3764685673 0.06998553730333094 1.0067562574892824e-05 285706502.10042447 41099.46424334834 151297 73046 116208 POWR_20210825 167070480.94681832 3476.6678280997507 0.3847013202331809 8.010389123073608e-06 14694666.574655646 305.9776275929253 92206 14129 202845 LINK_20210120 8377233379.5364 231350.25262987174 20.84292933118054 0.0005760772773197323 2027065236.4932802 56026.012650803685 125743 28576 44259 CDT_20190719 11342783.341492252 1055.7426039487298 0.016784928547905344 1.573155811990142e-06 459462.12126399094 43.0627693405325 19842 297 299913 KMD_20201031 53374411.95238408 3929.4452976262446 0.4367632058094937 3.218489669887925e-05 2010424.0710910254 148.1473031343852 96388 8396 290301 TROY_20200323 1929862.7689835513 330.8574978063331 0.0016758233029915185 2.87404379628114e-07 544276.6214322 93.34366245508582 None None 356286 BEL_20210128 29948057.871320654 988.8790961917697 1.3394091632041156 4.4049196788436794e-05 7607576.951954191 250.1906537940703 10522 None 430969 BNT_20190224 37259461.01556342 9056.200436520003 0.5842492070049309 0.00014198818212959402 2548437.5579094943 619.3384805318138 851 5096 140738 NEO_20200502 636112705.0540253 71783.60580596945 9.018893141765584 0.0010212144376636632 705433287.9115329 79876.61535623607 320921 99321 218752 GTC_20210809 120509948.93001853 2739.5030645616825 8.469459926140555 0.00019257476447760496 30297359.245410748 688.8877061653548 54927 1083 24142 COS_20210814 66428890.315774426 1392.6485095415667 0.01939920157182522 4.0645405838761376e-07 9143889.658939911 191.5837127401413 None None 402883 XEM_20190804 570855273.7070639 52906.034319016726 0.06343442419699527 5.8778759741702066e-06 62152909.35323788 5759.129955647651 217255 18413 178171 LTO_20210722 43617728.59172394 1355.4257823493163 0.15434062690411435 4.782326447678397e-06 2480614.495928905 76.86316006572457 10918 4328 391514 EOS_20190528 8441394135.020879 957169.112984194 8.079938767315374 0.0009163292779212311 6512416139.399022 738559.7527889229 985 65414 118263 TOMO_20211002 205518100.53775102 4267.406095125828 2.384552293114093 4.9511361029303045e-05 9950542.269475736 206.60687214284602 54696 2296 138280 GTO_20190410 22856220.114830878 4420.395190383229 0.037283850185582834 7.206372871603828e-06 17724854.619750522 3425.9313576547997 16891 None 779658 PNT_20200707 21411688.15956402 2293.773340690549 0.7438826472081812 7.965274143440273e-05 3976952.4880150408 425.84024430955 3229 44 1293508 HBAR_20191024 22573277.068144828 3023.948400248684 0.02803890320667784 3.755633882743837e-06 4742153.771767817 635.1815280060976 34961 6171 85439 CELR_20200502 7397765.43763517 834.8565291326257 0.0019442312038825788 2.1999913210791778e-07 2285061.730830319 258.5657490692387 19410 None 1399236 TFUEL_20210806 1710044465.1162648 41737.26634355849 0.33190203968014304 8.100815806794345e-06 72215366.77018103 1762.5784559477443 185881 22333 19933 SYS_20200806 59985258.6048507 5120.557924140146 0.10124360487880811 8.642519100330635e-06 4845949.427950806 413.66771304157265 58136 4483 504186 COTI_20211002 507184729.3678938 10531.25345065034 0.5828131508444643 1.2099768932384342e-05 235154680.76683062 4882.040318624496 158439 7709 74992 AUTO_20210711 26652959.618027765 790.6738298302566 857.8606731094967 0.02545162097313157 1442202.7969213147 42.78829896768839 None None 10455 POA_20200224 3943243.4539055065 396.343419520865 0.017894038184777503 1.8001894089633867e-06 89923.96358204096 9.0465978210615 17455 None 534469 KSM_20210603 4065377837.097837 108027.23505441059 450.32007853670626 0.01195892650809807 548810822.3988051 14574.496241080218 73023 None 93747 REP_20210421 248743788.81368816 4402.89399501838 38.73178302629796 0.0006869294747197424 61713661.63963502 1094.5257321193453 147320 10997 149141 MANA_20190706 72703343.98492673 6614.927301417635 0.054769120430058 4.98424879369716e-06 33407023.64772772 3040.197030913375 45019 6294 154801 XLM_20200316 772032428.7681814 143671.23205213793 0.03810718154765691 7.091548902578959e-06 284640955.0263761 52970.2058842092 281513 106803 82721 QLC_20191030 4358569.457277826 463.1536177919856 0.01816070607199094 1.9298067407999405e-06 173760.41887458507 18.464261593086523 None 5717 940522 VET_20210429 12940138792.206903 236401.82244678112 0.2001079691583117 3.6545640344767253e-06 2838729119.5696135 51843.599171172646 287143 144264 33497 RVN_20190414 194890733.87023938 38417.63993003683 0.05859666868124636 1.154791958750078e-05 26027342.457712717 5129.330123065597 23274 6321 225475 COMP_20210204 6040681.788914604 161.00591891458433 6.555654995641966e-05 1.7477407351995183e-09 970.3973185155313 0.025870838596988948 2014 None 2426495 FET_20201106 27462029.030545924 1767.0127827700016 0.04005727683133373 2.570966933924194e-06 4137648.1840414833 265.5636505240676 25730 690 257164 FIRO_20210813 79783157.70777221 1794.5808205150752 6.554421441307287 0.00014742631719347608 7958315.426987587 179.00361534134075 73931 1126 285212 NULS_20210120 31104474.974809524 858.9350397934303 0.313714607108948 8.704167362113616e-06 22418293.083579168 622.0066600361419 37629 5101 890471 YOYO_20210219 5212058.349320592 100.83784561193089 0.029901078782229744 5.782828974327224e-07 1151346.3057019336 22.26688483244502 9442 None 1496735 SCRT_20210724 67931491.10724026 2032.2958222967654 0.9848146042772181 2.945251776030087e-05 1240771.1817827546 37.107324677365625 85961 None 61178 LUN_20200421 1688565.7564532112 246.58690286703936 0.6252168580496843 9.131684874417583e-05 391253.38770411786 57.14501451076372 None 2140 2572257 LINK_20200914 4632570870.098707 448787.7418080451 12.01627150634827 0.0011637505713543571 920686480.4796069 89166.54530736273 87678 22826 40610 NXS_20190930 10469272.235319003 1298.9836999229444 0.17553502981541522 2.1781835604574948e-05 100975.05599633967 12.529818533587479 22114 3532 436035 NAS_20200106 16738306.437992552 2279.35420451175 0.36783485539861766 5.008056173922448e-05 3980549.19215741 541.9501079032558 23890 5038 927832 NULS_20200713 50010612.34195016 5389.1797294964545 0.5214577086641149 5.6173071339005116e-05 55040859.03233788 5929.175174923268 28676 5182 531663 NULS_20210325 96940854.86750637 1833.9385754730342 0.8615236864796921 1.6360689112297684e-05 66449255.91555581 1261.8986974347606 42558 5249 464620 TRU_20210902 257580985.29644465 5296.179474153353 0.619310064556274 1.2716059015794689e-05 19362730.88944224 397.56762046731694 32329 None 89182 ENJ_20200725 171250752.22480384 17948.952888111882 0.18603818168106379 1.950567157259579e-05 5878647.231583487 616.3625184586962 61541 15707 108364 MANA_20210703 714129186.4145056 21128.167998127483 0.5407506341775201 1.5969558685149134e-05 28186731.327412754 832.4163331963451 144407 33967 16474 OST_20190726 9595665.210796358 968.6895063396119 0.014923824921331659 1.5091875493197282e-06 255723.21845288185 25.860280417080986 18106 757 581011 TNB_20191118 8640036.870119004 1016.1993185197783 0.002952366740181995 3.4694574506129823e-07 1004125.4017925033 117.99924139451599 15448 1459 2517583 BTG_20200713 171483150.469427 18479.14822840157 9.80895649958072 0.0010557260967874098 38271415.80684927 4119.106087382487 75480 None 243493 WPR_20191127 4298488.926571088 599.6980480620144 0.007057682490836702 9.861463644909403e-07 1153516.778391539 161.17704060320523 34016 None 912114 ETC_20210212 1342595534.3803723 28156.357232682727 11.594423363359752 0.0002428346111162351 1817580011.260053 38067.55380364855 280113 28192 152499 PHB_20211204 21987077.32913302 409.45643833419757 0.5912358697676182 1.1025632930156984e-05 3704295.4634633376 69.0793710825517 None 411 199462 ALGO_20200610 193598057.95970374 19809.058698834957 0.24097762436503314 2.467699286521363e-05 53308558.59392334 5458.991985431626 18433 898 281799 AST_20210603 33152477.074606206 880.9780852230858 0.1924533691910553 5.114163876898826e-06 1642193.032121081 43.63885298069868 43538 3688 193022 PHA_20211021 143748470.6862247 2168.7234272345145 0.7874481574789235 1.1927083069338395e-05 15572297.51180945 235.86579540479036 None None 146405 DOCK_20210523 27054788.07195269 719.8215048814138 0.04830888817867085 1.2863136090422074e-06 6407901.32178634 170.6222392270362 None 15006 221112 ONG_20191030 0.0 0.0 0.1663202691986302 1.7675074938175368e-05 12436932.605130387 1321.689273687916 81851 16285 327053 ILV_20211011 419213452.93891144 7662.536463602572 660.0914110975983 0.01206005998276124 34381576.61392872 628.1612959884037 None None 13370 RCN_20190806 9177004.860741345 777.4962684209167 0.01809562492043895 1.533101601653644e-06 1932824.1622485165 163.75316309253964 None 1120 1860009 ADX_20200523 7846240.377981563 857.1396021493027 0.08508687872898804 9.312142487051444e-06 976606.5324111378 106.8825101995359 51461 3749 26669 SXP_20210909 523599818.0963074 11297.361842564193 2.786003044580136 6.017684728563838e-05 673802997.7777312 14553.946800868103 None None 129968 ICX_20211225 1021839435.8000114 20084.56805097461 1.4747586230097733 2.9011962604067366e-05 54011552.26074526 1062.5339699173178 158101 34634 309513 BTG_20190318 232523500.2271074 58390.15258945534 13.276596255642236 0.0033341177149141875 9736558.790685324 2445.117146085652 72926 None 417963 QKC_20210217 82425286.46555653 1676.004921568469 0.012916998468613178 2.6251032389011526e-07 10639774.527969012 216.23062542290577 64129 9246 339655 AE_20190723 98923188.59892887 9561.118164646654 0.3077079033977992 2.975307641377106e-05 41860632.68600639 4047.613302364266 24880 6370 321495 BTS_20200316 41049587.82693744 7639.115454953814 0.015146353974109506 2.8186579416491402e-06 12248200.238506114 2279.3265582058257 13328 7031 131725 ENG_20200730 23405196.271182295 2110.244875900366 0.28295197263979543 2.5511341305187305e-05 1378166.6677460186 124.25741339877294 439 3571 537698 ETH_20190616 28555069614.98048 3238551.7471349854 268.1121928964469 0.03040710340847243 8326314916.480807 944302.8903005685 443371 438954 37001 XRP_20200501 9449611235.487078 1092004.0085412215 0.21310049835339237 2.470587968025943e-05 3081128998.8249784 357211.7517908954 951872 212862 35731 KAVA_20200317 6431002.360938294 1278.8269640646904 0.34615004502567487 6.87384099708337e-05 1322042.895205645 262.5310261708419 17969 None 337432 ALGO_20210809 2621953968.8933187 59600.243274335466 0.8242274506409488 1.8740912474626586e-05 195399494.50846967 4442.905682553806 118637 36710 221911 WPR_20200127 3750283.771868344 437.0097545338957 0.006237821101308249 7.258575731142821e-07 230087.4452179042 26.773886566722208 33756 None 766614 FOR_20210602 22568896.827509467 615.5375143901732 0.040022903901229735 1.0910800674165386e-06 3780418.244052961 103.05946322044066 27481 None 147618 PERP_20210707 478117877.74943763 13997.957765415342 11.006955225903797 0.0003222423055759813 64164066.633358434 1878.4828631268047 None None 159386 HOT_20201101 83823409.91656023 6074.902668711935 0.0004716217742321345 3.417927508446831e-08 4677907.372736679 339.01632971197813 None 7305 245882 ROSE_20210115 67317707.58621927 1723.5934200852375 0.04519177415995066 1.1539729725126738e-06 5430731.235174485 138.67384458487405 8633 618 219756 FIL_20211216 5279776430.712985 108228.21370496716 38.22731832086255 0.0007822351197049809 450054425.6294383 9209.340151748751 None None 32648 ANKR_20210217 168572193.36050305 3425.8022033941097 0.026068101936131186 5.297783303979169e-07 50716998.753099464 1030.7143568810943 45575 None 5433 YOYO_20190511 4890352.724771402 767.4601157311657 0.01676626406995551 2.6317352300960754e-06 615874.0705347692 96.67135635979093 7460 None 1472428 ICX_20210509 1670869129.1637306 28491.940598025136 2.6928152442528184 4.586435760378075e-05 236749546.32327694 4032.347142373864 138318 31772 350407 1INCH_20210324 612578056.0623943 11241.5419589154 4.109396925968842 7.538525280492464e-05 266338541.4424201 4885.8746526652685 None None 6362 KSM_20201018 262413093.27676228 23093.903264866094 29.217211572917137 0.0025711068915601058 16751351.739698563 1474.1145229892363 13601 None 183463 PERL_20210821 0.0 0.0 0.09466065421927886 1.9245947130231964e-06 6140200.282888093 124.83958724788947 510 688 3275203 POA_20190221 6235502.755637135 1568.5026991262241 0.028321615718585325 7.124129751695978e-06 113222.73932803927 28.4804897372463 16455 None 772242 MBL_20201115 5098102.474166101 316.8016572515854 0.0014483217342978036 9.00018468656442e-08 1091291.659342037 67.8152253632211 None None 627263 LEND_20190531 9979424.977043204 1201.3787083518089 0.008942159622671272 1.077121375188186e-06 1751254.4923492644 210.94609431051887 42292 5871 1083283 DNT_20190703 9820696.526546044 909.930283757153 0.015582353770347411 1.440788423641759e-06 1460113.7068357794 135.00623570830052 60647 6366 784792 COS_20191108 20281776.1702199 2200.068679169456 0.015357341390570094 1.6658898858333877e-06 9938166.35096652 1078.044069396718 9202 None 197006 ZRX_20200414 109001219.09644072 15909.67478293945 0.16702438402589997 2.439283564934022e-05 33517216.161342945 4894.973569369779 152373 15936 126435 PNT_20210711 20994944.116347943 623.9921539797898 0.6697409041942741 1.986345532832834e-05 3419032.4210606785 101.40309086175374 44795 320 307388 REP_20200113 105142261.87816912 12889.547875450642 9.550199951283144 0.0011714733414400094 7836304.572804027 961.2387122021411 128373 10084 330161 FIRO_20211204 98979740.5095955 1844.8670966961072 7.8313886107657416 0.00014596796369699232 6975749.052625518 130.01983876438084 77190 1614 165193 ONT_20190614 877226392.1214285 106685.63103961898 1.4323945751511928 0.00017410689718152183 156917344.69819027 19073.230570201995 80402 16238 249314 WAN_20200605 22287970.699037928 2283.5283352932724 0.21096572705979688 2.15797365372815e-05 1236067.4136612404 126.43764226958031 104320 16160 818787 GAS_20190512 38167927.827314556 5214.9960119327525 2.7224443722222462 0.000373798940391571 2101811.750120596 288.5844108015057 320886 97553 218328 PAX_20210813 0.0 0.0 8.733867912154178 0.000188703 71.68758782296149 0.001548874224 5 None None CHZ_20191024 30777151.972703118 4123.1103032205365 0.008539906410285524 1.1443674352016944e-06 4352618.381843655 583.261044645996 12523 None 374824 LTC_20210131 8828348697.121115 258407.33704541443 132.98579417763952 0.0038925178555214435 4987451552.431661 145983.59427365547 140341 233987 113602 MDT_20210711 14064705.634725917 417.2021948159144 0.023192432958414135 6.880896066289048e-07 718693.7760238962 21.322718427930724 34167 312 534148 VIA_20190801 7451271.747432596 741.2693108550411 0.32181704911391756 3.19606272042301e-05 229208.55390375273 22.76339666748162 40950 2229 1890047 BNB_20200329 1843685185.2425025 295870.54968075507 12.217985512461317 0.0019542313217896195 215130548.22815248 34409.50680391953 1127897 60944 1672 WTC_20210212 21060913.433404073 441.6807497808408 0.7233519152092074 1.5157132009173816e-05 14998362.240272501 314.27601367650954 55038 19058 815573 HOT_20200718 127951276.01825033 13979.027832273401 0.0007249164689790859 7.918583890843826e-08 14802336.7312878 1616.924848628361 25648 7164 636916 DLT_20210826 9085871.170173636 185.38840578808612 0.11083304434656031 2.2605626354527036e-06 545270.2359459267 11.121390095084 None 2596 None LINK_20200621 1592178794.9914212 170190.06378152102 4.177211687859734 0.0004464580896803726 301202444.3910228 32192.351735656197 58939 16235 86438 XMR_20190922 1248795274.1168964 125047.37912586729 72.53991412504263 0.007263894888313084 86564374.51200292 8668.255609509764 320241 161242 88240 XVS_20210902 365109732.3673979 7507.1017689927585 33.11040491140289 0.0006805106081720741 32353622.63746924 664.9566345234139 123099 None 21102 XVG_20210430 767409471.3923811 14318.869943118607 0.046654666365142476 8.705158390995299e-07 42613166.43437895 795.1066683230375 307134 53510 130279 KAVA_20210718 269441907.07071364 8524.093391514627 3.8338472855806156 0.00012140495887330613 18289160.226824038 579.1557617633723 123212 None 50166 PSG_20211021 74234031.97840272 1119.9453199806326 23.890324975082965 0.0003604696692145493 10762728.042107686 162.39364768922482 None None 9263 OCEAN_20201129 155231589.13453016 8769.287226750403 0.4477743255234679 2.527755904754994e-05 19215011.71874336 1084.7173802385491 None 1229 73952 IRIS_20201129 52197261.30899345 2949.097648683524 0.0593827614459309 3.3522495000160973e-06 3482528.507007741 196.59416575024343 10852 None 481390 DUSK_20210131 23336858.572330162 682.2532512102941 0.0774825044521232 2.2675533761046373e-06 2664585.171129057 77.9800439265032 21593 13361 931184 NANO_20210806 609289240.7197499 14869.283535562747 4.565160980727084 0.00011157425936112605 26243060.023902576 641.3903031892996 134190 107861 67455 WAVES_20190901 110939812.8453893 11557.11994729859 1.1088999798876669 0.00011552470259160474 8665701.699718049 902.7889167325121 142704 56911 33279 BAL_20210219 503755715.0183534 9746.835410464057 46.76654692989936 0.0009045675414590222 131687021.06681113 2547.1156779443695 None None 71652 DGB_20211225 552713699.941558 10873.93698694064 0.036962537704947576 7.271907787404509e-07 15845903.979420414 311.74794724926977 237212 44319 105962 LSK_20210210 269809557.6923302 5802.607446164385 1.8762024550106808 4.026657109009318e-05 29333847.65205457 629.5554398582716 179923 31228 225361 RVN_20220112 986965849.739645 23036.107251036945 0.094310554563283 2.2042473820114618e-06 72016016.72890736 1683.174455633928 84533 61646 65851 PIVX_20200321 13837366.254188493 2238.223489235298 0.22381289779460428 3.609598966855829e-05 642277.7019986191 103.5849565602936 63826 8510 174953 HBAR_20210430 2332215838.4251633 43520.06331069648 0.28801981666265963 5.374077920032346e-06 166605705.87684295 3108.6473690552243 85346 15805 42635 POA_20190228 6011747.229572201 1575.7238166602422 0.027308656336891616 7.156039510036449e-06 225181.7755093863 59.00728555100868 16491 None 772242 PYR_20211202 795092231.0772948 13907.940208991522 41.86220063477953 0.0007320729078407911 86297915.22307515 1509.1506127240514 48326 None 52488 DCR_20190510 250842383.16928786 40584.60940347852 25.679937764996584 0.004159279312290909 2501409.593144633 405.1435508739394 40550 9446 304516 WAN_20200105 18696501.84769167 2543.9094542833755 0.17609075858378379 2.3947437108378108e-05 1746967.2209255502 237.57855318459238 106691 16543 802960 ZRX_20210930 703303404.4611377 16931.437239236457 0.83393859012034 2.005363109179544e-05 85953674.65634204 2066.9187191514393 232027 20158 51885 CND_20191203 13481485.73807312 1843.9963628850912 0.007451311641049168 1.0196277763953358e-06 81757.63450822527 11.187608181319687 35289 6039 466197 AST_20190703 11838723.07682474 1096.9092283321136 0.06882704492182407 6.363942894528734e-06 5201719.386693397 480.9656606335452 31989 3607 257533 HARD_20210110 23947890.163155425 592.0645588607304 0.5986972540788856 1.4801613971518262e-05 10150705.314851353 250.95625641415023 None None None POE_20200229 4243999.5471342 485.5752994672485 0.0016860174202629633 1.9290492486126983e-07 62177.385629075325 7.11399761277452 None 10467 701965 CDT_20210805 11504322.77867125 289.2665454405574 0.017051942807394155 4.288089314411961e-07 287404.74539419543 7.227429927232292 21081 337 695021 SKY_20200208 11346885.271292882 1158.400030353669 0.666409823250432 6.801353704318557e-05 1014642.4873054076 103.5540323510553 None 3824 315268 CND_20191108 13894621.490388712 1507.221127644837 0.007748408993599271 8.405098151730489e-07 95522.04013111306 10.361767475345877 35441 6055 432083 DASH_20191015 646614585.8296436 77465.70336486465 71.0545012676807 0.0085124694656837 303779147.38186544 36393.34131215365 317946 31257 73595 LTC_20210825 11642596607.39695 242277.63534938893 173.7467616491553 0.0036219337707289606 1949349383.2540514 40636.23572112687 190662 340915 92826 NXS_20201101 11358002.500192944 823.1191356473785 0.1902100382109555 1.3784855958197207e-05 19423.835821342105 1.4076795392676087 23133 3516 726240 NANO_20190704 173526248.0020505 14459.691082082518 1.3022774851523462 0.00010851689790602579 16060171.881071398 1338.2708771683715 98641 46661 329357 ONE_20200208 26972710.71723166 2753.9667644271562 0.006718679709630007 6.853259713784195e-07 5420048.428905722 552.861591114967 71081 None 378695 DUSK_20210120 20279974.729348093 560.0216983334257 0.06728146550974876 1.860697407575803e-06 1819687.0681939125 50.32421610817957 20881 13347 977461 LTO_20201018 15262041.972152535 1343.5717233743821 0.0627357877802679 5.520143591728884e-06 1585287.8806892352 139.49002706848253 18111 557 1982802 GAS_20190401 40800172.938797034 9942.863485165697 2.9315710810689417 0.000714402184774239 1213369.6847936157 295.6892157086344 318995 97724 185739 ONG_20211007 0.0 0.0 1.382834867115049 2.4927579511380903e-05 111331013.92132525 2006.9010173255904 153627 20441 107360 LSK_20200207 186679689.2468283 19167.691252057193 1.3530174139013036 0.00013892611931850103 12674878.014699982 1301.4404673036254 178603 31137 157770 MTH_20210806 7454540.137940843 182.08060394213337 0.021458662687063448 5.244578244441251e-07 414529.8670549532 10.13126658511748 21803 2055 1226676 ZEC_20200626 528917938.4343655 57112.93625890898 55.966945606821334 0.006044886187362542 371891154.0268264 40167.27509076508 71790 15860 226404 ZEC_20190302 308170571.06282926 80672.73298018852 51.39649422884053 0.013442498209268116 217787855.45978704 56961.33366574515 73591 15044 156560 ONE_20210708 872727125.9716145 25685.54563628254 0.08465508787972553 2.4922913638139126e-06 162507610.44074026 4784.311542277565 192139 25775 23324 ADX_20190325 12401759.302955225 3105.695477698523 0.14250243533229126 3.571155576163141e-05 1081431.0066239552 271.0099908493094 54500 3929 962371 BRD_20190723 16702458.038620675 1612.5010822273482 0.2782412977863026 2.6892561431731708e-05 512225.7289819641 49.50761081534588 167 None None KMD_20210825 140280738.07446814 2924.2993526444825 1.1008734756175949 2.2948864086978606e-05 8223059.626453181 171.41831638801912 114825 9517 205763 KMD_20190314 119234532.3372552 30838.66414499925 1.0604194733260304 0.0002743069155033565 42537759.551493146 11003.57161340626 95545 8304 269004 ADX_20200331 5075087.220304821 789.4880668066925 0.05512257381633864 8.598045859360068e-06 151644.91489836783 23.653647541553166 52124 3770 33451 BTCST_20210603 265125311.5409342 7039.782078390974 36.2570912716534 0.0009640826285501182 10992396.891152987 292.289825719537 61803 None 353837 AUDIO_20210112 26506091.900256902 747.1260571419688 0.1722843626090588 4.8467011508912725e-06 2158844.994874883 60.732595592548535 None 2388 55662 WTC_20210702 16270107.693902612 484.2990920583552 0.5530565084542785 1.6441566685657923e-05 3315903.3669527504 98.57699077319215 65563 19852 588715 FXS_20210729 92699980.73646046 2317.1921706965572 2.8962850283970027 7.239132669193397e-05 4768916.667767969 119.19690261081534 12987 None 120117 HOT_20200626 99323509.48846005 10725.023400070391 0.000559222213695459 6.043586987187429e-08 7537270.105783003 814.5625551819326 25376 7093 595163 SC_20190201 88601629.541567 25862.789790462633 0.002281406667594931 6.648970725912102e-07 1354716.562892231 394.8209188883637 108883 31254 207807 NPXS_20190321 110070705.6287964 27224.58896113793 0.0006279847876431892 1.553531712521901e-07 2666204.10647966 659.5753134430554 57397 4137 151304 BQX_20200319 3018144.4475003434 560.8102174331466 0.021476278166037335 3.986124494235005e-06 536590.5101043622 99.5943784656107 10810 11 311435 HBAR_20200421 121844301.33037293 17791.97968980955 0.030925938041161845 4.516927478868634e-06 6586084.9429305 961.9390693110279 None 6410 105863 ZRX_20210217 1183411319.363286 24063.04279356698 1.5839936088234992 3.219127696751774e-05 282871872.88657635 5748.764866024729 179905 18093 64913 DASH_20190706 1369055850.5400956 124563.80169777069 153.75035015075662 0.013992008475798944 360514796.3947941 32808.550236541145 320306 28297 107234 GXS_20201018 28718184.64373946 2528.163721759886 0.4091558539361779 3.600240065453256e-05 6594863.630390011 580.294575769022 None None 512766 CTSI_20211028 342885981.12643796 5858.373531326044 0.7112779205508358 1.2154853513979031e-05 52860835.03370405 903.3258138586663 57269 5422 190612 YFI_20210506 1975763501.887408 34512.5481741432 54653.80780501693 0.9533555739098238 463158366.1533541 8079.11887037329 111149 4942 19708 WPR_20190507 6388581.41403294 1115.685301699133 0.01063277773549528 1.8587357233632867e-06 197513.19045888324 34.52764950741088 35223 None 1010461 VIA_20191127 4519122.840546299 631.4419167593321 0.1951318270253821 2.726511741884025e-05 788249.2055723825 110.1394245770219 40234 2195 7854081 STMX_20201030 15824716.419515762 1174.8027347410966 0.0019541812706419066 1.4521915918661612e-07 1137254.5804652276 84.51168601264898 21477 134 188907 SYS_20210731 89595609.21454412 2156.3062859875245 0.14601550366573912 3.498214682888762e-06 1033767.4647289191 24.766825665896246 74488 5467 423219 GTO_20210105 12321545.388792712 393.8320480060213 0.018892542001517975 6.03860008929175e-07 26095287.96082464 834.0804969371959 16535 None 786393 QLC_20200629 4527692.570818133 496.6570192211388 0.019078964459696385 2.090434440318416e-06 633619.8334126652 69.42414115989874 24549 5644 940522 LEND_20200404 24836199.935456455 3693.2848639967174 0.02105819532192955 3.1295326964440243e-06 592722.2288422151 88.08654144921866 None 5728 93984 NMR_20210418 504100870.4707239 8365.61454979081 89.4454513855164 0.0014880249508510057 87691191.54463804 1458.8408797432196 27474 3093 915213 WABI_20200526 6347216.156104059 714.2328379294898 0.10840635636811204 1.2192360188405573e-05 2754738.8089602157 309.8228637975138 75 7691 1504785 BTG_20190614 467126436.91136587 56776.629430102876 26.705296595561386 0.0032444836092306315 29433673.352478925 3575.9599377540176 74056 None 422397 LSK_20191017 102255261.27573238 12768.957644339056 0.7479262794134129 9.339209432688867e-05 4147496.7247158084 517.8898188186515 180766 30943 158256 HBAR_20200511 139893350.96815577 16006.97638614331 0.034345008843286694 3.922531319348995e-06 10421978.684954666 1190.2905015356582 38967 6467 102046 MLN_20210813 135147524.443983 3039.90418874631 92.93206222830774 0.0020903501829280377 24649349.60919762 554.4455942240814 27643 407 109463 MTL_20200511 18082889.44078826 2065.3027703432645 0.28170260846416445 3.214327855645245e-05 10043666.269934807 1146.0183645535126 None None 463279 STORJ_20220112 229797732.06974483 5360.492653881402 1.6009047228391957 3.7423123591432326e-05 44954899.928495966 1050.876265191431 113794 14823 43739 ICP_20210602 13422115249.218824 365817.9712552639 107.61460671582773 0.002933723965664118 158288527.8428607 4315.165587591124 None 18636 26403 ARPA_20200914 0.0 0.0 0.03889057087192961 3.7683162099016435e-06 11097010.112022689 1075.2488880732838 21014 None 330815 RDN_20210805 18362183.79949687 461.69642060294126 0.3595359662744438 9.041536569837544e-06 465961.7395998115 11.717910039411487 30486 4676 1394664 POWR_20190621 50624453.29043941 5292.364454020098 0.12052968845009696 1.2611105598297444e-05 3127087.660415042 327.18936892427746 84700 13195 724138 MDA_20200207 17655291.661720242 1812.7905660343447 0.9016929623646831 9.259578787774075e-05 1626431.823097079 167.01997506352382 None 372 2300943 NXS_20191012 11405441.235355029 1373.0045140075838 0.19027792465691087 2.301469612907198e-05 175831.42223452247 21.267347538957456 22068 3533 378466 ZIL_20200109 48240645.73619192 5994.288302497186 0.004709940819732519 5.86061825175227e-07 56521508.48439702 7033.017970256363 67061 10525 237329 GO_20200224 16840278.98242997 1692.6589482365061 0.019325030131777672 1.942080754110499e-06 2527962.304126616 254.04912201860134 10675 684 700687 POLY_20210128 67128741.34537789 2217.900413905035 0.08859914332438237 2.9238569799016644e-06 1741044.4993164956 57.456143712453 36131 5025 305151 WING_20201031 5139828.0874958895 378.54023756387926 8.416521496487139 0.000621443568489186 2248365.920111623 166.0106899562737 6606 None 218280 1INCH_20210527 568053440.9440016 14498.751125892823 3.405476016650952 8.692773209992637e-05 174444263.16591713 4452.841277023198 215443 None 11416 FRONT_20211104 67198626.69720384 1065.5384691606107 1.1315281279259755 1.7942133768227505e-05 13378464.959029369 212.13631546961642 84590 None 339498 ONT_20210203 501180766.5329475 14071.177657389055 0.6203693580985667 1.746794948540872e-05 239143858.707365 6733.654377207743 97038 16695 259663 ETH_20200610 27188436885.46926 2780238.1799556524 243.8495266518988 0.024950887965147134 8592468949.874516 879188.6252802578 460191 464957 19155 CELR_20201224 17992840.260479037 769.5098549226478 0.004527832797872385 1.9416646404928777e-07 5177029.076128141 222.00586348164077 25623 None 413002 EOS_20190706 5987422093.640889 544766.7150021006 5.746078801070404 0.0005229203264145546 3010188008.8434386 273941.33471687883 1185 67018 97672 ACM_20211111 15653124.680328066 241.32870354401902 7.8672105935561465 0.00012118371669635093 4878050.556161042 75.13975755428315 None None 32257 BNB_20200305 3023669002.147633 345390.67311585066 19.998016534820184 0.002283541549754019 316845189.14028096 36180.04580512806 1121096 59834 1861 AMB_20200404 1238173.6136745643 184.12349225196968 0.008517834228313462 1.2659995096744513e-06 46495.46956407058 6.9105878433902905 19015 5491 894983 IRIS_20201015 58547395.99702365 5129.150891847736 0.06861129094807444 6.003774362013408e-06 4124224.1080011763 360.8868251954963 10792 None 357243 AGLD_20211125 202758393.90846828 3545.5091053795823 2.6408465944831394 4.616949680875694e-05 47178144.49554891 824.8079219295319 None None 55901 SUSHI_20211207 1225604200.5318487 24281.72572766553 6.3429162280024896 0.00012567934419572792 469907362.6902051 9310.803903561482 175169 None 4035 FLM_20201130 0.0 0.0 0.18489062071528423 1.018663296231537e-05 3566997.257815087 196.52533861575148 None None 36319 OST_20190626 16204222.555776723 1370.397174449384 0.02543324592508154 2.148488504991837e-06 1270415.8103807112 107.31912761756918 18164 756 994275 FOR_20211007 45306887.444036566 816.2048689402845 0.08021273215316743 1.4459310450074783e-06 21662113.37591724 390.4856671743933 36705 None 153140 NAS_20200318 8870894.108026668 1633.0009044919207 0.19348948839042396 3.597365537249236e-05 2594024.681920098 482.2822713078768 23646 4972 1138524 CHZ_20211221 1452906949.5167809 30795.838163854496 0.2704396987358777 5.735608949565319e-06 163968265.3311997 3477.5140427767546 427775 None 47803 ONE_20211002 1697653958.073933 35250.32018660786 0.15969597493308177 3.3154440549640264e-06 106677914.33204938 2214.737453566761 225217 32871 25924 NULS_20190126 19697860.337296456 5523.885071344413 0.4924391394240255 0.00013810260564905383 112057692.16808687 31426.13580539724 19588 None 403917 CELR_20210806 194084991.37309664 4737.056341792513 0.03432464218815102 8.389072249909257e-07 55225716.57903303 1349.7373807860106 57978 None 199421 NANO_20210421 1145145817.8851275 20269.67454758567 8.56559380328072 0.00015194235366321809 160913260.7287975 2854.38933158284 117474 85014 65732 HOT_20200418 60127904.95350489 8493.741986999832 0.00033669261053032224 4.782613868772693e-08 5781079.558228324 821.1843802604358 25056 6957 509246 OAX_20190923 4148683.379362825 412.6983158340137 0.07942941193212558 7.901394619588664e-06 1000498.0339772427 99.52648005668381 12285 None None SC_20191026 83826850.25051948 9698.534414730037 0.0019916533505031572 2.3004232656675317e-07 10023977.229560003 1157.8014029186274 108383 30479 207365 CELR_20210823 286597087.180558 5809.316020426394 0.05119138101976318 1.0388291867524858e-06 69946458.74067718 1419.4268918383266 59474 None 206136 LUN_20190627 6029802.286528003 464.558275839407 2.2254004875287796 0.0001708467416638913 8777542.755330143 673.8627891777418 31329 2223 2294680 ETC_20190524 778900358.2943627 98874.5370749841 7.033633830300501 0.0008942591551585405 594958742.52077 75643.30405554826 227709 24524 712989 RDN_20190704 15658198.807313465 1305.8939731455773 0.309534599879599 2.579177502321217e-05 1031247.4820071645 85.92804507001364 25683 4424 772412 BTCB_20190716 0.0 0.0 10922.7132437071 1.0 400567.788969411 36.67292 None None 50789 NKN_20210718 131202602.26163396 4151.239751870822 0.20224826273146784 6.398738814077305e-06 14241551.25263776 450.57478142058665 None 3285 146372 PPT_20200208 16958052.35648214 1731.45046742861 0.46871062755074505 4.7809923973782084e-05 2725612.882346253 278.02088757380955 None None 809684 QSP_20210624 22702493.48487763 673.6346706559309 0.031805031619324894 9.4372770173271e-07 331896.22348216316 9.848116610903602 65921 8482 222044 BTCB_20190719 0.0 0.0 10645.7605889428 1.0 306393.2193485395 28.78077304 None None 50789 PIVX_20200320 14713342.487243623 2379.045987532634 0.23446085257590565 3.797137463217375e-05 628885.2768521282 101.84914959429972 63850 8511 174953 SUSHI_20210909 2190127229.4286766 47273.8421136418 11.268564948822112 0.00024395393567834894 438741063.61602235 9498.335386887175 None None 4465 C98_20211221 363166147.5954308 7697.6752789702405 1.949504158928815 4.136472402121203e-05 11285374.804747704 239.45392069890627 None None 39046 COTI_20200901 49070863.2110885 4199.413838372404 0.08622874191112703 7.396328091986831e-06 20768668.02775797 1781.4464105852019 None 1162 143053 VIBE_20190316 8644768.983509252 2202.9042382476923 0.0431806331813648 1.1003509755657273e-05 551514.6484949731 140.539782953468 20540 None 1285691 PNT_20210125 13835335.08191655 429.1983108923149 0.45139649731068965 1.3991627530758086e-05 3610415.7750328244 111.90958072646146 None 116 1091126 WRX_20210107 18188111.33599797 495.1005905093802 0.0765964249476753 2.0738651048121634e-06 1855762.3476653611 50.245174997090984 47366 None 5719 POLY_20210120 77167379.3892775 2131.096497813277 0.10243619052553937 2.8421429097243347e-06 3013047.811538565 83.59850586292256 35934 5032 305151 NKN_20220112 193943533.3831708 4524.121611664797 0.29797089432956964 6.964703390779287e-06 4886751.200646804 114.22180254758543 37832 4638 106032 DASH_20210806 1685727830.988789 41139.02463327875 164.7070631344744 0.00402550285923287 496721309.9571882 12140.056506514422 401879 41824 69115 HBAR_20210111 336553113.5752076 8730.357394169607 0.04981780509033178 1.2952526460311607e-06 60952843.825885996 1584.7613540068378 None 6943 206193 RENBTC_20211202 992514339.0267209 17364.569833875692 57102.521820373855 0.9988462934187003 762518.2136392938 13.338088530550836 None 6362 69235 ARDR_20190511 69453778.03830019 10899.623714510732 0.06957466299306692 1.0920864120769021e-05 1139601.92468847 178.87887969403195 68747 6558 1327077 BAT_20210201 448342107.2112523 13566.282657746697 0.3015097043556846 9.1190768653052e-06 200914183.83419836 6076.59342053138 131310 51145 21155 FLOW_20210819 1317428867.1211004 29243.40779692936 22.62380088270355 0.0005023395721190204 256801816.93706664 5702.035458514756 None None 63325 KAVA_20210828 664074135.3304636 13540.178066554596 8.173561778777646 0.0001666218966518109 257124592.72041643 5241.605615086853 129440 None 51016 AE_20190806 98446892.50984745 8335.507697760264 0.30452178051431783 2.578245163057416e-05 20635002.26023585 1747.0702646384434 24887 6360 316448 XRP_20200530 8731198879.71849 926413.0389076181 0.19790502860899387 2.1011312725176347e-05 1388432175.7669818 147407.99083167562 952172 213991 35864 SAND_20210613 187854790.58027822 5238.818245163721 0.2665786228451496 7.469575775494514e-06 55387815.86557834 1551.975485623987 126710 None 20999 FUN_20210115 79963411.96616814 2049.920543880056 0.013299822284507691 3.3902795293910016e-07 2722107.3971951976 69.38968647923035 None 16506 359571 YFI_20210722 1007269314.7946278 31300.168930563355 28404.895187242248 0.8795439014593516 196780085.85123911 6093.200601452687 None 6828 20096 STORJ_20210428 300053700.9076417 5446.136970237297 2.0771879015546495 3.7694694706205406e-05 156140357.25457975 2833.476496577014 275 12851 56587 SSV_20211104 0.0 0.0 14.034222331332895 0.00022257472181554582 18354469.779615533 291.0913699969705 None None 708286 ATM_20210210 0.0 0.0 5.931920870994135 0.00012735841108938887 2524364.0860188473 54.198126711120054 4837376 None 233968 THETA_20210826 7232997157.505523 147564.7413412728 7.206521053014765 0.00014705937891422416 378972022.7743531 7733.466659581739 190383 22971 21702 GXS_20210115 24042170.11096983 616.3386130995509 0.34502242353904045 8.810155367339266e-06 11276758.961130593 287.9522944292172 None None 482061 NAS_20210201 15053157.161296472 455.4588834338538 0.3317175077089418 1.0005966128708272e-05 11348189.724022847 342.3081367787179 23426 4838 795646 MTH_20210731 7843462.28443264 188.95791192928638 0.022205079899514178 5.321745591147346e-07 233019.09473923765 5.584615528038767 21809 2057 1218928 NULS_20210421 139906844.90214136 2476.2909567596994 1.2443414409955786 2.2069079852449046e-05 121476648.39973134 2154.4551723654063 47926 5313 273594 MATIC_20191102 32796812.313399762 3552.9609152776115 0.013759857292902584 1.490248678481885e-06 10100248.73118002 1093.8981417883751 None 1195 195484 DUSK_20200914 17210468.0068588 1666.8738736123453 0.06011764680265118 5.821285095551067e-06 1024122.0319895622 99.16732669887872 18466 13351 627816 DOCK_20190905 3111318.8383250474 294.52340075992964 0.005623382515002641 5.323770237620073e-07 2140290.106675262 202.62560370722176 185 15179 184011 TNT_20190117 8162571.8711049305 2267.9910574811665 0.019032040280013936 5.29302154943988e-06 14903613.96747855 4144.860389836218 17017 2520 1229604 BNT_20210422 1192984429.5742958 22016.032382774403 6.621746024930488 0.00012242533556313244 137801467.1501904 2547.7254478558966 111692 6987 28639 STORM_20200329 7775740.6881050775 1247.317660782693 0.0010259865149280806 1.6412614010810414e-07 418907.4111979695 67.0122418396704 26094 2518 875750 VIBE_20200208 3110324.2882601824 317.54269237724765 0.016598004519468003 1.6930474530500012e-06 1311422.5795080306 133.769132036572 19550 None 1853934 IOST_20190819 105325394.10374591 10205.963899851891 0.008766118213500169 8.496244076353377e-07 36281449.773136 3516.4487314555345 197469 50695 99205 GNO_20210909 404768976.5640445 8732.62925861128 268.49350006172415 0.0057968343930261505 2595296.8339327113 56.03303597142734 81289 2334 227180 BTCST_20211028 268345505.66402465 4584.595038102441 36.810778425551725 0.0006289000879700507 9188792.643660417 156.9875115144343 None None 2218085 MTL_20210318 93030490.99777828 1580.5903122419506 1.4562581528290728 2.4723207694639648e-05 33338410.547261026 565.9933622125054 44765 3519 291535 MANA_20190930 36302861.563028455 4504.8291007096595 0.027276683885305984 3.3876127899208786e-06 9807289.166379401 1218.010897298876 45795 6396 114138 HOT_20200425 59574307.81263163 7946.605708362786 0.00033469211995765306 4.465381341631834e-08 6149173.912618074 820.4079157683228 25067 6955 509246 SNGLS_20210201 7058958.665347658 213.5808055064556 0.007625804620266408 2.3002567233045648e-07 7360218.517592543 222.01450172338062 9050 2113 2522161 STEEM_20211021 229379236.47430903 3459.716139131274 0.5839296727359521 8.844490455944326e-06 3306870.8207759713 50.08751700586958 14508 3938 196573 ICX_20201130 233045418.9526685 12847.227686267188 0.40593736571590167 2.2378194335301965e-05 17137650.016880415 944.7508283742055 116214 28038 259128 VIA_20210219 17984803.273214165 347.97305233640935 0.7764321327337244 1.5020619160339619e-05 790647.5589669424 15.295626459302472 37804 2140 1515639 WAN_20191015 22456683.95101485 2690.279415514642 0.21158770371104138 2.5350347518885586e-05 2835498.2553719585 339.7213774815495 107534 16775 355950 ATOM_20190708 1302992999.9539938 114063.9689029871 5.4039789033041865 0.0004727690873109382 73177215.49853498 6401.935685212434 None 5877 112670 LTC_20210702 9221651540.863 274493.41777818586 138.13808637459368 0.004106644663318013 2324474732.1354876 69103.2575031923 188005 338179 73715 THETA_20211002 6029985946.413786 125224.0354698056 6.031311724030322 0.00012523040619031857 431924330.1547411 8968.208208050424 200352 24255 26496 ONE_20211011 2711784542.6262426 49559.36793242082 0.2538690949207843 4.6402667105025396e-06 621574356.1629603 11361.252120527013 233902 34524 25924 VET_20201228 1086677300.3339508 41045.8988173519 0.01657731597384529 6.29726563886045e-07 370632757.57133454 14079.317379076714 145225 69601 129519 BCH_20200410 4723809496.554636 648100.28701087 256.971235245949 0.03524282370162191 3756431751.280162 515183.1948460411 2844 291183 142295 WAN_20190901 35760085.192527406 3725.295575102747 0.33700449253959364 3.511682856896904e-05 18566459.83961872 1934.6780287919694 108115 16881 451102 EGLD_20210724 1557926066.4913485 46600.343854786035 80.06423068601303 0.002394561912158392 30345406.24569261 907.5707514117547 294168 9723 35166 COTI_20210304 151027404.6049805 2970.4818992095784 0.22258825097926385 4.3930452296895235e-06 112420648.4576413 2218.7558923379675 46737 1965 166119 ZEN_20211028 866862399.7762978 14812.829015014691 74.286527199748 0.0012684543365489417 60572664.1145578 1034.2879303784973 None 8260 1770631 AION_20191216 20945704.5610866 2943.242551927494 0.05632510263106376 7.921732734943497e-06 3530643.268418445 496.56034429333226 1213 72549 394577 FET_20210617 201227218.38944653 5260.97238598708 0.2928575768740213 7.64706443062829e-06 30682057.552946385 801.1664696404841 66147 2907 113407 ZEN_20190708 64292091.85312206 5628.127830388524 9.141751950431331 0.0007997695408073895 383973.24553754035 33.592040992907535 None 1701 233714 BAND_20211021 367179221.8200154 5539.608014981932 8.793686350705807 0.0001331597208363323 43760030.64992526 662.64285906282 None 6102 359997 GTO_20201115 4350642.024612537 270.2657032932345 0.0065612819539874875 4.0788618429312836e-07 354289.3554425224 22.024618716362195 16410 None 839827 REN_20190922 45018272.529259644 4506.069636967534 0.054665654185128525 5.4739932650542855e-06 6215524.319190843 622.3969834296387 9762 877 293718 KNC_20210206 405141786.33130777 10689.387687410537 2.0100131167963267 5.287914480621823e-05 366690748.72160155 9646.849087062428 132493 9582 112960 STORM_20200610 0.0 0.0 0.0028324184968202127 2.8991780606123717e-07 1395359.7648708867 142.8248128416206 19412 45 1230704 RENBTC_20210718 366159324.36977565 11583.008939954518 31519.22149324922 0.9972656254933023 10310042.963862786 326.20892769897904 87430 5541 100399 HOT_20210127 119068408.09810844 3653.8412873940515 0.000669267728382737 2.054749703658968e-08 9057235.152371837 278.07035146124423 27511 7528 800111 KMD_20211104 139441824.1194232 2211.323468984662 1.085010052346535 1.720451751805379e-05 3598944.700936737 57.0668511502392 116338 9920 126326 ONE_20210115 63042806.01329987 1614.1689505947481 0.007222461807687557 1.841102662142263e-07 8802762.08016419 224.39424577842448 80088 1618 186131 DNT_20190811 4996946.657326659 441.3417914229826 0.007444554512753376 6.575201318563604e-07 2273461.9656932857 200.797375973569 60445 6306 717960 LUNA_20210909 11928156508.486322 257365.82698033107 29.3873189189158 0.0006362080834484336 1677529875.3197386 36316.95936092 124970 7260 16171 ZEN_20190719 42988667.209968135 4005.5059863312235 6.147539345325978 0.0005761738706802253 2177196.9947825903 204.05628158703905 26346 1717 256228 QKC_20190812 69112556.87022403 5984.347067006027 0.017264358331489704 1.494204878336485e-06 3200823.907957567 277.02661206022134 51668 9237 258370 XVG_20210710 348862871.14699376 10264.719183975552 0.02118203792839001 6.233195456763226e-07 11680094.05847608 343.7077653528397 321365 54437 100558 DLT_20190803 4987002.634246483 474.5493496817539 0.06231065738983532 5.924822636582254e-06 747875.6573372182 71.11192225462241 15058 2665 2977956 LTO_20200927 16046379.835434722 1494.4194785614325 0.06597060406110102 6.145402276317123e-06 3254588.9084034977 303.1768220229559 18076 550 1425924 CELR_20190904 18893683.653464284 1780.3632243327124 0.005810507773102375 5.480760933375285e-07 4999260.653899649 471.55521612913986 18319 None 503834 OMG_20190904 152334342.96384546 14334.193068836737 1.0827486394162567 0.00010190275710122462 111820200.8237896 10523.944661523725 288249 41320 None SNT_20200721 99289338.8173448 10837.333072783114 0.025616439605438735 2.7958420402472e-06 11334919.651189692 1237.1213709532021 None 5713 140990 VET_20200412 234608496.6138783 34095.062006205924 0.003640400923052549 5.289891483906255e-07 115568068.06219344 16793.275025902163 118828 61619 281766 STX_20210421 2554532591.3339796 45216.550974414495 2.448584582551303 4.342699430999046e-05 152647197.44915745 2707.282003774382 60106 None 58797 FUN_20190110 27152699.18191939 6826.026925357768 0.004621684995285721 1.1621104938028946e-06 267196.3868699267 67.18582625265297 36591 17905 469205 THETA_20190810 115360506.8055645 9728.23936792105 0.11539951693311484 9.729436453948586e-06 1659704.9755086405 139.93121046488378 None 4020 242693 BTG_20200730 180910803.3550626 16291.954926507295 10.28586805979639 0.0009273880943309056 11118561.237641757 1002.4648632409326 76253 None 222714 SNT_20211202 387180264.91624045 6772.674869137868 0.09976266882507226 1.7446323152003025e-06 25475506.84982839 445.5112620758928 143570 6238 183737 APPC_20210325 15981027.85050979 303.0113974332553 0.1436220435992637 2.7300076058159156e-06 3316213.6399922543 63.03550787057419 24626 3118 872294 SNGLS_20200323 2700623.4948161133 462.8901401351327 0.004142415450218608 7.098919603648526e-07 66798.6478123272 11.447384651559235 8501 2130 1285734 NULS_20211225 84107142.17679922 1654.1526078966094 0.8769306754584912 1.7248791622212295e-05 40214520.53945746 790.9996814852118 81787 5568 218016 PSG_20210427 117383951.52389014 2178.9082656964197 55.698025504512096 0.0010332413512839334 129453990.18398717 2401.471408281148 None None 26882 OMG_20200610 231352771.95653218 23667.290550251713 1.6493806019860449 0.00016882561882171945 95012693.58966807 9725.212465745879 75 43039 406561 RAMP_20210731 58516503.1696672 1401.734935839238 0.19506078948859668 4.669717718826608e-06 8977278.15335487 214.91430937742098 30828 None 117876 WIN_20190903 65120103.213504314 6308.112604630464 0.0003104882754792574 3.007665693832185e-08 25689115.96398043 2488.4763416743704 17609 1401 68914 TRU_20210511 98130762.27544849 1757.547613600816 0.3995755153026567 7.151188179128524e-06 7844330.998930415 140.3897009811343 None None 91000 GAS_20211207 90628622.75812118 1795.538363799513 6.525966806813024 0.00012930960261414728 9700894.729947481 192.2196173632982 None 115434 77665 WTC_20190801 53134565.62520695 5277.8466585327915 1.822809372262433 0.00018080035028914662 7658362.9931572825 759.6157518576364 56110 20026 698794 MANA_20210325 1134868038.8191364 21469.567224984326 0.8521002302364619 1.6151740993626042e-05 534506551.0315277 10131.685293949327 96402 23132 19988 ICX_20210105 293642955.05485135 9385.673851997508 0.5067577014499823 1.6197434421367288e-05 78870626.32483862 2520.932181224737 117366 28049 340142 MTL_20200208 21667878.144744206 2212.141155233983 0.3356160926413477 3.423387252260125e-05 5229157.766351455 533.3901570838785 None None 594241 POA_20200105 2702436.3076624293 367.7026498681563 0.01228146109686555 1.6701025953015866e-06 66615.75021806372 9.058786772165467 17533 None 389159 NAS_20210221 33479614.40629321 596.8748709543138 0.7370487832918301 1.3109323070548808e-05 24857218.309892762 442.1163332014111 23775 4843 603021 AION_20200306 58439900.0088632 6454.822435082376 0.14588580582056873 1.610442525914837e-05 7218508.93054296 796.8557112225502 619 72548 246428 MTL_20211028 187074740.09160534 3196.7081958109766 2.8874046368819353 4.933036213327413e-05 13541236.02816469 231.34758061580854 None 4401 184218 XLM_20200625 1404669243.2867074 151094.18317717672 0.06899139009858542 7.421104849432541e-06 278508684.484719 29957.972235161615 283130 109298 69025 WTC_20190329 41010032.37699616 10186.13875586365 1.515037694478755 0.0003763075345675874 16811854.49356351 4175.755850192554 54969 20323 924295 BLZ_20200719 14080638.064414937 1535.448795938303 0.06034674168293516 6.582340603594468e-06 1400224.882236121 152.72998739404042 36470 None 455945 TKO_20210821 172264847.96300924 3506.158276974228 2.298275951827733 4.674877702632304e-05 28694769.572205056 583.674638150363 311566 None 26828 EPS_20211216 138736482.89075056 2843.908623030087 0.2692434590175856 5.517564635490728e-06 6877057.4032610115 140.93047557376056 28524 None 88886 TFUEL_20200330 0.0 0.0 0.0016051470246956454 2.719350571165889e-07 273011.9835230213 46.25216767724009 68106 4025 384607 RDN_20200417 5223577.276275619 735.6616323000974 0.10327787958770837 1.456902862522501e-05 704369.1238072375 99.36274803896761 25038 4316 1251833 FIDA_20211202 439157226.2300703 7683.343558900818 8.956269193356805 0.00015662568816960385 7603790.856013069 132.97378069030785 58433 None 354569 NEO_20191024 487661487.96753687 65327.828651133466 6.907315521836556 0.0009251912609204172 232444624.61088204 31134.488450403776 323155 98335 172955 FTM_20210202 271024075.90514064 8118.104123713358 0.10727578055951231 3.2117276365175617e-06 88561321.41556208 2651.4357857231557 31415 3241 133702 HC_20190819 123825304.37467267 12006.308371602348 2.8091227553743447 0.00027226409670522855 172501437.61957282 16719.080006024025 12960 851 414812 POA_20190405 8553885.651200686 1746.9235647085686 0.03883771500530062 7.9345197000689e-06 322600.9941410308 65.90717149359769 17126 None 742810 AMB_20201106 1955421.6011794903 125.84213675579325 0.013506411024122398 8.694968587166001e-07 292953.2037526692 18.85933205786331 20141 5499 433518 THETA_20210813 6748116491.526722 151786.9281966965 6.749973343979852 0.0001518292791101941 411565624.67653733 9257.475387944567 186913 22532 19933 GTO_20200626 7581566.748289958 818.8322287176358 0.011449092284043443 1.2373182511064263e-06 9352059.862839239 1010.6892377711004 16598 None 1219956 GXS_20190131 33475098.557240687 9679.428279458994 0.5579183092873448 0.00016132380465764992 677666.8944993902 195.94947842959354 None None 269536 MTL_20190305 12958029.284192357 3489.658488703581 0.29986881382508385 8.075608788280335e-05 6601551.280360645 1777.828939793013 32581 None 580770 DUSK_20190903 13664937.20237957 1322.6535297578753 0.13067096199775435 1.264787437830966e-05 3727681.2330940343 360.80888391535717 20382 13317 183070 AE_20200530 44666493.16547566 4736.716617633851 0.1243543783270604 1.3194467233479631e-05 10934654.360165358 1160.2079525110803 25291 6345 522422 FTM_20200322 6204552.677744116 1007.4220730037069 0.0029263548292848096 4.7489169320024636e-07 2242826.0038033677 363.96797402727464 None 2321 333169 ONT_20200612 342467190.92327416 36909.89987286265 0.5394681748321094 5.8009722855083014e-05 135639874.69221118 14585.534246653442 85589 16473 148134 SKL_20210217 157449043.0577141 3201.9578086864713 0.2812404305831401 5.715609295980826e-06 45762975.27395754 930.0344418661005 13135 154 210822 QLC_20200229 3253562.1900947327 372.4329880305974 0.013521007873423006 1.551804116794156e-06 51162.66386470629 5.871931527195182 24525 5677 940522 FTT_20200905 342161740.1024755 32613.92280611562 3.667198030329046 0.00034975477038120303 13838495.98596917 1319.8305480000388 23201 None 9100 BNB_20210617 53441971881.88039 1397210.2808633577 346.43933841857296 0.0090518741506304 1712882448.6310894 44754.722228164355 4289435 504941 132 NAV_20200711 8601829.13050658 926.5075859354612 0.12454461499841872 1.3414766654014053e-05 633963.98055348 68.28459718055908 48510 13831 884815 VIA_20190603 14414728.435285628 1649.135548290067 0.6226186115837565 7.12231647007818e-05 625167.9843410967 71.51479490971155 41182 2236 1811232 ZIL_20190622 185039762.9875308 18283.577818747628 0.02031910770205903 2.0074662570929557e-06 41664301.64676973 4116.306725061412 64559 10567 190558 ZRX_20191216 125318664.89856142 17610.239363725217 0.20715645160516497 2.9135109698501068e-05 25614037.906971235 3602.435736172675 151833 16010 133282 QKC_20210204 58957496.02316384 1573.7134142244643 0.009164778177124116 2.44329136417877e-07 41266003.43711522 1100.1343173121254 63370 9222 366724 FIO_20211007 66351068.42632361 1195.3940578036809 0.18537293728490825 3.3415703184458722e-06 4971201.924836704 89.611898275659 78112 531 497635 TOMO_20211221 155413337.67259577 3294.143507993766 1.8173777763818906 3.8548115886082934e-05 5199247.221689585 110.2804199691995 61020 2383 102672 NANO_20190325 131304114.33234948 32879.26142140782 0.9854313277027453 0.0002467754407473133 1862060.969654254 466.30435177661525 None 44846 349841 SC_20190915 74376754.2533602 7185.005964838625 0.0017590261058488478 1.6992320004347814e-07 5191911.49812834 501.54242348709374 108848 30588 202127 STRAX_20211204 253368507.84274992 4724.9301106067005 1.9277114012409056 3.5948830901810215e-05 5615367.898765216 104.7179110494543 158644 11172 188496 XTZ_20210909 3687699368.182199 79567.01413766871 4.366948337821361 9.432480116652276e-05 327661392.2362654 7077.3898113140585 135231 54959 56953 ELF_20200403 28184715.907239743 4155.996203083925 0.061269912244559493 8.99533581830912e-06 34579041.656957515 5076.7184183008685 82582 33431 699270 OGN_20200625 22107644.16843337 2376.1867128074887 0.2974780147787517 3.1992822227282924e-05 13430302.254195895 1444.3866475199336 64588 2287 179031 COS_20201231 22953352.62377057 794.9266621975814 0.007648545205757105 2.6522261836950707e-07 3083330.0818745615 106.91822504973868 13988 None 444125 GVT_20190621 15509502.677201914 1621.7513238279396 3.5005561643737426 0.0003664857217960055 1981164.4780667492 207.41518194460807 21349 5772 171234 CND_20190512 29477699.850172885 4047.0724961785922 0.016640920069218326 2.286889809132084e-06 539240.8434178624 74.10554130124042 36677 6182 553989 XVG_20210107 215619911.75143552 5872.824283299349 0.012977415695628429 3.514589619481203e-07 34791808.11275487 942.244053084167 289052 51353 225034 WABI_20200407 4877896.372530908 670.6708612638579 0.08262880218648169 1.1339744401190948e-05 575982.6137628114 79.04623384058615 36720 7740 1806690 LTO_20210902 91105113.10807063 1873.232333039155 0.31067475480676515 6.38522745049402e-06 9179745.610053122 188.6692199831964 11933 4562 543169 ELF_20210120 69996601.15473983 1933.064369429995 0.15004469637852766 4.163064516223404e-06 93845977.04043123 2603.80317623306 82036 33331 473527 MANA_20190531 76637687.62697594 9227.89320855702 0.057754812954735384 6.96057664448188e-06 23227204.368697233 2799.3292329086407 44756 6244 128329 ZEN_20201224 93075039.56465037 3980.5922331023326 8.709206163470162 0.00037350154166186 10932061.545586457 468.8305414040124 79813 6290 401562 RDN_20210819 22141396.349764973 491.061033564525 0.4330078568772761 9.620300768436826e-06 449067.7333964184 9.977109172636046 30714 4691 1417860 FRONT_20210624 24648815.332659166 731.1580009995138 0.5573003006975679 1.6536368781117652e-05 10955403.344288409 325.0717604499462 None None 199058 SC_20190704 127027529.01715831 10585.42359876707 0.003074368014114802 2.561924015975281e-07 3292319.007210995 274.35463464689747 109563 30851 228253 ANKR_20200223 8616931.934944278 893.1663106364371 0.002156245585352928 2.233269776657309e-07 2151788.0061304853 222.86529662985268 None None 5317 BCD_20191102 99754689.14189236 10783.916623626383 0.5268648323979901 5.689456133513321e-05 8385384.565285594 905.5126611827747 21439 None 2003139 XEM_20190615 766990927.3712498 88153.98880661302 0.08512732504392723 9.804421316272868e-06 57736221.14120025 6649.689003921192 216395 18463 168914 ENJ_20210626 900858089.1117157 28332.65411490402 0.9657521100686086 3.034515982712027e-05 110902887.03172906 3484.709789583376 234014 33630 26462 LSK_20210813 574251914.226586 12916.77969415226 3.973509489971327 8.936794507729301e-05 72255877.11573283 1625.102261335493 196629 32617 284613 STEEM_20200501 64864822.989643246 7495.826542789634 0.18405087057621367 2.135234208097565e-05 10876668.748058585 1261.8378336539015 11284 3853 240459 NCASH_20190708 7490108.654713838 654.9607105251912 0.002583963572325201 2.2585193256678037e-07 1399907.7082693102 122.35925642064932 60248 59110 1075927 XEM_20190701 818477633.2047048 75279.46433207345 0.09133820379419641 8.418475734230726e-06 76858619.80185826 7083.918873928207 216936 18473 188910 ETH_20210125 158167202909.14236 4917409.755297517 1392.5397634449737 0.04316359964681242 39913977039.25946 1237186.161903618 609462 544969 7694 BCH_20200318 3405560946.9996285 627125.0936764542 185.1963709610073 0.034339145783380376 2694672866.414745 499646.7474938695 2640 287667 138735 ENG_20200502 13674498.927487103 1543.1303805219832 0.16480192632248614 1.8660616537957922e-05 1038917.2256936111 117.63719269525525 60646 3586 556328 LTC_20200414 2661968723.9554234 388755.17618120724 41.26874879368051 0.006026907665626619 3080265655.812133 449843.4586905463 133165 212998 140377 OXT_20201101 0.0 0.0 0.21645482486570689 1.5703694965600145e-05 2144826.595191257 155.6061530431908 None 1718 99245 CVC_20210527 237922636.1291892 6072.634790700138 0.35640720070097837 9.091214248617597e-06 31542890.551919885 804.5942266716169 102906 9797 117752 SOL_20220115 45849250868.07178 1063754.7536187994 146.31283636345285 0.0033923285622447876 1627092109.7732365 37724.85842373853 1301051 119270 2882 VIA_20190228 7684717.757953457 2013.2113005903166 0.33184537629575667 8.703793130010926e-05 864139.5259021039 226.65048863643923 40568 2227 3168832 GAS_20190122 29317037.141680475 8301.366825988363 2.1169747393759453 0.0005994794363264362 860631.1378844623 243.7113017116331 316258 97896 129733 SC_20220115 694156018.8593897 16107.607890302155 0.01392110277520986 3.2287096305853917e-07 21089073.447343912 489.1171025675837 146562 50971 92361 AVA_20210325 158942830.12805775 3006.2788802570603 4.104027883924387 7.789674314916617e-05 9789930.806050967 185.81835869931723 59173 9655 50242 SKY_20210527 33091947.63684404 844.6246047913238 1.659722194918432 4.2362033759100365e-05 1056621.588332146 26.968753886984327 19411 4381 273629 ETC_20190708 889887948.213535 77900.76482049831 7.9649654692959215 0.0006968179415133828 794180293.9091657 69479.15590162591 228623 24756 547653 FLM_20201208 0.0 0.0 0.19505091620526194 1.0158996330307716e-05 4772749.067834688 248.58299160506144 11832 None 36142 APPC_20201124 2611594.7404283774 142.60346950577878 0.02385819229555775 1.3e-06 106884.13112648322 5.823968922 24262 3146 562467 VIA_20190826 6451946.647893588 637.8681332131965 0.27866805972729863 2.7550363439912814e-05 219339.7628021877 21.68490421162025 40773 2218 1896727 ARK_20191216 24329565.44915124 3418.8799531321083 0.16977313778787048 2.3877407413484665e-05 715210.0282347562 100.58930083338099 62826 21693 102413 DOCK_20191024 6182960.9275374 828.4826431047559 0.011052923130214552 1.480469200425447e-06 2054731.2643165083 275.21826725241874 201 15147 183955 NCASH_20191203 2887716.468837568 394.98158949511566 0.0009809347919943732 1.3426347829259202e-07 156946.32194514497 21.481712404900613 58639 58618 1145452 NMR_20200905 223551084.39240876 21320.52528459483 43.10178773753178 0.00411070587184542 9299797.391709594 886.9407454249255 20474 1844 882883 ADX_20190515 12169508.467931049 1522.468001593896 0.13221206506686806 1.6540408268697984e-05 1074843.6760688184 134.4684633600933 54576 3915 1002486 MTL_20190421 24318963.734468404 4579.711033029652 0.5378499998305019 0.0001012907816195903 2874904.352506265 541.4173264640531 33464 None 736398 KNC_20210324 532733280.63237756 9776.294576457276 2.6205056437959797 4.807213418249137e-05 166986156.7460398 3063.294655639802 149747 10293 96542 NAV_20210107 10484601.331612086 286.4440109014172 0.14858487343967378 4.0256674816572505e-06 302912.9327753904 8.206937321533012 48202 13634 819464 REN_20210826 519158034.06188416 10591.61626850231 0.5889172371972587 1.2017699316632006e-05 55982165.056952626 1142.3962218364684 90548 1189 128608 XVS_20210220 811964416.8288821 14535.70506685621 94.5736400923444 0.001690812498944702 480554834.34327 8591.486164036047 28433 None 29971 AION_20190811 27053926.267706703 2387.693013664585 0.08043666706102409 7.102785990750966e-06 695199.3154658304 61.388072617730536 67615 72599 199411 LINK_20200520 1496189325.1304686 153352.36625251305 3.9372412833939903 0.00040354870682084246 264429571.8920198 27102.78697733937 55584 15405 76484 ALPHA_20210819 366883707.9921922 8143.839986071145 0.8967769430144602 1.9931835182749178e-05 51037438.89071725 1134.3621488526678 None None 63427 SYS_20190302 27433320.523373183 7181.480482413759 0.05000812654847037 1.3079377526871279e-05 187596.64074417893 49.06497116399195 62493 4628 812672 MBOX_20211225 571538351.3589016 11240.5632856474 5.919647066059186 0.00011643652295104188 155283812.0667489 3054.35559685688 258949 8331 7517 SSV_20211111 0.0 0.0 10.60128959347679 0.00016320648750027457 2754051.8491072506 42.39853319005691 None None 708286 IRIS_20211216 97182737.44809191 1992.0050796086725 0.08327522375285681 1.7040380409112938e-06 7134413.970864796 145.9895543726539 None None 524776 DCR_20220112 777658830.1065534 18140.45077149404 56.810349019665296 0.0013279794106980949 3090381.9428421347 72.23971797580253 51029 12501 103200 ALICE_20220115 187873660.5837511 4358.882549701624 10.822913552145442 0.0002509407998175618 83478650.97460027 1935.5416027604401 None 3195 31007 VIA_20200314 2175272.733311817 395.10812737503994 0.0943864762199549 1.7105297632289243e-05 220386.37110563708 39.93977339589544 39554 2182 2317316 XMR_20200107 1021415360.6766387 131643.66815400933 58.830147259929 0.007587541134041459 96751979.9784247 12478.459804677004 319885 164278 86242 BNT_20200621 57406541.22877987 6135.556667488393 0.8745649005578777 9.343508184947621e-05 31390939.14183487 3353.68474789958 723 5050 118402 AION_20201130 35268245.39172254 1944.439801865475 0.07418467952215085 4.082869490612519e-06 692298.6053387213 38.10173303083525 67951 72517 690997 FIL_20210218 2268914317.126997 43522.265449678074 43.21343409213774 0.0008285919552792268 449474431.4872352 8618.405499547818 52424 None 47749 NBS_20210421 0.0 0.0 0.03684945011817038 6.535452652979912e-07 25222205.54182654 447.3296876716577 None None 497911 ONG_20190528 0.0 0.0 0.4818522210830642 5.464587177267548e-05 11711390.272179628 1328.1647424075359 80843 16203 231698 FORTH_20210624 98049789.38834228 2907.4284626828353 11.547750434157853 0.00034277680994138554 11600032.683180448 344.3287262768404 None None 66617 OMG_20190426 210569269.89691293 40544.40591261152 1.5067957422020086 0.0002895943367524978 111936540.91760923 21513.326204407338 290234 37928 None VET_20200305 371788050.84019107 42469.88297851298 0.00592377592589357 6.764265063316283e-07 171548025.46469074 19588.794880972142 118766 60638 236885 ROSE_20210217 191848560.29635784 3900.976812338823 0.1278292708191039 2.599072611884183e-06 60518232.2084182 1230.479363956757 11809 806 193183 PERP_20210804 701999933.4122348 18271.42716060496 15.902725810141067 0.0004139659948566477 78747297.35794666 2049.8814908992945 24762 None 147640 MATIC_20200208 59085384.33015085 6031.693962451764 0.023114528564988503 2.357752925630581e-06 61445580.9476112 6267.638028566171 30459 1488 153803 LOOM_20210127 58106629.9304356 1782.994706523757 0.0701304122407185 2.1531061137119446e-06 43264625.46851414 1328.2872098907958 24137 None 299124 SNT_20220112 232141885.78619772 5415.174737396482 0.05984365236020799 1.398679232200675e-06 8118365.264388518 189.74424933779386 146321 6289 131841 WBTC_20220115 11500049299.533882 266769.30625373824 43161.08427173176 1.0007357959534413 303103928.83087325 7027.788031586648 None None 208519 ARPA_20200721 0.0 0.0 0.022299634996694604 2.4338370863002265e-06 8747617.676651381 954.7365381256391 18868 None 680510 INJ_20201228 65894827.97172669 2489.0311290615173 4.812154138184683 0.00018298340020599837 32155527.704236113 1222.7222208137607 None 1887 148511 ICX_20210131 443371049.7880463 12960.67622097635 0.7584354137768495 2.2199539496998194e-05 56311168.95063353 1648.2379336911245 118752 28291 278107 DASH_20190524 1362306291.7310603 172931.1536675948 154.09788504281101 0.0195949733501501 476242064.9689941 60558.58955296705 319993 26152 107339 QKC_20190302 51167529.52049962 13394.609459388015 0.032412272217851895 8.477269078058944e-06 4486483.759974277 1173.4175806007154 36163 8982 173960 BAT_20190321 240418970.6076175 59474.604766315475 0.19333386123962398 4.7827636982620473e-05 13359249.068833698 3304.859845698033 94831 23965 94352 XVG_20190225 93185853.8220527 24796.27724199159 0.005901091889813366 1.5752569747189315e-06 1733738.6582697842 462.8099281920681 304458 53436 414559 XTZ_20200207 1510343643.6361754 155077.39895285465 2.1587817696511515 0.00022168754460801272 97091255.68226434 9970.402000656186 53799 20303 140994 LOOM_20190813 21030659.201175287 1847.7343465608644 0.034781156562901386 3.0557412165417058e-06 1297762.4649803299 114.0165148432991 20817 None 419085 DGD_20190807 41294361.81654615 3599.0399954048285 20.627165511038655 0.0017975905404660274 2080694.3241500743 181.32575863086643 17188 3361 575541 QSP_20190528 0.0 0.0 0.02641853871058271 3.0019510056541177e-06 432625.3218914379 49.15941923779451 57047 8597 772894 TRX_20190914 1025091971.7872849 98995.44509282277 0.015493993993942167 1.4967676164272162e-06 582957032.3906358 56315.44766262108 462901 71251 65746 ENG_20200113 35448122.75066437 4345.7515382072415 0.4481324928772717 5.487271660588608e-05 2159336.9483324257 264.4054745097765 61265 3571 347348 KAVA_20210603 337798313.2539431 8976.144223021925 4.799377308495009 0.0001274546778003525 343813373.04831195 9130.480866291025 104613 None 74195 SFP_20211028 160331937.38483837 2739.4053378095246 1.4830827805330098 2.5324088269041206e-05 55420624.00817142 946.3239629846402 None None 29854 DREP_20211002 0.0 0.0 0.569220199910336 1.1824239452270118e-05 6086108.574473533 126.42489695275248 4121 None 368060 FTT_20210828 5244490383.827643 106925.89576166426 49.43191248900864 0.0010078874312940737 185425333.3234007 3780.7127721737434 179516 None 1799 NPXS_20190207 101221025.53452352 29720.760999938415 0.0006047557900446972 1.7756984978498405e-07 8435604.18973854 2476.8823936464423 55088 3911 183678 BCH_20210610 11923840336.451859 317664.7682163763 634.6791939607144 0.01692444089733689 4904612517.178991 130787.05818812866 None 562200 273497 THETA_20190618 127773023.0147224 13707.19962442852 0.1279650497454949 1.3729721421820157e-05 5271524.024482407 565.5962817075666 None 3998 231431 ANKR_20210809 719324361.6865963 16351.128760575724 0.09356114990117126 2.1273512790186073e-06 58579921.3615136 1331.9638628304772 118524 None 5363 VIB_20210204 7937757.584957381 211.8745533876205 0.04492541810111711 1.1977137801392683e-06 16709758.417199636 445.482952969568 30435 1101 None TNB_20190625 18545111.7727324 1679.673783060524 0.006741299999441082 6.103607282058709e-07 8602919.05998124 778.9126641125101 15727 1491 506098 MBL_20200411 4591658.077269381 669.6646742753005 0.0013014443103286134 1.8964410730186123e-07 1487932.4719838146 216.81882439024426 None None 105584 AST_20190130 4306878.480602126 1261.3158006270367 0.025837904449727542 7.568904946386854e-06 257981.4431381139 75.57257690318146 30427 3592 398721 TKO_20210731 116889522.08417737 2800.0327747519336 1.5609054940490414 3.733218223135156e-05 21483220.305991746 513.8142561719742 303219 None 21322 FLM_20210220 0.0 0.0 0.5678944420977344 1.01580050596722e-05 43013848.19504137 769.3945480206089 15129 None 174277 DCR_20200927 145706549.01526698 13580.233112963637 12.088544317514197 0.0011266840848109967 2953073.00724254 275.2341614634786 40817 9925 242398 IOST_20200330 33260635.917160768 5624.793982342719 0.002761440377215177 4.678278283227354e-07 23498495.981781736 3980.9841395503204 191727 52255 127057 IDEX_20210429 71140724.82328942 1299.661253134237 0.12268999966042457 2.240682677631009e-06 8435000.541843293 154.04808584422034 51282 1977 4760670 SRM_20210219 199012018.19181666 3850.609581263187 3.9992337426322835 7.735394789175709e-05 126905954.5873617 2454.6393709518866 35737 None 81157 TNB_20200502 3891221.380063045 439.10900871112244 0.0011783899195155852 1.3342976572522693e-07 586472.9143327537 66.40666409958664 14930 1438 6404689 TNT_20200305 19548215.333027337 2233.0207110106953 0.045608470646195366 5.207143664859213e-06 1045539.5976545947 119.36981913996125 17732 2563 1226899 KAVA_20210617 288791755.95333123 7550.216233925274 4.124356511530899 0.00010783164766386092 132573748.76366106 3466.1518048191197 107112 None 51649 AAVE_20210725 3696291583.4040637 108192.9560159898 287.7232692874634 0.008421314543328591 276759570.10029674 8100.420235258843 258398 12099 14216 GXS_20190220 38298553.447330765 9783.404432726202 0.6383560996111055 0.00016303701105547104 6357246.444699167 1623.6493385403546 None None 374736 ZEN_20200625 62212833.015102714 6686.7960263119185 6.642234149622252 0.0007146093724026123 4558813.505750251 490.46311600292074 63088 5956 59868 STORJ_20210611 141820702.43001792 3848.116463437661 0.9819764577285647 2.674705416390435e-05 25458754.945555694 693.4450333457702 102842 13531 47967 JST_20210428 182536310.7033203 3313.424481083021 0.12760412837118298 2.3156300200878275e-06 400619220.02901715 7270.03040077866 43885 None 74075 NEO_20200914 1415275208.399093 137107.0583968866 20.255142707624568 0.0019616678839529333 667753945.1264287 64670.562308321794 322221 100429 111243 KMD_20200324 44328031.23950229 6880.825663098 0.3731216729853537 5.7861520509250095e-05 1538519.0138193963 238.58450451222274 99777 8395 161250 BNB_20190629 4834384845.61612 390262.4895882785 34.440175083617284 0.002781849548051227 309098476.01931185 24966.930444748865 995198 53664 829 ETH_20200907 39710363028.2121 3866952.0755057163 352.99300214607035 0.03437407563657819 21920007828.96099 2134546.584454094 486728 482248 12393 DASH_20210616 1763580439.6012552 43695.55807180431 173.18793338336917 0.004291011189826875 635003016.9415405 15733.226894268326 397275 41196 53288 POA_20200223 3719478.8413432254 385.32507673311625 0.01689405262275991 1.7501441628109168e-06 46640.385623234586 4.8317239488046 17457 None 534469 BLZ_20190810 6511818.065386326 548.9638966846736 0.031233088937441707 2.6329951012195047e-06 248868.7965781568 20.98000372454846 36516 None 1145955 SNM_20210610 96747819.67753801 2577.47276432 0.22108658752444194 5.89e-06 227494.87647900506 6.06072416 None 9710 None GXS_20210821 51620137.913606636 1050.5975339315498 0.7378407920125456 1.5008273762464845e-05 13005295.353517935 264.53814310660994 None 27009 713331 TROY_20200806 12439627.498219946 1061.9007861531788 0.006477632198792068 5.529540366523963e-07 4950408.743975619 422.5847368381136 9471 None 529032 VITE_20200418 5121079.543570115 723.3852803933487 0.010366368293019864 1.4725103912708928e-06 5326539.268305711 756.61834505474 None None 537072 OMG_20210603 908865482.8981622 24153.33831677721 6.475774649060244 0.00017219202165964366 301171578.2509819 8008.206853366633 324312 4963 157403 ZEN_20190906 29583813.003611527 2799.1113974538544 4.08225702945465 0.0003862344305561331 4260162.458763044 403.06659023789416 26961 1788 209860 IOTX_20210128 71679835.58121778 2369.5129488075077 0.011790010773786275 3.8773850364734146e-07 17997988.59362246 591.9004910045552 31662 2034 602191 BAT_20190524 434170420.60104626 55113.59095866679 0.3458210925934136 4.396783875304141e-05 50766116.89156149 6454.425393394119 101155 27077 50152 STPT_20200518 7104871.863706596 732.1673868839711 0.010145724302192129 1.0388432328664436e-06 800376.3868781809 81.95231493475954 11155 None 1404978 GO_20190821 8578896.241908815 798.4126724821115 0.011141742697972256 1.0369292637133906e-06 460866.0633218328 42.891450706160164 10183 686 906372 BTS_20200330 41480999.968588814 7018.697831808993 0.01527901000945528 2.58853786252457e-06 11779983.435384475 1995.740111665264 13262 7023 131725 TLM_20211104 327910735.48091775 5202.943456034524 0.2642642793137981 4.193435186824424e-06 142962442.16423193 2268.5765057712056 79996 None 14536 ENJ_20200605 179481619.21974444 18388.90443131708 0.19502953875609144 1.9949619883759887e-05 19273989.019324005 1971.541116446733 55762 15528 107410 OGN_20200317 5271718.1577561665 1044.474307386276 0.18406991099423897 3.655256784461312e-05 40172802.851041764 7977.507533900694 66603 2169 104622 HNT_20210212 279865183.2168101 5869.228187050931 4.072853590219631 8.530219974887581e-05 7639389.839847583 160.00004508953387 21103 3701 66241 ENJ_20190725 75591528.83800548 7689.816115980374 0.086251241418044 8.780060024306896e-06 3141767.4980811924 319.82040793906225 None 12711 21300 QTUM_20200927 246912554.52089888 22995.275866682503 2.399525371696638 0.0002235245362866108 166205879.25650373 15482.683586983669 186767 15076 77781 ONT_20201115 371851790.76089966 23107.210025107404 0.4777733022760162 2.970107527600746e-05 95406711.85386094 5931.017738138118 None 16681 220427 ZEC_20210131 903939620.5727068 26421.360887151972 84.05346395494922 0.00245923269549181 690111479.1986622 20191.252487692807 72326 16874 125065 ONT_20210128 433427555.67768055 14327.605512170649 0.5390686939906338 1.7791605846921076e-05 180172062.48658803 5946.459803959428 96412 16663 273814 XVG_20190411 160112603.48771545 30148.484142821562 0.010074362129951095 1.8982578345194335e-06 4846485.081666008 913.197099477177 305312 53209 432369 UTK_20210219 227659676.75882995 4404.90248056224 0.5076881527302929 9.81980185176998e-06 36411937.38871772 704.2866930680851 61852 3379 80432 NEAR_20201111 0.0 0.0 0.9413519288313482 6.162838836323438e-05 22576278.967333477 1478.0228789915388 32734 None None BCH_20210428 16596380053.387457 301233.274935288 885.6892006386042 0.016072587365672623 6799675909.977217 123393.60697022006 None 514171 311242 IRIS_20200801 45511190.3942671 4015.5846179483847 0.058407457492572416 5.152754747637555e-06 17462598.887582894 1540.56507827833 8492 None 1075049 BAT_20190531 429885754.1893471 51731.35250349356 0.33942278459192887 4.086160349682243e-05 67991120.43275885 8185.149408187836 101690 27259 48539 STPT_20210218 38434342.62074722 737.2467304283875 0.038225458689138805 7.329504868589345e-07 11289775.185104465 216.47473966875927 20295 None 1294175 MINA_20211202 1404712415.5222929 24575.348211133798 4.543484150853327 7.9455012006233e-05 48062022.676878944 840.4934323624842 None 11671 58560 IOST_20210826 1014834409.8062679 20704.170868053538 0.044615591572151655 9.104450175367958e-07 456988800.75850266 9325.510702863667 253339 53655 317836 ONT_20220115 544533153.5404404 12633.788330553802 0.6239387687385315 1.4466299464154654e-05 31962528.887384508 741.0655302786024 185550 21082 103230 BTCST_20210421 525174712.02615297 9295.864620150918 72.05456629411411 0.0012779273637355602 37339619.997105144 662.2386976977202 None None 111287 ASR_20210821 17062859.814038962 347.2855192063907 8.402012069340504 0.00017084094731326178 7273669.045617325 147.8979677654701 2005042 None 101452 PPT_20190603 35723441.1558885 4086.5089571487383 0.9858349890937115 0.0001127638209667308 1377630.8426899968 157.57902632990675 24012 None 688169 QLC_20200315 1733260.693685527 335.8787139497345 0.007200440951913934 1.3897510265429435e-06 343340.4804200033 66.26785613603492 24545 5670 940522 STX_20210107 481330898.35684747 13132.047694206702 0.523491250211067 1.4183151044392198e-05 11591195.877328165 314.04475594768206 47192 None 83877 NAV_20190614 15745591.405972583 1915.0098626914337 0.24095372144621036 2.9301182531916363e-05 938517.1807682501 114.12840215945356 48367 11266 1015910 WBTC_20210430 8678870520.6252 161907.58869513724 53683.354628887835 1.001662087446828 335107323.1682423 6252.669997317832 None None 239911 RDN_20190805 11749418.78121592 1073.0117648290416 0.23248415593160604 2.1227358174295594e-05 166496.8140355558 15.202272568852273 25637 4401 836731 ELF_20210703 92275321.00400425 2730.0205323908745 0.20039460175820015 5.918094498090013e-06 32129384.1668105 948.8515658423461 87884 33392 490467 LOOM_20201201 22147599.84308721 1127.1757264242908 0.026534022741857934 1.3507599088511664e-06 5828556.299156636 296.71264896305865 22642 None 381476 LTO_20210826 84697930.16995892 1727.9305762750387 0.2891620019925763 5.9010715586994405e-06 9528493.081528641 194.45265675715103 11750 4498 676717 CND_20210804 22231279.06145967 578.5347256033045 0.01151842628202699 2.998881431075708e-07 146169.29896393747 3.8055927582771045 36145 6257 167421 MINA_20211104 1258609605.6726863 19994.247492623294 4.454957643211477 7.0653074657658e-05 56369371.75575355 893.9859253506883 None 11097 69249 SOL_20201014 104349414.79795986 9133.905520949365 2.402275768916289 0.00021032001586987237 13892838.741344552 1216.322498176513 92213 2487 74012 DASH_20190414 1047385030.6188475 206464.72089953985 119.69885716581537 0.023589613682406634 241274817.59643468 47549.156885505094 320443 23897 95736 GO_20200719 12259906.233168636 1336.2364292817776 0.011776266009959194 1.2846650894890915e-06 869211.0792998503 94.82166316804533 11569 682 716439 PIVX_20211021 49652195.13822102 748.6770275818959 0.7365299091913603 1.1112017876813207e-05 708409.0209313729 10.687758374032228 68041 10258 297116 DCR_20200511 149837098.16167727 17114.41172391643 13.271810074510455 0.0015149427753257511 123815138.50856793 14133.17765296841 40518 9763 293468 DNT_20190414 8967525.145994965 1767.517391076999 0.015444767710096015 3.045519190897483e-06 459169.00822021766 90.54250945360081 60778 6422 1038838 ONT_20210304 837362998.8087295 16472.828638952535 1.0376809388390869 2.047992162746042e-05 560638446.3767474 11064.895781917648 103322 17139 202243 BZRX_20210916 100882290.29764257 2093.3215138449036 0.34051193115851797 7.066112285711968e-06 22323212.229960393 463.23875835424735 None None 234610 VET_20200330 178775410.83067265 30233.181877090647 0.0027767000410184473 4.704130354620684e-07 69895359.10079722 11841.281936689715 118487 61417 265359 VET_20200801 1112643723.480192 98171.7898951438 0.01725954401557045 1.5232183938523362e-06 238161781.9020832 21018.65533519493 129434 65587 91721 LTO_20210729 59703853.45426585 1493.080271280623 0.20771267478894023 5.1900494785204945e-06 33760078.81306862 843.5521790695609 11066 4348 391514 CTK_20210823 124532265.58389626 2524.298388902958 2.215867452389509 4.4974573312077716e-05 26487088.286241125 537.5978119397131 None None 88969 OMG_20210212 828849389.1217879 17389.125119401706 5.930401656972226 0.00012401102873964214 943984933.1037499 19739.732557792002 297080 42629 203205 WING_20201224 12716920.978348339 544.1993998259783 14.425631501973175 0.000618655191334458 4622581.090834768 198.24323037908334 7089 None 238835 DOT_20211125 40623954497.32558 710555.1910684659 38.338259845831686 0.000670261638560589 990884789.2227674 17323.479602880972 934128 35558 15201 PPT_20190103 56046400.39163431 14469.093295029794 1.5138624934869864 0.0003910034092531572 813241.6839162237 210.04567609413158 23479 None 444697 DOCK_20190730 4825781.622581548 508.43153410218724 0.008814401582969035 9.266664815794648e-07 1200782.9846311621 126.23946538340475 182 15217 260296 ENJ_20211104 2682568881.1280417 42611.159339679296 2.875948969437996 4.561090217298653e-05 637564247.8818808 10111.403522162234 337922 39032 22630 SC_20190513 111665612.68234622 16047.283712350982 0.0027471282653723085 3.9478533820481604e-07 3575999.570694345 513.9010863569978 109956 30933 237750 BLZ_20200914 29403610.15942374 2848.5534993262395 0.12101020388618941 1.1717605956945154e-05 5010230.671486878 485.14841622032947 41790 None 210138 AUTO_20210724 24586892.462696526 735.5622263070316 715.3610852793809 0.021386662854073785 2443549.057068563 73.05312090118184 71847 None 11033 XRP_20190410 14568207806.754398 2817404.930653243 0.34868546856946836 6.739533307086229e-05 1239241795.8362613 239525.6502324785 916725 199635 36994 OMG_20190305 164060435.26116946 44182.250094770316 1.169809759184893 0.0003150352933132987 48447322.51161793 13047.0927754324 288474 37043 None LTC_20210805 9551279815.204298 239933.6421020315 142.7558527011646 0.0035899948373194737 1576458971.9509695 39644.46615297178 189644 339725 80775 SOL_20210527 9637728345.153328 245989.22323774104 35.65025364482327 0.000910003677306548 1118628986.9193478 28553.9761309979 294840 19579 10872 HOT_20201201 113540351.07842974 5775.062341494036 0.0006419829093073786 3.2702007768797705e-08 9926358.371321183 505.6393929941719 26435 7331 422669 WABI_20200107 8246401.833911167 1063.0753178269445 0.13904384926954447 1.7925830907645767e-05 800893.0009463866 103.2528413554682 36711 7856 2468394 ZEC_20190220 323665178.5648243 82700.10959727326 54.815925350859835 0.014000215432482347 294216766.6963107 75144.18649747623 73437 15030 147645 BEAM_20201224 21134405.131497957 903.866915460654 0.27577412281825336 1.1827935640890637e-05 9878863.312440831 423.70385687605864 16336 1607 396725 BNT_20211207 827045149.3286911 16385.34579991082 3.5229246339388154 6.975097286007822e-05 88868313.61733331 1759.5185748589563 None 8640 39870 FIL_20201224 1002020727.4238386 42879.80395613546 22.393877730770093 0.0009603800506310612 153502569.82116878 6583.08523200919 42197 None 31616 NAS_20190923 29393807.149915036 2924.015193958733 0.6455732027784644 6.42407109736336e-05 8728730.292975774 868.59218676442 24105 5091 980448 GXS_20200721 33233864.571097832 3627.4434288995008 0.5112169288865805 5.5795489282738115e-05 12239111.584833447 1335.8071313270555 None None 592521 SXP_20201031 64993571.536551334 4785.391650839307 0.845227563223956 6.240835163250591e-05 43218512.05848023 3191.0886664549867 88990 None 69748 PAX_20210708 0.0 0.0 7.180940987979813 0.0002061 216.00885403001018 0.006199664485491 5 None None RVN_20200129 147842882.81082883 15818.924975419037 0.027414007889995984 2.9318550172151777e-06 11666526.986783894 1247.7039408805551 29490 7347 203317 BCPT_20190915 3979440.8600108265 384.30725093759173 0.03424996208321329 3.307992467493879e-06 1560381.5399784518 150.70762321208827 10900 3113 1000589 GAS_20210708 90358901.87286206 2659.3853091433098 6.482102513343322 0.0001907816178455051 8332832.422978097 245.2524080911648 406354 112260 98164 WTC_20210613 20496552.601960547 574.5145672304982 0.7023512931327074 1.9686776457194138e-05 4686720.746406647 131.36791311405509 65138 19799 502738 MITH_20200518 2375902.8257339634 245.6973988468167 0.0038304144120540765 3.9653762800194585e-07 6197125.607859949 641.5476824746785 96 2094 1339097 HC_20200605 59640623.702455066 6110.518359798386 1.3263798621341152 0.0001356891283170521 50445355.97438647 5160.577731325496 12672 844 1027994 NEBL_20210206 22206911.13788019 581.9182064517904 1.2731164021086199 3.3361218438690247e-05 1866024.7448950273 48.898010443771625 39196 5871 713465 WRX_20210324 124069428.64019503 2274.5478670919074 0.49767397539690883 9.12963121489722e-06 7894133.506177408 144.8147406443848 73921 None 3664 NAS_20200523 15184587.724223904 1658.795914189241 0.3337272027301957 3.64570530591042e-05 16124554.882644748 1761.4798796796683 23404 4926 956871 DCR_20190623 300270836.4224156 27987.12101950038 30.0937415073903 0.0028055477699589497 14809528.141951278 1380.6471569044454 40469 9493 389258 SNM_20201031 3812627.833267856 280.06495232 0.008844732306246526 6.5e-07 282328.47815285635 20.74833974 None 9548 None SUSD_20210218 262086851.11023346 5021.771848129808 1.0094039206192214 1.9359303810720185e-05 23080126.752670232 442.65251666624584 82943 4774 30058 DEGO_20211207 37053772.821997195 734.1110192413893 6.8354269493410325 0.000135397491638264 14450549.125094563 286.2393408391171 156964 None 193048 TRU_20210427 79694897.7013261 1478.9037944145505 0.3272112514103972 6.072339835369048e-06 4959088.753530193 92.03006331656717 None None 84906 NEO_20190712 1026673265.8608468 90726.36478512656 14.606797485459854 0.0012871389835744855 520452522.0475821 45861.84828631603 324172 98090 188893 MATIC_20210217 538986550.0040259 10959.550754408872 0.1088202124281014 2.2113622027921046e-06 158931927.46330234 3229.694643735912 101 4213 35829 WRX_20200523 24824325.041213527 2709.5679120203945 0.1328577576558751 1.4513657503939506e-05 9393765.314979753 1026.1944417814248 25974 None 27588 KMD_20200713 81543641.7213725 8787.201764884561 0.6773250570205887 7.289883719550406e-05 3398970.046134195 365.8228223764056 100184 8380 267955 DNT_20190819 4530118.65565472 439.364075217876 0.006614669340969322 6.40960517119059e-07 231149.24490392016 22.398328912324054 60369 6298 572325 VIBE_20190623 7629113.18137748 711.0810907333849 0.04068807948476276 3.7932255992281845e-06 2531472.2977017853 236.00144427990057 20519 None 1430855 CTXC_20211225 85250089.14920492 1675.6166936621955 0.46237930805911837 9.096085952647986e-06 149212061.0226167 2935.35136321443 50764 20858 309614 LTO_20200721 16444033.525591554 1794.8340895453543 0.07308250199790293 7.977355846498567e-06 5434558.324995338 593.2118419848711 16207 511 1277084 BLZ_20190205 7494302.832614826 2163.2995735702098 0.03700206697096786 1.0680987609835107e-05 121623.88401339744 35.1078548997378 34829 None 995474 GRS_20200422 10843930.813704934 1584.1057968086466 0.14479736285004494 2.1152324354879683e-05 8306665.524211642 1213.4563780528604 37420 106843 None KMD_20210620 107379552.165788 3012.098088973388 0.8465696823909437 2.377763275830579e-05 4631743.368677161 130.0919406186165 112334 9343 227108 NEO_20210217 2896628986.923645 58898.96955433215 41.00140296374964 0.0008331995568873752 1346864637.7414272 27369.966348361377 343196 104093 123772 ETC_20190321 506938760.28232104 125435.03056769367 4.646003399308665 0.0011495897020881531 271575165.3124175 67197.54303935701 226334 24248 601028 NXS_20210725 30973396.981555678 906.5662170125299 0.4543887987975758 1.3299591731061586e-05 286220.86598347896 8.377452684935049 25980 3960 406501 SCRT_20210519 192126789.860184 4507.444444269844 2.782804667464218 6.504786411939689e-05 9622940.248020547 224.93555404760167 81217 None 46847 RCN_20200425 35749783.81578401 4767.710097762135 0.07036590812981618 9.388049329921974e-06 839887.0476166384 112.05569918945525 None 1137 1284317 EGLD_20210813 2614645395.35346 58815.5832953471 133.88851225383468 0.0030112778740758743 149918184.89298835 3371.800205188568 304183 9954 43311 BAT_20200301 306099818.4662054 35693.66037899242 0.21238778862106625 2.483223041262613e-05 56178221.23044925 6568.317994284305 None 35181 21544 CVC_20210221 301085520.2741137 5388.692076592 0.4527219741684784 8.052219547808895e-06 71914958.15663813 1279.096365738236 90149 9159 153842 BRD_20211125 100815545.61608537 1763.3566685311225 1.1756780735701353 2.055612661890734e-05 213084551.3844586 3725.6738194417785 None None None LRC_20190329 50428208.47627044 12525.350374407399 0.06390932431412757 1.587338982537386e-05 4611750.638276514 1145.43717124854 28875 2465 678788 RVN_20210115 128174544.36426336 3281.8236187928446 0.016182097241863487 4.125034247924773e-07 12283378.895391962 313.1198500812696 35089 10862 220085 OXT_20211221 211374186.672223 4480.2905285428715 0.35699592314129874 7.574261024913251e-06 22351352.629014354 474.22104314908074 78783 4921 155800 SNGLS_20200403 3482305.5743125933 513.1558064946938 0.005489065115417384 8.051153047585476e-07 924060.2890417991 135.53766726824273 8994 2129 1305089 GXS_20210418 85564848.12484406 1419.3942694554742 1.2214070398487105 2.026543810504452e-05 18241474.70663945 302.6603454471052 None None 582398 POA_20200320 1907236.515432246 308.1704989099346 0.008757055134454248 1.418600927597972e-06 365906.82313881017 59.27515023593518 17400 None 758180 WAVES_20210704 1619644900.930841 46745.32928450611 16.21820691750811 0.00046771311313391725 84504487.57053696 2437.0053456855885 193695 59113 98898 XEM_20201228 2123909643.5107687 80128.23756967607 0.23473815809667287 8.92597890532781e-06 139642132.92189524 5309.9280613869905 217390 17874 152677 WTC_20211007 29946846.03404868 539.4932850460647 1.0268970151083108 1.8511289816922464e-05 16914369.9294603 304.90574928962405 66038 20214 353915 XVG_20190305 97202972.14515029 26179.899557783352 0.006166830332084103 1.660926565524865e-06 6549286.403121437 1763.9343368311809 304584 53387 436458 BRD_20190730 15404267.654673431 1618.565198065424 0.2570483905762268 2.7023743523460125e-05 576812.9403376704 60.64089693677988 168 None None LINK_20190805 913113410.295974 83420.29967626833 2.5053389504583072 0.00022879924690606736 98855390.36399442 9027.935666648884 29845 10148 107221 DNT_20211002 116340265.37231034 2416.0251196295353 0.15483420518451424 3.2148811559775987e-06 4068688.954501462 84.47972742052208 71236 10257 638945 ADA_20200621 2467040605.7434883 263705.82301748556 0.07935360676409624 8.477827932866835e-06 230329244.57024762 24607.472590108693 157213 81066 52095 ONE_20210324 1478686441.885979 27124.66816370144 0.1605849872666685 2.9458677464989174e-06 496392725.9982952 9106.127204075028 102804 9666 71714 LINK_20190227 157538058.50672168 41357.144964672414 0.4323104328554138 0.00011349083142711686 7498195.528367962 1968.4383721597087 9962 6390 313186 ILV_20210930 298588592.2732414 7186.892183713146 471.8115132622076 0.011350741279064967 244723086.85047132 5887.496099125711 93920 None 16262 TRB_20210207 60941570.407749146 1554.1077856379632 36.25325575424652 0.0009215710835477561 79741035.0148007 2027.04641315426 13621 None 357137 NAV_20210220 42189339.75881122 755.3088376488237 0.5950721480287418 1.0644136378967527e-05 10614965.746294132 189.87133482201946 49440 13749 541634 XMR_20190702 1516872140.7305908 142948.16679773055 88.91605117705846 0.008376481063656783 155822457.6927803 14679.507792770768 318987 159000 104259 XMR_20210617 4699483555.906101 122789.55939357757 262.05301383621224 0.0068470021703275225 205387990.2235737 5366.440912978679 425062 225498 31404 LRC_20190719 37780022.232765116 3520.1860173505856 0.039146581454095844 3.6689862550378066e-06 4739727.745392043 444.2277027652245 34828 2453 709028 DNT_20190221 7140283.777020699 1796.0948484321218 0.012288374720680454 3.091065736413474e-06 279311.76110024354 70.25917048747522 60105 6487 733347 BCH_20200626 4287750518.862353 463382.7592230548 232.46286932918517 0.025122563762232812 1757669586.204797 189953.63164788895 3306 301278 150898 STX_20210902 1585742508.4653575 32598.807256052063 1.5091535269899663 3.101728859024874e-05 42732171.0421157 878.2645752051343 73050 None 71399 OXT_20211216 219850595.03960046 4506.416937764073 0.37218585713446484 7.626617608799194e-06 15586527.163641602 319.3901118153161 78531 4914 155800 THETA_20190811 115420007.9898551 10190.34645433101 0.11542962128212629 1.019276316282936e-05 1611126.2328559107 142.2670189377517 None 4021 242693 KMD_20190902 74969018.14490996 7706.475814306121 0.6479570114553685 6.660155566338906e-05 1696416.826082675 174.36959192228363 98450 8432 213183 LOOM_20200701 16138938.178141555 1764.1619229592307 0.019571031609532323 2.139799151219398e-06 10409416.67880336 1138.113790748956 21807 None 624225 PNT_20210201 30221128.82660901 914.2482963071849 0.9830591846257649 2.9653113493520384e-05 165907731.99920198 5004.460446903555 None 139 785804 UMA_20210523 826193448.5948706 21984.36011999488 13.620435095735608 0.0003626813695396614 57718389.786282696 1536.9101286541868 38576 None 139456 AE_20190605 131657929.20518707 17184.389247387277 0.492579500101155 6.424996154216897e-05 48254236.53320895 6294.076064612357 982 6356 374739 TRX_20190224 1656037159.252389 402461.3178111156 0.025264442393349212 6.13993515941431e-06 146711255.37388545 35654.75861794848 388420 70107 75623 GO_20190325 18163847.301902443 4550.466883543123 0.026031004377337963 6.518754598744007e-06 1317049.0760249705 329.8189957120399 8447 635 816048 RCN_20200506 37749961.3439727 4209.482816292309 0.07449990913206116 8.279470749899024e-06 494938.6144267584 55.00449368170289 None 1135 1160341 CDT_20190201 4753223.567413337 1387.4645713306124 0.007076593425108665 2.0623776725212334e-06 90044.42799756816 26.242233611757733 19526 285 402914 XZC_20200325 32644442.345890656 4830.244062975185 3.35382550974096 0.0004963296819782696 16527292.311756877 2445.8594262674583 63626 4101 90239 LINK_20220112 12653058024.362785 295040.44180595584 26.78551731571388 0.0006261209951792411 2299438908.0783896 53750.20241387253 712815 75163 17316 ICX_20210304 1063922067.2614567 20929.759165536467 1.7887553277782278 3.530330716548042e-05 198930175.26436883 3926.1339842178654 123370 29691 148374 ZRX_20210729 595114662.4058791 14882.703229784172 0.706203914028207 1.764384999887373e-05 54543825.42584973 1362.7269051641213 None 19604 52898 DATA_20211204 0.0 0.0 0.16317864148635158 3.041459848367213e-06 2672119.018425362 49.80518669950387 None 4802 145430 GTO_20200903 7996908.685104391 700.8329507335711 0.012059481570854274 1.0568390524483214e-06 5306854.754967615 465.0690262071976 16597 None 1248781 XLM_20200113 975574714.7318193 119597.17022433392 0.04887289321612963 5.984365029948552e-06 145225768.31679854 17782.536538590557 279586 105828 56844 DENT_20210708 232515246.72434908 6843.239774655532 0.0024310033083458985 7.157004620208511e-08 17009747.458361402 500.77612288773895 105125 None 67197 IOST_20211207 780941697.3235022 15472.05214822051 0.034077118868392445 6.752035985128692e-07 99815955.21053097 1977.7520631200366 270104 53974 176563 MDA_20210506 30383517.4036428 530.7379183176821 1.5450854848808337 2.6951751732165506e-05 3123803.9529923555 54.49018156267293 None 381 1280564 CTXC_20201224 706285.3038735149 30.20892007094951 0.0700356450648051 3.003329444062971e-06 2693996.3886247347 115.52629619773309 16600 20068 688812 ACM_20210421 0.0 0.0 10.653771729820992 0.00018895050127645718 6779558.49670833 120.23919874315041 None None 44251 FUN_20191127 17419692.441025846 2431.1436453333154 0.002927200124798866 4.088272494102593e-07 180242.40081178478 25.173545302457487 35467 17254 389882 APPC_20191011 3815784.5547463046 445.7288180915285 0.03467533796365407 4.050490059308767e-06 255044.20921349793 29.792183573996127 25045 3294 849291 GAS_20190126 29753691.788354345 8343.679244474682 2.146374092941632 0.0006018969712244163 1019110.1343625187 285.78396712580366 315791 97917 129733 FET_20200718 32107948.25648594 3507.0172309173013 0.050748510156936814 5.544164112356934e-06 6155334.692553344 672.4568976796877 18367 454 533444 ANKR_20210722 414697033.0180555 12886.395238190331 0.05956400233234747 1.8443706499384242e-06 22329256.48543594 691.4146747039485 116216 None 5363 ONE_20210220 313164369.7032156 5606.053793293037 0.033178988360501725 5.93038349859703e-07 61807546.78230308 1104.7427110914823 83887 3233 144448 GTC_20211007 114155651.52789773 2056.274393748548 8.011482048159762 0.00014441660692761813 11005700.456521126 198.39099772527175 None 1263 27256 LOOM_20190618 55478876.131171905 5951.64779017002 0.08022146492415025 8.607181161180115e-06 7819038.389650817 838.9260902874181 20376 None 421831 MKR_20210727 2334379554.8568115 62374.18359363903 2584.6867545037885 0.06927221601161536 97270155.12097281 2606.938417308118 168561 29089 30327 FTM_20210219 533248314.8907286 10317.468175934997 0.2104714841372408 4.070979908750453e-06 205270898.45785046 3970.3891807412924 35465 3667 100563 THETA_20210611 8818364522.20327 239274.6130645483 8.816697749487185 0.00023921525073680353 379494498.04992855 10296.47086512989 None 19287 16282 LINK_20190826 755795907.0058844 74851.87763860839 2.0745273036183955 0.00020538654110412256 50429237.47696619 4992.697197981883 31838 10443 91625 RUNE_20220112 1859096173.9043598 43367.14419813642 6.199873715378229 0.00014490483561682512 79282993.96562372 1853.0198735019842 None 9225 69653 XVG_20200113 56675742.024350576 6947.96437845358 0.0035087603349429185 4.3039902625787055e-07 770560.8082342987 94.5201694837089 298492 52149 314927 GVT_20190930 4304240.159710375 534.0017965252438 0.9704108303855563 0.00012041680597765131 233098.6314797523 28.92485512491778 21197 5705 141613 IOST_20201224 95129731.54864803 4068.115001830493 0.005067526663679426 2.173459156499589e-07 39852404.68072648 1709.2672542340572 None 52143 676530 XMR_20190901 1158573405.529168 120698.50654295055 67.42255017565486 0.007023722859698205 318356331.11783534 33164.670196788094 320419 160658 87781 FET_20191026 13005107.825645892 1504.6549576580321 0.038282657318028115 4.421769257372064e-06 5348518.309570048 617.7709566313514 None 313 518889 DIA_20210420 151614227.6898687 2709.57769490196 3.602369231830552 6.440821054166738e-05 52884702.991592765 945.5469069130319 None 351 265172 LOOM_20190615 57096102.09858894 6564.419483846737 0.08248417652871351 9.492962989438017e-06 4843039.30571333 557.3771215322247 20332 None 406238 AAVE_20210809 4667254268.538027 106099.07766164302 360.3643930571074 0.008193803232352154 283442025.52720547 6444.777091451468 None 12345 14216 ENJ_20190730 72746863.78944252 7664.41634750208 0.08325059016973983 8.752214288836741e-06 2476929.7332105604 260.4019954603259 46983 12723 21300 WAVES_20200704 112577398.5489041 12415.10117480877 1.1253297440966632 0.0001241404362177887 26805137.38850407 2957.0012396302745 233 56866 124642 XLM_20190131 1634187336.7886078 472098.0839451789 0.08524388738268375 2.4631083159814665e-05 155166538.87315255 44835.12002975138 261354 98958 61289 ELF_20200506 32571753.595608108 3632.0629790290122 0.07113362965429292 7.90536274363606e-06 25182091.346058194 2798.5858123852163 82129 33414 552122 JUV_20210527 23702560.993306357 604.9739480798626 10.796528520583841 0.0002754160837107695 8057542.206615102 205.5453949525766 2479632 None 36746 OMG_20210617 705591632.7061102 18447.29617176414 5.037424104580186 0.00013161937453800226 177662850.7482814 4642.029896364271 324896 4985 165671 BAL_20201030 85153443.93607572 6325.4227056308855 10.35856550982274 0.0007703390909538001 19857739.62015823 1476.7675189082936 26987 None 56216 NEBL_20200310 8583714.842426084 1085.359994557365 0.5357538971043669 6.760149514647867e-05 192875.24223887778 24.3370226937377 39713 6025 856581 LTC_20200610 2979663913.548292 304881.7092307297 45.896784751228324 0.0046961974870803145 2165149059.5578847 221539.86663255145 132429 213886 144329 MFT_20190818 9188070.860114137 898.9538033979325 0.0010237404858065892 1.0016198366550784e-07 378228.09894073824 37.005547004512614 18808 2192 880747 TFUEL_20201015 0.0 0.0 0.009878106861087518 8.653770282324397e-07 1195902.2650639308 104.7676809687328 74657 4460 67184 LSK_20210809 545975313.1206418 12410.691365991603 3.769847144263418 8.571708612522118e-05 44321557.77839613 1007.7636147863094 196580 32612 284613 XEM_20210201 2101489003.848042 63577.54533453129 0.2337553831624075 7.068050788264898e-06 96115046.96413648 2906.226262122013 224745 18044 60114 VIBE_20191220 2319719.530814655 324.7463894957997 0.01229681121340198 1.720882511663486e-06 98472.8409289404 13.7808238971534 19738 None 1340353 HC_20191019 62329119.233086295 7831.703589166253 1.4023219832170255 0.0001762051898628567 25876681.31571782 3251.468349513168 12829 846 470518 NEBL_20190103 19282891.52513461 4979.283588274826 1.31670346410183 0.00033991944190248585 111561.21408374664 28.800581651980934 39994 6187 477970 PIVX_20210128 23868531.384217218 789.0195858476634 0.36811730556250566 1.2108754640841991e-05 439141.544818639 14.445007443167654 64900 8711 325207 NANO_20210610 962245973.9092525 25635.335231265075 7.165106324194737 0.0001913059433611059 78462065.0902551 2094.910905852985 None 99376 52991 ZEN_20190830 35646591.22170374 3753.157902374386 4.936794067111984 0.0005205210324801009 6331075.393203571 667.5299507292433 26909 1784 227019 TNB_20191020 7470480.563695703 940.0831037200958 0.0025865405100527444 3.2536792300253775e-07 347675.09143226774 43.73498962779732 15492 1464 2346363 NXS_20200704 11284717.029462434 1244.9570124127395 0.18909583474592495 2.0860054162319923e-05 164905.31627050202 18.191483877363936 23356 3530 474450 TNT_20200417 19610108.686928082 2761.971447266122 0.04568022672976548 6.443940691748366e-06 1387228.8309100016 195.69124218997428 17565 2564 822007 CTXC_20210318 2888838.873557096 49.08144295703372 0.2847214517471877 4.830513193327126e-06 22287427.360063262 378.12293821717265 None 20340 422109 CTXC_20210207 1424000.6705273539 36.32664071929747 0.14150869555547313 3.5972030423560324e-06 12029376.14642688 305.79116217355465 None 20100 607104 FOR_20210823 44829909.084336594 908.71282832335 0.07951149108875416 1.6134260061299524e-06 50215173.61400876 1018.9529324853941 30995 None 189593 DIA_20210105 35602744.35004167 1137.9661624884511 1.4081225139502525 4.5007647662186026e-05 19472495.28128942 622.396984666646 20886 190 308409 GXS_20190914 34793663.10103141 3360.1025663003375 0.53512668538069 5.169488859212228e-05 4728191.8730889205 456.75792069241805 None None 606832 ZRX_20210221 1143730224.8421733 20469.964795233955 1.5423683017187744 2.7432925498771713e-05 361318499.9305597 6426.495849841637 182275 18175 64913 REP_20201228 89608983.34746544 3380.6569540190767 15.772984076918195 0.0005997717809758975 9707408.002602074 369.12668889968865 136728 10449 135870 RCN_20210117 23353913.33164361 643.5413427499042 0.04601890479010875 1.2699621760416939e-06 547779.6378848176 15.116818274846434 None 1127 5522516 TUSD_20190224 204118353.02388105 49612.545843979715 1.002051798953574 0.00024352538544721828 93347419.66372845 22685.91940840967 8246 None 263322 QKC_20210707 109181122.35041668 3196.518705043499 0.016814239882062106 4.92257787453515e-07 10397337.643477743 304.3949925589977 75328 9532 268503 NCASH_20200105 2151120.2131934003 292.5987439660588 0.0007427768406334226 1.0101575565718992e-07 193304.77439165994 26.288956237063243 58525 58536 1010197 ELF_20190426 56264060.6841535 10813.511666165363 0.16805275045461843 3.22984220384223e-05 12411895.86845444 2385.4691456808255 36211 32432 961601 QSP_20211111 40788885.346277 629.25944573284 0.057737986232005406 8.888743058262581e-07 671347.6673477144 10.335374174359227 71121 8640 156056 ACM_20210819 18634557.083098616 413.637476372468 9.276607142591526 0.00020618260322318154 5925796.139396455 131.70721314488236 None None 38736 DNT_20210826 145067960.4772906 2959.5463623916357 0.19344371394136342 3.947495916240607e-06 13051876.587180723 266.3422267770856 None 10259 337612 CTK_20211021 115590636.85368638 1743.908098060689 2.021627123426318 3.061279338999841e-05 6706735.508056009 101.55775318324552 88662 None 124997 PERP_20210620 170771625.36280102 4799.947550104252 6.118228642788897 0.00017184290534562417 17565416.32642185 493.36047267463016 20839 None 196172 POWR_20190623 50318478.310363375 4687.053583423797 0.11959158812834031 1.1149159146492926e-05 2496779.526193252 232.76714296460682 84711 13193 724138 DCR_20210324 1972523249.0530157 36198.1671555454 154.83387835977805 0.0028403659401110186 24661429.749901105 452.404123943047 43521 10757 241220 RDN_20190603 20487304.73899595 2342.8859041152946 0.4068784467141225 4.652686442992387e-05 1124467.8038735914 128.58376129075234 25640 4438 856737 RLC_20211125 280818572.7679462 4910.498586598185 3.936546078053764 6.88284841239824e-05 15619562.371108267 273.1000169607808 49327 8393 334755 XLM_20210218 11149200120.25859 213829.91284816494 0.4969955558455929 9.531851186282552e-06 1764759459.5528564 33846.22729557837 394786 149896 26616 WABI_20210821 14406106.292189056 292.94434065627627 0.24377180146706912 4.957034760328151e-06 989907.1879378102 20.12949943584553 45380 7886 850798 LTO_20210519 111762322.05607146 2622.0313054568715 0.397999321850005 9.296351639644918e-06 13368836.067699136 312.26535894686083 9671 4124 180046 LEND_20200313 22503246.495672435 4675.990117191707 0.019816738530660186 4.0985477476585794e-06 4044056.4767516335 836.4019406397405 44132 5740 155774 GAS_20190729 29223191.241015438 3065.484877948922 2.097089879951816 0.00021998272747397016 984833.5081080043 103.3080953241427 324386 98193 191074 FUN_20190524 39475630.22987801 5011.036298403778 0.006553255624164795 8.33307149391153e-07 1558040.7340995248 198.11931003885485 36445 17678 458828 REN_20210114 377121837.70016336 10141.641317466057 0.43643325409276307 1.1676907478281198e-05 95630801.49579822 2558.6318427123438 32915 993 104896 OGN_20200530 10455593.123149915 1108.6936611965468 0.18870601041972984 2.002241742301386e-05 6157659.616333927 653.3508440607823 64491 2237 165846 ZEC_20201014 717793515.975889 62829.85075831985 70.0783463296492 0.006133143391565435 620727092.3175309 54325.02996438715 71769 16192 161943 SYS_20190930 13635169.347079987 1691.5716990868666 0.02417416162345423 3.0001925529489303e-06 2432522.6299402136 301.8940798404228 60251 4589 745278 ANKR_20201229 57600291.970985316 2124.1771125309756 0.008913287083986874 3.283854660353265e-07 10731815.300699975 395.38411987837185 30845 None 5391 RCN_20200907 24631059.465751223 2391.9486366001024 0.04758863565858556 4.6341821973050624e-06 497196.1661582574 48.41697161291153 None 1136 1085396 BCPT_20200417 1791511.907131368 252.32418717967002 0.015458414265578257 2.180661346213388e-06 60584.26757020614 8.5463986285566 10622 3171 1977022 ANT_20210324 225265639.20779943 4132.2186632092025 6.461122766614166 0.00011852672835930284 54887436.54854092 1006.8882014969878 80409 2849 129265 NKN_20201226 12036686.761205295 487.41176500235474 0.018503343997743255 7.503948945028474e-07 700173.7121912475 28.395233799766086 13720 1023 401461 AERGO_20210401 103603403.93290405 1761.4504091577455 0.39331082909211823 6.688040670306237e-06 5825374.971350138 99.05739137187287 None None 375003 IOTX_20200324 8511184.606076615 1322.7306291352409 0.001984047382205169 3.0618721392950475e-07 1761208.617909573 271.7977225256616 22544 1810 487690 UNFI_20210527 30408998.68594083 776.1461724488012 12.603216472499549 0.0003217080430935572 51735866.87883727 1320.6029212984395 18708 None 107472 DASH_20210813 1852721439.259893 41673.68723147183 180.35493608998948 0.0040563512088214945 632598953.657103 14227.742173276893 402382 41885 69115 SC_20190701 126458398.96632683 11631.008775649452 0.0030633205111317537 2.823406670799073e-07 3849525.529805115 354.80375039984284 109589 30858 228253 YFI_20210703 1144611032.6807458 33845.99255496556 32145.75055693154 0.9493349014336202 153188667.02613524 4523.999147397275 132102 6719 17976 DGB_20211204 695048504.9355339 12961.577732226626 0.04666283978578294 8.701896641673384e-07 39577357.41755861 738.0563960084795 235606 44007 105333 ZRX_20210106 336070680.8355767 9891.105959898614 0.447184872283328 1.31231279476258e-05 123676715.17698875 3629.4281358904695 163630 16317 98378 NBS_20201201 0.0 0.0 0.005957718881440287 3.0328789160793734e-07 1303356.0372875873 66.34957312182983 None None 790583 COCOS_20200412 5872640.270210868 853.4454761707369 0.00024589670007141805 3.573141769609612e-08 486018.10805683874 70.62362374851506 14726 217 63890 GRS_20190826 17225273.696354434 1706.2539634007844 0.23516944331277012 2.329477033552696e-05 1708775.2946160994 169.26318097442612 38512 107005 None SNGLS_20190221 7591384.2577211475 1912.2978149077073 0.012857703204647743 3.2389030654022877e-06 273140.3401321441 68.80506345948604 None 2181 1185727 VIBE_20210112 3378735.6153549426 95.43717312 0.018128830764500975 5.1e-07 110519.41625655504 3.10913059 18458 None 1637707 ZIL_20211104 1394936452.319901 22155.995157427657 0.11003817908094068 1.7448260277022217e-06 117751627.4433929 1867.1347170912381 None 38668 65935 QSP_20211028 36471947.26348517 623.140933853263 0.05107124523946815 8.725354908970564e-07 1015288.6456383542 17.345873840954628 70464 8614 173409 ICX_20200610 182269356.78208545 18646.0779738555 0.33273561819845393 3.4073348087487955e-05 28006285.967723284 2867.9464362207527 112667 27746 121711 AE_20191015 63958705.849517785 7662.777185654741 0.19475608338339231 2.3332163106904454e-05 34888196.89565511 4179.674833944815 25028 6353 361614 ETH_20210427 292829223558.3116 5432208.052335792 2532.3868028851084 0.046977729254956115 42791797037.03227 793820.8544004716 979177 819629 5558 WTC_20190227 28254800.93649981 7418.30411328181 1.066667001359604 0.0002799701246895507 3870511.539118285 1015.9005545667661 54437 20382 795747 SKY_20200313 3875564.0798036954 805.3104399487553 0.22302559130621927 4.669276000882182e-05 450437.42850849335 94.30382686200467 16240 3829 308227 SYS_20200411 10712382.46946274 1561.1383101195267 0.01835783679987784 2.6753266512756155e-06 235239.9269385041 34.28201551431683 58413 4508 925060 CELR_20190725 28143639.81193765 2864.7929995457343 0.009347623881649577 9.520390554329776e-07 7056106.657514873 718.6520555712958 17657 None 509628 GVT_20201014 5666112.70722 495.95823511334197 1.2719407659081872 0.00011131602292315552 223529.13664897878 19.5625261538374 20692 5485 165944 CDT_20211002 70736523.99496303 1469.5601366418932 0.10479826213751016 2.1757140423856305e-06 11632151.036017975 241.49479042893745 21987 340 572218 POWR_20200412 24195916.241757102 3515.631338712978 0.05633494530674661 8.186069439148471e-06 515463.2865113778 74.90232277208735 82281 12789 242937 BETA_20211120 200127338.30708033 3440.997837942077 1.255019109412893 2.151546224269284e-05 43520575.99720166 746.0964559225516 None None 51831 ZIL_20210725 792784308.554691 23203.844596538576 0.0645834601294399 1.8902761703358302e-06 54499656.69185295 1595.1360012241375 308839 35181 41251 RVN_20200610 131080788.3902404 13409.985189186998 0.020769921017013332 2.1259464094298713e-06 12549355.243601715 1284.5141153373252 31810 7986 203270 DLT_20210704 5291870.884586934 153.45413638487753 0.06475117177824068 1.8711631620038097e-06 142009.97413453014 4.103768703178 15209 2597 None ATOM_20210430 5270302376.279761 98343.13142066544 22.053458001744914 0.00041148905336034524 865905712.5790721 16156.682636359592 None 25833 44770 MATIC_20200313 25251993.31371892 5247.15716894663 0.009433733700523512 1.943127307089911e-06 61249765.88398664 12616.01147755886 32608 1579 153243 SUSD_20210823 296214717.01953757 6004.342163340977 1.0126513115227707 2.0523151403677268e-05 11540387.398950428 233.88615128498074 149244 7479 47795 DOCK_20190123 5024448.931300698 1406.7365311964759 0.009776869118613266 2.737310924627023e-06 371245.00425494876 103.94053490248776 103 15401 150082 BAL_20210212 508968316.0274473 10673.893595509993 47.31505458857532 0.0009909706175875493 332455971.6407829 6962.986778780664 45070 None 75993 LOOM_20210809 72883693.61783619 1656.7361295776857 0.08742930608189593 1.9879281765294144e-06 9835563.789384859 223.6366187174773 33945 None 309472 XEM_20191213 316961128.2335559 43977.46114835347 0.03517706316938889 4.886869670825116e-06 41152678.91126206 5717.014449905956 214198 18183 196816 LUN_20190801 3655272.4687669724 363.6347452827627 1.3523234738234515 0.00013430334572206348 209056.34157766923 20.76201934061895 None 2207 1249671 RVN_20200725 133326733.894383 13982.814270146913 0.019991075715079423 2.0954207526984394e-06 15602077.66166482 1635.3755937608043 32801 8483 210690 WIN_20190902 64070277.96938136 6587.283727405401 0.0003051069195137107 3.136361065133541e-08 9399538.974169226 966.2300716016653 None 1400 68914 LRC_20210324 651781912.2218252 11949.028656789882 0.5232291934490639 9.583980541468297e-06 84224823.72972858 1542.744712720043 66065 9618 104110 DLT_20190426 6645869.625282795 1279.4371512232442 0.08353904485757398 1.6072295599223062e-05 645947.3943543967 124.27551070654256 15059 2677 1770083 OGN_20200711 23504456.905467343 2531.3583351975276 0.31323570147507523 3.373878383298941e-05 10260768.950456241 1105.192875363345 64552 2313 159966 MATIC_20200721 81904623.98354553 8939.808653008009 0.02160111803213494 2.3578804845721062e-06 25180271.804914206 2748.564745431393 44837 2027 96762 BAL_20210210 420153944.8851523 9017.643333544267 38.88460077688245 0.0008347511060025207 166345924.91493335 3571.013769654181 43870 None 75993 VIB_20190329 6110980.905159009 1517.844462082123 0.03622364403232012 8.996997367620252e-06 15877290.73998812 3943.5000759492923 32968 1129 2263235 POLY_20200506 13881141.809969597 1547.880470317707 0.021826904724501897 2.432679775985609e-06 2035923.7830611973 226.91035101011613 34703 4988 371818 FUN_20190201 22430577.904931717 6537.089284901078 0.003818737993753075 1.112919663800515e-06 917253.3987885152 267.3211269978535 36471 17872 509158 OM_20210826 80413379.1214362 1640.5618904632308 0.22635267703960713 4.618429088204452e-06 32082340.55281213 654.5980227168335 49778 None 103723 ONG_20190314 0.0 0.0 0.732222048140909 0.0001894104194190778 195663282.09529567 50613.96938357601 68968 11192 256269 AXS_20210220 109646392.6713354 1962.8145313547977 1.9872669346340415 3.552023620614998e-05 19026082.882595655 340.0705493004322 None None 20130 NAS_20190520 53013058.03066669 6477.629472250928 1.164171851309448 0.0001423024852857116 5574840.12126793 681.4402903099002 24080 5178 501303 SAND_20210210 99365769.27064484 2132.9048609968645 0.14990740572048897 3.2172739105285665e-06 59151656.937802486 1269.4975389365793 68586 None 48574 XVG_20200330 39383931.83409388 6660.424763552951 0.0024302382189453006 4.1171740576294914e-07 2039024.2102683063 345.4401101896293 294982 52135 327824 MBL_20200324 4525004.188908352 703.2348509232257 0.0012745177584070119 1.9668937599493578e-07 6285498.029103025 970.0066374178118 None None 114904 XEM_20190725 599743839.5197866 61011.06715916093 0.06643219463200357 6.774728892724119e-06 61413394.98610967 6262.913692937672 217414 18431 192645 CTK_20210427 89515012.65925613 1661.5985273547121 2.416829927175034 4.4835654487494196e-05 14663560.68097906 272.0300393736261 None None 202878 BTS_20200207 86435967.33624563 8876.19936112724 0.03189288435462027 3.275113456320131e-06 26571762.35029493 2728.6819048395137 13384 7054 159593 REN_20191127 33457862.716359697 4667.829859767335 0.0406062984668597 5.673782245165931e-06 2771878.189200162 387.30526665664894 10157 873 310009 CND_20190130 15947378.926839208 4670.18564419237 0.009656028472704645 2.8286180023503093e-06 217466.64283465824 63.704250932112444 37041 6260 524271 DGB_20200901 361467832.4445901 31005.145433004574 0.026768819322738505 2.2961134067124988e-06 44338962.759567365 3803.2042281928234 164743 22954 135081 DASH_20190318 789385133.7355647 198226.46779047057 90.74640424295379 0.022788912769913884 1138895363.0967488 286007.88428139273 320228 23239 93159 ZIL_20201018 203364330.66546327 17902.88381617769 0.018054714420995932 1.5886686113239737e-06 14285916.697113018 1257.04494191831 96957 12202 92216 CMT_20201231 6388177.419887675 221.21995300005617 0.007975668565899612 2.766087018962639e-07 1253115.9483744123 43.46002757528762 280825 1629 1264048 LOOM_20210806 72086386.26471221 1758.6052614420155 0.08582319543946448 2.0975513257011857e-06 6419832.613427296 156.9031348707162 33931 None 309472 ZIL_20190719 101226830.41401847 9446.101896451399 0.010968461968236084 1.0280115071491776e-06 15887453.042013578 1489.0405413065134 65563 10609 174377 WTC_20190603 65858007.87572399 7533.6902150524265 2.2878783767675537 0.00026169684635421995 9024403.407815281 1032.2480145951731 56626 20182 895800 DOCK_20190205 4314235.272893257 1245.1713401904822 0.008393190941046487 2.422771909435115e-06 217114.9840732835 62.672240894428874 107 15382 158551 TUSD_20210613 1441872116.981703 40201.28203856551 1.00176054415832 2.8079162221682837e-05 72236674.58380294 2024.7805883568049 None None 935042 UTK_20210508 344836066.6919525 6017.850319402409 0.7727790178787066 1.3484284460262518e-05 128518400.0028778 2242.528101725209 73517 3857 78610 MATIC_20190616 48117850.638910025 5456.513100955636 0.022564048745833867 2.558071332573857e-06 41376359.44770077 4690.8105961691535 16238 644 215826 LEND_20200412 26358568.651384547 3830.577072457428 0.02242259102308259 3.2582420400184382e-06 550989.0631672554 80.06459767980552 44218 5724 93984 AXS_20211204 8462680757.409149 157614.6537840335 128.44782176015676 0.0023914933540698713 608666189.6182922 11332.392619605303 763349 None 439 MTL_20190729 17845341.869718123 1871.9593350458738 0.3787544215264995 3.9730977430561816e-05 1448947.6945197287 151.99323064536202 33337 None 788453 WAN_20190922 27113565.600555696 2713.9116593863823 0.2552827268092614 2.55629599255532e-05 3755225.9647947424 376.0328481651202 107915 16812 408901 GTO_20201101 6979243.217375615 506.33697787736014 0.010531852656874998 7.640751697054284e-07 3828116.3226151266 277.72593523181393 16450 None 839827 XLM_20190816 1378211439.2944748 133925.31541927814 0.07029099743279729 6.822757664192363e-06 159540958.02991185 15485.756838090936 275825 103363 64328 MDT_20210203 15811423.334074968 443.98277328946085 0.025802721175767315 7.257977456332802e-07 8061766.402308452 226.7672405851819 13766 76 1222000 ADX_20200109 7235184.781193618 899.0044187917786 0.0785336981231905 9.787002503974665e-06 713638.2636523723 88.9348093902566 52847 3796 215499 CND_20210724 19258951.517329007 578.5297838196124 0.009982532085911747 2.998705367962741e-07 206389.37490011947 6.1998390896926034 36100 6251 140212 POA_20190708 7002337.970747825 612.308374161194 0.03180667511786031 2.781201891842034e-06 299575.34634728683 26.195115236752734 17743 None 637225 BNB_20190704 4572105241.518767 381614.2104992557 32.589470734468485 0.0027154970644183776 279468185.52655786 23286.510038134726 999997 53908 760 BADGER_20210418 372036436.00805575 6171.534185720672 46.31890365989565 0.0007705666780630644 35686214.984767765 593.6800304119892 31071 None None SUSHI_20210814 2420681363.4158673 50804.153239446205 12.548650115460232 0.00026301612129180324 445060945.52094597 9328.350264955057 122476 None 5495 BRD_20190725 15693639.476524942 1596.4910833274735 0.2614554487414359 2.659748194339899e-05 281272.58782579255 28.6134506352095 167 None None EOS_20210806 4030818967.730384 98369.35581023239 4.185704999245646 0.00010230021179244696 1189150927.136342 29063.297991893 None 91909 58453 XRP_20190915 11242609462.210733 1086080.6732063734 0.2609641208796706 2.52185222118009e-05 1325622918.92724 128102.86300182041 938302 205393 31314 BQX_20210821 881910090.7411903 17932.802594688295 3.964951493739599 8.0650294910675e-05 19131639.002665423 389.15288878711175 102218 6699 34355 BCD_20210221 217083310.95168257 3885.2586355553967 1.1681911319643135 2.083886939546892e-05 9547751.919455912 170.3183236251082 28470 None 1218964 POE_20191026 5662131.754088316 653.962676205546 0.0022492629227861744 2.597970553898589e-07 214392.46033294813 24.763014287050527 None 10677 871423 SC_20210610 811298325.4043145 21613.916927923667 0.01684447721267437 4.497419099998468e-07 89310749.90298189 2384.5671633348657 137703 46629 44919 RSR_20210723 284450868.1933794 8787.059971699471 0.0215683827135005 6.662122370124407e-07 37467797.37207817 1157.319277701645 76570 None 123422 CHR_20220112 424122794.33179367 9893.514191294156 0.7467255105890005 1.7453790939152488e-05 89687068.10425317 2096.324974089113 139418 1943 30769 BLZ_20190520 12838816.735474842 1569.434024844864 0.062291020113228214 7.623407768158653e-06 2204051.1358662914 269.7400126059873 36530 None 862077 ICX_20210731 647557574.5301161 15520.965272335894 0.9913101585049231 2.373177420310746e-05 78584038.71212639 1881.28674631672 142478 32627 233829 ZRX_20200801 272502285.01253307 24043.668701532242 0.38157299228071867 3.368951354575991e-05 31631967.249271635 2792.8223712944896 155710 16127 50937 REQ_20190522 17142867.66346772 2158.489857283653 0.023486775492067683 2.9572629081167044e-06 776393.833020576 97.75716914643071 41953 30101 374528 KMD_20210702 71900491.01596732 2140.2035667306964 0.5683255512349744 1.6895493149350793e-05 4036170.178784278 119.98947690646638 113372 9388 230876 WTC_20210603 26150553.91949765 694.957821453017 0.8964711910390035 2.3808293471246192e-05 7997234.5362056075 212.38887395332327 64637 19786 502738 ALICE_20210428 182497496.858539 3312.7199267781407 10.360873763194624 0.00018809851531785904 108378594.67714858 1967.5804586506215 None None 73832 TRX_20200927 1950485517.7860825 181649.6322974703 0.027212957674121317 2.5363191387441226e-06 1113904299.0548782 103818.8066969633 535494 75302 35159 ARPA_20200305 0.0 0.0 0.011308213909817146 1.2911234230512827e-06 2252253.676208567 257.15267673542456 None None 2543726 APPC_20191022 3960712.574175497 482.26824339838333 0.03599234839283549 4.382536301263621e-06 345953.3605116574 42.12431888129531 24992 3280 831430 ETH_20190908 19145726416.543644 1828836.4076949414 177.85258889110943 0.016988819472830485 7289035615.537996 696262.6238700596 447907 445372 24829 REP_20190224 154459065.91862747 37542.47168557958 14.04573168420734 0.003413488430295481 2683802.4260299997 652.235763605885 122380 9780 236100 BADGER_20210710 82784901.95773564 2440.8347596724007 9.094078742799777 0.0002675912262554877 3868431.592041228 113.8277315026952 35796 None None XTZ_20210324 3149429998.7377753 57772.385815353315 4.1320026308022015 7.579994547258282e-05 340822897.66080457 6252.260554219707 96167 39875 107402 OMG_20190201 151992710.7476306 44307.40690582086 1.084467250537882 0.0003160533479504617 31886379.67012589 9292.855126574239 287755 37161 None STORJ_20201106 40784976.140435554 2624.7375716574893 0.28227948235759226 1.8158750275197562e-05 12364508.652065584 795.3961903754345 82300 8447 86612 MFT_20200127 6986658.679229699 813.9979632293473 0.0007658759819923035 8.916393209672249e-08 1341151.353849585 156.13797933054067 18498 2443 906375 RDN_20200315 3122194.0544103314 603.7401137077771 0.06156771657438909 1.1883132975129629e-05 669477.6418854678 129.215314210801 25162 4328 1576973 ROSE_20210111 67329102.3880465 1751.513366253843 0.04484118496281805 1.1658615502820412e-06 8452583.977981415 219.76543814865425 None 609 219756 MDA_20200418 6584891.753653457 935.3634039008331 0.33546942412904174 4.7652388861805776e-05 279999.04372512846 39.77299375990583 None 374 2010247 NCASH_20200412 600632.5330214163 87.28733492298386 0.0002070393085980378 3.008502356021378e-08 1420413.7783584886 206.4012977851125 57463 58247 716326 MTL_20190324 14856881.192041913 3712.8551600392652 0.3550964081966481 8.86583282291949e-05 1680895.3316790392 419.6758023877088 32866 None 615522 QSP_20190729 0.0 0.0 0.01571954743301208 1.6489655269567647e-06 98265.19016012481 10.307924688315826 56767 8581 708512 REN_20190530 25257047.202310663 2923.202809284545 0.032795155985229966 3.7922650325658026e-06 737024.6801302157 85.22578529141929 6366 784 1359818 BQX_20190104 10191865.619814854 2702.606488448763 0.11260392633715448 2.9864628633108968e-05 224454.07691199443 59.52934209499416 60889 5826 311966 DUSK_20210217 66296694.271898754 1348.0521651550957 0.22081662418315054 4.487268730424473e-06 25501825.27133992 518.228840478597 21906 13395 665690 IOTX_20210519 389943969.9045893 9148.168095063349 0.041112940862069486 9.595939292788748e-07 27880479.041167174 650.7425125107974 51613 2988 196383 VIB_20191024 3904118.6644297764 523.285398082199 0.02139068795274795 2.8663133543261004e-06 471611.01798913727 63.19502027684594 32080 1123 None VIBE_20190411 9466382.360173952 1782.7064439173178 0.0471142325599621 8.876736917669855e-06 607075.5500061775 114.37838745852858 20695 None 1224385 EOS_20200417 2484719065.9364676 349958.44358419604 2.645549601557661 0.0003731979009291491 3464455813.31122 488717.97248793923 1490 70944 96512 DUSK_20200721 16625051.465539083 1814.5098788391442 0.05852828585802918 6.38905869602636e-06 1670867.266128044 182.39503993771393 17430 13332 827596 HC_20190621 144610510.5092449 15117.823023312776 3.278418888031626 0.00034302326110747085 96536281.46720006 10100.658645225636 12779 815 640655 PAX_20210727 0.0 0.0 6.771536337923901 0.000176175 79.28114744441302 0.0020626569 5 None None THETA_20200403 77376498.85167834 11409.6035771253 0.07736412537494779 1.134852902310178e-05 2934100.0068327393 430.4025790099219 None 4025 349819 RENBTC_20211021 1105426809.6451814 16677.499299478466 63190.481204455304 0.9568713848912072 2628015.4155021114 39.79511948976339 None 6148 86593 LSK_20201030 149621756.9936993 11107.690313880794 1.0494502510863566 7.804483658055619e-05 2906693.3000412425 216.16308477384814 177372 31046 197564 MFT_20190316 21289691.77491077 5425.148124999375 0.0032067706608849044 8.171656979414236e-07 2889818.849413681 736.3984165783063 16393 1877 633572 LSK_20190325 200103618.27537113 50110.70503528021 1.527220443254852 0.00038272621722163907 4485497.250979138 1124.0796329091781 183559 30460 187764 JST_20210805 77283367.16261892 1938.518880705688 0.05373324500468143 1.350986754314081e-06 105606172.04385243 2655.2005112036045 None None 152000 TLM_20210703 91854214.02149078 2712.9275202151357 0.07402200136418 2.1860329328608734e-06 8288118.7431867 244.76642336281296 50377 None 9614 MANA_20200321 32987713.97616651 5336.033019928681 0.024885780879677293 4.0135170867194445e-06 26712843.93342287 4308.181289549827 48028 6789 47233 KMD_20210519 280518660.4656772 6553.985495673725 2.2391871096635594 5.233838546249312e-05 19608775.08269828 458.33223328969353 110947 9192 197096 LEND_20190906 4014349.6975010443 379.8208500136003 0.0035576919156665937 3.3661381526780865e-07 2085282.492177783 197.3006410454202 41645 5820 754376 GVT_20210220 24016928.37103155 430.03031723268975 5.413671010004861 9.688769668424612e-05 2385369.568360567 42.690618397763 22251 5503 211952 ZEC_20210422 2649734308.5100126 48903.05295287529 240.12921687712102 0.0044339189376595076 2059981690.0332944 38036.986691812715 74707 18866 91916 VIA_20200322 2533864.3497317517 410.9539984712865 0.109418339732947 1.7767337168923713e-05 832544.4367005092 135.18846795767598 39446 2177 2066197 AAVE_20210107 1396859729.5140812 38046.169638127794 115.08723787913432 0.003116833282307694 343045310.89294153 9290.47444386153 91306 1955 24520 SNGLS_20200224 5236531.464387633 526.3422735645137 0.009354624191414489 9.402663191724926e-07 30467.561567689376 3.062402228376515 7082 2143 1180132 LINK_20200707 2040554850.9765499 218596.49962697842 5.370125532381704 0.0005748498020816463 585202119.0845469 62643.474590120735 61802 16842 82512 THETA_20210418 13471456851.44328 223560.4460235861 13.428248448959708 0.0002228018370508493 783208186.633007 12995.009992432557 141467 13936 21480 LUNA_20210110 396469115.3601789 9801.471341056034 0.8197493591403104 2.0283291498727095e-05 22549655.54023506 557.9525392958406 17834 None 167354 CHR_20210805 181989904.4150259 4571.691065168922 0.32183268868071857 8.093382295596764e-06 58148063.55235473 1462.2955486810324 76443 None 86794 SOL_20210422 8840620046.282288 163161.00405655435 32.31362189326206 0.0005974264172392989 916541281.5816183 16945.360563911236 162622 8806 23689 PPT_20210201 50517345.959991045 1528.4882592030006 1.386971712275782 4.183677874091869e-05 4957693.389044959 149.54444964307072 23577 None 736934 DGD_20190601 73467560.79798417 8564.733305230578 36.7402602299794 0.004283994136430443 5866325.470785839 684.0262905577459 17000 3364 471901 ETH_20190325 14349083379.676003 3593351.739277802 136.05748300079634 0.03409643056022313 4828779391.134742 1210107.2103435765 440595 433385 32450 SNT_20190419 96042452.39727911 18214.37968153495 0.027221793647491985 5.16097354868808e-06 26303250.86447282 4986.827235337527 111277 5761 304200 ETH_20200316 13756072458.523424 2548703.052627197 124.60342553062202 0.02307209116555815 10971643911.795376 2031555.452757385 452881 454862 19216 TLM_20210610 192240219.64150965 5121.654088545015 0.1532557407615798 4.091877040665429e-06 21619104.532565184 577.2228631498443 48543 None 13783 FIRO_20210828 94873449.72811425 1934.3020682162114 7.753720991724848 0.0001580632449741346 6233054.457166988 127.06374328555012 74331 1160 376180 CND_20210508 65227094.81729551 1139.4902579904426 0.03384372099543554 5.905843338745702e-07 777553.166661347 13.568564728644567 35819 6201 107330 ALGO_20200414 123791267.76405734 18058.667054951406 0.17521011053426278 2.556073293414811e-05 86690313.80911109 12646.918334195456 16687 841 317295 IDEX_20210125 22188070.2770482 689.8259008491137 0.039380680385817324 1.2205689503073622e-06 1599277.3952441956 49.568171815195704 44714 1939 441014 ONE_20210702 654259621.1578176 19478.32478935521 0.06352057129262259 1.8883743213467345e-06 20462965.24537401 608.3342344319074 189735 25452 23324 CTSI_20210508 304232950.6385962 5309.271668525094 0.9765632962443399 1.704006834305945e-05 124527769.23988463 2172.8870075467667 35300 1803 173640 CHR_20200621 10367789.801304644 1108.2292427859645 0.03084549784766769 3.296749859321992e-06 2768191.017097024 295.86273469342166 14648 None 439287 TVK_20210408 127000935.49914747 2256.097255140057 0.585014269168891 1.0410798464639057e-05 20875989.07966677 371.504981181361 42287 None 82987 MITH_20211007 29282264.442286983 527.4735803827635 0.0472831193400773 8.523459632999168e-07 10454062.513349172 188.44945316003304 33306 2759 745216 XVG_20220105 286184343.22563195 6179.169252263567 0.0172603118372761 3.758169705268029e-07 7875718.478765907 171.4817604291246 336766 55619 188216 AE_20201228 35249080.16299721 1331.4559047658415 0.0942216437691099 3.5828022658422102e-06 10071507.183684157 382.9716540137429 25606 6351 544843 NPXS_20190601 215654265.54838392 25155.074046584952 0.0010077290776943557 1.1747947938697533e-07 33785506.67169418 3938.6615137641625 61225 4454 180599 XMR_20211216 3390507625.941121 69379.02670487038 187.87411156941621 0.003844416365266326 129236626.23272997 2644.533601412885 460298 245519 29395 HC_20190126 48024716.17560992 13468.341381567298 1.0984276269637219 0.00030802657558756983 8566788.733213998 2402.341795215276 12220 783 349692 ZIL_20210131 848724207.4646726 24810.00881567019 0.07282345967750108 2.131555621022726e-06 258588761.67410976 7568.939060581979 130834 15723 35643 BCH_20210805 10352660170.59497 259665.1909199271 548.6976540632587 0.013795616897845815 3274330766.4030814 82324.77852897659 None 598344 320566 MTH_20200229 3414670.6997149494 390.1239636622913 0.009696719156672338 1.1128910542459035e-06 1160207.7692134273 133.15687776063427 19255 1936 1456443 DNT_20190302 7388798.824762241 1934.235941409372 0.012730236931025114 3.329530344753329e-06 464271.44357291074 121.42789391540114 60160 6483 764547 SNGLS_20190515 8195928.035136057 1025.3526845182753 0.013901519160762293 1.7391514334024083e-06 457551.8061926646 57.24208055202208 0 2180 None ZIL_20190726 105656443.38463219 10668.211522313115 0.011095886202708675 1.1220832054831063e-06 13754003.765024833 1390.8881499810543 65650 10612 174377 MITH_20210422 61823530.165084854 1141.00472628024 0.09954013776179264 1.8405488923214328e-06 55937943.571231 1034.3216555029396 30511 2618 258183 BZRX_20210324 71750988.56295733 1316.1828634240142 0.5140041158655896 9.429201149305829e-06 29816673.325488076 546.9750177305735 20428 None 167690 SNM_20211207 15383677.570435207 304.584 0.3464792245593515 6.86e-06 702551.7411397863 13.90993919 None 9789 None SOL_20211125 62457339767.62576 1092436.3490265608 205.54865275061945 0.003593574078494094 2339653646.046749 40903.78887225498 1003612 98367 3672 RDN_20191113 7865047.350917173 893.9936269749148 0.1552541521578633 1.7641565731489642e-05 1081626.6381711387 122.90548863919616 25386 4368 2354098 PPT_20210819 90722844.3290184 2012.7001051388547 2.514106162982186 5.5813904515359635e-05 3189661.6008312576 70.81143614632889 24446 None 917945 BCH_20200621 4287699086.200162 458265.2107828172 232.6240669764266 0.024852642410226753 1776997747.6863115 189847.46574610268 3285 300865 150898 REP_20190325 158009095.90129608 39569.23550830014 14.356789750494944 0.0035978563912769787 3980320.7653878047 997.4808264214702 123497 9816 256149 BAT_20210819 1083342372.2509835 24034.11536154295 0.7252166883482236 1.610002616134547e-05 118211513.81900749 2624.3307629793794 210048 77564 26415 HBAR_20200322 127039549.40593264 20617.80905119748 0.036950559882604796 5.999887127103048e-06 15076377.992096169 2448.043183256384 None 6375 115268 BTS_20210909 132323082.93895766 2855.0463472660635 0.048688480295135686 1.051195120381441e-06 18535030.178607903 400.1754246953146 6834 7255 297381 LSK_20190220 160938970.1877788 41108.158854877154 1.2392577800020057 0.0003165399009514314 4607300.226658553 1176.8288897872771 182911 30482 176926 AION_20191220 20038957.288136475 2805.330102254856 0.05392320874962646 7.54891577143369e-06 3232875.828857435 452.58262439209375 1191 72549 394577 KMD_20190520 129927242.7635737 15876.956911098034 1.144237474863051 0.00013983830254514973 5204485.739435699 636.0449359607211 96949 8369 351516 COTI_20210603 168256358.60007086 4473.96707182215 0.25122629491363085 6.680152716790054e-06 40534024.162214644 1077.8070493088358 116661 5101 67537 BTS_20211111 130052235.41662616 2006.323837287824 0.04839801959298426 7.450858416886169e-07 11821207.495855337 181.98708151483817 7362 7469 219796 LEND_20200707 232876151.81341672 24924.76676931186 0.18535753594586954 1.9838842734256164e-05 34232392.03108198 3663.8976584171246 48399 5754 67758 ADX_20200325 5202088.68942795 769.6032151857481 0.05635089030636364 8.339318603104678e-06 139725.1679337031 20.677804484304122 52247 3766 39887 SSV_20211125 0.0 0.0 12.087585899182644 0.00021134865236599609 988009.9189636604 17.2751256238292 None None 601967 TCT_20201015 4467202.351107862 391.40780500176646 0.007698841034200139 6.739350443550961e-07 640335.0755183386 56.053144311533394 None None 497621 ANKR_20201129 55344243.298413716 3126.4871314970515 0.009526111726487754 5.377638643715224e-07 14085239.98639182 795.1337652928263 None None 5272 CTSI_20211011 262260613.5190869 4793.2123449735245 0.6104351578105229 1.1152825949575541e-05 19188095.365281526 350.5720225558623 None 4877 210315 FIL_20210120 1016126534.6996398 28048.12311636666 22.677761060382128 0.0006292057277366064 179386491.65251583 4977.167178267994 45608 None 34991 LRC_20210117 486412123.4043592 13411.22287993991 0.3898839990746704 1.0773407651944082e-05 127208596.06228074 3515.0713172713904 50217 7763 177149 XZC_20200315 27479328.838980548 5313.690574237172 2.84266429551766 0.0005486602347266722 18927128.113214456 3653.109011033246 63713 4092 107900 GVT_20210823 22775784.8081888 461.3353532741621 5.109315443831124 0.00010369239358251776 2247345.9547388037 45.609374448824404 25865 5705 751259 CELR_20200320 6020170.080649902 973.4744342049535 0.0016030460298055464 2.593760571038774e-07 6161190.790816672 996.8930053621717 19269 None 1309255 COTI_20201231 25910357.600536823 897.3344513694403 0.04558982735486899 1.5811267557207841e-06 7141761.255923765 247.68748775498813 34547 1256 235871 COTI_20210506 243087031.6551255 4244.888488438354 0.3634581027180156 6.3399939002438936e-06 63715835.1274871 1111.429358807333 94631 4248 74171 FUN_20201115 21338074.760391608 1325.6901358315142 0.003565723777592193 2.2166544222375186e-07 489583.7046820706 30.435276306561292 33866 16568 423341 BQX_20190405 23479855.143548317 4791.052365725012 0.19850679927070192 4.054052224353287e-05 2572368.596656231 525.3480822543244 61149 5807 421392 GO_20200711 12192333.979948048 1313.077190840112 0.012393466803198167 1.3349068942184597e-06 1434114.2584624945 154.4692087467051 11537 681 901828 DLT_20200312 3203346.4443840017 403.8786420544078 0.0390739138553058 4.924847272791216e-06 102258.79381980475 12.888622924422 None 2589 None FTM_20210624 627558185.8145531 18615.263348705084 0.24655032088246284 7.318458513974527e-06 98459204.07246715 2922.6066214159077 98758 8708 46901 SC_20210723 523462825.6053914 16185.279369362786 0.010858453918298745 3.3540603156221495e-07 43067478.85215985 1330.308373538297 138831 47469 61155 AAVE_20210731 4156695773.266375 99571.66555473639 321.44822016380436 0.007695408458663842 339370158.45314926 8124.4562083673445 260793 12186 14216 SUSD_20210318 239063057.16010615 4064.0794513206956 1.0087584696470688 1.7118124123766384e-05 28539285.352658145 484.29732564358414 97441 5386 22945 TRX_20210430 8707261812.719328 162480.9244105966 0.12149483805398033 2.2666103650710252e-06 2200076292.3696833 41044.67159350877 833016 101541 21813 SKL_20210112 55384475.199464306 1558.794095989693 0.09798027025772126 2.7563795194826698e-06 39456574.24462527 1109.9917653907671 None 91 244845 ELF_20191118 38403342.10257242 4514.828460714142 0.08328286065937163 9.786939321949142e-06 12471161.935844662 1465.5416993842057 84389 33522 765119 ETH_20200322 14575207631.098148 2364511.893531856 131.94321845316688 0.021444567991287425 12633534610.010733 2053312.7438514098 452875 455301 19216 HIVE_20210104 43858046.21243753 1312.1179957874008 0.11819797750339359 3.556792832181598e-06 3268874.8350920756 98.36640887040969 None 97 154138 VIB_20190430 6193254.47702661 1189.7273907445092 0.036385657542672714 6.988026218457546e-06 1323788.5524852949 254.23943765787706 33124 1127 2174259 AE_20190520 146891106.45234102 17956.16412036016 0.5527443889493836 6.76412497753188e-05 43719357.92890574 5350.089605263238 989 6353 408857 REN_20190623 46988094.755922936 4379.5844780602065 0.06058270553794731 5.6479409307854865e-06 917860.3695249152 85.56932384834703 6440 779 1312648 POND_20211007 73496505.63063034 1324.0416442183414 0.09086514446219603 1.63781323219408e-06 111480265.35247898 2009.393753825598 23538 701 376291 ZEC_20211011 1406054330.3164113 25692.975226816085 120.04402022475722 0.0021932387850268804 168829742.6089599 3084.5679681736524 79665 20889 150261 GRT_20210131 778687982.9047999 22790.137754120457 0.6356639511411759 1.8604202620148843e-05 506469098.9933986 14823.010997558924 48336 3967 34817 LINK_20200807 3890112622.654288 330453.74081604066 10.162394056796618 0.000863125642730355 798423865.6323115 67812.77210307015 71734 19254 63304 ETH_20190701 31176379854.59102 2867446.9283632548 292.83887601724456 0.02699042535744736 14452227264.203045 1332035.4405416022 444973 441115 35893 BEAM_20210106 25772083.48468172 757.3696393601305 0.3268520743247563 9.588813597283e-06 7630343.205864349 223.85031159885256 16199 1616 333744 ILV_20220115 529230780.92249167 12280.584869933511 834.3970018087391 0.01934586774366051 15546451.791178137 360.45143928293567 253237 None 8971 NMR_20210814 457146184.37912667 9583.841447476738 42.79421753416818 0.0008969545732801543 13500382.28618031 282.9641556818148 29745 3567 685085 ZIL_20190305 134224286.18835375 36130.66977801577 0.01617177417231565 4.353139427574611e-06 9337608.01321142 2513.509598169639 56480 9994 179574 VET_20201101 640220869.3281752 46397.07101454402 0.009875445935408383 7.156912628931779e-07 72879231.64780839 5281.688510863939 137301 67985 103170 LSK_20210421 780134596.749918 13808.786734807842 5.425251695785134 9.625957243719452e-05 64886632.340301104 1151.2755234599151 193970 32030 143089 DOGE_20200605 325652126.62886024 33315.13445892903 0.002608096329469731 2.668156378943266e-07 123499973.3875561 12634.396899762047 140598 156626 103614 AUDIO_20201030 6457209.015579654 479.65853915214336 0.09996735418966364 7.434368711614651e-06 1462205.4312378655 108.74124253927472 None 1834 None QKC_20200323 7688718.718501925 1319.1207239979663 0.002046951898556381 3.5105308506153666e-07 1398654.6612884994 239.86984458565297 50217 9198 585547 DOCK_20190904 3625915.5860554706 341.20406487570074 0.006554686765556132 6.168058012701063e-07 3330268.569034254 313.3832396022269 185 15180 184011 WINGS_20190207 6810883.447071804 1999.8279809940932 0.07619825049478729 2.2373513601643952e-05 153863.89910240594 45.17788816693569 37406 1225 1583228 LTO_20200905 27057372.663834307 2579.4453738341517 0.11204380384743254 1.068584730601507e-05 4881809.885880016 465.58821841270503 17799 549 1139240 LSK_20190513 234778130.68325368 33773.31392949847 1.7810040758753998 0.0002559452011401932 2784393.824211298 400.1407110991531 183599 30411 170512 ARK_20200719 60019204.679172836 6544.90337271798 0.39735778526851434 4.334193050338187e-05 5366675.778581893 585.3719173321304 None 21848 108800 KAVA_20200411 9695747.744816948 1413.7553859986583 0.5008927618324643 7.303407211815614e-05 5615215.61333776 818.7422404811568 20428 None 284724 ATOM_20191113 1041962748.2762625 118475.84767002222 4.222539982263006 0.0004797800004354862 194439677.679571 22092.92725081171 29120 7201 96230 ARPA_20200430 0.0 0.0 0.010187801472566793 1.1620162225201905e-06 2865985.773316922 326.89309573552873 16735 None 1423765 VIA_20190122 7089410.606421038 2007.3093398534577 0.30653389859893765 8.680347730611381e-05 173645.7914312019 49.17256650795994 40939 2229 2614866 WABI_20190520 16285753.728773428 1983.587168268593 0.3075524874520603 3.762511573926415e-05 811836.0914028605 99.3177689876617 36362 8036 933235 BCH_20210506 26882250490.177193 469429.21994688537 1452.3691582408462 0.025334451303437425 18502773335.482765 322753.76228320773 None 523481 307702 LSK_20210819 644468584.0306026 14297.633594168392 4.431267762136585 9.848970736094407e-05 97414171.2820441 2165.135066844033 196856 32640 274824 ELF_20190314 57448615.50442443 14858.435089299954 0.17315131227249625 4.479039057614881e-05 15354590.400849381 3971.8907824880002 86296 31642 984154 SNM_20210718 61960544.31576134 1960.45466624 0.1416394898438935 4.49e-06 240890.42609282263 7.63627442 32374 9713 None OST_20190524 16630247.63461074 2114.083640439161 0.02665713663250073 3.38872984299012e-06 4435946.533816676 563.9099430778947 18118 749 1111162 GRS_20201030 13354084.43104843 991.3863245262737 0.17756826928381603 1.3205282045339423e-05 715167.491964518 53.1851128534383 37442 106814 2935731 FUN_20200807 28734451.768788014 2443.0224323591533 0.004783967016242834 4.0631809617083556e-07 2309469.424731364 196.15085485237603 34212 16717 228128 DOCK_20190122 5020551.62210481 1421.7558385186937 0.009769285504480859 2.7665363787911162e-06 895988.1022517529 253.73234088680795 105 15402 150082 XLM_20200914 1654163879.8855436 160210.47042600662 0.08013795098893509 7.759882239091849e-06 123963958.63606979 12003.62261621056 289251 111356 46719 MANA_20211002 998122783.2002995 20725.158696815208 0.7526365975679085 1.5625469170406475e-05 76562346.7763648 1589.5089250694014 177399 37669 12204 GXS_20190920 32165155.228000425 3140.5087051769374 0.4946076914524612 4.826084840985914e-05 3269355.5191149022 319.004079056271 None None 561908 LRC_20211216 2784205142.9513044 57069.297063239916 2.2393307718554 4.582281078883253e-05 297379859.2871264 6085.2024166278725 163252 83823 53381 LTO_20210427 146317073.35762092 2715.971616329039 0.5215179995206345 9.674902236062748e-06 30446825.350270282 564.8320075876632 8389 3816 174432 INJ_20210828 380473151.4017167 7756.631181317767 11.651784008409798 0.00023760514920535803 25230196.422003496 514.4984305410916 82553 3938 170499 RDN_20210418 76021288.74110776 1261.080735377568 1.1369417835237547 1.886400077233344e-05 2265662.2386710155 37.591594257071975 28811 4508 626244 RDN_20210318 50363122.075845785 855.7660532038188 0.755772752670532 1.2822252171479468e-05 3010740.7263542986 51.07947683989492 None 4418 660799 YGG_20211216 504938014.2703664 10350.540412718801 5.765984719790507 0.00011798776230246035 234399615.47008833 4796.45497827086 140135 None 43136 IRIS_20210804 82316967.5966167 2142.428552449169 0.07671178225576707 1.997023160581197e-06 7056638.813901665 183.70412905063773 None None 796801 GVT_20190830 5480695.922012902 576.9918634870306 1.2355647658886728 0.000130264666282345 340409.964269915 35.88916713962115 21302 5710 194896 EOS_20191030 3502929676.323697 372260.96873519046 3.3969600803153175 0.00036103956101555374 2824204062.973901 300165.2568786717 1326 68878 87489 DOCK_20190410 8336031.553514632 1611.3087746348847 0.01616576185339811 3.127247286567216e-06 659983.6796360385 127.67305308822183 152 15339 183380 RDN_20210106 11890227.29402212 349.9487005532359 0.17804496422177496 5.2202600765986205e-06 2272268.059043119 66.6226662674817 26574 4385 1792183 BLZ_20190801 9251615.781703154 918.9612988259195 0.04440931092053427 4.404859385030768e-06 3092313.467690479 306.7195981488464 36537 None 1145955 BTS_20190131 99814231.7091714 28861.613152691054 0.037144622733106335 1.0740489744480628e-05 6463458.055781073 1868.9301399236958 13823 7229 107042 STORJ_20190613 44692991.90449429 5496.285630610766 0.3112449634523448 3.8226553892674114e-05 11976250.222000739 1470.9017921620366 83718 7741 192975 DUSK_20210401 141528912.66343707 2406.2545404406983 0.39456020136416575 6.713152342142813e-06 13888940.27391105 236.31012861236744 24452 13508 306445 BCD_20200901 175555968.8318403 15020.024844389087 0.9323566727663553 7.987417152778663e-05 16339031.184985746 1399.7503504696328 28136 None 3034323 RUNE_20200914 148850106.04942906 14420.093040128259 0.7074485891487718 6.850334547191161e-05 7844132.688299322 759.5595492255368 None 1839 320641 TCT_20210828 18823045.729767416 383.741724999483 0.032501347684935476 6.62678777135209e-07 1992330.4873890686 40.622165696966974 None None 1235757 SKY_20211021 26185920.873472184 394.9574912358054 1.2559151214560607 1.8947593510437903e-05 914056.8587460904 13.790086216072845 20007 4459 487288 ZEC_20210420 2504847435.9878144 44748.852028204914 227.2858275539442 0.004061573119324656 2465196335.511367 44052.79149134023 74681 18820 91916 BNB_20190909 3483513402.0032372 335367.7594484081 22.41198331530781 0.0021564175284672846 163988232.1890319 15778.483027571117 None 56165 1071 XRP_20210809 36263438396.09534 824541.7262938119 0.7812431839912185 1.7763555583100863e-05 4467786533.002503 101586.51753857934 1952613 324582 16462 COTI_20210804 98852780.2282612 2572.799084240245 0.14751456850605982 3.840617541618883e-06 26676951.43815445 694.548129638343 124794 5498 114114 TUSD_20190324 204243649.1465133 51033.60143740779 1.005480456159758 0.00025128874836681 48200102.41183124 12046.125145466445 8440 None 298928 ICX_20200704 186822741.3110024 20602.920879572936 0.33783956449897684 3.727213768479775e-05 40323118.710107446 4448.646607369518 112923 27767 182019 GVT_20210418 57932256.287088074 961.0104428695091 13.02305000796727 0.00021665297729352842 4692958.950891599 78.07261190005053 24817 5590 213426 XRP_20210120 13433997245.77599 370973.33963136905 0.2945111481648177 8.144830463198628e-06 4329912741.449357 119745.56963056765 1067269 231393 12972 POA_20200129 2633676.55962177 281.92668045436824 0.012153901695395094 1.2998273658988643e-06 324905.5845328304 34.74778558305683 17498 None 390199 ARDR_20210408 326344145.21593654 5793.672774854027 0.329576295075557 5.865074695748113e-06 41683908.96430999 741.7986164035078 69714 6599 None BEAM_20200625 30931861.976600185 3324.5124354486675 0.4782580235756477 5.14483882137524e-05 27391155.411020976 2946.5910193695454 15241 1517 471978 LSK_20190826 158887756.6154306 15738.668031632717 1.180693707681394 0.00011689342256480154 3846076.66361224 380.7770480450172 181962 30896 173926 DOGE_20220112 20385158637.852898 476510.33440117043 0.15365222884955662 3.591675505268429e-06 1508969684.5002964 35272.70313350864 2828486 2256969 34703 NANO_20190930 95422504.33029608 11838.509667347344 0.7159906084847576 8.885973896497848e-05 2405435.1321112732 298.53232068077693 None 47749 228535 NEAR_20210809 1084481297.9265943 24651.595699131805 2.5481243418311013 5.7927250658574866e-05 60607682.502304785 1377.8120472815774 None None None ALGO_20190904 120672777.9947136 11371.068768819008 0.36963130344888134 3.483058101811134e-05 59479871.41297847 5604.824215011602 11848 602 192636 NULS_20191024 21749246.616265018 2914.4499215878623 0.29549234244441713 3.957933180179792e-05 2874249.919402852 384.98761186251426 21209 5270 455576 VIBE_20191024 3115130.2506043785 417.4102624750388 0.016646297413883085 2.2296663364108007e-06 463254.6756390699 62.050036099673 20124 None 1006248 NEBL_20210707 16795745.413640622 491.73257449707745 0.9298303198332838 2.722511592925489e-05 567976.9928258448 16.63017342519624 40360 6106 1020612 SNGLS_20200324 3108035.7263552085 479.6462062253597 0.004820304227949592 7.438912674595964e-07 69853.84891914747 10.78016360629161 8576 2130 1285734 STMX_20210704 200678122.83965945 5788.7542992863455 0.02198270803657417 6.335279597828682e-07 21098544.58722176 608.0469196284492 68062 4557 72030 ARDR_20200207 55959780.574172854 5745.776634331082 0.05599685009636141 5.750374761433774e-06 2980259.2489341437 306.045921120732 65045 6413 1227502 SYS_20210115 49995473.96311651 1283.7479124220195 0.08354647920411162 2.129918885916794e-06 2733602.183424577 69.689961474437 61015 4490 315243 TNT_20191127 29970076.558914583 4180.22895530461 0.0699996542414284 9.78081751841798e-06 1544187.4910259037 215.7641523750456 17746 2563 452682 1INCH_20210107 118454038.38521011 3231.7561306706857 1.516462567214133 4.10861072373089e-05 111939290.21857561 3032.8145128156107 None None 25684 STORM_20190813 11574534.015465282 1017.0049288690022 0.001856624304549915 1.6315258366057577e-07 43294.08301756432 3.8045077209324947 26617 2546 2770937 DLT_20200223 3934070.675657881 407.55783766759737 0.047596366982103365 4.93075910823853e-06 116005.17475708194 12.0175889107536 None 2593 5142764 HBAR_20210127 629217200.9710594 19308.73037079851 0.09065455514683049 2.7832272859384177e-06 74491995.8432027 2287.0131024195052 2216 7298 166052 CVC_20210804 177421089.96274346 4617.858731484757 0.2656296393016265 6.915085612970461e-06 15163973.620939994 394.7608260031382 103743 9860 242818 WABI_20211230 10826808.694094738 233.442020104266 0.18389853356274816 3.9483776934074995e-06 808856.1312071608 17.366476196203752 45841 7946 525909 GTC_20211221 127656919.38960694 2705.8180369541606 9.01046278140326 0.00019109802004037507 21977992.351000976 466.11932423793974 None 1781 21952 REN_20190124 13835923.700299798 3894.778054419993 0.01838987343931665 5.1767035614297045e-06 454377.3838357992 127.90610163238284 5477 796 744296 NAV_20210429 44847587.41847363 819.31512237361 0.6304625756428681 1.1515067948283631e-05 4621387.796261308 84.40722184826751 51139 14001 446539 WTC_20190714 67700882.07964812 5938.660601558021 2.3240141208000176 0.00020374737589626052 13971470.505504368 1224.8851792383193 56142 20062 771082 BEAM_20210916 68907780.25342332 1429.8174520605858 0.7098432242281275 1.4730267778231698e-05 6425361.150130013 133.33548462927132 23134 2715 291991 POLY_20190613 48436191.70353382 5962.836767701186 0.105043715403321 1.2923222524221844e-05 8259438.616252039 1016.1346897636625 35091 5113 303523 ZEC_20210201 926220391.8172574 28021.47374680582 86.24678689526421 0.002601558278742221 737347966.1326263 22241.451243111802 72334 16898 125065 TOMO_20210115 102002150.54355995 2611.6969518547517 1.3312844691873824 3.3936231793994014e-05 19824175.07530659 505.3448876264404 36458 1716 198557 LINK_20220115 11991189095.4394 278209.22174975596 25.709264298994874 0.0005962930333182027 1191484439.6794722 27634.93589023814 718186 75312 17316 ELF_20190530 88585765.07408217 10252.748678534643 0.23798407322859189 2.752015994604475e-05 33880475.33099299 3917.8928552136845 88841 32957 928009 MATIC_20200325 31151261.918956727 4609.305202518399 0.011275893520004195 1.670501525575412e-06 17313286.336827982 2564.9294388143817 32909 1589 190232 XRP_20210131 19215011544.534508 561637.9046946561 0.43085343036345514 1.2609335511182792e-05 19414333088.879105 568178.926733917 1092294 241815 11661 DASH_20190213 710382133.8017589 195428.6002172691 82.38080277181211 0.02267131625728086 192279154.9050321 52915.501959957284 319855 23237 89262 NANO_20191108 134797579.0580535 14621.440330127705 1.0116270839802415 0.00010973079151805778 6467387.621312247 701.514989049604 None 48120 297643 TROY_20210107 5457903.303125617 148.5701895266258 0.002773631433310937 7.514706987798168e-08 3168802.951629015 85.85360476368857 None None 988367 MTH_20191220 3543239.324282075 496.1782864656439 0.01030284363395642 1.4418358647936002e-06 133668.95085634073 18.706358574520564 19280 1960 1507840 FUN_20190726 18763082.07889057 1894.147025467316 0.0031491390201174078 3.184600077587912e-07 89613.51345881677 9.062261147913167 36138 17514 408436 GRS_20200901 19597976.083264917 1676.7421217807898 0.2576316195786002 2.206668048797661e-05 2307237.113020197 197.61962551916235 37799 106841 3374022 POWR_20190616 50721710.32726272 5752.564634332223 0.12091729294531799 1.371345551554572e-05 1720233.9795943145 195.09494118566647 84748 13208 724138 ENJ_20200323 64828161.73967358 11111.625493143323 0.07063920311986774 1.2114652131790219e-05 5824763.498057416 998.9493144362532 53871 15276 111026 LTC_20191020 3414864555.135939 429771.9664026516 53.811606008422096 0.006769107389713431 2050919597.4994152 257990.720458493 450685 209085 128159 MTH_20210106 2878495.086814932 84.73897162772734 0.008307824917291425 2.4381985814283007e-07 217056.507813132 6.370221745264 18945 1882 1263562 NULS_20190702 67899301.60913765 6407.459495279907 0.9155644771740344 8.636648620368489e-05 17799500.722921047 1679.0519640556422 21217 5306 511487 ZEC_20200321 311202722.66229486 50339.59022493892 32.81226685175921 0.005304230162117569 381040470.8925866 61596.66955736641 72957 15637 148838 CND_20200807 18379687.875758052 1562.257076133807 0.009534177171970418 8.097691108482804e-07 148685.97544204243 12.62839025933779 34293 5935 353871 LRC_20190623 62600731.57609227 5831.117973180928 0.06501868687893148 6.061493946641669e-06 31563336.942067564 2942.553671783691 35027 2456 720276 SUSHI_20210104 447939723.308254 13419.736897752517 3.495572462787396 0.00010518815416834542 438004449.1740674 13180.353151484705 None None None REQ_20190523 18033439.737813894 2352.0615896348536 0.02469348328851822 3.2221482809703256e-06 1801227.386882069 235.03454982300315 41944 30101 374528 MDX_20211002 823790738.9310977 17104.475460764028 1.267894868153129 2.6322732959920625e-05 37721491.027634926 783.134911348624 19884 None 37444 UNI_20201228 779517935.104836 29456.278925271406 3.6002982043138365 0.0001369022662747493 326236005.2838611 12405.208104780771 None None 4779 BNT_20200907 77248218.45510934 7522.347717443001 1.174273340014278 0.00011434946404678307 65034054.235748224 6332.945655188603 712 5215 75903 BNB_20190225 1464562398.035241 387691.3550317494 10.086822325864507 0.002684051630416634 107459433.43998453 28594.403491043766 920256 47645 1153 WAVES_20211021 2930939529.653384 44207.22184544966 29.280349800775678 0.0004433821096141898 136248616.04971227 2063.1652021634945 199003 59848 136540 FRONT_20210511 81475821.16953395 1459.2647917877648 2.174109926113673 3.890425526969074e-05 35517478.38963863 635.5617207802488 None None 146547 TFUEL_20210707 1883675597.5033274 55148.76703985812 0.35529510032342604 1.0402919854383598e-05 102179875.6809298 2991.79205249937 181312 21108 18384 FUN_20190608 39054627.751994506 4859.924367729136 0.00647188390344565 8.061308869301598e-07 767003.3493505839 95.53711091158509 36293 17659 466451 RAMP_20211204 109679034.09592229 2042.7360409715407 0.29236678869624555 5.442780808418576e-06 23472136.461675193 436.9637688188905 36626 None 126392 BTS_20190625 195672842.70490932 17726.2144837015 0.07234369972216094 6.550035341430576e-06 54525766.93441863 4936.790650888495 13702 7179 169425 TROY_20200425 4491084.782839274 599.0649540452509 0.0023523568421036567 3.1384576227604915e-07 501509.71620123973 66.91021377065694 8768 None 456905 TFUEL_20191026 0.0 0.0 0.003365018139414045 3.886703484492277e-07 887174.8786062462 102.47153356009389 None 4025 413739 KMD_20200403 44340637.80423622 6534.077859440441 0.37173838604704623 5.4530234040776994e-05 2040215.0051068664 299.27875596872724 99697 8387 155354 WABI_20220115 9718966.685156774 225.3475167151364 0.16462978167537778 3.817015133150741e-06 400441.11749924556 9.284406441383364 45868 7941 512122 RCN_20190608 15739319.970301662 1957.3273300133778 0.031382186601785184 3.9089313554645276e-06 1346492.388020156 167.71764129166482 18992 1122 2270629 BZRX_20210806 38914458.75162456 949.7948939144973 0.2763615571160506 6.754380881920154e-06 15848186.520295134 387.3356669532572 None None 159675 REP_20190922 118690503.36852103 11879.040608123238 10.792249070770417 0.0010806913336867576 11152564.996637471 1116.771885193715 125683 10054 187186 HBAR_20200217 169351121.2589972 16988.406726279634 0.05194036846558556 5.220958047532086e-06 26985696.56460849 2712.5566069213155 36726 6266 142339 BEAM_20211216 60556003.520949356 1241.2547707726358 0.5816434857277526 1.1902010961505628e-05 6293858.950805901 128.78950776683288 None 2954 252645 IDEX_20211011 207604083.22909752 3794.079870025214 0.3506610248701306 6.409447675713734e-06 250280450.31048703 4574.6727943695705 62177 1987 5032932 XVG_20200308 60844339.26757745 6836.110896769689 0.003755953167388539 4.2199673271862826e-07 1101685.7322414392 123.77890744890747 296806 51955 314536 WIN_20190920 50574577.53105596 4939.37538556886 0.00024133685481111635 2.355032829887106e-08 5504343.247108313 537.1292778325535 None 1431 55961 SKY_20190512 18698099.300400406 2565.563333596284 1.2445433364395673 0.0001710322182480491 603236.4793360765 82.90018528736263 15642 3710 424998 DOGE_20190909 302377043.8785372 29112.016073562605 0.002499782168977487 2.405219569680455e-07 57731955.783910654 5554.805197453956 138170 140312 101956 TCT_20200404 3234413.862532222 480.97582534507274 0.005549126540786629 8.248822645323311e-07 2747226.014409489 408.377426481788 None None 430478 REN_20210112 326084313.1403846 9205.437551351686 0.36748958498834533 1.0338211591177327e-05 103783149.6665546 2919.626037526188 32585 994 104896 WING_20201115 6462669.624096448 401.51220145248874 10.349348036999501 0.0006433736745862385 3645515.600452035 226.6257506501128 6230 None 218127 APPC_20190621 9842008.874440705 1030.395044930635 0.09239230222841645 9.672879959814501e-06 477883.0000232844 50.031277309588994 25522 3371 1293635 FIS_20211202 45194798.399227805 790.7126250829549 1.6780568249587566 2.934556781654286e-05 6355304.284014614 111.14046323544498 None None 295370 MFT_20200313 4691048.50187244 976.2457140017334 0.0004906386210862777 1.0238546421108765e-07 1176156.632169523 245.43796104557012 18418 2506 867921 BAL_20200901 244191091.61573985 20897.52211871991 32.91441816425999 0.0028197490927897484 71159171.78241506 6096.143309469495 18578 None 61486 BRD_20210115 5511865.857281389 141.52973713291118 0.07371581128557714 1.879101845481489e-06 465868.98430349905 11.875542748433011 None None None HOT_20190830 141343854.64041394 14894.507807373595 0.0007952272478820227 8.384641986211292e-08 9123097.60178676 961.9125526693875 24240 6657 386677 RVN_20210508 1526790633.7388363 26645.39999733066 0.17516680592810616 3.0564883565965378e-06 224329000.25974467 3914.3202600969203 60433 36032 40253 LRC_20200127 28035940.32303099 3266.94728825572 0.02558226788743137 2.9768540299489994e-06 1383267.8189007577 160.96252292067356 33898 6830 877255 DCR_20210430 2688072695.0896163 50155.96595231006 208.77943263776947 0.003895554660426873 27848652.08493271 519.6198928478188 44365 10984 225224 FTM_20210429 1496174591.979125 27333.43172914393 0.5902064277289785 1.0778916965515165e-05 568239577.4456367 10377.737235722776 67001 6497 57773 STX_20201130 218450330.42019913 12043.794991269724 0.2378409144720929 1.3089945519378245e-05 1151744.23494437 63.38803952693665 44852 None 113475 AE_20201015 42079354.60855919 3686.469755732094 0.11419365482101687 1.0003998442383024e-05 7063412.392480508 618.7941587738624 25685 6350 362736 XRP_20200105 8353409154.389953 1136718.084956929 0.19281164080052574 2.622189132655003e-05 987421522.1363721 134286.8083039827 942537 208325 28405 NANO_20200305 102985780.33424011 11763.962247765761 0.7732496684115526 8.828233122435525e-05 1688239.104917413 192.7471681331553 97715 49197 295755 LUN_20200725 1005925.9576719687 105.43204855229753 0.3720151238699661 3.900044966651785e-05 28173.949937942285 2.953634532465364 28259 2120 1675739 NBS_20210124 0.0 0.0 0.013675300121287908 4.2671073968198415e-07 3696240.287645173 115.3338802947516 None None 755646 AST_20190224 5746154.695467417 1396.8771635691487 0.03447127806937411 8.381864216698665e-06 1373501.5988624238 333.9738050882308 30514 3593 387473 WING_20210127 14865066.581725832 456.1629309045435 16.589771222829203 0.0005091667077356016 5473336.549459141 167.98548417485546 7795 None 403766 VIDT_20210131 26274046.945896942 768.0461221888369 0.5648133204161603 1.6532186376384598e-05 1964424.6559159115 57.499059175938356 24617 1202 None BNB_20200721 2585027026.4680834 282247.00352924364 17.48010559244796 0.0019085709256912971 216275927.6935094 23614.156409963587 None 66633 1050 BRD_20190804 15677683.643053433 1452.9853586027623 0.26116556447671724 2.4194559382021646e-05 377239.6470980159 34.9477430581378 169 None None BADGER_20210624 76328001.50444594 2264.1181025172577 8.545153344875617 0.00025364943767335876 12117011.395807968 359.67442628416734 35350 None None BCH_20201208 5291871420.620797 275517.9753380618 283.8188913240512 0.014791095549553837 2196292526.5506086 114458.81020615553 None 343110 699066 FUN_20200913 23317187.667623606 2236.1289208041226 0.003886609829253144 3.7223055141281064e-07 605744.7460782445 58.01372166329488 34221 16675 242741 YOYO_20210616 3276605.053395285 81.13777575251841 0.018724666552589295 4.6393110832770047e-07 1371756.7034434634 33.987286555790526 9935 None 950118 HBAR_20210310 1539421466.1166854 28164.780368668737 0.20805490471671015 3.7998549746352897e-06 375899323.7118838 6865.317196504055 58071 10276 84941 HBAR_20210506 2611839832.175146 45623.500963035636 0.3170647928662865 5.530730606146178e-06 167550682.78328365 2922.6760908171777 88114 16409 39748 TCT_20200412 3395766.966846471 493.49216410987214 0.005823801268859313 8.462605462221674e-07 4041867.601812046 587.3265461094793 None None 430478 NAS_20190302 28532228.957486022 7458.783696840749 0.6261269869533369 0.00016390719936680255 1306382.029664475 341.98401322283416 23436 5177 511386 GAS_20200501 17394819.003641196 2010.2783721127628 1.2447883783785751 0.00014441196170575092 11531768.304906901 1337.8380709313913 320932 99319 218752 REN_20191020 45162696.03300956 5683.260547575169 0.054654541284809406 6.87550161977892e-06 1833048.8106250777 230.59620976252597 9849 878 270891 VIBE_20190625 7503178.845409499 679.3833911125154 0.04009570994257509 3.630509141670843e-06 1062402.2056900288 96.196349320488 20514 None 1430855 DCR_20210421 2770053591.278569 49031.384385861566 214.65684902588913 0.0038070572802246477 102376790.47125018 1815.7086869499292 44219 10928 225224 NMR_20211204 237683670.9819173 4426.780424055859 40.3815020222088 0.000751753183737782 25725434.057528257 478.9117785947432 32401 3738 3047444 XZC_20190803 69950406.53651853 6647.215360591864 8.674789257878103 0.000824343921071578 15712940.485587394 1493.1621491196656 60847 4043 218512 XEM_20210124 1938181259.999938 60551.271575257255 0.2158055034940616 6.7337846487219575e-06 70878535.6836126 2211.624762958538 222978 17951 70313 SUPER_20210814 292215546.52330804 6132.886231490437 0.9869902798660922 2.068161546825971e-05 43686931.801962666 915.4257574237315 131321 None None SNT_20201228 119911764.93338728 4516.505066420928 0.03068778732870633 1.1669110150996846e-06 10931174.427989537 415.66072233773895 114334 5684 158181 PAXG_20210218 127519429.92265095 2443.363642862761 1797.3342556147536 0.03447097756715217 8951346.997107314 171.67740534024477 15170 None 57778 NEAR_20210401 2011919619.082573 34205.08876207662 5.996352794545257 0.00010204538224501396 82551701.22514151 1404.857284941421 45956 None None NULS_20190914 30517674.73704415 2947.1607201491042 0.41918186500166077 4.0481338692300254e-05 3590122.6055259877 346.70624202839775 21322 5297 307386 VET_20190426 333999768.54396176 64344.19931538254 0.006032864022478947 1.1616077116225145e-06 15397890.74294406 2964.8121626940197 107533 55263 430690 COTI_20200914 28959889.121364754 2805.566835143357 0.05045195891663425 4.886165894650514e-06 7738793.390776072 749.4858305549304 30598 1174 143053 WRX_20210318 122026829.12341423 2074.478179766631 0.4964354480852753 8.422400092777246e-06 13091836.818686103 222.11284077640173 None None 3664 GVT_20200502 3976658.9778754865 448.77601754219756 0.8957123305846291 0.00010140795330863395 252039.09167748716 28.534572505102155 20431 5559 208818 SKY_20200411 6480989.60245472 945.1093474186011 0.38206675763920794 5.570708162767318e-05 224914.91406678953 32.79362369712212 None 3826 269101 RVN_20200324 84357920.5504984 13109.805227575493 0.014634025550650989 2.269358846826139e-06 12027698.027124671 1865.184861836903 30192 7616 202553 SNT_20200322 52164092.50081606 8465.940752625203 0.014014910720357961 2.2757395585484706e-06 35662334.4070118 5790.84567712095 110415 5614 189796 VET_20200610 527940536.64605606 54010.01065173761 0.00819090887425465 8.387791206017319e-07 235085942.23047382 24073.662998460557 121539 62636 306632 QSP_20210508 66647291.31590419 1163.2212626633054 0.09345000302572208 1.630610575209447e-06 2203976.899388447 38.45722764365164 64580 8430 221703 SFP_20210324 358889411.96537584 6583.38098685117 3.321065999973706 6.090073594129725e-05 103321766.18988356 1894.6842970806276 None None 38831 REQ_20190714 12139570.561547713 1066.5964841021573 0.016645755202498898 1.4616888053693695e-06 452069.9008567228 39.696938065478335 41605 29835 539616 NEAR_20210201 580232928.5793322 17557.13726154744 2.143256939415451 6.464945576441117e-05 63057335.98207926 1902.0689392037611 None None None REEF_20210902 318138330.07378244 6539.8409852660825 0.025119898638677925 5.162835533291967e-07 79225130.16931233 1628.296049483321 197580 12920 85112 ATOM_20190816 703891203.8082992 68342.07304882255 2.897560133285456 0.0002812501078211667 129140940.08402117 12534.99553142133 27923 6558 115107 GRS_20190922 16849768.11969788 1686.564682480117 0.22922348416385432 2.2953494789541335e-05 778904.3531685898 77.9962710942229 38374 106980 None SUPER_20210804 147709696.33339632 3844.1732014941226 0.6818129105965883 1.7745253375327698e-05 22633713.513463132 589.0779932130424 None None None DENT_20190723 46943659.193221144 4537.195767587181 0.0006439203821385832 6.22843143458179e-08 2120344.126120424 205.093958408309 46506 9910 262986 TNB_20190419 15307118.5848519 2903.0059009208326 0.0058585545933322195 1.1109501762136161e-06 3712604.574590399 704.0164328325809 15666 1502 961548 FUN_20210112 60348778.23645219 1701.048381889092 0.009977907733674674 2.806831730774375e-07 2458812.386977898 69.16753303399173 34229 16513 359571 QUICK_20211011 143594751.6863655 2624.67726897846 396.3894710207705 0.007242149673022588 9060498.0828845 165.5379065932492 55043 3427 5286 BTS_20201224 56738348.10332733 2426.351061236722 0.02099216403270085 9.003526603743057e-07 23863304.365865573 1023.4956976164854 13054 6881 121764 RVN_20190930 137761126.44758108 17094.56893438642 0.030411365081744832 3.776922801285612e-06 35000451.586336695 4346.861881944291 27912 7037 264985 ARDR_20201124 59860815.9298042 3268.5896803985206 0.06008119947726256 3.273741713238857e-06 5060421.091690157 275.73536744534033 64139 6296 1570658 COTI_20210418 234822789.71723837 3895.362749617494 0.3522314887392515 5.85293086013444e-06 48137435.53029234 799.8861287258426 77802 3661 80341 BQX_20201201 35623075.1356141 1812.99399835354 0.15864929663507937 8.076314381235666e-06 433542.9742655356 22.07024822806696 16595 84 203927 MTL_20200207 21720885.55615588 2230.2331321710094 0.3314463063157051 3.40365658305506e-05 6634680.708700444 681.32226065983 34636 None 594241 MANA_20200407 37165447.23299563 5109.827810773326 0.027997974463040705 3.842363265116957e-06 24993546.63690134 3430.04404084264 48038 6818 46518 SNGLS_20190227 7795505.323280625 2046.4886185837836 0.013203429745298017 3.466185651791939e-06 443124.0574485172 116.32964157959466 None 2186 1185727 LSK_20200422 136326106.71270433 19906.65327680538 0.9783613648592829 0.00014292122811116457 5007012.071938961 731.4355821806888 176653 31324 162071 CRV_20201229 85174497.34084971 3138.7501277704887 0.49877188593434835 1.837587375617295e-05 32647931.648226388 1202.8229482985312 None None 24285 ONE_20210616 859295158.9625895 21277.504739232438 0.08416730898501015 2.0853575047142563e-06 37508314.061703354 929.3185817748158 182172 24748 20345 ALGO_20200417 131256438.45364466 18500.688989655857 0.18415197110258322 2.5977637700304325e-05 91140216.63379684 12856.813388769708 16798 844 305108 SOL_20201129 86876340.85848026 4907.787071205206 1.8903759559939506 0.00010671467104292782 13543976.251381855 764.5785832688969 None 2636 83508 WABI_20190531 15387984.477706326 1852.374555736481 0.2932244547446798 3.5297768845274383e-05 3148977.2993049244 379.0675402795624 36297 8029 924830 VIDT_20210318 52957514.30484198 899.849753871287 1.1509426352144088 1.953091793700438e-05 8986232.442343002 152.49184713845625 26033 1371 516242 EVX_20190302 5084905.661628719 1328.9535788169894 0.26329023382474653 6.891947234983341e-05 1089781.842033473 285.2638642851066 14043 2316 1155808 WAVES_20200403 95840108.8178672 14133.76035545858 0.9627306406837917 0.00014122277689146247 65459008.802405015 9602.169708728119 140478 56868 67847 ONE_20210207 101067780.72545305 2578.266313140578 0.010717897853902413 2.7245290203813043e-07 11217377.738581827 285.14986425456254 None 1994 152986 XVG_20200626 105730997.4530061 11426.486013971511 0.0064833044938581936 7.006591246461663e-07 8973146.367991867 969.7395649818793 290485 51701 273967 SNT_20210114 214866501.4942634 5770.373065393865 0.05553170307152779 1.4859044996830098e-06 36806736.02347504 984.8661512412289 115164 5684 172923 NCASH_20190221 5439770.2439862555 1370.2879090610115 0.0018743861250878297 4.722798484548715e-07 649973.7833335131 163.77069579407342 60266 59615 682979 CAKE_20210909 4442025560.405372 95881.01192739552 20.25007520344022 0.00043720362829521847 420298738.5271246 9074.343260747224 None None 678 FOR_20210704 15136641.825673684 436.631054771903 0.026851693048101047 7.745557855702111e-07 1607983.693605035 46.383409446594186 29091 None 170276 BNB_20210202 7583767269.190991 227282.2228448429 51.466236533833346 0.0015409872806423934 1473065904.0210793 44106.11644689066 1578600 116612 423 AE_20190726 98573162.19900501 9953.00722866487 0.3059803858011765 3.094258951853058e-05 34470200.834469 3485.835447424237 24879 6370 321495 WPR_20210527 15744368.26567662 401.8524678577789 0.02625691824267063 6.696910477272748e-07 834826.7460173074 21.292521576371325 33708 None 7291918 DGB_20220105 503783378.7107664 10877.474038042375 0.033349071838405235 7.261251862856299e-07 22644189.071495138 493.04268758961416 237863 44423 101891 ETC_20190414 692250603.4879239 136451.07194698945 6.315790885825053 0.0012446824524739639 387276744.3654851 76322.43952928063 227508 24390 634838 AERGO_20210805 49053339.426711835 1232.24809801747 0.18733154084958623 4.710975079424048e-06 6862105.782369203 172.56682556766776 21532 None 411041 TRU_20210418 104253166.18142013 1729.4058236928195 0.4303813808901876 7.1515254779058205e-06 4810127.720350394 79.92852960533632 22799 None 84906 NEO_20200229 801365976.8794943 91555.5550555521 11.33400197931275 0.0012991130724108186 768036098.8461304 88032.95940088731 322934 98929 228840 NAV_20200305 6767634.1300613005 773.0656963206112 0.09946885482750518 1.1361930209508877e-05 156384.66273561338 17.863195740223727 49772 13996 1136873 GTC_20210707 101018007.34100197 2958.9981016214097 7.130236398630926 0.0002086744939368076 28560259.235863324 835.8485342634857 None 971 25905 BCD_20190305 136069581.9396743 36644.181090822975 0.723170839974445 0.00019475332283577345 3567161.845092288 960.6535330562571 20536 None 3143940 ADA_20200607 2681160483.6159935 277214.31513793743 0.08617635377316928 8.91006675590526e-06 269293377.5268906 27843.159586485595 156566 80200 59755 IOST_20201130 100733776.2777515 5552.007230120383 0.00600106980154626 3.3044781231957674e-07 33463305.151397407 1842.6507849337927 None 52157 285910 BCD_20200511 100734581.2358828 11504.522371811534 0.5371280498993422 6.11906635716854e-05 9390698.43049455 1069.806479984113 28683 None 681100 DEXE_20210828 59802585.883495204 1219.2690988956786 17.549782585011144 0.00035776056256575916 74778180.2478318 1524.3883337880711 16667 None 256579 REP_20200621 193424473.81084585 20675.4440681941 17.578521978580625 0.0018780203033688999 52813860.18428492 5642.425560364554 133142 10192 234509 LTC_20210124 9138226063.307539 285145.13894183864 137.73843643795368 0.004297928867554886 5145553639.444698 160559.56564080503 139562 223927 127540 POWR_20200730 40923700.483292475 3685.53080603828 0.09527940822279737 8.584384509348082e-06 3921285.7978398716 353.2959081881557 81526 12701 226515 WING_20201226 13265607.690448657 537.1755024040302 15.002240868794168 0.0006084092127032892 2894485.1856970172 117.38456064082658 7156 None 238835 CND_20200526 15256218.2544072 1716.642340269413 0.007470626801030548 8.402374965803355e-07 2184043.584138945 245.64408883416618 34448 5935 397842 QKC_20200704 23586408.62644315 2600.7302692197386 0.0063009920078236714 6.95156714444336e-07 10771519.723469472 1188.3675223269613 49827 9208 550084 LOOM_20200113 13899011.664249375 1704.962372324977 0.016694132439468237 2.04778237220869e-06 2378893.118830921 291.80644227988915 21287 None 304548 RLC_20201231 52823467.55255591 1829.2549253401737 0.7537163434148579 2.6116291478371775e-05 1545199.0888429943 53.54118979761348 33723 3893 538860 GRT_20210108 424344646.29718494 10815.233731199154 0.34747863219571423 8.802846245326267e-06 306238131.503078 7758.080458194146 40622 2548 38944 PPT_20210210 62607454.374122486 1345.7258388514908 1.727695721440742 3.707935804243867e-05 7912330.157138553 169.8123802736917 23656 None 736934 DOCK_20201014 6396767.4028496845 559.9213872952164 0.011342129412644869 9.930070764280937e-07 5938984.64533152 519.9600150071612 43207 14898 208380 ZEN_20190318 38502637.081008516 9668.59068281292 6.380168688341814 0.0016022354704731696 665655.4296715315 167.16434825330234 25042 1511 311352 XLM_20201014 1587281999.7701535 138937.85460201363 0.07639520332707739 6.685984486973096e-06 107816044.45112753 9435.885621781457 290476 111547 49604 TROY_20210806 13786740.645490836 336.4946807341014 0.007256803716313643 1.7735902488323794e-07 7927467.248208965 193.75029501974464 85615 None 543401 ATOM_20200106 795025155.2981652 108263.27843468571 4.199192098332791 0.0005717182481456847 116379175.21300234 15844.97603713683 29671 7753 112563 CVC_20191024 25236954.373036478 3380.330544386727 0.03766508614294905 5.045000250981113e-06 3874490.257424407 518.963483767027 87746 8142 107901 ELF_20201018 43286848.251168914 3810.6948867252877 0.09367275891303092 8.243178011415403e-06 6354258.3538401555 559.1730546749302 82553 33349 472969 WTC_20211120 24098606.608989142 414.5565576731222 0.8286244485192201 1.4242552508735757e-05 4242395.26027738 72.91908579971229 66655 20344 298071 BTG_20190512 397066199.6853511 54252.32035653036 22.573840413070048 0.003099223112156248 23026716.45448444 3161.3996788728564 73731 None 432620 XLM_20200526 1331024314.125061 149767.9605425858 0.06579874410298765 7.403729297797062e-06 391649130.03333455 44068.685170434255 283330 108752 77209 CTXC_20200330 757995.1906791272 128.10638649986765 0.07394890210507478 1.2512355036343667e-05 8396767.647618286 1420.7558864822447 16643 20064 396619 ATM_20211002 28841703.087913513 645.7254437455765 14.060475544730204 0.0002919091735046978 6162375.2906380445 127.93691594521671 5124669 None 61074 PIVX_20191011 15831053.254272617 1848.8876545659052 0.2584396898233489 3.0182827654582744e-05 613500.4945737981 71.6499068172511 63000 8583 263500 PAXG_20201111 76186112.23591265 4983.615047951121 1889.2390493411187 0.12367207423339323 2123887.270142583 139.03245554237213 8407 None 79585 ANKR_20190730 17577544.196336553 1851.9233691953855 0.006679447354792237 7.022166985357251e-07 8754511.181113468 920.370146264415 9648 None 1349736 SUPER_20210916 232513309.0226855 4824.683406734965 0.8145061822310793 1.6896229548631787e-05 15543977.672149627 322.44643512470793 139218 None None NEBL_20210422 61225954.34114216 1129.769894187454 3.4376667105922696 6.35568774480272e-05 5267282.863549834 97.38351027783413 40087 6048 477279 DOT_20210603 26126479643.786804 693727.5136002237 26.167284395860875 0.0006949452391438995 2139089062.7504544 56809.47773466153 453155 25495 17770 AION_20210729 61442788.350801006 1536.6926472931025 0.12451517303389319 3.1112203890739935e-06 7803396.853814291 194.98095536528987 73774 73389 347500 THETA_20190405 90106094.00905839 18376.71138603199 0.12141980871420514 2.4775649518686044e-05 11804620.277033672 2408.726696097525 None 3939 286208 ADA_20190221 1472648246.507061 370962.7421708484 0.047322543862064186 1.1923628512042808e-05 49774298.347862 12541.38502523023 147841 71311 106866 WBTC_20211021 14495095460.613058 218684.60046875698 66201.92329915239 1.0024726006557947 498826074.1083385 7553.549003805281 None None 269837 HC_20201018 47659359.05801895 4195.622532118473 1.0644108577930234 9.366787398903735e-05 7784749.148901864 685.0558663291991 12848 845 968527 FUN_20201111 25162958.834263388 1644.7358257150327 0.004209772070882033 2.756051803357984e-07 622025.8890696828 40.72276466375682 33878 16578 423341 FET_20190929 11833077.965455294 1444.5239739452356 0.034789827714869416 4.246971103398764e-06 2569076.65292604 313.6202454584147 16203 310 435240 DASH_20210127 1042640600.5022713 31995.416205527046 104.89352907343812 0.003219503869246005 394334118.9137962 12103.322605628377 332131 36087 74042 AE_20190411 167997088.92368487 31633.097339801207 0.6309987251282229 0.00011889569365244152 42337793.45678457 7977.482553130841 993 6362 440681 STORM_20200325 8717601.188971251 1289.6723024113671 0.0011507173297926583 1.7029364368660507e-07 1783820.0754927066 263.9859611671124 26141 2518 875750 NAV_20210112 10613496.994749125 299.36223971776565 0.15077502356776148 4.2416007418487814e-06 362356.6792885654 10.193812763647106 48151 13625 819464 IOST_20200907 77181819.49789345 7495.90221139823 0.005073115986545688 4.940145316605867e-07 62117636.00614091 6048.9480116009445 504 52178 275570 MKR_20210731 2626489480.801471 62952.93827619227 2914.1077265946255 0.0697459475603629 72091026.81027815 1725.419046658949 169141 29141 33491 TFUEL_20211202 1886178773.9046779 28765.286079276702 0.30856357598950435 5.398563648425074e-06 24638351.089944523 431.067426298667 None 26383 31041 TNT_20200605 15735903.981995933 1612.232008773994 0.03684476720831591 3.7688603746880653e-06 864572.3611319477 88.43732122116002 18017 2601 462149 DIA_20210131 47641544.45689309 1392.6633970987093 1.8652405285744103 5.4588038475196465e-05 32050129.23129369 937.9775212958996 23050 204 235170 SNM_20190207 6837263.904714916 2006.9197923256972 0.017111554058541093 5.02232180261686e-06 93827.33944813302 27.538766553858398 31431 10101 10310545 SNM_20190220 8403832.064977605 2146.5656398430433 0.02103061077321723 5.371785885493101e-06 302476.3095282342 77.26061728502266 31342 10087 10312209 THETA_20220112 4103520264.556803 95722.83431645892 4.093832511694235 9.568830284458376e-05 146861135.8728718 3432.698530132861 238438 27227 29092 TOMO_20210616 149804169.46183476 3709.258633001616 1.821322817633686 4.512621888877881e-05 18860848.202862594 467.3080226031568 48915 2183 106191 QSP_20210809 27126203.6557164 614.4215468978553 0.03752263714730051 8.530513446680758e-07 508938.0367111284 11.570356178987081 66817 8495 236005 TRU_20210826 249640359.1954502 5093.044345364231 0.5899589510350255 1.2039583218967764e-05 24433850.120990623 498.6336276029946 31888 None 91553 STEEM_20190207 78873675.517803 23151.532937173317 0.26489642901336913 7.776241899457887e-05 1013321.6785328569 297.468505845298 3820 3660 256467 CHR_20211111 645507033.2613701 9939.980043457948 1.1346329560790296 1.746818835957969e-05 1213865124.2873511 18688.003482157936 100209 1528 66033 BCD_20210108 97692870.90827227 2495.8205336870305 0.5171467134533395 1.3115664604563458e-05 2861151.7539053685 72.56336704993319 27842 None 2021519 GVT_20190305 16649949.99962675 4483.91017479546 3.7528253336591244 0.0010106535874402954 723986.6342488182 194.97302008696542 20784 5805 151314 POWR_20190207 30815317.16571262 9048.067551015605 0.07415795637506756 2.177443753437878e-05 2489374.166228352 730.9360307622977 84819 13278 646917 XZC_20190625 100239085.56790999 9080.76719213677 12.923130431180823 0.00117007208275399 14450993.076395798 1308.4061680569855 60564 4016 343816 REP_20190726 126537653.52731185 12774.069794643432 11.484097467156127 0.0011613414794107452 6684720.498352904 675.999417037946 126161 10045 220680 FOR_20210509 57622310.8384205 982.5853077738785 0.10236094594023996 1.7425364961946536e-06 13192093.503715955 224.5749507322652 None None 121636 BLZ_20200903 34096044.64810434 2988.680386647472 0.14244486671100445 1.2483231312763745e-05 8039136.330156212 704.5139686766252 41535 None 210138 LUN_20200410 1833336.5999722166 251.4365412016299 0.6781706145887618 9.300903809991355e-05 2715863.6871317555 372.4724482551991 29398 2146 2462612 TCT_20210201 7410994.3670420125 224.23224466333986 0.012676219265237671 3.8236697690173904e-07 2773539.4846622385 83.66137299124918 None None 1849521 ZEC_20200418 368047383.92508 51989.04991682195 40.987044035781686 0.005810177491391922 542951499.195077 76966.87218494533 72551 15687 144144 DNT_20200315 2453868.1488416386 474.736213271622 0.003239805148455982 6.253120553219742e-07 94610.89654531782 18.260769232619534 58975 6094 762988 IDEX_20210806 34439259.16301275 840.1733739548995 0.05762385220387447 1.4083487216168875e-06 13479282.70489961 329.43876259077285 53286 1974 8041913 FIS_20210511 62584437.076190814 1120.9124894747529 2.330281998356228 4.1704970506160176e-05 13230655.317666935 236.78854756192476 None None 252595 ENG_20190419 37933944.181442045 7194.199430381768 0.4902932763643074 9.295458863523259e-05 1105319.913782163 209.55734628432558 61969 3357 361311 XEM_20190830 427278047.250102 45028.05787140272 0.0474753385886197 5.003117541822871e-06 51921117.69619935 5471.629322917007 216622 18387 173706 STX_20210806 1410505725.3634636 34426.38734812458 1.3456664460346985 3.2888596414737476e-05 38995067.23701641 953.0541779524426 70444 None 61340 COS_20200719 19451178.12390456 2121.2993704412884 0.00985143901011267 1.0746427168433282e-06 3647843.635653979 397.9244647624329 12415 None 262147 REQ_20200430 8415117.136761647 963.8739242909847 0.010918063338204925 1.2488634980087543e-06 100539.44086159805 11.500211522211538 39261 28158 655698 NEBL_20210813 26387580.770620354 593.5266579199456 1.4549316444802953 3.272527042008401e-05 3552002.1293756026 79.8939459853814 40432 6112 2429755 BTS_20210115 68231115.34452279 1751.7679705527937 0.024372015175478205 6.223399572370603e-07 12137703.524980828 309.936533286459 13143 6869 130433 ZRX_20190225 136992723.44837904 36369.9422300389 0.2332722248061376 6.217720096661562e-05 20179063.226757523 5378.598633467202 147027 15599 295106 ONE_20200721 45429239.50196605 4958.556533765905 0.006631105616419812 7.238782169468821e-07 15377392.409235524 1678.658136725598 None 1326 140564 SC_20190605 127506487.25874852 16599.27297907446 0.003113587227523306 4.0533846900619446e-07 8283017.743875687 1078.3143318982486 109711 30917 231411 STMX_20210221 109663547.5372774 1955.631394600859 0.013339255452530556 2.3723724773240662e-07 90806285.68382616 1614.9801890439664 26270 1232 138788 EOS_20201224 2231765196.2447524 95398.54703708719 2.3249647651208667 9.97011611592255e-05 3162102086.4118567 135600.01185776346 191631 73635 102898 HC_20190906 88557123.23717707 8378.901779195336 2.000882054223796 0.00018930937842646174 43750414.882178515 4139.356355244048 12905 852 399646 WAVES_20210508 3251069156.468578 56737.33921261885 32.462590032607714 0.0005663660940939297 400833772.0969469 6993.239222608259 184629 58563 111881 AION_20190616 56150051.776395254 6368.215897704059 0.17689396224930323 2.0061873890705337e-05 2513014.136604461 285.0056160937004 67394 72566 278705 POA_20210106 5774457.213083757 169.9359332787553 0.02012309980698876 5.900072209230473e-07 405028.12862109765 11.875383159427663 18164 None 255706 EOS_20201226 2527788219.1401916 102359.8721048637 2.660807282875987 0.00010790785711867296 3026125779.3220367 122723.1864253111 191687 73652 102898 ALGO_20190920 121347696.48890401 11848.022945178334 0.3139075035752265 3.062920918248073e-05 55426956.33075311 5408.229559558838 12124 617 199307 ELF_20200314 23462134.087662116 4267.934807957928 0.051510313348029 9.259350184438381e-06 57213335.29680008 10284.509495282104 None 33435 755936 ZEN_20211007 917005588.6396075 16528.712918018 79.05740257836841 0.0014249827127014165 60726649.34901871 1094.5771388941357 None 7824 1549485 LUN_20190810 2626557.5908650635 221.44741895037112 0.9735821783146686 8.207440228763704e-05 285235.7778703439 24.04579346376575 31059 2204 1249671 RVN_20200423 100725393.29290845 14161.595365834244 0.016716323948707885 2.3480707972957283e-06 10994392.333567727 1544.3354443043008 30381 7635 218336 FIL_20210805 5343079485.3996525 134021.858050827 56.493397850512196 0.0014204628305699704 435763683.8035009 10956.786798220643 97412 None 38800 DOGE_20190929 269038267.1654558 32840.627923697895 0.002219125458248961 2.7034490123356914e-07 58678136.6956218 7148.462476774513 138217 141385 96250 LEND_20190622 10103956.872184345 998.6613176269418 0.008888038166829012 8.761546215340456e-07 1529055.7670633353 150.72946940030835 42057 5866 977023 BTS_20210314 203203046.5671223 3308.5543868864056 0.07496474884810293 1.222005190010569e-06 83071701.82979079 1354.1571517128311 2837 7001 126730 PIVX_20190205 38728802.84447311 11178.697682488213 0.657634710059672 0.00018981995489997377 224230.68323903103 64.7220372169241 60757 8585 177643 TFUEL_20210127 0.0 0.0 0.033252803157333075 1.0205819043062043e-06 31242135.485834416 958.8712860646112 81249 5035 50826 RDN_20200313 2945486.4141614675 612.0479267553743 0.05780746929200491 1.2063144489576038e-05 603827.0810124443 126.0054005854824 25173 4326 1576973 HBAR_20200526 173547798.84158745 19527.742366032635 0.03946797680874104 4.441599703604084e-06 18969730.162335336 2134.7926769790174 39231 6502 137425 CTK_20211202 154472941.3930515 2702.493607932419 2.5973075149064875 4.54208913091543e-05 435927588.3510986 7623.363616175378 None None 236315 ENJ_20210603 1481992820.0751636 39384.347452791306 1.585963362268324 4.211968163724937e-05 167205375.14967582 4440.605209989506 206860 32905 21502 STMX_20201226 19433741.41052538 787.4870015987927 0.0023347600432068673 9.468515618178858e-08 1835174.744999188 74.42469638655116 21756 147 202017 SUN_20210201 0.0 0.0 0.000335649067879235 1e-08 82.43869386641755 0.0024560978043913 41 None None DNT_20210114 95449624.94559133 2566.851779223891 0.12756406732836748 3.4133298846775814e-06 39419682.51074811 1054.7827705437016 60912 6409 301062 VIBE_20200506 1661386.775832793 185.26056279525284 0.008818210890827445 9.800027944681993e-07 182352.17376765548 20.2655212131 19060 None 988132 LEND_20190324 9729677.19149768 2431.5252776820207 0.008727932294270182 2.179137463083188e-06 109309.13684890844 27.2916456193318 11642 5922 466790 LSK_20200312 165862385.83487236 20894.248290721003 1.1970923317968905 0.00015080178837161993 6192518.3671199335 780.0925788941014 178411 31324 155203 SYS_20190826 16358107.065574586 1620.3370088380082 0.02913198134447981 2.8856411884342326e-06 1795537.1038261803 177.8552499019959 60711 4574 680853 ONG_20190605 0.0 0.0 0.38711994954403 5.0494269179498076e-05 38324328.34639547 4998.861344980262 80940 16204 249314 STEEM_20200321 67652710.78936546 10942.970187940602 0.1974760516514875 3.184844837110912e-05 41219563.70505286 6647.7891144839 11074 3838 219600 ETH_20211021 491589810670.4509 7414559.880388927 4170.107932886265 0.06293490750801846 21926381355.419468 330911.0470993895 1701009 1127473 3948 AE_20200422 34390726.34860497 5021.813369921285 0.09711531131710832 1.418682304961575e-05 12000505.833898082 1753.060876420232 25305 6335 661770 NANO_20190706 163132653.36629665 14842.654867830324 1.2298274685394106 0.00011192011170511868 15630289.64884074 1422.4302255658695 98677 46696 329357 NAS_20200605 17408374.765552316 1783.5862037569452 0.3832776932490063 3.9210393059251656e-05 5684998.282831659 581.5914182779745 23428 4921 697228 MITH_20200806 5659852.254139118 483.14539244231804 0.009147182210309716 7.808364494867341e-07 3402997.7547508087 290.4921563097385 109 2097 437263 AION_20190723 28890502.963919364 2793.4687274495145 0.08830868011966146 8.541810050754879e-06 273950.22125386517 26.49830968079199 67628 72603 240336 BTG_20190805 307174317.3086305 28050.09491039211 17.54592985898875 0.0016020607345276175 7367116.477666732 672.6670020007429 74990 None 277231 BCD_20191220 65893729.21902494 9227.43033355231 0.3512110199679892 4.915037660395206e-05 2532882.2086495846 354.4652854569418 21282 None 2755194 DEGO_20210809 59978169.30886401 1363.4629864504225 10.932330485006801 0.00024857440577098105 25338274.236331146 576.1302651979108 None None 244168 LSK_20190324 197544175.81314978 49326.024166480864 1.5112242255341768 0.0003774067710065974 4009294.3827083767 1001.2642872092692 183674 30459 187764 QSP_20190321 0.0 0.0 0.021690816699449764 5.372671530383098e-06 653691.78467821 161.9151224156087 56792 8550 1062367 ATOM_20190826 637596301.0313175 63157.940045158844 2.6186547459180742 0.0002593915265303806 103626815.38944523 10264.781134378332 28101 6740 115107 MTH_20210508 16784648.123055737 293.2200345263177 0.04829504451971603 8.436920760983511e-07 893921.4613005776 15.616394208843992 21575 2021 350782 TROY_20200914 7563001.868885362 732.4943293989631 0.003931737650830449 3.8071626225707336e-07 2307035.4218987366 223.3938224577218 None None 412863 WTC_20190615 55669994.63159567 6411.7142381857275 1.9059311861732071 0.00021964999473771205 6676902.740441336 769.4830025562501 55629 20154 895800 OAX_20190616 10270978.469009683 1164.8752993460305 0.22918822426673396 2.599266359353664e-05 21627489.695635047 2452.8139080002347 12264 None None CELR_20200711 19344629.895334415 2083.3576510110984 0.004972455199720523 5.352705824693131e-07 4948808.277093582 532.7250588718675 21038 None 735036 ZEC_20210220 1962946664.476147 35085.53781432831 181.58156812336708 0.003245573142700559 2272910808.732048 40625.80994764102 72885 17544 114224 FIO_20210206 21476812.578241248 566.7333762416412 0.09873317301420367 2.594682192490026e-06 2889881.202032333 75.94532885361906 55491 170 730561 STORJ_20190524 39817604.077094845 5054.4464568111125 0.29315802376840533 3.727775797525497e-05 6575064.685339663 836.0803735168092 83849 7718 179109 BLZ_20200621 7743544.948278478 827.7196122774269 0.033734618105499506 3.60553744481047e-06 1609384.8350198085 172.01016675591384 36197 None 529393 BTG_20190725 384581376.7143113 39147.24758876048 21.937501603474672 0.002237177723399249 12579549.732700022 1282.8574985919067 74946 None 299895 LSK_20200430 179307427.0221205 20449.874085239364 1.286296186017328 0.00014670109028519426 12205963.035176734 1392.0806923834596 176470 31292 162071 ONE_20210731 790169459.5770476 18930.7459555152 0.07648040619257128 1.8291821458725377e-06 23865087.523506537 570.7813828520669 196559 26674 28255 BCH_20210930 9132364886.688536 219879.88978145292 485.33406074425625 0.011675388735792653 6736397019.004079 162053.43955233254 None 632647 468557 WING_20201129 6186730.897399889 349.4985816765221 9.887617347636311 0.0005585497499063821 2688788.8915770394 151.8892074945065 6982 None 213558 DASH_20210204 1158618674.7571032 30926.241333584698 116.63593646295354 0.003110101471858145 670609495.6866826 17881.82650069996 337901 36490 65272 MDT_20211216 46814812.06614319 959.5874871240409 0.0770280462444432 1.5784142320244798e-06 30235931.85365584 619.5772511856427 41514 585 368604 WRX_20200308 37766578.87037605 4248.981701550011 0.20114841670217262 2.2620915086804997e-05 156885834.06214643 17643.19694296685 None None 24445 NANO_20190804 148870361.5571904 13797.08801931961 1.1157773608674137 0.00010338995833909415 2197749.821956579 203.64749321961116 98841 47163 262200 RVN_20220105 1408860733.2595403 30613.670409992224 0.13430133564750898 2.9189023623930377e-06 484029681.1041588 10519.89075783613 82581 60881 65851 PAXG_20210708 289808391.3078382 8529.021684770572 1805.4034786149823 0.053136740093981616 7117736.791618902 209.48964286020484 23027 None 39244 WABI_20200410 4853546.663158759 665.9527041565019 0.08216827874601482 1.1269247753471879e-05 1261006.9856470302 172.94508728898447 36709 7735 1806690 LRC_20210418 930709518.4897088 15439.094277880053 0.7464634303766907 1.2387495035603803e-05 365311321.2572754 6062.309276478218 69750 9937 144294 EGLD_20210711 1720509731.0975156 51039.810881901605 88.76664493375252 0.0026333084249105295 25358993.630714275 752.2876596817365 281116 9616 31347 ZEC_20210127 952117959.9990914 29217.556262678754 89.03964084996007 0.00273289945304464 950479926.2149843 29173.141824100312 72274 16762 132493 KAVA_20191220 13482586.279469077 1888.0343711672856 0.9864994757211392 0.0001380560916218248 5550487.362072748 776.7653310144337 8617 None 335672 ALGO_20210104 336867547.42746997 10069.746062450606 0.4173048584111703 1.2677069271182881e-05 323368792.3000055 9823.438422772479 34000 1702 343568 SNM_20210809 80117829.34455061 1807.29414544 0.18122386889505543 4.12e-06 326404.49419045 7.42058165 32377 9708 None LTC_20190225 2684239035.0534463 712633.6069469855 43.9458575515582 0.011731052474813451 1646271545.4270165 439461.1679733122 438080 199884 251431 EOS_20200317 1764765652.4062624 350550.90866249276 1.8845666271978554 0.0003746700820460284 3069384427.0477176 610223.3258914831 1474 70390 93580 SNM_20190414 11190319.290991936 2205.7489801979805 0.028039049460601033 5.52895743268212e-06 142284.044380677 28.056672385988712 31627 10058 None HNT_20210826 2197205060.6301003 44826.50682492938 23.214430267887103 0.00047365996027757753 33511651.91856811 683.7612439079554 77331 48516 2626 KSM_20210826 2726667790.341672 55628.18454532786 303.5886368969697 0.006195160752192256 179716172.34699997 3667.3657777125673 108776 None 63186 CELR_20191012 16690880.050026758 2018.5383336154837 0.0049517386716182036 5.988464536770507e-07 7551336.591495817 913.23299516152 18432 None 552887 ATOM_20210104 1399285437.7015789 41827.86122956449 5.805859307755104 0.00017637498166092199 483992027.1440814 14703.092236070172 None 10015 104708 ZEN_20190522 78113782.13308758 9835.449340115129 12.019955165181761 0.0015134545642173408 3017705.3147865897 379.96480181193994 25734 1640 229804 ENJ_20200414 81877434.31466587 11950.722779121255 0.08981849057068503 1.3117135003093853e-05 5906013.455791135 862.5170088862064 54180 15293 101377 SNGLS_20190922 5360196.557173265 536.5247842141841 0.009266807327059262 9.279398857112359e-07 196651.48248867344 19.691868811455407 12 2163 None COTI_20201124 26164842.586094864 1429.0812608053222 0.04631058155298784 2.522470082895981e-06 7146958.157805503 389.28442555070086 32606 1217 173019 ICX_20210219 1298172498.8353767 25115.970825549874 2.2013396501351297 4.2578734714448655e-05 472068863.50889 9130.846711938544 120860 29200 176350 TROY_20200317 1659114.8770301568 329.920706313887 0.0014554178760308324 2.8904793697784373e-07 771440.467237153 153.20910868858883 8761 None 356286 BURGER_20210708 0.0 0.0 4.017863578397372 0.00011825399431608493 12178762.47755983 358.4460449433089 64173 None 43206 FUN_20210511 400422535.01432157 7172.902895324102 0.03902876857183419 6.983939299217072e-07 21818120.699450918 390.42080025533244 None 282 242119 MATIC_20210304 1122561779.7128234 22073.60531372077 0.22460813965482138 4.432910147409231e-06 260496330.14647692 5141.206489861932 1369 5876 30873 ATOM_20200322 408154676.2717227 66241.22344636336 2.1584656934514195 0.00035048320159634315 168680908.76923332 27389.745008681635 31786 8303 84919 NAV_20190816 7470955.405704422 726.1038733795988 0.11337873455880806 1.1008146880482104e-05 375709.7834882116 36.478343996044 51770 14209 487370 LEND_20200410 30965200.035353154 4248.719571363874 0.02621329525931384 3.594360021075478e-06 1734284.749391314 237.80466006684793 44190 5724 93984 HC_20200314 42714789.93124599 7770.134553021867 0.9641446711839411 0.00017410999075864546 73083059.14754747 13197.698574808002 12772 842 804824 LUN_20190426 6271502.598822098 1207.3654572458877 2.3194709252603922 0.00044578414008249396 1401097.3375601966 269.27993146800304 31804 2240 1420358 ROSE_20210104 63352674.58367317 1895.3462723774326 0.041484654256873324 1.2602389478707725e-06 6640888.315357405 201.73980604133152 None 574 219756 ETH_20200317 12178760413.015514 2419174.1964969784 110.99159845334059 0.022066203815126265 11161656313.89003 2219045.2842268753 452898 454930 19216 BLZ_20201201 19262016.41800893 980.317393405614 0.07661500561619586 3.902696586690147e-06 5644899.239317376 287.54587715956103 42740 None 308219 LSK_20200305 185888197.22735822 21234.275726430144 1.3430738065182328 0.00015333946005999577 4723249.138153832 539.2558987140941 178543 31313 155203 UMA_20210805 573301248.9776858 14401.657092057196 9.191478090934483 0.00023114540153295344 33067541.238111418 831.5757293410102 None None 213282 DUSK_20190909 12969568.198563203 1248.3014667637312 0.11343283149115124 1.0914185625157146e-05 2230159.9434122974 214.57967042011586 20425 13324 183070 CVC_20200106 12467039.109702941 1697.8425561874813 0.01864015496717109 2.5378493037330357e-06 3281406.1000637705 446.76206828638965 87062 8110 121680 OAX_20191030 3873879.691699965 411.66812608341104 0.0741681053170151 7.881670924481943e-06 285255.92555105046 30.313479424101086 None None None C98_20210819 342514571.03169686 7603.911118129717 1.8509147210589318 4.1122292826206666e-05 417912311.0953198 9284.875330564377 160107 None 45586 DLT_20200117 3169589.738232744 364.15250699523904 0.038669776797848165 4.440337992162548e-06 232997.23466025994 26.7543947444852 None 2605 5247525 GLM_20211111 522926502.9055805 8067.219333585556 0.5329190836539289 8.206270084361845e-06 9653743.2346364 148.65525881590034 161201 21678 155012 LINA_20210724 80302705.2172836 2401.9965254878193 0.029082401002485072 8.69757544534515e-07 9191551.496347206 274.88862626034125 41554 None 92304 AMB_20210218 5737820.885958854 109.98493357698004 0.03963979406290075 7.600695283650388e-07 1152535.1712879892 22.099177979454844 20779 5471 361087 ARK_20210707 171160564.06308502 5010.874743407206 1.0847314117232876 3.175686135451681e-05 8799907.94595349 257.628251152226 73127 23406 123483 WAVES_20210219 1241185789.610627 24013.25784174955 12.417439763745678 0.00024018050712924636 242018558.72788608 4681.169490321636 161219 57559 101997 JST_20201226 33026320.233005047 1337.3239667487496 0.02314371801533245 9.385832009953004e-07 42235686.465621464 1712.849498636075 None None 239227 TNB_20191220 5105306.484372016 714.7970806017488 0.001650216699199292 2.309427353782235e-07 587473.7401836603 82.21513731300902 15345 1458 1915405 GVT_20200422 3256102.893656625 475.4636723707207 0.7335768972945278 0.00010716256266966465 250090.90042460416 36.533841085652774 20491 5564 159747 IOTX_20190131 9781394.485184312 2825.7333114831195 0.007348685575520559 2.1229514521489684e-06 1158807.1571732725 334.76617169150705 13450 1553 1561675 TNB_20200612 6411785.9031384885 690.2113320742424 0.0019508951530510033 2.1000856277272236e-07 1155877.9478885857 124.4271206462008 14863 1436 2834149 SNT_20190524 92400599.41322406 11729.44189220782 0.026147437526773662 3.324888861190423e-06 17877143.73961372 2273.2444060294124 111536 5755 333146 FOR_20210930 41655413.72709978 1002.650034977488 0.07395704126570227 1.779139929313835e-06 27647925.894794863 665.1094754510038 36651 None 145935 FLM_20210711 0.0 0.0 0.37765387365775854 1.1200616241284633e-05 5426516.989127674 160.94190623107815 None None 83883 RDN_20210527 31947217.216196075 815.4069990540326 0.4785693327123593 1.221589773114072e-05 877955.541289121 22.410577468661977 29444 4644 652257 IOST_20200530 54027463.27010833 5736.023659909346 0.004474694883485528 4.772603705368979e-07 40837593.80969783 4355.6411467031685 192308 52189 468295 GNO_20210930 357341322.28366405 8602.053895438145 237.52916134562014 0.005717219335414515 6866174.565037823 165.26571205480926 85024 2348 209821 STEEM_20200725 75250653.67238589 7888.951665170158 0.2092794302183202 2.1939946418200104e-05 2421737.1796737765 253.88440663077878 11600 3864 194139 SCRT_20210509 235703779.62782192 4019.2603781285334 3.392243260840884 5.7768827008853014e-05 7936373.084956604 135.15391691247 79827 None 56465 BNT_20190522 47654551.24950097 5988.308846139825 0.7323561710255092 9.203853454364668e-05 4563725.252749992 573.5441318597315 809 5140 148813 ONE_20210826 1147703927.2431717 23414.91181809152 0.10961617265440761 2.236991286431261e-06 48068023.19441855 980.9478513804542 202130 27811 31812 VIB_20210131 3939997.3976943195 115.1744810749757 0.021524841909278034 6.300359522402953e-07 3879190.9393313145 113.54460895390174 30409 1095 None RUNE_20201231 262883624.50277743 9103.551644627209 1.2141050519238792 4.2100571047749086e-05 30992454.491823755 1074.7010979071053 25484 2013 286763 COTI_20200411 8299435.794817238 1210.3695772787526 0.016782274201003727 2.4457165584596122e-06 2099860.602788697 306.0171574595141 22836 931 253363 POA_20200806 4626930.595633554 394.97494902339685 0.01665593989307891 1.421260946485038e-06 198863.9612535467 16.96917637835766 17361 None 656446 ONG_20211021 0.0 0.0 1.1899301116730872 1.8018696046899177e-05 5135482.848333347 77.76482298449888 165026 20677 93861 WAVES_20191127 60768280.87435492 8475.980459176792 0.6073985773573026 8.486977129327654e-05 15940194.968228044 2227.2701184282528 141391 56872 22150 BLZ_20190816 6394438.218800231 621.4769205036649 0.03067940881215439 2.977072292147837e-06 448791.17373211455 43.54985379474009 36504 None 1006021 XZC_20200106 29423177.142127097 4006.7280867062877 3.210530927178521 0.0004371124431370507 17781673.3014889 2420.9673839552106 62435 4074 128179 FIDA_20211104 534673949.4540503 8479.622365399142 10.89430148950479 0.00017274605006450402 368958006.23439336 5850.401540481261 None None 334624 KSM_20210723 1583766697.037326 48924.59558133496 176.27139949821523 0.005444758703585121 134137350.98246711 4143.301246354686 94428 None 62098 GRT_20210104 369799836.48396796 11054.167953447857 0.2971985411880418 9.028427103101405e-06 233276108.89838794 7086.5635331354815 None 2409 38944 SOL_20200907 103754712.65869252 10076.662938511163 3.087153751704757 0.00030012252468398034 18512975.690539997 1799.7681523279655 85562 2354 84125 OGN_20210107 28790680.06946362 785.4899511157965 0.14322287151623045 3.880428184109219e-06 15589086.717943704 422.36502329850475 69597 2485 203625 CDT_20200410 2189650.935677439 300.44090702615915 0.003238996611253786 4.4422319466738333e-07 57580.48872094776 7.8970717540292235 19140 290 258072 NAV_20200807 9822478.564541237 834.8672352292556 0.14182114666518195 1.2051545612273086e-05 141914.39989573293 12.059469998642138 48522 13801 799052 ARK_20200725 63967927.82907086 6706.119696470048 0.42381704920141233 4.443113850653382e-05 2140577.3887618207 224.408835423778 62392 21861 108800 NMR_20210602 283051261.57087463 7714.239812227963 49.360330623846465 0.0013459053272841962 32176599.37290251 877.3575047521448 None 3451 477400 YOYO_20200322 1267813.2850037192 205.75901241001574 0.0073037100422855905 1.1859755797982356e-06 372297.69463845517 60.45365597758807 7492 None 2721333 BUSD_20210727 11942421138.48603 318809.83163754275 0.9959994181551395 2.6612917525735007e-05 7816903318.853663 208866.1896174857 23626 None 38365 MTL_20201130 21919586.469646495 1208.3735412175781 0.3395511747611172 1.8718508857108407e-05 3412190.761312609 188.10455605906384 40535 None 376540 BEAM_20200607 30675757.790813256 3170.170497751667 0.4857995472039026 5.0240309944718945e-05 54836237.21650917 5671.041831587407 15154 1509 505180 ANKR_20210916 777499308.9551613 16133.21848298103 0.10153283736133267 2.106573872356823e-06 54792494.73502911 1136.8187948820078 123732 None 5363 TRU_20211002 208080480.02733132 4320.402374405882 0.48100781788646846 9.986191016217967e-06 10100162.351487895 209.68921249545616 None None 87045 QTUM_20200901 347680918.5102227 29746.502318845825 3.372468108991323 0.00028885886110845897 414377011.9173986 35492.24718029618 184890 15100 78545 AE_20190302 121349204.79000092 31694.194785143492 0.4548171503041452 0.00011906179877836557 62796859.48845096 16438.929454017783 965 6325 450072 APPC_20210421 25229110.287414595 446.5264963052569 0.2234209448308167 3.96413029825634e-06 1539892.137111159 27.32211647118178 24835 3136 715817 XZC_20190405 59897034.24192237 12221.959030421296 8.355628699313684 0.0017070494624134573 2534960.6632579733 517.8908007017139 60019 3958 324676 NKN_20200907 12668751.30941013 1229.5209835322914 0.019832909519641246 1.927907643977021e-06 1482770.102648359 144.13638161992043 13689 1021 204746 MTL_20190131 9906553.434304507 2864.5124848572873 0.24414409925503963 7.05950687146721e-05 3421653.5534814443 989.3823707510246 32250 None 588844 TVK_20210722 62188503.57555556 1932.462985681944 0.14381478045475954 4.4531554246153864e-06 15296136.346872984 473.63749632230315 50587 None 92892 BAKE_20211202 334697430.6909635 5855.508795758708 1.7390713381397591 3.0420471980646928e-05 30079447.889315523 526.16070522388 None None 27201 ASR_20210527 7636608.647210892 194.91350679568654 6.24546619514482 0.00015931989964509157 3800031.885247948 96.93763118540309 None None 155506 GRS_20200626 14777901.489379317 1597.0669789556648 0.19616099973531334 2.119937363646331e-05 2451010.2000645506 264.8838509594788 37425 106874 None MATIC_20210131 193908758.70471984 5668.364317392248 0.03972360913524648 1.1626049767789793e-06 86723297.20025551 2538.1615397639766 79154 2912 42218 OST_20200318 5218785.431293028 961.3037073971373 0.007501487357992559 1.3918972816308066e-06 297802.7492399883 55.25715332808958 17817 752 732102 DASH_20200506 751841896.007125 83555.17555739864 79.5235228951412 0.008837764896761439 540258915.1828097 60041.11867705975 317744 34836 74287 ETC_20190905 764204883.4095536 72419.40904206534 6.757041340781893 0.0006398903632478987 822862119.1969022 77924.86589920917 230012 24954 350041 QTUM_20210117 316016442.28170717 8709.123477026795 3.066002142431556 8.47208170136342e-05 479983865.15558326 13263.077884574837 189427 15029 257313 WABI_20190131 6243282.1812707735 1805.2643519092317 0.11896834286988912 3.440006428557918e-05 242933.2036626874 70.2448871817755 34816 8139 2136621 ETH_20200217 28746450516.039288 2883691.5260600992 262.1562443168135 0.02630311275272182 26307305450.095947 2639509.9734413894 451522 452468 20404 DENT_20190812 36801077.09521813 3186.709765351125 0.0005221582648788494 4.519181732208651e-08 481240.25780984334 41.650440645657945 46608 10015 266120 DGD_20200113 40298488.71844975 4940.380639263835 20.205231685077784 0.0024743583953562064 2329044.896629472 285.2178031392109 17534 3348 360156 THETA_20200806 313597881.3164229 26770.08107787254 0.3136791859084138 2.6767176913032563e-05 43113167.176569484 3678.9746497025376 71856 4302 60901 SNX_20210508 2857871910.0640154 49875.29953489139 18.718660848033263 0.00032657945100870127 389531728.3385031 6796.055499056973 122097 6328 31416 PAXG_20210115 99066742.90351889 2536.5377993751936 1872.530614423195 0.04782284268825612 4643899.912092932 118.60126250829632 14378 None 75931 1INCH_20210828 578983071.3296702 11805.208885937445 3.2104626472400324 6.544678928124858e-05 130160700.1450059 2653.3870195977033 254820 None 4603 ATOM_20190923 708663588.4205943 70518.80803808375 2.902197508934738 0.0002889230472524517 141777176.1284988 14114.371482914314 28615 6974 109594 ONG_20210828 0.0 0.0 1.1564993587618917 2.358353042728799e-05 73838924.47448987 1505.7358301751383 145101 19921 180960 DOGE_20200425 257168786.5180828 34310.837707001985 0.0020691235664587787 2.7605746344923706e-07 161596051.33861956 21559.754457922423 139722 153366 112062 MTL_20190719 17048407.515112545 1588.5000115417197 0.3607587619410526 3.3821762363512095e-05 1913622.9993588568 179.4054896669204 33360 None 788453 MANA_20191127 30180923.09650722 4212.138626716535 0.02280957897929738 3.187106166253227e-06 4571488.849948891 638.7588440739729 45870 6409 79427 AUCTION_20210509 141053964.24340114 2404.9555038352537 48.1470279544026 0.0008196285470323005 3863577.6307798703 65.77142254474376 33446 None 32937 CDT_20210809 12392213.855279392 281.5839814825627 0.018306830094132844 4.161734493270674e-07 1204796.307837745 27.388916190905423 21086 337 695021 MANA_20210314 1270267670.8191144 20682.513110945423 0.9547468254670869 1.556338937693139e-05 3327805877.0601516 54246.777526796024 84176 18679 31249 POA_20190810 3085686.2563355775 260.21372402738467 0.014017515995100318 1.1818293069249437e-06 108018.26654220409 9.107116633748012 17758 None 707962 EGLD_20210104 413812513.50979996 12380.187736321146 27.145923263408488 0.0008246507144696896 65976869.06229801 2004.2741476410429 None 3116 49960 PHA_20211002 125177064.82511295 2599.0678607649356 0.6885102227917482 1.4295798130092454e-05 21162103.964069292 439.3967674897821 110487 None 143113 XRP_20190614 17022857947.078163 2070353.5370214533 0.40089664879068343 4.8728801981150155e-05 1476173702.2015498 179428.22979774507 925713 201775 40280 ARDR_20190305 55872806.14601491 15039.915396532107 0.05592876315319349 1.5054977977273265e-05 687895.4917110123 185.16861261544847 69297 6601 910933 LOOM_20200629 16001245.530958366 1754.5536485903717 0.019171519701344796 2.102093873894018e-06 14217842.831599347 1558.9395510568997 21780 None 640250 POA_20200113 2565791.691708041 314.8101847501661 0.011599370305600112 1.420314236754615e-06 52079.045440075875 6.376950448716915 17521 None 389159 LUN_20200430 2000817.406129565 229.17514916232807 0.742838187464661 8.472780185850558e-05 499743.57227314124 57.00053536038064 29108 2136 2572257 SFP_20210702 74764664.02413563 2223.6994947511066 0.6917570145192912 2.0569424237829076e-05 8721971.771903712 259.34820146540653 357204 None 22344 EVX_20200914 6339870.024778551 614.185088919375 0.2904678534034979 2.8126453307549065e-05 242021.59573347238 23.43532694600776 16907 2830 827179 APPC_20201014 3735053.80230486 326.8912435852057 0.03392157926543201 2.9698048038437033e-06 89958.57603480527 7.875795202947823 24416 3166 1517148 AMB_20190615 6208275.761342736 714.1638531752694 0.04295163844109386 4.938825993232015e-06 1955567.7916557281 224.86241250615888 19333 5680 617435 PPT_20190411 55296452.5743774 10412.073673643124 1.5245954958116628 0.0002872713236894114 3903046.8097374383 735.4301036145242 24073 None 635728 BNT_20210506 1497722239.2290823 26153.858759530405 7.721508659500256 0.00013469040155060906 247380567.3092342 4315.191423855078 114162 7117 28535 UNFI_20210718 27338192.009083465 864.9781898843505 6.6196217146251515 0.00020943186274049782 8229682.495307436 260.37103161758307 None None 243649 TRB_20201014 37328461.8263309 3267.326940323018 24.83358957994398 0.0021741887514087972 24149648.192140225 2114.3094630280802 9850 None 204841 COS_20200506 10758858.2616862 1199.4724606227855 0.005459411812474558 6.077036380123532e-07 865217.5613250978 96.30998315386537 10836 None 153547 ANKR_20190812 13290559.199023437 1150.8672606761425 0.005012994339736535 4.3386524675730296e-07 9757617.26700588 844.5034517105246 12169 None 12914 ZEC_20190318 327935791.0953132 82349.60446148172 53.60806880317715 0.013462457426394448 76358613.64423269 19175.743657138803 73857 15052 171176 YFI_20210120 1049480721.3142761 28980.50721370748 34786.03398178741 0.9620224940013696 653802060.3037609 18081.17271908499 69487 2700 20013 QTUM_20190207 142144819.0440532 41736.90369049754 1.7497512966117774 0.0005137661846569018 155104940.56062308 45542.28574516519 174278 15208 244025 BQX_20200325 3623126.8231366444 536.0013850868107 0.025722458174887757 3.806643920073067e-06 262508.2919727168 38.84837082103909 10748 12 311435 BLZ_20200312 3870070.307388713 487.7976045378008 0.017862437679583364 2.2501464049599535e-06 202104.64662472595 25.45929352901939 36126 None 543870 HOT_20201226 103794412.43639995 4203.0351679553205 0.0005760243298209162 2.3328523235350553e-08 7500223.2642077375 303.7530250567441 26635 7359 472191 DASH_20210207 1183542833.1651895 30086.364980417202 118.79118567414926 0.0030241851025995686 736317479.5010685 18745.164800349077 340696 36632 65272 STRAX_20220105 208177425.46839496 4499.911365040578 1.5593823135159037 3.395317202166546e-05 15443878.556985732 336.26690567290393 161073 11165 207386 STEEM_20190421 137221090.22594887 25841.271352423126 0.4472363718188751 8.422573273784501e-05 2141189.3994485685 403.2392208299611 5297 3715 265614 ALGO_20200325 110720944.90752184 16403.090988136395 0.15981577180643675 2.365099524868454e-05 59925732.25662965 8868.356313368606 16204 825 354014 AMB_20190530 6950483.478196024 803.7793724737344 0.04806996756330071 5.558987153062177e-06 709165.352366036 82.01047937068576 19571 5690 582766 NEO_20200913 1526177295.8687239 146361.09801120346 21.68469406556542 0.0020779188353824826 737165394.0427574 70638.29687622825 322224 100432 111243 FUN_20210617 208366804.1880279 5440.850784323018 0.02023198839204195 5.282954275764645e-07 2851841.4060058002 74.46696517277124 3609 323 191066 PIVX_20210314 74307031.02561986 1209.5497076512875 1.1333789563950696 1.8473123581997355e-05 1704371.0635024768 27.779814604821865 66407 9310 246345 IOST_20190220 111935155.59185736 28600.696795007305 0.008339261426452927 2.130272813499915e-06 32714269.132271033 8356.893324501394 194671 48129 81938 CKB_20210710 305007527.5846248 8992.859297826655 0.011315795728055423 3.329647499835408e-07 13302867.508791985 391.4338912240389 49214 5024 123301 REQ_20190807 10828786.863653457 943.7907576134792 0.014815157141264091 1.2910928706322792e-06 1007917.7188899382 87.83675857330226 41398 29622 541329 SUN_20210202 0.0 0.0 0.000335649067879235 1e-08 82.43869386641755 0.0024560978043913 40 None None JST_20201229 35293776.72421485 1300.60463708194 0.024742507593383586 9.115694143334563e-07 55420355.024099 2041.810046164424 None None 239227 CELO_20210826 412879488.512081 8423.371729877146 3.093423142269433 6.312572775052413e-05 17507616.8760699 357.26798619230425 36630 None 103784 MITH_20210805 26630594.492427144 669.5590488838722 0.043043938029757325 1.082303712749569e-06 6577896.810255829 165.3956971804415 32715 2749 709591 BLZ_20200629 6233022.8373164125 683.6413440953983 0.026949139488678532 2.952759966057539e-06 1004267.131133766 110.03541620633207 36201 None 529393 IDEX_20210105 16718933.979398688 534.3852416088207 0.02965713665873397 9.479274311587042e-07 1604209.019934699 51.27513666632028 44427 1946 159964 WPR_20200425 3204727.975633181 427.39318393475554 0.005266107468723107 7.026191170305938e-07 74126.98186626296 9.890233888380042 33310 None 1026824 AE_20191102 74312378.93512006 8044.87992858782 0.22177899277197835 2.4009261890154677e-05 41837293.22619691 4529.205031045085 25110 6357 394142 HC_20191020 62715727.54297062 7889.592999423005 1.413077143455598 0.00017776407889094983 17289960.398529205 2175.0644673152065 12832 846 470518 MDA_20200422 6310374.84676191 921.4555241857925 0.321712397895225 4.69964704834664e-05 86177.0869810976 12.588942643041305 None 374 2010247 JST_20210710 74400963.70162933 2193.6422470944544 0.05200071948870876 1.5302146543275248e-06 47680694.39992183 1403.090149841395 49040 None 109468 NMR_20211202 233694414.22788 4087.853720130738 39.674932026182326 0.0006938283561521687 4670574.638181684 81.67820228039919 32362 3738 3047444 SFP_20210723 80276132.69517267 2479.6843901058887 0.7421166085201644 2.2922774157602256e-05 9957647.5009978 307.57552409660565 368425 None 24694 BNB_20201208 4341263148.865393 226025.15029452776 29.354914757958692 0.0015298183535578523 265602209.8179246 13841.741278258096 None 79327 907 ASR_20210420 0.0 0.0 8.968198336992671 0.00016034603048586816 2381325.241542811 42.57667319891511 None None 190056 CKB_20210220 241628174.7341752 4325.314082397928 0.010092266880169743 1.8043221099467834e-07 17608521.813592352 314.80980050351724 28175 831 255152 JST_20211021 121848559.3765008 1838.3209507071056 0.08483204161104274 1.284581974884277e-06 534374683.2366691 8091.849174958016 None None 180153 CELR_20190531 39556633.96944943 4762.988097145723 0.013900055019117442 1.6752265893218368e-06 38833893.307257 4680.238354864788 14385 None 330996 FUEL_20190227 4267321.325204481 1120.0526182794008 0.008043321164983882 2.111147074229435e-06 410278.021204676 107.68651733784517 1 1511 None XZC_20200913 58183052.68783355 5579.882213362006 5.35306837935771 0.0005126541665577273 12080886.365760526 1156.9657423021154 66364 4161 333585 TLM_20210724 308759961.3954001 9240.67679252574 0.24907214672436212 7.44925256653814e-06 486225775.01724094 14542.045949732454 53886 None 10364 SRM_20210527 272324324.247399 6950.68864687892 5.456636394940357 0.00013928538165790898 188068061.46254528 4800.6005572889235 87381 None 30792 BNB_20200530 2514242773.5231204 266626.15938960447 16.995852092999662 0.0018033238279423862 253571349.5085586 26904.873856876748 None 63865 1123 VIDT_20210204 26172794.475993462 698.3257869539705 0.5659424770142456 1.5087788705702808e-05 12963756.156268315 345.60829353175933 24739 1226 None VIB_20211007 9284368.340212366 167.14927573134736 0.05084327511296056 9.158348562667866e-07 1425685.2594486482 25.680726738549396 32971 1299 6551865 GTC_20220105 221186084.72083685 4781.489406847572 15.427514029926757 0.0003359105930499694 56913141.7552867 1239.196876584924 85240 1898 22789 AUDIO_20210221 62854509.264896005 1120.5707643792198 0.4110634368916287 7.3127477465281975e-06 5920229.15708467 105.31985708769106 26570 2685 59787 FET_20190701 41594114.33184089 3833.3780501854476 0.15328844589538032 1.4128316613449692e-05 30891616.170048725 2847.223946999151 None 287 401657 DLT_20200329 2569717.311868631 413.3385794104841 0.031565084143790965 5.050018414916113e-06 4359142.129854235 697.408184585206 None 2583 None OAX_20190324 3411141.159009482 852.4718539604879 0.14544463346621286 3.6322729975638606e-05 370000.71693900955 92.40242016416751 14381 None None RCN_20190625 17346130.101417277 1571.0792324124545 0.034725444514371435 3.1440593954907187e-06 1564506.2752270477 141.65119331722468 None 1121 1997723 GTO_20191024 7783751.93037002 1042.9798033857446 0.011746654504162781 1.5733901336844163e-06 1953881.4995562774 261.7100786186328 17237 None 1047356 LINK_20191108 977240390.2891995 106002.83234576423 2.681818831938464 0.0002908958328584929 123017700.63890503 13343.681555783834 37034 11522 96268 OAX_20190703 7547961.527603782 698.5550653896906 0.16892105736844196 1.5618917883183863e-05 976058.5163818275 90.24912615422758 12319 None None AR_20210825 1231067759.5941603 25618.012528223146 27.990651358789613 0.0005834945322653928 41733270.76634361 869.973870689005 25983 None 98920 JST_20200914 55915185.117030464 5417.200550746924 0.03901279155227471 3.778306643213115e-06 295567911.79008967 28625.129353810877 None None 173233 CTXC_20210324 2376812.7359374394 43.57378282672235 0.23565937227425307 4.316568850837532e-06 9853553.606550062 180.4873795496349 18753 20373 422109 BNB_20210724 45972042411.20604 1375314.1347437296 297.6400291647872 0.008898341112779382 1619528255.7784448 48417.932568211654 None 565074 142 ARDR_20190813 59204852.76889694 5201.683832052991 0.05926995599871194 5.207798197663841e-06 1820004.1580582554 159.91600152837066 67409 6552 897983 BTG_20200903 168645196.9525343 14782.664831183292 9.635078049548083 0.0008441853831020462 9207695.317839121 806.7398893298549 77246 None 234816 POWR_20200903 45506661.739007436 3988.8752142613744 0.10635718350510376 9.320668088109502e-06 3212930.0926828813 281.56682978314285 81644 12685 213418 BNB_20190901 3301687996.6593275 343965.09393856814 21.13552442487948 0.002201786578347767 161113947.4830023 16783.994568647864 1028878 55979 1071 ATM_20210509 18722293.470346127 319.2131675805361 9.942014519010762 0.00016930935452013195 11191346.905180061 190.58508887748502 4949605 None 141318 ZEC_20191108 301653214.49970675 32730.684743039186 38.58543284305786 0.004185093133719696 166188162.34988952 18025.272386730547 152 15330 210927 LTC_20210729 9348814420.119675 233571.4600546818 140.05207883476075 0.003499071333230049 2129228386.6332877 53196.79701690399 189082 339433 73316 WPR_20190220 6361997.58896167 1625.0259785820451 0.010901858867304307 2.784629139901308e-06 502960.2733283716 128.46963535029002 35043 None 831971 SCRT_20210111 47719997.02809452 1241.631326330708 0.6866131582446955 1.7851800343344494e-05 673395.5417934485 17.508145044768817 None None 361970 WINGS_20190110 7793026.921789018 1959.5360509288896 0.08715110327637528 2.191602108597964e-05 240160.6722944818 60.39357116728195 37624 1219 1978567 ELF_20210428 197499126.18920076 3585.0315873394024 0.4276061940579573 7.764205767307653e-06 30954803.831986956 562.0579630930574 87679 33368 202444 KEY_20190401 8162986.5037190765 1989.3035832377068 0.0031222630980694576 7.608893100546755e-07 1127001.1702730127 274.6479447584235 23846 2830 702225 AUDIO_20201124 9488112.251618352 518.2297124195661 0.135121465758432 7.3636030687858795e-06 1969744.6834996385 107.34355133531022 None 2101 74005 1INCH_20210115 121650130.43751664 3107.547487742242 1.3296163904527374 3.389371022336073e-05 102293063.13303372 2607.5877708685866 None None 25684 ZRX_20191030 168469482.19465232 17903.47464523347 0.28034541855232786 2.9795989488772248e-05 23118873.759748388 2457.1463414485524 None 15985 142278 NEAR_20211111 5809736202.852393 89460.12819851273 10.80039545516588 0.00016627171537094676 404657653.69056576 6229.6906160904555 None None 6661866 IRIS_20210108 40688391.75791187 1039.4916505980138 0.04348154443531132 1.1015392450312762e-06 5164226.68013422 130.8278818584401 11167 None 805488 YFII_20211225 115037800.80522132 2262.472285750052 2896.689260534664 0.05696453063405012 20313098.63281367 399.4650531233773 None None 989231 AUCTION_20211230 171949792.23178178 3698.9582148332415 23.940598763250406 0.0005144538402701817 3750955.4636124577 80.60339100206593 86403 None 88829 CTK_20201228 20042388.139862534 757.0568057671492 0.8033525092358965 3.05476860222642e-05 5364861.337978132 204.00023379701332 None None 235753 TROY_20200315 1990706.4590889309 384.9438321335048 0.0017505690482911445 3.3787585345731494e-07 819201.9593607597 158.11347826760357 8784 None 312111 PERL_20210511 0.0 0.0 0.1375330685355425 2.461424227171873e-06 24290644.537227504 434.72876446511145 19135 650 314180 REN_20210823 540798729.5686761 10962.117772211373 0.6130702408204689 1.2440258088229947e-05 39317173.28696304 797.8136115935085 90072 1189 128608 WAN_20210220 189222769.54898852 3387.336260548508 1.1534961654436848 2.0617490053993725e-05 24719590.80094947 441.8358142363955 105328 15868 363625 NXS_20210421 109930708.92472267 1945.7610382491516 1.6089378506982035 2.854834396745397e-05 1389528.648768757 24.655235626700957 25209 3843 432623 VIBE_20201014 2717527.621650319 237.65727424 0.014522004809373618 1.27e-06 85132.074591097 7.44509702 18709 None 2256816 MFT_20190616 29091814.454231665 3298.9808271220286 0.0033009613060201786 3.7422780733997755e-07 5081024.0836913455 576.0323510650104 18700 2064 885644 ETC_20190723 712761902.3246149 68872.08103257915 6.3563464093691975 0.0006148017109261051 683673794.0540287 66126.63804480589 229210 24851 498409 BAND_20211204 315296411.64589727 5872.743402395158 7.589292083047121 0.00014122263766619273 61249583.65892749 1139.7410543193837 116607 6335 265509 POLS_20210809 106670544.34838429 2424.7528632445524 1.4736544567509675 3.350729118562699e-05 53704477.69512303 1221.1082210343377 None None 22359 VIB_20211111 9156024.175773654 141.25207514379147 0.05022500274884724 7.737509551055378e-07 1050141.5294339457 16.178157629153247 33088 1307 4568126 ONG_20211216 0.0 0.0 0.7941099429712413 1.6249528621393427e-05 6229690.902187005 127.47547302929061 None 21015 97967 DUSK_20200625 8921604.649062917 958.9171176499484 0.033431858522705006 3.5967824479944726e-06 501785.5502559983 53.98483780350701 17362 13330 976071 TFUEL_20200905 0.0 0.0 0.008989108112789742 8.573096718612842e-07 6726374.4873866225 641.5081265284612 72711 4373 65774 ONG_20210722 0.0 0.0 0.6543461763555197 2.0261299823875486e-05 4879949.915155583 151.10370004323622 141607 19693 156257 DNT_20210729 103571445.22706866 2590.280766329278 0.1379929266612851 3.449070425448432e-06 10708557.74445735 267.65552923066497 None 10249 228003 NAV_20200801 9224808.697711963 813.9316855731992 0.13310605721446897 1.1742727687442844e-05 177244.0814091563 15.636621095650838 48502 13810 799052 CDT_20190530 8093945.740747215 936.0135375823957 0.011998510969036171 1.387551764933369e-06 527178.0500816285 60.96480102511046 19785 292 386642 LSK_20190901 149598466.82256132 15584.263499248857 1.1090201915239501 0.00011555727671438677 2405541.976369512 250.65177526607857 181991 30955 161832 TNB_20200421 3161897.822581973 461.7425103362437 0.0009589033681724618 1.4005385923987188e-07 314994.75291345146 46.006961963141535 14980 1441 4384247 DCR_20200315 119787968.73162237 23120.174670415945 10.672320830538688 0.0020598556295214608 35288118.6218392 6810.929970397788 40840 9744 216967 REP_20190813 119926404.80890982 10538.644111114885 10.902400437173618 0.0009580585555558987 7360894.186041293 646.8454073135077 126045 10043 203996 SOL_20211104 72820184828.91289 1155426.5539974798 242.04614187434888 0.003840870248550443 5949095156.100889 94402.25906482412 843402 82808 4135 ONG_20210422 0.0 0.0 1.0432446204990322 1.9287899635257837e-05 10304278.177412365 190.50937756538528 123181 18448 153956 FTT_20210128 855607585.8865968 28251.997503871804 9.590080322176165 0.00031538931264133606 55073657.79950285 1811.2093428314342 50737 None 4837 DOT_20210325 30045752287.980137 568594.3246630281 30.570941813601564 0.0005794786755175432 1939572978.8947408 36765.01652230677 None 19873 15796 STX_20210104 447385898.68158925 13370.581527203649 0.48270197854575086 1.4663731552658381e-05 12842542.792283196 390.1363746776511 46829 None 83877 QLC_20190614 9356294.175242921 1137.7723564742662 0.03909811475817757 4.750113597532907e-06 590494.8854013656 71.74048676687153 24977 5792 940522 RAMP_20211007 109346719.80880415 1970.0122725968147 0.29662391879211336 5.347071075878956e-06 6808577.035052479 122.7343549376328 33682 None 104660 BTS_20211007 125896490.28977 2269.241290527692 0.04645290993093906 8.37297855069883e-07 21195228.172608078 382.03675750400384 6974 7349 234700 ORN_20210506 393538008.0505514 6874.304261645331 15.860646045923774 0.00027666572414565094 27695251.009650998 483.10306237178156 63471 None 51666 XMR_20220115 4147944595.569697 96171.95097773938 229.63816976881824 0.0053242636917601735 227136023.0915693 5266.250301745149 464680 249475 29806 XMR_20190512 1383472056.7661598 189027.84796959063 77.73459839420421 0.010672391562492532 181377852.25668833 24901.85194282323 317143 157703 117450 LRC_20191026 28122748.507159494 3248.2450732836423 0.029217202700995794 3.3746802792822875e-06 4364422.303873125 504.1047231683962 34018 2438 558420 MDA_20190708 16986499.389121193 1486.0701635775047 0.8648688337828488 7.559406007835574e-05 853839.7032502422 74.63005637799436 None 364 2408870 STMX_20210825 287015229.9983075 5972.668604619646 0.030815450196888812 6.416544934812229e-07 45889909.7981825 955.5423217676914 70283 4784 93146 GVT_20190426 15858070.344189227 3052.934452382358 3.5802105081164615 0.0006880884107205753 1502252.0401754815 288.7210728203538 21456 5794 198674 TRX_20210115 2152424748.4320817 55111.398383469874 0.0300361996728449 7.656631305332834e-07 1255212720.4670877 31997.06059708056 562086 77066 32747 LIT_20211028 124627011.7677045 2129.3568008988864 4.492649020667886 7.677377457977293e-05 19754269.61331971 337.5758567615868 61849 None 371757 BNB_20220115 82170008339.50629 1906437.6259398249 490.0587450233676 0.011362050129234484 1775644712.449493 41168.46080075417 7166131 775808 103 RLC_20190621 24908091.800575513 2607.7170522210963 0.3560094383697399 3.727189905277994e-05 1023435.522340816 107.14711848762681 24915 3319 714682 SNGLS_20190906 3863163.9998923736 365.50539000301836 0.00669397540185154 6.333368425447437e-07 22729.32261295765 2.1504885442049466 10 2164 None WAN_20200501 17140352.997847073 1980.8703335595144 0.16112547180635106 1.869269176068997e-05 971187.9158656928 112.67067925053375 104758 16247 828507 VITE_20210220 23139592.13386863 414.2291103558961 0.03967146767917726 7.092569698907409e-07 3387685.968685102 60.565943879916595 None None 414630 LTC_20200404 2603292926.6559134 386671.8302808098 40.408450559995266 0.006005878633515912 3030615072.713705 450438.1152798313 133278 212894 140377 AE_20200403 34577942.88759091 5095.438005296769 0.0985854187722848 1.4461476566426859e-05 8497420.28031972 1246.4849851961128 25322 6343 695802 TROY_20210624 14074347.545812326 417.487480760739 0.007398297764761976 2.1960683349202761e-07 3081953.2719617686 91.48293574362413 60064 None 402786 BCPT_20210131 3219094.896380422 94.09131545021722 0.028015625328740985 8.20022337724695e-07 1089251.8459380239 31.882595323 10439 3219 1647629 MDA_20190627 18046470.37539037 1390.3668419293447 0.9212429172746472 7.072495561106315e-05 1132599.2726821566 86.95104383818787 None 363 2360786 SKY_20210201 10971493.229005232 331.9839379978349 0.5994938083512863 1.813152293161623e-05 1677378.129551525 50.73183341892601 17240 3846 739970 LEND_20190509 9432818.10769823 1583.524541339148 0.008477864408867539 1.4233827159031985e-06 1075084.1364271815 180.50019487591402 11576 5899 565182 NANO_20200901 151386906.32141483 12985.31328612103 1.136126447261836 9.74520069722548e-05 15099040.852646006 1295.1303422191238 None 52559 201446 BTS_20200422 43619457.33679957 6372.0284099879555 0.01609457672917699 2.35113195868501e-06 18235808.8483181 2663.927961399952 13211 7007 127468 REP_20201015 72296222.71122584 6326.221273296863 14.04938590677924 0.0012293799131835302 6950060.681768973 608.1593212875268 136246 10412 106961 DOCK_20190430 6144046.819452023 1180.485398923694 0.01195032092139377 2.2950700371075748e-06 1416242.2432521684 271.9906150767185 164 15309 209394 HIVE_20210117 49239945.95476582 1357.007775373608 0.13438223494392512 3.713295753778695e-06 5003451.563582699 138.2570802832812 10538 98 147152 FTT_20210610 2953039350.4007854 78673.00143350029 33.70438530604383 0.0008998958193552786 108605578.58969526 2899.7326384707103 139629 None 3336 POLY_20211225 492535372.81872714 9686.79532252812 0.5468903207135397 1.0754812693302739e-05 17973982.067118663 353.4654082603474 63934 8490 142188 MDA_20211204 13558450.534794053 252.7137285371885 0.6907396147348771 1.2874582021008454e-05 1209549.934416379 22.54460220169385 None 390 1286126 ALPHA_20210203 337751829.255281 9483.902277364741 1.9201028376938587 5.406498392897293e-05 204689543.40016726 5763.512587508241 31338 None 61683 CVX_20211230 1931910237.6461065 41654.49816476911 44.24144767561789 0.0009508227539115655 61709668.85123397 1326.2440621362773 28170 None 41244 SOL_20210212 2396719732.1723113 50283.49225555457 9.200179305161805 0.00019238556951381628 201126010.15108156 4205.759553539147 112980 3789 80032 BNB_20190531 4597989593.587913 553640.8816274196 31.761559971754373 0.0038278848328185525 519785080.1368096 62644.197147447856 976854 51950 866 ADX_20210729 54055174.65573313 1351.8984786235387 0.433513889345677 1.0830942570700564e-05 31956839.556418505 798.4120058969282 None 3883 13599 STX_20210610 984030956.3806447 26215.712124288108 0.9338107219955116 2.493243407830992e-05 13886935.830659926 370.7765438886369 65589 None 60665 MANA_20190615 76784666.4986753 8828.041535203765 0.058563133339025304 6.739930987119253e-06 19560874.598412048 2251.227646542887 44738 6266 128669 BNT_20190220 36184769.97451424 9243.42011161083 0.5672920555717169 0.00014490170969990972 2647155.5325615914 676.1550047147767 851 5097 140738 MANA_20210723 782180467.7567121 24184.336860690655 0.5899966702187064 1.8224036856053285e-05 99119981.42650323 3061.6548971679927 149838 34700 17778 MFT_20190915 9723270.086672422 939.5219326201311 0.0010769580615012887 1.0407853833078249e-07 286499.4540082786 27.68765606729543 18759 2235 866690 ADA_20190324 1976001729.671846 493736.20738318504 0.06348656329448774 1.5852351720420926e-05 230447390.6556978 57541.8309033677 149121 71972 114541 SCRT_20201224 32637611.0628551 1395.7103949232858 0.5746304915170183 2.462756635301443e-05 1305110.241178457 55.934534517594784 63151 None 377995 ZEC_20210125 962009714.5478994 29876.72042000345 90.15424191778985 0.002794286911732841 1323944905.1680627 41035.0288757349 72274 16745 132493 SAND_20210626 131897673.44793157 4144.655736572217 0.18767152549493243 5.903632391538348e-06 34884935.14563566 1097.384552927558 133965 None 23111 SNM_20190426 9338033.67082922 1800.0746114258982 0.0234386512887096 4.5130336081747935e-06 168812.58642196876 32.504296711485416 31638 10039 None CHR_20210117 11772463.407109587 324.43830042836936 0.026220308933451748 7.230543243382035e-07 3947785.7051963024 108.86460311918825 36888 None 518597 MASK_20210613 66229739.633214526 1846.6147653729308 4.4662180753316845 0.00012513635632835382 13567876.932258405 380.15042117894114 None 19 209625 RCN_20191022 21387538.128402896 2602.6970962699143 0.04200077123068682 5.110673888351095e-06 1768043.2091046546 215.13634148807682 None 1125 851208 LINK_20190706 1345649892.9345312 122434.206283109 3.6921077800615745 0.00033592711442776677 222848736.68042716 20275.93383681791 25121 9306 152412 NAV_20190627 13331048.870373636 1023.4410728446383 0.20365099924334334 1.563453852567328e-05 835814.278500457 64.16649358989258 48333 11254 919129 XVG_20201106 67522567.0869393 4345.44863180985 0.004114436032573228 2.6407384196465397e-07 1551248.8677752886 99.56267277305135 288204 51306 419169 BQX_20210204 539620744.6403425 14403.552016508405 2.4245288549799118 6.463805441762854e-05 17264632.551719844 460.2759237475334 36093 593 65097 LUNA_20210804 6044833875.687205 157332.98053280302 14.58095199828581 0.0003795587229503939 927862415.7727492 24153.311364427744 96683 None 19567 LINK_20190616 625956738.7238253 70992.41280649732 1.7266371555081024 0.00019582113729800957 107831099.39699905 12229.325919840592 17755 7487 223883 QLC_20190730 5115097.894892376 537.6684951166292 0.021222875973609542 2.231181280129247e-06 181551.1013710654 19.08664119178162 24910 5764 940522 CRV_20200927 70668958.84098735 6581.176881147859 1.1148665007964185 0.00010379333350553057 75019133.64388986 6984.231701314783 37706 None 14440 FIRO_20210206 53688912.011492044 1408.5227858248873 4.6723522542767055 0.00012240593369116366 8905222.788131813 233.29835825442183 68496 213 276546 OAX_20210124 7118573.9372377815 222.79167828667588 0.12739654762690775 3.9751577361133115e-06 692190.1000637782 21.59842540778876 12955 None 1543553 BCPT_20200704 2684900.016699495 296.20460085 0.023025032270636882 2.54e-06 78090.0305875011 8.6144799 10481 3172 2322058 GNO_20211216 851261229.7735498 17448.743000621387 456.8138885200695 0.009347657185107291 18218683.18648994 372.8039122083392 97666 2407 136852 XZC_20190312 39806892.67046321 10295.306919023402 5.7073058597028075 0.0014761814006047412 2627616.8594005676 679.6269958387234 58918 3941 296891 XMR_20190725 1381067768.1216464 140494.01227645684 80.44443047624178 0.008203691153439396 117476041.05409819 11980.16013080254 320225 159707 109892 YOYO_20210203 3050602.386808021 85.68564617249442 0.01740553433888443 4.899418192774219e-07 1681113.879567977 47.32104033876212 9394 None 1427347 JST_20210814 101294320.78171277 2123.5848467602555 0.07064626580036738 1.4806711342335316e-06 145520740.1450832 3049.9610548984288 50528 None 152000 OCEAN_20210114 179394991.5073298 4824.328575381303 0.43074072512952155 1.1524602095045943e-05 45175642.9949223 1208.6883815032304 36612 1379 63800 NULS_20190314 20675016.599479955 5345.977653784752 0.5166123058111785 0.00013363672094987447 3798271.4641979085 982.5328162786939 19661 None 626169 DODO_20210707 157456390.63033867 4610.638063155659 1.172429881429455 3.432834868899797e-05 121207069.87774539 3548.9018356151 93994 1019 25829 SUSHI_20210428 2175528811.9708085 39489.95997314877 14.166670820699341 0.0002570823425217801 745630350.0052772 13530.941705415351 78021 None None POWR_20200323 20947264.111721154 3592.631022093232 0.048755730032133286 8.361627576240951e-06 1208091.9691300027 207.18826519580412 82469 12818 249499 CELR_20190426 29057618.082094524 5593.660286795347 0.01226006372944689 2.3562881980831456e-06 11194616.556680707 2151.517598657944 12452 None 386585 NMR_20210128 132669932.0170834 4385.6562906829995 25.534025819394472 0.000839738415279252 5718887.732798728 188.07726426957316 22588 1996 2335404 DCR_20190726 272197601.2964899 27483.999020542215 26.82193628727103 0.0027123966212935493 17665001.732707232 1786.3919480592726 40582 9550 324578 AST_20200310 3092649.181827453 390.6221857399861 0.018039538353558544 2.276231252901629e-06 4457701.891839201 562.4733939115199 31809 3483 336261 ADA_20200707 3259049437.150048 349128.9630030444 0.1053035083626078 1.1270649078876891e-05 436788456.6941107 46749.528991491854 158350 82363 46523 REQ_20190806 10615720.851053469 898.7840176939168 0.014538585927093011 1.2317413445848962e-06 296754.8155554536 25.141728181635067 41405 29625 541329 FUEL_20190314 6004086.283587947 1552.4878032873771 0.011316887246323843 2.9262286701511357e-06 8382635.370446036 2167.513682739068 1 1520 None AVA_20211011 158493148.3497161 2896.5502717351915 3.005711861708762 5.491522042807644e-05 16980152.43951434 310.23227009795835 124499 10808 58653 EVX_20200105 5366709.318096843 730.2126720770933 0.24717883196919962 3.3615690646112954e-05 1228539.4998910746 167.0782382369003 17949 2889 801156 OMG_20190704 345754461.6041444 28835.926351002483 2.480589301838695 0.00020669353675775397 186825783.37106323 15567.14039437315 289671 40239 None AGLD_20211216 118995079.01213762 2439.117526492393 1.5591947039703262 3.1905373159225064e-05 15627792.706232535 319.7872316252134 69336 None 105508 AKRO_20210131 50040884.71952492 1462.8012022233106 0.019857660939750988 5.812372686485651e-07 15040708.62959261 440.24421753033204 None None 187936 STPT_20211230 138390535.52091584 2974.9699246558503 0.10409882278898348 2.237257923585588e-06 16930355.580729697 363.8616764080974 None None 430598 STX_20211207 2379963484.893485 47151.943961162135 2.2602254519453395 4.475869860694021e-05 68126817.63830733 1349.0989118357734 99014 None 41098 AION_20210724 55211309.117512316 1651.718954485929 0.11188438242376246 3.3449311330637406e-06 3526945.333826936 105.44268106203558 73575 73387 347500 HOT_20190325 206008537.34112075 51589.43720469948 0.001159836537461104 2.9045065311049206e-07 8002600.2413898595 2004.041424476865 19707 5787 221294 TCT_20210826 18871435.44935341 385.0988137204377 0.03260351685154405 6.653217078446517e-07 2720180.5787526886 55.509201554613355 None None 1235757 ZEN_20190909 31164430.223820876 2998.553169252168 4.277699378383377 0.00041158811298770725 4946045.268989177 475.8944607707272 None 1788 209860 BRD_20210916 15573308.368145386 323.1030417185834 0.18368623281645188 3.810980887415086e-06 1311969.7541019102 27.219740865093478 838 None None ALPHA_20210602 236268947.91908848 6439.478844693046 0.8266246231592543 2.2539526577580163e-05 41316709.10110544 1126.5803567807602 65800 None 41375 OAX_20211230 11513206.026963014 247.36977241746516 0.19969196182633842 4.290529938827886e-06 454495.4696578619 9.765172327389587 None None 1057415 PNT_20210304 52802595.18967686 1038.547630825495 1.4437928602378793 2.849610582191335e-05 22089833.711600684 435.9865299032784 None 192 419542 STEEM_20210111 77563153.99258938 2016.6259886652645 0.20665981354712018 5.373112481367874e-06 30175570.704236772 784.5586076964346 11913 3835 219133 RVN_20200707 123469655.82462317 13227.181148669602 0.018889573563729653 2.0231844417929217e-06 9114378.514775544 976.2035519485097 32375 8323 199638 EGLD_20210206 1511709389.5658362 39893.73243797063 88.90956532335403 0.0023292461195576937 205628902.26329145 5387.050548765538 138081 4679 47707 PSG_20210325 0.0 0.0 18.196381716423225 0.0003451205946615221 9027478.00972323 171.21912628363498 None None 29026 DUSK_20200520 5889587.410569707 604.4248102052676 0.022062974184662052 2.261030031421814e-06 304771.0181769113 31.233160998033192 17372 13333 1128839 AKRO_20211230 61898634.822405435 1334.6150977248 0.0228398709957493 4.908005627275909e-07 6486982.421140816 139.39722441043725 50834 None 242863 MTH_20201226 2423929.605265623 98.2225526314569 0.006985080094944412 2.829027002214493e-07 175348.72968679864 7.101798180481869 18898 1888 1508816 BLZ_20200422 3160964.43305397 461.6664411425041 0.014343313484090799 2.0953034859716975e-06 221260.73310088064 32.32226541580856 36079 None 563523 GXS_20190712 98015619.42473485 8631.904006231614 1.6371787111610154 0.00014387394325048207 7134653.724186509 626.9876086389543 None None 741418 STEEM_20191113 45704015.47699799 5195.022577815039 0.14091185507555593 1.6016979273248684e-05 426963.9706676601 48.531566523916844 10635 3788 194536 SCRT_20210401 227455502.7219702 3867.0211206427143 3.2701375870960128 5.560694382730262e-05 6105722.177510589 103.82454594256149 74175 None 79970 BRD_20210804 9704079.362159073 252.55818848167658 0.11522596333919398 2.9996554730202623e-06 626680.423916978 16.314251657879613 799 None None ENJ_20190224 33931745.99766819 8246.3217286855 0.03932844815436042 9.557864679084613e-06 2069026.246208617 502.82871068595216 38247 11247 18087 RVN_20210110 140039151.17186168 3460.6906734839804 0.017756830292012235 4.393995925352677e-07 26936150.970707167 666.5454118982819 None 10703 220085 QNT_20210804 2140649606.1732194 55716.1354210607 165.05999332105884 0.004296698890614755 71688498.63082388 1866.1329516581275 37242 5740 173273 OST_20190426 13408546.021855062 2581.176859514703 0.022667987859022673 4.356609675545042e-06 624013.1356516368 119.93043587964638 18215 751 1002831 FRONT_20210806 37958035.80149288 926.4512405887324 0.841973259215828 2.055052902655665e-05 32672039.61071339 797.4453951211093 71191 None 254647 MANA_20210107 123016590.2555391 3356.2352550588994 0.09251550080366337 2.5065582687712422e-06 44682208.4447645 1210.5923663740232 55976 7775 76796 GTO_20200430 6302535.607540992 721.8972273702608 0.009439593966880626 1.0792032463201684e-06 17494058.179670315 2000.0483543099892 16773 None 999939 TFUEL_20190920 0.0 0.0 0.004597999897776851 4.4835425308565963e-07 795512.4519754685 77.57098720212123 70025 4028 338625 LOOM_20211221 72284773.313337 1532.1491726698655 0.08653328308250463 1.8360696267116405e-06 1887744.1774873503 40.05429614847281 39444 None 400372 STORM_20191113 9585407.911287714 1090.5563694931834 0.0015042563802758835 1.709290053812297e-07 2538765.464026568 288.480515258104 26101 2541 2077933 AST_20211011 41544002.3852433 759.1378235481451 0.2404837141610108 4.396364791090089e-06 1212703.712767249 22.169850143218337 46210 3713 204668 NULS_20210112 23728488.563164804 669.8608637519401 0.23918732011332064 6.728814165812605e-06 24514234.075050093 689.6340718650694 35892 5102 933536 WING_20210814 44484132.72833573 932.5670933826713 24.026519168242604 0.0005035704716375887 5881133.02500286 123.26233818665588 14565 None 410110 FIO_20201106 7881177.969718016 507.03760230313435 0.06955701793439449 4.477844520475044e-06 1282663.744452111 82.57353449401997 55714 149 236963 STORJ_20190419 39384551.321566984 7469.587276652486 0.29064223630322067 5.511411364224057e-05 3890534.564959582 737.7570681727902 83966 7683 192994 TKO_20210710 104793291.61971307 3083.4275182877773 1.3984305949378264 4.114850644204974e-05 6783494.238301225 199.60279571597567 294866 None 20199 LUN_20191216 2248663.4331293073 316.2306905907325 0.8316475116496174 0.00011696542055363592 73401.49917810119 10.3234087763989 30309 2165 3189870 DASH_20190830 718818203.0042521 75790.07511896217 79.77398119845708 0.008411133722407935 270743673.3392668 28546.415845628497 319629 30210 87828 IOST_20201208 99904614.85078733 5202.663487835377 0.0059384668700449015 3.0929709287263487e-07 23562462.287134584 1227.2192883811977 None 52149 330054 RCN_20200109 21688494.050042737 2695.200846224718 0.04224710429257004 5.2649057077189385e-06 2536476.557089963 316.10000558705366 None 1134 818164 BLZ_20190522 13122709.74256469 1649.1194334839636 0.06360248007039716 7.992867933492006e-06 1219758.6849717463 153.28600502556108 36578 None 862077 REN_20200713 170195198.40361992 18340.357582965145 0.19391464395319355 2.0887577410312602e-05 16020530.201566363 1725.6564946185301 15892 906 198757 ATOM_20210120 2148725475.8279214 59336.01527047524 8.958723392737584 0.00024856422364225353 934836766.0289378 25937.509709093923 None 10416 102282 SC_20190811 98034167.68729158 8652.182125844554 0.00235182950761183 2.0767322030669143e-07 7625300.921383919 673.3357129103376 109478 30742 197380 RUNE_20220115 1911685326.953445 44353.27329167242 6.3972726224980905 0.00014832362748992334 49173804.49096838 1140.116654389601 None 9259 69653 AION_20210509 263341530.2754343 4490.54393706826 0.5280505888103414 8.993822019454775e-06 351883162.6611792 5993.316935310119 73289 73232 250319 RSR_20211002 441678667.46814513 9171.076575293662 0.03355203394679834 6.96653569227421e-07 51405001.18881425 1067.3414795392616 82238 None 112469 EPS_20210813 202481789.319845 4554.486742202165 0.6716097176050625 1.5106631127853029e-05 46349413.68824912 1042.5452122364636 19640 None 26035 AMB_20190605 6027802.279365675 787.1403293153165 0.04173754264588138 5.444066408187554e-06 506605.1331684686 66.07940508375853 19357 5686 617435 CRV_20210616 751376986.5264773 18605.280415019002 2.257998932575175 5.594523910213541e-05 189963218.8473063 4706.617680683959 132406 None 18193 QSP_20210204 28313542.790355958 755.7229302866285 0.03973618964442594 1.0593687030410252e-06 2136025.960854305 56.946553558881774 58812 8171 199881 DUSK_20200208 11728127.527374372 1197.4648658029746 0.04551745331251241 4.642920075704468e-06 1537997.1499748006 156.88043430213847 17696 13338 848195 WING_20210207 20516317.91285541 523.2083623982638 22.139629469149007 0.0005636305188613425 10464277.20769637 266.3994896708418 None None 427230 LOOM_20220112 65775971.07501412 1534.3563514478694 0.07823827427631888 1.828602451181126e-06 2261377.8751694793 52.85342965231155 40057 None 403167 OMG_20190914 145848652.33089995 14090.709503575725 1.040415497668167 0.00010050041873881736 70975624.7818361 6855.991694482386 287773 41449 None LSK_20210930 381375110.9920134 9181.284656677528 2.639562242890891 6.347326780396109e-05 8026372.246739561 193.00930541937592 198112 33012 191632 ONT_20200411 256004824.44474313 37332.65556780766 0.4017558030074079 5.857783454078848e-05 100438531.0016118 14644.397433691298 84086 16507 252464 FOR_20210519 39978145.2258154 934.0419048022322 0.07076660559184467 1.6541644473105846e-06 8153178.722964698 190.57998138109878 27384 None 122353 GO_20200207 23192096.769556865 2381.2702354364505 0.0257297296231748 2.6422126885532304e-06 4995030.038704538 512.9448284634235 10628 681 728796 PNT_20210617 46924827.311556846 1226.8099266625538 1.032203831960026 2.6986096272235245e-05 5477238.979911803 143.19778113715012 39831 309 328870 ASR_20210204 0.0 0.0 4.005140016837393 0.00010677662656687122 1861499.6661709894 49.627392269308764 None None 183417 AXS_20210107 33233323.47422621 904.6479743123829 0.5995439141128116 1.6243675301506195e-05 9916486.631067118 268.6712101900714 None None 19930 QLC_20210110 4136029.332693348 102.21083187902155 0.0172250694484014 4.2585653139816106e-07 784327.4424599317 19.390979242604775 None 5595 940522 BQX_20191017 6817982.66671799 851.5922172522249 0.04841117205136485 6.046741296109249e-06 431007.8607352996 53.83453694718726 None 5730 349258 XTZ_20210617 2591399752.004091 67750.68822927335 3.109109447374082 8.123577295417624e-05 72918980.34332542 1905.2496644090331 121205 48825 78747 GAS_20200109 13442099.459572662 1670.373742851608 0.9645005615580475 0.00012001360125823025 1336895.1575358387 166.35096832020744 323214 98684 215815 COCOS_20200414 6011931.606053477 877.3362083825216 0.00024847856065979133 3.629607073287276e-08 387518.68759638094 56.606113855296165 14743 218 63890 TWT_20210221 256375268.39606547 4588.488267991958 0.7456776801026187 1.3301829950246038e-05 48079613.700152546 857.6719708506438 None 11556 9818 NCASH_20200224 2654660.6238567024 266.8266401162537 0.0009007546253734607 9.052188846201257e-08 1148031.7495506743 115.3721546981658 58127 58386 791025 YGG_20211007 710592946.9758043 12807.960084708504 8.078081135157916 0.0001456189850174509 134435961.10104153 2423.400790093264 None None 55588 MDX_20211120 583810418.2751878 10043.005442629594 0.7509382501397956 1.2907267553530443e-05 15827394.939870413 272.04423416475413 28814 None 30275 SC_20190916 75910227.26178624 7366.213195774048 0.001799927400546872 1.7466247090295228e-07 5700632.337111372 553.181494657298 108840 30583 208870 CDT_20200129 4426285.808304877 473.8197863054556 0.006400455816807657 6.861562841156666e-07 140578.57531224535 15.0706255340788 19307 295 202251 BTG_20210610 1225062076.570425 32637.05732579589 71.54255266423779 0.0019101622374643262 1058030513.1192346 28249.060971172403 98892 None 157405 ETC_20190703 860011423.0945069 79683.80207406753 7.700866127984814 0.0007120438242346545 979580448.3080578 90574.77392368224 228333 24731 547653 VET_20201229 1294377933.6266565 47737.42290128852 0.020192364353416377 7.439319429601263e-07 408988955.39626443 15068.069440104826 145458 69752 129519 CDT_20210603 13784294.750346322 366.52689582998266 0.020433916542068335 5.433415445229846e-07 657494.9699023268 17.482910421374513 20857 333 455228 MTH_20190528 8830882.129633404 1002.3694665260165 0.025855765404592914 2.934817767327568e-06 576707.9459680461 65.46055395773949 19415 2007 2077678 PPT_20200927 8888228.800587768 827.9592138192208 0.24498615886421723 2.2821353840506612e-05 354422.6249956271 33.015759631503755 23618 None 1045024 LINA_20210805 123783039.50559463 3112.420688360677 0.04452535157142196 1.1197143882139084e-06 33986296.365294605 854.6803944103501 None None 101818 LSK_20210916 549649365.4771782 11404.011981756637 3.79536501135794 7.873157976173102e-05 12432344.792416245 257.8982898140937 197836 32857 191632 FTM_20210310 1345623657.5842452 24619.115433246967 0.529407772224685 9.68072704886033e-06 339859970.0356017 6214.664342615975 48280 5282 70542 LTC_20190130 1857853281.4183056 544282.1196618685 30.83437963982086 0.009032562568249268 600873010.4290403 176018.5586890612 436733 199701 247235 RVN_20190524 188868618.9018564 23974.981512271523 0.052278231004548203 6.647661277392092e-06 30470218.1592248 3874.5704565471187 24367 6488 170444 XMR_20190811 1553685222.588878 137123.2890450187 90.53682793462397 0.007996907048388659 155503339.76362625 13735.247657469014 320440 160121 104374 TRX_20211230 7771043749.287916 167553.8134667467 0.07671815411657268 1.6473169862310635e-06 1227580506.7820952 26359.005167349864 1315167 121573 22188 GTO_20201226 8960467.00933525 363.0310958149938 0.013667250218672839 5.535126691415698e-07 13666427.081365103 553.4793327409782 16482 None 1147835 POE_20190726 9260304.49102114 933.2069932985918 0.0036760415342731692 3.707352278081267e-07 197256.4070698146 19.893654173877447 None 10820 797644 VIBE_20190819 2873279.486037279 278.81281985178583 0.015368946514519208 1.4899283475384855e-06 188234.20224544813 18.248191158505 20401 None 1220128 MFT_20190703 22951436.75893681 2126.5505258453127 0.002603475059625144 2.407246544669044e-07 2498928.3954085894 231.05797472432175 18837 2117 960456 ONG_20190725 0.0 0.0 0.24607920920855203 2.5095060275500048e-05 14934635.223783324 1523.028184050356 81402 16291 245341 BLZ_20200329 2709343.782543183 434.43450679258 0.01241757215631342 1.986154626202515e-06 364062.9987856324 58.23082001577971 35980 None 563457 STEEM_20190213 86030237.37439819 23667.218059751816 0.2882041222956976 7.931419194003665e-05 731156.978194132 201.2154595321425 3882 3664 256467 POLY_20190723 29161879.187175613 2818.552219764932 0.06008543129900726 5.809816416975855e-06 4889170.476118868 472.7465923676972 35240 5088 307913 NU_20210722 106758091.12838458 3317.426573185072 0.1922192361827023 5.959264890528047e-06 11604998.329310888 359.7832374735159 None 7138 130828 LINK_20190803 883156500.8793855 83912.00508951223 2.4235995281375695 0.00023026641991960825 98641748.27687383 9371.961814079717 29614 10107 107221 POLY_20190811 21704764.325944927 1915.593087357373 0.04294333558339507 3.7930847682906267e-06 1922230.6984030677 169.78615853195663 35264 5075 295167 IDEX_20201101 24871988.942929547 1802.4833187162562 0.04618933978056599 3.3517334639241358e-06 325602.54839027976 23.627377281496738 40073 1959 30306 LUN_20200502 2030222.9162773667 229.1026608757773 0.7412986800853644 8.393767426054591e-05 482953.59044886415 54.68511174657655 29077 2137 3953623 CTK_20210610 54125563.73628386 1441.9670319053955 1.1981437660147487 3.1990037979714145e-05 8089400.843998376 215.98429802242464 55347 None 194884 BEAM_20210114 27059132.502357543 726.2477505141246 0.34413271818890445 9.207377927455432e-06 6541097.18125556 175.009089879601 15890 1622 333744 OGN_20210519 237646468.7913115 5569.588951901306 1.1363826043838492 2.6523385392003046e-05 87514355.73907043 2042.6016516319073 110006 5394 39883 POE_20190201 10926955.52541639 3184.513755487548 0.004803860386445394 1.4000202933464517e-06 454420.74784538214 132.43479566898057 None 10985 524889 LRC_20211207 3083047964.0212817 61081.48538909732 2.483532329213966 4.9180790751739736e-05 766426119.5673242 15177.351295055756 158266 78437 61944 BCPT_20210108 2725028.502669255 69.69492131932036 0.02367735424082098 5.999975929511794e-07 705582.7895327002 17.879868292781 10395 3212 2139942 YOYO_20190325 5557613.671831135 1391.656565557495 0.01906420033854692 4.777548213209741e-06 350556.52432323335 87.85056108664112 7140 None 1390338 LTO_20200807 18426651.2039456 1565.2903686118716 0.07780298529759634 6.612407626296327e-06 4964127.224054689 421.8968281061386 16758 527 1057940 ETH_20190510 18116042476.197884 2931053.7499443423 170.57549417946805 0.027627447177520612 6902719143.315466 1118006.4840531074 441856 436403 36863 BNB_20190701 4511665471.407503 415802.08319602563 32.08944679833465 0.002957625812363884 261834959.50158027 24132.850892316274 997428 53768 760 ADX_20201208 32239066.90077085 1678.5010106868658 0.29922402289314753 1.5593927143775637e-05 885305.8839184495 46.13732320118588 None 3741 14419 APPC_20200229 3852023.4948651833 440.7602675205524 0.03552315760517288 4.076987657228495e-06 112519.94562102677 12.913897874386754 24946 3237 775270 VIB_20190813 3635287.95887822 319.41867335549296 0.020003642319022928 1.757601238086612e-06 714508.4596574006 62.77961449665361 32464 1120 2890790 CHR_20210127 14228215.460675118 436.59102033682564 0.03162366557461931 9.70557809237818e-07 3421668.3245266126 105.0139777488765 36972 None 518597 ALGO_20211230 10071711042.88925 217159.19351578402 1.5886584295590183 3.413830364254722e-05 464465052.8006991 9980.77919635836 214748 61073 65778 XLM_20201015 1544268328.3851545 135129.92497174826 0.07424818285292809 6.497025933761468e-06 101356031.93834454 8869.07588500815 290490 111553 49604 DIA_20210523 70686742.4535392 1880.5108891124194 1.701202494223711 4.5297666797114726e-05 15457034.121515896 411.57215774454824 None 378 375283 TNB_20190318 8618451.894366823 2164.2230600582234 0.0032981503225492288 8.282560684323069e-07 434118.9768085771 109.01919009119422 15150 1503 1478446 NAS_20200217 25384875.394774888 2546.476130162929 0.5576808722946733 5.6057138679922217e-05 8727789.009970464 877.3025994022215 23782 5004 1193564 CTSI_20200526 6729508.226400851 756.5087402435372 0.03368711406994922 3.7907080036490618e-06 5436660.759483576 611.7708216651116 14070 104 293741 COCOS_20191012 13660003.86075188 1651.9944633008718 0.0008734276904484335 1.0563572249153849e-07 2408081.5856740098 291.2426991988778 12155 131 85869 VIA_20191102 4856907.570218066 526.2778828813738 0.20977707827502612 2.2726006495113708e-05 194495.07384539454 21.070444625428205 40391 2200 4314355 FTM_20190704 63101031.196486875 5257.336250813842 0.03052693586247649 2.5438623405250923e-06 43597722.64179876 3633.0735996813773 16721 1915 411389 FUN_20190729 17223707.8461513 1806.7505191042364 0.002865128166724344 3.005492109346305e-07 258583.41130285186 27.12515311896494 36111 17506 408436 NCASH_20190513 5317233.006272974 764.620394456284 0.0018345166418631874 2.6363540502618947e-07 415720.4493159728 59.74251011523912 60680 59333 935849 LUN_20190615 6613188.529391622 762.0111890774194 2.4462884390334168 0.000281876004890743 888439.413251 102.37131010340632 31355 2227 2333394 SUSHI_20210711 1541558450.3707952 45720.18406399305 8.032234857447676 0.00023830606014135357 162384681.7542475 4817.744304411276 113182 None 6114 LPT_20211221 843101507.600696 17870.392589427764 34.12944576946648 0.0007241611149096568 23486392.45491909 498.33601929088195 23046 2269 79616 BNB_20210219 28719828748.346386 555643.3683641235 194.52978782045926 0.003762227297589141 8204647326.594336 158678.773493005 1784857 161305 283 FUN_20210523 227678084.15122598 6062.552245484876 0.02210707398244304 5.886613615579242e-07 6686317.683540207 178.04151171373792 3062 302 211811 HC_20191011 70299034.41782716 8209.506362807422 1.5841623255506823 0.00018505821439728033 38224944.973915294 4465.350518828978 12822 847 404296 NAV_20200407 5479396.3107065875 752.1483686389985 0.08019093513571882 1.100768727462036e-05 54342.56099124725 7.459520406904294 49328 13954 1202030 BAT_20190601 444790083.0796662 51854.61133537533 0.3501606206619751 4.082117736575401e-05 48417718.37275748 5644.461863252831 101747 27301 48578 AMB_20200229 2290206.844442809 261.6546807383572 0.01577123989440927 1.8100629201761329e-06 319361.6622379528 36.65309175517965 19167 5517 619062 VIB_20210201 5931638.753780637 179.42877114831984 0.030930559686094226 9.329930599641537e-07 26915357.511579398 811.8780267674051 30421 1099 None AR_20211011 2366437739.020092 52810.94202412789 57.93785795499749 0.0010589241228423387 65992481.074477255 1206.1376205910078 37208 None 54433 SC_20200313 42854182.357811324 8918.307247764127 0.0009399432668452277 1.9614543896884117e-07 3918583.04051233 817.7218963404819 107889 30201 227333 BCH_20211230 8130965085.365679 175314.62415123222 430.9819350151484 0.009261268431429744 1902939331.1641006 40891.811286746095 None 740394 242464 CHZ_20200506 44930380.043794155 5009.151733113381 0.009399263011336168 1.044577424047827e-06 14291727.704958715 1588.2964540127816 20763 None 255307 MITH_20190920 9203207.979983382 898.0748899749701 0.01695741534428271 1.6546027599170586e-06 2181107.8623353923 212.81940764125272 85 2080 719075 FRONT_20211204 62829595.328669935 1170.1806081304915 0.9737245046433016 1.8123882475913375e-05 22171249.58784464 412.67229073323836 85486 None 319294 LINA_20210823 173184923.24006864 3510.499232206371 0.06234027527270769 1.2650742404951163e-06 45065303.933265366 914.5124062520208 None None 115735 SKL_20210427 335566641.8476711 6228.866213155824 0.5084934807129345 9.432946435207849e-06 74454225.47403678 1381.1833335341553 None 1349 134291 WAN_20201101 30873044.08354035 2237.3822650959482 0.24575654320067386 1.781041706045031e-05 572784.9887082521 41.51075451337695 None 15982 434390 AUDIO_20201130 9178393.076981537 505.89784116441285 0.13007530560387673 7.158897229900309e-06 1957704.0280726792 107.74529322433112 None 2138 74005 TCT_20200305 5059290.582454038 577.9219032601151 0.00874483607780592 9.98447922973691e-07 669998.2249910311 76.49752724766871 16 None 365886 FIL_20210310 2415188501.5157466 44170.6636358744 42.0611496697386 0.0007682747957617374 269380019.24068356 4920.404717642024 55589 None 51977 FOR_20210506 55953005.80648432 977.3845941151712 0.09946737961949255 1.7355571548112464e-06 20831679.138701513 363.4816752407983 None None 121636 XEM_20200412 330256089.8990692 47989.738339049596 0.036695121103973806 5.332193149375754e-06 20350145.070547633 2957.0935009729656 210763 17980 203182 AGIX_20210902 191481261.0570525 5830.0 0.4936634366492465 1.0136204388781472e-05 11090069.960112829 227.70820655583344 None None 186899 QKC_20190224 53223434.84700325 12941.673415210198 0.033697697687735555 8.192364649364263e-06 3814560.9644551096 927.3712016658211 None 8970 181289 ONG_20201201 0.0 0.0 0.2646479842038872 1.3480920301709192e-05 27411254.798620272 1396.3036311108083 93825 16701 315974 BAT_20190621 422441451.6507087 44161.45486720781 0.33141867585792656 3.467656784181177e-05 44856794.82752864 4693.397814641669 102675 27931 47977 FIS_20220112 27243969.984380618 635.5202013896006 1.0081887144489665 2.3563612203196836e-05 2577422.0467146556 60.24008474043306 31063 None 314558 LEND_20190528 10994417.730401058 1246.6717162841298 0.009762372271734135 1.1083895854046207e-06 1459254.0796129229 165.67919961270425 11481 5871 548468 QKC_20190804 64155376.5229128 5944.680623662416 0.016038298731605317 1.4857141293166547e-06 2066573.30330411 191.43783311237715 None 9232 258370 POND_20211021 79284205.28117229 1196.1449169140385 0.0981511736661227 1.486268939315791e-06 23336015.407673776 353.3691302133807 None 714 523728 LSK_20190608 282440119.98460054 35180.437075922724 2.128991502977214 0.00026518488807378965 3002108.566623385 373.9394089229993 182897 30435 180914 CTXC_20210708 27618415.254614033 812.8062184210143 0.15337662377451092 4.513853253890654e-06 2802669.3360133725 82.48217877414196 20089 20590 663987 REP_20190703 163584879.79754326 15202.494887181438 14.885380716896053 0.0013794401897049896 10707224.75218667 992.2471197935354 125893 10014 252413 GRS_20190723 20932476.84394615 2022.6435177118458 0.2867104344759184 2.772277660531651e-05 6156908.414076268 595.3274663854844 38600 107015 None MINA_20211028 1219410300.1762085 20821.62596094821 4.408561643588602 7.527752709907633e-05 98003700.26961686 1673.4429048043248 None 10961 73942 VIA_20190421 13459304.603971828 2534.3408065257304 0.5817775366511803 0.00010953607197333473 232782.49879028468 43.82788769810025 41273 2231 2047585 ALPHA_20210731 223003762.86524966 5341.948822975218 0.6355363389900018 1.5210859834512833e-05 44761268.463328354 1071.3114873851428 71137 None 58458 WINGS_20190126 8879113.084094036 2489.925353669752 0.09933702260669562 2.7856585314761064e-05 1436870.778294141 402.93449885561574 37461 1222 1854227 CHZ_20191019 30861559.67966453 3877.7796106285414 0.00856149137686069 1.0757723487356028e-06 10565342.538731078 1327.5611523484984 12310 None 374824 XMR_20190325 887676505.7762821 222282.50081001525 52.59743638464676 0.013171648983657348 218885904.0970811 54814.236099895046 315451 157513 112141 POLY_20200711 29240643.666217513 3149.128157639035 0.0439811413075549 4.737232098116473e-06 2064296.8503465625 222.3465105445699 34948 5005 323415 XZC_20200306 53484294.542439446 5904.13292841194 5.564763340943845 0.0006142943972835966 29031660.486915667 3204.8058988842868 63717 4093 107900 XMR_20190627 1782756491.7136662 137115.89471304108 104.26858040933263 0.008029125307430978 354528537.64143956 27300.209158008212 318548 158835 113923 AVA_20210117 56292042.7337543 1552.0689044213807 1.4550276425203645 4.019963390473343e-05 40562116.73602642 1120.6537907175887 None 9063 88426 YOYO_20190227 4732442.286692562 1242.3683746193888 0.016206994132512108 4.254686214450838e-06 573622.1992097135 150.58822403005627 6887 None 1519416 WTC_20200403 6679306.009406247 984.2687808229786 0.22979433254955972 3.3708487488794804e-05 7562631.249221849 1109.3609577676757 54701 19655 978850 ETH_20210111 144775179901.584 3764124.784444916 1267.7310031512136 0.03296074432243541 44541377224.12463 1158066.6109799356 580381 528229 7761 QTUM_20200325 122661203.11895631 18129.102026364333 1.2740081027757275 0.00018853933654325823 385324973.7062503 57023.90333141684 179412 15143 109238 EOS_20210620 4307596731.319116 120833.21792542923 4.48460522013667 0.00012595926621093885 1107494554.2526476 31106.238908142514 224662 88822 48893 IRIS_20210218 133492178.41274789 2560.6440844765507 0.13996293926828163 2.683706304564051e-06 31117870.49418258 596.6667009598215 14187 None 757978 APPC_20191020 3567535.451817257 448.7933701568859 0.03241941354765648 4.0783386909725505e-06 79971.08273949512 10.06030415744601 25009 3285 831430 BCPT_20190105 2740420.3149458948 719.2552636041163 0.032567835021456375 8.55467687867132e-06 180533.5326580424 47.421206740857095 9994 1327 1070204 SYS_20210203 61721584.56835555 1733.1343111547715 0.10198173385520183 2.8706453502240386e-06 4870695.678228391 137.10337501140125 61520 4498 273624 CRV_20200907 79932331.56647798 7763.079466907821 2.1675576108630454 0.00021107440886778634 121878714.53823785 11868.417012676884 None None 18839 STORJ_20190227 29859537.447010327 7856.206821867465 0.21989911388622668 5.785665373086874e-05 3229006.8198536113 849.5692691492262 82898 7623 236494 LOOM_20210819 77260442.21540573 1714.0346659114055 0.09258830177094488 2.0554878351489237e-06 9983394.957874184 221.63433713433875 None None 329311 VET_20190201 215009648.56038064 62677.479338204605 0.0038795400632078646 1.1306396065687006e-06 6714899.524835941 1956.9668654565146 104084 54661 678197 FIO_20210128 14541020.10081225 480.6810051720198 0.06839947168533397 2.249914382414971e-06 1192385.9364603043 39.22203200886146 55426 163 523991 GAS_20190321 38844926.05203999 9607.798359711045 2.787556657976383 0.000689466682218091 4141999.7757306476 1024.4709591640096 318284 97802 162875 KNC_20200309 126566649.97408473 15667.104722941307 0.7013093532353718 8.717795427063039e-05 126165389.75752251 15683.2937249108 103432 7141 154836 NAS_20210429 45601540.23277002 833.0889946790516 1.0051073926656517 1.8356237102764053e-05 10165279.256958649 185.64809851977012 24804 4897 465428 KAVA_20200612 25762796.890463293 2776.463579371309 0.950432128485217 0.00010220121767730358 20911737.17676759 2248.6666213816115 23440 None 393722 QLC_20210429 18248504.989860374 333.387665455673 0.07602400443756867 1.3885385280903821e-06 2000339.8275561214 36.53515676244448 33070 5638 940522 UNFI_20210217 52579247.129769556 1069.2763045902357 21.491469897913017 0.00043676808799540933 26431772.11431999 537.1691477381445 14301 None 96925 DGB_20201101 268621410.97192514 19492.536082101306 0.01960490908663652 1.4226319353132957e-06 4985764.975561213 361.7924696745827 177821 23265 300681 ADA_20201106 3031965032.516879 195088.31497519126 0.09750582263266826 6.277093621263596e-06 419487840.1693913 27005.202095928125 165795 89645 32496 KEY_20191015 4093798.314044888 490.4880944132112 0.0015658381158731361 1.876069348554053e-07 118756.06280762324 14.228457407559537 23657 2798 473626 ZEC_20210708 1334080794.2071402 39263.811221573116 118.30486958840744 0.0034825206929324283 784175019.7339647 23083.629123680854 76583 20089 101519 ZEC_20200718 571765440.9962456 62466.94258897856 59.511619545063866 0.006500717972530501 280863151.87552285 30679.92693151661 71615 15885 235720 TOMO_20210804 232241847.58418778 6044.45936074985 2.7736001918564783 7.219995970906267e-05 9882066.055443253 257.24139086092856 50761 2219 136634 OAX_20210704 7198166.871222833 208.52054653043317 0.126983080976175 3.669525304254213e-06 153301.0877419153 4.430056479289549 14061 None 1338925 GO_20190224 13443801.95422108 3268.157739646806 0.019611568507922745 4.768651280613128e-06 578819.284827851 140.74281323917756 7905 628 747955 SNGLS_20190804 5298840.097518795 491.39887325546607 0.009187350149389983 8.514705077197641e-07 68647.57634766388 6.362159462307818 9 2175 None COMP_20210220 6387843.846653198 114.91575915944831 6.913947560236418e-05 1.245718686923429e-09 170.84684919941358 0.003078228621138415 2158 None 1914243 GVT_20200730 6066680.009245171 546.3359591089854 1.368389287155957 0.00012337587123818406 1028830.651915209 92.760794919992 20338 5507 229821 POE_20190530 13973392.94891479 1615.9343520549946 0.006143177639498007 7.104195677265268e-07 408341.02381103375 47.22205194843546 None 10867 944416 MDT_20210509 52943461.590272866 902.8425632891959 0.08848717340453735 1.506908502676769e-06 141243018.07921478 2405.323807940548 31627 292 371904 GXS_20190811 94106329.24652816 8305.523666328876 1.4474214916201098 0.00012781142567221994 7680148.662578742 678.1789241225497 None None 741400 VITE_20200511 5385524.663527371 615.0607687583587 0.010937620990737014 1.247118360626943e-06 2774154.3321209643 316.31182006862565 None None 592403 JUV_20210506 40697116.75686531 710.8954089283939 18.6286377855844 0.00032504189531119647 10758503.489718119 187.71981103826027 2438748 None 39485 COS_20211207 87787989.86324246 1738.6975967272317 0.025910579552972938 5.133954996240568e-07 75823569.62540792 1502.3777963565187 None None 205544 BLZ_20190920 7449561.281410284 727.3526861033729 0.03561353896471805 3.4749552726679843e-06 399430.27714272833 38.974007862443464 36441 None 550438 HOT_20200411 60216549.500690915 8782.20793638527 0.00034126868631881936 4.9729054753537456e-08 5701627.883212304 830.8308864988437 25081 6940 474054 NAV_20190110 11147810.048857145 2803.0874137706883 0.174359352837349 4.384641283545246e-05 57901.269070899274 14.560520591903941 48209 11502 740538 BNB_20211104 95580886279.62439 1518250.8094167523 569.4164593460114 0.009030618658019698 2535572381.3340287 40212.7245881392 None 687281 121 BEL_20210704 56398069.32484315 1626.8415854558712 1.1752749575268735 3.3836105334541544e-05 5339246.835195013 153.71664065993264 None None 582298 CMT_20190901 24201494.38852488 2521.300831649355 0.03025647574936014 3.152811002561391e-06 9699336.037164437 1010.6984577064941 289999 1652 567314 WNXM_20201224 28716082.38259944 1228.581329571244 15.970934389611868 0.0006848794989627856 12690110.014540933 544.1883346659117 16721 None 115937 BLZ_20210117 24521661.248659834 676.1045799813951 0.09590606031807769 2.6497012162282995e-06 12896152.210885787 356.2960472416396 43596 None 447066 BEAM_20210704 38306442.51755301 1104.9863367070873 0.420677631148495 1.2132881499015077e-05 9421262.06750158 271.72126058638287 21520 2508 188205 TROY_20200629 6187627.16664632 678.4232660438255 0.0032588574452824116 3.570648634572095e-07 797876.1756779556 87.42129795724186 None None 743325 STRAX_20210304 127775574.26935495 2514.239569469799 1.2684407362595322 2.5035185063404427e-05 2841904.3616056815 56.09059973515163 151517 10503 209083 WRX_20211028 591779735.3102427 10110.844212199696 1.3290925546502328 2.2694658459719624e-05 46325019.805501014 791.0137626963558 377274 None 1013 NEAR_20210127 635070787.8964105 19499.858512107545 2.381701044478212 7.311573680605773e-05 62499952.50042827 1918.6833242597704 36000 None None BAR_20210809 67351510.48701301 1530.985220760546 22.831914574633565 0.0005190678723560617 53603652.31931393 1218.642162879015 None None 44064 BCD_20190719 151811669.7281837 14145.182704109917 0.8034360872445702 7.52187863558425e-05 6115166.724886268 572.5102801731115 21416 None 2927391 FET_20200725 31610597.007104512 3313.1364918082436 0.04939911092941034 5.178788215197987e-06 5110409.178466225 535.7531002146808 18938 463 533444 LTC_20190523 5460385976.639675 712333.0731158658 88.21450391055005 0.011518757658274209 3537957321.6289196 461974.7454963193 444673 202903 194516 BAT_20190730 323559934.9418894 34084.093644827735 0.2538786649966821 2.66905072370576e-05 23044052.95566364 2422.643360726342 104616 29079 42959 GAS_20190325 38440213.50915237 9626.343677601628 2.760483393714907 0.0006917857678279887 1262190.552245428 316.30889804241076 318544 97784 162875 ONE_20190703 44701420.431956664 4141.781193222925 0.017617606353347758 1.628973623643704e-06 17288925.194844987 1598.5828357550913 63677 None 175184 ETH_20190805 23801827044.905396 2173493.848637153 221.98815294300547 0.020269002909418757 7801234062.836402 712304.8406879859 447436 444110 31061 QLC_20191118 4045260.032664173 475.49497432417536 0.01685945464823439 1.9812294911228656e-06 85867.14163336274 10.090629671717076 24594 5706 940522 STRAX_20210708 178972122.34064147 5267.392841588387 1.8198790384599475 5.357676759136538e-05 13774269.38764347 405.5109235980546 157885 10763 140717 LRC_20210421 714441502.2959375 12645.984911835485 0.5706837863626439 1.0121390831168107e-05 118203941.22595848 2096.411910626981 70077 9988 144294 XRP_20200927 10890187788.561167 1014460.6946960819 0.24148169015235318 2.2494899803808315e-05 1333243982.283363 124196.53753695737 969449 218481 20405 WABI_20210806 10757815.174705211 262.3039799482031 0.1814763148890721 4.435349708546277e-06 813398.2500199592 19.8797605812268 45362 7886 670233 ETC_20201228 682799396.8473502 25717.801225954292 5.81319408711237 0.0002210482020259016 971413253.8848159 36938.23911219747 246338 26209 161974 STORJ_20211230 247523973.58503085 5321.002439039499 1.721276977006671 3.6988112108082656e-05 54401290.04656581 1169.0164000020195 113420 14771 50692 REQ_20210202 28679204.46908056 859.0409072983966 0.03743430898453421 1.1207450935569567e-06 724849.0509594698 21.701242509054172 39559 27131 458949 CTXC_20210127 1104906.7836009676 33.903927120213666 0.10991511564226346 3.3734713282203393e-06 2949709.5351769077 90.53132033162576 17133 20080 599197 PPT_20191022 15365957.63326163 1871.235410963308 0.4241587842829467 5.165320352721311e-05 1145184.74759444 139.45829494903617 23935 None 810126 OMG_20210221 872830124.3564641 15565.190363412627 6.271607756709059 0.00011152437221465963 707185928.0014695 12575.478205733725 301167 42653 165404 NULS_20190511 44452073.270559 6976.018953378904 0.6132704881580673 9.62626821651919e-05 3841752.133582092 603.0248833645852 20872 5320 670223 MKR_20210430 3837206961.8065376 71601.76429945341 4268.045185503056 0.07960521398733372 314806236.3536424 5871.591494532203 138388 25081 31771 APPC_20210508 25669792.68984977 448.0249395802056 0.227611319967148 3.971296641830609e-06 1322366.7792339537 23.072274043303864 24973 3134 605717 OXT_20201129 0.0 0.0 0.29792380053077616 1.682996795052887e-05 14806521.584207295 836.4329512347252 None 1746 111810 NKN_20200711 15881827.978399714 1710.424443882553 0.024434170864083626 2.631616422881193e-06 2745742.09080812 295.72274088449143 12959 1011 257526 JUV_20211216 23023605.470098183 471.9268076991392 8.524085771308446 0.00017442602689857046 13465610.661747357 275.54309406380935 None None 37465 SKY_20200113 7077275.130338912 868.1557253106371 0.41694084263914105 5.1053376095677626e-05 157773.3908167932 19.31896191381638 16293 3807 595131 CELR_20200418 6123012.629251503 867.0104276771939 0.0016187033568616962 2.292071923350835e-07 6013103.623781669 851.4510042772906 19328 None 1594945 MDA_20190930 15296516.498100758 1897.6775237737575 0.7759401663548096 9.629992323593193e-05 2183349.3136077044 270.96982527065614 None 366 3013477 BUSD_20210708 10753640807.502445 316490.24305174546 1.00063619056781 2.945556046740227e-05 3152727973.2834916 92806.32694448731 23027 None 39244 ETC_20211021 7287617789.03454 109918.79329656283 55.91780240845496 0.0008437169338802722 1585075329.8905637 23916.442343991595 539628 61192 217392 MTH_20190227 5330320.058451004 1402.4362192567255 0.017721773713047204 4.662695120013418e-06 248588.35204554832 65.40494844043766 18631 2016 836408 GO_20190515 14134628.493167695 1768.8327862368078 0.019585948956297256 2.4503027912255112e-06 1188512.91974505 148.6890694526468 9558 656 839463 UTK_20210513 272564223.19565696 5284.485934533234 0.5922000009612111 1.174911592097058e-05 47149839.4424319 935.4422971380037 74756 3881 78610 LSK_20201201 190253899.69354746 9676.983741961716 1.3352557996835637 6.781097429435067e-05 3788896.262372984 192.41912082510646 177204 31054 270699 SYS_20190916 13696142.373948503 1329.4092173853658 0.024283617932508425 2.3570772433226636e-06 1562227.16694058 151.63679952181272 60429 4588 745278 BCH_20200523 4305498315.937454 470391.6027676114 233.34702088287926 0.025538141013627755 2780123514.756168 304264.3788059377 3127 297531 140343 EVX_20190906 8585010.09840797 812.2774742276449 0.3998199087932316 3.782814597011999e-05 1077886.5894766664 101.98204328800645 18304 2912 505983 DASH_20191022 626146896.2002829 76261.07909645922 68.89544362355733 0.00838994853684637 253589504.2135967 30881.6197114808 317608 31420 74820 VIB_20190618 8693573.7528469 932.6268414752473 0.04856032099056972 5.211823768606571e-06 658921.3065606287 70.71991405989449 32690 1125 2278285 1INCH_20210301 369695024.3989314 8149.275046475904 3.818937684449712 8.459219415696131e-05 347665373.7732794 7701.036055035699 None None 8283 GXS_20191012 30079705.922605567 3627.7874399727066 0.46128000415666415 5.57856367147665e-05 4026574.15032705 486.9601992956218 None None 575121 EZ_20220112 0.0 0.0 2.999395715271793 7.010718800386296e-05 714546.2524237565 16.701640334105974 40559 None 307017 ENJ_20210722 1019706622.0986378 31686.60856753927 1.0954420111297103 3.391947539265388e-05 144140389.08302152 4463.190502934055 243196 34132 35760 BTG_20200331 127224362.24198653 19801.600045098854 7.220824903105133 0.0011263077784823034 24666687.541949462 3847.521913451071 74685 None 201037 WAVES_20220115 1417290105.284082 32860.50509743976 14.172901052840816 0.0003286050509743976 74310147.19337143 1722.9140043631592 207913 60080 111295 LIT_20210813 99050386.95390792 2228.1087930870394 4.463404728329451 0.00010040295276105175 32805252.49087367 737.944330983477 53717 None 505137 SNT_20200701 87443273.70184506 9558.515399166194 0.02250359075011169 2.4604393664495785e-06 10866038.905995531 1188.0428407431566 110498 5702 151682 IDEX_20211221 155223516.4473635 3290.120054369113 0.256462990214989 5.4400890217390215e-06 10063268.622513985 213.46189994219884 76281 1987 56023 NMR_20210711 182512981.52993914 5412.360215791939 31.610290665829574 0.0009378365999236372 7240892.954470426 214.82796538066404 29408 3521 578267 ADA_20191020 1211994735.2326007 152533.53455766584 0.03897290606281899 4.9025072098228394e-06 63601159.797879785 8000.561825171903 154408 75447 134614 AST_20211104 60571322.457935676 962.9507611457209 0.35103166831694904 5.572307541027798e-06 2350356.6718524364 37.309768288036715 46915 3718 209076 STEEM_20200129 55419053.31298225 5929.739936744534 0.16438416484567453 1.758044793696119e-05 2329918.546604003 249.17857352249564 10503 3809 175956 RLC_20210804 234703477.84923467 6108.527160128144 3.2896945669073885 8.563448181291669e-05 12101654.051544923 315.01978457455004 46191 7757 152995 VET_20200905 926829598.5206813 88393.63916967015 0.01441065511515505 1.374373725742805e-06 261591931.70728987 24948.55889144892 134259 67070 75670 SC_20190903 77752599.82381782 7525.81216303841 0.001849052697087139 1.7894261224323698e-07 5457468.667005777 528.14811662645 109077 30645 202127 ALPHA_20210508 485914467.6364513 8479.64109473746 1.941954226760399 3.38851899004925e-05 87948927.32673776 1534.6222186620157 60376 None 30246 AXS_20211225 7120649115.126842 140090.8798659991 104.86615274656926 0.002062234031103606 283311664.50788623 5571.435021257465 None None 425 XVG_20210909 423532137.4138175 9137.43233618813 0.025665069764029068 5.543579669698413e-07 41736054.08921919 901.4865070294953 326435 54711 180341 BTG_20201031 124547325.94751713 9170.395900312653 7.107233926865481 0.000523682339901465 3542031.308359421 260.9875040913391 78497 None 353767 CMT_20200308 11699032.62436704 1316.2160045627977 0.014580606430872506 1.6381908934084204e-06 24708576.70961036 2776.10986529762 286923 1640 953076 POLY_20190213 38993445.4814448 10727.232718121444 0.08962725583841287 2.465065140405246e-05 3534034.916347062 971.9840461218766 32590 4975 219642 XVS_20210106 13399772.449315712 392.95429005570105 3.6233770597048784 0.00010623704349020485 3055270.751260609 89.58022483656758 14046 None 105222 XRP_20220112 36764295066.6237 859263.3298293825 0.7727293031543855 1.8060402161442907e-05 2379143840.2570167 55605.88213693853 2358040 344006 18895 MTH_20210310 9407730.510081135 171.82008579627035 0.02706918610880851 4.943838340890758e-07 2699326.9984677755 49.29973238199425 19997 1946 696575 CHZ_20200629 62763528.375951655 6882.501375846913 0.011747235730592456 1.2874837331724793e-06 5513320.435443039 604.2536762852831 26155 None 373448 AE_20190103 93493058.67936371 24136.425872433476 0.41069608104649563 0.0001060858343778397 11439117.84576706 2954.8087191931327 955 5111 424153 DOGE_20191108 330768260.87477535 35878.96371376201 0.002713002152562021 2.9427827536954285e-07 94445676.2780337 10244.485322270502 138447 143532 105671 DNT_20190618 11115648.572290424 1192.4615254490984 0.017670931394492134 1.8965644867363066e-06 966416.2468281665 103.72236144330108 60656 6377 1037935 XTZ_20220105 4423204207.469359 96137.8028430861 5.05622662873512 0.0001098919216272386 632589155.7473665 13748.679208831483 254740 66831 35201 SNGLS_20190414 10003358.209048035 1971.4085937452546 0.01695734699355551 3.343781315779983e-06 296140.411546764 58.395265211815975 None 2181 3255572 ROSE_20210428 237134713.60446796 4304.502278720388 0.15780051054326089 2.8652429525536263e-06 22545113.784562357 409.36007217814176 18257 1397 227579 TOMO_20210204 119577629.14562309 3191.7649914620624 1.4918065383671066 3.9771633160598545e-05 26315118.10671567 701.5622984624379 38338 1770 172672 ATOM_20210314 4625686406.782559 75315.48031424769 19.38557463881717 0.0003160054983706028 836233172.1823409 13631.490696199164 82672 20615 61581 MITH_20200605 3450156.700725252 352.9950843040857 0.005571212672588635 5.698807258562411e-07 5230781.553832601 535.057942296877 98 2097 809760 MIR_20210725 217566812.57994872 6367.919311714148 2.7988337254355518 8.190667678664903e-05 18310265.83572181 535.8421302611328 51388 None 15750 INJ_20210429 264849149.61461115 4838.496916283553 19.6873583669685 0.0003595494578472116 91244870.53340024 1666.4015110664523 64339 3139 97465 HOT_20200523 93601475.20994751 10225.219641139927 0.0005254765307059532 5.7509599607256586e-08 5625290.731871647 615.6473196428612 25205 7015 551083 VIB_20200807 4105514.1278086235 348.96503905248204 0.02251147407347757 1.911455315563209e-06 798483.4388668658 67.79944345845692 30731 1098 None PERL_20210725 0.0 0.0 0.058184807462053935 1.7029994358621677e-06 2913688.7821918563 85.28017138471594 341 681 5644185 SOL_20210708 9995196544.250605 294157.27986600786 36.657274540397 0.0010788990344147884 727575218.1716276 21414.036100377165 351812 26452 7723 DODO_20210814 244046027.7776934 5116.303090847172 1.7377136334149568 3.64206428664233e-05 61245383.67389378 1283.6385714603548 100411 1053 29473 HARD_20210711 44489501.35803047 1319.6694507130687 0.6716152143469175 1.9917552876821455e-05 2125079.934022239 63.02178844253643 34881 None None DCR_20200113 186562528.6804592 22870.980728741648 17.041002208124006 0.002086628619234615 103142229.68330358 12629.511203645585 40895 9710 113234 PNT_20200807 35941482.33381743 3053.1242767927215 1.247009283258404 0.00010588389348742126 5008937.655598124 425.3102429395334 4508 76 424006 BTG_20210401 682757071.5885583 11607.703416735587 39.027735386088466 0.000663645804349251 29104547.688140217 494.9072952770369 88569 None 185104 OST_20191015 8390344.777266594 1005.2328130893571 0.012438577027480843 1.4901660732808001e-06 344156.3496248257 41.23060981831192 None 757 715742 WPR_20200531 4887069.227614407 506.57004505244396 0.008119444542495838 8.409878734933484e-07 342801.66088224784 35.506374642560395 33026 None 2745269 AMB_20210325 12213264.291664217 231.0519805869596 0.083753714036243 1.5885098501319526e-06 5415984.898763549 102.7219563794968 24197 5587 320095 HOT_20190916 142571763.9851208 13836.008034797069 0.0008026811095093988 7.789692692383964e-08 5321199.777371037 516.4007291243844 24395 6655 466446 NEO_20190813 753270619.4979908 66181.66280892592 10.67852591972802 0.0009382765197206281 180859788.4998195 15891.378097187933 324437 98238 192021 POWR_20200629 36806962.36997384 4035.9227033183465 0.0856083066369901 9.379920301569434e-06 1328815.0327953864 145.5954403583835 81494 12728 221637 ANKR_20210421 1095024624.4610405 19382.50344432906 0.15610494797625596 2.7688043546362157e-06 231780126.6118007 4111.0408875604635 76893 None 5736 VIBE_20190509 7686073.436393359 1292.0581213372254 0.03839194758067515 6.453832125866472e-06 197123.55357706957 33.137217646156195 20738 None 1402427 VIDT_20210220 41070754.304937825 735.4488881128224 0.894205464754422 1.5982950640074073e-05 10400792.008032663 185.9028510049607 24596 1287 None DCR_20190414 233218062.09562412 45968.92701635534 24.224775253556032 0.004774211382873809 2552639.736447254 503.0734674961962 40438 9415 258760 FUN_20190929 19729475.658572514 2408.313048025859 0.003284368638044138 4.009395738605762e-07 781974.0719148159 95.45954967778877 35739 17357 353342 BCPT_20201124 2297942.7016757345 125.4515566330219 0.02000419661996237 1.0900010899314086e-06 98192.52836512939 5.3503754724299 10372 3203 2220119 XTZ_20200317 926198848.0941386 183505.8080526916 1.321411918566525 0.00026243417457619364 238084769.23875174 47283.953638102284 57150 22499 103142 ALGO_20210111 373155530.8826078 9709.170695560546 0.46322014611496953 1.2049338454701073e-05 309430023.756003 8048.931195140402 None 1808 343568 DCR_20190704 321117010.0598778 26802.273307071857 32.0899660940772 0.0026733446136180286 30426101.956871226 2534.731745784155 40491 9509 383707 RLC_20210310 140441334.56086698 2569.6378435465526 1.9980052070772822 3.6490992778071494e-05 12698055.790127372 231.91364091132925 35549 4118 336162 SYS_20190625 27907118.943011455 2528.136092712771 0.050283782117206244 4.552719189555122e-06 306622.97509768547 27.761800006050834 61501 4607 932870 UTK_20210710 96994412.08305368 2853.901876040703 0.21592235747516966 6.353405439802313e-06 5333231.154898288 156.92761151494244 77471 3984 145803 WAVES_20210624 1309556635.849332 38857.52697972455 13.095566358493317 0.00038857526979724547 207738498.33215785 6164.074223818463 193152 59073 97299 FTT_20210314 3607318911.989077 58791.77151967065 40.694937944455724 0.0006633707994679873 81671815.81042999 1331.3375197208882 74213 None 3587 NAV_20190903 6831702.293489079 661.2525925962404 0.1033697725444828 1.0005343786169798e-05 79705.21368924678 7.714809125345274 51508 14201 463565 NULS_20220105 72514510.75904977 1565.5266005018507 0.7447237036590473 1.6215223040420588e-05 22535589.053522114 490.6780877991495 82962 5572 239062 HNT_20201229 89209813.370268 3289.8695004833926 1.4317397171371935 5.2734678076553206e-05 1161407.890307362 42.77765747351879 17709 2036 69753 ADA_20210105 6776976218.184067 216611.66185559495 0.2188884921904594 6.9963060999416716e-06 2846810326.926629 90992.25023818699 173079 96070 38332 CVC_20210702 158036709.61877337 4704.150483831455 0.23522797225322492 6.99347238854078e-06 17715089.90019937 526.680525665516 103484 9832 166246 NANO_20210105 195523678.84951764 6249.499429269407 1.4697853179736828 4.697856832416972e-05 56048639.592176616 1791.4758110306418 99760 54142 338450 OM_20220112 51649812.30293489 1206.2394341092215 0.1232315965673404 2.880196446436812e-06 2694094.080888891 62.96696962700157 56781 None 64108 COCOS_20200312 9510020.963473469 1198.9857256329385 0.0003936624536715189 4.959099682755083e-08 1487593.3364472806 187.39718695651703 14572 213 73199 OGN_20200407 7356282.921993133 1011.4287443203531 0.25863565191456483 3.5494429401596504e-05 35093018.79267982 4816.067192612466 66372 2189 102776 TFUEL_20210814 1855889548.3403814 38906.94087046034 0.3504086016960632 7.34446418040103e-06 67979217.49774842 1424.8249772046433 187028 22561 19933 GRT_20210821 5119600347.3997755 104200.76611735848 1.0384923795765595 2.1123768300212863e-05 530411769.20261234 10789.000994798309 130973 16753 33877 CLV_20210909 166140073.06437972 3586.1293705951657 1.2894677123801035 2.785212376512426e-05 29885674.617638692 645.5217918704586 69305 None 84496 PPT_20190613 43026549.19164893 5291.348687556679 1.1889680165193772 0.00014602694114631916 3046380.273692151 374.1510173150242 23980 None 688169 HIVE_20200629 74780153.60108963 8199.038932852687 0.20716864156102044 2.270544851148585e-05 5955460.310957484 652.7117059500238 None 91 99356 NANO_20190329 135378827.35740125 33625.402174508585 1.015990154240444 0.0002523514723866894 2236520.7149089254 555.5066582830588 97475 44851 349841 TCT_20211207 21452873.079179555 425.0252895290408 0.037013621821257996 7.328388766072604e-07 19165907.876999453 379.4690091546721 None None 502027 QLC_20200412 2083893.7609912492 302.7867239863308 0.008667295390753484 1.2602127266603503e-06 54201.9229247872 7.880884405088 24459 5659 940522 REEF_20210710 191764281.3481384 5644.172886372586 0.015184470233660105 4.4679962916332974e-07 11896099.133719219 350.0400474725533 184403 12438 42955 MDA_20200322 6192273.466299385 1004.9713850370076 0.314386207579306 5.1018897962086495e-05 246606.62487191983 40.01956169766522 None 372 1815630 TOMO_20200713 49773996.54626548 5364.73349090995 0.7061932699695412 7.600672553847593e-05 5361474.565578465 577.0490078516581 27676 1583 149165 GTO_20200621 8443742.433026353 902.5648148899571 0.012671222353810284 1.354293281913113e-06 13983801.716885364 1494.5810429321466 16628 None 1219956 AST_20210221 49768040.22952331 887.2650750739253 0.28946561184284836 5.148503476953017e-06 3900014.1196889747 69.36656871796438 37524 3508 155263 RLC_20190201 17062108.93567006 4972.52143809726 0.2438674093633648 7.107186606794159e-05 1121252.7595431386 326.7739882200565 23862 3259 451476 NULS_20201030 19752749.34980837 1466.413889489488 0.20154329217703104 1.4988241020077986e-05 6359973.275819936 472.9743734438603 29680 5145 320173 WTC_20211002 26948145.592310593 559.629088605743 0.92398782792443 1.918288768539633e-05 9557467.233334502 198.42233301465754 66021 20190 353915 ALGO_20200109 123786445.03844991 15381.025425273661 0.22796219617191799 2.8409035077482303e-05 46788294.042358465 5830.836467562772 13772 726 440890 LINK_20210727 7991454885.261379 213336.50496537288 18.02000280000746 0.0004828138551748497 1593123749.3101156 42684.91119073018 405593 62939 26292 STEEM_20190627 127167246.09590833 9792.420208432912 0.4091910062758887 3.137796216911829e-05 3129586.566618263 239.9858437409528 5798 3755 341474 LIT_20211225 96868041.27073197 1903.971112001011 3.124393641999407 6.146845932910993e-05 8498740.559551163 167.20187924179842 None None 128209 ICX_20210704 531963137.5071521 15353.237006271815 0.8335847991363173 2.4039558962851243e-05 32393954.537176777 934.2017524110776 141808 32502 225369 AMB_20200308 2467730.835389735 277.63550412945574 0.017023526727018956 1.9144458548735463e-06 534785.9221161385 60.14139774075197 19153 5511 509552 DCR_20210310 2070899363.3731878 37890.99121664852 163.64776694148478 0.0029915738507879162 42278470.08728236 772.8743748129355 43133 10607 269159 MITH_20210930 24055993.022354964 579.0301928892096 0.03897084420328997 9.371276761228162e-07 7881994.220222955 189.53746262923994 None 2758 668783 POLY_20200913 34547904.74852819 3313.1598056586436 0.050065566686995126 4.794907210502307e-06 2573393.364772158 246.46045609247048 35323 5008 332853 1INCH_20201231 84683372.30820313 2934.2811176846126 1.0924165059449609 3.788671872994318e-05 147059272.99761555 5100.246364248273 None None 26721 UNI_20211007 13161254609.740164 237115.7831647358 25.320647294586117 0.00045644094152198875 424072459.6737592 7644.513606428331 648297 53353 2657 BEL_20201124 19016116.61405008 1037.4134648469333 1.1930740735979346 6.49850111229161e-05 10230691.554326471 557.2509026602826 None None 182774 APPC_20190729 5591729.1920566335 585.7698130995984 0.05123541911140871 5.374546578641939e-06 264327.9385272604 27.727748543679354 25375 3341 1368976 LTO_20200310 13083198.938029196 1652.550749285447 0.06254232999310955 7.891599184494667e-06 6789998.492591585 856.762876802947 14471 413 867701 LRC_20211221 2527071919.9946866 53563.85548466164 2.025662778484845 4.2961183640520295e-05 190820227.49074167 4047.0027502245207 165040 86208 53381 DYDX_20211111 904192024.2318648 13945.252095141961 14.793758103745347 0.0002277493955571837 384273241.3448802 5915.873291380859 90603 2247 13989 GTO_20191127 7238333.468063167 1010.9414580138493 0.010922826328387215 1.5255359569675285e-06 965023.3599323303 134.7799361292013 17110 None 1232547 AKRO_20210804 63932541.16830934 1663.94493904131 0.023580375694475145 6.139271900215367e-07 10993009.096561512 286.20863687572466 43885 None 238743 BADGER_20211202 270094302.1107426 4725.476873586032 27.09630744474871 0.0004738555428343804 19801253.127192967 346.2808933844385 41253 None None DNT_20190901 4694118.012691621 489.11597666874263 0.006993394132703437 7.28695101443631e-07 54640.09975422028 5.693368953295359 60288 6282 485543 TFUEL_20190902 0.0 0.0 0.004754150285194893 4.887856195696479e-07 1064489.191489337 109.44269275786671 None 4026 310301 GXS_20200607 33943941.450467825 3510.407016705422 0.5222144838533512 5.4006261795468026e-05 19017297.933029644 1966.7267043899722 None None 447663 LPT_20210703 415651739.7193056 12297.305188550357 17.524613681422817 0.0005175404871151296 10853945.890368475 320.5409571554384 13859 1156 101406 PSG_20210722 41909613.826399386 1302.3110833555304 19.897211181560923 0.0006182867972492005 25902250.886570383 804.8876596859088 9297557 None 40943 SNGLS_20210821 6565407.70016719 133.61127610080376 0.006931589894784262 1.409423569305735e-07 2218559.34249022 45.110715934911376 9459 2133 None NULS_20190922 30638228.597052954 3067.9409720139906 0.4180106748934973 4.185813618947944e-05 3177498.271041506 318.18363348012156 21314 5292 318571 NANO_20200511 80586204.96932817 9204.566212466512 0.6063009058801948 6.920767942578772e-05 5547616.522256609 633.2460699397419 None 50944 290525 GTC_20210722 83702672.85270575 2601.000310193648 5.911019344341733 0.00018302993052925705 25524002.954877898 790.3300963025525 53359 1033 25375 REQ_20210703 39831067.542459056 1178.7031553336662 0.05171696696023557 1.52746811262958e-06 711828.4049994394 21.02395508105925 43391 27774 349393 ENJ_20200421 90229378.76652941 13176.497848913947 0.09828114020489917 1.4363105053006654e-05 15694342.149131963 2293.618944141796 54311 15309 92997 FARM_20211125 78192760.17909896 1366.829076125049 122.77210622845064 0.0021464050121503602 5721843.711481927 100.0340745007093 57791 None 107305 LUNA_20201228 268264608.70975518 10132.871996123622 0.5521563978805095 2.0995889206447144e-05 30329335.094962247 1153.2807766122137 17103 None 184547 NEBL_20190830 8855966.947210282 933.2225244078693 0.5715209691158368 6.022563597285395e-05 502445.1226035929 52.94657359129512 40413 6126 679101 ATOM_20200404 368397179.02998143 54778.92300488602 1.9791993355478374 0.0002941669585471242 119692895.59614775 17789.8680667611 None 8329 80555 SNT_20210617 277860454.5741223 7264.505221371887 0.0718535610068914 1.8774120585670637e-06 10432955.008096235 272.59547424252145 132295 6000 121237 TFUEL_20190626 0.0 0.0 0.010943503035592739 9.254961530510584e-07 3761842.1835407848 318.14040329944635 70197 4002 231431 KMD_20210110 76289215.80849126 1885.2826186574391 0.6147251168391102 1.5210318370377131e-05 4235535.347567325 104.80105552990831 None 8409 276744 PIVX_20210420 105222029.82720841 1879.7286638559488 1.604609389089191 2.8689457609284358e-05 2186703.772751319 39.09695756424622 67394 9608 208244 CTK_20210813 79437228.98325647 1786.7539067979976 1.4166186848422393 3.186424400922735e-05 18106062.72980558 407.2627355844542 81478 None 93731 VIBE_20191030 3417681.152624494 363.1889752967805 0.01826350604126624 1.94082003213213e-06 186086.67065757012 19.774994861827 None None 1006248 NEBL_20201229 8000617.742500893 295.0675090506285 0.4639872951466131 1.708985253974253e-05 686681.1361903531 25.292242874037782 38271 5883 1009679 SAND_20210729 480919573.39197934 12021.39484113525 0.680591433227881 1.700394591400068e-05 574137585.4218318 14344.29523070265 147755 None 30642 SUPER_20210813 259492594.5691976 5836.826300925057 0.875847273366057 1.9700633111567517e-05 58212525.774339825 1309.3876611277935 131144 None None LOOM_20190608 55827125.5297924 6938.536647251535 0.0805866342894743 1.0024118643569088e-05 8241611.207462024 1025.1686186695433 19957 None 406238 BCPT_20190712 5590831.824900532 493.6049533685499 0.04835504963304074 4.249402719049972e-06 328545.8150690698 28.87234095470829 10968 2843 1043904 LTC_20200711 2878989784.7044134 310050.85400053224 44.28281411194997 0.004769703550911572 1133900454.0897691 122132.45997825456 132041 214158 120838 VIB_20201018 2723312.0161017934 239.76787183459845 0.014836128471896545 1.305436058236048e-06 562262.9025572869 49.47370660729487 30547 1099 3129134 XRP_20200223 12031813176.600395 1246439.0912746307 0.2750165598980362 2.84904183578455e-05 2170573839.236917 224861.21119172737 946490 210157 33737 DOGE_20200518 318304381.77228457 32951.96053288702 0.0025597853187136225 2.6449902823507895e-07 198445361.81293124 20505.081021269485 140954 155213 108072 DGD_20190909 28080974.587178048 2701.87180511041 14.040494313836183 0.0013509365780234944 729627.8180431706 70.20272119384371 17284 3368 548048 EVX_20200318 2424254.4013345446 446.42007357757245 0.11021049563850543 2.04903864365553e-05 148830.2303083114 27.670585408322562 16866 2868 688824 CKB_20210814 417408394.58217245 8750.565862804153 0.015219437665000382 3.1898334292023477e-07 31910111.24601421 668.8022371298262 51197 5432 118997 BNB_20200621 2373897719.7149124 253749.01713300668 16.05376830453166 0.0017158179343036415 163099721.25134048 17432.008578570232 1163540 64912 1028 ETH_20191030 20630859876.73889 2192468.759925255 190.50596091786502 0.020247570437815627 10858105798.943794 1154033.5059654922 447950 447175 24016 AION_20210513 200256831.58196422 3884.9498633870226 0.3967829968030639 7.909985572420632e-06 27914326.88088679 556.4803045258489 73381 73262 250319 DNT_20191213 4239884.420300814 588.5366718189798 0.005647493062576202 7.845613043591195e-07 146194.89117666474 20.309693742214485 59565 6188 426375 ONT_20210207 525821373.6238418 13413.844893125608 0.6575191649157911 1.6714378796003265e-05 298475436.12759006 7587.355269526997 None 16717 259663 SUSD_20210821 298737264.0771156 6074.835105686526 1.00232998984971 2.039579745163955e-05 53719589.61168534 1093.1069408283568 148764 7464 47795 LPT_20210825 484698857.01263565 10086.383381089101 20.02792021197001 0.00041704709115906443 20137305.635699786 419.324855015665 15434 1313 104852 REN_20210408 879953891.8513864 15622.789013027837 0.9934741766832454 1.766995469068727e-05 214698460.9774249 3818.6317940309746 68736 1134 61660 WING_20210806 34427246.325234026 839.4282997280118 18.84206276575372 0.0004598805517392447 8223402.889824003 200.7096094075177 14332 None 410110 POLY_20210724 164636389.20344472 4925.314197253812 0.19369742301611712 5.792843411063814e-06 5414836.052479289 161.93967302283332 47417 5671 180054 QKC_20190227 48546324.01493529 12745.131505968044 0.03078730655616345 8.080814686996674e-06 4150382.107171529 1089.360273432743 34356 8974 181289 BQX_20200310 6778282.447334845 856.1422099535903 0.047339357698022944 5.981419799320848e-06 1177265.944918675 148.7498389167375 10691 11 317687 XRP_20190930 10326879446.621078 1282541.1270829109 0.23971394512701386 2.9771141897205527e-05 1547225755.797721 192156.85386371004 938940 205879 30361 IDEX_20210124 19894106.650021918 621.6836499355283 0.035254018079587085 1.1000506896984655e-06 847955.5998652036 26.45922913977012 44669 1940 441014 VIB_20190621 9037188.900824467 946.1355686941332 0.05028001163931033 5.26399391761818e-06 3480092.236614263 364.34328014286444 32662 1121 2278285 WBTC_20210207 4752593661.930195 121198.76075658482 39305.66021433094 0.9995465902350344 535122945.69642895 13608.226215021683 None None 144337 MDT_20210603 21048228.7267139 559.3621927241721 0.03454728688323985 9.174995838942947e-07 2635054.439461354 69.98122196731755 33016 304 392405 MDX_20210916 1115398235.1862566 23144.668061472337 1.7139814286815915 3.556757964246206e-05 22767336.910619613 472.454984204886 None None 44840 LTO_20210202 59004502.36096682 1768.339398933708 0.21729337746969501 6.506088874869371e-06 6377083.984576946 190.93943703806679 1437 1340 777868 WTC_20200801 12357208.614885611 1090.3124353557796 0.42390490998909786 3.7397245681700246e-05 5900389.333891902 520.5372816816728 54862 19505 711318 ACM_20210828 17489809.650027525 356.5863271095004 8.742465186367992 0.00017827782797298115 4462210.987373998 90.99416078049029 None None 38736 FUN_20210202 232008830.99201968 6949.4632213909 0.03839125884513806 1.149491737728723e-06 29784111.448623534 891.7808651153414 34734 16665 258794 DOT_20210204 19971174479.345352 532432.460075042 20.81123989919261 0.0005548286440639123 2517074593.027832 67105.32818909727 151034 11224 24755 BAT_20210610 1050890765.3066801 27996.934038217252 0.701382796878666 1.8726686184828393e-05 144189614.9393595 3849.814512270882 205397 74692 24707 XVS_20210124 22509594.372845102 703.2915896685739 6.078174666380634 0.00018965743967623553 14971083.489306908 467.1431012777842 16178 None 82683 ZEC_20210826 1876622253.6461842 38285.16335439343 163.38308902617328 0.0033336173477070967 357753770.954506 7299.495830137724 None 20318 153391 REP_20190818 104992258.49983037 10277.813363346982 9.547755478324099 0.0009340877855237869 6200187.0401123315 606.5843428102104 125977 10052 195654 REN_20190224 13557692.22039912 3296.6535415220515 0.017993427401896907 4.374444804336072e-06 350661.46454957785 85.25052995284635 5555 801 4072973 SNGLS_20210115 4850053.845079005 124.5204469891147 0.00544949870233596 1.3991061459451087e-07 66475.93491659993 1.7067054086900517 9017 2111 2388583 CELR_20190816 24231398.35150715 2354.644269196483 0.007767355082330704 7.53729569577602e-07 6829059.6177944625 662.6791374645762 18071 None 463728 UNFI_20220105 45475721.74256174 983.0460572350779 8.81291499826915 0.00019157462614611864 16218076.727792364 352.54759481353176 23862 None 287186 DLT_20210725 5994244.684286963 175.44668189018765 0.0724455317162638 2.1200876268551975e-06 390476.64626505773 11.427132725932 15235 2598 None WAXP_20211002 468353756.1579918 9726.249429888876 0.268246515992463 5.569059064166744e-06 162559296.54703408 3374.889401826439 155452 5085 4606 NULS_20210819 52046392.33746787 1154.657132990851 0.5509071232189515 1.2244505243513578e-05 10168409.725890607 226.00387789391155 64039 5370 365718 BCH_20210324 9566749356.3529 175385.90756793192 512.8980293407942 0.009394744383906509 4465510161.305833 81794.67283803946 None 482286 308933 MTL_20200713 21394746.051825583 2305.5132968949088 0.3322862629444178 3.5783834990465625e-05 2965860.4481036463 319.3928630671135 38144 None 396348 NKN_20210527 277400824.5746787 7080.259052637628 0.42408326877024705 1.0825093641967524e-05 56105014.1364031 1432.1291985218854 27361 3122 131157 STMX_20210304 86062874.62426502 1692.3059032940278 0.010349677815273392 2.0426326436899808e-07 14096886.39523686 278.2189053538123 27143 1341 161856 PIVX_20200501 18072027.48921143 2088.4167579904465 0.2855789394953357 3.313094465750774e-05 500674.1901310134 58.08484657162206 63928 8481 257372 CND_20200312 9859921.93956676 1243.1411815278877 0.005063433969368476 6.381925088090946e-07 62145.893651606144 7.832835190827684 34966 5976 433845 NAV_20190923 7220650.938105971 718.363790528275 0.1089797435966 1.084452728248128e-05 453701.17972913827 45.14760871413983 51320 14177 455499 UNI_20210210 5848771610.388897 125530.50367351256 19.513946965897038 0.00041896467159764053 893395008.2443836 19181.201367935217 199965 None 5312 VIBE_20190730 4204036.049035942 441.72865552083897 0.02245288666252776 2.3604505711965528e-06 419076.4477219207 44.057107456528 20420 None 1758563 WABI_20191026 8018229.246717206 929.0488817679941 0.13600821745275557 1.5735774083238465e-05 718862.7914454909 83.1704340729394 36147 7914 1653961 COMP_20210617 32024.618648384712 0.8283925341783315 3.472388358807923e-07 8.9815e-12 21.710175806335474 0.000561544170340274 2488 None 3414055 XVG_20210204 273558195.25141615 7301.907823036589 0.016552981854108462 4.413008170935298e-07 20771602.926075593 553.768826934609 290151 51766 157669 ANKR_20210509 1138663451.723637 19416.680134541537 0.162825585609471 2.7732652291598e-06 102633248.1718571 1748.061998029037 None None 5581 FET_20200913 59261085.285344034 5683.16507864273 0.08664750665551192 8.298024685882295e-06 5085129.77235795 486.99072841996224 24650 660 239426 SCRT_20210124 84223301.85721302 2631.4796645892943 1.2083084730079248 3.775248779324587e-05 542460.626168605 16.9486837386536 64782 None 296261 GTO_20200523 6390801.819089303 698.144469802543 0.00966556390333204 1.0577205217504268e-06 7507416.748570668 821.550489936611 16660 None 1039704 XMR_20210401 4403863579.419129 74871.0550865827 246.68647724255842 0.004196810747477856 844752689.4298699 14371.55050243861 378462 207329 40324 NANO_20210821 851587418.5614166 17330.482264259485 6.395966098010537 0.0001300990826388927 31715646.464088187 645.1216981216895 134914 108460 81313 WTC_20210511 51532216.69169516 922.2701710609286 1.7658442243572687 3.160324859705465e-05 30547302.023919392 546.703931476526 64541 19652 333404 GTO_20190826 11410985.003345255 1130.1115093227727 0.017150249294462464 1.697943611308095e-06 3108736.1308065243 307.77737174059115 None None 815582 RVN_20200224 176551240.573095 17745.61083519437 0.031705485314939365 3.1862621900198123e-06 16923016.42016757 1700.688913134446 30167 7427 186532 EVX_20200713 5487004.9571036305 591.2836197301468 0.2507942569147184 2.699268183731797e-05 2522114.7277456024 271.45215062241533 16685 2834 1106208 NEBL_20210114 12720940.526916841 342.09426012444465 0.7439287946946272 1.990587506485586e-05 1233619.0507016226 33.008893964068974 38316 5879 781583 TKO_20211002 143546632.6433622 2980.622015648448 1.9155299736948947 3.976826883741659e-05 24198754.689395595 502.38972776933485 320665 None 34011 AERGO_20210823 58469425.68215062 1185.1738433979804 0.22210439056914427 4.507558035217324e-06 21951373.072804637 445.4981183614653 21642 None 449238 DGD_20200129 63697593.33156001 6815.528964732116 32.00743391705516 0.003423109677886474 2023112.479575477 216.36648305622379 17607 3345 319938 MKR_20210809 2911847369.879529 66189.87735158634 3229.0930006892663 0.07340790893915305 100056884.0036698 2274.622201376353 170633 29296 33465 REN_20220112 459586587.32593 10720.77823829589 0.45808082150891943 1.0707941596854812e-05 42912145.41622655 1003.0997268104309 111512 1247 71958 ETC_20191213 443220903.2669362 61495.648258789464 3.8204160003239926 0.0005307400163571601 568390698.5717672 78962.00011508023 229029 24981 391424 OGN_20211120 392608437.7567978 6753.945673420898 1.0114413691406328 1.7389305880187965e-05 62933963.16225441 1081.9983926609184 128669 7316 96710 CRV_20210131 506601286.2592567 14826.879769216359 2.511245021740635 7.349397451287186e-05 492690534.52152187 14419.05719011028 63038 None 29016 ADX_20200224 9598586.805468082 964.7781882741726 0.10660361852832839 1.0713196018357743e-05 167541.4497606744 16.837180737996906 52535 3784 88673 NULS_20200903 42109606.52129774 3691.053062314246 0.43401044500140884 3.8034735137911166e-05 20118164.800838206 1763.066024040607 30427 5169 285430 QLC_20191203 3298276.6139458176 451.28203196045064 0.013743196605255635 1.8803453579982848e-06 59788.585115094626 8.180279429274917 24488 5705 940522 LTC_20190708 7482914954.061211 655054.1550521544 119.89957878761247 0.01049221070257169 3507943036.9948044 306974.2016522528 449581 205751 149931 BNB_20191102 3065691360.0758176 331852.4852353505 20.04647032727917 0.002166175859450532 208100622.29109728 22486.87858680961 None 57159 1745 LPT_20220115 892257555.3221985 20704.473414932418 36.23778185010662 0.0008401891826985249 26147951.503446527 606.2519525558864 25020 2400 74426 ZRX_20210422 1299690942.3916245 23985.25677783004 1.655702314425721 3.056460211705437e-05 243976721.41855586 4503.859994040082 208395 18911 55512 DNT_20190131 6307015.665283267 1823.6930859260742 0.010854326562429819 3.138562095738499e-06 261797.7321497764 75.69962393794535 60096 6534 594142 LRC_20190708 54422070.006072775 4764.1064081142795 0.0562913901460688 4.925964979405267e-06 6072272.890202547 531.374398907409 34892 2455 719839 FUN_20210206 263230150.8521174 6897.781340089621 0.04367075363636231 1.1440831262160944e-06 9594874.687621573 251.36580695794362 None 16798 258794 YGG_20211011 573777652.6649418 10489.424944599605 6.528671669849653 0.00011933227958628585 38711388.3984132 707.5739839799799 None None 55588 DOCK_20190515 6129886.40963773 766.9873090190765 0.011928820015430858 1.4923566402147304e-06 1573334.3928643859 196.83221185599982 164 15287 217238 BCD_20210106 93324989.24510601 2747.249932147204 0.49311151688835336 1.4466343613955013e-05 1557559.0428338386 45.69389182966245 27805 None 2021519 STORM_20190414 15108825.077625021 2977.956858581882 0.0033479601653641487 6.598149771706664e-07 972017.7870881796 191.56497160034482 27066 2572 4145825 WBTC_20200914 585371571.3000778 56709.439037999306 10297.00076287471 0.9972689826920297 34974165.24223461 3387.2630482246227 None None 209926 PIVX_20190616 44106107.16158458 4997.10919411054 0.732151656883335 8.295091114460385e-05 2088171.3092831143 236.58447140365598 62998 8611 321690 RCN_20200502 36525308.96853783 4121.7827597329315 0.07135983568924163 8.0801150794979e-06 339220.73055467434 38.41015767145816 None 1135 1160341 FET_20190821 21252081.376217354 1974.9923884585585 0.06747449563483507 6.27168628513736e-06 5694019.291303451 529.253347662503 16247 297 378000 PHA_20210707 144519850.8318147 4231.1380986845925 0.8050340317474937 2.3568372645591368e-05 21823425.948567376 638.9079403796342 None None 165668 SC_20200502 97143465.01571767 10962.378433743146 0.002199104417332037 2.490058531140078e-07 4771585.449301741 540.2893542232243 106887 30084 169509 C98_20211007 653131547.0072019 11764.793576882825 3.5286846018634797 6.360878724504066e-05 87448644.05431138 1576.3670665211773 None None 25592 HOT_20200323 54147072.59277268 9289.782630371154 0.000308087189587911 5.283707860895573e-08 5521789.52905902 946.9891552428517 25099 6920 515134 ALPHA_20210821 417723082.7548349 8502.043576519756 1.0305101427225283 2.096140319755248e-05 78171384.48543148 1590.0686861567615 73129 None 63427 GAS_20190314 38503010.9085744 9958.368592600818 2.7628127763489516 0.0007146781720412059 10791801.554946458 2791.598864152076 317282 97813 156064 WTC_20200411 6753440.758507682 984.9471867628916 0.23192981513471306 3.381642837349726e-05 8945125.972291412 1304.2403002744788 54634 19634 978850 FRONT_20210809 44201951.73822373 1004.7648082512004 0.9606425533151745 2.184265762694686e-05 21920861.58189471 498.4266757376586 None None 254647 SNM_20190221 8720961.981804019 2193.7048131476777 0.021824229183693745 5.4897517846538475e-06 94079.32106272933 23.6650795936944 31341 10089 10312209 BTCST_20210617 210200772.91463855 5495.521445218171 28.87474033232172 0.0007548426508563143 2680864.6410999466 70.08308815887911 None None 679829 APPC_20200403 2846575.9551834594 419.4740952103036 0.026453790505071587 3.880501561452077e-06 146306.671374109 21.461698149051305 24781 3224 735722 BRD_20200312 11600860.73585803 1462.6391375415599 0.1891212660725145 2.3836704838247792e-05 870641.7951864841 109.7350494880096 None None None BNB_20190922 3260201288.465808 326423.3875552785 20.952862390413546 0.002098133267010922 152366529.81183344 15257.356203679507 1037600 56450 1307 BEAM_20210120 29451951.11614124 813.2902915169351 0.3680145489299143 1.0177598123882292e-05 9385693.357853679 259.5653225884227 16018 1629 289835 DLT_20190410 9758051.773312291 1886.0755857799038 0.12170391906922366 2.3531824089160395e-05 522287.6539842228 100.98591147674043 14952 2682 1058682 MDA_20210523 16054178.732909419 427.09404714587356 0.8177786399447118 2.1758424860914483e-05 5893398.750796256 156.80413700127585 None 384 1652866 RDN_20190227 15060278.290516341 3954.0793311830735 0.2956583265456375 7.760211641523248e-05 5168799.881374774 1356.666713256155 24945 4464 723276 ICX_20190812 100246556.12633424 8685.837858926177 0.2044662570356785 1.7710307840545466e-05 14870858.177129572 1288.0730541475164 113996 26011 229714 AMB_20200301 2331073.737677397 271.79597512836693 0.01601691562567032 1.870225418712866e-06 393040.1351843664 45.89358329502843 19162 5517 509552 GTO_20210304 13521023.462319914 266.0531357662422 0.020383744025491462 4.008952526155227e-07 5829169.121678457 114.64460231895724 None None 535966 BAT_20200801 376212289.9417409 33194.303895059005 0.25263581141753144 2.2287742569011762e-05 124932685.89880252 11021.666034376356 120174 43163 16969 TFUEL_20220115 1886178773.9046779 28765.286079276702 0.17471024961970155 4.052040090628557e-06 8924891.60788906 206.9942586562633 239120 27283 29092 BEL_20210916 103343828.02465162 2144.3688025704023 2.1613319628086574 4.484268893362329e-05 14020884.115550935 290.9012385820588 34307 None 414894 IOST_20211230 730333789.3387349 15710.831252435117 0.03186578972725648 6.847563864440067e-07 65920434.46570922 1416.5485583101008 271199 53971 217229 DIA_20210825 97542337.43837966 2029.815826995874 2.008881222095114 4.1831506281821025e-05 21874299.73618255 455.4947782677977 34803 403 452698 MDA_20190401 21775477.18721865 5306.52806496263 1.228215565663255 0.00029930704704714695 6716761.389060388 1636.82506009792 None 359 1539394 MFT_20190629 23163742.13557234 1869.9255360704055 0.0026222151394264225 2.1180519503155555e-07 1989271.2662817077 160.68017539462042 18821 2112 885644 SYS_20211028 192058013.48195767 3281.9382763210006 0.3091567195354682 5.281841254881698e-06 8322950.199127268 142.19487705177582 78172 5957 292065 TORN_20211002 82936379.53647852 1722.1023871648042 69.01447916453756 0.0014329737301346068 89891499.03540516 1866.451188786843 25365 None 97574 MATIC_20201101 58765032.26359478 4258.726176744433 0.013722507259146132 9.95561398525358e-07 5718753.053339618 414.8928238904219 57016 2426 54287 REP_20200721 213015728.80411395 23251.834886829845 19.359651437755215 0.002113789740582617 15906584.95437344 1736.7655710313272 134258 10256 213403 ARDR_20210112 74716840.1645812 2109.2741308082113 0.07409779448091712 2.084518062757036e-06 6875576.192579301 193.42360816130474 64275 6290 None QTUM_20210110 337230952.2849113 8334.99150720605 3.2470742557944625 8.06059196414242e-05 443913408.540908 11019.781414836889 None 15033 249496 UMA_20201106 376796884.879678 24244.56369737776 6.76664543618155 0.00043429866047218726 13303927.718801217 853.8762732268493 14406 None 89241 EOS_20210114 2635481174.055057 70899.02261119855 2.7807048190428127 7.440545804229859e-05 2517786980.2021375 67370.36316546604 192639 74087 95839 DLT_20210809 8665178.702505287 196.89585313844916 0.10566029053490489 2.4008821701174615e-06 260109.9494027027 5.910388251154794 15281 2598 None ZIL_20190603 194784880.20883027 22271.78322246579 0.021375507029720305 2.444305727482914e-06 48466580.371787585 5542.190874329006 62575 10384 194027 PERL_20191020 8398532.761211254 1056.5293248472221 0.03214094393760405 4.043096225121944e-06 3341645.729955619 420.3546499040866 11148 372 274565 KAVA_20200425 10616437.94674704 1416.1246599026597 0.5453030404620977 7.275301320875576e-05 15174890.264995977 2024.5971688606573 21409 None 326778 BRD_20200625 8287954.550406272 889.8670191730504 0.127234516220157 1.3683670914750852e-05 835960.1548407312 89.90487798838757 204 None None MITH_20201101 2594293.509067198 188.01526420056544 0.004195552083619619 3.040591775702589e-07 659848.6278064682 47.82041244941641 None 2107 516659 BQX_20200403 3997689.6001663688 590.0099960707292 0.028493851953707797 4.17975779225096e-06 323510.0616768912 47.455630195678715 10846 12 327684 TCT_20210711 13154788.548672317 390.5331917166639 0.02268612548872254 6.727841989571688e-07 658472.214674582 19.527781493830464 None None 405222 POND_20220115 42400307.77446348 983.5697565572233 0.052735715472426586 1.22269310170259e-06 14330944.824390834 332.26717833808186 31165 810 7248359 BCH_20200719 4148425213.777682 452146.7611068422 224.43758592061656 0.024476595425295653 1381806617.891448 150696.33458848498 3409 303121 166061 LRC_20200325 32214911.546732813 4766.688417866782 0.028187478977589546 4.171440176622888e-06 2589762.2457534466 383.2566327916732 34235 6820 553678 XVS_20201208 12825142.123013154 667.9143015079735 3.461301107232563 0.00018038417091975606 7566737.052088933 394.33714300578845 12494 None 141785 GAS_20210809 128231107.69729124 2914.851025139042 9.194984975649012 0.00020902991902290065 37371266.40023032 849.5623222997181 408998 112595 120320 DCR_20190509 248699185.1919492 41783.465473089935 25.507319657405635 0.004282047694866889 2101004.9566166 352.7067348596152 40551 9444 304516 ARDR_20210711 163019088.92419922 4834.275479540341 0.16350136448829242 4.850352527266422e-06 9265409.759357704 274.86317183412615 72218 6979 None VITE_20210916 63980152.41591464 1327.5784867545237 0.08388558716115108 1.7401342892379166e-06 5990070.034565102 124.25884606444774 34096 2494 540843 ZEN_20210324 560484798.7679532 10281.398237471634 51.56120673870129 0.0009444457768514085 53012066.490385875 971.0211510901518 93704 6882 484882 QSP_20190228 0.0 0.0 0.015958727239295905 4.180802865262968e-06 195094.88998907284 51.11017080710915 56556 8560 788091 STRAX_20210310 149092637.7280037 2722.985078980214 1.4898167592244078 2.7209585044592392e-05 4081551.2266198285 74.54427836641372 152248 10523 209083 STORM_20190421 16054571.414718132 3023.4751160720043 0.003554298284973685 6.691971556664054e-07 730802.4724365141 137.59423005548695 27075 2571 3845738 QTUM_20190725 283415982.3618825 28849.435526292647 2.9527367807649503 0.0003011189272320175 412114799.5596079 42027.3040076665 178972 15361 354208 FTT_20201031 345959658.1256114 25472.943769869195 3.7341920527483548 0.0002750234280079657 7341878.603390438 540.7297195752577 28657 None 6036 EOS_20200403 2141774063.196766 316099.60577192495 2.29908356311839 0.0003372521361307112 2760090625.9590507 404877.1756066477 1485 70790 93233 PPT_20210624 46382123.36583811 1375.7367398759582 1.2817969165833825 3.803383290586984e-05 2759402.1512772962 81.87774442578892 24341 None 649684 NXS_20190401 24380989.70469009 5941.540937345892 0.40796362972794586 9.941771846098355e-05 1031849.6371505079 251.45412297833107 68 3513 688180 LTC_20210210 11983254027.726034 257280.38565092714 181.30295214394792 0.0038912531410354094 7996530120.349026 171627.22713685888 142173 248452 113602 VIBE_20200629 2388799.110631442 261.9921437488531 0.012777845698689028 1.4000414093889718e-06 110803.51601086909 12.1405058708 18867 None 1162638 STEEM_20210131 71200994.733425 2081.3561007028193 0.18864959715888752 5.521807272113635e-06 5406223.281208996 158.24111728002967 12119 3821 197343 XEM_20190908 420346274.4727757 40152.28014176979 0.04663351585551117 4.455454222984331e-06 38670640.81970192 3694.6660955071275 216392 18359 190156 APPC_20191012 3700683.552145995 447.77341916158196 0.033629375827202546 4.069070047798098e-06 213584.70215275415 25.843212751354393 25034 3293 849291 DNT_20190906 4665651.756471558 441.38680610898143 0.006876162503043689 6.50563731685482e-07 87866.18005438319 8.313147043838095 60198 6278 485543 WABI_20200713 6962368.642451233 750.2698767338622 0.11790939026167928 1.2695647541888453e-05 1591826.8394886835 171.39663310119425 None 7664 979343 DLT_20200907 3438130.5971323736 334.5961260369831 0.04192341442247723 4.079953236128857e-06 63766.200254621755 6.205675722466879 None 2552 None IOST_20190703 145705066.55240938 13534.699210467425 0.012136397726934173 1.1244900804752609e-06 48593802.73410997 4502.427357485913 198018 50294 104916 RCN_20210125 26329242.543642372 817.6959197512309 0.05137159989105688 1.5923302365372145e-06 621517.390849376 19.264748150377663 None 1126 5522516 OG_20210725 5634760.748261534 165.04271502426823 4.429235244792246 0.00012961968276653402 2327075.267638648 68.10086646895112 694976 None 316582 DOCK_20210422 50471074.16815814 931.4856982856652 0.09013789443004762 1.6639638991378932e-06 10228038.425813915 188.8116735715116 46929 14956 216888 AST_20200319 1530226.228422231 284.33579598687425 0.008893000624256393 1.6505936150358752e-06 1437767.8203623092 266.85822755044643 31766 3481 355183 BAL_20211225 197809063.40283528 3893.1381583294033 18.344312853388445 0.0003607481084472852 22197950.3917434 436.5314023604293 None None 2428230 DOGE_20220105 22445213952.88366 484627.4060799632 0.16858570394181815 3.670696632068566e-06 733229309.3076789 15964.950130875439 2785852 2253100 34703 VIB_20190615 9022773.322609937 1039.185373796798 0.05017597018070295 5.782554829946216e-06 1526437.6121711559 175.9150676127141 32693 1124 1919556 WAN_20200306 26157355.04422653 2886.0069811797753 0.24613167373404307 2.7188187154748226e-05 3937376.756341275 434.93035465981853 106147 16393 700059 INJ_20210727 179089161.94144124 4783.569897167685 6.113224923363252 0.0001638332920084593 32814255.853433467 879.4159594439005 None 3787 133527 HIVE_20201224 41671661.82719925 1782.3617374699647 0.1113977568688457 4.7778431323400376e-06 3504191.9954196084 150.29458519015142 9997 97 156100 MDA_20200316 5511610.209502519 1020.1759805173881 0.2824389023799392 5.2297567877126126e-05 550000.1389762156 101.84032496289873 None 372 1815630 BTCST_20220112 149513273.61163184 3487.6967567707034 20.48532250280384 0.000478650398593123 3114848.3857849813 72.7800805288305 67537 None 2305275 XLM_20200730 1950450556.7533169 175855.32056201764 0.09520339758452848 8.583171858370985e-06 212388739.52576765 19148.15120451862 285732 110251 65501 IOST_20190830 87898969.4551538 9262.60211411797 0.007305435593628719 7.702636217388408e-07 33940517.16762883 3578.5882090353766 196271 50751 99205 OMG_20210111 512265015.58669597 13288.412693892162 3.6705527735375294 9.543361422087569e-05 424247554.5006553 11030.348818917892 289356 42563 211368 FRONT_20211002 65764407.62050518 1365.5412014210046 1.2095137442615276 2.5113927875667893e-05 19125938.406750288 397.1244146504996 83698 None 383027 GRT_20210212 2492621450.6668987 52295.52280484461 2.046628946749041 4.2797195841918587e-05 3539946563.2591157 74024.06116574096 57077 8053 34817 CND_20190201 15868390.71288999 4624.711052006911 0.00963505285674704 2.808056358044737e-06 169743.6749329858 49.470388250093634 36996 6258 572490 LRC_20210401 685802069.0714334 11659.472089894376 0.5496819696156121 9.351616472816862e-06 102942543.78676352 1751.338485603161 66735 9693 106441 NEBL_20190130 15016187.147184964 4396.216197781664 1.016460706314112 0.0002977600015046842 91384.25808618031 26.76992495255074 39714 6182 513437 REQ_20190629 14306865.959046742 1154.941798323421 0.019589781604271318 1.5823329866922577e-06 355469.42830316065 28.712469262142736 41658 29915 444138 BLZ_20210218 63712572.57005911 1221.08257627972 0.23655242729244633 4.536826352238127e-06 37419485.24255761 717.6663062761228 46571 None 375336 CDT_20201229 4899344.60143619 180.6774811838671 0.006997056833636969 2.5762412600838116e-07 701763.0312766411 25.838161943821788 19236 294 518936 MATIC_20190904 31153185.218758844 2935.5834627904333 0.014310594658336201 1.348495979679556e-06 22618245.13802851 2131.3309030293094 22936 1137 217453 WPR_20210219 18543772.91243482 358.76691792035626 0.030484107447025868 5.895585944742955e-07 7591304.094449445 146.8148142414196 32749 None 7566939 COMP_20210422 8416962.153342817 153.50014141986117 9.283815388600322e-05 1.6918679312976064e-09 16.0326042086917 0.00029217566033443116 2407 None 1922361 MANA_20210614 916004038.0341928 23535.27395482488 0.6940838981328188 1.7779895150750457e-05 51395215.35177738 1316.5577571574472 140182 33214 11364 IOST_20191216 62526476.37980128 8786.077611588995 0.0051984077082225695 7.311197776512884e-07 19316070.143543214 2716.670507799146 193354 52312 90526 QTUM_20210105 252427101.79908824 8068.296576189467 2.453384207467752 7.841721930850482e-05 372430674.1186931 11903.956078580783 188978 15020 249496 ENJ_20190225 31299208.087072894 8285.363881372836 0.03608707233399226 9.60258466005184e-06 1946627.4408325139 517.9875671035442 38350 11286 18087 ARDR_20211002 313797409.2659354 6516.5952719376555 0.31422538971512143 6.523625286650482e-06 25892382.94623411 537.5511007332263 73707 7190 None COMP_20211125 0.0 0.0 7.480248757680611e-08 1.30756626e-12 13.328046613239284 0.00023297760044791097 2633 None 2763642 LSK_20201226 172936775.4441639 7002.875510952927 1.2118056854269772 4.907715807421201e-05 6148638.692623474 249.0149342324424 177209 31068 311147 PPT_20200422 7894488.76573581 1152.771500973943 0.21940177775802644 3.205070503929804e-05 3060167.302894621 447.0361206651235 23863 None 1377509 HIVE_20210710 115873868.13992614 3416.4317213061554 0.312110188394003 9.184329715599431e-06 17589258.156738527 517.5913903853428 21986 169 116444 USDC_20210708 25803727530.315742 759400.2046000184 1.0002803093094566 2.9440308189546348e-05 1717756880.9489553 50557.12033836096 None None 34841 BEL_20201129 14461138.400287705 817.0422749398635 0.9038211500179815 5.106514218374147e-05 7133459.534204156 403.0345222269409 9957 None 182774 WAVES_20210519 2756495128.427295 64602.45292657901 27.673174752065478 0.0006468585208551385 172478831.9123687 4031.6806108894148 186894 58712 102024 AION_20200329 23225795.378854297 3724.181119166308 0.05819524905194842 9.3081611826003e-06 1375642.5663554564 220.03003588578693 533 72551 244642 DASH_20200531 747559985.2890933 77139.87302914314 78.84086928131909 0.008150300762230035 614493657.7453883 63524.26314881401 317309 34959 77507 UMA_20210324 1327363564.068737 24334.374685190884 23.08030488124803 0.0004233990168465929 74553888.11706199 1367.661436591389 31738 None 124500 DGB_20210427 1777297235.939998 32970.23513961153 0.12468366740241113 2.31297823976664e-06 133524189.30285548 2476.9767426171643 206644 34380 307288 XVG_20200901 107288136.184374 9179.240567668054 0.006557106931996857 5.617906068021666e-07 3561745.691327894 305.15824950817796 289436 51489 238378 ONT_20190729 632990105.5237126 66309.80919699102 0.9706565713262586 0.00010178621380124857 112975748.499505 11847.005450562716 81430 16296 245341 WRX_20210731 511834590.3994101 12267.892794758825 1.137595778406069 2.72338237593144e-05 20714018.452009466 495.8896108595147 299554 None 1319 MTH_20220105 9578470.714096406 208.1601567773746 0.02771240498216175 6.024106240795645e-07 311832.7414095214 6.7786017302312676 22537 2096 894684 REQ_20211120 153473723.5881384 2640.133497189101 0.19925632019343187 3.4162841540242824e-06 7292524.2626038045 125.03159275944621 47954 29443 298341 DGD_20190220 31662653.576787837 8085.877539622333 15.831334704061273 0.004042940791281562 371429.8624922688 94.85422235339804 16027 3297 571797 WAN_20200404 14082079.792738369 2093.938848137317 0.13277522122848218 1.9732194034661914e-05 456132.1205081009 67.78740358353028 105424 16318 867725 BAND_20191026 5084637.51593223 588.2784786416399 0.3249232129973444 3.7529669434979976e-05 2508079.4612203427 289.69119266043776 None 981 550778 NAS_20210104 11505643.151157802 343.9301461423152 0.24906187412657982 7.566198413184715e-06 3993461.9082919704 121.31654135982323 23357 4854 1361296 MATIC_20200310 56373069.238138914 7120.533613397768 0.020428526568478562 2.5811840132497785e-06 81828096.34831317 10339.138920319052 32513 1572 153243 VET_20210111 1771051566.3699648 45941.97026930343 0.027256779223965962 7.086706318777714e-07 478097105.3732326 12430.426022817659 149950 71184 134055 STRAX_20210731 183433603.27956054 4414.714462914217 1.8270273610243613 4.373868301735365e-05 30011129.271280985 718.4606526381846 157452 10767 188623 ETC_20211007 7184408600.370749 129417.15409575538 55.03777017887476 0.0009921220536119007 5088697205.345192 91729.89212986009 527687 60706 203522 BQX_20190401 24172007.29038952 5890.636027727074 0.2067148144578514 5.037492197911469e-05 3812021.454834765 928.9623671803504 None 5813 421392 LIT_20210318 195298164.50695235 3320.0749069388407 10.882027177252924 0.00018462176111879076 84146044.59880099 1427.6008221597435 None None 102564 KMD_20190130 68718718.18725595 20132.036242847385 0.6151456031046193 0.00018019954393537417 341467.0087174071 100.02867439725203 94873 8239 246166 ARDR_20190916 57933687.948988356 5623.1974091468865 0.05799170894374512 5.628829080786359e-06 1602986.3999556615 155.59011156108824 66911 6530 1028714 BNT_20210809 912816388.248048 20749.47376191742 3.833147903207053 8.715639026635064e-05 73685813.96889737 1675.43484403347 126382 7673 39422 SKY_20190805 16732639.305480096 1528.0899170052917 1.046006331756937 9.551215505645348e-05 607616.3964958731 55.482218142483504 16370 3800 513361 FLOW_20210809 1220235890.2449648 27737.5087848528 21.826138816756306 0.0004961799522069389 141184571.028156 3209.5898543138896 None None 60038 AKRO_20210220 128189295.84016624 2295.4697737869706 0.04896712035338665 8.754471018562152e-07 45727554.232507534 817.5292837095114 30732 None 165746 BAT_20200223 384496932.5758673 39832.720698196215 0.26908645597525593 2.7876087563626602e-05 73044745.81888677 7567.0911162372895 None 34881 21502 LIT_20210707 62193005.65389974 1820.8377200732068 2.8029115222437233 8.205872130084332e-05 31325409.350661594 917.0903238083928 None None 323209 PPT_20200109 13109697.804662 1629.3753215635516 0.36065873878522026 4.4945903019037595e-05 3484261.387048304 434.2145567378335 None None 813674 STX_20210527 1132305873.4150176 28900.486950222377 1.0795353193443635 2.7556076323409827e-05 12887635.02707488 328.96807364302697 63543 None 59386 CKB_20210204 152603301.06423044 4073.2859264603044 0.006427885326114484 1.7136772806241007e-07 18357968.604621682 489.4243148417733 22468 629 367403 RENBTC_20210117 479952815.1203743 13227.847884455641 36241.23832049607 1.0012761752172332 19869059.71678651 548.9441597566936 33569 2223 93933 GTO_20210718 20678117.097253613 654.2413331343114 0.031178044963126348 9.873030886584206e-07 3543005.1492042826 112.19497345260471 13829 None 367259 RENBTC_20220105 858840868.162241 18565.513572686446 46788.64998834958 1.0170889122566253 2799081.0479743523 60.84625863561469 110767 6492 71958 MLN_20210806 138323159.9250974 3374.504527530193 95.01870517991429 0.0023191765741875114 33254258.285251122 811.6559435440302 27508 403 109463 OMG_20210401 1113007821.0434508 18922.491212167195 7.869119617871081 0.00013391595639066964 1120168587.2886572 19062.926346280303 None 4134 135394 VIBE_20210124 4371447.299050154 136.60614976 0.02307468542897563 7.2e-07 517363.10126971034 16.14329409 18481 None 1420135 LTO_20201030 13296061.707255872 987.0792778129636 0.054627449632250066 4.062498793962075e-06 1369318.717177344 101.83260749918932 17881 562 1982802 DCR_20210125 626059149.0886983 19405.525914489575 49.98594832603387 0.0015493801456509977 15233667.639168985 472.1875442199356 41576 10148 350350 BQX_20210813 855608163.085626 19246.6226103057 3.877548002547177 8.721642636844759e-05 5789849.396379842 130.229199801536 100259 6563 29593 ARPA_20210519 72270744.17490195 1693.7694902409405 0.07408208055282739 1.7316634422184043e-06 14842955.714190053 346.95304981885675 41687 None 478045 FTT_20200313 60731134.87116704 12509.185684579614 2.0727072646545137 0.0004339431287245103 24989629.11129557 5231.842444489253 8158 None 19129 NULS_20200907 29819398.69334545 2903.7806978909484 0.30693620771937113 2.9889114955837633e-05 13909402.26788496 1354.4825044945794 30406 5166 285430 BTS_20200713 66359550.40455809 7150.953110781234 0.02451334930776181 2.6383420687996664e-06 8251794.093266799 888.130594722317 13098 6964 134669 SKY_20190702 27340026.37166508 2579.998724946435 1.823139948757505 0.00017197935826186657 1652898.133463601 155.92020813269838 16286 3779 456375 LINK_20190603 373164016.3958827 42687.32367727151 1.02373218542277 0.00011707190073913546 30786961.299291715 3520.7333798944933 13993 7151 252422 NEBL_20190513 18511032.880837068 2667.6342949114783 1.2265216278295104 0.00017628956778578626 157272.36501540212 22.60496400889195 40396 6178 646043 XZC_20201231 36479042.563519865 1263.2542196254171 3.2085656530313957 0.00011126092097447675 2820084.2510590246 97.78985532117905 67090 81 578342 WAVES_20200330 77595854.32931153 13122.43985873591 0.7748403423116237 0.00013126912955696443 38596925.14390919 6538.875805176656 140608 56864 60056 UNI_20210128 4262672055.7619066 140687.24089404015 14.826944209191103 0.0004876142415506997 1988424279.4460337 65393.379999503675 176331 None 5976 CND_20210902 41307024.47112209 849.1666975354674 0.02141447066420518 4.401267364254609e-07 7473727.864407168 153.60582596103345 36336 6273 207164 WRX_20211104 750991044.8734859 11928.108929848708 1.6658962506097557 2.643500655119027e-05 155535962.56953892 2468.097390798803 393354 None 834 RENBTC_20211125 986168404.9605556 17238.471269828013 57124.69286495365 0.9986512226787964 3507205.6578964405 61.31280612264023 105088 6303 69295 LOOM_20210128 51501720.94727614 1702.487089722318 0.061928626870054904 2.0437042745074202e-06 20877024.154528253 688.9618849959529 24177 None 299124 AION_20200308 58276920.646020316 6556.354056680696 0.14544736749446907 1.635176208730275e-05 10117797.16871318 1137.4823415533779 629 72547 246428 GXS_20201129 27049118.39069829 1528.04908924073 0.3863062732925779 2.1807591630396688e-05 2754649.5941681364 155.50426588325058 None None 441623 ARPA_20210401 120169858.17695189 2043.0342377908385 0.12216877883965711 2.078931180418018e-06 77960821.92198776 1326.649779788302 29742 None 610578 THETA_20191203 79052502.3625757 10812.79390608098 0.07954060613886091 1.0886960614366527e-05 2108428.8424905767 288.58696055591867 None 4024 468336 CHZ_20210704 1288930632.0637941 37180.44913048487 0.2413301420848262 6.960270285971308e-06 102531780.3139236 2957.1478213272535 359331 None 35776 CELR_20201228 19744786.05144689 745.8155462489046 0.0049422668157965855 1.8793096827544395e-07 4593689.545765608 174.6762278259091 25728 None 413002 TFUEL_20200422 0.0 0.0 0.0016283763284972127 2.3787687561583557e-07 165751.0014105044 24.21327899191101 67730 4024 358410 COMP_20210114 586313.7404087997 16.09355586406593 8.418906339542464e-07 2.265080301733564e-11 46.722567386302494 0.0012570559971199812 1960 None 4236498 MINA_20211111 1513639678.3443298 23340.88767849926 5.227314083004533 8.047431994243789e-05 434456065.54655993 6688.436138436703 148418 11295 69249 ICX_20211028 1225368744.256619 20938.937591134003 1.821600608466051 3.110412181546685e-05 92476654.19747715 1579.0536651540324 150100 34051 244294 DOCK_20190421 7696092.35191347 1449.3691735382206 0.014977798743416626 2.820268034959914e-06 479922.09747683106 90.36768179167494 None 15314 209394 BAND_20210220 403935531.36899537 7231.5916396785215 18.0443572199772 0.00032252327026201347 412853652.37116355 7379.3102452519715 61800 4043 238789 VIA_20201101 3919149.216946355 284.5691930709505 0.169262480046215 1.2280892885911954e-05 69615.9842687592 5.051009802754462 38121 2139 4087654 SKY_20210127 9654399.894467287 296.2277478265063 0.5234184881323837 1.6069712280592636e-05 1082004.5687433693 33.21912102882196 17245 3829 762023 SCRT_20210427 222368232.6524504 4127.650959646885 3.169900074788533 5.880409237207548e-05 4894460.137450213 90.79601225387647 None None 64525 NBS_20210718 0.0 0.0 0.010278469959334985 3.2548433198861627e-07 1017095.7100455576 32.20797638777012 None None 1815973 BZRX_20210624 26437079.02269661 784.2032807511689 0.1879409619638192 5.5766362448066836e-06 10718110.98649722 318.030755927852 None None 126012 MTH_20200117 3446292.0399278784 395.94268969245377 0.010007747458888848 1.1485288082981835e-06 1443823.4723602922 165.6989106604643 19212 1948 1201858 BAL_20210120 243507069.33915278 6721.521412241306 22.367295085554996 0.0006205916952883226 95528558.12661442 2650.4872229512903 37527 None 81450 KNC_20211007 158387506.7231223 2853.3554490232427 1.715729036384174 3.092808101576029e-05 33721918.53263458 607.8781708923992 187697 11776 105658 ARPA_20210105 21088894.587104388 674.0617579493578 0.0214460140391097 6.854763233085023e-07 18481849.438607622 590.733092779603 None None 1160562 KNC_20200913 260527275.58158153 24985.136460832495 1.3230032075300115 0.00012670739670167652 44018190.935780674 4215.734587222142 122961 9062 55300 CMT_20190923 18047122.510529816 1796.6084771038295 0.022555854326136663 2.2457590911942104e-06 4517610.845631129 449.7930107350261 289639 1648 632576 CHZ_20210729 1340602218.7174683 33525.92183912152 0.2510557235293186 6.2750235980571285e-06 187861882.45166886 4695.5222887877735 366011 None 41451 HBAR_20191020 23853814.15846948 3001.7709166322643 0.03355290121284911 4.220710147745347e-06 2210655.2935017087 278.0843054750954 None 6169 85439 ICX_20210112 352109414.4135852 9940.132336975767 0.6063900737560001 1.7058956621799148e-05 82173353.50868966 2311.699570360313 117519 28127 340142 ADX_20190616 14945101.895264987 1694.8662388190298 0.16244390027876468 1.841615789503728e-05 608524.7855721185 68.98805381370678 54258 3887 880682 CND_20190123 18919577.25465443 5296.588122257673 0.011489260838506989 3.2166750256804614e-06 467137.57607133593 130.7855914863917 37142 6263 440166 YFI_20210916 1301591959.0703878 27007.83630775943 36472.389894458895 0.7567185711618696 303817695.4248656 6303.5214594074305 None 7203 31762 XZC_20191102 42617590.193629354 4607.147225873837 4.891190110835318 0.0005285308470317966 12519912.864462 1352.873227388888 61427 4059 207316 LEND_20200903 869252726.3170785 76194.70900410114 0.6927874103721811 6.069914560378109e-05 191684650.99852753 16794.61024662522 63943 5891 20694 C98_20210825 992542556.2181948 20667.74490783066 5.155001783906784 0.00010733929947056714 1713799514.412249 35685.349301779286 166375 None 45586 BCD_20190618 262652655.8137744 28178.651851045077 1.3980320768598313 0.00015004630650747666 10327495.35822551 1108.4170096121568 21325 None 3124822 NBS_20210805 0.0 0.0 0.011940814587113055 3.00278273359977e-07 3387933.125452653 85.19709453222087 None None 2066443 SAND_20210821 540239366.4257151 10995.654357455276 0.6116943734573491 1.2436674633739071e-05 126192244.16934831 2565.6797743047573 161231 None 25914 FET_20200322 4574112.32085979 742.6904010278771 0.01343783318335133 2.1839223232673373e-06 3162243.14862006 513.9290918142053 16592 360 584622 WAVES_20210930 2318992539.598688 55827.79266162693 23.217572126159332 0.0005585634240036133 159520226.0025147 3837.7037508328904 197215 59618 159432 DOT_20210114 10463214371.418743 280763.9786119785 11.02499584700394 0.0002950042954192967 2072789652.8729303 55463.22734120199 114798 7876 41009 DOT_20201229 6274967873.493339 231237.7158607185 6.609020866254324 0.00024349113595826822 1001838592.4843612 36909.978326199845 None 6686 42393 YOYO_20210708 2069115.6324123759 60.75106649100223 0.01181878585251619 3.4784293319894895e-07 227954.24575312372 6.7090033161942335 10114 None 1096916 PIVX_20200414 15524075.452236403 2267.1433488959274 0.24688715455804577 3.605551725809731e-05 112938.2807149026 16.493560131572693 63804 8499 213367 ADX_20200329 4778524.122353207 766.5298740485381 0.05345181701236331 8.549462994991283e-06 138910.82888517954 22.21838391167724 52150 3768 39887 LOOM_20190818 18358142.38038625 1797.0997460128474 0.03048368599533839 2.982286036761819e-06 1349987.100493852 132.07220676092314 20816 None 468578 REP_20190905 92481261.26990429 8763.930241783097 8.42143539424972 0.0007975081225226896 16295100.317123799 1543.1424990924693 125830 10047 201886 POWR_20190131 34281939.19451867 9912.735390672362 0.08252814156030565 2.386328337289808e-05 1290332.2931557326 373.10382343065817 84900 13291 637976 DLT_20210111 3847907.8459436656 99.79284697009427 0.04665416100870668 1.2164675353539005e-06 167910.7765670519 4.378130569999151 None 2534 None QKC_20191213 13739728.786007388 1906.3332611761846 0.0036672041733318674 5.094555155182423e-07 2138654.957479719 297.10632743105657 49163 9213 285301 TNT_20190818 12648621.907608006 1237.4424964588427 0.02951966120335893 2.887973371401986e-06 546589.2071742739 53.47402412719463 17540 2542 645355 STMX_20200725 20456938.453646407 2144.11101714461 0.0026431519177749687 2.770965660153503e-07 3885290.5080844252 407.3169803529579 19912 84 227126 LUN_20200526 2269963.309644241 255.43203457532363 0.8421430149151892 9.477207771671607e-05 851455.4841519013 95.82007317901305 28812 2131 3817056 YOYO_20190811 2625736.3455551984 231.9989516969209 0.01501331739964129 1.3265131909020527e-06 1650340.2869589874 145.8170837166529 7579 None 1167957 AR_20210725 390323972.1375717 11424.46619725886 8.90650379124844 0.0002606820979219755 8092498.281427513 236.85718648717975 None None 89863 FUEL_20200310 2350759.610646501 296.91659262736476 0.0023747366870177874 2.9993879504864017e-07 71173.54254066922 8.989504691486479 1 1469 None PROM_20211204 258616013.8755728 4817.008481996999 15.776313669160194 0.0002942038066390424 21349038.61017029 398.1264925959309 17959 None 634264 ELF_20200404 29559553.309787303 4395.67450371852 0.06413407170029947 9.532200457261265e-06 32867547.714263763 4885.079725095617 None 33431 699270 XVG_20190904 71867190.33309017 6762.4815357220305 0.004513451204487058 4.247224903722709e-07 1647081.9121460798 154.99286463501434 302764 52768 272149 LRC_20200713 122329019.67708488 13184.848200040284 0.10304641229673095 1.1097045605531115e-05 18765029.686351635 2020.801943292842 36480 6923 365318 LTC_20210828 11747791807.570658 239516.7252321758 175.83486006887645 0.0035844762265396938 2657520591.422942 54174.80571124448 190806 341144 92826 OGN_20210702 201603895.73342565 5999.991993751088 0.6513958482393963 1.9367894405983513e-05 32415108.15809156 963.7955072346776 116233 5869 54387 LTO_20200309 13183152.565118352 1637.2928212132556 0.06217157804003466 7.725706974632632e-06 7669462.087564991 953.0402574537637 14461 412 867701 NU_20210703 127322825.62898917 3766.9627583658903 0.23486572965744695 6.9339295992381595e-06 18666866.797882315 551.1010073868739 None 7106 128147 IDEX_20201014 36084357.413019694 3158.3755251173457 0.06703600504393081 5.868944020918096e-06 400700.2255512068 35.080956739414184 40105 1962 21074 SNX_20210108 1590596665.966124 40635.962305374655 11.63523714159861 0.0002956024012632924 235594071.94741815 5985.453716458183 53413 2992 45504 SNGLS_20210218 12529704.80346938 240.30653833819161 0.014078320003898184 2.700073464474063e-07 786261.2794963776 15.079663030274641 9145 2115 2616688 TRU_20210809 167361206.09986812 3804.3263598744675 0.4529922901745748 1.029788977186515e-05 61492084.53096131 1397.9017349236017 None None 128346 SNM_20210408 27431426.898266174 485.73765168 0.06246798466421394 1.11e-06 5944126.58027199 105.62179234 29617 9501 None ALGO_20220112 9318255629.032059 217366.9879007123 1.4445380900310205 3.376206743679097e-05 276367392.7030871 6459.320535861639 222362 62474 62056 NAV_20190712 10932494.618467048 960.7387999860424 0.16664916028479815 1.4644993650419797e-05 428628.61249911523 37.66753638428268 48376 11249 893210 EZ_20210508 0.0 0.0 11.056823403492775 0.0001929314183618089 6138384.979054331 107.10918292189295 31385 None 98658 XRP_20210617 38620201137.317535 1009080.5563906758 0.8358306490753268 2.1838841631571385e-05 3220071877.858448 84135.03364661816 1881057 319949 11293 RDN_20210729 18700994.759249438 467.70446168736373 0.3661660557233072 9.152937365856069e-06 1306346.846938673 32.65433996740664 30406 4680 1078541 WPR_20210724 3265113.8667396526 98.18202025530854 0.005353112920130338 1.6017421948813605e-07 123227.77219966048 3.6871839854373682 33817 None 6324665 VIDT_20211104 47295511.44026856 751.1591549967857 1.0219441122671284 1.621655567856866e-05 32331301.720841695 513.044058107537 34819 1818 369812 BNT_20190716 37413881.32444204 3416.162242022744 0.5404136061853758 4.942322468549346e-05 3065507.622545193 280.35428840067556 None 5133 155271 RVN_20190914 139053440.36078513 13428.70454463056 0.031497367984574386 3.0416369369591386e-06 10620928.334125686 1025.6415057186282 27698 6991 276399 NCASH_20190622 5966160.356489346 589.5098188401311 0.0020538777784988695 2.0291689955025478e-07 592363.2271089925 58.523691482943015 60230 59148 1027921 STX_20200807 156486285.24326482 13304.569312197951 0.2044381065518002 1.7360188708451504e-05 6325804.968032506 537.165843639229 42153 None 101702 OAX_20210724 6281757.574620171 188.7014902595241 0.10948299109365896 3.2766454899244232e-06 406699.24554076756 12.171838158100922 None None 1430084 AUDIO_20201226 22493656.790948667 910.9939252900194 0.14699795891367787 5.961436910248042e-06 1088904.8085556417 44.16005069350772 23920 2317 53020 ARK_20210105 55139911.54151751 1762.4302475092738 0.3580870007285667 1.1445491000628703e-05 2058765.7168908324 65.80407676663566 62992 21586 94251 MDA_20190430 16506552.917260827 3170.9173594086287 0.9381722859454347 0.0001801801306992507 1503057.2304173412 288.66877894621757 None 359 1377289 LEND_20200106 17677772.16293626 2407.030684370712 0.015729400238137212 2.1418055013107174e-06 1830356.6480984557 249.23187654370372 41536 5780 450933 CTXC_20210420 4075263.094388062 72.73337907355294 0.3941112008873579 7.042563170034595e-06 11776981.543110209 210.44856447353425 19416 20485 377528 GTC_20211120 112332615.64823318 1931.8277610230284 7.906644071650378 0.0001359357610263875 12941570.611617524 222.4992340650224 72010 1462 24778 BAT_20200718 395159722.1746675 43161.647812582014 0.2658882633412866 2.9044153484661648e-05 93775842.9766323 10243.550965131737 119625 42448 19525 OXT_20210806 191023419.66621155 4662.332183230076 0.32495714603292225 7.93408752005103e-06 23550534.84229719 575.0050640950258 68509 4356 223178 CHR_20201208 12420998.493545346 646.6892664519827 0.02771698714681318 1.4444584830901575e-06 2377263.429045862 123.89002846653582 35400 None 887313 BLZ_20190104 8735951.53422513 2316.920036961736 0.04325257499155262 1.1468959962678455e-05 245681.07546238767 65.1454027561646 34941 None 743171 AST_20190627 9422706.568715263 725.960174031435 0.05465433155242983 4.195880478987217e-06 3005588.423645789 230.74273230379782 31957 3596 344733 MTH_20190729 5662967.417254346 594.0398787640228 0.01658049643765954 1.7392782560719804e-06 180086.37315213104 18.890888714703628 19513 1999 1394829 CAKE_20210826 5538799892.269768 112999.45204869672 25.8928355398087 0.0005283803772722587 417862760.7907179 8527.087844634663 1070826 None 739 OMG_20200316 69767135.07662931 12910.27683648238 0.494925747989834 9.16425204939268e-05 68571250.79767261 12696.939454136025 None 42882 453059 STEEM_20190922 54036066.39425163 5408.698832724921 0.16658367517252784 1.6681002533588616e-05 420307.6291008148 42.087873368479755 11054 3776 219044 CTSI_20210420 206897667.92081866 3698.0501244302013 0.6705017542547121 1.1981519300456131e-05 121784493.86399493 2176.2258703553302 31522 1039 161196 AST_20190901 4298750.234020731 447.8209472670864 0.024947163352661617 2.599565519544398e-06 2182822.3792069326 227.4563128505272 32049 3579 238019 WAN_20190826 47341752.22869249 4688.296710143687 0.4435617232374907 4.385248418920174e-05 33498192.29836701 3311.780235249158 108055 16867 605813 NANO_20210201 457738950.1320112 13848.658037678828 3.4287548759116757 0.00010370173435228292 55220191.561254 1670.1192833578489 104072 60878 188898 TROY_20200403 3592025.320777645 529.724201076301 0.0019059963890762511 2.7959025238800646e-07 619369.618706321 90.85521305708822 8761 None 412780 ZRX_20190901 97342875.22271912 10140.663266953054 0.1620838992267431 1.6885827930986134e-05 13908609.73650133 1448.9927246953184 151228 15908 155880 WAN_20211011 171649686.9260118 3136.9933179177115 0.8851192324165086 1.617138301661735e-05 5321531.420301471 97.22591000278183 127238 17131 268022 BRD_20210603 14555312.08779641 386.9587822632497 0.1786071587820237 4.7483426153217014e-06 162059.41483712217 4.3084142367682885 774 None None CHZ_20201201 64785669.61484446 3295.227443877806 0.012023364663033956 6.124589282942538e-07 8119964.152444037 413.6233643385743 43267 None 335695 BEAM_20200531 25857154.641643792 2673.024652137161 0.4138665210135541 4.285204963263749e-05 54872411.14472106 5681.530557430784 15078 1502 501365 TOMO_20210603 138033737.16316888 3670.3420899322323 1.6920725508797874 4.499251581786634e-05 16272646.102294937 432.69260929465963 48854 2170 91047 LINA_20210722 78460139.83570603 2438.0923702356004 0.028555417663746648 8.8416819002533e-07 12937146.329254998 400.57593934451376 None None 92304 SC_20210722 517141543.79558766 16070.23117011797 0.010718525319624816 3.3189046259930405e-07 52765207.72303261 1633.831957114661 138808 47457 61155 FLM_20210602 0.0 0.0 0.5316072594737401 1.4492353826627456e-05 20811946.41682467 567.3626270491768 22436 None 91315 AST_20200320 1873203.15404351 302.8840286511641 0.010856008187642792 1.7586212543540202e-06 2560858.587893027 414.8468077971835 31761 3481 355183 ENG_20200306 21422217.456293274 2366.133580398384 0.2591253148461735 2.8604851518690783e-05 1587132.194909438 175.20357207426542 61402 3615 363885 LEND_20190228 8539669.010498246 2237.1879744630332 0.007647281919039003 2.0057642680808856e-06 240234.1354855056 63.00971378215929 11668 5941 428546 DODO_20210304 440048934.6270891 8652.946035777739 4.454222562897997 8.780000122041067e-05 100443122.20124497 1979.8979793487074 53663 687 41007 CDT_20210527 14302970.991993088 365.6685237377 0.02125430973405491 5.42162561223642e-07 572150.0138961541 14.594607908675727 20840 332 462630 WPR_20200523 4063349.030846571 443.8786805339446 0.0066807053433671475 7.297976743661761e-07 141149.59359634103 15.419127150490684 33069 None 1707857 OXT_20210310 0.0 0.0 0.5716911091086955 1.04508372139844e-05 72167497.34670095 1319.2627187903754 59858 2762 124540 ONE_20200224 4079114.19940603 410.0020645564694 0.0055785809149301036 5.606229100941272e-07 18514172.810293 1860.5931503320458 71106 None 386228 ATA_20211202 192399164.22119117 3365.5046561990566 1.1171175557344504 1.953579804753671e-05 24594003.381982334 430.0921427512259 None None 227011 AST_20191015 4588333.333120687 549.7287530751073 0.026554885573920998 3.181327693247005e-06 1395204.2446800496 167.14822170785294 31939 3545 271152 VIB_20191015 4587158.132675143 549.6207673582443 0.025160415879021646 3.014267472052387e-06 479843.66429481836 57.48621787131359 32128 1122 9150320 WABI_20190803 8246601.351978649 784.723730000083 0.1424201222057339 1.354204881309748e-05 478062.0299824714 45.45663383408088 36377 7990 1513094 TOMO_20201106 39600539.10242507 2548.0513009703623 0.5227319871383155 3.362681387971998e-05 4139201.109433357 266.27057219059486 33623 1692 94398 ZEN_20190819 38091663.78425189 3691.058066058014 5.316746179575992 0.0005153064575849516 2538286.1048993943 246.01423067315278 None 1783 227019 DASH_20190227 705129148.8554168 185111.64035187897 81.4481636753909 0.021381903167771894 1085809699.087317 285048.51179999457 319748 23246 89364 PIVX_20210825 55593084.8204256 1155.8227926307723 0.829118723990697 1.7283850805976788e-05 409073.1294651997 8.527559122509782 67741 9885 371211 ARK_20190923 32142607.354556885 3197.448132032902 0.2251547295158171 2.2397702879777696e-05 635281.7914217312 63.19588684543829 63065 21789 89396 ATOM_20200310 561194841.2596669 70882.64547009529 3.023317563049832 0.0003814825961498564 203004570.9423205 25615.142682941398 31580 8238 85359 FARM_20211021 110874651.80027069 1672.7583514303035 179.01062257442473 0.002711384292998734 6928222.847127174 104.93832341310126 None None 83423 CHZ_20200404 32781940.984345004 4874.672265086906 0.006833399209031047 1.0155355634985092e-06 6455781.058098459 959.4163979172306 19927 None 262392 SKY_20210823 37113392.95460261 752.0193561981761 1.7693941240435274 3.58660361289935e-05 4501077.788191426 91.23790815002869 None 4412 978551 ZIL_20190430 150303249.50469354 28878.469265629916 0.017173614624691306 3.299628267885759e-06 14080508.008562395 2705.3385828540695 60290 10208 186514 EVX_20210114 7191672.201280193 193.13970650891642 0.33106733423319246 8.880046257584517e-06 280191.24327524233 7.515423431964837 16715 2809 1350138 NMR_20210902 267087793.71162745 5491.624181654318 46.241989466159346 0.0009504010735871558 24329569.126924817 500.04009094513435 None 3575 1411463 REN_20201224 226260823.05817845 9676.623068154908 0.2542678771205692 1.0895837799806347e-05 43257874.68173367 1853.678063599922 30273 978 102602 QTUM_20200607 177703117.8921583 18377.661676365682 1.8466498026141445 0.00019097642016481351 294779332.9606348 30485.423748292913 179271 15083 120132 NULS_20200319 10958714.089303307 2036.2706086847008 0.1306547275518913 2.425029168255977e-05 5585891.664080503 1036.7745943776263 22741 5188 563630 COMP_20210909 21373.034550032127 0.46162719295914373 2.3172819875968262e-07 5.005e-12 70.76650855041811 0.0015284560842858716 2582 None 3554274 ADA_20210110 10474851603.194075 258857.76188984985 0.33306999365805395 8.268185766266684e-06 2824226312.9284153 70109.07090370945 None 98752 38332 ONG_20210710 0.0 0.0 0.751919576441504 2.2126585286889566e-05 16711653.087323481 491.7704351727847 141381 19622 137199 BAND_20210422 455038080.47581065 8398.013388709318 16.081176149553134 0.0002973148439923066 232468345.18003893 4297.962359069959 82683 4829 169936 UNI_20210418 18166059530.99115 301348.057782494 34.76754885144198 0.0005783969935809856 930619611.8500047 15481.896292473948 363831 34834 1654 SAND_20210809 432429926.36122346 9830.280010561679 0.6150639012827909 1.3982391491985217e-05 177557459.38162136 4036.4552434603384 None None 28891 VET_20210420 15344444710.33086 274190.05493170186 0.23643550271489785 4.227798081535479e-06 4275871952.424166 76458.58185328773 266992 133253 33497 BAT_20211221 1676367804.7054715 35532.31790513195 1.119000616106861 2.3743038173491115e-05 185696671.87710747 3940.125774378814 244961 85534 23993 ARK_20210219 178928287.7234652 3461.962556880586 1.1444861565557314 2.2134487001450358e-05 54842694.28129828 1060.6636845194557 64371 21909 92701 MTL_20190812 13720124.034243789 1188.8653974890037 0.2884954323709635 2.4981638695439253e-05 3073795.569824343 266.1686866856689 None None 712205 ENG_20190930 22200625.204263713 2754.1974977824084 0.28294667200107176 3.514040669191214e-05 148532.9874325081 18.446972882307797 61328 3483 323659 NAS_20190922 29607020.662185848 2964.3934014277306 0.6506856647794249 6.51574010157003e-05 9773333.581027294 978.6676576240163 24099 5091 980448 POE_20190719 9195054.634582791 856.7571123703917 0.003646967366706967 3.403210909404931e-07 387010.6666407654 36.1143599690936 None 10827 797644 ZIL_20191127 47519246.5405665 6628.000649638612 0.0050999312444882875 7.117614434726708e-07 11891574.069268962 1659.6231437144224 66450 10561 223192 WAVES_20210310 1074388089.884567 19622.31524219812 10.74388089884567 0.0001962231524219812 101404274.14322934 1852.0185144257414 164618 57679 99978 ALPACA_20210902 182615482.49667004 3753.9526177147127 1.264650761446065 2.59920789582538e-05 19083479.340963263 392.21840285878534 44958 None 22330 KEY_20190916 3680971.4714405653 357.2156739120238 0.0014079358559626542 1.3663152771346388e-07 19417.53328994589 1.8843523492896412 23764 2817 575319 FUEL_20190316 6068028.522415704 1546.2860575380153 0.01143740968269676 2.91453922165541e-06 2294088.9479807573 584.5914767721788 1 1521 None NEO_20200412 515077737.20692927 74854.95044533542 7.304471055963455 0.0010614176858569884 299957068.871778 43586.966867148985 321446 99281 235469 FUN_20210509 454824903.6762586 7755.750532378536 0.0442163493898468 7.530708941094852e-07 37284861.89639 635.0172429999511 2803 276 242119 AAVE_20210519 7953335447.113418 186591.4571340845 631.2630121156282 0.014755728677541668 2316177037.2057953 54140.47595727165 209620 9858 14216 SAND_20210617 191081138.21073973 4995.708829330042 0.27223468671475837 7.117598766652463e-06 53255011.061040215 1392.356740503392 129037 None 23111 BNT_20210325 1171334074.6263058 22159.435985413376 6.828513069230691 0.0001296089947946337 204111311.2694547 3874.1467742155214 107214 6725 33884 SOL_20210421 8638723481.256248 152901.68861677402 31.687792724714733 0.0005620997118893571 982110136.3637146 17421.34043508488 160214 8565 23689 BNB_20200531 2623199554.996485 271029.49525054067 17.74005658373599 0.0018329486534429916 302824541.290146 31288.616953800654 1158689 63913 995 FLOW_20211028 3657619884.2968864 62493.49691740607 11.872566600562982 0.00020283891020194945 102499032.47032805 1751.162384892387 106613 None 46061 BCD_20190615 229379538.72628102 26372.08947487485 1.2178692403476774 0.00014016249068778586 5768484.37047955 663.8850133279993 21298 None 3286107 RCN_20190621 17591335.928982504 1838.9743351322204 0.03522897073515602 3.683717725573286e-06 4341199.642810721 453.93759002205627 19048 1119 1997723 TOMO_20210725 230015070.06688008 6732.264858299253 2.750648426087823 8.049655452619636e-05 16543110.342298133 484.12707748175416 None 2211 130894 LINK_20190421 187270243.15653682 35262.34326694345 0.5144083177865925 9.685191154868892e-05 4996491.248263155 940.7307613391673 11457 6610 340281 ANKR_20190819 11883948.19662734 1151.5470444195093 0.004437057856043872 4.300458379376296e-07 4626481.693948294 448.4050605891909 13164 None 9409 FLM_20210117 0.0 0.0 0.17247908100492165 4.7660007989782285e-06 13409426.099515589 370.53383593983307 12563 None 124168 NANO_20190623 208504300.69568124 19421.70873505313 1.5688567110669058 0.0001462010360657153 10904694.121720655 1016.203434851027 98451 46360 363666 BEL_20210124 37713582.53895549 1178.3130927627406 1.684425043615486 5.255915774609933e-05 20287925.255496938 633.0446509842742 None None 430969 ONT_20210217 910820178.7829853 18520.27657728625 1.1236831909824339 2.28364537730217e-05 678627287.2862875 13791.645901257136 98988 16920 213342 NAV_20190621 14944214.129057113 1562.3442518008872 0.22828615797815333 2.3885740367478637e-05 434038.17936346185 45.41371826337763 48355 11259 919129 RVN_20200321 84774543.505402 13709.275641767836 0.01477041340851785 2.3821356814006116e-06 16661900.026937632 2687.189957134772 30210 7601 202553 CVC_20210127 99990817.55605349 3068.0368548785054 0.1487303634811008 4.5649906617835735e-06 15771527.074208401 484.07650012216106 87424 8138 160531 AKRO_20211002 71235321.949506 1479.140018714476 0.026306363618585328 5.461457428936939e-07 6547070.914829525 135.92357196914452 46047 None 204556 LSK_20200417 145709053.40818965 20520.91017357335 1.0449848394453465 0.00014730951089468862 6801669.905764698 958.8183763671944 176843 31334 162071 MFT_20210702 74294386.89256485 2211.46072257318 0.00798093525314823 2.3729643297812105e-07 28471195.493854925 846.5315052705698 34220 3518 286530 OAX_20190201 2822098.297649852 822.4771687242147 0.12027487029970424 3.505311451240124e-05 2061157.3237945982 600.7072260316061 14421 None None NAS_20200506 13259679.014962366 1478.7132560725847 0.2921634440949581 3.24751715047572e-05 4584018.923978981 509.5326049376858 23436 4935 943407 MDT_20201124 12765510.42131192 696.9073477771276 0.02125566740006348 1.1581920070795767e-06 6528997.36154209 355.75606336214645 13375 69 1258241 GXS_20190708 125403556.28955936 10965.715734725021 2.089088859784617 0.00018259729407156931 7985024.197188808 697.9328833590181 None None 741418 LUN_20200229 2517708.644862449 287.6466172748512 0.9365783504790607 0.00010749096173743623 3551543.399510687 407.61012196190256 29816 2151 2036039 VIB_20210219 13111428.586836852 253.6821646888717 0.07178784112801964 1.3885342241145305e-06 4690519.46676387 90.72492926570251 30642 1117 None POWR_20190807 28452025.360932425 2479.7568655786285 0.06696796858265565 5.836041155241899e-06 900035.2705235891 78.43515326975813 84306 13116 515073 DENT_20190426 42592562.59138896 8199.169154443105 0.0006778325584186467 1.302741072905024e-07 2303627.3117804807 442.739121697472 44862 9097 247980 GXS_20190623 142301587.69793957 13266.34316738349 2.3715880388352963 0.0002211215655951677 24381350.15086099 2273.262568540377 None None 715062 WNXM_20210603 154690051.78870833 4110.92865269602 75.76509537877695 0.0020120559812879394 18997396.69433884 504.50442194587805 29262 None 116861 WAN_20210722 87092747.49078114 2706.4168450771176 0.49620054878265824 1.5363975630576543e-05 2997101.7627783464 92.79997484616612 123130 16650 248498 NULS_20200106 18099109.321282785 2464.8545468063144 0.23159443427492352 3.153148537703711e-05 1676568.0513503356 228.26403907446914 21688 5235 591161 WTC_20210105 8175535.2118401155 261.31363188849275 0.2811546466970193 8.986511579611669e-06 2092758.5381717356 66.89058515500207 54816 19155 816491 QLC_20210819 8805987.088339135 195.46943133372574 0.03659341400624171 8.123832008848232e-07 790807.8830497335 17.556138358867337 35128 5691 940522 DREP_20210707 0.0 0.0 0.4365606572818785 1.2776445174622078e-05 983291.9941470084 28.77716084652219 None None 201937 AMB_20200610 1950239.952876409 199.5087208901365 0.013480001106541507 1.3798345150517464e-06 152902.92562301006 15.65138849466679 18908 5448 1126030 MATIC_20200207 62787785.4562619 6446.854989322215 0.024450487326421785 2.510845966954633e-06 77950757.20452404 8004.844309852945 30384 1481 153803 GVT_20210602 20165533.192796186 549.5886438637933 4.543344810637454 0.00012387497508550903 503735.3663383519 13.73442002657466 None 5650 262747 TNT_20200523 16100333.212372368 1758.8338540902762 0.03751022249335851 4.097602234139791e-06 5117371.673228814 559.0197073573422 17918 2597 456220 NAV_20210806 34003191.022591084 829.1990195821469 0.4753312361657103 1.1617275020595416e-05 4295453.530909908 104.982507375912 53034 14119 873726 MATIC_20211221 14873025101.746975 315248.86999314005 2.1448792312073808 4.5489580752212885e-05 1453123283.44519 30818.50389683294 1033493 None 3692 FTM_20211111 6648045923.821594 102368.68247523601 2.621066743954855 4.0351232084809094e-05 1044055843.7556016 16073.203690080885 228884 20250 22565 LUN_20200317 1146556.0905788445 227.154977730287 0.4309541706778631 8.558807475015169e-05 1331521.5399026305 264.4419588963902 29670 2149 2364106 DOT_20210527 24531339737.5942 626127.3394436938 24.663574518122417 0.0006291170314179931 2295932465.490305 58564.512453947995 440165 25084 16321 DASH_20210823 2626185714.1513176 53232.72086231142 254.63452735278562 0.005166976029049719 516367383.145087 10477.989448765178 403083 42011 76415 COTI_20210203 37788983.39546412 1061.1098882888211 0.06625538869391784 1.8650336380088684e-06 11697985.371920438 329.2884797092752 38222 1395 238618 CND_20210401 94210648.81026614 1601.7863723192768 0.048835421278179476 8.302555476358985e-07 4515002.752858108 76.759982509391 35057 6113 124180 GRS_20190410 33588873.34450574 6492.870371635636 0.464307323755218 8.981969618967103e-05 2808675.3120348467 543.3348782484379 38922 107062 6013629 PERP_20210702 325971314.6989311 9695.251858088546 7.5033462166748786 0.00022309632093738262 51751900.516229056 1538.7346222982383 22469 None 159386 PERP_20210703 325483246.37488455 9624.495325516422 7.596929717852561 0.00022435408724157417 17714035.97771421 523.1345452367667 22548 None 159386 WING_20210509 69510145.00636595 1185.2986496151987 44.265952910466915 0.0007535592581408467 7758896.296785361 132.08318703142243 9948 None 317115 SUPER_20210506 252833891.2757263 4416.491065035802 2.5069114991932873 4.3729396853391174e-05 17115296.2777878 298.5512585648104 102959 None 91414 CMT_20210115 7705054.505877986 197.28277550660695 0.009681417118805194 2.4679059292103793e-07 1318173.736732051 33.60178309321628 280598 1626 1272511 OST_20190318 15355965.706934744 3856.1142418319496 0.027157902025385545 6.820094585934347e-06 647303.5347703187 162.55568374967444 17555 741 1075482 ZRX_20190205 141823713.01102948 40938.72168384957 0.24287609876757316 7.010842404282265e-05 13884383.625689138 4007.8552798831415 146472 15533 202840 ARDR_20190117 52973918.87706653 14728.531974071375 0.05293474259609496 1.472173919101114e-05 263856.0828041159 73.3813039319585 70357 6615 740966 LINK_20190523 454193801.7664299 59272.3137341343 1.2440325634749698 0.00016244246043438997 123540979.93871962 16131.652285422675 13020 6961 356861 HIVE_20211120 374070570.570883 6434.953297459167 1.0184592906809196 1.7505469397450822e-05 25204213.484588217 433.21475082847144 27904 194 88110 APPC_20200927 3522703.269928592 328.07377350922087 0.032150125439155484 2.994901393879547e-06 77369.92573973039 7.20729064901472 24473 3179 1722654 AVA_20210806 115877050.84425063 2828.2254835190706 2.2344106551117493 5.45612367758848e-05 4644985.158368894 113.4241525685711 111387 10544 54869 DOCK_20210620 52827349.28372776 1481.8571563547957 0.09415839872501319 2.644630291590799e-06 18538200.777546562 520.6831041283182 None 15090 242145 MLN_20210930 201484966.0775687 4850.58089602998 138.982898302407 0.0033436210785481543 44445565.153458476 1069.2619761874355 29282 501 123514 BCD_20201228 91249746.25387728 3436.418205068174 0.48423659445726824 1.8304916317652306e-05 3058351.0511936946 115.61055216169703 27886 None 2009944 OAX_20210106 5710695.329028329 168.0594910652743 0.10241062206699658 3.0026689276651217e-06 264722.92280212126 7.761648925622366 12839 None 1823390 SC_20190729 112382844.36026944 11788.85314358715 0.0027002416104365263 2.8325276850612673e-07 6539308.32983905 685.9672043357053 109597 30790 213896 KMD_20190616 179933216.78147584 20406.990472527512 1.5706125072233657 0.000178059304629532 1311373.5968039886 148.6695602400668 97224 8406 339259 GXS_20190123 34188364.31489757 9571.12740482382 0.5698432451680595 0.0001595355911159369 1075461.388830004 301.0904662715797 None None 235095 EZ_20210602 0.0 0.0 5.150364070649312 0.00014040609325329607 1552540.5459792302 42.32441623312296 33014 None 118297 DNT_20181231 6771937.547908264 1783.1149998288483 0.011674021050309458 3.0722750279694766e-06 381588.11841626046 100.42329392142561 60188 6578 504307 MFT_20190702 23680077.129216794 2230.8201391426046 0.0026820966248514455 2.5292101223632683e-07 2769232.1576628475 261.13787025561317 18839 2113 960456 ENG_20190302 25850469.63978282 6767.122595354821 0.3360821103961353 8.790060946670555e-05 501820.9708984668 131.24878659312412 61126 3206 328243 XZC_20190414 57983924.71104417 11427.163267135329 7.978525210260528 0.0015727955940595664 1323983.769983973 260.99508181778003 60168 3963 324676 STEEM_20201224 56654558.601383306 2422.7678982832967 0.15027683369191736 6.445364412948373e-06 3292842.763205228 141.22982925570565 11736 3838 222215 HIVE_20210105 41904561.56039534 1339.390375101473 0.11265072994338678 3.6006415009703792e-06 4450084.2993918685 142.23750009662237 10175 97 154138 DREP_20211021 0.0 0.0 0.6914148163917222 1.0472514123186768e-05 6130632.423943597 92.85762052203646 4129 None 451608 WABI_20200325 4885672.964943915 722.9099698659548 0.08253361335191367 1.221407671582673e-05 587238.08341973 86.9048465230843 36652 7755 2574958 LRC_20200501 39006085.110336736 4507.571818195781 0.033471319441311924 3.883116990291857e-06 3081708.7238561963 357.51908512954617 34200 6808 546784 XLM_20210124 5952091075.310486 186073.67796700847 0.2695946629872886 8.412395534668657e-06 876851626.5476049 27361.159994787504 334338 121983 30260 STORJ_20210909 213072964.21191835 4597.332337359628 1.480386895093974 3.197592202314193e-05 112545114.13557845 2430.9414016100295 105342 13858 72856 TCT_20201018 4307117.210077232 379.2104324059906 0.007302839653248608 6.425793783685192e-07 786669.5679911494 69.21932645150135 None None 487164 EZ_20210430 0.0 0.0 17.071177413024742 0.0002954570094376337 15533731.282778708 268.8478761116934 30309 None 107419 PIVX_20200107 15189602.52577482 1958.1499735254076 0.2444656163341928 3.1529632445062896e-05 453987.06812784023 58.55238706990493 63598 8525 243133 VIB_20191030 4308479.434601426 457.85202336341825 0.0235998466981963 2.5079004613689756e-06 353164.5971002957 37.5299749754185 None 1124 None RLC_20200313 14833786.73107804 3082.3392601769438 0.21624028214774008 4.527218396520751e-05 1167114.2849011621 244.34768623899168 28451 3564 249120 GXS_20190816 70280671.34624399 6829.402811184518 1.0821458575029257 0.00010506750310675453 8115261.489256682 787.9254499962789 None None 790272 VIA_20200701 4539692.209518687 496.50959250547936 0.19593768154992128 2.1429853376146455e-05 118645.76573737284 12.976377710199268 38701 2157 2172267 NANO_20210112 381014809.40258664 10746.82988696621 2.859054425435479 8.0430876977864e-05 154598307.77667296 4349.157316890732 101490 55453 338450 XVG_20200323 37033959.04640031 6347.665465272216 0.002298166267387606 3.9413645172598257e-07 746030.8912909471 127.94460198287908 295664 51888 327824 AXS_20210704 435615454.77198017 12565.631156777179 7.864811467320383 0.0002266589700722279 174147799.8488493 5018.831171999246 136987 None 5695 ARDR_20200309 48002705.198111966 5942.0345681685385 0.04769256134935806 5.928539114989047e-06 2649526.930226423 329.35584916484316 64684 6385 1029538 STORJ_20210603 172302796.03234106 4578.51530494038 1.1967182175596212 3.178219089564306e-05 78349519.88951711 2080.7900817190966 102855 13487 47967 LRC_20200412 31993894.92460078 4649.592180242344 0.028006884573340076 4.0692815571049695e-06 2401927.171496778 348.9898319424355 34146 6806 552171 VIB_20210124 3590680.1165115912 112.17745799212643 0.019854368925510707 6.19533052479253e-07 906881.6090082688 28.29821152080446 30382 1091 None MKR_20210207 2315240029.146826 59042.334006873876 2552.2636450873024 0.06498026511594564 499239133.8169562 12710.556503096377 96588 21081 38971 VIB_20200713 3239602.5104074264 349.1703558235299 0.017770615581732745 1.91260783685616e-06 625471.7462725689 67.31799234252402 30760 1101 None TOMO_20201014 60706101.716726065 5313.739688827552 0.8019660996244666 7.018540416514544e-05 13450585.35227718 1177.1504676437298 33365 1684 71726 WBTC_20211216 12610395283.867878 258483.26173002322 48820.65698137904 1.0004575531755644 506768103.3873852 10384.947849754308 None None 207353 BRD_20210610 13053078.288011331 348.6241488940053 0.15900409486983605 4.240024616634368e-06 522906.52837823256 13.94389593763303 None None None TNB_20200129 5520219.952160197 590.9219493201551 0.00181187278339375 1.9390811325827557e-07 892752.5564833785 95.54311175751786 15293 1451 1303746 STMX_20210703 201371397.95853335 5957.693184716132 0.021794697996415768 6.434705644899024e-07 78314646.02581757 2312.175626124624 67944 4553 72030 NBS_20201129 0.0 0.0 0.006022161482687108 3.399604081688826e-07 1519855.2718001802 85.7982005371713 None None 792843 RLC_20190819 16230857.988400022 1574.1874445527958 0.23195748906704397 2.2477786588005886e-05 146136.0895274428 14.161283804267049 24866 3313 784217 BCH_20210616 11843923527.959959 293264.0376601062 631.3562795423525 0.015642873076420996 4359671175.395147 108017.90535935044 None 567628 266622 DENT_20190515 61977406.36702879 7753.958501554262 0.0009218611296600149 1.1532768587635911e-07 2263774.0299740676 283.20515078035055 45083 9287 250017 GLM_20210519 375898065.8032968 8818.86201060179 0.37948021760133394 8.870323497417422e-06 3854340.6124578547 90.09494175438932 158282 21015 128524 YOYO_20200317 926159.9830086433 183.49810779595555 0.0052567987563784235 1.0438940951843787e-06 164141.06879820387 32.59510215942593 7502 None 2721333 ICX_20200506 147384206.07302392 16434.752798927988 0.27252581607034354 3.028687617252057e-05 33008084.39703199 3668.3194980947187 112630 27617 103972 DUSK_20211021 69173894.76390235 1043.5578387562307 0.18175839023841484 2.7430926476542243e-06 2700240.6276117754 40.75195760032435 None 13681 390175 ALGO_20200718 281039977.3152405 30696.82419903795 0.34960151172952547 3.818852264309555e-05 182364775.0058654 19920.512657858606 20659 954 270923 BAKE_20220105 223486568.07199997 4831.096267847874 1.1532137244518825 2.506849188626377e-05 22747978.954774156 494.49422406735215 428913 None 31382 RLC_20210112 67467730.41565344 1904.630042124557 0.9585355885059788 2.6964050747984107e-05 11025649.15811666 310.1566253709019 33774 3903 542862 XMR_20210704 3843989419.514393 110943.17716067725 214.97958722724886 0.0061892512144598524 142457180.07733598 4101.334857760956 428711 227505 31847 HC_20190613 100374188.95301089 12344.04006616635 2.2776076309626987 0.0002797317260515031 55902352.73745129 6865.827725988737 12730 811 744090 XMR_20211230 3838031547.4742794 82753.64079860208 213.24267538407315 0.004582337291650883 145908891.83758122 3135.4125296288644 462398 247137 29395 IOTX_20190419 38900884.633990504 7377.580373308879 0.01540439845457257 2.921116276197121e-06 2322955.146885484 440.498998286353 15180 1690 782632 BQX_20190916 10038171.254253436 974.3500780541398 0.0712761623014245 6.918385086563012e-06 296964.5019895351 28.824711031923094 60283 5747 402735 GTO_20200322 3057395.1504480173 496.1981501097063 0.004676609081234542 7.589246467305182e-07 431397.7170185968 70.00763893275067 16871 None 1148049 AST_20200224 4594972.811975647 461.85231582023073 0.02665204975701374 2.678414084621686e-06 8221625.6938852705 826.2373159946108 31790 3488 361112 OG_20210703 4863186.564118069 143.8037652468257 3.7920973042427817 0.00011213180151383766 1210144.543682171 35.78380956190126 681399 None 236216 FIS_20210408 90129709.22042133 1600.1678314901392 3.3401581651617107 5.944079543037288e-05 8270086.481695762 147.17282668743638 None None 245374 DOCK_20190616 8018918.989577366 909.4265836370118 0.015538147801976914 1.7615495738933592e-06 5173485.569853365 586.5146488025523 None 15259 251058 ONT_20200107 370218065.97193617 47715.204931421344 0.581176180382056 7.495643611583356e-05 100735981.00930534 12992.291115795619 81587 16276 336672 EGLD_20210909 3407051256.9865904 73511.65820928717 172.55660453743397 0.003727615401657027 214051887.84606194 4624.007965546449 None 10483 49149 TWT_20210702 109126801.36892661 3245.7206386903426 0.3146486903037272 9.356092183947304e-06 9471658.961846927 281.64018193245516 907355 39552 2918 WING_20211104 44659177.139937565 708.2689509799678 21.618548409059162 0.00034285778610329743 10326969.178598434 163.779811795668 17581 None 296505 DGB_20201124 326538452.64439845 17786.075019770487 0.02370403755201957 1.2911244809223213e-06 12885041.47488717 701.8294857750462 177750 23390 238709 DGD_20190914 28358916.66140806 2738.684581005497 14.159284117275194 0.0013678305249644359 1751572.3994183221 169.207297117973 17293 3371 548048 NULS_20200105 18303783.96357837 2489.2204385875057 0.2342774635694323 3.1860253994965946e-05 1370706.436055639 186.4074099996584 21691 5239 591161 ELF_20210506 201790089.0696434 3523.7438226977447 0.440559644026574 7.684917284645398e-06 27776533.66142795 484.52091910026763 87804 33371 198010 GRS_20210724 47281471.765757434 1413.5419394580936 0.6059590841686328 1.8115945783403382e-05 4620231.779628391 138.12792086670387 41447 106850 8801723 NXS_20191213 11696547.024295706 1623.5930452473954 0.196022001873613 2.7225517276826185e-05 663757.7796347608 92.18939060078321 22524 3541 687350 MITH_20210107 6205917.421785294 169.31471436261978 0.010324724581250598 2.7961784293840146e-07 8609117.007153796 233.15515181065177 23942 2119 507648 NANO_20210620 765299665.7046784 21466.300363536484 5.737428268122706 0.00016114735168787272 27947066.912480704 784.9502616724865 132146 105916 57331 TFUEL_20200418 0.0 0.0 0.0016522942645963276 2.3470326398625553e-07 122349.60467387128 17.379381009593466 67805 4024 358410 1INCH_20210508 1065857283.8390002 18600.16078370505 6.585821941629497 0.00011491611082678713 384248260.099111 6704.753944748191 189301 None 24204 VIA_20190509 14355031.186501201 2410.123858049125 0.620367208002365 0.00010415594291176488 927553.9212844996 155.73075434464886 41317 2232 2027413 DOGE_20200329 221390520.7241562 35413.153493843674 0.001786612377655107 2.857826891456328e-07 139854381.53124577 22370.807312583314 138931 151631 105974 ONG_20200317 0.0 0.0 0.06434426601919602 1.2777472083159253e-05 12780152.814291865 2537.880310180339 None 16525 298289 WAVES_20191213 62361154.85405611 8656.327128367866 0.6226061418247957 8.649372054460486e-05 38979937.715429276 5415.172792421961 141213 56857 21748 EVX_20191011 7837894.45119763 915.5588791597127 0.3595364427154876 4.19981137229226e-05 824012.8245130026 96.25445490773053 18193 2898 447432 HOT_20190614 334656483.60833675 40699.9133358418 0.0018846220929501433 2.2907494251621315e-07 24007616.493483808 2918.114665411376 22481 6393 302460 NMR_20201124 177631499.03949147 9699.241075414804 34.06017562302228 0.001855208273058571 27223170.167536393 1482.8065208083428 21685 1938 1263517 BTG_20210418 1909157988.760243 31670.10715402198 108.76613659497595 0.0018049644795487922 96007860.18854296 1593.24200364961 92211 None 172941 RIF_20210401 250260062.6690575 4254.886162521648 0.35229985555394583 5.993582772151317e-06 7795706.642353851 132.62626223587253 42259 3168 669060 HBAR_20201101 169054781.42104897 12251.706902415164 0.029112829537007515 2.1098589242464514e-06 1316296.9438902803 95.39439821522429 None 6719 166628 ANKR_20210115 56937657.086802974 1459.6384785583891 0.008797405234205956 2.2425610086555932e-07 8079717.942577134 205.96141631065714 31926 None 5158 MATIC_20210218 560310287.1555973 10738.620359484748 0.11221766825746009 2.1522166581184686e-06 187372418.1057504 3593.605586189196 208 4306 35829 ONE_20210318 765277159.9305936 13009.8502202675 0.08257244899339414 1.400903591282919e-06 157685659.89619893 2675.255608079087 None 6595 71714 FUEL_20191017 3328892.04481245 415.76663422220065 0.0034431833287507183 4.3e-07 338810.46564263187 42.31215312 1 1496 None HARD_20210310 71871878.25095294 1517.8470889414311 1.5078409054118604 2.7538772869542737e-05 12942396.084441032 236.37620181137538 22821 None None DOT_20211202 38940235497.91298 681256.7727102697 36.69905708848537 0.0006419456790385742 1100787168.1851666 19255.142290271317 None 36000 13319 WNXM_20211021 131070379.87488313 1977.417292538628 58.48322462388783 0.0008858161284992996 2463359.7391160745 37.311276887313774 None None 115521 SNGLS_20210616 10410646.166520126 257.9405985229909 0.011697355243281042 2.898208972168437e-07 210681.7434672576 5.219980982792015 9488 2139 2122104 MITH_20210105 5670647.568608387 181.25021456291756 0.009127351422905858 2.917364170100985e-07 8518689.920824792 272.28184387473186 23922 2117 507648 QLC_20200317 1562746.1396818832 309.623569208327 0.006496623268781874 1.290098210567799e-06 122953.03645449324 24.41599054635668 24535 5668 940522 NEBL_20190902 8686336.83295539 893.0631713323512 0.5601907318830379 5.7594555816487065e-05 178573.71368620463 18.359592786702635 40390 6122 464857 QNT_20211225 2678415049.6861806 52676.94424992684 200.3242353198549 0.0039411237898671556 52505100.85307974 1032.9708820854655 70096 11043 73022 SNX_20210105 1516718253.9667122 48478.68001615621 11.006095009263746 0.00035178646844005165 335410550.38586426 10720.686392263875 52162 2933 45504 ETH_20200127 18279197138.315884 2132175.336553352 167.6474095857562 0.0195081166780002 10518901915.39258 1224021.0952078614 449620 450263 19999 UMA_20211202 818889665.4355034 14327.011513361964 12.861579228864063 0.00022491494645847585 30518013.988115877 533.6792131056465 None None 201960 NEAR_20210429 1781503989.344302 32546.079801774504 4.924754890746632 8.994060645379569e-05 86194031.55439475 1574.1582358273567 None None None AUDIO_20211021 841176512.4049932 12690.819920214746 2.034664649392072 3.081021609178228e-05 15965722.829395698 241.76336409155076 92568 7948 20757 MANA_20191030 41801599.97687216 4441.953363036115 0.03150853318097204 3.348453485850014e-06 6958068.42342355 739.4431322263389 None 6410 85405 BOND_20210729 80072995.92080192 2002.4739368500657 21.14404809054577 0.0005282644367553892 4427550.633462371 110.61824734676878 21755 None 125814 WTC_20190701 40236252.42154673 3708.6557574240014 1.3723244610877097 0.00012723097585230393 5018095.027306673 465.2377373917668 55671 20086 771082 CMT_20210120 9541502.58406896 263.5033469027083 0.011952338621744916 3.2951085578597714e-07 2168484.4465727485 59.782373003455966 280587 1629 1294863 ADX_20190703 11410000.97252329 1057.1862590940873 0.12419653597359522 1.1483562363195772e-05 797666.0228619889 73.75445254355134 54175 3884 882596 ICX_20190819 98441323.53192247 9545.035183250367 0.20042459350419975 1.9425431232413962e-05 16765156.371346334 1624.902346055804 113895 26077 212480 AMB_20190401 9706412.928312294 2365.4105295511013 0.06721109226020822 1.637884595799999e-05 2148156.511381761 523.4898498209218 19135 5689 621301 APPC_20190810 4188569.6389879086 353.1077630648614 0.03857570006835547 3.252035977391408e-06 340904.35476028384 28.73916026320632 25334 3331 1400807 KMD_20201129 71033818.47058268 4012.816981739089 0.580642768238879 3.2778189867256876e-05 10986426.92171273 620.2009347242735 None 8399 275765 SUSD_20210105 135395572.1870888 4327.63211130069 0.9909830655824629 3.167467050136534e-05 173875264.03319684 5557.553794677956 51736 2934 45504 REQ_20200625 20050109.056575347 2155.037523111698 0.027629457721725044 2.9725343909276844e-06 4822110.040297321 518.7900564675481 38985 27931 596176 ONT_20210724 564107240.4555686 16873.45243244246 0.6445352552611987 1.927506504735684e-05 118677717.35713111 3549.1010042631583 141655 19703 156257 NULS_20210212 70059302.40484828 1469.2546604468232 0.6338711010704408 1.3275851459132563e-05 77454536.70909266 1622.2145519007886 38394 5105 775793 OST_20210104 10246214.586941544 306.2829286459935 0.014693348785553121 4.463661596359812e-07 6114250.167665941 185.74352288418515 None 734 741572 FTM_20210304 1345629050.9245944 26471.574214542547 0.524067098119034 1.03431148200678e-05 321163660.8102514 6338.563576527437 45851 5077 70542 CELR_20200607 11309453.865889879 1168.489725212369 0.0029102494243906174 3.009715302111132e-07 1380381.1409929916 142.7559510182589 None None 1372925 DASH_20210105 864881555.3351272 27644.103354931573 87.18370938660571 0.002786642238214649 575143988.7439108 18383.256956663317 327551 35816 87017 QLC_20190622 8895320.061328713 878.9369049015168 0.037141794353196075 3.6710443004665032e-06 553606.9362183147 54.71775457526017 24963 5791 940522 TCT_20200308 5307667.410737908 597.1465348646799 0.009201725433187608 1.0338515671320092e-06 896825.5793859811 100.76202962416352 22 None 365886 OMG_20191118 143811421.26423308 16919.33630670248 1.026120727859925 0.0001205840099757585 122301827.08965656 14372.231587788205 285536 42061 None ALICE_20211002 253673202.72038135 5267.050072223618 14.522006453648048 0.00030149100491150065 193884988.447086 4025.2412909155805 None None 27267 DASH_20210809 1653322601.787802 37592.5045305543 160.95461513718246 0.0036597135321414674 477000911.7332568 10845.83185158226 402102 41840 69115 TNT_20190629 31923527.94056446 2577.071517552688 0.07450390533490445 6.01443213740333e-06 14955981.375387419 1207.3425497118758 17555 2527 824040 AERGO_20211216 66858170.340134844 1370.4342769435282 0.2538950686490722 5.195345079558031e-06 11839148.613918487 242.2593822903006 25401 None 525635 IOST_20210428 1161415810.54146 21080.325170043157 0.06279313275369262 1.1395059479333275e-06 687721063.204389 12480.06282971045 241108 53143 143784 BNT_20190205 30060263.483382452 8677.172063558059 0.47147165574893224 0.00013609463810207974 858924.996606357 247.9366153714681 856 5096 111486 RUNE_20210304 1339795219.2073061 26351.75687294826 5.740467514306495 0.00011329498892671172 96208232.66322963 1898.7844852486587 40599 2858 108351 CELR_20210618 210510389.23279232 5540.678518354269 0.03742652725535761 9.809168417292602e-07 38845719.55767969 1018.1126419567838 56067 None 143745 BCD_20210212 162771147.32366383 3413.5757614785903 0.8692787624623455 1.8206249989216995e-05 5237691.808774328 109.69867268688762 28316 None 1670747 LOOM_20200610 17205990.894430675 1760.228069217051 0.02066794515817732 2.1156039869025267e-06 9673366.04134131 990.1812496213328 21656 None 619588 SKL_20210610 328718689.6192499 8757.514841826845 0.33144253675152663 8.849404920781119e-06 50855067.881485105 1357.8133101680082 26094 2189 111729 DOGE_20200914 350719443.03966904 33960.70829566737 0.0027780622261221848 2.690040793600277e-07 132954529.99940333 12874.19360262438 151943 167035 90441 VITE_20200430 5875879.464557118 673.0277078879716 0.0118697729427676 1.3537384710229156e-06 4474385.175267912 510.30018646022023 None None 537072 KEY_20190126 6989936.027283531 1960.2998653135783 0.002847641864944054 7.985499914847716e-07 496039.13603324105 139.10177846863488 23489 2813 659258 XRP_20211111 55649461110.10411 858507.6604008137 1.1883132886401981 1.829462139711792e-05 6861365706.089187 105633.83331655862 2202258 336910 21985 BUSD_20210626 9939319353.361973 312598.95512960653 1.004279963650982 3.1591898173934685e-05 4447825552.230079 139916.41477207726 22498 None 40331 BAND_20191127 4559105.277430831 636.2821766891552 0.2902684698285181 4.054033036728978e-05 5305727.308720646 741.0241217771896 7602 989 514363 DOGE_20200322 220571686.03194553 35815.566092396446 0.001781390022671413 2.8925513170390874e-07 133056132.79038009 21605.133476933886 138957 150742 105974 ENJ_20201015 141724322.51004496 12416.122667400174 0.15420742216266084 1.3493793147151741e-05 8731466.895500714 764.0398011115864 66655 15916 93300 KNC_20190614 44150890.94389824 5369.498345712304 0.2659873473244292 3.233063887254108e-05 8944600.660186261 1087.2120674629355 96836 6692 215563 RDN_20200530 10787833.966541577 1145.3299327028003 0.16154564719135794 1.7174440193622664e-05 1876728.4354710132 199.52106933892193 25011 4309 1987298 BAND_20210114 201398519.7372299 5408.332785002274 8.955300531147634 0.00024020335063062602 177691435.99875376 4766.124616009768 44447 3023 375522 LTC_20200321 2439382790.9386907 395320.1749727507 37.99759172484464 0.006139002656385412 3607835778.774005 582892.5577726599 133672 212420 131624 GO_20200129 18316451.922028154 1959.8277121068859 0.020487261565071697 2.1910579747981506e-06 3084680.9808993596 329.8984025483677 10597 680 724197 FUN_20190324 27326902.527732663 6827.331163480979 0.0045488005331421845 1.1358180726041769e-06 313599.34370097343 78.3045551321036 36505 17803 506904 JUV_20210519 58257637.6115338 1361.120544652415 26.133784255700014 0.0006108467077474267 182071633.86372364 4255.71195628099 2464080 None 36746 CHZ_20210805 1414895067.5615728 35572.559394887234 0.26482685415713225 6.659811287722467e-06 141604012.53370094 3561.0285975725965 None None 53111 YOYO_20200422 1320014.0378155208 192.6678608391399 0.007599014647035034 1.110081146698983e-06 124085.9860703098 18.126759863523716 7472 None 3352047 EOS_20190716 4518449864.15057 412567.66932384466 4.319447964519052 0.00039498987916179186 3791110874.3256254 346676.34346778545 None 67231 92954 PIVX_20210203 32728299.19386606 919.1025915403734 0.49950648051089214 1.4064772631488095e-05 632238.2915993516 17.8021470535685 65094 8833 328598 SNGLS_20190225 7266519.017067795 1931.890918069963 0.012296744989400803 3.27210070439999e-06 536414.2648309801 142.73708166807975 None 2184 1185727 LUNA_20210420 5361635807.55489 95820.61666438958 13.918179620073266 0.00024887655373468677 753190649.124289 13468.10417569952 57247 None 23843 MITH_20190513 18811835.066448037 2705.1499778145358 0.035160001968806934 5.052786738611293e-06 6222153.29138437 894.1755368559317 73 2036 435662 ENJ_20200113 64594088.7017598 7918.6863961247 0.07252225823266178 8.880171348587274e-06 4458123.323380905 545.8861868000433 50111 14270 25300 NULS_20210427 115720831.19710131 2146.7107121796744 1.0302590241357006 1.9112099874782855e-05 87055427.52851245 1614.945355089364 48847 5332 273594 XRP_20200224 12368568030.53096 1243195.9931063612 0.2828391709232468 2.8424095932215694e-05 2366852812.7249575 237858.32488027314 946566 210206 33737 SNM_20200506 3139471.5174279152 350.0811904 0.007177896553411728 8e-07 30499.447714800015 3.399263 29681 9647 7373028 CFX_20210804 174383699.19768307 4539.386612031984 0.20213307832081065 5.262638491929278e-06 9129903.189901657 237.7017178678055 37506 1174 184033 SC_20210420 2173527525.4476404 38825.76574363224 0.045620404466758885 8.152130149467768e-07 878770103.2207172 15703.166897909507 3364 40326 54045 XRP_20201229 11125026065.81033 410293.94522592 0.24613443432424192 9.065768031913624e-06 5788819181.423517 213217.18767859912 1023211 226946 17736 CTSI_20200610 6453891.464361297 660.3154632874099 0.03236088713451702 3.313873572430884e-06 2317552.887166312 237.3259185870573 14324 106 268807 BNB_20200417 2369647148.5940456 333728.85995723226 15.666737861469233 0.0022100487856530973 414415761.36328465 58460.09924050261 1136582 61748 1429 SXP_20210710 169757426.70596746 5005.137627969943 1.9729639162853456 5.8053458774886144e-05 100595336.29019989 2959.966555933866 None None 60641 LSK_20190130 141772794.8775758 41506.13275770322 1.0894565076365024 0.00031914145724353855 2659963.2090854617 779.20002203977 183335 30515 184789 FIRO_20210718 55868154.507159375 1767.629794947444 4.619750366205368 0.00014615949577757165 3899180.5751816607 123.36213466927376 73691 1088 308142 BTG_20211230 716866558.27639 15456.575649441851 41.102606004388456 0.0008824899771877185 13528242.360158041 290.45696738866485 105651 None 261846 FXS_20210725 106716730.41941908 3123.6709171642988 3.3362345448117474 9.764757838931792e-05 2158005.042496801 63.16221588180941 12828 None 120117 BCH_20210120 9579552835.658936 264531.1099285737 511.209861484416 0.01418377114323524 6817045788.130489 189142.3163297998 None 365156 393369 AVA_20210401 275747008.3461473 4688.035648590168 5.191686821703642 8.835165047311514e-05 18292848.94898497 311.306026731377 None 9720 44550 OST_20210117 11516860.419547165 317.39411638621846 0.01675001133719375 4.627603341051023e-07 76355440.02401271 2109.507165394792 None 733 753771 CELR_20210722 130980060.09644257 4070.2199807366073 0.02328383657414343 7.209651571686125e-07 32000869.355388653 990.8810230166621 57284 None 211241 SNX_20210325 2388744120.6267757 45192.811689081755 16.06551146856814 0.0003047055704799538 176910009.590672 3355.3532049947366 103085 5619 22945 ICX_20200217 181727731.31373188 18229.96263650497 0.3492747849106674 3.510851102813464e-05 33830428.72494374 3400.5775145777925 112362 27427 160011 TVK_20210318 78669852.6593551 1337.4017330421132 0.8896820982090322 1.5094124755593302e-05 47740897.850388266 809.9601751551585 None None 97211 KEEP_20211021 426982630.76332533 6441.7516641899365 0.7718901250922438 1.1691433340643268e-05 57734183.32743484 874.4707749286439 27247 3303 123068 PPT_20190726 25918492.36252758 2621.034900694531 0.7139253264182622 7.222819042502623e-05 2787481.6083331443 282.01094002790734 24114 None 661854 WRX_20200707 26644389.0839101 2854.3251099164086 0.13727750848525844 1.4699267322840516e-05 12532513.541669384 1341.9442762970848 30328 None 21406 WNXM_20201014 71170062.17777674 6229.4520084909345 35.370503180404654 0.0030966989246134736 11484120.922908297 1005.4384788001302 13924 None 71317 SNT_20191118 45391774.91327165 5336.412563088919 0.012760132806209657 1.499499951438493e-06 28903205.754947145 3396.5442432439763 110683 5668 347600 ZIL_20200927 183148682.03518513 17056.866452944712 0.01634662061979701 1.5218595629763178e-06 19151647.644928277 1783.0057229008414 94186 12073 93692 OAX_20210117 7158939.74275127 197.27202157907328 0.12837749624993725 3.5467446475263418e-06 435093.21768543945 12.02052217934263 12846 None 1543553 FXS_20211002 165011952.79052448 3426.164878838667 4.6517826535927425 9.657554080684565e-05 2181785.9871250386 45.29600312874922 15177 None 92242 COTI_20210511 218357388.16180226 3910.8688196983912 0.3272355282488617 5.856522113552484e-06 74048050.35696116 1325.2352111693406 98312 4337 74171 HC_20190708 218513213.78079352 19107.542541047333 4.9504737047594904 0.00043269729701911076 78495216.85434242 6860.89255037322 12948 841 542452 XEM_20210724 1298783483.3444772 38854.81673052552 0.1443024366989447 4.31560423786526e-06 133686266.98558803 3998.110035737251 371242 21727 102654 UNI_20211002 13277805312.414595 275702.1749998322 25.649286449470036 0.0005325041805756158 700423037.2220021 14541.46477824894 642961 53103 2657 DLT_20200301 3443334.134982241 401.52000024468146 0.04196264733051732 4.898570680805521e-06 74968.0763524062 8.7515074519432 None 2590 None ALPHA_20201115 16512886.838228563 1026.1963961656545 0.09395984456553175 5.838868078719231e-06 19588871.87733927 1217.2948905098035 16660 None 226160 WIN_20190915 48240237.73932316 4659.226853568052 0.00023000621137353732 2.2214880496856992e-08 4545884.57870304 439.05893699708935 18706 1428 68914 AST_20210106 15896148.90299534 467.94212727376146 0.09204089074365417 2.7001907406953944e-06 4001110.004622069 117.3800046880695 34620 3467 211626 GTO_20190528 23801571.648312993 2698.8573393441384 0.035915451487698626 4.072501137655577e-06 15708920.292299362 1781.2555073584924 17313 None 1154780 NAS_20200107 17761985.81109051 2288.423361089725 0.39088768817774605 5.033640126639862e-05 4560245.519998818 587.2437411320482 23883 5038 927832 ONG_20210610 0.0 0.0 0.9776894552127868 2.6058849547384423e-05 26997445.9568274 719.576526678904 138902 19369 123162 LTO_20210825 83895848.80388346 1745.8380247341797 0.2844903299646524 5.924023229517865e-06 10390255.962539101 216.35926145667557 11742 4478 676717 SYS_20210427 194180947.21337122 3602.2064063309444 0.3177920183067148 5.895287156918666e-06 3534882.560880869 65.57479911991999 63978 5078 411439 BLZ_20201101 14788299.696779419 1071.714191285015 0.05968315778383752 4.330913542542548e-06 3359115.4269390386 243.75450350975817 42135 None 234892 NKN_20191118 18191265.48315333 2139.5685996347092 0.028089620962518894 3.3009362762059246e-06 2258859.5746638817 265.4486339567344 12160 1003 241643 BNT_20200701 69071158.49903028 7550.230780591709 1.0510168394981967 0.00011491335917979874 38343524.858529195 4192.30508846216 717 5072 116886 QLC_20190703 7458353.945706689 691.048960105177 0.031140861878106173 2.879372009996537e-06 876914.2613134561 81.08196841423805 24995 5784 940522 XMR_20200301 1154764534.574951 135014.25473220408 66.12140560507409 0.007730868096759534 117300840.24742435 13714.73148965106 320717 166231 88356 GTO_20210120 19183778.271032732 529.7507630642381 0.02919190021890504 8.068343048469e-07 29888087.990530595 826.0762237542087 16610 None 744307 QKC_20201224 29567730.943013348 1264.6578030693263 0.004662662888442405 1.99948365259449e-07 2714619.702678903 116.41068308780497 63476 9212 106409 FTM_20210806 659092077.3862753 16086.541689388141 0.2592369526305804 6.335849077590607e-06 38845785.918907695 949.4056861304127 104416 9395 45171 RSR_20211028 481910337.0829219 8233.67217861833 0.036526744219144244 6.241965517254476e-07 108851244.40137361 1860.1321540930146 83811 None 110679 RLC_20211028 271555213.37182575 4639.652718040031 3.8139012302745194 6.51229736679287e-05 33860372.17261595 578.1712719458169 48237 8288 616787 TOMO_20200320 17731235.5982142 2867.1788853950293 0.2528506363915841 4.09117392040269e-05 12882866.133856095 2084.4735334281077 22125 1508 236393 ICX_20190401 165940897.01755705 40437.33764223674 0.3508581316000442 8.547918688451776e-05 12321346.980563065 3001.836430062111 112824 23548 314795 CND_20200518 12530664.033076499 1290.74761077649 0.006634262952424795 6.78515461348809e-07 173252.33142322642 17.719283427320526 34463 5930 397842 OMG_20200414 78038761.25724757 11388.391517854767 0.5568090994813029 8.131666522607051e-05 99505927.51062916 14531.892892786995 279690 42875 477396 OMG_20200625 212449596.89478794 22848.284068212604 1.5148418409763995 0.00016291646210175544 75976526.93190248 8171.03583734266 113 43069 539864 SKY_20200913 10692067.051417742 1025.7391909363992 0.5856286375141737 5.608450675427363e-05 474205.84701440716 45.413764502170345 17233 3825 1022336 SFP_20210916 129558086.89479853 2688.348269942151 1.1981433146619593 2.48544515908213e-05 10639686.50762054 220.71113698095337 384274 None 27754 WAVES_20200430 109878080.5331904 12532.64626551252 1.098780805331904 0.00012532646265512524 43767711.45470052 4992.126207984598 69 56844 71676 PAXG_20211028 321998312.47685385 5501.729384402955 1803.9804777525242 0.030803513771371197 7488732.92623727 127.87238590899872 26095 None 43986 ZRX_20200422 109053721.88385543 15924.276592612227 0.16716521173769897 2.4419870016485258e-05 40966205.284329206 5984.435384089928 152347 15919 132812 WRX_20200412 23539813.96832686 3420.9396143462236 0.12598930433214497 1.8307591997066053e-05 9771682.175647825 1419.9298213850007 None None 25623 ZIL_20190520 161107876.04072246 19685.66169960312 0.01820292657965032 2.2245962137859055e-06 24595897.076757368 3005.8869529689314 61342 10301 200377 BCPT_20191127 2990079.339602124 417.1569996204098 0.025781123322102695 3.6007192146475323e-06 458805.4809933643 64.07904304860487 10770 3139 1782843 KNC_20190629 43313640.62432723 3495.027443468346 0.26063567526276216 2.0985018702090918e-05 7689280.787995941 619.1005931135368 97127 6686 219809 FOR_20210420 54109779.45740564 966.66586532579 0.09583399826296395 1.713646171364533e-06 29977746.781846043 536.0441172232598 26800 None 121436 WNXM_20200913 81412355.76475422 7807.482009896898 57.27660855142508 0.005485496507058339 35755064.605590895 3424.3347670893854 11420 None 105276 POA_20201226 4741495.22651159 192.10050169134692 0.016753842110323786 6.791580218461372e-07 143369.0395098563 5.811815142241 18135 None 194086 TROY_20210206 11249627.682579337 296.84639630355844 0.005849225065993598 1.5388059743700578e-07 4180443.569968859 109.97852652968875 10586 None 869305 GXS_20190430 61123204.1967735 11743.926532277346 1.021550603822633 0.00019627418706616716 5555816.819600741 1067.459042826826 None None 722859 WAN_20190706 35613214.3405247 3237.1725513674273 0.3351456900746786 3.0499841669006515e-05 2635670.5073048063 239.85847213656356 108470 16976 459878 NBS_20210610 0.0 0.0 0.018119970679073706 4.83797159119667e-07 13701654.800143749 365.8296023184714 None None 498254 ALICE_20210509 246179993.79255685 4198.09679892608 14.242656093811547 0.00024245915098034725 131094315.37981246 2231.677588504706 None None 62436 TOMO_20210430 198826956.08741385 3709.8542975190326 2.447890348486698 4.5674473461214966e-05 35491683.83081103 662.2289974002974 46958 2118 79487 EOS_20200330 1985654231.3020568 335799.23123113223 2.119130857880545 0.0003590187098426758 1536393214.4290915 260292.51926757002 None 70777 93580 ETC_20200907 600156660.3189875 58442.60455640508 5.159540438638924 0.0005024304510557067 490244396.87897915 47739.46757095588 235383 25760 179202 BTG_20201231 149699789.90488762 5182.211420790141 8.54752929456653 0.0002961721322517804 15134699.468562495 524.4177654288299 81808 None 356114 NU_20210804 119500518.89876685 3110.3208459011807 0.21447848187958496 5.5831182142376564e-06 20052922.11153152 522.0003130777351 None 7137 153146 SOL_20210819 21274810508.661808 472244.061925513 74.0048019564342 0.00164292861251929 4552452964.336096 101065.80971136228 None 32794 11331 XVG_20190615 138680362.10514048 15939.206909022756 0.00879444921829172 1.012888462502554e-06 3219383.7186915725 370.7880441504978 303956 53037 390528 LTC_20191022 3479925170.3687825 423766.4481210228 54.77495641609611 0.006665042838232044 2173006140.2531114 264412.42422006285 450686 209142 128159 GRS_20190531 30255532.30646487 3640.129252466424 0.41742173444449515 5.023357857465481e-05 5251208.00397434 631.9435432142722 38709 107041 6947831 MTL_20200324 12992297.520112874 2016.7314383078592 0.20202485681346036 3.116554958868856e-05 1541415.2255791572 237.787831691937 34703 None 635134 UTK_20211111 191216988.45054856 2946.2319324879895 0.42570276268015167 6.553679342835946e-06 18348716.680726014 282.4778601880334 80660 4216 164101 XLM_20201201 4377605930.819737 222793.04213685 0.20147180349807034 1.0262784861821018e-05 1025249726.2514926 52225.260247202474 293892 113264 47328 MDA_20210725 11269161.079173729 329.85597090078494 0.5741865311668841 1.680332425471772e-05 1761644.2392719097 51.55376827419506 None 389 1618266 FUN_20200301 18237447.842258926 2126.630694271538 0.003034876695189683 3.5483564219089226e-07 223661.64598259906 26.150361861982425 35026 17042 312525 ZEC_20191024 252268990.73537254 33817.81835234196 32.898638595521724 0.004408357849630453 244284836.20806527 32733.724592181286 143 15337 189800 QKC_20210725 98813965.0349141 2892.166083380254 0.015158986927106217 4.436853417782637e-07 5609907.118539923 164.19524399635097 None 9534 284050 AMB_20200312 1962328.0898116203 247.41076806344054 0.013636110818404731 1.7177872109182687e-06 399012.79055091506 50.264996942974236 19140 5507 509552 TRX_20200229 1135064412.8386679 129680.3899086369 0.017061414971422887 1.9581361270433734e-06 1735768870.7443993 199213.94208480642 499843 72143 48265 TRX_20190916 1027177556.4350339 99683.39120417673 0.015531415942960154 1.507260552664543e-06 618551935.8440981 60027.9418242408 463607 71244 69613 SRM_20210201 120677738.18002924 3650.737772447259 2.440354370647452 7.361113781238439e-05 174287485.0206458 5257.228307962845 None None 83159 UTK_20211007 158338382.58252618 2852.246301372389 0.3521752768652404 6.348383260791934e-06 9868890.179944072 177.89862416981754 79724 4131 197443 FLOW_20210902 1564744660.9859624 32173.06023683142 25.794646060462952 0.0005299529626573258 216188921.82157597 4441.617820399003 84458 None 53866 YOYO_20210902 4622273.396730173 95.08686549361681 0.02629292839374937 5.397464326888052e-07 2341429.052532779 48.06531853633067 10544 None 1799509 RLC_20200322 19095368.165030602 3099.07156023438 0.2721739024618373 4.4175638521257714e-05 213388.33083531633 34.63434841610953 28348 3560 324809 POND_20210506 137597495.6803305 2403.546878820198 0.18125308313808294 3.165028424053689e-06 18156647.530192442 317.05008556904977 16331 449 80924 ONE_20190818 27822899.039253995 2722.0041620704023 0.010370919953630405 1.0146206273635615e-06 2983818.5461885016 291.91661480455565 69554 None 130681 XEM_20211111 1727142099.5668118 26627.844103776595 0.193010498534761 2.9720357929678735e-06 104239874.10993603 1605.1180596966315 374719 22399 163257 ETH_20190603 28695353819.42512 3282971.0501818387 269.9388294795906 0.03086964764854227 9394858671.397644 1074376.6558261104 443351 438115 37291 DOCK_20200913 12210527.328271035 1170.9951339855859 0.02191435518859515 2.0986948432155004e-06 2506224.872722745 240.01624373867037 None 14915 214748 CHZ_20210125 105368180.3567322 3272.3740915257076 0.01974665651550696 6.118822953502408e-07 27501804.517593384 852.1881798715551 67979 None 119636 RVN_20200612 124775005.72038943 13447.807818785284 0.01955948890469859 2.102854355788317e-06 25263929.63794417 2716.142775628376 31864 7998 203270 FXS_20220115 1352284806.2439091 31374.545137664813 38.41028687471374 0.0008905834887364474 12205171.430611374 282.9899237346246 31414 None 65870 GTO_20200506 3667627.2944439547 409.01209542916655 0.00554765676945699 6.166449248835101e-07 95859.19753123035 10.655145067099193 16730 None 966534 SRM_20210202 143193164.0947601 4288.660283058996 2.8598847643901415 8.56410999651728e-05 173939892.9048992 5208.742653439227 None None 83159 STORJ_20190410 42443912.74329512 8202.23791605631 0.3119550798196067 6.034733690522959e-05 3603961.561279756 697.1820515242568 83975 7667 204987 CMT_20190821 25806761.809077505 2398.266656400451 0.032261789270214294 2.9987007593952977e-06 4607919.308473896 428.30145017127705 290259 1643 599569 XZC_20200310 41305807.81917116 5217.195081377145 4.300743577581343 0.0005426683737766219 27574275.186700303 3479.325563987939 63723 4093 107900 SYS_20210821 161725036.0125125 3288.761680847326 0.26249734960394827 5.336969360681534e-06 80752518.8006279 1641.821219479194 74644 5505 438149 ADX_20200423 5646507.870498138 793.6901558498757 0.06134483310826785 8.622814537224824e-06 733027.6469810477 103.03657423633929 51889 3757 31500 BTG_20190712 508972276.5190646 44938.285073975145 29.09935870269522 0.002564211561126968 14964686.5289594 1318.6758718034762 74769 None 363617 THETA_20200523 269227150.2598971 29410.933306242 0.26922715025989713 2.9410933306242004e-05 26998712.407765493 2949.3954425200427 None 4086 375081 RVN_20211221 853277211.4491553 18086.07696551578 0.08225565042328432 1.7447117412838892e-06 37882550.10366864 803.5208476928711 79857 59789 66229 CDT_20210711 10702193.680862227 317.3699033046415 0.01586499247531655 4.704709406281672e-07 341295.6838238696 10.121007094757267 21044 336 541618 ARK_20210203 71427857.77570465 2005.407400069071 0.46404511763516065 1.3062480969533653e-05 2932709.98783162 82.55332714292345 63525 21625 89752 WAN_20200223 28719116.7827773 2976.8074965972282 0.27048214157553147 2.8021009502473933e-05 2098397.3104234342 217.3866660210588 106356 16421 754171 NULS_20200531 30849994.713425413 3196.0932405959916 0.32293456331637566 3.34368866112614e-05 39146200.82898726 4053.2269600952313 24955 5190 764238 LINK_20190725 880118989.5824652 89588.93508342977 2.407359413217718 0.0002455015593303992 100959753.38666621 10295.83565709036 28536 9902 123465 PAXG_20210114 98721597.917841 2651.2694008145877 1863.2704325923935 0.049856960380797025 4796792.345062055 128.35146295427006 14145 None 75931 PERL_20190923 13689465.579389848 1361.8277460215443 0.052387329342699344 5.211490413933044e-06 5098850.3848609915 507.2335283395202 None 371 279806 SYS_20210220 107717459.417449 1925.3324932610296 0.17750694980911527 3.172743769630564e-06 7710896.002848896 137.82388395280594 61551 4609 261910 IOTX_20210825 694852616.2049093 14459.596466951798 0.07295842277713034 1.5192340329262043e-06 58798126.64987457 1224.3701505399813 105364 7991 88256 BNB_20210704 46132901612.52061 1330748.1093063916 298.4150443566236 0.008606671956427829 995509864.1693326 28711.779088637948 4427074 535589 139 HOT_20190511 206256247.73982957 32367.55300052347 0.0011614845478986155 1.8231370990956312e-07 11883404.929145573 1865.2918309673714 21262 6047 229269 VET_20200718 1169988297.8593476 127824.43042519689 0.018267233847707905 1.995410917901358e-06 175005325.62030247 19116.60738264709 127915 64971 114673 IOST_20190414 183801932.00568843 36231.77101350085 0.013647942704807688 2.6896639081528206e-06 28454813.458914004 5607.723187957255 196926 49097 95930 ZEC_20190512 422381638.1325572 57848.15069106125 64.25164785133686 0.008821281109956504 540919545.5393511 74264.29560394931 74829 15132 166067 XLM_20210617 7359973224.635956 192303.65606148622 0.31793833377615394 8.30719108903765e-06 831859204.5626261 21735.074501402858 593070 194067 22825 VIB_20201031 2125134.998135508 156.45327826176714 0.011703554881078573 8.623530713011863e-07 581324.3386878944 42.833723085291965 30498 1098 3120500 NEO_20190923 641197374.3523151 63833.25005200664 9.093795639647524 0.0009054231489526313 199785080.02292788 19891.58800528358 323721 98285 189975 FARM_20210909 128112042.33029549 2765.295267142292 210.38374481548772 0.004542231850676797 15405199.156682758 332.6016766973744 None None 78547 TRX_20200329 754072843.8214146 120913.1399647372 0.011408881118997013 1.8252781928939313e-06 1042966488.0986282 166861.58500466117 502338 72454 50139 LRC_20190520 59448871.468582936 7264.582474344004 0.06361976232617277 7.775029019288718e-06 9990913.212463401 1220.998590938481 36014 2464 907750 CELR_20210127 27854674.844956253 855.2782283949207 0.007055633199909354 2.1654870818496994e-07 7665121.175066997 235.25487245614497 27336 None 526594 ONT_20200316 221576624.8683928 41014.5545771045 0.34635752851118906 6.44553402130184e-05 73669632.52437063 13709.536640180053 84488 16521 298289 VIB_20190324 4657833.083779409 1162.932082016858 0.02760494040271587 6.892190046113299e-06 1029544.0495018567 257.048671234 32752 1124 2263235 BADGER_20210823 230370998.52337137 4669.674463047038 24.35020023637841 0.0004941077796162887 20642667.615961246 418.87551486503395 None None None MTL_20191019 16046987.58205863 2016.3168000455626 0.3060424373277238 3.845447656485424e-05 1566868.5120586492 196.87827937615612 34504 None 240997 BRD_20190729 15423709.737632744 1616.7105009155573 0.25706073215377084 2.6965425529086777e-05 654443.7847137874 68.6505285806036 168 None None MTH_20200518 2034108.3280358142 209.52764015876147 0.0058709608844692155 6.028810753368466e-07 75380.58757280582 7.74073113238348 19000 1913 1287418 COTI_20200520 10245553.067300875 1050.6137681199182 0.020531385675415306 2.1031408919158976e-06 1561053.9407336717 159.90719911197766 23731 960 239243 FIS_20210826 59746803.95206968 1218.9002632806796 2.2160775110584363 4.521615106410747e-05 16384061.012825768 334.2952464896651 25854 None 372916 IOST_20211021 1193875077.0870712 18011.615017950047 0.052137398823034385 7.894984191527987e-07 103665311.93237498 1569.7676090321786 264038 53902 202500 BTG_20200117 230596597.76189128 26493.122490479036 13.072536207541292 0.0015002561259223931 84592418.999778 9708.161660152733 74745 None 214160 SNM_20200318 2186492.1488186545 402.500989551279 0.0049472170975793026 9.1978889603611e-07 17214.508312057147 3.200529365064451 30151 9693 None SYS_20210117 48013145.91343854 1326.7156251741435 0.07942116760563751 2.194592793855686e-06 3196857.2638646527 88.33665036378254 61029 4492 270004 BETA_20211111 229672256.75123873 3541.63175318044 1.4315826974052042 2.204395641471023e-05 46521646.32701902 716.3548049527043 50947 None 55111 CTXC_20210710 26547461.27507452 780.5552296525516 0.14720257009158277 4.331402592038593e-06 6067053.67086302 178.52169279153097 20092 20588 663987 YFII_20210204 76279935.74483973 2035.429647529571 1928.2604422280947 0.05140751496526641 95120169.282162 2535.9082304365343 14135 None 213676 OGN_20210617 192206389.4641254 5025.1278901248 0.915205525639088 2.391277294854237e-05 115233123.78461388 3010.8466874569554 113718 5790 46943 FET_20200704 19254039.38743129 2123.3466939180703 0.030648150027123417 3.3809421048312052e-06 4671239.567217223 515.3064873599657 17701 423 786167 REP_20211216 115662846.31046315 2366.7770694683263 16.778151423614556 0.0003433267062344982 14349249.629173923 293.62475565616006 158939 12080 187698 RDN_20190225 12709505.875948358 3381.9342570015265 0.24805075119908432 6.621548743972974e-05 1348712.1378995585 360.0296761658383 24930 4464 723276 SNT_20201208 140891834.71712938 7335.445243749801 0.03630167812210732 1.8907242820874788e-06 7833540.742010843 407.9994772093385 None 5685 142018 TNB_20190228 6839700.551286455 1789.6643329082328 0.0026151510668204567 6.859101726087585e-07 482067.80816858273 126.43828408431274 15012 1508 1599145 MTH_20210218 7770336.12085404 148.92228749009388 0.021930560674713745 4.2060505033581447e-07 679165.9227838651 13.025686911335939 19559 1907 681058 ALPHA_20210711 216029664.51579386 6408.631710983231 0.7563818105208499 2.2440873857252213e-05 88521274.63574298 2626.3121748207745 69944 None 51351 GVT_20200404 3401161.588850721 505.77216517638436 0.7662923147490638 0.00011388140424092291 411726.96955277 61.18819744640594 20572 5586 153070 AE_20200312 51971624.07140876 6552.376239644044 0.1492800769529099 1.8804937742157612e-05 12730845.711050577 1603.7154179444822 25454 6344 460321 LRC_20190703 52251675.33537163 4855.924509134134 0.0543135315089658 5.032385127085069e-06 5514731.6318041915 510.96389192029955 34937 2455 719839 TRU_20210204 43013893.24123138 1147.7691047320657 0.28689420578151464 7.648570423543226e-06 8855985.216351362 236.09966751543737 18189 None 115581 ZIL_20210718 765302870.9006238 24214.121100801764 0.06249911214660581 1.977349468108109e-06 43658708.022142716 1381.2759913031728 308074 35083 41251 ETH_20190719 24469199432.985012 2279938.671530327 226.3035342868679 0.02121635055373653 12224826620.798044 1146098.791001305 446262 442882 33996 VIDT_20211225 41602325.73287906 818.2015679589817 0.8998698042039245 1.7703790494787324e-05 13413057.578772904 263.88479773380885 38383 1874 290376 WAN_20200224 31949699.764846656 3211.3449698108257 0.30002339920683724 3.0151035491752227e-05 4171673.1936052623 419.2348558575934 106367 16418 754171 HC_20200903 67946361.08045986 5955.821527132119 1.5198663656385119 0.00013319429365782383 29022761.927009046 2543.425107800938 12875 845 533192 VIA_20200730 4864537.2012629295 438.6197131576824 0.20994956111163193 1.8930478370780556e-05 255901.5921608222 23.07382558838966 38591 2156 1442044 WBTC_20210203 4181102110.3262377 117404.05094215651 35536.00649805141 0.9995826885622389 314351150.88720876 8842.2982636977 None None 144337 AXS_20201130 26166280.740093168 1442.2421034585336 0.4754499120922897 2.6167127133256534e-05 9991290.598450875 549.8862543994454 None None 33612 ETC_20190706 871607114.0432843 79303.33570337725 7.804194740209779 0.0007102186033705328 920995014.5436544 83814.89887358133 228515 24734 547653 AST_20200313 1536444.6819518975 319.2606075661328 0.008829808642834794 1.8486135759982118e-06 2701351.213158382 565.5563702658667 31813 3483 336261 SKY_20210125 10154112.479670612 315.3518879078655 0.5187123171201471 1.607172315806865e-05 1077824.4177272923 33.395188591034064 17258 3825 762023 ALGO_20191216 131748279.41500007 18513.75242574688 0.26424733850344706 3.716454464816157e-05 77018391.84391452 10832.099496719908 13482 704 443575 HOT_20190530 439714738.9397405 50846.37589575671 0.0024753234970864854 2.8625524934231047e-07 62355256.48613709 7210.984549798118 22030 6286 277166 AST_20190712 8460437.394247252 746.9575076226245 0.04940837463487501 4.341968069738381e-06 1491879.7521077744 131.10518804577055 32042 3604 257533 FLOW_20211125 4080329821.117312 71368.72350295178 13.023947129430931 0.00022772071257647395 119162294.35778667 2083.5252411369693 119535 None 329714 SYS_20210708 83038592.04126999 2443.7065204249675 0.1349745406465784 3.972106907899879e-06 1086933.3192460064 31.986886750060975 74446 5455 378699 BCD_20200207 121372150.81390378 12461.999146340035 0.6431753421109658 6.607648806680402e-05 7625130.4558252 783.3662278135516 26660 None 3543462 SC_20210422 2079758288.5187008 38383.67091597289 0.04336970533343909 8.018354537806654e-07 643446106.5885588 11896.27406718945 3582 40854 54045 NAV_20200626 8799513.712836497 950.9748587604763 0.12760281493753017 1.3790201694400348e-05 630108.3290766495 68.09662429110648 48503 13844 966957 AUDIO_20201224 24043515.655118734 1028.9021070036972 0.15668364885291813 6.719044503234946e-06 2292769.634175918 98.32054155283855 23897 2310 53020 RAMP_20210508 165874016.04911515 2894.8170162460797 0.6018445522025627 1.050240760844823e-05 16892933.28940653 294.78786583409754 26036 None 97168 DASH_20190528 1477181064.2732017 167497.38276785114 167.18266789705376 0.018959843356084284 1063441396.8670343 120602.70694681117 320077 26446 107339 FIO_20210429 75103513.99004601 1372.0569666607266 0.32293080705023947 5.897548195864102e-06 12913424.482986903 235.8323876180034 None 414 172858 BTS_20210727 105152265.42769302 2808.6747744309127 0.03865522698448495 1.0359991318024685e-06 24052545.233298436 644.6325095785437 6305 7181 164427 KNC_20190726 30862579.08649503 3122.1130668401224 0.1847309640662799 1.868932611890687e-05 7254801.490503539 733.9719774065852 97598 6696 215847 BNT_20210602 938501873.1594619 25577.79984303097 4.628422739231423 0.00012617724607928054 25929347.36592454 706.8700997283341 None 7387 32451 JUV_20210930 31208218.86570753 751.2559111491214 11.484536271905714 0.00027628962370513315 14760200.075627588 355.0940175689755 None None 34977 ETH_20210610 304761367058.1624 8119191.996548085 2620.6253893038547 0.06984884860506341 43973432438.082634 1172046.045783191 1353094 1003153 4018 IOST_20191011 59815907.76333035 6985.527215871763 0.0049701347043188794 5.805988186771204e-07 19283738.063858483 2252.678489745199 194327 50853 96958 DEGO_20211104 51925205.51454147 823.5039961431529 9.57643271938424 0.0001518767337569892 19604722.23072895 310.9196572319886 155220 None 200425 DCR_20190523 276290972.3524395 36043.45887854282 28.164137131392312 0.003677579716368065 12317815.357951878 1608.4195194419378 40507 9452 352776 POWR_20201231 41365626.60858907 1432.4746125054946 0.09667555173427551 3.352342474746898e-06 1286166.568406835 44.599391878526276 81003 12573 335149 NEBL_20190804 12452924.515259026 1154.3626839795602 0.8072219935748157 7.479865716330661e-05 147368.2539535214 13.65541027370795 40492 6152 850260 REEF_20211011 277135182.3634797 5065.067756483547 0.020055007124363408 3.664107497965394e-07 23001709.17570642 420.2478440126735 None 13622 84193 REN_20210616 415561772.2031632 10289.965543587552 0.4718311195519347 1.1690308803227213e-05 57916987.92266483 1434.9784185742071 83708 1173 86030 GTO_20210212 14483922.476310447 303.8703333390153 0.021752773671393767 4.5487371631205803e-07 24976836.054425728 522.292302095454 None None 738206 ICP_20210724 4744133992.799273 141905.4730014235 34.67007271279279 0.0010368035338443084 174050369.1220123 5204.951234671705 246223 21737 22362 1INCH_20210128 241984616.62519753 7986.574525662424 2.5198690461729556 8.287102294450091e-05 312085870.6833048 10263.579128974923 None None 17332 ZEC_20190726 494590342.8380316 49929.26123611088 70.03630613729962 0.007082495391089457 261192044.6051313 26413.321234825482 87 15363 211514 FRONT_20210610 40347204.557040006 1077.1095543051595 0.9022113666418881 2.408874185491403e-05 15236603.390446324 406.81221650342354 65552 None 177043 LUN_20190819 2817418.0918704444 273.39222888449757 1.0420183706973933 0.00010099387429951357 142116.98584066491 13.774176547589889 None 2198 1281939 AERGO_20210430 89929318.56372257 1677.665208513825 0.340066383550788 6.345199661473407e-06 1337175.0806870547 24.949960595087802 None None 413577 SUPER_20211011 188854105.729839 3451.596558235456 0.6572235780000517 1.2007663847020813e-05 15554302.382319521 284.18157934953626 145824 None None HC_20190608 93350663.2402393 11602.890077370355 2.1157732333645627 0.0002631796463660515 53095170.66185954 6604.473493745916 12681 809 744090 JUV_20211011 37904296.955528945 692.7587854573562 14.13875732792301 0.0002583191639668904 12853470.80236143 234.83660938019605 None None 34891 DNT_20200801 6390008.943113136 563.7369492005696 0.00851645358428457 7.516084282567972e-07 213525.62924338088 18.844424031654366 58148 5987 489416 REP_20210314 196674742.3983163 3205.387935162109 33.134393921842005 0.0005401258853329732 41529030.533451825 676.9673963800623 141994 10766 132256 NXS_20200403 8645432.452700866 1278.2459489030432 0.1458986105371282 2.1406439389894862e-05 45211.77557021835 6.633532217273018 23635 3528 537983 HIVE_20220112 495886132.53374916 11567.53788066997 1.3327080127770612 3.1150411641349416e-05 26340547.528109957 615.6779208143116 31316 201 69095 POWR_20190714 36120151.025239006 3173.5575730157548 0.08608073298939728 7.558878659329493e-06 599090.4111151984 52.60703024154526 84602 13167 757422 SOL_20210111 912330458.1173432 23666.311912372195 3.4737322317991124 9.055713950238295e-05 80904486.74204415 2109.108705961904 None 2913 92318 AION_20200531 42266091.48093554 4378.483927521058 0.10046745974953042 1.040247604737009e-05 3572335.409536999 369.88228450808765 67466 72555 463849 MTH_20210427 14891777.851062184 276.66717471391394 0.042848623874745556 7.960639640457333e-07 618415.0347162267 11.489235346291563 21468 2013 362958 SKY_20200306 8693713.400418632 959.5764991864355 0.5115454023723056 5.64400949538186e-05 524439.6424009404 57.862748990388 16265 3825 308227 ONE_20200421 11376395.15709747 1661.333019966393 0.002184476653564846 3.1905653468946023e-07 34442967.517002225 5030.611722246157 None None 276485 FET_20210821 384539159.17711794 7826.64119646206 0.5608078125726927 1.1407280907121406e-05 35902515.99704842 730.2859840199977 71946 3666 152406 CDT_20190813 11390055.410319554 1000.7955807904183 0.01697221795255519 1.491293575543191e-06 242456.7511119122 21.303885932352976 19759 297 234430 QTUM_20200530 162417975.87191367 17233.335575401095 1.6873439216429498 0.0001791577617640957 344100131.54935575 36535.651446260716 178516 15083 104792 BZRX_20210602 45987388.231234156 1253.380168007229 0.3277966789944547 8.936193722944675e-06 11792262.603774667 321.4734919902867 26569 None 123219 YOYO_20200605 1657937.9185120899 169.95099625525336 0.009503435780975155 9.721088027454283e-07 604439.276761776 61.82824351183339 7474 None 1857725 CHZ_20191220 30709544.386546243 4299.6620753931475 0.0082428409847552 1.153547911805658e-06 2302170.5916328467 322.1782494057582 14599 None 276661 MDA_20190414 20800405.067832682 4099.225491489268 1.1440699051618335 0.00022559658502477838 1115870.535961906 220.03601450137435 None 360 1539394 MTL_20210401 384069475.7980241 6529.649786141123 5.937727208758816 0.00010104769739959304 194036022.97839105 3302.0872541295876 None 3931 236357 DGB_20210422 2167174309.8419886 40067.5352251962 0.15219608042075086 2.8138584818495075e-06 523815716.1132847 9684.502331707079 205236 33786 307288 AMB_20200621 2123692.3101284173 227.00478750715334 0.01469521361258113 1.5699789527469015e-06 155278.33396532614 16.589327829467813 18908 5450 835291 ENG_20200711 21019889.616868097 2263.7780145523875 0.2542969990318302 2.738837191014564e-05 1116449.8575702778 120.24421851056331 319 3572 584808 XTZ_20210902 4564939034.644636 93843.46256191687 5.419560874346175 0.00011138699984175547 301152186.45743936 6189.512272860294 133253 54038 56953 WPR_20210218 12725946.119385269 243.2740787347541 0.02085396623850453 3.99576934648754e-07 471305.66394324903 9.030554203800426 32669 None 7566939 ATA_20211230 107619188.6212192 2313.4808190376853 0.6249300284113176 1.3430792205824515e-05 6541785.577867704 140.593920530207 165785 None 211446 DOT_20201130 4847631627.853293 267180.35242312343 5.185800478185966 0.00028540861392367743 180449728.82591808 9931.332145104918 None 6043 30578 EVX_20210602 12179771.612828782 332.1281264291038 0.5596954287190157 1.5260179488405085e-05 702786.8843937091 19.1615894067434 None 2812 922475 POWR_20190201 32200761.419227045 9393.216729984773 0.0774082690265511 2.2595451124722776e-05 1080760.0520228855 315.4735435907989 84901 13292 646917 ATM_20210401 0.0 0.0 10.420331789429742 0.00017729430012519424 2880173.0311656133 49.00403097701283 4906554 None 144414 ALPHA_20210909 463882913.92121994 10012.90123115287 1.1351542789242008 2.4518998936971808e-05 71532551.68090978 1545.0821013380719 77114 None 62862 MDA_20200730 8602822.002109626 774.7286823112387 0.4380487564243122 3.946880140694871e-05 203554.49989916946 18.34054317969337 None 374 1312356 AST_20220105 47017113.19209562 1016.3922787109223 0.26676561597054504 5.798935217034694e-06 542582.8463810146 11.794633894591575 49764 3753 213893 TRB_20210823 117139157.63464256 2374.4383474286938 60.71854380772004 0.0012320845237874317 37385442.878958605 758.6154525044358 None None 404146 DOCK_20190923 5738693.577724049 570.8851156195816 0.010253358724098265 1.0199759611085057e-06 1521432.4821248425 151.34792412653653 190 15168 179200 VIB_20210210 7591096.17391781 162.96921227916528 0.04139264628494126 8.88358252484101e-07 3358549.07142692 72.08031019414088 30521 1108 None STORJ_20201015 74459452.07055707 6523.211219372139 0.5185723599249441 4.542981910057263e-05 34897249.9647833 3057.1929310637197 82426 8401 102320 LEND_20190410 12514655.595814187 2419.5869265229844 0.01122136506930904 2.168910678894988e-06 594460.5909260807 114.89973954846053 11621 5913 527065 GVT_20190414 17536590.14842948 3456.5857610048993 3.952948239936532 0.000779045843995835 2179668.1653961753 429.5683430373428 21337 5804 169324 WRX_20210418 1520267544.9236872 25221.521106672873 3.497565908322281 5.80311911762016e-05 99504009.79271467 1650.9585141311907 107562 None 2746 IRIS_20210111 44686842.633990064 1159.1992207927324 0.047923691412099165 1.2460060814913123e-06 8929900.771078268 232.17557621340396 None None 805488 HBAR_20210724 1583861041.6331244 47383.28696697155 0.17389801069425997 5.200709073778064e-06 35218252.965760864 1053.2603968866995 117561 23472 41411 COCOS_20200129 9345610.430090155 1001.3035163992507 0.0005378126877684848 5.751763234632391e-08 1691170.1895430526 180.86614059033408 14684 193 52674 FUN_20190509 31213249.66662974 5244.077252372032 0.005193861374031974 8.72213913761613e-07 1867520.4877500678 313.61587003351076 36553 17711 471824 GAS_20190627 49561687.69736221 3816.461290713649 3.552127753749377 0.0002723875367922296 3234958.338259938 248.066059125834 322884 97924 201306 LUN_20190930 2313799.664989923 287.04872899080027 0.8543243487377348 0.00010610234377074864 93580.38890023092 11.622165057056966 None 2186 1514329 BTG_20200531 167596344.59989896 17336.46655426791 9.532290019364664 0.0009869804496922135 36221478.94776285 3750.39906546641 74920 None 213709 CTSI_20211225 371210347.7204598 7303.152196763785 0.7614242907279938 1.497370737193909e-05 35213876.05373451 692.494686446399 None 6742 97392 WAVES_20190805 136431318.1977677 12459.54478628171 1.3642511973576823 0.0001245652577483287 9397329.935238313 858.0390677290643 143223 56878 43327 ETH_20210206 196424150368.47876 5179462.655302907 1724.8569083393102 0.0451876718318215 39147540640.174576 1025584.331615242 658748 621764 7116 SNM_20201130 4777972.52744739 262.5608928 0.010910018271597 6e-07 275485.02832215966 15.15038865 28841 9518 None OAX_20190513 3966265.653783483 570.3507078092198 0.16903808328726336 2.4307749118528304e-05 396194.94624981936 56.973003764501755 15234 None None POLS_20210610 111879454.31754678 2980.5968480901124 1.5875597348942043 4.238731415617561e-05 13624300.598042302 363.7642709840301 377240 None 12514 POA_20210325 27194835.302923948 514.4750973126597 0.09491883615764714 1.7997271174237635e-06 2657961.388024095 50.39679562808123 19242 None 376055 NEO_20200306 847766105.4086316 93612.32902790506 12.028603471784347 0.0013278379092056536 728387573.2064444 80406.72672987795 322789 98967 240012 ZEC_20190524 475170606.02051544 60318.154284998265 71.74263221162963 0.009122740171715847 401967947.5649608 51113.947592218414 74926 15148 175759 REN_20211216 514626008.3317374 10548.55624425049 0.5162131478113412 1.0563127920252667e-05 36635640.76386686 749.6650588422821 108012 1231 77574 YOYO_20190730 2942664.146986761 309.2034434725367 0.01706593469184041 1.7937111315572042e-06 1139624.1787117666 119.77993658468573 7597 None 1133014 ASR_20210117 0.0 0.0 4.519559507177635 0.00012486396728014475 1920404.7688550546 53.055913489386626 None None 205258 CTXC_20200310 1421982.8098023115 179.60577731783806 0.06758534257189706 8.52792715562303e-06 4417469.823949586 557.396906448018 16469 20065 415103 MITH_20190509 19909749.7856554 3342.328563695844 0.03852757876459204 6.46854998550806e-06 6414792.794164613 1077.0053340041516 74 2033 435662 NEBL_20210201 17232201.736217514 521.4253040450823 0.9911364669163097 2.9976645843394222e-05 2327777.146291218 70.40297017202855 38970 5866 713465 AXS_20210509 454348016.2185636 7746.571876172916 8.242258902730804 0.00014037805850128905 58171626.80447739 990.7502454173742 65417 None 17077 JUV_20210602 22185729.174224377 604.6691066675078 10.055732361633995 0.0002741718367001294 3853195.4962638123 105.05825417609378 2494478 None 34079 XVG_20190213 93730169.38374291 25795.512952100722 0.006026285997213064 1.6584426359388247e-06 649653.9923397907 178.78571976213007 304331 53509 374789 VITE_20200523 6346309.343787628 693.2840193521935 0.012722618660435982 1.3922596738415852e-06 2171165.4560943563 237.59464858899244 None None 618557 ETH_20191012 19490975562.25558 2358359.1105067595 180.55244905183102 0.02183671139784285 9464732026.7697 1144701.292127913 447778 446564 23868 BEAM_20210610 61148778.776360564 1629.0735273705652 0.6767002046456138 1.8067669224284927e-05 15762103.754962586 420.8429005465786 20870 2445 145423 NAS_20190531 51434518.56624822 6188.2334021775405 1.1293611734441638 0.00013595878228817897 7090869.757272097 853.6383578892828 24044 5162 505647 DENT_20190625 186565136.56030104 16891.70228564433 0.0025777036260814924 2.3342282766827564e-07 1883740.0856977373 170.58126192112692 45405 9659 252434 DOGE_20210408 7655108665.350827 135905.12286141844 0.058961028299255425 1.0486822134042727e-06 2977233569.2485094 52953.14514147402 702270 1233641 11467 OCEAN_20210708 207933123.31789955 6119.443642598463 0.4790607124738431 1.4099228720900765e-05 21002569.918497704 618.1263236520936 117473 3245 96466 POWR_20201124 42115462.51023933 2299.637317132529 0.09776224000868407 5.324967154140433e-06 1642840.5838602108 89.48313937740622 81128 12600 284033 NEBL_20191213 6803869.124252812 944.0571003982785 0.4262762470436421 5.921916940705537e-05 192940.6430500069 26.80370934464662 39980 6056 845184 ZIL_20190405 197940285.66234854 40371.46993046842 0.02262807751710212 4.6172475791406265e-06 25353168.609592818 5173.3010149762895 58701 10077 183798 WPR_20191102 4532646.911051 489.51575658963054 0.007452295682299808 8.048313117786513e-07 1776102.215337833 191.81507776435663 34121 None 790828 BNB_20200511 2258003159.3085427 258375.8716632608 15.319104122325577 0.0017497499511645016 437921979.77575225 50019.50222466144 None 62917 1326 POND_20210723 41834077.94520338 1292.309473688603 0.05399183833673524 1.6677200083349497e-06 10625165.97906799 328.19408342159016 19713 592 135580 PSG_20211216 45416111.30468229 930.9683211847594 14.607373721829353 0.0002993466543590127 4006881.5830489425 82.11240563428488 None None 16830 UNI_20210725 9505862254.81691 278243.0210449758 18.283330956972087 0.00053513113927052 285379632.8571276 8352.719119663561 None 49275 1613 MDA_20201224 9275937.742996309 396.6749498187274 0.47348859064892257 2.0307897346055054e-05 293580.7458432788 12.59166063788902 None 370 2990723 VET_20190312 248564554.55643895 64286.75635151022 0.004478410330469575 1.1583304271097127e-06 21200492.678221196 5483.458175286363 105004 54777 826243 OST_20201129 6511953.244490867 367.87092579861354 0.00948433659413809 5.354055929957499e-07 437254.4499172405 24.683695662242116 None 740 657979 BLZ_20200501 3433105.0733270743 396.73214150202335 0.01557125407283205 1.8064719963126575e-06 412473.6427840326 47.85241326236384 36032 None 714156 XZC_20200322 31743865.745474044 5151.425248138387 3.26300377609261 0.0005295234100254777 50495771.24571265 8194.502616823615 63637 4093 90239 ETH_20210519 390227141901.1161 9145537.862685632 3399.0492796569383 0.07944881007796809 59160464538.280525 1382806.8158225124 1203905 942718 4259 STPT_20210804 62902260.50519104 1637.1996867171852 0.051511192140745614 1.3408947720898004e-06 20783616.227745812 541.0211099125555 30695 None 442795 BLZ_20190411 16136431.136922609 3040.4056930769275 0.07847301174537855 1.4785007471243467e-05 1570980.5840311246 295.9865966078012 35460 None 1258307 VIDT_20210722 15466654.924811337 480.6151689789436 0.3373933284864607 1.04600156398327e-05 12517806.167613622 388.08250559372595 29542 1621 891299 BTG_20220105 732188609.5289134 15816.177911299716 41.501873220588394 0.0009020008267472409 15218265.905097269 330.753466357933 105659 None 248860 VIB_20210813 8800828.1667562 197.9590415631161 0.04870895714474973 1.0955100064239747e-06 1752194.733992479 39.40849849418426 32767 1277 None ADA_20211216 41883530741.13758 858508.4558063856 1.3122271887742145 2.6851744699306633e-05 1395379666.5856905 28553.27102371866 756400 672695 8356 NAS_20210610 21071185.113226607 561.3605135733709 0.46197496679210437 1.2313251503437013e-05 4167462.846648657 111.07748655374004 25080 4916 453331 CND_20211002 26929877.979316037 559.9053413005632 0.013967691192835982 2.9024612748861315e-07 207263.21857280924 4.3068926518391635 36611 6310 238436 RCN_20210523 33885660.37565685 901.5641512561788 0.06599004965068166 1.7558505635590686e-06 827834.1235624502 22.026851322054444 19821 1163 786540 FTT_20200914 369193489.2912139 35766.60825479954 3.967750001435126 0.0003842033940890785 9864161.200953871 955.1620469730957 26111 None 9100 KNC_20200107 37081684.11469859 4777.5396906150345 0.2176801412934496 2.807501090946613e-05 17670056.797891967 2278.972415324463 98849 6779 195958 NEO_20190730 793355336.1551608 83585.81100355391 11.286587582151434 0.0011865697637374697 277866816.8464784 29212.40461886002 324402 98198 191074 LOOM_20210826 93755338.14844973 1912.75199388263 0.11253067687838188 2.2957870067978205e-06 11434860.065605706 233.2875256010487 34318 None 329311 RIF_20210430 227893568.4694576 4252.46324666033 0.3174382599206464 5.922988089431004e-06 7357523.648258381 137.28189206693344 42781 3218 604908 XEM_20191113 360454201.74489695 40956.087519970766 0.04005515100401897 4.550675490101423e-06 54061027.33824334 6141.886521740061 214973 18241 157832 YFII_20210106 61587076.011202954 1810.2872251516058 1550.0610288719265 0.0454882319803222 83212337.9404681 2441.956839993382 12752 None 153054 ZEC_20210203 998785808.4588184 28045.77954762892 92.55144560701409 0.002603354511296981 980969531.8678372 27593.42589933008 72342 17004 125065 GXS_20201014 30679135.052344736 2685.403857559932 0.4382944514784041 3.8358820654808514e-05 8589643.420975473 751.7516828300272 None None 492071 HC_20190725 139001698.53995767 14140.440311398994 3.1482513939813352 0.0003206438685745043 62091019.79784995 6323.861185221723 12949 844 470640 JST_20210902 112828251.10512976 2319.886566626378 0.0786777881926317 1.6170466545446091e-06 124141470.23272616 2551.451352935705 51690 None 173611 RENBTC_20210930 702545380.0945778 16913.188440912993 41427.33685338059 0.9961986892264495 1888499.4219863254 45.41254137204245 95922 5996 100322 NEAR_20210427 1811881467.4477754 33623.32828648548 5.0433525752990125 9.358757795903307e-05 88746425.4218202 1646.8337051088856 52086 None None ENJ_20190405 140985062.41448313 28753.23617370658 0.16278532149731298 3.32162611266922e-05 57415814.17921034 11715.66735278259 44132 12155 18229 AST_20210813 39342345.10288753 884.9363698329684 0.228507652304073 5.139894685870606e-06 6307603.865388895 141.87892292179222 44467 3698 216089 QUICK_20210825 250382392.11798173 5210.354351444881 693.1238046833929 0.014433114546938727 3194274.4074332407 66.51528645434131 None 2257 4739 VIB_20190513 6707058.673752231 966.5576119529786 0.039478041260770536 5.678996919097622e-06 1372563.6186027795 197.4460817299052 33031 1124 1885935 NEO_20210422 6877125045.99511 127146.87913063112 97.50638091585296 0.001802734710486759 2358044620.140408 43596.41744135892 380929 109128 88657 OGN_20210120 33473747.61255465 924.398431810102 0.1625901915425723 4.4965005682981476e-06 11235917.199576527 310.73404609415275 70274 2511 231099 VIB_20210711 6276766.578570945 186.15398342646503 0.034368360605451946 1.0196649817588965e-06 1095822.7854042184 32.5116502738546 32270 1278 5353041 TRX_20220105 7820742052.681737 168863.48286494825 0.07615930225563554 1.658252673589295e-06 1165972107.383606 25387.26468251406 77 121700 22258 ONE_20210916 1823986552.9301217 37847.97392037057 0.17288542357434802 3.587621177862681e-06 152325088.06278977 3160.9646467323537 216057 30814 29145 ATA_20210814 91736908.94207276 1923.1761367694369 0.532823291687962 1.116741357397486e-05 10498706.329192627 220.04179884550337 66784 None 92285 LINK_20211104 14759759681.667892 234190.64601875364 31.934196227935903 0.0005067426535016764 1129717859.6936681 17926.746045000004 582723 70512 23025 VIA_20210511 36104630.18107261 646.7269997116628 1.5579728643814985 2.7907310258002445e-05 1056484.4848938347 18.924360607784326 38520 2284 682329 JST_20210108 35080597.813861445 894.0960327832056 0.024627592208627414 6.239028461555461e-07 68744429.6874896 1741.5362807712731 None None 212672 DNT_20210708 98809229.49742433 2908.0899378674244 0.13151645843169438 3.87065893676794e-06 4888695.6308960235 143.87912857837352 69914 10246 207406 ETH_20201014 43068111158.10915 3769834.8289309745 381.16877389892255 0.03335862259484047 9741612768.02954 852553.5302111357 495127 487625 10438 CELR_20200321 5612599.329433957 907.6388747420195 0.0014874055161615048 2.398850766571713e-07 4767858.496502046 768.9484061317343 19256 None 1309255 OGN_20200626 21098061.686582133 2278.1837497497213 0.28338554560490126 3.0625843427376327e-05 11071861.742520476 1196.5504572655434 64587 2290 179031 PHA_20210616 164616939.77085826 4076.1753160125386 0.9266450974708351 2.2959131185218e-05 23735980.372379676 588.0973078761433 51127 None 192691 CTK_20210203 34499402.2351568 968.7259433861672 0.9844841782498065 2.769228843415168e-05 6640891.75726135 186.79984307010153 12669 None 214497 DENT_20190706 102835713.57456331 9334.451049428879 0.0014101100312570866 1.2832667691366019e-07 4715050.644162461 429.0918915778337 45747 9785 256957 HBAR_20210112 295125277.59753495 8318.683336800712 0.0434955512673859 1.2236162074944176e-06 39178756.71116037 1102.1762066320332 1384 6947 206193 MTH_20201106 2241684.4819038776 144.14880995299143 0.006441836825077989 4.1476379122575046e-07 101227.51634879914 6.517629924084 18917 1892 2394440 FIS_20210813 63617957.4551304 1430.973272673554 2.364274426941114 5.318002511961612e-05 121067770.1258049 2723.197858548158 25149 None 435557 HOT_20190712 262362349.8878071 23105.36455692075 0.0014721344679807734 1.2936998841937288e-07 16962627.49049348 1490.6620079463678 23623 6562 316713 GO_20200531 9141566.49598466 943.3079536410404 0.009639238868818418 9.964292222899053e-07 1778578.0607864535 183.85550747416787 10836 676 1057123 NXS_20200320 7678072.299582258 1242.1676543931642 0.1285257276476944 2.0794275486494874e-05 280895.9156271423 45.446364393228926 23643 3533 599319 KSM_20210106 608704080.1640776 17915.149694570282 68.03117913860733 0.0019964491725877193 105981219.47990863 3110.134509199284 28293 None 180647 DGD_20190627 51028585.77020036 3917.5275009651023 25.514305642253003 0.0019587647298649163 4924207.437056857 378.0374816186362 17092 3367 464575 CDT_20190325 5870413.647866109 1470.0911921466673 0.008702334411769683 2.1792715023595975e-06 400743.7874583596 100.35577517849681 19572 287 398206 SFP_20210523 104051160.38053253 2768.392147466801 0.9602791680564684 2.5550923621536726e-05 14531970.7495221 386.6638859228181 334520 None 23941 PIVX_20190224 47086079.81357563 11443.176637948183 0.7964251565372251 0.0001935526121784596 375987.5584646463 91.37503190361885 60722 8587 178528 QSP_20190629 0.0 0.0 0.021410434832236674 1.7299283491153703e-06 1615774.1591780179 130.55192692871162 56861 8593 682845 AR_20220112 2417119068.8569975 56384.14659476311 48.175079607239034 0.0011261242877597798 66199980.91216415 1547.468254587372 54932 None 54416 TCT_20200711 4584363.649724162 493.72198570588813 0.007929053179895545 8.540386121781889e-07 1814562.2478272282 195.4465670345922 None None 649723 LEND_20200506 52642836.456486285 5869.768689824629 0.04463311759139335 4.968247288864748e-06 2817734.515989071 313.6505497546245 44404 5723 91330 ARPA_20210724 30679595.30271528 917.8204590222105 0.031240928292165248 9.343118911691877e-07 3180668.6999143986 95.12318457402975 43150 None 718548 QTUM_20200412 129480627.19222979 18813.346275667132 1.3473612291710093 0.0001957658727184163 283265575.5723622 41157.28685998112 179412 15129 108429 PROM_20220112 184035172.39782557 4295.441397934612 11.178546999771225 0.00026119266496293204 963172.0502117946 22.505024545477887 None None 672740 XEM_20190625 824990665.4274356 74736.79678928404 0.09191609947819641 8.322167955187092e-06 61067758.199837476 5529.13084074413 216614 18467 184681 MDA_20200318 5289061.666865889 974.2000911645337 0.2715969391494023 5.0495428823863304e-05 230479.11996365854 42.85078482092011 None 372 1815630 TNB_20190205 6757224.906617118 1950.5352379658912 0.002710492566869414 7.824086569541471e-07 206224.9024395327 59.5287184773853 15110 1512 1690668 EVX_20201124 6150541.216162006 335.8389830767993 0.2820703331564181 1.536962350544971e-05 410881.7051193038 22.388377545039308 16647 2807 1331525 AUCTION_20210729 95132256.52796327 2377.9910012493697 20.84659720236253 0.0005210098401053037 5246266.263285943 131.11762655800194 45657 None 56782 BAT_20190830 219166019.10110912 23073.16654191226 0.1707865946154599 1.8007235739327645e-05 25532134.723410193 2692.03311845356 105510 29906 32625 VET_20190316 292933284.5168282 74670.53835614388 0.005286885963768087 1.3472313162947218e-06 11783788.761264388 3002.8053096992353 105296 54802 762391 WAN_20200711 23757819.74837161 2558.6447407841138 0.2238499744386894 2.4110889051731632e-05 1083900.7970700432 116.74699506564883 103598 16106 719982 FIL_20211120 6660720133.306563 114581.1147876758 54.0735756694293 0.000927012160147311 645733924.601846 11070.161218577978 121412 None 41408 WBTC_20210704 6794232597.422015 195984.3707961316 34715.82258780578 1.00116156737518 303857019.39056545 8762.862208480845 None None 181430 DCR_20190818 259485866.01575285 25386.072900572715 25.321538564696066 0.0024774399051966166 16239576.60103753 1588.8677148157535 40568 9575 278378 QLC_20200306 3761041.1846005176 415.12833089726473 0.01566282820434919 1.7301467061596445e-06 66345.82920541459 7.328690346951807 24516 5674 940522 ETC_20190916 708826878.176434 68800.61680873887 6.246538291913827 0.0006062292506347578 623088359.9041755 60470.9955901379 230199 24978 331618 OM_20210724 37928263.472597115 1134.5017186215116 0.11857783930836568 3.5462673918924265e-06 10068425.34884886 301.1129964130391 46421 None 86802 PNT_20210614 49579779.62323222 1273.8739651812075 1.100632043839072 2.8194174208130328e-05 6665805.2580838725 170.75359175292817 None 308 346623 IOTX_20190515 24691126.929931533 3090.335565891138 0.00978783709214558 1.2245508013521085e-06 1568033.693185998 196.17581468319156 19037 1718 727084 VGX_20211104 5965399614.311723 94845.97687269226 305.8172725779929 0.004849207260349963 252933307.16241592 4010.6499516423237 359126 11800 29572 ONE_20210221 281807265.9435047 5043.658624743172 0.029873631278408284 5.313946859333693e-07 55629055.40304523 989.5343538646729 None 3294 144448 DREP_20210804 0.0 0.0 0.4880590613344219 1.2702216027143466e-05 1223908.4571947267 31.853418678938958 None None 292177 BTS_20190623 174731488.851919 16286.068213220178 0.06470788622727572 6.0325189494669086e-06 27649727.13668327 2577.699761568206 13702 7185 169425 FTT_20201229 491319367.5367675 18105.521908287676 5.407611546815736 0.00019922852492088695 8631988.660402354 318.02180187266765 35647 None 5376 LTC_20220105 10247784142.818712 221267.56135770708 146.72337359445743 0.0031939348075470954 739978327.2516489 16108.152902563832 206793 354461 135974 AVA_20201106 27439178.959980637 1764.4432234321778 0.7105397958696159 4.574213826295936e-05 3806562.5703030317 245.05356689318822 None 8984 84193 THETA_20210202 2036262207.004735 60993.06330789803 2.0332303776135774 6.0877959990672296e-05 107907849.09537688 3230.9224730442024 82174 5206 46280 ENJ_20201031 116616394.63991503 8585.345051721408 0.12642068700015244 9.315887184590336e-06 4599154.01532012 338.90972251421346 66874 15929 82093 KEY_20191113 4343831.549920327 493.74880391896016 0.0016616687918709584 1.887825973512096e-07 1857781.9370270262 211.06305967823656 23652 2791 411856 WINGS_20181231 7041071.10305391 1853.577352681237 0.07879751433906461 2.0737296474513174e-05 185999.37617947915 48.94982081936254 37640 1218 1758757 RDN_20190806 11445444.018091623 969.0328431959801 0.22620193324403506 1.9164331029092123e-05 313922.60970615083 26.596221896276866 25628 4401 836731 CTXC_20200725 1287350.9049390974 134.928462754357 0.12792286659183127 1.3412176439484252e-05 12330345.314857291 1292.78502998458 16531 20065 581849 KNC_20190411 46318554.38652685 8727.282709350487 0.2787784015942527 5.252430942457203e-05 6101208.683639237 1149.5215229398164 95694 6651 240920 LEND_20190325 9748400.619105037 2442.822603185972 0.008745600999596204 2.1901064849508375e-06 162090.711281863 40.5913690717302 None 5922 466790 REP_20210125 114694168.53082319 3562.0072803636376 19.776867564129834 0.0006129743982531012 13428145.379057202 416.19883971473183 136911 10441 130861 NMR_20210120 148533979.22762287 4101.694031546215 28.260583890517783 0.0007841039159795711 9088512.453048224 252.1652854899186 None 1996 2335404 XMR_20191015 912597141.1155487 109330.9383588601 52.87820724630921 0.0063349135741389215 89162468.20048171 10681.839637185996 319988 161759 83445 IRIS_20210602 84346670.29431623 2298.772449916657 0.08227988622659983 2.2435209772930132e-06 9665391.168391969 263.545671177894 24599 None 569511 QSP_20190716 0.0 0.0 0.016458767044944648 1.5068387018607335e-06 161996.60058275593 14.831168498915503 56873 8595 708512 MITH_20210813 35237623.816179365 792.6079347807065 0.056936831312819486 1.2806603036256661e-06 25259823.21003889 568.1604001453367 32792 2753 709591 BEAM_20201201 21484527.574251972 1092.778778120445 0.2814431918308524 1.429309429031111e-05 6021618.162669255 305.80791675717023 16227 1595 512574 MKR_20210124 1241803770.3446414 38786.98862924979 1378.7861031685907 0.04302229806499494 168883442.6958628 5269.674384740651 86868 19416 39551 ATOM_20200421 423519941.59643066 61848.03304317573 2.2753898696446644 0.000332334980871325 153889443.59018275 22476.51972706943 None 8367 86348 WAN_20210105 37946225.317145385 1212.8705579693192 0.300854085617267 9.616162336049037e-06 3164170.246417648 101.13598652323593 104095 15885 601908 ZIL_20190524 179488755.7795149 22784.515951085872 0.020259065853469968 2.576127864359678e-06 66052770.065463334 8399.221499871768 61888 10339 200377 RDN_20190909 8202707.1838585995 789.6434746001227 0.16244955049219578 1.5630435434678126e-05 156920.37023181093 15.098433377394537 25557 4387 1279478 FUEL_20190305 5339626.625025468 1437.9866698757153 0.010064471028349566 2.710409583750247e-06 15578885.001887528 4195.467312123932 1 1517 None REP_20191024 80622177.23989637 10800.261882808089 7.354815191363088 0.000985131013520663 3632095.2196041904 486.4962003523973 125598 10056 212520 CND_20200626 13399542.33009847 1446.9385031320116 0.006939815462123868 7.499948570214406e-07 71731.22355544295 7.752086355618023 34326 5937 350582 MDT_20200707 5654360.640828073 605.7290952615415 0.009371999827797236 1.0035031207020555e-06 6580245.864175575 704.5771853411355 14194 61 566162 MTH_20190507 6800287.627892021 1188.8201973625685 0.01991042786094018 3.480723180315445e-06 697648.5598136394 121.962296883677 19487 2004 1355649 YOYO_20210723 1592604.1909289847 49.27391406479326 0.009163656109680555 2.830601605804531e-07 128826.1186356927 3.9793660294009947 10100 None 1359216 BCH_20210722 8097600406.595327 251633.83607151324 432.64807101190564 0.013396597400197595 3149075123.3534346 97508.5628184452 None 591134 283440 WTC_20210708 16969743.11476166 499.44260724672245 0.5823666991175874 1.714025052956073e-05 6837240.989264388 201.2340741057906 65485 19862 588715 BAT_20200208 374463022.73505795 38230.09609764074 0.26293116133748473 2.681978622838545e-05 83379299.53397588 8504.944708715842 None 34107 21651 ANT_20210221 197679964.72466218 3515.2284423001643 5.670318018377744 0.0001008319846821675 49446409.07274753 879.2768846566173 78538 2778 120479 POLY_20210207 98545407.73062535 2505.088429356771 0.12401623763714363 3.1537444426080024e-06 9995901.434489753 254.19670196830444 36479 5058 279172 LRC_20201018 203334855.18434882 17900.288984959792 0.17205278898886256 1.5137169718174726e-05 61489649.805602856 5409.84700386805 42096 7166 146792 CDT_20210125 5886165.908825835 182.81345343741768 0.008735846183841392 2.710025022249342e-07 437613.5451066826 13.575601405482379 19292 295 808485 DASH_20200425 768040477.0354458 102470.10345525976 81.23687278441402 0.010838427150000982 697780269.973215 93096.1565062079 316798 34811 68820 TRX_20200607 1130090535.44119 116760.64953105249 0.017016186660442793 1.7593615004246654e-06 1433590232.1516023 148223.77728705257 508601 73010 68107 PUNDIX_20210727 295308466.8034645 7890.586810029357 1.1359824934266747 3.044547836713522e-05 71518758.79522793 1916.7749823118395 None None 120822 MBL_20200713 7002274.140493621 754.7026371487711 0.0019956784857907447 2.148805163549668e-07 3545936.3745817817 381.8012994363092 None None 121072 ZRX_20190915 99555668.64450894 9617.472525962603 0.16579083041779738 1.6021358512084425e-05 15999108.752598818 1546.0894704083535 151102 15887 155880 GO_20190205 12718090.548667317 3670.182066146596 0.018840109525670064 5.437618243680444e-06 526007.7452655227 151.81595988472873 7851 623 665019 ETC_20200903 734466006.6396629 64379.92307072709 6.318401018313446 0.0005537164185665624 651725722.8273958 57114.32878124221 235234 25750 179202 KNC_20210823 199194486.6090931 4037.6674223132686 2.1596031779026603 4.382493240693358e-05 98528207.6375551 1999.4377134069923 178597 11330 108939 CELR_20201015 19087744.601569537 1672.591200712764 0.004829622169547523 4.2313061886616607e-07 3494593.8629565733 306.16673768856214 24788 None 306655 BADGER_20211028 250069004.02920637 4272.638225620912 25.227800727204585 0.00043100870927567387 30883156.851930767 527.6286156309673 39324 None None LOOM_20190916 14646608.114108972 1421.4596703667717 0.024317679285647185 2.359754037505176e-06 2175198.633548658 211.07827344864086 20930 None 411903 AE_20190616 141911447.55823827 16092.607265191138 0.5300801310661639 6.011737543891114e-05 70008895.03167945 7939.839243205785 970 6364 390677 PERL_20210617 0.0 0.0 0.10547239207577577 2.7572563115837208e-06 114240543.41751084 2986.473077716713 19881 670 362669 POA_20210916 10559050.483127482 218.77345780208648 0.03619857833107686 7.500000271486299e-07 309405.03167564626 6.410577234118522 20149 None 218681 PAXG_20210318 148575270.45941547 2525.7842463050724 1768.8538757061299 0.030009934029323372 5836247.173083514 99.01631505493516 16345 None 49439 WABI_20211125 12726687.790505642 222.6014812156224 0.21665088864764495 3.7876726853153305e-06 3375673.2466330486 59.01635313214168 45600 7935 676123 VIB_20211120 9047376.886508744 155.63978280134648 0.04971287023355308 8.523357786848815e-07 1285457.6335355362 22.03939398185154 33133 1311 3761779 CND_20210304 34326224.37884108 674.6637154479993 0.017723722233627018 3.4979884638219653e-07 421063.74777346826 8.310196429566938 34520 6028 206667 NANO_20200719 131702346.78927834 14361.722023869714 0.988351121318429 0.00010780472209491448 4635728.085747274 505.64355846019544 97926 52136 209112 AE_20191108 80331463.00492522 8713.967367833327 0.24039914460287284 2.607648074580928e-05 40520681.5326941 4395.343309311178 25125 6359 394142 IOTX_20200421 10245842.749731613 1496.234672095836 0.002362203337816811 3.4501463312312547e-07 2909470.184717129 424.9463931799328 22575 1817 547255 FLM_20210201 0.0 0.0 0.23928916525996025 7.217946677263959e-06 19561842.909200616 590.0657427352821 None None 184710 WAN_20210804 110199861.54089488 2868.124722452262 0.6251604950226453 1.6276374515595614e-05 3384058.0251871203 88.10568844158537 123359 16655 308128 ICX_20210722 477230244.92046076 14829.983104732446 0.7484957792412199 2.317656608704923e-05 41940488.96604513 1298.6533006640282 142120 32588 243184 KNC_20200801 286203101.2609409 25252.531543919547 1.4676715582335862 0.00012947921231843448 86080408.86040151 7594.085660900777 117197 8721 65408 SYS_20200523 15163314.696029454 1656.4720043872594 0.025799005745874286 2.8232328802628146e-06 500209.37102379673 54.73883595362203 57775 4476 1010431 NEBL_20190818 8146880.109242156 797.4979864549168 0.5262903723069223 5.148814447351055e-05 114515.71239572359 11.2033239720362 40434 6135 679101 LUN_20190922 3016198.749373345 301.90411226412704 1.1151160479071585 0.00011166384545625399 74615.25495886915 7.471712306574068 30780 2191 1514329 KNC_20190801 31468904.75169134 3130.597585128561 0.1928730069620995 1.9176392702167453e-05 5692969.159231396 566.0232811126436 97619 6694 212094 HC_20200329 41982156.49422132 6737.20427877439 0.9437778589721397 0.0001509646848227716 23919120.06047512 3826.0512119878576 12701 844 891141 TFUEL_20200701 0.0 0.0 0.008199330157982456 8.964739346735811e-07 2976289.597742693 325.41268554954445 71605 4273 81176 XEM_20200320 359959542.5610099 58311.71930912067 0.039995504733445035 6.479079923955528e-06 38279637.57194393 6201.117674138991 211943 18024 216330 THETA_20190213 57638809.20639637 15877.464186661477 0.08298178982902636 2.2836708765998904e-05 6248071.202116007 1719.4782455998286 None 3825 561867 VET_20190220 237407048.75064397 60645.87207717044 0.004264726914609213 1.0893264153105573e-06 9199604.217337219 2349.827335958771 104280 54677 740363 TRX_20200430 1073395454.1298007 122947.53262179099 0.016278926011921116 1.8567672487528665e-06 1822420893.855773 207864.53766522103 507642 72588 64875 XVG_20200317 30852438.963227462 6107.854601611205 0.001880307719733815 3.7382337002961586e-07 600508.0107346632 119.38680352511211 296225 51916 327824 GRS_20190522 31411530.004306167 3955.083259526304 0.43273449368923367 5.4486392467200794e-05 19056144.536259647 2399.3940516791763 38757 107043 6849352 FRONT_20210418 110095899.74512167 1826.3281313929738 2.933921694211714 4.867970277123902e-05 30149656.769085683 500.243865768306 58673 None 149576 YFII_20201124 87609904.45111889 4785.151607061242 2216.3325504195527 0.12078164692867108 177026604.45406333 9647.272848158389 None None 71930 XZC_20181231 36540107.530265674 9619.475279496586 5.65610429752937 0.0014885280670647483 985355.5774754721 259.3179609067167 59097 3915 322791 XMR_20200421 962608580.7457776 140595.02880650503 54.90997711435001 0.008019947015406278 129977847.71562843 18984.080974666154 319568 169334 82357 STMX_20201014 17477201.562383085 1529.818205508097 0.0022021880148142916 1.9272816636483286e-07 392071.13538658095 34.31276099012194 21479 130 168346 DGD_20190608 65715977.68384931 8185.511385264439 32.858005270927286 0.004092757739011089 40196874.96133215 5006.879441571482 16957 3367 471901 GRS_20201018 13495466.648868272 1187.4917409545983 0.1773000565466889 1.5600968702896425e-05 699934.2805954356 61.58854666116935 37582 106814 2935731 ELF_20210826 165335647.40825713 3373.0995534279195 0.3587033398792254 7.3198551685392085e-06 134152865.24460416 2737.5812680352788 None 33384 746184 LTO_20200410 9041881.813274195 1240.4910806157345 0.04264721684090648 5.8489361389042945e-06 2618884.7511090585 359.1720820031259 14564 421 900520 KAVA_20200418 10138217.457635224 1435.5580799942293 0.5199693990314127 7.386303039233418e-05 9584390.997403398 1361.4881276704773 21194 None 326778 DGB_20210813 873497320.2719378 19647.09679448899 0.06005021344646261 1.3505854687670365e-06 36090668.50113844 811.7128922311454 223728 40830 115108 DLT_20210724 6321172.342065427 190.17841578866134 0.0781086598018583 2.3392097831222675e-06 798131.2676392175 23.902554136936 15235 2598 None BAT_20191213 247843711.98104006 34391.53763839824 0.1750530077029357 2.4289851857894913e-05 41934555.514716305 5818.718310214143 109012 32489 23040 QSP_20210813 31660510.801633272 712.1937094861906 0.04435747628570832 9.977467027500496e-07 1971530.2238087677 44.346251069541744 66924 8500 236005 APPC_20190207 4111615.310985548 1207.2623779118894 0.03944974764081532 1.1583329796838099e-05 156418.6154349949 45.92801012176234 25306 3435 1889954 CTXC_20200318 843476.5550678469 155.36893596493204 0.03957984203721482 7.358702578568186e-06 3246541.702164514 603.5985381822481 16547 20064 396619 MANA_20210523 1005258910.950597 26745.985965643667 0.75721469323588 2.0150157954510513e-05 147171783.33781165 3916.372340889203 134890 32177 10276 WRX_20200903 29529667.20624591 2588.377749756648 0.12813279684580928 1.124699823725971e-05 4774292.222511092 419.06879060293613 38012 None 17152 ZRX_20220112 608669695.4153972 14198.440522137957 0.7195750584629558 1.6818069261944772e-05 38786522.46174856 906.5272809552857 251388 20919 60955 QKC_20210420 238739843.4205135 4266.645449263708 0.03652944072589977 6.53197585164488e-07 23721430.295227703 424.1724121033284 71849 9379 311852 EVX_20201018 5387379.822160481 474.2701668190765 0.24578981471071365 2.1627512599144546e-05 150880.88564838681 13.276295680401665 16782 2819 1286952 LTC_20200626 2750342435.8564315 297233.0738761259 42.38334399528373 0.004580422951204114 1191066903.6059327 128720.14493012424 132085 213988 123439 BEAM_20210430 112559408.70721465 2100.343383132369 1.300914705021606 2.4273388800501874e-05 46042250.66509242 859.0889528190804 19484 2223 172330 JUV_20210117 0.0 0.0 10.071322608507847 0.0002782451021298346 4806306.041828549 132.78604682428718 2221373 None 106290 OST_20190312 14312484.88099518 3706.274253766345 0.025389462405434056 6.570673046892342e-06 2354501.2004241254 609.3337987806827 17407 741 1030175 KSM_20210809 1936100954.1900358 44012.71361710816 215.3527935541173 0.004895677596042742 152329919.1032732 3462.9602888039244 None None 59674 ZRX_20210202 513549830.97724104 15383.256495176778 0.6832443957246808 2.045750756789425e-05 127025198.4814548 3803.3520296809966 169878 16567 76527 SKY_20190725 22780914.50381248 2317.4692479577375 1.423196921307297 0.0001449501038778867 2667244.003758277 271.6541116863154 16344 3790 462705 DOGE_20210203 4054295191.8342094 114158.15866044632 0.03162326174094092 8.904268585213516e-07 2444614954.7110186 68833.84871079025 366513 819222 31801 DREP_20211104 0.0 0.0 0.6737427915749519 1.0685174487739641e-05 2344621.6870053434 37.18435602825078 4125 None 483528 SNT_20190605 89690315.8746189 11706.650021120384 0.025463673236707604 3.321372541579273e-06 22970475.66009579 2996.1705216384466 111560 5753 342560 STORM_20200625 0.0 0.0 0.0021380938938444886 2.3002831595525134e-07 1146970.727100755 123.39764196723657 19567 64 267635 BAND_20210212 360702571.9409393 7567.586956156816 16.002169744728644 0.000335150834603571 576797707.9017694 12080.501349786357 58655 3879 278216 CELR_20200721 22294337.164484404 2433.383286671148 0.00575593260847677 6.284633447250692e-07 8934861.743485998 975.5557401241481 21433 None 610073 IDEX_20210819 36706700.58657872 814.7908710083217 0.062053369352388386 1.3786571560151456e-06 1257719.1297356794 27.943099569991308 None 1974 8868023 COMP_20200901 18685.476823978315 1.5998426869586835 2.0257912778554552e-07 1.7345626016743104e-11 13.710182615414427 0.0011739200522177386 1899 None 827585 OMG_20200109 92360394.3340518 11477.10430494949 0.6578146183883733 8.18524161204916e-05 69686018.69755636 8671.088845953744 None 42719 None BTS_20190221 124150535.5180636 31267.764195919422 0.04610668325665371 1.1612135975967961e-05 17861719.67347807 4498.539104591035 13796 7214 130894 MTL_20200319 11855337.82684994 2202.874878942773 0.18423662325860796 3.419540904753464e-05 6627291.881132829 1230.0646459126528 34717 None 635134 ARPA_20200410 0.0 0.0 0.007770527337268489 1.0655058007865087e-06 2188971.3081455855 300.15487049354226 None None 1878146 LTC_20190625 8471753632.672371 767465.3256420444 135.85685014427477 0.012300603824377206 4536663332.103164 410753.6592635456 447871 204804 158874 ADX_20210711 41480109.3114765 1232.833134165433 0.33734174202038625 1.0008494882038853e-05 8302289.710363112 246.31823971061232 59172 3876 14172 ELF_20190608 86625165.51267302 10766.953747194206 0.20268914429440976 2.5212369868585465e-05 39191217.948944785 4874.969924851539 87105 33094 1112151 XRP_20191220 8222963566.866712 1151502.9479723864 0.19003622481374205 2.6594983313846868e-05 1442126233.515745 201821.1167602538 942314 208065 27610 BLZ_20190126 8537760.884066056 2394.3812140464597 0.042125838623477824 1.1813138614159256e-05 121400.3249332228 34.043687036318445 34847 None 750261 THETA_20200927 702372053.6328623 65412.79023124333 0.7010977241966984 6.527250097738267e-05 79212150.19541821 7374.685400633865 73967 4425 70637 CHZ_20200418 32436336.84239733 4592.942066403384 0.006752265906392323 9.591383820003563e-07 30259877.209716834 4298.321492194347 20244 None 267652 VIB_20190826 3563136.325472803 352.9431389924611 0.01951639959311338 1.933202034642316e-06 1016481.7568582309 100.68786464223282 32370 1121 3938160 EOS_20190324 3799524640.9262023 949281.8018085255 3.665510178146952 0.0009152638536950611 1680722661.1220996 419670.01182599354 757 63544 96004 WABI_20190811 6664012.658613839 587.9780830675594 0.11538981023048489 1.018924773398071e-05 387983.1508141034 34.2600133613088 36292 7981 1513094 ANT_20211120 177050467.99216697 3046.0910363381568 4.665113953785335 8.018485402495621e-05 13314682.223122142 228.85525649023742 91561 3317 70894 BNT_20200314 11089087.104943935 2001.5656376197048 0.15943134322550861 2.872593798188081e-05 2498509.8828881676 450.1752195704918 None 5028 123445 REQ_20200719 35087837.39015154 3827.7090312563273 0.04546229360116828 4.959451614640164e-06 2886695.4477898297 314.9077018663172 39250 27884 405956 IDEX_20200901 68921373.50294621 5896.699207733907 0.12835712113485687 1.1009918036781549e-05 2753551.634287325 236.18773571353157 39955 1970 16691 BAL_20201031 83503740.4389784 6148.271173031509 10.16565682093214 0.0007491029699985009 18386633.569699872 1354.9032844562769 27021 None 62377 ETC_20200518 775981992.6103139 79982.48668707046 6.713042709393658 0.0006890813934974828 1565103330.3586063 160654.9564092482 231450 25492 359190 STX_20201014 150003722.1429232 13128.299047111695 0.168902750908768 1.4787490142159055e-05 655051.5103248612 57.3499703197104 44347 None 104624 BLZ_20200625 7410076.585979037 795.8048575561654 0.032009942736658886 3.4438049598209217e-06 1833861.8372300693 197.29690061102596 36187 None 529393 ADA_20200605 2717552835.086165 278428.59687459195 0.08759318165448617 8.95992827323215e-06 523154541.0113266 53513.6077345251 156432 80028 59755 BEAM_20200905 26019464.92684996 2480.4990960896994 0.3747121797482538 3.573706888732756e-05 9441942.474382345 900.4974134117621 15874 1551 271885 REQ_20210421 109876598.53755277 1944.6905583264845 0.141405585285848 2.5083488597401705e-06 2617735.2912133494 46.43517665545676 42725 27536 383830 MANA_20211125 6800738651.152918 118878.61876511609 5.1164383909851185 8.944987052950043e-05 6466176230.031782 113047.12035942472 307536 62235 6189 LTC_20200905 3307691534.5973773 315461.3237001072 50.58790095793095 0.004824671839099211 2557252365.8776436 243890.40148908208 135003 215269 123582 NEBL_20190509 19481090.554894634 3270.3678406085123 1.2888811093150838 0.00021637264035610866 472122.93224970246 79.25826880791324 40448 6187 646043 ZEC_20210111 1039329468.0011648 26960.73023824419 95.92371793964968 0.002501129293103178 2477064507.618981 64587.3485096762 71984 16633 167554 NANO_20190302 117691426.62411897 30783.078945742698 0.8826565837216508 0.00023099994351322769 1422891.7331620657 372.3848165273855 97062 44760 338911 DOGE_20210823 41187995246.74433 834879.6667476726 0.3141265615370456 6.374172546133186e-06 1919024710.6622868 38940.338461674975 2050964 2142735 21799 GRS_20200314 8762805.40348066 1578.416305289972 0.11919124574576069 2.1425485724048296e-05 8479621.039002996 1524.273015016794 37719 106866 3955402 LUN_20190131 4701039.426042653 1359.3210006897739 1.7389642451984324 0.0005028272268579402 3312159.71148973 957.7218664716899 31846 2265 1576477 COTI_20200719 15705075.60436879 1712.588542971689 0.030548370455525303 3.3325015783274857e-06 1585631.979024136 172.97554645140573 25398 1045 273018 DLT_20190513 7934890.376087426 1143.330074946891 0.09955531136770421 1.434482093797035e-05 6337239.77055308 913.1262661999808 15137 2677 2743184 ETH_20200713 26889793823.339703 2898231.7574930093 241.7715226007061 0.026021575881236995 5293860444.738397 569771.7819933061 464175 469546 16696 EOS_20210420 6356180157.855213 113540.5735348967 6.604928317841265 0.00011809217388078991 5983619980.192231 106983.55184699094 212074 82431 58571 APPC_20201224 2401532.198617713 102.69879884586445 0.021899931253389276 9.391318991264859e-07 263733.8182621124 11.309662973030816 24234 3132 524554 LRC_20200418 37744033.91023533 5361.422686354481 0.03304209984953745 4.693527569401114e-06 10937626.304776646 1553.6558160359975 34119 6809 593192 NAS_20200530 15701526.994867695 1667.0101627572826 0.3444142394417802 3.6740627124259224e-05 8758344.339309067 934.3024380117589 23427 4919 956871 HOT_20190528 379706712.018316 43110.72692114959 0.002135863688529269 2.4269919763397575e-07 37326567.90427031 4241.435504264098 21947 6258 277166 RVN_20210202 192128406.8064392 5754.907221319107 0.023896782311910753 7.154453295488257e-07 67947351.78918996 2034.2745252592968 36411 13141 133359 MTH_20200422 1810645.114704903 264.39458571006827 0.00520769381322259 7.607516221981404e-07 50523.14383618253 7.380534457370757 19078 1920 1304375 BTG_20211011 1179933727.5613317 21563.943897789413 67.27939276224295 0.0012296583698600148 64173927.76377468 1172.9001134178304 102506 None 280701 ALICE_20210703 68917065.5355781 2035.4755162370232 3.961758489007152 0.00011699946461055413 16751409.081187803 494.70605020714305 None None 50319 BEAM_20210731 48962952.19563092 1173.046108038226 0.5245448755054999 1.2557503257777636e-05 7696368.98070615 184.24959057151796 21931 2557 205663 NULS_20210813 48616099.50549309 1093.604599891065 0.5170715676683989 1.1630653836209472e-05 11929991.64524828 268.34506434075945 63841 5370 385574 FOR_20201130 19399585.52262222 1069.2730582646327 0.0219125771820831 1.2059928466861594e-06 1984235.1843322797 109.20547677086316 13547 None 731464 ALGO_20200229 216337513.9514736 24752.159362015387 0.35011135360677037 4.018222938330534e-05 130326786.632926 14957.586440213223 15540 801 415248 BTS_20201101 45453010.67825405 3293.998470366595 0.01676138317571744 1.2147269140504647e-06 11838740.509455258 857.9743434377556 13149 6914 90759 KNC_20210422 550357666.0594121 10157.196169852097 3.0430423475082033 5.626091353004208e-05 225306739.88074672 4165.555901825058 158017 10562 96867 ARK_20190929 25351607.251907405 3094.5042314229972 0.1775846685563051 2.1676594419550684e-05 587202.7666515156 71.67598598584675 62996 21787 89396 GXS_20200520 31761446.532235667 3256.1140500283377 0.48849450845526354 5.0091884045970386e-05 15320389.438965168 1571.004705339556 None None 497565 RVN_20201208 109529392.51953125 5704.127642219684 0.01433321077420496 7.465917687705101e-07 6083966.174835999 316.90310978927977 33891 10070 206201 DCR_20210304 1887108991.2679641 37244.35191669772 148.99402266606234 0.0029405751545546494 31142245.399738908 614.6294424492719 42995 10574 269159 TLM_20210430 557433440.35679 10401.632803842656 0.44386426956087044 8.281934202229529e-06 203236500.04150152 3792.130694593577 None None 35556 YOYO_20191024 2032389.3976354713 272.34493337093386 0.011620704857903515 1.5572016336687577e-06 481619.2584379673 64.538107216092 7532 None 1389635 YGG_20220112 386811835.7467284 9033.676388236741 4.395747266985085 0.00010272141649448074 48972255.40599434 1144.4014268098504 None None 47221 EOS_20210107 3238848179.8139987 88364.80042484046 3.38027451072909 9.158308555844906e-05 4887933524.151563 132430.674705715 192274 73904 95839 POE_20200523 3457311.950510666 377.6839412265206 0.0013709708729235776 1.5004283039838673e-07 278520.58420716226 30.482060271301147 None 10304 1075811 ALICE_20210610 99953385.5172918 2662.9529791070604 5.713373530760705 0.00015254516313118187 21166166.1997515 565.129561093637 77863 None 47479 TOMO_20200530 28245282.549163718 2994.812647014555 0.397597759736173 4.2414015923336635e-05 9536312.91807203 1017.2927740473621 23363 1555 201638 MTL_20190626 29580403.637633856 2505.995981397418 0.6366595677552109 5.3858234089959045e-05 2233836.29073482 188.97144401558714 33144 None 940825 WTC_20190811 45264632.42858054 3994.911701405279 1.5503047644590948 0.00013689631065942303 4948347.1920148255 436.9531010795128 56077 19996 698794 AION_20191020 23116296.377713654 2908.948020142369 0.06533814927309622 8.219491749451183e-06 1331634.621291375 167.51866872199412 68052 72558 187992 CELR_20190813 26394152.105474 2319.141552369973 0.008448953276263542 7.423820372905057e-07 6837803.202891945 600.8155219198217 17987 None 493170 PPT_20190810 22954492.82364813 1935.7300599766754 0.6351879611547996 5.355326494088103e-05 1726799.4747763274 145.5880076888515 24086 None 744473 CVC_20200107 13138628.657984633 1691.921501292684 0.01964681367506756 2.5339220426184473e-06 3784372.8312371257 488.0845257227269 87054 8108 121680 POA_20200506 2112725.4245914295 235.6101598130424 0.009629242573263171 1.0701359660411323e-06 38278.62603402276 4.254055720164963 17236 None 548176 WAN_20210806 121270217.07234785 2959.857157366729 0.687589393319536 1.6782392589196815e-05 8060910.249301733 196.74730550591002 123353 16653 308128 FTM_20200719 29023383.875593495 3164.9076996346207 0.012034606353566893 1.3126786275481707e-06 10895918.66146608 1188.4758947824355 None 2454 210821 POLY_20220112 440639658.5496289 10278.803151752612 0.49025720100601466 1.1460085708276475e-05 18140316.02960066 424.0418622059051 64599 8562 147396 DOGE_20200927 341467884.01826406 31801.33228886795 0.002701436006049749 2.515048591082695e-07 116122723.58037119 10811.075727111613 151986 167492 89647 ARK_20200207 31273326.144516043 3211.0180226906464 0.20785477905045677 2.1344823386285532e-05 849434.3353360833 87.2292951301073 62821 21753 83344 BLZ_20211216 74903378.22289811 1535.333397995074 0.23571146727586353 4.830398705938439e-06 12828056.59248234 262.88338314703975 75856 None 208169 NPXS_20190224 113667605.34138665 27624.267959530855 0.0006791192057945861 1.650441289845912e-07 2546772.819034404 618.9339044643405 55810 4011 178391 CHZ_20200407 33145556.35772129 4555.841648498287 0.006941418884172321 9.526208034635168e-07 2899214.300540565 397.88001595630374 19950 None 262392 OXT_20210210 0.0 0.0 0.4595311757313746 9.862339059563888e-06 44188727.07688443 948.367014162106 56613 2188 149953 YOYO_20190909 2169201.472701882 208.78238493551257 0.012457841984775894 1.1986098167975955e-06 478254.5037396858 46.01443362426482 7540 None 893009 EZ_20210825 0.0 0.0 6.568765796879417 0.0001367641292622794 3455907.1770587233 71.95326344352762 None None 158506 XEM_20190528 826825598.2214283 93753.65488840197 0.09187150725423632 1.0418959144139716e-05 70863133.21940699 8036.44254791179 217017 18454 179358 MBL_20201030 4954002.028506017 367.9963541859487 0.0014029867781249995 1.043372718088803e-07 1050900.0783237997 78.15330039145583 None None 597002 SYS_20201231 35535689.08405328 1230.2407105918323 0.05867482634063031 2.0334458062571696e-06 2390092.8894595574 82.83150825912453 60959 4491 313568 ARDR_20210722 135327380.020768 4205.313432408678 0.13546095090276875 4.209319422795294e-06 7887521.802223793 245.09719220598902 72175 6979 None ARPA_20210727 33096458.191514485 883.5178733048218 0.033572368825379686 8.997733985524296e-07 9267510.264414135 248.37863691130605 43159 None 718548 NAV_20201201 8378818.037800789 426.5264963178861 0.11906220285819841 6.064917035002791e-06 77742.40019655695 3.9601250100811143 48239 13691 1363170 AKRO_20201201 22566823.222880024 1147.828148528303 0.009818684240502846 5.001545736766006e-07 17347675.70939473 883.6743433423507 24247 None 133922 TNT_20190807 15469027.997138046 1353.1714038238745 0.03613174245582074 3.1552568068057214e-06 1299940.2189838463 113.51916474563866 17571 2544 649538 SYS_20210508 333312977.1917649 5816.945300369785 0.5444926504373667 9.500860836597393e-06 71119983.37314941 1240.973710456243 67057 5293 365678 GTO_20210408 60032906.578356035 1065.7798570531604 0.09038080787761739 1.6075151398871218e-06 73411699.55326942 1305.7021866469759 1333 None 454525 AGIX_20210809 191481261.0570525 5830.0 0.23598064960037432 5.364504052610545e-06 947474.9738578033 21.538771698504522 None None 210064 AST_20190623 11215159.163056063 1045.7904633202957 0.06517495968322001 6.077186844274193e-06 5239297.009206305 488.5340476212259 31917 3598 344733 TUSD_20210708 1532750191.0334575 45108.63042186531 1.0009268842333936 2.9464117568299478e-05 93061064.62596655 2739.4230211636823 12730 None 677408 ELF_20201014 44476922.797034964 3893.1508286582066 0.09629753399285833 8.430880059512975e-06 10263344.041442826 898.5590703635136 82633 33353 451670 REQ_20211028 145803355.4192821 2491.1211457544955 0.18867859468701634 3.2217171897290938e-06 16795501.007791393 286.78586670985726 47524 29243 245224 IRIS_20210422 157506954.09533384 2906.9219852844362 0.16113109691043764 2.973791195876403e-06 14254782.834906315 263.08235037422196 22410 None 536237 DLT_20210218 10867257.242558172 208.22443497598465 0.13190175705887355 2.5291280673555987e-06 2536228.002695352 48.63047748459481 None 2540 4991902 SNT_20211207 324616396.129185 6431.271505811862 0.08437657970773399 1.670585985440242e-06 30139033.01079896 596.7277452696567 None 6240 183737 MIR_20210722 212705844.16337532 6609.681002929367 2.745550780889351 8.501375810447243e-05 16494754.683892157 510.7467304737989 51042 None 15750 ANKR_20200719 33362223.414972853 3639.4629411992773 0.006461916255521315 7.049261809855356e-07 20725828.14156235 2260.9669178412173 None None 5287 ZEC_20200807 942430496.7704613 80095.34998787631 96.5797360279063 0.0082081254643184 692571748.3577813 58860.336933623905 71638 16064 214398 DUSK_20210527 53088628.1393871 1355.0112569143344 0.1451560077215455 3.7028845982797796e-06 10283624.165762037 262.33205318615217 27185 13600 286941 KMD_20210117 76822567.95069759 2116.925665965391 0.6206869816963753 1.71179926749818e-05 5598701.471026453 154.4071868697941 96716 8416 314092 BAT_20210708 922167670.3287412 27140.648062431857 0.6157549007209415 1.812293401932775e-05 104031707.19572029 3061.867251431755 207833 75975 27779 BCD_20210120 138166856.0627801 3815.691363366107 0.7265994815073117 2.0159862974019065e-05 4169030.059233233 115.67180663872082 27990 None 1665696 AGIX_20210725 191481261.0570525 5830.0 0.1872733186054701 5.481265124837683e-06 729128.8390244578 21.340725452074164 55814 None 182415 KMD_20210708 103464623.66748786 3045.1045164814723 0.8162800241503892 2.4024230699782986e-05 54798646.83040216 1612.7986653351763 113778 9413 230876 NKN_20211216 228015597.2961553 4673.753976099871 0.3516150819118594 7.1950028872230345e-06 6822802.742134369 139.61313935025007 37156 4587 115682 SC_20200711 152960362.11659238 16473.36456893852 0.0034423089892067875 3.7077122893876194e-07 8214141.063469909 884.7454386948797 106730 30132 182860 ARK_20210930 214054781.99004537 5153.188629592594 1.3387791906042674 3.219347841652981e-05 1000426.8435233854 24.057156116797874 74288 23784 161647 ICX_20210420 1306979860.7557292 23349.06611577221 2.1832197177265393 3.901300633307491e-05 184415183.31234336 3295.4038734917585 134944 31225 432969 MTH_20201018 1776326.344742687 156.394755 0.00511410714074424 4.5e-07 26557.566287271657 2.33685069561 18985 1895 2542776 VIBE_20190703 5615509.152326013 520.3013678922829 0.03007145806945822 2.780491914575367e-06 1393675.3283368046 128.863155655208 20486 None 1464833 GTO_20210428 54324505.083671734 986.0924477354603 0.08163785606498028 1.4823377327218104e-06 37588931.28736053 682.5202652993677 1938 None 321700 MATIC_20200907 71334309.87308635 6927.351439388607 0.01882855047996431 1.8304472535798358e-06 10895932.213514173 1059.2652480944928 51507 2266 59373 WAN_20190512 39356984.4412587 5403.425982160297 0.3703712522238308 5.0898522364331836e-05 3145803.756813185 432.3142304068183 109096 17115 543432 SRM_20210819 389216932.7311105 8639.578021543104 7.7050813118291535 0.0001710838629368269 1521123158.6492515 33775.06549928958 None None 38162 FTM_20191022 24532279.71016559 2987.4916748403434 0.011733578424977745 1.4288516590071816e-06 4837403.085105735 589.0727596558335 19142 2182 498287 EOS_20190513 5543518680.748951 798759.8225465841 5.324242550111602 0.0007659031723202091 4671015899.65283 671935.1836116572 None 64621 112167 BLZ_20200523 3593504.570569669 392.55305295416355 0.01610291872249502 1.7590766289149563e-06 510091.6448675464 55.72221449753804 35989 None 859932 MTL_20210204 30202023.09665715 806.1521262797787 0.46895217357703584 1.2502067958105016e-05 6234356.091294056 166.2053145715519 43102 3359 419249 ALGO_20220105 10917289569.928984 235636.49115221266 1.6746200751836664 3.646229855938756e-05 585237494.5096418 12742.654031911146 218478 62014 62056 ARK_20190224 89179900.89035307 21673.10089273553 0.6379032009096395 0.00015502753754023405 1267998.5451200993 308.15755709370336 62596 21763 148771 ANT_20201014 124925534.5369954 10935.0090393686 3.6083613423252614 0.0003159131955630729 12496372.210308837 1094.061404438023 76056 2680 95199 NAS_20191030 26535959.02947578 2819.8274074403525 0.5832078907577094 6.19742287349528e-05 7927563.466081908 842.4176684569675 24011 5065 1447881 OMG_20200207 156060772.97893777 16023.685883449782 1.112904179174309 0.0001142852873475102 124441675.27924088 12779.045027798478 283252 42931 398546 SRM_20200914 117539582.2760005 11386.83577259191 2.3770128782575832 0.00023020868775539075 370443430.1649763 35876.665509863386 None None 111486 POWR_20190920 23854315.890280392 2327.419473576695 0.055691070259112394 5.430476025377487e-06 5776842.328414065 563.3040202114879 83840 13024 385730 MATIC_20190510 6796234.573244426 1099.4175759700076 0.003143762979229793 5.091777274711188e-07 3816858.1272905534 618.1951884329437 8746 78 593763 NULS_20190225 16065610.71650373 4274.9765232506015 0.40095463253218544 0.00010687186091772241 6319042.808029083 1684.2999414867922 19549 None 499055 EVX_20200423 3304686.215380726 464.5166494896024 0.15159111079728102 2.1308103187596444e-05 572158.6566565378 80.42434435365813 16702 2855 1064652 BLZ_20190227 9141618.401345711 2399.872392867152 0.04455909085120973 1.1697724329571196e-05 1244207.099229109 326.63125251538685 34774 None 1029822 COS_20200725 20233178.955737885 2121.115648861892 0.010261426467722646 1.0757633783753824e-06 4898118.037350902 513.4974191079907 12507 None 262147 SKY_20210304 46740614.3536627 919.4938537081488 2.329465871370971 4.5974901045107515e-05 4458143.909026418 87.98700491014738 18327 4171 421805 ADX_20190130 8049147.868317174 2358.1018517753855 0.09236037115196365 2.705586559553962e-05 282085.6195111431 82.63360695433663 54541 3954 800583 ENJ_20210325 2010086722.1782215 38172.37351267018 2.124169675347403 4.0378079591799174e-05 1045169036.4333206 19867.489414698775 120747 24569 32417 BRD_20190616 27612992.36088466 3130.4667420558512 0.4606871665226259 5.2190578016152066e-05 264353.75459344 29.9482517759566 167 None None STORM_20200422 7738348.757890533 1129.971576045669 0.0010169044865028052 1.485516939884864e-07 138878.60879357607 20.287699453465944 26053 2509 799916 GVT_20200626 5418193.744538414 585.05639721298 1.2174328923371531 0.00013156953276572303 165804.03180576104 17.91865418838686 20351 5529 238169 MIR_20210731 230453840.79769197 5520.411888041666 2.9576979102222736 7.078923042657091e-05 15619981.812365388 373.84700038256574 51997 None 15700 ALICE_20210408 214480780.25723478 3810.1254744056077 12.22848182130252 0.00021761564884724129 56415271.530063376 1003.9550369630732 50071 None 93812 CLV_20211007 137180662.28256503 2471.021621738718 1.0648262530757089 1.919277724974067e-05 18390668.691546995 331.47943774968627 None None 89370 VIB_20190922 3968993.0013955142 397.27332587675136 0.0218689902162044 2.1896040266108706e-06 696790.0687406677 69.76519378048503 32234 1118 4575381 PPT_20200901 14008060.909997331 1198.4862963640533 0.3861433156881011 3.307397276698637e-05 1737766.4219029602 148.84328428936448 None None 1237047 CMT_20200526 8215377.801059544 923.4038042669296 0.010277448292818857 1.1564270119356636e-06 4152982.1070974283 467.29699356295293 284790 1634 1222646 STEEM_20210511 390024063.57159483 6980.24620171294 1.0195427723534918 1.824671918710465e-05 10792368.389699118 193.1506168358648 13769 3934 174026 KMD_20200127 68647293.24818558 7988.070973619623 0.5813713246618085 6.765067031318864e-05 1925869.787517362 224.10183738810488 99343 8413 193331 ZIL_20190801 100629674.2220219 10010.866841331797 0.010962376527360011 1.0893085303509615e-06 22483138.478693057 2234.1026576470176 65777 10617 160236 OG_20210115 0.0 0.0 4.607034645420146 0.00011743867636304447 13643394.345955092 347.7860047527144 616758 None 397078 QLC_20210115 3708452.333474544 94.95070865997457 0.015598099939201136 3.97613725883151e-07 720813.1930744537 18.374367421750424 27354 5595 940522 CRV_20210823 913691083.5268749 18520.496148341517 2.4347468082703916 4.9412632101580795e-05 275119703.06697273 5583.491731200473 None None 12354 OCEAN_20210722 162136012.19949055 5038.253397524829 0.37495066388945886 1.160968660111138e-05 14979305.889938544 463.80781162088607 117846 3270 115494 LIT_20210616 78876591.4429944 1953.0409520824899 3.5516653850391338 8.799318447373693e-05 6532329.118132941 161.83969457153742 51706 None 250622 LUNA_20210718 2728162972.895907 86308.4596641224 6.4931542174385 0.00020561620273478666 143832754.2610536 4554.696187658145 90917 None 20667 POLY_20190701 40100809.40379125 3695.7527533045113 0.08527221800129398 7.859384881986683e-06 8537702.657537544 786.9044897193816 35181 5095 354740 REQ_20190810 8690174.262062378 732.6052229758658 0.011906547445408686 1.003729543337974e-06 255269.48037532577 21.51937999995539 41380 29611 541329 TFUEL_20211111 1928303684.211713 29729.20983213014 0.3478362611824708 5.356232103430585e-06 33868028.525895745 521.5241822506329 213391 25644 30625 SYS_20190228 27665543.298286743 7247.4960850810385 0.05058035558574282 1.3266448258972699e-05 1113639.2355118105 292.09041980803573 62546 4630 882608 INJ_20210203 160095308.34546012 4494.833333522274 11.819874109300462 0.0003322246369509152 41247664.83714558 1159.3601039127088 44179 2200 139911 VIB_20191022 4442242.765774091 540.9489453533153 0.024359115024015852 2.9660389117775867e-06 463229.6824030358 56.40423561131764 32092 1123 None GRS_20190708 26991499.3358219 2362.835058204373 0.3698898547553056 3.236843975666469e-05 729990.0041837589 63.880198847358294 38650 107026 None EGLD_20201130 128857174.41940704 7102.046507785302 8.919560581176109 0.0004909019220832531 8298586.127835581 456.72562495121804 None 2828 50672 CMT_20190811 25405835.97402627 2242.1455576539424 0.0317054807364212 2.7996839331225514e-06 4284238.418999991 378.3104115990305 290526 1647 586149 HBAR_20200531 200368226.0871139 20670.92570631256 0.04557099404776262 4.702419564465761e-06 13978107.621734183 1442.3851866333814 None 6511 137425 WAN_20210310 153144409.3709149 2801.882882341445 0.9309353192714022 1.7024460156632255e-05 9553084.357506476 174.70183013853554 106636 15898 322886 LIT_20210819 128000734.42251673 2841.6490564837095 4.6031894801802995 0.00010219217545218342 24116939.388317663 535.4032268174411 53787 None 606433 AE_20190509 125551268.4039205 21092.472224773064 0.47228001436007866 7.928412604634947e-05 42269599.175475344 7096.019579608827 992 6354 421011 KNC_20200612 189575047.9954939 20431.726674437712 1.0553101723028144 0.0001134885760011444 156186867.96985877 16796.41275256449 108246 7900 97409 OM_20210722 34183662.71098931 1062.2327135394946 0.10699549674288271 3.3130289709742147e-06 8403017.426911056 260.19263451673635 46389 None 86802 FUN_20190421 33378428.632306654 6285.540317767376 0.005552802148530032 1.0454720189029137e-06 1210176.6966927773 227.84998285155712 36604 17742 481860 REP_20200418 109116453.2394444 15499.65298472909 9.919677567222218 0.001409059362248099 20667813.30804509 2935.798632722273 131013 10121 257312 AION_20210428 169505342.6384198 3076.8845377035977 0.3442201209596868 6.2492117146582295e-06 21824691.102004845 396.2206361533956 72686 73143 244178 DENT_20190401 46138114.924201325 11243.766886142756 0.0009784046591666566 2.3843527040623404e-07 4823615.282960869 1175.505455286791 43952 8872 242433 MLN_20210731 110806937.1210955 2655.88843378675 78.12496518031142 0.0018698346924149799 18617799.890969943 445.5964626957503 27285 389 108982 STORJ_20210421 279205545.8620252 4941.818027408795 1.9236914614268488 3.411772611200399e-05 167366056.3206327 2968.3290613340996 170 12644 56587 BAT_20211120 1662328415.2560768 28596.223704225293 1.1209808108602004 1.921757217077644e-05 311179329.7410985 5334.713288057516 229200 83340 24891 FLM_20210511 0.0 0.0 0.9659112143002382 1.7286877181549907e-05 147357473.46683964 2637.2512378896063 None None 99101 AVA_20210110 40561301.69327033 1002.512085097704 1.0443817329565785 2.5925908497917046e-05 4059748.3390882276 100.77987831691432 None 9046 96594 RCN_20201130 20937142.231680818 1154.2137775503513 0.040925902266236124 2.2524208342601545e-06 258059.61586149753 14.202713271080352 None 1130 1886227 BAND_20210821 299990496.3647697 6105.796825529966 8.528364025940768 0.00017346521752736324 56587079.62969734 1150.9698750365992 None 5592 341497 ATM_20220105 28841703.087913513 645.7254437455765 7.171397257771721 0.00015586299493185334 1241778.2078243182 26.98878106394934 5194838 None 79432 WABI_20190221 7902856.949099001 1990.7589396386118 0.15059223143758765 3.7934740930453465e-05 896284.9487563312 225.77749865554975 34647 8017 1817938 STEEM_20210310 178619206.39536214 3268.1736738897976 0.47249645016932323 8.63750267623321e-06 15198088.975242829 277.8296729007114 12650 3899 179872 POWR_20210220 120475012.17795803 2156.8444051048923 0.28159110879971605 5.033134967326124e-06 39183799.99565324 700.3678303319867 82098 12749 332813 POLY_20190712 31487843.13138036 2773.027818102675 0.06581812267970388 5.7840434784041495e-06 4458516.739553104 391.8108511885604 35188 5093 354740 RARE_20220115 115548724.40093447 2680.8617922627336 0.797689698801391 1.8495286879915113e-05 10567267.546370082 245.01337437427932 None 3253 9003 CMT_20200322 5726859.455806591 929.4372915758393 0.007386068550776276 1.1986183510864524e-06 9655866.783408072 1566.9634045059918 286281 1637 911838 SNM_20190706 8593856.180509586 780.0687820835127 0.02092991971940829 1.8998196667117596e-06 542351.2847432437 49.22950736720424 31280 9988 14838367 STMX_20210729 180293943.4348549 4509.04284783453 0.01941209812910813 4.851965616857521e-07 41364343.538158804 1033.8829490568312 None 4670 85845 REP_20190923 116501492.36245696 11599.463222222272 10.591044760223356 0.0010544966565656606 9891095.68279489 984.8062739240363 125685 10053 187186 ALICE_20210806 219065460.044307 5346.785283874133 12.581166809957601 0.0003071824199381701 133218137.71511206 3252.660944817601 None None 36136 ORN_20210722 120967525.77706926 3758.9787917906897 4.173452674730697 0.000129687037839941 3961767.5810249695 123.10907592275271 None None 85178 ONE_20190903 24179118.05930435 2340.3397596296527 0.00893453010134907 8.640331002565167e-07 4850580.119738648 469.0858647694948 70884 None 133162 BAKE_20210718 330734386.06652164 10464.409295877313 1.8851953472193859 5.964388755411426e-05 62392315.56367004 1973.9706334461305 None None 8420 RVN_20200914 120148728.07039471 11639.72988108843 0.017101469251013354 1.6562412559795686e-06 11666811.764513634 1129.9061318366125 33666 9014 265141 STORJ_20200511 14881660.24816881 1699.5791430735687 0.10372186339059276 1.1831064404559887e-05 2107127.8382971007 240.3501474867938 81510 8070 105636 SNGLS_20200430 5713963.602608262 651.6731523149026 0.008861881051895885 1.0106907152668158e-06 783578.2796126185 89.36649987191937 8849 2125 2196057 BADGER_20210602 111792231.71530448 3047.186979745174 12.641875855915782 0.00034463513180312466 8815628.946750836 240.32631538374093 34191 None None ANKR_20200331 5910493.611445472 920.1009098561623 0.001479866996156294 2.3083037343466336e-07 3182037.3669226784 496.33573530431005 None None 5652 STEEM_20200903 77401071.90315002 6784.6231271005145 0.21501529344711948 1.883874390410039e-05 6277537.653399406 550.011686632996 11712 3861 161191 ALGO_20191203 134314193.8255503 18378.324273517996 0.2790094083805906 3.818885205343113e-05 134692281.09402063 18435.735286826766 13245 690 433100 EVX_20210203 8350462.381052987 234.4480226126476 0.3801626680217685 1.0701055512891631e-05 1203260.7880021543 33.87013395055266 16853 2811 1099607 DASH_20200407 687437688.2403295 94342.01477104632 72.98745673413892 0.010016593269622944 579985993.9337568 79595.64647489812 315661 34596 60751 GAS_20211021 123387146.55194627 1861.3861152649388 8.869211367619519 0.00013385336928290582 5606094.208017004 84.60668791816877 421142 114401 97523 WTC_20210127 10332926.467111873 317.0645624400536 0.3517008445017752 1.0797729748047292e-05 2428583.131859742 74.56105021765292 54824 19063 903762 HARD_20210725 47705204.729269415 1397.3020896140865 0.6512160648630747 1.906056622501765e-05 10211482.103167776 298.8818018854255 35117 None None GRS_20190603 31873392.95561815 3646.6526159707005 0.43850891808218234 5.014697521670895e-05 2274999.82102486 260.1642861492957 38683 107042 6997430 ENJ_20210124 393393854.5588713 12293.415917929451 0.42795226431014954 1.3353405456023435e-05 230418435.64686412 7189.752344680484 74718 16352 72441 SC_20200208 89065412.32614967 9092.965300912514 0.0021369477148766303 2.1809608366246156e-07 5668418.501172849 578.5166698554485 107415 30143 238569 MFT_20190515 26381928.214006882 3301.481861489176 0.003976063986534289 4.974260224018293e-07 4324176.623178989 540.9767008568106 18040 1984 690074 WAN_20190703 36078123.87225862 3342.7952288080596 0.340214152609932 3.145716108514152e-05 3078216.8800643478 284.6206235347515 108472 16981 459878 QTUM_20210128 321028256.85389775 10612.076141007787 3.1239297866189673 0.00010273678999989645 383634983.39116424 12616.617343352327 190797 15049 257313 AION_20200520 36434393.36707474 3735.1793995988223 0.08686843239377671 8.898477927671299e-06 4946762.271550251 506.7278604417473 504 72555 368589 WTC_20190725 53979393.94424361 5494.662059510765 1.8509928047964854 0.0001885203623726359 11408755.43647157 1161.9616799865823 56147 20043 613904 PIVX_20190531 42155953.90832327 5071.9028650018045 0.697303533615588 8.391525633632474e-05 3909678.442272158 470.50051069544276 62977 8605 304046 SXP_20220105 366634703.5631732 7916.218831315224 1.8755007038176683 4.0836167931070024e-05 165134597.81360728 3595.5540586146103 None None 155016 NULS_20210616 58281886.88392433 1443.151531170325 0.5155385862803079 1.2772813474989397e-05 32355400.60976672 801.6267024334938 54540 5364 234427 PIVX_20211204 54056992.77997402 1006.7937626221009 0.7987153359484565 1.488712372179876e-05 2025802.8816638864 37.758606574762126 68783 10382 257818 EVX_20190908 8814485.72779138 841.9765363492791 0.4043342076968523 3.862277689675592e-05 1284741.9803250155 122.72101131050493 18290 2910 505983 CTXC_20210401 3253384.018363992 55.31357458106145 0.3241504688169886 5.5146994651835546e-06 17660408.89083095 300.4525886407851 18720 20385 360598 THETA_20191220 105703587.3792613 14799.62386178306 0.10586768284643049 1.481569821631473e-05 6199739.461523758 867.6251941298684 None 4016 533259 NCASH_20190227 4917724.2291042125 1293.8800108780556 0.001694929949934126 4.4594529499629584e-07 419086.95124764484 110.26405788067689 60282 59604 682979 WING_20210107 11600290.642826764 316.97103736673427 13.608125861556992 0.00036872279234246696 3758102.4862965974 101.82872033621112 7138 None 329521 KMD_20210420 346422649.1079281 6190.230209147815 2.7597930637171526 4.934345183961108e-05 20454095.946991257 365.70702041107336 106614 8988 203738 UNFI_20210620 19778548.87441464 556.1102739196419 8.099996288773418 0.00022750488365487267 3370062.574414673 94.6550673071917 None None 178336 C98_20210916 748008766.9014843 15521.068790001471 4.030811622096436 8.36301108899605e-05 122372250.37943764 2538.9439717263813 None None 27762 ICP_20210813 8751193461.904013 196835.80135059843 64.08224091343362 0.0014412695378822214 827870415.0177082 18619.57998770306 249746 22264 21737 GO_20200621 14211129.931694988 1519.0498712998094 0.014441781976506396 1.543513481713705e-06 1556533.1537922819 166.35965779854084 11102 680 961544 TFUEL_20200718 0.0 0.0 0.008453585347484869 9.235083641545162e-07 1804983.9419628766 197.18470909662628 71607 4291 67592 WTC_20190124 28173077.310715545 7936.227003166709 1.0836003336739013 0.0003051029044269247 1882456.6625900052 530.0321321116063 54654 20459 575473 SYS_20220115 703943490.8390329 16321.24473513418 1.1152452683255072 2.585746043669745e-05 25301424.919715833 586.6248550293535 123340 7119 89068 PIVX_20190826 20634495.072512712 2042.9319598871764 0.3388342404505633 3.356401696748726e-05 345956.49034376885 34.26952806325007 63147 8602 276830 NEAR_20210902 2445865992.311003 50289.99035040983 5.48953446652111 0.00011282515113873796 119051189.32297137 2446.831969182081 111329 None 6415147 REQ_20191026 10292421.509185484 1188.8075750634846 0.013336256602701033 1.5403802553298325e-06 769947.6654585843 88.9314158269492 40564 29068 915310 AION_20190813 31848805.616412386 2798.418687715965 0.09479488161373661 8.330188188950178e-06 1072706.4929208448 94.26507850867452 67535 72594 199411 WAN_20190316 45493461.0096604 11592.389697369108 0.4285451008063467 0.00010919833730298556 10146582.723513529 2585.468742099937 108811 17228 498965 AMB_20210814 6555934.515444339 137.60822252878017 0.046346585571987675 9.708291798052384e-07 2378020.039185861 49.812757848522104 891 71 582804 NANO_20200312 90778923.61879936 11445.427160274528 0.6820703284435633 8.592097702495309e-05 3140871.6248188056 395.658259068681 None 49298 295755 GAS_20190312 34346351.34902337 8883.60397820067 2.466568660952811 0.0006379067296317922 2806313.355457294 725.7718802809488 317317 97835 156064 WTC_20190712 71517386.02387299 6298.29423675401 2.449129888406813 0.00021522755712344852 15645615.693125607 1374.924074571735 56067 20069 771082 SKY_20190804 17709201.830333855 1641.8902825918112 1.1049560549238984 0.00010238723646113378 641906.6321087732 59.48023528611508 16363 3798 513361 DUSK_20210707 43282546.132252716 1267.1922154235474 0.1200652320241047 3.515469211108563e-06 7413508.95646662 217.06502409876396 28135 13640 479861 DENT_20190430 51486895.86090847 9892.36224994175 0.0008276260097423578 1.5894923015680564e-07 1838034.6901985197 353.0026794342844 45002 9142 247980 CFX_20211230 230459310.8667062 4969.002572939241 0.19721443627621668 4.2382357213764975e-06 7949312.752344923 170.83466050220883 None 2230 165568 MFT_20190227 16498752.718289996 4331.751104146055 0.0028947558046059883 7.597931692548791e-07 1401194.316624102 367.77467338550116 16001 1854 701840 POA_20190821 3097853.535916505 288.21074830413505 0.014070431981987508 1.3090514717608498e-06 147537.86945823184 13.726278297780977 17731 None 702581 FTM_20200605 14028021.906234983 1435.2457598143485 0.006676396327086443 6.829302359437855e-07 2724966.0131239807 278.73744923313654 22051 2374 340286 CTXC_20211221 79702726.95743254 1689.3802327914502 0.423448670100445 8.984765328984224e-06 44132870.01333876 936.4145134057344 24159 20840 309614 QSP_20210219 45056936.11278756 871.76931267546 0.06315885235168327 1.2216307132564693e-06 1268997.6151546217 24.545196817224667 59831 8218 198547 BTG_20190405 269141189.9113943 54890.07179245504 15.316035651696403 0.0031252291972828313 7484560.472340504 1527.220714871915 73271 None 434062 AION_20210112 36433219.781595856 1027.6283377047255 0.07478689794586063 2.1039039112812206e-06 2292205.944788265 64.48430387088973 67900 72535 529270 CTSI_20210117 10917323.974885562 300.8907541911509 0.05248494421109244 1.4484024394703193e-06 2963753.8919547554 81.78932895178113 None 177 602670 POWR_20210806 134461745.45761833 3280.302221783023 0.31350576068584685 7.655379730781352e-06 11083074.797482869 270.6334517546692 91839 14044 171172 TROY_20210318 38446896.01140461 653.6041903928482 0.020036059871724694 3.400018638310867e-07 61036397.12592203 1035.756976032709 12726 None 609547 BTCST_20210430 544315903.2591804 10154.417579530955 74.60552008977324 0.0013916087028795106 29188230.3901892 544.4449068080072 54777 None 111287 CRV_20201226 81921181.70888059 3317.2075759799814 0.48890023396794224 1.9800067249651303e-05 46326037.728869446 1876.1673624022935 50372 None 24285 REN_20210201 542302823.8923885 16406.596612178033 0.6263029747076156 1.8891876990503227e-05 160258227.01393858 4834.048110464219 38511 1007 83739 STEEM_20190410 148330779.52529678 28678.313373674737 0.4843537862105977 9.36008188988085e-05 1946654.9362937203 376.1888547956464 5137 3704 263510 UNI_20211125 9416239526.669228 164698.6946345434 20.803458368586636 0.00036370352097167254 211810003.99384075 3703.0402765104122 729062 57812 2749 ADX_20200330 4711946.758321276 796.8497607001628 0.05108200264685047 8.654028007206953e-06 262195.5678590252 44.41971085793828 52138 3769 39887 STORJ_20200506 15296388.262330435 1705.5741470892065 0.10653608321026005 1.1862999374930493e-05 1783418.601320008 198.58711823433316 81566 8063 105636 NANO_20190902 129241564.69760223 13271.994440088733 0.9699463518252047 9.959418049188895e-05 841091.4980455631 86.36335227088826 98674 47551 229089 QSP_20191220 6677100.331974022 934.8648976883277 0.009360661579464958 1.3099817936657597e-06 116434.7553111081 16.294511697985936 55605 8388 427873 NEO_20210112 1685724533.5768344 47615.67712266909 23.783042682314793 0.0006690642063762695 2142388264.1838026 60269.63508718127 328503 101386 181319 XVS_20210401 611555522.1810566 10397.58042569853 66.73454128003597 0.001135682306761835 160536137.52098337 2731.989273941516 45313 None 12944 ADA_20190804 1791323846.9824636 166017.33913254112 0.05758269576495487 5.33565092218198e-06 96829769.24825919 8972.31087778593 154275 74820 93580 ATOM_20190510 929140013.4675716 150401.65771471054 3.8895538220050003 0.000629975854846453 70713721.85267979 11453.225591451652 23371 4009 164771 PSG_20211007 77966271.89634572 1404.564610921986 24.964317341898784 0.00045001186835455075 27608697.76738518 497.6800084288679 10481581 None 9531 REQ_20191020 9440317.720252337 1187.5851164606283 0.012933851688844904 1.6270691537456853e-06 61670.47461110695 7.758100939345927 40627 29108 915310 BCPT_20190528 6012464.851931262 681.7614406988824 0.07152536865252289 8.127343220807713e-06 3771393.7983911936 428.53902605183936 10822 2260 1042603 BTG_20200520 160534092.66747928 16456.460687860086 9.186138497172008 0.000940976378840318 44140685.0697587 4521.523598763427 74866 None 210192 COS_20210203 28811319.216477137 808.9081192068161 0.009539472904908527 2.685281636293805e-07 2240680.580519158 63.073279578919596 None None 369084 LOOM_20190816 17989876.70489072 1746.6697427856916 0.029837667926247324 2.8961771060378184e-06 1342541.7088648477 130.31308514881928 20805 None 468578 XTZ_20200411 1344907136.7275612 196146.31239763185 1.9019498268995672 0.00027714868334567704 215475665.35083914 31398.723615316616 58977 23226 99470 POWR_20211221 184049454.29778478 3901.115078694756 0.4292045949300362 9.10379156123546e-06 11452449.836321024 242.91612300275372 102029 15503 175165 KMD_20190227 111219316.4336819 29197.474160971065 0.9941159314761587 0.0002609769161779763 2556945.5805399916 671.2534738814171 95063 8291 262903 OMG_20200322 73804013.45691796 11983.425090331411 0.5240919322635564 8.505014587245259e-05 146565330.99114826 23784.763728003407 281005 42847 453059 XZC_20190213 33967442.46138071 9348.191811912551 5.009957435148553 0.001378747543434142 1107068.7742763755 304.66693034906797 58717 3932 286073 TOMO_20200308 36900224.89636385 4151.402244830628 0.5253846547028816 5.902911932719145e-05 13902533.64898303 1562.0066371756031 22069 1508 211808 NKN_20210823 288286498.7528823 5842.940404508173 0.44336974179048483 8.997323750985604e-06 53290776.36023886 1081.4323185839228 30003 3380 164254 THETA_20190228 101976634.12870349 26715.42647244137 0.144172580666992 3.7814247441161555e-05 53424099.591438934 14012.318513865988 None 3860 509909 WAVES_20200718 146574905.6068817 16009.76541624932 1.4659139130778491 0.0001601282740038975 57493831.71773667 6280.30606483697 266 56873 125564 EPS_20211207 173335701.09847003 3434.134732125773 0.3485600755995948 6.9065881266643885e-06 10315881.06070224 204.40534254351346 28204 None 84383 MITH_20210523 24911312.798685208 662.726748382894 0.04015236506072041 1.0691310762899975e-06 10533591.6539875 280.4763845217175 None 2706 239829 DOGE_20210430 39626179176.75362 739373.3425587782 0.3062544186957452 5.714312051496143e-06 5635975307.340045 105160.02269558546 1010119 1578371 11474 UMA_20210430 1498225788.801487 27956.691120622254 25.093969584651514 0.00046815364728563266 72106334.34743206 1345.2173560373908 36378 None 123733 WABI_20190608 17739819.595484205 2207.527929306908 0.3141132830299422 3.91256121437312e-05 1105403.956315394 137.6879259602002 36280 8027 932643 ARDR_20191113 54907206.116850704 6238.75190887728 0.05496869122172579 6.2450064372635194e-06 5645324.522772623 641.3666980526988 66117 6487 1381120 NULS_20211021 56381424.62844277 850.592900414121 0.5917556819818591 8.960749596179676e-06 13401503.382620303 202.93428467273566 73203 5511 212195 GAS_20190513 34143379.83678446 4906.689624298868 2.4501682835575074 0.0003521097018569211 1438299.4987871747 206.69568335265106 320918 97546 218328 TKO_20210519 221713440.25770584 5201.570354851672 2.964144775146481 6.928342483695402e-05 97568421.20774451 2280.5479792642655 None None 25911 COTI_20200319 3755849.4914413365 697.8853419974188 0.012001487516281856 2.227547202827731e-06 1687871.3029420474 313.2789160094524 22553 902 294374 XTZ_20201224 1402058456.1627774 59957.438606270916 1.8283269901797583 7.84168353047449e-05 167181060.5348013 7170.385691643247 77100 31105 166360 MITH_20210617 32482742.02719717 849.352581448777 0.05267710004129915 1.3754985694215118e-06 11383731.802627014 297.2507369789799 32274 2736 253945 LOOM_20201124 22550062.638092916 1231.3046671071638 0.027006337218051662 1.4715380758333523e-06 11427001.496799951 622.6415548090735 22609 None 345507 HIVE_20211216 574187915.0919461 11769.493485172095 1.5594062088291452 3.195445131390471e-05 56089916.28395083 1149.3621667969592 None 199 74607 XZC_20190123 35108519.72826602 9829.61515805335 5.2972896198217985 0.0014831248582000732 675811.2508279348 189.2123212979835 58885 3928 298501 ADA_20210506 47368113642.07222 826809.8325355181 1.4802017889602712 2.582730956844233e-05 5144102153.54389 89756.89650030198 374252 380190 6677 ATOM_20190618 1682915463.0979176 180551.3398767984 7.017552561131561 0.0007529324758513521 121944910.86896674 13083.804197861036 25924 5288 113612 LUNA_20201031 138509665.23343822 10198.285459599361 0.3032660250893193 2.2345551485377053e-05 2970525.1376505177 218.8772131082815 14763 None 186629 NAS_20200629 16103285.566678679 1766.2171431889117 0.3542548468012403 3.882593004125431e-05 4446783.583747405 487.3624451157978 23418 4911 725695 FET_20190723 28879375.511269093 2793.310596573929 0.09821841878274915 9.500346688354002e-06 4123924.102145926 398.8937021426225 15992 290 438146 SLP_20210813 190683019.21896896 4289.351523173474 0.1902752567102991 4.279468498608404e-06 103029547.33875476 2317.2308890030204 None 44594 1596 RLC_20190920 17141912.140658278 1674.1679915597638 0.2447671629569177 2.3905229839290733e-05 178929.52673356314 17.47518502861519 24780 3308 1199907 NANO_20211120 747592870.2140238 12860.474957970815 5.615383263308799 9.651826123073465e-05 31478340.120460052 541.0556167570002 143794 116880 80360 TROY_20200208 6630147.415093972 676.6703627188506 0.00569513106206932 5.809208648011297e-07 3857601.110216016 393.48716448857897 7790 None 301567 APPC_20191220 2747743.9104459346 384.66715580181204 0.025036758415590513 3.503779879061308e-06 26307.041905216596 3.681550246046362 25037 3258 1208747 BTS_20190614 169094670.67954245 20565.627147993553 0.06270727579516254 7.622040329389895e-06 14598476.306542289 1774.4380336275415 13721 7183 176184 WRX_20220115 494323171.1231659 11466.929053166741 1.0817381756043551 2.508125392219701e-05 5072874.382981376 117.6200058243115 530799 None 603 LTO_20210718 46327190.93590033 1465.5048528317832 0.16322784859135392 5.16451596237068e-06 2833752.1462277477 89.65968931707515 10932 4326 391514 ORN_20201229 37092452.763345614 1366.8873252561589 2.2428306613601343 8.260925606194952e-05 4362397.01562549 160.67836877579794 None None 150714 RENBTC_20201208 318133167.4299253 16567.90156962067 19214.545957748185 1.0013575342941345 6024398.8532968955 313.9588723359439 29156 2030 109905 WING_20201030 4909596.165823628 364.7169914452077 7.882916056661197 0.0005857954217885779 1661933.045896111 123.50160303716792 6587 None 247234 UTK_20201031 40980916.15408771 3017.4170551751968 0.09094250095303877 6.714844409673988e-06 2622460.9923895807 193.63243092939013 50734 3051 129528 UNFI_20210218 61862315.0963666 1185.8025463015265 25.269760806899704 0.00048470773415188644 69583381.30638449 1334.7021107708827 14718 None 96925 SKY_20210117 10294388.17368701 283.46069735755873 0.5428780674804881 1.4998683825568181e-05 604038.3777068978 16.68842634918294 17244 3822 762023 WRX_20210902 664995615.3631644 13673.121579355115 1.4758977353444416 3.03337898816556e-05 16651339.502880374 342.23118691255814 322306 None 1532 YFI_20211111 1172079552.292794 18070.35947983004 33005.203235212735 0.5082377798902309 239923955.09907585 3694.5210551511937 None 7508 29528 DGD_20191011 30102642.777742967 3516.3451170389644 15.050718060273795 0.0017577533450897922 1986054.0258429705 231.9486082640115 17292 3360 556657 REP_20190626 197889480.01693463 16764.823352590698 18.407132353883053 0.0015569266907421574 30693346.75413328 2596.1290368857135 125743 10006 269417 GO_20190511 12781744.444905806 2005.8242855338442 0.017895572299875023 2.8086153859075356e-06 953626.8254737101 149.66668456075737 9548 654 839463 EVX_20200418 3334131.0474074073 470.9673618769 0.1521283524117159 2.1609359555940945e-05 348604.3040772377 49.51815772753647 16710 2859 1064652 SNGLS_20190507 9266681.273399884 1620.5231907844382 0.01571767672026748 2.7486495843512537e-06 435708.849227721 76.19516348644926 3452 2181 None IOST_20201226 106781387.26270969 4323.9892727677525 0.005805644337556249 2.3512393802353663e-07 40404589.59328323 1636.353463463523 None 52144 676530 MANA_20190929 37661483.65253952 4588.10926642671 0.028372965160083315 3.456535742669885e-06 9229514.438665064 1124.3853564383644 45802 6395 114138 OCEAN_20210823 419596698.4022356 8505.324020241154 0.964987894627351 1.9581277416297458e-05 53383732.017895795 1083.2484759442186 120171 3407 157087 EGLD_20210203 1100868534.253919 30908.04308009701 64.20443477172861 0.0018078259486723118 107238474.47966576 3019.549935291076 134166 4332 47707 SUPER_20210718 98229508.8090703 3107.781663493896 0.45418573326402883 1.4369511878574539e-05 15320531.382598564 484.71042035207773 127524 None None AUDIO_20210428 375567907.90435326 6817.318082471928 2.4287438188427464 4.4074374158611536e-05 56093917.52665032 1017.9353993250276 None 4840 38976 GAS_20190515 38395465.72736784 4807.205079705672 2.7742945484452326 0.00034712693970850525 1816109.1464260272 227.23629346739412 321020 97555 218328 BCPT_20190515 3497712.355647638 437.47829907171166 0.041692300787995615 5.214687480995353e-06 486742.62532257603 60.87960191123036 10748 1970 1145743 FTM_20190901 34573381.29712122 3601.8393582626677 0.01674294595214213 1.7445753045731878e-06 6749252.120542292 703.2560821430493 None 2116 342679 WNXM_20210422 153885816.72248983 2840.059337048466 76.95901448574003 0.0014206790898236643 76168157.91032471 1406.0797162837357 25478 None 101327 NBS_20210814 0.0 0.0 0.016212494999775118 3.3987937745700145e-07 6637185.845886497 139.1422229211244 None None 2066443 DUSK_20190902 13488018.692284552 1386.39294249677 0.1310264672964788 1.346781715568294e-05 1302288.5008020846 133.8583247693367 20379 13316 183070 DNT_20210104 34953649.76217921 1044.8450132667185 0.04606117789196391 1.3992828581161131e-06 4518170.190067789 137.25654415181776 None 6166 301062 IOTX_20210318 275406800.2064187 4679.689835018666 0.04516994451043367 7.665112512649032e-07 101533239.77211304 1722.968037844831 None 2420 337079 NEO_20211221 1821054203.116485 38597.0005353543 25.730725500024143 0.0005459564445140152 179757398.30016172 3814.1058265517586 431905 115622 78285 LINK_20200905 4798997838.8220005 457690.26368809177 12.464620055837823 0.001188776372012009 1361694477.329941 129867.59430271859 86020 22542 40610 DLT_20190131 9601443.320478048 2776.287031416542 0.11865045273621581 3.430814537025839e-05 960554.870765246 277.7474116815145 14496 2691 919439 SNM_20190810 4210211.772314797 354.93225351044833 0.009846111134942536 8.300538315957599e-07 168141.0025094708 14.17474183142592 31118 9936 None BCD_20210105 87703389.86078626 2803.252721640002 0.4692386203220862 1.4998216620867736e-05 1908180.369526427 60.9909357294599 27858 None 2021519 XLM_20200612 1447690176.517474 155642.18514883734 0.07126724624983692 7.661991575122783e-06 476315711.9721977 51209.03590740242 283274 109110 78344 ASR_20210421 0.0 0.0 9.114922927999327 0.0001617249545359979 2558124.2348379735 45.38848313305631 1959503 None 190056 XMR_20190117 765791038.0962949 212775.35983772905 45.94851766437199 0.012775234038308367 332448219.0255987 92431.79148223065 312777 152443 85084 PAXG_20210204 114989226.55441727 3068.06910505852 1848.296207499503 0.0492753894004878 3750521.2353292834 99.98851568043304 14854 None 71165 TRX_20200612 1043014362.8609346 112412.39079097557 0.0157736805679571 1.6963065736833646e-06 1405377507.9753437 151134.73960719837 508806 73055 68107 APPC_20210114 3407119.318234881 91.50167120347956 0.031378491325617805 8.393725388676805e-07 887494.0938730575 23.740407499965517 24237 3121 538163 DNT_20200319 2288199.537574277 425.17702599034055 0.003094335518548196 5.743270090146259e-07 37984.4191618984 7.050133288922192 58900 6087 656002 CVC_20210112 80926459.99984835 2284.5731725213195 0.12164531596053517 3.4219391665226344e-06 50106639.339361295 1409.5230079702437 86707 8090 183713 NULS_20210106 22543749.270973336 663.6305469306325 0.2285219812939136 6.704117408574025e-06 13765351.250641247 403.832184685413 34763 5108 933536 STMX_20200713 0.0 0.0 0.0024027610750011067 2.587528147190829e-07 2620226.5165728144 282.1716205655118 19694 76 256849 XVG_20190410 156843386.16646913 30324.14306366657 0.009882425679310502 1.909767534857019e-06 11574865.80645163 2236.8296666036977 305376 53221 432369 BAND_20200701 22520786.159592424 2461.406397177956 1.097736832441422 0.00012009339755698335 1768741.050354486 193.501862976719 None 1229 430099 BTG_20190329 222445515.70649827 55251.380144655355 12.701216644566534 0.0031547261634192534 10035086.206387768 2492.513110624102 73117 None 417963 SYS_20210219 107554978.57939717 2080.869322231887 0.1778395812283284 3.43943688308835e-06 7347171.979131729 142.09510681974982 61421 4600 261910 ETH_20190818 19947175522.901073 1951476.0466920577 185.76004109383433 0.018174433674930005 7074381392.731569 692144.9556980443 447748 444722 27728 VIA_20190904 5439279.298536375 513.0599708193497 0.23492321349279288 2.2159129995739107e-05 110445.99390129633 10.417817379475428 40714 2217 1917066 PERL_20190929 8883064.888773562 1084.4807660167069 0.033994025785883966 4.1501292161963486e-06 3124309.8647987475 381.42848193449333 11267 373 279806 ANKR_20210201 74555642.53606468 2255.962364689514 0.011528611017510987 3.4867962291146397e-07 25555211.480893694 772.9102394942727 33987 None 5358 REP_20210703 101319029.75084977 2997.616569532983 15.690122331161765 0.0004633639121399538 19572818.224524263 578.0284839530766 151329 11227 153452 ATOM_20190915 758949999.1333848 73315.12141686285 3.1073288859941752 0.00030019522207832996 171274112.73584196 16546.58138723375 28553 6886 108058 ARK_20191026 27948748.812498454 3233.592833281741 0.1961646836475551 2.265764783069019e-05 2281323.43738152 263.5001472791064 63179 21725 85415 LUN_20200313 1154725.5633756635 239.94250444937342 0.41594689094179377 8.878220995499994e-05 1350863.8995607293 288.33652796364714 29706 2149 1955482 YOYO_20200321 1236836.1932344055 200.06838825236585 0.007066492454022737 1.139666396024381e-06 772123.3644188959 124.52614330785383 7497 None 2721333 AE_20190627 146008114.37223598 11233.169226465494 0.5464252776272582 4.190148714578033e-05 54691010.34906794 4193.8665009828455 24752 6363 390677 NAV_20210814 40403300.54725954 848.7440774656463 0.5662339806776505 1.1867666336119132e-05 531121.5855058795 11.131747609267304 53012 14123 873726 RDN_20210718 11923554.600451691 377.26030572391517 0.23540728206327804 7.448618963662204e-06 360538.17843979556 11.407937297067201 30269 4675 1078541 REP_20191026 87860191.96956506 10182.409466702058 7.999274772298217 0.0009255107347349751 4233693.728997489 489.83552950782996 125596 10055 212520 ZRX_20190916 99059549.63149594 9613.772258317378 0.16458183141639318 1.597273812550135e-05 12861611.571708106 1248.224981693508 151117 15888 146664 BRD_20190426 16335377.333049675 3144.598817409689 0.2716234962277695 5.225835572468073e-05 489713.48455632397 94.21725967939646 164 None None LRC_20200106 21087577.47997506 2871.8435979347405 0.021932878105394803 2.9865066864924027e-06 1091157.5156662758 148.578275997085 33816 6824 1058807 REP_20210527 179539095.42196646 4582.478468161637 27.494753800187233 0.0007013345886920203 45006375.84202823 1148.0200302601875 149998 11153 147108 REP_20200518 141199579.04599196 14544.561949404839 12.877502262255245 0.0013185560422212276 48020976.720651284 4916.974403799537 131687 10127 252584 PERL_20191220 5342575.101389613 747.9274764639887 0.020336653157654358 2.8460216358067753e-06 1078051.7152235596 150.86840898843056 10826 384 945040 ROSE_20210106 66292911.848463885 1944.069140701611 0.04420945275869205 1.2973746229037273e-06 11441867.604627818 335.77408772493396 8095 582 219756 ONG_20190807 0.0 0.0 0.22520979548862277 1.962832274588445e-05 8280862.789405429 721.7245905853414 81507 16291 237451 NCASH_20200322 1110895.7143683988 180.29216745294642 0.0003826605176413063 6.213491544217472e-08 785355.7079792183 127.52298253320109 57753 58315 679947 STEEM_20210729 169088779.41809478 4228.593719053161 0.4386553196862478 1.0963119580262823e-05 15894952.490949448 397.2555604831488 14127 3930 238289 REN_20190221 13766130.863343332 3467.7131258337495 0.01826217252029271 4.601429745398066e-06 228823.2179749286 57.65546023933113 5550 804 4072973 LINK_20190701 1233546995.6339626 113685.6031891894 3.413533739210506 0.00031461918187346093 437708478.06951684 40342.792481424105 23242 8923 152412 MTH_20190126 5302893.4800345935 1487.0639441907038 0.017689400410255532 4.960550243651441e-06 385744.269478667 108.17233968202696 18692 2019 785552 RCN_20190225 7651633.301505075 2031.4178310795112 0.015029554947218192 4.012039076767479e-06 1804441.318928395 481.683530131045 18169 1107 2734596 BLZ_20190305 9718910.828543616 2617.606689417954 0.04737299366161802 1.275902899965054e-05 1455512.4694276468 392.015035811989 34819 None 1431746 BLZ_20190915 7065723.742931568 682.8401455004505 0.03375676519939536 3.2622948899522125e-06 234436.88138034378 22.656265658924195 36455 None 878308 AST_20210523 28828366.423171125 766.9338703750356 0.1670744134676376 4.448813614658311e-06 1714062.5614436835 45.64160784083093 43378 3676 181542 CND_20191020 13142001.254001185 1654.1605098111181 0.007439447776713249 9.358282470301142e-07 165256.16896175878 20.78802023377065 35503 6069 332150 ELF_20200518 32360726.42982276 3323.0794639261 0.07011974113195207 7.179715946897589e-06 14162177.33446855 1450.0967745977862 81964 33397 471890 DENT_20190902 34146837.36360819 3509.850883923484 0.0004642052775893472 4.7664640538647456e-08 577821.7130668805 59.33078656878758 46550 10127 253321 SCRT_20210930 270916309.9920774 6520.832882124003 1.828430682699567 4.3988324955816615e-05 2275264.0223650564 54.73822667879483 95022 None 200681 OCEAN_20210804 230070889.951767 5988.210692693501 0.5292910354601387 1.377804614622969e-05 21147235.486430835 550.4865317507786 118429 3314 135729 DIA_20210707 59625923.11111747 1745.680704018198 1.2293063750475142 3.598947323982011e-05 16236727.218255466 475.3503858637991 None 392 433777 QLC_20190608 9718340.07274052 1209.341900102432 0.040379995061607776 5.029688683988722e-06 780778.0757309892 97.2528759901806 24956 5794 940522 GRS_20190701 26400831.079586193 2447.6744361936294 0.3623372387812272 3.359301811265927e-05 3951482.7745345407 366.3499585725644 38581 107025 None FORTH_20210930 106651981.64433901 2565.7836919375713 12.321545534313856 0.0002962948729716818 11899162.116745878 286.1378646073397 32962 None 170038 CHR_20201101 10767284.558149882 780.3333909011379 0.024093252560084353 1.748328970365314e-06 1101494.8067085657 79.93006658079814 32067 None 426894 GTO_20191030 9232975.529987313 981.1666951732101 0.013939704709952398 1.481555493787404e-06 2750343.67092386 292.3151429851613 None None 1047356 STEEM_20210418 456852636.60998803 7578.509500112815 1.1977895615782617 1.9877212525014402e-05 9783487.3651273 162.356113152454 13489 3931 169708 LINA_20210418 310495149.99201393 5150.640881241475 0.12526223513265533 2.0783541656032687e-06 55328676.15459263 918.0147906624234 32405 None 69525 RDN_20210220 36722485.845186196 656.8600947056711 0.5497877291581368 9.834127824714491e-06 4322865.780821431 77.32368767629308 27330 4401 934913 ZIL_20211007 1245846453.8580112 22443.959383591227 0.09914457279593776 1.7872002598778137e-06 144494371.92880479 2604.6849744721703 332979 37634 65872 DIA_20201115 29374038.14576377 1825.3348205346533 1.1538098115815782 7.172730645418637e-05 9260409.81097086 575.6791507019509 16508 177 89819 AE_20190405 164448007.6998477 33538.39281063792 0.618145236149281 0.00012613221750767161 70275022.34569438 14339.582165319769 989 6360 440681 ETC_20190302 462359971.83842885 120868.33542373481 4.2459744545154265 0.001110559941199761 131800205.90752059 34473.12990004251 225771 24186 486280 GAS_20190701 44281870.79416739 4081.5484839326296 3.161353551049786 0.00029309548049257086 1655340.4090551962 153.4699566929776 323390 97976 188893 REQ_20200423 7274692.721743682 1022.5527232943236 0.00942560844365464 1.3248919165969705e-06 222222.43027578734 31.23625422368673 39298 28195 655698 SUSD_20210722 221227243.49139884 6874.661273471429 1.0163655564704124 3.147093696642699e-05 263242973.45111087 8151.105644611535 143298 7270 44436 POND_20210703 48970065.21780163 1448.8086528717383 0.06332026997836566 1.8701654191510852e-06 4921887.41635645 145.36804164242594 19536 594 110694 OST_20190909 7880073.957266781 758.1209616050955 0.011744783448277825 1.130417773425316e-06 513081.178470339 49.38329309408633 None 754 572437 OCEAN_20210301 353156279.0583019 7783.474434372125 0.8352046753633927 1.8500379397869775e-05 81933321.32285215 1814.8815188813728 49692 1891 81239 AMB_20200318 1003638.9386522138 184.75514132441376 0.006889384303817409 1.2808775233003894e-06 106393.27551455179 19.7806871016593 19095 5499 780586 ONT_20210725 580102884.1394758 16978.914729172673 0.6608711140844292 1.934286140930434e-05 111479371.38435982 3262.8601624863254 None 19709 156257 GO_20190908 7231019.538662652 690.736950420329 0.009304463667358367 8.888009255851776e-07 353576.85225427104 33.77512608830587 10236 687 740517 FRONT_20211028 59868904.67375451 1022.9324170116308 1.0504033669688422 1.7935956058809476e-05 17003390.777025197 290.338054330072 84370 None 341496 ZIL_20200106 46771106.74623447 6368.420638218308 0.004576147455235595 6.230405623506404e-07 41532774.41445995 5654.669868114031 67006 10527 237329 APPC_20200719 4453999.708935625 485.69545151396085 0.040859597496830026 4.457346533303665e-06 51318.80515833166 5.59833459650508 24446 3195 1596022 NEAR_20211216 5753707034.319251 117937.37847158517 9.837962256200287 0.00020130997058187477 1054072336.4452085 21569.02674710088 None None 8222820 JST_20210318 139276325.41206342 2364.875889982553 0.09657243275551744 1.6384238267773284e-06 872785400.5499233 14807.459594028807 None None 92157 MDX_20210718 804468740.784639 25451.753060518913 1.475932967533877 4.669551409407405e-05 35251869.90083496 1115.2973908749827 None None 11841 OCEAN_20201014 129196037.47896656 11308.77832231969 0.3723816228026271 3.260213079234806e-05 13858906.063193895 1213.3516812954963 27445 1053 109249 STORJ_20210506 284262536.0081139 4965.485220567756 1.9821208416271145 3.461165291671071e-05 83885298.77968937 1464.7991107312052 335 13005 52053 BTG_20200224 184526140.04600376 18547.09763465995 10.520159453052752 0.0010583569472933424 25193481.10084811 2534.5334230508092 75070 None 182910 ALGO_20201014 275335244.25212914 24100.70443894862 0.3421108005843508 2.9951910575451797e-05 157088703.8199341 13753.166521465051 28844 1376 194024 MDT_20210909 23852159.218208842 514.6420302327044 0.039100440728973083 8.445580327437034e-07 2880185.259904986 62.21115546762414 34736 329 976793 SUSD_20210202 178541803.68974262 5347.205442247048 1.0063830225785617 3.01326136272559e-05 30465937.79186925 912.1957661033041 69501 3839 30058 SOL_20210804 9368039157.991346 243828.29251982187 34.3401202664068 0.0008939122902134676 535386826.38300115 13936.726499770823 373204 28660 9636 RUNE_20210823 2755723824.1753116 55859.171733616786 10.592724373567215 0.00021501427776632722 156060869.06132683 3167.7700528618993 107943 6570 73281 WBTC_20201201 2395874645.35924 121707.83453130003 19621.130904874317 0.9994820204420385 126239693.03458038 6430.5316582359 None None 161492 VET_20190719 316350371.8482377 29476.21758141881 0.0056746492551480706 5.318525742461839e-07 37484842.95234573 3513.2409639825028 112761 56992 133161 RCN_20210218 44829918.60631527 859.1872890710182 0.08712440542306753 1.6714273835067765e-06 1395855.9902090353 26.7786266561956 None 1137 1423891 MDA_20190201 0.0 0.0 0.7025340624867636 0.00020474407354214923 1918957.3014430183 559.2542138955662 None 345 1419763 ETH_20210819 357527359807.9584 7931798.875989682 3037.230251196439 0.06750571951082285 23192419118.647858 515476.5395821246 1506366 1070325 3885 RDN_20190712 13164010.973843763 1161.047162385153 0.259775314459329 2.2828844887613392e-05 758715.4071522758 66.67529738062736 25697 4410 772412 DOCK_20191012 5669087.573958 685.6413739703995 0.010125326891108089 1.2245961895896115e-06 1853579.5620494415 224.17908016187678 194 15154 171357 GRS_20210217 45389335.79937156 922.3678152887799 0.5898374480346085 1.198623131926781e-05 12392986.344364816 251.84091236500808 37276 106771 3844840 BRD_20190227 12775664.507181806 3352.17530910885 0.21323501743265766 5.596828217201917e-05 119239.67401840669 31.297109648838 145 None None GAS_20210610 132646446.25682907 3541.131440862781 9.417417108083368 0.0002514418882806158 46048031.548692435 1229.467047208768 None 111868 92872 RCN_20200305 32576881.106536653 3721.303913003486 0.06402821343365506 7.310135622386252e-06 2807308.8428065698 320.5119629974461 None 1134 864394 PSG_20211225 52205059.795230396 1026.727737629631 16.789523900767016 0.00033017257377473345 3259602.655721676 64.10136491561951 None None 16830 ICX_20191213 66946673.288365796 9288.661798872698 0.13142945731085412 1.823546592242777e-05 9145830.797226822 1268.9581867530599 112210 26834 102055 FTM_20210508 1972554439.8999782 34424.826106600274 0.7794288281972774 1.3600265904023147e-05 206016641.75889054 3594.7876280829832 76824 7192 52712 CRV_20220105 2437385408.2354374 52627.40879910583 6.1267682035350175 0.0001331590493639637 1026272350.1977098 22304.981354117393 242632 None 8564 ARDR_20190523 81291546.94524558 10600.866369192445 0.08127784265578347 1.0605602212308401e-05 4756735.946322759 620.6863719222722 68516 6553 1228634 ADX_20190614 15839574.980925607 1924.3838471853674 0.17208442917215921 2.090690540938151e-05 1177515.2286617528 143.05884397657275 54242 3887 922905 PHB_20211202 24275920.15963781 424.71116971566755 0.6536895250954703 1.1436404511486846e-05 1551407.210510469 27.14212135928579 None 410 199462 YFII_20210513 112020657.19699658 2173.1824749053476 2743.3056477356745 0.05442657212020314 310999636.9107687 6170.16342369732 16207 None 329518 WAVES_20190730 137774300.5770034 14515.53436948711 1.3807332636843983 0.00014515781059151313 15688461.016353108 1649.3429343530738 143298 56861 48211 APPC_20210104 2802585.044815105 83.84601206844685 0.025017456946076426 7.600000751263909e-07 126060.27286286629 3.8295585779456 24280 3125 538163 FTM_20200315 5609172.720109719 1085.6590196859893 0.002669116842340747 5.151639873694296e-07 1805038.2088190329 348.38890012544215 None 2316 349202 MATIC_20190601 49723944.581620224 5796.372132175929 0.02300462440600146 2.6823891678828795e-06 57155721.043781154 6664.481206238582 14401 540 234155 GAS_20210128 23599976.766337216 780.1420034792205 1.6968963581777605 5.599921257548285e-05 3828699.9850547444 126.35078348631144 None 101673 169176 LOOM_20200501 12928175.74818793 1493.9894762156248 0.015334416813389101 1.7789957330093954e-06 34003926.85359225 3944.9065141678857 21555 None 679893 VITE_20210825 62715935.14184273 1305.0927535561607 0.09438573956061087 1.9654211577657316e-06 9997436.064421013 208.17946075217526 33644 2452 442806 ARDR_20190520 78205321.25439934 9556.598672951972 0.07835621093992505 9.57598380792434e-06 1171175.4075685742 143.13041180251054 68569 6556 1228634 ANKR_20210703 517759033.54529744 15318.210514252009 0.07420082558403011 2.190718455104296e-06 19648596.580743283 580.1086821815328 114972 None 5363 XRP_20190615 17237603648.787327 1981201.426092631 0.40490736601560867 4.6634642970759427e-05 1511681420.3548443 174105.806020484 925791 201806 40280 GO_20210513 54852253.57182659 1063.4776607115134 0.04990632785288386 9.90130412329907e-07 6617795.05199137 131.2955776441563 20856 1026 107802 XLM_20190316 2037271692.263932 519159.95508370426 0.106123872249246 2.704161213362887e-05 127578084.41584201 32508.3979919426 265401 99444 74655 BQX_20190105 10452027.510944944 2743.256485722923 0.115209167771742 3.0262288024321156e-05 158900.2791108865 41.738744464554 60909 5827 318663 IOST_20200412 37940179.97649169 5513.7508125039285 0.0031613064404054777 4.593716013865965e-07 31654967.323628936 4599.804955773503 192448 52234 158956 VIB_20190726 5228294.237848226 527.2826319411606 0.028504049088075977 2.8796470099563223e-06 222254.74503337077 22.453484064889807 32564 1122 2209395 NEO_20190629 1278952736.4271595 103245.2514483656 18.11502479812605 0.001463211886271017 802319613.6721313 64806.071666811964 323104 97951 201306 LUN_20191024 2307680.454089741 309.0992126204496 0.8536354272577276 0.00011433907062941377 119484.10373318994 16.004140572901385 30605 2181 2505082 RLC_20190805 21178726.389945585 1934.1401480078273 0.3014421237507154 2.752665084529891e-05 186671.58653380955 17.0462028376085 24916 3316 861371 ONG_20210823 0.0 0.0 0.9089112710533954 1.8443385501917592e-05 17290239.997008406 350.84894625183586 142823 19829 180960 FET_20190414 0 0 0.19402897196281427 3.824866177405443e-05 13177478.73722718 2597.65808248261 7810 170 174439 GVT_20201124 6337047.038516438 346.02279024369096 1.4301522404519962 7.79378270322393e-05 398594.252659311 21.72186221935916 20570 5468 310491 PHA_20210825 151081228.74108067 3143.938081803299 0.8261673764199416 1.7222326865419766e-05 17221222.26436466 358.99446930978274 108070 None 161711 BNB_20190421 3602563706.1330266 678403.9977336632 24.94026494704474 0.004695710102522378 346737465.98580813 65283.13253326113 949479 49476 1003 OAX_20190329 5744121.712232364 1426.7253342594456 0.24481444408816994 6.0805531273456575e-05 8640354.393496944 2146.0389775789135 14821 None None ALGO_20210511 4181320544.6551704 74889.13602107648 1.3781664110585163 2.466499314946417e-05 501142076.7431621 8968.921162637096 92778 26750 134030 BNB_20210710 49188528580.239426 1447291.9725996593 318.3107569140051 0.009366866259718975 1165805306.6851475 34305.91695504836 4473515 546031 139 ORN_20211104 260532148.59089515 4131.890540679325 8.278561263795119 0.00013126943107966268 21830088.949354988 346.14992454456757 88594 None 69672 ALGO_20211221 8323484895.476664 176424.7145253442 1.302222829184164 2.763066069729363e-05 171345427.3732052 3635.62000272094 209489 60026 65778 ELF_20191203 30043700.86640811 4109.374604670427 0.06524817690844893 8.924252576602724e-06 13159306.786977531 1799.8507094653112 None 33517 883111 ENJ_20211111 2621668276.9038243 40436.35101210953 2.832349399253128 4.3605302085769756e-05 461079864.7822402 7098.533392383423 350590 40054 22630 ZIL_20210128 725044580.9615757 23967.44876663934 0.06239232822043649 2.0518987172644277e-06 94186531.56986365 3097.5158136266887 127420 15048 35147 DLT_20190419 8587810.132099655 1628.770288773966 0.1082966247645462 2.0538374358983438e-05 445112.5897820365 84.4152716736647 14995 2679 1770083 FTM_20210428 1327688184.7142212 24098.25869784903 0.5181601289711866 9.403043343300074e-06 330448104.89870566 5996.636327930747 65334 6382 57773 AION_20190318 40650096.44186237 10207.85138576592 0.14013418380129575 3.519153973507193e-05 1073061.0547466963 269.47508253819353 67397 72446 245314 BEL_20210105 17672750.673127268 564.8719679130661 0.8484144992179313 2.7117768854620908e-05 8014689.678950483 256.17254579647044 10326 None 319671 REP_20200501 116004553.58992885 13405.571337528963 10.567940375308899 0.0012260212477045048 31671072.27844006 3674.2644424522173 131259 10118 256414 NAV_20190906 7005665.40933691 662.8212005395654 0.10596664443191647 1.002573408457429e-05 118210.5030049185 11.184152102622626 51420 14199 463565 KMD_20200625 86426481.14105272 9289.341485571296 0.7183141923324212 7.726594475799162e-05 4097774.8844506806 440.7798860615121 99819 8378 202548 ARDR_20210825 296584334.403061 6171.797722098659 0.2967218035627908 6.178722690605381e-06 66746987.05081089 1389.89153634312 72828 7020 None ONT_20210206 540951352.7579453 14275.60659332921 0.6751540481607772 1.7687635082488485e-05 309315021.83536375 8103.4117275307035 97476 16707 259663 REP_20190914 115094189.23802987 11114.905593642334 10.463108112548172 0.0010104459630583943 8132840.668591427 785.4067771621245 125747 10047 201886 BAND_20200309 6963545.17193336 865.7116257399097 0.38710829506347577 4.812043228731786e-05 3512100.068955758 436.58008807782767 8267 1044 796393 NAS_20210804 15535237.484119253 404.3198010026212 0.3397083137190716 8.878278414814378e-06 3735721.7214535046 97.63310517846723 25278 4925 715519 AMB_20200319 962605.6246440229 178.86455703141857 0.006696229812545306 1.2428599345031932e-06 74314.27347457518 13.79316953701669 19090 5499 780586 CMT_20190131 17375899.214632835 5024.298366330071 0.02322188120795221 6.714683273368115e-06 746165.4786575678 215.75620053516357 292997 1628 726623 NANO_20191019 106521697.32090165 13384.53630497224 0.7988686299767067 0.00010037979886587916 2486987.1609333595 312.4960245388451 98271 47801 267335 POE_20200323 2201797.255006302 377.3907180602436 0.0008748615670806836 1.499263413740885e-07 31178.144707346324 5.343045508791038 None 10441 698681 QLC_20210616 8993805.608962346 222.8599612295097 0.03750944992106633 9.288357594584823e-07 538700.4184456851 13.339684088690994 33875 5654 940522 HC_20201106 40725132.7179525 2620.8863182237014 0.9076384466604845 5.841442689856043e-05 9451721.554290945 608.300474522763 12794 844 947042 SCRT_20201115 22318835.505440146 1386.6227579130082 0.39585071995610377 2.4599020394054646e-05 233484.21805364892 14.50921459036 61715 None 428764 XLM_20190703 2002981566.437575 186143.83591302545 0.10335740041388329 9.578213331991416e-06 505752562.1725784 46868.49624982943 274097 102714 66272 QLC_20211007 7908028.283679588 142.36252531604225 0.03296616299365624 5.931717183114614e-07 581026.6750999306 10.45461649025222 35158 5766 940522 KSM_20210722 1567451327.3915086 48707.4217562094 175.23791503071368 0.005426157655351666 160058640.29360807 4956.138722502599 None None 62098 WAN_20210916 183784480.06273097 3813.4773177302977 0.949122002376563 1.969564654846253e-05 6656072.722623994 138.12308156107085 125406 16873 269573 WAVES_20200518 104982267.2182497 10865.41534451667 1.049822672182497 0.00010865415344516665 36736800.298822485 3802.171588135427 116 56828 89919 POLY_20201201 50173999.391571455 2553.733273303285 0.06830135097613386 3.47920681042846e-06 5563950.683391017 283.4224335812378 35406 4998 351401 BCD_20211011 418035620.3428265 7638.8078368052375 2.2203857675796823 4.058175663194536e-05 3579604.3293476496 65.42405101550949 35416 None 789981 LRC_20210104 341699480.0457112 10236.906623163475 0.2747982918428343 8.269182056810387e-06 108978334.70933859 3279.3569563923697 45094 7373 277317 GXS_20190511 55874841.38355336 8768.373853863948 0.9311209291361944 0.00014615442906441213 5760919.733898141 904.2691537122903 None None 893298 NULS_20190719 43182233.34933686 4023.541677603195 0.5848328113763612 5.475284841097054e-05 5283569.442830846 494.6550042076631 21318 5313 418042 YOYO_20190225 4506779.306540518 1199.2308335431378 0.015371944610730926 4.097292294885993e-06 434973.70474380226 115.93942432505635 6886 None 1519416 BCPT_20201224 2037038.8881587326 87.1191805521584 0.01772148915063947 7.600007846949901e-07 216405.70857345624 9.2807385954 10333 3208 2904727 EOS_20200129 3872891975.1298995 416068.2189858535 4.039134097390582 0.0004322714481946985 3806171631.280113 407339.61375383695 1417 69824 81972 HC_20191022 62152576.99985035 7563.485367601889 1.4013480501383213 0.00017051669953862714 18616441.481240757 2265.257484193047 12833 846 470518 SCRT_20201130 22744329.735679727 1253.8396334886152 0.40145577725997283 2.213113686814628e-05 717783.7837157574 39.569417253304 None None 408987 ADA_20190819 1574102763.856537 152750.73457026275 0.05066438962767642 4.90934722768539e-06 95155572.1177012 9220.514598278369 154332 75079 90911 BTG_20210324 588257832.1223271 10784.450384101046 33.88759462908249 0.0006207185141589565 87739975.69756432 1607.1316935724815 87811 None 182424 FTM_20190830 36813637.689398706 3879.3410253139664 0.01775156895181558 1.8715345964346204e-06 21532533.04712958 2270.158804326596 18669 2116 361717 NMR_20210519 350335651.6424445 8218.948562540445 61.58836359823965 0.0014395561228883512 65951689.482832946 1541.5437732551982 28686 3362 635788 WAN_20200707 22242764.985893857 2382.77846507145 0.209611103575318 2.2444024801169067e-05 997596.3934793177 106.81723350958534 103690 16111 719982 CMT_20191216 10118009.522657312 1421.7595823068225 0.012605069777764552 1.7728151254125564e-06 4285833.6781897545 602.772606868091 289110 1646 824632 WAN_20210506 309331792.88027173 5401.682507557069 1.7541130903553441 3.063019780882741e-05 13893929.616641838 242.61480906767156 118969 16378 177297 IOTX_20200422 9922811.16294431 1449.7473001873857 0.0022919575069537653 3.348143062860513e-07 2919512.2931738524 426.4889205698178 22572 1817 547255 BLZ_20200324 2699818.5825809296 419.07976666866085 0.01244346458256025 1.9296595005838738e-06 882486.8487546676 136.8508842968391 36057 None 563457 XVS_20211120 266576497.94035605 4585.785275298359 23.20975387834645 0.00039897157563488223 15652149.21658689 269.05768444360854 133860 None 27675 ARDR_20190826 63719905.4037609 6310.638253282945 0.06380503705973174 6.316955117371275e-06 3224544.846960333 319.24290010411426 67199 6539 926837 REN_20200407 44413534.47227792 6106.972549901368 0.051367161193014065 7.049484721186618e-06 2058631.2867081086 282.52076745442633 11490 874 365402 OMG_20190905 149015091.77926943 14121.324162253988 1.0688586702500322 0.0001012206864325349 64340534.62664783 6093.034805829025 None 41342 None QTUM_20191026 169862649.94282123 19652.638162167903 1.7707828270270876 0.00020453107528519077 269662627.3439222 31146.8951997231 177352 15277 181813 ZRX_20210131 488176942.7602809 14270.447510469568 0.6505616400158649 1.9039305275451624e-05 120178511.31636055 3517.1384596941607 169239 16508 76527 ICX_20210401 1813458140.4805694 30831.001434209138 3.040018070207212 5.173474887739167e-05 437654823.7597429 7447.9696762612 129858 30570 720527 XZC_20190608 64719720.86640111 8061.418709338629 8.44993957976996 0.0010525153710374223 19796937.36100506 2465.8851906832333 60201 3978 387504 SKY_20190325 14713082.169549061 3684.6283851394955 1.0494412413610559 0.00026299104618165314 1063214.2320289041 266.44257170021365 None 3577 436972 BLZ_20200109 3775454.818211324 469.1544363757653 0.017653520591568862 2.2000116429336135e-06 643917.3598856444 80.24607224873077 36197 None 709947 CELR_20200901 43967321.65904056 3762.660098659592 0.010998937870915918 9.434412627812622e-07 6422776.995502389 550.9179986571394 None None 306281 CND_20210428 69034424.88668032 1253.0121523485075 0.035779673109913625 6.49586473483303e-07 1384481.4583635514 25.135512707974282 35656 6186 117159 MATIC_20190524 57629891.399392046 7315.606897747828 0.02663500604230838 3.386887713839314e-06 416431723.6133023 52953.15068141755 13324 472 412270 PIVX_20190906 21222457.59732145 2007.7179493029978 0.3471859406367109 3.284927049765889e-05 412832.5741704533 39.06047829673004 63031 8600 256099 SNT_20200901 156891485.35564548 13423.149458234224 0.040392690089014006 3.46070822251613e-06 73217711.14736393 6273.04431675891 None 5715 113908 FIL_20210527 5526274274.622682 141050.24208290424 74.8261838707771 0.0019100033104844578 995719771.1163565 25416.611682769708 88622 None 27077 NAV_20200721 8689704.525936902 948.4587170063785 0.12569274829790075 1.3718416123482526e-05 363678.55936159095 39.692773688792606 48525 13826 865383 XRP_20190920 13034470000.754793 1271748.0328106512 0.3025226060199861 2.949919531951256e-05 2799185175.3913994 272950.54512025364 938618 205618 30361 MATIC_20210611 8645655898.02631 234588.39385476135 1.3639399984727163 3.715096907705036e-05 1274996833.9169436 34728.33702598758 461783 41993 10681 REN_20190726 108549399.56610647 10950.442512459927 0.13519154419283247 1.3657846462561857e-05 14989039.35319421 1514.2810841425219 8407 844 661465 KEEP_20220115 353357222.5497296 8199.51052990901 0.6451072437009174 1.496191791792982e-05 13546371.446838664 314.1798509510366 31518 3703 147183 MTH_20200605 2544290.9466265696 260.67694035744546 0.007360549131316021 7.529860823399297e-07 150816.93784743192 15.428611799774519 18992 1911 1960603 WABI_20190411 15346845.483636301 2890.1135931909553 0.2930291212104091 5.52092706782463e-05 713066.2968457288 134.3479789021465 35643 8010 1213575 RVN_20190725 187711844.9467241 19107.534879233724 0.04656861373309504 4.7490487812323695e-06 25230632.38415538 2573.0098959020806 27000 6821 272876 HC_20190614 100864297.06885205 12266.811941367738 2.2907328656029744 0.00027856461989476467 50235146.61254206 6108.846095329006 12739 812 744090 MATIC_20200106 37675740.26234727 5130.927607622102 0.014803127027605206 2.0154395543515724e-06 8289301.049226495 1128.5848713845564 28351 1407 155878 GLM_20210324 542332140.0424035 9952.44515799973 0.541145123672598 9.912146341072843e-06 27926366.33948715 511.5267935018523 154190 20799 153739 MTL_20210825 184155511.23597258 3832.2002645408743 2.8399985164528556 5.91380985967199e-05 88429048.21488455 1841.3832760298737 57611 4231 207199 BRD_20200330 6482971.298657058 1096.3523980481848 0.10651319676152304 1.802232211699932e-05 436305.54566295247 73.824083066216 None None None LUNA_20210115 403320577.1805584 10326.7540579248 0.8330189599701786 2.1274597260061286e-05 38259597.590488374 977.1176517984541 18182 None 167354 APPC_20200315 2024254.5255359034 391.62125666959645 0.018652826479568195 3.6001662844019044e-06 55766.89838862457 10.763521956541613 24895 3231 683942 ATM_20210117 0.0 0.0 5.52231158805868 0.0001525674642289917 1346613.2353635617 37.203508592466235 None None 267747 QKC_20190730 56065572.14191947 5905.997636818752 0.014034639274632166 1.4754750704788767e-06 4263864.755400486 448.26418601712277 50869 9231 202056 QKC_20190314 52311196.15461301 13529.699639969449 0.03318400916638786 8.584004142145805e-06 8762382.105510497 2266.6436689920256 43531 9015 173960 BNT_20190401 41423258.664250724 10094.765788554614 0.6367091540861375 0.00015516475509627916 3169960.2485952266 772.5130108176145 None 5134 158493 VIA_20210725 9943343.717114123 290.987718425282 0.42905927838527397 1.2556237020313385e-05 373366.2648581886 10.92640470237975 38190 2295 1139372 KAVA_20200511 13316196.031482918 1518.325838738992 0.46748422862402267 5.3256705108143456e-05 6408505.018133464 730.0692537571806 None None 342540 CITY_20211230 38847163.4234533 837.5953840900656 10.339508564779223 0.00022220115001799298 2980497.430108583 64.05236307378996 273962 None 37465 AION_20210422 155048272.5891272 2861.5449708773244 0.31215056129145463 5.763772951541636e-06 12346053.444920529 227.96642943620566 72585 73133 244178 PSG_20211111 64407117.96075832 991.7869739575032 20.76356626963117 0.0003196543862862548 42720098.246664174 657.6744384753763 None None 9461 POA_20190305 6215472.246809652 1673.0889888940712 0.02823063726890909 7.599160045854659e-06 241316.67521782903 64.9579398171579 16538 None 755314 POE_20190704 13560130.333820077 1131.8065001252694 0.005395808880287332 4.495977199638988e-07 705106.9219463897 58.751981671555846 None 10851 780853 XEM_20200306 483897254.3862167 53417.432875043065 0.053766361604442564 5.935270320108704e-06 18454697.970693592 2037.2146796516272 212576 18033 213172 AERGO_20210616 39355332.48819237 974.4662469068815 0.14987793097290386 3.713468174998088e-06 10027946.55776826 248.4585966801632 20837 None 351474 OMG_20190916 146837592.80339566 14252.446213064504 1.0470912504069572 0.00010162066002255096 52037272.83866853 5050.239899897768 287717 41472 None XLM_20210511 15397127554.12315 275561.8208342394 0.6670113233317664 1.1937476917578506e-05 6066514606.083645 108572.18692861046 539807 183198 25553 GAS_20190411 47547000.4803044 8958.744949387763 3.409579848183268 0.0006420085723890188 1666776.6705144816 313.84656127015165 319708 97722 185739 LOOM_20190901 17130787.331426896 1784.6777414709672 0.02842368707498132 2.9618291993329148e-06 1228719.508695328 128.03607459663843 20857 None 439430 ORN_20210210 97634213.11576177 2096.2059174435017 5.804462496957169 0.00012457405027093085 20476874.661437582 439.47001377004483 34380 None 131553 DCR_20190221 160328948.43324018 40421.83459803325 17.12816238417194 0.004315698791639374 1805237.2376065399 454.85674354421377 39756 9350 245960 AMB_20211125 20820455.436426204 363.9466370216183 0.03884721595947596 6.792346138993094e-07 396800.7216686243 6.937969126505999 2391 140 784694 RAMP_20210930 91337615.81224114 2197.3578127504657 0.2524176745975899 6.072610858540384e-06 7141428.703102575 171.8069765007127 33453 None 93665 DIA_20211021 90349888.16217822 1363.1026345528378 1.8494026703512596 2.8011976494498458e-05 33764225.62348176 511.4098242003057 None 419 424656 DASH_20200208 1102873637.8803062 112595.80412443052 118.37771052486471 0.012081584813080956 763332138.4409641 77905.39224179256 316530 33974 68074 ZEC_20220115 1713377213.9477308 39758.22089074014 142.78202251789904 0.003310443262518345 259376991.00645703 6013.731961402683 84661 21749 107256 VIBE_20200229 2499259.9389068615 285.97293883186506 0.013106173271359161 1.504193609552556e-06 121141.30880817394 13.903370479642 19483 None 1771395 MDA_20200217 14313989.929137725 1435.9035888529331 0.7312075138970979 7.349974339566798e-05 1877545.5374023244 188.727703955423 None 373 2393526 SNT_20191019 44294960.32929448 5565.697126179896 0.01243007410389734 1.5618692380918364e-06 21244439.229083925 2669.4157923011912 110995 5690 373858 ZIL_20211028 1198783566.6241233 20484.653623222162 0.09438669486849978 1.612951023288871e-06 150429554.03067198 2570.6536651664987 340245 38421 64025 GO_20210825 43161921.85782456 897.8049996785944 0.03913614707107268 8.158340989351186e-07 9569931.316446329 199.4952716792816 22604 1112 199251 GTO_20210430 53027213.51648008 989.480651279821 0.08011139289088567 1.494193312564627e-06 23493858.58049012 438.1944329081971 1963 None 321700 CELR_20200612 11685184.287657047 1259.3877413208825 0.0030436326668317987 3.2728582650966953e-07 2422890.614023477 260.53661658804145 20139 None 1372925 REN_20210125 552677372.4949805 17164.26257530529 0.6270818433881863 1.943609696327719e-05 109192569.15799385 3384.370611589136 36128 1003 93933 MATIC_20210930 7335032969.0375 176554.98781378986 1.1007346495729327 2.648124065014288e-05 543730210.443207 13080.94603643652 700273 None 6469 CELR_20211028 699986015.6326098 11959.601068578862 0.12389371530221231 2.1171892410701984e-06 222409131.51932356 3800.6949684240376 83136 None 66819 ARPA_20200113 0.0 0.0 0.009284147503220623 1.136820924545166e-06 708840.534383761 86.79577218842121 12486 None 827154 BCPT_20200308 2745684.912954118 308.9071158233776 0.02366940588980858 2.6593547644884713e-06 128780.6091862569 14.4690292695796 10701 3163 1771218 MTH_20200907 2815959.480872116 273.29301727923587 0.008165920044731309 7.951884358990507e-07 200545.247569545 19.52887866502024 19077 1899 1279779 NAS_20190410 51631263.67956976 9982.402603291173 1.1353437097708197 0.00021940388202096957 3988926.7109808177 770.8555549781435 23990 5167 612650 MANA_20200530 52708416.60884041 5589.532894721124 0.039747013994989706 4.217307672161197e-06 14777659.233814158 1567.965223027928 48795 6948 48961 LSK_20190528 273208620.45550185 30984.02910137723 2.0603386016483816 0.00023411724641411613 3074563.1189021897 349.36405634874393 183276 30417 175336 FXS_20210509 68624082.2245288 1170.189358465112 6.353787863272313 0.00010816339316846972 5851449.316787335 99.61185778888766 9243 None 138328 XEM_20200223 534302968.8311782 55351.930000294175 0.05933986561378227 6.147330172633213e-06 37299391.8775446 3864.0410580310595 212789 18049 232859 NEBL_20210318 42493241.25157263 722.3927917916573 2.4205949387558703 4.107627926978475e-05 863829.5280078264 14.658752840396012 None 5928 617385 ORN_20211204 235935228.9326207 4394.553848150872 7.300260288794123 0.0001361385436077854 11063801.337370636 206.32275305957708 None None 61725 SC_20190522 138173742.77081382 17363.022511881853 0.0033992341496331077 4.2719723282300673e-07 4601449.909881176 578.2851612876038 109868 30919 231960 POWR_20210930 114967985.79945755 2767.5523328137406 0.2685336401176389 6.460325337603438e-06 5377848.887594427 129.37914748822053 92999 14356 220278 RLC_20200704 46905169.131881095 5172.388468248306 0.6678456628049803 7.364555482466485e-05 2716277.7031430304 299.5329454797247 30748 3596 559121 STPT_20210828 78543791.01653202 1601.2567936876244 0.06482613525572714 1.3215112213333559e-06 7586258.741786396 154.64944833840434 30806 None 819629 GAS_20201124 19901990.07065301 1086.7115383227128 1.4292458372154226 7.787763487537994e-05 4385616.719694287 238.9662077065294 324403 100990 122930 BTG_20201228 155159656.18314415 5853.671708614376 8.761236145831385 0.0003331482604122679 25301694.004762895 962.1034295692285 81606 None 361014 AERGO_20201201 11049830.022504544 562.0332915722275 0.0419821425568288 2.1356882049415145e-06 8982176.419010075 456.9354269334048 11235 None 661183 BCPT_20200501 1952906.0000785252 225.69275908563995 0.016746551851759505 1.9428221268178983e-06 65828.03597440576 7.63692526008588 10585 3165 1976205 WAN_20190807 26133373.838961303 2286.047589471293 0.24629098341308914 2.1507717288177275e-05 2835209.868947434 247.5888133171944 108049 16898 529577 MANA_20191011 39855886.97803812 4655.63952624458 0.030021973176669277 3.5062263186482444e-06 8443524.883990327 986.1080414732653 45815 6409 84692 TCT_20210805 14957686.478514913 376.07325420037296 0.02579316239460364 6.485474308585112e-07 4256186.838627044 107.0182475966145 None None 566218 UST_20211230 10045365681.121069 216591.1532403931 1.0047587049507254 2.1572585604826542e-05 171441263.13417643 3680.914937027581 None None 5217 KAVA_20200414 9856167.293539463 1437.8174390391828 0.5075826141184911 7.412760593405684e-05 4903948.548193286 716.1749740634373 20886 None 284724 WAVES_20190826 126636936.7478643 12544.05468661482 1.2669069055193778 0.00012547085766462896 19542024.176557448 1935.3865096586403 142806 56906 38385 YFI_20220115 1149681165.7733433 26673.91030567628 32275.402960591204 0.748339658664218 216321588.6959563 5015.646870283662 None 8158 24632 WTC_20210711 15329572.428665033 454.5932417656412 0.5252146686833875 1.5577035901258054e-05 1614817.3044183883 47.89292574016338 65453 19866 588715 WPR_20210617 10023637.527914127 262.0961741072359 0.016473664776923188 4.3065408195589933e-07 81470.94312254459 2.1298111070992523 33660 None 6502768 XTZ_20201106 1414249072.786062 91014.70757863495 1.8851446541637356 0.00012132545177986646 128290619.52759098 8256.616986354635 75048 30174 118463 YFII_20210125 74272574.26283346 2305.050753947905 1863.298103322582 0.05775537292774686 98011548.51038495 3037.996724919776 None None 182757 GRS_20210220 56332211.23053598 1008.7338987453991 0.7313478614645323 1.3088828198332659e-05 29758084.131691687 532.5761805487019 37354 106771 3844840 FLM_20210708 0.0 0.0 0.40688892684416533 1.197557853905538e-05 16509252.496959878 485.90127883760135 23659 None 83883 FUN_20190625 33425420.362614956 3028.0449875670492 0.005560847540410676 5.034842368987215e-07 1431916.1683741375 129.647003284602 36255 17612 455027 COS_20200323 9259866.777952375 1587.5203156475977 0.0046886508499533325 8.041055321394388e-07 3510542.623794614 602.0594910863637 10302 None 117572 WNXM_20210819 162850825.9377312 3614.854078133749 72.8002006027563 0.001616457898059315 23488765.996361565 521.5452841629697 None None 132696 XVG_20200730 98920438.5528727 8913.86845340349 0.006056341384225535 5.456847710238488e-07 7451727.590475871 671.4110064092608 290060 51599 240038 ALICE_20210902 320707026.7909835 6594.127942139683 18.44798445101474 0.00037915722117869724 191296549.3115881 3931.674392432922 109947 None 28762 XZC_20190830 48018239.77035332 5060.330370768527 5.815198965654515 0.0006128260444093065 13782248.404003844 1452.4216320673254 60826 4042 203720 ARK_20220115 188292082.70476937 4368.590418681495 1.1588710691617632 2.6868767197586548e-05 2328002.751544866 53.97542973597927 77219 24362 114658 TNB_20190405 10817604.234549759 2208.4406521533383 0.004140888909885069 8.456828661584848e-07 932109.5903342894 190.36229347905677 15416 1505 1826498 LINK_20210117 8235148312.512776 227057.27130213246 20.498271918629428 0.0005652627583390653 4221546742.504479 116413.86969584758 123135 28154 44259 DUSK_20210624 42671667.054179676 1265.7699918467008 0.11872851129087289 3.522945250669113e-06 5801672.162197533 172.1488222797604 27725 13636 389018 AUDIO_20210210 49315476.60841151 1058.5659483394395 0.32183599223586845 6.910128631471445e-06 8149578.934604641 174.9793065070733 25700 2540 56398 PSG_20210624 26023610.062602475 771.9247707101572 12.308633460264067 0.0003652251790206492 5640445.269768573 167.36485330055524 9176704 None 40054 OMG_20211225 940170760.5789334 18490.533327249053 6.695349495059228 0.00013172112081708245 343225084.569427 6752.447032882322 6564 6527 101048 PPT_20191213 16348182.731736796 2268.2459738968564 0.449388641778969 6.24299906262211e-05 1048738.8951238664 145.69295550673732 23775 None 666942 HARD_20210506 102067173.442755 1782.9048046877285 1.6579854419218718 2.892959885912739e-05 13861253.60705983 241.860088995745 30529 None None MLN_20211204 141513042.12740523 2635.8364821479277 97.37889080211414 0.0018120403934382783 8595631.286256181 159.9487421709251 30666 578 104412 FTT_20200223 77091097.734426 7986.369708512809 2.672162873407717 0.0002768267835790059 2419079.0142111313 250.6081756437017 7426 None 22405 SUSD_20210418 212466550.2864974 3527.1062219312767 1.0047875021316062 1.6715761956758287e-05 19146087.705322225 318.51654584320664 113030 5999 27259 CTSI_20200725 11078951.588466391 1161.5816423434042 0.055563441464978505 5.825697880218198e-06 3547513.1160609345 371.94851678344355 15730 121 236053 PPT_20210620 56812128.75570203 1593.6478651387315 1.566047274177809 4.398912325354882e-05 2492282.657241673 70.00639814634252 24293 None 649684 POA_20190929 3244119.5156203974 396.34298118786234 0.014670914487414954 1.7909531027040745e-06 222185.53022475823 27.123317027941845 17704 None 603772 EOS_20190813 4205229615.152774 369467.6006474622 4.127535359942594 0.00036266892468707004 1848586773.704596 162427.4340364489 1259 67834 89433 ARDR_20190915 56338427.21876371 5442.515562495686 0.05643776087010647 5.453918037810854e-06 1502013.7973640228 145.1485674872588 66921 6530 930148 SAND_20210117 27451622.681460273 756.5866426280991 0.043964187894059724 1.2146465170921168e-06 7905205.665424065 218.40572948924185 63786 None 55627 MFT_20200315 5110626.760138817 989.1651256345623 0.0005451929792584895 1.0522723644960849e-07 1340483.780539238 258.72564229186383 18405 2508 867921 KNC_20191024 27298626.75027013 3657.865334789014 0.16220599450789525 2.172646784603637e-05 62785928.46858439 8409.778320429712 98387 6718 165975 AKRO_20220112 50955478.293693624 1189.3176074035953 0.018781854049074145 4.3897369503021523e-07 2883646.474284313 67.39723057531893 51252 None 261960 WTC_20191220 11085962.40672084 1552.1523709187306 0.38100460824855614 5.331985307569383e-05 3150641.1284861546 440.91782206352514 55285 19629 1013221 MFT_20200330 5750511.360773129 972.4841635027661 0.0005925106520575723 1.0037985027571808e-07 688599.8142411549 116.65874024944637 18343 2524 872119 SUSHI_20210204 1806956945.0872233 48182.57241227763 14.240001931560789 0.00037963246979742245 1099970628.4229803 29324.75489679018 33114 None None REQ_20200305 10856256.67361863 1240.1257906792357 0.014077492709094854 1.6074863955434978e-06 80264.70978588317 9.165298941316248 39781 28307 787523 GRS_20190615 31378588.00037713 3606.493371222966 0.4302993264611474 4.955912671467753e-05 2083605.8793341243 239.97641048292618 38620 107040 6997430 GVT_20191026 5005612.949028538 578.1603315304482 1.1282430929839167 0.00013031479008242448 730385.9803893229 84.36133693657561 21146 5682 109882 SYS_20190405 37277291.29444793 7605.839063177623 0.06757758434166282 1.3806056153633407e-05 953273.9221689006 194.7532370011669 62519 4614 1033934 SNM_20190920 3990718.701631518 389.3386667484433 0.009119527266396128 8.897105641204842e-07 944916.8984119064 92.18707529181674 30946 9871 16793543 XEM_20190522 783649559.8329177 98474.0275247095 0.08692992650072406 1.0924203190306117e-05 92720312.90808716 11651.8623545399 216901 18446 179358 WAN_20210114 55024516.05398305 1479.7310834339075 0.33521267951433475 8.96871951788451e-06 2592378.493422951 69.35989302490631 103799 15876 601908 NAS_20210106 11488536.335969793 338.1262832589029 0.2532754842127139 7.430307462158761e-06 4515270.646817278 132.46386354762993 23329 4856 1361296 DENT_20190314 32152507.717475343 8315.882718557947 0.0008891284359382176 2.299977366348778e-07 1986759.91107832 513.9305687628199 42651 8831 259704 OMG_20190321 217064636.1970455 53709.66161943968 1.5477487268212926 0.0003829691553903229 76650678.73091866 18966.157222408296 289487 36976 None KMD_20200414 53784183.53324857 7848.86035704349 0.4517583006257804 6.59749966897203e-05 4279254.90103145 624.9444172668026 99903 8392 155354 JST_20210702 72153188.012385 2146.027268657642 0.05033631894772409 1.4966452623246318e-06 34188558.4908403 1016.525347118936 48697 None 109468 SNM_20211221 11386770.42912907 241.536 0.2564587934488529 5.44e-06 2427947.9277898083 51.50159427 33355 9785 None WAN_20210106 45390717.041981936 1335.9225230292425 0.31877957355508835 9.351991771066408e-06 3772810.3878918053 110.68241075760369 103993 15884 601908 DASH_20200329 613895983.6886457 98215.67426679988 65.2400025636532 0.010437583908688246 682148002.518584 109135.14308165455 315865 34593 60317 QSP_20190510 0.0 0.0 0.018252888740298154 2.956156775376288e-06 129989.90799382799 21.052588043125166 57194 8600 818331 RSR_20211011 470388370.711172 8597.064252885544 0.03567409010554675 6.520576787650732e-07 40409381.4147525 738.6102173223785 82829 None 112469 BTG_20190708 464027730.48612785 40620.97388256282 26.49887689636974 0.0023182640179075556 10835914.22555617 947.983952243686 74664 None 363617 PSG_20210707 28544919.405902974 835.6774031833335 13.541527302089637 0.00039649131975462155 6283432.66095174 183.97677401910227 9223506 None 41128 REP_20190819 106311607.62308171 10303.869335507849 9.688809885239365 0.0009390200167328533 8800262.42814159 852.9037797631282 125977 10050 195654 STMX_20200707 0.0 0.0 0.0019075050640684802 2.0416053109328725e-07 494221.09573059063 52.896552298873154 19588 69 256849 ZEN_20200223 97971643.62922047 10149.342839693381 11.58221953416215 0.0011995953062100076 1732335.017978848 179.421651456461 57336 5022 48577 ONG_20190812 0.0 0.0 0.21328684548457885 1.8469113595997462e-05 5438004.680519073 470.8922669463662 81580 16293 237451 STEEM_20200407 61867111.86682319 8492.404021244605 0.17817452448238616 2.4457745036729145e-05 5529618.916338543 759.0423490618169 11200 3840 214846 BCD_20210809 463376238.8488573 10533.112667342237 2.4702358841520167 5.615644998467111e-05 26115328.749748178 593.6858751737843 34453 None 1282493 TRX_20210124 2090689872.2785382 65301.431868619424 0.029185001651208933 9.106758021960847e-07 1108680423.3159966 34594.770490292816 565372 77214 30212 WPR_20190224 6653312.792669774 1616.9329410194323 0.011364359300772314 2.761843232027847e-06 645754.2862451882 156.93556124171846 35011 None 831971 KSM_20220115 2521141154.911767 58483.49510039237 281.53709161906886 0.006527737896898792 83799150.28069198 1942.9727211763943 219968 None 91017 LUN_20190321 6970130.188698666 1726.0325393251583 2.568798919864594 0.0006356557731748795 2722972.616092573 673.8064432492 31728 2245 1442676 SNM_20200511 2720489.9833495626 310.69705648 0.0062245052929420135 7.1e-07 176298.60466862624 20.10955143 29647 9641 7373028 PERL_20211007 0.0 0.0 0.08180655604319095 1.4738431995560363e-06 3351927.958828561 60.389001401219744 891 693 2531350 GTO_20190523 20790475.13726516 2714.751362761922 0.03132498444003109 4.087464841859705e-06 20587334.36207658 2686.35425992616 17286 None 1154780 ACM_20210729 16064877.009566808 401.56866197848035 8.043756620097042 0.0002009867471684174 3350313.117708996 83.71319115270377 None None 42486 BETA_20211204 183951164.26196128 3426.293311246435 1.1518683419734763 2.1469484491392013e-05 77421537.13566944 1443.047291312969 None None 52614 POLY_20190227 38811156.53374265 10189.877564614464 0.0865295185457033 2.2711600413868895e-05 3925165.2971660043 1030.247102791096 32723 4992 244935 OMG_20191113 134992115.54771927 15349.210271426342 0.9645012850292621 0.00010957722659723845 87110473.93081504 9896.642222327528 285795 42006 None ORN_20210513 319143927.046127 6191.340120505106 12.515426571214167 0.00024298460359031455 19282531.829441775 374.3666527172944 65841 None 51666 NAV_20200704 8515340.386210991 939.0767045200457 0.12334136546873287 1.3606368260777939e-05 161046.8651891086 17.765839924663048 48519 13839 884815 CHZ_20210219 209477826.47556216 4053.12788509446 0.039357270665894645 7.612558955475187e-07 69041752.5359647 1335.4188506389728 72288 None 95433 OMG_20190922 156595554.74325728 15680.83332724895 1.1156816723931051 0.00011172048512645114 60542668.15750335 6062.532373501972 287443 41528 None NKN_20210219 35294742.50386466 682.8535682412216 0.054287152820873666 1.049919452128265e-06 6617302.231742143 127.97934635920818 14424 1031 263603 WBTC_20210204 4418858118.965175 117901.15022661016 37622.28746925658 1.0030063675198062 274070889.3044029 7306.702107062603 None None 144337 SKY_20210212 23705517.15568756 497.142283233551 1.182720866878698 2.480770113172534e-05 2281749.736668228 47.85995335826261 17447 3910 739970 MTL_20210201 26957830.77276791 815.570628700852 0.4182754168947556 1.2616909137013386e-05 4833624.504355652 145.80202113393977 43082 3351 419249 STORJ_20190405 43802450.968816094 8933.302550811151 0.32229752585193266 6.575968979954377e-05 7228176.276660774 1474.7945349974627 83927 7661 204987 CHZ_20200329 30223368.70842245 4846.21935505319 0.006354853850897053 1.0164404294105782e-06 1351317.5939605786 216.1393271509259 19778 None 252561 VIBE_20200315 1123340.4209830887 217.3264190760223 0.005972129318195608 1.1551199323095976e-06 66689.47869440026 12.89897489 19420 None 1426283 CND_20200418 7469736.43947235 1061.0958465618098 0.003871803904446324 5.5e-07 81084.71818556754 11.51829899 34627 5947 386882 LINK_20210428 15465994841.190393 280737.0391340647 36.676554100192114 0.0006655688243936149 1520690813.4459805 27595.95119559254 253049 50739 26155 LTC_20210809 9981346866.47305 226951.3686519364 149.52742958363368 0.0033998873347443294 2104942346.9020503 47861.230849263506 189942 339924 80775 GAS_20210508 223694095.05329624 3903.661585320836 16.136787644340302 0.0002815721310193323 34639422.77206089 604.4261288044924 390687 110436 84803 RDN_20190401 18690829.76422003 4554.873757881684 0.3708377021215094 9.037040455988675e-05 1202099.4881107053 292.9427521536144 25466 4463 1172617 ELF_20191012 36367006.92358184 4390.670624473824 0.07869911572717177 9.518871491564704e-06 11403997.19844712 1379.3443905838299 84879 33552 876099 GAS_20200425 16522020.682058541 2203.431641634331 1.184796906564634 0.00015807273863711584 10274607.31780525 1370.8132660944166 321044 99293 240659 ELF_20201031 39097395.585257076 2878.3657114382363 0.08482262234767407 6.24998555059506e-06 7551620.75179303 556.4260957274502 82423 33347 426475 ICX_20220115 722470636.8152739 16762.14026863052 1.043765016320498 2.4200805703112614e-05 54185307.80933396 1256.3441826013318 160500 34787 278401 CVC_20210114 112388047.53326099 3022.3634711890495 0.1687350654062046 4.514559164804599e-06 138914989.469918 3716.713756742894 86843 8101 183713 DLT_20190903 3159309.8344344185 306.02550757867067 0.039381595507736136 3.8146852908050933e-06 175757.49716051124 17.0246921315114 15024 2652 9139526 NAV_20190616 14718492.541449387 1669.1673479132173 0.22568892246637595 2.5595801255604717e-05 478401.7499285565 54.2564339343202 48363 11265 919129 BLZ_20210201 34622103.52345701 1047.442243242207 0.13422072037213847 4.048649681140238e-06 9349458.261362007 282.0181645855234 45219 None 375643 ZEN_20200306 88361463.05699922 9757.080756480385 10.320352437428342 0.0011392640246995754 1736167.4421793204 191.6555776289412 57300 5057 41227 NANO_20190401 146930437.47356313 35804.770353937514 1.0983049494579251 0.00026757884619280976 6671415.479480081 1625.3497331075416 None 44862 397800 CDT_20200322 2038562.8683215557 330.62368234531874 0.0030183477073999782 4.901189466163629e-07 111569.46282599063 18.116636284403306 19208 290 281286 XMR_20191020 938714649.3774471 118157.55536437235 54.40867190256354 0.006848316650011252 86779912.11666444 10922.82344438305 320024 161943 81315 FORTH_20210821 152556601.827285 3104.280608471339 17.755562034897096 0.0003611623790808682 14507253.200997053 295.08917091460586 32066 None 144667 XMR_20200531 1202133014.6335 124046.75201697455 68.28668109665689 0.007052827687415857 113381225.68157458 11710.310632731922 319943 172183 80079 IDEX_20201106 22736175.799695604 1463.1979837817196 0.042367359312480715 2.71923327011759e-06 250186.08112930384 16.057510464824567 40049 1957 30306 POWR_20190530 53940265.6894332 6246.36219248082 0.1286532434274642 1.4877514727028658e-05 4514790.7382374015 522.0922839419118 84930 13206 633531 SC_20200411 54231698.239902794 7909.354731138498 0.0012393581521076566 1.8070808675716177e-07 2458553.0136344885 358.476208454673 107196 30103 166038 BNB_20200430 2563905019.005386 293671.6330878178 17.39372140310465 0.001983920328132576 458695909.0023823 52318.6566699088 1142163 62305 1429 NXS_20190908 13014595.894045394 1243.1011271891387 0.21797113858704348 2.081971428680524e-05 63183.348233532 6.03501576600036 22172 3538 525271 OXT_20201229 0.0 0.0 0.23866842222366944 8.790775489675158e-06 8965120.480213262 330.2085824558137 54160 1802 140825 COMP_20210509 160258.2160005594 2.736559203815743 1.7375327608869635e-06 2.967e-11 1492.4120185263941 0.02548433364046295 None None 1890272 REN_20190706 78871376.56313406 7169.2561322163465 0.09805648218662602 8.91314526071836e-06 8461281.287292 769.1141628137844 7142 794 1032866 UNFI_20210723 30996434.329187017 957.4623462105238 7.277576262022601 0.00022479248564686783 21342704.53942926 659.2414055323977 None None 243649 RENBTC_20210616 404244245.49355495 10016.878371061452 40371.711087909076 0.9996325096947655 4818920.746183154 119.31993244076115 83567 5403 86030 IOST_20190622 156445936.27413753 15458.252886368964 0.011570436767050623 1.1431240844955069e-06 50845819.29404177 5023.412840943378 197665 50127 103864 VIA_20190530 14581614.250655444 1686.2712916034286 0.6300789071017929 7.286463310760386e-05 1088263.6838393465 125.85079924675632 41226 2238 1806760 BQX_20190704 13116764.507515468 1093.93832127957 0.10878733421402619 9.062833943118702e-06 4530372.630493228 377.4153962614179 60744 5774 466152 MDT_20210127 12596169.299807569 386.5118870414859 0.02076939488618538 6.374460668455307e-07 1357510.0446983906 41.66416226559708 13688 74 1359138 REEF_20210217 0.0 0.0 0.03748570632597572 7.617562240010954e-07 244342284.43349102 4965.339437258502 None 4684 58276 MITH_20190813 11079739.582485197 973.5294527552052 0.023413882414357448 2.057516644625308e-06 2056946.0988453715 180.75604722761614 80 2078 826998 PPT_20191020 14458177.174998065 1819.412815135312 0.40026614763036683 5.035056075733525e-05 548306.8035353962 68.9729950646837 23942 None 810126 MTL_20210210 45568109.14955846 978.277535024544 0.6994728377558758 1.501192651333864e-05 23467664.649876997 503.6576663847289 43331 3384 419249 ENG_20190621 50725991.30696406 5302.979406961983 0.6512395506432903 6.813964964615907e-05 3629945.081428641 379.80369257214477 61787 3467 334360 ARDR_20190804 66624939.88527221 6174.7022729292175 0.06680000856190327 6.189733261880444e-06 1735390.759280261 160.80246299853079 67546 6554 897983 OMG_20200407 84295143.48762165 11568.428394424078 0.6010546134827301 8.24870445618763e-05 154129431.20269737 21152.289616821723 None 42917 477396 DCR_20210602 2108842695.1558366 57474.10623225155 162.15272524841927 0.004420508987364725 61401679.990154706 1673.8952602859054 None 11198 167821 NAV_20190719 8495917.144131789 793.9666649011945 0.1288700564068901 1.2025662358903039e-05 188236.7159120586 17.56553269411109 48351 11238 923849 HOT_20200913 105538468.2757785 10121.187191735144 0.0005973228061465788 5.720417796383862e-08 6372241.729581074 610.254365272141 None 7288 305234 QTUM_20191019 162955396.65261352 20475.475677198825 1.6957951835779828 0.00021308081586611795 183491266.91304764 23056.126846430463 177483 15295 181813 DNT_20210805 109052714.39195596 2735.257744029293 0.14425502551344055 3.6269283326350158e-06 8403957.86269246 211.2962981357634 70326 10249 294360 APPC_20200404 2761899.8655960998 410.71029368378976 0.025560106302794077 3.798980019944727e-06 55352.15259669528 8.226950204537697 24775 3224 735722 REP_20190523 214855926.80521685 28028.96778232958 19.449169258612287 0.002539620746701979 12742831.904879393 1663.925067803984 125477 9969 279308 WABI_20210115 5115218.003235291 131.13235432842205 0.08717398345128399 2.2221663212344043e-06 750267.4941381973 19.125191844910194 40801 7456 1296084 SYS_20190807 15948141.562214915 1389.8287864568101 0.028449674780527737 2.4792968397642158e-06 487165.0780397153 42.454855731920205 60947 4587 678710 BTG_20190826 232568647.7170769 23037.147851764275 13.28464148883887 0.001315232901703392 11777086.84732908 1165.97893295345 75030 None 269887 KAVA_20200117 14984909.015635947 1721.0848347037388 1.0947618923080806 0.00012563921868612664 6682963.16926649 766.9633707514145 10300 None 259913 VITE_20201201 9288037.339433802 472.42230762790814 0.016189527182202273 8.24155631195626e-07 977175.7794709613 49.744808001824325 None None 1181794 MITH_20191012 7385880.606997465 893.2769623503062 0.013608539591360954 1.6458694033962417e-06 1647106.1915997101 199.20739229207462 87 2082 581138 AUDIO_20210508 349897814.2534603 6105.834745030482 2.2849602577459036 3.987030753961802e-05 24688941.649961997 430.7977318532134 46892 5036 33719 DIA_20210127 53904188.50749784 1655.1640950468907 2.0890593049328294 6.41165833012418e-05 34643524.15647589 1063.2653640719354 22772 201 294987 GTO_20200704 7314713.328703351 806.5490879054889 0.011027589535532843 1.216618415043747e-06 7712923.2804174265 850.927980819342 16581 None 1271054 XLM_20210418 13668280868.298756 226903.85111761544 0.5957792518508187 9.885184377820064e-06 1561668884.1219337 25911.249525210562 498175 171525 26729 ANKR_20191012 9560738.886490326 1156.3127330080677 0.002392470854250008 2.893546769726198e-07 2647070.3928109524 320.14692972120105 15158 None 5253 DLT_20200324 2653848.9814728927 409.3984440209408 0.0323601467488623 4.992067679721833e-06 28489.506408708457 4.3949598021876 None 2584 None ENJ_20200306 101305659.23553914 11189.4449158057 0.11076305448993495 1.223273555181563e-05 8812125.297845205 973.2161948260501 53705 15189 23333 ENJ_20201229 129243859.89210571 4766.240581840489 0.14002228891893098 5.1567638739632595e-06 10959123.808621451 403.6044131467495 69849 16038 75174 BTG_20210202 186134153.64030868 5575.358702671717 10.605449431006823 0.00031751635697824574 30700595.877536807 919.1445797287084 83383 None 263524 ARK_20200224 36069801.925922334 3625.466837855261 0.2532826078055269 2.5453790996225627e-05 819280.9947164829 82.33414598567687 62788 21969 82103 NAS_20201015 15376708.56019714 1347.1159806795918 0.3385919591715916 2.9628209811658456e-05 2560947.136852697 224.09356463419476 23530 4886 905847 DNT_20210221 236560129.32705486 4206.611914783107 0.31490054691743835 5.59969423589216e-06 28634584.311933443 509.192245895786 63836 8800 221054 GTO_20210106 12978641.883306012 382.0581531451406 0.019003980442543415 5.571947560229703e-07 24615984.060380366 721.7381260866675 16505 None 786393 SNT_20201014 97075360.88747418 8497.193553744664 0.02501859184596098 2.189586645274605e-06 9700321.880605927 848.956463074029 112546 5700 109261 TRB_20210508 173230576.7385933 3023.028156627486 105.04592611197513 0.0018329480198487486 154817886.75722295 2701.419745362878 19890 None 320975 GRT_20210809 3163453402.37562 71913.6924851484 0.6697749146821048 1.5229040289785035e-05 138602541.9286903 3151.482160690484 None 16449 32100 PNT_20220112 28663009.022027344 668.6221309359179 0.8491248204913707 1.984593528514506e-05 8077885.900982007 188.7981565995265 82879 397 340029 DASH_20190626 1580498004.039249 133896.80868620548 178.0682299151408 0.01506150847389377 452580964.5061001 38280.56265443926 319912 27843 110566 DNT_20190812 4996580.613805785 433.5024447161291 0.007460493927156002 6.460253538367224e-07 274094.1392208948 23.734589827921962 60447 6305 717960 MTH_20190923 5834389.459968456 580.3871936880638 0.016746657936568245 1.666452708456931e-06 729982.5932026086 72.64025300908398 19524 1985 708112 BAT_20191015 290376613.5697072 34790.056020467586 0.21465801216347155 2.571645344778529e-05 40616836.44738909 4865.977156725655 None 30773 24857 MDT_20210809 16712026.545502698 379.88494822413844 0.027426509574033673 6.23487813250768e-07 2700161.8107900275 61.382874050681096 34494 317 745074 DUSK_20201208 15241845.021152796 793.5543653134029 0.050700833068745114 2.640844318329493e-06 451060.2165446251 23.49428476788984 18149 13345 1227849 CHR_20211007 194494402.85276777 3503.508386086569 0.34297758866495576 6.1819404263238494e-06 47033437.95599562 847.7460950756067 94880 None 75701 BRD_20190224 13661450.48123558 3318.6093088775283 0.2280488290165308 5.539711671849001e-05 354376.4673339593 86.0843469701064 143 None None ZRX_20211011 881836148.2730768 16116.045150862012 1.0400874189115787 1.9009568123933298e-05 107878005.43267979 1971.674934297913 None 20301 48982 IDEX_20200913 43094410.204042986 4131.042273113121 0.07990487404152259 7.652298870583727e-06 594534.7796690639 56.937175329506715 40037 1967 16691 RDN_20201124 13455506.072327279 734.7131443066586 0.2030022131486162 1.105723556598309e-05 2277325.3686635243 124.04260363046944 26373 4381 2057108 MTH_20200412 1920906.6920626094 279.1605322027212 0.005526755498154487 8.030966220831681e-07 64267.69706314058 9.3387830233683 19123 1921 1281286 XLM_20190909 1193312039.3460555 114817.10308160355 0.06042878381304705 5.814286348741424e-06 174429443.6860707 16783.106811815596 275731 103565 66255 PPT_20190920 14114890.02925289 1377.3706231132005 0.38970453531649457 3.8004924687368096e-05 1592849.9785491086 155.3385654695318 23976 None 830282 BAND_20200626 25344194.68145986 2736.6842192197987 1.2329790960691638 0.00013324964992423774 1921340.342878572 207.6417425811113 15439 1222 511773 BLZ_20190804 7675455.697888678 711.2128344906561 0.03682564884905264 3.4113585070263122e-06 362078.3297447462 33.54126889787018 36511 None 1145955 BTG_20211202 966290934.5352563 16905.194207055087 55.200885129271335 0.0009653435414107853 8754941.937445208 153.10491190398636 105015 None 249393 LEND_20190923 6123004.565321036 609.0996749881426 0.00542246896426281 5.398095701344959e-07 2945502.271914673 293.22626384982993 41561 5813 862107 BCH_20201015 4779193178.979594 418689.8928437735 258.9975634121367 0.022689625137378027 2149713345.9703994 188326.82952800838 None 327096 132900 VET_20200308 366502850.07380265 41232.831474778795 0.0058645369005539206 6.589047575005546e-07 139760328.95164606 15702.645787322794 118781 60693 236885 OCEAN_20210809 238792103.6023388 5428.0386442851295 0.5476706955087163 1.2452689559738857e-05 26389592.151030604 600.0346583445695 118563 3326 135729 RAMP_20210819 96876342.47752313 2150.396472741618 0.3025310514501932 6.716267137639524e-06 14121227.91784172 313.49489103049086 None None 126255 NAV_20210930 23452170.719806716 564.7316500540888 0.32751162679025003 7.883056525146977e-06 668756.2758254743 16.096660675974324 58406 17010 1031461 CTXC_20210707 28039630.00734028 820.9221509309766 0.155986994314174 4.565137153865468e-06 2956305.0236943443 86.51963557066792 20093 20589 663987 XLM_20200531 1471461047.7754753 151838.40845739577 0.07257427518790696 7.49566166079884e-06 402936316.7821314 41616.32057126747 283358 108848 78208 ZRX_20190726 139636870.47349027 14099.241113975519 0.23331464894640758 2.359419017041123e-05 33008653.471026465 3338.0349274318246 151352 15964 206099 KAVA_20191113 14969515.253422284 1703.1200298341726 1.09801999194394 0.00012476093404110322 10390515.099489767 1180.6072553246506 None None 858006 WPR_20210703 7615284.6388538 225.34973148837256 0.012517156301023272 3.701306093315803e-07 137240.10289456698 4.058171176223328 33791 None 6439074 REP_20200718 210426373.0755933 22989.65838721684 19.137488211539207 0.0020904726592365502 13427525.745882759 1466.7481512039633 134136 10246 213403 BNT_20210202 220992599.52200866 6618.5778705018 1.9599371137254875 5.8678521481337695e-05 96092771.81496224 2876.919741790906 91547 5371 79308 STORJ_20210408 346378547.49465394 6149.438383140601 2.3848623489712053 4.244053964071275e-05 298951726.17175233 5320.085912180648 97356 12110 70227 IOST_20190512 182844529.29744756 25041.850613106984 0.013396700884924317 1.8392690056035913e-06 52148193.76397855 7159.565426756043 197921 49499 105349 BCD_20200109 73612822.76742488 9147.449522874207 0.3850653734812322 4.798749918211103e-05 11507638.61128389 1434.101418817732 24206 None 4380689 GRT_20210127 657517731.293615 20179.791217230937 0.5363825408644367 1.6467727639465157e-05 187952241.91691747 5770.40841807884 None 3378 38348 REQ_20200107 8719441.282042157 1122.8424646419003 0.011338295536653524 1.461757349488773e-06 105357.39190514538 13.58290066107856 40128 28632 1668382 XVG_20190316 111808473.21942346 28492.263528223317 0.007094526366858656 1.8077688480289882e-06 12386748.83636577 3156.289442991577 305035 53323 418037 TKO_20211125 122614922.87207565 2143.339630990304 1.638001617385776 2.8636919162444797e-05 21992437.586529795 384.49025365170877 341493 None 26966 NAV_20190622 15526017.319710804 1533.7726003008636 0.23529261707756616 2.3256001383522785e-05 513972.2809783256 50.80031930446808 48348 11253 919129 REP_20200229 125732753.91180174 14377.953482143415 11.39007739525407 0.001307237534215313 28199508.27493298 3236.453483517828 129977 10120 295562 THETA_20190123 34878749.01564943 9765.284400246024 0.049090242099913334 1.3744190629299681e-05 3171686.070228368 888.0025051982791 None 3812 514220 ZEC_20200719 568063275.5466624 61967.09548175983 59.038115932192966 0.0064401638418058495 249283711.8695756 27193.07556117594 71611 15886 235720 BQX_20190528 16715260.379426489 1895.6433847869773 0.14183531089296342 1.611681322865282e-05 1697937.8949962994 192.9374833052585 60958 5777 448340 GRT_20211225 3654485092.6419854 71897.94410706239 0.6969834152525397 1.3706452276572402e-05 118767237.98789658 2335.604325551403 None 20342 26230 DREP_20210718 0.0 0.0 0.44430650046234915 1.4056953066841861e-05 1094819.4918342417 34.63785966976132 4081 None 319856 TVK_20210421 98131888.43552475 1736.9852906606905 0.44732317303706176 7.934923990128725e-06 20881376.829319596 370.4081253491381 44405 None 68295 AXS_20210212 82035548.07666408 1720.70470375145 1.489107153480033 3.113882004762902e-05 16874766.15990658 352.86937247675803 33770 None 20130 BAT_20190801 314895213.0432381 31310.075184657137 0.24682318519470856 2.4526305993043677e-05 20991902.316490695 2085.9216251673697 None 29117 37775 DLT_20190908 2672522.7619594075 255.29281925237277 0.033314345061497656 3.1820503867095483e-06 237037.15108995204 22.6408220512201 15007 2654 9139526 LSK_20190929 116232410.48373786 14173.18899970518 0.8573411511842732 0.00010454277014808713 6012480.66163101 733.1520048471453 181252 30993 164016 QLC_20210527 9752366.616476834 249.3709307316336 0.040770514433984335 1.0399719226118608e-06 1030409.4363217261 26.28362426733761 33918 5641 940522 DCR_20210620 1604656911.8370285 45001.04222208933 122.99610301651695 0.003454595916983163 33041392.651805982 928.0347697767149 46424 11255 151114 WPR_20190608 7978275.502483859 992.8097579933418 0.013264941331458063 1.6522668020839635e-06 563080.0381573935 70.13664295350253 34898 None 1388186 SNX_20210111 1976601021.1654656 51288.53991556589 14.256831706623853 0.0003708504303312141 341382602.43641585 8880.085535576198 54809 3051 45504 QKC_20190605 46493118.60616495 6062.5467188361545 0.02201678044300362 2.8662270959761673e-06 16770951.661310827 2183.305420217825 51924 9191 157671 KMD_20220105 96382719.05512716 2083.384842971484 0.743736733642827 1.616435829444258e-05 2805775.9825598467 60.9806753175912 117917 10010 159072 TLM_20210902 409136137.6445278 8412.338402361249 0.32989637352911766 6.780285000584416e-06 138650220.54955527 2849.6463924811706 62583 None 13411 ZEN_20210809 717921411.0525273 16319.263844883108 62.99005813479964 0.001431971284396058 47748374.424316816 1085.477662298562 117875 7477 1280845 FXS_20210523 35309287.00617193 939.5524528113027 2.624007148225729 6.98713733820682e-05 3295021.9077873086 87.73897821763728 9687 None 139440 BRD_20200318 6296544.115596122 1159.101000499828 0.10085869866335313 1.875169600796303e-05 334244.2012339772 62.1428368304072 178 None None SUSHI_20210826 2372863566.4195275 48410.03837769689 12.300522200936065 0.0002509760002660244 393952636.69444245 8038.086142741257 127091 None 5258 DOCK_20190920 6256582.524600717 610.1569935660161 0.011175902377240457 1.089770220597137e-06 4131190.989339911 402.83538311413747 190 15171 179200 KAVA_20210610 288703343.0326786 7691.387838145015 4.112768500333556 0.00010980954394568281 47181951.15574336 1259.7423216160757 106196 None 74195 STORM_20200208 9350962.94270519 954.6689264377075 0.0012616627836946018 1.2879604459435678e-07 1129251.8652524487 115.27896001608694 None 2523 2008734 SCRT_20210718 61624431.887834266 1949.7920538885473 0.8840490526554965 2.7969580110983338e-05 2127124.887908919 67.298064264336 85803 None 61178 DNT_20201015 6747907.804088315 590.4701006438736 0.00898257818889702 7.860130874974341e-07 261255.70760191375 22.860964974658607 58263 5966 478019 SNT_20190618 102388508.18883155 10984.736159860508 0.028929233720786866 3.1048820279184648e-06 35538410.03600311 3814.223760178532 111589 5742 303277 DUSK_20220115 374093948.62038934 8680.697818356986 0.9612867593027218 2.2287863533653094e-05 129742021.75592014 3008.1268128291917 None 14220 206848 ADA_20210603 56498220769.12978 1501455.0186033037 1.7580638632608245 4.674723677507458e-05 4311239392.211899 114636.6368556989 487739 499421 6299 IRIS_20200914 56380979.349802 5461.997908471182 0.06891153915063718 6.672811347489357e-06 5806911.526303884 562.2922605441329 10458 None 427030 PIVX_20190804 27693384.208364394 2566.582464628832 0.45636734027161746 4.2287301551726884e-05 365610.94724906655 33.87775375804061 63308 8615 295552 BZRX_20210105 25637870.433251537 819.460116457827 0.18313659736880364 5.853572659174128e-06 15917725.111070361 508.77630055980774 16991 None 145216 DGD_20190426 52029902.250137344 10016.595820672146 25.97872770448197 0.004992907936054272 1908513.7819871954 366.80139676389257 16877 3341 470646 BEAM_20210703 37886215.677449904 1120.8984941022063 0.4145000142055438 1.2241099470772953e-05 4630333.562884549 136.74396087721584 21503 2503 188205 MANA_20190816 48178944.349828 4681.705676395796 0.03629648587662814 3.5270483040883914e-06 14097189.189929109 1369.8700032216911 45648 6350 132060 MATIC_20190618 46777411.148546115 5018.1743954919975 0.021710355514659194 2.3301029438864925e-06 33740043.09616906 3621.210794643903 16424 656 215826 AION_20190725 31181917.206701923 3172.0910153454315 0.09518029210583766 9.688577466936703e-06 714375.0607304818 72.71755489716956 67558 72603 240336 VIA_20200321 2410272.585359053 392.4028218711034 0.10494443506698942 1.6955131533451112e-05 178282.08450605508 28.80377783660908 39452 2180 2066197 XRP_20190906 11012302414.124718 1041943.4842906178 0.2561608213480815 2.4236857333375116e-05 1197647728.9781425 113316.38066322643 937921 205119 31314 OMG_20200223 154762785.51194435 16032.95706021205 1.1049202642929685 0.0001144645274940503 126903460.57472971 13146.599914466531 282513 42937 404229 KNC_20211002 149394194.10913017 3102.4523155366196 1.620035361901408 3.36335127525801e-05 32652265.52738438 677.8928502689987 186866 11728 105658 GTC_20210704 104256920.97358727 3007.391592946167 7.373219653921107 0.00021227461307417667 31772401.213077363 914.7257901582739 51615 959 25905 DLT_20210703 5297669.100559767 156.74463779784307 0.06463646359327059 1.9112914370862317e-06 144430.29488670884 4.270784175475 15203 2597 None WTC_20200310 11061563.617534274 1397.1491442912127 0.379659439352907 4.7970707630436896e-05 14319532.205792198 1809.3007091288669 54973 19438 905715 DASH_20210825 2594247468.677835 53968.71323302573 250.42103521205777 0.005220289550875021 504274031.6342217 10512.121938512753 403317 42028 76415 KMD_20190513 123637371.30909243 17817.444005421963 1.093185213820028 0.00015725692721883138 1268838.5606031513 182.5250201472867 96954 8363 329492 DCR_20190314 174491895.21723723 45130.3565095415 18.445258587161177 0.0047713778518572786 5124217.997280447 1325.5211438093102 39980 9383 242491 OAX_20191015 3668631.1774027045 439.54776891078114 0.07023848059036805 8.415445963973102e-06 263088.528556469 31.52128686724141 12247 None None WABI_20201124 4884312.316746947 266.54548572177805 0.08288189286045206 4.516120055694639e-06 879098.5876315678 47.90086984644792 41050 7517 1314956 BAT_20190401 355349346.9830383 86597.08722787016 0.2868328251482857 6.989903750728248e-05 35332995.15704844 8610.38952724592 None 24460 78239 MANA_20200207 62666687.915187925 6434.421069552719 0.04704097495078974 4.833264229543968e-06 23357757.753417976 2399.9123136807575 46183 6551 71924 TOMO_20200807 70889141.42162026 6025.263493075179 0.9912239513366159 8.424325609249225e-05 9902111.857913885 841.5718203518846 29029 1622 87241 SNM_20190708 8627713.813317502 755.2698135299784 0.02106005240249048 1.8413442657782473e-06 491105.5115606426 42.93884461072584 31275 9982 14838367 QKC_20201115 29761077.588813912 1848.993755727326 0.005078736839344845 3.157228427244116e-07 3542546.322563463 220.22460127840137 None 9217 94365 VITE_20200913 11406168.0676363 1093.876504979775 0.021241640353582492 2.0343661569049243e-06 1190079.336400774 113.97693801916215 None None 366677 EOS_20190522 6553657597.851214 823537.8308844081 6.286453101571447 0.0007900471844673579 2882219062.8960333 362221.5928231368 947 65003 118263 CDT_20190426 6035823.53186483 1161.9103222057174 0.008934881877581083 1.7190053217086143e-06 274348.65658954554 52.78265646290948 19903 289 416908 CHZ_20191030 39480436.677213036 4195.493581973081 0.010906570431865761 1.1589800161656788e-06 6604908.359522896 701.866534958337 12762 None 374824 MKR_20210620 2333954905.6612053 65470.214445427475 2586.0574341794713 0.0726566866881033 80977800.68982297 2275.1152451797498 160765 28228 30673 VITE_20200629 7341172.737933034 804.9386310251989 0.014661969137817863 1.6064808121946709e-06 1477769.6015375757 161.91607603315435 None None 610185 PEOPLE_20211230 567106843.175847 12227.561352477069 0.11345220784074048 2.43794754625742e-06 108716144.39871773 2336.1754038976433 None None 80889 QKC_20200518 10605056.121699024 1088.9099418413584 0.0030118548839539907 3.083905073091055e-07 2464487.9626164 252.34439318360785 49486 9190 750672 TRU_20210707 53648650.66155718 1570.682840112399 0.1538593588955264 4.5028694884475874e-06 2487239.881716809 72.79190979495397 27178 None 106582 BTS_20191015 75175618.51994662 9006.187444819987 0.027738074572786365 3.3230760701307016e-06 11887407.241863856 1424.1348453252797 13545 7124 134466 SKY_20210819 29908639.5608053 663.6520450374553 1.422016383082532 3.1593337847206686e-05 696237.4594370219 15.468503414983543 19658 4415 978551 NXS_20210111 21275273.24605184 551.7595982784029 0.31291984020357666 8.159118469727544e-06 410376.6297507981 10.700221300017166 23999 3524 514648 PPT_20200312 12201657.627118312 1538.336600956531 0.33676928134700423 4.2423111633304445e-05 2203414.576303434 277.56600058974567 None None 1098941 HARD_20210809 60087220.17714618 1365.8565263630617 0.8186544189018917 1.8614195389483684e-05 12539946.42382638 285.12765278890504 None None None CND_20190704 23612720.628656317 1967.494696777154 0.013516139717604117 1.1261129962703537e-06 769984.7090478247 64.15217701980839 36211 6137 575045 BAT_20210124 488756193.644432 15266.003677940742 0.3295067024070672 1.0281882739285914e-05 484610849.33079547 15121.731638858842 128790 50071 23802 AION_20190623 46792015.249281794 4361.308640995266 0.14692029999888906 1.3696931633521165e-05 3247582.0940472265 302.7621772944155 67357 72579 278705 BCD_20190811 135264195.8474825 11942.375005497159 0.7259615587246835 6.410446600455859e-05 4647902.157308807 410.4229518146058 21440 None 3532175 MFT_20190723 16195425.829011152 1566.4762060575445 0.0018262486317468434 1.7664706228985292e-07 641100.1613148866 62.011523601526875 18857 2153 894559 STORJ_20190622 39447747.25855156 3897.7890218364505 0.27354819127742835 2.702573221867416e-05 5416640.256471219 535.1476403944363 83687 7753 209007 IOST_20210602 708403186.7166274 19307.434914964164 0.03139193081736953 8.559056840200675e-07 131493267.41322199 3585.1835824980367 None 53514 156257 EVX_20190603 18051560.508426398 2065.2119996713072 0.855936365502696 9.791306523670507e-05 6531926.751654005 747.2062129063297 17320 2441 738381 GXS_20190629 126599464.93211143 10225.867419368868 2.0910685208346305 0.00016836187898233495 13312692.395957151 1071.868226107949 None None 715062 OAX_20201201 3945117.773903659 200.48658629012797 0.07092371541290812 3.6006236358528827e-06 229589.35432555995 11.655690214649418 12756 None 2487242 MANA_20210120 165601867.20528197 4573.015507030153 0.1239037050656099 3.437769747528827e-06 93668219.4599935 2598.8712040043106 56905 7989 67623 GXS_20190723 90498881.1180204 8746.892497024422 1.5069030051756762 0.00014575142481475226 4149565.9289897983 401.35638752841 None None 762110 DUSK_20190830 12203155.362305146 1285.9419553885361 0.12447218469551248 1.3116607944963066e-05 3718061.4966746005 391.8012292179327 20390 13310 200786 ETC_20200331 574612202.3818271 89434.45117025945 4.943596469006263 0.0007699689722301257 1489459820.0524514 231984.51856131892 230747 25360 323605 KEY_20190730 5467042.609871109 574.6628184228986 0.002091237597661627 2.1985381180227984e-07 799210.3672369935 84.02175145733185 23883 2830 1002597 BNB_20201231 5644561342.625012 195468.83451201874 38.1509269709647 0.0013229298477371696 595689639.2379647 20656.263590540046 1435421 83282 904 XRP_20200309 8932130947.405481 1110330.1270400384 0.20384611735996336 2.53395843296107e-05 2212569691.91303 275038.8234982524 946541 210641 33270 KAVA_20200523 18503494.678462666 2021.7809310271157 0.6805089141769893 7.435568091245099e-05 16888389.357649587 1845.3067462331962 None None 364805 MFT_20190904 9448644.001674788 893.8134135560152 0.0010487574289691148 9.928914106500494e-08 875713.3876588156 82.90652125843495 18785 2212 866690 LUN_20200610 2740999.2350742766 280.3995830509636 1.0126000811462061 0.00010369396346902292 845608.134037246 86.59337540316307 28634 2125 3112082 QLC_20190401 10848263.766916903 2642.7120812805383 0.045201099028820434 1.1011300338668911e-05 6536095.329661925 1592.2380265840363 24578 5843 940522 EPS_20210916 258396980.44882852 5361.773178326956 0.6884896483060894 1.4288474565459439e-05 31253886.11780917 648.6231971167496 22307 None 42567 SC_20220112 680994037.4638474 15885.550750579447 0.013629520730639754 3.1857329374724496e-07 18748723.283549048 438.22836092605024 146514 50974 92361 ICX_20190512 164846993.33913323 22576.96085893254 0.34728116286258875 4.76791625467975e-05 14377884.33887874 1973.9783143484244 113568 24219 291267 OST_20200305 7194107.1208068365 821.7756305859323 0.010411181312417108 1.188739425236332e-06 393742.5763908467 44.95717727936306 17850 755 839878 EPS_20211202 218754246.25343478 3827.248940799611 0.44526120106677947 7.788578964826524e-06 11425944.999043208 199.8644271263732 None None 84383 VGX_20220115 4060286534.5507464 94187.40683636896 199.40869932075225 0.004625026091962402 122350782.32096493 2837.767672794729 442850 14475 12315 LIT_20210823 143955176.75288922 2918.0053783471003 5.1833319461821645 0.00010518560748032554 22500738.1127379 456.6085737355305 None None 606433 ATA_20211125 176559106.8978574 3087.378574455631 1.0281358908749028 1.7976427416128737e-05 20079523.055230964 351.08013634820395 None None 239445 ALGO_20190821 169623899.3333426 15763.509097643333 0.6256752810206436 5.8155886042677875e-05 74104201.52489221 6887.910758013591 11577 569 206614 BAND_20200914 176154878.94635138 17066.317588820522 8.590383484770689 0.0008318201726877697 112510098.08558697 10894.527512606044 None 2401 119492 XLM_20190122 1956266778.122597 553933.470705396 0.10221385005256203 2.8945411617394593e-05 83260631.58667424 23578.14769291262 261385 98846 59724 AUTO_20210710 26267677.966749743 774.4777117674961 849.1686692787895 0.024986355770619872 1213303.7300385353 35.70084454753941 70416 None 10455 POWR_20200719 40880350.72523849 4459.610489298545 0.09490900858592932 1.035313467758284e-05 3493498.421366459 381.08774068146954 81471 12705 226515 IOTX_20190826 19837771.511762425 1965.0356135791017 0.004816922053784319 4.768946437433405e-07 2897709.630060703 286.8848999982846 20860 1765 702138 PIVX_20210127 26322555.638378374 807.7043432323161 0.4032634907721166 1.2376803826194549e-05 1327305.855448335 40.73714721555764 64877 8704 325207 GAS_20210806 115917724.75230296 2828.8920941771735 8.322394301492052 0.00020320000996955072 23607480.033550125 576.4014542441632 408773 112565 120320 SKY_20210610 29828636.15360708 796.3057006222379 1.4935363809451347 3.980797750971312e-05 998490.81399948 26.61327864152416 19479 4394 327198 CMT_20200319 4876788.439474682 906.1702753764376 0.00610662756912232 1.133426264190572e-06 7568943.786490083 1404.840819696967 286442 1637 911838 ZRX_20200518 245428491.99124998 25380.306564734485 0.3741779594085468 3.873618478657155e-05 60441088.821268 6257.068665890916 153145 16044 121592 KNC_20210902 187176323.74139693 3848.5548568394343 2.02827605028403 4.168669553310986e-05 57789713.7827633 1187.738820398862 179922 11390 103593 POA_20200325 1875475.8875102205 277.5053154504177 0.008517027699812576 1.2604274245545321e-06 184005.95701452985 27.230879442557118 17363 None 758180 NANO_20190225 114289850.7173693 30342.5989602784 0.8508958472241358 0.00022714095003553426 3174454.898244083 847.39948347895 97123 44758 310679 AMB_20190130 15098845.807005264 4419.341385103494 0.05561825134200548 1.6283085382819945e-05 350167.6109714049 102.51687117389096 17904 4978 611782 SFP_20211230 165532112.9128646 3558.4301746276624 1.5384703755530558 3.305982447106182e-05 24256508.34042034 521.2423461367382 449277 None 24619 BTG_20200323 119628127.25325336 20504.40599907927 6.813489440521942 0.0011677129325078977 22413927.534975152 3841.3551938931882 74875 None 195914 DNT_20190325 8099961.006932707 2028.4904210238658 0.013940436214601927 3.4910167703800855e-06 373582.13272951456 93.55385085489849 60420 6448 957318 HBAR_20191118 28471608.852255 3349.835234769113 0.03271924971864734 3.844984539685949e-06 2115294.0681082387 248.57761283353216 34986 6160 82038 ETC_20200325 589293639.6904784 87194.99859437134 5.078058948496344 0.0007514974692791231 1773761462.3494914 262497.3958711498 230975 25316 345588 QSP_20210826 34354613.97490333 700.8865593926824 0.04812905615276694 9.819062032940498e-07 451175.51800125954 9.204669181412445 None 8505 208905 DOCK_20210207 16674721.733665941 425.23214771540586 0.02970341143411471 7.553605118301172e-07 8371531.55735144 212.88882510984317 None 14834 229507 FIL_20210127 1022176234.7866141 31385.937335900668 22.1925456760997 0.0006811965451102782 108009750.55364281 3315.3415560884523 46577 None 34991 ORN_20210725 132941661.31907128 3891.0946402540226 4.5878935386160435 0.00013428213392566927 4333290.83178797 126.83021846852935 None None 85178 EZ_20210428 26081427.325827822 479.27094292837506 16.038592651207914 0.0002933259683651225 3402054.6166913244 62.21935967660247 29479 None 107419 ZEN_20210723 550092148.7080287 17008.36875527047 48.634514710535925 0.0015022410011780619 24970006.123323716 771.2828476110603 116590 7439 1253134 GXS_20210120 26051308.671012014 719.3942951336911 0.3700249670281795 1.0266526225396096e-05 13590107.755380295 377.06427973533255 None None 451509 KMD_20200430 64926444.527876474 7405.482136170975 0.5432607763494773 6.196408880531089e-05 7146504.90601146 815.1272536539901 99783 8385 159254 DGD_20200305 83619001.30738877 9551.918605989318 41.833538812468646 0.0047761576636895986 1335043.8311272997 152.42267344353067 17652 4708 323922 ANT_20210825 184871965.55495182 3847.1093835365336 4.965659488537275 0.0001035143885547135 20935241.944741745 436.4171111928762 86835 3088 132148 LTO_20210711 47963656.43090214 1422.4196276690195 0.16897555280427498 5.0115474860315375e-06 4072825.8359724497 120.79356889546233 10820 4314 318165 BAT_20190411 364352479.7498237 68612.99098024673 0.29163028900364346 5.4945718354102666e-05 40007501.89439553 7537.766185573482 96945 24828 78239 STX_20200224 92913106.77998163 9338.930890852527 0.1690401469256886 1.6987793228666608e-05 1194783.0450690535 120.07045481137885 35744 None 32573 EOS_20210408 5693328138.7002535 101076.61354079135 5.928508879930924 0.00010534427982744226 7829960053.765159 139131.35995018404 209068 81362 56951 XRP_20200317 6240388468.092608 1239215.1526809589 0.14233610354273207 2.826507631465323e-05 2529761544.987209 502359.5654736442 946555 210795 34201 TNT_20200626 15130699.452185985 1633.8237192774707 0.03526470741160047 3.8111026636682284e-06 522768.4787970167 56.4962674656905 18003 2603 432834 FLM_20210718 0.0 0.0 0.346511847441017 1.0984222095643643e-05 6773512.244013928 214.71636079766407 23821 None 74148 XVG_20210105 143174579.944858 4576.271584680672 0.008712011133655963 2.7846094615207763e-07 9372399.360036138 299.5688542486489 289027 51314 225034 XRP_20190616 17417379239.959103 1975378.968731004 0.4099321007992998 4.649116343720689e-05 1691204116.9115326 191802.61036328555 926053 201860 41010 QKC_20210722 93851751.48346964 2916.4536482413746 0.014376663513826438 4.451480523698041e-07 6288169.358588798 194.7020837105388 75202 9534 284050 ONT_20190702 927520413.3868815 87527.40218202665 1.4278364858648507 0.00013451165596669085 214863611.01449722 20241.57556601238 80847 16274 247326 QTUM_20210106 268627566.7337437 7905.414235967902 2.61453971551519 7.67265203665392e-05 358194320.7774581 10511.60312663097 189041 15021 249496 FXS_20210610 33262126.8154076 886.1678795182288 2.2904063071150227 6.115308265325855e-05 3029056.386019752 80.87479280869098 10936 None 165484 KAVA_20210115 78456489.85375515 2006.9321477341678 1.6791093100674475 4.287609410628974e-05 36143510.626436576 922.9253590932259 52829 None 85719 ANT_20210805 133890629.7903882 3363.2313532952553 3.8172354853266945 9.59950532735232e-05 9105859.67566046 228.99228722627313 86061 3061 129869 DLT_20200914 3472889.2402243973 336.357404003916 0.04233154768490201 4.101433922860763e-06 99509.57666227658 9.641318961691058 None 2548 None SXP_20210105 54745541.974362694 1749.8250612762956 0.7154533290214764 2.2867947236354095e-05 82328732.3659526 2631.463201597609 91643 None 116678 OGN_20210104 26202656.357807018 785.0001597246442 0.13044022724748075 3.925184466787157e-06 12495529.457614651 376.0132833734974 69890 2484 203625 LEND_20190314 10060721.983837094 2602.09203016953 0.009018398824086806 2.3328698010334673e-06 479586.38519114995 124.0588952454681 11640 5931 427366 DLT_20190909 2621546.582066735 252.0222132116571 0.032634174868111966 3.1415681013547873e-06 125300.56502037517 12.062209623519 15002 2653 9139526 SC_20200117 64227046.04583879 7370.950651839294 0.0015228972956460264 1.7477373637914094e-07 3532474.4040085874 405.4007791709685 107535 30200 233431 CND_20200701 12561042.984040402 1373.0607022093382 0.00650934015194418 7.11701387449683e-07 40582.03328896695 4.437053330000056 34312 5935 376483 RCN_20190930 16514022.397447603 2048.7977670578016 0.032472408341855136 4.032892938194047e-06 5776945.013700775 717.4645164848952 None 1118 2070155 POWR_20210708 91187475.7603238 2683.7713649516895 0.21301865185483998 6.271383795660191e-06 7307323.382350894 215.13153449563993 91179 14004 143959 CND_20200323 5697148.628121565 977.4355257615682 0.002976359948937878 5.104469445838619e-07 42980.037177616265 7.3710938971759825 34837 5967 433768 FIRO_20211125 101722337.35387328 1778.1319916091152 8.063561505764707 0.00014098951368187847 9721335.663770556 169.9753125952415 76947 1587 157714 TRX_20210707 4648866287.921184 136105.8370410632 0.06495016041981513 1.9018083194374505e-06 905777527.5900065 26522.10905093654 1066832 113750 20767 DLT_20190811 4337012.403894753 382.66257435541814 0.053481256155313565 4.722546704968966e-06 373028.6920578015 32.93949221051397 15046 2662 2977956 QSP_20190411 0.0 0.0 0.028721097647270835 5.4080536954707015e-06 390005.696088776 73.43632098921358 57121 8534 846011 ZEN_20190302 32346428.476930805 8467.631345791908 5.47091997728751 0.001430891991782366 485578.20262984495 127.00057109437158 24929 4243 303166 SNX_20210117 2185947869.5509086 60242.71956486277 15.679547900725368 0.0004332626158898779 315529679.184665 8718.823722469548 None 3238 36126 LRC_20190531 66414686.591739185 7990.5400773372485 0.06921752038157251 8.332790258218558e-06 39563284.78320718 4762.848368552692 35756 2464 867172 UNI_20210707 11608802353.412985 339928.9529248482 22.3445214884392 0.0006542708530031297 739973645.6841846 21667.19876333522 565691 48236 1526 QTUM_20210324 719908858.120917 13197.99063867865 7.026885809371169 0.00012890542644426934 656210245.5701829 12037.916060840747 214211 15762 117369 FTT_20210708 2599630535.1904516 76510.6603908628 29.99119073768108 0.0008827024685693786 66136412.95441651 1946.5307492389725 150002 None 2913 RCN_20200719 29945179.204366203 3265.4265483679474 0.05806569699755516 6.333534907835819e-06 479983.3982262318 52.35434628427 None 1134 1028220 ETC_20190627 1013458364.1124281 77947.40952877684 9.063966694743211 0.0006979640855258099 1542748018.3574772 118798.17590836127 228039 24704 633324 QLC_20190818 3136700.0462427265 306.8702633549743 0.013069583526011355 1.2786260973123926e-06 88340.86240052452 8.64258083661109 24862 5756 940522 EVX_20191017 7345721.287398718 917.266615775845 0.33695969208251 4.207645026494702e-05 680571.8675500596 84.98360192494536 18189 2897 495281 UNI_20210823 14791766057.127138 299832.58597251377 28.42693985918856 0.00057683189455359 383614067.72628266 7784.19451970787 None 50880 2131 TOMO_20200325 16593881.058100382 2455.3182625493832 0.23701872340420824 3.508058836270516e-05 9407017.877652965 1392.3107725281623 22146 1510 236393 ARPA_20210217 38497067.2128274 782.8946731964028 0.03919173886409248 7.968611135858607e-07 20450525.970077865 415.8077536300242 24081 None 879227 RLC_20190719 19324591.395425703 1798.6585678156753 0.27329693161949026 2.558643286947112e-05 120325.65982737191 11.265052993475726 24942 3317 855809 ZEC_20210207 1013087837.6216135 25835.826425533814 94.19953980988791 0.0023983067276097227 954370327.0227962 24298.1311856643 72428 17102 125065 TRB_20210722 57276793.13803805 1779.8351192571097 32.09562872356741 0.000993815170168685 27918551.711285304 864.4753607658976 None None 258398 ALICE_20210708 98448972.57598564 2897.4502511772903 5.671469817342665 0.000166923029231222 77888259.12720819 2292.411768692383 81263 None 50319 RCN_20201208 22118863.141079593 1151.6007659842924 0.04308077778598596 2.2451356130979867e-06 248795.76634989545 12.965880936389697 None 1130 2235561 JASMY_20220112 337081243.14747006 7867.586980346225 0.07076187589615197 1.6538623954930899e-06 28313938.029372323 661.759694497402 51268 None 70194 JUV_20210707 16184964.599955862 473.85061602664814 7.337603924900271 0.00021484255055716325 1987236.9108788578 58.185621745773744 2545070 None 41859 MIR_20210805 239136872.71421847 5999.424938371539 3.0730203306024997 7.72676334455446e-05 27050523.68939117 680.1549368637286 52626 None 15673 MKR_20210104 618240722.059604 18521.75057894346 677.8528955010664 0.020592350877863614 108833703.48143499 3306.2362413756923 80192 18501 39675 ZIL_20220115 886357081.6171663 20567.55532414951 0.06445039157456646 1.4943111597068009e-06 53901829.40190393 1249.7380269705368 379855 40349 35628 WAVES_20190909 106148523.6492525 10219.68297270374 1.062030469467558 0.0001021855624246313 7107509.74317581 683.8644477960082 142564 56912 33279 QTUM_20190916 198344306.58090082 19249.400984520365 2.0658264509489648 0.00020048935310641472 158252465.2159532 15358.47039041794 177875 15333 210417 XLM_20190512 2029944771.0002365 277357.3124824995 0.10490134673500967 1.4402187326052909e-05 333180865.4862592 45743.29489125695 270422 100904 71858 KEY_20190729 5010728.472088267 524.4915902482192 0.0019112872384261393 2.0042381335782558e-07 52062.76827880747 5.459471680978668 23883 2830 1002597 ANKR_20210108 60576298.73898365 1547.5803796315006 0.009338065152349143 2.3663187015089845e-07 17588270.20729407 445.6967480917951 31515 None 5158 BQX_20210617 547239021.4276512 14288.637601037944 2.4617670608564604 6.42777580059698e-05 2092387.2785741487 54.633098835991305 82250 5907 20141 LEND_20190615 10371490.7607581 1193.637156611504 0.009251239274431845 1.0661764189821826e-06 2514699.3717765417 289.8112449028744 42118 5868 1092370 VIBE_20191026 3314378.5226007225 383.6489269546858 0.017803641984635916 2.0598320702674136e-06 289402.6386944999 33.483083793607 20121 None 1006248 DYDX_20211204 813673066.4190992 15153.656589718674 12.328407517369017 0.00022990569897818387 265627252.24443144 4953.536700411007 None 2434 12183 OMG_20210804 590122541.9487183 15359.518609406085 4.206392738169115 0.00010950421791292386 155975534.75555205 4060.4812746018283 326010 5006 264742 MBL_20201031 4766827.442803731 350.98059718605 0.0013502597595303545 9.944669757784277e-08 1058869.4057691868 77.98578371807812 None None 620150 MANA_20190421 77327269.43080753 14562.156218210543 0.05881753424061176 1.1076804641584692e-05 6885193.401855033 1296.6531701224694 44351 6181 119897 APPC_20200501 3175222.817496659 366.67358890862994 0.029023284941386267 3.367085993355793e-06 130342.76159575288 15.121489100585952 24694 3212 1060091 BTG_20190904 192486463.06701443 18112.22049516788 10.963944055437358 0.0010317234888677221 17491542.317783754 1645.980221581984 75051 None 255203 NXS_20190509 18030893.693466842 3026.92046089392 0.30198512962704527 5.0695488714738954e-05 243299.20540645762 40.84364066939606 21326 3512 725458 CTXC_20211207 89083569.3263655 1764.9276954873446 0.4735918962765634 9.384047103161656e-06 140724938.59158972 2788.412265318485 22977 20780 491291 CVC_20200626 18599849.379467312 2008.425002901743 0.027726050735874388 2.996041036669118e-06 7815804.411307717 844.5656748567932 85285 7991 100053 CHZ_20200605 59871266.217745885 6125.595008911616 0.012527898853168866 1.2814818804215842e-06 7790485.406215775 796.8906841253 23755 None 340266 MANA_20190626 75312084.15296361 6378.894653840224 0.05678014979711034 4.8026237343162324e-06 21516633.537050657 1819.9369898964783 44859 6274 136694 HBAR_20191026 24666552.383681357 2853.8517965416736 0.030693857879365082 3.54523867122489e-06 5030346.358621036 581.0210795374772 None 6168 85439 REP_20210804 160740160.69513237 4183.515499332768 24.442580890499045 0.0006363090350313995 30060053.81464245 782.5476336347947 152408 11293 167896 ALPHA_20210825 474303533.0846629 9870.060975968583 1.172219442311694 2.4408831716568017e-05 110554554.48367804 2302.0497856362226 None None 63427 TRX_20210217 3732214836.664188 75889.45944657335 0.05235892880150863 1.0640830678753814e-06 2605251117.9870653 52946.148167446234 597328 84129 27627 ELF_20210218 116760954.9503098 2237.7807382181545 0.254123163466253 4.8738145616340885e-06 22922258.645893008 439.62477268913835 82621 33311 415664 DOCK_20200518 3184879.275177365 329.0891103921903 0.005696925375194643 5.849510467261828e-07 1406076.8143283715 144.37368407528 42504 14985 399786 ALGO_20190830 122271929.17193434 12884.749806117736 0.39929346214843 4.209721014347373e-05 36937575.555589 3894.300878325019 11785 585 206614 FRONT_20210916 94718661.85554445 1965.3979089665077 1.7402081533615514 3.611182189806977e-05 131494834.25476538 2728.7069227618563 81135 None 411244 CKB_20210704 330383634.65213174 9530.235077166131 0.012286842551140256 3.543374066818887e-07 13430202.46559874 387.3104984511527 48950 4965 123301 XRP_20210610 42088605425.836 1123751.6934750907 0.911214403091132 2.432911991814265e-05 4800163646.11722 128162.76452273654 1865332 318919 10950 XRP_20190804 13542119343.85811 1255063.873029981 0.31581320947219194 2.9263462225453738e-05 1065829329.5276005 98760.45519292301 936888 204306 35107 MANA_20200526 53055583.70510946 5969.8813811519685 0.04038260282023272 4.544528785609886e-06 22368140.33542373 2517.2388735667164 48741 6936 48961 BLZ_20191213 4108678.368312355 570.3240118723869 0.01938741850357334 2.692720676133185e-06 203809.4732234831 28.307120024232972 36174 None 601205 ADA_20190523 2430816641.9427247 317111.4818886575 0.07812899993928989 1.0201825963863646e-05 238153710.10193756 31097.322441043973 151528 73243 118037 RVN_20210206 238539137.82462022 6293.741610760719 0.029773902103990554 7.83287664964336e-07 90630698.08948235 2384.2997680537032 36750 13645 133359 HIVE_20210314 145529591.81546023 2369.514520363168 0.39203999312358234 6.389991044520502e-06 39861873.28360424 649.7220124676107 12310 138 125647 REN_20211011 1012688017.601787 18504.9521826664 1.011940270914458 1.849512566686981e-05 54235449.324250996 991.2555905544797 97944 1198 93086 RLC_20210513 508550251.5239915 10138.098620194189 7.129287714414162 0.00014212444438651468 436384429.22497 8699.451758291349 41400 6807 331686 HIVE_20210902 210103436.15789142 4319.983110352181 0.5681172393984351 1.1676384179854123e-05 43645348.80799457 897.032909766136 23306 179 84862 XEM_20190524 725445799.2299309 92088.08602412922 0.08061032111628769 1.0250348949188182e-05 78864999.04216607 10028.415082150743 216901 18455 179358 ETH_20190626 33909642984.874393 2872760.9701242656 318.635944657736 0.026951118584357732 11894108469.494308 1006036.930833039 444306 440423 37001 POLY_20200707 27339609.72746981 2928.7830601720075 0.04126040913658341 4.416107302218294e-06 2535961.28716915 271.42428765886774 34947 5004 323415 LTO_20210710 50502452.854502775 1485.9520445642663 0.1779873115648502 5.236985425010011e-06 4683379.840788804 137.80078900208716 10806 4312 318165 MITH_20200707 3701166.9059910136 396.491209830409 0.005985510704384717 6.408961567658676e-07 4198481.466399019 449.55071821970057 97 2096 759116 QLC_20190712 6034842.534218427 533.2946161028294 0.025193527449936 2.2220335135196018e-06 189670.14955978206 16.728639118663057 25007 5778 940522 HOT_20200109 119547504.61193737 14855.4928735485 0.0006725546697632652 8.368653288386024e-08 7695180.936158028 957.5177177607305 24765 6793 499870 DREP_20210821 0.0 0.0 0.726347634154632 1.4769071607327978e-05 1776379.6083375262 36.11972615271008 4108 None 303395 IOST_20210210 400476748.6837637 8598.233176664136 0.021711992338403343 4.6609992788650497e-07 247855708.7810252 5320.816541776191 203425 52320 229978 VIA_20200305 4461783.190268727 509.66873541455 0.1927094889440713 2.2001746173374175e-05 443476.0554050068 50.631900164614926 39585 2186 2317316 BCH_20210110 10824776355.56892 267609.0800315244 585.5317610459143 0.014487978866506783 11155310368.539843 276019.0165944833 None 358948 464995 MLN_20211021 209484467.186616 3159.6442780208904 143.61307639561508 0.0021746826528276234 39788012.30703488 602.4959726943265 29622 520 118839 VIBE_20190405 9861715.557129975 2013.2936151222864 0.04922362099434726 1.0056353481018861e-05 490031.99391792744 100.1132149220204 20702 None 1224385 ONG_20190821 0.0 0.0 0.18408131317073406 1.7122799997263553e-05 5491146.081303751 510.7731713034623 81409 16277 248344 LSK_20190903 153166353.97050261 14822.391401575931 1.1359402365909321 0.00010990350069999127 4878635.978916339 472.01354037159615 181970 30949 161832 MBL_20200801 8876006.523237025 783.0556863127388 0.0025211803816690475 2.2259788385928567e-07 21733157.309903566 1918.8451813839895 None None 188797 ATOM_20210603 3550491243.6059117 94355.23497284975 14.901919806088388 0.000395762054123714 556115861.9634334 14769.208177560282 155163 29774 42655 TROY_20210722 12659523.384576052 394.0357388934125 0.006669649138392157 2.072545462003131e-07 2524585.877547593 78.44968896234627 None None 506506 MTH_20200208 4080225.3027562387 416.56290729341623 0.011803684244069424 1.2040120559425355e-06 453239.16551247693 46.23178731475621 19189 1942 1462172 COTI_20200320 4454304.31336845 720.2705759377698 0.014232826228049106 2.3056495796185847e-06 3820559.6658863993 618.9123401365471 22548 901 294374 POWR_20190329 50099055.28365323 12443.685095533563 0.12056570208684461 2.994608984542367e-05 4913082.446472604 1220.3106340646125 84940 13279 634986 BNB_20190220 1514339453.2709005 386803.18839268445 10.483971515376131 0.0026778894259186477 114786491.52094337 29319.5695382626 918014 47549 1153 MFT_20190922 10634960.052734392 1064.1775641205495 0.001177581551932602 1.1791816233463924e-07 229308.12272915454 22.96197014656987 18733 2258 975011 KMD_20210806 107612248.39740847 2625.2871871304806 0.8448546682213256 2.0648567328193328e-05 5502774.555448847 134.48988941407916 114435 9452 251896 TROY_20210430 40542161.657678194 756.5112677260299 0.02134644048633824 3.982087780244871e-07 15331404.75819797 286.0008420639542 15898 None 495335 YFII_20210610 70240185.62776998 1871.279022305356 1761.32722465847 0.04702684803756294 29381492.17632313 784.4760180554835 16757 None 469501 KEY_20200411 1805528.3447322636 263.32504087259787 0.0006646301037342947 9.690611051772844e-08 695518.2839408516 101.40974853829086 23362 2748 226427 STEEM_20190419 130825949.3658443 24812.161470631494 0.4264834617707019 8.085690067503347e-05 998561.6932263684 189.3170799915045 5252 3717 265614 XEM_20210702 1166085638.61254 34709.924892137016 0.12971017596337425 3.856363362840609e-06 100200598.8691358 2979.0254738589856 370948 21679 80485 AST_20211221 48429765.5812853 1026.5690001200455 0.2813848809446137 5.967739385017255e-06 1349079.1349174387 28.611887959028294 49388 3754 186050 ENJ_20190916 63416191.448380426 6154.5688865189395 0.07236472563767236 7.023028010971353e-06 2540924.799345694 246.59785388983292 48463 13731 26747 ARPA_20210909 75430267.3687439 1627.5082513289206 0.07720045525890898 1.6675071534953221e-06 49416612.87345214 1067.3843203597064 None None 784225 WAN_20210527 174052731.34415033 4442.44687673583 0.9912298165597105 2.5282848098765823e-05 6733694.299627535 171.7532778744381 121630 16545 162082 DOGE_20191019 328779025.13200504 41311.34697315065 0.00270413150190851 3.397807425188026e-07 82194959.70413756 10327.997887626336 138299 142533 101092 XTZ_20191203 857663739.5541971 117391.00072478494 1.2386458209169713 0.00016953715746056394 27368235.31046371 3745.9722068193014 46264 18206 205353 DOCK_20190712 5705381.181027274 504.18035754934624 0.01112315589799182 9.810466291612466e-07 2928255.3153579882 258.26798013090024 177 15240 279432 FXS_20210804 95370381.2492065 2482.1641735823696 3.0136568474914274 7.846210357467149e-05 2363240.851316838 61.5281891175714 None None 100208 EGLD_20210128 907219686.2579998 29956.21910605817 53.49953227031267 0.0017597996613365598 160601328.33730182 5282.778208044577 127340 3604 51208 ETH_20210805 319613239659.44226 8028868.396614885 2724.5322427136302 0.06851597675597497 29356647318.25012 738254.931895109 1468278 1055286 3722 NANO_20190622 192847871.3295122 19052.78519720478 1.4490525836786696 0.00014284300924518524 6281939.93142939 619.2537205412083 98431 46323 363666 WAVES_20201030 302527512.721554 22472.89298555947 3.0237692338746687 0.00022487156497921193 42887930.43852074 3189.488115821434 145244 57080 284247 AMB_20190906 2399452.16426185 227.0173739718796 0.016594757482352198 1.5700660015044477e-06 164309.8059536449 15.545707149740421 19273 5607 670257 ICX_20200719 215324253.78546712 23489.58078261324 0.387196749398585 4.223903793404053e-05 17889422.175210815 1951.5452623258952 113362 27789 129774 COTI_20200305 8319824.227463508 950.3854697418782 0.026688302520894474 3.047458025529529e-06 12906205.503504029 1473.721287069273 22190 870 296885 GRT_20210219 2815683191.0304856 54471.99330112182 2.2995654386337403 4.447384620501037e-05 775393692.13763 14996.198513469055 63737 9893 27786 TLM_20210506 764926970.6769688 13360.414507048905 0.6215361399744421 1.0841787008601409e-05 242385088.8268681 4228.052623343668 40068 None 22915 THETA_20211104 7444060224.058397 118037.1225623965 7.439374610720858 0.00011805051875180252 356810726.2755501 5661.993586441349 None 25410 30625 RDN_20200217 8811296.973753197 883.8796172882701 0.1740301166665566 1.7493213178208884e-05 4318471.611540292 434.08546722669007 25222 4328 1589511 BAND_20200107 4282188.007139645 551.4369992833472 0.23947482079477062 3.087360689996449e-05 715865.1978317958 92.29087483132506 7628 997 703160 NKN_20210731 168956120.0303111 4049.260308621282 0.25971037854826534 6.215880860477562e-06 41580656.1552408 995.18704722625 28849 3306 168885 KMD_20200417 74072174.27716622 10431.942279144361 0.6284814611852699 8.867335086417583e-05 12170373.87326455 1717.1355071904857 99932 8398 159254 MDT_20211104 31103974.637686085 493.29120908142755 0.051270815414985745 8.135826831256321e-07 4899128.351576655 77.74102980401562 None 350 734581 POWR_20210617 84494112.87933286 2209.051032929045 0.19309818014324845 5.0453289552833765e-06 3138956.025579364 82.01561357786066 90748 13959 149049 NEAR_20211002 3668765583.8236103 76175.06234803062 7.809324547064601 0.00016214795882700905 314010196.868873 6519.912466987118 None None 6549014 ARPA_20200927 0.0 0.0 0.023248409206907295 2.165674073994459e-06 9310506.776529584 867.3076494063557 21220 None 327766 SRM_20211125 739174978.6946355 12920.964177627318 5.543532463052387 9.691668758678127e-05 60639845.05213027 1060.1566703899348 172156 None 17446 BQX_20200511 3863173.0503479755 442.05018055658286 0.027584459086758915 3.1507002990869684e-06 521506.6991860549 59.56655912423117 None 21 369703 FTT_20210804 3840834048.772333 99967.98606091156 36.108324927898906 0.0009399406636221297 93388457.00657059 2431.0074872949936 161048 None 2262 XZC_20191118 39470974.97017691 4643.738960390565 4.471979052431743 0.0005255221457171703 11942710.582030335 1403.4410307299918 61626 4070 172664 MTH_20190719 5672102.447163321 528.4023537057088 0.016421965369859636 1.539137339319773e-06 448463.06819331524 42.03189070347802 19518 2003 1394829 FUN_20211120 204350355.93088478 3515.339350881182 0.019295869091667642 3.316925864487251e-07 12002724.757691864 206.32472164884933 24052 518 165910 KNC_20190220 23049686.23140808 5888.055483778901 0.14697761999149256 3.754205301346495e-05 3085264.8238034043 788.0599480554275 92979 6562 205097 YGG_20210930 490501914.50260305 11800.390986455093 5.562939066290839 0.00013377139413279268 79781593.36677031 1918.49934785003 79922 None 64973 WPR_20190816 3198522.2473825812 310.9352496192233 0.0052588110218322924 5.1122036719045e-07 178238.35562547558 17.32693516309883 34628 None 1022788 JUV_20220105 23238244.69874947 501.66254866135404 8.525859634326482 0.00018527351709796765 1924997.748993924 41.831688376130465 2792109 None 38699 BLZ_20200407 3374913.3863486685 464.02299160344484 0.015454158697843536 2.1208852716209212e-06 270067.86569983594 37.06335426598181 36001 None 583027 LTC_20190318 3684717205.785776 925359.3198017232 60.477240892506366 0.015187916838747024 1622789914.013782 407538.4044818867 439960 200261 251595 SKY_20200901 11784493.685416987 1008.8083035229737 0.6544140333526153 5.605191398656925e-05 1138433.7530589276 97.50920297194025 17197 3828 1022336 REQ_20210218 61865657.37389798 1185.390320995598 0.08008828690209929 1.5362517904055524e-06 1304734.6745357425 25.02739236025787 40616 27295 403462 SPELL_20220105 1720378731.608727 37145.6776453476 0.021363484079811187 4.6431350700169695e-07 115996452.12254128 2521.064414566577 102993 None 6379 TRX_20191011 1075744462.5190914 125634.76505787096 0.016263725404162297 1.8994188595057675e-06 749575519.1780027 87541.92796357407 474014 71317 66589 WPR_20200316 2676612.9814315666 495.43216381086717 0.004398291636597788 8.14406066126628e-07 265037.99166018947 49.075542505190114 33585 None 964364 SOL_20210725 7794117620.737434 228127.50343755618 28.590333033238007 0.0008368047115816148 363380694.2290097 10635.716508622807 None 27783 7993 EVX_20190729 13601548.276540946 1426.3027128249432 0.6448018992202866 6.76391039921159e-05 15100000.729288658 1583.9756688750892 18223 2914 1096264 COS_20220112 72500544.28346018 1693.1913517161458 0.021163726707451848 4.946760974509336e-07 4278478.990832363 100.00418732800713 None None 138222 USDC_20210613 23644275383.88617 659248.6741187683 1.000028133735662 2.8030603078905636e-05 2467544434.3799257 69164.81275510725 None None 40672 GTO_20210218 16737222.068137074 320.6971667659746 0.02518273342441692 4.831150357093577e-07 23847153.45477029 457.49276691692705 None None 550878 STEEM_20200621 75443982.04624426 8064.325058494735 0.20960941439404546 2.2393847246597004e-05 2888278.7976951627 308.5723720384944 11479 3866 207345 NULS_20190929 25823951.466028728 3152.693244743783 0.35147293223593407 4.290924805323463e-05 5855368.009580348 714.8471911270852 21302 5288 318571 VIDT_20211002 42225724.1172344 876.7807409541931 0.9148699472784958 1.8993591598290178e-05 17570185.25029509 364.77416702028665 32239 1738 566642 MKR_20210324 1816147063.6542616 33295.1757353522 2020.8102368444877 0.037070960367106776 109378497.78259413 2006.5050554394331 125827 23282 30513 SNT_20201031 81695519.76575169 6014.456445291593 0.02114519040285426 1.5580411313002088e-06 6409941.277354001 472.30372340314585 None 5699 157982 UTK_20210428 238914977.34644473 4336.758419600027 0.5498653009323308 9.978396577732357e-06 19529997.609223783 354.41054559466085 69489 3759 75588 LRC_20210723 263197116.22783834 8137.8249419496215 0.21145654753293383 6.531575064857073e-06 17890981.70182125 552.6255456867788 82696 11076 261623 FRONT_20210508 89956116.76490976 1569.9053036093005 2.4036554064961715 4.19446661715012e-05 31775008.715361062 554.4855263197577 None None 146547 DGB_20210916 866301342.0856531 17975.51413065636 0.059036312447998104 1.2248682943889547e-06 23851376.47743686 494.86144397112633 227260 41793 155927 ZEC_20190618 701701271.6923126 75276.91824817842 102.70248257704293 0.01102272861610371 572056710.968223 61397.015143167504 41 15197 185342 IOST_20190522 173879744.35561252 21851.315096604598 0.012840895886482611 1.6136739263012447e-06 49610084.14273527 6234.339096777097 198290 49649 108380 PHA_20210702 157944141.06208444 4697.677857085977 0.8844741692571347 2.629987702762079e-05 35632914.34547778 1059.5462230501435 108975 None 165668 NPXS_20190621 202756187.02625668 21195.85605867747 0.000851498025314514 8.909283390729986e-08 9889540.839751624 1034.7495745865142 62043 4552 216939 ONG_20210429 0.0 0.0 0.9180304941329654 1.676595510175302e-05 9730601.253823329 177.7095911054065 127225 18575 153956 STMX_20210421 436890343.59360397 7733.185537873189 0.051958197928193374 9.215072176244643e-07 85125154.10751805 1509.7414275199098 55690 3875 60335 DGB_20210110 437653888.0187813 10815.437795833537 0.03132525218122303 7.773539439657747e-07 34168391.33622406 847.9080586652362 None 23860 242284 PERL_20210430 0.0 0.0 0.14344075122726 2.6764192232860658e-06 11026191.365561422 205.73449509940312 18617 641 340450 SUSD_20210207 173797500.68661293 4432.115010071015 1.0155378193083222 2.5825221075265297e-05 22612631.898637507 575.0413296017405 74120 4119 30058 ANKR_20201111 52764486.003467076 3451.5199519569614 0.009203035927688119 6.024428421689506e-07 15732182.925164701 1029.8493963761964 28199 None 5129 LEND_20190916 4682624.462297074 454.4507351307056 0.004150670154414255 4.027753035221675e-07 2054063.6324040084 199.32350011371187 41595 5812 862107 APPC_20201030 3038107.1823038138 225.54550583718793 0.027703757376754255 2.0587221937915512e-06 123214.92025606817 9.156349714146351 24337 3158 1443706 WRX_20210105 16333380.765858173 522.0618514079395 0.06887777053474595 2.201531754000678e-06 2588070.2619236973 82.72217319135804 47247 None 5719 NANO_20211221 439164439.1099821 9308.536240843916 3.287390832088555 6.974745267130195e-05 14182645.583485395 300.908365361454 146222 119120 64172 NPXS_20190509 132699700.06592193 22293.400723530838 0.0006035017297469353 1.0131300447951053e-07 3036007.115339363 509.6704571255866 60047 4347 180426 DOGE_20191026 327901882.96350455 37937.339731509506 0.002695224304015997 3.113070200486755e-07 99018987.89874476 11437.009530176429 138373 142898 101092 WING_20210104 10980355.137435826 328.5034975379365 13.045357800736284 0.0003962975775957874 2132555.0410822644 64.78368855646772 None None 329521 ETC_20210718 5360828238.862236 169612.9003043084 41.69807831268103 0.0013192455083089985 2259073084.067675 71472.64669488835 482738 58359 110949 GRS_20200629 13804241.10223803 1514.056692501074 0.18305684682468953 2.0062823113259144e-05 841266.7995455908 92.20188855598929 37418 106873 None NAV_20210602 20363376.437366106 554.9806362024652 0.28340724887259977 7.727717545903346e-06 1115860.1886562617 30.426364861720025 None 14073 589462 EVX_20190426 12313295.102496503 2372.5481700473247 0.6390995089983504 0.00012302816881598966 7390746.895564657 1422.7362780623366 17146 2411 648745 TCT_20200331 2626141.8643521955 408.549143350081 0.004488360584054389 6.998802188444224e-07 312742.08125565207 48.76658017376741 28 None 428332 VIB_20210112 3302503.691117706 93.43642894830265 0.01815436078077483 5.106905901668268e-07 848406.9674507049 23.866081551484744 30351 1092 3160516 LTC_20200331 2512152352.7386513 390999.29655507585 38.99668226603268 0.006071652976253007 2809026117.9277277 437355.9697447423 133327 212851 140492 ZEC_20190601 601329246.0695573 70104.29307153917 90.60722059236078 0.010562848030787745 585430403.7964662 68248.56062769619 8 15155 179963 NEO_20210202 1625830445.9699373 48725.434815233864 23.043139227261015 0.0006898881248154545 661384064.0258331 19801.165423407532 333941 102275 149199 MTL_20210509 266859103.00741342 4550.526177196751 4.133339770721125 7.036370498040667e-05 61174748.12962154 1041.405296543621 55770 4095 203255 MKR_20210314 1968385283.668474 32049.27226921646 2180.8486770910854 0.035546382411228934 104185072.75661774 1698.1473665051394 120693 22896 31879 GXS_20200927 32759062.378023855 3050.8925638803785 0.4682333393277809 4.359272615516452e-05 8049321.572428772 749.3953154756208 None None 581942 ZEN_20200530 55188203.39815764 5855.675941674047 6.00786502213989 0.0006407841251927348 4070366.9012769726 434.1353350044516 62385 5866 47922 TCT_20200229 4788599.395215154 547.8854461543035 0.008283462755273167 9.506918215919757e-07 463823.86389064783 53.2329977314526 14 None 380561 TNT_20190131 6119839.439200782 1769.5705012565415 0.01428263001169312 4.129866641134327e-06 273191.1772959405 78.99407383955413 17019 2515 1261648 CHR_20210204 16911990.921976183 451.2742097278179 0.03767483103277714 1.0044127845580067e-06 8257439.845087488 220.14373842602978 39302 None 474695 OAX_20210624 6517211.429077191 193.2913979379976 0.11468023741411536 3.401522062797546e-06 110072.70832441498 3.264858482332476 14015 None 1358766 XZC_20190819 54144819.617434226 5247.79145952409 6.621233805081642 0.0006417501107523954 10359053.872062681 1004.0309956407415 60861 4036 203720 SNGLS_20190622 10011278.309444614 986.8800733798865 0.01695186891071645 1.6710614885964696e-06 569207.7164285564 56.1106919210774 5 2181 None ALGO_20191030 106082272.51230937 11273.010863624648 0.23145174875777208 2.4596683396295587e-05 115314942.31818369 12254.671404668778 12723 663 327819 ETH_20200223 28657670954.134422 2968782.7694449727 260.99654013152536 0.02705293700798587 14860160863.37393 1540292.4328529579 452035 453057 20404 SNX_20200807 510551031.52577287 43394.57961986139 4.46521871047826 0.0003792457513331288 29315622.51473375 2489.872502842706 27180 1688 46620 SNT_20190324 79725328.67823252 19918.755847047396 0.022779751633268355 5.688016743312311e-06 83747437.92507854 20911.41452269685 110492 5752 348070 LEND_20190515 8274605.529546853 1035.4989917785033 0.007420805572912729 9.283808841237502e-07 1060456.5153701503 132.66855567645655 11561 5895 565182 REN_20190228 12690528.678160924 3320.58200074006 0.01680930405974043 4.406404765087415e-06 378212.207705102 99.14485860467727 5543 805 4072973 EPS_20210620 123584331.87314592 3465.8023753160824 0.5843186165316514 1.6413082839691816e-05 6033175.263492793 169.46748329508824 17388 None 20325 CLV_20220112 123727654.28741306 2887.8441081177557 0.5832549752080607 1.3631965776267983e-05 7594604.659822012 177.50279930325098 113273 None 64325 OM_20210603 55760355.915618256 1481.6918172393534 0.18321306952611177 4.871668726265547e-06 8280502.43041959 220.18006047484334 43034 None 62304 TWT_20211002 371440756.3508133 7712.64693222701 1.0737753226856026 2.2292622036697185e-05 37962795.258754544 788.1446223249867 7021 47396 5103 CDT_20190207 4567200.977614926 1341.03253723784 0.006770444574619354 1.9879542219907695e-06 80829.60362968546 23.733382649618342 19516 284 402914 AUDIO_20201031 7845591.914568501 577.6694391592382 0.12135930331190346 8.950754043508821e-06 6391555.030700449 471.4038023794411 16768 1844 76335 STEEM_20190131 87391511.18788089 25269.542684882806 0.293943430717132 8.499470907967912e-05 1297995.9048012497 375.3197819255333 3743 3646 257308 CND_20200324 6448753.125541793 995.200906257713 0.0033677379360951562 5.197246321565141e-07 22567.75990470144 3.482759329149915 34833 5966 433768 LINK_20210202 9246737098.196632 277120.70889593597 22.81110431935764 0.0006829412359420927 1620939007.3726394 48529.26336154656 138639 32546 38996 FTM_20190914 33338341.080409743 3219.5588344694893 0.016035702483402997 1.5486039774097221e-06 4427147.61190092 427.5396358510388 18965 2143 342679 ARDR_20200903 76210078.9793555 6677.159164340763 0.07614301938593962 6.6748095213106275e-06 5294110.666258663 464.0895589246983 64068 6289 944701 XMR_20200310 970990383.744337 122686.52108309198 55.56055956636673 0.007020184624631918 154651827.49561906 19540.55880699203 320778 166604 88356 SAND_20200907 21735188.300850958 2112.580884844331 0.040874613822584206 3.97286311219142e-06 6679123.931193829 649.1864413244571 None None 106488 ENG_20200713 21175147.338411987 2281.8491808297003 0.2571881621051749 2.7680532062976894e-05 1003593.0444713548 108.014261691833 325 3572 584808 FTM_20200107 22637423.516015306 2915.124902121253 0.010751908081027182 1.3867132522000927e-06 3116381.2426002007 401.9311861163747 20507 2254 521985 XLM_20190704 2050258237.4285653 171126.3492998679 0.10557766966307496 8.797192638510306e-06 464791730.15923136 38728.47733849263 274151 102742 66272 NAV_20190805 8200403.78429672 748.7517057047341 0.12461062628942846 1.1377783513759811e-05 166518.2870183545 15.204233195782358 48259 11219 652826 AION_20200607 47436177.16682204 4904.707729607378 0.11033974459919581 1.1416398759940041e-05 3485298.3074067947 360.6094559964212 67502 72563 450836 CDT_20210916 36375980.00093026 754.8066295727095 0.05365821620416545 1.1132851127827952e-06 1340784.0358078692 27.818198444059714 21610 337 716386 ONT_20200318 211448292.0289907 38937.64698683028 0.329675589661243 6.117114315744376e-05 91014878.8227773 16887.76590237195 84434 16529 298289 ADX_20211204 100047406.60928859 1863.4932888209119 0.7316981027970039 1.3645035948686425e-05 42058527.16800482 784.3263676131817 354 4048 10416 NAV_20200310 5805297.772932155 732.5132142609243 0.08527726684180123 1.0760296419062673e-05 490105.165913099 61.841532415926174 49748 13989 1136873 BCH_20191220 3382020873.8377495 473610.9342540626 186.2283459429641 0.026061805629737967 2184885240.4540534 305764.70070478105 996401 279524 114260 STORM_20190810 10836071.241286501 913.7953513047125 0.0017383050231633433 1.4658957235941043e-07 272199.931090063 22.954355514742065 26635 2550 2770937 DGB_20210206 535876317.60107106 14130.397762542121 0.03883570813987739 1.0174149671759086e-06 66810531.93055064 1750.2973012954767 183309 25111 203281 DGB_20210221 1127421986.9628127 20052.592717032712 0.08021065160816344 1.4266455212562394e-06 143262867.96218148 2548.107076090239 189108 28127 191254 LUNA_20201201 188061364.75174725 9565.4636889186 0.3977476148700228 2.0260890754137628e-05 21319200.05000224 1085.9800713571933 None None 255583 SNM_20201115 4435886.753827874 275.68893744 0.010132984631268134 6.3e-07 367998.0973817625 22.8796164 28899 9533 None HC_20181229 37639217.71409616 9777.820955158822 0.8588462509080907 0.00022310891084869025 31069619.426500823 8071.1872973777745 12192 759 383495 PPT_20210104 24486054.640429407 731.7905879783542 0.6676302970330604 2.0281800704022306e-05 7793257.907263858 236.74974669752663 None None 755937 FET_20191019 13438752.103818843 1688.8440557999152 0.03951058817997973 4.965284088390582e-06 3969877.2714627157 498.893318395225 16320 309 518889 ASR_20210610 6729196.707255768 179.60019899449324 5.446782620691594 0.0001454272749611136 2323708.205992678 62.04223221953829 1972343 None 158800 DLT_20210602 6974637.468750782 190.08580190984904 0.08467034664137203 2.3081242659120146e-06 1292860.2454741546 35.24353239808 None 2600 None GO_20190220 13568051.379017128 3472.4529046881194 0.0197543958551672 5.045354902624825e-06 1019543.7636445281 260.39571972022463 7847 628 747955 FTM_20190923 30545982.7110396 3040.8682659604187 0.0146483430560252 1.4584612874848835e-06 3667324.7302216846 365.1369391887807 19058 2163 407157 NANO_20210212 806672961.9238462 16917.21110658726 6.017132723414333 0.00012608313199686917 257614435.3986512 5398.058569702996 106113 65734 188898 TFUEL_20200629 0.0 0.0 0.008503500282365406 9.317104620604261e-07 6085802.625429313 666.8084656745642 71615 4273 93022 NANO_20190716 136447286.5088344 12456.593371138688 1.020721530894354 9.333939833459518e-05 4668066.769409974 426.86916113219655 None 46901 306067 QKC_20190507 38716400.27994172 6768.115020036359 0.024490071986525752 4.282733853387891e-06 10363548.639023475 1812.3393276262213 50466 9175 157816 CVC_20190430 23199654.23275823 4457.458530948318 0.0677300634899365 1.3013304320030524e-05 3764153.529614541 723.2250032582537 None 8207 448453 EVX_20210916 12082924.18609334 250.71734729610472 0.5532263209061784 1.1478742974393703e-05 182651.0057815864 3.789776209394945 18376 2794 2963834 XMR_20200411 941081078.6275536 137132.62998547472 53.720852211103676 0.007828105267522015 131387652.16251189 19145.57066107234 319701 168569 87089 NEO_20210806 3101310252.998067 75685.33694949478 43.896287134480396 0.0010728418442218723 371807291.9538657 9087.110706490668 408773 112565 120320 KMD_20211207 114867940.99406219 2274.2895370463516 0.8897218548578046 1.7615751513202254e-05 12043196.558783554 238.44525887035718 117272 10002 120888 LEND_20200330 22352219.652651496 3780.0428983791144 0.01905715383241347 3.2285567216994365e-06 819559.0103935839 138.8451169101176 None 5732 109064 ADX_20190512 11980839.100414628 1644.8815426874194 0.12990777894577119 1.785266527105088e-05 1265143.089839543 173.86315343222677 54630 3917 1002486 TNB_20200711 9032725.540382538 972.9134867410617 0.002627462290357422 2.830040607744971e-07 1394246.2455004668 150.17431483005333 15867 1434 1208185 POA_20200229 3189421.8616230404 364.9433693327123 0.014486334762290226 1.6575705713453308e-06 176658.54455338197 20.2138090437232 17454 None 534469 LRC_20210106 629037039.856468 18489.881175592822 0.49682692646602955 1.4579928186185329e-05 1274157632.7153366 37391.54581457596 46988 7597 277317 QSP_20210916 37743556.78464991 783.095552985099 0.0532885704353724 1.1054255179846436e-06 952745.0280028128 19.763875395467682 68305 8545 198059 ICX_20200229 162504058.05108434 18592.828716506752 0.30831050158870243 3.538475164685319e-05 25551457.30931781 2932.537057435454 112477 27497 160011 TOMO_20210602 140930875.9022387 3840.910539043772 1.7241489840578257 4.701268725079265e-05 22762664.932624318 620.6737685472319 48798 2169 91047 FLOW_20211204 3642051701.2169724 67837.2296971314 11.582592474794893 0.00021588603527524403 61427027.12244253 1144.9282509996824 122047 None 221603 ONT_20190719 622016988.98376 57956.96714217861 0.9492892968626454 8.899752521592269e-05 169591198.8294339 15899.47031332111 81459 16285 245341 ANKR_20200907 48771577.60697275 4736.698082732626 0.008351308969790994 8.127627970175655e-07 16333917.741383674 1589.6430987960532 26222 None 5082 EOS_20190902 3321259868.9270716 341410.4851078376 3.2629947061134534 0.0003350814244543123 2229184439.7239466 228918.02307696315 1287 68075 84416 WAN_20190622 40551221.13692331 4006.822076140161 0.38136146994496284 3.7693247594498973e-05 2499718.7484972877 247.06879202379136 108529 17010 440153 QKC_20200417 9347811.627717081 1317.5807426723618 0.00248688224902616 3.508152841466564e-07 2310755.5522851488 325.9697422287769 49832 9196 700112 XZC_20200612 45934925.91894018 4950.703487141613 4.431001904904294 0.0004764714666510922 37655707.6791884 4049.1678069082714 63540 4118 211227 TRX_20190605 2292109085.269763 299172.9777046847 0.0348180451727358 4.541516776200349e-06 1525517180.3322122 198981.93113626257 427457 70789 107576 XTZ_20210219 3686868640.4534764 71329.95562223114 4.855462332812241 9.391528589062558e-05 550261621.9314847 10643.266077692602 86619 36772 115000 GVT_20201106 4847186.371391205 311.6924583708483 1.0957997984612156 7.04916798262431e-05 588090.6542903793 37.8312700634344 20596 5477 262282 ATOM_20200208 924070102.601857 94333.10998878584 4.818459421614604 0.000491770164438162 245605175.12509984 25066.372213561495 None 8089 122971 CND_20200224 13719895.760143392 1379.0213541894561 0.00728119054876781 7.317277093669636e-07 39789.6900730959 3.9986893048053824 35079 5989 388652 FET_20210128 61500838.27832478 2033.0268824052912 0.08957337446852393 2.952426165529721e-06 12396481.567018464 408.60017562287237 27494 771 346755 SNT_20190726 74101979.80338545 7480.649716057789 0.02097065017504379 2.1206791363571993e-06 19147182.631590843 1936.2790561046993 111725 5728 282023 VET_20200725 1095602077.8125472 114855.83739745297 0.01699171955445426 1.7815423591434406e-06 119189494.3847522 12496.741858928668 128654 65302 114673 BRD_20200331 7065145.419169829 1099.641463203131 0.11304293435953003 1.7632491852399284e-05 536597.6631272014 83.69876433864194 182 None None AERGO_20210201 13547495.810095508 409.86011702110295 0.051380961721162945 1.549861405245793e-06 3436879.6166811977 103.67044317460042 11909 None 586684 IOST_20210219 792262411.6099939 15328.039712771442 0.042915103961947934 8.302225083977428e-07 621024143.9944135 12014.143623181384 208217 52496 193443 XLM_20200305 1183826331.4911025 135230.18195902274 0.05858420183882916 6.688893207901782e-06 276148729.6214875 31529.479005577406 281622 106741 84088 KEY_20190614 8759855.57791599 1064.756388279547 0.003350800205307066 4.0727836599133933e-07 529267.5960105191 64.33067579914832 23917 2833 681571 LINK_20200411 1167451627.0980098 170265.53380858203 3.210195555047736 0.0004680612020025846 662303577.1163442 96566.89229048473 48325 14125 83240 ALGO_20210708 2819494661.603957 82977.34582630293 0.9054798433927429 2.6650135367862624e-05 179342393.00525612 5278.415732456491 114891 35007 196865 PHA_20210821 145359634.20228174 2958.548366789927 0.7993924616682739 1.6264926486369237e-05 9900061.545220023 201.43268915432327 107608 None 161711 USDC_20210614 23762953484.245693 610551.4790390113 1.0067974593233198 2.5790474772525427e-05 2621971288.5578566 67165.33076800455 None None 40672 TNB_20200106 5260889.518244359 716.4720684843244 0.0017012619804435297 2.3162610719385808e-07 671349.5696296464 91.40396315624862 15347 1456 1426193 IOTX_20190201 8863295.687215574 2583.0879396588266 0.006658925091598261 1.940653872126726e-06 769609.7368429484 224.2923738119752 13472 1554 1480640 XTZ_20200621 1866891443.229354 199554.9418096146 2.6155046076312227 0.00027943024804198924 83845684.35316737 8957.743873857977 66644 26559 92596 CTSI_20210724 140817745.9298628 4212.10962595056 0.37094640462509687 1.1093768840236476e-05 9980942.912944326 298.4966887486298 47658 3927 130586 SNM_20210429 43069024.50940598 787.6291818101312 0.0984206537008073 1.7998777504388453e-06 1837.5419727400708 0.03360423638605875 30768 9550 None WABI_20200414 4308235.14861594 628.4852360635066 0.07284540868197627 1.0638378066318691e-05 1069164.1140429948 156.14123478648696 36680 7734 1806690 DREP_20210511 0.0 0.0 1.319042894163403 2.3606861760185754e-05 4509487.904780484 80.7061377976651 None None 195950 BCH_20200313 2783677917.095203 578221.9025868599 149.73696903556694 0.030968976869348647 4799233178.266033 992589.4870559855 2634 287111 124622 ENJ_20210616 1323809802.6693668 32779.62066508759 1.4149924151628668 3.505851479908045e-05 161582289.22067717 4003.438475859519 213570 33379 26462 DCR_20190806 314666377.0685041 26640.552422162116 30.909186651644294 0.0026169379689047843 20435394.525038604 1730.1704003032237 40570 9570 266485 ARK_20201111 55597762.6007913 3634.890895675684 0.3624468579645311 2.372624826883734e-05 4787358.637372696 313.3867961227654 62983 21667 111275 ETH_20210108 139084939665.71393 3557793.3734749863 1229.4713150147782 0.031146798526069705 43042878463.81648 1090426.3052924355 571729 522452 7761 DLT_20201031 2366776.5342790936 173.86076585838612 0.028744139806208865 2.1200000212292876e-06 279256.6901526075 20.596343917171893 None 2542 None BQX_20190614 15683781.164965354 1905.4561232226793 0.13148072235189995 1.5973874211584106e-05 890608.6503191665 108.20195004611247 60755 5774 442313 CDT_20211028 76344218.60174845 1304.4316356554189 0.11319418817700257 1.93369683836359e-06 201811.4807487611 3.447546455822708 23058 345 548875 DOGE_20210523 44531404175.959885 1184682.0663340543 0.3430867424697277 9.129844038446221e-06 6521890070.4712515 173553.30827027635 1591936 1916627 9826 HBAR_20211125 6432162133.772228 112435.80872005648 0.35441932418229166 6.196256113846214e-06 108307804.51965651 1893.5279487949363 175181 15291 31607 TNT_20191011 25525644.121657144 2981.106028345748 0.05957236859262924 6.957377697812726e-06 1145714.0876699314 133.80642452096308 17641 2549 579695 ETH_20190530 28545915354.884007 3305659.031216737 268.7857564563058 0.031082025400040392 10947486779.437864 1265952.72990371 443252 437983 37906 BLZ_20190302 9262970.294254435 2422.799638165557 0.045114326123932805 1.1809232369588623e-05 550343.0559790944 144.05909584447735 34799 None 1431746 ELF_20210418 232915237.67653576 3865.2563709230326 0.5056383510922884 8.391024006100064e-06 32099847.449599583 532.6941478230129 47518 33369 202444 APPC_20190803 4855179.875089099 461.41886169068647 0.04471501700628483 4.2495546567450305e-06 89604.33728613879 8.51567447073416 25354 3338 1400807 QLC_20190726 5226486.378817166 528.0104530704835 0.021745800021107365 2.2000337104568428e-06 380568.3015181493 38.502289713809134 24939 5766 940522 ALICE_20210511 202900736.38626 3634.0339573894885 11.636848496875087 0.00020826424599647975 103731985.15173593 1856.4874913638066 None None 62436 XEM_20201208 2126521156.5251582 110715.9938308994 0.236113537006567 1.23049521831153e-05 83428144.58046824 4347.820725586519 None 17837 146620 DUSK_20210310 102575513.040356 1876.8115594591256 0.28633644736056907 5.229566567555508e-06 17416280.335023906 318.08593775183465 23015 13442 445908 ENJ_20210304 1118498623.2407665 22003.40375650881 1.1938138822874882 2.3561399108260343e-05 1945904353.875441 38404.83829883945 91125 19674 49755 HIVE_20201015 56451193.68732128 4946.617413530442 0.15193485471329943 1.331124606548724e-05 1310086.9223829885 114.7787281853395 None 95 135312 NANO_20190321 135279075.41832566 33472.94839088039 1.0151684822896194 0.0002511894918755897 1795952.2101056185 444.383696853751 97303 44815 349841 SYS_20210819 113409801.16768387 2515.262079229748 0.18346501254924716 4.072970456369809e-06 1085997.0758405463 24.10941434631972 74413 5483 438149 MDA_20210106 10960931.829274008 322.0867113720959 0.5602992838495463 1.642791749382636e-05 2049648.213980614 60.095475259760754 None 369 3261426 FUN_20190826 20626956.42538011 2043.2085303323072 0.0034346434728656666 3.4004350850785066e-07 15756412.614788918 1559.948177840971 None 17418 345008 QSP_20191015 0.0 0.0 0.011839524817005816 1.4185227314027932e-06 107232.11564622958 12.847744815070905 56099 8488 448058 RCN_20201018 21775122.475630235 1916.9413165455003 0.04242485240042506 3.733043335774345e-06 348785.9084561514 30.690334497455826 None 1132 1361725 FET_20220115 347167304.9825367 8055.876012110735 0.5048657028804515 1.1705350599111065e-05 24610422.181505833 570.5945529337715 None 7260 85877 WPR_20200417 3253663.115066629 458.2598070365266 0.005359062720727817 7.559831640070974e-07 50521.355714642 7.12686085858985 33352 None 1026824 CELR_20210603 250378323.36505666 6656.407676458451 0.04435042458245824 1.1790737419965779e-06 52441390.54891084 1394.1753020886429 55071 None 140975 LTC_20210221 15203472513.34081 270354.55553152907 228.51689027022604 0.004063583648159501 9377508954.164019 166754.81624815002 144707 264308 93783 HBAR_20210408 2487387738.1029468 44159.88732870248 0.3132212045059783 5.574022732122167e-06 213725823.6596261 3803.4225728723027 75907 14041 46082 ARDR_20210708 177725801.2914371 5230.711918956173 0.17806184852677964 5.2405356220533935e-06 8974273.87055419 264.12172113123455 72207 6978 None STX_20210731 1302390557.702938 31344.760876180997 1.2300984311776222 2.9448319444573786e-05 126831484.75088331 3036.3213088549032 70000 None 60867 VIB_20210418 27432360.95752603 455.06229244905217 0.14981926553821112 2.4924107574589246e-06 4474084.742296292 74.43139506406145 31677 1218 3723426 XEM_20210428 3186762232.764535 57846.550950592486 0.34635142189935664 6.285233560134381e-06 239336563.34334746 4343.236680951041 305792 21133 27283 CFX_20210825 256137025.7042911 5333.549353165469 0.2943081757877331 6.128463031485762e-06 13273733.842410786 276.4027432308476 37922 1240 203830 GTO_20210219 17940672.12634207 347.1191953524379 0.027117242736291295 5.244438775649953e-07 19893234.50048187 384.73251650987413 None None 550878 SKL_20211204 796732164.6271452 14840.015269647178 0.3020413212084894 5.620428308527891e-06 70565055.6964271 1313.084696630902 None 3130 166122 BAT_20210318 1827211347.2983296 31062.923596570425 1.229554128644625 2.0860308922565632e-05 2756352468.853282 46763.589060644386 156047 60837 19543 LOOM_20190623 51703195.56880014 4816.03689544196 0.07461950953791621 6.953757808601825e-06 5439526.0725533655 506.9069354160146 20447 None 421831 AST_20190614 8737752.50175806 1062.0697696098146 0.050720862181629814 6.162186044460382e-06 1652894.9110587055 200.81373848519723 31776 3593 396492 BZRX_20200927 31402809.384146694 2924.5830216226577 0.22342622814451768 2.0812967693255835e-05 16343113.02472545 1522.4205600911937 14837 None 81917 OGN_20200323 4884907.6806543935 838.0828057686522 0.17040588825719635 2.9224679303665886e-05 20264771.9404095 3475.4166489043514 66417 2173 104622 SXP_20210603 189452230.70647895 5034.218583904454 2.1780417055724683 5.791452372357756e-05 181120165.9521337 4816.018040892442 0 None 54969 QLC_20191012 4324605.285162691 520.9039781448495 0.01794467125415732 2.1701675826605878e-06 312985.8212103219 37.85144199092991 24691 5725 940522 LTO_20210523 58553870.92203801 1557.7258808565796 0.20665751029644316 5.502821924054164e-06 12111657.937550642 322.5060475169453 9778 4138 180046 EZ_20211202 0.0 0.0 4.37313831373619 7.651039653143494e-05 1232425.930815225 21.561951600322498 None None 266818 QKC_20210616 113564220.87708755 2811.931525015113 0.01748640486125355 4.3297817166101645e-07 9658853.435132362 239.1613790180503 74075 9525 251496 BQX_20190531 15480072.533746988 1862.451610159044 0.1298311760572141 1.5647178227340514e-05 2080715.3919218138 250.7666152806311 60879 5774 444457 GAS_20211028 114537044.67131372 1956.921040208127 8.210015256917798 0.0001402989322627744 21006605.366939403 358.97671456380505 None 114527 97523 NULS_20190410 36922315.804691084 7138.570608995765 0.9232785250456553 0.0001784225260053651 38097978.54571024 7362.391069897022 25 None 680951 UTK_20201201 57851608.661487766 2944.2887482085125 0.12828023213636663 6.534474807799091e-06 3594199.000222728 183.085128784343 53163 3083 121875 GRS_20190524 31305792.818975624 3971.493275275595 0.430047322103928 5.467639689830442e-05 4871030.44395489 619.3048536017589 38739 107042 6849352 RSR_20210428 1148437685.5968356 20846.600480710076 0.08743476741417759 1.5873516378697906e-06 138597996.56974623 2516.2045187162535 69810 None 82413 XMR_20190321 918972135.0831677 227387.02755894966 54.48642137285978 0.013481916290288547 234935036.5952621 58131.44664719898 315418 157491 112141 TVK_20210718 67948218.43067709 2149.8761499847974 0.156378197681811 4.95196789127369e-06 13525349.111559037 428.30199805083095 50517 None 92892 ONG_20190329 0.0 0.0 0.6027018504915835 0.00014969912585073125 4670934.224172176 1160.1669543481894 72438 11311 260077 BZRX_20210821 113444829.22716877 2308.976739469078 0.39507112723745413 8.041001510967464e-06 11785995.920566723 239.88392082262177 None None 206797 NAV_20200129 6410568.44512637 685.593195072499 0.09536873870566975 1.019943220931721e-05 66123.5687804778 7.07173929704611 49801 14044 595997 NEO_20210723 2044543577.1711504 63216.540622690205 29.019745349481 0.0008964035402802016 257737129.60173163 7961.354334929797 407091 112377 108336 ZEC_20190920 381180933.79897887 37217.35624645968 51.223141355475875 0.0049980465382047316 441980670.98171014 43125.81977788813 121 15337 166171 YOYO_20201208 1751767.744590482 91.20437445766986 0.010251238050104406 5.339353031467933e-07 1759884.4505315046 91.66350766659802 None None 3054135 IRIS_20200903 78659889.72937313 6894.965326847906 0.09505365162343288 8.330077086916223e-06 13290166.268632907 1164.6907575337568 10245 None 427030 DOCK_20210421 51973708.10031236 919.9122705403954 0.09273952401897638 1.6449036451406294e-06 13772105.423971493 244.27326593261702 46935 14954 216888 FARM_20211230 101923014.05322127 2197.59278619515 161.05795117476248 0.0034609360570835835 123223280.76668207 2647.915811463339 None None 114343 HC_20190622 141824429.97929874 14010.445839151527 3.1930540445374698 0.00031546406197913943 63821964.54519232 6305.416663196954 12780 816 640655 BCD_20201031 88513190.70150653 6517.209381715103 0.46856879131018886 3.4525555731404206e-05 2896942.6131067406 213.45543171970453 27921 None 3412161 ZRX_20210511 1385469250.929356 24814.312626305524 1.7516538715619867 3.13492843793262e-05 385305025.28236955 6895.789748456035 None 19119 56937 HBAR_20200520 149327040.24024737 15310.324005534267 0.036086857587807095 3.699942630095646e-06 8514553.295056988 872.9870323551514 39107 6484 137425 YOYO_20210105 1583195.3669542195 50.60347984663942 0.00905553857987895 2.894410718930691e-07 421072.6473851548 13.458693519876835 9364 None 2139137 DCR_20200707 172067639.2779556 18416.42325395914 14.689902803609426 0.0015722623308254563 8563170.739104679 916.517349741277 40499 9861 294466 MDX_20210620 1002403879.795276 28184.428479086837 2.062909677354843 5.794101742831711e-05 109385306.4606035 3072.308990358887 None None 14688 STX_20200109 42748468.51516824 5311.6904756339 0.09112549387857341 1.1338820445201181e-05 678045.8331263738 84.36980287515955 35039 None 32309 STEEM_20190221 102593736.06728563 25838.60580177314 0.34234762524164036 8.622149533564544e-05 1794937.9202171692 452.061647591513 3991 3674 255452 QI_20220112 134503381.66321796 3139.3531259854553 0.11213460000138926 2.6208349598889325e-06 5597028.82076776 130.8150098612947 None None 875386 NEO_20210506 8064092534.28836 140863.20645206884 114.99073101625672 0.002005844766633999 2357865540.4295206 41129.50855168117 388840 110225 84803 MDA_20200612 8244729.935942722 888.5877668866003 0.4214496951679612 4.531904040801163e-05 433145.2142481585 46.576674967640145 None 376 2681133 SNT_20190227 71445685.89339994 18756.036583170906 0.020410231903373387 5.358126966852134e-06 23733075.821600433 6230.445306456609 109661 5758 300242 GRS_20190614 32611550.063715182 3962.046977261958 0.4482928300682681 5.446405487718318e-05 3594998.701471938 436.7640823756937 38620 107041 6997430 COS_20210131 27688572.10019847 809.3956928026441 0.009180297130527537 2.687089303075288e-07 5775829.271879669 169.059550384783 14700 None 369084 ADA_20190626 3005189236.994673 254537.97718183516 0.09675059527699448 8.183435705028117e-06 328043140.0077645 27746.805454202793 152881 74104 101159 ENG_20190813 31989451.364214376 2810.776629603559 0.40709760770203207 3.5774080052629395e-05 212136.93876661768 18.64173035158526 61678 3476 330014 LTC_20190811 5392645915.390712 475918.09596642794 85.50708285906626 0.0075526413858521945 3594621345.258506 317504.52747188415 451749 207450 141428 OMG_20200901 720578539.772032 61808.106880323045 5.13798348315531 0.00044071397460249996 636880520.3461332 54628.853204541985 None 42935 113182 COTI_20210115 30940664.65774023 792.2150576665674 0.05492592749580623 1.4002716980329295e-06 6406327.2703125 163.32175302165047 35831 1291 237911 SYS_20200312 14080235.443202777 1773.699185510688 0.02424059775987534 3.0536086329251805e-06 398895.4877437078 50.24920247739596 58843 4510 856942 HOT_20190730 197285783.16260868 20782.26128125289 0.0011171593217225943 1.1744802960017513e-07 5438765.51718989 571.7826285210426 23941 6599 317141 IOTX_20190603 29021654.830651503 3319.8720106276032 0.01148832314663453 1.3140811888873841e-06 861986.4068435247 98.59751574288978 20086 1726 736941 XVG_20190224 105072793.20543382 25535.498755743094 0.006673335801041954 1.6217990675377814e-06 1225100.1510837136 297.7321000926911 304372 53441 414559 REQ_20211204 431170326.95339894 8031.022870529665 0.5560912118385996 1.0370239511733992e-05 183905409.77131626 3429.5509553667707 56081 31300 183829 GAS_20200801 23515912.989004437 2074.8773578015202 1.6837390931663982 0.00014854087095298422 13692639.565688282 1207.9761139878838 320116 99912 128886 RSR_20200927 115782355.64523979 10782.955989106185 0.01226959154586964 1.1429571835606167e-06 30075494.58253184 2801.6419661349664 44156 None 115410 ADA_20201018 3299812046.191445 290402.96440777247 0.10605877277799808 9.33314395589641e-06 345640059.1338731 30416.23379494922 165610 89096 29944 BEAM_20220115 49592107.02688868 1150.593272366016 0.4717833311773099 1.0942402331897252e-05 2383834.267634158 55.28994333886955 30446 2995 244658 ORN_20210624 169356633.5366207 5023.274615099715 5.845256842928736 0.00017350725626876477 10982871.209031785 326.0092585559545 73046 None 59739 TRB_20210127 49576103.36280078 1522.2350320322435 29.53798787331541 0.0009068593816116018 56818982.03504365 1744.4257588936748 13007 None 436665 BZRX_20210610 41337629.46307639 1103.5499518698884 0.29442202763392983 7.860969704330059e-06 15094641.613026703 403.0218845081015 26970 None 123219 NMR_20210731 242309102.5219999 5807.8127553162785 38.5884908119088 0.0009235728768840155 12420624.913866945 297.2739291700207 29588 3542 680079 BLZ_20210203 38471737.740512915 1080.267135713002 0.14841342485993317 4.178926915983997e-06 17934952.2876267 505.00050734888566 45427 None 375643 FUEL_20200404 1797491.784147506 267.2785505714147 0.0018167928852066157 2.7e-07 152157.12607571573 22.61260729 1 1467 None SNGLS_20201130 5646927.875788317 311.30788201868484 0.006173050159112328 3.399532663107619e-07 136588.38453708624 7.521997435084813 8939 2113 2791594 STORM_20191011 8158003.792899997 952.7624129824619 0.0012982110660262447 1.5161634380510775e-07 96560.24426364727 11.277142504257752 26262 2548 1678605 ALGO_20200605 190168540.2885421 19456.669865756496 0.2377654722889888 2.432408091726071e-05 37987909.90657737 3886.2707253057706 18320 888 281799 XLM_20210115 6684576652.302287 170397.64067632696 0.30252975011093197 7.71183551849117e-06 1773211913.190638 45201.23594106358 325782 120423 34006 STMX_20210218 84246816.74331453 1614.2277412669785 0.010361303683191119 1.986718495871448e-07 27008210.418727268 517.8664077409578 25961 1183 138788 BAT_20190821 230876868.02930656 21455.783504542145 0.1799478615614907 1.6738316292837798e-05 13904726.022534473 1293.3840953197623 105236 29619 32625 DASH_20201208 1001745468.644558 52205.520477976155 101.64597008260382 0.005297234615726507 316989580.90554947 16519.771314425143 None 35639 79206 RCN_20200414 27818847.2734563 4060.402412246082 0.05473540861398518 7.993585058904135e-06 1911861.4629330058 279.20915567790405 None 1135 866129 ELF_20190906 38648671.45363435 3656.2981001771273 0.08378938594637822 7.927843011971967e-06 11178703.175773157 1057.6877113251212 85379 33568 1052488 ZRX_20201229 281792360.19047326 10391.907081030182 0.37747239780347186 1.390328503336705e-05 60624870.64003941 2232.970838461982 None 16320 97350 BCD_20190905 114143437.8275513 10807.069980449649 0.6063552919920817 5.740488484143885e-05 2098888.1475556325 198.70599629740744 21381 None 2392200 NULS_20190205 15678454.037166929 4525.103614129445 0.39151964781170534 0.00011301575424326752 13872752.448470239 4004.4978333961562 19637 None 445264 DCR_20210603 2065853026.4902399 54849.06288841936 159.12741819101103 0.004225867755560389 46204704.298061155 1227.0353674311605 45819 11203 167821 GAS_20191102 22488747.42300664 2429.147445776114 1.6138694087714256 0.00017435327825322886 1308381.5132510387 141.350102307781 323536 98579 158708 CAKE_20210731 3084854020.637741 73896.20736827518 15.167846798956928 0.00036311533004267544 183708572.49166876 4397.947831103387 None None 758 AE_20200719 53799199.86727496 5866.631631375848 0.14895294785100338 1.6247091546651023e-05 10355911.974017 1129.5744885775373 25370 6347 364540 SKY_20190613 25386707.16866862 3122.06288994057 1.6951958788076418 0.00020820094854258174 533930.3575450671 65.57637868654642 16072 3773 431254 POLY_20200605 29386161.365878742 3010.7780134232294 0.04545711430099255 4.649819494530814e-06 4221140.099651407 431.7814675727511 34772 4991 339744 NULS_20210511 127928665.35565205 2291.253951592053 1.1386038546427226 2.0374560862824694e-05 84933955.82061592 1519.8368116631805 52108 5357 238913 NEBL_20210826 28868568.105637714 588.9490810894449 1.5879684969638341 3.240041157651865e-05 3262543.003586239 66.56790503363052 None 6149 2191823 LINK_20210111 6544303511.805791 169761.27616958163 16.268787451237912 0.00042318566645179064 2100164868.7046552 54629.74252293093 118300 27284 46948 UNI_20201231 895773489.9060061 31020.267019945622 4.148643644474213 0.00014385927002709647 378751101.76500857 13133.655645368923 156965 None 5228 EOS_20200502 2692193059.5588756 303806.7370852591 2.869307161060822 0.00032489329376768984 2921186128.3297567 330767.57895472395 1511 71060 91670 BTS_20210527 160863733.32155237 4103.302799669569 0.05935501853897093 1.5140243777543098e-06 26466023.1474437 675.0937867390367 5891 7160 102901 IRIS_20210310 140231974.97085154 2565.8072168503927 0.14620560413540037 2.670257127318944e-06 38056858.42705647 695.0595229174952 19035 None 707798 LEND_20190818 3720864.577970135 364.0203641140679 0.0032975925930356993 3.226107350221181e-07 1526616.9862981406 149.35229691109453 41745 5830 628333 STPT_20200914 16490158.837513993 1597.6071142305325 0.02019448731694255 1.955463566568418e-06 2572063.114157787 249.0568654560693 14751 None 980559 BTG_20200407 135887331.73042986 18682.968146592753 7.784392167829478 0.0010698951980020448 27256949.556553748 3746.2243440481857 74678 None 202519 ZEC_20210513 3431632383.928421 66532.6243215014 301.7628947265875 0.00587291780488118 2700340643.417086 52554.10430211261 75528 19382 85283 ONG_20190729 0.0 0.0 0.23296225624968686 2.443751840024786e-05 11039546.619648386 1158.0379070457861 81420 16296 245341 ZRX_20190131 150808801.7418519 43566.94287223348 0.2582088099429669 7.463485441558957e-05 13130203.396182595 3795.264844517208 146128 15531 202256 ETC_20200430 780013556.8856565 89343.34672433003 6.73048066354287 0.0007676061409637542 2584203623.087965 294726.43481883616 231003 25419 313555 MANA_20210428 1724765604.4732459 31308.1849631557 1.3014564146685375 2.361750816459418e-05 285868107.962304 5187.643856299494 122185 29751 13153 XZC_20190914 45249566.14052841 4371.64472526249 5.410210581302147 0.0005226070066282928 12815999.818790816 1237.979779455272 60798 4049 177313 QLC_20190812 3525528.1238328265 305.2854912688937 0.014714973708434827 1.2737864431058036e-06 183408.64938740974 15.876579582613312 None 5755 940522 RCN_20200105 23220649.09494078 3157.8887971695094 0.04559905389661904 6.201236704146886e-06 2756594.161917805 374.88262221574684 None 1136 818164 KMD_20210513 327772563.69320655 6534.242320709662 2.6057644759983054 5.194668011568797e-05 35885752.94592924 715.3930242596514 110454 9166 204449 LOOM_20190515 42435289.536803335 5310.428318822241 0.06088830217409965 7.617439272566355e-06 1858963.85832559 232.56592473544723 19402 None 495542 FORTH_20211111 139755745.38640207 2155.0845417103133 16.194572848887773 0.0002493756421474822 22394956.410135917 344.8535930990037 34973 None 138960 DGD_20200217 91535829.72119635 9182.389190992993 45.81587800804651 0.004595010556431091 3396531.2714137877 340.64821467906046 17629 4662 321612 AE_20190224 106054113.84669545 25773.985915448928 0.46618120378977557 0.0001132944998050077 66655853.81534369 16199.155083246418 961 6312 487451 SKL_20210509 406374664.57686114 6929.568930070127 0.6163191729483825 1.049187893197134e-05 72966257.27372225 1242.1374687609843 23263 1543 131705 FTT_20201228 471002976.9930535 17790.691431934007 5.146788593986594 0.00019570796155427987 11275066.675878117 428.73731361394323 35619 None 5376 FUN_20200425 11331670.640633188 1511.2292934764073 0.0018832729884035778 2.5126172868009494e-07 347587.26608555054 46.3742526344396 34533 16914 234333 FTM_20200224 20261844.541156475 2036.5691391542914 0.009681183640175088 9.729164868765943e-07 4106688.383858648 412.7041675503653 21066 2312 396043 GRS_20210114 27331192.98123296 731.2545703611125 0.3562494163311927 9.531563955497394e-06 6399865.983281391 171.23040524380406 37596 106775 4269637 EOS_20200807 2910886334.4783754 247393.6819231692 3.0913136307786035 0.00026272803992349804 1979334074.168934 168221.8706256659 190389 72117 86387 SUN_20210204 0.0 0.0 0.0003799555802450625 1.03e-08 406.615038397885 0.011022696107784403 41 None None ICX_20210603 772303515.438145 20524.168254395052 1.227433627481645 3.2597924296585504e-05 83561684.6897387 2219.213658990277 140250 32263 245600 RAMP_20210704 46610144.13185872 1344.5146307713544 0.1589736378428264 4.585003258073167e-06 4719501.983867025 136.11647985250863 30181 None 114205 BAT_20211111 1598276192.5148234 24663.083286441186 1.0804043105763235 1.6642164123283697e-05 515439617.9244791 7939.648734431665 224692 82690 25142 LUNA_20210131 690994703.4065392 20221.63444545146 1.4306478364134143 4.187531670310308e-05 95011427.91832104 2781.00139896625 20981 None 115872 ROSE_20210718 88833659.65318441 2810.351290287738 0.05927654212174541 1.8770873283108441e-06 5054196.058325058 160.0492713693609 None 1661 227884 TRX_20191118 1241922932.6256647 146111.56457102465 0.01879724119068508 2.208947405225525e-06 852968440.908937 100236.11471340535 485050 71636 67638 MTH_20210304 7325054.181238823 144.07279866201054 0.020604221628113255 4.066650390528554e-07 742725.4285940833 14.659154365367783 19864 1931 696575 FUEL_20200208 3296617.8050783584 336.5619776415374 0.003332131371845501 3.3998897397777126e-07 408257.83754606225 41.65596965307919 1 1479 None ONG_20210624 0.0 0.0 0.5136434160539605 1.5240969615896003e-05 13426669.252335666 398.3998465114856 139983 19487 131880 GO_20201229 8177306.531296624 301.34045660655823 0.007716897449069886 2.841278852067822e-07 232525.78799138707 8.56135005474207 13318 684 688031 STEEM_20210916 254728984.87954038 5285.556243242211 0.6529672921325202 1.3551266266191617e-05 6015127.843901523 124.83412265824423 14329 3930 232571 BTS_20210427 273495378.73800445 5076.6849609823175 0.10157341186246947 1.8842651669724897e-06 61147536.77852535 1134.3339904142442 5112 7096 102843 RLC_20200421 19798073.124105424 2890.9592904665537 0.2812533040824539 4.110321415298496e-05 686481.1589975418 100.32444661340986 30543 3569 508763 ETH_20210310 214412034435.93906 3922816.4548862563 1869.3311016255 0.03414457240444042 31147565432.965343 568930.9412458465 778275 716040 7262 FIS_20210610 36175652.99553757 963.7688030095069 1.3366304264934221 3.568758551454145e-05 26834229.094584085 716.4649453941474 22077 None 289115 DOGE_20200331 224115611.06461066 34882.05887582573 0.0018066708506827268 2.813756562311201e-07 130308976.22282745 20294.661688734166 138886 151741 103153 ZIL_20211202 1125454122.2511988 19689.743355543236 0.08753630280420786 1.5312170285051463e-06 69111377.75496092 1208.921499900964 358437 39380 43413 NANO_20200321 58784520.39986933 9508.877824665376 0.44343423227010176 7.151597438944624e-05 6432329.25038321 1037.3901256560875 None 49660 321803 BRD_20190325 15051097.446585229 3768.935596010219 0.25155253935796906 6.303985272472361e-05 349856.9499640631 87.6752453254726 None None None RVN_20190224 33638366.79085433 8175.022735463636 0.011339259470917067 2.7557433021174956e-06 3818725.869144597 928.0525120276615 19313 5752 319806 VIA_20210310 15936321.56661785 291.0874831744177 0.6876940546355221 1.2561188020777903e-05 447614.00704517734 8.175966718526068 37818 2142 1480037 LINA_20210825 159263911.07755938 3316.3574363161224 0.05688735501114873 1.1858766764147552e-06 61845519.731014065 1289.2348286431106 43314 None 115735 DEGO_20210813 53127297.12335801 1195.0826393902487 9.81366505139699 0.00022074186285660064 27664164.74856292 622.2587819114933 123688 None 244168 ADX_20190221 10759192.583825652 2709.741808569145 0.12360584107582873 3.1130580918315684e-05 1363302.5341092458 343.35270473340097 54240 3940 833344 POA_20200217 4102927.3869339577 411.58392515764166 0.01859690114565101 1.8693290703141093e-06 543864.0307156659 54.66829311789677 17467 None 534469 FUN_20200531 20304057.15611687 2103.5225592793736 0.003331466241655591 3.4494251041921383e-07 767640.7014467432 79.48209330358274 34291 16845 230378 LPT_20210624 559938320.8915603 16608.289233311458 23.842032326185304 0.0007077132321040836 73979514.98975785 2195.965551367532 13522 1110 95239 AERGO_20210725 38922445.165764645 1139.2284124281612 0.14739758814610288 4.314140925232735e-06 8894557.786478512 260.332453475827 None None 378084 ICX_20190507 158588008.38922787 27722.06406920029 0.33502480660003797 5.8566561179223006e-05 13407642.789475793 2343.8250428913557 113607 24149 291267 XEM_20190421 579450302.9070586 109124.9044638938 0.06440218922255851 1.2125533196982331e-05 30546583.643821824 5751.258124899569 216573 18452 129299 ALPHA_20210828 458375155.2719239 9346.066792042611 1.132824818031218 2.3093166096168185e-05 59769607.60438732 1218.4315296955974 73819 None 63427 TOMO_20211230 156280232.54537886 3369.613562881026 1.846061358300044 3.967277112331565e-05 3628049.8233604794 77.96858409880222 69324 2390 102672 GRS_20190401 31705024.721681416 7726.376352441357 0.44116330537524195 0.00010750823380594191 6872033.744657736 1674.6637844563754 38840 107059 6013629 IDEX_20201115 23820139.749873396 1479.8956632747202 0.04416735374202516 2.7446549435908126e-06 444219.1324521764 27.604738220084815 40025 1954 30306 IOTX_20210725 185991648.83687145 5443.82476298525 0.019556337534482014 5.723892579676825e-07 9280814.05277246 271.63768571880365 None 3289 234069 AMB_20200329 1159565.7480475844 186.007596497012 0.008129234969258601 1.3002475394089998e-06 84490.77750649505 13.514054639952517 19027 5489 780586 XRP_20190803 13406690931.70826 1273819.8910100786 0.3126327406662382 2.9703266198516826e-05 1147816423.5689313 109054.14673985032 936810 204280 35107 REQ_20190704 14019859.558065876 1167.9288758577584 0.019299702552282163 1.6082775790948224e-06 291992.3008839518 24.332223230271435 41645 29879 539616 AXS_20210110 33732406.28495111 833.6056227678636 0.6099283767192976 1.5091631265582279e-05 8038202.087081859 198.8915199994091 None None 19930 ARDR_20200403 32790377.130626418 4835.672017131345 0.03296904564491246 4.836223114420608e-06 2346419.779949695 344.1958768884638 64150 6371 1047061 EOS_20191017 3022989212.884419 377483.29624024127 2.9307745405855945 0.0003660649947772728 1563209169.2748039 195250.82822373236 None 68623 87489 BAL_20210826 297907070.4713053 6077.758923267716 27.58386592622235 0.000562812556162106 59861765.881953135 1221.400711651937 95588 None 8467904 ADA_20200713 3940493164.5851674 424630.39127774106 0.1268783734434242 1.3667739117469238e-05 464305800.57238626 50016.48729190871 158921 83080 46523 TORN_20210828 84065571.27681361 1714.0598372925017 78.05188885497124 0.0015916473120133388 92976658.69210683 1895.9957415284 23656 None 123832 KNC_20190904 27282183.89784598 2567.169580559048 0.16228191823750418 1.5270970557452862e-05 12889683.339674026 1212.9384278473638 97743 6698 205924 WING_20210707 26443309.643142574 774.1863435537379 15.11664555625018 0.0004426102472160267 2617018.162730997 76.62540288220728 11196 None 421675 PIVX_20190801 29176688.500272222 2902.5627450885877 0.4809905391159111 4.7850023129420347e-05 449162.9677501153 44.68374458097763 63325 8614 295552 KNC_20190811 26977171.098746654 2381.7943235470657 0.16108094579062782 1.4223904681065243e-05 6769691.484046817 597.7829712675027 97663 6698 212094 SNM_20200502 3179811.9887736607 358.83322016 0.007242864954033751 8.2e-07 224263.7331971803 25.38998896 29717 9649 7373028 YFII_20210821 167213927.80450988 3403.355379404195 4213.086283667041 0.08569755564434212 44504590.52634586 905.2590823610102 17978 None 505373 FRONT_20210804 32399333.79918234 843.2436208273614 0.7177006004731066 1.868570368149222e-05 10430486.188122073 271.56306409200175 71168 None 254647 REP_20191015 90965224.26074883 10897.813370634467 8.269565841886257 0.000990710306421315 6016104.690045526 720.7412136134842 125578 10049 198909 OMG_20190411 313338120.56657135 59038.76746629328 2.2340764791423013 0.0004209197111310499 100869080.77523671 19004.624388806697 289795 37355 None DOCK_20190903 3587862.4925977155 347.420932635287 0.006488616761286891 6.280447348903841e-07 2901462.2418587697 280.8376810531869 186 15181 184011 NEBL_20200807 9620667.827647068 817.7142151596938 0.5801123816953728 4.925749828715491e-05 124568.7754391151 10.5771682116023 38839 5953 444797 TORN_20210930 69200515.47559284 1665.6250662293937 57.82658853320802 0.0013905497209029062 82303039.87576501 1979.1322993744086 25310 None 97450 GRT_20210105 368971702.87880087 11793.3974039652 0.30086466104266046 9.616500357077229e-06 222891755.03301105 7124.261900471576 39158 2445 38944 ARK_20200711 44911989.52542392 4836.884319119961 0.297711166333464 3.2066627904454086e-05 2122165.7818225683 228.57960390053395 62191 21875 108686 WNXM_20210930 113750531.17279889 2737.9237671307046 51.342670640944654 0.001235191076606329 3493511.065160946 84.04614796704851 33956 None 134188 NXS_20211221 48923599.97584459 1021.8120047259132 0.4893914776208445 1.0380964530227154e-05 210485.87202178317 4.464823094579766 27189 4169 466557 NAS_20190411 58716769.94054508 11056.104072444523 1.2888229950057677 0.0002428459803231607 6481106.638816493 1221.2000417289985 24012 5165 612650 GLM_20210117 110492519.19826658 6393.577954391452 0.12486305725881704 3.4502585889903098e-06 3123230.23054093 86.30216306478512 145715 20318 197039 ANT_20201115 114868696.04085064 7138.04572325663 3.302755777526102 0.00020524039147119818 15113158.68777847 939.1643870711475 None 2682 88637 VIA_20210422 39461735.72188455 729.583439090913 1.7028496162320275 3.148292533357102e-05 66677032.380536065 1232.7500983589393 38420 2262 732301 PERP_20210723 344399188.8795337 10638.296389694719 7.906597515391254 0.00024422192835945434 20378855.964221478 629.4696918179291 23673 None 152304 BTCST_20210523 289735775.21304446 7709.641891693165 39.69968076790163 0.001057077518685881 26142593.618635967 696.0949675128008 None None 217036 MDT_20201030 6666774.338209479 494.93112652377755 0.010980267828830577 8.165801751332882e-07 348193.6508563177 25.894453289199276 13240 65 936528 MFT_20190903 8913898.964835724 862.0379214792076 0.0009904332183150804 9.578199127546751e-08 462290.32991609 44.70678843151411 18786 2212 866690 TFUEL_20200901 0.0 0.0 0.010756969552099609 9.225792889016446e-07 5050060.128664104 433.12206656791085 72572 4367 65774 ZEN_20200317 39714936.32889756 7862.362418033531 4.585383210618933 0.0009105645240679466 856491.4427534133 170.0819074691385 57794 5081 39151 MDA_20190225 0.0 0.0 0.8178539032518175 0.0002183206242936972 4687916.798642967 1251.408005815333 None 348 1845971 NCASH_20200107 2260946.3610925367 291.1524376843677 0.0007714659557905174 9.945904365534002e-08 201811.58672945245 26.017982082061394 58514 58532 1010197 BLZ_20220112 59230706.2460021 1381.6749314981782 0.1825550574199854 4.267449760503557e-06 4333738.132005282 101.30647715206175 77450 None 180203 FTM_20210527 963553984.661277 24593.33649445034 0.38085299398981187 9.721603343887106e-06 193104860.28812248 4929.169220468522 91093 7995 46470 NAS_20200127 19342000.579865564 2253.867557704978 0.4253986186261389 4.950106838706507e-05 3908191.567297755 454.77265221817515 23811 5029 940894 MDT_20200807 7487229.44594765 636.3813884644843 0.012338465741982788 1.0486354046314918e-06 7881268.462996063 669.8221088852476 13980 61 619203 LOOM_20190510 37026693.28341424 5993.581127494948 0.05349090275777352 8.663712789032989e-06 1814774.1517551185 293.9318878009108 19381 None 495542 RIF_20211221 165735813.412088 3512.748422340375 0.2042828157692901 4.334198990077686e-06 2232121.5768064302 47.35816396250891 52023 3564 352170 QSP_20201228 21186531.518974517 800.2742869318506 0.029577444058189 1.1246899263313698e-06 377340.2384565241 14.34845973021222 58251 8187 269724 REQ_20211207 439022002.27772355 8692.269902922517 0.5688280797415209 1.1262322097348144e-05 111569663.37546384 2208.9863879401964 56909 31375 183829 XVS_20210711 196258507.01841703 5822.110099775203 18.962871715065052 0.0005625433954955205 13406020.56380616 397.6965325381055 117965 None 10936 STORJ_20190523 37755351.02744424 4927.0751880314365 0.27699319817904033 3.6168854115531716e-05 5617725.598052116 733.5439965774941 83858 7716 179109 ZEN_20190929 26023594.589255553 3176.6157139917555 3.4996087799425912 0.00042721503203260616 3351130.2343561347 409.08950126687483 27230 1789 203585 OST_20200701 5910881.676664567 646.2954980850333 0.008565731110854017 9.370986936588057e-07 178973.57132806725 19.579869799842616 17639 754 819752 PPT_20200418 8391237.867785001 1185.316085444598 0.23101601057535948 3.2731944508927154e-05 2723365.4011246446 385.8652262461498 None None 1377509 KAVA_20200319 7326065.250261733 1358.7844846384749 0.39307558140096954 7.290475624398835e-05 1404708.0599614137 260.5348781535887 18016 None 337432 DUSK_20200927 13265237.325348005 1235.408188641021 0.04542205051847862 4.230577144436768e-06 411972.4648866288 38.37081933096814 18456 13353 710948 MITH_20210421 64389479.54419657 1139.6660829374268 0.10353624122957283 1.8365965679855913e-06 48180977.81295498 854.667094754335 30489 2618 258183 ONE_20190826 27123796.09543835 2686.2636428838296 0.01007920594752653 9.982158983466363e-07 3365839.6672623274 333.34319039006465 71027 None 130681 CVC_20210210 165188536.28036284 3546.756924891193 0.2465500541497953 5.2936670520764085e-06 32869766.7623016 705.7455408763159 88500 8517 155763 CAKE_20210727 2880784912.690533 76904.21752412534 14.260888961776317 0.00038209510033221703 259243599.05984133 6945.970146654649 None None 809 NKN_20200323 7303185.426456459 1252.1327919912246 0.011213171291017614 1.9230634475638426e-06 3904004.78786082 669.5384126222551 12230 994 277366 GXS_20201106 23231484.165468343 1495.0738017967522 0.33291179378620966 2.1367034442746395e-05 9204638.742730824 590.7746037236196 None None 441833 WAVES_20190421 265526959.4702185 50003.64156672643 2.6547445883455962 0.0004999544363439893 12293173.571506592 2315.110346510408 140015 56753 40445 QLC_20211216 8212779.129461504 168.34160235844044 0.03425296363936601 7.016098425406433e-07 973480.871258344 19.93999024408321 35953 5831 940522 GTO_20200403 2969063.2499469314 437.5239375312522 0.004494972880365043 6.593667277132649e-07 547449.9202502065 80.30532599630537 16830 None 1069804 PIVX_20210809 47806610.28367025 1086.2930402969223 0.7299713546287236 1.6597759823994214e-05 4944935.377854365 112.4357130267715 67683 9855 344305 CTXC_20200914 1070495.1847237595 103.70708861678497 0.10630374756461713 1.029529391875635e-05 5799073.405412468 561.6280378908924 16710 20064 535694 KEY_20190813 4767628.600164193 418.91118717222014 0.0018258179788325452 1.6044544920070638e-07 46398.87220766852 4.077343952175157 23873 2829 851050 DENT_20190616 143328942.46068284 16249.107727375233 0.0019903643083619776 2.2553043083857694e-07 852257.0593298281 96.57021127657727 45296 9575 252434 BNB_20210626 44009190871.738106 1383141.993382941 284.0782307500083 0.00892609938476049 2246825827.258797 70598.1256691495 4363003 521472 132 LINK_20190729 807128950.8092072 84551.97997328115 2.210964692231639 0.00023184896854199386 61859407.65106488 6486.77923664261 28937 9982 123465 GXS_20190614 134497510.64343113 16356.261111616092 2.238845831613393 0.0002722548959990585 14964260.557999201 1819.7292302994115 None None 820367 CTK_20210105 24112763.916222762 770.7133234155277 0.9570670345679864 3.059061655089122e-05 7101247.609829891 226.97630867966924 10153 None 220154 STORJ_20220115 232602730.74529624 5397.451695679526 1.6177005279440961 3.75191919657201e-05 28425346.83184111 659.2666726958475 113864 14831 43739 QSP_20191024 0.0 0.0 0.009938143016511724 1.3316931231176605e-06 206390.9772440093 27.65601628118374 56023 8468 465255 NCASH_20190704 9765402.136810046 813.6875550356008 0.0033629356946570975 2.8023924529423017e-07 1612639.9052966624 134.3840712475402 60207 59125 1075927 RVN_20200223 167980691.4483892 17402.21562832103 0.030258649961993487 3.134653406618211e-06 14884119.073312378 1541.9245279043482 30150 7427 186532 APPC_20200224 5042877.211404918 506.71155448098745 0.04665294063835515 4.688415879229196e-06 852165.5255937392 85.63889708252792 24963 3239 775270 INJ_20210821 349492882.8147258 7113.333789883598 10.706124192122076 0.00021777115679934354 34195527.618120365 695.564470683198 81701 3898 170499 CVC_20190130 16831548.966844786 4931.01970994885 0.049103120833379324 1.4384171707187934e-05 687929.9429266787 201.52084538884773 88516 8229 323162 STPT_20210204 21319391.398001205 567.9555020638486 0.02321436272514483 6.196456173932392e-07 53555149.92929307 1429.5121660427687 19410 None 1418206 ATM_20210618 21778914.37295663 573.6789299929791 11.623239758408676 0.0003046350401865856 29964963.490609527 785.3557224049863 4996290 None 100469 MATIC_20190810 26641234.709266223 2246.6363461781148 0.012264416632172247 1.0340239321506941e-06 31448914.15180711 2651.48607132417 21714 1086 193229 NEO_20200313 395731083.42132056 82200.73829784585 5.7064819534298135 0.0011908169856676748 667109805.245696 139211.11008062703 322757 98964 240012 CELR_20210930 823827332.2843777 19831.47951531833 0.14653841537427176 3.5237934273648103e-06 349929416.9081954 8414.714845887403 None None 137033 LEND_20190530 10815657.962440917 1250.7271976352622 0.009717248991907282 1.1237373766999582e-06 1748956.187009989 202.25553952467038 42320 5871 548468 JST_20210201 43951151.33842617 1329.6083499209274 0.03075681146517432 9.277520980822946e-07 106851523.40965253 3223.081987508379 None None 170314 WRX_20210508 1048566347.5451127 18299.476782655413 2.4200121544400726 4.223009740690379e-05 115433849.0868947 2014.362895677808 148023 None 2365 VIBE_20190512 7595882.563817999 1035.6482409012597 0.0378314062902697 5.173093479115321e-06 611984.2051820935 83.6831567100196 20727 None 1402427 CELR_20201111 19105776.35640107 1249.1044474460484 0.004792521272347784 3.1370307021143576e-07 6628814.517571791 433.90093603188166 25149 None 314997 ANT_20210310 189349189.80433944 3464.498862015841 5.414221008303518 9.897950947579283e-05 35626587.79292218 651.3037016094454 79476 2818 130780 QLC_20210809 7843192.38854399 178.28542375285988 0.03232202824127092 7.348190785572042e-07 1800707.4455491817 40.93784511332132 35086 5688 940522 QLC_20210731 6315904.255366848 151.38257116686435 0.02591748390487551 6.204595712716312e-07 921803.3737003691 22.067795166462226 35115 5685 940522 ICX_20210902 938180384.5017049 19286.5874267178 1.4139745625063458 2.90502147913126e-05 97334849.64329435 1999.7518794155305 144353 33055 256574 MITH_20210219 14251400.85118001 275.72434967045496 0.0230181667449562 4.4522180636062745e-07 8859540.514326489 171.36293585056777 24811 2202 386165 AMB_20190826 3332017.599508779 329.97272839534094 0.02304443689869841 2.282111510731157e-06 270388.5046297414 26.776819129816538 19292 5620 728566 CTK_20210523 54771412.12125843 1457.2518621380877 1.22001775832735 3.24619981323051e-05 6154630.663205073 163.761230302013 51537 None 200657 NAV_20190324 12932564.687333567 3231.9528514253843 0.19965763789235433 4.984931411619156e-05 620153.5005181516 154.83618344845164 48185 11390 772440 XZC_20190811 63504166.98879867 5606.7355580709045 7.823642912910255 0.0006908498736813467 12682163.144559199 1119.8709992204697 60863 4042 218512 LOOM_20210420 126898820.46027209 2264.8304658498723 0.14470292223612646 2.5858255464806184e-06 6426538.118296783 114.84154006652456 31654 None 252037 STPT_20200907 15624541.740204137 1517.3160279584763 0.019025609936199523 1.8515571762901233e-06 3285017.843183289 319.6953150087611 14451 None 980559 FIDA_20211002 321649907.19064397 6678.78289479364 6.555333753868716 0.00013609511655930147 27137398.778436255 563.3988426123836 47107 None 505726 PPT_20201106 7219469.9127430525 464.61260298839903 0.19938088144653268 1.2835463825015012e-05 1122350.779604663 72.25313042091365 None None 1538811 WRX_20211007 555038632.9697988 9999.68650754006 1.2280362469894655 2.213683147615391e-05 38806651.294929914 699.5365991644892 349381 None 1271 BNB_20190622 5444559979.27476 537971.0526143354 38.91793858342014 0.0038449743781768055 540952870.469896 53444.50406332798 989731 53193 829 IDEX_20200907 43638185.41059501 4238.142773112689 0.08133403406798682 7.920220009698936e-06 1207833.8228462173 117.61754745991483 39963 1967 16691 SAND_20210806 450334326.61962074 10991.422152566445 0.6394375114850849 1.5628094398613502e-05 146251546.79914564 3574.443066394302 150796 None 28891 XVG_20190131 95305020.76096572 27532.533558866744 0.006150037992697985 1.7776589045770524e-06 1122465.5101233688 324.4469077297646 304831 53586 374817 XZC_20191011 50749292.71065104 5926.942400080086 5.929575706238226 0.000692507260508327 22917297.626171775 2676.480710189384 60992 4058 207313 FXS_20211125 670079921.7863091 11713.165238409676 18.699027338198945 0.000326912091304873 4057514.511856714 70.93687444700588 22130 None 95624 MITH_20200129 4497420.146736356 481.43449048279183 0.007818946394298976 8.362154599009759e-07 527069.2539490937 56.36865075735328 89 2081 1281768 IOST_20190625 155960061.34174538 14125.664458135745 0.01303513927285982 1.180213466017753e-06 83915813.25827976 7597.814702713528 197935 50175 103864 TRB_20210519 147459425.85817748 3455.9250692448823 89.07752352449994 0.0020820831551544945 108468736.67863666 2535.330132268017 21198 None 255524 THETA_20201208 683087952.6291412 35564.42320136197 0.6820721315513731 3.5545886401006075e-05 20578256.09296025 1072.4266827138094 74940 4554 80855 VTHO_20210626 223769451.96859184 7032.733838621985 0.005992922181260611 1.8830523850362399e-07 25394082.839298144 797.914386505343 None 189630 26602 NCASH_20190719 5268754.359667474 490.920712314227 0.0018061013599897002 1.6927560003618077e-07 990466.306872607 92.83076915042942 60167 59079 884263 CTSI_20210809 183404908.3390348 4169.019473414878 0.4860340303742832 1.1051222834001917e-05 20196124.697702207 459.2103854244978 None 4118 132314 IOTX_20190712 28978267.68764285 2553.541120450998 0.008387502598664468 7.370869561562728e-07 1471881.0069616977 129.3477144696653 20074 1750 776154 BQX_20200229 7269594.813519901 831.3020498711064 0.051339844298847095 5.892266499978943e-06 3905777.5264293216 448.2655214415389 10523 8 328951 IOTX_20200322 8766234.81562005 1423.4601809095125 0.0020391269403400064 3.309114929118039e-07 1623017.314232931 263.38482016473824 22545 1810 487690 ETH_20190819 20870523158.477386 2022800.2228230052 194.35736761658467 0.018837706969018486 7608103574.120334 737400.5291219612 447773 444759 27728 QKC_20210310 107320701.17860954 1963.6336838210948 0.01665360254133462 3.044510757906082e-07 15206755.392231194 278.000692460287 65698 9278 361342 THETA_20200605 290886367.8559037 29761.38965590158 0.29078806951834535 2.9744783742109665e-05 47537817.134917386 4862.655103396069 71224 4209 132852 NEO_20201015 1200300405.0719929 105154.4955726671 17.01823388898392 0.0014908918151744037 260705244.63065353 22839.227497306918 324625 100823 85109 CTXC_20200718 1140446.5430351256 124.56621785405815 0.11329499916670371 1.2375714909306433e-05 7005100.2448773105 765.1981480149261 16469 20062 581849 STORM_20200313 5409522.484708961 1125.7660496124063 0.0007228286649622719 1.4888570759185109e-07 1347902.2334872135 277.6361640387559 26104 2524 826076 SAND_20210718 318926604.1752323 10089.596635444046 0.45308600397884663 1.4362916444468743e-05 267666047.01424393 8485.066928852466 143231 None 30642 ZIL_20210203 904243782.1072094 25387.534059869864 0.07752200963898681 2.1828134009256414e-06 203170259.60849282 5720.7336007956965 134363 16302 35643 TNT_20190909 12123431.746805236 1166.363131067574 0.028242711640172224 2.7188186109532793e-06 563873.8612077504 54.28199556805621 17505 2530 571666 CDT_20210616 12992602.555510478 321.7061538895558 0.019358765180800708 4.7964183292453e-07 303684.86370693543 7.524238416006545 20902 337 469321 NEO_20190603 994745950.5249887 113806.65240825318 14.113240132816014 0.001613961025611679 460554949.5847594 52668.113897814 322028 97624 216321 AUTO_20210723 23893883.490372207 738.0685631066492 699.3652970722654 0.02160234331297838 1642513.340838098 50.7347694165976 None None 11033 RSR_20210203 386268839.960977 10844.87781372773 0.04087844960528318 1.1510283082573842e-06 180088252.60414344 5070.805735870807 56077 None 136667 QLC_20210310 20223907.878257785 369.3636401525868 0.0842662828260741 1.5390151673024453e-06 3620019.25481162 66.11499110007128 31402 5613 940522 STMX_20211221 198871141.32082134 4215.047270361382 0.021323992549548615 4.5224899701986526e-07 2771556.448451332 58.78043809495644 81504 5789 86095 SUSD_20210206 179138564.86765474 4727.433741881265 1.0251139253942012 2.698621093386161e-05 41808605.447203785 1100.615080431156 73300 4072 30058 DOCK_20210806 47445695.07747433 1157.4758192153217 0.0687385689127304 1.6799965977892238e-06 10226862.021865183 249.94837213742733 52476 15151 292152 XVS_20210814 380856318.95346975 7984.462519526493 35.943972229776215 0.0007533477039071546 56086068.922279075 1175.504782100162 121232 None 14321 SFP_20220115 118854143.67913388 2757.087089700547 1.1031105558988712 2.5576795365752915e-05 10573339.66102837 245.1541628321741 457587 None 22684 FUEL_20191102 3387863.0686354004 366.24276190626114 0.0034223585341059807 3.6997187205364274e-07 70346.97487198537 7.604814553276441 1 1495 None NEO_20190616 982844376.106107 111468.55582275926 13.950583417064145 0.001581568446064497 569607012.4067216 64575.9715237146 322142 97692 201306 ONT_20200309 390422172.4493869 48328.5688858419 0.6045809828032156 7.508646265618241e-05 126600052.48704764 15723.203977180867 84515 16494 345761 POND_20211230 52762929.99307281 1135.4567399204177 0.06567296017065034 1.4113443771121773e-06 13292317.253101537 285.6584683438712 None 794 3495821 AXS_20210202 54798876.99068524 1641.4866280672784 1.002524227479821 3.001707552777645e-05 20804975.70066458 622.9321046238483 None None 20130 MATIC_20211207 15623283140.964407 309529.1906065074 2.2710027371380646 4.4963962259441165e-05 3813868724.1703095 75511.42346581479 965040 None 4158 TRX_20190507 1574125758.464067 275165.91936773126 0.023833328181836207 4.166366327411684e-06 574137273.4971795 100366.43583138492 416883 70551 110041 MFT_20190410 25836956.608090233 4994.392289771313 0.0038907452261887267 7.526600083351733e-07 3624910.9749045167 701.2346905218699 17395 1918 690472 VITE_20200625 8445172.687228823 907.7590704340686 0.016840615901348326 1.8118093534568317e-06 2738227.507220553 294.5941073970919 None None 610185 XEM_20200312 396879221.9567937 49996.224057992105 0.04409769133343238 5.555136007060805e-06 25363492.656350866 3195.1253469202907 212357 18029 213172 ENJ_20211225 2612771918.7353754 51354.83478618312 2.7997985331245583 5.505913647082199e-05 217832199.8538136 4283.7556622710445 436112 43637 15146 QTUM_20191020 161679612.85291886 20347.912492901873 1.6832615721745556 0.0002117420235561102 166408722.13765657 20933.00301348524 None 15288 181813 KMD_20210128 66822992.254762486 2208.9354025313855 0.5423366831733452 1.7835845788558488e-05 1398273.6055824847 45.98507379853847 96732 8415 314092 XVS_20201231 13578113.659353418 470.24087274254276 3.6501373686330623 0.00012657295789904593 2851072.8595393123 98.864423053953 13671 None 104864 DODO_20210617 168957243.3726324 4417.29204881031 1.3004576552767761 3.395548823120981e-05 26496807.628502384 691.8426262812513 92425 997 25674 RDN_20201229 10953619.291358272 403.9463447477207 0.16411787291654037 6.04488587644112e-06 165666.58558435342 6.101928970931441 26507 4384 1993466 ARPA_20200224 0.0 0.0 0.01258190710396424 1.2644264702301594e-06 2381018.242215878 239.28188840387088 12326 None 2586672 SNM_20200907 6132189.4605776295 595.13802368 0.01396590417470284 1.36e-06 311004.04836845084 30.28557983 29080 9582 None NEBL_20190801 12576982.243347414 1249.748538517882 0.8172694091173118 8.116550376103174e-05 200431.2164590654 19.905432005471404 40498 6156 850260 TRX_20210725 4111849488.434332 120356.61711429278 0.05740044781189992 1.6800421708992054e-06 766404454.5908313 22431.73795258555 1075971 114332 24266 BNB_20190702 4663169792.682729 439451.3917366102 33.258469954070044 0.0031331681972888315 284896198.11554676 26839.109216294335 998600 53815 760 POE_20200330 1936327.2786662572 327.45741999684964 0.0008266476143687627 1.4004602866287907e-07 30181.815528994972 5.113234864772486 None 10431 698681 ADA_20190922 1611102077.6346533 161326.7574662477 0.051766192682133796 5.183686622002338e-06 106175294.6757798 10632.024997039229 154376 75319 108471 WAN_20210429 287294346.61231244 5248.670593504037 1.638722393349792 2.992792314278014e-05 12332894.876672104 225.2351780233739 117713 16337 185285 FUN_20210125 107130065.61968201 3327.2621883704255 0.017796306469698497 5.515806823825281e-07 3466791.48407307 107.45011700708015 None 16493 254768 HNT_20210729 1180976458.1295912 29534.009591780323 12.77935469557116 0.0003194141569661782 20817262.87044115 520.3180151506153 65770 43537 2371 SKL_20210519 371935631.93112564 8689.83451209335 0.5638129903321406 1.3161509374260002e-05 113292111.93361156 2644.6627140774854 24295 1805 118813 BCH_20200913 4244908907.8820705 406920.84231790144 229.83140997198632 0.022011541220821662 2092218039.2382536 200377.06603833128 None 319754 143808 DLT_20190916 3440045.742365442 333.90632144907187 0.042584514795918946 4.13234254570416e-06 4035890.1914744712 391.63721432416935 15009 2647 6222590 MFT_20200301 8012781.70477952 934.3537356360115 0.0008709723644579111 1.018334744086289e-07 898270.2910154422 105.02512872390113 18466 2498 867921 CTSI_20201201 8681843.72594536 441.02824898233706 0.04385816851070692 2.2326752440159172e-06 1659272.5906356296 84.46811533595925 17609 156 506412 THETA_20210821 7254935167.475696 147643.7092749536 7.262869993602106 0.00014766516570529484 299268587.5347335 6084.584414650749 188892 22790 21702 GAS_20210729 118279050.91295627 2957.937561009874 8.42549259973875 0.00021059135456213612 23604208.953230925 589.9764646381309 None 112444 108336 VIBE_20190523 9217455.558743225 1195.6187499327586 0.04604120342682112 5.972117330618442e-06 3041452.0750640836 394.51420240580256 20670 None 1508897 QSP_20200430 6424962.530838916 735.7810427014646 0.00902927708758858 1.0298754330520256e-06 2048688.6811912472 233.67254346760794 54806 8281 395631 GXS_20201015 28995058.23623421 2540.18642272204 0.414576397846555 3.627589114893523e-05 9008159.983426284 788.2239141165848 None None 492071 KMD_20190511 128381943.29692112 20147.426291229873 1.1340401545300585 0.000178005870274252 1449429.045916816 227.51123731250817 96955 8359 329492 TNB_20200224 6760483.163862986 679.5132274028236 0.0021801607923943016 2.1909659580881528e-07 665600.0149155769 66.88988167617903 15242 1448 1323149 ADA_20201231 5728871576.204359 198403.81642176997 0.18449303575089104 6.3975206652317635e-06 1624809767.3045118 56342.25715401197 171367 94587 38341 VIDT_20211125 42039810.521725915 734.8664408862015 0.9091293248987481 1.589416195258974e-05 9134339.14209 159.69418396049147 35754 1835 323462 SNGLS_20200905 7745444.394825962 738.5840650699895 0.008702746511040407 8.29869736033696e-07 208877.53602955048 19.917981693286052 9073 2121 759166 WPR_20201130 5071970.80001134 279.54495099020585 0.008345532018985316 4.5930936525877897e-07 94494.10396800515 5.200630327162594 32568 None None AION_20200407 27994808.81416339 3841.9288203690876 0.06821149307099995 9.361153449895874e-06 2364972.375459544 324.56215682594205 543 72558 269211 MFT_20190810 11205031.650289608 944.9123375975139 0.0012487623720459436 1.052842721338692e-07 584348.6068179022 49.26695352012084 18825 2183 955030 SNGLS_20200914 6799161.26003096 658.6796648429947 0.007645028029440023 7.402799359220218e-07 191851.22203558224 18.57725175213847 9057 2123 759166 NEO_20200404 494221198.82704914 73470.1507695313 7.005024892541073 0.0010411517577714432 409071588.0415906 60800.01277331084 321561 99284 235469 FIS_20210624 19861168.0362015 589.100640105175 0.7371181702461633 2.1871974379335583e-05 6761746.339649103 200.63640901835595 None None 388114 CND_20200106 11139439.795924554 1516.7620188989367 0.005950466502753107 8.102497042488045e-07 37876.92095799314 5.157539159302893 35246 6017 478937 RDN_20190810 9740836.495875858 821.1788944424462 0.1925894753066774 1.6235415596971665e-05 275312.0999540108 23.208985613106307 25617 4398 836731 CRV_20210806 635587363.4456702 15512.939195436546 1.7784921558210236 4.342330239624472e-05 161612773.13597822 3945.9045664104124 145520 None 12841 LEND_20190716 5726842.797995351 522.8169343656639 0.005066329037463848 4.632880661463275e-07 1501828.4215972156 137.33399074168017 None 5860 751506 ARDR_20190801 69108167.34164554 6875.036277860544 0.06916338025584451 6.872621088371093e-06 2274460.7642638236 226.0084304053557 67597 6556 897983 DASH_20200106 473065995.74203324 64413.341058374885 51.13767846476209 0.006962373537928598 458092765.41690135 62369.138443641416 315695 33186 83621 GO_20190201 12953063.812182248 3778.5111389478197 0.019028773820471738 5.5544935215693235e-06 593194.2676331465 173.15323350239328 7823 624 665019 FUEL_20190807 3086932.518724633 269.5708587474094 0.003437300854408037 2.9954961564220035e-07 1188379.3164150277 103.56340121137521 1 1505 None NAV_20210120 13714668.343777798 378.72393631966844 0.19291914997019546 5.335260751257834e-06 324739.1493374232 8.980798630537608 48223 13624 681902 XEM_20200109 298754070.8375904 37131.482166302274 0.032949181281771926 4.106182790510824e-06 33392669.85323524 4161.451087600145 213672 18124 305996 REN_20190714 76032392.66218029 6677.335442717005 0.09476164034848378 8.32116219365183e-06 5409127.576625161 474.98362972325873 7497 801 1032866 ZEN_20200621 67683853.32724375 7233.92524137529 7.256939629603035 0.0007753029510287262 3723116.3740638797 397.76314247676817 62801 5947 59868 ZEN_20190131 24047345.803061854 6953.36907405347 4.215153581402522 0.0012188255117776099 178426.3777220931 51.59257354257436 24885 4276 224738 NULS_20190714 54417327.143984154 4781.14984493132 0.7419287653072022 6.51498810019898e-05 7733880.072724222 679.1236436465905 21314 5315 511487 ALGO_20200301 204292230.95937783 23848.94167629362 0.33206432075571873 3.88247261217555e-05 109259722.9437855 12774.569727266622 15560 804 407593 BAL_20201015 117466658.77086744 10293.185703099052 14.315115404912866 0.0012540836217015854 32481619.70194852 2845.570302602888 25860 None 55855 CFX_20210620 243918403.94543803 6842.257226265442 0.2881833239702118 8.094215263035106e-06 4503201.903260706 126.48159191081163 34470 None 134840 BTCST_20210408 414238225.38151497 7354.4083139999275 56.68252374503066 0.0010087110046306748 42617450.62322391 758.4117395040861 49088 None 81774 BCD_20200316 77709329.06215833 14379.964862651206 0.3974439966185145 7.396226704753298e-05 3457409.8775977767 643.4060517590738 29113 None 1207769 NCASH_20190401 5739644.349238285 1398.666276173909 0.0019787112358561165 4.821972897268121e-07 930499.2094508178 226.75577353559436 60575 59490 760895 POWR_20190220 38323052.7669073 9791.972920839127 0.09227766938944397 2.3572424503914243e-05 4465094.882164466 1140.6130292306243 84686 13280 761259 AXS_20210108 33401987.362819877 852.2008297490953 0.6067678552224709 1.537154702831157e-05 16899865.630617127 428.13256680832325 None None 19930 POA_20200322 1980403.7711607316 321.40846680424835 0.008995727161080188 1.4598353078518765e-06 277600.26145098795 45.049239030767 17384 None 758180 ATOM_20201201 1327446090.665672 67518.58573408266 5.548419933677368 0.00028263131174539495 212933656.76800546 10846.640925968628 45401 9769 88089 REN_20201231 287070280.820841 9941.125591345275 0.3250663478948163 1.1272071434915729e-05 101989836.01650514 3536.6217532470687 31092 982 105683 ORN_20210422 333286027.85885984 6151.071153243402 13.341699337169956 0.0002466663644582472 25081180.227856 463.7103105667521 56789 None 53561 C98_20210729 212518440.03954756 5311.379952786007 1.149134966823328 2.871007166675334e-05 59988054.26750196 1498.7459148772525 147721 None 490575 WTC_20210727 15512280.182051081 414.3415252540728 0.5297895468330928 1.4198261411520758e-05 4164536.8713951325 111.60881431398496 65350 19892 895790 VET_20210819 8138192477.099722 180646.17170397373 0.12104955607181216 2.6904569964277175e-06 1206682478.2397716 26819.820091871643 402521 197486 47063 DENT_20190729 42457552.571124405 4452.237435097567 0.0006264109870554517 6.570991485366678e-08 452268.3751132931 47.44252101866462 46548 9944 262986 HBAR_20200208 67948210.15181893 6937.645771764204 0.02136489224171556 2.1804929027277017e-06 4558523.901814389 465.2412426126385 35132 6115 205203 ANKR_20201018 46638033.78496217 4105.7116434083955 0.008017764813581005 7.054013332584895e-07 10978303.071697911 965.8688928582698 None None 5196 CRV_20211021 1146622123.5554426 17299.010206293453 2.9157491283159933 4.4163392513502296e-05 174556965.9870005 2643.926986030641 None None 13833 IOST_20190618 175084969.08007932 18782.717711398403 0.012904776958068806 1.3850283916304962e-06 80941162.40175673 8687.155798373791 197637 50067 103864 ETH_20200914 41170490544.06533 3988457.3811186757 365.695506306262 0.0354108637578403 13172306578.937866 1275494.9010848291 488807 483285 12393 AUDIO_20210127 37613492.48559066 1154.9228772507743 0.24795157140891136 7.610031723548625e-06 9597785.127097454 294.57143134036113 25083 2462 50334 DGB_20210508 2116583252.5617297 36932.29452318358 0.1481423389853316 2.584938007110117e-06 138772297.10534903 2421.4399987103793 212406 36186 157922 NXS_20190804 17615585.056098133 1631.8266701473708 0.2950294548378104 2.7330169923406283e-05 176237.23538322418 16.32580581658446 21656 3539 855550 XTZ_20200107 904347414.7702689 116555.53220492737 1.2985669961558017 0.00016744202499662309 49745688.25010441 6414.39278844018 52460 19371 175595 XVG_20191113 60116168.87713037 6833.203851981267 0.003737026088442806 4.2463915111603866e-07 1141251.5854126236 129.680685381939 300359 52410 272884 GRT_20210930 3145674288.4015055 75677.16665821853 0.63522220427447 1.5275119651195343e-05 81390424.04847763 1957.1867252688696 146193 18080 27652 FLOW_20210821 1357115078.9121604 27621.77149313801 23.321308963142 0.0004743741376282012 152754305.2453459 3107.145140707116 80441 None 63325 TRU_20210217 69114775.6439549 1405.550591296099 0.44783832168797494 9.10135455712707e-06 7044042.45417256 143.15507357485131 19256 None 95211 KEY_20200324 2532229.348631976 393.0657013115856 0.0009184726846516584 1.424313566535815e-07 747613.8324764593 115.93556802725244 23440 2758 250395 FLM_20210104 0.0 0.0 0.13162912313223943 3.9987335117613645e-06 6172265.94183569 187.50597191417899 None None 65365 XTZ_20210511 4791815185.987233 85823.34107581609 6.21314110092657 0.00011119635586917618 414214203.09923977 7413.176231748778 111586 45287 85106 BNB_20191108 3130183685.4413996 339536.0442696166 20.40350094227934 0.0022131597142761735 190238362.28844744 20635.080259889615 None 57283 1745 GAS_20210805 115662976.1142804 2901.0561807473614 8.286863803677155 0.00020836385246762707 47386189.54384132 1191.472339962283 408710 112553 120320 GNO_20211225 836042162.2050997 16442.614588140972 448.00590155744254 0.008813944622375502 2458829.778011705 48.374339319867794 101359 2415 136852 BTS_20210120 73269612.0732893 2023.453626665735 0.02595138259758636 7.200339808505895e-07 16980156.467424024 471.12286255770914 13162 6862 133221 XEM_20211225 1225791191.852467 24105.664646383313 0.13619902133207404 2.6784071832290804e-06 111065093.95247161 2184.13864166481 377152 22520 308464 WPR_20210421 26838076.893354136 475.00337135307564 0.043427948997332495 7.702185611397802e-07 802401.4822408984 14.231031613903134 33377 None None NEO_20190818 680853538.6210492 66649.53871558832 9.666978233700938 0.0009457517331193052 251871860.91071582 24641.43843314496 324341 98209 189804 WPR_20210513 23493146.39161211 455.79531441303703 0.03863739830918007 7.498013624983692e-07 1421309.704359896 27.582083667574455 33725 None 7374795 MATIC_20210124 165710879.60734364 5177.020684886479 0.034051996581474064 1.062525320838133e-06 56977447.71547041 1777.8687593124812 76337 2742 46459 NULS_20200502 21741983.87968468 2453.524332809034 0.2255084121262766 2.5534446706270427e-05 9067518.992686743 1026.7203706228208 23834 5193 573098 XLM_20191108 1494570256.032374 162118.43253048623 0.07447373934249393 8.078137185897045e-06 237191243.77472883 25728.04082918557 278007 104863 59559 BTS_20210823 166031864.90284616 3369.2927160029985 0.06126194025143895 1.2431915354210168e-06 14117864.112320526 286.4945036122778 6640 7205 252207 RSR_20210610 445672704.73929054 11873.23148051311 0.03378778321050797 9.021225155222254e-07 70597635.76138152 1884.93327207014 74769 None 80014 VET_20200320 181804473.22946608 29380.62842002896 0.002901745895262951 4.70068916487434e-07 106103538.62813623 17188.26432039837 118632 60891 265359 DASH_20190903 736801206.3396239 71370.00641629878 81.6578119223663 0.007909757083315443 263567757.88632882 25530.404143782085 319613 30294 81581 BCD_20210420 466835895.9996517 8326.861448432004 2.3973698630329716 4.28407397749547e-05 11690398.4943224 208.90615481717188 29982 None 1334994 BEAM_20210729 43888656.52122704 1097.5721564614298 0.47104543866757503 1.177356644908763e-05 6083552.549579051 152.05562841578117 21894 2551 207096 XEM_20201018 1021761864.2232977 89949.3233800286 0.11353957877769137 9.991452905476817e-06 19640809.97291984 1728.386083359382 211782 17833 137750 SNGLS_20200707 6899811.07940696 738.8112492163342 0.010004158672302962 1.0707409408932378e-06 175937.86003564874 18.830555968175908 9102 2132 889953 SXP_20220112 311167988.31881535 7258.616960587809 1.6028762082170722 3.746526112050889e-05 104118500.15110362 2433.64195914783 49414 None 155016 BCPT_20190314 3888616.2446288536 1005.7466407274046 0.04635749557740604 1.1991707573990974e-05 793163.0700724667 205.17457805536932 9987 1525 2438592 RLC_20190302 23111833.30931995 6050.203790761273 0.3302608043619642 8.63780757391807e-05 468263.39260408253 122.47196838989915 23911 3268 901823 ZEN_20191118 42963807.47383452 5054.918984119459 5.495216768743659 0.0006457673601849281 910457.2093618962 106.99187555168754 40569 1897 49909 CTSI_20210511 358346319.54433346 6418.126996102109 1.1479693467102692 2.054516482567316e-05 152813831.84552935 2734.9034814441684 37060 2673 173640 TRX_20190318 1502310183.7148347 377252.6597178146 0.022922984900207465 5.756590662460802e-06 154882243.19758102 38895.18223100642 401073 70259 84022 ADA_20200417 1065455000.8551606 150063.23206512717 0.03421573200401328 4.826686808341724e-06 162619038.51849556 22940.066514151215 155103 77894 53187 EVX_20190706 13628427.934145523 1239.9850553734175 0.6458970584903092 5.876706423570699e-05 1133235.535839122 103.10764641737829 18216 2913 1053022 REN_20200319 28751817.03392918 5339.077296617718 0.03288927078785477 6.104443557278882e-06 2144353.028959959 398.00462943069977 11344 873 365958 STX_20200725 131228855.43191276 13754.220131052307 0.17062147723940715 1.788721454622464e-05 1814034.5070502728 190.17549810762517 41744 None 98084 KAVA_20200312 16382486.634751357 2064.907637865711 0.8780865584092483 0.00011061554721884445 8497863.588671183 1070.5047492753602 17520 None 380992 GVT_20200105 4447938.676411765 605.0155923290215 0.99846986193897 0.00013577761437753128 816401.3276801704 111.01889888974759 20870 5642 224170 NKN_20200927 12394545.922741307 1154.3196063429707 0.019173741041204444 1.7861038794036215e-06 1624865.4542087861 151.36214080676524 None 1024 218455 REQ_20200308 10758324.869265106 1210.3485585337276 0.013949528758741576 1.56826059778362e-06 112891.98594817548 12.691758727485311 39779 28293 787523 PHB_20211230 17097116.952105384 368.6391467723341 0.4622192390952359 9.932519439084433e-06 1430212.1814116237 30.73348985146716 None 426 210451 CHZ_20210902 2050529142.3517516 42161.38214697064 0.3842044384512895 7.896466285220654e-06 275963112.5321756 5671.806975626999 378809 None 60398 CELR_20190929 15068517.719340302 1839.8376822383489 0.0044808343498055885 5.458775281222849e-07 2878317.7573728748 350.65098592929553 18440 None 536359 IOTX_20210731 193374551.8784123 4634.892436299917 0.0203683301965317 4.876139006256589e-07 11219681.9157445 268.5970234146595 87012 3898 171863 HBAR_20211230 5179910059.320685 111685.60001138486 0.28223952492280807 6.065799752246653e-06 66331278.403255634 1425.5701862264484 192096 18488 31895 CDT_20201031 2845684.169582724 209.50039297241975 0.0042984534215105945 3.1702884157581136e-07 130187.69048774589 9.60188436525056 19174 292 403317 OXT_20210124 0.0 0.0 0.29935107029817726 9.347896310446015e-06 17376928.63387936 542.6328588093031 None 1866 171899 XRP_20200518 8860387827.044128 916272.4242336089 0.20066391162784475 2.078386040843978e-05 1540402812.7256665 159547.95644487816 952807 213599 35864 REQ_20200621 13291700.029360376 1420.7670635222362 0.017230523031294007 1.8408414615213532e-06 139462.07488162472 14.899580777996285 38911 27953 596176 ICX_20210217 1004577935.2171146 20426.711701227046 1.7212598315436176 3.4997299581191184e-05 349158003.69813794 7099.2113059629855 120231 29037 176350 LUNA_20210106 346914851.80892986 10194.859734928685 0.7166763258635868 2.1002582525150153e-05 45587563.7727925 1335.9679058812162 17546 None 167354 BTCST_20210821 179518945.34237748 3653.3535260658205 24.65724777339135 0.0005016913989324383 8048981.978523277 163.76949552111054 63496 None 1726916 MITH_20200418 2445626.1873273924 345.460360497312 0.003886923467861528 5.521253957718928e-07 1861233.3026143303 264.38240483163895 96 2095 1180459 BRD_20201111 5455337.550732302 356.6610167099838 0.07684612928630871 5.030959150152687e-06 493045.0114478028 32.27865000901738 244 None None OCEAN_20210909 331798845.1922869 7161.869872372933 0.7575289354278448 1.639979589478869e-05 47433901.73187695 1026.8997928863166 121893 3482 163471 TRX_20190601 2170312507.896105 253019.83082455336 0.03285583503741769 3.8302818490178335e-06 1066279713.2069347 124305.22087846039 424429 70727 107576 FUN_20201229 23736565.716933187 875.4185670321373 0.003955604454875159 1.4567765110880521e-07 503477.6038245217 18.54215595814945 None 16517 396619 DNT_20190105 6691878.21903262 1756.3196870635468 0.011516398198128247 3.022612982610386e-06 257532.58320394997 67.59242916452514 60211 6569 513124 SC_20200625 139847650.50682285 15031.186788601468 0.003142457570328688 3.3808347937600665e-07 10787884.719291354 1160.6220670861098 106605 30125 209759 WAN_20210511 375895949.0608305 6733.549951834247 2.1396179535676123 3.829266316734733e-05 139462457.80985853 2495.9544354629775 120245 16460 177297 AAVE_20211221 2438106058.712241 51678.133713509436 180.9599346497697 0.0038396213321223345 156523307.6682285 3321.1231660778144 None 14550 14216 UMA_20210707 608457109.112781 17816.841195472603 9.857458418616645 0.0002885893567059157 24174354.384036716 707.7342946021816 41289 None 148626 LUN_20190902 2669986.7669698903 274.1846217139794 0.987809508828 0.00010142837109360993 47065.638259649895 4.83270405932952 30932 2196 1370867 GXS_20190601 70404829.16335241 8207.164438919213 1.1737760139999482 0.00013686483247484868 15851541.946995387 1848.3242178806831 None None 820367 CVC_20190908 15689073.766716275 1498.499532633803 0.04576360536723611 4.3714271175767805e-06 5702856.169358682 544.7477292561097 88163 8152 131188 AMB_20201130 2046675.2748468255 112.83057956599609 0.01416996901293381 7.802667550631846e-07 310969.950407552 17.12350350979511 20164 5489 530514 VIA_20210704 10052440.000338467 291.5362299602713 0.4347426167940967 1.2547413749049535e-05 247221.4494150624 7.1352328794572175 38232 2300 920370 TORN_20210727 32341910.71705057 863.3859910793996 33.109575413484784 0.0008873790628186876 4178438.1735063824 111.98749920972395 None None 132811 CMT_20190810 24661016.725632496 2079.639561289492 0.030816995538254566 2.5982084480028326e-06 7086065.404867387 597.4325100956885 290553 1647 586149 TKO_20210724 117952115.40499538 3528.157247132913 1.5909696274804361 4.7564134720449525e-05 38593470.282627 1153.8026799164074 300077 None 20921 QSP_20210210 31968441.581799306 686.3622318106882 0.04506156037235958 9.675150884914535e-07 1143243.1313480139 24.546530795944133 59238 8187 199881 UTK_20210107 100977312.92819013 2754.942377338788 0.22420474872791074 6.0744660293669435e-06 15036351.581754284 407.3856927973884 55338 3119 130913 FIRO_20210722 53224145.49211477 1653.9462593018113 4.425435406931726 0.00013702580924909667 4847336.157677187 150.08922255824726 73702 1092 308142 BLZ_20200806 30873976.3191017 2635.537095433133 0.12969203045062724 1.1067006289336427e-05 9570652.061933933 816.692176030013 38627 None 329080 VIDT_20211028 41994258.133494444 717.4922973191462 0.9073158433128321 1.550489737940856e-05 11162094.717138385 190.74629237880237 34302 1810 421047 ETC_20210826 8245415897.926198 168215.57666369568 63.793015789043025 0.0013017878130082445 2828129859.26443 57712.03851797686 501597 59429 245929 EGLD_20210509 3276640337.811864 55873.820538389016 185.97586710545585 0.0031659509675877836 80636653.24610381 1372.714074900816 225155 8442 22997 REP_20211230 119209350.9284568 2564.4137290225367 17.262415846997072 0.0003709479538356689 29321327.514143977 630.0790423264708 159552 12084 187698 ARDR_20191011 56457085.89751759 6594.856132192062 0.05651362806496473 6.601460926856687e-06 4696911.179318034 548.6548411215282 66534 6511 1164361 PERL_20210428 0.0 0.0 0.1522926907362367 2.764827530570685e-06 18280633.51341908 331.87934739239563 18518 639 340450 APPC_20210624 5550486.993237388 164.64120040522954 0.049222293307637194 1.4596625202036532e-06 94353.81115142448 2.7980151374771243 24862 3129 602662 BAT_20200907 380234319.77539486 36928.37635852412 0.2599283029620196 2.5266981713912296e-05 116180689.7072222 11293.634932749277 122133 45361 16252 EPS_20210718 120666968.56511511 3817.8931515882746 0.46566651119404034 1.4746081267456278e-05 18248706.875720903 577.8747411433192 18397 None 22794 CND_20190220 18811968.223842338 4806.670401649631 0.01142481086604541 2.918479556248546e-06 213530.63311799345 54.54661741839252 36801 6235 644110 LSK_20200229 182036221.3934519 20827.59240082848 1.311801276193603 0.00015055524261725834 7435743.184219873 853.3991691090772 178654 31305 152609 RVN_20190131 33022546.07025441 9548.577729612745 0.011814864425851305 3.4163068800045598e-06 2487306.140539327 719.2127454301975 19067 5693 254356 ADX_20200511 6778022.975720746 774.0928289386217 0.07363018800119285 8.398648731189043e-06 296406.031070348 33.80963982769443 None 3753 29399 NAV_20210508 51040261.849533916 890.7207967546633 0.710280979907814 1.2393796994614974e-05 10027295.969047505 174.96775805741748 51302 14029 483203 ALGO_20190812 161948916.84233057 14032.023517580768 0.822137809615456 7.119124746233e-05 86032192.27860896 7449.771824869569 11227 548 241883 CELR_20190716 34113871.19127717 3119.865046847333 0.011315744931265562 1.0359829722514137e-06 9946821.137711162 910.6547902318887 17490 None 509628 MANA_20190213 46478135.80078617 12790.734519244656 0.03675896587167881 1.0116288062249412e-05 2097551.853717742 577.258861192898 42320 6002 103515 TFUEL_20190821 0.0 0.0 0.005806130809119445 5.396333084401227e-07 679130.5968484004 63.119744092675354 70213 4025 248011 CHR_20200612 12164082.4001937 1311.0016823100232 0.03747458714884003 4.0296916779000216e-06 49911277.0868191 5367.0253153500735 14553 None 533180 RCN_20200331 24919017.239805542 3878.4742497746943 0.04900196928967451 7.64335099002023e-06 1609047.0109962279 250.97993494474926 None 1133 864649 NAV_20191108 6414157.352728584 695.7766704734134 0.09625211880562853 1.0440962867882035e-05 34389.06206772706 3.7303586099284125 50684 14140 454414 WAVES_20200317 74507607.19076797 14762.03375954181 0.7429193436320332 0.00014752878167054287 45104429.775394455 8956.829068653673 141122 56865 60056 REEF_20211230 294044899.8409747 6339.990596928177 0.018145804541697643 3.8993088366688045e-07 20779654.274206527 446.5290549567208 224598 14503 99045 LOOM_20210220 132057346.77851039 2364.000063421904 0.1589487946838465 2.8446838714791438e-06 160057226.24111906 2864.521312712236 25661 None 256262 ONG_20200621 0.0 0.0 0.13390954461976992 1.4312178541170117e-05 6160313.946125768 658.410969262571 85755 16477 143020 CHZ_20210814 2039172385.302599 42783.29382460421 0.381698269813074 8.000286684727994e-06 711891123.102874 14921.034554139085 None None 53111 CELO_20210828 551511995.3182726 11245.085789607125 4.166594587264667 8.495382507435282e-05 232853973.09584287 4747.722698703666 37141 None 103784 BEAM_20191017 25304011.198995277 3160.281182075739 0.621425290133717 7.761840511341805e-05 38295222.064191364 4783.2202957930995 11721 1379 211289 ZRX_20190608 199332797.7985075 24774.299400137275 0.33360889368455754 4.149739172418348e-05 45398577.18634526 5647.099273689278 150370 15934 209456 VET_20210704 5688321270.494524 164173.30163698693 0.08724001717405472 2.5161137934886197e-06 604937895.1340747 17447.183430902503 387828 191332 29344 DCR_20200410 143870822.57061484 19738.8826684296 12.678328708411 0.001738470530603486 98845100.27193029 13553.781249045593 40630 9766 206207 WTC_20200704 9744172.658779409 1074.5930442778858 0.3335196766091974 3.6795546210233384e-05 6351096.599440546 700.6845016949331 54352 19567 728935 LUN_20190915 2717779.7938257535 262.49357778673476 1.005009824621163 9.708467936145418e-05 101663.66334430524 9.820783754241582 30820 2192 1370867 GAS_20190329 40857141.63951092 10148.090320767078 2.9326655577699774 0.0007283967421893059 2482791.1213149484 616.6598027214216 318717 97745 162875 LRC_20190920 36455444.19455857 3560.427640033361 0.03795545007962871 3.7058556235480905e-06 4488346.60964579 438.22862036659507 34321 2438 641757 RVN_20210420 1581775550.3216438 28258.263966987557 0.18403729500749358 3.2885644922434225e-06 322892917.62342787 5769.777172882535 58053 32472 40524 HNT_20210128 137526244.98423213 4550.0156963155905 2.073467513119944 6.820409959743953e-05 4299400.038772066 141.42334355285487 20582 2553 73258 ONG_20190531 0.0 0.0 0.4542538356244122 5.474640947052619e-05 12130949.808442032 1462.015052809557 80837 16207 249256 BAND_20201124 163583000.61443052 8932.14867508575 7.277983726926078 0.0003964211979063429 132685416.13495241 7227.181810577533 39450 2738 283942 SNM_20210310 12713420.01404648 231.9277441383937 0.028968439975321673 5.299976435862272e-07 948892.3799597165 17.360642334347595 29213 9493 None ARK_20200718 50218757.044617556 5486.536940270557 0.3341708903756685 3.650744134331792e-05 2541870.824384329 277.69384675960623 62276 21853 108800 NXS_20200308 11746097.345844042 1319.7221800258872 0.19672606305043264 2.2102979496307857e-05 127601.41532503418 14.336542006160434 23521 3536 662796 ONG_20190915 0.0 0.0 0.17563526890163728 1.6973606234149976e-05 4336835.210631 419.1170351375893 81433 16289 256067 CRV_20210902 918357711.389203 18882.55554031798 2.293012334158587 4.712776005729047e-05 173033937.9868803 3556.3271028832532 155965 None 12438 UNFI_20210508 60674793.19987489 1058.8292880739916 24.808360711286856 0.00043288147693585727 19879359.893078405 346.8752639967902 None None 94770 ASR_20210202 0.0 0.0 3.8830937107604133 0.00011626563628326398 1842233.4422858553 55.15922594299916 None None 183417 AST_20210805 25926480.45465976 651.8921363305662 0.14703919230494045 3.6977113811464425e-06 3301988.777001953 83.03773497215886 44330 3701 216089 MATIC_20200411 33080445.119867764 4824.576467429885 0.012015275957810536 1.750844246596417e-06 23295806.32939612 3394.622697378313 33779 1617 187719 CELR_20200331 5907086.888190915 919.5705769648317 0.0015653222529012564 2.441597259221699e-07 6088026.280949001 949.6132987366683 19244 None 1334905 SYS_20211125 407953058.27627355 7135.47440886295 0.6488362225034378 1.1343499454629013e-05 33218415.302849013 580.75221882285 88921 6182 187489 NAS_20190916 29388037.02165181 2852.1217398643416 0.6493482748457982 6.301177065807769e-05 9942505.00605832 964.8055896618976 24130 5091 980448 VIB_20200329 1857714.0211170544 297.87843083098454 0.010201080616144 1.6316332373972173e-06 628476.7714366402 100.52303552873333 31384 1108 None PPT_20210724 59124922.0983915 1771.182950853288 1.6307503248181445 4.875343111854651e-05 1914644.5799793785 57.24082419357028 None None 885459 ATOM_20210616 3121312543.040755 77288.62630548894 13.046832286919102 0.0003232563738204433 461135850.7453334 11425.386612809913 158681 30696 46073 MDA_20190726 12887914.848584715 1301.0445444028144 0.6574100664627316 6.641543895588264e-05 553059.1898480001 55.87329847256311 None 364 3017941 AUDIO_20210804 232619637.34242645 6054.548665224145 1.0777270037097408 2.805445661334831e-05 16460901.9299398 428.49595251902264 54669 5964 34312 GAS_20210210 36688362.90373988 788.6038242297611 2.6113881780532195 5.604493664027866e-05 9633731.902980959 206.75665864218962 337653 103156 149199 TOMO_20200629 35781023.719302244 3924.4821954005233 0.4961902916669662 5.440562817384014e-05 5473479.3315411 600.1489475511423 27326 1573 168109 XVG_20211202 381603863.1745338 6675.074797662316 0.02314496456180769 4.048553606194731e-07 10579131.386810442 185.05183022468242 335896 55619 173593 MKR_20201115 485061028.0379463 30142.135464595165 530.8873262634486 0.03300294169915687 31853115.378957037 1980.1687811747906 71215 17586 27961 CTK_20210128 30833870.803967834 1017.6556283821784 0.8864083366872567 2.9157284643659204e-05 15290899.094055288 502.9748467947258 12193 None 186270 LTO_20200312 14462300.092362756 1822.880408062 0.06720739626748512 8.466344056956573e-06 7439031.141135942 937.1200282868496 14519 414 867701 OXT_20210421 0.0 0.0 0.6727486957290002 1.1936497224426392e-05 44566102.11089773 790.730859126811 63137 3624 93493 POWR_20191102 20858035.22928996 2258.0408724688245 0.04853946814604233 5.25476641480355e-06 505008.4687043939 54.671005717552106 83407 12946 276526 DLT_20210523 7015753.916247089 186.5044804905084 0.08554775643550694 2.2741732480359766e-06 300123.9936743107 7.978396932272413 15126 2602 6348048 FORTH_20210509 304905315.8580542 5198.594162201424 36.484859697325895 0.0006210982030026241 32915272.191775043 560.3315068017681 None None 71804 SOL_20201208 84695936.97844146 4410.651695558495 1.8306335885715757 9.540265694953143e-05 10468359.685002154 545.5539186472854 101645 2681 83284 FIO_20211202 68853811.56234434 1204.4117985030175 0.1865683294230488 3.2625858050822265e-06 4419677.939472011 77.28845808368504 None 546 428275 HNT_20210207 253232376.2941316 6457.94715552024 3.6857822281116 9.372978442210728e-05 16052262.550196366 408.2105276978982 None 3284 66241 ZRX_20200725 271604936.7094863 28467.16963191875 0.38689159370448317 4.056003414512994e-05 45340952.7839025 4753.348542621747 155439 16123 62408 HIVE_20210202 51154669.7192367 1532.2584674738619 0.13777546774283975 4.125233505984102e-06 4749163.7658563955 142.19809820485702 11114 107 140605 KMD_20210207 100341452.03487043 2558.9136911810383 0.8074449824651332 2.052554817255081e-05 6363343.558916036 161.75853165656648 97219 8507 251504 ZRX_20200109 127625320.7599629 15859.27744111734 0.21087901846324372 2.6239850389191865e-05 52300614.35426858 6507.808628472116 152044 15965 131322 SYS_20200612 16388415.530982692 1762.267891487968 0.027886254050644776 2.9986456002669367e-06 636354.3154234493 68.42801706854864 57433 4466 931321 SNGLS_20190812 4555149.266316088 394.2414843687419 0.007893026840520226 6.831298901178722e-07 71514.90005694485 6.189509652607671 9 2175 None STORJ_20210220 121406237.61226809 2173.515981488849 0.8509196185807092 1.5209263193421873e-05 77440820.25677778 1384.1704803614116 84940 8885 75920 NMR_20220105 188383378.6701049 4072.0481808006853 31.379401096152872 0.0006821235692010243 3430297.247912175 74.56759913920648 32805 3761 2494554 AMB_20210916 5627164.117600562 116.70343066004126 0.03905301732381031 8.102420107099138e-07 491241.00583737454 10.191891115930824 1412 88 741019 OMG_20200411 77998693.59993556 11375.622675842256 0.5567986802112583 8.118379552402655e-05 108546042.66969104 15826.509735430725 None 42895 477396 XMR_20200502 1109532874.11475 125207.79703252926 63.179594794649226 0.00714907568297222 118216297.1301178 13376.743834633138 319781 170034 81111 KMD_20190704 153903716.95472342 12821.38072475689 1.3404803544486565 0.0001117045453647122 5265006.53868451 438.742097035721 97522 8426 312186 QLC_20200607 3344172.782687215 345.8469199444927 0.013934053261196731 1.441028833102053e-06 389771.6343029529 40.309316523139586 24361 5648 940522 GRS_20191015 15920309.636338739 1907.6038404651715 0.2162124505133379 2.590300583651242e-05 2627690.6929001072 314.80651180419414 38237 106957 None XRP_20200404 7866188147.539315 1169021.971150045 0.17903878936652484 2.6607586105481783e-05 2001601449.389316 297465.0526956761 945928 211726 34231 IOST_20191012 57940153.47274083 7008.018705324996 0.004822733421954881 5.833226873959995e-07 18830664.06789458 2277.6198907305716 194177 50856 96958 XRP_20200418 8333268489.325 1183714.8842226497 0.18890422687848843 2.6834345784881933e-05 1866168812.0107803 265094.22272838623 948622 212328 34710 OG_20210707 5026215.850009028 147.15357961401878 3.91746201687376 0.0001146489903258692 2232557.330452898 65.33833453356773 683106 None 236216 NEO_20190510 560008650.3985162 90605.63072251834 8.597592412326057 0.0013925184937496212 304317896.1981184 49289.18214677357 320849 97560 218328 BQX_20210110 117118180.55708589 2894.68992590575 0.5165007321313766 1.2813230485557515e-05 28208014.886848405 699.7778973008151 None 132 152603 STRAX_20210813 207707946.88947114 4672.328065450604 2.0771218739752655 4.671641379510206e-05 37238056.248524174 837.5187158864117 157364 10767 188062 ATA_20210909 179544244.4298271 3873.905654605216 1.0415861383785645 2.248807642964951e-05 81785204.16348779 1765.7607511041474 None None 84390 OMG_20200523 270821375.1731928 29585.089748320086 1.9310535606536818 0.00021095230339265815 620389461.4969043 67772.633846055 278781 42903 572237 POWR_20210620 74789016.77292293 2097.9027194126566 0.17485362174510444 4.911119888645899e-06 5254243.106543942 147.57611288112213 90774 13971 149049 ETC_20190530 905947506.0297046 104910.05518248308 8.177356690665366 0.000945632938217625 840303479.7948614 97173.04486668464 227852 24550 712989 PPT_20200721 12625314.942086658 1378.0406316118679 0.3491073439450377 3.810243535013668e-05 2612788.742592878 285.16619851996995 None None 1142876 ADA_20190810 1480799454.9126983 124874.76324250427 0.04760844579940038 4.013624872829569e-06 98885536.97676484 8336.534497373787 154311 74969 93580 POE_20190812 6090922.055508948 527.2543528823388 0.0024197459441263345 2.0946279894619148e-07 183607.7887793966 15.893817877619966 None 10771 756599 WINGS_20190130 7699980.609674258 2255.808792602485 0.0861405765815224 2.5233851198771485e-05 881621.988300029 258.2606124684337 37484 1225 1610693 DNT_20200407 3159103.475212032 434.35089365024714 0.00422335262031856 5.802874655278615e-07 75227.836758337 10.336283671796828 58645 6073 660159 BTG_20200711 161514630.3655917 17396.716139127446 9.24001528621541 0.000995246955845312 31484971.92525332 3391.2630545352717 75444 None 243493 CTSI_20200711 9791614.86158028 1054.527062445751 0.04940917699757716 5.321888706290446e-06 9742142.93018662 1049.3313911658524 14837 118 226928 RCN_20200605 39636115.52847758 4060.943642309398 0.07774518128742613 7.953359501982077e-06 383066.8686401312 39.18787594474682 None 1133 1112799 YOYO_20210430 5908407.568599895 110.24325695670514 0.0337828275500665 6.303439454852277e-07 1092681.3114622233 20.388022524293262 9830 None 783243 FUN_20200502 12555163.444343632 1416.816385457569 0.002082586360649775 2.3581244679883497e-07 312342.4011244825 35.366709030595494 34475 16894 209311 INJ_20210611 247639473.7870995 6719.368327395022 8.497059459389856 0.00023144272737446624 28149783.47221949 766.7432119251022 None 3637 114245 WABI_20210723 8319012.749970704 257.58313065399426 0.14118692013948678 4.361448929176058e-06 265435.82260827016 8.199660302357058 45425 7892 684219 LEND_20191118 23124593.551334355 2720.730629236612 0.020208876212128607 2.3748349142546896e-06 4140375.9092222084 486.5539856916281 41610 5796 519935 TOMO_20201018 52108262.12685784 4587.275259468585 0.6882655748756054 6.05671885686237e-05 4234713.140710217 372.65363645970604 None 1684 69320 DOT_20211002 33124711534.88856 687806.0644459047 31.978847883259032 0.0006639889120575663 1539100178.7016811 31956.919052694353 662507 30930 24089 MTL_20190103 10820080.174650537 2793.3417385015337 0.27617361882943053 7.133067036977724e-05 3010921.0733507555 777.6666703463983 32358 None 566646 LTO_20210107 52359492.696371526 1430.6919737590815 0.19131862389826826 5.1834695217166325e-06 11143731.837769628 301.92143954567194 None 856 1001701 FXS_20210422 62562023.97613393 1154.6342444666925 6.0002538899988425 0.00011093495479612726 13705834.043958316 253.39862412222544 8627 None 111454 OMG_20210310 761514842.7002317 13933.343515593227 5.425284239575513 9.908583186073628e-05 477742361.88478637 8725.3491710456 305837 3873 147521 IRIS_20201201 63393204.652615935 3226.321678688763 0.06003097367530123 3.057921541269959e-06 3228860.369000461 164.4751212852926 10862 None 714436 FLM_20210420 0.0 0.0 0.9487714130991497 1.6954054073138332e-05 183702805.31304148 3282.674047367227 None None 105842 HOT_20201106 79353823.77863532 5106.855083334796 0.0004353018719171964 2.8015460858309438e-08 7867091.429529965 506.3157459949153 26297 7308 245882 MKR_20210511 4493946457.643963 80488.39211050926 4979.651030494321 0.08906263859127105 366265199.65787154 6550.7693020911465 144414 26254 30227 BAT_20191216 259248249.76677513 36430.51684850928 0.18325393429897308 2.5773387394464183e-05 46724790.29099902 6571.515780557869 109138 32563 23712 NEO_20210314 2985736402.442538 48661.27355886428 42.14385538922989 0.0006869896958775321 799700267.7727808 13035.96547293588 353900 106077 102810 EVX_20210814 11814777.027741117 247.88246481428453 0.5428394816509801 1.1377342339284961e-05 592028.6007661261 12.408294336068247 18313 2799 2085195 LOOM_20190626 51221880.75233277 4338.466860471812 0.07409821757276906 6.268340805360101e-06 6751216.384049026 571.1193404131533 20491 None 421831 RVN_20210909 1161408319.9962435 25068.969880482622 0.12074486754510622 2.6080536663166204e-06 131896092.53065437 2848.9168499762977 70628 52242 58172 TKO_20210508 264872917.28271067 4622.12164660976 3.5308994925773667 6.161072087941579e-05 80232940.5476553 1399.9858437794487 238280 None 35525 ZIL_20210127 789226042.1395706 24218.90696212284 0.06780416388918381 2.0816868907575757e-06 90343707.49888861 2773.683809009759 126960 14951 35147 RIF_20210325 220853689.54679197 4178.1361113530675 0.3096016909813514 5.870955891029534e-06 3797308.1864056303 72.00809787688033 None 3157 671314 ALGO_20210519 4142842889.270494 96792.60610349316 1.3714873172539501 3.205691545720942e-05 494847074.3938001 11566.472856527453 98913 28715 137086 MATIC_20210108 159204548.92943016 4064.2841531754466 0.033013958608264615 8.365924459836021e-07 129307158.3497787 3276.7167721579904 71554 2639 49015 ADA_20210418 44131641785.7529 732076.6148645146 1.3738415612752395 2.285538828444758e-05 3533425467.4880667 58782.47776885839 335359 336920 7301 DLT_20210427 15169890.14502815 281.58703636741456 0.18497656599313356 3.4335781286128295e-06 812797.3973650446 15.08733472049451 15100 2573 4793076 VIBE_20190213 7385665.275935964 2031.8222515323648 0.0368030083819787 1.0128241218507415e-05 520567.33232269256 143.2608839341756 20528 None 1520887 LINK_20210314 12325154783.421165 200678.31470367298 29.831126933535682 0.0004862275209079453 1910513827.1963997 31140.104224951396 183351 43412 31090 FTT_20210418 4584083202.636893 76043.15990880232 51.88658983556045 0.0008608960325991137 98327763.2586387 1631.4423736842334 95979 None 2918 BNB_20190105 862767566.4442351 226438.02124136206 5.967081320596118 0.0015661453769306455 24550945.24033442 6443.744826253844 900056 46702 1042 RDN_20210107 13248366.475533104 360.84482049715825 0.19960949774701453 5.408097375648017e-06 2185072.4475679216 59.20101349220298 26601 4386 1792183 SYS_20210201 61903562.21285547 1872.8037718732628 0.10437626723461159 3.1568310740115466e-06 10543147.771935413 318.87456206428277 61451 4500 273624 TRX_20190702 2165158505.672335 204041.87729580354 0.03276753677768089 3.086919039784572e-06 1294948382.269056 121992.71626323002 438281 71167 89082 POLY_20210217 146430258.03033796 2977.458055034378 0.18322959678977685 3.723453536184384e-06 9495544.536960546 192.96128738801397 36996 5097 248256 XRP_20210814 50454533105.66228 1058916.6629959343 1.0882573655865535 2.28120905615044e-05 6770637886.2024555 141926.35814227245 1962208 325246 16462 MATIC_20200913 79601629.40915214 7633.832527414662 0.020937128779961844 2.0052023056463637e-06 9215642.776730252 882.6056494240296 52172 2286 59373 DOCK_20190821 2949250.4488243186 274.38536681511874 0.0053508026027534695 4.978152789625158e-07 929679.697075644 86.49333419762898 180 15191 201601 XTZ_20200309 1819390643.7557445 225214.01770132437 2.582978888441668 0.0003210834339792378 243048438.65130702 30212.723632648514 56915 22300 104382 KNC_20201129 203683617.16281134 11506.87695984114 1.0115954997563854 5.71133391975262e-05 38903193.28186261 2196.422655408236 125897 9266 106415 ACM_20211125 13581873.164755732 237.59310520038846 6.79454906402261 0.00011879919683650978 2645945.5017415606 46.26299663424246 None None 33092 FIO_20210219 34224976.798901185 662.1907096750828 0.1559650058560687 3.0172871654257135e-06 4229818.0326278275 81.82973861272474 55404 190 607665 BNT_20210110 156485911.09528595 3867.7017371604074 1.6286297850431484 4.041537413136299e-05 91055679.02056217 2259.5984478472633 None 5311 101085 KNC_20200316 84105151.34605268 15563.499720307685 0.46565821919675343 8.665658018270977e-05 68382028.77893879 12725.540999061977 104045 7198 120611 YOYO_20200523 1429880.7709829942 156.20314649047094 0.008175892463912844 8.931313385877056e-07 604080.6973457974 65.98954233031093 7441 None 2546990 WAN_20210729 100218308.77141814 2506.3994928432817 0.5691939466287026 1.4220782999204166e-05 2933635.4350931314 73.29416127548745 123232 16647 248498 TROY_20200610 6582638.084925435 673.4010871170977 0.003578416281682396 3.664429562060789e-07 1946287.13706957 199.306943628796 8864 None 552530 POND_20210508 129599053.8841274 2261.676730315887 0.17078104397094926 2.97996112710332e-06 19066029.705735352 332.683452742877 16474 452 80924 LUNA_20200903 193197227.67826012 16934.655355948587 0.44335515634306033 3.886516771657311e-05 12647026.68018859 1108.6570349058218 11443 None 170396 MKR_20211221 2128932915.569341 45124.89499164523 2355.9178307418792 0.049971004783786695 64643156.70098209 1371.1358904765502 193207 32295 30283 COTI_20210813 125612171.01774271 2825.6042370153586 0.18933799886494498 4.2583886929961936e-06 34532832.99292488 776.6757145198895 126034 5554 114114 ARK_20201226 56965691.41712602 2307.9508420122233 0.36923962193841053 1.4968032381562178e-05 1823116.3387418976 73.90448579268543 62970 21625 103800 XVS_20211216 186053997.12831756 3813.6666577897367 16.02720942547133 0.00032796038629338733 9868154.717988705 201.9293407479333 None None 24385 DOGE_20211202 27724567903.283695 484829.24177439185 0.20948652037683213 3.663364247571405e-06 918544485.4126583 16062.90954478401 2595550 2230835 33845 LSK_20210219 535563223.2326731 10362.1689198546 3.7587544470819814 7.270255112573543e-05 62794484.55911679 1214.5829924105758 182041 31389 216887 OAX_20210511 19759538.61527143 353.6357298157582 0.3477263202996013 6.22324505898431e-06 853872.6115107229 15.281726462373369 None None 1257239 GTO_20190302 18743217.856738035 4902.429782111074 0.031608720888557776 8.27397330180732e-06 2740024.4691302674 717.2352650337513 16280 None 778582 CMT_20201018 6930731.111768546 610.1368585589057 0.008664295392363644 7.623878067592147e-07 521889.63586253696 45.92206022965029 282250 1635 897903 DUSK_20200224 11614086.340570882 1167.3554394094833 0.04491395594127871 4.513655545669284e-06 1682248.4016046587 169.0585847531109 17750 13339 874362 ELF_20210203 69677458.46198341 1956.2680018956007 0.14977113344556556 4.217156375063703e-06 16818111.689215492 473.55324951510823 82148 33306 465986 WABI_20200506 4977602.653068181 555.0504447805737 0.0843513887987263 9.374304806660008e-06 747857.1194396578 83.11233151343147 None 7702 1649170 LRC_20190201 42863691.86824882 12495.198143058531 0.0543436800154722 1.5837732306180527e-05 2261091.7034487324 658.9646690976967 28599 2465 537095 CHZ_20210806 1421024394.8502536 34683.29658575463 0.2659237803760183 6.490555736364778e-06 156411632.90281013 3817.6293212138357 366760 None 53111 MASK_20210618 71270099.47985113 1874.9603683349749 4.893094595940723 0.0001282437685063501 41404259.74689111 1085.169762824961 36267 20 244423 MKR_20210821 3418395005.695374 69567.06114624722 3796.4641584287483 0.07721932120551517 90885007.74287295 1848.582868899579 172638 29513 37059 TRB_20210401 102548993.60750784 1743.5234740515198 78.41884603252181 0.0013341187547564557 83296104.04345101 1417.0942346744882 16836 None 320116 MANA_20210112 125748377.60420033 3546.8343731658597 0.09441948897205955 2.656207672810491e-06 54319832.14784811 1528.12471776445 56260 7866 76796 MANA_20211202 5996029962.581709 104900.13655930314 4.534594494131094 7.931984014414648e-05 1610453742.36262 28170.31017196232 347595 66701 5248 OG_20210626 4716588.322123743 148.21061156970896 3.71679067152223 0.00011692005882671161 1122693.3496548077 35.31685910959243 677886 None 238671 HIVE_20210427 197654256.46113294 3667.8966431370154 0.5329989778019997 9.887542315346166e-06 24872353.86264779 461.40135636536127 19197 163 113776 ILV_20211225 757343079.7393758 14894.823412141915 1192.9785955398272 0.023465297520202866 65151319.905379675 1281.494161864542 210291 None 9424 TWT_20210430 220928869.2648199 4121.388847497317 0.6362318778891927 1.186664446687735e-05 17914896.05717277 334.1387150811031 569302 23768 5638 XZC_20200403 30960345.52909316 4565.278532114851 3.1510145987307627 0.00046222173976121937 30259880.642924238 4438.816209030957 63579 4094 105092 GVT_20190922 5316131.942993389 532.334605043376 1.1981406148530782 0.00011996449675095429 405804.9376211933 40.63144552256789 21226 5702 141613 1INCH_20210429 875954482.3366864 16002.705946981807 5.551676698418326 0.0001013900549709286 480299344.6575442 8771.688194884138 174959 None 71599 IOTX_20210429 369408327.10427177 6748.836676846102 0.04899548115420031 8.948025609932853e-07 109099409.2716245 1992.4782555326565 47739 2733 219398 VET_20190915 203596741.29619357 19668.252872506386 0.00366905108630819 3.545623283553205e-07 31447970.932038605 3039.0053268332867 113648 57434 147845 DASH_20210703 1384071767.5127149 40951.1850904538 135.8278535925402 0.004011296042811166 465050351.6943633 13733.962409916145 400045 41307 56983 PNT_20201231 10189744.283178322 352.8666477530198 0.36633651261007716 1.2705125140671898e-05 1836238.8428423856 63.68364463660977 None 109 1081703 IOTX_20190908 16740070.615683658 1599.0435642542413 0.004063123935845548 3.881173699646217e-07 716501.9299639106 68.44163481670856 22261 1765 585663 RDN_20191011 10108847.80887942 1180.5988910231554 0.19980354975115933 2.3334790840505987e-05 4047037.409110011 472.64811652695585 25465 4377 2320314 BTG_20190629 494037087.13341093 39916.919839489754 28.21864864126799 0.002279315792638613 17555037.50897153 1417.9798169372593 74441 None 408265 BTS_20200217 88992469.98613624 8927.25282514417 0.03296771852928231 3.3138593438795833e-06 40193789.12351366 4040.2117463656023 13375 7048 139878 DASH_20200430 806243437.6565266 91959.77722770524 85.27766118653294 0.009726733091940117 689428475.0740825 78635.91320077016 317454 34843 68820 POE_20191019 6395766.098218841 803.8873369662656 0.0025412729491126936 3.1936103003600335e-07 39382.958278120495 4.9492448758631 None 10682 871423 SFP_20210509 269795241.4566307 4600.806597139553 2.5000504299347033 4.255948473777989e-05 29486551.3528349 501.96284732685024 313986 None 22445 XMR_20200417 994239311.5084403 140023.52719527966 56.65770804389517 0.007992493393806963 157405560.47625428 22204.620442469524 319634 169069 82357 NXS_20190803 16913483.564681448 1607.396746242328 0.2832705141274211 2.692101251486827e-05 115879.09837966769 11.012733419502428 21643 3537 855550 QLC_20200721 7170224.558920169 782.71531275926 0.029875935662167372 3.261313803163583e-06 14070052.49413411 1535.9136172080935 25663 5639 940522 WAVES_20191113 77523616.2959304 8814.78360939513 0.775834312696432 8.815305206035453e-05 22618536.356706824 2569.9984911107786 141700 56874 22143 ZEC_20200318 240025667.63643625 44185.18895371747 25.25624431775961 0.0046862836838134116 198723648.41849858 36873.07500888529 200 15623 148838 NKN_20200313 5726476.610961164 1189.9148882510488 0.008829956165115749 1.8486444613437914e-06 1421150.8870702896 297.53292847540064 12229 997 370779 BOND_20210813 101171518.34781617 2275.6157028431553 25.662603511929508 0.0005772034532888014 11085373.048882656 249.33228625206584 22332 None 140491 MANA_20200801 60914566.922763556 5374.669302757883 0.04583327011347404 4.043449420940655e-06 16205038.576167433 1429.6220558755722 49814 7081 78107 QLC_20190515 7411154.89630145 927.205426671149 0.03087741906285228 3.862010193471119e-06 1789965.7483062793 223.88095170297694 24980 5807 940522 KMD_20200801 78259749.49606244 6905.085179236893 0.6482728294851767 5.7191171184244204e-05 3666621.0840982427 323.4723785276529 101533 8369 322159 GTO_20201030 5466575.654745535 405.83021259983315 0.008216924162670156 6.110759296956739e-07 1757098.975000737 130.67187532213717 16454 None 1390753 ADA_20190411 2791934582.174268 525708.7427532471 0.08963847209899002 1.6890094850807736e-05 204490716.0858344 38531.085034394 150418 72457 113717 COCOS_20200223 12534048.17115044 1298.4423408635057 0.0005176250734495272 5.362351598229283e-08 1522525.6522753127 157.72647585279105 15018 209 69097 XEM_20210828 1798005783.435542 36657.93980682411 0.2001865631409114 4.081685509306268e-06 91003543.17262635 1855.5083699687377 372100 21860 119011 AION_20190603 75919992.05251056 8684.710025425577 0.23726803295138132 2.7139683907399485e-05 6266181.715557048 716.7513842936946 68926 72567 268953 DCR_20190601 278286380.4196005 32442.190878306872 28.252563502042932 0.003294310264115092 16479343.968701126 1921.5272970911014 40466 9461 369344 TFUEL_20190530 0.0 0.0 0.01790630575177508 2.0707491460438125e-06 62915778.8221343 7275.805354529973 70185 3989 247302 FUN_20190130 22097854.832289044 6473.852046549472 0.0037642444520598357 1.1026903713511256e-06 1521218.1606216333 445.6226580938535 36492 17875 479624 SNT_20210729 282114561.19984555 7055.156856939522 0.07269450175666652 1.8169660008520652e-06 64185773.66209328 1604.2942129624598 None 6031 134549 DOGE_20210703 31898689668.956676 943801.5971699896 0.24555024758266356 7.249368106181272e-06 1889927472.2506342 55796.23753267536 1924223 2104390 8998 FTM_20200430 10348193.840668581 1184.610175161981 0.004827768131111228 5.506032406665248e-07 3002201.2499987227 342.39874254315214 21614 2340 315256 COMP_20200725 17030.736033762885 1.7863063162657737 1.8469829346868724e-07 1.936728002438425e-11 14.852844413565137 0.0015574545466219777 1844 None 1025389 CVC_20210318 286617268.5180117 4872.545437393831 0.4258751563202673 7.231193869309951e-06 31890293.68453859 541.4847350445337 95114 9309 130858 BRD_20190405 19053607.401299115 3887.8787904563833 0.3175447367637376 6.485132756854196e-05 448631.05594112596 91.6227422402716 161 None None REQ_20210204 36506056.06133651 974.3910843004157 0.04738045708066087 1.2631652359267322e-06 2271936.786507182 60.56994262536011 39632 27189 458949 ROSE_20210702 82370382.78459713 2449.913752323339 0.05491358852306475 1.6332758348822256e-06 2454215.107564246 72.99486951401758 None 1635 188060 CMT_20200701 9550585.428480856 1043.9831275712447 0.011931229754994737 1.30532019784768e-06 1993173.3629929647 218.06045998213617 283764 1635 1005584 LTC_20190520 5909809874.362911 722171.8458135988 95.36000074497994 0.011654032425811098 5224470112.300343 638487.2443453119 444511 202862 194516 MFT_20190704 22846214.325879127 1903.6463783188115 0.0025844104639710748 2.153633919032204e-07 1893576.3769187506 157.79499311205285 18818 2118 960456 YFII_20210823 163239742.7124514 3308.9080777733816 4103.131241730266 0.08327211430093143 34837274.6382871 707.0145566167802 None None 505373 TVK_20210428 105312180.75140692 1911.6151345247595 0.48013422348334595 8.71669095239164e-06 21272623.37669407 386.1980143302487 45166 None 68295 DNT_20190821 4495526.572703717 417.7769982162253 0.0067105991551249305 6.23696389686535e-07 533676.4114281102 49.60094372711516 60342 6294 572325 UNI_20210202 5871493276.726128 175991.73456101172 20.358868956868168 0.0006095238061748597 1894362308.1348546 56715.27857342089 None None 5312 XRP_20211021 53654051903.943184 809212.413406134 1.1435470026599415 1.7258312255161005e-05 4201205302.3442516 63404.226312730185 2117242 333834 21794 BCD_20190909 112267164.35076733 10808.279751784929 0.5977109455255734 5.751005351711767e-05 1839152.5214414787 176.95804422861443 21370 None 2392200 XMR_20190613 1528564276.2421172 188178.94280189523 90.51104017684574 0.011131067837533563 614414900.9533334 75560.88107639023 318042 158278 113684 BAL_20210125 245746529.36351013 7628.923247285125 22.990751822450378 0.0007125871788368312 84794046.9854265 2628.1502749509837 None None 81450 WIN_20210702 297756504.4281402 8861.61765950412 0.000388996157587642 1.1565987908663978e-08 29653897.120949566 881.6966668067782 None 13206 108347 PIVX_20210527 62552472.88320163 1596.5623500766803 0.9506559053659226 2.4266317383180675e-05 1543424.6514381398 39.397254292978445 67510 9775 215211 GRS_20210221 51230270.24349215 911.1936398754597 0.6655034726542758 1.1836801342554704e-05 4358399.139340116 77.51951252511454 37364 106772 3844840 TORN_20210708 35854228.723527454 1055.2252735859754 39.37614366630621 0.0011589209485211136 3039483.5487419413 89.4582564299337 21368 None 103371 NBS_20201106 0.0 0.0 0.004857125443149582 3.126852357497723e-07 1521413.9734409577 97.94346317106908 None None 802433 APPC_20190909 4027725.1224021935 387.49672394390393 0.03707731495097704 3.56929232636098e-06 146723.6693825783 14.124530536129395 25178 3308 1154369 XLM_20190414 2225713906.8655605 438741.6156899899 0.11533425334358997 2.2729460791385912e-05 251344406.37041074 49533.61784647935 268664 100225 69980 REQ_20200321 5944463.102080973 961.5656126207842 0.007713666412601903 1.2440410087157e-06 133275.37591947452 21.49432244372894 39629 28220 686735 NANO_20200704 123304231.40181938 13596.009973729751 0.9266842419991739 0.00010224954888268327 4176568.2525048507 460.838978738929 98089 52020 214640 AERGO_20210125 12819494.829370912 398.1295169381831 0.04900495920436949 1.5188848932880968e-06 1748945.184400915 54.20770597312638 11797 None 562212 DOT_20210120 15867491203.42768 437990.0845254073 16.500379490310053 0.0004563249790863765 2101304751.9949412 58112.47235685106 127018 8670 32256 MDA_20200531 9520968.195524232 983.2874503481561 0.48420390199596364 5.008667902424831e-05 1916337.8934377632 198.22847477057616 None 375 2663387 CHR_20200913 22000551.29521323 2109.862892820932 0.04924367683653137 4.715949272928715e-06 3971390.0799833834 380.330539134721 27813 None 270101 QTUM_20190520 302175495.82253397 36922.618129287854 3.1522242903381077 0.00038523619763041573 334413943.1884708 40869.032163540054 177448 15294 449132 DATA_20210916 0.0 0.0 0.12681792742041578 2.631120961927154e-06 473866.6324859354 9.831420961157102 None 4470 336974 DOGE_20201228 587180822.7622855 22116.304954599724 0.004552181715778152 1.7309788190261286e-07 165317270.52687648 6286.231780014063 158837 171601 134102 THETA_20210703 6232249081.556396 184384.814601564 6.251630326493835 0.00018464202464581384 245070317.83970398 7238.156657272188 180707 20913 18384 VITE_20200414 5084008.577684857 741.6550445538364 0.010301951752247572 1.5045019246147866e-06 3945394.1887178384 576.1872403445259 None None 524494 GRS_20200318 9103104.70601106 1675.747454267326 0.12064933270914152 2.243117986359113e-05 8754122.129184017 1627.570444181094 37680 106862 3912987 LOOM_20190826 19917479.145586304 1972.5705022418874 0.03307286170957503 3.2743462373798185e-06 2043067.6179907063 202.27190578260897 20806 None 468578 WNXM_20210210 97690921.78307389 2096.7121701207234 56.778507773473635 0.0012190352318108772 38323562.789304756 822.8073452558208 20846 None 132574 AST_20200422 2334113.7540805168 340.83268664763676 0.013546761948189419 1.97894144649027e-06 40679.534640966 5.942557891903 31668 3459 322316 GRT_20210710 2008271320.8307488 59091.17806232555 0.6929874486934617 2.03914789944342e-05 126462754.08218475 3721.2255406747863 121887 16051 34179 MIR_20211011 296609310.73531246 6213.759998811874 2.9825240056940046 5.449157162776163e-05 28929756.217237487 528.554968904084 None None 15469 COMP_20210603 66273.45143556784 1.7599911106148018 7.185422121880372e-07 1.90819684e-11 44508.943881452156 1.1820019008722942 2474 None 2936409 ICX_20200526 180286810.25853708 20286.099910084813 0.33093258175420587 3.722070067690484e-05 45568482.26978041 5125.185407473969 112715 27706 112473 QTUM_20210427 1430915356.06037 26560.98432840138 13.942865797375116 0.0002587324642292762 892504714.4806068 16561.870957496194 233071 16176 88405 WAVES_20191220 89090914.47249962 12476.10018118817 0.8914377335442145 0.000124752635400407 84900588.99223544 11881.449287229238 141272 56863 23349 REQ_20200418 6573094.02957612 933.7254172700274 0.008516567359735626 1.209800951560441e-06 313715.7175129519 44.56414862177728 39336 28231 655698 LOOM_20190915 14455891.375287794 1396.8167994503483 0.023990219213188276 2.318443994432835e-06 2035800.1586070417 196.7422060484224 20921 None 439430 CDT_20210318 23916323.1268664 406.581821582485 0.035569538689656774 6.03597190641367e-07 1959341.7841113731 33.24904510891987 None 305 485840 STMX_20210916 328792639.7323823 6822.356672490173 0.03557119802720854 7.380209035809472e-07 15215068.62062879 315.67783246584617 71760 5006 99684 ETH_20220115 394664610644.99524 9150720.143681588 3311.986061274383 0.07679193104485782 12316286854.849726 285566.2534166548 2100872 1208585 3768 ONE_20201014 39149635.75934803 3426.8544257433705 0.00542629078652401 4.7507350284397805e-07 4309478.9912037505 377.2962711228339 79318 1501 118016 XTZ_20210318 3338922501.2844753 56734.69818996826 4.397865349206183 7.461308749816218e-05 515328358.3675483 8742.932500219098 None 39174 107402 GRT_20210804 3059271937.084597 79635.98740971935 0.6485123944242086 1.6881513379516842e-05 137745570.19295245 3585.6734677308727 None 16381 32100 VIBE_20200314 1186902.3706332291 215.58435678266179 0.006393993955868976 1.1520537311977288e-06 110592.25550341907 19.9262341306 19430 None 1426283 DCR_20190515 279218040.65341663 34931.610712362846 28.55373224574798 0.0035722185316513343 12244863.841135465 1531.8953457429402 40505 9452 304516 SNGLS_20190712 6991665.752874173 614.4219411709818 0.011838827934536137 1.0403866400130312e-06 284013.9891953247 24.958920052688374 7 2181 None BTG_20200324 131264710.34408653 20374.415606758696 7.498140377827145 0.0011571471188291443 26191158.028599925 4041.9386040323457 None None 195914 RIF_20211202 195471544.0012339 3419.761373300148 0.24531358187655383 4.290001534038863e-06 2331747.3246171363 40.77719432849143 None 3554 382730 SUN_20210206 0.0 0.0 0.000377978348335761 1e-08 0.3791122833807683 1.003e-05 41 None None RCN_20190305 9929321.0770535 2674.013063535284 0.01983442066076192 5.34150316451145e-06 1978006.0578804826 532.6863737690613 18278 1117 2128118 BTS_20190615 169770241.90857953 19512.517646327888 0.06234861081191949 7.1755951236827845e-06 21482097.151872374 2472.3378686728693 13715 7182 176184 NCASH_20190702 9833410.488651536 927.9503310534201 0.003308265907432757 3.1166056477215424e-07 4615734.93197567 434.83280848316684 60262 59133 1075927 LOOM_20210707 59873294.41165312 1752.842895875 0.07182631574997214 2.1030501279145964e-06 5138204.378955324 150.44487892193644 33686 None 264943 NEO_20210828 3904415558.367581 79604.13699901497 55.38150915482439 0.0011293490967951647 621003029.1520196 12663.598749525961 411367 113001 110676 IDEX_20210704 22832439.722879913 658.6237789089822 0.039156769362453825 1.1284572746816386e-06 647341.4492516182 18.65570575675208 53062 1980 9238367 BAR_20210825 63815178.02678379 1326.76640480377 21.600418504142848 0.0004497916713082966 17898641.367271654 372.7085108646787 None None 38736 BCPT_20200317 1155911.7462933047 229.01833604914094 0.009914835648811024 1.971599209632295e-06 62211.77463349287 12.371025606655 10668 3166 1690012 BLZ_20210826 77151069.15032582 1573.9995637773995 0.2522862186483828 5.148261463487786e-06 18960235.480794784 386.9107483848496 66064 None 427570 HC_20200109 51554761.912053876 6408.055395293179 1.1575693754903638 0.00014403731319183698 37826579.067782775 4706.7924666320505 12800 843 1107613 XLM_20211216 6742111743.020869 137961.98158864962 0.2737134312926708 5.600922798061769e-06 482195979.2058536 9867.043938300525 705920 208717 23107 BOND_20211111 175753064.37954706 2710.177721637304 36.016609107582575 0.0005546095663026464 120552102.135802 1856.3476889981182 None None 197803 ONT_20211002 740171441.0167477 15369.021563396262 0.8471700929466668 1.7588076652403488e-05 109260840.23585987 2268.3615122557135 152930 20352 107360 STORJ_20200217 26716510.529482637 2679.989015512505 0.1877068194190378 1.88679722222573e-05 9474051.750418974 952.3156687241985 82471 7954 126163 MTH_20200217 4444471.694918516 445.8458395515452 0.012948894885437063 1.301601027408259e-06 1416857.7297846703 142.42014419725623 19187 1938 1456443 LOOM_20200914 23104079.58699783 2238.2448094487922 0.027751232616716158 2.687194948684122e-06 4577824.1288535325 443.27781922052725 22495 None 451154 CDT_20200807 5801126.69116777 493.09059457854147 0.008607284182699888 7.310450323845714e-07 244164.34250112507 20.737682860484238 None 290 257807 OM_20210809 55341259.58266088 1257.9749962684948 0.16823883665420783 3.825338879598904e-06 12510065.822949056 284.4482411467719 None None 86864 BTS_20191024 67260118.8168052 9015.155807321893 0.024814570458590875 3.3251073946028813e-06 13982630.944933636 1873.6471634110287 13531 7120 129148 QKC_20210708 109755154.2380483 3230.0793165002287 0.01674864979879027 4.930272076364396e-07 11298986.999079239 332.6063937212918 75307 9533 268503 NANO_20200318 50624137.14438207 9319.157769124662 0.37684223271667966 6.992289052692562e-05 3754260.291006452 696.601146440477 97687 49558 321803 PAXG_20210304 123600700.23119627 2431.0398746949663 1720.136368013699 0.03390489855479898 6614161.7061044 130.36901366689776 16109 None 52901 KMD_20190702 159552636.1507115 15036.044392313996 1.3869414946640675 0.00013083214394026013 7450395.775544486 702.8063233150564 97484 8421 312186 TRX_20190626 2549065861.509341 215904.56271589847 0.03857245489704237 3.262566020718843e-06 1323085357.3469155 111910.25670812784 435833 71080 93718 LOOM_20211216 68847464.84659913 1411.210106804334 0.0826498996524843 1.6936140048636818e-06 1755116.8547437948 35.96484082696693 39227 None 400372 THETA_20200217 138083441.1519615 13851.43861145516 0.13848655830827752 1.39204347684535e-05 10773657.39867193 1082.9498318676528 None 4025 394395 AVA_20200905 38602583.78292178 3679.4928832071173 1.0006793845458326 9.543863883882693e-05 2096760.1718402077 199.97607611624466 37624 8925 60068 MATIC_20210112 126645984.40958457 3575.246197476478 0.026039878633699266 7.315234434406386e-07 57146035.400214195 1605.37094596307 72551 2670 49015 TRX_20200309 995645496.2979168 123655.03740548214 0.014841753836002712 1.8449400842038262e-06 1389988065.9483504 172785.82624193002 500930 72189 46870 LEND_20191015 7025441.318772704 841.705452629222 0.006044764616990255 7.241747294168905e-07 3453185.6918280674 413.6984601479809 None 5803 753503 LOOM_20210724 47682785.13036129 1426.5184443386845 0.057372219759647076 1.7157374383350066e-06 4558637.079045927 136.3277268522641 33769 None 286849 PAXG_20201201 74392160.07162546 3783.847399197085 1790.6280371161397 0.09121291413189644 3463447.027430896 176.42474582393484 8594 None 85831 LTO_20211007 77016216.07436097 1387.3250588369779 0.2629576200379783 4.740127609768487e-06 6374428.296970067 114.906742624889 12939 4984 415943 FIL_20201129 1287329451.1674116 72737.87691046152 29.92724371697021 0.0016894395838836116 52092461.75053196 2940.7007118863858 40595 None 36454 WNXM_20210203 74470200.27503777 2091.100134859164 44.30274924183677 0.001247061373694553 27975583.89308982 787.4741562692552 19986 None 132574 GTO_20211125 42494726.75333591 742.8184908092582 0.06407935077372563 1.12028899642835e-06 66250658.75963269 1158.2496251659632 13850 None 1014577 JASMY_20211207 599548262.1268991 11878.197468008559 0.12652996773833203 2.505187951135786e-06 70507174.9221807 1395.9833250645765 41794 None 84310 VIB_20210310 11551753.055646943 211.36100638683396 0.06322944671396336 1.156210859005966e-06 2184554.5317909503 39.946667304770216 30763 1131 None TCT_20211007 17289580.86776277 311.07481127408874 0.030102027604002456 5.425688077283784e-07 4935015.513145999 88.9503364461953 None None 947696 SKL_20210804 319293994.6262153 8311.550283523928 0.263121155239476 6.849782726989256e-06 50713991.049684905 1320.2276327521313 27855 2349 190534 HC_20190803 126628885.98559245 12034.35463398965 2.8633537787490275 0.00027204751277637445 45658753.82119347 4338.04251004961 12922 847 463002 AUDIO_20210603 245446582.03444636 6522.12824322993 1.170085846724742 3.111279474373119e-05 15274568.85993862 406.1535545178297 50281 5419 28886 DENT_20190905 33446623.599505726 3166.4596671643308 0.000454278335656683 4.3007451058368826e-08 788370.1388936887 74.6365994216677 46542 10146 253321 GXS_20200518 30956080.086806297 3188.696648922993 0.4776619653292152 4.903549527887905e-05 12423368.499435624 1275.3496648660016 None None 497565 FLM_20201231 0.0 0.0 0.12867606305926851 4.461999170818891e-06 4329553.577871222 150.1325422551918 12208 None 65451 CVC_20210806 194279888.43594444 4739.613839722609 0.29012716579724823 7.083759894898155e-06 43787478.83001935 1069.1173492231972 103734 9860 242818 POLY_20200422 11412588.082910664 1666.554159968658 0.018136843479738526 2.649470877825417e-06 1686290.0133140383 246.33703691794722 34784 4989 378789 NEO_20190903 641509561.5761858 62146.73485682996 9.09812636940595 0.0008813758658042604 165720223.9167656 16054.053318832071 323954 98214 210014 REP_20211207 122348166.30621111 2422.391766571377 17.753065885561945 0.0003514959147401726 21927250.383747607 434.1412903582092 158454 12078 164632 ZEN_20200217 110335726.89620781 11068.295214212558 13.035422622697492 0.001307807757625227 2267767.828721633 227.5188495792197 None 5013 48577 TNB_20191113 7477481.61082097 849.9403255489019 0.002548901182147765 2.896322392860008e-07 492538.26884835435 55.967239036075405 15460 1460 2032094 ELF_20210304 132134981.00978741 2599.3946502079234 0.2863886078301943 5.632519381067211e-06 58727798.84962962 1155.0231265626492 83443 33324 357981 ENJ_20200316 47822876.65772305 8852.170150517135 0.05173518473423036 9.627649635224976e-06 5442621.076513543 1012.8435626768601 53812 15255 111026 APPC_20190510 7148698.727936002 1156.6113427515409 0.06536453936291792 1.0586150425627563e-05 657053.3498360873 106.41344170434625 25667 3390 1192201 BLZ_20210128 32003952.94060175 1057.9513790856497 0.12492776798845663 4.108503949084221e-06 10676482.634155255 351.1178641149584 44706 None 447066 HIVE_20210513 177250739.16712177 3438.6354236844763 0.48362190594766935 9.64114472992733e-06 25948885.367397428 517.2986507241521 19726 166 115181 RDN_20190110 12821669.03359734 3223.2912634203412 0.2536529570660864 6.37803665743798e-05 348558.7897128671 87.64418770334593 24874 4443 565041 ATOM_20190520 1167632365.9810317 142697.4134675206 4.880739269437048 0.0005973231068194028 74701560.6073049 9142.256081087471 24178 4435 130056 YOYO_20200113 1786877.002859181 219.18570909907555 0.010232624069470196 1.2549837909619509e-06 301722.48505846295 37.004860683476245 7498 None 1425817 REN_20191012 48810666.84743356 5904.570007338194 0.059062295361179296 7.14322239919318e-06 9267867.029197527 1120.891678030203 9825 878 276397 GVT_20210616 15625971.576001333 386.97799489226765 3.559234258591371 8.818070475353183e-05 435841.3875448466 10.798053154745768 25760 5665 273194 MTH_20190906 5812063.620315444 549.9220769058553 0.01653935807728145 1.5648376627564204e-06 456847.136808698 43.2236609462289 19535 1991 715962 XRP_20210909 51742102326.78837 1116404.6133667545 1.1056689280662244 2.3936702480222334e-05 7312860365.762958 158316.61577107589 2019094 328994 21062 ONG_20210708 0.0 0.0 0.8441684164254939 2.484561388657627e-05 14015714.748906225 412.51133093825115 141288 19608 137199 NEO_20210111 1780122024.7342868 46177.2625309267 25.02029373378858 0.0006505224709198584 1446278391.01289 37602.939540599895 328387 101368 181319 GTC_20210826 167309013.3460806 3413.359230442314 11.673244166771301 0.000238221649717506 92284974.79886267 1883.3049858841557 None 1129 24544 SNM_20210108 3935287.450211192 100.64832310661038 0.009078889677675823 2.2999995540976393e-07 325014.82320078067 8.23375957827792 28782 9497 None EZ_20211002 0.0 0.0 5.116305458369506 0.00010621948688712532 1138822.0444108527 23.643055364332703 36788 None 194935 QLC_20190305 7023367.232501427 1891.6124835759508 0.02926403013542261 7.881718681566462e-06 506799.3037903999 136.49690497190252 23394 5844 940522 OMG_20210902 946565869.4818265 19458.971535207173 6.756187309201453 0.00013880638146328864 407974135.86731744 8381.85961085317 None 5078 333610 TFUEL_20200914 0.0 0.0 0.009162160830710966 8.873359673961553e-07 3827712.124291096 370.7058524160695 73169 4392 65774 TRB_20211221 71118968.0381481 1507.4387460336484 30.466189465621564 0.0006462135816727167 10760324.1583137 228.23555345343527 26825 None 346717 TCT_20200403 3121587.868819854 460.295834561729 0.005372969705256894 7.881599170783054e-07 2594297.6133232415 380.5570297172426 None None 430478 TRB_20210420 134628837.1055584 2405.1308769590246 85.2771407941074 0.0015247043501610273 140945922.36833686 2520.0289194887173 18246 None 295366 RCN_20190909 6615829.264109327 636.8807627014422 0.013047520404433613 1.2558042495422885e-06 996629.9117538321 95.92413267858372 None 1111 1734382 NCASH_20190224 5383534.715597323 1308.7250695412417 0.001854901055234249 4.5102849824990086e-07 408225.9750597028 99.26219404437569 60264 59606 682979 JUV_20210724 23654046.805191193 707.6419321134916 10.794983827749213 0.0003227302748081225 11758219.7855134 351.52748380024724 2569326 None 42486 GVT_20200403 3277814.2886545323 483.3323061653876 0.7425965372518983 0.00010893134659785116 1002667.6570321479 147.0811303198614 20580 5586 153070 ARK_20210217 120673999.62877734 2453.7399377762285 0.779542372252513 1.5841271570877192e-05 5999891.452211989 121.92526445437034 64223 21849 92701 STPT_20200414 8199764.453116068 1196.218165477469 0.01181613052380236 1.7256333112491711e-06 1213869.4455684626 177.27407009942553 11243 None 1339283 BAT_20190414 392699337.18118525 77403.81258657124 0.31378920737246885 6.184148211821616e-05 49456864.55665213 9746.943914080539 97188 24932 78239 RVN_20190616 235666569.74407682 26724.338435557333 0.06260128926584407 7.0997288696430695e-06 32099608.579078708 3640.4764247798216 25479 6653 184956 KMD_20191019 65060306.4046921 8174.8794375937 0.5595942537421208 7.031438778460195e-05 1826608.4207264916 229.51781932480267 98191 8407 214923 RCN_20200313 14598898.145604625 3041.636536748961 0.02886857771338319 6.043941249397932e-06 1559843.4819109042 326.5696861316194 None 1132 864394 TUSD_20190220 209759273.88550302 53573.391392398466 1.0100810274089465 0.0002580019698310311 88601479.74667251 22631.210451724244 8174 None 263322 TNB_20200330 2995368.6965184514 506.5547111317219 0.0009650643082416894 1.6349581299734572e-07 233135.35966922445 39.49649245343615 15078 1446 1775001 XRP_20210110 14981088874.901352 370361.03841723665 0.3291685242044116 8.144710397390013e-06 5434746112.270671 134473.4684908632 None 229914 14934 MANA_20210527 1315344944.8400757 33572.29729696765 0.9993819979881275 2.551009320336827e-05 307027778.1009884 7837.150610223752 136146 32432 10276 AXS_20210304 122420883.28730302 2407.700512207323 2.192108755183675 4.326388687432298e-05 28185041.053115867 556.2654794323752 None None 23096 GAS_20200316 12986542.615114002 2403.7658611320107 0.9320596924438382 0.00017258406905130755 2246624.901203969 415.99445853639435 322633 98954 219445 XLM_20210324 9041522354.00423 165756.99276575472 0.39665079280916515 7.2654460562149136e-06 951962395.7657444 17437.079565623688 457111 163430 26644 VIB_20200411 2040545.449918911 297.6008189347864 0.011180162707602448 1.6301188839653282e-06 588208.19966167 85.76344719202739 31307 1104 None EVX_20190522 13237777.994302325 1666.792866549746 0.6864510804034648 8.643231247300902e-05 2848693.357253644 358.6841967663823 17215 2393 688933 UMA_20210702 563399920.4707685 16757.008606220985 9.13647374840741 0.0002716539555486423 20511301.61587963 609.8606936156542 41104 None 148626 SNM_20210708 70789349.29035474 2078.607068 0.16176670151166112 4.75e-06 493985.07300806534 14.50501911 32399 9713 None LEND_20200526 67593675.58758336 7596.261847405898 0.0572751163362976 6.444643627089037e-06 1784925.2086676424 200.84126592302414 44925 5727 81711 NEBL_20210722 13920207.40990836 432.9588422836218 0.7703709633939896 2.3853179399189504e-05 2216053.465492379 68.61619061770277 40607 6108 1825448 ONE_20210610 924110989.5496732 24619.375555045055 0.09052073389815243 2.41687333147452e-06 55672673.293756284 1486.4417640157867 179717 24436 20488 SNM_20210427 42358359.54270318 790.7841746945528 0.09679665335759366 1.8070874902842028e-06 831.1443737574109 0.015516555049568639 30629 9544 None MBL_20210105 5263360.694795633 168.23215403736498 0.0014965318857807206 4.783346559916241e-08 3158938.232115929 100.96875629012595 None None 990117 PAXG_20201018 66221345.76415163 5827.778398048927 1910.6391235429926 0.16812076515652044 354840.14175766916 31.223057983825047 7610 None 84305 BLZ_20190601 13245410.85550229 1544.0313717675765 0.06396033877822598 7.457914412550647e-06 581317.9325287349 67.78293345682066 36626 None 848455 AION_20190730 38343998.833727434 4039.821872464991 0.11827303432444093 1.243415739021043e-05 2071348.903883082 217.76289437430768 67569 72601 240336 GO_20190524 18892154.066272683 2398.1924873451544 0.026363584728480736 3.3475487862160005e-06 3056088.110569094 388.0505686335119 9601 663 859929 VIB_20190510 6500365.473977576 1052.2264985543209 0.03816527307886449 6.182260665314213e-06 1444463.2864069315 233.98361488442833 33058 1126 1885935 REP_20200107 106241030.5201431 13692.724335835985 9.65659914196029 0.001245447217407859 9755780.736193758 1258.2390335265793 127920 10089 330161 APPC_20200324 2487875.7199907615 385.8051740735023 0.0230123045210723 3.5686132069401408e-06 49287.38315083044 7.64319828492243 24815 3227 700856 PHA_20210421 130915184.09249893 2318.154126316503 0.7369313045124049 1.3075281344653308e-05 48064335.951076314 852.7995911641701 41032 None 139188 TNB_20191203 6759393.06310624 924.549153249345 0.0021807326362683864 2.9843290847298523e-07 674271.1938513856 92.27390379453009 15383 1457 3090308 BZRX_20210722 24384152.27863053 757.7199804853897 0.172749732067976 5.355662802563239e-06 11815897.916132066 366.3216387705418 None None 119612 HBAR_20210519 2770632590.4386888 64933.7848105622 0.33435672999329463 7.815565136243741e-06 245513308.1640656 5738.8563759713115 102543 18558 36966 XLM_20210105 3593144431.4380293 114847.2359239772 0.16322717667504288 5.217210280996375e-06 1735007376.5941522 55455.8285400741 312573 116505 34006 EOS_20200322 2119073763.8512812 343773.8414927922 2.261780971235987 0.0003676044618866585 2654643128.5827904 431455.8620813396 1480 70414 93580 TOMO_20200310 30682386.969436966 3875.5201855737423 0.439212576619337 5.541989900041827e-05 23139450.053352196 2919.7387623839345 22109 1508 211808 XEM_20210204 2567360202.883012 68527.95522526777 0.2852622447964749 7.614217248097998e-06 116986206.10886367 3122.5947512934413 225688 18172 60114 ATOM_20191024 659186675.4614906 88305.5874744927 2.6785358407516378 0.0003587729479116991 153686243.1832556 20585.300999690262 28901 7067 99736 MBL_20200502 4659676.048130338 526.802615952511 0.0013206210014238653 1.4951393240660487e-07 1656009.5673998161 187.4849046455825 None None 94095 ANT_20210617 162607464.08452353 4248.658098601628 4.6318788466600065 0.00012102316264752946 21752564.812616903 568.3577391529947 84605 3024 95645 DUSK_20191203 10314543.741973279 1411.3250784510928 0.04005580780567053 5.481630817951388e-06 457642.3742257586 62.628284875114275 17604 13333 821729 ETC_20210105 797376317.5475338 25486.441697230504 6.8550471648168 0.00021910703397264324 1647060647.6033869 52644.797999589486 250020 26282 167227 CND_20200325 6472032.109734444 957.6360454313232 0.003379350496765579 5.001071023168152e-07 42298.30350056628 6.25968866408852 34815 5965 433768 RARE_20220112 117426322.61676455 2742.3964314140258 0.8080155212464508 1.8886369600928454e-05 12678761.366967814 296.3504622895619 None 3241 9003 QKC_20190513 33301960.424226187 4788.836239769659 0.02108485719257073 3.030070558660705e-06 7092799.896521462 1019.2947454485959 50887 9178 157816 IOST_20210825 919081974.9809394 19125.71697701493 0.04017769397126447 8.375462382336934e-07 190345410.38563785 3967.950040825158 252712 53641 317836 OGN_20210506 360901548.64479446 6304.212053552457 1.7061629222461376 2.9769993723627313e-05 181927501.49790084 3174.363073496903 106039 5130 43246 TRX_20201129 2176657467.432039 122967.8165104429 0.030426190982518753 1.7176059352075128e-06 993900866.5510979 56107.25405545769 546057 76192 28670 DOCK_20210217 23000582.513318833 467.68523525086874 0.04129800273758265 8.392268335722497e-07 23581905.975948095 479.21369000693375 43965 14829 226889 QTUM_20190914 193811184.5041883 18716.78347115244 2.017572713906111 0.00019490374806796325 139854390.779276 13510.36557877981 177910 15336 240356 ATOM_20200321 410911918.40668344 66468.36960222451 2.1680632286501895 0.00034965986622431834 218922570.6361055 35307.289820031074 None 8294 84919 INJ_20210508 425877430.41886896 7431.941217693707 17.71116124640322 0.00030900187591061963 36640183.60508107 639.2514477264345 66738 3321 92186 ZIL_20190923 62096445.211269006 6182.628375419591 0.006712618631276757 6.683414208639813e-07 13948904.559030347 1388.8217407496631 66281 10608 170382 TNT_20190716 18957283.25832206 1733.3341019316024 0.044248479426245976 4.051052008688303e-06 857796.3293825035 78.53326460590783 17593 2542 635699 BZRX_20201226 23520919.84223708 952.4229591484469 0.16767912968275378 6.8001526018197306e-06 8509147.955142649 345.0847145730607 16734 None 127378 GO_20210325 50997347.29049554 968.4803821851411 0.04754408909626318 9.037312211386291e-07 7638120.8739674855 145.18751827716954 17793 844 245426 ADA_20190729 1853935272.7194529 194211.71535673112 0.05944367244740904 6.233457364427245e-06 80607218.93232757 8452.735872337867 154206 74765 95231 SC_20200105 55978341.07927281 7616.602948868917 0.0013290247724710394 1.8073896725444107e-07 2138349.2207004195 290.80197584289533 107658 30261 203685 DOGE_20210729 27225714556.95964 680209.2344902554 0.2084254397630908 5.2073163601616395e-06 2209278392.726996 55196.77219669308 1996368 2123603 9379 EVX_20211111 13618015.697912185 210.08823696211877 0.6258353768889239 9.634714033121127e-06 636686.5250942787 9.801767085330038 18524 2799 1427566 BCD_20210427 424531850.24846256 7875.3934029179445 2.2562651429045824 4.185545939901787e-05 7727006.146722205 143.3419263986609 30102 None 1334994 CMT_20201124 7186000.921988758 392.3783545565103 0.009038974258397881 4.925212434516738e-07 1847418.5828550213 100.66329116471658 281546 1633 878276 TRX_20200903 2500138440.486889 219149.01854758096 0.034740270018272165 3.0453833714622094e-06 2943903921.1459293 258066.96505020733 525114 74437 41399 BTG_20190507 321173692.5058855 56138.335835527505 18.33642586020768 0.0032054384803576457 16899871.549719516 2954.3106705506448 73665 None 432620 SYS_20200322 9992323.710983219 1621.5639602643525 0.017188256534224827 2.7893269015135546e-06 470999.16886025446 76.43420085547862 58701 4509 831215 AST_20210314 52238383.96395974 850.5459802283275 0.3030557085071903 4.940130586023946e-06 5110576.931715128 83.30784309246992 38889 3530 159367 WAVES_20190712 149258098.3167766 13189.82886309768 1.4956121514087826 0.0001317921129735814 14994613.866100226 1321.3130441437431 143486 56871 50285 BAND_20201018 138676054.5782186 12204.120980505568 6.146399670131062 0.0005408815454793557 44704752.31384301 3934.0063808879527 36953 2637 124810 RCN_20190430 11192929.294555372 2150.16751108739 0.022364094205512046 4.295123057124585e-06 400122.48835469846 76.84529092095998 18971 1116 1782398 XLM_20190510 1727845762.690468 279553.8158355123 0.08998537926699837 1.4574580741548282e-05 220041964.3922371 35639.33833126275 270312 100869 71858 ATOM_20200621 486617625.21844214 52015.317889091195 2.621796211871006 0.0002801024183483138 135861006.0079006 14514.856711494887 34417 8550 161596 ONT_20190806 659388931.3273137 55825.746478768095 1.0051060114494588 8.509768030394321e-05 114069838.93099208 9657.766021788415 81495 16291 237451 WAN_20211021 182173362.2127014 2748.4203822718673 0.9369975072590414 1.4188625965825896e-05 3703796.3821659572 56.08529490527609 128098 17239 276105 CRV_20210826 879438756.2833483 17941.892886303343 2.2064535989077183 4.502584443608631e-05 198721377.4302051 4055.1941952129073 152776 None 12354 RLC_20190615 29381992.391859606 3384.480993230766 0.4193688571242697 4.8330374112538914e-05 1030721.9593234537 118.78606876463915 24915 3318 786963 OGN_20200404 7013786.853385932 1042.9901873969332 0.24539054528920176 3.646835463061027e-05 37957267.0703791 5640.963365968293 66352 2185 102776 PPT_20210325 97905560.28201446 1852.1889867784867 2.7529532448551017 5.22797142859834e-05 6577882.556397549 124.9166949340319 24065 None 629380 SC_20210111 221018094.8810017 5746.424831369001 0.004880946240393479 1.269035944386163e-07 23291687.363680538 605.579062217509 107761 30165 159206 WNXM_20210825 149639128.74280876 3113.928575393303 67.33400271194476 0.0014021151307727791 16819954.48530728 350.24670646195216 32720 None 132696 QKC_20190908 40670496.87174946 3884.532730261799 0.010700705888005011 1.0221518938612362e-06 5984623.253627822 571.6626600866358 None 9239 312593 GTO_20201201 8303450.700284429 422.34276174239284 0.012459813220662396 6.346912088040953e-07 2255868.4722214206 114.91182589823318 16390 None 1072268 ORN_20201231 36196039.73558384 1253.550952812927 2.1972886424912526 7.620541827547142e-05 4578416.597696458 158.78667241061314 30758 None 136131 BTS_20190810 118208342.34669289 9968.425308950715 0.04363229752298903 3.6784161225270333e-06 18310908.60052612 1543.699168690488 13653 7155 153233 ACM_20210718 12198518.12368902 385.9362772574317 6.088369406124666 0.00019262408046063885 948317.5231588834 30.00290861120101 None None 42486 GAS_20190726 31089778.141355928 3138.536117962242 2.2204292522125044 0.00022454325209849833 1138225.4249990166 115.10424765653123 324381 98182 191074 SNX_20210207 2998291479.615384 76487.22336021306 20.907146749907774 0.0005316706838521557 459037439.08589566 11673.364714561874 None 4117 30058 HARD_20201129 17961794.418655954 1014.6660355266638 0.5130111249054576 2.8978173478193463e-05 7602180.676790281 429.4201427019684 11981 None None AUCTION_20210819 170642738.46858203 3787.8137584204037 37.67009957831808 0.0008364280521192366 6284495.26497234 139.54112656657006 45790 None 81918 ANKR_20220115 762887077.588911 17702.48413400252 0.09360857325957421 2.1703566456097877e-06 28862919.842688616 669.1997080072447 157009 None 5363 ZRX_20210408 1319660475.3588114 23428.618309597525 1.7232822499093827 3.0650337965324935e-05 357891223.76326054 6365.461585729492 202825 18755 55682 BCH_20201101 4864602893.168462 352539.78229222423 261.60126999967366 0.018983118941047896 2051939412.458073 148899.16217365506 None 333293 124397 DOGE_20191213 268783444.9106001 37297.19785236431 0.0021909568199362656 3.043722092966292e-07 48086982.75023362 6680.342143175269 138136 145129 124996 CHR_20210826 237556891.45162997 4846.541548066386 0.4180841111621731 8.531604815848536e-06 170682176.27452844 3483.014154820211 86154 None 83278 PERL_20200321 4440026.228461708 718.0167642988448 0.01292648591245979 2.084751623095072e-06 4782123.171926851 771.2489776440678 11569 475 685227 WAN_20190321 43093795.35333354 10662.967523755626 0.4059612180124073 0.00010044952522929093 4216066.162447429 1043.2076404406182 108917 17229 498965 VIBE_20200403 1558311.9606448468 230.17200576 0.008385817599117879 1.23e-06 62302.947069098285 9.13836057 19263 None 1554973 IOTX_20210707 186761751.79150254 5467.863126303086 0.01963349519739845 5.748620704705356e-07 9231018.492533822 270.2810859613496 57293 3236 211014 CELO_20210427 589334645.5239112 10936.3623465734 5.734113472071889 0.00010641207002634083 86344081.07592438 1602.3492465857023 None None 83997 CHZ_20200612 54521031.24079642 5863.218568366482 0.011389884771616374 1.2247693001694188e-06 7388900.526403506 794.5381984281831 24512 None 340266 PERL_20191012 9546003.375092339 1154.5305632762957 0.036530982149543575 4.418198249143284e-06 3627772.1675872104 438.7567948080698 11128 373 269968 VET_20190812 284292868.0591148 24632.484664097967 0.005126122114683206 4.438854699545176e-07 30874788.01304612 2673.535565542032 113458 57278 138282 THETA_20200903 475951247.0676734 41700.55029070653 0.4753841893207813 4.167288004532194e-05 70691671.04355086 6196.936275500304 72643 4365 65774 BCH_20211007 11679406118.825804 210388.29853705515 618.8616920658667 0.011154770887809343 9326532573.813654 168107.56809214395 None 639379 338194 CDT_20190507 6180836.289857083 1080.5282688096165 0.009162723192863688 1.60192654928662e-06 143775.0913052806 25.13631930596981 19868 290 447254 YFII_20210809 159813183.2005921 3632.977840966296 4014.597488106843 0.09128210918837867 76098807.17310865 1730.300396505456 None None 584326 XRP_20211204 43548226427.108055 812106.9507054337 0.9217083373410974 1.7188432427454927e-05 3067689842.36456 57207.66258443826 2275816 339694 19483 FLM_20210421 0.0 0.0 0.8874136881736406 1.573989111833079e-05 83078178.73888649 1473.5421653800663 19507 None 105842 ZIL_20190830 66902737.809159696 7050.064915579829 0.007233522578423336 7.626963695548507e-07 11031862.341070615 1163.1900316536226 66086 10617 159234 QKC_20190902 51015853.00854775 5245.062487467175 0.012743120130260794 1.3101084619476398e-06 13203236.598916128 1357.4126129644194 51190 9238 312593 FIRO_20210210 60093121.9697097 1292.3811891138744 5.235582520709346 0.00011236487796662659 9346435.921455873 200.59107608048853 68263 226 276546 EVX_20211125 14382238.533877978 251.4050359383535 0.6383104771001628 1.1159479538507605e-05 1298592.2242869837 22.703079262666826 18634 2806 1266686 ARK_20190520 84873333.25641434 10371.42193085272 0.5990675545927429 7.32269911668918e-05 1320131.2786910597 161.36617772525727 63529 21714 215073 CTXC_20200901 1504095.29914923 128.68573430955243 0.1493844682741356 1.2797635273111418e-05 9057776.422649961 775.9716949270833 16664 20062 535694 THETA_20190515 76064007.38483831 9520.153048203703 0.10224343969807062 1.2792964736766123e-05 12051325.091433516 1507.8930969193814 None 3966 252883 SUSHI_20210722 1355643680.809152 42125.65159659271 7.057326369119185 0.0002185176751984315 258813024.84003088 8013.689255833018 116432 None 5721 REQ_20211021 177528908.62563005 2678.202302103013 0.23020080151686323 3.473389619532358e-06 11247870.442538535 169.71372896847302 47331 29195 245224 QLC_20190618 9065099.647003349 972.4832953392208 0.03791307798464155 4.06908926775344e-06 1110042.1944252967 119.13727452883714 24975 5789 940522 WAN_20191102 24147966.959783323 2610.519173043779 0.2275326478828397 2.4608015888693958e-05 1738379.1062750753 188.00845094466527 107329 16714 357067 ARK_20190729 55570007.76538473 5818.273960237498 0.3893735934783486 4.08309849282689e-05 665228.6457292999 69.75804539024585 63461 21851 182377 GRS_20210806 62517392.35330721 1525.161973308412 0.801241200590911 1.956520873189647e-05 8431750.953855744 205.89176800430513 41432 106850 8715439 OAX_20190901 4077959.187382862 424.9136867371458 0.07807534837396463 8.135266341927136e-06 421562.1635433551 43.925778770496834 12296 None None MITH_20210708 23546121.188225865 692.9285343589024 0.03805411363825369 1.1198779186980416e-06 6747544.854195103 198.5705555901225 32420 2737 334204 GLM_20210704 299296746.0157797 8638.143421590796 0.29990916388963945 8.649010918018666e-06 8182149.099250387 235.96310287575676 158524 21015 170065 LUNA_20201115 142748352.42596403 8868.657779218878 0.30526211743416914 1.8979120267298625e-05 3869990.353239892 240.60965364713147 15032 None 186488 VET_20210506 13611413586.708227 237763.5616179321 0.209209398745081 3.6503914171136853e-06 2540023591.2716427 44319.61648215527 304971 153761 28728 BNB_20190130 904087868.8040835 264864.2207190922 6.261472456060682 0.0018342234346656735 56355880.38661228 16508.78083577376 909545 47086 1117 FLM_20210727 0.0 0.0 0.38418107928605816 1.0265246336113003e-05 24608820.842415705 657.5430743703376 None None 74148 XVG_20200711 108333405.15453637 11668.648628455916 0.006636759703260086 7.148489138541075e-07 7345038.269049189 791.1379744949163 290365 51665 251650 NANO_20201201 161386561.25499564 8201.489180664152 1.2042225699787623 6.134196918309521e-05 13892656.750473147 707.6789154299548 98599 53293 339047 MITH_20210509 65180634.36837481 1111.5225420162415 0.10548064084230682 1.7963018642984043e-06 21626377.370928556 368.29034862896464 None 2677 254910 NEAR_20211207 4155156380.3113217 82322.1457126992 7.300216070143302 0.00014453819649612063 205342634.0814505 4065.61308716347 210798 None 8333327 FIRO_20210429 126922012.81910466 2318.7780901617884 10.748435063517991 0.00019631452345592377 9451608.653794535 172.628669922322 70893 694 172734 ADA_20190530 2828591820.4408326 327555.0978352583 0.09093447333769593 1.0515540880162036e-05 250941367.85891938 29018.524167889653 151862 73387 118037 OST_20210221 14698605.957503565 262.04688105500196 0.021318253360987437 3.7909016555664586e-07 1151289.4881015534 20.472714872914356 None 739 607091 RVN_20201106 90149941.99533041 5801.644679725445 0.012158618790120273 7.803677469941437e-07 10263707.70009676 658.7480528823885 33717 9676 228057 DENT_20190531 123387447.23331404 14857.000799495738 0.0016962615057662962 2.0443245533881484e-07 5555318.686184998 669.5237941471439 45205 9421 246457 ROSE_20210513 192915756.08916554 3740.2583055488985 0.12565832675601732 2.493033173075507e-06 18541164.356243387 367.852564974143 19693 1488 225625 ICX_20210201 422677564.791007 12787.893740092137 0.7171552839911817 2.1690161426315187e-05 61332447.11336362 1854.982746771693 118824 28321 278107 BZRX_20200914 64634175.10057791 6261.539499426175 0.46118036736685 4.465681113112059e-05 69921101.87172419 6770.56887350464 None None 102512 HBAR_20211120 5902260739.216686 101533.70832760869 0.38418983598526724 6.5863713533686956e-06 104169114.61549576 1785.8267141549047 172977 14849 31607 CLV_20211230 150391887.1799001 3242.6447494600734 0.7154798477064293 1.5376859368446362e-05 10966673.142537063 235.69215987436516 103247 None 70589 QKC_20190806 69485886.47949111 5883.3765786721815 0.017329409917721014 1.4672010397267034e-06 4875046.706539493 412.7476717621342 51677 9233 258370 PPT_20210804 82329588.39172067 2142.757028492137 2.265774648313235 5.9216031343844285e-05 5025441.832847076 131.33994650000977 24455 None 828150 ALGO_20190813 158513602.3255591 13927.976307894576 0.8027326977621545 7.053269782590072e-05 65678175.81883886 5770.861136840243 11278 552 241883 KEY_20190726 5355123.9353138255 540.6037254665824 0.0020470718761612062 2.068072640886403e-07 90215.65088365889 9.114116682709078 23902 2832 1002597 IOTX_20200223 21412406.87071632 2218.260667629871 0.004963962496056471 5.142430996800267e-07 3926870.1252530096 406.8052220086777 22300 1805 655766 FUN_20200901 30100224.24994372 2581.8668956624715 0.0050049487607009445 4.29302832179559e-07 994701.8530828487 85.32121768273949 None 16688 242741 ADX_20200321 4912998.471137229 794.7177572773996 0.053613988682267015 8.646731268102846e-06 463662.4628122759 74.77833329663312 52306 3770 39887 IOTX_20200801 36496347.67230901 3219.766963851418 0.007087711815843138 6.257920965936854e-07 3607316.7934990544 318.4991712325771 25288 1894 425581 WTC_20190807 48129640.38967871 4210.196856821851 1.650170281601093 0.00014410351285373932 4990022.051651686 435.7609119968745 56087 20016 698794 ADA_20210805 44244306618.72718 1111442.4281038793 1.3781957776839509 3.465858410063293e-05 1727438117.272854 43441.25866264974 535396 552491 8000 VIBE_20210218 1660294.027663027 31.81239104 0.007866758931708974 1.509e-07 95654.23467777534 1.8348374646 18603 None 825902 SNM_20191203 6779902.053601398 927.752963251232 0.015493324953230964 2.120086399823284e-06 123616.60423942562 16.915535059870418 30689 9791 6545565 TVK_20211204 149091835.3457153 2776.7865388833716 0.3442150389822672 6.419077161793028e-06 28261728.714467622 527.0374527510845 None None 40179 STX_20191213 36000653.933738135 4997.23646899928 0.08442994232293954 1.1726483922333902e-05 331244.99032548675 46.006652930640435 34610 None 43734 MITH_20210310 16779767.359333172 306.9974485318456 0.02709522382807495 4.954620615128544e-07 13794362.38020422 252.24309883979015 25297 2223 364504 KNC_20210106 181378725.79632995 5331.436585228439 0.9058133820272112 2.654534497911265e-05 55640521.07549256 1630.5751891863397 127510 9332 138877 THETA_20210723 4885028806.696428 151040.8238320654 4.89231884240804 0.00015112096531862007 348113838.61783457 10753.03982166537 183475 21688 19127 SXP_20211221 292032036.75119585 6189.915565784664 1.5083973235139738 3.1994379806290556e-05 71968572.61364494 1526.5141421448736 42938 None 180854 DOCK_20210219 27632872.643495783 534.6581835892641 0.049361900605459794 9.549515825064053e-07 14533782.897234691 281.1694608044259 44037 14831 226889 GO_20200323 5183179.035485002 889.2559517682848 0.005395162219980298 9.24577056757087e-07 808989.9513330946 138.63782360048168 10681 678 690987 BTCST_20210722 102664685.49820124 3190.231204404398 14.087585703045383 0.00043776158555868823 13378178.105054295 415.7172550786383 63388 None 1251678 EOS_20210610 5108295994.600097 136090.8580891106 5.312364100927349 0.00014183834542326864 2693969851.887439 71928.09437613284 None 88526 49952 STEEM_20190816 56496557.656309076 5489.95537876099 0.17610351255960013 1.7098209289144874e-05 850958.9820437813 82.62115025410421 6136 3765 255296 BEL_20201014 15646109.678347396 1369.4540108305416 1.0784580618414454 9.441935002483411e-05 2778863.6369592957 243.29040478527025 9901 None 265516 NANO_20210210 619012737.8851174 13290.199436433104 4.639382920375346 9.961201830698277e-05 151801319.8742686 3259.3204988383272 105421 64110 188898 KNC_20210114 221414573.15691566 5946.314637187061 1.1034978858440059 2.9527141853623422e-05 48548359.77975072 1299.045810931521 128156 9346 138877 POLY_20190616 45610838.16203533 5172.220551669069 0.0988073771373929 1.1205928763176574e-05 5811415.872535789 659.0835033529561 35097 5112 316227 BNB_20190512 3092697671.987491 423566.8050391904 21.310738461675005 0.002925808456557521 330046924.29264736 45313.02769694486 961550 50618 978 MKR_20210420 3179234423.5616026 56790.728218577606 3527.928252250354 0.0630436957308533 560176031.3400384 10010.285003101082 133104 24331 31771 ONG_20190901 0.0 0.0 0.17218697562329127 1.7937523776196468e-05 6825268.926869738 711.0202337400269 81420 16276 256067 GLM_20210127 110492519.19826658 6393.577954391452 0.11607832937408287 3.5637742979028875e-06 1176407.0619124358 36.11741548764096 145886 20296 197039 GRS_20210421 106962575.18521954 1893.293023398659 1.3928922458764752 2.4708074080825223e-05 13817777.561302532 245.1091766988733 41416 106829 7053372 VIDT_20211007 39909512.30950368 718.9066061033001 0.861114816637783 1.5522828192023477e-05 7568034.862486905 136.42467026675678 32406 1746 566642 STORJ_20210722 108646304.69039135 3376.1960397515413 0.7589609537148758 2.3500611745726245e-05 25433503.785579808 787.5278627613206 103608 13693 53900 1INCH_20211021 761896541.1186248 11494.723947446206 4.207564858456753 6.350020418240976e-05 228695788.05593595 3451.4570127233856 280140 None 3761 NANO_20200518 97701917.35466594 10103.572711974206 0.7309470459143762 7.567014338442923e-05 3859865.4930449044 399.5865048444736 None 51136 299823 ARDR_20200801 56307264.51786457 4968.153619316664 0.05639355427041305 4.9791302860771675e-06 3898003.525276792 344.16464184673714 63435 6288 1526259 XRP_20210703 30215830565.461456 894010.0500508444 0.6546725767914099 1.9327129732884896e-05 2075137068.984085 61261.83495013346 1905303 321511 12075 QLC_20200324 2027732.5977569604 314.44887763728167 0.008448885823987335 1.310203656822007e-06 176264.78968812423 27.33410970742082 24494 5665 940522 NCASH_20190228 4903761.988136815 1284.6303225641575 0.0016880845690315515 4.4275621122353585e-07 363137.3664135822 95.24482804745394 60289 59603 682979 FTT_20200807 331658088.81560844 28173.28875001879 3.5316139381169824 0.0003001062074377185 6404441.720154328 544.2306970892207 17617 None 11505 ZEC_20200518 424479179.10332954 43860.838468780756 46.2504885457912 0.004778998139542036 333074335.41989726 34416.10411801239 72262 15775 146242 KSM_20210703 1845874492.7480826 54582.257688562786 207.01342824834524 0.006111901507139906 147952091.00725806 4368.1640155582 90240 None 64367 MFT_20190725 15252149.501652302 1551.5789512935403 0.0017153731186155972 1.7493307112405527e-07 634857.3175211482 64.7424977541817 18849 2154 894559 WING_20201014 10226591.089422094 895.1008571743703 18.604830036213567 0.001628858850887851 2251962.9957241667 197.1600842532482 4034 None 307280 SC_20200107 58187101.76735611 7499.361974379393 0.0013892156680617058 1.791006599051404e-07 2607868.5886668474 336.21200502856215 107647 30250 203685 FUEL_20190613 7196862.394692917 885.8235717582916 0.009266630455027267 1.1395477508076182e-06 988752.9624392951 121.59017454298093 1 1515 None STMX_20210806 230087341.9958489 5615.770157479071 0.02475814366799718 6.04278183303361e-07 61158585.11110311 1492.7128301671657 69391 4693 91821 THETA_20190523 78899229.13987571 10296.353329288684 0.10610056327040299 1.3854260031405091e-05 6167000.222624477 805.2664572592903 None 3971 247302 NCASH_20200314 1067121.4366573796 193.3903088116504 0.00037081937140250845 6.665745540685054e-08 932903.2864968701 167.69609145114035 57929 58337 746963 MDA_20210108 12721464.966869248 325.3622848582933 0.644299792772558 1.6326922377838885e-05 1297160.4705202943 32.87078243910286 None 369 3261426 ONE_20210408 1486153152.1865294 26385.311040339846 0.15553346106361168 2.7678427740598975e-06 449186354.51181597 7993.631704970219 118364 13376 41761 TRU_20211104 257103142.26575175 4077.5084658550873 0.6128807319753927 9.718174745887596e-06 12318296.896618413 195.32570623850032 34597 None 77898 ETH_20210106 125112930227.72487 3683005.93291394 1103.3582516225742 0.03236906673359789 47148245967.40434 1383181.4987078623 564877 518851 7761 AERGO_20211221 67535072.20558524 1431.474434559727 0.252630902325928 5.358802832109306e-06 4368007.406014857 92.65410621788568 25432 None 525635 NANO_20190908 124496850.9213849 11892.177327450903 0.934322316041616 8.924825472395108e-05 2125659.081201081 203.04702122395187 98535 47607 229089 COTI_20210212 91748008.47143176 1924.8851718070282 0.13932627698060382 2.918061660209536e-06 45236534.61859363 947.4379145983794 39707 1500 238618 NXS_20210422 101609538.34322448 1878.5954310615248 1.490641665867256 2.7559544787902265e-05 2986445.2133639464 55.21452438835116 25220 3844 432623 QTUM_20190426 189678579.16449413 36541.092099626316 2.3321916259902493 0.00044905566703267743 159967348.255915 30801.17580132707 177184 15263 376893 CDT_20190411 7809651.585714709 1471.4845519851783 0.011533779079648244 2.173065695727087e-06 769253.5896419139 144.93416038420827 19802 289 420503 PIVX_20210218 51980908.42784585 996.23950218991 0.8183469719987628 1.569503281083778e-05 3648437.261764038 69.9731831252579 65490 9015 316171 NMR_20210408 359783670.1242615 6387.333387141775 63.37732218635809 0.0011269552473833963 34436252.750005774 612.3344186541434 27092 2991 982791 WAN_20210212 128665328.62022243 2698.3212586645955 0.7848568288835455 1.6441511149170984e-05 19953030.35347358 417.98447684151984 104663 15839 443553 AUDIO_20210324 286523035.2817877 5252.7876199290695 1.871483660738612 3.433162369726652e-05 36957792.620813444 677.9760120580585 34103 3554 60815 SYS_20190923 14883034.972941888 1480.5187347835622 0.026352357973622426 2.62339076968888e-06 2918662.1685286365 290.5543177738506 60339 4587 745278 QTUM_20191011 172960215.07949898 20199.79348532881 1.7999350470692044 0.0002102120202677354 203679566.4278105 23787.465673143408 177376 15300 202999 GVT_20190513 13113816.666508723 1886.4837002149134 2.9305832249659893 0.0004211493522850711 1553771.5876167056 223.28998956558092 21437 5793 192676 POE_20200711 6076799.507692329 654.4527766367189 0.002413831071284298 2.59995027194863e-07 564041.4282732296 60.753201923489414 None 10240 701403 BADGER_20210702 80243025.05732699 2386.6404886093687 8.884341917010255 0.0002641573423907815 4525933.815817091 134.56918472866914 35703 None None NU_20210711 128800541.36015396 3819.646448091642 0.23277539097051822 6.902972915971242e-06 6192802.10320407 183.64804378226438 None 7133 128147 STPT_20210708 55717661.34150525 1639.8465116354325 0.04962466518884041 1.460556029510459e-06 11647454.621078165 342.8085612372208 30720 None 433288 JST_20211216 432150275.76824594 8858.491076712171 0.05934327981535634 1.216028213130574e-06 298757470.2419434 6121.965517040906 None None 179821 XMR_20200317 596503312.5586907 118453.51412442645 34.1140643219383 0.006774364391484782 158124276.8765963 31400.28876633223 320475 166870 83083 YFI_20210220 1571050686.5949445 28122.91102379022 45220.70387137815 0.8082709247187805 679673623.9365268 12148.427191418654 86811 3384 19652 FIRO_20211221 64511514.37984993 1367.3870561413296 5.07442371682763 0.00010763280812247328 1208323.2566470676 25.629555687541657 77773 1661 199693 MLN_20210909 150787019.38087565 3253.430311150648 103.24015186253851 0.002229956950141945 31704110.011525873 684.7994621550006 28189 432 110553 RLC_20210428 211252817.8290925 3834.3529100477917 2.9858767464635307 5.420768515943547e-05 45873543.14443413 832.8202384329855 37006 4272 302860 UMA_20210725 528050099.1007306 15455.392225229536 8.516018845501057 0.00024925309758130334 14360477.407700785 420.3130055902482 41970 None 160207 GAS_20200207 20369566.40939204 2091.483875127222 1.4633914073336571 0.00015035737142537746 3005115.117424843 308.76306067009926 323151 98748 245431 AAVE_20201226 957500979.3355018 38771.69439983598 79.69287334601512 0.003227640735903839 174272800.11246282 7058.2219612130275 87516 1809 22662 VIBE_20200903 3992190.045299375 349.9344340757393 0.02134306061439004 1.8699900207008837e-06 218857.41657552207 19.17537472 18768 None 2981360 CDT_20210731 11886596.32463942 284.87824349500346 0.017641498625281634 4.2233407817694144e-07 732863.3744892934 17.544607987612913 21078 337 690014 LTO_20210117 51440087.42993085 1418.2921113438176 0.18839174354484903 5.205704918093988e-06 8859514.719302544 244.8091327060726 None 1034 818812 WTC_20210428 47512825.921423554 862.4475959702336 1.6343721498004165 2.9658924537805207e-05 13881077.148311764 251.89967884334416 63521 19477 334285 ACM_20210702 12164433.532067178 362.02923329134495 6.086312154040694 0.0001810066790611902 8059369.762203693 239.6853330984954 None None 41859 BTG_20210221 463624554.28695357 8258.567669055412 26.615627715621063 0.0004733918166056852 58733577.9466787 1044.6492360430527 84921 None 210051 QKC_20190410 73122339.20116724 14137.493006767225 0.046289073643493016 8.94531089143657e-06 10697006.588562932 2067.1843701044095 48331 9122 169394 GAS_20190616 46310762.61851457 5252.300316951842 3.320145558623677 0.00037640271341178464 3655346.5788330794 414.40423211553684 322160 97692 201306 DOGE_20190803 350960904.93916464 33346.10933866299 0.0029113886736968544 2.7661131267913745e-07 48997964.281750105 4655.301211078222 137887 138199 127721 TOMO_20201111 46470114.013031945 3039.7818274048072 0.6077135899089516 3.978173129021084e-05 5221100.367824737 341.78010056208086 33633 1695 94398 ARPA_20210708 32583148.43266526 958.8752689990922 0.03317176787775435 9.762778082342205e-07 6324704.719449255 186.1422907572377 43117 None 560675 ENJ_20210724 1151053808.3782244 34435.28913406053 1.233796477560677 3.6898734553822165e-05 209652325.58951408 6270.00129374136 243715 34158 35760 PIVX_20200129 17607674.824390758 1884.845462752398 0.28295121139545903 3.02608772889286e-05 267631.818537874 28.622509087152768 63760 8521 226941 NANO_20201106 96452628.09175508 6207.257200931458 0.7256218457072335 4.6572056800103406e-05 5655922.274589378 363.0099272609603 None 52929 262836 ALGO_20200312 184273455.46374112 23232.466422806436 0.27047897629320167 3.40724657541586e-05 86801820.35475357 10934.498835983295 16015 818 407593 MKR_20201124 544633271.5806941 29738.69740061468 600.9057446777824 0.032730462731410975 49111242.65367802 2675.018023386392 72094 17722 30241 MITH_20190225 17101092.0251915 4546.529678783871 0.033803751644382686 8.97449487474459e-06 4445110.431243788 1180.124064409881 47 1979 558575 WAVES_20190117 255599893.165521 71065.37101387414 2.555538491794134 0.000710723606532822 16407121.315319607 4563.002463664263 135233 56610 38211 SNM_20210324 19157114.949635424 350.0811904 0.044139277271720144 8.1e-07 1258972.740874557 23.10341227 None 9489 None XLM_20201224 2858522537.087284 122252.03086133508 0.1280574800037965 5.492377661618983e-06 1197129430.4496121 51344.809703214334 301506 114723 34884 GXS_20200806 34358569.43216926 2932.971350960996 0.528593375879527 4.512263616863071e-05 2737009.670127099 233.6410124884283 None None 752968 XLM_20200407 1006642829.7723933 138148.83056332197 0.04956091638236026 6.801600763815847e-06 501379427.7782738 68807.90243321678 281060 107352 84829 VET_20200309 313915940.1593411 38858.213515835276 0.004916088188005392 6.111062247596792e-07 144012473.97993594 17901.818666903793 118786 60712 236885 NANO_20210204 481174864.3859131 12839.517693004394 3.6168540356835663 9.642496169709931e-05 37188089.51454318 991.4306940922538 104426 62246 188898 BRD_20211104 16553065.185071422 262.9149388641254 0.19372745058094207 3.07220635387924e-06 713950.7452487232 11.322112634696088 None None None QSP_20190213 0.0 0.0 0.014901824971778752 4.1010038185915825e-06 57233.39084020204 15.75071206587903 56662 8592 722611 MINA_20211221 1029401078.6276988 21819.201177101753 3.1479606483299865 6.679366281493545e-05 34665684.64274954 735.5390711459684 None 11853 61676 ADX_20211202 98136531.72524205 1716.1479462077511 0.7208491304041234 1.2605741541103238e-05 8562583.829417089 149.73690627489512 339 4048 10416 WAVES_20210120 716525950.2041867 19786.517729365 7.198102361640312 0.00019844257632594555 143775891.829688 3963.7194575463104 153002 57264 125387 BCPT_20190401 4579639.067586863 1116.048936615939 0.054588734032971535 1.3303165963428328e-05 4358539.773846238 1062.1674782686587 10338 1593 1777808 COS_20210430 96061754.08196187 1792.499373223922 0.031607668542679046 5.896733579967812e-07 17031518.614814006 317.74038505311484 24288 None 214516 ORN_20210124 45983379.43151346 1436.2630052649902 2.7278726698884026 8.511932470068894e-05 6043126.998374983 188.56704525113466 32418 None 133090 TRU_20210513 97798339.56484498 1896.973037188073 0.38795050148137283 7.69685141186258e-06 6246131.02734195 123.92184629972405 24391 None 91000 NAS_20200105 16509359.568939004 2246.319457710368 0.3634414421784917 4.94271090728825e-05 3890936.20998676 529.1573995906427 23890 5038 927832 RDN_20210203 17741314.45414304 498.1060811387694 0.26443351467018805 7.443581716125159e-06 3622480.115438333 101.96977787756812 26879 4385 1282732 LTO_20201031 13988748.4321322 1029.9888841177283 0.0572669728194131 4.228372963857216e-06 2393203.007693768 176.70490330726392 17882 562 3604897 ICX_20210127 523809988.1851075 16074.108927391817 0.8927264285716557 2.7408005597232875e-05 180655632.97985786 5546.391863637048 118521 28203 307045 NEBL_20211120 24387195.57620545 418.0827062230736 1.3073817578518416 2.241314306441565e-05 726284.2972246197 12.451079236321048 40972 6286 970869 NAV_20210210 23442296.09938873 503.3059440315026 0.3298300996943989 7.078728162585966e-06 690852.7200289174 14.826902123241428 48856 13681 604574 NULS_20190522 53154717.35043885 6679.464096874234 0.7416256260181108 9.319769791468e-05 14469123.969538227 1818.288092394138 20869 5322 698282 ENG_20200621 24527320.71948364 2621.7636149511236 0.29678494599505173 3.1708096387231233e-05 1146617.3407059864 122.50302331366346 251 3567 566856 ELF_20190213 35848555.82302108 9862.062615244076 0.10811955727687196 2.975465878149803e-05 3423918.51660664 942.267335560726 84715 30832 921506 EVX_20200711 5174664.847426339 557.295624658291 0.23682284554136043 2.5506365372773763e-05 1450528.130609659 156.225217200825 16654 2831 1106208 APPC_20190914 3891030.3956208546 375.7655863918129 0.03583543654167186 3.4607089784862324e-06 221781.2132191641 21.417912265547724 25142 3304 1154369 HNT_20201015 61208834.92356028 5362.356928435541 1.3550921719572997 0.00011874190954881896 2822847.850608855 247.35612165991972 9638 1608 81023 DCR_20190901 235361241.89923236 24518.683003057155 22.808607396390666 0.002376190489482769 8212017.372386545 855.5242869768567 40598 9591 193164 CELR_20190712 35063678.95501829 3089.7825574339763 0.011665625625152833 1.0251657609109605e-06 13505221.88451116 1186.8279948616002 17413 None 482178 FOR_20210120 10185212.145935176 281.2709901601941 0.017838586680377418 4.930403151485335e-07 4765308.884638717 131.70827018750518 16847 None 247763 UMA_20210221 1503622075.7018461 26923.98313707961 27.240285249314102 0.00048439823235567494 142790096.65607035 2539.1536757067565 25893 None 131876 POLY_20190704 39799189.5987547 3319.2529021164714 0.08358221606941907 6.964435360836851e-06 4692783.975881314 391.02326068085944 35161 5095 354740 BAT_20190530 451816609.32813674 52292.39867551093 0.3611266971396599 4.1760208283031854e-05 51260008.77667811 5927.638859323283 101664 27227 50152 SKY_20200701 8767642.775809826 958.6536095273659 0.48825071741335324 5.3384715436438325e-05 248782.48167306237 27.201561648589475 16096 3816 1118226 REEF_20210805 197539272.4345094 4954.929156870144 0.015578594381170124 3.9170620130751657e-07 20836250.140244745 523.9040308921276 188090 12576 58529 EVX_20191026 7430098.81055429 859.6574570889366 0.3412114641674617 3.9477221415796235e-05 922694.7675454539 106.75322919311834 18161 2895 495281 ROSE_20210620 97679489.96781178 2740.026013185075 0.06526562598330507 1.8332637289681549e-06 2926144.767413746 82.19326769625698 None 1620 217403 BTG_20210711 788131194.642046 23371.761761535035 44.825818820064576 0.0013299242944465053 16807863.59668275 498.66765902703037 100545 None 156251 SXP_20210114 68169100.24926734 1830.6052114148981 0.8901765886340369 2.3876741880312347e-05 61564848.40407506 1651.3217860518039 93345 None 116678 POWR_20190901 22905114.692956567 2386.778229464191 0.05360423862623272 5.5857144343153345e-06 168781518.93699315 17587.515292319837 84044 13072 414066 XZC_20191022 41845201.48113774 5095.682100742155 4.8795933448486135 0.000593751247002561 9342347.91757463 1136.7813532756197 61263 4057 181391 NEO_20210823 3902556567.9758735 79104.72717637739 55.2842844263451 0.001121813979367896 418761680.71905303 8497.40052401518 410705 112848 110676 KAVA_20210314 366141855.9454089 5968.221841650246 6.264460616285158 0.00010211737521096215 225641206.3212644 3678.191809373459 73826 None 89619 ETH_20190605 25505094563.584915 3329001.71997234 240.23943365820054 0.03133580339880581 9485736882.825798 1237278.915983175 443399 438212 37291 FIL_20210420 10430669542.832127 186411.98762667144 154.36118150068245 0.0027598857412249136 1380912245.3573756 24689.886270583196 None None 34217 DLT_20190312 7662409.455517917 1981.864403293509 0.09519778182226657 2.4636736656922178e-05 836614.0179664436 216.5117595135799 14584 2683 947216 BAND_20200518 20758492.204832394 2139.192836242691 1.0167499779133264 0.00010401691138417775 3710599.577807178 379.60670356644795 13826 1135 537280 ENG_20190401 48909499.26585642 11918.520215766413 0.6270819881255967 0.0001528152413708997 3332063.7593118562 811.9992876282142 61731 3331 361220 QTUM_20200806 284471938.2390872 24283.550182575556 2.771593223331576 0.0002365931892652704 286892613.70329565 24490.18776684733 181584 15075 86277 CMT_20201228 6994856.526812744 263.46293009520144 0.008676052268358585 3.2990912153701477e-07 1726678.5573416308 65.65739675253805 280937 1629 983064 MFT_20191024 7304731.726803976 979.0838286680464 0.0008096419284255289 1.0846078780877033e-07 1229971.4956243834 164.76873629454414 18634 2318 1251152 GVT_20201201 6108901.744278824 310.720268839949 1.3706469752871222 6.958923074597953e-05 301393.35120228963 15.3020667176 20581 5463 338184 CRV_20210725 541588274.3114185 15851.638354624061 1.5474118843901532 4.529078815063073e-05 91887830.14534897 2689.44053662499 143165 None 13850 TORN_20211221 90528283.8834031 1919.3634128759277 38.45198051662347 0.0008158769781815223 3169190.8383528325 67.24412656346904 None None 87396 IOTX_20210809 214181349.272542 4868.605884357654 0.022522721869373978 5.121115038282923e-07 18886324.04531624 429.42872822964745 96172 6683 162985 RIF_20210210 182727591.0311651 3922.281989153364 0.25898120645735356 5.560329558289236e-06 9759857.033463394 209.5442456623969 None 3053 663041 XVS_20210128 66101865.68600618 2182.670858892827 8.21859361394685 0.00027089289617193994 38665232.906145535 1274.443951740585 17090 None 82683 UTK_20210703 98529006.84314607 2915.0711788193594 0.21970962763107954 6.488509805417902e-06 4753205.0832675835 140.37262782917398 77375 3981 145803 SC_20200323 55895389.10870367 9586.526805261208 0.0012517815412635472 2.14519683734093e-07 4450895.1306400485 762.7565867401581 107629 30170 162098 CELR_20210620 202703151.43964013 5686.015286574768 0.035700464774045516 1.0037357878208295e-06 36236531.87780156 1018.8075730235975 None None 143745 OMG_20210217 862819404.6638948 17534.615636800096 6.161138579147662 0.00012521194361630854 600225840.0846841 12198.30443355033 299235 42647 165404 VIDT_20211120 44060801.22538814 757.9670460062999 0.9533201986534304 1.63900519021e-05 11336197.314608205 194.89869471067516 35402 1827 323462 SOL_20200730 40210662.87394944 3621.178475569639 1.6571919291258759 0.00014942367968975672 11129957.57810826 1003.5525679811021 81380 2081 132942 XVG_20200612 85178823.99712628 9180.271711711168 0.005240170997685327 5.635305715210701e-07 8224120.839450703 884.426008036981 290862 51720 276574 AST_20210124 20540660.629722886 642.1400853724825 0.11921345686689128 3.7199206434837174e-06 2013533.8418622918 62.83003866803263 35205 3455 178843 CFX_20211002 326811960.85745645 6785.639726933234 0.32482992485365014 6.7437857696897365e-06 33616380.87916723 697.9088244518634 43072 1771 188055 TUSD_20190205 208616559.5919499 60206.24044111447 1.0134803139320896 0.00029255043196407945 38945392.72632316 11241.94649710779 8164 None 276548 XMR_20210421 7193445263.444254 127327.70978910665 399.9732993350859 0.007093746451786685 1888498664.6773612 33493.56250537039 392024 212074 39530 CELR_20191108 15275016.654523347 1656.9055532273057 0.0043714861922355104 4.741733862017005e-07 5641377.5552189555 611.9180023836456 18567 None 556012 RVN_20210813 1409126250.5648706 31697.829486658746 0.15006240713964522 3.3754010477497944e-06 370077255.21051025 8324.26440969643 67525 48351 63027 PPT_20190531 35306730.84381482 4255.146775335816 0.9745998517723966 0.00011745821030152321 1837620.8453997045 221.4690011709836 24006 None 690946 SALT_20190205 16428034.470917463 4742.103536418301 0.2047860365951197 5.911337659206715e-05 456328.6950748032 131.72348295921984 43040 None 362688 REEF_20211120 445829585.28783983 7669.388574392563 0.02800892185214585 4.801718922433704e-07 38881629.90144814 666.5685277655344 218103 14251 73169 RLC_20220105 246503127.3156401 5322.104580866279 3.4449967838370217 7.487348656881962e-05 44664041.36718663 970.727321751096 50872 8500 260800 REQ_20210506 120915232.83776249 2111.472901105044 0.15506335982439065 2.705645468314998e-06 2288040.4401423484 39.92320465133405 42972 27618 445930 CTXC_20200312 1430462.719611043 180.34706636832513 0.06745685457817882 8.497769167933857e-06 3419978.506093831 430.8263124009015 16530 20065 415103 DENT_20190528 122098217.49295779 13844.708666052185 0.0017386541567679038 1.9717720070733e-07 3553596.565881651 403.00609559193725 45199 9399 250313 BCD_20210723 319368265.0351634 9874.587799892608 1.6986854023371916 5.246962727358654e-05 3357017.304519774 103.6928006073301 34353 None 1350278 DASH_20211204 1764008854.9879687 32879.07078855583 168.59790631851865 0.0031424686338588073 322894320.54204285 6018.37410980393 419621 43418 67368 CND_20201031 17298990.48269345 1273.558514640735 0.008962995206606773 6.60125036987774e-07 22116.233343042055 1.6288616714694166 34109 5912 345504 BLZ_20220105 73380026.1565598 1586.2517982974493 0.22217132659701533 4.8329162621991966e-06 11154251.37588198 242.63960472693142 77146 None 180203 LIT_20210506 153347998.63926536 2678.675957584441 8.541218949405078 0.0001489890461511828 34967280.579318605 609.9529599784269 48451 None 92801 DCR_20210506 2550199373.524272 44532.659312135 197.33598112718573 0.0034461085412666407 33267805.01337412 580.960787540777 44528 11025 215733 JUV_20210703 16035126.728289003 474.40880975986005 7.288766390984481 0.0002152747714535398 8512919.026808308 251.43029692451438 2539703 None 41859 DGB_20210718 553161663.485395 17501.652711191215 0.03808292695655623 1.2072363591777614e-06 14843957.06354981 470.55639136229286 222506 40311 89900 TNT_20190224 7253441.940088781 1762.5047432304696 0.01692825907784191 4.113376403336239e-06 2352404.749667395 571.6078743763849 16985 2511 1224257 FUN_20190914 17966358.941105843 1735.051828540963 0.0029912448976872914 2.888712702645533e-07 406479.2847836347 39.25462185408496 35824 17376 352374 ETH_20191102 19841838289.17925 2148029.828762008 183.064191451962 0.019818090344555422 8966993687.026836 970745.2320362098 447987 447242 23518 BTS_20210610 143459402.9850672 3830.3180972215027 0.05293322085685754 1.4132992998259486e-06 20523413.6303095 547.9682823796472 6046 7170 112571 QI_20211221 167158437.7678354 3543.092831191352 0.14509117910494615 3.077671869685065e-06 12140983.525084155 257.5343566436529 None None 875386 HIVE_20210703 118455163.29933406 3502.703067378822 0.319497975127485 9.43547975925203e-06 13549505.71156863 400.14678289702107 21971 169 116444 FUN_20210809 199299909.0760683 4530.339603195932 0.018867474409628594 4.289197750198512e-07 5036208.076511101 114.48958075851029 5918 361 131817 NEO_20190131 458759989.5214517 132651.95875153074 7.057845992637719 0.0020407993654081654 105666217.36902848 30553.73403964039 315765 97901 143904 OM_20210828 82884226.96986979 1689.9727490851444 0.23345030220950766 4.758994081268666e-06 32048198.79784662 653.317588158008 49764 None 103723 ELF_20200105 24433892.865667682 3324.558335686379 0.053113386684554086 7.223285107916623e-06 12222854.770902947 1662.277070887033 83814 33490 1063129 TFUEL_20200730 0.0 0.0 0.008251396195916486 7.440019230737215e-07 5940307.055569799 535.6184296640042 71669 4294 67592 PHA_20220112 66237347.498871185 1545.1188812103874 0.36361065606212345 8.498389606633075e-06 16371158.879294751 382.6303881604806 118149 None 129189 UNI_20210814 15856553007.358017 332681.813096709 30.52004018660741 0.0006396913227871154 554988172.7884215 11632.393542457305 594357 50404 1884 CHR_20210724 186258132.33556482 5571.312528415008 0.3316200233083925 9.91764803623126e-06 308886338.30742806 9237.759396948333 74635 None 109219 YOYO_20210814 4566441.065306027 95.80719670286007 0.02610979172232899 5.478020882427043e-07 4979177.254757043 104.46669689646924 10294 None 1435059 CKB_20210527 451671247.1506389 11528.262186522523 0.017289788133404985 4.410027621585267e-07 35791466.02252575 912.9166451230798 44205 3962 110155 OXT_20210821 232314688.32471102 4728.370744025963 0.3940336453587125 8.014960524254926e-06 29652379.618957035 603.153194899901 69225 4381 281740 ICX_20210427 1187425549.0989208 22027.660186996127 1.9822768372993194 3.6772764912897466e-05 182158289.1813079 3379.1768228124515 135924 31393 432969 UTK_20210112 77738100.44520596 2195.8227558535027 0.1733053343156181 4.8754231118996375e-06 6853905.737827027 192.81397524745455 56055 3130 130913 TRX_20190706 2105640582.3366225 191582.10078974118 0.03182968590396933 2.8966518418570604e-06 1162948979.0293076 105833.85309721017 440228 71198 89082 IRIS_20210427 146847005.85165733 2725.0596544776695 0.1491269068660925 2.7674553239199125e-06 15060245.434316099 279.48381202705167 22566 None 536237 VET_20190530 425986973.29353637 49258.9668997817 0.007694306162470179 8.897970433547024e-07 20213024.221967198 2337.506307935807 108940 55758 262413 BAR_20211207 28614125.379919827 566.8293459045268 9.769088322871363 0.00019341981032232946 7722956.395957953 152.90810276907737 None None 33797 PIVX_20200318 13001292.16815205 2394.7272339094898 0.2060083702275413 3.830117168670523e-05 243920.9550266838 45.34989702672347 63890 8512 174953 NULS_20200607 31595277.16390927 3266.743327789875 0.3294686996281371 3.4064891111487075e-05 39021939.56901209 4034.6112510164035 24961 5185 769732 DIA_20211221 73229777.60652414 1552.0953525962088 1.2181132202588425 2.5838598977615766e-05 4021597.3058716785 85.30606047752887 None 451 272189 POLY_20210310 365715402.4994122 6691.449786978921 0.4521034998428687 8.257970282130551e-06 33049105.643355574 603.6638343845556 39502 5303 222730 ETC_20190621 949731189.36253 99286.47641130612 8.521541848210155 0.0008916148833536838 818556235.25881 85646.1113750216 227837 24664 633324 THETA_20200323 64316346.06110295 11030.79136513626 0.06425817768782652 1.1020303668910355e-05 3252264.362559509 557.7646639949905 None 4027 384607 LINK_20190419 190286121.9571779 36087.62153550645 0.521843547673393 9.893619726061151e-05 5204015.860186758 986.6281608468363 11430 6605 340281 SAND_20210722 330329132.6023057 10264.740026600262 0.4772119356040027 1.4776026683621438e-05 401788437.9297826 12440.670983023183 144229 None 30642 KNC_20190321 42040178.92991511 10398.103516111216 0.26034196782748276 6.440434721965791e-05 7561974.176232357 1870.708801106108 94921 6647 212741 ADA_20200410 1124830313.068581 154337.4032830894 0.0362387493283838 4.97003430179695e-06 136962104.9231875 18783.936314860493 155155 77763 49277 SAND_20210428 369169221.6130385 6701.119150709274 0.5377872338382063 9.759216092705778e-06 46493900.590813786 843.7240497885114 107161 None 22461 OST_20190509 13535925.883417614 2272.3294970192064 0.021656544401693057 3.6360042459888437e-06 456776.6254658497 76.69006277531723 18191 750 1072673 OG_20210616 7455014.679045557 184.59793298026148 5.811227131921447 0.0001439825521475679 3317782.760650624 82.20343457677427 673115 None 238671 REP_20201115 73362262.45385908 4557.844546401747 13.790836991483678 0.0008573642387429228 5576092.952215376 346.66080761364867 136416 10441 127573 EGLD_20211028 4931736708.584863 84264.66759110871 246.97064201702634 0.0042204205827808495 205142602.06579039 3505.6314916329 355324 11664 31177 KMD_20190401 125623465.00872846 30613.89094869342 1.1163504264064954 0.0002720463401854994 2434081.0557130794 593.1675460125458 96302 8326 316064 HNT_20210204 179138882.76909882 4781.635616142068 2.6477800276898416 7.060315037544516e-05 4422280.272928475 117.92026371025554 21075 3040 66241 MFT_20190730 15423924.492232395 1625.023717353157 0.0017438722152960334 1.8333495641892846e-07 1172467.0790029152 123.26258710139376 18847 2163 894559 VET_20210203 1832208666.0497646 51441.18722620453 0.02809541880604656 7.910921938176194e-07 340763021.8236189 9594.979465063228 159906 76483 98520 KAVA_20211120 731240833.5182487 12579.178858427178 5.1885016453703825 8.918093987922622e-05 48386982.14693413 831.6845287373679 141225 None 43706 AUDIO_20210826 1095797252.5088313 22355.93643007978 2.735416040268608 5.581257166446944e-05 55479888.39639745 1131.9942566238065 68215 6797 28500 FTT_20210104 632930177.7514629 18919.739268120524 6.9194082403046995 0.00021020325102573975 29572084.553998545 898.3641515253082 36743 None 5141 MTL_20210916 229897187.1916253 4770.398515941544 3.5593073999041382 7.384747799020773e-05 60691470.56866662 1259.2090351998422 59832 4281 224443 GO_20190726 9309855.368502462 940.02318393175 0.012359585144868386 1.2498760950170695e-06 301173.84339877253 30.456522844120812 10090 681 877679 ARDR_20200305 52633303.9339932 6012.249443031284 0.05271121563904606 6.018067887237589e-06 2733648.74941909 312.1021504516367 64712 6391 1029538 NXS_20210814 44995910.7747882 944.5719738220098 0.663400131707756 1.3904166261839267e-05 281032.7481098394 5.890149651737124 26116 3972 456047 AST_20190706 10125383.108336328 920.3778113644667 0.05877883843081349 5.342883137424963e-06 1984316.3358707419 180.37053084538042 32007 3605 257533 PHA_20220115 66631926.52358356 1546.1667352260115 0.3671506138292859 8.515293234217812e-06 9429974.37837334 218.7086007715255 118129 None 129189 MTL_20211125 190343918.89339393 3328.4249523835597 2.9452988947297474 5.1492187469403046e-05 5116089.491345023 89.44377077313683 None 4468 170248 CVC_20210314 294581676.1493867 4796.38230521539 0.43921435054373226 7.158901683060237e-06 75814143.50472675 1235.7200962670229 94008 9299 137471 GTO_20201208 4466043.560146142 232.52095516752152 0.00673644667862053 3.5087997297486857e-07 123197.742923793 6.416976600565526 None None 1072268 ENG_20200308 20229547.808822982 2275.8937220930525 0.2447224340088473 2.7512653458581777e-05 1733858.451125166 194.92715044798655 61379 3611 363885 POND_20211028 70088122.83643289 1197.5400800728262 0.08714227898918742 1.4879808423738079e-06 23141533.089651935 395.1486959026423 24551 722 523728 FUN_20190819 13937173.425085539 1350.510120043544 0.002316272395277214 2.2454889143404312e-07 78914.03454875076 7.650248309585803 None 17436 345008 BAR_20210429 123308075.4761963 2252.700240165396 41.77288605460879 0.0007629703174254883 47483095.07294998 867.2657204674093 None None 44251 HBAR_20200207 66067858.7167518 6783.642734121114 0.020641260469276886 2.1197612820169516e-06 7599163.181698471 780.3986540584305 35126 6115 205203 VIDT_20210304 25485202.63755281 501.13081928145584 0.5469328606160291 1.0794373843718849e-05 3601986.8091574702 71.0895157303156 25081 1317 None FET_20190908 17507591.563660204 1672.2118406028146 0.05147169199732686 4.916457203932722e-06 2382966.880840116 227.61549569126126 16245 305 439975 INJ_20210115 90664124.89779134 2316.011273816039 6.736495831255293 0.0001717223398153954 39196338.73102189 999.1673961792741 39328 1995 132125 DASH_20210430 2890096378.0053716 53917.70145436722 285.94187666342293 0.005334537926337373 990706139.7179197 18482.635484698054 None 39892 49097 ETC_20220105 4546775239.69853 98172.0154269506 34.236775809009366 0.0007452802322881713 270809799.0175286 5895.099206876414 600506 62765 203643 ENJ_20210107 148897413.6254489 4062.336209764336 0.16064181442933345 4.35233085018675e-06 23337399.256334566 632.2891901295845 70075 16066 75025 BEAM_20210428 117007100.82700455 2123.9291560508914 1.3528279672006651 2.454974688398641e-05 41536502.2763311 753.7622240617088 19384 2215 172330 STORM_20200105 7378993.978600768 1004.6450975008052 0.0010584900894181483 1.4393950650083874e-07 796773.6368556359 108.34981378514584 25974 2525 3220539 CRV_20201030 46388646.28137562 3445.871158093946 0.44387615369227545 3.300989431472236e-05 50093430.30112126 3725.3157808704777 42376 None 12005 APPC_20191118 3992421.0366456327 469.56923884370394 0.036240046548186036 4.2587290324038355e-06 108581.21251386976 12.759861152263717 25145 3271 895295 DATA_20210828 0.0 0.0 0.16663419321178635 3.397717917163114e-06 68894.67763590282 1.4047817923129997 None 4393 None CMT_20190626 40390946.31666492 3416.3791065197206 0.05051832372476197 4.267565301488725e-06 13381008.836550448 1130.368642492913 291084 1642 705322 SUSD_20210428 207558842.74979505 3767.636960463244 1.0162570514088263 1.8449838007906112e-05 38761997.30933906 703.7122844351139 117133 6159 27259 COS_20190909 28439406.785909805 2735.6958851439053 0.021616130003459626 2.0793386566874e-06 1966941.3093047186 189.20764721613173 9303 None 256445 THETA_20190908 104347579.8044062 9967.480410471806 0.10434975520897413 9.96755631554809e-06 7063466.829366259 674.706934038492 None 4024 310301 AST_20210804 24254817.041024983 631.2697622410759 0.14076282181234498 3.664451627140809e-06 2788697.0044515366 72.59761593290905 44324 3700 216089 YOYO_20190421 7251988.068827793 1365.702122179052 0.024855000614175848 4.680826327337845e-06 545766.1543002079 102.78159406527334 7464 None 1423576 FTM_20191108 29817453.061187625 3234.2873943068103 0.014219722649137031 1.5424077173951343e-06 5182840.181162928 562.1806339476277 None 2196 560187 DCR_20211011 1837276602.7776306 33572.74411249223 137.02933189402373 0.0025044706553055216 13802466.831777677 252.26623142079683 48878 12061 236058 BCH_20211204 10129715691.59239 188662.6327317378 535.4283669897732 0.009963327994254577 2642280862.2273645 49167.941981332966 None 710588 261287 HOT_20200721 125331402.27548459 13679.798527383493 0.0007040140029707327 7.683784228977672e-08 10596589.49593443 1156.5381783066082 25716 7176 636916 PAXG_20210325 104700673.27295373 1980.839123825088 1734.3406014328796 0.03293584127770535 5280474.998735116 100.27839184848943 None None 49439 CDT_20200610 3210853.01645453 328.48056472719145 0.0047555992631151695 4.867907614500578e-07 150659.85444161322 15.421784134003397 18903 291 294678 EGLD_20210731 1711038971.6095495 40987.12283154338 87.74997117955942 0.00210071740362595 42670494.52912354 1021.5234178850219 296835 9784 43365 PNT_20211002 31615840.007842615 656.475648611826 0.9390563094908555 1.949572404616043e-05 5862069.0280381255 121.7022653009373 66234 346 359417 BAT_20200502 272856757.52029604 30791.150322439204 0.1867052249013849 2.114073958516929e-05 94708525.20075215 10723.900570121074 115979 37544 19988 DLT_20210314 14207579.406836778 231.26712614916397 0.1742433963068355 2.8399839558008784e-06 2034497.7120122553 33.1601712472 None 2543 3551597 BTG_20210325 549706543.9990028 10399.41314470419 31.323438965610258 0.0005940941474589074 59488870.10087677 1128.292126693871 87922 None 182424 MKR_20210725 2319551422.5273304 67890.48441199209 2574.2405804023524 0.07533405406470849 56715253.57532219 1659.747737513006 168216 29062 30327 SKY_20190810 14139147.573825542 1192.2424554129118 0.8838140579429685 7.451515346330699e-05 371732.04002333956 31.3410606683909 16352 3804 513361 VIB_20190405 5976113.622163766 1220.038372537402 0.03510698298216219 7.172333594907209e-06 1102549.843709201 225.2502098546368 33089 1127 2240138 LOOM_20200404 12201294.07815598 1814.4021572194695 0.014637076146021607 2.1754979877789922e-06 26626057.25291976 3957.411534813892 21576 None 466308 MKR_20211002 2193609241.259487 45548.40387285294 2437.0722312776484 0.05060139469536045 119335646.39139499 2477.788744534339 185316 30595 45314 ONT_20210221 978425339.4420205 17511.4129347301 1.2371959682326412 2.2005058575234625e-05 787236130.755516 14001.967040486477 None 17004 213342 CTXC_20210221 1916264.6933401146 34.16318442833357 0.19122866487111165 3.4012380251803857e-06 10516794.462106038 187.05418066705985 None 20180 487509 QSP_20210729 22041357.957427993 551.2456204095047 0.030900014517183987 7.722704797608445e-07 559133.575644643 13.974179671448143 None 8496 252569 BNB_20190419 3177194444.325933 602008.36798996 21.70863673202353 0.004113177045371747 430563010.31106454 81579.59951419535 947874 49286 1003 NEO_20190224 654744351.8760307 159166.86577076453 10.113105381124988 0.00245863227177617 321337117.8221275 78121.38588722373 316398 97926 150509 OMG_20200711 216695466.68113875 23340.235580854336 1.546313482202669 0.0001664562243507584 70177959.5672215 7554.456658788169 None 43081 490885 COTI_20210809 110328320.23335992 2507.9025917493104 0.16456391029514744 3.741069853717114e-06 23340928.002898455 530.6147742406912 125421 5523 114114 OM_20211221 61428331.67624885 1302.0358678898917 0.14679942451808198 3.1146477046905267e-06 3682703.9617739306 78.13603819803141 None None 70938 XRP_20200312 9174518395.667374 1157161.0993432484 0.20985557507598007 2.6450084420083567e-05 2049343228.0515945 258298.1241649917 946579 210689 33270 TROY_20210105 5182065.130390296 165.63371385690832 0.0027354191974101293 8.743186919157823e-08 1436316.01325334 45.90879303158836 9860 None 988367 SXP_20210304 230792815.71246013 4539.347566321528 2.6309041505095827 5.1924038565913334e-05 406576912.6394004 8024.281419681963 115632 None 107047 PAXG_20210819 325257187.92952555 7215.880202882164 1790.3402104258837 0.03979224295765797 9498732.139344258 211.11957094936085 24290 None 41531 IOTX_20210930 618169546.1011451 12911.025490984377 0.06095893502398067 1.4665371247945775e-06 27891325.175328083 671.0035832031045 None 9549 69839 AMB_20190915 2577113.0810718844 248.90744811201034 0.01782347121645652 1.7214590890753064e-06 841184.2938431856 81.24479965982937 19249 5602 670257 XVG_20201229 129951332.16267522 4792.330664954147 0.007913656754771126 2.9148045302930354e-07 4255670.567159058 156.7473575488517 288575 51324 245482 TCT_20201208 4392952.593539419 228.71553295418414 0.007591101946267979 3.953332840670458e-07 1109307.8338859472 57.771099916137395 None None 951785 GRS_20200501 11663493.7807005 1353.1199732180714 0.15561280341531236 1.8053149111986777e-05 9819764.837364443 1139.2229621392496 37493 106894 None GAS_20200807 23504487.16263857 1997.7774534212076 1.6911343666147587 0.00014363361910292515 13515009.267608644 1147.8743094802307 320304 99962 128886 ATA_20210826 272518783.15653485 5559.799112747901 1.5809773384467736 3.2263784116061394e-05 1239626706.2269707 25297.67344641654 None None 88669 ZIL_20210707 985265547.3316847 28845.8268579855 0.08077544757292023 2.364801702706328e-06 82412826.07164827 2412.7379949598776 306913 34834 36438 EGLD_20211011 4758261619.440375 86964.48173776368 239.8521622108798 0.004382168006773985 106042838.91818331 1937.4331745493485 None 11363 34852 CHZ_20191113 51249108.21314443 5830.742093601915 0.013496312726154414 1.5334990202180407e-06 7612906.0066623865 865.0054380857 13502 None 336673 APPC_20191108 4128752.7000250136 447.84417986669047 0.0375193864296238 4.069713074501776e-06 236956.5413078646 25.702582745008023 25183 3271 880644 SCRT_20210204 80346572.83609328 2144.637883017367 1.1555675136822565 3.080748479409467e-05 950404.3732072833 25.33782572558144 65517 None 226191 KNC_20190318 38283967.83823003 9614.422073549826 0.23948829504883998 6.014375416894701e-05 4634601.638529853 1163.9079962630042 94639 6649 212741 STORM_20190324 15048013.46123146 3757.072722427421 0.003330104603812714 8.314350064909393e-07 1257964.9710897903 314.07905706803336 26967 2581 4061731 QLC_20190903 3352525.934196079 324.4969365609014 0.01396885805915033 1.3520705690037558e-06 52726.36069580226 5.10347805136241 None 5748 940522 OAX_20210513 17850739.786483504 346.24690173157 0.31391675221761045 6.094633464063796e-06 1153848.437282502 22.40174584070874 None None 1257239 SUN_20210616 0.0 0.0 0.0003209741924814632 8e-09 4.8082062167134385 0.00011984031936128 59 None 3515147 GXS_20210114 24120208.06220998 648.8755046419899 0.3460779047082791 9.260272734379009e-06 9121389.8392198 244.06804502289327 None None 482061 BRD_20190430 19030640.31365168 3655.7958547552184 0.31736338283811166 6.0965670114545664e-05 800043.8728155724 153.6888420808085 164 None None YFI_20201030 327050326.0802643 24294.161960437865 10813.330729700907 0.8041587762901675 271960705.2762306 20224.997590542916 46907 1838 9593 RLC_20190405 36260456.67116543 7398.927534030886 0.5198866509609484 0.00010621250177281276 1446546.633573183 295.5285283799081 24707 3315 889327 NXS_20190805 15778257.227599401 1442.1701684669508 0.26452128027431554 2.4153771129525923e-05 198226.1671718194 18.1002808877459 21760 3539 855550 AST_20210111 20132823.012064826 522.1591596768143 0.11511118558089761 2.9928670570911467e-06 3864330.3462143894 100.47179109952563 34768 3463 211626 C98_20210813 212815195.47229162 4786.900883361958 1.150308555594243 2.5873489446168732e-05 27654053.48728009 622.01298735651 155694 None 61225 DNT_20210519 196261071.39518043 4604.437915870179 0.2591996854014961 6.058774484933817e-06 12954308.624344334 302.8060564254161 68982 10054 193568 NEO_20200418 529029854.2643678 75147.04626318792 7.500777743717111 0.0010654621616785465 376842003.94579464 53529.23521453224 321230 99284 240659 NKN_20201015 12095495.037825199 1059.6568567256595 0.01859693889822635 1.627924097350492e-06 1562490.7948099233 136.77608076681855 13755 1021 211409 CMT_20191030 15926320.29705048 1692.6992230378144 0.01990802773673953 2.115887565593862e-06 8744893.496271465 929.4346811189355 None 1652 883595 NAV_20200309 5761760.928298409 716.2296187955207 0.08464663018626088 1.0522203962484704e-05 60498.76226710098 7.520444873606254 49760 13992 1136873 DREP_20210725 0.0 0.0 0.6197888847984336 1.814071814508185e-05 3101749.105535775 90.7856814802085 4077 None 319856 RCN_20190704 13070294.911869626 1088.8575699522125 0.026125669104188516 2.1770971726270574e-06 1607933.863141444 133.99190861891887 None 1122 1949015 GRS_20200320 11231830.539494926 1819.502672680583 0.15043097149937698 2.436909582410431e-05 12123776.958020823 1963.9937141621194 37669 106861 3912987 ATOM_20210218 5694463401.7121315 109153.83931319597 23.877405833636036 0.00045794348952167145 1983910010.102852 38049.303984423925 64909 16609 73647 DOGE_20211204 26624094016.50262 495865.01972801966 0.20126150991375855 3.747167969010436e-06 1308763626.4812336 24367.089078571807 2606088 2232362 33845 MTH_20190929 5224717.300088127 637.8077976919114 0.015033258532485045 1.8351862820550483e-06 1029170.2309682975 125.63604129411816 19517 1981 708112 MDA_20190205 0.0 0.0 0.7215048994103492 0.00020826903797249385 1121649.4779875588 323.77445796103757 None 345 1419763 APPC_20200410 3176043.297045112 435.7833083670798 0.02925124933765154 4.011761970863519e-06 55422.53948183557 7.601112474047946 24752 3222 735722 QLC_20190708 7689550.203902794 672.4005615055682 0.03204502255986842 2.8017935287934274e-06 369036.1778165956 32.26595247250915 None 5780 940522 OCEAN_20210819 335922860.2170145 7456.591725596415 0.7710042716791343 1.7116524128555075e-05 43966886.31637179 976.0779520101098 None 3357 157087 NPXS_20190130 105248186.11835511 30833.815782984435 0.0006291634465361989 1.843059034388469e-07 10466921.243200094 3066.1593367698297 54736 3860 188095 CELR_20190916 17414457.41598821 1690.293424950063 0.00535574963372148 5.198432644388197e-07 5350942.269862188 519.376648952124 18348 None 536359 VET_20211104 9176484611.733253 145763.50703220462 0.1375495370819882 2.1814568152828297e-06 584893049.0536731 9276.068499664683 475794 211743 41669 POLY_20220105 487916079.6375887 10533.034108941143 0.5425034956562826 1.1790759395228511e-05 29255898.840784468 635.8470809585087 64463 8542 147396 EVX_20201208 6420157.831153803 334.33811625390604 0.2947606389641554 1.5352259337273646e-05 389769.699446882 20.300693907938665 None 2808 1437872 DOCK_20190810 3236221.088643076 272.82220134465945 0.00587161163792728 4.949854530844325e-07 1168585.4577231598 98.5134640926572 180 15209 218357 VIDT_20210108 26571214.00733225 678.3283816124089 0.5743864250464484 1.4567354888552657e-05 2688837.060353508 68.19319187861163 163 1153 None BNT_20200331 11904201.31019033 1852.8073479541317 0.17021599835215928 2.655037416621548e-05 4716493.769819933 735.6809909387396 741 5017 142251 EOS_20190511 5011667361.890014 786475.1285574936 4.809339680665054 0.0007549033355490278 2735306978.7059717 429350.49280822073 921 64578 112167 LTO_20210111 60294375.31334583 1564.0549189957953 0.21981113651580048 5.715044163085008e-06 11761252.621526795 305.7901397111121 None 947 1001701 WAN_20191019 20126930.54315627 2528.964890138585 0.189603936510057 2.3823885983898513e-05 2149726.2075746334 270.1148141148434 107477 16757 356039 SC_20210813 855073797.275598 19232.706582631334 0.01762745375595539 3.9645792292448037e-07 99260141.59023306 2232.4534279806862 139706 47819 83896 OGN_20200913 33841109.735853545 3245.377841922235 0.2626396143736566 2.5167235469152228e-05 10455414.750244714 1001.8819345839289 None 2403 133584 SC_20200526 107820712.21331948 12132.076026764962 0.002436608534512408 2.741692146281065e-07 10835853.577922083 1219.2592380780432 106565 30056 169173 GTO_20190524 21045449.586005945 2671.509262235493 0.03175056017307971 4.03677953689773e-06 15342942.222763825 1950.708109180726 17288 None 1154780 LTO_20210314 148034517.91955015 2410.2997565617566 0.5388125239969268 8.782285642808169e-06 15321603.066856338 249.73193577739758 5872 2454 775135 LEND_20200701 165922566.51435938 18137.14575106019 0.13203734344252327 1.4445368566767036e-05 11140208.770955589 1218.779607431558 47624 5750 67758 SNX_20220115 1037839775.9052585 24082.649590375782 5.246503021934335 0.00012164251951893076 38023404.57635699 881.58964438191 183865 8652 48226 SKY_20191017 12325701.541326668 1539.5274552406993 0.7703563463329167 9.62204659525437e-05 614228.543661912 76.7195038423949 None 3804 1313874 BNT_20210707 780935803.0566859 22862.57651217418 3.415961433140767 9.997200422487685e-05 66123285.37357352 1935.1733016059554 124147 7556 36831 LRC_20210513 774048597.9198557 15356.951520877841 0.6212310575262866 1.2325085607457744e-05 1230217960.385336 24407.24991753932 75335 10543 161207 XMR_20201228 2824484146.8046203 106558.64641814124 157.48370892834575 0.005988358583133669 521961741.6402239 19847.729627963028 330498 186757 70346 BNT_20190625 52046418.03255282 4712.67649101943 0.7938943472826127 7.188520109975518e-05 3423843.8015071605 310.020723850647 794 5131 142963 BQX_20190706 13875476.514822772 1261.2540750025958 0.11556764639692944 1.0514943844537918e-05 3181352.198058683 289.45592261514736 60736 5775 466152 DASH_20190507 1048845156.9427494 183328.90592787153 119.21193491528334 0.02083974960052615 614619517.8312458 107443.24266107679 319992 25324 97874 ZRX_20190804 128810851.99803597 11938.00603734097 0.2147569486074152 1.989952182092045e-05 43973000.00033554 4074.567452704989 151345 15941 188207 ICX_20190227 125960461.545411 33140.883010487254 0.266072416895773 7.000510106484012e-05 46045615.57554807 12114.852075108987 111414 23500 263363 LAZIO_20220112 0.0 0.0 4.193649682093281 9.802932968379955e-05 34546697.38678268 807.5518568172206 None None 97982 WTC_20201030 7853106.968013346 583.0026458394345 0.2686194943027023 1.9976520576849087e-05 1677522.4212244465 124.75290094900137 55086 19311 696006 TROY_20200903 11419323.887004135 1000.9655814142095 0.005926866612609592 5.202372849529639e-07 4149399.870373192 364.21817190123477 9849 None 412863 AE_20201129 51227035.612488955 2893.8993124110234 0.13555624353013768 7.657089974008825e-06 13748325.652511261 776.5940083006772 25552 6342 534975 EVX_20210729 7501546.536906 187.61070360340244 0.34561640427947476 8.634905404975691e-06 195046.37404568138 4.873052808298038 18306 2804 1518494 CTXC_20200315 833287.6883345366 161.13322712780553 0.03903751574721012 7.556186434642115e-06 2812518.149705381 544.3971288441259 None 20064 415103 POWR_20190430 45332006.48531019 8708.301910254213 0.1087155938908858 2.0879309919676895e-05 2025281.2795667995 388.9642138462355 85242 13227 593546 KMD_20210318 189469087.51163486 3219.4432461867545 1.520900272071164 2.5803214983948395e-05 10479360.727160841 177.79022247727278 102287 8822 256487 IOST_20191017 53292792.94981848 6654.648564971927 0.004437298464644443 5.540893244662027e-07 23404991.988834135 2922.6017369713145 193909 50860 92692 LTO_20210603 68463602.82521354 1819.2487909932886 0.24169803034694404 6.422767972904822e-06 7584908.054607321 201.55772250452546 10028 4209 193640 JUV_20210429 35286592.35641192 644.6464659263336 16.001697274949606 0.0002922322021756227 7450269.430171568 136.06110682953258 2424959 None 44251 POA_20190601 8354374.86229319 974.1613201074836 0.03795579283693176 4.424634132187243e-06 613085.4553980598 71.46942875244918 17515 None 614936 INJ_20210218 191610114.16904375 3672.8622413312064 14.192982074013283 0.00027220644415802605 35727221.022558264 685.210461302902 47827 2463 114661 EVX_20190801 10159938.933727792 1009.5719774569533 0.48005608339728906 4.76758256308305e-05 1643476.2118470415 163.21860718842808 18235 2915 1025264 SYS_20190702 25672748.77780791 2419.8424339810854 0.046064993466322236 4.341959128553665e-06 644391.082320488 60.73852467352583 61463 4605 806939 ONE_20200701 30391196.55530598 3321.607415491484 0.004446576643262158 4.864594871971509e-07 3813043.902357124 417.15043509068107 75523 1295 139358 IOST_20200323 36286949.33311739 6219.627095048611 0.0030105480041699418 5.163102099932418e-07 44105790.376541786 7564.161029715548 191161 52254 127057 DOGE_20190819 327184400.74612033 31711.16860406231 0.002707744542469117 2.6244283334098695e-07 52201957.87981629 5059.572465958391 137998 139182 107008 RLC_20201014 72893648.76738359 6380.521656088537 1.03805384507654 9.08819478576224e-05 5365586.259750205 469.7588020091944 33508 3845 259935 CHZ_20210324 2716458789.4496818 49850.27648158648 0.5133608860081832 9.417401353305149e-06 1182220701.100955 21687.36873785905 229466 None 48350 XRP_20190324 12977887328.842228 3242424.6271471055 0.31129015823656286 7.779734928009717e-05 1037795018.082312 259364.7738825662 915745 198456 34701 BCD_20190528 206420559.07208106 23409.73208952463 1.0935631852498608 0.00012426210017407627 7414277.957461686 842.4878989118903 21186 None 3558878 BRD_20210128 5441090.968723405 179.86558425376708 0.07233077994088354 2.3792298108521795e-06 275010.2538941446 9.046115566426215 None None None TNB_20190513 11283253.336633943 1622.5366853077714 0.004324932631684316 6.215290393370612e-07 588598.8255780685 84.58658059466438 15752 1503 655962 BQX_20200224 6881521.877059166 691.6791339883559 0.04895582163423646 4.91984531714524e-06 1460927.5411228016 146.81680915462437 10336 8 328951 DOGE_20201229 585343439.1637602 21587.811853036997 0.004603794477978668 1.696141031851134e-07 132681365.80032332 4888.2787833480015 159140 171737 134102 KMD_20210201 88639322.37558147 2681.6559717593277 0.7178092878206999 2.1709941589624773e-05 8934231.798930578 270.21334746423673 96941 8446 251504 TKO_20210430 220039273.94448742 4104.793604674574 2.957484628633865 5.517489813700061e-05 110254183.84590702 2056.9044734768636 228582 None 41477 VIB_20200607 3059143.4890821762 316.0698807679849 0.01674111550170701 1.7309209563583521e-06 687500.9894296953 71.08306910609522 30939 1102 None DODO_20210703 110460706.5443693 3266.3080684805354 0.8282222193482157 2.4451564601873887e-05 39919944.5568685 1178.5545961368405 93824 1015 25829 OCEAN_20210310 615286749.608275 11257.096609276205 1.470898934326775 2.6864075328566097e-05 208024066.20343184 3799.291748893265 53781 2124 81239 GXS_20190730 86853312.2789886 9150.6342925314 1.4513991238611406 0.0001525869801614921 3537914.3183554863 371.9443211952879 None None 762110 DODO_20210626 110941134.96881263 3486.132844123588 0.8420457942962702 2.6487470438446637e-05 50303845.3909845 1582.3624163427446 93416 1010 25674 TFUEL_20210325 0.0 0.0 0.39329886228818356 7.475933766834327e-06 358582941.1998471 6816.043918180554 None 9906 29341 KLAY_20210704 2515354651.8376775 72557.8346509112 1.0134699329884107 2.9227224676355476e-05 10748566.451554978 309.97541851291084 39615 630 50267 TRX_20190806 1511863306.0154579 127998.65697211018 0.02285685826757925 1.935184543172745e-06 683021238.6764102 57828.251296466515 451703 71279 73072 MTL_20200318 10623780.108843006 1956.5847256906945 0.1637939218388893 3.0452641874021154e-05 1701804.7979073813 316.40033688881266 34725 None 635134 SYS_20191015 14684270.464474883 1759.3587386214133 0.02590510607361941 3.103754786851564e-06 1261562.516810669 151.15092327111032 60069 4584 816882 CHZ_20200320 30123367.49100915 4871.013232485338 0.006269163307675863 1.0155743851082195e-06 3726359.2560772253 603.6523255901466 19739 None 252561 VIBE_20190324 8628035.447668744 2155.621378299509 0.04312475577716436 1.076712876909296e-05 420905.28158883774 105.08909058815179 20601 None 1285691 PIVX_20210107 22563636.303710982 616.5379322090992 0.3471169539978338 9.405404818386123e-06 548158.7082003828 14.852788076091398 64845 8723 359500 ICX_20201124 246909067.72519043 13482.015208575807 0.43355650971868204 2.361519307976856e-05 34665190.457874745 1888.1625519608433 116169 28017 259128 FUEL_20190702 6106810.92030319 575.4983578360461 0.007641527535402936 7.198825167151574e-07 726121.1068626558 68.40541860597004 1 1516 None VIA_20200404 2750777.041613291 408.8026804173243 0.11874213148062189 1.7646687060931457e-05 20786.09122096373 3.089094346063532 39302 2173 2861314 DOCK_20190405 7547203.242563384 1539.216379153771 0.014621003145538969 2.98706135201865e-06 621081.2130306686 126.88648442530543 152 15342 183380 MANA_20190221 48200465.319296844 12150.756042157986 0.03822818975470173 9.632105981050748e-06 1665752.4596245717 419.7087105681345 42336 6016 109319 TWT_20210731 129862415.12475586 3110.7922427460976 0.3742399109185801 8.959231364183268e-06 9602612.896498583 229.8847026477035 968098 42023 3487 MTL_20210828 183797175.0706692 3747.2997650062257 2.850089386927003 5.811163530820468e-05 39234442.15413733 799.9670482055924 57633 4232 207199 ETC_20190515 721966298.2053987 90391.9249411646 6.538993918945287 0.0008181759031780084 836806721.0049998 104703.43040999884 227673 24485 756071 STRAX_20210718 152083378.77279824 4811.812990898531 1.5233350140272883 4.82900229344296e-05 7542240.9427341735 239.09053802862485 157649 10762 180987 LEND_20191213 13445909.030782241 1866.4212903227908 0.01193047537782399 1.6574060774109454e-06 1530047.041902526 212.5572691501931 41532 5781 435324 BCH_20201014 4700238251.240311 411420.9188034721 253.3334432582869 0.022179424400758287 2682807840.9471793 234880.68896368693 None 326818 132900 LEND_20200208 40005406.83659594 4084.6306468925723 0.035551298940361596 3.626341711920898e-06 1103385.1135898393 112.54867138428995 None 5757 274911 LRC_20190806 39383850.208181225 3334.6343211889016 0.04093146664081742 3.4654780917574354e-06 5713052.48089715 483.6977473430245 34698 2451 581854 WIN_20190908 54793111.51050413 5233.483401652978 0.0002612255065340931 2.495276003501714e-08 11279460.889144635 1077.4356785655386 None 1411 68914 SKY_20190426 16940291.08963461 3261.0461479371165 1.1307288722846873 0.0002173172306271913 1442522.9202176512 277.2416039085819 15586 3698 401033 CND_20201111 18897812.939582992 1235.5079981663082 0.009780864549095087 6.404033043797937e-07 74022.26969937365 4.8466171753249485 34037 5906 337093 VET_20210120 1905931524.3839283 52631.37767366503 0.029218975783599856 8.106949743710034e-07 390663366.6350922 10839.148858177623 153184 71890 117810 XMR_20200325 827804577.9270217 122506.07007113151 47.31372763881426 0.00700191686298937 179334225.94455013 26539.51407798568 320048 167397 83083 WAN_20190909 29949607.160305083 2882.604723212612 0.28213757693194336 2.7155318181859488e-05 31436922.795084894 3025.7566200230203 108098 16860 451102 CMT_20190329 27400359.378507793 6806.96849481075 0.034263974477555414 8.510488267587359e-06 1800833.64263916 447.29118035026676 292322 1641 1091095 WAN_20201229 45491286.59623268 1676.3912447287105 0.3607067092231643 1.328924331665701e-05 3660071.155773488 134.8452216209244 104041 15902 718858 KMD_20190903 78843592.89858072 7628.2066504872355 0.6813392577745406 6.592034262161774e-05 2253286.632557012 218.0080263216265 98429 8430 213183 LSK_20210125 193919078.906036 6022.768819523005 1.3583336480777792 4.2086454529166214e-05 13743585.303267572 425.82967649533407 178165 31045 255671 ATOM_20210710 3645137371.068172 107286.84910583404 13.315208567327966 0.00039180622436825994 615158698.97825 18101.331722686376 164618 32034 47818 MDA_20200320 6327088.113982407 1022.3283189873167 0.3210402107562465 5.20069742376291e-05 567327.730660576 91.9043711167981 None 372 1815630 XMR_20211011 4881006474.250772 89191.1327470774 270.90335053425343 0.004951622014644764 162702225.93809268 2973.901659754111 444645 237455 46981 BTS_20200306 72365915.79215632 7988.475682036514 0.026701358875260976 2.947563831914802e-06 15448705.183177838 1705.3830428847289 13350 7043 137133 REQ_20190916 7844711.157750724 761.3326204636596 0.010666771928941565 1.0350888269722007e-06 490467.873697063 47.59432557803061 41032 29361 689575 MITH_20210624 24453172.80829918 725.3417096157689 0.039649335859453676 1.1769281765907215e-06 8655456.041233497 256.9235997364433 32343 2736 253945 GO_20190812 8399371.800133463 727.3254548785511 0.010950300283105115 9.479013911225376e-07 181387.40876164683 15.701612983395014 10152 686 898219 DREP_20211202 0.0 0.0 1.0578056989844944 1.8498219224637234e-05 5763144.412541575 100.78212744437099 None None 527281 FXS_20210620 28426688.514019288 797.4089357658862 1.90610351742412 5.351474794379222e-05 1855356.226000209 52.08999399703346 11423 None 151064 SYS_20200310 13836498.268713953 1745.891118314186 0.02382504349891093 3.0062470308872385e-06 341668.3245928372 43.11175282439194 58863 4509 856942 KMD_20201111 59605838.47260358 3896.9323486786952 0.4882426060371681 3.196424633419651e-05 1580027.0882414205 103.44114675524098 96512 8397 291140 EVX_20210804 8436464.849279081 219.56727681266645 0.3870768112042806 1.0101102925113192e-05 4709057.6398139065 122.88691681648545 18297 2803 2085195 REP_20190430 226209289.590141 43462.40338459916 20.57437600032992 0.0039513997720143496 7959155.52783362 1528.5909685719853 125135 9916 258583 ENJ_20190321 162413896.65908748 40187.0870570347 0.18732653463634677 4.635137700886064e-05 21918286.344028063 5423.378784497539 42678 12028 17926 NEAR_20210125 674316291.4765018 20918.56912718827 2.5602199424934438 7.933258239358864e-05 75862075.02917622 2350.7098815656295 None None None PIVX_20190520 39719318.7675274 4853.654239070795 0.6623032717684465 8.095660574467553e-05 3346882.743961963 409.10603695661104 63049 8606 309234 BTS_20190812 116966722.1705785 10135.308419897612 0.04316164700365568 3.7397301422056247e-06 18964143.128440574 1643.143452624134 13648 7153 153233 WAXP_20211230 841599974.8326156 18145.990390241237 0.4509622627002898 9.690620947176182e-06 60940610.05340963 1309.5382943600066 235558 6546 3362 AST_20200629 9170377.558677865 1005.8120118770487 0.05376327153468617 5.890727453416236e-06 1461571.957318355 160.1413345645056 32030 3454 357121 CDT_20210804 11380112.134323888 296.14985412061236 0.016828239973255492 4.3980613273252046e-07 666199.1183977462 17.411117167212918 21076 337 695021 AKRO_20210809 70582465.5603568 1604.4263813202094 0.02602139064704293 5.916626584143405e-07 10383056.563903933 236.08526278990357 44003 None 238743 ATOM_20190530 1124961749.2339528 130084.85480341475 4.6989172283687415 0.000543399569562837 94482360.25260422 10926.277565091226 24890 4800 130056 HC_20200520 47239309.19147559 4842.870686506148 1.0582219921391494 0.00010840031044811598 20245989.37561082 2073.923571753634 12631 842 1020221 AST_20210220 52519208.31155115 938.7237577773246 0.304879136604454 5.449383149179967e-06 5306914.864064371 94.85533433494575 37464 3507 155263 CFX_20211104 375851880.98023766 5960.795395570801 0.3295242121353578 5.225117562777153e-06 16221354.687778765 257.2147421942224 46261 2081 167170 AAVE_20211230 3173470299.8930964 68424.31950448292 236.98990214404725 0.00509261971552739 450806192.127334 9687.267183705006 None 14706 14216 RLC_20200411 22477600.60667385 3278.217766970599 0.31968389233925903 4.660277880799111e-05 527202.8518176116 76.85441299658824 29850 3565 395542 AST_20210203 24254250.75219201 680.9636244461103 0.1393585847226133 3.9199798322554e-06 2046863.4122269396 57.575665763840796 35672 3439 162456 OCEAN_20210617 238946651.97004047 6247.150084011233 0.5524019362294971 1.4433328588315701e-05 36908279.67092915 964.3509430036776 115432 3193 84543 GAS_20210125 26956976.789018225 837.1911912267067 1.9349329269779811 5.995174069602544e-05 20949131.277239174 649.0854895428276 None 101609 169176 AION_20191127 24491858.057130337 3416.949472518335 0.06695525191396175 9.355433365592045e-06 1193494.724448789 166.76302526819381 833 72556 271736 QTUM_20190811 254782740.97603452 22486.309920824624 2.654234417090869 0.00023444234133580033 254128329.57509744 22446.563197926484 178761 15355 320250 BCD_20190605 217042157.45287234 28328.995748901147 1.1521185364738324 0.00015028081150900182 11902281.073559716 1552.517733129462 21269 None 3286107 VIB_20191026 4236875.179995437 490.9143935709871 0.023235172820817076 2.688245145337521e-06 496498.86923897156 57.44354411263201 32077 1123 None NU_20210916 191092485.26004615 3965.1955694972207 0.3418734554299612 7.094365872448292e-06 39519489.931468405 820.0862518377394 None 7381 344589 ADX_20211125 96505441.97132619 1686.9386535272574 0.7119188983682986 1.2446363743722855e-05 6458533.026155318 112.91349545379019 None 4047 9243 VET_20190318 288276581.18461144 72390.59083015498 0.005198081564240002 1.3053809495439144e-06 9596860.270849176 2410.0350135296476 105306 54842 762391 WTC_20210805 16729351.02948477 419.6052084638248 0.5716537846891125 1.4372790831843852e-05 2890439.1139524207 72.6727923608715 65293 19900 1106983 NCASH_20191102 2723134.921423328 294.3848620879699 0.0009381674198372487 1.0146429089814671e-07 317410.64107546076 34.32846306455067 59087 58698 834615 OMG_20191017 108381066.97320677 13533.638240158905 0.7726247743496613 9.650380132297322e-05 43189699.18868591 5394.559284242747 None 41708 None CMT_20190908 18509212.265613392 1767.924476340777 0.02312120821989897 2.208582033529361e-06 2148371.3940907926 205.21654479344005 289925 1650 567314 OST_20210210 12253175.87422563 263.5205741970815 0.018177249931989686 3.9028305791354393e-07 7324341.784841024 157.26067032620702 None 740 716707 LTO_20210221 102388062.33209883 1833.6139569826153 0.3760458058912828 6.689134677195701e-06 15057410.462434268 267.84249390660005 2819 1869 791991 LOOM_20210421 120888794.4627179 2139.679646917894 0.1482055564547899 2.6295929289765396e-06 11171072.510955108 198.20696326492123 31695 None 252037 DOT_20210909 28490126294.132744 614958.6718657826 27.531978243944284 0.0005960416858868047 2523472271.321018 54630.82432943636 None 29581 29086 MANA_20190618 77763698.76250243 8342.3129336834 0.05835496613649356 6.2630516710437526e-06 20886461.57644469 2241.677045490328 44781 6270 136694 VIB_20190608 8438715.117436314 1048.878288629565 0.04692681834722959 5.837196190476522e-06 1052820.6422275603 130.95966993953627 32768 1122 1919556 AST_20191102 4291404.94202262 463.92290080164156 0.0248475375743218 2.687214088369507e-06 3517767.442462754 380.43988072131907 31950 3536 322310 MTH_20210916 11050917.162632003 229.07448129108417 0.031797183500075835 6.591238726707163e-07 390323.71130210155 8.0910208977482 21890 2057 1085974 WAN_20201208 43668929.262440205 2273.58757398982 0.34781057041023844 1.812599350269785e-05 1439297.8569110134 75.00836898672932 103940 15916 599630 KLAY_20210725 2505485715.2625136 73333.53548585766 1.0068617231244221 2.946537944549273e-05 54553759.25274175 1596.492526870501 41794 675 62906 CHZ_20200321 28859015.86554526 4666.922249197373 0.005986773046129929 9.655319248822973e-07 2282534.6821858613 368.12153865197445 19727 None 252561 GXS_20190903 51954875.46054369 5028.80462590436 0.7993237049035278 7.73547838894496e-05 4425157.179007129 428.2458723030824 None None 606832 QI_20220115 132799938.38694789 3080.5909184633815 0.11021404379248365 2.555430214531382e-06 5226576.965213588 121.18376420910711 None None 875386 AXS_20201208 31178503.780407775 1623.73004328643 0.5633083380290629 2.9356564014391873e-05 15255326.91545458 795.0245911874147 27741 None 26328 HARD_20201208 35441534.35266332 1845.7423266330602 1.012615267218952 5.273549504665886e-05 26565826.114827324 1383.5086600427042 12446 None None BAT_20190316 241846911.05260175 61628.66658220617 0.1945097083265801 4.956595852015542e-05 18088194.846551433 4609.326306547862 94459 23806 94352 ZEN_20200914 62518920.978470296 6056.620859770131 6.28808780130907 0.0006088853064631716 2627365.048167392 254.4118376036329 71110 6105 78884 VET_20200530 352220726.83978474 37351.70709991231 0.005482424053025697 5.817058112536675e-07 182393452.78225887 19352.631316343763 120726 62240 302162 DASH_20210117 1243576512.9342976 34362.93038960649 125.3163290294799 0.003462783549168361 876933998.1762701 24231.739359975 330112 36006 74042 FTM_20190805 45117462.80469659 4119.970461320426 0.021767267580776982 1.9874970987219383e-06 6876576.813640249 627.8774501912333 18075 2051 402967 PERL_20200707 6746558.328211427 722.4014004170616 0.01913388584483679 2.048799588959415e-06 1167253.0451933288 124.98598447784961 11894 482 938177 CHZ_20210401 2675264219.378497 45484.4635884855 0.5004630750208979 8.51683473935686e-06 814126339.583801 13854.72742600085 245039 None 38872 KEY_20210828 27454952.208966963 559.715260533457 0.00993364974293604 2.025021166586577e-07 8246127.526759291 168.1011835144921 32512 3905 190735 BQX_20200704 10993114.141582863 1212.327039469512 0.049391005969512215 5.4485550199444276e-06 280661.28297701717 30.96107099362189 12493 33 385504 IOST_20210523 738281768.5354465 19643.480512534104 0.032717412717687196 8.711906755431201e-07 338583866.59616286 9015.722300940073 246571 53419 129229 LEND_20200901 936183629.6242298 80117.24743031042 0.7438376335001659 6.372391217057756e-05 245070437.1501423 20994.967596725168 63108 5888 20694 XVG_20190801 89575167.05293421 8911.139547947934 0.005664509598651055 5.63193690189498e-07 811048.5443293494 80.63847622615802 303973 52935 396565 ADX_20190621 14553544.439482724 1521.4517148388863 0.1580806205832311 1.652970188910331e-05 1073179.2334246053 112.21699874808623 54218 3887 880682 BLZ_20190908 6625190.343399576 632.456906854763 0.03165311427441993 3.0216838624514943e-06 183684.80119939818 17.53500128770517 36582 None 878308 CND_20200502 7868410.692985504 887.9289582131136 0.004064798600514245 4.6025947439350326e-07 54175.20545966901 6.134289552961561 34543 5928 366061 POWR_20210325 166225365.60375786 3144.67104478588 0.38536123216831625 7.3089309555091364e-06 15609377.809304299 296.0543384831996 86466 13171 307065 BRD_20200407 7636798.600129387 1049.9973560918334 0.1227794626060097 1.6833923267408848e-05 300555.45240183023 41.208255158840494 None None None OST_20190515 13196435.811260626 1652.2256486313192 0.0211452779680333 2.6457521009954077e-06 645742.0582143217 80.79692354030301 18146 750 1072673 COTI_20200511 9186860.806447258 1049.1412020938833 0.01837181951214521 2.0955869165078427e-06 1661608.7191079042 189.53188005227108 None 949 249645 CTXC_20210916 37545963.895167984 838.6200780442778 0.22787024820091326 4.727785843699067e-06 15267119.19729522 316.7577627395998 20658 20627 786533 SNT_20200331 66220584.87111191 10306.780189443436 0.01784795901021859 2.7839333224377213e-06 53390870.25273409 8327.933895715221 110264 5630 184469 CELO_20210823 429556442.46479696 8707.098691885787 3.218302894383449 6.532060358927885e-05 40584328.12852535 823.7238372581743 None None 103784 QLC_20190510 7069921.92869244 1143.691605310442 0.029424013632385893 4.765382537291519e-06 1654679.8422087107 267.984596642205 24997 5809 940522 BAND_20200913 184810558.09974527 17716.108779519433 9.038742531424855 0.0008656226558619557 96413231.38249232 9233.306194903877 34432 2354 119492 ARK_20190613 87254316.27315104 10725.41155596923 0.6138470305072936 7.545485788908998e-05 1173531.9735533022 144.25204308570096 63482 21794 216267 IOST_20191108 78223806.75952135 8484.720207985627 0.006511411100291779 7.062901984823093e-07 88106664.03965762 9556.895160466127 195157 52276 92684 TRU_20210203 39296864.36710783 1103.4437677636524 0.2611332049774594 7.3528158248983e-06 5457414.861316761 153.6662729612987 18123 None 115581 ADA_20200418 1072544970.1671038 151503.84550323157 0.034226800145962986 4.862007618376949e-06 117736903.4795713 16724.83899285296 155095 77919 53187 CDT_20200625 4695352.538273906 504.25718473237066 0.00687942338924682 7.398602874302443e-07 407906.97999527596 43.869109137233835 18929 291 271628 SOL_20210210 2066515667.7340856 44368.07787919358 7.84013833144138 0.00016833531881382878 155211915.61724132 3332.5492733149185 112410 3702 80032 CVC_20191020 27230352.38940199 3425.5585640148893 0.040576499928536514 5.1042276172165295e-06 3116999.485892137 392.0957915729771 87786 8141 107901 SKY_20211104 8254213.392936329 130.90709313028754 0.39284669636339253 6.233824578318504e-06 2803634.9753574543 44.48903040245937 None 4493 430974 FTT_20211125 6983337642.445648 122145.00179668915 50.019828352657825 0.0008744886243400269 152783073.64186394 2671.0819347386937 323885 None 930 ICX_20190915 105364163.68398187 10178.59618893347 0.21288096224667694 2.0571959305328347e-05 27770702.45800727 2683.648903204943 113589 26254 190786 SC_20190930 65009542.35438559 8065.048494672181 0.0015428000393904635 1.9147291479915215e-07 8658964.948361102 1074.641700463933 108619 30530 208870 XVG_20190613 144619346.61147243 17803.84127578363 0.009224125286449211 1.1343849778409764e-06 2194619.872729123 269.8948397147728 304016 53040 390528 RDN_20200526 8240188.984317794 927.1929036683263 0.12321482172228865 1.3846719911261083e-05 1367571.127233158 153.68584795914762 24975 4312 1987298 AION_20200412 26488013.534055702 3848.669732120763 0.06454443729052603 9.378033018712602e-06 2011620.99292144 292.2799994031669 545 72558 269211 ADX_20200417 5460169.0010268185 769.0335183168261 0.059224091620981904 8.354523636363702e-06 43002.55589829688 6.066211567677164 51967 3760 31500 POWR_20200105 16001459.206916533 2177.452071367015 0.03718978032999807 5.0577152614989745e-06 806188.7454496626 109.63961296164187 82859 12863 288049 HIVE_20210711 115908682.83152801 3437.66810294983 0.3115342581287774 9.241824867786866e-06 3755774.0057221125 111.41697806320269 21995 170 116444 DENT_20190807 37440022.46777337 3263.112259465402 0.0005210823301322725 4.5403135907158846e-08 850845.1458468542 74.13615000728376 46591 9999 266120 ONT_20210202 471952744.0681546 14137.226180733944 0.5873418047745488 1.7584415574865305e-05 196695051.97027725 5888.849571490543 96810 16679 259663 XRP_20190207 11901512124.32993 3493412.0685982076 0.2890269028840952 8.484610836956261e-05 475307629.7990475 139530.27301054448 911697 197616 28357 BTCST_20210806 137446805.6819426 3354.698443958631 18.860112097408592 0.0004603296801407745 7996164.552897998 195.16701979169528 None None 1348993 NAS_20200701 16720034.39395946 1827.682075661104 0.36762723178516477 4.019467485466131e-05 6822759.72116893 745.9692451840054 23437 4924 720251 AST_20190608 8375754.317011216 1041.854592183566 0.04858571190059052 6.0517839335319234e-06 1281187.0993383492 159.58328488606446 31720 3595 396492 SNGLS_20191026 5529557.445060686 639.7660937289 0.009581452281444044 1.1085676130962121e-06 238771.18421251405 27.625666129052618 20 2163 None ARDR_20210805 244317534.01255512 6127.971918885444 0.24559984774762356 6.174987963963216e-06 28331970.914917983 712.3358625806285 72565 7003 None TLM_20211230 261989652.06820503 5648.8846670555595 0.2140611673677111 4.596390530479494e-06 52773912.463847004 1133.1784951377838 110036 None 9460 GAS_20210304 159790034.90061894 3142.8296578878158 11.494158819432213 0.00022685096517382884 85474972.59135377 1686.9507664861897 349827 105561 102810 ETC_20210408 2267613826.138445 40258.12684260214 19.304957844422805 0.0003430317677526272 4543514957.450339 80734.18135512598 320454 32715 124907 GRT_20220112 2988679348.775546 69716.93562691893 0.568884708857885 1.3296980799617019e-05 106821333.32616168 2496.8173623072307 199701 20670 24735 NEBL_20200704 9771765.32648506 1077.5649512536565 0.5925386615819634 6.5341202193314e-05 233315.2179385681 25.72844240981617 38911 5958 736542 MATIC_20200526 73018187.12729013 8205.87524232323 0.021183088359893396 2.3835386836941994e-06 40954089.458595216 4608.18813676165 38119 1770 157570 LSK_20210408 875369232.167873 15540.884949858268 6.260539689633293 0.00011141132861808844 116253574.93443088 2068.8256735268938 191349 31897 138778 RLC_20210117 80044743.14965324 2205.716050885666 1.139469870431741 3.1480662748735344e-05 5401952.994745676 149.24226153314223 33902 3906 538469 XRP_20210422 60129127303.288475 1111689.962059618 1.3067888710923214 2.4160405042916744e-05 11764093109.903234 217498.9860912034 1479215 293951 11104 CHR_20210421 131254137.84573622 2323.2662736964207 0.2943854079305511 5.221087123657247e-06 108485815.13169993 1924.0555993087896 54688 None 107103 BCD_20191015 93722223.52387568 11228.249331553236 0.4983063459198997 5.970331493999976e-05 2617910.111422691 313.6582809884643 21312 None 1712744 ATM_20210711 17724366.720263213 525.6100496671955 9.49433923119247 0.0002816544829999668 18594836.790043835 551.6254491267806 5003205 None 121547 WNXM_20210221 103251127.07303588 1841.853351850037 64.95397852514569 0.0011552867442513324 41335677.1174537 735.20607856161 22217 None 109999 BRD_20201015 5445607.088899363 477.073269655554 0.07667978783852726 6.7124214662928346e-06 315393.30486807594 27.6090068790959 240 None None APPC_20200318 2063304.7053634597 380.04314539527604 0.018935969905227706 3.5205843024403883e-06 38581.907198005734 7.1731660706754505 24870 3229 700856 XLM_20190103 2249996429.5570555 581000.5351514413 0.11734986337143263 3.0312337381360422e-05 91136742.43241112 23541.294425758188 259969 98614 58950 SNT_20200526 99289801.80776075 11172.214077315595 0.026028983557745564 2.927535876919174e-06 24969181.94078038 2808.3377050351523 110409 5691 159898 CVC_20201106 22748273.26422012 1463.9765221716875 0.033948917846301385 2.17891859181691e-06 17252499.000660103 1107.3045390734435 None 7955 301076 ZRX_20201208 195611790.53666538 10184.37007276441 0.40488458538078503 2.1089726754829088e-05 33491319.413979594 1744.503991020679 None 16307 104276 LOOM_20191216 15038834.738065545 2113.3123282410597 0.018022876541838716 2.534791849639504e-06 4024774.858129145 566.0565050943268 21192 None 262438 FOR_20211011 44092089.173516 805.8074068609973 0.0780194590448352 1.4254379622039596e-06 21746410.13122419 397.3131693324114 36690 None 153140 OXT_20201014 0.0 0.0 0.2632473676370351 2.3038983334100045e-05 3980033.08173241 348.32605036958984 47126 1691 93284 SNM_20200321 2867670.898740304 463.86926408487835 0.006696524649381691 1.07999890507273e-06 1796065.120414305 289.6649329388898 30103 9694 None PSG_20220112 46028322.44772574 1073.7028696028776 14.764380401396998 0.00034512713833148004 5102029.496381929 119.2633074939255 11151326 None 18624 STMX_20220115 173066943.90889627 4015.349886677636 0.018687591440598394 4.3328016720300764e-07 2281598.913906189 52.899891462728775 81703 5813 87861 ZEC_20190523 463481415.69273096 60484.347813728215 70.29361009828557 0.009178706717757015 443024944.3662517 57848.72945496393 74917 15150 175759 STORM_20190130 12345425.844274383 3614.836370740185 0.0027473954053957718 8.043416124562661e-07 727764.3247005795 213.0640275761417 26488 2566 4584760 BRD_20190509 22922099.330165133 3848.023614354142 0.38222720521705594 6.416599503118992e-05 230099.47090176688 38.62770965812816 167 None None XEM_20200310 397693105.83013266 50285.94205458209 0.04467260084913468 5.636794479341065e-06 38231866.60088319 4824.101809486135 212433 18029 213172 CDT_20200105 4926977.01511151 670.3812034937711 0.00730962883094674 9.940908756686425e-07 415476.8586401818 56.50379298016705 19329 295 203287 EVX_20200421 3142387.564101769 458.8933620609202 0.1437648001247948 2.09998010595242e-05 617328.3607980761 90.17348303554553 16699 2857 1064652 CDT_20210724 10176325.849733725 304.4435529627315 0.01515258780498053 4.530065912451852e-07 544995.0326535935 16.293345081743283 21066 337 581034 MTH_20190623 8345801.519427264 778.1975692091621 0.024435507464820434 2.2784692958790317e-06 1087095.7226963984 101.36536879420899 19534 2008 1893104 DREP_20211007 0.0 0.0 0.6169467311370872 1.1120284082737134e-05 3651442.0320294513 65.81617286953723 4123 None 368060 TCT_20210916 21774141.85802716 451.76541671404976 0.037618420861589674 7.804992585916936e-07 4306517.483285065 89.35073896863518 None None 1786499 WPR_20190130 6035337.45354158 1767.446955558919 0.01161864569539872 3.4025172776378763e-06 321779.09600781754 94.23292201628011 35178 None 601862 LIT_20210418 227661678.75541517 3776.5705109248456 12.628821572450171 0.00021009454710733575 124824939.16030432 2076.602231659913 46249 None 89808 WTC_20190810 45494076.356564015 3836.471222903683 1.5595418679181776 0.00013148636930583233 6680815.646289387 563.265540607004 56071 20000 698794 NULS_20191127 23004271.632675458 3210.543985471586 0.29369224046514186 4.10366342761848e-05 3192035.3854573607 446.01242614444027 21166 5267 497258 AION_20190626 44697863.304086685 3785.885950114152 0.14039924833249823 1.1888738063392631e-05 2832069.0085868547 239.81415157439724 67325 72577 278705 BCH_20210203 8045107472.118463 225929.22055145274 430.09416644797835 0.012106558423740671 4284293255.0348325 120596.95444111757 None 430979 337812 VITE_20200718 7320052.310053026 799.7357913127263 0.014245800964005243 1.5563227021280695e-06 639526.6107045384 69.86688817072026 None None 536085 PNT_20210523 44009364.35349435 1170.9582003654386 1.0074713201634078 2.6825789594927617e-05 8019446.258581312 213.5326075243898 39847 298 333814 WNXM_20210506 211137720.88396958 3688.1442320529586 102.27456136602655 0.0017840298245154179 39777848.97043665 693.8662749611354 26653 None 102080 WING_20210221 30701362.159968924 547.3441645704424 31.549559242885973 0.0005624658298998607 9559217.614562895 170.42181880816196 None None 342300 POLY_20191118 14715567.755315466 1731.2786259082175 0.027188064132639442 3.1963219609873387e-06 6257375.695262885 735.6385234102175 35082 5042 315653 HOT_20210710 1042998669.0091455 30698.442727490055 0.005872188321617986 1.7278782361864e-07 58790787.088245034 1729.9057171595848 80944 23513 73444 NEBL_20210617 27315929.614876892 713.719054856871 1.520949188551747 3.973983066449522e-05 678067.2676322524 17.71675122197935 40310 6098 644774 VET_20210131 1740431323.240429 50876.49921244991 0.026795025225800996 7.842951555506452e-07 294593592.69603074 8622.806870332028 None 74803 98520 AE_20190725 96994726.33212051 9873.272073047548 0.3014122988234582 3.073790683527946e-05 33109835.45729645 3376.527904104899 24883 6369 321495 DLT_20200807 4039877.4632559675 343.37171684843617 0.04930807570862775 4.186761964401645e-06 347767.9617059981 29.529071122388 None 2560 5788562 SKY_20191015 12704248.046140552 1521.9939855722134 0.7940155028837845 9.512462409826334e-05 435631.3468831375 52.1894950000036 None 3808 1832418 VIB_20191113 4699404.91091648 534.6633138473311 0.025838911067002188 2.9359089114734253e-06 400361.4637904314 45.490492471022094 31984 1120 None RENBTC_20210509 667849568.4525743 11388.809839062085 58873.72931475339 1.0026852191294535 7825281.365635575 133.27326215235536 76411 5001 67818 ONE_20210201 82093484.3803525 2484.0482202096946 0.008677385009021727 2.6244508798220473e-07 7991341.551197672 241.6958950558731 80621 1765 152986 QTUM_20190805 289568258.2458452 26443.563830081097 3.0155037911882543 0.00027538988141307205 249727335.1166505 22806.26587316517 178835 15353 320250 COS_20201111 19591160.67122821 1281.530193135882 0.006457285685303361 4.2270241814955894e-07 583328.6629305523 38.18546188190052 13698 None 292057 ENJ_20191102 59069659.0791419 6385.68756992888 0.06684787322033008 7.2265464157719415e-06 2844116.0073673655 307.46133495283027 49538 14152 30961 AKRO_20210430 135157033.31993213 2521.4052114286123 0.04983568695602119 9.297356695497227e-07 43499427.07804614 811.5262662101262 37807 None 141631 NXS_20190708 17919515.483241443 1568.673858500557 0.3004547037477382 2.627278659347735e-05 167821.99839211925 14.674929346917372 21403 3525 987625 PERL_20210809 0.0 0.0 0.07315017212220581 1.6632556610193789e-06 6026728.173044617 137.03303027770332 410 686 3927089 ETC_20210711 6335006685.667654 187872.20411541607 49.30039889889467 0.0014626793206997865 2839151732.4276366 84233.97416859408 480302 58292 107608 QKC_20191220 11420966.498578062 1599.0564985322637 0.003058697099607383 4.2819867939377043e-07 3209267.4410825307 449.27759609454586 48934 9211 280804 QSP_20200315 4139746.012028949 800.5046081274745 0.005684725886015536 1.0972041418665282e-06 73153.49009761352 14.119293337352353 55408 8329 347894 LINK_20211225 10058611936.0228 197824.80696843565 21.519089176170425 0.0004231813302496094 872615100.4201617 17160.318262941335 678331 73849 18014 NAV_20190201 8811063.114284221 2571.027093615241 0.1372326071602968 4.0058157956550856e-05 287238.21772935055 83.84475187825022 48105 11475 833323 XRP_20211230 38969006497.60233 836680.7119583952 0.8197794434093449 1.760100423403889e-05 2780329731.337543 59694.831050869034 2331512 342732 18381 KEY_20191203 5992974.70209421 819.7047903660678 0.0021979304916752754 3.0083731891870967e-07 4451694.295239749 609.3167101953564 23619 2790 327527 KMD_20190716 151135991.0248626 13797.559717824708 1.3097922294185635 0.00011977333184118983 3732937.7128952416 341.3567261943302 98110 8448 276726 OM_20210711 33016084.75258086 979.0946452210754 0.10371683217364165 3.0757309887438277e-06 4742919.887868321 140.6516702305659 45975 None 75678 ATOM_20190810 760576439.3120589 64138.67157934409 3.136463981401743 0.0002644380826553531 129114834.49247693 10885.787140553985 27807 6467 108331 BNT_20200905 85842974.10666996 8183.6202349232935 1.3129044179360478 0.00012521438629985144 70003551.79209271 6676.382268738565 711 5214 75903 ELF_20210111 67484796.19994643 1750.5896268185127 0.14748066957170675 3.834466957242018e-06 64170217.75137472 1668.4124117502408 82017 33334 479481 WAVES_20200325 93093804.82171354 13774.65092757075 0.9315482957717425 0.00013785901146166037 51538205.50806229 7627.093620479672 140816 56869 60056 RENBTC_20210916 741608616.1133535 15388.174427004464 48323.411400574325 1.0026493645575283 9092919.25322268 188.66651684918668 93777 5864 100322 WAN_20200625 24702540.60048348 2655.2394040166 0.2330035286680757 2.5067846396013758e-05 1308829.88181601 140.81137149907843 103953 16131 676910 APPC_20200129 3173571.375513101 340.63010348762 0.028340679371508165 3.038242244529184e-06 65629.09046920494 7.035719663588116 24947 3243 1366689 JST_20210725 59888027.98261386 1752.8740229839607 0.04179024182622476 1.223147507401435e-06 96103676.87785268 2812.833036814172 49617 None 151372 POE_20190513 9471703.146365 1364.9719228050799 0.004164082065782834 6.000879689975359e-07 259959.42934101334 37.46288461912912 None 10906 815050 LRC_20200913 302859490.0994812 29032.387146498175 0.2561596386936838 2.4531906512410763e-05 71364993.62862682 6834.485560973861 40365 7081 169251 YOYO_20210620 3040308.671968527 85.12732370035316 0.016966696049044876 4.757609983120403e-07 1290817.0173879433 36.19563827014097 9962 None 950118 EGLD_20210703 1463091861.150211 43263.42733543506 81.5220640680432 0.0024067719622477123 29380030.4404427 867.3852204603422 260727 9479 31347 SYS_20201129 56272753.71143273 3178.9402085427027 0.09361017859294148 5.2844405807960034e-06 5652186.582734524 319.07474803477413 61014 4483 330848 REP_20200422 105970284.99981038 15474.026010154437 9.631719305988696 0.0014070232139960987 27890369.770164896 4074.287930002006 131089 10122 257312 AUCTION_20210804 111455256.54455215 2900.798351947671 24.337041174079506 0.0006336273643401606 10987764.905118044 286.07210165853655 None None 70573 OGN_20210112 29612101.49232961 835.9566531327516 0.146073775025615 4.109345287118096e-06 17278679.153721727 486.0835474096637 69796 2499 203625 FIS_20210513 63839051.11098795 1237.7140466736782 2.313159621990949 4.589257091922948e-05 20740115.199151557 411.4792591921599 20311 None 252595 AE_20190901 69585942.23254837 7249.432254283286 0.21267606725748056 2.2160342383693626e-05 15561354.338693606 1621.4562576142296 24903 6354 344855 QLC_20200321 1932315.1953752742 312.56781524424457 0.008059386991398692 1.3020982621033965e-06 154211.73995294125 24.914902188338452 24515 5666 940522 WRX_20200324 18081031.884930443 2806.631035268137 0.09745756983582021 1.504009533845103e-05 9614056.802992672 1483.6849631063503 21664 None 25580 NAV_20190626 15117815.483370937 1278.5193211798382 0.23097166460183216 1.9533360237352627e-05 293778.70953420835 24.844975565677036 48334 11255 919129 LSK_20210611 450922782.99843025 12235.191021223654 3.1105828134542186 8.472598944502148e-05 25691687.370350968 699.7896418478315 196108 32506 207056 WABI_20200711 6685745.765256526 720.0344316807849 0.11327616907644666 1.2200980373823757e-05 1342053.9507384063 144.55268082487288 None 7664 979343 NEBL_20190622 16700092.986761797 1650.6144154835922 1.0953609226089351 0.00010803083485112223 304095.0545342034 29.991614578673627 40236 6154 698724 ONT_20191015 417204562.1683634 49984.562827327056 0.6402615550716099 7.670459774344063e-05 87527321.56185359 10485.945843198191 81321 16281 312703 SKL_20210513 331843562.9219849 6433.7961166231535 0.4747653389828753 9.464586466400053e-06 97995989.82380316 1953.5788375682143 23655 1590 131705 XVG_20200309 53434520.02473752 6614.413996254791 0.0033179465046392883 4.1244535998190777e-07 1114101.068213214 138.4910261491339 296774 51954 314536 FLM_20210930 0.0 0.0 0.41137263523805867 9.896143337449885e-06 7136503.952161866 171.67857069054156 26178 None 82583 RVN_20190405 179811728.93648535 36671.75103780465 0.05531422192985076 1.1286838535205739e-05 39077709.453651875 7973.786515308967 22931 6255 225475 ONT_20191019 383628870.6332501 48203.906660389024 0.587465829343227 7.381651948427297e-05 83689979.09993753 10515.850734289452 81314 16278 327053 SNT_20211007 361583573.4619092 6513.938384158032 0.09316405313343631 1.6794155233670673e-06 28372570.13936046 511.4562229448738 None 6130 174168 RAMP_20211011 107984708.62616867 1973.7839078367845 0.2940270472951129 5.373901351181111e-06 6619599.306615157 120.98571878114427 None None 104660 COMP_20211207 0.0 0.0 1.1977514979165868e-07 2.3733e-12 185.5638287152561 0.003676878179288133 2635 None 5620341 CTSI_20200903 14486071.953591565 1269.7826577926191 0.0730029206458007 6.397649602760052e-06 5148196.16260132 451.16489646214904 17477 140 367425 IOTX_20210106 39745318.28611536 1170.0009166668665 0.006943066841207632 2.0375187121347262e-07 2380094.8839325276 69.84648100874635 30686 2015 689535 NAV_20190629 13151680.555648822 1062.3057670589262 0.2011122466186933 1.6221840705125086e-05 265275.75660908164 21.397309905263967 48350 11258 919129 BTG_20210106 158157895.7588411 4655.765534040028 9.184941201231657 0.000269457335593064 28680839.813231517 841.4057868556101 82359 None 356122 HBAR_20200301 115042803.26029299 13426.573807774494 0.034508566521258 4.028212757292148e-06 7264831.798349558 848.0296656676809 None 6306 124891 SXP_20210117 71565139.86127418 1972.387189097542 0.9579025936834918 2.6464419358857728e-05 99574754.86475773 2750.9979487195337 93684 None 143437 LRC_20201101 168964022.464243 12245.266471574885 0.1420794537503409 1.0296752607511422e-05 50170216.10185099 3635.925461635625 42285 7175 160661 ADA_20200721 3663508639.979351 399868.3425570284 0.11785394775122499 1.2864404658082846e-05 306182004.66044587 33421.44478086897 159496 83817 35792 SKY_20200412 6583917.806453129 956.6336542333856 0.3870784990756925 5.624664148658562e-05 290233.37431664375 42.17401015972735 16143 3827 269101 FIO_20210809 66399417.247940764 1509.3429343847015 0.19511797363658406 4.43566252029999e-06 13219609.789896142 300.52448057526743 None 510 318266 PERP_20210429 211847683.550507 3870.219576209634 7.1813590796772955 0.0001311612624890524 46195822.82782835 843.7264279076861 17779 None 280871 AST_20210325 82416044.64740482 1565.1145818765833 0.47737019093572247 9.065771750033825e-06 13227847.113204734 251.21099924064006 40143 3594 145891 SYS_20210430 317234285.6943784 5919.182193717493 0.519039046854763 9.684598489290137e-06 148039572.42123225 2762.227289283308 64777 5136 411439 GO_20191011 8613068.279177943 1006.3626264220785 0.010664393008753532 1.2460422011783672e-06 2390747.719527077 279.33821910506157 10262 687 701298 CKB_20210707 311113773.5460747 9108.543447143815 0.01155154871544634 3.3818595739159475e-07 31622222.415741064 925.7798954885963 49116 4997 123301 VIB_20190616 8965417.212654937 1016.3675817256001 0.049895522242471374 5.65662246656126e-06 837812.2903349808 94.98222708722292 32701 1124 2278285 NEBL_20200407 6740022.34019449 925.1925796756176 0.4160634807108948 5.711239898006355e-05 170256.9685565224 23.37091421896 39538 6004 1168706 NKN_20211007 259807931.75041938 4680.4472972444055 0.4005028512922263 7.219637649830188e-06 60140697.84769395 1084.1222355030466 31608 3717 224199 ETH_20201229 83575563402.66385 3082090.26156058 732.9570292975275 0.026996703745313586 22707049400.143177 836359.3786301299 542713 509161 7746 REP_20190616 206071598.01725453 23347.385279877373 18.73378163793223 0.002122489570897943 11583038.142920716 1312.3286121731421 125630 9983 269417 UNFI_20211007 45692297.96135626 823.2015364010462 9.715984897433383 0.00017514232240832577 16988774.810505267 306.243114475195 22271 None 224888 UNFI_20210131 21330774.07304325 623.4797844452369 8.702011100999885 0.000254709413129807 14765973.456004648 432.2026701203701 13508 None 111570 MKR_20210422 3618908471.3855877 66789.96910724025 4021.2641115376864 0.07434664609447186 664440654.8310627 12284.42918578023 134225 24527 31771 BAR_20210610 47723562.45485331 1271.4103827217027 16.064423145901923 0.00042891472721085427 4225514.361800509 112.81982075276424 None None 34079 1INCH_20211002 525733465.7006754 10915.873094965402 2.919038478693901 6.060208326761093e-05 148317363.2054761 3079.2129876384893 271487 None 4022 CDT_20200718 4684739.409301492 511.69454053978234 0.006877311409949483 7.513089829835665e-07 196181.83405600153 21.43180167924779 18989 290 313567 LOOM_20201015 20535061.46259216 1799.011331270089 0.024388429247563622 2.1340893637625064e-06 9969589.533799978 872.3807002571101 22461 None 407609 HIVE_20210420 196242032.4474259 3500.331119673865 0.5105034037224342 9.122431590723773e-06 18429006.480234884 329.3168070478819 19028 161 113776 BTG_20190421 302448755.9947699 56956.69930179358 17.249091074554514 0.0032484328788101075 17556595.111018773 3306.3435372963904 73515 None 444329 VIBE_20200320 1401348.8216973399 226.42937152 0.00772602823618255 1.25e-06 144361.0174550083 23.3562791 19377 None 1312296 ICX_20200323 97665820.56318094 16750.505215482513 0.18378406352369714 3.151904181560925e-05 17009715.841730174 2917.173201026735 113196 27504 126672 REN_20211202 946176294.572323 16553.28994838383 0.947303026281491 1.656613533307922e-05 124126352.19908267 2170.6823391065905 106382 1226 69235 MTH_20200511 1922896.7389168786 219.63350129011417 0.005533555004170829 6.319613971284236e-07 102062.1805228506 11.656043564865385 18995 1916 1375902 POA_20200414 1929897.3317420364 281.5333746366849 0.008755948536479681 1.2787228810392829e-06 11289.656948884805 1.6487468604317828 17283 None 691851 DNT_20190522 10325794.576629288 1297.6335556100362 0.017728899843769564 2.2322782421709146e-06 3271511.83674557 411.9220457290922 60859 6399 1189433 ZRX_20191012 154565861.65762913 18695.213038468006 0.25709619166275777 3.1096569598017815e-05 24346416.38724838 2944.7734202204465 151066 15904 149013 ETC_20200713 750243396.2627736 80846.77059505589 6.45155725323244 0.0006949315368698178 572283051.9855847 61643.65055299368 231932 25604 378218 RENBTC_20210105 396542768.3989266 12674.647998503107 31438.839352620023 1.0048757764132876 44192610.922878906 1412.5230169846404 31657 2141 104896 GO_20200308 12043903.931974992 1354.9806257319672 0.0132234854566865 1.487080842957173e-06 2255395.935378783 253.63631243601688 10693 680 656341 ICX_20190804 117984589.3471602 10934.639689987527 0.24064252985622195 2.229809701137672e-05 14208854.773206584 1316.601942070764 114039 25944 229714 STX_20210217 622056292.3549795 12648.65980071837 0.6788845702671457 1.380197023257257e-05 10208166.98878674 207.53574772353755 51082 None 59729 ICX_20211104 1533768854.3897893 24320.28446826464 2.2786154004208883 3.613098190995164e-05 123098614.64951538 1951.9194938383225 151353 34136 265159 SNX_20201015 536190092.56743133 46973.90626274772 4.290905143070108 0.0003756187204485008 34198596.488806665 2993.688423759749 40490 2407 28632 DUSK_20200319 3768816.389905793 700.2947591985438 0.014494491802734495 2.6902635717271058e-06 131111.36100822804 24.33504555802733 17652 13344 994052 MTL_20190511 18589745.730946798 2917.2671703582146 0.4111262049721124 6.453288061826882e-05 832698.026222275 130.70536897767244 33403 None 819230 ARPA_20191216 0.0 0.0 0.009650833696183067 1.357322430663191e-06 1848685.627072556 260.00473615690294 9566 None 759241 QLC_20201129 4305645.129863047 243.2329595460492 0.01778468111109194 1.0045933693670861e-06 638809.5160192214 36.084077081442 27328 5608 940522 RVN_20200913 124326469.28338794 11918.048820616148 0.017691080571267913 1.6942444077012057e-06 7645915.466098179 732.236194844518 None 9013 265141 HBAR_20200701 179729168.18543762 19646.357861840213 0.038395988133932205 4.200661612987576e-06 5226776.367419197 571.8284621221942 40123 6562 154427 WABI_20191022 7776242.798223055 947.6382517021639 0.1312864228504115 1.598582864683275e-05 895195.3225884857 109.0016676640744 36170 7916 1653961 BAT_20220115 1578890007.3288612 36632.043467189855 1.0595859415968296 2.456763073812452e-05 104381827.37856635 2420.2040534273424 250517 86566 22440 BQX_20201229 34428585.00397292 1269.6534996576938 0.15473229248088508 5.700579127977282e-06 613484.3004935603 22.60171902492405 None 106 178993 ARK_20190804 45311552.751456395 4197.693734751358 0.31740145692472826 2.9404291537792444e-05 302960.0940354566 28.06643364415365 None 21824 143377 ADX_20200621 11087283.334191352 1185.1370301178504 0.12052744130883511 1.2876678833801056e-05 894218.5893083785 95.53480482701141 51386 3747 23124 BCD_20210204 133297680.95075175 3557.9804896747423 0.7084389804514708 1.890964683401106e-05 2060534.8960666368 54.99977873739386 28160 None 1670747 REQ_20210111 22719398.368645627 589.3482864767307 0.029670018968138482 7.717801211862017e-07 482341.5045493701 12.54672554250826 39468 27272 443928 AMP_20211202 2845815273.816098 49779.8656947366 0.05953921445677984 1.0412029276291494e-06 59068754.559554026 1032.975673931014 None 41111 78917 IOTX_20210401 276125585.71972734 4694.6481243022445 0.04547830453902708 7.739456182034262e-07 71123643.4209357 1210.3756447001824 42970 2512 243991 EGLD_20210602 1810503593.5726233 49345.03535794399 101.67031903573321 0.0027716744097711597 60431523.592338085 1647.447446540391 239649 8913 28492 ALPHA_20210108 71177081.95972966 1814.0838688938638 0.4105672615240669 1.0404007396835571e-05 163081877.29638612 4132.587316833526 21341 None 85584 ONG_20210809 0.0 0.0 0.8594710774922912 1.9538386436358277e-05 71391047.80456153 1622.9352175199417 142131 19765 173647 BNT_20190117 34872514.68122043 9687.98632308014 0.5572251883205236 0.00015492735249552776 1172071.9908820735 325.87545266721 855 5090 105322 MDA_20200308 11423747.546819977 1285.210898942788 0.5832974814014105 6.553586277156495e-05 882500.2116074542 99.15251583948174 None 374 1557783 CVC_20190224 21028781.639740292 5110.556320193186 0.061362076640469276 1.4912625655996013e-05 1658713.2289304712 403.11167431016986 88281 8206 370829 RDN_20200719 17238460.912205297 1880.53232762438 0.25808422444650553 2.8154237770605666e-05 1764308.7956894685 192.46728249718402 25632 4333 1173290 TRB_20210217 76879321.11681624 1563.454448323692 45.1332919759104 0.0009171646860095158 120709978.73075123 2452.9770573769806 14302 None 359747 ONG_20190702 0.0 0.0 0.37719417143051215 3.5534189749584876e-05 13689097.464576207 1289.6036674215256 80868 16274 247326 GVT_20190530 15395381.99285184 1780.376955283249 3.4700512353147652 0.00040128911746880046 998500.7751451232 115.47019559022553 21407 5783 174958 EOS_20190123 2496462874.759903 698891.7052497881 2.427527602116228 0.0006796405375101535 907730870.7991374 254139.51891079146 578 62178 76885 FIO_20210217 30284503.323681604 615.793754492526 0.1382934243122436 2.8102945638048853e-06 3763163.806600845 76.47217386504008 55299 187 607665 PPT_20191216 16184033.579544688 2274.2286670631647 0.44987506152084195 6.32717888652175e-05 329869.8173384487 46.39388848336785 23779 None 728318 LOOM_20211028 78469683.40786436 1340.6926546776865 0.09425148051728105 1.6093726145546856e-06 2550149.5212257067 43.544576487877016 35845 None 459987 DCR_20201124 261204677.5313282 14262.600671061646 21.48990666575716 0.0011709553816734886 7170888.68217708 390.73183631628007 40888 9975 350460 IOTX_20200208 22573981.31462546 2304.8478491100195 0.005164748504403769 5.268202144883421e-07 3789212.397462861 386.51130568529385 22188 1800 490355 AMB_20210804 4516071.296826122 117.53785852060585 0.031058547881293915 8.104995695232613e-07 491736.4073704926 12.832285270256987 773 65 582804 ZRX_20200927 282472983.747031 26307.0632384475 0.3906035517483798 3.6365359397618384e-05 42255217.740241274 3933.97902469244 159440 16319 47867 KNC_20200306 126727843.25197986 13993.58677330334 0.7068622814782844 7.803054911038895e-05 127464271.7260106 14070.784897357671 103174 7095 154836 TNB_20200322 3434431.400020115 557.3890267729869 0.0011076531299406567 1.798605852903784e-07 599843.765328319 97.40256024060173 15125 1446 1775001 KMD_20200612 85269551.18681568 9195.419765441482 0.7113248729175579 7.649610075188757e-05 7090522.7588079795 762.5170495116238 99817 8374 202548 LUNA_20210902 12666603313.54602 260440.82562708962 31.573249462346293 0.0006489178024576302 858076778.5406522 17635.85652261032 118839 6741 16171 GRT_20210722 1604199619.094616 49848.96805827576 0.5555296597827929 1.720099700797349e-05 88464966.04575507 2739.1617881545235 124011 16167 33618 KMD_20200531 74395765.94711001 7676.81530846866 0.6194863351943526 6.398217495224571e-05 5192974.91216493 536.3440813404213 99740 8376 203633 UNFI_20211111 52251728.05689531 804.4135505205701 11.095926805306743 0.00017082141030922885 23367197.86549464 359.73720486778655 23013 None 236683 KAVA_20211207 554982124.2662514 10995.33089013766 3.8853892709811197 7.698505344661208e-05 52902632.43966946 1048.2120842440083 143249 None 43021 MANA_20210620 838543952.718364 23522.156436366422 0.6313718813798719 1.773336447269376e-05 29569089.401093286 830.5080649604771 141539 33434 14515 TFUEL_20191108 0.0 0.0 0.003581539919558243 3.884882250091309e-07 1776910.2423431037 192.740754410902 69583 4028 431634 VIBE_20191127 2802701.8025202504 391.0152681519272 0.01496028385978258 2.089427247893365e-06 179900.609074936 25.125808977748 19993 None 1200564 ONG_20190922 0.0 0.0 0.18272397572795548 1.8297225696987593e-05 6215199.922970564 622.3644997293795 81637 16294 297056 SUSHI_20210422 1876714708.3801455 34636.332581194474 12.512819667369968 0.00023134172480358947 589195797.4187797 10893.27390990335 75177 None None SAND_20210711 353246348.6404936 10476.727675095364 0.5004145120361655 1.4845055273585857e-05 662759092.3396938 19661.09119981575 139870 None 27312 GTO_20210725 20354268.922394346 595.7529485067137 0.030731793589651755 8.993528489192063e-07 4311489.59937782 126.17390660829012 13725 None 367259 ELF_20200223 49199302.66437536 5096.876708544468 0.10678519868098502 1.1060980611405242e-05 46560737.42848989 4822.83518980766 83441 33459 876867 REQ_20190601 17701519.055640448 2063.6153992630893 0.02424178221768433 2.8266444556220735e-06 436155.2131441873 50.856645107772444 41842 30057 442629 STRAX_20211207 210413234.8463867 4168.716503903716 1.596056817345528 3.1615009740038055e-05 14767876.64558954 292.52502725215845 158694 11172 188496 DLT_20190220 8745883.518303357 2238.322053685829 0.10802961197805572 2.7596225945633627e-05 6842430.577323056 1747.9027904633763 14499 2695 922398 BLZ_20190421 14837792.023426648 2794.332159589926 0.07215071108305444 1.3585730964412003e-05 935482.985417397 176.1482315404462 35580 None 850620 XEM_20190923 396674428.72314453 39494.862716908014 0.04407493652969105 4.388318080144037e-06 49066630.88596293 4885.315791744244 216038 18328 181782 SXP_20211002 443562166.99404645 9210.18581840153 2.371308580317411 4.9235886450470406e-05 86171779.18552846 1789.1994194386023 None None 170596 SC_20190906 74299600.07519343 7029.954433911149 0.001766259126430165 1.671159946933871e-07 5148702.725337011 487.14855280849287 108969 30641 202127 SRM_20210418 328259587.6221976 5445.32580206114 6.53127687499718 0.00010865508307430493 168167562.4461138 2797.655162642871 57795 None 59775 RVN_20200418 98317699.28807306 13888.479419897898 0.016537593001708567 2.349113677354276e-06 12318295.800595239 1749.7756259864664 30357 7633 218336 NAS_20200807 20497218.032821517 1742.1728779056061 0.4527674708599156 3.845503452328714e-05 6382767.844494563 542.1095233453874 23538 4914 789535 CHZ_20201231 122884754.63146274 4255.777769605439 0.022910564672485086 7.94193903662552e-07 132537664.07957758 4594.413377514462 63050 None 153124 XVG_20211011 399746537.2049013 7304.609541723603 0.024323666114614007 4.4440037760092787e-07 32433329.942687117 592.5662688128195 328850 55034 184917 KAVA_20200331 8794799.154407762 1368.850212833552 0.46737401841815684 7.290122658680359e-05 6052858.375699551 944.1277917804822 18365 None 290091 XMR_20201111 2048689366.1700566 134109.90179485703 115.39164077236205 0.007553688649665371 214203751.4062067 14022.059439338063 325563 183350 75533 XEM_20200314 312289333.6795729 56136.25915779325 0.034698814857141304 6.2373621293367345e-06 35524156.231541574 6385.72319162816 212308 18028 213172 DOGE_20200506 310190099.1707827 34472.657522847105 0.002492679926068163 2.7702141891419026e-07 191425230.39362994 21273.846026137995 140648 154262 106341 CVC_20210108 115431808.62908094 2952.7461766589468 0.19379935982473395 4.9096140277739795e-06 359021372.2759834 9095.264128792393 86735 8067 183713 ORN_20210814 267446034.44179678 5606.8725441244615 8.973647616728076 0.00018808509029058143 25956775.675931193 544.0466023603415 None None 92091 MDA_20200901 8964945.059140883 768.9749180904595 0.4567220037702025 3.917567404177249e-05 164371.41788599084 14.099082233238498 None 373 1669605 ANKR_20210813 722986391.5680133 16261.880937063104 0.09444955603527763 2.124469860713744e-06 77241601.08607523 1737.4084155498745 118914 None 5363 RDN_20210511 59822965.64362182 1070.6493975914436 0.8956346956295032 1.6029140933101844e-05 1829369.0059175736 32.74014925682527 29133 4593 580559 THETA_20210620 8959337088.25755 251317.8866712302 8.943375273686934 0.0002510894445989357 241599350.71505854 6783.014793641662 176150 19978 17272 STORJ_20190811 21711238.63256595 1916.1644889548472 0.1508050490524185 1.3320258586602004e-05 1756991.9143398353 155.19100176440776 83806 7780 204651 MTH_20201231 2294874.9521096763 79.44251086567294 0.006751063504997238 2.3413747663997803e-07 193526.6540493234 6.7118080593 18924 1886 1255107 ANT_20220112 313108998.73038894 7303.8949185495085 8.296058679131034 0.00019389733958374345 107578083.06112629 2514.339026499779 97955 3523 43369 AMB_20191019 4764139.568669967 598.6179400307569 0.03294907976566288 4.140078175907984e-06 651340.4303363794 81.84144503884927 19192 5595 589761 APPC_20200317 1837993.0172253838 364.15501896098436 0.016831494164669517 3.3462639148028905e-06 77539.00831481726 15.415505181834158 24877 3229 700856 BTS_20200107 45579730.92574868 5872.413262346994 0.016824040474495462 2.166508892091906e-06 8842251.178043937 1138.657258485751 13430 7073 164452 IDEX_20210519 50153050.1069776 1176.6296997539744 0.08702391933054532 2.0340825537636005e-06 1592438.267876154 37.22138606891579 51665 1983 4781331 DNT_20200531 4772859.145612106 493.1327480112007 0.006487450803009193 6.699979275583299e-07 194345.81870465586 20.07125752712422 58080 6034 640704 WPR_20210422 34351261.31584558 633.8197006989332 0.056327810256253476 1.0408280863208924e-06 18550768.362695385 342.7820227146645 33517 None None TRX_20191019 1015941333.0496826 127653.83952680587 0.015360783326561094 1.930120025851449e-06 713264283.7088251 89623.40321085692 476105 71316 65552 TCT_20220105 20795501.582741 449.5351597686983 0.03539561763402583 7.692875981627288e-07 2511797.3242191887 54.59134943198823 None None 527102 NKN_20210220 35516573.46910619 635.8473959909994 0.05465668568483973 9.78302408220328e-07 4116215.546979065 73.67632215358654 14457 1035 263603 GRS_20201129 16037765.824554164 905.9772029794261 0.2112503468394772 1.19337111050288e-05 1042338.8463315872 58.88260469992114 37290 106800 4271463 MTL_20190826 17550644.326697018 1738.4626728203352 0.35503551616436174 3.516813533892893e-05 4666770.073651144 462.2681226907102 None None 511455 OAX_20201018 3679704.2117804433 324.0640237715814 0.06557487818265806 5.770058070762636e-06 1781454.5535460406 156.75356949581936 12723 None 1301324 NEO_20210909 3478302588.2065005 75049.00036017319 49.20234308911669 0.001062289532412871 764840975.0334713 16513.086790743262 413643 113318 106895 LRC_20210809 325186538.65372187 7391.8905683463945 0.2608486490850216 5.9299480921878195e-06 39782495.90655083 904.3870325992311 83488 11092 273210 MATIC_20220115 16023458731.592707 371817.838184322 2.3389152867257454 5.423024677492067e-05 1124945149.8734076 26083.053726707465 None None 3376 TFUEL_20201124 0.0 0.0 0.00918942972155724 5.005348836956629e-07 4167553.389534198 227.00057722107172 74659 4525 80855 ACM_20210304 0.0 0.0 12.18537225401499 0.0002404928886272552 9769631.719678985 192.81536124724514 None None 69992 AMB_20210408 14440951.62648078 255.9265083559385 0.09943255772660384 1.7694821714107832e-06 4360860.02249817 77.60500421849198 24879 5600 316316 WRX_20211221 486925542.5621985 10323.702505974336 1.0634598736057526 2.2564570574451e-05 7168873.102768988 152.10968188037455 484333 None 612 BCH_20210401 10136792990.462706 172337.85123069698 540.1666358625873 0.009192506298619346 4887152846.482906 83169.1191957255 None 487730 298671 C98_20211207 412941211.2704567 8181.209912113593 2.238874579227679 4.436246623881153e-05 25619045.69975474 507.63185239165733 None None 35564 VIB_20200331 1913896.4295342327 297.88486228207995 0.010460720156856293 1.6316682150992633e-06 612613.572775574 95.55576287748652 31373 1107 None LINK_20210527 14398812017.680668 367509.0702838409 33.88638971869682 0.0008644312595133747 3201030591.21223 81657.2945265898 338716 58410 23806 ETH_20211120 509116804761.8423 8758087.696111053 4317.603195646166 0.07403168536538698 21398451638.777546 366908.0661756703 1861866 1159891 3578 PERL_20210217 0.0 0.0 0.07319583196733519 1.487430437809807e-06 6858394.543673469 139.37111614936148 14381 536 428459 TRU_20211216 148526225.40161213 3044.584988494873 0.27128572316459093 5.559416439337563e-06 4867301.949779276 99.74486736408747 35716 None 113426 PAXG_20201208 79204362.86893348 4124.779118987506 1875.7113209181 0.09775186296321214 1642846.9360236023 85.61623890029509 8671 None 85831 BLZ_20210813 67942509.5711571 1528.2071890940815 0.22884757680735293 5.1475407149221e-06 16278881.267850384 366.1660100958087 65631 None 416953 UNI_20210108 1347490392.6306486 34343.36611528605 6.28002103259672 0.000159139296769256 378737338.54594994 9597.41908563964 161532 None 5230 APPC_20210603 10576711.98978525 281.05934842614744 0.09373732241603427 2.4909206932084783e-06 181398.1664062573 4.8203686084181365 24820 3131 545194 PERL_20200719 9012150.235366596 982.746319052105 0.02567109030236795 2.800082578171734e-06 2915216.599120175 317.9782048462701 11968 486 1781566 RSR_20210430 1102644635.2365258 20570.249740966814 0.08364501845464647 1.5607080512946214e-06 141366935.54264897 2637.7245000895077 70082 None 82413 NPXS_20190318 112573555.8597413 28268.915175316874 0.0006423518581490713 1.613121818442511e-07 2764943.071694809 694.3530931091775 57232 4121 151304 BRD_20200425 7459307.609149106 994.7980774852183 0.11946926634557715 1.5939300659527993e-05 112998.41573303672 15.075975416215396 186 None None XLM_20210120 6648121977.414033 183598.16771322358 0.2986638992729474 8.286578008751666e-06 1487841104.7681139 41280.88935188221 331006 121376 30260 CLV_20211111 235623042.2141319 3633.3932071449453 1.235562417853522 1.902607584902612e-05 29198108.29727899 449.613402839813 88664 None 106367 TRX_20190124 1716280909.470994 483468.4900012897 0.026265539013573317 7.395431683017147e-06 156475317.35098997 44057.82492983156 374578 69413 85818 LINK_20210324 11144570874.810068 204433.32558085676 26.894496244906442 0.0004933688409778941 1220024131.3006964 22380.857635096436 198926 45075 28260 GO_20190512 14092393.11375671 1934.7824581261173 0.019692002786125262 2.706186935918972e-06 1674612.4992692198 230.13476676135963 9549 655 839463 AMB_20200701 1862714.2364217406 203.61497720463535 0.012790830632557652 1.3984907372072527e-06 366110.35462942783 40.028826465864746 18971 5441 661727 SNM_20190702 7928652.995846464 746.7303805491189 0.019615809455313576 1.8503869240597684e-06 285751.5076383424 26.955342040250322 31316 9990 14838367 FIRO_20210430 126148262.93188646 2353.4247617176957 10.683162675744088 0.00019930531733227124 9899054.060816983 184.67696980407734 70924 698 172734 BAT_20200621 339393475.70152026 36278.298633703234 0.23143142385759166 2.4735263402561484e-05 100971147.75140832 10791.740784634641 118682 40579 22299 ATA_20211002 155993208.60113862 3238.85308044124 0.9057262986035831 1.8803760541792843e-05 24853607.522673532 515.985110707931 71544 None 267687 TOMO_20201129 49425124.75705187 2792.1064110020643 0.645730762935321 3.645710177900539e-05 4986931.034565553 281.5555069199139 None 1695 115603 ALGO_20200526 157781305.09043527 17731.66050926443 0.21067844519733644 2.3705713511498895e-05 35220117.28806931 3962.9968290791053 17996 880 290997 TCT_20201229 5304570.840527982 195.6357065008241 0.009167331968100424 3.375313281374297e-07 552100.0597817177 20.327731895313004 None None 1564302 OXT_20211230 219628351.23593011 4721.332546833687 0.3715202279958637 7.98350993308974e-06 8671012.071549587 186.3293188007192 79088 4947 155800 ICX_20200425 141669278.30486906 18893.48624308557 0.2645266287130776 3.529250322265135e-05 47622432.337277554 6353.669779524822 112751 27548 102592 OAX_20190622 9667829.936585138 953.024021741605 0.2161323075805268 2.130563759910769e-05 1168040.1844143274 115.14169792063402 12290 None None BQX_20200414 3680668.69914426 537.2255693334911 0.02616119495107079 3.820593330338747e-06 203739.33065842692 29.754188571933174 10877 14 327684 SUSD_20210421 223490596.3558335 3955.6873937360306 1.005095423835204 1.7829069164493704e-05 39759545.83907461 705.2819820916296 114159 6060 27259 XVG_20200331 40353890.91299378 6277.858704869721 0.002506422305677406 3.9095296962983423e-07 3705365.3490379797 577.9646883482266 294896 52133 314121 KEY_20190213 6706601.849142382 1845.7262587017267 0.002710047968147446 7.45809126532267e-07 354557.45938909875 97.57472642568976 23420 2805 797344 AMB_20191203 3366669.1956838057 460.492698838513 0.023340313957138918 3.1946585664020153e-06 1232591.16335772 168.70843837504466 19225 5562 826478 DLT_20200526 3022643.9025549185 340.11040063509915 0.037150812124227495 4.176854041902626e-06 346032.4344565775 38.90431702156 None 2570 8395900 POLY_20210805 232099347.99361873 5828.642575705255 0.2694629623126542 6.776399182569897e-06 30886305.13463051 776.7224522087346 47896 5798 197469 QKC_20201208 35985846.371881455 1873.4862804824618 0.005633094710948694 2.9356623063613475e-07 2688617.833683553 140.11612507091036 63735 9213 103025 ZIL_20190706 144685874.18923813 13164.27122667559 0.01573808812386423 1.432240396240134e-06 17985985.48471477 1636.8096794639227 65175 10604 184168 KMD_20190909 85380948.74003066 8220.23894477337 0.7376448526598633 7.097409754775869e-05 2570032.5272638504 247.28124738239953 98394 8425 213183 QTUM_20190621 336998012.67415154 35230.332130597366 3.5147586882781554 0.00036775165969802666 341338902.50851876 35714.52809424751 177961 15315 453664 BADGER_20220115 124598732.99989176 2891.2628865316383 12.529114731455415 0.00029058670171012784 11047395.43869247 256.22131106818006 None None None WABI_20190807 6834272.350929114 598.4823930051605 0.11989247479396159 1.0469784224798404e-05 274444.0938842374 23.9662284866189 36318 7985 1513094 FTM_20200807 39145165.67113438 3327.165951211979 0.016071477671867503 1.3650036022643486e-06 10565852.510165801 897.3926997774463 None 2483 185383 ATM_20210212 0.0 0.0 6.118195945921929 0.00012814002789961597 3578841.261398666 74.9555625771672 4839174 None 233968 CAKE_20210809 3612896961.8644905 82130.73753542203 17.41849114892012 0.00039597863235986164 187603811.13776696 4264.841307132177 None None 746 MDA_20201111 12241693.06782024 800.3418038237132 0.6221629350555111 4.0731736784575374e-05 314049.142558511 20.560156016001727 None 371 4462991 CDT_20210509 27780880.384882964 473.7242312227578 0.04154200997562903 7.0744725638788e-07 800523.3386382113 13.63265860092734 None 328 439508 EGLD_20210428 3173750467.052289 57610.359570987246 180.26054813193028 0.0032711852039581063 144788480.99387407 2627.474184667889 216360 8149 24132 DNT_20190124 6987556.931551439 1966.8764986964914 0.012025532967377357 3.38497967308623e-06 662307.1794970817 186.4280232750157 60221 6537 537326 DASH_20200907 682137877.0035707 66249.26509861714 70.27042647598196 0.00683081280708739 306146540.8096715 29759.74128352526 319541 35328 76082 DNT_20190419 9911957.060064385 1879.8799493251909 0.017058919807365066 3.2348610333981543e-06 691681.6817290798 131.16270813200506 60845 6428 1091663 MDA_20211011 13677513.655430818 249.93061216513726 0.6958894330574185 1.2714089032976376e-05 868806.2506258884 15.873326275889161 None 389 671506 OST_20210107 9503479.654918013 259.676925135987 0.013772934361893925 3.7300347984086283e-07 1908982.2875776552 51.699733514385294 None 731 741572 HC_20190929 72445339.72646222 8844.422336730382 1.6343055025484796 0.0001995226766325914 44363138.106666565 5416.0327093439855 12857 847 356881 DASH_20210304 2261610792.421661 44501.708386453654 224.08563189468433 0.004422772861329401 1240285738.9668403 24479.49054214461 370238 38361 52035 CHR_20210427 131460144.61580971 2440.1938424669383 0.29268113603353907 5.42946091448273e-06 117644527.70870543 2182.3967668486875 55544 None 107103 NULS_20200207 28685274.124261204 2945.3149408636373 0.3555197424041707 3.65086920138249e-05 4085018.6862726826 419.4948164602951 21641 5214 569469 VIB_20190213 3878637.227750477 1067.0266158205395 0.02317989053996412 6.379139454325563e-06 922906.4516899168 253.98519240099353 32742 1122 2912789 LUNA_20210729 4616694295.865287 115454.77842515595 11.047183265156887 0.00027611932007129024 579312457.1043649 14479.651321527528 93451 None 20667 TCT_20200418 3342860.2716485737 472.2004207020147 0.005722029221274487 8.127964634592237e-07 350648.83488280245 49.808576972866064 None None 458106 CTK_20210825 150988488.01601538 3144.038041274716 2.7080462770728677 5.6390419505584974e-05 62588765.02422658 1303.3036938599012 84355 None 88969 DOGE_20210429 41743974977.6647 762368.5865742704 0.32265643251295395 5.892661840076599e-06 15310415976.014814 279613.529706833 997269 1573239 11474 TWT_20211007 366708194.7811146 6606.687840694171 1.0570376160579005 1.9054375331341464e-05 37755502.96970318 680.5883853890165 7266 47804 5103 CTXC_20210620 33562093.380936466 941.4566860557559 0.19168315053713533 5.384239590745095e-06 3306913.0188770643 92.8887695631798 None 20582 541278 TFUEL_20210125 0.0 0.0 0.02852061018122357 8.839824510609248e-07 6893778.904273067 213.66932664306563 80964 5008 50826 LPT_20211011 431314851.0485008 7882.518342378531 17.76475619212982 0.00032456720638126527 19222119.304918315 351.1936497213896 16635 1384 119717 FIO_20210107 14027261.160192035 381.83762763179215 0.06642531178222759 1.7984799718202907e-06 1449408.464677147 39.24305396194 55293 161 541516 YOYO_20210804 2175704.698999602 56.61935678778299 0.01244871970932719 3.253473495464501e-07 442586.55532285856 11.567001754509558 10121 None 1435059 GRS_20200329 10708961.03220036 1712.8672358962826 0.14330974570894395 2.2921977890421114e-05 6467447.882781267 1034.4495180226322 37535 106843 3912987 LTC_20190730 5668645563.63782 597233.4402194 90.14972347690902 0.009497935420818619 3138753048.7237773 330690.6844402242 451220 206941 151076 TRB_20210131 53274433.958971485 1557.324705183384 31.801734643516923 0.0009307080173864215 43999704.303928755 1287.6932034475215 13249 None 357137 ZEC_20190213 314799196.0058542 86635.99768644343 53.62117405781115 0.01475662477481099 189619199.29517898 52183.478322989984 73321 15009 148346 HC_20200105 47440190.82692942 6454.87326670862 1.0683715251740302 0.00014529580223051318 19300761.683054358 2624.854356673844 12802 844 1107613 HBAR_20210107 261911024.35372752 7145.662319192671 0.038782140537840855 1.050739543117991e-06 49376427.305448994 1337.7746547306651 1080 6881 206193 THETA_20211221 4024362380.394071 85323.76381983717 4.007017822923757 8.502120174208424e-05 131156861.94711202 2782.896036965364 230966 26843 31111 UTK_20210930 148949467.32808372 3585.2287917433996 0.33193943712635005 7.982111747568228e-06 9595353.409162235 230.73842575743387 None 4127 216957 ALPHA_20210707 223890291.15652078 6555.9555521677175 0.7837183365951671 2.294700668990001e-05 283502453.2244528 8300.85553313402 69590 None 51351 XLM_20200707 1466068309.0926216 156913.4940931626 0.07192705454876079 7.698322726171877e-06 250345611.46313462 26794.38664928964 283419 109474 67238 QSP_20200501 7295576.07005042 842.2709337451088 0.010256338599678942 1.1898713089106258e-06 1630235.4966965672 189.12893967323095 54801 8281 461426 IDEX_20200903 57011876.187693544 4997.288684814378 0.10622460364805414 9.30904938214152e-06 2710260.4145319783 237.51510639600966 39961 1968 16691 PIVX_20190723 29179101.419562284 2821.4031054608968 0.48311786783276384 4.67304126113236e-05 501945.8210558454 48.5515790001558 63365 8623 284209 TNT_20190105 5117862.770833045 1343.2394170579273 0.011922424792202577 3.1316939440511875e-06 120051.91852984094 31.534345805017455 16986 2520 1160782 VIA_20190419 13191855.045025077 2499.5659741878153 0.5701677261044023 0.00010803392830218145 571603.3797280351 108.30595229361641 41253 2232 2047585 FUN_20190909 15324548.989089288 1475.4047158079622 0.0025506014871739206 2.4556477746930697e-07 122002.82296772576 11.746090568578872 None 17390 352374 GTO_20190414 20911002.117765374 4121.13397515541 0.03420395857166928 6.7425788505042215e-06 17422485.642638333 3434.4703982470523 16920 None 779658 LSK_20200523 170971035.53904858 18677.23117331937 1.222454884951247 0.00013354050002231362 3899040.217769245 425.9296491819254 175499 31255 217591 SNM_20191022 5278169.646950799 643.2149286242505 0.012071567953295028 1.4698703232995199e-06 168232.40391671477 20.484482122889432 30897 9825 6645524 TOMO_20210110 87274759.60310452 2157.5982135966947 1.1358765620270566 2.8197191584991484e-05 29964467.547281396 743.8430023286523 None 1711 198557 REP_20210930 122402381.86606339 2946.7342733627056 18.699613965790046 0.000449667594798349 28693221.365852393 689.9827912064775 154501 11694 202540 NEO_20210809 3181871051.3935857 72327.96293393779 45.107232744651235 0.001025627938238097 531649580.1483962 12088.40865586922 408998 112594 120320 ATOM_20190920 762632160.9852296 74461.10312370172 3.1213473118264066 0.00030456232697920763 182555770.63594535 17812.6958501881 28608 6947 109594 SYS_20190510 33417547.72655899 5413.22384587738 0.060451644013045695 9.792408574427892e-06 323873.78581035644 52.46349357376176 62241 4600 1307286 DASH_20210729 1559234757.4534729 38956.034690626904 152.03426269330737 0.0037984350870405074 596236377.8400724 14896.413069245402 401542 41577 60872 FUEL_20190411 6440116.589771018 1212.6450301554828 0.012138745157417197 2.2856711958982223e-06 8194399.181944206 1542.968563469456 1 1526 None FET_20210708 186731699.37136963 5495.767741382095 0.27259741988561925 8.023103102617407e-06 17083993.897285275 502.81710113000673 67728 2969 137103 XMR_20190929 992632562.7097731 121167.43465661157 57.70115543938844 0.0070359840094535355 111310220.19105221 13572.985209553997 320157 161432 88240 WTC_20200913 16034418.846735995 1537.7080727989544 0.5502242309493353 5.2696380106237045e-05 3607721.487101726 345.5207024847603 55583 19411 628603 OMG_20201229 373955695.47268736 13791.706979357534 2.661219382329707 9.804528440002748e-05 154523650.76561505 5692.997498230392 None 42620 172723 ASR_20210620 7865630.912218538 220.23425283933253 6.36767704753791 0.0001786223736638866 6214026.103587452 174.31224673388795 1974463 None 118104 XMR_20190123 757693255.5228518 212118.03614368587 45.25339146634326 0.0126696970504191 245898475.25428975 68844.76689330388 313100 152945 85084 MDX_20210610 988968923.044124 26348.059410244252 2.1698521262348174 5.793432632838223e-05 92238960.68271858 2462.7494121712975 194363 None 17529 ANKR_20211011 701534648.5334052 12820.935150820524 0.09140570742693886 1.6700085712410782e-06 42457719.31153887 775.7147465030273 126075 None 5363 RDN_20210217 30814781.784254093 626.2248712511791 0.46417664309010936 9.432647309217328e-06 1842868.0732880393 37.449373706139724 27231 4396 934913 NAS_20210506 46012488.76702533 803.7440886254616 1.0161540853336817 1.772531869435779e-05 11546847.186866514 201.4178255604299 24895 4896 492294 ZIL_20190511 142163074.26862687 22309.485853303242 0.01616545353538501 2.537428338361295e-06 16664396.8066937 2615.745522168239 60859 10254 201594 VIA_20190103 7287024.093117057 1881.2382367053567 0.3147969187004306 8.130637291286813e-05 125815.88887421551 32.49597747462625 41114 2230 2548980 ZIL_20190730 98656864.70000215 10392.602581478126 0.010525619636197199 1.1065684746613442e-06 13007514.877603902 1367.4924987547045 65677 10610 174377 LRC_20200217 43963168.258931145 4410.151983678763 0.03869195254715421 3.889249672143562e-06 5737670.762254938 576.7409670983119 33905 6807 811957 ATA_20210711 71058824.93817553 2107.8752769785233 0.4121672845411979 1.2223314047356798e-05 5288525.004291349 156.83753757096346 67994 None 98513 IOST_20210821 740591394.4646077 15073.479460624194 0.032644814352951135 6.640217185574118e-07 80886966.5888339 1645.3058051579305 251321 53615 317836 BTG_20200127 195177828.77449372 22739.67605749429 11.192489622337728 0.0013024024290585994 60185948.55911357 7003.47538783004 74819 None 214160 MFT_20210613 80818276.7549806 2265.321305289214 0.008610006272873956 2.4133687863386855e-07 9535260.33348203 267.27157831393396 None 3491 261213 CELR_20210711 159679946.34638238 4735.39112066271 0.028275045346609008 8.387938417805555e-07 25270088.554219235 749.6502446129747 None None 195750 MATIC_20200330 27813793.243214075 4703.664032467779 0.01006954671692075 1.7037946472570392e-06 9957347.11676698 1684.8101702452643 32989 1600 190232 REP_20201101 65408831.97953141 4740.205088155412 12.498433858223274 0.0009057838978294972 5564285.1593448855 403.25371622062625 136238 10426 127573 CHZ_20210115 104195590.68442261 2671.130166582745 0.019575177260704752 4.989940566985866e-07 54322413.04002301 1384.7415474960237 66557 None 151849 BNT_20200530 42061679.747947134 4462.948377912726 0.6007714719676062 6.407680943011546e-05 49051173.417379245 5231.677664545346 725 5028 143192 RLC_20190601 31015834.995474346 3616.5960665443486 0.4434293805439034 5.16918146236774e-05 949354.3486350804 110.6689163032756 24913 3313 786963 AE_20190812 88080474.72010873 7631.710769115742 0.2719257515923333 2.355346471487257e-05 24496731.882225998 2121.8399016607573 24899 6354 316448 TCT_20210819 17628111.292974748 391.0823311942958 0.030419110055059262 6.753120267396487e-07 4069644.3393951175 90.34714565850244 None None 1235757 XEM_20190601 874831194.191411 102045.01827120097 0.09776735632281325 1.139756545293279e-05 101159229.66493404 11792.984740913053 217078 18456 168914 SKY_20201224 10230923.879066922 437.3288348399298 0.5363427087167918 2.3001502640396873e-05 6227274.408359583 267.0618364311407 17119 3814 846842 JUV_20211230 23362538.754885156 503.72673053145064 8.669335680109228 0.00018636399388145196 2939392.851645005 63.18788562727005 None None 37465 SRM_20210519 479478782.2072629 11202.4525528996 9.635889763556968 0.00022490349360130608 286704941.70095754 6691.747685322399 84270 None 30792 AUTO_20210825 49282380.84935196 1025.1157969369176 1406.6750978408634 0.02929159650884787 10653132.82960211 221.83322138767792 None None 13897 GO_20210806 24545066.415114705 598.553970816145 0.022328516670796196 5.457173844896614e-07 849663.1304597411 20.766087962226194 22471 1110 169047 FORTH_20210704 145658796.00678325 4201.629408028103 17.069624608613413 0.0004922669507381386 42641729.66614785 1229.7349659559832 30950 None 63782 LTO_20210218 106289343.88628207 2038.8398998462303 0.3876520018094574 7.434757011107484e-06 18843565.624228936 361.3997373547992 2649 1782 791991 SNM_20210428 34256794.39114737 621.599557115541 0.06377381055128006 1.1574344851779696e-06 618.8697305928545 0.011231901650991933 30679 9542 None ONT_20201129 459806951.4851748 25976.276785139355 0.563545692605117 3.181303328225702e-05 160117566.98397824 9038.886383796069 None 16698 254257 MDA_20210711 12212760.846746184 362.9762910808263 0.6221830216131542 1.849194366389101e-05 2058337.8919840232 61.17599969400389 None 389 1489514 ONT_20210127 467878539.7109423 14357.745712639935 0.5800688659132772 1.780750889278605e-05 187465261.85308278 5754.987922479406 96301 16674 273814 BZRX_20210217 86152729.5154628 1751.797353289282 0.6115139201722666 1.2427710480712846e-05 49788222.50381651 1011.8389691806814 18631 None 179211 BADGER_20211230 148069005.66864643 3185.238305737231 14.880298204238327 0.00031975919362914665 6692412.7425173 143.8116677911224 None None None AST_20190704 11791355.567861054 982.2826395780917 0.06802717255290076 5.667763482170243e-06 12750770.588982362 1062.3453717345922 31988 3605 257533 OMG_20200422 78909495.42509215 11522.546954160056 0.5664896758658423 8.275541652915104e-05 112040963.59334455 16367.459117984876 279340 42891 554099 ALGO_20200531 189789411.01994497 19600.544617946376 0.24279639411828566 2.5098394744494232e-05 45170476.410503596 4669.371025318294 None 885 279638 HNT_20210506 1475045131.0869262 25757.861512584364 18.200437154580342 0.00031781473687024037 22356101.93385022 390.38065916800264 39348 24146 7875 ATM_20210610 20659357.16685323 550.3934906192325 10.90004283552471 0.00029102749952016543 9568890.081977084 255.48616604193793 4992771 None 91720 ONE_20210509 1207489744.580496 20590.317622620205 0.12713631344709592 2.1642987385300864e-06 61517977.40334982 1047.248243094575 None 18915 26398 OMG_20200410 85147916.51143591 11678.229544291917 0.6071351910701263 8.326996615098855e-05 98102972.43268782 13455.044797160714 279891 42899 477396 ELF_20190714 76603947.36354055 6730.509988969675 0.1662089181834072 1.4595055142032137e-05 25968669.621556636 2280.347945430953 86535 33377 1102918 ENJ_20200607 185246095.7210157 19153.22483345728 0.20109304088293545 2.079169447260597e-05 11431257.925757876 1181.9166948113027 55804 15537 107410 BNB_20190929 2451651150.5062094 298672.33764500817 15.762523864743166 0.0019202690598521786 129681853.26000327 15798.488400482573 1040435 56569 1307 VET_20200317 146427838.37033984 29011.43621248279 0.002319609582031264 4.612623527588951e-07 93825939.04378003 18657.611060240626 118701 60855 265359 VET_20201129 994906571.1683953 56203.904984802626 0.015336851773872135 8.657892027738774e-07 166861552.3709797 9419.594877156993 None 68538 122046 NAV_20200325 5133367.25978528 759.6824975321027 0.07522782584332174 1.1132899659892085e-05 158530.70213547896 23.460818920412873 49502 13959 1082339 APPC_20210401 19498106.77778817 331.5759680956767 0.17431879816807438 2.965646745899562e-06 1354754.7183903928 23.048139181253102 24560 3118 857504 AE_20200309 52592178.85188304 6510.144448390019 0.14924931544123174 1.8552796902584284e-05 15716290.071075602 1953.651424723487 25450 6342 460321 ZEC_20200621 483647164.3787441 51697.674917102355 51.34356283014486 0.005487571780274205 271947822.9756661 29065.633875179592 71877 15858 226404 UNI_20210727 9684226981.427572 258522.75726064728 18.57870420102536 0.0004964194894337781 503649048.520901 13457.408052535502 None 49383 1613 GO_20210930 28356170.30576939 682.6509225347626 0.026009448158696116 6.25446387125944e-07 583918.7813689098 14.04143178870416 None 1125 253298 BNB_20190104 837887454.8053683 222185.0401504748 5.800075782066762 0.0015381941417138313 16772990.672760751 4448.2377405537745 898437 46687 1037 DIA_20210421 160330812.85149446 2837.9384928039444 3.842993673296156 6.81576064689874e-05 74595468.83034696 1322.9916677296053 30747 352 265172 DREP_20210708 0.0 0.0 0.4365425446792689 1.2851699462298726e-05 1004444.9509311044 29.57059923053812 4084 None 201937 XTZ_20200407 1328299304.2170727 182626.10115164693 1.890019990166331 0.0002593810273717609 163558622.26008263 22446.325275954605 58699 23073 99470 FIRO_20210710 60128742.60506239 1769.7613774436309 4.983458084142571 0.00014664603678639238 4462380.40783305 131.31251239460425 73653 1066 237934 HIVE_20200718 76504766.68359293 8356.272294052385 0.2110800105693579 2.3059346685915108e-05 4172496.8686731104 455.8226597634812 8064 91 125013 QLC_20190531 9455246.976124477 1137.5876900282153 0.039387149147517724 4.7399483262809595e-06 4629268.024361723 557.0977260069654 25021 5799 940522 XLM_20210620 6775354268.794226 190056.75552931646 0.29219252895106496 8.206821945828495e-06 380178808.77817386 10678.095714562864 594324 194323 22825 ONT_20190627 1084701865.8431687 83520.4246644818 1.6672697598720254 0.0001283868809832253 305518412.49646974 23526.220535769186 80585 16262 232873 WTC_20190509 50901274.43234086 8551.356993986174 1.7875605410169275 0.0003000871748543053 3537734.2366020815 593.8980236402621 55670 20248 966813 CND_20190805 17034014.489012945 1555.6257113075446 0.009771755857043667 8.922482770421533e-07 301527.4423125684 27.53213903623976 36068 6131 388996 PIVX_20190524 40582926.799487755 5148.402463632008 0.6750123276600557 8.583406948023288e-05 2205853.4074389376 280.49469154684056 63029 8603 309234 APPC_20210930 5654504.161332476 136.16032982985956 0.0486267462335222 1.1698396087381133e-06 338555.50642399944 8.144810661794873 None 3114 1154586 WAVES_20201201 706646561.7897563 35963.93547173499 7.041170431898275 0.0003584428498959852 76680464.41150509 3903.5504765643827 146234 57143 211690 1INCH_20210202 483375812.43571645 14486.563896302334 5.011209145585213 0.00015005995514707452 661205900.9950383 19799.717984971343 None None 12553 XZC_20200305 52881016.61937484 6040.674471743589 5.510767309046138 0.0006292657123931194 26823283.938838992 3062.9079273205652 63705 4092 107900 SUN_20201031 0.0 0.0 7.042785120083856e-05 5.2e-09 4.930933605934707 0.000364072654690836 36 None 8100036 CHZ_20211207 1728265655.1236198 34240.47714918502 0.3232278590384442 6.404477670759632e-06 316001375.2911817 6261.291208011242 None None 45115 KAVA_20210511 403169040.4788965 7222.101966995149 5.765329818386625 0.00010311475298771577 150645108.2432374 2694.335556618009 98745 None 74239 STX_20200418 57116619.657250784 8052.503657621937 0.09006606809338996 1.2792227836909955e-05 120418.10351987531 17.103176018715377 35856 None 63028 ETC_20200711 741953096.3655989 79906.08599740923 6.376977091983775 0.0006868151056547435 666266076.1723044 71758.38942179737 231910 25596 378218 KMD_20201224 61986784.11403187 2650.794470502267 0.49843246195330587 2.137421433722788e-05 2121870.5977720935 90.99190043703727 97007 8416 269586 EOS_20210117 2653164479.5283995 73152.3300099067 2.7857669116469532 7.697726152829883e-05 2922151720.9762807 80745.8931005735 192957 74129 74168 FOR_20210427 54486867.171059504 1011.3979271413604 0.09680853233464853 1.7958729750153075e-06 107204003.02913757 1988.7169778379255 None None 121436 BTS_20190902 90171011.09406959 9270.698417357584 0.03327148967403716 3.42075529344606e-06 12909696.318413517 1327.2898944604324 13607 7155 133075 XMR_20200229 1198620514.6202853 137565.50299166428 68.63780839924877 0.007877551336320452 133374621.02708553 15307.385952530658 320732 166188 77626 SKY_20200217 11067253.042941462 1110.2081559212393 0.6485607510000884 6.506895555196399e-05 1847214.864696291 185.3278073650093 None 3825 299478 TCT_20200626 4206625.950762605 454.2344706669286 0.0072530985107696734 7.838815814569764e-07 976494.6601874403 105.53505889592502 None None 906216 DOGE_20200903 389604298.3621091 34150.926700251 0.0030914174474806246 2.70918004785026e-07 119362426.6313002 10460.38945520106 152017 166639 90441 MATIC_20190522 62459642.03780136 7848.728340414483 0.028913648277292675 3.633484824717512e-06 696647294.9053901 87545.41626651668 12694 429 412270 VITE_20210428 103965373.268433 1887.027759594327 0.17150450388087446 3.113612161255757e-06 18802780.66384817 341.3587702690701 31182 2170 143258 VET_20201208 1169200233.023005 60873.466929575094 0.018103905165103903 9.434769823386356e-07 239177195.37279162 12464.613379079454 None 68848 123089 SKY_20190821 12322983.131323528 1145.1959672384357 0.7701864457077205 7.157474795240223e-05 282305.494256348 26.235133985523856 16361 3803 472188 NXS_20200605 11638939.97397707 1190.5500562205914 0.19493136926631546 1.993957810230614e-05 133702.60421299472 13.676472541186936 23363 3523 680331 LTO_20200315 6486084.069043765 1254.2170874456604 0.03034370674189891 5.841527459489069e-06 1738493.6524798293 334.6808778337422 14546 414 867701 DUSK_20210418 129053545.00728709 2141.6590945516796 0.3596610627916976 5.976385987343147e-06 15084801.398175515 250.65987126363882 None 13554 307369 DASH_20210603 2066055426.283329 54905.96422818064 203.49291509683846 0.005404322068988971 889864290.4970057 23632.828795290556 395387 41030 52326 FUN_20210624 174908466.49942425 5189.932432036934 0.016983252575553665 5.039317713281242e-07 2783586.6024163407 82.5953521541601 3711 323 191066 AUCTION_20211204 233370744.52591178 4346.787497746101 32.607932185395626 0.0006067730878810767 111268503.27391222 2070.50029825736 None None 89055 AE_20190615 140795791.18248045 16187.490930396329 0.5257014504430831 6.0546933714410395e-05 35954345.58190559 4140.991767966092 968 6363 374739 ETH_20210509 450716254202.56744 7684665.525188767 3912.7429165968124 0.06660838535409372 60174921874.24125 1024384.8037780408 1082929 880881 4856 QKC_20190324 57226563.35877752 14301.382525140116 0.03625502387456088 9.052740615772126e-06 12894024.86272036 3219.5886280308787 None 9068 152354 ZRX_20210207 1087871826.1711535 27643.500023695557 1.4441236382904465 3.6724198262028834e-05 966146988.7393028 24569.20766612938 174015 17488 76527 TWT_20210325 188195104.9607501 3561.457459424426 0.5425582438000577 1.0298058725746815e-05 17548726.765371747 333.0846427217516 None 14040 7173 PERL_20211002 0.0 0.0 0.08519032703256987 1.768635561878132e-06 3888081.137469594 80.72041517773783 866 694 2531350 CHZ_20210916 1849751324.29522 38382.59649920705 0.34600996601790984 7.178914456949773e-06 209122993.19855657 4338.823232264989 387137 None 56524 BTG_20200217 194674979.68590978 19528.761957687708 11.189634549415295 0.0011222417011879423 34262414.84341332 3436.2794022337735 74995 None 182910 BTG_20191015 138437602.73059466 16585.30775174841 7.90767538016091 0.0009474195118038608 11422986.935517829 1368.5894002353398 75013 None 268715 PNT_20210429 67095469.79219323 1225.7589807576007 1.6966207204257573 3.098738992618156e-05 19942733.26270122 364.23771345317346 37476 253 387057 CFX_20210823 274618101.3398608 5566.573670891622 0.31540696569843146 6.401688732169966e-06 10190187.677061416 206.82615390718277 None 1218 203830 PSG_20210304 0.0 0.0 10.108317654504837 0.0001994997330584431 2926010.3982279943 57.74831315402587 8721197 None 28774 LTC_20200806 3832937432.848773 327423.05850842653 58.846762761266596 0.00502154674411843 1912094679.7644427 163163.99344803393 134053 214579 128052 LOOM_20200506 13287341.500260014 1481.6660395993397 0.015982302149412923 1.776176705498374e-06 26579140.965008907 2953.845484390403 21547 None 679893 FXS_20210304 56180418.35167934 1104.9227746863446 7.658320613768318 0.00015114611257214128 7608094.035688256 150.15483100958122 6802 None 69148 MLN_20211104 193216215.81789815 3069.4290121728477 132.94978534834686 0.0021085073893463407 12155259.665262297 192.7754509454555 29771 530 105392 CELR_20211125 698990768.7368199 12218.534100397004 0.12377172651362776 2.163881213025817e-06 191131747.12407273 3341.525633231308 91499 None 53727 UNFI_20210823 65449971.38412018 1326.6863534846332 14.013675500454335 0.00028442995337433336 34992423.46942314 710.2271902571364 None None 252503 ICX_20190729 128459944.54338413 13455.868172808376 0.26207680449250703 2.7470843855134698e-05 23406644.076773543 2453.4802530536167 114066 25808 240617 SCRT_20210610 102756776.79728757 2737.5582667090216 1.4738889712101313 3.930292188533058e-05 3840038.8734775353 102.39899397374838 82892 None 49148 MATIC_20191015 33432953.564620264 4005.6848008990983 0.015251836005200291 1.8272000502934576e-06 42230307.71251894 5059.274198195751 23851 1186 206153 AE_20201111 39371417.24325266 2574.03894316623 0.10623590169683828 6.9543419216773735e-06 11792193.428301767 771.9324992504679 25587 6346 520399 ETC_20190616 955124697.1216377 108324.74927577475 8.58872067208336 0.0009740628160219134 742015112.6449497 84153.31662875414 227838 24653 633324 FET_20220105 378589816.4617026 8174.3484871772525 0.5433423666575448 1.1808991399664814e-05 31114970.964955915 676.2521148246312 90801 7186 85877 DIA_20210722 54105166.91385355 1681.279117258954 1.114504631572276 3.463242921206237e-05 10305467.156773841 320.2349740805527 34013 400 454629 SNX_20201228 1100142509.6186357 41437.128552297116 8.029596066911019 0.0003053274580182828 248076382.52323994 9433.168323662747 49369 2779 47105 APPC_20201226 2561017.277038512 103.70544452698462 0.02311460041551198 9.374023496719871e-07 89700.66530372752 3.6377706259817337 24268 3132 524554 ARK_20190329 94631661.74482648 23504.76469198156 0.6734895621990177 0.00016728085456314975 2130073.487220492 529.0661254810343 63438 21741 175186 DUSK_20211204 103311778.63312416 1924.2958179897944 0.27084687047353234 5.04827025214611e-06 7865701.935582915 146.6075241121594 31114 13774 337609 REP_20210805 172480379.3580513 4326.149018506409 26.050792783488014 0.0006550178297602549 158138716.23095682 3976.219824385898 152431 11293 167896 PAXG_20211221 336454583.48580474 7133.445923583403 1801.231204898442 0.03821865747132262 8152025.267954447 172.97027753362985 28005 None 32401 GLM_20210128 110492519.19826658 6393.577954391452 0.1096569382386154 3.618784473905707e-06 2189682.125179074 72.26161704555484 145881 20293 197039 FUN_20200313 7807011.443252411 1624.703188976941 0.0013085602660529076 2.730676806309784e-07 621831.4351666248 129.7625123958314 34933 17008 312525 REQ_20201106 15362179.154003184 987.8463544760202 0.020083348448373693 1.2889948810214058e-06 198593.23195022912 12.746164318533804 39420 27527 293943 GAS_20190509 33450086.668302096 5616.069438351068 2.4004167668434975 0.00040301561479510285 1020213.7490504123 171.2877850943522 320848 97574 218328 AE_20200323 32606043.062829208 5588.715299106467 0.0927701011432899 1.5910110164675022e-05 10227019.579696136 1753.9380270582258 25375 6341 484575 NANO_20190813 147486199.97782344 12958.001683919605 1.1072000096744639 9.728494171585634e-05 2682578.2805926776 235.7067100752752 98799 47276 262200 FIL_20210115 961793556.0164002 24625.63126510279 21.597018558280833 0.0005514803560245514 95089736.96209514 2428.118578155795 44992 None 31509 OXT_20210702 173301149.1175656 5157.665745646892 0.2924912493759407 8.695944860666515e-06 29275762.95759027 870.3864507957795 66845 4286 118089 EVX_20210703 7774599.952032233 230.01618709353573 0.3566330253225795 1.0551201242822736e-05 94966.86766952356 2.8096515494472873 18262 2808 1315536 EGLD_20210618 1513663268.3349447 39821.16848222951 85.1001905059105 0.002230402236682712 26754124.25115232 701.2024087785428 246319 9116 30591 CELR_20201106 14553194.686417181 936.5781347905281 0.0036607936876457167 2.3549511224753817e-07 4084701.9924350614 262.76469975691526 25084 None 314997 FORTH_20210602 186924488.10460883 5094.414064838362 22.02446635316566 0.0006004176081957642 11310492.06079904 308.3397564221137 29454 None 68783 MKR_20210826 3339322699.9896293 68127.27977695751 3703.4536443241877 0.07557391451082195 87280971.44160865 1781.0847137937658 None 29621 37059 MANA_20190627 63827733.744105525 4915.0076687425 0.04961435058848367 3.8045733946585662e-06 22114399.404379833 1695.7967728048043 44871 6274 136694 ETH_20210711 247860822594.06396 7350609.299270094 2123.0585974934124 0.06298163116934868 18091111748.440804 536682.1852816547 1424384 1037094 3687 TNT_20190329 8716152.105316486 2164.932081637872 0.020334144396800487 5.050591540517792e-06 787281.2250236846 195.54478504336547 17218 2510 1213867 GO_20190909 7269115.72372069 699.3422945483758 0.009346432355397304 8.997455540963462e-07 137811.41244412045 13.266581400841304 10236 686 740517 XZC_20190227 37666957.145331345 9886.523830315198 5.472034198224068 0.0014362560875918102 1183227.9360720825 310.56427365599484 58727 3932 292752 BNT_20190515 43836931.533294335 5482.92835251106 0.6738092678928699 8.427706524825051e-05 3856323.828962987 482.33182658385334 808 5133 153854 TNB_20201111 7086612.396269896 463.3110891449627 0.0020512228356085152 1.3427574603810958e-07 389233.0970819728 25.479710729673624 15785 1426 972434 NXS_20211120 48923599.97584459 1021.8120047259132 0.5574779830286214 9.582036180489398e-06 170030.90404182838 2.92252308419232 26881 4143 533559 NANO_20210203 475900126.98798347 13364.612607520594 3.55496173198961 0.00010009825783027994 41462530.950778656 1167.47448391918 None 61967 188898 MATIC_20210513 6923298885.582311 134310.86893393614 1.0888355070559748 2.1706255613132557e-05 3218679115.1535134 64165.313454075156 273628 22727 18351 NEO_20200425 569259620.4302322 75918.35672514369 8.066549813935723 0.0010762195726343896 449424758.28427094 59961.16461791504 321041 99293 240659 BCD_20200501 108004539.26445045 12481.830901941526 0.5729546855985238 6.647034271284028e-05 17267680.517960086 2003.2799639043558 28788 None 681100 XEM_20200324 360921984.67993313 55677.366972758704 0.040102442746670616 6.186374108771675e-06 11621876.441524867 1792.8403007111576 211782 18018 216330 TRX_20210814 6406569630.018123 134458.1530397424 0.08939455040612626 1.8725616348810903e-06 1360615922.494432 28501.034623435073 1087140 115251 26326 XMR_20210111 3322389408.376705 86381.43861502611 186.5478922522337 0.00485020668038493 1379805933.349682 35874.66936650558 334565 189130 59059 EOS_20200907 2741105439.9443574 266925.8743024411 2.905708204209425 0.0002829547129322107 2762224466.742514 268982.42222298693 191152 72653 82491 ONT_20190812 588699682.6713538 51007.73721184644 0.9053285701912729 7.839497164757647e-05 70977691.98997873 6146.159896389003 81556 16292 237451 APPC_20210703 6061067.606248876 179.33201436841657 0.053742379936473225 1.5900004366254816e-06 202052.01829544344 5.977829744245922 24914 3128 638230 GXS_20210513 81431226.91402468 1579.503727040535 1.1313473462875179 2.2553741613510422e-05 433820913.83292884 8648.347326072475 None 649 810772 GTO_20200417 5960198.581027313 839.45981960859 0.008962246584986079 1.2644962262895756e-06 5675835.718194158 800.8118030047758 16817 None 999939 NKN_20211125 336056298.2881001 5877.933913533835 0.5177708059328171 9.052103829931622e-06 22090094.03390703 386.197565634524 36056 4485 134522 GVT_20190901 5514482.551715603 574.4963191342769 1.2429400582322139 0.00012948893784001534 251567.93251798223 26.20823438798226 21300 5708 171342 NEBL_20190922 7469228.122240067 747.8540583992755 0.47974023845120684 4.803383675414805e-05 193587.61644661715 19.382897703226927 40409 6106 485969 RLC_20210511 820716086.2227443 14699.355851678532 11.691074050635965 0.00020923471872118555 3193002344.266028 57145.044542955926 40594 6534 331686 KMD_20200807 81609529.25857401 6935.922466004907 0.6735430201458976 5.724383178891965e-05 4703461.05039021 399.74303814469187 101601 8375 322159 BAT_20210723 761852817.2320031 23555.82366183017 0.5123237818970495 1.5824847757299103e-05 64411748.6495557 1989.574078303206 208544 76539 27687 XMR_20210204 2755286590.398131 73544.08465456282 154.7427790586968 0.004125449838630189 423543188.95324135 11291.681532081568 343109 194322 56021 LSK_20200317 111313876.81512968 22053.435864831685 0.8010179856686409 0.00015922667850579525 3928328.7173757297 780.8747680297635 178223 31314 164419 LOOM_20190704 45830093.8464224 3822.2303905597014 0.06621397269778792 5.516140675840524e-06 3093134.238297409 257.682221629897 20537 None 438184 MITH_20200305 4261509.35650886 486.7825193551208 0.006891491623232067 7.868053113580273e-07 3651917.948370607 416.94143960580203 93 2083 1367265 EOS_20210310 3957912455.09806 72412.74561245191 4.162334665161994 7.608983474231648e-05 2977925856.203852 54438.17100290847 202771 79313 56230 OMG_20190530 319502647.10835665 36978.631275454536 2.2769526019455357 0.0002633037536714266 168043680.2628003 19432.34644241168 289740 39338 None LINK_20190512 253846047.01467457 34766.010295709464 0.6943876349972975 9.53343413348983e-05 19685867.303013764 2702.72553592682 11910 6706 419208 LOOM_20210408 152174519.63732213 2701.633339484382 0.18165653226520054 3.232723793019529e-06 42449846.24149713 755.42908500845 30635 None 227583 SNT_20200320 57769769.72085236 9335.920662066032 0.015362624894842157 2.4886715444347804e-06 79899385.38824838 12943.317186656132 110418 5609 189796 CVC_20200411 13021189.383012338 1899.0592069602806 0.019412147398950367 2.83044252409744e-06 7125707.45083942 1038.9837336710318 None 8048 115940 ARPA_20211111 177653922.2838718 2739.489658601168 0.18230601016258188 2.8072786343828517e-06 204291012.4088679 3145.819459382626 None None 289530 XEM_20210210 3002680576.978128 64470.44310362036 0.3336311752568621 7.16338256786486e-06 181171541.68218768 3889.9274400247823 228231 18271 60114 HOT_20210120 126998057.90981963 3506.9899753267678 0.0007096793427418623 1.9690405332368634e-08 11615275.792050166 322.2715874877978 27410 7502 800111 BNT_20210724 701887743.3389924 20997.895324794015 2.9790275424855928 8.906195625563995e-05 49382711.64634395 1476.361276190798 None 7617 38654 BNB_20210828 76421141931.36273 1558092.1039226735 494.4910267549098 0.010080431883335723 2356866526.5502834 48045.831356975796 4871528 605657 153 VIA_20190220 7713860.873070237 1970.9785980713277 0.33363755007608803 8.521241860888482e-05 258117.88102676216 65.92438088421021 40593 2227 3168832 RUNE_20200927 105558808.12743464 9830.824186961763 0.5296581172860225 4.9339584591717024e-05 4709222.348060523 438.6812300619642 17452 1855 216970 NKN_20210124 16355954.985892534 511.11768790078696 0.0249531092180663 7.78633457488206e-07 3352088.6922070663 104.59812384144122 None 1025 373477 JST_20210124 39920836.85708732 1246.8856851178664 0.02801854328212224 8.749407079458077e-07 92023763.56591463 2873.644644244346 None None 184317 GXS_20191216 26558513.96402696 3731.9417060864703 0.40771553046587006 5.734234494683489e-05 14382215.875215884 2022.7583258212694 None None 1070917 ONT_20200610 383924617.6470789 39283.375913211494 0.600954254316239 6.151186314809248e-05 136386187.95446086 13960.07843939831 85558 16476 148134 RVN_20210217 639294463.4270374 12999.174318707708 0.07880833340510236 1.6016105581868015e-06 115022361.84941171 2337.583110895647 38734 15969 101877 MTL_20220112 122034122.03937948 2848.316508952007 1.8880510624133435 4.411531199787672e-05 10704255.444831671 250.11059184496688 65724 4508 188611 FTM_20210125 141379889.4885606 4388.978873522334 0.0559616318267462 1.7345035801563582e-06 153833042.01886705 4767.980371875843 29491 2892 149161 NAV_20211221 24361954.86667203 516.3763719890543 0.3360112899678185 7.127466338133115e-06 112806.21751454631 2.392843758744108 58662 17315 706369 PERL_20200310 10334892.062239084 1305.364811401947 0.030008514445364644 3.7864781844716467e-06 2076818.83352558 262.0532656010625 11527 473 686395 ZIL_20201106 211559441.3007888 13615.01383031378 0.018703106322914696 1.2004078090567792e-06 19020903.604238484 1220.804759788471 97640 12284 75439 SKY_20191026 10022208.921343694 1157.597157668788 0.6263880575839808 7.234982235429925e-05 438795.2158476732 50.682249656778 16345 3805 1313874 SRM_20210128 94595354.56410795 3123.5203674050445 1.894243135934799 6.230873967765402e-05 121809323.41791753 4006.764115532967 31449 None 88356 BQX_20201124 33690440.74190542 1839.6045096712764 0.15054038012057636 8.199715753676242e-06 644814.0978158735 35.122086923245824 16299 82 205091 BEAM_20200309 28546040.40757229 3548.858869944738 0.49371755206997325 6.137275366198958e-05 37029932.76545616 4603.09529650322 15013 1471 244463 OAX_20210202 8696908.617101848 260.50235379370446 0.15390299873346974 4.6080860794227855e-06 706167.5456729358 21.143713012317903 13017 None 1390628 RDN_20200322 3685584.686714561 598.4217651401536 0.07264362831301648 1.1788678291691953e-05 571975.4494722249 92.8207293765607 25122 4323 1385636 HNT_20210111 93948211.49366562 2437.045935941568 1.457627654188209 3.789801803977666e-05 3073442.8794299206 79.90888026457453 None 2148 70077 ENG_20190130 19982924.02556366 5854.255744766209 0.2590887762878703 7.589695689966287e-05 330800.2838542964 96.90398498076965 61264 3135 196412 ADA_20190704 2574110651.856144 214680.86002961654 0.0827285980601328 6.893308179384964e-06 321767772.31681174 26811.096389687766 153279 74352 97209 MANA_20211111 3230483016.7823668 49829.01330492694 2.4858269188833146 3.826921964420385e-05 1887800484.1111555 29062.623315439017 239106 52079 8687 AERGO_20210617 41359222.22721567 1081.3178024515084 0.15324842949878317 4.001379993560676e-06 18763959.135449708 489.93474797844306 None None 351474 VIBE_20200721 2914186.2560068895 318.1243178552059 0.01557291505999202 1.7000021773712295e-06 456075.38965263 49.787027828 18805 None 2048051 WRX_20210707 500523908.89054376 14656.341204137456 1.1504360134446858 3.368437570506105e-05 14015766.847024655 410.3768925453732 286350 None 1268 REQ_20190726 9884066.10720755 999.8896028857077 0.013549261719034197 1.3707857381537579e-06 179052.9966717938 18.114883253497492 41510 29688 592890 PERL_20200423 4573482.705371366 643.0970878470854 0.012979830466345528 1.8244840708651847e-06 1851104.4576466165 260.19681884448147 11651 478 526137 BCD_20210511 1181160208.129845 21155.055333509197 6.216527283247804 0.00011124063296596373 112435613.60578272 2011.9607387759006 32325 None 1417289 BNT_20210722 662669044.972903 20592.514505477855 2.841035469197633 8.796775284302557e-05 62164846.78152052 1924.8270345409553 125238 7609 38654 WNXM_20201018 58031763.73477359 5106.8308171567405 29.424883383036224 0.002589151372460169 6916163.049511884 608.5663218677558 14030 None 71459 IRIS_20201115 44237481.719402485 2748.9575321942157 0.051037564925863275 3.172782050704549e-06 2833653.0575562385 176.15580939251535 10776 None 401587 LPT_20210809 442112494.24250937 10049.761561069157 18.33552122111838 0.00041682569142584996 53517253.4938181 1216.6202379390318 14892 1272 108437 DLT_20200626 3225434.062965658 348.2846707577322 0.03929689838641483 4.246866771538833e-06 103748.00843145486 11.212181818736 None 2563 4282096 MDT_20201224 13365751.93087134 571.5712118131729 0.021994515150084017 9.43343439874659e-07 1474211.700054236 63.22885168156661 13371 71 1448510 BNB_20190401 2518457976.521229 613730.1983298532 17.38018693909712 0.004234316134215971 220740527.94456673 53778.77592607678 938306 48446 1082 OG_20210318 0.0 0.0 10.111523971305184 0.00017158747869725437 5368501.904008906 91.1007785477657 None None 445935 KEY_20190616 9239028.480584564 1047.4225686726757 0.003535607228810627 4.006606733636463e-07 1466130.497213191 166.14425591895343 23927 2836 824192 RLC_20190726 20863685.672550667 2109.862238126836 0.29820305297075916 3.0156098526010014e-05 413853.0588743999 41.851327457505256 24944 3313 855809 SYS_20210318 176560430.3585999 2996.141745686215 0.29011779489973616 4.923153136294971e-06 8694671.424225947 147.54420322967636 63193 4827 261664 QTUM_20190818 235879063.56445968 23076.56750369085 2.4580188287497298 0.00024049067628771566 286810126.4363668 28061.282715206566 178576 15354 286987 ADA_20201111 3287678333.8982983 214943.03879823835 0.10562814231721475 6.915258765012391e-06 461012942.8182344 30181.5758913369 165880 89828 32496 ICP_20210702 6288629797.705527 187040.5369483128 45.99767561200372 0.0013676447686638647 475997084.8034295 14152.778684338005 237276 21206 23001 XVG_20190419 136935298.1875179 25969.677478397207 0.008643206723455752 1.6386635595449788e-06 2209957.829047912 418.9853926279846 305282 53187 400359 PPT_20190703 23037907.541393608 2132.1315629610685 0.6381834890681171 5.900824719808361e-05 2581449.7840769724 238.68813530522849 None None 660913 WBTC_20220112 11434512561.016294 267043.7576814065 42825.96387312913 1.0007726569791005 359190974.8548016 8393.704980774506 None None 208519 ELF_20200207 42504720.926835835 4364.211990589281 0.09237209215216091 9.490847697655617e-06 45581313.989480086 4683.290145908584 83539 33472 940100 BCPT_20190920 3942290.983177466 384.61400817281856 0.03395228749422782 3.3111088330908186e-06 771745.4339589487 75.26247307234927 10898 3119 1056617 FIRO_20211207 76612021.31161661 1517.640024005828 6.0679321028757425 0.00012023381548513756 2465247.795809277 48.847967245052146 77357 1617 165193 DOGE_20190923 313871957.0318112 31250.64021283444 0.0025880160157551882 2.5764984330958275e-07 62033457.106847316 6175.738637717467 138215 141071 96250 UTK_20210124 92403875.53382337 2888.7207472858227 0.2055446750151831 6.4137245576901185e-06 4577632.488056794 142.83840679677664 57495 3167 109478 YGG_20220105 458055636.1155974 9953.26503354179 5.204516623534111 0.00011311485320905163 28744411.83836933 624.7304333653575 149914 None 47221 ADX_20210219 84932788.56498607 1643.1971491307722 0.7507529934216123 1.4519644714795135e-05 12719279.134947699 245.99224470095993 53412 3770 10332 NAS_20200707 19175472.149064742 2054.5659749768442 0.4224674201784201 4.523552948502713e-05 10443349.115040477 1118.217415715354 23464 4929 720251 KNC_20191022 29754543.895926904 3623.34727470642 0.17883754268019614 2.1761037544110043e-05 9992230.4003838 1215.8593639423134 98426 6716 165975 NANO_20190920 126259239.98182745 12317.982758118089 0.9466370287743932 9.23072525914113e-05 3147358.1168784527 306.9011372463087 98444 47682 228535 SYS_20190801 20500579.856240943 2038.5196793094972 0.03658184221617031 3.633053701580357e-06 944271.8105522174 93.77849744013963 61036 4589 678710 QSP_20190329 0.0 0.0 0.023474127542410527 5.831186991405466e-06 249269.4341787276 61.920796813935 56848 8552 1062367 UNI_20210310 17055000313.178308 312033.0257703668 32.89108641593648 0.0006007133478008194 1193543527.6781414 21798.535906984947 254970 None 2571 REEF_20210105 0.0 0.0 0.00990103327233735 3.1646551532140587e-07 7150613.480480127 228.5541839644908 14154 438 142268 DOCK_20210220 26282451.85870605 470.53042966415427 0.047087379708571735 8.41635726146244e-07 8033225.639435423 143.58517581967047 44062 14830 226889 AMB_20190122 17318626.891341817 4904.244010880341 0.06391786495322058 1.8089626970597983e-05 608306.8848404678 172.15913952169828 17915 4975 577805 AMB_20210112 2252978.0162850227 63.54706138077306 0.015326535423590887 4.311425511040408e-07 380476.8222912114 10.702989505775628 20238 5484 666960 POND_20210513 107532485.62365405 2086.112678569445 0.13682446348420713 2.7276358635182187e-06 11731611.030083809 233.87311134018105 16736 457 80924 MFT_20200208 9430505.99560607 962.7897244115356 0.0010280772515073242 1.0493379431456247e-07 1363239.8107209762 139.14316817134522 18483 2460 902857 AION_20210219 94966111.87151542 1837.3260081542937 0.19419863273332072 3.7562274390046763e-06 76007616.83925347 1470.1539960737898 68880 72671 308962 MDA_20191118 13343161.120055225 1569.4259894965073 0.6798501508361084 7.989221457539169e-05 350003.85885338555 41.13050995037688 None 368 1646523 VIA_20210708 10633328.29104776 312.2293334196216 0.458835140488328 1.3472902006118044e-05 176851.08485649835 5.192926883087938 38220 2298 920370 WAN_20201111 34961967.36616934 2286.991441858686 0.27761491585112485 1.817488159899971e-05 2161891.57039049 141.53462612503748 104151 15955 434390 XZC_20190411 61113119.49449086 11514.85572343082 8.434449665583337 0.001589124700936697 2083208.1659674165 392.49479041178193 60111 3960 324676 DUSK_20200901 26761886.238293085 2290.2437017786265 0.09300316766105442 7.977416789787457e-06 1632701.0098723671 140.0461594633721 18334 13342 627816 XRP_20190530 18702381002.157177 2165763.258821532 0.44421148392210086 5.1368021908187904e-05 2770037170.7916527 320323.39375691005 923430 201330 39974 ARDR_20200721 59689322.352855496 6515.0304648177525 0.05992019430533115 6.539839293789183e-06 7963998.971828999 869.2106895759856 63169 6295 1213640 HOT_20200506 97618012.11771195 10886.315452058063 0.0005526866957204826 6.142226728041483e-08 13274131.769053157 1475.2069766603804 25168 6977 565992 FET_20210916 652629087.9119865 13542.144079564609 0.9426745408884399 1.9558338066575298e-05 74733876.04446313 1550.5567927246304 78106 5014 93788 ONE_20210111 60447275.38443562 1568.021194573907 0.006889321800300687 1.7922025973411692e-07 10473199.742421025 272.45201087893145 None 1602 186131 RAD_20211202 355028296.77046853 6211.195915639393 13.921874661767225 0.00024346133532615795 106079514.46293993 1855.0849558230034 None None 185838 WAVES_20190618 243545655.6551026 26127.02463290836 2.436372594450551 0.0002614051029409375 31626172.46072502 3393.2588498796877 139711 56856 49915 OGN_20200901 51320917.18715126 4390.858689209321 0.4115480604414482 3.530081053232883e-05 21912999.399685044 1879.602200466138 70381 2392 133584 GAS_20210703 84930488.06736138 2512.878463606941 6.128285021631379 0.00018098177072157595 6720122.010901189 198.46002212771938 405760 112194 98164 GO_20211111 47456506.76374078 732.0268800601024 0.04480233057887848 6.898802453734143e-07 13947874.9320043 214.7737239603595 24309 1155 193105 BAL_20210725 207046756.7588769 6060.398683871287 19.189573961918367 0.0005616557836492791 25124857.407832816 735.3744019787513 92069 None 131138 VIB_20190511 6726527.9371077195 1055.5862035678467 0.03952158433840245 6.202076251050086e-06 1359137.0764770203 213.2878001995734 33032 1126 1885935 CELO_20210221 502301365.5192787 8957.546441094919 5.1441311945709 9.176398894294572e-05 43776143.63233913 780.9041815423328 None None 108318 BAND_20200403 5764606.633559111 850.0239406418895 0.306070291552223 4.4893232431961744e-05 1488181.9903739998 218.28090422006912 None 1064 769411 BCPT_20210210 2596844.187210071 55.754227726036014 0.022820628372463476 4.899808638841067e-07 513271.6428774439 11.0204363736 12207 3269 1647629 DOT_20210107 9667925163.928446 263767.9292772196 10.097684412122385 0.0002734690607745376 1383529724.4738817 37469.241349166216 106980 7429 41009 GRS_20190530 32729881.66050799 3790.168490190036 0.4520397640022757 5.231822617486677e-05 5798399.100138851 671.0957303563258 38722 107043 6849352 ICP_20220112 6671828489.982092 155633.7709967085 34.252233153554776 0.000800603847308895 662373565.7548445 15482.167913597897 464599 25985 35734 XVS_20210127 37703607.846444875 1185.8914722864672 8.19573324244267 0.0002516209842041953 57872550.2565349 1776.7718425174116 16760 None 82683 WABI_20190305 8552264.14217437 2303.3922445792787 0.16296695603993422 4.3892098796850176e-05 1405901.300196531 378.6531961223172 34654 8009 1659091 ENJ_20190803 72843142.54180609 6922.216985736738 0.08314646251413316 7.90133202708727e-06 2484506.9647966316 236.10041676917 47049 12735 22336 TRX_20200314 668893982.7821337 121104.62472166272 0.010225701434257786 1.8381435543126945e-06 1837942458.0232203 330383.407351872 501247 72197 46870 PIVX_20200807 29493623.291546088 2506.8275356889303 0.4625041599408499 3.928200363844623e-05 502393.9094992201 42.669971624483374 64060 8595 329425 NULS_20200224 27352797.575279675 2749.2987273788162 0.32827339880196704 3.299003652529339e-05 4505702.067202417 452.80329235195705 22673 5206 626543 BNB_20210523 46672829740.58369 1241651.0415941842 301.2701990051035 0.008021876958663242 4283705164.2144713 114061.58281834138 3938606 419733 119 TFUEL_20200425 0.0 0.0 0.0017394088077961867 2.320677175424955e-07 95883.0127699278 12.792479735001072 67713 4022 358410 VIA_20190629 10226916.826484445 825.5821886284725 0.4416344859472082 3.5672312703209416e-05 638168.117239022 51.546999520526704 41027 2235 1573301 FIL_20201229 984958783.1406097 36296.53949185739 22.016665488790053 0.0008111432840606192 78548169.26898716 2893.890539883799 None None 31616 OST_20210324 23300780.922147572 427.59727322837347 0.03367560069605313 6.177655061225667e-07 2688102.745493978 49.312176138083764 None 749 563177 QLC_20190702 7989233.00534615 753.635597859804 0.03329897171094813 3.14008434801572e-06 1067083.521863768 100.62569781781714 25003 5785 940522 CHR_20210806 179077597.0029794 4370.79154392215 0.315049294970136 7.699923813626254e-06 48247576.72831882 1179.1890060739772 76462 None 86794 NEBL_20191108 7679289.177845563 832.9512813220479 0.48867656505229135 5.300539693005283e-05 66715.06712412364 7.2363990152687 40177 6076 508848 LUNA_20200905 161548933.9800907 15400.854162006888 0.37044809354460334 3.5331058433247916e-05 9110670.415227849 868.9196527548642 11602 None 170396 KNC_20210616 174278987.9099908 4315.4228817957355 1.8750948600139867 4.645850821775276e-05 74402398.478999 1843.4397719650874 165824 11092 120272 BNT_20190810 30074078.97016211 2535.3919741610966 0.4990129283429189 4.206710811693161e-05 4674272.698016612 394.04416957382165 781 5130 154213 OMG_20190524 269421687.8791791 34200.709222099606 1.917189788654763 0.0002437884387928696 154644935.5238249 19664.5358856364 289732 39060 None BAL_20210318 589775733.176988 10026.29420284404 54.60055276191995 0.000926339370851474 193980007.32480887 3291.0164614368123 None None 59391 NXS_20201031 11432023.788336322 841.6301084029649 0.18896303925259933 1.3951977624752762e-05 107929.08941791551 7.968882415178362 23158 3516 727039 SAND_20210314 482684346.7439857 7867.89932394305 0.6928524763273516 1.1294232755975203e-05 510332122.8438752 8318.956740693573 81547 None 39001 STORM_20200318 7030681.806368412 1294.2449328310695 0.000905975580185268 1.684393998278391e-07 1574755.3216328688 292.77923936679787 26061 2525 875750 INJ_20201129 15590067.552199855 880.8245951610537 1.1525062091640748 6.506077301496823e-05 4137173.8917044587 233.54991873481256 31146 1720 178085 STMX_20210201 25656244.46842802 776.1929959274004 0.003174560286514085 9.575781187971982e-08 9754768.702995712 294.2439966756314 22359 195 181816 BTS_20211204 142848733.610552 2662.5340406632645 0.05270789789998523 9.824138361150164e-07 61293890.7102901 1142.446743320559 7991 7498 195981 HC_20190908 91596860.85680674 8749.507348060039 2.0703124760127065 0.00019776082598834673 48772972.94198711 4658.90223174961 12904 852 399646 LTC_20200629 2687405550.014637 294453.317293404 41.399549790866814 0.004536060726044042 1081999206.3646648 118552.35456411507 132082 213990 123439 VIB_20200704 2746699.6304472648 302.86191435478855 0.01505865159167404 1.661345190000603e-06 277176.8725050396 30.57952839351578 30782 1100 None TFUEL_20190706 0.0 0.0 0.008765472540553565 7.975281526301699e-07 1663166.0023400134 151.3234686694676 None 4010 256073 AST_20200718 11499033.692059085 1256.2070834797544 0.06675301430713734 7.292404880434404e-06 2627440.21031435 287.03359708352986 32230 3462 221691 EVX_20190902 10340762.428721385 1063.1586439926596 0.4810072742459624 4.945399787274637e-05 581785.9984723222 59.81540211828795 18310 2911 505983 WAVES_20191015 88122524.30988114 10559.01987115333 0.8771296604123925 0.00010508319321619627 14796635.363184942 1772.6885351113565 142038 56897 24707 ADX_20201229 35865846.67816343 1322.6566746167941 0.31882074010309197 1.1741582626075572e-05 4598749.290770125 169.3634948489356 None 3746 13863 ACM_20210430 21421542.20434517 399.73438889574413 10.66359182400833 0.00019896885580189378 6072381.832243669 113.30280501111446 None None 44251 REN_20210107 326287465.0745451 8887.068604475578 0.36988928772308716 1.0021553627427335e-05 91873163.58141439 2489.155177810468 32014 986 104896 ZRX_20190224 148411274.3680498 36067.9086978683 0.25400289485392663 6.172949635797977e-05 18512269.98747812 4498.976688541875 146924 15600 295106 ARDR_20200807 66435439.47183658 5646.718525130553 0.06659026391594228 5.658645567229107e-06 7739157.654163406 657.650947428285 63481 6285 1526259 NAV_20190511 11291668.311572073 1772.1517895188665 0.17363083568554888 2.7250197905694807e-05 157322.82589354966 24.690764884910394 48639 11303 1061172 DIA_20210916 96444222.91774671 2001.2030400463643 1.9852088269207488 4.118853717325582e-05 20861620.37976611 432.8308512707666 35761 409 534458 BEL_20210125 36559281.98489706 1134.6180112845618 1.6360680124708888 5.0691744337571356e-05 11060212.520875446 342.68836084673455 None None 430969 QNT_20210902 2471228949.1987348 50802.142069375936 187.7580253492365 0.003859133911036668 38690584.3976856 795.2370931107147 42332 6817 115433 MTL_20190126 10697645.910606284 2999.88743527957 0.26364034094342814 7.393134460029895e-05 4495754.810240535 1260.7220766175005 32253 None 571829 COMP_20210428 509746.1569986622 9.22332053864423 5.5267097664329e-06 1e-10 4080.641872845663 0.0738349225 2430 None 1922361 MANA_20190220 48717364.019085705 12443.73029571883 0.03852839269852355 9.841191885508083e-06 1540661.304647007 393.5265000086402 42365 6016 109319 HNT_20210124 119946608.73617743 3746.4071694434256 1.8118792654145375 5.65799196350671e-05 3494926.4943606243 109.1367752564626 None 2318 73258 ATOM_20210127 1844599223.8944552 56601.29757652575 7.7171447499946275 0.00023685155947579997 528213133.4828369 16211.708922668053 52271 10596 102282 SOL_20200526 4809730.17960867 541.224239315271 0.6022304108336682 6.770857437075721e-05 4453912.36455054 500.7519566448734 51289 1879 132466 FIS_20211021 48968147.50768308 738.7791200923339 1.8103544069201796 2.7413564440010566e-05 48259440.45923759 730.7758501932344 None None 296076 SUSHI_20201129 170642028.77771786 9641.773419950237 1.3640439447321413 7.700240811286211e-05 90203775.69858187 5092.143824609148 13546 None 58279 OST_20200331 5123942.951265453 797.1322995646971 0.007365745830219073 1.1489126151406617e-06 71088.62403720367 11.08843813402475 17788 754 764871 GRS_20210107 30606001.0101672 833.6134844281038 0.4009262643101242 1.0862450446080416e-05 8983183.378931735 243.3848639714451 37592 106782 4269637 PHA_20210823 151191925.85094833 3064.695989037217 0.830770211554783 1.6860292283808618e-05 16789143.38730529 340.7318422924382 None None 161711 OCEAN_20210125 237110563.69027156 7364.216650726062 0.565201054757821 1.751212489255787e-05 62548066.06751558 1937.9821313879754 38858 1432 64181 BRD_20190528 29780819.53244599 3382.0098672816694 0.49659672331933546 5.639519142500225e-05 330522.8643829832 37.5352863438691 167 None None XMR_20190830 1157732950.3292437 121882.78677308375 67.28774234179295 0.007094096192312301 353017902.33440626 37218.41259062603 320389 160627 90338 KMD_20210217 158750726.62079892 3226.205806582181 1.2836787705460768 2.6088021195151152e-05 13284457.41482706 269.9781398243911 97845 8615 263220 HARD_20211002 76053838.23107801 1579.1158461046946 0.9738958610158752 2.0219042623231957e-05 12330596.317557411 255.9953918014406 36382 None 50736 PNT_20210519 72225238.23428062 1692.7029926598093 1.7040845874598372 3.983285783189857e-05 11871223.292685866 277.4890126863633 39867 295 333814 BAL_20210324 547410380.4444656 10045.63695942369 50.99270448903681 0.0009354408903215309 174759764.16142118 3205.898393066943 65151 None 59391 GVT_20191019 4479060.351760134 562.8048972594228 1.009895724442062 0.00012689586984778882 438699.2045749009 55.12362892398684 21150 5692 109882 WAVES_20211002 2613068573.516455 54265.29923003648 26.169593172465113 0.0005433062551566107 131072029.46204041 2721.183054451362 197262 59641 141312 DCR_20210418 2987264372.160134 49574.011392757275 233.15735413441155 0.0038685527022019575 53463686.48509391 887.0708350136609 44158 10900 225224 GAS_20210916 141882022.72202927 2944.030514315082 10.275209756859088 0.00021318707296392995 20117441.51185301 417.39084387762307 415232 113477 100131 GVT_20201228 6466893.756673247 243.57708713774588 1.443457716538377 5.488785135328547e-05 608558.3275737658 23.1405871062 20724 5461 361646 HC_20201030 41842935.7220228 3106.355527180594 0.9291364254186789 6.909741591636048e-05 7565415.490951566 562.6199193759945 12804 846 968527 LINK_20190730 775767311.2605411 81732.78341582498 2.1349502980828783 0.0002244452896560712 62656887.05110184 6587.05880683053 29015 10004 123465 BNB_20200725 2834374931.4004855 297137.54002212686 19.174068633442023 0.0020101260692355584 258626823.26984847 27113.31275572759 1197692 66900 1050 LIT_20220112 74970798.73979668 1748.8441347120356 2.4128772487279857 5.639803979365487e-05 6896846.66585124 161.20531324851672 None None 122432 VET_20190701 459027723.248523 42309.50215759245 0.008171902542318138 7.576336096239039e-07 87785112.60043803 8138.735305064469 111521 56585 139851 RLC_20190325 27253855.01706195 6824.9841669821635 0.3907845608524895 9.793100979807553e-05 348104.8948905573 87.23544194764992 24435 3308 890313 FUN_20201124 24856182.783203673 1357.2261132315755 0.004134589977387638 2.252051080608598e-07 426230.92608628183 23.21617918417887 33838 16554 386328 BAL_20210428 639611874.487826 11610.323640012153 59.40220789324825 0.0010779708902284048 157510992.5317728 2858.3493924227287 76035 None 49519 MANA_20210429 2043936373.6941822 37340.42512724571 1.5497996064557724 2.830392975463464e-05 796499856.7916667 14546.445812929194 123066 29925 13153 VIBE_20200129 2547208.9741040664 272.54682059754157 0.013374457641022434 1.4303625684616828e-06 105539.82559318481 11.287202820654 19596 None 1683059 FTM_20200531 12533789.71361486 1298.579049933071 0.0061332902251396045 6.349868071717775e-07 2031778.617788215 210.3524486907612 None 2368 337633 CTXC_20200626 1068064.424045714 115.33035833781021 0.10448179255017159 1.1291482820067399e-05 12508691.274059221 1351.8304881182355 16407 20059 551445 WNXM_20210823 159270242.17816684 3228.4453659094165 71.3069944556861 0.0014472894785980371 18917782.361215003 383.9666442092026 None None 132696 MFT_20190201 14367660.384812832 4192.4162433169695 0.0027725473535781604 8.09305762892939e-07 2353285.2553516296 686.9232788500921 15671 1819 640099 TFUEL_20200626 0.0 0.0 0.009021710550676769 9.744182553268029e-07 6749651.970682071 729.0174142022062 71602 4270 93022 GTO_20210314 25071122.166678775 408.20830509216916 0.037016561517896625 6.034093488777143e-07 17708730.30984981 288.67115116976163 None None 535966 KNC_20190916 36992053.28899867 3590.0948168141094 0.22055621278296958 2.140507611573357e-05 5810244.492125739 563.8867481250858 97818 6698 182135 FTM_20200330 5780605.024860144 977.57338251484 0.002732065693401579 4.6285133321186095e-07 1025292.970412664 173.69941705076585 21295 2323 333169 NAV_20210902 34806046.0766563 714.6593626479228 0.48665237955178153 9.992249008565995e-06 684629.9833885691 14.057248171784757 52955 14190 1243700 ENJ_20190810 53113245.41057573 4477.590416898295 0.06062758550509735 5.1109941752294515e-06 3678221.5412014266 310.0794583136319 47101 12752 22336 FORTH_20210729 134428719.44162068 3359.9846874403593 15.660398315963857 0.00039142453159874405 19222362.443601303 480.4542045420407 None None 61730 DOCK_20200224 5059113.201923033 508.5017574066773 0.00902931988963901 9.083743908235496e-07 1395474.376428692 140.38855662350056 43269 15046 358417 LTC_20210318 13782080520.883717 233823.34340841664 206.70168198053813 0.0035068492232066587 5582422617.848363 94709.99090784392 151585 279776 84390 FTM_20210509 2069030782.1983109 35281.45987794064 0.8199738193027185 1.3963894118650331e-05 660005010.5415218 11239.676033580832 None 7248 52712 POE_20200313 1830402.7241178793 380.34267855982205 0.0007271029242823895 1.4976610450214794e-07 80359.10156765478 16.5520852704011 None 10454 759696 LTO_20200407 8320852.627380646 1143.6974097436237 0.0394379364004016 5.412351464101758e-06 1505501.332833304 206.6107683789587 14528 420 900520 PERP_20210401 239506701.07041484 4072.059030702531 8.285155524872943 0.00014098747911589843 31795953.63538628 541.0678575291855 16128 None 303684 CTSI_20201015 7373199.522055904 645.9480496763282 0.03716985022732238 3.252656642078512e-06 1252059.268623063 109.56511450695034 18036 144 389719 NAV_20200927 8691810.82122556 809.4792425720123 0.12463253065269206 1.1609974601215354e-05 933671.6332164217 86.97491650654992 48540 13755 951809 XRP_20210813 44736297538.85398 1006229.037656683 0.9659471173643737 2.172505417441743e-05 7982967680.979009 179544.41006574398 1960192 325087 16462 WPR_20190914 3594664.5847570095 347.1448712128537 0.005910123574591244 5.707539712755191e-07 527398.7314628008 50.93208570497333 34425 None 785340 CTXC_20210519 3035599.3039453863 71.14366323911328 0.3038882724867581 7.103033718934206e-06 12677373.13068963 296.3188019002042 19775 20543 377361 WAN_20190411 46452594.71107797 8752.538415671732 0.4379760229408122 8.251854526007491e-05 3676923.3582927533 692.7647877201496 109203 17171 502175 KEY_20190124 6809071.678641545 1916.6359850589986 0.002773841562455054 7.807884549269866e-07 623582.4015928054 175.52766763952312 23524 2812 659258 VIA_20190321 11456987.293967163 2834.2713774862104 0.49527258264593943 0.00012252234108579455 2335622.726945842 577.7948839198443 40953 2229 2390217 YOYO_20190130 3947340.7558178483 1155.6437861886475 0.013544173739842737 3.9675813712568e-06 311533.12721987796 91.2593898918277 6885 None 764208 DOCK_20200701 3718339.782429706 406.455597612612 0.006614040661363785 7.233826616489e-07 468043.3956116034 51.19026244614866 41990 14970 325611 TOMO_20210207 130947196.79945822 3340.4982664589857 1.6118657840893982 4.098989661075975e-05 56664193.89285991 1440.9757140620286 None 1790 172672 BTS_20190130 99125203.30663261 29020.40445511579 0.03681268132866301 1.0783774002836461e-05 11065723.255016496 3241.5530315396254 13833 7230 103474 KNC_20200901 356516406.3413324 30580.43354261578 1.8083293525924926 0.0001551106614071832 103328925.38439174 8863.107782821167 121854 9008 55300 OG_20210508 11339909.978334403 197.89658761557496 8.845769975094905 0.0001543511376956984 3462521.2972413083 60.41804196011184 655746 None 233476 ETH_20210513 465647015108.638 9032053.472876297 3906.108903329409 0.07729853167112592 78772032254.80873 1558830.6882220567 1135155 909784 4856 DLT_20200421 2386447.433721336 348.5008974553632 0.029090711306685953 4.249486281662407e-06 63548.1785108112 9.282932615823 None 2577 None FLM_20210725 0.0 0.0 0.3637702899140375 1.0645582583130401e-05 12632202.576376395 369.6760275981466 None None 74148 SKY_20190714 21790674.488312338 1914.5460723397728 1.3627566565682425 0.0001196657120759146 384362.8965595311 33.751484163125866 16324 3783 456375 ZEN_20200607 56806274.072809145 5874.7786667341215 6.154359207259732 0.0006364701570091949 3231815.061274308 334.2271340040633 62567 5910 57737 BZRX_20210202 43979643.09407998 1317.3417186982847 0.3128284299474433 9.365764655454763e-06 17805433.502211556 533.0765486950143 None None 192726 GVT_20190903 5401693.065606562 522.8394608830714 1.2175178052614914 0.00011784570970379224 207645.28755764436 20.09835599375327 21295 5701 171342 LINK_20200730 2712234237.47645 244524.5986074064 7.0999119738623095 0.0006401007337669795 560189764.6178812 50504.55283118012 68903 18723 75270 HC_20190704 220686439.43348014 18405.251763474353 4.979914257920425 0.00041494821007128236 135268910.89122155 11271.196559927012 12924 840 542452 ARDR_20210203 83154590.78537993 2334.9704228764267 0.08338824721653615 2.3473092398855104e-06 6394162.854618288 179.99032298884765 64681 6340 None TFUEL_20220112 1886178773.9046779 28765.286079276702 0.1722574305695128 4.026039207627498e-06 9835181.929854281 229.8700725584311 None 27227 29092 RIF_20210207 162446175.4766641 4140.852115478778 0.23723740575699695 6.030662033876089e-06 22800994.031223636 579.6096471379502 43887 3038 663041 ENG_20190430 28823969.347657382 5537.099431340029 0.3717832509581681 7.140261522640113e-05 958822.3334731007 184.14606352227273 62018 3382 361311 THETA_20190904 109738646.9083344 10340.73899124526 0.10973723875569759 1.0340606300171626e-05 31520686.69145298 2970.2133485698955 None 4023 310301 QSP_20200308 7955988.483801288 895.0760745838687 0.011295271505226178 1.269070049052128e-06 81773.02691875849 9.18753473388525 55490 8335 347894 GRS_20200607 14943207.67060463 1545.0668781632985 0.1988468214964344 2.0564296531363275e-05 1392283.7400128369 143.9868913666939 37396 106875 None BNT_20190507 38571559.94996562 6742.795103780451 0.5912841402438215 0.00010340159905560205 2623719.8587834076 458.8264937399995 None 5133 153854 YFII_20210916 185989150.32771286 3859.2467417037 4684.905794745214 0.09720106714383864 39753118.91459603 824.786185696354 18517 None 472197 ENJ_20210527 1816860848.248119 46372.773000638874 1.9302213207368069 4.927057510966843e-05 962812362.0187188 24576.62149398098 201247 32447 20878 WAVES_20200105 94476144.0797577 12856.15723922959 0.9450787078323388 0.0001285282935663309 53343238.52597214 7254.544372045323 141382 56855 25440 ETC_20210806 6774444164.175913 165325.635742356 52.57247861363988 0.001283598934686517 2863026631.005674 69903.07534377009 490509 58750 120880 PERP_20210826 815837280.0395055 16644.325698111184 18.268828406759546 0.00037275144974950066 63044513.81579579 1286.3405030885958 25846 None 133566 GO_20200325 5714734.054161451 846.62664992343 0.006193808799184009 9.166163065444175e-07 861130.6142784527 127.43796082569243 10686 678 690987 TCT_20210527 20077675.881395586 513.2110640044885 0.03607127684262911 9.201190762865507e-07 5451336.807840672 139.0546558703865 None None 279525 LINK_20190201 140425337.3411318 40925.06987345612 0.38535030166835516 0.00011230514606651063 8679127.550572883 2529.414621130443 9544 6286 271589 LINK_20210930 10389961502.559225 250159.03529503552 22.921822283192935 0.000551198581603612 959094246.3439779 23063.235622266 503769 67756 29295 SYS_20200607 17899821.206252195 1848.898598120145 0.030445985470595138 3.14791414482873e-06 501514.13963214407 51.85325518546197 57508 4464 931321 WPR_20201018 4281430.649686324 376.94891705877217 0.007040927401939029 6.195445741896352e-07 82177.47169470358 7.230951805447519 32738 None None NXS_20190213 18293022.82737104 5032.4743188055945 0.30645137323732674 8.428491872590489e-05 165447.50850007974 45.50389074789164 22 3501 881147 VITE_20210707 31590207.69378436 924.8308729190046 0.04813423713677125 1.4091896654208988e-06 5561384.530433239 162.8164498265459 33019 2378 205892 XVG_20190522 173688997.53535548 21825.89769805079 0.010836546728311733 1.3617938390910559e-06 4338467.328534215 545.2011814483424 304526 53082 436140 ZEN_20210421 1299111224.1490543 22993.709696158596 117.75160565348388 0.0020883894904614527 338046873.38266075 5995.447227558164 99279 7054 749117 THETA_20191118 88502812.88255353 10409.27249389106 0.08851690982444253 1.0405821427911106e-05 1063994.54426199 125.08047614654353 None 4022 453885 ALGO_20200329 103690790.67483574 16633.187712534516 0.1492686045974352 2.388049624799451e-05 56616922.57226019 9057.766773570325 None 832 354014 JST_20201224 30564374.609120738 1307.6581789423033 0.021206019669975224 9.093749790879057e-07 44635365.74573787 1914.0925748117456 None None 239227 BEL_20210422 124776561.66466579 2302.8418948600597 3.9596848889357394 7.311447579992147e-05 33399594.164288163 616.7141799781926 None None 318373 SUSHI_20211204 1330601649.344263 24780.813429912152 6.901793526867894 0.00012850037567384344 195741890.74969918 3644.4014731138177 173977 None 4035 HOT_20191113 179823850.971307 20459.019363444753 0.0010047202542776718 1.1416659819555625e-07 19395313.580456674 2203.8940321838613 24571 6717 567580 DNT_20190130 6200655.843047148 1816.5622330365143 0.010704260382578473 3.135684997781056e-06 475445.6090193303 139.27610224142097 60147 6534 603244 MITH_20190616 26332368.506658323 2986.4657723930704 0.06199727508560339 7.031226495915309e-06 29429469.046834163 3337.6509247721865 75 2072 556863 CND_20201115 16769613.803728303 1041.8611730882606 0.008685898554559441 5.40030039371294e-07 45026.90869454219 2.799466643818592 34022 5905 337093 ILV_20211002 347606667.98196006 7217.281684704499 546.9878202150649 0.011356000158611962 26138449.02754777 542.6596723597905 94961 None 13370 REEF_20210723 169033627.24783036 5221.35325677725 0.013345035626459967 4.1220810116480133e-07 20743143.994957536 640.7245538854874 185593 12494 50076 SKL_20210114 62943638.91948715 1690.390433748384 0.1116670928020234 2.9879623077168094e-06 16860048.8409641 451.1372972911531 10734 92 244845 COS_20191220 15103539.047920356 2115.067146499061 0.011213587477851368 1.5692903020753448e-06 5175271.158940982 724.2555387718322 9386 None 207553 TNT_20190405 9474409.211693991 1934.9181633351548 0.022101872391861732 4.515398031982608e-06 1319366.1317813322 269.54563528760434 17275 2510 1084384 QTUM_20200317 100701892.57449968 19951.851815994334 1.0465186119299748 0.00020781746650824423 404059449.31501234 80238.04843805383 179653 15165 109238 STORJ_20200806 28251950.416218888 2411.6883371156423 0.19648413430024395 1.677259403825546e-05 5054183.475647623 431.44332204634054 81655 8211 117892 GLM_20210421 463839389.7063011 8210.19762274555 0.4644426081188306 8.237145101631788e-06 20161076.85560743 357.5677867658059 157181 20960 153882 QSP_20190730 0.0 0.0 0.015158869104775971 1.592808464725504e-06 291741.39637046173 30.654540417088548 56766 8581 708512 AXS_20210809 2332118175.9561076 53015.23620319131 42.27244779746147 0.0009611718751230437 1174212534.7157655 26698.715655011347 None None 1596 ETC_20201231 659011074.77234 22821.28209742442 5.6784870724958 0.00019690845372935897 808284548.1365514 28028.250925813772 247358 26221 167538 NCASH_20200208 2790186.7630793178 284.85885549868715 0.0009617021918572336 9.812582548347225e-08 394932.2771132208 40.29631629201399 58293 58472 935461 RIF_20210511 233586369.04535133 4183.59295256438 0.31762488492795715 5.684520786448605e-06 8664094.508276267 155.06097810699777 42940 3241 493972 MBOX_20211202 955820267.313757 16722.587400277982 10.834128209379083 0.00018946380318980713 2382248862.9969277 41660.01370901805 232934 8000 7123 XVS_20210408 494550758.7727879 8780.016662133581 53.03984579730449 0.0009422275053080906 91224998.24987525 1620.5684845162796 48434 None 12944 MTL_20210115 27137934.476605304 695.7007965793273 0.4188386694404225 1.0676761052500174e-05 11772383.844730774 300.09389891441873 None 3361 362516 OGN_20200621 22424980.038548723 2397.041136432371 0.3020838281385715 3.227345070620361e-05 22245070.06336644 2376.5759874334512 64789 2279 179031 AUTO_20210429 63621931.10121706 1162.301324694383 2499.0769065226405 0.045639580305186965 13729399.457109755 250.7341920647988 40560 None 15822 WRX_20200313 15919939.714951724 3308.0329448338816 0.08758308128925657 1.811415334545074e-05 39515073.88987985 8172.607053343099 20558 None 24445 XRP_20210324 25328216010.82461 464803.13849367906 0.5539316085451409 1.0146356174443235e-05 6422561790.015287 117641.95880610115 1293920 277512 10645 BEAM_20210620 54531933.18685799 1529.5954116424762 0.6019125750885612 1.689897712564583e-05 7163311.416397746 201.11331907590116 21169 2476 161429 FTT_20210106 782521692.5671437 22996.129608353844 8.666591954015237 0.0002543305959830127 46725101.01616508 1371.1990655452573 37108 None 5141 NULS_20190629 64141297.56497302 5177.896107263416 0.8647821735774434 6.985138411429052e-05 8387116.035073083 677.4557590074454 21198 5311 640711 XMR_20200707 1142352353.5122712 122375.64978903515 64.8759070175235 0.006946561710059575 76240049.02388337 8163.372655110969 319812 174415 87164 GXS_20210930 37962169.43599613 914.014905779613 0.4996706193988927 1.2015525348681096e-05 4706945.357160407 113.18740597927379 None 26990 828965 LRC_20190507 46978644.3031132 8212.459470142783 0.05947516970536363 1.0400799265649103e-05 13943743.649633083 2438.4306834255954 35976 2465 903966 BEAM_20200425 16928400.572230328 2258.076166723236 0.2812946930369034 3.7529657822418085e-05 70124630.2548635 9355.858619214516 14971 1475 307022 MITH_20190922 9305114.841762032 931.6624464215861 0.017146239738458108 1.7167448154393692e-06 1367559.8851687189 136.9251438494923 86 2080 719075 PPT_20181231 58114919.5534981 15299.216937218007 1.5683787329197227 0.0004128283163775941 1141214.6281010464 300.390271594273 23524 None 437341 BNT_20190411 46556269.653003246 8772.072715479686 0.715710735238029 0.00013484621441672395 4585622.2978376215 863.9716818033644 837 5139 158493 CHZ_20200707 64177113.06162814 6875.037480757606 0.01201501714360644 1.2865031391845023e-06 4091162.054418149 438.0595352477068 26325 None 264986 DNT_20190706 9815673.305571217 889.2121997847479 0.015195930101666822 1.3793424555925637e-06 1027800.3961066689 93.29397494854743 60641 6364 784792 STORJ_20200725 27252764.554844543 2856.387961575684 0.18938222847629657 1.9854010214930085e-05 5573331.232792418 584.2838375983049 81573 8192 105568 OAX_20211225 13872231.26608706 272.8280492268659 0.24155012380525848 4.751674000980962e-06 2192831.0251896796 43.136463798042556 14856 None 1057415 MTH_20200506 2177186.7444716613 242.77720724543585 0.0062856675564353665 6.985511966846083e-07 77104.25160295954 8.568901670845525 19035 1916 1375902 DOGE_20200224 331312903.24520266 33295.493388283445 0.0026838338713183296 2.697135307513096e-07 167584709.26129562 16841.528128040594 139214 149053 115261 STEEM_20191213 44351404.9209871 6153.632143025392 0.13668359678737702 1.8965822758119635e-05 2201792.9700405104 305.5144596818119 10356 3801 203886 WPR_20210202 7516026.935538832 225.19209035013216 0.012371183704794037 3.7046393517092704e-07 1113886.7211150706 33.35613372866005 32538 None 7510517 CKB_20210206 156791236.39979246 4137.691858451946 0.006647127051080206 1.741838037539429e-07 12115676.866024714 317.48372873885216 22786 651 367403 BTS_20211202 129374595.86554648 2262.418928842248 0.04773625090946807 8.347805604879549e-07 10775359.039887618 188.4324823881853 7937 7500 195981 INJ_20201130 15241150.57380945 840.0670038297884 1.1324356590049665 6.232536194825104e-05 3306742.1441842313 181.991709080325 None 1721 178085 ARDR_20210703 164846549.3597147 4877.392713879114 0.1649833858587488 4.872323204120288e-06 24779148.061032683 731.7828849716237 72212 6971 None NXS_20200520 9873936.050439073 1011.5584698360277 0.16525690259719272 1.6941776309361547e-05 145612.96105541484 14.927922375246792 23545 3522 668599 UNFI_20211104 61446137.70558591 974.3238325637755 13.048407618358322 0.00020690274432688232 9842016.308343286 156.06043614403563 22803 None 236683 SAND_20211120 3969366254.331551 68283.06869517242 4.439576851490412 7.611003482366084e-05 2090930710.2914722 35845.940840222334 325574 None 8183 ETC_20200117 970267710.7020977 111495.14051840678 8.405411772842085 0.0009651689853249411 2597299866.869826 298240.3890301891 228983 25033 379003 RLC_20200625 44398953.742062606 4772.1142578856525 0.6322191734868838 6.799317805414627e-05 1398063.5899543834 150.35732952942377 30562 3590 529294 HC_20190522 57111926.246694356 7191.067209608573 1.2958793649646019 0.00016316654368744385 19007886.43755727 2393.317786107643 12712 802 698921 BTG_20201106 126101125.6682801 8113.832402175849 7.224743434442268 0.00046370042961850884 6243239.588301701 400.7052853262002 78610 None 360586 MKR_20210523 2515799912.053276 66935.54109012151 2781.301117882075 0.0740572928431749 388126897.98174417 10334.597415340273 151411 27012 30840 ZEC_20200229 470375952.1189302 53740.15446566487 50.843271783330806 0.00583527494423999 354831507.99120104 40723.96081887835 200 15567 158191 CELR_20210204 40797966.0181205 1088.9789385346935 0.010356387101811304 2.7610177197187937e-07 19267040.18636643 513.6602063840184 28103 None 412914 DOCK_20191030 6158162.823547556 654.3794782600223 0.010998258309991543 1.168748391915324e-06 1873701.380268632 199.1120242310594 203 15138 183955 LEND_20200430 52257626.79812235 5985.628363507663 0.04440355732153867 5.064650512102412e-06 4093570.8704645643 466.9109201160609 44363 5721 90147 ARPA_20210124 26192410.925041188 818.0926256149007 0.026666475748515356 8.320971158198994e-07 18184479.973055232 567.4260626324574 23104 None 1180898 SAND_20210610 204960538.6977457 5460.4286775217815 0.2918930715652648 7.783659973505033e-06 39799387.38343364 1061.295826191573 125649 None 20999 ONT_20190629 997848126.1192372 80623.54972862713 1.5345766355079888 0.00012395295057511359 220063089.05235162 17775.240785992635 80662 16260 232873 ICX_20190916 99609279.06061116 9667.123737855383 0.20142567265378683 1.954844889842096e-05 13116304.943975123 1272.9430839439894 113580 26251 187595 LOOM_20190723 31625761.856275424 3058.950346186888 0.04569111081044278 4.419551838187878e-06 2459439.2958601587 237.8935260739162 20686 None 431801 ASR_20210210 0.0 0.0 4.849940261399803 0.00010412827463539929 2472117.8056110446 53.07639845432467 1942528 None 183417 IRIS_20210124 62730349.75549598 1959.3170206470427 0.06674826503850623 2.0827831547037305e-06 11656813.005743999 363.7340049496259 11629 None 857234 BLZ_20190901 6624540.240902819 690.1271172749351 0.031649806774612495 3.2971086197232787e-06 188058.29135834798 19.590913077719172 36485 None 878308 CTK_20210120 28079145.42542867 775.3920268028506 1.1067743987959162 3.05901139007231e-05 4141367.9844541866 114.46318101239501 None None 186270 ONT_20190522 854425266.66824 107374.87450110509 1.394584370571361 0.000175252915116865 81086012.7808743 10189.817421537235 80732 16169 231698 CAKE_20210325 1712876185.8108008 32414.953993084036 12.197861559711011 0.0002315222302966697 560130007.4303555 10631.580621041127 None None 5671 CTSI_20201030 5722801.0280283345 425.1114020128843 0.028875276309221824 2.147395542000878e-06 1131058.2382290484 84.11449963305587 17501 150 383194 FLM_20210617 0.0 0.0 0.5367800189663413 1.401554871302673e-05 19176713.444582086 500.7119340169556 22779 None 89339 WAVES_20200324 91537159.89703988 14208.8701287815 0.9219215537549438 0.00014227512635915258 53238414.66254707 8215.994237713881 140870 56871 60056 QTUM_20210702 735748715.519155 21900.434933357163 7.130507424029249 0.00021199437425984075 248020876.54160482 7373.813306557613 246441 16736 119158 BTS_20190730 119599720.0231368 12600.708835437565 0.04433578558169065 4.661063606680826e-06 18311801.494606804 1925.13723168409 13660 7174 160624 WTC_20210813 24473546.497161906 550.5250996518142 0.8393810465351004 1.8880340044712625e-05 37213906.35865591 837.058698601596 65439 19913 1106983 QLC_20190411 9507980.074589692 1790.5401137100318 0.039581325489544995 7.452985822974036e-06 501937.07562770776 94.51249705284582 24846 5839 940522 ICX_20211202 1188006229.0699077 20784.088211773644 1.7562048419236542 3.0711954123190054e-05 32644735.892254703 570.8808033967181 156576 34485 269698 PSG_20210819 97347378.49811459 2160.8522163350453 33.525388592298 0.0007442722477567426 63545316.4892756 1410.7223666529587 None None 16263 LEND_20200331 24257455.437561385 3775.5066892988416 0.020623538193623333 3.2168695126945984e-06 1073451.0709357092 167.43741985699342 44130 5731 93991 TRU_20211007 213054159.27048078 3838.4261478033795 0.4848433068061201 8.739884186171207e-06 20685505.053278036 372.8811266655341 33580 None 87045 REN_20210117 474753640.03787327 13083.775142851513 0.5386450718545014 1.488402435742909e-05 141221090.57354042 3902.269345271296 None 999 93933 RSR_20220112 330931435.1414385 7719.63896700123 0.025097108281319502 5.86575229902147e-07 30193309.60050704 705.6847873428773 None None 101626 FUEL_20200518 2299275.693038131 237.58093384125752 0.0023226870835429104 2.4e-07 44770.79441986535 4.62610342 1 1463 None BNT_20190903 25526153.770775083 2472.6903736812533 0.3660247726481467 3.5428187510264694e-05 4763482.703588108 461.06594699493104 None 5120 161703 CHR_20210711 85360408.82912526 2531.4069253802472 0.18986316065548806 5.632388842761486e-06 90362521.65854254 2680.6509332101787 68283 None 101399 PERL_20210218 0.0 0.0 0.07289604056503995 1.398243336014366e-06 6727765.767316665 129.047525455417 14418 536 428459 WAVES_20190131 287499718.3884176 83131.48848163395 2.874997183884176 0.0008313148848163394 37372150.24667184 10806.280072830346 135488 56673 39666 NANO_20200425 77972804.52088045 10398.712601470372 0.5850068407733479 7.804239689824468e-05 2608451.553969508 347.97851456851856 97602 50601 313652 REN_20200914 280544038.89176506 27178.15425223294 0.31775133601603006 3.077354723900059e-05 46952472.842700176 4547.248043482133 22901 958 91896 BRD_20210114 5336498.044483635 143.56106932014762 0.07069737798393885 1.8915303403990016e-06 116179.46102367667 3.1084176206282 389 None None LINK_20200806 3651335265.2350655 311693.88224983215 9.549342947174974 0.0008148509350139876 828157396.5695095 70667.14774685634 71289 19181 63304 NEAR_20210314 2338252851.832899 38108.642671788904 7.429772907017742 0.00012111320577318724 216296396.01814657 3525.8614559000853 42651 None None AMB_20210421 10453919.969435273 185.03980210860428 0.07215349362990228 1.2797730626390964e-06 5259188.6414650595 93.28124829558031 25328 5621 373333 CHZ_20191011 15420248.064529907 1800.9102628189655 0.005120695693316175 5.980392395942375e-07 3878920.2222942268 453.01393387141053 12164 None 395631 POLY_20190922 17708941.501024175 1773.1020601797363 0.03447913450355885 3.4526206970983674e-06 4943574.492491173 495.03236830555693 35235 5061 289751 VIA_20190816 5885869.054380328 569.1881499892428 0.2542261412333922 2.4584730932783714e-05 200674.44210834985 19.406057694873482 40850 2224 1896727 BQX_20190316 19273130.70764402 4911.277721956641 0.16385665543470587 4.175479083487055e-05 1099682.2947417411 280.2266656788258 60618 5823 403749 JUV_20210131 0.0 0.0 7.930735637999742 0.00023213404310762746 2309474.7809842895 67.59873772569733 2252572 None 93564 MTL_20190816 13313612.696906583 1293.7273113304575 0.27725612695073304 2.6904414567670667e-05 11415839.710736742 1107.771675214649 33300 None 511455 FTT_20210107 841875551.216044 22968.710151159514 9.374884943168187 0.00025389394990397583 28767034.517591238 779.0790036327619 37486 None 5141 MTL_20211120 196322590.58052468 3377.288880549942 3.0451702976547943 5.234095848836749e-05 5638583.3744590655 96.91702909458016 63957 4464 170248 ADA_20200117 1286089923.7849808 147740.5271721129 0.04149477270942618 4.76586303961894e-06 137032057.20058483 15738.753920366924 155096 76134 58324 NKN_20210602 241328283.06536508 6577.127544698496 0.3722489069562472 1.015008977079437e-05 40794137.43060195 1112.3314247673538 27721 3155 103719 CND_20190930 13139202.206272757 1630.0422851345415 0.007482143046535206 9.284605752961041e-07 370874.7202822743 46.02191564828723 35719 6090 303660 MTL_20211225 148520236.59280542 2920.978294197464 2.29430012016686 4.5127745897227416e-05 10106930.93263856 198.79832063809036 65341 4504 205875 PERL_20200308 12959910.345802719 1458.0728135859374 0.03808621673719552 4.283131276471268e-06 3736284.468171558 420.1781703298105 11508 469 686395 XTZ_20210722 2012100322.6427543 62526.24201299741 2.4076094761491955 7.454967908081543e-05 82383198.92243041 2550.929086365491 125094 50602 65574 ALPHA_20210206 461954673.55288243 12190.898774850903 2.634559619488634 6.901999518408847e-05 313361424.3780977 8209.419077657245 32804 None 61683 WABI_20201115 4504418.009089693 279.8501078174328 0.07627850773601261 4.74011154415559e-06 392086.2309881059 24.36508690289605 41104 7565 1658910 POWR_20211216 189727042.18875325 3888.933600676558 0.4417034619709755 9.038387078507922e-06 17224980.936843414 352.46734185058517 101859 15502 175165 DODO_20210613 163119381.90850034 4549.007195623764 1.2539815950423852 3.514887148982677e-05 40335905.73258537 1130.6079551929063 92065 992 25824 MANA_20201229 107958339.27839006 3981.2755379352143 0.08139941842900902 2.9981511828529627e-06 22036254.39555482 811.6522630846738 55546 7713 82693 TOMO_20210814 252743455.93828565 5298.523667197871 3.0168959143773737 6.323095275875746e-05 8881731.938369477 186.1517230125888 51011 2230 136634 NBS_20210207 0.0 0.0 0.016934811933121376 4.3065384048303993e-07 5861450.746106198 149.05723692601703 None None 745524 BCD_20190312 137380997.6952224 35531.02091697385 0.7328868541568717 0.00018978393347281254 1782203.6794171222 461.5086525444801 20549 None 3143940 OCEAN_20210324 585165828.7012558 10734.141109736935 1.4009709415323663 2.5700254928494463e-05 149318728.90802464 2739.192716115541 92434 2325 75514 ENG_20200707 19409395.13491418 2079.2510597490927 0.23381433863016882 2.503557648222973e-05 713486.870779911 76.39632037593283 307 3572 584808 EPS_20210430 260115607.8271699 4853.722154585491 2.613018464914588 4.875555091885055e-05 157867577.99314165 2945.6051844363137 12969 None 50287 AERGO_20210506 88799281.66273874 1551.1418665482413 0.3180137688651135 5.5472841015808605e-06 1791656.0992608583 31.252814714276482 20364 None 378551 LSK_20200315 104793120.54096615 20273.741784382026 0.7588077065558135 0.00014645683454349138 2939426.235868577 567.3361751074108 178322 31325 155203 KEY_20200321 2805250.803484933 453.9449990607152 0.0010211747703938664 1.6469253704831848e-07 1088831.9965748207 175.60412686863452 23452 2757 250395 KNC_20190807 29317334.564562242 2564.5682958517227 0.17597190913327312 1.5336959119310727e-05 4338021.411969075 378.0833962747767 97624 6706 212094 GO_20210610 33084414.097498138 881.4066977840562 0.03046962309808777 8.125417001247037e-07 1247734.6098133917 33.27367712749405 21998 1085 95450 AXS_20211216 6895703464.898067 141352.51331925965 101.99463119303084 0.002087088136051748 281548544.72878426 5761.250573218717 796560 None 425 THETA_20210210 2925924243.687258 62815.11368813643 2.914477614256916 6.257664056821667e-05 322838219.05807066 6931.647406333184 84107 3493 46280 CND_20190626 26439240.448276397 2239.390018799127 0.015140770754879494 1.2791500520312945e-06 693014.0311528173 58.548468130121876 36246 6150 632693 OST_20190614 17851366.099889193 2169.8252813998893 0.027971483922825967 3.3983154161467274e-06 901577.9632343315 109.53463533685326 18133 755 1020616 PIVX_20190922 16185934.641425084 1620.1187770202084 0.26477185869250386 2.651316247584504e-05 562881.5667224706 56.36463975766769 62955 8596 243854 RDN_20210104 12277840.85347537 366.93573175461296 0.15492965880399337 4.6474883309902965e-06 195125.1270821343 5.853248230182274 26555 4385 1792183 KNC_20210428 449028873.829647 8150.116939302111 3.242061126732909 5.883362997617483e-05 193546849.34963337 3512.2914937651894 159004 10619 96867 SC_20201030 116732742.38215145 8666.060190200604 0.002575374359105639 1.9152535056298682e-07 3002597.2705933475 223.29704915194017 107009 30064 160917 COMP_20211104 0.0 0.0 8.995792473150982e-08 1.428e-12 259.35664411383635 0.004117050153168227 2616 None 2759029 POWR_20210616 89950885.1630824 2227.3259256648084 0.20951716963598785 5.189065487567333e-06 3346657.2198031796 82.88592055806312 90758 13960 149049 PSG_20210616 32378136.745575856 801.705878250815 15.357165666081636 0.00038049429236958253 10169183.139337253 251.9550955372398 9150725 None 40054 XZC_20190329 50537324.75573212 12552.542189830872 7.1221866563693155 0.001769003615060716 2103975.9988274365 522.5840500260146 59775 3964 302674 CDT_20190618 8468848.491074368 908.9343924864246 0.01246787604466192 1.3386969339174237e-06 1369984.830110289 147.09758783391538 19691 294 372453 RCN_20200421 28200470.240636267 4118.208953046061 0.05654976679029477 8.259448596149976e-06 2122754.9918130096 310.0416983524916 None 1137 1284317 XRP_20190725 13407153895.023327 1363890.235800392 0.31208183894043207 3.182598230987351e-05 2023936433.672067 206400.23576203844 935760 203974 39002 ICX_20211125 1323594282.1989176 23150.882035922205 1.9591468561723167 3.425523105214051e-05 46681083.05830773 816.207973837489 155664 34403 251096 ZEN_20211120 1052655323.5777589 18108.568702452405 89.61458775140373 0.0015403123500385965 67739949.43667492 1164.3269620092185 125887 8789 2249318 UNI_20210508 20632351275.40186 360041.48113302136 39.77171645958462 0.0006939773071529999 1221999973.987672 21322.69680014353 None 39932 1434 DUSK_20210128 18385365.992531482 607.4433994648225 0.06128275976581818 2.0158191166374153e-06 1305989.9602781774 42.9588931393671 21482 13349 977461 MTH_20190819 4153585.4438749403 401.3817998849399 0.012161205174137026 1.1751982684654593e-06 124760.80776150287 12.056262776117043 19472 1992 1114327 STMX_20210805 212360445.85424262 5339.625264544978 0.02290870824478345 5.761034855824143e-07 16741758.21460217 421.0182939671682 69384 4688 91821 ARK_20200308 34220259.12614448 3849.9980458473515 0.240256788536345 2.7018996726959683e-05 828475.6292040339 93.16939783553052 62719 21973 80258 FTM_20211002 3605839485.8745146 74872.1468318543 1.4187690853927364 2.9455028728827855e-05 494596883.06860316 10268.313251230504 161609 14037 32912 NPXS_20190515 137589688.82421803 17215.57923392185 0.0006446180839404899 8.06450325117375e-08 7396234.343873419 925.306897193977 60272 4362 180426 SNM_20190608 11315132.007244341 1409.400653166139 0.027760382745938034 3.4578033689061314e-06 232669.62341178927 28.981077639973314 31361 10008 15012322 ONE_20200109 18046242.21090958 2242.927498676438 0.004572550560716246 5.698389972299776e-07 7753619.977334422 966.2692569755823 71299 None 276429 CDT_20210513 23851083.72474655 462.63426286046473 0.03448006563087271 6.823308082677257e-07 1116130.5026321937 22.087261554148377 20858 330 439508 CTK_20210624 41744036.470473185 1238.1667865911024 0.920637773023646 2.7327684361374117e-05 3495861.532528893 103.7691514853426 61370 None 152764 DOCK_20201229 9761754.987732433 359.73879375965777 0.017409050052336693 6.413765722402274e-07 4503396.632894144 165.91215989158133 43089 14867 287642 ALICE_20211007 226951817.5143482 4088.0605096927666 13.051017528073793 0.00023526029978313716 106822222.93012263 1925.5991447397023 121547 None 27267 ENJ_20190821 57470561.66343289 5340.8613125197635 0.06548352335154385 6.091119484923824e-06 3244632.650529971 301.8079075092588 47477 13084 23439 FET_20190714 35511810.57412335 3120.1080887026674 0.12361420820424163 1.0854749581419628e-05 12436972.715703554 1092.1092837229219 16042 293 401657 FIRO_20210324 89404252.80793703 1639.0359394897523 7.657026063009456 0.00014046509886795036 7712619.158879104 141.4849321091391 69829 482 190037 BLZ_20210805 51806448.19099711 1299.4081751671615 0.17354482749378614 4.363346438567046e-06 9715319.07519435 244.26716427379316 65324 None 416953 ALPHA_20210930 336130565.2437119 8090.510470160405 0.830783091364314 1.997775115445517e-05 37816928.68800594 909.3795945149535 79656 None 59995 FUN_20190603 39026348.04414922 4465.026186109082 0.006490311110467611 7.423882172735332e-07 1824278.227040018 208.66837316918466 36354 17666 466451 CDT_20190405 8369141.040034412 1707.590268422142 0.012394582152874464 2.5313129591227324e-06 1995298.4296399932 407.4945577002468 19773 288 420503 IOTX_20210422 264107989.23295376 4874.332849620401 0.04109638537918977 7.598054578863031e-07 49590309.85794811 916.8443341350809 46314 2683 219398 EVX_20200701 4629161.360514018 506.01845375289014 0.21229107200589448 2.3210931824579703e-05 315774.8844902957 34.52537709930296 16640 2834 1106208 LTO_20210624 50736149.41070082 1504.8811852272088 0.179160742771668 5.316107150602494e-06 5475547.663809981 162.47196589345788 10456 4271 208240 ATM_20210112 0.0 0.0 5.07128425352797 0.00014266529391204552 1163253.0157121592 32.72461670141977 None None 231684 DOT_20210724 13516250007.12555 404295.0417036836 13.351105190817131 0.00039928699375938283 748669936.7785717 22390.218944567194 506691 27695 21430 BEL_20210421 122815492.60246031 2173.897878831538 3.897589808578633 6.912589895647385e-05 29677321.474421233 526.3436190807778 16281 None 318373 DAI_20200806 389543205.6139353 33501.37416123317 1.0151374585392157 8.714858289056519e-05 71020223.35541321 6097.01845787674 51246 15292 31492 WING_20210624 26183079.058356393 776.6143766110612 15.619742521723424 0.00046364749084505365 3702441.3613156243 109.9011488049502 None None 434218 DCR_20190426 224742937.54552466 43273.49802893549 23.279357069541348 0.004474110048072188 2812546.9507645946 540.5494892105536 40556 9418 288305 BCPT_20190714 5797202.162638268 509.1233106548688 0.04991875886342828 4.383441311070845e-06 491698.0282681467 43.17674354803966 10971 2849 1043904 SNGLS_20210217 11822446.077380368 240.2583871765275 0.013768845818270726 2.799185458715059e-07 683965.0962998932 13.904906606556512 9136 2115 2616688 KAVA_20210508 454421945.05564165 7930.270384505508 6.486490109779794 0.00011316740647455353 152818352.61107177 2666.165573988043 97296 None 74239 QKC_20200530 15112215.686980989 1604.4437678075408 0.00434012218657596 4.6226514627446085e-07 3231711.0971681145 344.2086049258906 49411 9194 750672 BNT_20211202 960835927.4970524 16809.759229776693 4.096232503265975 7.163361682822048e-05 82836763.21401379 1448.6230824621225 139816 8614 39870 EOS_20210616 5017107943.686654 124227.18953468025 5.224865723003856 0.00012945372025337332 1659696864.2899618 41121.42683959173 224417 88749 48893 KMD_20190131 71773178.0286174 20734.452570506972 0.6428979160105088 0.00018576431130407512 426413.88551411533 123.21160140722802 94743 8238 248298 BLZ_20200414 3119303.6087023006 455.0439326643584 0.014177851157343893 2.0705401137674886e-06 508823.410407191 74.30881241311035 36087 None 583027 AXS_20210620 232603046.76583028 6537.868466722654 4.212157201468912 0.00011830700902720192 14411708.286787018 404.78216287552686 100381 None 8042 JUV_20211002 33368756.889096722 692.8734557331442 12.332165504843628 0.0002560277729291497 13975063.388988113 290.13593392182514 2705220 None 34891 OMG_20210718 517676042.2776071 16378.912182307868 3.678055273892908 0.00011659219246571377 137731046.38699353 4365.993296196469 326255 5013 225112 DCR_20210201 828251908.180339 25061.887602045277 65.898712690699 0.0019930881748410883 22532398.122494318 681.4860930522162 41808 10211 288064 XLM_20201030 1619347149.7115881 120217.8547496895 0.07740419635954397 5.756392576633488e-06 126194264.5083554 9384.810663951186 291255 111859 45585 TROY_20201101 5008460.850815042 363.07130911898815 0.002635324938765712 1.9123258369870178e-07 1177325.011931559 85.43269202705056 9677 None 684232 COS_20191019 21863827.227946106 2747.2073451524334 0.016555268928419974 2.080182756978439e-06 3738177.5077194828 469.7049880436372 9398 None 200954 NAS_20190225 26969937.015607845 7176.561763495915 0.5909974848747866 0.00015752655258620036 4065278.639853732 1083.5736967208143 23439 5182 410300 REP_20200421 105011420.68758078 15335.168852061113 9.53940563141833 0.001393290103966362 20933121.5256662 3057.413867670865 131060 10122 257312 AION_20190608 64432910.63299834 8012.81740076729 0.2015274637331157 2.510204377947344e-05 3310260.9079304175 412.32253258737603 67448 72582 268953 DLT_20190221 9102200.522275832 2292.8606838334904 0.11242962328450579 2.8328338935050863e-05 3538764.396675937 891.6450514705411 14504 2693 922398 IOST_20200506 44416143.760312445 4953.267759188365 0.0037006110775501845 4.1207021674709767e-07 39211994.85219133 4366.3316352944785 193527 52208 307791 FTT_20200208 68656667.95654666 7008.772377304103 2.3818112227119492 0.00024296954869382572 11002626.620043432 1122.3824956516837 6260 None 25912 NANO_20190213 116488269.6813968 32046.32887335539 0.8755900922043296 0.00024096366172943293 2539196.4821840823 698.790550104566 97190 44680 316685 IOTX_20190903 17847870.49380984 1728.903537801309 0.004335769233146382 4.196668009157067e-07 1538835.3208112563 148.94660243536813 21193 1764 585663 BLZ_20190811 6757630.182688239 596.6261306955547 0.0324123091414096 2.862098887349927e-06 228722.98081413918 20.19688835014724 36516 None 1145955 IOTX_20190819 20491172.372656304 1985.591684682591 0.005019212915930533 4.86582967720748e-07 2045763.1266123003 198.3246198305859 20353 1759 702138 CTXC_20210724 23278997.240811456 696.4218309374952 0.12879452494571084 3.851814358680316e-06 2147552.048197864 64.22611379442283 20173 20593 753985 CFX_20210420 0.0 0.0 1.082638731439337 1.9340693763740105e-05 36210338.618924744 646.8760538234972 None None 146617 QSP_20200417 5476048.940728779 771.2701168355462 0.00765547470856823 1.0799295126319647e-06 282347.3071382263 39.829690698274064 54913 8291 395631 ENG_20200626 22464483.98902608 2425.7310046097814 0.2719185381448294 2.9369417921551813e-05 965646.5849072835 104.29770000291742 264 3568 566856 CMT_20191011 14312023.735714376 1671.4822173739408 0.017890029669642975 2.0893527717174256e-06 3184730.9555968125 371.940492672379 289075 1653 599967 SNT_20210207 239781063.10942125 6094.975376141937 0.06232559882901246 1.5849457674592703e-06 59828088.7531215 1521.4338542431615 118683 5751 152018 ENJ_20200625 161650261.99633256 17374.587800992012 0.17525085166692836 1.885253023867924e-05 8544286.536407115 919.147717476986 56473 15578 105546 WRX_20200625 23784609.85710338 2553.722965903214 0.12289911913232283 1.3222187055386744e-05 6809904.792775099 732.6483349526774 28546 None 21864 PIVX_20200430 19039527.79186191 2171.6402918571407 0.30225758001540826 3.447536863604663e-05 875082.3751007612 99.81151661099139 63934 8482 261496 FET_20190812 23618114.158603325 2045.0551765672674 0.07546271054023457 6.531155894190483e-06 3354355.2842278327 290.3131510776171 16410 297 429380 GXS_20200807 36985866.2105464 3143.6350471893534 0.5281769106641322 4.4889293370302596e-05 2159429.5567607596 183.52802806932502 None None 752968 BLZ_20200224 5360080.514003031 538.752594066444 0.024768406967663747 2.4905609656061432e-06 296358.7002677474 29.80003565300926 36205 None 533350 STORJ_20190426 30078998.01551014 5794.641870424643 0.22142966811031364 4.2625735438038864e-05 2440626.0819164705 469.82629996591334 84014 7679 192994 JUV_20210206 0.0 0.0 8.244994273383554 0.00021600174117609295 2296394.7661284283 60.160777735488956 2267535 None 93564 ATOM_20210111 1543195778.962642 40030.98027828514 6.456502142546766 0.00016794731447137835 675216381.0241779 17563.81015237497 48251 10145 104708 CDT_20191024 7594742.894552787 1017.9221563093745 0.011203509428747371 1.50124992528871e-06 234498.33805101566 31.42235160494478 19573 299 183019 RSR_20210420 1094619647.4382608 19553.212697898736 0.08311964656678357 1.4853390808245125e-06 150347703.97872797 2686.6971847914733 None None 82413 ZIL_20200901 252032949.82125622 21568.617055956685 0.022544863639467547 1.9313985280616445e-06 93422469.00590646 8003.420291707464 91872 11951 85218 SRM_20210826 346052328.9711449 7059.99567917115 6.9533305957141645 0.00014189266516653333 130984165.93278503 2672.9194222800224 110343 None 38162 APPC_20190704 8454878.600843035 705.1369793160011 0.0781303683303029 6.510096306334192e-06 894163.8299896515 74.50486630581455 25491 3368 1256272 DGB_20211202 704223488.7969307 12318.388034348196 0.04729644725323843 8.273168946789781e-07 19785424.05993517 346.0897497338242 235386 43954 105333 TNT_20200701 14334225.464589901 1566.8891275225872 0.03345655818193534 3.65798657337989e-06 289923.4570354847 31.698900627390724 18000 2605 448003 CKB_20210421 613722632.5650179 10863.208711319157 0.02491571529286896 4.4207646677880915e-07 57496847.78847573 1020.1594865921084 41131 3224 121056 ICX_20211221 849518278.6521118 18006.402567836652 1.2440459423840031 2.6394959324235127e-05 35974264.20828619 763.267021053395 157619 34590 309513 NMR_20200914 185042221.94936296 17926.26238355383 35.64681773946703 0.003452319173160588 3453599.854957944 334.4738675647685 20578 1850 882883 MATIC_20200701 66354841.17009238 7252.255832811495 0.018981178894421087 2.076610433176498e-06 11981680.080934333 1310.8396481297755 41844 1934 125573 VIB_20190316 5003822.114137646 1275.0995386572727 0.02965546612814243 7.556957524893461e-06 1963552.9234942598 500.3625967843103 32719 1124 2263235 AE_20190426 123086348.3654646 23696.108378063574 0.4640661711955782 8.918988240586457e-05 51374261.21164652 9873.730516383266 977 6365 416342 BEAM_20200707 25977017.652434513 2782.814020120998 0.3952866662375821 4.2325161164088265e-05 10274898.152609546 1100.180596510201 15333 1529 452746 DODO_20211204 339275990.1799909 6318.9040520802755 1.3022701918168962 2.42328308661696e-05 63791160.26187163 1187.0350769727247 None 1228 17689 RSR_20210523 465222440.4655014 12378.18449913256 0.03516438209109725 9.363167926789363e-07 92687611.03912684 2467.9792883720206 73475 None 74651 NCASH_20200331 982879.994820615 153.00731833338367 0.0003377919237035551 5.268894846241302e-08 840221.8623698867 131.05821453046693 57610 58291 715052 GVT_20200410 3413389.185015432 468.2961938814109 0.7684793987831525 0.00010539571803731478 119688.04068339009 16.41502297690715 20554 5570 153070 OXT_20210204 0.0 0.0 0.3501095529811127 9.333885167310055e-06 25816461.638087515 688.2642484456103 55574 2005 149953 OMG_20200914 534145937.4557601 51746.24539777501 3.8229880104360694 0.00037018586570225644 306015944.4270685 29631.999105722105 284849 42922 113182 BTG_20210523 968481294.6014045 25764.93918356323 55.34518397768004 0.001473668014923735 24264877.829111535 646.0973073504393 98075 None 165410 TOMO_20210107 74810636.67920852 2031.1522362462406 0.9781791822646494 2.650242958952619e-05 19337545.034741398 523.9243842125333 35458 1708 198557 WTC_20210106 8430533.961376779 248.12430677729645 0.2900353848134369 8.505416727148702e-06 1874018.068440227 54.95641380634727 54812 19153 816491 KSM_20210823 2976788003.100048 60340.19476879097 330.49221282657794 0.006706259984517551 186771574.67899838 3789.9190628505185 None None 63186 SRM_20201130 51306489.1880455 2827.790334581508 1.0281190416764832 5.658413428510272e-05 13281279.427234668 730.9559186484703 None None 73913 GTC_20210823 127002466.60153168 2573.927674028274 8.926407736421197 0.00018113228900694763 26874121.62260074 545.3225203562548 56517 1113 24544 TOMO_20200502 25510799.34327991 2878.958190101493 0.360465092488683 4.079545156856193e-05 16119029.149139147 1824.2628390059415 22652 1538 211142 DLT_20190703 7231753.33753777 669.2903649695176 0.0897773357856368 8.301065937258634e-06 832233.8949871489 76.9506955965512 15073 2675 2880330 SKY_20190509 17056787.78386956 2865.428300426553 1.1360706358710695 0.00019084168363001566 825662.5519186025 138.69809371279598 15639 3708 424998 MDT_20201201 10362391.535312537 527.4202649902635 0.017215689814343512 8.763941988995336e-07 241270.81532580077 12.282304409267477 13305 69 1412861 ANKR_20190905 9276197.02714328 878.2678385439254 0.003465290061154958 3.2809273056973667e-07 4436492.276704886 420.0458950124708 13985 None 7336 XVG_20200704 118019829.05577041 13015.295585503549 0.0071599660953947306 7.89849658777463e-07 8630510.810510717 952.0723880440783 290296 51684 251650 KAVA_20210813 478914849.23242354 10772.341278347913 5.8857604869083 0.00013239026677632157 86640265.95718321 1948.826825209146 None None 50274 KSM_20210408 3885191077.244659 68975.81651361486 428.76154358290717 0.007630155801106686 567449003.8215396 10098.210469530874 47742 None 82275 AKRO_20210421 142853812.93769592 2528.586535360552 0.0524966958243334 9.310577739900722e-07 66216598.53872038 1174.3877946710393 36923 None 141631 NEAR_20210219 1284637894.4056573 24855.607084002728 4.441248137246736 8.590347528844987e-05 104571693.50755309 2022.6457994455402 38799 None None OCEAN_20210519 457716864.9063126 10727.257202040546 1.079900452977692 2.524141279893292e-05 50290627.55579923 1175.4847278312438 108663 3035 66745 KNC_20210603 234437472.8184086 6230.23725915638 2.5358000214403997 6.734524399481647e-05 422976619.5534566 11233.324160849923 164613 10967 129800 MDA_20190509 16149509.560924187 2711.4060417490805 0.908644009199016 0.0001525558932329787 1158487.109398657 194.503055084243 None 360 1527812 TKO_20211207 103241093.22715972 2045.4171978836137 1.378067838023982 2.7305901146199894e-05 21903322.70555871 434.0061846511894 346444 None 27354 BAL_20210805 245420425.1367621 6164.775457783858 22.70601918259828 0.0005708855133580552 39827474.28230211 1001.3612654230553 None None 286590 REP_20190618 204865727.2514534 21977.529789804183 18.64267091731848 0.002000858178348112 16568995.92438578 1778.2972809720318 125646 9987 269417 BAL_20210421 598906092.3991706 10600.948270428229 55.324956024699084 0.0009812185242062145 171170036.5396321 3035.794742733465 73926 None 49519 EZ_20211120 0.0 0.0 4.287754761525369 7.350726772653057e-05 1248206.572375642 21.398671285246387 37490 None 289811 LRC_20190826 35514597.72569486 3517.9077091167555 0.036941757073138216 3.6586065822293595e-06 4388492.965057754 434.6238652438736 34449 2443 491659 CRV_20211028 1755597131.7921517 29996.49362401156 4.468477326538588 7.636071044149798e-05 783108717.024608 13382.352335051659 187395 None 13833 AE_20190819 77551507.95568214 7514.691944044853 0.2385625599998021 2.312722739123771e-05 21632831.24562526 2097.174876620466 24880 6354 305950 PERL_20200927 0.0 0.0 0.023198081192765493 2.160985835997076e-06 1213899.382576684 113.07915298149237 13354 507 746192 SUN_20210210 0.0 0.0 0.0003652419509456484 7.8e-09 3080.70414540843 0.06579061433652669 42 None None FLOW_20210930 991233998.0898442 23846.64577236194 15.10577479573256 0.0003634115249554995 27260186.18965239 655.819775398154 92103 None 51592 RIF_20210221 216664520.34301656 3862.6970445575844 0.3094040907933371 5.503133954639867e-06 11587834.58472606 206.10395227951332 42663 3098 719987 LSK_20201014 162572465.9236294 14230.281472390434 1.1430616609969597 0.0001000389055888615 2280943.5294762654 199.62448412431493 177576 31065 175033 MDA_20211207 10883173.029043088 215.5600875291944 0.5544467434448191 1.0981777853599984e-05 1189357.9265756956 23.557293270264257 None 390 1286126 BQX_20200610 11529334.47354133 1179.4879053602308 0.0519815479073137 5.320674307795298e-06 798612.4883217912 81.74356323660724 11999 30 406675 POA_20190325 7296414.134575732 1827.0903535525028 0.03308180365538587 8.29040341085979e-06 556421.7847803427 139.441038658986 16887 None 766257 SOL_20200530 9427078.266084636 1000.2484589819593 0.5774323126967125 6.130521788641945e-05 2051249.6504508469 217.77843739475728 51256 1890 132466 POA_20210930 7367897.234953906 177.3759217252007 0.024940021438741782 6.000017441036175e-07 268564.3208864989 6.461063449030954 None None 218681 OST_20190621 17777903.88499859 1858.5316081965664 0.027909539821877664 2.9183613488839816e-06 4418914.391366034 462.0638335885761 18142 754 994275 ADA_20200502 1564928493.749928 176597.96639391695 0.050066837336214594 5.669096676523125e-06 213075526.71172062 24126.663967569853 155325 78417 51955 STRAX_20210704 176167043.69535086 5084.439473050142 1.7765997134537022 5.114821400451838e-05 17303182.15166086 498.15772058851917 157862 10758 140717 CTXC_20210704 27544871.614461754 794.5584288174044 0.15319023634267523 4.417817746806865e-06 3065206.64747107 88.39678460014044 None 20588 663987 SFP_20210805 106356362.93534246 2674.210900608697 0.9831220932340055 2.47233522996287e-05 14028707.182278626 352.7910443298835 373596 None 25766 INJ_20210826 403091319.6807313 8223.678146361086 12.343550820838201 0.0002518539427422538 38171492.88517445 778.8391786956042 82441 3928 170499 YOYO_20191108 2315727.378613651 251.1988709679091 0.013240762045670965 1.436293627369251e-06 549782.4496037225 59.63773278921336 7510 None 1284296 SFP_20210310 232238186.49787062 4248.958235219686 2.1485267724946238 3.927628607734645e-05 33933240.726361156 620.3188563261708 None None 45661 AUTO_20210527 39108272.6603629 998.1826909170269 1536.5228740108355 0.03919417695403544 5465593.712735495 139.41832611748532 64063 None 10768 UTK_20210125 98854886.037691 3070.093521547636 0.22062575754276445 6.835843259810582e-06 4747681.684811857 147.10162678333947 57542 3169 109478 HARD_20210124 32699131.69947969 1021.6543191667661 0.6852623309452078 2.1382258050676835e-05 4597409.254051905 143.45307861751945 None None None YOYO_20210724 1603143.6292236259 47.96099786871304 0.009166382673374614 2.7422924050444093e-07 185907.09547079986 5.561753574114669 10091 None 1359216 HBAR_20200523 162245066.06467977 17723.988136741445 0.038966193421859904 4.264142563124477e-06 14766956.417291349 1615.975332901035 39109 6488 137425 BTCST_20210819 175501338.43858215 3895.66172182153 24.079118466208705 0.0005345635910986502 8107385.890921308 179.98637792140923 None None 1726916 BUSD_20210828 12243592337.928503 249641.43551134985 1.0002515712570326 2.0394537375552187e-05 4748626077.887596 96821.67447764403 24578 None 41531 POLS_20211230 235037050.55091602 5056.0818808875265 2.6684664504361497 5.7346663079436684e-05 15796246.30978751 339.46914149852626 None None 7209 MASK_20210909 269331767.5964976 5813.519546472323 9.003699955371477 0.0001944772739118641 122207462.71031398 2639.6452922011085 92 323 157940 LTC_20201018 3084706642.4681125 271429.1959297204 46.95837944296968 0.004131956990299031 1950195612.7164407 171601.41576437245 134905 215364 139345 INJ_20210210 213061987.20731184 4574.114650412691 15.771085391380586 0.00033847543771760297 110520303.46732645 2371.9615463644973 45551 2327 139911 XEM_20210707 1206009392.5742066 35306.976455947064 0.1338464636532908 3.918521712464462e-06 87037687.11194824 2548.136554689407 371133 21687 80485 1INCH_20210219 459347480.4367631 8887.609915979554 4.783802275203744 9.252922327991168e-05 246146772.39360225 4761.0181926817195 None None 9629 DLT_20210104 3407622.7568130456 101.67685693163352 0.04145582511439505 1.2593778124322114e-06 324887.52810804907 9.869690044913586 None 2534 None PERL_20191017 8703619.724760693 1087.0168138874599 0.03331491133851966 4.161160360941225e-06 3726962.7873979 465.5119642984551 11165 372 274565 MANA_20210202 205406468.43071297 6151.783857712626 0.1548799093255788 4.636946778926861e-06 50675300.6079009 1517.1669001367968 59915 8749 56631 GLM_20210430 448450695.9026365 8368.029493209633 0.4508747092338356 8.412739955433401e-06 3871974.565767581 72.24604633781118 157512 20983 153882 AVA_20201014 21891769.76357097 1916.2288269080225 0.5671741572802765 4.965560487991383e-05 896254.9319556403 78.46634089654239 38492 8967 66612 QKC_20200404 9117680.213500313 1355.8511533485193 0.002455860226486124 3.649740521060242e-07 2126896.493851288 316.08559127230376 50044 9196 784929 BTG_20190305 204502804.9187992 55073.57125818224 11.67658400931734 0.00314455922374576 2697966.5679522464 726.5751395992338 72826 None 404455 SKY_20211125 6932478.02291987 121.25542024751755 0.33005339699998804 5.771425722898288e-06 167877.55606527723 2.935563924441219 20683 4504 340307 RAMP_20211021 118911820.32613163 1794.014567843998 0.3174905059443293 4.807647834328264e-06 4968925.320679694 75.24270052060524 34069 None 111091 VIB_20190801 4906656.097531996 489.0549245496129 0.02693463294251046 2.6783037208369645e-06 265743.8509896038 26.424816941598955 32528 1120 2890790 BLZ_20190608 13927321.050890123 1730.972651602294 0.0672489361297196 8.365051107565081e-06 1612921.7694295526 200.6302822063509 36537 None 848455 YOYO_20210624 2273513.1229808214 67.43803384471703 0.012894196971701537 3.8260018161400144e-07 168470.32691409448 4.998898172205983 10028 None 950118 DEGO_20211028 40060389.277851 684.4800494301254 7.375018924383256 0.00012602988522303615 10860249.206343206 185.58812865466157 155291 None 217620 ARK_20190220 89139526.93142392 22768.642231711237 0.6380082143272349 0.0001629645262094023 5757840.663658587 1470.707985682901 62591 21753 148771 VIDT_20210110 30482873.101737693 753.2761993771368 0.6537550261055086 1.622330268853157e-05 2993131.204886074 74.27625270068549 169 1158 None ZIL_20191102 58674822.58322911 6343.004024037298 0.0063246650427986025 6.837238537918686e-07 28995744.181381542 3134.5663084293446 66347 10571 219357 SNT_20210724 261300325.92979723 7817.1430464180185 0.06747993755089328 2.018099701760946e-06 72661433.4692234 2173.060950199729 None 6024 134549 QKC_20210617 107513141.98194614 2810.881543755797 0.01654556161365891 4.325336070427112e-07 7694181.006133736 201.1410637808253 74065 9527 251496 OAX_20190430 4208807.282218504 808.5140574466332 0.17942128423191056 3.445802135094403e-05 378213.67315785325 72.63628103367688 15241 None None ALPHA_20210202 359996487.728046 10788.938932707368 2.0767977123337578 6.217720881050564e-05 314780054.28603315 9424.194300913015 None None 61683 WAVES_20190930 81777837.95185386 10145.30069503535 0.8175510943546129 0.0001015353096180969 13598457.030265935 1688.852910149184 142180 56908 28141 CAKE_20210310 1844102785.4998512 33726.2469563649 14.260678757569737 0.0002607050923948878 430234328.4152743 7865.283430595368 198164 None 6578 MDA_20210128 11841967.903712427 391.4587144304494 0.6042152097935806 1.9915525183574047e-05 745474.9092198428 24.571583249886093 None 370 3273620 BLZ_20210212 51379398.11644799 1077.9464668327455 0.19696181332893392 4.125185345191721e-06 42313293.970238626 886.2133082686033 45583 None 375643 NMR_20210124 149388940.25969312 4667.102339027285 28.125582557058934 0.0008776032723572181 8937095.318045655 278.86441393964134 22491 1998 2335404 PAXG_20210408 105271781.42285903 1868.9446503707288 1749.7911087474545 0.031092216935603215 8986491.066162229 159.6818776379456 16570 None 49424 QTUM_20190515 266406137.34146518 33343.32869999515 2.7806726981111174 0.0003479249903609719 309326797.3313384 38703.77231128392 177303 15281 401038 BNT_20190908 22489242.490511235 2148.1870328231457 0.3223767175434898 3.079363320499605e-05 3555825.6124292132 339.6547693780153 778 5113 161703 STORJ_20200127 16732313.065474378 1949.4395505397142 0.11629085827127339 1.3532064929284382e-05 615548.3460608221 71.62764390798444 82520 7919 131824 MIR_20211204 296609310.73531246 6213.759998811874 2.6819446138165657 4.9906010770604636e-05 42294629.35441739 787.0245407851859 None None 15195 AMB_20200417 1294464.8960809435 182.31796363510816 0.008918356740412277 1.258079611623811e-06 66628.33949376848 9.399013508130276 18964 5485 839960 WTC_20200806 12608679.554549284 1076.3318060163238 0.43235371629156955 3.689299168810157e-05 4325038.604821393 369.05803578380255 54911 19504 711318 REQ_20190524 18910862.503528114 2400.5447889614393 0.02585431548383412 3.2871285141649306e-06 3525472.528308483 448.23005586645587 41924 30099 374528 TCT_20201106 3517874.574651524 226.3536075457733 0.006069025711453704 3.8952384334518697e-07 305997.5154853921 19.63961498152858 None None 556136 FET_20210120 63388311.49276251 1750.507783509215 0.0914065523748617 2.536120129045489e-06 11080279.736000204 307.4278565794936 27109 758 346755 PIVX_20210729 34368790.38514199 859.5427307342896 0.5255669273638408 1.313080237389649e-05 252162.25123865166 6.300040042054165 67666 9846 339375 CMT_20200309 9768933.164285095 1209.2514019104328 0.012097318808994173 1.5037864546685749e-06 14827194.812449796 1843.1302895908416 286913 1639 953076 APPC_20201129 2640896.4000262218 148.93867486471441 0.023899540836078058 1.3500000424448318e-06 197299.00033522007 11.144718664418448 24263 3142 562467 ATM_20210206 0.0 0.0 5.366254392317976 0.00014078310218867667 1605355.767669703 42.11633451678399 4832342 None 233968 AST_20210115 23711558.726259038 607.1186275886371 0.13988775026890346 3.565926913549582e-06 4518134.879749984 115.17333530475014 34868 3461 211626 THETA_20200526 351649272.3542192 39567.86798548843 0.35130592549895756 3.951213455534452e-05 70867183.44866261 7970.5848513794845 None 4129 375081 STX_20200625 100570515.75876477 10809.578868986635 0.1408993120962076 1.515327661169536e-05 833693.8307426217 89.6611419797479 41021 None 97025 XEM_20190723 608537310.9107485 58801.16607201201 0.06766571532400611 6.542773768228252e-06 46040526.98018557 4451.7781384407135 217465 18431 192645 STX_20210206 427196458.4713632 11271.37521821515 0.4660530058671813 1.221262730335689e-05 8598281.540287534 225.31258586237038 49506 None 62343 LINK_20190629 1109527013.9272835 89646.91523801319 3.040249344186508 0.0002455712331181325 248367110.39893526 20061.452421092028 21711 8616 223883 HC_20190813 96897242.84785977 8513.947381243983 2.191907557145134 0.0001926159106163717 64235628.751645684 5644.76548551549 12923 847 463002 RCN_20200107 22890579.525192365 2947.7249630756974 0.04494461048850861 5.7877237291823125e-06 2897032.4093140997 373.06415691119287 None 1135 818164 RUNE_20201030 84652014.0059467 6288.273204158679 0.39638487915122356 2.947809396809142e-05 3194681.448548359 237.580000882171 17742 1886 210830 LEND_20191026 14052311.525039282 1623.0083740374564 0.012453334219975139 1.438399898633315e-06 5773166.469221502 666.8191760887341 41511 5794 671068 NAV_20200308 6758828.798124489 759.3821175880648 0.09930508930373742 1.1157333800742178e-05 84281.24001638094 9.469342755707489 49763 13993 1136873 OM_20210511 89018516.34966503 1594.3575021594681 0.29764229246639606 5.3268930702177445e-06 14219810.331814848 254.49141816735306 None None 68115 BQX_20190626 13490309.405728333 1142.3334300124052 0.11160276740314556 9.428627382431187e-06 706029.6311455169 59.64807565191958 60734 5768 449913 REP_20200927 72910869.51836112 6791.913305680882 14.447776719149449 0.0013458630734281126 8832371.391917909 822.7675951988952 136262 10416 108541 NEAR_20210527 1361060480.3812685 34739.12091711364 3.5441846495627445 9.040485692338635e-05 129490265.80435733 3303.0302059624514 None None None ICP_20210603 13431467337.658375 356907.6079399949 108.03160190812189 0.0028690805773874573 271840980.7011449 7219.495629907692 188287 18757 26403 ARDR_20190401 81865920.80385323 19950.36812373707 0.0819259789580253 1.996475498593077e-05 3542647.6331142015 863.3170197801368 69270 6588 1030225 ONT_20201130 463565455.37987995 25555.23717015445 0.567690518029302 3.129519430260795e-05 146606094.2352204 8081.984918410872 93811 16701 254257 VET_20190623 389269695.36954486 36259.60048605729 0.0070043731828417334 6.529963566762231e-07 64379861.825167045 6001.938234549752 109702 56074 189744 ONT_20200217 579118799.9300908 58092.61732652938 0.9099323760331284 9.146486445331758e-05 251508769.07490346 25281.236362359385 83883 16342 403200 ARK_20210826 232479334.58933762 4742.951245358709 1.4574577927129726 2.9737512066261223e-05 22955384.372337915 468.3744690042625 None 23466 142622 NBS_20210704 0.0 0.0 0.011795471272987043 3.4024858327007623e-07 1482879.4179483268 42.77468949229221 None None 626214 XVS_20210506 1157227978.8784695 20208.004074068514 118.69850271667815 0.002070521409659362 218729833.85340372 3815.4213706107116 76316 None 9693 FTM_20210421 1016490199.2791051 17992.403411339885 0.39916809283264426 7.07946567159674e-06 108051874.26852125 1916.3594194298416 61709 6179 57773 OG_20210420 0.0 0.0 10.005941781048017 0.0001789002635284892 6112203.101543255 109.2825412673156 None None 247445 OG_20210930 10036630.962348185 241.7219092212233 7.272273665529885 0.00017495611958045376 2390147.7096101036 57.50209463095384 714793 None 341879 BAT_20210729 846908777.8062292 21179.602518670556 0.5702457089392946 1.4247060305339026e-05 79041479.58267057 1974.7780800178027 208850 76722 27687 CLV_20220115 142570307.10680464 3307.793236276572 0.6749188033920995 1.5648712661254862e-05 75509778.62951545 1750.7747938706818 None None 64325 AION_20190224 34793065.663271405 8460.192286018446 0.11930180604331442 2.900387757915809e-05 1533269.819678656 372.7585660323677 67181 72415 212982 IOTX_20210428 323854402.9471713 5878.132586032028 0.05046563354300546 9.162924091454664e-07 95531729.87313804 1734.5467156514856 47543 2721 219398 TOMO_20210108 70791664.95287827 1807.218725718848 0.9283940345188689 2.351946043215871e-05 15365872.783328366 389.2711752724331 35594 1709 198557 NPXS_20190629 215406791.60470858 17404.312059359425 0.00090243228772573 7.291506267510457e-08 7939971.243290265 641.5367764622712 62563 4592 216939 WAVES_20200806 163681053.7232084 13982.21394657695 1.6384710907575517 0.00013981168208982906 41013902.71934055 3499.739946957735 139791 56888 142173 DOGE_20210710 28480856790.206997 838002.611482599 0.21897407767067584 6.443705892228649e-06 3259713674.1677146 95922.93495489699 1947580 2111146 8998 MFT_20200331 5972071.0452865595 929.6868186868691 0.0006276762772368026 9.79052508414401e-08 883578.269914706 137.82096805517565 18348 2523 845882 FIO_20200927 14138979.690462781 1316.769818803467 0.13441150204384666 1.251376890230358e-05 517767.45995581977 48.20437418299403 55649 143 258866 SOL_20211028 55282416869.143555 944526.9435337427 183.54274956995576 0.0031357677367313125 4812686988.408542 82223.18027052387 798917 77613 5133 REN_20200806 196324099.1631485 16723.83033953311 0.22407512724448728 1.908779628848292e-05 19703185.78657919 1678.4120627453904 17948 929 146117 SNT_20190627 111170778.90285118 8550.399836467615 0.03155415033864501 2.429804127416891e-06 53736560.01145377 4137.944261142247 111568 5746 303277 HOT_20191118 172432400.51726043 20286.579110870218 0.0009683010030342305 1.1383098829393494e-07 10160817.04251294 1194.479652710034 24591 6723 647403 CND_20190411 32187855.504898127 6061.451924102429 0.018591416028155155 3.5006801407762927e-06 403016.18444573745 75.88613751443368 36830 6196 621680 OXT_20201124 0.0 0.0 0.3096343628129721 1.68653338101277e-05 49546023.52645972 2698.699905743071 51783 1741 111810 VIA_20210806 11425795.601651542 278.59110904180403 0.49302767311407647 1.2021318342269038e-05 172530.6665907782 4.206753859862414 38166 2295 1212735 OCEAN_20211216 348526996.298646 7143.978660168511 0.804803336069524 1.646846971176992e-05 22452426.62507789 459.4378418417611 138034 4176 84153 ATM_20210916 28841703.087913513 645.7254437455765 16.169140250197522 0.00033541489460892944 30871953.06306117 640.4120888797402 5097890 None 71793 LUN_20200127 2498350.86208805 291.12562232503353 0.9287701442717893 0.00010807537310756364 4147371.7556420886 482.6046063940049 30049 2158 2593780 CTK_20210408 120938252.7481709 2147.144413513757 3.255637756998224 5.790484846572009e-05 28931357.83122939 514.5737997182762 25553 None 187898 SNX_20211225 1122578825.4863117 22085.4942911361 5.732891297379773 0.00011273955628605866 86417993.8236146 1699.4437489611216 179702 8591 47472 PIVX_20200607 29622861.308356054 3063.530507896024 0.4679824236021042 4.839770260341977e-05 1117169.9857231835 115.535238076523 63712 8477 263119 PERL_20200412 4390015.689392222 637.8628765640067 0.012514832750865597 1.8185389079564133e-06 1558577.402907102 226.47794858082983 11629 480 646764 HOT_20190520 279150791.97146076 34123.76389576976 0.0015692036420498112 1.9204500444655533e-07 17917956.36915936 2192.8664440858875 21486 6102 277166 ONE_20200610 26306571.14150962 2691.5476330775646 0.003912976432675814 4.0052045409400763e-07 3786717.572151203 387.59697831520566 72421 None 152068 ENJ_20200417 87455330.87821703 12316.756901333052 0.0954999832289903 1.347182954303468e-05 8530464.984226717 1203.361155726806 54232 15307 92997 ALGO_20210813 2850273053.127367 64109.6306375424 0.881747643549256 1.9831329251792243e-05 303809346.21243745 6832.956366357472 119459 36951 221911 STORJ_20200229 20362718.93802057 2329.79132926003 0.14154882645206712 1.620299515044244e-05 1866141.761582368 213.61594208056854 82440 7984 126163 THETA_20190605 92019162.25355394 12010.618060983888 0.12391784646543492 1.6163679289692964e-05 9823278.37378211 1281.3353825631575 None 3997 222751 STPT_20210704 52690524.71958302 1519.9090821964817 0.047027286003616275 1.3565348147141133e-06 11553311.735995574 333.263322784946 30663 None 433288 UNFI_20210107 15102052.956218347 412.5948602911399 6.183433851919447 0.00016746194264259776 15163406.899452247 410.6607489096373 13127 None 133722 NULS_20190117 15364519.91689256 4268.440638027951 0.3841077917870605 0.0001067948910095615 8679398.692157747 2413.1648906288665 19639 None 403917 SNGLS_20190830 3958210.254247178 416.7518637893395 0.0068527605741770655 7.221289962256213e-07 189924.48717471174 20.01382914193096 10 2166 None THETA_20191127 73212507.75421041 10214.14705119375 0.07320894810248676 1.0217108788415658e-05 1370389.310783148 191.2528049324312 None 4022 453885 BRD_20200607 7083989.818064845 732.6104895594513 0.11151887313276086 1.153303411483848e-05 1113214.6765374464 115.1261887874441 201 None None REP_20210117 115443226.68011151 3182.9692733610973 20.027497741964684 0.0005533089715456564 20759915.655460704 573.5438210350636 136573 10453 130861 PERL_20190905 24369508.826024394 2307.2985384400426 0.09325809524009629 8.829651363977847e-06 12014611.60518032 1137.5401939555522 11301 360 317628 AAVE_20210105 1307177513.8897305 41781.15497353645 109.58481526125577 0.0035026460450291426 626597105.8325853 20027.846644070363 None 1921 24520 SNGLS_20191127 5045802.440203183 703.7889750405064 0.008731673006625706 1.219508645072185e-06 286863.2709779516 40.064743451322514 2505 2156 3001732 DNT_20200523 3626783.6123106065 395.89070896007587 0.004824147780485679 5.269999273637667e-07 201087.20878188734 21.967184515058165 58132 6038 635978 WAN_20190627 41671159.93442111 3205.9806636025705 0.39312387601679316 3.0145887666737173e-05 5914398.464115152 453.5333582942237 108490 16999 440153 ADX_20210120 47570372.81537941 1313.6328486578623 0.42124624425428686 1.161037976175206e-05 3587357.81792801 98.87467763936162 None 3742 10698 GAS_20211230 80373732.14920959 1732.9622324400038 5.777514976205017 0.00012416846620206908 8851240.893588709 190.2279804151807 None 115711 78285 XVG_20190830 70843943.41027209 7469.57682811528 0.004439739129669009 4.68122257068732e-07 1227766.667190018 129.4546563688741 302886 52788 316359 OST_20210624 9269826.138236877 275.1048013560815 0.013395811962554956 3.9763360987755055e-07 196568.3534468833 5.8348224196678515 None 783 504948 SALT_20190207 15911054.747960715 4670.32004841 0.19831742790555867 5.8217632378656644e-05 1571044.5418884065 461.1924153923069 43006 None 362688 TRX_20210128 2023288993.7872934 66848.46768811523 0.02834027332602904 9.322175593861499e-07 1152845141.2757695 37921.387404659275 566373 77357 30212 WIN_20190901 65264138.773361914 6800.368650994621 0.0003111148511879654 3.241905415591605e-08 18042266.82967065 1880.0556232309054 None 1398 68914 BCPT_20210218 324355.00706345204 6.2069376740714635 0.002788726372107963 5.343394144345188e-08 5322.140597271437 0.1019759241612 12384 3276 1170393 NEBL_20200412 6241167.131698098 906.8324811141692 0.38453620018805884 5.5911030083915936e-05 117804.8416298886 17.1286605556992 39440 5996 1168706 EZ_20210703 0.0 0.0 2.589976057500145 7.648770436726227e-05 1050592.0632461465 31.02630038276285 34883 None 116746 COTI_20200711 15975501.477564687 1720.5127940985158 0.03128088446103353 3.3692806853292436e-06 2228866.193497553 240.07236193367197 25096 1028 317411 ZEN_20200713 68105026.71615677 7339.046899604794 7.214320621711791 0.0007764685826936094 4618288.988196359 497.060845111631 64386 5984 61667 ADA_20210324 36009559805.77391 660158.3351259708 1.127048197620845 2.064412332211854e-05 4313834035.689378 79016.4271695888 287005 288892 9201 RVN_20201124 110590898.91926068 6040.295512617458 0.014669870530121644 7.990465308635675e-07 18151171.86715891 988.6679559837562 33780 9884 226414 SXP_20210821 691119655.208415 14066.566267825523 3.69971621511669 7.522084361265274e-05 152992840.65256688 3110.5765608617803 None None 111870 BNB_20190904 3483555883.1277523 327854.4401573132 22.397000784809897 0.0021078910170701185 168057219.1183632 15816.684829231219 1030390 56042 1071 EOS_20190906 3356964953.3636847 317621.87605284713 3.2734128609984983 0.00030970235000347875 2233436743.622756 211308.6975142797 1294 68128 84416 XRP_20201129 28482039221.782608 1608957.1647064656 0.6240390592147861 3.5252495261378424e-05 12099372210.01124 683503.7890669403 986731 221788 23989 TFUEL_20210729 1746379493.1551483 43673.642764053446 0.3301712601104937 8.251825166844965e-06 58682559.04051461 1466.6274023466817 184739 21963 19127 SNX_20210201 2478951354.0695524 75010.02966974372 17.332637119672267 0.0005228237156924636 308158384.1876301 9295.325940903844 69360 3771 30058 CTXC_20210723 23139025.521876756 715.4384581529122 0.12808548943925896 3.95648841191253e-06 3857281.4244548213 119.14924418177912 20169 20593 753985 REQ_20220115 219273341.6938646 5084.086413350341 0.2841061114183622 6.587303362341693e-06 14604970.178930692 338.6318185352217 59294 31619 144319 BCPT_20191203 2887140.616287433 394.9028244369733 0.02483896375440014 3.399783245600808e-06 93260.43280734798 12.76483431720192 10753 3137 3993255 MANA_20200711 53747275.87812315 5788.4177173479275 0.04054463127717686 4.367083776872031e-06 14929430.987476282 1608.0569439051517 49220 7040 70384 XEM_20210729 1437369576.848818 35947.746700248594 0.1605717213516585 4.013417127073158e-06 118736556.52471319 2967.7662140915445 371396 21723 102654 LINK_20190909 666885098.689344 64202.92835054463 1.8310408164780363 0.00017617755896219114 127920727.0464446 12308.16988288676 32405 10562 94033 KMD_20200113 62405263.41922009 7650.355015704301 0.5257711441281029 6.44932588337936e-05 1835255.807105358 225.120052927496 99057 8406 197912 ELF_20200312 33505419.432397544 4224.230397081732 0.07279479140226532 9.170021534117822e-06 24507308.723702587 3087.2064389572906 None 33436 755936 ONE_20210310 380301710.9462473 6958.333680526555 0.04156036033210249 7.591275463614471e-07 54385427.23342718 993.3858995356313 88002 4784 108360 AMB_20200511 1114299.2893073275 127.25890230766532 0.007712478030738715 8.800214206539389e-07 122057.58825632467 13.927208841415155 18885 5466 863223 WTC_20210430 45424590.694201574 847.564215215556 1.5565554185460786 2.9043314460243096e-05 12879534.592038907 240.31548687650618 63617 19489 334285 TNB_20190908 9539438.059652377 911.1336772667945 0.0033073929324748843 3.1589670857843603e-07 440822.5287378852 42.103973957312206 15566 1463 1259839 STORM_20190801 14170489.850007372 1407.5521578961427 0.0022736184690001103 2.2579994593960222e-07 250336.81657021694 24.861708513964558 26678 2556 2770937 FRONT_20210408 114678962.46578705 2036.021718213516 3.1275507022439077 5.561310503128305e-05 100012971.49687667 1778.398631349432 None None 147301 KMD_20200607 90178095.25816141 9326.018276614035 0.7505418148479606 7.76193671267598e-05 6453569.835422947 667.4138554630027 99790 8378 202548 AUCTION_20220105 175092175.46340021 3784.748843563016 24.092603892209034 0.0005240889494285665 3389083.103578093 73.72308162401336 None None 86380 KNC_20190414 44722118.45541765 8813.597075205993 0.2691037805879202 5.3048054533831916e-05 5417239.134454834 1067.8928270704064 95846 6657 240920 ZEC_20191012 274390146.4167667 33200.518853884336 36.07839628473532 0.004363460764470761 216964537.68603784 26240.530205471397 138 15333 177381 DGD_20190819 38945663.35024579 3775.551420157774 19.40869524951362 0.0018812631415767026 1575981.2753011382 152.75810387683714 17219 3363 558523 ADX_20210930 54105638.465433724 1302.5476858998047 0.41588441334095166 1.000072751251831e-05 10740743.616747946 258.28150021302935 93996 3911 10547 MANA_20190513 65252763.05463868 9403.608630747316 0.04948735564558683 7.11885725001369e-06 14297913.420035353 2056.7840670097244 44435 6214 121517 SNGLS_20210203 6925497.665703019 194.44063804378663 0.007763093040774607 2.185203771147642e-07 1071426.4854137134 30.159179905950158 9055 2114 2522161 CHZ_20200502 35730579.89462102 4039.543256561609 0.0074614407926868395 8.44863215861623e-07 2909667.706601335 329.46334146313075 20496 None 255307 STPT_20200625 9737162.13363229 1046.5753431759192 0.013795543647786505 1.4842031409955963e-06 1543748.9989434527 166.0853078094033 11160 None 2264449 IOTX_20200319 7303284.670228864 1356.3289335937307 0.0016800088584328543 3.118195997163612e-07 1592006.765398409 295.4858897561649 22570 1810 487690 ALICE_20211120 288132690.9256029 4956.60593333458 16.639722824289677 0.00028526364695941487 370270469.0095244 6347.744218241742 136819 2825 32277 REQ_20200725 30675760.44751333 3215.8483680839004 0.04005800605782213 4.199914052705784e-06 1512115.8305991816 158.53900758528317 39312 27867 405956 RENBTC_20210805 525522631.9625807 13212.939490474933 39715.34264966074 0.9987303989805322 6401209.521631957 160.97261443499286 88481 5581 110606 HARD_20210420 96849902.40666752 1730.610870673953 1.5812220087934914 2.8254873840980777e-05 10567000.746540485 188.8218550656693 None None None FIO_20211104 69054695.14035915 1095.1678830545516 0.19003201969975408 3.013798906854144e-06 4328844.649297592 68.65299486164108 78250 536 632857 ZRX_20200331 96699491.508883 15050.613119060396 0.14816632455196563 2.311105532835306e-05 26287443.78469765 4100.3282600564335 152435 15946 126398 SNGLS_20200626 8270846.106939601 893.8410649787079 0.012214066418817957 1.3199899979225484e-06 772437.2720290391 83.47829773792773 9100 2132 970834 SUSHI_20201231 335895270.8086843 11632.81507710475 2.6063728927139755 9.03791537418887e-05 216458406.0613246 7505.958803833951 18406 None None JOE_20220105 293820251.92784476 6344.092509710024 1.8132240253133685 3.941575685647617e-05 28898194.371442482 628.1872438454542 112337 None 3511 FIO_20210703 51466623.997188605 1521.86107149285 0.153393271929195 4.528449444540935e-06 1871386.1799693066 55.246736708995506 None 481 108144 NBS_20210823 0.0 0.0 0.016868253417899295 3.423082876644031e-07 5759347.178789067 116.87471263291086 None None 3265664 BAL_20210506 739218438.5098236 12912.634506059954 68.52409952936905 0.0011953024840746554 140669515.66856167 2453.773528831932 None None 45464 FARM_20211204 73507329.44770281 1369.155081049592 115.45474021206901 0.0021483983967668045 8441559.006401258 157.08174304712537 58360 None 121899 LRC_20200806 155101143.30341238 13238.891782596798 0.13113376584794786 1.1170604429987347e-05 20173297.28946937 1718.458420011315 37844 6964 238881 OM_20211230 63578703.07010857 1366.7461345549232 0.1528443255710985 3.284880359811555e-06 9333847.4368875 200.60000273053527 None None 70938 BAND_20200605 37030555.231758974 3793.9889894868675 1.8072625526992174 0.0001848835973890951 5442988.209778034 556.819616091318 14768 1170 520797 ONE_20190701 48605686.92067857 4480.083253116084 0.019213277232955434 1.7727778194364031e-06 35978572.80499502 3319.6843552682053 None None 175184 FORTH_20210617 136344718.29028234 3564.61735566861 16.018783785227793 0.0004187625958457663 15602532.047890427 407.8809546182063 None None 66617 GXS_20210610 55982382.44833774 1491.4348098310388 0.7944259641084787 2.121090764293842e-05 14763995.842250207 394.1937529724726 None 22830 546653 DNT_20211011 113141608.29102962 2067.725700778065 0.15052812476953353 2.7501921450462994e-06 9044367.578640394 165.24319764011705 None 10258 638945 NKN_20210115 13064623.860734887 334.51096993919657 0.0201016385920906 5.124675519906357e-07 928308.457577016 23.66612853809247 13732 1025 376074 WTC_20201130 10792777.071550343 595.0368405769623 0.3554079080333454 1.956042829568989e-05 1608954.6136467224 88.5513255048432 54838 19252 748902 ADA_20200719 3816714933.176347 416200.6239898951 0.12263502818711443 1.3374265979529044e-05 314371025.11494154 34284.50882507489 159320 83663 35792 DOGE_20211002 29264176784.53787 607725.8461673639 0.22270530389224444 4.624114445294735e-06 1253107756.770637 26018.75024223783 2149226 2171891 34432 DOCK_20211011 70448412.58601576 1560.1781752227776 0.08283813674078577 1.513476589996626e-06 4900543.539118146 89.53434029936119 54484 15203 232979 STORJ_20191113 19554596.04471838 2222.706191183949 0.13603279003599925 1.5454718505612993e-05 5129760.320739685 582.7933231194827 83030 7840 141245 COTI_20210916 282754456.68578374 5867.194188093383 0.32557955141907147 6.756243930812241e-06 40814777.725886464 846.9653364164509 139131 6452 115768 RNDR_20211216 654215359.0304934 13409.791574578087 4.247736087571822 8.692025736797586e-05 48062327.58005619 983.4862140294898 None 4116 62178 IOST_20210708 541672672.455176 15941.353349256431 0.02398628578356283 7.05940021006853e-07 85042158.47615984 2502.8745043248246 248504 53580 158729 EVX_20200316 2810082.251846866 520.155372675174 0.1272555955156127 2.3681606512861174e-05 462342.02553212474 86.03945373598668 17813 2867 688824 COCOS_20191022 14550793.499968449 1771.9059522156008 0.0009259358211578927 1.1266831262429627e-07 5091638.291181397 619.5529772714564 12598 146 65492 LTO_20210131 54148371.66322502 1582.7093277084957 0.1981667119493967 5.800374915253169e-06 6655139.759625631 194.79712480214081 1170 1281 777868 WTC_20210220 33142554.07869755 592.531329327026 1.1356893116097653 2.030415326207938e-05 16393465.164519219 293.0866970343824 55685 19127 511678 VET_20190723 343807829.897817 33229.6940094727 0.006201597227777481 5.998339833229074e-07 32611060.88506132 3154.2233125775747 112855 57051 133161 SXP_20201106 62292950.00163375 4008.168471707106 0.8110138797624181 5.20527113363768e-05 35268491.50088909 2263.6118236386183 89226 None 69849 XVS_20210823 371364569.1145425 7527.647386130139 34.7724636441283 0.0007056992322472695 29637008.716877654 601.4763438005027 None None 17193 KMD_20200107 67093455.98491689 8647.276554354545 0.5695417661834254 7.345590279381835e-05 2521574.041618283 325.21670698488373 99083 8406 197912 XRP_20200129 10379406076.854149 1110812.5623116032 0.23759353224638982 2.5427454941937084e-05 2085600978.3634768 223202.72948003619 943854 209008 30183 ALICE_20210429 225388120.1665177 4117.588166620567 13.061820972203693 0.00023854752687047943 180469710.20951086 3295.9112773881297 56796 None 73832 YOYO_20200621 1749723.2164465333 187.03064707229655 0.01000177235159378 1.0689839326286179e-06 691962.7737489885 73.9566010015145 7489 None 1874217 YOYO_20190530 7752332.468818506 896.440296108529 0.02652505974853275 3.0674526384422048e-06 907931.7888486921 104.99647456528453 7465 None 1390874 TNT_20190821 13963998.522563785 1297.9395725105326 0.03258951911451684 3.0291629177323703e-06 657439.0711994091 61.10829828902146 17526 2541 645355 WAN_20190929 20181805.561594214 2463.52749093915 0.19028504652207742 2.323077401748872e-05 2876873.8338955 351.2204828154938 107834 16808 408901 APPC_20190614 10023997.264550252 1218.9684051573581 0.09467324726454264 1.1502055327612444e-05 453813.2014952543 55.13473661058504 25545 3374 1192397 FTT_20200331 69430964.4973246 10801.381849319489 2.400415602707751 0.0003744179925699913 2790019.7975545456 435.18864427165204 9902 None 14085 BQX_20200314 4042137.5634187567 735.2945619103394 0.029405778244799303 5.285900638477772e-06 1227100.865795312 220.5802273276422 None 11 317687 REQ_20200807 27504748.605255358 2337.78198372864 0.03585651875500601 3.0469819306528728e-06 716930.4120761891 60.922646341027914 39340 27809 395094 JST_20210718 60857231.76623439 1925.285983773447 0.04244334537139919 1.3428242980156118e-06 126262480.06900851 3994.6975121953537 49403 None 151372 ADX_20190507 12884061.310494259 2250.5935013153066 0.13987787710691005 2.4452312796767277e-05 597899.41599468 104.51991296473683 54683 3918 1002486 FIO_20210725 58250974.29180597 1704.9587887458213 0.17133744034205148 5.014907961693713e-06 9623793.371863894 281.68062920693893 None 501 141932 WPR_20200312 3968503.770914841 500.3498503244463 0.006510024094442859 8.205199543183377e-07 304092.4331856206 38.32764760410176 33626 None 821116 FET_20210105 38213954.14820729 1221.427941846123 0.05577450430379472 1.7827136583422003e-06 7168158.601058704 229.11497650730433 26535 732 338598 ZEC_20200117 433202196.41100425 49780.07581605615 50.711586212483205 0.005823063941621869 344981807.45558536 39613.25751265215 182 15463 167778 PIVX_20190914 17320343.829646993 1672.3367374063794 0.2838192901568756 2.740837991051116e-05 442704.49397250655 42.75189664586338 62996 8595 256099 POLY_20190923 16953027.298131898 1686.4405876554893 0.03298301095500126 3.2834756791975746e-06 5482211.743335712 545.7569944724733 35227 5061 289751 OST_20200605 6352726.344391245 650.8726010992268 0.009199446118585006 9.411065867828072e-07 820560.7417432073 83.94365366734691 17669 754 914098 POA_20210318 27728435.804950863 471.2753116191802 0.09777133896876214 1.6599891987504625e-06 1547144.4557589393 26.26785224131024 None None 376055 POWR_20200109 15526048.23207612 1929.1816849365953 0.03602633290957766 4.489662639367595e-06 848961.2130306535 105.79898459225676 82792 12855 288049 CMT_20200329 5527885.493478844 886.7360010279504 0.006896630019101654 1.1030959550882563e-06 6790630.958750223 1086.1417130319237 285911 1639 911838 KSM_20210212 1285921568.1030796 26967.86726772091 142.303768761699 0.0029804225069808335 222807162.67122945 4666.492589201217 34162 None 118660 JUV_20210704 16001636.091374127 461.5826499113106 7.247972167978943 0.00020906763271325764 3414166.3985861144 98.48157113447971 2541032 None 41859 ZEC_20211202 2723008646.1985965 47638.85114333322 229.54096288463236 0.004014139668231345 787077314.2055845 13764.158820339015 82968 21600 109049 PPT_20190520 36970321.18343867 4524.566031971192 1.0205212627798232 0.00012489520492849724 3285623.4148112773 402.10686898667586 24077 None 592908 WAN_20190207 29629736.548866898 8699.91382571947 0.279124264645079 8.195675466349593e-05 3414592.0043478897 1002.5960284467465 108744 17273 456075 BQX_20190920 9796449.20689995 956.495741929786 0.06955929831676881 6.791560007757879e-06 405460.31633169716 39.58792189925485 60247 5742 402735 XLM_20210616 7793862108.554686 192981.61335853767 0.33630076669541376 8.33234530432179e-06 844886750.2770187 20933.30983313045 592533 193979 22825 XLM_20211202 8034326921.8976965 140499.09247638404 0.32989439445958885 5.768978968019229e-06 461298514.7973704 8066.888903050241 696955 207803 25085 PERL_20211028 0.0 0.0 0.08159475906132915 1.3943527772249834e-06 2852455.9964933917 48.74491923719186 1021 696 2114307 THETA_20210616 8959554018.764963 221852.7023075899 8.955779425633667 0.00022189139775321572 239806112.27119583 5941.516747198726 174324 19663 17272 SYS_20210422 224297956.1599453 4146.905128288175 0.3672462444613694 6.789786944894989e-06 2503870.828412967 46.29250732678376 63853 5030 411439 TNB_20190511 10563335.71162362 1657.6919839033546 0.004041960125192854 6.344507527574571e-07 1490316.3949031713 233.92916538185358 15754 1504 655962 KNC_20200411 84040910.42406043 12256.842290486251 0.46753889777377977 6.817081854633489e-05 65123509.37841071 9495.515693079837 104957 7315 125566 ADA_20190706 2374193617.599052 216016.44875046663 0.07634163132587295 6.9474492352086265e-06 281659364.1326728 25632.333236108112 153421 74387 97209 COTI_20200913 33240387.609754406 3188.9033363965623 0.05859233496531141 5.610826725345379e-06 4756196.671486289 455.45540062830946 30566 1169 143053 ALPHA_20210401 434492817.9663972 7386.8528842965225 1.734940593312898 2.9516156484319853e-05 108100905.8770529 1839.0965467417448 49772 None 29700 XLM_20211204 8132540502.237293 151659.28008147707 0.32996148992037455 6.153270555759162e-06 1153941727.2756834 21519.22533511656 698233 207961 25085 NAV_20200913 9129420.0401092 875.5313815077305 0.1314619517053768 1.2590376684811139e-05 191235.93556132301 18.31505186980158 48586 13769 892932 ONT_20190421 803801035.9025798 151375.727669465 1.3110941794571325 0.0002468505525866377 56115314.08780414 10565.29462809662 76129 13391 265242 NEBL_20210128 14348400.727516824 474.3081575258268 0.8281792788241914 2.7299547908815145e-05 591793.3752652219 19.50748106510152 39172 5870 802156 LRC_20200625 93024178.27960278 10008.070802869272 0.07983177831774205 8.58875729406054e-06 17345342.508550633 1866.1107159025164 35762 6894 408887 ATM_20210828 32470889.835333172 661.9735640261215 17.201725480571888 0.0003506652549808351 8797899.27919656 179.34930990031123 5045811 None 88117 KMD_20200530 71911702.68871966 7630.102112967318 0.600617817358862 6.376679196855129e-05 3476000.8406072874 369.04236950579667 99725 8376 191330 CND_20200330 6046317.522607085 1022.5087247639375 0.0031335917098288426 5.299990499597326e-07 20657.4035502665 3.493883463482247 34757 5960 433768 OG_20210324 0.0 0.0 8.158201059284051 0.00014950263760044093 3206797.8747322503 58.76598738374722 630228 None 445935 CND_20201229 17789598.740003675 656.0909114978255 0.008986876151019625 3.310966521381583e-07 134819.82927035776 4.967064568725473 34014 5904 545184 ENG_20190512 34351191.717234164 4693.50415409014 0.44241417389994747 6.074022885810574e-05 606075.2233832052 83.20969341694007 61982 3397 347491 LOOM_20190512 43960832.018585294 6020.746655462943 0.06321244648005353 8.678606365689199e-06 1986384.3219588567 272.7160326993051 19405 None 495542 C98_20210821 484888547.07428896 9866.699283566137 2.623379175509127 5.333727865163789e-05 525821753.68090427 10690.753993550452 None None 45586 IOTX_20190729 25153792.765837356 2635.0225451049255 0.006061968708292459 6.356778094601076e-07 620321.098242568 65.0488934978019 20388 1760 905527 ZIL_20210814 1303202655.7524831 27342.122978871812 0.10542883013528 2.2084342012440084e-06 152847870.64500007 3201.728262436455 312191 35536 45480 COMP_20200905 17071.418314359533 1.6268141757100727 1.8493943503404e-07 1.7638053116488605e-11 8.752295545230515 0.0008347243717359057 1898 None 827585 PIVX_20191020 14321166.618274799 1802.171446483239 0.2333920821719172 2.936999181259215e-05 217924.43302286716 27.423547337526283 63035 8584 244902 OST_20190712 11252366.224112356 994.3633643646704 0.017381999401216507 1.5346269164593022e-06 293045.2352477336 25.87246123825354 18162 757 618395 DGB_20210519 1540716988.2327442 36108.932564040166 0.10843264172829747 2.53448645492817e-06 71020689.32695533 1660.025728874734 217034 37677 110176 POWR_20190716 32262506.826246463 2945.8039035587235 0.07709726894442699 7.050123347753797e-06 703525.651219667 64.33357092042624 84587 13165 580575 RUNE_20210324 1194498911.8474362 21898.58518705209 5.14189171312548 9.432595917906479e-05 43620790.33315025 800.2060560357945 44130 3023 105445 SCRT_20211104 1333525854.3305807 21202.194407150117 9.05899154361817 0.00014366106246989415 14011512.961866673 222.2001013270073 113509 None 80311 MTL_20210718 103706274.41885683 3281.1948453080904 1.6042420461258167 5.075507551503385e-05 32896982.360659465 1040.7960743606257 57265 4217 206234 ARPA_20201015 19306715.109629665 1691.7788078733743 0.021941399115483023 1.922188434366478e-06 15869069.647049144 1390.2186446346168 21124 None 362193 QLC_20200914 4579190.018640185 443.50520865184154 0.0191754618013698 1.8567897434684712e-06 230401.32653937547 22.310118235029 27736 5618 940522 SCRT_20210902 235553725.85844782 4843.272132514343 1.6174555163132047 3.3243194700965636e-05 2458353.9516070234 50.525988648788015 89814 None 145028 BCD_20200607 110397492.85323323 11417.063457530072 0.5867310423070193 6.06784209441022e-05 9782387.972865338 1011.6728321073601 28412 None 975447 DOGE_20210509 82064020248.14554 1397524.2412865676 0.633615145089309 1.0790264993489952e-05 29418365423.124805 500985.4342198469 1260056 1774659 8878 CMT_20190623 36100991.120011955 3364.8382887851385 0.045136219460930965 4.2079121275729335e-06 10887490.674875708 1015.0075614840115 291181 1641 705322 VIA_20190703 10270195.326049494 954.4439078223836 0.44544954439323586 4.1187522523046984e-05 1408493.2244287215 130.23326016359027 41025 2235 1727246 DODO_20211028 314619069.0967253 5375.530111580465 1.379138617081482 2.354901252598938e-05 98134368.23707996 1675.6600375207347 112537 1170 27957 AMB_20190227 13881466.493110653 3652.2893884151495 0.05120270323175677 1.3471709906466045e-05 414096.93519130995 108.95115749658432 17863 4970 641993 ARK_20200730 62756109.652867295 5655.046765628988 0.41516929549412157 3.743006556442427e-05 4991911.76145742 450.051548973032 62479 21844 108800 OXT_20210206 0.0 0.0 0.4500179392318977 1.1839009196103034e-05 85536587.32253735 2250.2846123050977 55832 2088 149953 AKRO_20211125 86006915.34781256 1503.422470008151 0.0317327041839569 5.548300166770402e-07 7413953.992394512 129.62917353014967 49008 None 223901 NKN_20210310 77353779.99065119 1415.3326086431084 0.11940532015449602 2.1807844443983438e-06 167343250.47519642 3056.3090240801375 15200 1073 294547 IRIS_20200927 54187503.07851112 5046.550120688998 0.06482283194624282 6.0350336558513296e-06 4736586.5383314295 440.9782527919833 10685 None 390426 TROY_20210710 15377743.292836642 452.140331729117 0.008083698538540796 2.3786101547894318e-07 2165835.9268253553 63.72923612369779 59145 None 430405 CELR_20190819 24498250.81709785 2377.2231086268735 0.007842046135868369 7.605790510588198e-07 10590057.954229323 1027.101357214056 18105 None 463728 THETA_20210221 3662466671.461324 65312.81328423541 3.6968765989850283 6.573941768214404e-05 269157048.80364984 4786.264074449844 86813 4030 42831 WTC_20210819 23612761.202893637 523.8527000247648 0.8076140268156472 1.793228674400402e-05 6255735.825019451 138.9025510754216 65529 19956 846713 TWT_20210821 280374632.16168326 5706.549239914459 0.8088572590814567 1.6452805687171938e-05 38017514.514159404 773.306750960014 None 43754 4197 GVT_20200704 4892094.409958295 539.5030249341277 1.0991356591267198 0.00012126210167834293 132660.33640075356 14.63574679588911 20311 5524 240600 GRS_20190227 16654049.334590854 4381.7710246288525 0.23126517870270275 6.08471272473273e-05 1789430.2528104912 470.80883902953326 36278 107002 15092451 RLC_20200422 19954220.042705316 2913.7613431323653 0.28389642266501064 4.147222778925395e-05 249995.94446837512 36.51996970604992 30539 3570 508763 CTSI_20210104 9360986.970750805 279.7625938509836 0.04550778936590419 1.3824715842010227e-06 1946008.303613821 59.11737792258042 None 170 553409 ZRX_20210916 910602734.1195525 18895.133013678143 1.0788468529724875 2.2379749194427427e-05 80856613.44039755 1677.3008370197413 229377 19927 51885 WPR_20191118 4526098.141022419 532.5193636754758 0.0074614801885381395 8.771525190363633e-07 1935268.53019996 227.50521657677632 34060 None 912114 AVA_20210511 255480819.25567266 4576.513427430465 4.888514037998762 8.748955444770256e-05 14523556.904207751 259.92755930903854 None 10050 44048 STRAX_20210418 256139194.9565403 4252.1053172533 2.543243426338328 4.230969396272766e-05 19905548.416765716 331.15102272619725 155232 10619 156260 EOS_20190421 5659407683.355377 1065771.2265568278 5.44070508493119 0.0010246200918883066 1972357485.3977263 371443.97212817625 871 64212 106638 LUN_20200312 2261809.6472471077 284.92784616627057 0.8366673302543608 0.00010539782631894234 3261775.0023836945 410.89687951385446 None 2149 1955482 ZIL_20190225 159742009.24737793 42409.60761851486 0.016708002259353837 4.46008935026077e-06 20523373.494935013 5478.577159333223 56162 9979 183294 NEBL_20210809 20577951.756714616 467.7629318963594 1.1290687203826557 2.5667159197964683e-05 3808895.5399183114 86.58775717244885 40421 6112 2429755 MFT_20190916 9656211.482709983 937.1395127300968 0.0010698490727203396 1.038166775381009e-07 173652.56892285534 16.851005633613774 18760 2235 975011 PHA_20210506 150331535.01280013 2625.9845063773355 0.8484191467009509 1.4799428530301237e-05 36330298.5656383 633.7288110450737 None None 179387 DLT_20190812 4142223.005535885 358.5672399637475 0.051633856587559555 4.46963126334382e-06 304410.38447296194 26.35096932997022 15044 2661 2977956 JUV_20210115 0.0 0.0 10.289770218026776 0.00026229822163074625 3764548.88729955 95.96273361389333 2217640 None 134536 VET_20200109 348186219.6527784 43267.13402768212 0.00546733042437646 6.813479796850224e-07 94343984.15847106 11757.307133881735 118030 60048 370383 WPR_20200314 2251695.5405638423 408.0661122350494 0.003735863080641808 6.71548322198294e-07 305280.40993384033 54.87635458413475 33607 None 821116 ONT_20200423 261482485.80633315 36761.638230627555 0.4101139419668059 5.7681182610172554e-05 91861534.76785386 12920.023972811347 84088 16485 204987 PSG_20210217 0.0 0.0 11.0054142617683 0.00022366146976185783 4125764.16793424 83.84731875987677 8656293 None 33422 APPC_20191203 3219123.9119206164 440.3040931344489 0.029239542106306367 4.001426606855898e-06 94884.76681827397 12.984964988561538 25058 3259 1070993 ZIL_20210428 2514437621.0602236 45641.795440390604 0.21123062563747677 3.833198691387607e-06 924705710.0658907 16780.619320924532 228436 29002 36030 SNX_20210212 3772130893.4226117 79107.72147663057 26.158820442426215 0.000547872609988538 421447566.4447721 8826.834478626793 78365 4468 30058 DUSK_20210210 36993193.904098205 794.0658405908459 0.12313294041081826 2.642647271536693e-06 6034736.380242223 129.51594899368774 None 13374 931184 LTC_20201015 3270598152.386502 286529.1372475956 49.83149310877301 0.004365813676086311 1872370850.1475823 164041.2870318054 134992 215327 137966 POWR_20190601 54284275.25855075 6332.009989330238 0.12916993221321332 1.5058428624068857e-05 5279576.323200532 615.4847483933765 84912 13222 613771 WABI_20200422 4227382.490371453 617.2921646006363 0.07149177452255079 1.044367917786597e-05 989985.4950259358 144.61930718379946 36604 7721 1879614 TROY_20200718 8557563.212001609 934.9372514264456 0.0045086896519418405 4.925498985095162e-07 4976257.971787791 543.6292023128284 9032 None 599996 ZIL_20190227 146212904.41376707 38384.04726365183 0.017660296538510947 4.636209503820541e-06 8962013.697119065 2352.7222765114793 56175 9985 183294 MITH_20191203 5089361.401106347 696.1223781548294 0.008971932882440647 1.2280152826010396e-06 447455.53266449936 61.24457679256708 87 2081 845657 JST_20210613 85790061.62607706 2391.994825863977 0.059523629374895304 1.6684362894780413e-06 83454055.16170666 2339.2016850810273 47194 None 83188 KNC_20210429 430046146.9684151 7856.460777744962 3.1194650216379403 5.6970667999069306e-05 129595390.36965118 2366.79555877261 159197 10625 96867 GRS_20190811 18148704.18508076 1601.6806731868992 0.24766335480743723 2.186937712889188e-05 1202757.3047867978 106.20688358745494 38598 107011 None MBL_20200414 4377042.293299652 638.5424279252875 0.0012391363374976993 1.80964058991897e-07 944523.2496220832 137.9386237748405 None None 105584 XVG_20200324 40578765.028967604 6262.2995399989795 0.0025024861686686003 3.861950449137631e-07 3204179.863744704 494.4836066962227 295584 51881 327824 TRB_20211002 95662299.55969429 1986.3451401440218 48.054071252785356 0.0009976493453803443 26740536.897558525 555.1596032442702 24814 None 559592 POWR_20210513 233698023.76763254 4530.946523534589 0.46631358894702823 9.29609834724197e-06 26516350.37644022 528.6112323381518 90796 13761 209298 SAND_20211021 697285600.0573139 10519.900553366293 0.7801424954874908 1.1773842928472479e-05 67314613.44981039 1015.9063121586057 None None 12711 ANKR_20210420 1109879533.5914054 19835.241547376358 0.15702745069711294 2.8075570421695957e-06 202482768.98289517 3620.2709873476833 76458 None 5736 WRX_20210704 503975266.9219959 14537.51754421792 1.157677001069692 3.338888694834273e-05 8126080.007251726 234.36655167599943 283937 None 1268 YFI_20210202 922728139.4207058 27640.090187577174 30832.462861753073 0.9231700751563465 326193045.3542219 9766.707886598353 None 2909 19848 NKN_20200502 10473738.399590297 1181.933174133318 0.016113220318378356 1.8245091684457122e-06 1232851.3052595872 139.59645963574562 12272 997 325716 LINK_20210704 8084804409.958781 233213.9927600965 18.509802402700497 0.0005338464004112359 507861559.4298317 14647.377617024016 391281 61870 24345 BCD_20210401 222941466.9008004 3790.4192640713277 1.1837212598431757 2.0144459902714397e-05 4155149.71323264 70.71195696787561 28942 None 1256238 WABI_20210513 27639316.54423215 535.872161818022 0.44470677244799145 8.822883167597913e-06 2911503.497785053 57.76357994641153 45199 7776 287110 QLC_20190806 4055069.8142874334 343.2842757340673 0.01689612422619764 1.4303511488919468e-06 216178.1598490613 18.300686901083324 24888 5761 940522 ELF_20190511 56872476.34762602 8925.196143537341 0.1636422373748828 2.5686285235299086e-05 12687041.35974813 1991.4355143652333 88443 32678 938169 SFP_20210420 258954318.411449 4630.142167012162 2.390122128312692 4.273873268897691e-05 51222119.59110943 915.9232706291365 None None 25245 PERL_20200530 7069080.588051203 750.5148502743366 0.02000549872567175 2.1341004085837046e-06 1369262.282272407 146.06700068446702 11774 478 584750 XVS_20210909 354238591.21607304 7646.231235651086 31.842690516369625 0.0006877927603471803 51846213.69448618 1119.8629843212743 124185 None 21102 MATIC_20190730 24812612.490064576 2613.7828462478597 0.011436872586054069 1.2023693701531444e-06 4293960.764639495 451.42820829686343 21095 1041 191906 COS_20200625 16968345.431127533 1822.3147307725358 0.008601367908654069 9.253841380097715e-07 4626604.3182007 497.75643762462744 12343 None 278522 FLM_20210210 0.0 0.0 0.4315262339460586 9.261304253186381e-06 43976959.995819695 943.8221239230693 14157 None 184710 VIB_20211225 7802723.036298036 153.50992835520728 0.04279673767851414 8.4191225176305e-07 827915.5436973907 16.28704143058645 33330 1328 3416907 ATOM_20190714 1032772197.0986332 90740.54050915473 4.28441321259264 0.0003758790236702283 279338689.7617354 24506.869148931695 26927 5995 112670 FET_20210108 48901579.68418955 1249.319070785933 0.07107442479679801 1.8005631871741158e-06 9900599.301410876 250.8167274522256 26491 736 338598 GAS_20210420 251128407.67708653 4482.021712136354 17.590241996115786 0.00031432851985662666 68981715.85311331 1232.6675577327162 379429 108952 88657 REP_20201014 72662400.75855167 6360.280071900763 14.108233136715139 0.0012347056131426536 6497734.5136907585 568.6601007383622 136266 10414 106961 GAS_20210823 140122815.71517757 2843.5191197258237 10.055374731772156 0.00020405420887288823 23616871.41780391 479.25832122254315 None 112848 110676 FIO_20201030 8544558.979331253 634.7124071463008 0.0762391572473602 5.66548583741218e-06 1010831.9728833857 75.11696657130254 55711 149 230648 ZEC_20210318 1590247888.0962524 27034.501903996872 146.19794576205584 0.002480905645402042 1371781515.3093588 23278.442715796606 73531 18058 96017 DOCK_20191020 6525548.763542092 820.909297543589 0.011655017410253078 1.4661927298074113e-06 33284665.23901027 4187.1867256567775 None 15146 183955 ICX_20190902 102933625.3757581 10570.395885268814 0.20957211481443905 2.151888399767652e-05 15022698.13010979 1542.5320237865533 113782 26178 190786 APPC_20190719 5046257.303862345 470.1893580571714 0.04646990447850962 4.350576072495239e-06 162624.09886084014 15.225090760456894 25421 3352 1368976 QTUM_20210610 1024238792.2396917 27286.894939408478 9.919588495035283 0.00026484969642233066 392898226.2789347 10490.25128481178 245173 16696 104838 QSP_20200506 7146068.783101487 796.7992156549927 0.010043200096427788 1.117938973194766e-06 391350.9726655283 43.56246020589474 54756 8276 461426 TCT_20200701 3729444.925156525 407.89223026585273 0.0064432311357858225 7.047010938186087e-07 575247.8076057677 62.91529058845425 None None 649723 BNB_20181231 850105601.4329103 223764.6155335069 5.887829634451153 0.0015491525653489717 18852746.388558447 4960.364386363798 898433 46628 1025 KMD_20190622 162766269.60043177 16034.112212510998 1.4211274805495948 0.00013999532917571275 4311351.807127846 424.71145178175544 97278 8414 339259 POE_20190621 14728787.321563022 1542.009326306174 0.0058513182500861075 6.125953967445026e-07 3754099.9035433442 393.03012099808296 None 10854 945513 AMB_20200322 1203683.0529271495 195.35103406353437 0.008308769091986341 1.349176950375551e-06 197422.92694848153 32.05751171632215 19071 5495 780586 MTH_20210115 2990632.970640873 76.62355137867068 0.00868440993931317 2.2137729051589723e-07 148540.1809463818 3.7864890096668766 18959 1881 1263562 VET_20210703 5653722313.146806 167268.7543255191 0.08716758491574789 2.573346252604215e-06 685184796.1141201 20227.906154861328 387427 191135 29344 DGD_20190908 29189703.931198798 2788.2563511972353 14.595054209888188 0.0013941290468214404 1281039.7000095772 122.36574323271788 17276 3367 548048 EVX_20190411 17949754.363089487 3379.85813106003 0.9307927871900359 0.00017526410147346413 3292499.296201848 619.9628302803068 16885 2402 756371 ZRX_20200625 240305549.50581077 25828.66131728923 0.3437462125200179 3.698217492207422e-05 62688346.75162163 6744.369307077401 153959 16092 84197 BAT_20190908 232148727.65146193 22175.290500452917 0.1742890344155971 1.6648421933252684e-05 22597078.19132695 2158.5161306869163 105703 30073 30571 BAKE_20211204 334012487.1734449 6220.570320189459 1.7331955001489625 3.2321410722852814e-05 54124704.35022021 1009.3418771316287 None None 27201 NANO_20190520 243045129.42911118 29697.518912535226 1.8167916312232577 0.00022203175771611658 6115611.310816336 747.3944207541615 98398 45686 404660 BZRX_20210509 128607694.14967786 2193.1414523553003 0.9137136444355549 1.5554558995864697e-05 27359492.76076114 465.7529706772456 25072 None 145743 MTL_20190627 27519402.866794944 2119.1113673529503 0.5937609076185919 4.558375760341399e-05 5670783.7325450275 435.3530651293112 33151 None 940825 ALGO_20201106 198792725.41483068 12793.405433703036 0.24732967930187963 1.5910465204828708e-05 68880060.39880493 4430.983808231369 29622 1438 286881 LINK_20210610 11050310220.142824 294392.9250771294 25.60367593297573 0.000683609587387449 1624847274.7759802 43382.87900475442 365900 60053 24731 ONT_20200223 539323673.4669718 55872.30334248812 0.8473049814926437 8.777679936205303e-05 134223148.03744784 13904.885008785339 84399 16437 403200 STEEM_20210127 68487157.29126851 2101.659096348185 0.1822294843079069 5.594711398746362e-06 2800834.944608133 85.98972471507096 12071 3828 212736 OGN_20210723 216726407.9138603 6700.991231126627 0.6866661510325529 2.1210729500325143e-05 42843074.8208416 1323.3983787035133 117129 5988 73435 RDN_20190221 13557449.533253718 3418.34496315661 0.2681009604840304 6.755163876641767e-05 779580.288700463 196.42572692256397 24869 4464 723276 DOGE_20200531 325041563.11523974 33540.67285745293 0.002604939098628144 2.6880073207652644e-07 126050717.5911127 13007.031598207559 140748 156214 104785 MBL_20200319 3956676.198699299 734.7361746777304 0.0011221175176681973 2.0827166085326847e-07 2339297.99786161 434.187570886339 None None 114904 EVX_20200305 5556148.297764879 634.6867993311788 0.25486353308817783 2.9097906878279604e-05 1035700.6051177743 118.24649606135733 17844 2876 590577 DOCK_20191213 4676563.031012335 648.8547039651104 0.008197373462179499 1.1386948178003777e-06 1244469.6119540406 172.8689200974071 43737 15101 255706 MANA_20190305 49983750.6977652 13460.860142713549 0.03952992150137971 1.0645594565321568e-05 2922483.974730054 787.0387376696347 42929 6067 110020 GVT_20190811 6043345.079412391 533.7945890515986 1.36167161032722 0.00012031604388997975 279021.4682224311 24.65407882656032 21352 5722 213598 QTUM_20201229 245245245.91092706 9044.789558315537 2.384929640984283 8.7866151312808e-05 178713996.98039904 6584.224050280876 188423 15024 230416 BTS_20210620 129069827.88197418 3620.5308558856523 0.04751441591958742 1.3358907229287947e-06 11075963.40596326 311.4060538293494 6122 7173 121525 PHA_20220105 75104296.77305624 1623.4357680812275 0.4116158437399367 8.947680920079753e-06 6011955.917523223 130.68754294494587 None None 129189 OST_20190220 11734547.160612695 2998.3093670213902 0.022396744728183385 5.720221800031369e-06 2390054.0532680517 610.4297506035897 17265 738 887864 BTG_20190729 337171585.9363766 35317.90729089392 19.247948511273087 0.002017566526380525 10054685.121692533 1053.9302992701844 74935 None 299895 ONG_20211230 0.0 0.0 0.7515326608305433 1.6151694661185242e-05 4832280.308581322 103.85379123138634 None 21049 97967 SNT_20211111 377611150.6170817 5825.493423578761 0.09801365892900638 1.509244858430793e-06 27038656.583247732 416.3496585379058 138859 6189 183825 GVT_20191113 4983817.415843284 566.4938568044234 1.1239146169553729 0.00012768821417830556 445579.7931186628 50.62242914091402 21076 5674 115492 WNXM_20210105 52228646.59593135 1669.3778421794034 29.70887592273423 0.0009495811669248427 43242617.75136251 1382.1585014531438 17480 None 132342 ADA_20210218 28374309990.04283 543672.1091291014 0.8887320746562535 1.7044944930516488e-05 4147966953.0311294 79553.63635926403 214757 184439 16033 ETC_20210508 15055215170.925356 262733.6296175758 120.44401739805132 0.002101629557314351 31262464493.720078 545499.2355274556 378261 49875 131671 NBS_20210210 0.0 0.0 0.019618234126355823 4.2104206643848613e-07 8251417.8200672725 177.09004733209494 None None 745524 ENJ_20200903 186357697.47725505 16335.26142634633 0.20240153605669028 1.7733579051232888e-05 15334989.86672284 1343.587901305336 65247 15844 86087 ALPHA_20201130 38626629.36113126 2129.3167752691807 0.22514721242805558 1.239132783804081e-05 21305739.327727024 1172.5945793180379 None None 171757 LRC_20200704 105660949.55515847 11652.351145632578 0.09065094645782497 1.0001062375995082e-05 14236190.16636303 1570.6071631206287 36105 6905 365318 SXP_20210418 401904511.72392815 6667.001383288946 4.647357979125763 7.712249730176705e-05 366873464.72895753 6088.232910125747 159622 None 66436 BCH_20210220 13516796955.457447 241976.335318295 724.6750018069545 0.012952777902287882 7247108282.061693 129534.18260228906 None 455220 297431 ATOM_20210617 3105840395.5407887 81200.44935770096 13.259594112294822 0.0003464507747325092 530262340.8892284 13854.8583958693 None 30763 46073 HOT_20190618 311343381.36131936 33402.42923615501 0.001755273674528615 1.883879033479655e-07 24001148.780093323 2575.9664502680093 22617 6414 301392 OAX_20190522 5054814.005234286 635.5893164654161 0.2154308726152369 2.7088150212704053e-05 1945148.458817249 244.58181410497036 15177 None None XRP_20220115 36893370983.00779 855383.6767999091 0.7740444354801548 1.7946448307271105e-05 2142880580.93607 49683.31766453249 2366426 344225 18895 KEY_20190629 7690598.741755155 620.5632514769682 0.002951407305880521 2.3763184931974432e-07 230942.35543410594 18.59426819833383 23927 2840 824192 OCEAN_20201106 162763084.91373342 10472.804150259426 0.47441341516729585 3.044892962996151e-05 25771852.4556588 1654.0959778284985 None 1145 94489 POWR_20200713 40682006.75711174 4384.782000063792 0.09472019050546282 1.0194502145186359e-05 2523913.240965102 271.64260135012137 81496 12715 196411 FTM_20210804 607946437.5694721 15822.762235256658 0.23820495819197476 6.225487729353857e-06 40267698.16932584 1052.396485552703 104177 9369 45171 ELF_20190804 54943315.22286924 5092.068087960023 0.11947868644224818 1.1070974622286734e-05 17481972.65430178 1619.8912238362893 86289 33478 1285223 PERL_20201030 0.0 0.0 0.017125568678443847 1.2726356154561603e-06 575636.2769034042 42.77669496943231 13283 506 428852 BTS_20190613 168412999.39472395 20733.03731663002 0.06196805342353974 7.62374922393456e-06 23817935.378182553 2930.2512556601528 13725 7183 176184 MANA_20190621 82791007.3066153 8655.109452111294 0.062286928578053825 6.517124899204166e-06 19697819.385822494 2060.9966185521835 44788 6273 136694 CTSI_20211002 271358767.957106 5634.257789311824 0.6302645190917614 1.3086420557361706e-05 20983648.1969079 435.69142290950026 53452 4735 210315 HARD_20210610 42218888.52267693 1124.793466316373 0.6606854242131613 1.7640079940926234e-05 7081562.574238034 189.07535316826775 32611 None None AE_20200511 35481025.021575995 4052.1560831199763 0.09986879668568933 1.1387138949678479e-05 10024968.93902945 1143.0568712489262 25265 6336 567449 XEM_20200411 332810611.186421 48538.35058817315 0.03699683730821302 5.394427490280801e-06 21801719.13061594 3178.860723521019 210795 17979 203182 FLM_20210805 0.0 0.0 0.4892398948670867 1.230152673934704e-05 16508172.638791503 415.08415250767945 None None 72660 REP_20200711 211170688.4978393 22745.162567536892 19.198425588600273 0.002067863132418845 15433725.578557603 1662.3671546649903 133879 10235 217465 DOGE_20210221 7082310129.661909 125980.73304046404 0.05513466693712448 9.807401299175186e-07 3342539175.644199 59457.37024428025 594283 1161437 15001 CMT_20200331 5614460.198822987 873.8522509922944 0.007166262666435482 1.1174515481443106e-06 6746025.336634359 1051.9229907033823 285855 1639 955339 DEGO_20211007 43172611.18998457 777.7558213783084 7.990569204197171 0.00014402728409067188 12152747.481851881 219.0491277056322 154983 None 206155 WRX_20200330 16791946.39480544 2837.9566104161095 0.08973730543409097 1.5183795751297623e-05 5620151.546102073 950.9449025080129 None None 25580 UNI_20210110 1357012421.554772 33539.8839643766 6.262801429858156 0.00015541497842092242 436433006.11123395 10830.333196192674 None None 5230 YFII_20210428 99362466.51141386 1803.6165753256494 2496.0335848095015 0.04532141634960699 75192897.02555476 1365.30558457545 None None 334053 DGD_20200106 35533246.87116252 4838.257600894514 17.725431641655337 0.002413310105488332 2231541.6131452643 303.8234574308098 17541 3350 360156 MBL_20200725 7458115.107279368 781.8605617866748 0.0021143394983447338 2.216796352387325e-07 1996130.5304264268 209.28592036437468 None None 152748 LINK_20200403 835598442.1009198 123134.56797847239 2.2974313760037095 0.0003372971494423586 326506059.9356787 47935.95336176103 47583 13870 83240 ATOM_20210125 1957270723.9454587 60786.11195008321 8.21729393217983 0.0002546877129907253 667175672.1378591 20678.516249054952 None 10526 102282 KLAY_20220105 3664448341.429729 79214.16870251944 1.4261553336163602 3.100168047887749e-05 50100797.88099663 1089.0881876835565 87658 1121 24056 MANA_20190622 79649255.64936815 7870.056361716593 0.059817628066445985 5.909800355581481e-06 20302668.61432082 2005.8421250485894 44788 6272 136694 ARDR_20191020 51302528.04515684 6457.358685758666 0.05135965974497027 6.463782561791328e-06 4074958.23568937 512.8469330729238 66420 6503 1346230 FTM_20201111 52789820.980462566 3451.312259524298 0.02079322933822064 1.3611521544429386e-06 8684674.981521146 568.5102525178892 27825 2804 103373 ELF_20200325 26259125.33203932 3884.8063710588685 0.057010483717464935 8.436931250815785e-06 34069696.67078808 5041.944389949619 82896 33434 652715 WAVES_20190908 106731728.7353504 10194.19297819997 1.0669277324007758 0.00010191497773142202 6684714.635372856 638.5367279487168 142574 56912 33279 ONG_20210727 0.0 0.0 0.7495448009881601 2.0027696409190352e-05 129267711.20787515 3454.0089827440634 141689 19724 156257 DCR_20191024 138280850.5864175 18528.870864179673 13.067900407641618 0.0017503626723734409 11220670.53728165 1502.937905462867 40635 9649 135598 ARPA_20200308 0.0 0.0 0.011266443372300301 1.2658310901612864e-06 2357091.3120713313 264.8288698192573 None None 2543726 ROSE_20210212 160776492.8288682 3372.304737999192 0.10732540410401516 2.247832596043754e-06 25044115.569180146 524.5261341940193 10603 740 215578 PPT_20190524 38860782.600763105 4932.9875435253725 1.0514373645863386 0.0001336999994042587 2065806.0923039757 262.6863782979776 24053 None 592908 XVG_20210826 477294923.4670257 9737.581861459543 0.0290648991228828 5.930310933824816e-07 36631372.23732777 747.4150396379742 325381 54615 161164 STEEM_20190608 119579440.17952298 14894.6862472624 0.38410991636556396 4.784431738548134e-05 2444605.807736302 304.4974658670705 5652 3739 311798 AST_20190902 4248527.715224211 436.80134765860817 0.02466919806787094 2.5356727981045196e-06 2115047.677039498 217.39940011864616 32049 3578 238019 RVN_20190213 30941430.475653253 8515.401986776662 0.010713928227271572 2.9484885680355854e-06 3679286.4786900496 1012.5449686448171 19192 5722 264314 DASH_20190131 586085244.6925443 169468.47475721466 68.13538105279501 0.019701569368251456 476373044.9451852 137744.8316151706 319686 23236 89866 UTK_20210711 96488092.71168385 2861.3214792324043 0.2141938847636759 6.3526516522428635e-06 4061729.579220872 120.46447148045257 77448 3984 145803 XMR_20200711 1187972107.0999756 127881.8000734207 67.39474483374104 0.007254851551916418 97462949.69868265 10491.607819276762 320030 174689 87164 REN_20210104 299078384.4475583 8940.141035115052 0.33320167115348037 1.0122145911669793e-05 84392034.92133531 2563.6981000104624 31568 984 104896 ARK_20190205 52942662.103549086 15276.38747570959 0.3797120062573273 0.00010959219370546159 287684.23426713527 83.03120735783394 62554 21752 149153 ETH_20200903 49401551509.00041 4336275.929481474 439.35376021531494 0.03856476318566121 19315593282.634296 1695447.6055247255 485493 481403 12393 XVG_20210718 305347109.01801115 9660.971486576225 0.018454934693661128 5.850535457908408e-07 11047414.297487091 350.222258374356 321431 54453 103436 NANO_20200330 58060178.96092737 9818.710202851806 0.43385743387760783 7.350170685101857e-05 2098099.5047402987 355.4483171197494 None 50111 321803 REN_20210617 374467167.0170855 9790.271487811207 0.42703913060280196 1.1157810441667638e-05 26918885.2469905 703.3449568496119 83959 1174 86030 TNT_20190704 30186904.628327575 2515.526949935926 0.07045093164420912 5.870797929801531e-06 8600453.378045134 716.6906484952385 17592 2534 678101 WABI_20201130 4782209.6360707 263.6315972833575 0.08100161177154425 4.458049984481341e-06 643226.905560289 35.40099553128139 41044 7508 1314956 WAVES_20190902 111269778.546682 11436.35272649019 1.1136065977193537 0.00011434522773503526 8230437.040596271 845.1020312678007 142698 56911 33279 LUN_20190816 2850265.084947599 277.0804193700306 1.0566203090765034 0.00010253245310992182 197518.53617124527 19.16682830563715 31030 2202 1281939 SAND_20201129 27796585.58021592 1570.5883359005984 0.04468094349197861 2.5223089468079344e-06 9917319.351461595 559.8481449487252 58057 None 77261 IOTX_20191113 18880976.964881547 2148.137030982071 0.004496515295156624 5.109100492429732e-07 2542451.521345858 288.8823781757954 22563 1779 524128 LUNA_20211207 25708840088.791058 509341.279991034 66.92067039033216 0.0013249735231932772 3997639562.177961 79149.93296183375 None 18407 5944 MDX_20211011 1002435318.4592519 18321.032956504776 1.5416669330429542 2.8166673777163766e-05 76526902.05423003 1398.1672948539554 None None 37444 INJ_20210729 179592284.33577338 4489.211668376165 6.1999037970633974 0.00015489884781134903 14892411.804310067 372.07310066849647 77898 3792 133527 HOT_20200725 139553031.21109408 14629.837406939918 0.0007827983547938729 8.207312680486672e-08 9112775.383302411 955.4363074447033 25808 7188 636916 STORJ_20210508 315875516.5450764 5512.628451941829 2.212526995322398 3.8606418402319867e-05 387031172.53690314 6753.313027723253 374 13120 52053 GRS_20190510 24628306.743634213 3989.4769789545903 0.3396719040589811 5.502259070210905e-05 1576428.4962960202 255.36165601667085 38876 107046 6883994 EZ_20210610 0.0 0.0 4.75756490624603 0.00012702539241012266 1208080.4051791194 32.25534292330721 33203 None 118297 POLY_20211216 463692715.09052336 9504.550112105071 0.5170251565401168 1.0579662367334575e-05 25443550.71083057 520.6403838221295 63664 8465 142188 QTUM_20200207 244058962.62092355 25058.982340207232 2.5343603714062817 0.0002602561017456154 447697632.6133731 45974.535405177616 2 15212 124915 EOS_20220112 2724451848.7029505 63553.299631317735 2.772526487778976 6.480010938906628e-05 401361741.08146083 9380.716412018683 261623 96755 67163 STEEM_20210114 68528531.81067386 1840.4037546433808 0.1829877156925746 4.896343081430211e-06 3464163.2331942962 92.6932806150336 11936 3835 219133 ELF_20210117 59479370.28648578 1639.1969241240608 0.1288947185503862 3.5616628289994506e-06 29646616.30723517 819.2054142684814 82029 33332 473527 REQ_20210128 24352594.595303882 804.59768126287 0.03142737264189151 1.035950894960308e-06 407080.58736924396 13.41873225011515 39523 27156 455841 LRC_20190621 60842080.68746041 6360.532197584215 0.06324518492645612 6.61323348110911e-06 30613706.055844344 3201.1225218926234 35001 2456 720276 VIDT_20201226 19585404.128514312 793.0883792150507 0.4221682700955463 1.7120846617748362e-05 870337.3938639344 35.29614630361218 110 1130 None ENJ_20190726 76626877.32204852 7737.074137447765 0.08744751329208846 8.843222094541644e-06 3017174.8561471985 305.11499237097627 None 12711 21300 NULS_20210430 117006333.3166415 2183.1871142303557 1.041336434885059 1.942999341811094e-05 88092855.66137949 1643.6989510235744 49402 5341 273594 MTH_20190512 6749861.328577456 922.0144611398129 0.01964376678581668 2.699558070623054e-06 395840.80444649706 54.39869297863062 19474 2003 1355649 CELR_20200927 21292185.390880637 1982.967928941036 0.005394187234609345 5.024175415754543e-07 5244205.563564203 488.4481669188966 None None 315757 LTC_20190929 3507119945.3471975 428212.7513642373 55.48374561513027 0.006759305866477091 2140161338.2681072 260725.0993706928 450916 208773 127570 EPS_20210819 228454801.5727236 5071.087397801514 0.7353100164890156 1.632938269533256e-05 40191290.24385294 892.5472857622423 None None 31668 PPT_20191017 16722938.399166673 2088.759224900472 0.4616166066783252 5.765768685810935e-05 874611.4547302155 109.242329348196 None None 810126 IRIS_20210220 131661382.14317583 2357.436598704087 0.13819761466964264 2.473605150908681e-06 24695945.880713128 442.03381572918704 14463 None 757978 EVX_20201226 5993225.129507625 242.6887478574932 0.2714075275745442 1.1006811690168996e-05 922299.0594450451 37.40342856387202 16639 2809 1370634 MANA_20190719 59096895.26289635 5540.436876013114 0.0439930311530248 4.132446036661587e-06 15445165.178768286 1450.8277778489946 45472 6331 146197 ONG_20210408 0.0 0.0 0.9640566232679941 1.715616138321239e-05 54482039.984386034 969.5516299553734 117083 18086 179444 AUTO_20220112 18657374.71780903 435.46925674845824 532.8783106773399 0.012455375501012167 2286121.96885109 53.435290933421015 83569 None 20347 KEY_20190623 8143459.249653367 759.0213630230679 0.0031159971862438534 2.9049491752024123e-07 623284.9993269498 58.10696019573245 23908 2837 824192 ATOM_20210128 1655179978.8994884 54715.11424109555 6.972074319525064 0.00022929085611874693 534853456.9379325 17589.744661202047 None 10652 102282 POE_20191203 5512425.675941845 754.2105616901348 0.0021894249217614447 2.9959805361809094e-07 35713.16442720281 4.8869428883292 None 10591 723057 APPC_20200721 4679651.683923717 510.7793502038339 0.04305841669104538 4.700062295912347e-06 683826.8334916427 74.64344869177701 24457 3194 1596022 LSK_20200629 159482893.440873 17487.469461864668 1.1279180921111867 0.0001235835893304519 3133182.938362079 343.296198775352 175193 31182 194938 SUPER_20210722 93461256.18373424 2904.237529447001 0.4338978591444779 1.3435296078336748e-05 16272196.402401203 503.8553933918127 127789 None None GTO_20211204 50471274.336586066 940.0831484994757 0.07542765331743669 1.4066088692962166e-06 471653408.0789563 8795.60529671525 14509 None 649191 SC_20200730 140854275.4161728 12699.616337403302 0.0031603633547250473 2.849427322898897e-07 7305338.748170297 658.6594481595445 106769 30106 172459 AERGO_20211104 85297424.82232055 1352.6802201899688 0.3234480429218815 5.1297005616329835e-06 25590554.513376284 405.85152617995686 23514 None 664233 EVX_20210707 7672617.160878582 224.61867992238206 0.3523172374061695 1.0316215523554816e-05 434145.1055648265 12.712220697677337 18266 2806 1315536 GAS_20190916 18613575.06433828 1806.4555335384587 1.3353423941472453 0.0001295797830470042 908126.4295353662 88.12333543382398 323846 98251 189975 ARK_20200319 19523937.409264147 3623.7584803707473 0.13676260914295116 2.5383950700653175e-05 2240963.838755582 415.93616823630225 62620 21970 77737 KEY_20191220 4526866.934785332 633.7333773635904 0.0016784341993139377 2.348891928526382e-07 1542952.089065359 215.92909091044194 23640 2791 307493 CMT_20200531 9518252.70766872 982.0541781572176 0.011898959777781227 1.227840259644134e-06 4597755.557184891 474.4372182563024 284519 1634 1208460 WABI_20190329 17261666.652993795 4285.511965314141 0.3289697637542755 8.166095292333361e-05 34984352.86355798 8684.249760954423 35345 8010 1579546 NAV_20201031 7028508.390600948 517.0845901628613 0.09979525682120811 7.3684978459510685e-06 197041.0474554982 14.548752916593818 48246 13727 1488202 LUN_20190220 5012692.693335058 1282.8916118492148 1.8584251158286542 0.00047473575495083346 1116331.766516865 285.16758595176225 31681 2255 1490290 FOR_20210105 7599847.519734965 242.9129966078036 0.013678457639786683 4.372028682977264e-07 3583093.364800567 114.52597491055943 None None 227730 ETC_20200501 753209055.8509796 87041.39120242045 6.436108815240596 0.0007466739856386245 2569122908.8597836 298052.33208788146 231001 25413 364277 XRP_20210428 64486175307.857185 1170229.5633347477 1.4012503983945843 2.542846794692969e-05 12515733554.089434 227122.81108151842 1517819 297131 11104 POLY_20210218 157899198.40157917 3028.8190150021696 0.1990874935508214 3.817384547619853e-06 9164403.497286882 175.72199877922438 37511 5183 248256 STEEM_20210220 196078531.7300935 3505.5437424238944 0.5190441015030584 9.279607441016058e-06 34157569.01590785 610.6780342732983 12440 3876 182454 LEND_20190807 4804994.199102965 419.9135849104747 0.004270055380236742 3.7215976758134075e-07 1591416.876499039 138.70108983225157 41844 5844 699914 MTL_20210220 66769828.86445446 1193.7286233900284 1.0330471455736656 1.8469089526738994e-05 22161005.525748573 396.20030587308906 43248 3419 337340 TNB_20201031 6522132.190062732 479.6041958383516 0.0018938896370524374 1.398375249045328e-07 327617.693394159 24.19003011731609 15816 1429 973626 KMD_20200626 82791361.87494479 8947.368571595769 0.6875019338175093 7.430205205890834e-05 3404784.8750983896 367.9735148295539 99810 8378 202548 1INCH_20210218 466970050.43784356 8957.409426522572 4.856511038911862 9.312071725165828e-05 256261270.282962 4913.657788764591 None None 9629 FUN_20190804 17679521.73784416 1638.8584175360077 0.002929613886515526 2.7147426030311257e-07 80893.53116247692 7.496042955257825 36080 17494 379326 PHA_20210603 141851988.7700466 3769.3613602067394 0.7948069086898986 2.1108314828423502e-05 39196594.749679126 1040.9749250193881 None None 185347 WBTC_20210707 6706800183.254283 196356.4009532244 34167.305179719544 1.0004070900536775 345646843.8289031 10120.422181447238 None None 181430 ORN_20210204 79548052.63917159 2122.4503371567007 4.749836691266015 0.00012663016436499416 20563037.697913587 548.2084991086986 33763 None 131553 KSM_20210513 4381312297.566348 84996.74381854771 470.0973374073697 0.009326626312688196 783143265.933337 15537.387705578449 57948 None 90994 QKC_20210624 69521992.8387534 2062.151041494403 0.01072121146141914 3.181227540779361e-07 10083954.380163178 299.2138855723261 74607 9527 251496 DNT_20210819 133507364.96354471 2961.881205183828 0.17695842057154132 3.929190224650835e-06 10558988.305958081 234.45210179868192 70630 10250 337612 JST_20210826 106266236.40230025 2167.9934132290664 0.07408217065723137 1.5117527480076434e-06 108742313.8170334 2219.0425885092914 51113 None 156569 DNT_20200320 2761385.0490558003 446.1834708827915 0.0037055345847043244 6.002788287155764e-07 123376.26180498078 19.986362624519842 58887 6089 656002 AVA_20201224 26861625.622472323 1148.7069330417662 0.6962868028440381 2.985877626398626e-05 1000316.5183606278 42.896442949802534 40238 9034 106233 CVC_20190901 14030870.22968487 1461.6614725629433 0.040942050085925843 4.2662783017964796e-06 3548141.610129352 369.72646780576497 88272 8157 131188 LEND_20200127 25593926.10514476 2980.7496041973322 0.022623637141689454 2.6325760364048876e-06 857382.614001246 99.76843729917195 42519 5763 395684 MANA_20190511 64105412.42587196 10060.286038294622 0.04803404107551171 7.538688595778459e-06 15021675.18849707 2357.5724402405945 44404 6214 121517 NXS_20190531 20302787.318907037 2445.5575744421412 0.34003527304428494 4.095870308391326e-05 541722.0717924199 65.25274067569559 21323 3515 786875 MBL_20200308 8485614.514679682 953.9505352729154 0.0024071945667740427 2.704581758411463e-07 16354576.572718259 1837.5037097393565 None None 120670 DNT_20210408 216118465.72971204 3836.86344918419 0.28657842785177107 5.099893137506646e-06 18518894.25779176 329.5585869721274 67027 9538 173683 ALGO_20201224 237038316.70052478 10138.49718192769 0.29137146622287424 1.2496904767048671e-05 140570564.24814087 6029.063096781037 32213 1582 423509 STPT_20200711 12133519.95378841 1306.9169221045304 0.01730002500264571 1.8633948848133468e-06 5375036.853686836 578.9480753531597 12099 None 3550673 ANKR_20190821 11896257.996843897 1105.5445128792608 0.004437936024394906 4.1280611072067297e-07 3423262.252211547 318.4236024459177 13337 None 9409 BNT_20210318 1288168276.1923356 21888.450043254572 7.8899726884610475 0.00013385931032847874 228212260.001821 3871.792329145025 105258 6582 33884 AST_20200907 20788319.282585762 2018.9626196340205 0.12014070190056732 1.1692285995593143e-05 15929344.237900438 1550.2693558918363 33380 3481 151828 HARD_20211111 93379087.03528747 1437.841125673407 1.0188746119802143 1.5685539495762483e-05 5930897.011361008 91.30595484776815 39025 None 44034 POA_20211007 9526089.194180515 171.59739760575397 0.03217532850355707 5.799990240672792e-07 269576.667013136 4.859443898502649 20368 None 227008 NMR_20210806 300680619.7802553 7337.903068631082 39.097580812689934 0.0009542773010483092 23166955.194579173 565.4492942288288 29623 3562 685085 LOOM_20201130 22191885.683456156 1223.1201322665609 0.026642333461575973 1.467055224919728e-06 4329187.245998284 238.3859048253929 22642 None 345507 ANT_20211221 216509095.92036134 4589.1301443519515 5.7366382782752465 0.00012168548332518456 33733156.28681205 715.5471946679642 94569 3430 53298 TROY_20201106 5012946.794710253 322.3514819540652 0.0026294686651275735 1.692762600174693e-07 1207984.2532109031 77.7659225437533 9657 None 684232 LSK_20200412 135111078.1074159 19631.442581288833 0.9721760786923205 0.00014126757102400747 2908623.279484959 422.6540384221539 177037 31327 155237 QKC_20211125 208193518.06166318 3640.5497190013293 0.03163539518665732 5.530765324140319e-07 21081538.405689865 368.5651495919936 78128 9611 421125 ENS_20220105 881272585.8863649 19028.05864288142 38.84472087927161 0.0008442503344761568 84475949.0801869 1835.9984742275717 None None 3332 GTO_20201129 4647510.145577508 262.5454753316058 0.007031210796302775 3.9697282883846074e-07 181174.07651785426 10.228847882829328 16397 None 968505 AVA_20210704 121350141.87150972 3500.4620610238394 2.334215188243482 6.727559296820946e-05 3469948.641792219 100.00913952645146 None 10466 46420 XZC_20190725 76001337.46318528 7731.505350459662 9.523242866685855 0.0009699255402495372 11619288.524437755 1183.4041047934033 60870 4042 262317 AE_20201030 36679883.78081476 2724.721118795223 0.09919620124278712 7.376958848112406e-06 9849158.86839492 732.4558677689666 25610 6349 482941 UNI_20201106 472797950.4393272 30417.57718017499 2.206903889957113 0.00014164410005500368 344459948.36912775 22108.221211521035 136649 None 3220 PNT_20210430 79499037.80417079 1483.553779444567 1.993675602473474 3.7194055793118135e-05 37649302.6128842 702.3862158007397 38035 253 387057 TWT_20210428 230523759.95183942 4184.4993292166755 0.6647151692761928 1.2069482207293714e-05 11627246.8472717 211.12027441132128 558572 23219 5638 SNGLS_20200704 6638880.012989906 732.3358954166376 0.009671092364670694 1.066863851374055e-06 212254.09347765704 23.414751002142086 9096 2132 889953 MATIC_20211125 11654226084.731455 203718.79744186183 1.693260439994773 2.9603000281822e-05 1132149654.4205937 19793.190549577226 912673 None 5039 ALGO_20200323 101303268.1009249 17380.170253736233 0.14688007913348802 2.518999344843343e-05 80718565.93994434 13843.266964380033 16178 821 354014 OCEAN_20210207 292595986.55871904 7464.20244008081 0.6993894402488302 1.7785538429710034e-05 103967213.69822137 2643.895901547656 None 1563 65645 EPS_20211104 266126982.26262802 4220.346695288545 0.589397994750275 9.346905970245657e-06 66210128.11176986 1049.9863373319406 None None 75193 STORJ_20210325 211471665.1192838 4000.6458682033663 1.45995589298154 2.7673773099216993e-05 557678095.3422687 10570.906386348332 89841 9452 80863 COTI_20210429 255252510.47448102 4663.177082507337 0.3824981260742116 6.985548355146535e-06 91590260.71881737 1672.7093585489686 88467 4027 80341 RCN_20190706 13104904.421611456 1192.3521710219952 0.026177884617977074 2.38179971046062e-06 926126.1303931028 84.2637585660948 None 1122 1949015 NEBL_20200314 5075859.321035497 921.9594584354098 0.3183063965899016 5.721786959553409e-05 200993.1656128127 36.12997056557536 39646 6025 856581 TNT_20190826 14021703.504867349 1386.2479538696557 0.03272419240460249 3.2352591642784344e-06 790686.2311658151 78.17075647948458 17537 2539 645355 TOMO_20190920 25716537.590163976 2508.9321516566174 0.3977472484513759 3.878461819508018e-05 923081.9847609 90.01038343093657 17197 1323 283081 ADA_20210729 41097297245.701866 1027766.4408087769 1.2840181960693164 3.208000408557149e-05 1679739540.3314433 41966.734958652945 532744 549607 7136 NEBL_20210204 20053318.653239205 535.0964040491093 1.1507831656592666 3.0679762460856356e-05 2581327.8189351084 68.81793780252266 39287 5865 713465 WAVES_20201129 660159622.8090143 37293.50050586902 6.600597688045194 0.00037266098431094056 73164798.0925662 4130.787386643745 146047 57138 213856 GLM_20210902 506182887.0191707 10407.6870906926 0.5064910701746981 1.0405897509482762e-05 18327910.48471589 376.5483130850576 159670 21211 167275 COTI_20200502 11170112.706933629 1260.5754539186762 0.022372245169813638 2.5319673480831716e-06 2173967.89205528 246.0376987952981 23270 947 249645 MANA_20210513 1686776710.6308274 33626.38911567884 1.2707639795900942 2.5333053143651883e-05 250129612.7505 4986.407290717698 130631 31581 10949 PNT_20210408 103613922.66940734 1839.5718999214544 2.6407024299422717 4.69105324336326e-05 27847496.67930426 494.6944727121475 24607 223 396289 XEM_20190905 444623373.7007932 42092.02680286129 0.04940259708335509 4.676891867504243e-06 49218654.24446224 4659.478192554076 216568 18368 190156 UTK_20201124 73263070.77750553 4000.395139593019 0.1647236588169585 8.975565030629657e-06 7948908.007258612 433.1250365250952 52543 3073 120780 CELO_20210422 604434041.3294746 11155.268381203152 5.8890782639344605 0.00010874018571917411 398544844.4991003 7359.019266844955 None None 83997 FTT_20210722 3005764997.3944607 93401.98376161508 28.311805033609893 0.0008766614096784973 179272299.77260378 5551.080436177975 None None 2587 DOCK_20210826 70138296.05297104 1430.894835463272 0.1015429206411549 2.0718499313718565e-06 12081122.570828184 246.4994389684779 53159 15170 293388 OXT_20210509 392563835.9590876 6694.064364380982 0.6666383498438022 1.1348484948976443e-05 30947425.396488935 526.8319642935575 None 3969 84331 DCR_20200719 182294450.83813322 19886.38137091017 15.495893597884997 0.0016904368089855461 6176714.802467623 673.8137426370993 40560 9872 318539 WPR_20201226 4321165.179467922 174.9806062727742 0.0071362889013022205 2.890139753297588e-07 242030.73894187322 9.802050755095609 32513 None 7632831 SCRT_20210202 77342570.32999569 2317.9233593504305 1.1066751224423907 3.313550917225404e-05 957558.8620026481 28.67074520012406 None None 226191 CDT_20190305 5488250.377857787 1478.0117484829223 0.008135813417679811 2.1910129798942182e-06 1590121.4287683305 428.22721111921953 19455 284 399523 OST_20190915 7518000.766696234 726.5487477541018 0.01129591349336067 1.091650833516264e-06 173657.69618992708 16.78249119946541 17973 753 572437 AUTO_20210806 32163998.096084863 785.0347181884339 917.0554576522509 0.022413181903682203 20737105.43124542 506.8226924642402 73035 None 12074 GRS_20200410 12871377.207504502 1765.2702540305309 0.17205836443933456 2.3597281612166256e-05 9432351.071316667 1293.6182743568704 37497 106843 None ONT_20210210 678065723.3186808 14558.066647712516 0.8415181808218726 1.8068205593795945e-05 464286399.3285331 9968.676029409367 97584 16760 259663 OCEAN_20220112 323370374.9558618 7547.570811347028 0.7441475376004077 1.739238274211751e-05 15115857.043837238 353.29119280472923 143830 4372 75552 FTM_20200730 30749392.764027216 2769.246987941868 0.01265743875894654 1.1403966842053142e-06 4795053.848061115 432.01974847002487 None 2476 210821 POLY_20200407 12766943.475683834 1755.310044344167 0.02059486837080825 2.8263818078116265e-06 6663943.159940803 914.5408155288069 34846 4990 460641 HOT_20190803 192913775.2659705 18333.832500087035 0.0010874048819567142 1.0331444046933478e-07 6953865.643816039 660.6874311590436 24016 6605 379586 PSG_20210727 49587860.77534192 1324.5190021461485 23.43493303533625 0.0006280518507512457 18072088.094037097 484.3286028291694 None None 40943 QKC_20191012 20206569.209240414 2443.860620445269 0.00531259201778728 6.425254228127457e-07 4991467.559501177 603.6873890158779 50376 9237 292005 MTL_20190916 16568171.98918269 1607.9482779113282 0.32855581012317314 3.188260238062877e-05 3448867.7479922716 334.6733665473436 34381 None 247818 CHR_20210128 15579754.477278486 515.0183405669852 0.03502505290050947 1.151870160458829e-06 7037534.616184382 231.44365122317782 37877 None 518597 TRB_20210805 79354295.41367897 1990.4645148396057 42.667326288047306 0.0010728218407458155 36318601.80388649 913.1903175164477 None None 290542 ZIL_20201231 901729043.4611045 31228.921999953265 0.07787130654746256 2.699406051938408e-06 495594841.8371364 17179.77743893674 112575 13765 39505 BCH_20210708 9571887563.827637 281713.66230004927 509.7639887657192 0.015005837422962232 3667118455.990293 107948.3536971162 None 582870 271205 MANA_20190920 47153753.072291955 4604.657309518688 0.035602598926448244 3.47388780942861e-06 14956622.935018906 1459.377451391184 45779 6383 114138 SKY_20210420 63079673.47165546 1125.816345150297 3.1494072902331895 5.6276794254402226e-05 3587373.515120906 64.10281764769866 19066 4284 267586 YOYO_20200129 1790490.4507429528 191.57928722039503 0.01016421595211778 1.089647495158063e-06 175601.88114665073 18.82527396484764 7489 None 1347898 PPT_20210718 57754095.432194576 1827.334920639564 1.5928865285068767 5.0441321492004534e-05 1818986.4119092042 57.60113903324021 24461 None 885459 IOTX_20200711 26936311.707289323 2900.958632397289 0.0062161824003040414 6.691542589128305e-07 5767522.1987352 620.8572712520767 24752 1871 576006 CHR_20211125 673897519.9771094 11787.08777992887 1.2056408756409347 2.107802576518287e-05 308149188.832996 5387.322769965949 106442 1675 41811 DUSK_20200418 5087586.496515593 720.3954672763614 0.01901478400172224 2.7009909583437057e-06 292603.5811547475 41.56342911948826 17550 13332 1548362 REQ_20191022 9178519.937667293 1117.6041190662042 0.012582508343898622 1.5310456203275512e-06 119478.4329330656 14.538192740756031 40603 29090 915310 STORJ_20210805 157892320.3418248 3960.251648441194 1.092418103353274 2.7467622240764217e-05 106591245.52935821 2680.1167587627788 103929 13704 58754 WRX_20200309 30049199.235873822 3735.732371999284 0.16240121620412865 2.0169560741540836e-05 94710378.7369144 11762.638122041162 None None 24445 BCPT_20200404 1759218.0288486038 261.58742367368205 0.015217577594769997 2.26142576800801e-06 57490.402375965175 8.5434279231695 10640 3165 1858149 UTK_20210624 97647994.96272738 2897.4383351654737 0.2169955443616164 6.438751855923275e-06 6834193.622677659 202.7860848535397 76932 3972 124472 LOOM_20190725 27476630.74002435 2802.831607517143 0.0443726902036109 4.530537867451257e-06 1467145.8824199012 149.79844464867816 20710 None 431801 OMG_20191020 107209099.88597868 13492.618793608694 0.7652290490483151 9.626023073768916e-05 51198199.93676708 6440.3599750907715 286365 41730 None BCD_20210722 317211911.48865676 9857.39554034492 1.6904007046568608 5.234188986982706e-05 4180415.873376366 129.44319453461168 34352 None 1350278 CMT_20190430 24122200.138353232 4634.714853260316 0.03014105584091312 5.7887228840449924e-06 4083592.4444563286 784.2719630362307 292408 1638 827580 GTO_20190701 19250515.210380368 1774.3584397567763 0.027899687080049963 2.586636406928988e-06 6563070.64472009 608.4755510759474 17462 None 1222950 JST_20200913 58868725.14821672 5643.2097233024715 0.04109488539506664 3.93558660734332e-06 301259921.72386706 28851.14538871743 27815 None 173233 MTL_20190704 26197373.598402295 2184.8612803675546 0.5626750060391301 4.687521925708213e-05 3476654.7994192992 289.63247746005834 33242 None 763288 FTT_20200317 58410474.087695405 11594.724530075442 2.0246808169438815 0.00040206073075867475 14982975.350461695 2975.316389592094 8268 None 15714 GTO_20210722 18977873.742116705 589.7395438678531 0.02876152327942171 8.905498872328912e-07 3678645.804360805 113.90278513472157 13790 None 367259 MATIC_20210702 6813038355.10485 202764.809851691 1.0807201863761187 3.212824140249417e-05 657715146.4156377 19552.91597631377 510827 46092 6545 AE_20190922 70871014.52847336 7096.627290685348 0.2157555685730895 2.1605012779331393e-05 39934201.02912468 3998.872099907595 24985 6348 366959 MTL_20190716 19296886.375651088 1764.5946612453122 0.4088629888192782 3.743236498997503e-05 3645343.788719077 333.7397684425404 None None 788453 SRM_20210806 222867659.37930906 5439.586510715795 4.454372451129486 0.00010886654583519656 95120896.75711113 2324.790659134761 100487 None 31841 QKC_20200403 9010830.666275138 1328.6134296100395 0.002422928684085384 3.5541895366857994e-07 1943123.1765915346 285.0363738766127 50045 9196 784929 ATM_20210805 25761270.011131104 647.6765157843124 13.661825817046509 0.00034355691878131005 5114146.069088622 128.60654858454888 None None 101859 DNT_20200621 5605138.094785352 599.1419642509602 0.007459724502394387 7.972912554468316e-07 145743.92018151016 15.577030097822194 57986 6016 571962 CTXC_20200407 923340.7278266579 126.96166936596755 0.09036116203943528 1.2400911718522206e-05 8655862.302315151 1187.9061959368025 16631 20065 374531 UMA_20211221 560954318.9596689 11889.996417005681 8.779559780639106 0.00018628535142670098 23068684.48804539 489.4730606292878 51909 None 199741 PERL_20211204 0.0 0.0 0.12241107548201631 2.2778428830986428e-06 98033775.85936585 1824.2265886909095 1461 723 946189 LINK_20200208 1210800030.4984968 123614.34563789894 3.317302839886062 0.0003383750810211641 434838057.9934188 44354.817816290306 41299 12507 117576 TNB_20190225 6524006.447999319 1736.0046184912273 0.002617300961884052 6.986709700731024e-07 225751.8735632459 60.2629513362173 15023 1509 1599145 NAS_20211120 18855172.811165746 324.3563273908555 0.41467978000411077 7.129551293517779e-06 2271266.05526971 39.049668257542386 26192 5221 599059 LINK_20200329 778063130.1795595 124759.90473817263 2.138547449562877 0.0003420544577341848 277936773.5950862 44455.180265412615 47095 13801 84663 VIA_20191011 4825665.24139975 564.1824487016264 0.2085656130089295 2.4364157198783127e-05 192517.365165492 22.489437643715327 40489 2207 3844028 ONE_20200105 17746298.018353276 2414.6214984592407 0.004772350430557652 6.490274852842588e-07 7873072.232692263 1070.7177410793147 None None 276429 CND_20190302 22618310.96755189 5921.0097669455 0.013109992902082772 3.4285394068027347e-06 623519.7737145377 163.06356006961624 36733 6228 642987 PNT_20210819 36365490.03199128 806.7739294567457 1.1481184163251565 2.54928567038301e-05 7871500.361885996 174.77903665372085 None 331 475621 DGD_20190201 30420634.700285006 8865.841958772327 15.210324955304984 0.004432923195847762 435733.8163849868 126.99101087873814 15913 3284 553717 CND_20210511 70046822.51582348 1254.7191631045275 0.03636282981453385 6.503607481920749e-07 4607198.58694321 82.40120846910132 35933 6208 107330 ALGO_20201231 269305083.7673661 9326.645865682072 0.33525447771912925 1.1625357242294997e-05 123374717.52423863 4278.1685591329215 33004 1629 340846 YOYO_20210617 3157694.397458871 82.45336442153699 0.01805492326766533 4.714481455170923e-07 1364830.2642239784 35.63829585287411 9967 None 950118 UMA_20211007 623141627.153617 11226.643608560567 9.882335989006778 0.0001781257350503298 32625368.53034012 588.0611382996307 45487 None 247915 GLM_20210422 445151826.4995447 8230.134700208495 0.4451518264995447 8.230134700208494e-06 6718943.935851214 124.22236716411872 157217 20964 153882 SNM_20211111 30203955.199145406 465.756 0.687865436159405 1.059e-05 16470572.6252812 253.57192691 32982 9766 None BAL_20210201 286441050.6333421 8666.127619313529 26.47914670541199 0.0008008544025153276 106405919.57588722 3218.217342654181 None None 75993 AION_20211125 83299428.61685774 1456.9836629732256 0.16723872480688598 2.9238077620268982e-06 6718523.29174225 117.4588635044751 850 73902 368843 ADA_20210930 65835114804.1442 1584924.9518397406 2.0585266583728097 4.952359757754037e-05 2297621518.5790677 55275.69099423322 632766 624644 7697 TNT_20190530 13745837.358790867 1589.6189899645046 0.03208036928860312 3.7098914307773648e-06 2024492.6428581057 234.11974593694407 17401 2516 965063 NCASH_20191022 2686325.9131503324 327.0951009617909 0.0009258620519093269 1.1273574061265603e-07 301205.32851284894 36.67566428103253 59200 58739 890063 STPT_20200701 9659943.092257256 1055.9371126654685 0.013712503297126097 1.499222555346731e-06 964976.1153884797 105.5032714460302 11133 None 3550673 KEY_20200318 2306926.067515456 424.81436941244135 0.0008300692725368746 1.543268639239154e-07 715561.2323896363 133.03747602019433 23473 2756 250395 COCOS_20200317 5328501.1097624395 1057.6967221444181 0.00022009497355744508 4.3688408296597075e-08 528112.9545540625 104.82935621997824 None 213 67575 IDEX_20201030 27285587.564446025 2025.6393096604224 0.05072304658613585 3.772169760362941e-06 350635.3562156246 26.076037948244796 40090 1960 23826 PHA_20210314 186190278.7980554 3034.9572729297156 1.0318877750478792 1.6820868954980526e-05 91168201.5000799 1486.1387133140013 None None 160856 BLZ_20190324 11640879.282939605 2906.4055618823013 0.05659758109795254 1.4130850470483943e-05 514085.4276743167 128.3529113187375 35080 None 1348267 ADA_20210511 53022907919.888756 949661.6490025723 1.6511431667688945 2.9550448023079976e-05 6748208558.615174 120772.43831647237 389379 402252 6677 HIVE_20200605 94788514.39571768 9697.436134969563 0.26511125690492177 2.7118296212418302e-05 12234799.53080876 1251.5006780531348 7170 83 109710 BCPT_20190906 3306434.2271350203 312.9873457390819 0.028434855324486304 2.690430751979681e-06 102800.08229275358 9.72667170450823 10893 3115 1000589 LUN_20190430 5833876.695116375 1120.6907328210184 2.1570368334406234 0.00041426844983036954 816059.3421005266 156.72780055514167 None 2240 1420358 REEF_20210909 282337580.88347864 6091.808481889517 0.022221535069690827 4.79978629220331e-07 77550345.82493152 1675.0646869298907 200456 13034 85112 KAVA_20201124 91698227.72566134 5007.012954958745 1.9621628627938847 0.00010691554875710326 35857796.76766034 1953.8419013681055 47208 None 84165 CTXC_20200323 989283.5486957363 169.72716505475975 0.04651759478930716 7.975020433222452e-06 3707133.994990042 635.5545572088574 16594 20064 396619 LTO_20200316 6411162.150033906 1186.6847985003835 0.030132244280154357 5.607454426665897e-06 1183725.555806405 220.28518838989618 14546 415 882624 ENG_20190601 36539721.69552496 4259.743592550384 0.4694614654389436 5.474022646087298e-05 1540417.5805326798 179.61603541587297 61839 3425 351204 SRM_20210120 90736617.43589905 2505.7483206343904 1.799603250562254 4.9930884706486345e-05 60949437.77422201 1691.0723791363628 30627 None 88356 NKN_20210814 275103439.90633047 5771.866756583862 0.4237629671967557 8.87662917986596e-06 43178971.22401707 904.4766664231458 29493 3353 166528 VET_20190904 237347358.92635572 22333.454676879 0.004274850344627961 4.02821730409684e-07 37788446.26739736 3560.8281197621986 113643 57411 147845 ZEC_20200312 374712602.5491451 47261.64670488922 40.176610323451335 0.005061081634234125 216101840.51263204 27222.53189946861 201 15589 157694 BNT_20200105 15441989.898841755 2101.3204143736875 0.22137823161025583 3.0106874809252303e-05 9878862.112935955 1343.5000484403986 760 5063 126434 BNT_20190318 40309149.94713142 10122.23320680494 0.6195332449337381 0.000155581801776492 7235251.899450139 1816.9703337609185 835 5126 160609 GVT_20210826 21786409.995960508 444.31705849073154 4.910654582414528 0.00010018386311931299 723865.2811442208 14.767811302117352 None 5728 751259 XVS_20210203 86008290.11638321 2414.7673868129077 10.692430986512328 0.0003009829668958605 21166489.660742734 595.8189363014934 18178 None 58717 XLM_20191017 1245668322.103521 155588.75700275725 0.06217492420183975 7.765886794784336e-06 247211168.1851496 30877.624238027718 276983 104529 61021 YOYO_20190312 5541479.330898667 1433.2040713050417 0.018925905118505258 4.895141387604261e-06 1565256.6567960272 404.8499976581547 6936 None 1397331 GXS_20210203 30044911.859913033 843.5425313825147 0.433806290891998 1.2214830208538388e-05 13468212.640332986 379.22901089305645 None None 429351 NAS_20200801 19455658.43843209 1716.6292966766002 0.42741491003786536 3.770690082150487e-05 7723425.676286412 681.3670724593948 23532 4920 789535 MKR_20200807 528861689.97496325 44950.90460385149 586.1424140938217 0.049783008321537744 10403887.990382226 883.6365189546593 51393 15320 31492 GAS_20210324 181171214.15804315 3323.361143816277 12.97528990833061 0.00023766817210946854 29457319.474768784 539.5692369322712 None 106799 100528 REP_20211021 166730544.47675645 2514.7888905672007 24.149735961089938 0.0003656910163269314 19249231.00198559 291.48438144291356 155394 11946 234958 GTO_20191108 9004785.027497696 976.7634730048419 0.013589053620377847 1.4739992961423263e-06 5884362.985215751 638.2745363111464 17149 None 1042582 IOTX_20200927 47341368.37072533 4409.958723695305 0.008124648995872953 7.564083311376208e-07 2739642.9740824387 255.06194433645788 None 1947 381704 GAS_20201201 22076085.094924156 1122.8674781113555 1.5837047942119957 8.06724380555213e-05 2677346.1354033076 136.38150307487192 324852 101022 125500 UNI_20201101 479933274.3121692 34787.53123180612 2.261015576647059 0.0001640356085856011 112447743.3022698 8158.030487352357 132056 None 3220 ADA_20200407 1087744924.0649166 149552.6000042279 0.03515264045303116 4.8196729279720266e-06 147918099.22194624 20280.60621305677 155181 77738 49277 XEM_20200318 316155624.14762807 58199.59227403417 0.034615070604555355 6.422809288161282e-06 21827884.90650168 4050.153284966709 212057 18024 216330 NKN_20200612 19122116.97009549 2058.443938302537 0.02945774843076516 3.167023172291093e-06 6421886.461919506 690.4215127820364 12656 1006 247913 BQX_20210422 754023083.534418 13909.574313736899 3.388847634900934 6.257412530070811e-05 18355070.29666262 338.9212476884485 66368 4368 20896 CTK_20210725 47564594.08242793 1392.1771043299188 1.0428482274821131 3.052284826077022e-05 10873189.960230552 318.2445139384769 80156 None 108429 SNM_20210821 110515881.62114277 2249.27164832 0.25254914494518993 5.14e-06 1021259.9073099722 20.78516609 32380 9711 None ORN_20210105 38848807.45072638 1241.7196802949297 2.3609559326356835 7.546294566650806e-05 8142973.220057688 260.2728569283572 31105 None 137368 KMD_20200903 85976937.37073185 7536.344178962205 0.7051062541888004 6.189148284560843e-05 5132428.182172985 450.50457134113174 102687 8392 264851 EOS_20211111 4685539943.614906 72284.89434922289 4.847637739312315 7.46292157318065e-05 1919011233.651036 29543.11172769681 250203 95421 75988 BEAM_20200320 15426637.073008908 2493.031571564533 0.2668300730228471 4.3170640992034565e-05 80269051.1268417 12986.790992900713 14977 1474 244013 MDT_20210527 23232136.98571353 593.8431226785654 0.03851044465493052 9.823382443008726e-07 4469336.622000413 114.00544267367664 32977 305 346465 ARK_20200418 25751697.306439355 3657.9485510009886 0.17303821468397396 2.457954049159953e-05 2453328.4108833494 348.48767438239 62467 22049 88173 NKN_20210506 447519436.1565151 7817.249424977206 0.69044184132916 1.2047178504992451e-05 77751763.5607297 1356.6521010529584 25754 2776 131546 SAND_20210704 187154201.5656798 5398.59327889652 0.2650215112191597 7.642893982685345e-06 49301892.85841171 1421.8058697542851 137204 None 27312 GRS_20210819 64901093.95347387 1442.4968415361027 0.8298778991045855 1.8444931747639762e-05 5286049.317545197 117.4881497410396 41451 106852 9087517 XRP_20200511 8860901078.056873 1012093.2075922072 0.20087033236420565 2.2943270317528768e-05 3090382984.656238 352981.4053033059 952524 213272 35731 QTUM_20211111 1679567337.6182992 25917.491186356514 16.28974012917949 0.000250779987220757 393991144.6345319 6065.4800772144745 262663 17443 158020 ARK_20190826 33173870.865487833 3286.0464015479715 0.2324210717004864 2.3018322087081092e-05 801921.564978048 79.42003165284521 63311 21793 119780 PPT_20210421 202397072.32492125 3582.341094343199 5.559563007422441 9.861932611877795e-05 13894495.14019349 246.47004551564714 24326 None 724019 VITE_20200719 7527190.787407065 820.8162143256037 0.01467571991775526 1.600964603339937e-06 1079336.9565586527 117.74415648505803 None None 536085 BCPT_20190207 2364896.8257244043 694.3866946190477 0.028189279095942536 8.27700393615669e-06 308499.1696713532 90.58226827937558 9897 1323 1839639 NULS_20210718 33115481.829823334 1047.7509571026767 0.35245660011103147 1.1161106808307511e-05 22021050.94537015 697.3321014701711 56304 5364 334900 NAS_20200410 12806097.364878504 1757.118198649806 0.28123118949330783 3.857000267451655e-05 4739635.877396317 650.0266517265527 23517 4962 1093908 GO_20200310 10389388.456162319 1312.248945368524 0.011217724030456937 1.4173812210784312e-06 1590603.9306108467 200.9758962959192 10690 680 656341 LRC_20201115 212174508.21777532 13181.960217953841 0.17823349909301983 1.1085919050209029e-05 32438981.95997004 2017.667441358685 42518 7191 160661 MANA_20201224 103171478.97783339 4412.392299995547 0.07792246782179844 3.341539036967646e-06 25042664.23847985 1073.9013083354207 55312 7681 82693 NAS_20190723 42364648.46386035 4094.625493815421 0.9350765173324619 9.041403717349026e-05 4857015.802533988 469.6325906839158 24397 5135 512130 BLZ_20200713 8677636.4602497 935.1083764333176 0.03749386161543795 4.0354188723790915e-06 1939171.7411684396 208.71070367084513 36256 None 458289 APPC_20210814 10907389.063246904 229.08987499392902 0.09734782139511028 2.0398480611578544e-06 1560573.6553510332 32.70061003462506 24945 3119 888904 IOTX_20200605 20175091.634754412 2067.0517912866558 0.004683770220433549 4.791040173528849e-07 4142628.681294478 423.7505151193671 24200 1857 869322 DODO_20210420 392938463.2391389 7019.06764315931 3.4891487928101563 6.238389670686926e-05 44460709.45015609 794.9309331743297 None 832 26612 BADGER_20210828 208475798.56941605 4249.476501568304 21.955478157139943 0.0004475727365196664 13150626.909287015 268.08170747238603 37159 None None CTK_20210724 48360227.73344752 1446.5402961610214 1.0625255160164713 3.176560125019988e-05 7233339.652372687 216.25022612724558 80094 None 108429 POLS_20211028 202223978.97518137 3455.1659293432745 2.4865456951810945 4.249196805847039e-05 31459312.45222237 537.6004561074097 521370 None 19770 RCN_20210511 65091287.58489337 1165.8111923428467 0.12507421248527956 2.2384485424765303e-06 2277141.442122409 40.753915941959065 19803 1162 694898 ETH_20210221 221404545098.43417 3937953.330606141 1929.367692879665 0.034316187722169295 44957939435.53464 799632.4883874524 723308 678892 7379 FET_20190318 0 0 0.23779332362935096 5.971808850392422e-05 15284408.55464896 3838.4410834821315 7116 142 185069 ANT_20210624 124726444.52957329 3699.761494548926 3.5565337439764426 0.00010557011066008917 17493078.924996488 519.2545356909131 84946 3036 95645 IOTX_20200417 10557337.761374332 1486.940532639552 0.002435231622781939 3.435903228000264e-07 3152468.285157452 444.7862723122519 22571 1818 547255 FIL_20210610 6068760115.990174 161683.5962756493 77.71716425232813 0.002075022302521462 1073578858.5383132 28664.196595616253 91712 None 25507 TOMO_20200322 16683510.595276939 2708.871646647717 0.2378611533289428 3.860033811366329e-05 10517067.269548235 1706.7198526835116 22121 1508 236393 MANA_20190807 51848955.561423324 4531.135710366884 0.03890531251269786 3.3908206739937676e-06 14582753.127545182 1270.9704046841641 45628 6354 132863 SAND_20210614 194499952.89828908 4997.368445542697 0.2774782673117473 7.1260513749933726e-06 32682283.723247226 839.3292747583391 None None 20999 UTK_20201030 43887156.052090645 3258.1153167724847 0.09739901576952323 7.24330692281091e-06 2999785.965398584 223.0861398182785 50730 3051 143453 APPC_20190916 4010590.157232546 389.27851790063494 0.0369380549783991 3.5844178775855444e-06 194575.15481058313 18.881304493289704 25143 3303 1033070 BNT_20210813 914789991.603419 20575.87023400001 3.9122733975871835 8.799068808199798e-05 64470468.33310457 1450.0011356816526 126643 7691 39422 SOL_20200430 5897415.537215416 675.7539771469737 0.7411890135877649 8.452732511341542e-05 8964597.270530097 1022.3484348870585 52590 1818 159007 OAX_20200719 3275650.6408107867 357.3385672549673 0.06259475450270595 6.828420471035631e-06 200496.02471177973 21.87197905607247 11935 None None TOMO_20200801 61260052.60485862 5405.152508728192 0.8563388021854031 7.554692530672516e-05 7402651.361624185 653.0680941481719 28677 1614 87241 ETC_20211002 6760559692.592207 140395.77774545117 51.89270016419349 0.0010774677577984346 5285699224.231362 109748.97188832772 523337 60586 203522 BLZ_20210617 58785675.698865585 1536.9243965254254 0.20214028409020912 5.277966575557347e-06 45605268.95937334 1190.7724693285627 62595 None 221752 BCD_20190224 150700425.4487238 36637.305299929 0.8021557290482038 0.00019494529455378856 2629067.45172551 638.9337010489752 20522 None 2421830 YOYO_20200423 1400374.2456255394 196.92713046774912 0.007989339934915192 1.1238836664034536e-06 174133.2834309244 24.495835027615023 7508 None 3352047 VIB_20210722 5233204.332915384 162.62240850573636 0.028747864021853472 8.907678631588297e-07 865285.5805886697 26.811334124065564 32257 1279 None WIN_20190905 61592799.5766206 5831.115211581104 0.0002936703288043722 2.7802365426675645e-08 3660340.259823829 346.5318335152144 18294 1407 68914 SNGLS_20210513 16679822.356093392 330.07932153716206 0.0187413734338128 3.7087564217658664e-07 1860752.3128373378 36.822685988959506 9513 2136 963181 EOS_20190725 4683314442.1886015 476426.75611078163 4.595851971038713 0.00046868316344737343 3744828148.438545 381896.09113547386 1228 67440 92954 ADA_20190920 1632114826.8229513 159242.28758154265 0.05251209982657775 5.12049234865979e-06 182657805.8855778 17811.09307281419 154405 75320 108471 AXS_20210125 40528777.43564755 1257.279474253315 0.734657646735492 2.2771679038243256e-05 13931457.815073153 431.823839729109 None None 18871 NANO_20190224 126786768.41802062 30812.57543856391 0.9515076585074422 0.00023124180759515867 1663727.4639665603 404.33026752178006 97121 44754 310679 TRX_20210710 4480289556.295508 131867.77359665403 0.06258088385968204 1.841555011246484e-06 888427762.0962375 26143.584054952622 1068253 113835 20767 OCEAN_20211028 347924142.1914906 5944.452960216954 0.7981489396779016 1.3639371002279284e-05 49734572.21985769 849.9018772361508 125589 3679 161285 AKRO_20211207 63337237.43520232 1254.8402062282648 0.023403252189669717 4.6372672894466496e-07 6946547.216526413 137.64324684760498 49803 None 225950 LINK_20210106 5816061027.834387 171210.01988135697 14.575730987859806 0.0004277407276931933 1801322070.5811682 52861.76137045549 115035 26758 46948 TNB_20190329 10306048.371482879 2559.7006623214165 0.003944162450201472 9.796068165194659e-07 6166046.618819629 1531.4534771416345 15316 1505 1478446 QTUM_20190716 306060235.53762734 27945.54810717229 3.186817750128638 0.0002914170441162197 467930179.3854849 42789.65426365724 None 15367 354208 MTH_20201229 2922096.2318576067 107.76073738396288 0.008424150953668275 3.102460161313392e-07 152106.45463359813 5.6018015153666205 18920 1887 1508816 PAXG_20201106 74342706.82312869 4783.496263734726 1960.4114331020958 0.12582365477849722 3950706.1674379865 253.56528764801848 8393 None 79585 ETH_20200410 18787453383.948494 2576642.1163022956 170.09510352387568 0.023328026346075566 11971791025.372421 1641894.7439624413 452973 457129 20344 FUN_20191017 21289313.012665715 2658.8754689454836 0.0035436853005338456 4.4260741485569863e-07 526867.4613021325 65.80591255758277 None 17317 389622 CHZ_20200316 27650234.221602604 5119.832957987752 0.005781627242370777 1.0705502698115688e-06 1593068.2584852583 294.97917843114175 19736 None 252561 XEM_20200607 419138714.3251213 43346.39469864854 0.04657096826352136 4.816266078162756e-06 11271001.908878937 1165.6219783422796 208721 17883 214042 DOT_20201018 3658072954.9526196 321926.99044936104 3.9644790925219424 0.00034879407198417826 69398889.68866682 6105.700335600125 68969 5275 29199 MDA_20200330 5704947.987962857 964.7788211925119 0.28985282476496066 4.9043885013911614e-05 204669.0525537188 34.63055944854207 None 374 1815630 CELO_20210731 342300140.86650956 8204.411172180175 2.7240561420458302 6.519727294249141e-05 9592085.076490218 229.57595446247225 34972 None 89299 RIF_20210725 125818302.78778224 3682.7868668814735 0.16698625875984213 4.887487247426333e-06 2635551.041873647 77.13941376232802 44734 3362 493990 SCRT_20210809 206293200.96355817 4689.298557159262 1.441243100078833 3.277033635828652e-05 2399520.5546622896 54.55921743570144 None None 76372 LRC_20200626 88399609.07074496 9553.460394964784 0.0758630511467594 8.198618321849622e-06 16336046.359736936 1765.4577158045827 35798 6894 408887 YFI_20210617 1309888571.1930766 34245.92894699308 36296.38568186865 0.9489720545196237 190240371.10541594 4973.85049307168 129469 6501 17690 LTC_20190830 4022507944.6848035 424121.39539610397 63.69241401241123 0.006715673091330683 2922973600.2465515 308195.8104150464 452072 207981 123278 ATM_20210825 33876479.61972979 704.3179453893049 17.840793804159997 0.00037148741925091 12139809.780699667 252.77948140275646 5039621 None 88117 TNB_20190929 8335489.796903692 1017.6305670686845 0.002889975265901606 3.5281995903184507e-07 328417.82595707197 40.094586713825116 15508 1462 1364178 TFUEL_20200410 0.0 0.0 0.001828636156653917 2.5079188969023503e-07 164741.72358824272 22.593826562591094 None 4026 349819 VIB_20190224 4254264.248676846 1033.8999860438842 0.02542461941139983 6.178862458483377e-06 1224480.540340011 297.58151811145524 32699 1122 2777721 SOL_20210427 12053853291.95677 223759.7702767237 44.4964806617465 0.0008254734064765028 1808647601.294896 33553.001818410616 178745 10824 23689 TRX_20200308 1128789057.9376912 126992.65227309079 0.017088223097260023 1.91993190373685e-06 1373212983.9585967 154286.10707631323 500859 72184 46870 WBTC_20210125 3631603068.4520683 112785.12879005523 32290.901427523902 1.0004975998043266 268541073.95282227 8320.44594796179 None None 145403 ERN_20210702 64870787.98248561 1930.638329717084 5.734379998753293 0.00017054023089501657 3329275.072037924 99.01250695311613 80844 None 52714 BAL_20210418 663220222.8697482 11001.811761848343 61.06720014817313 0.001015921056817519 91121181.88176607 1515.9025986318206 73147 None 49519 QLC_20190224 6519131.635400535 1584.0907186976094 0.02715906036280285 6.600377994573373e-06 607328.7282926164 147.59712302804883 23239 5846 940522 CVC_20210220 342172674.28415024 6115.964595416181 0.5107054840061944 9.128305366292807e-06 135709952.70698524 2425.667881685584 89975 9139 153842 DASH_20210511 3782094309.6085143 67688.00160023678 373.5527967692907 0.006685460550588421 2027324621.130047 36282.95356110628 None 40439 48371 QTUM_20190613 307431000.3080086 37807.932746138744 3.2154449938264302 0.00039491524612013515 268321627.15267465 32954.785925370306 177888 15312 454954 JST_20200901 84481154.43598993 7233.610522110052 0.058919953514187696 5.046615748061739e-06 385025425.76511043 32978.22318550365 None None 173233 LTC_20200325 2613698359.221548 386798.9171326186 40.612846657356386 0.006010259390994621 2920318856.3793783 432175.414329731 133539 212624 131624 KMD_20200325 45561503.96656774 6741.520706737924 0.38536357665785764 5.7029616148210394e-05 1616149.7621394675 239.1725792359106 99762 8391 161250 NEAR_20201228 288534734.41517544 10898.760310642483 1.2021275782170335 4.566551487452091e-05 43408448.787855186 1648.967380601761 None None None RVN_20190906 134279252.98657084 12704.355354053123 0.03083216422777991 2.9171223926879016e-06 13085082.161420465 1238.0183856457472 27616 6968 276399 BRD_20190914 12927980.986755444 1248.996282384758 0.214325250384281 2.070636097201844e-05 270511.5111803181 26.134620104457277 169 None None REN_20210813 417589347.2729563 9392.608466921276 0.47477952843528454 1.0678235682616618e-05 57781889.26322174 1299.5687361942325 88944 1187 110606 VIA_20190221 8008253.345289836 2018.7840942576172 0.3462032685648605 8.7230564544134e-05 112837.71943124465 28.43097931646484 40575 2225 3168832 VET_20201201 1032106866.3552887 52527.850199290784 0.015901138009552583 8.099890685285202e-07 169258925.43787858 8621.891041584835 142323 68604 123089 XVG_20190629 129951337.95837297 10490.503817243985 0.008236828896735679 6.653165580060923e-07 3712903.7699341523 299.90380853964524 304072 53030 395064 SUPER_20210708 99396210.16213012 2925.087732195765 0.46018099960995007 1.3544073921482279e-05 16968749.095493767 499.4252094268427 126608 None None ANKR_20200315 4421532.759511086 854.9938423010824 0.0011054545391931884 2.13815291740866e-07 2268002.7088080314 438.6735443745977 None None 5490 SC_20200305 96335897.99358714 11004.587977401778 0.002204222524311942 2.516761679597746e-07 5261377.472330308 600.7394016805632 107885 30189 227333 PERL_20190922 15283153.083454339 1529.7555458557465 0.05848610885024036 5.854122436687386e-06 6510703.2335074255 651.6838720709711 11266 371 279806 XLM_20211230 6616089011.086056 142378.04573281572 0.26786723331744 5.758319815156111e-06 325126259.27367574 6989.212372177432 712819 209483 23107 CVC_20191108 28659012.13793801 3108.63176344435 0.04277557895825138 4.6398502086998085e-06 4883139.757318391 529.6722469663626 None 8141 114781 IOST_20200317 29161288.183740973 5788.456883107732 0.002431326311751088 4.82812315617712e-07 42669054.219043925 8473.212654815121 191156 52253 127057 MLN_20210804 149340747.87371203 3886.992671952926 105.14614163867137 0.0027370733576399676 147035994.6641467 3827.513756922424 27472 400 109463 KNC_20200404 77202730.36320081 11480.487202173466 0.43046692984463 6.397320905670116e-05 68571138.02646127 10190.598729166097 104734 7292 125566 ANT_20210429 324622497.2887425 5930.488938225367 9.275460554347749 0.00016939737426603557 70286117.29963271 1283.6326183643191 82937 2956 100052 REN_20210314 1056935419.9546447 17209.03490091846 1.2022459760131343 1.9597888940230212e-05 143566071.99634102 2340.279768620867 None 1109 64010 NPXS_20190513 129527757.10380243 18666.310476427734 0.0006093244527437497 8.765256784158547e-08 4555371.16857933 655.2994526963828 60177 4355 180426 GAS_20211111 119962882.61361465 1851.1534983986842 8.651568527914577 0.0001332656876281678 8748242.285762694 134.75481584505238 424976 114868 82188 SNT_20191108 48387314.726021886 5248.552978069001 0.013572396190944544 1.4721924713297867e-06 29456505.30402138 3195.13553319344 None 5678 336447 UNFI_20210304 85099848.4417134 1673.29810379472 34.5728255048292 0.0006823360419639905 81357242.77794856 1605.6824460139858 16064 None 99267 CHR_20210603 100467999.14744295 2669.685474326047 0.22129707864261183 5.884329431440966e-06 46417213.42544541 1234.242118152534 61368 None 86697 BQX_20190830 11529746.701609237 1214.979616206509 0.08196965685745879 8.642809781962068e-06 360542.3191772973 38.01527055817225 60407 5756 396128 MTL_20200626 19971651.901208565 2158.362321574589 0.3089967181257498 3.339367605603339e-05 2815549.963299185 304.2801359324681 38376 None 365486 TROY_20210602 16350210.829379532 445.93088490724335 0.008554570061391181 2.3320948680626363e-07 3341259.3306820714 91.08737998555672 17140 None 469106 KAVA_20210401 347382409.428486 5905.880711793815 5.9304616914159585 0.00010092405349139369 89976287.35972176 1531.2082112584123 80766 None 81020 ETH_20200506 22740460359.466698 2527237.6648365143 205.22517973985205 0.022807489198233673 14345915703.711891 1594318.581501249 456002 459908 20496 ENG_20200318 7253715.414563976 1335.7526203923983 0.08710339599667068 1.6194303759981616e-05 479793.29322301835 89.20339148145814 61222 3601 414852 SC_20190507 111508303.17009065 19493.057621249347 0.0027500783330485093 4.809235996895179e-07 1860839.319763646 325.4167466249918 110037 30937 237750 GAS_20211202 109790316.16870919 1920.4855788591826 7.872330837537679 0.00013766996148828367 6865942.880538627 120.07042278220109 430103 115306 77665 QLC_20201130 4169346.6055358904 229.79623473051268 0.017513254780048504 9.643641750627929e-07 672196.1393510273 37.014357613533925 27331 5607 940522 FIO_20210729 58416867.897170916 1460.2280157184425 0.17191526011609223 4.295591046727727e-06 6261977.243942535 156.46600171344784 77660 502 141932 VIB_20200306 3604719.1631194577 398.0415756165208 0.019749481669083135 2.18015762162536e-06 791778.1390199696 87.40488349742441 31543 1108 None WAN_20190201 29118090.30833284 8486.074543337272 0.2743043473160149 7.994230096260926e-05 1667639.229055332 486.0109526175622 108889 17286 456075 XRP_20190929 10428466352.570108 1273055.8948184145 0.2420720435365249 2.9550964789656118e-05 1395071381.9520047 170303.45464448593 938919 205850 30361 PIVX_20191216 13419967.479850458 1885.823151442525 0.2165759381473572 3.0459894765940804e-05 500032.1293739615 70.32603053972284 63449 8553 297199 VIBE_20200605 2396537.7306635636 245.14243877497435 0.01280668949720058 1.309999444535485e-06 140516.86610446367 14.3735050799 18974 None 1004646 LUNA_20210624 2170843178.0589185 64389.21937679975 5.197776724818458 0.0001542298697056544 207372059.47188726 6153.20114852749 83756 None 19103 REQ_20210418 132919999.74983518 2204.9461908196763 0.17262075697815168 2.8641027536733158e-06 4879067.757172642 80.9529030187577 42716 27526 383830 FIO_20210115 14467874.069131745 370.4402544928054 0.06775672579363314 1.7304492720928653e-06 963221.5888011026 24.599861898309513 55400 162 541516 ADA_20190805 1750395515.7439246 159847.26996273364 0.05620108209471885 5.132545141736393e-06 100557798.5451551 9183.407527933376 154251 74848 93580 ANKR_20200224 9259106.91153093 930.361033902789 0.002319629264440868 2.3324786726237496e-07 4008941.3029974443 403.1148525493339 None None 5317 OCEAN_20210729 188739029.58072916 4720.0055806029695 0.4350931989919823 1.0874956573973572e-05 18613885.094723057 465.24559001846734 118126 3290 115494 TCT_20200315 2745444.872217447 531.1459391156618 0.004753515849380032 9.194176170028836e-07 456947.5767704194 88.38208716276715 26 None 365886 VIB_20190314 4653824.1125396285 1203.6590070280024 0.02759172051838953 7.137396871824888e-06 1564942.2160492141 404.8175854047218 32639 1124 2369421 BCPT_20190618 6236239.906012124 669.3156615500674 0.05367945820497822 5.763654198673212e-06 1121365.2546237465 120.40288360173913 10858 2661 1175613 KMD_20191017 65018662.75278422 8119.098620687779 0.5568151342557613 6.952999083803004e-05 2147288.951789376 268.1338418433507 98182 8407 214923 POA_20200321 1906318.5223413876 308.2686633615685 0.008741487123798821 1.4098053866316745e-06 413403.1503663537 66.67263590084796 17398 None 758180 VIB_20210105 3314373.147467176 105.93690347563269 0.018121797835340347 5.792248074283532e-07 775499.4086177662 24.787192733241923 30389 1092 3160516 QKC_20190213 48609121.96862344 13390.103019620155 0.03084365038914011 8.488217266322442e-06 2771584.2200070573 762.743992183689 33189 8912 205712 EZ_20210725 0.0 0.0 2.786696641236836 8.156435128868817e-05 1776494.1786599364 51.99654426188902 35449 None 131496 ETH_20190903 19113080684.062847 1851554.2180707257 177.71647895327314 0.017214448258287315 6929999813.24363 671272.1516747453 447976 445248 24829 SSV_20211207 0.0 0.0 9.71077915567628 0.00019241547357907386 2043487.1617552263 40.49093730568999 None None 448309 EOS_20200523 2401723098.4771647 262397.12451279454 2.5557703827070903 0.0002797105537712734 2196244273.067968 240363.02556497446 1526 71299 92987 CHZ_20200229 51175754.27488418 5846.797497278989 0.010846999737236433 1.2449085900019742e-06 3861935.4336387515 443.2337707970469 19147 None 373629 CELR_20190618 52205504.88181527 5603.049684288322 0.018393664886156708 1.974958902253849e-06 32676120.63896187 3508.490327863238 15449 None 371624 NMR_20210828 249666913.38355464 5090.267385732664 43.2205744563405 0.000881241926003598 13553663.487298125 276.3511745549934 29944 3570 773013 BLZ_20190528 13542139.072280873 1537.5326297765553 0.06538091472954534 7.429264157003621e-06 1006344.3266688278 114.35138016425019 36647 None 862077 NCASH_20200414 592999.8351354018 86.50680116437563 0.00020402178049369596 2.9795437679965228e-08 1247075.2565990426 182.12346250635494 57439 58247 716326 MITH_20190224 19989938.105995532 4860.701893850543 0.03945167417298391 9.591233913010669e-06 3787855.4030002123 920.8787196086819 47 1979 558575 KLAY_20210916 3438318534.3032393 71345.58640642639 1.3731190657569967 2.8494195393623412e-05 26591864.544536233 551.8194329310085 44272 761 51123 GRT_20211104 4918654258.947243 78198.66983263714 0.9912331672274651 1.572038986139119e-05 229975277.59107637 3647.2760816968844 None 19131 27124 MATIC_20200301 52016007.38224557 6065.477957733636 0.020186743742056392 2.3565372423514242e-06 33641423.59929505 3927.1944306844916 31772 1539 153243 UNFI_20211028 50118528.29828688 856.3170019828373 10.647950348344873 0.00018181545569358217 18807682.270752255 321.1441836905693 22677 None 252811 NXS_20200711 12186178.784021648 1312.4142950082392 0.20415913361023622 2.199e-05 240391.5681978538 25.892599028965332 23331 3530 474450 BAT_20200607 346175943.4848602 35800.747028660815 0.23662037220702864 2.447075323008942e-05 62217561.79547732 6434.402021575975 118237 39743 20169 STPT_20210508 91614034.19913563 1598.7873607766037 0.08161755560906364 1.4241460138021855e-06 35992596.89900105 628.0353903959477 29845 None 885940 ZIL_20190810 73434502.14472423 6192.660161696952 0.008011300468022727 6.753918192929576e-07 14590554.681985514 1230.0551340563725 65927 10614 160236 RCN_20190920 11438051.91177316 1115.908239713468 0.022560308454234627 2.1998717858325965e-06 6191017.669938955 603.6905534921161 None 1110 2070155 BAT_20201130 346328550.506826 19088.122052619714 0.23459830251428906 1.2918112670470575e-05 94900932.71662717 5225.702523109546 123711 47978 21280 CTSI_20210930 235535220.37239447 5669.226079255059 0.5600406281752672 1.3473338605558082e-05 19887104.843836725 478.4397487701404 None 4710 224324 CHZ_20200330 28515980.70121429 4819.400564460117 0.006041544614187266 1.0222457538748683e-06 1105984.9201960522 187.13565167839795 19815 None 252561 SNM_20190908 4306181.8744051885 411.34433671189424 0.009840418719977453 9.399975731158717e-07 69288.86118678315 6.61875914155083 30988 9900 18762051 TRX_20190701 2131420637.9636118 196435.02982409488 0.03212009932119775 2.9604509995166483e-06 1322303169.7258568 121874.27259589713 437854 71161 89082 ANKR_20210324 730293731.3479104 13401.765770147395 0.10299215525522397 1.8893501408381535e-06 1372610918.3693237 25180.001578863255 57420 None 5675 SAND_20210909 710299466.6679049 15331.79643148946 0.7913034784214785 1.713098329322453e-05 306264186.9070588 6630.334394187102 None None 20279 SNT_20190730 70450143.94894549 7422.44004537464 0.019920237349280348 2.094233633778643e-06 19055379.815605734 2003.310332831445 111673 5729 282023 VIBE_20190131 6996347.467779876 2020.3518590866952 0.034925478273366325 1.0091660366046797e-05 794467.9490427073 229.56022679760434 20588 None 1520840 EOS_20200109 2658294590.3422546 330305.1208007586 2.7673708350188018 0.00034487444166032035 2583307045.4156404 321936.100377685 None 69665 75095 QSP_20190220 0.0 0.0 0.015932340469570844 4.069549980274705e-06 83926.27272466107 21.437036332702338 56585 8583 788091 OCEAN_20210304 461182843.1959049 9070.772893982901 1.098146560307632 2.167323516419032e-05 192263780.1207067 3794.5555454318683 51103 1963 81239 SC_20190618 127194294.70539881 13657.066506272264 0.0030933984786698132 3.321434255478591e-07 3756528.243415331 403.3447897316397 109595 30876 233756 BQX_20200418 3837626.241573028 545.1228780223038 0.02724911360607145 3.870651881515627e-06 97720.88441010847 13.880947856633398 None 14 397017 LINK_20200629 1731763286.4084208 189889.69244825796 4.5446156703432 0.0004983021121252627 318863797.5641569 34962.363229826755 60722 16557 86438 QTUM_20200713 195861938.54768714 21110.362322315086 2.0439602809312145 0.0002199889671718134 265348622.10075787 28559.150518235536 180107 15081 112420 IOST_20210617 616264272.3469692 16111.88260334201 0.027293627426301006 7.13509241670714e-07 94863339.06223172 2479.914745645737 246310 53565 149907 NEBL_20210825 29693381.46170249 617.9070261266318 1.6341208552496165 3.400538127667003e-05 14753383.350611845 307.01182494962785 40515 6134 2191823 CELO_20211221 1492818363.1363928 31641.801103965023 4.062483445302943 8.617333664113774e-05 74029738.92224672 1570.3176885503808 None None 34422 LRC_20201129 228270501.3497458 12895.885340121282 0.19156904033943642 1.0814371108038863e-05 37306993.952972054 2106.037994541997 42952 7223 195654 KEEP_20210826 230348857.04106128 4699.468257436607 0.41893735082554917 8.547866420194682e-06 30069842.833471227 613.5356499253566 23323 2897 114881 QKC_20211007 154484561.9576573 2783.043787805897 0.023567403853924085 4.2483082134077516e-07 20697618.1817564 373.09948038630733 75770 9564 572650 MANA_20200229 53357201.95836009 6104.840264924253 0.04075847973597959 4.677844820495029e-06 22917345.47421337 2630.2204233444445 47935 6751 66224 KEY_20190305 6479948.203723558 1745.2527412158997 0.002526841911003915 6.805575651460778e-07 368899.5723825497 99.3561938603243 23408 2813 779936 ZIL_20190629 165630902.18459982 13382.548836176064 0.018032291852960857 1.4565292661752145e-06 34896433.95604565 2818.7031219653436 64884 10591 190558 KEY_20190318 7430549.932966876 1865.9227340429718 0.002843398067949762 7.140552959780793e-07 217731.21017255168 54.67828281797008 23482 2820 726205 ATOM_20200520 486872530.870401 49895.05968499972 2.6076771231351565 0.00026736203699467744 96199332.8666173 9863.203294825527 33047 8441 115651 BCD_20200914 117373391.27700065 11367.9463447631 0.6227663446140004 6.031360800910003e-05 2524303.462881268 244.47347046443437 28224 None 3034323 VET_20190903 241176241.51323122 23334.073725144302 0.004349064915431373 4.207769419383158e-07 29673980.135936685 2870.9910887819665 113647 57401 147845 KAVA_20200421 10283895.348496513 1502.0929687619057 0.5274017028799715 7.703370400077245e-05 13778213.29688232 2012.482703365664 21329 None 326778 DOGE_20210204 4699500064.498884 125439.01305297182 0.03737901444821823 9.96526300364972e-07 2696782677.676331 71896.35426038472 375502 871940 31801 WTC_20190730 53043378.01630335 5587.636997981164 1.8210662941119764 0.00019144696353441942 11501424.219243348 1209.133764220873 56105 20031 613904 AKRO_20210703 46419438.88704148 1373.3617416036518 0.017213584636727702 5.084035607908419e-07 8359345.794396368 246.89344244343116 42767 None 210414 YFI_20201231 658368119.1707292 22800.781221288773 21907.555056894136 0.759424611268204 312726762.45463526 10840.662017897717 60804 2461 18854 GO_20211207 41612639.91694883 824.4314998504293 0.037462765354735236 7.417315443958484e-07 3528745.6384705342 69.8662239004209 24875 1170 167779 STPT_20210511 83333507.71472062 1492.524914928091 0.07453099841856373 1.3338785147177307e-06 11208426.147360059 200.59678709523618 29873 None 885940 ARK_20190421 88948953.01640317 16743.383193673908 0.6305078517016395 0.00011874031083509889 621062.2988725557 116.96147830207363 63663 21718 188283 TROY_20200207 6887071.064730179 707.545537564236 0.005914173222043258 6.073325976775764e-07 7421172.442481658 762.0879145890974 7773 None 301567 WRX_20210826 726121570.3933194 14813.988291225352 1.6033492629569677 3.2718481657088706e-05 39559018.17924813 807.2545642882219 316650 None 1458 HBAR_20200313 85917455.748436 17900.643592587494 0.02666230042942818 5.563834335663622e-06 37560661.827678144 7838.082107739853 37873 6355 124891 ENG_20200109 33880723.3185446 4209.833044541582 0.4245064970840478 5.290271882266358e-05 2969753.1820902075 370.095672608099 61291 3573 347348 AXS_20210420 438544515.91244787 7834.335626210282 7.970000972033827 0.0001424197921409187 265557243.40382305 4745.370488635783 None None 19374 BLZ_20190509 10602813.736750582 1779.9363422146373 0.05136366843861145 8.623652650593419e-06 406180.87663512176 68.19533923285171 35756 None 825478 MANA_20210902 1295954847.8975787 26641.514668131495 0.9794902354941166 2.0131239640175922e-05 164700096.72329777 3385.0435621997344 165195 36325 16891 EVX_20190830 9936335.090581609 1047.069368242854 0.4620092439636054 4.871289452508402e-05 1075376.694763269 113.3845527793448 18308 2910 816674 LSK_20190915 131226433.1406509 12676.994013438212 0.9699994946337577 9.373500151962723e-05 3358125.121164443 324.50930652731574 181620 31003 161832 APPC_20191213 2879151.985124604 399.4742045236615 0.026089873929731278 3.62362544324027e-06 75267.17743409213 10.453866504899025 25057 3262 1070993 AST_20190923 5159986.733970625 513.75373082461 0.029954227242176355 2.9823906132011154e-06 2693370.5599397104 268.16525797488083 32008 3564 234516 BNB_20200411 2073910713.8429258 302466.93444726185 13.718825913499494 0.002000267596483322 339027340.51505905 49431.73765962629 None 61433 1688 AUCTION_20210813 145282656.1957649 3268.089845054901 31.782881394676124 0.0007149463993318237 6817880.195379903 153.3661733255914 45770 None 70573 NXS_20210527 54495935.45620893 1390.9307621466933 0.8041294095377204 2.051309106897594e-05 8395484.305410666 214.16619275752132 25587 3925 447667 ROSE_20210117 79871610.76416247 2202.198346210857 0.0538342707512343 1.4875669322790032e-06 13933712.781552438 385.021104372171 8851 627 196498 WAVES_20201228 642961903.9341424 24285.91196685753 6.4028702009548475 0.00024322739923743916 126205127.15870532 4794.1850897843415 149337 57198 196756 CVC_20191015 25962024.102703873 3110.5742765972154 0.038814665108185244 4.650073474014411e-06 2509165.036854483 300.60292282003786 None 8147 114719 BRD_20200704 7487617.882647555 825.7388673890417 0.11459649880645043 1.2642854569280967e-05 677003.0111095143 74.690332615477 206 None None DOCK_20190325 5628690.810528322 1409.4546660678507 0.010943057841384562 2.7423645034142667e-06 739162.6007655608 185.23645839875903 132 15346 190400 STORJ_20200331 12296595.712453028 1913.8808473737051 0.08509802343742649 1.3273631062543342e-05 1217635.1548908844 189.92732336126275 82069 8037 134041 ONE_20210217 268806048.8299051 5466.5676891299145 0.028390133101153802 5.769228516587252e-07 42415399.2507532 861.9337219307856 82963 3013 144448 DGD_20190329 38188487.96917961 9485.229260422004 19.094611037662776 0.0047425975445292935 754608.8390324389 187.42492423733603 16418 3313 547619 AERGO_20210112 11456384.807898505 322.43954529898537 0.043391665292404166 1.2189772793427887e-06 9095918.999196112 255.526459287641 11619 None 652713 BRD_20210220 17308839.444880843 310.81241134451966 0.21884402515091947 3.918468011656336e-06 1492252.1089179653 26.719222286691643 560 None None DOCK_20190201 4201686.667104833 1224.8340064102601 0.008185902616378605 2.3856708689171504e-06 301696.17406870687 87.92527928433674 106 15388 158551 SAND_20220105 5106165479.161336 110251.0325858767 5.511953743530279 0.00011979668501301383 840423517.1803803 18265.746784134666 716848 None 4051 ANT_20201201 118179128.95029351 6011.0069298620165 3.41664231644142 0.00017404055770894978 17469994.805307806 889.9051634573866 76190 2684 102693 CDT_20200117 4191017.432013647 481.4462140959369 0.006221542463874534 7.1400889972135e-07 207607.09679346645 23.825814195847 19331 296 202251 LTC_20200107 2915710357.829009 375787.18859776855 45.69501450067401 0.005893454602664943 2553854865.643269 329380.0839529568 449156 210185 182245 BNB_20201130 4451872526.18575 245420.91507819755 30.112082957074602 0.0016572654299534077 452491273.7054235 24903.56267736706 1342995 78238 888 YFII_20201018 76107601.98237354 6697.515674344183 1920.749583992074 0.16902545542507966 132945259.27825783 11699.14765745203 11234 None 83276 QSP_20200807 17920819.41333074 1523.2536661038025 0.025150670790739172 2.135550218347483e-06 306666.6701000906 26.03914940246 55398 8222 304878 MTH_20210430 18262833.390153922 340.80784180142433 0.05254827775758378 9.806181083927076e-07 758035.5193522512 14.14591284058608 21496 2015 362958 AAVE_20211011 3821222085.9613776 69838.6564019174 289.21431238199 0.005286313193678773 162698590.95313784 2973.835218820509 None 13350 14216 TRX_20200316 683057509.9473486 126431.67410010932 0.010266931197845806 1.9106226624995273e-06 1207103474.6092644 224635.6978660081 501297 72198 50139 DLT_20200520 2786277.045296926 286.77330774152665 0.03411766557132031 3.496900197384867e-06 79864.39864970386 8.185725099461 None 2569 8395900 ALPHA_20201106 5335111.610052683 343.2357712482305 0.030446945996473653 1.954154091040918e-06 9074257.941442432 582.406468007794 16371 None 226160 ZRX_20211028 793936743.6572844 13566.685134304813 0.934174792322863 1.596388335566877e-05 118995226.29809806 2033.4801667905751 None 20504 54693 WABI_20200629 6291590.006546475 689.8795584420786 0.10645718379402105 1.1672678920165303e-05 1793752.9779622671 196.67909508442045 None 7666 978945 XVS_20211111 288058116.89542043 4441.963465631692 25.280235074955765 0.0003892831823526218 28753210.024829566 442.76254030594873 None None 26974 ARK_20210324 280428034.3498004 5144.104361865748 1.820460842619939 3.3383077923999754e-05 10000029.556138424 183.3776141179898 69674 22375 67754 REP_20190321 164001065.02504823 40570.41962607297 14.909341405535358 0.003688327351565621 3369960.2607140574 833.6730822104718 123410 9813 256149 SXP_20201130 72613211.67867367 4002.124124987252 0.9451003537856968 5.20150713717991e-05 27552311.370170683 1516.3844100120036 None None 79111 RENBTC_20210814 649908927.191362 13635.553713687255 47482.275062307344 0.9953251804583978 4164019.334888463 87.28632506533307 88996 5607 110606 WPR_20210723 3243604.3558953046 100.34667142760644 0.00537983352442233 1.6617730539437313e-07 88618.15894614285 2.7373201783714207 33817 None 6324665 AE_20200701 47447999.44999572 5186.583716123508 0.13169999869105484 1.4408461816434337e-05 7193658.665092569 787.0125833455171 25405 6346 446163 RAMP_20220112 59040267.98756643 1378.0192555297808 0.15183330887796706 3.548095832562731e-06 1862346.480942084 43.51998804906075 None None 146588 BQX_20190123 17389393.134230707 4868.648512228948 0.187359085253881 5.245643275947701e-05 3556988.4397493494 995.8787141980016 60828 5839 333871 ZEN_20210711 664886166.9143821 19717.994922824695 58.898016486388144 0.001747428269729609 23567659.664295428 699.2220995807859 115756 7419 1147969 IOST_20210718 418502548.1245568 13241.386863421314 0.018483585383052364 5.859333330088462e-07 69439358.6178706 2201.2414796033727 248597 53578 204537 AST_20200207 3853076.6560462713 395.62195550879244 0.022181452280617894 2.2778363987780965e-06 2569978.638664631 263.9137786459403 31797 3493 387737 ONE_20211120 2719238708.942619 46783.545679982686 0.2526906705897611 4.3320109959904055e-06 144037733.02622616 2469.3157125699804 272606 42026 12207 DASH_20200704 629220450.9613575 69390.7983364046 66.52183851371157 0.00733833802440763 244241655.82670182 26943.450002932954 316550 35098 73217 CND_20200730 17783234.840656735 1602.4738503445756 0.009212528214134987 8.306142889261859e-07 279945.5434764544 25.240277492553986 34296 5929 399242 KNC_20210120 255194225.4364009 7047.0651685259945 1.2658110837054717 3.512055630092009e-05 95212587.17054269 2641.7204520681603 128757 9361 125563 YOYO_20190706 5668672.002408939 515.7651785492967 0.03241207829212968 2.9490189837037743e-06 456656.5716712353 41.54898327573644 7592 None 1328336 SKY_20190716 20646217.15643664 1883.6193100891728 1.282606688229643 0.00011727344481694325 860391.4405708148 78.6687525121388 None 3786 462705 LSK_20200425 145814116.36339137 19446.25563511979 1.0450359651069863 0.0001394261717459431 4524572.388151427 603.6575083832352 176594 31307 162071 REP_20211011 166793464.56911573 3048.2431584695796 25.279087137841945 0.00046202321104944077 25218878.268151835 460.9227798844942 155084 11820 234935 NAS_20190915 29925133.872543655 2891.0303795273367 0.6576346608165491 6.355461433477968e-05 8862464.67891747 856.4793772044336 24133 5093 765651 DODO_20211221 214779164.35952255 4552.462488243724 0.8145093878475316 1.7282320679691218e-05 18601957.74776095 394.69772093903765 None 1246 17050 TWT_20211230 241594865.6181678 5199.11457783583 0.699560989303635 1.5034736459253797e-05 5377044.726080319 115.56169029195185 None 62834 3138 UNI_20210821 14905083711.957464 303367.65302747785 28.738833900684718 0.0005845709419494224 442776320.4657239 9006.425647680184 602364 50788 2131 EOS_20210624 3500577804.4056 103837.6666492857 3.649907214452457 0.000108206772783911 1787072220.16072 52980.33794110556 225118 88992 48893 QTUM_20190623 373851010.81513137 34823.38454473459 3.9140751452423586 0.00036489729243170877 601246172.4655273 56052.34756013208 178027 15311 453664 DASH_20211011 1894817430.2596185 34624.19356444371 182.41291768092142 0.003334177363119127 252664739.1326986 4618.2532705728045 409732 42711 70180 CND_20210219 41199767.82212127 797.093115320939 0.021360501318619104 4.131589230027649e-07 275173.80615470797 5.322464660056982 34324 5979 249426 OGN_20210114 30302018.71926589 813.7794929815107 0.15149296164472104 4.053613718424061e-06 11099321.33214384 296.99307960385966 70156 2502 203625 GTO_20200421 5483902.178606565 800.8325697003276 0.008272907998229148 1.2083101704988569e-06 5929637.8743448835 866.0608521791623 16793 None 999939 BQX_20200320 3702679.7283468316 598.3739306547508 0.02626753764780561 4.2498449469789386e-06 1017354.4759147252 164.5985564662851 10801 11 311435 BNT_20190704 50770741.718153715 4237.61822918995 0.7397798926208248 6.16294384793951e-05 3151598.213505498 262.55272703196067 791 5129 145805 ONT_20190131 329653120.19800925 95233.02678251106 0.5522094246711654 0.00015961527426718036 20394326.02420097 5894.948178013431 66982 10991 281631 XEM_20210916 1704228478.7082224 35352.75263435677 0.18935871987750896 3.928083626476095e-06 53790675.03602226 1115.8412456673555 371845 21958 119214 AUCTION_20211120 229517619.89354795 3947.103939453769 31.949587882170494 0.0005493063240518516 17033345.11279992 292.85273489991135 None None 93597 OM_20210422 91483675.25435875 1688.4074002888456 0.3152553837193215 5.822870951162173e-06 16094158.143470507 297.2644109401166 35793 None 70476 IOST_20191213 61537665.13094601 8539.151183678117 0.005120095562943487 7.104497337927014e-07 22846222.037658792 3170.076059184442 193676 52308 89097 GXS_20190507 61672760.08191426 10779.855879132978 1.0279033496875092 0.00017969046837678238 6507052.207839078 1137.5147861267726 None None 893298 XLM_20210725 6261645944.272751 182980.43510208518 0.26822505502572375 7.838184673916113e-06 465088049.253189 13590.997378407761 604131 196471 24604 BNB_20190801 4308951831.036379 428664.24183233647 27.723232505332756 0.002754799890479101 205603769.87586325 20430.418517291153 None 55114 791 FIRO_20211111 104605741.60051425 1613.7592115810078 8.437461162303778 0.00012989442346400125 7452431.964984172 114.72993295912258 76722 1533 173787 THETA_20210710 6101682334.142795 179590.0141022884 6.099389337985673 0.00017948549633936024 248963902.1976083 7326.2103926094105 182012 21226 18384 LRC_20210202 666742898.8528404 19972.116454353378 0.5360533296036445 1.6048890852676444e-05 158301523.55157387 4739.386424798594 54045 8181 159364 FUN_20210201 169106748.9109517 5116.962957881622 0.027995313901449718 8.467104562395953e-07 15549486.687644118 470.2898854406086 34523 16561 258794 NAS_20190201 23592388.01125955 6884.148710919685 0.5188165345770216 0.00015124024825861809 4396668.654322157 1281.6732206360527 23550 5202 429754 BAND_20200502 25709937.56713407 2906.6532150397934 1.259506230730256 0.000142614612118276 18119219.283218604 2051.649580537588 None 1121 568885 ICX_20210620 608579017.2016063 17071.217543094772 0.9580009775050807 2.6907407504695517e-05 55946100.84734501 1571.3601229496862 140697 32414 229472 TFUEL_20200329 0.0 0.0 0.0016921058825681264 2.706474248251872e-07 457385.2694458421 73.15744635354258 68128 4025 384607 VITE_20211011 66315188.37602371 1211.9468816841509 0.0865982755774116 1.5828594475990686e-06 15299597.625455465 279.6489016027622 37272 2577 396626 BNB_20200905 3101433925.4020534 295620.2134143837 20.967279424968797 0.0019996071410822063 513886862.9835712 49008.35344935607 1250828 70944 775 FIRO_20210727 56222313.69730741 1500.868121376723 4.6301231803641025 0.00012371602240618027 6136046.248986872 163.95400417086142 73733 1093 308142 BAT_20190706 373543491.3480648 33986.92417363183 0.29281071333579056 2.664980733348137e-05 29763381.734176576 2708.877621902614 103554 28470 46382 AION_20200725 50796642.21058488 5324.043988520402 0.1156134089365859 1.2118344196615479e-05 3115540.2078392594 326.5640979213738 67446 72555 276087 AVA_20210105 30951177.476402402 989.2886995178902 0.8019174729418752 2.5631590091594558e-05 7073583.477646224 226.09208340674914 41227 9040 96594 ANT_20210206 207243228.357354 5469.110636432586 5.94287804328402 0.0001564467679712826 160155157.47316822 4216.098088858514 77590 2733 124714 SAND_20210707 221558715.15877956 6487.682343317376 0.31322104605501844 9.169935732831326e-06 237195343.38740638 6944.188720343257 138110 None 27312 BTG_20200626 149144166.23915434 16118.203465871928 8.515748169236907 0.0009203079484570064 34993999.55153596 3781.8469141584956 75053 None 228624 DLT_20191220 2837840.9596858257 397.39767364549493 0.03457723467290589 4.838925914828787e-06 79340.03226536045 11.103274794645108 None 2614 5273124 RSR_20210814 555604796.2440436 11660.779330792226 0.042367534426345416 8.881098008287065e-07 62658617.79101376 1313.4522298747654 None None 131143 XTZ_20210202 2193843844.316525 65748.5505306028 2.9048198140128534 8.69673474022709e-05 223306611.69575933 6685.572572482864 82301 33662 140734 DCR_20210128 753087055.7808869 24894.721308759694 60.3194172104459 0.001990598807356948 28238964.351807162 931.9129951734353 41660 10165 350350 GLM_20210115 110492519.19826658 6393.577954391452 0.12211663211693134 3.112917208409775e-06 1575378.7870399286 40.15852428066082 145672 20313 228749 LINA_20210420 244051349.33764628 4359.831468334507 0.09844805284171988 1.7592560406208396e-06 56047822.76112357 1001.5685217734191 None None 69525 WABI_20190904 10824063.827484395 1018.5288957072536 0.18735321121578055 1.7629668705599842e-05 9524617.91241995 896.2528971547318 36302 7959 1609387 GRS_20190818 16085260.79861119 1573.65643658402 0.21976964311320368 2.1500547475159754e-05 971278.6159511835 95.02232291067152 38555 107009 None FUN_20191102 19437235.436119035 2101.264916481814 0.0032340796748313904 3.4977083404985604e-07 979859.63595801 105.97337004033136 None 17295 391178 GXS_20200725 32605700.933305655 3417.4342730332446 0.501092423992713 5.25234099064651e-05 4435860.074044972 464.9571332576658 None None 592521 RDN_20210610 31008699.9643369 827.9219219745014 0.4642442455941082 1.239516614756267e-05 973473.749711247 25.991423657863603 29655 4659 821866 YFI_20210203 954499594.6318728 26802.052682632115 31740.90776670123 0.8934628373914759 405163013.1493618 11404.780795660601 75529 2939 19848 SC_20200331 50835432.86582647 7912.1867226492905 0.0012618901452332582 1.9654409085324366e-07 2417427.9752358664 376.5234124307261 107361 30146 166104 FUEL_20191108 3467806.3967088726 376.1708133839424 0.003503115850896616 3.8000101166564346e-07 827308.917674352 89.74245758837742 1 1494 None KNC_20200207 60563172.92146711 6218.380445479491 0.3490371660415572 3.58568991575172e-05 25552181.808618348 2624.9984113642668 99765 6817 161843 ENJ_20210108 150672399.55277932 3854.200648775198 0.1648256316993936 4.175608393443056e-06 34655007.764655195 877.9322718498091 70892 16087 75025 VIA_20190110 7454256.849607577 1874.3532104129322 0.32236054031397665 8.106449755896583e-05 205145.90550842878 51.58835426979468 41020 2230 2576177 POLY_20190220 40739638.32656737 10409.437831711672 0.0933427975713413 2.3889095014747746e-05 4430135.070043762 1133.798432980916 32555 4988 244935 VET_20190605 410233605.93671125 53493.08620691561 0.007412113812515142 9.64936790049209e-07 23606036.658658195 3073.1224338095067 109100 55806 213726 ATOM_20210704 3248112569.558036 93694.9445985111 11.796158673646879 0.0003402163194182674 389464650.78865176 11232.659181742913 163144 31682 47818 BLZ_20190515 10786983.71978983 1349.9025091030774 0.052199812723632125 6.530464625613187e-06 759588.1957071266 95.02838388255394 35801 None 825478 OAX_20210206 10737735.666202905 281.3756420888113 0.1908080287509289 5.000004961425771e-06 1387399.1542309471 36.35592642533856 None None 1390628 GO_20200223 16614374.438717457 1722.1210093099753 0.018302728020597993 1.896076289333375e-06 1726663.8224323303 178.87422736540827 10674 684 700687 MITH_20210704 22537709.989875812 650.4713929516046 0.03645312206859904 1.051263144740713e-06 3994819.7914156215 115.20568275861326 None 2738 334204 DLT_20200707 3100784.08575633 331.9698410184022 0.03790840360553193 4.057460810533851e-06 71986.65132578771 7.704967470414 None 2563 4351611 WRX_20200317 14297860.193740943 2843.178732951885 0.0764307166686205 1.517759714964817e-05 18104655.337480273 3595.2190064746483 20898 None 25580 EOS_20210105 2615627701.744073 83602.98826932162 2.753755553824179 8.80179519086116e-05 3923046556.135256 125391.85717978358 192190 73830 95839 XTZ_20200713 2019823910.1142964 217657.684315324 2.8173592147700774 0.0003034948329066172 185251921.646793 19955.922095795475 67678 27227 72364 KSM_20210813 2326568394.2985272 52330.22858908303 260.0112220715545 0.005847895587569919 233645105.46020877 5254.896963262807 100721 None 59674 LRC_20211204 2980035509.9043326 55506.448006610815 2.3865750420727814 4.450592685540344e-05 360757930.20791245 6727.5764521509855 156603 77037 61944 CVC_20200913 22630861.217023216 2170.3099014962595 0.0337881948517357 3.2359817304640237e-06 3528117.625004349 337.8968372693549 85304 7971 130606 XMR_20200305 1149359530.6914136 131243.52804537886 65.79158614799478 0.007512636082262243 132489711.58783509 15128.788437541332 320797 166426 88356 MFT_20200329 5839838.696702327 937.1644893989841 0.0006051947071220621 9.682109624935065e-08 653397.9871425412 104.53282002927443 18334 2523 872119 TCT_20210909 20367232.351142418 439.4501022536891 0.03518775267318295 7.592225219270119e-07 11336226.403583257 244.59414840162142 None None 1854272 RIF_20210902 192568335.19763282 3958.7120917895236 0.25217208778287564 5.183085269296415e-06 3338831.267395633 68.62554579634866 44687 3444 1182664 UNFI_20210610 22422029.453399476 597.366560637677 9.112867851835695 0.00024288985733665185 10912083.933044853 290.84526987944105 19208 None 125869 PERP_20211221 603562812.5651389 12793.126706193223 10.158793759773102 0.00021547658621322397 28952051.36165909 614.0974350698464 None None 104435 RVN_20210221 1851086729.4798923 33129.91067505183 0.22945584022138002 4.081155559950629e-06 3688594304.063553 65606.20613494642 None 19649 101877 FUN_20190227 22537277.959717058 5929.6804971498395 0.003836903355112522 1.0095101562365048e-06 883479.4406896553 232.44824944937875 36369 17824 514881 HNT_20210610 1191922923.556747 31754.192320568094 13.858015989404723 0.0003695397214825785 25608594.466380935 682.8822303208509 53230 35951 3416 SC_20200901 204702715.1026391 17513.73016260497 0.004577403429485126 3.9206406072450417e-07 19167071.76986329 1641.6992965673287 107020 30102 136380 SC_20190622 127933916.91014184 12638.240210954355 0.0031099562785251076 3.072542545527671e-07 3893575.408613161 384.67344958488434 109559 30865 233756 VET_20200410 250748551.7523131 34402.36285497176 0.0038916355919075833 5.337259905579963e-07 116570851.67489396 15987.33792283847 118817 61612 281766 RSR_20201115 151540414.63036004 9416.859822001397 0.01621958747728268 1.008300770079977e-06 47639180.87778119 2961.5193871190545 47045 None 119364 FORTH_20210809 144586986.62814233 3286.8364519310576 16.781047580733357 0.000381488428003505 19329445.100229148 439.42188888926415 31885 None 110884 PIVX_20201228 22091961.959037974 832.0989868725708 0.3380265285636127 1.2853545788484063e-05 411301.6166044062 15.63984987914154 64867 8698 347708 CTSI_20210821 312657824.083914 6363.618757600285 0.7888452923498959 1.6050327347862603e-05 51070292.288631454 1039.1073090412497 None 4319 202161 EOS_20200612 2362130736.157867 254567.46744308615 2.5236239935321976 0.0002713686094657962 2657300840.638112 285743.056772477 None 71545 90009 QTUM_20190616 337718777.81258523 38296.950323108606 3.5255324339765997 0.00039983720296993106 355859777.25065136 40358.720462801895 177964 15309 453664 GNO_20220112 751186559.4791296 17522.93200422093 402.0643875173738 0.009397138821726832 1814455.8941956575 42.40786912001824 110016 2455 125081 OST_20210314 21250375.033172917 345.9984517628338 0.030699818426457033 5.004397136783305e-07 4522200.9452419495 73.71668831377947 None 743 625092 CTXC_20210124 1092908.0297802659 34.13584195045382 0.1088422432135055 3.3962649149678774e-06 4918044.281299816 153.46046488652686 None 20078 599197 IOST_20190324 118994286.53462829 29732.660073952607 0.008819899715259984 2.202295181369209e-06 36309245.9353343 9066.279656693261 195692 48633 93184 BAL_20201101 81452496.06682384 5904.010833368787 9.923864626416675 0.0007192002521927002 16681274.779987592 1208.921874722788 27126 None 62865 FIO_20210420 70552131.86910672 1260.2741454123702 0.3028857387761322 5.416021412259338e-06 10652732.902533252 190.48579088711506 None 376 172858 YFII_20210804 186900435.960573 4864.377808829618 4693.265670463109 0.12219158178073687 283480274.17747295 7380.554508853193 17864 None 584326 WNXM_20210220 109081664.51759282 1952.705155210033 67.56903596636128 0.0012092733839675735 30903159.171359293 553.0694249514341 22138 None 109999 POE_20200113 3898182.46077603 478.1825433238678 0.0015489212998194707 1.899679995621883e-07 35054.23748197564 4.299239329593396 None 10547 664429 POA_20200430 2133590.088685372 244.3830333181694 0.009731636497107222 1.1099862430337533e-06 157483.57620263618 17.962508478470756 17250 None 511690 BRD_20210617 12081051.875927141 315.4590810696993 0.14814437751117868 3.868329486146882e-06 279547.3091733064 7.299508202844357 788 None None ADX_20210206 68230134.70126632 1800.5806914785126 0.6103564079757525 1.6057171274680513e-05 16960964.02039268 446.2066764603517 None 3751 11021 SUSD_20210814 256434068.74787796 5375.893818070793 1.0034968871988539 2.10322351413062e-05 99306910.27537714 2081.3679790263673 147434 7430 46425 XEM_20200927 1083693884.3017297 100925.7705543108 0.12081651179927548 1.1248069437877248e-05 34765160.22931333 3236.6514349290287 211551 17844 170496 ZEC_20210702 1365499040.5724297 40645.701798496106 121.85162284943253 0.0036229295023074764 870154598.052764 25871.701099535614 76295 20054 101519 STORJ_20200711 24129204.930809222 2597.4399082693785 0.16781163326201745 1.8064442428025383e-05 4729429.39000505 509.10954903681704 81264 8164 96917 CELR_20190810 23769536.731022265 2004.4619201761561 0.007610649170094763 6.416606363842157e-07 6990364.950851036 589.3639192496299 17959 None 493170 XVG_20210602 427038682.1743581 11641.66886256228 0.025948821177135983 7.074009829271613e-07 14227284.052955462 387.85556595197306 None 54254 107080 INJ_20211111 517334269.50336313 7964.595436906094 11.851080417000587 0.0001824469741051216 36947667.14077113 568.808060774514 None 4290 116286 PPT_20201231 15562380.547553172 538.9188288009752 0.43146705676960523 1.496164557548587e-05 1304057.0713164096 45.219766851541166 23632 None 750705 ZEN_20190221 29881595.181801733 7516.533074174571 5.105881177861468 0.0012843532787558186 1075504.565008754 270.53661577067777 24903 4249 306368 PAXG_20201226 71980130.27006459 2914.7524593818116 1900.8922787013164 0.07708984176651115 1348608.9714610472 54.69223762950807 13792 None 82066 BTG_20190312 213083266.47646335 55109.9942877735 12.159096228964975 0.0031486457926198264 8461822.672777463 2191.2222631372156 72846 None 404455 OGN_20200314 7155823.595553378 1301.696959405287 0.25268682163702094 4.565038530244015e-05 68605359.36805017 12394.23990801828 66530 2167 120835 ENG_20190225 24102043.371108428 6413.429989811143 0.31030919371683613 8.28349618764052e-05 1247991.090284605 333.142866789028 61131 3203 251266 ALICE_20210519 201911021.19275483 4732.077016005683 11.664383803287771 0.0002726541541142908 114433666.59415597 2674.8789386227145 None None 54175 QLC_20210325 23516012.12164691 444.78691194952125 0.0977213925017192 1.8534269953738159e-06 2150131.1556832073 40.780335047594086 32468 5630 940522 BCD_20210429 421978889.3441957 7709.081028954193 2.2433669681399224 4.097391989480965e-05 7012229.09405233 128.07468294943408 30153 None 1334994 QKC_20200329 8764139.371699352 1405.3013832861407 0.0023582182046994796 3.7727572479930524e-07 2104539.51310355 336.69134967775443 None 9199 585547 WABI_20190207 5946293.504094709 1745.9650022060719 0.11330909990298464 3.327009047330933e-05 162957.8489936087 47.84807560906616 34769 8126 2083509 SYS_20210617 97441693.35290147 2544.2429889571576 0.1586644022481417 4.142793286185154e-06 1392801.738278377 36.36663050167103 72981 5433 388533 ETH_20210324 192388701720.41965 3530563.397444113 1673.8591835627929 0.030706281234435966 28758919428.479744 527570.9430286468 829893 742520 6707 AMB_20210105 1900694.446505011 60.75166408765582 0.013145407278455314 4.2016504480486887e-07 287774.8497604076 9.198112320298094 20227 5485 666960 NBS_20201228 0.0 0.0 0.014872726242202849 5.65539244999723e-07 11030820.651266184 419.4497956361527 None None 802802 RVN_20200511 117328394.44709538 13399.640145468931 0.019196622520790622 2.1869162681086353e-06 27789528.049570516 3165.836641776296 31193 7696 223095 NKN_20200422 10063827.55744479 1469.5433666700847 0.015516553545434096 2.266693032267324e-06 2169595.5254017133 316.93939287913213 12274 997 316185 FTT_20200217 84435627.58514725 8470.094382697554 2.963030141353729 0.00029727558485396094 58185498.95599976 5837.648423063887 7017 None 22405 ALICE_20210430 238278473.60682103 4445.042637432326 13.588852597574967 0.000253550445067933 437899950.6799448 8170.647712371242 57414 None 73832 OAX_20190716 5135017.105918997 469.008644994946 0.10961424888449078 1.0035441418151558e-05 347605.1891080012 31.82406983981447 12338 None None MIR_20210711 290854104.52426064 8626.272452671834 3.741239984358542 0.00011095925728362742 13022635.955125041 386.2307736196953 49872 None 16054 ETC_20200621 728957567.0175024 77919.22315194478 6.264936176003378 0.0006695929356984619 707600353.3823528 75627.93691935342 231847 25561 386622 DASH_20200320 616675113.2145619 99898.41039036476 65.64231775208393 0.010633740615199455 1012507574.9003705 164021.3705292782 316457 34181 60317 NKN_20200404 9851986.805216959 1465.046739942602 0.015158000104719078 2.2532492925255072e-06 4441017.514690267 660.1609383782679 12247 998 307809 AXS_20211125 9240384826.36359 161622.83409556115 140.27594723668304 0.002452421852832748 735207688.017829 12853.5179122573 734842 None 437 QLC_20210704 5951230.166348877 171.66898276709586 0.02479679235978699 7.152874281962327e-07 515220.23235781497 14.862025281767238 34934 5676 940522 TOMO_20200113 31745241.570974194 3891.7979763889175 0.45751288468285417 5.602132240747626e-05 14250637.175073735 1744.9553147561683 20387 1440 259463 WPR_20191203 5286186.160817329 723.3017072547037 0.008656488096229169 1.1848394114303298e-06 1545024.2938218701 211.47209521779288 33960 None 800909 BNT_20210108 152964281.46540892 3907.873635533862 1.5949431856432255 4.04167654268554e-05 56745092.93256059 1437.9528567693046 89711 5308 101085 POND_20211125 76164664.67478304 1331.8438112827607 0.09464011457957473 1.6545779210311355e-06 29784890.90901626 520.7244633769201 26712 762 1022211 RENBTC_20210511 630681683.1893512 11294.365251404815 55850.7437257281 0.999558689236602 17172824.005894758 307.34139437995896 76706 5018 67818 TOMO_20210421 199157411.36948818 3525.189411820487 2.4461633405517578 4.3384052251428685e-05 33803892.96264559 599.530634067275 45396 2063 79487 ADA_20210128 9653513519.30118 319115.20304137206 0.3123153604650019 1.0273220012457949e-05 1845484838.6889033 60704.89696465354 183457 108445 30705 DCR_20190730 258761876.3742079 27262.46400302709 25.509680952931618 0.0026818571938612874 17341775.527599905 1823.157472601657 40577 9556 324578 NEO_20210813 3421110131.526007 76951.81293016553 48.59429896183428 0.0010929312366439324 659897028.3403617 14841.701406334345 409532 112645 120320 LOOM_20211120 86330861.90352088 1485.107645946942 0.10358423865928586 1.780914282133662e-06 2060743.64351237 35.43017580714091 37635 None 364600 ONT_20200322 236461664.66494763 38396.61736671413 0.37148003351607495 6.028413927836897e-05 104378742.95007482 16938.68340148918 84355 16534 298289 STORJ_20190909 21542033.439540945 2074.0061742523053 0.14805534042601398 1.4245465329245564e-05 3551889.5066916426 341.752743773345 83505 7798 165970 DOCK_20210725 43927711.29886261 1285.711353594611 0.06360149995350216 1.8615354383113504e-06 5062075.347769042 148.16054115332926 None 15147 269891 FTT_20210702 2288847008.9377465 68076.38345962981 26.34830996682131 0.0007835552069723295 33194479.996847954 987.1489927445579 148637 None 2913 FLM_20210710 0.0 0.0 0.3849047402064577 1.1326513936253148e-05 6926012.558030122 203.8103706364184 23700 None 83883 BEAM_20200629 28307474.290293895 3103.833735619972 0.43692420161697126 4.79072969635602e-05 12830569.173697866 1406.8295721341183 15324 1525 471978 AERGO_20210804 48088360.512080505 1251.6282901887769 0.18153186881511868 4.744336265596968e-06 9441702.273978533 246.7589343941963 21526 None 411041 MTL_20210826 190114610.22218782 3878.642929303904 2.945323346761667 6.0103539404098004e-05 52733242.3161048 1076.0973021643326 None 4231 207199 WABI_20200207 8830199.476968238 906.6489932498131 0.14880608476627125 1.5281051571923017e-05 1544291.3013421176 158.58487947550566 36649 7833 3232814 CND_20210703 21041282.039299153 622.5862872018104 0.010906371143674452 3.2270643511660313e-07 72318.54549148466 2.1398189829538703 36073 6257 150163 VIB_20190509 7228880.223497448 1213.5407584046725 0.04247319301584476 7.1301500172306845e-06 1347424.5941802463 226.19772169771372 33071 1126 1885935 KEEP_20211125 435426932.02663577 7611.3689281974885 0.7921087012614446 1.3849838002003853e-05 66286233.98643669 1158.9995173807035 29760 3580 141689 NXS_20200907 12320097.915183565 1199.7177706410332 0.20633954307448707 2.009312087587615e-05 68687.43850172784 6.688708251967509 23315 3524 382066 SCRT_20201229 35339683.0405047 1303.2528709499013 0.6269678536878365 2.3090093686782962e-05 336820.2470688673 12.40448136962658 None None 377995 REN_20200117 36867316.77420725 4235.666738686727 0.04358186337838741 5.004378606577834e-06 2008378.018726572 230.61620618591186 10533 870 462804 POA_20210324 26503151.293806706 485.8786480057367 0.0928040803563904 1.699890744077112e-06 1295462.68796377 23.72896777932708 19228 None 376055 TRX_20190923 1120196821.6662424 111434.10277106083 0.016924810458719942 1.6849190300967527e-06 742595210.3547574 73927.72903644462 466184 71267 69613 DGD_20191020 25317347.218285322 3185.9276184437003 12.66184546331022 0.0015927677698318139 1141078.8305905734 143.53939079958525 17341 3356 576212 SUSHI_20210107 494956068.94809353 13473.25390115646 3.8959251026946897 0.00010555380661449268 426601528.7192704 11558.080321599451 19590 None None QUICK_20211021 152000360.20484024 2293.227605288462 419.3861862991182 0.006352232632224419 13091699.65813743 198.29342142516032 56362 3628 5585 DODO_20210708 141451162.64148885 4163.047068963262 1.0514763254667752 3.0952133029741415e-05 59797519.01430849 1760.2495829449394 94023 1017 25829 CTXC_20200319 857956.9874426161 159.31858037785423 0.040304348768593415 7.4807259716325546e-06 3331092.8188997954 618.2705669637359 16610 20065 396619 GRS_20211204 76425206.40508433 1423.503757461768 0.9732996091195054 1.812140936595523e-05 2872343.623649775 53.47882004281973 42640 107174 None ATOM_20200316 366643613.31742096 67864.51382901541 1.9264340967539302 0.00035849939696120135 187673373.02529737 34925.04164487787 None 8267 84919 QTUM_20210310 675892990.084613 12366.730997963641 6.553570252384066 0.00011983829504855659 536978213.5856347 9819.159803911862 207454 15620 119513 ATOM_20200531 524231344.8534227 54163.68591535752 2.820472875330498 0.00029104141977449313 111148362.31762418 11469.274339587662 33583 8472 148599 VIA_20200106 4273050.436328043 581.8246451704961 0.1851240079673922 2.521010937794824e-05 108270.88934889858 14.744284076942861 40000 2187 2950394 ONT_20210718 557246429.6446148 17631.232082698196 0.6359156568310605 2.011912557808718e-05 122036960.15619649 3861.0103402483383 None 19690 156257 VIDT_20210421 50289504.671370216 890.1502995754007 1.046626804812087 1.856250203531847e-05 9081784.473457597 161.07044268099705 26582 1518 436797 BCH_20210128 7000363148.76315 231288.5362358486 377.46198775312104 0.012416136179642247 4491259628.092509 147734.322845241 None 388066 393369 STORJ_20200411 13189725.462019535 1923.6391422587533 0.09177294769229216 1.3380915732884641e-05 1918707.6712291206 279.75635860405635 81963 8047 134239 STRAX_20210729 168341923.90242288 4210.254834384574 1.68961065131839 4.2217755313623264e-05 23090248.79527397 576.9485845800733 157445 10767 180987 ADA_20190316 1549931684.413521 394945.96606035245 0.0498118734459803 1.2692651830608046e-05 70787494.18319316 18037.48695786041 148443 71703 114541 DCR_20210111 696442097.6940341 18107.350739560297 55.84519008700937 0.0014519634114179376 19271511.073372234 501.05530875041524 41423 10108 378546 NAV_20190520 14908929.667812275 1824.4574810790134 0.2289343783940205 2.8015494649418016e-05 494957.25409792777 60.56963747054822 48611 11283 1031140 BQX_20200324 3630139.561031379 563.4889877516805 0.025775534877698 4.000781769205965e-06 369298.6097540682 57.32114395715452 10754 12 311435 KEY_20190803 4976306.4068443915 472.88617785685983 0.001903388894701469 1.8087437263762447e-07 217732.5706668485 20.69059151903912 23885 2830 851050 HNT_20201208 83346331.41639519 4339.1562011216565 1.4137071069156737 7.363126300915486e-05 1805806.3631803815 94.0532891293382 15748 1925 70273 ICX_20211207 857121087.5729098 16970.28348013677 1.2648741769758711 2.5043454957767922e-05 51502229.7998915 1019.7012443576826 156908 34529 269698 GTO_20200113 5614929.529364172 688.4018283835677 0.008516102467652787 1.0428927500055669e-06 635471.5113034858 77.82065029052517 16993 None 3106980 DOCK_20200530 4019896.36806726 426.78703166829655 0.007149485906625732 7.626763523227829e-07 732961.656183417 78.18919145114666 42259 14979 399786 LTC_20200127 3589659592.857473 417707.0098774494 56.13695980255 0.006532319016931578 2691276421.5659485 313167.5853172268 449140 210608 163494 ARK_20200129 23120244.7469356 2474.9485007878875 0.16229196856007452 1.7356693125131076e-05 553979.7403039373 59.246655489523086 62801 21655 90381 BCPT_20190805 4640229.4015151495 424.12798328593124 0.03998186072405962 3.6510050639329307e-06 162133.25271944114 14.805447170055889 10962 3038 1188214 MLN_20211125 152150138.58981848 2659.6226157598753 104.652886174616 0.001829629598462837 8809987.590132937 154.02359787863392 30490 570 109101 RLC_20201208 68419091.95038679 3562.1848281922807 0.9738063056564672 5.0719549941430536e-05 1334484.2013472365 69.5050316506766 None 3887 661985 BAR_20210506 109967303.51444684 1920.90392220397 37.25277996988753 0.0006500071953452562 38399484.004221424 670.0155242230196 None None 39485 HBAR_20200329 118413163.60846905 18994.82456557945 0.03106457947907603 4.96868932724769e-06 8783854.804234274 1404.952082074356 None 6383 115268 GVT_20210304 18291815.634363547 359.6217633117778 4.140268944443612 8.171334783664386e-05 519424.87908332475 10.251494864 22474 5495 239345 COTI_20210421 223466389.59483862 3955.2589444819137 0.3322909598856707 5.894404019800811e-06 139591104.61676863 2476.1623622400516 79773 3779 80341 MATIC_20190812 35762186.3855206 3098.60572201472 0.016469527741153612 1.4261431736810524e-06 77616926.0451504 6721.07002587585 21890 1099 193229 KMD_20200411 47164616.50906738 6878.664965978278 0.3960283734834764 5.774274910708611e-05 2189967.034439666 319.30721506173893 99925 8388 155354 CELO_20210620 282277670.6230491 7934.093328899001 2.389243195821145 6.717472494074021e-05 11695244.669638116 328.8174452779353 31322 None 78751 CMT_20200621 10459007.517034167 1117.979646871016 0.013119876079702596 1.402245145586197e-06 3398451.5607295115 363.22463524753175 283946 1637 1061023 CTXC_20211002 37323510.4932654 775.0931168663794 0.2027335857830903 4.208946794105121e-06 10392372.738708548 215.75578487785597 21045 20646 793028 VIB_20190419 7049550.711280864 1335.7330917686365 0.04142814087391758 7.849469323131523e-06 3914562.172959866 741.6996042292805 33116 1129 2174259 HC_20200718 56974939.91436076 6224.668448725369 1.274845443438222 0.00013925701820435263 20082342.937674362 2193.683328792705 12690 846 542975 NAV_20190213 9724844.921321804 2678.852653014016 0.15137763514741376 4.165934447388732e-05 268722.11138089094 73.95271431519724 47977 11448 833323 IOTX_20190614 37147946.88838947 4518.006522322127 0.010599726789416031 1.2889800065381297e-06 1001000.5450647894 121.72669303237468 19501 1726 736941 LUNA_20210220 2766438011.2197323 49527.08647794153 6.345699889570096 0.00011358195993819337 268244801.21675697 4801.325432283317 27196 None 71119 TFUEL_20190623 0.0 0.0 0.011183870341564362 1.042638134197455e-06 7815929.759452176 728.6553020136051 70153 3997 231431 TVK_20211230 87184620.15695621 1879.8138389436278 0.2022157477018684 4.345366170541349e-06 8144346.079895274 175.01191840377612 None None 34727 XVG_20200506 51700611.47549813 5745.6942625862475 0.00318007182027929 3.53414009833331e-07 1557667.0682659866 173.10972697870187 293006 51812 303181 GVT_20191203 4916307.189049125 672.4407750906198 1.1072327803984707 0.00015155026163729863 1199174.651861278 164.13462052034834 20932 5659 139104 GXS_20210117 25419143.127916873 700.8497064580592 0.36748049533072713 1.0152784007482233e-05 9759729.1770681 269.64267101337333 None None 451509 TOMO_20211225 168154303.84921774 3307.125566774403 1.9683745543603899 3.871695160495551e-05 5895200.156404225 115.95566435839999 67060 2385 102672 CTXC_20200629 1127488.2570604752 123.63029061336896 0.11084204798828746 1.2144727737712739e-05 8492065.451014902 930.4575718802195 16443 20060 551445 POWR_20200113 16114038.705545045 1975.614057047112 0.03760198606669607 4.604270295172201e-06 865628.5987644613 105.99408331446527 82748 12852 288049 RIF_20211028 204117032.46900347 3487.43864179237 0.25877240832607923 4.422098065728247e-06 1331345.4669983708 22.75103536931544 46495 3514 1045764 ANKR_20190813 13640943.173265925 1198.5714866012893 0.005215371052074701 4.583055709274684e-07 17323643.697301965 1522.3312657835984 12290 None 12914 ZRX_20210318 1102167450.1820886 18727.93921297428 1.451216623615351 2.4626416571463506e-05 195391682.66694966 3315.698630827487 193464 18449 57131 REQ_20201101 14011312.871863902 1016.6125631500786 0.018069621570482915 1.3112236629915053e-06 152772.3323358778 11.085937601284902 39450 27537 293943 BNB_20210805 51783149635.80224 1301905.1435725968 334.9795053490896 0.008423995738573681 1127855648.6059818 28363.08199715618 4675219 578565 143 XLM_20190325 2027830849.563069 507779.8282270067 0.10545887932879434 2.6409411488622033e-05 204850573.93729147 51299.455628798714 266941 99787 74655 MDT_20201014 7833496.348461466 685.6833048404525 0.01290386096570496 1.1296459578874793e-06 802831.3049051188 70.28246358682397 14132 65 903169 OCEAN_20210430 557189624.6146566 10397.0832349832 1.3083380005853085 2.441189791159367e-05 135288218.83622405 2524.303494505051 103979 2831 70658 IOTX_20210206 84946483.23220451 2241.272526940158 0.014071590237959843 3.6864646496212825e-07 22116016.635805693 579.3937439877757 31972 2061 512659 NAV_20210809 35941003.260085784 815.1815729041276 0.5029747068292504 1.1436412303797686e-05 1129078.3992791283 25.672476015481998 53020 14122 873726 NANO_20210117 450901781.301229 12432.141377705046 3.37241264122184 9.318765643289189e-05 121901683.0653443 3368.4288871509207 102162 56058 248633 ONG_20190622 0.0 0.0 0.426062045541777 4.209363877560664e-05 19178126.633567844 1894.7407856518148 80459 16245 232873 FIO_20211221 66208840.019679576 1403.3635966437619 0.14287499322217556 3.0306621686717272e-06 4707997.270423773 99.86596601614745 None 556 389055 PERL_20191022 8521763.619596556 1036.9322642711923 0.03261046709709002 3.968057199822641e-06 3383011.480355491 411.64645148260206 11150 372 274565 ADA_20190915 1446341381.0265086 139722.3150080513 0.04645326282841542 4.488967969470141e-06 86110562.96924484 8321.214387669039 154406 75297 100209 BTCB_20190923 0.0 0.0 10052.126991912768 0.9999548051192028 6427.841847064796 0.6394220195079 None None 85843 GVT_20190719 8722212.886042986 812.1752764181924 1.951853243804853 0.00018293609447784064 646686.0205570572 60.61019973177477 21450 5753 209505 QSP_20210104 19199480.79540637 573.9166554245346 0.026240757833687844 7.971624761046673e-07 384856.1354747115 11.691463784831475 58321 8174 263794 QSP_20191011 0.0 0.0 0.011766323071558098 1.3744458579154151e-06 252386.99946348526 29.48179001159722 56129 8492 448058 QTUM_20191203 168609918.9864208 23071.03723444728 1.7503316535402889 0.00023957312747786732 297487831.77960867 40718.049120517746 None 15278 176199 HC_20191024 56513142.70010716 7572.658531323414 1.273010278492647 0.000170581066373282 16721428.338713605 2240.6410423328407 12843 846 470518 FUEL_20190213 4032713.0022795345 1109.8443667215813 0.0075745016330647195 2.084513821626155e-06 1707343.6562348283 469.86344740508474 1 1510 None BCH_20210711 9359135139.585115 277541.96035311307 497.933742918656 0.014773052654997705 3247344469.609241 96344.52679839768 None 584733 271205 POWR_20190522 50729548.13762563 6378.703309756788 0.1210406623788652 1.524045143394789e-05 3315982.695929245 417.52145303812785 84998 13214 633531 XRP_20210527 47675888355.92232 1216968.44446002 1.0332068928012161 2.6373503011642873e-05 7008804902.177836 178905.83046194224 1804979 315085 10817 SUSD_20210508 192255650.9042295 3355.226713400593 1.0286884400939413 1.7949668956187418e-05 48727726.709395885 850.2540996196612 121764 6329 31416 AUDIO_20210702 177496786.04418185 5279.2254014406435 0.7634396222783274 2.2697529837029353e-05 11228272.105130728 333.8234402400153 52084 5710 30965 POE_20200306 4429548.019478219 488.969561063775 0.001759730424517745 1.9425336614103804e-07 141432.42159253612 15.61246176860172 None 10467 759696 BNB_20190411 2639684281.2473235 497040.69487163273 18.262366567516782 0.0034410794417038485 228284021.30621636 43014.32947817115 942535 48870 1082 VIBE_20200927 2892785.4351230683 269.46966528 0.015462531735059808 1.44e-06 67231.68296937576 6.26117541 18720 None 2837232 RDN_20211216 27171037.11126422 556.9388696504227 0.5321512108583335 1.0889264128677875e-05 620820.5893565256 12.703681277208174 33369 4885 706677 QSP_20190803 0.0 0.0 0.014946233489046544 1.4204363629169383e-06 124703.12213611396 11.851336952632352 56737 8574 645541 BTS_20211028 118816534.12629756 2030.3684503408083 0.043829586117714765 7.484034756587529e-07 16222457.875978682 277.0033882022697 7132 7448 240672 GAS_20190903 20047796.805001035 1942.1458184392754 1.438467765038021 0.00013934278651618024 838232.0478284031 81.19861433842175 323956 98214 210014 TRX_20210218 3770282092.786227 72259.29805452883 0.05254075986396406 1.0078018885452554e-06 2221799069.49825 42617.07108930058 598812 84317 27627 THETA_20211204 6160425246.956539 114730.3167473026 6.156344357634645 0.00011480628383660413 337074815.2229272 6285.923051504336 225047 26448 31041 HC_20200506 49286196.32894466 5495.883681486922 1.1055791526961622 0.00012286740162622227 20007482.933802247 2223.5110305420667 12637 840 1050366 GO_20200301 11109439.338480987 1295.4485132846871 0.01262251055639967 1.475815029467435e-06 1769553.5502836076 206.89495273441838 10679 681 656341 EGLD_20201129 127162687.16490246 7184.575824741177 8.799484997834531 0.0004967446522548213 9188290.201565534 518.6933124059268 104429 2825 50672 AION_20210602 100272555.912684 2732.814326997069 0.2034070110291008 5.545922546854297e-06 7597393.14215129 207.14405915116168 None 73339 242029 BNB_20200425 2352743588.494633 313769.711786577 15.894827424185603 0.0021206494439545416 347741153.1115197 46394.783869371844 1140033 62031 1429 FET_20210702 170569304.2731192 5076.362519163006 0.24814969670411605 7.377643209272755e-06 28457906.8913019 846.0710865871766 67290 2943 137103 RLC_20190510 46331520.70685325 7505.082891409824 0.6622128582841375 0.00010726957193193816 1803356.5360147576 292.1194918507061 24808 3298 1063788 QLC_20190522 10287802.62447538 1293.5822032720575 0.04280712547983932 5.389923551974212e-06 2414041.217468826 303.9563499679438 24999 5804 940522 DOT_20210304 36037615291.30907 708629.2360600112 37.07636012738535 0.0007317752502995945 1846992438.6695292 36454.046445366854 207593 17325 17587 XLM_20210506 13728408947.21587 239807.23132423178 0.5993647669965309 1.0458019641031655e-05 2561180112.173113 44688.76616079287 527779 179455 25553 KMD_20210104 58735723.21643019 1755.7459069611953 0.46841192480461746 1.4229787576288335e-05 2532731.246648535 76.94131109635943 97172 8407 276744 ACM_20210610 12535683.86609652 334.6527971431827 6.24792308862896 0.00016681745761143742 2628614.41239725 70.1831259918911 None None 34079 UTK_20210217 191676005.19022796 3895.3285700814604 0.4254943643913411 8.651310782845594e-06 9643615.802695345 196.07760845157796 60586 3354 80432 ALGO_20211007 11177993691.058556 201371.87501337938 1.8210044653455542 3.2826214235675865e-05 596784772.6601195 10757.900473469057 156779 47148 131750 DIA_20201130 40010536.00752446 2205.314549101256 1.57087985943288 8.645582204855543e-05 13151175.063394507 723.7954221532347 None 183 160467 GXS_20190130 33125950.721015945 9701.291838948888 0.5525563776695354 0.00016190724225034569 533854.5381610959 156.42732493839512 None None 245667 BTS_20210112 67806406.09314081 1914.1909368798033 0.02485321770306848 6.991703542947066e-07 34297065.61403321 964.844544602842 13135 6872 130433 ZEC_20190807 445577912.75412244 38939.53061097149 62.396781055803935 0.005438236619372449 315964054.3152299 27538.07586717872 95 15354 186923 POA_20190704 7052408.212571566 587.6313863173755 0.03201973405211013 2.668259794423532e-06 484076.5811960527 40.33893838485225 17717 None 637225 BTS_20200927 66537569.71583362 6198.217194033509 0.02455083319573963 2.2869996167814728e-06 25936222.07667237 2416.0536417314815 13316 6935 89969 DUSK_20200711 9857818.691409891 1061.6570130391724 0.0349969277137196 3.76953767846893e-06 1296117.0494166855 139.60545604026953 17305 13329 912304 WBTC_20210106 3713151782.8645067 109284.08761568861 34125.31310536615 1.001129538468682 291497465.9469443 8551.620395311931 None None 159793 ZIL_20211125 1128697577.6527977 19729.91698661292 0.08815682596680603 1.5415401800391423e-06 74796474.73030506 1307.9165436997762 355387 39180 53751 NMR_20210430 363133070.78116107 6776.205688267333 64.01721585881405 0.0011940136399267221 19250908.626072366 359.05728126645255 None 3169 915213 WPR_20190807 3760372.422968072 328.9429970279781 0.0061937630920274956 5.408793439662496e-07 176127.6927253075 15.38060618078458 34645 None 1323626 ZEC_20190621 744866580.1026951 77869.5897989578 109.43367445286471 0.011450121893463436 456309034.56549 47743.93341890302 46 15220 185342 FTM_20200407 7271581.462512322 999.7829863046233 0.0034435306797826666 4.7328254525741123e-07 1871246.6270457625 257.1861408560063 21426 2330 311485 CELR_20190708 47744592.95078348 4174.950453235564 0.015860979098691948 1.3863325397491517e-06 11685625.085063731 1021.3847582756617 17020 None 482178 REQ_20190325 17865123.01863021 4473.593923032718 0.024469862973871184 6.132172636053306e-06 170545.9384367744 42.738986237427596 41886 30594 402457 GVT_20190908 4953246.14330412 473.14354577435114 1.1164398458168197 0.00010664446950766192 267823.67176797136 25.58302939859044 21259 5701 171342 MFT_20190321 23545803.168065656 5826.468394267791 0.003534039831075267 8.742472428461444e-07 36394147.87261254 9003.147942360798 16614 1882 633572 ELF_20200526 40104376.9789585 4512.577783312601 0.08599353052902241 9.672215134751324e-06 26415241.21302733 2971.0827579351662 81894 33396 471890 AION_20201229 33252423.60722302 1226.2791514707587 0.06860940322332584 2.5261246209112886e-06 604501.827774195 22.257108774954393 68042 72529 524587 RCN_20210201 32302832.389923792 977.4441164435046 0.0634056483891736 1.9121230123078464e-06 5881500.596179527 177.36830901610105 None 1131 3103198 LUN_20190318 6736293.919766511 1691.568309128663 2.4906668887457446 0.0006254748156695896 1836882.747625341 461.2916737959234 31692 2246 1442676 IDEX_20211111 148144976.32713866 2282.587250376922 0.25158601531131103 3.873158024889236e-06 17107187.670278236 263.36456391042265 65549 1988 5644635 LTC_20210125 9404888749.824127 291499.9558634331 141.74221406653 0.0043932310358430786 4928310878.9754 152750.6004501617 139622 224063 127540 STMX_20201124 18896335.296247818 1031.7996102674902 0.002373913972178904 1.2935129894175537e-07 1760443.1002192271 95.92411704683569 21450 139 269523 KMD_20200308 71925602.21821804 8092.090330636039 0.6068137652986872 6.8178013652598e-05 2483500.699452172 279.0314826001743 100023 8410 149248 ETH_20211111 548699344220.5352 8449043.4612692 4641.528764849704 0.07145843799653795 25152889711.576366 387240.13163508585 1821168 1150273 3795 STORM_20200410 9080183.29667246 1245.5808950516134 0.0011929212194944797 1.6360723357015804e-07 208344.97509606517 28.574179456842526 26084 2513 908527 DOGE_20200301 277173142.30733156 32360.132447301603 0.002243760136912376 2.61960356642172e-07 122706371.4694886 14326.043280476277 139196 149369 115347 OM_20210702 32514382.37623426 967.0640081902286 0.10368006936754806 3.082710215214217e-06 5663936.036436225 168.4053028161549 45742 None 75678 STEEM_20190614 130117417.70790772 15823.597396103189 0.4173787033694286 5.0755346292056815e-05 2321971.804468254 282.3634317342376 5698 3744 311798 SNT_20200325 55436249.44624476 8202.64018984054 0.014913796367185693 2.2070795831550788e-06 38755147.784194216 5735.340171658376 110383 5617 189796 BQX_20191213 3208228.248747866 445.1290353170287 0.02275140483841582 3.1606717632491203e-06 268554.06236132217 37.30808043897376 9145 4 297445 TCT_20201115 4678596.700448399 290.63853576523684 0.008157693440161495 5.068926080292631e-07 216274.5438412848 13.438598591892882 None None 556136 AUDIO_20220105 828932045.979895 17898.09092278329 1.5923273982747943 3.466243842250974e-05 17329586.045692597 377.23756423912323 121780 8944 23191 LTC_20190818 4587869171.629596 448841.3301177974 72.76385917557374 0.007119160153601714 2743641152.326919 268435.7452825231 451893 207658 123278 WAVES_20210314 1018930382.916121 16606.43922214896 10.189415484224197 0.00016607763215534168 106227816.4675525 1731.4108208932819 165480 57699 99978 VIA_20210128 6707620.904569878 221.8992311504703 0.2894545413812678 9.521242191826499e-06 145326.7285377028 4.780339505990691 37733 2123 2961182 CTK_20211002 101882406.1733178 2115.397799368639 1.8154567495165441 3.769065118736483e-05 14573414.344995826 302.55828283017485 88152 None 106519 LRC_20200607 83971817.54762812 8682.1322463171 0.07206319526146267 7.450859224254855e-06 10589816.66229503 1094.9172164119104 34740 6831 564975 STRAX_20211120 259504334.79646248 4464.126307383524 1.9828189461263945 3.408106411292574e-05 5108349.802257258 87.80327495967111 158393 11133 201424 MTL_20201231 23798912.253894724 823.8554974784838 0.36779574788139835 1.2755692020098644e-05 3358015.968456862 116.46088281048173 42664 None 360686 BOND_20210806 84649340.22358644 2066.04689573269 21.927055552422456 0.0005353721231468609 11897429.112772675 290.48824493859985 22093 None 140491 XVG_20190908 71997368.0995925 6877.326311576929 0.00452109095217284 4.318632553262269e-07 1333687.3895446132 127.39637041795464 302547 52743 272149 NAS_20201231 10954532.229220893 379.3509393370069 0.24059512018505025 8.342928756487464e-06 2767635.456501088 95.97112950486176 23336 4855 1352423 NEBL_20201231 12717480.522136545 440.24559317928885 0.7281155488606201 2.525218984925368e-05 1981823.6068618677 68.7327527155838 38278 5884 776105 XRP_20200701 7825863681.306612 856156.5309015575 0.17570051360531663 1.922179433884981e-05 1042249688.527783 114023.05406809637 951522 214772 31878 KAVA_20210527 263209953.45396724 6718.057376159974 3.773454086626148 9.624777714108343e-05 90626919.68496414 2311.57962137025 103299 None 74681 ETH_20190314 13852442749.06418 3583335.134117793 131.6683444532404 0.03405807718110458 3621660451.668175 936799.1349695533 440158 432201 32034 SYS_20200905 43686831.64558908 4166.502708922885 0.07344004979845103 7.004128129753544e-06 979303.0210583392 93.39813706787561 58654 4493 424365 NEO_20220105 1859845712.5063078 40132.55856249084 26.207280505683634 0.0005695044536403024 116399971.03028263 2529.4613033569663 433031 115805 79106 XZC_20200113 33155689.741980344 4064.6058267991025 3.5924560048069596 0.0004398873623405671 23914379.745351676 2928.256717442724 62516 4075 128179 GO_20210725 21077850.83432552 616.9316044025704 0.019339407634982025 5.660412353132203e-07 413832.7281448751 12.11238694966279 None 1104 149047 TRU_20210710 52005443.83613986 1533.3314651051494 0.14873867530627102 4.376902913205655e-06 2554225.4686926296 75.16267622986894 None None 106582 COTI_20210602 151551741.78599977 4130.370144297391 0.22618220224827718 6.1672972424491724e-06 25016614.641746342 682.1266083796431 None 5086 67537 CTSI_20200430 8044376.74401321 920.1566402966446 0.041534369331785635 4.736698838659728e-06 13032250.574981265 1486.2353072108742 14223 92 None SOL_20210117 904006570.0309957 24913.592424488703 3.451865500376336 9.538312493843563e-05 99803415.70677254 2757.8020257752955 None 2991 90687 ETC_20200301 858835904.0748708 100147.06063838382 7.3670580644695445 0.0008601084965471056 1384127161.6937926 161597.68548806472 230972 25294 362649 EVX_20190205 5253589.408579705 1516.4969952686138 0.2724273006442577 7.86386507825411e-05 685968.4811559172 198.01112337082265 14091 2330 1281949 MDX_20210603 307913695.2813689 8175.927455339341 2.4619091366187367 6.537969732575183e-05 75918698.95642206 2016.1351551555754 193186 None 17529 GO_20190725 9412311.416033026 957.5007296220551 0.012498985239362522 1.272999668344969e-06 336784.19161730126 34.30087771305497 10092 681 877679 XVS_20210723 177508043.3095345 5483.1231816348045 16.9752731984073 0.0005243385599018245 16830450.856883768 519.8652334870729 118527 None 12441 ZEN_20200927 59411953.41919762 5533.109733135521 5.925763617592386 0.0005520064844448184 3335178.6701427354 310.6840521338317 72312 6113 87046 OST_20190329 17045626.435804 4234.558420481523 0.030140933242159915 7.487758994510641e-06 4585956.633642468 1139.265919741356 17996 750 1075482 BCH_20200518 4426386427.200713 458120.48340394726 240.43369952889998 0.024884316917725014 2325187352.3505588 240651.36909820925 None 296787 140343 FTM_20200718 29111594.536342524 3179.738015113051 0.012346105419923276 1.3487851049191399e-06 14400009.924941588 1573.1696949635877 23003 2453 210821 BCD_20200309 112395229.58406 13912.889632561619 0.5936169277270982 7.379098701724681e-05 11985620.852597017 1489.9015702163836 29180 None 1280057 MDA_20210314 24325119.24429615 396.44868881604805 1.2389465572670098 2.019285972507845e-05 1935201.7116765166 31.540712127096157 None 372 1160920 SXP_20201224 49956452.48395132 2136.5155221109076 0.6332792926782432 2.7158708575525437e-05 60434286.93636366 2591.7746022185283 90771 None 107070 QSP_20210304 32284389.203607608 635.2496533939233 0.04508308437759277 8.897685654716996e-07 1438154.1763569901 28.3836919343587 60530 8247 196197 BEL_20210217 68697572.35449007 1397.0514483515617 3.085176032074693 6.269461816018556e-05 39706873.307910934 806.8931025307768 11571 None 362473 OXT_20210724 168481244.39057922 5040.338098902782 0.284065319444494 8.495078376700925e-06 22626909.430588264 676.6660900783407 67903 4344 154434 GXS_20220112 162956430.64463723 3801.2853369161708 2.1672521796335626 5.065685572454842e-05 59712613.258732766 1395.7089365090974 95474 27128 548361 ATOM_20210201 1933062164.866592 58474.05467405684 8.12794314017588 0.0002451142369157399 591538088.0513583 17839.00361490065 52996 11136 88305 CELR_20201101 13591541.821400743 984.9846534156445 0.0034407283640235328 2.4942388263763065e-07 2642985.8230767255 191.59425447265622 None None 314997 TRX_20190930 881046511.3977369 109327.72337064277 0.013311980352813047 1.6532740963669035e-06 556845172.2511382 69157.08065744185 469589 71287 69613 WAVES_20200725 155941949.5936926 16344.42284296198 1.5610554561596348 0.00016365427327593674 35224344.28174218 3692.7672507109323 138967 56879 125564 BLZ_20210707 45368375.73538234 1328.2594878457735 0.15406971112387638 4.511108808848501e-06 11285675.281837557 330.44073884689374 64442 None 284185 FIDA_20211011 302889081.3284332 5536.317152599607 6.167626279814301 0.00011273302454547745 911505.850872484 16.660674106675597 None None 505726 ELF_20210602 117896181.67021273 3213.126178285153 0.25584920035626796 6.974805313029952e-06 11342983.071150735 309.2255065878799 None 33391 236117 NAS_20201018 14838339.954714995 1306.271730961541 0.32596684520593455 2.8684996172117823e-05 1776609.3378194384 156.34115188157656 23499 4885 901179 IOST_20200520 43052359.2993027 4414.734971628909 0.003586366614175674 3.6737093145673687e-07 23878509.695136562 2446.0049103254732 193543 52201 468295 STRAX_20210131 69119314.13256778 2020.2968222722213 0.68979286434643 2.0190359862747096e-05 6413904.947152256 187.73613892216275 146831 10312 249759 TFUEL_20210219 0.0 0.0 0.061338888009058075 1.1863007792124405e-06 13164650.145869141 254.6057685916558 86167 3926 42831 XVG_20190512 122434545.8427556 16728.591376025237 0.007612821360893011 1.0451846685660004e-06 2732660.3222041912 375.17426690692935 304904 53080 413203 GO_20200229 11920061.68215691 1363.8284963743404 0.01313748574713426 1.507787337865541e-06 2085576.407595947 239.36130246308494 10683 681 700687 ICX_20191011 87847177.2753153 10258.774772210632 0.1767073419808674 2.0642513756521127e-05 25584198.459172364 2988.682658699113 113055 26374 180222 VIB_20200801 3985126.058927718 351.61925592768534 0.02184636879379253 1.92887144478235e-06 4912116.099450295 433.70321938250595 30757 1099 None SUSD_20210115 171239295.38627508 4389.84456641729 1.012816960183894 2.581788337977466e-05 121365610.68821579 3093.7507034781147 56856 3177 45504 IOST_20210823 846404436.9618294 17156.59745105705 0.03722048860180965 7.553171868877811e-07 238972486.7959421 4849.480306432962 252123 53625 317836 EOS_20200314 1926666533.7247176 349952.25865639135 2.0925570374460487 0.0003780412227590003 7418732492.021927 1340267.7453556405 None 70365 94982 RDN_20200607 9390453.93780065 971.1309137137941 0.14058842225421592 1.4539207994165852e-05 886962.8759491763 91.72688283826221 25082 4304 1725009 ANKR_20200316 5025535.806572411 930.2099691781003 0.0012573418822903494 2.3273807552537122e-07 4828838.6883698935 893.8337608753437 None None 5425 BAT_20211230 1724361043.4126081 37179.56048919775 1.1592480578927524 2.4889536007898272e-05 231151210.51972944 4962.912241542302 247640 85861 23993 GLM_20210212 206977646.0291214 4340.657956093348 0.2070625375899386 4.336735792423504e-06 5321167.716253064 111.44699935177658 147080 20429 190516 SCRT_20210314 231586581.72325003 3774.9305981556445 3.3317370132127406 5.4302017915174325e-05 5000004.599871582 81.49212806456403 72623 None 125864 MKR_20210823 3430852381.4599204 69543.294732708 3801.3348853997054 0.07714722596580585 75970568.4402699 1541.8053886078371 173095 29541 37059 AE_20191026 72084252.24451986 8339.948346672187 0.21562042756513863 2.4904848426495262e-05 31269968.46689787 3611.7812851201747 25054 6351 393899 EGLD_20210723 1538190508.8237696 47559.70747737841 79.14444409421687 0.002444652972910426 36458277.34153191 1126.1414128333163 293952 9711 35166 DCR_20200718 178406819.00286436 19491.434285912706 15.174998507069335 0.001657835508230457 4974927.167286555 543.4999486125703 40559 9870 318539 MATIC_20190813 37135487.986995585 3262.9515024375924 0.01709743897923698 1.5021164949381708e-06 64533899.50353498 5669.704980065279 21940 1104 193229 ELF_20210916 345266769.76069826 7164.1903309736235 0.7357900481292483 1.5265606831693067e-05 105670914.00688621 2192.378968533442 52442 33475 449555 MITH_20210916 32899739.57062455 682.47677427422 0.05317098380159279 1.102986284496263e-06 8439529.047685161 175.07076457226825 33088 2756 668783 MTL_20200305 20023228.202806 2287.233246101776 0.3092919395979713 3.531362874460875e-05 4413763.699618508 503.9446319142976 34762 None 606546 NKN_20191030 9947057.07527064 1057.0504693253527 0.028411106619181132 3.0196214318783247e-06 5350544.326413199 568.6726158475111 12289 None 300209 RLC_20200718 131469382.95150372 14359.852198150089 1.8191415958831234 0.000198712899385648 23795288.28901684 2599.264806174925 31713 3709 380436 BCD_20190807 151598753.0371979 13238.580951603672 0.8055945359900987 7.020494970925364e-05 5116129.264941121 445.854063930303 21444 None 3532175 CND_20190812 13701700.25509462 1186.4085695532656 0.007860039714505114 6.803961888746563e-07 334904.5395887292 28.990664252303954 36064 6126 388996 FTT_20210204 1190068610.825964 31752.65063677212 13.360303918447883 0.0003561800902964224 26351000.428903427 702.5066023541672 54572 None 4702 XZC_20200701 44115936.40880638 4826.32315247935 4.222966561585286 0.00046199634298721735 6789968.135105557 742.8286257234553 63661 4123 587407 ZIL_20190904 67430941.45980506 6346.254891061323 0.0074809584174453676 7.049352309198785e-07 11776650.330917275 1109.720874952111 66127 10611 166369 PNT_20210511 89126983.70102999 1596.5614907706351 2.1005812617094364 3.759208338398068e-05 38045262.61150127 680.8594890031117 None 290 348864 POLY_20191113 14450048.24323457 1644.0189397246236 0.02671410605036617 3.0353516760803498e-06 2649220.932453913 301.0138981431838 35113 5043 294854 TRX_20200117 1130286046.1456733 129883.28668947784 0.017197851451980033 1.973693672284661e-06 1545592786.5680664 177378.36097118945 494560 71743 51656 BNB_20190726 4506614256.120463 455036.2722199846 28.87914024739794 0.0029204335434231433 289095454.6365843 29235.08303014373 1015370 54917 742 ONE_20201111 39098737.242462434 2557.5928415149237 0.005326268559779945 3.4869992536852e-07 4960765.065448159 324.77115802136757 79175 1520 134160 ANKR_20210506 1155260284.236704 20180.034794041654 0.1655212550633037 2.888098586666272e-06 153977893.544944 2686.684175726709 87976 None 5581 QTUM_20210617 895016855.4589627 23399.71202329924 8.661869540613877 0.0002263200055418768 218155089.4434661 5700.023628886792 245351 16708 104826 PHA_20210527 125140632.23942788 3194.0355463055894 0.7060990949570501 1.801236824170156e-05 21827774.001238357 556.8197240514238 None None 148583 MINA_20211002 1136316004.324042 23593.082185840365 4.509502469085023 9.362166553188664e-05 79079728.61331467 1641.7722250610714 136167 10576 72538 XEM_20210509 3494859399.425603 59594.92857272519 0.38906867036032083 6.626665036867232e-06 327082475.54847157 5570.9086081943415 350998 21340 27944 COMP_20211202 0.0 0.0 1.3868473651948305e-07 2.42529471e-12 0.0012325554997256066 2.1554717615560875e-08 2635 None 5620341 POA_20200305 3239058.034007309 370.00225089007074 0.014719629067498022 1.680547980713616e-06 405393.02426650544 46.2839399826169 17439 None 535987 ANKR_20190826 10381158.095359504 1028.1203805127893 0.003878068120573996 3.840728399619829e-07 3269806.709436269 323.83235930215056 13918 None 9409 DEGO_20210509 80191947.51631281 1367.509816624504 14.719755971156495 0.00025058103712517565 18951656.149572678 322.6225803270924 99412 None 63518 ZEN_20210204 376659135.8073226 10053.782233130778 35.12098141552329 0.0009374489170657725 34474992.77162362 920.2061940479907 85331 6515 437186 SNT_20210823 382689701.1688125 7757.210483409917 0.09860647882681033 2.001196035887929e-06 28455083.612580888 577.4894429236405 None 6053 144059 DENT_20190414 39530877.034416616 7790.5203438085155 0.0007577190611206528 1.4936810619247257e-07 1012352.4491479382 199.5636323374225 44479 9023 242433 DUSK_20210124 18988128.858000234 593.6049918616693 0.06295367075420186 1.96434499974189e-06 1123003.552758989 35.0411085982188 21337 13350 977461 DCR_20210217 1689426478.6246965 34333.30751393604 133.58037447101967 0.0027160062053719707 59369891.1319024 1207.130863085642 42543 10433 268087 ASR_20210805 12442629.355466887 312.8384940572784 7.1977460115018195 0.00018100329158029192 1968656.2879513418 49.50622980305503 None None 92555 ENJ_20201030 122319472.71395135 9086.35514046866 0.1324486046601297 9.849852049034304e-06 4029031.3838802404 299.62839649365196 66850 15929 85667 KSM_20210127 908510230.4445063 27879.369876876313 101.71351715633477 0.003122753576362058 127593683.1355679 3917.312481883698 32524 None 134935 FUN_20200806 26808741.8854409 2288.5109773585277 0.004460432342883531 3.8062194431171314e-07 1233885.5312252056 105.29111840522135 None 16719 228128 ENG_20200207 31953905.177139424 3280.92783528847 0.3871788644716656 3.9759800177816134e-05 2490937.4467545776 255.79695646235197 61250 3593 300165 MKR_20200914 449250354.3510151 43521.84946311683 497.62811362201427 0.04818610300008075 52926429.60935269 5124.9483676076015 58261 16369 27612 WAVES_20200913 259309369.5764388 24867.88668560111 2.5986489669404103 0.0002490135031938211 47097196.38324541 4513.051978623873 144819 57028 140835 NEBL_20191026 7341379.349278084 849.3772586918911 0.4691755524320902 5.419090443114721e-05 498063.3341024947 57.52751267429587 40242 6088 478074 ARDR_20190622 116024048.1470679 11461.696992830332 0.11613817817011059 1.147410000750777e-05 2031995.4594521523 200.75499275014585 68076 6563 956576 BTG_20200320 131849513.76616246 21307.625178373564 7.512596251184856 0.001214802951919745 32468950.156408407 5250.298988118674 74895 None 195914 NEO_20200113 722236121.1377331 88540.0113569127 10.221263641320363 0.001253789232970777 402929911.15110224 49425.315887641504 323200 98675 215815 AST_20190509 6073985.709481174 1019.6784761195762 0.03645716703086606 6.1202956838773535e-06 422537.4866798424 70.93404580266946 31612 3591 464238 STORM_20190904 9603819.864509642 903.5146323823468 0.00153154404032069 1.4431832012456364e-07 149277.33907856746 14.066493839754518 26512 2546 2939778 STORJ_20190902 20980025.14083557 2154.467702968451 0.1459099997226362 1.4983699010478659e-05 2821488.9849675125 289.742593328067 83577 7787 165970 SCRT_20210616 103684621.28656057 2567.394914075572 1.4894832401184723 3.69029440403747e-05 3470545.269997419 85.98508156299565 83147 None 48367 SNM_20190627 8312514.76958673 640.0990829919153 0.020445192432711607 1.5696026532729214e-06 748265.7610875313 57.44528586960832 31328 9993 15028658 PERL_20210814 0.0 0.0 0.09248515798119177 1.938391254178171e-06 7956007.055521914 166.7495069613198 476 687 3927089 OMG_20210711 571150738.3034499 16937.280336449374 4.072460702022169 0.00012082466240134038 135210010.2451964 4011.5068103777367 326344 5009 166792 ASR_20210206 0.0 0.0 4.061016279383502 0.00010683665002156777 1780997.459495202 46.854232827226134 1940121 None 183417 DOCK_20210727 45073791.46419188 1203.9457310645273 0.06466324664608936 1.7329629946210767e-06 10663636.84507339 285.7834859689593 51857 15147 269891 WNXM_20220105 158722240.04439735 3430.9003978383635 64.40973763489215 0.001400135075624521 1282494.805584734 27.878796398522912 None None 96635 BURGER_20210710 0.0 0.0 3.7952306498333126 0.00011167272966963741 3033255.645399027 89.25200309562854 None None 43206 PPT_20210203 61669417.53089538 1731.6694673215184 1.6912368401595215 4.760598773722347e-05 6464254.528422383 181.95986186141778 None None 736934 QKC_20210819 130382724.56653512 2894.148807066806 0.01988960037765131 4.420678293149419e-07 10037612.738422506 223.09677371720187 None 9550 280880 VET_20200411 232427503.1296753 33894.42342598744 0.003607484238216966 5.259993437620748e-07 118365369.26472087 17258.59420197259 118785 61615 281766 SKL_20210203 84414378.99668188 2370.313501999912 0.14925966398323204 4.2027547567137e-06 23270744.2875584 655.2422043358702 11980 118 222285 OMG_20191213 99843903.17651847 13854.63979139607 0.7123963916161713 9.885007429189974e-05 69049133.3491332 9581.059143026365 284815 42462 None ZEN_20210519 1279766936.2105682 30024.33117620112 115.76105198431313 0.0027059064791118193 107653832.81784004 2516.4007991434664 108026 7245 752253 BOND_20210902 118365207.58581904 2433.733150560195 27.87392193139762 0.0005729139788244086 5879538.010988043 120.84662947018631 22950 None 146012 POA_20190909 2846081.0197801455 273.5015452359892 0.01291193407778094 1.2423625975828016e-06 57945.02975670602 5.57536440721405 17692 None 617003 MTL_20210418 278357654.3830881 4617.541761003888 4.271787182523502 7.087760070675794e-05 45324629.02901394 752.0273883594167 54146 4034 207061 DUSK_20210104 14298481.900229875 427.414522156847 0.047037756195406205 1.4289501254799668e-06 600420.1071841749 18.240036449385585 18534 13346 1115146 GRS_20200612 13584021.803692503 1460.707743019032 0.1805433010764808 1.941405878492814e-05 1886740.7539612185 202.88371648752573 37420 106875 None SNX_20210421 2545008273.1767316 45047.96560622825 16.75071549292297 0.00029708315227627776 234212655.07740524 4153.890256376769 114574 6060 27259 AVA_20210722 90075079.8446888 2799.0146723323055 1.740453961115638 5.408335407288253e-05 5566523.292262967 172.97570455551005 109400 10510 50781 RVN_20190421 216654340.43083283 40800.576296799954 0.06436135906806813 1.2120844745844978e-05 50336290.9096138 9479.575571918234 23553 6352 171966 BCPT_20190523 4549371.081730826 590.1100722487115 0.05392267183005249 7.03198437811639e-06 3409474.4744524984 444.62506081856407 10782 2146 1042603 REP_20200907 69418113.8709729 6737.1302472563275 15.982064999291717 0.0015535766574318267 9352571.08850863 909.1400973980964 136026 10419 111817 ADA_20210722 37555390538.67549 1167005.228573447 1.1763500815292975 3.642360741031591e-05 2012660704.7002153 62318.49218122797 530221 546285 7136 VITE_20210401 92366728.15335114 1570.3470979564565 0.15299504981032785 2.603655734481155e-06 58113120.08358867 988.9637510612696 None 2019 246413 ONT_20190324 773914532.4386475 193375.1475756276 1.2625897830623525 0.0003152638334961216 64461915.35311528 16095.89339415873 71779 11291 260077 OST_20210511 25680352.434240773 459.94546124318776 0.03716423348557721 6.651269084571588e-07 3382838.1570215276 60.54252904378704 None 773 471679 ETH_20190513 19825564759.39219 2857072.1476537874 187.2720183708742 0.026939462582157254 11582482850.21803 1666163.8298466436 442023 436620 36863 KNC_20191108 30155605.12921868 3271.1337404270594 0.1800058439151099 1.952398005907258e-05 6581415.420121824 713.840287782708 98414 6720 172247 SFP_20210707 85052190.95586306 2491.330785486509 0.7870984275804358 2.3047061440851005e-05 13914926.561096793 407.44353712452863 None None 22344 ONT_20200707 393825270.8625215 42188.92637706104 0.6192959195046491 6.633023582985845e-05 121563894.85693836 13020.208207905536 86773 16527 150808 MTH_20200721 3007050.279531975 328.21656216126127 0.008652808096449529 9.443887870316851e-07 280718.8481966342 30.63834648709378 19013 1906 1350074 ANT_20210301 135033986.43074772 2976.1146650363376 3.7988419735171917 8.416379836961287e-05 39940630.38974406 884.8894442864454 78962 2800 130780 REQ_20190318 19495627.712042462 4895.645712461479 0.026717633071319385 6.7095309677588755e-06 587803.4456765244 147.61357831340462 41833 30635 402457 BTCST_20211021 358174968.79069054 5404.3305252470045 48.958738046174126 0.0007415534979676757 256338259.40814155 3882.627300315133 67163 None 2218085 BOND_20210916 112320133.3884568 2330.625781360637 25.78815110580136 0.0005351412232003999 12157691.056510407 252.28957425373233 23364 None 152097 XRP_20220105 39372072384.767006 850059.3443946637 0.8251444343524369 1.7962083787797828e-05 2130875732.6783779 46385.78030498603 2342846 343379 18895 COTI_20200316 4266727.191747603 789.7533444830093 0.013520914402935987 2.5186997488657673e-06 2856254.9042797745 532.0681941854419 None 901 294374 LRC_20210603 475667302.6651022 12648.079793076133 0.3817580734070568 1.015101636595573e-05 52295304.37050781 1390.5416217920597 78718 10865 187996 WTC_20211011 28602420.874072507 522.6549750599883 0.979431602447134 1.789449714984691e-05 7930710.848679486 144.89636879530352 66116 20260 353915 NANO_20190603 237134990.66839242 27126.56541655797 1.7801988964229767 0.00020362639981560867 6186298.6159698805 707.6140300307911 98349 45977 382519 HC_20190909 100375022.77513565 9663.389402584791 2.2670382503255944 0.00021825423096070727 71293146.95402576 6863.594365461119 12910 852 399646 SC_20191020 86798415.09181452 10923.866798329791 0.002055864465034475 2.5861274871328044e-07 6450997.501241222 811.4884147824988 108433 30498 207365 TRX_20210902 6800091205.241318 139792.47030324495 0.09502876414651962 1.9531045378704393e-06 1338861801.427057 27517.321554521623 1107248 116266 34374 REN_20200903 446525193.7568345 39140.35144353556 0.5059853718088914 4.435542489161573e-05 78170648.9510248 6852.554523227646 22033 953 91896 VIDT_20201201 23181092.832201865 1179.072065379224 0.5040763435211703 2.566087028916931e-05 869439.9244942178 44.260329637417875 22573 1102 None ONG_20210212 0.0 0.0 0.3403290887420107 7.127882027956319e-06 30775097.34029391 644.5563147462129 97856 16774 259663 TRX_20200621 1057506213.4057406 113038.21560432702 0.01598599499496909 1.7085743602213032e-06 826582805.2659985 88344.71599182521 508637 73120 60096 NULS_20210420 149418652.18535656 2669.274902686874 1.3286606206221814 2.3742477582979136e-05 152834875.24084055 2731.080114050376 47448 5315 273594 FIRO_20210428 131675379.03201227 2389.9793525192536 11.150500693501014 0.0002024638159968148 11826237.322761608 214.73341897963556 70851 687 172734 ILV_20220112 512447136.85526127 11960.684564920486 805.6352671866078 0.01882948771508494 23665894.08158172 553.1245714103366 251004 None 8971 NKN_20210821 306560164.9118319 6239.257899640841 0.4719911591355302 9.60067890858588e-06 139488825.37855098 2837.314635825057 29826 3371 164254 NAV_20190312 12346464.906311505 3193.9297685244583 0.1908331947041505 4.936937222629793e-05 3301344.918283823 854.0721983448843 47927 11406 735368 HIVE_20200520 111326346.87904148 11405.087953389197 0.3145983173556289 3.225997869222465e-05 18612407.426134437 1908.579397452259 6676 79 122787 DOCK_20210430 58544314.86912901 1092.4290183083706 0.10474983473609031 1.954215215685213e-06 13051802.210851537 243.49470848159896 47466 14981 216888 MTH_20210108 3020541.085925119 76.90886155776674 0.008484329465086182 2.151495667133314e-07 307055.01793447137 7.786443741678136 18948 1882 1263562 COCOS_20200310 9881883.206310913 1248.1468147145222 0.00040846082795401825 5.159024544946548e-08 1859947.5893324886 234.9188614669476 14712 213 73199 POA_20191020 3851935.726040267 484.726472653434 0.017495468718537258 2.2016247005432014e-06 487373.7616849547 61.33097257264927 17709 None 624364 ARDR_20190830 52190519.02635444 5502.814676886568 0.05224278819715964 5.508325784375465e-06 2414488.7931536203 254.57659007826027 67144 6538 926837 HIVE_20210617 126594808.10071844 3309.7141990686164 0.34150358179223517 8.922911175398732e-06 1917535.2084363853 50.10195281344657 20535 168 116714 DOT_20211028 42320923634.55647 723088.4002060117 40.48819618495527 0.0006918928304315373 2822544773.7466774 48233.773705458276 773677 32818 22718 ELF_20190922 39182848.1453751 3923.13139404231 0.08493373331572357 8.504913936851197e-06 7961951.780513773 797.2770302102422 85200 33574 944758 NPXS_20190201 93069336.26166552 27123.802311630236 0.0005560526548969041 1.6205404370647733e-07 8541834.542768242 2489.4024264373124 54772 3879 183678 IOST_20210613 604977067.4977143 16867.944698865074 0.026648205581044596 7.469442590749999e-07 102882912.77613117 2883.7889598731003 246250 53561 156257 REQ_20210206 43707392.73124701 1153.1987532073567 0.056804417030379216 1.4881578541132881e-06 1881726.5447757987 49.29733079390552 40057 27201 458949 DEGO_20211011 41345411.84463139 755.6504036290559 7.633665910527206 0.00013951970721208268 8259487.663206121 150.95778542039193 None None 206155 RCN_20190528 19566761.73058964 2221.5496724165364 0.03903365019733631 4.435412069832088e-06 4981937.74975877 566.0999346645801 19031 1121 1774527 OST_20200229 6830655.639191919 781.1079132310612 0.009841845126015443 1.1295471407439404e-06 89871.65862914281 10.314557254119553 17848 755 817761 ONT_20201208 439097382.9376467 22866.57053055802 0.5451147908599457 2.8391573748660273e-05 81740710.09252931 4257.35540068324 93851 16695 315974 ATM_20210620 20743970.253489643 581.8977907059626 11.000551897333466 0.00030884564067325943 11218958.69483621 314.97751368578355 4997129 None 100469 RLC_20200321 19546499.688020423 3161.687992526397 0.2796101162218492 4.509482682106434e-05 546593.0308947755 88.15316985971944 28357 3561 324809 RDN_20210711 14531861.60934634 431.90244168792617 0.2847701160489023 8.463671878224511e-06 155468.0551284018 4.620676580847937 30203 4673 857508 NAV_20190510 10622920.897730932 1720.77023741134 0.16336554593385358 2.6463020102265546e-05 160193.2284550351 25.949147359191972 48686 11303 1061172 TROY_20210708 16385232.070479019 482.2335219553949 0.008689098264517334 2.557380450418352e-07 2494389.8477198165 73.41502694623995 59216 None 430405 HOT_20190807 172945210.86618137 15113.867047222218 0.0009651050794999353 8.411443180354111e-08 8465788.979586676 737.8419665510227 24055 6612 379586 DREP_20210916 0.0 0.0 0.6894076904058736 1.4306201061640529e-05 962034.3942338632 19.96359724972099 4120 None 323316 DUSK_20200407 5214030.42641238 716.886544870074 0.01993901670697232 2.740608779148358e-06 221085.69451339467 30.388128172621755 17586 13338 1650258 ALGO_20210725 2602200502.417557 76168.16967766597 0.8275202337625744 2.42205234103639e-05 157126492.86479864 4598.903741019739 None 36058 209093 PNT_20211225 32368395.67176887 636.5959504525327 0.9608169639238165 1.88987933272418e-05 6772746.792916458 133.21657162915866 None 388 330723 REP_20190807 120851797.3830949 10582.737327161969 11.054162951862304 0.0009634335737217668 15896132.10200626 1385.4388999041382 126093 10047 203996 KNC_20200324 84059557.45560412 13048.158106641773 0.4689911655332042 7.272839909308029e-05 90716818.53287461 14067.832120488709 104487 7226 120611 BLZ_20200520 3418920.638546773 350.4232794235323 0.015410603416974882 1.5800308574728368e-06 609564.0426353702 62.497877007780154 36012 None 859932 VET_20210916 8106121521.80534 168203.14571935163 0.12136663157701412 2.518532151117445e-06 417106882.83254576 8655.56768953864 428174 203779 51102 C98_20211104 761686545.8900815 12107.71236573344 4.1684369832559 6.609703471984469e-05 168915517.8252428 2678.4175678469674 None None 30336 NAS_20190511 40551276.9798851 6363.853381451934 0.8911666429918401 0.0001398829602386372 2803345.3868507906 440.0302169833423 24119 5180 484793 CND_20200223 13122015.928706953 1359.4012102614934 0.007032665970892548 7.285510216402906e-07 40134.07965325023 4.157701340428842 35087 5990 388652 NULS_20190103 16432262.021509496 4247.57982535271 0.41080655053906534 0.00010618949563416103 3935305.513081371 1017.238179508302 19693 None 366668 STRAX_20210509 308952313.6632043 5267.193197020303 3.091866564019963 5.263423740060172e-05 32784222.82640851 558.1005944175895 156918 10644 146304 LOOM_20211002 82860902.81479643 1720.5351781389165 0.09936897363558884 2.0631763988061337e-06 4261174.84136804 88.47384693876248 35288 None 466265 ETH_20210511 461040789541.05756 8258777.9782256335 3979.6086519212827 0.07122290845979636 80827215917.6633 1446561.685804124 1106338 895458 4856 GVT_20200325 2808407.513793521 415.54680506354794 0.6322104390566144 9.356026580659752e-05 224226.77291406624 33.1831225471381 20617 5594 160290 NXS_20210704 34403048.23834715 992.9374336503122 0.5049876973327205 1.4566721804474778e-05 120658.2744041886 3.480471951964744 25974 3960 508939 WRX_20210813 626710814.1265585 14097.672090144515 1.3847303405297464 3.1147176240652204e-05 33218329.621421218 747.190363968383 307578 None 1330 BCH_20210703 9318650089.956036 275700.8232710397 496.9604363214694 0.01467633757675387 3387165899.2079206 100030.478347954 None 579488 271205 BTS_20200523 55384898.15308552 6050.361355386825 0.020435753844430818 2.2324442122613845e-06 31538315.732636493 3445.3111423136497 13147 6994 152581 KNC_20190601 45465304.3783329 5299.937997615676 0.2737150312221662 3.191576710313609e-05 8130054.240174878 947.9819815035145 96779 6692 215563 REQ_20210110 24760168.382091425 611.8809138498551 0.031923523697590286 7.922003918130243e-07 651437.6018968854 16.16579448914045 None 27275 443928 MTL_20181231 9048581.181498371 2381.7656133412743 0.24321773410749117 6.399325390231108e-05 1049003.7371236293 276.00439063607735 32343 None 579696 XVG_20210203 274864174.49054104 7717.101072460502 0.01666828284631235 4.6918920516612705e-07 29948034.649433143 842.9959284356542 290057 51730 157669 LINK_20200721 2775929287.5312524 302989.9346073036 7.26451838668878 0.0007929620174431217 653768966.943604 71362.46773347387 66436 18293 75270 BNB_20210826 77788566247.38934 1587011.49850351 503.0600194308284 0.010266193872382522 3135514100.431467 63987.982350572536 None 603435 153 AAVE_20210325 3860696973.411772 73060.9227981902 308.7901563965523 0.0058531830534939945 476834193.1853042 9038.493491659332 None 7573 14216 REP_20200315 81414065.91576271 15743.075720730061 7.433073926636685 0.0014346513205093492 16355304.883193066 3156.723581602127 130584 10104 288679 EOS_20190512 5890535137.583665 806750.4207722933 5.587260491799994 0.0007670899826065097 5547481063.157891 761628.5581266682 924 64601 112167 WAN_20210809 121546226.02453104 2762.899812301309 0.6895949692381983 1.5676762699597147e-05 3001785.614534504 68.24046411781035 123399 16656 308128 OMG_20210314 753183586.9738523 12263.343994648403 5.334644828201372 8.696038827708401e-05 477369642.32965195 7781.633226869483 307207 3902 147521 KSM_20211011 3008013729.1777554 54973.120764867585 334.94704992748797 0.006121791926076905 149073107.53496492 2724.593473208103 None None 80172 AKRO_20210418 182153836.61327606 3021.654275628621 0.06678399533120116 1.1110263275661222e-06 89675251.14835082 1491.8479264802909 None None 141631 DCR_20210110 754409487.2620684 18643.19981025607 60.39466939873118 0.0014987280606715862 23502508.43208004 583.2281099309889 None 10105 378546 MDA_20210325 21515333.962053984 408.27655503207393 1.093959110855394 2.0763955383389606e-05 1716375.1678891089 32.57776004017232 None 373 1218144 ONT_20190401 800599713.70227 195094.2867075828 1.3043560588767766 0.0003178619219580067 44021032.49182117 10727.599951868686 72777 11317 248801 WABI_20210220 17049080.74646206 305.2689123547536 0.2887407779910734 5.165140589682892e-06 8962928.85164557 160.33338947194233 41065 7437 943415 DASH_20200109 484449988.21892405 60199.862564577954 52.213478582316554 0.006506932155732274 316283332.37179446 39415.76469546303 315565 33267 83621 RLC_20190712 19087383.220355537 1683.4802226605016 0.27381090681517234 2.4062281411265395e-05 267682.5311646563 23.52372470725431 24977 3322 789445 RCN_20190511 14875438.180963026 2334.385207742503 0.02973674977369141 4.667025538035204e-06 7668004.806464936 1203.4527824964143 19020 1124 1766498 BNT_20210821 996329548.0598507 20277.771592293684 4.283979783984372 8.709980837292157e-05 64065244.566890344 1302.5436175029483 127173 7730 39587 ORN_20201115 21584167.125511214 1341.2598658342934 1.7359462047653507 0.00010792931685965677 1900451.3045209036 118.15712402776339 22612 None 197578 POE_20190821 5676115.275696191 527.493443667824 0.002254955291101937 2.0955778275212161e-07 44045.758951962925 4.093265894020116 None 10752 737221 ANKR_20200217 10932035.29865804 1096.6386278261402 0.0027464529642177815 2.75544000108033e-07 7838313.656998516 786.3962453716842 None None 5317 XTZ_20200113 908498581.3688003 111374.20624354614 1.3037669809994195 0.0001599254396206695 53034065.863009036 6505.377434479633 52570 19505 175595 WNXM_20210718 108732319.69108118 3440.281823943158 49.68830014178998 0.0015734601787313833 7419835.649641284 234.96106516276345 31325 None 131125 QSP_20200129 6274346.743313219 671.6488184167953 0.008888036193258484 9.505517621122561e-07 84038.1177454861 8.98765252195524 55520 8348 414921 ARPA_20210823 77100402.50079957 1562.843339467082 0.07843531149359771 1.5918267876729544e-06 40144438.333855145 814.7222354198432 44350 None 746780 NMR_20210127 140781673.4726158 4320.154264755333 26.970794206018855 0.0008280427854512058 7795131.327383874 239.32192014740355 22537 1997 2335404 TCT_20200511 3013654.1403019223 344.1598598329344 0.005265712037905282 6.012807533423898e-07 1084148.7748135729 123.7967035345999 None None 668926 GRS_20210304 52645329.50882396 1039.0209379761347 0.6832173093566329 1.3484141826679539e-05 17168927.52827247 338.850100301489 37740 106773 5238877 TRX_20200914 2191624244.217628 212319.46948778024 0.030658275548083504 2.9686884300249373e-06 1345876744.27392 130323.33513668162 531056 74859 41399 IOST_20210304 821290456.67796 16149.526659702013 0.044327230794138694 8.748508914052189e-07 368919147.4571781 7281.060405245125 224757 52635 149920 RUNE_20200806 103181085.0767138 8807.986844845564 0.562181655380121 4.798985279410163e-05 7386570.573031674 630.5442930423438 13172 1739 483808 PPT_20210108 33514906.133069236 856.226151753154 0.9696971812072325 2.4572676858160206e-05 5852325.239019054 148.30124265003673 23677 None 755937 MITH_20200410 2372096.0278448854 325.44837330652365 0.0038260634421842733 5.247329695678332e-07 2078708.6747165394 285.0885753027956 96 2089 1121889 POA_20200927 6821636.578468679 635.3022182663095 0.023838791949858048 2.2206703788496876e-06 2317465.7538700607 215.88038372256733 None None 365531 KNC_20200412 86712918.88366802 12601.770135135315 0.4830870548277979 7.019050039425623e-05 74661171.57290186 10847.951606965416 104975 7320 125566 ACM_20210826 17636165.264290784 359.80605395046723 8.814668502342553 0.00017983186432601707 5666741.989983047 115.60965411715183 None None 38736 MATIC_20190920 30052893.146863516 2934.273808861219 0.013723840461429456 1.3390899404842696e-06 14707793.416471224 1435.0981611940113 23298 1153 202428 DLT_20210610 7905627.367766576 210.61497089233106 0.09599924524293647 2.5582318162972558e-06 1803973.8815290232 48.07312148984181 15097 2600 None WAVES_20181231 305106085.8996949 80276.7581639029 3.051060858996949 0.000802767581639029 13294818.217305806 3498.012514947268 134935 56536 37832 EGLD_20220105 4863176005.684495 104991.83294663909 237.25114324154296 0.005156411283248718 131857166.47816052 2865.7808418355326 432486 14288 12315 BCPT_20200329 1679966.5846204702 269.48583737204734 0.014252458630169699 2.2796393922043115e-06 269625.86217753455 43.12587410538865 10644 3167 1690012 PIVX_20210508 125027451.51560728 2181.9667888073204 1.9169461463974176 3.344907446506959e-05 3903338.045240931 68.10991805011042 67646 9709 218406 ZRX_20210112 324622927.8756999 9150.132319555667 0.4352588522581465 1.2244033420909105e-05 130680554.81438477 3676.1046267274946 164303 16333 98378 GXS_20201228 21792148.936053917 822.1472567992691 0.30915341022004517 1.1755638028810923e-05 7051224.5028776545 268.1246273709626 None None 480010 RVN_20190813 157573599.20966527 13845.381874764309 0.03770757080052 3.3132033919090027e-06 15608306.232905773 1371.43528620265 27321 6881 260058 WPR_20190904 3354542.8495213073 316.10059918839266 0.005515330376303396 5.197129131679535e-07 90626.20465167901 8.539762011581864 34498 None 785340 STEEM_20210219 191023983.83207023 3695.964738324711 0.5059661976273865 9.78531914844725e-06 40503132.83074132 783.3252164260845 12418 3877 182454 IDEX_20210603 32301930.785836693 858.914194355153 0.05576887455238157 1.4829044825164207e-06 325939.31561342714 8.66678547901313 51619 1981 6783998 BTG_20210620 919698020.4921957 25798.400105823544 52.47283545327316 0.0014731994026078827 9065715.011495357 254.52418996952022 99342 None 159409 YOYO_20200903 2201947.256047519 193.0126019020612 0.01261795571797283 1.1061086314283096e-06 546447.3896109451 47.9023851232251 7772 None 2642123 TWT_20210527 208027263.46091563 5309.598187290413 0.6093875355084324 1.5555145939276444e-05 19500990.52570884 497.7797147340091 None 34204 3237 HOT_20200625 102082699.82760002 10971.703070373378 0.0005698182376487502 6.130429069756501e-08 5450634.037286885 586.4102470406608 25375 7092 595163 DOT_20210115 13710583025.260971 351043.9011549139 14.38916681553055 0.00036748710847975177 3706157857.0315957 94652.12627739187 116494 7992 41009 BAT_20210428 1837574129.293058 33355.90098399904 1.2278113887058826 2.2293077017943897e-05 375279411.8166157 6813.858307418399 190477 69432 19254 STORJ_20200323 12423707.119425336 2129.4384576552075 0.08591251088670755 1.4734030640110239e-05 2315326.6411701315 397.07946282527286 82220 8018 127597 XEM_20200725 454251337.144415 47613.62981960179 0.05047237079943193 5.29040331387691e-06 19799895.681500703 2075.3816804858193 208701 17834 268527 HOT_20190613 330282702.47309196 40660.12980740968 0.0018589595143421798 2.286152542379539e-07 22022996.853927933 2708.3930478303228 22428 6382 302460 LUNA_20210805 6057224216.543862 152287.59584447352 14.55043996684892 0.00036591147314332434 782392049.3828653 19675.434421060167 None None 19567 FIO_20210902 77572324.24023196 1594.9816751056421 0.22039621896865566 4.529753272740353e-06 4291503.498799589 88.2022936220551 78095 517 583691 IOTX_20200310 15174811.426456882 1916.6784458381076 0.0035144024152904568 4.4344774551168486e-07 3348230.55499403 422.4801589611723 22558 1807 497303 IOTX_20210430 385494811.6221539 7193.484552900435 0.051048976629549825 9.523708283260304e-07 91409891.7429731 1705.344946446104 48650 2786 219398 AE_20190325 126332926.36952281 31634.44902968779 0.4747885074239387 0.00011889833404671763 35471294.61191283 8882.855776605731 987 6352 437952 CAKE_20210420 3494274450.554186 62418.29453401338 22.75134940701626 0.0004065548379281824 713537025.1787255 12750.537317045162 None None 2459 OMG_20200305 126153693.98411849 14410.409753937176 0.8941512602458365 0.0001021017034854975 280905610.62721467 32076.16276891116 281914 42903 381601 GRT_20210707 2042654515.1565137 59780.61222764852 0.7048732196005232 2.0628918056348024e-05 195530026.65146428 5722.409059085224 None 15960 34179 DASH_20190511 991654037.4553251 155623.72801776108 112.69758700885222 0.017689701703404056 312633664.6009636 49072.88981084142 319866 25506 97874 AE_20200315 29970325.376080506 5798.192044782544 0.0859560082630427 1.6590296555288686e-05 10452529.066435847 2017.4338067709507 25443 6341 460321 GAS_20190324 39061505.382590316 9760.153158105206 2.8010322980045874 0.0006993448402315067 1090082.078146929 272.1651147414382 318599 97799 162875 XLM_20190930 1164956422.2924502 144499.35459987726 0.05784043433284712 7.183461008106103e-06 176986922.2475885 21980.793705559234 276258 104333 63333 WIN_20210727 274202649.3850645 7319.9053577688555 0.00035740814801425334 9.549878637225722e-09 79509763.60289437 2124.4859612206355 33895 13267 102834 CDT_20210112 4588694.374877013 129.5399312630647 0.0070499797733554964 1.983192013530893e-07 348168.90725179476 9.794152868794615 19239 293 987559 ATA_20210806 77578921.50980341 1893.4880733071686 0.4505381023092803 1.1011321460808383e-05 22017271.96327868 538.1104462309789 66924 None 92285 MANA_20210519 1486848796.209688 34882.63323829962 1.1303226264759505 2.642121219563925e-05 259469277.26129973 6065.076175767253 133551 31971 10276 IDEX_20201018 33972059.62267054 2990.680983389484 0.06429593342249328 5.657421344568435e-06 364444.6618595575 32.06761142061561 40082 1962 23826 YFI_20210823 1410503306.9237316 28591.23463718864 39495.10333515843 0.8015441294696501 266244825.62405294 5403.378114234633 None 7069 25989 VIB_20210218 12943293.498256646 248.06454256758505 0.07213619640812462 1.3831633715586694e-06 10391165.836566292 199.2436625243456 30634 1118 None CELR_20210508 327234112.981194 5710.672697941429 0.057998432410171274 1.0120155609579218e-06 47613786.35375263 830.813708297281 49578 None 140241 ZIL_20200316 38668474.560179055 7157.660521292988 0.003682132372192503 6.852257428305597e-07 10773755.349751264 2004.9400093164463 68671 10577 233633 APPC_20201031 3213147.928387379 236.278441374104 0.029262516893272125 2.1582324902816925e-06 83510.03708234365 6.1592130285 24340 3157 1443706 TORN_20210702 34305468.185434446 1020.335652769392 38.613840231503126 0.001148311812510608 3927552.831163007 116.79893228035968 21200 None 103371 LTO_20200423 8676922.69250975 1219.9413094830709 0.04139666878310582 5.818840467715555e-06 1507414.1284496512 211.8866708378394 14687 424 889154 VIB_20200312 2792418.6325356765 352.06877087339484 0.015305907498609673 1.928137172156366e-06 694491.1177883503 87.48740576550456 31527 1106 None WABI_20210804 9758547.886410985 253.97578527792467 0.16507502976316543 4.29781316796265e-06 478362.8156437265 12.454421550533322 45376 7886 670233 NEBL_20210217 34647821.666734576 704.515836403429 1.9871210713106984 4.0380774227688196e-05 1471636.285491016 29.905481577169 39276 5894 648058 STPT_20201226 14698621.181297494 595.1852382811368 0.0160104745223921 6.49297680550945e-07 1248871.4096337652 50.647425124563966 17641 None 2012677 ETH_20200318 12991193734.51619 2392760.7532646344 117.21704138518466 0.021734405763652195 10514054745.732649 1949517.9998109827 452907 455012 19216 AERGO_20210718 39577642.422091246 1252.2334136352524 0.1505002323431789 4.765832636778994e-06 5109017.901696821 161.78529347565086 None None 378084 UNFI_20210617 22671684.435084403 592.73201656029 9.26681127710354 0.00024225272015914888 15870012.259669412 414.8734148026828 19410 None 178336 ZIL_20211225 933665001.851892 18368.824175265 0.07220674791388454 1.419974023298033e-06 73848648.31555904 1452.2626387886648 367644 39804 41987 DGB_20210203 436890259.1277674 12266.153977729342 0.031143651696380597 8.769223165550102e-07 30448954.48811313 857.3614926953919 182273 24794 203281 BTS_20210401 268657432.8905854 4567.504214111929 0.09829698929942648 1.6728091542110008e-06 132694757.99736951 2258.187229088493 3523 7029 111487 AMB_20210120 2457722.694288849 67.8688240817393 0.017013381273097587 4.693815567601039e-07 447657.70488439593 12.35041212804352 20314 5474 518256 CHZ_20200105 28395184.841412216 3863.5451574119393 0.007554003574750611 1.0272363978890666e-06 4790458.340082128 651.4337888258231 16370 None 294591 GRS_20190411 34633985.042471796 6525.691114940952 0.47902447542657367 9.02524357172703e-05 11171102.848175328 2104.7342952531494 38917 107056 6013629 ARK_20181231 56150697.17303195 14779.974562787835 0.4052455896140427 0.00010662456010507026 354631.3469323553 93.3073976255821 63028 21808 157522 XMR_20190816 1417200970.7603633 137714.0557756142 82.82428775303413 0.008037113547271196 199750068.1078209 19383.37197954231 320404 160275 90338 BAND_20211002 335182443.949265 6959.774348564134 8.061912596259685 0.0001673925400137999 40794822.72613295 847.0383316619276 108493 5874 392188 COS_20200322 9776708.49024044 1587.5407776460374 0.004955193559647425 8.046049138440464e-07 3286203.958409592 533.6009221440481 10332 None 117572 ARDR_20210513 337700580.56192505 6699.9041897350535 0.33803879006157556 6.706614190765986e-06 29004712.52338451 575.4470265764027 72129 6861 None OAX_20191024 3200780.6163584325 428.8987920913366 0.06131578768217554 8.212862253166218e-06 260454.61141124854 34.886249163269696 12234 None None NCASH_20200404 735606.7756669234 109.38893137776415 0.000253851644241496 3.772578839519684e-08 1279270.398841363 190.11688701537756 57556 58278 716326 HBAR_20210304 964114814.8238552 18962.688352386696 0.12827154065139243 2.5315921989791852e-06 67822493.16579384 1338.5579820895287 55629 9664 84941 ENG_20200229 20574714.921726804 2350.6481421929816 0.24744211245646597 2.8398895435372363e-05 1432687.8288894002 164.42937477475266 61443 3613 305641 OST_20200208 8765708.887337392 894.9185173991228 0.012621324315032356 1.28741385511856e-06 756753.111959895 77.1911423019921 None 755 561274 EOS_20210707 3711756783.3850055 108664.91601814995 3.8698452790266655 0.00011331309882867265 1062952936.7332647 31124.368672583896 225814 89237 47044 SKY_20210220 60711189.52628376 1085.14651693083 3.0355594763141878 5.425732584654151e-05 18303690.338770602 327.15856785343414 18090 4128 536790 ALICE_20210523 106092639.88509391 2822.4137587325154 6.125069568876232 0.00016309674427810635 43783988.38578382 1165.8685467864698 None None 54175 DNT_20210124 86255141.10816938 2695.4420167327144 0.11403119080738103 3.558178526249455e-06 11687334.095178446 364.6863714403594 61323 6430 241579 PIVX_20200330 13321687.292813424 2252.865721085252 0.2147003465495778 3.637333534165274e-05 126994.41441729397 21.5146854504513 63741 8507 174953 APPC_20190421 8701569.203005949 1638.725938769525 0.08168247770237676 1.5380529864683544e-05 378722.0622088929 71.31206290586022 25712 3396 1308871 GVT_20211120 2224104.827029402 38.264941371351924 0.5027252395453835 8.618487024430556e-06 9717.768145484495 0.16659688450100577 25887 5831 411926 ZEN_20210823 860556255.1518493 17443.41186840062 75.12570249368969 0.0015246590265911727 38389896.494458854 779.1142082843613 None 7513 1506863 THETA_20210420 10882060848.66269 194401.512046924 10.884023982143647 0.0001944867468245828 642929181.1457946 11488.508761537216 142832 14236 21480 MATIC_20190512 10168666.005191118 1386.4302103290065 0.004670115092453859 6.385948686688081e-07 12644633.504685078 1729.0362041263456 8925 83 593763 PERL_20210602 0.0 0.0 0.06114767754151243 1.6669707999950553e-06 2644509.686241672 72.09301488639852 19463 655 347381 GVT_20190706 12728750.049387062 1157.0188492142015 2.8707841599659405 0.0002611988317920166 910715.3773845054 82.86160833166939 21436 5752 196385 RLC_20200224 47631461.61812673 4787.558437103295 0.6796717659325925 6.830403092409366e-05 765110.7531516142 76.89027433987515 28398 3556 230585 ZIL_20190421 192151757.42127007 36186.22374996278 0.021935681336468144 4.131034392739717e-06 9520369.891001455 1792.9224466780577 59782 10162 186514 SNT_20210603 391153186.9537721 10394.998419407097 0.10144582260663924 2.6941768348981624e-06 25075086.550720315 665.9388783308639 132051 5985 113644 RDN_20200312 5616483.951242846 708.1040211847318 0.11240899287837318 1.4160542762533963e-05 1072733.9397184614 135.1359391916353 25174 4328 1576973 RENBTC_20210206 652777750.0071948 17226.02606207012 38138.501100831294 1.000559441514292 20846937.85216978 546.9171543869483 41180 2636 83739 QTUM_20211216 1030540706.7919506 21123.527438545385 9.915966297889952 0.00020290613358076376 222698602.61461788 4556.985275351989 270161 17591 150166 MITH_20200523 2670145.129754042 291.6856238614652 0.004309728019409882 4.7162150236482247e-07 12080260.840001877 1321.9652703514996 95 2095 1339097 UNFI_20210219 72619430.3517063 1405.0930502303697 29.628870607899543 0.0005730255867068424 70498039.07441053 1363.439759041151 14786 None 96925 WBTC_20210813 8663358421.718174 194861.90170680507 44477.23364723221 1.0004339494848988 273406764.4618328 6149.784659627997 None None 187032 MBL_20201101 4828887.861944422 350.05377696815674 0.0013690357264101558 9.92164722878254e-08 991123.0135109166 71.82846079677178 None None 627263 HC_20200315 40143015.98609809 7766.245878996599 0.9040414059747287 0.00017448826820206701 22649676.941401288 4371.595016248489 12768 842 804824 EOS_20190621 7153433893.378357 747810.2510858394 6.855264117667083 0.000717271079049648 3033302749.0704026 317376.5880592219 1139 66439 103805 QTUM_20211002 1209135439.2818036 25109.978776397187 11.65842964155608 0.0002420683835220018 432892451.594817 8988.309679625707 256714 17089 171848 NAV_20190902 6815133.638674301 700.6802726457789 0.10312985353022859 1.0603028160653395e-05 48943.68382100844 5.0320177919011355 51498 14205 463565 BRD_20200320 7126707.843785433 1152.409684955877 0.11515200748016752 1.8630531102139812e-05 575233.8973992936 93.0675309186286 178 None None FUEL_20190916 3658592.329026654 355.1194367046607 0.003812365904043707 3.6994672595357337e-07 1033099.6696321662 100.25056617958792 1 1503 None CKB_20210826 437210588.09833604 8919.76329718478 0.01585205499695431 3.2344036246118697e-07 26531526.91656599 541.3409607897271 52213 5702 124430 GAS_20190914 17832561.032687735 1722.5616640537946 1.2778459497271173 0.00012339899138039522 752128.1283208525 72.63148773405554 323828 98243 210014 BAT_20210221 848139345.5286217 15186.854333890715 0.5824736574967184 1.0357792053306769e-05 423030450.3885045 7522.505749310253 139613 55080 20378 TCT_20200605 5041036.357830328 516.7438066324501 0.0087736022335362 8.975643461175378e-07 4143784.524109494 423.9208876620387 None None 990413 VIBE_20190806 3428700.9144317606 291.8270136735529 0.018116066035877045 1.541098121773787e-06 237028.10111920175 20.163514568726 20403 None 1550581 AERGO_20210318 77233307.31171349 1312.1957759227032 0.2939157993330673 4.986502203094689e-06 7417554.294168183 125.84437758492005 None None 363931 WNXM_20211221 159490980.68210113 3381.4973605287646 66.40725231876011 0.0014089646242717662 3255253.456384758 69.06680826167562 None None 103901 AMB_20190207 12928353.714034025 3794.5306433055384 0.04767971801563122 1.3994222062665467e-05 179560.66027103458 52.70190047533199 17884 4977 625152 NAS_20190908 29347139.93080683 2803.2578454523323 0.6449920863913589 6.16100625374139e-05 8891623.605538001 849.3336553341023 24163 5095 765651 LRC_20200901 257790948.7081789 22055.794969662213 0.21662339662094193 1.8557934794733684e-05 52851028.48991376 4527.700866341291 39376 7039 169251 ETC_20210108 833836689.4363614 21329.546213753823 7.219797856622584 0.0001834246742958935 1344728056.6162717 34163.87975116731 251423 26335 167227 QTUM_20200430 156437482.06395453 17918.46831037824 1.6301357908471972 0.00018593258211557718 388348133.36829096 44294.819856328926 179034 15101 107639 SC_20210909 940017599.358849 20282.128815373533 0.01920799193393003 4.158351351784168e-07 132690037.18963076 2872.6157185703164 140380 48472 147984 TCT_20210204 8693576.912326166 232.04215267236475 0.015033138847297527 4.007819567050565e-07 3995138.5448715053 106.50998833881152 None None 1849521 ADX_20200425 6088980.404872092 812.0466828827953 0.06593762553963013 8.797238573570978e-06 1735274.4589535515 231.5161227160611 51882 3756 31500 COS_20210624 33671811.53409027 998.7893814625099 0.011108411149001447 3.2961185038342914e-07 2296566.3707076195 68.14435303336252 26303 None 231566 IRIS_20201030 41387557.79978031 3072.5489669738377 0.04820363009781904 3.584776343308814e-06 2914263.5791496662 216.7260663875783 10699 None 350079 CDT_20190603 7637726.7852217145 873.3008182693998 0.01132220940766079 1.2945860749378244e-06 275003.46732003556 31.44400942728114 19756 292 399262 ROSE_20201228 64688675.72216204 2443.4714002032497 0.04311920916279445 1.6396190313592485e-06 8456123.269620894 321.54626472958404 None 565 229578 ARDR_20201201 72724321.466527 3695.7707695156696 0.07223216705531785 3.677102274953863e-06 31576923.205277115 1607.4774008267775 64196 6298 4558154 YOYO_20190126 4598123.986975911 1289.4902661991935 0.015746999955400198 4.4160625554776e-06 437419.7433386506 122.66926748304202 6883 None 754371 BRD_20210110 5845597.079996334 144.45819705706214 0.07707367948855799 1.912025982192964e-06 732224.2370769568 18.1648492114666 None None None IRIS_20210523 86243953.62248859 2294.6124108737827 0.08588017412369084 2.2867186740801817e-06 23214916.16685346 618.1401337110874 24491 None 469012 ARPA_20200323 0.0 0.0 0.0061219192509147455 1.0499116471896118e-06 1398788.0423077412 239.89271948482693 14219 None 1589260 AGIX_20210916 191481261.0570525 5830.0 0.4649626903519195 9.645250728749677e-06 4602638.036635558 95.47776369632928 63386 None 154162 OCEAN_20210725 176089913.5233352 5154.270933123785 0.4074873920335633 1.1907766896516102e-05 17735469.418982957 518.2733006476528 None 3277 115494 DLT_20201015 2872025.9872157965 252.0279397719728 0.03507532375929337 3.072868953827589e-06 66065.94159841687 5.787886157127 None 2541 None XVG_20190302 95087300.6564026 24870.799571425672 0.006034773469597314 1.5784404477277138e-06 780204.5889883483 204.0683858252861 304434 53403 436458 STORJ_20200423 13804098.291092776 1940.3456393407757 0.09600350639734134 1.3494542060722968e-05 1313046.6980239311 184.56579930363924 81773 8051 123443 ONT_20200721 464441030.419932 50693.278848263755 0.7271383401163052 7.937113714178145e-05 161086130.360787 17583.43445685984 87735 16567 168500 SNX_20210217 3478658705.9129696 70733.74399497484 24.079024483408322 0.0004893545920483631 364156461.9417673 7400.700015819945 82735 4734 25863 WTC_20200607 11329182.951474808 1171.3628155260014 0.3882148598659582 4.0138856723328294e-05 8595180.3231396 888.6849710513192 54259 19630 876470 LRC_20190803 41932087.19091052 3985.074999840142 0.043553871363599214 4.138057429084409e-06 6002955.817039928 570.3413987654934 34727 2452 581854 LOOM_20200316 11319262.487861222 2094.608186828803 0.013472170157613915 2.5071010139415134e-06 29145017.136836756 5423.736574007739 21586 None 494145 RVN_20200605 128011041.05300239 13097.164027030896 0.020297856279344703 2.07652815958751e-06 11550475.195036447 1181.6463112667454 31710 7912 203270 AST_20200109 3238354.503342112 402.42608719834516 0.018740380503429552 2.335457966398027e-06 4513417.689987583 562.4697587028321 31832 3507 410205 IDEX_20200914 38912496.833323695 3769.710614609107 0.07260964425155644 7.030904607134598e-06 374542.4076797718 36.26752295603685 40033 1966 16691 BTCB_20190821 0.0 0.0 10772.2613477189 1.000008105969934 122328.43795699457 11.355965623089789 None None 60594 SOL_20211011 44343249688.30569 810397.504697643 147.69627281665322 0.0026994292101882394 1495896606.8269508 27340.344606413368 717748 69581 6633 LTC_20200315 2203649104.433666 426047.29442467913 34.40363514968084 0.006623112368654775 2922256840.927512 562569.4884661799 447893 212258 137206 ENG_20190510 31105157.103170123 5037.980918361908 0.4039182022184002 6.542968568261576e-05 1034316.174482593 167.54625520998303 62015 3395 347491 FTM_20210828 1244726945.267564 25376.003011825764 0.48761559923098635 9.940273063309099e-06 109376090.01002024 2229.682977762263 109791 9927 52942 ONT_20190603 923369784.1362891 105578.48044679077 1.5037089419176215 0.00017195027814246 225441968.82096386 25779.463141526096 80934 16204 249314 HNT_20210724 1023219954.3204125 30611.5117534116 11.156611235211978 0.00033367205434553754 13471847.937596336 402.9161796891324 64776 42998 2371 SOL_20210806 10217649265.24856 249383.42685711943 37.47983512479931 0.0009147920450111444 642276103.3968464 15676.404875629412 375079 28837 9636 ICX_20190314 156022285.286077 40353.40065295173 0.32958389664445925 8.525641129722936e-05 14144053.703256592 3658.7687451119177 111846 23546 258994 YOYO_20201015 1403378.4727894377 122.97306642840981 0.008024174429956591 7.031298786042102e-07 1377636.8587476108 120.71742030377736 7762 None 2332569 DOGE_20200105 268594298.65203285 36549.86738362218 0.002189335881061751 2.9774409528473536e-07 46196902.62503713 6282.660918332036 138314 146171 132410 SNM_20200425 2953145.7335729375 393.8413392 0.006820690235834639 9.1e-07 43090.26004268884 5.74899831 29815 9659 7419106 DOCK_20210110 11075290.1942071 273.69598544754984 0.019578375215516516 4.858485129561479e-07 5056401.885737341 125.47748779210114 None 14867 239744 DEGO_20211216 31831598.23118737 652.4688132237073 5.885754284961457 0.00012060747717916343 7327714.749160352 150.15529813109825 None None 201352 XLM_20200417 996348213.5408659 140551.158696487 0.04901536690852062 6.914416585786808e-06 546305319.790594 77065.27161397225 281322 107592 81218 BNB_20190126 964393101.0744951 270439.94265273964 6.676620475978288 0.0018722913474037792 41426440.472985245 11617.009882524917 907423 47033 1078 NANO_20211021 732282443.9590559 11044.981353625682 5.488293919381268 8.310731779896743e-05 21061044.868734673 318.9200459733342 140684 113054 107865 NULS_20190325 25161732.821611375 6300.733273784317 0.6287144779103173 0.00015755648985239326 8996432.641990317 2254.515202157756 19989 None 738002 QTUM_20190528 310683540.7132721 35228.369221024455 3.247438958595166 0.0003682853894957785 305211379.89911866 34613.39638954045 177585 15296 449132 XTZ_20200329 1103964046.3969529 177017.0618816834 1.568513106703286 0.00025087911903568893 110249920.07700422 17634.154731935072 58296 22810 103142 QKC_20210304 89768001.78938472 1765.162040174903 0.013932853046510358 2.7498151112045684e-07 11337307.639823373 223.75531963404703 65128 9267 361342 AE_20190801 101485157.94418657 10090.683483724426 0.31485929829559706 3.128691289135176e-05 26472520.679772887 2630.519260526931 24880 6363 316448 KNC_20190625 45562007.8281045 4126.656716353121 0.27461681458115383 2.4864058279637502e-05 8578093.070078384 776.6684146704131 97020 6693 219809 WPR_20190708 6609654.200454296 577.9707626445311 0.010871650299418691 9.506542739146303e-07 378988.61881041253 33.14006064529006 34771 None 1294750 FIO_20201124 10014039.002174117 546.7981689390529 0.08584738931696252 4.678682319774925e-06 1437421.415906939 78.3394605028577 None 151 324482 NCASH_20200411 599700.6269579356 87.4625937420206 0.00020628397534300284 3.005932719835321e-08 808683.9003813765 117.83995301227269 57484 58251 716326 GXS_20181231 31841850.88905483 8381.40521607528 0.5309337725394785 0.00013969449981149319 813768.0313507955 214.1112959501556 9926 None 227512 MDT_20210916 24310756.145607036 504.30570730825076 0.040095604179130016 8.317487907163127e-07 2062933.5898197254 42.79378135805031 34645 330 967896 ONE_20210506 1232683563.2184722 21532.461156342488 0.1306099149508286 2.2782985381455968e-06 109718491.63800684 1913.8782779279732 144950 18446 26398 GXS_20200117 27365832.604084924 3144.0461926614867 0.4230122793280686 4.854656765350748e-05 5338896.768431061 612.7129774469715 None None 1111246 YOYO_20190905 2085537.9786388513 197.45817465290455 0.011930637585064359 1.1293770061441347e-06 218878.92345912656 20.719498142645666 7550 None 893009 BRD_20200501 7319661.521860554 845.8654566676109 0.11670660560178867 1.3550175063722684e-05 565427.3215585501 65.6487193113322 None None None ANKR_20210408 1005522171.1491159 17852.14074652603 0.14241563227791465 2.534400482172644e-06 416463711.4125915 7411.3060071367045 68075 None 5861 JUV_20210614 20313370.633668665 521.9199075096662 9.270644391392095 0.000237480059258344 5982386.073434101 153.24688762137797 None None 34079 GTO_20200323 2817955.094078753 483.4645537168498 0.004261930980286233 7.309229005351788e-07 87952.09159000132 15.0838195621793 16867 None 1148049 FUEL_20190603 5173764.768675704 591.79628492925 0.009753758238831728 1.1153497830255685e-06 1951908.4772125361 223.20224094518167 1 1516 None NEBL_20210821 30739702.720027383 625.5774347840754 1.687164193818989 3.432807150274053e-05 1795708.1393785921 36.53657280807311 40437 6122 2191823 LUN_20191020 2306068.815840803 290.1017830524161 0.8530392652099106 0.00010731172034035329 24511.353271238877 3.083510448677329 30622 2181 2505082 IOST_20201030 82371777.4662899 6115.154728051901 0.0049258744485049235 3.663242406697652e-07 44246183.0818011 3290.471486721654 None 52171 261548 GAS_20190205 26923927.119565155 7771.83967041117 1.9320920369488852 0.0005577161709345538 699223.590384346 201.8373327970945 316085 97863 145826 BTCST_20210828 176354580.05253202 3594.732093699831 24.198847921979134 0.0004934669975816289 9246962.625804864 188.56562504204805 None None 1726916 NEBL_20211225 22801810.057772495 448.17658209891147 1.2107171978521283 2.38092286410759e-05 654992.2948045217 12.88068042050604 41582 6305 1078711 RARE_20211225 150347645.34086144 2957.92329899228 1.0374743780553801 2.040234062933951e-05 15774529.114188652 310.2123031301796 None 3164 8540 AXS_20210203 53365507.86540088 1498.4869153302539 0.962136826323255 2.70828265254414e-05 11145610.746239616 313.733591836435 31614 None 20130 BTG_20200704 159328726.88675714 17568.212665750012 9.115047951509714 0.0010056173342398228 40109497.72008855 4425.0788794032715 75235 None 243493 ANKR_20200718 29846364.841750614 3259.9844743894464 0.005782126209453418 6.316762996675741e-07 16538055.136053268 1806.7224916261332 21397 None 5287 ICX_20200301 155360547.22184622 18116.268858366628 0.29464712375631424 3.4449933845248534e-05 18012383.57294668 2105.9951801751017 112498 27490 143772 AXS_20210104 31879689.25918625 952.7568605939374 0.5692119124808555 1.7291768114025717e-05 6885798.811211453 209.17980406340678 None None 19930 EZ_20210930 0.0 0.0 4.2993784486352045 0.00010343430467233914 1185007.102583434 28.508861723119423 36752 None 171423 IOTX_20190207 8646874.594889008 2537.897039706579 0.006502406076127365 1.9084868442619472e-06 262784.9173089361 77.12861234487208 13497 1557 1480640 HC_20201208 41142742.55371405 2142.063700894127 0.9149641311738477 4.765887419195834e-05 4491526.4464221485 233.9557219202227 None 843 1295476 YFII_20201224 54457503.95126018 2329.8955518428234 1354.0524960302303 0.05806565680049922 96976131.50727735 4158.614814750824 12749 None 117104 POA_20210620 9363679.478592847 262.70777340911246 0.03244092047391829 9.099985294514926e-07 564209.264071761 15.826603965229543 None None 235218 CHR_20210710 70539962.90198721 2076.1934559352158 0.15656955989718685 4.607340770127403e-06 34744564.900475204 1022.4212836225337 68209 None 101399 MTH_20191020 4871261.505574055 613.0009656988416 0.01401624803535339 1.7638087323611252e-06 195442.5029511682 24.594541457192037 19466 1973 790483 NEBL_20190908 7554515.322074583 721.5496502063096 0.48574323725304386 4.6399123112526955e-05 133550.69811692243 12.75701812903042 40348 6118 464857 QLC_20210722 4737617.958395374 147.22200662573331 0.01974064486857306 6.134263300878736e-07 1100761.5019459855 34.205371351151335 35130 5681 940522 CELO_20210408 438071221.8178534 7777.560090950186 4.246492439353204 7.556974128259536e-05 16634704.530150127 296.0279184783694 None None 83063 DASH_20191102 653784902.5149654 70777.18564828087 71.81221584479425 0.007774218268285989 288397439.11978364 31221.21512832344 317416 31649 74210 ENJ_20210112 150358199.329536 4244.647652418192 0.164034539221887 4.608128657692848e-06 30126977.92610983 846.339990404062 71660 16114 75025 MOVR_20220105 508646195.57062364 10982.559909466496 186.33430281862184 0.0040571453083068755 34747251.6397813 756.5684194183082 None 6786 16048 HBAR_20210804 2025598986.248871 52721.6351060646 0.21649941395518021 5.658213226208505e-06 106820874.01955472 2791.764056865869 118796 23816 44489 REP_20211002 154846775.20487234 3215.685449842893 23.504365561584123 0.00048803003081326343 97061928.8584225 2015.3335348473104 154641 11708 234935 ONG_20210909 0.0 0.0 1.1122370694484252 2.40239939449566e-05 11140449.362124052 240.63043335940023 None 20029 152489 ADA_20210221 35319686744.70111 632135.7331817399 1.125679550953505 2.0023683289982214e-05 10595397192.580061 188471.82356300336 221975 197546 16033 RLC_20200730 77048246.49316438 6946.776496785828 1.0970291377163883 9.890966474952208e-05 5033924.791786035 453.8656234476299 32351 3773 380436 GNO_20211120 620816708.0092106 10679.756000668416 415.26110547192286 0.00711904270511043 823974.205610086 14.125829460915542 89720 2386 126825 FTM_20201231 42301996.94762403 1464.3834292852912 0.016609524822345154 5.760443857792691e-07 5698645.547903033 197.6379703529699 28335 2831 141964 SNGLS_20200407 3979843.077377791 546.1824697937691 0.006172404728100475 8.470834636982433e-07 371493.5748221064 50.982733304786926 8966 2128 1305089 AST_20200127 3210246.760763251 374.01774506222216 0.01847800654447033 2.1501740381021977e-06 1801384.0418372042 209.61618289766585 31819 3499 397581 LOOM_20210620 46172291.178509064 1295.1764765007144 0.05529369696817372 1.5530360320075003e-06 4357733.995938757 122.3958296276033 None None 248078 EOS_20210202 2886348606.966879 86502.61855497707 3.0508840084472806 9.134036065394774e-05 4461480922.490406 133572.19592179163 195037 75556 71191 FTM_20211120 5719584363.841979 98391.21587680896 2.2666681276310645 3.885870115521639e-05 867466453.1447902 14871.44026689007 240473 21315 18932 XRP_20200106 8392968450.124307 1142798.5611649014 0.1938156066611448 2.6387913795988754e-05 1151983921.4447215 156842.12916143105 942559 208359 28405 YOYO_20210422 6237018.508837874 115.1093698059385 0.03559979888192813 6.581824956274776e-07 1424506.7636435397 26.33681779615564 9798 None 783243 VIBE_20201018 2526856.1923784893 222.68461286083175 0.013512163988407579 1.189988645806428e-06 443163.7279732831 39.0285231125 18687 None 2330514 ARPA_20210916 82517334.47137097 1712.0526832541327 0.0838062942930175 1.7387886961972338e-06 34079569.96151952 707.0730369388265 48741 None 735001 SNGLS_20190228 7344098.2201014925 1921.644163123248 0.0124282000467933 3.257938562656668e-06 548992.3561523448 143.91330691317242 None 2186 1185727 KAVA_20200903 97466258.47499678 8541.746343962568 3.5841902433220487 0.0003141024096509866 38577419.83145995 3380.7526120455873 36233 None 95209 XMR_20200806 1592298708.0321527 135924.35802807103 90.18542808592383 0.00769855326405153 96809582.64944147 8264.014977976798 321091 176586 88499 LOOM_20190123 25927586.18797762 7258.489664587093 0.044393864873704995 1.2429053395156156e-05 997776.5459650347 279.34981559984436 16699 None 360086 CAKE_20220115 2918236705.7056537 67716.4950090498 11.296634911695184 0.0002619175338314167 94859790.20620425 2199.36667023315 None None 662 ZEN_20190530 73492011.50025739 8498.87867239807 11.209864456521004 0.0012963487596154015 3437017.2973515154 397.4689549084084 25748 1653 229804 DODO_20210718 126769635.68794723 4010.4979420619643 0.9331909131997913 2.955099564452419e-05 35148364.19990247 1113.029652016226 97580 1035 27217 OG_20210617 6854137.509136393 179.19562876788132 5.344134106963266 0.00013972283542398794 2128094.1087589986 55.639199348957455 674168 None 238671 CHR_20211120 662701404.413217 11400.288054632116 1.1715048092723126 2.0083732034026807e-05 271841817.64686763 4660.329328612601 103911 1628 41811 RNDR_20211225 870927287.1204215 17134.529167125525 5.600926506599444 0.0001101444169076517 56558691.49235586 1112.2488552822597 None 4281 62178 TKO_20210703 99267281.5368408 2931.8735433872544 1.323569365637387 3.9091647245163385e-05 4403813.108611576 130.06670677404753 292070 None 20199 CTSI_20200626 7819681.812559661 844.5893565531787 0.03917969116529324 4.234200035149843e-06 2772547.962092892 299.632853894153 14759 116 235006 GTO_20191213 6448194.669664402 894.7062107570334 0.009727911673298898 1.3498170441726962e-06 1055161.9274340374 146.41123417289228 17098 None 1276665 SNM_20210707 72080657.98020013 2109.23917216 0.1646954484865855 4.82e-06 121687.83273061749 3.56133311 32396 9711 None MITH_20181229 32427646.708759654 8428.785697475385 0.06666749971736426 1.7318714770215904e-05 29732334.50353571 7723.7907961510955 30 1956 463101 DLT_20190906 2765752.5235168077 261.6718673855054 0.0344758041672536 3.261805956735093e-06 105943.467116616 10.0234654554158 15015 2654 9139526 HC_20190225 48563855.92188753 12892.99965514306 1.1001118951664879 0.0002936675056397199 13276475.485410932 3544.066250549426 12231 785 404563 TFUEL_20210527 1601507459.5417862 40876.1859510437 0.30229859314169427 7.711543064571871e-06 36424767.28759436 929.184481595098 163357 17832 16888 LEND_20200217 40428031.14205782 4063.7573581492106 0.035829085786278296 3.6014791442138118e-06 5727596.064251112 575.7282754834193 None 5753 199167 LEND_20190523 10725971.24889472 1398.9646652464617 0.009616342651719022 1.2542382658394367e-06 1713836.560237352 223.53190532994012 11491 5881 548468 FIO_20210617 49594690.603428535 1296.6303273777035 0.2053197709834107 5.364658459578825e-06 7008382.04085085 183.1171729022073 77004 472 103132 QKC_20190905 47593121.05242093 4505.256000276754 0.011880313086898742 1.1246967353916993e-06 13737840.933068871 1300.5469414599702 51149 9238 312593 HC_20190227 49358536.38868514 12955.229298009519 1.1272943357723808 0.00029588326637035946 8872650.051141469 2328.8227352744893 12231 785 404563 VIA_20210115 8695080.716308825 221.647729783898 0.37522474720321436 9.564915621810959e-06 152597.98001734642 3.8899001566499276 37773 2125 3644327 STX_20200308 74893269.5924491 8425.971893291575 0.13637059372710503 1.53217951414847e-05 937224.7498725378 105.30104201065801 35815 None 34581 HOT_20190914 142617256.87965667 13772.870348504452 0.0008026513695031348 7.753859835126847e-08 5455615.375100181 527.0292749774543 24375 6655 436903 MTH_20200502 2263070.325005973 255.39320658989305 0.006491753504386163 7.350649686414857e-07 708414.2487751251 80.21415126271148 19052 1918 1375902 MDA_20211007 13995353.97797541 252.1041187247157 0.7117887271284074 1.2829246969583319e-05 338583.2609539841 6.102608975095385 None 390 671506 BQX_20200323 3074276.2894793986 527.4404895303533 0.021944083587789296 3.762114438496051e-06 116364.12232170113 19.949575153504735 None 11 311435 ELF_20210722 83619529.84848547 2598.4862193413414 0.18233136785424386 5.64556951675059e-06 11428331.576364918 353.85814922652804 49427 33390 615767 AST_20190929 4235098.41262495 516.9647152972656 0.02456041280023783 2.9920716505930298e-06 1407046.72911947 171.41343117886234 31994 3560 234516 OAX_20200224 3109644.573088562 312.5582253099905 0.059544852224925435 5.983996440048181e-06 361493.2920570534 36.32849006996447 12046 None None FIRO_20210930 63086733.95565353 1518.7599972119533 5.110484433266509 0.00012289126650237055 3992218.4624096337 96.00044563409028 75385 1310 226350 NKN_20201228 12183694.445884487 460.2016525914566 0.018650500485292022 7.091900833479457e-07 892470.0839349362 33.936404747449075 13719 1023 401461 TCT_20200312 4298115.561336362 541.9073791874118 0.007547103641100983 9.507150384795439e-07 525198.7631501702 66.15973306613849 22 None 365886 WTC_20200610 11605193.175222749 1187.4496843721229 0.3976727964783126 4.068700229828916e-05 9235252.134405129 944.88415638537 54255 19611 876470 XZC_20190929 39223132.901477166 4789.07078132565 4.625370756495455 0.000563485672108006 17472544.624742333 2128.5922944628574 60771 4050 176312 NANO_20210427 1089880065.825094 20218.11620340683 8.179317466851499 0.00015173265040329466 74784154.89116065 1387.3037788046931 118259 86271 65732 UNFI_20210324 60121046.820472345 1102.8460114774064 24.660959912741607 0.0004523955049671524 33439449.832171567 613.4334124128271 16842 None 95638 CELR_20200329 5696157.126692686 913.7286938575153 0.001520639968093905 2.4328336355289664e-07 5097627.932611714 815.5566706177696 None None 1309255 FUN_20201015 19683141.487564366 1724.3950421101072 0.0032760648955140153 2.866693536325478e-07 371875.1933204463 32.54063173386091 34059 16630 272576 ADX_20190627 13077645.800517451 1007.550214158855 0.14176815451466812 1.0906966899983446e-05 1054306.3039567443 81.11330784453652 54179 3885 880682 DASH_20210202 1027766509.4392025 30770.282770600443 103.25286505957793 0.003091285642778385 484013174.2253527 14490.86159047587 336684 36379 65272 LINK_20211111 15787633779.391666 243619.8002701323 34.28654102832006 0.0005278568312971121 2639266887.7629046 40632.70935295564 598903 71269 23025 BTS_20210708 120391454.9514027 3542.947637189874 0.04446574871790434 1.3087185001549776e-06 18860380.584671356 555.0998173383834 6203 7184 140146 MTH_20190621 9453178.280857807 988.2509629111377 0.027672760781359235 2.8936025458193336e-06 3316360.194446178 346.7752414485337 19521 2006 1893104 WPR_20190811 3108921.6880682497 274.38348582666225 0.005108722622503142 4.511147067570439e-07 73612.5162639014 6.500194107576561 34630 None 1323626 XVS_20210616 280430455.06071484 6943.622052902733 27.51207468376782 0.0006816520478261801 41665256.79103856 1032.3179164518576 114963 None 10744 BEL_20210429 116340245.33353952 2125.405798376587 3.702053699627435 6.761046229826259e-05 26330637.513751544 480.87540574894274 None None 318373 GO_20200907 11045321.534470877 1072.7221858005623 0.010757108433350808 1.0456716678512756e-06 891317.4113176805 86.64274138836741 11940 682 742486 VIA_20200502 3008915.09049201 339.50473743272914 0.12951099836317617 1.4654765650825427e-05 64280.34700810924 7.273617169686036 39065 2162 3161515 WAVES_20190414 266069398.7699777 52448.66267039745 2.66192617778909 0.0005246116063142796 12374852.24191485 2438.8321384347532 139738 56736 40979 LTC_20200421 2605415617.477453 380537.3140434344 40.35910603510565 0.005894700908664593 3477705370.808853 507940.7108656742 133075 213197 145046 FUN_20210204 280709050.05087805 7492.46632373689 0.04717064491177646 1.2575495787051588e-06 40760108.31496199 1086.6473658633452 34884 16775 258794 GVT_20200417 3427683.422054685 482.7695701805669 0.7704847563848091 0.00010868943587805585 728454.9261147146 102.76044311830101 20512 5568 159747 XVG_20190520 176083979.34756333 21549.815263363078 0.010989162403480341 1.3448947517630794e-06 9282610.620991651 1136.0405687405332 304571 53072 436140 FLM_20211204 0.0 0.0 0.5481052769098148 1.0201854401086913e-05 41550848.474230126 773.3837352663688 None None 43497 PORTO_20211204 0.0 0.0 3.4608628632717653 6.441685661609998e-05 5631112.883739199 104.8116049527551 None None 176855 CTXC_20210722 22407205.360458937 696.306406512982 0.12459642726443595 3.858027541092907e-06 5393677.026578371 167.0108443168742 20166 20593 753985 NXS_20190903 13649255.625581404 1322.1306550445845 0.22860055078120511 2.2143317133093354e-05 107282.85668429696 10.391918612559644 22171 3539 525271 RLC_20190605 28851788.948802307 3763.3890259094364 0.4124587352923812 5.3783235611357013e-05 1557308.369421288 203.0677878424617 24934 3315 786963 PPT_20210430 179834963.2408338 3355.0050208942735 4.964127924880222 9.261087950973575e-05 9923805.056898389 185.13872493015953 None None 724019 RDN_20210210 22428472.826991443 481.53916499963424 0.33519707342978006 7.193923140687052e-06 1189034.6387354052 25.51879023033603 27046 4385 1282732 DOCK_20200501 2854296.7920307843 329.8643755597126 0.005078946303465824 5.892251340240307e-07 3185685.1685398645 369.58173176793844 42646 14991 414692 HBAR_20210104 229056151.35709226 6852.76076334226 0.03335453919130654 1.01327054727578e-06 11018438.267490158 334.7268241179624 931 6867 206193 SNM_20190205 7226222.117372398 2085.915604718233 0.018083638932363356 5.220009020816399e-06 57439.97456624935 16.580577975082385 31459 10106 10310545 CHR_20210731 184896074.4823295 4429.708807108987 0.32649680200257014 7.816270535195164e-06 88329804.3423319 2114.598497828741 75931 None 87464 IOST_20200109 56983435.40420074 7081.009522576739 0.004729124606399307 5.884488795901375e-07 31494338.636605565 3918.866561279627 192932 52328 87170 GVT_20211104 4529373.845168239 71.8285976741657 1.0203505009734073 1.6189851040147103e-05 2223159.6640544333 35.274764666816 25853 5822 507031 LOOM_20200913 25138958.229898136 2410.837547738069 0.030203772490528837 2.892692444782155e-06 4327487.30143769 414.4545131137141 None None 451154 RAMP_20210513 132988238.97017154 2579.54383184869 0.48053341323635834 9.352154581474077e-06 17769225.177869707 345.82515196444837 26761 None 97168 REN_20210115 414627078.6289855 10616.249477498215 0.4734759887227782 1.2069539812174489e-05 135478845.85467878 3453.53800973399 33126 996 104896 DCR_20210212 1330218549.6611054 27896.84703495486 106.6214006399588 0.0022330878862758786 85702650.62162037 1794.963766900186 42289 10367 288064 CVC_20190618 29294871.086291593 3142.895969600039 0.08546857353279212 9.173068338934767e-06 4360020.511354543 467.9470413118285 88740 8173 458176 CTK_20210723 47638943.70630086 1471.5400593376005 1.0441819118151288 3.2253079730584125e-05 7316057.316729476 225.98110279444924 80045 None 108429 GVT_20200610 5770235.000316997 590.4135869541769 1.3012368555172495 0.00013325142815297653 1488001.6244208706 152.37682571572503 20382 5540 237369 PSG_20210506 72581611.18205164 1267.8523264978494 34.38532720501387 0.000599801636302529 63122973.50997155 1101.0877568162682 9040724 None 27720 ADA_20210124 10775451797.658688 336638.951996753 0.3464554739144793 1.0810642411569771e-05 2968549141.6525126 92629.28620807249 181828 105525 30705 APPC_20210117 3928557.499700226 108.25548303297401 0.035516686478409866 9.812359747219557e-07 356683.8698960225 9.854270751236264 24234 3120 531818 LSK_20190329 211768478.2302032 52599.02083050428 1.6182296849608324 0.0004019255545578815 5840706.00522725 1450.677256743891 183583 30439 187764 GTO_20210616 37403951.99935457 926.6900148279997 0.056443499527468376 1.398398420973175e-06 33647682.25772539 833.6277185597235 14440 None 252134 BCPT_20181231 2690631.226677343 707.9345915218222 0.032071993064573874 8.438493199790162e-06 352520.7825777821 92.75208499134926 9989 1329 930259 LINK_20200223 1488244288.1982062 154177.61245933463 4.097401544819644 0.00042447147268249893 311916251.741246 32313.052377696513 43503 13078 107371 KAVA_20200927 65264582.55917512 6077.884391401175 2.2201565374804573 0.0002066975326851562 12155497.079337656 1131.6820289221757 42848 None 88219 COCOS_20200323 6446654.974146839 1106.0251373740696 0.0002775236936258791 4.755965240168587e-08 1013898.4348816716 173.7532983349176 14634 216 67575 OMG_20190511 222256941.6542452 34879.557317002196 1.5914923397781235 0.00024981035975256687 91754721.57980466 14402.381609981963 289919 38709 None MTH_20190811 4452120.457656872 392.81876946846387 0.013024674444289041 1.150115719076271e-06 501607.9314765154 44.2934039750553 19478 1994 1172984 PAXG_20210823 322968436.3318402 6546.546401473226 1782.5782643232822 0.03618027637297105 3456048.2857896276 70.14602648353879 None None 41531 IOTX_20210708 183542033.59987104 5401.891541937619 0.01928633720440306 5.676365973225222e-07 6116530.37352569 180.02207738311915 57517 3238 211014 KNC_20200410 90784602.29344048 12455.524899016411 0.5063625798651041 6.944608844723075e-05 63380338.77769497 8692.420782246241 104940 7307 125566 QSP_20210519 43870661.75028042 1028.1724539804911 0.06158905042920802 1.439572176760676e-06 865995.5630462937 20.241635632823822 65058 8448 228861 DGB_20210310 833697871.1779808 15254.067519094022 0.05894105279419644 1.077793477937302e-06 90414114.83647802 1653.3084949209683 192863 29541 164221 ICX_20200423 126994795.92886096 17854.970377542744 0.23672442697077503 3.327469856503213e-05 20453384.329307236 2874.9893152195546 112759 27536 102592 HIVE_20201201 45838054.917898305 2328.523495162958 0.12334508464363104 6.261897992722592e-06 3624305.277121055 183.99622494393495 9649 96 146478 EOS_20210603 6115738194.283396 162510.42680862363 6.384927182438721 0.00016956955412683678 2924560239.8735085 77669.85616631739 223848 88188 49952 ZEN_20200321 50939586.97387819 8243.031508014881 5.9085102990134954 0.0009537781854569272 3317004.564429397 535.445727350604 None 5085 39151 VIBE_20190629 5874806.07155956 473.30486700893545 0.031331266244315197 2.5292603623701187e-06 506462.0982809352 40.884862432178 20504 None 1430855 AKRO_20210508 134055201.88425498 2339.4424696224646 0.049525872031197765 8.641810027974252e-07 27481877.552629564 479.53353526470147 38658 None 159597 OXT_20201201 0.0 0.0 0.3163856070249985 1.611638632254219e-05 11691840.084819987 595.5713769667624 52421 1750 130309 RCN_20190729 9773917.697653003 1023.7942149125026 0.019298879078582746 2.0237434021932797e-06 1162715.351499693 121.92612387719797 None 1120 2034448 ENJ_20190410 130236786.06248519 25180.015742067957 0.15034546248525632 2.9054089814054553e-05 32258238.877639152 6233.868013715841 44347 12206 18229 HNT_20211230 3808220240.9728527 82110.38827763514 38.234664543517695 0.0008216156245870037 30534330.436123468 656.144973995198 134127 79792 2009 XLM_20211221 6425173772.511115 136188.08261513474 0.2601025758949802 5.518875771475117e-06 682003759.3928503 14470.806414804088 708112 208971 23107 NBS_20201226 0.0 0.0 0.015067512919498469 6.110562917182074e-07 26733772.425334148 1084.1762624754995 None None 802802 SNGLS_20210617 9201205.414454663 240.26085100761594 0.010338433049949058 2.699560123681078e-07 220121.20267262877 5.747780328419086 9491 2139 2122104 SNX_20201129 571430727.2340115 32282.33650278501 4.262374957628183 0.00024064803253937486 42019228.648228146 2372.3498761932055 None 2553 37543 KEY_20190405 8741150.414641239 1783.6272463006428 0.003337778670747563 6.81905993025125e-07 736176.5540824063 150.4003871056388 23893 2829 702225 YFI_20210611 1377788910.070635 37384.47276835965 37888.74712239124 1.032012899605785 247906276.02547172 6752.465947873031 None 6382 17925 ALGO_20210429 3789837397.481529 69236.07867955504 1.287723422518458 2.3517642631044416e-05 382401627.20650387 6983.786000090035 87360 23831 138222 FTT_20200718 291877930.82811093 31880.608644368847 2.9402783851322063 0.0003212094714842159 2597066.3458485315 283.71541707672066 15576 None 11932 FET_20200301 10999513.395499201 1283.7463471758783 0.03239920427892541 3.7880921076656354e-06 5631581.24216056 658.4405059288018 16542 356 523257 AION_20190702 43399395.06115668 4093.926040432403 0.13240454722108175 1.2485714272021553e-05 1815144.8946095945 171.16769017435647 67540 72579 281038 ATOM_20190930 539794962.8627348 67039.53925696027 2.202639204151483 0.000273555567492731 90615643.28299911 11253.960101717554 None 7012 109594 WRX_20211011 556239058.899283 10166.116398863907 1.230165666383642 2.247548063176754e-05 17108763.398140185 312.5820293121996 None None 1271 KNC_20201018 182181435.89529195 16033.043186541514 0.9216436797324608 8.108602529364648e-05 24732474.58946598 2175.958132450994 125168 9170 71927 TFUEL_20201018 0.0 0.0 0.009576133350341283 8.425062832162081e-07 1242023.21894265 109.2729526184292 74690 4469 70726 BAND_20191118 5056137.507942191 594.6784217649266 0.3241734664092082 3.810900323804209e-05 825137.151484064 97.00101222362662 7603 984 514363 KMD_20210722 80676031.67470191 2507.0166851895474 0.6383068474531973 1.9764046761255427e-05 2886777.3777388046 89.38397466768123 114140 9432 217175 LSK_20210725 364715491.81532174 10675.469257212986 2.524446574562909 7.388751943793158e-05 18440342.53190648 539.7266795017305 196393 32589 298346 FIRO_20210729 59655573.49223519 1491.8741754710718 4.9217855924587335 0.00012301779183954527 4179314.25914047 104.46005863212464 73762 1093 308142 DREP_20210814 0.0 0.0 0.8025355693343291 1.6837769731974643e-05 4981878.138251628 104.52336336222157 4106 None 292177 SKY_20190207 11229412.01810137 3296.4282867661786 0.8958786628049029 0.00026294446407407814 189527.30814026346 55.62712735038867 14365 3492 287738 VITE_20210217 20278060.21857379 412.32648600370254 0.03485083436079694 7.086002173683878e-07 3453964.011779504 70.22728994639711 None None 414630 HC_20190730 126114165.30504458 13287.053487463756 2.8563614959764867 0.0003002920201309922 49769626.53881145 5232.328511484655 12928 846 470640 SNT_20200501 79047794.68455097 9135.367949749825 0.020914258336376272 2.4263313559458727e-06 24587256.238656063 2852.447828129079 None 5663 168718 NULS_20200320 12634821.130421022 2041.5292492012657 0.14946969579329517 2.4213373770584314e-05 6952936.28726849 1126.3423280094926 22719 5188 563630 HNT_20211125 4426827956.889808 77382.06392281315 43.921466390555146 0.0007678719417443268 35552666.79333981 621.5615626772753 121291 71819 2229 QSP_20190616 0.0 0.0 0.027262419863041475 3.0907225690653083e-06 1535212.3441226708 174.0460114738413 56835 8592 682845 ELF_20190712 76878339.41057885 6787.758178253162 0.16693402963891443 1.471008942564667e-05 30329574.536826797 2672.617168851563 86554 33371 1102918 STORJ_20210614 136372509.1237387 3503.8757787814893 0.9512014953695319 2.436630917444366e-05 22204484.94140375 568.7978286149912 102856 13540 47967 CDT_20191220 5015159.140347898 702.17549587815 0.007491754849523016 1.048476252421128e-06 162276.83207400792 22.710754444742836 19360 298 187759 SOL_20210131 1099976702.0181136 32154.652163891737 4.233485772671465 0.00012386314778928335 67081650.437249236 1962.6720929818632 None 3220 80032 BNB_20191216 2205239116.243429 309888.3053273132 14.355063424677494 0.00201893952308117 166600618.18560407 23431.21466439834 1072190 57896 1581 KNC_20190716 32165883.5953371 2936.981492692755 0.19136430311347014 1.7499218322239074e-05 6323965.358129125 578.2920255433403 97518 6694 215847 DUSK_20200320 4540306.120791301 734.5795896020885 0.017406729513878467 2.8162480419692292e-06 496432.2055825675 80.31814510748148 17643 13344 994052 XMR_20190511 1152434096.3801804 180855.50363278092 67.88063977106609 0.010654959887402601 296172015.8024182 46488.96885457822 317049 157687 117450 LSK_20201101 146153165.51425546 10591.78031244301 1.0257794075056812 7.441980989547049e-05 2473591.031337595 179.45785708343448 177384 31045 211425 XVS_20210324 382317058.4552767 7008.966345643155 42.29997818379327 0.0007748080055427447 61857514.13567203 1133.0430703071877 43490 None 15629 BQX_20200719 16213628.770149505 1768.7340653932115 0.07293737420623797 7.95669003082249e-06 1605060.783754035 175.09502194099582 12769 43 341287 WTC_20210704 18808749.950955912 542.8481325641609 0.6409560522663198 1.8484383144962817e-05 14668501.112007126 423.02150632317273 65553 19854 588715 STORJ_20191022 17949212.483897407 2185.8427119987605 0.1248329034042295 1.5201899867126822e-05 3014540.422176575 367.10466867008586 83209 7826 147955 CHZ_20191108 53747118.36486699 5829.57555357564 0.01420850273694365 1.5411570376264125e-06 15221722.437339954 1651.0581792764287 13316 None 336673 ONT_20200719 486806723.0481959 53084.82860395769 0.7619039135289919 8.311559525133408e-05 166257748.5906196 18136.948103141847 87626 16567 168500 MANA_20200324 33329249.371143434 5179.727738230782 0.02514468982133725 3.8992910118441376e-06 20821333.101998717 3228.850210366947 48031 6791 47233 TNT_20190730 17036875.438974965 1794.9599449782284 0.03983035299794936 4.187403163476615e-06 908075.1532887437 95.46681069463696 17587 2547 635699 BQX_20200331 3773494.72026022 587.3185913933835 0.026764597351297617 4.168685739669948e-06 687814.1203078566 107.12961145040273 10816 12 317847 PERL_20210427 0.0 0.0 0.13050741435496926 2.421099338551789e-06 12123891.77248675 224.91554595666912 18474 639 340450 STRAX_20211002 204660168.6079098 4250.154551065785 2.043046794716919 4.24205532187714e-05 17064305.81568752 354.3126348684842 157413 10937 280292 GVT_20210617 14313398.668913612 374.2157534625447 3.226176963694543 8.434658121376082e-05 807531.9844872496 21.112469303067098 25748 5668 273194 CVC_20210207 161873075.398762 4128.023040416898 0.24617792115756307 6.2603274017637524e-06 195937039.05498546 4982.697103170723 88250 8440 155763 PNT_20200913 18293873.243129607 1754.3907788368351 0.6898122154175679 6.606470937960406e-05 3106901.6395219415 297.55424635642817 5201 90 271040 FIRO_20210617 83355244.79936524 2179.2844564167485 6.96293526858694 0.00018192972558469674 11536481.448553458 301.42875428083823 72875 1034 230087 MDX_20210702 845667228.793749 25150.4625213713 1.6519444699233796 4.912063904809466e-05 69428726.02347532 2064.4661201755575 None None 12360 STEEM_20190905 52968567.67414355 5016.111978649899 0.16334505110003905 1.5465465486200317e-05 357254.4600675024 33.8247561512059 11029 3769 235183 ARK_20190627 69007899.5134467 5291.727401367466 0.48446409881491675 3.7150122880905024e-05 2394956.0234107543 183.65222682489033 63483 21849 211362 LRC_20200430 39240740.89189458 4494.664340478979 0.03375640635691861 3.849892171415729e-06 3025354.2514478248 345.0393245435346 34206 6808 593192 RLC_20210725 177827260.92189264 5204.859748243318 2.4972478412886483 7.297562024800993e-05 15502201.479755439 453.0118114391872 45898 7729 149507 DENT_20190221 18526159.95603964 4660.142579397066 0.0009900752132660476 2.490473832189159e-07 475807.1492530225 119.68638730729955 42366 8819 243701 POND_20210909 57475905.27076689 1240.1190310447425 0.07295465247466897 1.5751071757759845e-06 28778404.475235153 621.3321544101053 None 628 272620 NEO_20190522 792133211.8942742 99546.6865662466 12.181944752230466 0.0015309604632906212 347480498.32012427 43669.4563563203 321418 97575 225000 IOST_20210711 472227904.57892925 14004.161934156871 0.020855351388657222 6.186847836505129e-07 58041047.05826212 1721.817675132548 248507 53582 158729 BRD_20190902 14987577.004537318 1541.0516857194757 0.24953512251960816 2.5657684433490554e-05 70723.8553156863 7.271963735153687 169 None None WTC_20210203 10866275.125090076 305.12363519903334 0.3712353842557463 1.0442379435746184e-05 4314748.361847226 121.36838640665106 54818 19023 815573 BCH_20200229 5789794942.444437 662082.0729975404 315.4731626383738 0.03615980571790464 5178699697.079719 593587.0213227324 2555 285322 126656 DYDX_20220105 611296098.3395439 13213.624167624717 8.270795911573938 0.00017991549438276297 106821632.03694394 2323.702210062514 105608 2592 15962 FTM_20201201 53166762.17954516 2701.401887784701 0.020838416022175985 1.0614893835442564e-06 7412461.350935761 377.5838346627274 27986 2818 121484 YOYO_20210408 7587793.6352289915 134.7100441448305 0.04326360639421873 7.699106000671752e-07 2059744.7795374417 36.6548115464275 9735 None 886969 CDT_20190324 5859457.251725393 1464.3259113999886 0.008689644968026827 2.1695781145267194e-06 142218.83162196464 35.50833960373403 19581 287 398206 NU_20210702 126604220.64595701 3767.904918143374 0.2304197743442612 6.850910795159286e-06 19730131.75355212 586.6222766904282 None 7106 128147 ARK_20190124 54904524.65170088 15454.674683495663 0.39461389559570054 0.00011107699084376911 176465.1603964504 49.67189251156804 62718 21784 157332 CMT_20190622 35619858.822981566 3519.559526925432 0.04447935282562927 4.396278573033297e-06 8852743.288132744 874.9930733649722 291188 1641 705322 TOMO_20210212 153869362.28256705 3226.890847414813 1.9166967606181584 4.0143463620909735e-05 38559163.526204415 807.5864738080321 38715 1813 172672 STRAX_20210221 168948599.91718704 3012.862464253214 1.6869366371686738 2.999781821892293e-05 11050456.775883203 196.50387945535175 150116 10470 212375 SXP_20210814 669403229.3290609 14033.7043893996 3.576281861360568 7.495784607640157e-05 144744695.38668516 3033.8074619887702 None None 79966 BCH_20200713 4368450210.251065 470839.65067026246 237.29245604329915 0.025539499377573795 1638998026.6590557 176403.37067464765 3370 302643 156887 OCEAN_20210509 622972530.3104911 10623.032060381438 1.4770236570385222 2.515324449647248e-05 75889725.37087505 1292.3779574736934 None 2935 66643 FORTH_20210814 158203848.76317507 3316.591655366765 18.351003700125215 0.00038461766032716244 31821501.231132135 666.9450647831567 31953 None 110884 VITE_20211104 103043593.58297712 1634.21233005556 0.13474847295110964 2.13703354372571e-06 56387848.94776701 894.2789630249703 38081 2700 286292 BCD_20200229 115421647.22668469 13186.850056218858 0.6090828879843051 6.990435490395403e-05 6377905.543204975 731.9912961461903 29240 None 1333183 ZRX_20211202 973706558.225769 17034.930039374412 1.1517430823392274 2.0140935190672234e-05 96765160.77955279 1692.1663015484232 246071 20800 52318 OGN_20210704 203630830.66983005 5873.928008829626 0.6565476737364786 1.893567552463196e-05 26482717.698540796 763.7954857049315 None 5883 54387 LEND_20200229 30482991.951211523 3482.6625142169937 0.026889313731078102 3.0860826453385498e-06 956101.3091548142 109.73160887917676 43765 5751 199167 TRX_20191022 1029938633.0066437 125420.35099151114 0.015536832358922224 1.890529176436118e-06 733870051.5097814 89297.65810951708 476780 71314 65552 APPC_20210112 3114601.310702548 87.92593420673674 0.02783896178233667 7.831652627478494e-07 185904.78753652834 5.2298707443 24239 3124 538163 ENJ_20200425 118821534.05815671 15846.43506321123 0.12953126645651794 1.72817483861305e-05 13573653.794284662 1810.964070454893 54361 15325 92997 FUEL_20200324 1721876.4897531483 267.2785505714147 0.0017502432525457038 2.7e-07 50640.09905061321 7.81195798 1 1469 None ELF_20191030 41064939.452331014 4364.510433582627 0.08901424043817929 9.460712381686297e-06 17209853.12558111 1829.117113741651 None 33540 963430 HBAR_20191203 24213058.289776158 3311.8598564087865 0.02508716660219787 3.4337555115856815e-06 500614.99751751864 68.52067171099475 34929 6158 91976 EOS_20200511 2295414022.5630054 262180.6007410863 2.450372117211878 0.0002798798070478302 4307764339.100238 492029.86092036415 None 71144 91670 ZIL_20190803 95819073.70019877 9103.887823242268 0.01042270104088791 9.902617376460916e-07 14580731.841198841 1385.316607717573 65804 10615 160236 STX_20210207 409128676.94260603 10404.497557524799 0.4464845937016816 1.1354144690445247e-05 8490615.867427869 215.91715017647024 49558 None 62343 CHR_20200901 27646856.322328903 2365.9781676970047 0.06558822550400227 5.618885269052662e-06 4292687.110779327 367.7507080891883 26932 None 270101 TCT_20200901 15719595.960206117 1344.919933153714 0.02712962554025842 2.323623815605805e-06 72504322.13029394 6209.918724691002 None None 525749 CMT_20200224 12382409.364543544 1244.5872205258345 0.015515500697095508 1.5592397573894701e-06 11427550.94187216 1148.418739815218 287226 1641 729361 XVS_20210702 186915269.1726828 5559.3560814555785 18.23228243047034 0.000542098820322296 18711440.919226456 556.3455967471718 117406 None 10936 GO_20200730 11873869.632934138 1069.3034648865992 0.011417776304156014 1.0295042591363676e-06 994300.1508546586 89.6528547149943 11669 683 716439 CELR_20200315 4898938.726228081 948.1927693099227 0.0013182467882466653 2.544336991911269e-07 4381295.603286697 845.6301638911839 19280 None 1113968 CELR_20210105 21719634.314074505 694.2220146860931 0.005505847225053433 1.7598272134137915e-07 5268492.659480752 168.3961863968183 25902 None 415548 UNI_20220112 7245529400.23944 169016.4945217005 15.97779568078496 0.0003734366154750167 244065462.98323056 5704.352607313032 802249 60001 2747 TVK_20220115 70431473.2007877 1634.0902632694176 0.16229425197839573 3.7638355280624547e-06 4508029.86218609 104.5476518732233 None None 33768 DUSK_20211207 96244285.07249556 1906.7961189847954 0.25136369719668455 4.977694571959306e-06 17608095.988654748 348.68887115661516 None 13789 337609 POLS_20210806 95993815.232555 2342.932897609239 1.3263529516895929 3.238396363844571e-05 25169367.854914412 614.5301613555479 384116 None 22359 ICX_20200207 239607224.5934528 24602.126355037635 0.4617693118335336 4.7437972970705753e-05 122698448.70992666 12604.92099472241 112121 27277 146794 CRV_20210114 128079125.15605918 3436.8028293661723 0.6884330763463611 1.8420933436096247e-05 54189003.22934562 1449.976847065327 54963 None 29021 NAS_20190716 44987963.28049766 4114.349068761352 0.9879909865132528 9.045289063891371e-05 7503115.351862648 686.927797558488 24369 5141 512130 MITH_20190205 18046766.190848753 5209.365364191295 0.03677951546185271 1.0616746065889087e-05 3375948.9775799923 974.4987821696335 43 1976 498260 ANT_20210826 189902521.8503137 3874.2208541566647 5.165558181598076 0.00010541413834309753 20113229.071044244 410.4529728025508 None 3093 132148 OXT_20210813 222957309.30874074 5014.90105527887 0.3768979312517519 8.477629002413066e-06 24910383.50212161 560.3134751561108 68877 4368 223178 FET_20200319 3731050.658264195 692.9117772358554 0.010988466901545394 2.0395245736576654e-06 2734945.3425020617 507.62206262450127 16594 360 584622 QLC_20190615 8986480.726786103 1033.3171495191846 0.036825396758337896 4.243242763661283e-06 1202311.7550001277 138.53756111708637 24973 5792 940522 NANO_20200404 72250400.00949389 10743.293717974379 0.5434543320182129 8.077322232669715e-05 3062648.7319548894 455.1992547673331 None 50201 296838 FOR_20210108 8506432.937543208 217.5945922674262 0.015336658224523176 3.8896208792365233e-07 2137504.7704482074 54.210526588568534 16613 None 227730 LRC_20210729 290307145.5998426 7260.038050451364 0.2334606574407959 5.834779586489218e-06 24363579.71365833 608.9082380105364 82955 11074 261623 BAT_20190512 463146885.14509237 63431.23939388833 0.3697870986615314 5.0769062852303455e-05 116671213.31034067 16018.103884767526 100540 26701 57848 SNGLS_20200523 5077694.8758375505 554.6979388911577 0.007842527695708135 8.567146999175146e-07 217719.31916597494 23.78357443195256 8769 2122 2556875 BTG_20190920 192950186.6520598 18839.074039935196 11.019437336966067 0.0010752105235556683 13979879.678377502 1364.0727097570689 75074 None 262678 APPC_20190623 9540007.17643785 889.1883692569503 0.08955854080846873 8.34926971058994e-06 633656.1249501788 59.07382861776195 25521 3371 1293635 LUNA_20201018 142374387.5705238 12529.787644705888 0.3166404748348574 2.786179674267637e-05 1368328.801250512 120.40184994503704 15164 None 170162 KSM_20210718 1597926403.0866854 50552.17297398074 177.61148703280367 0.005630179847279049 90214410.75384536 2859.7438479113935 93379 None 62098 KNC_20191015 33249732.117000412 3983.6542922500025 0.19983054443275794 2.394009355419301e-05 5854068.99565408 701.3290176758647 98203 6724 164062 SXP_20210106 58075602.07922021 1709.2592915938337 0.7610399431650686 2.233354741276074e-05 42925235.92840255 1259.687878961938 91725 None 116678 LSK_20190716 172345359.52881756 15733.812800404672 1.2880907784871962 0.00011778885290975517 8162750.491307027 746.4388636403489 182881 30488 196756 BNT_20200117 15623121.121700091 1794.9322131290933 0.224360530246286 2.5748504695134058e-05 8354687.568618046 958.8170960854686 756 5056 111697 ELF_20190207 30077058.29945417 8831.298206857267 0.09992378205773406 2.9339861249824355e-05 3973935.7621162822 1166.8365775911134 85177 30545 921506 WABI_20201101 4010846.8898179717 290.8090458059979 0.06789784757655272 4.921514342857158e-06 621796.3931000053 45.07035165626224 41257 7603 1658910 XMR_20190821 1469220653.8758733 136663.3634606478 85.59170587924473 0.00796153415005036 91296780.25388269 8492.206415495551 320335 160442 90338 ZEN_20200807 92099301.40793256 7828.033283835193 9.53082272500078 0.0008099013968911517 6418518.239305507 545.4268784528715 66006 6037 69490 QLC_20190920 4675412.11977919 456.1380686817504 0.019480883832413292 1.90057528617396e-06 2998160.2247308423 292.50362951357465 24760 5741 940522 HARD_20211028 83280857.00373688 1422.9538490784967 0.9085647284169192 1.5522530684416555e-05 14233791.72435633 243.17966776223932 38794 None 46204 YOYO_20190324 5619274.505841101 1402.977410946555 0.01924409077343239 4.8047171607768625e-06 792871.7093360684 197.95813442123057 7134 None 1390338 WTC_20190929 21225314.318810932 2591.2728793077054 0.7287807242677649 8.878369277893893e-05 4184548.6453075814 509.78252987796037 55672 19836 452938 CMT_20200229 10015011.320744513 1145.8630160604544 0.012401472021360932 1.4195878274448548e-06 8416168.180445889 963.3928844987697 287106 1640 729361 SXP_20210115 66685129.2601732 1707.4282051382734 0.8789390073093083 2.2405337533186015e-05 70354607.84164688 1793.4335859465502 93528 None 116678 UNI_20210916 14240178335.679047 295481.5468881699 27.336005128349605 0.0005670618930429854 608722043.915363 12627.414757164308 None 52248 3009 ARK_20200306 33150214.49406565 3659.453203089865 0.2322128847691164 2.5633987530282845e-05 475374.06520882394 52.47655775819173 62745 21978 80258 EVX_20191030 7520511.713941638 799.179808685218 0.34497760155695595 3.66596242516155e-05 833722.7142180129 88.59694454169725 None 2896 495281 COS_20200109 11618955.312887082 1443.7077260529156 0.00877560924505643 1.0931866941072303e-06 4362741.404731996 543.4711961645733 9653 None 212925 QSP_20200730 16889872.408441223 1521.0730128494233 0.023612716438132852 2.127538549321935e-06 778980.3408819215 70.18721072319283 55238 8223 336431 REQ_20190225 14759930.647173595 3904.4978238842295 0.020055494526938777 5.336664119264966e-06 220525.68091561494 58.68075140894928 41674 30846 495814 CELR_20200414 5676253.964000789 828.3499309237504 0.0015048892325014707 2.195425346753781e-07 6188394.769385132 902.8012453676293 19298 None 1350205 BNB_20190903 3524515002.3552375 341415.88256812934 22.660341307040724 0.002195082279822445 225699512.67370558 21863.262963328765 None 56029 1071 DCR_20210210 1236214352.1372118 26542.71242316081 98.23618804186088 0.0021092255434786047 36798041.11606709 790.0893735708762 42207 10344 288064 IOTX_20210724 183138429.94389075 5478.827089379245 0.01922388965517599 5.749223752694838e-07 10456863.709572108 312.7298912765958 58372 3285 234069 IOST_20190812 111329997.95482261 9646.159912481502 0.009271695858722109 8.028624721474392e-07 43931332.99271104 3804.138870461355 196975 50630 101612 SRM_20210210 170023984.43116266 3649.1758994846696 3.3885672833142624 7.27245532819436e-05 149285307.95569482 3203.922609444735 34036 None 83159 SOL_20201111 104439762.47148168 6831.7906844440495 2.252786688117921 0.00014747038106272738 17683772.994641323 1157.6030504358243 92088 2558 76248 APPC_20210804 6883549.081623716 179.13374071300865 0.06053484295475126 1.5797088886288304e-06 369179.33706030884 9.634052915412658 24909 3125 888904 BZRX_20211204 126887408.32872555 2363.4179222643234 0.34994511703885994 6.525934239557899e-06 120520995.18737255 2247.5298290603905 None None 199766 WABI_20210814 15093752.1345305 316.4329753759592 0.2554077468335004 5.3544958565803424e-06 1321003.7007072521 27.694182849415885 45359 7883 670233 RCN_20190531 15369029.242263412 1849.4696826306965 0.030733943657830595 3.6999231538029656e-06 1487093.002266609 179.02453040850565 19026 1122 2252968 OAX_20210703 7048619.460965933 208.63980584987632 0.1244442978269619 3.6817589417199455e-06 167794.10725750556 4.964288967440259 14053 None 1338925 SXP_20210125 73728564.16735291 2288.167390294651 0.9858953648444334 3.055912221602765e-05 86310716.73258318 2675.314070068827 None None 143437 DASH_20190909 790141849.7827541 76072.6473683962 87.55030948764775 0.008423842698158204 279812160.51604164 26922.73321491211 319284 30451 81581 ONE_20201208 38054438.345824726 1981.273633668987 0.005183570372351447 2.6994829652324483e-07 3905228.731890583 203.3752352105656 79196 1547 163899 ETC_20210809 7396360943.2595625 168128.3946220947 57.36147690428685 0.0013040151126977163 4378825286.296756 99545.10687933731 492108 58829 120880 HOT_20190411 229708842.7310047 43253.14342335913 0.0012922920638302167 2.435158948151379e-07 9148194.5780615 1723.86014815945 20384 5881 216677 BAL_20200927 127443054.02408305 11868.369006162859 15.477446348273833 0.0014417805532319196 56904034.979790464 5300.818312540357 23965 None 53731 SNM_20190225 7419668.800979871 1969.8144942645456 0.018468042360825238 4.929920272638684e-06 157555.92326012446 42.05849894529287 31348 10090 10312209 EOS_20201124 3172647150.101351 173236.55839451856 3.378851852748779 0.0001840411505812016 4069758839.1023774 221673.85016513357 191487 73298 107742 COS_20210718 35427919.856215216 1120.9365263955601 0.011751002983956585 3.7211446563169283e-07 4595961.838647337 145.53854560217894 27065 None 345679 REP_20190512 234977555.46860662 32260.698995844472 21.374159052481414 0.0029373584100259474 41730296.08921956 5734.814449053683 125294 9945 267119 MTL_20201201 22338226.5445663 1136.2009159560848 0.3457124405865669 1.758685804715267e-05 2862608.7309368313 145.62476638129434 41116 None 434978 OCEAN_20210220 466652174.8272539 8355.547373840516 1.1135622486204546 1.9903714700780243e-05 114429414.0741146 2045.3013865459345 47426 1799 79767 AKRO_20210724 49124970.534899004 1469.6381279124337 0.018118632346827198 5.418922600812908e-07 9032305.649425961 270.1382989853282 43638 None 233466 WBTC_20210115 4326873150.33168 110786.6977074915 39242.84843800439 1.0003529911691955 406035506.1520766 10350.391199094707 None None 159793 AMB_20200719 1910625.5124925214 208.42887659896286 0.013214002550937366 1.44150682017991e-06 454391.869545483 49.56930925805286 19062 5457 573873 RDN_20210930 25345656.68247902 610.3270648593839 0.505187764946578 1.2153793880007868e-05 1595215.5744110567 38.377654074065994 31472 4781 2151577 MATIC_20200806 80720622.75890532 6890.663951048492 0.021510350984462804 1.8355421594043869e-06 18302333.25738078 1561.7924753369816 46514 2108 76971 NAS_20210422 48499550.46684666 895.0896455546496 1.064752282359668 1.9660353579908433e-05 9982190.784549931 184.31836548067787 24766 4894 465428 SNT_20190906 54558290.82991962 5161.8392178752765 0.015396363134669591 1.4566955253057547e-06 89763521.65229921 8492.792692850226 111268 5719 268012 FET_20190923 18059508.4774166 1797.0938995460842 0.053076027897416674 5.283888387667485e-06 3216616.952672627 320.22450882441615 None 308 435240 LSK_20210711 355564831.3246307 10544.700563302444 2.4603563125651706 7.298774231013149e-05 25896466.93508364 768.2320831937058 196529 32568 337278 BNT_20190914 26971850.552134342 2605.3843687696167 0.38665599633334585 3.7352162020678826e-05 3155423.532626428 304.8236472528759 777 5111 161703 FARM_20210916 128168204.75104937 2659.5080227130798 210.69843690056743 0.004371510081429013 17918634.751255747 371.77063870447626 56065 None 82123 XTZ_20211120 4594519721.49877 79037.27841240929 5.305626466247568 9.095718547407854e-05 163291374.2877303 2799.391158026771 216709 63724 37286 VTHO_20210301 137445023.09964553 3029.7332208604184 0.004182876103276976 9.23015306052819e-08 15654492.304100497 345.4402102383771 179494 89747 59007 MFT_20190712 20037573.98227905 1767.2857048990013 0.002210512819020991 1.942580817293627e-07 1089478.7602576546 95.74251378748801 18853 2134 960456 OGN_20200629 19072748.19550714 2091.9094237722056 0.25828322654464686 2.8299544464697866e-05 9749860.920298483 1068.2715495305772 64395 2297 179031 UNI_20210212 6429248007.496799 134884.57552521478 21.473246483515222 0.0004497375415586407 1010745029.005973 21169.131776917468 203401 None 5312 DLT_20190813 4209152.997186172 369.8419716732386 0.05246827149239351 4.610216320294333e-06 234244.11297095363 20.58226813719447 15044 2661 2977956 FIRO_20210201 47729861.54915136 1444.247110802382 4.162643132152186 0.00012556245967807302 4087338.9587540086 123.29097568684011 68243 179 276546 LTO_20200621 11751292.02806895 1256.1108534222037 0.05315627667507693 5.6813136398734224e-06 2137317.5712851794 228.4353274911923 15586 477 1399831 LSK_20211021 497431458.3696434 7502.7350822392955 3.438805458104253 5.207262990166404e-05 13937002.254481865 211.04315704336932 198438 33323 201994 POWR_20210804 123068265.11675301 3203.1809902499094 0.28553031822274827 7.432678124239551e-06 18534212.58255335 482.46658102654135 91817 14043 171172 DOGE_20210511 58441555673.06635 1045926.3545779501 0.4511289031456602 8.073837249499287e-06 17200364811.112534 307834.29114959174 1317493 1807636 8878 ENS_20220112 605186738.702152 14139.498513313336 26.74435498449742 0.0006251164237494778 64220951.79243991 1501.0858081097244 None None 3332 FIRO_20210203 48465523.379721 1360.9057846601906 4.200512693172901 0.00011827525421638308 4561988.351696107 128.45344638667558 68295 193 276546 TFUEL_20210718 1485766079.876278 47009.51891536721 0.2802410033776513 8.883475252401336e-06 59744131.83515118 1893.8538980270205 182904 21556 19127 MFT_20191022 8454344.099760026 1029.5179182136096 0.0009380859502356531 1.1414674612916576e-07 1084366.608665383 131.94624645980292 18634 2314 1251152 MATIC_20210107 169147570.7407475 4614.81690435737 0.03489382416730843 9.453918828287143e-07 165847047.24219996 4493.358237323299 70961 2631 49015 RDN_20200520 7952550.371838404 815.2791793153897 0.1188211268730504 1.2184321433536565e-05 873515.8449875325 89.57327802476313 24946 4310 1987298 KEEP_20210723 108535457.60905883 3355.821548030677 0.24857340024614544 7.678027751988846e-06 11545932.45886019 356.6350613297049 22117 2818 132886 BCH_20210620 10433830015.160994 292681.3568346153 554.9983048960918 0.015592978492396959 3611447922.8981094 101465.58879797842 None 570372 266622 WAVES_20210731 1623948200.201076 38923.78360092522 16.287172894357003 0.00038966148430245103 211930806.46735147 5070.325780485543 194783 59203 114241 QKC_20200511 9205191.107009765 1051.290686158838 0.00261772014448538 2.982157284767502e-07 1749786.1349785712 199.33901185748627 49592 9192 723829 NEO_20210120 1876229512.3260639 51814.97900351888 26.455700627120986 0.0007340265346983493 1058416633.2147855 29366.2944140402 330093 101533 169176 MTH_20190813 4470261.166341524 392.78453521629854 0.013090681070490502 1.1502355575729735e-06 241775.3379780834 21.244012377134066 19478 1994 1172984 NULS_20181231 16553349.091908632 4357.169025941515 0.41394867617520725 0.00010891443765074402 4163918.183124155 1095.5725514791181 19632 None 361417 MTH_20190329 7289477.050462072 1810.5309720272808 0.022724365547714644 5.644186456585252e-06 2554530.885691342 634.484100234773 19206 2015 1148279 QSP_20190622 0.0 0.0 0.02368182297081139 2.3406790855319267e-06 425969.8434651414 42.1022783970251 56781 8591 682845 THETA_20210825 7122824942.759824 148223.050435596 7.118932953818267 0.0001482357570597915 543603954.1136376 11319.328922111987 190070 22928 21702 ETC_20190318 481225640.59414303 120852.3223307668 4.413313275356532 0.0011083348714368798 188453186.12099117 47327.08166845589 226144 24229 601028 LUNA_20210108 414665004.9534327 10593.704784619837 0.8569776481590246 2.1716299924334317e-05 87739758.21542126 2223.3752639731542 17692 None 167354 STX_20211007 1441424109.3897185 25967.296423640237 1.3717213853260808 2.4726929041093944e-05 23752888.37669178 428.174403121858 83076 None 80462 DASH_20200701 645682897.0198915 70580.27053271966 68.26880215376703 0.0074641976111591195 257838434.30096546 28190.871447245372 316567 35090 73217 MTL_20210427 237826506.51787707 4414.591041843061 3.680552221412459 6.830265613474709e-05 40945068.60042509 759.8471024968128 54930 4069 207061 IOTX_20210603 257746289.7977758 6853.520562515565 0.027028290774105936 7.186871505902984e-07 18142018.3168466 482.3995553053162 54219 3064 179770 VITE_20200129 6264863.576451379 671.2274148155176 0.012453065352605425 1.3318221210211398e-06 5157935.141413675 551.6274046285165 None None 534616 DOT_20201224 4489530313.422168 192078.88625354038 4.738927848976903 0.00020307161790222261 322787689.4904395 13832.035522105558 84739 6523 42393 CKB_20210902 430078998.88538706 8842.949193395485 0.015567168321863896 3.199484636498755e-07 25784819.46633191 529.9495196024532 52728 5961 125877 OM_20210430 113826083.35563351 2123.979361207809 0.38619686331977365 7.205934855459608e-06 49487640.14085873 923.3754721363048 37516 None 70476 ALICE_20210617 91731049.6047611 2398.2307167826298 5.279205425304353 0.00013800883996837506 35117711.5652713 918.0462295019845 79031 None 45300 NXS_20190603 23222244.129212577 2656.5311974651636 0.3889845198715158 4.449363356229161e-05 972831.6833116258 111.27644989407821 21335 3515 793300 GRS_20190622 30875968.02974488 3050.152063895173 0.4237645805392731 4.186665619659746e-05 1444843.2501270294 142.7461340305121 38594 107037 12971590 AE_20200913 55127167.51529109 5286.816130840831 0.15074423915919555 1.443716084959175e-05 15049418.236747213 1441.3212271896311 25731 6357 378824 BTG_20190719 477850358.7594719 44524.11755947078 27.153361991921237 0.0025456749871296054 27398851.06715014 2568.690015567326 74913 None 299895 MATIC_20210626 6682940338.363932 210034.6595374453 1.0532136995590675 3.309331422839143e-05 1133931485.9923031 35629.569758844154 500006 45396 8165 APPC_20190826 4019702.1889543794 397.4056313962903 0.03702047223039228 3.660008490612797e-06 148967.67006764284 14.727606225043589 25239 3318 1230496 ENJ_20200321 68229469.6582524 11036.675754242904 0.0744427169699261 1.2038469147259914e-05 18310173.582262143 2961.0211545621814 53858 15274 111026 RLC_20200523 24420144.107546426 2667.7072835430495 0.34714677154291335 3.7988912803500886e-05 522298.81806929805 57.1561249693298 30247 3576 635349 BAND_20210725 190802533.34346518 5584.561001716912 5.422148170108163 0.00015869941711768695 36811933.480962686 1077.4387204338063 100895 5525 263918 MTH_20200625 3072624.470116546 330.2536165188999 0.008740769539334501 9.403817592270405e-07 1995175.2567939905 214.65231516595347 18987 1909 2521194 KAVA_20210422 294163982.2639625 5428.980930443536 5.004007455879561 9.23749973332503e-05 71937806.31547377 1327.9865637977389 91030 None 75402 DASH_20200411 699610399.7043715 101945.96008301963 74.13091462087606 0.010802222588530721 923653676.7610798 134593.1405556706 315588 34609 60751 BTG_20190201 171442914.1286093 49964.724122240994 9.788949532493477 0.002852857263442644 196745332.17310706 57338.77246739786 72763 None 294190 SOL_20211204 65135413411.05541 1213066.681688705 212.13388531266622 0.0039559682879605615 3755641183.1718 70036.88920178005 1059749 103245 3321 BQX_20210203 620130271.9002774 17415.000278303225 2.7817960168723808 7.830372655209695e-05 18918524.73132896 532.5304150074306 None 547 65097 EGLD_20201101 105940574.97814102 7679.801118915132 7.324983274799405 0.0005315380492872878 3407397.163662284 247.25807194006006 None 2774 47014 TOMO_20201201 53619631.20566468 2727.2833842721907 0.7021148073653144 3.5765070303538247e-05 6407423.8846743135 326.3881679975917 34103 1695 118130 RCN_20190627 14453078.850195425 1111.951080703544 0.028920585995666562 2.2177150508262033e-06 3337084.151155734 255.89736490818584 None 1122 1997723 AST_20210429 66095196.75931604 1207.485114324349 0.38380731125311146 7.009457952997145e-06 4412152.1051254 80.57896177675696 42187 3648 173984 NCASH_20190909 3118096.124595712 300.2014936274974 0.001075001232399712 1.0343357248027801e-07 316620.6610103661 30.464342832671537 59646 58874 754232 PIVX_20201015 24233545.56149217 2123.041895904579 0.3764096645658155 3.293883047967133e-05 335149.3795369146 29.32822835637687 64930 8616 320652 BQX_20200309 6187413.683320812 765.9115427373322 0.04376981207610515 5.437019200105779e-06 1490660.375252889 185.16755491192512 10602 11 317687 SUPER_20210826 283417280.11302394 5782.1450846736925 0.9567248274762861 1.951845472943135e-05 36149643.57792266 737.5006495044167 134306 None None RDN_20190528 16072231.418118356 1824.7914976193472 0.3174408507056254 3.607095348652734e-05 613711.4242568986 69.73631840172214 25634 4441 1272561 QLC_20200403 2118119.9013771918 312.6085413527057 0.008857372161072054 1.299286258988587e-06 113995.25057992936 16.721941900489835 24488 5662 940522 XMR_20190723 1430069402.3571067 138183.38976890815 83.4774822684996 0.008074150717592867 210470720.26387987 20357.254086616784 320157 159644 109892 TROY_20200313 1995726.6781373573 415.8036531965828 0.0017081799747876592 3.5762549556532125e-07 3482335.4813350285 729.0636646129464 8787 None 312111 QNT_20210813 1954771699.6826859 43969.1270880153 151.33695689461754 0.0034037097145627896 42272915.33669413 950.7574061674129 38711 6006 173273 BCD_20210428 428742056.0132074 7782.585388027068 2.3281074577831804 4.224812776865104e-05 10196532.174340062 185.03630176455525 30134 None 1334994 NBS_20210105 0.0 0.0 0.01338649369302375 4.278708603823757e-07 5935267.626496853 189.70823310306577 None None 711556 ZIL_20190618 236654397.12219656 25389.432461149394 0.025869078092366347 2.7755643931987373e-06 95730542.83231933 10271.192698798914 64366 10564 190558 AKRO_20210722 46044302.1101687 1430.7917062730503 0.017066649363703727 5.284549864307281e-07 9073050.08487261 280.9396535493214 43590 None 233466 REN_20210710 321910241.2925221 9474.741818318027 0.3655296105737606 1.0755522695213324e-05 20607185.729230188 606.3559486940285 86796 1180 90516 POE_20190318 11321319.408242505 2843.111769862733 0.004977236129592384 1.249928397137846e-06 275976.83298642805 69.30578970344234 None 10964 686511 XMR_20190708 1821988307.0448353 159496.8028252693 106.89110740415298 0.00935140795205882 272672209.9059778 23854.828843518408 319493 159221 104259 FET_20190819 21072933.106061514 2042.575857248233 0.06691703086658055 6.485464385030291e-06 6026809.276939126 584.1062643512979 16335 296 378000 VIB_20210509 22160746.307695262 377.838432883901 0.12157610988742895 2.0696448884704394e-06 2496295.316807934 42.495559755350016 32428 1249 3730171 ORN_20210131 59502318.48925926 1739.5507676419065 3.5192891228927614 0.00010301021875542426 18046289.88105882 528.2181154936368 33091 None 131553 FTM_20200318 5097213.676308662 938.91011020487 0.0023845945419058785 4.4334492259629056e-07 1538162.0138172628 285.975794615102 21281 2318 333169 WPR_20200414 3077330.048680691 449.31591310377377 0.005058197496142318 7.387015636495799e-07 35313.77191451231 5.157240015145684 33361 None 1058111 STPT_20200329 11158869.224792864 1790.0101375217746 0.016149857296769824 2.583122802002926e-06 11482010.815709325 1836.5143051038124 None None 2025957 BTG_20210408 1431709021.5102887 25418.704523306253 82.38947128422866 0.0014661867690284416 261679611.790873 4656.798721388578 89902 None 185104 YFI_20210724 1045605787.9482167 31275.9260461503 29365.925675213355 0.878183780198306 153620782.1795192 4594.00737792171 133999 6839 20096 CVC_20210603 228101624.8723358 6065.26354902066 0.3404501863766206 9.052632162717404e-06 23086306.65897037 613.8690784799759 102937 9814 135112 AION_20210420 160623191.18361557 2871.7365828474362 0.3261504686899721 5.831375604152765e-06 17515817.355928216 313.1723539335078 72558 73123 244178 REQ_20200207 11042281.91829248 1133.7766276416935 0.014227224106470924 1.4610084368375677e-06 872849.6921972765 89.63384247326795 39930 28441 1052438 BTG_20190410 308162577.11555594 59580.236717167216 17.60247975948099 0.0034016592149044146 15032798.08194911 2905.0711502006784 73397 None 434062 XVG_20200430 52220010.38050056 5956.191761854788 0.0032131373210735575 3.6648905088369755e-07 3924118.415614594 447.5832465240935 293180 51988 294741 BRD_20200301 13543365.939869877 1579.2636097218049 0.21673119394294485 2.5306756769727306e-05 808750.4812727764 94.4342682962288 180 None None THETA_20200127 102636946.3949836 11957.97149300667 0.10244409976972446 1.1920801259134252e-05 2852083.645565466 331.87975090451084 None 4019 536421 ANKR_20210909 772037613.8359244 16664.412812123708 0.1002731382471819 2.165870327705166e-06 107581383.71231027 2323.726282721636 122746 None 5363 GXS_20190410 73601959.7720553 14230.222978769052 1.2257891913672132 0.00023688236858211025 15857400.122158954 3064.4245576203325 None None 652404 GAS_20200901 30917951.504493777 2645.244151054396 2.212102733607427 0.00018950888468143468 5278620.903631371 452.2147841081306 None 100338 111243 QSP_20201031 17585465.56058966 1294.6489230696018 0.02463568952459475 1.8138935924972955e-06 454572.4261866939 33.46957309081275 57659 8207 234136 ADX_20201014 19675210.54267288 1722.2091235443568 0.1931570953053155 1.6909337118541714e-05 455203.88609288854 39.84940835566135 53112 3746 11775 MDA_20200701 8310609.170472489 908.9376508944159 0.4233866518812726 4.6306120392271625e-05 297468.67273386795 32.534375165909715 None 375 1869072 COS_20210104 23026790.09252263 688.9013140090524 0.00764085640380306 2.3211727342683602e-07 1138701.8008551612 34.591980701164935 14064 None 444691 XEM_20200404 336096937.5180971 49948.55157612865 0.0373441041728268 5.549839064630943e-06 19177711.18045647 2850.0673141585858 211074 17991 203182 XMR_20200322 718923278.0633963 116667.56518519571 41.09977600384332 0.0066697114175269445 146570337.84085894 23785.576244419015 320238 167065 83083 RVN_20190523 183047482.65439433 23887.705596022693 0.05094417306973626 6.652154502392856e-06 30120357.145779658 3933.0360535385225 24363 6484 170444 NAS_20190813 36378469.525426485 3196.420932595297 0.7992136721610632 7.023164309030418e-05 6471335.58743317 568.6746199739658 24272 5107 652054 ETH_20190523 25986179169.035725 3390019.4867561883 244.54946301361036 0.031932458666561525 9779773115.360765 1277010.3721602806 442934 437559 37906 FIL_20210702 4813572237.468474 143168.4110685114 57.15513420122446 0.0016992573165121358 483794356.28352517 14383.50396847545 94520 None 26863 GLM_20210418 536292752.5189188 8899.84270257312 0.533752610480493 8.879570617332027e-06 7146164.281042654 118.88442160395404 157066 20939 153882 JUV_20210805 27388829.203902844 688.59576653366 12.44998636700349 0.0003130896978059641 3897051.500658501 98.00225001925958 None None 44064 THETA_20190401 83181281.00332353 20270.68331631171 0.11188795252543414 2.7266266286451578e-05 5717651.94455664 1393.3494798565591 None 3941 286208 BRD_20211002 13989332.162920024 290.54786147626754 0.16466477661853166 3.418966104968273e-06 389970.93881887035 8.097040843368335 839 None None CDT_20200310 3324412.3233200437 420.3522842244454 0.005026707622805622 6.342706097006043e-07 115475.75138647047 14.570745054921655 19273 290 235568 WBTC_20210823 9604313880.459019 194681.70711652198 49321.198284282196 1.0008126231279777 265873193.65437022 5395.028053189881 None None 222414 XEM_20190201 360974960.8281097 105227.83884537793 0.04010109734340962 1.1686923755038054e-05 22809611.27093997 6647.553445300965 214862 18490 174519 XTZ_20210814 3016593575.609752 63290.28885685597 3.5896629819401173 7.523831054078528e-05 189927756.684047 3980.8315180568165 127296 51611 70665 ARPA_20210429 92259933.5324939 1685.4855095554003 0.09405819291169865 1.7177811079129123e-06 20640475.56673814 376.9562000852662 39451 None 501259 SUPER_20210902 276409376.1745007 5683.314173498234 0.9331162535033845 1.9178125754304785e-05 24067475.623169657 494.653342878609 135643 None None DASH_20200323 588760228.0932319 100903.20657165372 62.636788074814426 0.010734850053589326 579634810.3622867 99339.26956228697 316343 34208 60317 COTI_20200730 21184630.159651134 1907.8515481820168 0.04092170529736598 3.6871024878585357e-06 5318590.81542533 479.2124200336916 26671 1083 273018 BNT_20190626 52488494.61708788 4439.623546737897 0.804240139819534 6.793866188944803e-05 3428764.6488057794 289.64692340024123 794 5131 142963 POA_20190801 4280131.502823147 425.1446771880542 0.019362742965922226 1.9205468021334236e-06 118621.59649203824 11.765808605097838 17760 None 707962 PIVX_20200711 28618687.5208003 3082.145377345015 0.45016148387717586 4.848691012961552e-05 603818.6820740727 65.03733264815833 63775 8479 358751 AUDIO_20210710 197948720.83094725 5824.4237163096295 0.8528527712414267 2.5096725994740214e-05 13501235.459060684 397.29812498973314 52464 5758 30965 FTM_20191024 21167166.155138988 2836.3618392142516 0.010142346881251115 1.358683257806977e-06 4304498.255185679 576.6367272836449 19137 2180 498287 MITH_20210828 35373426.42963968 721.2016860231232 0.05718012752496569 1.1656437617857011e-06 9108330.91532194 185.67760463789267 32908 2751 771999 ARDR_20190729 69667704.2724392 7297.523348031217 0.06975754608485402 7.3119735259484804e-06 1479948.1712323534 155.12790307536923 67644 6560 883304 STEEM_20200626 72478385.70466949 7832.832021213667 0.20116402087550375 2.1740053519545006e-05 1977380.2986033913 213.69802280267706 11495 3865 207345 APPC_20210408 19786277.633817066 351.2709503855106 0.17548554864379237 3.1204278290988554e-06 1482768.2944043395 26.366110974508533 24640 3124 857504 BAL_20210304 420143938.571969 8263.599363671368 38.667500771379615 0.0007631493533930952 124525028.41584612 2457.6503011838995 None None 67622 TCT_20210708 14111801.270523136 415.2900468565231 0.02438046389019686 7.174820419624774e-07 3763354.9241262525 110.75013124247185 None None 405222 YFI_20210125 965718129.1424164 29971.080493366007 32182.533049745194 0.9971399263709716 496606846.5973454 15386.809785481384 None 2750 20013 REP_20190603 216943948.01291695 24816.852970164156 19.727841825713103 0.00225603529214378 25164454.22733169 2877.755070521755 125596 9969 263200 QTUM_20210218 690099907.5303738 13222.795329767827 6.651176577964746 0.00012753236398414117 794783966.2756897 15239.51091775809 200437 15466 134759 DOCK_20191017 7315562.711854992 913.5006881775478 0.013102829794137322 1.636547585532971e-06 27819512.909329593 3474.6659613053594 196 15150 183955 MDA_20190321 17401730.89880129 4305.819199948918 0.979307814660842 0.00024226474531427106 14080997.076561969 3483.408504920086 None 356 1647124 WPR_20190805 4002797.95685366 365.5216477100774 0.006581151039638831 6.009679223801053e-07 108281.70178074956 9.887910026530925 34664 None 1323626 TRX_20200501 1013846525.0812234 117160.84840364514 0.015246801386381239 1.7688311814200134e-06 1751598144.3965545 203208.6164573187 507797 72598 68362 REQ_20210523 60044323.76895337 1597.3858853535983 0.07819823461048718 2.0822420594327957e-06 1268556.7651257294 33.77879646874483 43089 27720 387593 AST_20190528 8157354.671824814 926.1608460559414 0.048952864680876756 5.5625370868654895e-06 1385697.9839884208 157.45751504796883 31774 3596 410300 BZRX_20210107 31984412.35230976 870.651226517533 0.2274951053885349 6.163612935812349e-06 22898154.27964415 620.3885559788154 17017 None 145216 ADX_20210111 42340040.46695281 1098.3138678967402 0.37308320163637676 9.704685355296368e-06 6138832.824027012 159.68406174452323 52786 3744 12195 AMB_20211225 17600219.605659716 345.9377236749684 0.032404690527013155 6.372509510641261e-07 157904.6238104808 3.1052563707334024 2716 159 615473 ONE_20200520 17691280.612815212 1812.2287430232639 0.003389178214459794 3.471747642182095e-07 2693583.769013112 275.92066593588004 71848 None 176675 GTO_20200410 6553071.7532162275 899.1436896468939 0.009982239649805547 1.3690338211929616e-06 11270615.166719502 1545.7306065768435 16818 None 1069804 NULS_20200412 18783074.563268375 2729.153337787115 0.1973947233173156 2.8683562275572646e-05 9364439.734909678 1360.7531437420469 22788 5186 528791 FUEL_20190515 4178536.061076743 522.7742997660123 0.007877833187686954 9.8532432427018e-07 1368040.6601546016 171.10843894839383 1 1513 None XRP_20210401 26345850652.65566 447936.8847949615 0.5738184047382427 9.757475625876478e-06 4729377042.2717085 80420.53171263589 1310270 278986 11412 ETC_20191017 505541336.627707 63126.733355697004 4.422591715366768 0.0005522528798733297 669860331.6606084 83646.04310795985 229667 24994 405893 FET_20210204 108393622.74200575 2892.0894164179535 0.15862927962191717 4.228989960428593e-06 36378749.48570357 969.842179922067 28001 851 293884 NANO_20200329 62117489.091558516 9949.049550745525 0.4667235405177537 7.465107570851923e-05 3776649.472739686 604.0641219880897 97546 50090 321803 QSP_20210110 23318417.396710057 576.2519190520189 0.03272014923348973 8.096726726816788e-07 1358216.820034472 33.60959740467642 None 8171 263794 AION_20210221 82093132.7606532 1460.2796055852655 0.16839724958042127 2.9954645526306805e-06 14613735.05577726 259.95035815719535 69044 72680 308962 ELF_20210310 140738784.72767377 2574.9133999069663 0.30545045549918926 5.583807298203894e-06 36778786.14233477 672.337037916757 83778 33321 357981 MKR_20210111 1382295963.4757917 35857.453991329436 1520.4651405785914 0.03953177971132179 642085888.2001374 16694.100516120456 82453 18891 39675 CHR_20210809 173466844.89884323 3943.3618118276736 0.30496040363306404 6.9326756536773005e-06 53860265.47429431 1224.4073220847233 76632 None 86794 XLM_20210314 9217968041.02312 150087.06373027514 0.40832776143813815 6.656177088165212e-06 1042144463.8252091 16988.063898081273 440596 160554 27460 POND_20210710 51447108.37947261 1516.8694707322293 0.06658193529575344 1.959158504797485e-06 5842395.973507416 171.91119046102088 None 591 110694 ORN_20201130 44451463.316623144 2449.9711501218762 3.46474333531629 0.00019068755095642153 30482740.590322312 1677.6651506504265 None None 222289 LINK_20200320 818996488.3598888 132354.45242009862 2.2401206810792593 0.00036288880534820166 418175871.05862373 67742.48528467487 46628 13701 84663 CVC_20200531 16968040.45076325 1750.912985824228 0.025253359912230846 2.610606407789735e-06 12736392.696400292 1316.6449336211022 85441 8010 113161 QKC_20190522 38088699.77092174 4786.573521825619 0.024117713492134776 3.030795185033006e-06 18621972.941062216 2340.1632142280896 51406 9184 159226 ETC_20210723 5601210378.916746 173184.53249008136 43.55229108978336 0.0013452593854327282 2565921925.2720275 79257.15194049923 484765 58463 110949 EVX_20210823 11453134.319568075 232.07198296281553 0.5248237327796611 1.0652136895807453e-05 1015624.3917143432 20.613721102060683 18333 2796 2395989 ADX_20190509 11969202.589327255 2009.5575096686368 0.13003590043992133 2.1832249751422634e-05 249402.45079763068 41.87317945282698 54677 3916 1002486 POLY_20210602 204714758.70344338 5579.267631511032 0.2449770205743038 6.6784145594068565e-06 3181450.2728938363 86.73076263525986 None 5603 154352 DOCK_20200301 3869161.3557695327 451.5674083487747 0.006906206394397467 8.06208905196381e-07 1316775.5391582157 153.71625248201673 None 15036 375776 ANKR_20200629 15432424.911443066 1692.181860629673 0.002997748760414438 3.284569635987443e-07 5099519.68495611 558.7435390353209 20688 None 5685 CELR_20190826 24030032.87204641 2379.866129886506 0.007424982144952517 7.351030752170736e-07 5730369.395196719 567.3296019172916 18253 None 463728 REQ_20191011 9216244.89407698 1076.5665317160801 0.012626857285993918 1.474966443610092e-06 230004.33209611272 26.86722943348877 40704 29195 826039 TVK_20211104 108053217.18605654 1713.6620889044418 0.24891163589507823 3.947595870154477e-06 21316195.388945807 338.06264051182603 58292 None 56112 BNB_20190608 4569677452.955838 567981.6654246241 31.608173874964113 0.003931720040460671 345449209.1309703 42970.200805473374 980019 52348 864 MDA_20190623 19034491.349505473 1774.5275955398802 0.9653904368758764 9.001084560935493e-05 988187.2599751459 92.13637041879112 None 363 2360786 LTC_20210217 13994235891.816252 284380.2967997849 210.43305741721016 0.004276261725714389 9029193035.747538 183484.4442539393 143744 258907 93783 BNT_20190410 45722416.5380127 8838.33526103685 0.7023586687192019 0.00013587044402039016 4146631.8362109424 802.1609668497048 838 5138 158493 POLY_20210703 162272599.3509136 4800.931855368003 0.19109488125731577 5.643453244048314e-06 14288313.981915921 421.9654203329807 47132 5652 172730 TWT_20211225 277654385.9108863 5457.382258997268 0.7978213851603925 1.5695018716866417e-05 15457691.956675932 304.0890719303176 None 62370 3138 IOTX_20210819 738533230.529216 16384.472088902978 0.07748157565315594 1.7204032939695265e-06 121147616.74081667 2689.965416171417 None 7777 88256 CTK_20211216 99792895.53749667 2045.618212476311 1.6645131863216067 3.406047634898347e-05 13718549.751285456 280.7189172100258 None None 1041807 STRAX_20210617 125678281.97696072 3281.512017920425 1.2558474624440732 3.279069761186399e-05 2791295.5963736423 72.88188461032283 156743 10737 142794 APPC_20190716 5731145.662072434 523.4562623246023 0.05271397491513872 4.826087963584397e-06 215954.62325356252 19.771151950544926 25441 3357 1368976 PNT_20201101 11598134.289547462 840.6803204186241 0.39432326026057746 2.8577313264626514e-05 1224534.4787335028 88.74420793482662 6478 100 413502 ASR_20210219 0.0 0.0 8.61240590167593 0.00016656486877530643 18472711.451894015 357.26425275776626 None None 142530 NEO_20200127 757962677.1180993 88393.18947039163 10.772537945018055 0.0012535351883388231 373137803.4867322 43419.792917637445 323198 98701 204331 DNT_20200325 2875879.003166797 425.53024290304865 0.0038278342014701097 5.664778105966353e-07 94775.09926315724 14.025683429301301 58841 6084 656002 LINK_20200605 1695799767.4279928 173744.23920271808 4.466929358088743 0.00045692331177035435 337941974.560683 34568.168382351316 57276 15821 81896 PPT_20200113 12503065.836549249 1533.6776660684607 0.345130406291428 4.2335351338528244e-05 4515209.871353745 553.8573037506936 23673 None 813674 FTT_20210527 3208530580.1861787 81893.15125814333 36.67883502845961 0.0009356168885535129 102015579.78952098 2602.25002436951 129927 None 2698 XVG_20200129 61062513.29128783 6530.472912797316 0.0037785819733733676 4.0410926271879603e-07 1589559.618390195 169.99916105082215 297946 52091 310702 RCN_20200330 24070152.38222073 4070.5670393912524 0.0479835718848816 8.118950657069388e-06 1638751.5141616638 277.2812060468625 None 1133 875851 XEM_20190904 441086543.7067413 41512.80665492185 0.04880707154665813 4.603876326184936e-06 53108960.03457313 5009.665117435524 216576 18369 190156 ERN_20210708 72490313.94346023 2133.2858433250644 6.406781405197526 0.0001885647626136739 10548574.195350818 310.4662486916436 81029 None 52714 CRV_20210702 602706478.6069958 17926.08994442799 1.7120184776987741 5.0902253956967375e-05 124903751.4368653 3713.6763175379124 138533 None 15400 IOTX_20210105 36839643.1690771 1177.5010081353316 0.006420510293652818 2.0521798511515998e-07 3249776.1715909843 103.87219823764723 30812 2015 689535 AXS_20210427 418114944.52434635 7761.1470461520685 7.559175326621019 0.000140281056193877 46716661.506489195 866.9547053503208 None None 19374 AUCTION_20210620 93766917.63204864 2630.295046929036 20.33239427032596 0.000571076680529687 5357660.362567826 150.48079702674693 58060 None 44860 TRB_20210513 173174371.82006183 3357.5115669081224 101.28533768630646 0.002009478506652367 166086284.98942474 3295.1148464316216 20662 None 320975 DODO_20210722 118176584.92495419 3672.2523137144426 0.872266613238834 2.7008198644772133e-05 46701298.20164138 1446.0234057511846 98164 1036 27217 LINK_20191026 1033303571.9169567 119344.09133726826 2.8351561404440138 0.0003274695943262359 174559448.04126856 20162.174075863626 36364 11348 94194 QTUM_20200308 212589175.65857208 23917.01360992666 2.2119482314173986 0.00024852144981613137 474184246.29842454 53276.54359005495 179389 15177 105986 LOOM_20190708 47053567.72929459 4119.067935467311 0.06799364338214774 5.94844896693964e-06 3529695.965654732 308.79675328624364 20568 None 438184 ETH_20210823 380718215752.5816 7717149.018497285 3243.4863583537394 0.06582581712703107 17023426890.400778 345486.57264329167 1514865 1074889 3885 KNC_20211028 137012690.84896493 2341.2545785311827 1.477309215962775 2.5245373989639218e-05 44215135.20009824 755.581574979539 190592 11999 107187 LSK_20200701 160308717.7953255 17523.490872278468 1.1423536084457921 0.00012489970244467785 3599545.6269909358 393.5578041889147 175174 31178 183844 FUEL_20190430 4247726.083751316 815.9903793659554 0.008008296031168597 1.5380286192531715e-06 4446551.041027446 853.9797644159062 1 1522 None BADGER_20210420 288043511.9154807 5140.865131057757 35.32073164390479 0.0006311631926572292 27774293.744949654 496.31225339827455 None None None WBTC_20210527 7235836842.022767 184684.3800219078 39269.82217149108 1.002396306608613 971635754.7872853 24801.846255232613 None None 221187 PPT_20190421 50611483.51380188 9531.07920127516 1.3970700083826708 0.00026310303131998447 5814520.379464489 1095.018809601345 24105 None 609298 AMB_20200314 1078569.6459319347 195.9072195967435 0.007548074872408387 1.3568208756521494e-06 260547.50682711243 46.83529275185231 19130 5506 509552 RLC_20190903 13938015.121241251 1350.1012485787535 0.19901912869947955 1.9277922416566735e-05 379932.484695946 36.8020351177481 24822 3309 984845 SYS_20210131 57340057.9125914 1675.9995124883617 0.09476992160873852 2.7739324663175836e-06 8493352.173530893 248.6019291995906 61414 4497 273624 CVC_20210809 192846942.4372135 4383.6554905055045 0.2880796991323204 6.548999461028215e-06 25961166.567246202 590.1827389040207 103772 9859 242818 YOYO_20190903 2189209.8212514184 212.05708900172243 0.012517365635927894 1.2124905036319133e-06 228164.44644630016 22.101074030187796 7556 None 893009 VITE_20200412 5025144.589019546 730.1461793057571 0.010164369440499683 1.4769914764632675e-06 3611255.4092137655 524.753993837358 None None 524494 YOYO_20200711 1704301.1733449625 183.4071414603309 0.009747813760897395 1.0499454414233541e-06 716644.6024154664 77.19040924285169 7509 None 1813147 ARK_20190430 65650761.23699261 12613.789102334053 0.4649870130706346 8.934020129553332e-05 493930.8261626728 94.90131594006249 63668 21721 188283 CVC_20190812 15937766.320010468 1381.0267927487034 0.046527585294767346 4.030092156006839e-06 4191766.968700571 363.07938770827644 None 8138 266707 BAL_20201130 140610830.43848884 7749.8568610709735 14.390614109365703 0.000792009882320292 28174844.631423917 1550.6464985676794 None None 64391 REN_20200308 71559082.18469487 8050.64292301468 0.08236272734122221 9.253789993328623e-06 11274510.732125895 1266.7374911030302 11241 871 409604 MKR_20210318 1922693751.6775463 32670.25505120268 2128.3471730017045 0.03613850397415319 90210641.84360713 1531.741475324381 None 22987 30513 BCD_20210617 511843485.8149305 13383.58644755593 2.7248116215335925 7.123864892237184e-05 15557584.881914437 406.7442015895845 33971 None 1272149 HBAR_20200707 190942329.10465476 20455.46137751912 0.04022886216548537 4.30570068708834e-06 8309300.16284443 889.3455468168312 40216 6568 154427 TVK_20210804 85625696.85647023 2228.5434355115717 0.19724889104032944 5.134942667518083e-06 10239544.697811278 266.56410937184586 51121 None 105979 ANKR_20201124 55488937.194824405 3030.715742554075 0.009539795083942018 5.196187758659092e-07 18908316.623529572 1029.9085306498575 28809 None 5272 LAZIO_20211125 0.0 0.0 6.074305758620947 0.0001062078356134252 5589143.132851094 97.72487896765358 None None 81859 XEM_20190704 827094689.4780277 69034.0817326501 0.09187540989578782 7.655460498177861e-06 74313529.87433189 6192.127938023933 217038 18470 188910 LEND_20200224 40523404.226631835 4073.1096467450498 0.035800703871199616 3.597813690211839e-06 830117.4845297829 83.42316567490973 43663 5752 199167 KMD_20190803 124577403.5310103 11839.389107824809 1.0818616535806307 0.00010278777781812591 3880768.0011241357 368.71213407279777 98298 8444 220245 CTSI_20201229 9335820.92738492 344.0084912823782 0.04595577406659242 1.6920422987032673e-06 2168432.7682097345 79.83936818012012 18544 169 590727 AST_20190329 8005081.713914617 1988.2542951018504 0.04804795649821265 1.1933863924509734e-05 3469888.692473749 861.8301902333164 31119 3596 404922 YFI_20210707 1276569888.7015078 37380.51974621779 35884.66920694653 1.0505683272758444 355533755.51721317 10408.692934293886 132506 6755 17976 CHZ_20210821 1883718345.1685429 38339.88620138627 0.3530052657670023 7.1771326087682385e-06 276080625.8683061 5613.1379747644105 None None 58032 MTH_20190131 5141984.667898099 1486.8207698295735 0.01715264054167856 4.9597390622351556e-06 855824.2360422577 247.4642247409309 18695 2018 835921 NEBL_20200621 9669326.390112236 1033.569398003805 0.5879486824981656 6.281412990329843e-05 161869.23893981357 17.29347425171792 38996 5955 1156866 LSK_20210422 745853134.3291997 13765.340625294255 5.170575224776838 9.559554301304819e-05 33930886.839278705 627.3270209418786 194043 32043 143089 REQ_20210428 103373676.7627359 1876.4533476406116 0.13400737557970827 2.4318296419290067e-06 1647967.6903938206 29.905642589480088 42770 27544 383830 UNI_20210718 8387277898.2564335 265356.39620771573 16.118714317230314 0.0005104250907786371 247664806.27993363 7842.705611636556 None 48911 1613 WING_20210314 36692127.59277103 598.0926620649572 35.43517463743474 0.0005775697698343 10931851.44777355 178.18190510293508 None None 327029 XTZ_20201231 1500487079.5317678 51961.24956984143 1.9895967819070646 6.900233862441372e-05 105406492.96575917 3655.662588006205 77769 31353 184453 COCOS_20200117 10550674.773938086 1212.016534999097 0.0006104024431967484 7.005220640778436e-08 3060215.117510953 351.20242956662094 14303 191 52674 RUNE_20210219 943110779.0848521 18247.62531426502 4.0215597717050215 7.77774042809279e-05 60898818.09819664 1177.789779174654 37378 2678 124938 FARM_20220105 108315732.81389597 2338.58151848343 166.78232894799305 0.0036314308914902602 41731927.96124659 908.6490955955717 61020 None 89050 AMB_20190523 6845020.929262281 893.8046110049688 0.04740125899145728 6.1813857797340066e-06 1432701.8686631043 186.83223074620247 19600 5687 582766 NBS_20210418 0.0 0.0 0.040162668930517884 6.681508398207526e-07 10167839.291721677 169.15335914750634 None None 497911 CND_20210821 32929754.766368505 670.1467383219748 0.017068547747300673 3.4735854189927414e-07 201811.99250171313 4.107034792357689 36225 6261 184499 AUDIO_20210620 202395841.2764995 5677.444366681613 0.894109654777017 2.5112889652391018e-05 6365078.7076413985 178.77619189074312 51380 5638 27098 MANA_20210318 1412049603.2433267 24005.098810802014 1.0699102762269361 1.8155839540215838e-05 1605686636.45877 27247.695036841415 None 21133 19988 SNGLS_20210314 25083471.024542358 408.8082405173383 0.028183675308474564 4.5933510170487445e-07 3873226.505000527 63.12551046404765 9294 2117 2953528 GRS_20200806 15756255.348856421 1345.0225856180236 0.20841544231903028 1.7784629717813265e-05 4194477.831525741 357.9256616650915 37754 106853 5311872 YFII_20210124 73192365.64449057 2286.087170685797 1848.4618171841607 0.05767915345423113 98722930.9882538 3080.537035164328 13690 None 182757 XVS_20220115 164651178.1568559 3820.663574717406 14.02412453827836 0.00032526033812422346 4719907.54155203 109.46841770336637 None None 24128 MITH_20220115 30262234.4494542 702.1182492896713 0.049017526728128334 1.1365236637039287e-06 7773841.175667442 180.2448031094158 None 2946 243590 TOMO_20210408 235795549.3713655 4186.139922690166 2.8898269951639683 5.139852979263998e-05 38307757.9780949 681.3426696550856 None 2014 79126 HARD_20210523 40314033.98604923 1072.6364577003287 0.6324314530296237 1.6826013428883186e-05 11833779.28699849 314.8409653625332 31506 None None SNX_20201231 996709227.3942112 34515.630037518065 7.344198931986216 0.0002546690407349316 117819847.28852822 4085.546669742895 50295 2811 45851 GRT_20210711 1988696116.8206658 58995.698698751425 0.6861796609504136 2.035806652224599e-05 94130205.24558885 2792.7219199241863 122190 16072 34179 OCEAN_20201226 136204197.92848018 5515.260717250321 0.32478100041578944 1.3171349166575507e-05 23894037.029305156 969.0120552284702 34472 1308 67754 KMD_20210204 95076641.40689392 2537.8178527570526 0.7614918737069425 2.0301053478463107e-05 3163613.074734134 84.3405956556004 97034 8500 251504 KMD_20190316 126673167.50778429 32280.24823756893 1.1282108359938918 0.00028748140437478953 9578492.712521246 2440.7127187034066 95865 8305 295665 ATOM_20210219 5509977795.214844 106610.51268950006 23.11905026330649 0.00044712495175918375 1404598979.013977 27165.097336606686 66552 16958 73647 LTC_20190411 5410998773.638332 1019533.4604662627 88.29742062471495 0.016636012746188755 3107093025.5850415 585403.7276685602 442069 201815 239095 ICX_20210813 733967675.0770216 16509.30284554217 1.1259363361297052 2.5323361351401758e-05 58600658.79706902 1317.9836288518447 142868 32801 233721 UMA_20210519 1499549288.5205743 35144.10793753398 24.974518308835005 0.0005837502191517597 87392804.55107427 2042.704815288838 38308 None 139456 EVX_20190131 6606906.053390662 1910.4085998952075 0.34260415912899117 9.906511863052671e-05 3671213.0452962937 1061.5433180228408 14065 2336 1283561 ZEC_20190909 355388637.8399865 34194.487711081594 48.208431195743515 0.004638478647242496 153830721.0179777 14801.156084805514 112 15327 175119 EOS_20200501 2655961777.711552 306924.8919893568 2.824261921493174 0.00032765184150011556 4559975140.879664 529017.5959721383 None 71057 91670 FUN_20191024 18637801.2741877 2497.431536820554 0.003103186297781949 4.1565219290177637e-07 196821.76394617645 26.363031395665345 35613 17306 389622 STEEM_20200207 69521325.23164979 7138.167115598317 0.20680314628107677 2.1245990048623434e-05 5071703.464221014 521.0431430475219 10513 3813 192787 GO_20191203 7712201.633688456 1054.8565508201382 0.009000128444356464 1.2318744934743079e-06 1067826.9332368425 146.1566655000573 10263 679 1019965 GRS_20190421 33131456.454052206 6239.032628598254 0.45844604399478533 8.63154310837751e-05 3039457.9889299255 572.2639119959225 38949 107057 6885878 GLM_20210204 131487000.6453386 3508.557483235256 0.13159845522895947 3.5084014670367062e-06 7227227.336970422 192.67714767258903 146177 20338 190516 TNB_20190314 8546273.192855228 2210.396967385296 0.0032685412502622625 8.454988720103099e-07 666965.4932319757 172.5291281400189 15102 1506 1537568 XEM_20201106 911854113.993219 58635.676181880306 0.10152741260672031 6.516259749703644e-06 20249952.15563422 1299.6878850476044 211860 17802 137047 BCD_20200721 173542337.4155227 18941.974387211707 0.9209610082034495 0.00010051597895036791 39440496.302993834 4304.634029965377 None None 1655072 SUSHI_20210106 491611161.75281954 14450.392249522969 3.872301962083987 0.0001136369256875802 590756791.6348475 17336.40255531974 19406 None None POE_20200807 5923941.105063138 503.50879358482905 0.0022371390395977677 1.9013248900333045e-07 139289.08701499508 11.838057597852362 None 10209 647975 FTM_20190804 45559996.50117293 4222.435492473327 0.021957702176105477 2.0346405948270066e-06 8933447.405403988 827.7894743725317 None 2051 402967 TCT_20200625 4156097.1299188095 446.34387324994685 0.007168752012230602 7.712551621898809e-07 942188.4412496059 101.36599757246849 None None 906216 ADX_20190227 10638217.78765426 2792.762075273398 0.12221603498087874 3.20843504333019e-05 1791709.265433567 470.3624033929624 54234 3941 833344 AERGO_20210610 45397911.22614017 1209.4523693908122 0.1709616902082846 4.564619971299693e-06 4112893.1429055408 109.8128718606833 None None 377537 UNI_20210828 14213954708.107561 289816.2532439916 27.321717596132913 0.000556966048445728 360776831.10807395 7354.605188565328 609388 51165 2131 POLS_20210930 109717718.66884118 2639.5377651386516 1.459044137451324 3.508547658751893e-05 17662921.568309337 424.7383648274141 455274 None 28089 HOT_20191012 140822343.7233192 17039.150052906378 0.0007932436271002361 9.593795179257506e-08 8263530.606177132 999.4233471877762 24418 6683 547189 LRC_20190819 35064080.10121531 3397.6871270191714 0.03643332719563989 3.531995308373735e-06 3328476.993866915 322.67613285055006 34552 2448 491659 BCD_20200301 112289406.3263059 13105.226569106875 0.5925851453540198 6.928463714448695e-05 5415395.2973634135 633.164197775549 29232 None 1280057 GO_20200117 18157711.107489005 2084.3964164868553 0.0204341962261501 2.3451094401174256e-06 4034187.366480191 462.97934949984455 10574 676 724197 XTZ_20200308 2107869843.61701 237142.6088913817 3.0023224940738666 0.0003375328407667479 201078329.20496 22606.012447745947 56866 22272 104382 XMR_20190124 745159300.2263999 209907.96620816007 44.52796330558295 0.012537473928867705 233445056.39418224 65729.73680110236 313121 153065 85084 GVT_20190522 14070292.791754436 1771.616329089119 3.1713819706414212 0.00039931451094320816 1682190.9201349455 211.80773896211977 21433 5778 174958 MDT_20211007 29103280.576621816 524.2964292816489 0.0479780073714227 8.647713236843539e-07 57814466.97597586 1042.0668942724678 35103 339 876365 AAVE_20201115 788489212.0149285 49000.807412546776 67.00948011148802 0.00416411410857174 241572099.49096745 15011.813045766008 76215 1561 15035 POA_20200421 1917068.213665577 280.0120564047752 0.008697989976331007 1.2703960630950506e-06 164690.38545067125 24.054065120272 17271 None 511690 MFT_20191017 8087591.332363464 1010.0794790176624 0.0009049821990998428 1.1303256290101849e-07 1365817.8698645015 170.59108393552177 18641 2301 1251152 RIF_20211225 175196245.70830885 3445.6208977224683 0.2169439212311688 4.267159379055881e-06 2673980.4880677704 52.59562404107346 None 3565 352170 AUTO_20211028 35848382.85721251 612.4996239219265 1022.9338404415654 0.017466905562359428 7123059.938532085 121.62840874211257 77701 None 20001 GAS_20200423 15588636.571732234 2191.1857158207968 1.1186585245674385 0.0001572420120665473 7839361.977953707 1101.9243349601068 321028 99291 240659 WTC_20191022 20108869.652906023 2448.7342102950684 0.690062078227596 8.396708301304673e-05 1474551.3169377449 179.42410797927198 55500 19749 556908 ONT_20190623 1036181756.3750986 96518.01042830857 1.5924497469114396 0.00014845923479212198 294074290.7392388 27415.6495423848 80518 16245 232873 YFI_20200901 1052672981.9315459 90134.02349053459 35059.68029334105 3.0029340509880074 723016982.8053323 61927.89834199137 None None 26862 BQX_20200127 3769390.961564794 439.2362602563995 0.026809265808185677 3.1196323684922768e-06 158255.08834805893 18.41518897315229 9544 4 278278 HOT_20190625 326449300.8330803 29558.702730640238 0.001838357630715708 1.6645880957535625e-07 21482400.464772787 1945.179081828043 22994 6464 301392 NAS_20190426 45202578.8703796 8697.41859275132 0.9941235876357384 0.00019106276514337862 4648303.979511764 893.3676080100294 24147 5174 536647 ADA_20210202 12802876639.677765 383696.6718764686 0.4014135429277523 1.201791273640071e-05 3203513341.743772 95909.92747821005 188437 122966 26016 POE_20190629 12826923.340724027 1035.4713570741762 0.005092927452510108 4.113729938255261e-07 596271.4162412978 48.162861128303554 None 10858 945513 LTC_20210207 10297390883.071535 261766.38108048256 155.6337388258637 0.003959330121826136 6575011180.850477 167268.61422260417 141357 243843 113602 GRT_20210110 432094381.74239373 10679.633579694526 0.35031799216508624 8.696352993779961e-06 185079997.35675043 4594.457107825859 None 2616 38944 ALPHA_20210125 186555958.1638146 5791.418864964873 1.083404821205676 3.357960587993035e-05 132910146.02958167 4119.485379574532 None None 81517 HARD_20210620 63213868.030980445 1776.7779064191789 0.9549972542138266 2.6823041821854977e-05 73934384.38566373 2076.5976820345163 33287 None None HC_20190902 95523709.47606549 9821.02220564019 2.1583909479607537 0.00022190936202793344 45797840.364386156 4708.586063669345 12925 853 399646 CTXC_20210508 3339836.3949724296 58.28649632972897 0.33710898274963286 5.881449929044689e-06 6093398.128541748 106.30988144676468 19673 20515 375335 CAKE_20210314 1545353557.5811875 25189.725527591938 11.403235572851743 0.0001858848761192189 202844477.28096318 3306.5808638214457 219455 None 6578 BAND_20210106 167578335.52417248 4918.125550560642 7.4186758245804105 0.0002177091357112008 161872876.47477663 4750.33616048357 43045 2953 375522 AXS_20210727 2230300180.047129 59538.397145221265 40.364712215506486 0.0010785375348221125 2547915988.5746593 68079.83702644806 None None 3082 LTO_20200730 14565803.963608196 1311.771384870062 0.063238929258174 5.701709350277808e-06 1684462.3626350162 151.8734569969922 16444 520 1277084 GRS_20200520 11403955.05038048 1169.978504730896 0.15180406345213535 1.5559202265463026e-05 1205387.4498295193 123.54654225749148 37310 106882 None ZEC_20190411 453380028.3694097 85369.42313236363 72.03421515333169 0.013573019463112564 282803771.1935277 53287.19251651134 74722 15101 156086 MKR_20200907 492278089.9242508 47810.07297951563 547.0189271767254 0.05317930841103829 66793029.56231502 6493.38979390452 57225 16248 27612 DNT_20210823 148614781.62497395 3012.4566678693627 0.19747810655382703 4.007773208333274e-06 10281759.41168763 208.6659661862734 None 10255 337612 HIVE_20201208 50707772.07039027 2640.7852512330014 0.13621588201150003 7.0952459911231534e-06 3843284.2534446917 200.18992491417407 9675 96 146478 NU_20210825 167964801.19836116 3495.2782638208687 0.30273361538353327 6.303908361703563e-06 29924605.11396317 623.1285817387643 None 7227 175162 MTH_20190826 6395006.459587947 632.2387730213875 0.018723819864995238 1.8511200844792944e-06 6189443.953728317 611.9159496895926 19456 1992 1114327 VIBE_20200625 2527187.6556440145 271.3408878320443 0.013570602216195169 1.4600026609107486e-06 264432.989316613 28.44920674 18867 None 1162638 FTM_20210506 1986565329.929618 34690.243420771025 0.7816404750884984 1.3638458399320866e-05 504465030.1648908 8802.161028108265 75093 7063 52712 TROY_20210731 16217399.603937771 388.7062802762502 0.008539579266869839 2.044952550080049e-07 6545719.136462067 156.7487650374884 58167 None 539408 STORJ_20200410 14587035.327659084 2001.479803587343 0.10171733225418646 1.3950222890132238e-05 1524027.245599755 209.01570357372262 81979 8045 134239 CELR_20190729 28291095.25666756 2966.6965181434325 0.009054910511237382 9.498514729089671e-07 6272700.860656332 658.0003352012768 17698 None 509628 PNT_20210727 22033762.097871516 588.53388976825 0.7014383286717264 1.8735803090366953e-05 10488175.730188424 280.1449353788309 None 320 305973 LTC_20211221 10644668240.0037 225624.55258136237 153.17553482768892 0.003249157099496425 1409784732.8236694 29904.332167460976 205714 353424 134071 ASR_20210707 6179665.030798978 180.91508166644212 5.016800293363658 0.0001468223778107413 2611510.298852022 76.4288250146017 1980453 None 120026 COTI_20210314 259415865.4649097 4223.812163310008 0.3883324841624312 6.32920228349548e-06 185923291.08662367 3030.2541417272873 56045 2636 166119 NAS_20210902 23650506.223094955 486.1938743263347 0.5199030251608927 1.068544841989822e-05 5977525.240628795 122.8547143337207 25522 4979 605411 ACM_20210427 19997644.27916383 371.2009337618756 9.996923709058738 0.00018551361294430444 4416866.262488113 81.96409636531337 None None 44251 POE_20190228 10281123.212250574 2695.0870746804026 0.004519930589322382 1.184851718849183e-06 701785.7904688307 183.96567904499284 None 10988 525108 CMT_20210114 7540413.813955321 202.85023272271863 0.009476468643801882 2.534949007747217e-07 1865427.5627815824 49.90006221769484 280607 1628 1272511 MTL_20190804 17018604.64289212 1577.259460969199 0.35780265519508175 3.315423221836539e-05 626995.2829395152 58.09780030576514 33326 None 712205 ZEC_20191127 224344864.3564026 31291.697889778792 28.209515585100032 0.003941621243859464 135814518.99920547 18976.90840159547 159 15339 216528 NCASH_20190213 5044111.623584274 1388.1917377669636 0.0017384787406958917 4.784318677501635e-07 319864.0460390317 88.02704881586355 60229 59641 643651 ARDR_20210724 140677870.7526597 4207.925710234269 0.14131015553134932 4.226115095594569e-06 7222361.580608035 215.9967285215996 72171 6978 None GVT_20201018 6025133.372508582 530.4138753931185 1.3579300240443906 0.00011947652095924953 418185.72259303095 36.79377756258512 None 5479 184262 NAV_20220115 17627178.318499286 408.7049392438456 0.24272254576350163 5.6277812323072445e-06 161018.43903225282 3.733384331441794 58535 17328 732719 OCEAN_20210624 176309024.59780538 5229.488973537252 0.4070946284990587 1.2083963789901324e-05 19896210.778914865 590.5877252546642 116570 3213 84543 NEBL_20210519 37970836.083816715 890.8038539225118 2.125459901513634 4.9645870120056224e-05 888002.64594796 20.741705828279017 40199 6074 583020 ONT_20200903 516383867.24510825 45254.84079450605 0.8093230350554541 7.094645239668146e-05 214732907.14714524 18823.80374095259 90391 16621 197799 TNB_20190618 15660772.938398607 1680.0521414817215 0.0056129783808573095 6.024229976508592e-07 5438370.622380531 583.6829060030071 15695 1491 506098 GO_20200701 11285816.222821914 1233.6627744682692 0.011214508580371386 1.2261429161652962e-06 897447.502480204 98.12279244427648 11481 679 901828 TROY_20200520 4969175.706373365 509.4836808029121 0.0025818654900328824 2.6447666249034045e-07 632133.7251824533 64.75341900236333 8611 None 549001 FRONT_20210304 78132278.07682215 1536.6587864261937 2.8800735222801284 5.6841826625060055e-05 31793825.474719368 627.4906183473597 None None 145212 ARDR_20200329 31543539.494395465 5045.297591586149 0.03157513057040681 5.050350492505653e-06 1759132.7084120472 281.36817108329444 64236 6374 1001396 AION_20200605 50052986.97267141 5128.21088835575 0.11749167514634687 1.2018252586892355e-05 5124776.16091295 524.2146243673789 67498 72559 450836 BNT_20210823 998586444.0115978 20241.32305058099 4.258915331382889 8.642077590883706e-05 60656093.51092232 1230.8172989930747 None 7735 39587 ARDR_20210304 185016690.5872985 3640.572833633524 0.1848023037087431 3.6473028990620166e-06 21367223.32104363 421.70868003124855 66312 6442 None OAX_20210519 16256294.929386325 381.38536701309687 0.29000713831606373 6.7788965382281944e-06 2142409.7403098876 50.07867756767079 13890 None 1446066 EVX_20210310 15338514.493543588 280.65674967846246 0.7043630601651921 1.2876738884706929e-05 2462388.6162544773 45.01589739352237 17322 2813 744332 WTC_20200330 6189692.696612187 1046.7552790983107 0.21036389962066793 3.563867868705765e-05 7811095.432023749 1323.3122260892337 54715 19676 966319 TRB_20210301 53838385.80133256 1186.772298779713 31.488316070575856 0.0006974886648619765 50532719.708107695 1119.3357917919282 None None 323814 VIB_20210617 8445880.153548924 220.78589173874647 0.046262603751648715 1.2093624391736253e-06 1003516.839666641 26.233187813770765 32222 1276 3737754 IOST_20210111 188575932.84312275 4891.718569679301 0.01021755767341874 2.6636272857629205e-07 330611230.46046466 8618.74356457138 194068 52147 596701 VET_20190821 252456935.28014275 23461.358992997877 0.004550229515011817 4.2333345920730556e-07 29945040.327329833 2785.9556240072175 113576 57355 133902 FUN_20190716 19094085.96111006 1746.0496731145338 0.003171824526649687 2.903879700839962e-07 159452.07993564807 14.598211669386558 None 17547 408436 ATA_20210729 64573904.23518564 1614.8710154357905 0.375203317070546 9.374106988039373e-06 11748440.229380941 293.52388596312926 None None 91785 YFI_20211002 1127249386.0192554 23406.361230658633 31603.2254063131 0.6561897205193914 205190946.88788795 4260.4572273998265 None 7258 31064 FTT_20210310 3324501599.952699 60800.8202408542 37.58915434117174 0.0006865175099338253 134047446.4508392 2448.20403021467 None None 3587 CHZ_20201226 101904300.49332437 4126.377459039405 0.019080013799472533 7.734550883025082e-07 50856443.5137217 2061.590490555335 60131 None 331947 NMR_20210104 126210677.02806708 3781.120519731919 24.000194505480604 0.0007290883921798506 9714717.61420993 295.1179351570741 None 1981 2602153 ONG_20200412 0.0 0.0 0.08329022064549674 1.2102958937716053e-05 12688227.323070975 1843.7349918563061 84086 16509 252464 NXS_20191030 20366063.841834325 2164.5690780057917 0.3410950413122033 3.6252649742209794e-05 318701.0442773874 33.87254557034002 22149 3539 388787 GXS_20190512 64888027.98791136 8865.84172738275 1.0766977855662603 0.0001478335041380833 8487568.564920375 1165.3660102073318 None None 893298 QSP_20201201 20914585.448207647 1062.856441934637 0.029332689412818556 1.4941797096944893e-06 306993.88578601123 15.637980844036385 57941 8196 248691 VIB_20210707 6114087.8810824985 178.97711693025815 0.03349788179112771 9.803536874693081e-07 999213.9811667413 29.243135942618203 32268 1279 5353041 MTL_20201111 19913984.982074637 1301.9438071224681 0.30814934701461255 2.017186175156271e-05 2782117.0981890596 182.12104625575367 40671 None 352724 BCD_20200704 133823052.03675771 14758.084233366919 0.710503743734587 7.838629972576816e-05 15967000.933971766 1761.5587982031402 28205 None 1537818 MDA_20200707 8586701.25705351 919.8590458061857 0.4375040629480637 4.686836048784525e-05 308907.19254140405 33.092203898086844 None 375 1869072 REP_20190421 238031837.0283238 44827.31537936102 21.6418747739121 0.0040746948851249085 11903240.059869554 2241.1215245931717 124717 9894 258583 YFII_20211125 148859005.32269832 2602.0917046221234 3745.21009295248 0.06548413492776563 21101299.301023073 368.95135287057826 18975 None 682291 NXS_20210707 33531863.147561878 981.2127896935475 0.5125087078113628 1.5006080880884514e-05 412047.6587474647 12.064615487897997 25982 3960 508939 OGN_20200721 27759536.8708426 3029.9259779436798 0.35860777486894374 3.9147070137539714e-05 21793067.07506549 2379.019042773073 64898 2332 168509 AMB_20210104 1992976.075269395 59.5621122048843 0.013555285973396015 4.117883983658771e-07 378794.9089649421 11.507197205426651 20231 5483 666960 GVT_20210805 16502794.224465938 414.01728491840174 3.7090455016365524 9.32545827712926e-05 418410.197655821 10.5198678184 25818 5694 545801 SNGLS_20210106 4832473.661041765 142.2275484161285 0.005453396881640189 1.5981470841949567e-07 163862.1457394112 4.802067703985007 8989 2113 2388583 EGLD_20210702 1446280000.1541035 43016.20488220326 80.49466132828464 0.0023935121769490743 41977725.8038707 1248.209461524733 260465 9464 31347 SUSD_20210108 161578008.00064525 4124.875462633732 0.9827702417932141 2.4903955632144627e-05 28670967.933726005 726.538597718745 53094 2992 45504 HIVE_20200806 81523298.4345604 6959.183842912307 0.22338673994128572 1.906225422868775e-05 5133587.939563839 438.06431140457056 8321 90 144109 COMP_20210131 2510465.8845118065 73.34737178117835 2.7180477975422094e-05 7.959843164898775e-10 52.4600904073923 0.0015363015044726003 None None 2426495 STEEM_20200927 60275403.65217043 5614.8735953199275 0.16444047498510975 1.531822974299588e-05 3248886.4419479724 302.64561648322865 11750 3858 165797 SNM_20210624 63788952.10181701 1907.94248768 0.145973059509042 4.33e-06 269575.251407345 7.99641278 32388 9712 None NEBL_20210602 26817246.40915426 730.8735130015477 1.4946140771947631 4.075099375812845e-05 1354747.5414722585 36.9375007560442 None 6096 641234 MANA_20190901 42805256.26441388 4459.224045313017 0.032058891186056 3.3404605148376908e-06 10163162.16308265 1058.977421104208 45686 6360 122199 STPT_20220112 126473311.89194056 2953.681521080469 0.09531218438327135 2.2272896948754402e-06 12194541.884009015 284.96647776700536 None None 443822 LTO_20200321 6233127.5869920375 1007.9873116029927 0.02905977602171565 4.6866886823166546e-06 1560744.0701928786 251.712936957934 14510 415 882624 NAV_20190821 6728735.714023976 626.2660793965323 0.10195742756149069 9.489520934996735e-06 335738.03696415795 31.24826907313454 51691 14206 487370 CELO_20220112 1753213245.929081 40920.573267874235 4.531334452323385 0.00010590736264677596 71750035.67332916 1676.957886893157 112279 None 35618 LTO_20200322 6235953.739427525 1012.5934366088499 0.029412458026201228 4.7758796848688854e-06 1117559.914804172 181.4649999324246 14474 415 882624 QNT_20211011 3921668645.0223446 71670.67155692096 293.2212542908886 0.005359552825925389 57580551.793775655 1052.4680751093256 53625 9058 93840 XEM_20190712 690371005.0767496 61007.58023649273 0.0768206376789309 6.775471667940837e-06 81642209.58849868 7200.727495740034 217447 18443 188910 QKC_20190305 48367972.47540848 13019.754404868427 0.030618132976381687 8.241829278470828e-06 4086206.891808378 1099.9305419691684 37155 8995 173960 PLA_20220105 451974454.15216404 9769.767199163047 1.488023379182689 3.234656440231124e-05 43811269.39420304 952.366788608507 20207 None 78767 ONT_20190706 882987441.8763729 80338.77695210149 1.356388832051165 0.00012343779390375286 150764742.3866106 13720.304059513835 80895 16269 247326 AMB_20200421 1187943.3377258442 173.4793373085119 0.008200136577667397 1.1976814474905461e-06 88536.19102136606 12.931266743356208 18941 5477 839960 FTT_20210220 3079168717.7787743 55122.96771270285 34.66531119427038 0.0006204001222550194 249461025.68312448 4464.568339350528 61710 None 4654 SAND_20211104 2867528676.8469152 45590.59551554893 3.2109294838179627 5.0923501121578824e-05 5490193211.219503 87071.31737343101 252066 None 11780 AVA_20210618 160061455.25151533 4212.851774018025 3.0907445911826716 8.097489857630996e-05 24808368.83256823 649.9583161260874 None 10297 44540 AUCTION_20210408 109325722.85035694 1940.9749168469564 47.01426666264772 0.0008366566099028267 28672565.210747037 510.2513111302104 25657 None 32825 FTT_20200913 372480942.7650879 35706.363143834606 4.001422028706298 0.0003832242710744186 6635495.015483481 635.4947621830173 None None 9100 UNI_20211207 7864089526.276569 155803.6965702229 17.36494075887961 0.00034381136057266945 312164904.99461937 6180.605059326611 746927 58464 2643 XMR_20190312 821801192.6044998 212543.48020388553 48.73689575961509 0.012620610848798732 342927167.1221184 88802.33872661824 314627 157494 112805 RVN_20200801 138353460.44514087 12207.327973416875 0.020565839217087267 1.814335535466052e-06 11705844.284319589 1032.6993726580918 32899 8535 216731 REQ_20210422 106421649.9574115 1963.6000466969404 0.1380056667570957 2.5500755910581463e-06 1498740.8921146025 27.69380892908625 42733 27542 383830 XVG_20190608 151891226.26901126 18919.40751346884 0.009328150983860226 1.1619044374442766e-06 2969363.017296657 369.8606585752502 303956 53059 390528 ZIL_20191012 54718202.513535574 6620.7651328775655 0.0059214243972141745 7.161599651799361e-07 10605140.366047055 1282.6266867225 66297 10585 177245 PHA_20210806 138200319.4109679 3373.0896413511114 0.7601554647286953 1.8553554725896986e-05 17466665.46409934 426.31902104757523 107166 None 139541 AXS_20210813 3639154230.9787126 81861.57219267957 65.97253745715219 0.0014839410902449323 3307595013.811366 74398.77773492895 368700 None 1596 SC_20190405 130301135.44001392 26587.879669184003 0.0032641360809566263 6.668608602365321e-07 5838980.676860041 1192.8999222159316 110043 31051 238121 FET_20210710 197144695.47357777 5812.625418613235 0.28703780428109515 8.446603408099003e-06 20077578.76816846 590.8188493649137 67842 2972 137103 ALGO_20200117 132077567.27799979 15172.507813321676 0.24022028241092105 2.7587886021729382e-05 59434859.95978291 6825.743962298306 13896 735 452232 MITH_20200927 3826610.0037800344 356.37698877592317 0.0063094425706740915 5.874118288330395e-07 1228056.8855969731 114.33262653541424 None 2107 377846 ALICE_20210722 90804466.0849111 2821.6834230543636 5.242549008776292 0.00016232629208199937 77110868.00401396 2387.6021495195896 83874 None 50440 UNI_20210506 21999590396.306828 384250.59900793625 42.47966845388079 0.0007409955559332691 1720124312.493284 30005.047534542377 None 39334 1434 XEM_20210203 2477309458.876414 69754.43890396491 0.2752566065724078 7.750493212412823e-06 219585917.3007708 6182.954817229331 225378 18146 60114 CVC_20201130 53834560.96840138 2967.7685373929367 0.08058017959403072 4.4371328685937104e-06 7659366.644990031 421.7616250586418 85889 8000 225858 TOMO_20200319 15960992.171998799 2963.8812335390776 0.22785803009170955 4.2261424845736994e-05 9045871.372290386 1677.761424560667 22136 1508 236393 FTT_20210429 4644729119.113451 84852.5968287207 52.886582684167735 0.0009658655964422443 120865514.19258446 2207.3621707054763 104599 None 2918 GRS_20200718 13674759.963816203 1494.0050313103447 0.1812879336489121 1.980531157725539e-05 312496.73628490436 34.139587254515995 37631 106867 None GO_20200329 6485472.415635103 1038.745888908048 0.006894243373311887 1.1042167019159207e-06 974100.1162664014 156.0167750798288 10692 679 690987 NPXS_20190410 146717617.02000225 28353.01279957972 0.0007491845848987465 1.44928861473368e-07 7128568.2561289845 1379.0129990936691 58712 4229 151112 DOCK_20200117 4115265.3033712935 472.7441325283481 0.007388660812751011 8.479520324677148e-07 2124953.7566706403 243.86812475668262 43531 15078 305470 EOS_20191102 3452389029.5162325 373747.3568633918 3.3459109683855126 0.0003622202973196064 2470472441.796337 267447.4218957337 None 68906 87264 BAT_20200323 179698174.56056216 30800.484911737007 0.1244218241784132 2.1338393568320076e-05 58504406.49418975 10033.529563622918 None 35979 19141 APPC_20190625 9645550.74654948 873.6199010663579 0.09059154491147679 8.202073005325242e-06 520947.1771375796 47.166065916811775 25500 3370 1293635 SKL_20201231 43722206.541533746 1514.9756272271368 0.07747912326356521 2.686682942720799e-06 5082533.854712847 176.24305023182126 10203 85 242743 OGN_20200422 6084568.3956499295 888.4827441486933 0.21272087050144767 3.107474308464301e-05 12133710.222629925 1772.5196730480916 65458 2209 171904 ATOM_20200501 512715438.3932127 59249.77229367455 2.7282005836077876 0.00031688015761280645 224940419.89067757 26126.801722983586 None 8385 88245 DOCK_20190916 4411054.25952885 428.14862581559686 0.008027826320750716 7.790091871128013e-07 615143.2108358601 59.69264823188025 188 15173 179200 LTO_20200404 7697659.084612771 1144.6858963645504 0.03640538866339693 5.4116912312447504e-06 2224373.130459869 330.6549114590031 14525 421 900520 COS_20200421 9804963.172870567 1432.2809319642306 0.004935800420890252 7.210073331130971e-07 4624028.363023676 675.4645800005194 10786 None 147635 EOS_20200312 2858487415.2432737 360260.5522584415 3.0739085323634905 0.0003872307019754982 2792004752.073655 351718.3249539066 None 70359 94982 SCRT_20210723 65459166.67957758 2022.1180700922723 0.9391509310444867 2.9008843684502595e-05 3088763.144558583 95.40686622042895 85921 None 61178 AXS_20210117 32432749.084330603 893.8742090026592 0.585160029426787 1.6169341531328145e-05 9101595.055442313 251.49837912793944 None None 18871 HIVE_20220115 491173895.6997528 11397.490337811789 1.3303864058211017 3.0853561104230276e-05 13560101.283375164 314.4781183087544 32213 201 69095 SRM_20210124 87714818.6203365 2739.680836399868 1.7582152142308551 5.486256501845083e-05 83826588.08582725 2615.687546046765 30925 None 88356 ZEC_20210511 3179602619.258355 56947.96428630355 286.19805516931694 0.005122075979721035 2511116869.826612 44941.36549461115 75374 19267 85283 REN_20200306 62546687.72421764 6908.426658860477 0.07155582507419159 7.903506764721897e-06 5058361.54606509 558.7077593792419 11148 873 409604 TRX_20200711 1200410234.0634053 129280.52172717906 0.01814188937427589 1.9540725435775605e-06 577405929.4546032 62192.69944650715 513637 73531 58804 DCR_20190812 285250823.9917551 24736.96334817917 27.95403475006634 0.002420619246782214 16088315.22925487 1393.1328997915525 40578 9579 266485 DOT_20210731 16020063316.840374 383752.9792315423 15.791851834578114 0.00037805389037105775 899105792.4212883 21524.41944368721 512408 27885 22875 YFI_20210218 1490423307.8056452 28564.6907514438 43814.11738438734 0.840308614139892 585493997.6955689 11229.158069634095 85731 3353 19652 NULS_20200806 45153063.03565477 3854.4621325394983 0.46807797599684653 3.994248440908661e-05 23848383.59964771 2035.0534290407693 30221 5180 381223 ADA_20200315 807435012.826672 156134.08326334239 0.026047698238738294 5.014494300657505e-06 97926867.78153749 18852.096483575762 155680 77129 41962 LUNA_20210202 867423191.829558 25982.310859573972 1.7884724149746984 5.3545042994461876e-05 223927612.6225356 6704.164707897101 None None 115872 ACM_20210511 18534346.682284374 332.0119557595412 9.273563948220003 0.0001659686300715193 2498142.082223168 44.70915620204183 None None 39485 QLC_20200418 2171106.478910223 306.09029328807384 0.00898928848425915 1.2769004852081426e-06 77488.25264736681 11.006965409622 24440 5657 940522 FTM_20200506 9319127.201155486 1039.2647447819334 0.004406602256984849 4.897232079635382e-07 1181950.0951703896 131.3548077415335 21683 2342 305591 ENJ_20201224 115214866.00085056 4927.918872042908 0.12369562263707388 5.305297859928014e-06 13573426.629220285 582.163456658241 69505 16020 75174 DUSK_20200701 8364517.841126496 914.5759499321433 0.029979849029550906 3.27982246910379e-06 546060.5214843597 59.739512566910506 17354 13330 912304 CRV_20201130 88535440.4501523 4880.570779133435 0.6566721629181671 3.6159532687248685e-05 52212457.07396213 2875.0694103699625 None None 14362 BAT_20200530 306531457.6279552 32504.084658476706 0.2096021095997418 2.2239572135597157e-05 61986099.32846602 6576.958266556534 117833 39218 19122 GRT_20211207 3492498530.923093 69193.53849746016 0.7043776463047157 1.3956627751583213e-05 172147078.64617574 3410.943984085245 179956 20053 24532 ENG_20200511 13480987.604680462 1539.7053185597572 0.16473327417422776 1.8766732366604945e-05 1420130.754351264 161.78403498680962 60572 3573 556328 XMR_20201226 2838831565.166711 114955.21410276771 159.3662501330748 0.006460301253688012 393376525.8153011 15946.480894003278 330035 186522 70346 LINK_20190426 162824846.044075 31373.3884638064 0.44737913900338044 8.614135109775402e-05 7297554.896672101 1405.1196931303843 11518 6627 340281 REQ_20210617 51935582.51911036 1358.001767360605 0.06731694762614263 1.7597977543297067e-06 768241.3116058187 20.08334279289569 43069 27750 366720 LOOM_20190714 35825080.7970406 3147.6323669828053 0.051763526166228445 4.545433103104988e-06 1797888.348240252 157.87528051189224 20600 None 438184 KNC_20190826 31828154.045041054 3152.7460721030843 0.18556534486315626 1.837786412827848e-05 4586735.894926371 454.25728134429903 97738 6703 203045 POA_20210219 15884483.966874884 307.31757676613785 0.055806222508213175 1.0794146843477067e-06 905137.2311277734 17.507338334633776 18439 None 431187 KEY_20190103 7024057.137219139 1815.954069277052 0.002861421136950731 7.397732188178434e-07 345250.8299540196 89.25890512110753 23589 2812 599197 1INCH_20210428 810916651.3846908 14719.779391455178 5.130118126674353 9.309616931960186e-05 258069213.95827234 4683.177783746371 None None 71599 DASH_20211225 1566513756.303384 30806.107536413514 149.28240276582406 0.0029356970115285274 330533187.04745746 6500.064786258696 421075 43653 69246 ONT_20211225 647496853.4699004 12734.454899450064 0.7403179957801465 1.4558643802122136e-05 52591792.58672127 1034.2382321509087 181449 21043 97967 ARK_20200430 27737332.235177573 3163.708098700119 0.18605714526260983 2.122159738714233e-05 1876549.8065703902 214.03845800035273 62338 22016 88173 IRIS_20211225 108076185.47463287 2126.2791735571323 0.09219269646615771 1.813755251855444e-06 6065984.381253271 119.3392909731188 33245 None 524776 ADX_20200707 9367733.446963524 1003.5279080906842 0.10182691687394047 1.090307626248484e-05 187063.83616177415 20.02978519078348 51461 3742 19706 FLOW_20220112 2448208576.9462934 57141.99267008127 7.7246593865823625 0.00018054246747514533 56600432.54772292 1322.877973115076 137055 None 154515 LRC_20211120 3333445894.485668 57343.64138265611 2.6712700629458603 4.579500801882925e-05 1585586767.1951003 27182.55998353575 144104 65969 76303 XRP_20190622 18874628120.21579 1864572.6624884629 0.44419543376328835 4.3885162572577414e-05 2197641115.2434354 217120.2814976108 928328 202294 41010 APPC_20190730 5749944.132914414 604.497134464744 0.05304561004454599 5.573733509504419e-06 741403.7578409379 77.90252512281958 25373 3341 1368976 SUSHI_20210819 2477270882.6319656 54988.807708892055 12.718427100295626 0.0002826807655143018 625089387.4693229 13893.286109300967 None None 5258 TOMO_20210112 90722329.05710989 2561.1128809157476 1.2189346764873448 3.429105236206655e-05 35233555.29236254 991.1898584375981 36309 1713 198557 OAX_20200324 1669051.582365941 259.07879596384345 0.0319715025303696 4.957953084234636e-06 77364.14599596667 11.997177983284713 12021 None None NAV_20200905 9531720.137243655 908.5375374595052 0.13709457329927136 1.3075236354359984e-05 430066.39337647986 41.01708482063248 48550 13778 892932 SUSHI_20210219 2005423139.3768778 38799.27290607282 15.799204530664982 0.0003055583375247496 575710081.4771633 11134.29572045651 43753 None None TRX_20190730 1453132601.8727875 153074.29113397334 0.022042089713845067 2.3173060053507973e-06 617387330.0739223 64906.52139525409 450113 71308 80727 SUB_20190130 15736551.003997289 4607.113626308217 0.04161723721805147 1.2191203264307313e-05 145868.84868651108 42.730294059414376 68774 13861 477881 PIVX_20210104 21737807.957174174 649.6564473100461 0.3255976178845269 9.891146659949344e-06 1086393.2924786494 33.00292998489478 64901 8713 359500 POWR_20200407 25071827.666819744 3447.1712743746816 0.058469278878891466 8.01654717537272e-06 1223492.6427936023 167.7494006723128 82287 12796 242937 BNB_20190905 3363823340.350007 318553.3476267368 21.640177975581818 0.0020487195230956073 138391170.45134833 13101.77268632683 None 56076 1071 MANA_20210916 1136946258.8168685 23591.79254004746 0.8571578037098732 1.7784061597294032e-05 56180390.04347054 1165.61444435179 171865 36962 13381 ZRX_20200407 108204956.5204673 14876.955270456907 0.1664530335742318 2.2843546143567963e-05 32459388.092347626 4454.635122939035 152413 15947 126435 STORJ_20200531 19436949.157559633 2013.6892209336322 0.13486589083239156 1.3964115371173598e-05 3930844.169855029 407.002550127206 81341 8112 104052 XMR_20200610 1197385409.236009 122560.75549752182 68.06623634894198 0.0069670544558597695 58335652.61908485 5971.061282597275 319874 172828 79521 NXS_20211230 48923599.97584459 1021.8120047259132 0.4764107023723497 1.0237512372654553e-05 175573.93905748494 3.772879921601484 27200 4173 466557 FTM_20210325 869042922.8238268 16440.500850365184 0.33944096392519224 6.4379869112445635e-06 100305420.74226452 1902.4368137485465 54494 5731 62637 POLY_20200309 15148336.730880845 1875.1430806589528 0.024458054665036054 3.04031760206895e-06 6451919.054733806 802.0213928654384 35033 5005 364083 RDN_20191022 7980787.773856231 971.7646581396187 0.15790789203885766 1.9214307665329905e-05 2650738.3446490173 322.54310685016463 25441 4375 2691065 STPT_20210909 73226338.55397847 1579.9555585373455 0.0602849431393933 1.3021370611852235e-06 11343470.811811602 245.01563702862225 None None 824809 OAX_20200113 2658152.1627849224 326.0704121810894 0.05090158836781997 6.242843272863333e-06 270788.9916488041 33.21101146519258 12100 None None XRP_20200217 13014571135.584288 1305552.78391851 0.2964534198879656 2.9798996695758876e-05 3980732101.4108753 400136.4625224192 946035 209831 33737 DNT_20190603 12401322.046925932 1418.8421529797097 0.020026784370082037 2.290745157385142e-06 994926.5371968658 113.80374926503252 60751 6383 1082435 CKB_20210823 502823126.5961676 10192.34334506469 0.018332809127983334 3.7200448145901255e-07 105002828.45429525 2130.68943652754 None 5624 124430 ENG_20200612 23596693.75053173 2543.1680077577316 0.28594569642646145 3.075074111176374e-05 1387923.5249841276 149.25797986503247 177 3576 513025 SC_20210704 665197090.7271947 19198.564467598666 0.013905051205910922 4.0076449242664863e-07 58773021.872844465 1693.9268996893848 138817 47251 51378 SAND_20210422 353985488.9201148 6533.024383918496 0.5122477212525194 9.470628883935175e-06 71000525.63548951 1312.6844707359246 105105 None 22461 OST_20200107 7128874.280095907 918.0178531932733 0.010296402013188759 1.3274342044987736e-06 137873.863065085 17.774993779821713 17889 755 561579 QSP_20210804 23458315.122417834 610.4664452704129 0.03314622711672189 8.649793580853057e-07 302758.64846674993 7.9007478131177304 66695 8495 236005 ZEC_20200316 244551035.02291912 45265.58351323218 25.739852504665944 0.004790053091534175 190210716.07899234 35397.22803119967 200 15613 148838 OXT_20210902 244294556.61518323 5022.070810542969 0.4132767935199836 8.49398377501668e-06 22630283.83776052 465.1150675670963 70122 4408 263095 EOS_20200411 2326843347.860031 339318.76656743506 2.4924188122811257 0.0003631907542460038 3005116048.5644627 437900.06675322464 None 70855 93233 DUSK_20210221 68763615.4905555 1233.2009113626991 0.22600191841901054 4.018861358800077e-06 7457666.906185801 132.6153758593544 22073 13408 665690 BQX_20190810 13398532.598832175 1129.5618412892597 0.09550463080857761 8.051180130355672e-06 504406.5045378941 42.522206437270604 60587 5770 410121 NAS_20210509 53325929.87180823 909.3647783712119 1.1777693488185952 2.0049698208279398e-05 14338744.311070828 244.09490399035099 24941 4893 492294 CDT_20200905 5625600.584173816 536.2168871812923 0.008336574132180584 7.950422574622743e-07 243105.19965371906 23.18445247040034 53 292 256475 AST_20200425 2501272.4590276647 333.5780160688783 0.014567408269781396 1.9435483898469273e-06 33765.81916183245 4.504953952583 31658 3456 322316 MTH_20190622 8648311.697958369 852.5231463240347 0.025321221042896063 2.496085685412124e-06 1257986.8879247252 124.00835876222486 19531 2007 1893104 REEF_20210814 283708731.5873807 5952.411925344648 0.022419320126944066 4.699025446986751e-07 49745016.11026576 1042.6413256036908 192285 12668 58529 VIDT_20201229 26695028.297487877 984.4562620698897 0.5701098718237315 2.1004124986226244e-05 6685742.7443175055 246.31774183839812 123 1138 None COTI_20210310 262199401.7075784 4797.430238681282 0.39771303044689515 7.263716465990783e-06 317943784.17867005 5806.8338817136055 52741 2463 166119 APPC_20190528 10111790.946897997 1146.7574648390682 0.09472142513768889 1.0763240183877851e-05 1291007.2106370828 146.69775784102126 25604 3380 1307105 UMA_20220115 545855667.026632 12666.358585511805 8.431504563744033 0.00019548820503510314 20408399.94729243 473.17788221217495 53298 None 196141 ADX_20210422 141697169.51187196 2614.9624380546593 1.2080206259718613 2.2334340511548527e-05 3736095.898187993 69.07434871552768 58034 3835 11197 ENJ_20190818 56571711.293261416 5534.932828236308 0.0645597186237373 6.3164086166763974e-06 7180012.7468126295 702.479740442033 47115 12772 23439 AST_20200318 1604002.7709911766 295.27327729750226 0.009216710603687995 1.7135751077911127e-06 2078936.3677148202 386.51681316459207 31776 3480 355183 NEO_20210427 6316114904.143714 117241.19688479026 89.81737853780209 0.0016661816775113726 1711179893.5644062 31743.707420528826 383202 109501 88657 ONG_20200224 0.0 0.0 0.16691057770089107 1.6773780863468558e-05 9035870.45085205 908.0653421791733 84399 16452 403200 NXS_20200310 9884140.003974041 1249.7910680692416 0.16574603434227494 2.0934390788034392e-05 108920.99854212682 13.757160209305978 23543 3535 662796 DGD_20190706 48472220.51081569 4410.254016428841 24.235688362054326 0.002205562176906803 1639428.5031900336 149.1957416006473 17118 3376 483052 WING_20210916 42326392.30013515 878.2785099733472 21.754131666906392 0.00045134841669230877 4460135.616345249 92.5376006495725 15318 None 426927 MTH_20211007 17182044.393795375 309.31594352554595 0.049376967407186736 8.900053716144263e-07 555494.2394121487 10.012620923044466 21953 2060 1356552 ARDR_20210115 82781530.68094122 2119.565815006584 0.08264431910981207 2.1106657703879653e-06 14392715.57214001 367.5777407117516 64259 6292 None ZRX_20190908 98957606.32436627 9452.494755877786 0.16479698387377373 1.5741514813376808e-05 62080451.87738688 5929.9650386655685 151118 15894 155880 ONG_20201015 0.0 0.0 0.12101612081356868 1.0601684358204487e-05 3331673.2467583255 291.87308194435 93148 16669 201035 ZEC_20220105 1779931318.9188337 38556.139496351396 148.48567907726795 0.003227184579740334 258565445.67912465 5619.655877487949 84377 21720 107256 VIA_20190207 6378728.340936452 1872.9375592015272 0.27581552086777117 8.09856166986635e-05 79819.63563922027 23.436833418826705 40716 2230 3450417 LRC_20210511 639458145.6505293 11444.358718425974 0.5132122984704476 9.184941473266601e-06 94613641.90894514 1693.2968405010001 73926 10312 161207 QKC_20210210 64658167.09949219 1388.2104250105922 0.010071214477853382 2.162386718577471e-07 11932978.382202152 256.2125354741319 63442 9235 366724 REP_20190228 140338860.23973188 36720.82583276278 12.72385290246106 0.0033354412449447673 3211091.0260305847 841.758037569171 122448 9784 236100 QSP_20200414 5285958.78947931 771.5316026165635 0.00738669779965187 1.0787568533991107e-06 244903.60083480296 35.7658381306888 54944 8294 386866 BQX_20210108 76653103.01004906 1956.8535820767431 0.3667846912750984 9.294532220875786e-06 7068309.541433315 179.1149749232621 19207 122 152603 KAVA_20200305 16779512.542537484 1916.030199683019 0.9167906630850311 0.00010472386920734707 4320642.287628577 493.54165137192444 None None 380992 YFI_20201111 545558152.689744 35696.49383659695 18190.157448296653 1.190669360631683 898885539.6334016 58838.16419943024 48417 1949 9659 EGLD_20210106 574660978.0689737 16891.554117655385 33.95089789709972 0.0009963261385956103 145930306.5677347 4282.484053510853 116323 3169 49960 BTG_20200321 130723367.70989685 21145.575806806773 7.486447095723307 0.0012073956402165464 34075483.11658783 5495.6094963582555 74887 None 195914 POA_20190316 7440004.0923612425 1895.9777299041957 0.033799559360083234 8.612525675243913e-06 902853.7584884668 230.05776771029588 16774 None 766257 AST_20191216 3596800.5368129974 505.4141941069412 0.0207940917948623 2.9245439416906336e-06 1879730.0166617578 264.3709129725221 31899 3522 366366 AION_20190419 59418046.191259 11269.095798756438 0.19762172217947627 3.7474753129176415e-05 3870100.895634267 733.8822577266291 68599 72491 254752 DOGE_20200417 251193747.3276439 35434.97319952272 0.0020228472522372696 2.8535558282133844e-07 146472116.75338238 20662.27996058994 139466 152805 112062 FRONT_20210430 113498659.87836932 2117.2973572227006 3.03227620026142 5.6578358961844074e-05 214144481.6491086 3995.659548228737 60345 None 149576 BCD_20210711 385180313.81112814 11422.390828871683 2.045120052665356 6.065502428294734e-05 5069333.228612323 150.34840115087636 34360 None 1330822 XLM_20200117 1071406039.6203912 122958.80835759122 0.05359307493765484 6.150553932744238e-06 245304908.17195648 28152.164611447326 279816 105882 64861 ALGO_20210124 447636222.36003286 13984.730441076217 0.5576155944932739 1.739958883336825e-05 355578751.7612302 11095.321113015158 None 1959 270468 COS_20211125 76433840.64937335 1336.8982113509808 0.022374760333061898 3.9117434081633403e-07 11090874.348944498 193.89997470115694 32206 None 230602 BEAM_20210527 64635049.0312245 1649.717125832859 0.7326422081025072 1.8688592464191173e-05 12370404.961486315 315.5502841434438 20400 2367 154482 VIBE_20200718 2723608.1408936353 297.53942208 0.014554498068684557 1.59e-06 70468.72200516006 7.6983258 18805 None 2048051 WAVES_20210804 1611449663.125385 41940.51202216925 16.108631642912453 0.0004193529276755772 137768359.19282138 3586.4973542920156 194833 59208 114002 BCH_20210104 7814679170.9748745 234118.415844673 419.50096491511135 0.012743931788841546 8665504810.339813 263247.5523416152 None 354932 464995 STX_20200312 76154616.2969704 9597.909711924109 0.13832503076821165 1.7434384818993117e-05 4792217.812086387 604.00759723921 35844 None 34581 AUTO_20220115 19537575.499889437 453.2272131657643 558.9220450237277 0.012963031870780706 2985610.8109175526 69.24501983819341 83661 None 20347 QSP_20210819 31318623.897343114 694.4204656857684 0.043788402298918006 9.72113791163615e-07 412411.9470512394 9.15565127570445 67059 8504 208905 MBL_20200530 6252378.079629239 663.806635083942 0.0017653314674144689 1.8760873011135645e-07 5914576.368393439 628.565332971777 None None 88350 YOYO_20200807 1924235.8793913221 163.558333473912 0.011030551454412623 9.366070894474029e-07 549686.4705034976 46.674025988151456 7620 None 1631861 NEBL_20201130 7808886.652988448 430.4849469174547 0.45718148393334906 2.5174614892809016e-05 1074233.2432751444 59.15245729515927 38353 5900 885827 BZRX_20211207 94375569.09234907 1869.7730336582824 0.2633256625797496 5.214574482707346e-06 14887977.447322061 294.8230208000181 463 None 199766 MITH_20200403 2244533.151335588 331.00644461022665 0.003635646365716785 5.333122826517741e-07 2676767.441169473 392.65451327706097 94 2089 1121889 XRP_20190511 12618027632.289663 1980191.1011293642 0.29961408583891663 4.702925719440843e-05 1078848959.4386067 169342.7231409822 919443 200525 40096 ELF_20190805 52520807.32828243 4798.200789915821 0.11383870979134261 1.039628233307627e-05 15109279.46555159 1379.8499250487112 86262 33485 1285223 AST_20200610 8930083.915536927 913.5438010090135 0.052157546972246165 5.341124172389864e-06 2570003.952402218 263.17783389270915 31874 3454 366039 BQX_20190819 11473935.536316356 1111.8170776320667 0.08128133030850997 7.879743614038896e-06 188804.6781651777 18.303495420484843 None 5769 396128 PERL_20191019 8374057.5304146 1052.2070137326614 0.03206531134540784 4.0290848615719e-06 3682580.0479407464 462.72519742147114 11157 372 274565 FTM_20190908 35226732.70079124 3364.713855432085 0.016944208903138875 1.6185432439310598e-06 4172952.0154215987 398.6083581959348 None 2135 342679 FTM_20210704 593320917.0877391 17114.914974525553 0.2345297522704608 6.7520994564591425e-06 34233365.5317551 985.5768258057547 None 9000 43795 AR_20210702 473857230.73402715 14107.465516040766 10.835028257464169 0.0003222624909269841 23558693.416939326 700.6980547833718 22324 None 93046 MATIC_20190528 48249663.5228608 5471.895345877157 0.022289453000732692 2.5327610502630195e-06 77853505.5753421 8846.53053357476 13958 520 412270 CAKE_20210427 5233343083.204217 97115.85204866901 33.241738424416624 0.0006166818284573746 1241937194.1226432 23039.71260234155 None None 2459 GTO_20210702 20639062.699423563 614.5175980447171 0.031226471766854013 9.287581292199317e-07 5353912.729582879 159.23957108764128 14089 None 269467 SC_20190528 144604211.031484 16396.661759052247 0.003534777403931189 4.0087185304657216e-07 3991507.163346272 452.668637985453 109795 30920 231960 MDT_20200913 8471029.091201339 812.6647994837829 0.01397537179355586 1.3384570557508144e-06 1676956.722639044 160.6064289924623 13931 64 538522 TNB_20200707 10578104.463777885 1133.1900298164844 0.003072685548197261 3.2900657204523035e-07 2115077.361014423 226.47105967810327 15876 1434 1208185 STORM_20200310 8506753.622746324 1074.9354042247483 0.001146508502481088 1.4466658923952427e-07 897551.5796995892 113.25317293390803 26123 2525 826076 SNGLS_20190621 9858764.92782854 1032.1492959787372 0.01669362148492601 1.747714829305398e-06 730226.9854674117 76.45007001103868 5 2181 None CMT_20210124 9083385.99426264 283.776643347332 0.011370238852705813 3.5478585392406007e-07 2265936.026591264 70.70405983073621 280554 1630 1294863 DODO_20210909 231147967.11083028 4989.323156781703 1.4985957947599264 3.23692289064812e-05 102261867.48174351 2208.826294919026 105242 1082 34581 SUSHI_20201201 195563876.82023 9934.43292471057 1.5684390269686421 7.989481417838818e-05 138490907.0955865 7054.597021334845 13812 None 76561 TNB_20190922 11696147.853687273 1171.0730341697904 0.004054405311175379 4.059940567923708e-07 707173.8404818859 70.81393060612594 15539 1461 1364178 BTS_20190904 91839820.00644201 8640.168431086893 0.03405702715033082 3.209214242212216e-06 15229761.01442313 1435.109580681657 13601 7156 133075 STMX_20210725 157634146.66587523 4613.762158097265 0.016960463809304025 4.964113181968762e-07 12467549.394056385 364.90939746547906 68899 4648 85845 MKR_20210108 961687240.9656155 24568.822071371553 1069.242707037297 0.0271649565786213 272647821.09514475 6926.833517366199 81367 18662 39675 POWR_20211007 161360801.96615785 2906.6909936040197 0.3752933851075098 6.765200907090242e-06 8368239.589290073 150.84950683049178 93189 14416 245537 HARD_20210111 22596209.875163976 587.8225346734064 0.5616395016482293 1.464144709693583e-05 8449345.655566186 220.26699877171455 None None None ARK_20210125 66723943.6952182 2072.216715648174 0.4323495042731801 1.3401240955431275e-05 3845761.4258364365 119.2044283972921 63335 21551 90989 DCR_20200612 183502000.81912154 19777.195177278038 15.84135443343207 0.0017034416916596178 105886363.11755657 11386.099987258302 40535 9843 295595 BNT_20200301 18776169.633790474 2189.4499169749074 0.2671877837801259 3.1239407186938996e-05 1783367.7877451796 208.51010363291246 751 5031 123445 NULS_20200312 18805868.733102027 2370.9693444125323 0.22609452900882077 2.8481319333687847e-05 5134353.357939597 646.7788415780954 22720 5188 619302 NULS_20211202 49282508.13904966 862.1941294545071 0.516810952599206 9.037900643325872e-06 6480161.09183969 113.32393751765701 77991 5531 241702 ETH_20200315 13505998666.239887 2611211.6392204124 123.030844108903 0.02368491299824961 8678897518.712492 1670791.8582552809 452947 454761 19200 DNT_20190523 10500911.95629749 1369.8934317738142 0.018019023308444047 2.3528760956804052e-06 3342301.9899806334 436.4288964033503 60837 6400 1189433 VIA_20190902 5509400.15546838 566.4346743168497 0.23836213422634947 2.4502548758356254e-05 163042.84063259626 16.76006621298107 40735 2218 1917066 DNT_20210723 87814071.213262 2715.17900722753 0.11693077861449962 3.611801433197452e-06 5364266.142136409 165.6934501744467 70102 10251 228003 DASH_20190804 957122823.5389636 88704.74756383071 106.79652079966702 0.009895836711371392 322076530.1251775 29843.825686630258 320593 29428 93403 SOL_20210128 965216149.5931334 31890.264211513255 3.699511535159664 0.0001216659674356028 41769652.736767605 1373.6800551558972 108999 3119 90687 SCRT_20210805 180200992.4380962 4531.002786549828 1.2550007617930803 3.1555941351211125e-05 9899476.358742673 248.91402849657393 86819 None 76372 UMA_20210809 583874720.2272757 13273.022150016403 9.386332868436307 0.00021342220840653005 39991806.8996022 909.3156897708121 None None 213282 IOTX_20191015 23963073.55810543 2871.018644581523 0.005816759963074381 6.969203881293429e-07 1954832.7290426195 234.21334091501072 22456 1777 588755 ICX_20190816 98463380.8584547 9559.988149951658 0.2008592589203217 1.9496295375987898e-05 13286501.224705994 1289.6470582570948 113937 26055 212480 NANO_20200306 110306973.05036579 12180.355630384414 0.8279230405388622 9.13944500465964e-05 3355755.3706314126 370.441939132595 97711 49215 295755 REP_20211204 144889470.8773528 2698.387565910356 21.009461939366698 0.0003910479989519657 20760695.66117684 386.4177254317004 158287 12073 164632 GO_20190613 18429079.943202786 2266.412347381204 0.025507913170123065 3.132836614195227e-06 1892579.5478963256 232.44326038679444 9772 668 891610 ARDR_20210723 140955116.01605406 4358.280702401959 0.14086933890158404 4.351374300070136e-06 6636447.199643178 204.99610499680583 72171 6979 None LUN_20191220 2096287.5761947734 293.5596066561773 0.7752891722987516 0.00010849817525350724 3175380.8933924325 444.3800390587311 30269 2166 3189870 AVA_20211111 148905651.03759483 2292.3973598213242 2.78990167810798 4.2950440070545746e-05 10860194.718386775 167.1923229648938 131608 10876 48710 TCT_20210724 11892686.25377874 355.7853566433544 0.020688355159008024 6.188255559334428e-07 1746021.860511006 52.226624117684324 None None 514683 ELF_20200711 45117882.82664909 4859.0583998193715 0.09782994747095447 1.0537267271634033e-05 19283762.011125702 2077.0547216550813 81172 33366 479052 ZEC_20201226 692869369.6498576 28056.94698856559 64.36044499586662 0.0026065463883971113 447261489.32455486 18113.731496774184 71779 16491 168324 BCPT_20200107 2550783.878491682 328.7553652425557 0.02195685816250138 2.8307251903042123e-06 187882.95901402723 24.22227355907425 10735 3148 3617841 BQX_20210125 209709320.2263221 6519.851385689012 0.9410711787840054 2.9167663742363382e-05 5175023.086803981 160.39523540600368 None 226 96295 ZIL_20201129 306343542.9440788 17306.534051197763 0.02669870702519534 1.5071836522418952e-06 64188933.41447667 3623.5654035922344 98799 12482 66653 WAVES_20211207 1951913079.763013 38671.13035998839 19.5399370848372 0.0003870794334625322 255266158.38536018 5056.734806307872 203843 60012 99205 ADA_20190703 2508983263.5802903 233062.13435235262 0.08088485355829379 7.4943337828441305e-06 360130368.67133296 33367.64634452302 153174 74328 97209 EGLD_20211207 5802488984.17188 114982.63810663615 287.56958657473143 0.005696654608922917 261251973.7770375 5175.311750571408 411021 13602 16321 DOCK_20200318 1793063.4994867987 330.0765718558149 0.003186942475791505 5.925178223880981e-07 341675.5012750265 63.52446757877567 43057 15022 378260 AST_20190805 6160078.59381127 562.5624156064995 0.035735157271808995 3.2628588377722956e-06 690941.7652385823 63.08760383918058 32060 3587 229078 GTO_20190616 23526291.11422357 2667.8563979300166 0.03550520969932287 4.026711993974058e-06 14028619.323048681 1591.0118589749848 17404 None 1224207 NULS_20200701 50021021.94975179 5467.8431317605855 0.5195861092044375 5.6808958139923666e-05 32871127.648973163 3593.9654304496858 26851 5174 531663 STPT_20210509 90213113.01996475 1538.4003190340527 0.08062225594929148 1.372468983231219e-06 10210282.590188684 173.81424024990747 29854 None 885940 REQ_20190531 17430274.30220795 2097.514642839146 0.023880094052129007 2.8737904185419906e-06 475267.2672597956 57.19485509212506 41853 30066 438675 ALGO_20201124 264715391.23717636 14454.296731523384 0.3331384924260922 1.8145569596106077e-05 160047467.93752432 8717.553012236189 30295 1488 368912 ETH_20191127 16079208209.774965 2242729.3972620806 147.57506848968612 0.020620170639520024 7520914600.00864 1050872.237462483 447898 447944 23055 VIBE_20200701 2771795.4063086696 303.15337344 0.014812002608668861 1.62e-06 689532.7243970302 75.41471893 18863 None 1079841 XLM_20190601 2595761704.235106 302609.8386720156 0.13419039421808343 1.5646891404608902e-05 360101663.2731796 41988.63601739971 271999 101712 70523 DLT_20190512 7650760.5342126535 1046.1704522992547 0.09572546371916028 1.3143072702323748e-05 2511407.718206436 344.8154017033758 15143 2677 2743184 AST_20190626 9873583.178472495 836.0760157204359 0.05718480569038839 4.832704992014675e-06 2408000.536734043 203.50084387196924 31940 3599 344733 VIBE_20191019 3499742.9891243475 439.74550043914354 0.01870203052021641 2.3499250647540893e-06 195619.9641039768 24.579804653688 20136 None 1006248 SYS_20200704 16831895.067812465 1856.1088587642241 0.02853744496021172 3.1469186436669862e-06 653738.8467141424 72.08994945701774 57179 4455 880000 COTI_20200422 9439924.261674283 1378.439565009164 0.018916550504998412 2.763372233315955e-06 2040611.428095493 298.097105912428 23123 939 241032 ROSE_20210826 154677429.65623724 3155.6411380467976 0.10310720644697688 2.1037671287399683e-06 15390665.923070733 314.02632438718274 28184 1850 261219 SNGLS_20200903 9040209.511720799 792.0320720586254 0.010157185729543019 8.899235729213904e-07 423970.20524498203 37.146222379927345 9073 2121 759166 ETH_20190806 24942936105.273483 2111740.0691670193 232.82368350463972 0.01971210515146796 10565615079.886549 894541.7936423499 447490 444189 31061 HBAR_20191213 22579161.671595465 3134.204460630239 0.02324275306193307 3.228188514555956e-06 2429059.912487675 337.3723968828692 34976 6152 91976 GO_20190228 12917497.782525448 3390.567930261002 0.01897790717783233 4.973025828356641e-06 1627651.1582121586 426.51442930432796 7931 629 747955 NULS_20191203 23950808.578765776 3275.9344901446902 0.3061181853007951 4.189931141451115e-05 4267767.863345351 584.1421494624458 21117 5268 579591 ONT_20200913 513738403.77070624 49267.74698453596 0.8080061969077345 7.738438575390461e-05 265543943.6469511 25431.679915859902 None 16627 197799 UTK_20211202 164846647.79657403 2883.547664897133 0.3658239245798464 6.397465585192919e-06 7731267.0961197615 135.20306315166954 81426 4259 147587 RIF_20210710 120534224.96364182 3543.978035136002 0.16186772180319514 4.763248708888407e-06 1243910.3591973134 36.60429853719336 None 3358 427293 BCH_20210727 9073861291.735888 242367.81978138696 480.60614284187164 0.012880730125396943 4205914109.582538 112722.74685418767 None 593740 283440 BCPT_20210112 2426258.855454217 68.53311794198848 0.020887454359769964 5.899957335253208e-07 133902.05798822935 3.78225328767088 10394 3214 2139942 CDT_20210220 15186731.148674771 271.88555965005554 0.02252982151796291 4.0302480449899915e-07 1024257.7303537794 18.322438604464583 19949 298 552425 QKC_20191011 20668955.83596258 2414.37877945447 0.005433600889632939 6.345830213140955e-07 4676972.684125199 546.2174194940105 50405 9236 292005 XLM_20200903 1910649484.5037377 167478.77466822488 0.09277507487090547 8.130392806798263e-06 250259368.02083167 21931.612218278457 288336 111227 46719 AION_20191102 30535576.476137027 3301.0525475563913 0.08438985262036533 9.126896089196841e-06 497418.590223292 53.79660758771351 74975 72564 229740 FUEL_20190629 5654047.44592187 456.4309013372518 0.0070619649423717575 5.705952875971632e-07 1026276.9102539764 82.92150605947728 1 1516 None CELR_20201014 19482272.50743817 1705.3208852284686 0.004932030621680679 4.317949974663418e-07 2410322.9765670155 211.02168323625702 24796 None 306655 ASR_20211216 8190209.778317413 167.84483847598224 3.8438405747913684 7.865545437718647e-05 927001.244709731 18.968971967527256 None None 103751 VIDT_20210511 65853910.72765743 1179.6133041823705 1.4465436558690445 2.5888738164070613e-05 48841992.48561719 874.1233282116161 27739 1573 391219 ATA_20211204 172702221.11885518 3216.7693389222973 1.0036797120548357 1.86766163111644e-05 22849037.329115253 425.1781700376178 158470 None 227011 ZRX_20190701 176854966.58027402 16299.227855805586 0.2974892367051368 2.7419040624446172e-05 33282430.036103707 3067.580902581466 150998 15979 206645 UNI_20210620 10330166414.915752 290354.19010683586 19.890780818849283 0.0005586730678221258 213488836.21143046 5996.268530544052 None 47133 1420 GAS_20200629 24419097.20287505 2678.299898634277 1.753260038055032 0.00019217777197775947 15522475.406080374 1701.4445515049488 319649 99697 217061 NKN_20200607 15642536.129222762 1617.7163358362682 0.024065440198804248 2.488794362825028e-06 4603480.49556339 476.08172599736645 12593 1005 247913 NEO_20210430 6317687737.987352 117890.53388818364 89.49334160635888 0.0016698302106064684 1096737583.980547 20463.70733248092 384745 109686 88657 QSP_20190603 0.0 0.0 0.0279509280913002 3.1959206004529843e-06 1388828.7692914815 158.79925202419065 56932 8596 693082 ZEC_20190316 325463820.6358959 82933.08947185996 52.955107587062734 0.013493584897662949 207266333.43814203 52813.902078789346 73838 15046 171176 BTS_20210430 299377496.19640976 5585.997556369795 0.1104634119200058 2.0611046484556122e-06 42798041.01361666 798.5561892822856 5229 7100 102843 MBL_20200331 4994595.898573966 777.871463437536 0.0014152123186768747 2.2042459051555667e-07 3937300.973324222 613.2492936416071 None None 114904 WING_20201124 6824612.440832559 372.75243470948686 11.010429650558956 0.0005999431293204783 1838298.576328871 100.1663545847309 None None 213558 LAZIO_20211202 0.0 0.0 5.1520117128426195 9.009503560394275e-05 3816086.0806614184 66.733235572402 632076 None 88685 TNB_20190615 12258860.192134619 1411.8971801234547 0.004498544584722874 5.184370251822645e-07 1497004.7277329492 172.52306009488328 15658 1492 509934 DLT_20210105 3332486.0278962706 106.51584325709604 0.040332605552017745 1.2891461374981424e-06 342198.1579754798 10.937637863344031 None 2534 None SAND_20210421 370846043.0327995 6564.167184767065 0.5216853472687308 9.252376564357418e-06 76868622.34137358 1363.3072954978038 104803 None 22461 VET_20190730 309874921.3003097 32642.502038085335 0.005600002920989385 5.887336712289874e-07 30499051.675480433 3206.3945171542587 113104 57122 133161 REN_20190528 24554546.341457184 2789.833774566325 0.03185373926030183 3.6195554059166196e-06 371734.56326467084 42.240373635115375 6370 783 1359818 RDN_20210201 15048559.680834468 455.35097181041004 0.22685643414120232 6.861209541309637e-06 5904271.171984467 178.57303387958717 26842 4380 1282732 HOT_20200901 130440480.76263762 11162.908580641999 0.0007345578590583251 6.300725389567635e-08 8774351.63084255 752.6266231541895 26252 7284 305234 AMB_20210201 3438845.7429901306 104.05525739256773 0.024179821159481422 7.293629847607614e-07 2370459.6894097934 71.50282638236328 20464 5463 398433 ELF_20210210 88479847.10260579 1901.8440799730213 0.1918884746515753 4.119345788417309e-06 29417356.018635556 631.5140179303319 82418 33304 465986 QSP_20210221 42334433.090578794 754.1054009690141 0.05930837438314587 1.05646307697872e-06 1398644.4719112162 24.91412482238775 59984 8225 198547 XVG_20201018 70555393.55089451 6211.241711921673 0.004300367521632901 3.783975054643042e-07 1099733.4989308345 96.76763917911528 288444 51355 341576 DUSK_20200605 8169412.211755509 837.4256530990591 0.03054123431185973 3.1240704315279856e-06 590212.5938206977 60.3729925857866 17350 13335 1126512 WBTC_20210120 4032091581.979307 111348.72552777566 36090.7025395104 1.0013544412710813 498579528.98817486 13833.336304068676 None None 145403 EVX_20210221 14140200.199572612 251.50092761911603 0.6486330366776427 1.153673979904202e-05 1361839.0313616542 24.22198942174289 17122 2816 787934 LOOM_20200329 11300045.399240663 1812.6564091418986 0.013586748394846438 2.173160972191635e-06 24878429.89528735 3979.232655721461 21554 None 494145 TNT_20200707 15065156.423750298 1612.417424818479 0.035159428185391646 3.7630989721025885e-06 887875.9797258741 95.02899674714371 17994 2607 448003 WAN_20200718 26223503.80147986 2864.989712555326 0.24679925462108837 2.696148043001505e-05 3880499.4630612335 423.92352640059187 103667 16092 631499 XTZ_20210616 2752867784.933076 68165.35241640286 3.291639276339046 8.15551963714832e-05 80464853.68514286 1993.634901146609 120921 48763 78747 REQ_20200319 4987257.024187187 926.6967651087165 0.006469521875547781 1.2007210640696015e-06 43796.310117675675 8.128444898776262 39659 28228 686735 VIB_20190901 3002565.474229747 312.860209408674 0.016446657334381425 1.7137027325031979e-06 194340.75624898993 20.2498464125238 32361 1120 4329648 ZEC_20190614 592241167.0008765 72029.53808825245 87.83311456797065 0.010676074394937125 460440598.38225704 55966.3414756205 36 15172 179963 DCR_20200914 170701857.1549279 16537.0165170009 14.239681315119382 0.0013788504542969885 4733479.966352874 458.3502156808371 40863 9917 216074 VIDT_20210221 36300082.24590544 646.6152037205054 0.7843105542531971 1.3970963629862806e-05 6185553.251959156 110.18357338820513 24637 1292 None FET_20191108 14195590.215085328 1539.6967912708253 0.041736844027497236 4.527179039714644e-06 9165304.29097048 994.1569480277826 15957 315 460894 KSM_20201231 557969084.5537409 19328.445753075568 62.165621878080096 0.0021556686354762874 124094522.96369068 4303.128689227255 24414 None 183524 VITE_20200914 11193744.542388504 1084.4239878675394 0.02088081277982995 2.0222627118597143e-06 1016901.3741652276 98.48475498998228 None None 366677 ALPHA_20210107 51331207.81711046 1402.5947014644896 0.29695545329802403 8.062513030308553e-06 35356567.85512708 959.9513525446596 21083 None 85584 UTK_20201129 56201896.46052378 3174.8584880500403 0.1250452993108309 7.059002173143631e-06 2821769.4458734947 159.29328619557322 53064 3078 120780 NKN_20200807 16362238.761434326 1390.717927981311 0.025187536499032756 2.1406401407167083e-06 2402580.2830759548 204.19066372149587 13226 1014 209272 ELF_20200621 47375793.778086945 5064.060261420735 0.10277209967176794 1.0979767812027211e-05 19156206.592507303 2046.5739360848547 81263 33380 528254 LSK_20210731 430124705.48006225 10309.49198714875 2.974220999044132 7.115657067363677e-05 57766447.7847983 1382.0298914186224 196400 32588 282429 STORJ_20211120 299555903.38961244 5153.113877278612 2.0813369811256206 3.5777815617491514e-05 367457574.39478034 6316.530894885222 109949 14433 56471 GO_20210707 20122850.96634398 589.1140066320191 0.01849966077466098 5.414919782604322e-07 411466.66141715297 12.043782812718774 22367 1099 133372 XTZ_20200323 1045640893.4335849 179336.160163119 1.476318595827775 0.0002531892410195692 134240075.4075843 23022.227656625015 57553 22628 103142 DOGE_20210731 26938467544.260715 645677.6645360492 0.20622972281283578 4.9358804760113455e-06 1588419178.8763368 38017.057414430594 2000341 2124587 15366 YOYO_20200421 1346955.2210102526 196.28745551959025 0.007674161033338339 1.1209687966662681e-06 363829.43270994374 53.144759356088386 7473 None 3352047 LINA_20211125 183596464.65393078 3209.3109626676805 0.05898952876536227 1.0314183090196292e-06 39784281.17160396 695.6189830706343 50189 None 130115 DCR_20201129 266408245.64201394 15049.839009151936 21.66683150070064 0.001223126430913626 7924826.791649074 447.3688323539586 40883 9979 350460 XRP_20201111 11490781189.881498 752201.6574929015 0.25358971624621984 1.6600316526045375e-05 2283102329.2928214 149454.882826611 975840 219281 21491 GXS_20190221 38755804.29951109 9748.786269982103 0.6459300716585182 0.00016247977116636838 6347812.87465776 1596.753624789561 None None 374736 FUEL_20190730 3510368.3931823606 369.7853538713299 0.003998849488266182 4.202485674489978e-07 642916.2819137074 67.56559536853635 1 1505 None LTC_20210506 23718181496.681618 414308.12985202693 356.13619971223903 0.006212274033641234 16972716877.321686 296064.16989490413 172374 309723 92383 LRC_20210718 259434142.58191955 8208.31696160069 0.20774198133037472 6.5852988241918956e-06 14945410.786174461 473.7607461283475 82560 11073 261623 BCD_20200208 124525888.93002996 12712.14634453886 0.6617339740356711 6.749889831778753e-05 8715686.388064915 889.0267877435684 26678 None 3543462 FUN_20191015 24226309.48418644 2902.5125760679225 0.004030905313958896 4.829104109093872e-07 465359.65659215424 55.75100516684083 None 17321 353291 DNT_20210107 41448503.19970638 1130.8306255221735 0.05599345241504532 1.517052276956635e-06 17870392.641893286 484.1694640748536 60397 6220 301062 PIVX_20200412 15657227.966919197 2274.9723865748115 0.2492360248065934 3.621293744599717e-05 211551.97668219727 30.737605063771646 63845 8501 213367 XLM_20190729 1645099047.0216827 172320.14217833095 0.08383578751062684 8.791294103220441e-06 138614168.4040117 14535.533779753978 275474 103143 67443 FTM_20210106 52090457.08973852 1533.1067538921493 0.02057333151267399 6.037468583657369e-07 14563153.135101276 427.3716168817882 28471 2841 142400 LOOM_20190719 30142030.027176734 2812.739328477274 0.043304671049064485 4.058700324682563e-06 2320551.7355585434 217.4921054563146 20636 None 431801 ATOM_20201030 1103661955.8333266 81934.1359988075 4.626591651290841 0.0003440673714415518 164314473.9293901 12219.632376441314 44208 9668 75967 KNC_20190714 36321391.049152605 3191.238750523529 0.21688854181799208 1.9028009040816484e-05 4875321.090449664 427.72039965028665 97498 6689 219747 ARK_20200301 26743983.89312371 3118.3559453568146 0.18621360385425215 2.177196319475978e-05 143514.21054738003 16.779580252408156 None 21977 80258 ADA_20190325 1902218939.5042632 476325.9255868185 0.06111843712286233 1.530551022154122e-05 165136979.71185252 41354.22713531315 149154 71995 114541 OAX_20211111 15826465.877176255 244.2038108008987 0.27364917372674646 4.215194642209611e-06 287436.67720414855 4.427572446958346 14577 None 2035813 CELR_20191118 15494429.733300684 1822.9113184036428 0.004451248074825694 5.230859563462873e-07 5377471.9359958405 631.9306412675853 18573 None 573678 XMR_20210729 4203002394.031809 105114.5563915642 234.09564846747966 0.0058511142374508525 220693660.49451822 5516.13764496783 431021 229779 33010 BZRX_20210729 28807946.751423754 720.4321741745173 0.20527706349076 5.128657098175732e-06 12920068.535625886 322.7959328594803 28421 None 119612 BAKE_20210729 321100851.998389 8026.456686867603 1.9133670119180932 4.781994064859815e-05 61473225.734746985 1536.3733083108662 344867 None 8420 YFI_20210104 723007576.1835651 21660.4398819711 23916.15747508425 0.719680820919831 707193914.1293082 21280.755372191998 None 2504 18869 TWT_20210207 188455264.80754596 4805.997397003883 0.5495215557855347 1.3974384207031242e-05 52135607.90463497 1325.8133517347314 None 7786 11832 BLZ_20201106 14190883.540417237 913.096136735793 0.05684853503206631 3.657008091896649e-06 5197716.783795963 334.3638024622279 42206 None 234892 HIVE_20211204 720240339.1640787 13415.270658757374 1.9670546946794616 3.668252236726117e-05 22778432.307436995 424.7824703953446 29734 199 75974 XLM_20210527 10277119564.141886 262308.7690551042 0.44384232889212016 1.1329460807210306e-05 1696305212.7109735 43299.66335668421 573215 190640 21848 RUNE_20210202 961023171.8039694 28801.44853341579 4.156273750041306 0.000124434603955501 125218450.06941305 3748.9128915423908 31743 2255 162982 TRX_20190405 1723175092.1593664 351433.4039718594 0.02588063331378256 5.280929916577035e-06 381726217.1487813 77891.0382772296 407371 70382 89278 RLC_20190904 13551411.593487551 1275.13462968338 0.19322261002263622 1.8207483268134796e-05 109711.3071664202 10.338162750848756 24814 3308 984845 ARK_20210206 100192555.60605252 2643.532889642169 0.6487567427470265 1.7067401927410734e-05 11818495.0501229 310.91931984160686 63755 21677 89752 NAV_20190305 10124000.443623872 2726.7202729278983 0.1570765326988924 4.2305783024835695e-05 153791.17828539212 41.420930981127384 47856 11419 735368 GXS_20190625 145150233.04695463 13146.593239333884 2.4166723216174026 0.00021880772864956848 55236235.792908505 5001.139453159065 None None 715062 CVC_20210727 148114047.44344655 3956.207572906103 0.22043895153142856 5.907722939861663e-06 36223817.08876532 970.7915669982726 103663 9849 183364 SNGLS_20201129 5665623.571734021 320.0603736403509 0.006367233787271546 3.5966238606964507e-07 157787.67414208336 8.912864403969008 8944 2113 2791594 RSR_20201014 93558101.69548917 8189.0571215427635 0.009909750161377667 8.676018124878522e-07 30153715.984779082 2639.9675285054063 44626 None 125682 AST_20200913 24263674.29981367 2326.897420057291 0.1379809199469567 1.3214162254042243e-05 18123076.395529035 1735.611504293393 33446 3479 151828 SNGLS_20181229 6029748.679858719 1567.7711173733835 0.010221320156094102 2.655268745774572e-06 143771.45889417958 37.34858663129953 35985 2188 924126 ETH_20190906 18756294625.6701 1774651.4979088886 174.1938100520476 0.01648148417220923 6972203243.611649 659680.4867559671 447906 445354 24829 BAT_20211028 957188669.1427952 16356.312252994985 0.6407412812890129 1.0946854845345843e-05 121750303.45560455 2080.064041798715 217248 81031 25573 ATOM_20210421 5066795702.3468485 89684.9102373255 21.210681560634853 0.00037618310349930904 1490767142.4415507 26439.575203432258 105790 24544 44770 DNT_20190314 7909126.114465099 2045.6060768917264 0.01361536392748449 3.5220078370979855e-06 690534.377593227 178.62669720927997 60213 6465 764547 SOL_20210218 2173930631.1428275 41654.06847773696 8.231931006463842 0.00015787976452999962 95778536.21248828 1836.9314237913386 114353 3996 56580 ARPA_20200217 0.0 0.0 0.01759180485515004 1.7649369357718184e-06 4216478.3548326455 423.0275658809345 12158 None 2586672 ALGO_20200129 139367928.10414952 14932.100746961765 0.24356214323332398 2.60483215189739e-05 55844442.45528852 5972.414156044291 14111 753 452232 LTO_20210115 50619330.30148844 1296.0504414833529 0.185934139921587 4.739677680696261e-06 7801034.613279273 198.85745381935652 None 1015 1001701 GRT_20210401 2103712374.364874 35767.020019680465 1.717220172828534 2.922349550455793e-05 363756842.1648202 6190.380598805865 80525 12711 26769 BLZ_20190224 9474648.315939931 2302.88661928974 0.04620851316082719 1.1224869726354393e-05 453553.34290618415 110.17617403864813 34757 None 1029822 NEBL_20200313 4499434.336105112 936.3692326569546 0.2771805406475227 5.784146845522467e-05 114079.74087993894 23.8059270613742 39648 6026 856581 HNT_20210511 1324305225.761592 23718.840286534683 16.061383079633345 0.0002874499773404038 35090165.78189218 628.0073956810314 41258 26426 7875 LPT_20211002 428359918.18934155 8894.524234146567 17.743600990403333 0.0003683744467694787 20819316.832722552 432.22930477982607 16454 1375 119717 AION_20190130 31202914.605028834 9141.296931632955 0.11807309166854726 3.458809940659408e-05 1534582.8868989646 449.53769474183 67688 72369 178392 TRX_20210111 2374988871.9908977 61607.95278984227 0.03296941705135634 8.594836619533023e-07 2080692092.2499566 54241.81010111918 560764 76946 32747 RDN_20200621 15400079.93797551 1646.1345893623056 0.2306860815447815 2.464559565210355e-05 1153175.2218653397 123.20071520483496 25371 4315 1567773 BCD_20210220 244203859.9009184 4371.94169488269 1.300219016487824 2.325719424084855e-05 15957883.50974244 285.4408309312629 28453 None 1218964 KNC_20201101 155985409.5481257 11304.327101413686 0.7867247699479675 5.7076509229165075e-05 13070783.305404197 948.2791345347634 124878 9185 85913 SKY_20200707 9186772.478598967 984.5640712348686 0.5101345791594041 5.464902701074217e-05 268639.9035078892 28.77850265935099 16092 3817 1118226 NEAR_20210729 934589968.2738202 23372.324609421357 2.226886206287462 5.565558805631112e-05 47827400.8680385 1195.3292058660297 94773 None None ATOM_20191030 776144784.9963509 82479.08934638293 3.1546380060768917 0.00033528481169883557 173747691.3289558 18466.44903729612 None 7090 99736 APPC_20190930 3441234.3192611416 427.0234311103481 0.03169292488994533 3.932781168860589e-06 268967.23502970656 33.37619612700741 25089 3300 1033070 POA_20190916 3200125.455469833 310.5353153129214 0.014440170707617371 1.4012542368578733e-06 112501.66576796368 10.917006384679969 17706 None 603772 BLZ_20210731 49368331.411916964 1183.2834446474333 0.166585384271628 3.988022004167257e-06 9043598.984383743 216.50201729450055 65214 None 420717 GNO_20210902 446684001.95950395 9184.32337408666 297.0120885505447 0.006104421783871966 16955023.872491326 348.4727425688326 79724 2322 227180 TNT_20190220 6659323.513193129 1704.3115942505012 0.01557441701325094 3.978493701861102e-06 657106.1043511287 167.85812883982567 16975 2510 1224257 GAS_20200518 17599591.52264991 1812.883231769578 1.2683959638978786 0.0001298738783396392 9941445.710608287 1017.9266944148213 320366 99429 247839 LUN_20190703 5158278.851566287 477.3927115654078 1.9198162234708207 0.00017751162828558533 743945.2566783855 68.7872788310798 None 2223 2096763 PIVX_20190626 44730586.67730169 3789.4909018839003 0.7414124063476784 6.278137526165719e-05 15131428.27916519 1281.3002168642442 63464 8628 321690 DUSK_20200403 4791404.873885574 707.1526440414113 0.018289153432414888 2.6834090674485674e-06 252984.04376787075 37.1181574628451 17607 13339 1650258 PERP_20210819 721684753.4673235 16019.477083867037 16.358903580121034 0.00036323359931341 68685863.85359997 1525.1030380673817 None None 133566 STPT_20210806 65196554.33330008 1591.2603493068937 0.05326015157639745 1.3005396900660595e-06 18977003.9668529 463.3923510719127 30678 None 442795 NEBL_20190321 22511549.040869284 5570.284773038962 1.50963420491161 0.0003735627924450064 402953.07832351443 99.71175578368467 39975 6179 631172 ICX_20190714 145629694.0989149 12795.190646922854 0.29766388806952726 2.611457067227004e-05 13932602.056683447 1222.331413519968 114141 25573 268065 VET_20201124 1038586836.6267824 56710.97586209599 0.016036043298563327 8.734599763634543e-07 225272007.55116844 12270.2389066647 141228 68337 122046 STX_20200806 141471335.52278617 12076.503210929108 0.18474075925316394 1.5770137208826826e-05 2407889.161562714 205.5460993827254 42049 None 101702 STX_20201031 135551159.0200031 9980.606034717079 0.15317064639573685 1.1286073222598396e-05 383112.2276271398 28.22885947939061 43611 None 112083 RENBTC_20210106 427529580.8393693 12566.781680415323 34150.1847897493 1.002174429878747 20730295.340110734 608.3531331265173 31850 2145 104896 IDEX_20210204 39122324.47905 1044.266310158998 0.06905520399150526 1.841004733443114e-06 5332655.839505411 142.16806373579325 45761 1935 6164235 THETA_20210111 2001055960.07587 51908.01631623777 1.9927026081216288 5.194800175400174e-05 128833802.99410617 3358.5837628933546 79203 4885 64313 NAS_20210603 24589249.116437007 653.4657372738686 0.5409332265956819 1.4365990938550734e-05 4566412.685857277 121.27382834211065 25079 4911 453331 CITY_20211204 38857780.98711076 723.480434857196 10.203670429174906 0.00018997883388368624 2173058.5587235033 40.45947326629187 265955 None 33797 DOCK_20200109 4085928.6303617493 507.75301764868675 0.007331505688348263 9.136646591787151e-07 2807756.161850062 349.90732950677545 43572 15081 271029 NAS_20211204 24401143.649587117 454.4244605518717 0.5335977288509614 9.929263216704002e-06 35866884.32267495 667.4161375645297 26735 5237 607302 GAS_20190305 31661158.598897442 8522.59228647255 2.27204122704123 0.0006115910438224939 611857.2375072599 164.70053540565533 316854 97883 156064 ELF_20210805 118638128.48712113 2983.0562168011634 0.25667536144090836 6.454819224602296e-06 15459440.245426249 388.7708252852345 49594 33390 843761 PPT_20210112 26889695.602051698 758.4455438901666 0.775924411578477 2.1828294115906605e-05 3574953.933786995 100.57055140045345 23541 None 755937 PPT_20210408 170334681.98860765 3023.9960609614222 4.6045008851987275 8.189575927007894e-05 27660630.490834236 491.9726138435084 24117 None 897116 NEBL_20191113 7373146.827561882 838.359933535092 0.4689485979334937 5.32773647643784e-05 119811.99437254405 13.61186994792755 40158 6074 508848 ATM_20201229 0.0 0.0 22.9695105001339 0.0008460265 2183688.39373723 80.4308933285 None None 215301 LINK_20190818 876236166.0089519 85775.76961514055 2.407025173223794 0.0002354845659195301 48162704.87850478 4711.86333154757 31324 10349 91625 ONG_20200314 0.0 0.0 0.06163835419579439 1.1079938544251655e-05 9559243.88721298 1718.3430054506516 84520 16507 345761 FXS_20210318 84970252.61287245 1443.8075862084684 11.09551676593992 0.0001882437722755272 19088013.32335454 323.8424770141289 7469 None 69007 IOTX_20210909 625008607.7922733 13490.795350800961 0.06526632032187692 1.41295504636817e-06 70530531.09887788 1526.9203066406415 110800 8726 73803 WTC_20210117 9776472.14437686 269.2567575628894 0.3344228871186736 9.24088728857921e-06 2133390.790447333 58.95058202168093 54755 19109 903762 EVX_20210506 25424138.839538753 444.1077161493727 1.1611901856719027 2.0261033743413616e-05 742066.0578138576 12.947943948138633 18155 2815 705371 PIVX_20190220 46764345.331703566 11944.876585186355 0.7915205947251188 0.0002021757334901716 1111173.42014357 283.823696754633 60665 8584 178528 RCN_20210108 25903654.331252214 661.2864551659876 0.049776859784302435 1.261021549692238e-06 4191648.4092633803 106.1890805430282 None 1127 5449742 TNB_20190316 8419075.509504916 2145.391873096302 0.0032220110262515937 8.21049325777259e-07 606912.5143988375 154.65655042548445 15140 1504 1478446 REQ_20190803 10625155.179346712 1009.4712671347397 0.014555497458142929 1.3831731804776868e-06 175520.2737159851 16.67926059773623 41441 29645 541329 KAVA_20210806 491869550.23241955 12005.1827076554 6.026286995392317 0.0001472847312607572 109683300.31375587 2680.7013046103316 126363 None 50274 RIF_20210711 123417989.93594211 3660.8675508871597 0.16448031759597562 4.87760771740639e-06 1706495.266954738 50.605535090598366 44540 3358 427293 BCH_20200309 4990329969.9357605 617730.043870362 272.5595753814494 0.03385077427274196 4899423656.778951 608488.1958010419 2623 286613 124622 DIA_20210828 98238127.20683222 2003.0319877515187 2.023734325443143 4.1262744817855624e-05 18176909.01701911 370.6164138824905 34860 402 452698 WRX_20200331 17619535.46390418 2744.2183045767265 0.09427232132143282 1.4704642506184162e-05 6576859.81917329 1025.8617916544624 21857 None 25204 TNB_20190706 15359726.153295785 1396.1695067605892 0.005572580075256825 5.071311224241664e-07 881041.8674821362 80.17897367554787 15716 1486 481694 ICX_20200718 216828230.63338023 23683.24300594222 0.38947664477497335 4.254426016170402e-05 20538124.116792362 2243.470327118132 113327 27787 129774 FUN_20191213 23124327.181910068 3208.4093314920265 0.0038800522968535597 5.390248128277274e-07 1657848.1090827363 230.31165518562355 35411 17222 373457 MANA_20200313 23668519.48268444 4918.124289794155 0.01823543746517608 3.8177811803142645e-06 18065319.840357803 3782.1652611617214 48079 6786 51080 REQ_20200903 26754483.72988288 2344.709001453651 0.03477369536141702 3.0483134864021684e-06 449421.7031928502 39.396970172018314 39565 27721 292019 AMB_20210511 11073350.476316595 198.17934281984756 0.07658396712738534 1.370620419565243e-06 4464418.35935981 79.89952981467371 25671 5620 453287 CRV_20201014 47504936.218014695 4157.955349631725 0.5454908239241394 4.775789700295337e-05 23822222.271145504 2085.6432183817033 40525 None 12764 IOST_20211204 865330283.9666187 16116.492755186178 0.03781223994454736 7.03615594524852e-07 84248593.39245147 1567.7099324093442 269741 53973 176563 SKY_20210108 10757442.000787988 275.17541408819915 0.5697281578990714 1.4433202248803917e-05 615545.4377325395 15.593913821784726 17192 3819 758913 COCOS_20210909 35323101.70041819 762.4482771191724 0.8364140081064009 1.8107584245266978e-05 14686712.603764081 317.9536487686991 None 1209 337064 XMR_20190826 1376589345.9181573 136358.4154802285 80.24461057686378 0.007944538970339341 110633012.53988259 10953.112903292622 320350 160555 90338 TORN_20211202 64557789.56507678 1129.4808487834084 44.29338373916502 0.0007747935110198075 3254067.627762785 56.9211532191185 None None 84336 BZRX_20201115 23183106.680124007 1440.3181256454673 0.16762566472439264 1.0420553979162551e-05 7825242.404845338 486.46107392799837 15488 None 79091 QSP_20201030 18300565.346393317 1358.612458507406 0.025299997394536512 1.8815093243042177e-06 477463.1143751354 35.50796024596215 57617 8208 255488 COTI_20210219 90820865.49425597 1757.2315687195187 0.1358317520298863 2.627283861045376e-06 18496630.365503684 357.7653804562381 41343 1613 218044 ARPA_20200506 0.0 0.0 0.009951038170756935 1.1058983886794347e-06 1845686.7133540707 205.1184938978128 16744 None 1333028 HIVE_20200607 90558586.73197398 9359.522627314986 0.25245894741328506 2.610874349176225e-05 7099874.522589749 734.2532504127803 7257 85 109710 WABI_20200501 5168829.577974983 597.3137389417877 0.08753775688001471 1.0155540824401385e-05 1354446.7732316053 157.1337899243413 36577 7705 1649170 ATA_20211021 199263766.349876 3006.5955158626152 1.155723829075828 1.7442083864087827e-05 31855588.131358437 480.76177521692296 72218 None 285149 BAT_20210710 859328394.4783205 25284.33199880388 0.5723376856500579 1.6842065310188385e-05 74980553.5686004 2206.437583717966 208001 76054 27779 WBTC_20211007 11482947062.08397 206865.61868619607 55148.07296277487 0.994110394057497 779903974.5451579 14058.707871541263 None None 275397 CTXC_20200412 860084.6236629167 124.99238799157203 0.08402962587593431 1.2209148287520168e-05 6806724.138526898 988.9881514195645 None 20066 374531 AAVE_20210704 3322608976.694577 95842.96980738443 260.04830106795333 0.007486777158529428 369525009.56020176 10638.60594250819 248442 11655 14216 STX_20210110 460264340.8550943 11374.194276425516 0.5018226160341439 1.2448344307805103e-05 5469845.411184813 135.6864294539158 None None 83877 BADGER_20210617 115273310.82454918 3013.723227149434 12.855527928930535 0.00033606885008655765 7605473.819992999 198.8220830119654 34824 None None NXS_20210602 47534512.85518006 1296.0393363167145 0.6973452156557208 1.901327637953455e-05 850478.542076342 23.188491456352676 None 3940 484534 ELF_20190302 52867778.62266828 13827.965636148803 0.15998069414031424 4.1876923675223056e-05 7399234.575448444 1936.841087208683 86579 31425 984154 NEO_20211104 3323669705.041447 52794.7000318707 47.16079469014372 0.0007479431714091906 354123376.8099814 5616.193774121116 423767 114697 82188 NXS_20200629 10870282.165552916 1192.395873613981 0.18205772961971753 1.99704922330357e-05 81535.657621221 8.943905983235442 23321 3527 462582 ENJ_20210115 168324250.8889928 4309.751203299086 0.1825904828200485 4.662452097291277e-06 18391665.95796846 469.63160507616124 72040 16123 75025 OAX_20190810 4244171.870898185 357.7951817837717 0.08125760512871132 6.850236155066082e-06 1178962.5781158512 99.38973792405694 12307 None None STEEM_20190803 73852359.66445085 7018.1219627173605 0.2309619781457709 2.19481048234904e-05 642521.5116304611 61.05822959185235 6109 3765 297203 XMR_20190805 1508147151.6574924 137781.44743969844 88.01872779536133 0.008038213696967396 91619422.29437508 8367.043169575301 320392 159949 104374 QTUM_20191108 212215989.7823187 23019.40874479035 2.206469387090066 0.00023933486572260028 481063551.24924856 52180.77400752827 None 15281 182498 ARK_20210711 149121002.0663085 4422.361763481592 0.9405112884560113 2.7900753728644654e-05 1775209.668431659 52.662512809315636 73127 23419 123483 OST_20200422 4402851.1530719865 642.9382933624244 0.0063646712453071935 9.297654870436887e-07 153566.4385826606 22.433330655946673 17765 754 821883 STORM_20190524 15075229.227632232 1916.4053468259478 0.0033361274153433517 4.2409785747986227e-07 1892134.828046785 240.53347691310572 26980 2570 8080480 RVN_20211125 1143336710.1521242 19985.812697462556 0.11249139575350378 1.966669002320637e-06 45486693.31955126 795.236552719547 78120 58388 60566 ETC_20200411 608755521.9261304 88783.19366201277 5.242108081633175 0.0007643233465508306 1826915001.5939012 266372.56732164393 230776 25373 329004 DOGE_20210711 27673709685.758076 820696.9767649997 0.21176782054946391 6.285397803284271e-06 1746924474.0137625 51849.78162867261 1950039 2111934 8998 PERL_20210916 0.0 0.0 0.09894757931682342 2.0533045743016265e-06 4563984.533601198 94.70924285958638 745 688 2872538 OAX_20190325 3327530.3714170214 833.2316281618597 0.14111718920791194 3.536440875253643e-05 271726.013886099 68.09538850442628 14347 None None ZEN_20210429 1356358830.751905 24779.154584852055 123.41179272074164 0.0022538647561342537 161996435.48050323 2958.534581659293 102009 7123 749117 HARD_20210624 53519848.48621833 1587.5596820725036 0.8040845548947185 2.3859019480694018e-05 3173239.684254173 94.15724625309421 34057 None None NANO_20190708 178694982.29490426 15633.196427719426 1.3408707354796825 0.00011719911618483652 13539447.430543188 1183.4185283513195 None 46738 329357 LTO_20200418 8711911.785977954 1228.2362286571602 0.04103005171393639 5.828191300499616e-06 3372689.723529498 479.08009092960594 14588 423 889154 LEND_20200518 69880652.65267125 7226.51381214433 0.05919353933392909 6.1279180672069655e-06 2254490.656017548 233.39259957784645 44701 5724 81711 LEND_20191220 11108325.785403669 1555.2834812338137 0.009907180908146886 1.3864646751781453e-06 360396.4567698601 50.43583649107322 41494 5781 410492 TWT_20210202 104415999.16026112 3127.188072646812 0.3010261664674166 9.012416904503327e-06 14138643.862985613 423.2966006007195 None 6555 11832 AST_20200308 3568673.2996649467 401.49857367621996 0.020779828580130066 2.336875156842379e-06 5695520.035041736 640.5115048886396 31809 3484 336261 PERL_20200417 4434102.607637385 624.4324812789785 0.012484348931599066 1.7619529163627083e-06 1915706.2006789413 270.3692555914525 11633 481 526137 GRT_20210508 1957893274.6871476 34166.984885020145 1.5983292789512802 2.7885621876945652e-05 450208765.91719306 7854.671485646895 98654 14257 27969 WTC_20210427 43199458.31411867 801.8784132947177 1.48701720311376 2.7585316542383523e-05 15984812.78119331 296.53061142576576 63465 19480 334285 LINK_20200725 2837037520.5487394 297352.57881547324 7.425007716458686 0.0007785980122647192 541706400.8211598 56804.187014581556 67730 18472 75270 MTH_20200314 1628756.5638817234 295.84104376895345 0.004734880808015209 8.511289610445934e-07 199325.33480300446 35.830165953398584 19219 1930 1066623 RCN_20190405 15287079.121136602 3120.8950014991697 0.030930905087293743 6.319163620274726e-06 1533581.139500403 313.3096208507458 18865 1114 1899234 VIBE_20210217 786460.8319449225 16.0184745472 0.0038775927451109387 7.88e-08 22949.055718031443 0.4663681076 18591 None 825902 SKY_20200718 9211141.611361496 1006.2659052394214 0.5117300895200831 5.590366140219008e-05 303607.3181185862 33.16740809055424 16088 3820 1079623 TRU_20210708 56191614.88812493 1653.3073322078053 0.16048933337284912 4.72353138581057e-06 5719988.476953655 168.35103324029552 27209 None 106582 CVC_20190314 25433452.099831678 6578.074924939911 0.0742560459377402 1.9208474862481927e-05 14995755.83141257 3879.0861443540402 88440 8210 405899 SNM_20190513 10623374.750636915 1527.181796536239 0.026322280531330188 3.7932365579082903e-06 135900.3010911303 19.584244978927313 31541 10025 15333127 GXS_20211007 43433019.91042724 782.4470919009713 0.5794164279077281 1.0444811177637544e-05 7942602.149246562 143.1767822109277 None 26984 848650 SKY_20191113 10198341.256839618 1158.7717803030584 0.6372304680077056 7.239590913082733e-05 158632.44790114253 18.022271156238787 16332 3805 1279974 BCPT_20201228 2439276.61290348 91.76534693 0.020512681606957097 7.8e-07 248538.4510927942 9.4507386 10382 3210 2904727 AKRO_20210114 24314533.783604387 654.1032041796349 0.010382061077258132 2.777752737586773e-07 4213631.184750396 112.7370131183288 25562 None 214700 CDT_20200704 3922358.4785247752 432.67597891437435 0.005814833985049751 6.415213482364996e-07 235635.4630317332 25.996473901938234 18941 290 305990 POLS_20210804 81801487.78911373 2129.3766574664705 1.1316181415576876 2.946225941542905e-05 13073744.644296974 340.38165534457175 383798 None 22359 LEND_20191019 7021623.931322272 882.2726523547786 0.006222869599742895 7.819085329437728e-07 3131899.9260483445 393.52572591338713 41491 5801 671068 WABI_20200309 6503308.587507376 805.0147231276469 0.10919824785710361 1.3574152140139173e-05 1189120.383211786 147.81648342727826 36854 7777 3668499 ONT_20190901 465059002.521945 48449.63831574652 0.7145424982989631 7.444071701887135e-05 39806233.202129014 4146.995522927019 81427 16276 256067 FET_20190305 0 0 0.3306582355468353 8.905660567813175e-05 37345509.42082774 10058.31383827283 None 108 214900 NMR_20210523 217331752.3033209 5787.052837577937 37.9794190893202 0.0010113059996114233 17298423.0588137 460.617867325785 28784 3385 635788 ALPHA_20210616 183460401.41878125 4542.586820144179 0.6414071650083283 1.5891804327511157e-05 32120534.500641637 795.8334066515149 67024 None 42873 ANKR_20210428 1081534764.824342 19632.169364569934 0.1546799303314466 2.8069741532083546e-06 133114762.0467202 2415.631398818006 80512 None 5736 MITH_20200531 3048167.7909726095 314.8025572470468 0.004906654889206695 5.072116566291195e-07 8867760.277492685 916.6797915278227 96 2098 803850 XEM_20201229 2081282216.679068 76753.29235508708 0.23071019629227432 8.499880528323814e-06 91872606.40452191 3384.792656822439 217708 17877 152677 QTUM_20190706 454348712.29009145 41339.002259851855 4.741354623411154 0.00043148567800000494 436464159.0264961 39720.301166749174 178670 15370 346886 AE_20190430 117525852.93376367 22580.794114891392 0.44184168397311196 8.489262989934667e-05 36267119.417125605 6968.131930216012 978 6346 416342 CTK_20210902 152459311.97724015 3134.749553846617 2.726350126223445 5.6034052964643074e-05 18802129.449499793 386.43588264312297 85669 None 86686 HOT_20200610 112685726.56416467 11530.0648960798 0.0006372064715181014 6.522253065284807e-08 11067291.557821615 1132.814550916753 25331 7050 546031 XZC_20190530 55569890.228692345 6435.075113706965 7.329784911039132 0.0008476065241901559 3122367.04910371 361.0663496756651 60285 3978 368691 GAS_20210519 160526428.9550544 3762.1691992459682 11.59988287391691 0.0002711337246247618 18269390.90010284 427.02569113941325 397872 111257 83834 LSK_20190511 237058044.67203018 37202.34605521312 1.794947914069311 0.0002817459895617763 2834896.3647040725 444.98265120566 183627 30410 170512 ANKR_20210427 1016736144.3149406 18867.709491610043 0.1440724933401562 2.6726559218794785e-06 119993031.35014957 2225.9633215694544 79399 None 5736 RUNE_20210711 1675865896.08135 49698.66702303581 6.161563432019884 0.0001828789528075091 39364207.03105224 1168.3536231285511 2594 5873 58738 COS_20220105 87474809.54902735 1888.7184652404485 0.025452045296670053 5.540506015148679e-07 8658293.498350544 188.47729779425657 38299 None 138222 AST_20190723 7552065.724217709 729.9218090226942 0.043650727635937955 4.220702232629294e-06 1429456.2748052324 138.21784005151684 32019 3597 228402 SC_20190130 90756496.39944555 26578.015644223156 0.0023161946945270996 6.781010740935569e-07 1546705.1853913548 452.8213668730863 108924 31258 187370 FET_20191030 13929921.909932733 1480.2231270613688 0.040951118086583124 4.351929469991423e-06 4916612.42493075 522.4949037860915 16341 314 518889 IRIS_20211021 129441351.8464547 1952.8406628186292 0.11522290000765587 1.7385431422561283e-06 6437974.398526487 97.1395116755008 29353 None 502613 APPC_20190227 6345099.894805165 1665.4300824415225 0.0608997628549535 1.602305907250751e-05 2264536.223153761 595.811805734715 25273 3416 1561264 EGLD_20211002 4790525484.442951 99471.12978212994 241.61296530065718 0.005016120598806346 262528444.6476112 5450.346331086946 336605 11216 34852 COMP_20200713 21085.125623795586 2.2719805482842332 2.288699940159075e-07 2.4633e-11 0.41032866980862953 4.416317729572469e-05 1830 None 1076754 ETH_20210804 294760000421.45154 7671592.618880704 2521.268474889094 0.06563147884009882 26304380467.43418 684732.86650929 1464027 1053868 3722 DOT_20210711 15507578349.20516 459930.2325136706 15.36268352922368 0.0004557419512355198 420597815.0755611 12477.251683490149 496800 27277 19390 CDT_20200314 1590179.8680532172 288.8341219169466 0.0024091165849491904 4.330560745081626e-07 123826.42975335094 22.258693466459142 19259 290 235568 NEBL_20190701 16310334.888624322 1503.8096067761223 1.0657749291572407 9.833731809587442e-05 1054068.5043859999 97.25718533519367 40267 6148 707671 BEL_20210210 66203614.13759966 1421.0729856580792 2.9518707309994525 6.335228499521291e-05 46297611.452196755 993.6273443532938 10950 None 421105 YFI_20210310 1409716722.4391885 25791.742380789805 39073.04562563714 0.7136188738106891 373659199.16301113 6824.404205664321 94893 3738 21151 JUV_20210725 22471471.937128957 657.7217641603036 10.1940563231803 0.0002983717634336811 5506058.460877196 161.1578669430324 2570669 None 42486 DCR_20191022 153501280.7274807 18692.439899881112 14.517374326640242 0.0017664810365284713 8497972.758896945 1034.037380987 40642 9642 135598 WING_20210106 11290918.613900188 332.31007274126904 13.491675799592548 0.00039592794550921695 2831304.012528215 83.08770514824798 7106 None 329521 PHA_20210429 164448704.92949393 3004.244015214178 0.926473296709591 1.6920145675854108e-05 50532534.13967006 922.8736997061011 None None 139188 COCOS_20200423 6794459.021358442 955.2742982140807 0.00028092246681592827 3.9487308188095306e-08 521374.6283249117 73.28598834926687 14900 218 64758 LRC_20190905 33173126.204486273 3141.4879244472413 0.034286297248856346 3.2459532739357085e-06 2847574.331517641 269.5856352488832 34423 2439 519433 PSG_20210301 0.0 0.0 9.22196584074462 0.0002042873274130302 7527402.178693937 166.7489231693186 None None 28774 GAS_20200607 23827736.018131915 2464.21152453119 1.709905795492153 0.00017683465873165978 11220550.372756269 1160.4043925569924 320218 99599 220108 REP_20210422 236587177.35928172 4366.413351411882 37.07948898798143 0.0006846624103500019 35316170.49822199 652.1032268131215 147329 11003 149141 ZIL_20200113 48118286.0798381 5898.892995372032 0.004702525392591345 5.758126163601276e-07 52793344.42794096 6464.41459504858 67229 10515 237329 BAND_20210916 340074751.4318391 7056.499661870143 9.69790329439263 0.0002011746549960538 88867437.31965244 1843.4784819417184 106106 5715 386356 PSG_20210111 0.0 0.0 10.289467076984835 0.00026828909543371573 2933054.7640007827 76.4769062968722 None None 36186 OMG_20210112 432628094.1734202 12202.62419640369 3.086829884314866 8.68339565574104e-05 354593481.5718403 9974.879124634434 289339 42566 211368 AE_20190708 145104864.67546308 12702.475587051173 0.4556110872238147 3.985930399244241e-05 29955514.50455725 2620.66923384729 24802 6362 357340 SRM_20210722 136192915.37141705 4232.0968142868805 2.7335210415816737 8.464126696182765e-05 38401127.37282605 1189.0598331439264 96630 None 26595 RVN_20200310 132162318.47046897 16692.980897009827 0.02358407323888828 2.975841372708343e-06 22748343.692130346 2870.388911785003 30263 7552 183648 ETC_20200718 701488661.482262 76633.83281877778 6.030690577091499 0.0006588202473437906 521038056.5330386 56920.582625245224 232025 25604 352262 XTZ_20200721 1986938228.0187821 216872.3412661442 2.7681113674034643 0.0003021545349001435 135208065.59608132 14758.701783466731 68346 27566 67459 XRP_20210602 46674110292.99546 1272401.2113354858 1.0113344632384653 2.7570385123828792e-05 6148630529.12447 167620.22637818605 1833515 316965 10950 BLZ_20190523 12839069.29515315 1674.5713615837742 0.061986747526724006 8.088388732060513e-06 1015557.2755623781 132.51577719704457 36597 None 862077 NEBL_20191216 6964524.855570649 978.6391214050826 0.4395519104831224 6.181179274953694e-05 73097.7019480604 10.279331964033 39980 6057 848915 RVN_20200425 106474081.72416644 14198.893529286897 0.017680593349030157 2.358902015970032e-06 10326767.030828197 1377.7722888926528 30419 7637 218336 AST_20210104 11835461.833939178 354.08605266056264 0.06776536146838312 2.0586296967732126e-06 1456552.28829229 44.248296336181696 34550 3466 211626 DENT_20190325 40399513.19653752 10124.148199854835 0.0009148998696003992 2.2927676732932524e-07 936348.7784638617 234.65193094051247 43411 8861 257059 ZRX_20210707 602846587.8391036 17649.666469947115 0.7111747853857346 2.0822956151355782e-05 81811760.00001352 2395.4205437999713 221906 19554 58387 RCN_20210620 28824792.354027066 808.5697509346006 0.05456526125568205 1.5325764322605027e-06 1914847.860674817 53.7823999207751 19747 570 2606607 NULS_20190615 73994756.3010099 8522.243188020757 1.0319321433534214 0.00011892695503767826 50359713.73676494 5803.7996488993995 21134 5316 664729 AMB_20191017 4873826.3545992 608.7043450596142 0.03370462014175877 4.209836487011938e-06 852061.5558264389 106.42576037977932 19188 5597 589761 XMR_20191022 992785265.2418264 120896.01500075703 57.70496668983792 0.007021567886697632 99311065.00624186 12084.217786479889 320045 162025 81315 NKN_20210422 481559829.3683013 8887.587619612332 0.7392791798319954 1.366807203493122e-05 352779753.265676 6522.3250047381325 23854 2453 154711 XVG_20200621 125874017.31057298 13453.18249913749 0.007727257465813591 8.255695844460206e-07 22374353.119072445 2390.4451855631705 290731 51724 273967 INJ_20210819 298803500.88564014 6632.640930848606 9.137136227376182 0.00020308271164310262 26540604.27320174 589.8935673410771 None 3882 170499 BRD_20190314 14263862.868042883 3689.186914020033 0.23801083790397495 6.15588131148912e-05 1269059.12290165 328.22779864322183 152 None None BTS_20190524 171118783.4813313 21753.09885204851 0.06313889623336112 8.02639326455579e-06 21142638.376271706 2687.7113852456123 13760 7195 179069 GAS_20201101 16946298.451269377 1228.1052529610195 1.2170199861483928 8.829422324667782e-05 1884590.1540747061 136.72612256679398 324419 100967 108774 HIVE_20200905 69303066.87991394 6610.047635202377 0.18878365604404315 1.8001644814912093e-05 4960544.5934345415 473.0174408673808 None 90 158511 SNT_20201224 108471100.9958275 4639.044196592941 0.027826069391394915 1.1933441028952285e-06 11914642.877316969 510.9693581137182 114204 5680 158181 QKC_20190819 62225211.53089829 6038.326714354829 0.015558652487739195 1.5076312102935241e-06 2875042.1743118125 278.59117724484145 51308 9236 287849 YFII_20201129 72185416.41751462 4078.410178762664 1816.3333307602388 0.1025348493678178 101239291.40730332 5715.115897921448 12411 None 71930 DOCK_20210813 58237523.62649061 1310.0356542794746 0.0844000171786655 1.8984362029449565e-06 30596183.629145265 688.2096072393191 52701 15156 292152 KNC_20220115 130942802.55518402 3038.0219094755926 1.4233550216139081 3.30011228956088e-05 27852186.564060677 645.7654048037745 203751 12277 100267 POLY_20190513 36931838.98086978 5321.470143705376 0.08353732549138841 1.2017015002379845e-05 5544657.703892677 797.6103426678171 34696 5059 307356 BCPT_20190923 4155215.8100002776 413.3481420260509 0.035771782872364835 3.5584786992824057e-06 1042153.5606981938 103.67057354557495 10907 3117 1056617 CND_20210418 85100396.23276325 1412.7159936673513 0.04413883710104504 7.32253545016498e-07 1205826.5529171678 20.004395811952975 35513 6173 117159 COMP_20210809 26838.783463246527 0.6035372027667238 2.903329573797449e-07 6.5436e-12 703.990097230624 0.015866712624750378 2561 None 6364625 RCN_20190130 5602411.998353246 1641.2989702582584 0.011262859253668997 3.299319853180011e-06 238359.23838707458 69.82448680987967 18141 1102 1535694 CELR_20191203 17544003.032559197 2399.6670998302034 0.004849698139477184 6.63792686516367e-07 6518146.837366201 892.1582489977216 18636 None 642881 NANO_20201014 108070811.15289202 9459.677729045912 0.8149001328478639 7.131874004348657e-05 3680047.239517978 322.07177523179 98755 52726 248744 MANA_20201115 105915003.02949996 6581.655058873221 0.07968778555762823 4.95384088259104e-06 47856072.28776191 2975.0025768742557 53997 7505 81691 ZEC_20200323 280127204.5070307 48044.15887805993 29.545454956127532 0.005063574274279171 244055383.9366442 41826.824648189155 72928 15639 148838 BQX_20200105 3530220.8543084017 480.33382287993345 0.02521552946844992 3.429247688147421e-06 4966101.7500309255 675.377170513378 9188 4 319214 BTS_20200412 46293871.36949476 6726.431987562714 0.017077985361891927 2.4813588488813317e-06 33066937.729595583 4804.4858220706565 13236 7015 124371 PHB_20211111 0.0 0.0 0.7948533249091462 1.223802159873261e-05 1772867.5215362755 27.296093933723487 None 381 None WNXM_20210711 125976716.45745194 3735.904464977777 58.78686325423532 0.0017441304965324328 7614861.815208908 225.92313968766342 31085 None 117063 WTC_20190205 25448011.020917643 7345.802887785511 0.9611096416418534 0.00027743315480522143 2070946.4719393898 597.7977831555113 54543 20428 741681 FIL_20201030 785185480.0337508 58325.65113004238 32.56480146503134 0.002421758064268158 69548217.67366283 5172.116808006098 39386 None 59075 SC_20210614 758803655.9721185 19437.779034327465 0.015790610520622916 4.044977850347533e-07 49961492.25832915 1279.8310064788986 137791 46735 44919 JUV_20220115 21822118.23966011 506.297956279917 8.068654462563579 0.00018714197296056389 1659806.339405165 38.497054810058586 2799909 None 38699 BNT_20210704 729425114.2017448 21040.972010768226 3.2777681792923823 9.436677661381168e-05 32712574.70515859 941.7933364435667 123885 7549 36831 PIVX_20210202 30857035.33731618 923.912494395778 0.473616372547779 1.4180885472757073e-05 644895.1095384653 19.309264249270704 65022 8763 328598 IOTX_20190305 19959297.023150217 5375.663006438644 0.007904546852179563 2.128941718069391e-06 3263762.183824718 879.0332451613964 13597 1631 1423177 REQ_20210324 98834119.43490718 1811.9123947004714 0.1279115384270653 2.3464863177503294e-06 1381760.488545502 25.34784680608598 41900 27411 352445 WTC_20200721 13950268.258218303 1522.6579748618037 0.47754851306728674 5.212082089159624e-05 11812182.463349197 1289.2106867984967 54602 19512 745990 BAND_20210511 526940890.397287 9437.723703453586 16.16853469422591 0.00028936766581305336 240981610.9196064 4312.838953834117 90794 5119 164496 ZRX_20200417 111517695.66422382 15706.628464268284 0.17084014138182785 2.4083007444868042e-05 45052580.70770585 6350.975993219408 152375 15936 132812 BQX_20190124 16452391.687411916 4634.563478326596 0.1772939771977848 4.9919611225151046e-05 2037034.6370965883 573.5557334956039 60818 5836 333871 ETC_20190205 418675908.63443035 120854.65917807992 3.875304541854752 0.0011186423674213906 195878093.21705887 56542.01664817989 225982 24116 447874 LRC_20190810 33893745.10113117 2858.235381478494 0.03513788272893088 2.9622954022410406e-06 4048415.568614756 341.3012365538574 34668 2449 581854 POLY_20190818 18349249.493994962 1795.1474293288652 0.03700723586752319 3.6207224643487396e-06 3141837.9176994176 307.39186165319774 35253 5069 281069 COS_20200325 9736114.097290974 1442.5846191568144 0.004951263185992592 7.327330761117099e-07 5820032.815115046 861.3015280130824 10308 None 117572 REN_20200325 36376963.091364354 5370.842366115319 0.04143899747708366 6.1325207228469725e-06 1559718.8519500226 230.82141856081788 11369 873 365958 ANKR_20191216 7074669.743663596 994.1585932635525 0.0017619044489146432 2.477995688748577e-07 1468670.7776054766 206.55829873971234 None None 5508 ARPA_20210806 42285714.01152935 1032.077961305388 0.042917764734354574 1.0479928200332208e-06 8378652.4608756695 204.5951757949453 43275 None 741710 ARDR_20200129 50784327.24820755 5436.300348988811 0.05070027751733685 5.422259437944143e-06 4970651.449149129 531.5979133183907 65142 6420 1194906 LSK_20190625 280334544.70571095 25395.809648139613 2.0948451703708417 0.0001896692031853912 6990129.079631985 632.892698443259 182825 30478 183148 ACM_20210310 0.0 0.0 10.980388417292522 0.00020054265775511712 11369341.705677114 207.64638881005845 None None 69992 VIA_20200713 4849035.698659517 522.1886632459574 0.20928545305522564 2.2537778180916327e-05 191635.0308131566 20.637018737371566 38618 2156 2172267 TKO_20210823 170545785.40958947 3456.409379291029 2.2691067257947033 4.604709323434486e-05 29253031.954086512 593.6332013230135 312214 None 26828 ZRX_20190318 154873189.04939595 38890.98477878314 0.26431985531360525 6.637797030471015e-05 21140099.03424315 5308.859087671402 148184 15724 207676 KMD_20190819 93976169.37572105 9119.435677167212 0.812505902916829 7.873130676746077e-05 1700039.3448173106 164.73273448607262 98446 8426 208596 AMB_20190703 5429379.847430271 503.05567755234637 0.037627331133018214 3.4791117999309015e-06 675612.6627149537 62.468740573835845 19382 5668 665326 BRD_20190613 27015892.16782091 3325.24269353591 0.4508862464964549 5.5446951355050305e-05 242706.2408183673 29.8463775127125 168 None None VIBE_20191020 3450653.06442717 434.2311859802831 0.018439702322753125 2.320457507385403e-06 74169.61724021744 9.33352622144 20135 None 1006248 VIA_20200531 4496887.3312600665 464.02874037709887 0.1940992942658468 2.0028887626372223e-05 1977457.3198991304 204.05159429359082 38865 2158 1843164 GO_20200318 4785251.575241725 881.4464860970772 0.005157244073617204 9.525260862268341e-07 733905.3781937822 135.54991921517419 10678 678 690987 ENG_20190810 31417316.75014217 2649.3999426276555 0.40085604199966846 3.3796531315443945e-05 298759.4298515402 25.188674658345573 61716 3481 330014 DCR_20210727 1707343320.4699762 45604.07801004181 129.36636114919168 0.0034671491617110444 23455330.16466833 628.6265424463762 47530 11444 137794 AMB_20210212 4614824.263679391 96.78037237554726 0.03150138483546792 6.597677431995256e-07 1361174.7536662603 28.50856240184779 20637 5468 398433 OMG_20190316 210871000.6118868 53733.11087726302 1.5034660860921987 0.00038310086029167827 252309343.4007415 64291.391346039956 289187 37001 None ARK_20190906 31279048.290175676 2959.5083148967947 0.219117705547424 2.0731375221168184e-05 544780.9840337423 51.54334272141397 63214 21779 99618 SNM_20191011 5052778.107424564 590.7348692438263 0.011551790844158421 1.3494537474041296e-06 268230.194929433 31.33403699890427 30939 9830 6623482 SNM_20210110 4249253.145245855 105.02443099490512 0.010077500396679278 2.5000029480714214e-07 412596.97545232665 10.235610165156277 None 9496 None STRAX_20210702 171249536.45667678 5097.445977721699 1.7102545487361411 5.084692032751431e-05 33632783.13700122 999.9233423021326 157825 10754 140717 OST_20190708 14036141.52151907 1227.3682062249723 0.02160065556120102 1.8888351780144704e-06 956984.0320168701 83.6819558253762 None 757 618395 BNB_20201201 4628855599.420553 235580.09489766564 31.24495320461204 0.0015905778989230462 485785914.1281714 24729.764629839276 1344327 78376 907 TNB_20201224 7201379.450894693 307.9588189847561 0.002044078960713168 8.767042442248208e-08 488272.58231150813 20.941981864622335 15671 1415 3433473 SNX_20211120 1659362395.9597826 28545.600137540245 8.695757100605409 0.0001490760038364893 52785556.974396646 904.9309684005003 171883 8364 47716 PSG_20210218 0.0 0.0 11.123205421422721 0.00021339175909962135 3604705.8314893777 69.15403332718408 8660523 None 33422 XMR_20211120 4323238324.85772 74115.58138597003 239.99162366309056 0.004114304458600085 170913426.08982348 2930.0600590258177 455808 242428 34214 XVG_20190605 138233483.47896346 17995.753600044838 0.008529140146527395 1.1103554698490636e-06 3890404.6180146774 506.4674719054083 304426 53067 390528 SOL_20210108 617487734.823374 15775.343211267742 2.3674092848829695 6.004127137328507e-05 219251174.2197483 5560.559103277347 105832 2875 92318 NEO_20210722 1974232331.0069184 61349.48994804142 28.04872350234441 0.0008695788023669798 315316028.47306806 9775.565522039002 407031 112364 108336 ZEC_20210916 1615362024.0057626 33518.98601352758 139.65796504027725 0.002897582967896182 271923081.58147824 5641.781258527574 78641 20525 157844 JST_20210219 87039761.49843037 1684.0746500718876 0.0606825805640194 1.1737341393296275e-06 123400822.98881783 2386.8424417208757 None None 122927 PERP_20210909 884433469.3376464 19090.47457502967 19.646664331276263 0.00042436217772101706 150402238.18347624 3248.644159306454 None None 120620 KNC_20210727 126971224.5699727 3389.5272313982255 1.3724012240590133 3.677104455468456e-05 50400417.30797657 1350.3893452710959 176677 11247 107693 JST_20211111 119904078.18964069 1845.9191465093886 0.08362386455322432 1.287386509404323e-06 352409421.5892998 5425.330885686174 None None 192359 LUN_20200721 1198757.0288755214 130.85090317660163 0.4434329140799515 4.840313416975109e-05 198017.79266619752 21.614727915059056 None 2120 1675739 KNC_20211202 178467827.59701133 3120.929488849984 1.9324250858639778 3.379299516708718e-05 22017489.286829967 385.02755656816765 197978 12184 88657 GLM_20210718 293486469.0763865 9285.709036386063 0.2932283934122239 9.285550099136341e-06 2683748.6862421767 84.98523144230485 158638 21015 185713 ZEN_20210806 737888959.2824465 18007.67093863498 64.79119843209284 0.001581945254021437 90688625.07115375 2214.2581630961063 117653 7471 1280845 EVX_20210806 9307256.786075406 227.05800084747057 0.42740288347861805 1.0436590906341923e-05 1758008.3193287007 42.928146598939016 18296 2802 2085195 KNC_20190719 30065222.05880646 2805.5719016921266 0.17881700185935795 1.6759499747337703e-05 4317126.518833438 404.6196952710372 97535 6696 215847 TCT_20210131 6874736.158958957 200.9424976247047 0.011932376606549121 3.492627862022311e-07 4086189.3113422478 119.6034881304259 None None 1849521 POWR_20200208 23346564.766737375 2383.523500032362 0.054891185483224074 5.599069554913364e-06 1463402.755723392 149.27157692105834 82563 12835 334086 RVN_20190905 138524540.70930007 13115.466240966016 0.0318225510159814 3.0126074100672508e-06 14802800.61942096 1401.3655540506445 27599 6968 276399 DNT_20201111 44539167.216361925 2913.471464134405 0.061455132381808476 4.02293383497269e-06 38198048.42241022 2500.494514823095 58824 6045 606726 POLY_20200704 25775888.57065117 2842.5800258318936 0.03892205273372613 4.292063762832523e-06 1961825.3001198482 216.33697835151 34941 5004 323415 NXS_20200417 9224935.953368135 1299.101567266302 0.15436583773859006 2.1785797419274024e-05 50876.19155631079 7.180205276940507 23688 3530 498708 WPR_20191030 4695049.042941559 498.9318706821526 0.0077183922113163925 8.203349082220811e-07 269668.51368351746 28.661214585417383 None None 763120 TNT_20190706 27354830.99539866 2488.8843959453034 0.06384136937270649 5.8086188898128086e-06 3098257.9621744966 281.8955780778355 17606 2537 678101 AST_20200325 1966002.0951460998 290.8526985634182 0.011331152892338688 1.6768873321426884e-06 3508653.307942982 519.2425114083674 31739 3475 355183 HNT_20210201 152611892.5854436 4617.848822243844 2.2621116269272723 6.841693486427736e-05 4756226.274918533 143.85073635507544 20859 2849 66241 IOST_20190201 75392629.34500015 21972.164584460323 0.005656045740802505 1.6483782167280273e-06 2382178.258626726 694.2537118390168 196078 47880 76980 HBAR_20200506 164006831.7766652 18289.96584012027 0.0401901297857354 4.479321147823744e-06 16523048.81084175 1841.5477222767358 38923 6458 102046 OMG_20190915 147286116.52492374 14227.94588361967 1.0484867677149066 0.00010131121583060593 53182664.15509807 5138.834873811988 287748 41462 None THETA_20210127 2311605366.296066 70931.32292497587 2.301346137946801 7.063200695654813e-05 258149066.86642656 7923.009227548604 81298 5035 50826 STX_20210814 1479675459.922835 31044.64851682511 1.4113786147187126 2.9582092536006573e-05 28224230.485096324 591.5718073524154 70799 None 61340 GXS_20190302 39481814.83946208 10326.766001452188 0.6580954766604028 0.00017210583499327166 7726564.447731651 2020.6594226332802 None None 478262 IDEX_20210723 21668361.693005808 669.9778290313147 0.03737574410948662 1.1544759022473963e-06 1815200.0661846823 56.06857559890542 53163 1975 9034089 KMD_20210930 107944546.49218072 2598.9801414752765 0.8436497033795753 2.0296496691002418e-05 2516289.714491942 60.53681481686107 115651 9710 139626 ETC_20191220 432158985.77336895 60499.58559808391 3.7270687401857456 0.0005215862310517562 435693715.67994756 60973.34363710012 228935 24967 418002 DLT_20190806 4713799.143680809 399.09558591484125 0.0587586975983897 4.974827337957154e-06 356326.3794366212 30.1685075760627 15045 2666 2977956 SNGLS_20190509 8198391.957999802 1377.2759931185967 0.013914924508311853 2.3359865657580454e-06 362102.5235692389 60.78844552692782 3451 2181 None SRM_20210624 143859919.4005505 4267.0184578203425 2.880136918871577 8.538496497163543e-05 45287058.70107037 1342.5868386751201 93246 None 25883 PPT_20201226 15323542.109952196 620.8295034340899 0.4239276845387288 1.7192198888756227e-05 2451123.7986707776 99.40423658238785 23603 None 1593572 MANA_20200425 38900386.29222284 5187.884925066118 0.029295220617081022 3.90849750388665e-06 16386894.855000501 2186.2998908387876 48187 6828 45768 VET_20190507 346648128.4222294 60596.01683125849 0.006250986127961383 1.0927512061242188e-06 13648206.30904919 2385.878579850499 108112 55432 330753 HC_20190812 97520161.91292778 8449.610112136359 2.2061952322665053 0.00019104070983423193 54199566.94542522 4693.294405919204 12920 847 463002 FLM_20211111 0.0 0.0 0.642738116548027 9.894931126953868e-06 39389747.88764531 606.4038096100734 None None 53804 QSP_20190812 0.0 0.0 0.01126586790367582 9.761283153517046e-07 70970.95152787893 6.149260398412125 56666 8564 645541 REQ_20200425 7456502.17118811 994.423934945946 0.009709323601941223 1.2953944794833988e-06 56628.10699277186 7.555185117876349 39281 28185 655698 WABI_20191113 12640774.825237012 1438.1732763566188 0.21443006794207084 2.4364306441804612e-05 3196015.075869795 363.1425921207824 36134 7899 1477014 SC_20211007 935255523.1598309 16847.330781469747 0.019120270831090972 3.446658958185564e-07 456802878.3420764 8234.421712283 141040 48967 134671 LOOM_20210821 81135219.38252091 1651.1663393183069 0.09707619708008942 1.9746077437965777e-06 8491870.301908217 172.73145592662829 34138 None 329311 MTH_20191113 4832067.393486298 549.7566637285524 0.013992355021711507 1.5896748720211107e-06 141296.5231383799 16.05273250918112 19401 1967 784910 SNT_20191011 47588877.56416583 5560.349257851648 0.013435602367011709 1.5691261313469546e-06 22389359.291552503 2614.8234942371714 111045 5689 289731 BRD_20200629 7537173.0989969205 826.6812560398712 0.11688943609464555 1.2810949827085005e-05 713069.8584485595 78.15164898557981 206 None None ALPHA_20210310 460477374.3397409 8421.533640594265 1.8502472840830992 3.3792384545327775e-05 164368878.17757303 3001.9859434157775 44751 None 36970 COS_20201201 18976580.64471814 965.2157599542273 0.006347633350269306 3.231371559844387e-07 733826.4688887037 37.35669422884019 None None 389177 XTZ_20200502 1997678977.5471685 225443.12219358183 2.807966616739096 0.00031794766879011846 283049082.9691333 32049.809832756524 60864 24274 100263 DGD_20190905 31007663.509414412 2936.4190724652058 15.509319224524427 0.0014682986951890327 763257.6555759325 72.25914971194013 17270 3368 548048 ADA_20210401 38261200550.94287 650487.101261725 1.1921924669843982 2.0287393524054808e-05 3359856102.2954535 57174.26071637546 297688 302631 8118 THETA_20200305 131927770.8038758 15070.29872260487 0.13198594933618596 1.5069590304943668e-05 7857025.122003615 897.0814711697707 None 4028 385146 OCEAN_20211221 329603238.91794384 6986.275347760687 0.759003126467893 1.609996269755049e-05 18478902.78682365 391.9742029838762 138796 4198 84153 BNB_20201115 4138996735.163435 257147.2452721084 27.953819650024514 0.001737766630580088 278005831.2590616 17282.40586499785 1322187 76369 670 GO_20210617 26550646.208951965 694.2412644174293 0.024789498303944522 6.472640723838381e-07 1006841.9835848332 26.28906138203059 22062 1088 102665 FTT_20200224 79505897.22206932 7991.338416122183 2.753685490244497 0.00027673331203159325 2469553.1911314786 248.17926238893943 7689 None 22405 RLC_20190930 14378141.382663975 1783.8115542217206 0.2050787485030747 2.546964265492091e-05 120317.1188134177 14.94271855965352 24761 3303 1199907 STEEM_20200113 43460147.02948346 5331.001030829272 0.1294861547614051 1.588330624014858e-05 772317.9821936818 94.73571169488602 10427 3801 188997 FET_20191203 21471497.35641897 2938.868049895351 0.06312725192809535 8.640415742300875e-06 13118822.726792376 1795.6124961394523 15774 319 514175 AVA_20210723 89251096.61915925 2759.5659503161673 1.7291561205431085 5.341265574474597e-05 1913849.3492588615 59.117725244590595 110314 10511 50781 RLC_20210523 425076626.5856056 11309.617219140959 5.955485322735238 0.00015848077305005706 195177071.76696002 5193.835857036066 43098 7416 165723 MDA_20200113 14721253.696883844 1805.8250638925854 0.7487607274378874 9.18490380042397e-05 5641586.6219975455 692.0425779022277 None 370 1886046 ACM_20210902 16784381.968873005 345.043933548055 8.388845652734533 0.00017241403336139873 3815715.2860413035 78.42352689021911 None None 40531 BAND_20191216 0.0 0.0 0.2645493363742156 3.719272496580089e-05 863286.2831281496 121.36854975782582 7593 989 561029 ALGO_20190702 95263570.57259956 8974.396812485738 1.3504772842627535 0.00012734965570333233 109588097.38836952 10334.12900329598 9811 483 350942 BCD_20200414 98069191.08436573 14314.050331838456 0.5196216070572849 7.58873893456713e-05 9743414.445985576 1422.962932211615 28833 None 841501 SXP_20210930 386417582.1149814 9300.896191004193 2.0653454607760757 4.966513894211442e-05 69878384.41160458 1680.3579530703494 None None 188005 MTH_20201014 2486646.5510953288 217.32942553099647 0.007200512175890133 6.294092553971038e-07 79771.57434638767 6.972971642119013 19004 1895 1459668 RAMP_20210420 158483919.69553107 2831.2995711487056 0.5743795430861222 1.027071104994301e-05 14798512.188577015 264.6181335799155 None None 95701 WABI_20210508 34093410.954198234 594.9755951239291 0.5765550990048809 1.0061080728496368e-05 6196733.323068492 108.13508426855117 44991 7752 287110 FUN_20191118 22031965.47005478 2590.1260942800322 0.003668314905475956 4.310799978465301e-07 260319.89697180202 30.59134875757162 35526 17270 389882 STPT_20210212 27445952.63388869 575.5862768199049 0.029885346553923907 6.259212969081274e-07 10679500.597678078 223.67238915461445 19912 None 1418206 STPT_20201224 14096797.30897928 602.9419284640737 0.015433249936951514 6.619311671398036e-07 2834902.8468036503 121.5888136185627 17544 None 2012677 POA_20190615 7460240.93444232 857.8213353450573 0.033813837466185284 3.8962328656383886e-06 1103735.0677038378 127.17896482603685 17638 None 614936 THETA_20190531 98829993.99806578 11892.948783737083 0.13279467864837807 1.598153079291154e-05 27458949.28548482 3304.620697256621 None 3991 221576 IRIS_20210511 151909896.38670725 2720.745968806186 0.1518673862839909 2.7175661599109956e-06 15973503.826111881 285.83525742568486 23803 None 498236 APPC_20190419 8347109.071310018 1582.8515627728798 0.07823518928803629 1.4823804370687354e-05 420821.93015585985 79.73626732797418 25701 3397 1308871 POE_20190908 6594465.110445555 629.9306336661978 0.0026197889349529554 2.502530950163912e-07 342596.7411504439 32.72626037599766 None 10729 694514 INJ_20210506 463028233.68151134 8088.156404172842 19.19852182270361 0.00033498552026460927 41079167.07696027 716.7700869052885 66385 3303 92186 EOS_20190510 5055951866.643172 818018.9849815797 4.84201142405151 0.0007842416959975981 2057640891.100125 333268.06586510123 918 64566 112167 PIVX_20190629 39057268.24519665 3152.9526979445627 0.6415391244147024 5.1819287183564886e-05 14036286.089787867 1133.7583511231378 63454 8631 321690 LTO_20200913 20986117.849188104 2012.5782631639215 0.08678819609536566 8.311927234257243e-06 2066300.2348726348 197.89485170906903 17999 553 1139240 YFII_20210127 71367612.15561107 2191.3436516125553 1796.1250799900997 0.05513176437405483 82847921.67753452 2543.003350763945 13789 None 182757 FUEL_20190622 7329455.941893382 724.4334294983437 0.009242689410722016 9.104977310146013e-07 4428599.235681075 436.2615010067322 1 1515 None LINK_20190627 824159792.5285007 63459.073899411866 2.2674121388379613 0.00017460040325523217 213404006.82415769 16433.0185102017 20310 8027 223883 NEO_20190130 453954457.57222503 132940.44122215747 6.981332793442729 0.002045271630911082 101302920.61406617 29677.999286181235 315945 97904 144733 COS_20190914 26159286.12839899 2526.261296414423 0.01988306345508328 1.920152308980578e-06 1228849.5835960023 118.67277749538331 9348 None 256445 GTO_20200129 5305835.1179647725 567.972736204496 0.007634452953719243 8.164843785655696e-07 927761.9335502008 99.22166399656672 16970 None 3211163 VIB_20190221 4047701.648192103 1020.5784286727499 0.024230266649165423 6.105141201073379e-06 880644.1788231508 221.8901317705406 32677 1122 2777721 MANA_20190401 74495482.5070913 18153.445191042138 0.05660076312288031 1.3789582663292041e-05 5048490.562466033 1229.9582919904708 43921 6150 117892 UTK_20210805 112388697.49600354 2819.0750490398277 0.24851805633015167 6.248358949485822e-06 26561197.806036472 667.8142444504363 77565 3995 176037 LUN_20191026 2547574.7698687026 294.7473453413747 0.9439882219739526 0.00010902838202287656 191581.6287217998 22.12721993624794 30589 2181 2505082 ELF_20190916 37359659.886584245 3626.227677164783 0.08106178739067849 7.867081626407327e-06 8670484.087163718 841.4742414380391 36283 33577 944758 CELR_20200701 13523560.51589748 1478.0582532085386 0.0035230119029795253 3.854206732970142e-07 1788905.3356404563 195.7078539371523 20758 None 735036 AION_20211021 91216429.82090004 1376.0671244729724 0.18356560538344172 2.7703670891287004e-06 5531552.903625325 83.48204492866408 716 73808 558670 WAN_20200312 20377037.42335379 2568.395210730918 0.1920014232479692 2.4186581922265903e-05 869526.0928878494 109.53493845729712 106139 16382 700059 TUSD_20190318 197849466.64326033 49682.98058372147 0.9946841685643816 0.0002497924952523736 160240106.82751814 40240.68884269359 8381 None 298928 VIB_20210217 13646979.05324075 277.3369534276614 0.07421345115529404 1.5082294193281835e-06 9494964.47542007 192.96481344518335 30619 1119 None ONG_20190626 0.0 0.0 0.4497641666119703 3.804231001739165e-05 8464724.27130515 715.9700323982184 80560 16257 232873 XVG_20190426 122157559.33926584 23537.5414505465 0.007648478820196286 1.4726889163450365e-06 2326904.660417255 448.0376795630793 305295 53143 400359 ELF_20210104 49414697.509764105 1477.1190026349173 0.10584003728213538 3.215292284071197e-06 15830043.372304747 480.8975659731263 82277 33332 479481 WRX_20201130 18723561.521771554 1031.9612029221526 0.07877381054991736 4.3378372462381094e-06 1134786.8157467728 62.48930299959264 None None 9361 MKR_20201229 528027201.8865654 19472.52797965337 584.9797397505794 0.021546317314389805 51078847.34961797 1881.366102554935 78583 18330 35335 QSP_20200127 6620618.146928808 771.481543064839 0.009284781765804453 1.0809630014076855e-06 26276.702603721424 3.059214963805329 55528 8351 414921 GO_20200607 9946674.905146666 1028.663021672557 0.010205368405049871 1.0554165287324678e-06 675391.6592709218 69.84750498667516 10886 678 1064861 TNB_20190430 13603755.91674728 2612.6137366535413 0.0052061532285831566 9.998647191130065e-07 752530.6025295926 144.52682556309708 15770 1502 961548 GO_20200725 14707137.508718545 1541.468956098039 0.014204407206063169 1.4891283518796595e-06 1607906.5598205747 168.5659394768732 11623 683 716439 LUNA_20211221 30342644794.752373 643318.9691737327 81.67928921862732 0.001733077224433173 4015662911.8150697 85204.63388019495 255504 20563 5217 NAS_20201229 12209142.197272347 450.28037730846097 0.26793231724018496 9.871226858709882e-06 2850869.246392821 105.03241029500597 23343 4857 1482948 NANO_20211028 672123033.3033794 11483.548482103548 5.0460069671668615 8.616209932449304e-05 27957462.84519947 477.38215706059367 None 114972 107865 BAL_20210115 190134124.2675587 4868.2572881744745 17.699327820442484 0.0004511796730259007 65554034.31524481 1671.060509638123 36604 None 83798 POLY_20200425 12330049.611369027 1644.2786714629883 0.019629440269483812 2.6189124601176706e-06 1951553.42735865 260.37153975503116 34778 4989 378789 ZIL_20191118 61366413.574287556 7219.725527167088 0.006609850549401653 7.767529326199572e-07 12807343.33648512 1505.0478708003504 66470 10573 223192 RCN_20210428 60659640.72620487 1101.1022290385965 0.11855070002191408 2.1522519406837443e-06 1297062.7397552659 23.54777996511887 19624 1153 909754 RVN_20190221 33164807.173450813 8362.100207517266 0.011309103959160556 2.8494806734069223e-06 1781790.1036632292 448.94595387846744 19211 5744 319806 TNB_20200418 3269621.2256150027 461.85493643449206 0.0009969320312056336 1.416110959833019e-07 315052.722361197 44.75225984276702 14984 1441 4384247 NMR_20210718 175938969.631033 5566.694806701326 30.613731744347493 0.0009685584979110348 10233170.102361055 323.75745452989327 29465 3535 583885 CFX_20220112 231856662.27741447 5408.521327418169 0.17929980935875336 4.190635260330172e-06 4812577.390824414 112.48063552986697 47968 2245 234014 DNT_20190201 6023383.439450969 1755.4338326801744 0.0103661976332821 3.0210884338738403e-06 367864.7856751232 107.20922835432404 60113 6534 604362 EVX_20190201 5578591.530906822 1625.8343000503473 0.28928043552088817 8.430838712561381e-05 1549891.83651423 451.70313962084373 14087 2336 1281949 BQX_20190703 27457799.949610714 2544.0846921561047 0.22715664395990565 2.1003544637367576e-05 2230663.495341578 206.25344466535967 None 5775 466152 BCD_20210819 481519479.7272295 10682.582922098816 2.553950911341569 5.670800475428305e-05 9604238.708542302 213.25281231000358 34670 None 1368102 BLZ_20191011 5656472.399699593 660.6118885598984 0.02689285471086072 3.140780734694679e-06 209257.19003748536 24.43886891638371 36386 None 568408 WAVES_20190123 274570142.7941525 76866.67294282858 2.745574834880239 0.0007686849595142168 23882356.538816337 6686.398795589521 135553 56631 38211 ATOM_20200625 499285460.42198473 53662.48961240335 2.677317724658099 0.0002880410861530862 139809593.5603187 15041.5121869327 34646 8575 161596 STORM_20200207 9537080.75890043 979.2378601553978 0.0013003206207308207 1.335368695209341e-07 1198876.396558419 123.11902032974862 25848 2522 2008734 LINK_20210617 9948477438.500135 260097.34421349844 23.003855774123338 0.0006010518562849605 1079949882.3723204 28217.264438980554 374584 60715 25533 RLC_20190410 36207051.45017503 6998.622705635775 0.5171091812494846 0.00010003415233916232 532217.4883053208 102.95683626049303 24727 3319 889327 XVG_20210616 476633715.3024076 11801.792497608076 0.028740000548482723 7.120800019951757e-07 23210224.72544796 575.0708612870226 318973 54389 100105 GVT_20190804 7934442.038401401 735.352517740468 1.7879154738257241 0.00016567149759066422 269704.6042930246 24.991318859561616 21378 5730 213598 STEEM_20200711 76163626.79467295 8202.590355564553 0.21177040149996396 2.280815950610526e-05 2979953.748994974 320.9478753710787 11553 3864 224107 VIB_20200907 3118931.031754612 303.7215600311482 0.017084053743073122 1.6636454611127112e-06 408974.7531769077 39.82596882828957 30649 1099 None NEBL_20211104 27607227.950256307 437.75542527728715 1.4848002643185942 2.354381150942683e-05 665417.0678989376 10.551219849733608 40879 6278 937550 SNT_20201201 168746338.83614296 8588.144015905049 0.043367183137902554 2.2090836676892547e-06 13471534.532762406 686.2273443125122 113765 5686 142018 AUCTION_20210508 141229226.22949603 2464.5760319480796 48.18817561627877 0.0008408362355892714 5523311.142801642 96.37634315694493 33296 None 32937 HBAR_20210110 351086503.9186216 8675.858946817896 0.0518901612735221 1.2839330159777036e-06 107906834.19442941 2669.969483069519 None 6930 206193 ZRX_20191118 166471181.6098424 19585.244914977924 0.27682378321318063 3.2530793823962336e-05 21912047.930300605 2574.982197004559 151397 16005 134222 ETH_20190601 28499454382.30483 3324329.7249471913 268.12603920482644 0.03125771419431889 13065602415.97646 1523167.4898356649 443225 438054 37291 CRV_20210828 868994863.4126925 17718.421127294547 2.173651759408612 4.4319472543274984e-05 142139392.27744868 2898.1380601058663 153457 None 12354 ARDR_20200217 64852407.69211634 6518.854406401243 0.06491735783321526 6.5253830848045046e-06 4077693.8341108873 409.8828920068038 64868 6407 1135907 BAL_20210204 382810942.4931692 10213.91708540463 35.44523374722796 0.0009449550424697326 134774521.04477832 3593.0321172636186 None None 75993 IOST_20211221 672319633.9559346 14250.497355370877 0.029278045975486153 6.212237537989085e-07 48326722.26919978 1025.399982020866 270717 53973 217229 BTS_20200501 52788961.34801791 6124.219664234245 0.01947791285684918 2.259696229856504e-06 25882258.56307696 3002.6852735707917 13190 7003 125350 CFX_20211021 349689327.28830224 5275.758672753136 0.3434316982856761 5.201788022733236e-06 20220776.205209333 306.2739752902249 44427 2043 169396 WRX_20200329 17431335.56617975 2796.1854149773667 0.09346652363676254 1.494969918268918e-05 6449800.011390094 1031.626792213998 21767 None 25580 DOCK_20210731 45328492.73900051 1086.4546865348057 0.0656840220542281 1.5724628329178276e-06 5583583.660439689 133.66991706567572 51923 15151 289958 REN_20190426 17385987.62075458 3347.0831850322807 0.02256749407381527 4.341819281109351e-06 429260.667838827 82.58658396667104 6245 783 1322561 VET_20200711 1104633621.6679146 118979.91847794181 0.01713686621895858 1.8456799221625915e-06 508605299.98772895 54777.961063518174 126855 64454 180669 DNT_20190524 11442337.311884556 1454.5819551777208 0.019692176524044234 2.503324613608285e-06 3056334.2168262494 388.5297627234069 60830 6401 1189433 MDT_20210708 15327144.159412213 451.0558428451437 0.025367227130356124 7.468045972717983e-07 2321880.7944096783 68.35556928124922 34206 310 534148 NU_20220112 398720856.2879338 9300.963076659424 0.609984273702758 1.4259135186461265e-05 11126737.808698308 260.1012279143642 None 9621 126838 OMG_20210723 502651552.4122043 15541.546955205897 3.5880371712174273 0.0001108286282783878 157771558.5140516 4873.306651258253 326189 5007 225112 SXP_20201030 67038653.24837235 4979.808212225698 0.8715371939821756 6.480702993427127e-05 60114235.98862968 4470.061769125881 89018 None 61861 STRAX_20210821 220036999.33968392 4478.29738980677 2.2057510395054067 4.484626504950713e-05 13982501.085417816 284.2854603719349 157332 10782 253656 TFUEL_20200719 0.0 0.0 0.008398693676787375 9.162079520585581e-07 1965037.8168898826 214.3646789864793 71619 4291 67592 KMD_20190324 118370656.32448532 29553.878666995846 1.0533175733530475 0.00026305109293967455 676789.0346995256 169.01844208349306 96228 8317 295665 APPC_20190430 7474455.670841218 1435.8468032424134 0.07018363275206642 1.3479076617011718e-05 1082499.244299572 207.89876043202696 25731 3388 1308871 AGLD_20211221 116906629.81090476 2477.954732844843 1.518881704220312 3.221676236632512e-05 9180467.101536341 194.72545241690628 None None 105508 OMG_20190626 377478028.5602383 31972.19417583065 2.703026964263542 0.000228629573881989 227644301.14083785 19254.791111813156 289373 39990 None UNFI_20210428 59320369.09657847 1076.7915842834475 24.232225235046624 0.0004399935864616544 35294630.4080674 640.8578191005025 17254 None 90822 SNM_20191026 5217585.8284536 603.9506926352794 0.011930348969689286 1.3803083345786754e-06 377245.4858851727 43.64625793197124 30884 9826 6645524 ANT_20210806 141391916.9997932 3450.572179845373 3.9505906569209235 9.646799335822204e-05 19531676.85033174 476.9367004328578 86085 3061 129869 KMD_20210813 120267120.36495873 2705.1958551962352 0.9448222374647013 2.125155730665664e-05 13494950.95327975 303.53722865763916 114554 9463 251896 KNC_20200223 98522598.64350891 10206.418858040322 0.5641984705545979 5.8448300236599146e-05 74006744.89258234 7666.749682541837 101940 6895 153525 ENJ_20210610 1280920101.6736321 34125.4609362019 1.368807943737367 3.654671446711327e-05 133944812.47327712 3576.281711549696 210863 33167 21502 NCASH_20191030 2795564.677540661 297.1213732591703 0.0009635119982733773 1.0240507414427696e-07 224684.8062997036 23.880205217418943 59138 58712 890063 LSK_20191012 114925068.52963077 13902.352837185716 0.8458546312999271 0.00010230093009108349 3167608.938426325 383.1028743885186 180876 30944 156630 CVC_20190201 16378119.510892503 4773.181949001176 0.04779142424280567 1.3928165767816299e-05 512606.78900869924 149.3923322884853 88481 8229 325133 ANKR_20210704 525485684.39799637 15158.142161827938 0.07522680287985699 2.167989624852924e-06 14252370.71237963 410.74445079561326 None None 5363 DUSK_20200531 7559806.48434802 781.0806965646016 0.028369032347061552 2.9273685005567816e-06 1046943.9529759374 108.0329675082347 17331 13335 1125260 DLT_20200523 2856460.993078149 312.0457341624106 0.03477032841693717 3.804981300875588e-06 119051.51257644802 13.028027051182 None 2569 8395900 GRS_20210718 46139391.24526722 1461.0782535963021 0.5916331772554987 1.8735018951572407e-05 1169253.3956238905 37.02629495496295 41449 106852 8801723 THETA_20190923 100146729.0876912 9971.044503574238 0.10014672908769119 9.971044503574237e-06 3851613.8994468963 383.4834542458395 None 4027 338625 TKO_20211225 96575589.3807696 1900.7324826959214 1.2891598317002988 2.5351833807511634e-05 22905992.61749539 450.4553304836709 352841 None 24168 PPT_20200306 15047819.764512505 1661.6156814492695 0.41546971173207503 4.586371432549662e-05 5375421.540647533 593.3929500939508 24121 None 1098941 QUICK_20210806 53517249.27285714 1306.2088418122232 334.5370028529444 0.008176210757909218 5724792.27989035 139.91608649106766 42650 1901 4564 MFT_20190221 17636523.257556885 4446.833476841662 0.0030747295391129513 7.747194144907359e-07 1581649.2113157487 398.5177672810128 15924 1846 701840 AMB_20210930 15270180.112240165 367.7334418649121 0.02616550795013896 6.299125709905479e-07 192657.12482137777 4.638058051352925 1485 90 741019 BRD_20200711 8181338.787177289 881.1052395419841 0.1256873996433504 1.3529889142074282e-05 809669.5156624779 87.1586079409343 None None None AERGO_20210523 62526978.65500548 1663.5969851781433 0.2371235139398523 6.313852678137409e-06 6110444.983744512 162.70191337925576 None None 380150 TVK_20211021 91478453.4155457 1380.1343258589445 0.2099822123088265 3.180495459293596e-06 22653241.220984433 343.11730526802813 56039 None 65843 NAV_20200410 5562233.267664325 762.8513790542662 0.0813779717192922 1.116085841124194e-05 34272.455238375274 4.7004123135506 49293 13949 1202030 POWR_20200308 44558407.929269806 5012.974181679784 0.10380542908842484 1.1662965420899515e-05 3917898.527425375 440.1919576771979 82736 12840 280064 VIA_20190126 7501580.058649839 2103.630644605252 0.3243911355330321 9.096738663193079e-05 830474.7881442228 232.88589873780202 40830 2231 2614866 AXS_20210711 991914494.7396615 29425.656424642362 17.948019764180746 0.0005324946236320782 1633213472.8075752 48455.33963859028 164836 None 5695 DCR_20210814 2297277466.396694 48160.21439856949 173.9211529711324 0.0036452037191133596 60868740.67397701 1275.7445318877074 47893 11480 143950 BRD_20201031 4429946.868541543 326.1761446327229 0.06204045072246293 4.575741620220125e-06 341989.27395515976 25.223133234570486 None None None VIA_20200313 2012592.777726948 418.20027791956164 0.08586286875726688 1.797629725392069e-05 73321.77675509921 15.350687360113673 39563 2182 2317316 ATOM_20200107 776049648.4488446 100020.42422073771 4.099196833372115 0.0005286885387575512 113495847.27579641 14637.978143130555 29658 7771 112563 REQ_20200217 12718677.618784362 1275.8703148938218 0.016524568577597484 1.6610217032704832e-06 273052.40970585134 27.446766705098714 39893 28382 818245 GO_20210704 20466011.271425456 591.4301461513165 0.018892192896236844 5.439052578663752e-07 529354.2858214318 15.24008255228685 None 1097 133372 ADX_20191020 6632463.739658903 834.6273100542011 0.07207831340838164 9.067399504970317e-06 156922.41297207447 19.740725641566915 53351 3832 323410 GO_20210112 8154370.119216385 230.00058355732756 0.007474364005058087 2.102573266532763e-07 350153.3485278546 9.849976122428288 13420 688 698826 BTCST_20210723 104911999.04012597 3240.6723844364797 14.396337804692475 0.0004446794431020342 6250323.352207312 193.06231523417344 63390 None 1251678 WAN_20190228 32528756.804272998 8511.418798225579 0.305715878191061 8.018413675589982e-05 3548079.466147788 930.6016122479338 108394 17234 506668 XEM_20210408 3473282464.4162273 61665.00270833322 0.383379732127365 6.822550041857247e-06 739247536.293013 13155.503243982685 289304 20838 25974 HC_20190716 151600099.00589874 13861.354387252526 3.4305166802982052 0.000314071843117792 111416707.16545883 10200.460698686686 12955 842 470640 CDT_20210704 10695553.719680136 308.6893801346403 0.01577513193680958 4.546630321599555e-07 193491.54813440275 5.5767174768811225 21040 336 541618 TNB_20190302 6718891.716275739 1758.4003060250645 0.0025713444628915026 6.729462359828745e-07 363074.10563526565 95.0200785216267 15014 1507 1537568 IOST_20190531 175754819.96875116 21149.885655403326 0.012956267823930697 1.5597476146351885e-06 110392793.05479734 13289.69869873363 199661 49744 110907 OAX_20190704 7914533.609938546 659.4666980526059 0.17693592292789817 1.4742921644002899e-05 1246445.8375741404 103.85823869321034 12315 None None WAVES_20200410 104273475.8879227 14300.79021862552 1.042734758879227 0.00014300790218625515 70227054.55990705 9631.427037232972 140384 56865 67847 QTUM_20200407 135204382.9715115 18589.070431874654 1.4061687319104867 0.0001929786416221396 444292381.82913184 60973.43681647785 None 15136 108429 BRD_20220115 41835385.44150119 970.6285117051289 0.4866277177725669 1.1285591884894073e-05 1844040.115083627 42.76592433629787 1132 None None ENJ_20200224 118624504.88849589 11923.248414656877 0.13108282630726142 1.31732490159033e-05 10898997.372723961 1095.3014247497586 53351 15064 23328 TRB_20210422 125126152.89926882 2309.307337482961 78.09777868943316 0.0014439011594210873 162714240.3665688 3008.32218613919 18333 None 295366 SKL_20211007 417107086.68974984 7514.684310628497 0.3355121029658821 6.0480094946492595e-06 43583285.35480346 785.6411774828396 76426 2699 226284 QSP_20200306 7996139.813642777 883.1921795781453 0.011202182698093855 1.2373070486188596e-06 76784.98666067455 8.48107978452484 55512 8337 347894 BZRX_20201014 18196275.39157033 1592.7037411029125 0.12959172418059348 1.1345797114109887e-05 5059679.895313817 442.9766014577647 15191 None 70280 MITH_20200109 3885632.318659818 482.86245643456357 0.006738639479714007 8.397806678846386e-07 657627.2548262755 81.95462258215208 91 2085 1348503 QKC_20211002 126901352.04407358 2634.9971208161987 0.019408391442681108 4.0297975775477453e-07 8155865.0902807815 169.34162463017327 75712 9565 572650 GAS_20201130 22179626.630549297 1222.7343331098625 1.5914750369050523 8.763428216932035e-05 3181305.4822226977 175.17800520332156 324799 101021 122930 PROM_20211028 286774991.49991065 4899.896478682258 17.416149907284403 0.00029762030394054896 18201433.10030867 311.0398153613558 12196 None 615832 QKC_20191102 19064557.40855654 2063.774207262997 0.005119624649882924 5.542480121344232e-07 8622272.60012775 933.442932932826 50070 9230 304095 COMP_20210111 13921.701436006237 0.3603182401626755 1.501409457817816e-07 3.9066e-12 108.15821729503931 0.002814228253889628 None None 4236498 SYS_20220112 646303537.8832569 15105.550889407508 1.03001800185772 2.4073811192533e-05 27579978.353896458 644.6054247482608 121860 7068 89068 SNM_20190421 11926682.774195824 2246.0456113117157 0.02984587682128147 5.620734763042331e-06 140160.94658263755 26.39585727688213 31640 10048 None HOT_20191220 115418904.58344318 16162.689740606593 0.0006501412055459779 9.09852557326178e-08 7901502.842082313 1105.7909429923432 24649 6764 548449 SKY_20190930 7722074.903618598 958.233765767605 0.4789224567983019 5.947951176368069e-05 298525.6230196045 37.0752259663461 None 3811 8463973 YFII_20210220 138769666.38423675 2484.3706020714058 3503.50068843609 0.06270931209517693 204223654.33376878 3655.4081233963075 14404 None 229687 SNM_20200207 6010930.090346193 617.1836506387029 0.013719071485827121 1.4088257158509737e-06 556679.7669247262 57.166024096287245 30335 9732 None CRV_20210210 699907539.6995857 15027.010302649149 3.183422256024758 6.835114097896864e-05 312402342.7308096 6707.579093455827 70148 None 29016 WPR_20190131 6590694.1273470875 1905.713347402421 0.01268532238919426 3.6679881854752563e-06 484500.5163361564 140.0943638051727 35122 None 614538 XZC_20200329 29956261.888003785 4805.326720976901 3.0754958791998996 0.0004920282332780495 37461470.80800729 5993.212809134449 63593 4099 90239 ICX_20190430 154454260.20357192 29676.02244750652 0.3263992333445019 6.271225717452115e-05 8972924.391875016 1724.000195419817 113628 24059 296108 RAMP_20210707 48203870.36157685 1411.2103325405874 0.16425924385872478 4.809454866246291e-06 5229813.455709374 153.12716157244003 30233 None 114205 XEM_20200316 306744424.01543665 57083.54685791863 0.034082713783279935 6.342616318251249e-06 21547003.66872489 4009.7856628340987 212181 18023 216330 MDA_20200414 6787276.065989766 990.6619005461373 0.34665444767295583 5.062558010781338e-05 824910.3562860016 120.47030004738598 None 374 1850910 BTS_20190703 159765121.90520835 14802.934019673961 0.059268409014479995 5.480124431408273e-06 28151408.21542641 2602.958684148498 13696 7177 171113 FIO_20210708 57568125.81399569 1694.3081964416158 0.17156778604665146 5.0495930486710586e-06 11347631.611850051 333.98415300700526 None 482 108144 SHIB_20210813 3820998223.647087 85943.62021419074 7.66472328735141e-06 1.7240503806368145e-10 420230627.08939755 9452.38001982819 788089 207619 8046 AUTO_20210727 26251481.308035757 701.4346537201586 753.962781932851 0.020207169028185562 13520469.621781448 362.36591717085355 None None 11033 XTZ_20191024 614359418.1667191 82303.64034886681 0.7549576064659326 0.00010112180016382984 15778608.680485763 2113.4449142388394 44952 16979 211690 ONG_20190816 0.0 0.0 0.18263700428411903 1.7747435341636663e-05 6477638.289621412 629.4533091044696 81492 16283 248344 QTUM_20190813 259377058.14006215 22790.457522796936 2.7041083257019896 0.00023759846329537767 234100074.04856426 20569.374874001584 178727 15359 320250 SNGLS_20210110 5015072.120069307 124.35461251158036 0.006044986098746558 1.494505911905756e-07 118250.0374153498 2.9235034971703495 None 2113 2388583 QTUM_20201228 235745362.577999 8893.909623845797 2.2834858045165314 8.631940882342928e-05 200492833.97599646 7578.949195966714 188386 15025 230416 ALGO_20200530 178917939.2881342 18980.212085856332 0.2283213735534571 2.4225756443660287e-05 40071028.61257063 4251.686841695509 18151 885 290997 DUSK_20211111 98476070.07285775 1516.3652092978523 0.2587519428282552 3.9834772317564506e-06 16124283.081226673 248.23278167652214 None 13712 496960 NEBL_20210212 30130810.94120831 631.8050514776146 1.7266916373780943 3.616397979785885e-05 3280742.0062887473 68.71214585690005 39109 5882 713465 SC_20200129 66711638.68436923 7160.384847248443 0.0015834836829780926 1.6934935596600096e-07 2956157.063828463 316.15311245403007 107406 30174 233431 FTM_20210916 3663895754.6991825 76026.34501227255 1.4384639216769362 2.9839695693289747e-05 911087260.405273 18899.720869490247 144575 12878 36301 DUSK_20210218 64656767.12346768 1239.1785261256884 0.21445254326946425 4.112973858461272e-06 9110046.201614898 174.72108889627575 None 13400 665690 ASR_20210513 10377557.120710643 201.29120941582514 8.216099030840997 0.00016379034716497104 26697437.391997147 532.2212551767034 1973438 None 174879 WAN_20190528 44980416.13316973 5106.937473950191 0.423398520210674 4.811097341389869e-05 2347963.8155005584 266.8002350318457 108885 17076 452673 ONT_20200425 285581557.0415083 38083.842158556006 0.44825548298233675 5.979918502914653e-05 134362868.02611065 17924.577191299617 84111 16481 204987 QKC_20190603 50946778.2220428 5825.27555130503 0.024360937044348996 2.7856919539527806e-06 19273873.322148297 2203.982290881063 52398 9189 157671 POLY_20210511 313689558.3812378 5619.226054460805 0.3776051481750397 6.7579853334158106e-06 10092063.560007783 180.6172872696575 46071 5530 152972 EGLD_20210131 1101024385.6273015 32220.959917523393 64.56063714671077 0.0018897013354804428 303246773.3522679 8876.087007656046 130796 3999 47707 GVT_20190528 15715510.811731976 1782.2638375095473 3.5351299014952327 0.00040169263830251494 2319217.508976862 263.5299482444093 21405 5780 174958 AERGO_20211202 112011630.66910581 1959.7169068842304 0.4252538117765043 7.436765184061914e-06 2585154.1064606667 45.20872834519196 25134 None 498997 COCOS_20190904 22464070.891007483 2116.1945867380405 0.0014216604083657322 1.3378036490224448e-07 2120025.3615277526 199.49754863978237 8606 118 186264 DNT_20210217 246913124.021688 5020.639039369591 0.33283448795294596 6.764147990466486e-06 45780924.034887634 930.3992119832939 63467 8577 221054 STEEM_20210509 486702051.22083104 8298.21964302718 1.2671815956553376 2.1582791458161166e-05 29390732.65837968 500.5865425628458 13738 3934 174026 YOYO_20190105 4075128.1149940435 1069.5622291431569 0.013957538937316437 3.6637539352215197e-06 109378.90393474375 28.711178347476082 6924 None 756534 DGD_20190522 72570105.37309138 9137.434848408411 36.28507082908111 0.0045687197085640605 720049003.1943257 90662.68845172685 16967 3361 447437 XLM_20200511 1300025020.8898659 148489.01728525822 0.06425432995383246 7.339137445705826e-06 608636509.1083456 69518.53669675233 283007 108332 75602 IDEX_20210108 24160712.985398155 616.7914395429794 0.04298420523499721 1.0920477278827169e-06 2315332.0453571593 58.822841683430596 44413 1945 159964 DNT_20210430 223747904.90039083 4174.847027234351 0.2978453631438132 5.55740993172675e-06 22356363.060748722 417.1408706843075 None 9805 186228 STORJ_20190605 35357002.56384011 4614.902409189346 0.24578286557960008 3.2058864930372614e-05 4512117.995497229 588.5413575369896 83722 7729 192975 UMA_20210421 1712192797.9859273 30306.700016587976 28.309668037944537 0.0005020875331660213 171943381.5331212 3049.510441538085 35453 None 123733 ONG_20190228 0.0 0.0 0.5811505486214593 0.00015242602164519122 8872281.803978145 2327.050402866078 67801 11142 278128 IOST_20210217 569231191.1300344 11574.533965895125 0.030831707786148535 6.265884150016631e-07 242062752.85553542 4919.406920132728 206165 52456 193443 GAS_20190318 37299085.42196122 9366.362054193556 2.6767439758626854 0.000672203879395736 1261022.820823947 316.67744087897626 317887 97818 162875 VIA_20210204 11113783.288080484 296.6490026189803 0.49047610788987855 1.3076043282373033e-05 919227.9942033662 24.506525078833928 37725 2130 2708625 NCASH_20200423 570485.3117491622 80.20799803332451 0.00019666810208691867 2.7644260873454717e-08 1172807.9946912036 164.85342470731774 57330 58220 728678 STEEM_20200229 58766628.62029989 6726.974870858531 0.17318390795034488 1.987629205128247e-05 1185032.8645365138 136.00605035803326 10663 3822 201794 GXS_20190605 70702848.00342035 9219.41422786533 1.1791448993377427 0.00015350550732819366 23913350.490189847 3113.129693369486 None None 820367 SOL_20210624 8377496849.572571 248484.31610702776 30.879003728161678 0.0009165946607919846 1203441656.8115778 35722.27287249404 337694 24676 8068 OAX_20210707 6944556.627484761 203.29200408420553 0.1222095904770352 3.5775116971556504e-06 594464.4525158269 17.402100147109454 14063 None 1338925 ASR_20220112 8164282.266357039 190.44824645936157 3.822233336551617 8.933409271681792e-05 2378042.251458736 55.580135557078975 2043163 None 101226 ADA_20220112 38098252395.75478 888718.0924447917 1.18667167026448 2.7736991642181916e-05 952035463.4403963 22252.658721195963 787505 681929 9885 XRP_20200423 8275159764.626271 1163181.384654551 0.18768951931615696 2.638220423206227e-05 1760936753.9293184 247522.5747882708 950333 212499 34710 CKB_20210723 254488616.1678669 7862.016298322866 0.00936814175634092 2.893666511321197e-07 5550583.183514457 171.44848033033838 50084 5154 122182 WTC_20200407 7369658.353144936 1010.4317170857865 0.2525346176401635 3.462426276746762e-05 8698908.622440448 1192.6812282137814 54687 19650 978850 DCR_20200308 206035374.189976 23148.918758505813 18.406749255601284 0.002068073721812532 79529063.73210077 8935.416272629558 40880 9743 216967 GVT_20190730 8864346.376067946 932.2118371993209 1.998786028065088 0.00021013428973284563 495518.28461079503 52.09431190947706 21391 5739 209505 POA_20190813 3457715.4087697715 303.7818328594346 0.015704690279984126 1.379877856225092e-06 674781.4317938343 59.28903651865684 17754 None 707962 WBTC_20201124 2276215419.62181 124323.19403543373 18430.871948635104 1.0042727980563249 116512740.58826742 6348.618574633158 None None 168297 KNC_20201201 211683321.47722912 10773.370629254729 1.0527683584828933 5.362703358411085e-05 38175656.95344811 1944.6321890679458 125943 9269 127367 STRAX_20210826 237387344.77002752 4843.082523865059 2.371622407618454 4.838984038905782e-05 25744187.63986227 525.2763369232374 None 10808 253656 SNM_20210527 114685870.29612675 2949.43402912 0.2639056863493925 6.8e-06 457166.7878496376 11.77971646 32477 9711 None RSR_20210603 517457029.66237754 13750.124690451865 0.0397308426969568 1.0551122425223644e-06 98280476.40131788 2609.9857645330917 None None 80014 BAL_20201231 151470029.26337132 5245.344728567248 14.08635936521167 0.0004884616634445911 22900748.02707196 794.111323260346 None None 83252 DASH_20211021 2106720806.78755 31773.64183949321 202.791398280345 0.00306051020731298 416386189.7391645 6284.0642881665335 411544 42908 66549 QLC_20190419 9287127.201520579 1761.40327059174 0.03878548098788064 7.348994378646963e-06 1239786.3143748252 234.91219969428792 24918 5829 940522 ADX_20190712 10451604.631788822 923.6006487599659 0.11365272667381379 1.0034204320040425e-05 306283.4827849787 27.041243409307206 54159 3885 882596 SC_20210219 629240053.6910073 12173.925757221798 0.01340610106709661 2.593033841260952e-07 58198984.26942825 1125.6959423350418 112503 33659 91836 DLT_20210429 18349736.00046337 335.4198874900387 0.2237505426734251 4.089997907733396e-06 2572753.1165800244 47.028064103 15109 2576 4793076 LRC_20220105 2594487560.8685756 56009.275189599444 2.0656871476717202 4.489560037682138e-05 169174309.26992735 3676.8308267629673 171770 90909 49045 DEGO_20210806 60891789.91924117 1486.2010934225084 11.22614206942171 0.0002739992475277673 39134679.53888593 955.1698775577157 122876 None 244168 TFUEL_20210110 0.0 0.0 0.02824550566261304 7.009282830068063e-07 9554510.415352864 237.1006085144512 79080 4875 64313 PIVX_20200421 15595779.050463108 2277.3308319133316 0.2477057848821304 3.617898557901862e-05 772448.3289041965 112.82092973831884 63906 8491 261496 PYR_20220112 278333142.93408895 6500.244586708383 13.99395513149258 0.000327091499906431 47652207.8083658 1113.8117836904096 77574 None 41443 NULS_20191220 19637428.663638204 2749.118577821454 0.24719315351055934 3.4593919129649654e-05 5205169.456667074 728.4474051275504 21128 5252 576073 SRM_20210825 339507486.8936149 7069.57509222743 6.791744858395522 0.00014142643904660197 260248052.0676691 5419.219367059693 109807 None 38162 XEM_20190312 396866530.79742134 102642.0920183811 0.04410311058981987 1.1407167087571544e-05 15673271.488516122 4053.855256178764 215298 18475 134227 REQ_20190626 16264921.371040834 1375.732499693466 0.02227928869371106 1.8820561008545094e-06 630486.4233657346 53.26071383672018 41674 29931 444138 UMA_20210314 1427076079.3693902 23258.362469873762 25.38999359035387 0.0004138839176879691 114414183.3852517 1865.0729583700427 30179 None 124201 FTM_20201030 42281282.37129927 3138.8977117406603 0.016770174728114085 1.2471534927245799e-06 7481306.126324432 556.3649286220984 27797 2801 108086 REN_20190509 19973568.708224576 3353.0420990292187 0.02591613471074789 4.3507057824510956e-06 170491.02271591543 28.621408503426036 6306 779 1306046 IOTX_20210828 809130456.6142793 16495.583213706588 0.08466799490843258 1.7259968517003956e-06 345522313.37640375 7043.634678308821 108822 8155 88256 SNX_20210804 1532205453.5112016 39879.747855291855 9.05816764040169 0.0002367352548988662 90012829.41577874 2352.4857302119403 145610 7370 46425 GAS_20200905 24124684.984732587 2300.8206719186132 1.7312151955362665 0.00016510954285829058 4017695.1079597077 383.1758202733043 321692 100407 111243 GO_20190411 19770723.27248789 3725.17436376483 0.028180230673603732 5.3094039821293425e-06 1600376.346164848 301.52501743686526 9133 644 935336 ALPHA_20201224 30511614.787657578 1304.9072813855455 0.17775590874922578 7.622683479372994e-06 30303353.679662142 1299.4947683535922 19767 None 104236 FOR_20210125 11242368.398531083 349.52462342867784 0.019950199280312983 6.183467305540088e-07 5104312.137570047 158.20567392067005 16768 None 247763 SYS_20191203 13138355.71621139 1797.7034540505063 0.022861943471914916 3.129182567606921e-06 1860808.1846038091 254.69438064509407 59561 4561 990949 FTT_20200407 79522329.17337072 10930.301119962463 2.7652570757860606 0.00037949610321385944 2306673.173996402 316.5613383959041 10021 None 14034 ZEC_20190708 737481219.5113546 64559.08427125107 106.65059194440131 0.009330366368361771 347529144.7091545 30403.71539156794 64 15282 191872 AAVE_20210401 4772072359.925201 81130.44685288999 381.1516576311669 0.006486011180953457 660428925.5851619 11238.438321880649 160771 7733 14216 LOOM_20191026 12833455.468953155 1482.2334145406396 0.021313047235713027 2.4617250642999186e-06 3266889.2622524453 377.33614955365454 None None 365854 POWR_20200331 22205982.846975476 3456.2090404334517 0.05161381043971815 8.050747242239183e-06 2712741.2365224822 423.1346967561953 82317 12810 242536 LUNA_20210107 345113262.7019378 9415.651148049057 0.7155821386995974 1.938754382953588e-05 19668604.99278201 532.8891272445117 17562 None 167354 TCT_20200523 3278392.8503005463 358.1384469537 0.005654142175374164 6.187432281862186e-07 796623.2231839348 87.17595162493772 None None 997352 AION_20200730 44671347.31521188 4023.0385994703433 0.10160688600054087 9.154470986916159e-06 2059437.163202344 185.54901642997325 67494 72552 276087 FUEL_20190725 3800996.5271902774 386.66983987334913 0.004420171716188355 4.4965762990966774e-07 387227.83101827523 39.39212318223867 1 1507 None ZEN_20210128 310191433.8238006 10253.96630858421 29.290539006755893 0.0009632789980781653 57374334.67243944 1886.871784978805 84346 6446 413746 VET_20210421 16916710835.384933 299434.55033712176 0.2607873694036083 4.6252074312285224e-06 4549015589.695478 80679.29347326285 269733 134932 33497 ONE_20191017 15914224.710362548 1987.567286623729 0.005742427164991605 7.172309691583454e-07 4581285.944911239 572.2040635172771 70077 None 174888 DUSK_20190922 12387607.939150013 1240.4418194343173 0.09136724468476759 9.148115926304134e-06 744532.9625076063 74.546122907324 20257 13325 178526 CTK_20210212 72845768.93244532 1528.313723459254 2.0938890723862005 4.385425791372051e-05 23259404.08973014 487.1432394974246 13959 None 214497 YFI_20210613 1323635489.9891431 36913.009955623354 36469.84359425904 1.022242950627489 225652736.25952712 6325.004337759683 None 6426 17925 TNT_20190614 14444922.433044836 1754.94452581408 0.033711911024536384 4.095732184196341e-06 1552837.5081363677 188.65755056936385 17391 2515 874753 GXS_20210511 72900363.44590692 1305.888610921018 1.0415538706540628 1.864065099710921e-05 26352252.15488283 471.62527954364697 None 645 810772 RLC_20200312 32345725.038300905 4079.692593133879 0.46094923238909696 5.8066165253295324e-05 638990.6645836359 80.49419527768376 28457 3565 249120 COCOS_20190922 19148632.15186803 1916.4749703335008 0.0012180257132512263 1.2195443196832172e-07 2554278.145949112 255.7462761166453 10785 126 135713 OXT_20201115 0.0 0.0 0.22613224898406606 1.4058054483845505e-05 3052991.856939849 189.7965728303585 None 1731 99245 NAV_20190414 14141891.155644368 2787.539942648799 0.21868383032294214 4.309814316337058e-05 354398.0713892567 69.84466476099686 48682 11350 988851 CHZ_20201224 98091538.31676987 4195.527535963646 0.018428800605591978 7.897073925240221e-07 100187602.60902323 4293.219733225453 57531 None 331947 POLY_20200306 16840970.103520997 1860.1241897448863 0.027864080058295708 3.077920903176509e-06 7809163.373757151 862.6154940023407 35005 5003 364083 BNB_20190908 3484794625.062804 332874.2480174344 22.405261559837967 0.0021401651198417345 177772830.63986617 16980.97611468924 1032734 56146 1071 KMD_20210112 70075402.11724742 1981.1911288441202 0.5668876518672891 1.594767507116037e-05 6782666.947168644 190.80988663811527 96642 8410 276744 SYS_20210729 84677067.71062319 2118.0086282086263 0.13754934915259048 3.4365429526550047e-06 1093962.3934216914 27.331636076390065 74506 5461 381052 KNC_20200707 302810466.8076298 32438.8771332861 1.6734558939533812 0.00017918461830938463 144397978.17875198 15461.35556849478 113623 8397 92529 IOST_20210427 1074180121.6972613 19940.370223950486 0.057706739092994286 1.0709054836922666e-06 525956766.74549997 9760.5582042183 240741 53137 143784 FUEL_20190909 3028518.637573324 291.324852070958 0.0032221006476065134 3.099462499176972e-07 109907.31471439265 10.572407183976408 1 1503 None OAX_20200325 1768778.8973255898 261.7178653872216 0.03379430418419568 5.001189298519664e-06 1533829.008991364 226.9900035140849 12030 None None COTI_20201015 20644016.94841028 1808.5720378813821 0.03643261801614461 3.1878941789483278e-06 3816855.582623405 333.97906481328397 32315 1202 145304 SFP_20211216 192692333.6522624 3949.7368473868796 1.7868206485450817 3.656293883085352e-05 32180171.63135085 658.4889467678228 441441 None 24619 YOYO_20190531 7063409.1339270845 850.3324952488341 0.024170353200742033 2.912996984507915e-06 830825.406705065 100.13059735966607 7464 None 1704600 XMR_20200403 884720967.892211 130471.82746214404 50.87037379201055 0.007462165578641849 152199669.86211765 22326.140990615666 319582 168022 87089 MTL_20190312 14103708.64132215 3642.892144834229 0.32558977060760996 8.431275170777815e-05 6973153.213092021 1805.7254513203723 32661 None 580770 PPT_20210219 76131227.26841903 1473.034823809218 2.1082693443742593 4.0778550967909834e-05 6287095.185548247 121.60620375575097 23732 None 693522 FTM_20190811 37257686.72562012 3288.2442799533756 0.017909763712343027 1.581482965936188e-06 6832606.410070918 603.3385377958136 None 2065 402967 RDN_20210616 28154671.5148258 697.1872979896076 0.42102268617536787 1.0430917013836087e-05 552289.8557160619 13.68308607046931 29725 4667 827519 TNT_20190618 13979083.945784857 1499.6443669446448 0.032547612421314556 3.4932310283069137e-06 905662.1200297234 97.20181554018495 17388 2513 824040 WPR_20210120 7267937.909785667 200.75201875309082 0.011920250414957681 3.2965957083013266e-07 1009757.4030249126 27.925268390842252 32529 None 7520139 WTC_20200621 10555447.083962044 1128.2882227853968 0.36166982282384935 3.863938454021637e-05 7877784.683152702 841.6316001172643 54290 19592 873849 COS_20210220 56062759.46957037 1006.8104005489804 0.018794437313707113 3.364737320572801e-07 6188817.040167635 110.79737753075385 15575 None 361958 VGX_20211002 4790525484.442951 99471.12978212994 241.61296530065718 0.005016120598806346 262528444.6476112 5450.346331086946 336605 11216 34852 BEL_20210602 62991351.90404979 1716.7575653521972 1.9926093883649019 5.432130539946163e-05 32289838.13070056 880.2659310143507 18774 None 388840 NXS_20210610 50873834.135336 1356.608515352891 0.7463340361649082 1.9901843962960818e-05 3124021.4863663753 83.30557785905766 25639 3945 484534 CRV_20201106 39110338.114314176 2516.1736150282954 0.362875931515096 2.3343437384212317e-05 23277831.765911747 1497.439099912263 43094 None 12628 MATIC_20201201 93174280.37194163 4739.172220809103 0.019465782110411903 9.915686984365285e-07 13198889.37839245 672.3390556570545 58749 2508 53432 OGN_20201030 18639536.41415 1383.7706643920847 0.14281961820560946 1.0611005209024901e-05 7855542.137620168 583.6396959274906 70125 2431 140595 AERGO_20210806 51425837.187995076 1254.5745811250324 0.19547975424257563 4.777599057686811e-06 16983625.67444618 415.08622891785404 21525 None 411041 JST_20210210 64643527.44779087 1387.5854324625066 0.04507497548231971 9.678031238189687e-07 214352868.16463497 4602.362468076337 32303 None 170314 TOMO_20210823 287898018.529137 5835.760723809012 3.4275498578943027 6.95613439404283e-05 19571293.024987787 397.1949357161074 51299 2242 146029 STPT_20210602 58124291.17099562 1585.2649771288575 0.051409238085702275 1.401487385693107e-06 3972445.624753996 108.2943968973713 29920 None 509063 STORM_20190704 17511643.075108048 1459.131517454881 0.0027953499362135927 2.329324641623669e-07 872608.9344075299 72.71323947976441 26791 2574 3762880 WAVES_20190906 111826016.5112959 10580.5063946959 1.1180910187145676 0.00010578906002760588 12719668.006273199 1203.4813800703341 142561 56908 33279 BLZ_20190813 6840556.691986354 601.0505358282713 0.03281119389073659 2.883314111068642e-06 180772.1142257023 15.885517289324662 36506 None 1145955 SUPER_20211007 182275302.0300581 3283.9081283679593 0.6341323359109247 1.1431143804708633e-05 24365736.723452594 439.22731048457536 143580 None None STORM_20191118 9867609.092797799 1160.976353444254 0.0015291899184990269 1.7970190775864314e-07 1678869.6238228246 197.29143556944598 26042 2537 2424328 RAMP_20210809 69868598.59414631 1588.2986959423886 0.2223163594326479 5.0549292316883264e-06 7716844.553466147 175.462135171967 None None 118954 QSP_20190618 0.0 0.0 0.026637292537876577 2.8600911430767904e-06 651973.4549539244 70.00349233629512 56835 8588 682845 XLM_20190701 2058751858.3571165 189353.66197236432 0.10613731827693772 9.782483137329848e-06 443923535.8729932 40915.623029124574 274038 102654 66272 ICP_20211216 4928238722.241066 101022.1702792391 25.932738929206806 0.0005306545170210199 234139580.73402527 4791.133958857873 454250 25406 38411 CDT_20200903 7084564.970128155 620.7153771415605 0.010499821101877953 9.201573814751904e-07 428840.78134165524 37.58168892596994 52 292 256475 WRX_20201124 19708520.00183 1076.1474612950549 0.083514948551789 4.548937891342314e-06 2008221.679624822 109.38491672536352 42725 None 9361 ARPA_20200502 0.0 0.0 0.010550615737544294 1.1940605132326615e-06 4372228.157048932 494.8246744119681 16742 None 1333028 BAKE_20210909 394432644.5735438 8513.81888389198 2.0378691531547855 4.402261195521844e-05 103648559.02619718 2239.044781979317 None None 15741 ETC_20210422 4077420465.919224 75384.88593382512 32.25560935225532 0.0005963538595222133 2992271702.38259 55322.24671273158 339185 35242 130525 KMD_20190419 126422898.83882098 23977.08860344102 1.120256895199641 0.0002124328749181608 2612877.5056239963 495.47660247141874 96737 8350 335722 GO_20191213 11879164.900823109 1648.2695017528931 0.013736250038125746 1.9082679920989325e-06 2772578.1286805933 385.1722328779509 10360 677 1019965 BAT_20210711 838160884.7214984 24855.37515672803 0.5598766978318941 1.6609031764263704e-05 54770880.32648253 1624.8064879677738 208081 76097 27779 CND_20191127 14572994.860849647 2032.642624822018 0.00787792155052006 1.100269493460145e-06 835761.9413326377 116.72664699010917 35344 6048 538413 LRC_20210131 611233014.8117572 17867.637511140016 0.4927921421507674 1.4424113675030815e-05 186105065.0993402 5447.328366024581 53491 8064 159364 MINA_20210902 859907941.5901734 17680.75692648652 4.1710655137084816 8.572695915542213e-05 284958374.4869581 5856.684545076716 None 9553 53382 BNB_20200224 3510096072.4666047 352783.54387471976 22.871503770762548 0.0022984857973247412 370143216.20063436 37197.769501314 1114892 59501 1952 GVT_20200317 2075713.3006779735 411.2566619041141 0.4657949526079903 9.2507500645251e-05 355613.8618501114 70.62538864014961 20690 5601 160290 BTG_20190906 184362013.855548 17441.284671674824 10.520906981521733 0.0009954494587947203 17408727.99645815 1647.1497079876513 75019 None 255203 EOS_20211202 3891689202.9348884 68084.83803147309 3.988849828740591 6.9754415822335e-05 588554144.0878992 10292.252720285524 255162 95974 69184 POLY_20190314 48828288.65121579 12628.884979653089 0.10160018328471906 2.6281706053542392e-05 10951659.53579321 2832.9505657642035 33131 4999 264578 UNFI_20210509 60132636.616333276 1025.3918039246453 24.579948805550586 0.00041843554174727734 13563408.693155214 230.89601647903046 17837 None 94770 XZC_20210110 45181426.928208485 1117.0220600102923 3.9621152464202765 9.832214264177324e-05 5352359.411726739 132.82184207672896 None 92 582569 LTC_20200903 3801919382.806389 333094.28090796614 58.2090564103623 0.005100034927905448 2445103718.042237 214229.79744689635 134931 215241 123582 WPR_20201201 4924345.166930501 250.24985534343034 0.008072571169655169 4.1120921020942443e-07 165300.34334842765 8.420244579715137 32569 None None WAVES_20190513 239521197.3076411 34512.35940125824 2.399753242744496 0.00034521569822895936 25099734.58633278 3610.713904348283 140080 56779 41172 BCPT_20200629 2647671.672078612 290.39807295210244 0.022800614805197232 2.500012176899067e-06 75380.80541494396 8.2652565754 10482 3173 3960582 PAXG_20211011 317634569.38460994 5805.255767289883 1759.684362706366 0.03215680351730683 3161951.7982083773 57.78210277995667 None None 42739 POWR_20200306 46494420.99522653 5135.416585254885 0.1081405898780519 1.193764306062353e-05 10833477.023225237 1195.9078635928274 82747 12842 280064 WAVES_20190510 236577117.9298648 38276.585494344 2.3604183970097488 0.0003823077570077135 28242536.754745696 4574.333470961394 140120 56775 41172 MATIC_20200317 22418089.73048654 4441.648442400728 0.008165692859318226 1.6215417317599731e-06 25809858.381234463 5125.3167584215125 32654 1583 190232 STORJ_20200425 14192551.218980752 1892.7658446389084 0.09876096594518298 1.3176449289243954e-05 1564752.6078253954 208.76550963127943 81761 8051 123443 GO_20190803 9092532.556565423 864.1216453507672 0.011998594248275096 1.140303313649304e-06 717718.7292971703 68.20941089856304 10128 682 898219 AST_20200523 2838396.2080855025 310.07229951402 0.01644859362018013 1.8e-06 37041.843531975 4.053557398108108 31596 3448 343534 NULS_20191015 25410805.96588265 3044.6534150796742 0.34585393828269856 4.14368007803286e-05 5372893.678490467 643.72701977884 21230 5280 374775 REP_20190706 154833547.63380933 14087.559186143882 14.075522444360843 0.0012806640327056077 23023128.745939787 2094.763659525004 125912 10015 252413 OST_20200410 5244567.21877651 719.4274076951641 0.0075857665213885685 1.0403757220442738e-06 356837.3475915594 48.93967038217991 17791 754 766373 KNC_20191026 30274376.610996455 3508.5980589377455 0.17884898766408402 2.0692708113092676e-05 16014085.986907508 1852.8190254419346 98411 6714 165975 COTI_20210828 349629185.6469403 7127.821327987559 0.401684235377798 8.188521842161988e-06 202177359.43973073 4121.480451444113 131929 5851 156434 DCR_20200422 136038085.15340346 19864.59570283439 11.946446719446167 0.0017454354796577016 93793936.0998615 13703.762105175587 40596 9773 260313 ONT_20200331 234192197.1678426 36457.26869208944 0.36645454080381146 5.715975741081948e-05 71668505.27614157 11178.88829155881 84169 16534 255967 COS_20200305 16245169.87329685 1855.6657627134725 0.008223746572222697 9.390564789072755e-07 3738719.4939016104 426.91840424945485 None None 161709 CMT_20190701 32023583.33235648 2951.3430783779554 0.0403644092267385 3.721590438302266e-06 5949807.780107237 548.5710844868642 291067 1643 722276 NAS_20210819 24601673.915467132 545.7918790186621 0.5406866971697271 1.2003405477817982e-05 7012283.091256039 155.67477008440423 None 4924 625809 STEEM_20200224 76406765.28106184 7679.836841998322 0.22519093348448543 2.2630700958196474e-05 1002219.0635903524 100.71861940338539 10680 3817 201794 HBAR_20200314 119928778.5872097 21734.2307348204 0.03565841254499474 6.439371667172277e-06 52895245.3089978 9552.083776614963 37932 6365 124891 STORJ_20190228 30958865.314937245 8101.954103656529 0.2274847394442883 5.966542387465173e-05 7721796.648928651 2025.2974826253171 82903 7626 236494 RDN_20200903 27470658.873236056 2407.952020887468 0.4112679632977946 3.605235699041715e-05 1697290.3451399512 148.78697807800287 26405 4387 895755 RCN_20200704 32401578.68052456 3572.725622605854 0.06319704600082642 6.972211805057642e-06 404921.67902874463 44.67296953422564 None 1136 1147730 LSK_20200913 210139735.8151311 20152.861014125327 1.4871469069387608 0.00014242785808732538 3867073.6862036996 370.35952508929324 177455 31129 154777 AMB_20190903 2794991.485616533 270.44594399676015 0.01922312250692615 1.8620414364905683e-06 204638.72573205805 19.822262834065008 19273 5611 670257 HARD_20210916 78539796.85497351 1629.6889069741812 1.0080953546845492 2.0915670143888927e-05 6186864.938142565 128.36327999098256 36106 None None GTO_20210511 44894097.05102064 803.4679900261971 0.06774631583660273 1.212453302158076e-06 16574494.762121713 296.63311809317054 2168 None 267517 REEF_20210220 0.0 0.0 0.03684737909736268 6.59532850480833e-07 202116171.26367152 3617.6861917254378 55288 5236 58276 QSP_20200607 10087842.390866747 1043.262249435354 0.014132550971564814 1.4615570253360893e-06 702474.368377909 72.64833859697615 54476 8247 565587 BZRX_20210127 48411179.67599807 1485.7812222333016 0.34305425814305235 1.0532266914493675e-05 36203125.53966463 1111.4888454865636 17834 None 186488 ZRX_20200301 143051190.42228925 16680.90047661198 0.22827635749841935 2.668991067687734e-05 33301562.740752377 3893.595222436743 152820 15989 118984 RSR_20210519 844062112.1680468 19720.509257436614 0.06636156279313986 1.5511240835441647e-06 112628715.0304169 2632.5647713705152 73191 None 74651 MTH_20190821 4608350.583175518 427.8013491849273 0.013378503223733317 1.2432872605791094e-06 630076.9880557187 58.55413564082766 19452 1992 1114327 NEO_20190507 594209040.7517172 103862.512604812 9.142081376449646 0.001598151115056006 305860402.44644886 53468.25554194555 320789 97575 218328 CDT_20210210 11256673.606019324 241.95835276444453 0.016761738996792043 3.5989067521726193e-07 872378.850055105 18.73081387627369 19453 296 640190 SCRT_20210408 220350064.5852616 3912.1169869250293 3.1571922611662293 5.6184770316483665e-05 4493410.263939244 79.9638421525525 75062 None 79970 FTT_20201015 338222181.94689924 29630.821481547755 3.650714569413097 0.00031944154328071074 1431627.8578779364 125.26901340241093 28440 None 6929 REP_20190806 131110092.81624287 11100.154180073881 11.89837764774497 0.0010073327696564676 20589810.14612758 1743.1612187171095 126068 10046 203996 AST_20200730 8732601.982253022 787.3434759022398 0.0506936078865849 4.5706058194984035e-06 2877094.2630085554 259.4027990900267 32466 3461 221691 AE_20190603 148290272.71909076 16963.358179303093 0.557523831346902 6.375727516683706e-05 46271481.80004993 5291.511199397396 982 6357 374739 AUCTION_20211021 263356200.84840733 3973.251833058674 36.58294691850705 0.0005539627870225062 32998725.64190928 499.6881761741111 83291 None 128625 XRP_20200331 7516283687.083531 1169244.1962268078 0.17093843850410675 2.6663060732299705e-05 1990274338.689318 310443.9588357185 945795 211606 34157 CTK_20210207 40722583.32112196 1038.043492241234 1.1639313961606026 2.9598883518451973e-05 9248226.499727052 235.18325892801224 13037 None 214497 NAV_20190522 14689089.841079045 1849.5301986297784 0.22540605939802677 2.8381289672891225e-05 487156.8647027173 61.33881285263414 48592 11276 1031140 LINK_20200306 1704838112.437681 188252.2376191283 4.682347769184177 0.0005168845150304861 617200385.3285514 68132.76962184331 45378 13465 95530 TNT_20200109 19468474.991838776 2419.046033253194 0.04544244441215094 5.663114406643742e-06 765061.5408252283 95.34326530766245 17718 2567 553344 SUN_20210401 0.0 0.0 0.0004469543713448794 7.6e-09 57.73517479668268 0.000981727345309284 45 None None WTC_20200520 7953949.92697843 815.3648992033975 0.2740375486060882 2.807086571065946e-05 7611397.664990391 779.6687819284683 54330 19626 960738 ROSE_20210909 376965673.2901233 8133.535318763307 0.25102748502713773 5.422119929252444e-06 298302944.6088496 6443.255967542662 30905 2226 233513 QLC_20200410 2271983.943083047 311.66108666609614 0.009463271168414557 1.2978724756397944e-06 46722.71606729281 6.4079456344092 24479 5660 940522 ZEN_20190509 70795625.46753362 11894.235077953348 11.080168319505074 0.0018600860399496624 1942868.7095482233 326.1595726595506 25667 1619 234358 CHR_20210310 100251461.5199941 1834.2886743288539 0.2219200773545369 4.053084502166786e-06 615510881.1070855 11241.513804740704 40625 None 423474 DLT_20201130 2547217.0149191604 140.42480290147873 0.03105991221785163 1.7122930734927852e-06 53848.45118428142 2.9685959617157307 None 2537 None CVC_20190807 16066961.113449322 1400.3276260525267 0.04669591074418543 4.06939709613873e-06 5172930.2714006435 450.80408732764977 88500 8140 266707 LTO_20210104 38181222.192188345 1139.2536508180838 0.13748069231822704 4.176497104221762e-06 3805331.532421461 115.60136814684135 None 804 1001701 HIVE_20210704 128924588.44423486 3718.95428898638 0.344414291295168 9.932483979815045e-06 107415947.76377071 3097.743639871052 21988 168 116444 LEND_20200905 832905414.6955247 79390.26991018926 0.6601157461756272 6.295659220508152e-05 244643764.96197525 23332.1774786586 64287 5898 20694 STPT_20210819 74766417.61797927 1658.704350745642 0.061240654205534456 1.3606069805796988e-06 8292007.3865218535 184.22669188436697 30704 None 819629 LUN_20190603 7179676.128844396 821.2405955852726 2.6548769323243286 0.000303559719089387 433902.8136561911 49.612625964643854 31478 2231 2333394 NEAR_20210408 2123642843.9835045 37703.36650341664 6.139463547333392 0.00010925668148759884 165031206.16440618 2936.862771218871 None None None LRC_20200407 34370249.453904025 4716.876361499629 0.03008860200290992 4.129275108359023e-06 3746287.1548785795 514.1299119151228 34180 6807 552171 KEY_20200309 4362424.21182404 541.7949773262199 0.001486526016182508 1.8480570203822405e-07 2435908.68548934 302.8334585619492 23532 2763 281483 POA_20190509 5962704.212387809 1000.9827758002261 0.027082566388759808 4.546457700064017e-06 300438.99337369885 50.435883926799654 17413 None 629300 MDT_20210616 21893729.499689013 542.1233069106435 0.035966147169347346 8.910681270857057e-07 16204090.085503101 401.45940947278046 33059 310 464280 MDA_20190305 13840848.414921172 3727.405850279306 0.7787483543698469 0.00020972060996233963 2550133.7387519316 686.7630604617618 None 351 2571969 IOTX_20190725 26721101.722181536 2719.990223914991 0.006485704301500373 6.601918019211143e-07 1185938.622272012 120.71887949385543 20447 1759 905527 ZEC_20210104 649615846.6246716 19434.80652503801 59.81795531900751 0.0017943836672389335 484589833.2890219 14536.439393934901 71915 16544 167554 JUV_20210421 0.0 0.0 13.92242693136482 0.000246965518706423 10279455.026848417 182.3439947101306 2413423 None 44251 WBTC_20210814 9308855378.199131 195155.50397367618 47740.23949707087 1.0005850098922109 298520354.946014 6256.671425475575 None None 187032 AMB_20200807 4911258.488502378 417.4352500593821 0.034005942267489486 2.8882368280777275e-06 6749810.706214543 573.2836840954096 19752 5480 494689 AR_20211125 2906432501.2887225 50836.52556318138 58.052301388257455 0.0010148676317219853 74324956.48063104 1299.3454308875214 47054 None 45169 APPC_20190523 8490858.918428482 1107.443916158014 0.07966816186138596 1.0395561767872984e-05 1137035.0667481015 148.36690081017815 25582 3380 1307105 DIA_20211204 112721957.87565047 2099.5707847216318 1.9825199885516316 3.6970926136569975e-05 43086060.54144217 803.4882730020732 39221 445 276114 COS_20210210 39752212.535206035 853.479743304433 0.013136970330265 2.819426610453704e-07 7464488.225990372 160.20114386108293 15019 None 369084 SC_20210408 1282327738.950222 22765.830836530375 0.026841006280890065 4.776572499256177e-07 376094668.55766094 6692.906488488847 1012 37752 63579 FLM_20210127 0.0 0.0 0.2083921759462081 6.397944254760864e-06 24094560.579121288 739.7382110351809 12890 None 124168 GRS_20200403 12476543.316380678 1841.3849021113838 0.16807022214754858 2.465418932504678e-05 14452110.438372077 2119.9773662541506 37543 106841 None XVG_20210610 514770527.69913137 13742.32142590154 0.030915279464651464 8.25427625865979e-07 85440225.2526466 2281.2254491952604 318388 54389 107080 SUSHI_20210421 1878115263.9287584 33243.61366746717 12.644593638963721 0.0002242984389340577 665307009.2425239 11801.670171918204 74825 None None RAMP_20210624 46580958.60082086 1381.7313374120292 0.16072406860365543 4.769049051480798e-06 4125136.7728588004 122.40220014803302 29823 None 108775 RDN_20190325 16979582.94102689 4253.78107321041 0.33512639376746495 8.392325892865006e-05 1411842.3432017849 353.5573823444354 25230 4468 918297 JST_20210821 101326449.99848725 2062.327721177906 0.07073063950365482 1.438717962678069e-06 132476835.05396579 2694.6851261118827 None None 156569 DCR_20190816 259108060.3855423 25178.378096016306 25.329264482021205 0.0024585713631150026 15683304.46289537 1522.2914687813866 40562 9580 278378 POLY_20200730 27205939.462031536 2450.120362320163 0.0401883335416581 3.6208464593399725e-06 1477277.8107329295 133.09823172710594 35059 5010 381210 HNT_20210828 2155031126.3121037 43934.19501344449 22.735389101764895 0.00046347158751389585 36830704.337686345 750.8112103222073 78450 48891 2626 XEM_20210114 2053452234.480474 55285.44623770174 0.22882487002840504 6.1376500204841955e-06 114093973.59111468 3060.283085757684 221198 17943 99771 SXP_20210916 541712816.4435467 11240.616064931766 2.889960629490142 5.994974531515676e-05 167043423.48280582 3465.172013825264 None None 188005 EOS_20200310 2848705872.134971 359810.52129752364 3.048990810118241 0.0003849278397732203 4404623097.635754 556073.1925992292 1472 70334 94982 FOR_20210430 62126224.692657754 1159.2669724450573 0.1106556593615206 2.0646917375059378e-06 53573831.874209404 999.6185342480289 None None 121436 VET_20210825 8287848124.748522 172466.70253293953 0.12401838807957238 2.582403818882734e-06 1129443366.016451 23518.116198553234 406916 198839 47063 REP_20190906 101020662.01731364 9558.202872512631 9.183696547028513 0.0008689275338647847 10326274.205576919 977.0340225763159 125787 10055 201886 THETA_20201224 1091084032.129269 46663.00056675199 1.072563107352399 4.6002167552604594e-05 162407790.40374455 6965.660421085744 76160 4640 78073 STRAX_20210724 148553297.95024318 4441.196711003416 1.4844273754689878 4.437891361970608e-05 7771574.826211208 232.3414763167812 157526 10763 180987 BCD_20190801 154346937.84691763 15354.78132169752 0.8193766869084027 8.146650154235456e-05 4417620.880957505 439.22181831894585 21438 None 3532175 KEY_20190812 4636576.559293562 401.47383616061245 0.0017734455258330475 1.5355984515147278e-07 71462.81960276978 6.1878526024272364 None 2828 851050 TRX_20200520 1027154849.5566802 105296.19576695368 0.015529955246080616 1.5920142990602688e-06 1454254472.0098069 149079.2392654353 509290 72797 68608 EVX_20190826 10556416.65738532 1045.4115269466124 0.4909126848439729 4.862850242569232e-05 1009020.0450599793 99.95083692809123 18311 2913 816674 1INCH_20210519 874464390.7929194 20494.338647498615 5.302843074111118 0.0001239535853034141 223679732.0907901 5228.498065070137 None None 11416 AAVE_20201208 1089724613.6056843 56748.83455053054 90.85392083063093 0.004732421124703589 298053934.1594298 15525.105811851214 81649 1694 18130 CTK_20201229 20353737.208175227 749.9992216435616 0.8225613409838538 3.028582611199097e-05 4328095.554082579 159.35583501923801 None None 235753 SRM_20210429 478878568.1354308 8748.574343429715 9.618161847907524 0.00017565611462145529 486563560.4334666 8886.091323231198 67131 None 59775 FUN_20200314 9360947.22640294 1702.8251715615077 0.001567257774016315 2.8314069087015387e-07 403952.5197966154 72.97803681703898 None 17008 312525 1INCH_20210723 372238003.36056715 11497.826063920013 2.0643069150262088 6.376308070975704e-05 62102592.22652406 1918.2479948117157 240610 None 4419 AION_20190410 62085411.6075747 12001.370971960978 0.20630247023033146 3.99089660042408e-05 4902439.825380615 948.3711179537089 68537 72494 263529 UNFI_20211207 39516193.89201499 782.8966166000225 7.769285502790906 0.00015394052383413108 35327173.507274784 699.9721651798691 23551 None 309725 DGD_20190405 41185532.75927713 8403.886776712026 20.393262970606852 0.00416633024797884 669910.8041574305 136.86233786283964 16557 3315 526457 INJ_20210201 125100548.08867571 3784.5364285818478 9.5011931733585 0.0002865951144139044 24733858.21528683 746.0750240279269 None 2168 139911 ALPHA_20210218 415915377.96930873 7978.079801402325 1.6718833630544905 3.2057371368321154e-05 146331273.03832868 2805.815325549126 38286 None 39039 YFII_20210828 168433067.88017038 3434.275798527645 4240.627240645348 0.08646387892841635 33954107.52731833 692.3041511938468 18051 None 505373 NAS_20200625 17721198.745232902 1904.720225846984 0.3875176682993193 4.1691357380716415e-05 5824080.7538655475 626.5877713116579 23410 4914 725695 SXP_20210318 280390972.6754091 4766.697281221654 3.223577063513381 5.469040509400925e-05 254205265.2255605 4312.7831779096705 126731 None 82835 DOCK_20190625 7331228.213356837 663.8139363634324 0.014259364271357855 1.2912505127798987e-06 1689041.0815738284 152.950378515075 174 15252 251058 IOTX_20190221 9946632.811163671 2505.095672645002 0.007472827844241745 1.8820588887146204e-06 680361.3941733153 171.35149318726044 13439 1566 1268862 XMR_20190405 1077017060.9444637 219652.53187891096 63.70382233135388 0.0129987321821371 205490167.65866137 41930.16302167344 315753 157505 118862 TRX_20210724 4011559466.9897447 120011.07951582264 0.056005655218664956 1.6743629066924998e-06 785461335.3155379 23482.402256677793 1075457 114275 24266 LINK_20210825 11626164964.720568 241935.6996397887 25.925703523455905 0.0005398444280959156 1462081545.5987875 30444.557660673134 439341 64650 31110 STORM_20190812 11530443.196617816 999.9205146949585 0.0018527898798422144 1.604383368443343e-07 133062.76882367785 11.522282995085801 None 2547 2770937 TROY_20200530 7647400.895238583 811.9143453505415 0.004014842610725377 4.282861114056326e-07 2390076.4810361187 254.9630611397923 8830 None 549001 ROSE_20210429 229611788.6157711 4194.749852043584 0.1530567336056141 2.7954477960827743e-06 18268696.001924384 333.66180482772637 18418 1402 227579 WAVES_20200107 89407172.01364711 11523.15871936243 0.8936128595947618 0.00011525254730582588 57600894.695623934 7428.999895744346 141373 56856 25440 FTT_20200901 394722761.2918958 33771.25665792145 4.2188794339005025 0.0003614276696905947 21853436.213728994 1872.1645520355012 22476 None 9100 UMA_20201228 440544851.49387693 16647.22701082006 7.907029800940807 0.0003006668441946693 20362358.36248262 774.2839199215023 None None 163943 LINK_20211125 11955169405.239264 209106.9146659893 25.60719532200036 0.00044768648249774725 796420100.7518725 13923.68469145784 625940 72188 21078 ELF_20200217 57463813.01466706 5764.315197481535 0.12213156417047726 1.2276458401253394e-05 100218010.6918408 10073.74504429835 None 33467 876867 YOYO_20210104 1639620.6268068103 49.0120329986833 0.009498357531868142 2.879923698697667e-07 562129.1257659135 17.043883488170316 9320 None 2139137 ICX_20200523 172012616.6358992 18791.015656581716 0.3160924002574604 3.4529811859124755e-05 37040389.722341575 4046.2778834902592 112605 27695 112473 DCR_20210610 1831366097.4446027 48837.53624316312 140.7758058665544 0.0037541065823821786 57028641.3892049 1520.7982416131267 46073 11228 167821 WBTC_20201030 1572238770.3622086 116720.60074388504 13440.151560427186 0.9995167227355715 70528306.06203151 5245.046606674759 None None 149186 CTSI_20211007 280106825.92248785 5046.460338913715 0.6503179708641553 1.1722764179173019e-05 39126064.6297421 705.2944089859076 53783 4786 210315 FLM_20210828 0.0 0.0 0.6728582471808379 1.371908896669566e-05 31877384.572918527 649.956624316896 None None 69223 AUTO_20210813 40065223.71207326 901.19971199858 1146.4059636721045 0.02578630350633095 14563994.350908216 327.5903916218846 73688 None 12074 XMR_20190510 1098101006.9315724 177665.35259636628 64.62060594589691 0.010466347384409548 304753378.411369 49359.71550152776 317154 157681 117450 QUICK_20210805 53662956.653470874 1346.0419555523806 334.96250478996376 0.008421786309828896 5298072.975974799 133.20666587896824 42516 1900 4564 GXS_20191108 36304108.833146684 3937.653808923138 0.5584860868061635 6.0579881486105995e-05 32621923.37679207 3538.5523448156996 None None 564095 NCASH_20190903 3326138.395909665 322.07758964148775 0.0011463781461125266 1.1100641830527965e-07 328588.6443937908 31.817990105301217 59739 58894 754232 WTC_20200506 8677633.801499946 967.7256982723366 0.29713176572566946 3.3116305147578605e-05 12772640.17084274 1423.5524377705638 54517 19643 1205901 CDT_20190903 8011278.74367257 776.009879488604 0.011884952078831444 1.1503656098274816e-06 401203.25517783384 38.83317528300865 19714 298 193122 ONT_20210325 991686768.9097766 18760.847096716145 1.2212103571051758 2.3179255163237097e-05 717836166.6505436 13624.931671587457 111537 17725 190882 HC_20200610 59526876.488631114 6090.822412934684 1.3328435387549113 0.00013648806847924754 24740345.201294687 2533.5021192277127 12670 845 1027994 NAV_20190410 15417567.359203015 2980.2805614389667 0.2378101744863546 4.600409369040666e-05 185808.17319107117 35.94436876549965 48649 11360 988851 SNM_20200404 2885669.0539079392 428.84945823999993 0.006594285287046234 9.8e-07 62473.61142561126 9.28442379 29979 9688 7470249 VIBE_20190522 9033196.98868269 1137.3863732535333 0.04512083161127759 5.681246527539566e-06 1992882.3129585907 250.92746112997514 20674 None 1508897 ONT_20210401 1381735266.07006 23491.185718030534 1.72648805274282 2.938121543546568e-05 707197161.5832869 12035.016475682241 113792 17921 179444 OST_20201101 5808967.5386724435 420.97827847409906 0.008400499620448051 6.089026507443855e-07 571741.9605964909 41.44220118784162 None 746 657896 HC_20200901 72748852.12926319 6224.166421985772 1.6199311314520737 0.00013877806727429214 11138262.856172668 954.2051275890373 12877 845 533192 ONG_20210513 0.0 0.0 0.8459932092745324 1.6701821227486172e-05 12965317.91997415 255.96472841977686 133035 18898 138836 WAN_20190816 23260701.879677054 2260.712963092454 0.21982681483283922 2.1337370936152646e-05 2549548.088903472 247.47050687997196 107881 16866 605813 CMT_20200223 11743194.801643703 1217.211190160912 0.014873555308287871 1.540830171676877e-06 11183640.000245152 1158.57235102007 287244 1640 729361 CMT_20200718 9746802.234989088 1064.602543625473 0.012178488655448103 1.3304733387735163e-06 880406.9151223657 96.18253635422431 283401 1637 956184 SUSHI_20210902 2656942470.9120584 54619.936740866615 13.786118332282841 0.00028334294901368145 639705124.9985493 13147.713681798969 129841 None 4465 STMX_20200907 17155201.645619776 1666.1140510673442 0.00214885917516042 2.092535754823648e-07 1274763.2976976917 124.1350671185879 21341 116 160167 ONE_20190920 21367637.673602976 2084.6489530828744 0.007725517363339189 7.537095082534227e-07 3378405.072926108 329.6007123457433 70843 None 165581 CTK_20220115 93887748.21166103 2177.935833472091 1.506358004875031 3.4938019755983656e-05 3808900.805144681 88.34251296707318 2372 None 671406 GXS_20200217 34817767.21917431 3492.7338326603176 0.5367838016924877 5.395660046362874e-05 9842864.352665523 989.3880881277342 None None 811785 BNT_20190509 37642878.64672269 6319.3077086229405 0.5786889976890326 9.715842073769885e-05 2979412.5237766686 500.2255385747227 809 5134 153854 YFII_20210430 98431534.70644075 1836.719160012661 2473.817895779066 0.04615824801894863 65482248.09650992 1221.8142061443684 15699 None 334053 OMG_20190224 186416506.695843 45320.36620617053 1.3310154270280639 0.0003234723446848685 59150302.92778262 14375.105493399113 288149 37082 None AAVE_20210823 5220179598.966155 105814.27142331186 402.02226503115804 0.008157728757979224 221916575.98752677 4503.0720715565885 None 12595 14216 SNX_20210729 1530568676.0531294 38276.65627731869 9.099680729555981 0.00022744238016179385 88087963.09997153 2201.718564255539 144669 7321 44436 IDEX_20211230 157467269.34217528 3395.1991940457756 0.25900268308117425 5.566401131431491e-06 22483722.863234214 483.2128335345258 76757 1986 56023 CMT_20191019 12969533.719481232 1629.6536593053152 0.01621191714935154 2.037067074131644e-06 2164869.8943390064 272.02120149702563 290265 1652 883595 AST_20200903 31220199.00995547 2736.598846326078 0.18342600091161468 1.6074634706215122e-05 24203867.96997417 2121.1187844752235 33370 3480 151828 OGN_20200927 29154556.27430656 2715.200389867799 0.22662021840640897 2.111049953043262e-05 13441585.992355902 1252.1327389730995 None 2412 145374 ORN_20211021 251910701.05530474 3800.5596605074943 8.121176197721896 0.00012256408732955648 9678914.947400993 146.0733455335417 None None 71899 LTC_20190901 4060570098.643615 423024.3368959386 64.3344200139039 0.0067019707812728865 2700765104.206682 281349.3742783841 452091 208031 124361 REEF_20210523 317912373.3074567 8458.70205104308 0.02508178434636839 6.673077978817391e-07 66064075.66950283 1757.6529741789134 160558 11714 32388 VET_20211028 8380158500.259058 143179.07831913186 0.12499363875435085 2.1359855625235344e-06 870957382.6553857 14883.57658409583 465235 210237 43716 LTC_20200207 4696572136.049285 482295.8761058204 73.35397093114041 0.007532795547740735 4489773825.683815 461059.54258730315 448827 211065 140635 ONG_20201124 0.0 0.0 0.12661545753698988 6.900058154652793e-06 4765667.545135364 259.71065339766085 93667 16692 254257 POLY_20211011 702614635.4479474 12840.672511226066 0.8027626021881827 1.46730447064955e-05 94811560.8612825 1732.9834093144507 56562 7645 151419 POLY_20191011 14447596.410841964 1687.315569793005 0.027581292401853384 3.2211824570166395e-06 3449083.661306054 402.8138935880761 35218 5066 294073 MDA_20190302 15815247.291534318 4134.360089264987 0.8862989810195572 0.00023201488964313407 5761753.612367037 1508.3088857740306 None 351 2571969 BQX_20190712 12457605.434501003 1098.743192221598 0.10492367213979015 9.22060759046096e-06 1886842.5707969707 165.81420165238052 60793 5779 466152 XLM_20190105 2177304463.878755 571445.3524261995 0.11363662007392994 2.9825547468997792e-05 63799536.767584145 16745.096000951868 259944 98647 59007 BEL_20210718 80709188.716301 2553.632220435961 1.6821701077571827 5.332512699780372e-05 49905991.87749517 1582.0298687669554 None None 593705 MDA_20201106 10560379.212163916 679.6184946553544 0.5383441965417415 3.463113133642329e-05 404981.9530370139 26.052074666358152 None 371 4462991 EVX_20190305 5024169.720641084 1353.0326355806983 0.26053063696557416 7.016213105517246e-05 407026.5315678732 109.61416739088143 14052 2313 1155808 FET_20200129 12892160.505457964 1380.0646863450297 0.0378513147344454 4.0480971428067526e-06 7031339.485009719 751.9830018868485 16410 346 392761 GTO_20200905 7112421.19710999 678.3261927796808 0.010732821560811569 1.0236111986853689e-06 5546007.350326664 528.9340924583933 16598 None 1248781 IDEX_20210509 71223883.9941405 1214.5216142316012 0.12175853917628784 2.074428829319457e-06 8401176.292866508 143.13281368204383 51572 1979 5142522 TNB_20190411 15133903.615769671 2851.510741218261 0.0057921465758104095 1.091291496186745e-06 3925081.007161875 739.5198772849675 15576 1507 1826498 CTK_20201201 27104466.22665154 1376.8774993976726 1.1300748634176465 5.752839794988924e-05 3937939.5231974227 200.46756133303518 7797 None 264615 ZRX_20190421 190007806.32981753 35780.645653901476 0.3232117240835121 6.085374639183461e-05 26095476.700760435 4913.211380636032 149655 15831 214126 MBOX_20211204 793876609.0285202 14784.972004507985 8.86047580742264 0.00016523414568465843 315443019.11519927 5882.52356967393 238081 8069 7123 XVS_20210427 704318694.7198396 13070.136825358686 73.27344862008007 0.0013597881143454452 173466381.1735819 3219.140463571857 None None 10756 TROY_20210427 39122446.39606669 726.1999678832227 0.020794709955432044 3.8575791546088994e-07 21294532.68926684 395.0300128509143 15802 None 495335 SNM_20210729 64141927.5433846 1601.62144608 0.14698416202915526 3.67e-06 80438.1199701273 2.0084334 None 9708 None COCOS_20191118 15021592.595365638 1767.2822836253636 0.0009561159603633312 1.1235743843016132e-07 3650599.038240668 428.9981275037639 13256 169 44798 NANO_20200707 129234189.00582148 13844.343039974749 0.9697063871017383 0.0001038612581100584 5777678.282978362 618.8233298316273 98070 52081 214640 KNC_20200331 78490153.36439565 12216.454435385702 0.4378028492970735 6.828870125253474e-05 55480030.81679838 8653.802176054249 104575 7282 123086 GAS_20200113 13731664.700007387 1684.4342740653515 0.9816276317935272 0.00012019787832404509 2574213.712623561 315.20610931121035 323200 98675 215815 APPC_20191216 2935425.6597739495 412.4793073763439 0.02667421287752506 3.7483399487063834e-06 13819.370877089954 1.941939211568294 25044 3261 1208747 KMD_20210711 93880944.68281516 2784.151758182253 0.7428094129645236 2.2038198307330858e-05 7015605.485394028 208.14397641524764 113891 9417 230876 ZEN_20190804 54998790.73201748 5097.2077232060265 7.818843445141766 0.0007244992386038544 4231357.995903602 392.0804487007997 26505 1758 272148 GTO_20210708 23802508.7540783 700.4736522496063 0.035918581320940716 1.0570322692221652e-06 12892758.273216281 379.41536199051995 14003 None 269467 VET_20191030 262888966.55949694 27936.337578066 0.004170826170945465 4.4321984834838894e-07 66308731.62343489 7046.408737684385 None 57630 368784 DCR_20210821 2300225463.8013506 46811.42033726789 173.70573823090365 0.0035346313978655386 22455437.23965011 456.9319029320672 47989 11511 147946 TWT_20210427 224994203.53294447 4175.247721144085 0.6496710748199676 1.205189974252659e-05 24060303.79022553 446.3372009210749 None 22932 5638 BQX_20190530 17039266.441259526 1970.481623712551 0.144864747325055 1.675267673710268e-05 863117.8352966662 99.81402893215859 60912 5776 448340 MTH_20210620 7899003.2386717405 221.61475707567325 0.022610682392846124 6.3525938933467e-07 91556.01937376584 2.572316038356 21707 2055 537321 BAT_20190523 432932409.71363133 56478.07227952646 0.34534945600415884 4.5094587792076065e-05 44830928.99130331 5853.874178896375 101125 27048 50152 POLY_20190507 36489127.10311272 6378.501941325809 0.08419087050360169 1.4717563225618162e-05 3177720.7763518286 555.5033005308779 34650 5052 307356 AE_20200520 38835448.17668479 3988.790062775744 0.10880597546362054 1.1156683551636801e-05 7525346.586594212 771.6295922653003 25278 6340 522422 YFI_20200907 718259420.9474828 69812.19127480958 24027.53566542955 2.3358748043763606 390830330.1456167 37995.187425182005 None None 26862 FET_20201111 31439696.16358857 2057.1352747545848 0.04561929290294926 2.9862989441892315e-06 5219921.6064845 341.7029372936082 25788 690 257164 IOTX_20200531 25317757.715142723 2615.69126305654 0.005901611405541504 6.094947816996659e-07 9158328.678123076 945.8354938729211 23589 1857 901298 POE_20190430 10310934.386231346 1980.2243571599217 0.004532812699155549 8.705466968106238e-07 389731.86646814924 74.84972610028501 None 10918 725975 TFUEL_20200229 0.0 0.0 0.002941304944316838 3.371480178592443e-07 3268869.810521715 374.6952451791078 68520 4028 394395 TNT_20191026 34613632.90914847 4011.2959337873085 0.08322427483806967 9.6288181083479e-06 1480748.8043799286 171.3185357189309 17726 2555 505684 GTO_20201106 7636144.577305089 491.03304338024 0.011520724173050945 7.416650848783927e-07 7673547.212181365 493.99690149284146 16432 None 839827 WNXM_20201208 32916201.367464148 1714.2267456978777 22.727770247180466 0.0011844476588083466 11117471.375865791 579.3820863112004 15683 None 90492 DOCK_20191108 5935561.5880587995 643.8280286044552 0.010601265296637534 1.1499150729693937e-06 2025523.4415247764 219.7077302462132 None 15133 193357 KEEP_20210804 123420615.54957527 3212.2156395509624 0.28183664724398166 7.337761837616897e-06 16999411.06512898 442.5883964894117 22430 2843 131612 RENBTC_20210207 675804602.9749728 17239.95747812939 39488.028297945464 1.0038001903164075 18701286.975606143 475.39358723190327 41566 2687 83739 QKC_20190401 63673677.70336079 15516.819899156802 0.040255644291590696 9.80743905197584e-06 8755471.419830782 2133.0860263797726 46591 9086 169394 LSK_20200719 173543828.41680077 18924.40251401151 1.2325846472937003 0.00013442256391899335 4402280.3941746075 480.1015646061844 175575 31142 173512 ADA_20200425 1287837852.5131044 171750.3402355155 0.04137631150203629 5.519775666483859e-06 286509553.68496 38221.59117705702 155145 78088 53187 PSG_20210207 0.0 0.0 8.526065972679207 0.00021673573016738664 11903340.749181135 302.58729606032904 8623135 None 40302 THETA_20210722 4352740126.569271 135261.8850615218 4.370567618611224 0.0001353270721981887 325206998.2044344 10069.472609910554 183340 21672 19127 PERL_20200314 5772323.088762514 1046.0958859500597 0.016914425055668873 3.0475985168177074e-06 3358055.8097426523 605.0460403756298 11556 475 686395 ETH_20210814 387650495386.42346 8136658.131089265 3323.19799054098 0.06961154828711474 25989682658.6423 544409.9492442075 1494841 1064758 3722 BTCB_20190629 0.0 0.0 12376.61580764104 0.9991196505895997 95555.31641914722 7.71383679 None None None ANT_20210916 233259777.82955462 4840.172737996409 6.147905640536868 0.0001275549637796522 25884731.387346458 537.0489021153355 88346 3145 112871 TRB_20210727 62379025.03830794 1666.1780263703981 34.54662745777245 0.0009258431965370656 34909719.17671088 935.573987136206 23297 None 258398 ACM_20210318 0.0 0.0 13.005504130635828 0.00022075037840147183 6636924.041562914 112.65257224021283 None None 48576 POA_20200905 7407266.8507261695 706.1528274842145 0.026530313654272414 2.5302979777884427e-06 412929.12496519554 39.38263766818024 18014 None 497841 FTM_20210620 788270518.0216765 22111.926726050802 0.30962934878333526 8.696570524201281e-06 106720603.26669416 2997.465377042008 None 8617 46901 RVN_20210916 1160116921.2257316 24072.586998295836 0.12007021760452134 2.491629696724047e-06 45428085.1585438 942.6981003661847 71441 53000 54807 GXS_20191220 25457128.034797627 3564.2680523648496 0.3918232855076901 5.483445985241513e-05 9802247.579553135 1371.7943043328664 None None 1070917 FUEL_20200106 2764351.5588947376 376.16981191532443 0.002864156474114672 3.9e-07 79863.60169095511 10.87468682 1 1485 None KLAY_20220112 3504825319.0951324 81757.07482807038 1.3446354582413678 3.143251326658959e-05 56277140.2035437 1315.5476045285716 88525 1137 24056 FTM_20200530 12373567.482927596 1313.6851435115568 0.005824229528744453 6.213037119154076e-07 1816773.3306693735 193.8055511862926 21943 2367 335778 PSG_20210202 0.0 0.0 8.240823019506799 0.0002467425726053622 2662238.311708982 79.71139877227266 None None 40302 QTUM_20200501 148060255.7350692 17110.97596424486 1.5339302722895132 0.0001781658098640869 491571030.9656928 57095.91395377116 None 15101 116329 BAKE_20210814 440503720.5240814 9234.940504338081 2.5863768778143172 5.417724114877057e-05 72966555.34231818 1528.4418517987115 None None 9385 MDT_20200927 8462576.81534429 788.130392111603 0.01395772035553713 1.2998594057143078e-06 115957.69178538253 10.798948001014724 14115 64 829156 OCEAN_20210718 165507791.26535785 5236.653164660602 0.3812553152076704 1.207306457852475e-05 11268264.38616289 356.8277692022013 None 3265 115494 VIB_20201124 3001873.626435731 163.91178444233427 0.01658447361757511 9.033321789113202e-07 733063.454920075 39.9289011688292 30420 1095 3122321 KAVA_20210722 257213514.71087295 7992.724828826692 3.6788401716503634 0.0001139088033753452 74064499.17797112 2293.276706873675 None None 50166 BRD_20190221 13776927.330704208 3476.6405639306818 0.2301475345906654 5.8028883952046916e-05 137013.65347559252 34.5463157427349 146 None None LTC_20190613 8355572151.065706 1028640.246491964 134.7032168465242 0.016565831546329134 6229664880.603744 766125.5715945221 446831 203832 172197 STX_20211221 2183307106.071828 46277.41117415925 2.066949776970292 4.3856693866742256e-05 52582373.0242141 1115.696695780407 101058 None 37004 ARPA_20210509 111187213.19472978 1895.983005676663 0.11332474059957909 1.9291781118537758e-06 23234258.100662228 395.5272426463011 41200 None 485281 BNB_20210613 53465798044.075775 1490696.4364400352 345.0457266991574 0.009671567711847193 2255909259.60942 63232.718065564295 4248235 495305 132 FXS_20210325 73685515.44775257 1394.4455606199965 7.9498120418609215 0.00015054285890695157 12355581.752315518 233.9734059947327 7756 None 69007 BNB_20200317 1431388393.079302 283597.9382286638 9.400670799774627 0.0018686691359683556 284841626.1916497 56620.933424892624 1125135 60229 1672 PAXG_20210125 111413968.95143078 3457.734644056036 1864.2045717434282 0.057760301419884294 2341050.1059422605 72.53482896022392 None None 66993 BCD_20200730 165245638.2747443 14881.225668377007 0.8785687543652335 7.921297435596116e-05 21530725.60735734 1941.2400075997098 None None 1655072 QSP_20210212 44543941.09770159 934.5246256137119 0.0638655645508346 1.33760593738805e-06 3685819.9648971893 77.19613384558215 59415 8196 199881 CELR_20200531 10973388.407404507 1132.189096571383 0.002869040110014775 2.960530185150276e-07 2096004.0648986765 216.28429943066408 None None 1362846 ANKR_20211002 653535674.323068 13570.104592690823 0.08532155417277004 1.771546051786249e-06 53577854.5714033 1112.4461766946954 125137 None 5363 ZEC_20210509 3502250202.807164 59713.003787082576 317.76109501805166 0.005409390271393129 2533593243.344701 43130.49916144584 75300 19206 85283 STEEM_20190426 105169560.2266645 20246.837527463427 0.34257233952105837 6.583971979398664e-05 961076.2700050555 184.7113296019423 5346 3718 265614 TRB_20211225 81443726.11148877 1601.7706517829904 34.9321991967318 0.0006871983258555925 10306728.09940617 202.75752623165403 None None 346717 TROY_20210511 38107602.42478749 682.5171245866369 0.019812745224976308 3.545879665364812e-07 26331229.28505667 471.2490340220005 16288 None 481033 VIBE_20190613 9214087.776608795 1134.113131131818 0.04922033880832205 6.052785492550137e-06 1416489.5864835796 174.19034137096455 20526 None 1515542 IOST_20190725 101183285.16268025 10299.63320103794 0.00841435338942992 8.580924254683582e-07 40706834.32216251 4151.2668389376495 197512 50496 111016 DNT_20190716 7399659.005189428 675.1964103836328 0.01119900035641499 1.0240872986198256e-06 602441.8456755669 55.090010061481195 60656 6350 724607 BTG_20200208 201648989.76034507 20586.973315078216 11.52166826240467 0.0011758971489078324 30651730.685395785 3128.3041571034682 74901 None 199502 UNI_20211028 12621541966.392387 215649.60792017358 24.27394983657263 0.0004147124793482907 631783400.6071733 10793.81238903844 678486 55027 2859 FXS_20210722 110786171.36995685 3442.6005320702193 3.4916174246400726 0.00010811510797682636 5036249.995976432 155.9434055606512 12672 None 120117 QSP_20200310 6727818.118170172 849.7682291360967 0.00941274607567445 1.1893187504183253e-06 82313.55680008359 10.400477791381261 55467 8332 347894 APPC_20211207 7888860.995052332 156.27379339349838 0.06713899759333974 1.3298041076091572e-06 463257.01509385987 9.175607376236492 25328 3101 1114330 RCN_20190321 12191720.067693137 3016.673608686349 0.02435094145596332 6.0240248690701756e-06 322479.6744706062 79.7762001232546 18515 1112 1862328 LSK_20200502 171979317.9209494 19407.402911986224 1.229006192298273 0.0001391610752921439 6088791.142228208 689.4373095039035 176407 31291 170063 ZEN_20200308 84885761.17705801 9550.191114778945 9.90477527990103 0.0011128420989702102 2017322.5516761765 226.65445699336337 57390 5062 41227 DODO_20220112 201713740.91929623 4708.064996423693 0.7479523432858541 1.7481309511873485e-05 21866575.93552228 511.07050512663193 126839 1279 16737 KEY_20200422 1642971.3327175686 239.9193495250895 0.0005933118003769689 8.667232191340545e-08 525256.4465254969 76.73064279426812 23352 2749 220323 DLT_20210114 3780133.1190086002 101.69214871133521 0.046229884092177466 1.2400000446197686e-06 309440.109791215 8.29995050784 None 2535 None ICX_20200105 58299239.944254056 7928.396658970596 0.11351310253599477 1.5437064340085683e-05 4902932.489280092 666.7678232837753 111868 26944 96597 MDT_20201229 14569567.685320036 537.2948844116479 0.02403671057031598 8.855662706938002e-07 1071076.8829529693 39.460872072668636 13403 71 1448510 WAN_20210108 59117438.40825264 1510.309967416482 0.36349882208128625 9.211266430830682e-06 6005907.132802943 152.19309499358732 104012 15879 601908 NANO_20201226 140878291.32601094 5704.704125643547 1.057970738746081 4.2905533236872846e-05 5539347.92357964 224.64579382170479 99101 53698 348353 EOS_20190213 3041631981.2291846 836763.5560969489 2.9444485949656514 0.0008103165185786908 1260240965.6574204 346820.1392979935 622 62574 80265 TFUEL_20190830 0.0 0.0 0.00485200877624831 5.113216870736639e-07 976695.7178148628 102.92761724492827 70184 4027 248011 SNT_20200414 61722590.50062421 9008.948246318689 0.016054845678838768 2.3446572847651446e-06 17379502.331182785 2538.1107711368463 110276 5642 188189 ICX_20190626 158559125.83489516 13432.829958094475 0.33556543832181557 2.838306246565413e-05 20714024.58042489 1752.050081562505 113765 25259 300375 SYS_20201015 28932651.31565611 2532.68349886809 0.04840311834101876 4.237073809053977e-06 386382.9008547593 33.82288012817199 61163 4493 313828 GO_20190914 7214512.426388693 696.8961164779939 0.009215337553299728 8.901686729983319e-07 326265.8059695975 31.51611081687325 10238 686 740517 POE_20190804 7904294.355108091 732.8384540836538 0.003141428942166422 2.911431536687003e-07 86076.34653303835 7.97743302403848 None 10799 756599 ATOM_20211216 6334587758.178769 129843.33121425816 22.35194093213134 0.00045738163069477655 423684439.93505216 8669.738374215502 272016 48328 30956 ASR_20220115 8220474.037105258 190.7086062270077 3.856304993528981 8.940873128996868e-05 819311.1887651252 18.99579365275517 2043987 None 101226 POWR_20190712 34983243.67162737 3088.7477559281992 0.08343534665595229 7.358879650738334e-06 2468406.1923211054 217.70993741214835 84639 13172 757422 MTL_20210429 248823181.92490146 4545.828810595066 3.85453075665621 7.039514484261129e-05 47112550.83076387 860.4146779499447 55025 4075 207061 SYS_20201228 34908026.35250018 1314.6182009863287 0.05759291004630251 2.1899852343479076e-06 2111464.398874748 80.28897745693693 60973 4490 329298 GXS_20200530 33102296.957235824 3512.278203879831 0.5082558784045871 5.421854724253457e-05 18786034.45652281 2004.0132145211835 None None 497565 COMP_20201228 15254.672638745047 0.5762269506517983 1.651670457580583e-07 6.2475e-12 61.626884950437216 0.0023310580022835588 1962 None 4212866 AUTO_20210930 30211177.10735543 726.8064253581988 864.1289764995981 0.020787829527200232 1980709.2293216642 47.64872712506482 76183 None 16655 CMT_20200806 9991385.736707857 852.9082056587264 0.012462404705386348 1.0634540208488155e-06 1355427.2111178518 115.66263106575063 283001 1631 939682 IRIS_20210107 41755420.92743804 1139.2041960794106 0.04449513361134076 1.2055238755100716e-06 5282532.009912118 143.12168419856494 11140 None 805488 XLM_20210203 7571096054.944266 212617.6482218347 0.33738246894053786 9.499792096081295e-06 2040711573.3302588 57461.00482215979 354540 135052 30646 MATIC_20210729 6517715304.901737 162995.71254687983 1.0173656428197033 2.5428591417079035e-05 1076535715.8838995 26907.520475365312 552963 None 5822 MDA_20201018 5168394.665440469 454.9921262433424 0.2636613448631015 2.3199652618221314e-05 452962.8640576264 39.85635854413097 None 371 6573931 DNT_20210204 100719119.83409406 2688.3159391426607 0.13408084771946996 3.574581799019444e-06 14293068.435570957 381.05175460128146 61855 6922 232543 STMX_20210616 198479388.07000583 4914.4919418221525 0.022811435784257553 5.649657942382658e-07 23704906.03059531 587.0941745876879 66343 4468 52447 QKC_20190221 51166071.993865386 12900.898805172415 0.03241358871021891 8.167039132283773e-06 2557636.358052368 644.4308406918256 33845 8961 181289 JST_20210217 70973155.136545 1443.3434708985517 0.049600412966471635 1.0083657769706696e-06 450822745.620062 9165.129904674706 32562 None 122927 STMX_20201015 17445767.1125977 1528.3811604148352 0.002193603701192378 1.919494806125074e-07 202156.31820438354 17.68952170384085 21457 130 168346 GO_20210408 61622286.74014587 1093.996537840131 0.057704523720194426 1.0268983144674276e-06 6953608.386682513 123.74504235361847 19007 913 147513 QKC_20210620 94035818.89322874 2637.793738849156 0.014455392427055434 4.060091208758785e-07 3240153.79925035 91.00631492190118 None 9524 251496 COTI_20200308 10851025.027913943 1220.777645288395 0.0346941802771221 3.898033353668294e-06 15863725.47374015 1782.3545769390319 22395 880 296885 MDA_20210813 14812441.57552474 333.179637409203 0.75444927079823 1.6987534827589305e-05 408376.924302514 9.195207011112712 None 390 1488938 PPT_20200607 14106446.197040021 1458.5135225731196 0.38939148553536923 4.02605120591848e-05 2684869.0144954026 277.5977527777898 23676 None 2134911 GO_20210204 15188442.742336636 405.398029512541 0.014579465547867848 3.886824272120623e-07 1258554.9968345023 33.55254754321518 13725 691 754202 XVG_20210221 421460166.0256726 7494.5822909951185 0.025649789401148655 4.561153648904826e-07 29328909.708400737 521.5390327098808 292821 52296 127970 SC_20191030 82933776.88555653 8813.17832163101 0.0019661921965560725 2.0897306731108802e-07 11764640.844462957 1250.3828910454233 108353 30469 207365 FIS_20211207 34462118.67935178 682.9044107287312 1.2781537785902408 2.5325500589986674e-05 6106094.512543179 120.98692877979761 30130 None 295370 MITH_20200903 6012611.359128662 527.0379476456758 0.009722683176486885 8.518609792172229e-07 2387953.3110005804 209.22251696460057 115 2104 363135 ENJ_20191019 50862781.88411364 6390.949147655215 0.05749960530752477 7.224966157207936e-06 35726835.82630797 4489.164375453881 49292 14062 31815 BCH_20200422 4036818769.4815583 589717.046847393 219.55204082031204 0.03207317160747862 2958249974.013451 432154.75802388735 2925 292761 142695 DLT_20191108 3446083.456991093 373.8144142751331 0.04295630118640122 4.659691144404656e-06 160401.05060621415 17.399527762404077 14902 2628 7658387 KMD_20200725 82381372.00705217 8634.46931358022 0.6835170976053276 7.166390307479426e-05 3177443.0179886143 333.1415838237006 101416 8378 296104 RDN_20190916 8231151.829268602 798.8368552511645 0.1627124930761668 1.5789395771645027e-05 286331.1080933148 27.78517556917226 25552 4384 1994136 POA_20210508 25987767.47163177 453.99427020615417 0.09055121539621394 1.5800355837517052e-06 1769311.829745743 30.87286722236529 19590 None 277695 ONT_20200308 457529497.4241402 51473.642451159445 0.7201207968408234 8.090852305297832e-05 134206328.17669755 15078.631036314971 84510 16495 345761 STORM_20200107 7598434.287817596 979.3170094207093 0.001074171658494642 1.385398817351093e-07 890265.6886518642 114.82085032061022 25977 2522 3220539 IOTX_20200329 8664940.035669932 1389.955397129889 0.0020047100073838668 3.2064754730139116e-07 2335150.701069049 373.5005772002116 22516 1811 487690 BNT_20200217 21673386.233427014 2174.159212717031 0.31020844631183814 3.118162870287135e-05 41110518.977236055 4132.359881787014 None 5039 112981 HNT_20210702 1138104046.9368439 33871.44452161796 12.917686589477386 0.0003840804182446061 12333854.463287342 366.7213899341986 59860 40029 2473 COTI_20200329 4461691.394971762 715.7062840873442 0.014366043507159575 2.29832823182394e-06 1631181.3266440465 260.96190592640653 22609 908 294374 VITE_20200905 10690937.350336688 1019.1931505284896 0.019725872068181816 1.8812415429799773e-06 1061744.1809962818 101.25774183283359 None None 366677 BAND_20210513 502466439.0082803 9741.839183377348 14.65586089588782 0.00029216889123758236 253693011.9250872 5057.444699797377 91649 5149 164496 NCASH_20190312 5020165.518933794 1296.6746548571052 0.0017227302196890055 4.4610776622700924e-07 549230.2071285247 142.22532236691998 60320 59566 692800 GXS_20190513 62844510.4104651 9056.554126238321 1.0490406132807677 0.0001509066362101847 5540527.06489063 797.0161418053281 None None 893298 XVG_20200313 29351467.963380095 6098.994389464119 0.0018287259962288355 3.8161480159110463e-07 1339684.8361917522 279.56269228534177 296575 51934 314536 ICX_20191220 59788047.496237464 8369.956928623984 0.11710725872102096 1.638879952845014e-05 6211904.451531631 869.3368614200566 112152 26865 97335 LSK_20190916 129453486.72199595 12561.969796796631 0.957243144822058 9.28895537001851e-05 6660747.827266927 646.3497767845756 181591 31002 164016 REQ_20220105 278750199.70852005 6025.394871002156 0.35952281876571407 7.81528581741314e-06 14421478.661385655 313.4932520706025 59020 31621 144319 NAV_20190929 5971448.39908349 727.4715459059317 0.0900881442358976 1.0974985828420396e-05 42944.260308033976 5.231683395081686 51159 14171 455499 VIA_20190810 6730514.058749728 567.415259614865 0.2907138553054382 2.4508600122056053e-05 236127.43908175858 19.90669820748552 40891 2227 1890047 ATOM_20200704 501746980.7808935 55324.59735915571 2.687854490657985 0.0002965099169471193 115430392.36547205 12733.671473815884 35070 8646 179013 NULS_20200410 19227542.15620073 2638.201418851008 0.20220476080437436 2.7731768226263124e-05 8352210.781346071 1145.4803172971313 22777 5182 528791 NBS_20210707 0.0 0.0 0.011876286180438197 3.4775002426455397e-07 1564292.6370297049 45.80411706312316 None None 626214 XVG_20200117 63365813.19077491 7280.065130472822 0.003921370863876262 4.5003208001444465e-07 1725815.4456509897 198.0614284361854 298377 52128 310702 STORJ_20210718 113343479.9152631 3586.1785614689725 0.7879884766162017 2.4978772009905314e-05 18693347.28440035 592.5681323718718 103597 13688 53900 RLC_20211120 282735289.1298268 4863.8251221811315 3.9676622159388337 6.82156513240359e-05 11976385.769732159 205.90889832008543 49172 8387 334755 ATOM_20190616 1483770338.7590322 168257.97879053885 6.176669318570478 0.0007005075772971324 75351632.57928748 8545.76906437282 25830 5265 113612 NEBL_20201228 7082989.95598446 266.78249660809735 0.4079792014520794 1.5513514187471855e-05 261539.84780816096 9.94512005788538 38280 5886 1009679 EPS_20210519 215727769.3897751 5061.141844499125 1.5243092293019374 3.563062143126506e-05 16994311.69456425 397.24084512119526 None None 26202 AVA_20201208 29461920.649363752 1534.3329502987176 0.7651019904851188 3.987295064689103e-05 1030364.793389502 53.697003884494215 None 9018 107676 KEY_20190706 8096030.147507051 736.6188117419731 0.003095964315255912 2.8174738397250164e-07 2444599.722866063 222.47012776711637 23976 2843 905724 RDN_20200907 17781693.954491854 1731.581677462245 0.2662171940385284 2.5924235148928495e-05 686326.888619683 66.83452477165729 26417 4387 895755 FTT_20210809 4612007477.781283 104843.17146802304 43.380077507406334 0.0009863566605026505 76001103.55827808 1728.078855724971 None None 2262 STORM_20190729 12908177.362546405 1353.5935774002642 0.0020778111098706206 2.1796040288724224e-07 179099.23973770434 18.787339361401106 26691 2564 3721557 POA_20190730 4554285.583565655 478.5462134500824 0.020682521483902233 2.1738316526011337e-06 142918.02206789306 15.021365762397187 17767 None 582366 QSP_20190804 0.0 0.0 0.013705361520138206 1.2696015705042305e-06 120712.13968781957 11.182216674940824 56731 8572 645541 DENT_20190513 52169662.39506165 7504.712557923287 0.0007769017861118955 1.1164729301074084e-07 921037.9820066005 132.36087146323254 45090 9269 250017 NCASH_20190522 6037759.530235285 758.7096690193177 0.00208078080086736 2.614898997880333e-07 2278606.17845549 286.3504416286188 60643 59289 878224 ZIL_20200329 39573929.34169273 6345.551489691275 0.003796915746973972 6.074434238472219e-07 8397480.424286794 1343.457321823412 68592 10568 233633 BQX_20190522 15977781.533680033 2007.6583217371442 0.13582578835455264 1.7068746268867946e-05 1256314.3947710337 157.87658513196044 61057 5783 448340 ZEN_20210114 288279612.05014884 7742.0435895227165 26.958058516067908 0.0007213375105774715 78674032.76276931 2105.141618650365 82194 6382 350689 LIT_20210429 154289967.94916552 2818.704667248594 8.601621759528628 0.00015709108264287254 61485520.7120301 1122.9076661983888 47379 None 89808 TWT_20210710 113712134.72980541 3352.6950504424076 0.32839190950216346 9.662858244507704e-06 3908050.9081299854 114.99352098785755 919236 40448 2918 MDA_20200421 6309467.410692799 919.8488855463462 0.3211247847559823 4.690229161293304e-05 159168.29393770333 23.24752897373528 None 375 2010247 SNT_20190305 66499126.798725285 17908.528930987915 0.018997124631974425 5.1160153893000975e-06 24493846.938379385 6596.308668154804 109802 5756 308014 ZRX_20200807 296489265.8538858 25200.276287917382 0.41326406052567966 3.5122515324625786e-05 49397422.322555184 4198.191636393574 155990 16138 50937 CFX_20210731 181968064.75454295 4358.958238395199 0.2114046211497102 5.060985899897325e-06 8196371.930897853 196.2195648656714 37410 1171 192387 BNB_20211002 65027593878.11336 1350420.680026937 421.4675125853655 0.008750076259261799 2049639019.1786 42552.50330389057 5182137 649795 136 INJ_20210610 270492839.83068115 7206.298681005575 9.3472200986796 0.00024956765159835336 47768033.71907917 1275.3905301133939 72456 3630 114245 CND_20190922 14270542.423908547 1428.9932917037709 0.008171437996449099 8.182541163211707e-07 541794.3565697158 54.253053459549875 35762 6094 303660 VIB_20200901 4385442.81782765 375.20490197922766 0.02415709909972986 2.0695173139915896e-06 683143.2401621459 58.524277174807196 30678 1099 None XVS_20210617 285824114.39261323 7472.629754996057 28.140231610253636 0.0007356411444717761 87515045.29337953 2287.8158563081124 115136 None 10744 AION_20200313 21239235.338518415 4413.338962390161 0.05382960013526457 1.1297672879267801e-05 4357917.197019984 914.6328934851829 491 72546 246428 ICP_20210725 6058892056.726244 177336.4939169694 44.22620698868279 0.0012942611089759404 603145825.8712809 17650.80567877167 246544 21775 22362 VET_20190704 437411917.32010907 36480.15928521647 0.007864737048882464 6.55193974512571e-07 40405880.61556089 3366.1251926981527 111845 56677 139851 LRC_20210110 489339179.515101 12092.700652262176 0.3880864382626041 9.633923277454648e-06 252213356.46898058 6260.986950869224 None 7693 277317 KMD_20190321 123015437.8044872 30438.47977359367 1.0951685495929393 0.00027098440927748847 1183846.9107022565 292.9266512363504 96103 8310 295665 LTC_20200301 3729258959.679366 436022.326690034 58.0947744995579 0.006792400050440039 3315466964.707307 387642.0585552246 447886 212001 137206 AE_20200330 31766530.41065752 5372.121854158046 0.09030043755225874 1.529851092851602e-05 8259430.300168734 1399.2953759202142 25319 6344 484575 ETH_20210201 150322722005.1637 4548269.734088978 1317.0474362291777 0.039727574609580915 24723054987.874157 745749.1541987506 636715 591037 7116 POWR_20210603 117165991.04598247 3114.904644046294 0.2726611029110601 7.248804265865235e-06 5518068.052331496 146.7000419569296 90870 13923 164441 LSK_20210401 887487498.1685358 15088.936824737519 6.193096276676147 0.00010539354479084099 66371094.81049389 1129.4972080558748 189283 31857 138778 GVT_20190405 19185007.88005936 3914.396065125554 4.301458802448688 0.000878785211807795 2064562.7765086216 421.788820995284 21244 5814 169324 ASR_20211111 13029698.012854487 200.73152275565153 6.15258135161435 9.472177709260106e-05 1903864.4516775578 29.310855704331452 None None 77395 DOCK_20200321 2142473.36731645 346.5626214832031 0.003830227917208455 6.177296692465818e-07 867428.8818961374 139.89678105086796 43028 15022 378260 XTZ_20200208 1541404032.0071764 157380.38045949352 2.200446890859596 0.00022445234303750155 99070345.93712498 10105.479647562363 53871 20340 140994 OMG_20190708 335365078.1526774 29357.84908046742 2.394893663859326 0.00020951815540531352 199077861.97836703 17416.400173912316 None 40307 None BZRX_20210429 101039477.365962 1845.8779285094545 0.722789177353451 1.3200270549820954e-05 34178208.862845816 624.1952951617462 None None 181064 NAV_20201030 7200687.2734979885 534.5705585821217 0.1024835848094035 7.621495662630176e-06 157519.88565208425 11.714433365188107 48246 13727 1332965 SNT_20200506 87416862.56597458 9747.818745366993 0.022756465618666868 2.5290163928502292e-06 28975591.27105688 3220.1725234924143 110240 5663 168718 WBTC_20210902 9674311955.916533 198879.0923509084 48688.75654827479 1.0006889199472697 438044437.2977306 9003.027514447947 None None 224060 ELF_20210617 96818721.62300855 2531.270992969866 0.20739772772954806 5.415240607431786e-06 9594250.394351648 250.5098532280563 48760 33383 458355 RUNE_20210819 2163897781.3777213 48032.76050112739 8.252934485994707 0.0001832172678198742 115232217.5673682 2558.184861802385 106116 6483 73281 WAVES_20190813 131270278.0600395 11535.49749987227 1.312702780600395 0.00011535497499872272 12168405.40760768 1069.3099171519223 143130 56901 43327 COTI_20211028 405870253.9400888 6934.49042455432 0.46619215768901806 7.96664316767701e-06 136995078.3342657 2341.075212906277 177585 8741 68879 QKC_20210429 199479057.85311887 3644.2586570125695 0.030880169324711874 5.639633277341466e-07 19054411.994189616 347.98998293254596 72382 9406 311852 RCN_20190224 8591320.58987009 2087.92066471373 0.017161683592320235 4.170748075206656e-06 2778836.466965243 675.3315770893097 18167 1105 2734596 STEEM_20190513 99149057.27652206 14288.420705729539 0.32158817844976145 4.626111671982092e-05 1322304.8889467048 190.21626075197764 5511 3725 297313 IOTX_20200127 17234749.44208929 2008.3156585743943 0.003986488616594084 4.6388360703095795e-07 3127893.588765931 363.9740884561745 22170 1796 516890 AMB_20210620 4239840.981163269 118.90221616896676 0.029278620596336364 8.223496573173544e-07 131340.9926077039 3.6889791275269834 524 55 1325034 PERL_20210220 0.0 0.0 0.07492449282110815 1.3395198579152193e-06 5972588.059498689 106.77950570780376 14510 540 428459 AMB_20210202 3565763.7515498935 106.81155962395152 0.024348694331197594 7.2903634317108e-07 977370.9656748899 29.263949230503258 20474 5457 398433 GO_20200315 5261627.32167217 1017.9377533044276 0.005358598759885219 1.034258620703323e-06 854290.1276729498 164.88581599761662 10684 679 656341 RENBTC_20211111 1095280044.8924453 16889.626289593467 65032.64079834765 1.0014192230299115 23460952.601896424 361.26856664153246 None 6226 73959 DOGE_20191113 331731752.2811249 37719.39123119942 0.002718579915473958 3.0891287355957715e-07 77675284.94840187 8826.260850892262 138357 143878 105671 SUSHI_20210727 1609577163.1025949 42968.592249915004 8.295325480922765 0.0002222584602136036 535655341.2012509 14351.930085730528 None None 5721 GXS_20190703 124006757.62012884 11524.36643917911 2.0712105844419093 0.00019194074883677572 7660766.385496328 709.9293754777569 None None 741418 FRONT_20210930 60094030.70616981 1446.7131865142067 1.1109116345994288 2.671397193961925e-05 26740746.40466879 643.0318369618807 None None 411244 SKY_20200309 7515487.900688827 930.307754911735 0.4405463019640494 5.472398871965358e-05 225982.96059484084 28.0712581885097 16266 3828 308227 BCD_20190523 198417344.67391637 25893.473354473866 1.0648579782396754 0.00013904632006999976 10209558.574615235 1333.1369800939224 21183 None 3558878 VIA_20200422 2704659.2432053005 394.76921893159357 0.11664965266684492 1.7040443558688703e-05 29737.233886967155 4.344081993022662 39173 2170 2765618 ETH_20200129 19212409346.36024 2056627.1779886677 175.19000305345378 0.018748977999535604 14300512538.139254 1530452.5959614685 449611 450468 19999 AMB_20210724 4546310.391689161 136.19210257303732 0.03176489612111135 9.500248705764316e-07 439003.28366697516 13.129715147129367 707 63 487480 WAVES_20200414 99923613.46211438 14592.89194743282 0.9992361346211438 0.00014592891947432825 52619769.39764717 7684.616103378147 35 56867 67847 ZIL_20200318 37041458.50978907 6821.087186335559 0.003516141061341467 6.53722576011667e-07 7876709.962831488 1464.4415674934444 68692 10574 233633 BCPT_20190522 4412459.051953741 555.5807987492213 0.0525959688228011 6.622454741335766e-06 3219519.560115846 405.37560297718886 10774 2126 1042603 ARDR_20210902 300039866.3561515 6169.155702116386 0.30052525912331435 6.176627178202989e-06 26045160.069000743 535.3002406923374 73013 7060 None XVG_20190816 69612186.72038901 6758.773407301681 0.004377454208139496 4.2489522611752624e-07 768602.5923441931 74.6039950940809 303363 52842 316359 REN_20210422 750557223.3337686 13852.15850471207 0.8511291340303774 1.5715861796618346e-05 142059360.53549466 2623.0864246413284 72393 1143 63508 RCN_20210708 20886684.537423998 614.6651326746377 0.04064752558452676 1.1961983081394444e-06 359846.49968996027 10.58976574659909 19930 570 2739535 DASH_20210418 3654709029.947785 60650.33573069114 361.6271878834949 0.006000127424974563 2466214784.4619393 40919.49792473885 394795 39493 49097 EVX_20210212 11104883.175070645 232.8870085574956 0.5086136670339361 1.0652448868901623e-05 1113130.871818515 23.31350977175265 16952 2811 1099607 IOST_20201124 91870954.46951495 5016.4443809044005 0.005554053467309648 3.0252122172258477e-07 36003530.91855712 1961.0600121004413 None 52160 285910 BLZ_20190806 7613596.555049776 644.5334109718464 0.03650666788590225 3.0929261218107057e-06 443231.52570610744 37.55156094089391 36518 None 1145955 VET_20200518 291616978.6781146 30156.76076678195 0.004528943052543809 4.687348505748158e-07 174997427.2188411 18111.818132119737 120210 62015 302162 OST_20200430 4601646.593996485 527.2785964792641 0.006672193056157289 7.610274495354824e-07 460576.33236639085 52.53313694419249 17760 754 821883 OMG_20200315 66586607.975075275 12882.140444103075 0.46921657100654557 9.081717178597118e-05 138744020.40179986 26853.99517769967 281485 42884 381601 SUSHI_20210117 911136225.6674762 25111.57558712023 7.159263869952406 0.0001978272212809129 790631683.544147 21847.004364322787 23358 None None ZEN_20200518 50126655.34246096 5163.402390225353 5.561961124653562 0.0005688464032193835 5690746.511457597 582.0178552358258 None 5670 47922 NXS_20210105 15300484.295504007 489.0475078769913 0.23483250247995804 7.5059225504442e-06 361381.55925462994 11.550794571784262 24196 3523 514648 ALPHA_20211221 298707525.5121133 6331.409328763925 0.6670772972464497 1.4150033415580346e-05 4028668.4559263983 85.45605360422331 None None 53774 GTO_20191017 8750490.658893444 1092.6700756861694 0.013232637628198011 1.652370987152383e-06 3151135.5311458497 393.4850386256268 17246 None 1047356 ATOM_20190627 1538785203.8133025 118484.16393199988 6.386450170566806 0.0004917838958566581 158170172.5452041 12179.777745873611 26267 5578 113612 ETH_20190706 30740130568.29118 2796896.508467211 287.98591058443674 0.02620807886198031 12482686164.985281 1135983.4332081538 445236 441635 35893 QSP_20200410 5729964.721374352 785.6442961249643 0.008016398117425839 1.0992141645635904e-06 200341.49560859913 27.47096719711585 55029 8295 386866 CDT_20210823 16751923.549708815 339.56025572548845 0.02483476744649874 5.041035146093748e-07 470445.9595813634 9.549252360411355 21238 337 774115 NEBL_20190608 19459243.94292394 2419.9336478799783 1.2757743999056017 0.00015890908487575773 445928.63358170184 55.544390205359676 40209 6156 715559 XEM_20191017 330626260.98728526 41284.65572474348 0.036739712146780706 4.587719858534164e-06 38156758.853090435 4764.667715094254 215456 18285 149235 APPC_20190205 4387258.59214538 1266.1523428087567 0.042170680072761715 1.2172955411082713e-05 187286.44005540025 54.06195678991095 25315 3435 1889954 SNT_20191213 35965964.896411605 4990.176027924474 0.01007492525946029 1.3996292541308722e-06 34566974.438680574 4802.114894672992 110594 5647 305668 DOT_20210420 34547573875.09173 617494.9490368781 34.82115668267041 0.0006226510728270764 2183490705.6617746 39043.873320407765 None 22497 15695 YFII_20210120 79891183.77454767 2205.2349603124494 1995.6315454308651 0.055369786968546435 128583067.71368788 3567.600984946309 13460 None 182757 LRC_20190430 44944331.24604645 8635.315808674244 0.057001716492732085 1.0947431385048878e-05 11645101.13248469 2236.493099924206 35092 2464 792629 FTT_20210930 6014691420.289377 144770.89840179452 49.94749187864755 0.0012016134922160678 453278620.5918907 10904.76590015018 None None 1201 QLC_20200704 4180459.9723510486 461.1471951767256 0.017319591135929294 1.9106058557564654e-06 543891.498133802 59.999238612213446 24614 5644 940522 CHR_20210902 253011272.57765844 5202.220602631221 0.44615434256279674 9.169708549576196e-06 89820009.32762471 1846.0501868557021 88159 None 72995 EVX_20201015 5558380.815093378 486.9530368529139 0.25577948207827783 2.2380986226420174e-05 99414.4207886193 8.69887124760343 16800 2820 1080403 BLZ_20200701 6133400.470006917 670.4475503909787 0.026551048145642967 2.902969788397605e-06 601191.7148057177 65.73154383746399 36195 None 458289 BTG_20210618 1009476008.5929649 26569.624691633842 57.96202784410709 0.0015189192105753073 22810273.119294282 597.7527586258893 99249 None 159409 XZC_20190613 96676747.58593762 11901.709621902617 12.467617643795407 0.0015332703888317348 35407543.35573618 4354.427551413046 60429 3991 387504 REN_20210429 752660326.2090311 13750.259997702718 0.8563891591045205 1.56402018047723e-05 104851158.62918259 1914.8926197750513 73799 1149 63508 POA_20210826 11263858.504204258 229.86285255080116 0.038710592615104615 7.899715039139281e-07 277585.84357777314 5.664726151228858 20037 None 244986 DOCK_20210221 24635685.623810206 440.91832713036405 0.04431928606075072 7.894616874635919e-07 9823072.113238595 174.97888111202423 None 14831 226889 PPT_20190616 36189761.99710203 4104.434642408564 0.9999584445521148 0.00011340715056332801 20688516.31259516 2346.323186905262 23995 None 671795 CND_20210114 17171359.72578951 461.93941108317017 0.008953101349395141 2.395430117209649e-07 117192.74765716947 3.135528419719049 33939 5902 513668 HC_20190923 93453953.01370473 9303.431286916877 2.109020195752442 0.00020995499752723618 37154389.16957858 3698.7553281545233 12881 848 356881 SYS_20210506 544464538.723015 9507.669895229858 0.891794079384292 1.5560474207871897e-05 166023056.53089955 2896.8542725073225 66507 5258 365678 NXS_20200430 10389635.265071142 1190.493921816014 0.17400775611233568 1.9938637951710672e-05 82836.30731709179 9.491778859477215 23632 3521 498708 DOCK_20190812 3236056.134916857 280.20498613617247 0.005840702640824254 5.055042423971363e-07 1358063.615303129 117.53841296122596 179 15208 218357 PPT_20190902 17825174.61515068 1832.6490530465874 0.4919778115627409 5.057978638122101e-05 990019.3339051177 101.78297729147408 24021 None 732961 STORM_20190929 7511084.749948978 916.8537330220644 0.0011913733670609783 1.4543700258407142e-07 80035.49473818438 9.770339657474462 26351 2549 1924840 GALA_20211120 1747706239.1907623 30055.985178468254 0.23387801573758987 4.009495615849259e-06 1320483069.8403773 22637.745846401132 111049 None 5140 RLC_20220112 200053911.29661924 4666.658422722351 2.802273818580062 6.549537066012714e-05 8194787.406874495 191.53040475043528 51056 8502 260800 APPC_20190522 9079100.097503781 1141.6006640636142 0.08510917597753907 1.0716252188120002e-05 1053688.3640556135 132.67183129451857 25589 3381 1307105 SKY_20190730 19180683.40073603 2016.4469615734704 1.1987851199884305 0.00012596357197732508 1376980.7895236851 144.6876641196836 16362 3797 462705 GLM_20210108 110492519.19826658 6393.577954391452 0.13156345114472698 3.332961294953003e-06 6300169.672109991 159.6052816042364 145998 20317 228749 REQ_20210117 26005198.364276692 717.0082621695569 0.03365790526184824 9.300467189138425e-07 540235.4394428852 14.927969937106026 39490 27247 455841 FUEL_20200312 2355453.9669471397 296.9761673015719 0.0023814511612014 3e-07 66868.86185774862 8.42371193 1 1469 None ANKR_20210724 432022793.8876157 12924.530297141682 0.06180282867606617 1.8482046952637647e-06 15753496.009550361 471.10603050674484 116360 None 5363 YOYO_20190901 2286097.358240825 238.03438877917682 0.013052868379576223 1.359841973908828e-06 302484.55182966316 31.512704953080267 7558 None 893009 RAMP_20210814 90256000.01884566 1892.171964726936 0.28534423283947796 5.98073359794781e-06 66476607.95035965 1393.3307103843965 31282 None 118954 NXS_20200701 10816966.2875364 1182.8268874623634 0.1814913494164317 1.9838245084239682e-05 78917.95966866559 8.626272439370526 23297 3528 474450 POLS_20210708 96991533.71191089 2854.5563895930104 1.343739272105893 3.9549012340855216e-05 16640681.420778058 489.76950256070836 380559 None 15425 MTL_20200610 22212721.152926024 2272.4326373860663 0.34322798799423093 3.5131780621335326e-05 6147432.890514989 629.2326711351523 36946 None 394171 MLN_20211202 151690496.6561467 2653.416270615901 104.34902065309579 0.0018248376435288575 9215105.937456131 161.15218042803295 30633 576 104412 BNT_20190316 39363549.44103848 10030.425997412927 0.6050981462646378 0.00015418613199145136 1724432.688215699 439.40575213614306 839 5123 160609 OST_20190930 6759173.08671026 838.5709062226738 0.010153767388719023 1.2599655726263837e-06 205113.25003642388 25.45219164883834 None 755 557470 NMR_20210428 383878696.92568344 6966.2404031910255 67.71114874052728 0.0012287531032076392 17965810.602376916 326.02526969238124 27729 3156 915213 POLY_20190523 43219616.027604096 5640.162042489392 0.09717956005303978 1.2689384987345565e-05 14197475.032812191 1853.8592523083269 34954 5082 319300 ONE_20190908 24407707.983973145 2331.32473370629 0.008833727176908758 8.437615966179074e-07 3116693.748269394 297.6938771759847 70863 None 133162 STEEM_20200417 52600360.674442515 7420.138401585839 0.15041541323059454 2.121854621512186e-05 2049316.8880780947 289.0895564834987 11218 3845 233642 RVN_20200523 117270210.50291322 12810.841464468353 0.018817957813455785 2.059283902707876e-06 18452437.008905828 2019.284285513691 31285 7756 210247 LOOM_20200411 11931823.420368256 1740.1819799838152 0.014239966003844315 2.0762981287254286e-06 22638995.022331323 3300.9420800864946 21565 None 466308 WABI_20210203 6429402.999491271 180.5556996373765 0.10893724686696334 3.066433461789054e-06 1131416.0298119744 31.84780295812768 40789 7427 958104 NAS_20210813 20265063.760496113 455.8267157625759 0.44538601671420025 1.0018169577199465e-05 5199659.768084584 116.95713683314699 25306 4923 715519 CTXC_20200423 908259.9854674358 127.6916306732626 0.0887137047368184 1.246986557947958e-05 7628123.252987028 1072.231983442045 16565 20064 404295 QTUM_20190601 318399126.2973436 37139.787511324044 3.32302124843232 0.0003873926186102274 282232415.9112466 32902.21352274794 177553 15306 454954 LSK_20210430 761249842.3796036 14203.93921836251 5.292104318312856 9.87438340080024e-05 60833370.14828553 1135.07214574045 194475 32105 143089 SFP_20210610 114043598.56102261 3038.3437135666236 1.0513171221357083 2.8069815676386106e-05 15627323.326551618 417.2443081688623 347190 None 24038 AUCTION_20211011 177559205.87352625 3245.491956224203 24.750595727248935 0.0004522970486101022 1457895.8389460898 26.64186318595568 None None 114996 VITE_20201208 9688943.500600845 504.4233928294946 0.017090732391050856 8.906759329112567e-07 982136.0548982762 51.18358458414296 None None 1181794 BLZ_20200707 8171395.066451238 875.5283907021405 0.03514414722948699 3.7614829435310778e-06 1618348.5835428496 173.2120729501328 36196 None 458289 SKY_20200531 8803196.950512154 911.9522295078012 0.4891431433004735 5.066360892740648e-05 337298.38920821686 34.936099824242795 16080 3818 495338 CVC_20210519 281181801.27252287 6589.902479124939 0.4242354750665212 9.916474504802693e-06 26750146.939317465 625.2828104058786 102766 9748 117752 KNC_20190522 45309729.68200725 5694.034022724631 0.2726375285300039 3.4261477938093456e-05 7906148.091965037 993.5401039198817 96751 6681 226732 TROY_20200320 2167026.142773297 350.41278236043513 0.0018601082770586242 3.0078350417204735e-07 1697128.9205427303 274.4293921210686 8808 None 356286 HOT_20200907 100149420.21347398 9725.61774977647 0.0005627659842699773 5.47101834212511e-08 6501534.855229741 632.0569728653595 26257 7282 305234 DOCK_20210513 51924399.690247335 1006.7123139093118 0.0922815622069403 1.7959863164702042e-06 9614803.320276832 187.12356819497776 48138 14995 221085 WABI_20210902 16212206.167420134 333.3411167531532 0.2753940974988206 5.657992651875955e-06 977964.8242486289 20.092361599781924 45398 7884 919696 GTO_20210804 21409558.512998104 557.1507165810362 0.03218013118915984 8.410278835827414e-07 5425980.6107327305 141.80802938872918 13569 None 552838 TNB_20200526 5529138.038650033 622.1432011566112 0.001684253833833888 1.8936012515460858e-07 776525.1465731933 87.30447631286376 14877 1434 6344512 TFUEL_20200526 0.0 0.0 0.015942451936635602 1.7938579237507226e-06 198203557.38390326 22302.028780883298 69262 4131 375081 AKRO_20210428 133813117.20007165 2428.994300982571 0.04935541869670812 8.956519718206187e-07 37120349.3084508 673.6223687431018 37523 None 141631 GO_20190804 8985562.313775804 832.6081856521969 0.011949216476360065 1.106746673099849e-06 371566.4952542865 34.414807303191495 10132 682 898219 CAKE_20210617 2891970373.9050226 75608.11974361616 15.983527439537424 0.00041762254692633954 191820436.06544587 5011.943662949721 903114 None 861 OST_20200418 4731857.264472824 668.4051409316119 0.006783738285407346 9.636089356048278e-07 111176.31235684373 15.792249569105412 17764 755 821883 BLZ_20190905 6373561.780524559 603.4471144185429 0.030455720455003846 2.882996834175429e-06 740798.9073031067 70.12544351629602 36521 None 878308 FTM_20210511 1948709323.9921362 34901.89358124381 0.7681487069756457 1.3747528921976903e-05 409270898.4981428 7324.7060926252125 79470 7379 52712 WAVES_20210603 1496287899.301303 39786.56644621542 14.962878993013033 0.0003978656644621542 398673080.25932074 10600.789464020643 190075 58897 99701 FTM_20200320 6220072.5842148615 1005.7990984498284 0.002936477324189587 4.7509490556180446e-07 3341848.3762042862 540.6801971926752 21278 2320 333169 IOST_20210611 653773369.8650236 17739.272368758342 0.0288244023026517 7.851184654818915e-07 117078629.9237169 3188.985266763871 None 53564 156257 TFUEL_20190621 0.0 0.0 0.012985848238917424 1.359534811470296e-06 10996379.670873823 1151.2502447004997 70140 3999 231431 ALGO_20211111 12045007965.109587 185477.66736416475 1.9343919067035515 2.9779896658639154e-05 1064768578.319743 16392.075524015043 180197 53869 85053 PIVX_20210814 58039815.89759388 1218.2482730342244 0.8705737985285511 1.8251144904024173e-05 509956.4094741218 10.690981442100963 67694 9859 344305 ADX_20190523 14161612.981381476 1848.0911988435516 0.15349786929922443 2.0043343150723014e-05 2462315.774385168 321.5226389575008 54490 3905 959810 NXS_20190221 19076790.46617221 4809.9792253169835 0.3197230787349947 8.055852497134103e-05 115711.45390033873 29.15505532281846 21 3506 888108 REP_20210217 183475287.76565686 3728.4462827110196 31.0563628420458 0.0006311039595743552 50856302.756749734 1033.4633904922105 139010 10689 131610 PIVX_20190622 44899288.938520245 4435.477413738753 0.7440602379045954 7.35108963808815e-05 15467084.727288868 1528.1010928685516 63665 8617 321690 XMR_20190704 1563349460.8963284 130486.14122806392 90.37202444884089 0.00753019185539638 168237146.94106093 14018.254005008623 319083 159080 104259 PERL_20210117 0.0 0.0 0.03029772693014194 8.370683106937898e-07 3183552.513563783 87.95547371187953 13579 505 443333 XLM_20190321 2110247776.4507887 522151.8161229137 0.10976819945322389 2.7160632669137034e-05 252012328.15356988 62356.987790347695 266636 99695 74655 PIVX_20190904 23170168.95444952 2180.3474580375946 0.38016930240107677 3.577449839678161e-05 7605571.8699532915 715.6956570396692 63090 8599 256099 TRU_20210804 55555764.611935996 1445.9261539008487 0.15054435106335304 3.919499486328996e-06 1910172.4696030985 49.732321143411355 27413 None 128346 CHZ_20210708 1400647157.17089 41222.425701022345 0.2621008271609712 7.714166775592113e-06 669582276.849469 19707.184481433185 360456 None 35776 CTSI_20210207 21941633.699778657 559.3740367597094 0.08199302387633939 2.0850902132607736e-06 4545761.725165464 115.59914291309686 None 213 421222 VITE_20210813 54967585.80835119 1236.479382269809 0.08321706053836249 1.8718154370668394e-06 7899614.591177951 177.6873689479672 None 2436 651282 POLS_20210909 134159051.34757489 2895.819807315789 1.7765184122920323 3.837227579653759e-05 25307599.838510383 546.6367215968347 404325 None 29742 MTH_20190830 6950675.133535279 731.7470362994615 0.02035075178779442 2.142468468327092e-06 818221.5502286395 86.14000552657524 19471 1992 1114327 NEO_20210128 1481063604.0394187 48959.36715427517 21.109225427652497 0.0006966247504333836 470250131.0819447 15518.706800918173 331516 101673 169176 ONT_20191113 633997934.4585027 72088.41470606871 0.9132823166398704 0.00010377648389092298 175717119.11975628 19966.777467871867 81475 16286 359928 FRONT_20211225 50755500.5433748 998.2189552040286 0.7888903810589236 1.55170826799263e-05 19164601.8410898 376.9582168017923 None None 326297 POWR_20200317 19980805.98361682 3958.5848224400934 0.04677796038285729 9.289158457736912e-06 1747679.9237311466 347.05394617619174 82589 12832 249499 FTT_20210210 1680823288.6099443 36128.72225261185 18.84732172283794 0.00040449633672725953 65922793.25055625 1414.8179125295553 None None 4702 PHA_20210310 98465809.39083323 1800.8118801108249 0.6688325809477891 1.2215366003378318e-05 29551456.33229147 539.7193039254339 34812 None 160856 FIS_20210420 67682271.41222474 1209.1413640783016 2.5058739465864144 4.48085373909467e-05 5025273.935758395 89.85893937598942 None None 230666 DLT_20201228 5710536.274313486 215.69797587218994 0.0696870253877109 2.6498670843688776e-06 20102437.951903507 764.4003793812471 None 2535 None NCASH_20190305 4826825.930075353 1299.2913481453725 0.0016636011803153905 4.478103523228716e-07 421756.0955225446 113.52886014090434 60319 59590 692800 BTG_20210902 1359555613.752378 27948.983627543075 77.70069530075565 0.0015969646869615976 62277973.964177325 1279.9850092890704 101997 None 265345 LSK_20190201 141111980.92305896 41125.18288084216 1.0907191754153494 0.000317875387101647 2113843.8075252543 616.0512565790668 183184 30510 183991 NANO_20190530 238521480.44898906 27582.304998278072 1.7875044042687147 0.00020671339303597348 7125718.970617748 824.0435898896764 98377 45924 404660 SAND_20201014 28065597.709960513 2456.5567132299734 0.046468711157203385 4.068295303801522e-06 6119465.493889956 535.7538892427131 48224 None 84390 XMR_20190224 878281599.9589685 213445.91705195553 52.23655678585538 0.012694880283629237 161669723.9725193 39290.0665281648 313951 155727 108704 CTXC_20201208 837493.801217475 43.603439147734925 0.08333068035992622 4.342741420992048e-06 2777534.497362233 144.7499775332445 16569 20065 673533 BCD_20190511 164791285.39405063 25861.271380157446 0.861837530537201 0.00013527928358221148 4993755.574041185 783.8503807322959 21207 None 2990373 EVX_20200320 2874902.3920492316 464.5328354539382 0.1326834633097912 2.145639929928444e-05 273776.37007433065 44.27269961523549 16831 2867 688824 WTC_20190818 40959086.608025454 4009.532261763192 1.4051985942184912 0.00013747512135963113 4909161.143440682 480.2791055621827 56050 19987 638612 ASR_20210401 0.0 0.0 10.478753024628228 0.00017828829457913973 4586686.772221968 78.03911023250464 1955733 None 161437 ZEN_20220112 672327320.9351544 15683.382217988219 56.13268817585141 0.0013121708601113433 63082761.925602965 1474.6374111783223 132270 9122 2152788 FOR_20210508 56944224.35073718 993.7528344543182 0.1007593628209528 1.7582877419766142e-06 20009934.832091834 349.18068304518533 None None 121636 NXS_20190819 14077811.84398348 1364.4643243218602 0.23577809879223458 2.285233016492763e-05 62015.36689592231 6.010717903250034 22213 3542 857246 MANA_20190510 60746963.97470802 9838.948709949018 0.04576111832021423 7.412422950526785e-06 14269128.366834562 2311.324951680992 44427 6210 121517 NULS_20190321 23294682.847536147 5764.358740667852 0.5823911566788883 0.00014410468929163567 14581546.00801917 3608.0031998766503 19831 None 738002 ENJ_20190816 52462571.5298988 5097.959746615422 0.059909958965497806 5.815127777694326e-06 2519240.2810435533 244.52869589544542 47097 12763 23439 NAV_20201129 7750781.591555121 437.84349416491995 0.11039633321432683 6.236269278987064e-06 135772.21823924631 7.669748522367187 48271 13694 1269196 STMX_20210120 25328556.416584864 699.4358410231514 0.0030867058429208368 8.564218447458648e-08 10651557.475347884 295.5327448313641 22137 157 183695 BNB_20190811 4605969733.6795 406491.42927696207 29.593512248244945 0.0026131911215874185 224362376.8879478 19811.8346475284 1021319 55438 791 ADX_20190904 7068986.067835642 665.2021327168089 0.07679893139647596 7.2268939937165966e-06 144083.2366591588 13.558447476719737 53722 3841 517237 LRC_20210218 937854746.2422731 17974.444344692005 0.7567638162910584 1.451393276098165e-05 121237820.33713393 2325.213672457567 59336 8992 128184 IDEX_20201130 19953769.327276707 1100.108691154378 0.0372781465715415 2.0516609127910626e-06 546438.6896547504 30.074105177141004 40099 1948 42702 POLY_20200626 30259717.11798961 3267.4658380617893 0.04590194640940895 4.957784256667978e-06 2871134.7809401075 310.1059525615008 34899 5000 358611 KSM_20201201 468001523.4346766 23773.970013378308 51.93608128186859 0.002645575308839542 72680510.35146257 3702.27708509871 15490 None 195768 NANO_20210616 862766136.3441441 21362.708067423184 6.463065006475059 0.00016012676063698606 39369600.18062192 975.4081907238229 131678 99928 57331 KMD_20210220 183902627.07916963 3287.059548437837 1.4791365517525696 2.6437957973208394e-05 19394834.738681618 346.6615878777644 98456 8651 263220 ELF_20200310 34515071.979936376 4361.413824351637 0.07497639124620639 9.4734126715964e-06 44217309.23338683 5586.9429114015675 36474 33437 755936 BTC_20210813 836054770491.896 18784287.0 44495.20979327958 1.0 35838614930.04035 806043.971657209 3034974 3264036 6440 NANO_20201130 155764627.99935594 8587.751929269549 1.1708411508465328 6.447215407680838e-05 10615187.56761028 584.5233641799936 98576 53262 313412 CTSI_20220112 284209116.0998664 6629.747235960839 0.5787788538126607 1.3527348865540822e-05 15028488.500489853 351.2491956620404 67479 6882 100773 ANT_20210421 292325042.48246753 5174.027472637614 8.365958533566307 0.00014837487592781083 92606859.4835564 1642.4335873536147 82631 2953 100052 QKC_20190622 77075471.45484689 7615.743543490795 0.01920583524922176 1.8974783128981691e-06 8112866.221456477 801.5265939179376 51035 9202 162641 SCRT_20220105 1059054196.942612 22862.648814319647 6.558804578850407 0.00014280796838082375 31778043.721233904 691.9184446477029 None None 52790 SUPER_20211216 383171405.75457895 7854.491062614772 1.3297144767996554 2.7209372757872258e-05 127295832.93908224 2604.799623825694 218813 None None NEO_20201111 1098439735.410345 71853.00094730403 15.573050074572013 0.001019361906463991 250681706.0236773 16408.820400904293 324210 100979 108774 POWR_20200807 41988024.79259894 3568.7964031685055 0.09784933528047185 8.314949885768473e-06 2202281.9699172154 187.14347074208163 81476 12689 233430 XTZ_20210107 1976358572.5458884 53829.93863170923 2.6089093996320107 7.065540712549074e-05 314909012.4444535 8528.477257541974 78667 31703 186076 KNC_20210509 471925258.2000398 8047.3486454758795 3.417552717734092 5.820817462707927e-05 186930415.42662016 3183.821629964329 161086 10710 105580 OST_20190908 7619202.405871412 727.7686258791229 0.01144797053578253 1.0934837194390385e-06 736368.0545158506 70.33617675825374 17987 754 572437 TROY_20211104 28542453.023335293 452.6669445316377 0.015022343696492258 2.3824576027980927e-07 8694956.619569067 137.89702807245052 206949 None 284670 NULS_20190224 18199053.55060591 4425.191181673416 0.4555896313412278 0.00011070420830644318 6711952.406686515 1630.9444426671619 19542 None 499055 PIVX_20200506 17568830.233380247 1959.2678020691822 0.2792623502551154 3.108553669135846e-05 339246.4358556776 37.76254665038249 63876 8473 257372 BTG_20201224 141351319.5143421 6044.728751817893 8.031892869953197 0.000344430615661054 12837782.69370342 550.5209629297333 81198 None 361014 ZRX_20210210 1149055017.8142846 24711.93110966377 1.5260456183738975 3.27515957645562e-05 433745807.88803095 9308.940174184918 175771 17743 76527 ATOM_20200707 562407908.6203815 60248.51531342528 3.0167738958928947 0.00032288572773704957 173045749.02599195 18521.11047570665 35191 8665 179013 MANA_20210420 1741015246.7446442 31103.065414720844 1.3124355783239319 2.3453081624724856e-05 513910321.93540794 9183.521787432766 118453 28626 13153 DNT_20210508 235680690.31501028 4112.9430894366005 0.3136444927201211 5.472787695307623e-06 21544120.607437 375.923699931877 68679 9931 161725 DNT_20200718 6385521.030965489 697.635685967693 0.008506011265636259 9.291493112063179e-07 2254955.101979073 246.3187402854099 58091 5994 528666 CELR_20190704 53170092.56341492 4434.3863738481405 0.017675813233392713 1.472533188731857e-06 32046724.628712505 2669.742262086127 16639 None 482178 ZEC_20190714 624836543.5408667 54898.849765758554 89.90613915875065 0.007887621975776027 371010234.2317214 32549.37320349952 77 15319 191872 ARDR_20210128 72264198.75397848 2390.839934951834 0.07268167033107145 2.390284677213127e-06 5112720.763433714 168.14222958880714 64474 6301 None TRB_20220112 68654924.37966764 1601.5137071861704 29.407220894461496 0.0006874300802000478 6142617.660868171 143.59126849841556 27175 None 308104 OXT_20211104 306127752.8310515 4862.275265657436 0.5167510967556578 8.195376194909204e-06 222683061.8861914 3531.6257204859135 74892 4671 207442 LEND_20190605 8744595.39006713 1141.3709140117746 0.007847539227073437 1.0232927929623447e-06 1366772.8436370832 178.2225943752379 42244 5870 1092370 RCN_20210110 27167149.365204122 671.462562080207 0.05271273297729782 1.3076059717925284e-06 859618.4328457254 21.323921807205572 None 1127 5449742 XEM_20190811 530393527.5315048 46810.83653619493 0.058923086135580324 5.2045388995811346e-06 66595902.64645877 5882.260903284903 217112 18408 178171 ENG_20191022 23560219.988538057 2869.018382625668 0.30081985204257894 3.660390316376835e-05 1111537.5857858765 135.25242392325947 61205 3476 386456 RDN_20201101 9930782.404976727 719.7018286895226 0.14873472037507637 1.0779066739260434e-05 2259369.684072514 163.74049416211767 26412 4383 2012801 BAND_20191022 5267885.450361963 640.9988157150628 0.3363330248016391 4.092516297386499e-05 1855274.3614657337 225.75066973871674 7526 979 550778 MTH_20190915 4988398.125329255 482.00959200053535 0.014353289254477649 1.3869027538694687e-06 159428.8751499123 15.404994776562933 19527 1984 715962 DNT_20210731 109811466.68853217 2632.013010138471 0.14629817483928495 3.50148511580299e-06 7966018.1641740445 190.65784015906735 70264 10250 292145 ASR_20210909 14539161.596450116 313.67302165942726 7.136475833859219 0.0001542260414257043 2729670.928350042 58.990789217959964 None None 67408 MFT_20190509 20969704.26994204 3520.2673217007887 0.0031563479435888823 5.299319370550237e-07 1780380.5211890617 298.91523848159164 18015 1976 690074 BZRX_20210513 101443323.49752168 1966.7871663044452 0.6978557981399549 1.3911960289107084e-05 90628935.96644264 1806.7144552925536 25401 None 145743 FUN_20190626 37400980.44947152 3168.5404923770075 0.006228349528015308 5.268874039805692e-07 2165742.785178437 183.21107199260408 36260 17614 455027 ONT_20201224 334130043.2121595 14291.261213197582 0.4104343285653119 1.760350381490307e-05 174996535.1304408 7505.59092981261 94092 16677 295641 WTC_20200612 10676681.128847335 1150.6948457685257 0.36704760847693085 3.9469112425388705e-05 8970923.583536798 964.6552199247978 54250 19599 876470 CELO_20210519 593848088.9079417 13917.689464991954 5.440220452806684 0.0001271588041174087 237624504.4360219 5554.195473363134 29416 None 73566 LTC_20200229 3859076577.3855953 442330.68233679794 60.124380478462975 0.006891508294487634 4823322953.45569 552853.4327707427 447948 211983 132727 ICX_20200411 122222479.64519149 17825.385872240524 0.2293085683331179 3.343423859481824e-05 27698925.457421925 4038.630083888491 112943 27508 109675 TFUEL_20190608 0.0 0.0 0.014740504030645672 1.8360613022887456e-06 14035214.177670974 1748.2111580025303 70121 3998 222751 WAN_20210128 62669720.632521205 2071.642707111211 0.38630553276505564 1.2704443795593682e-05 2922464.1401737654 96.1111821198181 104032 15807 602909 SNT_20200806 103693012.71702354 8851.687218009973 0.026714612771063472 2.279637280157308e-06 8900579.355317064 759.5128811059145 None 5725 113407 RENBTC_20210427 645179431.9616922 11975.970981625574 53882.49884941957 0.9995971550014962 30381833.112994347 563.6263089495995 73148 4844 63508 GRT_20210428 1892940581.0319417 34360.44945264708 1.55170678772846 2.8158797571078626e-05 214712613.65827346 3896.3862707666126 92957 13841 26419 LEND_20200309 31031452.113314733 3853.9775312459183 0.027411191521847685 3.407414417005672e-06 889291.6050120773 110.54554244477482 43977 5745 155774 HNT_20210325 528368903.0750865 10034.147742431156 7.0013289870896 0.00013308320162123106 14726400.461659532 279.9235010107295 25238 6952 32835 ARK_20210401 460312114.07036 7825.8676791548305 2.9334096904726814 4.9920497242559895e-05 21373370.631490495 363.730062370389 70527 22486 70412 SCRT_20210814 235695979.48275465 4941.139705938413 1.637443436552153 3.429978387547527e-05 4598057.590748935 96.3162318093629 None None 76372 BCD_20190325 158919402.61636168 39797.19795937144 0.8441308877527418 0.00021154183925210793 2184829.615869669 547.5251315870889 20847 None 3287367 BTG_20200207 200869604.0273482 20624.47453660611 11.481538592533859 0.0011790511364714181 35769954.983241834 3673.253870517649 74885 None 199502 XLM_20190613 2455169915.338813 302251.78374788613 0.12670670831565156 1.5582419149933655e-05 399897967.3581497 49179.54090526586 272630 101972 70523 DLT_20190702 7648177.320021738 720.3148332609367 0.09501151787898811 8.962570253287568e-06 416615.18875307287 39.2998973297304 15084 2672 2880330 MATIC_20190805 22212546.044473246 2030.279441445751 0.01022661029013871 9.339417855446441e-07 6237145.083379354 569.6052015876027 21165 1053 193229 FTM_20210420 1017236056.6579514 18172.88586025304 0.40120906487262775 7.173378479143419e-06 155263636.30075085 2776.0210941069963 61410 6165 57773 BAR_20210703 41704082.007327855 1233.184032680376 14.133843550388445 0.00041793583140563957 5381606.535798416 159.13337329781893 None None 41859 AXS_20210105 30093715.366545394 961.8817429911779 0.5445839652679287 1.7406470664612223e-05 8053962.024981451 257.4278029885955 29342 None 19930 ZEN_20191113 38443358.95250575 4369.728034636865 4.961956955196946 0.0005637291417697418 1207928.8029494653 137.23308637179144 39869 1879 58749 YOYO_20211111 3682262.936612949 56.77073269786765 0.021190990295220428 3.2624489533790046e-07 585808.8013287456 9.018791874045805 12263 None 1106921 HIVE_20210511 190153429.3665833 3405.7245515202685 0.5101225104101293 9.129643650935761e-06 7559869.1292246245 135.29869744826763 19629 166 115181 GALA_20211204 3815029651.2107606 71050.21857054437 0.5071279978958644 9.457151433661991e-06 948475840.1406091 17687.604881995554 165455 None 4479 COCOS_20190909 21218982.721246492 2042.9037629493155 0.0013509302519024082 1.2998268087007395e-07 1587931.399659447 152.78625974571366 8677 122 186264 UMA_20211011 647504180.6062688 11834.125567917421 10.250757259859425 0.00018736525485786362 52555987.877650395 960.6281578399016 None None 247915 AION_20201224 31570488.2828129 1350.0761003698033 0.0639478344130865 2.742718794942187e-06 1505960.8639952904 64.59057142491744 68002 72526 524587 BEAM_20200421 15141073.81597188 2211.1016311286808 0.2520289723236328 3.6815657382176295e-05 108276809.9283291 15816.76066844238 14928 1479 307022 ACM_20210620 15003575.954837186 421.85312921575985 7.503958235745472 0.0002107807019395326 15540219.938482769 436.51341918785477 None None 39510 OCEAN_20210401 611597767.9751223 10398.29868270957 1.4329712686792977 2.43861737073779e-05 120329083.99667549 2047.7493223552638 95671 2405 75850 AERGO_20220112 87236267.77402836 2034.9607820010244 0.24128843183250065 5.639820503679532e-06 5366309.125363002 125.43087956787924 25551 None 561562 COS_20210428 96459033.42972282 1750.783631349604 0.032070480961805335 5.82229838170062e-07 10753230.18422699 195.22162693550905 24135 None 214516 OAX_20200903 9020168.724113898 790.6666384743089 0.16207021683399425 1.4199916947621853e-05 1379024.1145568234 120.82434563243777 12688 None 1276581 BTCB_20190723 0.0 0.0 10338.39870661276 0.999999522823744 218836.21325091677 21.16731178954218 None None 50789 VET_20200329 195049673.24309433 31275.583830073432 0.0029824293983800893 4.77063018434203e-07 85072367.86450598 13607.993745243342 118494 61399 265359 XEM_20191220 290588217.10525966 40680.553438205534 0.03208796858702108 4.490564506351811e-06 34220283.53984754 4788.972235640063 214078 18162 198508 DUSK_20191017 10698040.079848029 1336.1049422863377 0.060608549241373114 7.5700269698997364e-06 1757818.9246573518 219.55213966370195 19741 13332 197441 DIA_20211202 104563134.37096988 1829.32492716576 1.8439502936058951 3.224641879510827e-05 9483603.223856129 165.84624992525124 None 443 276114 SCRT_20210218 180062151.82481694 3450.1198404921965 2.5786703683365917 4.94657975706968e-05 4383375.612419205 84.08487311238814 68391 None 189901 ENJ_20200526 169191592.44240093 19040.279933427923 0.18405125718921655 2.071253901209687e-05 23675790.575433303 2664.397643487702 55063 15455 98201 TNB_20200113 5111136.377588871 626.9722922835629 0.0016496127899723139 2.023173429145593e-07 700060.3071790043 85.85914348468614 15333 1454 1426193 XVG_20200320 38920552.04635554 6304.942744776501 0.002400818972522891 3.889211577549395e-07 1122646.9088185478 181.86341432852473 295910 51901 327824 SNT_20210610 338627043.9069071 9039.99244415065 0.08714118069834864 2.322617785322727e-06 21803127.035652246 581.1297279062039 None 5995 113644 OXT_20210704 163742341.3076876 4723.306002704769 0.2763109684030635 7.963110085744543e-06 13694348.564428188 394.66259990093954 None 4288 118089 CAKE_20210707 2950515000.677337 86396.9808629254 15.387008773225897 0.00045052639037480207 313503048.0632681 9179.262759712517 952383 None 824 POE_20200109 3861764.0063989935 478.62285213919927 0.0015302699071749859 1.9014295420212324e-07 100092.2886764115 12.4369193777842 None 10545 664429 REQ_20200322 6155586.739093802 999.0173341939814 0.007936759787463731 1.2879850578179658e-06 99642.74596982735 16.170121229043865 39617 28215 686735 BEAM_20210519 114647533.58772147 2678.603523207076 1.2984180616962044 3.035043121598163e-05 17643218.16650225 412.4089884358618 20129 2321 154482 STORJ_20210217 113122751.24736252 2298.932954193969 0.790754207504833 1.607632064603928e-05 76047538.38256584 1546.0741147844421 84681 8852 75920 ETC_20200423 625529978.6575358 87926.37815019456 5.37767458708046 0.0007559021396977639 1561275258.549403 219457.5535362374 230767 25400 313555 ADA_20190614 2796706743.4341445 340127.0486567037 0.0898343994124557 1.0919329640868867e-05 348557657.64185214 42367.021848345415 152399 73740 105576 GO_20210420 52992026.59773047 946.9145038886694 0.049316617598369916 8.817516709314707e-07 4771846.313347446 85.317762351191 19605 953 121965 RSR_20201130 182533552.54847693 10060.454804100622 0.01956367759120325 1.0767174957930952e-06 38373334.47426777 2111.9362864036675 48061 None 135021 BCD_20210707 381133127.0068053 11158.00459322107 2.0257911117361473 5.9307554638261405e-05 4900458.380596508 143.46701467688519 34308 None 1330822 VIDT_20210218 37324293.83795455 715.1602121692492 0.8033244995366249 1.540691761488699e-05 8077884.038120253 154.92530596255673 24408 1284 None DUSK_20210823 62498584.963819064 1266.7104040231584 0.17293300710414686 3.509951914179906e-06 6858221.550059319 139.19857325445972 28487 13647 340293 BQX_20190719 14468002.253113464 1352.0743319185642 0.12055773072186005 1.1249987815937106e-05 741707.2050270682 69.21328868406012 60681 5777 463128 EZ_20210724 0.0 0.0 2.3328283848341336 6.977025758022641e-05 1408571.1624968576 42.12756217576299 35406 None 131496 OMG_20210430 1017906973.7037158 18992.829921960314 7.258041878311973 0.00013542569067944037 274107364.43512696 5114.48952366496 None 4520 121524 UNFI_20210111 15335499.741972718 398.94090108969465 6.264617694603195 0.00016295599300823174 15252192.292968528 396.7418702651758 None None 133722 ZEC_20200607 492614299.0037543 50933.070347697816 52.84933845741264 0.005464273121840856 240573621.45963112 24873.726179658523 71989 15818 168070 POWR_20210711 80647068.3202218 2391.561303955914 0.18893160420599614 5.604753738961431e-06 3502534.0928940405 103.90448509389587 91238 14003 143959 SYS_20210523 109264114.28450288 2906.8018919712404 0.1774050159959887 4.720358583811804e-06 1879395.4224361004 50.006592343890944 73969 5368 397899 VGX_20220112 4171630703.3155985 97367.23141803422 204.75693819302293 0.004785624971145778 190185419.64825845 4445.056179530028 None 14435 12315 DCR_20200208 238782966.78937942 24378.096668029386 21.700395289075328 0.002214734218121893 19788845.083574977 2019.64211987284 40880 9731 142873 SNT_20210124 184882356.2259106 5775.962234465586 0.048005413089457015 1.4979395443407412e-06 41472711.789087705 1294.0960404643317 116235 5692 159141 STPT_20210814 84357686.2899559 1769.8845398847466 0.0692050270168922 1.450517594514178e-06 122512068.822869 2567.817961035219 None None 442795 MTL_20191030 18183668.338425558 1932.335866351337 0.34030198696947 3.6168361441790516e-05 51402366.78349555 5463.204600553055 34607 None 240997 ADX_20190608 14717380.828419177 1829.5210359770292 0.16183710304570598 2.0158255210199974e-05 3284766.273237301 409.1469483550661 54245 3892 922905 TWT_20210217 224377074.06055644 4562.399435151136 0.6454499389495584 1.3116346374811311e-05 28569685.279072188 580.5715754648844 348814 11157 9818 MITH_20210206 9465435.441789528 249.7815490912666 0.01534047474617463 4.0383929734117284e-07 7306294.059648678 192.33881011096312 24464 2174 386896 BCPT_20201030 1751764.1876822188 130.09770704 0.015194839731691214 1.13e-06 53136.697434125206 3.9516355 10420 3195 1679578 XEM_20210220 4682864037.95894 83836.54765869006 0.5185908555611588 9.281146457547322e-06 453583662.68867004 8117.722013453087 233513 18463 44148 STRAX_20210710 164219894.62364686 4831.901707371812 1.6203986880854326 4.768276197159646e-05 6369074.299392557 187.41995783530032 157812 10763 140717 HARD_20210702 46506283.743926324 1384.0869944876283 0.7055883265501767 2.0979194509228887e-05 8291879.870984823 246.54172144694584 34726 None None BNB_20210117 6408266290.294945 176586.43476969335 43.228026040119325 0.0011942807303425462 685226682.5080959 18931.075457307874 1499352 89423 564 ICP_20210902 10377740775.786182 213379.01794865797 66.12104960941416 0.0013589708674079705 436503325.7070569 8971.353399056225 None 22776 25073 DOCK_20190807 3926510.3994580936 342.88821470573004 0.0071240808627401064 6.207380157037218e-07 1125690.9216106017 98.08411252472754 180 15212 218357 KMD_20211202 126768449.18415785 2216.844327863855 0.9828272184805947 1.7187044241535115e-05 5344282.667392001 93.45734521448763 117003 9994 120888 ATOM_20200927 1096424930.356917 102111.4288400084 4.602389891987967 0.00042872939730134903 199779996.89287084 18610.235045460122 42913 9555 85254 GRS_20210204 33549626.480869487 895.5179713606047 0.4390909232444767 1.1705979567845508e-05 6590125.756162594 175.689984391273 37585 106759 3797410 SUSD_20210826 320849024.76694375 6545.8098064405185 1.0002317409169346 2.0408414990328704e-05 20213339.425282996 412.42664320308353 149685 7499 47795 XVG_20200501 49027723.359280676 5661.703859365716 0.003009176198742188 3.491043502066275e-07 3222695.4827758484 373.8754190926278 293126 51985 303181 POE_20191012 6656881.94100975 805.2753217679942 0.002644585323944065 3.1991243296090974e-07 113886.41899415769 13.776708602197912 None 10685 798754 GVT_20210206 13538369.843356118 357.2034442735544 3.0716800072791273 8.04716422969455e-05 1591384.8029762374 41.69097963278236 21623 5469 282943 VIBE_20200325 1504992.964609198 222.68670590533455 0.008031400170557307 1.1899998542090964e-06 1124071.8089605754 166.551941178 19344 None 1312296 AKRO_20210617 59301327.76929264 1550.3998432399915 0.02194566893364989 5.734032233336821e-07 21699416.554072827 566.9690650207144 41195 None 201373 VET_20191024 189123624.48054326 25331.914265365693 0.003000513003078016 4.0189975395647566e-07 35747123.296274416 4788.101248915314 113881 57593 368784 ONG_20200301 0.0 0.0 0.1261197031598826 1.4722819157375108e-05 4987642.039683312 582.2417111059056 84541 16472 345761 NANO_20191203 111773290.92247675 15288.084225037333 0.8388059054594726 0.00011472681870590258 2113609.242353209 289.08673959531706 None 48355 274290 ARK_20210207 90216615.66678107 2300.234495230088 0.5972161778517818 1.5181454704813587e-05 4506674.304428115 114.56131692233355 63793 21694 89752 IOST_20190421 184929082.6762228 34825.56944068996 0.013722262229499734 2.5842432859386056e-06 32687986.941912808 6155.960975872314 197067 49199 95321 SNT_20210318 402379761.7470299 6836.441971211011 0.1043612235026139 1.7720128267314787e-06 81715287.61832425 1387.4936776310963 124180 5823 128099 MTH_20200711 2965615.1177559677 319.3877049579121 0.008531913714046397 9.189852129699647e-07 518811.3571513843 55.88194882445438 18987 1907 2218636 SNGLS_20210508 20434598.744134374 357.0555828337152 0.022993252452084566 4.011796349184497e-07 6152223.557411897 107.34222162969505 9494 2136 963181 SNX_20210204 2462985024.4763045 65721.51236479715 17.191507116196977 0.0004583263961636767 218429434.38420433 5823.339094165988 72030 3943 30058 LSK_20191102 109800965.69115001 11886.78922255344 0.8056721604373116 8.721175008284057e-05 4658195.95595292 504.2366380476101 180454 31143 157769 XLM_20210112 5819408996.64166 164283.2971278078 0.27338939208164054 7.680172104830336e-06 2560068101.522617 71918.53154971165 322275 119681 34006 STX_20200306 79779780.57031071 8797.184397010496 0.14552876186999275 1.6062869042752162e-05 1332868.527502289 147.1165722388362 35816 None 34581 POWR_20211202 254684896.2823742 4455.00807476022 0.5929481884250879 1.0369375468290426e-05 14770758.126109859 258.3084659854483 100547 15423 166762 FET_20190426 0 0 0.16092036683076838 3.0927633784139906e-05 7332129.155856126 1409.1777806398527 8063 179 178040 AUCTION_20210806 127385479.86895718 3105.9985386649614 27.86691301037726 0.0006801546914824004 5855164.91318277 142.90846939599675 None None 70573 GRT_20210204 1015994986.0206879 27091.54311481935 0.8269461691910601 2.2046037501141697e-05 417679981.85596377 11135.17286437211 50350 4850 34817 CTSI_20210202 14287600.617159214 427.962826183479 0.06854747783955054 2.0524140595792108e-06 3686736.6188149387 110.38641112562509 20438 199 421222 KMD_20210114 70567078.02062744 1898.3770058553098 0.5731572123333023 1.5334999512899217e-05 4268199.31522164 114.19700042406254 96731 8414 276744 XEM_20190703 796120653.536263 73986.17879564164 0.08872037671976615 8.220329112649096e-06 73293409.25114438 6790.953421394296 217028 18470 188910 PERP_20210708 461550278.59894603 13583.879401334381 10.630302966537318 0.00031287169463443596 41749861.12537877 1228.7843387124558 22924 None 159386 MANA_20201101 87553622.16388324 6345.240947227225 0.06601917264660113 4.784527742407695e-06 16697859.483980503 1210.1237979395248 53517 7452 81691 SUSHI_20210325 2071251249.0831504 39370.91773551191 14.8366727331841 0.0002820195869069353 654334761.8776246 12437.776485481085 None None None PIVX_20191102 14439899.147074929 1561.016026365773 0.23496684009364088 2.538998080323401e-05 292885.70147527184 31.648560856652278 63140 8580 246395 CTSI_20220115 350515364.05042446 8133.566360092907 0.7154049267717894 1.6587426634480482e-05 36637718.4693194 849.4845987529068 67774 6911 100773 LINK_20200506 1397831363.8980312 155885.50561575618 3.689464063816396 0.0004100247927151574 373430974.82610846 41500.86717150744 53288 14989 77318 COS_20200704 15688618.039412117 1729.8887873748706 0.007926317261290004 8.74100573042804e-07 1790499.9332734945 197.45323914182416 12363 None 288612 AAVE_20210207 5806202408.699114 148021.74368769696 469.87778888839495 0.011949035816966932 1663865786.286699 42312.26149676097 115120 4807 18454 CND_20190213 19231022.18064849 5292.576392474721 0.011652081927654679 3.2066698253636734e-06 216153.40576761903 59.48573038089918 36863 6244 572490 ARPA_20210115 21153484.514740005 541.1102152079861 0.021603174666337127 5.506900714489671e-07 10560430.667851644 269.1976715844941 22470 None 1160562 TRX_20210723 3966691141.815768 122646.62536399288 0.05540128160984627 1.7113142921502166e-06 790641612.3593249 24422.472763856313 1075070 114246 24266 DNT_20210617 101121013.14843364 2640.311553365324 0.13460874592802913 3.5146901320707147e-06 5137471.571176774 134.14151146362448 69191 10160 205349 FTM_20191213 23210823.471185405 3220.5708698827984 0.011026537853084382 1.531829224883507e-06 2677063.8310029455 371.9031909967844 20206 2239 617714 XMR_20210117 2781182918.550083 76838.77053644818 156.11385182150923 0.004313127467332387 472400930.0281573 13051.535165677602 336219 190091 53273 ZIL_20200410 48270172.097228654 6622.602459539328 0.004628030607910418 6.347448768159565e-07 8499706.798113035 1165.7540326804244 68844 10559 227703 ETC_20210930 5943551127.7461195 143075.38463345967 45.698001937295366 0.0010988949106557515 4093948340.5967965 98446.73301345749 522529 60475 212393 FTT_20211221 5663823733.930731 120083.31082345833 40.598651054032786 0.0008614251930636049 100140165.93083285 2124.78147748262 346419 None 969 YOYO_20190615 4490851.654230202 516.3839072653606 0.025624059972217946 2.952557653791427e-06 3597890.1983884685 414.5704566048724 7527 None 1718266 ZIL_20200127 52371047.22192028 6102.647128415192 0.005101934922021931 5.939322943911532e-07 5218951.4978320915 607.5545621023183 67574 10516 250475 JST_20210114 36045553.97772899 968.0401888966247 0.025248663078532397 6.755358349839504e-07 45596586.557252154 1219.9508574598838 31777 None 212672 WAVES_20190625 236161952.8312678 21389.73577448605 2.362620418251228 0.00021391381974063408 19091780.863997918 1728.5873510277384 141884 56858 49915 PHB_20211225 18218979.161506973 358.09963284700524 0.49012666622447504 9.638533160286441e-06 210321.38527896744 4.136052547282272 22307 423 210451 RDN_20211104 32244122.68224052 512.109230031131 0.6317302472900477 1.0018227534828847e-05 702209.2494966537 11.135911362004057 32080 4842 1012293 IOTX_20210220 150016957.25960526 2685.729007923173 0.02476683206335936 4.4300769079962036e-07 20649320.0005934 369.3571929846766 33521 2184 483474 VET_20210212 2734422934.120934 57345.297388521736 0.042583218418618195 8.918666293867675e-07 815059319.7025677 17070.673265400146 164750 80974 98520 XEM_20210421 3492478809.80575 61818.685213242585 0.3874286611274659 6.8724742265679036e-06 519063154.7212784 9207.496787671505 301436 21029 27283 SUSD_20210825 328874647.62565064 6843.7458274972205 0.9959663658794313 2.073836954693047e-05 30003704.70210878 624.7479204178592 149612 7490 47795 OG_20210203 0.0 0.0 3.8890718164153877 0.00010947201527610362 2722332.9954254422 76.62992439582757 619063 None 479965 NAS_20210703 13978051.634123059 413.5490134173556 0.3074972043122306 9.081070533097861e-06 2997896.344945484 88.53448999725877 25259 4922 609906 ATOM_20191011 711853428.4495076 83136.41515705838 2.8993568247407455 0.00033861202747188085 181831725.6290153 21235.885403466036 28819 7052 107820 REN_20200208 49234904.65009278 5026.113995645304 0.05792193972102786 5.908215798193136e-06 3493125.391830472 356.30952147809296 10694 871 448735 KAVA_20200423 10324033.310473895 1452.3117683776404 0.5283197623282049 7.432027631267977e-05 8471613.480149731 1191.7264875430126 21351 None 326778 SNT_20210107 225851044.34762272 6151.488918065594 0.05707771111128617 1.5496930077020214e-06 216406412.892498 5875.559799998149 114642 5679 172923 SNX_20210310 3327379109.0267434 60876.70197651475 22.732991366962548 0.0004151888197575179 178648872.29788557 3262.791651263501 95164 5263 24026 TNT_20200105 20959153.657052368 2852.086922480274 0.0489531998794585 6.657510314193348e-06 1303125.6025340988 177.2217579427445 17733 2567 553344 XTZ_20200511 1811581831.5572374 207293.34805769802 2.5571683667396616 0.0002920800843896135 235717047.07692096 26923.630018964188 61364 24710 100263 VITE_20210703 31025210.838958263 917.9093632540001 0.04760476540546843 1.4058736999757535e-06 1997294.543121415 58.984512272314085 33029 2371 205892 FUN_20211216 116920472.1694331 2396.5795681056093 0.011047006366575551 2.260518583858888e-07 2270572.058459777 46.46209265949872 25824 539 223479 ALGO_20191026 97174900.71690787 11242.866886139089 0.21266098612167156 2.4563023482500245e-05 93429038.79148342 10791.352544888665 None 657 327819 CDT_20190807 10854844.98415333 950.5359099477097 0.01591671930578196 1.3899505951862565e-06 1006670.0098859648 87.90891844708636 19782 297 234430 NAV_20190530 14668328.381385388 1696.2992313577447 0.22489244192283975 2.6007385876089098e-05 276206.10252441297 31.941485575347382 48517 11281 1031140 AXS_20210527 268410697.14600167 6846.865613681513 4.8622673357511035 0.00012402643379939718 34709770.266467735 885.3748111489506 74264 None 14156 BTS_20190512 156420184.22968248 21372.148905600523 0.057392705484880326 7.879598511068196e-06 35205175.738132074 4833.413026698302 13772 7198 176364 GTO_20210825 37846045.16768032 787.3197847619543 0.05699889331460385 1.1869042019617258e-06 21453408.461025447 446.7304392779913 13426 None 734299 VET_20190618 406953946.9598193 43657.09488054141 0.007329515113454472 7.866533890515564e-07 28822401.0994323 3093.416024731492 109531 55972 189744 GRT_20210314 2197845857.795792 35825.5453182417 1.79488563999977 2.925854620015399e-05 461900214.58526254 7529.465090770729 75554 11901 25525 CMT_20190605 26617633.269867633 3470.850097416836 0.0335394303374078 4.36628889794064e-06 8204692.892531502 1068.117708836481 292139 1643 806904 GVT_20200208 5450945.613038032 556.5522579610966 1.228540930321862 0.00012531494919220415 984073.859915232 100.37855696378425 20816 5623 189228 AST_20190605 7369193.6858286 961.2278356902274 0.04285914524387184 5.580251956319362e-06 1674617.0416881924 218.034796769598 31771 3598 396492 DGD_20190816 38748769.626710616 3765.3447405883603 19.374394500552558 0.0018826733116308356 1732363.046208106 168.33938593840855 17201 3358 558523 DASH_20200807 950630671.4378237 80792.26701485587 100.54973042389861 0.008545527629981084 629336225.9848882 53486.071867415354 317402 35176 74768 FTM_20190818 31429704.47746932 3075.058171606559 0.01516078211131855 1.4833192896476912e-06 4306379.799198932 421.33289547984793 None 2084 361717 STEEM_20200511 58289790.005664475 6650.810625012254 0.16575981873790724 1.890744175884349e-05 5077951.781006792 579.2180414085173 11296 3852 240459 DIA_20210704 57372137.972843446 1654.9547387131136 1.182721867709344 3.408782333666939e-05 6687749.145483157 192.75099041900503 33630 391 433777 ELF_20200305 45480027.97606346 5195.1379151696265 0.09875393163284794 1.1275300880087146e-05 29846144.744507156 3407.7049545338186 83286 33438 755936 XTZ_20210124 2386580431.092816 74579.77678353572 3.165882987401646 9.87868037037272e-05 718044525.9525228 22405.541808740454 81004 32442 158435 ADA_20191102 1312294401.0141115 142065.8447273478 0.042176822419817434 4.565522649025019e-06 93476399.24333604 10118.557857365564 154514 75552 136886 GRS_20211216 56717122.488922186 1160.5869061244434 0.7177487020360211 1.4687094635901558e-05 2266134.1621187134 46.371281205070964 42886 107181 None FORTH_20211202 119899179.88982819 2097.70035590921 13.846972408370071 0.00024221630644329607 8378079.851385842 146.55243737345955 35657 None 105755 WBTC_20211111 15521740419.966742 239304.08869665215 65024.5198929156 1.0012678170845284 345165798.92522424 5314.970515603144 None None 238070 ONE_20190714 40195747.57392091 3531.6305001796877 0.015596459775037156 1.3695485953766234e-06 22502426.251805935 1975.9719006907424 70138 None 175184 ICX_20201231 274061886.77900714 9487.29881699784 0.4738739576792248 1.6432156501893115e-05 59568799.95551166 2065.62067325407 116940 28061 337497 WRX_20210620 612817575.7211474 17190.262760035726 1.411215218089236 3.964885721214695e-05 12383259.162729366 347.9143847590089 273416 None 1299 FORTH_20210916 134661458.78665978 2794.488227871375 15.61408099532385 0.0003240146363617358 16325880.402808798 338.78549775587135 32737 None 170038 RAMP_20210722 42804321.30435659 1332.8677961085657 0.1432732502607101 4.452232236623146e-06 4408694.827371414 137.0006836317265 30619 None 117048 ICX_20200430 160598544.9399109 18395.07962051064 0.297169996740997 3.3895081091750895e-05 45086358.48011453 5142.530516454403 112738 27592 102592 NEBL_20190708 16613741.188579017 1453.4592749320589 1.0853397202277524 9.486436880545801e-05 574925.1451085489 50.25146503406689 40288 6149 707671 BCH_20200625 4303610902.241965 462073.16678286734 232.7334288005525 0.025038787514247634 1992768095.4334598 214393.3390397929 3299 301177 150898 CHZ_20201129 63148982.79144985 3567.8599220862516 0.011814236329465096 6.670161017985666e-07 6525920.985848672 368.44483682537964 43322 None 325304 MLN_20211216 123805150.44271375 2537.6983899558563 85.20011633891053 0.0017434265894312984 11485731.538367104 235.0293711267357 31247 584 99475 ORN_20211028 235650085.9530023 4026.365828913807 7.480546731888612 0.0001278332239810924 15388475.110356472 262.969867847215 88097 None 71899 QKC_20200621 19668040.11927054 2102.342408331222 0.006094993394722255 6.514295446243997e-07 3328680.404155499 355.7675323744944 None 9203 656041 ANKR_20190930 8667170.24824628 1075.1373406041953 0.002162597456815237 2.685826046510082e-07 1765300.0025180727 219.2404652898113 None None 6100 VIBE_20200107 2486974.9703772953 320.6054907716712 0.013304341899997888 1.7132611558722936e-06 1042993.9508986619 134.311117025994 19706 None 1894870 FIS_20210823 62147664.98021258 1259.7478239721197 2.3026491444750046 4.673174009242907e-05 23135704.092694543 469.5338467474827 None None 372916 FUN_20200506 12865704.522627931 1434.649471929686 0.0021065305599802784 2.344842867429651e-07 139913.9120073784 15.574240642763453 34430 16885 209311 MDA_20210805 12613251.10357853 317.1496179045727 0.6425861263041763 1.6157289088641837e-05 1344797.1848812103 33.81379708069216 None 390 1488938 OCEAN_20210212 468226495.13618726 9823.452874352697 1.1119905356150412 2.3252909034962647e-05 209691017.36923265 4384.8629967328525 44634 1678 65645 TWT_20210201 100420370.07618368 3038.597319183151 0.2918088826925794 8.82567822133281e-06 17161913.425670225 519.0572821489666 None 6432 11832 HOT_20191022 164230337.09488428 19999.08136445419 0.000927336343067224 1.1283872879862723e-07 13839928.443061426 1684.0490981014068 24474 6694 551921 JST_20210430 175345586.27678493 3271.1377586451504 0.1224678318377398 2.284762558454245e-06 162599183.1834122 3033.4539298851328 44126 None 74075 RVN_20200315 77798209.33185492 15057.893898281462 0.01372498436088757 2.6490476391948253e-06 12878440.966796268 2485.6570137028107 30242 7574 183648 RVN_20190314 78582120.28616382 20324.377240415866 0.02535969358750106 6.5600185229925066e-06 24708651.07764872 6391.607540062026 20715 5946 345292 BQX_20210314 1148447899.497831 18710.873223061335 5.161232555958152 8.412310629826622e-05 16046788.354079483 261.5471532856374 50808 2388 33455 QLC_20200310 2922116.059076681 369.4843000025681 0.012188984964578698 1.5395178265986601e-06 59517.08201950807 7.5172468439692 24533 5672 940522 WBTC_20210809 8549302137.568616 194348.32971525152 43923.31674463481 0.9985215152389484 389754960.52128154 8860.412705494158 None None 187032 DOT_20210804 17745897142.51564 461943.91034172085 17.471733267876886 0.00045480903905759323 959709619.3894043 24982.330205975257 516592 28056 22959 STORM_20190730 13647677.914033638 1434.043708570821 0.0022679266129811463 2.3836990382976856e-07 288387.83070662385 30.310936464056113 26691 2559 3721557 PAXG_20210219 132268434.73282298 2559.1742682136396 1801.7737696918703 0.03485025463946599 7564502.32000329 146.31405812841288 15195 None 57778 MDA_20190421 20205977.43237584 3805.2112052851467 1.1368791277948955 0.0002140982890146324 1272698.7111623753 239.67597770882028 None 360 1377289 POE_20190316 11543673.994419396 2941.6180369615013 0.0050749907498793476 1.2932350943447375e-06 528491.0165874544 134.67278333720537 None 10969 686511 SXP_20200914 114874729.3430992 11128.673865619972 1.722501459807167 0.0001667924911957502 81759522.76577206 7916.901552353642 None None 88692 BTS_20200407 50556428.135225855 6951.095433436536 0.018720614832788057 2.569164523985939e-06 28829165.012282558 3956.4335181967017 13241 7019 124371 WAN_20200308 24927171.099045042 2804.3925029857987 0.235241583647955 2.645499266576354e-05 1520734.6174463653 171.02003194861612 106217 16384 700059 REP_20200903 88485169.72295135 7756.2043282674185 20.473923252298345 0.0017938398272916985 10291779.019123478 901.7227851587418 136002 10417 111817 COTI_20201228 28557078.928755153 1075.609150908205 0.04993234809754015 1.8986903936963533e-06 12534502.788703188 476.6276961015444 34419 1257 248568 TCT_20210823 18784401.912447087 380.6236161173828 0.032324803634075264 6.560245296557422e-07 2591904.510890857 52.60211189271819 None None 1235757 KMD_20190510 128076282.15666898 20721.880487278566 1.1282033194600993 0.0001827306892108018 692526.090627133 112.16574854372575 96960 8361 329492 FLM_20201229 0.0 0.0 0.1383786233836457 5.09817851719409e-06 7166166.440815377 264.01762718735074 None None 35817 DOGE_20210828 38550123417.7951 785968.9267200149 0.2937207835793739 5.987636157974983e-06 1989544800.7943754 40557.80541634128 2063080 2145848 21799 LTC_20210930 9681357897.310526 232913.7884361526 145.03338884320144 0.0034892084771071005 2500219981.975202 60150.20972289287 197789 343816 131752 NEO_20200323 419036553.5029428 71868.27422791332 5.940154730749724 0.001018372802734467 469984752.79037946 80573.606519707 322229 98953 219445 OAX_20190904 3787127.1674727313 356.353798638951 0.07284227512235825 6.870846944511289e-06 180626.6521044686 17.037607332069186 12306 None None TKO_20210805 117810488.70403433 2961.930324619341 1.579480391735164 3.972044819658956e-05 9034222.235476522 227.1907636070806 306041 None 21500 BNB_20211204 100528004276.42007 1872301.1116490043 596.4043662845299 0.01112201738230239 2382852302.693731 44436.503533871575 6463308 730745 109 HNT_20210617 1141101228.5284283 29833.565680428503 13.18463421305113 0.0003447047570007078 8128486.948448279 212.51466465218525 55146 37419 2774 MITH_20201208 3379456.471389339 175.94928726198575 0.005455941777127315 2.841373223146795e-07 335034.5295586843 17.44809933838513 123 2108 838528 IOST_20201229 108092705.23075551 3986.230670469298 0.005888876133216544 2.1695939053784373e-07 26422046.838711098 973.4474030714558 None 52142 676530 ENJ_20200502 128902012.90225208 14546.917984491285 0.14008270797673308 1.585103362021208e-05 15732145.805768264 1780.1681284368824 54518 15341 90947 DLT_20210310 10147023.404204035 185.34211248778908 0.12372940913990621 2.2599997214311204e-06 423702.2449902781 7.739202525124858 None 2542 3551597 OM_20210729 41555598.20846287 1039.2267878295065 0.12785529882185032 3.195685029463443e-06 10385820.917106535 259.58886905212523 47576 None 86802 NULS_20200718 43033958.5330605 4701.226641046948 0.44614178965091317 4.873857155343762e-05 14435866.637020374 1577.0401593063593 28961 5184 415817 SXP_20201014 96664358.59701811 8461.245644941659 1.259561824365293 0.0001102348112359171 29505244.209525973 2582.251194811897 89793 None 69308 BZRX_20210422 110561345.77714221 2040.5016947231438 0.7857823470051761 1.4505702249470298e-05 66269430.90016069 1223.3471985509561 23306 None 181064 SOL_20200713 16696748.621766666 1799.253698508382 1.0175269375576679 0.00010951393248220185 4779890.404796757 514.4478988631879 68358 1967 104192 HIVE_20210108 45102778.44815506 1151.415012596624 0.12157653524977333 3.0808183958090297e-06 5847821.633082437 148.18711871988444 10238 97 154138 IOTX_20190714 29788622.52903086 2613.4076703394026 0.008526195117679469 7.475520729799625e-07 1153384.8612186695 101.12544130732812 20147 1757 776154 TFUEL_20191113 0.0 0.0 0.0033049587954478653 3.754771760748247e-07 334816.50779733126 38.038585238682316 69441 4023 431634 DOCK_20210511 57576972.51791218 1031.2267812348039 0.10336641859942228 1.8499449603340714e-06 27864763.623054754 498.69464119808833 48086 14993 221085 OGN_20210218 82366765.14884369 1578.2062346653604 0.3902513354762279 7.484609492490332e-06 32567216.555087797 624.6049046180563 72454 2805 162285 ELF_20190730 58459440.904408954 6158.1699185593025 0.12656653739606494 1.3306061312332569e-05 24395268.813005514 2564.6979781148552 86334 33458 1184009 EVX_20210819 10963065.15100229 243.14338712172292 0.5030387463912194 1.1167589525609244e-05 279717.72097448155 6.209805334662061 18334 2799 2395989 CDT_20190205 4765403.753404799 1375.284132466106 0.007089212862428573 2.0462333347648314e-06 45116.8192687996 13.022537387141147 19535 284 402914 CRV_20210324 740404336.0353279 13581.798921689562 2.915957641795318 5.349208362085066e-05 748948875.4016889 13739.16935434735 94122 None 26046 HC_20190321 57965669.477032684 14337.071034062114 1.3189653417150942 0.00032629046537285296 11428535.831024565 2827.2329506295896 12424 793 596410 LSK_20200316 118451824.79194668 21925.038947032495 0.8494427708461585 0.00015807689534489054 4298484.570676068 799.9256912193432 178268 31316 164419 UNI_20210131 5526735076.374684 161737.2981881607 19.390026684593842 0.0005675495308017604 2031907840.7746058 59474.30400290868 183374 None 5312 OAX_20210718 6049130.015497575 191.3692425362129 0.10668829223516761 3.3756089601230995e-06 669811.5074308555 21.192782063596074 14071 None 1430084 AST_20210825 35810623.84867669 744.5302845907223 0.20788417097769005 4.322071060084181e-06 2360140.8591710925 49.06913526494676 44666 3699 258024 BNT_20200414 12520018.71003849 1827.40548779361 0.17949688514669773 2.618611408757138e-05 5918547.873564988 863.4343137668485 735 5017 146407 DYDX_20211221 505252320.5925899 10709.33599846589 7.427961227124307 0.00015755332430143597 117438374.10227159 2490.966992773576 None 2520 12899 STEEM_20201115 54781116.75353683 3403.436670153716 0.14894194150297388 9.264017791746317e-06 921693.2167099577 57.32826007214666 11665 3848 215994 EOS_20200725 2440739851.1340356 255833.00313081927 2.5940094546557173 0.0002718983871328886 1388371325.4466038 145526.04018190998 190188 71915 92471 DODO_20210602 213488179.5687555 5818.377226546966 1.679079850099959 4.577405379094756e-05 33637576.06695446 917.0071430457585 90937 971 25824 LRC_20201014 225036971.65840927 19697.98511086704 0.1893440268139593 1.657108261835659e-05 77572960.66509628 6789.059902031544 42096 7164 153137 RVN_20211120 1255437209.1144795 21599.355668114906 0.12406839170693022 2.133058108239992e-06 69564181.83802712 1195.9890836917848 77614 58088 60566 MFT_20190318 20840830.26491793 5233.704485835578 0.0031398503817404353 7.885245057515636e-07 1506286.4351592972 378.2803708455359 16489 1878 633572 NEAR_20211120 5286723363.740293 90946.19207146345 9.478081594689192 0.0001624878100693582 180607568.04305318 3096.251907106593 None None 8388640 XEM_20190507 480148939.7350144 83936.08980633195 0.05329813924496938 9.320582862827023e-06 23636902.895635825 4133.534775891148 216607 18441 133593 BZRX_20210731 33106770.549227137 793.166396244197 0.23566155711624978 5.641692273455883e-06 16438285.967184646 393.5293989599508 None None 158412 LPT_20210826 502501382.30861425 10251.795150242044 20.952679491327455 0.00042751190621721275 17939357.015458614 366.02901873071863 15458 1311 104852 LRC_20190509 46098651.015823774 7738.822619156318 0.058392206985508684 9.803702224782029e-06 8157358.340852924 1369.5716644930194 36023 2465 903966 MANA_20190916 44833419.88120707 4351.733503468405 0.03371761309487479 3.272720955804919e-06 12898101.384192247 1251.9239298276061 45774 6373 114138 WAN_20190213 31252398.661157463 8597.643765470128 0.29425773743496175 8.098015559545616e-05 1914102.1755694756 526.763691430466 108512 17258 456075 EOS_20200412 2339779480.133099 340034.25965974655 2.505891621276864 0.0003641328256742993 2426430519.0485225 352586.27855313657 1486 70867 93233 MANA_20200317 29980916.840425305 5940.05529404805 0.022479958851857187 4.4692333536331975e-06 21547458.007443022 4283.843162147033 48037 6789 47233 IOST_20190702 149968190.185184 14152.061676915442 0.012493762338902934 1.176995179838247e-06 58763425.86792405 5535.904007231341 198034 50276 104916 WABI_20190225 7141094.018027962 1889.2289503516963 0.13467046747004816 3.58264601380679e-05 339351.8910019208 90.2779742593696 34672 8011 1817938 XVS_20210111 18665684.332643904 485.66428831012814 5.0301036332948295 0.00013115567051408193 16417708.520324256 428.077774588004 None None 105222 WRX_20200807 28823226.854701173 2449.8468035795495 0.12573706640362775 1.0686283226990288e-05 2847626.336735023 242.01727008090353 35253 None 17175 TNB_20200907 7374914.227833353 718.1611475003638 0.0021459998094434892 2.0897513355057333e-07 417296.04149125883 40.63583585469921 15963 1435 593209 THETA_20210401 12242179343.53216 208139.800383514 12.22972675253324 0.0002081243689246558 592172179.5257303 10077.53187396454 122038 11272 23388 NCASH_20190904 3169385.6670249435 298.28634830801394 0.0010923521612172713 1.0280659139274839e-07 388323.67803722195 36.54703594087661 59725 58892 754232 BCH_20210523 11843287828.604422 315359.9587193417 631.8541133677018 0.016824845430761185 5543094126.31331 147600.05499736118 None 543361 272279 TOMO_20210420 188534653.24986354 3368.1529578427017 2.323318713615042 4.151650287512116e-05 10913933.614001045 195.02634468928608 45328 2058 79487 KNC_20190704 41086113.787612505 3426.5823952980077 0.2435130077195525 2.02905675577833e-05 8664439.133426128 721.9589180613949 97224 6690 219747 THETA_20200407 88052823.08554982 12107.48434940297 0.08824075501293117 1.2109913022295437e-05 3620281.387710267 496.8372348466609 None 4027 349819 POLY_20210610 196092283.3131075 5224.123098767877 0.2315566667912055 6.182485587472893e-06 12799793.645237634 341.75021099981694 46830 5626 154352 ONE_20210117 62818752.53586696 1732.0215733972232 0.007094052959763809 1.9599512995458738e-07 7252076.138921119 200.3610084884016 None 1624 164688 ETH_20200721 26401433618.61543 2882086.9095134726 236.06009844538684 0.025769271828792094 5152984578.126705 562520.566575302 465414 470603 15611 RLC_20200330 18537266.60384263 3134.8861128833564 0.2636761621158903 4.467054487975222e-05 441042.5872567778 74.71897546535406 28322 3561 324809 ICX_20210916 1446131482.7967055 30007.428814862214 2.1566975155879518 4.474653476634428e-05 176230095.88485363 3656.3709353733916 146213 33274 258203 WABI_20190704 12301507.30696602 1025.9458607250522 0.2151420143175359 1.792638717412352e-05 1037674.9744183014 86.46271817863605 36409 8013 1160222 IOTX_20200305 17225334.20157856 1967.6326245706625 0.003980123293929527 4.544128207261559e-07 3036666.491165114 346.69784927506083 22269 1807 497303 TFUEL_20190812 0.0 0.0 0.007121871295221622 6.171187904079217e-07 4714566.627230055 408.5229195655141 70397 4021 242693 CKB_20211216 586600254.6838027 12024.504930549392 0.02026391730957886 4.152370846941624e-07 23790039.673404776 487.4924511300409 None 14291 74070 MKR_20210120 1292089454.3096364 35679.938650499906 1420.405060474451 0.03928190317658008 174192766.71688002 4817.374695882507 85553 19259 39551 PERL_20210729 0.0 0.0 0.06168477938628178 1.5417829988037027e-06 4201818.070906692 105.02253116967182 351 682 5644185 NKN_20210722 120073841.09458283 3731.308008464084 0.18567251865735956 5.7490223638767946e-06 6551542.1684035305 202.8569586732475 28596 3288 146372 VIA_20200530 5211761.146885381 552.5966387039574 0.22495575645168936 2.3851782798334656e-05 9059938.304541292 960.6141403749281 38862 2158 2692600 ANT_20210723 117725529.48484784 3640.0303716214717 3.3542560316919867 0.00010361107396377242 6318674.532545506 195.18028682334517 85728 3063 128582 REP_20200607 157201026.23388195 16253.549570309116 14.291002384898356 0.0014775954154826467 9411765.182232708 973.1144611354816 132168 10151 227925 OG_20210110 0.0 0.0 3.64223261483909 9.035566277586124e-05 1531633.335599388 37.996404898427876 None None 397078 BRD_20210117 5672931.942278129 156.41253784576327 0.07595493663121365 2.0984422723549662e-06 147331.6118048918 4.070398791413446 407 None None AUDIO_20201208 11952788.005740877 622.4833982620743 0.16481372126084334 8.589193931644698e-06 2933394.237896957 152.87253873353347 23484 2200 55194 SNT_20210310 379079756.03997904 6935.526303922062 0.09826298491170328 1.7963843794465192e-06 46732308.501167595 854.3317616741232 122879 5810 156186 PORTO_20211202 0.0 0.0 3.8970033766290375 6.818115423829186e-05 4848292.850951324 84.82471548409613 None None 176855 REP_20200626 177955761.9637468 19215.790109191523 16.16971912798892 0.0017464614291618392 37263715.11570508 4024.784885978913 133228 10203 234509 XZC_20190616 88426400.02969742 10028.813663224171 11.470895245350594 0.00130093560514738 10281495.417564863 1166.043554298098 60481 3999 343816 DLT_20210131 4713704.112727179 137.77742964592173 0.058062589192123 1.6995023157604819e-06 9936227.08970042 290.83513470251523 None 2530 6584036 BAT_20210909 1152283466.7707517 24862.04696679072 0.7692675539848455 1.6653926053279417e-05 195577011.32410005 4234.0601360877345 212258 78786 25472 WAN_20190221 32664091.308084987 8216.453009329436 0.3077091303742154 7.740235558414475e-05 2058766.80060435 517.870235996621 3 17233 506668 CRV_20210124 422176512.7242354 13186.427670473775 2.13908276768092 6.679756946192177e-05 422971066.4279862 13208.202888164733 59425 None 30895 SNX_20210707 1802318980.1780112 52766.872226350126 11.322639347070318 0.0003313699439520062 485039030.0598991 14195.219972900726 140276 7112 47664 POE_20200403 2390116.9638836416 352.46594188908193 0.0009545615444309385 1.4002445369619969e-07 35477.4415386677 5.204179237025837 None 10418 753171 LOOM_20210506 124359840.18195106 2171.6240904259153 0.1492557000669948 2.606292400577738e-06 7295227.927222824 127.38875030346547 32281 None 275263 ETH_20210527 334435114557.1313 8535977.681369778 2882.483407624011 0.07357789167073295 53115222704.62064 1355812.1763652503 1273232 973996 4259 EOS_20210124 2568820495.896511 80253.25117173076 2.7041870431436497 8.437881751655423e-05 2350048617.514605 73328.62715804447 193768 74284 74168 ADX_20190812 8199328.5795137165 711.3722881662251 0.08919751150075951 7.72849614244031e-06 458907.28041922714 39.761906882655246 53924 3847 708738 UMA_20210610 798234022.3069727 21266.044549220805 13.054409553518889 0.00034854837062572657 43327382.46859412 1156.8266263590149 39655 None 143872 ARPA_20201030 11921286.941743739 885.0181026638844 0.01335833199408464 9.93423782011523e-07 5254306.705143823 390.74887801739783 21022 None 396166 BNB_20190201 899814627.6501919 262238.8324429232 6.229535197691113 0.0018155139811082215 51789005.94673345 15093.207017891147 910243 47121 1125 FRONT_20211021 73934425.70622115 1115.4477909273805 1.295273597600204 1.9613875658559433e-05 11741420.224263506 177.79622526103682 None None 341496 RVN_20190714 197875185.11590502 17385.538941896477 0.049968404158769145 4.38381501447006e-06 43481319.88487363 3814.691827151999 26618 6770 214144 STX_20200621 99596679.49140094 10646.044606620251 0.1393517971920697 1.4893843505396998e-05 529307.0386585849 56.57204541983989 41031 None 97025 IOTX_20190511 22332867.309085906 3505.6582802887597 0.0088466336360257 1.3884519093610322e-06 2902537.3944639973 455.54430681112757 18059 1717 727084 AE_20191017 61291714.09321773 7653.549728034339 0.1845041874707964 2.304528154164559e-05 13839063.560229644 1728.5521829617028 25028 6351 393899 BAT_20200129 315925642.05269206 33818.832919681576 0.22177159404136623 2.3717880408988328e-05 69274132.94078977 7408.683729889868 110312 33683 22497 ONE_20191113 16533939.171553977 1878.6449332037075 0.005658605979547173 6.42950923078385e-07 2894205.9293978834 328.8499642157832 70838 None 168226 BEAM_20191113 31242275.948608723 3549.85843383198 0.6995012701203998 7.947051017014835e-05 47469791.04702789 5393.054556610491 11863 1390 213970 VIDT_20210930 41210765.989335015 991.9473188133112 0.8934224112186739 2.1493926851780867e-05 52902437.244834095 1272.7250874201318 32159 1731 694933 MITH_20210826 37754538.27188289 770.2321965126963 0.061018423831569614 1.2450007979839261e-06 13842690.677341342 282.44192257581796 32895 2751 771999 ARK_20210131 64189610.754855245 1876.3984751415087 0.4155795831833456 1.2162331843420255e-05 2377627.220394109 69.5835224456256 63453 21552 89752 CDT_20210610 13361768.784520125 356.6215162101978 0.019801430873297353 5.280501256906122e-07 599593.6817722328 15.989527274520709 20887 334 455228 XLM_20200430 1463867708.7815313 166968.1167038907 0.07205477850266517 8.218536821281495e-06 826523918.5311545 94272.96009059144 282121 107982 81218 LOOM_20210212 71893528.6952679 1508.3355992135212 0.08643116460287115 1.810221827071495e-06 36032271.67194388 754.6630310863123 25011 None 265333 PERL_20210823 0.0 0.0 0.10442682165725825 2.116392332770433e-06 19657766.912741676 398.39905604005435 532 688 3275203 TWT_20210708 118304092.69732794 3481.6734169053993 0.342424916042297 1.007827002715293e-05 7685889.879252941 226.21155755063364 916200 40266 2918 SXP_20201129 73959050.04810135 4178.618860950518 0.9627656536694206 5.435647090066305e-05 45085156.30713756 2545.448082324549 89698 None 79111 LINK_20200312 1391127714.2457955 175387.86489739575 3.8232672229681817 0.0004816299623110629 444865796.3862768 56041.255881837846 46004 13587 95530 OMG_20200907 555769646.9842888 53976.37621086724 3.9598433749354487 0.0003849624238451009 449006722.477514 43650.89723037495 284155 42942 113182 MFT_20200109 7458268.506765122 926.7235802388524 0.0008272473520209359 1.0309296644779463e-07 834531.0338128732 104.0006712119842 18535 2415 945394 QKC_20190706 75264597.8390576 6847.963460649379 0.018793156980370092 1.710266100197655e-06 3562713.840938133 324.22379663118613 50984 9225 176500 BEL_20210511 111687842.12912808 2000.358458963949 3.5254296632216824 6.309448394225052e-05 22814041.444808893 408.30205367986633 None None 339562 TNT_20190103 5254987.568708234 1356.957970922076 0.012267231208374248 3.166901659884177e-06 189652.21623619445 48.96051180555801 16991 2521 1137638 RVN_20210718 567474012.6889755 17954.831985195902 0.061526217048247706 1.9465689731668237e-06 210523121.34225616 6660.539129485475 None 45246 64221 LTO_20210401 225790672.0493261 3838.9335606190034 0.8036171833186174 1.3675055406041785e-05 24881254.387511026 423.401265408396 6689 3095 178145 IOST_20210710 483142230.9547805 14220.261776831716 0.021359821708204923 6.28551153005017e-07 82826905.34153031 2437.330590276331 248525 53581 158729 BAND_20210519 473089813.1141489 11053.181874438975 13.788706844544265 0.000322310056358868 148814511.77838996 3478.5287858439187 93300 5191 165860 SKY_20200417 6818617.876579061 960.0643307267405 0.40010560917051696 5.6467284960194486e-05 170036.77995532943 23.99745239102484 16140 3825 410514 OCEAN_20201228 138541882.8143102 5218.212875024615 0.328385715709352 1.2486951397247915e-05 39187118.83974095 1490.100284334895 34626 1314 67754 COTI_20201208 24841420.042283677 1293.348494738014 0.04372360322132394 2.277485678559618e-06 5039680.952967213 262.50812717316967 None 1230 262833 COTI_20210723 71900109.13350883 2223.125112404406 0.10762740084523761 3.3244352362154104e-06 6998058.642323124 216.1586413212189 123866 5470 101712 BNB_20200229 2926158625.653091 334615.852210836 18.967838512147207 0.0021741099932295906 475710231.97751814 54526.316668161555 1117699 59640 1952 RDN_20201231 11415605.195726447 395.31770626843456 0.15410995443881056 5.344775061099036e-06 234439.30255257638 8.130722912658937 26504 4384 1957686 AGLD_20211202 186012999.2635089 3254.3276621446553 2.418126798723354 4.229875848848221e-05 51191932.29730504 895.4680052119821 68589 None 52275 MTH_20190510 6114760.419017478 989.822878050456 0.01791644328941314 2.898318537855782e-06 120399.43829048667 19.476852537520074 19479 2003 1355649 TRX_20210523 5450991930.687521 145029.45667911632 0.07597531954501835 2.021770976120816e-06 2726741720.5899925 72561.02775322985 979580 109712 18998 FET_20210104 40132832.5527863 1199.6627032184545 0.056997397545605684 1.731511980215991e-06 5334124.090030919 162.04423646636005 26500 731 338598 WPR_20191019 4639997.529861551 583.1339541878633 0.0075580575266159114 9.498188841203404e-07 430587.863759445 54.111851204032384 34161 None 763120 RVN_20200506 133585995.11713785 14897.44824007114 0.02204955010652802 2.450454064740158e-06 30112239.82188564 3346.49279071341 31117 7668 223095 NEO_20210401 3583895878.4259667 60930.60352555246 50.713836251520775 0.0008630434170092799 1499566835.182475 25519.49095412528 364020 107252 91590 CDT_20190511 5414555.779750291 849.9017516027341 0.008083247150484826 1.2686407510111088e-06 211537.24205181692 33.20011879227761 19831 290 447254 PERL_20210106 0.0 0.0 0.0244757319900098 7.180411266904553e-07 2128965.8132582093 62.45717234775024 13463 504 591773 1INCH_20210220 444907321.7523167 7963.415616067538 4.630221235846474 8.276017132760538e-05 258269927.12386474 4616.29419606591 None None 9629 EVX_20210314 16669659.082691789 271.5567052408507 0.7651387432287329 1.2470165036766182e-05 1093083.1252202587 17.814974200471127 17389 2813 744332 DLT_20190605 8071079.168566537 1052.4416515344633 0.10095165279919155 1.3163756912569674e-05 629419.1723916864 82.0741488795248 15118 2678 2533353 BRD_20190714 20102112.224085204 1765.4126317417115 0.3349579339873664 2.941316007732021e-05 241269.12410795354 21.18620474106976 167 None None MDA_20210201 13696623.350960083 414.37175756387234 0.7058595562545026 2.1291631123988506e-05 5226846.776974253 157.6632242644291 None 370 2554978 RLC_20210120 80895255.72924156 2234.047566972979 1.1382720405456717 3.158192229500909e-05 5147457.415231022 142.81875888540876 33964 3906 538469 LOOM_20201106 14290314.91388402 919.6603753336951 0.017130848989093974 1.1025191029154697e-06 3473945.4019589806 223.57859616785424 22417 None 386788 GXS_20190622 133918482.1865901 13225.060303414237 2.242099369717494 0.00022086930525533856 20376240.78860318 2007.264355665619 None None 715062 QLC_20190613 9863488.897256637 1213.0140568002132 0.04115177001533633 5.058427921082568e-06 949773.957092222 116.74742305086501 24988 5793 940522 MITH_20200801 5912209.385944571 521.5846976019412 0.009571160437898869 8.446901967031765e-07 7546409.987655217 665.9985043856033 108 2097 437263 KMD_20200730 77371456.98679355 6975.917602039362 0.6398056253860042 5.768576032859059e-05 3847744.9636849505 346.91800911684663 101457 8371 296104 AVA_20210707 115202813.41895615 3372.8170222086387 2.221533998178447 6.507127813936889e-05 5257544.754401083 153.99951444557274 88375 10470 46420 COMP_20210212 4769605.514727927 99.80987174386043 5.1712455343431325e-05 1.0821468399116468e-09 223.67935645922887 0.004680766115983154 2122 None 2426495 LRC_20190213 42093215.3837812 11579.990218886904 0.053334333482603684 1.4677685833004829e-05 1137374.1381296883 313.0070103809842 28500 2470 537095 XZC_20200511 37785999.281409994 4315.921470955577 3.7471637239385465 0.0004280014999970843 40386373.24912751 4612.936504386424 63624 4101 147349 VIA_20191020 4947743.626440892 622.4225566284306 0.21366391316823377 2.6878765177465652e-05 336238.612827545 42.29857341736656 40445 2205 4136825 MBL_20200325 4502077.203659316 667.1292334843004 0.0012822934080638918 1.897654715722941e-07 2286555.869763564 338.38538837786786 None None 114904 STX_20210506 2240088125.5301514 39129.75883593677 2.125047793101985 3.706834417843761e-05 32253641.144791856 562.6174972835458 61270 None 63157 KMD_20211230 92732281.27906962 1999.428630317887 0.7211717520270189 1.549918791837957e-05 1744273.988461656 37.48736726351392 117808 10010 144433 QLC_20200626 4401670.96209937 475.2922978065701 0.018402719476444573 1.9888057597309316e-06 870368.0174956362 94.06180040382509 24495 5643 940522 WAN_20190131 30105355.99070325 8705.056794420185 0.28360479476165723 8.200520353695495e-05 2104556.485823824 608.539016838704 108873 17291 451504 AION_20210107 37605935.31221194 1025.994669760626 0.07711495922232102 2.088454601024948e-06 2564052.7900277735 69.4405845585194 67974 72530 529270 REQ_20210221 74736422.12550561 1329.2795877152155 0.09683381530730217 1.722309021863831e-06 2624579.806453481 46.6813939418907 40839 27310 403462 AE_20200331 33940826.08808166 5282.656965637749 0.09640950662991615 1.5038001709502852e-05 14977012.787152106 2336.1217349757876 25313 6345 671630 TOMO_20210428 189442912.22153345 3438.746928866449 2.328059813096519 4.2271453684862264e-05 24999740.13523952 453.9296418912742 46735 2108 79487 APPC_20191113 3990640.2090190225 453.430723986869 0.03626431103584196 4.120479909640594e-06 55058.80721763678 6.255977364765604 25161 3272 880644 SNGLS_20200806 8384599.704736932 715.6801411467295 0.009439314242679011 8.040861544201806e-07 737499.7586004147 62.82377400866287 9087 2126 644870 BTS_20190205 100312950.64511561 28956.257600072524 0.03731447253662871 1.0771166355219389e-05 3161265.1961111776 912.5283303108199 13812 7224 107513 FET_20200315 3684795.692293421 712.5306536000414 0.01084653409334232 2.0979196966687238e-06 2203026.1365225534 426.1058771689606 16609 360 523257 DOGE_20200913 355632828.2871596 34105.35026162235 0.0028208051182432264 2.7014366236963025e-07 134048169.56614007 12837.56301573041 152012 166993 90441 STEEM_20200807 77091607.39796814 6552.445668862288 0.21451958118689504 1.8216273247076248e-05 3387947.0736672333 287.69294298960193 11590 3864 180097 NKN_20210112 13189064.716648607 372.3304271848708 0.020270010646285815 5.702356408913351e-07 3012229.4437067406 84.73999433535586 13719 1025 376074 LRC_20190305 42952644.880545646 11567.350137302054 0.05444041723317683 1.466106149012003e-05 2051263.276474908 552.4148887399846 28525 2469 761823 NEO_20200301 784678719.8650237 91744.08236029856 11.125460369559393 0.0013007809777442023 615133145.3088269 71920.93339229352 322920 98935 240012 ARK_20210731 178656802.79527214 4282.155508393248 1.1238916493854731 2.6905749550877425e-05 17718646.039688364 424.1809724141752 73135 23426 125060 DOCK_20190314 5285599.929706984 1367.0606815147905 0.01028249101231321 2.6598515627328825e-06 1536282.3933671517 397.40206141715436 121 15359 178518 SUPER_20210805 213511943.72913218 5368.218648264778 0.7205081697765892 1.8118776368554204e-05 27332138.134549692 687.327249443812 129934 None None NAV_20210527 23929207.34330033 611.4362486833736 0.3343302853505661 8.527200222588133e-06 820096.2451254658 20.91681546780854 51192 14062 505111 APPC_20200612 4323456.719902453 465.9400984619352 0.039791632142505445 4.279204646633987e-06 242696.14188097557 26.099619496327126 24529 3208 1584019 SNGLS_20201229 3852617.953654508 142.0926863651394 0.00433706005070417 1.597260885178072e-07 53831.90158045973 1.9825317095912371 8959 2114 2318818 ATOM_20201228 1162390248.206731 43853.222401224746 4.833757085185352 0.00018380485782833124 260146399.07926565 9892.133811164245 46799 9909 96388 LUN_20190224 5803459.4410628015 1410.3958485858632 2.146761078105437 0.0005217203537328651 9856087.473947756 2395.2928417484245 31679 2256 1490290 MFT_20200305 10366189.786703713 1184.1194474438832 0.0011304103044535543 1.2905955345858376e-07 3998825.590151811 456.54807196156014 18450 2501 867921 TOMO_20210506 235964573.6228413 4121.818581356589 2.8976004177900916 5.0544392425847415e-05 45114726.842215136 786.9602874494834 47494 2129 78743 BAT_20190227 203437457.98842517 53396.694361658185 0.16305163498439523 4.289977262220806e-05 82005571.34000428 21576.112159667307 92879 23136 122237 KNC_20200718 315002526.95719993 34414.89001597036 1.6331167994416158 0.00017839258636429046 74170517.3523529 8101.97435173512 115356 8608 73639 AXS_20210610 222986334.48167375 5940.790505844444 4.0125982087265015 0.0001071350306494969 19228532.984380893 513.3954020480703 86587 None 11122 XTZ_20210427 4004942014.987612 74345.09808105942 5.218161119594764 9.683717093697681e-05 375736910.4895619 6972.820231973768 106570 43413 96118 CHR_20200905 20699449.729510237 1973.3290629900878 0.0486048597077921 4.635632274536339e-06 7035808.455340707 671.032093274498 27058 None 270101 WTC_20210324 41813205.94915677 767.322473376912 1.4477496195979316 2.6558391179477674e-05 24052969.887034867 441.242169668453 57310 19254 449288 GXS_20210826 51529703.76390564 1051.28859333543 0.7351129830089568 1.499901493655073e-05 22300845.094870556 455.019454705498 None 27010 713331 COS_20200417 10204220.33421663 1437.0092861264202 0.0051257750479044165 7.234157218575592e-07 1884121.3597952507 265.9115940175266 10746 None 147635 FTT_20211021 7395319947.679864 111571.71006506769 61.5086147202003 0.000928282682525888 462368696.5457117 6978.028295676985 None None 1070 ARPA_20200610 0.0 0.0 0.013328314444410638 1.3642460273987907e-06 7130766.121320149 729.8836918872723 16879 None 1048081 ZEN_20210124 290548367.38065755 9075.10227538848 27.150636114341307 0.0008471819935529048 31754288.260293387 990.8298692861623 83697 6423 413746 XRP_20210624 29694967545.318787 880842.0533466024 0.6426176789007471 1.9051329549529065e-05 5631237222.316207 166946.16350648302 1893177 320706 11293 ARK_20190117 53720989.74269263 14937.411715602251 0.38597797429917746 0.0001073447568162252 382863.1437390124 106.47848788051259 62802 21771 157332 YOYO_20200721 2061959.1474280437 225.07414785071683 0.011789777445795043 1.2869188583448986e-06 1480993.7740943127 161.6585915837727 7559 None 1934644 ENG_20190224 27793851.4707016 6754.649210283921 0.36106172942595643 8.77476562793627e-05 691262.8265549187 167.99535359141598 61141 3197 251266 RLC_20190515 52279766.78303914 6542.383875696001 0.7474478687865067 9.35095666423803e-05 1388240.6060804678 173.67602864490686 24845 3309 1063788 GLM_20210511 421842744.2200176 7549.703949283176 0.4218427442200176 7.5497039492831755e-06 14285047.751827512 255.6589698539924 158208 21005 134242 NEBL_20210202 18269102.986680448 547.2225292066809 1.0410351449891733 3.1173651433253106e-05 1850364.7373695835 55.40891258550374 38943 5865 713465 FIO_20210105 12452366.306959039 398.0134610104595 0.05918424469714352 1.8916987734319717e-06 10080702.571141757 322.20826314070996 55480 161 541516 LUN_20191213 2235517.51971058 310.4912727846239 0.8269415939708199 0.00011485400841939567 49732.87285490947 6.907404149512481 30310 2165 6550339 DLT_20200129 3380859.346964272 361.7459247632768 0.04132732028299549 4.419846664010596e-06 159831.22276270663 17.0935229261199 None 2602 5247525 VIB_20190703 7254835.516722379 672.192091721664 0.04011465243323908 3.7091140206435577e-06 1135507.0055850667 104.99218364072651 32645 1120 2096372 VET_20190513 337295744.68192285 48520.68222485036 0.00608791174908874 8.748839029907274e-07 14755050.571354574 2120.424336739853 108320 55503 330753 TCT_20200314 2440911.357333891 443.3576998027006 0.004053119221043094 7.285774006721734e-07 513827.74078101653 92.36424081183176 26 None 365886 SKY_20201229 11400554.806075528 420.42838257520015 0.5979980636035946 2.203000104558235e-05 491407.29226803157 18.103241166425832 17186 3816 846842 EZ_20211021 0.0 0.0 5.2292641383862755 7.918492030262949e-05 837772.2195314526 12.686092092457764 37106 None 212917 WPR_20190225 5897543.602662622 1569.3060719023936 0.010059853443555429 2.6813887927483293e-06 579740.1076299078 154.52597157878066 35046 None 831971 RVN_20210610 682876126.9801711 18192.602423105134 0.07619406361672135 2.0308387592866522e-06 78832992.17008172 2101.175451343281 63449 41729 45441 PHA_20210729 133923369.84229621 3347.6402217828268 0.7366428819439591 1.8412053716828883e-05 15387862.42506287 384.6126209891001 107263 None 155093 BNT_20190520 48658642.7340766 5945.566431418693 0.747532280655276 9.137339221309008e-05 3273243.4517717166 400.0995882953579 808 5137 148813 QTUM_20210704 744505302.6078216 21475.974612120408 7.197593955885352 0.00020758782516287007 274884015.1913092 7928.0069472302075 246541 16737 119158 POE_20200704 5932688.077495164 654.4357522592626 0.0023565678148411017 2.5998825859422545e-07 546079.9647629402 60.24625228172603 None 10260 701403 SCRT_20210128 83472921.0959703 2756.2597589647953 1.2108306484822884 3.9828747555564474e-05 1793555.482073269 58.99674625178593 65028 None 296261 VIBE_20190329 9459844.11659686 2349.5128936847887 0.047249487618223465 1.1735820194920445e-05 1290744.874587533 320.59500598334694 20671 None 1285691 POWR_20190701 47999800.32433709 4424.237475275588 0.1138968288197116 1.0559605317920908e-05 2543962.840668905 235.85593926800755 84679 13182 757422 BCPT_20200330 1531920.379362286 259.0671012041406 0.013164337730555987 2.2302286815997984e-06 143050.66903125087 24.23484656239228 10640 3166 1690012 QSP_20201124 18902470.6227873 1032.1346184811496 0.026631356457595394 1.4511058912590032e-06 452856.56684721436 24.675529881238887 57831 8198 237712 STORJ_20200404 12639424.4643322 1879.5546494657412 0.08795422072484405 1.3072571891728211e-05 27418605.120265212 4075.207348228254 82027 8035 134239 ORN_20210723 124853902.734141 3856.8980579310773 4.308848192733727 0.0001330933075307182 2424136.3020689404 74.87762481206016 None None 85178 TNB_20210124 8559419.07999329 267.5837061838404 0.0024894396510944635 7.777938708149464e-08 340051.572775419 10.624480450828463 15860 1413 3029706 CTXC_20211204 178205658.51553395 3319.2769300906334 0.9110765322920547 1.698142761704207e-05 2002095270.3519745 37316.77275274805 22767 20758 491291 TWT_20210204 126153849.7422814 3363.896974314268 0.36360691311278986 9.695591512733056e-06 22791747.65993552 607.7427771662776 None 6751 11832 GTO_20200223 8189064.849692502 848.8168288414918 0.012455787715177174 1.2903608535917996e-06 8672727.831764868 898.4536942877954 16940 None 2410144 BTG_20200506 170564889.0408402 19021.317345663952 9.755655266609383 0.0010841847106526274 41133109.29975852 4571.285780980766 75040 None 196262 SKL_20210916 561562354.9845877 11652.333939474998 0.45207831438210166 9.381275189068854e-06 88967944.44131567 1846.2127982195802 74658 2544 253402 STX_20200607 92751525.67282578 9590.130404069892 0.13739868248779677 1.4220391132228547e-05 734713.2120814102 76.04082554970337 41062 None 95761 ONT_20200625 388428958.048173 41747.79075040521 0.608222677104799 6.542707006836758e-05 122606879.1444139 13188.934208816512 86044 16495 143020 ZEC_20200331 295259438.8595657 45955.10808469939 30.631787513342267 0.004777961106667783 372455283.80277133 58095.75622080243 72751 15676 145072 REQ_20190512 15794777.960379815 2168.507440933389 0.021309445527039377 2.925856861424178e-06 837989.9821257996 115.05877691169287 42048 30159 371026 PERL_20210523 0.0 0.0 0.057732709020928155 1.5359946641149122e-06 3289990.00840357 87.5310925747031 19395 654 309210 GLM_20210708 344552972.6506992 10140.66234423908 0.3434965711849165 1.0112723987483902e-05 34202362.39706512 1006.9359628490113 158552 21015 170065 RSR_20210718 259478303.04546544 8208.883734076311 0.01971980623734519 6.238945198351131e-07 22977303.141887926 726.9550896329664 76426 None 123422 ETH_20191020 18584020382.348053 2338860.254757817 171.85241043187662 0.021617779280038853 6653033262.426412 836903.0393490095 447753 446758 24016 DUSK_20210318 131386252.72675419 2233.5704070546594 0.3682101304115157 6.2498558151335225e-06 37610743.115809396 638.3901532288829 23612 13463 374805 INJ_20210418 183749046.78656796 3048.1163789269845 13.58035351505672 0.0002253255681450398 23334230.992778696 387.1621493391953 60427 2923 97465 ICP_20211104 8196644174.327079 130055.74857350264 46.763880719534896 0.0007420651152360221 330420601.3210498 5243.226135705087 None 24398 22378 GRS_20210725 50647951.85991759 1480.3147840877148 0.6490466456204153 1.8970033531302683e-05 9341058.508101953 273.0161141918712 41453 106850 8801723 VITE_20201226 7549568.44327346 305.701578223327 0.013088893309610102 5.308142525708764e-07 551800.473186592 22.378023016486935 None None 1446251 MITH_20201115 3008418.6814215174 186.9067858837402 0.004864635976644788 3.0227543897809356e-07 399904.29295218515 24.848980742176625 None 2106 516659 NEO_20210930 2610802664.8480415 62852.87570557825 37.06962408760368 0.000891813151021484 284915955.54710585 6854.447606274256 417469 113836 100131 CTK_20201226 20442644.885969654 827.8013562088482 0.8225394709848058 3.335772277861511e-05 2125450.8194067203 86.19671360994101 9036 None 235753 DODO_20211104 423479465.59884024 6716.141587683253 1.8343495423760003 2.9105318353306424e-05 91362373.29046384 1449.6315444265026 115847 1183 22711 APPC_20190414 8499440.957439253 1675.2998354481967 0.07981901407649095 1.5730707161785076e-05 494915.72870781756 97.53784218135524 25671 3399 1339078 CND_20200306 12486168.847324423 1378.752156964697 0.00661256675244985 7.299614482805229e-07 49723.627446099104 5.488992771357424 35006 5979 433845 VIB_20190207 3631778.5857826853 1066.3715644327929 0.021720055414008458 6.3774949172490866e-06 968553.7049233202 284.38906865069015 32816 1122 2912789 ASR_20210127 0.0 0.0 4.117395970362352 0.00012639975986628932 1557234.8557764913 47.80548512759188 1934541 None 205258 CELO_20210207 302353263.14608777 7710.630940131444 3.092777722504991 7.864962476212563e-05 16384724.57981833 416.66506799258315 None None 140742 FUN_20200317 7760258.5580752585 1537.523524594878 0.0013009277880891342 2.5833799222382877e-07 289743.592801499 57.53722743827601 34875 16995 317174 APPC_20210823 10192857.475071779 206.53530992435563 0.09033167937222251 1.8309068187319066e-06 297163.8756778375 6.023129095357666 24967 3117 837968 REN_20200425 55878442.00406498 7451.691864820002 0.06391825015047153 8.527818391654527e-06 2145102.501789573 286.19438929697156 11783 877 420454 BEL_20211225 76523021.5228019 1505.5056416641228 1.5951479304168648 3.136920980309126e-05 4436718.696448854 87.24981362062782 None None 290468 YFII_20210825 166535029.0020881 3465.5252938879203 4188.180445146365 0.08721167517202522 67087078.65475583 1396.9733607488356 18027 None 505373 CELR_20190930 14737253.777593575 1828.295694602206 0.004360562022534115 5.415576079883186e-07 2527491.547406579 313.90042603470204 None None 536359 POA_20190818 2945137.4656798234 288.1212948480994 0.01337679651668591 1.308645174705773e-06 133450.1391435953 13.055358989444107 17748 None 702581 ONT_20200403 240210329.95167157 35424.367525442816 0.3783220907575799 5.549599644841636e-05 93236542.45203732 13676.850903471108 84120 16525 252464 REEF_20210128 0.0 0.0 0.018289948777751003 6.016248049108622e-07 45013435.63065138 1480.6602117224897 21509 797 125550 TOMO_20200105 32625381.00872095 4439.888562119581 0.4710733369676397 6.406477221766919e-05 15657131.341138676 2129.329924315127 20255 1433 259463 SUSHI_20201226 322190894.9185435 13046.370367722648 2.5333678516067515 0.00010273960760688503 224749021.72457525 9114.596716528651 17604 None None AE_20200325 36440200.50486975 5391.0067945506335 0.10370818101418051 1.5347682326290342e-05 13711843.159535445 2029.203587050593 25373 6340 484575 RLC_20190511 44405419.12778686 6968.697355975535 0.6346499989144955 9.96185407765766e-05 1536076.9778447428 241.11202602239857 24798 3300 1063788 ANKR_20200105 5650219.052197953 769.2735469168539 0.0014198929011221746 1.930851176735315e-07 1174799.6385086358 159.75594093398746 None None 5257 PERL_20200421 4339344.733664095 633.6890193688328 0.012312333981359664 1.7984691938675733e-06 2477220.086797017 361.84885979208946 11645 480 526137 POWR_20211011 165777522.56801233 3029.6762544109256 0.3852553367987887 7.041768967383297e-06 30841931.55257543 563.7345826425635 93338 14479 245537 ARDR_20211202 359043670.023532 6281.444597719289 0.3774552512439102 6.602506625230789e-06 59102289.772786945 1033.8265489886503 75609 7430 None BTS_20200520 51732590.67208761 5304.526162056374 0.01911568346140285 1.9592676154700766e-06 9708200.95698619 995.044920988807 13158 6991 152581 MKR_20210813 2925940322.4259515 65814.09840226873 3246.6279117525105 0.07302317714320095 125126221.58432454 2814.339829623218 171378 29360 33465 ARK_20190714 56394864.89214158 4954.897891632177 0.3953990327412583 3.472058388345222e-05 265080.15978396515 23.277087603906285 63480 21848 202264 TOMO_20210710 184765523.84134057 5438.179376630018 2.2149982033997864 6.517735555310987e-05 22814007.90175901 671.3128264944345 50293 2195 118140 VET_20210314 4399468849.354381 71632.20339166226 0.067611388185376 1.1021375851436545e-06 661102400.8220464 10776.67273413979 193375 96820 59007 VIB_20190325 4656809.510894562 1166.2146863790374 0.027599814962881847 6.911650066866943e-06 1205370.4423371516 301.85342581402267 32719 1125 2263235 TWT_20210318 216255178.7785469 3674.5903192717296 0.6237672930594851 1.0591325083202921e-05 16505117.569718415 280.2504518310824 None 13323 7173 KAVA_20210127 108947656.30777566 3345.239497260389 2.3247406561747037 7.135753267679768e-05 42571981.36328605 1306.7399768563319 54956 None 89855 FIL_20210428 10363476511.92833 188116.6870265327 151.65286111931212 0.0027520419779725165 926899397.9456252 16820.428138819825 79656 None 34217 BCPT_20190810 3748436.2792455684 316.00332897303787 0.03226996638352925 2.7204455520571517e-06 183310.0474066398 15.453533393493405 10955 3050 1188214 UTK_20210206 140019848.04065835 3694.3570433871514 0.31096658588363146 8.146679278515098e-06 10251116.865301434 268.55799027693456 59193 3254 107548 NPXS_20190813 116252266.39281905 10213.817047995857 0.0004932630065452065 4.3336227102441516e-08 2286152.1204571133 200.85270163834562 64082 4710 187000 1INCH_20210105 80310080.18391708 2566.9412688385914 1.010178833479938 3.2288222482514325e-05 61028849.51243311 1950.6576514983576 None None 25684 VIBE_20200217 3604414.573427773 361.57576240592823 0.01925896499802814 1.9321984838756093e-06 4364790.306355515 437.907292174765 19511 None 1771395 RVN_20201201 110500494.43237996 5623.7911089466115 0.014488751814017308 7.380434393391571e-07 10812870.01679188 550.7974654241527 33808 9989 206201 AR_20211028 2334089056.1947546 39884.602336140306 46.65173093050734 0.000797219960370405 71787088.73488975 1226.7519102685771 39290 None 53329 REN_20210718 270040664.4803814 8544.064840856989 0.305820082919529 9.694317054103211e-06 13080862.59944609 414.6556634528114 None 1179 100399 TUSD_20210710 1528349418.2699766 44983.70753332401 1.0024973656126193 2.949797459859222e-05 89982877.56209588 2647.700360801353 12759 None 677408 VIB_20191102 4322492.875852825 467.9890806472212 0.02367660581246553 2.563426546963653e-06 331482.8805015351 35.88909755359607 32047 1123 None ELF_20190411 66824981.06833881 12591.077367475622 0.2017664604697733 3.8014580543579435e-05 13600442.334797129 2562.4432790300507 86227 32284 1025647 MDA_20190712 13626512.148596104 1203.061387703864 0.6979038660785397 6.133122825135525e-05 810072.6621707978 71.18853148492097 None 364 2408870 ZIL_20201224 680478579.7510933 29102.40771338298 0.057875823182636864 2.48229059627521e-06 637661901.0718744 27349.280815215367 108172 13066 50668 BEAM_20210617 56121119.59268749 1467.2608052370647 0.622669770106425 1.6258165704195078e-05 7248818.793480745 189.26966228656062 21100 2468 161429 NEAR_20210805 1046938549.1862866 26260.63303201789 2.459396215231932 6.183874651380611e-05 43269783.3908414 1087.9699457296285 None None None GAS_20190905 19593796.508200854 1855.5283196753735 1.4069941308625145 0.00013320298696394939 737460.4178928457 69.8168729181488 323969 98211 210014 SNM_20200607 3724414.524717718 385.08930944 0.0085091752421478 8.8e-07 80186.6462821461 8.29272482 29482 9615 7325463 RDN_20211111 34043389.570053026 525.0818581527019 0.6680618933525163 1.0284789797076864e-05 1258508.3030856482 19.3746919019102 32262 4853 1012293 BAND_20211230 209843647.75237128 4524.502054940089 5.0686846752814105 0.00010891976103454427 16802653.046710562 361.0682202266732 None 6375 255553 PSG_20210710 29888909.506946187 879.7163447560208 14.188861982858713 0.00041750407980238315 4633837.807350968 136.34963762765238 9240884 None 41128 MFT_20190513 22963255.52314365 3303.3112384420992 0.0034617763002388977 4.974862458029464e-07 1527659.0106223137 219.5373935655783 18015 1979 690074 BAND_20200718 52355504.81219078 5718.556807219973 2.5557294168923193 0.0002791736518065376 7604664.430215328 830.6912013901764 17297 1340 306961 CTSI_20201018 6770996.805675913 595.887740525499 0.034139932688503606 3.0036244010342255e-06 792429.9639705145 69.71782860878378 17942 145 383194 WABI_20190725 9201571.351778045 936.0624498663485 0.16131756874635297 1.641060128040147e-05 927790.2360224157 94.3827492165676 36446 7999 1256578 XVG_20210212 379159159.9801363 7950.488722553197 0.02311259181643419 4.833089651905278e-07 50535485.40590237 1056.7509412579532 291313 52049 157669 ANKR_20190922 13400781.670515353 1341.3163207832147 0.003358759519766447 3.3633233269053703e-07 8589108.315691138 860.0779003520215 None None 6100 STORJ_20190908 20781408.570768304 1985.0536288343178 0.14452867899070732 1.3805473181673119e-05 3450541.5335821165 329.59796586240157 83510 7797 165970 LTC_20210511 24148703618.438572 432188.4531054196 361.76524540354876 0.006474499180936642 16906457633.414602 302574.2452898686 175407 318337 92383 PERP_20211202 734506617.1012163 12850.143331247473 13.029383973579199 0.00022791475047673 39308897.72705289 687.6056178207389 None None 104435 XRP_20190608 17884721553.83345 2222956.4424139597 0.4231568709971077 5.263620595543968e-05 1948324586.554901 242350.81889205953 924470 201564 40280 AXS_20211028 7522641187.063036 128530.62065109795 122.99828276766131 0.002101385359431936 492747009.4979292 8418.421203641863 625247 None 464 GTO_20190419 21983795.34385567 4165.445014174326 0.03580421504255063 6.783893307465451e-06 19722893.73844128 3736.934511119854 17042 None 809336 ADA_20200314 867613747.6483233 157825.3239716303 0.028339513929699127 5.106142262313536e-06 289676259.7783371 52193.13909590352 155695 77107 41962 WAN_20190105 37062571.887422815 9727.504123126135 0.34989387196814875 9.185802921043983e-05 1841365.8509823508 483.41583456494646 109379 17356 493529 BAT_20190510 355458986.9299519 57510.87181217054 0.28362539124944347 4.593769786592714e-05 60121833.73194155 9737.698803893169 100362 26630 57848 GRS_20190729 18988453.54107623 1991.8706586742444 0.25992209272355765 2.72655795226975e-05 719234.2393682684 75.44698545421113 38639 107016 None XRP_20200713 8966264523.682837 966211.1451453277 0.20084690446497824 2.1616908843637834e-05 978263600.5955677 105289.32539665174 952307 215126 31878 FIL_20210204 1110368380.3902166 29626.139988835537 23.067601307987246 0.0006149725610250398 115763697.62767115 3086.211550707135 47858 None 48258 NXS_20210723 27538577.238056 850.5742211628135 0.4039989878813104 1.2478172764598788e-05 251020.56394428725 7.753182701744926 25966 3957 406501 JST_20220105 414735663.87047493 8966.654945163844 0.056044436238403605 1.2180685809754006e-06 255360027.19487253 5549.989380568672 56394 None 162886 SC_20210527 1017379780.7901461 25967.16290931833 0.021220397514300406 5.416690709779612e-07 322649392.2916025 8235.90587576973 137814 45965 46989 ZRX_20190601 207675907.1087951 24211.316431079817 0.3473327812271471 4.049151226831171e-05 62370714.93899252 7271.08037488688 150512 15921 209456 THETA_20200321 71021419.41871507 11484.7953149814 0.07072702085421034 1.1426865472064308e-05 12168956.627725866 1966.0524173220717 None 4026 384607 DOGE_20210519 62100584438.77591 1451528.6872525397 0.4789760312658251 1.1195505745588423e-05 5522377790.002698 129079.13599328444 1507608 1893901 9826 TNT_20200411 19450720.611422654 2836.766210260663 0.0455873035603351 6.642899292260738e-06 658769.1850902674 95.99465227434375 17594 2563 952681 PPT_20200324 7382496.113181831 1139.3003700487193 0.20378492841621307 3.144901680887955e-05 1675123.087634897 258.512612043496 24030 None 1049662 MDA_20200321 5999136.924986355 970.4095514447847 0.304424940688679 4.9096900233311486e-05 758050.3759043695 122.25648658551309 None 372 1815630 MTL_20190314 14804061.172649337 3828.903099934501 0.34356123397666616 8.887205402907151e-05 5563421.897425072 1439.1400500327147 32677 None 580770 DOCK_20190522 7261694.277886225 912.4546431040986 0.01412901000588993 1.7755426987937538e-06 3118154.6686931644 391.84746513732034 167 15276 233199 STORM_20190528 16656888.7106592 1889.0235735937356 0.003683870027568388 4.185938032748412e-07 3969703.5649675964 451.07273076903743 26970 2570 8080480 SUSD_20210124 144109638.32631853 4501.114186555406 1.0106689784831875 3.1536464987547765e-05 29814920.637953483 930.3315139012911 62925 3349 36126 AST_20201031 20773036.246568542 1529.5147044172716 0.12066345019494305 8.890845382169681e-06 2070768.5159683404 152.58044310845568 33952 3465 170182 ONG_20190701 0.0 0.0 0.37832691912326605 3.507545371092263e-05 14737735.637067296 1366.3652730281726 None 16266 247326 TRU_20211225 173495861.1150619 3412.1790812898744 0.3142977667735925 6.182974565402438e-06 8476847.614127262 166.75948331092277 None None 113426 GRS_20190806 19620101.053960867 1662.2586112767476 0.2683670272535443 2.273665160072602e-05 1570701.2835092468 133.07330716982216 38609 107009 None BCD_20201208 104100852.10972634 5419.926886139549 0.5496757720440474 2.8646108888838802e-05 1211661.5934016122 63.14520614931729 None None 1847175 MTL_20201031 17933978.584816735 1318.7729298799318 0.27924135100151914 2.0575341348616e-05 2684953.5387692098 197.8354400851271 None None 357379 CVC_20210422 366982285.56278616 6772.50572812417 0.5463804692453142 1.0086294801614045e-05 49226347.46151452 908.7284052984636 101098 9594 120797 ETH_20191011 20655168596.9981 2412289.669460898 191.04108656991255 0.022311434419478027 8489850464.079381 991518.344359723 447792 446529 23868 OAX_20200927 4692275.804917149 437.0964197282189 0.0839473317712535 7.82e-06 159827.07182909988 14.88847442 12760 None 1304480 TRU_20211202 240347520.50707796 4205.037429165257 0.44404467387566804 7.765312637322322e-06 6806202.383161819 119.0247118985563 35537 None 108013 DLT_20190324 8389298.194329573 2095.975456558021 0.10407339850619139 2.598441806705049e-05 504900.3762966876 126.06047893327658 14733 2685 1013339 RLC_20210723 168927970.05337653 5223.105282442617 2.363317514233989 7.300154295128718e-05 7915394.890479288 244.50207667547122 45861 7725 149507 GO_20211204 45535647.50750879 848.1516553821314 0.04181209024316265 7.784743607642097e-07 13403932.192988362 249.55981595227126 24801 1170 167779 LEND_20190909 4333632.138184732 417.22998163319335 0.003755878762378144 3.6136540829378896e-07 1798510.5099259927 173.0405920580252 None 5817 754376 FTT_20200421 260714150.11469343 38080.598690774386 2.5914288113610846 0.00037849445316708697 2076805.0835696177 303.3304256687068 10462 None 13510 ETH_20190207 10959290841.797949 3217893.339035552 104.62362623241391 0.030719840801651466 2028390258.2091599 595580.8268142497 439547 427674 27812 DOT_20210813 21137761564.596798 475456.5071413663 20.762374234824012 0.0004669652167624105 1239209131.0266278 27870.972459075925 529192 28358 22959 BAL_20201111 114329371.10433657 7478.706519293677 12.069696949292654 0.0007900982449034503 50729902.96008601 3320.846203618666 27941 None 62865 UTK_20210523 131665485.02145219 3503.2266804080914 0.2924682410156132 7.781198305802865e-06 12168153.849701015 323.73709292759617 75647 3921 101934 CMT_20190401 30828399.721613217 7512.819726425952 0.038535499652016525 9.39102465803244e-06 6188635.756072763 1508.1582309733806 292383 1638 939194 PNT_20211202 39664110.28803343 693.9496109792718 1.1781468196694365 2.0602666605007437e-05 15932474.70487807 278.61677259326444 None 381 272921 MFT_20200410 5609022.400757081 769.5236901789851 0.0005801705961191273 7.956863349441221e-08 950031.5882386969 130.29394415768985 18328 2549 847135 TNB_20210106 7181615.262207246 211.40845770674244 0.0020977147228305546 6.154036347804462e-08 312260.43679616257 9.160740767609642 15746 1414 3447610 SXP_20210131 92638944.64892009 2708.0328488330033 1.2474681419097158 3.651361445487528e-05 143719168.50157964 4206.685631593253 95930 None 145148 AUDIO_20210602 201148820.21751866 5482.082038755115 1.108453674876647 3.0217990011348524e-05 30238834.816298384 824.3527259137906 50207 5409 28886 APPC_20210219 10383579.59319615 200.9080227046012 0.09356552840930603 1.8095449084771238e-06 804145.0753453067 15.552059091704173 24408 3115 1017685 CDT_20201014 4464140.017457016 390.7547850717686 0.006615900776229159 5.792242398872172e-07 870743.5516532976 76.23387788027604 73 290 262589 SC_20190520 138649271.0953802 16942.7785590911 0.003406787576767725 4.1634660840322577e-07 3279432.8437864976 400.78247064998783 109894 30928 231960 NULS_20190810 31519163.010252617 2657.219627831517 0.42845271193024287 3.611919057625379e-05 6333398.934430483 533.9147979191265 21337 5308 406668 YOYO_20190614 4822255.056292872 586.4921650203377 0.02745542277608956 3.3387172832386507e-06 914070.9602931328 111.15561898740867 7482 None 1718266 COTI_20201101 16502643.17581471 1195.9533717784402 0.029031305532578936 2.103950733561472e-06 1451349.0596279483 105.18186704456888 32357 1204 163060 FIO_20210702 53266736.53226415 1584.294086784074 0.1588382755070514 4.723062875452205e-06 2092525.8709130574 62.22134573850876 None 478 108144 TVK_20210703 19831475.39261042 586.4140300310122 0.090602484270415 2.67594615483482e-06 2174137.071850782 64.21318117656384 49843 None 76424 ICX_20201031 184265687.25253874 13567.447475034778 0.32212181025775194 2.3734902363551827e-05 12487220.94022069 920.0959400143734 116355 28016 228712 XVG_20190703 119926361.59260291 11145.161467283715 0.007612290279621437 7.05437055801424e-07 2945939.9857427413 273.00262519854897 304121 53027 387398 LPT_20210814 459211528.72826105 9634.586022658137 19.14113900249028 0.00040095243369033223 15768354.971229067 330.3021988495459 15041 1284 108437 CDT_20190302 5025814.941206242 1315.3053961615174 0.0074502965095046446 1.949816162471519e-06 119605.87716706598 31.302039070446888 19448 284 399523 GRS_20190515 28264234.855108056 3536.0009214696524 0.38963418596066174 4.8745237493806917e-05 5583490.137592626 698.5232882741965 38816 107044 6883994 UNFI_20211002 42415637.55989113 880.6814613346853 9.122021400766132 0.00018938205321140876 15890148.612258978 329.8949693070529 22202 None 224888 RDN_20191030 8070297.456920978 857.7365003480496 0.15951116387608474 1.695334629235796e-05 5118804.820520885 544.0426150529313 None 4376 2691065 BAND_20211120 318800922.0456716 5482.543675259409 7.706380162359647 0.00013211458707481472 28655062.10777864 491.249019411621 114294 6242 303910 BAND_20210620 215039109.00877884 6044.191722544364 6.095179561314739 0.00017119552497504327 30593412.340050817 859.2782597537192 97167 5389 189686 VITE_20200319 3376387.71168281 626.645975370482 0.006976121825561771 1.2937014058158123e-06 1061313.090352708 196.81741106771113 None None 513506 NKN_20200325 8714126.224795913 1290.8156985810788 0.013461772822108017 1.992195898163063e-06 4776867.05379909 706.9243461767627 12233 994 277366 NEAR_20210202 610335684.2837838 18279.13813546469 2.2522046829744213 6.74287149035507e-05 123259516.27388315 3690.2644083862015 36524 None None THETA_20200914 541856211.6800864 52493.19059405701 0.5403677147259935 5.233347435779861e-05 30194288.652087465 2924.253222136436 73169 4392 65774 RDN_20201106 10858150.597077489 698.7817213066572 0.16251645795448494 1.0463776725199242e-05 85128.11956515057 5.481054949002589 26387 4387 2012801 TRX_20200105 888326322.150211 120881.97490012256 0.01343760313961098 1.8274448850197208e-06 1033957595.3443716 140612.91283186857 492715 71728 62423 ELF_20190806 53526435.69551425 4532.088371697457 0.11419090849847463 9.668016422473324e-06 15524433.693219667 1314.3820455518212 None 33491 1285223 ELF_20190702 92148492.47543913 8695.785068399326 0.20020151585988102 1.8860309070364573e-05 36595002.121888146 3447.4916310449757 36146 33308 1102918 BNB_20200423 2319816863.694298 326080.4465904808 15.686738791246619 0.002204975259319428 372342615.9260412 52337.599741593694 None 61957 1429 ETH_20190411 18738487750.9329 3530681.8685097387 177.3253178087243 0.033409653718267186 8535409687.957658 1608146.4595247908 441079 434763 33191 BAT_20210805 999246625.3171062 25101.649915945763 0.6701753183586504 1.685343113772639e-05 96178204.80749504 2418.6697230855134 209112 76965 27723 VET_20200107 362100763.5030821 46652.43262110249 0.005707264236774704 7.35915731591338e-07 89513192.42837542 11542.161666275153 118060 60050 370383 WINGS_20190122 9740604.527981836 2758.3192200180074 0.10897139094250437 3.085930052424314e-05 2055198.76553132 582.0059356317413 37654 1222 1854227 GRS_20200417 11965311.222873664 1687.9022149920245 0.15984409829229915 2.254861595619887e-05 8930369.118576325 1259.7741533981746 37454 106846 None LUNA_20210310 4649351687.7290535 85063.1045648044 11.740721062841912 0.00021442915463680496 1024046281.7497474 18702.88692911079 35329 None 57053 DGB_20210217 1016735681.4384793 20661.33493029751 0.0723998652440715 1.4712554029772977e-06 112420841.14133121 2284.5314611960534 187566 27412 191254 NXS_20220105 48923599.97584459 1021.8120047259132 0.4691526950674174 1.0217977613503317e-05 270457.74741176324 5.890472840734318 27223 4174 394982 VIBE_20200312 2124383.22978613 267.84271665444845 0.011332366919912601 1.4275767646435486e-06 125270.15997650777 15.78070768 19437 None 1426283 HARD_20220112 68254267.7090354 1592.1675873602328 0.7046872969995648 1.6470109170079647e-05 2969367.3000108902 69.40071689311893 39759 None 51112 LINK_20210519 18028260936.827152 422518.3881184494 42.63945681116316 0.000996647540914657 2778831150.7153015 64951.935134698615 316690 56618 23806 LINK_20191127 825455835.6420016 115134.65368340815 2.2565922667817073 0.0003153060884949691 168192058.40821552 23500.913671145667 37905 11764 109630 KMD_20200511 62891859.00156734 7196.256969696167 0.5246442471705728 5.9924930239725166e-05 4940055.159875752 564.2537060731412 99663 8376 170099 EPS_20210909 226163195.0118349 4881.7269742339595 0.6660810989109477 1.4420035408081887e-05 47756045.09961726 1033.8738967557842 21977 None 34754 TNB_20201201 8048026.942308537 409.3510093671468 0.0023487909447885546 1.1956922903695686e-07 412311.48392730555 20.98942282013509 15723 1420 3244705 EVX_20200329 3008557.908886629 482.6070677719895 0.13796495824501812 2.2067094648035585e-05 962577.6726192896 153.96150499355292 16765 2862 688824 POWR_20210902 144975127.26356098 2981.952490204805 0.33883948745215947 6.964090783419329e-06 40244998.4399054 827.1462833966232 92415 14183 213606 OXT_20211007 195112331.5513702 3514.9542152774984 0.32969707397926173 5.943186597913648e-06 15874870.398896554 286.1636467064085 72402 4472 250207 AION_20200801 44797232.1082651 3952.59000307917 0.10192712277382067 8.992096015352662e-06 1988370.8214838998 175.41573679641965 67521 72548 291955 STORJ_20191118 19776344.877101626 2324.950399240744 0.13737252501902728 1.6143256322126245e-05 4956440.27921865 582.4533389166077 82994 7837 156221 LEND_20190704 8775151.808839412 731.1764247256274 0.00789258172548381 6.577024799155857e-07 1977131.9121843975 164.75782031692685 42023 5860 929610 THETA_20200905 422792533.4143746 40305.84410233662 0.4240969532048174 4.0440167748941175e-05 66642516.742349654 6354.760476127909 72728 4373 65774 AST_20201130 15327071.406909617 844.94420449533 0.08911578097231622 4.904625936347624e-06 1119476.2972089492 61.61212326830273 34054 3462 188139 PIVX_20190605 39792853.53857472 5180.382996221317 0.6614651199974709 8.611201146725113e-05 1665673.869970783 216.84367482925333 63043 8604 306282 EVX_20210420 26732655.848405045 477.52596713103736 1.2288144733246447 2.19587815360283e-05 2841685.33327984 50.78060910106332 18065 2825 782921 DNT_20211230 96370815.16514237 2073.897177909793 0.12856968633689378 2.763177736151786e-06 3052476.1809286806 65.6028218127139 None 10390 293812 QKC_20190405 75487946.38420671 15395.409368065233 0.04769464960660748 9.732068721597309e-06 11442227.106506128 2334.780556039857 47210 9102 169394 REN_20190325 14981810.14536712 3751.9265022960444 0.019977657446650806 5.006421346029215e-06 337419.9011744662 84.55777161691779 5914 808 2336942 STORJ_20190213 19287352.806979693 5306.017960773389 0.14199202744071177 3.9076411637279645e-05 509869.0360896099 140.31669731358485 82621 7564 214727 AION_20210106 34588969.80978264 1018.0095585299767 0.07142065644348541 2.0952578105767885e-06 1828539.4090967127 53.643604940665846 68084 72530 529270 NULS_20200704 54460358.07048839 6005.013478299241 0.5669435115371044 6.254802232193167e-05 43752193.02167379 4826.959106267175 27131 5173 531663 C98_20211216 389399271.54063505 7982.153814639313 2.110550177090008 4.318727628719927e-05 18375371.559456583 376.0072880675944 278485 None 39046 OAX_20190902 4090357.7009324683 420.57849833294074 0.07831272648890503 8.052266162334289e-06 113295.63937369251 11.649276997118227 12302 None None AMB_20190524 7900685.967782035 1002.2912172373256 0.05460761598883848 6.931955665662174e-06 3695956.650635926 469.16912925944507 19601 5684 582766 ONE_20200319 9802715.545517351 1821.4711496230486 0.001921676115519297 3.566744747314487e-07 13675347.261912465 2538.2254907688703 71258 None 395411 PIVX_20190530 44529164.79807375 5149.511644550949 0.7409270664941371 8.568345204713074e-05 2649423.9654592564 306.3888492710956 63001 8606 309234 YOYO_20200518 1386307.186513917 142.35802005829072 0.007904193763744096 8.115897806491288e-07 486157.0201589426 49.917813396939444 7452 None 2546990 STPT_20210117 18314334.64415287 504.7262752022626 0.019832870869687116 5.480286528675534e-07 13967023.439825824 385.9415558438536 18178 None 1582459 BNT_20190902 25508575.512337092 2622.166130857539 0.3563722144790353 3.663042988947665e-05 3780877.4863520046 388.6250444271525 777 5119 161703 TWT_20210420 234297702.94101715 4179.122742688975 0.6581333254863567 1.1760191787585173e-05 21492592.339715287 384.0513739988014 None 19294 5638 LOOM_20200223 19753670.71922502 2046.4206131677543 0.023679785025834215 2.4531140316059187e-06 13517277.681927517 1400.3262071202753 21496 None 480790 SC_20200511 85158193.61309116 9726.779315939726 0.001929772886664378 2.202785811625288e-07 4436793.656058763 506.4485143414229 106687 30069 169509 VIB_20201130 3130678.0336537333 172.60328399810265 0.01718298157263814 9.456921789320866e-07 705546.7403359384 38.8308647941059 30420 1094 3122321 MTL_20200806 21517996.661313016 1836.8699202897753 0.3329884687331552 2.8414895386723518e-05 3265155.628129386 278.62543092751287 None None 438797 LSK_20200730 179119897.36728334 16131.285585746367 1.2697175346676548 0.00011439768297428074 4002646.913424304 360.6262969186681 175747 31133 173512 AION_20190712 32087790.833671764 2835.5745816401964 0.09937062570023511 8.764348740132285e-06 1350120.485805196 119.07871863954217 67667 72603 281038 XTZ_20200903 2283385326.889628 200149.57781952212 3.157616409717041 0.0002767193858901709 273502930.83449733 23968.574151939534 72388 29125 69245 AXS_20201129 23626433.248585083 1334.8719260904093 0.4283029565904617 2.4178369902738422e-05 9602744.509460954 542.0899044907691 27136 None 33612 CKB_20210428 681391232.9493424 12368.538797170879 0.02741073909774256 4.977070527654994e-07 61696718.41512365 1120.2504163859996 41617 3359 121056 SRM_20210218 189738164.9367502 3639.553383738391 3.8188419339166253 7.322172374571045e-05 133174380.72594745 2553.4593691654704 35436 None 81157 POA_20210523 10061397.368936768 267.69421279725583 0.03495810713253781 9.301585986758043e-07 151055.3951649727 4.019252934844782 None None 239820 TNT_20191108 29618609.758568455 3212.718939557045 0.06912463126607814 7.497921538811616e-06 1737091.6503844054 188.42164741786712 17732 2561 472199 RUNE_20210620 1985695146.270333 55701.56553979251 7.334491073726325 0.0002060041114720672 103370193.31932735 2903.362293769208 2334 5596 58808 ENJ_20211216 2313413524.7973557 47419.502732396315 2.4864822461859126 5.0879811773680115e-05 230112774.1539663 4708.698263835407 421043 43264 15146 IDEX_20210916 307336960.8828114 6376.56405061342 0.517690237770178 1.0739038307224446e-05 120038566.24314666 2490.0967164880753 59868 1985 5857808 CFX_20210723 173543659.85395584 5360.665616214696 0.20244441749823258 6.253178555096623e-06 2298355.4940050445 70.99246037360513 37329 1163 173501 QKC_20210427 195629615.15567043 3631.322509968042 0.030226180687846983 5.609289860847176e-07 38936072.96340718 722.5647247674237 72258 9401 311852 OGN_20210421 359289101.0729285 6359.603321691053 1.6842293211587764 2.9870733348517607e-05 149049299.7424778 2643.4713090778137 102092 4795 48206 AST_20210718 17947996.022337288 567.7632236699671 0.10412634737404904 3.294549231381069e-06 1110191.445831118 35.126367790562774 44250 3700 213143 DIA_20211002 80877391.54779327 1679.3492774887432 1.6667069165426418 3.460612135014617e-05 15224702.779878156 316.11311304406627 36132 414 487561 REP_20190528 223491095.0618601 25341.628321779805 20.31401932936158 0.0023037712536943633 23268385.247049894 2638.8198309213794 125537 9974 279308 REN_20210310 1170566126.55123 21416.316835236154 1.3375952580715715 2.4432064548301053e-05 304338300.3631801 5558.940908413111 57932 1103 64010 GXS_20210107 22779007.406193033 618.4632812437677 0.32604307752536066 8.827688258392197e-06 11084302.370584825 300.10993219651925 None None 482061 VIA_20210821 9130175.820673658 185.68525029920244 0.39397075677937715 8.012393191541765e-06 2464872.912669503 50.129433729896206 38207 2308 1271022 CELR_20200605 11043078.120722413 1129.773427634006 0.002858912609212225 2.924677695682712e-07 1413975.601386325 144.650203377628 19994 None 1372925 PNT_20210828 36458554.8247372 743.3738164347068 1.1375901253259215 2.3189287234764803e-05 5703510.851270595 116.26362468540145 47912 335 475621 MDT_20210710 14723808.820836063 433.3639296456145 0.024315427201817168 7.154759889243191e-07 778015.282055981 22.892925084435113 34187 312 534148 BCPT_20201226 2091962.537249012 84.79592435886791 0.018000464144993903 7.300008255119947e-07 100216.75750030168 4.06424607254928 10367 3209 2904727 POE_20190410 13651353.109626617 2638.863924643346 0.005997111866975112 1.1601341145141085e-06 639939.3639621339 123.79550420616042 None 10938 791380 FUEL_20190616 7410124.80869419 840.0809649648904 0.009543636701812172 1.0812696421645168e-06 3696337.9624334457 418.78564229091194 1 1514 None FRONT_20210506 98581358.33855931 1722.014742899065 2.6304265141816985 4.588393526031893e-05 34836936.81589038 607.6793040635087 None None 146547 WAN_20191020 20254627.69633125 2548.8364646841887 0.19080356816761124 2.400295037076137e-05 1922831.387601183 241.89079277275258 107464 16753 356039 GO_20190531 17457686.44260214 2102.0684619938993 0.024204893128280922 2.9155829098059313e-06 1520738.2300589695 183.17942452172903 9642 665 883999 OMG_20211202 1163292223.5469286 20348.661132261463 8.284703463066613 0.00014491733608873003 329923687.7516805 5771.0770403176075 6096 6455 101172 YOYO_20210401 7909944.535597428 134.48629770545256 0.04522859331705418 7.68935529384503e-07 2471313.056798347 42.01502355563067 9615 None 886969 ATOM_20191022 733036223.3470833 89266.53051650958 2.979315703848514 0.0003628049374168795 140866801.2374995 17153.996449946415 28893 7065 99736 ATOM_20200129 866501568.0255158 92714.12350107802 4.58311610717188 0.0004901520422409691 189651008.06168765 20282.669419836388 30079 8051 115238 ADA_20190227 1333499545.2259796 350072.44931790564 0.04286059311554926 1.1251831967168615e-05 33331022.66092489 8750.113776156737 147872 71448 106866 OGN_20210128 36728902.77715937 1214.1296117253466 0.17730758661250795 5.851919671546298e-06 15081136.069919733 497.7429252911842 70507 2544 231099 QLC_20211125 8514654.228566237 148.83823177407402 0.03547837026360489 6.203868240928494e-07 444956.92047657125 7.7806677336521535 35445 5816 940522 YOYO_20190220 4979453.9017949775 1271.7592599674952 0.01705292432121919 4.355339931396429e-06 1702286.4627956543 434.7662645089034 6872 None 1519416 XVG_20200807 99543974.81464528 8460.797597181117 0.00612059089895541 5.198419707034764e-07 3419151.765917178 290.3998358119321 289897 51583 218835 OMG_20200725 227652950.38835174 23860.52048399916 1.6228782639559651 0.0001701550194319684 70988260.73909649 7442.954381592697 191 43065 389790 GRT_20210523 969355613.2760755 25790.740421174894 0.7922738575798308 2.109646025973776e-05 185118307.66761556 4929.28169179967 105556 14732 30058 BNT_20200318 10487047.746881448 1930.510977536276 0.14921138822270222 2.7741450464449668e-05 3253397.560094589 604.8731824666014 745 5028 126378 RLC_20210108 76234170.56146608 1950.070421052254 1.0942009199603633 2.771992740687562e-05 17631102.122152597 446.65733871525595 33764 3899 542862 RCN_20191113 24315728.921245363 2762.8395424149285 0.047779050903527374 5.428825578820456e-06 5422376.321168705 616.1096696916134 None 1130 793232 GALA_20211104 720619212.4249704 11434.029477810247 0.09553358880962776 1.515959379293196e-06 117896774.76494776 1870.8259965978382 90945 None 5944 AUTO_20211204 32031264.547058675 596.5052699114813 915.8659328430184 0.01705001291217579 8293110.858396307 154.38683998086668 80705 None 20328 HC_20190213 49518474.06849953 13627.99670160198 1.1522787593773827 0.0003171087837387584 8310621.172945999 2287.094985323225 12215 785 367356 GAS_20220115 75004356.85602768 1740.4455734409107 5.399949605947022 0.00012524057597250308 8677457.038662553 201.25552955195695 433463 115940 79106 XLM_20200701 1364105411.5984113 149111.59578663568 0.06698106403741674 7.323376040393685e-06 206613803.9000456 22590.124579850573 283237 109386 67238 FIS_20210725 20191947.84658106 591.0019422244814 0.7490889509153763 2.1924933955507786e-05 5468539.195023174 160.0575746544865 23939 None 421891 COS_20200713 18218282.003284033 1963.2152353389838 0.009287731602863116 9.996272930274362e-07 5237820.72608758 563.7402950110956 12368 None 288612 XMR_20210707 3980166323.602009 116522.8393273253 221.82895915955578 0.006495382879656241 161671691.44980812 4733.9154488518625 429000 227848 31847 LEND_20190908 4339226.686978695 414.4912328597227 0.0038456120836007027 3.673402217992324e-07 2225770.9187381216 212.609895431262 41629 5818 754376 WING_20210821 44197320.63670539 899.5613638119827 23.677276157751923 0.0004816147959992167 6119940.417367297 124.48449880805727 14654 None 465613 AION_20190716 28986390.248307638 2646.2356698968147 0.08822025766740525 8.057629148304424e-06 456973.88707192475 41.73787528898989 67729 72603 240336 NEBL_20190507 20012173.327931542 3498.7449787752244 1.3246085188171934 0.00023158241376942742 186002.23960602697 32.518926915060696 40453 6190 646043 NBS_20210420 0.0 0.0 0.02916797305151536 5.215642282714803e-07 8920871.654366149 159.51768508908015 None None 497911 KAVA_20210210 238332405.95807037 5116.631849961 4.100903116917566 8.805033845417224e-05 107812897.98064691 2314.846726751366 None None 91263 MITH_20200312 3787235.249752637 477.49547430072533 0.006200285093190054 7.810709797659944e-07 5727151.422400102 721.4687237003699 94 2084 1367265 NEO_20210108 1461533528.0789921 37311.041659614166 20.88756326799772 0.0005293027065417405 1158554860.6439888 29358.43762855236 328112 101278 181319 BQX_20191118 5648928.043811567 664.3995754626347 0.04006961110822334 4.708758194248607e-06 1150111.1417657554 135.1546749096025 59686 5716 325167 NU_20210828 172024837.77327457 3507.036477389904 0.3089390438761511 6.299084208567018e-06 38571144.7462578 786.4428067399122 None 7253 175162 HIVE_20210804 149822477.22918892 3900.0328037810245 0.4036863374562824 1.0510181093623903e-05 37001886.117260486 963.363105991101 22598 174 88793 ELF_20210930 258816570.89248767 6230.329248298761 0.562119828416527 1.3523359563806281e-05 23927975.114552513 575.6541483680361 53701 33513 449555 LINK_20210513 18348698005.81717 355745.2823114456 42.12230656455377 0.0008356971662990897 2466624937.375046 48937.28854396682 293881 55213 24451 GTO_20190816 11419313.4445836 1109.6520543468641 0.017253859302760997 1.6742821472660543e-06 3243678.076919568 314.7604370922201 17415 None 815582 OGN_20210111 32209997.116789605 835.5373808840878 0.16041877123789786 4.170854929120099e-06 15886311.547517812 413.0408200499223 69798 2495 203625 GXS_20200316 17302722.91984303 3202.6764853441287 0.26050098629868523 4.849268101845313e-05 5814933.881961937 1082.4593714131315 None None 697464 VIB_20190806 3998512.1268826146 338.4735421504824 0.021901989935815512 1.8540006578645361e-06 617440.8197652515 52.26628673430495 32495 1119 2890790 FIRO_20210422 137372375.58794236 2539.79224137263 11.66246878147731 0.00021562011721552009 10008753.336709144 185.04560295758267 70633 660 172734 BAT_20190302 202447011.27190197 52951.540388885776 0.1629169883073842 4.2645534959123e-05 18665092.211540405 4885.81854288073 93174 23259 109829 WTC_20190616 56994079.914112866 6463.0680630774295 1.9513001927617721 0.00022130059099996155 5466565.970341859 619.9734333366238 55638 20150 829543 MANA_20200901 131156837.16658033 11221.372681668903 0.09851534232039429 8.439722244139168e-06 74767070.77346449 6405.228825006129 51213 7246 80457 TFUEL_20200113 0.0 0.0 0.0023907106323869083 2.932638741385651e-07 573985.7980180677 70.40973363607493 68630 4018 523233 RDN_20190708 16480696.807047093 1442.7197138932845 0.3259139259837428 2.8520180111567484e-05 803966.7190385511 70.35377687981705 25696 4417 772412 VIB_20200520 2646838.3991308426 271.32923193229635 0.014508185276963447 1.4861369279011267e-06 519378.2936523323 53.2021922116339 31046 1106 None TNT_20190324 7761734.784247599 1939.7205020382346 0.018123883018311037 4.5250617362908e-06 283491.13101356535 70.78035475241289 17128 2512 1213867 DGB_20210314 885795381.0746293 14422.530781151992 0.06273950580292498 1.0227207172429911e-06 84126171.8993161 1371.3461361017698 193769 29761 164221 BAND_20210131 212060185.89526355 6205.841431877928 9.44361587028517 0.00027641631666814156 194925621.3878061 5705.507617882284 52253 3484 278216 ZEC_20190818 361102017.91998166 35327.40450265627 50.047812248102794 0.0048966395511254 168635361.74569994 16499.154407566257 103 15355 180529 ETH_20200719 26352655621.666836 2874675.4057182926 235.6811447764246 0.02570924161143297 4349365185.3359585 474449.8356550008 465001 470426 15611 CTSI_20210206 22871611.235261925 603.518228728331 0.08607713882996738 2.2582244049696827e-06 5019362.803473195 131.68243896431693 20867 207 421222 SNGLS_20200404 3435594.548092658 510.2951029487991 0.005313621332855025 7.897596761896745e-07 81318.5800413542 12.086321440439805 8992 2128 1305089 ARDR_20190603 91841056.82274921 10502.753787788693 0.0919646044179982 1.051622349785987e-05 1520898.4245276186 173.91590874657453 68283 6549 1048625 EGLD_20210511 3079980728.735951 55163.69607956543 173.72300100616056 0.0031091141064962242 127185335.52003928 2276.2312331387056 None 8469 22997 ARDR_20210624 108872021.85955739 3230.4807680205167 0.10898105795294462 3.2337161171643197e-06 5933903.6219450515 176.07243075460508 72051 6950 None NEAR_20211125 5191927709.934726 90811.59352853004 9.239854354903903 0.00016153888947707232 204622736.27775726 3577.3864295302005 196463 None 8388640 ADA_20200320 941233082.8972982 152084.05795505573 0.030025358670093035 4.863964084600948e-06 154960081.1018546 25102.789855330488 155541 77173 42201 ACM_20210617 13342250.128544083 348.8706273480821 6.67045512330401 0.0001743788505019613 3418038.962782897 89.35427857368902 None None 39510 REN_20190701 58173037.14895643 5363.542362392504 0.0748580184728524 6.932677766283616e-06 5052657.308578982 467.93176867938536 6806 781 1032866 MKR_20210729 2388717160.436368 59737.34280877299 2654.2543424362407 0.06633661202005627 58935778.77920487 1472.9560119651169 None 29123 30327 SC_20190703 122907728.11689848 11422.229918833225 0.0029959028818739345 2.776327269223963e-07 4563589.727824955 422.911526390525 109560 30853 228253 COTI_20210427 209250927.36227122 3884.164481730711 0.3145431983179874 5.835226551361421e-06 51482156.4917407 955.0676920956646 84410 3958 80341 QKC_20210201 48335089.24385301 1462.3090209002542 0.007410691836056973 2.2353698487009992e-07 5411770.518692077 163.24128587716157 63266 9207 366724 LRC_20210616 384640205.7084276 9524.298740075548 0.30793120567487375 7.629493714916336e-06 30277767.919921506 750.1806760391801 79882 10960 248927 SCRT_20201030 18573770.451296847 1379.7087224094666 0.329003982292211 2.446455650559629e-05 126876.19766588522 9.434444791174 61742 None 458890 FIL_20211104 7678286551.264632 121977.10944944972 64.14162442639302 0.0010172493976832815 709169570.6032687 11247.022896642506 116541 None 47979 JST_20210422 188323641.20110896 3475.6310033737404 0.13041748863558475 2.408854044426987e-06 351059085.1356223 6484.177129224706 None None 74075 MTL_20211207 147616113.8700835 2924.5574723019795 2.2834184952587635 4.524508735095757e-05 27391815.78816604 542.7586316788876 None 4494 175729 REEF_20210620 243567259.45225662 6831.948561366785 0.01907996890678629 5.360620783424242e-07 13794611.70123411 387.5671000627332 180109 12299 41757 DENT_20190510 52628334.33481171 8514.910301631682 0.0008061712888589893 1.3057241783835527e-07 701270.7416838687 113.58208555226244 45083 9240 250017 GO_20190818 8518258.98578047 833.3600088486276 0.010972237097304438 1.0735152591414811e-06 261028.03230142436 25.538782406378722 10194 686 906372 STPT_20201208 15451445.946775753 804.688293341445 0.016905467023197247 8.805760778635069e-07 2822879.4721038654 147.0388324922188 16887 None 2094498 RLC_20200305 43003196.42937009 4912.316885736564 0.6125141768795047 6.994201501345584e-05 1091702.558742098 124.65977055872928 28414 3565 249120 ZIL_20210617 1261861570.0086107 32990.66064664027 0.10391790389279412 2.7166189251600857e-06 131568833.02553467 3439.4687380061678 299819 34348 32653 BQX_20210509 920935972.6559501 15703.954648219853 4.1481578477487915 7.064181271381297e-05 8017766.821759846 136.54002643924522 72244 5099 19051 NULS_20190122 15706481.346785307 4447.288927446561 0.3928511261390656 0.00011118222318652339 5245204.613892546 1484.4643969134133 19675 None 403917 MTL_20190618 27689391.109555673 2970.454971342609 0.5944772618598454 6.380334108291785e-05 5008796.828464423 537.5781261368021 33164 None 940825 HBAR_20200310 153793437.5955552 19425.12224150743 0.045268598473720854 5.71977534899101e-06 27462369.099283077 3469.9236798806223 37725 6347 124891 MTH_20210617 8082331.229746047 211.30800174259622 0.023257511304952343 6.080695879617327e-07 130711.22576594994 3.417455984490902 21701 2056 537321 BAT_20201224 290606541.141172 12428.532353744244 0.19375302266070085 8.310055558654137e-06 123261536.14757055 5286.679916344492 124611 48730 21978 XLM_20190614 2420137072.0241537 294341.8409951525 0.12459632365207172 1.514462543185568e-05 430379690.28307027 52312.45201917946 272675 102000 70523 BCH_20211028 10410227069.538927 177888.57104466824 551.2441766653701 0.009417826137498569 7231166498.918018 123542.11026786956 None 660880 339583 EGLD_20210418 3753856860.815111 62270.75885127477 213.6126441052394 0.0035536848360890757 161325190.36218965 2683.824663426069 207562 7948 24132 WPR_20190930 4508450.223097109 559.4544586753103 0.007412512995339328 9.19820168799043e-07 1886702.7709253072 234.12131112853373 34347 None 840031 CTSI_20210729 152788166.41494194 3819.197589676915 0.40216914985890007 1.0047823317503709e-05 14242356.915608754 355.8320820059712 47766 3936 130586 GXS_20190615 132453156.37116636 15228.32642548065 2.1985748443896678 0.00025321780120110917 10091086.782345759 1162.2268913317403 None None 820367 GTO_20190922 11164812.756981567 1117.9819483853244 0.016853194454164732 1.6874354865165528e-06 3590247.939648486 359.4755756976788 17310 None 702071 MANA_20210204 232554463.51821232 6207.422354446611 0.17565966038451714 4.683012757726606e-06 97801249.70580193 2607.3402344699343 60559 9038 56631 STORM_20200612 0.0 0.0 0.0023470393845967333 2.5240135424530333e-07 10680875.31241779 1148.6246933358043 19498 50 1230704 TFUEL_20210603 1952853245.445809 51897.58661519565 0.36988071960113583 9.833426585164955e-06 55113026.85289208 1465.2018197340903 166195 18370 16282 SKY_20191012 10583033.070487747 1279.95294490703 0.6614395669054842 7.999705905668938e-05 212577.13843648857 25.7099011738374 None 3805 1832418 FORTH_20211028 127051197.04288007 2170.6280718449634 14.690880831210501 0.0002508491404903889 16028397.557533288 273.6874525728608 None None 167046 LUN_20191127 2791961.97631587 389.4231058289884 1.030234043892778 0.0001439511565274763 785313.2890380484 109.72919878115457 30396 2169 6561004 STX_20200223 86444637.68282504 8955.403325609921 0.15724910887060117 1.6290460982941572e-05 368402.8215087961 38.16525151015749 35734 None 32573 FARM_20220112 90599510.6286001 2114.6223491749447 139.00431381805248 0.003248303222861817 16612407.186013358 388.20475652613834 None None 89050 ONE_20200312 18873188.55398895 2378.844681206295 0.003704479876451588 4.6666591666912574e-07 17517770.25945732 2206.773039339422 71409 None 408073 NANO_20210301 671794010.1487288 14792.675666349782 4.940099263410055 0.00010944849015305725 47646244.6875084 1055.6082508575419 109844 74582 90467 GRS_20211104 79925086.89979196 1269.688361777409 1.0167874496916345 1.6124616589542885e-05 6277146.069416154 99.54545925659096 41787 107132 None TWT_20211104 429101647.56488186 6805.306171052745 1.2368123031806624 1.9615134192642903e-05 84789053.66728404 1344.7057904210058 9130 51617 3937 TNB_20200310 4783404.777020029 604.1758762222591 0.0015443060678165994 1.9505206775109924e-07 584367.2079976625 73.80792876572261 15176 1446 1374605 AERGO_20210916 84401168.00799295 1751.3009786167165 0.3242183794343298 6.726788936505549e-06 32453693.215045553 673.3398175902363 22607 None 851798 AST_20190312 6110486.457713696 1580.4631255549725 0.036655336645364134 9.486228131750856e-06 1016890.7034956567 263.166514926454 30714 3592 383093 FUEL_20200704 3139128.519448392 346.46785136962416 0.003172700358955371 3.499955534057428e-07 73745.1262469608 8.135172991968158 1 1465 None RUNE_20210603 3128013534.6223407 83119.1261669421 12.386739385401532 0.0003293656453676851 101777603.51698351 2706.2849248168786 2036 5233 65526 AMP_20211216 2408273362.1021333 49363.62834442836 0.05022853867117233 1.0292556788319748e-06 19064005.57009186 390.6491511281604 None 41878 76901 SNM_20200625 4074685.079399231 437.60062957151075 0.009296174860631253 9.999980383327919e-07 109688.10202415762 11.799249529731464 29375 9603 7298232 FUEL_20200117 2843609.499206116 326.6617354779758 0.002788349310616803 3.200020308263603e-07 441919.7541294977 50.71646448501929 1 1484 None DCR_20190225 150112475.0990231 39853.08058655303 15.941071099199176 0.0042553622113310425 1469055.0080969788 392.1543997213932 39774 9359 245960 ETC_20190805 686675769.0722455 62710.43636775525 6.103374763990984 0.000557278932269724 522583538.45495147 47715.37183823173 229282 24869 465281 PERL_20210513 0.0 0.0 0.11777525575371434 2.3478843128512726e-06 9528021.673304785 189.94391034089284 19192 653 314180 TNB_20201014 7214505.323251887 631.5016478954481 0.0020976486018979747 1.8364731329124622e-07 380968.20402468625 33.353435392000826 15886 1430 727189 WRX_20200713 27447305.70939692 2958.3214206554085 0.1411006549782677 1.5192718574475499e-05 8402139.725317039 904.6828612512356 None None 21406 AUDIO_20210401 488809484.25153315 8310.295589038213 3.1450131829721184 5.352154608280289e-05 70995984.77565551 1208.203161575716 38813 4094 43135 XTZ_20210519 4714919723.288247 110615.69668331923 5.723557371617932 0.00013378775252947673 420163741.5237537 9821.298018534371 115604 46318 87161 REN_20210131 517889046.3193727 15138.995319934344 0.5871049842894229 1.7184667343938553e-05 84717181.80787499 2479.686983830163 None 1005 83739 XLM_20190906 1188106661.9921188 112414.2752851705 0.060466861655170866 5.721119613923672e-06 126417196.70146352 11961.062370170832 275713 103528 66255 ZEN_20190213 26822645.63185968 7381.869758215242 4.633077321106568 0.0012750295901120179 249405.71335527734 68.63681359736586 24945 4264 232878 ARK_20200208 31364525.23160653 3202.1020524356722 0.2198129215886774 2.2421593306995806e-05 1329437.5981954036 135.60671928807147 62831 21768 83344 LUN_20190522 7302485.673602385 917.6361629992352 2.6932531283531573 0.0003384587604534359 1267019.0759431396 159.22517694309394 31580 2233 1883095 ZEN_20201130 145292978.01043534 8010.419748337171 13.83575750399951 0.0007614724840285324 15526962.32994961 854.5505781946812 78010 6207 249437 KNC_20190227 24872167.215461683 6528.254550799717 0.16097343150205062 4.23529859747525e-05 5986369.19017567 1575.0463165592068 93229 6568 205097 EOS_20190904 3428541749.1338415 322615.23186741763 3.350553462500854 0.0003153369334437285 2297189879.5093946 216199.747370029 1290 68095 84416 PPT_20190923 13886216.605217865 1382.417290358635 0.3832713258656239 3.816038368572289e-05 1846186.6310017852 183.81544728232717 23984 None 830282 1INCH_20210204 483329713.8624212 12895.894746768385 5.0240574081976135 0.0001339392600819013 382688262.4689196 10202.308324240274 None None 12553 BEL_20211007 91874474.08254926 1655.2288152536526 1.91468163097339 3.451444100225247e-05 11362479.671828058 204.82237251799947 34550 None 403536 BCD_20200806 156571607.38675523 13365.634380696189 0.8326722303512902 7.105439538755366e-05 14891116.790512782 1270.7032390751745 None None 3244311 SYS_20211221 451172900.6937853 9561.461004443348 0.7190895842994186 1.5252496750144263e-05 17824688.969316956 378.0766910171737 109079 6632 107700 MINA_20220115 1207749772.7763398 28016.45111423245 3.465789134256639 8.035459071116551e-05 42310929.746388994 980.9821978996969 None 12081 65059 FUN_20190205 23135957.908558086 6675.785530798763 0.003937846426065864 1.1365382742606972e-06 1582587.392211788 456.76518304653615 36473 17869 509158 DNT_20210909 134235380.14396796 2896.3067005528005 0.17825127781330571 3.850175233766748e-06 9782670.05650928 211.3027992491174 71108 10271 432268 DASH_20200308 828344539.0180727 93067.90405855571 88.36580315895515 0.009928260165997698 1492801887.6558688 167722.4105605603 316922 34149 59708 LSK_20190726 213656482.07705674 21568.780027529305 1.5931501812763995 0.00016110899387073943 7680255.994257426 776.6739949859485 182627 30686 196756 HARD_20210707 47207281.82243975 1382.7857128855596 0.7126560627794755 2.0863892696892722e-05 3917735.8616413046 114.69659054503285 34875 None None BAL_20201014 125876143.12605348 11017.826437455864 15.33662846691555 0.0013422368885288782 29095566.64980878 2546.3968781841504 25773 None 55855 OAX_20200501 1907807.4071017709 220.31291317690656 0.03637484620421566 4.219964604697007e-06 96023.99444050748 11.140056935652446 11843 None None SYS_20211007 188025369.9032203 3387.2823991467167 0.30296427467427356 5.4612957135434865e-06 3782511.2400057428 68.18431791564485 76543 5788 310151 YOYO_20190821 2348790.898522057 218.3012827428414 0.013429811155485263 1.248193274284787e-06 1141760.0120613724 106.11743913615942 7559 None 968977 OAX_20200417 1742530.088993518 245.40893372501264 0.03323759613656432 4.6895401155365374e-06 86335.32009961273 12.18117415385 11959 None None UNFI_20210916 53320218.67542748 1106.3798446188594 11.466020820280567 0.00023789367565828616 14582695.822164118 302.5575449859045 None None 230531 NANO_20200903 141028140.62527853 12361.880280618021 1.0586933833128223 9.277915518008223e-05 10861216.48916737 951.8284575839031 98797 52571 201446 FRONT_20211120 55158069.912203975 948.574820286584 0.9318278990899038 1.5974822876550102e-05 8753095.859224642 150.05899277017343 84954 None 315745 GRS_20210115 29304975.66879725 747.0179450063406 0.3819425308474976 9.736159747370596e-06 10620865.347484946 270.7382219230107 37593 106776 4269637 CELR_20210617 214983938.08608583 5620.634080985592 0.03842112777648332 1.0038791060668185e-06 41235210.35842944 1077.4063258610117 55938 None 143745 CDT_20210304 11682538.152460499 229.7779546001999 0.0172810414551323 3.4061948131130394e-07 522626.69389940193 10.301279228896627 20070 302 521733 TRU_20220115 152313881.0426787 3534.381616566472 0.27048159793885324 6.27123684466265e-06 4874715.401829811 113.02245723241609 36924 None 102903 RVN_20190522 200669548.4515539 25217.96630055106 0.05609549681192765 7.049776495824449e-06 48568064.99392388 6103.769865695086 24354 6482 170444 XEM_20201115 1240022571.699201 77040.01930677875 0.13769449192283392 8.559863956837484e-06 24380982.59517286 1515.6589870396533 212032 17790 137047 VIBE_20201115 2921677.880967088 181.51776064 0.015601579511635065 9.7e-07 34466.65045993439 2.14290168 18588 None 2184803 MDX_20210826 1082506498.121391 22084.326258119512 1.6682668592459349 3.403879419672482e-05 126384899.82657227 2578.7178897235285 10820 None 93491 OAX_20200316 1289599.6862573165 238.63799107611513 0.024551405935037 4.568889346950077e-06 128617.55008078826 23.935059195788 12041 None None PSG_20210610 30716502.689729515 818.3295829814227 14.554429101649582 0.0003885983910624425 6082796.240337582 162.40862596856874 9136387 None 40124 ZRX_20210128 435938260.2114791 14410.60066014097 0.587712234939778 1.932811317335232e-05 195820567.5099107 6439.957968357524 None 16393 88733 MANA_20190515 72107983.47147505 9028.093757027356 0.05442411452681425 6.809686567933355e-06 15876168.968408093 1986.467497255161 44420 6217 121517 POA_20210823 12054836.479799313 244.33268657819028 0.04094673628483128 8.3e-07 406109.1621519904 8.23192848 20010 None 244986 ZEN_20210708 724126446.8628693 21312.025653640914 64.32045849437213 0.001893083472046447 40142207.35779816 1181.4677796048065 115447 7412 1147969 ETC_20210324 1426246034.228256 26147.17348711305 12.279729876404014 0.0002252667624436534 1447675071.1397214 26557.023617650564 309966 32032 133346 UNI_20210115 1455037823.3210673 37220.14825332429 6.829704203290314 0.00017409711090036515 517580677.1981703 13193.734000170083 165142 None 5230 AION_20200320 25949842.89764724 4196.145340426574 0.06474659189781647 1.0476759943009467e-05 3861001.649181475 624.7554694751763 529 72542 244642 ZEN_20200314 52198934.29953263 9481.212569911197 6.120695714075092 0.0011002391813479616 1714711.468383622 308.23174853864526 None 5077 41227 NANO_20211125 681385169.5397402 11910.778884141466 5.105664146857405 8.927136037516492e-05 22819701.41353329 398.9972175892292 None 117267 80360 OAX_20210128 6430679.484666667 212.4664697249661 0.11452118133153304 3.7662621635717446e-06 445646.5352776642 14.65599345577969 None None 1543553 REP_20210916 175908338.32426113 3650.1224148703604 26.71692912465072 0.0005542196943037516 20370434.65674615 422.5671302125744 154079 11479 202540 APPC_20210206 7192283.772810584 189.76498393575147 0.0656265025975069 1.7197014231349967e-06 5089614.954013629 133.3701741399656 24303 3121 1221759 QKC_20210125 42297285.911838785 1313.6085494800238 0.006465699405068057 2.004012106191909e-07 2593510.7775808657 80.38460606036384 63203 9202 334407 CFX_20210618 273444091.92781156 7193.715724571668 0.32508961434399886 8.52031703624466e-06 2890258.192340954 75.75116222965528 34431 None 134840 PNT_20201030 12279192.836518284 912.1308732180017 0.4182890568422029 3.1107305998101646e-05 1584438.8579924093 117.83149375922132 6472 100 343871 REQ_20210527 60837201.34886096 1555.0766443159653 0.07898940267083425 2.0149950881691116e-06 1025922.5053650169 26.17096394268536 43049 27738 387593 COMP_20210710 23733.840699490527 0.7014335269638936 2.58987067281399e-07 7.605e-12 0.5195261875344734 1.5255575105249438e-05 2538 None 3613749 ANKR_20210902 814391426.3350363 16744.881813066135 0.10629703690738802 2.1846987805281765e-06 62209401.56725675 1278.5756564388982 121473 None 5363 IOST_20210614 629421030.1477938 16171.97715552369 0.028074807783501396 7.191740654277616e-07 108715016.01660588 2784.8817575040825 246230 53562 156257 SAND_20211125 6605387993.36225 115463.84022939415 7.42698072777764 0.00012984471105825088 6427538721.6277 112371.62700638892 382514 None 8183 REQ_20200309 9355414.589109711 1158.0638353320273 0.011973410844280198 1.4883837756200662e-06 86369.82714318027 10.736410125309384 39777 28287 787523 NULS_20200323 11545630.938962776 1978.9351361060055 0.13719747032358248 2.3529422090328443e-05 5779282.817172784 991.1493591239134 22700 5183 563630 ARPA_20200309 0.0 0.0 0.009785522390910703 1.2164130131353512e-06 2003240.2263692566 249.01761831899398 12246 None 2543726 GRT_20210203 930576746.9934144 26130.129182521738 0.7574952274867071 2.130737780301078e-05 391013762.11637676 10998.720062215083 49665 4701 34817 EVX_20190922 8860311.077936748 886.866076356628 0.40629790473327576 4.0680046010919375e-05 808487.322021149 80.94873509292724 18272 2905 454708 VET_20210310 4191121360.6903353 76684.43260668856 0.06464382064124702 1.1806361584098973e-06 826063849.6037198 15086.99269818736 188547 94599 59007 DOT_20211204 35994478947.066925 670436.8681380432 33.797058582536444 0.000630262778536289 1176870278.2351947 21946.807285784293 971157 36091 13319 POA_20200701 3294086.6500893612 360.0273725418036 0.011893414538046522 1.3003713787662154e-06 59693.02878119278 6.526561896133196 17197 None 598130 GO_20210523 32236284.15656572 857.5913657388913 0.029838189313742797 7.945234707135079e-07 1643600.14503577 43.76535311737521 None 1062 97348 STX_20200322 51560889.86378307 8368.04433495305 0.08697614975455396 1.4123176993140257e-05 333013.23138773046 54.07464944377161 35785 None 40997 QSP_20201015 18042345.304637123 1580.6459226085815 0.025473648974463876 2.229892093527953e-06 276878.64639808476 24.23718349454901 57448 8210 215964 IOTX_20200117 19263960.306310937 2213.226322505461 0.004449659363344548 5.106605644185979e-07 3673313.5207572198 421.5640350470351 22194 1790 516890 NEBL_20190305 16234299.029742807 4371.973405431709 1.0906797341351888 0.0002937252038259343 153762.1797741829 41.40888125211448 39635 6168 588480 VITE_20210112 7979887.530770315 225.4032260740386 0.013904949597964737 3.9117383724759045e-07 916328.8859337103 25.778150720083474 None None 1009411 WNXM_20201015 68091922.12381808 5966.163672959102 34.0312975125886 0.002977880589169473 10119628.571137011 885.5097423319339 13949 None 71317 DUSK_20200905 19010277.576581426 1813.178636918916 0.06620878081707003 6.3144671801040625e-06 1610059.8603789196 153.5547101290896 18367 13345 627816 1INCH_20210125 237006704.25547394 7352.397071290344 2.4728363633578 7.66248599528074e-05 298082838.9804503 9236.581979164059 None None 17332 MITH_20210902 36395880.20608981 748.2061415512609 0.05884073942880103 1.2093985993823286e-06 8954990.594449649 184.05875227849788 32970 2752 784848 AUDIO_20211230 842033161.9269102 18155.33046757644 1.6627038944187278 3.572944904907491e-05 20782393.206266113 446.58791121717724 None 8894 22668 SC_20210127 200936698.92557788 6166.125997770927 0.004422436263288071 1.3577525429771234e-07 5953515.490167689 182.7816234126772 108299 30222 141057 LTC_20200330 2405018605.650292 406445.3084279344 37.34894252471797 0.006311927245906523 2140130654.096888 361679.55696346454 133352 212843 131624 POA_20200605 2664397.8771433295 272.98259366496154 0.012023349849584402 1.2299929357462652e-06 122310.45446808847 12.512402686915424 17199 None 556747 DOGE_20210704 32206556133.579597 927225.0878992343 0.24719114889381266 7.1166204113952105e-06 1227580789.3108463 35341.98753046406 1927895 2105428 8998 FET_20190621 0 0 0.19250891484660787 2.0142342396822725e-05 34447294.922745846 3604.2445594332225 9797 275 385628 NAV_20201124 7705793.349060803 419.96570179876517 0.109724341442817 5.979976099937374e-06 101533.29706655169 5.53356421940565 48108 13707 1269196 ADA_20190904 1450986674.4294012 136559.43518082701 0.04659907826217568 4.39105929512944e-06 90249150.32384387 8504.231954491588 154473 75230 100209 VIB_20200410 2248301.707207568 308.347744133051 0.012315151186581014 1.688985546230847e-06 463652.1582042397 63.58848395941674 31310 1104 None YFI_20210710 1199690405.5606112 35371.74017833328 33722.494724850796 0.9922768398021248 187718142.1373811 5523.564207613075 None 6767 17976 VIB_20200905 3320729.5689551164 316.4906532667249 0.01805959979530614 1.722413441364378e-06 483103.39227511233 46.075427243944404 30658 1099 None ADX_20210916 71518198.19549893 1484.012530567618 0.555072059926432 1.1514492026149084e-05 2663012.878419484 55.24190959667021 92982 3904 10547 LINK_20210902 13300469954.937881 273423.6196364183 29.6260220707651 0.0006089262294368035 1771226269.7319648 36405.36455859888 451829 65205 30618 ICX_20191024 71256453.86302295 9548.235463051873 0.1424063743331176 1.907696106993459e-05 9049060.35784496 1212.2250353926097 112899 26418 151226 1INCH_20210210 494584639.3044882 10616.351980063308 5.1208519040044 0.00010990239709139403 343626757.9427405 7374.828468114777 None None 12553 ZEN_20190625 69173909.79606964 6265.241438290487 10.264346719387198 0.0009293433667654371 575502.4955082329 52.1065238128923 26056 1684 240249 WAN_20190122 33580255.25643204 9509.169910434535 0.31633977033805555 8.958027872632756e-05 3473016.4564445745 983.4798256853909 109229 17317 539346 XVS_20201115 14370577.097142776 893.0621624420102 3.8711838908114897 0.0002406545606473317 4727570.320964324 293.8923571214138 11286 None 227768 CVC_20200329 12040237.378265426 1930.6130956118184 0.017879714903017967 2.860457266337094e-06 5235794.667894738 837.6401404644627 86346 8058 104560 HNT_20210314 514620317.81022614 8379.054048825396 6.981725029935967 0.00011380954852654522 20894510.021176986 340.6027510389273 None 5664 41694 CVC_20211028 285480279.8705006 4878.248928516845 0.42043030081048377 7.184630046201937e-06 47102566.67932126 804.9241816422453 None 10114 169162 STORJ_20210210 88540406.30483298 1904.1772474817292 0.6164767959313066 1.3230665306116714e-05 61198553.8834759 1313.4275109696794 84148 8754 105291 BRD_20190601 28486261.725385085 3323.3349063403366 0.4753918236775609 5.5432981244273505e-05 243982.31264230897 28.4495152987924 169 None None LTO_20200518 7769197.947557085 803.4300503224978 0.03686112429360119 3.7969187841815047e-06 898409.2128154159 92.5415836166649 14655 433 1128557 CKB_20210813 369549901.9742234 8312.914380197017 0.01349048019411248 3.034436558732249e-07 18152124.019547664 408.2987999759704 51115 5419 118997 HBAR_20211202 6413048891.983574 112195.85437843732 0.3521883336867179 6.1605337290510485e-06 72181247.7986899 1262.60573998562 178654 16034 30146 ATOM_20200318 338405272.8638089 62295.424783778006 1.7809116369274338 0.0003311079170689432 140409435.7585473 26104.987382219308 31701 8272 84919 XMR_20210221 4598354955.1666155 81787.42312158477 257.6874098939399 0.004583288900397047 1043210638.077287 18554.789852727667 356785 199642 51844 BCH_20200807 5706700189.437932 485007.4545249083 308.7589760475576 0.026241155144562163 3214310111.2812996 273181.40315336327 3627 305586 162707 CTXC_20200425 919586.4407148426 122.663462278082 0.08952948051980145 1.1944806823945981e-05 10215567.24895959 1362.9362828578398 16559 20064 404295 WRX_20200422 24295766.966309365 3547.7240622122963 0.12998008781536124 1.8987783499852687e-05 8167766.430724788 1193.1656861493389 24021 None 29308 OAX_20200306 2695920.9843419236 297.6899413757574 0.05163038473366373 5.699479767293526e-06 272518.6867039114 30.083346252224 12055 None None ARK_20210127 64597498.63562819 1982.2974989533675 0.4168546885483986 1.2793939501725146e-05 2237565.5525207403 68.6744784130473 63335 21542 90989 FUN_20200113 17124683.648866113 2100.6487342107225 0.0028533133253132495 3.493811673472902e-07 380335.594419001 46.57115388729616 35229 17145 368144 ZRX_20200903 401269092.99830586 35173.14340678324 0.5577705230988714 4.888051510772022e-05 117272443.79126585 10277.232702456948 158199 16293 45992 EVX_20190520 13370777.788796656 1635.997152452667 0.6940504815453151 8.48372242693837e-05 1702678.2882586087 208.12679140857946 17206 2396 688933 YFII_20210603 76388850.541589 2030.0537158450602 1924.697861648476 0.05111324450053687 25660262.763545405 681.4468445752673 16687 None 469501 NAV_20200313 2895083.0429799655 601.5745194821985 0.04309083815520582 8.992107995896591e-06 138809.72950398762 28.966530520601054 49707 13983 1136873 COS_20210519 73234233.73879859 1718.132282523063 0.024436599503224552 5.712038011903725e-07 15102055.059290163 353.00947885627625 25386 None 187764 FET_20210422 328303685.5604886 6059.050583231706 0.4760326305167334 8.796154680840366e-06 38409113.75696809 709.7255190123125 50145 2210 124282 YOYO_20211021 4171559.2128411825 62.91887038100939 0.02391613440013088 3.609370798948503e-07 451623.6565608392 6.815805643307139 12251 None 1512285 LTO_20201124 30819964.989198525 1682.8674642869596 0.11358580963640902 6.189134143026646e-06 4900964.361653302 267.04679010134316 18096 604 1429266 LUN_20190419 7512107.754961278 1424.7298147224064 2.7789333293149983 0.000527022639534862 1616465.8923230693 306.5615545012644 31789 2241 1420358 WPR_20210420 26558593.44935594 474.90486472695335 0.043622951553629 7.800394981786586e-07 976492.1435095862 17.461047784953337 33345 None None 1INCH_20210131 441493489.5668087 12920.098970446406 4.580521819647275 0.0001340533285101238 734781618.6107141 21504.08306763782 None None 12553 ARPA_20200229 0.0 0.0 0.009585653304266728 1.1001440424394053e-06 1732777.5362684343 198.87062705992318 12132 None 2586672 ICP_20211221 4184509228.5276895 88719.16675701157 21.8020580229524 0.00046259768622879235 234145210.1550438 4968.1104575195395 None 25541 38411 PAXG_20210429 108292034.91621494 1978.3740206929876 1800.327668161942 0.03288203967843924 8255271.864883629 150.77820655533534 17986 None 51510 QLC_20200325 1994504.2476368549 295.11738012395375 0.008308054216697298 1.2296557245984226e-06 180819.42699420353 26.762661595920346 24496 5664 940522 ZIL_20210826 1402989446.9727802 28622.531816128652 0.11308141256131612 2.3075881102232343e-06 143093347.69351283 2920.024611565096 315389 35911 59302 PSG_20210420 0.0 0.0 30.840303295881316 0.000551406205199189 35167558.13455112 628.7749374917603 None None 26882 STEEM_20200318 45238846.930142716 8327.80518575349 0.13176550434768855 2.4497903647467522e-05 1681542.468744219 312.63315525831086 10936 3833 219600 QSP_20210401 87638941.44892873 1489.9689544465903 0.1226902919723936 2.087296967861948e-06 3175234.4615382575 54.019410641804086 62337 8351 181433 ARPA_20210422 98143127.3019291 1811.3131327894728 0.09984310194345698 1.8441350346552309e-06 27734258.442039207 512.2609039341735 38616 None 501259 STPT_20201129 13766074.924044877 777.6989262927348 0.014950189621099695 8.439615211917947e-07 1188663.9550890117 67.10193416590162 16567 None 1434198 1INCH_20210104 89104867.59637001 2669.474970027346 1.1157015423813803 3.3573495355976905e-05 72161297.38251399 2171.4651190514783 None None 25684 ETC_20190810 652402380.7584574 55016.62805572921 5.800086347268646 0.0004889756520522634 589087528.6181704 49662.96037257675 229427 24877 465281 CELR_20200317 4225542.291410958 837.1977078591415 0.0011297717040358295 2.243498496719886e-07 4038974.2700767075 802.0587407914066 19265 None 1309255 RENBTC_20210203 569070302.1675316 15979.317649367866 35480.238844477855 0.9982789723905864 25116829.995286193 706.6920644843916 39669 2484 83739 ZEN_20190730 49036757.727000415 5166.382548657237 7.027627651536753 0.0007388212266483249 1781386.969383254 187.27891845084824 26391 1743 256228 THETA_20201130 618604617.3500115 34102.16945086525 0.6188787634488762 3.406095757169025e-05 11275131.579607574 620.5444442915726 74699 4533 80855 TRX_20200530 990228142.0402292 105066.93008794582 0.014930610863729665 1.5851630261277887e-06 1251015680.1730366 132818.66491703846 508703 72891 68608 TOMO_20201229 54786505.388419725 2018.927685594082 0.7144085072909387 2.632041001212773e-05 7332186.100411885 270.13416340725666 34992 1698 137928 THETA_20210626 6781768323.839761 213140.6729434049 6.774883539673381 0.00021287545911435798 374066997.9982173 11753.660925991224 177872 20411 17272 EOS_20190719 4210081942.864854 392868.79636610724 4.104349229477149 0.00038467729108057516 3675655758.1437573 344498.29216106434 1222 67308 92954 BLZ_20190622 13125955.009534111 1296.247864421908 0.0633116392576124 6.2410606582986524e-06 534715.830181097 52.71059113686577 36550 None 922433 ALICE_20210731 258710470.93576062 6195.277551026423 14.860848313953582 0.0003557658454597841 386977242.1560498 9264.160619961005 None None 36624 XEM_20200506 368215456.1209537 40921.24586635477 0.04091282846242961 4.546805096766842e-06 16976269.30878635 1886.640223082061 209890 17933 220476 LUN_20190511 6070689.7764468985 952.7760680539286 2.2456124078541264 0.0003524419529110959 1235901.2464044027 193.97089513958565 31680 2233 1641403 VET_20200629 558839339.7424166 61277.32998183455 0.00867459898041588 9.511411541329417e-07 200304019.81832963 21962.67481846634 124019 63449 234168 ADX_20200701 8903230.689111732 973.4787849843063 0.09647456163760582 1.054804821866748e-05 280646.96554601094 30.68454186008053 51420 3744 19706 ARDR_20210618 165187521.25038832 4338.608376260877 0.1656980213057867 4.3411598167840475e-06 7374928.301337874 193.21740924321657 71942 6941 None BTG_20190616 470172984.29188085 53280.755551331626 26.924729106899967 0.0030505029808255636 28701344.75958186 3251.7889927579395 74096 None 408265 PPT_20191012 18051932.98535197 2183.270583392472 0.4983019042334063 6.026655926786539e-05 3414829.9063086356 413.0027342657538 None None 886383 BAT_20190901 236039834.38991433 24590.28954017432 0.17715340262172952 1.8454899739417576e-05 19455855.370012954 2026.8075853156465 105579 29934 30571 ACM_20210703 12021849.296639752 355.4844485799019 6.008545264395175 0.00017767186623092346 2613457.853575011 77.27959326728585 None None 41859 POA_20190819 3476146.664347723 336.9390116275875 0.015788637078236505 1.5303749484016429e-06 342260.5496470571 33.17493260567978 17749 None 702581 MDA_20200312 10084408.905976571 1271.4022793589522 0.5148213188491474 6.485379073287708e-05 665372.5426365385 83.81923991806708 None 372 1557783 CTXC_20210106 792133.7876301232 23.278602268186372 0.07883852050604825 2.3128746512618102e-06 20071117.002267074 588.8235527389443 16592 20068 682759 LSK_20190520 272003357.3876541 33238.491736303804 2.052229840558195 0.0002508048754219562 2283817.0669414494 279.1073609986059 183388 30402 175336 FUN_20210108 73984538.5177927 1890.129020585783 0.012394825648593368 3.143525266813074e-07 12123681.49432738 307.47587892482585 34296 16523 359571 BLZ_20201018 21860152.249744922 1923.8226077325062 0.08875997028413296 7.809084306433644e-06 4123385.2000043695 362.77459931158893 42130 None 200654 HIVE_20210218 109402390.01402321 2098.8166243727637 0.29472567995038246 5.652528053864078e-06 27336637.71517983 524.287912778373 10788 118 135333 DEGO_20210610 36192210.22220441 964.2019472810263 6.655641948560407 0.00017770341485982008 9959478.882565409 265.91475643291585 111600 None 76234 OG_20211225 5784588.5748721585 113.68399722290413 4.176568392706396 8.216290051265203e-05 832737.228018855 16.381895275168453 None None 169740 WAN_20210617 128150656.29494031 3350.426793203445 0.7309303359526093 1.908489393681243e-05 2269422.5359454798 59.25556276150993 121844 16573 180661 RAMP_20210708 49426074.905032486 1454.6580771857305 0.16750964200304566 4.930153517362276e-06 9145643.098091377 269.17509911325226 30258 None 114205 BTG_20190314 220772603.44283113 57085.58437640842 12.581922358031788 0.003254678272777795 12093867.023772743 3128.428638808928 72806 None 404455 ADX_20210731 58097964.28658987 1392.3957342011647 0.4655810491873212 1.1145920616029379e-05 25002374.366439868 598.5520252317339 92990 3888 14800 POND_20210527 74559922.3152904 1903.0353126966888 0.09852947019178916 2.513284023315406e-06 17752523.510426935 452.8303422868224 17786 509 90153 ORN_20210523 191931118.08389866 5106.0290089548735 7.488461607816935 0.00019939415788869098 10810043.70796757 287.8374324093656 None None 50279 MANA_20190716 56812811.81820308 5187.427118653353 0.04273964873500965 3.9083069938402615e-06 15545625.946908507 1421.562422953625 45448 6321 146197 NANO_20210125 454946008.5561783 14129.061794575731 3.4011151524684125 0.00010537976322340481 73381272.6458752 2273.636966052786 None 56905 248633 TWT_20210707 118760976.05931954 3477.5589256465023 0.34230581805507 1.0021428611115366e-05 8545984.90087009 250.19433815746956 915137 40165 2918 MDA_20200412 6117190.216665629 888.8188161878168 0.31454892006425567 4.570731874566654e-05 138533.66708478832 20.130421929781157 None 374 1850910 SKY_20201030 8018993.754496791 595.3206697901034 0.4205151357882919 3.127285495956551e-05 278502.20184059266 20.711642038172233 17298 3807 1179011 EOS_20210731 3916035145.3046455 93861.92524526479 4.06981345191048 9.740648672899728e-05 1144393867.2383053 27389.80234820498 None 91785 58302 MTL_20190530 21320173.126155145 2465.540961184329 0.46820618265481545 5.414503507004959e-05 2538626.892508817 293.575880064785 33317 None 919877 POE_20200506 2484064.256290175 276.9969936164973 0.0009901818260725707 1.1004283846195125e-07 17405.027288348138 1.9342898 None 10332 1011278 YFII_20210617 71475192.2349082 1868.6859576965776 1801.9992353112596 0.04710781340259523 20511448.494280536 536.2097104989115 16819 None 423261 GXS_20190905 50784751.62651591 4809.3050681239765 0.7838931166733917 7.421033627395197e-05 3869766.5109655014 366.34672249594405 None None 606832 CVC_20190818 11843062.585304113 1159.3310653698336 0.03577407170420184 3.49989308934549e-06 3926601.9022885053 384.15215847001974 88364 8140 181988 OG_20211207 6453627.569124471 127.8587021153259 4.6608774319112785 9.235121479820496e-05 3924722.415155369 77.76494621029174 770970 None 168708 WRX_20210511 1002244697.4414529 17950.606434380767 2.28539147813351 4.090156653049746e-05 51747150.74929743 926.1168379190152 160094 None 2365 CTK_20210727 51911041.30598454 1387.0532811255146 1.0204191556342728 2.7347043760346425e-05 17314141.807986442 464.0157832018905 None None 108429 BZRX_20210318 81753886.00986564 1389.1553478232754 0.5805256877453794 9.849054142254517e-06 74433287.6075241 1262.8166076158998 None None 167690 BLZ_20190704 11299528.08759948 941.5163097070691 0.0544383628453356 4.53599531726316e-06 641429.3611348891 53.446143976246546 36562 None 875271 BTG_20190810 258251307.04803205 21778.148768019062 14.78582121799385 0.001246517058250592 11648781.688986039 982.0492801229999 75033 None 277231 UMA_20210115 511140542.6303478 13087.172864407163 9.188382709323658 0.00023466349627764723 21638610.069041077 552.63173662078 17252 None 192669 BTS_20191019 69068949.47887181 8678.68257233843 0.025487960013458273 3.2026245663534343e-06 11864965.030364064 1490.8618997010333 13539 7120 129148 BCPT_20190201 2385903.396176198 696.1954740648524 0.028444549336139338 8.29011521358252e-06 340300.4675172056 99.1799887428461 9916 1326 1839639 AVA_20211104 162048505.82481688 2576.427628454821 3.0317848036824278 4.807365116398424e-05 7928178.306421856 125.71356575369748 None 10869 48710 NMR_20210401 294637385.3998705 5009.195111295909 52.182001831744095 0.000887758374761011 20825730.21812358 354.3025518887942 None 2891 982791 SNX_20210704 1151808184.3227801 33225.01967132217 7.294116066742054 0.0002102118839268669 40270559.32134503 1160.572448295256 None 7003 47664 DASH_20190421 1081053486.9538748 203582.3826851914 123.23940027575885 0.023209044354295275 294177770.43366635 55400.991134047574 320728 24242 94657 FTM_20210114 60566693.15405299 1626.5804409031675 0.023937401580685816 6.40511469162865e-07 10263282.945425725 274.62255732522436 28668 2850 142400 AMP_20211225 2385038496.0730853 46907.04672761287 0.04959402040696771 9.756307527098051e-07 20463810.903029032 402.5711783557748 None 42375 76901 BTG_20210110 247988705.31803846 6130.752923521363 13.771916149916263 0.00034187637209330605 119159911.46266353 2958.0457640284617 None None 356122 DOGE_20210707 30498108425.520077 892858.7146675157 0.2339601201580301 6.847109541101026e-06 1337006929.6571624 39129.031470791604 1936885 2108335 8998 MKR_20200806 535586563.1354478 45720.001867258106 593.6392473115559 0.05065557896587266 11049202.200915843 942.8347891975558 51247 15293 31492 REP_20200314 86870188.22021522 15615.542617347035 7.897289838201383 0.0014195947833951848 16980079.7731868 3052.2917559702964 130565 10108 288679 GXS_20200905 43372780.70542382 4134.175029007106 0.6201709449991016 5.9148086542190925e-05 17366128.041561153 1656.274374973364 None None 737078 IOTX_20211207 1128389663.4492095 22355.706932072084 0.11888614133775065 2.355608487753166e-06 74797885.59645268 1482.0443509595689 177903 15761 48469 ADX_20210523 117197425.53677443 3117.8376434150396 0.9760919161823547 2.5990254853677184e-05 6448762.864004752 171.71025345844635 58497 3824 10793 WAN_20200417 14643314.908414347 2062.1447610754954 0.13783730965607102 1.9453385279659655e-05 997623.7371121439 140.79757484095418 105141 16295 925023 QSP_20190520 0.0 0.0 0.021864086652480623 2.671557864140355e-06 504773.2905263766 61.67790474617178 57105 8597 772894 GLM_20210429 462980868.4232569 8458.141200090251 0.4635731819404145 8.466218937672957e-06 10593962.445918635 193.4771228767088 157448 20980 153882 MANA_20190906 44390862.126774855 4200.076290394923 0.03344434935568377 3.1642185173773433e-06 19056813.4974014 1802.9928317453184 45697 6365 122199 CMT_20200901 16139090.582518663 1381.4190831210271 0.02005479275816629 1.7177344332613196e-06 13499067.187746178 1156.2229939203737 282730 1633 830307 CVC_20190830 14012538.964461567 1477.4408554003246 0.04091908766838649 4.312196845672765e-06 4161741.6842049826 438.57892210530895 88278 8157 181988 ASR_20210128 0.0 0.0 4.123090537129261 0.00013562386478893312 2067545.1373733226 68.00929051423948 1935485 None 205258 VIA_20190324 11750279.882937433 2936.4902856353624 0.5083778367759987 0.00012692871027964402 308216.9362135538 76.95374457712136 40992 2230 2390217 MOVR_20211216 491606453.8887368 10077.261612955524 194.66244977546344 0.00398332426627667 25515349.58276872 522.1135934167504 None 6516 15676 VIB_20210110 3923189.176109953 96.95106031751679 0.021658408816854335 5.372967875100658e-07 1295374.07074617 32.13533979902226 None 1092 3160516 KMD_20200721 82068393.8262446 8957.683969268015 0.6785488731849623 7.406733038220828e-05 5214900.623373899 569.2349993432698 100969 8378 296104 PHA_20210408 143372810.4390332 2545.448788853889 0.8050836519028726 1.4327109762713685e-05 31644968.58673897 563.1476149195648 None None 127612 ATOM_20200430 547465272.433097 62671.123314614284 2.929493322965155 0.0003341064594094936 223387225.19479343 25477.141149992447 32720 8382 86348 ANKR_20210128 64535685.56765702 2133.325009355166 0.009964629006060793 3.2846736678891606e-07 14569845.612998553 480.27064731781326 33398 None 5258 OMG_20190723 231580074.49125466 22376.899780803007 1.6524523238566624 0.000159829318684303 114146073.78134914 11040.493537738961 289731 40627 None AMB_20190908 2331098.093355006 222.6569838225938 0.016122420500986313 1.5399092652405064e-06 81289.24650360411 7.764222738618029 19266 5607 670257 NXS_20200129 10454522.117090622 1119.1232672213252 0.17548947714840832 1.878102796311726e-05 106708.62689149477 11.420044883148066 22968 3539 570980 GTC_20210813 119351609.17905818 2684.510374214951 8.416714369396523 0.0001893198106214181 25810837.107722104 580.5712988172345 55338 1095 24142 STMX_20200718 18777761.18642873 2051.521910695361 0.0023841338197924155 2.6045796557269435e-07 2630696.5504005086 287.3940488860982 19764 79 227126 DNT_20210108 147505538.42339614 3768.415731945698 0.1969409282552758 4.99059488255725e-06 329666243.93028057 8353.929701081597 60735 6318 301062 GRS_20210210 36813075.33454056 790.4121727171232 0.4786867714845064 1.0277865884924058e-05 8719936.71054582 187.22543712264792 37240 106762 3797410 REP_20210220 209653209.80980676 3754.2339470830925 35.74281377834559 0.0006396840320732257 55359472.28233006 990.7605669383868 139408 10709 131610 GTO_20190201 14437996.69098854 4207.929421105167 0.024116524060310673 7.0284355441887085e-06 4275852.367569855 1246.1394804150011 16263 None 829190 ZIL_20190714 129161725.54977612 11348.296190009134 0.014066843180965507 1.235230661172827e-06 12654093.112645924 1111.1749524034497 65465 10610 184168 ALGO_20200711 201566399.3673491 21710.686053904363 0.2511494015871662 2.705131136271578e-05 80168901.0537939 8634.995306808456 19708 926 300563 CMT_20191213 10120955.687925728 1404.24274476452 0.012573021617189482 1.7466699171504269e-06 3067061.2592787067 426.0824325884787 289232 1646 796012 ZEN_20210506 1307401654.1235912 22837.63341502717 118.27135116325945 0.0020630703768638285 115217423.15159462 2009.7990786840749 104046 7172 756616 BTG_20210218 481565740.17705077 9227.144615613572 27.40624478178064 0.0005256229029861299 88465596.81935415 1696.6769502657962 84517 None 210051 WNXM_20210519 199646983.4528685 4664.5147657305715 94.54897084855723 0.0022068141208926853 21358836.23811899 498.524531711861 27991 None 115981 BAKE_20210828 498576463.5303324 10165.753696512138 2.8624636059155977 5.836393830767811e-05 98967171.50405669 2017.8820370715582 None None 12983 YOYO_20190816 2289918.868088326 222.55774121933553 0.013093195302808676 1.2725306614768309e-06 510327.3843793321 49.59883580707495 7573 None 968977 MINA_20211007 1175717123.2026281 21178.075569411914 4.573496122371509 8.243570745353044e-05 67022172.44700754 1208.0517951498068 137678 10629 72538 WAVES_20210422 1455217882.642038 26904.61653605821 14.552178826420375 0.0002690461653605821 405650623.3106907 7499.821571717026 178675 58091 111113 XRP_20210221 23657760929.564903 420782.5020296877 0.517678551092477 9.207552507793567e-06 6373516533.454249 113360.86460840671 1188607 268473 10253 REP_20210203 111641817.88134812 3135.2159038639156 19.069420310779677 0.0005369441065330658 19821511.93692364 558.1210043962164 137340 10523 129604 HIVE_20210401 277923227.8856947 4725.211381961358 0.7474980205402876 1.2720852799524058e-05 29131857.49469691 495.7632806825313 17535 154 120339 MFT_20190807 12533136.680527985 1097.5003785421543 0.0014098241122248716 1.2287424101443124e-07 504765.10048347834 43.99316771125539 18845 2175 955030 PIVX_20190621 48523818.391365565 5080.131776899905 0.8044100442624958 8.421655926901513e-05 16548767.033957887 1732.5494997047188 63012 8618 321690 ADX_20210527 126226956.69064002 3221.762423259144 1.0545585760863043 2.6900058657526227e-05 2799594.0458755884 71.41304974333757 58462 3827 10793 GTO_20190811 12000977.238208262 1059.1678718006117 0.018117693114174674 1.5998437222474184e-06 4904855.769524594 433.1126850395607 17439 None 944506 MDT_20220112 54040326.23734258 1260.5989154005615 0.08895354933484205 2.07917987449134e-06 10108276.157086823 236.26853013478922 43441 969 270296 ENG_20200412 10146426.043958375 1474.260905008125 0.122704471333616 1.782843932050564e-05 698504.7193749722 101.48977351122682 60895 3587 411857 TCT_20200907 8227643.055122269 798.9952529446256 0.014248200927531974 1.387474350456043e-06 3138337.2740639835 305.6078794081241 None None 525749 TRX_20200506 1047376790.0536395 116802.97402428974 0.015926249269899394 1.7699473264053444e-06 1884346854.9568982 209414.948958183 508202 72638 68362 DASH_20190811 886638220.3394192 78251.85384937796 99.03553919585549 0.008745119186168264 273190867.69056934 24123.528966728074 320484 29625 93403 BZRX_20210519 93882014.06387931 2200.2608789933006 0.6707983324206561 1.5679128170358658e-05 14940397.80488088 349.21436261408786 25893 None 131291 LUN_20191019 2330770.9684914993 292.86323285264115 0.8621768529529589 0.00010833320985199176 54103.97835715628 6.798208071950207 30626 2181 2505082 STEEM_20200105 42336057.501773 5757.485983899627 0.12641771940541538 1.719248737387467e-05 281832.36595068534 38.32848287365023 10439 3796 188997 VIB_20210314 14164154.74692989 230.620933672926 0.0778858883676273 1.2696228731010137e-06 3498015.685771695 57.02137856037869 30864 1139 None SYS_20190906 14513194.92762351 1373.9075037811153 0.025888350552075105 2.4491275736043626e-06 1379620.5769845915 130.51688207822446 60536 4569 689818 AGIX_20210804 191481261.0570525 5830.0 0.21177520646831657 5.5347460407912786e-06 1001240.6611733742 26.167429500948916 56083 None 210064 RDN_20190819 9403372.124606665 911.3976877314509 0.1858010273852576 1.8007462826790265e-05 237608.4914937228 23.028538313897506 25597 4395 818070 ONE_20200502 13284294.515654743 1499.166215097023 0.002536707776908038 2.872328749429056e-07 23875146.545093723 2703.396522160408 71873 None 228473 ZIL_20210916 1391179254.5953314 28867.162459010673 0.11136486703944729 2.3105659735372926e-06 100545243.53020945 2086.0835618798183 325044 36766 65956 BAND_20200310 6608677.104168528 834.7024991554347 0.3693484961867569 4.660444041056463e-05 2980582.8503241464 376.09032464137897 8338 1050 796393 PIVX_20200417 15964622.571858216 2248.217907284622 0.2527805323708666 3.5665167905322395e-05 190184.04661964515 26.833339941114282 63802 8496 261496 RCN_20190131 5610173.864745249 1620.0632186489136 0.011187579001170261 3.2326328279439546e-06 163048.6474938154 47.11264254627702 18127 1102 1836558 DLT_20200217 4635686.433024632 465.0274884172636 0.056411141520107295 5.670352598384388e-06 2423190.2734954366 243.5749905680776 None 2597 5142764 DENT_20190530 129433212.95630786 14966.998411835957 0.0018195127882505093 2.1041512460763565e-07 6589804.734021924 762.0691611529938 45204 9414 250313 RSR_20201101 108278418.3779184 7849.275112813722 0.011588080715357106 8.398089742910475e-07 62317326.075936735 4516.248288039336 46072 None 119364 WPR_20190626 8615335.28445346 729.8749491627541 0.014077879194286894 1.1905715194718137e-06 518046.39167983946 43.8113774942362 34832 None 1193640 DLT_20190401 9808912.620664487 2389.5189537986603 0.12204499675624472 2.9731005285026882e-05 774030.7768032058 188.5592505022708 14900 2686 1058682 SRM_20210304 270836456.52577376 5326.945754382265 5.365103472673338 0.00010588673083025388 177219745.83536154 3497.6435441839767 41189 None 88045 LRC_20190511 43841107.77040167 6879.934037925936 0.05544102229409839 8.701175107249008e-06 8429812.660752155 1323.0144944552562 35955 2466 903966 STX_20200309 64196716.84628502 7946.616947716454 0.11669728226459497 1.450633773788459e-05 479324.7915169371 59.583626773074975 35814 None 34581 ANKR_20210727 510461019.103871 13634.694239404873 0.07269187005970175 1.948215549249666e-06 240412658.00232854 6443.302093781632 116675 None 5363 LOOM_20200707 16168769.297318125 1732.1441371024164 0.019478545329348906 2.0847914033227308e-06 8432546.686830662 902.5366393420395 21837 None 624225 FET_20190511 0 0 0.10408942651341918 1.6336284747815666e-05 4621473.523994078 725.3158170943062 8236 185 174758 XMR_20210902 5431092673.198702 111669.3482785887 302.51783503546255 0.006217580136931018 259007176.92393032 5323.315494360948 436984 233335 48241 HARD_20201224 21158213.318780314 904.969665212798 0.529873567474751 2.2706039437580947e-05 7254334.457747732 310.8613344802699 None None None REN_20210401 906038479.4664894 15404.337982972826 1.026178586744763 1.7463413131941802e-05 172415446.95632812 2934.1502730807415 66026 1129 61660 BCH_20201129 5140979137.20916 290433.83659909235 276.2091558167961 0.015603289269798048 2803061054.6585937 158347.29427200113 None 340858 999966 REN_20190220 13314929.157773519 3402.114821181913 0.017672214082270054 4.514385062254021e-06 236703.1962866706 60.466072249339 5538 805 4072973 CAKE_20210506 6353164919.88109 110941.65102075279 39.02044625824061 0.0006806544947327096 553830995.2084982 9660.769990075227 570634 None 1709 GTO_20210930 21342167.22105697 513.7081304936553 0.03219155143190432 7.744493483261389e-07 4683288.738620838 112.66837882356442 13274 None 1451333 HC_20200127 65289849.89741721 7608.037954688098 1.4740781936751899 0.0001715765318357537 19179702.917823464 2232.4371409874843 12794 847 1039608 POA_20190430 6303043.98742979 1211.0335437742015 0.028628369156286738 5.5005068771608214e-06 251260.71608669776 48.27593528818723 17395 None 757661 ANKR_20201208 58263840.0708477 3033.459831403415 0.009255807092264447 4.821187309160775e-07 7131935.952122154 371.4900144240863 29581 None 5227 ANKR_20200305 7878075.175404751 899.9238411220045 0.0019737379409546247 2.2535294316631232e-07 2372397.6966532227 270.8702063269881 None None 5490 AAVE_20210813 5063854229.210728 113898.4996124685 391.9745417943881 0.008815874080882274 375549730.04181135 8446.464701512767 266969 12401 14216 AION_20211216 72009164.95810755 1476.0092804706787 0.14475973683661758 2.962155942980285e-06 5232089.299494145 107.06198250548208 1022 74010 309330 EOS_20190201 2373873095.280259 691833.2840394458 2.3063120644299504 0.0006721435331680997 762406489.5943618 222193.08459148323 595 62355 80265 XRP_20200801 11629863144.261322 1026830.1857133512 0.25923265617918223 2.288831030817277e-05 1847648958.4997876 163133.62415838815 953989 215868 27343 DREP_20210823 0.0 0.0 0.760572655853159 1.5438330548386816e-05 3231366.823526355 65.59124728028887 4111 None 303395 DOGE_20200711 446234010.2047529 48058.04217146875 0.0035442865960652725 3.8172782147944013e-07 277250306.0880675 29860.49589358797 148006 162082 117230 HOT_20190623 332684069.2257267 30988.776115101744 0.0018712146736853234 1.7444763900770209e-07 35182267.50347569 3279.935534510913 22919 6452 301392 KSM_20201226 451921193.22848225 18299.496841375818 50.291571102632844 0.0020367682826432122 59573232.76073193 2412.6681334723335 19424 None 222840 POWR_20210106 43719849.530092694 1287.000991123411 0.10109504216099661 2.9658111146882197e-06 10519424.94691651 308.6068986252447 81003 12568 337778 SNT_20200314 33398904.734512556 6066.447900507468 0.00933313327705182 1.6816204534763198e-06 18248612.912920512 3287.9891255161415 None 5609 203342 HC_20190419 63018835.9667268 11951.566956671613 1.433921869986375 0.0002719127608627179 5139716.1206989465 974.6377607331897 12718 797 924680 TRX_20200207 1491189243.1536398 153109.25076795544 0.02258290307834853 2.3190617986221085e-06 2499331017.3493133 256658.90095428718 496969 71840 47748 BCD_20190228 139093573.98664454 36438.110831915736 0.740832902820374 0.00019430906050374504 2081793.5836903465 546.0223943477786 20529 None 2421830 LSK_20200903 248099286.52069575 21747.081786709838 1.752687100835714 0.00015359766205558345 9805279.47335265 859.2908581288972 177076 31145 154777 BAT_20190909 233697382.85757226 22499.730398951968 0.17547987726648862 1.6884176554436574e-05 22437790.785935603 2158.9006501635763 105736 30091 30571 HOT_20190821 146519494.96170616 13616.36774586844 0.000824273511249518 7.667193498927919e-08 6655092.357648002 619.0406480729121 24153 6636 386677 FLOW_20211221 2644297189.4919496 56048.56410922468 8.322033641953276 0.00017657752783855897 48235802.47310874 1023.4708390353813 None None 178119 VIA_20190618 12739876.715054749 1367.902105846789 0.5504330493982774 5.910092728839547e-05 742080.7065811967 79.67846031360358 41066 2233 1573301 FUN_20200914 21789894.390907537 2110.4131660412327 0.003666955188172689 3.5496717270436763e-07 466132.72751271876 45.12239934751366 34221 16673 242741 DASH_20211007 1926897940.7781734 34710.39324177826 185.70792193576835 0.0033476088199814475 360420108.8404191 6497.006281025393 408979 42616 70180 ARDR_20211028 294340314.3737382 5029.648015843111 0.2874834349517307 4.9127337410216475e-06 9619734.357681297 164.38927539105364 74280 7364 None RSR_20210324 1066840447.8168883 19577.80161877054 0.0810946919198331 1.4876498818796386e-06 322761618.17009944 5920.933562713233 64372 None 95725 ARDR_20210428 395969209.0234493 7187.055323147012 0.39759119884485356 7.215080950122056e-06 18346027.46802177 332.9250589035095 71485 6764 None REN_20211007 1000008208.5658951 18015.17638614937 1.1347012008949653 2.0454354927698473e-05 122825552.77772631 2214.0784276290988 97237 1197 93086 LINK_20190901 649088568.3526369 67618.59650264877 1.7820111416008997 0.0001856905985783366 45877647.860850856 4780.5806000709445 32121 10505 94033 OAX_20200701 2476676.76216172 270.95066707101813 0.04732707816230896 5.177624950705013e-06 148791.09693290875 16.277879933355504 11851 None None BLZ_20191017 5428323.367975683 677.9568618314391 0.025774161410344425 3.219291737187371e-06 137446.4251613556 17.167586319619527 36373 None 563370 SNM_20200117 5177496.468628769 594.8398609030703 0.011856931014096374 1.3614969004753153e-06 344453.1700367074 39.55255561547303 30454 9747 None CTSI_20200721 9988732.245014314 1090.205415051185 0.050207461668060845 5.48041975748245e-06 8083734.453437847 882.3839433620476 15646 121 236053 ZRX_20190312 149469692.37673807 38657.53528791135 0.25531111115582417 6.611381642287636e-05 26676708.23059091 6908.038521079026 147804 15706 253317 BRD_20190524 27799903.165888064 3523.939183358477 0.4643137469553997 5.876626767832479e-05 461738.2289654898 58.440295034616 167 None None TCT_20200806 4427114.567510102 377.917782530215 0.007599421678227304 6.484630297942131e-07 716383.4499522124 61.129412489557566 None None 695906 ZIL_20190523 190103386.3553704 24808.501380147383 0.021340880809800015 2.7866215119393993e-06 99754809.49144354 13025.652526985745 61786 10324 200377 ONG_20211011 0.0 0.0 1.2847826082804268 2.348183630767269e-05 9515306.709223699 173.91025775352145 159201 20525 107360 CELR_20191127 15154278.343911527 2113.723891276424 0.004346278603782175 6.065794585183234e-07 6455647.527329116 900.9692057257503 18596 None 573678 MBL_20200412 4560936.964476098 662.8212933758073 0.0012926674135933427 1.8785777870997569e-07 664707.7203545521 96.59910548070845 None None 105584 DCR_20201018 150740327.2065926 13270.206016765094 12.412370952872596 0.0010921880936541775 5267027.43974431 463.45574753445965 40769 9930 227710 MKR_20211216 2138992145.4566746 43844.03156284912 2375.8041119403742 0.04868698685095809 59325687.249093086 1215.7521491372588 192497 32239 30283 BNT_20210603 948389389.7096453 25201.07297047953 4.697973943839244 0.00012476780458004277 20189214.15051807 536.1809060392411 120320 7395 32451 ARPA_20210106 21707624.799619284 638.890653885412 0.022191017398691653 6.510147742207595e-07 16990420.114203125 498.44557894023995 22222 None 1160562 WAN_20190603 54764255.299075454 6261.767448547009 0.5158197228672954 5.898438344410477e-05 15200579.309399663 1738.197976560935 108810 17064 409918 CTK_20210617 55396082.070539854 1448.28371836361 1.2257779731938192 3.204425335077999e-05 5554669.354026768 145.21001025697396 56231 None 152764 DOCK_20210823 69083899.14713798 1400.32896362324 0.10003864753922388 2.030089143851569e-06 7929101.060569735 160.905633767722 53046 15166 293388 AION_20210723 53155289.04922524 1643.5151084515337 0.107873689298218 3.332042685665373e-06 2179609.7921815193 67.32459891647581 73582 73386 347500 AUDIO_20210909 878728870.866257 18967.340958025816 2.143569076052429 4.6300462300917505e-05 60771905.45744904 1312.655304194508 76713 7152 26241 POLY_20200129 11348504.101529546 1214.2697135785422 0.01966301423988491 2.102906922041763e-06 7051294.449159827 754.1171320730148 34847 5001 309062 LTC_20210602 12225684043.23473 333289.1637004878 183.1496902695035 0.004992915479089664 4336081872.4062 118207.6271462957 184296 333953 88308 XLM_20201115 1701525091.2837622 105712.20949941514 0.08124161637859609 5.0485298558119594e-06 151063089.2768758 9387.387281556128 291505 112037 45514 EVX_20200417 3321388.1768004806 467.7671485295662 0.15214722893470822 2.146284705347727e-05 619137.9387025812 87.33949988061391 16715 2859 1064652 KMD_20190201 69233303.74324438 20177.11224278161 0.6201892076888769 0.0001807457766526318 202861.86831541383 59.121354398458706 94805 8237 249846 POLY_20211204 625801246.8288889 11656.238408613814 0.6940149425564708 1.2942303395223955e-05 20804569.931465965 387.97299531958856 63127 8431 124612 MKR_20211021 2345500814.684803 35385.17080818808 2591.6924369331264 0.039255068021801565 84631305.9397546 1281.868027276529 187975 31089 41099 AUDIO_20210219 68518134.88645294 1325.7119739989469 0.4469552419854406 8.645094216406845e-06 9816464.912380097 189.87195152382242 26335 2648 59787 PERL_20210708 0.0 0.0 0.06728137683330822 1.9802293926559766e-06 7226299.770391618 212.6848747600014 269 682 5749080 IOST_20190316 102817396.22137688 26199.3547691153 0.007612120554331883 1.9396579410635788e-06 9418904.912061425 2400.047868186476 195321 48504 93184 WAN_20200430 17511471.84491251 2005.7773187174355 0.16490540658633376 1.8809039236836327e-05 1854910.8020582562 211.5703225198964 104792 16261 925023 LSK_20191030 107937676.79943739 11470.28423134178 0.792018048072443 8.417815977570385e-05 4138968.0118248733 439.9024889064821 180482 31128 158256 MATIC_20190816 31730119.044654556 3083.8575643923446 0.014610149717631577 1.4177415273810858e-06 25803411.53485523 2503.9146612522677 22101 1109 173960 SKY_20190430 16495073.93130858 3168.712240265532 1.0991861634380726 0.00021110355694582816 1041772.4229423475 200.07699453141225 None 3702 401033 PPT_20190405 57239753.42068746 11673.776784885 1.5814037010527704 0.0003226846118416971 5047754.27591083 1029.9916638048894 24037 None 635728 GXS_20200308 29678760.529421315 3339.0504034537194 0.45738318310872783 5.138887527890271e-05 10831435.59669634 1216.9561836246576 None None 822093 DLT_20190205 9255315.390373312 2671.6320763177005 0.11472907963311316 3.3117606078885865e-05 1647968.6060651375 475.70132437708395 14507 2696 924698 TRX_20210301 3272912690.586012 72147.77456034879 0.04541996297892866 1.0062847132792252e-06 1886197817.1338296 41788.938279913724 618213 86117 26578 UNFI_20210128 22050660.080942944 727.7703952118178 8.994355741362154 0.00029648392775396534 32833781.57740757 1082.3108185858023 13584 None 124475 CTXC_20210120 1289286.2073967338 35.603015345936264 0.12997427280955648 3.6062006603043014e-06 6865992.441200279 190.5003654944879 17033 20078 599197 XZC_20190826 56097816.736696854 5556.783818499063 6.8118381428666614 0.0006743993546309416 13687623.223717643 1355.1297131411243 60841 4037 203720 SUN_20210112 0.0 0.0 0.0002918222773458822 9e-09 29.778966863002953 0.00091840384567134 41 None None COS_20210112 20534434.178433806 579.6919504083417 0.0068949055365680285 1.939673809816432e-07 1181927.2544718955 33.24996011110699 14084 None 444691 RLC_20190608 29932565.093763743 3720.4262986635786 0.4268928418432539 5.3173312493449093e-05 483707.1114216372 60.25003670680024 24893 3316 786963 DODO_20211021 354188227.6290712 5343.633528056039 1.5550738571155505 2.3553925292243853e-05 60792319.63032667 920.7908347008666 111623 1160 27957 STPT_20210430 84575438.44981094 1577.7865644729602 0.08277815493149837 1.5445334971496613e-06 18762412.59630262 350.0823951236091 29635 None 910650 DLT_20200718 3218253.0725495922 351.60297476090255 0.03924230143829891 4.2873290605573786e-06 63344.907486404874 6.920604876648 None 2561 4398873 BAND_20190929 8242283.715064797 1006.2515887210412 0.5262362363954888 6.424506450168698e-05 1763940.4612144164 215.3490407351719 None 968 None NPXS_20190806 127469291.01856928 10792.836923796714 0.0005679093844727488 4.808226265782442e-08 6536358.599930121 553.4032710506309 None 4693 187000 NEBL_20210104 9893843.327133495 296.40768042879523 0.5693248671923842 1.7295400678420845e-05 2485707.227857366 75.51277829660025 38355 5879 781583 STRAX_20210429 214431713.59017298 3917.4269068606886 2.1512262914192015 3.928693223709989e-05 13462651.414185815 245.862685832036 155725 10624 156260 ANKR_20200523 9688013.502082972 1057.5301470687361 0.001877091653539605 2.0505276807118103e-07 2660664.264004189 290.64993774456593 18023 None 5986 BNT_20190122 33519969.60341931 9491.462671661136 0.5342461220190712 0.00015128643631429832 702410.2489372236 198.9067192303519 862 5091 105322 VIA_20190623 11170419.02194994 1041.5767628422795 0.482609166578402 4.5000504677128406e-05 753794.8604098115 70.28699720305961 41049 2235 1573301 NXS_20200801 13639950.241939716 1203.839200986229 0.22844470229509906 2.016214744206869e-05 153273.05206789513 13.527623287568229 23269 3524 412893 KNC_20200531 125900671.88248959 13002.516982532221 0.7004297825387878 7.240804727995495e-05 78970161.38986424 8163.666540416294 106831 7697 97707 UTK_20210708 102352843.91797191 3012.383327184308 0.22749597846030478 6.695674857758046e-06 13130542.005593559 386.4588753199841 77494 3984 145803 AUDIO_20211125 1300331753.913729 22743.999008826464 2.5999135433899427 4.545387085162333e-05 123561236.42378035 2160.201248596309 108709 8484 20469 IDEX_20211002 218950916.41324994 4547.445138286011 0.36571556924248466 7.592611588118389e-06 112887375.77870905 2343.6519239939767 61587 1986 5032932 SRM_20210105 63160289.76888235 2018.7846156828505 1.278130180101881 4.085271859694457e-05 80314235.70934293 2567.0740913894447 29293 None 89781 ATM_20211007 28841703.087913513 645.7254437455765 15.062829517711702 0.00027150236368859423 29045625.686258942 523.537494689209 5136027 None 61074 COTI_20200301 5852495.078093462 682.2398394377394 0.018925070581322354 2.2127059013222174e-06 2009554.1430581957 234.9556527287037 21847 849 296885 RVN_20210723 507991639.0493265 15693.584277982474 0.05485085058372026 1.694311788697572e-06 25774929.959630955 796.1730259187349 65262 45663 64221 WINGS_20190221 4907753.030551606 1236.0354617138912 0.05490656207739099 1.3828417482699317e-05 185387.70667468902 46.69056861444673 37289 1221 1388669 BNT_20211028 943984552.9188666 16130.682076891007 3.9747811942090507 6.790783432508488e-05 94716365.37063727 1618.1980675651641 None 8417 41178 XVG_20190701 124733088.99868733 11496.391916763523 0.007803606208112768 7.234881117242053e-07 2546066.9270994756 236.05101337579316 304127 53024 387398 CDT_20190704 15052427.794698508 1255.3726632417406 0.022328383004548567 1.8606627571786595e-06 2612223.3986388473 217.68109183221324 19782 298 343226 GRS_20210401 93618847.17824957 1593.1969603810683 1.2119431139204093 2.0624736828647458e-05 5039737.402215599 85.76578917961845 39549 106771 8463498 ONG_20210724 0.0 0.0 0.6853109966974466 2.0495364522315052e-05 11466638.69028944 342.9288905850108 141638 19703 156257 HC_20190818 114847393.3003997 11235.773044331048 2.5958576183494673 0.0002539767177052186 158566681.4278793 15514.042450474717 12945 849 414812 ETH_20200423 20165266729.19022 2834490.637419998 182.2767576620704 0.02562137014852965 14853382137.991045 2087836.137729468 453931 458420 21984 SNM_20190613 11793171.43744807 1450.8795520728524 0.02895810525064759 3.559567136162862e-06 259549.2445991675 31.904123329009312 31352 10002 15012322 ARK_20211104 322838801.2686161 5119.110002641193 2.005124659471727 3.17943619555933e-05 19713191.0058786 312.583223781099 75439 24145 149782 FUN_20210527 242856069.74690238 6207.711624145048 0.023742009819900642 6.056098124307821e-07 5636838.242072289 143.78414364998963 3102 305 211811 YOYO_20200907 1889230.4242374937 183.4821543079735 0.010779793732108847 1.049106833033442e-06 856319.1295747071 83.33835251579781 7771 None 2642123 STORM_20190411 17388655.989709172 3276.348296439394 0.0038482235142528578 7.250392478098565e-07 1898963.233778395 357.7814203197534 27049 2567 4145825 OG_20210217 0.0 0.0 6.613744759432609 0.0001343995279331656 2733548.0925688804 55.549100636200066 621046 None 464193 XVG_20201124 87579399.31986496 4782.1838537614 0.005378849412861038 2.9297811146725296e-07 2936626.767972918 159.95379281444778 287759 51289 388389 NKN_20210105 11581896.03351077 370.1907261421279 0.01783372053315203 5.700170278581e-07 1668294.5997467528 53.323496214465194 13728 1023 376074 NEO_20210916 3700398560.5628686 76761.58249583289 52.46559705888088 0.0010883536437804179 369928715.8022136 7673.852740692278 415232 113477 100131 SNX_20210916 2611388071.8031597 54185.90756327898 15.033570256369243 0.0003119682036550789 369982232.21190876 7677.663415883831 155443 7664 52479 JUV_20210511 33388360.7787884 598.0968820641708 15.08555994242336 0.0002699857068421215 5032979.043212754 90.07503928853804 2450961 None 39485 RDN_20190729 12107200.428390615 1268.3075822363464 0.23872671923825162 2.502329208775929e-05 205450.73822812596 21.53530969944486 25645 4399 778116 CVC_20201031 17228334.403006647 1268.3567861360407 0.025712052347670745 1.8945412344174304e-06 1387019.294308548 102.1997470473476 None 7948 299071 POE_20190712 10954427.37311421 962.6662327555497 0.004351874964866009 3.824392581334678e-07 694111.4846666635 60.99795683491378 None 10834 780853 FLM_20211221 0.0 0.0 0.3302624267579852 7.007065528858112e-06 7469197.502308291 158.47142183391625 None None 30888 MTL_20200907 19509182.156752992 1899.804509703262 0.30184149461313803 2.9393330180328423e-05 3414145.2445362043 332.4695253873912 40616 None 386727 BQX_20200410 4173863.6949773235 572.6937448751746 0.029583862624786284 4.057336821767024e-06 261121.09457787086 35.811964293102804 10845 14 327684 BCD_20210430 415248384.2587729 7747.998728114918 2.206926181162093 4.117839320485244e-05 7384854.388745765 137.79184839804037 30153 None 1334994 ETH_20200807 44217734699.095276 3758026.5721613425 394.5417454611831 0.03353175763887289 11175559421.02824 949801.0142037299 476917 475263 14669 ELF_20200806 46785600.69109979 3993.822657602633 0.10138398441343521 8.65139661429402e-06 13658880.439698715 1165.5528501343535 81542 33357 548610 CHR_20210513 132536740.19889303 2569.627558519191 0.28415854745954106 5.664784098096254e-06 112404772.4745559 2240.822151424648 57978 None 102679 SFP_20210724 80664655.12346144 2412.8235264378022 0.7461730099187128 2.2316550775827e-05 10009566.158388015 299.36621728250446 368826 None 24694 RVN_20211007 1104100716.9745238 19890.405892662588 0.11273734164426243 2.0322520892187316e-06 125733766.44155234 2266.5312647026494 73180 54842 54487 VET_20200314 169527123.00336573 30693.232619724124 0.0027201589967590996 4.889681904702847e-07 114308200.96395926 20547.723220537453 118764 60809 236885 GLM_20220112 428619237.9830643 10017.78472811293 0.42861923798306434 1.0017784728112929e-05 8243167.25512836 192.66114938818563 164136 21793 208647 SC_20210114 201545690.67158154 5392.913094613358 0.004449230952509687 1.1905149539439799e-07 9933818.727468494 265.80682978817003 107835 30185 159206 REP_20200329 110890216.31648137 17736.5682570726 10.080928756043761 0.0016124152960975086 33521685.345546667 5361.69627919673 130666 10118 262137 COS_20210212 47210278.67418182 990.2408222367885 0.01569875011405734 3.287959874749125e-07 8532317.942889163 178.70160892427273 15060 None 369084 LSK_20210724 345326400.77655524 10330.89362965536 2.386912306424782 7.13845801960381e-05 16252932.15627491 486.07095275661055 196398 32589 298346 ZIL_20200208 81657846.37436937 8335.989425252166 0.008217803976566719 8.382412521861633e-07 212956958.3618277 21722.263995101246 67740 10520 252784 UNI_20210127 3910299627.3158913 120010.49754324234 13.79671791735524 0.00042357939655414113 1870143777.972947 57416.14619421852 174768 None 5976 KSM_20210401 4457248395.854781 75778.66211392573 497.0662594552694 0.008456454699944119 603703702.802871 10270.648867890857 44531 None 82275 STPT_20200423 8016876.486674547 1127.72095169843 0.011489452621453547 1.61499207136441e-06 1200911.1984744705 168.8036956893458 11248 None 1265534 NKN_20200107 12011121.706693446 1546.7729380419921 0.018454339957514526 2.379173040220738e-06 1825192.0722213516 235.30767187831262 12139 1004 256364 PERP_20210813 666838918.4062195 15000.341779229442 15.053733322087787 0.00033860837098685263 37620035.63503593 846.1993254627536 25148 None 147640 SOL_20210731 8782089188.680168 210493.2544646224 32.252691819301624 0.0007719325307641513 673479026.4084785 16118.976120962128 369789 28238 9589 SUSHI_20210318 2792065758.1874804 47465.62320303815 20.04097177690879 0.0003402878756778513 613789106.9226598 10421.899378630516 None None None BEAM_20210125 29475788.343478747 915.4168343416068 0.36885650328336544 1.1433191965347756e-05 8292420.850908491 257.0344798097662 16130 1637 289835 STPT_20210324 89282802.95265138 1637.7822466046207 0.08776114060663853 1.6099432326119732e-06 66592194.506669454 1221.6073326955259 27123 None 1177944 MATIC_20190804 23115758.483684737 2142.3355257377834 0.010635447441703682 9.855395076186047e-07 6016679.863284179 557.538903977696 21156 1047 193229 XRP_20190430 12251847495.659832 2354005.003328612 0.29180850641677997 5.6066216555132315e-05 934458146.3621022 179540.8003658952 919154 200383 39208 MDT_20211207 38972127.357068665 772.1123614860211 0.06428597415242386 1.2733893160250344e-06 22912920.401656933 453.86366813423916 38694 364 615716 DCR_20190605 250802867.7564224 32751.08286063273 25.42181221777749 0.0033159123694531008 18557491.554574415 2420.559764374441 40451 9471 369344 XLM_20190629 2167208239.5999584 174950.92137926794 0.1117838022436972 9.029156181583958e-06 529105400.22518224 42737.6346059299 273830 102576 69800 SKL_20210429 378449643.347681 6913.73687968337 0.5740128328654943 1.048404303283678e-05 109298699.13139357 1996.2833573010403 22106 1379 134291 REQ_20201015 18531612.919284545 1623.5094665159306 0.024007979927251035 2.1035613804914703e-06 351215.5169246264 30.773242891351714 39474 27584 290010 DNT_20200629 4947027.041366438 542.5926238531364 0.006590223431866641 7.225962531675531e-07 120422.93732994069 13.203977711784368 57954 6012 571962 LRC_20190603 65050006.16066903 7441.260534732581 0.06774757316624118 7.74747270230652e-06 38319726.251103394 4382.164839495959 35748 2462 858325 ALGO_20190703 79863686.63255547 7391.291361758926 1.1353696042692607 0.00010497947912713862 141881071.89065203 13118.72448326387 9860 487 350942 XVS_20210210 366791551.1729993 7873.249391735861 43.60374425374944 0.0009358122643421488 134250120.1554942 2881.2413034946085 21290 None 58717 DOGE_20200310 271554683.58954656 34264.80464985991 0.0021960767238393547 2.7710124142876873e-07 105653413.87130305 13331.361253053921 138861 149985 115347 BCH_20200207 8083644266.306302 829995.7384827489 443.1036800219777 0.04550277763681521 6628329200.591112 680670.0176878398 1012629 283245 121592 IOTX_20200520 13728410.986793172 1407.3335208011435 0.003170533715194728 3.250192888686244e-07 2315210.4746616706 237.33797828720148 22716 1828 642800 OCEAN_20201015 125224723.99822994 10972.997378323123 0.36093171670447066 3.161962315136979e-05 8163105.880438245 715.1334164836804 27535 1053 109249 LINK_20190811 850696559.8743135 75079.75783851263 2.340580782200766 0.00020673804662142635 90528109.99795523 7996.137013356683 30654 10243 107221 POLY_20210624 108362516.46609634 3214.358169077992 0.12839398394089055 3.8097418305102476e-06 4529922.154632403 134.4131040392302 47005 5652 135189 TFUEL_20200801 0.0 0.0 0.008268005588021732 7.294103677187211e-07 5582084.719439419 492.45618238842667 71724 4295 60901 BCD_20210203 129950350.10235286 3648.9894432236097 0.6870273209094581 1.9325205171494024e-05 1774360.0319959056 49.91049209080663 28154 None 1670747 BQX_20190207 12295894.472241437 3609.173833947307 0.13198025475883327 3.873680532502999e-05 926544.8399212322 271.9451265988535 60697 5824 340776 QTUM_20210115 309015349.5100329 7912.131676547661 3.0147110410536606 7.685650003556422e-05 397768940.3243319 10140.649687440211 189217 15032 249496 REQ_20210114 22376197.606032953 601.7455036628089 0.029219286207671582 7.825529126484765e-07 315886.74085177213 8.460100201068101 39440 27264 443928 OST_20200320 5320499.075621728 859.8226631786414 0.00766797072626265 1.239996587470554e-06 319763.30944549333 51.709301804280386 17803 752 732102 INJ_20210624 169941644.9742511 5040.980337148628 5.887953395095546 0.00017470898290466075 16191005.169320865 480.4239869990089 74557 3691 117778 WPR_20210212 12436560.640378721 260.8143965695764 0.020508089125110242 4.2972695252392586e-07 895131.3317129166 18.75660169697099 32631 None 7510517 XLM_20201229 3145467160.9000893 116006.68721328287 0.14448262938887918 5.323063774206864e-06 550136242.8040391 20268.251743028228 305189 115268 34884 ZEN_20200117 85650942.93218453 9840.392028985947 10.444072747536122 0.0011986032297260855 1938131.1267096044 222.42761844557464 49595 4671 46190 ALGO_20201130 253217486.8482904 13960.6083174107 0.3176081872184831 1.748903680708591e-05 95716556.60749094 5270.6147036581 30627 1500 368912 CHZ_20210809 1478507220.4555206 33610.393473494594 0.2765286927683995 6.287584845500425e-06 266015618.1817205 6048.543291479193 None None 53111 STORJ_20190430 28480487.203981474 5472.0897725146115 0.20974325870323962 4.029872572199548e-05 2539291.852599147 487.8832651340428 83951 7683 192994 GVT_20190929 4610763.536562602 562.9306432623524 1.0420393723386738 0.00012720704279413947 311368.0835623483 38.010284622500556 21204 5706 141613 TVK_20210809 124412313.24839489 2828.045123559857 0.2854487967713566 6.4904061519905065e-06 75408326.03372976 1714.6005474062572 None None 105979 ZEN_20200208 91132530.77001105 9304.810463058438 10.861802041968643 0.0011079371776962098 1252014.3910710816 127.70931430333071 None 4995 52317 GVT_20190515 12970276.567358753 1622.874692423475 2.9087623489988976 0.00036390110679176946 1638766.1903703532 205.0180657261145 21435 5787 192676 GVT_20210314 29894209.18124323 486.609833236 6.703261378311182 0.00010925610479044948 1915216.5517494963 31.2160138871184 22737 5497 239345 WPR_20200411 3171077.0859637596 462.48180246397 0.005215606590475475 7.604593078673838e-07 158266.7759635097 23.07602017517981 33381 None 1058111 VET_20190909 221180836.81074354 21294.672352789137 0.003991038297944476 3.8400639610477523e-07 28904880.884699807 2781.1457344541373 113646 57430 147845 ADA_20210117 10974418960.154127 302444.92698707554 0.3522503951510311 9.733503071495994e-06 4537543259.394854 125382.94310054363 178289 102524 30705 CELR_20220112 380660860.4570142 8890.025354053547 0.06750679243917244 1.5777838566540306e-06 75587998.86796468 1766.6596213724629 102550 5389 35839 ARDR_20210418 477222787.0803383 7916.420166457654 0.4432095096019988 7.353743365195286e-06 19630266.645930666 325.70587944775446 71172 6716 None RDN_20200518 7331601.459995172 752.8722911160563 0.10976447876585162 1.1271566664189736e-05 775429.3517037577 79.62779698287505 24953 4309 1987298 ONT_20211221 593853459.5305804 12587.327109166428 0.6755307281435204 1.4333461157045657e-05 68311343.21716695 1449.4351534233292 180989 21030 97967 XZC_20200301 47895483.982821 5599.906198503949 5.001359300683761 0.0005847554011332234 21955771.77211741 2567.053346484978 63695 4093 107900 AION_20190302 33196241.183243126 8659.250602246197 0.11350554286113367 2.9688051672485536e-05 2637335.97329701 689.810952657511 67122 72421 229111 GRS_20210128 25846435.26041884 850.1859004715478 0.3364756022496459 1.1067940704511906e-05 2939309.1036408236 96.68486705669582 37578 106759 3770172 SKY_20190605 25056178.52613459 3261.9073351547413 1.6704119017423065 0.00021746048901031612 1411565.7589449503 183.76292691055156 16062 3763 431254 BTG_20200106 94481796.17592283 12867.323616191083 5.389675837247729 0.0007338021113556104 10385195.221517846 1413.9399864689333 74651 None 244799 HOT_20190703 336287174.8778842 31252.30194277712 0.0018970863485742939 1.7580451601037435e-07 33014143.6103894 3059.447211395187 23344 6526 316713 XVG_20210527 489091879.0819212 12483.370263050814 0.029733916255753737 7.589840286421047e-07 41010307.44540332 1046.823704386413 315941 54220 106082 HC_20200913 59464679.252368905 5702.7930085379085 1.3297044600890173 0.00012734919277712016 18406606.882303 1762.8477594714143 12890 846 533192 TCT_20210610 20424004.250377107 544.1188738842958 0.035263926410900696 9.399071943469998e-07 33144242.764271077 883.4101983519365 None None 282864 ELF_20210420 199375289.91679767 3556.218426226965 0.42743018697212837 7.638131142963041e-06 39366360.265369266 703.4725938709303 87546 33370 202444 SNM_20190507 9722718.985275704 1697.9504447034433 0.02432590877206012 4.248918908329052e-06 114421.70253078254 19.98562684591829 31587 10029 15333127 BRD_20190513 27274867.643192504 3930.007219839408 0.4548098444981075 6.553307594061661e-05 671964.1717525178 96.82261637371953 None None None DUSK_20191026 10329890.454809003 1195.1397168920296 0.05412370024048184 6.251417517362104e-06 892141.5931939195 103.04449915433486 None 13332 197441 PPT_20210916 76528187.55451703 1587.970504543272 2.121599372552292 4.401832867057608e-05 1900802.636866806 39.43730201373751 24458 None 1241338 LSK_20200806 186612027.20473528 15930.015462497006 1.3236571807968378 0.00011294842979006887 5791276.515314277 494.17296137892265 175960 31126 181542 POLY_20210418 402270471.10656863 6675.7268300248925 0.4893386867761145 8.119119836676443e-06 16978675.769040216 281.7106167205271 45098 5485 167143 ARK_20210724 144292583.32547188 4316.702477804983 0.9121611624043474 2.727969581207419e-05 5005744.229959264 149.70510205278987 73104 23424 125873 ENJ_20190528 141024800.26552182 16011.52010466253 0.16145870102736912 1.8346628298807506e-05 16619090.627235714 1888.4351011247422 46240 12527 19374 QLC_20190626 9000008.110732904 761.134058885969 0.03750003379472043 3.171391912024871e-06 627135.7495830468 53.0371053758715 24966 5790 940522 OM_20210909 75950647.76377094 1639.3928547018475 0.21222925099025225 4.584089472274974e-06 21581108.47223883 466.1456028611162 None None 105493 ONE_20210624 609353423.302603 18075.25533666597 0.059516244054062445 1.7659824674651792e-06 48814978.27182516 1448.4515471008228 186097 25105 20345 BCH_20200412 4255775457.767623 618481.1301011213 232.76070828795773 0.03382261774420175 3381035788.0342507 491300.62319914653 2863 291437 142295 EOS_20211207 3190826612.732959 63216.800841002325 3.276485577261488 6.487168484228576e-05 1229621469.3977287 24345.480716184986 None 96113 69184 RAMP_20210718 43667210.769153915 1381.6270262441353 0.14632453612377025 4.633602479962e-06 1965243.7434186782 62.23261337067932 30561 None 117048 JST_20210105 33915081.06152665 1084.0235872441972 0.023607609423077037 7.545671321450739e-07 78969538.57056233 2524.0937012351797 31453 None 212672 MFT_20190929 7518523.772512781 917.7617903579521 0.0008341857378643359 1.0162465581884433e-07 169116.36484622132 20.602596748814683 18718 2274 975011 STPT_20210304 48120521.09466207 946.2226572562254 0.047391523138494984 9.341643195057983e-07 11333418.673677098 223.40019146525566 22000 None 1220262 PNT_20210428 72145691.94200751 1309.5986270581145 1.8155497926124478 3.296075488239045e-05 23363221.846708078 424.1521943852496 36879 253 387057 RDN_20190123 11292067.097732374 3161.5310120939607 0.22463310785741483 6.289234120623325e-05 517238.08445910725 144.81531419361912 24888 4457 608656 CELR_20210723 143284919.56734434 4430.2445595604495 0.025400752399068662 7.845878989800346e-07 32586059.081042968 1006.5303274784962 57374 None 211241 PIVX_20190618 47121974.318282396 5059.566065146164 0.7814581993624177 8.390648830030669e-05 17401905.349537868 1868.4720037557327 63017 8615 321690 QTUM_20190414 235470141.5841155 46414.04871122288 2.892630118152732 0.0005700641478873253 133521469.5521901 26313.70056173693 176770 15252 374999 VIB_20191127 5016091.250039758 699.6448555827681 0.027210045765821256 3.800289591587915e-06 1688197.4790752018 235.782010934108 31878 1117 None BZRX_20210408 120218735.99990962 2134.305703623002 0.8507825294034483 1.5140357966718387e-05 149598446.4951345 2662.2244262461036 20997 None 207011 STORJ_20190805 24363452.68457188 2224.9842182998523 0.16738285808822514 1.5283939504134733e-05 4032319.74261372 368.19619231828426 83795 7775 204651 WAVES_20190511 224647935.4149013 35254.78431013311 2.2468780357687357 0.0003526837022123404 26648821.44484611 4182.961806179366 139983 56780 41172 CTXC_20220105 90272198.8528764 1950.119580567895 0.47086658339845316 1.0252401843224135e-05 17472548.448101293 380.43809909430314 55401 20891 237581 ANT_20210217 198789215.40214327 4039.8865231542513 5.726310182538334 0.00011637498791735898 63114263.7542237 1282.6622113849526 78217 2768 120479 DASH_20210909 2094598866.0587332 45193.75386898562 202.11657719448385 0.004366178090372171 596461748.4206344 12884.931329473984 405246 42206 71755 ORN_20210819 259526432.41779098 5760.794747013886 8.624857793366123 0.00019162175637079727 11741762.445922516 260.8712162775517 None None 95381 WNXM_20210610 147720570.74115282 3935.5638820507497 68.6707279552364 0.00183348547786509 27824154.458162334 742.8956216420266 29610 None 116861 OST_20191030 7908832.674425871 840.5755173475977 0.011723299760477859 1.2459890311056556e-06 295479.0787941105 31.40444231749803 None 758 847910 LOOM_20190810 19592546.266546573 1651.747493476585 0.03251665928275258 2.7411751158258166e-06 1825821.404812106 153.917908887638 20816 None 419085 TROY_20210218 16011876.846693985 307.13947600797127 0.008470717257332052 1.6245943326513266e-07 4939884.132756213 94.74177359754795 10947 None 643459 STPT_20200511 7154451.017982385 816.693830576735 0.010202475980552411 1.1622857444163953e-06 1360304.319851568 154.96849216261637 11158 None 1326696 OXT_20210401 0.0 0.0 0.69828251511673 1.1883307839211336e-05 71908746.45374116 1223.7364561516422 61185 3137 108247 POA_20201129 5688656.669920674 321.3615511574195 0.02018805214023322 1.1397906276769266e-06 146167.94062509752 8.252447914937822 None None 168138 RIF_20210718 122494690.32777564 3875.722120722484 0.16225557764761486 5.143534083896588e-06 1775394.7403677213 56.280366393841156 44641 3360 493990 XRP_20210314 21131015891.193703 344055.4485145551 0.46094646816105167 7.5131207407811215e-06 3242064887.3609934 52843.50055954774 1261520 274807 10439 GXS_20190826 59688033.10917049 5912.413634488344 0.9174746188777071 9.08640775534503e-05 4561746.974892589 451.78244975636477 None None 790272 BCH_20210916 12277546775.34418 254760.79821579615 652.1051321611778 0.013527359574675686 7111412211.1270075 147520.124162859 None 623893 468557 REQ_20200329 5775112.1042689625 926.0205348820313 0.007498493948759199 1.1993623438143317e-06 66310.07921002155 10.606104714268056 39520 28300 686735 NCASH_20200106 2152315.775727045 293.1204182332293 0.000739929369821267 1.0074107427324215e-07 194047.64891461775 26.41950625176233 58527 58534 1010197 INJ_20210930 309807249.75333613 7456.920188271559 9.489807030642686 0.00022830376403556283 26625183.137891516 640.5430067111874 85888 4113 121135 POLY_20190627 42344554.481072456 3260.7112581868205 0.09008881507146328 6.908273612610034e-06 10606387.477087384 813.3287875410188 35146 5108 316227 ALPACA_20210916 164697911.9143729 3417.4567645532106 1.131378249418966 2.347990181190055e-05 10204139.37785987 211.770193381518 47535 None 21699 HNT_20210401 793845815.8218936 13498.532707248154 10.512466717085873 0.00017890019504170426 19658954.408233177 334.5542842226302 25903 7886 24713 BEAM_20210401 109385797.06803946 1859.761838774396 1.2898061190687329 2.1932464460878486e-05 34170812.6968399 581.0564270030717 18281 2049 182243 COTI_20210422 209619047.25137973 3868.6940553786294 0.3123455355147154 5.7747619514653225e-06 159102045.04813564 2941.5385580275392 80350 3803 80341 FUEL_20190626 6884967.48686504 583.2814543539406 0.00862417143906545 7.293494107095636e-07 3812770.961380829 322.44746912811684 1 1515 None SYS_20200224 20516086.776358586 2061.776722019618 0.03545002318730365 3.562571819829823e-06 442692.1606145484 44.48862016061561 59006 4519 833412 MLN_20211111 189112818.78944322 2918.028028372536 130.37908181666532 0.002007617724191461 16534598.382428702 254.60489759875153 30038 531 105392 SUSHI_20210707 1702177288.5246549 49843.15571627672 8.917333920526339 0.0002610965082422088 635212952.1239697 18598.81947540712 112207 None 6114 OAX_20190528 5249542.671289956 595.2526575034088 0.22327873992202418 2.537007154135484e-05 1757835.0180228285 199.7341985211506 15154 None None PPT_20210117 31742454.18159604 874.6963001923573 0.8786787223766347 2.4276214366783235e-05 2010019.0800262936 55.53298700127973 23533 None 734972 OGN_20201031 17943759.61761627 1321.1956048171126 0.13868690722787552 1.0219779787409923e-05 6080619.534329706 448.0782927098273 70150 2430 171187 XVG_20210314 432191431.4484224 7035.094961304434 0.02625462846478651 4.279329754867991e-07 26251854.3021087 427.887758480937 295032 52487 123910 SNX_20210106 1716074997.4000404 50516.876115407686 12.499801640790428 0.00036670493275640605 406880297.6459649 11936.590393664443 52573 2956 45504 OAX_20200711 3005032.13025105 323.6327970070206 0.057503315900549974 6.193712708074355e-06 329239.49133635114 35.462560542015474 None None None REN_20191026 47895300.36483291 5531.792647113674 0.057942789825785226 6.692253650566494e-06 3492643.0031681205 403.39191396124016 None 874 270891 RVN_20210314 1587222388.2071648 25843.173535946375 0.19036821858234174 3.103204568750783e-06 309611856.7692864 5047.002780300135 None 25354 66527 ZEC_20190730 476452939.1178403 50189.97978585465 67.43968171587622 0.007089998338087918 233607034.62303177 24559.331318033677 90 15358 211514 REP_20210219 201957128.92269492 3907.299964053123 34.17164257638733 0.0006609544801174322 62080631.5192674 1200.775509677512 139283 10700 131610 POA_20200331 1811792.4647281729 282.04613774368676 0.008212898163950714 1.281051847963088e-06 67825.01540215655 10.579378872666 17348 None 736358 GRS_20190131 14455130.856633946 4175.922445956681 0.20121515489615044 5.814079302850812e-05 430583.3742065481 124.41636841012377 36367 107020 15196845 AMB_20210708 4136334.9470282937 121.45633690236353 0.028279656525879767 8.325683133329281e-07 426901.99570358486 12.568224589154111 590 59 581251 KNC_20190605 41601721.78449342 5429.98196023639 0.25044028115975775 3.266635828291688e-05 10155557.166355507 1324.6474066493736 96819 6688 215563 QKC_20200309 11094672.760217918 1377.9122993751062 0.0029545264549199215 3.6726955228833483e-07 1876066.2908769657 233.20895487879298 50465 9198 398743 DNT_20200913 8800854.354635753 844.0059423423417 0.011731401871000907 1.123403994439682e-06 132013.2521389558 12.641644741407424 58401 5986 478994 TLM_20211202 515719840.9128116 9022.483555903145 0.41627798275294026 7.281599951269294e-06 502681687.7477367 8792.987149599692 99214 None 10820 BEL_20210624 33931278.98786178 1006.5037926285345 1.0785711607183996 3.2003662025649095e-05 7753547.174838412 230.06539792717615 None None 506926 POLS_20210702 75389950.46299055 2242.2971726288197 1.0417712775672208 3.097250125082149e-05 16390100.731558658 487.28778220374284 379643 None 15425 ENJ_20190806 68378921.73505118 5789.3272501139945 0.07796833230282067 6.605650573399396e-06 3719651.6065671453 315.13715943463046 47064 12747 22336 JST_20210519 146535725.31987408 3434.276810218916 0.10254777070032475 2.397046954912643e-06 184590193.3130665 4314.782835024817 46058 None 80562 PPT_20190904 16381980.726209592 1541.788132543753 0.4516421432695968 4.2558511997133046e-05 1018331.4979297516 95.95799222357297 24011 None 732961 BEAM_20211225 63266882.52230663 1244.7057979728656 0.608500406536108 1.1970167995670574e-05 5539736.678838623 108.97540574369624 30437 2976 252645 XRP_20210620 35221141669.96444 987994.9662061214 0.761459550633087 2.1387141462617282e-05 2038711275.862578 57261.35606553822 1886307 320263 11293 DUSK_20210422 97018037.49343379 1790.4276051036582 0.27013737769668955 4.994401625817269e-06 5758454.624470313 106.46447886579135 26197 13560 307369 ONG_20190621 0.0 0.0 0.4384747257255025 4.587791721205908e-05 10504069.089419793 1099.0480951365848 80423 16241 232873 SNGLS_20201228 4009252.743261285 151.0094554738707 0.004474203523024876 1.6967256221779783e-07 178730.42032578937 6.777887551802378 8956 2115 2318818 AION_20200807 47276044.45268924 4018.254686477444 0.10541727896726454 8.953437167952787e-06 1735954.0674707294 147.4403041116037 67579 72554 291955 BTG_20190704 467395432.4717441 38980.78481769796 26.698510036750474 0.0022246364851964484 12422867.243471814 1035.127566389952 74583 None 363617 SCRT_20210624 68566415.22332801 2033.8861082693136 0.9803862232360374 2.9101223136698265e-05 3050809.9080226445 90.55849396574159 84473 None 48367 STORJ_20190729 24840040.81946001 2601.9341348925323 0.17261671179236834 1.8101151376495294e-05 878732.8515747666 92.14679274499686 83854 7772 215806 GRS_20200113 12225917.699100565 1499.7969955192373 0.16481759101817794 2.0183772024717785e-05 7486861.404510061 916.850579090329 37977 106896 4090330 RCN_20191012 19551655.880950663 2364.652869924208 0.03839414680607969 4.643536587698641e-06 6251631.002817598 756.0964289946879 None 1121 1108011 STORJ_20190702 37055204.94081411 3496.7918538297577 0.2586688686068719 2.4368321028206362e-05 7330624.125376315 690.5933558466836 83727 7765 206682 WPR_20190908 3375244.2361142985 322.41731585869394 0.005549366306511954 5.300984652067913e-07 169433.02169956022 16.184944333714324 34457 None 785340 PAXG_20210110 93668549.31228477 2314.766065712428 1892.702025707124 0.0469684769311249 4838695.81943406 120.07498797224103 None None 75931 SKY_20200607 9206313.365148328 951.872097944272 0.5114618536193516 5.2881783219126217e-05 381516.92146491207 39.44633405710656 16095 3820 485273 HARD_20210219 103344071.76317835 1999.5359419122162 2.0256325317483874 3.917595393082968e-05 29456000.8177311 569.6822661244929 None None None BNT_20210825 972711423.8291252 20241.72369700851 4.18278932995568 8.709717410880209e-05 152580726.2744302 3177.1502300624666 127582 7749 39587 NAV_20210202 17138446.212326057 513.1544368084216 0.24187909725541643 7.242274497355772e-06 1264929.0034762041 37.87414111756704 48554 13655 604574 BTS_20200430 54325431.063035876 6196.335132818922 0.020044834850616193 2.2863051794712314e-06 23370627.54054946 2665.64365292382 13191 7003 127468 STEEM_20210428 350708428.41116405 6364.300085686838 0.919896863511842 1.669335326155254e-05 10995537.52733909 199.53583877195862 13552 3937 169708 XEM_20190922 409035836.5459431 40942.129938311984 0.04542629666131893 4.548802089485744e-06 56679010.28914013 5675.602445769325 216058 18329 181782 WTC_20210206 13571929.451558266 358.0888985621415 0.46744261957121636 1.2246026665323767e-05 10847175.357247878 284.1734859139488 54862 19042 815573 VIB_20210805 6366873.518740772 159.9395245151003 0.03484903783831914 8.763563686551614e-07 940164.5386642319 23.642523069494334 32704 1277 None BLZ_20190803 8029230.985351968 762.8385505988555 0.03848714749071755 3.6567272509830584e-06 505749.657035559 48.05210761601144 36502 None 1145955 POLY_20200208 16631730.749513779 1698.1323901494432 0.028234541650172508 2.8800099899232283e-06 6543391.281375842 667.44601317882 34843 4996 349542 NMR_20210506 387444765.9401641 6765.724257879873 68.125763029191 0.001189607220272612 49026379.458870865 856.0951451377854 27973 3199 699246 ETH_20191203 16190436587.112755 2215351.0753618167 148.86726798663648 0.020375908130614958 5011809194.132204 685981.3113314897 447657 448196 25110 BAND_20200109 4017856.155506912 499.2937400515405 0.22623390336577945 2.8193652300082133e-05 789324.2315445674 98.36692292850756 7632 997 703160 ONG_20200418 0.0 0.0 0.08412523643810253 1.195021266129255e-05 11421687.58344421 1622.480974225022 84076 16502 204987 STEEM_20200913 68857244.44425727 6603.560586568755 0.1896632487558901 1.8163677584209243e-05 2370421.0803349502 227.01058072369372 11744 3859 161191 REP_20210318 184662146.89058223 3139.289917678188 30.924429960724954 0.0005246561718645706 45360356.857746035 769.5725099418438 142407 10780 144967 NKN_20200610 17552039.07473314 1795.566160794174 0.026989050875918227 2.76377783065473e-06 2853858.740455012 292.2456056328971 12628 1004 247913 BEAM_20200404 15251993.907808207 2267.89955923854 0.2603846683205231 3.8700783976843986e-05 104053816.8915299 15465.443167061381 14950 1480 257482 QSP_20200217 10036689.040795032 1006.8274384168612 0.0142019633431142 1.4275573508131033e-06 492799.84164368623 49.53540714207437 55530 8336 377226 QSP_20200801 17124227.883154504 1510.8954994876356 0.0238806662590807 2.1084847401553737e-06 338043.5080974701 29.846720799135 55278 8222 304878 NEBL_20200907 7982707.096159211 777.356160759103 0.47362008298592745 4.612113220908353e-05 174685.77962559505 17.01090436529966 38797 5946 419992 AST_20210125 24305116.99441452 754.8720920840866 0.14087996523223248 4.366506052291761e-06 5827491.240529941 180.6202587394547 35254 3456 178843 MTH_20220115 7144433.477579246 165.64190157730616 0.02055692382337669 4.766071324437176e-07 234376.102500253 5.4339512606916704 22523 2092 894684 ADX_20210220 89730175.17628393 1603.8293404543335 0.7863066881897397 1.4054377299906314e-05 13588331.510068778 242.87665460201322 53446 3772 10332 TNB_20200316 3190178.19780064 590.4913778880713 0.0010232427763352725 1.90611466575421e-07 452909.0392213992 84.36869351811507 15158 1446 1775001 WBTC_20211028 13034763714.588018 222705.26920280597 58540.295777691426 0.9995849158812514 598733216.5184685 10223.465459445037 None None 269837 POE_20190701 14720065.303731432 1356.7215843763786 0.0057424747392487 5.323964453003512e-07 1937165.0883589962 179.59849260690046 None 10855 780853 GXS_20200315 16077766.872613661 3110.47607287767 0.24787094887940908 4.784136248819137e-05 6071099.399477967 1171.7777673638234 None None 822093 ARPA_20200621 0.0 0.0 0.014128275585158 1.5094095187779982e-06 3356319.3518275293 358.5759880724056 17029 None 1098211 QI_20211207 168918596.5362302 3347.3059419824485 0.17845844844489292 3.533328608342741e-06 30903173.665201478 611.8570936335246 None None 875386 XLM_20211207 7310496919.238273 144768.00444554232 0.2968498946481675 5.878446751682983e-06 1062124001.003789 21032.985007407005 700076 208149 25085 XEM_20210617 1487753421.3280787 38896.62748739008 0.16545065302172735 4.325206324817779e-06 83868809.76550099 2192.4960695383106 369577 21609 60595 LTC_20210711 8966030305.120094 266117.2364987288 134.31769277878755 0.003986630872166946 1457367366.7628796 43255.55045078247 188384 338639 73715 QTUM_20190627 495807208.81481755 38176.415046300106 5.219221403918086 0.00040190230359684974 1352844163.1548917 104174.769280977 178211 15343 453664 BAT_20190803 300717484.4107786 28576.44409157654 0.2355196376893286 2.238085281966474e-05 24904497.5144741 2366.6132424778534 104849 29175 37775 AION_20210212 58719022.76326489 1231.4334336159723 0.1207039818394188 2.528034691469365e-06 13529778.124898463 283.36884953083285 68523 72615 360629 ZRX_20190819 105056293.67904209 10179.888239339698 0.1747771411927669 1.693588009088453e-05 36165475.46550962 3504.4294221414193 151266 15899 173586 ONE_20211104 3234130100.053722 51315.78267896632 0.2998432016326174 4.758013589733984e-06 260787336.41061935 4138.261877928386 258609 39262 15128 AKRO_20211221 56797454.785602406 1203.879729722535 0.020927018395207973 4.440091643725918e-07 2540527.427400027 53.90244509766562 50345 None 242863 SXP_20201115 72278086.62060368 4491.439264003085 0.9380473879465686 5.829229470454454e-05 31927795.800585657 1984.0623256234362 89328 None 69849 ZRX_20210115 373651593.5267136 9567.099543187052 0.5006460700773956 1.276205115034194e-05 111780660.52222241 2849.4191654856645 None 16343 98378 DOCK_20190213 4616785.880808555 1270.093882233041 0.008920490753829202 2.4549319774219404e-06 380509.5802270117 104.7167876737845 108 15365 158551 HBAR_20200106 22405749.964255515 3050.7988887522283 0.011528205476564286 1.569560354702898e-06 3382955.49305512 460.58797567565216 35081 6145 146335 GAS_20201228 21604222.63871488 813.7281696924906 1.536998857088584 5.811269441225786e-05 2113240.84725105 79.89994202625702 326206 101171 122618 TCT_20210707 13350047.6200818 390.85215476950134 0.02305346849332869 6.752625265409375e-07 3816697.206660526 111.79543761743042 None None 405222 NU_20211204 547043280.2450292 10188.00590884573 0.8474555628481454 1.5803733227917538e-05 78488738.60343903 1463.6933671373774 None 9569 129036 ZEC_20190811 404467431.2625704 35710.12795650802 56.508958046001425 0.0049913045906741895 176278805.7352783 15570.296157094284 97 15350 186923 BCPT_20200320 1480519.510360434 239.4031851874074 0.012738684534594044 2.06100148504121e-06 216641.14342779014 35.050535800079 10656 3168 1690012 BAND_20200423 12957998.407235082 1822.839293084613 0.6490106030441641 9.122688544714647e-05 4218775.138054092 593.0037420672782 12466 1097 683896 ZEN_20201208 125596355.3040971 6539.0729193676825 11.89676958734882 0.0006199948667144656 9625193.649890073 501.6126949630519 None 6238 299340 LTC_20190923 4595949670.918117 457192.4487322854 72.5326173146601 0.007220854113212867 2604666812.601454 259302.91451816735 450970 208592 127570 SKY_20200418 6855180.761373455 974.172471873825 0.403245927139615 5.7304263051401474e-05 151332.08294423978 21.505421147504226 None 3825 410514 RCN_20191127 24327103.560944643 3395.162310229234 0.04761491898173164 6.653073343881568e-06 4210511.0701467665 588.3206264754825 None 1133 778517 IOTX_20190626 32788101.365433462 2777.1352613842714 0.009382319910551192 7.93582835663003e-07 1704970.7464333118 144.2111900443103 19544 1738 766707 CFX_20210718 173005542.43817514 5473.222102030406 0.20187338332090987 6.392646335149616e-06 2246283.5505994987 71.1321922247656 37295 None 173501 REEF_20210823 331689913.289393 6723.432757012725 0.026189974913438052 5.307856853498108e-07 154319362.6227506 3127.552008857956 None 12762 76465 LTC_20190426 4394392105.198282 846125.4452729931 71.5965131590153 0.013760288910676268 2975232689.8076563 571816.4137031961 443456 202443 217185 BTCST_20210620 182987935.1206481 5133.0294875088075 25.046236519740553 0.0007034745353295547 4581388.491518782 128.67762139414347 None None 679829 SNT_20210219 415466862.59407264 8038.110196647084 0.10775179316561749 2.084155898397295e-06 72159264.8710772 1395.71837355795 120467 5789 158734 IOST_20190708 158510824.53680095 13876.032919126112 0.01320793972533509 1.1555014778807819e-06 47308610.00547141 4138.811193463474 197893 50346 104916 ORN_20201031 18161852.16167883 1337.2334162217564 1.454470379496736 0.00010716974557050325 2224661.6019528857 163.9197478495601 13833 None 197710 OCEAN_20210115 182578086.47758278 4680.522768226266 0.4377054886655786 1.1157622458260738e-05 34929363.16521581 890.3901298864515 36731 1385 63800 ELF_20190205 30179932.793762792 8711.715712766978 0.10026555778746961 2.8942577214981905e-05 2806193.093884267 810.0334959692849 85341 30462 921506 GLM_20210602 304799427.8556399 8306.961318805248 0.30464319550518937 8.306142242345108e-06 2881694.0213020802 78.56981804618323 None 20990 141932 CVC_20201124 57067594.00916269 3116.0709383289513 0.08619001753982068 4.696375207883179e-06 78559428.30363744 4280.594922262579 85644 8014 225858 OST_20201014 7199458.62053382 630.1845766430051 0.010342669730646029 9.05430947066251e-07 2347836.439889504 205.5372381298137 None 747 789125 KEY_20190117 6699167.104362159 1862.5938761529117 0.002728155190567328 7.587814869583446e-07 528192.0547035313 146.90599495704825 23549 2808 659258 LPT_20210804 382476997.9618085 9954.987566590324 15.926693609350725 0.0004162442141707355 16049930.48095977 419.46501040364916 14785 1252 108437 RDN_20210704 14979397.3000204 432.3273940296836 0.2947142862408284 8.484809081462011e-06 97265.8293472419 2.800278203978974 30084 4675 857508 VET_20201115 727627924.2648947 45206.007223485234 0.011238419454982227 6.983797058666574e-07 106350739.15969579 6608.865083792817 None 68126 103170 QTUM_20210819 1369432763.7208993 30381.074225646138 13.124850978750436 0.00029142459567136714 659236653.8396553 14637.710981100778 251531 16830 227670 AION_20200417 26258241.932030115 3698.0751120085233 0.06388887949092668 9.012568014105907e-06 2244846.3350794483 316.67217264302116 487 72553 308963 ONG_20190405 0.0 0.0 0.640880412307945 0.00013093144785041163 7429857.402943028 1517.9149938225848 72953 11337 248801 GTO_20200412 5733748.754364997 833.1053309882111 0.008626459391859643 1.253387966608204e-06 9735908.136184216 1414.5861642160446 16810 None 1069804 POWR_20210724 76868382.50102544 2299.6187992460877 0.17763608890734942 5.312502516403961e-06 7174647.279069169 214.56975302043386 91526 14011 159703 THETA_20190104 37181438.74281528 9860.607585770302 0.052573298916892997 1.3940466215052694e-05 4333082.199627469 1148.9708132343087 None 3807 530931 WRX_20200806 29560334.07474994 2523.3988716639115 0.12885797474889882 1.0995784868899057e-05 4618205.536442835 394.0834446454617 35173 None 17175 BAL_20210523 325639130.2004772 8663.07372928938 30.12318493071944 0.0008016048022695262 48441635.440121755 1289.0750990607107 82110 None 46563 FUEL_20200511 1989829.8812210285 227.68172826453846 0.002013655691654672 2.3e-07 15894.973831892361 1.81552586 1 1465 None LOOM_20190509 39378707.725098595 6610.659654088395 0.05689386799735461 9.54977817224425e-06 1429892.7624803896 240.01107979545668 19369 None 495542 AUTO_20210707 28576224.66152789 836.593891835994 890.1092010236413 0.02607231914601032 2295871.1888808566 67.24869969414235 None None 10455 BTG_20191213 100310555.08062874 13917.806146807801 5.721824513184214 0.0007939439122232544 10784447.342384852 1496.418894786025 74680 None 285309 ORN_20210107 44652561.12976073 1212.3429691120634 2.6702633627110695 7.229796968158556e-05 7371255.018111802 199.57835592426798 31110 None 137368 SUSHI_20211028 1966460729.2284164 33598.627360880004 10.183023284322005 0.00017401518137174542 491988512.13664186 8407.470726703059 153342 None 4331 POA_20200718 3986946.050028477 435.584790816553 0.014373401839395075 1.5702162188478478e-06 273042.46690448513 29.828409082153183 17246 None 642825 IOTX_20191011 24566687.187819425 2869.1107234373762 0.005962788152383356 6.963860979216933e-07 2189605.247678571 255.72108474292662 22512 1777 588755 OMG_20201014 495405513.0915384 43363.799978148265 3.5342890202625776 0.0003093092132444511 160361143.07910424 14034.273574234601 286279 42829 98384 XLM_20201130 4191470984.1032853 231087.85025544543 0.19418826776459067 1.0687454053827993e-05 971536825.1010742 53470.043784813 293696 113166 47328 TROY_20210428 43672023.75899027 792.6708533821029 0.023284369849641877 4.225410769298825e-07 19310867.318487704 350.4339918105779 15827 None 495335 GLM_20210805 387031669.3711815 9730.549891686282 0.38876740495777823 9.776642780721012e-06 5539652.074583046 139.3100315818926 158863 21054 227363 BAR_20210916 55420727.74967321 1149.9877864494042 18.79326515918552 0.00038985010675808026 22402423.694535088 464.7189934786593 None None 34977 BRD_20210108 5091230.0402682135 130.01586241710976 0.06825782703489029 1.7292089376298194e-06 675067.5505127797 17.101816634946218 361 None None GRS_20200530 12939498.842885735 1372.9294922859299 0.17209317699805013 1.82724031600045e-05 1080811.928296526 114.75778202525576 37375 106877 None MDA_20200223 13383255.210620303 1387.2075085449667 0.6831787663217753 7.077409765041257e-05 326948.2669801919 33.87029825073726 None 374 2393526 OMG_20190729 216642078.49332792 22692.733203733565 1.5442916429767068 0.00016187237429558723 101341814.75092709 10622.63092840137 289582 40750 None TFUEL_20190901 0.0 0.0 0.004774290466285242 4.973834396312362e-07 310251.85378931346 32.32189898780167 70148 4027 310301 CND_20190325 26046412.29624765 6522.1627161694305 0.015053732132644335 3.772512330908716e-06 309567.6257842183 77.57861474023417 36718 6208 587150 XMR_20190712 1524995529.226249 134762.73833258695 89.345283026319 0.007873032873642974 218008939.005794 19210.76844129571 319850 159354 104259 NPXS_20190906 86394937.21178336 8174.324849944805 0.000363167119177493 3.4360028900167695e-08 2298655.081555721 217.4807433356063 64993 5465 165759 ARPA_20200713 0.0 0.0 0.023916612821885133 2.5761855398098903e-06 17992027.038667887 1938.0169020619433 18773 None 769985 AMB_20201115 2295954.7440132247 142.64288557577632 0.015872784413356524 9.867415413441902e-07 449764.27509869187 27.959876635065296 20150 5493 433518 MDA_20191113 14051103.928630676 1598.630024887517 0.7167799505430538 8.144308554288405e-05 1574790.541459697 178.93329840358453 None 369 2018091 UNI_20210217 6110386492.831019 124263.69423941724 20.433062816515477 0.00041525823131931033 950433946.5471517 19315.534003546298 214173 None 3373 C98_20220115 448321148.23690534 10399.809477241643 2.4247234644459756 5.62383152142101e-05 23947514.155201655 555.4315242149527 None None 36297 ENG_20200520 21152948.9272648 2168.4034006090187 0.25510521909664025 2.6131544322211373e-05 1705191.5425989726 174.67023423148729 60519 3576 481598 BTS_20210221 157580136.9910838 2802.757391568108 0.05814344699922633 1.0341530281671906e-06 57903218.65485126 1029.8802703138358 13359 6967 134881 EVX_20201030 5084118.527483281 377.4371806416232 0.2334671706204411 1.7362335336177643e-05 99863.4800962872 7.426582609716317 16724 2814 1286952 CELO_20210206 312670416.4015782 8250.999274580883 3.197513264167842 8.411973310165605e-05 31482975.037746836 828.2497173973721 13561 None 140742 RCN_20190603 18108172.173297286 2070.495845295498 0.03617672572579609 4.136836509664722e-06 3609995.307847106 412.80574981863185 19020 1122 2270629 GXS_20210204 29729546.42957759 793.5511032668961 0.4239212767744793 1.1301563165162643e-05 21550636.236377206 574.530909436821 None None 429351 XVS_20211125 274667286.47053313 4801.253115357402 23.84190761831085 0.0004168242411345823 20401741.54461735 356.6803702665087 134998 None 27675 AE_20181231 90522299.39869191 23828.24948391121 0.3970236884868702 0.00010446128772560505 8424759.33385691 2216.6465989651088 951 5113 423580 HNT_20210105 84142837.85972364 2689.4472335811843 1.3282977265361204 4.2456217746783727e-05 1542926.8435927846 49.31638196035989 18362 2107 70077 DREP_20210513 0.0 0.0 1.1305377648122832 2.2537602369035733e-05 4675057.288845293 93.19864007015492 3899 None 195950 XMR_20210125 2457677915.3692346 76178.95616666318 137.90186846280548 0.0042744496043334215 504356912.6369968 15633.205189279262 338119 190978 53273 ETC_20210519 11207341602.181559 262932.9812700758 89.27432164686766 0.002086781013317906 8580965256.826389 200579.46163642677 420823 55102 91962 WAVES_20201015 251171620.637116 22004.53385253684 2.510477088062468 0.00021993173717032934 36794050.31508025 3223.3631773845323 145362 57060 143091 BCPT_20190123 2844263.8092478844 796.3314565602844 0.033903274540028866 9.492172951342235e-06 1637197.6724918778 458.3794242199071 9940 1328 1188589 MIR_20210428 590027126.8195109 10710.107580725115 10.025550514459196 0.0001819335003931696 56631218.92246561 1027.6857989231173 37334 None 17155 RSR_20210301 496383187.1278341 10940.159005423824 0.05216689376871614 1.155763772046089e-06 208823169.5252234 4626.502301845448 60000 None 104993 EGLD_20210220 2455114886.3970103 43953.51957958919 142.45592243674037 0.002546864580548543 302019002.639659 5399.57544283299 157490 6433 32014 FTT_20210124 871884312.598073 27232.396764357003 9.726573284002587 0.00030350668205115323 13454937.853274306 419.84606765552286 49525 None 4837 ONE_20200927 38172941.18871339 3555.0938873090568 0.005367574628356745 5.000091451164296e-07 4627611.54262901 431.0788860087494 None 1485 118453 RVN_20190603 261970824.52798122 29967.60911899922 0.07164692613467595 8.193394663311317e-06 99865573.76029783 11420.420989982053 24787 6551 169696 MATIC_20210806 6864595661.622405 167545.8972668966 1.0639511942910354 2.6003369213170913e-05 576310795.4031671 14085.253604504578 565422 None 5735 LOOM_20210105 24434706.385043465 781.0035311642324 0.02944436906775952 9.411267666755792e-07 7676825.90936061 245.37344745888345 22895 None 358251 CVC_20210427 350612549.9388925 6504.133343948065 0.5233023133416306 9.707661707385172e-06 67649256.75225808 1254.9459128384087 101446 9611 120797 WPR_20200621 4956301.74315061 529.7868333653306 0.008153074721384811 8.71042507458909e-07 194755.50287008105 20.806913631789026 32940 None 3933939 SUSHI_20210828 2353365858.939392 47984.089562429006 12.187474910362269 0.00024844740150292363 345760639.64366513 7048.493071228312 127710 None 5258 ARPA_20211002 74814284.53710358 1553.4540899353497 0.07604280921455374 1.5787228190240937e-06 42764908.85843434 887.8411800622234 49139 None 652155 FTM_20190909 34828061.77425726 3352.148655354579 0.016753482237704845 1.6119725885917583e-06 2513839.580974075 241.87452131756584 18881 2137 342679 KEY_20190613 8943673.262412732 1100.3140864764075 0.0034599259339502544 4.25478369416897e-07 398159.56762449123 48.962979796272414 23927 2833 681571 AMB_20211216 16453280.566682262 337.2514265703462 0.030254455138261034 6.199998779766335e-07 165738.03541448532 3.3964439704325198 2657 160 615473 RLC_20190228 22492436.50024691 5892.305953361426 0.32084307425031133 8.415174604307655e-05 1256993.7980949304 329.68834724629926 23899 3266 504378 TRB_20210702 65235119.46553284 1940.26555310546 37.21143351691865 0.0011063188206139195 39722100.2875012 1180.9624889187853 22994 None 263441 STEEM_20210624 91857423.89984342 2725.6189077772915 0.23850473559356936 7.076978531828437e-06 5486171.62009972 162.78720286516182 13930 3943 208449 POA_20210813 11857044.750500452 267.2847029558568 0.04134641504687955 9.299905039823945e-07 577102.9737019185 12.980576060929641 19960 None 221231 QSP_20201231 20619789.887043234 714.0548312703162 0.02865201054519875 9.936966886401138e-07 358540.18698342115 12.434736333347299 58282 8181 261648 ONE_20200621 32698520.81577058 3495.1959538495425 0.004885005188867577 5.221066701117972e-07 7422413.289362863 793.3034535017865 None None 151549 TLM_20210508 666427293.3234879 11629.750994260345 0.5361535288512782 9.355351372649163e-06 152249009.12918591 2656.5953591556013 40958 None 22915 ADX_20210511 144536267.82498184 2588.7028046582013 1.221225652118436 2.185623020685576e-05 2605541.237247857 46.63127489662502 None 3820 10477 GTO_20210202 28014219.943151318 839.0068109798672 0.04230336472870239 1.2666260418789665e-06 50180098.721873425 1502.4672442203614 None None 738206 ZEN_20200324 46895666.714235485 7237.152532435606 5.393855924069055 0.0008324043732727118 3458869.9382359916 533.7885371245027 58197 5089 39151 QTUM_20190130 149822830.19553187 43869.285886903475 1.8423611908915674 0.0005397435116058819 119887339.69901489 35122.544941863125 174368 15202 247335 VITE_20200713 8060702.347216129 868.5629512074688 0.01589550078908534 1.7107938236652535e-06 1724052.5377958461 185.55555263542342 None None 603624 REEF_20210804 192215900.81629792 5003.577116437059 0.015169639998216987 3.949493671521825e-07 28002871.992574524 729.0691521493472 None 12573 58529 TNB_20200621 10117979.169612244 1081.5265942460117 0.003086887030329228 3.299247894535199e-07 3403878.3219622187 363.80464450589596 14887 1436 2259871 XVG_20201228 130350782.91543044 4909.693154600168 0.00771603066275127 2.93404052783852e-07 7707731.481046309 293.08847426253016 288542 51320 245482 PIVX_20210201 32685534.303104106 989.0242072811873 0.506176185245447 1.530915746312087e-05 1067163.2792721062 32.276055566136606 65013 8759 328598 LTO_20200306 14212011.208003037 1568.0470557345227 0.06750988033730082 7.44839632925414e-06 8462316.566654725 933.6513016633447 14321 411 867701 HNT_20210809 1336461366.02826 30379.413020608943 14.312465496752832 0.00032536943459235635 23500873.693474285 534.2521865157975 68062 44990 2417 BRD_20190716 18760526.841547098 1713.4995058153008 0.3119030319843358 2.85554536702712e-05 388461.91632098425 35.5645989832049 None None None STX_20211111 2212413410.3542914 34088.40966625823 2.1111880226363633 3.250166676317815e-05 51268549.7041411 789.277553703913 91814 None 53352 XVG_20190819 86430133.22841667 8387.16927686531 0.005447849049449805 5.278931183087756e-07 3403661.029029441 329.8125953878749 303263 52821 316359 KMD_20191220 63742352.97521226 8924.605791413607 0.5433637122568072 7.60412674203038e-05 2187249.2057189327 306.09552683619927 99038 8406 213370 ZRX_20201231 269553733.2439248 9334.534763165551 0.3608675898159081 1.2513523092421126e-05 42850408.03265139 1485.890075941126 162924 16316 98555 HBAR_20210108 261502708.22815326 6680.772330085432 0.038953986170491846 9.871161152732848e-07 45477882.948849976 1152.4353618354003 1191 6902 206193 CDT_20210314 25423725.135386497 413.94939076315455 0.036056594348547175 5.877608623395716e-07 6852996.984717621 111.71114438628089 20221 303 521733 BTG_20190130 170743225.77673018 50021.433755370614 9.757899355515933 0.002858459858538894 237058182.00010157 69443.35790904143 72811 None 284673 TROY_20200329 3387951.7338437946 545.1029608598056 0.0018146327836316258 2.9031109051948265e-07 386751.58458264585 61.87382664586455 8776 None 356286 CTSI_20200625 7228407.68587003 777.5926517855685 0.03639192734268734 3.9152428641073714e-06 2500773.8986047544 269.0469528876349 14698 116 235006 MITH_20200417 2404569.5287437863 338.6698405085106 0.003947394435185911 5.568443383119376e-07 2840967.4255413623 400.76477084227395 96 2094 1180459 XLM_20200217 1507725825.81153 151614.94016729703 0.07491569330037497 7.516083498168012e-06 452653903.70703244 45413.50932164076 281488 106421 78179 OAX_20210115 6872675.7980148345 176.48054651876956 0.12547520818381558 3.198509127803814e-06 209692.1540419825 5.345297118372384 None None 1823390 ARK_20210408 370078806.90211767 6570.2014065576195 2.3859766410589716 4.2426672554404634e-05 12507756.464951208 222.4089200190987 71398 22580 70412 IOST_20190224 110179343.46299687 26776.52703499701 0.008218999329227554 1.997436641230262e-06 11833503.58664957 2875.8578400230895 195088 48180 81938 VET_20210217 3202149050.1265697 65111.300157271406 0.04942700848524459 1.0044183513570219e-06 571464056.59497 11612.861129482844 170071 84469 71018 DASH_20191017 620315893.9375393 77479.83726825089 68.14140140069217 0.008511122709178564 250071952.0424819 31234.94712769087 317947 31311 74820 CVC_20190426 23709860.349268958 4564.530737371904 0.0693059266812082 1.3320056135100867e-05 2811077.680260994 540.2671069306712 89148 8207 448453 MDA_20190220 0.0 0.0 0.7710848957161367 0.0001969744209042246 1985674.1023314153 507.24246912915027 None 348 1845971 NAS_20190909 30231037.15833018 2909.691937987038 0.6646347605242284 6.394927336235248e-05 8371010.231510519 805.4348845547648 24160 5095 765651 ARK_20200117 21100101.759088907 2421.5314013356888 0.14780343274331031 1.6962508413447e-05 590943.0717749762 67.81897173024173 62667 21645 90381 POE_20200129 3812646.2800411345 408.1316308761394 0.0015161970964211256 1.621532350200988e-07 29626.170310091493 3.168439887121 None 10507 564904 XVG_20200610 88557910.24307726 9064.520329839734 0.005435435188720714 5.563547359512888e-07 13836911.395881081 1416.304475860866 290971 51736 276574 HIVE_20211230 557896311.431965 12028.970305053692 1.5232796717157355 3.273782953618126e-05 54490356.51627835 1171.0889576740594 None 200 74607 GAS_20200315 11537158.312241882 2232.0298063506075 0.8356213240661057 0.00016086712647821015 1267477.488097143 244.0046172994469 322692 98957 240012 MTH_20190213 5121064.136886297 1408.822587553747 0.01700473173788427 4.679726806834505e-06 264331.88639451354 72.74451803939164 18640 2015 836178 KEY_20190302 6472046.774897993 1692.812573752891 0.0025247444969289483 6.602738891227046e-07 259168.7142677097 67.77808016479356 23390 2813 779936 NEO_20190318 594912955.2533097 149391.6021423927 9.157088873206925 0.0022995963454283653 258976706.00991917 65036.15886420028 317839 97818 162875 NAS_20191022 21601946.216914322 2630.551872052529 0.4749243606463166 5.778902286259942e-05 5883295.229318018 715.8821713247022 24012 5071 1447881 QSP_20210112 19071424.92476608 538.390851953201 0.02705762524683113 7.61184714841356e-07 598710.8906387249 16.84292595547073 58307 8171 263794 CELR_20190903 19575460.701503064 1894.4208995827817 0.006015689397962217 5.820247427312131e-07 8375225.528015879 810.3125279224973 18303 None 503834 STORM_20200319 6610323.120037848 1228.283407483054 0.0008753078868816868 1.6237885634184054e-07 367515.72156085924 68.1780473466304 26057 2525 875750 POE_20190816 5205250.746560977 505.3704048390945 0.00206897674178888 2.0076962267401164e-07 77877.06451045914 7.557044282288983 None 10767 737221 BQX_20210508 879775531.0586407 15353.756052011082 3.959109331830886 6.908307940973756e-05 8037945.320651363 140.25528681747596 71891 5060 19051 ZEC_20210217 1668568751.6778307 33928.05241818603 155.730536154004 0.0031648895511371873 1985897045.8875937 40359.10339349496 72784 17449 114224 REP_20210111 120482668.02234356 3132.524491471832 21.16145127931051 0.0005501933638723441 46480818.07097543 1208.4916725447601 136444 10452 135410 BCD_20190616 230669146.85103902 26139.797132569223 1.2268514063046903 0.00013899912816591357 7209855.709056308 816.8582214690575 21309 None 3124822 ARK_20200905 51769356.22395785 4934.513680883188 0.34224642231301367 3.264074303338298e-05 1426431.6334090703 136.04170961416597 63052 21814 112680 STPT_20201111 14614885.338082656 955.2781794297904 0.016012553483382354 1.0482028220587981e-06 1993892.1598859555 130.5228045634541 16434 None 1333112 THETA_20210806 6926701632.625011 169060.8617616126 6.958429414838443 0.00016983841719874282 596883813.8850343 14568.488973332045 185917 22331 19933 GVT_20210509 64123531.32364339 1093.4452097533613 14.487278873459069 0.00024675544009041916 8056462.738139784 137.22218132790627 None 5615 216420 MATIC_20200324 30611788.823553145 4751.446952669101 0.011173782129145013 1.7243888678584034e-06 17123548.46057201 2642.5838630436633 32903 1588 190232 BAND_20200725 85756286.17314062 8990.134520534295 4.195361346308554 0.00043974858358885883 14283666.944593512 1497.1826712535185 18794 1411 306961 ETC_20190804 660010731.9554504 61168.8532493686 5.873226461698591 0.0005442170737275182 476504748.86858726 44153.24723772531 229314 24868 465281 NANO_20191113 136989828.03537548 15565.271147354624 1.0280233470736984 0.00011679398358305817 3280004.2681234134 372.6420861296874 98174 48148 297643 SC_20190627 139846746.63730404 10723.857216209211 0.003391772982668115 2.600910643296042e-07 8165421.774038408 626.1484040241214 109535 30855 233756 DENT_20190906 33276397.571878787 3148.378550003027 0.00045196629371661227 4.2761869922610425e-08 665888.3271596128 63.0016672146749 46526 10147 253321 LPT_20210616 629904476.9503112 15597.429304448675 26.49854051024593 0.0006565442038727216 7225305.020688379 179.01861918437422 13117 1068 95239 NPXS_20190528 202752781.41911927 22993.77695111326 0.0009484216962140157 1.0776960436473174e-07 36489744.6779513 4146.346886633753 60981 4421 188211 PPT_20200331 7332838.034817203 1141.3059841853112 0.20181158815306804 3.147866962220925e-05 1792003.7221113485 279.5176116810854 23990 None 1060560 MANA_20200331 33268924.923232235 5178.080154233671 0.02504371628762858 3.906331040478539e-06 21213235.85620567 3308.8508407605514 47974 6808 46696 FIS_20210602 35033610.886692725 954.8364190258432 1.2999796793905276 3.543925547556199e-05 7577038.729367299 206.5606220892378 21537 None 289115 STX_20210723 1111065704.8632967 34353.18112434942 1.0430492573506733 3.2218676320239615e-05 24943914.69260154 770.4908545564571 69298 None 61461 TKO_20210806 123080217.10009238 3004.0495356671317 1.6410498663869033 4.010787882175226e-05 18909707.145324726 462.16038785545084 306554 None 21500 TFUEL_20210804 1604609122.4899087 41764.24712792662 0.2958998134937716 7.703103270218888e-06 35296055.587877005 918.8554667018269 185561 22278 19933 ALGO_20210722 2424944936.265105 75353.32156138157 0.7780977249858892 2.4092424956439418e-05 178512905.05872813 5527.337544858387 116576 35918 209093 RVN_20200417 100162234.52774797 14107.276827303971 0.016907348590923774 2.3833965407354076e-06 15363238.267952265 2165.7262666239626 30361 7632 218336 SFP_20210727 95762480.06461905 2557.868449152818 0.8823628182554893 2.3648454592103223e-05 33635380.939076975 901.4713249119931 None None 24694 CDT_20210107 4912955.495854309 134.24358475194754 0.007343583217841673 1.9898011948370164e-07 269074.3223920127 7.290778797124413 19249 293 987559 CND_20190714 20820467.620142113 1828.2765829902683 0.012002631622202225 1.0522761780945376e-06 367952.30639003176 32.25854619856544 36221 6140 575045 POA_20200301 3131559.56397563 365.48236332548686 0.01428157801058697 1.669792025790762e-06 464270.19785449904 54.2821440050293 17454 None 535987 BAT_20210418 2217663850.382295 36802.39821046028 1.4821059881752239 2.4591139948344206e-05 513729295.9383341 8523.809439254715 185608 67729 19254 MANA_20200312 46489570.216867745 5861.220631891842 0.03505547669868683 4.415968093641934e-06 19111005.29308736 2407.42952483819 48079 6781 51080 ROSE_20211221 888399838.6625754 18830.536714926162 0.25260524057485434 5.3597967538741e-06 90599545.20796567 1922.3478784646518 None 5901 45093 LINA_20210819 145351688.51377532 3226.419890486477 0.052110264406546564 1.1572376695104863e-06 50584997.84890125 1123.36534250057 None None 115735 NULS_20201106 20210458.174934387 1300.4187673469087 0.2055089561121585 1.3190031189947117e-05 8295192.645860098 532.4042893089339 29636 5144 360585 KMD_20191022 64873951.63647708 7900.219332150363 0.5571429974841762 6.779342583213505e-05 1833858.8303112013 223.14481768720316 98175 8403 214923 STPT_20211021 218004771.12033737 3289.0231953116777 0.16914358405601898 2.5612822127034835e-06 567516854.2343544 8593.709494050196 None None 695224 MTL_20211104 219567090.7285126 3482.208203987174 3.3985397073621133 5.388911909586477e-05 22333430.876255967 354.13119161228786 None 4417 175688 ARDR_20211125 317740298.40881294 5555.002598047665 0.31805851754591025 5.5605659721055865e-06 6997423.70397331 122.33483461137808 75418 7403 None WRX_20200721 26400573.990298104 2881.447976363274 0.13581204339016903 1.4824629271649322e-05 8221215.104613774 897.3907103234494 33211 None 19543 AMB_20190510 4771860.369252285 771.9373284560126 0.0329622417135379 5.33876566604167e-06 750416.6959505101 121.54206398891827 20699 5693 611574 DCR_20191030 166029881.26599917 17643.063479555763 15.659364125785112 0.0016643262847031678 14119658.786559869 1500.6815768985398 40623 9655 135598 HARD_20210203 39363751.63184073 1105.3219414195141 0.824708337533046 2.3214848201270896e-05 7038006.23458075 198.1139742859013 16146 None None ETH_20210127 155446593758.92108 4770175.324701762 1355.233724240999 0.04159429833694649 40367492548.543144 1238943.1417956538 612933 549038 7694 APPC_20210729 6586377.450610417 164.7226877321028 0.05825733922048059 1.456000070303233e-06 86105.02197604351 2.1519849640937063 None 3125 778412 SNX_20210708 1703501726.6213787 50133.824975981275 10.747917162962587 0.0003164244677448893 173875334.86809114 5118.983469578091 140516 7115 47664 YOYO_20210519 4698402.803775889 110.17774312407515 0.027253007441739523 6.36567769107286e-07 1420249.0485956336 33.17376147839783 9922 None 759242 BTCB_20190902 0.0 0.0 9726.159352463947 0.99996982424638 43167.55264246608 4.438159859893492 None None 70056 REN_20210603 528098245.59176373 14032.888354871595 0.5990632361447915 1.5929200029946955e-05 87300480.04663742 2321.33558774615 81761 1169 81558 CELR_20200718 18016075.741189655 1967.8207885830932 0.0046700779832862934 5.1018069866674e-07 3807423.3264840296 415.9403546959111 21333 None 610073 VIA_20210519 29930320.152884115 703.4532110869089 1.3012389113078409 3.039395753358936e-05 636878.0468798816 14.87601096364925 38423 2284 795875 ICX_20210108 333483312.23500085 8519.705589362522 0.5782857390618815 1.4649995640478398e-05 75673020.99372052 1917.0616751820073 117520 28072 340142 PIVX_20210617 47137410.741651654 1232.5400812133262 0.717218987431759 1.8751750711740846e-05 526644.0908207486 13.769154021207088 67229 9820 321075 NULS_20190124 15887095.171119759 4471.942687655789 0.3971773792792778 0.0001117985671917561 7548932.591191227 2124.8940436985313 19617 None 403917 WPR_20210509 28942470.218245465 493.4088783718434 0.047606038432496244 8.104190386859133e-07 583298.8104205813 9.92975842503636 33692 None 7374795 MITH_20200322 2283014.1186459125 370.5204354041197 0.0036944977786701554 5.995466742718993e-07 4695014.267316952 761.9114581365969 94 2083 1254611 XLM_20190124 1932738540.0019083 544443.6055762402 0.10108401875445125 2.8461626260822197e-05 85480060.5667791 24068.112512562515 261339 98873 59724 SYS_20210602 149334358.5487529 4071.6235979548665 0.24362974421409542 6.642601376842375e-06 2031096.7281423314 55.378155760004745 73453 5393 376504 KAVA_20200410 10631268.870680159 1458.642404194203 0.5495135740385845 7.536411611577562e-05 5313318.358589675 728.7054599832651 None None 284724 LINA_20210610 95774741.72471057 2551.548852759694 0.038915167385638 1.0390219587706545e-06 18764432.19488455 501.00406613035653 39385 None 70123 ONT_20190618 941419047.8065552 101000.00516610839 1.5349478299245864 0.00016474103589895114 190656336.27409795 20462.534117551615 80408 16242 232873 EOS_20190615 6836201167.168879 785717.7701381893 6.545834776371475 0.0007539074202218813 2822715816.0306273 325102.3699169497 1117 66206 114129 TROY_20200411 3931503.2947566463 573.3609004983468 0.0020663595122756657 3.0128467269366727e-07 1074751.1045221353 156.70362917462694 8756 None 412780 SAND_20220112 4397446004.253542 102637.8347450935 4.771366690077689 0.0001115174498116569 767545582.3803728 17939.247079722667 741065 None 4051 ONE_20220105 3602803071.8242526 77786.01002478387 0.304183585821666 6.6111195616580195e-06 361872047.3450066 7864.919353085648 307114 47542 7348 ASR_20210218 0.0 0.0 6.487423161257753 0.0001244219418629233 2269853.894302693 43.53340644723806 None None 142530 SKL_20210421 377083543.8263515 6674.216477208275 0.5710824700877474 1.0128461706311621e-05 91882747.9203012 1629.5910705129193 21508 1309 134291 MTH_20190807 4534663.417587289 396.83614375022574 0.013199443727897943 1.1526605648599086e-06 630570.191281246 55.06545638206319 19488 1996 1172984 QSP_20200117 6771484.710161827 777.7357627548579 0.009498635217185882 1.090101067324987e-06 137565.34440734185 15.787544772121565 55588 8355 414921 OMG_20190930 111261206.55367346 13806.234125694995 0.7928785836670523 9.847112068970356e-05 45968418.5125758 5709.022516828958 None 41609 None UMA_20210111 527390372.2400021 13722.222300074332 9.489896832742177 0.0002467353581893861 25809099.346504685 671.0312539788906 None None 192669 ALPHA_20211028 428686955.3510594 7324.475415769884 0.9604482834598567 1.6412864586273636e-05 32232928.352408364 550.8205880293507 84822 None 56948 BTG_20190905 189763653.77015647 17966.77167844063 10.831079835073783 0.0010254837244198197 16591539.209264094 1570.8824679767222 75054 None 255203 EOS_20210902 5116019211.274532 105172.26050022448 5.307921100539845 0.00010909249300704824 1557985942.6496787 32020.930103181672 None 92708 80148 NEO_20210804 2932175704.3449607 76314.48452487202 41.34424977944974 0.0010805321670671118 365619871.5191137 9555.477102688039 408639 112549 120320 CMT_20190905 20006775.824648872 1895.9518502298808 0.025067556165677202 2.3738921832223334e-06 3165661.8933093376 299.78750116620444 290008 1649 567314 IOTX_20210125 54035195.239880346 1678.1477324071495 0.009429436806027652 2.925189976137726e-07 4389790.075291659 136.1796063724994 31484 2029 602191 ARPA_20200310 0.0 0.0 0.009086580679545948 1.1476716871536047e-06 2667981.722268765 336.97682246785246 12212 None 2543726 BAND_20200907 199728972.99561703 19397.806354733122 9.663093418761822 0.0009409815549895525 334571954.8818242 32580.254036386366 None 2181 119492 IRIS_20210318 231176963.4775252 3928.1400650434707 0.23966246582006953 4.0669515658700965e-06 68806081.57103214 1167.6046152207348 20002 None 577311 HOT_20210117 127621847.93129279 3516.752597974469 0.0007187507285725994 1.9822503241838883e-08 15868886.388152681 437.64971549765374 None 7491 800111 VET_20200520 289902970.69752485 29775.942933026014 0.004507574875582543 4.6193963140562365e-07 170395756.134613 17462.284033991367 120248 62062 302162 DYDX_20210930 1372576923.690931 33021.16440251482 26.799139902388667 0.0006444360190866881 1139487891.691845 27401.142103591297 71645 1683 31015 GXS_20210617 49307078.94147811 1289.1058318103055 0.7064768966078802 1.8446404503101624e-05 11492985.580769181 300.0866156970064 None 24199 544646 BLZ_20211007 76242089.91361536 1373.5034233490833 0.24708553130135497 4.454070673294561e-06 15723348.622911582 283.4358839971171 67454 None 328996 WRX_20210819 621934784.3023432 13805.293761470988 1.3713667117755088 3.044986873705434e-05 14214029.170132363 315.6087418038796 311556 None 1458 ELF_20210125 73240476.36843 2277.0424358053647 0.15868867095158903 4.918763859564146e-06 39293085.48203129 1217.9408122886216 82088 33326 473527 EGLD_20201229 381829624.23421925 14070.735011862856 25.443062316652792 0.0009367862585871539 108117603.66943808 3980.774176016172 None 3062 53733 AMB_20201018 2320452.128226431 204.30172820286046 0.016073186791925646 1.414285246227776e-06 213829.07466506748 18.814893986378642 20201 5503 395288 COMP_20210120 7899.949869921228 0.2182108512955684 8.554777759285368e-08 2.36586e-12 27.36851039930848 0.0007568877396379837 1972 None 2976812 ZEC_20211120 1888432321.5876343 32374.402914077353 159.88009785958192 0.002740909826038488 427183045.4605563 7323.426883615161 81787 21382 126489 PSG_20210825 104644218.65292375 2177.603047082054 35.747914252021154 0.0007452028264214155 128060903.86565831 2669.564071402408 10004470 None 16263 BTS_20190509 140234854.78469616 23544.5931712412 0.051756234171669996 8.687413472980211e-06 9034451.492286747 1516.4552999499188 13789 7199 176364 TFUEL_20210723 1515943495.178723 46871.64875686761 0.28509781569476134 8.806243201086489e-06 66814851.731079586 2063.8103885663445 183417 21686 19127 RAMP_20210506 177131340.18631303 3093.8223095778785 0.6434834417847831 1.122462552166196e-05 23427446.279068854 408.6574639466026 25696 None 97168 TFUEL_20210711 1847947271.149109 54803.08769133715 0.3489434585793215 1.0351588144174113e-05 60482069.2136764 1794.2318596727314 182080 21268 18384 KSM_20210418 4123298750.5917163 68399.4274062584 459.2536103074701 0.007621273308587999 321716118.83877754 5338.850723039418 50489 None 86081 CND_20210603 37047265.105696544 983.5229339898383 0.01921156501779685 5.097920825423946e-07 546117.4197960286 14.491601100305557 35913 6238 118506 NCASH_20190801 4588059.8514237115 455.73114357967967 0.0015810984559438447 1.5702368306073581e-07 304931.9543353304 30.28371723003079 60065 59027 884408 XVG_20190221 100929087.82105206 25424.218764871446 0.006415783870992934 1.6165429384298642e-06 876041.5697604798 220.7304425839623 304268 53444 414559 NAV_20210819 35327248.87234231 783.7089641585628 0.49463315994428886 1.097307188621487e-05 877051.7108084178 19.456745422632924 53019 14129 1077021 AXS_20211011 7134145743.373171 130387.38447657874 116.34809542763485 0.002125713175701114 472424948.6687147 8631.339724332809 None None 508 XZC_20200309 43141635.002789594 5340.304998560128 4.432901393742479 0.0005511006502534164 28519262.33890071 3545.529806257856 63724 4091 107900 AMP_20211207 2504924843.426752 49637.81362476234 0.05230444550863838 1.0363931144446488e-06 45492148.96264809 901.4099946512584 39698 41351 78917 NANO_20191030 115479402.48704475 12271.159968100143 0.8663996103813757 9.207343226223494e-05 2688911.9657037663 285.7542302268107 98161 47974 267335 OMG_20201208 504273181.7239309 26254.576405425094 3.588107934318734 0.0001868982387424018 212541184.9619427 11070.896934195034 None 42683 153638 ATOM_20190725 945373012.8641541 96231.26245610608 3.9008454040304272 0.00039780666905747214 177197388.3906223 18070.5194747079 27265 6212 109453 BEAM_20200807 29470758.359391198 2503.455115369266 0.4339928171491756 3.6860441264990445e-05 11106283.14751839 943.2932561433119 15592 1541 306109 SKY_20200308 8584623.203786772 965.8250230391711 0.5051422297760481 5.6807060084812295e-05 239975.98088911927 26.987112068068 16261 3826 308227 XMR_20200506 1060012211.3724613 117803.36648514333 60.401926276532684 0.0067127059303874045 121789320.32774149 13534.93080798501 319757 170323 81111 BCPT_20191030 3521613.2325091106 374.2335941210877 0.030317266231275796 3.22174490966815e-06 397657.8542856029 42.2581692577724 None 3128 1510702 GRS_20200719 14060510.5054109 1533.2539496467828 0.1864205424427615 2.033055282438094e-05 379511.4118849023 41.38855463930654 37629 106866 None SNT_20190923 54205897.76814186 5394.005507977222 0.015290084839257125 1.5221768645677733e-06 31709507.410490945 3156.7829135364545 111155 5705 299805 WNXM_20210620 119673457.94497405 3357.0102508514974 56.15652199101365 0.001577270229090748 10352952.770673936 290.7837524371552 30041 None 117784 ZIL_20200322 40505153.80088767 6576.7490629575295 0.0038982493562983826 6.326116774368566e-07 8516954.307388818 1382.1395859002855 68673 10569 233633 ZRX_20210428 1440774669.8029716 26152.783510738176 1.8188813840560563 3.300721057901345e-05 339919825.89579093 6168.5194931755805 209944 18976 55512 BCPT_20190227 2742643.0039804396 720.0410426317742 0.03265463883905178 8.570937657303936e-06 613541.5291711129 161.03764682902346 9882 1322 2528232 PNT_20200927 14073438.91527942 1310.9736125668855 0.5341719857642754 4.9752394891406115e-05 2280183.113236008 212.37461659866153 6823 94 264060 QKC_20201130 30924965.81994652 1704.818223264775 0.0052669912315493035 2.898770736105328e-07 1948036.7015008503 107.21323683519323 63794 9216 96511 ADA_20190730 1871322804.2590334 197126.8219951945 0.06033420796318712 6.3429930762580214e-06 100780729.6350223 10595.174642637505 154234 74791 95231 BRD_20200523 6966957.7956938865 761.0677818252753 0.11086857444711284 1.2111240300715893e-05 822128.5758166591 89.80900845397471 190 None None NEAR_20211230 8883767194.882166 191545.57862187902 14.998093677675588 0.0003222904725781622 713971079.6384367 15342.354942503223 None None 8222820 NMR_20201014 164299533.09648114 14381.502438494776 31.65159626426764 0.002770096451013987 4017123.1069432674 351.57210931545745 21164 1894 853425 DGD_20190629 51375527.23684354 4149.775280692208 25.815155841347316 0.0020802357585890394 8095891.25232507 652.3827546979413 17095 3369 464575 DATA_20220112 0.0 0.0 0.0977737972648904 2.2854972903596867e-06 235556.89291942134 5.506226162356545 None 4836 157344 COS_20191015 22821284.844902463 2734.1769745668703 0.017281427682369118 2.0705305641424915e-06 1016593.159733178 121.8005391228866 9380 None 265359 XRP_20190522 16758916343.04223 2105938.7688559545 0.39776555884957665 4.9989008868711374e-05 1924321271.9917443 241838.21598345917 921901 201015 39974 OXT_20211204 276988553.9602083 5159.217303860982 0.46880210632048863 8.723536961495447e-06 54191751.60193979 1008.407901189161 77773 4900 158922 BCH_20210108 8304915906.05542 212439.78570826337 450.5297897338637 0.011426153280672455 6513612425.444678 165195.58901529713 None 357480 464995 KMD_20190224 107028250.59051539 26010.72719595437 0.9569595977135673 0.0002325667746257981 1329554.7054225456 323.1173502700225 95036 8289 262903 POE_20200719 5543222.274755767 604.1690204037122 0.0022003142766564648 2.4e-07 171137.1264560904 18.66683809 None 10232 672576 OAX_20210427 18836093.387013387 349.6399553906666 0.33147917521812204 6.1511135415612535e-06 914320.8886967569 16.966651362319038 13812 None 1298527 BLZ_20210603 63643764.84402552 1691.3497244161526 0.2206921348858586 5.86109533321274e-06 15680856.08298783 416.4488800487369 61644 None 205295 OMG_20200301 118262344.5123548 13790.324939749773 0.8344049960931437 9.755804349655613e-05 233061505.288852 27249.386780762474 282111 42925 381601 DOT_20210117 17454759345.0311 481068.04521265463 18.284968089036074 0.0005051787345192624 7335372449.691468 202662.32641579353 121232 8380 32256 FTT_20200713 308038256.58827335 33200.93354497995 3.113075361680188 0.00033505652723938184 3747236.5623738905 403.3105284851818 15262 None 12401 MDT_20210804 15427288.764520444 401.5364810312985 0.025401282811135628 6.638626485815087e-07 1802682.1248962225 47.1131060144535 34394 315 745074 PPT_20190316 50685702.31689944 12915.48128753168 1.3991790496871577 0.0003565272955577474 11482104.327994501 2925.7753711271566 23641 None 550893 POND_20210620 67634664.68533123 1897.2482834577966 0.08689970919223143 2.4407552206933996e-06 12510671.127366541 351.38766461174583 19134 585 100675 XZC_20190110 36821502.08172108 9256.706412794214 5.632745376961073 0.001416395161220371 237753.41654243498 59.784841354926996 58974 3917 322273 ANT_20210420 280738211.06310993 5019.992583675257 7.999265831805338 0.00014302209593653308 74973255.34235404 1340.4770317313405 82568 2955 100052 ETH_20210128 141774137750.6659 4690555.989302977 1253.141671558609 0.0412205153135385 38752412145.036766 1274711.7381183775 615003 556163 7694 ZIL_20190318 156418973.28115743 39279.15977891325 0.01805881101275413 4.535063095130505e-06 8255287.185864478 2073.1291905030075 57295 10035 178175 SNGLS_20190213 6879839.880658134 1892.6679228269659 0.011648386356519316 3.205652798833923e-06 59253.28090422712 16.306588737453794 None 2186 1020593 MITH_20191017 6709145.267183941 837.9219074797853 0.012375545536159226 1.5457531616044557e-06 1443352.9597216777 180.2803273829129 88 2082 644077 WAN_20200807 31326297.57192488 2662.596743988249 0.29512853693568214 2.506623997327818e-05 4185694.444258187 355.50483353447544 103913 16072 598620 ATA_20210731 67630669.80780481 1619.5354169689235 0.39262632542905046 9.402128375687502e-06 16526770.117480315 395.76259719779057 67145 None 91566 NXS_20200316 6700092.77261454 1246.8525254062858 0.11221453683043708 2.0882543478532903e-05 65309.70832147597 12.153798091724584 23683 3533 599319 GO_20200109 18600012.516041033 2311.399277301384 0.02106223057782061 2.6248108561126243e-06 6270986.835440702 781.5010031054034 10519 675 1082052 BAL_20210427 574488864.9146093 10660.830074156509 53.32242771584116 0.0009891721792254977 79849104.55921316 1481.2625034057967 None None 49519 ANKR_20191024 8029569.511145293 1075.6525871105575 0.0020095791427713573 2.691704259262876e-07 1685343.762049405 225.7411457990357 9 None 5007 ZIL_20200801 200094471.52088395 17654.91684605522 0.018057514979677707 1.5930490734663993e-06 40144663.54079525 3541.595791572515 88597 11708 80584 CHZ_20200217 65655150.889586516 6586.14545363869 0.013638881511654854 1.3709573168467552e-06 9823347.17395182 987.4262543117508 18677 None 373629 GO_20210428 53677485.02909908 974.1396837029648 0.04985459271393249 9.047104745061292e-07 3063387.161447307 55.591236465049946 19931 964 121965 AE_20190515 133739075.44364262 16736.348009433765 0.5028453406835055 6.290853430593598e-05 17841022.962261293 2232.0035889142755 985 6355 421011 XZC_20190419 60561566.12531203 11481.853285911455 8.304352931506541 0.0015734416802023836 2392862.153513119 453.380182462132 60219 3966 377233 IOTX_20190615 37165563.33764817 4271.618525772557 0.010604408353527812 1.2204432445280416e-06 1323695.670791189 152.34187381049765 19424 1727 736941 GRS_20190207 13473711.415658116 3954.8946030183174 0.18808317032999095 5.521328600579718e-05 797545.3400811361 234.12567369654175 36327 107015 15185409 STORJ_20190916 21551648.567100864 2091.596841356152 0.14988547512878722 1.4546450373318679e-05 3704431.741492418 359.51670729044815 83445 7797 159770 BAT_20200523 296997748.37151206 32444.651146908163 0.20328368047813525 2.220713164708045e-05 56907571.97528535 6216.701407601652 117178 38785 19122 WPR_20201015 4513149.155225155 395.38600386378533 0.0074227473598417835 6.495213787545197e-07 138913.69204524514 12.155527921272478 32760 None None TROY_20210203 9424335.950707868 264.5975064187777 0.004942227392542592 1.3911955714821642e-07 7994422.356855103 225.03628619348228 10514 None 869305 BQX_20201031 34045899.35704162 2506.472563132529 0.15404771033312875 1.1350697927469923e-05 607526.8616461526 44.76440366725984 None 71 178589 BZRX_20210814 49153990.95946372 1031.2858554911286 0.3505245288543455 7.347707949529169e-06 12435766.951271983 260.67900008310784 None None 159675 CTK_20210115 25132769.991404485 642.015556957482 0.9957305077191493 2.538250997169273e-05 3382379.3958867257 86.22140034737008 10882 None 220154 TOMO_20200725 70278312.12729608 7365.93619030046 0.9869806323848563 0.00010348262861876527 12503433.991843816 1310.9560347813285 28357 1607 130769 WPR_20200707 5226091.716239047 559.8503541096591 0.008682731429089268 9.296999835046741e-07 387059.2466212018 41.44421351021881 32897 None 3997940 NEBL_20190520 18649911.907433625 2279.7900235627253 1.2291274728595232 0.00015042521229580323 837273.1467021921 102.46861584603677 40363 6169 675996 TROY_20210707 15714081.602953905 460.064475388042 0.008260779280666717 2.418445888642888e-07 2022416.4064899627 59.208755944449095 59259 None 430405 LRC_20200308 53217135.72597286 5987.268179218864 0.04674159654859585 5.251609949991505e-06 5495763.35383165 617.4715380501482 34345 6822 607711 CDT_20190321 6029633.702685708 1491.3714991841437 0.008938363122047042 2.210817549935405e-06 370392.45404201373 91.61298624576254 19571 285 398206 QSP_20190712 0.0 0.0 0.017102629039456717 1.5099617863484624e-06 149237.861172101 13.175954815272524 56875 8592 721105 BTCST_20210809 158515575.7571125 3603.2542866810563 21.676395320028327 0.0004928681120025219 9404116.921244731 213.82657418792644 None None 1348993 DCR_20210523 1580233796.1999395 42078.050618081186 122.01059659599414 0.003248866130982904 64299788.79499521 1712.1578934421227 45414 11144 205679 DOGE_20200127 282730605.071507 32979.08646975806 0.002306448037986488 2.6851863889069274e-07 57079680.62868142 6645.264882754218 138970 147538 125854 XZC_20190601 55149963.94872969 6429.296520579611 7.235337734362382 0.0008436560937532517 3015884.6572197424 351.6587010218669 60274 3977 387504 SKL_20210128 74007258.30214173 2443.705398724257 0.13138005168239936 4.32070043241229e-06 34842049.27836968 1145.851713828713 11661 111 245973 DUSK_20201224 13772307.881102014 589.0079879614677 0.04561197579959842 1.9559724165325337e-06 645997.4616025656 27.702224994510704 18410 13344 1144498 STEEM_20201111 55460414.16655216 3625.9112794142184 0.15117787552402465 9.896302667878024e-06 1444759.9729271117 94.57588899805519 11672 3848 215994 PAXG_20210107 89738814.8801986 2436.4609447664334 1974.6263664757498 0.05349931636999274 8287536.522961045 224.5374344722686 14030 None 75931 PPT_20190221 50048360.420764916 12604.861714842747 1.3525111892174364 0.000340634865249053 1363643.0586598313 343.4384670807497 23312 None 575286 RLC_20190221 19798386.630208075 4986.295725828097 0.2829768157785771 7.12687409019618e-05 322455.94676216843 81.21170371805972 23825 3261 504378 BTG_20191113 148413680.3053017 16863.289844646548 8.474912439709987 0.0009628368724979785 12851784.87594125 1460.0944191455908 75117 None 358589 SAND_20210724 463484990.2969498 13863.659179310129 0.657778706534783 1.9671965619134953e-05 1084657380.1503868 32438.481937589284 145256 None 30642 REP_20210909 170698801.8877664 3683.053477806158 25.851949898560857 0.0005583945229737252 46533765.53689649 1005.1156648184976 153869 11445 200931 FUEL_20200319 1331878.031876296 247.48013941797657 0.0013469397529541375 2.5e-07 90007.53131970968 16.70593119 1 1469 None ETC_20200320 591824136.5119736 95699.70899000435 5.063407700370357 0.0008193189079988448 1736875982.3901522 281046.95837888634 231076 25306 345588 PERL_20200107 6198434.2538624285 798.2243953754994 0.02363485841696803 3.04705657772319e-06 889753.0617227269 114.70887074682871 10851 389 1210386 ANKR_20200625 14697464.399904393 1579.8086215064661 0.002845244706874321 3.061076271192495e-07 5743995.5369256735 617.9717476474839 20565 None 5685 NAS_20210218 28855749.513367742 552.8968353393958 0.634408322896415 1.216728329672717e-05 14602989.223052269 280.0699493422973 23704 4846 603021 HOT_20200224 133711223.63389343 13439.587036120734 0.0007512473219604912 7.549706032061511e-08 7972191.216024009 801.1702451769883 25159 6906 508019 BNB_20210314 42898756292.75063 698478.0529728305 277.1037454812445 0.004516606680660939 4184775401.814253 68209.05471369429 2134164 193861 198 REP_20200806 54962152.15868005 4691.8087052304945 20.922062757594396 0.0017853417771289796 11939709.145954756 1018.8508557696796 135182 10333 153322 MANA_20201226 105845309.40176544 4286.083878082812 0.0796830107841328 3.2270980101105308e-06 16062053.672553752 650.500287764081 55421 7696 82693 MTL_20190708 30217348.35589423 2644.4332020644833 0.6448647899718587 5.638248474047275e-05 7527429.0271789925 658.1459537873548 None None 763288 REQ_20210104 20393282.782190237 610.1136653940788 0.0259695630439164 7.889239064912795e-07 583686.333613948 17.73168465336041 39527 27288 443928 SNM_20210304 9804186.639432942 192.54470292776267 0.02231414382418405 4.4000010994019285e-07 1804535.885574668 35.5826328941801 29176 9496 None NMR_20200927 163155732.31713286 15194.89797164413 31.424452388820214 0.002927302303665639 3486238.460178911 324.75582229207527 20764 1862 944722 OM_20210506 108803628.14301743 1900.3926225467214 0.3667770274845202 6.404634322242435e-06 16246799.377159724 283.7004531913761 38768 None 68115 DASH_20200207 1116898001.561238 114695.41712116577 119.86656384827926 0.012309222077791896 1063958440.7428609 109258.99857463104 316484 33966 68074 WTC_20200404 6528219.027816839 970.7834768180757 0.223320550423468 3.318845483450861e-05 7795804.104968843 1158.5619502809814 54692 19657 978850 GLM_20210513 408471601.0103215 8103.985449012277 0.4084716010103215 8.103985449012277e-06 7903594.864860093 156.80555911669336 158370 21008 134242 WPR_20200308 4712227.552317263 530.1011113174494 0.007752434196422427 8.71558982201518e-07 350250.21440691414 39.376499387150666 33646 None 821116 NEO_20190908 639845284.8786348 61113.0953047495 9.068860922434627 0.0008662749414897639 179594813.6928414 17155.240118277678 323840 98229 210014 NANO_20210422 1172143260.7292454 21632.87985655849 8.796941590324392 0.00016243307006986776 144529345.73566917 2668.6940116614305 117605 85243 65732 LINK_20210318 12766293603.303682 217029.30172645312 31.09896778876871 0.0005277338498237435 2604538619.9532766 44197.711070621444 None 44116 28260 BEL_20210112 19088461.75518556 538.0456395353716 0.9127583945467667 2.5677705708985076e-05 13047564.544165887 367.05389354478706 None None 319671 ONE_20210513 1054201016.2505016 20438.890978539795 0.10712393495718486 2.125314974129688e-06 108140033.94519044 2145.4741513973026 153133 19481 26398 ETH_20200629 25059706534.523754 2748429.6220126892 225.12294616525017 0.024666158426151642 5641785424.366106 618156.3250403497 462299 467705 17846 RENBTC_20210708 377782728.1083785 11091.312864242003 33848.79621821216 0.9961214658585625 2124406.970762563 62.518246502886264 86597 5522 90516 ADX_20190803 9356287.526739744 889.187970643373 0.1016486490419401 9.660322612139549e-06 182286.828495549 17.323885637517826 54005 3865 708738 APPC_20210314 11050063.405994467 179.86993663682446 0.09943151363364691 1.6208394956024454e-06 931812.9426109107 15.189542678209998 24539 3112 1055081 KNC_20201228 163886555.1327001 6172.825969047334 0.811645568940506 3.086303175294631e-05 45377903.21012302 1725.5064541094148 127132 9305 138116 PAXG_20200905 59743343.12543524 5698.252064798922 1944.81904476899 0.18545006706004344 2698000.8726002364 257.27043556959904 7146 None 96035 LOOM_20200403 12065069.75336826 1777.9199635363934 0.014536023071099403 2.132286494591033e-06 28155547.230035126 4130.131935865399 21576 None 466308 QKC_20210430 196882601.04793996 3673.8027777008547 0.03042272561238316 5.676487815149251e-07 15543432.552669542 290.0203834955182 72462 9420 311852 TRX_20190126 1738012758.6662052 487382.2409759344 0.026515059142785916 7.435485660380222e-06 126142869.06237645 35373.615009556124 375162 69459 85818 EVX_20190103 4525834.623470529 1168.6845390600638 0.2346886439786529 6.061584873358418e-05 255564.35588534558 66.00766903511128 14112 2331 1359775 GTO_20190615 23340838.287956074 2682.6757967340363 0.03514608346389999 4.044902714526813e-06 17312180.38607463 1992.429270531319 17392 None 1170930 SYS_20200318 8353796.371074132 1539.0459152064211 0.014236455398447027 2.646848386906677e-06 208460.91208943838 38.75714940653088 58767 4510 831215 VIA_20210509 42311266.234766476 720.6080156641284 1.8258005722294441 3.1095418417698214e-05 1081436.7419052713 18.418072868032166 38535 2281 682329 EZ_20210603 0.0 0.0 5.387932780686374 0.00014317635131027873 1760658.178294182 46.7868891713697 33044 None 118297 NAV_20200730 9350893.735517085 842.096416777316 0.13465225156294894 1.2141161535622195e-05 1393113.4681999027 125.61257207762854 48494 13810 865383 BCH_20210111 11353354892.5672 294511.7481814833 605.0866961352274 0.015739588308753404 14525061586.057379 377827.6583901942 None 359679 464995 AUDIO_20210806 247761407.33300185 6047.143251803873 1.1623825110126187 2.8409067787112974e-05 13797384.124062803 337.2132814729534 54957 5975 34312 RDN_20210310 31571028.7999239 577.6641073014669 0.4727987139450773 8.645576319215722e-06 686188.3613422627 12.547609949783526 27693 4404 740464 ZRX_20190920 135688233.35131866 13248.189695007002 0.22629107696617964 2.208012441112276e-05 37162545.437975034 3626.0980225354942 151121 15887 146664 MFT_20210828 117345215.99609394 2392.4471791098663 0.012440229648622052 2.536832659853921e-07 16435465.745051216 335.15479584876107 34854 3656 418219 SYS_20210511 275363384.6560535 4931.869190246893 0.4500132853763708 8.053871079654958e-06 19012814.272471443 340.2716319449113 67204 5318 365678 SUSHI_20210430 2174045087.1010137 40557.62750815621 14.105537173408868 0.0002630886638476755 617043824.9910423 11508.759535821378 79173 None None BTS_20190905 88157136.81970319 8348.461916606684 0.03240023445189932 3.067296092908718e-06 14239984.57464238 1348.0843514797637 13595 7154 133075 CTXC_20200903 1532284.4558383087 134.25136587837957 0.1520541239720896 1.3329289048798411e-05 8914397.07437962 781.4492116108565 16668 20064 535694 XVG_20200318 33631891.62779279 6191.135727599957 0.0020720256811187113 3.8446334378548393e-07 796549.5411732481 147.7993747282684 296095 51907 327824 AMB_20190103 19681096.68207856 5087.371969737719 0.07259502107994956 1.8765106505520695e-05 557363.5758686945 144.07306049205962 17894 4962 612364 OGN_20210318 219361414.84673277 3727.3712286122504 1.0377933805177262 1.7610831965297868e-05 135868898.8530543 2305.6269118015653 None 3366 85447 MLN_20211221 116106385.17473616 2460.9927351648553 79.74485823395757 0.0016919490009899435 7699333.707858548 163.3569895764422 31348 586 99475 KSM_20211207 2587880711.948911 51271.20944607628 287.8100224374175 0.005702664112782761 109269559.65679424 2165.065661012103 200979 None 76559 GXS_20191203 28708821.063879754 3926.7898696809075 0.4445212523052396 6.08429530653478e-05 8301081.650813618 1136.1938684660713 None None 716170 BCD_20190627 249914873.2426375 19227.260590381586 1.334301218465099 0.00010231811675493648 16549789.996621141 1269.0862615653482 21344 None 3124822 UNI_20210104 1202761112.676848 35945.73624735876 5.414757447881926 0.0001644918669646027 648980438.6245198 19715.011244799505 None None 5230 MATIC_20190708 38417837.92950353 3359.387104660179 0.017703511709679747 1.547871731169193e-06 14691072.90233989 1284.4850682163908 19887 885 197160 ARDR_20200901 86140345.47144552 7369.9011072912635 0.08613954648899072 7.378030122470472e-06 9020866.583803667 772.6558601582276 64038 6288 944701 AVA_20201101 24052497.63837214 1743.094445165086 0.6250040245163118 4.529514074170814e-05 6941047.023586238 503.02988380188856 None 8978 84193 BTG_20210614 1052591996.7151536 27044.42696694539 60.1847599871065 0.0015417137973125353 58251728.53617931 1492.1965896478046 99095 None 157405 EOS_20190605 6517306935.690303 850658.52017963 6.264107974218694 0.000817063431094666 4613919754.736359 601819.9432570531 1108 65944 114129 IOTX_20210408 298980735.96780413 5307.960400198908 0.04627525583686603 8.235053191123817e-07 77361225.96057922 1376.7051077184583 44437 2573 243991 XEM_20210120 2224863799.961298 61443.053913891046 0.24639518079829642 6.814163019147254e-06 157236991.19194797 4348.455546698591 222361 17943 70313 POA_20200612 3236146.2174885287 348.78036795123313 0.01164818179113012 1.252544318632648e-06 384399.3639372925 41.33496952737254 17193 None 556747 XTZ_20200914 1890467662.4088411 183142.0904210625 2.6200743179839487 0.00025370586487832164 165507409.13685688 16026.33944030505 73036 29339 69245 QLC_20190819 3219884.024111208 312.28792755715847 0.013421141923161678 1.3011002275767456e-06 61566.703422966435 5.968527290254678 None 5756 940522 VITE_20210128 11029176.426455358 364.59035020465785 0.01908635694725214 6.291050213309642e-07 1724775.1013750907 56.8502768726595 None None 879867 RCN_20200417 30517318.691246934 4297.901475257204 0.058501050881914325 8.252526952594325e-06 2108347.6188546177 297.4168034204456 None 1136 1284317 AR_20211216 2067617405.1040332 42381.02648568777 41.5098276599905 0.0008494042071171145 47999171.50877867 982.1938686820813 50399 None 55160 STORM_20190818 9397380.437953623 919.9204172354417 0.0015075125713119905 1.4757214552984382e-07 39177.13798971057 3.835095254846687 26595 2546 2477338 RSR_20211007 496950782.5053301 8953.164229561697 0.03774759141311906 6.804544119405391e-07 64570524.12466941 1163.976200258278 82538 None 112469 BCH_20200325 4172805803.95314 617430.3805508348 227.230978678086 0.03366382414540532 3601600025.7167487 533569.9851012813 2665 288875 138735 KMD_20190811 96395096.10505718 8507.522909763646 0.8369018718377884 7.392159224467167e-05 2473489.948458728 218.47760358062578 None 8440 220245 MANA_20210128 194274933.62489572 6422.126489552543 0.14689567032633183 4.847698463950957e-06 75317267.4888528 2485.542297493068 58955 8281 67623 REN_20200305 57257030.69451869 6540.460883736892 0.06553665803818531 7.482694874399615e-06 4636083.425784026 529.3281458934109 11129 873 409604 ADA_20191113 1359677912.796593 154601.4898740625 0.0436903214677948 4.9636680944779605e-06 109855547.83771579 12480.715624979119 154848 75659 136886 XVG_20210110 262285420.41596958 6481.67816377592 0.015714390372237277 3.900966802031483e-07 17250829.78280254 428.2375115810988 None 51369 225034 ONE_20200330 10248974.601376964 1732.1470078655457 0.0020053041451999257 3.3972744482049665e-07 65955743.90660898 11173.85430148471 70988 None 395411 ARDR_20200411 33788087.907771945 4929.000147579393 0.03395626718340141 4.948519129127124e-06 2493353.3978391774 363.36170045547806 64035 6364 1047061 KLAY_20210727 2502464067.010481 66842.1899456392 1.0018594922122808 2.6849648229327573e-05 67771649.09413087 1816.2676026363208 41852 678 62906 NKN_20210727 143689398.596874 3838.0227715560177 0.2190027300041432 5.869232469803983e-06 21738076.312601358 582.5764058858215 28739 3299 146372 ENG_20190524 38282351.22449283 4859.56146759582 0.4945423672957697 6.287632399384163e-05 2464248.305159515 313.3055630475811 61891 3410 370110 LSK_20211216 368668291.7395144 7556.785214747922 2.5479531974955445 5.221481148208213e-05 7392868.952111265 151.50092200502547 202669 33682 225551 WAN_20210217 128417082.03730388 2611.184877081641 0.7850208860033608 1.5952601791300226e-05 10449740.631531183 212.35174004844683 104971 15858 363625 KEY_20190830 3722704.61298357 392.3116570822656 0.0014238983774916146 1.5005540059295326e-07 66301.41640975786 6.987075592271339 23812 2827 821396 PPT_20200411 7875318.134992501 1148.5660005460195 0.21739770506745773 3.169758022575186e-05 2125813.04991784 309.95327054539166 None None 1062146 ZRX_20201228 283404532.9307515 10704.736152563086 0.37406279734786835 1.4223834188133682e-05 137073225.88609657 5212.24470987222 162805 16318 97350 APPC_20190603 11653627.50265692 1332.4805560692294 0.10939895381308025 1.250872132106594e-05 1331179.5964875661 152.20762192299009 25575 3376 1192397 RIF_20210603 146477489.40524042 3892.2724558994128 0.20035415172865487 5.3264951041007925e-06 1955066.1080981141 51.97621293658785 None 3287 419443 BAT_20211011 1067550697.7042588 19510.081639007985 0.7156611554676237 1.30809882028075e-05 73472928.27322228 1342.9518992682315 214920 80269 25671 STEEM_20191015 44659198.597117275 5350.32778717678 0.13760642409970456 1.648664175930857e-05 370728.09734611283 44.41697668581854 10847 3785 215234 MTH_20190603 8658699.845375808 990.69760362376 0.025519495438444735 2.9179095920709955e-06 245786.0000574785 28.103272217680914 19395 2010 1790455 ETH_20190807 24246876267.774906 2121023.997349997 227.02071107575 0.019786154404727557 9971872218.817013 869105.7414576233 447486 444248 31061 HBAR_20210220 1094891273.981753 19601.65909755161 0.1542418889736911 2.758945628734482e-06 116010305.63758115 2075.09210213024 52299 8958 100428 AE_20190719 99219295.61490047 9311.537630872164 0.30967052549298807 2.9088623861655014e-05 34161719.61434545 3208.950579804271 24878 6369 321495 VITE_20200308 8126837.355010328 914.3211867675357 0.016459872857169405 1.8493341788707619e-06 2429905.8807801707 273.00988505561355 None None 441540 HC_20200730 60958137.561955996 5489.596039292735 1.3650838077987333 0.00012307784464634706 21935703.580263004 1977.7533819066332 12741 845 542975 COS_20210826 94169149.02462746 1921.194367342433 0.027500129443334815 5.612087016978891e-07 38368786.61321844 783.010747832919 28491 None 429015 WAVES_20200610 117257559.2164683 11995.39862747318 1.1709689703826218 0.00011991151877133135 30188642.406911485 3091.427742508436 172 56846 94496 TRX_20190117 1632525068.7400672 453597.77232284873 0.02488051669286627 6.917620848340571e-06 156321943.28780738 43462.76033129571 371003 69245 85818 FXS_20210418 73057529.98033163 1211.916361300071 7.136769093509436 0.00011841345285541028 6905146.47857613 114.57036458475352 8502 None 111454 AVA_20210408 259226908.15629882 4602.190033099006 4.9054073785914465 8.716468475019952e-05 12993477.54806319 230.88242970983046 62321 9789 44550 ALGO_20210509 4535639168.431624 77342.47973430996 1.5172109117669936 2.58376207006113e-05 480356661.3504343 8180.321615621612 None 26265 134030 BZRX_20210203 55429091.61238881 1556.2262954552732 0.38956269614199424 1.0969048372190552e-05 43488859.126365684 1224.5304905544897 18099 None 192726 MIR_20211021 296609310.73531246 6213.759998811874 3.045683438734323 4.611972047708427e-05 29193449.32584726 442.06620607606965 69355 None 15205 OST_20190410 17336036.611768708 3350.1693793217064 0.029132924001479443 5.6357292875896655e-06 898338.4236725358 173.78249310647092 18140 748 1019811 NKN_20210511 375600437.4337715 6727.155200887199 0.5748606775167459 1.0288260226830356e-05 116270901.45130691 2080.896011371984 26199 2861 131546 RVN_20200901 156252150.3888229 13368.449939046932 0.022472662088268446 1.925381208810585e-06 12716505.656257503 1089.506927845158 33493 8883 265141 SKL_20210624 232118213.13744244 6882.902082634353 0.234248280409351 6.9445591584078835e-06 44080473.16051592 1306.8162253266796 26718 2239 129791 ONG_20211202 0.0 0.0 1.1188459828635073 1.9566185231656015e-05 4240535.186908954 74.15774665970056 None 20976 85093 NAV_20210108 10186333.729623271 260.2366032343698 0.1454827230099923 3.6855850212021975e-06 371730.7385026423 9.417236723371404 48220 13634 819464 ZIL_20210125 804434440.8876088 24984.24959142846 0.06907083259196066 2.1409412093884535e-06 95667474.4423728 2965.3390692677413 125706 14874 35147 WBTC_20201129 2171350557.4029503 122679.32574848307 17694.61519991665 0.9988886254625735 72187624.25195113 4075.103976535181 None None 168297 DREP_20210825 0.0 0.0 0.6996656043012047 1.4528409117268865e-05 1702925.406671629 35.36088790448247 None None 303395 CVC_20190507 24105045.789752595 4213.695793028944 0.07039364394126255 1.2305644295991252e-05 7621561.215962572 1332.3393427681654 None 8207 436326 DUSK_20201115 13155610.905441606 817.6169936632261 0.04378218671727605 2.7207198311373825e-06 262847.8811389449 16.333936160045265 18174 13349 801283 WAVES_20200117 87405966.78236806 10031.0555676082 0.8740596678236806 0.000100310555676082 59006038.660315976 6771.767127750215 141374 56853 28931 GXS_20200331 26838934.770210855 4177.296255141474 0.4116435352459592 6.420835873060744e-05 9988259.308506377 1557.9735423069585 None None 511954 THETA_20190314 95868706.38259606 24795.357353237778 0.12863717529868052 3.3275727476482194e-05 20063720.423611946 5190.061826453128 None 3921 442380 REP_20190716 144358342.84172213 13178.812290959953 13.049149222510046 0.0011932732879066724 9622051.933703816 879.8839948533409 126160 10036 220680 BAND_20210124 216260654.65185833 6756.260573310883 9.578967667288413 0.00029889277328075945 207400126.7353062 6471.511462596337 49639 3085 319982 AKRO_20211120 84012301.43169682 1445.2225827334614 0.031039091070654865 5.321196999865527e-07 4275252.8450577315 73.29294070178386 48586 None 223901 WAN_20190902 44222190.27069885 4545.841044870649 0.41649892912180614 4.280792795542461e-05 22709363.59803412 2334.077551814982 108146 16879 451102 BNT_20190616 48461704.9271629 5495.505811639067 0.7406830621648579 8.40022463016053e-05 4278098.195956209 485.18708840027426 797 5132 142963 COS_20190930 20886786.317024108 2590.2285138488473 0.015865798219970507 1.9687899644831265e-06 961207.9410099855 119.27647898987753 9364 None 303115 FTM_20190701 53704968.48147672 4950.094220366427 0.025873068802574055 2.3987445282700567e-06 15431079.878177768 1430.6466196771576 None 1886 411389 ONT_20200701 367916752.02056295 40211.48063621346 0.5759143218092346 6.300554519426458e-05 102110518.5198858 11170.98263714562 86474 16515 150808 OAX_20210711 6726857.208249823 199.49872138550012 0.11811971238991774 3.5106439604317036e-06 169867.88854654063 5.048655003735858 14070 None 1338925 CHZ_20210707 1298155716.6658432 38012.595965154804 0.24319691997805543 7.1210590195051315e-06 187709310.06585303 5496.324030790121 359742 None 35776 OGN_20200414 6772490.068995395 987.9706824075598 0.23662593034938192 3.455696320328236e-05 27520375.549142633 4019.0887101343305 66401 2202 102776 DCR_20191203 209901608.3172993 28710.32242445945 19.49473767144657 0.002668303040662316 18069408.91034167 2473.214030935854 40636 9706 94758 WPR_20200629 4713292.4933875445 516.9564911591932 0.007753325422763227 8.497556862508666e-07 57995.77280863646 6.356271023780709 32915 None 3933939 BRD_20200107 15658680.633792398 2018.154228739664 0.2582582467109277 3.329520640694156e-05 959301.1490506147 123.67515915109378 180 None None ZEN_20200421 48817662.820175074 7129.006515754216 5.505371343729528 0.000804094060809727 2354992.0234187315 343.9613753651847 None 5136 38653 QTUM_20201130 280465358.54093236 15461.373733408294 2.731018761239689 0.00015038304917280656 227075662.97609827 12503.879898569907 187243 15022 161930 SNT_20200207 54745507.78772518 5621.046234589995 0.015111394816760304 1.5526328717202216e-06 33194158.92031124 3410.5615605793187 110434 5611 238861 THETA_20210727 5596369560.566618 149396.4249518205 5.574221718107639 0.00014935133513507606 692626747.4099987 18557.699120562833 184366 21852 19127 TROY_20210204 11104797.905803848 296.10983851874516 0.005844630476738867 1.558472834309185e-07 19332929.400972195 515.5132629675518 10544 None 869305 RSR_20211202 665727422.6112589 11647.33767086905 0.050779098790831534 8.88235983165761e-07 155225268.6169817 2715.2248142511053 None None 100570 REQ_20200626 18633154.337853845 2013.708866922997 0.02414243784261152 2.609104195205398e-06 3618778.3665610063 391.08601539187106 39008 27927 596176 XLM_20200223 1418515658.9594486 146951.5311583176 0.07023394079874277 7.275904974661215e-06 280887238.2054213 29098.592938618905 281567 106533 78179 KAVA_20200129 14632483.300344545 1567.747456614984 1.0692278223485818 0.00011435106344456544 3044983.174441317 325.65282804122234 10415 None 259913 SOL_20211225 58852086815.42499 1156755.8475181093 190.4403687480951 0.003745084558192584 1997417409.1442204 39279.99690625406 1171465 111137 3127 AERGO_20210519 60923909.23098715 1427.839990576581 0.23048544995420994 5.387581243271821e-06 6441316.652743083 150.565325434588 None None 380150 NEO_20190520 761237396.3601251 93022.31836874333 11.701915436079071 0.0014301017289300314 385534275.34766066 47116.4944532548 321307 97572 225000 KEY_20210702 20401530.31154491 607.1758588008495 0.007309843427834142 2.1735850511572094e-07 2674041.7994930963 79.51274659886732 32149 3866 185366 XVG_20190821 85124599.63900645 7910.7751086328435 0.005327807028648767 4.955797663772395e-07 1535490.1369855232 142.82759102760414 303181 52814 316359 BCH_20210310 10191065137.69605 186126.6842665133 545.6922398729171 0.009966366210517115 4611911015.630477 84230.61710167535 None 471088 293453 GVT_20210106 7286294.239389047 214.4899401187538 1.6485019053518488 4.837708689781135e-05 673433.8530942686 19.762651123 20815 5454 383832 GAS_20201208 23536823.79506751 1225.425743554472 1.687937327911149 8.791421980296329e-05 2286613.58211378 119.0955645913495 None 101061 125500 REQ_20200208 11384549.720212197 1162.2841332988412 0.014765726839076974 1.506149500562528e-06 328842.32232821087 33.54292714041686 39929 28433 1052438 XVG_20200412 43064781.14396307 6257.772807032346 0.002653938082910932 3.856455582873826e-07 456917.8737999257 66.3950488022632 294188 52058 317602 CVC_20211021 325692758.2016793 4913.403127112372 0.48674511028084727 7.345915019111534e-06 19876139.867814366 299.96898025887435 108463 10114 169162 VIB_20190816 2911511.9026414216 282.9211387969926 0.015947908213392183 1.5497104267612265e-06 330036.3948684283 32.070716453509036 32453 1119 3938160 MITH_20200520 2351427.51122812 241.51519115865918 0.003811793984968703 3.9063548737680234e-07 5601458.872300379 574.041678335913 95 2094 1339097 STORJ_20200518 15522695.211643199 1594.0046894329892 0.10831337819890767 1.1090447228743179e-05 1902183.525579901 194.76879366727476 81422 8085 107093 ANT_20200914 172806948.09290335 16736.843781622283 4.95802718334174 0.00048009347139734516 65501983.17271421 6342.658747506772 75478 2669 541569 CMT_20191102 16035047.881216848 1733.470979329484 0.020036160575196568 2.166942469006647e-06 5021554.355735707 543.0890490735779 290647 1653 965231 BZRX_20210420 98789667.06087145 1764.6818024109796 0.696217120688063 1.244846684800864e-05 46235770.45029431 826.7025307763228 None None 181064 CVC_20190329 27389086.90375669 6802.751666475342 0.07992147283907372 1.9850458485660595e-05 2414504.671322773 599.701469942052 88826 8211 423151 OAX_20200506 1943043.7798734014 216.6527928541001 0.03717983705997182 4.140046925997615e-06 30326.650984194846 3.376931372248827 11836 None None DLT_20190701 7323660.236757682 675.2400055551165 0.0905021656215586 8.350487523787194e-06 273276.4961336076 25.2147775231179 15084 2672 2880330 PERL_20210105 0.0 0.0 0.024328910178057238 7.776219799420496e-07 1684952.6275643543 53.85593471987495 13469 504 591773 ADA_20200129 1631232520.7140007 174589.04843935912 0.05221221482241534 5.596604770280616e-06 286197023.3930493 30677.335405316117 155267 76298 58324 YOYO_20200301 1901527.654618915 221.71223276516938 0.010960981250205587 1.2815501951442349e-06 89712.23596722289 10.489091340108235 7517 None 2563708 TOMO_20200511 27352295.25688055 3123.804048644677 0.3872141548055593 4.416769477627116e-05 31223362.323045805 3561.5018714016605 22911 1542 211142 QTUM_20200224 240112309.9263168 24132.57924425572 2.4947582523387046 0.00025071226047188874 439178205.85642135 44135.483122275284 179432 15192 121059 STORJ_20210616 139220302.18663862 3447.3144747491133 0.9679470495913284 2.3972930894176484e-05 22681393.465374954 561.7450648345167 102841 13545 44115 SUSHI_20210220 1844716791.0756466 33025.66248308302 14.532552564528704 0.0002600870171677935 804727726.9548922 14402.097168172475 44498 None None VIA_20190614 12978744.783530477 1577.5222765245442 0.5607670760827744 6.815933044501053e-05 383506.52553648513 46.613913542243544 41062 2233 1811232 ICX_20190625 162940733.91058812 14757.920162264476 0.3440635045174638 3.115182528523013e-05 18627730.32588949 1686.5717896651788 113710 25188 300375 AST_20210218 44942713.26722344 861.1337179041439 0.26134333031470725 5.012289755486683e-06 3596987.0027385107 68.98642135896279 37262 3498 155263 BNB_20210722 45239141513.15342 1405811.3697812315 293.84319116155376 0.009098616622914082 1744179795.3191714 54007.115891675836 4561194 563137 142 CND_20210809 26014700.574755296 590.0420859066564 0.013843892574740597 3.147164471029674e-07 217582.35380300254 4.9463505276054835 36169 6259 167421 BCH_20210210 9545053047.79831 205167.65372494666 515.5234606897833 0.011068294783532814 6168245048.487055 132432.2939684875 None 442745 337812 BLZ_20190110 9190137.2688723 2310.843866112802 0.04560644262723408 1.143915761970471e-05 210531.6011185968 52.806227155421674 None None 761657 BAL_20210108 199666350.4301857 5101.000437973729 18.53790944578036 0.00046962993243588214 80032487.77710427 2027.5021807268763 None None 83798 LPT_20210614 645597022.6796428 16587.593681129067 27.259094596953716 0.0006982784720147489 11280220.378156632 288.95805844296433 13034 1061 99080 VIB_20190623 8802661.682646008 819.9482251595809 0.04879438220542142 4.548951487116569e-06 1873676.9872629615 174.67719299536378 32670 1121 2278285 JUV_20210114 0.0 0.0 10.375110801692957 0.0002775893169738493 9318123.33181329 249.30928841107612 2215963 None 134536 ATOM_20210703 3204327576.4150076 94801.94683624724 11.717782727035473 0.0003460849433003833 431821478.8231891 12753.855869814392 162961 31635 47818 BEAM_20200129 33729198.84931864 3615.2700405223413 0.6251003838477823 6.701343917630558e-05 28453928.74288466 3050.3830623187655 12345 1432 301167 BQX_20190923 9798778.098144285 974.7822377559806 0.06955621527550956 6.921508982564149e-06 502707.45719569153 50.024202248495186 60230 5738 402735 SNGLS_20200414 3799801.769281106 555.0521735566765 0.005893175673149502 8.608396345769937e-07 422196.6618355231 61.67194739332832 8918 2129 1305089 VIBE_20201228 3229359.7276124633 121.63460006747302 0.01683079106649964 6.399951641338406e-07 377505.3097854624 14.35473661 18508 None 1358050 BAL_20210408 549558137.791684 9756.885506833853 50.55764673655404 0.0008997139023094957 113220199.15402877 2014.8443168633241 None None 52678 YOYO_20190603 7570667.739294094 866.1431106600668 0.02599649413656505 2.9729054380219623e-06 808077.4590396585 92.41007113120656 7479 None 1718266 REQ_20200907 20328462.69109717 1974.3013242215761 0.026304101717091896 2.557194766382609e-06 272482.2915677492 26.48979605626402 39555 27713 292019 NAV_20210401 54345292.71074025 924.0858823213692 0.7613319925456931 1.2952371000546957e-05 1168638.6158484821 19.881787533218308 50521 13925 437489 QLC_20190723 5188876.073893044 501.7259050656946 0.021613212852101396 2.0905754510091525e-06 313272.8326505972 30.301857381826544 24963 5769 940522 KSM_20210819 2586737432.1549497 57387.163510696875 286.18848553437743 0.00635346949154442 291284834.96071804 6466.6099644675205 103885 None 63186 OXT_20210602 233729349.24520758 6370.027256642486 0.39456797447149206 1.0758662515124236e-05 20762933.976275913 566.1417396426293 65142 4207 98275 OM_20210429 94198625.35428178 1720.9032347585749 0.3207856628253407 5.858870453035452e-06 16178400.05058071 295.48437171066365 37250 None 70476 POWR_20210723 73777908.38519183 2281.148485313019 0.17303433343211982 5.344932810768137e-06 2520818.537632647 77.86666059005505 91521 14009 159703 WBTC_20210729 7712679542.215974 192879.50436923667 39984.74396248477 0.9993211293104837 561160305.3487587 14024.83283603072 None None 177929 XRP_20190901 11079217477.103878 1154173.9797555283 0.2577589803875106 2.6853214978504144e-05 1016109451.2772769 105857.8269351375 937898 205011 31314 AST_20210620 23182072.53876653 650.1186748501175 0.13422467388553808 3.773973542508958e-06 1401628.8040656121 39.40937139078442 43821 3695 210640 PIVX_20210805 37031787.882137604 930.2598093678722 0.5650779229262528 1.4210137991193885e-05 146614.42353690774 3.686944942336219 67684 9853 344305 FXS_20210513 56512756.80360788 1096.3382626671587 5.18044685353183 0.00010057738087979581 5321462.435792619 103.3151713307026 9443 None 138328 CVC_20190221 20047541.393295124 5053.743425532281 0.05858040939505122 1.4760121139062732e-05 1103157.5419165683 277.9553629328982 88233 8209 370829 SNM_20200501 2991546.4899718673 345.7053075917693 0.006804211246737694 7.900003010835018e-07 135014.33346521333 15.675786688610833 29729 9650 7373028 ARK_20210506 314829975.9476016 5497.694104107178 2.001872270226366 3.495655095568461e-05 5828896.666819291 101.78377830571996 72184 22912 75515 AUCTION_20210527 118154607.60453238 3015.727265358673 26.950837939425732 0.0006873896902131742 4139709.3151217164 105.58460223351193 None None 32294 HIVE_20201031 43001990.27029223 3166.2283576135956 0.11263269073528068 8.316364579866627e-06 2640047.5715290457 194.93095627653122 9173 96 139370 LOOM_20200106 14310459.909755208 1948.5326427307177 0.01715494479850373 2.335638560362713e-06 2303926.905838879 313.678684760547 21275 None 304548 WABI_20200113 7487605.413810442 917.9957166204172 0.12632880463498583 1.5493640836618243e-05 308832.55049550167 37.8768771687476 36781 7847 2468394 POE_20191017 6450372.411206799 805.6031192512855 0.0025625451020186876 3.200426573544351e-07 68866.3381628934 8.60088895627985 None 10682 871423 SYS_20190914 13509962.697947532 1304.68758636252 0.02395776722132867 2.313655647278664e-06 1591102.1222285258 153.6563226649022 60440 4588 689818 WING_20220115 30098066.521265112 698.1918178196157 13.472992949704965 0.0003123773685083403 3575690.6475112755 82.90398720159021 23401 None 234136 GO_20200316 5121231.255624571 948.2181057231306 0.005568543111008269 1.0310947212679108e-06 1005750.2457177455 186.2289199527635 10685 679 690987 DCR_20200404 132206111.14207795 19659.80425660197 11.664954908930088 0.0017337537687680635 83885794.19807787 12467.884614425759 40671 9765 206207 REN_20210219 1035069159.5461867 20025.664414329218 1.1876598120446937 2.2971944408923343e-05 322852178.86507034 6244.668911057735 48649 1058 73664 RLC_20210620 239251812.10885194 6711.298237695007 3.3519417019810103 9.414610571909083e-05 35009732.76879783 983.3196086019018 44615 7693 152729 THETA_20200430 116353524.0011484 13327.22123309985 0.11641793733851108 1.3278579499606752e-05 5392271.753559475 615.0401802337853 None 4026 358410 GVT_20200329 2835061.714925749 454.7762956968569 0.6403436703922855 0.00010242111157473797 297506.9524862873 47.58537357945812 20584 5594 160290 AVA_20210115 35670776.6976733 913.3264178760668 0.9264352433871815 2.361837315308638e-05 3095886.2850437956 78.92596707822787 None 9052 96594 LUN_20191030 3162957.713902698 336.12011177146303 1.1698419853162731 0.0001243344716600103 6889384.270689589 732.225346765437 30576 2176 2505082 OXT_20210314 0.0 0.0 0.6175245112317173 1.0065238663797974e-05 53733856.85546667 875.8261149794021 None 2817 124540 DOGE_20200207 327915495.04639745 33673.9831499985 0.0026613780358569574 2.7329967777991965e-07 68693591.6002877 7054.216348433516 139309 148052 121472 GAS_20210112 24999707.746913373 705.7476830146617 1.7956513307905573 5.051523678495724e-05 10603866.8286788 298.30782541231645 328503 101386 181319 XMR_20210106 2434973890.504709 71679.42808865714 136.96674869229454 0.0040181743528768 598139608.2975076 17547.538044436562 333577 188290 59059 NEAR_20210826 2405349706.476688 49072.99139516741 5.478235066211459 0.0001117912291460186 206189005.51978788 4207.581837008118 106385 None 6382942 KAVA_20200229 15093129.697309043 1724.3805038286066 0.8178789420890429 9.386784781538004e-05 2293778.5258174897 263.2566294391545 16502 None 362040 POND_20210826 71774615.64818223 1464.3117064315134 0.09183506537557917 1.8737738947682846e-06 30352922.590603415 619.3115205787103 20498 616 209753 AE_20190805 98330462.14892136 8983.28348623219 0.30449890978928595 2.7808261724730876e-05 21521757.64898805 1965.467363720415 24888 6361 316448 LTO_20210704 47957345.62793136 1383.3759592611893 0.16932617288654186 4.87987488475827e-06 2853725.054272607 82.24257941317445 10790 4287 318165 DNT_20211225 103710790.80435553 2039.7016309914175 0.13803193987650614 2.7150198239955253e-06 2025235.9196825174 39.83538647015517 73659 10390 293812 ETC_20200127 1063576401.0345515 123935.49134352556 9.16242496896226 0.0010661760643340384 1788269352.7422457 208090.10572359964 229449 25102 379003 PPT_20200410 8463777.374729807 1160.7813364086685 0.2336323974976939 3.2041973056314215e-05 2202629.6884875973 302.0839656120637 23931 None 1062146 RCN_20210111 24453845.687741023 634.3450822603809 0.047601068065303904 1.2382047385774834e-06 2647121.9198243385 68.85725547633035 None 1127 5449742 CDT_20190915 8819572.093172494 851.7341065759172 0.013075759557300507 1.2631278749006354e-06 115147.80707878574 11.123361837415311 19677 299 193122 UTK_20220115 172288193.18334097 3997.2819843562384 0.3743284024191579 8.678971461065612e-06 8183458.201023692 189.73713915509444 97688 4297 106204 OG_20211204 6981004.593480652 130.10652224509468 5.080683968506229 9.45834146235938e-05 1909027.0237093787 35.538973813448294 770326 None 168708 QKC_20210219 94733065.42420991 1832.8172176994228 0.014709333978264235 2.844801222600261e-07 18672210.749759044 361.12259092122747 64324 9254 339655 QSP_20190930 0.0 0.0 0.009902141098731818 1.2297909809973512e-06 51552.424376187904 6.40252506142368 56247 8509 561299 DOGE_20200404 229183776.18408296 34059.80949923476 0.0018482682267949313 2.7467766155297266e-07 130077705.12034462 19331.30664946373 139002 151972 104219 STORJ_20190615 41225509.221546106 4739.755009862725 0.2851476641389872 3.284148579938424e-05 6709818.076764002 772.7939688718201 83705 7736 192975 HC_20200107 51328195.53315437 6609.767267630509 1.1541011299590107 0.00014861889830923607 31339587.11807074 4035.7424406294645 12802 844 1107613 OST_20190706 13254758.579702223 1204.8320109198482 0.020398161003725438 1.8541535248194215e-06 473630.75655918807 43.052123011320475 18155 757 618395 TRX_20210221 4126449595.737491 73587.02649044913 0.05826385702791838 1.0360724601904845e-06 3091361995.56587 54971.90181814723 605957 85056 27627 OAX_20200106 2736377.0207817163 372.6627783064929 0.05231050153406355 7.122898410985345e-06 552011.0839065579 75.16500047020065 12120 None None STORM_20200331 8552019.6436279 1331.3136892614668 0.001121165405389602 1.748799249393997e-07 1142277.235587311 178.17295847625388 26123 2519 907095 SUPER_20210711 91933162.69147891 2726.3879523955043 0.4247230715723021 1.2606039265730422e-05 7962548.01118394 236.33327125993208 126722 None None ADA_20190712 2022544559.0691803 178574.92080290883 0.06512761424817616 5.738991814562667e-06 274303313.97290605 24171.38247378693 153754 74516 97209 IRIS_20210201 61011398.28205476 1846.0036682357681 0.0644865297896028 1.9493853838963315e-06 9148189.59129858 276.5437547434175 12147 None 896024 FET_20210902 489594809.3746256 10066.66690508116 0.7105169219723291 1.4603796257702594e-05 96277858.51077496 1978.8722637545181 73811 4108 117531 RVN_20210724 532202460.41026676 15921.536828853456 0.05739358627752865 1.7164506007776886e-06 34512511.56349682 1032.154027125239 65282 45735 64221 STPT_20210523 71619476.14920254 1905.512582964271 0.06379331321297266 1.698671594624558e-06 117534032.64805284 3129.665361546431 29991 None 475060 ARDR_20211011 375842638.76379216 6867.811149777014 0.3746519972253669 6.847959147176327e-06 15306184.972980753 279.769306370588 73908 7272 None WPR_20210508 28939870.63880487 505.5661462596487 0.04759907181253074 8.304948720065451e-07 732534.332541036 12.781047688075118 33667 None 7374795 SNGLS_20190807 4752996.474812786 415.7425436748598 0.008143373081194229 7.111318635190056e-07 332590.539239727 29.04395114900629 9 2176 None AION_20200224 63492591.84184545 6381.8006720646545 0.16162740212123133 1.6242844893698872e-05 19726879.111579224 1982.4648137683528 1158 72540 253863 QSP_20190130 0.0 0.0 0.013996412600757138 4.100081598012841e-06 111049.90216080692 32.53074007592635 56909 8613 680340 DLT_20190706 7164290.538208613 647.1548892818406 0.0892364609333403 8.060785877851783e-06 248128.70631904993 22.4136227598752 15071 2676 2880330 LTC_20190224 3110697934.1572638 755982.7887306755 51.32803960857446 0.01247408631268502 1248672482.0075052 303460.80691213935 437861 199876 251431 OMG_20200324 70255533.26064278 10918.473750849496 0.5045620736313168 7.786631355948673e-05 147899552.6493167 22824.531497217784 280880 42834 453059 SXP_20200927 89071037.04921786 8294.904289267537 1.3413682436418617 0.0001249533421009973 45749678.0333696 4261.749297712172 86437 None 76061 NCASH_20190714 6322273.123020674 554.6640183707891 0.002180631764607736 1.9117697945910644e-07 498270.53423596476 43.68360455661001 60232 59089 1075927 ORN_20210613 174493139.6661179 4866.193941155366 6.755558553130854 0.00018935705305784056 7189866.275288614 201.5306179438918 None None 55511 FORTH_20210727 136085743.83790764 3634.9249759153176 15.77583129020826 0.0004228082149582995 24274394.846580334 650.5783033218584 None None 61730 SNM_20210112 4185313.1040403787 118.15238225063219 0.00996709524613521 2.7999991620997256e-07 414533.97421936487 11.645266266780746 28699 9493 None QLC_20210708 5917858.155731506 173.72344111827414 0.024365606697430393 7.154539885605033e-07 766716.5631688262 22.513308616788443 35007 5676 940522 OMG_20190812 199566828.44051382 17292.707866735283 1.426606673967804 0.00012353392286550802 89480726.6506634 7748.3902085419 None 41020 None POWR_20200806 40702359.44909816 3474.5306885975046 0.09477814664748745 8.087700850968678e-06 2469369.1346217175 210.71860505688937 81495 12693 233430 STEEM_20200423 52971626.06581401 7445.85133184065 0.15095710588348105 2.1218985547032682e-05 1276753.0222192516 179.4642509012566 11223 3846 233642 DUSK_20210804 38731546.39774228 1008.0265041372658 0.10730761889153524 2.793518725959543e-06 1903825.7927924655 49.561932862439605 None 13634 324432 MTL_20200320 13881170.044363933 2242.913798793215 0.21281871240650693 3.447561060135907e-05 11332854.265781282 1835.868031767495 34713 None 635134 KMD_20210828 138669398.0989158 2827.2241002062433 1.0912910942711453 2.224550132636225e-05 4974832.013802662 101.40981883059304 114842 9546 205763 ALGO_20210201 519608768.48354423 15722.724480504708 0.6481424812073732 1.960288846566352e-05 372820742.87669486 11275.859324455167 41764 2590 246299 FIO_20210718 52933945.54046913 1674.8257668911888 0.15549944758971299 4.929241180897998e-06 3907539.42993253 123.8667054614047 None 484 141932 ZEN_20220115 641021711.296695 14874.64790941929 53.816114472991785 0.0012481526060496675 50742466.56301167 1176.86574919481 132452 9134 2152788 WAN_20190110 38790358.015007906 9753.733141396206 0.36546434219469875 9.188111044778346e-05 1641112.9777134845 412.59095718359447 None 17335 511007 INJ_20211011 357851391.9322921 6540.27948177201 10.93705589915756 0.00019989541783696664 17538382.545022838 320.54716912363443 None 4150 113899 KEY_20190110 7191773.145674204 1808.3523758462384 0.0029444534781604935 7.385374850625216e-07 669888.8275305905 168.02371429043745 None 2811 632731 SNGLS_20200330 2828305.533744259 478.30968972825286 0.004367812824131956 7.399704896379236e-07 63512.058962245996 10.759858826493067 9027 2129 1285734 FOR_20210718 13231497.115766982 418.64350140102147 0.023473229866779115 7.42647007256338e-07 2453354.466263261 77.61932901649655 29271 None 171123 BCPT_20190726 4961705.168321774 500.8878097056322 0.04280039154424511 4.323947771578324e-06 237506.47439661712 23.994303641849775 10979 2932 908173 VITE_20201229 8435651.56907018 310.86942090307366 0.0146377623805137 5.392879614160582e-07 1484101.5464540648 54.67762604119715 None None 1446251 ACM_20210710 11994632.147810303 352.6498524734228 5.9946112092600075 0.00017625508822250157 1048280.3586695666 30.82180656083415 None None 41859 ADX_20191113 7499214.660152183 852.4106485781166 0.0814546248403813 9.255708129430758e-06 485351.8277526064 55.15064204846502 53179 3823 287295 VIB_20200421 2062368.1901513978 301.15165462347386 0.011292451357708289 1.649568366514725e-06 545905.0258090491 79.7442143579676 31232 1106 None PPT_20191127 18352421.590655 2560.4585516052625 0.5063908826595126 7.06723818835791e-05 1065225.2912081995 148.6638309460457 23823 None 692385 HNT_20210408 1301151208.7088742 23100.01367861163 16.737544706112914 0.0002976216599906814 80917469.89340398 1438.8485369138593 27892 10191 24713 SYS_20190523 40151771.2766075 5236.049408328166 0.0725302379349181 9.458409862139379e-06 1123340.1011488538 146.49077948395626 62014 4596 1089755 SC_20190414 124411296.990822 24522.345224857752 0.003096527414106064 6.102626865706775e-07 4032712.559540131 794.7657719874388 110137 31028 238121 AXS_20210318 275885077.7643638 4690.0962522476775 5.004117578628204 8.491735972323372e-05 53879354.443543375 914.3055595812408 47564 None 22983 ARK_20211207 221758734.9492327 4393.494063919387 1.3719332994200852 2.7175526680801514e-05 3302911.4104735786 65.42472378036837 77075 24347 124176 XTZ_20211202 4515746335.257858 79002.67513535908 5.20611616994292 9.10429109147369e-05 208247488.45172626 3641.766130534903 220574 64497 37991 OMG_20201228 367819484.38538 13876.63882860375 2.6124303989131348 9.933833860420953e-05 187278274.83816284 7121.304623780803 288264 42623 172723 WABI_20210731 9781225.97194775 235.40572169636636 0.16632013776108867 3.982828418300662e-06 534405.3846245952 12.797277476003224 45398 7891 665325 WPR_20200719 4868434.756693812 531.0943355975984 0.007996488742456651 8.723316811321064e-07 404493.3957791764 44.12591767602257 32900 None None ONT_20210201 465337557.822512 14076.202148358503 0.5791407573056416 1.7465137531794336e-05 207776632.6159012 6265.916219422103 96728 16670 259663 REP_20210124 113754596.33220981 3553.839673099316 19.541334632410482 0.0006097487646643144 18858050.417990312 588.428229834195 136870 10444 130861 ZRX_20211204 886506992.4815369 16512.17044969139 1.0464369230641324 1.9514427300905894e-05 78311864.847161 1460.3949456250525 246236 20809 52318 FOR_20210610 23161551.808612127 617.0553732694846 0.04132877355740227 1.1034644366208966e-06 14055469.41094436 375.27633413675466 27518 None 147618 CND_20190813 13855416.9245658 1217.284666546276 0.007771169600133053 6.828987400515548e-07 242802.42909755398 21.336488771180296 36059 6126 388996 SKY_20210519 44723306.3233606 1049.2436726981757 2.23616531616803 5.246218363490879e-05 1562026.5741394341 36.646362584470374 19391 4354 273629 ICX_20210826 988000214.5722971 20156.788801886334 1.4975174557324564 3.055898752437503e-05 92988918.12705407 1897.5719969553793 None 32968 290799 XVG_20201226 110558996.10509291 4476.959191307871 0.0066125394780159556 2.6780254387089367e-07 1918245.5082835054 77.68740415011835 288241 51308 245482 HARD_20201231 18441447.410334647 638.6197284794528 0.46290599300580765 1.6054306265031567e-05 1963789.583468929 68.1073044839439 13416 None None NEO_20210710 2457694683.6694627 72313.64485671224 34.8416786258116 0.0010252326491173398 323983635.42305845 9533.369628447725 406515 112287 98164 ATOM_20190719 1001174376.863973 93425.77596565387 4.11305614691304 0.00038560617860033014 248700436.05632508 23316.099109391234 27055 6101 109453 EOS_20210703 3777632617.2919345 111764.73121632492 3.939470221770436 0.00011630035341965016 1328916101.1462717 39232.029569427024 225693 89163 47044 QLC_20210703 5755700.523244997 170.2876873197077 0.02403221093708739 7.095312970233013e-07 505221.4710195317 14.91624913558427 34931 5678 940522 ELF_20190704 99697825.12001762 8314.799841418717 0.2138127889080813 1.7815815584906595e-05 37407861.08598496 3116.9863970121123 86472 33325 1102918 GLM_20210420 453079451.2634764 8081.490408366932 0.4503001855212292 8.046419074435123e-06 8888754.490118496 158.8332538536971 157131 20957 153882 CTXC_20201018 886290.8657961754 77.99883482812406 0.08807350168060256 7.74975468161652e-06 971936.5352667181 85.52254163497518 None 20067 632525 DCR_20210202 837007050.3870605 25072.336446638077 66.64338861698772 0.0019954027790149774 30904747.289037935 925.3343790742141 41819 10221 288064 DNT_20210420 280444870.52625895 5010.137606517085 0.37430206810257477 6.693045449045904e-06 187315542.69543868 3349.4643695895884 67942 9715 186228 BTG_20190530 461270252.69271547 53338.94586862751 26.323436469739807 0.0030441362024240357 32110508.63406265 3713.3738949155477 74083 None 446927 DASH_20210519 3073570337.2095237 72106.61086430702 305.6006222403524 0.007143057896040017 1499579104.4611008 35050.911494653024 None 40712 51414 ATM_20210602 24627705.129367452 671.5840445176214 13.07740575719396 0.0003565591385181448 8178852.168433122 222.9987000013004 4987885 None 91720 STEEM_20200306 66189878.509423725 7306.702735416695 0.19416251833398254 2.143360640289315e-05 2015632.4033552764 222.50572333493088 10886 3837 211376 NAV_20190915 7123042.665661398 687.9707319499252 0.1076222731291544 1.0394571181738689e-05 17743.36171107248 1.7137218063378477 51421 14181 463565 OGN_20200518 8600807.570980012 889.4286522509558 0.16628466308330211 1.718196110993925e-05 7668368.9525607 792.3618130287705 64808 2229 165846 BAND_20191019 5710244.3413129635 717.4967599917202 0.3644845407724542 4.579777351719683e-05 1462573.6548822308 183.7735473130316 7515 978 550778 MITH_20200306 4396564.423097074 485.47899325246397 0.007104502793294888 7.842662830413351e-07 4489566.483150518 495.60338290393685 94 2083 1367265 FTT_20220112 5540046878.578342 129232.69662976687 39.77261449111458 0.0009296359754521639 149771293.50642335 3500.7198876674693 None None 963 NAV_20210511 42434915.877423406 759.4561157609699 0.5917301364119074 1.0590172307073807e-05 909742.0173505888 16.28161914677461 51314 14041 483203 MKR_20210707 2475211729.039733 72467.29489943158 2744.956729432985 0.08036202265246872 225774113.40958723 6609.818006096642 165198 28736 29892 NMR_20210710 185581734.5960156 5460.438896922713 32.21228708386499 0.0009479044565111926 12864363.619928446 378.5570261982004 29405 3518 578267 FTT_20201226 447962401.0276174 18139.194765569504 4.927369148214487 0.00019982726649852878 10255411.680149578 415.903664048385 35337 None 5376 EVX_20190804 9299231.17149256 861.6729508165045 0.4412270986915445 4.087324632952558e-05 1031626.9910450745 95.56517324120703 18251 2915 1025264 BAND_20210429 512094311.43592334 9355.388719709035 17.43238777656057 0.0003183670179215538 300657351.7489701 5490.89348627356 85477 4919 169936 LPT_20210723 273945341.70522887 8463.100525940468 11.4433906424644 0.0003534691446056933 10326669.919985052 318.9753192290197 14179 1202 114263 OCEAN_20210727 181639488.63223132 4848.909625794034 0.4175694494768181 1.115350938515936e-05 29348234.132865537 783.9074559906052 118044 3284 115494 FUEL_20190716 3865156.3548092055 353.40545519081036 0.004675873785455198 4.280872051776245e-07 793512.1344871008 72.64789588285372 1 1511 None BTS_20190818 106702293.16980152 10438.919986888304 0.039364247827672345 3.851367805204899e-06 17017311.463030603 1664.9606969953832 13638 7153 133964 NBS_20210212 0.0 0.0 0.023055763537447396 4.828819163440956e-07 14435936.212861931 302.3475033201901 None None 745524 MTL_20201224 21112249.64057108 902.8413944517042 0.3278033947122082 1.405715027386406e-05 4905827.585306483 210.37596527902147 42784 None 417448 MITH_20200721 5979341.440532316 652.6392009332591 0.009704535717767903 1.059303289149999e-06 13375651.898539152 1460.025751124431 101 2097 578289 OG_20210104 0.0 0.0 5.418416841977547 0.00016460494829051268 2935182.281825875 89.16728664730134 None None 397078 MANA_20210110 154607265.64478433 3820.7024092364936 0.1162323527372015 2.885371551866841e-06 65499020.9825645 1625.9587573308477 None 7836 76796 RIF_20210602 144618461.32421163 3941.55698601679 0.1977785319427537 5.3917180646907866e-06 1829322.4193815019 49.86987534915046 43366 3281 419443 STMX_20210821 274695749.64184517 5590.27730268437 0.029721194150898987 6.04523141000653e-07 17921721.053247705 364.5242195936172 69967 4758 93146 TROY_20210114 6446657.991057015 173.02368669546792 0.0033867011061518193 9.062056689006144e-08 1623493.8511579179 43.44107393097605 10051 None 988367 MDA_20210212 19375876.720145058 406.34285803773844 0.9895762594744487 2.0693095856243814e-05 2594068.311958443 54.24473730352933 None 370 2554978 UTK_20211120 182463776.25762194 3138.8791317179657 0.407496296426934 6.985926440524363e-06 9556634.317230301 163.83448130585006 80992 4235 157005 XRP_20210708 30147793682.466793 887206.2758681618 0.6530460312591974 1.9220488740304675e-05 1618780258.2645764 47644.034628016256 1911710 321920 12075 VET_20190716 315905868.8559434 28844.52676429599 0.0056884268715946115 5.201755087891243e-07 46409732.61645245 4243.916081101518 112726 56944 133161 STORM_20190916 9417055.476099331 913.8673973056491 0.0014985682697395946 1.454268468341885e-07 52802.481561125176 5.124156538953793 26425 2545 1924840 DUSK_20210819 52842048.15627069 1172.9525605702088 0.1467285567460007 3.261200494108587e-06 4032195.1831404264 89.61988869258228 28362 13646 340293 OMG_20200903 624238770.2953662 54717.90885632894 4.446655270557361 0.0003896849889515837 588171692.1894759 51544.737657111255 283732 42934 113182 EVX_20200607 4993365.466072964 516.4027634992126 0.22905346174646615 2.3688200160514344e-05 548167.8661355859 56.6903029344071 16647 2846 2249084 DNT_20210427 217387813.63400018 4035.2032610896895 0.28920347474259267 5.366956994495981e-06 23267423.491905812 431.7903212087269 68149 9787 186228 VIA_20200410 2944218.435688302 403.87535301143157 0.1271090900606654 1.7433811056898163e-05 52752.19404362411 7.235295157525236 39262 2171 2861314 BNT_20200719 110318923.69361754 12034.618601460457 1.6787310950819243 0.00018313166759885495 62568909.37227831 6825.601042808925 714 5112 121878 UMA_20211111 903287967.0393603 13926.305809427326 14.220261342432554 0.00021897377824433843 67439348.65150438 1038.4794358519846 None None 263701 NULS_20190405 35572517.8815702 7254.846651308186 0.889159354226524 0.0001814188401283635 6614669.852991477 1349.6182960428548 18 None 680951 ATOM_20200801 722355972.8108596 63735.56718630282 3.7955148816175313 0.00033496818204493067 131392306.44425201 11595.855476020388 37106 8829 136341 BTS_20210111 77506722.16244352 2015.158772733445 0.02859819821320997 7.435472486236171e-07 72094698.44243087 1874.4472734809376 13139 6874 130433 CMT_20190410 34134393.541446134 6596.432770950541 0.04262553301891976 8.245858356739171e-06 8570015.59285829 1657.8592615461073 292272 1639 939194 HARD_20210509 94751316.04161522 1615.7153310945303 1.5502637830977768 2.6390838771202697e-05 3398150.6140181907 57.84824876423066 30720 None None LTO_20200707 12179185.315732565 1304.7439821427329 0.05498352619339928 5.884894420717024e-06 2150482.035241422 230.16638995706495 15905 494 1316486 QLC_20200318 1694930.6108264767 312.1917760817405 0.007041814005911673 1.300599979221812e-06 55955.7747763176 10.334848300497972 24531 5668 940522 LUN_20190201 4265845.465117737 1243.2231037138718 1.577981392431384 0.00045988138584554604 1778095.308326358 518.2018865879282 31861 2265 1530504 MTL_20210804 125581184.40448536 3268.5864405084335 1.9355110794151145 5.039202486155813e-05 26961940.32921926 701.9679617625515 57424 4225 202262 NXS_20190821 13500050.635694448 1256.495148954947 0.22610163481075934 2.1044040128216014e-05 65904.22710469717 6.133928226441606 22216 3539 857246 YFI_20210301 1090143107.6739836 24057.068153142845 30630.592215931534 0.6760998007051559 390905337.7232227 8628.33532783574 None 3556 21151 QTUM_20200612 163014434.5503991 17569.11790839129 1.6933457523793967 0.0001820876974326273 371788336.13035256 39978.889109420175 None 15078 120132 XLM_20190520 2746939732.5608387 335672.81844511605 0.1430339182902191 1.7480305250865687e-05 476978923.3346004 58292.028057293486 271161 101306 74186 UNFI_20210108 16943098.004348498 431.8272108452865 6.940953849635719 0.00017588770942095994 20229163.974278443 512.618494808689 13162 None 133722 PSG_20211120 62031525.03724415 1067.0980237115336 19.82579106351592 0.00033988411479897077 10330568.255016562 177.102443755098 10802942 None 14211 GRT_20210513 1630747385.7792037 31641.84070973572 1.2817306849453476 2.5551677635719255e-05 348112441.0468255 6939.723749370237 101314 14458 27969 BCPT_20190531 8629949.405389324 1038.9213300003146 0.07406572185536135 8.926357948854712e-06 5843232.776267307 704.2230337172698 10824 2326 1059645 NXS_20200927 11917229.809128217 1110.1659755768187 0.1996448665970789 1.859265991269756e-05 16016.776659633118 1.4916210289102811 23304 3520 529847 PERP_20210610 188757434.56338313 5028.865906820225 9.03902962540724 0.0002413390689986526 16551885.254867608 441.92980254805866 20528 None 228103 NMR_20210813 423274703.67540616 9521.437706137847 39.588235208120985 0.0008904648795499496 16986665.425589986 382.083942429704 29732 3567 685085 IOST_20210616 653967398.82302 16193.265239105245 0.028924163065277765 7.166347747496374e-07 99291728.80773973 2460.0852079297083 246308 53561 149907 DOGE_20210702 32039826597.926388 953703.5170884574 0.24575822428299834 7.30603504584168e-06 3268541857.081242 97169.00187697212 1920150 2103499 8998 OMG_20210806 624275837.6375421 15235.021093213696 4.46193573078312 0.00010894171440467267 214317004.47198176 5232.720348742842 325964 5008 264742 COTI_20200526 11847166.725866914 1333.0530328496748 0.023774811034075263 2.674004235118029e-06 2353850.821071322 264.74267473081443 23812 967 239243 HARD_20211104 97881525.65562859 1554.5788989751254 1.0681990673903439 1.695054498988361e-05 5334237.641865364 84.64549155249229 38918 None 44034 LSK_20210220 553207273.84304 9895.293685191506 3.861803411276537 6.907660241629071e-05 64916433.924423285 1161.1690754083513 182276 31415 216887 HARD_20210819 72859559.87666602 1617.2879421066175 0.9634708475860695 2.1392936396269204e-05 11028429.41826586 244.87558672565797 35506 None None XMR_20211104 4801278425.597615 76265.7173378055 266.58158858216865 0.004230207036012564 187763883.94348222 2979.5009745091356 452142 240198 38915 ADX_20210104 41119058.54888866 1229.1432673653355 0.3621653216996911 1.0907007995803354e-05 20970397.127628434 631.5466319988363 None 3745 12195 SYS_20190312 28494053.71801019 7371.17928787572 0.051863025580444734 1.341287334123979e-05 309533.17346635653 80.05181348659457 62406 4621 812672 FUN_20190523 37617890.41945354 4908.599549628212 0.006256710178401902 8.164116706548682e-07 1346750.6385246073 175.73179952443024 36448 17682 458828 FIL_20210731 4745653480.879425 113679.8666565572 51.28884076942562 0.0012275417158021133 309649839.87840307 7411.126670828855 96783 None 38671 DAI_20200801 370563791.73043424 32790.62109051099 1.0197839307700844 9.017502465970135e-05 137603751.08566752 12167.69677675478 50463 15112 31492 ONT_20190530 939065827.5280538 108685.7003966001 1.5308109510216652 0.00017702093105536332 174423995.14932197 20170.15752279666 80796 16204 231698 ICX_20210120 407179297.2727251 11244.885873635734 0.6998912846841562 1.9355789727975126e-05 75866934.3853453 2098.132183388326 118019 28157 307045 ANKR_20210707 521116820.05299664 15256.846851838885 0.07464673489975077 2.1853760158127304e-06 21470518.042137727 628.5761224436214 115374 None 5363 PERL_20210422 0.0 0.0 0.13268944604884786 2.4494742130151995e-06 10340155.41683695 190.88137607257323 18328 636 340450 ZIL_20210731 990176551.9550428 23733.018469480936 0.08064923525984342 1.929487758436963e-06 112762370.82778348 2697.7765309681863 309735 35292 45333 MATIC_20190520 41681357.74350744 5093.016728191613 0.020172912698865224 2.465350009217654e-06 139262475.8404694 17019.39383876319 11265 328 412270 NAV_20190810 6994815.423544788 589.673175810981 0.10623269309063332 8.955571479248753e-06 72214.21266528948 6.087763799698801 51278 13891 652826 POLY_20200319 10125724.663045831 1880.498153122424 0.01662171224322093 3.0850882912108412e-06 3753261.7073366614 696.6276143949509 34948 5002 422167 AUCTION_20211125 219957331.08811465 3846.2561531235856 30.315193140488365 0.0005300455649225265 5611443.778881129 98.11320924212096 85465 None 93597 LTC_20211021 14288129083.247942 215494.09612554725 207.66932026461288 0.00313412738313959 2789536581.943744 42099.44433101359 199947 345549 133415 TROY_20200531 7270215.522162366 751.6657318783543 0.003770940366216663 3.904459905070226e-07 1604932.0177805268 166.17586345112414 8845 None 548327 VIB_20210106 3346381.573795847 98.48944467982601 0.018416769913632423 5.399016295695077e-07 833242.9938430503 24.427152661023193 30345 1091 3160516 CMT_20190730 32490099.664336182 3423.0706043914574 0.040830002083526405 4.292497229389797e-06 5169450.563568395 543.469289474706 290830 1648 580172 WAVES_20210107 592242101.4478259 16130.85622159324 5.891090280956765 0.00015960958896117623 150863787.83958918 4087.410991483266 150852 57232 144968 YOYO_20190801 3131980.888268711 311.5765191972833 0.017908193332921443 1.7805215636313548e-06 1590650.063062279 158.15033291311553 7597 None 1167957 ETH_20210620 253396709038.79898 7108079.440736179 2176.308536317709 0.06112605521045772 20456963374.959637 574575.4573989992 1382013 1015756 3750 DASH_20201015 682707016.7001519 59810.29872020107 70.07487855391092 0.0061389485869619695 332190592.4066577 29101.741022469403 320809 35421 67756 1INCH_20210616 653543681.5230175 16182.12372324529 3.775156820392905 9.353561673259608e-05 105425480.82083376 2612.0868183909943 227683 None 6332 DUSK_20211202 118320461.8406961 2070.0940439349965 0.3086234443128831 5.398489831740635e-06 4075226.7024301947 71.28450647710225 None 13777 337609 FUN_20210427 335583949.5533946 6225.341210303037 0.03258451171422236 6.04467835431668e-07 15090864.73820083 279.9471854326064 2446 226 255008 POLY_20210110 80707300.9857888 1994.4637015173848 0.10729846454378358 2.6626724060206905e-06 3490322.820783733 86.61434534520164 None 5028 310362 LINK_20200324 816677279.9255012 126768.85999784258 2.2537383255185985 0.0003478071466467264 319238355.7338405 49266.31470511566 46824 13744 84663 BCD_20201106 82897467.27522674 5334.908035824862 0.4394564252465039 2.8205310684662254e-05 1831628.1487271579 117.55805132361809 27894 None 3405204 ARDR_20200325 33651923.80103063 4978.428481444289 0.03369296143260045 4.992232778993135e-06 2340341.539165242 346.7647024507404 64367 6375 1001396 FXS_20211011 198753761.30594468 3632.5278489911007 5.575276439169743 0.00010189873981079999 2455830.0236620167 44.88494648311154 None None 92242 RDN_20211120 27854406.91038108 479.02308893803627 0.5472286081157286 9.383042929886306e-06 351646.9804903597 6.0295069833193935 32462 4856 898152 BNB_20211202 105462458343.29141 1844774.1124880454 627.5298135272164 0.01097694478153957 1515106862.6545084 26502.71590445939 6421846 728044 109 RLC_20210220 151269195.24005368 2708.758661187859 2.1397036853669547 3.830219920610711e-05 19754981.352324113 353.6280449691724 34742 4059 376079 MDA_20210519 23454609.805982873 549.9948379460012 1.1980794167236803 2.8005022420169667e-05 5785720.607922289 135.24081382250395 None 383 1652866 FXS_20210731 98462487.61934435 2358.947586088168 3.079689257574255 7.372716747573298e-05 6645972.513786783 159.10330152887576 13025 None 100737 RAMP_20210527 97117926.42043647 2478.7960842076623 0.3427857156878716 8.743758197238926e-06 153099460.32059953 3905.2521733141234 27944 None 89296 LIT_20210703 49669879.131600425 1467.007077000857 2.237622623977286 6.608822820721084e-05 3439456.9594780146 101.58442894308617 None None 323209 CHR_20210519 130676049.77372454 3065.7621197978006 0.2940860538229386 6.874240902404309e-06 46081881.22658481 1077.1607448554842 59527 None 91225 LIT_20210325 146922268.3746168 2780.3986122139936 8.114663282394039 0.00015390627989355775 59182324.086559005 1122.4780398934727 None None 102564 FUEL_20200411 1764640.9532541607 257.37934499469566 0.0018527142970013275 2.7e-07 75304.9362679606 10.97434873 1 1467 None KAVA_20200106 14086074.117591243 1917.3660494579844 1.030388626642792 0.00014030363495238284 4969254.1961611975 676.6421995508877 None None 303770 OG_20210602 7574134.390337411 206.55152143486524 5.861525899512375 0.00015981584075031485 1903970.6952738015 51.912195330307725 666556 None 239206 NAV_20210509 49227242.20221257 839.2537740248866 0.6872855025617445 1.1705238019768648e-05 8916394.281369977 151.85613104382824 51304 14027 483203 PIVX_20211221 34338712.966443986 727.7215995609331 0.5052285325419197 1.0719261858886158e-05 204252.7250354085 4.333560565216009 68978 10385 315235 DENT_20190201 18938446.89908509 5519.577930533641 0.0010126407065081345 2.951257445274986e-07 2207701.520487738 643.4163180889276 42297 8799 245774 ADA_20200423 1128863796.6415317 158713.82367987532 0.036251791946901056 5.098695794654134e-06 124398269.13030894 17496.209086877403 155060 78032 53187 RIF_20211207 173127012.30216604 3428.8918186561605 0.21717716192225428 4.303145515647746e-06 3111950.1516958307 61.660140604393064 None 3556 382730 ZIL_20200625 214410753.68537036 23044.562188340737 0.01953003988240975 2.1011528996099194e-06 68615180.2231918 7382.011800860072 80702 11438 97505 RVN_20190626 247462012.61091954 20959.904735423785 0.06453666349479788 5.458691337398867e-06 39219952.85305653 3317.3332071842983 25795 6701 184956 IOST_20190719 89322892.19261776 8335.271764276864 0.007392437450667608 6.928510840603264e-07 31145585.63099717 2919.098458679728 197544 50430 111016 WABI_20200404 4451248.764652559 661.9261292427359 0.07546448362881167 1.1216231346031705e-05 693958.0788920146 103.14248482220913 36736 7741 1806690 SYS_20211207 361675449.24865687 7160.872589117613 0.5798765836612542 1.1481073270627759e-05 22640910.279706735 448.2711617596068 101750 6416 147034 STORM_20190522 15554833.55282941 1958.5375746128855 0.003442263190371886 4.3342166132172065e-07 11317030.533481833 1424.9480367363824 26988 2569 8080480 TNT_20190811 14770245.250021491 1303.5209629256929 0.03448183676975439 3.0457002945205004e-06 3061318.4501937935 270.3991254188253 17566 2544 649538 QLC_20190704 7435925.783384647 619.5874153816357 0.03097824907386372 2.5814710506623133e-06 852833.8624515801 71.06812014113268 24992 5784 940522 FET_20190712 30967072.53750324 2734.1511469233474 0.11274541409148964 9.935033181699225e-06 6702498.891537477 590.618691006728 16069 293 401657 LRC_20211225 2756801487.3077497 54185.78020676141 2.2157571143710593 4.3573732860772025e-05 227826028.15996096 4480.288216333088 167511 87642 53381 BAND_20191203 4058924.843612318 555.1700621866827 0.26048462881943646 3.565331007981304e-05 1259346.145034945 172.3704727232559 7474 989 441145 DCR_20200223 230553343.53168225 23884.629917354985 20.710383059147322 0.002145497994466611 30342342.68959834 3143.323578421158 40904 9734 202166 CDT_20210131 6789012.098611071 198.44257953013627 0.009804567532024954 2.869814360253675e-07 943190.2273764622 27.607345761398047 None 295 640190 WNXM_20210617 128559577.04192303 3361.1177960168393 60.382072873763825 0.0015776814697271155 14585882.127593042 381.10443807446995 29936 None 117784 COS_20210420 97037799.85999951 1733.388163495135 0.03221243330468549 5.759390703249247e-07 11567668.620472683 206.82300675909428 None None 214516 LEND_20200721 399499715.90680724 43619.50438852508 0.317981392147405 3.471890010925213e-05 68411459.29550646 7469.527086376837 50959 5785 49562 XVG_20191012 59550921.96797552 7205.512054215489 0.0037257068583281486 4.5069445661497407e-07 2382535.1235752567 288.2125228090781 301206 52600 292471 ATA_20210710 73507590.84355736 2162.8801319895415 0.4264405553110862 1.2547796233548164e-05 8660407.372393725 254.8280778056891 68053 None 98513 REQ_20210105 20538046.608425587 656.4550713903509 0.02652454101453862 8.478006597838776e-07 511677.70340567274 16.35469184202863 39534 27290 443928 DGD_20200127 60868034.238609165 7082.84557942961 30.43403233632075 0.0035414245604270854 1641043.3837896534 190.95830877275176 17609 3347 319938 THETA_20201115 614136475.2980294 38155.01991155223 0.6132166815447228 3.810661164634457e-05 12172797.542853666 756.4439823238433 74691 4510 75769 ROSE_20210203 91081700.51765092 2557.5285524588953 0.060750559815539694 1.710574025320481e-06 6012872.0279227225 169.3064679530694 9974 674 215578 REEF_20210724 177994513.4850483 5324.132005143965 0.014054084918103586 4.203297298528803e-07 20255283.10671756 605.7952350475082 185711 12492 50076 COTI_20210318 275147591.7975107 4678.922651606175 0.4145344800903804 7.0328886807713536e-06 118848861.11940438 2016.3601587664944 None 2797 107112 MANA_20211207 5022925155.218322 99514.41984017067 3.778852812420177 7.487466745666179e-05 1491022976.299516 29543.31779045088 367094 68931 5248 OGN_20200208 5564224.248839526 568.118229263998 0.22661866823815044 2.3115800373723564e-05 39551252.406119585 4034.349254006876 61342 2113 145661 AST_20190813 5182682.939904875 455.3984752721055 0.030423387091739258 2.673122322747121e-06 533152.384695644 46.844933361899095 32073 3586 229078 XZC_20190703 84798212.2003562 7856.9234963120125 10.794619857189016 0.0009981010287064378 12102797.508336406 1119.0588277410575 60669 4025 268050 DNT_20201030 6816004.979420764 505.7173132081343 0.009018437851871751 6.706061151058239e-07 99057.90910567841 7.3658920410565 58203 5961 547467 MANA_20200319 29413889.243233245 5462.598109142095 0.022143351529831514 4.109937263575864e-06 21334382.80050084 3959.7878735314266 48028 6790 47233 ATOM_20200314 334780310.0023539 60899.001460798776 1.8033212472576152 0.0003249178816542894 309929966.3052288 55842.40094005524 None 8264 85359 CND_20200320 6394996.376129581 1033.4674881038225 0.0033373673159576263 5.406374971336407e-07 206665.4866539168 33.47881754406743 34889 5967 433768 NAV_20210916 31490033.285183374 653.2336309874257 0.43968077083277585 9.120799073324062e-06 1046374.8462337487 21.70614536951896 57741 16857 1031461 LINK_20201115 4944151034.835344 307234.06259256706 12.587187919905697 0.0007824903864268054 610131938.7363194 37929.23245057069 99137 24312 34744 ARK_20210117 65343430.400728635 1801.6313053848517 0.4202820342811215 1.161337652954484e-05 10602774.72905386 292.9794879218711 63131 21552 90989 DASH_20210509 4160966720.7838106 70944.05230012885 408.36566645017433 0.006954337801725722 1783829905.469687 30378.05761511117 None 40333 48371 ETH_20190726 23512755315.51417 2373630.05470876 219.48779097276912 0.02217395006034618 8431628740.248658 851812.8219571399 446468 443488 33996 COCOS_20200418 6941774.249296722 978.6759592617354 0.00028453901743348634 4.04195210942112e-08 1448985.4042130576 205.8322146434082 14896 218 64758 BEAM_20210422 129370494.31490919 2387.640192340343 1.4928910565818765 2.76011323709979e-05 36526907.55160702 675.3232300442917 19232 2177 172330 ADA_20200518 1613996775.979502 166906.99859865202 0.051874033349081826 5.368839260837598e-06 115579145.64655124 11962.167096309942 155437 78945 54750 QLC_20200305 3614092.029191705 412.8332848578367 0.01506639181567742 1.7201380704887955e-06 221182.77593847513 25.2525566892711 24505 5674 940522 POA_20200531 2401714.158874246 248.8326166230395 0.010908571151224124 1.1301962363622922e-06 437812.57188616705 45.36012224867004 17195 None 552527 PIVX_20190228 43741290.09843719 11462.094520612773 0.7387423333957445 0.00019376073634147967 547096.5029122189 143.49498663065336 60716 8595 178528 FIO_20210422 65173666.32286387 1202.834278547816 0.2811019918791187 5.189200041844416e-06 6357332.228406232 117.35764818006275 70440 382 172858 DCR_20211007 1716019304.3490906 30930.662576921586 128.26586561939257 0.0023119484725814717 16249800.201955538 292.89710536195196 48774 11989 236058 MDA_20210104 11141031.375583865 333.31051020211856 0.5676781113616407 1.721212999886703e-05 3182016.4824236943 96.4794665460041 None 369 3261426 GAS_20190708 44647522.32106647 3908.442791177974 3.1955587251283175 0.0002795646335709575 1739208.9998643103 152.15534076309402 323850 98049 188893 AION_20210314 124857873.87190565 2032.9373664176226 0.24971789648980225 4.070667483557943e-06 32843736.450922098 535.3878592148684 70472 72793 306930 GO_20200324 5833524.012528943 905.5096878730283 0.006038986267374699 9.319638214037309e-07 901395.8328294808 139.10750377088712 10683 678 690987 BCD_20210314 218949639.92059734 3568.422287739471 1.1599918389755948 1.890910153611423e-05 7409602.061719994 120.78439952732504 28781 None 1565972 YOYO_20210722 1576566.2316168132 49.03578447677464 0.00901441962247539 2.803746071217053e-07 138219.1794183616 4.299017546230656 10118 None 1359216 YFII_20210511 110493491.90125245 1978.9829686733613 2856.7639161809825 0.05112739786490746 160438001.7330473 2871.3529671790207 None None 329518 QI_20220105 161392970.5148808 3489.343220875975 0.1360215162023003 2.9588903650716194e-06 10668846.69260954 232.08054553838832 54214 None 875386 BCD_20210513 905744583.1802235 17560.6117852808 4.739296480736044 9.447926722689773e-05 72575948.8844372 1446.8228558331273 32558 None 1417289 ONE_20191118 17215272.386991013 2023.8863983279991 0.005919721128839133 6.956527553462403e-07 3121072.6744298195 366.7711296441992 70487 None 191680 VIA_20191030 4685996.564786569 497.965295526801 0.20188589860877607 2.1457065872312902e-05 129754.69954337303 13.790736027282373 40402 2201 4136825 XLM_20191220 900090344.6384966 126044.17821683754 0.045218135929620845 6.3280713984206055e-06 170412226.10316563 23848.411965125208 279088 105637 57085 DIA_20211225 84231326.5179845 1656.5949670888851 1.4021946461836061 2.758047351138368e-05 3366200.569913367 66.21149631771125 None 453 272189 IDEX_20210115 19302359.549756035 494.224026954941 0.03419622943328664 8.717016975864141e-07 895307.1946465556 22.822422657951023 44559 1942 159964 MATIC_20210127 214097716.74627247 6569.996941084112 0.04321873274489467 1.3268782362281172e-06 203004518.0618844 6232.535286544497 77357 2785 46459 GTO_20201130 8671677.28245443 478.04849788594 0.01312160659407616 7.225388699883755e-07 8805960.309665775 484.8985957390961 16390 None 968505 NAV_20200501 6704100.3666563155 777.7645600147468 0.09780081408450486 1.1346191580579969e-05 761618.3629431237 88.35783155929258 48953 13906 1266720 DOT_20201208 4750708655.5933 247409.83163646993 5.060144766864494 0.0002635740512884319 122459164.11119731 6378.682723376631 78848 6298 36558 NXS_20210506 106512297.11178069 1859.9627500013135 1.563054279131451 2.7286182376488697e-05 1649389.7958415928 28.793338388902008 25425 3873 484526 ONT_20190605 766737062.1253664 99979.94110857179 1.2496147673919678 0.0001626795395949448 252283904.91277438 32843.26543618019 80656 16204 249314 DUSK_20210610 48913930.55790191 1303.1231528425096 0.13481168388635248 3.5994268884595157e-06 16077279.874258682 429.2579975596168 27329 13612 341273 ANY_20220105 343099653.54601634 7416.35663357552 18.39230013568816 0.00039973785857801115 18951013.406736825 411.8809208856311 453 None 10549 TRB_20201018 35557013.54515654 3129.227360363938 23.633612741907744 0.002079566469995931 29806707.515047908 2622.7488029943 9933 None 208635 STRAX_20210104 45799573.74750128 1368.7667324936672 0.45199199614998786 1.3730970009099691e-05 1398617.203378633 42.48829854816757 143294 10289 230712 DLT_20190414 8495324.987770751 1674.4327360490354 0.10715327802347785 2.1117735636240198e-05 459903.7930537672 90.6377004881325 14968 2682 1058682 SKY_20210115 10200370.449579107 261.8846570383709 0.5351586467701441 1.3641913733461815e-05 539295.9644484571 13.747379526075111 17235 3822 758913 SNGLS_20200106 4227948.339629857 575.7447361890671 0.007122826818505427 9.699907352836412e-07 424119.76031555515 57.756877801379545 4743 2153 2483820 ZRX_20211104 1049164545.7174094 16663.09401493599 1.2423762932108735 1.97033758852655e-05 162197144.03016108 2572.353733572386 None 20578 50854 AXS_20201228 33771990.51084446 1275.6332583212065 0.6017392909762158 2.2881291483716148e-05 7470380.317674393 284.06313515877764 None None 21811 GRS_20200421 11148438.449315932 1628.2994524262112 0.1488770741459131 2.1744431689936036e-05 8817029.3789911 1287.7825154712993 37429 106845 None KNC_20190615 43532302.592033 5004.970301097236 0.26179223705306165 3.0151556953931342e-05 8748303.478373505 1007.5736910601779 96861 6694 215563 NULS_20190523 51221935.24874875 6680.76352581365 0.7159653696129978 9.342329544918721e-05 8250494.436383832 1076.5721528525855 20851 5321 698282 ONT_20210617 783832341.0309179 20492.85546166223 0.9127448164523273 2.384847877807797e-05 197051073.470407 5148.611374340172 139181 19425 131880 EOS_20200421 2348731810.6985245 343250.8176855666 2.5102555350668303 0.00036685638653446376 3533573557.475821 516407.1978890381 None 70973 96512 COS_20200721 18927182.257735178 2065.776715114295 0.00958040214363735 1.045835313525677e-06 3745705.699664227 408.8963319128432 12445 None 262147 SKL_20210711 284722100.44382507 8446.428344976892 0.23470615188232904 6.9626793666847204e-06 25978998.48816379 770.6804243944925 None 2300 152464 STRAX_20210711 159821582.31061664 4739.700275587704 1.5965807997700163 4.736339504802148e-05 3913299.1737940004 116.09004363336959 157811 10762 140717 DOGE_20200905 366711396.7095069 34953.92904193432 0.0028970161681250725 2.762825877502763e-07 141872359.2003525 13530.080695227194 152011 166740 90441 VIA_20210210 14878353.325718423 319.4525714508851 0.6420467621266398 1.378536217435649e-05 877892.5632917591 18.849198608315724 37781 2138 2708625 TOMO_20210902 274755829.79990995 5648.276621399272 3.2703878171908163 6.721553567194864e-05 8773719.755602753 180.32426310680222 51683 2256 153317 XZC_20210120 62849294.84960499 1735.5528944421628 5.4700013647208845 0.00015176790073082462 29138611.374585453 808.4652239858841 67646 123 431811 SNGLS_20190811 4674918.942117521 412.38122521585717 0.00809262649440369 7.146018873360664e-07 47453.10319861091 4.190243690244494 9 2174 None EVX_20210805 8647929.137259081 216.90716525850436 0.3951641161311429 9.935956417856615e-06 840014.7264406286 21.12122374366081 18299 2803 2085195 POE_20200605 4918924.50534137 503.1580074708402 0.0019541454500305298 1.9989002268237358e-07 750673.9822927986 76.7866278046145 None 10293 691823 AERGO_20211002 76633990.02317567 1591.238704829509 0.291080160639592 6.043107777230473e-06 25607473.026764743 531.6360931752662 22925 None 741422 SUB_20190225 6092900.2215750925 1612.8809166100502 0.015942429396567103 4.242198606486369e-06 110721.50187049867 29.462423151408085 68363 13708 542564 VET_20190603 432961391.6960406 49527.720399181366 0.007805463327552769 8.926166832674586e-07 17588652.835664216 2011.4020524436617 109046 55779 213726 DLT_20210107 3466608.748937687 95.27608769956514 0.0425852015502732 1.1618429228929164e-06 373072.673334815 10.178461753365 None 2534 None GTO_20210128 25244869.651850738 834.0780078349196 0.03784670701299002 1.2446659996124367e-06 33809940.80469253 1111.90872574637 16681 None 744307 GXS_20200506 27668545.18947374 3085.0913662377334 0.42723490105663314 4.748031115533434e-05 11977222.840463033 1331.0763372456297 1 None 477112 BLZ_20190807 7490841.753789809 652.713944576397 0.03591063523455118 3.129495332997149e-06 788127.2936285869 68.68273621752218 36524 None 1145955 MTH_20200730 3222436.720889358 290.2081108279875 0.009242804702642077 8.323208802464619e-07 281970.21937834803 25.391610960814525 19060 1905 1350074 QSP_20190903 0.0 0.0 0.01084308314208365 1.0499605449307957e-06 150612.096576136 14.584113846780042 56483 8538 551928 DCR_20190329 189589140.90115908 47090.45643785607 19.87523671735945 0.004936597045200101 2185249.7114073974 542.7707564829117 40261 9397 241098 ARK_20210430 314359359.2255455 5866.347925262096 2.0048305880395363 3.740755036035528e-05 5919717.745754889 110.45429025998476 72083 22826 73958 XTZ_20210509 5350727632.729703 91241.50491920863 6.98165614884008 0.0001188518778474189 445194502.6496325 7578.746578066191 110882 44957 85106 WPR_20210616 10819360.70880791 268.0517164562634 0.01777098809624687 4.402796052861844e-07 176447.07906812165 4.3715098960884236 33654 None 6502768 YFII_20201228 57467381.62696425 2171.566741541639 1433.1292167535264 0.054495107489438276 81875030.50725435 3113.3191173795008 None None 117104 ENJ_20210127 397585760.3766558 12200.677658738778 0.4355368408031612 1.3371617315769892e-05 307899519.87371886 9452.965089861056 75647 16445 72441 LTO_20210731 57231972.43316485 1371.7629003830377 0.19897253180866703 4.763364076310383e-06 12131226.945696067 290.4192358082067 11069 4350 652432 VITE_20210805 37447154.21549175 941.5772788101677 0.0570264189289981 1.4340886602700427e-06 2125274.5833481057 53.44596832802044 33203 2419 651282 IOTX_20210902 709220450.2741491 14579.757203401306 0.07511380985558594 1.5432189290808347e-06 46792435.252399534 961.3541365845424 109802 8332 73803 FIL_20210506 10566377314.66072 184555.10940712076 152.65330254867183 0.0026635720419842393 1169147165.3432417 20399.871149728217 82455 None 28149 IOST_20200324 38759344.80767568 6016.425430594275 0.0032387105254326858 4.998125354265608e-07 44590879.17907581 6881.467239624884 191233 52253 127057 FRONT_20210718 25944069.66691127 820.868271437338 0.5742727333744109 1.818527249105667e-05 5202190.274783485 164.73574697056665 71053 None 222970 ENJ_20200422 97425295.25763851 14226.26685269717 0.10644197471575916 1.5549533079000196e-05 27097780.255532827 3958.5683333672914 54315 15313 92997 UNI_20210111 1303546945.5403168 33824.23606598037 6.018278998231146 0.0001565482010501938 446873138.1388761 11624.118106498081 None None 5230 SUN_20210602 0.0 0.0 0.0002438537992149752 6.6e-09 0.024823440639716116 6.71856287454e-07 56 None None STORM_20190318 14810984.69512801 3719.261302637974 0.003277463817631106 8.230611192767308e-07 1069838.4983812943 268.66581018718495 26831 2571 4061731 XLM_20200506 1472330277.6033888 163625.91054976112 0.07238421085781607 8.044344798991179e-06 524017526.2711622 58236.14863080971 282675 108160 75602 NKN_20210813 274003216.2391316 6163.620296815525 0.41598734543648636 9.356934547440123e-06 116873577.70428875 2628.8742407697987 29458 3346 166528 ZEN_20210201 376663098.441082 11397.363705092877 35.17957556260354 0.0010639964452545348 52012320.69045692 1573.098124097704 84918 6493 437186 CAKE_20210825 5093661588.316982 106065.47567619658 23.852741945737073 0.0004966703637039764 318012904.32137305 6621.778964077645 1070381 None 739 MATIC_20211225 16927823312.254776 333036.1633733865 2.4634229124093454 4.846130905609834e-05 1648360280.7252176 32427.114563895026 1051023 None 3692 QKC_20210207 60111946.83995888 1532.978451606041 0.009354298759578192 2.3788068634876006e-07 6059811.081493147 154.1015586800023 None 9230 366724 ENG_20190629 41576817.31589233 3356.346826540094 0.5353503389021621 4.32420594468021e-05 2312765.9478964796 186.8099361075706 61788 3466 334360 COS_20210201 28390985.493884876 859.017574457972 0.009430841937324626 2.852331825099534e-07 6578674.524947881 198.97017508283673 14748 None 369084 HC_20200312 62581261.518971786 7890.2595642272045 1.4052391725883897 0.00017702275312222085 45549291.00823479 5737.99895016502 12773 842 804824 SNM_20190621 11026406.434133561 1154.3938537413824 0.02705202756166232 2.8321733408767973e-06 523093.591120649 54.76453549289426 31345 9998 15028658 XLM_20190410 2403916700.680622 464773.9106270379 0.12473108536145636 2.410414053601147e-05 296711742.5709791 57339.2071502474 268304 100143 69980 LOOM_20190316 47044773.123815045 11987.6863877157 0.06706498528791649 1.7088947863153845e-05 3101126.678808571 790.2035899013839 17890 None 438947 GVT_20200414 3165403.3409301545 462.0181143705503 0.7112081860683153 0.00010386518113018021 218126.57449031953 31.85530849129819 20520 5569 153070 UNI_20210117 1813071125.511511 49966.578291631275 8.424171550248074 0.00023277958176311434 892977151.8689348 24675.049255133756 166564 None 5976 NANO_20210603 983005685.8229097 26123.63363309366 7.392212606428219 0.00019632082870584021 42041171.603775375 1116.5205992371457 130618 98162 52991 YFII_20210707 91207842.77430095 2670.3112149644144 2293.554135948736 0.06715448604904829 40237371.37796435 1178.1365665189066 None None 427366 ACM_20210806 17220993.24187672 420.11995456688464 8.594968432199925 0.00021006427617854367 4529315.473779004 110.69818162672834 None None 44064 CRV_20210527 704718786.9777985 17986.938498519572 1.9020232753119555 4.855079551749159e-05 314489785.0847774 8027.624817307582 123562 None 25482 HOT_20190806 177129547.74807394 14997.575556863589 0.0010143138366112009 8.58731834359019e-08 10928179.820644863 925.1945073470122 24045 6611 379586 ACM_20210523 25632404.397247963 681.9064066889438 12.929547259699454 0.0003441103930323328 31616602.43816013 841.4526257429984 None None 36746 DGD_20190821 39135338.5961354 3642.2110019692323 19.567679081907237 0.0018211064115378221 1626622.2500909823 151.3849545667242 17225 3363 558523 STPT_20210617 52676808.16045061 1377.2108703421518 0.04678111643561888 1.2230656620871162e-06 11169689.100745182 292.02516391653586 29906 None 480886 ATOM_20200425 508819814.0797977 67853.86874175607 2.742568058673059 0.0003659067993266057 227456602.58272508 30346.709965337002 32530 8374 86348 UMA_20220112 559724617.5190703 13064.156499048328 8.620532133362879 0.00020148100575276005 22552235.655025367 527.0958974982912 53122 None 196141 VET_20211207 6266200919.662481 124146.25538951551 0.09404165481828633 1.8619464208103909e-06 609924910.4169205 12076.005107611716 521641 218194 34237 BNB_20190312 2065952584.6704817 534319.925833206 14.32642352984074 0.003705496160852026 168782322.98002735 43655.15570019802 928616 48028 1139 XVG_20200629 108308567.02376252 11879.342699320316 0.006616888357259949 7.255199742491522e-07 13090188.4192896 1435.2959657328006 290426 51687 273967 BTG_20200113 117969266.65755324 14470.597205548947 6.739485768057756 0.0008266976558153882 14224703.67785441 1744.870393656122 74648 None 244799 WTC_20190401 44913278.2729272 10944.700376965759 1.6356865036808765 0.0003986047001832442 8876953.983513849 2163.248014320803 55103 20316 1086384 BQX_20201014 24313692.198823337 2128.224368478566 0.10935996559504367 9.573727074205638e-06 174114.14089191006 15.242518188342238 15463 63 172450 LOOM_20190314 44570608.92669308 11527.684241177907 0.06440505762234898 1.666023169874751e-05 6085291.680286081 1574.1367695453514 17746 None 434508 STPT_20200913 17578559.19328457 1684.451675277047 0.02148057425586923 2.0571432730406414e-06 2418304.7912597256 231.59527181367656 14734 None 980559 UNI_20210428 20462310547.94931 371434.70495191345 39.3945262241258 0.000715195654707383 1441551893.2984433 26170.936648829476 397187 37033 1654 BRD_20200807 8269593.684696041 702.8788885256222 0.12447952918727663 1.0572456946272732e-05 270799.2169687944 22.99987059060618 220 None None SC_20211111 971819906.2976397 14974.514165147955 0.0197902101750626 3.0474384330419783e-07 78493321.3934468 1208.6964324053686 142352 49775 114917 EVX_20191012 7680325.550625518 929.3001099981584 0.3523085114965834 4.262844541275956e-05 689204.0630927697 83.39196137214853 18191 2898 447432 STX_20200801 132924197.06682879 11728.094982830999 0.17293361681908337 1.526874870939847e-05 4010200.6882425616 354.0708146241443 41863 None 101702 FLM_20210418 0.0 0.0 1.015671309688518 1.6896826247385457e-05 72265270.87689252 1202.2134661867779 19276 None 105842 CND_20190915 11441131.694481624 1105.028302600676 0.006551292548910638 6.327489166700987e-07 198510.64772014573 19.172918375212546 35797 6097 335034 GVT_20200418 3386162.6440666676 478.31715810998764 0.7591886600268083 0.000107840389153185 283014.3955295449 40.20131511024126 20504 5570 159747 LUNA_20210711 3332636495.2314954 98829.6029466191 7.941885192582533 0.00023560013114056166 317618274.0286972 9422.310345620406 89081 None 21739 LINK_20190906 655264950.5963635 61990.33249700096 1.7976355561798185 0.00017008470024121818 98042164.89632069 9276.336446542076 32324 10541 94033 HOT_20190706 299396253.8328878 27240.623950281286 0.0016854990609408286 1.5338838008180745e-07 27277799.58655518 2482.4086751151167 23431 6533 316713 BTS_20200725 69082027.09969077 7240.5524280554055 0.025597506630222464 2.683791291441673e-06 6931750.486084097 726.7649876115064 13111 6961 136009 ENG_20200425 12690235.782587208 1692.311441626693 0.15312817413167693 2.0429990754854202e-05 1148072.8716509559 153.1731066913825 60823 3579 458891 IOST_20200322 40804810.86548839 6625.403842260657 0.0034079882001432998 5.53051622645518e-07 80953982.2287284 13137.290566126989 191082 52254 127057 AAVE_20210624 2652699326.754325 78681.5190601656 207.45041909267593 0.006157839423620757 349415451.7731467 10371.84814357844 243426 11427 14216 EOS_20200711 2463873563.1804047 265351.6695201232 2.6199738972218833 0.0002820326976699912 1314726894.57178 141526.59046280824 None 71802 93319 ONT_20210508 2002337459.7002246 34943.465273232716 2.451123736014815 4.276969669003135e-05 2119776215.123416 36988.00857723128 131313 18779 138836 DUSK_20210722 36562505.28414306 1136.1839309260536 0.10137561553062142 3.1502585629323164e-06 13243381.26368528 411.53955031227434 None 13637 415059 KMD_20200421 65636307.457126625 9585.089422562909 0.5487765947567138 8.015226821308839e-05 4839940.322748132 706.9036810074412 99895 8391 159254 KMD_20200905 76154460.79664175 7258.8352660913515 0.6275320256865876 5.9850141098371564e-05 4035930.898591243 384.92224118710214 102715 8395 264851 WAVES_20190224 288892778.2243789 70208.67109213096 2.8889277822437887 0.0007020867109213095 14566566.965247525 3540.0653325097924 136701 56722 39709 NPXS_20190714 165872139.52088606 14550.155176854692 0.0007153503340064514 6.271508942043552e-08 2917404.041029248 255.77014032265643 63487 4651 223593 VITE_20210125 13238032.016389772 411.5696970106387 0.0230136120983296 7.130511273860144e-07 2373516.216399027 73.54075521656837 None None 879867 FXS_20210508 68629580.1775623 1197.7166843118216 6.34058590190027 0.00011063698330557245 6023825.765292275 105.10983069097472 9237 None 138328 NANO_20210114 474721561.065948 12749.132665058136 3.560653923697436 9.526640337162915e-05 84364506.72581454 2257.198621438649 101784 55695 338450 POLY_20191022 13566239.913371297 1652.0130844918926 0.025659253089273564 3.1222301618626293e-06 2690669.0119356154 327.4018895026353 35199 5051 332480 TROY_20201111 5682495.613182438 371.42707167423083 0.0029951747607613296 1.960680812118755e-07 1002425.8661176087 65.62011629560921 9627 None 684232 VET_20190225 244891405.77311024 64782.009061279605 0.004399528840286456 1.1680111215188804e-06 20073413.551173996 5329.200267975162 104436 54734 740363 YOYO_20200217 2575736.692691876 258.384250602812 0.014727947781185509 1.477629008643904e-06 957603.0121068031 96.07462020346021 7512 None 1663513 LIT_20210702 50654359.77136653 1506.5950700208575 2.2799158041655434 6.778853237852218e-05 4219521.365354312 125.45865078639457 None None 323209 PNT_20210823 39079136.39590632 792.1433098593026 1.2278150948861675 2.491822778709236e-05 8165923.528891504 165.72555870373998 None 334 475621 KNC_20220112 125236827.56914264 2921.3999987434518 1.350844585297063 3.156702622732576e-05 46499371.54393633 1086.614179793903 203403 12268 100267 ONE_20210421 1123697342.3414204 19890.02541293162 0.11908183059436325 2.112354850647029e-06 185584026.76412615 3292.0162310333703 130030 15719 31277 WAN_20210624 95374575.91496736 2829.0967874536323 0.5431519295385975 1.6116554395867877e-05 2156458.198104994 63.987024554433866 122359 16600 180661 FUN_20210325 228162233.9345983 4327.425478425725 0.03577285160234601 6.793648066692304e-07 11738314.412606634 222.92317621724538 2465 145 203036 XVG_20210729 345378382.7012318 8637.705164390898 0.020984122246238305 5.244885893401417e-07 21851294.26624385 546.1631594818346 322033 54478 103436 PPT_20190811 23433420.71765631 2068.158772229618 0.6546668107932624 5.7825193934993454e-05 1593509.960086896 140.7510216803506 24086 None 744473 BAT_20210724 781343361.6478502 23374.91468729111 0.5252383955059522 1.570812730116298e-05 65264439.01657118 1951.8415353541504 208582 76568 27687 VIA_20190512 15508226.719265258 2129.166052271622 0.6699638389987231 9.207023827530212e-05 1080241.829448077 148.45297140346446 41298 2233 2027413 FET_20210206 124586858.65843734 3287.164964388669 0.17977526758696508 4.732599149823915e-06 32596974.214531243 858.1181078197887 28197 874 293884 GVT_20201111 6101831.440877649 398.64604299128246 1.3771086944011193 9.014734728293005e-05 342915.7214528242 22.4477143716152 20592 5477 262282 WPR_20190923 5374645.4211698305 535.1262085243043 0.008836657178926174 8.798211754699524e-07 1729690.3552155234 172.2165034481616 34384 None 840031 QTUM_20210219 736897611.4191172 14256.887221400728 7.166494630840769 0.0001386157168887403 897711247.385901 17363.703529473387 200886 15484 134759 WPR_20200320 3108821.901573315 502.3221759220845 0.005166367062763456 8.369266831165841e-07 363721.4651915311 58.9211327307871 33549 None 964364 TRX_20200526 973956862.3665104 109590.85797650118 0.014723843665563867 1.655723032743034e-06 1379789255.3117566 155159.81439643633 509040 72853 68608 DOGE_20210206 6033220883.170296 158280.89576560873 0.04706214015280456 1.2329304156456881e-06 5160805640.580533 135202.39884646185 401311 939804 31801 WING_20210131 13643218.777184462 399.2623697568746 15.05978265779853 0.00044080251772944266 3332927.8121223617 97.55539003301826 7862 None 427230 OG_20210618 7380055.75283842 194.39823377211403 5.777366786818951 0.00015136213161560358 3918425.3068205863 102.6594344624351 674625 None 238671 ETC_20190629 892649008.8179327 72060.34182936417 8.009565572472855 0.000646959729843802 1038996917.5383962 83923.29883525177 228156 24713 633324 SYS_20200927 31690655.10734422 2952.0583320669784 0.05267275814767889 4.906659449727719e-06 611102.9622674399 56.926468823965855 60082 4494 347429 LSK_20200418 145501288.89239472 20668.005783821598 1.0453339943454094 0.00014848644438561763 4047787.676519298 574.9756565514209 176792 31325 162071 FTM_20201031 43310254.65183101 3188.925805344164 0.017184116694042774 1.266177324691633e-06 9081603.826284645 669.1598434419808 27789 2801 103749 ONE_20190816 26837186.871192135 2608.3123616165367 0.010017067477353904 9.723012391336412e-07 5723901.366289865 555.5873915898305 69556 None 130681 KEY_20200319 2167104.4006697023 402.6759856197262 0.0007872268586139292 1.4611396999891165e-07 737694.9391099636 136.92055221698578 23466 2756 250395 NEBL_20190621 17399250.986333836 1819.3528772640307 1.1394959596459702 0.00011929790000361171 663088.476730814 69.42109984765283 40232 6158 698724 BRD_20200530 7573875.301930298 803.0487038552784 0.11789988903659439 1.2577052180263547e-05 984881.8557874849 105.0629529243177 None None None CRV_20211221 1632866816.1229355 34610.27027861256 4.143311688181949 8.791309509679612e-05 447078970.30780405 9486.154793653473 None None 9223 HOT_20190513 216979351.6875728 31201.72414496282 0.001222287661571077 1.7565297330283717e-07 8617193.274431992 1238.362840244683 21285 6058 229269 PPT_20190812 23674923.51797495 2051.460853303459 0.6537623368854167 5.661113716267388e-05 1690804.512798262 146.4115639412656 None None 744473 AMB_20190601 6666880.383212587 777.3904321314104 0.04612099059526189 5.376478633309426e-06 344224.51091448276 40.12740628739297 19560 5688 617435 APPC_20210902 10418161.55110963 214.31668814785166 0.09195580113286207 1.889946629203662e-06 1885801.535139587 38.75844928515849 24993 3116 1094783 APPC_20190228 5777953.049745198 1511.8492999525251 0.0547794839456756 1.4359938890354151e-05 2026137.2615807722 531.1332850200431 25276 3418 1561264 NAS_20190725 42506375.8732959 4326.802391289344 0.9350073158456085 9.522885099688985e-05 4261676.506319614 434.0442584133421 24393 5133 512130 VIBE_20190813 3216862.572856268 282.6532552611767 0.017417381914747978 1.5304086846430898e-06 441879.80850164534 38.82654119944 20386 None 1550581 ARK_20211221 190408773.59793466 4035.9073088956125 1.1714497722752821 2.4854684249310705e-05 2464894.5590225775 52.297740306319746 77161 24359 113733 DNT_20191203 4647867.987175628 635.7349501411031 0.006182511907985456 8.462188925563753e-07 293391.0197665375 40.157306209495616 59475 6197 426375 NEAR_20210421 1766774890.3997931 31272.83134421099 4.945357819186891 8.77086409042585e-05 100466878.46449031 1781.8353470452391 50908 None None EVX_20201224 5243630.436256304 224.2379043283699 0.2374912974144286 1.0184308370023214e-05 568889.6490765163 24.395620714468922 16603 2808 1370634 NEBL_20190316 21388786.212227784 5450.399876245571 1.433454966463871 0.00036528032466618955 740679.970972177 188.74385774244678 39833 6167 631172 HBAR_20210401 2863001316.414102 48676.343139099656 0.3686393011829175 6.273469838860349e-06 280316413.04839855 4770.399024069489 73375 13516 46082 NANO_20200414 72363493.26499665 10562.080438613362 0.5418215844501005 7.904427875683417e-05 4432610.509903195 646.6565947550007 97454 50376 296838 XLM_20190810 1439502177.7021937 121357.07536561976 0.0733227995085671 6.181470680498189e-06 140882833.51893246 11877.112039087326 275782 103304 68303 AMB_20201101 1900419.1396479695 137.72682496756585 0.013143414653978017 9.52527119812048e-07 260252.3016222046 18.86095674639815 20154 5498 433518 REN_20190904 45469772.42065503 4278.527075752256 0.05536337112791633 5.222149482743577e-06 6758719.758411017 637.5161803071231 9560 880 312063 SFP_20210703 74155888.47475249 2190.204910817606 0.6855735894646312 2.024842944823352e-05 6100442.844752875 180.1766993991419 357558 None 22344 ETC_20190613 952223804.5950154 117226.64963753601 8.589384837976876 0.0010563244564132327 793991430.5702561 97645.2426005678 227756 24642 668165 TRU_20210506 114941417.75082771 2007.7915264353444 0.47038292543104687 8.205140718311176e-06 13693643.23684139 238.86553620472404 None None 91000 ZEN_20190316 36248104.355638415 9236.563608938111 6.009485803992118 0.001531287737526542 419381.76613488887 106.86341174114564 25017 1506 311352 EVX_20201229 6251623.215679001 230.54666038154576 0.28425451888868086 1.047257333667684e-05 193005.33591594602 7.110748995836565 16645 2810 1370634 VIA_20200711 4675476.655437413 503.59807471225713 0.20179521841747314 2.173547019275439e-05 133127.702089963 14.339255524974941 38629 2155 2172267 VIB_20200707 3003591.798287188 321.7628053956321 0.01646581897059381 1.7630709587613837e-06 404821.33079140587 43.34608154505441 30768 1099 None WING_20210711 24301012.157151688 720.7295633189032 13.89050762137018 0.0004119704738010981 813111.3388464616 24.115595531027775 None None 421675 REN_20200309 64207608.80102096 7974.318467294236 0.07359680892834053 9.14862922278161e-06 16397983.415420715 2038.3909635956659 11257 872 409604 QLC_20211221 8916383.67806767 188.9600521383298 0.03711936038187735 7.873329498210001e-07 722473.2034636904 15.324266167242774 36008 5832 940522 ALPACA_20211111 128910364.69683582 1987.8448178018168 0.829734047478665 1.2776839675387444e-05 7658598.069243146 117.93258329738192 66231 None 23550 LINA_20220105 162999909.35992867 3524.0855095112356 0.04969762617476291 1.0801271465205427e-06 66876859.57172087 1453.5002384910692 None None 129596 EOS_20190312 3684156427.1395373 952838.0290591737 3.55862081652519 0.0009204290063110246 1645846918.2551515 425694.4815460442 706 63288 84720 OGN_20200306 9979546.378750222 1100.958250421353 0.35339365531600875 3.900614512855972e-05 49002367.30674095 5408.6807220705105 63784 2160 120835 BNB_20200801 3060607052.3759594 270011.71637916175 20.693955717192168 0.001825638080252395 236980556.8841673 20906.622921190683 1202853 67432 992 AERGO_20210203 14203436.699581506 398.8307113712756 0.05379742721382956 1.5147923229096994e-06 6141842.361558719 172.9379291844475 None None 586684 UNFI_20210702 25466556.961369157 757.4429790758568 6.186129645099615 0.0001839316386063011 5167124.200015387 153.6336409864877 None None 196692 MFT_20190714 18851211.167566564 1653.6113210573992 0.0021252231422066925 1.8631928031037958e-07 1084110.1106239473 95.04442690141518 18869 2138 960456 QLC_20210610 9206663.975896034 245.7812341793191 0.0382268278633716 1.0188788992805076e-06 1200508.906957592 31.997768636968786 33913 5651 940522 ZEC_20200421 382283513.6086394 55826.13959665249 42.47664547075759 0.006203980842283865 967771414.7657129 141349.0931398955 72535 15722 144144 OMG_20210206 729123537.0047281 19241.43588725564 5.187797857886178 0.00013633398288697484 954491241.9994786 25083.782409661373 None 42549 203205 YFII_20201229 58183177.87511075 2144.097854300001 1461.033141676533 0.05382773432535971 58904155.75113433 2170.1610702638277 None None 117104 ARPA_20200719 0.0 0.0 0.02282228337841582 2.48934803038365e-06 18071160.28105007 1971.11772325657 18821 None 680510 DNT_20200107 4319291.813025185 556.6857910943708 0.00571688377559819 7.370329030619219e-07 153737.25180872818 19.820135839212934 59442 6160 582264 NANO_20210722 472405131.3028669 14680.042160735364 3.558078681811526 0.00011016963663813005 19160097.391373683 593.2586534270004 133904 107481 59418 IOTX_20190902 18273919.69510075 1878.7856134778558 0.004436511001925574 4.5601564489951776e-07 683185.2528369402 70.2225608193147 21170 1764 585663 FET_20191015 15669367.31598906 1877.4608241398519 0.04601802766223419 5.513120249502508e-06 11506330.149134267 1378.498492118415 16286 310 514856 TOMO_20200106 30540242.849698875 4158.403048178458 0.44228063820420455 6.021632393603913e-05 11465813.584257018 1561.065724656664 20283 1432 259463 NMR_20210210 200228702.10680863 4299.103023432514 38.29516236466472 0.0008222340082739358 24748659.691388324 531.377552696687 23823 2187 2472794 HBAR_20201130 209178314.02411062 11528.998065594767 0.033648895096620675 1.8528702613631017e-06 3262297.6819261434 179.6378258839705 42758 6761 195840 SYS_20200407 11533416.495311089 1583.1744794279527 0.019771694220509037 2.7140302890898734e-06 258815.87252205302 35.5272598032315 58478 4509 925060 REN_20200704 145474288.00779828 16041.93191591616 0.1663649168023056 1.8345610795473208e-05 16203358.172317011 1786.7980120004381 15254 900 198757 CHR_20201231 9400813.97060705 325.5463159594792 0.020901127861831896 7.247720591647055e-07 2262552.562269491 78.45676512600957 36149 None 671029 STORJ_20210509 325237806.0876382 5546.26625661868 2.248413738214069 3.8275759972664066e-05 521134040.66372 8871.499544328966 389 13154 52053 MATIC_20191113 35471956.85391653 4030.4498113239156 0.014886648686227468 1.6912757937017562e-06 16119126.133222269 1831.2978575201969 24501 1206 195484 BQX_20210219 1031493341.6919179 19956.48243967958 4.636203345185829 8.966355772871599e-05 20926565.424048774 404.71699950592676 40975 1214 44204 NEBL_20200418 6503820.412620254 923.8474719243432 0.4006064389354913 5.690489933101675e-05 128625.52071677148 18.270855374259522 39402 5992 1629881 LUN_20200520 2248568.4483517674 230.95053368384376 0.8352065390981142 8.560474060934709e-05 1464632.949420971 150.11798621509178 28861 2132 3817056 ARPA_20200329 0.0 0.0 0.006413540258703563 1.0258271500104535e-06 1224858.6526280083 195.9125865134933 14142 None 1589260 PERL_20201228 0.0 0.0 0.024603257209231767 9.355451905757704e-07 1839360.5610923683 69.9421589601163 13434 503 454264 DNT_20210105 33428553.863212388 1068.4727779198229 0.04449920416581065 1.4223226193038791e-06 5145347.322667716 164.46010706024563 60299 6170 301062 BLZ_20190426 10478044.481627544 2017.192653157641 0.050743951204966456 9.762761652700764e-06 1266989.7487881246 243.75947556529763 35662 None 850620 EOS_20210325 3544847445.83624 67061.84149822917 3.6946318037540156 7.012617671899558e-05 2907570538.378072 55187.31398080635 205783 80321 55495 BTS_20190626 191558881.74901477 16182.049930991234 0.07068082247469494 5.97080431878708e-06 35706321.22721016 3016.3126223913587 13698 7179 169425 STMX_20210614 185068800.08121124 4755.049901034863 0.021588510059182525 5.530188012512221e-07 17923976.99938823 459.1468446262705 66306 4460 51930 CMT_20191203 11142176.223192455 1524.0258254449816 0.01387526896769392 1.8991495551505877e-06 2837090.384876027 388.3210447959205 287293 1645 796012 IOST_20210104 105712745.71003856 3162.6487727787417 0.005709805104756492 1.7181845492380536e-07 41854348.2037594 1259.47371377391 None 52142 596701 OAX_20190605 8319926.266972504 1084.8904784826502 0.18599880994759882 2.4253620939201153e-05 679812.8617876521 88.64531694604057 15118 None None SNM_20201208 3692631.019043064 192.54465472 0.008442884716026684 4.4e-07 72884.82910147813 3.79838478 None 9509 None ZIL_20200312 59579863.0825632 7511.592839335539 0.005770525037149341 7.273324214302515e-07 11700104.343520287 1474.7124686877914 68653 10577 224303 MBOX_20210902 223881289.40381768 4602.2371209962 7.545768277086657 0.00015508645614893557 116622679.4125692 2396.9193583124224 124675 6178 11703 MANA_20210722 766119950.5194334 23806.59540871709 0.5801036598039508 1.796244037930973e-05 85223763.66896082 2638.884875026375 149687 34682 17778 DNT_20210616 109929915.93582979 2722.0382692856233 0.14626477553323322 3.6225074063615895e-06 4051113.7056674045 100.33303882833174 69169 10156 205349 RDN_20210325 45342632.59351324 861.0928308349554 0.6780673223814043 1.288889157239339e-05 1036316.454265681 19.69859035059709 28021 4426 660799 1INCH_20210124 185939028.0948255 5809.494053255606 1.9290928771413423 6.0194555559625044e-05 171817562.4460831 5361.318747963172 None None 17332 AMB_20190314 8261447.72376861 2136.730079035706 0.057136676225944316 1.4777755520603595e-05 1834870.4373528205 474.568500063898 18013 4951 683683 BTS_20210618 134177229.29513562 3531.573404606315 0.04971825990569592 1.3030725012294159e-06 10815091.192903735 283.4541667084122 6108 7175 121525 NAV_20190905 7445432.481086816 705.5801710255112 0.11274609461138993 1.0674769900732607e-05 66328.32589092817 6.279948048106805 51446 14199 463565 NANO_20200605 122336585.42191823 12515.379017384455 0.9181099841650368 9.392525050328568e-05 5430012.811290027 555.5056826882164 None 51637 257141 DOCK_20190703 7558433.026151142 699.5241904078467 0.01471679381756783 1.3607563066514565e-06 3232383.3760390235 298.87529301455845 174 15250 279432 ARK_20191015 29952369.01153669 3588.3529134215423 0.20981239850146738 2.5135939369093527e-05 1809690.6459809616 216.80451050119908 62833 21767 84118 OXT_20210217 0.0 0.0 0.5980650049472218 1.2153425519425202e-05 52763019.39051176 1072.210246441625 58281 2472 125162 VIA_20201129 4875547.480460475 274.6364009980302 0.20992335457562844 1.1851993962258383e-05 45938.88270229009 2.593648341420176 37946 2133 5297351 CELR_20190510 17480129.02350401 2831.188287486327 0.007374891386229801 1.1946331638670308e-06 4165571.7860956476 674.7665750617497 13145 None 376913 TROY_20210202 8429744.46973994 252.49986781837663 0.004463890944350312 1.336555745502098e-07 2433189.7137363395 72.85334100527021 10455 None 869305 FIL_20210804 5123114649.494363 133359.93076656002 54.485791667816656 0.001418565565202547 312868126.2168754 8145.682327726165 None None 38800 PSG_20210422 0.0 0.0 35.42721205774567 0.0006549916453917901 88785734.7536925 1641.5041183271865 8976541 None 26882 BNB_20190729 4314964481.657867 452020.44861948956 27.73059671698608 0.00290792081324365 192889941.61986345 20227.068375999817 1016387 55012 742 BNB_20200314 1615054798.958406 293352.3081737885 10.894970921051218 0.001958449569617043 551414732.7958282 99120.77360737819 None 60136 1861 BEL_20210314 66504844.65093305 1084.0488733427803 2.9806070502752084 4.858706713202802e-05 45032385.52189308 734.0758112564894 None None 377767 ARPA_20200313 0.0 0.0 0.004896653070180709 1.021823550215259e-06 1999725.1503621205 417.29855542376714 12251 None 2543726 YFII_20210930 154280745.13983005 3713.4676609755134 3888.251521302765 0.09354273010652632 46667382.48597645 1122.7139861572268 18602 None 472197 POWR_20190614 52026125.74988071 6327.51996161 0.12401283192884671 1.5073702283147801e-05 2228460.723255097 270.868368777424 84749 13219 613771 ARPA_20210729 35030765.91051328 876.0530927690069 0.035694102546096104 8.920870144762169e-07 5466026.210567559 136.60999031805812 43138 None 718548 OXT_20210825 241359872.27042443 5022.599433253325 0.4079680191801243 8.495234347064565e-06 28695306.55104711 597.5305473745294 69626 4394 281740 OXT_20220115 196397446.2796977 4557.322805510183 0.3324193258122399 7.709773399230595e-06 37060532.29175375 859.5418010855277 79527 4973 152824 LTO_20200305 12722017.098938966 1453.2338507349077 0.0604563492719623 6.902646982069874e-06 6261652.575762009 714.9286679620702 14311 410 867701 DIA_20201106 26658195.895239577 1716.4132990305056 1.04149941886116 6.684579630482464e-05 10348449.259473512 664.1869584775982 16083 171 89819 WABI_20190806 7346771.084638667 622.6330592144237 0.12876890970649107 1.0901750331051814e-05 382329.19258826465 32.3685073622999 36330 7985 1513094 MLN_20210916 183360449.89573872 3804.7547634235243 126.34110300954826 0.0026217595874799887 75982482.94506156 1576.7457968662397 28498 442 123514 CTK_20210210 63667374.76045742 1366.6321320737404 1.79432803270705 3.8525950521947096e-05 27499444.375456847 590.4395484428438 13234 None 214497 ICX_20190131 96206381.84031197 27818.39150538722 0.20322142538213014 5.876214306600306e-05 6702040.617051768 1937.9170716513916 111517 23440 231977 STORM_20190601 16354590.879985232 1906.5926196786586 0.0036301616509607664 4.231801247099603e-07 2017485.7138721829 235.18507936720553 26950 2571 4240387 BRD_20210325 26968247.135878958 510.083227641195 0.33720865045371884 6.4004086655845545e-06 4603713.643408314 87.38105815937398 667 None None DEGO_20210428 75904858.4029207 1377.8268932112455 14.052061298012989 0.00025511090355151737 78882952.3859315 1432.0960342545545 97794 None 65410 XMR_20210616 5036231306.876767 124780.77698708684 280.84152877190604 0.0069583031507208775 240130852.8273711 5949.630302614761 424790 225363 31404 HC_20201101 41426100.62341648 3002.1666343011134 0.9234734932426192 6.692577884077631e-05 7604249.2300408855 551.0935678650324 12798 846 947042 BCH_20210724 8556468214.549923 255978.00449447625 455.2009552475615 0.013612719042144724 2957662827.417543 88448.48110903885 None 592014 283440 PERP_20210814 697110873.3524212 14630.644152481207 15.787032121383197 0.00033080500829634206 35798224.658077195 750.1240203957966 25181 None 147640 ASR_20210602 7113433.295581404 193.86852411771238 5.7665576034592725 0.00015722650849476447 2233087.7595361276 60.885647163854124 1973540 None 158800 MITH_20200208 6143066.220464064 627.2191319660413 0.01045054138013055 1.0659873267217771e-06 3597168.044245479 366.92219166222185 89 2082 1155699 XMR_20210727 3929216506.9167852 104891.37513920983 217.37506240560134 0.0058256112806104555 271581402.74606794 7278.331129305917 430741 229543 33010 FUN_20200312 16162624.046941038 2037.7872844689255 0.00269109145959409 3.390059346293073e-07 309542.3187148524 38.9940976138654 None 17014 312525 PSG_20210112 0.0 0.0 9.723871074242341 0.000273551797812268 3717248.6837694426 104.57358521072831 None None 36186 KAVA_20200315 7457637.698923062 1442.0868638767452 0.40252445080138904 7.749078424968073e-05 1588124.6864666787 305.7330485031907 17892 None 380992 VIB_20190723 5422716.07356805 523.7286551262632 0.029681162492684588 2.8687419590487036e-06 280795.6568185142 27.139445189602938 32569 1123 2209395 RENBTC_20210108 487288633.973656 12432.427259160393 39221.1493555962 0.9947108373142618 52835491.9831953 1339.9922575959977 32106 2160 104896 ARK_20190920 32123974.328177474 3136.487926372537 0.2251497184456601 2.1970742056548283e-05 515468.17378170305 50.30083254246283 63098 21788 89396 PNT_20210128 12726665.762378164 420.6992475213144 0.41197329210736416 1.3548580309997446e-05 2241239.003590721 73.70770682419378 7722 117 1091126 CHZ_20210828 2016065147.0654378 41101.122971972225 0.377216920297181 7.69122968737097e-06 365403840.7343184 7450.367988586131 376788 None 58032 FIL_20210617 5506730946.165429 143968.82365407882 69.38978912487848 0.0018142018691798645 445099368.9041369 11637.160412513034 92401 None 24500 MANA_20201208 115510242.71320349 6013.947603866952 0.08711498468658163 4.537280967265309e-06 16272860.678076128 847.5527063826443 None 7596 85498 ONT_20210105 387867905.5952778 12397.374419878804 0.48308144232524197 1.5440673047205653e-05 199170932.24094772 6366.07614326263 94517 16679 288289 JST_20210909 114886580.39282246 2478.830634952257 0.08001753246720673 1.728355193588234e-06 170598331.50871322 3684.8738418847247 None None 173611 KNC_20200310 127655626.80308029 16123.755729177714 0.7254681145959689 9.166430546229232e-05 119841460.17874639 15142.201279224613 103503 7160 154836 COS_20210106 23549782.44296357 692.2210481926697 0.007833943593624331 2.296904220957524e-07 1612168.7568054094 47.26862247790346 14073 None 444691 AE_20200713 54015020.11545559 5821.838862310545 0.14990528490433008 1.6134124086146955e-05 7158131.862781336 770.4210546867806 25365 6346 446163 ANT_20210207 188337660.99350718 4787.655714204195 5.479852872495054 0.0001393531675546065 82993194.62442037 2110.5246482873267 77669 2739 124714 DLT_20191030 3295691.6830301858 350.2254399403789 0.04108162971693466 4.3656486179109024e-06 397870.43244853546 42.2807594415017 None 2634 7624999 TOMO_20190902 30717546.023515154 3154.4271457185973 0.4753355482899013 4.880749775646019e-05 3613800.349157289 371.06535176749946 16982 1317 270545 ARDR_20190207 48369036.757586405 14202.232922241537 0.04841747868710024 1.421645655811021e-05 594622.9217339884 174.59461261744806 69840 6608 706633 LSK_20201208 192585969.16859353 10026.8680182 1.3480916759919144 7.021354929390124e-05 3599458.1115359506 187.4729545820428 None 31053 270699 TOMO_20200621 32927707.978896268 3519.282191725972 0.46416397667455533 4.9589457711486696e-05 8927214.160748431 953.7485271421912 27139 1563 168109 KSM_20210602 3307262553.158931 90135.67477310463 367.89107045493296 0.010029222640728414 318293124.71643513 8677.11360552122 72044 None 93747 ARK_20211225 215266090.73452178 4233.292119795925 1.3279155062407348 2.611397935059086e-05 16656019.255495662 327.54715255369973 77168 24368 113733 AXS_20210310 190567034.7028386 3485.223776389449 3.4481846369398705 6.305335137792668e-05 61558833.596841656 1125.6621016215788 44234 None 23096 LTO_20200331 6747276.233065144 1050.3648949170972 0.03174456206096915 4.951532221534496e-06 1220019.2639107516 190.2991978451145 14497 419 899036 XMR_20191024 912983345.8243501 122304.55151570647 52.87297536399679 0.007082000900492214 92988873.98641127 12455.271994319266 320004 162101 81315 ETH_20200320 15068113354.89011 2436558.3863986377 136.81187578973578 0.022137918542310515 13910341816.437582 2250871.952821323 452875 455164 19216 NULS_20200501 20942959.608237628 2420.1837803683534 0.22002634107324737 2.5525973806660005e-05 10756151.910205003 1247.8562820300988 23841 5193 573098 PPT_20191024 13073609.1023607 1751.8942010042272 0.3610725277458332 4.836338316568861e-05 781041.6073654142 104.61558723722304 23927 None 810126 ATA_20210805 72662705.78686586 1822.9495277720819 0.4207510692333247 1.0578723122867137e-05 19232119.03314201 483.5430666601825 66920 None 92285 NMR_20210217 228267349.88312733 4641.502847519769 42.99292204947705 0.0008737390439129177 61207343.32797058 1243.9081386067642 24637 2356 2608504 TCT_20200520 3105776.178943181 318.28225663006117 0.00537485038260985 5.510179087672751e-07 458653.9744148013 47.02020258043489 None None 997352 XTZ_20210809 2676968848.247981 60850.89574782902 3.179415843902639 7.227858370727823e-05 121307281.31106497 2757.7136546510374 126748 51373 70665 XZC_20190105 34913429.48801604 9163.526227926091 5.358499416355462 0.0014075308055100787 264266.8903235577 69.4156628759603 58956 3919 314131 PAXG_20210814 317325382.3425712 6652.568162111077 1783.5930189675576 0.03738774187080741 9825648.104287788 205.96559368075327 24237 None 40633 XMR_20200526 1079727012.4973934 121491.77959290064 61.439926176942414 0.006913271487047467 92533680.23039332 10411.966500187964 320051 171861 80558 ENJ_20190305 66640657.474272616 17946.643810380738 0.07723688944328008 2.0800259127026772e-05 9743979.701027244 2624.099755579803 39685 11509 17990 FIO_20210819 71983147.96915303 1597.8339347980539 0.2116755128221455 4.699259337116039e-06 6706638.629400092 148.88937213229826 None 515 401470 CDT_20210427 27624924.649484675 512.7802896101391 0.04101246185971301 7.608398708356666e-07 2640942.2262421213 48.99325841915148 20701 326 413427 BLZ_20190316 12251004.515236508 3122.001193199918 0.05979015820347456 1.5236033856218452e-05 1905464.265596173 485.56014793669857 34922 None 1348267 MITH_20220112 30155554.23444315 703.4387393274767 0.04863038282767921 1.1366001878633807e-06 10236769.82514373 239.25607469719796 None 2945 243590 YFII_20201208 77965440.15340973 4060.2589036618915 1961.5347024783675 0.1021728966452942 78080351.74259435 4067.0683514008797 12569 None 77948 NULS_20210105 20914126.85231831 668.4756782211783 0.2112481659075028 6.752099285576656e-06 16423306.395571353 524.9361333101418 34676 5108 933536 ORN_20210127 50643707.90126197 1554.2994557777633 3.0019980972887947 9.213393335967773e-05 6269265.554610765 192.40921416449 32532 None 133090 GO_20190813 8381640.286022426 736.4884656833602 0.0109580050032281 9.62814814096003e-07 249722.34168377888 21.94161892726426 10165 686 898219 FUEL_20190902 2597184.5802110545 267.03668859123184 0.002823270508035925 2.902823361911123e-07 126358.56898751976 12.991904423986686 1 1504 None KNC_20200914 242133171.6006304 23457.29961478494 1.225819524784311 0.00011869800813873027 44182816.8129626 4278.290762728587 123087 9073 55300 WNXM_20210909 168581686.74135575 3637.373905268615 76.19436271617096 0.0016457758501439686 19115241.45070813 412.8835996231736 None None 144980 STORJ_20190704 36584647.81272883 3048.361164602485 0.25629582566294445 2.135757423787692e-05 9276705.851644877 773.0439362286431 83733 7769 206682 POA_20190621 7832668.632239772 819.0230846094496 0.03553366252715934 3.720145984759948e-06 828840.7856536243 86.7743008027354 17671 None 649823 DUSK_20190914 10679814.715790583 1031.6924474667485 0.08714728808085125 8.418610371328677e-06 2667437.456389867 257.6800395027848 20455 13326 183070 SRM_20210602 230083686.61953735 6270.6688732429 4.591256886232046 0.00012518954034567657 75011667.54032229 2045.338871823048 88634 None 27102 APPC_20210616 9286728.824935077 229.95406703219342 0.08156086749699239 2.02e-06 92726.98295960091 2.2965487166416048 24782 3133 602662 NEBL_20211125 23708724.35355322 414.43445313921416 1.2701070466877094 2.220752885786351e-05 857083.6988914111 14.985910854028488 40980 6292 970869 CVC_20190325 27384380.790624894 6857.30511697011 0.08000068230473642 2.0048252637071804e-05 1669450.57824806 418.3660188088316 None 8209 423151 XRP_20190531 17848092752.66428 2147354.8662644043 0.423119421422637 5.0937470360932946e-05 4047752336.7291055 487290.9496503322 923515 201380 40625 AMB_20190706 5409064.69951015 491.67355707905966 0.03736671723957265 3.4005478609722056e-06 497452.5826965634 45.27053594722586 19364 5668 665326 ONG_20200319 0.0 0.0 0.06569844398094213 1.219402052631732e-05 9130985.059194807 1694.7649364361941 84420 16525 298289 PIVX_20190730 28928594.562251627 3047.839886471623 0.4780419722247527 5.025701044807683e-05 390503.3287230847 41.0539890050028 63340 8618 284209 POA_20191012 3693822.3528576605 446.83742480493333 0.016777318735971904 2.029532874885964e-06 378666.54270683235 45.80685442872146 17718 None 548069 YOYO_20200626 1834984.8447595297 198.1492894059342 0.010491993967536443 1.1329691114648634e-06 903931.2698462582 97.61025509467476 7486 None 1874217 IOTX_20191026 18117217.048147514 2092.495240445175 0.004182623430610137 4.831030632877626e-07 1852750.435620511 213.99713022346788 None 1775 522982 POWR_20190528 54302909.67015844 6157.403273685407 0.1298135307848873 1.4719730085687878e-05 3090973.9241728135 350.4896723063335 84966 13207 633531 ADX_20190905 7632996.4198897965 722.8431210438631 0.08293404215446366 7.851278479085242e-06 523524.7665719368 49.56153861883297 53716 3842 517237 MATIC_20210727 6509460343.988468 173771.60197030724 1.0153513218201253 2.7204528849720884e-05 1874618892.760483 50227.07180694345 549844 None 5822 VTHO_20210710 230553561.87763813 6783.661333057512 0.006148101065103693 1.809189264804525e-07 11945540.685597274 351.51900955785237 None 192364 29344 SNT_20201101 82021372.84478933 5944.122790910411 0.02110577468561734 1.5315423782175505e-06 5039133.473976266 365.66515941006963 112671 5699 160974 THETA_20190220 62647525.831516884 16001.86978170797 0.09010756351280633 2.3015904914692057e-05 5337613.207920555 1363.3705459968871 None 3833 509909 OCEAN_20211011 355334073.949165 6493.927461035699 0.8185172406766047 1.4961010929940846e-05 47498004.87546394 868.1774002766108 124389 3608 161636 SNM_20200229 4973480.311502389 568.2169740354902 0.011327955767949633 1.2984705448310725e-06 81840.08398394623 9.380945743125 30251 9710 None OST_20210212 12217996.132136038 256.3351507653413 0.018095751400491647 3.789989908494348e-07 1907032.2186074164 39.94104861265571 None 740 716707 CKB_20210506 673040757.2713026 11752.92216675741 0.02577498193432158 4.4960678279135105e-07 37852507.288560934 660.2815111941609 42318 3538 113010 YFII_20211204 130586849.8874116 2432.1372534030515 3286.5236803738717 0.06118283165375754 14684167.299825553 273.3645101192866 None None 706820 BQX_20210105 34202072.34575962 1093.1966545553928 0.15331045069847754 4.900243181689369e-06 940448.673694119 30.0594459151517 18756 116 152603 OMG_20190523 275144755.5619957 35893.92949869919 1.949937014393562 0.0002546163150276694 154029599.1241733 20112.67474010346 289756 39035 None SNT_20210104 135433121.18539223 4051.804648849462 0.034875603636852916 1.046177744079166e-06 21224828.21007476 636.6898513498409 None 5675 172923 TWT_20210804 149272936.660287 3885.062957810895 0.4301660652546361 1.1199594404523244e-05 20560863.77113857 535.3126465405827 1004386 42318 3506 SUPER_20220105 328352844.7378029 7089.273869056748 1.1401748333975275 2.478053549281183e-05 14543329.656252103 316.08441633158367 None None None AE_20190528 156543001.01001018 17750.400351406483 0.5923341848897782 6.71754046111976e-05 67368628.49795814 7640.137937157729 985 6353 408857 DNT_20210117 91569253.14023162 2523.564680810168 0.12183171810481323 3.365901397904819e-06 16658021.111928875 460.21887747435653 61020 6414 241579 DLT_20200403 2452435.5191021343 361.94942972284537 0.029950205336774904 4.413490271401088e-06 301898.0786056967 44.487983234121 None 2580 None XEM_20210708 1196113582.9415517 35203.24865188377 0.13279448863246993 3.9090491894280614e-06 93748548.71321355 2759.660375452047 371102 21688 80485 ICX_20190929 82160377.94207819 10029.050627235942 0.16570928327932405 2.0228974498526077e-05 13053075.898580592 1593.4553228054324 113384 26319 187595 BQX_20210704 525589040.6157454 15188.340599012832 2.3685736005072484 6.832379344143829e-05 1350166.6475469691 38.94686114831415 89943 6110 22386 XEM_20190818 486967113.7872096 47669.77281092378 0.054130802704423935 5.295735466137496e-06 64644024.9276497 6324.26711557434 216925 18409 173706 FUEL_20200323 1559375.9387946366 267.2789258545471 0.001574342491346016 2.700003790613068e-07 123393.42517271369 21.16202271960612 1 1469 None FIS_20210428 65536711.8820192 1189.5267694042457 2.432600903620838 4.416815139294158e-05 26856339.025980677 487.62410890914 None None 230666 REP_20200612 154310669.3049834 16631.056943020816 13.975813931281351 0.0015028376661517645 25664668.977424804 2759.7556334276746 132466 10162 227925 CAKE_20210624 2530522258.421076 75062.90144096444 13.623115822443058 0.0004043807674667325 319304823.08678967 9478.061487442437 922337 None 861 ADA_20190627 3044379770.128304 234430.2239639988 0.09787657906455512 7.505462114335068e-06 671946279.164299 51526.80436256097 152939 74151 101159 OCEAN_20201201 166269741.4416758 8462.100540000352 0.4787198694692493 2.4385541520647586e-05 33205576.658154782 1691.4609565135113 32615 1238 72528 MTL_20210112 24207070.92218389 683.7630052583697 0.37187048659943733 1.0461455050762815e-05 4586710.885411475 129.0332830587402 43206 3362 362516 BAR_20210723 67217812.29652536 2078.350204445631 22.802920671611933 0.0007043693379317368 31237676.95292674 964.9141945772993 None None 42486 MBL_20201015 5468228.474495908 479.05408053013474 0.0015479565567080838 1.3545266034577312e-07 1580323.526065513 138.28490527396247 None None 582039 POLY_20201018 34227675.3208181 3012.2377392447565 0.04805724573357803 4.2286483221708535e-06 1065072.5591154925 93.71775725688514 35321 4993 316638 REN_20200331 38726942.45659162 6028.717283655576 0.04399473323841723 6.862319876690937e-06 1614320.8561782932 251.80255187990267 11439 873 364832 AVA_20210509 264192110.8911395 4505.0481803710445 5.059382709854279 8.615968315453399e-05 6655482.187205041 113.34075111047437 None 10035 44048 XVS_20210519 801229777.138814 18777.979480963513 80.06588874449635 0.0018714467091301586 1703641400.4985988 39820.629515214816 102521 None 9517 MITH_20190614 26922291.622155108 3272.255334009917 0.06330100272809132 7.690574229881096e-06 60885301.13669389 7397.085476066469 74 2071 476862 MATIC_20190819 30313833.713301953 2937.39126425039 0.013878509634899339 1.345147348284134e-06 16468807.128727045 1596.2068565996065 22242 1117 173960 POA_20200704 3468322.128081989 382.4308517997424 0.012516106596429134 1.3808390057320384e-06 76102.05491096101 8.395956444426353 17208 None 598130 WABI_20200315 3495640.2548677726 676.2820644373875 0.059281949034194155 1.1441958912785562e-05 499611.9454591397 96.42967961432925 36794 7765 3668499 DLT_20211021 8865194.17360068 133.7403785565761 0.10809921228285514 1.6307854390181715e-06 741048.936907357 11.179469215245 15476 2599 None ONG_20210702 0.0 0.0 0.7298528896983628 2.170065059178082e-05 18255926.38553526 542.8018239202999 140924 19546 137199 HOT_20201124 105024447.64910471 5734.666667055924 0.000596450978638744 3.2504297019221166e-08 8200558.004713427 446.89904561293696 26392 7314 291383 LINA_20211021 172762080.7275891 2606.449794026279 0.05713874412585465 8.623363614864442e-07 23762838.907443702 358.6281139973692 None None 142657 FTT_20200518 299663663.51590514 30867.17008080243 3.008799128411003 0.0003088752426720991 2266971.238202363 232.72118258696023 11427 None 13105 TCT_20210207 8326484.6771813175 211.6646620311366 0.014435840406772822 3.6710476244604465e-07 1576663.7857463711 40.09470652308879 None None 1849521 MATIC_20210508 4529072281.364489 79036.35309502299 0.7509821453944433 1.3102183898268691e-05 682630707.1775693 11909.67470384802 248759 19280 18351 ARK_20210110 67164983.37922385 1659.8017741476467 0.4352932926296094 1.0770585720379753e-05 3718975.868040141 92.01967743811127 None 21575 94251 NEBL_20200331 5995365.440439832 932.6995803277299 0.36959737039281576 5.764997749786489e-05 149208.8846430806 23.27367435816128 39511 6007 1176699 MFT_20200310 8455256.251758654 1067.9551684882697 0.0009287157489050184 1.1718547178356897e-07 1306562.0168884136 164.86216212450492 18430 2503 867921 WABI_20210325 25318555.56006225 478.9794161459215 0.4273091281388138 8.10207811816044e-06 9577178.097718118 181.58995441361176 42141 7456 540994 PIVX_20190615 43369972.43479847 4984.7213677793125 0.7190505749527296 8.275430249563348e-05 2176332.098290026 250.47034390409797 62982 8609 306282 BNB_20210111 6321067625.073282 163970.46757548244 42.58410098557694 0.0011077027842330374 809936299.3155736 21068.160957704164 1482610 87468 896 ARDR_20190608 118417615.32341944 14749.970594806155 0.11853621139560185 1.4764742793795064e-05 41460927.28711582 5164.328437522662 68185 6558 1048625 POWR_20201224 38626717.36347441 1652.1247306673752 0.08964678712312688 3.844945340298567e-06 3227655.512326853 138.43395196266408 80997 12576 371056 ATOM_20190805 872506960.122447 79710.5718329689 3.5993653851878316 0.00032871084741651116 99692692.47258629 9104.402003406884 27626 6377 108331 ARDR_20210104 79934893.23961408 2389.4378743185985 0.07977617365510854 2.4235036399527926e-06 10247549.33592188 311.3081510222591 64323 6288 None ANT_20210708 138536617.9391497 4077.32098210043 3.947255443540146 0.00011620932538254022 23506990.650362793 692.0584604482431 85395 3042 102952 PIVX_20190702 37462549.37011498 3530.4246232962764 0.6204068903385589 5.852385546945049e-05 1412806.1046335725 133.27198901484175 63459 8628 286633 TRB_20210602 100954966.86267182 2751.4126603501195 59.51883731672234 0.0016228967514175779 67446120.56189555 1839.049532724413 21930 None 254504 WABI_20210108 4870320.488318495 124.4251066364421 0.08266307362070623 2.096467251143697e-06 973820.6335016282 24.6976428192331 40840 7474 1296084 STEEM_20210318 179623628.0705956 3047.449708842906 0.4735746355164533 8.034549244004788e-06 4592083.3263182035 77.90814129570305 12771 3899 174807 DGB_20210430 1807925528.0002487 33728.69832725883 0.1267522856448092 2.3646934227059173e-06 108740577.60968341 2028.6666023161458 207794 34695 307288 GTC_20210909 134805904.567068 2909.85315352558 9.446688589648486 0.00020404569827020094 37329360.97835864 806.3032304416214 59618 1183 25731 CRV_20210707 690453845.4542638 20217.869646062114 1.9681482812319715 5.761998907445528e-05 201595156.55030936 5901.948968306847 139761 None 15400 GAS_20201231 21097110.29225368 730.3262480972706 1.5142359169257484 5.249093381681628e-05 3507309.8525939565 121.58077040026029 326597 101180 179737 BTS_20200117 49704727.32960847 5710.550122074697 0.018331182324145347 2.105228432530853e-06 8813786.050566522 1012.2114691672812 13416 7065 163691 WAVES_20200323 85357457.26974936 14630.37162826106 0.8530513370729461 0.00014629865206237922 43601138.31686875 7477.612995755481 140916 56870 60056 QKC_20200324 8327717.393777662 1294.2178295213514 0.002247632131274136 3.4686481098468877e-07 1649433.3996019259 254.54806256948538 50201 9197 585547 THETA_20210708 6372233371.641048 187533.9646373976 6.371964794969192 0.00018753320133865805 265201142.94359663 7805.130903132085 181633 21143 18384 EOS_20190401 4354247219.588183 1061065.524899679 4.19743250815613 0.0010228832497473507 2340509834.7503777 570364.9317012556 None 63728 105033 SNGLS_20190901 4162271.885282968 433.60031151056205 0.007212260627992664 7.513296923370922e-07 52558.632562636514 5.4752404647826225 10 2165 None ADA_20200711 3686816739.9358172 397106.4672993883 0.11844083928628071 1.27563509128018e-05 631945552.281078 68061.99003028787 158761 82853 46523 ARDR_20191017 51104735.54148232 6381.513321339634 0.05115600743431449 6.3878952086534095e-06 3713949.316663039 463.7640862719009 66467 6509 1346230 CFX_20210703 197115243.58603945 5828.670942702805 0.23211236548155223 6.854790004535749e-06 2171883.803743898 64.14051814098634 36333 None 151953 VIDT_20211207 44434505.227333575 880.0539523787081 0.9593207735759275 1.900100911459861e-05 152875479.27959064 3027.9635917424725 36937 1851 293441 POA_20200309 2766231.539876353 343.5544737635055 0.012553745565345992 1.560523685834201e-06 139866.6090170658 17.3864569018312 17432 None 535987 BCD_20190813 138232346.2605969 12145.886589327407 0.7377692970594204 6.483216160949226e-05 2649280.8085695743 232.80800951557546 21436 None 3532175 XRP_20190509 12620364938.618639 2120322.9204935776 0.2997663165666108 5.0323345694227705e-05 948761478.7494427 159273.5715717598 919578 200525 40096 PIVX_20210806 39612622.313147135 965.8604763311723 0.603684857854076 1.4754286034370595e-05 482018.18890027195 11.780706672160688 67672 9854 344305 LEND_20200315 23668359.38810697 4578.985759917812 0.021143001992726663 4.080792956962033e-06 855408.2689172572 165.10162749478377 44143 5739 155774 SKY_20200518 8006611.647131514 825.1552079259536 0.4486187088313484 4.589463932399404e-05 85995.72910583447 8.797544313293205 None 3823 462485 ELF_20190914 37867066.50262852 3656.816082610059 0.08195005471920165 7.91608240496969e-06 9813890.25816707 947.9867251238929 85384 33578 1052488 EOS_20190625 7534588182.467354 682566.493758145 7.235268497482449 0.0006550878461852742 3527752550.869538 319405.9517249227 1166 66697 103805 NULS_20210418 165695749.67099583 2748.6474026458627 1.468721970209868 2.440533688560266e-05 121125315.01701246 2012.7050444697397 47022 5312 273594 EOS_20200806 2872082950.27646 245173.51047948474 3.049416657002854 0.00026021462467791317 1643414382.6864984 140236.80752152833 None 72100 86387 CRV_20210105 118735051.06296122 3795.1139126394373 0.6587732486344844 2.105628876044094e-05 100215416.57879987 3203.1731010709277 52451 None 29021 KNC_20190228 24490699.4187547 6408.194468320377 0.155885189228381 4.086387147149377e-05 4852101.598243991 1271.933896085448 93285 6567 205097 ZEN_20190905 29779815.10640487 2819.544881292221 4.1041581378920995 0.0003885363311097276 4101485.0610995176 388.2832737433032 None 1788 209860 ZEN_20200309 79915571.88097784 9892.381870811834 9.265486674748178 0.0011517687164728833 2034454.572824249 252.8977931024717 57524 5064 41227 WTC_20210108 10442221.455788435 266.57627229936645 0.35771242088367866 9.064635740800766e-06 6190606.17541986 156.87347354701032 54814 19148 816491 FLM_20210105 0.0 0.0 0.13895080140888671 4.441267468016988e-06 10715818.382829946 342.5083921379764 None None 65365 BAND_20210401 385841137.9390664 6559.770204579314 16.611192483431537 0.0002826025044441952 395284441.4348849 6724.885839998801 72868 4504 198232 ROSE_20210508 236008590.99691844 4118.429428058142 0.15731587617656004 2.7450176252237783e-06 15422141.157514608 269.1022058609898 None 1457 225625 WTC_20210218 32740439.94656602 627.4865249637054 1.1192443248336421 2.146592704889308e-05 22374738.999193743 429.12392266639733 55566 19107 511678 SUPER_20210727 128445984.51183952 3430.8628074534686 0.5936923657101094 1.5863348588664153e-05 58543938.0451995 1564.283037147269 None None None MTL_20200301 18629082.022514142 2172.298337894718 0.2865455864076865 3.350270781382845e-05 2941785.5830498706 343.95149503237644 34728 None 606546 OST_20200127 7909701.499168763 921.6947092155871 0.011401461275041748 1.326719198362805e-06 60990.71644569391 7.097121367024763 17820 754 484111 COMP_20210117 13273.014327740146 0.3657516982919908 1.438819797305745e-07 3.96551e-12 54.33525881255531 0.001497526045841515 None None 2976812 TRU_20211111 256879199.2105276 3954.6464083794585 0.6083173798820521 9.365025073648582e-06 27869258.561209194 429.0462739373395 34860 None 77898 FET_20210704 185477764.52007157 5350.285280700237 0.27029899995282064 7.781894250065947e-06 31479012.419040803 906.2791419289226 67452 2954 137103 FUN_20190325 27094106.9977367 6784.4448402253975 0.004497210439178148 1.1270055260688967e-06 345324.2506175884 86.53860965482075 None 17799 506904 BAT_20190725 297764672.67159617 30291.166402873852 0.23270275543747015 2.3730934818752302e-05 19023872.82025238 1940.0470142647437 104420 28959 42959 BEL_20201106 10595035.849642098 681.6343437693606 0.662646664268138 4.253016673804249e-05 3484893.592495119 223.66837946260193 9880 None 193192 ETC_20201111 596053517.5132486 38969.00527636587 5.120845037299141 0.00033521725469915046 472181076.84739393 30909.59463697313 237318 25944 158636 RVN_20200319 75069458.5373492 13941.518541441555 0.013263814086559125 2.4600742925818056e-06 10469611.479871245 1941.8262263680585 30206 7586 202553 ALGO_20201018 251497933.31526405 22133.304671542388 0.3125139530667705 2.7494914640271353e-05 69515109.26730339 6115.925310718142 None 1385 218974 SYS_20210428 210179647.74289668 3814.1266128098737 0.34394316747770703 6.241531006729843e-06 4179573.345529531 75.84664880053185 64021 5082 411439 CDT_20210523 11430593.123373749 304.09315935935643 0.01721572936250148 4.580544605385544e-07 589047.6524700574 15.672638608700177 20834 331 462630 HOT_20200422 55702524.44754904 8138.276855758934 0.0003142545965804128 4.5907018097869265e-08 3835732.120321461 560.3323731212881 25057 6955 509246 XTZ_20191220 1040851928.9297283 145755.7308650489 1.5016832325682472 0.00021015370311357732 75245245.65755464 10530.228129125278 50918 18914 179478 WAN_20190930 19446966.908689078 2413.1401957666435 0.18324037847819968 2.274148851459875e-05 3147112.5423846166 390.579982049667 107826 16807 408901 POLY_20190916 16837456.13244878 1634.0064247112578 0.03298350461225648 3.2009145575176713e-06 3788941.850851171 367.701348615051 35239 5062 289751 POLY_20190510 34533490.43554727 5593.196528424513 0.07912639757095233 1.2817484564525174e-05 3814863.5431730296 617.9600750374666 34657 5055 307356 PIVX_20210804 35442884.385663114 922.4568118337784 0.5423428082186931 1.4120173511743636e-05 137767.17459340362 3.5868391356950045 67682 9852 344305 XZC_20191220 27633213.894917242 3869.61793071319 3.0609160294628945 0.00042836120465379216 11582199.817313993 1620.8759137885056 62309 4073 173771 VIBE_20210127 4208409.1398157785 129.13451060852944 0.022798660565150432 6.999521873445913e-07 67315.00075210107 2.0666688678 18483 None 1420135 REQ_20190719 9846308.916892376 917.4382894274463 0.013416737822038229 1.2574744671952373e-06 171416.0909540787 16.065854494608036 41573 29750 592890 KSM_20210724 1580368670.681887 47271.633573194646 176.69715878400464 0.005284422250317951 124091491.93440843 3711.16233880666 94636 None 62098 WAN_20210111 64050265.79058428 1661.4838905309566 0.39066226175097973 1.016195399270968e-05 5071067.60575623 131.90922376951605 103889 15876 601908 HOT_20191024 153854076.1496444 20610.511537157705 0.0008671965058315602 1.1615549140033422e-07 13354861.239370603 1788.7992622328136 24479 6698 551921 GAS_20190405 47185555.309594385 9633.04778772721 3.385068549737205 0.0006915672842830165 2320705.9505652217 474.118703438494 319338 97732 185739 JST_20211230 396496416.3610383 8523.450750934031 0.0543643243534103 1.167224563652837e-06 345122995.5626255 7409.933677891381 None None 179821 LRC_20200701 86908738.1957691 9500.072743637196 0.07454783299750374 8.150688883237453e-06 18328574.990467485 2003.9551307331728 35980 6901 365318 DOT_20201111 4109275213.3344407 269055.29792546085 4.409560532264164 0.000288635688533269 127503833.19442774 8345.991945326134 73012 5597 29997 NANO_20191022 108327383.78995973 13181.327759149379 0.8128701219314283 9.891042438145694e-05 2720016.047430368 330.9728507876025 98247 47818 267335 XMR_20210602 4767910377.57924 129979.8732506596 266.02731272358517 0.007252274822871399 261982710.31002194 7142.013331477516 420836 223159 31429 OCEAN_20210602 263195724.43911368 7173.099758002669 0.6069107534915025 1.6548600991656507e-05 44144895.121455856 1203.6963441177934 113251 3124 71086 VIA_20210120 8792247.605939422 242.79366725840433 0.3775986084352385 1.0476660662409356e-05 89581.99941416892 2.485497002257534 37768 2125 2961182 REN_20210614 382891256.1359531 9837.784806501362 0.43656140271006555 1.1183109113941992e-05 25636088.518244386 656.7029823857407 83388 1170 81558 DNT_20200223 5658985.863844517 586.567883338682 0.007537728768642751 7.808731451161356e-07 51095.86754519986 5.293290859501436 59151 6117 729290 BTG_20191019 134198715.26653029 16862.175704489637 7.66415400605019 0.0009630197115474068 13092531.272197934 1645.1086028835325 75035 None 318337 VIA_20210105 6750175.164543143 215.75502305655883 0.2924250506240695 9.346746121658848e-06 171836.84724335987 5.492400128177523 37871 2129 3644327 OST_20200718 7440874.481022296 812.7356755898182 0.010716695122383078 1.1707408365563194e-06 685537.291487486 74.89123213464535 17625 754 831793 CELO_20210814 419842965.5802186 8801.604304154624 3.149712424499292 6.601464656704559e-05 27505376.64579082 576.4836509650562 35660 None 88664 WTC_20210201 10380683.958220067 314.05275200045753 0.35655361322006346 1.0781095232479999e-05 3083485.65697221 93.23521423771378 54848 19025 815573 BQX_20190725 15183069.835436339 1545.5126794837047 0.125957307297289 1.2828530264209844e-05 614461.5652293492 62.58182994602741 60672 5775 463128 MDT_20210427 37117220.85428782 689.0195699667096 0.061143189422884166 1.1342533436125574e-06 14082351.793819763 261.2384921171635 30585 238 381469 ZEN_20190915 29325255.655562956 2832.936028899465 4.000661658029186 0.0003865684424279093 3923535.8553888034 379.11607480820356 27049 1789 209860 YFI_20210902 1425747821.210393 29315.115544429806 40058.27232081605 0.8230002476323728 353116780.8598529 7254.811085294578 137614 7130 30259 AMB_20200313 976792.7384067526 203.2785898412652 0.006681853161649578 1.3989164394265225e-06 289437.3155940507 60.596754997836705 19139 5506 509552 XVS_20210722 169967806.54875675 5281.62724664962 16.351386164778816 0.000506312798791718 18421636.644317575 570.4171079880231 118496 None 12441 SNT_20190916 51484596.39050441 4996.263877189227 0.014529684071169438 1.4100465613425648e-06 19875606.30389597 1928.8465038972765 111201 5710 299805 MDA_20201031 10106975.300086573 744.0795151350769 0.5145881379286525 3.791639939377431e-05 1145789.9287031437 84.42524293884155 None 371 4468213 GTO_20200407 7171141.198076103 985.9732713147048 0.010881008084126674 1.4932789443421884e-06 15522574.648240387 2130.2744842191382 16826 None 1069804 LTC_20190903 4221973091.030078 408573.6587698698 66.88954731929115 0.0064686232745651846 2421393657.5079136 234163.39319914827 452120 208092 124361 JOE_20220115 228504061.42877555 5300.661619423385 1.4786816177820026 3.428481120670006e-05 9205722.524833908 213.44450014778442 None None 3511 REQ_20200523 9314129.658066005 1017.494877149745 0.012068319917761606 1.3183386119900895e-06 218975.48085946304 23.920797050735718 39012 28024 876989 TNB_20201231 6587805.110618679 228.1329777109132 0.0019170073751241066 6.647456500373044e-08 549458.3304801503 19.053136665152024 15728 1414 3427041 SNX_20210723 1439076223.6184974 44457.94430802567 8.548984748653309 0.00026407330947276315 108869427.88562088 3362.9151258798347 143631 7281 44436 EVX_20190821 10374878.49127543 965.5594646815917 0.48255248796629907 4.490974254332985e-05 1413315.8733903947 131.53315668076462 18231 2913 816674 OMG_20211007 2012206504.9358814 36249.9575516118 14.492695433210237 0.0002612482792968834 1602179955.0973954 28881.222152367893 None 5677 239148 VIB_20201030 2261899.9102058625 167.9199885656971 0.012397926199842133 9.213149493585082e-07 600798.525563811 44.64655251468888 30498 1098 3129134 ARPA_20210110 24106378.99252955 595.7242689120201 0.024556591361476723 6.076107230169873e-07 17236979.457700107 426.4994842627987 22315 None 1160562 LINK_20200404 835789038.0251667 124247.09174953689 2.295285721545908 0.0003411466483323714 240583471.16582954 35757.7464373857 47615 13876 83240 YFII_20210703 76359927.08067684 2257.952657871298 1927.0983678413784 0.05689599712675027 19972604.88932944 589.674761475664 17339 None 427366 BAT_20210219 935809118.9719877 18105.126446528582 0.6315243594042604 1.2215065568430348e-05 443925102.6031569 8586.484677938693 138526 54781 20378 OG_20210428 12506666.268546717 226.97113913619435 9.706938173673763 0.00017615164748205467 3701340.1004212988 67.16815796240367 653022 None 247445 NANO_20200423 75253121.4312921 10577.80544131654 0.5647586279065353 7.938417402066878e-05 3085579.9171155444 433.71840816838034 None 50557 313652 LEND_20200713 285796080.50095177 30803.630630887903 0.2294543335486305 2.4695891755520233e-05 37721865.0905424 4059.958609999121 49348 5767 67758 SUSHI_20210210 1833098353.6442573 39343.26298659314 14.32485085687392 0.00030756834050772383 747602219.1622417 16051.739470452074 37639 None None BAND_20200417 10326152.920511726 1455.4786484587048 0.5199155826346424 7.334256896387854e-05 4106356.731334213 579.2685616999606 None 1081 683896 AGLD_20211204 168560575.02444747 3138.374735266474 2.1931945162069058 4.082911426147597e-05 24877129.66438803 463.119509947302 None None 52275 SC_20190430 109903446.21055327 21116.267029517738 0.0027588258710978396 5.300665432257245e-07 2272726.756412958 436.66997184894313 110067 30966 247728 BAND_20191024 4745303.262565612 635.8817372162375 0.3036223432935266 4.066829403511308e-05 2004473.9059386211 268.4866117168969 7678 980 550778 WRX_20200423 24853698.892136578 3496.242050298791 0.1332467675012436 1.8716605670226173e-05 7879838.6454556575 1106.8473587595754 24489 None 29308 QLC_20200330 1773630.984804915 299.9720716191264 0.007382614581519493 1.25072139000845e-06 42550.99811668965 7.2087527966006 24458 5663 940522 WAN_20190801 30180567.275439702 2997.8302122740492 0.28580638694051047 2.834849088447637e-05 2563465.846520665 254.26439542053916 108183 16909 529577 BQX_20190103 10580275.23471415 2735.3555774401084 0.11926169763203566 3.083314399255118e-05 342335.3896170222 88.50516612948525 60967 5827 312866 MTH_20200713 3141993.758032185 338.58351813836526 0.009057701663809318 9.752691249449428e-07 476919.39727481984 51.35130086122418 18998 1907 2218636 TROY_20200518 5161233.940860953 531.9127807518169 0.002725390402516462 2.788165214103495e-07 927632.7112365346 94.89991799142236 None None 549001 LOOM_20190201 22881241.186434742 6668.4290177023495 0.03819262436605071 1.1130725055936628e-05 2751570.465605675 801.9080865235462 16761 None 436692 DASH_20210724 1462297556.8697255 43746.55537762078 143.1154751352423 0.004280106179262242 451562650.4159298 13504.731675892113 401342 41530 60872 STX_20200330 47539673.12391508 8039.559675765925 0.08046211794427136 1.3631443289779598e-05 177182.10135461026 30.0172034776933 35786 None 40997 PIVX_20200407 16063913.027945919 2208.6566755271765 0.2559324169761643 3.517562553791592e-05 320274.0865732627 44.01881352860576 63713 8501 213367 CTSI_20211230 330729438.7375927 7130.956982616171 0.6807828242234492 1.4629180405017685e-05 21044948.49007012 452.22989934671136 None 6788 97392 PPT_20190513 36254329.31307752 5224.6297025758795 1.0025578054362705 0.00014421998930193953 1359080.5309664705 195.50651201719478 None None 552418 FUEL_20190723 3635285.520048931 350.9604288021548 0.004333657962946611 4.1885645272602045e-07 164853.32500202334 15.93339380283897 1 1509 None ALPHA_20210620 153541408.95847768 4317.099072134725 0.5387617461530478 1.5132220313005364e-05 12912992.392945813 362.68767629747384 67288 None 42873 CAKE_20210509 6024157318.681857 102724.94085934042 36.809589849500796 0.0006266262306735481 577617379.2369938 9833.04086252185 602610 None 1709 ALGO_20210125 451660051.50504714 14021.275806910693 0.5624740893957355 1.74336110287586e-05 300257600.4633385 9306.338396013478 39329 1976 270468 MITH_20190124 23227458.71649581 6543.068987286495 0.047461291535025305 1.3363393721090363e-05 5168424.097165724 1455.2424490392611 42 1969 482840 CVX_20220105 2289756022.420838 49439.83246760945 49.244975892973656 0.0010704843798134784 31636283.594608888 687.7076657927715 31138 None 34910 SCRT_20210819 225956168.5177711 5015.624406831431 1.5812871809701814 3.5104982043369314e-05 3692705.497493588 81.97901161851514 None None 113867 ALGO_20210421 3723110372.624788 65900.98341992554 1.2909462124464892 2.2899685704989756e-05 699968748.7260923 12416.523782788418 84355 22368 138222 WAVES_20190531 255475284.2973688 30736.95898764002 2.551982905613893 0.00030722190245782146 52509615.17956053 6321.3996603601945 139927 56832 46700 BTS_20200323 42873095.6430465 7348.500554901683 0.01586744839755405 2.720295788460409e-06 11556013.55023645 1981.1487143040224 13298 7027 131725 CDT_20200407 2182180.8784039053 300.0311945144922 0.0032519353195583065 4.469770308626929e-07 68171.99875631768 9.370210227985972 19146 290 258072 STX_20201228 387435091.6700528 14634.171125221217 0.415772858718742 1.580987001185783e-05 22900178.841259684 870.7851971009201 None None 97569 GO_20210217 27171106.551171206 552.177290135924 0.02588342155685569 5.260250972998747e-07 2408499.8505317946 48.9476001246501 13601 709 636125 ELF_20200913 66910016.50869709 6416.701067870571 0.14584847677707388 1.3968281180383114e-05 43708631.38412776 4186.087278212735 82771 33360 608633 CHZ_20201130 62098384.38547197 3422.5926181532677 0.011632914013153145 6.402355583006872e-07 5607541.364633682 308.6197810987963 43325 None 325304 AMB_20200927 2743290.432894378 255.4860784994947 0.01903557497608616 1.7732332067279357e-06 412372.3589732204 38.41398861797834 20273 5505 361378 MITH_20200309 3791680.0536250765 469.35467193131234 0.005945866637171437 7.391153239341321e-07 6788196.357923291 843.8231558455834 94 2082 1367265 LTC_20190916 4435040484.950177 430422.6027408862 70.10515776445777 0.006803735968799694 2299685252.593351 223185.45124107972 451520 208389 127570 TRX_20190929 899515861.0674729 109583.49637888427 0.013600131539608401 1.6568356710846648e-06 618244628.6372488 75317.6358037034 469072 71282 69613 XMR_20200109 1030845425.9863281 128097.336110693 59.279698273058926 0.007376221803083858 115085545.45484594 14320.189446538296 319858 164377 86242 XMR_20191216 878802618.3106865 123492.57370756821 50.68264230028391 0.007122076055718158 128345167.38512096 18035.44570713095 319965 163847 83347 GVT_20210221 22616468.238053218 402.86829429530246 5.104995893111448 9.079865804503342e-05 7491636.791408132 133.2480145848 22283 5508 211952 MTL_20210603 157876142.89254332 4197.9552547337125 2.442622686668985 6.494977996652181e-05 31295094.439583942 832.1422334181198 56520 4139 163728 MASK_20210614 68172470.56935538 1751.5844887938508 4.643462133212343 0.0001189485451068581 10097945.165703136 258.67248435991326 36114 20 209625 OST_20210616 12828785.518427704 317.8502969839193 0.01855160151822301 4.596407075030126e-07 414915.2402893172 10.280079291970036 None 783 504948 DOCK_20190126 5082044.8307130225 1425.2393381396832 0.009833771459555024 2.757635435818799e-06 403440.64440837206 113.13484575534771 105 15396 150082 APPC_20190318 7951635.708929477 1996.7754739915392 0.07614749884063643 1.912178370043216e-05 566304.8369885283 142.20767282279166 25412 3413 1389484 CAKE_20220112 2817850225.8110075 65769.55021925476 10.907006368923808 0.0002549209931551244 118540828.59059156 2770.5627677859898 1398209 None 662 STORJ_20190819 20788122.122352898 2016.1842870060134 0.14463131789406003 1.401786911817084e-05 746646.4444733588 72.36601511051438 83684 7783 176136 PPT_20190627 28965573.295691926 2227.8087426832185 0.7997106208319383 6.161266481559313e-05 4112313.1467379024 316.8278186216136 24037 None 671795 TNT_20200629 14368880.01839106 1575.986596761399 0.03353512332201849 3.6758410863994287e-06 332414.7715934324 36.4365403823323 18002 2604 432834 ADA_20200905 3212415575.1961985 306198.6812413172 0.10313467948399978 9.836350762336306e-06 432365099.0404522 41236.32121447525 164244 87866 22859 OGN_20210314 172725932.01414862 2812.3256503720045 0.8109109313019457 1.3218711219791653e-05 75738425.51122984 1234.6169430312696 None 3246 129589 MTH_20210711 6891613.288624113 204.81727972037703 0.01952236845964504 5.791075816098458e-07 275761.3954648231 8.180130149633166 21818 2056 662461 ENG_20200526 22270595.364698727 2506.2614749744403 0.26861747579968026 3.0211986412240175e-05 1809558.9560438145 203.5249956444134 60496 3576 481598 WAVES_20190225 264873024.7052866 70320.64451552392 2.633142843942492 0.0007028998544340306 16236996.934095709 4334.357631860755 136740 56724 39709 XEM_20190813 519963160.534592 45683.48435851289 0.057794792865397 5.077632491630749e-06 49492745.14570598 4348.245895389289 217088 18407 178171 ADX_20191022 6986720.275795552 850.7240178177318 0.07590517876228835 9.242442247693145e-06 250790.7757552353 30.537037116149005 53325 3832 323410 SKY_20210310 46788162.45250384 856.077259902788 2.34591534447376 4.2845123521166034e-05 5026571.342838015 91.80385412422419 18384 4188 421805 CVC_20201015 17836584.07321064 1562.6196823391633 0.02664858831359048 2.3318627166200374e-06 1142495.9947962337 99.97316866478717 84989 7961 237149 RLC_20210527 414412863.90020597 10577.29527537514 5.785756799154068 0.0001475827495854553 115316738.38767996 2941.4926889026406 43399 7515 165723 NAS_20200129 19845803.27288469 2124.4299787815785 0.43487443146188526 4.661400260208439e-05 4318219.7611407 462.8681123089366 23804 5028 940894 WTC_20210602 24054350.424802057 655.5739291691058 0.8222147886381646 2.2414719562381365e-05 4450256.941352151 121.32019844372742 None 19785 502738 RVN_20210519 1139674410.174346 26709.91930137084 0.13015285434037646 3.0423138507953946e-06 84243810.65811788 1969.1931714283396 62027 38279 39810 MTL_20190830 18946635.61490515 1994.8531611121755 0.384393259445329 4.052929361947706e-05 5784418.964311192 609.8921062271725 34143 None 511455 FUN_20200417 10671600.373609422 1502.8280782300633 0.001789185309390586 2.5239375645978935e-07 373453.4253637865 52.68169395066551 34588 16934 234333 AE_20200625 49867895.193892844 5359.730294515226 0.1385387363530632 1.490324121955414e-05 9783070.538949734 1052.4093401452312 25411 6345 480616 XTZ_20210603 3177617908.448312 84437.23817663672 3.8175288717667413 0.00010138021686341422 149288873.4327888 3964.5904123592177 119307 47856 80687 VIB_20200518 2404506.598074944 247.8065915192336 0.013183321271943904 1.3498695294828851e-06 717539.3561224688 73.47044747333764 31056 1106 None LTC_20201226 8402557106.540671 340761.97006799147 126.98465726995279 0.00514980635431024 8220384189.516146 333374.028360343 136530 218247 164709 HC_20190930 71075406.53033689 8819.760919583021 1.6066625502401448 0.00019953857393979014 40634380.49148249 5046.5645912922655 12847 847 356881 FTM_20210430 1518006909.9978566 28325.80417383495 0.5857020194416215 1.0926869728568832e-05 785265601.4062917 14649.93229334093 68523 6581 57773 NEO_20200907 1213517822.55465 117856.91227332158 17.213736444029053 0.0016734605582808429 394512472.7704728 38353.152732289906 321747 100416 111243 YFI_20210821 1405511721.738754 28606.802924859145 39547.94776608237 0.804436991343428 242624167.99052447 4935.170261676366 None 7042 25989 RIF_20210418 266056974.1592476 4413.479334151508 0.368448495138336 6.113252936586657e-06 5264922.295488034 87.35495492174137 42524 3198 604908 BTG_20210430 1566431209.9991958 29223.375030776504 89.43919192519026 0.0016685795273964025 76855806.74164438 1433.8236172561378 94018 None 172941 VIBE_20190603 9868382.003550008 1128.8730913154252 0.05270820639831379 6.02667797259046e-06 858012.1795573264 98.10546508973783 20576 None 1515542 XEM_20210823 1837740822.8961964 37250.96199989114 0.20413475586373062 4.142868390412256e-06 63065783.938910045 1279.905725468383 372120 21814 119011 BQX_20190511 12755145.109885726 2001.8807504222516 0.10844192617140745 1.7019626407307614e-05 1153646.9942608397 181.0613435360561 61136 5792 460348 GRS_20210513 97863295.61758077 1897.3774442397694 1.229654561613747 2.451352482287328e-05 3398383.4177232953 67.7477715031392 41676 106852 7089967 DUSK_20200718 17350308.218004573 1895.568758872034 0.06091328034917621 6.654445608370177e-06 3598677.100368442 393.1359613078688 17373 13331 827596 VET_20190213 217123191.83948538 59754.550153072974 0.00391559390530873 1.0775771147584675e-06 5172275.612916088 1423.4177410852442 104160 54643 678197 XZC_20200501 40182380.496000536 4643.505376134071 3.9761830481170874 0.000461289970290121 56524335.21825576 6557.572576002349 63651 4097 147349 PIVX_20210219 54400861.37613761 1052.495059138793 0.8327977092738198 1.611124127361456e-05 3416014.9268382913 66.08596549641189 65533 9025 316171 GRS_20200621 16988209.509774603 1815.6684576506623 0.22677151883577593 2.4237215314604086e-05 2809407.209369261 300.2678986737969 37448 106878 None NEO_20190806 847911256.5864719 71786.58390793238 12.00645923307487 0.0010164831030819547 323328294.5368852 27373.41140839235 324427 98219 192021 ETH_20190614 27144233034.692554 3301335.1252664523 255.1204266417473 0.031009769696685858 8992183283.907227 1092995.713337843 443219 438785 37291 DCR_20190729 261204741.7056856 27400.128177086463 25.728671109279052 0.002698913050417271 17001683.743527535 1783.460402582736 40579 9555 324578 MITH_20190901 10285095.0622523 1071.4465281230955 0.020180108639338883 2.1023546677871362e-06 1229411.6677509537 128.0795561868125 83 2082 697406 BTCST_20210724 105478058.27054498 3155.036615834074 14.531695793997594 0.00043444420592547776 5799407.279100126 173.3809271762895 None None 1251678 QLC_20201014 4909530.689128058 429.74068952396135 0.020452824857987703 1.7905068095209541e-06 263928.4546254378 23.1051553276579 27673 5612 940522 NXS_20211216 48923599.97584459 1021.8120047259132 0.5185629297790342 1.0626653387564266e-05 306843.7756392347 6.287997580619801 27168 4167 466557 LTC_20191017 3335608533.384727 416630.3151072583 52.544376500174735 0.006562994403953115 2158063149.1537757 269550.3746481142 450699 209050 128159 GVT_20200907 7937501.343399008 772.9452705425988 1.7890778127339062 0.0001742184566854133 950831.8978361244 92.59097878763423 20665 5496 155510 FUEL_20200107 2765054.2619988536 356.37140076188626 0.002792383013926908 3.6e-07 234100.84974419253 30.18078304 1 1485 None CRV_20210318 611171580.493911 10384.977533401474 2.4469988568837167 4.154908514738337e-05 211489765.44575527 3591.013640070286 None None 26046 BAT_20211216 1683676214.0699005 34511.18473160108 1.1290359260265102 2.3102974288301563e-05 255995167.33518502 5238.318491501543 243403 85346 23993 CELR_20200629 14482911.751662396 1588.0099235921616 0.00377661353268907 4.137955221642678e-07 3096212.341200157 339.24540898049327 20682 None 899619 ANT_20210204 147202853.1613404 3929.188317989292 4.262790227279336 0.00011364419681879885 44659218.4943983 1190.5960053751824 77467 2719 124714 WABI_20210509 34031972.82454546 580.1962562353012 0.5758898566634558 9.80804603078414e-06 3157918.2983244457 53.782867805435224 45053 7757 287110 SNGLS_20200610 9192223.385612583 941.3174003184603 0.013580299488767267 1.3901012181851604e-06 629977.5330357119 64.4855098244758 8986 2129 1370799 ENJ_20190228 64023418.49584067 16754.96801758502 0.07403498506950769 1.941813229545231e-05 34968036.96056973 9171.528395327121 39410 11456 18087 SNX_20201124 712049834.6196597 38891.006971135714 5.40265387918705 0.0002942747061575608 74028107.6112861 4032.2034507214235 43868 2539 37543 AR_20210711 469959782.0174019 13936.899590423784 10.730813185408433 0.0003182589371653007 8395631.569933012 249.00114596269762 None None 93046 PAXG_20210104 77581177.15490763 2319.0798850818874 1958.7306353749893 0.059503866969613115 3404488.914447995 103.42425436464012 None None 75931 ETC_20210125 887088496.5209868 27496.473508519426 7.626290388944021 0.00023638689090239442 1006582845.4546113 31200.357859130494 259902 26633 164892 MTH_20200310 2903603.6532226945 366.74423035569436 0.008363330879827097 1.0552861583214757e-06 202700.1019997026 25.57672475288455 19240 1930 1066623 ZRX_20210506 1488501750.4974394 26001.081769963865 1.8812668962338293 3.281594372957707e-05 248251836.3659389 4330.389435575467 212367 19056 56937 CDT_20210620 11722873.908195112 328.84324189366595 0.01736498160725731 4.875299821159669e-07 358702.4837712929 10.070740036078405 20919 337 469321 REP_20200310 130287418.09905954 16456.168495063892 11.850126807586836 0.0014972865403774347 38649476.423051566 4883.436420597649 130426 10112 288679 ETH_20201224 67468061368.13851 2883974.997351643 587.9588954992439 0.025213364724743642 16795838161.84157 720253.7399705417 534921 506453 7746 FTM_20210427 987521102.7844024 18325.562033328304 0.3850365553965067 7.14540043462894e-06 188646826.3928183 3500.854909504635 64339 6320 57773 MANA_20200308 58650867.82451785 6598.5977978503415 0.04461282616944072 5.012433872794499e-06 27862447.245887756 3130.4601466809154 48039 6776 51080 CFX_20210602 343410314.15750885 9359.257057189388 0.40950882018907264 1.1163780425383678e-05 15685969.847297585 427.62137102094135 34033 None 132746 HARD_20210902 87900812.16293478 1807.3479942743677 1.1603834921787677 2.3849097529564182e-05 13587734.43563917 279.2656099863343 36026 None None WAN_20200320 13040519.735436058 2108.680054072775 0.12279096826554245 1.986782450691519e-05 846722.162096828 137.0013410617946 105869 16363 732459 KMD_20190703 154859632.87882304 14332.079009182826 1.3525858921994933 0.00012506391038115557 5522624.845071207 510.63748533528235 97485 8424 312186 CKB_20210703 323644575.0411506 9570.126064260188 0.012040645438090358 3.555868116976324e-07 12541814.028085548 370.38742533214963 48914 4951 123301 PNT_20211221 32313757.19032289 684.88576640924 0.9578429030513695 2.032358184973905e-05 19873687.30737362 421.68137317802547 None 387 330723 ADA_20190821 1529354602.6006532 142126.17022935775 0.049183992081746314 4.571602435634077e-06 94178598.83667171 8753.805732376128 154284 75101 90911 JST_20210707 75361078.09379283 2206.3621491809404 0.052703160059052616 1.5429505671650963e-06 81697608.7905257 2391.7991194101414 49011 None 109468 SFP_20210722 80219195.84187597 2492.753769468899 0.7445063139110994 2.305327950277377e-05 8557123.085177781 264.9671957594667 367442 None 24694 OAX_20190421 5833778.339809668 1098.6482625657268 0.24879546273098038 4.684278095233415e-05 2543519.6114405883 478.88948897556145 15248 None None AION_20190629 40104143.19919746 3237.463145267857 0.12585711979735761 1.0169050800763834e-05 2025127.9967870626 163.6270519342451 67439 72573 278705 RCN_20200418 30013639.120898873 4239.763666819385 0.059510506169694735 8.453282407848768e-06 2048935.0167693938 291.04484984035014 None 1136 1284317 EVX_20190421 15637147.295347717 2944.764290762619 0.8107761449191779 0.00015268968943620408 4653764.433569806 876.421747881914 17065 2408 648745 REQ_20191220 8365960.798499677 1171.1827778688646 0.010845406466612598 1.517765052775198e-06 47539.99648980391 6.653005168907825 40226 28754 1586052 WAN_20200129 19900311.66544154 2135.9674700680953 0.1873888421667309 2.005450777959344e-05 2055670.4685184525 219.99954173633816 106478 16493 889247 AMB_20190131 15382651.775939927 4447.944318334517 0.05673992399807393 1.64065355080525e-05 346638.76060071605 100.23173690638028 17878 4979 612455 NAV_20200317 3531804.4609259046 699.1910154775217 0.05126388033028248 1.019175547956269e-05 147553.86442324042 29.33513609538196 49637 13977 1082339 AMB_20200331 1171379.7961931683 182.23166797211925 0.008076443505738367 1.2579361620020474e-06 92480.37704451584 14.404163228186286 19023 5487 893497 ATM_20210508 18901604.721261866 329.8582688877373 10.01523546093414 0.0001747560013595375 6760918.873938389 117.97137995750106 4948312 None 141318 XEM_20190627 895647026.2666419 68680.83138691889 0.09951633626290646 7.631203488283344e-06 100093863.5111855 7675.489965430197 216718 18471 184681 STRAX_20210108 50035356.03561351 1279.9046292921555 0.4989399770780408 1.2639890620355611e-05 6688709.279214711 169.44834562215823 143948 10286 230712 KAVA_20210108 78865828.67500584 2013.3415776515099 1.697354515413468 4.301192663989067e-05 58030445.81036426 1470.5244281083637 51901 None 85719 TRX_20190316 1503021183.8149123 382992.4631004443 0.02294552721877997 5.846790492101369e-06 140494787.45473942 35799.726005330376 399927 70235 84022 WAVES_20201018 318680601.4556009 28054.58441831935 3.189315080876447 0.00028065888366291106 88942913.08771253 7826.9528296542 145352 57064 284247 NANO_20191012 102998066.29395315 12462.507442639948 0.7729904010471333 9.348844831300766e-05 1720253.8526641815 208.05415328856242 None 47772 240289 MBL_20200315 4210545.904681918 814.3972176865257 0.0012057213018286945 2.3271525009808195e-07 3895631.6857105084 751.8925813578575 None None 120670 DCR_20190511 250439555.91858822 39302.35330375395 25.636281751440073 0.004024027390504592 2516761.263785682 395.0462223432867 40525 9449 304516 MFT_20190716 16741098.350966368 1528.3342020196685 0.0018907947583313041 1.7290283370648e-07 1252693.1130331103 114.55193010962701 18876 2141 894559 BTCST_20211202 234166754.9039264 4096.731457374868 32.1297763992967 0.0005620258015089591 20070000.49320843 351.07179002115873 67506 None 2237027 YOYO_20201226 2028073.3996997278 82.20623244110216 0.011590190596043977 4.7003502991929795e-07 2289381.991780407 92.84486946836768 7820 None 2222023 REEF_20210117 0.0 0.0 0.015866951966998118 4.383735687333425e-07 38832093.83988133 1072.8565633388891 16795 533 125550 RVN_20210523 698130895.4355599 18574.51739855242 0.07897635995733132 2.1029617768635046e-06 75288304.36913304 2004.7572009990427 None 38943 39810 LTC_20200523 2850956004.921865 311477.47976372077 44.00887576230386 0.004807512610129835 2509223256.893116 274106.580552041 132776 213748 149425 BTC_20210708 636246944189.2604 18750506.0 33932.25463831538 1.0 23692220470.135063 697511.7260664317 2872274 3173547 5487 OGN_20201115 26636195.02053346 1654.8513111572602 0.1725977588869168 1.0729647313379902e-05 11630908.644968232 723.042688963386 None 2448 170870 FUN_20200605 19720690.98229501 2017.2343710144214 0.003279080151443996 3.35417921853883e-07 627803.3153338102 64.21815681129777 None 16835 232312 ETC_20200305 923195389.0631028 105457.93510901688 7.934987369203517 0.0009060835269737663 1816409074.1312308 207412.8494146777 231127 25288 362649 ARDR_20211230 224641272.77077702 4843.5702147516995 0.2266433126648959 4.866125807255097e-06 5331586.704992048 114.4713751035743 76278 7439 None HIVE_20200518 122860281.52632463 12663.529469921332 0.3403461803592569 3.494619313731198e-05 10985797.621939996 1128.0038608292728 None 79 122787 LSK_20190902 150907745.86278102 15512.6333845675 1.119030613114538 0.00011501441784526728 2493516.395033516 256.28462099370205 181988 30949 161832 STPT_20210112 15535489.747706247 437.24580958505027 0.01684573710290311 4.7387839906691695e-07 2583468.135938884 72.67415707728986 17839 None 1561164 POWR_20211125 326151511.35315377 5701.210290038859 0.7604926450064758 1.3295570753734587e-05 55559992.77914229 971.3464290845033 99026 15325 252547 ALGO_20200319 95664022.61666285 17764.359402155987 0.13887142884138257 2.5762116544105802e-05 69674622.25829516 12925.378198815384 16100 821 354014 IDEX_20210430 80655460.06706938 1505.020005089171 0.13883630684293644 2.5901331873751274e-06 18384619.86668996 342.98387170338685 51320 1977 4760670 ARK_20200223 36514704.90687831 3784.839489493497 0.2560750962140854 2.6524665489919592e-05 656193.887893542 67.96960590948952 None 21951 82103 ZEN_20200605 56178701.96251835 5747.101050684382 6.09420879086806 0.0006234397115201304 4526225.698071534 463.0344873823688 None 5903 57737 UNI_20210704 10088655008.249132 291014.27948186203 19.41652670979206 0.0005599974903567225 245778943.5241342 7088.579415525948 None 47987 1526 THETA_20200324 68578270.68148816 10645.0729175529 0.06887150747898395 1.0628564208319139e-05 4315463.072711421 665.9818847574935 None 4027 384607 VIB_20190627 7465814.4285386205 574.3842200122907 0.041213378649989175 3.16400193797467e-06 1315553.0058427926 100.99662770540874 32658 1122 2278285 MITH_20190810 11193862.743906438 943.9675608214532 0.023634835693318715 1.99267412974476e-06 2655590.2456109445 223.89518803074947 79 2078 826998 BEAM_20200316 14314675.68742435 2649.693069312414 0.2467166613523811 4.591269146665612e-05 19984587.00482773 3719.0280227190888 14998 1472 244013 SNX_20210806 1780851973.9777186 43465.473952635766 10.559124978226759 0.0002580690043398161 259813928.0676135 6349.9505752876885 145992 7378 46425 BAL_20201226 132239292.67921412 5354.722360775836 12.423996874487456 0.000503161906116902 30259649.002033655 1225.4915084176391 None None 83230 NAS_20200711 20807249.927058116 2240.8773683745508 0.4542650071907197 4.8925386497176525e-05 9047429.139841136 974.4289356778522 23487 4929 720251 BNB_20190430 3117991943.0339575 599074.4364750151 21.57229994825935 0.004144763479800428 277563434.4349025 53329.259704948236 954033 49942 1003 FTT_20201014 339208807.96556515 29690.644147543386 3.65685073110203 0.0003200416543777756 3449432.941280173 301.8887852881577 28438 None 6929 LRC_20201031 154438614.0517606 11369.831789416066 0.12987570704759938 9.569632132966842e-06 63577394.90391506 4684.573389693618 42272 7176 160001 LINA_20211216 115701545.495876 2371.723832675931 0.03708488617016494 7.599748465211058e-07 13559582.938782923 277.87443961691747 None None 143736 BNT_20190818 27692948.29107804 2709.2620301192783 0.3970294201302468 3.884226126785141e-05 3508124.0236913795 343.20748785705865 781 5127 148794 TCT_20200417 3350075.2798309303 471.80729188825507 0.005776439231539107 8.148609252254824e-07 444155.7891114356 62.6554149974439 None None 458106 AAVE_20210805 4386782849.673326 110192.66727788883 338.89286852862244 0.00852240819134007 327419982.95303434 8233.890423373401 263033 12278 14216 TNB_20200317 2692812.39379251 533.521192856172 0.000868415824154499 1.7244984885518e-07 384033.0389647572 76.26120768739646 15151 1446 1775001 XMR_20190706 1540944296.794864 140203.10401328263 90.04487107598672 0.00819450881290386 197447416.26961452 17968.64800151776 319268 159139 104259 UMA_20210325 1205996444.9526494 22822.618238724852 20.74697836745678 0.00039326338510498065 66620837.238760814 1262.8121313385568 None None 124500 DNT_20210710 96143758.80821411 2828.872795243285 0.12810798281578287 3.769512172899902e-06 3595562.0860502874 105.79758383420686 69968 10250 207406 INJ_20210422 209628235.3469786 3868.863629333335 15.449156606564777 0.0002856298285384529 132526904.91432707 2450.207353799885 61836 2989 97465 KNC_20200506 118800718.62493621 13247.419753840164 0.6630431048725782 7.368661326799209e-05 102973928.99385267 11443.9016508797 105584 7488 115849 STORJ_20210724 114540503.20002608 3426.6903661764636 0.7966706553299044 2.3824321269777038e-05 20962532.37722039 626.8815132599437 103634 13694 53900 HBAR_20200806 218413174.62582502 18644.535975651102 0.04339497332687489 3.704351364066817e-06 8286117.614023006 707.3328713700282 41023 6597 141021 ORN_20201106 18138446.996881757 1166.9416310783392 1.460426520510835 9.394774377415415e-05 2181051.619655829 140.30481906748523 14302 None 197578 VIBE_20210204 4347342.454543905 116.0392253254327 0.022884928663574337 6.101098767202407e-07 3244364.920437807 86.49443967 18523 None 1388875 ALGO_20210127 479933403.24455696 14727.672201089577 0.5977314087832445 1.8351227512985056e-05 305797254.48904264 9388.422471220021 39853 2023 270468 OMG_20220115 845605545.1093068 19619.01015318096 6.046003774009944 0.0001401830491798854 251601423.0948736 5833.647477868712 6912 6569 114794 XVG_20200417 49553197.58175775 6991.531726842319 0.0030537974349063267 4.3086466051501016e-07 6278116.631189605 885.7884809422939 293887 52060 294741 HIVE_20211007 358363776.7320711 6456.353143932922 0.9958320830466905 1.795107192885732e-05 1590999074.0847104 28679.673314261927 24726 187 79218 POWR_20200913 42761549.991413414 4100.92632115832 0.09963602854070008 9.541971361251929e-06 1077879.5381103978 103.22667246143334 81626 12672 213418 POWR_20200423 25538991.536608428 3590.6820749875133 0.059450802561182604 8.356583897938053e-06 1697171.4395644101 238.559530114141 82089 12773 208594 LEND_20200425 41532585.46983434 5538.594459165338 0.034997239479249515 4.669247073968596e-06 2505016.7951249625 334.2132841024364 44359 5719 90147 KMD_20200330 38773614.07045397 6557.108277795839 0.3254224709872636 5.5132393194686235e-05 2288329.2574026175 387.6839481775159 99702 8388 161250 SNGLS_20201231 3595857.4130334537 124.44732610668797 0.004032107346308125 1.398398102620853e-07 78024.2637637433 2.7060039089859522 8958 2114 2374370 KMD_20190906 80917487.50434794 7656.114561672624 0.6993262779956216 6.616767605438692e-05 1913771.4612563825 181.07400518894246 98372 8428 213183 GLM_20210401 618732975.0380076 10519.61046324222 0.6206113669253513 1.0561507358457694e-05 12445256.671368461 211.7922373283935 155043 20839 169258 KEY_20200320 2621457.5725076096 423.57404624659677 0.000957480111428718 1.5491143737746215e-07 983226.6713935892 159.07699294783512 23460 2757 250395 QTUM_20190904 207131654.15697592 19490.451487083792 2.154685268545456 0.0002027879431633834 190870107.81046805 17963.71708634137 178150 15346 240356 TOMO_20190923 23771246.890912388 2364.6908332302764 0.36741985162414614 3.654980149209577e-05 848223.6659318868 84.37869231524887 17224 1323 283081 FUEL_20200725 890637.3100611918 93.41113205318028 0.0008998744283716173 9.436225091927017e-08 30800.89295657705 3.2298301830462104 1 1462 None SYS_20190213 22475572.171040457 6185.4123763938605 0.0409716351215971 1.127545333580404e-05 64192.38363509509 17.66583696363182 62754 4627 845888 LRC_20211021 544948626.1302078 8221.098616155687 0.4363587208977179 6.607627693541223e-06 31035883.846535034 469.9655484735062 99639 13156 254887 PPT_20190807 23527607.9831356 2050.565704434303 0.64937434612466 5.659086708691573e-05 1329240.5354620193 115.83899936575465 24095 None 744473 TRU_20210602 105862161.88146858 2885.259184049181 0.3280397864777445 8.944721152344319e-06 3873064.380746098 105.60755834780828 26466 None 94799 TOMO_20200324 16422974.898822414 2549.258877248083 0.2349143462904942 3.6429138937576694e-05 10124936.540869938 1570.1157711559629 22123 1509 236393 GLM_20210408 483577921.6564846 8585.210181700531 0.48594442432260593 8.647771060054546e-06 18186542.967913006 323.64412901658704 156089 20884 169258 AKRO_20210718 47426892.995222464 1500.5830685956043 0.017471571561329603 5.538522935717282e-07 7258973.57927914 230.1109062655136 None None 233466 STORM_20190615 19270309.22966267 2219.4310755680513 0.0032591500905925284 3.756023855643053e-07 1238410.4726913327 142.72123557406255 26854 2575 4240387 QTUM_20210202 357242190.5040497 10706.393836948915 3.449919954348699 0.00010328709055636532 445095891.7234279 13325.717779844235 192464 15099 197984 ARPA_20200629 0.0 0.0 0.012099829665539897 1.3267063963274844e-06 2055823.3531160608 225.41424695145028 18387 None 1098211 SRM_20210823 373670742.36662 7574.394061760385 7.464248385784704 0.00015146254078414437 215782095.16785523 4378.592820154859 None None 38162 XEM_20190419 581353103.4787838 110218.60015378369 0.06475728901253108 1.2269687773342682e-05 28765217.163722944 5450.2008764292395 216463 18451 129299 CHR_20210206 19268008.520325042 508.47919701229654 0.042832498149650795 1.1268313888804159e-06 7084748.195796729 186.38456765806774 39152 None 474695 TRB_20210408 110166713.92204109 1955.8469311588217 70.77789923528493 0.0012595495247251067 91094173.02434947 1621.0939230709155 17480 None 320116 PPT_20190122 49200339.68825159 13930.678707019839 1.3253493254296607 0.0003753089972053274 1340113.0643098343 379.48975463116534 23427 None 502199 AVA_20210727 100196122.22238708 2674.7933677796455 1.9370137404167072 5.191445121757264e-05 5480891.5538745085 146.89491936242638 None 10517 50781 XVG_20201111 76794556.99853754 5020.702686828239 0.00463051215958404 3.031194192912893e-07 2417712.1354327416 158.26661787056148 288000 51290 419169 AUCTION_20210318 62677181.257484265 1064.8868390534265 27.57059141145575 0.000467755782866417 8061744.37381113 136.77354593395174 None None 34024 NXS_20190220 18936748.711706974 4835.988579103721 0.31715657646473994 8.099413499757337e-05 169707.3981574824 43.339173570572974 21 3503 888108 MDX_20210617 922400939.9574013 24115.392518960056 1.963101287941936 5.132544818033985e-05 76694885.28980671 2005.194222436633 None None 14688 ONE_20191030 14520151.468329601 1543.022504860354 0.005201337291308061 5.528144246468094e-07 2441607.7925886717 259.50172647496754 71253 None 174888 FUEL_20190922 5874003.063050018 587.9538543523779 0.005991886339390223 6.000017460341767e-07 5118701.314396798 512.564750415153 1 1506 None MFT_20200224 10585443.622153878 1063.9644676755831 0.0011524778640553787 1.1594243979551648e-07 1583517.8241095454 159.30624414850024 18486 2491 850762 COS_20210418 131022323.43442293 2173.4604725836734 0.04282611138133434 7.12460178759506e-07 26434154.42175111 439.7616728957938 23737 None 214516 TNT_20191012 25434601.81568347 3076.7944125592417 0.059359891846376044 7.180697574374152e-06 751582.4835559617 90.91806519087987 17645 2550 579695 AST_20190909 4040482.1758240396 388.5153802882937 0.023442750845030735 2.2553647224229576e-06 1521462.3054048116 146.37584269824276 32021 3575 238019 NEBL_20190726 12780291.464168958 1291.14035649623 0.8293835016823443 8.390915306987077e-05 150087.02876462313 15.184381465109327 40519 6156 884677 THETA_20191015 86480859.77553956 10361.90057915296 0.08656050794623 1.0370250821445449e-05 989029.5168027622 118.48918637849032 None 4023 359269 FUN_20190105 26026125.492261954 6830.697613420407 0.0044272004419952035 1.1619817348632044e-06 756363.6243094855 198.51839280321187 36603 17912 480768 POA_20191019 3644941.9486368885 458.05879118358865 0.01655531271964333 2.08050131905724e-06 135753.18769264047 17.060063487997247 17713 None 624364 NANO_20200421 72331371.61035748 10562.792024745862 0.5426537817364552 7.925799291762699e-05 3126476.816504695 456.6415746458386 None 50519 313652 CELO_20210718 289681771.09239817 9164.403924601518 2.2991863718429815 7.288285792854244e-05 13508932.607654849 428.22523135466895 34354 None 78180 BAT_20190726 298382215.41171867 30184.872464442764 0.23381194464855368 2.3654874027858045e-05 16483773.475111945 1667.6717934304768 104457 28975 42959 KNC_20190922 35698233.405409105 3574.621572720678 0.2129442129488541 2.1323493397975192e-05 5647210.335534849 565.492016144516 97889 6712 182135 ATOM_20200412 426977798.1921999 62039.25130425867 2.305321232042503 0.00033498780521196673 120779286.31634079 17550.52071521145 32272 8356 80555 BAR_20220115 23390382.857469182 542.6386962271632 7.929509381927382 0.00018390844260439851 1398928.0869665842 32.445221185555965 None None 38699 RCN_20200309 29328372.964374535 3630.4246867592674 0.05819746901516996 7.234377053528541e-06 2314145.245201774 287.6654181654536 None 1132 864394 ANT_20210401 380101921.6852579 6462.196524436074 10.851830062170661 0.00018466426606795987 125618182.3963567 2137.629259223237 81289 2912 113796 DOGE_20200312 271034084.12404734 34142.39315781694 0.002191375781978763 2.7604946347114884e-07 81850204.70560278 10310.739618370171 138882 150129 115347 BNB_20200129 2745879946.2703395 294992.3174026439 18.056718711616835 0.0019311179000723907 237464057.06177658 25396.14746951701 1101929 58756 1770 NEBL_20210429 58971833.38557395 1077.3492548452032 3.324391677130146 6.071918597973158e-05 6563256.359192606 119.87624269667862 40165 6049 477279 NANO_20210304 726050265.8474021 14286.48877734228 5.442025559849785 0.00010727121154122248 46118819.706574574 909.0772563207178 110398 75883 90467 DNT_20210814 149472942.0758695 3133.625580816326 0.19891631700821924 4.169229174434892e-06 48092580.84252516 1008.0067544898262 70534 10249 294360 VIBE_20201129 3056869.1993191103 172.16117504 0.016287093983621367 9.2e-07 79492.32152922965 4.49023846 18560 None 1913666 NEBL_20191019 6565076.77170808 824.9071372862437 0.419450836033906 5.2704332396562026e-05 294684.0761416416 37.02728941440809 40260 6092 478074 DCR_20200607 201067649.57543197 20789.06917883372 17.351062489432852 0.0017939854530589843 86972809.62145679 8992.415038997533 40540 9822 295595 FIS_20210616 33971296.12920925 841.1829239906002 1.2569525031498854 3.1141839421744475e-05 5131361.416030179 127.13291300386693 22151 None 388114 FIS_20210519 54970760.10721845 1283.0463254348122 2.0424372018592285 4.774182648615547e-05 10229278.91008813 239.10867778914294 20654 None 263820 BEL_20210110 23288273.591345478 575.5923686309874 1.1141190905669434 2.7544439974222842e-05 9738468.638635347 240.7648043453263 None None 319671 QSP_20190818 0.0 0.0 0.01042402545630334 1.0198161103756167e-06 41173.17999954094 4.02810530873526 56595 8556 585298 DOCK_20190104 4420338.71300007 1172.3549825521823 0.008517529454033234 2.25852921608298e-06 313368.9768956413 83.09369442775473 97 15427 151966 BCH_20210124 8044386000.502253 251384.15804546798 431.50471140509165 0.013464252553646118 4901936707.158114 152955.25653068567 None 367580 393369 DNT_20190702 10836237.019686576 1020.8453141486451 0.016983938821709833 1.6015810014990126e-06 1611410.9582911322 151.95563311305995 60651 6366 784792 CMT_20200704 9155170.31047944 1009.5709751228007 0.011443962888099297 1.2619637189035013e-06 1223118.976264957 134.87738356386183 283718 1635 1005584 GVT_20190916 4825929.262632348 468.4174939847628 1.0880172435719362 0.00010557969176398729 174170.91563753237 16.901305283445435 21242 5707 141613 AION_20200113 22235303.979790498 2727.561963972016 0.05883233513583686 7.2038740874239835e-06 3441472.590792807 421.3998163110567 1134 72539 317810 CVC_20211125 344164899.51103985 6018.196146884534 0.5143943152520958 8.993073185730622e-06 64072772.97297772 1120.1739977944749 None 10205 154407 NXS_20190629 19668272.835956324 1587.0555403897797 0.329408293503413 2.658033380029197e-05 234600.97860459852 18.930222596598878 21377 3519 925188 GXS_20200105 25012843.49858667 3403.332322426995 0.3835249898136649 5.2156974054223144e-05 4435210.0858807545 603.1605332593876 None None 1062662 MANA_20210220 439059663.3555903 7847.714204461012 0.33077360006623274 5.912218535088141e-06 183764688.6100818 3284.5940482483443 67533 12042 42015 BTG_20190625 531957159.06935364 48166.63258349841 30.381224199318407 0.0027509459145289776 17309003.994547583 1567.288187960335 74283 None 408265 OST_20190725 9961075.460914476 1013.3256965339327 0.015301166837605667 1.5604069328334464e-06 454182.9270754417 46.31739498724439 18110 757 581011 HC_20200324 44928142.322505385 6973.577602988766 1.0102614292494432 0.0001559081376466537 33308569.53144388 5140.329911614657 12730 842 891141 HBAR_20210616 1815949797.9361649 44965.78390880605 0.21145897420621929 5.239037594908733e-06 82729815.89588109 2049.6865518496 112880 21716 37891 XZC_20190426 49697066.31411561 9569.00325622972 6.778892245109984 0.001302849980695054 2004723.4000365892 385.29213160464053 60341 3969 377233 STEEM_20190325 146167284.57478526 36601.65537836246 0.47909088609579364 0.00011997575198864967 6091860.116629872 1525.54665453643 4886 3694 256324 FUEL_20190930 3832593.0773609197 475.26937662408267 0.0038690837012142097 4.801087197010112e-07 436722.1710343656 54.1921908628016 1 1505 None JST_20210731 72398974.10846776 1734.2829087464227 0.05046229824485102 1.208057697625947e-06 84812518.70816217 2030.39535740714 49886 None 150700 MATIC_20191108 36016058.01261441 3906.5017115514916 0.015092340316366448 1.636999064599278e-06 21715109.988670856 2355.341450959468 24417 1201 195484 HIVE_20210819 165856328.20814827 3681.5682140707177 0.4448418844508364 9.878817379361955e-06 20569107.48826312 456.78804904774023 22776 177 87293 GTO_20210723 19489528.83215411 602.609112807296 0.029436583134345284 9.093340122874467e-07 3612392.5530571835 111.59146424151862 13764 None 367259 WAN_20210814 157608749.70631772 3304.115975530149 0.8991399660778869 1.8847804740178813e-05 9138319.827341745 191.55779328812739 123509 16667 308128 COMP_20201106 17762.2859544189 1.152546134508983 1.9204121393152038e-07 1.2283e-11 19.411145426687675 0.0012415413045713457 1931 None 1770443 RVN_20190903 140911501.76028594 13644.783059997424 0.03253520772720197 3.1486041851339964e-06 13464832.614463324 1303.0630902221678 27580 6963 276399 SNM_20210421 40301489.29410973 713.29042544 0.09209632599354811 1.63e-06 14030648.5476928 248.32648736 30074 9526 None ONG_20200320 0.0 0.0 0.07833906607724245 1.2675417735060322e-05 13010011.896900734 2105.045972449077 84430 16528 298289 MDA_20200417 6691092.001670416 942.3388232764144 0.34072619908169255 4.807354817245972e-05 155827.15524356533 21.985876854696503 None 374 2010247 DUSK_20210421 105513849.71151693 1867.64983158665 0.29456109851301454 5.2242030927682696e-06 60933967.56883143 1080.697428936516 26139 13558 307369 TRB_20211204 110681333.98707145 2061.561914224617 47.60785181705705 0.0008858937478825586 25009341.66623859 465.3774235795611 26638 None 355372 THETA_20190922 106609083.2557363 10674.09494733261 0.10667502515738864 1.0682066270656335e-05 768442.626478906 76.9491738964576 None 4028 338625 BEAM_20200506 19967783.116715264 2226.797915375708 0.3308311139867377 3.67665754672837e-05 72960168.62829691 8108.353273221934 14979 1481 417545 UNFI_20210804 37702649.55773755 981.2707546676185 8.85098064192607 0.0002304158867910199 24697607.125096366 642.9480842370172 21036 None 266714 ZRX_20210523 808354403.0671201 21504.89036392809 0.9608725985428789 2.5569676351708884e-05 216585777.43608537 5763.540598225126 216393 19221 58753 XZC_20190704 97533368.34273492 8127.624200128864 12.430066781244038 0.001035818954036793 12441104.74024866 1036.7387662431215 60674 4024 268050 SC_20190324 104177639.21435566 26012.75754317718 0.0026073942142594993 6.511596456158763e-07 2079155.4611395162 519.239524983152 109667 31092 227818 COS_20200501 10880431.403625594 1257.4258993661565 0.005501834666510839 6.382857929686561e-07 1291948.7386342802 149.88318899030148 10815 None 153547 AGIX_20210731 191481261.0570525 5830.0 0.20581474792178475 4.933064920669881e-06 1044055.0234813817 25.024403078940015 55986 None 209353 CHZ_20200319 24934654.14912523 4630.248088651538 0.005268289102621055 9.778256768846803e-07 2073667.8523907566 384.8850417850433 19736 None 252561 FTT_20200530 290911971.69420254 30888.271828048786 2.917506590010643 0.0003107346242057444 2471695.8485307945 263.2526977912716 11849 None 13105 BAKE_20210707 343540452.0439052 10059.551588134378 2.0201940989134695 5.914369512586206e-05 97604317.03280541 2857.4877892480613 336765 None 8023 NPXS_20190623 211736584.18765488 19722.788704726547 0.0008916559731160489 8.312636786396199e-08 10732024.484826526 1000.5139225760881 62160 4562 216939 GNO_20211002 402584512.4691869 8360.426992208517 267.5128520123946 0.005554470511807082 2931277.9731239253 60.86323307888063 85187 2349 166619 LRC_20200117 22936220.048411723 2634.8151700895132 0.02383093178039372 2.734932290288812e-06 2034774.8842329765 233.51883953341184 33907 6842 877255 GALA_20211021 657314738.0893306 9916.899543645999 0.08679008079780474 1.3145659094360314e-06 77419107.08670321 1172.6284614512276 None None 7276 THETA_20200719 248391370.7941625 27072.76809968016 0.24823199497471182 2.707598611070249e-05 15008800.530543966 1637.089831005514 71638 4291 67592 ZEC_20210115 1191324686.005922 30540.479554677328 111.60377776545535 0.0028449304104371685 1469732045.5434618 37465.446737367085 72079 16679 167554 STEEM_20200308 75049484.71631221 8439.977052316672 0.2201514382612481 2.4757972609445338e-05 2531096.5474881823 284.64414990653535 10910 3837 211376 VIBE_20200329 1473811.468347013 235.78534370995825 0.00787579749362317 1.2599967220412022e-06 765436.5245315972 122.4571241987 19305 None 1312296 LOOM_20190804 22604124.16690925 2094.5134489530064 0.03722516430161615 3.4478266276215964e-06 1610757.2487958125 149.18971715033086 20776 None 419085 IOTX_20210124 55511764.08602222 1734.7225848575736 0.009648223777840172 3.010618746188367e-07 9550785.079232886 298.02141059783156 None 2028 602191 GTO_20200801 9046794.757155402 798.2249981566179 0.013741228186696784 1.2127140502215019e-06 14550165.054616533 1284.1057112971978 16614 None 1558707 GRS_20190629 27325741.78144171 2205.9849459230986 0.3750203552984952 3.0301035084785978e-05 541079.3057962793 43.71832834389747 38568 107027 12971590 AVA_20220115 81478088.07352792 1890.6658714800246 1.5736462972456893 3.648666863669976e-05 1604314.0719409431 37.19773371853498 146404 11030 46341 AST_20190316 6985646.155359893 1780.1180750921735 0.04192911884974403 1.0684592473932995e-05 968092.0111743462 246.69415672042487 30824 3594 404922 ICX_20190225 112324639.11557189 29820.858603360055 0.23328275068486828 6.227326856785798e-05 19547714.77677402 5218.131596134741 111354 23488 263363 OG_20210825 8252186.063799598 171.354907987005 5.956059653181397 0.0001240247278219428 5691614.878617353 118.51811890614361 703492 None 316019 DEGO_20210422 61407106.080179185 1133.3066860777867 11.292782632221513 0.0002088094213281276 15287298.282876795 282.67009222420734 96773 None 65410 KNC_20200314 94551594.11125927 17199.63061107729 0.5320008343954513 9.56309854067192e-05 141173125.45373496 25376.887078435942 103799 7182 154836 REN_20200506 60914509.84276486 6792.074794955697 0.06988948478676156 7.77960989619373e-06 2668295.0178509825 297.01598731444585 11896 879 405575 PNT_20210527 51058215.67761062 1303.1878845969559 1.1742953772443676 2.9954347957007356e-05 11929066.40835897 304.2909074859398 39841 300 333814 IRIS_20210704 84134559.7315553 2426.9426456302945 0.0804890080065312 2.3214060454091547e-06 4790589.904850796 138.16674651145297 26027 None 777699 GXS_20190929 29407254.574890055 3590.570493115994 0.4536572713916249 5.526678528803575e-05 16092314.870193673 1960.4458405135965 None None 561908 SUSHI_20210128 899409797.6544682 29716.054889586267 7.0937722350601655 0.00023329313979532297 819772869.1628414 26959.899504638906 27535 None None WAN_20190701 36586857.874403 3372.2837723648613 0.3432753041238401 3.182574760421848e-05 1320975.5274435875 122.47031237820202 108543 16981 459878 SNGLS_20210107 4863077.988745293 133.34543192305358 0.005529232948328833 1.4981888270002463e-07 256253.3217071975 6.943383775853728 8987 2113 2388583 NULS_20201201 25832424.124385543 1313.9281174777234 0.26233979366674004 1.3363343238857025e-05 8545666.727851767 435.3082545846405 30326 5122 479758 IOTX_20190930 14476569.04201472 1795.7764178053399 0.003518638958003233 4.366891626998587e-07 417763.96111158835 51.84760259902409 22601 1770 600073 TFUEL_20201031 0.0 0.0 0.009267365547603178 6.825268659306735e-07 1329832.2728464396 97.94005089548773 74749 4499 75588 YOYO_20190810 2541561.293691018 214.20330269701606 0.014545871533181445 1.2263754347551981e-06 714381.1199948865 60.23011097108291 7583 None 1167957 CAKE_20210813 4047333772.2381115 91037.60455916225 19.42163217433562 0.0004368106737502563 215779275.38509616 4853.077733953646 1046870 None 746 VIBE_20200321 1400228.2950973096 226.42937152 0.007502595407914958 1.21e-06 337558.7397610248 54.44063726 19375 None 1312296 QKC_20200425 9560361.290599948 1275.0015859766672 0.002712101245734907 3.6184199080795205e-07 2762165.7546776687 368.52147654365604 49757 9194 700112 EVX_20200531 4813234.748747672 496.6722733751868 0.22044830038918883 2.278822337544759e-05 2934698.612064705 303.3662196228311 16635 2846 2233899 QTUM_20211028 1224078942.4625916 20916.89763018621 11.738015174868346 0.00020058805548876958 287532911.85600746 4913.579239674753 259098 17350 165838 CTXC_20200713 1177518.4314036265 126.91511639502353 0.11753496095327304 1.2655331647468773e-05 12057926.190369733 1298.3120399426928 16474 20061 611246 WING_20210704 24012785.214202534 692.6655120776725 13.904702189677675 0.0004003156579847455 2854172.8204341712 82.17148810727375 None None 421675 PIVX_20191113 14293150.939301739 1624.654662458731 0.23235952568679683 2.640151515521091e-05 363046.0489184681 41.25058240771325 63183 8575 246395 SNT_20190510 74904386.88290237 12119.025683941254 0.02124933914995694 3.4416725435658765e-06 14358820.938807398 2325.642196885561 111433 5757 311029 SKY_20190923 8689468.285540273 864.4016906120996 0.5430900428973449 5.402510566325623e-05 282927.7071230628 28.144871135624 16329 3807 8463973 ADX_20190411 15544484.40979038 2928.871848703312 0.17799026163806908 3.3534934999897094e-05 3167443.179463036 596.774228890968 54690 3926 994685 KNC_20210117 250491930.3643865 6906.495430728544 1.2750361428289658 3.522681264545835e-05 103784436.77978703 2867.36570607661 128491 9354 125563 DOCK_20210105 10033142.033242924 320.6880914857808 0.017877564249029275 5.714183991854203e-07 11594720.649624387 370.60063777817237 43195 14867 239744 ARDR_20200323 32197145.77162325 5518.629807815096 0.03225388335047159 5.531554143203581e-06 2267937.907357945 388.95227565802156 64424 6376 1001396 GRT_20210819 4075456466.795959 90464.26595887844 0.8611187511167531 1.9120307291528916e-05 311404591.91203827 6914.437157046706 None 16662 33877 ONG_20210201 0.0 0.0 0.20251643353149226 6.121938594201651e-06 4711506.273684884 142.42573597964036 96744 16670 259663 ENJ_20190627 112322443.78421827 8641.554097066024 0.1281747677701667 9.828815766825906e-06 12357320.928280834 947.5954814554718 46592 12624 19875 LINK_20201226 4623266606.720588 187213.85557037478 11.554056259305733 0.00046856961794793046 1060357357.3578985 43002.321494263066 109533 25834 46547 DIA_20220105 76824808.55080007 1669.1793727759896 1.2761674132599485 2.7732103881764683e-05 3359176.9515045783 72.99751052127749 49666 458 282022 ZEN_20200801 77512432.56620622 6839.147234255321 8.055308456872728 0.0007106460489247334 3383472.0683578034 298.49273555430506 65554 6028 69490 VITE_20210310 35419861.44995714 648.0308611930866 0.061181126139270146 1.1184256317132795e-06 40130915.18925194 733.6158551511514 None None 412913 NAS_20201201 14813010.082290001 753.890512666413 0.32498852090364916 1.653260430659975e-05 2797630.529775805 142.31923766488657 23319 4864 1293947 CVC_20210731 184522603.17509604 4422.7247560494525 0.27559896079430907 6.593550693658496e-06 33304108.137505677 796.7821238470452 103733 9859 240947 CRV_20210718 499531610.2323923 15803.236192642793 1.4289988006646355 4.529842288749042e-05 69374823.80379091 2199.1411783884146 141880 None 13850 RCN_20200530 41545259.84490906 4404.992918391726 0.08095192483650052 8.622165867009084e-06 474586.1309809192 50.548030176727245 None 1134 1036055 DOCK_20200113 4056114.289177091 497.5557368920244 0.007245388356202863 8.886132124591809e-07 2250749.3684639498 276.04395077580074 43555 15079 271029 FET_20200217 15880499.66488331 1593.0061156666125 0.0465538501527629 4.679514331125956e-06 10354148.96399362 1040.7815530751657 16549 352 514590 MKR_20210115 1415682351.8734372 36247.60128565602 1586.0095806187023 0.04042951750817408 268052490.91447818 6833.0185435002 83936 19034 39675 TNB_20201030 6492861.354191571 482.02009268185327 0.001882547363019578 1.4000006303293553e-07 381811.92154801066 28.394341695450784 15820 1430 753450 STORM_20190614 19688144.7884047 2394.177274778576 0.003333061857346787 4.049408148685692e-07 847054.2365450872 102.91043114857901 26861 2575 4240387 SNM_20210617 97496900.40839048 2542.46464528 0.23064185419563285 6.03e-06 1426971.2243638935 37.30735045 32385 9715 None XVG_20210731 367974078.1303046 8819.827742116691 0.02238411731506981 5.353610131299102e-07 18810449.57644097 449.8895891638657 322121 54486 123384 DOGE_20210314 7750447457.349575 126192.87637932228 0.06192773101486665 1.0094879242386815e-06 1908931773.5006745 31117.61955369955 656146 1215415 12918 SKY_20210731 21363093.432478875 514.1476581322823 1.0241512251510536 2.453644142832601e-05 449449.0365442276 10.767823822657126 19647 4413 788361 CTSI_20200913 11082774.629575124 1062.3978906170337 0.055892192073513064 5.352699258433393e-06 4446834.541014391 425.8657080179828 17548 141 367425 OCEAN_20200905 140563877.5540331 13400.29751556669 0.40471664769863797 3.859865651650706e-05 14967544.889850523 1427.4854453947019 24681 972 128881 BTS_20201018 51125857.304929875 4500.790676209186 0.01907624383071548 1.6787044121519675e-06 10924371.88103525 961.3418364444831 13174 6922 91919 BAR_20210727 61555040.39513453 1643.226537002841 20.80809283734267 0.0005576835610379087 14756954.448809478 395.505295531797 None None 42486 ETH_20201208 67474119685.86511 3512997.8349675694 592.3865066820175 0.03085375072616077 10010900862.848228 521405.9339343205 None 501168 8087 POA_20200711 4014674.9682644256 432.3682518978395 0.014482358120810944 1.5599024878997052e-06 240443.1205651339 25.89825626732389 17224 None 598130 IRIS_20210128 60039741.71800264 1984.727563760528 0.06383472831386997 2.099334980438348e-06 18320892.677797925 602.5198491054132 11907 None 857234 BADGER_20210508 281041237.61157596 4904.420400073353 34.61823383081288 0.0006040541075644418 117375330.08558476 2048.0839840483804 33108 None None OAX_20190410 6515594.203903701 1259.4917407983614 0.27762519951614495 5.3706262639706435e-05 16330119.482031146 3159.042073155715 15130 None None AION_20210506 166351699.95925462 2905.8240286400246 0.33820372439461877 5.899468284423441e-06 11913167.210936304 207.8077414840859 72894 73177 250319 NBS_20201130 0.0 0.0 0.005995307944961358 3.2996111937102394e-07 1249988.5720544942 68.79506978164856 None None 792843 SUN_20210513 0.0 0.0 0.0003734119044884675 6.9e-09 10.05044476261727 0.000185714670658554 53 None None ADX_20190622 13294172.562394198 1309.609510380694 0.14443064914751266 1.4227869453800407e-05 725102.8990080624 71.42991773942742 54221 3885 880682 CVC_20190615 29795958.1573663 3429.165931289361 0.0869913444870418 1.0025480629819262e-05 8143128.419587598 938.4701054812078 88713 8174 415629 LOOM_20190805 22526160.116567586 2057.010933637247 0.03707899072946107 3.3855598193418725e-06 1365796.0632964796 124.7063143398315 20786 None 419085 AION_20200318 22300638.9619003 4106.604026672269 0.05528257473092843 1.0210510457392454e-05 1046829.5854303413 193.34599521039348 524 72543 244642 HBAR_20210602 1947741751.4183748 53085.44315133292 0.22690652363000768 6.185787660746784e-06 69667678.25542587 1899.2378782727012 110042 20478 35493 ZEC_20210602 1720040076.3942862 46877.733603126806 153.9377825710464 0.0041974127606956135 1151477519.3158255 31397.272017996704 None 19788 87185 XEM_20210112 1929074920.5273602 54458.24284453764 0.21293381512705825 5.990250950295579e-06 150460976.9219666 4232.765986235694 220700 17940 99771 ENG_20190321 33787083.00749156 8358.214840528837 0.4388610220719177 0.00010856500121060566 707065.7969930278 174.9132304895069 61450 3264 352140 PERL_20201014 0.0 0.0 0.02426351688199852 2.1242498301879787e-06 1228491.2975362695 107.55334615630059 13346 505 550002 WAVES_20210104 568733697.585601 17000.75877175033 5.542689357590248 0.00016838019696608243 185570322.16675732 5637.401878694264 150337 57227 144968 ENG_20200914 55558858.03329967 5382.353585810774 0.670791419328539 6.495377479393565e-05 2079433.5312508089 201.35477794725708 1075 3597 461818 OST_20190414 15711721.522117542 3096.38245316644 0.026527936413836082 5.229415263051016e-06 341390.3826184535 67.29781199990472 18155 750 1019811 EGLD_20220112 4171630703.3155985 97367.23141803422 204.75693819302293 0.004785624971145778 190185419.64825845 4445.056179530028 None 14435 12315 SYS_20210624 77876960.13764125 2309.402351285236 0.12673356713181372 3.758220626533055e-06 2563710.3908792986 76.02555100053715 73086 5445 388533 DASH_20201031 684102290.606268 50511.48136001614 69.87884595951483 0.005159585157967212 428501700.6666473 31638.917108108075 320994 35456 70042 GO_20200305 12356643.126757482 1411.4869332495587 0.01357352187272711 1.5496963048309305e-06 1886681.132941555 215.40340138165874 10685 680 656341 RVN_20200430 123115643.26827021 14093.671415782328 0.020423521603275385 2.3292869241418673e-06 28983786.649488904 3305.578566036578 30563 7650 218336 MITH_20190228 18053404.604285855 4729.420195411393 0.03422615112392726 8.976992307213987e-06 3364961.6279654037 882.5776097037688 47 1978 558575 XVG_20190716 98964308.56396426 9049.744458575271 0.006253203154564046 5.718832038548675e-07 2129376.9281270606 194.740978306955 304274 52966 416991 QTUM_20201111 205978369.89082012 13466.52934216465 2.000174128163956 0.00013093403047342015 109983018.23552391 7199.633101157875 186642 15026 123394 ARDR_20200407 34183220.38597795 4699.805415902296 0.03422623191009781 4.6971117988672916e-06 2376633.555096541 326.1625043198037 64095 6367 1047061 CDT_20210930 60087782.74388007 1446.562772083236 0.0885154948745254 2.129363865821314e-06 2267001.8943373403 54.535897069696915 21879 340 716386 ONG_20190426 0.0 0.0 0.4428945505061435 8.512086277711761e-05 3208619.4594403463 616.671522372282 76654 13633 265242 NAV_20210421 50427259.42413707 892.5050155323432 0.7038107572339948 1.2484675954008727e-05 2060669.4942147394 36.55356304113542 51019 13980 446539 NEO_20200807 914455062.041437 77718.73538038759 12.965476563752116 0.0011019245056059493 210182332.91380417 17863.212520136152 320304 99962 128886 ETC_20190726 675124321.6397219 68154.30003864969 6.005857471991567 0.0006073486768638499 598106594.6381874 60484.16076657042 229301 24853 498409 CHZ_20200207 48678608.38838861 5001.524243783296 0.010183686075771596 1.0457733120293257e-06 5828916.602221812 598.5775067390191 16850 None 342374 WAN_20200317 10272216.718973054 2035.212452905066 0.0964974996650855 1.916245509269554e-05 649564.9384364713 128.9904816785845 105983 16369 732459 SYS_20210930 173165219.5630488 4168.806845598558 0.2701716610585522 6.502909519549371e-06 3969374.8482456375 95.54105484705981 76329 5763 349499 ETC_20210823 8721382586.291847 176782.21393399415 67.4397782025454 0.0013684700225048633 2648082193.911058 53734.17879003965 499724 59335 245929 FIL_20211028 6529241836.871426 111557.5613412767 55.436525335366795 0.000947114871006523 1259091977.7427092 21511.173885285927 114720 None 53006 HC_20190314 57875374.22669235 14968.811409389378 1.280702966668019 0.0003312908791585102 18680190.28220985 4832.1717232702795 12312 790 443467 TOMO_20211011 187972989.75175747 3435.3107387515956 2.173090311751908 3.97029851730799e-05 8179797.855237636 149.44726006507884 55236 2304 138280 WBTC_20210718 6190803893.84691 195852.94334282613 31557.818335833723 1.000389118063477 182863021.27005756 5796.794145527323 None None 177929 CHZ_20210617 1787985611.1115065 46745.37173845241 0.335842136923865 8.774987193401912e-06 1150782326.5517247 30067.99644135741 352696 None 30309 POLY_20200127 10985013.855408605 1279.34946624033 0.019199626321874993 2.2341445739401622e-06 3502720.0303178565 407.5903779882488 34855 5001 309062 MBL_20210828 35483511.4422808 723.493112882677 0.010056223258562567 2.0504043882271433e-07 14930055.126695342 304.41498523994636 None None None VIB_20210731 6169228.209030713 147.85383871962264 0.03382758741185652 8.096259160871917e-07 1191722.4911815245 28.522560651380466 32681 1278 None DOCK_20210212 21167861.221471164 443.9236144775807 0.03761074277577715 7.880963348948335e-07 13437418.51593135 281.56796439749786 43880 14832 229507 DODO_20210823 333074362.58994436 6751.495870797044 2.2549556825576182 4.575696029707024e-05 138177507.1335376 2803.861183066008 None 1062 31066 ARDR_20190507 68379056.16167821 11953.038537775392 0.06844135977979048 1.1964361857539581e-05 673077.2048077506 117.66188255597896 68866 6557 1327077 XEM_20201031 864972342.6858432 63679.605642790164 0.09595043677645254 7.069916336329319e-06 17177364.38397306 1265.6797942074202 211853 17814 135469 NCASH_20190414 5734048.108418005 1130.3184671539204 0.001972585598236127 3.887565733105998e-07 474757.0086941087 93.56496773582299 60710 59454 760895 ETC_20190507 625535177.4866595 109338.04570571694 5.672264920282199 0.000991583440789994 445979389.6712804 77962.82154424985 227733 24462 756071 VITE_20210124 13141480.60930878 410.46043477648374 0.022760004961401126 7.102001277946475e-07 5347946.868743393 166.87661343052392 None None 879867 QSP_20190905 0.0 0.0 0.011552029255855443 1.0936540306899377e-06 268811.7891715714 25.44895708045821 56477 8533 551928 ENJ_20200305 96497198.27020912 11022.77803577983 0.10560892085137065 1.2059313900900169e-05 7644256.972643594 872.8854875999571 53685 15180 23333 NEO_20190321 605191217.7108132 149746.25110650263 9.310600853106246 0.0023037802474653378 264950570.14013186 65558.3779901675 318279 97802 162875 AION_20190714 33093363.842515785 2907.6093903923374 0.10117661461591171 8.884470734439714e-06 520266.0547139768 45.6853449265519 67700 72601 281038 XVG_20191118 73288561.10409376 8622.35976707416 0.004522052746964696 5.31406528243657e-07 4083714.6068526316 479.89546407261525 300272 52400 312376 FTM_20191030 25219063.188996725 2679.8312881105917 0.012060306611114872 1.2816647312796848e-06 3215340.127339366 341.6984470760686 19144 2188 498287 RVN_20190801 171253316.89490828 17036.666021483998 0.0418503701936222 4.158584147924436e-06 19848686.981202126 1972.322697631009 27237 6863 260058 VIA_20190524 14537014.54817228 1847.9859898873026 0.6281746212691858 7.98553166099824e-05 1303765.5010485523 165.7383207571356 41247 2238 1806760 NANO_20210318 690061743.284103 11725.472730381092 5.203756175125439 8.828563041017586e-05 35819540.12311304 607.7053909420331 112062 79089 69675 PROM_20220115 187030217.41286504 4339.313709089177 11.395120328502381 0.00026419922236602035 3206863.822973063 74.35208263172045 16941 None 672740 XEM_20190430 488072975.7765592 93775.21406285797 0.05407671696549422 1.0385672308375814e-05 41294805.21993366 7930.849709794665 216661 18447 129299 ORN_20210603 203549884.43928656 5408.828426958273 7.927150526699757 0.00021078436930951975 5384897.9319089325 143.18541202801006 69636 None 55511 QLC_20210523 8405632.63433972 223.61878833423484 0.03501985073287217 9.317641151194115e-07 812951.0120037348 21.62997741232705 33901 5640 940522 GAS_20210221 63341695.57335842 1133.6609370763067 4.62405366225409 8.248654497429998e-05 24230529.636674598 432.2382088559854 345099 104673 123772 TVK_20210724 85023683.04510817 2543.5953450570305 0.19586562195749163 5.857951225184993e-06 21961069.752925206 656.8119212540591 50654 None 92892 AE_20191030 75120643.44791643 7982.894921760774 0.22444000288256427 2.3854186743203934e-05 40380446.70638765 4291.760399825744 None 6355 393899 FIS_20211225 33113578.017150406 651.4729492960522 1.2177762393747975 2.3955589856433862e-05 4618773.592334191 90.858601309622 None None 264927 JUV_20210804 27541396.259278156 716.8385518311054 12.491524355053363 0.0003251894652223424 6097694.1026549805 158.74010472786156 2582861 None 44064 ICP_20210711 5309001401.296231 157494.2719568682 38.78036450046671 0.0011504395669836786 149470876.3781694 4434.130842042568 238896 21474 23001 DGD_20190207 29726365.25958964 8728.32687291637 14.863190061389849 0.004364165618540994 156773.69593361826 46.03226971189783 15947 3287 553717 ICP_20211225 5198922377.807101 102321.5152180097 27.40669700074873 0.0005389634477358874 389251895.23691195 7654.791217229976 458857 25595 38411 LTC_20210718 8023054465.964244 254062.96206479467 120.19122490490288 0.003806049023233895 1317135278.5400891 41709.21333334306 188687 338929 73316 XTZ_20200421 1513275287.6583455 220988.6496530046 2.137385320939805 0.0003121785498061082 260324604.96605647 38022.043503797526 59777 23665 97090 GLM_20210106 110492519.19826658 6393.577954391452 0.11129910232668631 3.2651662008274062e-06 1840305.6260831866 53.98878880300347 146066 20314 228749 IOST_20200314 30663036.304889306 5569.515338709947 0.0025470455733842905 4.5892025807353767e-07 74001657.24396561 13333.432269586747 191344 52259 110553 YOYO_20190205 4012079.438861547 1158.1237018401482 0.0137399980782958 3.966177061097215e-06 127320.4857443119 36.75223148426218 6886 None 763242 FIO_20211125 66759175.76202765 1167.679419341755 0.18175461134473864 3.177937471502345e-06 4848102.184909631 84.76794885756114 78866 545 468310 XLM_20210519 14903773591.82413 349654.16079668293 0.6489961843486856 1.5170240335980452e-05 2444767977.648235 57146.28018014128 560567 188122 21848 POLS_20210805 86614641.34483458 2172.577667833896 1.1950753782688839 3.0048823741355222e-05 11656503.907656156 293.08965587505486 383964 None 22359 FIO_20210527 45516762.76979688 1163.4666476896841 0.19258137740560405 4.915806865382783e-06 10023127.787266718 255.8490392634448 None 455 96484 REQ_20201229 26477216.251494896 976.4238138461047 0.03433674319019194 1.265019204552308e-06 397354.58223235834 14.639162915263736 39471 27351 356160 ELF_20210421 215611217.7415536 3816.430313216517 0.4431206947103002 7.858989240131766e-06 64178936.01401856 1138.2487290669812 87591 33371 202444 MITH_20210710 26968480.150186285 793.5034033577081 0.04365936511227987 1.2846288702019655e-06 53830269.760455534 1583.8965694347896 32474 2739 334204 BNB_20210527 58140464824.59376 1486144.6110898796 378.0723879073576 0.009643848590017597 6989052888.121206 178276.35658275592 4013971 438041 119 DNT_20200312 4186758.865430665 527.86750185697 0.0055999031168291 7.054245390515447e-07 170619.9852905519 21.493144071521282 59031 6097 762988 ONE_20210727 758858877.3380989 20258.176136592374 0.07284577841448872 1.951772788264915e-06 58125488.5526901 1557.3688596782172 195951 26554 25720 SC_20200806 142951304.01234487 12202.945959117586 0.0032057016156597164 2.735902512665253e-07 2404680.8135848674 205.22721914936696 106792 30106 156023 BTCST_20210508 508102413.55842674 8867.066316625147 69.73441580007861 0.0012166376330705827 19232421.216485254 335.54289024408376 56946 None 170961 POE_20200701 5757059.3529288955 629.31015902397 0.0022866023514856904 2.500066102110236e-07 377223.83851859096 41.24392380579324 None 10260 701403 AION_20201115 33389174.20598401 2074.3998409170767 0.06982439265173292 4.340676911772112e-06 753472.2632300141 46.840073109923864 68007 72529 747017 CELR_20190414 36790869.133947074 7251.740122054751 0.018458823446596998 3.6377666792070984e-06 4950583.915339218 975.6347289382471 11989 None 421658 STX_20211120 2162926249.9899817 37207.763720339564 2.0645401426828887 3.539689866774462e-05 24635848.100790888 422.3858867110375 94969 None 46004 RCN_20210207 34625932.672094785 883.0325990672776 0.06760147415271639 1.7191117670012574e-06 1137707.7052812127 28.932012623549287 None 1135 3103198 TNT_20200301 17214222.44115194 2007.3145177991785 0.04005103092990222 4.682738281573218e-06 593893.311890031 69.43758705300675 17739 2564 1226899 STEEM_20210108 70133928.7349181 1791.7550975557383 0.18792358849835117 4.7620903759325215e-06 10103449.653788652 256.0271477598346 11887 3831 219133 FIRO_20210527 97902216.86557224 2498.813975403854 8.263410826749848 0.00021093073598731698 10762385.741771877 274.71924040647366 72370 942 195652 COS_20200105 12287321.741144577 1672.9106412683034 0.009323536023789838 1.2679771168376724e-06 4535254.621085159 616.7830599780084 9606 None 212925 VIB_20190803 4479878.506862552 425.75156726014364 0.02454613722465031 2.33215863144651e-06 256962.47186691815 24.414319908569706 32518 1120 2890790 GVT_20191011 5608348.039493927 654.9915085359652 1.2640969253999033 0.00014763219869251743 487379.0322900591 56.920348976286164 21162 5692 113794 BZRX_20210212 87038244.01100877 1825.636804864746 0.6191220694046667 1.2966946457421341e-05 66197135.13306021 1386.438554404093 18430 None 192726 AUTO_20211225 23002803.262233276 452.400902234577 657.8356177192438 0.012939300459270612 5841761.527102815 114.90455301380626 None None 20186 TRX_20210304 3530824412.6404486 69459.32121003816 0.04914016462220216 9.698421572136672e-07 1530487828.7970388 30206.077429360947 621964 86407 26578 QTUM_20200309 181685106.78455445 22564.536031146527 1.893459355425173 0.00023537104180778456 486835771.55219114 60517.297300952894 179362 15175 105986 TKO_20220105 92441467.59379815 1995.9564096047168 1.2258691287469483 2.6691430987536213e-05 13199661.686872771 287.40250546493536 356584 None 22586 SUN_20210221 0.0 0.0 0.00041190503802942705 7.4e-09 1203.3871442846018 0.021619218134131837 42 None None VET_20210127 1913499615.3613038 58715.49751222809 0.029422212344670746 9.033049037384728e-07 263631940.72280738 8093.885736642664 156453 72631 117810 WTC_20191026 19128296.83564924 2213.0909678855096 0.6556963338967733 7.573502192678145e-05 2399784.664439734 277.18279756236944 55482 19741 556908 ICX_20190515 168682770.08588582 21112.2953289559 0.3561460414931763 4.456191774666033e-05 23683487.210651394 2963.33943404324 113550 24268 291267 WAVES_20210401 1195754062.756613 20329.27830032013 11.95185798920763 0.00020339562377922252 118884596.87225607 2023.1671728704187 168296 57855 113507 BNB_20210201 6522941333.935256 197348.25692123812 44.248361111646936 0.0013347127970178487 571098971.0226346 17226.696895379424 1573122 113047 423 DGD_20190430 57383312.99527614 11025.325441432695 28.69136054120213 0.005512609716272525 2606797.015101238 500.8565046318019 16914 3343 470646 HC_20201031 40181541.11422938 2958.559223161861 0.8964159153233628 6.602107617139837e-05 11328910.886632107 834.3748429717658 12802 846 948047 SNT_20210703 265595933.06781816 7857.899663295855 0.06866231037499594 2.027749438813336e-06 24360412.23117271 719.4166925237971 133153 6014 125766 NAS_20190701 66440772.325612366 6123.978700390292 1.4468607295408467 0.00013414138402513895 11136993.040089874 1032.533145571023 24360 5142 449898 VITE_20210325 72343412.78013533 1368.6012036994507 0.11833235632050357 2.246014263850383e-06 43659079.7822146 828.6737371462708 29509 1979 284411 COTI_20220115 290183931.0986726 6732.597158854846 0.3347946837171 7.762364508059803e-06 20619545.66099425 478.0733900376604 218041 10102 83565 PERP_20210731 639122235.0939962 15309.868441819406 14.628635452417242 0.00035012022096254106 118540866.08006822 2837.1446099701943 24314 None 148744 XRP_20190810 12718860852.125933 1072262.1882101826 0.29666610341597854 2.5010403755100052e-05 1324572937.297205 111667.97818633982 937313 204437 35107 RCN_20200707 33154198.93542369 3551.6770508529694 0.06478218963870548 6.934666362577413e-06 400475.53795028914 42.869255539946884 None 1137 1147730 SNM_20190704 8194801.6014835825 682.819610057673 0.01995804165591232 1.662974027161034e-06 673214.9336465617 56.094629355557124 31279 9990 14838367 FET_20190920 19757329.912163172 1929.3423676613484 0.05815855672749401 5.674762722996501e-06 4009515.72164534 391.2244669528578 16267 307 435240 ARK_20210617 171713206.376281 4489.362637204566 1.0645526760173942 2.7829506159806235e-05 4066235.926590063 106.29942539772883 72627 23331 114169 ONG_20210718 0.0 0.0 0.710511999123483 2.2499508615537724e-05 5788417.563458304 183.29957973971614 141632 19691 156257 GAS_20190804 28414877.42333161 2633.4494036764713 2.0384503114800063 0.00018888416285105412 805113.8070075165 74.60238131879109 324458 98216 192021 BTG_20200107 101047938.58034167 13012.406727964213 5.7699912634692945 0.0007438796341651567 14247164.735545527 1836.7749979912473 74661 None 244799 DOGE_20200109 267243278.20635143 33208.81207671621 0.0021698238204068757 2.704071203955578e-07 43151513.171993494 5377.614674430904 138412 146392 132410 AKRO_20210916 82601177.54944691 1713.951672606474 0.03056708468062068 6.340878567447246e-07 11094103.716431601 230.1376307736573 45548 None 217037 RLC_20190614 31194477.976479344 3789.8838580963366 0.4458602719774396 5.41685181911946e-05 799689.9570424964 97.15604351392845 24917 3317 786963 KEY_20190225 6501284.323915561 1719.808249914903 0.0025260471552868598 6.706355403085045e-07 321580.4899019583 85.37580351447654 23403 2809 836734 HOT_20190426 218992400.59160915 42188.324661566105 0.0012391521652835489 2.385945888559318e-07 9434546.177801017 1816.5901891634464 21044 5992 231377 STEEM_20190930 42042272.20631825 5215.937785796768 0.12939849596642825 1.6059312004624454e-05 197397.98728868135 24.49855265532827 10938 3782 219044 POE_20201030 4071242.080345155 302.0321750583547 0.001615644771137397 1.199885701478166e-07 76880.9737834792 5.709694532268534 None 10114 1065434 ONG_20190523 0.0 0.0 0.4312745477322262 5.631440159258444e-05 10203993.507880084 1332.4036655361965 80699 16169 231698 FOR_20210523 22936692.381777275 610.1950420547986 0.040652955172948625 1.0824962164810474e-06 5342631.64523071 142.26219268464263 27419 None 122353 VIA_20200127 4417136.896086832 514.2468278481302 0.1906931256514648 2.220065559787961e-05 60070.06911672927 6.993408449546208 39834 2184 2883050 TROY_20210124 7403082.347040002 231.3025044368687 0.00389487282845201 1.2153181654922956e-07 2086711.1325763552 65.11170087581446 10257 None 965237 DGB_20210304 827569893.8385146 16277.055123921748 0.05847929597575128 1.1541588160725011e-06 38579950.16829193 761.4214375774188 191800 29196 164221 TOMO_20200610 32092880.74763847 3283.761031719667 0.4543152325670117 4.650233559549773e-05 16117136.030656008 1649.7013853157666 26887 1555 184288 GAS_20210707 89563584.04883754 2622.171906091896 6.426581163822921 0.00018816811355991866 8295864.482623436 242.90009419493498 406259 112244 98164 AION_20190528 61843030.00226176 7013.491148678858 0.19891691426360952 2.260302272419236e-05 3070092.5372886863 348.85606205286183 68878 72556 289915 OAX_20191102 4015812.868328665 434.94593789543916 0.07688551412419374 8.327340727218263e-06 154397.5671843676 16.722540832867 12225 None None KNC_20190803 31611906.266144883 3003.48602227445 0.1885938602553574 1.7918320463278713e-05 7155778.491903385 679.8711899133511 97654 6701 212094 LUN_20191011 2587228.131657377 302.21888073381234 0.9570430722618024 0.00011179396303476579 186228.08816192253 21.75364579444332 30681 2181 1767204 OAX_20200718 3247495.7997397534 354.79782290938465 0.062067141174212574 6.77986892676084e-06 247024.373101465 26.98356714452696 11931 None None REQ_20200530 10644400.059205232 1129.4108795417442 0.013684117912332936 1.4598083251487458e-06 132595.56104495685 14.145164864206945 38954 28001 876989 ARPA_20210707 31578913.70240604 924.5425047996874 0.03223259657362337 9.437594792296514e-07 4260907.435598885 124.75792241191162 43123 None 560675 ONT_20210427 1269233476.233357 23553.336468364414 1.5744809803251705 2.920783709918483e-05 919076010.3623728 17049.569177322726 126717 18548 153956 SNGLS_20201208 5125578.023805218 266.8465820674658 0.005757335968085976 2.998828490862954e-07 47692.451117229735 2.4841607646702037 None 2114 2514667 PAXG_20210523 236050165.62951595 6279.712107695803 1893.0447746774155 0.050381994694622546 24595531.21545294 654.5919778466595 19425 None 43058 FIS_20210427 59391929.71917748 1102.1440344708071 2.2082255901804864 4.0964288627305334e-05 9975628.84745029 185.05561259817972 None None 230666 NXS_20190905 13716003.28908913 1298.4795946894758 0.22971845442809896 2.174720429206748e-05 75627.15040779079 7.159542728248326 22170 3538 525271 FUN_20191220 19567677.953758907 2739.353909766899 0.003256777121649953 4.557710690821142e-07 356349.83621572447 49.86953044456253 35377 17202 333588 MANA_20190812 57090854.32148106 4950.921266777947 0.03955084929440006 3.4257863694184934e-06 12722254.751491228 1101.966903201223 45660 6349 132863 SYS_20190626 28010082.283710375 2367.140411600296 0.050421082937375655 4.261100763960405e-06 575379.1553405151 48.62546410265521 61492 4608 932870 QUICK_20211002 157122661.07295606 3262.3584772747813 434.6432572878525 0.009023617558357715 84165432.14874536 1747.3563862080175 52827 2846 5286 MATIC_20201031 59512065.1811302 4381.301753481394 0.013935644337365863 1.0268201257651502e-06 10505146.990690038 774.0507789251378 56965 2425 54262 BCPT_20190708 6361187.988683775 556.2440275456607 0.054762921725709665 4.788657117988972e-06 283975.6563051114 24.83180234086459 10956 2829 1043904 XLM_20200719 2064868424.930908 225167.33420226 0.1008899485998407 1.100280260201433e-05 238488942.99037892 26009.000885647507 284855 109875 65501 KAVA_20200403 9575478.690480556 1411.958637841938 0.5078423251028311 7.449529530201656e-05 7110195.946797769 1042.993308217563 19367 None 284724 BADGER_20211011 265700648.35150576 4856.573404606217 27.278260267163986 0.0004985618876091032 36937775.5664622 675.1078305629576 None None None XLM_20200129 1213750976.1340125 129896.6262447521 0.06050290749214185 6.47507084711899e-06 330040500.7462268 35321.20543178864 280450 106046 64861 VIBE_20190920 3355658.2661887533 327.38151022450995 0.017932066298782925 1.7494710368732688e-06 444583.50568039576 43.374029166523 20253 None 1366400 SKL_20210902 498277406.94457996 10245.191709539853 0.40037889522305004 8.22889621001487e-06 56992555.24351695 1171.3550025686766 73363 2459 248106 POWR_20191213 17482256.49514874 2425.715144401982 0.04061640457590027 5.64251412075392e-06 2336571.622184153 324.6013158966262 83106 12899 296750 ELF_20210206 80223635.99381018 2117.086982212484 0.17487974004539558 4.581486304747456e-06 25216868.17987841 660.6296200162762 82222 33304 465986 AVA_20210430 266212341.29864538 4967.486378763709 5.0861020166035145 9.490009702517991e-05 9240345.563537447 172.41291811749633 None 9958 42647 WABI_20200312 6592149.593681733 831.1397072843534 0.11186399268990233 1.4091887237056737e-05 1170022.5708715087 147.39171861349837 36826 7774 3668499 CHZ_20220112 1412780596.8681002 32955.938872186634 0.26371636445669766 6.164045860479467e-06 98105003.52799512 2293.0838673394414 None None 51051 HNT_20210422 1004624890.5499097 18541.188851483337 12.691550841254031 0.00023434594238526537 24617365.242950715 454.5527752329076 32157 16685 15835 CHR_20210617 89783128.0248406 2347.329357562703 0.20013885416834348 5.232024305017547e-06 56953577.9380895 1488.8788349869953 65356 None 93255 ZIL_20190530 185342180.26060346 21451.152926821633 0.020923694918008124 2.4195880967745647e-06 51621123.978485264 5969.397738301438 62368 10367 200377 CTK_20210620 51791788.78675031 1455.7328781894387 1.1446371493206533 3.213622343857519e-05 2757746.8096438 77.42503177913584 56918 None 152764 ETC_20210813 7723923035.194637 173729.97029734263 60.110963297795976 0.0013519517897462908 4399415450.004614 98946.96849233995 494157 58930 120880 NEBL_20210430 55814546.95602908 1041.266423556817 3.134074089068623 5.846873791625503e-05 3259601.4935692125 60.8105552142736 40177 6051 477279 XEM_20211120 1597715813.3801627 27484.724676476875 0.1777543922450457 3.055566651923467e-06 55292352.33031232 950.4657845753683 375942 22429 187770 CHR_20201031 10360675.890887296 762.8545935566515 0.023010220424126735 1.6989861545604524e-06 1346614.3340020315 99.42882192485229 32105 None 427233 CVC_20200610 19811919.162735157 2026.7509363175088 0.029758923584737456 3.0474229585091827e-06 9363243.689831436 958.8305069321373 85336 8001 113262 BEAM_20210814 66103302.926275246 1385.7922205524594 0.6974184329594584 1.461715393540423e-05 11209283.98655276 234.93475622923194 22213 2595 205785 STRAX_20210508 309985046.4863133 5409.653430115421 3.1072841038216894 5.421195164507574e-05 26188738.636145856 456.90789292234524 156807 10641 146304 NKN_20200301 11740812.697772164 1369.071641752406 0.018025115847004735 2.107483828675748e-06 1082862.882197944 126.60756426065367 12229 1001 370779 NBS_20201018 0.0 0.0 0.006426213160832233 5.653769394402692e-07 2168797.5769345444 190.81037395185405 None None 859330 XTZ_20200105 869640338.4073817 118339.21717532909 1.2502835212778283 0.00017003536968103082 53339711.627802424 7254.064722890624 52410 19305 175595 CVC_20200113 13904085.67840322 1705.5325430450357 0.020749142124473686 2.545189313371916e-06 5811325.271829196 712.845036660184 86979 8105 121680 LINK_20210722 6710757534.488321 208537.5390929062 15.31258112436443 0.000474141682872152 876707518.0570658 27146.53882465543 402695 62709 26292 WNXM_20220115 135402783.61261263 3141.966483660482 54.753936658402054 0.0012699034369335746 4648719.626191595 107.81736238384936 None None 96635 VET_20210218 3334990166.951503 63916.7156600171 0.05132579594847965 9.843746955966873e-07 654087763.6204515 12544.714237918648 170946 84939 71018 ANT_20211104 192191734.08036783 3047.4980841511688 5.056862288818434 8.018439612260445e-05 19466064.60662906 308.6646513624682 90345 3281 100312 MATIC_20191017 30555707.72736601 3816.178683150252 0.013919962093687633 1.7386567204543312e-06 16615953.195219364 2075.3963620866057 23920 1187 198579 AMB_20190507 5418071.433532539 947.1431808098415 0.03746992509810566 6.55089830293965e-06 737775.4673966379 128.98590121717342 20702 5691 611574 OMG_20200418 80172271.63245067 11388.221962947968 0.5716570580979111 8.120210805739214e-05 105047949.45426127 14921.734669339789 None 42922 554099 WABI_20190703 11925258.61705838 1104.9271228334894 0.2073506370241177 1.9172225317307274e-05 1278115.410633324 118.1781594012398 36431 8012 1160222 ETH_20210617 274666655404.67456 7181005.139368394 2365.872786190649 0.06181625566760679 26150320394.527775 683263.6567500115 1373603 1012364 3750 SCRT_20210711 74477014.64356099 2208.7049929525474 1.0681477924937588 3.168715662423192e-05 1610228.390189819 47.76825787525817 85481 None 51837 ICP_20210708 6231061245.71968 183392.95666888292 45.46123716869941 0.0013382348479577557 196740775.71254507 5791.425365212975 238383 21402 23001 ATM_20210722 22889606.02412416 711.2780313924321 12.150722340552987 0.0003767020121221784 36976333.408340015 1146.356472103229 5010638 None 94240 GAS_20200907 23038117.445595846 2243.4268860423044 1.6532418567788725 0.00016099089864381484 3317515.2811134406 323.0560393696089 321744 100416 111243 ETC_20191203 445595464.05930036 60947.48511572437 3.8537228594227315 0.0005274705716470677 437512300.1124503 59883.61681968655 228889 24977 391424 BEAM_20211111 68822524.69934288 1061.060880376092 0.6838957842561003 1.0534487666696338e-05 6736321.750642646 103.76390677452878 28355 2847 249618 ADA_20200321 919791612.6769139 148840.4538496082 0.029563156863756747 4.77221713815075e-06 183999555.67569378 29702.032061541006 155505 77178 42201 AST_20190531 8424473.036388082 1013.5723419355701 0.04892883327538366 5.887970692414868e-06 1707472.8582551838 205.47291800146726 31757 3599 398468 BTG_20210111 236726050.99965402 6140.793076560162 14.896331662261348 0.00038730154744305036 268145046.27243215 6971.7158368328 82595 None 356122 OGN_20200520 10327930.067955125 1058.5642390365851 0.1973535711961192 2.023442715934496e-05 9970492.35939178 1022.2627346754879 64851 2229 165846 SNX_20210202 2490889776.0691133 74613.97904380337 17.50168458858949 0.0005239826155131348 236177821.63052416 7070.923491835723 70124 3838 30058 RENBTC_20210809 596486953.0524001 13558.883158767092 43866.49301386596 0.9972272432524073 3775086.979538215 85.81993505733351 None 5589 110606 OAX_20190520 4727147.375997863 578.3938137070157 0.20146606445608398 2.4650537858194028e-05 1318991.8165731549 161.38627513703236 15196 None None OAX_20200308 2622922.901730195 295.0773456292441 0.05028247966661065 5.649442681164699e-06 264233.30946732545 29.687695320272 12064 None None UMA_20210626 503196608.2439703 15812.081096376307 8.13484725980507 0.00025560724920441473 25475346.39126788 800.4677906832183 40675 None 140212 WPR_20190812 3240451.1633426268 281.140966166118 0.005334823621312523 4.622344624217706e-07 94267.79146150908 8.16780928535699 34623 None 1323626 UMA_20210916 742740842.4976897 15411.760155303895 11.836827165548657 0.00024563118705933266 56339776.024272114 1169.1313787006231 44430 None 252779 DGB_20210722 529366340.38194287 16450.118087940315 0.03661511217494266 1.1351577333263667e-06 14018715.596471291 434.61435662424685 222585 40369 89900 STEEM_20190224 104629755.55706918 25427.828758844444 0.347220495116556 8.43838661801064e-05 2253983.4522848143 547.7782581524433 4062 3675 255452 RLC_20210909 288579033.46539533 6226.476115078324 4.048184838593769 8.743960323015605e-05 39261683.47018887 848.0408285837642 47166 7904 456722 QSP_20190725 0.0 0.0 0.015807467068576872 1.609962724997881e-06 70255.19954502545 7.155368536533163 56808 8583 708512 ACM_20211007 18141102.977384113 326.60749207132 9.049427403903808 0.00016311284193313194 11883179.931880344 214.19026457470738 None None 34891 ALPHA_20210813 387490172.55529505 8716.475394558804 0.9543715707382181 2.146698071299521e-05 64280364.897791535 1445.8785192205708 72200 None 58883 SC_20190716 121300411.54010244 11075.61875903014 0.0029441560292521704 2.692269576529694e-07 3909827.843741009 357.53236066929327 109679 30822 213896 REP_20200325 94867762.08380486 14037.135011152188 8.618589486740051 0.001276827141047897 27223740.017060004 4033.143728227598 130640 10107 262137 SYS_20190806 16473285.941044472 1395.6534340070264 0.02938902648749482 2.489903707504938e-06 402028.6819344097 34.06076435018173 60947 4587 678710 GLM_20210508 502377277.6519445 8767.438846429188 0.5027580277510376 8.772632747766057e-06 15332085.293838115 267.52979786703963 158068 21000 134242 OXT_20210731 171681263.11172727 4114.937462667199 0.28911393221122594 6.919622418536458e-06 7027452.914693754 168.19431828071595 68216 4352 221435 DCR_20211002 1487278753.918347 30886.14950171213 111.34811762758085 0.002311695424850204 13720006.230655069 284.84069877500536 48682 11955 236058 XLM_20201101 1624597150.185857 117735.22694800078 0.07782530658508237 5.640139424511266e-06 227946922.11759046 16519.72190724214 291326 111879 45514 LSK_20190601 274789700.69792366 32034.553426557013 2.074281447420415 0.0002418657217567697 2941345.025671819 342.96721809593964 183203 30422 180914 TOMO_20201226 51752974.6445629 2096.758916396599 0.6788052847287147 2.7491069451868073e-05 5682654.444703424 230.14294603310734 34959 1696 137928 VIB_20190702 7502786.331025418 708.0161117786153 0.04141474177672951 3.906710901813613e-06 550059.6670179691 51.887902848027004 32663 1120 2096372 QTUM_20210220 756527087.6560256 13547.036446247166 7.312144710847683 0.00013072845307763998 829962287.6905826 14838.284836131328 201333 15505 134759 AAVE_20201201 907887569.0655369 46129.74520975212 75.90579488998152 0.0038641145967333065 268649729.12712234 13676.074945703202 None 1641 18130 RDN_20200807 18868771.331400532 1602.8471861591904 0.2829347099972751 2.4042962865597442e-05 1607377.8083488238 136.5902577223147 25856 4354 903633 CDT_20200404 1994358.543285544 296.57251272098307 0.0029581122158661853 4.397258353057038e-07 83208.88647552727 12.369070015011179 19155 290 258072 KEY_20190523 8834278.334140353 1152.2353496601318 0.003378150556429876 4.408005902237636e-07 918485.3389825957 119.84927041359533 24032 2840 636619 ENJ_20200430 130532792.85719565 14942.75010613395 0.14229590536767348 1.62302093224609e-05 19833288.499260277 2262.176294279224 54466 15335 92997 BEAM_20210819 64240322.11133548 1425.9638477583142 0.6751752954696858 1.4991613071120902e-05 8009088.4632755015 177.83404709776667 22366 2619 247381 NEO_20190702 1199173535.5225573 112970.09121942167 16.943056308772704 0.001597725791191145 693953925.5357912 65439.67419578191 323431 97987 188893 NXS_20210429 93168351.44008324 1702.3793156518702 1.367397848448445 2.4974403414960446e-05 723192.0909106699 13.208512098659181 25305 3861 432623 CTXC_20201124 859083.5448034557 46.9086758262291 0.08503930949828908 4.633674713417402e-06 3578077.598844917 194.96451453132403 16557 20060 643557 AGIX_20211104 308313038.00351435 4897.386263328264 0.31446808732066217 4.989612711200023e-06 2913032.0761857303 46.22059427177587 None None 114675 RUNE_20200801 81138123.24725209 7158.136783605415 0.4616715771534002 4.0729052644159684e-05 2963366.596305721 261.4306794649749 12738 1725 483808 FTT_20200511 274926846.99113065 31402.178172773787 2.749469184796068 0.0003140066634418623 10471033.506452246 1195.8578449726785 11225 None 13192 CRV_20210220 597044710.0828432 10686.529385576407 2.6441341089187325 4.726102290170035e-05 203163538.64535522 3631.3274051878757 76218 None 26864 LUN_20190806 3052935.464750902 258.6514846176025 1.1293131443845728 9.567792204119712e-05 143913.99637065077 12.192713946397904 None 2207 1249671 EVX_20190401 18197169.826335385 4434.570982416213 0.9449724726158079 0.00023028280069609946 5822347.996164096 1418.8631330947844 16323 2380 756371 CMT_20200414 5765164.316245822 841.4758119404696 0.0072998492818036565 1.0660734546223624e-06 5398967.466460214 788.467771890882 285629 1636 926050 DUSK_20200621 9577134.461220536 1023.6590693054269 0.03610554518062215 3.858900227241559e-06 900053.2541703442 96.19618509213153 17373 13333 976071 FET_20200430 7122383.7379731955 814.7656582840517 0.020961223467461477 2.390828068121394e-06 3202814.2470519985 365.3116055328405 16786 376 956265 PROM_20211207 231332187.75394973 4583.163742898961 14.054161391988881 0.00027826068726532994 30903145.020619143 611.8565264946577 None None 634264 BNT_20190513 38667306.35097211 5572.365041849417 0.5954309317360262 8.565395644956881e-05 2687546.5809160643 386.60906837138714 None 5136 153854 VIB_20190701 7447565.530044199 684.6412911828768 0.040917039063524986 3.7712392190716637e-06 917418.4232688732 84.55656658730872 32657 1120 2096372 MTL_20210203 28675006.102630034 805.274733809045 0.44397228811733325 1.2501077624989196e-05 4314449.004215648 121.48339739732387 None 3356 419249 DGD_20190902 31306095.84489467 3214.8661382001633 15.653960505153059 0.0016073496283845275 1193574.1872109554 122.55627102363994 17246 3363 548048 QTUM_20190225 165090866.77565002 43929.83199474579 2.0132010046569366 0.0005374105306801617 456861095.9142003 121956.01106617234 174582 15193 244662 HC_20190520 58318072.497209735 7126.400164293168 1.2624494097103456 0.00015428509062260013 34890021.72076042 4263.941288742079 12718 802 698921 OAX_20201106 3187022.2063698834 204.9376092177788 0.057345457126856396 3.6805615794778537e-06 839693.0723927608 53.8934070046 None None 1447630 ATOM_20200518 474662222.18605864 49085.87677020718 2.5381327289381845 0.0002626907098709608 132980123.56019183 13763.12698641602 None 8434 115651 CELO_20210318 376350503.6370415 6394.916991716936 3.9743505066113665 6.742784022518662e-05 22552939.176719155 382.6275455288808 None None 84819 TFUEL_20200412 0.0 0.0 0.0016698695696525637 2.4279671900694963e-07 84684.53384645807 12.313013748032418 67934 4024 349819 MFT_20190729 15489706.44929558 1624.541180767063 0.0017513046064503613 1.8371018221380686e-07 337241.0292817821 35.37626219398858 18845 2159 894559 POWR_20200927 36773131.14179185 3425.5028119680824 0.0854283856963652 7.957965572579873e-06 471078.53837497166 43.882683253474795 81547 12651 222143 POWR_20200316 23614155.54088797 4371.057063439101 0.05480190509212526 1.0198350393068962e-05 3041074.2987871566 565.9281592173053 82618 12833 249499 TNB_20190224 7438593.002896371 1808.3050745079863 0.002979347753152852 7.244433545804668e-07 218963.06232321606 53.24196721607218 15027 1509 1599145 ZEC_20200501 409072720.39606595 47272.74374841949 44.85260014720016 0.005203496503797622 562284440.8476982 65232.45280069765 72415 15723 154064 QLC_20190225 5728148.953048563 1524.2310253919952 0.023763661332608207 6.3340500464987105e-06 367437.895939176 97.93819181665147 23258 5846 940522 ENG_20200105 30637781.381662372 4166.660117309462 0.3862972495741468 5.2535440578289154e-05 1681586.6148962036 228.6914902488043 61317 3578 347348 TRU_20210806 224321180.27585548 5475.062957517978 0.6097865313350102 1.490341323982354e-05 1023383564.0031923 25011.881000047444 None None 128346 REN_20191213 28776389.728107728 3992.610751613055 0.03385175231501766 4.702754772220445e-06 1411995.342472432 196.15728525283606 10299 871 377121 EGLD_20210611 1578389667.7039118 42827.50798677279 88.20111566673383 0.0023934694992282495 42313737.16642096 1148.246692126448 None 9003 28492 RLC_20210616 295065127.5371245 7306.024094967785 4.1178522021571755 0.0001020258347838117 155015239.10049173 3840.7301663606836 44413 7687 152729 AION_20201231 30918287.9900093 1070.3094856372513 0.06335509892114524 2.196202234576077e-06 1279820.5312675014 44.36493287027165 68043 72526 531031 TRX_20190618 2234966262.1081963 239778.0292898742 0.0338161088941522 3.6293746931894566e-06 938798120.3768657 100758.19636063566 432697 70931 93718 POA_20200418 1959338.065294302 277.4396586803514 0.008872420180355176 1.2602997059338156e-06 30214.08161368523 4.29181637013763 17271 None 511690 HOT_20201031 82600759.35442768 6081.878187137876 0.0004632452272228988 3.4204245448804095e-08 4772458.448422617 352.3799719268794 26303 7302 243847 REQ_20210821 223125715.08733127 4540.786023534154 0.29001658934361974 5.896477254919212e-06 178383943.78906557 3626.816209291968 45013 28172 270313 DOT_20210519 40700856754.28537 950927.2017278819 40.78449482314308 0.0009533347088466346 2964614890.0023675 69297.66533234203 417311 24221 16321 ADX_20190930 5898460.263753764 731.686894337274 0.06412121712031801 7.957410274218269e-06 183465.0864049758 22.767923459405104 53496 3837 407203 LSK_20210418 940176879.3127007 15596.143790542257 6.524781675672765 0.00010827817857735864 50861174.09234865 844.0367149078005 193661 31993 143089 HC_20190414 66148535.77785774 13039.463595559688 1.5042421076597878 0.0002964555797863694 14414446.208623951 2840.7947007447556 12697 798 695528 DOCK_20200207 4843795.203095599 497.3458618648819 0.008611429437379971 8.843166430140916e-07 3364225.0766271097 345.4757712108557 43387 15061 372504 SC_20200629 128131070.26448673 14052.80738343639 0.002881262575146205 3.15920933898114e-07 4824675.359484916 529.0097329107014 106633 30120 209759 LEND_20190130 8339315.525060521 2441.460913501998 0.007502252461616485 2.1976950908017907e-06 236758.45297643606 69.35555587795135 11749 5965 406714 STMX_20211002 269916670.2019364 5605.328931713514 0.029073430504378318 6.03592747804334e-07 9469039.038653322 196.58647752443764 72054 5246 100852 SC_20210710 644702795.4239609 18969.3249109408 0.013392045170765579 3.9408500446174316e-07 53111406.32362734 1562.8986111625857 138832 47349 51378 GTC_20211204 194379507.09033367 3620.078407521639 13.684139794058334 0.0002547021670183134 88777827.19885185 1652.4169813394512 77257 1704 23599 CND_20211104 32837884.390143577 521.5395021477818 0.017020928385593215 2.703306464828113e-07 260038.22205916356 4.129992153600413 36830 6327 204895 TOMO_20201124 63863385.95620718 3487.1426499857507 0.8439519267144243 4.5968835094497085e-05 13622189.508113772 741.9808679888969 33994 1696 115603 XZC_20190702 88413385.00501677 8329.068455033505 11.307027889423273 0.0010662497811150665 11693366.024851736 1102.6813665295085 60678 4025 268050 RUNE_20211021 2098030861.7835236 31652.32686691455 7.9757940769417965 0.0001203699929627274 49295021.33738001 743.9561897206224 117868 7632 89121 RLC_20190401 33660570.51251852 8203.01411791762 0.48110794272445484 0.00011724504921695463 3556391.7994580264 866.6856115510883 24622 3315 889327 CMT_20200625 11370668.396272304 1222.148816631552 0.014052695090770102 1.5118689575180966e-06 4574202.663900562 492.1187692665479 283881 1635 1061023 LTC_20200418 2726605083.525256 387305.7762269962 42.25151455645541 0.006001696300256536 3505799309.2920446 497987.89380451373 133131 213103 145046 GAS_20200403 14895876.271111839 2196.481434409165 1.0727062686152349 0.00015735508110048768 5780072.766652054 847.8777887047922 321587 99282 235469 LUNA_20201111 143150956.36966172 9364.03288414753 0.30804288555962794 2.016489264462601e-05 4175513.9319556165 273.33463657522736 15002 None 186488 IOST_20191220 61068235.86341754 8550.20102050529 0.00508749179183416 7.119787790237051e-07 25704891.146451194 3597.3202045775697 193220 52313 90526 TNB_20200331 3248958.084458526 505.4407228351608 0.001044515239557874 1.6292399481275875e-07 290161.15081075794 45.259477352926346 15073 1444 2718809 BQX_20190622 13013500.113832807 1281.960455412234 0.10894901813672082 1.0732572458258541e-05 676859.9806861393 66.6775057825052 60740 5768 449913 DOCK_20200107 4143030.439473741 533.5170407450222 0.007388059270158988 9.528652608226583e-07 1120008.192822472 144.45158867199137 43593 15082 271029 SKL_20210304 155479501.41850471 3058.0479474555423 0.2749505090348028 5.426476989697767e-06 38408717.79748453 758.0419620371132 14275 174 180893 GVT_20201130 5976149.332930002 329.4574381653666 1.3489818352738439 7.42891713617914e-05 291843.2491137716 16.0719681891 20584 5465 310491 ONT_20210314 919725828.982936 14989.611985398036 1.1368289331480526 1.8531521519214078e-05 413652113.734413 6742.969697217717 None 17333 202243 RLC_20190810 18109872.789865892 1526.3080082971148 0.2585135411308568 2.179395611900283e-05 180029.47910640173 15.177365760448872 24894 3314 861371 QNT_20210731 1695047888.2168806 40627.70700667166 131.7644058636113 0.00315238957061936 63460287.75840713 1518.251822007064 35897 5430 176605 BLZ_20200313 1916984.0578433617 398.333569825733 0.008946377619626805 1.8669117884874025e-06 273474.970057473 57.068197561487835 36117 None 543870 ARDR_20201101 47361282.542647526 3432.2917211008757 0.04736315615533989 3.4324927973007253e-06 3118746.1162775145 226.0211195728191 64139 6302 1474087 CELR_20200217 16237905.328883275 1628.892857748386 0.0043345045936028295 4.348731962364584e-07 6122115.529087382 614.2210465741259 19190 None 1202590 MATIC_20210506 4928204513.849356 86085.65525763048 0.8146377716508518 1.421016195415988e-05 1070712992.2264373 18677.018860944554 242522 18671 18351 RSR_20210212 551966555.5948871 11575.636630360028 0.05928831594674989 1.2417396446090744e-06 318685227.32160974 6674.571112323707 57077 None 136667 NEBL_20201018 6647214.840145402 585.1779149021899 0.39149266169004265 3.4451261353379225e-05 88350.50284421575 7.774823290553566 38584 5927 520032 BCD_20190903 116944491.48762284 11324.00262914557 0.621526464136434 6.018382930596978e-05 2493488.843817302 241.4502287704654 21386 None 2392200 DLT_20200127 3224865.807353953 375.784314095893 0.03943785964763716 4.5914775607126265e-06 99197.31212295657 11.5488577921051 None 2602 5247525 VET_20200425 259143182.3351163 34560.19688264099 0.004024775022911722 5.369757523376939e-07 160266371.88469368 21382.351840117648 119834 61749 321528 CHZ_20200518 46743197.844543226 4814.8321390041765 0.009790126439698196 1.0012981112117354e-06 3003714.5113194594 307.2088685808814 22733 None 285725 DREP_20210813 0.0 0.0 0.7521412026741182 1.6917165062480114e-05 6096894.7295971075 137.13139785781414 4103 None 292177 DASH_20210218 2656305338.4283023 50945.138026732755 266.18401738280664 0.00510512903388623 2131957249.0014834 40888.69406170702 356558 37753 54926 CHZ_20200807 70858777.99420959 6022.682736036327 0.013218173176082235 1.1234009695246485e-06 9751193.079044867 828.7453654218106 27809 None 264812 XZC_20201031 35973887.9450492 2648.411844782732 3.2209445569872655 0.0002373288679749268 6261390.858031511 461.3580823865915 7 4195 275130 BAND_20200117 4330556.536316776 497.3840797234661 0.24180461088748442 2.7750456606190524e-05 1328169.786866485 152.42603480891444 7654 998 897793 ETC_20190811 636263484.6252931 56154.580376125035 5.649116915643682 0.0004989733339509471 592578032.0951202 52341.03678785385 229448 24874 465281 XRP_20210420 60778792590.85363 1085776.7976458562 1.3148908238252734 2.351209035260852e-05 15852407594.252705 283463.2601497078 1461196 292679 11104 PPT_20190510 33833348.10672874 5474.008021988942 0.9258043039418689 0.00014994873877359366 1710506.8997136317 277.04381064499114 24126 None 552418 LTC_20190702 7689460745.398057 724645.3327887894 123.17045878650231 0.011603473185876885 5950238374.8517275 560551.8734962594 448795 205432 149931 SYS_20190813 14921855.93975537 1311.134935949134 0.026604842591247065 2.3376809645961092e-06 477801.4852960157 41.982862074880934 60876 4576 678710 SNX_20210610 1697770880.02933 45230.9349891239 10.901016818737341 0.000291053504546313 75387217.22762021 2012.8134959280376 134303 6806 40897 STMX_20210506 458243183.862244 8002.036154861104 0.05450788479460154 9.510811465104571e-07 92610788.91042072 1615.9198917380177 60004 4150 55160 REP_20210506 297616901.22093934 5197.112118057418 46.674632156958786 0.0008147973761333438 57730249.53915023 1007.7948914485395 148353 11056 144608 GALA_20211125 4286043844.9583225 74966.85108866944 0.5725774888668089 1.000977301859595e-05 3498878713.286837 61167.234864424136 131549 None 5140 GVT_20210707 10978393.222916618 321.4020333774436 2.475359469816867 7.248110247715064e-05 591761.7451148388 17.327400005018 25814 5685 286484 AVA_20210814 138855551.01165676 2911.037279694507 2.6728570840201464 5.6020262152619805e-05 6624994.248596893 138.8528839737991 112581 10543 54869 ZEC_20210729 1187004503.1897597 29684.759709956823 104.66486738948264 0.0026158430219516667 689022509.0331522 17220.43668688691 76997 20151 112343 KAVA_20210301 198351722.06710812 4372.314022064724 3.3665462472581282 7.457140108519074e-05 53975705.00054586 1195.6003722597968 None None 89619 XEM_20201129 1634240551.2880778 92318.63713739482 0.1810381168482798 1.0221171780348188e-05 83623438.94026765 4721.268366861357 212710 17807 134230 DOCK_20190324 5738975.60193591 1434.2165695180229 0.011098930535829794 2.7711139953116553e-06 538044.0244391172 134.33558498306007 None 15347 190400 RVN_20190510 152916725.44429344 24752.92062096698 0.043605599330008085 7.06262876698109e-06 24232881.532635383 3924.905260996071 24000 6413 171456 SKL_20211011 630745296.3048488 11527.831420108972 0.2983891164713896 5.454011975622703e-06 22246924.1052511 406.6334319617948 None 2755 226284 COTI_20210724 79499299.2070658 2378.3681326674196 0.11859392995541919 3.5455219031178372e-06 20644158.635065753 617.1843418932102 123915 5472 101712 EPS_20210610 136354532.21383104 3640.1225570087627 0.7391734727592252 1.9735684596362316e-05 8101377.88148887 216.30408091916314 None None 23258 GTO_20190719 14061454.731856996 1312.1613476012326 0.021058504860508257 1.9736937943215396e-06 5947768.027648544 557.4504421844631 17456 None 852349 GTO_20210828 33951534.87960021 692.2118287563914 0.05122743505107907 1.044295329238308e-06 7625105.076879937 155.4413491285915 13396 None 734299 NBS_20210110 0.0 0.0 0.015419833020571748 3.8265192390119614e-07 9263291.15117782 229.87383689085425 None None 711556 STMX_20210618 180911929.12311083 4761.6407107488485 0.021012318497967267 5.507146564201959e-07 14776679.58860866 387.2839650445611 66423 4473 52447 UTK_20211225 149253265.34028706 2936.392585329882 0.3240901232822268 6.3733594098028605e-06 7625557.669750575 149.95958296197932 81870 4269 122426 QLC_20210221 16830396.505780265 299.80070545183224 0.06994455062222286 1.2437834763558464e-06 4444183.056833455 79.02833605787484 30579 5610 940522 STORJ_20190512 33421385.755527172 4577.294998044093 0.2469080475682648 3.389866826372545e-05 4518181.00437153 620.3131916156391 83950 7697 186547 BOND_20210821 115407992.14997235 2348.9335850602033 28.706020015407606 0.0005838747022490321 9177229.588128172 186.66301320640457 22524 None 141217 REEF_20210527 414288135.7429444 10574.111767662343 0.032493579415148986 8.288443431742904e-07 193393989.11286464 4933.082681724408 166760 11856 32388 FUN_20210821 311987140.12580585 6346.421144177629 0.029491821261832654 6.00110960489655e-07 24489452.756715644 498.3208356385313 10143 384 124228 REN_20190801 82234896.38734506 8168.3771760588115 0.10238453766583346 1.0155291362804082e-05 5862361.269357895 581.4743917549024 8656 857 478249 ONT_20210421 1698357844.8260114 30061.814174494528 2.0919016893371176 3.71010270207805e-05 1361125733.4897285 24140.313512000783 123135 18426 153956 STORJ_20200417 13495794.581406368 1900.8053390780244 0.09383670624296436 1.323719720823243e-05 1708382.9070337133 240.9952603091738 81873 8049 123443 CMT_20200313 4480363.620863253 930.9828258162976 0.005666464389288928 1.1892687460308154e-06 5372036.064397948 1127.4745864485315 286803 1639 953076 SKY_20201015 9292458.348614136 813.1637922673177 0.4890767551902177 4.279809432985883e-05 59434.26819821181 5.200969765540956 17424 3814 1153952 BLZ_20190318 11986689.243946176 3010.038182432307 0.05842685086784966 1.4671862130765302e-05 548090.901844344 137.6338794157398 34965 None 1348267 FET_20190909 18197544.714355055 1751.4863571899436 0.05352480807614876 5.1497972506538605e-06 2518071.3903026213 242.27190323189723 16244 305 439975 AAVE_20210722 3311985014.9535565 102917.55039185044 259.3447851880691 0.00804032054025963 334963749.74647415 10384.692776359174 257130 12046 14216 REQ_20210408 108395342.99346519 1924.3988623977739 0.13967633068766627 2.485652411753001e-06 1789281.7056164553 31.841704066641782 42241 27465 375384 HOT_20191216 118159149.3243647 16604.15792252906 0.00066406299724463 9.3395827750099e-08 5812419.679304823 817.476277750889 24628 6757 548449 ADX_20200324 5164897.228468681 801.7219895216367 0.05581800699482689 8.61072417601548e-06 126897.19094079295 19.575702693999908 52271 3768 39887 FUN_20210704 177800640.48794562 5128.831222239507 0.017080055731084006 4.925677714632051e-07 2255900.8818887137 65.0574030628927 4630 328 110414 LOOM_20190228 31601076.839869827 8280.837827978843 0.05101030741163376 1.3379218001019367e-05 3227807.5457916358 846.6042063222777 17168 None 410268 BZRX_20211216 100922027.73500603 2068.6627438811647 0.27356452033611056 5.605734180845029e-06 22775833.33128599 466.7098907619792 None None 189984 XEM_20190821 502102902.67443144 46661.48877232955 0.05589155436156708 5.198897652265591e-06 54417546.32753796 5061.788978243741 216829 18407 173706 SXP_20201018 92509370.60931395 8141.371412789678 1.2082101152097566 0.00010632217061219981 27048090.255187213 2380.224789251103 89775 None 61861 DNT_20211202 123901356.68633862 2167.3201883447928 0.1650083943326756 2.885638289577823e-06 5401569.585341502 94.46171561342106 73119 10381 332155 LSK_20210127 186477056.0990075 5722.025254445374 1.3019497708171854 3.997176006424153e-05 7153536.516694817 219.62402211311255 178183 31036 255671 SNGLS_20200229 4536465.8721112525 518.2883512587301 0.008088297554570604 9.258617633006103e-07 55805.96727564494 6.388070037721033 7293 2142 1180132 HC_20190410 67191826.25184697 12984.744084863574 1.5263348727225847 0.0002952676547137968 15839175.31930209 3064.069512340233 12643 794 695528 BTS_20200404 45374613.88995564 6743.281443935616 0.016742189137519726 2.4881157912594108e-06 19250985.60692133 2860.9568851749664 13248 7019 124371 GVT_20210117 10750801.849907957 296.02825715443987 2.409154985853219 6.655884248202481e-05 748250.2783936677 20.6722575796 21006 5440 340322 AST_20191022 4709501.940093773 573.4430826258855 0.027339118990812972 3.3288931334542595e-06 1728511.6509320706 210.4687633795748 31933 3541 318017 POE_20200511 2644893.553548822 302.06090372226 0.0010507872455708257 1.2e-07 68010.03914732097 7.76675272 None 10330 1011278 ZRX_20191015 199077710.12724647 23851.523725035415 0.33139541793681965 3.970182502058881e-05 65937851.68127508 7899.484748405946 151176 15927 149013 XTZ_20200725 2169221870.056661 227358.19051117494 3.032942262938654 0.0003179969571028575 141217087.32042417 14806.283854316718 68696 27693 67459 TFUEL_20211021 1610610658.6902604 24299.17376498329 0.2934674246718123 4.445004180861517e-06 25295091.22917699 383.13208491438 205197 24952 29310 AST_20200217 4455011.915900549 446.9031786450007 0.02585446321228973 2.5988469423790128e-06 9036394.308190959 908.3230823686234 31778 3489 361112 POWR_20190419 52049072.77581894 9871.512527677767 0.1248485311864487 2.367000409266512e-05 4003587.328111534 759.0391936627619 85205 13237 593546 AAVE_20210602 4784889056.471834 130406.70248800992 373.3553108144536 0.01017818543849439 595985397.3979691 16247.391473067717 224598 10479 14216 KMD_20210814 145139539.9018703 3042.777968426946 1.1404515737801488 2.390266075859154e-05 20131519.459336232 421.9353905545674 114594 9472 251896 UTK_20211216 155223466.54986897 3181.6960703227946 0.3504711035964672 7.171593973027963e-06 13907660.462076455 284.588637765662 81703 4271 122426 AGIX_20211225 209530411.14018944 4116.544923460902 0.21480493744374315 4.224223359429581e-06 1561420.0362310417 30.70593753300465 71110 None 124836 NXS_20190421 23090306.07503671 4348.391049344171 0.3867550302583686 7.282464123976451e-05 138698.93035260378 26.116531274382556 21303 3516 683392 DODO_20210508 431121395.1498517 7523.213597227972 3.6874573522335723 6.433407856935276e-05 69077819.46968782 1205.1821731499076 85634 916 24595 NANO_20190616 208177424.98733634 23610.286106713156 1.5557317954128467 0.0001764384419370202 5333582.95336447 604.8915815747985 98427 46179 363666 WRX_20200325 18311552.90737309 2713.1938176857216 0.098016341087794 1.4522926155787627e-05 10671567.31584185 1581.1892422679707 21683 None 25580 LTO_20201231 34239333.290552534 1185.3610497864966 0.12698487431059974 4.404020321733764e-06 3379119.4090324813 117.19278085470233 None 755 994700 NMR_20201015 156719525.6439488 13729.815886995124 30.119043065708514 0.0026385954665141356 4156886.1602261597 364.16631674715796 21188 1896 853425 INJ_20210219 214489138.97771618 4149.49060276968 15.893580867250853 0.00030738358616007707 45974710.505884714 889.1559118114982 48582 2480 114661 BTG_20201018 135377845.02133238 11917.79218494497 7.738330318882089 0.0006809710215634984 6336063.0335020535 557.571871297157 78261 None 307123 TWT_20211011 343991308.31256694 6286.632122221293 0.9990213457731802 1.8252407396196233e-05 17443578.016489737 318.6991887124207 None 48195 5103 LRC_20190726 40572973.46398879 4095.871705834524 0.042052595109582265 4.252613072755226e-06 6349457.548347139 642.0955973024519 34683 2451 709028 SUSHI_20210825 2393111891.247568 49831.84428147372 12.357784681122101 0.00025761100375691956 422779362.85814357 8813.279956234672 None None 5258 UNI_20210318 16441859239.593502 279378.7281020818 31.569448567574476 0.0005357176721278685 1132299457.9634585 19214.55259104124 None 29275 2272 SNGLS_20190701 8238890.493857793 763.8441980717564 0.01395072510269403 1.2933999349222054e-06 406022.0320365397 37.64312363316731 6 2180 None GXS_20200501 27858484.84258394 3219.346951093745 0.42681723196101395 4.955544875513571e-05 19318259.78980986 2242.939041270397 1 None 477112 KMD_20200331 42696223.656315625 6646.624937978857 0.3580492343696305 5.58486936273348e-05 2048325.2612553646 319.49876995654984 99693 8389 155229 NAV_20211216 24654711.248498704 505.25577819758985 0.3406378343951037 6.97734829224132e-06 132633.91422712672 2.7167652018727915 58700 17317 706369 ALPACA_20211202 107525391.03155151 1881.2272035067206 0.6956532732487102 1.2165132750981463e-05 6679686.005578549 116.81001170777833 68651 None 27687 JUV_20210821 35533964.748259485 723.2334750184982 13.652749334442563 0.0002776941891718086 9089764.092199413 184.8839825234657 None None 38736 XMR_20200530 1161079186.2776666 123194.86844704174 66.05144864135562 0.007008307118307405 114688834.18467978 12168.916648159868 319910 172131 80558 BTCB_20190903 0.0 0.0 10323.508541188283 0.9999832580128878 41126.3884074445 3.9836940809317194 None None 70056 CKB_20210702 323711219.48700154 9634.063459654593 0.012050507170572962 3.582689947885622e-07 13184678.52846499 391.98860729601114 48859 4941 123301 INJ_20210108 63285500.16674108 1612.9518354281363 4.658923031063782 0.00011805975346534992 20297162.144898597 514.3416070399888 37770 1951 132125 FRONT_20211216 42450970.87821032 870.1869877414214 0.6586995395699737 1.3498627963726801e-05 15281813.062296635 313.1678356323632 None None 326297 STMX_20201129 18786496.165657606 1061.2799996405533 0.0023394968000472207 1.320682431615843e-07 700507.3574663057 39.54473287609181 21612 141 269523 PERL_20210120 0.0 0.0 0.032237887054686755 8.885399372141102e-07 3915701.549025611 107.92448036741277 13622 503 443333 SUSD_20210708 259350457.04230493 7632.31152371286 1.0014160287749896 2.9473734750852192e-05 17968281.953271493 528.843518579473 140320 7115 47664 BAND_20211011 323397924.944189 5910.276608984819 7.768892033120486 0.00014199122080106767 30843637.02202 563.7259027453016 None 5975 392188 COS_20191012 22465402.066989183 2716.889410048183 0.017010780817399738 2.057226045704957e-06 1425028.034041161 172.3380495556424 9375 None 265359 ADX_20200309 7320028.754305269 909.1171835642813 0.08188563263876011 1.0178991488806826e-05 175447.87489659456 21.809472159543933 52451 3775 53936 AVA_20211028 141373073.57067075 2415.7642166390538 2.653381762470932 4.5342988595120656e-05 8374688.411753915 143.1129913202631 None 10858 51898 GLM_20210725 318267883.5120816 9315.442904888647 0.31768939681080793 9.298387107339583e-06 4659602.267516312 136.3809623001241 158682 21019 185713 REP_20210710 100492797.82647508 2957.791309103034 15.46827267128454 0.00045514604825202544 35751632.36330488 1051.9735806652377 151519 11231 153452 BZRX_20210210 76025972.20913693 1634.1522946176315 0.5374991303498873 1.1540623856947889e-05 42405379.62178668 910.4843302863695 18374 None 192726 DASH_20210110 1093231926.3245938 27138.57394714832 110.28908200119744 0.0027378347955088135 678533849.6258165 16844.038863392983 None 35925 87017 RLC_20200403 21723570.26724681 3201.2056330334303 0.30920158096316264 4.5356721846760416e-05 579782.0324994567 85.04811747052551 28312 3562 395542 SYS_20191213 12080278.68126997 1676.29574149139 0.021044644377238315 2.9228929589576403e-06 246978.5085387491 34.30287206005535 59482 4551 990949 STX_20200927 137424201.61130133 12798.488245938888 0.1614481007647728 1.5037160086603889e-05 879280.9157843142 81.89559263387356 44292 None 108282 OMG_20190515 261631229.91976616 32756.86213602711 1.8679518424635895 0.0002337229862491114 167044078.20419255 20900.988936429178 289865 38804 None NAS_20210324 43733897.92217119 802.5694744588353 0.9611977549940376 1.763279066518213e-05 14331666.74444947 262.9087284849072 24286 4862 502889 XVS_20201224 14922916.040264541 638.216690134784 3.96187951503394 0.00016992477554417864 3850569.5481389672 165.15069771856957 13353 None 109948 POE_20191216 4829458.717510175 679.604059427195 0.001921185467782388 2.6997071181922153e-07 296174.96644102864 41.61938961854329 None 10570 716092 NANO_20200913 124171849.32033 11903.226809832864 0.9346356182302437 8.950844822880485e-05 6278267.117000314 601.258860937391 98886 52604 201446 SNM_20210114 4225342.841556583 113.77638688 0.00934393920018035 2.5e-07 72621.89493123964 1.94302139 28703 9493 None HC_20200319 41144415.62779428 7645.163800391777 0.9284134049660554 0.00017231902966146758 35855018.635875225 6654.903932643836 12746 842 891141 GRS_20200319 9445176.192549847 1753.0806726571252 0.12651344604959236 2.348164529484714e-05 9089348.759318862 1687.036992446007 37675 106862 3912987 YOYO_20191026 2181836.718968455 252.43246576720915 0.01249641392701738 1.443375742463421e-06 357377.6933768217 41.27826563126276 7531 None 1389635 IOTX_20201130 43319966.1253077 2388.3543231011404 0.007530365128279217 4.1470134793774265e-07 2307844.3833574248 127.09425908376562 29087 2007 410113 LINK_20200612 1501228577.802131 161787.80930893135 3.961107291550577 0.0004259631669261081 387415113.79614073 41661.22163357098 57922 16000 81896 DLT_20211104 3200898.650244849 50.84454806558139 0.03846292854948601 6.1e-07 2538611.9986201017 40.260931176 15544 2606 None SC_20200607 121410928.22041658 12553.08942622195 0.0027394453439402804 2.833073516604365e-07 2440212.8101605433 252.3613877764323 106470 30074 166069 BAL_20210602 313697302.0586454 8549.778369249381 29.02983364443441 0.0007915548226361045 32927062.45439473 897.8203389054989 83645 None 53352 FTT_20200105 62575756.68789555 8509.980931677064 2.168426794026598 0.00029490051278267896 2975723.564150896 404.6908142737312 5419 None 36573 NEBL_20190410 25743813.45328569 4976.3873265220745 1.7149821742224158 0.00033151326133162504 657635.5827924693 127.12372180667407 40396 6183 641318 TFUEL_20190813 0.0 0.0 0.007053086021661667 6.196575326995929e-07 1949670.6595705834 171.2907097369652 70369 4022 242693 COTI_20210420 177214723.470219 3165.92353045276 0.264815075281226 4.7352646044264965e-06 58809844.91924022 1051.6024314029391 78577 3712 80341 CLV_20210805 145231423.1480599 3648.1035049273496 1.1282014264556899 2.8365775847096082e-05 33943291.68112002 853.4183531074154 61075 None 108852 NAS_20211230 14800328.85495199 319.1151435627954 0.3263961523959064 7.013874020672859e-06 2074736.003675804 44.58366573600228 26954 5246 678539 ALGO_20210821 3702209722.1846356 75342.91668761024 1.137994207780293 2.313714873205382e-05 342210596.0186797 6957.660595841647 121402 37463 238182 SCRT_20201201 22161397.725612417 1127.2067791269142 0.39050768311830614 1.98794629667084e-05 311210.93926406524 15.842726300625 61896 None 399659 RLC_20190419 36374717.42285867 6898.855248260556 0.5199526477645123 9.859795218331679e-05 229857.56429543358 43.58759442963577 24741 3315 960914 STORM_20190410 17130147.704996403 3310.984007643816 0.003783431581350284 7.319003121528299e-07 2684632.57819854 519.3389598175087 27057 2568 4145825 CTSI_20210916 281030529.2100856 5831.422453901585 0.688734037699939 1.4289654130891583e-05 52760777.75852249 1094.665320105161 52537 4566 224324 SC_20200430 87390746.15135705 9966.847356467259 0.0019817307574066184 2.2601486805569853e-07 6701748.505825879 764.3292604838553 106918 30082 175217 ANT_20211002 178639440.1715787 3709.7850295415797 4.708593415072312 9.776630572835576e-05 12973245.611647535 269.3684047336468 89085 3196 116609 ALICE_20210704 70590842.02473499 2036.2610257592598 4.0741596000313445 0.00011741474321286062 13868134.714582615 399.6710085538987 None None 50319 POLY_20210916 623115824.689215 12929.739774847514 0.7148891472818747 1.483231276139804e-05 57678315.73090477 1196.6929722240232 53361 7084 160340 ZEC_20200806 947398621.0743223 80874.07285010912 97.29714208426938 0.008302654215834749 734670253.0807283 62691.59549112048 71653 16060 214398 CND_20191118 14924341.887609685 1754.7915964559766 0.008251681040414256 9.700856881562473e-07 89759.65698144636 10.552341781638196 35399 6052 538413 UMA_20210823 898617236.2207553 18215.18327797783 14.391198481852001 0.00029204129127761286 112795638.41788022 2288.967380693181 None None 226348 UNFI_20210602 25026826.83670082 682.1028467097636 10.212543826244687 0.00027840815933626045 11713500.528576527 319.32632819304877 18824 None 125869 XVG_20210104 158677548.74663135 4753.789059013008 0.00952162481990539 2.8925544247167455e-07 24215785.87279367 735.6462778065917 288967 51317 225034 MATIC_20190930 23897300.756354522 2965.351459693934 0.010891269346512397 1.3526352210502483e-06 5287887.648210626 656.7263052966969 23496 1165 202428 COS_20200320 10205726.440504309 1651.1922634305217 0.0051821325814284756 8.394806215192633e-07 4340657.15844587 703.1656392260275 10347 None 117572 PIVX_20191017 14383993.648931537 1796.6160436620821 0.23448993162622206 2.9288692940168893e-05 484682.9655556874 60.53876366051843 63032 8584 244902 BQX_20200208 4583272.715986079 467.9611502327685 0.03238042083869747 3.302902404041584e-06 1723549.2501662907 175.80731857119696 None 4 366642 TRX_20210125 2153017219.0698895 66868.74261192996 0.029991974522497272 9.292679112876657e-07 1173414463.1238158 36356.93963409691 565681 77231 30212 BLZ_20190225 8288814.922712701 2192.6701826683884 0.040249286226021974 1.0685601947805256e-05 603670.0827110307 160.26565478516045 34789 None 1029822 SC_20210110 234575550.02333474 5796.703552143387 0.00517176218334614 1.283846977664386e-07 27590651.486721955 684.914991588054 None 30159 159206 AST_20200701 8772612.258405568 959.1969724984298 0.05114185537069179 5.5916158280960715e-06 1508355.8506426704 164.91670839318596 32046 3453 274586 NAS_20210814 23445871.851677563 491.5309940287788 0.5155273928378622 1.0806503998266047e-05 8768430.967403345 183.80416952463605 25314 4923 715519 SC_20210513 1548562036.2283962 30023.58197732644 0.031015173591871458 6.182965943966332e-07 173726752.54809514 3463.2938338357512 136543 44648 47016 NCASH_20190207 4624153.189114063 1357.7549825741253 0.0015937485243536094 4.6796027540901083e-07 467689.13055315317 137.32400751757203 60528 59666 643651 MDA_20200117 16779090.133521266 1927.510336523935 0.8551146620292964 9.81675400787627e-05 2429320.9961322355 278.8871210394713 None 371 2164064 PNT_20210427 68886670.80822152 1278.3392229352053 1.7296276943092097 3.2097945780592767e-05 40014379.865298085 742.5756419061878 None 252 387057 MTL_20200730 21555680.153068047 1941.2006522061856 0.33346163302895726 3.0065362163834527e-05 4442159.042229649 400.5112047849564 39763 None 422557 ENJ_20210202 314696979.77540106 9426.25794665191 0.3405009535261023 1.019425183388604e-05 74900238.19129172 2242.436864370026 76813 16820 66239 APPC_20201208 3097126.453008732 161.28691090340192 0.028067793886198587 1.4619098653295365e-06 317815.1796730801 16.55339028066667 24253 3139 517397 SKL_20210221 162607739.82453433 2896.539905912534 0.28956324636356323 5.150240027509648e-06 40434114.9785068 719.1706822411057 13548 162 210822 DASH_20200629 640149689.1445782 70211.96702328637 67.73937165498823 0.007422059054344601 222712194.51126754 24402.102047895 316588 35082 75056 BNT_20210427 1187328821.182896 22039.474297714973 6.417453173777764 0.00011905294201875984 191524396.93604168 3553.0517023129173 112490 7030 28639 STPT_20201115 15050478.793075101 935.2531943477542 0.01637945009314292 1.018238729285453e-06 1064491.5502588 66.17478104007826 16436 None 1333112 CAKE_20210610 3304176269.961745 88027.04156769856 18.45045865044608 0.0004926210774639626 346141889.597403 9241.872727362364 880566 None 926 EOS_20210422 6131780499.155329 113159.46351591591 6.3772726575892715 0.00011791908661053784 4336746964.09173 80188.70578759807 212311 82588 58571 LRC_20200605 80852987.33194692 8283.844025148222 0.06942861716232844 7.102565516058633e-06 14060760.45752305 1438.4194362055007 34563 6813 564975 ICX_20191113 81337274.301035 9245.338678922395 0.1614095233161497 1.8337775372512203e-05 9202326.488602925 1045.478560282913 112718 26541 111236 MFT_20190530 24679414.845249318 2853.80200612478 0.003716959088939936 4.298424234456711e-07 2177784.3684817934 251.84676190699966 18106 2032 781601 STEEM_20190813 62236893.06012984 5469.124731849678 0.19382893280923233 1.7032897338734696e-05 714552.0228361549 62.79192209210636 6129 3765 297203 XEM_20200308 481473472.795127 54168.84549457897 0.05361502720363292 6.02761111624388e-06 27590298.418564845 3101.809289708964 212531 18029 213172 BCH_20200109 4378453527.001749 544085.6785649946 239.81321792850503 0.02988592948559277 2403296765.439389 299502.9143318019 None 280854 122390 RAMP_20210828 106495240.03126028 2171.0974780878237 0.3208858517544099 6.5414088343805865e-06 12209386.864621537 248.8940869843384 32078 None 126255 EVX_20200806 8356706.665197655 713.3648799929681 0.38334425559319674 3.27119042927312e-05 1535228.0398735886 131.00556999386902 16808 2831 865823 NAV_20200324 4537128.244456171 703.818654473134 0.06651866213027938 1.031532395935124e-05 38601.667381972555 5.986120160328852 49527 13964 1082339 WABI_20210603 15488363.715604655 411.06214421397794 0.26199596055867636 6.9572720809029225e-06 825406.0780795518 21.918561836545347 45279 7851 291805 LUN_20190207 4119641.1477848995 1209.618943418694 1.5238988678460774 0.0004474508512451538 1428893.9644600225 419.55528298304284 31807 2262 1530504 ZEN_20190207 22481460.082389545 6601.06038750283 3.9064137710195324 0.0011470106081442617 485525.8852786585 142.56127834556278 24937 4271 232878 ENJ_20210420 2284389382.0169573 40825.89913955844 2.4338071183313117 4.3515017813883384e-05 300222490.2133839 5367.798833097758 156912 29217 22644 QSP_20191019 0.0 0.0 0.010528557814182446 1.3229216943323418e-06 42730.438896456726 5.369113759181525 56071 8476 465255 FTT_20200531 302756011.2896042 31297.886135408942 3.039974386426929 0.0003149603703865408 5187848.181084647 537.4935367610333 11880 None 12755 SOL_20200610 10726797.093153996 1097.5084959295507 0.6554185232956307 6.711726147069616e-05 934660.1510810163 95.71262867413553 50940 1918 125337 ICP_20210722 4599460883.2994375 142924.93628294772 33.71838028380697 0.0010440623590264246 249468787.65495294 7724.599128137155 246149 21702 22362 XMR_20210805 4380927443.788811 110051.41695249447 245.02344556183996 0.006161799239367077 223034017.6551172 5608.813626749182 431702 230413 35880 GAS_20200314 12183212.270777946 2212.91156368743 0.860997574589698 0.00015548318031042535 2614866.5800199904 472.20547879324783 322733 98966 240012 EOS_20200208 4431002324.905341 452414.0440987611 4.59729338365753 0.00046899676678357024 3359009308.71894 342672.17119212094 None 69953 83653 REP_20210731 173265499.68611807 4152.909191856106 26.32532419516787 0.0006298186288785823 97449650.84437557 2331.4282864849565 152311 11289 166485 NXS_20190916 13303794.586539097 1291.3015880625533 0.22281469798711512 2.1626985555351145e-05 65266.42692326506 6.334932502524853 22165 3534 436035 LINK_20200417 1263976149.5481355 178023.79837927347 3.4566300159259367 0.0004872745113318754 640826576.6041602 90336.09484514796 49219 14380 77374 PIVX_20210708 38967253.79063201 1144.2061547639287 0.5951747337912197 1.7476278857701135e-05 935023.4686781967 27.45535041957491 67688 9836 316227 NXS_20210401 99976841.87989865 1700.0035059528122 1.4659367478371734 2.493965419453032e-05 1048743.4534494798 17.842037936764164 24849 3775 385791 LINK_20200422 1258479676.0098863 183766.11179126817 3.4547260130893265 0.0005046741442507084 425071434.15541285 62095.390912337905 49867 14539 77374 GRT_20210814 4330120159.453843 90878.58131632791 0.9247153259168952 1.938391636527777e-05 364381797.71607786 7638.184524469301 128173 16554 32100 BCPT_20200711 2782709.8081754837 299.68936086 0.02413877239519439 2.6e-06 143759.38416445296 15.48439965 10465 3172 2322058 GTO_20200629 7097371.37445953 778.2343453430523 0.010723598415609619 1.1754315996286922e-06 6014385.737086842 659.2469033004242 16600 None 1219956 CHZ_20210210 141965119.34556702 3047.77375240711 0.026558341556693784 5.702331647878824e-07 58890185.8758693 1264.4289928743608 None None 105011 XVS_20210804 287170645.40864396 7474.384655200174 27.207382947718255 0.0007083581863730067 35696529.9983298 929.3774891181562 119404 None 14321 ETC_20190725 685644194.7164166 69749.58516393733 6.097593967912553 0.0006218302174021011 673310200.6056541 68663.90753876294 229274 24854 498409 LIT_20210725 69044019.96373262 2022.3063622568034 3.111789541671892 9.094993764499942e-05 40751783.25178675 1191.0741700356734 None None 411368 LINA_20210421 246408542.73223117 4361.558928933018 0.09949754381148478 1.7646436638334276e-06 71168745.71249175 1262.2168485130453 33017 None 69525 TOMO_20200417 23305714.72191171 3284.9571787216173 0.3302488123401383 4.658697893137871e-05 17322070.880181562 2443.5604943575654 22398 1519 222907 MATIC_20210120 159317241.0876822 4399.645045018185 0.032771021419746936 9.062964686834738e-07 79577315.26875564 2200.7443372493344 74557 2717 46459 VIBE_20210203 5464123.060695228 153.44865086393733 0.02914170393277157 8.200034569773962e-07 14309263.123857545 402.6410142465 18525 None 1388875 ANKR_20200208 6565453.347015361 670.3456875591734 0.0016413831850330268 1.6742612749862867e-07 1349111.3082024897 137.61349814998064 None None 5287 DOCK_20190621 7660198.161233622 800.8098423636534 0.014902330620082888 1.5582623707700483e-06 2568305.45824243 268.5548894499191 175 15252 251058 XTZ_20210218 3483649036.30718 66765.83550963634 4.5997136624264074 8.821766233938044e-05 490475954.562817 9406.812101947915 86295 36619 115000 KNC_20191203 30145662.707383964 4123.320935777062 0.1791730397366637 2.4523949734101454e-05 5246370.606428455 718.0864332469718 97990 6725 177558 AKRO_20211028 87447599.71162485 1494.084715407683 0.03227183602257404 5.513537442463815e-07 10743715.572210455 183.55286026220696 47065 None 217540 ZEN_20210702 702156565.2236894 20900.52465651993 62.47526477306626 0.0018575714511860277 45483365.43679163 1352.3528302943562 114965 7408 1147969 YOYO_20201030 1106685.646501692 82.15864913734043 0.00631843729689587 4.6962987020797217e-07 917698.3823505845 68.20967779566361 7728 None 2175374 REN_20190930 33998784.76891674 4217.870761595008 0.041163588152522815 5.107997601708695e-06 2821528.3146063504 350.12399333995177 9778 879 293718 MFT_20190329 22672326.121165257 5631.389355301384 0.003415030663104652 8.482308882405471e-07 2258571.9115214944 560.9877765851027 16894 1893 633572 NXS_20210128 25241892.033124372 834.4186274969846 0.376803894836764 1.24361634301043e-05 248830.2002412539 8.212476248119417 24277 3533 480496 KNC_20210718 119671813.87837619 3786.40653757575 1.293384039870765 4.095709204653947e-05 21780461.499602742 689.7134485627901 176051 11238 107693 MKR_20210602 3243540302.128205 88398.99738435917 3595.359700983878 0.09801450975714093 194126550.91436967 5292.159978738639 None 27589 30046 APPC_20210105 2820772.8235506206 90.16001670286566 0.025341329925142375 8.099818284720029e-07 108469.06281825066 3.4669833861798636 24281 3126 538163 BCPT_20200905 2557666.491679672 243.9227244607771 0.02201873142776055 2.0999098109551917e-06 117263.66668110088 11.1833474576 10504 3192 1330981 SNM_20200109 4933923.105271543 613.0622517267915 0.011233550476328838 1.399944091107187e-06 1191690.230685721 148.51045538933133 30507 9755 None KMD_20190627 143589571.20610484 11057.009269025282 1.2543088023335096 9.629483462411918e-05 7409193.237535902 568.8129080967394 97357 8411 339259 MTL_20190701 25452158.26197812 2345.7103577903003 0.55167297412067 5.0846561816844824e-05 1971678.3868681695 181.72553611245135 33231 None 763288 QTUM_20200316 117314752.0051622 21714.570554674265 1.2101682582632363 0.00022520603821329373 348863355.22783643 64921.661572425946 None 15168 109238 VIB_20200625 2977481.5530209895 320.0274099770462 0.016224396945122344 1.745513009237126e-06 372474.09676825337 40.07288429344649 30831 1101 None ASR_20210314 0.0 0.0 12.048731658872434 0.00019637517601196153 50842095.38497935 828.6453473042665 None None 140044 CTSI_20201208 8183119.199715319 426.0474997483517 0.04123012553056025 2.1471691040948157e-06 2307644.37052516 120.17675502727539 17960 158 506412 ATA_20211011 165855534.61855787 3031.5679823619407 0.9682994330104324 1.769750667250657e-05 49884855.694563285 911.740249363597 71836 None 267687 VIBE_20200310 2185098.340271534 276.2927667380561 0.011575526327950156 1.462590236378565e-06 116023.07580636196 14.659740996766 19441 None 1426283 BCD_20210729 357686529.71622616 8945.524502138702 1.910601839970612 4.775462380927102e-05 5319093.05187686 132.94831104255286 None None 1350278 BCD_20190816 130942253.51617712 12724.087250968014 0.6967073080898489 6.762551819688523e-05 3780286.8960743314 366.9315038201854 21431 None 2670030 FTT_20200323 64476151.76378709 11053.852420803816 2.232943952610386 0.0003829507981532017 11446883.047224341 1963.1451090280834 8803 None 15714 EVX_20210430 24987518.21077745 466.23482873133355 1.146216431687039 2.1386918749143744e-05 839098.4859555676 15.656494398050238 18118 2819 782921 GRT_20210509 1929423023.5147414 32902.367467020435 1.5808270669909124 2.6924839372084294e-05 242076822.25203356 4123.081955603987 99146 14301 27969 VIDT_20211202 39686492.761903435 694.3364422336282 0.8567061759842033 1.4981521341462105e-05 6089968.953728074 106.49742281162345 None 1844 293441 YOYO_20190830 2326393.4132750295 245.1502751584076 0.013289315198902892 1.401186270735631e-06 299362.49991954805 31.56390066622817 7557 None 968977 MDA_20200105 10570453.120540103 1438.2517033645593 0.5386745708722025 7.325836759202742e-05 1022219.7505509536 139.01927860533564 None 370 1886046 AUDIO_20210106 24050516.126129918 705.2920880234198 0.15639801778271342 4.589670459194829e-06 1552043.3673184828 45.546405864731184 24167 2368 55662 ASR_20210125 0.0 0.0 3.8065266374337545 0.00011794098634538304 1111115.5845328567 34.426678299006795 None None 205258 ATM_20210202 0.0 0.0 4.236841170324135 0.00012685736456316435 1163108.884602468 34.825220457670035 None None 233968 DLT_20190614 9946741.022622054 1209.5736581790536 0.12317362068290312 1.4971334574205874e-05 1905300.3556148605 231.58277665392077 15055 2675 2533353 BCD_20201201 107046705.41315995 5448.014628685221 0.5679469530208142 2.8930685538014813e-05 1782616.266861762 90.80480206333196 27770 None 1847175 XLM_20190627 2379847205.6694694 183039.51235203835 0.12268450581752639 9.447230091961592e-06 757160587.7171425 58304.59389360677 273688 102518 69800 BAKE_20210916 414208098.095226 8594.875477086374 2.148462523168646 4.45756775311837e-05 64999534.90980454 1348.591505121139 None None 17415 DASH_20190405 1077589893.408217 219769.35834858217 123.29092660830908 0.025155554847744743 431756541.39874977 88093.06294318054 320821 23338 95736 NAS_20201124 15512631.72957691 847.0514477450043 0.34316698599360007 1.869180706823994e-05 3488349.100041791 190.00530652988166 23335 4868 1414953 SXP_20200807 125442406.17306232 10655.929253019633 1.9010406684070973 0.0001615448673545306 48304332.08715473 4104.760644708927 62887 None 158179 DOGE_20191017 315326204.12231106 39385.45379956357 0.0025921326392857364 3.237673208641068e-07 71090502.63134383 8879.476777922604 138268 142380 101092 ONG_20210527 0.0 0.0 1.173025483939729 2.994249394672821e-05 67146295.24619402 1713.9674853455208 137589 19200 129307 CRV_20201111 63238765.73716631 4140.565932561435 0.5630742812167949 3.6859583402028503e-05 55816300.11048092 3653.808454310839 43727 None 12628 STRAX_20210610 151712021.24880046 4050.660245782711 1.5159910997390516 4.047645552492396e-05 5216081.551570722 139.26763354538843 156936 10717 144893 KNC_20210221 420307581.8772483 7522.474458856267 2.075979777820419 3.703252855968082e-05 150698723.18554652 2688.251027250105 137610 9815 94681 GO_20190507 14888577.994650485 2602.7111927753945 0.02084916877353751 3.6459903896317084e-06 704411.9225938425 123.18376468700728 9534 653 839463 UTK_20201228 53885376.99458014 2029.605504824488 0.11951100705513942 4.544436816656515e-06 3465549.5638369527 131.77841452362952 54550 3099 117682 HC_20190811 94205264.26919104 8314.255355033925 2.128455627759772 0.00018794867275290962 56056279.4826407 4949.92857300833 12921 848 463002 NULS_20190706 69572452.20131485 6330.062529014704 0.9364220166368304 8.521882897086067e-05 9626245.609716527 876.0338433649622 21230 5309 511487 BTS_20211011 121646835.40917766 2222.8651206424133 0.04487025000043884 8.200888296618974e-07 9021741.413909815 164.88941687584116 6997 7391 234700 POE_20200907 4911827.414102037 478.3084254352865 0.0019513259823727657 1.9001800744465093e-07 192896.46643260698 18.784048654990915 None 10170 911005 HNT_20210120 120947609.36610642 3339.9097637214845 1.8277994940568576 5.071320346627143e-05 4395310.0633395 121.95005757702253 19694 2240 73258 WAN_20200511 15253349.474218396 1742.0283890423957 0.14427214841289943 1.643576145009069e-05 735866.7336034686 83.83135778882367 104409 16219 828507 SC_20200704 130401455.10863431 14380.748528424214 0.0029362921896347177 3.239162522774561e-07 2415464.0564203113 266.46124232067734 106678 30115 182860 QSP_20211125 40841052.776506625 713.9118545838007 0.05719992456382841 9.999664197380276e-07 2303852.463713025 40.27584157340987 71645 8650 132633 SUSD_20210201 167361618.76058215 5063.810547754356 1.0160811937869298 3.064919328276813e-05 39558250.35555088 1193.2397415571631 68934 3772 30058 AMB_20190816 3475342.744166457 337.76936025266207 0.0240739229072596 2.336001190796534e-06 114178.47178328161 11.079251482052532 19330 5632 728566 BLZ_20190903 6875726.70095425 665.7923451412241 0.032849047070587375 3.180848372252129e-06 95406.58154812426 9.238437540284623 36494 None 878308 SC_20210703 642766696.7296962 19017.841838548717 0.01341792984065318 3.961217866311798e-07 59819188.641142674 1765.9716633459097 138775 47228 51378 POWR_20200721 42863950.91917255 4678.557823625593 0.09958295544748753 1.0868731862059293e-05 7418222.188123536 809.643251634662 81496 12705 226515 GXS_20190702 126295199.10909095 11897.761395087595 2.1004027443797524 0.00019806743101282177 9152722.87719646 863.0993803019051 None None 741418 QTUM_20200914 270086617.10610646 26165.074724704846 2.6505653496890123 0.0002566583588273169 362476937.92176354 35099.20478311033 186141 15081 78545 SC_20190819 84608543.83604404 8200.09032994888 0.002021020616359728 1.958732636381654e-07 6607119.80229816 640.348796270834 109346 30712 198456 ELF_20190626 108165617.23674136 9161.571947994296 0.23465533310923914 1.9847803787084534e-05 45954138.819017 3886.929473960385 86565 33262 1215448 COS_20210509 98520103.5923506 1679.9813284415957 0.03274271629464928 5.576922650287071e-07 18073719.940470707 307.8417111271489 24979 None 191552 REP_20200914 73425444.42744385 7111.099550242538 16.59182426284975 0.0016068832129418479 9669386.561928563 936.4597104971879 136173 10415 111817 WPR_20190716 4543846.798669187 415.01389112258124 0.007536331605784809 6.899688234630451e-07 440888.16785304324 40.36434519665268 34746 None 1469795 BQX_20210131 640346553.7265205 18716.767142182827 2.854442170204169 8.354197277765974e-05 105775654.14031847 3095.7736369546333 34744 419 65097 OGN_20201014 24169066.20556783 2115.5649763695933 0.185640116986252 1.6252851923094105e-05 9139320.586893607 800.1504555584168 71541 2421 151602 FIO_20210624 54340135.926425695 1611.7787634297633 0.16342744246818883 4.851086599552963e-06 5871009.177557094 174.27167382028554 None 477 103132 OXT_20210513 343617294.68139577 6662.065693422713 0.5735105690781891 1.1378321761338197e-05 53096376.2049287 1053.4202600516921 64324 4043 84331 NULS_20190905 32099903.897604004 3039.2102637667426 0.4357476873250118 4.124871072786825e-05 6388842.1532422295 604.7800356276796 21321 5302 307386 KNC_20190702 42621738.09632474 4022.0893882342507 0.2538957958833774 2.391866595744537e-05 7702791.599564299 725.6539974156265 97240 6688 219747 IOST_20190225 92281599.09488963 24499.669350988876 0.00683820957111743 1.8254142661440862e-06 16325082.593067665 4357.871508827799 195505 48198 81938 GAS_20200224 27949739.085421756 2809.298825344533 2.0060063602568974 0.000201594839351477 4606124.062989394 462.8952624020609 323153 98918 228840 OCEAN_20210523 253431073.23062184 6742.804121452185 0.593920093780067 1.5814748317160524e-05 47968104.93816572 1277.28210375915 None 3063 66745 STEEM_20190329 136467380.20036694 33895.990561321174 0.4466098854112976 0.00011092889207203813 3595586.318237778 893.0711559691013 4954 3695 256324 DASH_20200322 667071345.9782468 108418.28023884151 70.9810228499287 0.011536457791778901 976162967.1420778 158654.55886909 316392 34195 60317 POWR_20210318 152698728.33447054 2594.6443089695504 0.35456396416243896 6.019508635878275e-06 25903066.35494009 439.76192557418324 None 13113 307065 BTS_20210207 116042778.03748605 2958.718845650948 0.043047386888292946 1.095127681558966e-06 37694299.55483465 958.9448713018548 13254 6932 136810 BNB_20190725 4516686409.372764 459761.83937750565 29.022332006413677 0.002955873481825673 241669214.81539613 24613.584576477104 1014878 54883 742 RUNE_20210310 1423886021.9916348 26050.979515425337 6.156194314411796 0.0001124349633683995 60010997.80224402 1096.0236137772226 41652 2908 108351 PIVX_20200523 17977102.699109267 1963.856052454461 0.2837811112777417 3.10546914888363e-05 1012471.8018187458 110.79666051435858 63688 8472 243551 ENG_20190923 29952999.72590393 2980.6100840363283 0.38198053976358615 3.802653167714371e-05 1420284.6639931167 141.39071011136426 61361 3481 323659 NEAR_20210513 1864658818.4048183 36168.3799316815 4.950574458895463 9.634821706750921e-05 231255159.64244834 4500.694314207585 57323 None None ZEC_20210723 1104641660.2298207 34155.11665642956 97.58086360127851 0.0030141140526369447 663016163.1937172 20479.49014648226 76899 20126 112343 GRS_20210106 28844139.27797256 849.097978100331 0.37790354117202996 1.1074665122289486e-05 5963384.170810873 174.7601583262973 37634 106784 4269637 COS_20210710 40999708.00728439 1206.7390165522818 0.013614094537636574 4.005878006558441e-07 10460340.029971419 307.7901798855861 None None 334513 MTH_20200331 1977079.3295510698 307.7188476428648 0.0056703284574899475 8.83174780091994e-07 63898.46168236791 9.952423438539764 19153 1926 1279318 XVG_20190601 162041631.8257116 18894.836407364415 0.010011885887559373 1.1674076386077656e-06 3153310.205844846 367.6828184565411 304385 53090 390528 RVN_20190509 158607197.9438792 26645.831299111673 0.04525168718896465 7.596638353966982e-06 28201637.99964664 4734.357063377156 23962 6412 171456 WNXM_20210107 55209112.75620411 1506.258385539595 31.06269674064909 0.0008412509399275373 17943131.867552206 485.9422436774116 17590 None 132342 BNT_20211225 814049716.8879333 16010.084605146858 3.526217068250537 6.936896392517697e-05 38382290.599149086 755.0697193065879 141961 8669 38212 XVG_20210727 341786095.59188825 9124.061630858316 0.020562942944623054 5.509474036724246e-07 22278493.742136758 596.9125293990164 321932 54471 103436 VIA_20210206 15550229.833298571 410.04038735489485 0.6834268640364298 1.797949864399016e-05 5543241.295004744 145.83081905532975 37744 2136 2708625 SKL_20210310 312369012.0853696 5712.823887010911 0.5587225904935944 1.0204348788695894e-05 227305052.18129855 4151.434134498779 14991 205 180893 CAKE_20211120 3896360920.2771935 67027.19359548674 16.058647120149384 0.0002753019561143845 170193017.55129308 2917.709711055964 None None 561 CMT_20190914 16245164.636588208 1568.777787459292 0.0202509649571594 1.956171114955238e-06 2729576.6714529167 263.6673882971764 289818 1648 567314 LINK_20190915 574596429.3586135 55508.2944860265 1.574816513497497 0.00015216842081876368 143880661.9207158 13902.631146665679 32656 10595 94033 LRC_20201124 234380812.3915164 12797.932884254255 0.19726504347598062 1.075019036650189e-05 41016565.3110773 2235.2459285460172 42633 7202 195654 MANA_20210115 146756052.49237517 3762.198729965926 0.11076898243991302 2.823630313428729e-06 33642808.44561674 857.5943523490407 56474 7912 76796 AMB_20190810 3602419.1624727896 303.70155778201774 0.02491556488216989 2.100418578843375e-06 124797.46331245179 10.520608775022469 19351 5642 834562 FUN_20201101 19196663.81751134 1393.0075818041057 0.0031919469431602554 2.316239079252213e-07 357443.20775781607 25.937897501586217 33920 16593 423341 FUN_20200530 19654919.251344 2085.460854112227 0.0032151569960596695 3.4292074730127407e-07 584042.9408548763 62.292585394567475 34300 16846 215039 NAS_20200308 20970905.301217448 2359.3609893986095 0.460771707382438 5.181784593677942e-05 4331493.777296811 487.1147113244819 23731 4986 1191705 MITH_20190316 23443547.691905007 5973.69197226244 0.0459454586491592 1.1708056719565499e-05 3324166.489775066 847.0811033742426 51 1991 567173 KNC_20190131 18881925.843207352 5459.770915757861 0.12045834664782037 3.4830926837086514e-05 2258604.758664364 653.0829892007104 92496 6540 188210 MITH_20191022 6967718.0436027115 848.4102490277313 0.012840803490082753 1.562475096987413e-06 909552.564503054 110.67479013557437 88 2081 644077 ALPHA_20210902 533000491.04105407 10959.140703326797 1.3123446628475386 2.6972320847039585e-05 125040494.23219223 2569.9287883604607 74639 None 62862 ZEC_20210731 1257613754.066673 30143.255561216323 110.74400722678638 0.0026505354109506306 518332818.922222 12405.72312321841 77036 20151 131241 AMB_20190626 6145715.140812462 520.6533904796046 0.04252498756791063 3.600934081545888e-06 603163.0084980229 51.074682398431484 19389 5670 665963 CHR_20210318 183562242.40837157 3120.591342417612 0.4111690426294757 6.975791507529021e-06 258198178.28455034 4380.525945772434 47284 None 163006 KNC_20200704 325744961.090766 35917.921790126966 1.8400525350761825 0.00020300372911127265 335486494.38428134 37012.53530984507 112961 8329 92529 POWR_20200309 35082914.56378012 4357.152348710566 0.0815675122325399 1.0139446762791013e-05 4059783.5475114514 504.6612066712704 82731 12840 280064 QLC_20210511 17406190.579840515 311.75188795528175 0.07261529207301409 1.2995334436652073e-06 1522391.3860085593 27.244929600733233 33506 5639 940522 DIA_20210110 40504404.861361265 1000.9573391851393 1.5839096582545726 3.9293263798035165e-05 23390377.905663565 580.2630753548019 None 194 308409 BADGER_20211216 143955677.24532512 2950.89498682549 14.474471466612489 0.0002966231089624516 6902063.046936423 141.44291236882538 43113 None None BNT_20190811 36405694.88667718 3213.05020492658 0.5215264998673336 4.606522050587091e-05 3874833.500755688 342.2550142346597 781 5130 154213 IRIS_20201101 41487124.8736558 3006.589086938333 0.04804624786452448 3.4819976775072277e-06 2632983.095113673 190.81700298330543 10739 None 401587 COS_20200903 27675241.25655984 2425.8847747262344 0.009164683543958763 8.044402541839815e-07 2756854.544253384 241.9859627111022 12904 None 229143 LUN_20200711 3456074.402851044 372.20867437633984 1.2735199689455012 0.00013717112372762258 868778.0234113367 93.57627728434593 None 2120 1752609 NAV_20190807 8011440.166002512 698.0557306112252 0.12171169195908171 1.0605027597281385e-05 234263.53532876814 20.41193592176428 48222 11300 652826 HOT_20200903 127175485.33598296 11147.53580976313 0.0007126249835263285 6.24512677361814e-08 8255833.855195804 723.5043710156633 26266 7282 305234 DOT_20201101 3874741303.6816278 280857.13438014063 4.178017676018528 0.00030311320242358466 91136861.76934384 6611.936131411156 71615 5475 29997 ARK_20210902 225770204.01905313 4641.25753436435 1.4145918963735624 2.9039022141011668e-05 11965951.385386067 245.6394159398843 73472 23508 161391 STEEM_20200322 71271691.30069137 11572.817963258844 0.2063222766889145 3.350180283799115e-05 12460399.707779221 2023.2708798671908 11093 3839 219600 PERP_20210511 174003552.2772341 3116.4737444722573 7.770539102831716 0.0001390690501532256 12159379.359575683 217.6159614681947 None None 273188 AERGO_20210513 64985499.20066897 1260.7080829521835 0.25730952654587264 5.1049636103521905e-06 23697500.419400003 470.1531222777156 None None 378551 ARK_20200330 20343316.0222565 3440.3118998649747 0.13756213528721395 2.3305009784696475e-05 788500.8610008794 133.58341844941611 62524 22040 77737 BCPT_20190131 2513490.3201307817 726.7839870171799 0.029960495260681435 8.663175674149557e-06 178215.44042411682 51.531580329588415 9905 1326 1734687 IOST_20210508 1522718696.9481046 26574.336956888004 0.06768103509952986 1.1809674478452207e-06 978604200.859869 17075.680119852645 244911 53256 140464 MDA_20200315 5337874.449864188 1032.1872603551194 0.2722157740566176 5.2540136633688794e-05 607626.8205154232 117.27753941817589 None 372 1557783 WAVES_20210826 2438898421.420396 49757.43898102926 24.361253374623544 0.0004971262505845961 150016023.5247916 3061.2917223780837 195670 59344 144631 DLT_20210825 8643681.243315123 179.70875020750867 0.10539815770859186 2.19130838618483e-06 1287977.2720934337 26.778033496155967 15318 2596 None ZEN_20190816 37302292.648577 3624.7858393776446 5.160272355358942 0.0005007431513148759 1635859.0796878824 158.74069705241055 26661 1778 227019 COCOS_20200404 6387225.439946443 949.8169245534147 0.0002639257706746119 3.9222939864188836e-08 918988.1872742727 136.5740765413859 14726 217 63890 SC_20211202 1150356990.3854365 20116.696114581664 0.023263270744937573 4.068129738146297e-07 76840072.0628781 1343.7292875436453 144779 50598 96597 ONT_20200526 312677633.65867865 35144.78864165779 0.4889088802035045 5.501243298276695e-05 64296068.106877536 7234.64694753087 84962 16477 164481 VIA_20200612 4276138.235144175 459.81877241959006 0.18456773818977582 1.984681180444149e-05 898954.2441687227 96.66573302467285 38810 2158 1856302 PIVX_20200331 14537903.285089627 2262.7250101527306 0.23115075548417577 3.605500720449993e-05 190478.13580979343 29.71087221643094 63727 8508 213032 HARD_20210418 123054980.86528367 2041.3001191013911 2.0015214572922178 3.32587150187445e-05 13077883.283476587 217.31148151765638 29328 None None SYS_20191118 14493682.967899548 1705.1740000959646 0.02553535211837335 3.0007727852826024e-06 772860.3624192482 90.82225816273822 59764 4566 930008 COS_20190923 25929243.267498363 2581.6433554830974 0.019708213240202593 1.9622469207880528e-06 921704.1633406708 91.76941280011073 None None 303115 RVN_20190703 199229551.7062713 18506.64578785066 0.05133083030496554 4.756024876507883e-06 32074089.85802773 2971.804047388894 26093 6739 214144 HC_20190703 197130292.79086095 18311.64338568813 4.4977078798074 0.0004167322140814899 182274370.55733398 16888.51389252973 12914 839 542452 XMR_20191113 1075575716.9092786 122297.79327996892 62.2623258827203 0.007074466758066401 185631317.8298913 21092.090098228888 320139 162698 86841 ENS_20211221 898250842.8145232 19048.97440767436 40.69105766352647 0.0008633858833662828 88110236.80094415 1869.52954781964 None None 4184 BAL_20201201 145323388.96240595 7382.270609033573 14.825599890416372 0.0007552021646753055 24248307.565445982 1235.1860631943098 29927 None 76645 TROY_20200109 6764416.270978397 840.5093030883639 0.005885905015597807 7.335114543498402e-07 1617620.012819269 201.59054640604944 6690 None 397449 ZIL_20210616 1315042917.660897 32562.53875164908 0.10828536238060676 2.6829288545036695e-06 120884483.41745505 2995.090578193836 299085 34319 32653 ALGO_20210220 1109831015.9444525 19869.12285027041 1.3797424108911926 2.466139575130759e-05 752599517.5046414 13451.898265152893 54976 6114 202160 RLC_20210617 268316787.0401751 7005.862488186621 3.761491745769705 9.82141080772774e-05 44575214.69726694 1163.8773257361959 44505 7691 152729 STEEM_20210117 68780255.1649522 1895.3113825064984 0.18380139336601645 5.077966366158361e-06 4188328.0948520154 115.71288338245533 11970 3836 212736 REQ_20200314 4816358.835933566 874.8247938246706 0.006308164429770676 1.1339380345373058e-06 176373.03711779366 31.704324971439714 39732 28258 787523 NKN_20200324 8154006.7227879455 1267.2213025089202 0.012571267212274554 1.9494783827763335e-06 3710997.743667067 575.479763308741 12229 994 277366 PIVX_20210111 31213865.904574957 809.6974262559372 0.4891723081330986 1.2724409231329303e-05 3792756.260753379 98.65763448609016 64792 8726 359500 UTK_20211021 199153531.2021523 3004.5662249944585 0.44205908232187713 6.671543563712903e-06 9258192.40868532 139.72438627741192 79926 4187 180131 AKRO_20211225 65723096.41821286 1291.8076522451895 0.024225725801906742 4.764084012656907e-07 6161675.064545655 121.17175727250341 50610 None 242863 DOGE_20200418 248334765.9740806 35275.181536515985 0.0019996019927732 2.840372471376635e-07 121729852.72641443 17291.34717200976 139535 152893 112062 NCASH_20191118 2815540.625496932 331.15026103532415 0.0009663199036418922 1.135565491826166e-07 229524.98306153438 26.972501476411104 58907 58656 1075692 SNGLS_20210117 5817167.603728766 160.17837658516973 0.006514425647696806 1.799770596296254e-07 5551031.842114607 153.3609320120846 9036 2114 2274706 BAND_20210202 250401910.51506904 7500.399274673918 11.096194691024742 0.00033220877036241276 426739768.2650713 12776.154134601622 53645 3591 278216 WAVES_20190130 293623183.9346154 85987.47071254831 2.9351552548560567 0.0008598916500177761 63343586.132502854 18557.321868206323 135724 56673 39735 DOCK_20210427 63950841.18764079 1187.070418511428 0.11460242364307555 2.125963389057528e-06 70874676.29559198 1314.7799341923962 47317 14976 216888 SAND_20210916 721104847.0458338 14963.025577683153 0.8079069930788707 1.6762220057512783e-05 69527628.5092812 1442.5390783017979 186370 None 16855 LOOM_20190103 28489588.630416922 7365.513035379056 0.05000427808236163 1.2927780980562506e-05 1907239.0167046434 493.0851765308905 16519 None 344662 CHR_20210727 187822811.29700822 5013.974904354319 0.33091536700994834 8.868956022009091e-06 202232736.12618703 5420.096561607552 75271 None 109219 WTC_20210506 49568041.34077829 865.8523214015815 1.711491614919612 2.9854462777866323e-05 15745098.006182685 274.65015794513073 64183 19598 333404 NCASH_20190813 3641289.501626606 319.9445753621856 0.0012558543936700723 1.1035937024342101e-07 659113.1477089192 57.92017949449061 59922 58980 884408 GRS_20210809 65048236.33558917 1478.7438598126676 0.8324885544035656 1.892499178359847e-05 7841990.124293276 178.27223916085947 41435 106850 8715439 MDA_20190803 13724364.815489534 1303.91996230247 0.6991921710231132 6.64286210356119e-05 1338322.0999088308 127.15086822030392 None 364 2972990 DLT_20210117 3980517.36136889 109.60537023283622 0.0485370971933759 1.3364912208491441e-06 256012.71597201796 7.049427491701 None 2533 6584935 BRD_20210125 6645714.363305635 206.30869104175108 0.08805743069028803 2.729261703359738e-06 1181430.9032501592 36.61739950995402 None None None NEBL_20211207 22940455.65418944 454.4372159053021 1.2275998601357447 2.4305454536967898e-05 3353740.4813291007 66.40126758300516 41329 6313 1182243 XEM_20210804 1479356501.062673 38502.57971915666 0.1643049317696357 4.277318874533231e-06 70070269.58186069 1824.1259309631553 371917 21748 110067 DUSK_20200305 10004259.244445818 1142.7742218776996 0.038335133099698764 4.377427586185353e-06 474267.58970915276 54.15585815307358 17704 13340 936304 ATOM_20210916 9426104605.102327 195592.97775056877 33.78405246357182 0.0007009417255702154 1078123643.9640021 22368.596786694652 191032 37086 49664 ETC_20200312 765843822.5357561 96557.76184114156 6.586420413790993 0.0008296969585840052 1565639806.154205 197224.97256389333 231177 25300 362649 NKN_20200314 6464279.945763997 1171.4965626331395 0.010003687841786997 1.802439286526005e-06 1519117.9736006767 273.71085141702235 12225 997 370779 DGB_20220115 449267482.31554985 10423.516435081394 0.0300288115331888 6.962500390863289e-07 19437968.975386746 450.6900529151481 238350 44531 101891 SNX_20210819 1977637526.692136 43874.18943198464 11.496631126884036 0.00025552503168474266 148803577.61855114 3307.320071953011 None 7450 47795 YFII_20211221 125046321.95662996 2651.208274171882 3141.618797833626 0.06665465702292582 107331819.14926918 2277.2226846791705 None None 989231 BNB_20200323 1688695769.9758637 289625.4507383693 11.17898170597252 0.0019158819609667338 282013365.28632444 48332.158823994345 None 60415 1672 QLC_20190430 7229940.598937558 1389.123417014036 0.030036531275821756 5.768543238564596e-06 1437461.2588604318 276.0657463857247 24979 5820 940522 SC_20211125 1010832106.2332616 17669.59895923535 0.02052497500648401 3.588744554658739e-07 79638229.21470046 1392.4560753259568 143251 50099 101806 OMG_20190730 213131817.1660306 22455.00216185562 1.5304431056562247 0.00016089694968246431 115739801.57010098 12167.836204207086 289548 40770 None GTO_20190804 14242299.081653073 1319.9555100936152 0.021495487723536915 1.9917862019347063e-06 4135935.6266384507 383.2385484423499 17449 None 944506 QLC_20210729 6129229.863734767 153.3090609612074 0.025532263013323325 6.38116625987793e-07 2925898.1880308497 73.12568724346 None 5683 940522 CND_20201226 16181174.775222633 655.9714982723564 0.008615447224722322 3.489341926448924e-07 89960.62200087662 3.643494781980972 34002 5906 545184 DCR_20210724 1583812204.308328 47381.82593414436 120.4889966103214 0.0036035862662408685 21216496.785761174 634.5432245749412 47508 11434 137794 WPR_20210131 7504188.429005321 219.34083442688535 0.012614976772648152 3.6924261450760016e-07 901389.1724423888 26.383821446513956 32547 None 7510517 CMT_20210104 6715559.823837376 200.70131935324247 0.00835208013568159 2.537260899163917e-07 1323857.885478531 40.217200916504176 280804 1628 1272511 REP_20190920 118099856.01578483 11523.474759696075 10.719036953170008 0.0010452209468860157 8273768.022883393 806.7810275284025 125700 10051 187186 OST_20210508 27239427.70329471 475.36442541274465 0.039362116577635116 6.868301923591399e-07 1024853.8151950336 17.882690369103464 None 775 471679 MTH_20200113 3156810.16371346 387.03137362549603 0.00917984335294945 1.1258651283685684e-06 250710.31459367747 30.74845503029677 19213 1948 1221699 ARPA_20191213 0.0 0.0 0.009307089958667828 1.2929600013406955e-06 1143193.5904520778 158.81479525907167 9503 None 733601 LSK_20190523 246821464.3910785 32199.022741768607 1.8651947243550173 0.00024355216182375195 3599072.365310248 469.9572884726818 183302 30404 175336 WTC_20190513 54349090.51093887 7831.103743339539 1.9122006883557319 0.0002750739771038124 4089456.971455112 588.2767432221532 55623 20232 966813 SNT_20190414 89641278.2276759 17670.44682643573 0.025516694520949314 5.028694345572084e-06 20141369.877613656 3969.3539746096994 111216 5761 338064 YOYO_20201124 1705498.8242583883 93.12562433896336 0.009968062266845216 5.429458670000036e-07 1464047.7330170742 79.74455259737476 7716 None 3015981 VIDT_20210114 29850158.095490083 802.7368516240792 0.6429901588505592 1.7204982333376392e-05 1411901.4375595392 37.779332942055774 185 1172 None NAV_20210422 46304867.11593776 854.439026469918 0.6473677583066393 1.1950540713130682e-05 1516698.6326634993 27.998565771342175 51022 13983 446539 SC_20190816 88183589.78890747 8569.087979221371 0.0021052014239342507 2.042847978902994e-07 6733548.186838519 653.4108873355294 109404 30719 198456 DATA_20211021 0.0 0.0 0.15042655974864214 2.2697143002546103e-06 735292.7405964433 11.09447993089675 65418 4656 190407 FIS_20210718 19495755.322276525 616.8441257376442 0.7225586867970841 2.2904686092347167e-05 5560458.1511978805 176.26325834843524 23752 None 421891 ORN_20210611 190138661.88673767 5159.160140977377 7.4052645303813165 0.00020170443999269325 15440539.450429069 420.5690897680212 None None 55511 DATA_20210826 0.0 0.0 0.16394081777128913 3.3440145620647224e-06 20000.923076330317 0.40797269972931766 51938 4379 None BRD_20190605 24719169.339176618 3226.4203938258224 0.4125880860933557 5.380010252193511e-05 146833.11718046907 19.1465459720936 168 None None SCRT_20220112 949574912.7157092 22163.390494193358 6.026549274156201 0.00014083058929811995 13280837.588186633 310.3514297871264 132822 None 52790 MANA_20201106 98016704.70326445 6306.77252372775 0.07401853071345467 4.750677280515681e-06 30425486.518535685 1952.776773046235 53621 7463 81691 YFI_20211007 1149475136.7396786 20709.172898661956 32194.411903590608 0.5802932921142792 230472235.2442441 4154.183419511477 141652 7270 31064 KMD_20210527 228047397.40797228 5820.583455019874 1.8075064980793767 4.6138172715260846e-05 6411100.3340094015 163.64890240765394 111315 9256 197096 OMG_20190513 230521905.1364698 33215.660782265135 1.6455931378359576 0.00023672624916598928 141907834.2489249 20414.103921941416 None 38757 None ANKR_20201228 58173792.846830085 2191.1297050092344 0.009062904771700983 3.4461928758886485e-07 29996281.094055984 1140.616312468297 30824 None 5391 MKR_20210217 2246847761.1005826 45661.48103802858 2485.608082009512 0.05053831449113937 143713605.92182148 2922.038862563084 104736 21964 33476 XRP_20200410 8710888248.686846 1194671.8415357743 0.19806941770953088 2.716461849256706e-05 1815834538.3656497 249036.1866599054 947035 212017 34231 DCR_20200520 162921664.19892907 16705.566430781426 14.16248659057636 0.0014515882410101968 123659821.6110664 12674.549895459953 40507 9779 320960 ADX_20210826 77472323.91893734 1580.5202918889793 0.6085246029607077 1.2417756704573645e-05 10498192.27135571 214.22962494738803 None 3893 15083 ALGO_20200927 260189296.63256362 24231.55139069644 0.3252305026904727 3.027910029099266e-05 54361060.04199351 5061.038172371934 None 1333 198634 SUB_20190213 17064802.530125726 4696.410318951684 0.04459528164303978 1.2272686107615931e-05 99922.34495811141 27.498774077127464 68500 13823 506806 ZEN_20200323 43815353.366101675 7517.213565822852 5.052920966310389 0.0008665780055927996 2200943.662575123 377.46273536693616 None 5088 39151 PERL_20200301 9409966.2717638 1098.513319558437 0.027325331863785444 3.190659888631173e-06 1335696.4247755373 155.96344912346768 11433 450 686395 GVT_20201229 6654175.937345649 245.40779333105039 1.5039913564201226 5.5410411202666054e-05 444359.2630765925 16.3711908208 20736 5457 361646 DCR_20200605 212380317.3302912 21727.10770088863 18.338779537551993 0.0018761090628543625 123767021.8952657 12661.716718101636 40543 9813 295595 BNB_20200217 3616306586.4908743 363651.067953487 23.642234372603625 0.002371959729655966 442399014.6733692 44384.66477858326 None 59252 1952 ZEC_20190201 279202131.73793364 81369.6941488205 48.177910370346936 0.014040801935008293 676525904.9130342 197164.3469334173 73007 15002 148346 GRS_20210203 29385168.16090125 827.4081018896954 0.3823390255739502 1.0765649040913817e-05 4405296.881973255 124.04143176638168 37575 106757 3797410 EVX_20190621 17858830.4937605 1866.9918103273178 0.8432548473795205 8.817495270640011e-05 1661973.9697594463 173.78432704917796 18106 2906 694179 QNT_20211221 2354543841.5182714 49906.94766599673 174.8992284680676 0.0037097601912992927 41097487.93395343 871.7123913878173 69363 10961 73022 ENG_20190801 38022504.916860744 3782.564503356778 0.4851808425203627 4.823909013648149e-05 726995.801810372 72.28153492252184 61783 3472 330014 ONE_20190905 23141856.99965068 2191.0647938485067 0.008514868956670803 8.06185501685391e-07 2981925.8607661007 282.327938137792 70885 None 133162 TRX_20211028 6545953693.220797 111840.79829589112 0.09118025810210355 1.5581570137022945e-06 2095913148.005128 35816.544498240495 1201087 119010 30822 HBAR_20210210 748153969.8441501 16090.029698820113 0.104657362601315 2.247094343865732e-06 103888419.85394707 2230.5844027070834 49770 8157 141603 ETC_20210114 884442946.8220006 23752.619195112155 7.611080541839318 0.00020365553727033747 1023663378.4769894 27390.94852323287 254593 26499 167227 MANA_20200113 43708899.09454901 5361.51398593699 0.03310700498751051 4.053870967233894e-06 14204318.334001016 1739.2836871011916 45938 6437 82411 TCT_20211202 20366804.868971422 356.25935429169914 0.03518701412723592 6.15496785729015e-07 3133422.636347248 54.8103216154808 None None 502027 XEM_20191108 376756915.1509863 40866.67425585348 0.04186187946587202 4.540741584488247e-06 51222536.66741854 5556.088385815059 215146 18248 157832 BAR_20210513 85140215.11016168 1651.4461611823303 28.216964763607393 0.0005598182867400574 51236617.9949414 1016.5230720093895 None None 39485 NCASH_20190712 6193435.2989905365 546.8320651111771 0.0020918385466483762 1.846848377148739e-07 445098.47250732407 39.296980779832225 60251 59092 1075927 KNC_20190528 47491060.97863084 5385.008208893673 0.28607863409816614 3.244359094307388e-05 7785236.461251499 882.9076940337881 96815 6686 226732 ETC_20210115 897579061.7512956 23010.095657486967 7.7588663691464905 0.00019780314108241298 1236673582.663079 31527.53347024163 255081 26521 167227 RVN_20190804 176706026.71490675 16376.856874853567 0.04293780307979581 3.978645416920771e-06 15892125.441717822 1472.574922762473 27276 6871 260058 TVK_20210930 73977994.1882493 1780.9579162248385 0.17044425256152362 4.100511663975177e-06 7258419.121412372 174.62150716187122 55187 None 113864 LPT_20210626 481196310.84944075 15123.268831198286 20.20637428294105 0.0006352148738646748 27997922.097436026 880.152782709281 13651 1125 95239 ALPHA_20210727 216344591.54946163 5775.4438574689775 0.6140735388598009 1.6453005915051275e-05 80082793.76114099 2145.675714821358 None None 56625 ETC_20210428 4251070176.3879976 77166.01666251213 33.55086128092984 0.000609174944485948 2490357576.3647766 45216.82545283763 345326 35730 130525 LUNA_20201101 138639280.51114818 10050.182395317295 0.3031182223732674 2.196752073730914e-05 2133363.5314749246 154.60867793089685 14888 None 186488 MITH_20191020 6671595.149756418 839.5554754908277 0.012308685335501893 1.5483428026504712e-06 554235.5275679016 69.71878528796236 88 2082 644077 GAS_20200325 14162239.061891014 2095.519672914418 1.018402168767769 0.00015071243959544195 8760341.51925548 1296.4352222990074 322103 98981 219445 CELR_20211221 400801292.5006227 8495.390392218871 0.07056342986403757 1.4971202805356362e-06 110315924.24080211 2340.535426993309 97622 5311 40279 POA_20200629 3306171.8898555962 362.6052342243633 0.012042512650737122 1.32e-06 83454.38997435538 9.14757559 17200 None 532939 BTG_20190302 218688997.10282034 57199.75409833135 12.48192994414895 0.003266644315818915 2579043.3018499454 674.9610981583982 72812 None 404455 AVA_20210813 128723069.61114064 2895.5869037361863 2.4798188973048707 5.577934849734404e-05 4664430.906212071 104.91851535696998 None 10543 54869 NXS_20210420 112048890.06423217 1999.7958922051905 1.6743811700441376 2.9919535940060095e-05 3952440.497482314 70.62620365723166 25186 3839 432623 QLC_20190714 6480548.145663065 569.0666816817593 0.027038341003235263 2.3710787019507307e-06 327055.94066790614 28.68058270185086 25012 5777 940522 CND_20190819 12012007.72717225 1164.1796908564054 0.006888436568098883 6.676134528445862e-07 228325.51525452296 22.128850879969825 36011 6118 336080 TORN_20210916 79272093.07484412 1644.9069246097852 68.64050315864561 0.001423888145974846 49650816.876150385 1029.9634521110543 24655 None 97450 WRX_20200704 27530362.4966225 3036.878604623053 0.14215801035319342 1.5683577329786593e-05 18087856.185600504 1995.5420768207991 30038 None 21406 FIO_20201115 10355339.803246934 643.3556909187607 0.0900442495915535 5.595544533342252e-06 1568408.7675234508 97.46431498925098 55575 150 236963 LSK_20210221 527152412.8514555 9376.056842024309 3.6796997186915457 6.5448004946825e-05 90344333.71599942 1606.885575452574 182515 31440 216887 THETA_20190902 107420459.0303768 11044.15562653301 0.10741571808627501 1.1043776213292388e-05 2507794.506938076 257.83490365258587 None 4026 310301 FUN_20200321 11620351.084497748 1879.686999070124 0.0019363545075574726 3.1257501386226993e-07 960269.8054524326 155.01105121986785 None 16982 317174 POE_20190810 6019871.886385933 507.65150815575475 0.002378096111106777 2.0054253270368773e-07 153688.04095108763 12.960363054567612 None 10777 756599 SUSD_20210616 193511706.84483927 4791.6553660781 1.0122690901563247 2.5079158966493087e-05 36929318.84904191 914.9308883830538 None 6877 43067 ANKR_20200506 9486805.19096924 1057.9641164642653 0.0018443014664344854 2.0536654328013272e-07 13175796.58385245 1467.1504895667115 None None 5876 TNT_20200725 17448484.22131726 1828.7920910634455 0.040724685815626646 4.269399165320674e-06 1863484.9706793483 195.3596699167956 18036 2603 477306 QKC_20210117 39650881.60950513 1093.2433322783797 0.006207950591515411 1.7154020827798565e-07 4268641.06332589 117.95254589617132 None 9206 334407 WPR_20210704 8014765.157221395 231.31788714734972 0.013171457400212224 3.799434117403309e-07 25515.521452030236 0.7360198631217354 33797 None 6439074 KMD_20200320 45214307.22449353 7306.887098180435 0.3783668010024498 6.129360688418272e-05 3208038.084904549 519.6867820450047 99867 8401 161250 FUEL_20190618 7726406.662815863 828.8713533413751 0.009684819427606479 1.0394406597366675e-06 6920626.329002445 742.768665020643 1 1513 None SYS_20190614 36549513.55127187 4440.478585141945 0.06586317607892885 8.00185815107078e-06 1140960.5899698432 138.61774272713143 61619 4607 1053467 ARPA_20200807 0.0 0.0 0.026916575252480097 2.2861135068226385e-06 13986242.898724193 1187.8977358952634 19046 None 446273 DIA_20201226 30810393.08898824 1247.5926092671925 1.2059683727996973 4.890751152824977e-05 7387903.875219241 299.61315909807814 20519 188 284096 BTS_20200719 64843591.81664223 7073.744649914669 0.02392579430390856 2.6100491152742557e-06 6393381.932803344 697.4498169366003 13107 6962 136009 SAND_20210131 57326019.26453438 1675.9266420093554 0.08720881756666858 2.5526176057851997e-06 22932886.09377658 671.2496560303597 66676 None 48574 DCR_20191012 170031190.75221255 20573.347213944584 16.177934675678188 0.0019566219809321185 8909756.508449538 1077.5804068113882 40541 9632 133666 FTM_20210727 538894228.63026 14385.910421608847 0.20955542949381042 5.599281747090423e-06 77986196.83437032 2083.7765431059297 103339 9303 42722 FUN_20191216 20884798.553514536 2934.684178890611 0.003469004373978881 4.878912638120066e-07 539462.5089603867 75.87163834388448 35412 17222 333588 RCN_20200317 15096816.177264573 2991.100083240768 0.029690499447223306 5.896572904866465e-06 1146590.6354280158 227.71443390019343 None 1132 875851 GTO_20201018 6975874.195088953 613.9181617715643 0.010504047336484754 9.242710743698381e-07 5072862.527736295 446.3708081698746 16503 None 1390753 NEO_20200410 566217334.1780877 77654.98603819028 8.028035363364351 0.0011010206442391933 310742223.6486565 42617.351293104366 321468 99278 235469 ADX_20200117 7577436.4502342185 870.5677099675405 0.08279290640835169 9.501642454843178e-06 212728.52686877968 24.413569832701874 52764 3798 160693 KMD_20190730 126690214.60975294 13347.744512175868 1.1014858965863885 0.00011579816229605362 2094746.3510707633 220.21868703185348 98276 8454 276726 NAV_20190819 7025685.854389621 681.4024538478848 0.10648007407853499 1.0327217195127754e-05 108940.03548002892 10.565802262847761 51712 14210 487370 ONE_20200531 20799230.046346556 2154.930392966863 0.003966091988616897 4.1061502732977663e-07 9717417.901965808 1006.0578092597476 None None 150814 DCR_20211028 1471448122.1664102 25144.495802109635 109.5352937597319 0.001871821705401928 14368991.50222534 245.54816311168744 49414 12230 242987 VIB_20201014 3179070.8950901004 278.23293758247104 0.01740927039464143 1.5241872199109196e-06 848932.3122221803 74.32429685604433 30557 1099 None HBAR_20200625 194014305.37214804 20854.309558627105 0.041600230071347416 4.475589633463991e-06 6391023.698851589 687.5827216519143 40060 6556 134058 FIL_20210203 1079812140.2858324 30320.790112486662 22.47521042202928 0.0006326462186347138 96428957.95955779 2714.342356510487 47640 None 48258 ATOM_20210519 5428517027.914929 127225.15347128309 22.99741014389802 0.0005375628507556946 1002663821.752332 23437.19657988517 None 28385 40023 MATIC_20210616 10364623021.748594 256644.42905957828 1.6410342718604691 4.0659278541393284e-05 2609137537.9364057 64645.60291449017 None 43526 8165 MFT_20200423 4856103.282475177 682.7490813674954 0.0005090869180530514 7.155879077788538e-08 670673.9551085508 94.27195147212252 18294 2604 823194 BTCB_20190803 0.0 0.0 10514.098194047701 0.9997353517490638 188085.28433505073 17.884130852037913 None None 55533 SC_20190807 107722080.57162794 9423.115596979127 0.00257954686084342 2.252626703819355e-07 7991519.977766341 697.8710710506858 109510 30759 197380 CAKE_20210814 4378778342.619019 91899.79700842057 20.994388058859236 0.0004397727316511156 201787043.7428848 4226.864778807631 None None 746 STX_20200612 93514151.43603039 10084.512753906922 0.13709950371308113 1.4742490076343031e-05 1396936.2499599692 150.21439352120515 41046 None 95761 DEGO_20210429 88585958.28645563 1618.3661024350624 16.37490730159971 0.00029904797840785526 119962002.40997514 2190.8151078789106 None None 65410 YOYO_20190201 3857983.8707082365 1124.3573451124942 0.013212273529825447 3.850538853125773e-06 286334.739128487 83.4483963357999 6885 None 763242 SFP_20210718 76816869.45343605 2430.479552939653 0.7101713640990347 2.2469764672878868e-05 5773045.595839953 182.6586969595608 360755 None 24694 AUTO_20210602 35406488.07934865 965.6662366891854 1389.8924715469266 0.03789562590127413 4864540.252579928 132.63241680004637 None None 10120 ALGO_20210202 515094397.5765777 15437.156165344553 0.6422669818176654 1.92288194480409e-05 309533249.7111043 9267.110314492076 42142 2685 246299 ZEC_20190929 303891043.1859453 37094.900376173355 40.59288019985244 0.00494620433912992 248296141.85058358 30254.651755778566 130 15344 166171 FUEL_20200421 1694811.1006330305 247.48013941797657 0.0017115940020055475 2.5e-07 37650.77981650942 5.49937365 1 1468 None OST_20190227 12221022.22964563 3208.6320366736013 0.023194249739354716 6.087839019422809e-06 2879046.1944078603 755.6687522984539 17280 741 887864 BEAM_20210127 27571426.726884756 846.0818359479834 0.3449827310381775 1.0588073761175686e-05 6997483.077131419 214.76398757782147 16148 1638 289835 FUN_20210725 159935560.85935238 4681.422098608551 0.015355010039777165 4.493578282104131e-07 1981581.2749210747 57.99013193832323 4831 340 132450 JUV_20210111 0.0 0.0 10.246314487639847 0.000267163928398886 1995213.8393089436 52.02350249434755 None None 134536 APPC_20210708 6001062.544479128 176.0202903048 0.053707301999001845 1.580212214310534e-06 360462.17129108845 10.605759453000637 24911 3130 638230 DOCK_20200707 4604134.77909938 493.22254714654264 0.008230855416668466 8.813355181067546e-07 2221653.5319632012 237.88805264168047 41998 14963 325611 THETA_20200725 251164425.547076 26324.7803746651 0.25078791385226284 2.6294530712867115e-05 15108770.382864963 1584.1195086455928 71620 4294 67592 CFX_20210408 0.0 0.0 1.1345043212231494 2.0173392530250672e-05 21668495.69436545 385.30225139310056 None None 128225 GXS_20191213 26543326.043121003 3682.9655247001538 0.40813344710909805 5.669370113955631e-05 7265651.220708154 1009.2695460486758 None None 716170 RCN_20190803 9342636.233266039 887.8906007297346 0.018422224201767236 1.7507820389113927e-06 1471795.1872811008 139.8741297807455 None 1120 1860009 ATM_20211011 28841703.087913513 645.7254437455765 14.95176571654278 0.00027317306112173884 7591736.18905637 138.70320424421013 None None 61074 C98_20220112 449165444.04044783 10477.684185435886 2.424264205797042 5.6660445415434214e-05 29528102.657160427 690.1374218315894 None None 36297 SNM_20200704 3889299.356027443 428.84945823999993 0.008882849060305887 9.8e-07 48565.4132212986 5.35797745 29327 9598 None PIVX_20190821 20142677.357274015 1871.9017722160638 0.33081641583372606 3.07717455213864e-05 394500.88389168645 36.69552121977673 63207 8603 276830 STORM_20190621 18843051.441960916 1970.3238883267156 0.00319381385802321 3.3437177467744586e-07 807573.9506983281 84.54779992889422 26853 2573 4259920 OXT_20210324 0.0 0.0 0.669467757316061 1.2281119842936256e-05 85708660.9144565 1572.2913086777485 60948 3017 118033 ARDR_20190627 124012466.44533671 9538.083507904237 0.12470948923990893 9.603162450299565e-06 5473939.463693619 421.51668035324786 68010 6569 956576 DCR_20190430 223048248.09230733 42855.310998710236 23.002046329939702 0.004419494290292849 2616504.0333423764 502.721560943624 40547 9425 288305 DOT_20210221 37257080664.757454 666810.3308068275 39.37357824214819 0.0007003077263279071 5237458518.062277 93154.66945787065 187635 15320 20426 HBAR_20200713 202767736.1111759 21854.681967932767 0.04270353060181469 4.596129229773075e-06 10872477.331219949 1170.1915546051273 40342 6582 154427 NEBL_20210725 16391121.541449763 480.09761591532873 0.9058987920811684 2.6514569681588663e-05 1310148.710811578 38.346479308413315 40412 6111 1825448 ICX_20200418 124411043.8784287 17573.856663293627 0.23198985917015982 3.295343833457575e-05 22138979.68715531 3144.7732436269275 112796 27528 102592 COTI_20201106 17001126.625026654 1094.116021045622 0.02992074214216748 1.9256599486779012e-06 2303300.2969132178 148.23740368701962 None 1205 163060 SC_20190902 77321880.74251913 7940.290522735809 0.001840438029376421 1.8897634589473032e-07 5123496.029015972 526.0810428361192 109111 30651 202127 ZIL_20190804 97238390.17716372 9011.915308300244 0.010423230682240098 9.65823493724955e-07 12829274.1367078 1188.769081910732 65840 10616 160236 CFX_20210527 340298128.5890144 8685.622723840828 0.4080412362421571 1.0415606833332911e-05 4733703.812551685 120.83189981251572 33875 None 127715 RDN_20211002 30673740.943872105 637.0704284470152 0.6004275558640768 1.2465461144905504e-05 2515854.6543705766 52.23159419316453 31508 4786 1383523 SNT_20190401 89293054.53510393 21759.394219501086 0.025420072441426914 6.193064737959852e-06 23992700.232718255 5845.315591529754 None 5753 338064 CELR_20200316 5237658.90747376 969.507714292671 0.0013903307064631026 2.588123155179628e-07 4261944.331566989 793.3678483355728 19277 None 1309255 XTZ_20201030 1449608394.0486946 107616.70923415928 1.933748968530617 0.00014370079352759324 78497144.41154976 5833.281426472386 74881 30104 102266 DASH_20210428 2939819355.058295 53348.85351362644 291.10458902740163 0.005282670192114346 1151061587.1812894 20888.295702264088 None 39809 49097 SNGLS_20190626 9243654.616183074 781.7393351640554 0.01565206924291044 1.3237013618480522e-06 864299.2478589526 73.09411130757347 6 2180 None BTG_20190321 234268979.54445252 57966.639982027824 13.376155997048551 0.003309746004494928 9646585.439843522 2386.9150168094557 72987 None 417963 PERL_20200106 5982788.550634439 814.7750974834643 0.022816509376303976 3.1071656338783586e-06 814598.3090523544 110.93247567182895 10852 389 1210386 IOST_20190614 156853239.910293 19076.018495031774 0.011564068004187087 1.4056071098933125e-06 58383998.196482986 7096.547939640354 197961 50025 109542 WAN_20210813 135463278.51268747 3046.928313187082 0.7675297867271584 1.7264289542464497e-05 5126526.893174399 115.31258611915715 123491 16663 308128 NANO_20190803 153900520.25291967 14626.15282969377 1.157090342780422 0.0001099352626794522 5895655.084735073 560.1467460616376 98842 47161 262200 ZEN_20210206 409937832.3853862 10815.92806751538 38.12969885672264 0.0010031108008268967 44403029.14277529 1168.1486992572015 85556 6535 437186 YOYO_20200117 1785026.0205922723 205.05617874845603 0.010266194823704616 1.1781892533822582e-06 251072.3906423784 28.814063784647466 7490 None 1347898 OMG_20200107 95088300.38798681 12255.36557132054 0.681470893337937 8.78918152628098e-05 73454001.8975683 9473.633618411437 283998 42708 None MATIC_20210617 9226088539.44308 241210.8929654992 1.4731862253224228 3.849186519329152e-05 1770554159.1149285 46261.586511343914 481095 43978 8165 PPT_20201129 9524801.295516612 538.0582888568795 0.2625409579721258 1.482271400922258e-05 1449952.6679700462 81.8624030712614 23453 None 1330810 BRD_20200217 15818657.4261107 1586.802591429329 0.2585499681644761 2.5989005793670548e-05 1182293.307373565 118.8421249218751 None None None ZEC_20211104 1981492719.445287 31419.640887073077 168.5762508456869 0.0026730379635931238 382467392.4437157 6064.613815467822 81005 21220 131533 TNT_20200502 22799041.56391214 2572.4829006750674 0.053035121419370654 6.005197183886804e-06 1073043.2547697818 121.50130251947844 17536 2559 722675 TRB_20201124 50111637.93954698 2736.2537595401946 32.16404722159937 0.001752574581933626 61953842.8967541 3375.77947096924 10848 None 262414 GO_20190716 8550387.19859542 781.9708882740266 0.011661472307225133 1.0674883696443598e-06 594321.5887402996 54.40405525945053 10061 679 877679 BOND_20211120 145105123.0920953 2495.4293411432936 29.261888527705054 0.0005029588308737245 10391706.389333863 178.61459937603976 26428 None 217749 BTG_20210108 186903406.84197226 4774.937580145945 10.618801167261356 0.0002697790414909101 63504355.043619156 1613.3783620495537 82487 None 356122 NEAR_20210723 804232839.2487093 24843.806013220787 1.9343157410047231 5.974786491972379e-05 33547144.93941542 1036.2167053665587 None None None ZIL_20210805 1002559993.2455168 25147.4741241171 0.08127330461709666 2.0435256635060035e-06 55812137.56045653 1403.333308240157 310366 35378 45480 HNT_20201201 82247081.63871022 4183.376388728971 1.414686946094345 7.20170638636277e-05 2089907.465246226 106.39032176640465 15432 1868 70273 PNT_20201130 8918046.247469874 491.6128016200228 0.35912765314575557 1.9775298613407387e-05 1085077.8224244453 59.749612064878775 None 103 624601 LUN_20190510 5704188.370704114 923.8250087423779 2.1100396583742995 0.000341732649618614 976879.1993538385 158.21101552645752 31703 2234 1641403 LOOM_20210603 65641994.079862714 1745.4325202656955 0.07871549180000724 2.0930591942298847e-06 8162963.7292017825 217.05468510544563 33028 None 242233 VET_20200217 455451231.6253999 45688.45313403096 0.007243728405246275 7.281273358036612e-07 177294009.29153216 17821.294148176155 118733 60351 239259 RLC_20210610 295221111.76869726 7865.093618283839 4.1536013185843155 0.00011089976654142804 22323407.48267143 596.0275164495604 44007 7632 155158 REQ_20190902 8083200.062018813 830.0749571722636 0.011075685183978879 1.1372520365508871e-06 100784.69072692918 10.348578248517512 41166 29460 564071 AMB_20190603 7159497.674992367 818.6199053449384 0.04950567523947529 5.661012174472004e-06 892345.3571752242 102.04038034763416 19371 5687 617435 LSK_20200718 166142577.36489964 18151.532250278586 1.1819315660271486 0.00012911961519487944 3437699.767024443 375.5500604537769 175531 31142 173512 BZRX_20210128 42611166.75300509 1407.012509707371 0.30367633451967474 9.98701441406356e-06 25021932.287226908 822.8971770734647 17857 None 186488 SYS_20200321 9523835.725701395 1540.558462021223 0.016418706364040712 2.652648791399142e-06 234562.5404140914 37.89653250025132 58718 4509 831215 VIB_20200106 3808736.1434245943 518.6029484595425 0.02118304604156866 2.8844052449213417e-06 1334343.3262270917 181.6918530575124 31764 1111 None WRX_20200411 24231836.019447025 3533.2900140108068 0.13005975518022633 1.8963307467701413e-05 16740889.62738788 2440.898315140572 22721 None 25623 FIL_20210909 9128426774.140501 197036.86629165837 88.13162466295371 0.0019036172012428746 3337987573.732039 72099.55095225084 103575 None 52380 NXS_20190729 17562639.2530638 1838.838084575505 0.29295794009054865 3.070779897493545e-05 1570199.328065836 164.5880132210146 21487 3533 1023997 CHZ_20210519 2239819127.8534255 52493.40304612067 0.41968772910067453 9.810171261497625e-06 418997992.4988825 9794.04871675846 336562 None 25913 ALICE_20211207 247590278.98500007 4906.271002824891 14.275488766571305 0.0002826427848977822 197954468.89211932 3919.333571376428 147912 3054 30388 MFT_20190324 22982102.187002044 5737.995214669274 0.0034616908407094976 8.642884500744034e-07 2684642.475215758 670.2809669255661 16700 1890 633572 ROSE_20210220 191973644.15084985 3436.463100416235 0.12877858423403954 2.301777204947569e-06 21157068.58341887 378.15960222331375 11669 848 193183 GVT_20200313 2056238.637724517 428.41113804611535 0.45340552822019203 9.492522984409705e-05 479646.540264149 100.41906250509768 20716 5604 171820 POND_20210718 44265841.697005734 1400.3989683024768 0.05702865704721016 1.807774941748499e-06 4520518.768245152 143.29779055067465 19705 595 135580 PPT_20200321 7439216.7664880175 1203.3542650778184 0.20583906063599897 3.3197213741101404e-05 3746082.0263354955 604.1588284347652 None None 1049662 TOMO_20210111 89150685.565523 2313.2683056246515 1.1619618345705771 3.0210767778423182e-05 21267421.810086586 552.9485757918607 35969 1712 198557 GO_20191019 6950487.795746342 873.3343401314661 0.008428771485312942 1.0590818658439577e-06 1307847.644495424 164.33210058967595 10272 688 791048 NANO_20190903 134673228.35421392 13046.573139578502 1.0144942233887264 9.82729369592908e-05 1990961.403934441 192.8622362024626 None 47564 229089 VIB_20190522 7945806.80718016 1000.4710844139145 0.046685433674367574 5.878248438197823e-06 2254211.485270909 283.8318957276093 32975 1122 1724143 BCD_20220105 263311793.61962253 5691.682131202283 1.3845749663227631 3.009232276525564e-05 1391701.14764064 30.24720303791492 36045 None 1984459 TROY_20201129 5428144.048226797 306.70600542395965 0.0028663654436217167 1.6183118834065517e-07 762132.439170626 43.028985916082526 9587 None 1151989 ALGO_20211216 9009575560.100513 184673.94378420457 1.4255586177354802 2.9170589998777593e-05 214517025.2446343 4389.569192958839 207329 59637 65778 POWR_20200324 22471650.41520301 3488.1654913495263 0.053080417972017874 8.191611469985094e-06 3574686.367613629 551.6618551492912 82453 12817 249499 VITE_20211021 75796500.60718042 1143.51778912693 0.09887461985019237 1.4976043733190953e-06 8854540.400179889 134.11529113468663 37445 2628 349145 NXS_20190914 12826377.105745101 1239.1801425104968 0.21481881146730097 2.075404482601338e-05 118411.92207414084 11.439995975562871 22167 3533 525271 FET_20211216 343734562.7505083 7045.70563781001 0.5029410292021256 1.0291544200937662e-05 24705374.447208684 505.5392945918946 None 6991 85496 XLM_20200315 751794537.1686734 145685.97973667787 0.03720678480471823 7.1964782500840334e-06 301471044.8401954 58310.0590015898 281565 106782 84088 SYS_20191012 13960768.500114826 1689.2179396951346 0.024635174575633374 2.9807942764998277e-06 1255983.6685774517 151.97087072303282 60094 4583 816882 PERL_20201201 0.0 0.0 0.02083943214280248 1.0608670134783686e-06 1100991.4219207398 56.047855509429674 13310 504 394005 OST_20190723 9588594.181648877 926.5175836604647 0.014797371167207413 1.4307813766925597e-06 363323.2272728225 35.13030128309589 18118 757 581011 FIL_20211002 7870357104.5169935 163413.25970274152 71.7633496119577 0.001490049566776151 1364389920.9974623 28329.343901713055 108656 None 55587 NAV_20190401 14375091.495550778 3503.1471500304865 0.22222408962137358 5.414021445180843e-05 376864.76933763607 91.81515589077034 48517 11378 988851 AVA_20210731 117012639.21550077 2804.614108646632 2.2626049694097428 5.4166327041219575e-05 41740980.81569748 999.2710386710451 110698 10529 55156 FARM_20211011 104279172.06454755 1905.8607701572805 170.71496547658958 0.0031201394296242685 6315700.655594864 115.43139516920485 None None 84782 OAX_20210108 7341615.852681703 187.7680687406115 0.13301862198307596 3.370767366817125e-06 1167653.6476516891 29.589006054731648 12816 None 1823390 WAVES_20210111 647677773.8388503 16800.96365261914 6.482119061310616 0.00016869371416609983 203685707.3956831 5300.812616696967 151361 57237 144968 ONG_20200506 0.0 0.0 0.09256433973881495 1.028704265924292e-05 10301840.875995174 1144.8844863920763 84151 16479 182484 QUICK_20211221 83417690.05030097 1768.1226479411048 230.5478353903286 0.004891781092608063 4532910.1716283 96.17962465151942 None 4248 4934 WTC_20200502 8412563.60709219 949.3790676836528 0.2876083896472939 3.254993167177939e-05 11196200.703812174 1267.124259968692 54555 19645 1205901 MTH_20191216 3818543.899221024 536.595822662222 0.010993311646520489 1.545381208677215e-06 122748.6222540715 17.255347644265147 19290 1961 1507840 MATIC_20201014 67718580.52705324 5927.557508086915 0.0176642332142439 1.5465092967344347e-06 6440785.520576427 563.8928429574825 55342 2382 52093 AE_20200901 71107951.6548327 6083.776060683252 0.19438284918018586 1.665406099449027e-05 14231770.472282482 1219.3296605364196 25685 6353 378824 BEL_20210909 91883286.32735232 1983.2984642882586 1.906159620551805 4.117248780870705e-05 17834101.203348655 385.2113466560364 None None 418669 STPT_20200410 9573767.858721474 1313.5500509403687 0.013755758470372711 1.8865802302943799e-06 1846725.2330542107 253.27540629400545 None None 1339283 XEM_20190816 490135228.4916871 47588.11789116048 0.05446422821764831 5.288030654822592e-06 60050972.040661335 5830.457740701332 216957 18406 173706 KMD_20210218 159008313.56080735 3047.472003413785 1.2736744076014044 2.44277333473883e-05 11427621.926380135 219.1697497777955 98032 8629 263220 TOMO_20201228 52932043.18282382 1996.9546935107912 0.6879590032575211 2.6159818244284064e-05 7985982.511289927 303.66904133555545 35004 1697 137928 SUPER_20210825 265418382.41258892 5512.467769078345 0.8948580711905372 1.8596807724443028e-05 28414813.65929849 590.5124434367837 None None None TRX_20200410 889856771.3525898 122087.14795395832 0.01343539335710789 1.8426233542960725e-06 1069726810.3057635 146709.779981488 504085 72465 50971 SYS_20210429 202459273.68617362 3697.505817344095 0.3312803579555967 6.050160254014112e-06 3937311.2607318196 71.90696195925614 64304 5094 411439 STORJ_20190507 33345933.64705939 5824.414179815146 0.24451115266855797 4.27434510089111e-05 3528381.9271602286 616.803030856981 83982 7690 186547 HIGH_20220112 0.0 0.0 8.075258925926672 0.00018873675835078175 5614084.572232079 131.21364070052104 None None 74480 SNM_20190302 8332120.140286856 2174.0715552935876 0.02078359373011658 5.440718435819037e-06 213315.0454321662 55.84150245578593 31352 10090 18629318 BAND_20210523 282522057.3241397 7516.800794166317 8.034739461345236 0.00021378680400958888 91100626.57123771 2423.987970193013 94179 5228 165860 FIRO_20220105 66964641.23999167 1445.8835839892276 5.195473767033969 0.0001130972121189999 2690921.4100245833 58.57708519984504 78275 1692 200302 FORTH_20210702 120586593.84273222 3586.565275211783 14.139042710919966 0.00042036244181355826 22214468.28361174 660.4498141926389 30841 None 63782 GALA_20211007 750151977.9405525 13514.009268382306 0.09939877811651057 1.7917826167550293e-06 164585938.91028774 2966.8596525008406 76273 None 9332 SUSD_20210509 185497035.07863814 3162.458017060656 1.0210734571265987 1.7382193452740322e-05 14212708.250739949 241.94933535628067 122177 6345 31416 DNT_20190530 12079507.086282091 1396.8792374265527 0.020711640920681382 2.3951681236882397e-06 1179051.6050068093 136.34973835780758 60769 6393 1189433 VIB_20200319 1482106.1782520823 275.24923140622036 0.008122393094556379 1.5075642909681316e-06 479929.7113830398 89.07779845580463 31463 1105 None BNT_20190920 29669795.44662086 2894.616099391766 0.42446670663512015 4.139005164074391e-05 8762810.450393926 854.4679038199176 775 5108 171453 TNB_20190821 8356859.728448722 776.6173139903414 0.0030279712399341693 2.814468714232415e-07 225308.0323527521 20.942154263521736 15608 1465 1174424 AST_20190826 5075626.552747661 502.767507502701 0.029479506192555446 2.91858959859719e-06 1629213.0856048982 161.29864369117846 32063 3583 246777 ICX_20190905 100101346.04856041 9477.568509180475 0.2034749658292638 1.9261330008147627e-05 20918481.58822464 1980.1835351000566 113726 26193 190786 CND_20210805 23070290.367129453 578.6489786813157 0.01152929963940473 2.8989124788729103e-07 88336.81949273434 2.221129785682741 36148 6258 167421 CVC_20200320 12284073.391112696 1985.1755535911202 0.018316278136853596 2.9634046072784796e-06 9366353.322458986 1515.3894465778778 86563 8061 104560 LRC_20190904 33260595.598437168 3129.8716555945734 0.03456629190237771 3.2527396253043557e-06 3378741.393396121 317.9446046742327 34416 2439 519433 ENG_20200905 50883597.77854362 4852.873051173765 0.615146064131747 5.866774142333467e-05 2528482.8673218284 241.14659542322698 988 3593 461818 IOST_20200523 47544891.69260882 5193.902759338859 0.003957733778990806 4.3234131116643293e-07 65157675.57531077 7117.799342726423 193292 52195 468295 NEAR_20210725 885505744.7515631 25917.68967780971 2.1268779837848144 6.225102776937909e-05 54392876.51453486 1592.010680526794 94252 None None BQX_20200711 13205466.763305804 1422.1885022024253 0.059397487235963865 6.3977055538606624e-06 2341376.0982774356 252.18970641162815 None 36 385504 PIVX_20201229 21902137.329437185 807.7045660486592 0.33669311000514696 1.240452851996195e-05 325447.503865591 11.990215194452412 64861 8698 347708 KAVA_20200914 79786684.93976262 7729.548832695289 2.7079462455105743 0.00026225888693884184 19564154.480124004 1894.7471303624297 None None 95209 CFX_20210711 205083492.11429155 6081.767431150218 0.24036985603316477 7.128187387398674e-06 1716251.285532728 50.89556972340663 37087 None 151953 GTO_20201228 14496853.6698754 546.0274317830902 0.0216752967085852 8.242087386059927e-07 46896913.98263429 1783.2672298705395 16501 None 1147835 STX_20200901 204771466.79402 17524.047369199474 0.2504117844550583 2.1479238533230862e-05 4097008.9457575153 351.42368642998093 43111 None 104221 GO_20191030 6961858.110191165 739.786253699704 0.008348110197652444 8.87093225808938e-07 1345520.7313616634 142.97874581388135 10272 687 791048 BAT_20210513 1839147507.9693968 35657.464591086486 1.227322138258705 2.3886177406387786e-05 385994815.71324503 7512.241781243805 198342 72043 21549 ALGO_20200511 142158969.16867733 16240.43114224855 0.19253307882602777 2.199115187045619e-05 67819812.92229083 7746.387347535648 17425 864 285708 NAV_20210523 21495973.713899676 571.8669617238633 0.2963783034875601 7.886394362851776e-06 394427.75577238714 10.495413439756707 51250 14056 505111 XMR_20210511 7917232099.89801 141694.40928161677 442.13955941015854 0.007912955298034492 680643723.5614518 12181.455478932132 406609 217707 36296 YFI_20211125 1113032177.7772543 19456.073822965882 31159.30253775918 0.5448043837187446 146615756.64336503 2563.501119601449 153966 7594 28062 SNM_20210217 12273908.527659662 249.4331078278144 0.029033661012877233 5.900001400472879e-07 8289201.834661762 168.44690172422779 29038 9498 None AST_20190601 9033723.86226782 1053.0706219228052 0.05244107719003156 6.113204401224107e-06 1528543.067501576 178.18658022317422 31746 3597 396492 AION_20201015 38437696.965837345 3367.4387861255213 0.08190144531193858 7.166718345932243e-06 1325073.1274889563 115.94942990697928 68284 72546 581624 MTH_20200301 3170026.4084359487 369.6501572007368 0.009168489848324453 1.0719733649829714e-06 217813.2610473283 25.46657282120341 19251 1936 1066623 OXT_20201130 0.0 0.0 0.311194925671399 1.7127097883840096e-05 15036621.487649564 827.5639055026421 52366 1748 111810 TVK_20220112 68240769.00756136 1591.8527030946789 0.15690282605798553 3.6671679555912804e-06 4598182.439621697 107.46974876227874 None None 33768 NULS_20191108 30679887.71123032 3327.83534125327 0.40991222699189883 4.446301787786986e-05 7084945.16365577 768.5012125329453 21208 5272 483582 BTG_20210128 170924671.07888708 5650.239263358621 9.586803061929562 0.0003164060968691133 18179314.084005516 599.996242326079 83094 None 278818 VIB_20190930 3400605.843754509 421.83529555532715 0.018604972829482227 2.310634393033272e-06 508495.9695151406 63.15237795019025 32203 1118 4575381 TNT_20190411 9403314.331922613 1771.760446035143 0.021960308652246678 4.1375158194231155e-06 794720.0366770857 149.73226359582887 17274 2506 1084384 DOGE_20200411 242951200.60039186 35432.91636201458 0.0019553233303981183 2.8509508926668203e-07 134671135.2782357 19635.66778798507 139186 152399 104219 REP_20201106 69032277.4027551 4439.03712421676 13.08491184017825 0.0008423621731412467 6615800.249445505 425.90274533446154 136379 10436 127573 NEBL_20200610 9478700.960293116 969.7015180580589 0.5750421415090077 5.8886425080361195e-05 273688.97837954207 28.02675553199442 39043 5952 1283698 SNM_20190807 5475281.543877204 479.4745413256956 0.012839372170014142 1.1212167939059013e-06 998291.436004087 87.1772473325686 31121 9942 None AION_20201124 36285350.60365662 1981.2947867572143 0.0764751750948963 4.16702683890582e-06 2094243.8388211338 114.11245901368605 67941 72525 690997 STEEM_20210610 195092641.03435406 5197.491483129021 0.5064340986698724 1.3521621119440931e-05 2583173.920348309 68.9698800462083 13896 3942 201995 PHA_20210428 171129203.52216294 3106.3610861521565 0.9665079790893093 1.753920440977716e-05 65091699.89442589 1181.2180080540363 42013 None 139188 BNT_20200425 14776854.20989662 1970.6904352964964 0.21119434825102765 2.8177039311757793e-05 8762153.476946693 1169.025331502359 737 5013 138596 XVS_20210809 321112713.2133216 7299.744290133382 30.330052971123205 0.0006895019022829786 59339931.08044708 1348.9918860433138 None None 14321 XLM_20190522 2591626891.0098395 325665.8982281486 0.1344690498040717 1.6899337747250732e-05 363769395.3318082 45716.55620964502 271314 101405 74186 WTC_20190105 28493907.718381457 7478.380426115963 1.1324654863231087 0.00029722877087341005 1696172.5096342305 445.18025168672375 54704 20493 542566 TNB_20210219 11418659.290888602 220.93017458566288 0.003328216146746901 6.438741696075985e-08 988411.1135785509 19.12172638211493 15673 1434 3054806 ETH_20190321 14646332154.545843 3623195.016459288 139.0759731796369 0.03440512239082652 4301026829.020336 1064003.7317412032 440598 433035 32450 NAS_20190904 30676868.783413943 2890.6998773453147 0.674216896338768 6.353186543616076e-05 9628938.803808637 907.3407203209857 24170 5096 765651 WTC_20190903 33657811.11532317 3260.626479371406 1.1539114651825781 0.00011178452303176385 76052834.2367386 7367.575465612059 55937 19939 440674 DOCK_20200323 2031270.5199381658 348.2451947832117 0.003628039320575317 6.219865876892434e-07 267570.6958713502 45.87199018126035 43012 15018 378260 QTUM_20200511 139762390.15386623 15991.99149481477 1.4504041252599702 0.00016566533702475788 446746880.9538913 51027.48351927099 None 15092 116329 CTXC_20210523 2604854.2680805433 66.09556522772208 0.1882376296713152 5.012175479686684e-06 5270434.25070071 140.33507202990694 None 20544 377361 BNT_20190819 27888592.95058739 2704.83993516759 0.3996327492130398 3.8742028355342565e-05 3923337.193282276 380.34430633882704 None 5126 148794 SNT_20190312 75723084.80854191 19584.35704622673 0.0216109747300151 5.596246906573556e-06 16194689.70237521 4193.678595346382 110002 5753 308014 RVN_20190812 160201107.67192227 13880.585027829764 0.03836454906280732 3.3220952426315336e-06 19328968.082782354 1673.7502324780164 27324 6879 260058 WAVES_20200316 86718694.49899869 16051.34203433247 0.8618862972813051 0.0001603925710955366 46781170.432850935 8705.733260003892 141152 56865 60056 MDA_20191020 15259758.388159484 1920.2924370964167 0.7767450198512872 9.771395965639671e-05 1603245.9455290586 201.68717614784515 None 368 2061213 AMB_20190806 4233328.280432896 358.41633870084064 0.029277956528288823 2.4788292540446644e-06 230255.7797222221 19.494692607280374 19360 5645 834562 POA_20210401 34665296.06179888 589.352336699308 0.12105299057581198 2.0599439478821457e-06 1485465.8707372788 25.277991197535634 19184 None 365851 ELF_20190729 56621600.21567743 5931.478982003178 0.12232185357098721 1.2827068510059655e-05 15689724.690516228 1645.2757020431566 86323 33454 1184009 XRP_20190411 14822938546.774567 2792893.05832679 0.3546560890651317 6.682593805382458e-05 1361509045.762026 256541.82166066227 916777 199716 36994 REN_20200329 36608372.193823345 5870.033998998189 0.04228563418396953 6.763464459813725e-06 1660160.9247919982 265.53792154449616 11421 873 365958 SNGLS_20200313 1962331.7967040862 408.3773606725711 0.0034159433280995465 7.308648721545957e-07 109326.76112228485 23.391222165025987 7904 2133 1276289 HC_20200629 48831173.93521838 5355.829788231883 1.0941719528275595 0.0001199723441258613 23666635.805591177 2594.9685219333096 12691 845 1025848 WTC_20210104 8425444.982946219 252.74151859575386 0.28660393770375175 8.706680885106193e-06 1599759.6146156434 48.59876165321975 54809 19161 816491 NXS_20200305 11893561.121999595 1358.5994653093157 0.19928407629889341 2.275237035367831e-05 436250.07265799947 49.806905821451174 23504 3536 662796 ADA_20210809 45815242223.606125 1041438.5397255595 1.4257873881828491 3.2418911343685955e-05 2265330765.160094 51508.07045182753 538068 554514 8000 DCR_20200531 172011617.72872606 17772.274260052633 14.853606754648048 0.0015327269538581206 16960952.498960584 1750.181588059695 40496 9791 293289 OAX_20210110 7674973.986007818 189.66632309855294 0.1369838170757261 3.398056733736384e-06 742282.8118936854 18.41326341415753 None None 1823390 CELR_20200322 5644496.440563422 916.486747805635 0.0015064034181489602 2.44821319617041e-07 3670311.0617441023 596.5005035937585 19254 None 1309255 DOCK_20211207 70448412.58601576 1560.1781752227776 0.07600317707859253 1.5059259810099475e-06 17263392.725353487 342.0566432190702 56868 15266 178550 ENG_20191012 24184075.0365588 2926.2123647671956 0.30867686734853655 3.73325740131347e-05 1354320.0940692332 163.79670943150415 61279 3483 359356 OMG_20210722 483068074.54110336 15011.394311511403 3.462674083353838 0.00010722003558467996 161364732.60021728 4996.581241844725 326198 5007 225112 STMX_20210527 257719989.01219326 6577.933890596706 0.02991117446370256 7.630247550660896e-07 59425897.82954732 1515.9361659635736 65518 4377 53883 HOT_20210110 180627239.8315289 4464.37819472132 0.0010065085813453568 2.498573898688913e-08 43281169.64918195 1074.4190640245222 None 7453 750555 MANA_20200412 35549633.7997759 5166.338756673884 0.026791081307566 3.892630498558031e-06 22156033.188471455 3219.177663133426 48042 6823 46518 QNT_20211125 3121084144.5358987 54590.633871806574 233.08124633110333 0.004074921989465705 52276148.726463705 913.9355109996256 63755 10335 82634 KNC_20200224 105016577.38983545 10555.481273055906 0.5886080438340145 5.9152526327239156e-05 60592397.54542401 6089.270149435751 102007 6915 153525 SC_20190614 134373345.01770526 16342.081402099378 0.0032612595803700305 3.9658554213164714e-07 4373400.878362104 531.827508838614 109584 30887 231411 QTUM_20210826 1346833571.082144 27477.460477358767 12.965790997559589 0.0002645992902404391 349655504.9809706 7135.592303164607 None 16857 227670 KNC_20190520 42694468.03248846 5216.807984729727 0.2567719141196681 3.138032917167028e-05 5505140.031746788 672.7881704844181 96705 6678 226732 DLT_20210729 5520678.6814145995 137.8289921625622 0.06648830874311332 1.662306029105269e-06 175141.3065463665 4.378791630002989 15252 2598 None REP_20210115 111521083.14156982 2858.9245229353464 19.417743047580682 0.0004949808753299749 14614315.67082502 372.5359196157877 136492 10451 135410 GO_20211120 41918038.25749302 721.1851063995973 0.037936896518032476 6.522338494594233e-07 1485309.3846057516 25.536328653007587 24521 1156 169368 STEEM_20210704 145265242.58092722 4192.568132765699 0.3773172471754041 1.0882312508548356e-05 3007263.704653808 86.73333560722239 14054 3941 206155 IDEX_20201229 19576121.24392839 721.9726021205764 0.03464054126564616 1.2759007591785357e-06 310939.0694772149 11.452690411558025 44319 1948 96261 TNB_20190623 14750207.64217312 1373.9488137751152 0.005354634413816567 4.991962410170669e-07 1565465.9585704317 145.9436184741388 15709 1491 506098 MIR_20210718 233651415.32611424 7391.821513409446 2.999768914034996 9.509327122585524e-05 13924289.987503083 441.4027621307779 50695 None 15750 ANKR_20200113 5318553.112932707 652.0094180274348 0.0013322707382069203 1.6342182813846737e-07 958515.165022215 117.57542673135434 None None 5257 STX_20200701 95416409.14650662 10430.067145813895 0.13295258774203264 1.4541125723002362e-05 339104.48153670464 37.08811526727317 41082 None 98970 RCN_20190314 11169299.944735639 2888.8131900932353 0.02230799161665931 5.770607507977664e-06 1261594.4028613414 326.3478962282523 18356 1111 2128118 BADGER_20210814 287383174.03380275 6029.504353606196 30.598261138603583 0.0006414018652124345 31820456.96627428 667.0215786978464 36838 None None CMT_20190531 31270790.869667057 3765.29521737338 0.03904656979171053 4.705870001731654e-06 8750684.008492535 1054.627374180772 292077 1642 800108 DUSK_20201231 13174480.223453738 456.09870891888943 0.04395400693297774 1.5241104194050312e-06 526469.7352925465 18.25540070292788 18468 13345 1107648 MANA_20190205 44234165.15686546 12768.59939588185 0.03498283045830206 1.0098116382937647e-05 915099.9529370082 264.15203417554415 42299 5986 103515 TFUEL_20200806 0.0 0.0 0.008926467835909623 7.617186297866126e-07 12280196.883703195 1047.901019273771 71849 4302 60901 TRX_20190704 2181963357.828323 181975.77088378897 0.03297765690635721 2.7478424320004523e-06 1026689074.4171134 85548.21863680576 439196 71189 89082 CTSI_20210314 81632403.4901939 1330.6326102449802 0.2728132286289677 4.4471459774199585e-06 26862944.42599459 437.8945839469932 None 705 224647 PROM_20210930 253560482.52263355 6103.085975477702 15.419674108361876 0.0003709632480168899 8164790.399563848 196.42679506156546 None None 648121 PERP_20210527 220555951.68415603 5629.375024097874 10.24138365525699 0.0002614202097926543 26929589.60080329 687.4011559422847 19607 None 260498 AXS_20210111 32061775.245534714 831.9340230204474 0.578764848242735 1.5054901218457718e-05 8303391.698246305 215.98882892561565 None None 19930 ENG_20190616 46367811.889132716 5258.65995017245 0.5984112210589846 6.780665224807037e-05 2454717.2026427123 278.1467824623965 61843 3460 334360 RENBTC_20210104 426038023.094862 12780.036799774523 32985.98378599551 1.002074279952192 65282911.69750701 1983.21587607873 None 2138 104896 DENT_20190622 168644873.89595193 16659.963816633386 0.0023283647206326337 2.3003537750833563e-07 6261001.112357881 618.5679338372845 45348 9627 252434 RAMP_20210805 65249722.75785401 1640.5395051210246 0.21000481094588447 5.2811578148475225e-06 6549011.717134522 164.6932003780877 30929 None 118954 GTO_20211007 27398822.42955358 493.30342198769506 0.041405571988341563 7.463075950418357e-07 19107882.134033788 344.4067278145284 13264 None 1255759 ALCX_20211225 183244161.2645239 3603.9009219974696 201.41432355446943 0.003962292358704904 4510944.547023833 88.74086407454745 55682 None 81040 DOT_20210806 19473342237.69863 475290.7175933298 19.140041901139753 0.0004677898563218825 1270447579.789482 31050.21890149653 519358 28120 22959 STX_20210710 1241753365.3397353 36548.36357918271 1.1995808700134873 3.529705637779043e-05 140735542.5753417 4141.071689968605 68274 None 54271 DENT_20190224 18478524.984510187 4492.378567174105 0.0009883994185582233 2.400997987601529e-07 1024856.9159366856 248.95597331824422 42419 8819 243701 MKR_20210506 4869799479.8532915 85065.43874623711 5415.446381156849 0.09446452498066832 542273540.0819851 9459.167124555168 141678 25801 30227 1INCH_20210304 591704052.0053976 11637.92876377771 4.090446106002033 8.072984388986617e-05 242013282.42536384 4776.421447236641 None None 8283 FOR_20220105 40220004.9291672 868.3665591061398 0.07123021680198996 1.5509293540501768e-06 13054580.996714722 284.2435946659205 39987 None 153248 IOTX_20201226 37640709.07241309 1524.1697926633367 0.006562163797246035 2.657623692142033e-07 1728234.454943982 69.992108928504 30752 2011 501442 COS_20200313 8698970.472681371 1856.7606579514443 0.004567879170358995 9.532156850634926e-07 19074568.644267276 3980.4419818107604 10358 None 161709 QLC_20200701 4959080.404502537 542.3783986233103 0.02066283501876057 2.2599099942637925e-06 1339189.0105662579 146.4681214576364 24591 5644 940522 SC_20210105 195239065.79047224 6240.4023768789575 0.004305707356304351 1.376227975258942e-07 40035756.623643644 1279.6579915131188 107591 30106 159206 VITE_20200626 8688313.05014 938.1637812596283 0.017320529502579517 1.870565154717171e-06 4213248.505071245 455.01818178114905 None None 610185 WTC_20200713 13989481.369572667 1507.81219977077 0.48210486093682126 5.1930078087019096e-05 19676714.78848869 2119.483577652886 54471 19524 728935 ANKR_20210523 788655167.9407029 20983.01226052102 0.11293304673702356 3.0071515167451566e-06 103931937.14612594 2767.472333895453 None None 5363 RLC_20210421 199211402.7446645 3526.145087146816 2.75081405651014 4.8787200258949884e-05 58885745.76597196 1044.371088726656 36805 4263 302860 AKRO_20211011 77611581.94500177 1418.3947452198852 0.028666379060481185 5.237429924790484e-07 8028934.15217206 146.69093680802115 46368 None 204556 SYS_20201130 58650426.04337776 3233.2554772461917 0.09746578174417296 5.3671479814433245e-06 2864714.510589007 157.75122743360555 61024 4485 330848 BLZ_20210819 68487460.45308332 1520.238993534583 0.22505450546868247 4.997117176142939e-06 11794696.904644316 261.88981361139565 None None 427570 TCT_20210603 16747823.693203652 444.4882909942171 0.02891635842325889 7.679545693629953e-07 1537891.778443949 40.84300661772994 None None 282864 WRX_20210427 1183658096.1557355 21971.337444261448 2.722722824126898 5.050860931766035e-05 50233997.49545511 931.8794155170373 120014 None 2746 MITH_20211202 54217199.47503887 948.383731384312 0.08780419722814467 1.5359031357615966e-06 31292182.81410258 547.374308133867 36856 2927 265484 BTS_20220115 85835906.87739924 1991.7872831550035 0.03185245343831851 7.387512673005275e-07 4151588.9846598813 96.28745332498644 8199 7520 200218 MDA_20210814 16841495.79715537 353.0657747040953 0.8579954094778762 1.798704922581938e-05 734013.6029869145 15.387889799295145 None 390 1488938 CKB_20210427 549093496.2497607 10192.40144914743 0.022252001772243245 4.1279180315041035e-07 36009807.88013124 668.0097223648891 41526 3331 121056 TORN_20210711 31652442.17895223 938.6694890062253 34.56298381018925 0.0010249831014055022 2802520.33944763 83.11018530848607 21418 None 103371 ADA_20211230 42669320699.25304 920006.0676341649 1.3377414145718223 2.8724415762929487e-05 1306643075.4429648 28056.66217995486 772229 677299 8356 FIS_20211221 31444767.831764583 666.503785097227 1.1622420532898963 2.4658894164078565e-05 7486175.31067495 158.83163421692748 None None 264927 TOMO_20200425 23834483.993623566 3178.4570955744766 0.3384022236084415 4.514880647500902e-05 13057418.550658904 1742.0892124190696 22564 1531 222907 ETH_20191022 18867384241.158245 2297567.9113131287 174.35449608806442 0.02121553829523127 6738537534.893596 819948.4632342381 447801 446821 24016 AXS_20210708 762666778.6209313 22446.03464575739 13.801423101822301 0.0004061894785353349 1688755961.0013833 49701.751631831256 150404 None 5695 SNM_20200106 4656437.132223348 634.027124786922 0.010662959795825528 1.4519298641521986e-06 488581.4461231346 66.5280565884312 30510 9761 None RDN_20200718 17147951.651594754 1872.9992161654695 0.25598176835936787 2.7965450200742138e-05 1716813.833992674 187.55816902969795 25619 4332 1173290 AXS_20210324 212898524.77718183 3905.3592929121614 3.8568388743346937 7.075217575898541e-05 28236230.564217184 517.9824236228553 50599 None 22983 INJ_20201030 10827149.458955301 804.2692562892393 0.803841077330074 5.9736250664979345e-05 8342046.507133264 619.9267433112358 None 1682 None SC_20210310 570411495.1176193 10417.831582788709 0.012073415962127389 2.2050539864464053e-07 32226893.883452177 588.5827263088023 115401 34639 86360 AUDIO_20210722 219819459.51984778 6830.731479792188 0.9324803127335436 2.887260974615685e-05 16739203.465546664 518.2999389075032 53654 5892 31979 ETH_20190213 12845310573.797472 3533789.6962001403 122.54208894762355 0.0337033895405466 2573128709.502421 707701.0028072145 439177 428572 27812 WPR_20200520 3842896.9007725916 394.1000286017935 0.0063268211114699355 6.480839822820255e-07 98132.08021821536 10.052098552643328 33094 None 1707857 TNB_20190810 8639352.811912792 728.5928851897551 0.003127690052503833 2.6369834486500205e-07 285352.73537355487 24.058344259677927 15662 1472 836143 ENJ_20200313 39855544.65520301 8294.266118398933 0.04371522289904278 9.12240332752485e-06 6356245.178025896 1326.4082467678982 53785 15237 23333 ARDR_20190914 56782141.41932155 5483.579540017886 0.05682976063301209 5.488178234948689e-06 1542544.5234034106 148.96700576395148 66930 6531 930148 REN_20200913 289683440.1431674 27780.773891596185 0.3296180318101055 3.15667313515039e-05 36636965.1440198 3508.6346152990673 None 956 91896 OAX_20210120 7088812.692021673 195.76852319181933 0.12587413956811472 3.4790326472433695e-06 270054.0421842124 7.464017887252399 None None 1543553 BAT_20191113 328264203.1195439 37325.1153063303 0.2417197036329883 2.7466666629962844e-05 33529362.177941293 3809.949290088053 107867 31375 23989 OCEAN_20211021 381413410.5613892 5754.2632772574725 0.8793003960260658 1.3270325369579288e-05 33870890.95819875 511.17655081724126 125249 3652 161285 MATIC_20210204 215296257.97866458 5744.89716349288 0.043991962284252034 1.172827803730678e-06 43421250.34278873 1157.6125962674528 80923 2998 42218 BTS_20200612 57224080.703165404 6167.408572413137 0.021072120390243945 2.2683565084510797e-06 17083099.231815927 1838.9492186532011 13118 6985 151831 XVG_20210207 282997747.4912405 7217.025426112719 0.016950681783990305 4.312261947773068e-07 30187746.36980908 767.9777817698351 290623 51848 157669 XEM_20190213 351684981.91187334 96787.3478263501 0.03909964124168707 1.076027790833593e-05 9643470.635750609 2653.8970882147205 214746 18470 174519 BEAM_20210217 54216482.872063525 1102.5721883000847 0.6636232304806612 1.3486720587432776e-05 15891692.9109007 322.96461622563663 16508 1769 251636 MANA_20210117 144936525.09146363 3996.1504821082403 0.10899586338811287 3.0118108756518984e-06 39957734.837634705 1104.1257586251465 56614 7935 67623 WAN_20190813 25955540.56191123 2280.6026270822535 0.2444565833758955 2.148184911340098e-05 2012863.3719313287 176.88223669243993 107975 16884 529577 NULS_20200621 38909564.78564105 4159.104143305093 0.4049538656283009 4.3281246622606974e-05 24892826.341923308 2660.531599980891 25601 5174 775098 QKC_20200217 16043368.214142635 1609.3856506830873 0.004312078300113876 4.3344282236820693e-07 3152430.875987799 316.8770233538537 50783 9204 379379 SUN_20201111 0.0 0.0 8.166578962446262e-05 5.3e-09 0.0 0.0 None None 8079244 KNC_20200903 327233048.1774548 28683.74884257903 1.6618319992619786 0.0001456355271252275 98255455.44017671 8610.668859616553 122109 9016 55300 STEEM_20191216 43013821.96591499 6044.430550272449 0.13210971630909932 1.8580309940042905e-05 1023120.2630969895 143.894727241731 10364 3801 204825 MFT_20190520 23005905.724861544 2811.0759593038956 0.0034698207525888087 4.240499501521973e-07 2728274.4997908617 333.42490812375615 18086 1997 781601 OAX_20190730 5193099.192588675 545.9554924962185 0.11116812241038145 1.1682921381773157e-05 2288112.4043754633 240.46315394530885 12320 None None VIA_20190305 7895489.902598384 2126.5104147315037 0.3413462373630379 9.19355654603558e-05 200330.34159332715 53.955430637018864 40537 2227 3438029 LOOM_20210314 144112629.47807485 2346.4435229711057 0.17222715527911525 2.807188039894362e-06 103479500.40027292 1686.647006548538 None None 236528 HOT_20201018 82744486.69880892 7282.003910940178 0.00046585090948303946 4.098546917869081e-08 3104875.89343136 273.16635568041994 None 7302 229993 ADX_20210217 73306008.9557408 1489.7410710759566 0.6430885902519906 1.3075518081492218e-05 4222365.761010286 85.85072211144357 53318 3768 10332 NAS_20210418 69113249.60852216 1146.486584007606 1.5102885626285845 2.5125336496877926e-05 46616251.00419504 775.5133831278054 24764 4890 465428 ZEC_20211216 1888086444.5239882 38701.08725874891 159.37811475990955 0.0032613106059687373 313930806.3914907 6423.879903255217 83623 21673 107284 OST_20200310 6619663.225831901 836.1075460259985 0.00947797742239338 1.1975608577846712e-06 192108.57784740382 24.273291971678383 17849 753 839878 CELR_20200109 12201772.94764358 1516.2453759011883 0.003375895502462248 4.20709816618178e-07 4680888.064846211 583.3402005291157 18840 None 822333 GLM_20210603 321621689.5082994 8546.29095826243 0.3218658607733012 8.547631691132517e-06 2658875.0976354214 70.61042445666176 158119 20992 141932 MTH_20190401 7297328.599819292 1778.3444729535838 0.022748842129021403 5.543847602976336e-06 1429090.3850548966 348.2664858584576 19272 2013 1241512 WTC_20200320 6101997.856079688 985.9583268461344 0.21017839725192058 3.4007285476530214e-05 9871587.930330442 1597.2426911745792 54844 19422 966319 QKC_20190523 41560607.65684216 5419.732611182494 0.026264998237646057 3.4272086255433363e-06 28079761.942109864 3664.0094722438216 51431 9184 159226 HOT_20201129 104471406.09009008 5901.761182078194 0.0005895342443169162 3.328012755946313e-08 5876935.217282304 331.76215898446685 None 7327 291383 OST_20190225 11050406.23346185 2933.7517074832977 0.021034458969469857 5.615008005263333e-06 941609.3715934706 251.35631807798134 17280 740 887864 SC_20200531 102710650.97948499 10598.596408600073 0.0024049781886511692 2.483924607866263e-07 4569026.9157396415 471.90109430365095 106443 30044 167109 POE_20190819 5706026.324373558 553.6924957624784 0.0022689979796716017 2.199659168067597e-07 97562.87064170907 9.45814252779056 None 10759 737221 XEM_20190626 830201922.5491046 70333.14038384384 0.09209536504282713 7.789683323408714e-06 57806058.739973076 4889.397979467848 216642 18472 184681 REQ_20201129 19025782.420595746 1072.9973436139987 0.02464959856623573 1.391508283839222e-06 545460.5962766838 30.792101388075338 39451 27444 345148 SKY_20190616 24213535.465141933 2746.1599163397436 1.6149588545920988 0.00018308682079855567 857519.2026967112 97.21638675129454 16093 3774 427664 SRM_20210111 81665906.49953455 2124.8733050699766 1.6241800243062006 4.2248367192934546e-05 138576359.75194347 3604.6650269333404 None None 89781 ETC_20211111 7315054473.788934 112849.79542877906 56.274541046120035 0.0008668330354517174 2983524775.6598234 45957.15557255391 563245 61813 196117 WAN_20210203 71225933.99775231 2000.0152445671167 0.4322250690001889 1.2157941736050137e-05 4004543.7655157396 112.64272545140574 104166 15796 443553 IOST_20190329 117312213.06543429 29138.19889379666 0.008687921843594846 2.1579046411632698e-06 10158538.212085053 2523.176100099714 195039 48694 93184 VIBE_20190922 3572255.1536294753 357.44151634087683 0.019089523178356195 1.9101065902762476e-06 271397.30759978405 27.156141145387 20245 None 1366400 CND_20200927 19472614.26680336 1813.5089881496513 0.010096621858364904 9.399998564729189e-07 55048.465063349715 5.1250358768 34253 5924 285408 RLC_20200621 43545003.010087885 4654.593374077634 0.6203051248556836 6.62978708660821e-05 1805654.5123592631 192.98736201317715 30527 3588 529294 QSP_20200224 9669184.263146501 971.8741169453534 0.013533553172702575 1.360852125124279e-06 52891.46278139628 5.31844509778664 55535 8339 377226 IDEX_20201129 20920846.14291687 1181.8529326198966 0.038925377373482666 2.1973982627434143e-06 430312.54142163624 24.29181410070956 40097 1948 42702 COMP_20201031 12038.630572037586 0.8878734340753365 1.3123911447194806e-07 9.660813609492615e-12 18.509528234010283 0.0013625290218385005 1928 None 1772569 GVT_20200113 4224779.366316503 518.2455574347972 0.9522466455087455 0.00011681026411738179 658826.4902319065 80.81697813742507 20844 5632 224170 RLC_20210902 346064575.19069374 7115.475264223607 4.853480967982061 9.975248850356382e-05 42628418.50685595 876.1321729872233 46940 7868 456722 GRT_20210725 1592449417.6856759 46609.70332814296 0.549512858226331 1.6083581408579167e-05 131921269.95436417 3861.177137296869 124385 16198 33618 ARDR_20201111 56608373.49391313 3700.962984958409 0.056435826210517445 3.6943634480581693e-06 5103652.971595041 334.0918394549947 64151 6301 1474087 BAT_20190605 419122391.18169385 54731.08136733687 0.3303348690595577 4.308746634554522e-05 63323266.32187467 8259.615808350673 101997 27414 48578 ICX_20210206 484672989.9998258 12787.866144701378 0.8312064748074448 2.1867264038189278e-05 96533640.79112281 2539.593561559074 119285 28449 278107 ZRX_20210310 1117003910.592468 20436.359051262134 1.4752811830588533 2.6944111459737095e-05 200485821.19067505 3661.6154088389612 189501 18364 57821 XLM_20201106 1678616870.8960912 108028.2296669268 0.08041972586527028 5.16152051237613e-06 167582609.72083583 10755.832207644526 291375 111942 45514 INJ_20210204 152934222.8683359 4077.233644704603 11.321516251278446 0.0003018321609318464 34332095.84420081 915.2953056799471 44483 2220 139911 WTC_20210115 9438002.266573915 241.65374572845815 0.32372001135887507 8.252058516490413e-06 1913743.102059013 48.78388579510317 54726 19116 816491 CHZ_20200324 28792127.190252993 4469.2624988345615 0.00604075251287001 9.32236396440081e-07 963780.1513860996 148.7349354860066 19702 None 252561 NEAR_20210703 869170095.2976214 25714.916843255087 2.109535428015109 6.228230154414455e-05 52530946.97537291 1550.9330805589157 None None None ZEC_20210707 1311665517.6082392 38401.907505022995 116.79330938353502 0.0034196684275666425 809211669.1606805 23693.442808098 76550 20080 101519 LTO_20200511 7851498.899132784 896.7991669502503 0.03712626687306268 4.2378672885157825e-06 1132118.2372695706 129.22836709817244 14701 430 912556 GO_20210519 61577082.26547822 1444.6464106013611 0.05675404524771394 1.3266218310836104e-06 14686588.8436219 343.2979851754727 21423 1054 97348 ANKR_20210114 56409197.83456006 1514.9039685635207 0.008569195486086333 2.298470565904049e-07 7128494.619484625 191.20388942805968 31873 None 5158 BNT_20200316 10833529.014384095 2004.724123158306 0.15445832030671677 2.8743892551996836e-05 2101567.186972179 391.0907569962981 None 5027 126378 FET_20201015 35825767.99156749 3139.2846851348563 0.05207740269397888 4.562269736006677e-06 3796561.5530242543 332.5998797603569 25515 676 223809 CAKE_20210823 5000355307.845609 101358.38120630219 23.454513773571705 0.0004759327484020233 214957110.07722345 4361.852442359541 None None 739 DOGE_20210124 1098138943.8773112 34265.257570913906 0.00857471840188461 2.675571577502106e-07 264407165.9551725 8250.30356637783 193622 187700 60672 SCRT_20210120 98662619.84654002 2724.629823946305 1.410512508376004 3.913536909359054e-05 2432249.165308892 67.48395937412472 64470 None 296261 POLY_20210704 169675073.2967337 4897.07167791541 0.19409785693256196 5.597543142734716e-06 1478205.6654557008 42.62963083151414 47140 5654 172730 QSP_20210825 33934147.61052812 705.2144230718905 0.047469878535192904 9.886365159692782e-07 583877.6481468984 12.160190454001967 67258 8503 208905 AION_20191017 23361864.066727545 2917.721545965613 0.06601275516579572 8.24449792907619e-06 1751370.665478433 218.7330583054248 70824 72555 187992 ZEC_20200713 560400543.7548676 60401.008036624145 58.5694759759994 0.006309288936808406 346659705.5477485 37343.27836475659 71665 15875 226446 NEBL_20191012 7374365.055166214 892.0684256168225 0.4717516372870373 5.706725083564775e-05 88454.85736909845 10.700281957988004 40304 6100 485990 STMX_20210430 434493784.8445923 8107.595415539755 0.0517133723188008 9.649047609608771e-07 41425045.57922617 772.9378671343162 58037 4014 60335 REP_20190614 202781503.38155293 24661.675532932415 18.458586161182687 0.002243632598609971 13398231.73244876 1628.5488615519464 125595 9981 263200 GVT_20200224 6071321.932667567 610.2438924958617 1.367276438954309 0.0001375517666339062 946639.9430830942 95.23457936339923 20780 5616 172341 ZEC_20190205 283132036.68138486 81728.67148513647 48.61559101784521 0.014033338346039792 137692853.4825734 39746.31101457461 73091 15001 148346 SNGLS_20201101 4051775.452507926 293.63384171195 0.004415078623080803 3.20022998429156e-07 167529.3285124335 12.143212525162514 8960 2117 2790788 CND_20200417 7547310.980474868 1062.9242799929104 0.003905594214120797 5.509477356737978e-07 50924.438543644006 7.183722262963278 34653 5947 386882 AST_20190616 8591333.32829525 974.3796087953832 0.050009905235784316 5.671716543453599e-06 2234708.4842330213 253.44245345122707 31791 3591 344733 MANA_20190614 76940106.42528737 9357.223950349406 0.058000853926957176 7.0531951020319855e-06 16853571.272159055 2049.4789007458226 44736 6265 128669 AERGO_20201111 12564748.220228074 821.4627131688615 0.047400368770701556 3.102890514223096e-06 5919575.300085117 387.5031887561324 11163 None 393243 DODO_20211216 220874816.98233548 4527.411063842919 0.8449065089787 1.728908992891025e-05 20311984.670841258 415.6385657784938 None 1242 17050 SKY_20210809 27060258.407422967 615.113004760158 1.2884685646043137 2.929105716957126e-05 1566888.471726547 35.62044202279699 19655 4413 730332 STX_20201030 126467067.93435758 9388.721625415239 0.14256644628384782 1.0602376507513082e-05 391006.42216867383 29.07835197374607 43698 None 107798 RUNE_20210731 1725113618.0819438 41348.336596189925 6.305167084301662 0.00015094448520853055 180731974.05043975 4326.688637908891 103632 6248 66981 SNGLS_20190704 8157756.548168244 679.6730324810712 0.013813342845501071 1.150874822638651e-06 410102.93573716725 34.16820596643793 6 2180 None MITH_20211111 30508830.753360342 469.73160709163346 0.049314610127436216 7.591967213400842e-07 8030842.561698579 123.63454413782135 33679 2775 452942 TFUEL_20210813 1770246255.2716923 39821.15939774874 0.33400361437194775 7.51279986787471e-06 98052536.13520817 2205.5123023340607 186813 22533 19933 PSG_20210813 121608793.47289792 2735.279984235349 41.73927521020634 0.0009387553405789538 392570348.659628 8829.27433457333 9874352 None 33865 ALGO_20210620 2907599116.4748373 81561.617671021 0.9412345794803213 2.6436489087458584e-05 243743558.57175288 6846.0339927993355 None 33557 188992 NAV_20190513 11388725.139794515 1636.6551801417722 0.1750853668905966 2.5161233515702165e-05 190957.6441408316 27.442212682674338 48645 11300 1061172 LOOM_20210823 81054602.19314553 1642.8005202270394 0.0973810781339066 1.976158958553419e-06 6378585.794986453 129.44095201257744 34222 None 329311 CELR_20190522 42920095.010504715 5393.730727672728 0.018104848634358132 2.2751778722580313e-06 150839208.3357328 18955.476292859123 13825 None 371735 NAS_20200301 19108289.821060143 2230.1165857574465 0.4188860004534433 4.889690013168743e-05 3839429.4770100545 448.1796944676916 23751 4990 1191705 LEND_20190922 6049201.39252446 605.742091176587 0.0053546921782670134 5.361415383626272e-07 2951069.246311749 295.47745283171037 41584 5812 862107 JST_20210120 41324361.01185693 1141.2361249496669 0.02884097695264421 7.956926635107196e-07 84317878.95696455 2326.2428938868 31912 None 184317 WTC_20200927 11030671.649480328 1027.3002847780451 0.377946020330324 3.520704966581455e-05 1720123.6733478438 160.23579120100584 55478 19387 610006 ADA_20201228 4874263848.091413 183590.3038972588 0.1549701235272453 5.892778851023295e-06 1278813155.9527574 48627.199542006565 170440 93901 46501 ONT_20200208 552455133.1836318 56397.03167080492 0.8670339968601916 8.844013136459611e-05 124100886.17656927 12658.671650320957 81788 16265 309416 KEY_20190703 7103188.018718087 657.3917941611631 0.0028162048652469753 2.603942528998928e-07 626262.9429886953 57.906039852014864 23980 2843 905724 AST_20210826 38435156.079015195 784.081421271727 0.22276609043971426 4.545860986489391e-06 2790939.4081319533 56.953114120913746 None 3698 258024 VIDT_20210428 41498050.78207831 753.2120679512196 0.8978815116095445 1.6303170785811515e-05 4539887.414480048 82.43243558267038 26852 1525 436797 KEY_20200208 5558679.857869427 567.4543056294217 0.0020391454393476074 2.079990994361199e-07 2509631.379761673 255.9901107760421 23552 2775 278947 WAXP_20211028 565825278.7367978 9667.399715255526 0.3172176589326588 5.4199291937810845e-06 71499801.86749385 1221.6339556728763 167372 5213 4564 FET_20190312 0 0 0.21727423576205324 5.61974762781075e-05 26273239.60462265 6795.51238208835 6857 132 214900 RDN_20200320 3428560.538199375 554.0747232399997 0.0676286377135272 1.0955514921349855e-05 341895.8706068033 55.38549109693986 25133 4326 1385636 VIB_20190603 9358820.463962428 1070.721652027135 0.05239558889610724 5.991851452712157e-06 1675608.9629258197 191.61918417583644 32890 1120 1919556 ELF_20210711 92151513.62199345 2732.8006386889856 0.1996823210129523 5.924317209967445e-06 12107325.77059927 359.20875751835354 87905 33392 490467 RVN_20210624 475166288.883419 14093.872244945682 0.05254820284744752 1.5598107564674332e-06 48171532.19837149 1429.8961716477984 64210 43198 52142 AION_20210823 103084195.27879716 2089.509040932376 0.20781077440424658 4.21747234969217e-06 11254547.31889802 228.40847526712548 73785 73426 623135 PNT_20210821 41052894.85888832 835.5619199463841 1.2927623656276859 2.629582384599588e-05 13517138.523956202 274.9494439028593 47757 333 475621 XRP_20200430 9970767177.657255 1137261.3848638798 0.22602861693321166 2.5780726129915447e-05 3099767025.4387383 353558.08407655003 951759 212810 34710 SOL_20200905 118962336.47400291 11345.681948275911 3.5407174542293283 0.00033768548344857 17857611.36846 1703.1170112125308 85241 2348 84125 MDA_20201201 10233869.525020434 520.8788104916232 0.5220803618916463 2.6577395704469232e-05 185479.27856511754 9.442140599855964 None 371 4532963 NEBL_20200109 6643990.294644244 825.8220244814323 0.41675417892495725 5.191549787509e-05 169600.9086470891 21.127360102768737 39861 6043 753189 OST_20210620 10599210.87805775 296.99071059381913 0.015289554853604228 4.29472420173395e-07 286725.5598888197 8.053911399650394 None 783 504948 LINK_20200322 823464601.8478825 133643.70387578805 2.263956742824706 0.00036761242483870427 323554653.00227183 52537.53674180524 46710 13723 84663 DUSK_20190813 11108410.095174206 976.0486084014683 0.16239308250429807 1.4268951844025502e-05 10293400.143731583 904.4475829708064 20159 13257 227094 BRD_20191017 19081129.50718263 2383.089916346112 0.31611709730889603 3.948312543738009e-05 1421220.5908674363 177.51090131190853 172 None None IOTX_20211204 1360073128.789692 25330.915989885838 0.14296195298715614 2.6660189227596723e-06 127745664.54984254 2382.2587190102745 176767 15646 48469 ONE_20190812 29403037.80986865 2547.8089079928927 0.011302346013723458 9.781968240638925e-07 14213533.32347717 1230.154619126834 69573 None 151929 HC_20190123 47608438.50338678 13329.318136628088 1.0858830501881898 0.00030402342715148725 6576061.127130684 1841.1528209059497 12243 782 349692 XVG_20190614 144257428.88722512 17544.872844900317 0.0091191242097411 1.108931297666181e-06 1962396.5788739996 238.63727861298665 303977 53038 390528 DGD_20190726 38616088.67259761 3898.3227375354427 19.27167878633184 0.001948868861175699 1320409.2525112305 133.52777953379425 17159 3367 582962 IOST_20200704 82564228.37554921 9103.856856373099 0.005486161114914538 6.052605257744981e-07 42204131.51645563 4656.169276921414 None 52175 403755 RCN_20190613 16194332.882665094 1991.5826571912414 0.032395226998726406 3.982062513935495e-06 1534445.1849525552 188.6159541628959 19010 1122 2270629 XRP_20210702 30647057119.673344 912246.0783022766 0.6638724587724228 1.9735963929228107e-05 2684814772.462972 79815.64351075485 1904005 321423 12075 KMD_20200501 64153792.473304346 7413.6593345640385 0.534104052326236 6.196315397151393e-05 6701180.201968676 777.425782180401 99762 8385 170099 VITE_20200325 4897250.871918516 724.5051443008272 0.010057436748259027 1.4885778644080719e-06 1844168.807817853 272.9511439407939 None None 513506 BTG_20210527 1181606595.2507155 30158.81731969394 66.82452444416475 0.0017045561020906101 17174480.849543527 438.08566354689685 98437 None 165410 LSK_20190801 187137270.3356036 18616.837517000145 1.3970953233261059 0.0001388264533346641 3893372.619150549 386.87633062872976 182535 30772 180876 BNB_20200315 1527890811.8259366 295448.9555707889 10.131278171005532 0.0019554294427766247 270906520.91289306 52287.43879023073 1125002 60163 1861 ETH_20210220 226038410300.14252 4043179.7624706286 1969.9797177628186 0.035237294921513646 34796767875.96328 622414.5156952298 717725 675296 7379 RVN_20191022 147727620.59232908 17977.302803444734 0.03154436924132427 3.838333903934486e-06 15257813.652043736 1856.5780470205818 28310 7092 246956 SOL_20210401 5229172252.453522 88905.64647476052 19.48663194355817 0.0003315208327875105 255371895.72794142 4344.57343821488 135792 6417 29632 BTG_20220115 659404532.2961353 15301.213788748755 37.75789469284488 0.0008754336789602635 29078397.679307356 674.1956580404781 105749 None 248860 SKY_20200129 9008777.600607123 966.9424390669703 0.5292141287362085 5.659803939440098e-05 2234351.1927304883 238.9578999507816 16308 3819 343600 REQ_20210708 42266284.36712638 1243.5869299801495 0.05476319922378864 1.6112795297324795e-06 689483.3095496492 20.286439771892756 43400 27768 349393 BEAM_20191026 23304496.251409683 2691.7437895435423 0.5577925949705341 6.44268272168505e-05 44601774.70768842 5151.647509427644 None 1386 211289 NPXS_20190225 103586097.61776435 27500.879545714564 0.0006163298954282336 1.6452513952156414e-07 2870610.0060832347 766.2901236272031 55976 4016 178391 REQ_20190227 14976535.876364952 3931.6643303752207 0.020525440675110737 5.388371759247745e-06 206592.26512672773 54.23493432897399 41652 30828 495814 ENG_20191024 21762957.111028522 2915.3967827491865 0.27794182268753387 3.7228550597095955e-05 1443376.5743673064 193.33117020645628 61184 3475 386456 GTO_20200511 3401282.921717578 388.4478893512467 0.00851605449391713 9.717123788533497e-07 3629808.30686184 414.1741539068046 16719 None 966534 VTHO_20210611 303268546.66743124 8227.957205524657 0.008251345691980185 2.2474998093029425e-07 65835596.90240385 1793.2286078780053 None 186027 25894 RLC_20200404 22687839.019594956 3371.719795453728 0.3230342234786955 4.800725555974903e-05 446260.9827166136 66.32041897267935 28366 3562 395542 MDA_20191203 10792894.468225513 1476.2510995509185 0.5498695536744805 7.526229009925295e-05 726110.5383856804 99.38492069422624 None 369 1774649 RCN_20190510 11252694.438040754 1822.5529213944876 0.022474905797057593 3.6406530182879897e-06 410583.2863682954 66.50934576869435 19021 1121 1766498 LSK_20190623 282308448.1419811 26296.399810289266 2.1153198082848603 0.00019720481647076622 10369101.325414818 966.6797029160326 182864 30476 183148 PERL_20220115 0.0 0.0 0.0693948509815102 1.6095235440108313e-06 2937928.7296602535 68.14144557027629 None 733 870534 WABI_20190615 16355600.14369802 1881.452897493567 0.2895734829413994 3.32968216442569e-05 2237975.906968252 257.33531904074914 36345 8024 932643 BAND_20200629 22701417.970382012 2489.2347068261743 1.1059351397146169 0.00012122340467991434 1592789.024153725 174.58827512663848 15512 1224 511773 MTH_20201129 2644514.2538457774 149.14271102218478 0.007590597400250509 4.28862430908614e-07 124421.66222514276 7.029720284967846 18891 1892 1991211 RSR_20210731 413377331.0586484 9903.624017851738 0.031379933325606346 7.512295579770944e-07 59709533.40901925 1429.4347258307741 77004 None 129903 DCR_20201115 227107409.005367 14109.710237379575 18.5339241111494 0.001152172950147473 10198093.082404463 633.9708160110622 40867 9949 361711 QTUM_20210206 399801576.32794267 10550.689983401213 3.873254281242153 0.0001019637470965864 474558610.93992436 12492.795637695086 193826 15171 197984 IOTX_20190830 18196206.32214939 1915.7119446851193 0.004405218772357687 4.644389101441893e-07 963084.3172248487 101.5372570087992 21106 1764 702138 BCPT_20200530 2539854.4309696625 269.48810744 0.02185202192639357 2.32e-06 137966.22130867507 14.64768956 10514 3173 4184037 XVG_20190625 146228835.8297857 13247.028416354286 0.009259034484660637 8.38317688132747e-07 3394214.262362933 307.3138844190817 303921 53024 395064 ALICE_20210401 255560186.19384882 4344.802538585083 14.619284922132378 0.0002485931352454985 72882809.65993983 1239.333268033921 None None 93812 GTO_20210104 12461009.041031396 372.4098988933744 0.01873907816854715 5.692705236424409e-07 21467600.908325735 652.1597434254697 16521 None 786393 KEEP_20210724 108411165.89853233 3243.2626658317627 0.2469019479691946 7.3843462377517245e-06 12267790.467558999 366.90521532842837 22145 2818 132886 IOST_20210408 977569831.6976868 17355.305311841905 0.05243698885687005 9.331583037401025e-07 506086373.8555854 9006.213218347 233258 52898 138939 AVA_20210821 167284132.90494266 3404.646027679144 3.207100406002334 6.520521684995451e-05 8265419.806801718 168.04852440844437 114653 10584 61556 BTS_20200313 32083601.880269583 6666.709416568157 0.012171975448765335 2.5400229479053856e-06 24707894.099719297 5155.9928190677565 13329 7037 137133 WPR_20210204 8652048.156214725 230.94339418013303 0.014227743115599243 3.793123071549352e-07 882336.7704281623 23.52314020287571 32544 None 7510517 NXS_20190510 16485922.165372038 2670.5127413028044 0.27610962755191226 4.472629865513585e-05 761678.0642625076 123.38229884745914 21325 3515 725458 WRX_20200531 25265709.484627098 2612.215271101007 0.135382133351999 1.4017567508395329e-05 8175370.22465263 846.4839576152328 26895 None 24680 COTI_20210902 291445432.4958284 5992.473845240232 0.33563302042465876 6.898521479309593e-06 68823319.69733039 1414.5781860459128 134139 6030 135367 CVC_20200719 20026518.514600918 2183.8281475178155 0.029870650156782155 3.2576175509065665e-06 5194669.76949919 566.5175455995932 85269 7984 98736 CND_20210217 38911461.16235713 790.7939513742957 0.02017072991370544 4.098943453484534e-07 483371.4400706783 9.82270948228231 34300 5968 249426 POWR_20190523 50138979.42661378 6543.139310412344 0.12002132432791339 1.567198688959611e-05 3184118.440588889 415.77163670926666 84991 13212 633531 HOT_20190811 173111727.9002292 15283.905393302934 0.0009759456700861293 8.617877252376507e-08 10088572.461867642 890.8495810059632 24110 6613 379586 ICX_20190702 147835746.84196103 13950.829204358732 0.3126050545869134 2.9449467058949766e-05 19361055.55343615 1823.9396944520279 113944 25387 268065 SNM_20210120 4435964.893695491 122.52841432893744 0.01015643245827716 2.7999999472662245e-07 147212.67648042573 4.058467262746241 None 9489 None BRD_20200531 7350789.902279755 761.4925893072804 0.11677632323363873 1.2091107990252059e-05 932603.3555068697 96.5624500862582 196 None None OAX_20210105 5740863.200071515 183.49450820211572 0.10329724760390172 3.3016772891355445e-06 426050.0601004078 13.617785953623198 12845 None 1823390 CELR_20200318 4889939.975036564 901.944195804933 0.0012857441148446233 2.390461418312367e-07 4267432.571798515 793.4030418927202 19264 None 1309255 BCH_20201124 5989019012.140859 327019.36040680675 324.4883620767536 0.017674409565554713 4208888036.9498053 229252.01540207627 None 339467 999966 DUSK_20210106 14321958.602716401 421.51850241900985 0.04762972708341758 1.3977463044191846e-06 930586.4784511524 27.309075462882756 18535 13346 1115146 MANA_20210218 395370627.29944 7577.471206915372 0.29826092542963867 5.720330337846105e-06 137217172.2199767 2631.680807644228 66408 11697 42015 GAS_20210106 21304652.59443421 626.2278212555775 1.532344330206336 4.4928178483129935e-05 3505305.0255510984 102.77518356762927 327776 101237 181319 WAXP_20211221 855529510.5447229 18133.816731965897 0.45632081007157016 9.679470036516484e-06 49655823.334183514 1053.298564285071 227344 6429 3362 MBL_20200309 6585480.667085277 818.0383495047028 0.0018666705259286977 2.3204099160663796e-07 6978046.925466814 867.4229895269799 None None 120670 OGN_20200430 6721708.323905785 770.2230501863426 0.2348842961496313 2.6790801064985994e-05 14776525.612529699 1685.404110050696 65531 2221 171904 BAT_20190528 473870796.94660866 53732.152529131716 0.37785249507223845 4.285147622292191e-05 68144279.888988 7728.102970003782 101544 27181 50152 EVX_20210527 13566111.153874975 346.255572432351 0.6262943743328147 1.5975480654052616e-05 583914.8956352306 14.89446736412274 18185 2811 859332 LTC_20190227 2717809772.851578 713483.8008520354 44.81267601809388 0.011764295916190508 1032375499.783446 271020.8796987198 438099 199854 251431 XTZ_20200506 1944443757.7186255 216843.4663449718 2.752416423487533 0.00030588696731711346 170790130.88578025 18980.585473381525 61122 24476 100263 BCH_20200629 4107639588.395869 450407.06443572516 222.71639357502826 0.024402562130391246 1679796638.3227623 184051.74929022221 3327 301516 150898 ETH_20200711 26917385878.316235 2898849.632386131 240.95495378293265 0.02595326701150293 4948468762.536561 532999.7540033549 463904 469279 16696 YFI_20210221 1467641559.707138 26267.182948123133 42803.939354698894 0.7613209361621726 865338899.2302253 15391.12125639384 87395 3402 19652 FXS_20210408 76308127.85895392 1354.7378548571753 7.831816205303245 0.00013937345535407339 7973246.058186048 141.8903131007027 8106 None 89286 XVG_20210428 852297232.2396975 15471.017813284569 0.05183041453356711 9.405656805899138e-07 55058107.927334905 999.138579552137 306732 53482 130279 NMR_20210617 218894808.0814515 5722.903867542443 38.19822201151273 0.000998054955318886 15125043.062351061 395.19180168232117 29242 3477 564321 RLC_20200320 19545989.985354207 3158.2330962817473 0.27575654760817664 4.467123801574113e-05 605523.185047837 98.09185151881239 28368 3561 324809 POWR_20201228 43175186.877244 1626.2036538538875 0.1000192655305089 3.803258326173078e-06 5328806.041904956 202.6292218798031 81039 12578 371056 ENS_20211230 838222763.3896216 18073.173317732922 38.44130255004705 0.0008253506896091988 70707930.6870581 1518.1285617839037 None None 4184 NAS_20191108 28467423.3158355 3087.663117280026 0.6257398162986145 6.787500137969319e-05 7806127.319275482 846.7431490935112 23993 5063 1403221 DASH_20200621 671661743.6528028 71786.83806093183 71.04273961431107 0.007593008969606831 376776213.0300111 40269.63459746795 316786 35052 75056 BNB_20210428 87911812452.29901 1595787.4377622562 568.9669199054099 0.01032942156667916 4398525003.733665 79853.88507770795 3031750 288006 141 LIT_20210804 84032611.4100626 2187.0808811133056 3.7860430194244428 9.855499515099815e-05 37709221.72386321 981.6138234763712 None None 505137 POLY_20190903 18310644.171090867 1773.0615619182668 0.036190012624123684 3.504361709484726e-06 6292608.456910599 609.3276716482283 35256 5059 289476 CELO_20210902 824812615.4797416 16956.036261149202 5.7938712026433805 0.00011908011473528238 403825002.5766695 8299.72326928258 41178 None 100542 TRX_20200421 823620407.8948112 120276.04180927061 0.012415169093237111 1.8133134185745302e-06 1400759954.721906 204589.78875146384 505642 72559 64875 SC_20210203 397435925.616261 11161.117387780852 0.008758484963992797 2.4661561845778643e-07 120460697.78761862 3391.852541493328 109657 31492 135248 ELF_20190915 37760489.81458451 3647.813111028586 0.08189456738286365 7.913154888508224e-06 8488803.950386029 820.2402506572255 85363 33579 1052488 CVC_20200730 19940679.321859635 1797.879234738032 0.02976220794307408 2.6834018428925852e-06 7220290.215446957 650.9913547881914 85322 7979 98736 TRX_20210727 4199579876.7479286 112108.7900103267 0.058487684956305894 1.5627799651695099e-06 1340501744.6504555 35817.95503411598 1076598 114428 24266 FIL_20210207 1186863367.8317683 30253.871308755108 24.278484379329623 0.0006171679947320389 199355815.96232775 5067.698100643813 48445 None 48258 BOND_20220115 78456016.30144592 1820.5399260174563 14.68591810479617 0.00034049958081553653 6735222.1224733535 156.15913782419497 28072 None 180094 BRD_20190621 24401036.551048018 2551.4946644682077 0.40638315006890185 4.254570276417218e-05 609510.9324320267 63.811875463758 167 None None OST_20200315 4489785.179903756 869.0008349251988 0.006371630931588705 1.229783104543681e-06 178815.75517851123 34.513077876894734 17826 752 839878 ETC_20191118 531583887.09933215 62494.822880854284 4.622272834925914 0.0005431838364671164 613956512.4447392 72148.76009348538 229357 24971 327210 WAN_20211202 165311101.6962462 2892.2260925458086 0.8583337528104847 1.5010268853277156e-05 3727698.090687803 65.18880372799009 130806 17392 208332 SNM_20190826 4383478.747124332 433.37019941427667 0.010017056311116405 9.903307262389306e-07 222999.21983905984 22.046694405506244 31016 9913 19008991 RVN_20201231 101429464.49648124 3512.7324091721707 0.012992432695916498 4.5038221398511077e-07 6583596.650292802 228.22014204281913 34346 10416 218200 OST_20210128 10150642.054049563 335.37219321971537 0.014562448075921707 4.790133689908702e-07 1576687.467702931 51.863146348232554 None 732 753771 1INCH_20210821 619687846.1449181 12609.647442664693 3.4427033859022593 6.999538287223367e-05 141403109.9846154 2874.9397532264547 251916 None 4603 KMD_20210805 104940339.84760718 2638.3557040608653 0.8275140287258388 2.081015268182391e-05 4791033.041361856 120.48391402852629 114429 9454 251896 GO_20200501 7387457.6194813 853.7511240694264 0.007699662520684732 8.91971287752501e-07 1455474.5391690386 168.61018200550077 10738 677 1079767 FLM_20210610 0.0 0.0 0.5562240401768246 1.4850995911510366e-05 23746501.89038996 634.0236613554918 22669 None 91315 STORJ_20210823 190750852.54487377 3866.5151641991315 1.3267476300432912 2.6926041061963596e-05 42421839.141292885 860.9415662609441 104363 13752 71027 FET_20200520 6940944.320395254 711.6467739443094 0.020406715631384856 2.0922763064388e-06 1593974.1949394152 163.42828024797026 16866 389 951449 DGD_20190316 34420976.466780104 8771.329238287308 17.21049683863847 0.00438566681197706 479479.6100432441 122.18344609699919 16157 3297 547619 VIDT_20201101 15397129.054342642 1115.8363064672997 0.33277757095377763 2.412108258046984e-05 1361220.295415688 98.66682740013744 21396 1077 None ALPHA_20210105 43364294.57498697 1386.0476428823092 0.250196581757614 7.99700273695634e-06 47186973.55011952 1508.2314633481537 20485 None 85584 XVG_20190627 138537496.1349279 10623.460061571455 0.008774439838677515 6.728496889973086e-07 9064511.686187262 695.0932459618776 304005 53032 395064 MLN_20210805 146257388.09882656 3673.8749685107423 100.66068764902798 0.0025313942801175986 60459718.58764148 1520.4285743000603 27500 402 109463 BEAM_20200325 16102749.68832976 2385.5908068475487 0.2779145685895739 4.112833212239628e-05 113301664.4563027 16767.413487635127 14957 1477 244013 ZEC_20210108 735190347.6375321 18782.365066588358 68.13311578093526 0.001726531818253006 840855603.952858 21307.758175168976 71978 16583 167554 ZIL_20200913 197852630.19382945 18974.157378674772 0.017804689364020333 1.7051125597242815e-06 17957233.869250603 1719.721382516252 93538 12010 85218 TCT_20200530 3747302.1982742785 397.6028567248031 0.0065102075795676175 6.934003075660317e-07 912937.3932988386 97.2366950769317 None None 997352 TRX_20200129 1227159094.3912807 131363.46929434952 0.01852976354228629 1.9830705116485443e-06 1802818681.7304325 192939.1358626915 496340 71812 51656 SNT_20200511 117317699.38025993 13399.217549481795 0.03131852073632576 3.5723561433878015e-06 56383125.39100716 6431.3575366395025 None 5682 168718 BRD_20201130 5036368.3689694675 277.40102809850316 0.06993907032475825 3.849205769575316e-06 726862.1003234168 40.00398886143185 247 None None IDEX_20210620 26597540.407519057 746.0987367519137 0.045858475713366494 1.2881310632428023e-06 598055.0214966807 16.7989284147461 52540 1982 6709853 SC_20210727 582802942.5083302 15558.064048459735 0.011978198766533613 3.209344853441603e-07 70068485.45186771 1877.3601737323322 138966 47502 61155 WAN_20191127 21662024.445383474 3022.2014823649674 0.20337301000655017 2.841663034769971e-05 991550.305062219 138.5460071087823 106899 16665 380962 BTG_20210823 1254453040.3205035 25427.732764832028 71.54722309173096 0.0014520346019194002 57279222.881376006 1162.468786359144 101633 None 217752 MTL_20191011 18749882.649668094 2189.7738576664024 0.36103384482610645 4.216466256907433e-05 5061218.819919144 591.093014653312 34332 None 247192 TNB_20190221 7281948.2139006285 1836.0541145957325 0.002922973001096942 7.364898662060132e-07 322110.61864390835 81.16092975869411 15027 1509 1599145 SKY_20201018 8973386.934200149 789.9591004720612 0.47267838052124306 4.159186841040742e-05 72858.28977609029 6.410939289486483 17378 3813 1179011 AUDIO_20210711 191921881.9105012 5692.099293896675 0.8237005156160581 2.4447932636715227e-05 17774212.307390694 527.5494392968315 52560 5769 30965 DGB_20201031 268612534.3025644 19775.360911522588 0.01976688382300225 1.4564833632197058e-06 4781334.490513077 352.3030843798 177803 23258 295129 LSK_20210508 1297155051.8487413 22637.822404260365 8.962823376445375 0.00015637197348308316 993471688.93047 17332.833870842274 196023 32242 151176 IOST_20210310 861099924.2328012 15754.41864057768 0.046565903454085705 8.512896453827487e-07 301217327.15281665 5506.672749684664 227078 52695 149920 ONT_20200801 452479849.2487493 39923.612343125176 0.7104493707585174 6.26764376552018e-05 96629384.3999794 8524.72510537899 88350 16588 189841 POLY_20210314 388889534.233061 6331.9039563513315 0.4743252679071387 7.732006683703378e-06 7130717.028027567 116.23827666524542 40106 5317 222730 AERGO_20201101 10927984.202048074 792.1869908643791 0.04140265173018665 3.000524360895946e-06 3270641.2938969354 237.02923527806004 None None 393243 FTM_20190903 38536678.034967124 3733.1893243967347 0.01846108168612091 1.7883046299469333e-06 12179425.924461456 1179.807561719679 18755 2122 342679 STMX_20210401 578452898.9552381 9834.405194809333 0.06923134817794362 1.1781727376985785e-06 461852480.0834441 7859.763173673794 45485 3104 73703 SNGLS_20201115 5586967.061286903 347.0673003093874 0.006276160467084907 3.899802524949806e-07 141356.203712083 8.78341596020003 8945 2115 2790788 ETH_20190130 10955187408.251522 3209463.676972462 104.59784628074063 0.030640687507614724 2555950268.3740425 748735.0480243415 439760 426979 27177 ZRX_20210806 754753917.3462309 18419.2486040629 0.891327447338697 2.1784379610030557e-05 140472524.1091885 3433.2015681896946 223617 19628 56204 FXS_20210401 88852699.1596241 1510.6610144860601 9.231280525462168 0.0001570970858633709 12105082.33876959 206.00318171585982 7686 None 89286 STORJ_20190207 17318104.10780675 5083.782495656253 0.12754518475309778 3.744188675722313e-05 1259438.502973763 369.7180250067022 82704 7560 214727 TKO_20210722 104223562.5187068 3238.6721857458638 1.3950201518928427 4.324902532050655e-05 20526751.193599213 636.3793246392495 299048 None 20921 ARPA_20200425 0.0 0.0 0.009750881539955182 1.300939039093219e-06 2828161.4393352335 377.32646122436483 16744 None 1423765 TNT_20200117 19753775.831492625 2269.229546869843 0.04616767589826103 5.298385675612744e-06 619435.0931312181 71.08882915507371 17710 2570 695200 WABI_20190622 15377871.115300305 1516.6546665385836 0.27244032818190217 2.686964222760792e-05 821776.4722096091 81.04835266750636 36399 8013 994304 ARPA_20200903 0.0 0.0 0.03989813229458302 3.4964939480128846e-06 13163489.593208801 1153.5893800130123 20680 None 330815 NPXS_20190314 111962519.41003013 28957.84019303818 0.0006393388518213376 1.6538273090600705e-07 4124451.356354818 1066.903766069828 56948 4111 173865 OMG_20211204 1079635432.1197922 20107.855858506115 7.703649316457812 0.0001434296501874076 368989676.3071548 6869.99862291691 6153 6463 101172 TCT_20210509 56126672.69324831 957.081435301404 0.09713496914757543 1.6535723389583502e-06 139181529.77498403 2369.349882431772 None None 333105 AST_20190314 6449672.184042768 1668.134813213774 0.03871342228960029 1.0014300683795704e-05 1332037.575840093 344.56847309416054 30719 3594 383093 QKC_20190903 48731285.93996056 4715.8803156162885 0.012174304891699224 1.1778777466341345e-06 10920113.177561413 1056.533281940869 51221 9238 312593 QKC_20210206 60425444.30806316 1594.555388034274 0.009603437777532219 2.5159014214475113e-07 8550626.590961136 224.00867369387026 63439 9227 366724 XRP_20190325 12839035060.35756 3215199.7269825763 0.3079100847628493 7.716322977875065e-05 1236303097.556161 309821.4209722348 915387 198515 34701 DASH_20190321 803332454.366092 198773.57752899616 92.29487493961733 0.022837098612946805 1000779218.2776848 247629.06621356608 320505 23249 93159 ONE_20190923 20024289.955194812 1991.955033587085 0.007236602625842271 7.198773511265154e-07 2670865.072985606 265.6903209098651 None None 165581 SNT_20191015 46328687.73753599 5550.56059523619 0.013070440683824779 1.5658645861848592e-06 20517433.09277286 2458.0289721332406 None 5689 289731 ZEC_20200511 374028566.70725685 42721.588749851704 41.01080178540005 0.004680852497957285 402143523.8120708 45899.48101534573 72331 15747 154064 STPT_20210624 32660499.430488884 968.8086487305344 0.029091722325667254 8.632176373365572e-07 3578233.2356075575 106.17432700968332 30201 None 480886 VIDT_20220105 41942767.26164571 905.4520164993135 0.923236033165127 2.0083250646584387e-05 11931053.806522477 259.53746979827747 38910 1884 257097 BZRX_20200901 179300816.89339918 15344.305814524 1.2572398676054142 0.00010784059172195558 105608190.90685606 9058.613309624227 None None 102512 PYR_20211221 318596816.8156313 6752.983054721122 15.926501954435816 0.00033783271560703965 48934102.0274222 1037.989422976315 None None 44132 REN_20200412 43662313.57315885 6344.070478042088 0.04946962506196944 7.188465058071575e-06 1405315.5151487342 204.207358829947 11548 877 365402 STORM_20190325 15171247.16387987 3801.9258775848634 0.003357376052073418 8.413609478034015e-07 1382916.5045791618 346.55990957793574 None 2579 4061731 NKN_20200526 11367498.758989705 1277.493735511693 0.017492843822707965 1.9683093055584734e-06 2820338.616705195 317.3468419629087 12374 1001 285670 POND_20210523 55281876.28167473 1470.8333058057171 0.0725477824360586 1.9305760723351203e-06 8583622.936948607 228.4196222072723 17499 474 90153 REQ_20211221 272260047.16175693 5770.828168772567 0.35222982245523 7.473638530685028e-06 27546618.426441476 584.486195481357 58135 31528 169585 BTS_20200718 63906717.127032965 6981.984120741347 0.023588333227008488 2.576440008175226e-06 6514875.367547429 711.5884528036745 13108 6962 136009 VET_20190314 282176995.8909142 72981.89069179403 0.005088446017335898 1.3162677287911383e-06 17251016.24223759 4462.453938029108 105074 54786 826243 ZEC_20210304 1397590172.1783795 27488.49667269042 127.58743994301467 0.002518090653680435 1215100248.96156 23981.456023895968 73236 17819 106492 THETA_20190421 91655406.20156462 17258.398030962846 0.12337931831287331 2.322964542173932e-05 3938489.4817845533 741.5320120921679 None 3949 258696 REP_20200313 72613121.94395143 15083.101843555449 6.470110613124089 0.0013501694529369412 26202280.507661216 5467.838319018661 130538 10107 288679 XLM_20190104 2153019597.2782145 570947.8571288522 0.11237137071074968 2.9802950611346882e-05 61969720.96354543 16435.50774182036 259850 98632 59074 OST_20200329 5029310.290768215 806.758841228807 0.007277392334208888 1.1639977822823358e-06 71374.4808457106 11.41614105720626 17790 754 732102 CHR_20210509 154216429.6632883 2629.724420969516 0.3448058092733691 5.8697846257649586e-06 59652631.42404452 1015.4936181532706 57554 None 102679 ZEN_20191127 43686753.45908449 6093.432274486414 5.535965203521828 0.0007735218985112196 1435561.6938425216 200.58623311877383 41402 1902 49909 FLOW_20211120 3844930589.919896 66122.76950866793 12.391913151476567 0.00021244117920248129 78441772.24338238 1344.7691563373312 117312 None 329714 QKC_20190807 69619034.05964741 6089.546765187649 0.017412921909809694 1.5176358135447704e-06 9795856.198115323 853.7649377626368 51669 9234 258370 ADX_20190419 14854119.321356887 2817.1995608828174 0.17144080819204857 3.250342309190153e-05 412024.394171292 78.1156093999039 54729 3924 1048935 CDT_20190621 8615555.980171826 901.9933130060327 0.012771748939707317 1.337119991503803e-06 1098799.1012056638 115.03720060615073 19709 295 372453 REP_20190207 142922295.19546166 41965.18810825698 12.992935926860154 0.003815017100750635 7680723.5832187245 2255.232534129737 122165 9749 231791 XEM_20211207 1231691984.4952974 24402.33717826729 0.13711202778090686 2.7159422187608157e-06 60300563.27403015 1194.4455075282763 376845 22517 218348 REP_20200425 111630995.26735915 14887.480889449223 10.139236308622834 0.001352752393353298 28833947.15729195 3846.9555141621026 131139 10121 257312 DIA_20210430 169015336.78674197 3153.803385653082 4.04404874087638 7.545672828246038e-05 66001887.03551026 1231.5099978465817 None 359 265172 FIO_20211111 63137724.09021588 972.0030838386101 0.1730930744500913 2.664761908683801e-06 4666994.111295158 71.84821331148517 None 540 632857 SLP_20210710 135837962.04659775 4005.0542019807795 0.2515063630890657 7.40051829475816e-06 85811584.41369247 2524.9866148747324 None 18211 5695 OXT_20210523 244886302.34940606 6515.461374644274 0.42838348435838136 1.1406503577169812e-05 55230868.07413614 1470.6241422948594 None 4149 89170 ARK_20200713 44810779.47194131 4828.841981415838 0.2988472470531209 3.216456691193809e-05 1392593.0179568604 149.88309830141856 62227 21868 108686 FTM_20190929 23809977.62030451 2900.64990431585 0.0114200814839861 1.3912511297597697e-06 2564111.4465052085 312.3728102800874 19071 2170 407157 BAND_20211216 210573292.73037776 4316.23001158456 5.081255980312577 0.00010397634609494038 33878738.87051748 693.251332290553 None 6354 255553 DGD_20200109 37975354.85138718 4718.60952401974 18.976299194456587 0.002364858553343444 2750021.137844553 342.71229300636014 17544 3348 360156 PIVX_20190714 31439223.09801694 2762.2752628426797 0.5200354496536782 4.566509514929641e-05 765621.4583221398 67.23037201772866 63461 8626 286633 LTO_20211230 111753332.34222002 2409.5472378818454 0.37720665585078733 8.108780360680806e-06 27791232.768333454 597.425838000363 22326 6111 179975 AGIX_20220112 184244281.70015427 4297.867127224643 0.1904178412991273 4.450488390355453e-06 1198902.2859621518 28.021012466281036 71853 None 134947 RDN_20210708 15840540.335914373 466.1643550831166 0.31037847079961034 9.135077188562082e-06 774352.6135539757 22.790791119489054 30166 4675 857508 NEO_20210325 2821088056.9315357 53372.35588120336 39.696214757155495 0.0007528959029495416 930300347.3760312 17644.48636568539 361143 106833 100528 BCD_20200315 70075632.23225777 13550.557535744847 0.3733339185824388 7.220966388787409e-05 3164057.3473047083 611.9870341231265 29123 None 1280057 STX_20200316 41136598.08872897 7614.51822108362 0.06823074236486747 1.2697387381814247e-05 401960.06224680593 74.80268344542988 35834 None 40997 ARDR_20190316 67134902.09704408 17106.985444405007 0.06715449982263995 1.711175722053037e-05 2943987.316478515 750.1626302474137 69312 6593 1067590 REQ_20200411 6288898.740020544 917.1966325486324 0.008119728234160746 1.1833052871518004e-06 56938.61244322037 8.297785246517416 39405 28203 588604 FIO_20210508 81039494.83539048 1414.2475134859367 0.3453640389424571 6.025473678467009e-06 11348529.825864857 197.99475349093794 None 436 101174 MATIC_20200621 78026276.73519063 8340.33027946981 0.022569769087859178 2.4122445172644763e-06 38316068.348937765 4095.2003291684164 41290 1900 129897 RLC_20210218 149371297.1213237 2862.7738757619004 2.1011700669749573 4.029822834411615e-05 24292552.466098856 465.9055645836693 34645 4057 376079 NANO_20200309 90580660.56660554 11212.564251805554 0.6723705619839786 8.358064787692176e-05 4140598.6658961647 514.7071252982156 97696 49258 295755 YFI_20210523 1397513746.313507 37183.68136892423 38642.087692231755 1.0289513651790874 533436314.3713666 14204.202119722951 121531 5868 19154 OM_20210708 36456923.1249822 1072.9768043392203 0.1144635871125734 3.3694455020630103e-06 7804679.794885034 229.74505598932745 45956 None 75678 NMR_20201129 198457654.04094544 11211.198573274085 38.175347409612925 0.0021550579014978574 62805030.32525776 3545.4419157997563 21764 1951 1263517 IOST_20200903 100921668.44868793 8846.330792928877 0.0066574180107730144 5.832952203390278e-07 83325149.2290802 7300.602305685059 484 52174 275570 NMR_20201226 126228287.19303732 5114.107710546405 24.187782192375604 0.0009795857738541366 5923535.913274926 239.89845226021876 22009 1973 2410731 RDN_20200223 7535863.207109066 781.1108627722958 0.14858675979348543 1.5392887433842585e-05 475851.0458534849 49.295923770592246 25217 4329 1589511 OMG_20200927 434591136.1392249 40474.01754895614 3.1015493303486696 0.00028875558243829987 162577956.60971072 15136.077989508607 285694 42875 111250 ONT_20190312 558078328.1115216 144336.9331897937 0.9087404878572531 0.00023504361587188687 26706755.51805153 6907.640265892217 68778 11181 256269 GAS_20210511 189034609.5899115 3385.686038437278 13.596723500161527 0.00024318171367926518 20061652.249413937 358.8090155096564 None 110746 84803 NPXS_20190227 112647505.87886527 29575.627097503904 0.0006554300998028116 1.7203223565934007e-07 4168992.27429876 1094.2449265145206 56084 4027 178391 XZC_20190719 76163089.6816648 7096.561290615002 9.517079936605947 0.0008919817306767634 14727337.633488126 1380.309527510873 60836 4038 262317 BCD_20190729 151479521.77186346 15867.113154123077 0.8056695983494001 8.448514172083433e-05 5996742.752070957 628.8380029605944 21435 None 2927391 REN_20200316 33286907.51035775 6159.67948973526 0.037788400222883385 7.032225350900565e-06 3002748.9570561987 558.7960118357614 11323 873 365958 NXS_20200314 6748633.148242067 1225.795627697421 0.11324017670843405 2.0522081172061773e-05 105593.08092118001 19.136227449132438 23550 3537 662796 SYS_20190708 23684896.211911425 2072.7538761028513 0.04251100273369731 3.7171971225835715e-06 332215.18668805534 29.04916978249785 61369 4607 806939 NANO_20210104 233035516.52021846 6971.8129577117015 1.727358510433255 5.181627961132779e-05 116495926.87607427 3494.5759575280163 None 54085 338450 ZRX_20190923 142979648.39502984 14223.222674139133 0.237830673554557 2.3676804463493485e-05 26411167.928096205 2629.3162666529497 151148 15886 146664 QSP_20200422 5373350.94592271 784.629127863955 0.00752405742755525 1.099131227529403e-06 295265.5500236271 43.1330554782944 54843 8289 395631 XZC_20190410 60879177.57216823 11764.831899472912 8.397889173528823 0.0016245616116935297 1627263.122262316 314.79210381637694 60099 3959 324676 SNM_20200905 6469590.363009993 617.01809808 0.014784205585265274 1.41e-06 724252.4908522866 69.07344505 29091 9585 None DASH_20190719 996873451.7675062 92884.53999205474 110.46832390288724 0.010356597798584942 346310251.9228068 32467.189380406606 320693 28870 102503 ARDR_20211007 367537076.0374382 6621.190902782215 0.36939772142637445 6.658838553778492e-06 148824193.06048313 2682.7352119540255 73872 7218 None BQX_20190603 16446270.0676635 1881.191349462463 0.1384214564949102 1.5828600390465834e-05 625848.0917713133 71.56621235341477 60862 5775 442313 POE_20200329 2202756.2013843507 352.40438767597 0.000875289405441598 1.4e-07 148879.23138698225 23.81280096 None 10433 698681 ARDR_20190426 68020833.43756513 13095.108129432481 0.06821100783123019 1.3109621310209598e-05 640563.2276300361 123.11123389721526 69045 6568 1105375 TROY_20210506 42032292.24678357 734.2181944511713 0.022160011914625376 3.866590974473964e-07 17100601.880822472 298.37995189353427 16131 None 481033 GO_20210318 57832331.06636891 983.1514375364023 0.053479219518932454 9.080632798232441e-07 10369421.273477487 176.07008434611595 None 811 245426 ARPA_20200626 0.0 0.0 0.013200869643729496 1.4266348987765905e-06 2833931.095761907 306.26656508668475 18075 None 1098211 MITH_20190712 15836727.101069506 1394.6869785819183 0.036654494543935275 3.221167385049505e-06 5108529.072793905 448.93341020258526 75 2074 608806 ENG_20190605 33998551.43153204 4437.593278079178 0.439247616962024 5.729487569263446e-05 2167255.5463893143 282.6939346498126 61856 3434 351204 GXS_20190806 114890315.59314558 9727.773885082026 1.9152792471318782 0.0001621501355728579 12789241.90038716 1082.7545440840154 None None 741400 DCR_20190130 147397106.31929642 43181.886461048925 15.92884023034865 0.004666163149734968 1381451.1959963376 404.67959818153804 39846 9320 244893 NAV_20201106 6537034.82469544 420.35611978756396 0.0942145029803357 6.0612942768146965e-06 138686.96023080798 8.922431809583259 48195 13725 1185476 REN_20200711 154676490.14120433 16660.18110119345 0.17659125689733743 1.90192846883693e-05 11253970.958961954 1212.0785666505162 15778 907 198757 FOR_20210819 32290859.860874776 716.7709821696642 0.0570756703514153 1.2670945587318232e-06 100347656.97089791 2227.7437890163883 30119 None 189593 BOND_20211207 100989991.55384263 2001.226660301017 19.822154423218084 0.0003927559148566604 30342956.23876722 601.2149478087796 26959 None 201520 LOOM_20190627 47321935.96190558 3640.7244697978895 0.06843792132804492 5.248019808423204e-06 6559994.519344205 503.03955048030275 20505 None 421831 APPC_20200421 2982835.7669894793 435.5934796924484 0.027393934486208468 4.001056177193115e-06 205952.91380874242 30.080716533079585 24728 3215 778214 IOST_20200217 82884667.19643642 8314.334216503716 0.006878394156602518 6.914045546250965e-07 90537110.57992984 9100.637327896133 191970 52288 97956 1INCH_20210325 562460453.5487901 10644.160900679999 3.7144397489982377 7.053873841593293e-05 233665970.7674158 4437.412881205842 None None 6362 WING_20210519 56313544.8251921 1315.6991245487557 35.032354594576695 0.0008188788340387009 8537592.891196953 199.56563562880723 10442 None 323805 RDN_20190901 8780600.18314109 914.7162494969999 0.17331273237008604 1.8059680645785083e-05 133986.75533165626 13.961801761266942 25565 4390 1279478 CTK_20210131 31831182.221938025 931.5245510353542 0.9170303697335206 2.684164207400246e-05 5953777.934706839 174.26813940516868 12450 None 214497 ETC_20200523 748578501.6108644 81784.9678088753 6.416741056889476 0.0007021958332188748 1356509584.9378872 148445.35096864146 231494 25492 359190 VITE_20200331 4485765.901140885 698.3100834503883 0.009482395888229115 1.476918482961941e-06 1667277.3669426758 259.6846607636868 None None 513311 FXS_20211007 170658158.3239818 3074.169970284377 4.784360589753714 8.623669796297392e-05 2297425.4401321444 41.410420484908926 15436 None 92242 ATM_20210506 18465228.839762148 322.54978861087704 9.8321118572034 0.00017155614850187286 1870763.0940082022 32.6421134979623 None None 141318 EOS_20200901 3035366029.1372623 260360.55418632302 3.2187740786904366 0.000276092502480371 2504985233.7037435 214866.78621788367 None 72580 82491 POLY_20200229 16928437.21839144 1934.0632251298584 0.028243156500893908 3.2329743685450945e-06 15976063.061585369 1828.7687633898431 34958 5000 368062 SNGLS_20210718 7016633.514019143 222.44663715387273 0.007900292053465565 2.499344961446832e-07 47702.04356287073 1.5091070231673163 9484 2136 None NANO_20200625 141221728.48941222 15178.876240255122 1.0577129944649932 0.00011379478683383999 7751604.807802733 833.9617848509619 98060 51890 210277 XVS_20210217 398630833.1628356 8105.610146093182 47.18023288983176 0.0009588371669483166 56478306.679286264 1147.8005989681355 24953 None 29971 ELF_20210806 127357044.91913521 3108.06081019418 0.27597720901532385 6.735935592324674e-06 66581939.45041883 1625.1039618462828 87982 33389 843761 NEBL_20190126 16950671.03080348 4753.3920518390805 1.1491246031741649 0.0003222432755242904 180967.34825782775 50.747770002022065 39694 6181 488373 CVC_20210219 301310425.4196335 5829.505601961768 0.4485097825384373 8.675162438639082e-06 62439927.1950699 1207.7250757124962 89807 9105 153842 BQX_20201208 39071186.03912957 2034.2097821027658 0.175689456542222 9.150777962629722e-06 795074.6219171654 41.41142827849365 None 86 203927 PPT_20200610 16622343.262604726 1700.5190440074289 0.4602629598257035 4.713261575911307e-05 9422848.303565841 964.934238063745 23735 None 2134911 SC_20210429 1890913437.2573998 34544.867704662334 0.03974459146791797 7.258539235322127e-07 432758960.2932507 7903.460009801234 132746 41988 54045 NAS_20210806 17310157.856399566 422.2951969165084 0.38030750570986277 9.28658651855749e-06 6311762.052580663 154.1245531729148 25283 4928 715519 SKY_20200407 6865065.33487484 943.8903431202378 0.4014297505086347 5.517633665809569e-05 259861.7298663752 35.7178765985702 None 3826 269101 NEO_20190614 917346149.2863005 111564.87503949422 13.019733696521676 0.0015825426005902218 571558691.6860664 69472.69425122425 322001 97673 216321 NXS_20201129 11352011.647684693 641.2937682013279 0.1904287510642307 1.075e-05 40237.114053744786 2.2714478441958574 24626 3517 510508 KSM_20210310 2598586750.0796027 47542.94174521865 289.7129245998952 0.005296356229588078 384007176.74396473 7020.186640148132 40827 None 90363 RDN_20200506 7412258.966225395 826.479888422899 0.11138577033794139 1.2378742983876733e-05 2626105.6179460427 291.8495459019658 24979 4312 1420050 MATIC_20200607 72034389.57211286 7442.573715325542 0.020640850444044897 2.1346308982790147e-06 18448017.99356132 1907.853037732982 40458 1840 144914 EPS_20210729 160109164.4249592 4004.026889776098 0.5825799689573754 1.4560165072918286e-05 53341475.58902484 1333.14005148376 18871 None 22794 LSK_20190627 268027136.36369887 20553.104091068137 2.0128858239257013 0.00015435396737754946 14504763.285800625 1112.2676370531121 182837 30481 183148 LTC_20190510 4567492895.987282 738989.6109052068 73.94666112046016 0.01197685214917254 2885772293.999368 467397.27768243867 443834 202520 206704 RAMP_20210804 58721025.542113215 1528.307048031869 0.1956034584057182 5.091779939052207e-06 13115597.048333677 341.41387112328016 30911 None 118954 GNO_20220105 989611136.9610817 21367.4331851781 529.1237521603803 0.01149996433567002 2809274.6538246106 61.05671536418284 107106 2443 125081 REP_20200414 109412088.1164483 15978.59329048071 9.946553465131664 0.0014525993900437013 29356044.126184266 4287.170620585085 130917 10124 261589 CND_20200806 18087882.197702967 1544.0604092313356 0.009379015773676383 8.003357179120778e-07 159560.60710540146 13.615720041393201 34311 5933 353871 MATIC_20190726 26551219.211016078 2680.8968165553683 0.012192110402562148 1.2317188395694457e-06 7970652.140126811 805.2422493308103 20981 1038 191906 IOST_20200913 126953734.21081644 12169.900834513643 0.008391885876388389 8.036708596847784e-07 153693074.45174623 14718.81852204003 577 52189 275570 ETC_20201115 585960412.138194 36412.11538061918 5.038179262703641 0.0003132015556807565 389886488.02706444 24237.536661895912 237511 25952 158636 STX_20201018 150800182.6606824 13275.475304829659 0.16977795581092414 1.4939084773221548e-05 455225.28633659566 40.05613750627381 44352 None 107798 ETC_20191019 504952025.5598556 63447.625116362055 4.416226119633596 0.0005549096221840481 517584317.5599377 65035.736469355135 229658 24987 405893 ARDR_20190810 58361720.065840855 4920.178496570994 0.05858309789691407 4.938592515504401e-06 2090365.1760482474 176.21911752206455 67448 6552 897983 SC_20211230 756407924.007871 16309.138938459508 0.01532643661664882 3.29346156003243e-07 21721107.615291502 466.75972218212985 146125 50900 97295 XTZ_20200414 1373728374.4483538 200507.5893530354 1.9410760546973382 0.00028327126948919564 166560344.44415486 24307.012650573466 59223 23333 99470 GRS_20210723 45657762.859299764 1411.7213508012517 0.5859972598534454 1.8100808658220402e-05 3533659.5233045104 109.1508429760061 41452 106850 8801723 MANA_20200129 48315852.74795248 5169.710135598573 0.03630297572866936 3.882506416319401e-06 14975435.000963172 1601.5828265146124 46093 6527 80671 CVC_20190719 17125077.785233594 1595.6438298053451 0.049655370110217686 4.653915199130168e-06 2360403.646408186 221.22719822082038 88608 8143 434521 WAN_20190515 39071572.5339088 4888.736637894307 0.3679646519361107 4.603426751102025e-05 2017645.106757927 252.41776376640175 109053 17110 543432 STORJ_20210729 145298507.6709957 3633.6435749303196 1.0113918460087856 2.5279279083420453e-05 200116907.93167344 5001.831075541402 103760 13686 53900 CND_20200309 10394538.80201507 1286.6922525893824 0.005550512324667362 6.89969850517625e-07 60475.121388681204 7.517506137072528 34987 5977 433845 RDN_20190324 16776234.659429971 4192.517165356249 0.3319126858111318 8.286995633529681e-05 1051153.8180752427 262.44574169468035 25234 4467 918297 ENG_20190618 44911962.487847626 4820.257132039702 0.5773321484029049 6.198912903451833e-05 2660905.934004627 285.70596968838123 61830 3461 334360 MANA_20191026 39551582.35865859 4568.334154577544 0.02978167455023393 3.439878581711459e-06 6334323.32419829 731.6345860872312 45878 6404 85405 BAT_20200506 266917253.04452533 29766.48830684687 0.1828002394786557 2.0373683361794214e-05 88708518.72730353 9886.853962545834 116435 37772 19988 BNB_20210203 7569477058.56905 212549.96124047885 50.912193432972956 0.0014331081245939797 1178306794.5116994 33167.71340252977 None 119383 423 VET_20190804 303502424.3693935 28128.17179817028 0.005469810299708387 5.068362636047631e-07 26597513.53397708 2464.543309931015 113274 57174 138282 CHR_20210221 27144789.00072467 485.8251213004047 0.06065822549617735 1.0786501293674994e-06 8738542.35799316 155.3924429511494 38393 None 468046 DCR_20210813 2098770684.681574 47206.91756655212 158.8907754736018 0.0035739571238748943 30791498.698522255 692.5983953464404 47866 11475 143950 EPS_20210805 166330469.5643044 4181.9596266824965 0.5894554712697662 1.482350501676429e-05 46519151.259406075 1169.8540529006912 19152 None 26035 ONE_20200612 23998239.472108915 2580.7824995006285 0.0035702825806440486 3.8394994820794597e-07 4421889.603710595 475.53218715244424 72429 None 152068 BTCB_20190908 0.0 0.0 10476.707859629285 1.000017431428725 82191.36420173902 7.845288616986812 None None 70056 MDA_20200106 10306329.19597316 1403.6023702667485 0.5262332928029066 7.164644275184804e-05 1086337.6441666745 147.90441596236306 None 370 1886046 VIBE_20210220 1226011.8805484336 21.963047455062725 0.006488776471325067 1.161287055389521e-07 24289.103640803234 0.43469861798643894 18623 None 825902 SNX_20210430 2700664984.592473 50394.04431486241 17.70300581668589 0.0003303152324032082 192977552.60786632 3600.71198068458 118428 6179 27259 POWR_20200531 38102156.75010637 3947.4251704862722 0.08873476576794483 9.187664123003328e-06 2242449.691657129 232.18492099880888 81771 12752 202270 PERL_20200721 10642967.075966123 1161.6590353044571 0.03018261156558918 3.29420456436232e-06 4969626.717970841 542.3972999135971 12013 487 1781566 CND_20210617 29405295.712053586 768.8840985279473 0.015225207490359506 3.978089288274113e-07 127078.85059012128 3.320355500040617 35898 6250 130832 PERL_20210723 0.0 0.0 0.05454932177868553 1.6849397644887863e-06 1791540.9051868517 55.337782623670606 331 682 5644185 REN_20201031 237349022.9265301 17473.72885094951 0.2675954477713425 1.9758218409338412e-05 48794546.636826225 3602.8016084147635 26766 975 86711 LRC_20190804 41643682.44938971 3859.4770920815317 0.04337031844423755 4.018722578513923e-06 4740647.338347382 439.27153820379294 34732 2452 581854 BCD_20201229 88119732.25250642 3249.669611178705 0.46686857885052113 1.7200484445128274e-05 1569160.4639201083 57.81138713173 27888 None 2009944 DUSK_20200310 8660210.81671137 1093.842294842482 0.03325394311061644 4.200106766253708e-06 417631.867487412 52.7485846295638 17711 13341 936304 GXS_20211230 182103185.00468123 3926.381587385958 2.4619963152288316 5.291242126003306e-05 787701085.0953039 16929.014630825706 93976 27123 757072 AVA_20201226 28127209.29603823 1138.978939932124 0.7287807569413625 2.9555379789048827e-05 900190.9725692201 36.506844923592304 40454 9036 106233 NEAR_20210428 1849478703.4798698 33571.994469155325 5.145758337195775 9.337999196285168e-05 122075480.32369407 2215.30173484595 52315 None None BTS_20191030 79503782.44618896 8448.972090867413 0.029381319470180883 3.1227386936461128e-06 13613745.275029361 1446.911503716562 13530 7117 129148 WPR_20191011 4631546.941327145 541.0195241566612 0.007614900950936395 8.895105978986807e-07 481037.931969039 56.190926347519714 34180 None 790860 BAND_20210722 178439409.58717167 5544.876213257052 5.088869335033137 0.00015757272081255664 28333913.671853278 877.3367077449133 None 5510 263918 GVT_20190704 13559375.999240434 1129.826440609819 3.0435030152551246 0.0002536203678830014 2781114.6910741623 231.75509521087906 21456 5752 196385 TNB_20210201 10520337.802335024 318.33252774137975 0.002905971033687327 8.765605389630435e-08 442093.0742919445 13.335347771221855 15907 1410 3046579 WAN_20190804 27272547.86978794 2527.123857277642 0.256835941673763 2.3792098766005718e-05 2054018.4565343098 190.27480992959156 108137 16902 529577 ONE_20200523 18512506.075707115 2022.3446297983705 0.003540095334135878 3.8743778901820523e-07 4264644.077786818 466.7344002052485 71748 None 176675 BLZ_20210421 111528683.13841896 1974.0097038723068 0.3872665830657448 6.868385849968152e-06 42532604.627812944 754.3391363007598 54928 None 191106 POLY_20210324 478503873.9372286 8781.119929345025 0.5935586725109657 1.087220445416266e-05 13081766.126809087 239.618495254284 41865 5368 242292 GRT_20210909 4073348283.3635607 87923.1220150782 0.8200503556710512 1.7712846766535845e-05 296800619.21478283 6410.806180386841 138347 17478 31512 BTCB_20190730 0.0 0.0 9515.385062222158 0.9999943615928047 352167.24396398757 37.010090080308636 None None 50789 ATOM_20210420 4641677270.192002 82953.85855193128 19.236729044647287 0.00034394122720481047 1132555240.1254358 20249.411335050772 104887 24382 44770 MANA_20200704 50254876.52907027 5541.300527564175 0.0377684512222298 4.166416141218732e-06 10721274.165750973 1182.7143632600096 49174 7020 70384 IOTX_20211021 665423129.2419095 10039.027916712912 0.06984846164427436 1.0579596845638122e-06 28766358.051216926 435.7096258598826 147747 10318 61368 RVN_20210131 185086834.12653035 5410.480749760921 0.023085165607726752 6.757069044962327e-07 462859964.289588 13547.993503701455 None 12705 133359 WBTC_20201014 1144719130.88399 100199.80374826952 11432.581485119832 1.000926184452473 58792137.06471463 5147.270500943631 None None 152934 PNT_20201014 12208602.02510282 1068.5799443837764 0.4143307695554846 3.626085009444237e-05 1495705.0634191586 130.89912957303946 7084 96 272628 QSP_20200404 5282126.514382621 785.4823989170195 0.0074045792603320655 1.1004206459462734e-06 28422.873870330906 4.2240235568275 55090 8296 386866 HBAR_20210722 1523015888.9814136 47326.56165062025 0.17082816318550675 5.289393054153764e-06 47283447.91332191 1464.0486457585762 117449 23430 41411 MANA_20210821 1117341974.3894632 22738.79915109706 0.8417641084711532 1.712215740863703e-05 121518298.62628587 2471.7797019024724 159330 35630 19080 COCOS_20191015 14139292.782567427 1694.1314697005116 0.0009003868754110027 1.0786948870667203e-07 3080609.019969941 369.06770740925305 12213 136 85869 AUCTION_20210513 167749772.21767312 3254.318214824625 37.02284107981913 0.0007345249085856689 41575451.725099996 824.8476882675843 34207 None 32937 IOTX_20190816 19673696.22883792 1912.0910592700704 0.004787538880406126 4.6469987312584246e-07 711502.7732986294 69.06163202846103 20352 1760 702138 BNT_20191026 22963496.93963793 2652.3572793268836 0.32940823132054387 3.804770338376061e-05 3729611.752579316 430.78207587545324 767 5092 174130 STORJ_20190513 30975980.26351915 4463.964155938991 0.2270334852217281 3.265923085164293e-05 4469421.902951879 642.935475175998 83938 7696 186547 ZIL_20210909 1297781856.2326868 28001.368059831057 0.10382056308273567 2.242493661983888e-06 175623219.64960974 3793.409949506859 321936 36484 64746 LEND_20190613 10712619.640797304 1318.559460035918 0.009613084354874598 1.182152316107335e-06 2447637.1247369526 300.9939150831296 42138 5865 1092370 KMD_20190712 157292528.11859718 13887.704290972339 1.3706039484235646 0.00012088533109194239 11232340.638546834 990.6765689606771 97962 8441 312186 CND_20190708 23754333.72205727 2077.160160134625 0.01362893485405313 1.1916191167315576e-06 291691.5928829894 25.503480792255754 36180 6137 575045 XLM_20200312 1022095188.4788197 128754.1966632701 0.05045430127032497 6.355771068578821e-06 307422321.72787356 38726.250271600766 281642 106782 84088 ETC_20190806 692850756.7115219 58663.73908541834 6.159123861439837 0.0005214397694947337 623937753.66355 52823.41543515027 229284 24871 465281 WABI_20190511 16251292.769124333 2550.3720756576354 0.30971120249861295 4.861416230653358e-05 2623819.1261457675 411.8506784138966 36399 8048 956243 BNB_20190123 930093998.4099445 260382.39429209902 6.449001721640825 0.0018054882820734924 33172193.607380364 9287.019826311984 907028 46969 1078 GXS_20210814 50463216.70433234 1057.912843037678 0.7209121692881425 1.5110113104884583e-05 56061125.309791714 1175.025169923974 None 27014 491456 EOS_20201228 2604651648.065543 98265.07765060013 2.720601527450898 0.00010334815686012262 3438223343.7782106 130608.63263789333 191754 73693 102898 CDT_20190228 4953956.021052789 1296.2436485624512 0.007330813583870028 1.9217054907882522e-06 164245.82949832306 43.055536575160374 19454 283 414605 NULS_20200414 18449818.287630726 2692.911246257048 0.1956007749829046 2.8565630037407277e-05 8270189.710804132 1207.7824315299906 22777 5182 528791 LINA_20211207 120193467.5881382 2381.2784037177325 0.038544893017770386 7.632952048806771e-07 19762221.633968867 391.34650092408447 51230 None 138845 KSM_20211028 3213992781.7815948 54914.94161186904 357.16409650391466 0.006102031560276329 213470271.48126113 3647.069642525321 167404 None 88365 LOOM_20190401 52244267.00732773 12731.153698795299 0.0754895784638584 1.8391444302340938e-05 8897141.931704806 2167.60105986433 18646 None 433767 NAV_20210428 46976145.43676972 852.523687213581 0.6554831466390517 1.190009737756594e-05 2131752.249192573 38.701314412597725 51147 14000 446539 UMA_20201124 470418720.08787596 25693.726166270728 8.475519128566134 0.00046181935037833906 15028344.358432407 818.8737614290991 14856 None 96214 NXS_20210202 28471572.808289606 852.4814941673995 0.4195730486581302 1.2562644917470609e-05 540673.995285095 16.18858847249556 24316 3548 387114 CELR_20190507 21228145.108217813 3710.9474722750906 0.008954348209372305 1.5654961768704822e-06 3791451.657002951 662.8626601336346 13080 None 376913 AAVE_20211225 3629798332.5024605 71387.99657734614 270.2152311476174 0.005316139977571529 694256147.188158 13658.6040804099 None 14600 14216 RVN_20210124 136971452.2252236 4279.164066289213 0.01711431354981416 5.340183637083379e-07 10369215.344075676 323.550891764678 None 11153 190837 COS_20200914 23684844.458773803 2294.6459388068056 0.007880451776721503 7.630763829567387e-07 1302430.58524335 126.11637609096518 12996 None 229143 RSR_20201111 162719314.64967516 10646.910845067476 0.017388661755206588 1.138284680363382e-06 96082768.75635193 6289.7044788110215 46858 None 119364 MDA_20190622 18539649.728812683 1826.3416914461448 0.944508406630711 9.30435637233319e-05 596016.6372385396 58.7136245455911 None 363 2360786 MIR_20210806 242997521.78244278 5930.901079620076 3.1261633180803354 7.632856536086998e-05 22217493.483397234 542.4634707004165 52780 None 15673 CND_20200907 20290709.755304936 1969.243282594074 0.01039927521523365 1.0108875936440209e-06 122237.04856965554 11.882358464916354 34314 5931 303234 STORM_20190914 9530239.582162477 920.5870835596319 0.0014826196284871249 1.4317357017499413e-07 142891.39904203606 13.798732564348821 26433 2545 2939778 MDA_20191102 14248179.278106112 1540.2902730218727 0.7289551281746856 7.87255279510801e-05 606046.3652315002 65.45165569402444 None 369 2018091 AMB_20210429 10449524.52631578 190.90564344234923 0.07229585332714082 1.320336349034399e-06 1343382.7550916874 24.534146850544936 25375 5623 373333 BQX_20210804 659159600.5708297 17156.392836822266 2.954776979126491 7.715975506510534e-05 17229283.63984027 449.91798534666714 99262 6450 29593 BTG_20210825 1175154276.6009834 24454.4759993419 66.98185766894554 0.0013947292569276783 43152718.712366164 898.5471797688209 101673 None 217752 MKR_20210204 1581591550.976242 42202.688055582126 1759.5680463103406 0.04691016767868925 195431571.57629842 5210.214979510362 93363 20598 38971 HARD_20210602 42033756.51703803 1145.5821683382203 0.6575604482020333 1.792601306305212e-05 5291171.862484145 144.2447096462261 31885 None None TORN_20211021 92553766.48324999 1396.357561171439 72.15958936159183 0.001089030546407731 9853400.219014859 148.70724624992644 26048 None 94998 MITH_20190531 24847483.77047441 2991.869063838809 0.04646116456020064 5.5994726736734435e-06 14308470.531464284 1724.4485905897407 73 2064 472810 FLM_20210325 0.0 0.0 0.4397246987027693 8.346220561844795e-06 26124327.547806542 495.8543388331582 None None 115259 OAX_20200423 1813403.7404377863 254.95745578566314 0.03445411634211076 4.842974382824543e-06 140859.67328416492 19.799660003309 11943 None None FIO_20210821 79137851.10511635 1610.5183039525082 0.22719502976271438 4.622648616734734e-06 6978633.072702862 141.9915239955808 None 514 401470 BCD_20190830 119023804.41922365 12542.469488295272 0.6321178050557653 6.664864040585034e-05 4197351.242130901 442.55635793893265 21391 None 2670030 NEBL_20210428 54180131.35456036 983.3986900671796 3.044561256289981 5.5249603073606515e-05 1748091.7008740753 31.722591361899468 40163 6049 477279 MDT_20210422 40366345.215060905 744.9945117992601 0.06620958599450157 1.2241077734415248e-06 17514854.12825958 323.8212226682318 30256 235 381469 HIVE_20210217 116246304.9961442 2364.0395443808106 0.3099533651414059 6.299138183828971e-06 76896351.50537129 1562.7536218025448 10720 116 135333 WTC_20200321 6031501.802311932 975.6448355332791 0.20752618639555942 3.352846901090294e-05 10073000.91412655 1627.4201577257707 54834 19425 966319 BNT_20191017 22744447.749686763 2840.119002450426 0.3228198621550589 4.032144046473788e-05 4908959.80976255 613.1479314555237 None 5100 174130 STEEM_20200117 46962662.79856469 5389.621526734009 0.1399210402941652 1.6057893779300305e-05 628928.9699169245 72.17838412592104 10439 3804 175956 VIB_20210809 7080280.143290053 160.94348870992843 0.038779439572839663 8.815743728925443e-07 1196239.6842501203 27.19415909791996 32732 1277 None ZIL_20210610 1403612053.07124 37394.1420890192 0.11565247037952296 3.08400435715307e-06 176602531.54970303 4709.306900200718 296004 34070 31091 SCRT_20210219 192521146.40715134 3724.9640472981873 2.763121530924472 5.343907155131859e-05 6853417.887062912 132.5458488665559 68693 None 189901 ONT_20190213 346364579.51506746 95411.25645198548 0.5793497769729271 0.0001594378978524907 15232745.86329924 4192.0737273005725 66896 11011 281556 PIVX_20210310 81382925.62152499 1489.0865729042453 1.2460526031703731 2.275754656810988e-05 1352289.1642014096 24.697820581219975 66334 9305 246345 REQ_20210813 293597264.541246 6603.722462758382 0.3944669849072308 8.871931457812918e-06 106765257.96504825 2401.2505152094914 44182 27965 309382 QNT_20220112 2276321355.711324 53099.75775331183 169.36539456973452 0.003958445895185287 40727168.75355456 951.8845002817109 73263 11465 71530 MANA_20190410 75347006.3125334 14567.610752902214 0.05716223535582867 1.104653703907584e-05 10950867.378047958 2116.242679254831 44157 6158 117892 NAV_20200625 8642804.790630702 929.8421537250596 0.12534294501602308 1.3485107759727105e-05 275527.26846656593 29.642792464625217 48509 13845 966957 ZIL_20210124 787968331.4589435 24633.387443327058 0.06771594634263733 2.114579528124554e-06 93325911.81682812 2914.307090576151 124654 14846 35147 NAV_20190123 10995977.404469786 3078.3501311582277 0.17178376524789843 4.809469949870822e-05 1629874.9686660906 456.31987822214234 48062 11490 725483 GXS_20190714 99092181.90206897 8706.35186664159 1.654798480758155 0.0001451783491588005 4228910.052048374 371.0096348506177 None None 741418 SKL_20211202 821525858.114109 14372.539036823457 0.3111762549183225 5.443208876014917e-06 40381865.0498502 706.3743547112105 80487 3116 166122 DOGE_20190904 311930939.15459096 29351.741826507718 0.002580704584521419 2.428481506487541e-07 68005172.37299736 6399.38815329178 138215 140061 101956 KAVA_20200313 7416857.195702848 1527.6981741552377 0.3936769033248272 8.242041220607543e-05 5241683.747338387 1097.4017816662465 17780 None 380992 FET_20200425 5784203.585062676 771.5538277331954 0.016918821132319288 2.2572682086516934e-06 2487478.6786779435 331.8733910102479 16672 373 956265 STEEM_20210420 378743762.11388 6755.579120210845 0.9805356486261821 1.7522065831642996e-05 10840589.261059746 193.7201558680984 13441 3931 169708 VIB_20210221 12052822.37356427 215.00521996529275 0.06601975583597533 1.177698607481524e-06 4272545.483213585 76.21613867345162 30667 1118 None ADX_20190520 13166643.675707443 1608.9484380376339 0.1429396684840723 1.7468786896331494e-05 770311.0998125084 94.14042014518098 54534 3913 959810 ARDR_20210120 87740911.05415612 2423.1009235029182 0.08775373395521993 2.4347708703642334e-06 9213724.739867235 255.6393624871913 64320 6289 None MTL_20210420 266528106.71627617 4756.868297962537 3.8825931396316204 6.93781004350263e-05 108033372.6222851 1930.44954919862 54320 4040 207061 DLT_20190603 9855069.001317317 1126.8326381619813 0.12325381030728759 1.4094241721207177e-05 1606121.351796858 183.6621724665537 15124 2679 2533353 EZ_20211111 0.0 0.0 4.215639829652945 6.489962971931894e-05 967496.7533031554 14.89457913419214 None None 233696 OAX_20210523 11116415.497911287 295.7747306094669 0.19536916930693318 5.202065929096148e-06 534111.0372597661 14.221695465767796 13908 None 1446066 BCD_20200313 62001992.92165321 12883.505773426728 0.3279858727897638 6.844342128206325e-05 6807308.415441753 1420.535200836721 29144 None 1280057 FTM_20210124 104017198.57830942 3248.9141963094494 0.040762208738444265 1.2719042425092237e-06 64506215.624472424 2012.789097063846 None 2881 149161 XMR_20200625 1140751371.8100622 122728.52831045834 64.78278742262133 0.006969701160746354 72996057.1253709 7853.331483834114 319667 173731 84747 KMD_20190701 157016278.4801368 14471.904146950554 1.3620913263578924 0.00012628224123842786 6325393.2425071625 586.4399984941454 97457 8421 312186 BCH_20210117 9183861795.308596 253070.85230013094 491.7952129824484 0.013587362150556621 6654056924.80543 183838.88012951677 None 363565 393369 CRV_20210420 795022436.4277347 14208.39461905876 2.816368002459534 5.0360606173660155e-05 424316389.694987 7587.371599093993 None None 25328 KEY_20200127 4124105.542489699 480.48912446651815 0.0015210681703750261 1.7699751768421845e-07 1564845.493464151 182.09162041317418 23554 2777 347689 IRIS_20210112 37804854.74192547 1066.3164076219837 0.04016134113793909 1.1298182572511173e-06 6912189.057005607 194.45360072397898 11258 None 805488 XZC_20200730 59484950.5192195 5357.13083238283 5.579053355837254 0.0005026557164658851 9766518.823150337 879.9336022287347 64681 4144 551795 SUSHI_20210805 1691887535.0014873 42501.1879197314 8.758866256652121 0.0002202661680567044 218608137.7862484 5497.512509637746 119871 None 5495 ALGO_20210724 2521132450.856995 75422.99435405404 0.8072079901039299 2.414089673481372e-05 150659699.25326222 4505.728741984844 116711 35998 209093 NXS_20190920 13738765.31325194 1340.3682318286264 0.2301924059159874 2.2448917725158646e-05 247312.79349968594 24.11853914798501 22148 3536 436035 CVC_20200207 19295378.918681618 1981.189636627951 0.02881121463625613 2.9599142806912186e-06 5967516.616952801 613.0716069343755 86906 8094 132667 POE_20190512 9928314.388965562 1363.0849184713795 0.004343749376215761 5.964110563356186e-07 393360.60670786275 54.00970328813995 None 10908 815050 FTM_20190810 35869993.412480794 3024.8909938704724 0.017305390487364014 1.45903294513063e-06 7714683.778420989 650.4318872318958 18237 2066 402967 NBS_20210220 0.0 0.0 0.022001472830599 3.932524102354583e-07 6574993.907808641 117.52086878171092 None None 724995 FLM_20210430 0.0 0.0 0.7555408072790386 1.4095237122796236e-05 36382430.64848874 678.7442612676011 19963 None 105842 ETHUP_20210727 0.0 0.0 40.355504742781484 0.0010779177007690659 56987768.22893717 1522.1745953328514 None 568083 142 PPT_20210708 72629912.14297122 2129.762552497982 1.9823322583184728 5.8342732994150394e-05 2423827.078742317 71.33652569373453 24475 None 723163 AUTO_20211230 21825750.164800975 469.6895174641753 627.3577520965098 0.013469630813118673 16900606.253975235 362.863017151195 83164 None 20186 AKRO_20210729 53728620.071136065 1343.6510039137772 0.019848218729852655 4.960578058103254e-07 6619543.353344529 165.43933720297062 43759 None 233466 SNGLS_20210325 20579754.34949081 391.5820385517127 0.02269023502020455 4.2999195294005764e-07 1811451.9727720872 34.32797283658846 9382 2124 1233971 DCR_20190903 255926365.72842252 24781.935442278245 24.789754961898193 0.0023994443894317947 12527534.065867485 1212.5622610615646 40586 9598 193164 BRD_20200914 6679924.923890037 646.9697032321121 0.09578802744444674 9.276868586773335e-06 310946.24962801696 30.1144889638957 235 None None SNGLS_20210304 9982080.069249084 195.8394653901993 0.011697877647436005 2.30022381720279e-07 452119.95994825865 8.890305843929758 9208 2118 2953528 RVN_20190228 37872868.29154412 9921.491933641288 0.012629899256326649 3.3126103072396617e-06 14661167.705067124 3845.3778823014964 19461 5775 319806 SNGLS_20200807 8374187.963081821 711.7985077132082 0.009528231492400764 8.096812015352023e-07 206127.94139146432 17.516148656645036 9090 2126 644870 POA_20210617 9926154.702595245 259.650981007253 0.03446381634504881 8.999153340304347e-07 130637.38371891614 3.4111888140664357 19733 None 235218 LUNA_20210616 2787067283.2283187 69012.18598629622 6.668991133816816 0.00016523404779731062 240289522.4984147 5953.525750599175 None None 19103 FOR_20211125 43720554.86511419 764.7127385181678 0.07754390634369186 1.3556876586291565e-06 8875665.030570269 155.1718260199479 37622 None 147074 ELF_20200730 49132496.800784096 4424.803436600134 0.10661691074793198 9.605858958726256e-06 25895362.81696901 2333.0933260010393 81494 33357 495562 FIL_20201115 1010701349.2476013 62806.085999757684 29.308241083537126 0.001821965083613271 46656076.5521233 2900.4040936494653 40060 None 36454 ETC_20210814 8247119913.596033 173030.46913209592 64.21687122529391 0.0013451608495403768 3611961546.7435994 75660.32368159114 494691 58962 120880 POLY_20191213 14223912.199755862 1974.4156010969202 0.025675523353025302 3.5624063335908215e-06 6260384.186234009 868.6106206720826 35006 5032 342968 ALGO_20210428 3833858958.8231378 69592.74065657436 1.3012851662984641 2.3614400523237312e-05 400275585.24620306 7263.794466023351 86893 23663 138222 LINA_20210430 252058716.84737998 4703.381655711355 0.10190335527535019 1.9013850432516768e-06 149644773.27540323 2792.1782647667796 34787 None 69525 ASR_20210201 0.0 0.0 3.731956008700702 0.00011254453107013107 1359373.7317397601 40.99460948388018 None None 183417 TORN_20210805 32492359.497108586 816.9060834192388 32.872873984862224 0.0008266613444620164 2285647.5654087206 57.47767871641499 22109 None 138254 XZC_20191024 38168235.11688607 5113.071229028639 4.405545477661389 0.0005900949743260084 10597689.409425534 1419.4935205366705 61281 4057 181391 NEAR_20201130 207949242.89533466 11461.257015418301 1.0129840784580715 5.57511579891339e-05 19853294.006829653 1092.6569867359456 None None None NANO_20200129 94001544.73565146 10062.565719425693 0.7068562167814193 7.559638685216148e-05 2791620.5444587586 298.5563706071282 97605 48716 243189 XRP_20191019 12742019107.658873 1601285.823461508 0.29466321158463643 3.703023982459006e-05 2167173025.5896897 272348.0017997363 939842 206464 26005 BZRX_20210325 66226141.0942175 1253.2822480057953 0.4663255680753311 8.8511199308709e-06 35910171.42901331 681.5951254145798 None None 167690 LEND_20190421 12596203.11840076 2372.0092825119837 0.011455471083855842 2.1570258404898607e-06 785380.9142497127 147.88452733747923 11608 5907 535516 DASH_20190329 831440344.8629793 206514.5094776385 95.36736796623987 0.023687278476510032 877090938.5639352 217851.21844132442 320585 23257 93159 ICX_20210711 595443954.146141 17657.68736634088 0.9309329625876926 2.7616607738623225e-05 59310499.393403694 1759.4766351129042 142043 32542 225369 RCN_20210204 37865866.83639753 1010.7285180202311 0.07361324782227613 1.962498264739868e-06 3588742.6852646195 95.67437249112186 None 1134 3103198 1INCH_20210108 103888148.98827346 2647.787884244771 1.3128644271305405 3.32594370478561e-05 107017067.19006038 2711.1157372383345 None None 25684 ZEN_20210221 746219491.7570173 13355.497995946882 69.82459376941677 0.0012455715082392862 131837912.25488761 2351.8009679043016 87564 6706 515975 ADA_20190801 1988646316.7879858 197835.01860441046 0.06397879826804305 6.35743997125468e-06 109275867.92471956 10858.515468321391 154254 74796 93580 POLY_20200308 17534500.159031264 1972.6915900005367 0.028996960015322218 3.2579273063052143e-06 7988482.379877126 897.538737425836 35026 5005 364083 ZIL_20210603 1503694653.039401 39956.91968693105 0.12440529869945091 3.3039297753470188e-06 178829551.30161965 4749.3176370628025 290759 33629 31091 MTL_20191022 16209761.959294379 1973.9249065512483 0.30635765748947824 3.728134490191837e-05 3812916.029977608 464.0022343836163 34602 None 240997 QTUM_20210805 831536887.6401268 20888.68485206408 8.005173643787591 0.00020131246116544628 194697753.6343252 4896.21908425772 249687 16767 166372 ATM_20210718 17332889.42981635 548.4006418136971 9.184967314565428 0.0002906253414093594 4971022.281954469 157.29016754970394 5008322 None 94240 YOYO_20190716 3660755.3783661486 334.7923396317234 0.020839748183639966 1.9079277940072597e-06 390418.16735255497 35.74369835054367 7624 None 1133014 CVC_20200317 10320834.91528881 2044.7573778591168 0.015298327573820887 3.0421251165023826e-06 4410968.31698792 877.1362386152485 86612 8065 104560 NULS_20210724 33453696.488497157 1000.8290191455912 0.35688883941525645 1.0673835424580937e-05 18803936.838754985 562.3883545362147 56476 5362 334900 RENBTC_20210603 370059663.554841 9833.408814845374 37838.83419678683 1.004805815211267 1135277.4981014458 30.147161142393205 81663 5289 81558 ZIL_20210114 820937910.5245916 22047.126546248615 0.07070253926967955 1.8918422347773532e-06 160543128.3583045 4295.775991482277 118427 14515 39054 QLC_20190905 3516889.061918131 333.2758440305861 0.014653704424658884 1.3886493501274423e-06 152168.43473924068 14.420148781967507 24795 5744 940522 TCT_20210704 13625357.533245776 393.03659952465165 0.023477243744196293 6.765896912326902e-07 3828930.7627917225 110.34579317638234 None None 405222 STX_20200411 54318365.53709143 7921.658623428133 0.09185069872702581 1.3392252189542913e-05 492889.8282532938 71.86559245723384 35850 None 52879 XZC_20190325 47798843.336117715 11978.425862764469 6.7717174162042495 0.0016970135531149755 1390035.1617704595 348.34715683589116 59675 3959 302674 TKO_20210723 104316011.09785402 3226.8160652273377 1.3937593433476063 4.305243876641211e-05 16458971.420566171 508.4083293318781 299493 None 20921 FUEL_20190726 3662262.234866539 369.7080836446411 0.0042586742600246 4.30236369624691e-07 254453.41012983824 25.706382955960525 1 1506 None NEAR_20201231 288005719.4995615 9973.519447517254 1.2105817462426818 4.1978396133050275e-05 29871366.925089493 1035.8260214223706 34293 None None MTL_20210104 25229694.37805754 754.0150160797454 0.398570981886269 1.2108104226167993e-05 8558051.805908995 259.98326006698477 None None 362516 GTO_20200927 6705700.532206281 624.5103004853146 0.010128470575953704 9.435039593608668e-07 1262392.033027577 117.59642015990957 16577 None 1334280 XTZ_20210310 3407207659.8894396 62341.25993639763 4.475118090913018 8.173227044558326e-05 460070070.68406934 8402.587524432736 91531 38553 112847 GXS_20210131 25456879.583983462 744.1036748877277 0.36334371457095593 1.0635135169172375e-05 10300207.24703954 301.4888986647434 None None 429351 DASH_20210210 1342441263.4800167 28870.955269828475 134.9918464722753 0.002897160041573378 881669813.5711337 18922.169156819036 343562 36833 65272 AAVE_20211207 2481113795.074409 49155.93847098486 184.99892576039215 0.0036634890353926283 278825566.0292712 5521.515326301823 366975 14388 14216 FET_20200414 5088857.447596705 742.3623975756809 0.01493027575868066 2.1788523730177533e-06 1883065.3155929642 274.80546225287645 None 368 974663 ENJ_20190804 72303609.12778115 6700.993057420931 0.08248875031000914 7.643462516201013e-06 1934234.7179330469 179.22747657703295 47060 12736 22336 GLM_20210427 414910340.9051914 7696.906980370933 0.41491034090519135 7.696906980370933e-06 10408423.554742118 193.0842883751068 157366 20977 153882 HIVE_20200721 78716795.43118781 8591.428274332962 0.21669768682351537 2.365091925427117e-05 5427220.1985180285 592.3401794078143 8173 91 125013 ETH_20210602 306488816882.1444 8353003.692947217 2632.6565998696506 0.07176988325382645 39898648753.4186 1087692.6991389843 None 988101 4018 RVN_20190826 153601019.6771276 15215.150991233224 0.03583690697658805 3.5498341357426282e-06 25431609.034938782 2519.134643457489 27502 6930 259754 GTC_20220112 158723827.20377842 3702.5513788080434 11.149685444440177 0.00026061019213214075 21040872.25032776 491.8045255276769 None 1929 22789 NAV_20190405 15743299.602884822 3210.969128378487 0.2430562246278997 4.959176119372953e-05 301319.5848398006 61.47947421320169 48603 11373 988851 GTO_20200329 6095423.451039583 977.7755747515127 0.009299680851085058 1.4874569611579498e-06 9311886.281303216 1489.4091842968555 16839 None 1148049 MTL_20210930 175840239.99988332 4233.205710089539 2.7227154008345944 6.55029971589018e-05 11397998.157579606 274.2126631025221 60503 4303 224443 ADX_20200313 3702008.712048495 771.302384989913 0.04233664305211573 8.720352918221468e-06 165381.94558713815 34.06479181749561 52413 3773 53936 TRX_20190906 989489986.5865207 93621.3723530847 0.01495938185696819 1.4153288669762384e-06 497106344.335381 47031.953981919854 460421 71274 65746 ADX_20190805 9219259.546065828 841.8708554037671 0.1001599486277383 9.146259654270648e-06 117984.34299622617 10.773921622032091 53991 3860 708738 BNB_20190723 4273525246.133306 413346.04249006 30.73883061193632 0.0029732666360057017 365423407.5952183 35346.212077321885 1013990 54790 742 DOCK_20190510 5790327.584210472 937.8367639668315 0.011298987978329926 1.8299338993554634e-06 2905259.2660603025 470.5228846668912 163 15294 217238 SYS_20190207 20830921.78720609 6116.425362977594 0.03802857646165112 1.1166042096650418e-05 290426.0023582665 85.27558141873968 62922 4630 845888 KMD_20200316 36743324.26185644 6799.282894333868 0.30739686332502847 5.7204962430575146e-05 1555168.0599809422 289.40871250977654 99937 8402 161250 ZEN_20190623 71899480.1452849 6701.481489312677 10.687537088032927 0.000996366498207639 1446989.1242314752 134.8983844247326 26056 1675 240249 DOCK_20210718 43499901.43393522 1376.1554416064848 0.06309499391196065 1.9963205177064497e-06 4380607.113988702 138.6020557172716 None 15143 269891 APPC_20190224 5992088.68340653 1457.0064277179304 0.057373238799724155 1.394323138549193e-05 644079.3411665873 156.52850479384304 25236 3413 1561264 BNT_20210523 853257139.3153002 22699.57966658282 4.2855797968387535 0.00011411529360582727 189970531.180423 5058.485425495997 118736 7275 28093 SUPER_20211028 219846496.20788568 3756.3424445955807 0.7651308912159395 1.3073183752848854e-05 28476092.92992016 486.5483797738619 None None None ETC_20200317 519397387.64791316 102907.0998273363 4.466631787207405 0.0008878788695259657 1648902986.8197885 327769.6012661187 231168 25312 345588 QSP_20190509 0.0 0.0 0.020389781951438212 3.422961920407428e-06 124669.08332907084 20.928989133079458 57215 8597 818331 NBS_20210111 0.0 0.0 0.014491012279841746 3.777679259626544e-07 6050752.902842161 157.73779846967022 None None 711556 WPR_20210725 4350492.771943057 127.33539613847934 0.007145760026289623 2.0915060232400016e-07 152980.5744891465 4.477617381574764 33822 None 6324665 ONG_20190830 0.0 0.0 0.16988147681610735 1.7911802783237033e-05 8307118.007907133 875.8780665403385 81456 16278 248344 ENJ_20190530 143120241.96759725 16550.935907402705 0.1642355114169139 1.8992781075623573e-05 23749631.58994372 2746.492214277971 46269 12529 19374 VIB_20190302 4035118.751584828 1056.3113034034238 0.02413706004486589 6.31292836794379e-06 863176.0324881254 225.75941112523896 32645 1125 2369421 AION_20210427 143195866.973032 2658.0350559897747 0.29154743197022337 5.410495749829466e-06 15174886.822371505 281.6133899782376 72842 73143 244178 AST_20210112 17171243.40062145 484.32876418508346 0.10008174697951144 2.815345968227052e-06 2100840.766720482 59.097625301088755 34771 3462 211626 MDX_20211111 669600313.2616471 10325.486259995261 0.886863437081942 1.3655827693095849e-05 32196792.18066914 495.7627385522826 25595 None 30289 VIB_20190201 3615884.6173179257 1053.8007842459826 0.021625000644658124 6.302314661678525e-06 801859.216038464 233.69104939608908 32846 1122 2912789 ENJ_20190605 123598543.35020627 16116.83547812948 0.1422276953945224 1.8515735095481137e-05 15783376.7245522 2054.739209078447 46352 12544 19644 STEEM_20200730 75706309.684458 6825.389463730207 0.21008262107173184 1.8940240441678715e-05 3680111.286238882 331.78466766035075 11584 3864 194139 LRC_20210408 654678901.8326629 11622.685393388838 0.5235754639464043 9.31005123189953e-06 125421232.0283326 2230.200183466321 68056 9794 106441 STORJ_20211221 237742184.99911734 5039.187028728169 1.6509317817440792 3.501765591597904e-05 51181155.537666254 1085.5954884500666 112933 14721 50692 REN_20190908 42693341.3541992 4077.893865698737 0.051900716255813266 4.957344769271257e-06 16043384.562288491 1532.398669591768 9600 878 312063 MDA_20210704 11535914.932695637 332.9691287844917 0.5882892276675574 1.69655367880716e-05 1107734.479635125 31.94569810529519 None 389 1489514 TRB_20210314 79475143.50493406 1294.015218442205 46.605087733996875 0.0007596319214184233 62911039.589784026 1025.4080875199697 15689 None 323814 RVN_20190922 152984780.5052013 15319.040874694045 0.03424797780002889 3.4290978626261903e-06 28335210.313469116 2837.078723021672 27792 7011 264985 NAS_20210204 15976131.936601942 425.82143755256766 0.3525005957914077 9.397517811339754e-06 6954457.555015683 185.40291710638644 23473 4844 795646 RCN_20190903 7151166.774193619 692.7748112449655 0.01420068637736575 1.3756834915981418e-06 1185175.800773437 114.81323792660733 None 1112 1734382 GXS_20190105 33543771.08042515 8803.931939867303 0.5593488074060325 0.00014684646747458686 1446875.289635437 379.8497866555784 10049 None 227515 PSG_20210124 0.0 0.0 9.157926833149975 0.0002857598729958077 1888467.2797868215 58.926892500952896 None None 41999 ADX_20200718 9326997.780624487 1019.0000883485118 0.10133446496957267 1.1070569407689325e-05 92761.72530655285 10.134016286478206 51625 3737 16348 ADA_20210725 39436084137.758675 1154320.8700624253 1.2307501718097118 3.602257942756141e-05 1102999157.4883552 32283.46066426611 531289 547500 7136 MDA_20200305 11683343.052080654 1334.5765419876825 0.5955164184889459 6.799043032838552e-05 937516.7557264104 107.03679308061551 None 374 1557783 SNM_20200317 1983002.9821726908 392.8853275312714 0.004568890760611092 9.072894564885725e-07 41310.60085062112 8.20345124381204 30155 9693 None COS_20211120 69693632.45199147 1198.9055147386093 0.020470533090180307 3.5097083872935005e-07 5385211.5095991315 92.33038494564718 31851 None 230602 CRV_20210325 649019550.2487261 12278.84479700033 2.525007652184889 4.792605657051361e-05 410759201.8345356 7796.439241261947 None None 26046 SKY_20210624 18835912.30566674 558.9044036499238 0.8969482050317495 2.6614495411901128e-05 419791.3872050514 12.456166237970198 19591 4401 389358 MDA_20210916 16515536.884445267 342.66042909574674 0.8413893280375978 1.7456945553703644e-05 809263.9424507077 16.790415698386756 None 390 734228 QTUM_20190702 473283832.1644661 44601.686830591825 4.942207082936321 0.0004655886478859717 700142327.8482184 65958.04552101341 178503 15361 346886 DATA_20211028 0.0 0.0 0.12474037123166495 2.1311483700262188e-06 684352.5353357204 11.691938831057497 69540 4666 190407 VIDT_20210418 51080753.80298973 847.3541508732932 1.1000490525684967 1.8300544209081944e-05 4218550.959840505 70.1803052859946 26817 1510 436797 STORM_20200404 8637528.063944412 1284.449784742259 0.0011392141741067114 1.6930263736354926e-07 377108.0228527398 56.043353647689074 None 2515 908527 NANO_20200317 47430506.687177 9397.305420848847 0.35303445660043836 7.020211733815878e-05 3346959.705764908 665.5544624532995 97642 49387 321803 FLOW_20211216 2866639396.2635813 58762.19670763527 9.062993669398358 0.00018545212326063194 71308375.68973106 1459.152478786333 128152 None 178119 ARPA_20210304 38242233.850439966 752.1672224666277 0.038868727257568174 7.644468167025537e-07 10040682.022067068 197.47411224526815 24651 None 841021 NEO_20190329 596856924.5075095 148247.3627447039 9.182422578850307 0.0022807286548775637 202442515.55644742 50282.63970975905 318680 97745 162875 TNB_20191030 7886694.472391838 838.2225998698923 0.0026931324012927044 2.862345499889499e-07 353130.92159615224 37.531860810757095 None 1462 2346363 AUDIO_20210420 302958084.558346 5414.373005346528 1.9213827938954504 3.435185926903696e-05 27464158.09797955 491.0239109675881 None 4704 38976 POA_20190923 3653052.928272683 363.40702065843635 0.016589660639578858 1.650484999977483e-06 398871.500637572 39.6832366269268 17701 None 603772 VIB_20190614 9551833.457397992 1161.5509151294175 0.053061905349327115 6.449494085870344e-06 1418138.8107214344 172.36994812903148 32701 1125 1919556 NEBL_20190714 14743864.61775325 1294.8392958270726 0.9597611514600632 8.427807052617164e-05 252529.53905373346 22.174998717061282 40550 6158 707671 LRC_20201201 239576338.16160983 12192.95250567169 0.20032723104556033 1.020448141372095e-05 33723403.05388382 1717.8385478333319 43012 7225 209194 ETH_20200913 43393172173.54062 4161424.9816850256 387.72351629002264 0.037131354768960664 11465259432.878637 1098000.5019915905 488533 483145 12393 DOT_20210218 30712299898.00881 588616.2302063387 31.93217512022303 0.0006124254789007467 2323010298.124222 44552.8902733312 180329 14445 20426 DOGE_20210826 38396676016.76047 783579.9006430977 0.2930733579604 5.980892528600827e-06 2155379873.9175396 43985.89989183474 2058393 2145105 21799 NEO_20200511 687114056.9872751 78482.25183780596 9.741696156459076 0.0011118885952757908 813031429.0309396 92797.02004880301 320619 99363 218752 DOCK_20190613 7296715.533624964 897.3405231813169 0.014248724047325193 1.7500029933185243e-06 1806235.2799839564 221.83861067916618 172 15259 238088 LPT_20211007 432070493.00856405 7783.762249274467 17.84123339019308 0.0003216137909821307 19030744.988638163 343.05644162328105 16565 1380 119717 PPT_20190626 32264315.269137785 2725.5471315524937 0.8906176280647685 7.52354513410036e-05 2425452.346876521 204.8915227737677 24025 None 671795 DCR_20210731 1997962734.3207047 47888.112863655064 151.81498260902833 0.0036320883830784794 24051821.791210588 575.4263579155768 47568 11447 142617 REQ_20190819 8594195.28186085 832.9321653501522 0.01177459356831618 1.1411699868718861e-06 413463.0359945965 40.0720079738122 41292 29543 589589 NKN_20200305 12505647.32152149 1428.507532756341 0.01925664386081395 2.198641106043209e-06 1611960.586231846 184.04675455534135 12228 1001 370779 QLC_20200806 7300632.307434557 621.9029482436954 0.03041930128097732 2.591262284348731e-06 1546033.0395991853 131.698524856508 26193 5635 940522 FORTH_20210806 140236682.79812527 3422.791670091156 16.349986565571076 0.00039919794331821527 18509164.26012977 451.91598632513865 31863 None 110884 WAVES_20210212 1041391129.557169 21839.66616028363 10.42700665316138 0.00021838413402502522 188051441.4307891 3938.5657413548624 159782 57489 119606 XLM_20190515 2174987530.9092145 272313.69404722785 0.11342927477925584 1.4192565475624913e-05 756271935.4473811 94626.70886420485 270593 101014 71858 SXP_20200730 103886650.47210522 9355.865601059153 1.573290002523373 0.00014174863780422127 63118166.17220422 5686.754547006989 59416 None 324103 LTC_20190414 4784333326.981138 943025.8855325554 78.05600050513047 0.015383252980169312 2736423002.5719175 539293.4180191755 442385 202074 239095 AE_20190729 95944510.04349871 10062.541091039917 0.2978591920414517 3.124514504355776e-05 24304792.249002658 2549.5495165646703 24885 6368 321495 ONG_20200423 0.0 0.0 0.08499099501724187 1.1953334004081697e-05 13036670.849288186 1833.5081373174175 84079 16485 204987 NAS_20190528 54530469.68238629 6191.221047591021 1.1969357635519284 0.00013600837496961004 4584510.080077174 520.9400412372603 24072 5167 501303 BZRX_20211007 94674281.31771661 1705.559876969953 0.30647882655077263 5.524176299758216e-06 12963692.51991444 233.66613537982983 31191 None 301368 BRD_20190615 27131214.96174483 3119.702869188573 0.45135882509948566 5.200826703881776e-05 918703.9587412103 105.85857229068353 167 None None NEO_20211002 2982238476.8609924 61931.80881755793 42.2842157762838 0.0008778615232665767 261939081.48635334 5438.110577555737 417676 113883 96660 BLZ_20210930 60920209.38870609 1466.3556212546787 0.19778081445723047 4.758204299834672e-06 10374258.821809867 249.58357598536466 None None 382517 CVC_20191213 15865168.883842997 2201.247364589002 0.023817653307568274 3.3087971846458422e-06 2812981.002378375 390.7850828517282 87323 8119 147989 OXT_20211225 231125256.37942374 4545.588349526129 0.3908999615392844 7.688808443377426e-06 13424658.941172345 264.05638570515663 78910 4931 155800 XEM_20200319 314551218.762682 58447.678849254575 0.03495451855852767 6.4822133170159525e-06 19791540.213334356 3670.283294570903 212017 18023 216330 NEO_20190706 1192035634.0394995 108457.58431008867 16.9057824804353 0.001538506101119926 473715089.79901576 43110.3119120218 323680 98043 188893 GAS_20210711 82206054.02588308 2437.792493318875 5.810821095319245 0.00017239957570810041 5552768.886511472 164.74349912628406 406559 112293 98164 GRS_20200129 13461871.940952376 1439.71129466233 0.18114597436860377 1.9373078753462077e-05 8824965.162200952 943.806483582062 37931 106892 4060583 REN_20210626 305034189.91247034 9586.76106350378 0.3456437583882097 1.0873006347512154e-05 54549767.59645639 1715.9863441405491 85508 1177 86030 XEM_20200417 339701357.80502725 47920.41457131411 0.037744595315863536 5.3244905085154e-06 21119304.646437857 2979.2222222910564 210600 17978 216672 RENBTC_20210111 491042808.7691649 12737.803758668808 38426.594380933886 0.9995572196949918 40189311.04546072 1045.4092187256085 None 2182 104896 ARPA_20210204 27712479.869455297 739.4710362832416 0.028234676877239517 7.527378264468158e-07 21430087.577378437 571.3271525541854 23767 None 1157851 XZC_20190117 32099415.89423561 8917.587532902655 4.871679302895739 0.0013536231700186506 612667.036695821 170.23294121293654 58888 3921 298501 FUEL_20200523 2446663.0061231586 267.2785505714147 0.002553847406718314 2.8e-07 805004.6082693089 88.25949809 1 1464 None GO_20200127 17636388.423589583 2055.1174910205955 0.019310680171573228 2.247067239806622e-06 2916124.141865881 339.33175673646787 10592 680 724197 KSM_20210202 902342750.8986235 27042.821715446367 100.5659234390409 0.003010841346634572 124523569.76250425 3728.1088827145763 33132 None 118660 GRS_20190414 30974696.81264294 6105.492089169204 0.42832210603830556 8.441359115950449e-05 2318312.9454100262 456.89241436473304 38940 107058 6013629 DGB_20201228 379258644.13196194 14308.201307060446 0.026997185262315253 1.0265749212167322e-06 78889496.74331346 2999.7934272481784 178910 23670 262819 COMP_20210124 2410482.647782132 76.29165725612297 2.6331942931530792e-05 8.27160423802612e-10 0.0026331942931530792 8.27160423802612e-08 None None 2976812 NAS_20200314 9239916.064104913 1678.3026226016314 0.20974319481800785 3.770285139795463e-05 5726673.069680378 1029.4107703383304 23685 4980 1191705 GLM_20210724 315434984.4694422 9436.652582303917 0.3154890376512296 9.435224096237564e-06 5995765.053214742 179.3133204457329 158661 21017 185713 AMB_20201201 2129843.009846992 108.3313204744741 0.014567594693156074 7.396125528993969e-07 347193.3856090999 17.627384045821344 20163 5490 628794 FUN_20190629 32248914.035149492 2603.338765900804 0.005358339933173013 4.329400183825574e-07 1442353.9874990236 116.538474536871 36265 17600 455027 ARK_20190512 72066632.69388548 9846.675559449097 0.5068537214257903 6.958730721847864e-05 3134970.5205067764 430.40851336300074 63616 21708 202158 SNM_20190318 10109713.313324062 2538.842326992663 0.025299582866176326 6.353459276758416e-06 165331.05309976812 41.51942419798943 31442 10072 None NAV_20190909 7292700.492212145 701.5128999813087 0.11027293638419416 1.060757773816993e-05 120354.87758504077 11.577398426240114 51430 14195 463565 LUN_20200107 2455138.1040515047 316.4281501558032 0.9072707103274986 0.00011696728353127308 4187556.736164834 539.8687850128858 30161 2164 3002754 XTZ_20200324 1175960645.0153687 182538.6771926909 1.6810735574072868 0.0002594309155968893 180960301.45208392 27926.61658708673 57640 22659 103142 POWR_20210217 90078425.45977978 1831.620985155045 0.2098043298208716 4.2634851981615315e-06 20072992.601856533 407.90820148416 81861 12717 332813 QTUM_20210508 2731065921.5088954 47662.2938925696 26.474150637830732 0.0004619478716105815 5868923067.782001 102406.93108144555 239055 16466 91634 WING_20210722 25997698.654989325 807.8597727093054 14.574741790298381 0.0004528996103179156 5694769.995825709 176.96087855748007 None None 411490 BAR_20220105 26103265.159336373 563.5472892133428 8.768432483635147 0.00019074063513615125 1321651.7426198365 28.7500295276948 None None 38699 RDN_20210124 13723797.125762967 428.74904631253884 0.20634801381498302 6.438682356216345e-06 1449412.3258922335 45.22604990020599 26791 4386 1545077 LINK_20210310 12982742393.45835 237528.25080265763 31.57922371478598 0.0005767538645202272 1661893243.6955285 30352.34049381216 177593 42777 31090 CELR_20191030 14738586.184802933 1566.2350508242366 0.004222586400990864 4.487897133081639e-07 5054964.817514769 537.2574995038487 18559 None 557601 SXP_20200903 158378799.2737187 13882.654599247098 2.402925018980683 0.0002105816062857514 178339140.2525158 15628.844979076972 79413 None 88692 QTUM_20190318 203678956.92117003 51146.846410279606 2.5029513365194025 0.0006285597776697473 259085910.0193475 65063.58298822754 175884 15216 328111 CVC_20210513 315758920.3788596 6121.946431126738 0.471171504946768 9.169952863362193e-06 37552628.753505334 730.850299624737 None 9717 107274 ONG_20190430 0.0 0.0 0.4157257520003335 7.984196661168584e-05 2259600.8797427756 433.96632786898874 77200 13856 265242 WAVES_20190608 238100225.4187724 29594.33438433531 2.3784747423075623 0.0002958569149566471 30956284.09372933 3850.6318976533307 139542 56845 46755 LSK_20190411 268599627.93956184 50608.72606159432 2.049303139831676 0.00038610678447725566 6075335.245021457 1144.646738924748 183772 30417 170136 SNGLS_20200621 8659999.925662663 925.680915997734 0.012820173097329824 1.3702130555270464e-06 1089796.9677338453 116.47690103136878 9093 2132 970834 EOS_20210207 3062510817.024969 78065.26905384859 3.2203018931379437 8.18612575137448e-05 2292499080.520595 58276.16906986701 195919 76244 71191 MTL_20211007 230868026.9418336 4158.76722503957 3.551976638295424 6.402946742180323e-05 56845174.57158679 1024.7157073265096 None 4313 216254 MBL_20200625 6590802.867591215 708.5647966048839 0.0018678990881463501 2.0095922019966538e-07 3925011.195304858 422.2750544121582 None None 98969 MANA_20210731 948413237.1402817 22732.01564843001 0.7138806508068196 1.7085944346235348e-05 123650203.42636795 2959.430952156884 152179 34885 19468 FET_20210314 438133405.34183484 7133.69324315902 0.6344899680481779 1.0342861756738007e-05 100336771.75154015 1635.596166375881 36615 1371 237569 UMA_20210427 1505989649.7944312 27954.530865511908 25.113809997129067 0.0004658805539743863 101897370.9056647 1890.2748571997415 35965 None 123733 GXS_20201115 26072223.626444876 1619.8129432431037 0.3721571163178908 2.313537921353713e-05 3109034.6740655275 193.27507931113004 None None 441833 XMR_20190213 806725533.6031506 222015.70940789406 48.05410495501995 0.013224559293425541 75014436.40543206 20644.081562545125 313560 154650 101450 BCD_20200518 103519594.74807754 10630.28792531258 0.5491006120775722 5.622363056882579e-05 9913588.935510477 1015.0743773758505 28572 None 907127 ICX_20190621 161467061.11922416 16880.034829410306 0.34051114158462764 3.562791888986333e-05 17416773.049382772 1822.3291450577915 113605 25044 300375 SNGLS_20190726 5650261.849656353 569.4050208802695 0.009717519078828634 9.826943750246353e-07 50218.81654295325 5.078430835774903 8 2176 None STEEM_20200701 72773433.11780229 7954.939833091211 0.20124957720275294 2.2003626741472725e-05 2176183.698516879 237.9330902881917 11516 3866 224107 IOTX_20190818 20223804.195607193 1978.681485766242 0.004902946043387772 4.797004790952964e-07 1841156.1567504331 180.13730574774456 20359 1759 702138 YFI_20210809 1168122691.8395514 26554.529294722593 32694.660783264804 0.7432572183774512 208464949.2727536 4739.094231709325 None 6954 22152 OXT_20201031 0.0 0.0 0.21095692726197035 1.5543939938345964e-05 4074645.0042058886 300.2320807261563 47600 1715 98448 ADX_20190811 8152566.860828338 719.4898679646219 0.08854968311413923 7.819188333989355e-06 259403.9460629778 22.90610465801391 53931 3850 708738 MTH_20211028 13156413.880320117 224.81504482169194 0.03785540151998098 6.46868049825337e-07 502049.33369158313 8.578952021675647 22176 2078 1313452 TNT_20190623 20162267.821262438 1879.6667576003013 0.04690751529773403 4.37355183571769e-06 6272561.149838505 584.8395754369213 17503 2516 824040 NXS_20200113 11343799.593123345 1391.4772833933507 0.1900186488487391 2.330490426176727e-05 153387.1958136058 18.81222677392358 22887 3544 610142 STORJ_20210828 209266994.13464668 4266.284982121129 1.4599629715443765 2.9767580286959846e-05 70097844.40534034 1429.2439273795396 104679 13790 71027 NAS_20200417 11873801.903995605 1672.3569640993824 0.2617250067431294 3.692715662462604e-05 4301090.020151349 606.8469605070103 23492 4955 1034510 DATA_20220115 0.0 0.0 0.10157812421756608 2.355972816026233e-06 64122.185631862514 1.4872309113454882 None 4836 157344 TRX_20201018 1846221637.7514503 162478.41666485267 0.025749164080843174 2.2657178501530554e-06 539961291.132538 47512.21949845219 539304 75596 30558 MIR_20210814 296729287.5977723 6225.592494857723 3.818805208915027 8.004106615263033e-05 67512013.63548768 1415.0325177310162 54270 None 15673 REN_20210212 888920716.7710695 18642.113559672347 1.002472632415058 2.0995873983390425e-05 278200575.98259056 5826.657054333134 44045 1035 83739 STORM_20190625 18451900.047592565 1670.6519549909349 0.003124689738787306 2.829330515022631e-07 563854.350481221 51.055639222085865 26844 2576 4259920 TKO_20210708 109711098.2181081 3228.946753489071 1.4619671454459835 4.302870197918249e-05 21042572.45139659 619.3262151662717 294352 None 20199 FTM_20200425 7043243.487747456 939.4969234246907 0.00331847007636283 4.427422540939723e-07 1728332.5602061911 230.58995136951484 21522 2335 315256 SNT_20190625 106161697.16722064 9615.311122534062 0.030099664643098295 2.7252512451759423e-06 26025186.2939305 2356.34423819844 111568 5744 303277 RCN_20201015 23433493.84134679 2052.9513135566867 0.045685031844125465 3.997802556711233e-06 281156.2452210392 24.603400952308508 None 1132 1120785 CMT_20190414 33474839.669219326 6597.043234786222 0.041723395808066964 8.224875069861226e-06 12282712.079793597 2421.2739739617587 292221 1639 939194 ELF_20190316 55814199.326766536 14222.299663056418 0.1684733568027943 4.292899489015768e-05 6326720.535183028 1612.1228821020509 86775 31723 915905 ARDR_20220105 249457666.94856712 5385.241897864506 0.2515623681090188 5.467451139055156e-06 17245381.152589254 374.81074587953884 76420 7446 None OST_20200629 5922367.086874515 649.3938712747727 0.008564089640883938 9.383458925717217e-07 124628.5326790858 13.655236766600492 17643 754 855262 FTM_20200511 7619278.03016169 870.1694440937741 0.003615035049997731 4.123500205564529e-07 1569432.6754870212 179.01779292553422 21697 2345 305591 SNGLS_20190923 6086863.518623756 605.5025397559585 0.010546221055940047 1.0491091014219079e-06 3428462.3103235997 341.0540130501619 13 2163 None ADA_20200612 2342819639.6444817 252500.7960217343 0.07547795199985105 8.116243518059724e-06 392139007.5701582 42167.223593665476 156798 80525 59755 MTL_20201015 20849757.252010114 1826.5964447148858 0.3227902488187371 2.824450207708207e-05 4794660.724188943 419.53809100133367 41192 None 460980 ROSE_20201201 55424716.07872067 2815.5154888922716 0.037045805365985084 1.8858802212653949e-06 4807468.995354247 244.73244954770905 None 529 251921 ONG_20200208 0.0 0.0 0.16009969588576672 1.6330660835496928e-05 3826376.247745457 390.30213258817133 81774 16265 309416 MITH_20200422 2180717.7131455317 318.44522470779816 0.0035299425923112143 5.156702443062474e-07 1608939.0618106446 235.0412159350526 96 2095 1180459 BEL_20210823 125391123.05164684 2541.7076322984335 2.609076475365955 5.29426851351388e-05 19802335.834513776 401.82372610595456 None None 475057 LINA_20211002 110479020.26388349 2293.890428393008 0.037395161166853756 7.764602799257453e-07 12955761.247576382 269.0089757885819 45657 None 133521 NEBL_20190616 19040538.423916873 2159.3138654917825 1.2496339303011976 0.00014167017494612125 557575.022712709 63.21191278333626 40260 6155 698724 XMR_20210201 2458607352.6621175 74381.6504095258 137.95757052400043 0.004161368471010072 417097444.36556894 12581.376634345685 341699 193202 56021 ARPA_20210112 20451679.719367124 577.3557723883143 0.020817036116563412 5.856245533626162e-07 16384373.429618571 460.92495195376074 22302 None 1160562 CVC_20200511 13468587.004166564 1541.112230412483 0.020121517687420938 2.2982822174052573e-06 9959658.305615062 1137.5933928451893 None 8022 103621 POLY_20190830 17616528.54024952 1856.3914402157673 0.03495203896702438 3.6852400896364063e-06 4073458.3626918746 429.4934574723834 35241 5061 281069 ADX_20210207 65558119.72257185 1671.8670771066377 0.5784417125993588 1.4704200898893589e-05 16685298.344814869 424.1464154056695 53003 3755 11021 RCN_20210610 34150652.71896987 911.4654991996391 0.06642066953659406 1.7712580025997207e-06 1687782.6927051495 45.0085586604371 19743 569 2622819 LINK_20190723 879917402.9288129 85023.8241954882 2.4113232546051497 0.0002332292117279794 68426283.95409377 6618.361199648214 28263 9863 123465 SKL_20210702 265148156.40623158 7886.2097373217075 0.218701834950547 6.502509458000272e-06 22123332.749464996 657.7776564079235 27065 2274 152464 EOS_20190530 8280882017.20323 958413.6016433379 7.9600287176750975 0.0009204870750956191 4926951246.019668 569746.0527393629 991 65505 118263 ANT_20201229 104296025.51242301 3846.499038236988 2.984466101726452 0.00010995441776387852 14319771.397656156 527.5724611615776 76478 2688 106385 NULS_20210610 61357781.287856795 1634.6415937399317 0.5414990598085726 1.4457843858649684e-05 39566248.27645172 1056.405600880879 54122 5365 225634 STX_20201015 146740384.58105204 12855.567646764972 0.16598685454181208 1.4530213984096035e-05 416404.9166682213 36.451395864573264 44407 None 104624 KNC_20190305 25380503.95690455 6835.089591040932 0.16060470868730936 4.325160660658027e-05 5211569.680066173 1403.5003297684439 93484 6574 214116 MTH_20200629 2628329.884220328 288.27665511139105 0.007566046936507779 8.295920804709067e-07 97664.09196865508 10.708545416581192 18995 1908 2521194 TRB_20201229 32300060.936632067 1190.2837534354987 19.849051609839346 0.0007312835323083533 32540278.976678196 1198.8567826872147 11721 None 383463 LIT_20210902 147277806.90492606 3028.21148475107 5.312460323927069 0.00010918578663109585 27737248.64762554 570.0773517183768 55388 None 504947 BAT_20190608 432877629.3979794 53803.919292266866 0.3404880383634801 4.2353084023977215e-05 51343405.25448076 6386.572542377376 101896 27536 48578 ARK_20191213 23675042.693770975 3284.982669289863 0.16641673423000755 2.311690125346431e-05 561981.950533955 78.06475302397908 62828 21688 104314 SUN_20201018 0.0 0.0 6.47693932531879e-05 5.7e-09 17.563184052817032 0.001545639754717476 35 None 8117582 NEO_20210421 7600878988.126247 134539.49790379984 107.51832011243692 0.001906896543013213 5089527364.1656685 90265.56707870323 380314 109043 88657 ENJ_20210131 311406121.3117427 9102.127317345525 0.3342216178885142 9.782726218068885e-06 34149495.90901011 999.5618209063495 76456 16686 66239 MDT_20200806 7236202.750492702 617.7083536274664 0.011934631712231452 1.0187831878550778e-06 7511722.407967225 641.2277048505925 13961 61 619203 WAN_20200217 29274827.728434112 2936.6955269921827 0.27406720635439175 2.7548772348980816e-05 3433426.0239651576 345.12218068503245 106468 16431 754171 STMX_20210710 173221248.87993532 5098.398249133688 0.01867622612160747 5.495384453165957e-07 11050296.351109993 325.14934428058683 68401 4612 72030 SNGLS_20210408 30636757.384656165 542.8828191612056 0.034303647067092366 6.099806116104891e-07 3150974.7349514654 56.03000439678346 9411 2128 932373 LEND_20190329 11021797.09504814 2737.5946980867566 0.00988180780124972 2.454383668149802e-06 736540.4663387636 182.93746730073815 11631 5926 466790 HBAR_20210727 1678399382.479851 44805.273252620136 0.1836113846383906 4.919539772281102e-06 137781221.55750084 3691.602242750458 117812 23556 41411 FET_20190316 0 0 0.23329287681196187 5.9448883835117416e-05 14860541.262444383 3786.8391153241055 7017 140 185069 BQX_20190616 15052730.588303685 1707.1683833116265 0.12730611545146894 1.4432610391247654e-05 1148578.6211651673 130.2136011628813 60786 5773 449913 GRS_20200625 15149587.42704858 1629.8788810414612 0.20111309037344074 2.1636891451935288e-05 1679836.0125770934 180.7263236504983 37429 106874 None QLC_20200526 2792215.9992282577 314.1824617033272 0.011747071198163577 1.32053436299893e-06 455213.0971694156 51.17229028060698 24314 5650 940522 SKY_20210430 62841615.71663188 1172.3687552685562 3.1420807858315936 5.861843776342781e-05 6502434.163928691 121.30895362964418 19188 4309 267586 MDX_20210711 866965681.2138121 25717.502745217203 1.6282590930757646 4.828686273956766e-05 73904246.51438914 2191.6685265183587 None None 12360 AE_20200414 34663658.98542659 5059.462140115294 0.09814590116314949 1.4333273999346383e-05 9276453.834732365 1354.7377218991721 25316 6339 695802 BRD_20210212 13785745.07159102 288.849145362683 0.17800016205168462 3.729250020488299e-06 1147216.2253993743 24.035124927767644 528 None None ACM_20210813 19693362.693184234 443.42480313179027 9.827180895093633 0.00022104502830864014 15621922.160552582 351.38746941544076 None None 44064 CKB_20210508 660699503.4927995 11530.089518376779 0.025172470109873075 4.3926881225035527e-07 45461648.20079995 793.322392317644 42545 3587 113010 AE_20190716 102997051.39495082 9418.516722203947 0.3202768353695388 2.9322094998150742e-05 55456551.90030597 5077.177315101277 24881 6363 321495 INJ_20210430 542818337.4388059 10126.479926778458 22.323829773947313 0.00041647385818341305 191498926.1140706 3572.608168235693 64690 3181 97465 IOST_20190419 174823105.98991275 33156.56531174024 0.012941001281954181 2.4534814338311407e-06 26014976.459106974 4932.173357634872 196794 49164 95321 ICX_20210429 1455878284.7041798 26597.263390407898 2.3770619407168456 4.341218949353573e-05 171265696.61203754 3127.818736108328 136409 31437 432969 VIBE_20210201 5071543.987691855 153.44819277239682 0.027516148670083486 8.300003623171283e-07 2018350.2663754523 60.8817561084 18513 None 1388875 LUNA_20200907 145614665.9506617 14140.796589524276 0.33367435010037294 3.243867861103782e-05 7144493.183006282 694.5631815348589 11606 None 170396 ARPA_20200312 0.0 0.0 0.009834504453753423 1.2395356803710637e-06 3093756.032394194 389.93535531444377 12239 None 2543726 VITE_20220112 53228834.77110783 1241.669250585077 0.06946695405157009 1.6235971924196229e-06 1062780.8329680166 24.83955141149966 40166 2974 163960 CHZ_20200721 63777475.40924228 6960.889468655247 0.011943391755988379 1.3036867026581903e-06 4685633.672244638 511.4626093521523 27015 None 256662 GRT_20211230 3283194334.0720043 70790.11835006575 0.6325294876354471 1.358067011747058e-05 117450784.83210917 2521.717002958431 192663 20426 26230 ARK_20200410 24686448.596418533 3385.6713762924774 0.16607286189225529 2.2776388134223383e-05 874504.722332492 119.93566410614709 62456 22008 82800 BCPT_20190318 3840968.616926035 964.5786580763064 0.04578387317515147 1.1497658885889776e-05 595158.8298602753 149.46164957430156 10070 1530 1708834 CMT_20190702 32026569.29559607 3018.144540133036 0.04006557804647583 3.7744428746894146e-06 6341962.130849572 597.4548463663261 291069 1642 722276 CND_20210523 31081475.553116146 827.1915819842886 0.016034492753962112 4.2696226302649393e-07 252707.8036791237 6.729037045255604 35963 6225 116795 CTXC_20210826 37986120.66487096 774.9567203286243 0.2082187562040801 4.2484302502612174e-06 12993477.747606302 265.11484808276316 20480 20611 1047878 CDT_20200518 2708222.496659887 279.8368337274843 0.00402562481606548 4.146680175530442e-07 95296.0034378228 9.816166839142245 18931 289 287726 WBTC_20201130 2228344359.275952 122816.64056538045 18165.65340279144 0.9997750550793008 72213291.46137494 3974.3710753151067 None None 168297 QKC_20211011 216765552.6958521 3961.5108104143114 0.03312219094490706 6.051519575021232e-07 71596157.47925046 1308.0823946780818 76434 9581 572650 THETA_20200329 71008477.64449678 11395.28455336993 0.07059221308795882 1.1291019599772423e-05 2806717.099188649 448.9262539264553 None 4025 384607 OAX_20190621 11074431.701466214 1157.7394890382304 0.2434701610026892 2.545846015418128e-05 2473495.395328274 258.64107414304544 12286 None None ONG_20190730 0.0 0.0 0.23983611153734072 2.5214200140759383e-05 10708372.892936632 1125.7814995985261 81440 16296 245341 SUSD_20210120 172125886.21494684 4753.1731381175705 1.0005124065388333 2.7759712927108614e-05 29433065.088449933 816.6349883124215 60765 3289 36126 CTK_20220105 106744607.82183798 2304.7836616890027 1.6836215672768464 3.66497674823478e-05 7341994.63968179 159.82356227249193 None None 671406 ATOM_20200315 340950989.8433033 65929.85118461889 1.8361767012811048 0.00035515043192887866 95287661.96678786 18430.390866732178 31675 8265 85359 ANT_20210422 305839235.3323223 5654.47102213867 8.718693448977701 0.00016119448966247303 91215562.2933895 1686.4276854328987 82647 2955 100052 MIR_20210710 289055215.0941002 8522.520408690714 3.7261534513788632 0.0001096401682732231 13671904.608418228 402.2888325567289 49757 None 16054 AVA_20210825 159457830.65445417 3317.2370944767845 3.0431249098345785 6.343713560390245e-05 10860224.541309156 226.39278942818962 115640 10602 61556 DOCK_20190603 7345895.325097049 840.2534241973905 0.014295280163909699 1.6346763205211597e-06 1629037.1823414066 186.2816591692249 168 15269 238088 ORN_20210610 213140108.46409595 5678.296693211824 8.269709479199765 0.00022079847830009581 22748936.34820524 607.3889948931445 70344 None 55511 ENG_20190730 33984857.843885325 3570.9936800005703 0.42619621754313136 4.4795255193388354e-05 1316889.6891933375 138.41138719863824 61795 3474 316821 CND_20211111 32508374.217410002 501.60717676596147 0.016884908688474313 2.599990848378751e-07 379210.6307303327 5.839203443130298 36875 6334 204895 AMB_20190818 3297407.9927055635 322.93799034570236 0.02279655812604796 2.234281242732553e-06 98669.54309247245 9.670561149694093 19316 5630 728566 ONT_20210603 1017745960.5253551 27044.050149551582 1.180744683594578 3.135644970976814e-05 299454019.15988964 7952.451552514568 138593 19305 123162 OAX_20190507 4563977.367230489 796.548704879798 0.19420454733681675 3.394804226522883e-05 2786978.4340480855 487.1794351306072 15234 None None EPS_20210821 241876028.89649847 4922.975585240817 0.7755006832188466 1.5774306168381482e-05 37781771.571963705 768.5115503525883 20124 None 31668 NEAR_20210711 871584685.2660885 25846.91384807572 2.1119895163296185 6.265326115258855e-05 20380109.719395354 604.586493775191 88193 None None SC_20200329 54315297.63338983 8688.158670314586 0.0012375011209887384 1.9794802868267578e-07 2282308.664256667 365.0732054077141 107413 30153 162098 TUSD_20210813 1286899027.0382462 28945.77131712112 1.0019073241987353 2.2536217406545592e-05 92653694.86356169 2084.0887780063586 13788 None 646542 CDT_20190906 8687077.433703033 821.9721896572918 0.012873845182737547 1.2180132100594847e-06 200564.75246086734 18.975722831995405 19700 299 193122 AMB_20210203 3959811.6871109614 111.19101281405283 0.02697822425455739 7.593998560919377e-07 1174103.0951846405 33.04938505616045 20487 5464 398433 STX_20200412 54362648.78040713 7898.813576566053 0.09216896884320983 1.3393135911944682e-05 119493.90569850596 17.363741178353155 35844 None 52879 NAS_20210620 17470125.963544365 489.93268923178033 0.38323207250376895 1.0763852841343514e-05 3258253.3956382344 91.51467892894807 25116 4916 520126 GTO_20200301 5680689.750425097 663.1600130009158 0.008551233294094468 9.998041641176146e-07 5784505.296800256 676.3202785141327 16936 None 1191106 XTZ_20200301 1924923899.6311877 224461.3547081436 2.7359276347821013 0.0003198827289472595 199938716.55967858 23376.69368964006 56426 22025 104382 ONG_20210427 0.0 0.0 0.8763799444056162 1.6257524208330183e-05 14456027.69084794 268.17046834595016 126453 18548 153956 ARPA_20210203 27383796.262483634 768.9285089331171 0.02768644342720925 7.793501679858823e-07 12253415.915562978 344.9233837961933 None None 1157851 GVT_20200531 4255293.097141082 440.8198577133049 0.9570371125330336 9.908318669501992e-05 207322.93551273714 21.46438926615718 20363 5554 251140 REP_20190801 126776401.76696308 12612.00224013554 11.545239959702164 0.001145146311320304 11288487.127932236 1119.6795770429198 126139 10043 203996 RENBTC_20210723 407068937.2822624 12574.89276525423 32337.495356096148 0.9987966948727246 9163631.75523888 283.03382835856894 87758 5544 100399 KSM_20210725 1670119362.3299031 48882.38796227353 186.08163843264308 0.00544559988559547 137458808.7759375 4022.673487020536 94809 None 62098 VIA_20210711 10754175.411936278 318.9279409373418 0.4640492460053379 1.3761935699667145e-05 1384330.2080083454 41.053968891695064 38225 2297 920370 GVT_20210718 9565585.772565318 302.6485225235971 2.1541811750265203 6.821562192718846e-05 514986.15536238963 16.30786736009083 25775 5686 392150 THETA_20190225 61100935.13609011 16258.645118738912 0.08745060568107213 2.334435374244964e-05 5508084.527139884 1470.3462902681467 None 3843 509909 SUPER_20220112 278815774.0299939 6503.9367230152775 0.9686688785943983 2.2641444354718896e-05 13637308.864521125 318.75533180359093 237276 None None GO_20210731 23025357.154420886 551.8826168255667 0.020837660645791876 4.988495811570514e-07 657116.063136828 15.731231947746313 22473 1107 168716 TRB_20210318 82881657.10566317 1408.1613767565616 48.819705426305035 0.0008282629556325297 59683579.43176978 1012.576734562815 15744 None 338279 MTH_20210202 4073238.9084322066 122.00752818353574 0.012052941068957535 3.6088309138246664e-07 8190105.686444137 245.22401976107201 19140 1884 1161820 ORN_20211202 250004690.69502217 4373.9959522839845 7.764911951922011 0.00013579032123429594 12676051.212686293 221.67476937417132 None None 61725 NAV_20211202 27284185.70199896 477.1281237809703 0.3773456320905753 6.5987754013538246e-06 136320.1740090685 2.3838786896131174 58758 17314 627196 FIRO_20210805 66627897.35732835 1675.1241066835312 5.491888939660679 0.00013810889408356225 4277841.657413841 107.57828260207356 73826 1111 285212 MTL_20190419 24480156.05507063 4642.852490724975 0.541698937380417 0.00010272167312777598 3078116.867880326 583.69934465913 33417 None 736398 ZIL_20190316 157808315.7668863 40211.83381644147 0.01822821224394318 4.644763095644376e-06 9614815.343708605 2449.9681527864614 57156 10032 178175 RUNE_20210314 1423786031.6784396 23182.100862554023 6.1310278896612935 9.992852586002345e-05 26518261.36429288 432.21639408510276 42575 2939 108351 COMP_20210806 950521.3083150428 23.230292782493496 1.0305630215631255e-05 2.5186474529603847e-10 8.126985862310118 0.0001986197041235351 2560 None 6364625 TKO_20210819 161646600.75356084 3588.5958981994063 2.1520224570665385 4.783102114516957e-05 35357169.705791734 785.8512471734786 310917 None 26828 BAT_20200106 264799290.0702773 36055.449211812345 0.18661081227040185 2.5406984052631492e-05 42134772.19030899 5736.631613548981 109677 33047 23415 SNT_20191113 45345580.89167386 5152.326067092658 0.012723611838085402 1.445532649005118e-06 37314027.45093959 4239.255773643819 110781 5671 336447 DOGE_20210106 1257877104.268277 36902.16470565949 0.009841171975224853 2.8870908604201285e-07 643097357.7319219 18866.45725267639 180843 180186 103049 ZIL_20190419 193780926.4575026 36750.40861031312 0.022153862620944154 4.200145679911742e-06 24442255.406921994 4634.001537845937 59639 10159 186514 ARDR_20200404 32686840.240005117 4857.706641556835 0.032719576339730896 4.862571668824352e-06 2195972.546011271 326.3512270721018 64142 6369 1047061 FET_20210724 198393909.2606242 5935.214824971342 0.2882918342090008 8.618864498901963e-06 21975995.839478407 657.0013711577549 68727 3018 163095 UMA_20210703 537660288.6061985 15898.541605567154 8.735204471054718 0.00025796985081572845 16902020.731330182 499.15394436315125 41132 None 148626 SYS_20190929 14186117.39066596 1731.771456914418 0.025123570940767153 3.0669620060815376e-06 1650783.6261066208 201.51954805577174 60256 4590 745278 FOR_20210729 15460042.676239148 386.6263796646088 0.027483699472531632 6.869425652903152e-07 3883612.1243677395 97.06911829581297 29263 None 171123 BCPT_20191026 3466639.026557388 401.0805344830991 0.029843998007978073 3.45286791628815e-06 437785.04447409924 50.650517195829615 10840 3125 1510702 ETH_20210421 269456185695.19864 4769258.5473333765 2324.2846872281943 0.04122246730063363 44737302423.76558 793440.6643110047 951488 800999 5558 STEEM_20200530 73297791.92841619 7777.736519052044 0.20471941260248042 2.1834869663520957e-05 1681812.1854363896 179.37795639747736 11438 3864 233100 OAX_20200626 2504749.370896561 270.47329051717577 0.04783328720803044 5.169405382066624e-06 145639.11223363044 15.7394077339 11839 None None VET_20190811 271443514.45204884 23956.736506499645 0.004895711555785881 4.323052250140168e-07 28561261.879039165 2522.040484331651 113431 57268 138282 VIDT_20210310 43936396.160474084 802.5274166716518 0.9493030619344245 1.7339650051182128e-05 6890630.525745698 125.86193676122049 25613 1334 None ADX_20200418 5637462.727068228 800.7840558394873 0.06124656479325367 8.699884138636905e-06 125423.39171288421 17.816002903352345 51962 3761 31500 LRC_20220115 1843774619.2125595 42784.03960707136 1.4778802701174758 3.42653151733299e-05 158965440.68710443 3685.684853467821 175313 92998 49045 BTCST_20210707 144743027.46423727 4239.782141453647 19.856035796059984 0.0005816060564862434 3246441.0630432996 95.09198128391193 None None 922062 GAS_20190117 24823968.80928702 6901.898633918493 2.099783027173902 0.0005839729555244212 1443472.7483934872 401.4457856785465 315925 97899 129733 ICX_20210422 1295232163.5911903 23904.588048295576 2.1522551827837275 3.979170478266037e-05 132499169.31858356 2449.694567655089 135252 31293 432969 ONG_20201228 0.0 0.0 0.19654194069319542 7.4735579032581555e-06 10680482.036360886 406.1280795942359 94230 16676 295641 MTL_20190821 18009979.22385033 1674.0093961594089 0.36400459389613726 3.3865395886739584e-05 19774864.00162768 1839.7668855043078 33587 None 511455 WPR_20190305 7374430.5069455365 1986.1648044898348 0.012591200637842932 3.3912041790345507e-06 2213350.996871064 596.1246561110572 35037 None 815253 BTS_20201208 61710930.19060078 3212.929797694406 0.022759186530783647 1.1853853185888416e-06 11612603.70477503 604.8287325037684 None 6886 100608 QKC_20220115 127601398.72800079 2960.9385226422364 0.0193175111797465 4.478971103829377e-07 2068637.6413323584 47.96357115369859 78575 9625 485453 CVC_20190524 28493368.88254209 3616.9821055640114 0.08300074865210957 1.0554313950699279e-05 5873829.162594645 746.9117819001897 88951 8189 437048 OAX_20210506 21975946.489228126 383.7532658139018 0.38954745339099534 6.7950843849271975e-06 622128.683736746 10.85212306607417 13891 None 1257239 ZIL_20190224 180840663.8310334 43949.1176104596 0.019077654296566084 4.636380195965582e-06 15957559.474679971 3878.1137122117925 56093 9983 183294 EZ_20210723 0.0 0.0 2.247075020277454 6.940849000499091e-05 1510996.591416171 46.6722253892241 35364 None 131496 COMP_20200719 25661.78227176437 2.7994268973480834 2.782271543555884e-07 3.035161670484003e-11 73.33570464679316 0.008000143635779213 None None 1025389 RDN_20210221 34479262.07689977 614.6965987422213 0.5162034857940286 9.202880452277911e-06 3496564.799621512 62.336789134739476 27355 4405 934913 FTM_20210221 582681195.5596554 10428.563747711472 0.23324054357742235 4.148471184296357e-06 241372756.00879702 4293.112627926572 None 3802 100563 EOS_20211028 4050705767.2019334 69217.91963197428 4.166014960098292 7.117500055559051e-05 1420986568.544236 24277.08992270071 None 94946 79308 OST_20190130 9669873.172134627 2831.8197665486127 0.020095740926819834 5.8833324933267795e-06 384306.6289369093 112.51158569664153 17300 730 696846 BZRX_20211225 163943034.49372602 3225.3975134567204 0.4414785155870782 8.684582526639632e-06 282907.3781725082 5.565236781380326 None None 189984 UNFI_20210814 57455216.09794629 1204.4933910109664 13.201167076721056 0.00027668252252609893 13545566.925429353 283.9007796956678 21303 None 266714 REP_20190627 198149803.32621935 15194.705986270614 18.013618484201764 0.001381336907842783 33331632.27102892 2555.966969934196 125750 10009 269417 ADX_20210112 38701139.64213544 1090.8673363291687 0.3424423008055897 9.633581761534975e-06 4200199.251533828 118.15994346843453 52756 3745 12195 DOCK_20201208 7576038.286429796 394.44032173495526 0.013502522870260972 7.032629374810222e-07 2584232.4291496966 134.59669031631918 42989 14882 301335 FUN_20190410 35128111.25082664 6788.467589300905 0.005839124737424227 1.1295716933501042e-06 1473168.1375724955 284.9826134183997 36616 17762 523376 TRX_20190803 1441479926.131915 136960.40370825553 0.021785489820148055 2.0698414440340724e-06 553973807.4989493 52633.10373725101 451094 71299 73072 ANT_20210603 169773131.3227144 4507.531289630898 4.842338289961785 0.00012859557123274487 27288029.780974835 724.6746442261278 84196 2999 108427 YFII_20201015 85673308.06923854 7507.24740945975 2159.60881724148 0.1891937277750055 184223605.8164372 16139.011125674475 11190 None 101060 BRD_20190915 13023669.895326184 1258.4267844863493 0.2159116194630593 2.0862703615641125e-05 87721.34389349392 8.476173737045263 169 None None AION_20190316 41041788.96611332 10458.066736147906 0.14075191432294684 3.586524495871788e-05 1538038.1994468325 391.91024182065377 67419 72440 245314 GTC_20211104 138739729.4191988 2200.332583537563 9.762453384812725 0.00015482691488439301 13554509.264876707 214.96674755113727 None 1390 25579 DUSK_20210204 24208534.834733743 646.1823954187716 0.08056921915813596 2.148381148118702e-06 2424213.289806756 64.64173520929216 None 13368 931184 ATOM_20211028 10409642032.825907 177878.57401538224 36.91108689629717 0.0006306138253256335 1592951338.2390666 27215.051666909803 None 43287 41004 NEBL_20191203 7529811.891578173 1029.9269688107543 0.47598236266866173 6.514912931968581e-05 916404.1502918784 125.4309763952797 39996 6057 845184 AST_20190810 4728090.400948105 398.59082430121407 0.027447430492988666 2.3138585547479167e-06 666182.687328407 56.160175375744146 32074 3588 229078 DCR_20190305 150291670.1169883 40478.400415152035 15.967016107839958 0.004300433090837489 3955752.341218604 1065.4118560688098 39834 9367 242491 KNC_20200322 85468824.94140926 13871.112741760944 0.4765029261311413 7.737267802177695e-05 89254145.80453375 14492.738463356942 104482 7217 120611 HARD_20210708 48263475.96442212 1416.91209892232 0.7219240581055505 2.1247206358753095e-05 5140315.456610726 151.28647124228112 34894 None None DOCK_20190922 6182326.590434833 618.9973593846635 0.011040507647466957 1.1055489858070295e-06 3765693.202362254 377.0803330485601 None 15168 179200 MANA_20210617 932940589.7281176 24391.206714526357 0.704121112346185 1.8397494132317217e-05 79357188.42873476 2073.4691559099792 140673 33322 14515 BRD_20210508 32353738.397334993 564.6159835194761 0.3997153897185306 6.975179778284068e-06 8579911.637476107 149.7225968590547 754 None None DNT_20210127 86087212.83762543 2643.309221631532 0.11426954502284466 3.5082419757532635e-06 6292329.67223352 193.18371379700685 61402 6426 241579 REP_20211111 168676930.22524855 2599.0979034525585 24.355937754890064 0.00037505018961626744 25523189.051686577 393.02436185299325 156211 12017 206927 PERL_20210826 0.0 0.0 0.09642794398118124 1.9678161138876142e-06 4191079.9934335877 85.52785017670956 558 686 3275203 TRX_20210427 8387871727.818096 155654.8647338527 0.11722724790275237 2.1754703972252517e-06 3387422014.303728 62862.827942017 819964 100471 21813 FORTH_20210519 243759160.571138 5695.143418155292 28.97849144930332 0.0006763705998970834 26093378.893278793 609.0308174345346 None None 68833 DASH_20200310 688210102.1493548 86838.43856602715 73.38996590042248 0.009260355268402593 763217229.5761945 96302.84748232672 316879 34153 59708 POWR_20190312 43497855.29787168 11249.905244252921 0.10448980400132955 2.7058045725201268e-05 7174613.514280567 1857.89438869634 84765 13278 711745 BCPT_20190601 8672408.344917646 1011.2446726735581 0.07468005108905694 8.705664365873207e-06 4605382.556770888 536.8624449370426 10867 2336 1057836 LRC_20210204 701871303.8584037 18733.799664824677 0.5668235587850526 1.511145857854132e-05 120975589.22944497 3225.1969370747956 54792 8272 159364 LINK_20190220 166380659.6906514 42512.138167892765 0.45652111348426383 0.00011661878278085019 6932212.271810709 1770.8406757947314 9825 6355 313186 KMD_20200106 66425915.03883966 9044.647383289479 0.5664167509350344 7.711740377238739e-05 2818688.011201758 383.7631939899407 99088 8407 197912 AKRO_20210206 107764965.45069018 2843.8975953650065 0.04245143754565135 1.1175376898836537e-06 285866739.8342912 7525.46614482578 28817 None 187936 MTH_20200322 1992465.1796074372 323.1473430932363 0.0057231109793604565 9.287519873403875e-07 238709.57184978944 38.73802029214531 19198 1928 1053445 STORM_20200129 7749348.166150596 829.5430189353785 0.0011082104281008812 1.1852014914402304e-07 1139617.7165800212 121.87907486820707 25820 2523 2384795 GVT_20191127 4934150.60186262 688.2522521477621 1.1197377583542336 0.00015645721113381435 1252432.679452786 174.9982285566931 20960 5664 128029 CND_20210823 32297733.626780614 655.5890273686813 0.01674095092567548 3.3981281353717084e-07 219196.18578567082 4.44930953678426 36254 6264 184499 SNGLS_20190716 6026800.507012874 551.7677130712088 0.010366046803641437 9.490358826012049e-07 153101.54116044004 14.016804959028509 7 2180 None NXS_20190512 19256923.194275465 2630.4483600291355 0.3208691677597483 4.40552245552233e-05 391498.24090458313 53.75257160557248 21325 3516 725458 NEO_20190909 653156148.677509 62881.20322027797 9.269899272737561 0.0008919234410282652 170946163.7362029 16447.955485189217 323841 98236 210014 SC_20210210 477415968.8630724 10261.893118032727 0.010154362495008276 2.1793029754749948e-07 115753667.03511101 2484.2752178265 110903 32518 135248 LRC_20200317 28802571.491917606 5706.34750413166 0.025064611253011345 4.977325725730509e-06 1509509.7711200751 299.75816266190236 34313 6822 553678 OMG_20210519 1206534205.0612237 28276.87536355136 8.684132456324118 0.00020298146141736683 521570031.1681879 12191.090784310003 324198 4899 131770 CTSI_20210602 250088536.65739572 6816.129903185775 0.6847928162135987 1.866840531922866e-05 28738628.807025336 783.4550219946594 41420 3572 117994 DNT_20200404 2944767.081129813 437.6322245530083 0.003919970651986757 5.825606675667151e-07 50803.328042531386 7.550061805709633 58660 6073 660159 LOOM_20210206 60050227.768254735 1584.3966767356844 0.07214536348460864 1.8979901628106833e-06 29562251.036552902 777.7195781942037 24645 None 265333 QSP_20210428 57038580.02098759 1035.2810794950199 0.07990368395507516 1.4506271057724831e-06 1850313.61625334 33.591881538604774 63976 8408 217402 STMX_20210117 23978724.54058686 661.1348766140011 0.0028956080907765087 7.999830809366304e-08 15166734.243085396 419.01840329078624 22078 156 183695 NXS_20200418 9247237.265329702 1313.3999125775465 0.15487463859178843 2.1997092856001408e-05 47637.54229084838 6.766036393895711 23689 3530 498708 SKY_20210805 25882958.63984437 650.805282116169 1.2325218399925895 3.0990727719817565e-05 1012118.8871911573 25.448880364841646 19644 4411 730332 LRC_20210707 322459851.5814546 9440.724962484655 0.25866712475138226 7.573685551258508e-06 23788526.871448714 696.5199865471234 81999 11062 263753 BQX_20190318 18818246.979075752 4766.717801206125 0.15998931662475835 4.0525768654540966e-05 648442.0004918553 164.2522829162085 60606 5823 403749 STORM_20191026 8066588.083465619 933.2819007649365 0.001275486834536323 1.473228053706598e-07 404249.9913047695 46.69216582837842 26187 2543 1742887 IOST_20190818 104151912.02148417 10190.143161533804 0.008669236737573232 8.481914709244781e-07 43478040.17814593 4253.858092464352 196634 50661 99205 CVC_20200321 12489248.835929025 2020.1626230005663 0.01866315234314417 3.0099469726677312e-06 8246453.91859388 1329.9676577217474 None 8060 104560 BNB_20190414 2676266097.632365 527524.8240988972 18.652397835403228 0.0036759152894684415 171510644.40718448 33800.40494773873 943898 48974 1082 OST_20200713 6924441.996218057 746.1277586781518 0.010024058170167873 1.0788772288279215e-06 726168.555538603 78.15664130851128 17629 753 819752 ONT_20210826 988070302.9032528 20157.723739435172 1.1292750650599215 2.3044474368330398e-05 187660877.25707534 3829.4888550112464 143193 19894 180960 RUNE_20210704 1624149202.78375 46850.15260885661 6.002629221980188 0.0001728153853175882 68047336.01571496 1959.0792898435654 2511 5797 58738 XMR_20200626 1132977687.5974517 122442.36802199949 64.33697036620008 0.006952979824080751 68708959.81185105 7425.4663933686825 319664 173826 84747 RDN_20200317 2751922.9394691517 545.2326395624036 0.05403411606692278 1.0730084470577655e-05 160105.8400067929 31.793787195074135 25148 4328 1385636 FOR_20210703 14922011.358486446 441.4766261443842 0.026506983721747097 7.828096822384281e-07 2782961.392451817 82.18698687771449 29109 None 170276 DNT_20211021 124673905.08464676 1880.8313654087758 0.16526232776755725 2.50250970442266e-06 4256132.587742375 64.4491291391923 71659 10280 652716 EVX_20191024 6933493.609616077 929.0498806261321 0.31816864336510814 4.2616678999200405e-05 941051.1476535151 126.0478539217892 18171 2895 495281 ETC_20190908 756940771.6633161 72304.43032395975 6.681280117774395 0.0006382002113996407 863876558.3210799 82518.04929971411 229982 24958 350041 EOS_20200331 2084756011.698902 324477.98525220976 2.2293960658607404 0.00034774228207874296 2262985066.6187487 352981.5107448368 1483 70776 91853 STORJ_20200106 14473114.994210254 1971.0702156645555 0.10069515564397392 1.37096033316472e-05 671297.9669625558 91.39693747470375 82661 7886 137382 ATM_20210731 26266426.025240712 633.3076049807025 13.912970379036267 0.00033332458568206884 11129747.180030871 266.6445961187289 5014194 None 103231 FET_20190410 0 0 0.20667598104425264 3.9981221224250306e-05 17117626.30362151 3311.3843254606354 7752 171 174439 DGD_20190916 27738512.227209013 2692.0346430905956 13.870994421879944 0.001346022155599452 1261010.0274821473 122.36667277053104 17300 3370 538258 LINA_20210429 230060420.8636259 4202.876774332345 0.0924401167837144 1.6882302467090873e-06 73086677.22216026 1334.7791349789024 None None 69525 WPR_20190622 7829465.36479856 773.1953790267985 0.012983610836790054 1.2805188583318424e-06 476110.67691390804 46.956790996373314 34856 None 1193640 ALGO_20200127 135376134.31933206 15766.332884308827 0.23703529260258757 2.7594024098476734e-05 53002817.919927016 6170.2247750159495 14093 753 452232 BLZ_20200325 2829660.8443558174 418.69156007817634 0.01296678590742005 1.918943220813889e-06 1882796.2459038924 278.63335741385544 36057 None 563457 ATOM_20210506 5849546170.405898 102179.60996351729 24.73895598891405 0.00043165781820501687 1203685570.0602977 21002.514706357168 132025 26613 41486 COS_20200324 9991461.238780456 1550.9261517209984 0.004990348348590371 7.701332493855648e-07 5196434.894995788 801.9374623485106 10300 None 117572 DNT_20210809 119918287.07868367 2725.894696181851 0.15859845541517031 3.6054647452154593e-06 8594364.036200065 195.37817350712376 70410 10249 294360 CELR_20210727 152525692.84030718 4071.761487133624 0.026880938229751634 7.202268257926137e-07 40626185.73442565 1088.5062323896757 57615 None 211241 AUDIO_20210217 53158816.34058971 1080.9114730685596 0.34738719530835016 7.059340321968227e-06 2969895.7676388505 60.35197965752933 None 2592 59787 DOCK_20211225 70448412.58601576 1560.1781752227776 0.07107834799569193 1.39827788889371e-06 10195346.649106793 200.56639175008206 57568 15286 184279 DLT_20190531 8646016.178960431 1040.7900008994225 0.10811833368613342 1.3015067088153988e-05 1451945.6442221126 174.7822901411159 15130 2680 2514005 OST_20210513 25021628.49149291 485.3390640996224 0.03515667392356823 6.975005684790973e-07 2573110.321104579 51.049934804177255 None 773 471679 SNGLS_20210204 7921131.382020574 211.12667105653478 0.008899389282223585 2.373025376623387e-07 3841662.356715153 102.4380659368804 9071 2114 2522161 EZ_20210722 0.0 0.0 2.2401192907289533 6.944915870515228e-05 1776977.6781382903 55.09063972409284 35272 None 131496 VIDT_20210422 43412573.5413835 801.2151919898226 0.932892944797889 1.724767627471174e-05 5602911.160811111 103.58873270134532 26657 1521 436797 THETA_20200224 138660342.9128778 13937.03308062161 0.13882143351585904 1.3950945093009271e-05 10412279.991040714 1046.3884629995077 None 4026 394395 DCR_20200323 129212335.63452198 22147.150931575612 11.488966825657704 0.0019703624941852516 40087883.876288064 6875.088426984809 40752 9746 200827 ZRX_20200913 371540189.59776634 35616.18168657203 0.5169196884628153 4.9504510924626174e-05 59451106.221265525 5693.5303550997605 158795 16305 45992 RLC_20200407 24398396.002857883 3349.1305812467062 0.34738949355651816 4.768562557709371e-05 724232.5094389437 99.41429121040974 28978 3564 395542 PPT_20200322 7537266.540570441 1223.2562460128188 0.20892107758765838 3.3903914620316526e-05 2477997.9332443215 402.1319022863361 24039 None 1049662 ONG_20210519 0.0 0.0 0.7266088286610135 1.698363338677165e-05 9777461.86461401 228.5367603745646 135504 19003 129307 SOL_20210408 7244692415.792232 128622.99050473441 26.674732954277772 0.0004744374174494029 714313720.050788 12704.80035059633 143526 7071 29632 LRC_20190312 48612945.24930382 12572.8274176654 0.061562359576400334 1.5922961274193133e-05 4600751.279210793 1189.9736292621076 28572 2468 761823 BCPT_20191022 3531509.351689711 430.0071716107557 0.0304024610724029 3.701894853965186e-06 341812.4943108543 41.62011459193843 10854 3125 1510702 VIA_20191113 4664363.818471688 531.1686814979803 0.2015989782388228 2.2936431275164207e-05 78142.08273708484 8.890424574841376 40332 2199 4314355 PHA_20210731 138090478.55050915 3307.8915794022573 0.7575363561178301 1.8135274414161934e-05 15758348.312683795 377.2518225118884 107208 None 139260 AST_20210722 19097245.177431364 593.4490245383394 0.11086137450282676 3.445029581304832e-06 1163854.160660518 36.16689789190694 44252 3700 213143 REEF_20210314 558146595.0903562 9097.956558557586 0.04898760401155998 7.985500821140117e-07 439934406.06262875 7171.399033992148 79467 7423 44071 ORN_20210823 277533835.7639917 5625.676295217879 9.224092678756135 0.00018718496170873808 14162154.191591317 287.3932843467206 None None 95381 WRX_20210617 678957158.6512173 17750.76073229945 1.561192264830445 4.081264434305064e-05 20879973.5187681 545.8436813394976 270308 None 1299 WTC_20191017 20256495.365265608 2529.884293658035 0.6936969490546284 8.664541284774282e-05 2284501.787417542 285.34304611250565 55553 19773 556908 SUN_20210314 0.0 0.0 0.0005193323128776408 8.5e-09 662.6747690762556 0.010846110279441235 42 None None FUEL_20200626 3667027.2962612626 395.96822306876254 0.003701260293802508 4e-07 240333.96843147842 25.97320365 1 1465 None ARPA_20200325 0.0 0.0 0.006988828670855459 1.0342705968248837e-06 2301350.1149906893 340.57477569314733 14220 None 1589260 XEM_20210813 1692240877.0616548 38064.107715954924 0.1880485137980662 4.229807070419543e-06 134219228.32734388 3019.015835322664 372259 21772 110067 NEO_20200707 745697901.3925604 79812.14962477777 10.572776143379562 0.0011316056943822175 213386905.46355394 22838.83003428202 319682 99725 207094 RVN_20191030 141661952.76842293 15054.603044682639 0.0298743755266193 3.175142236214697e-06 14266566.42852678 1516.2953813918327 28380 7118 246956 LOOM_20191020 13908120.21157956 1750.2018955455635 0.02308521304333107 2.9039513554058185e-06 2836731.0827974305 356.84007149291415 21065 None 365854 TRX_20200320 771573733.6693658 124690.66775371227 0.011644586463800363 1.8842310219106401e-06 1346491892.6315398 217878.22201626745 501247 72212 50139 ZEN_20201115 64299275.091709904 3996.179301218385 6.185772261069563 0.00038454239006457925 3147971.3824348585 195.69560406788875 76565 6154 190205 DCR_20190714 310414518.62401444 27273.372851207845 30.909962409732884 0.002711784768589856 17959233.020545416 1575.594752109306 40537 9537 383707 VET_20210823 8601215433.63932 174348.6650623553 0.12853691968278586 2.608236949456171e-06 821127123.9644079 16662.092962940904 405328 198356 47063 PERL_20201101 0.0 0.0 0.016856711115364582 1.221843526543769e-06 504296.385485659 36.55346940741274 13284 505 374818 FUN_20200721 23518292.239200525 2566.9983236381695 0.003910486558959625 4.2680013435579703e-07 2286455.1753111375 249.549349245411 None 16749 237156 VIA_20200806 5315517.460792248 454.07028292502025 0.22965678931652186 1.9597208895510206e-05 413737.18585989595 35.30526610281059 38590 2157 1374526 MDA_20190507 16964896.92880635 2966.758874216869 0.954521368149617 0.00016692319154495156 1521584.1619192099 266.0890504779076 None 359 1527812 ARK_20191012 27052323.665447176 3272.488356757683 0.18949796295242288 2.2923349766924805e-05 1644814.137501297 198.97126696286156 62846 21771 84118 PEOPLE_20220105 611659035.8105773 13222.198141894198 0.11954162724647616 2.59858883844223e-06 70093192.8803775 1523.6816903468796 None None 68083 CDT_20201231 4516557.499292789 156.4186302709484 0.0066847106899973925 2.3183625688985667e-07 334728.06060287927 11.608894422654947 19251 293 1048731 BEAM_20200414 16281575.571521105 2375.1558384273944 0.2730678265853238 3.988810466374853e-05 121504099.26301606 17748.5875545404 14942 1477 257482 MDX_20211125 554008023.1400143 9687.591485770914 0.7071922587915452 1.2365093584928692e-05 24684310.111407746 431.5994707415587 29971 None 30275 XRP_20210821 58384958845.834984 1188278.37858141 1.2584294715021178 2.5585780359758877e-05 6979164637.937753 141897.0054060522 1977079 326267 18908 IRIS_20210314 170082592.6373741 2769.2867676445826 0.17550039634598813 2.8608432427121588e-06 33506533.23517138 546.1921522021775 19762 None 707798 EVX_20190318 5879352.322565254 1476.379472972596 0.30485863941527064 7.655597189576884e-05 408496.70830851526 102.58151968651173 14212 2305 1271428 WNXM_20210420 119943120.74938065 2143.566666475666 60.835604932277235 0.001087825858927259 30294804.049940128 541.713545436845 None None 101327 NAS_20200109 16723499.454628393 2078.2074485187336 0.36660016073252905 4.568633308746844e-05 4600664.80589167 573.3426420920548 23869 5038 927832 BTCB_20190816 0.0 0.0 10305.81882184083 1.0000573299914082 102134.85429865766 9.910974708046796 None None 60594 ATOM_20190701 1313807485.1161137 121082.53430841968 5.4614646972056695 0.0005033719528849747 117030510.79149522 10786.46114738817 26439 5697 112670 ONT_20201106 337657263.02221125 21730.10231870075 0.4348360762400236 2.7993269394222324e-05 88562146.4267566 5701.330129946044 93522 16680 220427 APPC_20211011 8478469.244659815 154.9279395308614 0.07227965261723282 1.3213689791312452e-06 479331.61628869764 8.762824744535614 25077 3112 871723 BEAM_20200626 32115178.733360477 3467.819906753825 0.4999826720976669 5.4033768081099356e-05 27498437.18694921 2971.7913449249418 15262 1519 471978 ARK_20190615 87566428.13257387 10064.434467159715 0.6122585916317335 7.04637955414664e-05 3986259.7903937814 458.7718305379476 63492 21804 216267 BRD_20210420 27386925.79418689 489.6430964628791 0.34440874320921605 6.157586460822992e-06 1132743.7733486728 20.252005385694552 715 None None LEND_20200511 77036085.23234062 8814.677671676449 0.06535823263830633 7.465225345678613e-06 3105783.488607409 354.742970876377 44574 5723 91330 FET_20190704 40235647.34944067 3355.6534838926623 0.14877653345994724 1.239671067862828e-05 17062685.62920494 1421.7375027264409 10167 288 401657 BAL_20210104 172784407.28159565 5176.413622413828 15.933954803422152 0.0004794817765091649 54254644.27763836 1632.6212508477656 None None 83798 RLC_20200106 28310707.69803465 3853.592514365018 0.40387330776501257 5.499370982412627e-05 535069.6986882119 72.85816413117094 27626 3526 255946 DOCK_20200306 4279955.942376519 472.7310559023229 0.007645068089900183 8.44325724403631e-07 1374384.2045120136 151.7877833706338 43167 15031 375776 POLY_20200411 11605795.308282446 1692.632814560249 0.018714615204245208 2.728676536150958e-06 1974125.2162394444 287.8364902610759 34819 4988 460641 DNT_20200421 2934086.8590325736 428.4745136792484 0.004028012430885627 5.886660002011555e-07 64943.50269972389 9.49104120934748 58472 6060 716172 MBL_20200901 7011115.697429322 600.3194513526942 0.0019860955618695776 1.7035867707273995e-07 2546028.9562365687 218.38733900853123 None None 428070 WBTC_20210108 4303599725.60473 109946.73883644307 39359.230798945566 0.9973852441276156 343548395.81012046 8705.71130759769 None None 159793 KSM_20211021 3407086368.5093102 51402.48094970233 378.15766808569043 0.005726309480024526 131140789.57303122 1985.8191699547515 None None 88365 DOCK_20210429 59441015.15373768 1085.920679528801 0.10549159036462422 1.9265887995760206e-06 20748755.134409517 378.93370560563574 47418 14980 216888 NMR_20210420 437102899.12957656 7801.206970004058 80.41571008576376 0.0014370200287927054 50635771.24355377 904.8557473750918 27570 3104 915213 FUN_20210611 232245465.5684123 6301.730418563905 0.02254738244387792 6.118570242440872e-07 12111063.289324377 328.65185850652273 3499 318 199069 MANA_20190405 79612677.70891365 16236.628798700469 0.06038940659584796 1.2322427355999569e-05 4425000.579234545 902.919092296937 44086 6154 117892 LIT_20210916 132407544.5392966 2747.4365248720023 4.777644371349949 9.914299177212254e-05 17725619.317602895 367.83209330089295 None None 476309 NEAR_20211007 3710089448.381303 66841.71009905897 7.809205994799195 0.0001407703375964957 224929179.6414421 4054.6191987400402 139465 None 6549014 AVA_20210418 318345289.60945785 5280.877482777991 6.061458975908882 0.00010058937908679102 11317698.277558818 187.81620843364414 None 9873 42647 AION_20190314 42318245.19004205 10945.135817953586 0.14492011143386324 3.7487607274073166e-05 2974847.233503215 769.5267667581497 67051 72441 229111 BTCST_20210428 549350614.2275721 9971.888699109784 74.94711819221855 0.001360064121907868 26096180.002390537 473.56694955331835 None None 111287 MANA_20190909 42712547.23187922 4112.05860647822 0.03221127470016516 3.0992775784491933e-06 11895010.703643847 1144.5042244486995 45684 6369 122199 ZEC_20210809 1417658464.3750467 32225.174184665037 124.3783076174161 0.0028275281875239666 702790725.4628588 15976.745658005708 77292 20188 132489 LUN_20190325 6827841.250161152 1709.8538340456198 2.526995987168165 0.0006332730938579653 1470764.6924255858 368.5782295812675 None 2246 1442676 LTC_20200410 2990372199.5366344 410120.45620449405 46.38101466607907 0.006361015159593563 3235902913.434944 443794.2471833539 133219 212954 140377 MANA_20210702 731087380.2057782 21758.103493036062 0.552254785710481 1.6418874670007725e-05 44348222.46397846 1318.499948419486 144228 33946 16474 POA_20200907 6652941.895391408 647.8636015648328 0.02383298793126243 2.320856793878623e-06 501520.20066294755 48.83804617083601 18019 None 497841 QSP_20200502 7068729.206809271 797.6870559245384 0.009748986712283437 1.1033365603244904e-06 758191.5553253556 85.80793957445208 54792 8281 461426 PIVX_20190510 36571440.004432075 5917.012863416094 0.6097824920521058 9.87639776787789e-05 2424601.6545210504 392.70281913339244 63082 8604 304717 AXS_20210722 1237283150.7033727 38447.38991601611 22.182551067641185 0.0006868436056013687 905945303.9001563 28050.999955370695 261828 None 3082 ARDR_20200310 46598481.890817486 5885.6985639737 0.04710802685759913 5.944096844066086e-06 2263430.6309211836 285.5999660247032 64665 6383 1029538 SKL_20210120 81449548.42613499 2248.2504727661567 0.1432312518846814 3.974022119589594e-06 22590504.49189276 626.7847509686633 10953 99 245973 OGN_20210731 250179601.08468133 5996.4226394846955 0.7925301115731755 1.8973018177665288e-05 40929782.88498162 979.851116499753 117435 6010 91990 OGN_20210428 413452479.33200884 7504.3861359317725 1.9484302533651991 3.5358131780936196e-05 162265355.7811299 2944.6267441600403 103925 4989 48206 FIO_20210220 38545086.66566522 690.0077091134119 0.17566867975492947 3.1422095472267484e-06 6854120.167036427 122.60057886668838 55413 192 607665 VIDT_20210430 44673339.803507105 833.6220621251354 0.9687632144574363 1.807317827416775e-05 5372591.034368458 100.23067980829352 26985 1532 436797 VIA_20200621 4542349.091930085 485.4778818868595 0.19602476319121673 2.0951018967688175e-05 86101.99864591408 9.202534299336095 38769 2158 2263015 DLT_20200721 3606971.047473144 393.6973202859444 0.04398089599729867 4.8011318799412795e-06 423008.1434281581 46.17727394668 None 2561 4398873 GVT_20200207 5360567.955377728 550.401330419221 1.2059837597803627 0.00012384372626328538 1299513.5160202994 133.44839418299276 20810 5623 189228 ZIL_20190528 188003849.57093048 21345.376213908763 0.020922395191078764 2.3774216270104377e-06 41413870.045929134 4705.877573107591 62283 10360 200377 XLM_20200127 1171985096.9082687 136376.82843926505 0.05842776343444997 6.79888600205777e-06 256751057.281082 29876.570088469867 280376 106033 64861 ZEN_20200417 50230983.67991621 7074.272187728407 5.662995638766662 0.0007988578570268706 3674943.112239871 518.4106375153376 60623 5128 38653 CHZ_20200719 65148897.52253165 7104.293952772707 0.01216805391704618 1.3274049737862866e-06 2660738.142298865 290.2581684884388 26940 None 256662 MITH_20201229 8032441.583014637 296.2411910900707 0.013278015102679454 4.888822711156728e-07 25407980.347539213 935.4945781211484 139 2117 908145 HARD_20210429 100737810.35799442 1840.3365596800563 1.6449936360333586 3.004182022462533e-05 6643537.720305877 121.32810819269275 30050 None None DOCK_20190528 7652015.320392469 868.7861774167947 0.014890671161650165 1.6920339825864093e-06 2128347.520738166 241.84513194524303 167 15275 233199 MTL_20190104 10341022.866692118 2742.335400315974 0.264543511608638 7.014701306496528e-05 2048834.0937754589 543.2739252234248 32333 None 567216 COMP_20200801 53550.00269693964 4.724872394197199 5.80593534319595e-07 5.122745517084377e-11 233.18906861982188 0.020574949345676122 1861 None 1052707 DUSK_20191220 11025934.989442946 1544.0482380728065 0.04274110508337894 5.98142225579549e-06 1321329.3465004219 184.91400128694383 17896 13344 845066 NPXS_20190603 224450255.95356435 25675.52149822435 0.0010459746076280365 1.1961549825584102e-07 33102282.402774937 3785.5087247218853 61369 4469 180599 PNT_20210324 84482342.9706227 1550.3523084003582 2.233788325824184 4.0962556293927364e-05 33145000.158680856 607.8033084720569 15298 208 406587 OG_20210702 5027048.798206748 149.66388812598004 3.9241096065599663 0.00011670286212381871 3677763.9611894824 109.37655252267649 680933 None 236216 NMR_20210422 405806026.8229291 7489.404937086479 71.40505979084902 0.0013184744903964255 24789689.097734854 457.7346870930078 27606 3122 915213 ALGO_20200707 183585722.7742207 19666.804329336435 0.2287478774080725 2.4482916988165675e-05 71707514.34269878 7674.865187702233 19491 918 300563 HIVE_20200901 89438112.57294892 7658.044880003842 0.24353913095749832 2.0859629722271098e-05 6346788.3688374525 543.6155363577724 8812 90 158511 YFII_20210718 97384620.6140352 3080.870418547762 2446.813046337029 0.07756253682512022 38346245.78066366 1215.5534747210759 17476 None 545530 XTZ_20210624 2238074573.79862 66383.36484665488 2.6851148983684863 7.960331331464473e-05 122823667.5473806 3641.2486095729637 122510 49220 78747 NEO_20210210 2184929322.1750717 46989.76293735785 31.03333420098169 0.0006660293799473445 1492795138.1855922 32037.982571744065 337653 103156 149199 GO_20190629 14281699.246635005 1152.9101802056653 0.019457574421782007 1.5721403835532464e-06 2567794.0616684346 207.47358604359079 9948 677 943493 CTSI_20210430 187171689.47015896 3492.5984775820625 0.6027311336583582 1.124456525711865e-05 25395497.868530754 473.7789655670489 32861 1094 161196 VIA_20190719 7861775.552463675 734.7044009136471 0.3385738025763588 3.1594416475598735e-05 183813.870081524 17.152809582889983 40997 2231 1839156 CELR_20201208 21673230.896916993 1128.7095875499247 0.005481112876108133 2.8564576476990526e-07 5150493.70322737 268.41569331912785 25391 None 412743 BCH_20200417 4314156177.454608 607583.4639066884 234.1547484095397 0.033022071234635235 4400799102.587254 620630.1706117119 2909 292078 142695 SNGLS_20190730 5874822.714749424 617.6145117167569 0.010192650219718895 1.0710031415835812e-06 185522.33027296633 19.493948509275295 9 2175 None EPS_20210806 187968838.7332859 4587.802296915137 0.6512084513483324 1.590161523048082e-05 33855029.971229635 826.6932947572049 19201 None 26035 YFII_20210324 88967041.71705592 1631.0206083551464 2247.6143009759076 0.04123159075150325 90077424.87011752 1652.434546523993 15220 None 270842 XLM_20200229 1183056888.4871118 135602.99989752323 0.058552600923201435 6.7113495675952875e-06 317160035.25697124 36353.156510882414 281516 106639 78179 WAVES_20210203 694636110.5145574 19505.29438476392 6.931884076880572 0.00019512298959186865 67007060.185381524 1886.156456473468 156348 57356 119606 DGB_20211207 560918600.7608062 11112.944630337766 0.037653703140108 7.455119534790278e-07 27888829.57277277 552.1755918050687 235848 44066 105333 SRM_20201229 50905883.9939774 1875.9236024717386 1.013031395434325 3.7322346263901395e-05 25740291.26892148 948.3300004344699 None None 80741 BNB_20210729 48440837958.95631 1211414.641727518 313.7134832723744 0.007841125798245181 1446736619.9462934 36160.523658709666 None 571165 142 NAS_20210617 19644442.58578877 513.6591611444593 0.43253634061736884 1.129434075291844e-05 3257189.5600749366 85.05137102659806 25096 4917 520126 WABI_20191024 7142182.941555976 957.2656193324356 0.12097698192297694 1.62106959634905e-05 327275.8609557125 43.854371251553 36159 7914 1653961 ZEN_20190805 54422250.21802155 4970.093911859336 7.678263918179643 0.0007010938312312058 3954112.912849346 361.0457000086503 26517 1757 272148 CTXC_20210804 26733358.096419126 695.7618791940074 0.14737217394097102 3.836511627432493e-06 4918181.708118778 128.03408407737277 20213 20595 812838 CND_20200207 13462478.39593168 1382.2725654335434 0.007232849064310518 7.427487910676899e-07 241076.1019959212 24.75635558279836 35090 5996 460752 MTL_20200407 18408726.773754917 2523.965224986388 0.2848155068044058 3.9050198503465754e-05 4864185.377980966 666.9138443303118 None None 465912 BNB_20210731 49890385871.61259 1195796.292088193 322.74375771474973 0.00772642337802778 1393575305.0981066 33361.9243098381 4629050 573193 143 AAVE_20210703 3003573174.8817816 88815.25025776829 234.28644299622925 0.006917114875916497 234401684.8386475 6920.51729669819 247960 11642 14216 KNC_20210124 271945771.6926151 8495.935140505364 1.3544949070790342 4.2265056237323015e-05 97178939.8846409 3032.3283888642354 129388 9371 125563 UNI_20210220 6006310925.07141 107520.85934011111 20.16573557832418 0.00036052834312977296 1020159160.0554446 18238.67472004287 None None 3373 QKC_20210509 214609339.75368485 3659.554451822182 0.03333140930025996 5.676840026381687e-07 17997857.23481786 306.5305622673458 None 9467 369620 MATIC_20191220 33215326.28154721 4649.940280525767 0.013102509002780944 1.8336362338575022e-06 12718418.359796759 1779.8845043290626 27644 1361 165961 MTH_20201015 2218677.9493473577 194.7350400307806 0.006399280922822513 5.601824398059924e-07 68428.19294100098 5.990090532906 18998 1895 1459668 IOST_20210513 1173817498.8579772 22768.281709289295 0.05017158443211389 1.0001852705409073e-06 301671135.46247 6013.902683204548 245813 53303 140464 WAN_20190704 37886102.85330665 3156.80296301699 0.35692332739497273 2.974190425680915e-05 2564372.1548305936 213.68541995967377 108475 16978 459878 TOMO_20211028 193070784.04805994 3299.167794838914 2.2686167519886005 3.8737319069497594e-05 13399616.3563381 228.80251313904435 55178 2320 128333 XTZ_20200305 2089374902.1313262 238667.1964841171 2.975662478401058 0.0003397329882723856 177067455.90367353 20215.88683413715 56652 22165 104382 DIA_20201014 38804623.01220417 3396.654694978173 1.5138791095997273 0.0001325406027384269 8761087.642884975 767.0360397133574 15482 164 87436 WAVES_20210210 982659428.891077 21133.37632623492 9.684384741000796 0.00020791758957181133 346053498.4872241 7429.5488244842945 158943 57458 119606 YOYO_20191113 2228916.5904146 253.4079720207322 0.012733837265375747 1.4470394297279774e-06 740219.5600481106 84.11658384845126 7557 None 1284296 SNGLS_20210825 6000359.096542625 124.86499894996984 0.007171005457350649 1.4931821034865079e-07 468392.09169182344 9.753091011971364 9461 2133 None BRD_20190515 28996641.04695428 3628.691719728258 0.4829086620266294 6.040006684062747e-05 329971.7199124993 41.2713945833772 167 None None NULS_20190613 63042176.52922851 7752.844332294128 0.8881131943685442 0.00010907648596383528 14728122.678879576 1808.8818822229987 21031 5315 664729 TKO_20210718 118803017.55667995 3758.9178920402537 1.5920385215999597 5.0414467985333634e-05 51278827.84557767 1623.8268042335137 297360 None 20921 XLM_20210104 3014708320.363967 90116.56798124284 0.13596750999625584 4.130528455975186e-06 702400653.8309244 21338.082077285242 310795 116096 34006 QLC_20200224 4178886.9232964255 420.0284238930031 0.017403074410007862 1.750117391651825e-06 114741.26045730032 11.5388046235609 24531 5681 940522 XLM_20190329 2045610199.581636 508088.79790055857 0.10633131373461271 2.6410554737905727e-05 220245808.2432325 54704.61870639622 267219 99900 74655 ALGO_20190806 155989156.58839604 13205.352088673033 0.7878660864061997 6.674976765204932e-05 113308248.1842362 9599.72686964863 10926 529 241883 RENBTC_20210806 543975648.2691913 13276.880794253206 40660.06819857199 0.992862974060137 5266483.005418492 128.60027568228756 88535 5582 110606 HIVE_20200612 87877841.00564018 9450.410684858645 0.24496115881114636 2.6335945806908633e-05 13618386.89235938 1464.122316024788 7537 86 109710 EVX_20181231 4227590.377835411 1112.7854397559224 0.21889814762271026 5.7594503916292426e-05 510649.7399726273 134.35754833064607 14079 2331 1324395 OG_20211104 9056618.363624502 143.85949635290996 6.527500695911214 0.00010358059428740125 1874853.9789811524 29.750818635164816 757501 None 255994 ARK_20190105 63034511.32088559 16543.748995309346 0.4529942131144441 0.00011889477527258618 1725383.8166867837 452.85152702846113 62941 21807 155781 COMP_20201129 12496.090997808327 0.7052113990565224 1.3590684696678998e-07 7.68497e-12 9.366904979256427 0.0005296597291821969 None None 2442703 FUN_20200107 18408326.834890194 2371.696814510135 0.0030907359999768885 3.986236245623109e-07 612886.3100931328 79.04620853278051 35287 17155 368144 BCD_20210823 522928362.93507797 10598.620725127288 2.7729230729199834 5.6285619336349445e-05 7942268.200157047 161.21452807217227 34792 None 1368102 REN_20210723 281687971.87538326 8709.54604757268 0.320898765790196 9.912080762844249e-06 15964737.760828488 493.1267643030488 87780 1179 100399 TNT_20190719 18086757.93222538 1685.2492034006057 0.04173176804879716 3.911281079524319e-06 875123.5965386386 82.02035344834876 17589 2546 635699 NAV_20210617 27369572.275165904 715.9029509203807 0.3872115258249163 1.0123424947597633e-05 480113.71689058555 12.552299854451347 52985 14103 660151 BEAM_20210202 31358369.72284332 939.1618196787388 0.3892409521621069 1.1655765729576076e-05 14449703.628654547 432.6943488907611 16232 1667 285375 UNI_20210809 13848908166.127323 314822.4413124095 26.6531195206146 0.0006060266249603401 432207756.86523604 9827.345274617159 None 50149 1884 QSP_20190314 0.0 0.0 0.018281798522868445 4.729094371430912e-06 394489.6067897458 102.0456809390911 56558 8550 1028822 VET_20211125 8221522576.544431 143714.27843064218 0.12293738981070128 2.149294638469133e-06 539493390.7489272 9431.876290944883 510816 216774 35593 DASH_20190228 695843185.3738735 182073.1362174393 80.21030264526905 0.02102627752363516 928896434.8118212 243500.3183499472 319715 23241 89364 CELR_20190706 52325686.391546585 4761.884748715249 0.01738947002884848 1.582523953894893e-06 21011730.19909699 1912.1667479045996 None None 482178 GTO_20200707 7206304.292225734 771.9826265750892 0.010872723895244841 1.164192548003327e-06 5092626.080019859 545.2908939147677 16581 None 1271054 OXT_20210805 176215848.07417306 4419.841961321458 0.2970066040390901 7.467896383002131e-06 10585169.218983566 266.1521523390401 68452 4354 223178 VIDT_20201130 22002254.83496578 1212.930847327612 0.4762365711779278 2.621042214242761e-05 703550.314541077 38.72098838807953 22621 1100 None TRX_20200217 1488419075.031469 149310.3112504143 0.022581478255530706 2.264763559606111e-06 2181389819.7840624 218778.0674603395 498542 72020 48265 BCD_20200719 167207118.64701793 18233.40446820471 0.8885361533372018 9.691732735206483e-05 18172524.66003364 1982.1731672651013 None None 1655072 NAS_20191024 19254577.76300437 2580.0071622502464 0.42309103717460816 5.667037055571258e-05 5889363.546920609 788.8430271888701 24001 5067 1447881 LTC_20190826 4562469731.1923895 451936.6251574099 72.28716978058533 0.0071567203485560435 2340871846.0711937 231755.72131251325 451998 207882 123278 ARPA_20210722 29318192.266805366 911.0417216242182 0.02995538326960509 9.275442016716424e-07 3704785.2942895936 114.71567855529509 None None 718548 DOCK_20200106 4064627.9751465954 553.5551360417804 0.00725513099378227 9.87783050811012e-07 967796.9625744023 131.76515173559983 43596 15081 271029 BAT_20200903 464686202.37575233 40732.26220210435 0.31806335305323047 2.7873650345941053e-05 143553643.72100374 12580.39957308566 122047 45183 16252 WABI_20200217 9724428.309630513 975.4777302667936 0.1642557507362927 1.6510710435723586e-05 1894119.4386149144 190.39368449177996 36642 7779 3929057 BAT_20200520 301286570.28429437 30876.072182074364 0.20612040748665683 2.1133280467464234e-05 57796970.65186276 5925.854726610148 117203 38622 19122 FET_20190930 12003561.089417879 1489.0069512674022 0.03520879238254145 4.372736652823816e-06 3390984.357154929 421.1414417904342 16205 310 435240 REP_20190401 170092645.81668404 41451.23964756666 15.462967801516733 0.0037682945134151513 6127865.446285935 1493.3486272874839 123861 9823 255741 POLY_20191216 12071593.483547203 1696.3446819268825 0.021783744910899176 3.0637317481807445e-06 5108525.449067179 718.4784649615315 35009 5031 311389 LEND_20190623 10134098.81350573 944.561427597859 0.008821268392081508 8.223799576246114e-07 2191573.437368972 204.31370982574072 42041 5867 977023 TCT_20210104 4988928.512679904 149.65492873225767 0.008619196736297075 2.5855356917250114e-07 492093.7969413573 14.761538860232216 None None 2545563 INJ_20210105 57518187.050168335 1838.4467766653045 4.265186579528578 0.00013632763689458953 18261075.933438513 583.6765362404125 36875 1936 132125 DNT_20200217 6174451.851436389 619.3721713919056 0.008336033715296048 8.37924019334025e-07 621980.5604361191 62.52043465130747 59192 6123 729290 LINA_20210620 74186506.57754971 2085.1903221111434 0.03001134190638863 8.429296267953565e-07 10425675.573493414 292.8263203846779 None None 70371 DLT_20201014 2999110.52450279 262.5048069802602 0.03657015051214548 3.2008958066063044e-06 16787.38718647536 1.469358930618 None 2542 None DCR_20200625 183296616.45811832 19701.193904335207 15.80040092605902 0.0016998971031641252 66357437.278724775 7139.110958726442 40522 9855 289524 GVT_20200423 3367695.3668568325 473.4847642851442 0.7598418459739499 0.0001068056588220283 160701.83751916338 22.5887343808296 20490 5563 159747 WABI_20200329 4121401.5836905595 661.1199098214488 0.07008288039306287 1.1210307435621946e-05 1012950.9833251204 162.02946963084835 36694 7751 2574958 NANO_20200217 142927463.3557374 14337.352603954005 1.0714825520492928 0.00010770361509118927 11624197.989982054 1168.4447345057722 None 48958 300765 TRU_20210825 242153599.73026034 5039.1165744517675 0.5729786740987548 1.1930991355746476e-05 28301142.594767928 589.3076006485497 31818 None 91553 BAT_20190615 410524997.50241697 47198.638666396786 0.3223256825610335 3.712341238553978e-05 48048001.23932158 5533.861745473882 102364 27750 48578 SNT_20200224 69486118.48940209 6984.22516408556 0.0191019222767735 1.919659393401623e-06 66042742.70048406 6637.005928201537 110588 5615 210180 ELF_20190826 38762667.645165846 3839.646119268878 0.08403634033814564 8.322720202477035e-06 11493391.217842929 1138.2727864970261 None 33545 1269907 BNB_20210708 50772663395.84581 1494308.5002402298 328.28831490686645 0.009662200761061826 1783548169.2798407 52493.49335962509 4459043 542871 139 STRAX_20210202 67889902.72250435 2034.6310022165248 0.6812516073111766 2.0397692534059282e-05 10587830.47883726 317.01548795233344 147231 10321 249759 QLC_20190701 7130728.979913072 657.2535336770858 0.02969287560412221 2.7397133049214378e-06 350461.4240794924 32.33650520123426 24996 5785 940522 NPXS_20190716 156426387.57120264 14282.87843869477 0.0006676918039216029 6.104951630184061e-08 5713515.87078167 522.4077609541331 63601 4659 202780 ONG_20210703 0.0 0.0 0.7104387293695688 2.098282184435653e-05 8276752.073715524 244.45403527872523 141034 19558 137199 VIDT_20210916 45307222.07291955 940.1311411345653 0.9788653477519702 2.0305718941892987e-05 20994815.36411471 435.5193704626592 31485 1686 694933 KEY_20190509 7195684.154373974 1207.9680027835163 0.002746786584788383 4.61169035090149e-07 446001.2867365085 74.88094786551703 24045 2832 639890 GAS_20190908 19572899.671142146 1869.5242362199845 1.4043188440314733 0.00013414144704831373 865342.714127478 82.65809745352506 323847 98229 210014 ARK_20190730 55390830.80219765 5823.291100148217 0.38826233833307755 4.0797062113329504e-05 1041321.2135246152 109.41789103337325 63474 21849 182377 XMR_20200308 1147992733.007122 128981.6887814298 65.6985413061043 0.007381500391505774 117898866.93384352 13246.420926995423 320817 166541 88356 NAV_20210304 27938737.073914934 549.5129376149198 0.3927957960288779 7.747981167287561e-06 454840.7294476028 8.971830761692459 49737 13767 463093 OST_20191113 7601535.985765248 864.0414283900054 0.011160920065698635 1.2679948550152742e-06 172241.8548544915 19.568439204667992 17930 755 684764 WABI_20190524 17975777.4363069 2274.1769991637025 0.3424425449834552 4.3341534457900846e-05 3297612.9645855245 417.3652136019176 36346 8031 933235 OGN_20210420 355294692.9174893 6349.6585361071675 1.6582737727758934 2.9648944741403114e-05 145414473.3579082 2599.923942577795 101637 4759 48206 MATIC_20190523 46878984.71453992 6117.709838248325 0.02169048924254803 2.8320586162798154e-06 288364882.8165133 37650.891221533835 13032 451 412270 BAND_20210930 288985634.0553421 6955.913533636965 6.956397301287613 0.0001673555302950387 21065885.52408118 506.7986042666978 None 5855 386356 POWR_20190930 19225878.471967787 2385.152034817143 0.04485864165729915 5.571194389161336e-06 1501549.9709222584 186.48417482089044 83701 13013 385730 ARPA_20200704 0.0 0.0 0.01350888786000353 1.4903675625833018e-06 2517094.4678566386 277.69835575868285 18509 None 769985 XLM_20190621 2362990478.675487 247030.95049308593 0.12165999885843373 1.2729370766835499e-05 302797788.463339 31681.94437690864 273188 102283 69800 STRAX_20211111 276064328.0328749 4258.861373530788 2.0823697356578474 3.2065821980221165e-05 4215034.375572067 64.90612095114237 157442 11128 245152 CHZ_20210418 3319956868.8663135 55073.17382989594 0.6407087629614298 1.0658905631839312e-05 3420779859.0146313 56908.492301561535 284754 None 33338 NKN_20210710 142783812.44996706 4202.537183553743 0.21984551828096358 6.469056945401882e-06 7576766.214374675 222.9498808347142 28479 3271 105019 STEEM_20210805 188591317.54385188 4741.6524343204455 0.4914101825581173 1.2357882251474717e-05 10496128.3828932 263.95447887735935 14159 3926 205413 FUEL_20190708 5756968.829341125 503.40903834067245 0.007200070170980486 6.293237954856567e-07 307147.07018641016 26.846260576886657 1 1514 None TRX_20210729 4331102188.549069 108312.75483863417 0.06053608596160201 1.5124379786186943e-06 1075176539.854905 26862.288943289997 1077451 114543 24266 CTSI_20200511 5773103.662446079 659.307866792161 0.028839005062519334 3.293994694261245e-06 4083085.1027314398 466.3704810709427 None 100 291799 QKC_20190515 34644886.4748579 4336.145739857938 0.02186458275334046 2.7357533840175328e-06 11428625.820307544 1429.9793467496984 50954 9179 157816 LTC_20200422 2614921638.8808303 382000.3623792548 40.50635326036437 0.005917354329564601 3286151898.121419 480056.1787669748 133045 213201 145046 AVA_20210603 153389935.1779733 4077.932659216065 2.945723107018715 7.831322471830616e-05 6385061.143806255 169.74939939317503 80914 10164 43410 ONG_20200217 0.0 0.0 0.19208471680222003 1.926474706607748e-05 11020393.499451756 1105.2680133536205 83851 16343 403200 CDT_20210408 31751956.9820218 563.7007784936737 0.04653698062713123 8.281629218209823e-07 2368631.557680689 42.15169968252294 20351 315 437426 LINA_20211202 164178400.813813 2872.4087480746384 0.05272798960270409 9.22097971714486e-07 17881435.5367606 312.707455073248 None None 138845 FET_20190629 38743818.46132437 3130.400401253276 0.14510436881249747 1.1720571159155327e-05 17273073.855433613 1395.2046579766288 10014 283 385628 ZIL_20190613 211166153.83093807 25996.042667105423 0.023144858698739033 2.8463598668452638e-06 45105845.35109052 5547.126886303601 63580 10497 194027 COS_20210610 50552753.114339806 1346.7832634150343 0.01674317978936229 4.4703730266396823e-07 8588871.303129297 229.3199922943145 25846 None 208235 HOT_20200404 58185072.046798036 8652.45272865646 0.0003277506843538713 4.871334597100087e-08 5095594.352180134 757.354484537469 25094 6927 474054 BADGER_20210725 80198476.7990627 2347.313099469827 8.66510478233184 0.00025358060047616916 5508502.70513337 161.2039852698031 36001 None None ELF_20210519 170998475.61469924 4011.7577015105303 0.37504269624763814 8.76659674669828e-06 29983861.58816583 700.8706637462519 87710 33385 207854 LINK_20190130 165140249.58255413 48379.96949665744 0.45350534136512816 0.0001328482178925911 20831911.560974393 6102.424985427782 9523 6281 268914 STX_20200605 97630509.52464737 10002.796481524238 0.14540951202062896 1.4873975043967322e-05 1436929.5628386284 146.9838813197345 40971 None 95761 FRONT_20210325 88714464.91508822 1678.8576562423475 2.4221629418755364 4.590968278635595e-05 52889203.95752042 1002.4621112535435 None None 142533 OG_20210708 5217129.470562986 153.19200276447373 4.061914871579354 0.00011958135958841458 1897568.8084755274 55.86376504779943 683476 None 236216 1INCH_20211125 723122129.1631955 12640.356338180596 3.9938530933633207 6.983160045937542e-05 216992595.38059306 3794.0654974116305 426585 None 3702 AMB_20200224 3108120.4091358487 312.40350377540045 0.021476653022606797 2.1606103056250406e-06 368305.28302717477 37.05252346755438 19189 5508 619062 NANO_20211216 468125277.02398473 9595.406633353998 3.5300641557119166 7.234105971464786e-05 15778315.587592935 323.3425852251761 146056 118807 64172 ALICE_20210821 225203704.0270455 4583.638741255164 13.00278182185977 0.00026448701585579274 119960827.95892268 2440.0994987938348 98342 None 31647 BCPT_20200207 2987185.466198427 306.71206269387204 0.02562221378371241 2.6311717752048017e-06 519538.66292208654 53.3519655072588 10682 3152 3767416 CHZ_20211011 1651429843.7615275 30182.39684473005 0.3089901426848452 5.647779511804341e-06 161878566.31432253 2958.8466553859807 392616 None 54002 NXS_20190716 14152943.128020145 1290.746096938929 0.23665392099291038 2.1614871484982503e-05 236675.15964045387 21.616811324539103 21415 3528 1023997 MANA_20210707 815546221.8535591 23876.918434815005 0.6143668692440382 1.798845324947167e-05 83878059.11734805 2455.921080095707 145273 34122 16474 ATOM_20190908 531653080.63840234 50784.51916530696 2.178562445314765 0.00020810045175333858 147399230.28246593 14079.85640982795 28366 6796 108058 WPR_20190512 6078831.151645921 834.5790372987861 0.010123029331309633 1.3898178552934858e-06 476114.913268774 65.36709377951041 35207 None 1010461 ADX_20190305 9995268.087552648 2691.7729049390773 0.11482957565027958 3.0924147077755564e-05 622287.6170469268 167.5849944167092 54237 3938 897974 LUN_20190725 3859183.1411171816 392.58907934882416 1.4255522403983165 0.00014518998898570105 487807.81953729957 49.68236865593229 31139 2209 1689451 BCPT_20200305 2878487.2811165843 328.8137359656745 0.024790000196546428 2.830730506130821e-06 336553.0946535333 38.4304600409488 10701 3161 1771218 REN_20190627 55056314.910802364 4234.5075806405175 0.07038924707508395 5.423048004723852e-06 2179679.974111094 167.93060908764676 6614 781 1312648 RDN_20190706 14556944.85300666 1324.4663402738217 0.2877211439079933 2.6178361897998682e-05 368493.80711204925 33.52747771236201 25689 4421 772412 GTO_20190903 12198718.83723348 1180.5085158459403 0.018408171974367536 1.7814168903187686e-06 74309654.17960271 7191.179724614623 17361 None 900303 OMG_20210324 789102115.543255 14475.09926721574 5.739281757736586 0.00010512632967890033 486607048.9843462 8913.173322889686 None 3990 140232 BCH_20210718 8236750477.032158 260605.09220657797 437.43332739522174 0.013866379622022576 2976262128.448702 94345.76184093794 None 588837 283440 TOMO_20200321 16374048.449482944 2648.6364971964786 0.23464166979074666 3.7842427188234386e-05 12105330.59143195 1952.317727300095 22130 1508 236393 SXP_20211216 292794978.6624447 6001.897606513067 1.521122628230683 3.116996629298509e-05 60773521.94140884 1245.335908665758 None None 180854 TROY_20201224 4582312.580506311 196.0484584095231 0.00249310976527027 1.0691170129708525e-07 2936173.8867472755 125.91156230227047 None None 1087895 VIA_20210104 7050042.639118469 210.2900506100527 0.30321889123088913 9.211423071974483e-06 199865.6427222576 6.07167642224814 37875 2129 3644327 NEO_20200417 534162824.7394936 75228.73210790657 7.582105341847793 0.001069579567336497 397230230.8851439 56035.799995831556 321260 99297 240659 HBAR_20210718 1690856445.4217846 53498.561537254165 0.18878630700810337 5.978222952271581e-06 88244652.67337391 2794.409278870811 None 23294 41411 SNM_20200403 2878651.1717784386 424.4734408283039 0.006612592787232976 9.699999941855165e-07 106842.04828007915 15.67263999841914 29985 9690 7470249 VITE_20220105 60635215.4216153 1309.7955121362504 0.07965575782784658 1.7312365404328845e-06 1945868.650053846 42.29146770703818 40150 2957 163960 XEM_20210616 1606061934.1084678 39767.24490131654 0.1779941888196705 4.4100437797854755e-06 86164474.89201564 2134.8399577302494 369546 21608 60595 GVT_20200127 4496028.062386266 523.9091864619317 1.015976226281977 0.00011822301825811856 620052.3967715746 72.15175309050088 20825 5629 244138 PHB_20220105 16989551.05068809 366.99527765622906 0.45500948068797964 9.897869146095696e-06 204213.35021470403 4.442274510972298 None 428 222681 COS_20200308 22333278.347430665 2510.701234079653 0.011346568797125986 1.2748335100470595e-06 7887991.6234907685 886.2481890687192 None None 161709 KNC_20191127 24044756.543211337 3354.5726908717943 0.1464009134334664 2.045610988139679e-05 4829807.656796821 674.852866805013 98277 6722 181091 SNM_20190725 5675060.889941408 577.3156775829121 0.013557192347919717 1.3791534290554457e-06 69037.05452265314 7.023038991654842 31177 9957 14424702 KEEP_20210731 122231349.9177841 2929.6986274020223 0.27877137253753737 6.672084684067057e-06 19421506.453897085 464.8322909667048 22346 2834 130355 MTH_20200707 2895155.817413805 310.14649141064143 0.008392867151516476 8.989254408361736e-07 160764.21472340816 17.21879305152698 18987 1908 2218636 THETA_20200418 78207933.59057271 11047.37145519135 0.07779495213835426 1.105053111891487e-05 1086654.6437741655 154.35591418815926 None 4024 358410 QSP_20190909 0.0 0.0 0.01154088786332272 1.1109974534136233e-06 97386.23365529024 9.37500293477603 56437 8530 551928 THETA_20200320 65526835.96174497 10589.50632365513 0.06509737664709918 1.0545462770062215e-05 6110103.402950513 989.8074434911402 None 4026 384607 WPR_20200430 3362115.7865791074 385.0993021800958 0.005545333195954744 6.324983020458933e-07 180024.83271428559 20.5335544311287 33238 None 1026824 QKC_20220105 147636807.50480813 3187.7104496831826 0.022588976415403056 4.918405161953261e-07 47800295.14038528 1040.7785374508985 78680 9625 485453 MITH_20191030 7215962.614951477 766.9351164600381 0.013295488530337433 1.4130861796982864e-06 1877764.454123744 199.57468977513508 88 2081 644077 LSK_20201129 180824044.76717383 10214.793263708529 1.2724664138052721 7.184176474353825e-05 3797205.9811850092 214.38520956105688 177174 31059 209509 NULS_20201226 23775711.68488292 962.7700567789364 0.24076459643989684 9.764101233137756e-06 7013099.801776588 284.4131464309333 33375 5110 733138 OAX_20190614 9343475.374238018 1135.1588100318584 0.20888109396855914 2.5377410927980257e-05 1722036.2195071185 209.2138639501554 12246 None None GRS_20190730 24135246.390636183 2536.729507962938 0.330342511904889 3.4720573559541e-05 25263758.35705855 2655.341498036657 38662 107014 None EVX_20190227 4987185.93046994 1309.2440864593973 0.25861282547702047 6.789145565431933e-05 573558.8258455925 150.57158715239194 14029 2317 1312426 BCPT_20191102 3657953.8719210303 396.18683184884236 0.03149101110054087 3.4107384500963866e-06 284542.0994880352 30.818276247037502 10829 3128 1601179 GAS_20210624 62098167.24840215 1843.2864300263373 4.456236043016581 0.000132276358402479 6558389.3484218195 194.67547311690223 404491 112051 92050 THETA_20210624 6905172874.089474 204813.8232730539 6.89724388732338 0.0002046569297582054 482454294.18635947 14315.517358798159 177445 20275 17272 ROSE_20210114 65316982.63486678 1754.0147716203526 0.043565446896546345 1.1657141775554493e-06 4990993.5987955695 133.54785529964843 8558 618 219756 REQ_20210107 21753483.9512669 592.4981035268993 0.028467460985450728 7.716641235436753e-07 494032.60120423103 13.391683733407215 39533 27276 443928 KMD_20210616 142173250.5525583 3520.3116100739257 1.138224851007989 2.8200282387044992e-05 5017733.562529131 124.31770689329429 112125 9333 227108 USDC_20210702 25295918721.68839 752839.1713491303 1.0049284501172215 2.9875063170480875e-05 2073948085.8588114 61655.46419757798 None None 34841 BAND_20210420 425470436.96740156 7603.806208776397 15.390748874247652 0.0002751773985652066 260889925.6386658 4664.556067784429 81950 4803 169936 BEAM_20210131 28663069.271675978 837.8823121338233 0.3574351477529957 1.0462190367198038e-05 7995046.248753246 234.0164261260957 16180 1653 285375 DCR_20210219 1759724651.3272176 34045.701201793854 139.46273839098595 0.002697224560052274 49553398.56986292 958.3681289979049 42639 10463 268087 GTO_20190914 12104254.43529052 1168.9057636376988 0.01825108131382474 1.7625481106219237e-06 6005948.8687295215 580.0080361842802 17342 None 900303 AUTO_20210809 31322210.17911053 712.0369748718946 896.6398591892255 0.02038334566672849 4739682.30326966 107.74736562055153 None None 12074 FOR_20210902 44780222.40095151 920.5667573006568 0.07955192276593755 1.635012543264373e-06 35192171.529492825 723.2966831578506 32560 None 147912 QLC_20191024 3871741.729866336 518.8063632797681 0.016138383554235598 2.1616344848527486e-06 174266.74630560214 23.341929327141802 24676 5719 940522 RIF_20210427 216105004.83560896 4011.3914652024664 0.299579486237061 5.559512106479932e-06 4599131.022707238 85.34938396881857 42606 3210 604908 QTUM_20210124 398889386.2102816 12461.816679058806 3.92436669856341 0.0001224541918495247 895920546.99876 27955.906002433065 190305 15057 257313 MTH_20190810 4033483.579923773 340.0335883182014 0.011809561171854548 9.955779866605769e-07 185826.9482788038 15.665714952695218 19481 1994 1172984 CND_20210813 29933095.221975792 673.9197049266679 0.01595272289238101 3.5882824596286754e-07 510119.6005643952 11.474236889629836 36183 6259 167421 SUN_20210624 0.0 0.0 0.00033071547510329626 9.9e-09 28.344959299717654 0.000848509120958301 66 None 3515147 POE_20200308 4274870.189925969 480.9376027561002 0.0017737186453237895 1.994703190886158e-07 243273.29679245412 27.358229708450775 None 10464 759696 LUNA_20211021 17184301985.38095 259256.1204042295 42.80153958232955 0.0006459571258507685 1358384797.8422189 20500.625640480284 174386 12169 9739 SNM_20211216 11956958.84488258 245.088 0.26878140020616775 5.5e-06 396518.12401976844 8.11384151 33341 9786 None LOOM_20200430 12828818.820743851 1469.4226758591426 0.015456000660873081 1.7629047397104703e-06 33387149.653055068 3808.1238258350822 21550 None 708796 INJ_20210603 301163895.1471138 7995.998366209731 10.36462059281006 0.0002755971401614682 37577200.43271989 999.1845704140837 71826 3590 114245 CND_20200711 14509367.487626601 1562.6146341506937 0.007520348395197695 8.100207213274297e-07 1061631.6168416722 114.3489055117759 34292 5932 376483 NPXS_20190615 209603455.70649266 24090.742183230384 0.0008773382500652252 1.0104621325857885e-07 11110009.704590399 1279.5799223748206 61782 4530 180599 QTUM_20200315 112601041.82640287 21773.715730403546 1.1745241651665348 0.0002266939171004254 357770370.95766944 69052.95712103687 179700 15171 105986 LINK_20210509 20499347660.690598 349511.75775916956 48.59148049620158 0.0008271946628765536 2133658197.3870878 36322.22470396584 275830 53954 24451 IOST_20200531 56094509.37509217 5811.742206879607 0.004674691445536471 4.840210543022742e-07 48860420.41996317 5059.04453392408 192249 52189 416932 BCH_20200707 4474059252.070321 478859.1811637362 242.43152986122755 0.02594748020467088 2254171616.6239386 241264.3002078213 3354 302125 156887 BCD_20190507 168818824.95803258 29511.65957066785 0.9036042040736114 0.00015801898487594737 5878674.652007202 1028.041034712213 21233 None 2990373 NXS_20190616 21266144.850327123 2409.69092453079 0.3561697838427427 4.0358001027381714e-05 1019887.0315578035 115.56455301552612 21309 3518 925188 OGN_20200801 23981555.4122553 2115.691700206412 0.31007495738168506 2.7377306346928482e-05 4761286.538782962 420.3860939898891 64639 2336 154387 REQ_20190329 20158380.536305793 5006.857426703882 0.027627207658350576 6.861934647685363e-06 513915.4798763043 127.6442585495664 42038 30553 402457 VIB_20190704 7952586.842931267 662.702810089601 0.043881052317575324 3.656683951385465e-06 1533354.6220316426 127.77709152430943 32630 1120 2096372 SRM_20211202 756770271.4261378 13239.644450082405 5.683904899957748 9.939832891980272e-05 112040474.95159388 1959.3283451403681 None None 18033 MDA_20211104 15453919.179379594 245.4771682500698 0.7885989382279814 1.2505913134257516e-05 1271077.7996431917 20.157253299046992 None 388 606627 MIR_20210511 594318220.7696877 10644.47884339272 9.406688526171584 0.0001683511557061987 68007974.01668955 1217.136188903506 None None 16442 BCD_20200430 112995006.90636007 12935.110898069945 0.6009263439825765 6.854139846833613e-05 23753142.487937115 2709.273142114182 28799 None 812794 DLT_20190130 9393920.513731867 2751.0071045016634 0.11691090798906266 3.423861996023681e-05 1405465.7129435134 411.60578803406537 14505 2691 948485 ATOM_20190509 1036759448.5761645 174174.4241285653 4.353026395766152 0.0007307653996594421 59602581.358196944 10005.798317538398 23304 3982 164771 MDT_20201106 7580941.958582272 487.48330573454547 0.012384175599121095 7.966613449565392e-07 927875.583037884 59.689286866035296 13218 65 934790 BAT_20190804 299417985.9239329 27749.62230996455 0.2344435275106109 2.1723693327377998e-05 24651533.48882467 2284.227503515012 None 29196 37775 YFII_20211011 159450141.8288618 2914.194312163679 4017.133387866264 0.07342591400178347 18213996.060902487 332.91882028020234 None None 483541 COS_20210206 35293452.78662309 931.2009526667376 0.011709527912583426 3.0805262758128325e-07 5936452.01494434 156.17535184732654 14924 None 369084 PERP_20211007 765318706.286851 13788.134170547117 13.82991649356705 0.00024930089115684015 55699797.25392769 1004.0558884877239 28709 None 106399 FIDA_20210930 278565792.9771198 6701.606081130788 5.64384158351666 0.00013571684821546098 1537643.5147562474 36.9755473135784 46472 None 551735 VIB_20190523 7783988.806523792 1015.4191069812424 0.04569201759613139 5.966312276052979e-06 2519857.282835068 329.034615485075 32959 1121 1724143 NEO_20190410 788940510.4387234 152533.97348788282 12.135186166466898 0.002345110939582744 233512518.77404675 45126.02895370107 319719 97718 185739 BRD_20190916 12850792.330627527 1247.3319876113853 0.2127732555968549 2.0647223078731235e-05 60247.57862292027 5.846341883012583 169 None None MBL_20210702 24676882.349145416 734.4158503831021 0.006938712180544239 2.0629218362869446e-07 135743755.6161387 4035.7453993453723 None None None WPR_20210324 24895432.73861447 456.54478528387307 0.04088932720628298 7.496184435054547e-07 1555960.9392250446 28.525219100155308 33001 None None ONG_20201129 0.0 0.0 0.29426335466983544 1.661162531929727e-05 105336605.54168008 5946.415671187795 93795 16698 254257 CLV_20211120 215737929.8289505 3710.1292402404756 1.1346414057581018 1.9451763038097985e-05 12238591.136419429 209.8126980891709 90334 None 90602 MANA_20191108 41553001.09397631 4507.237669095263 0.03130471075471809 3.3956096507852735e-06 7049740.003637716 764.682522686187 45863 6409 84701 ANKR_20200903 69537394.18022245 6092.5307391509905 0.01191846200667814 1.044789979739684e-06 26311892.053757235 2306.5393127363564 26118 None 5082 DODO_20220105 240350825.88103983 5195.363572901809 0.8848283479349142 1.9247764225426127e-05 37210774.66750626 809.4498996525183 126538 1268 16737 CHZ_20201228 124885309.53731905 4717.265870004896 0.023898695884637517 9.087540647876567e-07 102066481.56317721 3881.104242961437 61941 None 331947 ALGO_20210408 3474087616.057601 61677.283097065214 1.3084392213632328 2.328472612504651e-05 720736048.0121754 12826.07645231465 78946 20316 136604 AMB_20190811 3673787.598162723 324.23674460484517 0.025394789350702367 2.2424319732367603e-06 88460.3491801216 7.8112998940747875 19351 5635 834562 POLS_20210723 66175115.31163167 2044.111928944204 0.9160929703447165 2.8296620807952677e-05 9090186.339680322 280.7810607156777 383107 None 18534 BAR_20210509 105951986.73027304 1806.4704171628453 35.9330359677066 0.0006121995733577273 42402645.09779113 722.4238236211484 None None 39485 QLC_20210105 3206143.376268151 102.4775685382064 0.013475435854969778 4.307137078246412e-07 651268.8588717149 20.816426868441976 27312 5593 940522 LUNA_20210506 6624928615.763411 115723.95571806858 17.032353704297762 0.00029710444693490057 455826021.32233965 7951.216861433395 65209 None 21924 GVT_20190627 14062435.93102141 1082.8675308960544 3.1882321927918094 0.00024448296174021077 3452259.0270449994 264.7293109750787 21418 5765 171234 SNT_20210509 819647494.3050497 13974.905017431456 0.21174074204394344 3.6045580407035087e-06 88251289.60047987 1502.3414599437158 131005 5947 112521 WAN_20200127 20491347.977115586 2387.3952175140334 0.19324330682995236 2.2497549855931025e-05 2448320.4992826474 285.03555129274895 106518 16495 889247 REQ_20200607 11704057.176138649 1210.40759202913 0.015164607546198437 1.568290023521275e-06 178856.65145842743 18.49695755515882 38883 27986 832677 YOYO_20191015 2456450.5513654263 294.3134120276298 0.014045382685356789 1.6828120147028383e-06 186769.48708279352 22.377313874864175 7528 None 1153684 CHZ_20210131 111371983.05743991 3259.248613266939 0.0209468217269541 6.131171986661937e-07 50964876.45086611 1491.751001046373 68651 None 105011 BQX_20210202 609266182.9051886 18249.619689185307 2.735345302058342 8.191186945669177e-05 22155417.687207635 663.4598125463006 35396 517 65097 MATIC_20190615 45637339.24130931 5246.989337192915 0.021151822769608322 2.4343271541438746e-06 45609709.02514853 5249.143507955744 16117 637 234155 RVN_20210201 197246114.68915707 5967.580409757848 0.024538489975042297 7.421597812883561e-07 162639388.51272964 4918.982917459302 36343 12979 133359 KEEP_20210805 128488984.8361212 3222.7578447271267 0.2922930068682343 7.348969536889416e-06 17851044.61024137 448.819437891844 22455 2843 131612 KMD_20210408 464720945.75281096 8250.312226471633 3.7805336874915394 6.727763130490508e-05 202897487.06850916 3610.7236321822766 103941 8905 223380 GXS_20190405 73658250.10767102 15042.910099017534 1.222438403658725 0.0002497433640116865 16362239.934731428 3342.7948858902146 None None 652404 BLZ_20190401 13789224.000785222 3360.4064765183443 0.06704276409824567 1.6338188332179335e-05 932532.9734136041 227.25643177944883 35266 None 1258307 ANKR_20210210 127772942.97205332 2743.2842504668106 0.01965685668463043 4.220329449449999e-07 65915305.85825558 1415.2023944937778 39444 None 5358 ANT_20210104 106307391.43365118 3177.772523572899 3.0615731258890175 9.300688757837603e-05 18532569.473615564 562.9970393310439 76550 2689 131856 RDN_20190816 9687906.700602697 941.7823154754307 0.1913083873745745 1.8590062011536558e-05 344788.7944700938 33.50425539645649 25593 4394 818070 ZIL_20200407 48738317.82464639 6700.966365597369 0.004665247243457514 6.411965784425789e-07 26323484.119596142 3617.92785448678 68799 10558 227703 MDA_20200610 8932511.033929262 913.7920941922138 0.45454732311439583 4.6526091683230074e-05 184280.89380147652 18.862435932368907 None 376 2681133 FTM_20190812 37725095.223779365 3268.9252820593024 0.018217128031039292 1.577472845236584e-06 7313410.946149504 633.2890208571841 18287 2068 402967 CHZ_20210108 106270847.25830936 2714.9674306188062 0.020094946313787332 5.092173431256447e-07 47179093.2862685 1195.5449971930113 65452 None 151849 MATIC_20200404 31816155.49278826 4730.91226333492 0.011536187443540558 1.7146151539892871e-06 15226623.499920247 2263.121982442402 33067 1612 187719 LUN_20200322 1563984.6911445467 253.8259768064675 0.5790801257828068 9.398856422324539e-05 2488694.9054944823 403.93177134326834 29621 2148 2364106 SAND_20210310 357207274.27559906 6532.857518331534 0.5271023057954497 9.626844998178529e-06 490342546.2726988 8955.475316799884 79507 None 39001 ETC_20190325 526532064.32576394 131846.48080334484 4.822846557049052 0.00120775547855472 206761586.69946417 51778.01867363136 226380 24278 601028 MTH_20200530 2517076.295287717 267.07401217577757 0.007227154267722635 7.683421429118349e-07 165375.39578188403 17.581593151737895 18996 1912 1287418 QLC_20190312 7694042.68525314 1987.3189650279382 0.03220135123703158 8.328804682796821e-06 1111955.4054090504 287.6046821594767 23512 5842 940522 PPT_20190621 33821705.80137368 3535.7773155709215 0.9319112313111091 9.750652388991834e-05 1310523.9625179518 137.1210387493522 24041 None 671795 CTSI_20211202 520150906.9827036 9100.381098427488 1.0728152964057416 1.876069731852379e-05 144268808.63338467 2522.879250829888 None 6528 102870 AUDIO_20210727 239899902.44665834 6407.858182130169 1.1246922525637022 3.005156590829328e-05 35560043.746097356 950.1576950509933 None 5926 31979 POA_20210117 6175736.726563338 170.178841080882 0.021401350288162008 5.91278420773393e-07 295296.8354796058 8.158487394056714 None None 322201 TFUEL_20210114 0.0 0.0 0.0288114706827187 7.708598607470231e-07 13442574.088388685 359.66025143146334 79425 4912 64313 RUNE_20210909 2373014251.832506 51221.453971793075 8.947441883852948 0.00019370378319977547 110236426.13994902 2386.5159524831274 None 6830 83233 MTH_20200501 1954249.6812290947 225.83452720026912 0.006117653112868484 7.097289004380035e-07 294788.2215470726 34.19934351959 19060 1918 1375902 GRS_20211221 60138941.77298603 1275.6663121020672 0.7607215220034791 1.6136413277341012e-05 7571957.208804544 160.61624037902905 42922 107182 None MKR_20200903 596859230.2506454 52317.94389422579 663.6452294178417 0.0581589010521716 51897107.42730613 4548.030486719977 56663 16142 27612 PAXG_20210112 97461858.81522813 2743.060569919927 1868.27581931336 0.05248440593238033 14589884.328071853 409.8652905877822 14108 None 75931 PPT_20201030 7311344.085407672 542.78299834664 0.201781220378597 1.500593511047427e-05 1222248.5573345465 90.89538910420043 23491 None 1442073 TNB_20191012 8126077.125087512 982.7401628758787 0.0028173703612516194 3.407232007619263e-07 333697.45183122007 40.35623623992459 15479 1463 2032004 BTG_20210318 557530222.2282724 9473.50795885154 31.89887982468279 0.000541188445408412 35188317.38088764 596.9962232079653 None None 182424 SKY_20210318 49537555.44004704 845.89027756825 2.42562879179399 4.118300554155883e-05 3864118.2421036316 65.60608264387221 18492 4193 346885 LTC_20190314 3371962807.9732027 871894.7205716607 55.366790073731124 0.014322156267850415 1530815502.0245721 395987.89830595505 439666 199939 247801 POLS_20211202 352759187.8601145 6171.498009516594 4.304608479223225 7.527824932496866e-05 56945835.48877329 995.858931801408 None None 8577 ARK_20190207 48066956.00929212 14113.535246286116 0.3447223708269734 0.00010121821173592247 249668.5801101963 73.30828905816865 62529 21739 149153 YFI_20201015 436374505.2337167 38234.81023485786 14548.570310185873 1.2745355681112032 325094677.72894675 28480.099482977854 45154 1740 10928 LTO_20210127 59597007.6936022 1828.8478933605904 0.21784811729050046 6.68610839639336e-06 3800115.281225675 116.63163769822329 996 1209 818812 RUNE_20210115 437805875.8025276 11209.727101285642 1.89336384785371 4.8264391193831334e-05 38195025.30852051 973.6425702003561 27941 2073 287788 ZIL_20190507 147582161.40296277 25798.180930821836 0.01685652980254867 2.9467214396234764e-06 23424980.395806145 4094.964548672699 60697 10243 201594 CHZ_20200425 32447124.930510398 4328.115888542195 0.006803607313404592 9.077208377929743e-07 2245682.824460533 299.6135727616746 20343 None 267652 BTG_20210725 758387375.87081 22197.087686768944 43.307249602314975 0.0012675484057678315 32286681.37206911 944.9903163213696 100911 None 177172 LTO_20200526 8878057.873710267 998.9664405181566 0.041945842315342846 4.720450751708883e-06 2590554.874566483 291.53274865856065 14742 434 1128557 KMD_20211221 89060674.74256691 1887.7314387187437 0.688399520166147 1.4601534597896577e-05 1747563.6778167682 37.067299956150904 117592 10007 144433 CKB_20210602 374215849.3434158 10198.82683917606 0.014094548052407228 3.842369978244785e-07 12946702.928780712 352.94514209204914 44403 4064 114536 GXS_20190213 34587191.285510354 9518.75310423705 0.5761171968789456 0.00015854828712800377 894481.3466073528 246.16256230647653 None None 278365 BCPT_20190716 5204485.198800923 475.3535383888511 0.044791369874686446 4.100754901763267e-06 207025.4872666122 18.95366862129112 10978 2851 908173 WABI_20211007 13585067.941830179 244.58187441144463 0.2298786652037991 4.138673068363882e-06 3080086.728516732 55.45304511071497 45289 7891 847605 CELO_20210813 407226560.1754776 9159.605095223156 3.051053018326568 6.862430530583779e-05 20840826.849678464 468.7520197019917 35619 None 88664 XTZ_20200523 1972044734.2592874 215430.26437057302 2.772017131927585 0.00030281408207779583 95624541.50458263 10445.988023055526 64686 25358 103096 MBOX_20210909 161363559.29457557 3481.6332140504583 5.4211829423663405 0.00011709595890963979 87689299.69204925 1894.0631118184124 130357 6342 11703 RSR_20210401 1171736490.8845704 19921.69796496602 0.08996152968606162 1.5309570665207202e-06 116934883.30327778 1989.9871260600194 64763 None 80530 FIL_20210104 961823165.8483748 28775.232680496596 21.577334586341465 0.0006472641292701957 118001030.48272939 3539.7251659033514 None None 31509 TROY_20200324 2132114.648702501 331.5075581664404 0.001830714665816976 2.841729736721951e-07 361409.98976612854 56.099922846713014 8795 None 356286 GLM_20210823 433812606.6212836 8803.380341807562 0.43381260662128357 8.803380341807562e-06 3831848.480649436 77.75988773139404 None 21152 187771 BRD_20190201 11189584.815115388 3261.193102508476 0.1867862946012325 5.4438675398732746e-05 210215.48394406965 61.2670887799881 136 None None SNT_20210112 189622219.13619533 5353.080250307777 0.049772445953081564 1.400197716323617e-06 58650700.53821799 1649.960643521653 115057 5682 172923 CRV_20210218 629578893.6314756 12066.187039638238 2.7893036714162953 5.349590594236991e-05 230866559.42975032 4427.77739657921 74997 None 26864 CAKE_20211011 4292477256.186295 78447.40477606784 18.618742215694226 0.0003402927889480426 171567156.4411582 3135.7148340576 None None 561 ATOM_20210105 1389329069.0022447 44406.95508025595 5.849315153415683 0.0001869609447202685 530084049.8210353 16943.0116409123 47389 10029 104708 DGD_20190524 66944938.51179571 8497.990150467927 33.613945652864814 0.004273691148319522 730307340.1088156 92851.58151940478 16955 3360 447437 BNB_20190103 874914238.8823946 226194.63955498725 6.057146526181886 0.0015659752857281161 25749501.33589444 6657.108679398484 898767 46674 1036 VIBE_20200418 1541288.423646855 218.94410304 0.008236382851276725 1.17e-06 16746.758270430542 2.37892137 19170 None 1007181 RCN_20210616 31396126.035168458 777.4637036424352 0.06109088554559442 1.5130244759430904e-06 2377843.2325517195 58.891518410242476 19734 570 2606607 CHR_20210212 28181645.567754492 591.2545958682359 0.0629940394731102 1.3199784945739563e-06 27555045.877789594 577.389039977455 38177 None 474695 MTH_20210513 14493567.171304576 286.8152140007547 0.0417028386091788 8.252632660241043e-07 1881774.3781767348 37.23869456005817 21681 2043 350782 CDT_20191102 9227496.808195952 996.3757726474348 0.01360865145363973 1.4704051771155865e-06 84361.52953789129 9.115203677931508 19561 300 193282 RIF_20210814 178784207.39813578 3748.039096416972 0.23398007491258957 4.905167415609786e-06 4720190.298978919 98.95425351358847 44742 3377 684649 KSM_20210204 1087445486.435355 29017.05096562661 120.83487664419974 0.0032214635499316123 207859696.59071323 5541.549382621638 33446 None 118660 DNT_20200713 5608487.201335418 604.4931331639556 0.0074698891922230755 8.046800565364547e-07 269726.67791022756 29.05580964389095 58070 5995 675973 GTC_20211207 158934289.0563748 3149.456016401686 11.18460643433458 0.0002216188123895367 76801407.39744952 1521.7912938820696 None 1725 23599 REN_20200105 29938540.51846997 4071.487464468867 0.03534946473778553 4.807437035219697e-06 2384280.9320891593 324.25612496025644 10410 869 419374 NXS_20190706 17412860.840290952 1582.7954930995463 0.2912869699500062 2.6502799244956308e-05 192770.59014452345 17.539268068904395 21390 3523 987625 WNXM_20201115 38238570.28884664 2376.1796949160216 22.55760163536911 0.0014023863066409618 12985377.752283994 807.2895443729333 14731 None 69573 HBAR_20191102 28049929.497804016 3036.618098475928 0.03485430175961846 3.773243121387695e-06 3084632.44014781 333.9349104471768 34991 6173 83811 LTO_20210422 142119670.51754606 2622.93685470408 0.5065102582009761 9.365637979246256e-06 13624448.305008933 251.92313171481396 8218 3768 174432 NAS_20210708 14773039.46236056 434.749337304801 0.32493574585684537 9.566283297042082e-06 4496775.906572476 132.38750366522441 25262 4926 609906 STORJ_20210618 127908578.49445823 3366.581173310935 0.8936523250284865 2.342185290903441e-05 15319619.98323995 401.5139622205007 102862 13555 44115 BQX_20201101 34581774.941599675 2509.0915611707337 0.15513341642207196 1.1254771153895797e-05 213574.86300588713 15.494638504034826 15811 71 180444 LRC_20200530 54109975.736137085 5741.689118534229 0.04641824540102339 4.951698422241477e-06 8402734.167517593 896.3674770631051 34399 6807 498950 REN_20190702 71353802.78023025 6724.294703288582 0.09048918920980403 8.535972622696696e-06 8400949.132503005 792.473359811514 6943 788 1032866 NANO_20200807 138054482.77406406 11734.020449854841 1.035162455127104 8.79650731743777e-05 7615725.224486791 647.1620211203253 98410 52285 206473 ALGO_20190805 139320097.2863245 12722.802933311115 0.7048146535002915 6.43669639589995e-05 86516951.77041285 7901.13186323865 10898 528 241883 KLAY_20210825 4267908789.4872622 88870.79913943753 1.7050246636503277 3.550421455667901e-05 62913164.21568308 1310.0587506875404 43118 729 64531 ALGO_20200725 251157488.29873237 26329.727025332897 0.31280338818623543 3.2796124297375434e-05 84389269.09323305 8847.861190360729 21174 973 270923 WAN_20210902 194266701.39261323 3994.3605124537066 1.102838100065171 2.2639278570620735e-05 37412389.685799345 768.0089326251764 124142 16809 352784 MDT_20211202 39591405.117048234 692.5390856957231 0.06529789937264457 1.1422011266255894e-06 20829767.208156943 364.35756434873576 38172 359 615716 PERL_20210204 0.0 0.0 0.04702785664391209 1.2539995013716984e-06 5981482.7662198 159.49645468850082 13949 523 461577 GTO_20190621 24255128.30263502 2535.67141002202 0.03661021937591833 3.828148005403248e-06 11826958.039688153 1236.6860019255055 17403 None 1224207 XZC_20210117 51062542.63539895 1407.081407949037 4.513224731367444 0.00012468895348992148 7870802.229117129 217.45030471314573 67286 113 431811 XEM_20200518 350485738.72506493 36102.5264643969 0.03904421087392131 3.997823422051773e-06 29035767.530974273 2973.036691339873 209358 17903 220843 BCD_20210506 673041088.06959 11756.651518612347 3.5460253589837896 6.185521516219875e-05 36985145.24479805 645.1516515882349 30458 None 1417289 DCR_20210207 1118056273.4182951 28506.723496372873 86.98377794654822 0.002212005552842324 64889472.71740398 1650.1453185916037 42060 10323 288064 MDA_20200329 6063128.5922579495 972.2030465713293 0.30873530641650354 4.938131620192959e-05 283289.8340112289 45.311386742494186 None 374 1815630 REP_20210617 120469599.88363037 3147.6669540509643 18.57985008165023 0.00048546006768283737 40730873.86472374 1064.22886601643 150374 11189 150117 REN_20190201 13447868.924471095 3919.1999521147345 0.017874094488117494 5.209163671609735e-06 270953.95271991484 78.96587366291223 5543 799 10683667 YOYO_20190812 2599153.9217039035 224.951891260173 0.014861325609907012 1.2862198250999432e-06 911204.114904902 78.86300509572544 7576 None 1167957 YFII_20210422 99822361.39151822 1842.284334932961 2494.8726335017745 0.04612614530877254 118132499.3105045 2184.0781592271724 15482 None 334053 HOT_20200530 100048079.10992144 10621.971015627896 0.0005632258959875929 5.980185165479666e-08 8078930.576436877 857.7997057722675 25284 7035 551083 COCOS_20191108 17019203.23831032 1845.9544280283326 0.001086788964550908 1.1788099648088883e-07 6627972.359265001 718.9178505146177 13121 155 53406 ZEN_20190801 47969580.169186816 4766.637302161101 6.855185298310042 0.0006808092434458002 1291930.957959045 128.30558180376778 None 1756 272148 LOOM_20190929 19389688.56514694 2364.3467388788213 0.032186191389465074 3.92473125047507e-06 7046730.1987174405 859.2666926607864 20993 None 411903 ADX_20200905 13210825.82281512 1259.2198457410577 0.15441284840981562 1.4724380353662106e-05 694675.6576062931 66.24234129713261 52702 3741 10625 SNM_20190629 8270648.331162719 667.6596736305845 0.0202730237820515 1.6380273662897573e-06 642662.9388254924 51.926120760947 31323 9994 15028658 IRIS_20201031 43223082.59228075 3182.507343193813 0.05030906756699828 3.7069231845821597e-06 3161823.4593776846 232.9726479528594 10720 None 402026 REP_20210725 177771913.3548774 5203.170404111663 27.166196277029705 0.0007951201957624276 868623855.7642115 25423.521320249773 152034 11270 153333 RDN_20190615 17221388.946087953 1979.337791635882 0.3392011167408861 3.9067017056647785e-05 781796.388233568 90.0423121462706 25633 4430 856737 SYS_20200718 23465394.0120086 2563.463568746869 0.039733330310995574 4.340644979798668e-06 1625384.8014785473 177.56423444894304 57110 4450 1072348 LTC_20191019 3376750872.722161 424291.44282822136 53.20963328809018 0.006685920671764791 2173221689.6678333 273070.62502402166 450744 209071 128159 XMR_20200704 1104611173.9012213 121817.1645425843 62.683861203572796 0.0069149526300607824 82035161.70335825 9049.685936477794 319762 174260 87164 CELR_20191216 14416752.284722771 2025.8090942342944 0.003993295534139312 5.616291577895635e-07 4387681.5499533815 617.0967994935171 18762 None 689712 ATOM_20190528 1121472324.8139734 127163.61168990504 4.68948131365474 0.0005317465657201808 146379471.06700486 16598.164237305475 24715 4746 130056 BTCST_20210506 506931056.1493102 8855.048936467492 69.54215259005113 0.0012144252895481117 34527644.09481641 602.9615508804418 56156 None 170961 HOT_20190601 418544164.54629356 48794.80412190335 0.0023490200528535248 2.7384508295641003e-07 43758214.44547601 5101.264184734895 22084 6302 302460 AMB_20191113 3992899.780096958 453.859563368039 0.02780144133577709 3.159338081478254e-06 1849864.63763302 210.2174388970619 19167 5576 575985 NULS_20190819 32483748.122837592 3152.2188393864367 0.44931264978987606 4.3577630491466923e-05 5941317.848706684 576.2325052819618 21331 5307 331434 AST_20211230 46451218.733368374 1001.5487095497357 0.270630595759983 5.815985279297152e-06 975754.3001700462 20.969442239387103 49621 3752 186050 ALGO_20210110 395279826.601999 9767.940327653494 0.487757108349546 1.2108164822531125e-05 259323307.689406 6437.485580583448 None 1792 343568 POWR_20200217 42338011.104107045 4247.124833134825 0.09846278167430698 9.897312390178331e-06 38915284.729606 3911.698645643184 82730 12853 297028 WBTC_20210731 8020837702.245242 192247.21990461578 41745.018900937954 0.999120887879309 411925918.14143187 9858.991561379307 None None 185998 KSM_20210731 1754176438.8851151 42026.26173815876 194.95690223858938 0.0046672306780769475 120481035.36803526 2884.292774143519 95926 None 59520 DOGE_20190730 337064853.7112005 35512.25771642738 0.0027914007373914963 2.934626333561717e-07 42856043.2145195 4505.496874200654 137783 138060 143495 CELR_20211225 438058322.63471097 8615.383878741575 0.07764412826375573 1.5272215085983041e-06 93332996.34860541 1835.8137656116219 98411 5323 40279 QNT_20210806 2274935473.2906284 55524.63090875517 174.7438953910161 0.004270806832101126 52737718.24682041 1288.9297614314512 37704 5823 173273 CHR_20210707 66887146.133303955 1958.2690591499313 0.14862259190568017 4.3518242282331244e-06 22809489.515627947 667.8856009369962 68037 None 101399 NULS_20211216 90209419.76512663 1849.06927117495 0.9372355806475536 1.917839437404366e-05 97544000.09657614 1996.0160938206834 80986 5561 218016 CTK_20210401 100126898.75999701 1702.3433602887528 2.7333128898292163 4.651526822964368e-05 14873336.068844978 253.113069962212 23925 None 187898 BOND_20211011 106407251.21004908 1944.7546593098589 23.160296077071305 0.00042329829016514686 6892473.167812835 125.9730055796965 None None 167037 AUDIO_20210725 238403463.50883937 6978.230710283184 1.115616248979156 3.2652747779378896e-05 66258934.92689508 1939.3194499254803 54021 5916 31979 BTCST_20210427 519300075.88134307 9639.369036612728 71.286810980362 0.001322838057828164 36128400.42643796 670.4188670427842 None None 111287 MKR_20211007 2249155209.510803 40518.59521960505 2495.0171573813927 0.04497625859162673 86704927.9961358 1562.980539506755 186896 30707 45314 MDA_20190904 11263873.485527143 1059.6902748130576 0.5738416504046048 5.39862612091453e-05 1608218.8346893892 151.29909449722288 None 364 3117488 ADX_20200127 7538263.486434775 878.4121085795899 0.08206375868181763 9.549264037874928e-06 9615.72220164044 1.118923525966466 52668 3795 160693 SYS_20210826 169527419.62621254 3459.5654984757653 0.2743579380231215 5.598853912308256e-06 4939664.031630898 100.80429051283467 74803 5548 438149 POA_20191118 3558459.5185025805 418.3446916553245 0.016169221853173946 1.9001171658521826e-06 168311.5333528317 19.779036779796556 17661 None 417356 SC_20200807 144398398.74486583 12273.22524956696 0.0032030452214842756 2.720451942757544e-07 3580675.277862064 304.1185603845394 106769 30102 156023 NKN_20191113 19041999.847316958 2166.4570160780945 0.02945051728311554 3.3462724460327868e-06 3220176.631244995 365.88791391693576 12338 1003 224602 AMB_20190411 9047784.524220126 1703.828559589824 0.062198768090204755 1.1718796443032849e-05 1569110.149506034 295.63419024779466 19093 5698 621301 ETC_20201018 604356407.5749062 53203.63956142658 5.18433463962676 0.00045611671729961 526830967.8899032 46350.482433946185 236515 25871 147921 AUTO_20211007 32794444.498410318 590.8312407343168 938.6948536721413 0.016919654521391853 4390716.250307864 79.1411626111005 76394 None 17931 AST_20200324 2028572.2072113599 315.26217748528455 0.011797337600482691 1.8294619180474977e-06 3702454.5384137086 574.1549331480408 31736 3477 355183 MTH_20190708 8004625.730703526 700.2876341090964 0.023354234107203966 2.0421740818138174e-06 561668.246876547 49.11419193127262 19530 2008 1459879 BAND_20200901 271834851.65593356 23275.5749651179 13.167794780405176 0.0011294764168565544 77656052.81060417 6660.99994254662 32734 1997 119492 AMB_20210219 6348406.370840188 122.82280408238869 0.0439461295796987 8.500144868539089e-07 1626411.1679625462 31.45835748383621 20805 5473 361087 ICX_20211002 1282239343.904253 26624.594024904618 1.9112291392468557 3.9683178166627555e-05 181359926.4762111 3765.6072350790996 147434 33569 246285 LEND_20191203 15687494.532608334 2147.194287361048 0.013902942364604515 1.9029372957381489e-06 1034872.3725486264 141.6460762338652 None 5787 435324 CND_20200319 5345431.36395725 992.6214820528943 0.0027982835855838374 5.193780158775812e-07 27568.370571367137 5.1168529458915275 34897 5967 433768 THETA_20200308 135607718.7641347 15256.33487803657 0.13574421643973675 1.5265635414643547e-05 9750539.536182795 1096.5342432951084 None 4028 385146 AUDIO_20201231 23053274.536709957 798.3871846770318 0.1497128595653725 5.192259940645049e-06 1687878.1142519754 58.53807042871464 24033 2341 55388 NCASH_20190618 6566538.204116835 704.4433001706058 0.002264589216182944 2.430511096770639e-07 1163622.78874124 124.88790815924767 60284 59183 1027921 ONE_20200404 12887666.425104763 1916.3352137286975 0.002469097582286453 3.669413022506011e-07 50503446.21379017 7505.495309209445 71187 None 330702 SYS_20210128 58441342.50709529 1931.8894455240923 0.09745098460846872 3.204873996812577e-06 3833582.7346583833 126.07517174196522 61349 4497 270004 ZEC_20190805 469654864.5854072 42889.191187620454 65.95908820996159 0.006023691806767055 236796579.33677664 21625.368899595906 92 15350 186923 ADA_20190616 2847331607.9208784 322884.37690152985 0.09151425248161667 1.0378801905634816e-05 274801292.68918175 31165.726680730088 152491 73775 101159 MFT_20200129 7441900.518639532 796.2700925517133 0.0008214181208142696 8.784847689562447e-08 940992.1803761441 100.63660360303675 18495 2444 906375 EOS_20210217 4429621039.176578 90070.25611546423 4.654954611065276 9.460198091791886e-05 4847283293.421002 98510.64939235133 198253 77828 58943 XZC_20190626 101674067.87802105 8611.741068060386 13.065887637608487 0.001105149287251107 18103074.473047227 1531.2086255322913 60572 4015 343816 ICX_20200317 89122423.17049462 17657.636168700214 0.16834954966427365 3.3469519556818095e-05 15325665.845697282 3046.8906734039138 113116 27516 126672 XTZ_20210823 3190081358.007829 64662.87191489515 3.784732333029052 7.679878076407533e-05 168172458.67867774 3412.5107532459547 128597 52213 67956 GO_20190414 18707096.993513167 3687.397923410701 0.026724485565856732 5.2667193763287935e-06 832223.4705686773 164.01017213515578 9178 646 935336 AION_20200127 28829892.72616193 3358.8980135786096 0.07574600210649714 8.814104856357657e-06 7976156.248386504 928.1371368633688 1138 72537 266785 SYS_20190622 27964918.672252987 2762.0756512728926 0.050431743598112526 4.9825034171808375e-06 571851.7283992936 56.49721757740071 61539 4608 932870 AXS_20220105 6416492541.618803 138542.14725258353 93.23206000260775 0.0020299859397953164 208202417.84609213 4533.290166999795 None None 413 SC_20210729 615500354.594972 15393.29285749898 0.012721279482240215 3.179625934288453e-07 61999979.61480188 1549.661285123057 139113 47516 61155 FTM_20211216 3749126328.2423244 76848.21769240704 1.48526942052287 3.039266037980976e-05 416047656.67093164 8513.468974917614 270277 24557 17107 FIL_20210710 4797777298.6291685 141169.32792696712 55.47389964511535 0.0016323070484696714 214626020.93763226 6315.322503063736 95212 None 26863 FET_20210610 217400248.5616696 5803.720168594249 0.3143430782447783 8.392855095476855e-06 24637607.159625083 657.8158741227232 65589 2873 112736 AST_20190807 5746191.197431344 502.16579777450494 0.03338259553530371 2.915183565265361e-06 750719.3846939008 65.55765893252234 32092 3588 229078 LRC_20210702 313030501.9106315 9317.724917008622 0.2515183151427242 7.478219025668795e-06 20381760.301563583 605.9966948223367 81753 11058 263753 SNT_20190302 71129924.88959658 18594.5067563616 0.020308021654133847 5.311715999565778e-06 18603559.094259307 4865.900981040647 109744 5760 308014 UMA_20210618 727667155.6511728 19143.33062732293 11.870554595641519 0.0003109985073398812 37181485.372098826 974.1235220507778 40098 None 140212 DENT_20190915 32187824.713172976 3108.8233451906926 0.0004371779589077126 4.2224321052018604e-08 330609.1968014451 31.93150199834547 46468 10202 253321 AVA_20211221 89009637.89293581 1886.649660864935 1.7036849426848257 3.614650370951655e-05 2885854.3691413375 61.22819016930729 143170 10991 47102 NEBL_20201106 6032767.0115186805 388.24174327492585 0.3533349899223347 2.2752801238203733e-05 425993.3579273868 27.43159460048748 38474 5920 779472 IRIS_20210729 73162756.49292164 1829.661939589337 0.06951589632423658 1.7376669274551257e-06 3290990.6265179827 82.26385435055273 26542 None 789272 CTK_20210422 80256224.5810285 1481.195449626363 2.147177039997569 3.969781816540076e-05 8437068.886651479 155.98770863888797 30259 None 202878 ATOM_20200806 987083917.2048665 84261.78258384323 4.1622190571378095 0.0003551745186106559 168045546.5344593 14339.825769786485 None 8850 136341 XZC_20200526 49477998.312465206 5561.298941522888 4.838064556756585 0.0005444126201902247 34642505.63421863 3898.2152968465384 63574 4109 177140 TVK_20210819 119201083.43184035 2645.9461908182725 0.27423689847674076 6.095210970849613e-06 18082635.812825065 401.9060921430217 52421 None 114085 DEGO_20210821 54560855.95184843 1110.4935159809854 10.067868600652059 0.0002047885259243579 22542357.305299316 458.5296358668645 125410 None 274758 PSG_20210128 0.0 0.0 8.161733081997117 0.0002684699193452216 1612269.659784889 53.033577694418156 8599361 None 41999 VIA_20200913 4978697.1380736 477.45932387161366 0.21518935261827493 2.0606623228024664e-05 147691.7259154722 14.143022007392565 38406 2154 1668792 JUV_20211207 26348186.74537919 522.0114647901653 9.787610776311697 0.00019378653946968967 70463597.4984462 1395.120528378285 2770590 None 33797 ELF_20201030 41264044.96639372 3063.37956320119 0.08917254882840013 6.631526357328471e-06 7059726.175074183 525.013143850114 82445 33346 472969 XVS_20210624 206980560.67022488 6139.235142561001 20.25894671005378 0.0006011290743879579 52304885.94914142 1552.0050536966742 116280 None 10744 BNB_20210429 86547288167.53143 1581159.5727828154 562.5777797510267 0.010274119091671963 4808744050.916693 87820.05055790154 3057096 291236 141 MTL_20190712 23271389.35584278 2045.070906870049 0.4947584099467864 4.34789695896442e-05 7335225.352569365 644.6136813962452 33367 None 763288 LUN_20200109 2415740.54754546 300.16668441459706 0.9008772876699884 0.00011226885376478291 3788518.4731741627 472.13159025247575 None 2163 3002754 BOND_20220105 97693551.83820647 2111.719477838711 18.29445374962252 0.0003976837559785523 11018709.489303352 239.52405661924118 27943 None 180094 RDN_20190723 13713391.99581535 1325.0846344157928 0.271581212276695 2.6259619792886245e-05 234605.23685625682 22.684353860931584 25670 4403 778116 WBTC_20210723 6294727291.0953 194452.37261411585 32353.96708313725 0.9993613834194375 299098706.95380276 9238.672240477943 None None 177929 STORJ_20200907 75268808.2067975 7309.4347979267 0.5248031897390114 5.1074689000123766e-05 26284939.32363989 2558.0924956070935 82174 8332 117786 SAND_20211216 4748184472.560792 97326.5454520246 5.213482259982895 0.0001066820561538541 1257755153.6563103 25737.098399679246 None None 5212 LINK_20200719 3042601493.912552 331915.3895769 7.964726084433056 0.0008688667137241193 720070455.7692316 78552.01094446372 65807 18187 75270 IOTX_20190625 34152243.353148796 3093.247886342347 0.00975882140255423 8.835726408951441e-07 2058332.392509256 186.36330278709772 19548 1739 766707 AVA_20200903 46690594.72277019 4092.683485967226 1.2118140532204855 0.00010617409693057555 2102150.3539563683 184.1816529940817 37528 8925 60068 MTL_20210823 189073413.79605868 3832.5626823855973 2.922040062078735 5.9302137734866294e-05 79886587.7211255 1621.2801082667056 None 4234 207199 GO_20210114 8071078.494999286 217.04917339333667 0.007635602140658696 2.0423258646056067e-07 203112.80641374577 5.432741653242285 13423 687 698826 COS_20210813 59034803.236409806 1327.8374947598763 0.0171918606362239 3.8670194294749327e-07 11542226.153948149 259.6229328585044 None None 402883 GTO_20220105 41390290.7966511 894.7315318226133 0.062097231393600405 1.3508076133696257e-06 11652482.147334773 253.47767116225427 15017 None 469851 STPT_20210809 68060481.42288522 1547.0985754507706 0.056092337471232885 1.275149093823227e-06 29262081.159427 665.2159270945235 None None 442795 ENJ_20210825 1803185892.8031437 37523.5550054326 1.9092576460735229 3.9800481342495246e-05 417299880.1941567 8699.054383807064 272476 35137 33629 DNT_20190801 6948011.910370682 691.203887764218 0.010417569952652698 1.0332952667801653e-06 505316.2596441374 50.12118005354866 60508 6317 717960 FIS_20211204 45842284.069742635 853.8630995384141 1.6922869458548144 3.155852956760769e-05 19399220.780785393 361.76541106019295 30054 None 295370 STRAX_20201231 47892560.47369575 1658.49964405491 0.47310562599145956 1.6396037467652977e-05 495161.1623622066 17.160398280201168 142945 10291 230221 RDN_20190622 18918682.447226215 1863.6802208243446 0.3739318249751915 3.683604014639985e-05 1171700.3763094472 115.4242544189709 25669 4428 754056 KEY_20190811 4696522.576318984 414.5000630603626 0.0017954563007003366 1.5854388708006643e-07 56576.33104399367 4.995850601846791 23872 2828 851050 NCASH_20190603 6903410.042549252 789.6401555128383 0.002369319799370543 2.709335478118886e-07 585540.7066990342 66.9570317592401 60514 59261 943621 CTXC_20200331 786509.0156933506 122.41473791789498 0.07641084061314364 1.1918600062708395e-05 10226448.866621334 1595.1264653674214 16632 20064 353539 THETA_20210711 5938675634.197779 176109.400370255 5.936757146618968 0.00017611697076651742 161868562.62204716 4801.914615550798 182156 21263 18384 KLAY_20210711 2372329247.366367 70352.64671806832 0.9547722431225301 2.831703376816739e-05 6991023.081187089 207.34268103205292 39897 646 50267 REQ_20211225 294361400.6215122 5789.26671267269 0.37993420026881836 7.471555090497234e-06 24650174.9285327 484.7553598455065 58417 31554 169585 KNC_20190316 40019679.90023073 10197.617932820942 0.2502616108552535 6.3769604983793e-05 8990112.925135005 2290.7866213933007 94520 6645 212741 GO_20200313 4817389.910001536 1002.5383984917244 0.005241453454075981 1.093775789293215e-06 1362681.5720640533 284.36160410441624 10684 679 656341 DNT_20200511 3222036.6274772035 368.67416395691714 0.004288553088156203 4.898390595590867e-07 573523.0994996342 65.50787874590507 None 6043 731161 OMG_20201015 471168732.8087612 41277.59202509504 3.357407261712004 0.0002941275245919417 187429480.1443925 16419.86352359105 286281 42824 98384 XTZ_20200423 1651443469.7078214 232186.47674615803 2.333477276049138 0.00032777361008654574 169960077.62796375 23873.567909359892 59917 23758 97090 QLC_20210104 3304868.851216418 98.87302941845499 0.013347333633289264 4.0547584776108745e-07 1012251.0462148045 30.7509621312918 27312 5595 940522 TKO_20211011 139770438.29109758 2554.7750732496556 1.8602514318448249 3.4002022952213695e-05 20556625.294844672 375.73783475182955 323190 None 34011 ZIL_20210421 2300900990.2141943 40727.14016804605 0.19222655939338593 3.410652160646436e-06 460115523.3701767 8163.77304406695 217311 28229 36030 KMD_20200907 75481961.68981622 7330.811935145072 0.6201465060406833 6.035365361687853e-05 4388755.749456654 427.120755711255 103363 8395 264851 REQ_20190805 11195017.527309012 1022.3812545923022 0.015339464915611636 1.4007468154481908e-06 185277.55677558508 16.918904867619624 41412 29642 541329 ETH_20190714 28810921295.770554 2531350.5663577975 270.314761247692 0.02371518420370765 8942739616.455101 784562.1020144619 446001 442359 35893 MDT_20200629 5596110.900724078 613.7844955378124 0.009232072823071497 1.011942979001849e-06 7333382.715000721 803.8243732472587 13907 61 588874 SC_20210930 672311261.2768142 16185.327489295962 0.013788170519048706 3.316937008674489e-07 43810675.78757075 1053.926999916873 140774 48825 138754 SXP_20210324 284705513.5946167 5224.687605659928 3.269985428394186 5.998658261267813e-05 306200431.57137126 5617.125178907546 133149 None 82835 QSP_20211216 30359111.161931165 622.2864804489885 0.042587859821907076 8.72685824602633e-07 418549.7604261591 8.576679935131352 72543 8659 122145 PPT_20210723 57870653.72557953 1789.310065568034 1.598833654409631 4.938536930023449e-05 2000350.9970549028 61.78758649918845 24456 None 885459 TNB_20200105 5450160.304424972 741.5672963174353 0.0017614565412268153 2.395469540669166e-07 790419.8683582743 107.49210523657023 15354 1455 1426193 DNT_20200901 11939084.657419804 1021.4710976046634 0.01587516792107417 1.3597409307922457e-06 541479.5271127486 46.37884020261848 None 5994 478994 NANO_20190915 121122684.07564019 11700.931772432708 0.900477585361984 8.701852925655983e-05 1369355.5085432604 132.32900443035692 98493 47650 229089 TNB_20210220 11242670.19255382 201.30338712580212 0.003250601674961729 5.814395389972404e-08 883641.2177875489 15.805810544763272 15683 1434 3054806 ARDR_20181229 52833304.4090187 13724.902438323523 0.05288621733389235 1.3738648024365135e-05 308373.8004209601 80.10856736400251 70881 6620 788973 ARPA_20201115 16678680.409045473 1036.4314215201096 0.017053528557938246 1.0601432374056136e-06 6731275.729024831 418.45395332665197 20918 None 548225 ALICE_20210909 236922967.60906512 5114.101245445702 13.607683519841972 0.00029392196633734683 240240814.1227755 5189.131006646989 112241 None 28762 SAND_20210203 61976965.95622471 1740.0685678121692 0.09483956922240369 2.670429773437739e-06 56102790.91054723 1579.705226930599 67227 None 48574 CDT_20200511 2304171.2267320673 263.18272003735376 0.0034255953895369158 3.912212035005921e-07 175838.45049031853 20.081685780118125 18945 289 282391 STMX_20200719 18843842.044888135 2053.8353009493862 0.0024349737358819222 2.655954355574649e-07 2072594.1457210118 226.0687812582294 19773 79 227126 NMR_20210112 139035632.07784605 3918.991301601718 26.561135646111072 0.000747177066844359 14979904.687011775 421.3916676897919 22305 1983 2602153 CTK_20201231 20775372.08582153 719.6736584105245 0.8412538894436451 2.9171502981224717e-05 4732554.944565311 164.10710536565668 10083 None 218264 DOT_20210131 15755706707.425257 461083.3337746335 16.436802315990118 0.00048101527587332397 943930650.0265751 27623.68575705951 143871 9979 24755 XZC_20200208 70985943.89799541 7247.176068228719 7.517247582927093 0.0007667823477992955 45782712.78885541 4669.9773572164195 63505 4097 105634 MFT_20191220 7743388.108756128 1084.3674280218906 0.0008690500229847916 1.2161957765809526e-07 945916.8002341063 132.37673172028911 18573 2402 980934 MANA_20210217 381979017.7674574 7767.018364948864 0.2900960346148607 5.89511260650243e-06 160653848.93797955 3264.686231974109 65889 11526 42015 EGLD_20210201 1085217162.6480045 32829.94317540789 63.38004394553664 0.0019169117415337123 149531437.57263723 4522.536599339 None 4153 47707 WIN_20210708 300973530.8672252 8857.61022903515 0.0003925489508392101 1.1556852453343026e-08 25637219.9406065 754.7735576265824 32372 13219 108347 SNM_20210204 7049537.568133472 188.16863984 0.01612909362857148 4.3e-07 2353104.271539981 62.73352118 28894 9478 None HC_20190426 49957163.155533694 9617.560095935687 1.1201209591575976 0.00021527847283120874 14340838.57838809 2756.196822346845 12759 802 924680 AION_20190706 39110026.94151141 3555.026077897016 0.11949128613989508 1.0861527631879589e-05 1914617.3984278124 174.03503175247818 67487 72587 281038 OAX_20190312 3057415.6279357476 789.7096896817652 0.13065811469462274 3.3792373975886735e-05 469132.8093456604 121.33277274679189 14227 None None BCD_20190901 118917118.4201528 12388.153234800911 0.6318516034740448 6.584073782820375e-05 2870054.383939409 299.0678463212982 21396 None 2392200 ELF_20190430 52175967.56983553 10024.820724982754 0.155842197507998 2.9942714321760656e-05 11283383.78707564 2167.9310399986675 88437 32515 961601 AUDIO_20220115 739627525.9780844 17160.199605668895 1.4349584211296051 3.3271042235371796e-05 10581255.568781521 245.33770160048144 125347 9067 23191 TVK_20211221 87325997.34017377 1850.86284654287 0.20071407993955107 4.258482336325578e-06 13102797.906463528 277.99760464200295 None None 34727 SNM_20191108 5647029.5115551455 612.5623640872357 0.012904502535775526 1.3998178271442155e-06 50527.039730999924 5.4809281312623 30831 9819 6574745 SC_20200330 51077863.2995634 8637.912360842 0.0011387192578155663 1.9291546609105819e-07 2423905.9830436627 410.6446336709882 107387 30148 162098 ARDR_20210125 82446775.21123533 2563.2657672364758 0.08356163266659435 2.589918444353421e-06 5213800.590065758 161.59710961212843 64459 6297 None LEND_20200207 40088505.070035115 4116.124766766479 0.0354626074227625 3.6416920299547014e-06 2024239.5645175157 207.8712656670232 42920 5758 274911 RLC_20190421 38395559.308121935 7230.856585045317 0.5488734773596323 0.00010335098692325886 415548.2222755615 78.24630020926503 24766 3317 960914 PIVX_20210115 25560784.587343004 655.2694057809356 0.39689582226287884 1.0117336553331668e-05 1042224.3942156867 26.56751310773003 64818 8716 359500 XEM_20220112 1036112936.0941024 24216.263359167897 0.11512365957880287 2.6906959290953986e-06 22139528.396734282 517.4500111196375 377033 22511 341905 GXS_20191113 36506938.37041586 4149.622817650124 0.5615030370822167 6.379249720494559e-05 17295157.00088353 1964.9070116719774 None None 564095 TNB_20190915 10034048.245525721 969.1267959370301 0.0034788779007568836 3.3600334689640666e-07 438079.8620675523 42.31143031222479 15552 1462 1259839 LOOM_20200612 14810810.55035814 1592.7618655613226 0.017762358578720328 1.9100097957119435e-06 11401110.873086216 1225.9764576355867 21669 None 619588 ETH_20210418 271060261616.9552 4498277.629109145 2345.266962776132 0.03891238622616134 35627176091.57985 591121.8032858759 933737 789753 5558 SNT_20220105 283643610.3061889 6127.052163365968 0.07324533687849497 1.591912588345716e-06 17309317.01453338 376.20032653836523 146055 6281 131841 SNT_20200421 63285848.30974037 9241.84401488219 0.0166051611632395 2.4252880753188286e-06 22269639.440526575 3252.6207030334 None 5652 178977 MTL_20190523 21556892.741620738 2812.1982070794393 0.4740036145664194 6.189413015836433e-05 15580970.153347818 2034.5216049608161 33340 None 919877 SNGLS_20200412 3741524.129317935 543.6379987495646 0.005803568211643198 8.438307673414136e-07 108843.84406446655 15.825743940261733 8933 2129 1305089 PNT_20210718 21875516.000439495 692.0561964638299 0.6945480508265469 2.1972797455691104e-05 2813146.7593306703 88.99701594777557 47654 320 305973 LINK_20190608 432013900.935801 53693.33017451342 1.187184275372041 0.00014767307423910244 48929126.66090405 6086.2620098179705 14373 7207 252422 WAVES_20190325 274680023.5212315 68782.4473820658 2.7465934872010025 0.0006877618857809786 7590719.723167902 1900.7573328811172 137698 56741 38388 FIO_20210723 55021647.63445209 1699.6896473261559 0.16202606283276869 5.004721364971462e-06 10097132.369970521 311.883984671609 None 502 141932 BLZ_20191026 5513873.3424490625 637.4993089333364 0.026150135025810338 3.0234087676854405e-06 287175.18952493346 33.20242840101767 None None 563370 VIDT_20210806 21422747.42503142 522.4630841805932 0.4632574924650313 1.1322188162364893e-05 4843283.690690471 118.37168348410448 29574 1621 1199855 REEF_20211125 414378533.09981436 7243.4407771970145 0.025916088305702134 4.531294787705475e-07 45844345.3267206 801.5648062868833 219259 14292 73169 BTS_20211225 96296209.3750794 1893.7027328492663 0.035531086930982496 6.987327627843185e-07 7030361.071412284 138.25480836939295 8092 7511 206863 NAS_20190622 64527899.72504403 6375.931621695222 1.4140722603546245 0.00013976497372362223 9426541.891437732 931.7065447779966 24297 5153 467000 MANA_20190702 64121819.47303695 6042.761482184561 0.04997729639984826 4.7081924058060784e-06 19390267.388931356 1826.6916428755244 44963 6282 154801 STX_20200318 41177551.70576829 7584.554152015137 0.06892634823017642 1.2809985315454868e-05 439809.38418256404 81.73872398061141 35815 None 40997 SAND_20211007 725766648.7424364 13075.5564278842 0.815310417903818 1.46969516299988e-05 214024451.7118566 3858.048352348229 201794 None 14594 XEM_20201015 1075454480.4864893 94106.75631134497 0.1194949422895538 1.0456306257977923e-05 28793945.108056135 2519.5903914969317 211792 17836 146521 AMB_20190726 4232613.105044779 426.5523882799953 0.02920251809948092 2.950210465485901e-06 145608.44135824058 14.71022279978682 19382 5651 802250 SAND_20210206 86626398.7936077 2285.967319298979 0.14063216257688074 3.684270840554471e-06 165301514.07291085 4330.556659579159 67963 None 48574 FLM_20210527 0.0 0.0 0.610140158102814 1.556181871626983e-05 29289921.624428935 747.0487632717131 22191 None 95069 SUSD_20210805 191296038.17446834 4809.655804408456 1.0011672469949944 2.5177148116856565e-05 137228948.7474585 3451.0053928607545 145632 7376 46425 AMB_20201228 2033752.53320949 76.81875812809945 0.01418371011650292 5.393392294023636e-07 2311199.796233456 87.88396737219762 20214 5484 636877 GO_20190922 8364466.644501419 837.2349061532373 0.010589961932677737 1.0599941588266438e-06 604162.3585172035 60.47317026088997 10263 686 748628 OST_20201229 9606415.063640187 354.29026294770887 0.013822733547223147 5.09251075438089e-07 7312108.527260573 269.3894893152681 None 734 712732 ATOM_20201130 1285789203.5110645 70882.43454125032 5.417740909949374 0.0002983269134689539 176085315.74973157 9696.105743697233 45341 9766 86006 NULS_20190915 29806822.37292077 2879.457284159621 0.4090213274913192 3.952617470045349e-05 4365326.198095755 421.8475525192784 21320 5298 307386 ONE_20201031 30129156.49510438 2218.4040572578156 0.004180486341465613 3.078930242819602e-07 2525354.050388414 185.99244978855583 79165 1513 134327 HBAR_20201229 224548193.33875754 8280.863110739714 0.03401562121537536 1.252883336891398e-06 15609608.452354446 574.9422655410468 43500 6832 198776 EPS_20211204 222118312.08921966 4136.88071931409 0.4463833921149514 8.309996394030377e-06 31020037.545813996 577.4775780233763 None None 84383 PPT_20190522 36638039.318599805 4603.965187041554 1.011228716575027 0.00012707784783006873 1158664.1972672117 145.605588659672 24077 None 592908 GO_20210106 7581622.136105644 223.1836410318604 0.007399646947252667 2.1695688899997392e-07 422014.06978589424 12.373409210956932 13365 684 698826 VITE_20210519 95755664.50555533 2246.448163221107 0.15762973250601883 3.684583952696792e-06 11207790.696717741 261.9813222402935 None 2272 163733 TOMO_20211111 210435017.55459124 3244.350101422027 2.462385073186792 3.7916572565419e-05 10551210.942210801 162.47083354254502 56325 2337 131685 ZIL_20200317 35119729.568051316 6958.147102247733 0.0033700521610626802 6.692243158686815e-07 12536150.897701299 2489.426456086438 68682 10575 233633 AE_20200421 34468833.35477462 5033.598975882994 0.0976097450398823 1.4256516293513271e-05 12470170.492252976 1821.346718332821 25301 6337 661770 ZIL_20200905 185703972.8878886 17703.61297527423 0.016661942648383676 1.5888153655243452e-06 60883648.82260434 5805.618156291383 92780 11971 85218 VIB_20210428 21851902.28084707 396.65332936964467 0.11983539565066852 2.1758961468025303e-06 3639535.1809912142 66.08440297185979 31973 1230 3723426 RUNE_20201018 104738275.00522804 9217.442646035835 0.4994467175532982 4.394122160541637e-05 2640674.3673865483 232.3259989243846 18177 1878 210830 ETC_20200217 1119823424.9820013 112607.9812854562 9.674449134122368 0.0009702792532130575 2776452250.160213 278458.6469492611 230417 25249 366297 BTS_20191203 55821384.56115398 7635.2437781601775 0.020526189440162285 2.8094809286208584e-06 7310288.130945696 1000.5809966086415 13474 7094 167509 KAVA_20210823 683990460.2560942 13864.647918785826 8.401016654163344 0.00017049672015231808 755544817.9306978 15333.610048424936 None None 51016 NCASH_20190929 2798886.5852345373 341.6994816490764 0.0009646569182768102 1.1776924820151656e-07 523950.8833621118 63.966059289039315 59466 58825 745931 POWR_20201015 36592719.942892835 3205.8045656337063 0.08514263880052898 7.458968077306061e-06 428849.1371134121 37.569566421393525 81429 12623 250000 FTT_20210519 4428040529.538846 103885.28688995632 50.95144045329293 0.001190986350584722 139210167.9221307 3254.0279211507454 124748 None 2698 DOGE_20210110 1306799490.5060332 32428.972384338773 0.010219480187400938 2.5360221150009113e-07 483402082.20292705 11995.897525350476 None 182675 103049 XZC_20210115 45954284.602402434 1176.628770875829 4.020412187492152 0.00010248571440588793 5553108.897512072 141.55621513281176 67240 105 582569 KSM_20210104 652515017.9375266 19505.175202372404 72.43682306610208 0.0022005430484327727 124487032.36024386 3781.76543483109 None None 180647 AE_20190530 149832822.06507662 17327.202642557062 0.563130075033106 6.512237298700179e-05 59050775.63056693 6828.84258234558 985 6354 408857 QTUM_20211202 1574931765.1484652 27548.9541592301 15.15199057580843 0.0002650410024301488 338631004.92452127 5923.386801891218 268591 17556 132017 KNC_20210304 380122969.8274158 7476.447101103738 1.853760103743363 3.658617175394938e-05 114572400.21208648 2261.2232855573075 141638 9916 95381 VITE_20210511 105097754.85600384 1882.3282725909 0.17238166879472377 3.0851083336513954e-06 52331284.177829914 936.5710522268946 32124 2240 146293 STEEM_20200605 74416436.41097048 7612.075734637819 0.2080906178665653 2.12856409049219e-05 3261882.3235992645 333.65875177884215 11463 3863 215539 CVC_20220105 242808271.32528585 5242.3311102168545 0.3609583111503993 7.845060230135124e-06 26411560.771632142 574.0282980739979 115168 10260 182199 DASH_20190723 1022029862.6320682 98755.732155917 114.28267201492018 0.01105370566028552 261338607.05515128 25277.323229540143 320754 29026 102503 MFT_20190626 26492071.867911592 2240.444446386207 0.0030038996345059087 2.537561998140602e-07 5084394.163805417 429.5072067466944 18785 2109 885644 AST_20210916 57930591.97327692 1201.932006962237 0.33641792297092815 6.9787001925764335e-06 2410730.8730870318 50.00853658357632 45483 3710 212084 ROSE_20211028 255741195.9906285 4369.552372544142 0.1705297747487671 2.911823185773068e-06 39188460.642558336 669.149234975939 36927 2925 177520 VIBE_20190714 5004411.259750771 439.5777407891522 0.02675080500716034 2.3490284302459986e-06 344064.1935878708 30.21279443184 20507 None 1464833 KNC_20210301 322166469.47814393 7101.591845327168 1.5701992807962564 3.4781034256487876e-05 78512473.37485357 1739.1072963857166 140048 9875 95381 OGN_20210826 365442137.013579 7455.422573701051 1.0704647451322618 2.1844365597581654e-05 49232160.71698222 1004.6527199994619 119054 6148 109678 BAT_20190906 230033931.9255902 21764.96317683723 0.1726691690026333 1.6337229061670493e-05 20655145.338748235 1954.3028014229872 105661 30025 30571 BCH_20210212 9828810276.264736 206126.14136406736 527.9298058690619 0.011057007760300925 5570010871.274352 116658.79202871927 None 445990 337812 WING_20210805 31950334.372326147 803.3643550655795 17.523917874153152 0.00044062421435517107 3006986.00021023 75.6081404532181 14319 None 410110 NCASH_20190430 4846856.026087677 931.0835514060888 0.0016709056942666712 3.209048176856946e-07 297704.346093011 57.17543439765762 60746 59385 878316 VIB_20200605 3054730.134444272 312.4999715538984 0.01673239108402858 1.7117295170621969e-06 563484.841780552 57.6446983129363 30950 1102 None STORJ_20200901 87396663.47130452 7477.38778345441 0.6115520902398394 5.2391126680158686e-05 102942130.08181067 8818.961236362356 82038 8301 117786 RLC_20200323 17378694.101717636 2981.588530535241 0.24391940712518914 4.1832277758001294e-05 234844.8316423323 40.27598436335564 28341 3560 324809 MDT_20210418 51568747.73199047 855.4492483523665 0.08501901846581181 1.4106376993576124e-06 19442987.86698288 322.59854522253465 30112 225 381469 XVG_20210506 1069566439.5742255 18677.2212242483 0.06545233174890693 1.142045393177658e-06 218621333.82558966 3814.6156213913523 309596 53733 113366 ATOM_20200418 442506546.2216882 62509.02029717811 2.3706853398484036 0.0003367621318371182 137340534.9218236 19509.586764003478 32450 8361 86348 EVX_20211204 14445262.536474185 269.0044137118279 0.6596576887713153 1.229525111736196e-05 1549120.0650301983 28.873793991497568 18797 2809 1161258 GXS_20200913 45289365.89167833 4343.3494036359325 0.6487334801890474 6.212765538158281e-05 11938676.182703579 1143.338492989715 None None 737078 YFI_20220105 1312853405.9318466 28345.048607715813 36344.26803938124 0.7913410162773684 394340026.5465674 8586.152760816967 None 8040 24632 WABI_20200901 11145393.512239454 953.8067335002187 0.1889115775449733 1.620401709371492e-05 3360406.8035262055 288.2411443163741 None 7643 1644461 GRS_20200309 13360592.391282989 1660.8207307409045 0.17912291168782404 2.226630649071414e-05 8978706.176897474 1116.1197735178237 37762 106866 3955402 DOCK_20200105 4097408.5135048744 557.226474993033 0.0073777380945392705 1.0033535617846864e-06 1440973.7560049247 195.96875519285933 None 15081 271029 WRX_20210429 1293086491.3558831 23623.239908519587 2.975597506899114 5.434669417501158e-05 60935550.160454355 1112.9346967383954 122322 None 2746 ONT_20210624 536737520.18135864 15921.24923737262 0.6231186051382396 1.849629578524817e-05 202645576.46477163 6015.215227016051 140009 19488 131880 MATIC_20190511 8118766.8388887495 1274.3712389170294 0.003763312422839745 5.906267046313485e-07 7771947.106328975 1219.755096632778 8816 79 593763 POA_20190401 8798205.973868264 2144.0844527686886 0.03986519433668503 9.712314152027733e-06 695008.1136911066 169.324074564076 17070 None 742810 REN_20210427 747991157.6477249 13884.38619511595 0.852852258919039 1.5821067487925164e-05 113463968.57599789 2104.8441690990385 73324 1147 63508 STX_20210703 867633524.9468415 25669.456490893805 0.8239770102784706 2.433385813938041e-05 51689490.63043999 1526.504643464352 67430 None 54271 NAS_20200315 8854575.306893038 1713.8087962513705 0.19608704038902766 3.784659404782466e-05 2185882.637301494 421.89536160069036 23672 4976 1191705 KMD_20190329 125531344.72835433 31179.67776222951 1.1166414799755418 0.0002773506101580402 5580488.708574236 1386.0777841935615 96193 8319 295665 DASH_20190316 779066839.8040159 198530.3713273496 89.63227665929388 0.02283935940805215 253269951.07776192 64536.16549217706 320323 23230 93159 QKC_20211204 205919455.2401745 3835.1823228899966 0.031272983197756246 5.822530149170008e-07 18137297.421854805 337.68751895338835 78368 9617 438055 BCPT_20190312 3912455.9358231467 1010.5607934824777 0.04688066255806703 1.2127645026214474e-05 3802649.023915114 983.714286550496 9979 1506 2438592 THETA_20190615 129288775.5984118 14859.78630279991 0.12903112588120813 1.4860980541789645e-05 11217622.184980365 1291.9740401987738 None 4000 222751 RLC_20191020 21384439.905067492 2691.3022874063417 0.3063316528360073 3.853629955995827e-05 339470.345452708 42.705123035690356 None 3321 696039 IOST_20190608 155617768.03259644 19341.12810234946 0.011460943218905874 1.4256192184530373e-06 57753626.85261498 7183.935807363109 197561 49945 109542 SKY_20200331 6270453.860890599 975.9531686111667 0.3647050277469122 5.6869279963821407e-05 140772.96635705914 21.95104708195235 16138 3830 266344 AMB_20190224 15224358.46607841 3699.9262588122333 0.056156048701293565 1.3647421639735882e-05 436484.5424901208 106.0774169186279 17862 4964 641993 STORJ_20190626 40267840.43400504 3410.6652996676903 0.27942058360693584 2.363417376463945e-05 7506684.941968854 634.9363888111587 83708 7759 209007 RLC_20210128 81591005.28142999 2697.145465707911 1.1619749491336229 3.834629137503468e-05 7952252.993419007 262.4320004497533 34173 3923 538469 CTXC_20211011 39418569.04816515 720.3962321193911 0.21428834785881384 3.91652554652576e-06 8610202.879040394 157.36777045268698 21111 20650 793028 ENG_20191127 38027313.64742257 5304.053104065983 0.4805740113732458 6.714899895254009e-05 2202740.8276368026 307.78160705161963 61141 3535 456199 QTUM_20190816 227901792.86664805 22145.96296625528 2.379969257724772 0.00023094775315647686 327472343.49823874 31777.30204133176 178609 15358 286987 CND_20190811 14166908.789728746 1250.1247045240939 0.008104776616288728 7.156747775820719e-07 284042.51383854635 25.081760119915497 36070 6125 388996 DNT_20190905 4738631.242399253 448.93507828081925 0.007016076652061411 6.641552547118241e-07 144223.80235253565 13.652501381781892 60237 6278 485543 TCT_20211104 20805467.23182531 329.9413089542202 0.03593572843043074 5.701904294189354e-07 6731348.320513068 106.8059715798495 None None 756264 LTC_20200701 2677254552.8838854 292813.3683377517 41.21009341714519 0.004508535029263885 1134831295.3447313 124154.69665589195 132079 213986 120838 VET_20200325 191122523.16705588 28274.894394380935 0.003023759225894123 4.4748346346820074e-07 100074528.84544791 14809.941343615905 118569 61026 265359 TLM_20210727 345663541.9402077 9227.687947970384 0.2752217464725316 7.376295600355231e-06 591204122.8033813 15845.028330207522 None None 10364 CTXC_20210217 2217077.6721597672 45.08122748948032 0.22356461108022815 4.543111245545277e-06 9935187.256960958 201.89537483416717 17709 20159 487509 CHR_20201106 10108126.717574129 650.5135588000953 0.022553531859602873 1.4475368582441456e-06 2600557.526559814 166.90968381862314 31926 None 426894 THETA_20190915 100725968.4873355 9734.280235109969 0.10072596848733553 9.734280235109969e-06 6160887.717444946 595.3956903000291 None 4027 310301 DOGE_20190805 351825013.38460904 32142.06222273966 0.002918972986564154 2.6657423776645465e-07 48896734.01167592 4465.477980929957 137939 138334 127721 HBAR_20210708 1669986026.53544 49147.462464104945 0.18642984462100515 5.48681399094496e-06 41880568.09229918 1232.5863781343276 116271 22944 40505 MANA_20210729 915151997.6065158 22886.23764613765 0.6918467461731926 1.728514947199955e-05 147271955.58810645 3679.4532596339554 151690 34848 17778 BOND_20211007 111442334.50841632 2007.6368332341422 24.462632918247657 0.0004409684027664608 8651329.928963872 155.95063513114908 24377 None 167037 BAR_20211221 25023925.815401852 530.3787643667135 8.498974695107997 0.0001802704235286444 3687737.545920894 78.22002454581916 None None 37465 CDT_20191108 9708837.015926711 1053.0907282269973 0.014392434933895023 1.5611076548748186e-06 651590.6217197363 70.67623456929793 19542 299 193282 ETC_20200914 589931875.0857757 57124.019559525965 5.071638068515905 0.0004910945898331313 436683169.95163584 42284.7094641327 235815 25791 179202 THETA_20210823 7355824734.781018 149102.3893354871 7.341698829464838 0.0001489757978178296 277350796.1760926 5627.92850748898 189460 22850 21702 EOS_20210819 4873743814.66203 108124.74808015367 5.023930912205373 0.00011166228535603814 1753340669.5265436 38969.88823858582 None 92151 70056 INJ_20211104 491440875.2102536 7793.463315856195 11.251052625954786 0.00017843524558985076 27343260.838217482 433.6484438477723 None 4240 116286 ENS_20211225 1004924518.9028392 19784.37958669487 45.54667281606283 0.0008960099285824277 86299769.97004114 1697.718975869217 138869 None 4184 IOTX_20210127 59190602.01859633 1817.4483641930078 0.00963211968756848 2.9572014657668873e-07 5229932.984011212 160.5665833465651 31584 2031 602191 GO_20190714 10249781.469383031 900.0487300828777 0.014246584377719475 1.249328603020161e-06 461293.56895495084 40.45231016818121 10049 679 942776 TLM_20220112 212136518.91446128 4948.509460988978 0.17068032940518482 3.989178846358977e-06 31843084.276002236 744.2436901741503 114785 None 8723 ETC_20200719 703768447.8869907 76770.47343941664 6.050289876615068 0.0006599949453091056 464681220.7991732 50689.67986028132 232093 25604 352262 VET_20210909 8048463929.610612 173656.30419854887 0.12035123722827328 2.5984099840320866e-06 924724213.2524923 19965.001470105508 421838 202464 50573 POA_20191113 3559421.4061108804 405.3282261824976 0.016178977620855878 1.840987339126884e-06 46869.170192017016 5.333189212627263 17660 None 510906 NXS_20211202 48923599.97584459 1021.8120047259132 0.5778890759778984 1.0108613710652324e-05 1008516.7624864716 17.641285839227976 27068 4154 466067 MTL_20190520 19651080.619358014 2402.676875862737 0.4335636055336298 5.299662461987301e-05 1861113.307171051 227.49308764926772 33350 None 919877 DIA_20210427 158661698.90779757 2944.306503881252 3.8132852843196128 7.073938446314138e-05 52010451.36432034 964.8340055466458 None 357 265172 AGIX_20211207 207985994.2448271 4120.082774147275 0.21377907117157738 4.233415302356153e-06 2690618.949424159 53.28167706444818 None None 115858 SC_20210707 673669019.8204805 19723.14972137001 0.013980267770131536 4.093567957545483e-07 69654881.61676908 2039.5674543674857 138812 47295 51378 RCN_20201115 20174718.261962254 1253.4132199550145 0.039322823927566856 2.4436053769292174e-06 202300.5073576586 12.57139132340212 None 1131 1716221 LUN_20190513 5968019.269528131 860.0542702599244 2.2116293099194446 0.00031814739627670634 1005845.8339301179 144.69297892072845 None 2233 1641403 CTXC_20211104 42623608.337927334 675.9859965598774 0.22946314598254833 3.640853479605979e-06 4747842.339978113 75.33322281498134 21192 20665 639406 MTH_20210418 20920462.736197915 345.39424000875374 0.058849288313941414 9.768362221911847e-07 1312561.3334518096 21.787136108144676 21383 2007 362958 RDN_20190228 15292999.516557386 4008.409310337526 0.29887919236768534 7.831917024755109e-05 3729418.3224764424 977.2675916597163 24966 4464 723276 MTH_20200329 1841591.464416059 295.412315 0.005251736432649588 8.4e-07 50279.65588871054 8.04208503 19176 1926 1053445 GO_20190810 8075673.912147355 680.818815535955 0.010434591523720943 8.796427203640323e-07 235326.31744003424 19.838158645273435 10144 684 898219 FUN_20190104 25031121.89838649 6637.870564430398 0.004260931909412976 1.130077371588019e-06 260609.1914630059 69.11834226911328 36601 17909 483281 FUEL_20200329 1908916.9652612729 306.9202232758823 0.0019383893840392357 3.1003975608339516e-07 1914588.7519678462 306.2329140614545 1 1469 None DUSK_20200506 5914654.772308485 659.5995579558423 0.022193643027280517 2.470441518554838e-06 246765.27327462545 27.46818878206786 17501 13334 1673538 QSP_20200107 6985732.263561174 899.584798890736 0.009844680876375713 1.2691973478635495e-06 78627.68035990674 10.136848988262521 55475 8365 458793 NEO_20190509 583865751.7891597 98088.79120989065 8.997845780691646 0.0015105156206717352 214861732.22784045 36069.96727052071 320844 97574 218328 AVA_20210620 143952446.21269196 4038.070311241066 2.762875974166653 7.760716663275286e-05 2954293.40803207 82.9839424364109 None 10305 44540 REN_20200323 31254882.665437885 5357.124769403214 0.03545747481277911 6.080971384963392e-06 1768749.6044952201 303.3412782182762 11356 873 365958 BAND_20200321 5893114.505709629 953.002255236274 0.32391804886033276 5.224070042581794e-05 1789382.1913658755 288.5871266986561 8645 1059 702901 KEY_20181229 6984286.918163086 1815.3971582210186 0.0028469552290980313 7.395748420947801e-07 216777.9003973595 56.314015695571236 23604 2814 588114 LUNA_20210722 2793643695.441809 86810.46698713383 6.665604532782996 0.0002066499891228518 194493638.84279796 6029.776917255429 None None 20667 COCOS_20200425 6545784.666380205 873.1409848549063 0.000270414551259866 3.6078055612851904e-08 740648.0019448197 98.81546565899876 14922 219 64758 TFUEL_20191015 0.0 0.0 0.003540919665084369 4.24237999051835e-07 444837.4798652143 53.296030469751685 69781 4023 359269 AST_20190405 7875889.633187167 1607.882342584843 0.04717467660400812 9.634360300113556e-06 979828.5770198279 200.10781679750892 31253 3594 447606 RIF_20210813 167745103.90223962 3773.3758796500383 0.21956542549571986 4.9387543582331635e-06 3113580.365242463 70.03474505985086 44739 3375 684649 PPT_20210506 175687551.0157489 3067.930270861711 4.866148253566348 8.49070162515297e-05 7781882.487179509 135.78222207311464 24369 None 645855 RCN_20200801 27782530.158066798 2451.333392599491 0.05385467927910492 4.754890895792683e-06 360803.23789592093 31.855728304549828 None 1132 1018083 FTM_20211104 6734165393.091383 107068.85312388629 2.659478129093818 4.217015129207492e-05 700674219.818971 11110.276686610883 217155 19096 22565 WAN_20200324 12679939.835384315 1968.1326641228054 0.12015536382945105 1.8542922119498638e-05 340455.8662655302 52.54069741113623 105726 16356 732459 CELR_20200412 6066315.496248362 881.5914612647819 0.0016034659611751708 2.3297680419145442e-07 5332578.578602744 774.8010531088245 None None 1350205 RVN_20200905 126321452.22789678 12047.535906755225 0.018128119821576232 1.7289159570330646e-06 13042400.245287932 1243.8804533524765 33534 8919 265141 WPR_20210718 4988624.092463997 157.83966386947748 0.008193901816366738 2.592543924944292e-07 134073.84400529246 4.242085609026442 33808 None 6324665 SYS_20200520 14903166.801757375 1527.2876367451615 0.0253955890587938 2.6037795711746697e-06 404933.23537622544 41.51732348170064 57840 4477 1010431 ETC_20201129 735833737.4500109 41567.422707482416 6.3195589962000325 0.0003567489616430668 728262137.0120015 41111.533469220696 240023 26070 183443 NEO_20200520 726411932.3235881 74621.51436027365 10.298999015923348 0.0010560327447980422 424104188.30898094 43486.54751474657 320274 99439 247839 YFII_20210902 231829695.84955823 4765.8251770918105 5830.96955806975 0.1198425887817622 266766724.562081 5482.795709009714 18321 None 485784 OAX_20210408 24371988.824152496 432.6885848813437 0.43207221452379074 7.689071847713961e-06 1842379.3238704128 32.786618800738125 13620 None 1244197 CND_20200610 13955588.993306803 1427.6508412293574 0.007226312988398046 7.400009628544361e-07 29681.27576611216 3.039471536997477 34401 5939 343900 REEF_20210813 265893442.32197744 5980.802033926869 0.021070591230229318 4.7389730528183877e-07 62952042.95976499 1415.8503287662375 191212 12648 58529 FIRO_20210724 54677878.813623324 1635.7895708420851 4.520973188776573 0.00013521331699531186 4266111.585627252 127.590913300879 73700 1092 308142 LUN_20200309 2247441.501148712 278.2004687995687 0.8403940243571926 0.00010446721049239129 3631666.0877408837 451.44303104284563 29749 2150 1955482 AST_20210420 68627160.91863216 1227.149797477254 0.3983873756125465 7.123724495612942e-06 3033177.871756873 54.2374704302881 41950 3645 173984 HOT_20200621 101879522.76020762 10890.034794543333 0.0005750236342790085 6.145821003694648e-08 10079091.545177702 1077.247765549375 25382 7081 595163 ENJ_20200217 111253868.15340148 11183.050783311903 0.12364353692479395 1.2428439346951329e-05 16954241.56661082 1704.2117058843983 51404 14357 23328 OGN_20200316 6589075.490417521 1219.615966289135 0.22900551441420303 4.2659550564027026e-05 33226665.719264563 6189.521811082991 66624 2168 104622 STX_20200422 55654717.2593749 8126.830483289719 0.08797324947667182 1.2851330099225865e-05 117978.63491484632 17.2345842738115 35868 None 63028 XTZ_20200229 1967376114.9039993 224975.92219933574 2.7767998482043623 0.0003186929167038514 232521318.28456903 26686.438047687538 56372 21975 117570 SYS_20210401 222157051.70188525 3776.94098735878 0.3649534286088649 6.208854610253187e-06 7302190.576783766 124.23020603048519 63070 4901 301020 MFT_20190220 17880323.089297295 4568.624544896429 0.0031150229723559703 7.957357866714768e-07 2535684.6415365958 647.7432208013031 15879 1846 701840 MTL_20190813 13753694.944455417 1208.483906251474 0.2900170975694063 2.548256519789682e-05 2591030.746944859 227.66281882045396 33311 None 712205 WABI_20200704 6154438.451440773 678.7150621141651 0.10412555890427251 1.1487648504822522e-05 1646235.7339212834 181.6208975622628 None 7666 979343 SNT_20200625 93938689.32106106 10102.809748639396 0.024588165930321218 2.644379693365797e-06 10387524.490427215 1117.1454961165855 110413 5701 161883 NULS_20190312 19765087.269077618 5112.193901145023 0.4921983752059543 0.0001272928910628525 9351539.077622483 2418.5054340736197 19656 None 626169 ARK_20200229 33606437.0623065 3843.0064859739705 0.2347609391446954 2.6872920488414708e-05 1756572.1973851686 201.0735907109194 62771 21976 82103 ONG_20210219 0.0 0.0 0.44536019378810965 8.61424248753041e-06 31220229.719815273 603.8676852445553 99333 16949 213342 XEM_20190812 537965811.8327212 46615.390438433016 0.05982101826333995 5.18007183810943e-06 44546826.262239076 3857.4361804133982 217123 18406 178171 ATOM_20201224 1056498013.6305854 45183.8409848303 4.413825832991345 0.00018927751822550546 283376918.4641238 12152.015480169024 46496 9885 96388 ATM_20210124 0.0 0.0 4.794981476988805 0.00014962195586097876 982929.8458335478 30.671210454832195 None None 267747 CRV_20210722 506022490.2418992 15724.28465217878 1.4464338211634014 4.4787652751657065e-05 112730187.40497558 3490.5990265509026 142609 None 13850 AMB_20200316 1071222.6756641932 198.28680449193124 0.007346892125368572 1.3672185313381436e-06 189360.64587045967 35.23903437295455 19112 5501 780586 SOL_20210104 99775343.80647424 2982.514590964632 2.14770799035378 6.524477038320298e-05 71243785.08334851 2164.299997891077 105495 2819 92318 VIA_20210131 8249343.054705621 241.12800086771207 0.3657803893180734 1.0706457072537356e-05 1342855.431662107 39.30561739659558 37733 2119 2708625 OXT_20210202 0.0 0.0 0.3493302904153986 1.0458593189889926e-05 84392472.09462711 2526.624681980158 55395 1970 149953 VET_20190706 415551655.0140989 37809.044773400674 0.007491885235585194 6.817969624995039e-07 63042631.00164171 5737.177355672482 112068 56742 139851 DOCK_20200725 7441910.277173003 780.1617521828582 0.013275251619172604 1.3914827864478087e-06 2603098.3820342612 272.85106858536307 42189 14955 299500 ANKR_20210127 68491811.7369465 2101.801926894589 0.01054389104900095 3.236243296323886e-07 14226119.038101405 436.64319135888235 33220 None 5258 NAS_20190623 71114754.67003858 6624.180160111473 1.5598012884888957 0.00014541551855306705 13997963.597477157 1304.9874687474253 24317 5155 467000 JST_20201208 40808193.83864315 2125.140068913885 0.02840217334487865 1.4801666576853806e-06 40447662.28697035 2107.9119675638226 30839 None 203333 MDA_20190131 0.0 0.0 0.6865435220842508 0.00019851618274934954 802716.4761540758 232.10795171782436 None 345 1419663 LINK_20200713 2753829010.1179905 296812.7886834883 7.304026063302915 0.0007861234706233944 987375355.532445 106270.0125344532 63616 17528 82512 SKL_20210930 347536642.3698075 8360.87464663178 0.27969206941600216 6.725724946437573e-06 26984001.003601663 648.881353996077 75627 2643 253402 CHZ_20211216 1530259989.6647637 31366.708538431878 0.28760466905075543 5.885175382544408e-06 169901370.39080685 3476.6450968432546 None None 47803 FTM_20210207 358303924.4825872 9133.38562341965 0.14091446760557783 3.5834680003310582e-06 110301671.42571512 2804.981749946555 None 3374 133702 ENJ_20191203 51992469.385515094 7111.525117261101 0.0588944436049303 8.061058609643241e-06 2592040.5704353154 354.7803439152111 48975 14172 29891 ROSE_20210602 117460131.07980096 3201.680265020874 0.07818762457450668 2.1315034736714985e-06 8479233.10872857 231.15569661670287 20806 1576 216095 BAND_20210805 229578836.29152605 5758.585904067925 6.501308729808806 0.00016345899040552973 49853801.55025789 1253.4479453219935 None 5546 306752 SYS_20200207 19445139.88031252 1996.8416331968672 0.03364847182138781 3.4553965587270914e-06 4822301.983167446 495.20720483918745 59173 4529 762164 BAND_20191220 4150216.6064724266 581.0046605522663 0.2458865205236342 3.441069442147209e-05 708444.4575501935 99.14356302017006 7613 991 561029 BAL_20210106 182414347.0193528 5368.750497627854 16.95029159315269 0.0004974247992574631 70104541.20000236 2057.294244279234 35096 None 83798 HNT_20201106 40416621.463736616 2598.9419712492704 0.8895402793954095 5.72738969875392e-05 1920800.6630892185 123.67257768938825 14174 1748 69434 AVA_20200927 25146192.421880618 2341.8964372217974 0.650270660039169 6.054047934844205e-05 722056.058805205 67.22373098285088 None 8954 65670 ANKR_20210729 582828659.9557228 14575.440668723468 0.08342693354454095 2.0850526771626345e-06 121481754.1870461 3036.140081294981 117067 None 5363 ZRX_20210620 668703289.1383605 18757.92357172742 0.7901258883063409 2.2192293907712106e-05 77714588.19857481 2182.7724008846985 219890 19445 58328 COTI_20200605 11745127.504499706 1203.963126873949 0.022886719646423272 2.3410882281957053e-06 2129578.6761848363 217.83513089050538 24088 978 270348 IOST_20210509 1455852488.5628467 24825.440783851493 0.06486300661653686 1.104192182321345e-06 391629606.29809344 6666.887216567779 245206 53266 140464 ETC_20190615 949500287.8901073 109130.67516641645 8.520518629361188 0.0009813388877461077 789018012.1847681 90874.05264520811 227775 24647 668165 BAL_20211216 160337429.82044107 3286.5194707167348 14.907997063261021 0.0003050582509989249 31839146.776161663 651.5157192222662 None None 2428230 ONE_20200418 11586979.317143183 1636.7350303643632 0.002194955273422621 3.1178657338134183e-07 47667048.24374155 6770.956025880595 71234 None 276485 ENJ_20200701 155199865.64850566 16965.037625356996 0.16802876813974804 1.8371494594702085e-05 11411803.494596474 1247.71423690029 56715 15600 100201 BRD_20200411 6958295.692386066 1014.8929074116259 0.1132189129571485 1.6498054897196544e-05 351864.0917394168 51.272998037582504 None None None GO_20210117 8581825.965192262 236.30451190022956 0.008314162406578918 2.296992220255497e-07 516597.5782844893 14.272280962221043 None 686 751826 ATOM_20210511 6079822411.726809 108892.06955391346 25.439133406272077 0.0004552832271627352 1182706872.423108 21166.86103511599 None 27409 41486 ONG_20210204 0.0 0.0 0.2281752108819274 6.090450657166809e-06 6293215.485439396 167.97845059873907 97067 16698 259663 DNT_20190719 6613450.85100473 616.213962731654 0.009911231844342136 9.289233454529292e-07 502469.89107882493 47.093642802510004 60624 6347 724607 ARPA_20210506 102922494.66994381 1797.845517495472 0.10486170022547696 1.8291586700834177e-06 26850986.57734284 468.3761067447134 40590 None 485281 BEAM_20210509 136408149.9151853 2326.0546482268032 1.556920749942088 2.651386665224094e-05 24880897.085494455 423.7137873186341 19791 2259 172921 CHZ_20210203 120925105.90259258 3395.5164352148026 0.022570779508352724 6.355330597027347e-07 38075117.25796937 1072.0939328011589 None None 105011 GRT_20210220 2640763907.6763563 47273.14456574453 2.180627955360301 3.9005188573408214e-05 568847374.8849552 10175.050297935773 64745 10086 27786 PIVX_20210718 32741501.68678445 1035.804547306079 0.5000843696879017 1.5820583585770608e-05 170728.48003534673 5.401136993256673 67692 9844 339375 DGB_20210930 628532313.0290874 15133.168399169206 0.04281544764127827 1.0300340943250515e-06 14502621.924503015 348.89732239870875 228094 42139 155927 TFUEL_20190915 0.0 0.0 0.004390704720949345 4.240710722132158e-07 291478.8325137236 28.152141600819157 70035 4026 310301 YFII_20211028 146651122.21763557 2505.711232317194 3683.2613468707996 0.06294234761321535 58397008.68174738 997.932124241259 18761 None 487463 OXT_20210207 0.0 0.0 0.40683795407295104 1.0341970296542108e-05 57288425.58819869 1456.292830689478 None 2102 149953 AION_20210617 83774077.19242263 2190.508691116582 0.17069151559399462 4.459880695968829e-06 2774861.7750466107 72.50244642474533 73462 73366 263057 SNT_20190531 98329480.3870508 11832.7182555284 0.02789082051038991 3.3576521690102687e-06 37971957.99990446 4571.275595583532 111527 5753 343013 ONT_20190803 632905133.900918 60134.685940929696 0.9718857695734789 9.233895869854093e-05 135363185.90037888 12860.86906863904 81467 16296 237451 IRIS_20200905 62481497.70393018 5955.565757633129 0.07628502779572806 7.275459514657891e-06 8592385.474527355 819.4734204155201 10296 None 427030 MTH_20210110 3343454.574092756 82.62448011827902 0.009607493720174607 2.377411258938982e-07 264866.0512719444 6.554212271639 None 1882 1263562 SKY_20210120 10824084.45678867 298.9018596568084 0.5678455943578625 1.5704010269691897e-05 491924.8680220928 13.604390447145525 17247 3826 762023 MIR_20210825 312193595.69566095 6500.817075573229 4.015855669007244 8.362115631653146e-05 68148014.77817187 1419.0290354323304 None None 15309 MDA_20200410 6818483.436303324 935.1342745738523 0.347369827384176 4.764071579469261e-05 228853.94539391118 31.38662287714309 None 373 1850910 ARK_20191019 28244338.902166847 3548.9237306005016 0.19784833844043545 2.4859801667982164e-05 607816.9444040231 76.37268428651507 62800 21734 85415 ARDR_20200306 53746736.51989947 5933.103906419134 0.05380056425343786 5.939045951588928e-06 2692473.570184135 297.22224067083954 64712 6391 1029538 RENBTC_20210429 598960056.9751104 10942.148600630857 54747.28465685845 0.9998264111304911 28793840.503548827 525.8496817471016 73763 4865 63508 DNT_20190312 7428123.290141763 1918.633791486273 0.012790516958803984 3.3082374946853024e-06 540619.1664582028 139.82989136271627 60227 6462 764547 GVT_20190803 7996266.641189271 759.7259930724249 1.8012799337203305 0.0001711739790208736 433436.899814226 41.18911081324028 21385 5732 213598 XLM_20200310 1057966988.6159569 133494.40971424954 0.0522250624033306 6.589765042615351e-06 465137661.93447363 58691.129575828985 281647 106779 84088 NCASH_20200217 2701664.17767981 271.00958082813395 0.0009290886899524153 9.339042475010713e-08 1312445.4610571282 131.9247994244263 58181 58402 791025 ONE_20210418 1357032843.0583732 22511.167647835242 0.14426489913157728 2.3936257846062526e-06 190299309.43887553 3157.423161196067 None 15051 31277 DLT_20190726 4932125.367507291 497.03483176454915 0.06168872219405288 6.2321582405793345e-06 234768.84544565275 23.7177322326912 15068 2667 2867435 TNB_20190603 14155727.382834634 1618.8197798715194 0.005139889294123414 5.877503079943721e-07 553092.9872010886 63.2466099899547 15787 1494 509934 FTT_20200704 283924413.43180305 31306.62356772297 2.8576765001092395 0.00031524378445862197 1913691.5083115918 211.10834390926098 14984 None 12401 OM_20210408 117003013.19545887 2077.277953320733 0.4110293778001402 7.303622996813655e-06 18736900.549456492 332.937899656802 33594 None 76567 XEM_20190716 621372492.5641478 56726.554773819866 0.06932084774194926 6.339012183477998e-06 138253569.06402117 12642.532329791491 217517 18442 192645 WTC_20190622 43544437.45769608 4301.635357790059 1.4896857152137928 0.0001471764336709547 5879224.989125217 580.8496099624782 55631 20137 829543 MANA_20210930 856278224.5344448 20614.177218632944 0.6460456140156315 1.554226442989948e-05 61074542.969600216 1469.3029039677333 176760 37592 13381 REP_20200730 221693772.185217 19964.67251787182 20.146452007276388 0.0018151339702402527 22807027.41763608 2054.8437119846335 134964 10316 213403 LSK_20191216 79056797.68846123 11117.807998596234 0.5766551648805871 8.103330362827649e-05 3476266.3658222705 488.49531760072585 179376 31128 152394 TNB_20200725 9660724.462313937 1012.5496442285861 0.0028142708765493147 2.949857067465383e-07 929598.3840015798 97.43846570710187 15891 1434 1115028 KAVA_20200321 7835384.255797289 1267.095499193672 0.4207204141872981 6.791457286538809e-05 1847630.0155120036 298.25270912788636 18054 None 337432 UNI_20210731 10914562607.27556 261453.14376805344 21.000309981643756 0.0005022644882336253 514663303.007334 12309.204041443034 None 49625 1869 WPR_20210108 6901472.258162488 176.51102201278044 0.011448811056810048 2.900383335460051e-07 658093.7088550944 16.671809997240334 32547 None 7558136 LUNA_20210207 1307422284.0861847 33326.991632746 2.6828231130167457 6.822444096338847e-05 144162561.0785015 3666.067319053144 23189 None 115872 LIT_20211207 90504810.75914742 1793.0853948886927 3.2624444280973077 6.464248643047275e-05 21014279.716498055 416.37959553295025 66826 None 136723 BLZ_20210511 99931613.94685718 1789.815478088172 0.34877345965785433 6.24106975587807e-06 38783197.19798753 693.9995930483473 56444 None 200625 BTG_20190225 215676686.43062553 57259.60057144103 12.24434284497643 0.0032685453518685992 4840427.583933403 1292.1197389546417 72838 None 354755 QTUM_20210731 748207053.8428316 17933.379449136934 7.215736053597711 0.00017270066710668803 217821147.20941803 5213.308407290565 249388 16757 165000 GXS_20200418 26958331.817307897 3808.037007565221 0.41399586686215467 5.880682594580432e-05 10327827.573635992 1467.0358018895738 2 None 503557 LINK_20190224 167249525.8475945 40646.10760684535 0.4589603020336277 0.00011153962756658774 4782476.778743551 1162.2697570645782 9907 6381 313186 XTZ_20210805 2675143182.1299047 67097.88147967205 3.1817794826875083 8.000225977178992e-05 84988509.51651137 2136.9403043023385 126199 51199 70665 NANO_20210314 717003690.6713583 11674.26249881969 5.369739707876586 8.753247216671064e-05 39278527.78061251 640.2818063345977 111687 78488 90467 VET_20200229 361905472.3831617 41407.25185749718 0.005754437430557357 6.604359510895408e-07 194008024.1216292 22266.272850474023 118783 60493 239259 CVC_20200718 18812625.300421022 2055.3309107695477 0.028161567044286705 3.076212786996852e-06 3019021.056733666 329.78105104492 85262 7984 98736 QLC_20200414 2084339.7290157382 304.33102518941234 0.008632071294400887 1.2609147020203051e-06 27500.006433883496 4.0170152951156 24453 5659 940522 CND_20210718 19532851.696290135 616.0009859149279 0.010404798984519214 3.2880071427627327e-07 59396.273271904945 1.8769739911562053 36109 6250 140212 HC_20190723 132267004.83071326 12780.570685564866 2.993699933175232 0.0002895581395945589 74614687.06199051 7216.919014720617 12946 844 470640 XEM_20210131 2073196529.8132813 60603.932029858304 0.23070491995128112 6.751798952354392e-06 105017093.20537676 3073.4251355935544 224505 18012 60114 MFT_20200217 10404359.456907382 1043.7052357152054 0.0011114481390989324 1.1150963028493792e-07 2136815.2230537417 214.38290022521733 18484 2476 850762 KNC_20190818 28443983.63732907 2784.414387419202 0.16996710019382952 1.66274283057203e-05 6912804.669716549 676.2612523604923 97677 6700 203045 FTT_20200314 58932832.63287254 10680.170325990528 2.0555679747864106 0.00036950316294654165 51216306.23827473 9206.500286835622 8194 None 19129 KLAY_20210723 2384127435.259749 73648.77087177415 0.9612926250439002 2.969378614309624e-05 23333778.747891627 720.767244020598 41732 669 62906 ZEC_20200127 464539442.0822222 54122.317556282396 53.61235396536906 0.006238545881042511 249556085.06259498 29039.334619815538 184 15484 167778 LOOM_20210108 45767955.169489205 1169.262416334683 0.05692531773210095 1.4425198554641123e-06 131634136.1157188 3335.683709266524 23070 None 358251 APPC_20190605 9168974.092340142 1195.9888012210508 0.0867209273623256 1.1291047028910128e-05 879496.8278627191 114.51030734121673 25565 3376 1192397 SNGLS_20190329 10595709.225271653 2631.7629645536413 0.017946674980675356 4.457480517824384e-06 789628.8673086764 196.12297521018053 None 2185 2467008 SYS_20200422 10880887.406467581 1589.5044989795986 0.01862893901303087 2.7214010655414284e-06 323219.90628371015 47.21745005173967 58354 4499 804811 ETH_20191216 15508762801.226492 2179348.346759887 142.21086918955265 0.020000966622337617 6837194965.911324 961603.7725030188 448337 448556 23532 LSK_20200407 143810089.11009392 19772.71121728564 1.0329649948617563 0.00014176121046356166 5096396.684841998 699.4151463403407 177211 31344 155237 OST_20200414 4627087.307591525 675.5934286322928 0.006695193358505792 9.777692165314688e-07 150302.6967762775 21.950277191442616 17776 755 766373 THETA_20200316 62670258.40634349 11600.46884591244 0.06261865360910669 1.159473167436125e-05 2851408.9102362553 527.9787938983101 None 4027 384607 BNX_20220105 0.0 0.0 53.25245481205325 0.0011594910004673273 36449888.17209267 793.6407336101993 None None 16195 LPT_20211111 1812305865.9330292 27906.45038610966 75.37658453523272 0.0011604199180949187 739094210.3950677 11378.329867018363 20050 1972 127204 QLC_20201201 4240296.011929476 215.6763968288755 0.017693319879825514 8.985553628277872e-07 1129534.2510127646 57.36340413437417 27330 5607 940522 HIVE_20210429 246627745.32215768 4505.612296462487 0.6656679862088255 1.2158076289263826e-05 23596468.252845798 430.97710438081975 19312 163 113776 POWR_20211111 160666329.62073773 2478.10150414761 0.3841975643549275 5.914708246731727e-06 13980869.376946365 215.23500165636375 93899 14643 262348 POLY_20210124 75912021.50073813 2371.5890379200696 0.10128442450759217 3.1604341038164555e-06 7135941.870707895 222.6667541498101 36065 5029 305151 ARDR_20211204 348298187.10420215 6487.437867449048 0.34743369904032273 6.475759547791208e-06 33705094.68717715 628.2237138555823 75694 7433 None ICX_20210408 1394103736.8667011 24750.24822286417 2.317392848326749 4.123986572430186e-05 198044348.51633787 3524.358136415131 132031 30769 720527 SUSHI_20210110 600434909.4672515 14840.333715309136 4.69700770324206 0.00011655891680710759 571400676.398047 14179.632675039844 None None None ZRX_20200421 110145997.79513913 16084.988313723214 0.1686032513314201 2.4625563756606267e-05 42162773.45663256 6158.137863372046 152335 15923 132812 MANA_20210704 744803078.7565469 21484.564252768665 0.5618133468902591 1.6202004994187242e-05 25439284.693648916 733.6376395051377 144619 34004 16474 LOOM_20191127 10708977.533528015 1494.048963089845 0.017743981769968963 2.4793072140560366e-06 2703988.466708205 377.8192628432633 21110 None 236531 MKR_20210128 1202283178.0256274 39722.841583677386 1332.7780644750262 0.04383111960868802 146551109.62274277 4819.631554478329 89020 19696 39551 SFP_20210823 151120916.726952 3062.7303555325816 1.3960606332036143 2.833273267908899e-05 18856985.909670938 382.6982354527373 379461 None 25785 QKC_20201106 25443668.55045092 1637.440036135213 0.004359739295637387 2.804575680571624e-07 2861552.090972459 184.08071810763937 64304 9215 94365 SOL_20210814 12659136195.430464 265597.7235266524 44.69284014294085 0.000936187915542212 536710066.6718894 11242.549745352011 385442 29786 9636 MATIC_20200718 79198940.38047884 8650.569832926783 0.021201702812911165 2.316239816552167e-06 11560933.679764077 1263.00680383472 44416 2006 96762 ONG_20200324 0.0 0.0 0.07910957564202245 1.2208549442027109e-05 8742453.472977014 1349.175173842872 None 16538 298289 STX_20200315 40621307.965162896 7858.778366158388 0.06966827462218399 1.3446614842097965e-05 597306.3513882539 115.28559438874323 35834 None 34581 TCT_20210408 36118200.581741735 641.225187280866 0.06236259584146005 1.107834999390782e-06 33702267.69238327 598.7010515626615 None None 419712 AMB_20200207 2914155.5025701527 299.21364284805236 0.02007037087721978 2.0610472543790345e-06 748177.599775201 76.83113566948603 19098 5501 774715 ANKR_20190805 15577971.899953019 1423.863614039128 0.0059272663546851775 5.413056296895697e-07 4499574.396762054 410.9221361798777 10769 None 12914 AMB_20190629 5944444.177691335 479.87358435232466 0.041077723711639494 3.3190133010215504e-06 917374.3939899624 74.122359774442 19397 5668 665963 MATIC_20200610 70221933.22548583 7184.732557750627 0.020169433454384086 2.064482315433884e-06 13032339.846645245 1333.9509611399267 40561 1856 144914 AMB_20210107 2322870.3400824647 63.46259913982437 0.01584438654572406 4.292780968032101e-07 779191.5652782288 21.1109386420531 20222 5487 666960 POLY_20190807 23502468.0118807 2047.885819448014 0.04650584496328741 4.052833480084662e-06 2106559.13375886 183.57979285863402 35279 5081 295167 XTZ_20191011 740776411.6102066 86514.29189337736 0.9142489856281576 0.0001067739230977003 27197745.428170826 3176.388516070455 44850 16809 176367 ZEN_20190712 56144799.66382896 4957.14821634271 8.199971627971411 0.0007225747572028082 2182577.4767839075 192.32693256935107 26270 1710 233714 TWT_20220115 248108147.22176307 5756.391130100118 0.7158818083547684 1.659848364286131e-05 4770371.087549954 110.60614411902594 1590649 64352 3086 QTUM_20210107 313218600.2923489 8545.475912295082 3.018811828010302 8.178983720168139e-05 458365760.4535463 12418.680945420128 188979 15021 249496 GRT_20210107 459045307.95562315 12502.984579662612 0.3708021325870961 1.0046285686618613e-05 382565726.2084338 10365.001281366398 40262 2512 38944 WAN_20190702 39578180.77724868 3727.5221918173397 0.3706227010301272 3.4961361207558546e-05 3508137.2643651683 330.92752744035784 108518 16983 459878 FET_20201124 43026483.82553342 2350.036754514651 0.0631692521189733 3.4407373711493227e-06 8940231.4333077 486.96141504683754 25974 701 294127 FRONT_20210603 45771726.25498033 1216.2689986332755 1.1959884867732917 3.1762810858794583e-05 17110439.847710792 454.41546520224955 None None 177043 KMD_20191015 69755589.32962504 8357.924323946607 0.5993624266969327 7.180570961596479e-05 2409801.7871609298 288.70266078325096 98198 8407 202419 CHZ_20191026 38614884.02822007 4467.635137778312 0.010730563231274626 1.2394143441028288e-06 13207663.7044483 1525.527364646548 None None 374824 PLA_20220115 347023312.74394035 8052.534730820157 1.1490392788806256 2.6647862190251012e-05 34900612.48243815 809.3950562711677 20386 None 78767 OAX_20190725 4634942.4204355385 471.5059408004259 0.0991833091956958 1.0089773566080588e-05 211284.8050307626 21.493695441313147 12320 None None KMD_20190725 133936472.80984831 13625.162276290781 1.1611850974483244 0.0001184171962564377 3556307.4515012377 362.6708251406879 98244 8455 276726 SUSHI_20210519 3586125265.609548 83785.55971091917 21.44071311854654 0.0005011516469286167 2292184670.018654 53577.141585403035 92504 None 8425 GAS_20210310 151768595.59597662 2771.8580042802764 10.891089316491877 0.00019891172464700407 21700802.381381538 396.3372168262425 352034 105838 102810 DLT_20210823 9896543.163432335 200.531167480576 0.1206751368713448 2.445209977167047e-06 151758.61950434698 3.0750467756149935 15302 2595 None MDX_20210805 711943213.3573723 17899.508163510163 1.2018590555169175 3.0223412262188558e-05 51616990.311543904 1298.0237331142068 None None 12116 BAL_20210527 363401448.3036569 9275.30189587062 33.66315307649778 0.0008592812100172666 40420266.38701916 1031.762394073144 None None 46563 CND_20210527 35807521.712616205 914.9495190754975 0.01859251936159171 4.7425690784405384e-07 412448.9382511969 10.520723646665052 35954 6230 116795 ACM_20210418 0.0 0.0 11.395467226532087 0.00018957632050622535 3165808.632471435 52.66676126920189 None None 44251 ZEN_20200526 56489454.940554805 6356.264915591988 6.210546566772954 0.0006985135569803932 4019758.571044066 452.11090963953535 62311 5816 47922 WAN_20210509 340818899.771829 5810.472719913223 1.9387596070270536 3.301999036271583e-05 23369886.20045917 398.0242905412251 None 16382 177297 VIBE_20190220 7754892.285248202 1977.8158686536365 0.038509179562962924 9.839530424104733e-06 2087215.5928550314 533.3071636591037 20495 None 1395931 MTH_20190716 5714171.107629687 521.9058852539187 0.016886831059043664 1.546028965721742e-06 231813.70662276025 21.22308820624903 19524 2005 1394829 CKB_20211202 884263302.9484118 15470.126369036598 0.030632756340197003 5.356857528559851e-07 33663488.98282997 588.6852374385602 None 13776 82429 DOGE_20210725 25869416921.78016 757215.339759493 0.1982464586696225 5.8024357560385385e-06 1550001043.6138842 45366.66903266292 1988146 2120906 9379 RLC_20191108 46634963.34525778 5058.365634270481 0.6658946550976927 7.222775355162969e-05 849652.2135547338 92.1594282450347 25433 3393 573823 ZIL_20210711 896049836.0405598 26572.819783226794 0.07327893912926042 2.173857623227733e-06 46406701.90226138 1376.6788097346462 307588 34907 36438 KAVA_20200207 17581741.91010547 1806.450745463561 1.2847545536074485 0.00013193830695008168 5054140.068436142 519.036637656303 10517 None 277607 KMD_20190509 132307240.62326597 22228.68167483242 1.1698226391132167 0.00019638426939788242 2473184.541670063 415.1864761911193 96954 8361 329492 WNXM_20210828 157348268.59511366 3208.2616411218673 70.72848139825568 0.0014421021557623295 15739679.509634899 320.92058677245177 32817 None 132696 LINA_20211111 186289787.723996 2868.470088825236 0.06082168522528046 9.363477454264964e-07 74435375.46080089 1145.9300368699094 None None 138860 SKY_20200625 10111284.72491966 1087.8295869575577 0.5617380402733144 6.043497705319765e-05 961651.6373738305 103.45995903994734 16090 3816 781514 ETC_20190513 642719400.80762 92622.61736752054 5.829268927841101 0.0008385522489105119 738252178.5722002 106199.08469964456 227636 24473 756071 POWR_20200310 35638714.340527855 4501.406940839588 0.08388990082078414 1.0585238397379433e-05 3275370.08832671 413.2866159736137 82723 12838 280064 CMT_20200418 6106834.460295541 862.629475053412 0.0072971101204407285 1.0364202322555925e-06 5761584.4094851725 818.3270573252858 285516 1635 944279 FTT_20220115 6171820046.948888 143214.57220685203 44.62964587418198 0.0010347583040887262 242533824.93017665 5623.255225381094 367125 None 963 TRX_20190104 1294662581.7414052 343324.7090201217 0.019747922639294493 5.237196901581981e-06 91321531.11170699 24218.691176878176 362915 68747 90980 GTC_20210703 98209760.52197513 2900.62720853939 6.910165070549657 0.00020407241276019196 26035924.84166325 768.8982747352238 51524 955 25905 ATM_20211225 28841703.087913513 645.7254437455765 7.788259865569 0.0001532074226794582 1201878.453328844 23.642855193177724 None None 65314 SNT_20210806 318858610.6242888 7778.811775094661 0.08213970954195976 2.0048314678628976e-06 28587843.187173557 697.7600473580643 133811 6035 133680 PAXG_20210825 326305319.28205687 6787.430551358593 1804.056265937615 0.03756637783821887 3856415.734149706 80.30324403159706 24493 None 41531 NEAR_20210724 803052660.2756511 24020.731238711734 1.9322989859929407 5.7788613162308867e-05 30681884.047068413 917.5927437418475 94131 None None FUN_20190228 22552991.559057727 5909.851318759747 0.0037490501614588496 9.833181165160968e-07 746226.5675483799 195.72373569160607 36379 17821 514881 SYS_20190819 14353167.442719111 1391.454582112759 0.02556509279405778 2.47799587587704e-06 766537.1190371485 74.29958635324127 60800 4573 680853 YFII_20210203 76425207.79482223 2145.7181683629556 1911.9908283205061 0.05383657134200507 89511021.60988304 2520.392059113175 14091 None 213676 TFUEL_20200721 0.0 0.0 0.008294885563927929 9.053244766202983e-07 2307335.474672573 251.8283422835108 71655 4293 67592 BNT_20201226 113967526.98711905 4614.9837229944505 1.218001627683149 4.932808876481831e-05 68996757.83896053 2794.3133390050766 88998 5292 105312 RCN_20190324 11414794.3375692 2852.6497256861976 0.022832810448787582 5.700758319252154e-06 1584212.3999479127 395.5365914643696 18549 1112 1862328 XEM_20190221 397142720.6220952 100021.83952505645 0.04412696896291358 1.1113537726241112e-05 15009196.09551584 3780.1206601853223 214770 18485 136957 CRV_20201228 80359473.49734564 3036.608856610108 0.47245692233372205 1.7965296126632067e-05 43812841.738227874 1665.994588646433 None None 24285 FTM_20210212 454089166.5980409 9522.969846705408 0.17899729973570996 3.7489350103894958e-06 200192064.17469722 4192.839999792114 33563 3488 133702 CHR_20211216 316590313.46569276 6489.352237945286 0.5518315827792583 1.1291891227314771e-05 69967092.69785865 1431.70638450338 None 1775 31346 STMX_20210626 125058887.62063809 3930.4108002799794 0.01336426228603764 4.2040482358725144e-07 24333534.942682944 765.4695220641248 66721 4492 52447 XEM_20190807 570477712.4618381 49903.20834412083 0.06368069603901444 5.550137159107212e-06 66957018.8691499 5835.687446962507 217186 18405 178171 PERP_20211120 846867733.8221796 14563.914395400963 15.082039405288613 0.00025923292337380556 25126395.719176076 431.87720447441984 33499 None 99669 NANO_20200530 118662772.14492822 12583.7486867634 0.8902884107699703 9.446981283824912e-05 5597675.236683108 593.977553275584 98045 51537 299823 NEBL_20190228 17426187.33603978 4574.367863191603 1.176030795734087 0.0003081705205658113 689492.7312446657 180.67667503671046 39631 6169 501416 XVG_20201101 64771920.23610816 4694.138642922785 0.003917134229938242 2.8388173681299834e-07 1467867.0420720032 106.37895483110073 288188 51311 419169 QI_20211216 155162613.21796656 3180.4485704879703 0.16965298858260272 3.4715625280937995e-06 25494047.242610686 521.6776894785341 51008 None 875386 HIVE_20200914 66301504.399104975 6423.064702540965 0.17964457305518736 1.7395262975873484e-05 4011408.8627065695 388.43094942308034 None 90 158511 DEGO_20211111 47002657.80271975 723.6042950736378 8.668579847102048 0.0001334524876418555 11233535.248448282 172.93988754329393 None None 200425 STORJ_20190509 31474550.562346272 5283.757480961032 0.23288035088548123 3.909921772010794e-05 3410648.873544615 572.6275418536208 83978 7693 186547 STPT_20210620 46647942.94470462 1311.1527104057843 0.04156384854679393 1.1674052914065e-06 9666112.179990882 271.49243635478024 29913 None 480886 TRX_20190131 1775617008.5080826 513425.4938335609 0.02708874820439135 7.832800574409065e-06 188530546.99498335 54514.22729665189 377716 69677 78047 DOCK_20200719 7489995.910336642 816.7602312833869 0.01337760207668388 1.4592936753482571e-06 7666959.759970435 836.3491321344401 None 14961 299500 AUCTION_20210428 130456465.6655518 2368.031431725402 45.09665129023845 0.0008188367822999164 7267972.6839597775 131.96730125426225 None None 33253 RENBTC_20210420 666719981.4492114 11920.097883339577 55869.78715905767 0.9988801148718051 8681956.953341182 155.22225159326663 71807 4796 63508 VET_20190528 445111249.58324355 50536.556039044255 0.008021874639473079 9.115293962701662e-07 25475253.628499962 2894.765077174186 108870 55723 262413 ZIL_20210217 1540414935.188184 31322.22068420495 0.13191768078357116 2.681934430485572e-06 283114392.79978853 5755.818577962226 142106 19108 35455 LTC_20210813 11035052205.051607 248205.38514919725 165.45903474558477 0.003721328454608029 2667551798.05477 59995.73505010382 190157 340140 80775 NULS_20191213 22036698.990136847 3057.529732676239 0.27719129392386704 3.8507982339813066e-05 4927447.889027947 684.5311539371534 21148 5260 579591 ETC_20201101 612007918.8520354 44352.466832638966 5.256346153472736 0.000381427216415337 397572565.37318456 28849.887831913496 236993 25916 158636 CVC_20211120 322026354.81534064 5539.662076664392 0.4852689900936777 8.343185086073281e-06 43712713.76931694 751.5486648375202 110933 10181 154407 PPT_20201201 10994011.450352177 559.1941623029302 0.30262169673132866 1.540547618693163e-05 2729731.292064019 138.9616503735004 23470 None 1191706 MDA_20210821 16245618.322241327 330.41606166261806 0.827638240242714 1.6833152324401573e-05 1286926.7268046094 26.174519940369834 None 390 2385325 FUN_20190515 35670478.46625389 4466.030090534409 0.005938855331290795 7.430249702088246e-07 3688281.5038076146 461.45007776991497 36499 17697 471824 XLM_20211011 7954061724.017552 145322.99600555428 0.3333275462976312 6.089990166016089e-06 554398105.4188554 10129.012881053852 644030 202574 37145 TCT_20210219 14353934.285127286 277.72237762928467 0.02480067273641589 4.79786248390207e-07 4533382.70879999 87.70143880728106 None None 1023236 STORJ_20210707 138354904.0572828 4050.6456540553713 0.9620517019867368 2.8165260253073048e-05 80602944.90515538 2359.7514725347964 103451 13660 49703 STPT_20200730 13385111.438511204 1205.3986174308766 0.016465223706497504 1.4846163983176114e-06 6017544.88437802 542.5827168952724 12876 None 2040332 IOST_20190430 146186607.6621617 28087.519533545452 0.010809175875964019 2.0768057891319308e-06 26316823.438889753 5056.3458210522185 197074 49355 95321 QTUM_20190929 158401637.81227872 19335.573726016515 1.649367496390444 0.00020136150622845713 163531777.7980538 19964.625934303247 177596 15327 210417 STORM_20190703 17157909.165736616 1595.5610050493706 0.0027600707385028373 2.557779727325285e-07 773406.8946294248 71.67223826769728 None 2576 3762880 VITE_20201018 9229058.517139897 812.4667773566479 0.017102778526615132 1.5050399872986904e-06 448705.8164568875 39.48599318234739 None None 465291 ATOM_20201115 1205422230.6894882 74906.03876474411 5.045263002157911 0.0003136419207613598 176029385.142862 10942.976499547089 44696 9701 79924 FOR_20210114 7276152.5944528105 195.67185563716956 0.01264047981805496 3.381999697143519e-07 2417341.8230079343 64.67673245779672 16827 None 227730 IOTX_20200903 56468106.917238325 4949.69798862126 0.009720980915655241 8.519033093925563e-07 6117967.265147622 536.1513004866626 26382 1932 382406 ONG_20220112 0.0 0.0 0.7167885421667164 1.6752942179622334e-05 8486147.974357644 198.34014912178412 184454 21081 103230 ICX_20190205 89161088.92233178 25737.16994799337 0.18833931006255542 5.4365877419804814e-05 4762427.5744712455 1374.7186057356055 111531 23456 236069 WABI_20190605 15664021.345300902 2044.5152191139618 0.2775280880776617 3.618873179948394e-05 640668.9907471397 83.54108745888938 36277 8028 932643 HIVE_20200907 65153809.11266953 6332.712180866323 0.17755338941408394 1.726113299919926e-05 4332201.088909738 421.16176673231803 None 89 158511 MITH_20210506 70636366.270284 1233.8728756704481 0.11435724782120421 1.9947945807597388e-06 38506946.57809674 671.6972454224222 31418 2670 254910 EOS_20210212 4323331904.664497 90702.79885537288 4.569045950407329 9.554362780850721e-05 5415644401.912713 113246.90508604868 197060 77092 71191 SNGLS_20210220 13912417.33065032 249.1279264271556 0.01563192958500036 2.799190184574782e-07 882128.9321669621 15.796173050962073 9155 2116 2616688 AMB_20200605 2006375.533548023 205.25292564813083 0.013876215535222877 1.4195417497401258e-06 288644.88589824265 29.528473764439052 18921 5453 1126030 BAT_20210804 958846801.8004773 24956.55435766043 0.6425487722939484 1.672627352959577e-05 61878037.28818114 1610.7555127086373 209080 76925 27723 WNXM_20210723 110537397.71279961 3414.4377715873493 51.00742371544634 0.0015755362981591755 13357628.933562683 412.595416690221 31468 None 131125 ICX_20190703 143538418.66101822 13339.509608155178 0.3040081971771237 2.8167682849596264e-05 18778913.69894237 1739.9481008847974 113896 25399 268065 DGD_20200312 72213490.47184128 9108.162444139696 36.209098053885285 0.004561383108730584 645888.3308939318 81.36474756375891 17649 4714 323922 REEF_20210610 291943754.07637715 7777.780333281053 0.023011810807798426 6.144076550780187e-07 36814239.65037851 982.927890637967 177281 12173 36544 LIT_20210814 106330648.35602705 2229.168939112109 4.795297575348608 0.00010050437371937927 18766857.331736885 393.3335133367689 None None 505137 DNT_20190228 7140923.000387041 1870.750147739071 0.012275071594193557 3.2195622251706e-06 770863.1963021623 202.18554397374672 60165 6482 733347 OAX_20190830 4036751.192092358 425.38405578372306 0.0772863928105904 8.144271882563608e-06 524521.4899966604 55.27293314425211 12296 None None CVC_20191102 30585043.956380323 3313.3545031956937 0.04495360889706097 4.868659232853492e-06 2860480.4145477857 309.80169829246296 None 8143 114781 TOMO_20200330 14973743.741855469 2532.249350316098 0.2133120941499551 3.607847406852259e-05 4882752.209873466 825.8427619350165 22169 1515 236393 XVG_20210125 205803847.54202622 6391.8878065349545 0.012448004465166782 3.8568754785945e-07 12596584.043583563 390.291120538261 288966 51373 179972 AST_20190205 4215556.451594676 1216.8592166316334 0.02530253659371216 7.303810353807647e-06 175674.19744792077 50.70997595299709 30451 3590 375150 HARD_20220105 80367354.72274448 1737.3410074515566 0.8274498044026996 1.7983776387539555e-05 6525838.888094124 141.8324431042812 None None 51112 ONG_20190507 0.0 0.0 0.41858632720318334 7.317385720258818e-05 3499973.8239890295 611.8369573143143 78010 14683 249396 MITH_20200913 4605342.210309099 441.65441619579775 0.0074325576547553795 7.117982880177911e-07 1062045.9819291085 101.70960614744045 None 2105 363135 LRC_20190812 35472597.09709999 3070.0866686924155 0.036865128953114966 3.190607685949159e-06 4375347.235425218 378.6780872460379 34693 2448 581854 BTG_20190803 310070948.29990274 29459.119212715206 17.670470752591275 0.001679208618976734 9881260.84319114 939.0071496431779 74965 None 277231 VET_20210207 1932650267.1857247 49285.68146590956 0.029954451015724592 7.617444717087685e-07 446277763.52435607 11348.884979824024 161837 77934 98520 TNB_20200321 3528625.2423392055 570.6100917614638 0.0011434231517105985 1.844084531214677e-07 519837.01127258205 83.83802530205078 15135 1446 1775001 REQ_20190513 14309484.246298073 2056.3927243294042 0.019604867195953016 2.8173836016229407e-06 322039.7827375157 46.279813777171874 42029 30149 371026 STORJ_20190807 22782591.169471 1990.995022076881 0.15868423922046312 1.3830239734229214e-05 4076780.377718407 355.31474483305993 83789 7774 204651 HNT_20210203 160039046.3379861 4494.346050969276 2.35131413179765 6.618625438301181e-05 2994900.426483726 84.30232217738444 20907 2984 66241 REN_20211021 1067868308.172704 16110.59081960684 1.0661674957432052 1.6090507443104192e-05 65218022.982479975 984.2647505330515 99833 1201 86593 RSR_20211221 383054380.87457603 8119.2265790264755 0.029017042721056204 6.156857673633908e-07 52804815.06205733 1120.4164874586957 None None 97056 DYDX_20211021 1144057556.1714566 17252.770403333452 20.10691198922307 0.0003033835630633202 288470875.01288307 4352.598845029502 83641 2031 17153 TROY_20200319 1758416.2950725432 326.1380697086585 0.001509370210362698 2.799468409516382e-07 566414.1150228332 105.05430747368268 8779 None 356286 SXP_20210708 181531337.0617311 5342.646087648075 2.100291373700777 6.182592648593014e-05 140415436.2547342 4133.385752129367 None None 60641 SNT_20190329 82993484.36297856 20614.057062488508 0.02370931788294826 5.888916592424088e-06 18335852.563861754 4554.256133923837 110607 5756 348070 STMX_20210314 150750757.81679636 2454.5256064183 0.017685713813438704 2.882600555115701e-07 117165002.0982177 1909.6763842905725 28588 1532 161856 TNT_20190520 8514448.069979833 1040.763113995099 0.019800245480119123 2.422306950033849e-06 934788.1224271482 114.35937842477446 17262 2505 965063 CAKE_20210710 2829594699.153962 83257.7164637062 14.633289626654474 0.00043061085400150585 156748892.24149975 4612.617946750354 959459 None 824 ZRX_20200107 117581394.62036546 15154.311057389048 0.19431938634143497 2.5062088158524715e-05 28307859.588554695 3650.969087257863 152036 15972 131322 ASR_20211120 11830507.233621405 203.45384258176531 5.557220150479107 9.527950291401606e-05 1949283.8268744661 33.42080915166155 2036323 None 72897 ENJ_20190608 134990622.26099566 16777.460252603665 0.15475758811074336 1.9250194996880646e-05 14842008.050122336 1846.1876577300636 46222 12558 19644 BQX_20191216 3266398.9742687074 459.00638856039035 0.023193219523642863 3.2591803806453566e-06 366184.46336641983 51.457332928030326 9129 4 315827 LOOM_20191213 14762224.60025559 2049.1385315315474 0.017711107595028062 2.457346431398037e-06 7946066.426611702 1102.4854246025534 21193 None 262438 JUV_20220112 21848134.01867899 509.94262731794026 8.06733354384071 0.0001885640052655274 7698835.253963868 179.95081069571492 2796699 None 38699 REEF_20210725 177126299.56104836 5184.343177537464 0.013986844166979557 4.09319036725464e-07 16491162.816038368 482.6068552532749 185871 12501 50076 KEY_20191024 3453821.1938155503 462.9301395925879 0.0013226475549648288 1.77232371312089e-07 87184.72695557764 11.682595142244772 23635 2796 382534 MDT_20200719 7483309.810969903 815.6237895169693 0.01232866481343012 1.3447531503178984e-06 7355514.000922155 802.3050974808256 14140 63 598192 DGD_20190901 31323608.80049327 3264.009307766536 15.661812231152748 0.0016320054698860031 1346867.9568262114 140.34747960918293 17248 3363 548048 CTSI_20200506 7427181.954968165 828.0339789161405 0.03733595106050625 4.1559776158077775e-06 7306807.210483118 813.3428062560502 14266 98 291799 REN_20201229 299050566.8653586 11029.1615829101 0.33602267634025906 1.2379828241667815e-05 129265347.42555085 4762.425012969596 30830 981 102602 ARDR_20200501 37886318.62852495 4378.170781867799 0.037723938705731416 4.3764772280878055e-06 2589597.8344354243 300.4276950166461 64041 6335 1091429 SAND_20210527 263955993.21302414 6737.098973335432 0.3826042561377609 9.75944722255944e-06 173532395.35531363 4426.454297635179 119760 None 20969 BNB_20201015 4566346921.865745 400046.53061419184 30.875864202483214 0.0027048972018016483 340246039.76171505 29807.44295414854 1294255 74079 623 SCRT_20210707 76212118.93414907 2231.2782510343704 1.0890693545477417 3.188758077697148e-05 3200357.478898447 93.70537991672538 85244 None 51837 ADX_20210421 141852697.01666662 2510.7317019409725 1.21245052311079 2.150347688353708e-05 6537191.872586078 115.94069336102395 58034 3835 11197 EVX_20190618 18854958.274653815 2022.7170875590132 0.8948769115961988 9.604427365173378e-05 3378435.842995758 362.59670175279643 18081 2907 694179 CND_20210704 21945043.504688434 635.8394386333239 0.011374819689180226 3.295759684494789e-07 76603.58667287404 2.219525403855924 36085 6257 150163 ATOM_20210527 3604828465.7273498 92008.08763566175 15.143508321740502 0.00038655119813172035 756677313.5319842 19314.84540639539 152058 29250 40023 WNXM_20201106 32265836.004864205 2075.830819589756 19.805185732780988 0.0012711417666659136 15024323.32671231 964.2951676472508 14473 None 69573 PERL_20210124 0.0 0.0 0.03666314278123289 1.1440317668095126e-06 2962091.285538758 92.42869731780294 13702 504 443333 CTSI_20210114 10411260.401307162 279.43077797513786 0.05012216030392055 1.3410339908609724e-06 2190829.2839764673 58.61631901281479 18906 175 553409 NMR_20210111 145776107.36855382 3781.505698576512 27.728502853917433 0.0007209353488556103 14335042.307267426 372.70814010752537 22275 1983 2602153 SKY_20200502 8387061.8712657355 946.4573470295385 0.4644930872757122 5.255953105515869e-05 238028.26877743023 26.933994342497016 16101 3829 441501 DCR_20190213 156232142.25585532 42980.00669950331 16.783455173092086 0.004618831175668784 1729484.2017730721 475.95655760937143 39723 9339 257134 AMB_20210125 2971921.163054242 92.39686768421286 0.02091117484643039 6.481232558482592e-07 748176.2650140721 23.18905754413346 20388 5475 518256 ZEN_20200316 45721282.86547734 8460.637210688068 5.2565449994419415 0.0009782157695270818 776959.433363277 144.5881220610633 None 5079 39151 MTL_20200903 22427187.214816056 1965.8207446434863 0.3473900695794746 3.0436870097544275e-05 3996096.494849344 350.1213205611098 40574 None 386727 ZRX_20200321 96403173.81242926 15599.938013160334 0.1504655505666239 2.4288822821747994e-05 42967061.4453045 6935.93542632246 152731 15966 132419 ADA_20190314 1437571918.3395214 371811.72857339156 0.046196136347646 1.1949967340323351e-05 53000333.076304674 13710.069701973545 148218 71672 114984 STX_20200107 45059401.784751505 5807.438339353352 0.0961921143302326 1.2401293442257764e-05 694348.4161650264 89.51688524558274 35019 None 32309 SFP_20210427 248389259.51599795 4609.392924200301 2.2987513418538996 4.264361117308308e-05 41534491.65143961 770.4968693252538 None None 25245 LUN_20200325 1521451.8581999466 225.122050709436 0.5527746082504286 8.181488648097826e-05 2256019.181402536 333.908161609583 29572 2147 2364106 EOS_20200520 2482233677.3889256 254950.29646137747 2.644626196231764 0.00027132304441485533 2211036053.2744956 226839.25393321228 1523 71270 92987 XEM_20200520 354801488.1660759 36348.46819256658 0.039424691550205226 4.0385182269029085e-06 8792764.848909827 900.6980070338353 209311 17901 220843 ETC_20191022 525898029.2318188 63991.52318342814 4.591199292787975 0.0005586593211108475 582047497.304333 70823.81725600318 229730 24979 405893 NAV_20190130 9472646.294531638 2774.8983875048616 0.14787841507795563 4.331921226526517e-05 143585.77576754874 42.061734942643675 48163 11475 776455 MANA_20191220 36165970.45066055 5063.012217834449 0.027292753859275976 3.819496127611956e-06 21034536.617159605 2943.6872354325446 45885 6407 73772 BZRX_20201111 21291932.933596876 1392.7839898072775 0.14779544139975007 9.674884079133136e-06 7877148.367480663 515.648497732604 15404 None 79091 GTO_20191015 9046413.743000511 1083.8518881885202 0.013674331156030346 1.6382118564288827e-06 2349483.2997202966 281.4727356069672 17244 None 746491 VIB_20200117 3683729.6257245378 423.221769719688 0.020170924437390013 2.3148953249985845e-06 993411.0568534582 114.00779465760233 31726 1111 None SNGLS_20200901 10477738.798705084 898.6308609862838 0.011772740223264138 1.0096975966138016e-06 237181.85664638842 20.342073814133503 9072 2123 759166 WING_20210804 31612334.280099884 822.7607205253425 17.358726945524072 0.0004519433699486666 4382110.992146912 114.09050994898166 14267 None 410110 VIB_20190528 8573276.54153634 972.1353073008484 0.05026611221863119 5.711762023559492e-06 1624565.6587987863 184.6001615232636 32927 1122 1724143 IDEX_20210804 26249671.434225082 683.1889853946053 0.044442110040807496 1.1569529535981876e-06 1636616.3387868896 42.605720235333365 53263 1975 8041913 MATIC_20210614 9166071244.578936 235507.69305948762 1.4716437917918255 3.7698140509671454e-05 1862759356.3061032 47717.09318613842 469949 42900 10681 TNB_20191019 7440846.657181606 934.9483225258047 0.0025813255089441518 3.2434986889237633e-07 332971.4471005253 41.83867739180849 15492 1464 2346363 DCR_20190929 187332278.78268713 22866.985962575112 17.956933496693434 0.0021876029561897475 10402500.300853478 1267.2843285910797 40573 9627 165659 BNT_20210710 751603404.6842428 22114.700430682882 3.2585649121548514 9.588913056750195e-05 43098435.76293192 1268.248951773677 124409 7571 36831 TFUEL_20200306 0.0 0.0 0.00299917430147485 3.310789438819976e-07 738827.2741574184 81.55916564067839 68544 4028 385146 RENBTC_20201129 296219738.9415092 16737.281113266883 17654.866865840137 0.9966447700104186 3441513.3636715994 194.278796939602 28511 2010 94247 BQX_20191108 6239258.505237103 676.7551326794489 0.044301933832192365 4.805308368517768e-06 1641727.9638070073 178.07369658384604 None 5721 373048 BTS_20190305 114599041.27146664 30865.222777603656 0.04250221226259748 1.1447218366500387e-05 8783424.35061979 2365.659837327179 13789 7211 158492 KSM_20201101 272399555.3062103 19746.677890546278 30.342295231322254 0.002201791296048751 24470404.950530488 1775.6970664252012 14026 None 170112 YFII_20201201 80536869.31815587 4092.076363003329 2014.3781098801285 0.10254537046887842 142082519.00277784 7232.954169243993 12437 None 77948 DENT_20190627 149042720.13064083 11466.637346825322 0.0020760463804738237 1.5919730343223102e-07 7329313.494287349 562.0331777143167 45465 9689 252434 POA_20200319 1682692.1650582694 312.66593609889605 0.007598407107973102 1.410309386761381e-06 858789.5303582433 159.3964259490314 17403 None 758180 ETH_20201101 43692767478.3082 3170569.477377952 385.8445887975079 0.02799884619028014 9009356073.612816 653764.7081295045 498830 490458 9859 BNB_20200410 2271676119.4907784 311670.8974211455 15.028759187793476 0.002061148634019674 365221668.38892925 50089.04151752202 1133680 61390 1688 STORM_20190605 18456271.419634957 2406.635887019647 0.003214008557886341 4.1841169462361075e-07 2063050.1911188106 268.5756154698178 26939 2577 4240387 ONE_20200423 13100046.797603998 1841.8152161657717 0.0025232609652611126 3.544317162472684e-07 60407702.445267156 8485.21256699057 71898 None 276485 ZEC_20210212 1527674324.8260875 32050.35839411714 142.12329600397328 0.002976642669850003 2162089087.4746003 45282.98185270083 72631 17268 125065 ROSE_20210421 239321599.98455566 4237.738795286564 0.15913015367241998 2.8227593606547623e-06 38120746.14806902 676.2118337805372 17860 1358 227579 TCT_20200905 10047792.761838736 957.7281709179761 0.017440569972818152 1.663374188061775e-06 5079751.108440698 484.47538633928735 None None 525749 XRP_20190221 13691846452.729155 3444100.4933744334 0.3314494864449227 8.337409740423433e-05 823368856.1067202 207113.41551606817 911965 197619 30397 TNT_20200127 19859564.97086583 2312.9077650396193 0.0461913693618607 5.3750107159683935e-06 629337.2658653053 73.23217723822864 17716 2566 695200 VET_20200321 180422009.9351949 29184.738391744108 0.002894169012299096 4.667644081123561e-07 101492771.76882152 16368.502786478135 118620 60929 265359 NEBL_20200905 8559072.79710207 815.8274487761507 0.5084902705257264 4.849667139269368e-05 175788.00713079475 16.765577850259632 38811 5948 419992 HNT_20211207 3132661263.971408 62064.00959587436 31.091547930006023 0.0006160475340286814 32578031.108002238 645.5006927534007 125206 74975 2046 ICP_20211204 6990270984.418285 130185.16937414376 37.97171400787706 0.0007081136341479168 277516449.90255034 5175.251816011188 None 25167 29488 GAS_20210110 25897741.774939448 639.9929782124937 1.8537442082624198 4.60017165403788e-05 9034261.3622693 224.190332456039 None 101330 181319 KEEP_20210703 113181338.88906626 3348.5375687528876 0.25963888316199646 7.667708772840586e-06 11769813.581180103 347.5885497273721 21555 2723 132559 STORM_20190826 10759033.593708746 1065.544095437519 0.0017259467683332283 1.709328604673491e-07 7011395.350826031 694.3886597044666 None 2549 2477338 HARD_20211007 71520488.15573762 1288.5273527663132 0.9165664869880567 1.6520842402775907e-05 13621303.40487996 245.52000325902054 36539 None 50736 GXS_20200422 25221709.908052515 3682.932391268673 0.38859158460453547 5.676633246176039e-05 11281372.012526792 1648.008190757974 2 None 503557 TCT_20210120 5804452.664872803 160.28715433130805 0.010047232046506654 2.769215897007976e-07 908137.4214462213 25.030063727960723 None None 2451414 FET_20210723 184322598.98553777 5699.093762452227 0.26870750528346204 8.30008753329309e-06 19690154.117559094 608.2078077698947 68661 3013 163095 OGN_20210110 34841319.936149135 861.0094387599385 0.17381480386653556 4.311957380105714e-06 15991868.236415483 396.72256177119556 None 2493 203625 KSM_20210220 2022470445.2564025 36204.87899756207 226.64206316468727 0.004051966624223107 410110361.5791834 7332.0612871381445 36692 None 97488 DOT_20210708 16988955419.758852 500001.69489048887 16.84380170366391 0.0004957477505298557 1071108684.8823645 31524.93305522112 494774 27191 19390 QTUM_20210729 684294562.1059823 17112.92551322264 6.618920518948879 0.00016536759209484776 167635329.97056323 4188.213287634345 249327 16752 143849 HNT_20210108 88789313.18855473 2266.6751734809645 1.3870968436671784 3.5149821171980246e-05 2581853.498146226 65.4256328002045 18600 2128 70077 AE_20190305 110922243.53081834 29871.884083142962 0.4168889461325743 0.000112270162214632 53038066.45789398 14283.401802849858 968 6326 450072 UNFI_20210401 72067252.81053725 1225.277231549329 29.29130701573879 0.0004984767780168283 51688693.83161299 879.6334539539796 16009 None 94212 SXP_20201208 70018012.98637071 3646.4338397351603 0.9108790361082277 4.7441914553406004e-05 20811286.667881414 1083.9279912099728 89986 None 91691 ETH_20211225 482498690510.26416 9483660.000333125 4055.1173669313243 0.07977926135596482 13351470832.627863 262673.1570654435 2008211 1190130 3727 ASR_20210418 0.0 0.0 10.554277518781044 0.0001755821905181318 3653281.298619877 60.776413340388174 1957819 None 190056 VET_20190411 396682964.8592738 74701.30218022772 0.007161614665402014 1.349311361690809e-06 17451247.820474602 3287.968993026873 106630 55023 666986 XVG_20190812 80770728.92690606 6998.88168004127 0.005076687465157297 4.397287802969138e-07 633951.3212298797 54.911129189118725 303542 52861 396565 C98_20211125 587385114.1869425 10267.634999515234 3.1744785982278474 5.550502633826323e-05 32100859.830466248 561.2761325168776 None None 31526 ZIL_20211002 1186959283.8165405 24646.185757708845 0.0946790324991461 1.9658565565985046e-06 130755852.31137753 2714.93320954949 331167 37454 65872 UMA_20210711 561462566.1212077 16652.091175608017 9.089928978728741 0.00026968648207254876 12985967.783013163 385.27693405565657 41423 None 148626 CELO_20210603 410175487.2071216 10900.521032189554 3.4806930232990525 9.243951374051186e-05 20562587.39149052 546.0968740973776 None None 77496 IOST_20200625 95592430.5139916 10275.088394005166 0.00633753209386507 6.817341279341895e-07 78310333.39294717 8423.914238723397 None 52175 434234 EVX_20201115 5797455.354626382 360.18382458843433 0.2674816270117536 1.6621887156417656e-05 141589.825737812 8.798698184258223 16670 2811 1244228 ZIL_20210207 918000720.0978055 23410.490684431803 0.07839109320439681 1.9934927817007635e-06 144528184.06974226 3675.3651456820176 136826 16829 35643 RDN_20201115 12718302.017759977 790.1616110544087 0.19045411650845387 1.1839698920169327e-05 90485.42166303282 5.6250826645026715 26381 4383 2012801 COTI_20200903 46427372.49845767 4069.610632494702 0.08161927178841404 7.151140433828043e-06 12260418.371096734 1074.206760585724 30165 1163 143053 GAS_20210206 32532351.47971797 853.4827140069162 2.337201503146761 6.122982956929426e-05 6596499.3993930435 172.814596189067 None 102687 149199 KNC_20201231 161361258.86044502 5587.873935687465 0.8052783021032818 2.792831522142013e-05 24292592.072565235 842.5052148753391 127202 9312 143356 EOS_20210814 4918681659.044176 103231.04086260671 5.134794470302865 0.00010755934320835042 1761516290.6788623 36898.75736448956 None 92048 58453 CFX_20210613 272343725.1201882 7593.299555517502 0.3217662118977558 9.015940873699514e-06 2952265.081565222 82.72294117487282 34451 None 132746 DOCK_20200914 10878620.54524719 1053.619713338909 0.019394675608424276 1.8780165568188723e-06 3150420.3200196144 305.06009182053737 42909 14916 214748 DASH_20190426 959474048.7507032 184873.21059249536 109.40949715213831 0.02106643132401364 582621681.5779709 112181.84858099208 320845 24444 94657 BTS_20200305 69214628.28680731 7903.507793810591 0.02553860624954806 2.9162126349934557e-06 12233786.238847423 1396.9565000896341 13351 7044 137133 FUN_20190723 19261661.199742753 1862.4406874261454 0.0032384643937255373 3.132460780735611e-07 182116.12948452125 17.615498081587955 36153 17517 408436 WRX_20210710 479558756.2457302 14139.337655402816 1.1043990123224332 3.249669310557629e-05 8482051.191112975 249.58245288878663 287761 None 1268 AERGO_20210127 13063687.745722843 400.85763235948326 0.04942187606468284 1.5173237987071105e-06 1648839.8127814946 50.62179114598518 11812 None 562212 CTK_20210513 102573996.45140636 1990.2715067824995 2.125778092336648 4.2378010590248405e-05 13610767.875898479 271.334654950849 49190 None 214700 OGN_20200308 11651357.909369515 1310.852294168315 0.4096494049592753 4.6025789659443216e-05 83493607.97444206 9380.84906756233 65037 2162 120835 AVA_20211207 98226353.78743483 1946.0649538081884 1.8622635218972345 3.6898865664683434e-05 6572830.924574389 130.23398808535055 None 10970 48035 ASR_20211011 15720331.274959061 287.3130087020225 7.356864245730324 0.00013441202626922357 2642861.1899152226 48.285834265728255 None None 69254 LINK_20211221 8853744179.217165 187664.0985013001 18.9260065679481 0.00040139141242229957 678479638.5924608 14389.506812050366 672219 73681 18014 SNX_20210219 3361275127.417773 65031.178916983714 23.177227845715425 0.0004482501125435498 239341580.5857135 4628.892253554387 84609 4816 25863 SNGLS_20200801 8510663.42863631 750.9081962539185 0.009629441504713393 8.50207873123578e-07 256613.27891029464 22.657038829385648 9106 2128 644870 AKRO_20210310 112565258.22823048 2059.592699800853 0.04294373967197766 7.843958875301684e-07 29516972.810472608 539.1470855059853 33763 None 152537 TOMO_20210707 181882458.47827518 5325.011028730144 2.1674769728875587 6.345558446375751e-05 19060582.31678749 558.0222564117898 50128 2192 118140 CTSI_20210707 161742631.11249322 4736.147757844752 0.4333025500138065 1.2687549793923432e-05 17218728.26511838 504.18229074526613 46900 3853 120521 POWR_20200403 24435728.46681146 3600.871802052365 0.05709015944251115 8.374544767705042e-06 2243718.7380790617 329.1306803426098 82336 12803 242937 NAV_20210115 15374052.221196918 394.12507190476526 0.2116100983666236 5.3941877519706744e-06 1610172.5122755158 41.04517181041289 48193 13627 819464 NXS_20210115 20760359.376670696 532.2069949013154 0.3100577559098797 7.903733149988385e-06 169367.2847268466 4.3173692555788925 24163 3525 514648 DGD_20190805 39344893.6933565 3596.2166890528824 19.640669007852193 0.0017936775688199248 1731335.944640264 158.1136796690254 17194 3362 575541 HARD_20210212 88003841.97663274 1844.9814323522812 1.8274697815713268 3.834055412295294e-05 20968889.778737597 439.93003964675677 16419 None None ATA_20210819 92697155.53737521 2057.900571898351 0.5309332166191435 1.1788857506438767e-05 10566244.39957469 234.61321632499522 None None 88669 BEL_20210731 80375960.38196544 1925.3678119206759 1.6701253062809327 3.9982478056445685e-05 12121450.264267841 290.18518393844647 32868 None 459476 DASH_20190520 1519184135.1399274 185642.52223477972 172.5337875075832 0.021085511099550057 759341783.704018 92799.85004641187 319904 25946 107339 EGLD_20210429 3157167080.8243937 57679.27636342777 179.86308347247538 0.0032847631141943883 132291183.43629684 2415.9777053481366 217182 8172 24132 ETH_20220112 387505881839.82996 9035752.966618333 3246.413723028553 0.07588093030200903 14922195360.075489 348787.9742618042 2086334 1206545 3768 BLZ_20190207 7489352.442102955 2198.159020759605 0.0369785982071409 1.085339293968058e-05 106932.40724700401 31.38516574740152 34818 None 995474 ENJ_20191022 50977441.282253824 6207.850543998623 0.057693226384302784 7.02576505543277e-06 1857824.4527256992 226.2421247191698 49330 14085 31815 POLY_20190901 18121955.594300255 1887.9372065836653 0.0359685215661609 3.7480224557236137e-06 7931263.962825629 826.4603086413368 35271 5059 289476 CMT_20190325 26483670.234167047 6631.654472178292 0.03311039345498051 8.297568104010875e-06 1277473.3432408276 320.1388132403715 292482 1639 1091095 STORJ_20210725 118563506.25695483 3470.2114362261236 0.825036589710224 2.4147777187203812e-05 20057920.798715807 587.0699655346065 103650 13687 53900 MFT_20190510 20920046.706920285 3388.3344519257457 0.003141760575245035 5.089258315156771e-07 1313931.1621887544 212.84037827074667 18011 1978 690074 XVG_20200107 57726174.33342512 7439.955996663044 0.003578439708881981 4.6081210163874623e-07 2858241.620297585 368.06888901089616 298795 52169 314927 ORN_20210703 155855799.19007385 4608.634783714138 5.409356634461757 0.0001596940839619048 3120922.605236429 92.13533331932442 None None 65422 BLZ_20210310 100252928.25765426 1834.3155110476157 0.36512982882721207 6.668626237607654e-06 90333902.55872661 1649.8324299702408 48735 None 336789 XLM_20190807 1553365349.246411 135882.4594977796 0.07952245510622 6.9308371378049e-06 152755686.53682312 13313.532433652032 275625 103288 68303 SNT_20210418 934835702.4473873 15507.54156660431 0.23850155480213472 3.9677396543364315e-06 36270305.50832798 603.3970284163614 129175 5914 113848 ARDR_20211111 319173235.92643327 4924.872117614922 0.32002426247142507 4.926762478497477e-06 13762690.85812827 211.87615088728143 74477 7386 None NMR_20210202 145662914.8508696 4362.505110442581 27.888318759317194 0.0008351117944932103 10500690.66799865 314.4417095505531 22782 2011 2472794 QKC_20200422 9969551.542379037 1455.8308312952192 0.002669135296551478 3.8991328590828204e-07 4627280.939232697 675.9636044557418 49802 9194 700112 ONT_20210422 1542766295.7478945 28473.036565426435 1.8913452781129643 3.496790415503083e-05 961713380.2217733 17780.519344282904 123356 18447 153956 GO_20210711 23687740.776302174 704.024945625377 0.021790042779312402 6.464128871013141e-07 1711432.7077087106 50.770536289168156 None 1098 133372 BCPT_20200713 2910414.7874283567 313.6284009 0.025086513369905666 2.7e-06 124672.45506446048 13.41819103 10467 3171 2322058 BLZ_20210804 51393989.36439677 1337.6094073110405 0.17329432855248655 4.511338122256518e-06 8330510.839322223 216.86659593088135 65317 None 416953 CVC_20200323 11910998.538095934 2041.5595854186272 0.0177383743715777 3.0421384359400616e-06 8110503.296619511 1390.9546216928943 None 8058 104560 WAVES_20210430 2287003638.772032 42672.53517681937 22.870036387720322 0.0004267253517681937 699239359.4509346 13046.903667896144 180839 58256 111113 RUNE_20210804 1868744717.9587023 48637.02050605963 6.818828704025158 0.0001782101210137811 162923705.30625933 4258.011822690737 None 6297 67412 BRD_20210314 20192349.827190902 329.01320740013165 0.2529763315617633 4.123247928246372e-06 1303703.9583461075 21.249002276660708 635 None None ICX_20190723 130021787.15873511 12576.145758908573 0.26455462366668725 2.55895042293431e-05 11718528.749322647 1133.4949918330626 114102 25735 240617 DUSK_20190915 11096272.86957808 1071.7205169640654 0.08932861341632603 8.629498420442127e-06 1473758.6473213024 142.37093169575334 20414 13326 183070 SUSD_20210117 178322556.4742527 4916.661066461082 1.0006270651434037 2.7644788153197015e-05 29290646.900918465 809.2262908458723 58495 3238 36126 TKO_20210616 148694296.03215644 3681.7577208088605 1.9814723826122267 4.907468907223548e-05 19927095.54415451 493.52997625578786 282796 None 20731 SNM_20200417 2951836.597149462 415.7214136 0.00673442191186632 9.5e-07 21598.22488756418 3.04678173 29889 9668 7419106 BTG_20200707 163344292.93051335 17498.422378386902 9.433864403368515 0.0010097078131713043 41934007.442889936 4488.202622199128 75425 None 243493 ZEN_20211125 1503161810.0337217 26279.536470000865 127.66660859724405 0.002231974810853752 240774721.2907757 4209.425776372859 None 8837 2249318 FUN_20200224 24206510.684568133 2432.884584307759 0.0040065777940677064 4.026434924368019e-07 442445.1973177512 44.46380143265446 35049 17052 372623 REN_20210418 972058930.5976229 16131.43481674236 1.1031814087350136 1.8304013766259023e-05 221311632.67916593 3672.008192956908 None 1144 63508 ETC_20200313 448904627.1228202 93245.8766084053 3.862278002237213 0.0008059722760834024 1764323903.582274 368175.50458430796 231192 25306 362649 RCN_20190906 7009348.108183676 663.2059662828142 0.013821549373346986 1.3077964700521365e-06 1171635.0819949224 110.8602359281778 None 1112 1734382 BCPT_20200901 3616270.0314305965 310.15201985231704 0.031132158493438953 2.670072133767832e-06 176116.85548452713 15.10478973744 10503 3191 1330981 WPR_20210325 25104468.564423293 474.92931004137665 0.04112114566499086 7.799217705053904e-07 2641527.1438664948 50.10036791451496 33019 None None VIBE_20190103 5657255.875649679 1462.3455914233443 0.0282580010229938 7.304418277468457e-06 112151.08542822048 28.9899642077736 20555 None 1483257 OAX_20200411 1650531.9656413223 240.71978630636227 0.0315673691919579 4.5999398535658665e-06 110924.93603751052 16.163780736064 11987 None None ARDR_20190614 102975761.19937441 12524.115051033174 0.1035565292712885 1.2592993992114528e-05 3784010.3862422914 460.1546652380892 68138 6560 1048625 DLT_20200901 4763950.550319371 408.583671245809 0.058090019435506006 4.98213261304912e-06 372284.56864988327 31.929255814155 None 2556 None HARD_20210108 22463959.063487012 572.536898767782 0.5588257973565582 1.4160962828984252e-05 9470285.994338356 239.98242131994473 None None None NULS_20190228 16548111.804006893 4335.2074515396225 0.4163542193628118 0.00010920329927729181 3903863.9116907404 1023.9233788446168 19569 None 499055 GO_20201015 9307396.723783998 815.3997559579092 0.008917821030696077 7.806512642556593e-07 425401.17765024066 37.23891363208772 12146 678 655506 ELF_20210825 156872701.2605065 3264.4562372039595 0.339860460751487 7.0770112451154635e-06 49272138.497429624 1026.0077840363203 88279 33386 746184 NEAR_20210107 379064062.75014615 10324.541061919559 1.5447075375867199 4.193970681962768e-05 42837677.192228235 1163.0678161140536 34602 None None OMG_20210421 1103462817.5863237 19531.863836471126 7.85198105683618 0.00013925920268683764 605049954.5605315 10730.893725787664 319310 4466 121524 AION_20190507 58667739.82262901 10255.44654149631 0.18950490341166645 3.31277059002086e-05 2480969.5170528702 433.70291231868083 68816 72513 275245 POE_20190930 5947382.3328260025 737.8567952781896 0.002341345935540745 2.9057837657837526e-07 312914.9687896654 38.83506587290103 None 10701 709572 QLC_20200107 2943246.3315901654 379.4251835426518 0.01226265355155491 1.5809275649301457e-06 88983.02814954233 11.471882608534498 24582 5698 940522 ALGO_20200421 130632829.54916544 19080.57677618835 0.17868281342602435 2.6097747104431733e-05 78966560.879156 11533.562159766016 16853 846 305108 ACM_20210930 17557776.735664822 422.3968136408357 8.81761359882117 0.00021213227707599701 11100598.28550469 267.055838274069 None None 34977 SUPER_20211225 351094446.7459858 6905.047296483845 1.2226470932542117 2.4048862161218466e-05 34160503.02086257 671.9201583508783 225059 None None RLC_20201115 70163603.38682756 4359.118521647022 0.9975674828878963 6.20144046580353e-05 7300668.910457412 453.85063552469666 None 3853 531109 FUN_20190615 35390385.27573933 4068.882570017811 0.005845973234679209 6.72803074353739e-07 1094773.8628328817 125.99565394289729 36260 17644 466451 REN_20200725 133929844.00890136 14040.338821614134 0.15264311131269148 1.6003990496319796e-05 10383543.34093049 1088.6710020340067 16927 920 163395 BUSD_20210613 9608886182.02075 267914.5532018487 1.000805622836949 2.8052395954186995e-05 3644542074.5074167 102155.83826953854 22210 None 39810 PSG_20210107 0.0 0.0 9.942461084850551 0.0002693749461191008 1807187.2327937754 48.96282311858478 None None 36186 DOCK_20181231 4517416.468614122 1188.8573566597538 0.008860398604596519 2.3312680699880094e-06 233984.6848549983 61.56393735894508 97 15433 149268 SNGLS_20210620 8283984.4636016805 231.90713716650245 0.009281366777226449 2.605787141762269e-07 97642.09821283605 2.741347585163847 9491 2139 2122104 AVA_20210210 73657102.09820233 1581.4175006145056 1.914587626045408 4.110803978226658e-05 8996153.221852278 193.1560715740771 44665 9271 69143 BADGER_20220112 120102340.13826542 2803.2280845942482 12.041082911236389 0.00028147517309007623 18468893.71799892 431.7331833339379 None None None HNT_20210210 270565928.99228376 5809.048727004723 3.962727488439902 8.508357466904748e-05 7994693.476993689 171.65376660148186 20833 3555 66241 RIF_20210422 212010470.982897 3912.8297715519666 0.29389023278738996 5.425273574488946e-06 2947934.65886364 54.41947441520834 42432 3203 604908 STMX_20210125 23081348.28780291 716.8274699133269 0.00276982394764462 8.585433257038204e-08 4479648.795397605 138.85260029094192 22207 163 183695 FLM_20210616 0.0 0.0 0.5499821484382839 1.3626175777183448e-05 17724783.90853761 439.14338281004837 22767 None 89339 SC_20190905 78144407.778644 7400.258627614408 0.001860037991468541 1.7608783888163467e-07 5394049.500127956 510.64898870596966 109064 30642 202127 STORJ_20190130 17434439.073830977 5107.644155288854 0.12798329537952885 3.749096462681459e-05 298598.9502954632 87.47049878606111 82773 7555 205558 BCPT_20210104 2190219.076055281 65.03049915364832 0.0190975342569349 5.698333991070578e-07 140793.01741487277 4.20099069359819 10390 3210 2139942 NAV_20200713 8734057.00606494 941.1882952264649 0.12676950196614678 1.3644047815700345e-05 418657.9468765217 45.05964728907439 48504 13833 884815 KNC_20200414 82777648.39355649 12082.116843783057 0.46163231803905164 6.741700288031477e-05 68035936.02822593 9936.000396730895 104964 7324 125566 ZEN_20210617 991889519.6324178 25932.494323789255 88.66185810616238 0.0023177958046530674 91312299.27702925 2387.083563307519 112796 7371 1188798 DOCK_20210112 11151213.3006384 314.8013980563234 0.01969720185332554 5.533422458906088e-07 17643336.268714786 495.6441726409779 43068 14866 239744 OST_20200511 4400054.429797845 503.4661538099252 0.006380837330279223 7.288200222344185e-07 447714.8906974964 51.13804971087559 17715 753 852611 OST_20210127 11161922.161128813 342.5248786849199 0.016201846239215965 4.974203498382199e-07 1936048.845411684 59.43952804943815 None 732 753771 SNGLS_20200208 5098897.343670054 520.5448628815324 0.008821050100980648 8.998868751126878e-07 153943.05830562607 15.704631092452294 6263 2148 1210884 TCT_20210806 15287270.066195035 372.94522536852475 0.026400072524210918 6.443531501365454e-07 4495843.961374492 109.73118412373022 None None 566218 FLM_20210508 0.0 0.0 0.9825484182855243 1.714225850012495e-05 98952101.60894276 1726.3907542296815 20704 None 99101 MTH_20211111 12557188.369329626 193.75856091518918 0.03618482124544681 5.575081716997099e-07 613792.7434909655 9.45685120026 22278 2083 1290180 FRONT_20210823 64677966.20103676 1311.0208094458555 1.4035073692028321 2.8481443358350006e-05 20782432.152246714 421.73890724148004 None None 304891 LRC_20190704 52575008.13580077 4384.756325264829 0.05466846089366529 4.555214973651217e-06 6157839.259453618 513.0980668096835 34877 2454 719839 SCRT_20210722 62705372.32749433 1951.8589354863545 0.9013633419330828 2.8009217054403123e-05 2819008.318754581 87.5986543992677 85877 None 61178 PNT_20210218 66226828.108607724 1270.5203953588814 1.8882297991334058 3.622451111487832e-05 20563746.823899053 394.5026583775707 None 181 453797 BAND_20191213 4296095.424477034 596.066321862766 0.2736128637045825 3.800748513184025e-05 953066.3418290196 132.3901746660355 7589 989 441145 QTUM_20210221 691467690.3922114 12375.575089242302 6.761789552735588 0.0001202667798812105 761145590.9254085 13537.914560553847 201794 15515 134759 XLM_20210301 9196138609.16969 202712.66299427318 0.4054861444889212 8.981807375971119e-06 1743037489.2539632 38609.52387733972 419975 156776 27460 QKC_20190930 20664775.334673353 2563.4054669688026 0.0054319989254005075 6.746241263013706e-07 5589103.6443835115 694.1356606807551 50808 9237 326472 QNT_20211007 3889588032.1158943 70071.03928528016 290.93174015803766 0.005244394795944428 61396579.67947703 1106.747248632717 52957 8895 93840 CELR_20200518 9730282.723503986 1006.2301914517536 0.002565876492120231 2.65628328550928e-07 3221553.3124415735 333.50624020661667 19567 None 1477184 AAVE_20201106 350826610.4357537 22570.519795766628 31.113085197179263 0.0019969084166935585 132260262.53999819 8488.763804245511 73549 1501 15035 OMG_20190806 217608820.31026256 18423.383009676723 1.5507480339139943 0.00013129466834217358 99519420.1801387 8425.849319426832 None 40939 None CHZ_20200306 61274587.385792196 6766.084181489021 0.0128103234635246 1.4147795037266254e-06 9503438.070180316 1049.565175688946 19533 None 294872 ALPHA_20211207 340836045.2679747 6754.0374059560145 0.764251783347448 1.5131548624397862e-05 11329412.654448168 224.31293220641902 92271 None 52382 KAVA_20210506 434184728.414332 7584.319348728835 6.188680089022629 0.00010806629079081445 71640522.97097054 1250.9817079605414 96368 None 74239 POA_20201015 5344565.803356017 468.31529860365544 0.019198942470039684 1.680059708719369e-06 140533.24375309725 12.297773220252202 18110 None 251528 BCD_20190726 152250304.1895682 15369.780913105526 0.8101742005454003 8.192972128046651e-05 5216780.69868946 527.552455184598 21432 None 2927391 NMR_20210206 178791843.0644215 4718.283817336197 34.6085754204265 0.0009095043905649659 34947919.534537405 918.4222659165785 None 2020 2472794 FTM_20200105 22386785.72439952 3044.4876693441897 0.010663682551191054 1.450233626129679e-06 2827085.4039148865 384.4764036266104 None 2253 521985 BAT_20211021 1063881356.7827392 16049.434978795829 0.7131349952644187 1.076015232594765e-05 81611561.59182927 1231.3977579531588 216368 80778 25573 ARPA_20210131 26000032.76445591 760.8787094034511 0.026540579964665453 7.76847497488011e-07 16224777.426457468 474.9021218761574 23540 None 1157851 GVT_20190512 14141236.26857391 1932.1586196155945 3.1635426953006256 0.0004343629274678648 1703023.039350715 233.8296473812256 21444 5796 192676 THETA_20190613 137202169.8478336 16872.94321746747 0.13766101517222723 1.690728150917402e-05 10948533.61090146 1344.6794623777407 None 3999 222751 CVC_20210509 417093358.7652551 7112.345900913421 0.6062017904491394 1.0323424257089539e-05 96746219.47976841 1647.5574382899242 102441 9693 107274 POE_20200322 2470372.703439559 400.9276868737758 0.0009814884393067691 1.592768936064982e-07 16433.86212039268 2.6669030460943843 None 10442 698681 BAL_20210916 304062506.63492525 6309.251028554472 28.148961975986424 0.0005841314440050014 67315180.62399977 1396.8868086467533 98756 None None SFP_20210421 263558713.53363234 4665.125841679479 2.4287935202611872 4.307598893505421e-05 42558304.27807926 754.794933733218 None None 25245 BAT_20210207 523709872.5430358 13355.441694215086 0.3528553815902148 8.973145129514643e-06 266552206.1408103 6778.4473613938035 133411 52107 21155 MIR_20210823 329212841.7157594 6673.2219321056 4.232135998771156 8.587737682185042e-05 44131887.35053755 895.5125073868168 None None 15309 BCD_20190318 163884901.84952486 41153.96126613885 0.8710313626076128 0.00021873988184898695 4453654.154626357 1118.434795117795 20729 None 3287367 FOR_20210511 50036926.463895 896.3282116306337 0.08859381144181307 1.584528426097791e-06 14110234.962854814 252.36602911306923 27079 None 121636 SKY_20190811 14544674.020272586 1285.153942049241 0.9090421262670367 8.032212137807757e-05 627110.7827266714 55.410928660171 16356 3804 513361 OAX_20190629 8026711.125110464 648.3446341812571 0.17924738643150742 1.4458207286674712e-05 1388731.0112442588 112.01591959431522 12319 None None XZC_20200506 41193921.534046195 4593.927030456167 4.091531828680456 0.000454708180083702 50052978.72219361 5562.5862917647155 63643 4100 147349 IOTX_20190906 16950953.46172807 1603.7543520542774 0.004114243090375452 3.892607265331727e-07 1880949.77374437 177.96223009110625 21181 1765 585663 AION_20190530 63012298.930614404 7286.973093520993 0.20354015326209604 2.3538128991377378e-05 3754864.1075541344 434.22624132002755 68882 72560 289915 DOCK_20191118 5781041.773729688 679.63907575804 0.010349282917725295 1.2161902597910407e-06 1723187.3866497327 202.49941296404424 43879 15118 215050 EOS_20190523 6206566900.695008 809675.889723837 5.951457663673316 0.0007771216240227937 2523375566.947568 329494.0213681023 952 65027 118263 ORN_20210813 266078631.0721116 5985.35912656466 8.86241235139957 0.00019934374203657698 24229717.15853464 545.0031318061365 77999 None 92091 BAND_20210107 200123027.40420428 5450.736740592177 8.871921733556645 0.00024037040915263723 298355546.0796761 8083.462279978911 43107 2961 375522 ENG_20191017 22343307.40397273 2790.511460665137 0.2850174444665673 3.5599773327919844e-05 1152846.9010232594 143.99500506025 61253 3486 386456 DEGO_20210902 60922036.579952784 1252.6314366218837 11.23766386399818 0.00023096514497438452 21086752.791453 433.39122565498894 147596 None 237398 CDT_20190901 9546326.594427738 994.4785682456741 0.01415152856543225 1.4742206572372633e-06 234663.28259469173 24.445801532792473 19717 298 193122 MBL_20201130 5266079.581883623 290.3061716746393 0.0014919677127878395 8.215492954525396e-08 726664.5336775517 40.01364979659141 None None 719430 REP_20190522 224920661.3239608 28263.709353469116 20.45301143379607 0.0025702639096857106 22191734.984695643 2788.763684462804 125495 9965 279308 ANT_20210107 120821740.54268833 3280.380429627441 3.4876546235200276 9.469184867646006e-05 34223018.88899556 929.1748397430708 76498 2688 131856 TNT_20200425 22410627.280474197 2988.7558071085687 0.052240297681721254 6.969774208570124e-06 652500.8817206845 87.05509000338927 17563 2561 822007 HC_20200403 44382090.52019489 6540.186370435592 1.0017532634709718 0.00014694699810008575 34240739.07658316 5022.767585102057 12696 843 1040016 QLC_20210805 6849262.066558615 172.05740226819483 0.02907158397686926 7.309315652955268e-07 617393.3028669986 15.522795511472793 35096 5687 940522 BNB_20200610 2566693310.4844394 262580.9601961806 17.35802857503161 0.001777525811489342 198081099.2391379 20284.231307938622 1159446 64411 995 XVG_20200903 97501472.36894949 8546.467519789898 0.005960732425998663 5.223719421086327e-07 4516791.932177587 395.8314524270744 289414 51491 238378 ENG_20190729 34175103.992311314 3582.2282987757344 0.43229065688038437 4.534687743772153e-05 1449461.3376546884 152.047111320128 61781 3477 316821 DOGE_20191216 263303622.09773463 37000.39267279317 0.002151255132285127 3.025590261994422e-07 50404461.29072882 7089.03583557337 138132 145278 132211 PIVX_20210106 20575525.02134572 604.611295107239 0.3190866661556468 9.361000903744985e-06 603529.0654879523 17.70564779636784 64919 8720 359500 MANA_20200410 38948939.35270835 5344.164440171013 0.029297334993062387 4.0180404281421745e-06 24087594.212454684 3303.5403180953167 48039 6816 46518 XTZ_20200403 1174833710.838677 173124.59447260943 1.666871492217508 0.00024451306617287704 199453587.05378088 29257.809229684157 58507 22939 99470 OST_20190421 16817884.19438112 3167.233681832216 0.028390111568613458 5.345241279013446e-06 580572.5201794737 109.30919354875053 18198 750 1002831 SNT_20190224 78230138.48602794 19012.01579428717 0.022348379029003725 5.431253776343764e-06 26745360.51496644 6499.837867796468 109622 5761 300242 ADA_20210203 13649744225.9608 383283.09653650987 0.42529320536520604 1.1971417981547023e-05 5151435047.757959 145005.8016058455 189447 125481 26016 AST_20190803 6497375.709938516 617.4872571536866 0.03772834764495998 3.5845738707348805e-06 785168.4415194467 74.59892773682647 32067 3592 229078 XLM_20190901 1232189932.0816424 128362.99681492652 0.06272973863943036 6.536290160972483e-06 110403119.43015964 11503.743502263307 275756 103478 66255 GO_20190826 8554189.68674999 847.3552360215837 0.011102894237463665 1.0995990758793167e-06 477795.7795923174 47.319535470849274 10202 686 906372 THETA_20191216 94245235.39084952 13243.62156112234 0.09444077425477367 1.3282436036163515e-05 5306254.063848188 746.28761518369 None 4019 533259 REQ_20190615 21135557.36361483 2434.2584362917896 0.02959605451180459 3.4108121347378697e-06 3525409.8546325923 406.2876255113416 41709 29987 442629 SFP_20210508 274854803.1598653 4796.461598060747 2.543149652561118 4.436939632777364e-05 32838164.87823973 572.9153810087782 312462 None 22445 FTM_20200725 35257297.26569392 3697.654813355677 0.014524138425023462 1.5228222047402584e-06 5290407.387557549 554.6869360604792 None 2471 210821 NBS_20210203 0.0 0.0 0.014449645662461113 4.06863551880689e-07 4183347.6621146323 117.79193264105527 None None 745524 BAT_20220112 1589261920.4858034 37072.71944386276 1.0613451981247914 2.4805997432739197e-05 132846124.67124009 3104.9093484066125 250098 86455 22440 BTS_20210422 306802271.2418211 5661.908547439273 0.11298987546030126 2.0863264998843714e-06 91664485.47870134 1692.559128624522 5038 7088 102843 ETH_20200324 14944699607.313162 2307102.8316940754 135.58865798037067 0.020931633622065998 11596650460.730272 1790244.4223786786 452877 455486 19216 EZ_20210916 0.0 0.0 5.572002990032956 0.0001156270755328298 746072.9398663293 15.482086482228217 36695 None 171423 BLZ_20211111 81065791.23327309 1249.8195930784057 0.26228919615328405 4.0389170698975445e-06 21424202.13302539 329.9052228344259 68924 None 273750 CTSI_20210813 264558971.20121914 5950.632737603069 0.6954864543673955 1.564369461182352e-05 58064123.196637765 1306.0461573154719 49879 4249 132314 POWR_20210204 53087042.171534434 1417.0172755304945 0.12404522329582576 3.306993546257587e-06 13803847.705500636 368.0047813429132 81236 12546 369771 ARDR_20200711 52170117.169717066 5618.562533775299 0.0524295220000193 5.647188878561241e-06 2991803.812280233 322.2474775860027 62968 6300 1411218 GO_20211221 40361203.69063274 855.4503198141483 0.03633948806391698 7.710025528747705e-07 1721305.4266102389 36.520351521172216 25028 1170 167701 CTSI_20210120 11084257.136523865 306.08640243409366 0.053108873561250845 1.463785610377512e-06 2789395.6626780774 76.88126218622529 19148 179 602670 BCD_20200502 110080418.91027495 12422.141766041781 0.5833704052169594 6.605536521487538e-05 12141528.919379812 1374.7922758240204 28779 None 681100 LTC_20191024 3137481490.4224925 420301.4965497291 49.391154775199055 0.006615633037222531 2468313086.5192995 330614.93855951214 450662 209172 128159 KNC_20190816 26976354.058558896 2621.2132265091295 0.16349132005091838 1.588698655508335e-05 7355566.602586369 714.7644760829818 97637 6697 203045 TRX_20190816 1160012736.3643851 112627.73953880834 0.01755376662405696 1.703384591250854e-06 730405850.6472362 70877.21387652976 454055 71276 66162 KNC_20200127 49414712.83702498 5758.154006706809 0.2851559205279221 3.319589777739664e-05 19871282.762868475 2313.2785392661494 99503 6798 187251 POLY_20210429 322446081.36041623 5890.728260220245 0.39049055413355865 7.131513757007789e-06 9700387.85575009 177.15780499502708 45444 5503 167143 VIBE_20190616 8701679.857798278 985.8006354246802 0.04650029524551284 5.26795071176755e-06 1207592.685743434 136.80641627756722 20519 None 1430855 EOS_20210724 3485430726.284742 104271.24600322398 3.628415650149818 0.00010851380139333224 909072441.6946838 27187.32248499021 None 91704 52079 SNM_20190228 7836928.0847358545 2050.597181506811 0.019575832581441986 5.131624822827523e-06 114722.45966955293 30.073439754190098 31349 10091 10312209 WABI_20190914 8059118.553884873 778.6064292183387 0.1394949036428514 1.3476862028188043e-05 399008.67880044313 38.5489704054772 36249 7937 1609387 SNGLS_20210428 24007284.606754117 436.08734730017625 0.026974477086240577 4.899857834833441e-07 1780758.0273345974 32.34710035075617 9461 2130 958581 NAS_20190712 48253255.93176884 4264.104896181348 1.0626054323034624 9.363591693780141e-05 9057403.110520352 798.1309143982102 24364 5138 449898 QKC_20190629 65060100.48606047 5249.774283482357 0.01627363996164232 1.31026820715111e-06 5936120.935581748 477.945349290616 50950 9212 162641 NEAR_20210430 2006015645.975678 37431.98135879123 5.50290506253708 0.00010267710373294162 158931289.15784544 2965.4526614251 53041 None None SNGLS_20200423 4291470.180456889 603.2219762143774 0.00666032149917342 9.355469815490652e-07 93283.42199492389 13.103124809628111 8878 2127 2196057 ASR_20210723 7762435.979854492 239.79165728816574 6.289115965311447 0.00019426723937943663 10585866.436320847 326.99143414851073 1990425 None 109290 SOL_20220112 43823867475.83328 1022279.5392844769 140.2633692449685 0.0032787061494359056 1407732234.4002852 32906.24172606585 1274907 118157 2882 PERL_20211225 0.0 0.0 0.08465041995992142 1.6652723910057538e-06 2776247.9282298503 54.61531115447503 1595 727 815622 ONT_20190813 571984929.5986598 50258.10044718369 0.8790040888286621 7.723433959762912e-05 63358828.95189057 5567.07002159607 81522 16289 237451 AION_20200704 43153984.348377936 4759.04656429318 0.0982389761012541 1.0838211470849168e-05 5210841.3943094835 574.8858875969062 67493 72562 281333 WINGS_20190103 7088642.602709617 1830.4496360833705 0.07928729693819865 2.0478480408015726e-05 164899.48306973386 42.59056574936108 37726 1219 1774966 WNXM_20211204 157076756.60703632 2925.7278293087934 71.28884963692403 0.0013265531582851995 3630295.4138292386 67.55305873569772 None None 107583 GXS_20210704 33011552.225048993 952.2501115956339 0.4715936032149856 1.3603573022794769e-05 4604869.747029051 132.83191594863771 None 26911 581243 WTC_20191019 19924392.54675008 2503.5486953917703 0.6828095755003167 8.579669457594876e-05 2324402.5222550877 292.06686670637094 55525 19765 556908 SRM_20210104 59626220.4937012 1783.8605156192766 1.1962667165666183 3.599784846351878e-05 32765463.467992023 985.9725865674484 None None 89781 QLC_20211204 10616048.309794351 197.72041825373967 0.04424416433219086 8.237677612513294e-07 22466115.683036372 418.2893292158568 35689 5826 940522 PNT_20210401 101735352.81282645 1729.612212873151 2.66514241802785 4.534135177803231e-05 29947746.15262861 509.4929577048058 17248 215 396289 XMR_20200511 1032600090.6148342 117943.70895962544 58.88170838595826 0.006720585303955831 146310899.75962386 16699.49649367804 319799 170669 81111 ZEN_20210212 513677863.4073524 10772.66046573185 47.53536511772301 0.0009955848204671386 78229600.7151801 1638.4475598400375 86171 6573 437186 XLM_20210509 14226512731.370882 242592.88090512535 0.6170636998718194 1.050455334919728e-05 1523175656.3193023 25929.70538589189 535400 181457 25553 VIDT_20210708 17932049.84282694 526.5133647183758 0.3897685051743984 1.1444879460838436e-05 2437941.461017126 71.58594340873407 29478 1619 805010 OST_20191213 7604494.499329062 1055.576860084156 0.011067144116528342 1.537470330177439e-06 2006248.1645969637 278.7121045468385 17881 757 508690 RENBTC_20210711 375493750.8627465 11138.293332838088 33591.236083924516 0.9966086983893035 1523814.8728248011 45.20962411737369 86857 5527 90516 VIBE_20190812 3025751.350616074 261.92102867398063 0.016169099925810938 1.3996613715262788e-06 105585.94406002917 9.13993777978 20389 None 1550581 WAXP_20210909 454443416.50169724 9805.22058211729 0.2910969969974754 6.287609616114023e-06 85791308.46407446 1853.067058889643 137658 4983 3873 DOT_20210212 24161179429.366028 506904.69244830555 25.11602680817384 0.0005269375148651351 2103920735.4379256 44140.53115455707 166188 13073 24755 MATIC_20210603 11287030295.203444 299924.5638719342 1.8038075779183416 4.790514252997248e-05 2102683910.3844256 55842.6373497616 424871 39235 10681 VIB_20200501 2275441.2259592423 262.95165780112285 0.012418359925683856 1.440694457938358e-06 543134.1470332704 63.010764725022234 31170 1108 None ELF_20190622 90998075.40749706 8991.420904388824 0.1971090807486632 1.9473779772792633e-05 24311820.312315583 2401.9341617316695 86561 33223 1215448 KNC_20190830 29308259.932551738 3085.5983185012324 0.17486898501244325 1.8437670964199755e-05 6844466.171525213 721.6603629694429 97724 6706 203045 HBAR_20210125 651090130.2825193 20212.35719525795 0.09379033643593299 2.906985894118339e-06 68732711.84189014 2130.3369982616437 2175 7251 166052 POE_20200901 6749577.140685193 578.950065467665 0.002681410427173184 2.3e-07 81595.79309244416 6.99894064 None 10170 911005 SKY_20190314 15683110.80419196 4056.2593517060213 1.1255747908189664 0.00029111719787656076 1515336.3205922137 391.9246122866788 14887 3563 408962 KAVA_20200318 7255977.823341605 1340.155334740375 0.3872201269123786 7.199214548922268e-05 1178308.5072084914 219.07166385836618 17963 None 337432 AVA_20201111 30307204.1510579 1981.4354982784282 0.7702138635090188 5.0419213035373284e-05 1388626.971388333 90.90134885149824 38651 8989 84193 TNB_20190410 16225150.714322736 3137.1743403777646 0.0062063375961953745 1.200608581471976e-06 5614879.167829275 1086.191656244515 15573 1507 1826498 SFP_20210813 120924557.7352285 2719.913933639106 1.1179466011948807 2.514558328435049e-05 12986572.996825574 292.10246045826074 375965 None 25766 BCH_20201115 4762484217.861259 295945.1206035472 256.34855545604347 0.015936067809199407 1752324030.8833134 108934.316131282 None 337079 124397 XLM_20190811 1452392420.4459722 128183.51026326674 0.07427590736963237 6.560617825031195e-06 162071234.5523909 14315.374500075799 275813 103304 68303 BTG_20200109 108698572.38706844 13509.904955528069 6.20659682869303 0.000771404181412232 19936365.074771937 2477.8466856011864 74660 None 244799 QKC_20190329 59392274.65698729 14751.950086774092 0.03759706236079953 9.338352349738017e-06 9505305.022472696 2360.9261447015047 45081 9080 152354 FIL_20220115 4380835081.252591 101655.49502379313 29.7689770164224 0.00069020704889324 383648920.5553345 8895.071843466307 134589 None 30755 SKY_20210421 78142422.40220852 1383.0318108946392 3.897093325378141 6.912930333871054e-05 14706491.919052685 260.8737990183597 19107 4293 267586 HC_20190701 206301829.20547426 19013.09635974094 4.697159692426422 0.00043292753473239844 131685261.93287726 12137.15937763675 12904 839 542452 NULS_20200309 18892813.05989953 2338.654620162625 0.2259660998270846 2.8069163769692918e-05 4933935.956962985 612.8859882573005 22661 5190 619302 COS_20200229 18108212.142456505 2068.8517626143275 0.009193731510627577 1.0551632349046328e-06 4697570.434164793 539.1394788694816 10182 None 173574 TOMO_20210217 153478455.7280363 3120.77346873896 1.9117825419675798 3.884980151144404e-05 36112791.95471411 733.8568946344675 39214 1830 133375 AION_20190426 50283363.37959749 9680.35890315526 0.16771922912265314 3.223432185137097e-05 3738706.296591368 718.5500595399287 68815 72499 254752 BNB_20200523 2433514189.1309667 265870.4186564751 16.425133794724594 0.001797432747942161 267131549.19327265 29232.699138361048 1155563 63551 1123 ICX_20210707 571730520.3397839 16738.674810878572 0.8966948994819643 2.6251858563689632e-05 46989274.81827185 1375.6694693504573 141891 32510 225369 TRU_20211021 298782279.6744002 4507.724658000737 0.6075437238227219 9.168997225305858e-06 15102691.565066675 227.92851217923743 34116 None 87076 OMG_20210821 858364573.3223503 17468.4027617052 6.125410991954697 0.00012458963371309812 479204341.7158496 9746.920408527843 131 5037 356595 CND_20200719 15392224.797826257 1678.4764394991696 0.00797752003762217 8.700081568651849e-07 246439.57749862887 26.876076974683947 34273 5931 399242 WAN_20190806 27597887.66005682 2336.5855883926806 0.2597533551971511 2.2006882140768885e-05 2759464.461212073 233.78796829570442 108060 16898 529577 KNC_20190507 37682262.41398632 6587.068615863289 0.22666829905898087 3.9624308463483135e-05 5762387.359929189 1007.3336906123646 96441 6659 236085 POE_20190528 14005334.289680155 1588.0631664233183 0.006155210708510788 6.979389280798593e-07 770869.0391475003 87.4087884804073 None 10865 944416 BRD_20210704 10032145.60828313 290.6168365553197 0.12387215487543252 3.5701818381902005e-06 62593.5283823132 1.8040396442889213 801 None None ELF_20190716 62760271.19376749 5730.473855199615 0.13568168942930295 1.2407348011221018e-05 26005988.297313526 2378.1053179518017 None 33395 1184009 LTC_20200707 2863152763.743501 306443.6366949016 44.0666503990215 0.00471645969304932 1498016268.8359122 160332.8886475474 132058 214037 120838 ETH_20200412 17489565908.771362 2541208.4169496847 158.32787794181905 0.023004369229182517 11128989594.360977 1616994.9923189674 453067 457332 20344 EVX_20200410 3462918.0016436325 475.1452427503679 0.1588645335933624 2.1787787821903797e-05 413128.65598588495 56.65933922550999 16734 2862 864914 IOTX_20210513 337712182.1444246 6550.529453857977 0.043557455636925015 8.683306705061111e-07 33895320.24533638 675.7131638033876 50542 2937 209846 WAVES_20190321 279119597.1262383 69064.30902634816 2.7911959712623826 0.0006906430902634815 14196078.900555918 3512.624660700506 137728 56738 38388 AION_20190830 24943282.841309205 2628.4688638679663 0.07415705347210792 7.818901399216106e-06 1455499.2966379258 153.46356083741586 67382 72578 170946 XMR_20200430 1161229018.885008 132449.27883990406 66.19771536212868 0.007550482736800626 165328094.71145776 18857.25086127594 319709 169897 82357 ICX_20190730 125091739.25268044 13177.275967892852 0.2557816864598591 2.6890573706352554e-05 19095233.125791803 2007.5001495060992 114045 25826 240617 ANKR_20211202 1207566657.4378376 21126.29657626801 0.14814592113723402 2.5906796768661996e-06 146244335.062867 2557.425974308227 147254 None 5363 CDT_20190316 5879030.915881149 1498.0462960820812 0.008678934760155986 2.2116105361628466e-06 429931.39737280674 109.5573171746973 19553 283 398206 ARDR_20200725 59510187.16643984 6238.789528462953 0.059569787036218506 6.245037719926929e-06 4389050.053582298 460.12894292543933 63289 6294 1213640 TCT_20210203 8180344.3038474405 229.6712167059905 0.013892885944998174 3.904913831227475e-07 2704875.515147777 76.02672225673759 None None 1849521 KNC_20210813 161207044.26689935 3626.066930478484 1.7452487871069986 3.9256431353277226e-05 48434789.50239801 1089.458994762074 177709 11285 105078 COS_20191026 20012969.457437735 2311.45010989119 0.01517618162727526 1.752897475384475e-06 3166540.8875424396 365.74559159855147 None None 200954 BTG_20191012 131689803.83889312 15882.5560851036 7.497940499275211 0.0009068988033994398 15542328.25415421 1879.8920713089524 74964 None 268715 MITH_20210201 7801380.646795702 236.0267850662068 0.012620422999117671 3.8059387222972657e-07 12998071.770897763 391.9826195327792 24365 2160 386896 APPC_20190714 6653975.806126092 584.36709578032 0.06113613043686436 5.368455583784568e-06 291670.8812928651 25.612058861348466 25453 3357 1256272 SFP_20210804 100210604.43966924 2608.1385949712867 0.9259014862974968 2.4106320657671733e-05 8248132.671722163 214.74436962688637 None None 25766 RUNE_20201014 121303089.30944762 10617.928376438782 0.5770170957065613 5.0518032232801734e-05 10766576.366688283 942.6172222215758 None 1876 220350 DREP_20210727 0.0 0.0 0.5446445325293872 1.4597171628132993e-05 6304533.5432010675 168.96958046753522 None None 319856 WPR_20200704 4635849.364388843 511.16700115134466 0.007616778568005616 8.404288507568674e-07 141595.39506182921 15.62351512280303 32887 None 3997940 DODO_20210318 422005403.1132791 7174.105056267084 4.228067526168083 7.174818045585609e-05 48291033.37652021 819.4745603409273 None 744 35063 BCPT_20190704 6575902.528788233 548.4303517928503 0.056663163249882346 4.721373489739445e-06 1483600.4053896994 123.61878902671681 10961 2820 1043904 VET_20200105 355235518.00622064 48339.86104038783 0.005605171925175717 7.622890841982095e-07 74633524.63081509 10149.968975220152 117955 60035 370383 ENG_20190702 42862553.60906001 4037.936501828157 0.5534861750892006 5.219360196246735e-05 2183462.5188634233 205.8999460847553 61828 3472 328066 IRIS_20211202 139115134.67813632 2433.4442168822015 0.11862346839884845 2.0749803676864017e-06 6453811.855375816 112.89109210346247 None None 440878 WBTC_20210408 7970073908.524436 141501.48575301084 56167.97257855702 0.9995541536336686 322718112.70280546 5743.027835903325 None None 196125 ADX_20220105 78661098.88592646 1709.689370286231 0.5621823518621587 1.2240663456855131e-05 5393013.188929766 117.42463854549514 448 4059 14779 HBAR_20211225 5748271667.084862 113090.87451592072 0.3109323880868032 6.117198100232312e-06 85634891.87183556 1684.7572589502952 189505 17950 31895 ARDR_20191030 55270090.3632417 5874.278381329258 0.05532544374633713 5.880161512323145e-06 4549146.215476184 483.4975136000521 66301 6497 1346230 BCPT_20190213 2603261.5570579246 716.4332071938982 0.031031070864411123 8.539795652608972e-06 115477.43876279671 31.7795584248415 9858 1322 1839639 FTT_20200414 74417049.39286672 10859.866051638468 2.5792043375652565 0.0003766682259014798 3031416.794254177 442.70954775826567 None None 14034 KNC_20200719 351489413.8793839 38328.80263360315 1.8209792087350092 0.00019862390329099177 195222423.6632492 21293.949767201837 115528 8624 73639 TNB_20190531 13009166.164165612 1565.169828271607 0.004977286903219722 5.990049053063683e-07 1397374.1168356019 168.1707257002237 15780 1497 505570 ARDR_20200316 33005349.37551717 6109.1804350812145 0.03295577407286135 6.10222889621708e-06 2341824.3774587773 433.6219915332664 64563 6383 1001396 TRX_20190312 1446609544.1979423 374138.45317690953 0.022061287265074208 5.706100695258094e-06 136786388.1163289 35379.48148511189 396179 70201 78443 CTXC_20210105 793354.612761356 25.357896439112427 0.07846314282387505 2.507907835929616e-06 23237065.593346357 742.7234850428555 16702 20068 682759 SNGLS_20190131 8265327.636917482 2389.9466514156347 0.013999176703058834 4.047907954018985e-06 263005.19596877124 76.0488168191841 35275 2190 1006961 STORJ_20210310 105879804.73475975 1937.2697786195017 0.7370592806062762 1.3474471385099435e-05 64582074.14722164 1180.6503669166307 86310 9055 78580 RENBTC_20210421 681519669.242022 12063.251402189342 56481.62162657749 1.0002689825029083 15214913.140255073 269.45057962910454 72060 4806 63508 RIF_20210616 140288458.92513865 3473.763721935745 0.18857873883794682 4.672164452140908e-06 4806887.937934823 119.09386544547598 None 3336 412930 POWR_20210418 221500273.77321187 3675.8236726104656 0.5153321850500945 8.550329381566045e-06 6671309.821019303 110.68956690653141 89855 13425 239820 BEL_20201030 12556874.955202954 932.7578343517672 0.7852970117815745 5.8357007855889784e-05 1624953.560293459 120.75358273472857 9917 None 207731 TFUEL_20200502 0.0 0.0 0.0020424678094850975 2.3123772352610616e-07 353631.0855053079 40.03629668020471 67613 4028 365481 WAN_20190325 42924773.87236568 10748.595874399165 0.40453805027139844 0.00010137753773179083 3971712.5440281737 995.3141318150825 108967 17231 498965 WAN_20200526 19454692.59945701 2189.0581582041996 0.1823889407870335 2.0503056436561574e-05 1384579.6147103724 155.64602688529692 104571 16179 906142 SC_20210421 2186303716.748873 38698.70902774584 0.0457917026193612 8.122844993615051e-07 1039581946.9367903 18440.814667497714 3483 40655 54045 DASH_20210725 1441938059.162951 42204.35789591232 140.75942678342588 0.0041198593732700555 494804252.1155471 14482.326211434589 401421 41534 60872 XZC_20190915 45638865.90642615 4408.895494825791 5.448677889336123 0.0005264846430451849 12709186.746635363 1228.0394957449357 60801 4050 177313 MFT_20190312 19719421.838541117 5101.499654415998 0.0029716502337627823 7.685314875836062e-07 3082723.2136414293 797.2573051399987 16270 1873 654630 ANKR_20200711 21683584.437679846 2335.535564098838 0.004144219809306189 4.4637406941289334e-07 12567905.374865249 1353.689554201996 20889 None 5352 ZRX_20190324 157626687.34849265 39385.59446845443 0.26895601992861273 6.721724047398234e-05 18371958.549409263 4591.502938366849 148668 15737 207676 PIVX_20200105 14192868.273409408 1931.4641411830899 0.2285798398322971 3.10835875275768e-05 437245.4350804144 59.4591227394635 63593 8521 243133 NAS_20211028 18026424.548517976 308.0331372754981 0.39450579758411447 6.741612584201759e-06 2573091.5576071623 43.97092902384828 25835 5192 469852 VET_20190803 304484308.2454443 28928.345542156298 0.005487382905030497 5.214609615537012e-07 27653873.204423644 2627.9221919511265 113240 57169 138282 DLT_20190714 5842018.987545548 513.1515726628138 0.0728342740716033 6.3956871744506316e-06 174950.30405756354 15.3626493857436 15083 2674 2880330 QSP_20200914 30412136.074033026 2946.224516568152 0.041764573437714426 4.044128501455138e-06 1332832.550356677 129.06024558357262 57254 8221 237034 DNT_20190220 6923340.507410729 1771.881103891048 0.011953689406046745 3.053576771156056e-06 323212.07054541504 82.56470761867747 60111 6488 733347 BAKE_20211021 411300377.1643771 6205.2608930625365 2.1292846734217243 3.2243014065558576e-05 49865308.224715635 755.0929448476234 390852 None 20874 ELF_20190531 79297165.5060508 9548.119178553328 0.21286481021063103 2.5654343778161315e-05 42169117.34888209 5082.197626838269 88780 32967 1102976 CELR_20210731 169712867.3809502 4067.7580256854385 0.030056346873456645 7.195431533223873e-07 34152551.2683884 817.6054973388225 57762 None 201570 BEAM_20210112 27194351.23910607 767.7029896661741 0.34207084168688767 9.609600856111255e-06 15838221.302121997 444.93410848348606 15828 1619 333744 ZEC_20190511 372377298.3678202 58436.73621133492 57.49756563401795 0.009025169142776599 255996430.33056703 40182.763534487065 74830 15131 166067 HIVE_20210806 156881062.7312138 3829.035199616295 0.42177711681723157 1.0294419215229638e-05 15489900.298479589 378.06585733705913 22622 174 88793 UMA_20210611 756687947.7125505 20531.722797765542 12.378423702755311 0.0003371632452443903 31289793.55502372 852.2707407155996 39692 None 143872 BNB_20190228 1420171312.719949 372039.902419687 9.819080867304683 0.002575393683343029 85185303.45694986 22342.793118976388 921794 47720 1153 SUPER_20210401 367739195.4317298 6251.9683274807085 3.5849728719640788 6.100504527642516e-05 98278727.83321245 1672.397101819594 84035 None 80203 IOTX_20190405 35899470.35589037 7321.527060925398 0.014204609647630765 2.8982249295358794e-06 11288993.071999844 2303.339687767128 14782 1677 990626 ONT_20210710 615476583.659056 18115.241385224715 0.701820619745699 2.065071442993354e-05 146339554.25671417 4305.966880617131 141412 19622 137199 XVS_20201130 11212091.527205119 617.9919350780585 3.0462884976085673 0.00016765723659662257 7761344.240550559 427.15768013021017 None None 200025 BICO_20220115 261863303.35487637 6074.503678181971 3.6155970256366308 8.383147523629607e-05 24966976.898303244 578.8860016021138 64542 None 56648 BEAM_20201115 19729662.80837706 1226.0192731755876 0.262272285865282 1.6304320204135286e-05 6452182.209869626 401.1039306653069 16071 1587 422204 KAVA_20210124 105137813.4534967 3283.915923200319 2.242037126625128 6.995834184343874e-05 65742058.9418559 2051.351147725596 54376 None 89855 FUN_20190908 15752623.803523932 1504.6263876165774 0.00262185606321764 2.5042899941324585e-07 157674.19112919044 15.06039575235763 35869 17395 352374 RENBTC_20210318 783174319.7519603 13313.987939066452 58769.25489223431 0.9972847120267597 18085551.215086047 306.9027124549373 None 4342 63602 LRC_20190205 43480084.07229315 12549.189168254159 0.05514930526739083 1.5918318298118927e-05 1150156.076432235 331.98152593935873 28595 2466 537095 CFX_20210806 234092629.31347817 5713.557149646305 0.2715875193863294 6.631025581281986e-06 40441832.50460382 987.4195489465038 37544 1175 184033 NKN_20200418 9987335.459604854 1410.7750915331542 0.015428802298699527 2.1917022333026013e-06 1448019.4815019383 205.69500276382266 12271 996 316185 HBAR_20211104 5937389077.19462 94321.24634546934 0.3924444523827187 6.223944067219432e-06 120608587.92723516 1912.783072171882 161381 12755 35786 XVS_20210114 18322028.903196823 491.7501429375886 4.96094736435662 0.00013273168997773627 5750243.581111972 153.84955579015823 15247 None 105222 BQX_20200316 3896849.3350127516 721.1046239725789 0.027390899151338684 5.0973043119026e-06 499955.4659149777 93.03911996781382 None 11 311435 BAND_20200430 17246382.47324743 1972.9013046456073 0.8677279042225025 9.897266884863548e-05 6199790.455693669 707.1454135753581 None 1112 683896 DASH_20200217 1043343860.9467343 104917.29619754457 112.21556751193877 0.011256817474064533 987593373.2859225 99069.66197441847 316807 34065 60141 WAN_20190914 27484036.704688784 2654.195449198906 0.2589108925090321 2.500360918701086e-05 7574117.041767969 731.4495756196839 108043 16844 451102 HOT_20200312 94538069.31991652 11918.9848349269 0.0005327188053312336 6.710851106379436e-08 8525505.169895915 1073.988663986913 25144 6922 537857 CMT_20190719 35568484.20825586 3314.1240626287854 0.04417225652805094 4.141225996323685e-06 9394399.711148173 880.7413376981749 291018 1650 580172 NXS_20210711 31176645.134612292 926.6031785367884 0.4584193180800407 1.3595991508507714e-05 276691.6850855758 8.206237504679823 25980 3960 508939 BCPT_20200322 1760436.4144113758 285.7089938435622 0.014919395844662524 2.422553037273088e-06 2624384.9197928985 426.13733991731806 10648 3168 1690012 MKR_20200730 492908539.19008064 44390.64855549968 546.0460980925866 0.04919709046570672 15224952.338948453 1371.721838452396 50156 15036 38426 DOCK_20210506 65572932.603135176 1145.425043632409 0.11755301434645067 2.0505400439235787e-06 18371009.41651563 320.45533383636143 47815 14978 221085 WAVES_20191019 80476344.966836 10111.91698959842 0.8046419770451084 0.00010110523405730228 11996053.45676836 1507.3334813633292 142030 56897 23523 TVK_20210823 135383111.9548694 2744.247603542661 0.3118688433980436 6.3216549963780035e-06 44601350.0013909 904.0798818163238 None None 114085 WPR_20210523 11229790.710422395 298.74943109258936 0.018067602368691302 4.810833717318285e-07 366562.80711860175 9.76041356243741 33718 None 7291918 OST_20190523 15280663.627348198 1994.1273638333923 0.02445639623259945 3.1934351938735157e-06 3431746.951558945 448.1061472568257 18124 749 1111162 SAND_20210611 208967577.24493974 5670.110005356094 0.2977455748394518 8.079772534863673e-06 34226264.908255205 928.7810081671333 None None 20999 LSK_20210513 1042090538.7483883 20774.380941396586 7.23881880096334 0.00014430797876504442 174041639.90091833 3469.5712056935113 196759 32362 151176 POWR_20190325 46685273.072946735 11690.245242506113 0.11237523975654069 2.814143262996658e-05 13746018.64232839 3442.3299864936116 84963 13281 634986 MFT_20190314 20728124.978307854 5361.095246749061 0.003120674665256584 8.0725279813343e-07 2523491.4315089774 652.7740753725333 16294 1875 654630 BEL_20210806 87566723.74420205 2137.2628518337638 1.823641266899138 4.451066869313794e-05 12300627.358418815 300.2285367227381 32978 None 462798 1INCH_20210318 739127940.2392484 12565.30875297462 5.017501714689645 8.51256836519316e-05 466318760.6514901 7911.44787932273 None None 6362 FET_20200530 7700437.019043346 816.8880569312204 0.02265885239939067 2.4041894588198282e-06 1823871.978216615 193.51967641499667 16985 395 951449 ADX_20190819 7579843.256511222 735.5470379347261 0.08265539645191038 8.016525522687866e-06 103754.24206342372 10.062846048684671 53856 3843 611553 APPC_20210428 25422372.074202333 461.3655330147683 0.22525530540954822 4.0894416323766396e-06 1807233.7196422745 32.8097791042161 24866 3136 715817 WABI_20201014 5566584.401859425 487.25386816417966 0.09423054034701336 8.249247980543572e-06 651456.680479084 57.03063662866955 41516 7622 1594537 TRX_20190716 1680085061.0728452 153404.1095403277 0.02534033587205347 2.3172350462927938e-06 935105185.0182827 85510.25202014731 445431 71287 80727 BCD_20200305 126455100.93412077 14444.839167100168 0.6837907630153286 7.808097447887957e-05 6827866.476587507 779.6631615096495 29198 None 1280057 OG_20210620 6834049.534453084 191.70478346614388 5.283098486836828 0.00014853686234570795 2178631.1471551326 61.253265600355746 675474 None 238671 FET_20200412 5029600.110998074 730.9300866686683 0.014790445988794827 2.148989078951389e-06 1921140.3891291812 279.1335513816671 16626 369 974663 UTK_20210731 104861895.15335962 2513.3793458405908 0.23221138921051385 5.555527357547289e-06 9254502.137678409 221.40877749860346 77552 3990 177746 OXT_20210120 0.0 0.0 0.2931859535437353 8.134589687687996e-06 20543141.435931586 569.9796475840267 54940 1862 171899 TRU_20211125 240895238.38155153 4210.90923719549 0.44595782288942354 7.796608982795985e-06 5095765.061155574 89.08844202487411 35376 None 101262 BQX_20200315 3870673.099297628 748.4738540817366 0.027454912409130873 5.299049455310677e-06 542085.1499588232 104.62739694139289 10829 11 317687 RVN_20210427 1352684572.5629191 25108.846292651153 0.156493581065678 2.903991937784376e-06 356806568.69439006 6621.123957807277 58783 33871 40524 ADX_20190316 12659549.27525278 3225.971082160613 0.14543788705491525 3.706122609016266e-05 690099.5843962568 175.85470498742777 54440 3929 962371 BCD_20200113 69634263.06667754 8536.568945127723 0.37162443028506165 4.550960084632009e-05 2110064.3061766643 258.4011612490252 24115 None 4380689 FET_20220112 323482505.4842175 7550.187974725073 0.46910675292007037 1.0964067985774845e-05 26041154.375879828 608.6396864422305 91408 7238 85877 FET_20190625 0 0 0.16839995791478052 1.5247086651513999e-05 30013308.131464146 2717.43244740359 9903 280 385628 RSR_20201228 165978161.18655193 6271.951922128902 0.017575357259924457 6.683074853602562e-07 62835903.74701084 2389.351419857534 49286 None 180905 PNT_20200806 35392851.866624676 3021.2879948977406 1.221668483727369 0.0001040675930265327 3128798.07303819 266.52605748958763 4429 75 424006 STEEM_20191220 46125308.230269894 6457.257919840251 0.14309044420362155 2.0024853495985977e-05 1425645.3199216006 199.51254486318496 10351 3799 204825 XLM_20200330 770596763.9891101 130550.20618374243 0.03798940788418961 6.435953619121778e-06 219293043.8890793 37151.40451171731 280787 107242 82721 ICX_20200901 337231311.3273023 28859.770194552715 0.5974302263222412 5.118131908850008e-05 112041133.4533063 9598.464807533643 115954 27934 115181 NULS_20220115 59343578.540540375 1377.0435866983398 0.6177508664159812 1.4327929951092947e-05 9391588.212376243 217.82570507286934 83139 5576 239062 EVX_20210324 17629068.901826553 323.3833965415815 0.8057507288049579 1.478117677191609e-05 1810441.0024921265 33.211820400895725 17591 2821 730921 NXS_20190305 18048219.412839256 4858.243423782492 0.3022753043515769 8.136686373023644e-05 626564.6103466621 168.65948535765517 32 3504 850492 MTL_20190410 23519904.38064182 4546.496357007224 0.5190058883298786 0.00010040106805426227 6955430.410754267 1345.5196900829117 33347 None 724341 STX_20201101 142043571.62804416 10293.956344943223 0.16031176117901735 1.1633036911915402e-05 921195.2365976546 66.84661257295062 43674 None 111210 JST_20201106 26335932.58779552 1694.3289651674484 0.018400204232271143 1.180966865466427e-06 31993394.23164711 2053.40864831892 30370 None 128932 GO_20191216 11842005.305103805 1664.0115309792434 0.013544248706679743 1.90490408961541e-06 2301617.1986691044 323.70640184063257 10377 678 917483 YOYO_20190515 5453345.899194436 682.3368031416011 0.01851213967363228 2.3159637357920044e-06 395581.4255842071 49.48926771068211 7450 None 1472428 WRX_20201224 15947011.490794044 682.0147525949308 0.06702972022986267 2.874426760935413e-06 1435814.7687395941 61.57185769026499 45529 None 6918 WTC_20190411 58261109.775177956 10970.305309755984 2.1013340422946847 0.0003959430639156148 7189260.918305404 1354.6337412276303 55306 20295 1086384 QTUM_20220112 785825304.5405613 18330.95015465734 7.539356958063658 0.00017622320155888634 102145884.02689599 2387.534481973301 271905 17648 158151 AUDIO_20211007 886359374.8191904 15968.826951354544 2.154357235292175 3.883488225531575e-05 34880100.62035208 628.7557970678117 89376 7755 20921 GTO_20210703 21954616.6673905 649.5475021992382 0.03321060968434654 9.807825396828763e-07 9320590.230397323 275.25758317593386 14083 None 269467 LRC_20191127 22132574.82616077 3088.8874086410756 0.02299008675178429 3.212327913453025e-06 3652040.715744866 510.2874320969536 33569 6841 1005851 WAVES_20190207 250387606.425984 73519.41129459476 2.50387606425984 0.0007351941129459476 13349289.769623915 3919.650573255604 136013 56694 39779 ZEC_20201224 609739475.5244229 26074.816644685612 56.03714878996483 0.0024034299614961773 574544893.7464796 24642.1961443944 71760 16478 168324 ADX_20201231 36685747.98635253 1269.9590237269992 0.32465125645763016 1.1259415041603728e-05 2129825.7205927433 73.86569827603951 52841 3745 12111 NCASH_20190805 4361047.6279276805 398.23576705211343 0.0015030672508877607 1.3725489622149233e-07 227544.81478178795 20.7786044970154 60021 59007 884408 POWR_20190908 22490311.408857465 2148.1836092475264 0.0526291814943278 5.027173560065996e-06 3373992.0412944513 322.2859086968061 83965 13058 414066 NANO_20200626 144280753.4022972 15592.608133384718 1.082796285057746 0.00011701919877084137 7545082.409481672 815.40684097418 98052 51900 210277 PIVX_20190221 46995340.36417724 11835.947502620866 0.7952913897143963 0.00020029703083332024 531820.2428724003 133.94086364074812 60663 8585 178528 QLC_20190621 9285312.400182946 972.1125036401868 0.03868880166742894 4.0504687651674445e-06 655333.7095379793 68.60922558579979 24963 5791 940522 ARK_20190126 55771945.79062352 15639.848319573208 0.40072394351761015 0.00011237301488753695 604348.1138876688 169.47432440150513 62617 21772 157332 OGN_20200329 5813923.702558905 932.6197983605946 0.20418508843191122 3.2658812277118226e-05 18152674.48420133 2903.4675982465715 66342 2183 104622 WTC_20210611 22452742.379683122 611.5673261115757 0.7693836593397452 2.095645597938705e-05 8530059.444550823 232.34158027828244 65148 19790 502738 XTZ_20200422 1513400359.1894174 220990.21930455335 2.1391255163982104 0.0003124882654493759 218000756.0100218 31846.040632027547 59834 23700 97090 CELR_20190419 35752761.85200342 6779.750268916589 0.017950608735315714 3.401235615950162e-06 9349677.69092067 1771.5531115917197 12142 None 386585 UNI_20210909 12086066790.036985 260877.4529305236 23.22861441308951 0.0005017312471760506 769781310.3119571 16627.050154915516 None 51905 2771 GO_20200530 9746698.194400646 1034.1613354569731 0.009983558130038648 1.0599410406830152e-06 1801583.1889826255 191.27168243371332 10836 676 1263025 WBTC_20201228 3001727772.534393 113381.05101746213 26301.57763189681 1.0001242619551773 326330575.2869605 12408.804153499848 None None 151511 LRC_20200305 46171316.19663663 5274.215756541205 0.040493475634665356 4.623371585435303e-06 1068784.1520912955 122.02919611850443 34304 6822 607711 SKY_20190920 8551906.63191048 835.1526318127121 0.534494164494405 5.2197039488294506e-05 419533.42573848483 40.9703309121168 16357 3807 8463973 LINK_20200318 697345079.7622138 128414.2628121171 1.8889431773011256 0.0003511931911326221 426609759.98074347 79315.484328132 46238 13676 84663 CKB_20210828 423448664.92284375 8632.764508946873 0.015316240236517021 3.122869687938706e-07 17432632.07107486 355.43865488576114 52358 5751 124430 CTK_20220112 87158736.04998899 2033.152199151173 1.393027638766697 3.255815364504853e-05 5175519.807869464 120.96340690468323 2338 None 671406 ONE_20200713 40939681.64519088 4412.554676516639 0.005975785910802495 6.431665932169627e-07 5303303.556616291 570.7881326769699 75772 1312 139358 BEL_20210120 28240835.44287428 779.8570184698476 1.2526932418917647 3.475659527395846e-05 9740093.502843346 270.2437248704248 10051 None 430969 OMG_20200224 159338441.3116065 16014.370786689457 1.1364359280243812 0.00011427311275792104 134770875.59744096 13551.7428513574 282475 42939 404229 DCR_20210204 995343453.3131526 26566.928651388705 79.71735663474968 0.0021252312415701285 31317112.21847987 834.9010565844386 41890 10286 288064 QLC_20190524 11102240.827655194 1411.3479379052528 0.046259336781896636 5.880616407938553e-06 2449695.395164285 311.41213725511557 25001 5803 940522 BNT_20211111 1088728071.4412239 16800.219654146138 4.6296116790455395 7.127271205686126e-05 132042277.36838427 2032.7863040446784 135823 8484 39316 FTM_20200907 83848930.80610433 8143.462104839048 0.033870207142293815 3.296302937912258e-06 21854689.584197298 2126.9334781715534 25115 2652 147748 ALGO_20200322 105847235.59013654 17178.414928261987 0.15333627583182166 2.489814363853191e-05 68682491.20047832 11152.393796477123 16124 821 354014 BZRX_20210805 37949600.507222325 954.109212057637 0.26888520926372944 6.76186996766459e-06 30297711.33350131 761.9206162955312 None None 159675 MATIC_20190922 29411612.648096804 2945.1145065475644 0.013357191177527273 1.3373962102226527e-06 4210087.229990507 421.5373300615164 23341 1155 202428 RENBTC_20211225 853435998.0724597 16784.70276539515 50846.77952278159 1.000130944433526 493599.7780845175 9.70886291838137 None 6458 77574 ZRX_20210902 947658886.1393112 19481.441160101993 1.1205927660693626 2.3031287801873594e-05 111444236.17619875 2290.487994347031 None 19790 56700 FUN_20201208 24398020.871591173 1270.2632746094102 0.0040580026581723315 2.1137422940104385e-07 621795.9049828576 32.38825632501464 None 16538 390767 MTH_20201124 2807834.6255415897 153.28807993577055 0.008093432334704378 4.4106110633366184e-07 146015.62372864698 7.9572930099883346 18879 1893 1991211 VET_20190805 295314042.8384983 26967.055717970794 0.005325899592633443 4.862902497597487e-07 26170407.33859998 2389.5332046073077 113287 57181 138282 BQX_20210523 546690806.8626915 14529.685699617994 2.455835434908414 6.533817982794193e-05 4745636.665034653 126.25897379384963 79041 5553 18222 BNB_20190623 5317366191.447736 495611.8045899517 37.926144365897606 0.0035357388087737464 458420127.1743612 42737.110810315404 990679 53246 829 MC_20220112 327303365.9003517 7643.904387301123 3.775837336963141 8.824971503393534e-05 9019836.668959007 210.81364069790257 None None 41620 TCT_20201228 5544596.728175175 208.8385508125527 0.00943268062087495 3.586801094688219e-07 1110228.2208291935 42.21671397429896 None None 1564302 BTS_20190804 120670933.7340417 11178.399545158907 0.044524799723390254 4.124572385204222e-06 18105372.01929038 1677.1982786793808 13655 7165 153233 AVA_20210611 148416562.55747607 4027.1234773005053 2.8232351021186357 7.689921850924487e-05 5776021.256040099 157.3271458508545 None 10248 43410 GXS_20191011 31613656.860686477 3692.1169391954995 0.4863639517028689 5.680179906454615e-05 7457932.71770998 871.0020431922732 None None 575121 NANO_20190629 172158374.5557658 13897.725978214272 1.2916385742828458 0.0001043622982891763 5899972.398209888 476.7081841464517 98518 46531 363666 ALGO_20200318 96768298.98952968 17824.784291639586 0.13994855934367426 2.5967386202559144e-05 70256928.01393834 13036.138361832996 16070 822 354014 GAS_20200127 15854077.323553257 1847.429917570151 1.1432917063823371 0.00013303795185506728 2363356.2753202594 275.0094981160315 323198 98701 204331 SUPER_20210523 68235870.44995199 1815.5534222366196 0.6667856642769913 1.7754993596724845e-05 8301756.555691274 221.05699385077995 117363 None 137929 CTK_20210421 84698249.7626373 1499.202923003646 2.3175352103229874 4.1102761615460843e-05 11722074.134736916 207.89743200134708 None None 202878 BQX_20200330 3301916.403837968 558.3958035187179 0.023393574770061792 3.963208972999946e-06 313180.0782518232 53.05722227117203 None 12 311435 BAT_20200322 198046884.28452986 32120.172096080805 0.13705763940021556 2.2241846337104758e-05 64507968.30251818 10468.4155132266 111603 35951 19141 ZRX_20190512 178331868.0312128 24423.809757682917 0.30210169874297915 4.14763527088553e-05 42334118.56017033 5812.164712499581 150130 15866 221725 RDN_20200713 19144786.454491653 2063.0560246017862 0.28752840731843454 3.097346816037285e-05 1028765.5376198723 110.82187294512593 25576 4331 1882250 AMB_20190324 8011043.610351606 2001.5497026312923 0.05537109852896906 1.3824714183640322e-05 342954.6024292061 85.62678874913861 20712 5703 634689 NAS_20200331 12523420.246031731 1949.1845314731268 0.27607633187333974 4.299991711569619e-05 5133524.997852268 799.5656415787035 23550 4966 1102788 LINK_20190513 239778291.73640612 34554.57068921818 0.6597604025246278 9.490788229666181e-05 14092043.671494931 2027.169282933336 11932 6710 419208 ATM_20210813 38298239.919486225 861.4510730539738 20.29654959513734 0.0004565236902637939 61425156.42081696 1381.6160699048307 5024512 None 101859 RVN_20200301 144431589.69478264 16860.849493244637 0.02565998683572176 3.0001475585136076e-06 13852256.461189523 1619.5960531081516 30251 7476 183648 TOMO_20200607 28741955.285155885 2972.4291639518515 0.4053662279868552 4.192207475778726e-05 9788451.568756554 1012.2999157238593 25637 1553 184288 REN_20210220 1501089458.773328 26871.4741156647 1.720174650156729 3.0768997730047724e-05 918894789.4496442 16436.395971858277 49627 1072 73664 SYS_20201101 23521506.0393201 1704.6462423289793 0.03926666204176038 2.8457240495612305e-06 430775.64310148807 31.219068385170853 61004 4491 320728 WTC_20200905 15778743.060875384 1503.986705266347 0.5418011681043765 5.166396494749536e-05 5781647.4228498 551.314480989352 55473 19433 628603 YFII_20210107 63025816.785196304 1719.5198455261534 1583.4494663749495 0.04290100922165011 89449337.69579439 2423.4855250183814 12813 None 153054 NKN_20200208 15748644.532126136 1607.8281627736258 0.024289461176758162 2.4775996616360342e-06 2143751.0385769014 218.66919192478022 12140 1005 439931 SOL_20201226 67364923.8031706 2727.8649898890158 1.4458848057739127 5.861248172451703e-05 11302457.898446823 458.1728118100334 104554 2751 87194 SNT_20190515 90031373.86772528 11272.145540907319 0.025555256983055247 3.197540129602968e-06 15279023.925320338 1911.7511584708304 111466 5753 311029 MLN_20210729 102912339.90172437 2573.77558750583 72.57456148181868 0.0018132081274022825 9884014.657462329 246.9429417463822 27254 388 103419 FTT_20200410 78437314.5777732 10761.837980581557 2.7220338842930056 0.0003733186720379896 1369469.4898731422 187.8185772433069 None None 14034 GVT_20210916 17299132.58603265 358.9350129071376 3.8991482269103965 8.09023696530841e-05 1120265.7888227312 23.2440911919 25805 5749 561636 YOYO_20211202 4300303.368271172 75.22221350372719 0.024606322253901827 4.305070564967324e-07 1547290.6662464696 27.071073173684415 12394 None 986357 BADGER_20210523 115402535.14676523 3070.5179876640495 13.784211986465339 0.00036704237758465423 14746851.972966079 392.67530239386525 33902 None None CTK_20211120 97511815.90429091 1677.4716073274137 1.6841723416283694 2.895062551296778e-05 4334690.786556344 74.51257010596105 92511 None 193786 YOYO_20210127 2009579.7599144469 61.660309585719176 0.011488192221138987 3.5260782655814705e-07 189633.50800633922 5.820433521096051 9391 None 1925232 ENG_20190614 46362507.48316099 5635.105827506966 0.5992785017365948 7.280762710464849e-05 4025103.0004814425 489.0183737070959 61823 3459 351204 GVT_20190726 9075888.866621856 916.217699624336 2.047505557605142 0.00020685107714374154 529224.6283255246 53.46539061323626 21401 5744 209505 TOMO_20200305 37041673.670373246 4231.323579533815 0.5280109765140035 6.029272960628454e-05 12239014.539094295 1397.5535113396015 22040 1505 211808 ETC_20190812 656554325.6989065 56891.229076864336 5.831640259827892 0.0005049782895192233 580024920.5162436 50226.00489582675 229457 24873 465281 ICP_20211230 4538854588.703211 97676.02054962445 23.91419653112584 0.0005139561067265619 286524616.84555155 6157.8935492810715 461632 25678 38411 ZEN_20190930 24745449.12504404 3070.0225355191824 3.4012115733004165 0.0004220886179902972 439787.9535258915 54.57746027025195 None 1792 203585 VIB_20200612 2837182.1775465817 305.76388959210595 0.015080486871631167 1.6216246013312969e-06 694283.6559858957 74.65723530232316 30922 1101 None WABI_20210421 30901914.373022895 546.890535422001 0.5213501315359889 9.248064744544175e-06 4449024.782698225 78.91984052877244 44132 7687 293001 BNB_20190329 2395537703.072968 595003.8145726578 16.584638554380838 0.004119289877693639 231920283.90466353 57604.323108263365 937063 48388 1100 CKB_20210724 256912717.2868689 7685.881961031217 0.00946167999709637 2.8296726809944896e-07 7856693.164591237 234.96746896558065 50107 5169 122182 SUSHI_20210602 2071948696.056335 56468.602299479266 12.051955618792038 0.0003286199882884998 416269483.36551625 11350.396323658772 98839 None 7231 BQX_20200425 4052864.172434662 540.5034486178852 0.028768226208081296 3.837803545718556e-06 274159.7738830152 36.57407810586763 11102 16 397017 BNB_20210128 6046117020.91682 199863.57217337727 41.0620061062751 0.0013535405093952865 571180935.5851054 18828.02638789224 None 94229 564 GRS_20201106 13387066.411206266 861.5313654414665 0.1762348064413615 1.1311149828658609e-05 837630.902240251 53.76105224427638 37418 106811 3822572 ZRX_20200217 187413972.2773296 18800.37618626526 0.29873070144509656 2.9960589785689695e-05 65708104.66919512 6590.06108199004 152660 15977 118984 FIO_20210207 20607189.53476879 525.3883822357125 0.09491501428456764 2.413697629626855e-06 2212086.8840004546 56.25357493423123 55506 171 730561 MITH_20190725 11701665.451926077 1190.3933808359548 0.026325935534321568 2.679883679204893e-06 3568111.9976850715 363.2207142536335 76 2077 572627 NULS_20211111 53849431.83692432 830.7474779725558 0.5666267414211388 8.724857541322359e-06 13031647.984119473 200.65991221123363 75303 5506 206151 ETC_20210401 1648062946.4245722 28020.132940586776 14.053252337705684 0.00023915696019276124 1760628996.0496747 29962.22287937769 314084 32186 124907 COMP_20210527 65310.407469593 1.673479278531609 7.071724727615228e-07 1.8144e-11 470.7255966768934 0.01207745713397664 2471 None 2394186 SYS_20190509 34638550.48955663 5815.605404021925 0.06266597674026615 1.0521242599019296e-05 485521.62302669423 81.51617590045637 62261 4598 1307286 QLC_20200610 3328831.399837668 340.5338186955545 0.013870151560858864 1.4192055338644445e-06 230759.9942090315 23.61155603376158 24349 5647 940522 ENJ_20190714 90023120.20670141 7909.533785693646 0.1026765097485449 9.016178782403127e-06 2552196.7607538365 224.11223695839385 46926 12665 20679 ZIL_20200314 36892034.23844418 6700.926435470595 0.0035600705449433793 6.39948346542071e-07 21978583.0892115 3950.808763398288 68672 10580 224303 POND_20210729 46446888.74649384 1161.5486980732055 0.05997006348858065 1.4989244550080191e-06 5053327.000677518 126.30560949648124 19755 597 135580 WBTC_20210804 7393248888.662447 192453.85422504306 38399.24120110376 0.9996401044584382 357294540.31180936 9301.380455128898 None None 187032 CND_20190225 19079387.415463228 5065.300740607813 0.011494505503107232 3.0637860091252632e-06 222141.14204667928 59.21028293646418 36768 6232 644110 RVN_20190520 201641463.3377145 24638.433138277087 0.05660953095519703 6.91966305208464e-06 35927748.7041071 4391.626481575155 24311 6473 170444 AKRO_20210429 137563368.22141847 2513.1284502949843 0.05085423101440355 9.287488371798839e-07 72780457.43416701 1329.1866549364918 37665 None 141631 XZC_20200905 50903555.66081272 4852.760199311447 4.653049749261543 0.00044377923776296903 15232046.360964313 1452.7388031283642 66079 4165 333585 WING_20210527 38423553.91313381 980.1431643395757 23.726628792487507 0.0006051843292388787 5709138.471205317 145.62039834846826 None None 323805 ZRX_20210527 958345139.3784014 24460.388173101925 1.1420235517189004 2.915114270963375e-05 235894826.38686246 6021.42025715449 216677 19244 58753 ETC_20190228 465071709.0938702 121913.6008879752 4.2824452562410285 0.0011225974652622718 186272225.66916007 48829.28230786279 225832 24182 470641 HNT_20210508 1423540790.0263813 24843.49387832127 17.532616949036328 0.00030592920463519153 15725912.493784223 274.4037536079555 40095 24970 7875 QKC_20210418 300692966.3898912 4990.035927337527 0.04607778155591339 7.646567360807943e-07 158546135.33626652 2631.059184508308 None 9376 311852 ELF_20200707 45453229.08042124 4869.2226658634 0.09894992318319215 1.0590623977496942e-05 20874023.36659398 2234.1496108471247 81051 33373 479052 XEM_20210401 3443650366.619753 58546.258676824415 0.3816524978245888 6.492968630650091e-06 368527030.1779859 6269.667983653737 279141 20677 25974 XZC_20190513 49294592.42527763 7103.868603868405 6.610319140858514 0.0009509079183341134 1809126.1753190283 260.2464977436699 60370 3965 353652 POWR_20220112 275209907.4278366 6419.8226577560345 0.6337779201759695 1.4813779847800996e-05 270131147.8810181 6313.98353800667 105312 15875 183973 TRX_20210722 3865817169.6322036 120130.69984947263 0.05416171355953016 1.6770220211976737e-06 873895770.7880119 27058.64263751931 1074623 114174 24266 ONG_20190419 0.0 0.0 0.5888642691352789 0.00011157324269348849 8429201.34851316 1597.0969492697914 75139 13048 265242 ELF_20190902 39240114.21274114 4033.706171082235 0.08420165426364963 8.64678394948405e-06 15563604.525374541 1598.2480033557113 85522 33554 1052488 COTI_20210826 302061382.3916147 6162.513227030137 0.3512998856856409 7.167812777622091e-06 66509528.52098059 1357.0395772713211 130565 5761 156434 BLZ_20200404 3174097.985706857 472.0065097687478 0.014528411916957487 2.159660486030212e-06 235568.92562684332 35.017516251660936 35973 None 583027 QLC_20190706 7258823.3601071425 660.4453961690662 0.030239438832941352 2.7519318430107457e-06 399491.3269163708 36.355598714026854 24989 5781 940522 SKY_20190830 10542947.669830631 1110.0457576782912 0.6544317071261789 6.896258911278234e-05 234990.9759317431 24.7628376527728 16361 3807 472188 SNM_20210212 8555223.869921088 179.41661008 0.020053392678361603 4.2e-07 879612.7575057767 18.42268608 28981 9483 None GVT_20190818 5437252.942274062 531.9036414747995 1.22553284470741 0.00011988873605247563 576765.1360555306 56.42251324348665 21339 5719 194896 AION_20210128 32259109.58913721 1066.3860661601484 0.0666270940994705 2.1916142563577223e-06 5480828.417345277 180.28494051040875 68210 72535 431137 ELF_20210107 56398310.461981006 1536.1167924045994 0.12268543482466969 3.3217352157806093e-06 24045010.404583357 651.0239617185197 82080 33334 479481 ARK_20200701 44341528.350707814 4847.018685599167 0.2950998769275005 3.226475122889568e-05 2367325.162961525 258.8315463093998 62080 21905 108686 TRU_20210428 87374081.4169124 1586.0165169772401 0.35834311437722344 6.502846606419494e-06 6311064.719935981 114.52678773597779 23081 None 84906 BLZ_20190922 7420196.76507621 742.7189331110594 0.03544036950563229 3.5488462862998456e-06 121171.92184378834 12.133635479472163 36429 None 550438 WAN_20210324 191302204.99763837 3510.624879607088 1.16389016212154 2.135110228808359e-05 8456101.762159973 155.12382487469444 108516 15994 311428 RCN_20191017 19204193.47822797 2398.459683023355 0.0376906066879297 4.707701513475146e-06 4510262.636394076 563.3491234388272 None 1124 851208 VIBE_20190410 9891573.906877646 1911.9865044634453 0.04939400360991501 9.550456782923035e-06 890560.6880923839 172.19218412352438 20699 None 1224385 SYS_20191024 12225748.419867784 1638.2280943889173 0.021457923034879457 2.8752432693369664e-06 874967.6565201412 117.24083739175398 59979 4577 999459 NANO_20200430 84274755.07317886 9652.894614644185 0.6337925012673156 7.229009813033935e-05 5910732.175699573 674.1755513816953 97644 50715 313652 ONG_20200718 0.0 0.0 0.18681371240244232 2.0408385182240048e-05 12065950.138357582 1318.1396314357746 87490 16566 168500 REN_20200518 76664675.44468682 7870.189807207592 0.08912571543772833 9.148589521760563e-06 3644253.0389664574 374.07582091418885 12099 880 400115 SNGLS_20191020 5915833.3124669455 744.4467453006005 0.010250779587977855 1.2899551251692887e-06 184751.10587822951 23.249025487565767 18 2163 None TWT_20210909 464583563.4640139 10028.024734216062 1.3281212922263246 2.8687029734080166e-05 171226353.81675082 3698.4389392367443 None 45527 4771 FLM_20211104 0.0 0.0 0.6233919645491338 9.886639232000267e-06 31845764.03346936 505.05556370787326 27291 None 53804 BEL_20201228 17500777.338408794 661.0530889732955 0.8319290197902468 3.1634315194377586e-05 3925070.7867296687 149.2518273481504 None None 227684 WRX_20210711 468602631.6586521 13896.448680445845 1.0761033341715347 3.1923161882067774e-05 4555988.4912781315 135.1557545836259 288253 None 1268 SYS_20210513 226847351.9519495 4522.268583934164 0.37074199513958755 7.3908505562805225e-06 27220702.588722922 542.6527005511256 69871 5321 365678 WTC_20200325 6327998.9060681155 936.1717176600948 0.21780737129615893 3.2233120958130916e-05 10914904.291944088 1615.287068545878 54804 19497 966319 KAVA_20200329 8522774.81260886 1367.1504708102075 0.4551661698640377 7.280250781604724e-05 5845195.348921838 934.9220312294282 18295 None 337432 SOL_20210724 7713349030.470103 230754.98479988193 28.37606777419007 0.0008483399601949845 407425804.48123944 12180.531619338846 362468 27716 7993 OMG_20210318 783962622.5275149 13321.028794230486 5.592748523349972 9.490613094848295e-05 467516265.662203 7933.516006349188 308296 3937 140232 WAN_20191022 21370521.35807384 2602.1387825677757 0.20145005972586974 2.4512539410123002e-05 2388525.0075715124 290.636862852428 107443 16746 356039 CDT_20200329 1894787.9297433202 303.82311209022544 0.0028155088226036297 4.50332464569981e-07 293929.6727663772 47.01319807079337 19156 291 281286 YOYO_20190930 2304726.7799797193 285.99399112413613 0.013165143499373349 1.6350377739152574e-06 788807.823026182 97.96555480531292 7575 None 797587 BCD_20210217 246075327.13523617 5000.856790763789 1.3081914159711814 2.6586188203963894e-05 22280674.498426482 452.80698091621974 28404 None 1218964 ICX_20210806 701375664.570346 17116.589173838947 1.067406031202195 2.6087806732724653e-05 97702350.35951193 2387.8823606057367 142638 32652 233721 GVT_20190904 5200844.787588019 489.4072518227357 1.1722474887748526 0.00011031023715735039 376834.4206063336 35.46068104575932 21291 5699 171342 BRD_20190920 13757880.414514696 1342.2331209869023 0.22808365572464287 2.225207865205802e-05 229593.42842678123 22.399373646993 169 None None ATOM_20200407 444079378.92047656 61055.88199633502 2.399258249089664 0.000329756623783199 180183438.31714335 24764.604770517548 None 8338 80555 FTM_20201226 43642735.383380786 1768.1745866689953 0.01725834617387415 6.999045609278743e-07 4566251.056411703 185.18228273589273 28285 2831 128838 KSM_20210814 2518257580.8819785 52834.84357940779 281.30959315940936 0.005892636064292104 215076197.3191809 4505.23475811802 101338 None 59674 LOOM_20190603 55498562.7352122 6348.642974696797 0.0802911718756114 9.184031233172031e-06 3377996.808242782 386.38903216557276 19670 None 406238 EOS_20190325 3767898439.9549203 943502.1777232361 3.6342660382370893 0.0009100399005296216 2016318660.7929268 504897.1138046084 None 63557 96004 ZRX_20210722 536165816.34640855 16661.41256214294 0.6351595904088325 1.9691495618096458e-05 72681493.26764978 2253.303465472999 222882 19604 52898 DUSK_20200430 5906242.069107922 676.7653632351912 0.022145082763636924 2.52585854658542e-06 797768.7305792087 90.99315580978033 17487 13335 1548362 THETA_20211007 6429724431.856217 115831.6689423366 6.430097239217466 0.00011591171441236785 481984804.9193231 8688.466593968404 201662 24438 26496 WABI_20200425 4640511.568898362 618.8901792544377 0.07857065072836436 1.0482706249752784e-05 1251773.1000818883 167.0085404391813 36576 7713 1879614 BQX_20190811 13366331.490606619 1179.6696717009163 0.09482940250719604 8.373705379020724e-06 559780.380557946 49.43019632958922 60572 5770 410121 XVG_20190321 116588284.24718249 28848.16893905657 0.007382498490576088 1.8266978112221067e-06 3973047.821394211 983.076091175093 305128 53277 418037 MDX_20210909 1141616463.662676 24641.763150719697 1.7518700479031462 3.783987836698119e-05 96720284.81711419 2089.1297373797665 15318 None 63148 AION_20200325 23816732.699619103 3520.069639520069 0.05921148744829565 8.762655853536865e-06 2288569.06654702 338.6833195959322 535 72541 244642 COTI_20200626 13623262.210206648 1471.0495706631962 0.026538428189844553 2.868042351334352e-06 1424024.890537938 153.8962166937964 24705 1005 313958 REP_20210107 106742851.67464235 2912.2423347270956 18.932096109991285 0.0005129346070382127 30389278.116494928 823.3484733173826 136517 10452 135410 ADX_20190603 16304819.886298284 1865.397862036845 0.1772268779720979 2.0267300141284426e-05 761282.4812225698 87.05869400728635 54353 3892 922905 NEO_20200223 968057830.1667782 100285.65861563134 13.738550948169017 0.001423249073761341 612030561.3772842 63403.47922281744 323155 98913 228840 ZRX_20210602 864061542.6366041 23549.013402836827 1.0250873937395295 2.795099965354309e-05 216512847.13812158 5903.643486696696 None 19327 60005 STORJ_20210731 146812941.30398047 3518.8818000654774 1.0181140657226841 2.4367434872197547e-05 38822197.223154105 929.1663815285002 103825 13690 58824 QLC_20200319 1587462.1028761482 295.11091748683657 0.006642060883500382 1.2317507803566345e-06 61337.39934315714 11.374841458268 24533 5668 940522 ROSE_20210422 227419684.79024866 4197.219642779032 0.15123596247102888 2.7918466855076323e-06 23225991.28154496 428.75653196197976 17975 1361 227579 HNT_20210519 1377225396.6937854 32277.270488035276 16.659560073193266 0.0003894160494266669 38553366.214148834 901.1822339397257 44611 29591 4657 NAS_20200901 24815242.230079353 2123.1152509109356 0.5431850354651887 4.653418156524077e-05 6515697.758449542 558.194064120816 23605 4900 894508 MITH_20211120 37473661.151549354 644.6410874477915 0.0604105660584839 1.0356505676627104e-06 106794521.80322824 1830.8354704325502 35033 2833 456658 BRD_20191213 15307494.745557826 2124.8272637578048 0.25282422823318246 3.511974168698682e-05 903871.7773052838 125.5565716899634 179 None None ONE_20200901 72309583.70120059 6188.150086855453 0.010152239906922142 8.708151778156515e-07 9385860.116869025 805.078438015562 None 1449 127975 CAKE_20210718 2517095978.3953524 79635.79195042234 12.726811898583016 0.00040344246853485377 113867283.2213339 3609.615526201582 975635 None 809 IOTX_20190522 28383992.883141592 3566.9915117935934 0.011241499345097609 1.4126794501074201e-06 1797294.0989323652 225.85959055971807 19676 1719 780068 WAVES_20200309 109931170.1892072 13607.87502886774 1.0954726971836064 0.00013617538146214447 60264873.32373949 7491.370743174785 141261 56865 51296 AUTO_20210509 77403302.34004468 1319.7157765114077 3042.326861566226 0.05179090072816945 12611665.215154056 214.69405849399502 52117 None 12456 FUN_20201014 19471475.353929818 1704.3814124486398 0.0032357024932211558 2.832867935189056e-07 397684.36220616923 34.817393761638606 34066 16630 272576 NANO_20190507 192374513.78391558 33628.13273567289 1.4433562414887213 0.00025231687312480037 4468763.117315038 781.1961483142808 None 45375 391429 TKO_20211104 155937086.1739841 2473.0728042132264 2.0787176421480162 3.298579636525644e-05 85052839.68445508 1349.6472985235132 333863 None 29249 QSP_20200318 4062142.0650977734 747.7805039378333 0.005617229488179765 1.0443579102769562e-06 33964.82039157234 6.314755151399196 55353 8327 355576 CELR_20210131 34755918.66161635 1015.9892233630088 0.008800049614593897 2.5757901786505954e-07 11050864.76064916 323.46077764005486 None None 412914 ETH_20210428 306136280873.3804 5555450.056963284 2647.158189660288 0.04803793615570059 37611597877.629944 682537.0484532083 984666 822809 5558 VIB_20190714 6767955.10998055 594.6379438844399 0.037219846050867166 3.268330673393338e-06 735308.7212089014 64.56856497085622 32619 1123 2096372 IOTX_20190228 9817145.944982585 2571.7812961705536 0.007370513833612221 1.9331619040940425e-06 776478.3759170969 203.6572279167801 13524 1624 1268862 AAVE_20210112 1394265294.9110885 39314.41876321308 115.3358623192415 0.003238103359799423 542819831.4175147 15239.89750051552 None 2042 24520 OMG_20200229 120368275.32716772 13764.507731961823 0.8557889772765431 9.809126993574562e-05 237179687.5412366 27185.74014346672 282161 42924 404229 ENJ_20200523 158591209.90834033 17324.833298082118 0.1721227615478995 1.8837589352690103e-05 12193647.42763366 1334.506377236614 54849 15430 98201 BRD_20210111 5419517.398838707 140.5590586643351 0.07150523790501488 1.8600028950113947e-06 306402.71094177285 7.970184368144973 374 None None YOYO_20201229 2131123.9571746835 78.59642314383977 0.012202089182463807 4.493809064377495e-07 175032.00741099985 6.4461127082249385 9267 None 2222023 STPT_20210723 45239997.547102734 1397.616928439717 0.04039634378687097 1.2478202392487528e-06 3892893.7945268247 120.24929017549366 30713 None 433078 AGLD_20211120 179324491.74591276 3083.9131572518313 2.3410016734700556 4.0237576041858935e-05 45151226.495734684 776.0677534298052 None None 55901 RSR_20201106 110411283.84782933 7104.287512920274 0.011816152289227541 7.583874697656324e-07 62718272.64334666 4025.401072515139 46405 None 119364 ONE_20210710 923789903.6954274 27189.786807464247 0.08984254864110278 2.643757300764623e-06 81324886.69927327 2393.1117961038785 192757 25874 23324 POE_20190613 14131224.571755078 1739.3373857893162 0.005619013685101688 6.909884275293477e-07 762692.631174654 93.79079878394309 None 10850 931861 STX_20200331 53316528.48366959 8287.908258012412 0.08996004600837232 1.4032011706624318e-05 307228.1108027522 47.92159006885208 35787 None 52598 EOS_20190205 2471650919.7475023 713464.8145568199 2.3994429635601455 0.0006926213225980112 695771490.3862356 200840.8523211076 613 62413 80265 APPC_20200903 5199048.665341915 455.7247715889096 0.04744571927390364 4.157930729074398e-06 282920.0962110492 24.79385242570526 24481 3184 2103501 NPXS_20190302 116599751.7908257 30523.42282177159 0.0006813374134188939 1.7836015630106526e-07 7613080.355341094 1992.9482446847123 56382 4054 173865 ARK_20190122 55684242.45546653 15766.543393929645 0.4003052115092579 0.00011335739538623213 260104.3595173687 73.6556804052778 62801 21797 157332 BCPT_20190414 4852338.534617455 956.4301922079289 0.05776290445546613 1.1383895746098083e-05 1269059.1611588818 250.10579579497383 10409 1704 1777808 MTH_20190414 8892074.912457712 1752.3995342643036 0.026019921592398677 5.1308101256516295e-06 226043.8216097593 44.573075465959825 19390 2009 1241512 BNB_20210204 7735129472.072181 206401.74511421972 52.31846242135783 0.0013948049009605988 805552172.8087535 21475.939211746198 1592658 122441 423 XLM_20190507 1863917561.8910182 325796.3914876313 0.09737828971432697 1.702295307610092e-05 205237535.58663598 35878.10946357043 270209 100795 71858 LOOM_20200927 17971088.218011774 1673.6699840942715 0.02153501782234961 2.006065420038059e-06 2888171.405624606 269.04369579639797 None None 427269 CDT_20191127 6501640.290813711 907.067822718014 0.009693114865482516 1.3537883710445678e-06 658915.2889933898 92.02736871707515 19414 297 185500 FTM_20200229 14955284.588646552 1711.9209656279554 0.007046271109891694 8.086995155050875e-07 2967373.258407493 340.5649994119766 21113 2314 396043 BTS_20200321 46165377.303156495 7467.628034033784 0.017066818831550003 2.7550023056396633e-06 19330507.319574982 3120.4170361358906 13300 7027 131725 STORJ_20190929 17831592.27030858 2172.3332645454343 0.12401356079172289 1.5107948817961897e-05 3102812.4937579343 378.0000513504837 83318 7803 159770 ONT_20200531 359743417.3574469 37155.24453023115 0.5644351721476355 5.829634631443628e-05 122453461.97051142 12647.315012763582 85324 16479 149560 BRD_20190312 15403536.608471436 3983.8480054706556 0.29597268780602143 7.655264805608183e-05 1442333.6953357493 373.05625926818783 152 None None KSM_20201129 406569723.0045089 22970.818469587444 45.22174765609869 0.0025528381853383597 40382037.91671814 2279.6290222913753 15183 None 173763 NANO_20191216 99280589.42337564 13951.204527587304 0.7419087584144821 0.00010434429097039877 1640940.8878816694 230.786887913638 97820 48455 261778 GTO_20190803 14622854.51690645 1389.7035865711707 0.02206331757654286 2.0962628886799504e-06 3293489.4010396283 312.9184712003739 17450 None 944506 DGB_20210804 719699939.6094996 18731.32289531408 0.04905564401077872 1.2820694924348676e-06 21235801.39331033 554.997771668982 223119 40629 115108 MATIC_20210310 1496077314.3511755 27371.76913580517 0.2987132778715917 5.455613442305055e-06 735123670.9519829 13426.087415927648 1714 6485 30873 NEO_20210220 3385468370.933006 60609.48558959665 48.10451825454742 0.0008604520551702998 1742209925.3055034 31163.145691111935 344273 104418 123772 KEY_20190902 3653911.1888042013 375.66739314782 0.0013975855605333578 1.4368913120694225e-07 27743.417438984477 2.852367440743934 23809 2828 766085 ZEN_20211216 793813710.0472221 16271.212194672748 67.02697275029827 0.0013715545415116902 46577625.16178867 953.1051560611639 129951 8991 2220353 REQ_20190904 8014941.255850598 755.2527563616234 0.010980992861668745 1.0347455909684617e-06 96644.5165064007 9.106871173312083 41147 29426 564071 CFX_20210729 179608164.27865213 4491.659937005688 0.20886236982563014 5.220005397069501e-06 7873954.260774041 196.7902775968365 37348 1167 173501 MINA_20220105 1310698951.2015135 28333.303724015113 3.7148292459237613 8.080907175966474e-05 79494089.30481273 1729.2432954086971 None 11984 65059 GAS_20191015 18284157.325158533 2190.416545434898 1.3120934887032478 0.00015720207428177965 903332.0992760399 108.22832442515457 323217 98313 164596 ZIL_20200117 51909154.94075459 5963.815657170722 0.005085639897669937 5.8364821405606e-07 6887212.288141055 790.403810077109 67405 10516 250475 HC_20191203 53415209.60802136 7306.005009299039 1.201018046277534 0.00016434574460560424 35184715.84212653 4814.630672480887 12807 848 704478 BCPT_20210201 3685714.932971644 111.51757668104803 0.03215807281486171 9.700199111358714e-07 1366589.3504761553 41.2219627693448 10449 3221 1647629 REP_20200511 130533643.46642092 14907.635983581198 11.877608211602572 0.0013548228225944555 41076139.98462926 4685.361810545169 131659 10132 256414 SKL_20211021 741510521.2365172 11187.160310803458 0.3498629725441958 5.297852788576573e-06 38237844.096274264 579.0223169415633 78394 2883 195951 NXS_20201014 11082025.370153151 968.3557914753907 0.18556444226347232 1.6218072334540704e-05 23914.393084858537 2.0900844588328855 23281 3518 544885 NCASH_20190803 4469972.616047524 424.81014696645786 0.0015406090519444195 1.4641395238637097e-07 154078.3335329128 14.643051565344917 60051 59015 884408 IOST_20210725 554117954.5839759 16218.583262438295 0.024481458913660038 7.165429007604067e-07 135736033.17018643 3972.8306751852588 249154 53586 204537 STEEM_20210325 244584949.4315865 4642.359048936499 0.6443406039875539 1.2229944812509909e-05 8380838.645538712 159.073001892441 13008 3913 174807 LUN_20190719 3873203.4075044733 360.88905383510644 1.4246027713681748 0.00013337326167285385 149669.5707553274 14.01227010505024 31190 2215 1689451 DASH_20210125 1056013406.7204595 32732.523053119672 106.27967219207052 0.003294278082045064 697807332.5883396 21629.455133073017 331859 36074 74042 LOOM_20190528 53372460.35846146 6051.8996888381 0.07708436809779332 8.741980031308364e-06 3951595.417339673 448.1423287581178 19600 None 434311 SNGLS_20200927 6687918.530929143 622.9951057094958 0.007295893479334331 6.799964372660427e-07 2184505.555185298 203.60165604410835 9043 2120 936807 SUSD_20210420 219270252.23974377 3919.1953767664168 1.0104465187624245 1.8066180320020667e-05 32388657.65970969 579.0898565521322 113907 6053 27259 MDA_20190621 18443076.97837148 1930.8715704514304 0.9395884768597936 9.836887196317135e-05 899107.8387101222 94.13080943984104 None 363 2360786 XVG_20210324 518293771.5575348 9511.312268448433 0.03154118558037413 5.786105094199353e-07 30270721.971795868 555.3043596277613 297268 52728 128477 BAL_20210217 464145610.88027364 9439.08595261973 42.98391302058745 0.0008739650188689384 117780456.6480526 2394.7563584428794 47413 None 71652 QSP_20201101 16899073.435806964 1224.7065295493512 0.023676007601614403 1.716134091902776e-06 114902.18480342923 8.328581401614024 57680 8207 233345 DLT_20210318 14098499.056589346 239.61716966787554 0.1729712578158507 2.941400035465321e-06 955067.9021469477 16.241061068293796 None 2550 3522473 COTI_20200718 15437069.558430944 1686.1267030773336 0.029930188594830223 3.269710823499472e-06 2036418.7616280485 222.4677083131621 25354 1044 273018 DASH_20190622 1491529285.7268515 147344.08083455457 167.74605136094937 0.016572801463794782 436652109.02383155 43139.904950894575 319900 27583 110566 DASH_20200718 657630102.9217575 71847.89240220489 69.54234045861467 0.007597123638849808 215744877.69011748 23568.958126103927 316798 35140 73738 SNM_20190816 3889174.2150669247 378.0750177254705 0.008990200734277004 8.73956812939743e-07 196045.37224416964 19.05799367358385 31082 9923 19008991 QTUM_20190803 287505677.45973957 27316.990642364253 3.000440674450435 0.0002850721516759015 253659779.56877464 24100.239598488348 178886 15355 320250 ATM_20210324 0.0 0.0 9.719295049604614 0.0001782295869326941 2855172.738498679 52.357321720036666 4896524 None 183792 ALICE_20210711 111359671.92912602 3303.542254019981 6.39998114535207 0.0001898587502310334 118296546.01133999 3509.328210860756 None None 50319 FET_20191102 13204282.346912047 1427.440465494091 0.03882123563189814 4.1967447533725175e-06 5279123.282413177 570.6962330603938 16336 314 460894 PPT_20210218 71451162.6379872 1369.0554697102018 1.9723032843618213 3.7817745086135965e-05 7060260.576192473 135.37630689416847 23716 None 693522 GO_20191026 7050058.347480919 815.6870299914556 0.008554670534372331 9.880917842665216e-07 1660853.8001820408 191.8339213922882 None 688 791048 OST_20190224 12383613.752280887 3009.5493221038537 0.02351392451799553 5.714512500852223e-06 1665192.9099233982 404.68641008034206 17281 739 887864 LOOM_20201208 24844510.025107473 1293.8650816158668 0.029814681939951567 1.5537789161817168e-06 8115449.818354082 422.933065275886 22690 None 381476 NEBL_20211007 24086295.86316722 433.3615717600758 1.3089587074253357 2.3593100590971932e-05 525198.0854456135 9.46634236039186 40923 6229 1209671 EGLD_20210707 1724619221.5825462 50500.30040474113 95.87434956201972 0.0028068408396679004 86939362.20576811 2545.2579707565446 270023 9568 31347 LINK_20200310 1474670491.0531507 186260.70291007194 4.056847648197706 0.0005125905805598075 834390908.2495811 105426.91201713926 45785 13550 95530 LRC_20200324 31770456.294223424 4931.290968136674 0.028034962686931522 4.326482923098619e-06 3093909.866186699 477.4662392507069 None 6821 553678 CTXC_20200523 945992.0065118693 103.26214248275774 0.09275275388346023 1.0132275051228454e-05 13026534.181578172 1423.0135685008001 16398 20059 554748 VIB_20211028 9581718.271686234 163.73112326149715 0.05252325261191661 8.968429411984568e-07 1274665.3534029857 21.765114834688244 33044 1304 4558031 CND_20190523 33301631.73157187 4343.458042768866 0.019152333063492438 2.499107004713162e-06 1170757.5868535528 152.76720994916022 36575 6180 561865 TRX_20200305 1163613411.436144 132918.3912449085 0.017633498611107173 2.013541026725383e-06 1404293283.5267096 160354.00587804226 500668 72175 46870 ADA_20190531 2640985616.9751177 317809.4565288152 0.08489877008479199 1.0220586354399827e-05 331448382.08193713 39901.60054982198 151866 73432 106435 GRS_20200605 14589728.975165602 1492.3869949035634 0.19402764368133146 1.9847135788107742e-05 1171523.0058515663 119.83537878868408 37389 106877 None ALPHA_20210708 260597236.9941809 7669.633415443878 0.9134866173624786 2.688579120461081e-05 120823009.25486588 3556.0698293734113 69643 None 51351 BCH_20210725 8621606739.161634 252344.0749132527 458.6799537608906 0.013424981948431126 2892626257.595513 84663.5109587141 None 592538 283440 WABI_20210506 36381535.245573156 635.5110247743019 0.6185594153262399 1.07898624099443e-05 6753973.255950675 117.8131645020971 44853 7753 287110 FUN_20190920 21656239.719765507 2114.449903295248 0.0036055132366513334 3.520314335830457e-07 773336.9821461461 75.506289562409 35785 17364 353342 DOCK_20190225 4362903.310023639 1160.9461695971163 0.00842639664397812 2.249370173016326e-06 721257.6770598696 192.53490838185672 112 15363 163959 PERL_20200330 3727768.147475755 630.0189392874735 0.010895027872421192 1.8457748612376833e-06 2240255.5202392316 379.53159647012467 11594 477 685227 RLC_20190622 23432133.949864868 2314.3756432413193 0.33626068774734985 3.323554778983455e-05 708657.7413046763 70.04276469411165 24919 3318 714682 RCN_20210128 22635832.179365266 747.8767001067256 0.04449594245338328 1.4636379261163457e-06 612346.899681593 20.142379212502632 None 1126 5522516 BAT_20191022 292263257.9879561 35601.33668840748 0.2161562355921144 2.6323071558191957e-05 28666437.96049656 3490.9411504395644 106696 30885 23933 CVC_20200105 13189588.745098732 1793.7162035016129 0.019620280320494968 2.6683080763402976e-06 3700073.388762496 503.2005427554316 87077 8110 121680 GXS_20190122 34118883.38239706 9660.759079845167 0.5687483928852725 0.000161062251540749 1710288.0127583924 484.3316333969599 None None 235095 NULS_20190906 32238105.381945293 3050.0940212603477 0.43745807642803497 4.1388544632416895e-05 6859216.520911098 648.9604476781053 21318 5302 307386 YOYO_20210428 6292573.221828034 114.22209776803047 0.036025613436926264 6.54034066602849e-07 1226992.2715852745 22.275671904385312 9807 None 783243 LOOM_20200901 36373755.23062921 3112.025816513796 0.04350737315253535 3.731874072664931e-06 13413233.754116159 1150.5291092175073 22447 None 451154 INJ_20210110 64457197.79865059 1592.8861421542476 4.7679961214655 0.00011828334300026139 8983100.928531285 222.85068638202767 None 1962 132125 CELO_20211204 1743598774.144491 32473.95535799279 4.7348795416126395 8.829816738766174e-05 62110115.843003914 1158.2574291435446 78610 None 34752 STORJ_20210131 62107108.558031335 1815.336214413985 0.43077254387403735 1.2608788999359327e-05 39675374.60232088 1161.3052733868876 83707 8664 105291 REEF_20211216 296388060.6222367 6075.550884697675 0.018245424710122388 3.733482418408022e-07 31411576.401240334 642.7615146905749 222322 14436 99045 ANKR_20191015 9365047.082491826 1122.0943806494593 0.002338666779688953 2.801804387310417e-07 1367716.2380767732 163.8571766495471 3 None 5253 ETH_20210112 124728988376.03725 3518081.6781174643 1092.9143378806064 0.030702618513644343 67107873698.86543 1885223.181748738 582570 529669 7761 COS_20200404 10307665.193290275 1532.749072409378 0.005109227627512172 7.593003421914012e-07 4332819.005728578 643.9155178735044 10396 None 122996 PPT_20200223 17303907.373776976 1792.6246447406725 0.4782134017962401 4.9540652703076134e-05 6853042.053994161 709.942831132027 24135 None 954834 GO_20191012 8212491.021876817 993.2504224886941 0.010166906419863956 1.2296249785884222e-06 1691420.0656326264 204.56688358260465 10261 687 701298 ARDR_20190930 51296544.09100456 6365.398060585176 0.051246846529598225 6.364573988420216e-06 1424941.3127576024 176.96980455108394 66706 6518 1028714 LUN_20200501 1921800.973675693 222.06714699701612 0.7088129182833068 8.223169961226903e-05 443920.1361014446 51.50062356671256 None 2136 3953623 MTL_20181229 9511910.53547355 2472.326058459627 0.25570654748132515 6.642680135718797e-05 2442687.2129231426 634.5551174532944 32373 None 597476 PPT_20201224 15111754.31669502 645.9637453885786 0.4157336680871468 1.781493858639543e-05 3522437.999681778 150.9428306046222 23556 None 1593572 OST_20200502 4831053.293662795 545.1653390063614 0.007068009569141276 8.002037706733747e-07 483826.1658717881 54.776315523308526 17748 753 852611 AGIX_20210821 191481261.0570525 5830.0 0.29694647322130874 6.037372307703969e-06 3420097.301932388 69.53576688870382 57647 None 189505 FET_20190811 23219837.053568445 2050.0621019691193 0.07443153793945917 6.572516046013664e-06 2914499.551108637 257.3585820750048 16389 297 429380 RAMP_20210427 138304145.84175307 2566.5197141626863 0.5065429359362613 9.396762324504923e-06 45632938.59195615 846.5262225496651 None None 95701 MFT_20200404 5592333.0916703865 831.6118897242484 0.0005836744280118123 8.676368801273469e-08 1539192.17452978 228.80219384879723 18354 2527 847135 ANKR_20210218 168781328.01987553 3233.9711738674046 0.025891978199279367 4.965808651831861e-07 54738554.35666312 1049.8278065932086 45824 None 5433 VITE_20200927 9587271.443396814 892.8746133523039 0.01784768820259659 1.6616274813654479e-06 795612.8858203327 74.07190335245775 None None 356390 DNT_20190510 8223547.468017821 1331.922043481167 0.014160634563080487 2.2935188734059036e-06 525468.7544424419 85.10723868554241 60907 6407 1175150 BNB_20190324 2185889843.1694818 546180.1701475008 15.137508738888764 0.00377977796004978 116868631.7934292 29181.649787533293 936216 48292 1100 FUN_20201231 29087501.36599477 1007.0053310405831 0.004831870230720702 1.6755098384576593e-07 4516513.9454533355 156.61562065605293 33791 16515 356906 BCD_20200422 94518499.20158954 13801.80977232226 0.501541841719883 7.326635999986653e-05 11721063.23707131 1712.2392735242513 28770 None 812794 MITH_20200330 1955750.8937086565 330.5356059762486 0.0031607909499132714 5.341958198023249e-07 2513433.1153224655 424.78780939145537 94 2088 1254611 WBTC_20201224 2646152884.8439064 113169.49925865498 23279.139864956287 0.9983452527042735 365896591.5018665 15691.779302226778 None None 151511 FTM_20210718 497735511.6517059 15748.311437954795 0.1962901134259361 6.215843087266674e-06 20591930.123219475 652.0766852487835 None 9228 42722 MATIC_20201226 79873722.51776755 3234.3943846051384 0.01661314535982658 6.734545344837381e-07 9404585.02317088 381.23788672239687 67616 2564 52359 POLY_20200324 11777539.989319548 1830.3577704818815 0.01920903051764329 2.981553611351162e-06 5272792.89760779 818.4231209029309 34921 4996 422167 AION_20190511 52266249.624584116 8202.324912584367 0.16931097398853132 2.6576084763329186e-05 2053236.9528910315 322.28861493011084 68785 72513 275245 WNXM_20200927 106946778.87044233 9960.003742691379 41.105168360089195 0.003829096289227987 27044206.827687908 2519.2664606516955 13073 None 79647 KSM_20210420 3315139523.5872154 59218.40374381514 368.7117002415621 0.006593081838477796 333876359.76025647 5970.1771394568095 50775 None 86081 PIVX_20190213 42258625.68646921 11630.011269587687 0.716106844167445 0.00019707364084680385 757468.2202087764 208.45635144828637 60682 8588 177643 MATIC_20201229 91005257.14504048 3353.7126748506034 0.01894935853895571 6.981368238508573e-07 13186038.04599964 485.80318440257207 68542 2572 52359 ADA_20210616 50391529523.78449 1247773.826113427 1.5665343287257434 3.881318822516632e-05 3023834612.6468573 74919.94259576972 506559 520157 6543 ZRX_20191113 181769271.42423084 20667.983138528 0.30156333942055746 3.4266713003500405e-05 26643192.264302205 3027.472187342705 151420 16000 145983 DOCK_20200621 4206510.123820087 449.64043625826696 0.007517235415187822 8.031119312606956e-07 533602.2265878435 57.00796783005405 None 14973 320646 AST_20210711 19671870.873573083 584.669004651221 0.11454721828629334 3.3969568050385037e-06 785892.9354005128 23.306060111107087 44228 3696 208588 ELF_20201015 43282409.18887229 3791.8340160458847 0.09386999855037965 8.214016714618043e-06 8486570.32861893 742.6103292378873 82611 33352 451670 WRX_20200315 17345393.263893276 3354.918894978874 0.09372468869144812 1.808972300324681e-05 17359244.692787923 3350.4931563114255 20701 None 24445 FUN_20210120 105803518.52399221 2922.4616663652605 0.017552948525122146 4.851455682939286e-07 3191537.6812636103 88.21084160829594 None 16498 254768 GTO_20190325 21036516.454216715 5268.044026852156 0.03429394945077421 8.594170936392238e-06 5741253.061390643 1438.7759645327908 None None 763541 VITE_20210421 101243194.73712762 1792.0570249030707 0.17020710860023122 3.0187166861111686e-06 19611465.267244104 347.8201229560102 31038 2152 143258 AST_20210902 39263050.849186294 807.6978825195945 0.22815695048556728 4.689257819379554e-06 1233490.9079180425 25.351657588244983 44884 3699 236266 ALGO_20191127 104435823.47353967 14566.74413465799 0.21861541911979276 3.0510612558993286e-05 101670942.10116103 14189.496493184519 13116 682 425453 DOGE_20200523 314467655.8578066 34356.75357483433 0.0025213071058175353 2.7544890411191724e-07 142767321.29591206 15597.109175322681 140861 155587 108072 MIR_20210429 579060331.4449775 10578.782798115839 9.712887554855515 0.0001773860865121731 54441377.201314576 994.2607480559773 37704 None 17155 ETC_20200610 789514261.7709085 80766.97447312341 6.788150659801516 0.0006945672714575056 901191978.2395892 92210.45388576649 231868 25535 386099 NAV_20190126 10764455.005742284 3018.622376287682 0.16812051839051828 4.714519763945153e-05 283067.0048614008 79.37906697622329 48089 11490 725483 WABI_20200625 7641498.793085709 821.3280329521173 0.12917688689258905 1.3896144544332343e-05 2681946.6191086452 288.50918129267365 None 7666 978945 CHZ_20210112 94821238.8024662 2672.7221254038213 0.017735484718994797 4.989074122416786e-07 32336416.637816653 909.6384001652615 66084 None 151849 AUDIO_20210708 212653578.76471874 6243.228609867055 0.9176978370062548 2.7006529529757853e-05 28346747.55992723 834.2040747825673 52368 5746 30965 AUDIO_20211002 964869317.1166736 20034.679155217567 2.342486610557691 4.863793535438353e-05 29372615.983568918 609.8747335242338 88025 7694 20921 NEAR_20210420 1679866195.7034876 30009.805405692474 4.751879353623121 8.491362450223494e-05 90074252.08887902 1609.5802628833621 50749 None None MTL_20200323 12132585.842636336 2079.539917978038 0.1865332185942979 3.19905230309361e-05 1278420.9667130827 219.24971695157706 None None 635134 WTC_20191108 22855481.140357405 2479.0324405260435 0.7826984389011721 8.489899151637511e-05 2220266.1100472035 240.83139082994074 55473 19717 533151 TFUEL_20200430 0.0 0.0 0.0019280464824490034 2.1991214654227678e-07 257991.48482275728 29.426396994815413 67643 4026 358410 PERL_20210107 0.0 0.0 0.027941206460155146 7.570219204755478e-07 2965945.453363349 80.35750805294235 13449 504 591773 DCR_20200229 192807688.96280456 22028.156287226968 17.20541392571482 0.0019746628661870954 31697561.59500508 3637.9245568039582 40901 9742 202166 WNXM_20210206 104371149.50028579 2754.335417340806 60.59237773163364 0.001592351979595366 43595050.56468215 1145.6666278172822 20475 None 132574 FUN_20190318 28007046.904123083 7032.990290524169 0.004669130371863337 1.1725467873181451e-06 477356.1977956487 119.87724298825292 36476 17796 506904 GRS_20201224 22412334.909039766 958.5208524423268 0.2871440860899249 1.23155926858747e-05 10375521.535046013 445.0054983515525 37580 106784 4622785 GAS_20200520 17842899.527285106 1829.0879510336442 1.281176637937125 0.00013123653141001792 17993851.55276495 1843.18898313187 320279 99439 247839 LSK_20190426 230019176.4972646 44289.42012362673 1.7496634769130668 0.00033627161263160714 4999166.600944283 960.8006550376941 183878 30426 165953 CMT_20190805 31075714.226620194 2837.854665753168 0.03877743589207576 3.5413364436904712e-06 9289511.68296695 848.3615667249903 290682 1647 586149 NBS_20210614 0.0 0.0 0.017214585445879376 4.409748232378679e-07 20169204.165164202 516.6613665803216 None None 498254 KAVA_20200412 9543891.94886409 1386.9726450191554 0.49320911467143297 7.166855383877991e-05 4218740.810501728 613.0281130565113 20660 None 284724 KSM_20210219 2022231144.6638017 39126.809962313375 224.8541537825668 0.004349172270059303 331109158.0979354 6404.376990761515 36399 None 97488 ALGO_20201111 231511855.79452467 15135.86693966211 0.2870506762823446 1.8790715001532866e-05 102757211.2389745 6726.622266671318 29756 1450 286881 CELR_20191019 15157028.895336498 1904.4927806021499 0.004497423777512869 5.651123066561365e-07 5362604.287239371 673.8243555340069 18456 None 557601 BRD_20220105 61368953.53995469 1325.0520503097728 0.7046045052439159 1.531385927767123e-05 2117871.713115228 46.02977860832681 1126 None None MATIC_20210219 610942758.8104551 11820.72647081214 0.12324980625448415 2.383921447012839e-06 254597009.402998 4924.464301452436 303 4363 35829 ADX_20200907 12599681.978383219 1226.9433634340314 0.14822339508780508 1.4433833426959179e-05 483989.7087390743 47.13039282472244 52700 3741 10625 DASH_20220115 1487462910.8877451 34487.492986259196 141.2765681446019 0.0032755604306811694 195557132.95478198 4534.079607514984 422668 43879 66112 OGN_20200707 20600017.729563277 2206.8593643912886 0.27408595506286487 2.93354577164239e-05 9769777.869065044 1045.6606779106075 64490 2303 159966 BQX_20200531 5999924.14626064 619.1254159330786 0.04256895509772931 4.400446072452586e-06 850238.1230462265 87.8909759616768 11523 26 412485 RVN_20200107 126091118.29844251 16237.331895480984 0.024035080573434883 3.0991720674303024e-06 11174372.158783922 1440.8648208922884 29351 7304 200333 DNT_20210207 152380566.31095335 3886.018285518845 0.20451563821397406 5.19886267840195e-06 183593158.35406482 4667.005551811489 62283 7395 232543 DOGE_20210108 1249855746.9754574 31663.20731706295 0.009776329160118814 2.4766853114511327e-07 505843512.6699151 12814.781266092292 182796 181349 103049 XZC_20200316 30725201.546514835 5717.800699487888 3.173249131846759 0.0005905252103311527 43654036.6746669 8123.789881605937 63703 4091 90239 LTC_20190922 4633804865.855344 464010.11760266183 73.20041741342708 0.007330035392035481 2501482678.2638345 250489.78150873585 450948 208571 127570 UMA_20210723 529974470.7190632 16371.594816879227 8.548355281966632 0.00026404585176789794 17447230.87706446 538.9187493931346 41852 None 160207 HIVE_20210610 148917624.28452897 3967.3361322242417 0.39422001221875325 1.0525542527495029e-05 4107545.3439625185 109.67008741682295 20460 169 114577 VITE_20200320 3918184.428568655 633.2007058573367 0.007983942218404576 1.2933603435195448e-06 1337169.9474813426 216.615117608413 None None 513506 RAMP_20210909 142106290.01429978 3067.360757504416 0.4152695681451772 8.965762353456138e-06 31502104.070503887 680.137434562122 32937 None 106838 RUNE_20211111 3628148514.1947403 55936.4317630655 12.272725810232416 0.00018904470777703287 174390135.33563158 2686.2436824128285 125039 8390 82117 KEY_20190702 7498299.588991985 706.3894953200809 0.0028661368032625438 2.70154143530002e-07 1170489.9747161525 110.32715405278238 23985 2843 905724 SC_20201130 144631020.2667256 7973.156718609987 0.003213386421048818 1.7685373131700746e-07 3503689.43395807 192.83101021171734 107007 30080 144998 CDT_20190224 5259545.598470358 1278.6664487262613 0.007799844616022323 1.8955708362869273e-06 387448.6958878485 94.16039480757605 19474 282 414605 PERL_20211120 0.0 0.0 0.08061817121880842 1.382212522011185e-06 1874646.7754006288 32.1411439646018 1215 707 1338225 DNT_20190213 6419227.937070937 1766.6100612117916 0.011016916264771658 3.0318713148554267e-06 601472.2294623947 165.52602882354506 60086 6494 604362 CELR_20210418 394361244.1216299 6541.869731187498 0.07019820640846909 1.1649330670551167e-06 87556375.00326526 1452.9903496291645 None None 141780 DCR_20210114 692211549.0378067 18522.03693668431 55.45492530366333 0.0014838500978830423 25915149.979453024 693.4316045526224 41448 10127 378546 OMG_20190903 152596938.62756616 14767.287282007404 1.088315978568875 0.0001052957999545967 50757730.20827116 4910.867718020254 None 41311 None FUN_20190329 29298665.82992578 7277.250424037943 0.004874257441060453 1.2106385894475159e-06 1410787.329013152 350.4028260016002 36549 17788 506904 ONE_20200309 20899289.967470605 2595.6050544945383 0.004084936859368275 5.077879498990528e-07 17566388.436154943 2183.6323738196043 71383 None 408073 XMR_20210603 5254168419.035816 139630.90224708008 293.6411067667142 0.007798458796005302 292404483.50722563 7765.616815393355 421285 223382 31429 QKC_20210930 107473356.04571213 2587.3305478626316 0.016481808195729877 3.9651584453161267e-07 3853478.2951236796 92.70616320914785 75694 9561 529258 WABI_20210519 22142046.229707822 519.2161041534195 0.37522509885150795 8.770860394783346e-06 1399747.565921624 32.71900127740356 45272 7804 265814 VIB_20201015 2986396.89284803 261.63095718814117 0.016376942955460643 1.4330508708626785e-06 669351.7917054711 58.57107584887714 30558 1099 None ALPHA_20210527 273151210.2985646 6971.793729959485 0.9583191750422253 2.4461928995235497e-05 48608637.095750496 1240.7776658951093 65143 None 38513 TUSD_20190228 204108300.35436866 53406.628324690246 1.0050411178558913 0.0002634623036795355 58900825.07407942 15440.310636989672 8240 None 263322 NCASH_20191113 2818420.125705755 320.36048448342405 0.0009722703636835017 1.1045987352095048e-07 229570.95140306387 26.08161186770626 58946 58667 834615 WPR_20200713 5191799.729052344 559.472091005455 0.008537960454870309 9.189303333061758e-07 352217.55669505766 37.908748638610625 32894 None 3997940 PROM_20211007 301803519.3205279 5436.99900455535 18.37572993467433 0.0003312488569093526 44392287.828442976 800.2345839342745 11803 None 645407 OCEAN_20210902 397068196.47478116 8162.705820957303 0.9147677701643758 1.880191973684439e-05 55841628.0445047 1147.7555754711743 121220 3447 163471 GVT_20190227 16547872.99832059 4344.403449430461 4.186580492644782 0.001098861346364999 2535889.1866742163 665.6006281969043 20676 5804 148821 XVG_20200301 60030950.41713722 7000.083721558935 0.0037042876761904124 4.324044832380461e-07 779747.1480741461 91.02051246897003 297062 51984 314536 BTS_20190712 134196631.53140555 11858.858071116576 0.049691971003764 4.378815624250711e-06 24643072.190729473 2171.527257997691 13690 7181 171113 EVX_20190207 4782567.202340632 1403.8113652284653 0.24809081341909728 7.281578263282378e-05 538652.1178835044 158.09684764206676 14077 2328 1281949 QSP_20191203 7411502.80143088 1013.7446624858853 0.01044184839967591 1.429207014967887e-06 81334.01411222393 11.132429726550662 55622 8415 442072 DGD_20190920 30421149.256638926 2970.2292242878334 15.223004788873086 0.0014853693930656888 1085831.677753498 105.9489346896282 17289 3369 538258 ZEC_20191216 267195760.27778858 37547.330234272325 32.904235224668426 0.004627751129099255 147206309.19682094 20703.540408846777 171 15398 169919 COS_20200224 23862649.531112608 2398.4834374407797 0.011880790797636575 1.1939673570682622e-06 6584388.541268618 661.7021643115646 10147 None 173574 TROY_20210729 14525500.43144987 363.25524852912787 0.007645000227078879 1.9118697291006735e-07 3130857.0110198976 78.29680271701837 58221 None 506506 SAND_20200905 23870764.604298797 2276.7663572021384 0.045259260909798205 4.316468511938e-06 8399039.977572208 801.0336639379409 36006 None 106488 STORM_20200421 7983427.293193977 1165.8465789498812 0.0010467065962989576 1.5287807214911562e-07 204845.46598743036 29.918966823536753 None 2510 799916 MITH_20190622 20413256.704692926 2017.011703152017 0.04786653084007669 4.731062628600409e-06 13272974.736965075 1311.8827215244287 75 2077 556863 RDN_20210108 13276041.632523315 339.60120383769413 0.20052458073890017 5.079987340513144e-06 673319.1668776874 17.05752397666013 26616 4384 1792183 ATOM_20190914 774275195.5724449 74771.62212549068 3.1669360906511392 0.0003059147510524359 193574995.10346356 18698.65533815592 28508 6867 108058 ALGO_20200320 109859322.0152019 17764.488362983793 0.15815263644824934 2.5619968508001577e-05 92852272.76952629 15041.622812466041 16112 822 354014 SFP_20210527 133364827.68164396 3401.992031008033 1.249006041979717 3.185957383330808e-05 24314263.364895165 620.2068227376557 None None 23941 FET_20200711 22075658.277807623 2377.765777466145 0.034954580582097564 3.7650102611363607e-06 3544912.000498728 381.8277843544998 17881 431 786167 AMB_20210725 4724973.362618918 138.32528033361922 0.03251089511113733 9.51417497121299e-07 746446.3903338381 21.844435657613122 715 63 487480 HIVE_20210602 158601000.1778558 4322.649228294749 0.42625487749558877 1.1620301256057173e-05 4091757.0426642587 111.54699221675024 20112 167 114577 LSK_20190616 263067046.66361338 29831.523384566328 1.9809378189320357 0.00022457761474022002 3978351.672416017 451.02310665694233 182960 30468 183148 MFT_20191213 9577898.21427993 1329.5042456967074 0.0010702962070322424 1.48674541922722e-07 1174249.001998143 163.11459512630805 18589 2392 1112514 ATOM_20200701 483876645.68977696 52892.99359801115 2.5966333418812506 0.00028390397628291596 96168829.9621246 10514.658646777634 34900 8634 179013 AUTO_20211216 21912480.13415794 449.1759478621023 626.9239898624296 0.012847242943986942 3038123.724832426 62.25876536544354 82269 None 20186 PERL_20201226 0.0 0.0 0.022960525144146846 9.31153895499831e-07 1408779.8023672441 57.132438942066024 13423 503 454264 BEL_20210708 60748843.94861438 1787.830245440041 1.2625381083153997 3.7159094969601256e-05 10547421.019351773 310.4323083486291 None None 582298 MTH_20210127 3193915.4147046106 98.0048969338026 0.009184892583578642 2.8198962110204847e-07 191035.60917839504 5.865072297691002 19060 1880 1172879 FUEL_20200610 3289941.6834765314 336.5596403178295 0.0033200618337000717 3.3998651284809085e-07 217484.56102640383 22.27121698491372 1 1466 None DGB_20210704 654109593.2521924 18831.78141069957 0.045245192247063366 1.3026067482750843e-06 15288360.004474761 440.15109501894716 222160 40006 90181 MTH_20190712 6335854.245743911 559.3817051679947 0.01863691954488021 1.6377974418335716e-06 284377.3524810155 24.990852124849088 19541 2006 1459879 VOXEL_20211230 108566456.9432856 2340.834058113201 3.048828064405494 6.546542101314984e-05 189992246.38548332 4079.5748845499734 None None 61293 NU_20210725 113165302.53861628 3312.256653043387 0.2038707640683682 5.967039337536602e-06 19723483.790913135 577.2814174286241 None 7134 130828 ENG_20190511 31124564.779771503 4885.717840458342 0.40253171158561285 6.317611269143608e-05 761323.9366235873 119.48744764818318 61959 3397 347491 STX_20210428 2345866056.2633333 42578.73779791508 2.231508774161116 4.0495153044780466e-05 42239627.45085477 766.5218250463287 60662 None 58797 XRP_20211120 51349868689.57812 883456.4319783977 1.0913054764142485 1.8762377451710713e-05 3888778263.5930333 66858.20531871385 2236799 338042 19899 POLY_20200719 27056379.978702348 2950.4121809464255 0.04056844385815819 4.425402490040746e-06 651579.9208380498 71.07749595274144 34989 5007 381210 CVC_20210703 158751382.2078412 4696.805475858766 0.237893023460225 7.025505582095081e-06 16642567.309555506 491.4917126740558 103488 9832 166246 JST_20210722 56760550.87093499 1763.793262395107 0.039736154521321405 1.2304108903162563e-06 52761950.28280112 1633.7483836652984 None None 151372 DCR_20190531 272646444.451185 32802.87016519138 27.641718872158382 0.00332766392769623 32293359.074547414 3887.654258894577 40478 9459 369849 MTL_20190522 20824325.561833818 2622.0289622709793 0.4577546779381912 5.7636729679674994e-05 5778440.601613742 727.5740368736118 33351 None 919877 CRV_20210710 631930841.4584304 18593.871001577867 1.7799568175866305 5.237482992732303e-05 96546300.72782426 2840.8532335003542 140415 None 15400 BCD_20210602 508004557.498353 13845.085729341568 2.6886734140611477 7.329697957735536e-05 6848907.042344242 186.71073882924716 None None 1364955 BCD_20190324 160178876.17045018 39992.23471719496 0.8510248426947689 0.00021253135868325618 2548326.450883221 636.4083112541318 20845 None 3287367 COTI_20200806 26749309.57305082 2283.437576305405 0.04715736942222485 4.0239654999371185e-06 7816934.460685569 667.0235208294675 27134 1094 206457 MITH_20200526 3480081.119193971 391.0739712262298 0.005509434342927544 6.19926124960337e-07 13805326.506469643 1553.3867965872419 95 2096 1339097 RLC_20210702 198504892.682552 5908.734047982303 2.787260242609293 8.28733591206636e-05 15301388.48564935 454.95481319996696 45408 7701 151690 VIDT_20210704 16996929.529532723 490.55633566772747 0.3684659184787641 1.0608114764966376e-05 536799.2688641549 15.454423229618689 29407 1618 805010 XVG_20200423 52507536.055822685 7380.617442008865 0.003232200391920595 4.5432782378733656e-07 2747738.397977061 386.2303865225474 293488 52028 294741 FTT_20211002 6650197197.647939 138085.60891121428 55.286001130871426 0.001147791256785841 478647137.2691415 9937.18098624279 253137 None 1144 FET_20191020 13686962.010793587 1722.5493083203676 0.04038317908279285 5.0799092654226e-06 4715266.742661689 593.1461504275803 16322 309 518889 CMT_20200318 4989127.164089008 918.4248027727745 0.006160997305226997 1.1431700130965798e-06 7767372.636553583 1441.2321640072232 286514 1638 911838 GTO_20201229 14637953.05812432 539.4205832248681 0.02215995349623029 8.164223352857355e-07 24641539.00483929 907.8495053154224 16506 None 1147835 APPC_20210418 26155648.33665614 433.88351848383496 0.23230043068474682 3.854334606705516e-06 4051542.136213554 67.22328934174836 24842 3145 715817 LINK_20190530 427457667.36888075 49432.73123694108 1.1730143875025707 0.0001356515729648625 48006030.2251811 5551.588779494213 13716 7122 356861 OAX_20190224 3059445.376740913 743.4107879678417 0.130390353937345 3.16833882705977e-05 306239.10873046215 74.4126562476496 14237 None None SCRT_20211225 841533179.6034387 16550.607566078263 5.401752452848711 0.00010624979267060872 15862632.290076636 312.0101127814399 None None 56219 PORTO_20220112 0.0 0.0 3.1981630019630725 7.476100706090064e-05 38125967.987341926 891.2415534029284 None None 209617 XZC_20191015 46610523.92101489 5584.032743575542 5.428353826278467 0.0006503275003091304 14240124.861472402 1705.9950588372321 61123 4055 207313 ADA_20190908 1425532107.2667506 136167.75171487214 0.04582084104840284 4.376836463689707e-06 67058124.93614473 6405.435598555186 154419 75258 100209 SNGLS_20190703 7986220.11228207 739.1153879559782 0.013531526160044124 1.2511631126420338e-06 238858.78321635595 22.08555747195113 6 2180 None TRB_20210204 61746229.491474554 1647.4734610637233 37.13334523526541 0.0009899712171599763 61763242.42406559 1646.601777752865 13453 None 357137 PPT_20210127 40653289.866807245 1247.44113919652 1.107699684083412 3.400799860936835e-05 5130272.848981069 157.50687160139196 23520 None 734972 LSK_20190930 108581637.0518688 13470.578883334332 0.8019343873920389 9.951964763096023e-05 2961041.2061845935 367.46370038897476 181230 30988 164016 REQ_20190509 15894130.525861822 2668.2106517467355 0.021768298536044953 3.6547670965837215e-06 1435160.792839502 240.9549113492545 42099 30170 371026 ARDR_20190227 55673913.023693554 14617.197937948822 0.05573186414303687 1.4628069703960392e-05 535061.7504545135 140.43888001814804 69405 6605 792340 POA_20210115 6099491.302142068 156.17340180358363 0.021960250084672665 5.607554812439584e-07 106669.94705188808 2.723819504 18175 None 255706 FET_20200605 8311475.105351776 850.3700295375651 0.024437772044467173 2.4999927105266074e-06 1475557.7019517303 150.9500740136374 17109 403 941705 DASH_20200421 704749449.8669244 102933.08327736246 74.49401611665182 0.010886782317270112 724380678.7506752 105863.19781773932 315477 34644 68820 WABI_20210704 9978809.64685483 287.84840334162743 0.16900997985683172 4.870762398495133e-06 476482.8002317625 13.731937657554395 45500 7891 437012 NAV_20200314 3449616.723061325 622.6512814350145 0.05039903032327989 9.133622194449642e-06 187863.36397538477 34.04575404969575 49696 13981 1136873 OMG_20210731 595471732.6302187 14272.630653180151 4.248908585175125 0.00010165275684759218 215645937.7128497 5159.208213605709 326092 5010 262702 WAN_20200414 13662945.342408275 1993.1501258943338 0.12851292183370047 1.8768088114418645e-05 421926.0470389741 61.61828021343179 105197 16303 867725 ENG_20190830 26016433.746430587 2738.935128356227 0.3314319692179898 3.4942623857058046e-05 230871.11075504596 24.34056799532445 61554 3471 308569 KAVA_20210825 650725582.6350629 13541.33109121138 7.9737294459360735 0.0001660392410156261 241302204.47363043 5024.704582448435 129015 None 51016 YFI_20210603 1637517751.9830961 43512.93340683176 45387.96722806322 1.2054040939972812 330292630.44406503 8771.842258408984 125160 6227 17925 BQX_20181229 11442234.277247895 2972.4347338922266 0.12941326664219516 3.36186516962524e-05 1118322.1034639513 290.5148927622896 61011 5828 313625 ELF_20210725 87640027.4710507 2565.1183505158183 0.1899772558254702 5.5603939286148995e-06 8095702.304280687 236.95096418252822 87896 33389 615767 NANO_20190205 108016047.90085289 31167.586512760947 0.8100645970799327 0.000233800234846821 1231163.5325136047 355.3374929285046 97372 44654 316685 PHA_20210508 158136974.1990393 2759.6313226443635 0.8899735498596197 1.5529162494070178e-05 47525511.91790003 829.2734062752226 43766 None 179387 STEEM_20210813 207281706.08317316 4662.7399061541955 0.5345671515162387 1.202410947807594e-05 19912078.077562742 447.8857446842901 14176 3926 205413 THETA_20210702 6371116198.544127 189643.845535794 6.374225483755731 0.00018950964671408268 244207337.14012998 7260.434433070083 180492 20862 18384 ARPA_20200531 0.0 0.0 0.011314125548486499 1.171910771940546e-06 2179666.5428530625 225.76863672417127 16712 None 1040407 ADX_20190312 12373087.689081222 3200.0768371953277 0.14210669870006948 3.67555674567103e-05 3589509.380173077 928.4182615339399 54317 3931 897974 BNB_20200324 1829868580.8328981 283848.75417720847 12.10417697448936 0.0018787649141155111 324459115.2472918 50361.32593536285 1126510 60459 1672 CMT_20191127 11320728.73737308 1579.3966304009537 0.014234317918481997 1.9889136249107663e-06 4141941.6424999936 578.7396497346214 289607 1642 892469 GAS_20200129 15715947.312819695 1682.342062814014 1.1229026138691012 0.00012036344649839288 3689148.3206533045 395.4382161313166 323180 98713 204331 BCPT_20200316 1361752.682880364 252.05589412251803 0.011709930169707845 2.1791572893003386e-06 78917.3422824556 14.6861082171008 10674 3166 1690012 BRD_20190812 14647141.756651543 1267.9146405254542 0.24386705814432907 2.1110099055513842e-05 211323.13162129 18.2929677964402 None None None FXS_20210617 29545617.219463907 772.4565444753758 1.9798463455680582 5.169460844323463e-05 2192646.645006727 57.25091243657748 11320 None 151064 XZC_20190528 55622752.620431736 6308.062253002229 7.311532077134598 0.000830812836102638 3169334.2365436945 360.13294311525215 60297 3976 368691 EOS_20191118 3497433618.2219825 411491.54676793434 3.3959523891162036 0.0003990734673301419 1658715114.6090791 194922.9895629459 1348 69092 83056 NAS_20210421 52431661.276859865 928.034438066352 1.1516163551355854 2.0424549455284e-05 16479079.353560362 292.2655359429279 24781 4891 465428 LOOM_20200414 11808965.158370696 1722.6805058429788 0.014238363679357543 2.0793773912098886e-06 25453091.588063393 3717.181579042357 21571 None 466308 TWT_20210509 336245757.5863983 5733.719047334695 0.970503265962358 1.6529729969679162e-05 33844192.94130016 576.4384211594313 638321 27718 4038 FIO_20200806 24166771.70382417 2062.756304637131 0.25341703065823523 2.1632591317096686e-05 3240241.094434202 276.59866103982915 51932 129 572338 IOTX_20191020 17287263.712735765 2175.6591512157056 0.004191294656990348 5.27234285307511e-07 1519366.8502477363 191.12526342528963 22577 1777 522982 DOGE_20200317 197138248.7926614 39147.6758740189 0.001593020626084345 3.163417323249455e-07 100216039.67173201 19900.88205852435 138974 150401 105974 CHZ_20210718 1284412100.645891 40633.80050314035 0.24010069001684392 7.603175668102502e-06 165857116.64345047 5252.133151123617 364436 None 41451 RCN_20190228 9334140.160028284 2442.7502237027534 0.018632768118632053 4.887061921041719e-06 2349301.345621697 616.1822588109776 18229 1114 2734596 GXS_20200410 27954825.234249733 3835.667554261254 0.4299860938318805 5.897128557817802e-05 11577403.100089323 1587.805638979553 1 None 493162 WPR_20191213 4263163.69473175 591.7680586535699 0.00702920918546998 9.764254501345316e-07 748060.1297614009 103.91282001392523 33978 None 800909 XVS_20201226 14430032.782453753 584.3093984187718 3.892147108316879 0.0001578442966358525 2731605.205759746 110.7790354245975 13472 None 109948 BCPT_20200313 1105201.020634552 229.65171052057698 0.009486913192577811 1.979709646586435e-06 184376.32844414416 38.47527521476974 10688 3167 1771218 GXS_20210727 31094912.332316916 830.5621902266543 0.44270181626853333 1.1864326414722395e-05 6107328.6946157515 163.6752741736425 None 27034 558664 TFUEL_20210111 0.0 0.0 0.026601997762608243 6.936244475113562e-07 7867911.935787548 205.14910640281042 None 4885 64313 LEND_20190507 9689079.333905641 1693.836178156755 0.008686719803032048 1.518604582005758e-06 1464873.610984897 256.08789372077064 11580 5899 565182 TNT_20190915 12095821.34588528 1168.9549023246825 0.02822952181787647 2.7281353597797466e-06 534698.9625528321 51.673958772272925 17479 2530 571666 SC_20201014 144979601.11229593 12690.385953221796 0.0032326116941869677 2.8290741762242695e-07 2328861.5066484497 203.81420881170664 106975 30075 160813 XEM_20190819 497580555.2298616 48215.24027664301 0.05521076074941512 5.35110396122395e-06 47252387.089624316 4579.76728268963 216921 18411 173706 ARPA_20200306 0.0 0.0 0.0122423694710613 1.3523310246481005e-06 5066979.35365154 559.7146367287617 12173 None 2543726 ETH_20200331 14615131244.892355 2272441.728510185 132.36373895414985 0.02064616034505295 8469234427.790874 1321035.3030038148 452594 456341 20247 STEEM_20210826 234889817.04746944 4792.110772283556 0.6040401221701324 1.2324645359440419e-05 14523342.875905378 296.3297367334053 14244 3927 204602 RDN_20190512 13899935.90128115 1908.4986141217262 0.2740950628849106 3.766770127118119e-05 628374.9003940407 86.3548499751325 25677 4447 1314746 EPS_20210624 88431465.2965917 2623.0964269915835 0.42064148294712184 1.248139051413251e-05 3716743.874749311 110.28425303356917 17547 None 20325 RIF_20211007 202583293.0430874 3649.2169216549223 0.2625889862790539 4.733076900958358e-06 7451932.153011647 134.31853498777818 44799 3496 1460969 RVN_20210112 118728083.15533285 3348.821308223088 0.014956381908596241 4.2075271552098075e-07 21213825.594791837 596.7870291187887 34934 10771 220085 XMR_20210703 3772830685.8749604 111622.66166417192 210.97379435759274 0.006230521384679725 155717319.28567672 4598.675824780193 428577 227379 31847 SUSHI_20210725 1553059405.8386812 45456.78961804932 8.053851966227258 0.0002357265745692693 260908977.83847573 7636.492435934825 117445 None 5721 BQX_20210117 263307633.42272228 7255.715372530789 1.1830004000387304 3.2683300885461374e-05 17988426.879589453 496.97461483740415 24011 190 96295 ARDR_20211216 238107541.70177913 4880.6140372041 0.2396827627336514 4.904562570266842e-06 13358213.511428187 273.34545566211057 76087 7432 None TVK_20210506 115442676.75351524 2016.547496170929 0.5242968430899393 9.145589993040432e-06 20395673.256943747 355.7726270879514 46773 None 59216 QLC_20210711 5542427.726344075 164.37523782302839 0.023170441629958374 6.871986306525673e-07 584614.1917694949 17.338731754021214 35008 5680 940522 AXS_20210616 247233250.18589923 6121.885591532039 4.462655459965553 0.00011056884179014592 22433492.09862637 555.8227071091557 93472 None 8042 AKRO_20210806 73010986.93411851 1781.1616370103484 0.02693119858212508 6.573253629187451e-07 16638333.918838972 406.10145323510125 43941 None 238743 REN_20211125 868781886.3180147 15195.79468995592 0.8700828148196051 1.5211518088967319e-05 80060333.26283138 1399.6819462395736 105122 1219 69295 DATA_20211216 0.0 0.0 0.12001421110552118 2.4558178526269156e-06 287165.7997301303 5.876194920125554 72950 4812 146581 GAS_20200511 18647606.219109524 2129.655758449442 1.3144692093811807 0.0001497468679612921 13286613.832361583 1513.636677837433 320605 99363 218752 SNT_20211225 292880881.19781727 5756.663701906918 0.07541748716203271 1.483114470135373e-06 9090021.439110497 178.7588374725449 145499 6262 174489 CELR_20200806 27172068.98609627 2319.5261612032127 0.006889662476791052 5.879153691797489e-07 5738022.901479459 489.6425425554936 22240 None 493813 VITE_20200421 4874406.513787773 711.7718329562024 0.010001063961100337 1.4607182024257776e-06 3584774.9842146533 523.5789003459998 None None 537072 SNX_20210624 1046094269.780462 31028.124973050995 6.645370112382595 0.00019718326139036196 54976357.76529037 1631.2737048797185 137326 6936 43067 FUEL_20200306 2867975.823726023 316.77457845501004 0.002896924872062995 3.2e-07 72668.77587057839 8.02713543 1 1471 None TROY_20210324 43265100.59232552 793.9664812540789 0.02282006289868849 4.186249811427821e-07 23143175.70210718 424.55235705925753 13326 None 609547 SNM_20190605 10659531.819396315 1389.9671950042446 0.026151942638361913 3.4101256010899026e-06 893702.543894581 116.53581406314139 31427 10007 15012322 CTK_20211104 124542056.31786321 1974.8075006504914 2.153502403801236 3.414712126513658e-05 22234708.54264998 352.56579586846584 None None 158257 WPR_20200506 3642347.626127119 406.1567004913825 0.005992123045566742 6.678416721086484e-07 439973.49042504583 49.03648161002509 33186 None 1386470 UMA_20210708 618833266.1177282 18212.872673361406 10.027008947808346 0.0002951155100179935 24548534.15796031 722.513883844104 41304 None 148626 CELR_20210611 201580099.272878 5469.608353520421 0.03553917248238524 9.68015234831068e-07 35385857.01788673 963.8392314240298 None None 140975 RVN_20190901 137874381.4088811 14363.69122206674 0.031920649229879736 3.3254789211794865e-06 10734067.941439683 1118.2703841860623 27566 6953 276399 QSP_20200520 7170932.857971542 735.1483568908932 0.010057878516633516 1.0302915283857992e-06 318117.1184616354 32.58673005877857 54584 8259 544618 OGN_20211111 407268837.0361931 6271.417511918766 1.087476921408792 1.674166968233285e-05 126130475.71755394 1941.7743216134058 127301 7234 105193 NULS_20190723 43374891.42238213 4191.187866633622 0.5892108475953461 5.6972327258242704e-05 3960269.016829305 382.928697559268 21316 5311 418042 IOST_20200421 37026698.387433395 5407.132558418783 0.003082171044672246 4.5017043841074334e-07 48325932.60942074 7058.305964880142 193352 52215 215999 ANT_20210711 127599918.98302472 3784.128291217875 3.634633081832294 0.00010779746526411635 5118662.7961604 151.81143805846344 85449 3048 102952 XRP_20200625 8157424802.059575 877458.8346595275 0.18392972980810404 1.978452395122453e-05 1180122764.4242494 126940.69154832265 951419 214655 34884 ELF_20200308 42308996.05634237 4759.907607558718 0.0918977012072248 1.0334707723596793e-05 33004698.03846172 3711.6696419197715 83275 33436 755936 LTO_20210324 174265101.56577337 3194.7782739008303 0.6314827561635836 1.1584300098759378e-05 28528709.4044902 523.3478316647845 6403 2788 234923 DUSK_20200610 8507689.68650283 870.3222570427793 0.03186172177584603 3.262757208299803e-06 651726.003765182 66.73913392317948 17368 13336 1126512 ZEN_20190723 43970413.80910757 4248.731438956304 6.326164584430505 0.0006118824493855715 1250562.489385843 120.95752946396226 26359 1723 256228 STEEM_20200418 53139554.09017348 7548.308469608434 0.15189161494358663 2.1575731734512087e-05 2113306.1099377144 300.1885635217985 11190 3845 233642 WAVES_20190228 264297744.8106261 69257.34759506844 2.640975802929122 0.0006926872782332483 14144460.380103689 3709.874112403971 136779 56733 39709 ETH_20200306 25072941968.371387 2768613.274659534 228.0809351016884 0.025177861478724948 16056678004.768778 1772497.1814602374 452670 454023 19200 EVX_20210428 27046884.441069327 490.9155822396731 1.2405786116830846 2.2522327781043114e-05 1765612.816110451 32.05416424590805 18105 2819 782921 BZRX_20210314 73122795.28168254 1191.923449439568 0.5190687426294742 8.459995506756084e-06 38940942.72718774 634.6754744506314 19967 None 171037 CMT_20191020 12834829.36195912 1615.1311979773504 0.015938860068314943 2.0050970265409136e-06 1675951.5614409766 210.83348985240008 290440 1652 883595 SXP_20210725 141482116.4902958 4141.011633057208 1.6375308784991736 4.792164363837545e-05 128514003.5850976 3760.9075732302654 272985 None 69993 MDT_20210725 14059208.861475732 412.04710177639794 0.02318629975124742 6.79129076330886e-07 1335097.4495688095 39.105139994949255 34136 315 701499 ATOM_20190603 1523433913.2346172 174270.06275489306 6.378361250882932 0.0007295829364069424 104202916.95291944 11919.154018150966 25210 4940 120610 FUN_20200718 21546692.81449875 2354.035285309397 0.003578785438310252 3.909745080505218e-07 409807.86381435517 44.77061581699734 34076 16752 237156 NAS_20200305 20040771.547883224 2289.286114801901 0.4421814839954382 5.0486387662905274e-05 2328703.5772372982 265.88139894525614 23732 4987 1191705 WAXP_20210916 459189325.99316084 9528.109070027687 0.2939582354882863 6.100621529191648e-06 21487683.74276001 445.941668672068 150472 5022 4301 ZEN_20210610 1022546437.4502156 27241.808668813646 91.60689800767149 0.0024416447983117004 85836073.43720919 2287.832104061769 112081 7352 1013649 ONG_20210304 0.0 0.0 0.5238128105474636 1.03287715650185e-05 21283372.94817528 419.67491609271656 103009 17140 202243 STX_20200217 89691913.74523501 8997.417315189412 0.1629808659330758 1.63825611701395e-05 1714099.6968368534 172.2984043211444 35675 None 32573 XZC_20190522 55867542.098433614 7020.359814292498 7.411866764931483 0.000931483043724215 2962659.5489709787 372.3309149661446 60335 3972 368691 CRV_20201224 71496526.46565002 3057.731904000733 0.4202634808721991 1.802507556972284e-05 57610151.63409923 2470.8959594412463 49660 None 24285 COTI_20200410 9516174.957303489 1305.3883752687639 0.019055678253001366 2.6134557352393568e-06 2134317.841149145 292.71827162050033 22829 927 253363 FET_20190528 0 0 0.14415858339784257 1.6348729171741342e-05 57385945.56183484 6508.022346928601 8955 236 203647 XZC_20200422 40268985.86204671 5882.678608620182 4.0472895067267745 0.0005912466602878688 42694239.11964683 6236.970755629953 63653 4095 120622 ADA_20210602 55963404595.855385 1525218.8644743762 1.7383409999107473 4.738959521918335e-05 4995661237.237114 136188.67868674023 None 497000 6299 POE_20200407 2567849.0985976513 352.40438767597 0.0010201316623055909 1.4e-07 43662.65076061566 5.99213938 None 10408 753171 CHZ_20200701 62628435.30987792 6844.9666998556095 0.01170907055377221 1.2802114744082489e-06 4159825.6874270467 454.8146287210329 26174 None 264986 TCT_20200410 3189366.867900589 437.57682945871176 0.005513256644160661 7.561263880215284e-07 376522.0436106539 51.63885362516995 None None 430478 AE_20191022 61563834.56846303 7498.119827787413 0.1845042839001983 2.246856055109364e-05 57224787.08535182 6968.719459902398 25045 6350 393899 LINK_20201231 4488425410.9562845 155432.32336735344 11.267102015910682 0.0003907004819487606 980541362.3562872 34001.465709843505 111686 26168 47209 ALCX_20211202 306717092.8674761 5366.216605652527 354.42452396557803 0.006199649521142413 18984902.483716086 332.0869004074248 53334 None 80408 RUNE_20210916 2641841569.16599 54818.57892588089 10.091131165217613 0.00020940548444418701 83813269.9888336 1739.245890030472 112596 6914 90267 DGD_20200320 50680640.9783478 8210.020743191837 25.340333159340478 0.004105012424102131 926364.9031674527 150.0666709013992 17616 4713 334920 OXT_20210823 277243262.2333364 5619.714215143827 0.4666008131083099 9.470409637537267e-06 167161648.09615642 3392.812954204985 69492 4389 281740 MTL_20190220 13969342.234557338 3568.147223797353 0.33199736929982665 8.480109311408386e-05 3743464.230182238 956.181849941821 32454 None 581228 XMR_20210718 3555070575.8079786 112577.0446493683 198.0020228477532 0.006270053460677271 130051630.86484595 4118.294684281319 429925 228839 33010 IOST_20200117 70288987.54715005 8074.49921079251 0.005857729317973623 6.727257463379455e-07 40767939.54096371 4681.957985017044 193056 52337 86825 CFX_20211216 239406041.80255944 4907.4972386602985 0.2075521648288223 4.247082966614919e-06 13456660.764749024 275.35995477867624 47262 2207 165568 REQ_20200801 25990854.588839993 2293.248649181148 0.03366425221247921 2.97225512251619e-06 667550.1292439455 58.93876028073934 39361 27837 395094 EOS_20190704 6326777682.924589 527653.3365832721 6.069394722701306 0.0005057284816491386 3831216544.660664 319233.69866739353 1180 66984 97672 BAT_20190807 278489772.8222904 24361.220169118016 0.21807121894213846 1.9006154939654752e-05 25335064.590317257 2208.0958933764405 104980 29276 37775 WAN_20190419 46067692.34816767 8728.813037273136 0.4341618126371602 8.226147149451601e-05 3673588.6013892456 696.0418793633334 109244 17158 455982 MATIC_20200117 40941909.40919569 4703.231996208959 0.01604315856635298 1.841176535004013e-06 22914523.241188373 2629.7616100961422 28634 1420 157746 MATIC_20190902 26523188.303910296 2726.9127499947704 0.012193502686759589 1.2536433238200893e-06 5161220.406764733 530.637477345248 22841 1134 217453 CVP_20211104 44488645.1140176 706.2166608715058 1.716188794844732 2.724293169670973e-05 7267612.826238484 115.36672446416908 29273 None 242969 ZRX_20190325 171451014.42122388 42932.937848383815 0.2921012389468296 7.314909721003313e-05 38616131.7589924 9670.397791185547 148520 15740 207676 DNT_20210401 218669759.4875487 3717.792299268636 0.2914923134649528 4.960289077701435e-06 16754006.074018031 285.10087401219624 None 9480 173683 GRS_20211011 84413635.21533108 1542.2614003824642 1.0743928199736665 1.9629465913493934e-05 3639446.87758602 66.49374148767834 41837 107055 9013944 STORJ_20200313 9109164.368386569 1892.8096695133163 0.0636568555267156 1.3111815341000584e-05 1076817.4783913293 221.79907907489243 82375 7997 120208 REP_20200707 208035776.61709976 22286.0427123116 18.9277700218634 0.0020266833796277438 19789840.24226141 2118.989202539505 133703 10226 217465 REN_20181231 15737013.510588363 4143.704391760929 0.021051390314727875 5.540135698681348e-06 268996.93882043014 70.79245224731999 5326 754 731546 STPT_20210314 72805722.4087234 1186.5813646118772 0.07053730927253306 1.1498332128754585e-06 81686300.45228095 1331.5736347988322 24875 None 1220262 XRP_20210117 12752821363.443003 352336.0897631173 0.2802087671576728 7.741632892364438e-06 3219537933.3068643 88949.68210854908 1063108 231050 12972 HBAR_20210511 2215969640.857091 39688.90930040107 0.2673380877013595 4.784539841368191e-06 162958215.15071836 2916.457133253059 90311 16968 39748 DODO_20210819 287426053.22095275 6380.091931771533 1.99643486498441 4.4372919031797334e-05 121596173.04653548 2702.6061484918364 None 1062 31066 NMR_20210106 148651296.7180457 4375.049091634028 28.61015784225522 0.0008395962950370194 19801318.69503985 581.0912999804771 22223 1981 2602153 UTK_20210221 187553058.96762198 3356.739579768859 0.4204141364658571 7.478362303102185e-06 18343288.803009223 326.29197641283673 62363 3415 80432 RCN_20210212 41436210.04748788 868.9847346494479 0.08101897434920023 1.697414251027287e-06 2179679.400394646 45.66607892311594 None 1136 3103198 QKC_20200607 18469750.29511696 1908.289622381703 0.005728193144260765 5.92397009522291e-07 4161557.4526707726 430.37902665475156 None 9200 677381 NCASH_20190810 3572982.6837192047 301.212115748045 0.0012314731615071068 1.0381498954605473e-07 643238.0808315063 54.22591147290851 59955 58993 884408 CELO_20210624 267610437.44232503 7935.337827694793 2.267486101966345 6.7222228263343e-05 40176882.87813401 1191.0898106063046 None None 78751 YOYO_20200319 1002433.7174520945 186.26513105170466 0.005735677770791457 1.064568059631557e-06 245474.95443448 45.561275645789884 7498 None 2721333 ACM_20220112 9668337.852734122 225.66218250975533 4.827129279976367 0.00011282074553892211 9791505.761503845 228.84926337977086 None None 38699 POWR_20210610 103998756.67482047 2770.668915011226 0.24784810927074336 6.609151074722382e-06 7412220.807117504 197.65527870106285 90806 13945 164441 AST_20211007 41399833.2939136 745.3336508100986 0.23988768824862236 4.323905301125601e-06 2114977.4873879994 38.12184958821368 46102 3713 204668 BEL_20210617 50902274.05155292 1330.7969080317328 1.6182691364690063 4.228263635427108e-05 9490206.038354632 247.96303767024344 28730 None 506926 GXS_20210809 45466602.051731266 1033.513506617256 0.6479959452365739 1.4733839893524432e-05 23848975.676296517 542.2672654391768 None 27016 491456 MOVR_20211207 549332232.1306707 10883.394972189983 221.80689732265296 0.004391591783226101 78319781.50988707 1550.6664269441383 None 6385 15099 CRV_20201115 85720498.29879436 5326.765411072234 0.7135946170999261 4.436105437049778e-05 94510085.12470609 5875.278378382675 44246 None 12628 HOT_20200501 63223308.452381834 7306.131918312763 0.0003552225483532565 4.121052697859335e-08 8364876.960367101 970.4366720127498 25054 6960 565992 DOCK_20200801 8349967.674827273 736.7297764808618 0.014921301470500123 1.317439643956507e-06 4374418.481676126 386.2285296232272 42303 14921 260930 BCPT_20200725 3125317.171147245 327.56744094 0.026893348204842276 2.82e-06 279740.5512319492 29.33321461 10488 3174 2352744 SKY_20210806 27092691.52413201 660.6801471875483 1.2890805066197655 3.147757400098012e-05 1727282.7645418302 42.17787078640579 19651 4411 730332 ZIL_20191030 53610862.866669126 5696.804303000033 0.0057756271092944175 6.137567154753971e-07 13701386.460982608 1456.0008450370838 66302 10571 188924 1INCH_20210408 846543566.7665493 15029.581202596773 5.541179054535313 9.860972874251728e-05 767812327.9038289 13663.836637400758 None None 5394 WTC_20190816 39202018.20888097 3809.1451651291054 1.34633970476841 0.00013082823468285078 3360809.9623895716 326.5809014817688 56070 19993 638612 BAKE_20210806 366595841.64206046 8947.596078472525 2.1546047199371707 5.25886853925306e-05 87753685.71716864 2141.855036106 None None 9385 OAX_20210509 24015358.228918284 409.4593743537006 0.4230011526223567 7.2041810217528235e-06 576083.3920124446 9.81134215345326 13904 None 1257239 YOYO_20210930 2648456.5521724233 63.75463620025612 0.015152622033252095 3.645347222207547e-07 399513.39661219757 9.611307187488842 12160 None 1583494 ADX_20210420 136700881.22251394 2442.7079965555527 1.1685851755015837 2.0892803672570824e-05 5056895.643711514 90.41080623960059 58007 3836 11197 TKO_20210511 248729072.08418423 4454.2866292794315 3.2464183447784043 5.810102872319553e-05 83417310.87919135 1492.9165192770165 None None 35525 WAVES_20200625 119238373.8228814 12816.04848422802 1.1907808022806379 0.00012806471949653117 28985132.51833793 3117.2595816302974 214 56864 114930 SC_20191012 84736567.79733606 10252.911970446023 0.0020102535808378843 2.431278418640307e-07 12586263.63473294 1522.2313959858222 108502 30515 221641 ETC_20200927 623757707.4858391 58135.85683631778 5.362438390628449 0.0004997933441619674 655627599.2179418 61106.214462188924 236231 25814 172209 LIT_20211007 103010625.53159621 1855.5731430439707 3.718997666739687 6.703366428498122e-05 12135187.98299541 218.73262372879884 56786 None 455737 FORTH_20210711 168951264.2153152 5011.737713979611 19.70419508856118 0.000584329488010949 41719730.25726615 1237.201951747593 None None 63782 VIB_20200107 3825415.8330016593 493.0350979506618 0.021090379681513973 2.719016928364602e-06 1662280.9057544323 214.3048153090003 31759 1112 None NAS_20210602 23070286.128824376 629.2122600648053 0.5060397378580043 1.3795347600467196e-05 3918060.131895238 106.811772663976 None 4911 453331 OGN_20220105 262763975.6318191 5673.486748178077 0.663987114046403 1.4431081764334848e-05 40331256.75505599 876.5586734713653 132946 7546 99270 ZIL_20210422 2148885625.1822567 39659.47347266395 0.17871319472738814 3.3041168827204607e-06 259162851.93882123 4791.500458437118 218315 28318 36030 SC_20201224 133191772.84028621 5696.286984792592 0.002882044419152142 1.2359886922947483e-07 9896791.44692144 424.43212315210826 107141 30107 163532 SKY_20200317 4578453.993770285 907.0804503502083 0.27080924561529063 5.3831571150039576e-05 136591.56852528983 27.15172712385961 16214 3830 253868 BTG_20200612 148578322.6761603 16013.244943173506 8.498983898206935 0.0009139834038128154 32650530.22758755 3511.248298752464 74999 None 215523 LSK_20210117 196783496.11930203 5425.661077439542 1.377091518134008 3.80522625552808e-05 10113141.188617954 279.44976691844414 177702 31040 255671 POWR_20190629 45109727.566848055 3639.955763149694 0.1077212776901602 8.673152762614575e-06 2861242.649578809 230.37226370525968 84680 13186 724138 TFUEL_20190816 0.0 0.0 0.0058947717456952105 5.720175946054286e-07 744875.4906016876 72.28132060001676 70306 4025 248011 RDN_20191026 7802004.354984436 901.1128439512053 0.15420096722363508 1.7810704483291273e-05 8948196.889728267 1033.5453358740563 25424 4375 2691065 APPC_20210108 3258062.9568631737 83.34126488570185 0.030098522503787056 7.627136406366056e-07 174539.58677999416 4.4229321772 24262 3126 538163 WBTC_20210212 6057978210.65335 127066.76369801971 47680.13943570945 0.998616986371909 361221476.07355905 7565.45400492751 None None 144337 ATOM_20210804 3367857517.1789484 87657.50591075278 12.159292247867239 0.0003165201722167173 230971397.25138903 6012.447512968413 168435 32982 54848 BTCST_20211207 190980431.32524073 3784.4852235688377 26.2258821964055 0.0005194874719180834 12384050.578865033 245.30572810252403 67665 None 2237027 SKL_20211221 527486730.6970122 11180.616898782522 0.19918999409618407 4.224987823420152e-06 27986091.659033716 593.6086148355525 None 3210 166833 QKC_20210106 35297950.67296114 1038.8760168113222 0.00552693283361477 1.6214285565028493e-07 3844773.446134105 112.7935809339025 62987 9211 114091 NULS_20190805 40728839.21401788 3720.9090726185154 0.5514053405543919 5.035690944562592e-05 4853738.916160377 443.26609319390246 21320 5309 406668 DOGE_20210421 43064103591.26716 762216.1042842986 0.3256952458544855 5.777404739073309e-06 28256320646.66664 501229.9162811946 915183 1491377 11474 RUNE_20210519 4847047172.246278 113597.56581779393 20.237627162349707 0.00047305311693152314 105525428.29139955 2466.649492468691 1708 4718 71377 MBOX_20220112 415443128.6377606 9702.336989211119 4.030263298191957 9.419621552427076e-05 51155820.316302866 1195.625277881243 264112 8419 7442 DIA_20210826 100881291.79866378 2058.1323244530404 2.0778577819670576 4.239595902684844e-05 16879733.358541112 344.4087896984768 34828 403 452698 NXS_20210430 94925091.57819489 1772.289113753444 1.3927486749768354 2.6000733136974755e-05 559409.9275840005 10.443426371615747 25329 3867 432623 EGLD_20211111 6257616842.408161 96356.73383314017 313.02558152903026 0.004819018026874704 283073519.4811354 4357.907065125756 None 11994 29572 NU_20210731 122989193.57822062 2947.8629815816957 0.2212239743144397 5.296059322808053e-06 14171111.54805149 339.25368017272905 None 7134 152840 MTL_20190224 14928886.782921337 3628.1187378789787 0.35480204116152464 8.622638462557486e-05 2091609.2047154729 508.31697354887365 32509 None 581228 LINK_20200308 1576843075.3774896 177400.2706285076 4.347690687018586 0.0004884808683779995 408507786.66056645 45897.52416448181 45591 13513 95530 GO_20200526 8553373.366924629 962.4849671858161 0.00893546855141715 1.005569012616535e-06 2137831.9195601 240.58475726504756 10772 676 1263025 SOL_20210203 1375270992.6864703 38612.08654044053 5.257321084771443 0.00014803216493289583 123805679.78884633 3486.038329144309 110465 3335 80032 XVS_20210318 443895221.94045544 7542.631323450122 49.49847882599606 0.0008399643026318009 122823949.4400833 2084.260678001696 None None 15629 PIVX_20200403 15100475.30222795 2226.650721879427 0.24158526800199204 3.543809759610145e-05 182524.1778550467 26.77443737348251 63721 8505 213367 BTS_20190803 121327584.00672492 11529.648962738569 0.0447670885743572 4.254175343321385e-06 19401298.807654504 1843.6876206243105 13656 7165 153233 SC_20201201 152070508.595705 7734.841922729828 0.003366674787787937 1.714952586261802e-07 7883118.131596217 401.5586499957415 107004 30086 155406 GAS_20190922 19099808.968188997 1912.3622170515787 1.3705049657171724 0.00013723760408263118 1290657.1739960366 129.24192373034342 323720 98295 189975 FIO_20210125 16420967.768692344 509.77038446060857 0.07683419959599178 2.3835424650079718e-06 1432547.897922633 44.44035033631857 None 163 523991 OMG_20200105 87736342.04987448 11939.016139733525 0.6258967352497726 8.511873549912357e-05 65242720.520207874 8872.674290251192 284103 42687 None ETC_20210603 8763485895.212746 232891.9335636117 68.67849443066267 0.00182394902023954 4154927873.043549 110345.70116930582 454371 56611 97655 OMG_20200423 81093828.3434362 11400.924123484103 0.5780053707723565 8.129203866354817e-05 76407076.12913391 10746.071405112421 None 42884 554099 AMB_20190625 6256140.235084142 566.6331303255698 0.04338619041962816 3.9284492322575855e-06 494083.63623671787 44.73733376155237 19383 5671 665963 LINK_20200207 1051282452.9134967 107941.40948245816 2.8848138369639296 0.0002962445325222002 214774434.1149199 22055.40995985249 41194 12474 117576 WTC_20210429 45883929.900308385 838.2479371848623 1.5710730498501622 2.869244582146407e-05 11593941.547910204 211.73970220694798 63543 19480 334285 STMX_20201111 17564356.86548801 1148.328959155856 0.002214806546739464 1.4498415102974696e-07 1177143.2993522997 77.05734938710413 21426 135 217902 ADX_20200730 26188383.76115546 2358.399608659307 0.2896980123777744 2.611957358082168e-05 103255182.1529076 9309.630072045768 52060 3742 16348 NAV_20210201 17315436.794104986 523.9438948804582 0.24830735569876827 7.509986677465481e-06 4027830.384622113 121.8206059279974 48540 13655 604574 BAT_20210707 890371458.2207595 26066.40073121429 0.593815276875351 1.738752955298413e-05 78895411.48038615 2310.139789478697 207784 75910 27779 AAVE_20210427 5115672147.72697 94958.29866493017 404.2221337598863 0.007498632490501934 893605406.0159291 16577.06981285592 None 8630 14216 GXS_20190225 37170409.68667525 9828.211010299812 0.6157190136990686 0.00016383966815395118 8890846.4955559 2365.808602674636 None None 374736 LUN_20200306 2711033.831756066 299.11871800613096 1.0026106471568288 0.00011064716511801685 4550947.333134469 502.2382541425002 29768 2151 1955482 ETH_20190621 29062957235.75888 3038289.8343770215 272.334690986303 0.02849456918267847 9013711196.951782 943110.9065247363 443749 439602 37001 LTO_20200412 7799657.432274296 1133.4905672703405 0.03667053812841108 5.328620980380442e-06 1129994.6213870551 164.2002914207307 14557 422 900520 ADA_20200625 2573306719.7848144 276585.6546696991 0.08250248627891989 8.876087264220729e-06 371569603.9348565 39975.57380401529 157284 81283 52095 HIVE_20200719 76463922.50309528 8339.016271160242 0.2105901068402521 2.297018484035023e-05 3921763.3446359523 427.7676206068547 8086 91 125013 GRT_20210610 870401037.5633174 23188.672398369952 0.7100016519843966 1.892403168389394e-05 179926437.07136667 4795.669962727807 110050 15196 30919 FUEL_20190904 2837665.5071014464 267.02025795484604 0.0030846853931418626 2.9026447526143877e-07 122867.3114343008 11.561637941928339 1 1503 None STX_20210131 392502895.2348467 11472.514765622846 0.4280689750507812 1.2529655058901758e-05 8549769.234506514 250.25326661169265 49173 None 62343 BEL_20210430 120344324.44124515 2245.608860607875 3.8298866087291366 7.14607393987248e-05 33058295.277027443 616.8251087051513 17018 None 318373 LTC_20201030 3611312421.416083 268099.5889706429 54.797390278686485 0.004075170410062989 2151884679.676641 160031.2848456389 134814 215597 139345 ORN_20201208 51086337.87492144 2660.500394541591 3.9092010837932483 0.0002037262793997303 24571288.476922806 1280.5217931137 24079 None 209850 ONE_20200223 3978746.814140032 412.18433733756444 0.005416555610314032 5.611363299003773e-07 10866176.119663695 1125.6980683866188 None None 386228 WAVES_20210207 806396037.6915754 20491.02509207547 8.136157660034895 0.00020682411757723173 158796617.2592896 4036.668364998364 158100 57417 119606 RIF_20210519 168430393.22257367 3947.4100415967796 0.23171013009101663 5.408158357868772e-06 2203552.158907761 51.43132508067592 42928 3250 452018 STEEM_20190130 85692528.25720234 25104.733180764677 0.28935994600935305 8.476405821621665e-05 1293634.256411938 378.9525500445362 3742 3645 260345 GTO_20200411 5556457.400370783 810.3746342882541 0.008419057123471633 1.2268097526977604e-06 11825005.38262119 1723.118363059776 None None 1069804 STORJ_20210610 147043637.15286762 3917.4433198611446 1.0190941105705178 2.7209472040647056e-05 31946880.384148546 852.9710255235902 102875 13525 47967 XRP_20210220 26073015135.898396 466026.80298919213 0.570529085079073 1.0197587204468434e-05 6614816653.231531 118232.65706699171 1182882 267833 10253 HIVE_20210725 117335020.51262413 3434.3009174150507 0.3154433859085294 9.232772150081285e-06 9490217.629472965 277.7709755278125 22296 172 113471 CELO_20210821 419847759.8765708 8545.287769193765 3.152109319229653 6.411643284614027e-05 22092465.000942025 449.378465396873 None None 103784 BEL_20210325 79474287.08874178 1503.993914420194 2.7731415226474687 5.256548704375063e-05 21916609.218607478 415.43398651497904 None None 330224 ZEN_20201014 62437709.39939812 5465.293118344776 6.152531438361958 0.0005384595885737009 2500073.7297822693 218.8024044133753 74294 6125 102470 BUSD_20210702 10374601895.627884 308761.53501730977 1.007472385625175 2.9954475314224664e-05 3736975553.5266685 111108.89346958442 22929 None 39244 POLY_20200217 19607308.580410063 1966.8501079613347 0.03297810554695131 3.3086017626301957e-06 10135526.232976554 1016.8692046869542 34867 4994 368062 AION_20210203 36124192.696697205 1014.3627754092282 0.07347221735367326 2.0681417264040166e-06 3280505.18217403 92.3417026912354 68147 72566 360629 YFI_20211021 1288428198.2767959 19438.42883735259 36001.042417947734 0.5451512104256602 193058924.47711033 2923.4238592409197 None 7343 31334 BAT_20190520 485038766.7976196 59271.169285653144 0.386708978621272 4.726005600877518e-05 69334720.49091454 8473.459254646708 101018 26960 50152 BNB_20210125 6175849056.405198 191800.67812628427 41.84754636819086 0.001297119683799525 511146060.00425243 15843.64373228968 None 91732 564 WRX_20210112 20458723.794626046 575.8100577407906 0.08482307659591812 2.3862415412155254e-06 7117274.289103916 200.2230554521321 None None 5719 QSP_20190605 0.0 0.0 0.02349437111166602 3.058962319765657e-06 250073.18422929232 32.559477506566715 56913 8599 693082 TVK_20210314 85751646.7748089 1397.7775087129003 0.9668558613520556 1.5758937213326153e-05 64280408.522170246 1047.716585728989 35814 None 118350 BEAM_20210310 61245146.77464648 1120.0942600608141 0.7331415046908624 1.3402241871987936e-05 20351169.629249208 372.0309053626171 17217 1840 234487 WAVES_20201229 669924081.8224205 24705.38521675087 6.717496731669467 0.000247487629875976 144398119.773814 5319.950250647468 149456 57203 196756 TROY_20201228 5184046.283009167 195.815862489873 0.002714531847378377 1.0311758643593654e-07 1530446.4373987312 58.13744382717383 None None 1087895 STX_20201231 363818139.1733333 12599.847340840637 0.3970226609126368 1.376936891886228e-05 8199558.132904339 284.37354342466915 46369 None 84680 XLM_20200325 820357660.2961099 121404.00729275092 0.04043856717981333 5.984467924678603e-06 287290375.46273005 42515.849520104515 281044 106949 82721 VET_20200511 268739510.76079917 30695.24089404136 0.004173136648961945 4.76352749270729e-07 213376278.0520621 24356.349966286994 120161 61921 289943 EOS_20201101 2392706148.826251 173400.40355217166 2.5265597191008453 0.00018310431022207203 1395888640.6704745 101162.5511023954 191612 73108 97683 DGD_20190813 45805342.62073748 4025.186988943833 22.902682761710125 0.002012594500769167 2207913.445055115 194.022442869502 17198 3359 575541 SCRT_20201231 36273008.24906552 1256.216547008214 0.6479919524016664 2.2462617817441005e-05 440836.3486315675 15.28157623354092 63314 None 359291 NKN_20200914 13362351.519019276 1294.513597900172 0.020451351908867075 1.9816412869426963e-06 1286749.5019280517 124.68006762271935 13743 1023 204746 BEL_20210930 75934242.00335774 1827.702814013438 1.5836402221164236 3.809888045350578e-05 11571720.995026527 278.39000845889564 None None 414894 ARPA_20201228 20532372.298659768 775.5648717494539 0.02072387857218395 7.872430533533383e-07 14151558.63285641 537.5787253835771 21335 None 1357092 ADX_20190909 7286481.22693257 701.0129834359599 0.07904408640424347 7.609274064745779e-06 145296.1538272689 13.987109033950407 53656 3842 517237 GO_20190901 8027068.347178716 836.2133115054817 0.010253598984272548 1.0684542364174867e-06 100029.10570031565 10.4233178920384 10229 687 740517 COCOS_20200329 6373421.028335499 1022.3695628646248 0.0002630903670213011 4.2080540623474665e-08 357464.86474781536 57.1754676265567 14672 217 67575 MTH_20190601 8371455.214509673 977.2021571080103 0.024510618412070636 2.8611308990595413e-06 290502.0412834017 33.910379272458144 19399 2009 1790455 ELF_20191108 39565014.02406139 4291.341481152101 0.0857629334962485 9.30210801477079e-06 12636093.478920976 1370.5490429709394 84455 33523 873376 RDN_20200610 15678345.597777737 1604.216857958584 0.2342005407927458 2.3982994642760582e-05 8777086.866231212 898.8058976266357 25205 4311 1725009 QTUM_20190730 276259401.617419 29105.95678785776 2.8886589477428637 0.00030368748217235865 283356842.43687916 29789.576267978846 178909 15361 354208 AE_20190205 84005481.77653892 24238.42781920927 0.3691214207676565 0.0001065355468854722 13356128.168656882 3854.8356683313896 961 6309 511202 NEBL_20200106 6409731.62341388 872.9310240655432 0.4035606520803336 5.495113682990378e-05 69035.75416065683 9.40030489464739 39874 6042 753189 CTK_20201106 16591364.669038909 1067.4096934556874 0.7524297450433455 4.840303562185271e-05 4296449.0406400645 276.3861707109889 7419 None 341284 MTH_20190803 4967951.157449606 472.73646394907956 0.014556988185661932 1.3841544406003928e-06 132098.11697300783 12.560578663052935 19502 1998 1172984 SUN_20201130 0.0 0.0 0.00012190540897660558 6.7e-09 31.19254176955531 0.001714362238808674 40 None 8085345 QKC_20200719 40193816.26780003 4383.007823241232 0.007592507649615331 8.282616502455764e-07 3935642.800636862 429.336676532392 None 9210 404576 ADA_20200718 3815026554.4500537 416699.4339216528 0.12261975823084438 1.3394299671427964e-05 332328276.11354834 36301.69055768223 159239 83576 35792 APPC_20200113 2920725.4479211806 358.279215018312 0.026182112669150565 3.21111445019838e-06 139773.59036878237 17.14258132874606 24987 3247 1530437 MFT_20190523 22949147.490722988 2993.2064604740835 0.00344980039428535 4.501498747771163e-07 2940894.9950542883 383.7449598386342 18091 2013 781601 OST_20201106 5378038.281748488 345.8282485576474 0.007781808149751575 4.994541072623128e-07 451606.306669305 28.985117647593075 None 745 657896 MFT_20190411 26776561.843100034 5045.205496679227 0.0040360955856952535 7.604360029251893e-07 2581072.9001363246 486.296897029532 17421 1920 690472 AION_20210805 65311693.42576985 1642.1889361014255 0.13214659771202064 3.3231954738036265e-06 4884637.142023293 122.83785070970693 73777 73391 420360 BRD_20190908 18425385.553863563 1759.8488256434766 0.28864498296328417 2.7570191698638746e-05 7356087.231979431 702.6234547904102 168 None None CTXC_20211216 55908676.95743526 1145.9955737831147 0.2974216054649415 6.095015040038734e-06 18118776.91684299 371.30529788725147 23437 20803 309614 BCH_20210206 8338073418.239074 220040.22220892485 447.6702288618733 0.011777245959046428 4132926685.5091705 108728.45895894124 None 436151 337812 QSP_20190614 0.0 0.0 0.025021042104273757 3.0412225496134176e-06 405332.08689656504 49.266736277988386 56835 8595 693082 OXT_20210819 217004543.92460546 4816.922211247233 0.3658380066078196 8.123078374719427e-06 18737510.319867756 416.04825667707576 None 4376 281740 NULS_20190826 34874089.55494314 3454.4620057740563 0.47509777456848307 4.703658921947661e-05 13391098.258631717 1325.7725497893605 21339 5306 331434 YFI_20211202 1033320775.1325759 18078.624346110442 28957.91012795457 0.5064109289064929 147746189.89155602 2583.759840913039 None 7646 25552 HC_20190524 54140461.41467376 6872.589893597696 1.2251923403431997 0.00015577146800876545 18305935.8603623 2327.424362973218 12703 802 698921 VIA_20200901 6169712.085037919 529.2111864634319 0.2662732174032913 2.2839763568086353e-05 150245.2010692888 12.88738275342496 38445 2158 1668792 ATOM_20200417 448185881.3748629 63124.41339248312 2.4085267970000706 0.00033952540845583017 158627394.89609167 22361.399969251917 32431 8361 86348 GO_20201014 8810133.82462132 771.0613432945355 0.008512278611115025 7.452425995008715e-07 488361.60200992343 42.755634114590116 12143 678 655506 XMR_20211111 4793288310.125623 73960.87545281614 268.09242359030355 0.004127273610800356 318908987.44665235 4909.592857973014 453724 241063 38915 ARK_20190227 78605809.32121709 20681.616268291873 0.5620063330230927 0.00014786692510773686 1835193.3453806997 482.84935776422054 62646 21759 148771 BEL_20210819 99022859.50519195 2198.0434268578892 2.0501338849585804 4.552123597163349e-05 19225843.700561237 426.8912261135926 None None 475057 SKL_20201229 49384547.349369474 1819.306275318315 0.08751945748149262 3.223568055337286e-06 6936315.227197098 255.4824359242682 None 83 250973 POA_20210902 12305234.011375198 253.35831807339312 0.041356953728704945 8.500000470961584e-07 1557351.886237854 32.007898486214714 20070 None 226010 EOS_20210430 5629457339.221236 105044.91458208436 5.8798952870408 0.0001096954555157113 2652604060.328728 49487.0395637653 None 83083 58571 ARDR_20210217 174057984.30130768 3539.2298994214884 0.1736586505377589 3.5292400715041542e-06 39092287.036338545 794.4669929667004 65491 6404 None FET_20210218 162366221.32641664 3112.3031587534347 0.23625216030314725 4.5299949785787124e-06 14877563.008696122 285.2684421442051 29693 996 277312 LRC_20190410 68273120.05803002 13193.702884423645 0.08659755632789566 1.6752193648877588e-05 25070901.79146702 4849.93595168407 29427 2464 750583 TOMO_20191102 28693691.637693405 3107.5952055054154 0.4406226989419798 4.7720488669021755e-05 29004771.433611486 3141.285888967515 18049 1351 275008 IRIS_20210210 95874446.17511882 2058.4237327299998 0.1006132965999562 2.1602643530079376e-06 16592290.531551454 356.2524535159435 12754 None 896024 IDEX_20211202 248055075.8431386 4339.886162395866 0.4115189983881929 7.198355048213727e-06 166596714.8034268 2914.135939575317 72728 1987 55323 NEAR_20210310 1688262622.0399582 30887.9322531053 5.445464206698214 9.946501543772289e-05 249989717.3643314 4566.227993258982 41697 None None ROSE_20210128 83357743.10788497 2751.1783059056806 0.055261760661706794 1.8214817639609778e-06 8249868.310730136 271.92374081355194 9618 658 196498 ANT_20201031 105076736.90046777 7735.790889308532 3.045061159088205 0.00022436925101150678 21186953.051219095 1561.1183286516998 75995 2680 88458 BCPT_20190903 3376854.5415221113 327.1431620259089 0.029271245772567605 2.8353495903999053e-06 159991.23907767617 15.49749873001975 10900 3115 1000589 ZEC_20200310 387726802.7648244 49025.76195315848 41.82420512224907 0.005277383542813995 331766156.6447518 41862.29600830515 201 15569 157694 XVG_20200407 46073102.32358657 6322.942972600223 0.0028393308315131046 3.896617771018243e-07 1284672.4999725095 176.30484048467284 294492 52079 317602 RLC_20210217 139469071.1983898 2834.355072992258 1.9705552228889018 4.004731370533811e-05 18757821.64291203 381.2125430624538 34591 4052 376079 BRD_20210201 6335265.091814756 191.69735691771206 0.08284709112346061 2.4984182555411426e-06 1518158.7095106423 45.78308523829477 470 None None WTC_20190314 33543249.12361571 8673.340569636832 1.2513489729979863 0.00032369761934506646 10547385.059379634 2728.386331637964 54473 20350 860641 TRB_20200901 94487703.98031645 8090.41086482672 65.43195188533537 0.005604381862443902 96466010.42906757 8262.513093578635 7929 None 216196 ZRX_20190511 156580570.62900957 24572.00678390885 0.2666779583566746 4.185940142473357e-05 30388957.858479206 4770.036465391121 150037 15862 221725 WAVES_20200612 114241355.3622405 12316.77098582802 1.1442239322486316 0.00012301631661491258 44905104.64581399 4827.779261599027 176 56848 94496 RVN_20190220 32038079.190463543 8186.091170159035 0.010907707850500062 2.7863850649665257e-06 2442426.1151589514 623.920235382094 19168 5738 319806 GRS_20210823 69677182.91961615 1414.3282345416412 0.8906360547646727 1.8078396200484505e-05 4297646.5985558145 87.23491208638005 41501 106860 9087517 ETH_20210104 112525376104.65454 3363642.391820435 967.0005967288458 0.02937596652164599 140906534190.58786 4280520.244833475 558260 515774 7761 COS_20210602 44038393.598874725 1200.2162692425932 0.014624244857358191 3.986772700016921e-07 3562118.8777851188 97.10831864951444 25638 None 208235 DGB_20210210 721704725.6483915 15495.695349438261 0.05147100911811044 1.105132124368231e-06 122519966.34026927 2630.6216450593 185285 25872 203281 ONG_20200711 0.0 0.0 0.18311945524479245 1.9722386671184738e-05 10481543.06916483 1128.8863056325847 86834 16535 150808 DENT_20190507 46291234.96695567 8091.96480005431 0.0007440775495115704 1.3006888546949192e-07 979310.9058550119 171.1889817617716 45058 9201 250017 FET_20200229 11201116.445189668 1280.8844647591227 0.03283832522599693 3.7688498336349703e-06 5587349.457785061 641.2592886364039 16538 355 514590 SNGLS_20200526 6337824.760694386 712.1993207274147 0.00951364007309927 1.0700196022754857e-06 389300.7371089004 43.78549290136388 8806 2125 2556875 PIVX_20190419 56244793.93513845 10667.263763540459 0.9429333578139597 0.00017880724047760223 848982.1923044345 160.9914017386283 62734 8597 268196 ADA_20190812 1714947082.3845325 148591.16232839372 0.055142333964456 4.77493127916134e-06 121512163.10952921 10522.08324740557 154345 74991 93580 ONT_20200422 251442213.11963052 36716.17327320504 0.39440000495563027 5.7614839567397945e-05 93524244.65314102 13662.231956510712 84086 16491 204987 BTS_20200223 84313393.14605257 8734.469825348486 0.031109703286968333 3.2228185166841592e-06 12877737.327665308 1334.0728431177204 13371 7045 139878 BNB_20210104 6162622121.465481 184214.95426287423 41.073833461872894 0.0012477588543101758 942962614.7706436 28645.730205721477 None 84513 896 UNI_20201224 721651796.4986829 30874.960999800944 3.319324985614987 0.00014236565019165622 376531126.06884825 16149.39748668701 153543 None 4779 NAS_20210513 48472750.911060475 940.2153648595134 1.0214666447779364 2.0265670380650568e-05 30172053.83671975 598.606817841942 25015 4895 492294 MTH_20210318 14118132.30691855 240.13096356148364 0.04014001804087385 6.815618334704546e-07 1594103.3632677458 27.067252682942 None 1957 536338 MTL_20190601 21542326.801407408 2512.812925110238 0.47040442394942505 5.485142636297844e-05 2142049.1487207306 249.77326990353322 33285 None 939567 BCPT_20190908 3368180.0566100655 321.7425161597184 0.028996373181607405 2.7698537222342465e-06 168570.60814042643 16.102563016854074 10889 3116 1000589 IDEX_20201231 19802131.17280754 685.5470810667255 0.03505585986930662 1.2156046272346885e-06 917065.3679085934 31.80035830992206 44351 1946 158601 NULS_20201124 26429474.152973797 1443.5350077369094 0.2705387638434842 1.47412841945286e-05 11348277.751817336 618.3520064975505 29606 5130 393845 RDN_20190329 18176286.159826264 4514.655256851118 0.35926079976308906 8.92331401172019e-05 1355950.6862778338 336.7908150859639 25370 4467 918297 BRD_20190321 15275864.719520973 3779.878341009313 0.25488560892027295 6.30721158385725e-05 194517.1873381544 48.1337907791528 151 None None BZRX_20210710 28372604.18021261 835.087129385747 0.201755302370665 5.937012474277565e-06 6448495.583117343 189.7585752019274 None None 110017 BCD_20190629 232613633.25122225 18794.58039463766 1.2365275753151739 9.987851885746298e-05 9758560.890905274 788.2320034112892 21346 None 3124822 CHZ_20200318 27128607.585170273 5010.5649527193345 0.005647529378418276 1.0478962923766237e-06 1590101.3024972116 295.0425128831723 19737 None 252561 RCN_20190614 15578807.371865867 1893.5968205673257 0.031162317443694625 3.7859766061730796e-06 1206212.7546607668 146.54536779764675 19015 1122 2270629 BCPT_20190804 4524396.485041401 419.5792463998673 0.03925283553623591 3.6378968102895654e-06 100778.63903045884 9.340020522486475 10965 3037 1188214 GTO_20200105 6697072.508121157 911.3841650016128 0.010106259184784413 1.3744254701692389e-06 942879.9858931164 128.2292729910782 17040 None 3106980 FET_20190903 16794519.386964045 1626.2517308337306 0.04940632505590311 4.781205981002311e-06 2210932.306346533 213.95889604689904 16209 303 439975 DASH_20191020 613302134.5141584 77186.0962838688 67.35154455279815 0.008472332861977851 184613353.59839222 23223.012817849532 317658 31365 74820 1INCH_20210727 386325851.40159446 10318.975717059917 2.130861703453398 5.710669770342088e-05 157672125.70935366 4225.583670938012 None None 4419 FUN_20200223 23068013.451486602 2389.7238882288916 0.0038373380490778586 3.9753012123793765e-07 336777.0478112077 34.88851358266866 35047 17050 372623 VIB_20210703 6182778.458202585 182.92318035057198 0.03393450620039854 1.0021608001312448e-06 892792.5461699561 26.36613266558706 32266 1279 5353041 ONT_20200530 328443268.3806253 34870.383400205945 0.5153254341411585 5.471141349000104e-05 73908153.82629025 7846.7300396532255 85280 16480 164481 TWT_20210506 346471248.6805747 6050.227381876971 0.9974414061722097 1.7403862206981507e-05 54204351.39050309 945.7849421344847 None 25877 4038 CMT_20190708 43993553.87230544 3851.1944124026113 0.055025289818463746 4.815170666846767e-06 15102999.665873984 1321.6381269855763 291143 1650 722276 ZRX_20210708 661866726.6122942 19479.637455533786 0.7831498882003115 2.305345249788899e-05 115597630.43205695 3402.828145909568 222042 19556 58387 REN_20210611 403448615.0114088 10947.04250490242 0.45501217882299894 1.2393612185333008e-05 32753638.884751428 892.1429291103933 None 1170 81558 BEAM_20210909 63539331.120250985 1371.4948917231243 0.6529510462194382 1.4103550773135108e-05 10204708.503163153 220.4187057095806 22910 2687 274472 TNB_20210105 7159639.837614259 228.84269231340306 0.00208406977083477 6.661286714748028e-08 291570.358909345 9.319427714932864 15750 1414 3447610 PSG_20210418 0.0 0.0 31.90499326134268 0.0005293684531337975 41667504.190677434 691.3482807749285 8954498 None 26882 QLC_20200530 2891667.4557652464 307.0044740012102 0.012004627681142029 1.2782600927779896e-06 183945.01852610437 19.586578000798 24328 5649 940522 XRP_20210430 64327724818.26861 1200099.4459512965 1.3978073532674413 2.6077524658955513e-05 7019315268.6032095 130952.49969754668 1533226 298491 11104 REN_20200511 63842023.88239553 7290.770927222207 0.0730328761344232 8.330516180014682e-06 4843559.922927851 552.4820661937881 11967 879 405575 STX_20200329 51404892.47674802 8245.93216373174 0.08707434889215658 1.3927289384648335e-05 501667.55677409703 80.24026968878898 35789 None 40997 NU_20211125 522705916.2760837 9140.231138491132 0.8211422365288248 1.4355897820097768e-05 31609307.535044756 552.6204461913825 None 9464 131517 TUSD_20190201 208534357.86547136 60777.12629589611 1.0056693293871548 0.0002930939944210806 43562157.227743596 12695.829826349674 8153 None 276548 ZEC_20200625 523514932.93952125 56268.73755202775 55.11789909481353 0.005928793544796845 486464685.6322978 52326.898073293676 71803 15862 226404 OMG_20210602 894235823.8896244 24371.379077716992 6.356359827557251 0.00017328321618766525 316149576.3700542 8618.677494037362 None 4965 157403 OAX_20201030 2902611.1181352427 215.4864373125962 0.05203870164304727 3.8700123497729066e-06 289525.64900327206 21.5314333725 12743 None 1301324 AST_20190716 7641915.026494358 697.9770734573233 0.04425540731837962 4.051686273451926e-06 1214800.7582132057 111.21785687389428 32044 3604 228402 UNI_20201124 888267428.9186445 48516.139146821355 4.160502959398576 0.00022670006931854627 500339828.16504496 27262.827315532482 None None 3614 GAS_20210620 94467060.5859388 2649.890476564099 6.768063093904548 0.00019015240466040278 6632181.679047826 186.3347425870492 403554 111990 92050 GAS_20201014 21435169.03180578 1876.2678742333255 1.5385863786801612 0.00013470373208949315 1466233.1458883195 128.3691832979189 324605 100826 85109 COMP_20201111 10551.169595908972 0.6871283045982253 1.144065723372254e-07 7.44990160234883e-12 8.679991293843008 0.0005652217326970325 1933 None 1770443 COCOS_20191216 12095801.582504496 1699.674404051285 0.0006992808789454497 9.834897711499491e-08 3097176.450568507 435.59626042888726 13569 184 42934 OG_20210219 0.0 0.0 8.10540902990775 0.00015680662788571762 6240879.529146521 120.73558168323666 None None 464193 AST_20200418 2423075.5889742444 342.27494406822905 0.014023451496855348 1.9869394985892807e-06 22035.5392778722 3.122147452339951 31671 3462 322316 EVX_20200129 5861441.899829137 627.4486711201525 0.26620552632462535 2.8534455463548944e-05 1257270.0744545376 134.76623660106637 17887 2880 683099 BTS_20210722 98153438.297372 3050.1290459158345 0.03635189273093608 1.1255723021944266e-06 16780564.800795637 519.5806197700543 6284 7183 164427 CDT_20200330 1869745.6698081833 316.2278324963652 0.0027662171378611726 4.686370804716763e-07 37543.393863916455 6.36039241120017 19157 291 281286 OAX_20190131 3182645.8083033445 920.2724956990744 0.13564102714719703 3.922104880356809e-05 3426255.193030812 990.7129499506817 14400 None None POA_20190622 7698924.567696008 760.3038805155503 0.03472758465304196 3.4233351857143143e-06 346060.63593019015 34.11356024919284 17681 None 649823 ARDR_20210727 150492126.04675844 4019.727358785837 0.1506591911358535 4.025585311705361e-06 12113257.344644958 323.66396285467215 72240 6975 None WAVES_20210428 2049835400.444358 37205.62127209837 20.88348036780904 0.00037897217496714043 866194231.8046794 15718.812486687537 180062 58204 111113 RENBTC_20210131 559460807.6632725 16354.226082004985 34107.49664924752 0.9983324951008713 6584488.418316589 192.72914747221162 38094 2388 83739 ENJ_20190329 143509905.9779766 35645.22460490894 0.16552024556321623 4.1111892180599716e-05 10823648.084744064 2688.3759841378655 43451 12091 17926 FTT_20210304 2792485712.5319834 54910.320818515924 31.33460292280925 0.0006184258481238813 72847466.86356135 1437.731845198545 69906 None 3587 OGN_20200321 5926206.465563639 958.6124520786585 0.20587759984089837 3.3262190442641686e-05 46588355.35361088 7526.951690610443 66502 2173 104622 LRC_20200905 246819541.20723927 23529.90926535364 0.20631090166311464 1.9672971967007497e-05 75202552.21573111 7171.01078838434 39866 7056 169251 SAND_20210401 552671665.0398711 9396.022475300077 0.8002803451091618 1.3619097561124953e-05 148812115.18383583 2532.470936406135 94150 None 26678 GO_20190903 7465725.678607879 723.1650613489452 0.009676275580375785 9.372892502281941e-07 338685.7295350791 32.80668175085139 10231 687 740517 QLC_20200719 4579992.936316973 499.6078285775868 0.019083303901320715 2.081699285739945e-06 251255.07056188255 27.4081209224474 25450 5639 940522 LSK_20210111 205201413.26009116 5335.194375033767 1.4359219737135795 3.733367482919778e-05 16538182.56511146 429.9893319098528 177456 31045 299861 PSG_20210120 0.0 0.0 9.805992818421078 0.0002711888820748009 4233706.252319934 117.08493845140363 8578163 None 41999 TOMO_20191020 20303458.3074781 2554.9931029710824 0.3124411703849774 3.9317687820887563e-05 802683.7586875593 101.00995782370023 17794 1340 283886 CMT_20200713 10314239.108828096 1111.4698606449497 0.012904270870494903 1.3888710301220501e-06 2479025.4945073854 266.81450868546824 283512 1636 1005584 BLZ_20190623 13520093.892915584 1259.3664724548098 0.0653090134944675 6.088560211850891e-06 802766.3050344837 74.8394551184204 36552 None 922433 CDT_20210725 10166328.634130996 297.62289654484323 0.015097274927315796 4.412561308728649e-07 198054.93549928418 5.788657553063909 21067 337 581034 SKL_20210418 529955031.05323946 8791.170096492668 0.8006782183651343 1.3287184678436343e-05 231611033.1130419 3843.5647429252354 21391 1274 134291 WRX_20200403 25541963.803393498 3766.6241718278543 0.1367251108662007 2.0054321999934415e-05 44044037.983900644 6460.21286295286 None None 25623 OAX_20190903 3913943.558046733 378.8375449996317 0.07493515574064609 7.2531067487132276e-06 333923.95926944766 32.32109279811032 12306 None None BAND_20210602 301606735.33267206 8220.251576422941 8.55986886570715 0.00023335393958721532 122059171.45361087 3327.5029055130767 95630 5305 189880 IRIS_20210731 78496459.95350187 1880.6048801005577 0.07317367051220242 1.7517635740031066e-06 4727569.204144771 113.17709590662987 26583 None 791165 XEM_20190520 852901413.5590713 104223.55392496989 0.09437493148620218 1.1535914808496398e-05 92622337.45942464 11321.686569403677 216845 18444 179358 NEAR_20211202 4802464904.4669285 84022.2717210901 8.49242160159856 0.00014850995479153472 113782472.48767458 1989.753999263632 None None 8333327 MITH_20190914 9581645.987085463 925.3211763619341 0.0176705460886017 1.707029263103144e-06 1529169.5372417062 147.72249455274448 85 2081 697406 NAS_20210731 15246267.338055344 365.3972710520398 0.3354596971450793 8.030840518064052e-06 4259401.914409807 101.96926119016986 25276 4925 710448 GTO_20200531 7438045.0543097025 770.8070585969978 0.011235204563292444 1.1631963761941835e-06 10752403.902336946 1113.2113513480476 16656 None 1586808 COTI_20210105 27280910.659940757 871.9764102355421 0.047670594085237265 1.523689367352341e-06 10996378.173457095 351.4758904057937 34969 1270 237911 EVX_20190716 9046532.27909523 827.2558718393872 0.42644160181290164 3.904172821332533e-05 1244203.647842017 113.90976033897435 18199 2916 1096264 APPC_20190723 5508213.702476757 532.5979523857441 0.050770018338536074 4.910817966404677e-06 374426.7354802259 36.21707456234817 25393 3344 1368976 BQX_20190414 19297928.715042263 3803.7580309919344 0.16375305958800634 3.2271581420715315e-05 699229.065698384 137.8003426756664 61204 5812 421392 POWR_20200907 37159934.54597224 3608.9747216463247 0.08651991197216835 8.411169803960655e-06 1501913.384724671 146.01088029105043 81624 12678 213418 FXS_20211111 818263107.4264373 12617.92192365845 22.964159346177823 0.00035361858795327866 19437341.399326526 299.3101169340069 19795 None 106944 LUN_20200310 2245306.5894700917 283.5971738368786 0.8310409251856896 0.00010500363514985328 3027794.6755737904 382.5677385883009 29728 2150 1955482 ICX_20210107 366379169.6150407 9995.844326581278 0.6287628414323384 1.703531500773028e-05 104337411.0264948 2826.8538577730806 117447 28064 340142 BRD_20210217 16504263.14267391 335.40331825091096 0.208177159236416 4.232197079949194e-06 1629443.6257553804 33.12624007435982 551 None None WRX_20210723 419390081.7277348 12955.50043938629 0.9266279272827174 2.862202848092123e-05 5617564.493915905 173.51742398890218 295004 None 1290 NANO_20200621 148903797.32449946 15916.559432572538 1.118013799354461 0.0001194442068106011 6855369.531802906 732.4007776939364 98105 51870 210277 TLM_20210805 343629247.9052671 8639.348677635133 0.27696200227426915 6.964983497942281e-06 173175872.02434048 4354.991229796411 56589 None 11192 DASH_20210814 1983232916.5234246 41609.64379559181 194.86278403707206 0.004084268281447203 386937877.90694624 8110.107373428333 402457 41894 69115 BNT_20190131 31465830.880069256 9098.44841599991 0.49351687794563653 0.00014270202727295075 1658448.595456296 479.5458621086127 850 5099 112207 LOOM_20190530 56041557.02980063 6480.36061149916 0.0809889434450736 9.36585065633941e-06 5905921.795701786 682.9818883126501 19597 None 434311 PPT_20210120 33372505.73613351 921.633346374982 0.9199924581670255 2.5427651844632984e-05 2202885.300143402 60.88549962388587 None None 734972 SKL_20210314 466401131.45427006 7601.365287067348 0.8264547424283312 1.3470237876450267e-05 246271142.39319807 4013.929256905689 16961 610 180893 RSR_20210107 368944720.23849225 10065.839694142513 0.03958335362690655 1.0724471194268235e-06 245249172.31367484 6644.630742222639 52469 None 170522 FUN_20200309 17628181.304231055 2182.111659152976 0.002916330312200053 3.6252148844463247e-07 401070.33566694526 49.85601749181953 34990 17019 312525 OST_20200313 3621134.893427934 752.4421410903227 0.00527774678165142 1.0870917302619706e-06 209327.2552484899 43.11649222925899 17830 752 839878 COMP_20210310 5067298.851267483 93.2319590354309 5.494007098675922e-05 1.010828569220857e-09 33.22785930586306 0.0006113510389986985 2231 None 1572338 NPXS_20190507 137449853.1773882 24027.967710459725 0.000623913025915095 1.091076187577724e-07 4456878.1780678425 779.4024886549438 59945 4343 180426 CTXC_20200317 802406.2843495228 158.97905066402214 0.037760271600432105 7.507107392456701e-06 2706068.6869206526 537.9926410234073 16538 20064 396619 AKRO_20211021 89717774.69180386 1353.5436403938752 0.03305636807010337 4.98883841983212e-07 6328895.447821995 95.51514158553547 46841 None 217540 SUN_20210220 0.0 0.0 0.0003937693360134806 7.1e-09 2820.9918942419363 0.05086491155429142 42 None None ZEC_20201018 643417266.3859717 56642.30559871207 62.68490133298701 0.005516254739497596 384648293.1669418 33848.94807364446 71763 16200 161647 ADX_20191102 7812794.257332606 844.6031600830097 0.084852789495052 9.176963444689569e-06 1465156.35683972 158.45897827857164 53271 3829 287295 ZIL_20200330 37002869.48640376 6257.652984594646 0.0035326690403341774 5.984850873330008e-07 5563072.629683211 942.4647400031656 68653 10566 233633 GAS_20200217 29762432.18364727 2985.6094210669576 2.169838618987103 0.00021761956320571924 7991862.694502593 801.5276590429577 323121 98846 228840 OGN_20200914 30834484.974301398 2987.140244469907 0.23882829470973257 2.313001701710905e-05 11951435.391803367 1157.4713303014096 70896 2403 133584 ELF_20190224 48049126.52312145 11678.712164175871 0.1450439817600539 3.52495665411733e-05 13729437.66937896 3336.6205259055428 86194 31320 1006337 OG_20210108 0.0 0.0 3.696654855545709 9.367533182718517e-05 1904822.0461915168 48.26927160403976 None None 397078 INJ_20210814 311615556.57605237 6532.864516518243 9.531683105388433 0.00019978135470310148 27020843.638303664 566.3491628492404 79281 3855 150337 NEBL_20210408 52866926.88382356 936.9867309968442 2.9524345680333153 5.254094282434473e-05 2648450.704026442 47.13130598048825 39838 6028 544000 XRP_20190329 12801968361.38052 3179701.377854467 0.30695619008943753 7.623981816256065e-05 1070281983.1165979 265829.8037635243 915189 198760 34701 IOTX_20201228 38857044.73199999 1463.5598057931538 0.006719860363463513 2.555244206454134e-07 1808651.4866125754 68.77443849561523 30754 2011 501442 REQ_20190930 6857979.522703085 850.8292404165479 0.00939281592878682 1.165718043906238e-06 87257.96187085734 10.829359523122143 40893 29271 689575 WABI_20190905 10174884.221557518 963.3553002974596 0.176116591978802 1.6674671540108477e-05 6680754.705772907 632.5320579233424 36312 7959 1609387 SUN_20210212 0.0 0.0 0.0003482727022258372 7.3e-09 5682.130702530303 0.11910079045349303 42 None None BAL_20211221 196878615.88428655 4173.0421860206925 18.18708451798217 0.00038589490993964096 41242326.88289033 875.0827546019434 None None 2428230 SKY_20200530 8336760.722115534 884.5616669162087 0.4618211073529536 4.9256746785234506e-05 223421.21211637836 23.829577939268766 16076 3818 462485 MLN_20211120 165127705.32048672 2840.6112521289097 113.6214176008437 0.0019478725877694386 15378087.879760183 263.634765925257 30249 555 109101 AAVE_20210324 4118229794.5243735 75543.8160749401 332.58307598061964 0.0060919187394887385 581592351.855417 10653.017555282344 157715 7548 14216 WRX_20211111 686363413.248754 10568.83768833701 1.52092441238175 2.3414578850009225e-05 27131879.969883192 417.6943559666929 None None 834 LTC_20210523 11340979083.307632 301984.6133360634 169.8961627926336 0.0045239504148041135 6428640847.858953 171180.16058900164 181831 329064 91402 TRX_20210108 2208686804.6825686 56489.04329646058 0.031051481738788238 7.866423834722363e-07 2111753236.2767045 53498.07822583936 558596 76883 32747 LSK_20210112 178591114.3219475 5041.669543328271 1.24589096653155 3.504938631648046e-05 12646958.564433863 355.7840520245386 177418 31041 299861 NXS_20190520 22598066.432675306 2764.58458215371 0.3784770814474206 4.630183326459942e-05 571424.8067499425 69.90652121974637 21338 3518 737068 WBTC_20210131 3976990303.8842707 116384.74755563737 34194.54923392095 1.0008805397420755 286106782.9041376 8374.396437806952 None None 144337 RVN_20200410 107949108.62113662 14811.643069841932 0.018288675137418508 2.5082361961150173e-06 21336182.828490444 2926.1926112872807 30279 7630 209100 BNT_20190510 36711996.8595415 5939.754016611674 0.5636451881001453 9.129130714943039e-05 2959354.5725835734 479.3145634054401 809 5133 153854 FTT_20210201 991931987.488105 30005.39057849094 11.092323576662901 0.00033459016005313286 12689489.389574574 382.76725850145283 53411 None 4702 DREP_20210731 0.0 0.0 0.5024862761524479 1.203291824674198e-05 3260347.6294295834 78.07476212341939 4095 None 293141 XVG_20200403 41857006.51493591 6168.087629663452 0.0025902627051715807 3.799651497981877e-07 1351918.2138762579 198.31262891783174 294699 52119 317602 IDEX_20210207 36508275.267640375 930.6182089599702 0.06480277521541367 1.6473103595716397e-06 3488733.9112513885 88.68489805705633 45907 1933 6164235 TCT_20200316 2858923.058480758 529.1959649780188 0.004902565186653423 9.12341961731137e-07 384878.72656913125 71.6239354415108 26 None 409993 BAND_20210731 222220941.33007747 5323.931639381399 6.3034059277549215 0.00015086505391570662 43535199.547273636 1041.9668830164933 101189 5536 304423 HARD_20210204 42825610.1311122 1141.7327999364684 0.8976546976281377 2.3931516869494296e-05 16190650.931549998 431.6435227490942 16226 None None MFT_20191030 9077131.137920974 964.6054764600893 0.0010056291816380272 1.0688142035785193e-07 1104442.8931657544 117.38365123157378 18625 2327 1251152 FUN_20200306 20210170.816365276 2231.6546369352964 0.0033610452143079473 3.7102588513962323e-07 726392.3077065033 80.1864693096407 35006 17030 312525 FIO_20201031 8328829.873722782 613.4051928114567 0.07432249331965793 5.473855281714114e-06 776772.3575548922 57.20932226807782 55754 149 220465 POWR_20190804 31031843.966899842 2875.4316714306983 0.07353223764647318 6.81061888382592e-06 2095058.3055770337 194.04609618001535 84366 13122 515073 AION_20210710 63127547.02434673 1856.0821177248033 0.127895594476899 3.7632991671470382e-06 2984509.2823613347 87.81851589643077 73618 73377 296358 UMA_20201224 443824634.245604 18988.47663037579 7.95603782852354 0.00034117773380074555 41444052.329076454 1777.2398972841283 None None 163943 WNXM_20210813 135569305.55768993 3049.590931192976 60.956543471819224 0.0013711058564510107 20137618.60418023 452.9588659490359 32225 None 129643 REN_20201129 278587343.2251811 15738.47875304958 0.3157771856690892 1.7828360763073928e-05 27341478.12359538 1543.663563757158 None 969 94247 OMG_20190908 148581084.68844527 14191.32125162154 1.0595280259910032 0.00010120814362160458 55022634.67834563 5255.867307291381 287991 41374 None VIB_20200913 3335449.650097325 319.8711410992713 0.0182711170846395 1.74978907092259e-06 590335.5714806766 56.53528059442734 30648 1100 None OST_20190812 7145987.432224892 619.208482945156 0.010867058857941007 9.412749100301591e-07 220672.8915714738 19.114082188691654 None 759 571534 CDT_20200223 4825122.882175106 500.1359225738924 0.007156738224332171 7.414043218503073e-07 56756.62291934731 5.879718414593674 None 293 220223 ENG_20200321 8668115.037396925 1402.1386293548012 0.10489353717481335 1.691696980589238e-05 844817.6395148444 136.2500958980872 61150 3601 414852 ETC_20210902 8876202083.019896 182504.65632657034 68.47547602171844 0.0014073608570206253 5831543457.797697 119854.3840121117 505722 59622 218720 POA_20211011 9798601.361086832 178.52227484264753 0.03350037979409974 6.10008707642048e-07 235654.3036923288 4.291031269769735 20402 None 227008 COTI_20210401 304033830.1033816 5168.9461381675 0.45315472605012624 7.711745592751865e-06 138573434.32040337 2358.230003927293 67817 3274 87239 ICP_20210916 9987937695.492353 207269.21096989594 61.532945436832264 0.0012764479798745003 350534420.8981212 7271.534789297727 260390 23165 22553 CTXC_20200511 843939.748464214 96.4128078114929 0.08208664651559415 9.375946829853786e-06 5962286.323169158 681.0130748827537 16468 20060 447744 SUSD_20210219 255596583.08876708 4945.3688614777275 1.0056112061994906 1.944863032605108e-05 12728759.148019973 246.17558918697216 83947 4816 30058 VET_20210731 5589187587.593052 133964.28342383346 0.08554391352533379 2.047904808415508e-06 714902243.0726991 17114.62196199423 395118 194849 39351 FORTH_20220105 81470155.88898695 1761.0385927850652 9.380739247748796 0.00020406020865207575 8527280.66049336 185.49483413395936 36187 None 87350 VIDT_20210325 47662450.63469319 901.6838548681022 1.026838690296577 1.9463944809135354e-05 12262361.271678431 232.43565447723122 None 1399 516242 TRX_20191020 1023304774.3019713 128786.28067972451 0.015459444012528604 1.944685254138115e-06 711662510.7628181 89521.9510793386 476299 71321 65552 STEEM_20200704 71803448.7549049 7918.526209371349 0.19981602740786894 2.2044695967508468e-05 2451667.541050453 270.4801324347515 11536 3863 224107 XRP_20210804 33218265132.768913 864557.5968252243 0.7170384074303042 1.8665323242448533e-05 2831324444.739079 73702.58750112737 1945837 324200 16462 HNT_20210731 1332652372.7174845 31941.827063506185 14.284255581172882 0.00034206163985197994 26424950.514864504 632.7919473826569 66254 43770 2418 ANKR_20191213 6931585.990791049 962.9501242329408 0.0017345301167007617 2.409644767563738e-07 1113337.7641575886 154.66716271472313 None None 5301 POWR_20190916 23470025.662709203 2277.776170571343 0.054799634954977396 5.318328341446197e-06 8015619.447295778 777.9193440946166 83875 13035 385730 ACM_20210422 0.0 0.0 10.721996122163985 0.00019825528203858315 5514821.225185973 101.97191128725609 None None 44251 WRX_20200316 17799446.23822479 3294.7354424841474 0.0953680971522834 1.774750840220307e-05 14303680.327142708 2661.840745160699 None None 25580 WPR_20210310 15616195.86478727 285.73762965105135 0.025663068919743497 4.693128354642523e-07 1112310.6990487543 20.341358616162463 32840 None 7585359 IOTX_20190914 18383312.43567064 1775.3179684712977 0.004460776247069777 4.3092474628247835e-07 1335806.8288321989 129.04306042587146 22546 1763 585663 DASH_20200626 673206874.8874093 72730.43836673573 71.17859126014677 0.007692655297599528 228997691.59768125 24749.01897072658 316613 35065 75056 XRP_20200325 7127137923.557504 1054738.8612616821 0.16232648779448133 2.4022553895449134e-05 2083687565.2443302 308363.0867485624 946328 211116 34201 KSM_20210624 1830185803.1104827 54285.006106317145 204.03995577523588 0.00605433004532553 324211611.5771756 9620.096679384487 86153 None 86794 LOOM_20190312 46101768.012863085 11923.394037036092 0.06610171359433094 1.7117298726360003e-05 26363487.632814158 6826.9288153262005 17586 None 434508 RAMP_20210916 138270407.65140596 2869.0728570332963 0.39577407944071075 8.209992559309417e-06 14737667.527443685 305.720225318633 33210 None 93665 ETH_20190512 21127886686.212933 2886765.173830496 196.6901677286205 0.027004120814351315 15122302157.846966 2076181.433863324 441989 436526 36863 OAX_20210111 7049731.114291792 182.92960445871807 0.12735437565082414 3.311187470950816e-06 567084.5387778246 14.744080917324212 12813 None 1823390 BCPT_20190608 7418031.8357038535 922.499604451092 0.06365042563173096 7.92822844684707e-06 876113.5172901859 109.12775588706457 10805 2458 1057836 QTUM_20190726 295173925.4611321 29803.935962781656 3.076241606792286 0.000311088179883041 356746755.41167474 36076.39223627856 178962 15360 354208 VTHO_20210813 374930928.1478818 8433.958952581566 0.009680956160103482 2.177567999134148e-07 92441360.11591375 2079.3126655652354 398244 196231 38303 PNT_20211120 34062636.721125886 585.7884359923956 1.0145293938784583 1.739428234313586e-05 7282885.305006903 124.86633116037804 81784 371 295224 DCR_20200312 177789760.26156974 22396.3266978124 15.858520258762397 0.001997711230031349 27196937.375453785 3426.021238481137 40865 9747 216967 DASH_20190621 1438000197.7587364 150330.92975503707 161.82231174056992 0.016931581652315255 331873443.0762053 34724.15045391428 319878 27545 110566 YOYO_20200314 1107782.159488129 201.2132675926346 0.00637570825227591 1.1460795235852545e-06 168205.80434230858 30.23620599893238 7507 None 2563708 MFT_20191026 8367808.435028258 968.1322612081191 0.0009294250833036392 1.0735156721858895e-07 1628478.054352926 188.09441928817864 None 2319 1251152 VIA_20200316 2298178.625640236 427.67912631396183 0.09920777909155601 1.8462053302582228e-05 303658.58120167704 56.50928751018699 39531 2181 2066197 GRT_20210519 1496465971.0560231 35071.84593013656 1.2280967999836645 2.8706676650645914e-05 211997210.35564476 4955.419938069545 None 14657 30058 ZEN_20200718 70928294.1712637 7749.110670645806 7.45404553932403 0.000814327417505279 3302281.581161082 360.7622756898287 64507 5997 70851 SYS_20210707 77659675.44310413 2273.324342548618 0.12603554933598732 3.690452105471985e-06 1055411.6964738716 30.90355330628628 74409 5456 378699 HBAR_20210219 1069981832.162602 20701.126009504373 0.1497614735053025 2.8963670325469798e-06 108067774.51025014 2090.016424425251 52070 8874 100428 AMB_20200113 2005301.1261580358 245.85401374808342 0.013889484468213123 1.7034807253822773e-06 261931.20383275935 32.12464495182843 19129 5524 724593 TNT_20200310 16325548.73627885 2062.02551787709 0.03821240482416739 4.821646120015081e-06 581683.5439052111 73.3969038445173 17732 2564 1226899 ZEN_20210825 918861843.7463431 19115.28947976163 80.23134514770122 0.0016706801684595114 60101113.71124122 1251.5026215109851 118715 7525 1506863 OST_20190531 17160238.73180265 2066.2529801418445 0.026898401369250487 3.2400274984753484e-06 2827017.618985904 340.52636431619516 18121 756 1014397 MANA_20201031 84756937.83233203 6240.637198009362 0.06402654817998758 4.7274740040316225e-06 33279396.970077407 2457.2226446382856 53497 7448 81299 ALGO_20211028 11128880460.509079 190142.32809680485 1.796290928374214 3.069637405020151e-05 665227662.375327 11367.911973644486 170462 50702 93058 PERL_20211011 0.0 0.0 0.0851867797011532 1.5563869725647355e-06 3428479.6072913157 62.639308766121005 918 694 2531350 RUNE_20210421 3422576072.1031127 60581.37052275674 14.741716519377741 0.00026145245051713306 268621952.120469 4764.158064786688 847 3741 83196 MC_20211230 203579951.8920213 4381.03472492559 4.7886512995676105 0.00010288772557239707 16289413.391915968 349.9901308232888 88011 None 49880 FARM_20211002 110805579.93923704 2300.78229591167 181.19143796112243 0.0037617108136276667 18735442.22745285 388.9660373479009 56377 None 84782 OGN_20210806 254672786.01854452 6215.8301245046205 0.8063684204039545 1.970794888911957e-05 42328460.82751606 1034.5235768606685 117586 6032 91977 EVX_20201201 6147346.625743121 312.6757109806403 0.2809676119230135 1.4293201304395062e-05 402397.84149371355 20.470520831773513 16641 2808 1437872 ICX_20201226 233131415.01761773 9445.261388114259 0.4032597689166247 1.635402075378051e-05 62124891.24702614 2519.4473614606527 116710 28050 334338 THETA_20211207 4788664453.553859 94873.23624752426 4.79875379997202 9.502856223346829e-05 327522539.90098464 6485.849735826371 226498 26544 31041 ONG_20190801 0.0 0.0 0.24537410591392206 2.438231400209391e-05 26339391.912370745 2617.2905321025487 81454 16298 237451 EZ_20210616 0.0 0.0 4.51587529284462 0.00011181571297156589 3567479.4778810474 88.3328780054565 33253 None 123122 NEAR_20210708 952057861.8353021 28020.000805807224 2.3057808519034326 6.786387602136718e-05 39163613.77585046 1152.66575643518 None None None NEAR_20211104 5866931500.046698 93193.04146939478 10.993650112660688 0.00017435298927108436 313227548.4823479 4967.609378167994 171464 None 6661866 REEF_20210401 447477928.367694 7607.613956181827 0.03961886598743724 6.742302299957681e-07 172272116.87099418 2931.71109482585 92303 8847 36587 COTI_20210120 37627689.18230514 1039.1468165933247 0.06634010062290767 1.8346635631692137e-06 18857161.212344892 521.5027751879917 36369 1312 233867 POWR_20210805 121653741.8785896 3058.5554065464903 0.2832749530009558 7.123740285059791e-06 9939383.737560773 249.9535789868825 91832 14043 171172 XEM_20190826 493517841.01860213 48885.538023422145 0.054818391098222695 5.4290575865709175e-06 52292695.56672987 5178.91988256479 216699 18394 173706 LRC_20191017 29024168.847407047 3624.273245983108 0.030073323486575924 3.7562735900008865e-06 3296060.207373826 411.69057731639515 34053 2438 558420 EVX_20210722 6485363.631620696 201.71362732254622 0.2985242351000386 9.276425729700246e-06 164924.06479726342 5.124896602178371 18278 2805 1518494 RCN_20190818 7179108.137909879 702.3479365115437 0.014156083613144506 1.3849207901291733e-06 1073182.6373963004 104.99181742298617 None 1111 1641051 DASH_20210408 2582295936.456463 45844.84190239426 254.22078879182186 0.004524062979511967 1999581943.7873309 35584.165596294675 388917 39196 47814 BAND_20211028 352612815.1232374 6024.5612145998 8.480170883646501 0.00014480148971646517 63370871.67698982 1082.0768530920548 111450 6121 359997 DGB_20210114 386639736.76378953 10345.616878948775 0.027741508298771433 7.423008791220195e-07 16883874.646917358 451.77482271026224 179555 23905 242284 KNC_20210220 448666716.7809127 8033.512344641191 2.201083693573398 3.934197834355337e-05 129927499.81376459 2322.312822011149 137168 9804 94681 STPT_20210128 19461540.351258755 643.3307461867616 0.02126574770708145 6.993674011917503e-07 3459194.5771927643 113.76265509170385 18792 None 1582459 HNT_20210814 1596890418.7409148 33514.80569331718 17.03773604139618 0.0003568921227458055 17786354.722085603 372.5735553862256 71067 45968 2417 ILV_20211221 701215591.8208547 14862.976525006348 1103.0399672142826 0.023404383939994257 21916304.36992727 465.02177370324205 None None 9424 NAV_20210420 48325966.242021665 863.5366730995028 0.6755552812542256 1.2079875015647603e-05 1024201.7841400089 18.31416301008631 51007 13973 446539 FTT_20210825 5067714869.68832 105457.05710296298 47.54862078984275 0.0009912009510604533 218128343.07194695 4547.114459150428 174881 None 1799 ETC_20210106 828064003.6596366 24369.01410536123 7.196842680725813 0.0002111327673138265 1281114313.4094956 37583.87146073072 250499 26297 167227 NEAR_20210511 1764446797.7828424 31607.126067490753 4.745644621053528 8.487735971441016e-05 77815422.13818015 1391.7535137059508 56034 None None QSP_20200322 4752281.318539535 771.2687052292506 0.006655088496086269 1.0806271927748872e-06 87869.51589748578 14.26790768456785 55277 8322 355576 BCD_20200621 117424311.08120666 12551.667987888199 0.6248831173643631 6.676005997959803e-05 15731551.486829672 1680.697224246658 28322 None 966151 EVX_20190929 7210418.824546417 879.2266145218297 0.3307531570892852 4.033149607898301e-05 881876.3954548009 107.53455748823504 18240 2902 454708 AXS_20210725 2294134879.5469546 67150.8804207989 42.40124319777929 0.0012390668521102552 5764375115.97064 168448.97910216235 274806 None 3082 GXS_20200324 20845699.14973954 3235.591172805899 0.32197395417711433 4.96884846962602e-05 9006921.65980638 1389.9891070304304 None None 697464 OMG_20200421 76248169.54205789 11134.77512190563 0.5423781881928998 7.926479972894843e-05 106229791.09092115 15524.745093685762 None 42897 554099 ONT_20200807 453736684.27494836 38565.61138144955 0.7115196056999757 6.0462851864848286e-05 102425177.8098675 8703.79158007364 88601 16595 189841 FLOW_20211225 2922802587.835541 57483.36464544358 9.223323260677407 0.00018144441086765173 81113697.19242908 1595.6967553250925 None None 178119 DOGE_20210219 7729583761.278036 149507.09510200517 0.06018616850059711 1.1641324417650504e-06 4660795048.421017 90149.9938516768 574343 1151536 15001 BTS_20200410 50667711.04398138 6948.9225359355005 0.018695220272746282 2.5639926254966783e-06 43698340.84134624 5993.094600066637 13239 7017 124371 ZRX_20201226 269501056.45252997 10918.768379519839 0.35934028340405033 1.4552993192831015e-05 42048943.40466596 1702.9484736220443 162657 16317 97350 OST_20190305 12082673.443808192 3254.241899172195 0.02294250103536746 6.1791331602489225e-06 1237618.0406514301 333.3292504998711 17302 741 1030175 RVN_20210105 104838082.24468255 3350.926798273359 0.01332643911385452 4.259513432146777e-07 11637056.048182238 371.95379894352067 34645 10548 220085 STX_20220112 2252221346.7423315 52567.5863154915 2.140670576100255 5.00322316517794e-05 69575122.69552395 1626.1253341674376 104537 None 35752 ENG_20190515 32353218.631162956 4048.1187476829655 0.41867321432703597 5.237816906221713e-05 1463604.5215404436 183.10444147398704 61957 3410 347491 SNM_20210603 109460455.11090066 2910.0498952 0.25013730097485565 6.65e-06 357313.0190857865 9.49930925 32430 9706 None WABI_20210725 8973498.818038708 262.6470348628567 0.1516709063051736 4.432966717795654e-06 436509.84995392844 12.75810690378748 45419 7893 684219 QKC_20200629 20189492.44221191 2213.7993919995174 0.006254875759187167 6.855273000095143e-07 7490725.047399331 820.9749824870413 49788 9207 656041 STPT_20220115 128063968.39831646 2971.672263572171 0.09787640095444751 2.2701161471072465e-06 5691209.287829869 132.00021634308212 34750 None 443822 PIVX_20190915 17534425.60990379 1693.5419577536557 0.2871251684689342 2.7731648058923503e-05 405002.4976498693 39.11669181667841 62989 8595 256099 NANO_20190201 112222334.64686516 32706.269708904045 0.8422046890572867 0.00024545357924596285 1649836.2766794395 480.831114505058 97418 44637 316685 QSP_20191102 0.0 0.0 0.011709609824551772 1.267587293800861e-06 54700.560993337465 5.921438640385077 55971 8460 459848 NANO_20200308 105544706.61358593 11874.142588459043 0.7934605049887123 8.914853985767809e-05 2966712.547229905 333.3223142174686 97706 49236 295755 IOST_20190901 86689749.90982835 9030.834136494947 0.007229075950340421 7.530867028111098e-07 28313342.745230455 2949.533533751624 196345 50748 94352 CDT_20190515 5692557.313450911 712.2675566085427 0.008431778064081638 1.0546092847425127e-06 320201.1815852859 40.049339121468634 19822 289 447254 LUNA_20220105 31143245628.358627 672314.1174406218 84.80370724607141 0.0018460420159838332 1565950602.2559617 34088.257466522635 284140 23804 4371 GLM_20210125 110492519.19826658 6393.577954391452 0.11965347062245923 3.708601168302569e-06 1266959.3084461081 39.26878800131607 145872 20302 197039 APPC_20210429 24209250.755942386 442.2864008004623 0.21461823214968992 3.919826490873754e-06 1086034.9889500497 19.835540890733874 24870 3136 715817 DENT_20190922 35432540.767867506 3548.068570993762 0.0004780495769236648 4.786498029255645e-08 523169.83258277626 52.382671034626355 46431 10243 275071 REQ_20201224 22118299.12317733 945.463977497834 0.02858794623030117 1.2259331741616118e-06 546966.8395655688 23.455507730003827 39409 27359 356160 QKC_20190411 71070598.74334247 13390.906347959017 0.04499929985455028 8.478264944246044e-06 10090347.953198016 1901.1105417941956 48444 9123 169394 BLZ_20190616 13180572.02434691 1494.757726574341 0.06365925679246642 7.217007979732935e-06 1429216.2641087754 162.02930575302895 36563 None 922433 QSP_20200301 7101318.916767678 828.0699640009883 0.009933937806408933 1.1596567877975526e-06 25276.11253546951 2.95065421609359 None 8338 347894 IOST_20190227 98052039.67721681 25743.58428105337 0.00730396402270709 1.917085384247211e-06 8921561.925318051 2341.6593946124835 195586 48215 81938 NEBL_20200607 9424522.618621316 974.6631921865763 0.5748118738972812 5.944576702617419e-05 294126.5769966336 30.41791717662474 39084 5958 1283698 NULS_20201111 22201845.39300607 1451.520217964233 0.2273727889192805 1.4884121964176941e-05 8437684.065579168 552.3419021431691 29595 5145 360585 REP_20190414 207004160.53905457 40801.98189795458 18.82304555438401 0.0037096401269151413 6079161.804075292 1198.079370378783 124417 9857 255741 CDT_20200801 6195525.956896212 546.6402543288818 0.009049406228563836 7.989823700467673e-07 1151658.882664316 101.6812728167888 19222 289 257807 EPS_20211028 215801321.33178422 3687.1461868740635 0.4860136568357552 8.30257353986452e-06 27836754.18620827 475.5354000684592 None None 62864 ADX_20190730 10037224.226302423 1055.2229973936408 0.1092590861404368 1.1480328515920164e-05 338779.76752873306 35.59706714714582 54036 3866 831404 PERP_20210729 473250102.07470405 11829.683486412368 10.820072651152737 0.00027044279359258257 42861801.582381174 1071.3112316408708 24047 None 152304 TNB_20190305 7637311.402643699 2056.764032754643 0.0029228270399111866 7.871311267432555e-07 986413.2141966606 265.6457375420499 15036 1509 1537568 TROY_20200418 4407929.635154924 621.4455568733781 0.002312210651279449 3.2845564744208164e-07 388439.99603943096 55.1789303110996 8746 None 456905 VIB_20190520 7434157.339393572 908.5351301912101 0.04369960821446399 5.346088501677281e-06 1882270.327861423 230.27171565116296 32977 1122 1724143 ANKR_20201231 53876562.84549527 1865.7231816042151 0.008323478467009548 2.8862675104552286e-07 7874643.497441888 273.06285194547837 30943 None 5169 MKR_20220112 1872301184.8621356 43675.1775437923 2073.5337686546827 0.048470220649541575 48592717.37464255 1135.8868462691426 194783 32560 27561 ALPHA_20210221 386293891.02944297 6913.712847868305 1.5854593393965324 2.8199352833255565e-05 224024445.7455628 3984.55149991938 39668 None 39039 GAS_20190816 23620676.78704665 2293.3743307333766 1.6948105997053093 0.0001645058745901151 938723.4363943095 91.11668284888908 324382 98214 189804 DCR_20200418 142277777.13941026 20097.647153120328 12.429198328957874 0.0017610546947835338 101575358.220738 14391.898554888377 40600 9770 260313 ETH_20201106 47077208350.069885 3029677.3277420034 415.9277704309719 0.026756207899686833 13606373470.76514 875284.0835016924 500215 491376 9859 WPR_20200518 3726057.2194461166 382.6238033996689 0.00615262095213606 6.292558003473664e-07 128750.97861597862 13.167932938624602 33108 None 1707857 ZIL_20191015 53003527.25889798 6350.358797668035 0.005730748609020408 6.86554992005616e-07 5929344.540165436 710.3471764516423 66312 10586 177245 ENJ_20190515 123084565.09440808 15410.484945191076 0.1415080057296188 1.7703987120198186e-05 17719904.1104317 2216.927251039388 45796 12428 19139 QSP_20210427 55612783.0723561 1031.6967275536153 0.07791066321561266 1.4453543203637046e-06 2206388.91182664 40.931672437260865 63935 8407 217402 VIB_20190811 3307980.92761665 291.8692361920969 0.018095918440913922 1.5983703099439926e-06 293121.37752887735 25.890728264598636 32478 1120 2890790 SYS_20200701 17151321.02277903 1875.8530356077931 0.02913430890588693 3.1864415416666216e-06 610264.3728730951 66.74507898586315 57205 4452 880000 AION_20210105 35080098.36050606 1121.2608926585672 0.07197590357438383 2.3005570013617367e-06 2766134.6595843006 88.41362375172523 68287 72530 529270 DASH_20200403 634913587.824436 93621.60927820284 67.44112829792117 0.009937187634448008 639514903.7704628 94230.03075689852 315660 34602 60751 BCPT_20200418 1850391.448159572 261.3796417681126 0.01588145953388426 2.250194914582763e-06 41986.594274866235 5.9489507696933 10617 3170 1977022 XVG_20190507 112555030.39539534 19673.62907906574 0.0070591550011775755 1.2340293169503993e-06 2173803.8924899045 380.0083341683173 305086 53090 413203 AVA_20210128 61550671.92522522 2033.6037590326357 1.6044376447675506 5.276519788775828e-05 6002659.958864326 197.4096915609873 None 9137 88426 OGN_20200320 6226622.84344431 1006.0951815162516 0.2178308082582551 3.522370962627696e-05 48785314.956830464 7888.690226171168 66515 2172 104622 BLZ_20190730 8120155.750975572 853.2336666098871 0.03893043644024419 4.091774547375563e-06 496158.3504251697 52.1486090415076 36547 None 1258413 REN_20190816 87029874.4922187 8400.455700432549 0.10550234650425785 1.021104213319383e-05 10917588.289507017 1056.6585266662348 9389 877 378808 YOYO_20200414 1277982.7171672424 186.74272316180608 0.007319417621036012 1.0677496191056606e-06 399714.3689997106 58.30994859808133 7464 None 3120831 NXS_20210204 34036234.421858326 908.5066750175819 0.49981900259502715 1.3325123907467633e-05 1192680.7820717378 31.79674866431224 24369 3600 387114 OXT_20210703 166048584.81792772 4912.6466426241805 0.278553573934744 8.224065572734545e-06 19072891.970118858 563.1114762170887 66865 4285 118089 ARDR_20210603 235705223.23465428 6266.3174520621105 0.23594128366867118 6.272593212934618e-06 8322389.353505326 221.2540432199423 72053 6921 None FET_20190818 20904710.068107907 2046.386196133126 0.06648593984618406 6.504285555735048e-06 4925254.222933525 481.8351064099191 16301 297 378000 AE_20200217 75951410.29558772 7619.042849811881 0.21858073422513835 2.1971365954870737e-05 24122705.1772214 2424.7735517453098 25371 6344 480371 XLM_20191118 1449670129.6788456 170561.35128822867 0.07194597637740285 8.454691633899752e-06 173854477.56448406 20430.412804045627 278392 105138 55903 COTI_20201130 26577097.329036277 1465.2718129481848 0.046810125671948595 2.576268242834024e-06 2604963.517275152 143.36822828311426 32876 1227 173019 STMX_20210727 178449805.7235452 4768.145317796176 0.01913943200643137 5.129561119849022e-07 30312358.934448164 812.4018402887027 69048 4654 85845 EGLD_20210916 5102483269.419831 105875.75617937541 258.4327472170754 0.005361887712361089 272371680.74354625 5651.088663880688 325541 10871 41484 MANA_20190905 45766799.84707478 4333.188294852501 0.03449268276717151 3.2651434191777447e-06 25568229.591068726 2420.3375873319933 45693 6365 122199 STEEM_20210723 144126534.68025583 4456.339809116848 0.374380347002196 1.1563999572100835e-05 2976333.955266934 91.9341115545633 14109 3937 238289 REP_20210603 162652865.5555993 4322.092568938583 25.10430345379067 0.0006667148147017959 37823461.07516209 1004.507529496881 150150 11171 154273 YFII_20210408 117365797.63703997 2083.7240573723907 2987.3503302329354 0.0531201069134661 217581095.6030371 3868.9573645958026 15182 None 306632 XMR_20201115 2074116266.9669845 128887.47987263257 116.88656673824732 0.007263584209987086 240978725.45542246 14974.93949908333 325707 183613 75533 LUN_20190302 5640762.3441430805 1475.3750321251744 2.0912309387125005 0.0005474055408893255 4499107.255937559 1177.696922594246 31668 2254 1371801 VIA_20190804 7084898.5752712535 656.4914986663108 0.30602649935414566 2.8356622618964744e-05 152844.55734965316 14.16268016421407 40922 2231 1890047 IOST_20190807 112732624.83354327 9822.948963022216 0.009364908806228187 8.159866545069653e-07 39444435.950630195 3436.8869997819334 196809 50571 101612 MANA_20190811 51147747.645187706 4514.136636162503 0.03849830359718182 3.3995094706036063e-06 15000276.93363322 1324.5670258908713 45652 6350 132863 IOST_20190221 110884618.32737052 27958.19933691776 0.008276570230565402 2.085414439157052e-06 11729542.014999911 2955.4459880550185 195094 48141 81938 WAN_20190225 30404278.045570076 8071.8950115271755 0.28467096628113087 7.587720267396717e-05 2850378.263715743 759.7498685547051 108123 17231 506668 ADA_20190515 2621490905.487821 328216.9953802822 0.0842992511424277 1.0547741257390613e-05 332365790.58416647 41586.47098734953 151414 73090 116208 OST_20190510 12035354.462744914 1948.18567292727 0.019285958165698114 3.123671386993596e-06 462127.78090897895 74.84903337225349 18184 749 1072673 BRD_20201014 5433408.6359040635 475.59673653319214 0.07694328484534872 6.733980542262251e-06 65872.9783603072 5.765121094462685 239 None None HNT_20201101 37749095.95135969 2735.6925859476873 0.8358166896714859 6.058342013831562e-05 937416.5671213983 67.94779576949466 None 1724 69434 SFP_20211202 262046377.16055855 4584.673150829756 2.4237229204475788 4.238564765662919e-05 233436615.38911724 4082.2991962348715 429354 None 26557 ZEN_20200502 53654478.692824684 6054.7634367457 5.965262682551922 0.0006754501112412262 3619072.4336051443 409.7896451431538 61228 5255 41746 KLAY_20210806 2716300592.9471407 66297.08386518048 1.0885815983458207 2.6605345595116652e-05 38772958.05183547 947.6257455404229 42138 686 67261 TOMO_20200423 23061726.09803276 3242.388267358922 0.3262087596942441 4.585288593575949e-05 11419622.085972814 1605.1764809393328 22516 1529 222907 LOOM_20200605 16011862.370890372 1638.1099939535147 0.01920271061645854 1.964491657971948e-06 8588941.46255881 878.6730264811931 21624 None 619588 XRP_20200707 8382624840.303058 897997.1535190381 0.18838913245133598 2.0177584236748305e-05 1449017121.488291 155198.25718648138 951890 214926 31878 CND_20190615 29829119.00739126 3435.527312655412 0.01711447276069383 1.972389507986786e-06 4537492.76739898 522.931863115183 36286 6157 588984 GVT_20210324 26419645.59428639 484.63561945803895 5.948262492439636 0.00010911851053105426 1481780.7557897377 27.182678842917067 23083 5513 231591 FLM_20210624 0.0 0.0 0.37042958084807803 1.0995619515247056e-05 15468593.060374418 459.1608568048585 23263 None 89339 FUEL_20190520 5568028.552165599 680.6076785173485 0.0104789369007136 1.2819639892369658e-06 30002803.02425247 3670.459457642345 1 1514 None REN_20200701 128109301.60344684 14003.743577864421 0.1465638843094907 1.6024565362825065e-05 6713030.251578209 733.9693032553663 15067 898 198757 ELF_20200807 47207890.169221036 4012.4618738147065 0.10228541824102742 8.687437907624216e-06 14237164.05927556 1209.2092975966816 81524 33358 548610 OST_20200330 4695200.765194146 794.0178015757363 0.006767599304388404 1.1465289316597023e-06 55061.342089743106 9.328185503087736 None 754 732102 LINK_20210718 6776190629.101993 214393.98809404776 15.397598050835127 0.0004871498373375656 603602950.5917487 19096.81485556747 400317 62560 26292 DOGE_20200423 249659994.30066794 35101.216314351834 0.0020074003477411153 2.8233428367366017e-07 126033359.24454379 17726.179155709888 139580 153227 112062 XMR_20210105 2327202278.143919 74384.08173696637 130.876962624806 0.0041832043466087645 507596514.0889316 16224.24528713671 333274 188128 59059 XMR_20200807 1701394504.8714476 144611.00800402873 96.06193594464662 0.008156644806348836 135320788.40020743 11490.124522699594 321095 176667 88499 CTSI_20200701 7114991.48176265 777.8999559324834 0.035679658547562124 3.901036215111186e-06 3794079.9986905465 414.8258161773277 14831 117 226928 PAXG_20201015 66071942.90596522 5789.649464894165 1908.9338466001886 0.1670396800385446 802323.295182305 70.20663746594066 7610 None 94594 ANKR_20210930 572853579.782123 13788.64378993926 0.07500402702217004 1.803613726622973e-06 28167201.951159604 677.3336592268084 None None 5363 OM_20210508 106502917.75488594 1858.6182813675102 0.3598075213461459 6.277429446687805e-06 18535072.07894481 323.3745832481203 39053 None 68115 MTH_20190908 5392309.212570092 515.051386525584 0.015515476498278606 1.4819750440896365e-06 1844781.4839275924 176.20600445514248 19536 1990 715962 LOOM_20201224 20220142.67643871 864.6914526307455 0.024098825465287625 1.033498150644147e-06 5710595.876259151 244.9036483413315 22744 None 350385 EOS_20210421 6422857437.411494 113687.90584443348 6.66881492784415 0.00011827510063961592 5762592288.295892 102202.74369851271 212235 82508 58571 KMD_20190605 177171406.01374745 23064.838409142536 1.553925075972976 0.00020229579695523882 10207472.058448916 1328.847012568685 97126 8381 375668 OGN_20210108 33018395.894581143 843.5414958833517 0.16338236886337412 4.1402019436647656e-06 22256311.32029917 563.9875589278918 69655 2487 203625 SAND_20210603 233659459.79089025 6208.914988215803 0.3354568096681416 8.919857370984039e-06 44917852.64053759 1194.3738431210775 122458 None 20999 SUSHI_20210420 1825330534.2054708 32609.3496969858 12.182422737681122 0.00021783878853815262 760582562.8778931 13600.281951149966 None None None POWR_20191011 20903354.458098527 2441.759313996701 0.048806783596879524 5.7012102374664826e-06 623737.481376634 72.85992340096311 83599 12985 329598 RVN_20200607 126705621.43382993 13100.525792672628 0.020033665410546214 2.0713489067230956e-06 9590816.166490884 991.627152292619 31753 7949 203270 KAVA_20200626 31665227.181965306 3419.940680744801 1.1649249043049767 0.00012589494516292832 17986557.955349777 1943.8306444393509 None None 334665 MFT_20190625 26452775.35004995 2396.3855334350537 0.0029941119967814896 2.7108842194191034e-07 1797488.9581389888 162.74556384120078 18777 2108 885644 QSP_20200411 5294225.109543539 772.1832230399968 0.007431041915342359 1.0834539909803433e-06 214162.9891746449 31.2251966796851 55014 8295 386866 CHR_20211230 401633492.8094649 8659.740635530648 0.7128796672757342 1.5318901841481686e-05 87238427.49411333 1874.6458468854537 None 1840 31346 HBAR_20200425 130908332.45819518 17458.37070675031 0.03291391951149617 4.391295560983114e-06 6718348.015582203 896.3457484199441 38698 6419 105863 QTUM_20200107 165747270.89677522 21362.10161644067 1.728875821177954 0.00022297949299495367 306377602.2496585 39514.64968032926 180007 15226 156080 PIVX_20200725 28604295.18097996 2998.6893441593984 0.4471687125882835 4.687124463283093e-05 1017072.5637094271 106.60731755367034 63952 8484 353299 BEL_20210221 66505677.64934603 1185.996569060971 3.013939991039549 5.3595151105196184e-05 36459849.56135372 648.3444104139207 None None 362473 BCPT_20190806 4484502.530280713 379.77449426482855 0.038307768367074786 3.243187563127764e-06 228923.18969097477 19.38094734736438 10964 3042 1188214 GO_20210708 20472120.043094862 602.522321112625 0.018810278112921422 5.537697162761831e-07 386538.09799415275 11.379581501727879 22371 1100 133372 SCRT_20210704 71826372.61235145 2071.9010990256384 1.0310771415026836 2.968465765775926e-05 2160068.8054309404 62.18826935972334 85114 None 51837 EVX_20210704 7870551.8814291125 227.15568032026474 0.36103448997381254 1.0419985335791964e-05 73738.42027338194 2.128199048209596 18266 2808 1315536 ETH_20190410 18514941900.58221 3579683.917387645 175.2941224274854 0.033881554671129625 7853653932.961174 1517985.893724602 441132 434685 33191 COS_20191113 19188128.180602398 2180.223321866978 0.014531102611356692 1.6508821172841124e-06 6138106.997296127 697.3518353585258 9197 None 197006 THETA_20200612 205838570.9522671 22184.55152839281 0.20582824925677476 2.212873928366903e-05 29172381.747106217 3136.3432001991378 71329 4236 132852 STRAX_20210120 58827648.244615816 1624.6164654142983 0.5866197036510764 1.6276054613928825e-05 3327497.868853863 92.3230786557605 144315 10283 214690 NXS_20200323 6851768.540105072 1175.1356206756373 0.11570651571361287 1.984371461372968e-05 49202.86413795286 8.438311257667415 23645 3532 599319 SKY_20190726 22224496.636110306 2243.579387373536 1.3833628777530027 0.00013975546990874552 1234084.343800726 124.67447272767616 16351 3791 462705 NU_20210707 141426503.99906674 4140.5735322174105 0.2589760195021533 7.579228343923798e-06 22066915.4027644 645.8134270698756 None 7123 128147 AGIX_20210819 191481261.0570525 5830.0 0.2583783419482368 5.7360656328873575e-06 1472455.10602889 32.68888199365374 57226 None 189505 CVC_20210821 222005744.8136047 4517.9937363980835 0.3318603533104887 6.750305875345849e-06 42500596.96383681 864.4962452693989 104031 9856 272876 NANO_20190626 190827295.34436184 16166.528392651822 1.433334601094091 0.00012125298100388405 7568856.158757667 640.2876002145217 98463 46452 363666 ETH_20210422 274296843910.20834 5071303.404447309 2373.501344298211 0.04388218718163609 43726884251.94589 808439.1122099739 956565 804933 5558 AERGO_20210221 31773792.649986334 565.988177882475 0.12142331923477775 2.1596637240724268e-06 18456513.235003985 328.2718867982007 None None 567735 ALICE_20210825 280541234.46811485 5841.718960854588 15.970500931207052 0.00033254350900546715 221203876.52189952 4605.986601238367 None None 31647 KEY_20190507 6952025.649090489 1215.2526689268968 0.0026562442808781626 4.643430209554442e-07 413967.95042951655 72.36651013800046 24040 2834 639890 NAV_20200725 9360873.589558318 981.6515506101342 0.1353631604658889 1.418846987694207e-05 208698.70081618178 21.875340526151003 48539 13820 865383 PSG_20220115 46661638.10659482 1082.6030612878772 15.006733853057513 0.00034794713804112696 3054310.305934567 70.8174436919814 11173815 None 18624 GAS_20200308 23965439.00861723 2696.194334266207 1.7214631201986026 0.00019341343724062383 4927577.976969685 553.6335821629181 322769 98965 240012 DIA_20210220 80807514.62398742 1446.5607128732554 3.1563926573851315 5.6430821013899776e-05 62195126.41451453 1111.9408855620386 25238 245 245610 COTI_20210428 258526692.0346622 4692.399297272818 0.3855729030729679 6.996985134297669e-06 125663570.78822291 2280.4147535273282 86746 3994 80341 SUN_20210408 0.0 0.0 0.000565611063443242 1e-08 304.19590575190983 0.0053781816766467 48 None None ARK_20190131 55931648.6463654 16158.015402159332 0.4014165996815238 0.00011598867616276887 214735.13252543524 62.04736866144194 62538 21770 151165 WABI_20190716 8141532.527619253 743.6098186624464 0.14293805846173668 1.308631429503906e-05 339364.70581529354 31.0696342789015 36468 8008 1256578 YOYO_20200707 1685318.1919920088 180.5909206027099 0.009636420415036916 1.0323223504366555e-06 824158.6230717222 88.28977257721466 7501 None 1813147 SKY_20200414 6587792.542566376 962.3050863476296 0.38751720838625736 5.6606181549860574e-05 240851.89634833345 35.18219546454975 16143 3825 269101 ONT_20210610 865696195.5863936 23063.138515538183 1.003215243017296 2.6739201228002065e-05 289577767.1528601 7718.262098737227 138917 19369 123162 ALICE_20210603 118572389.2413711 3150.764302066617 6.806620678055858 0.00018098927753683623 33016806.361580513 877.9228654861494 68362 None 47479 DCR_20190530 279677741.56079125 32342.93284906404 28.38126203770343 0.0032821105002294538 22396684.98242795 2590.0326367976513 40488 9457 352776 MFT_20211104 125079723.55152525 1983.6927203362934 0.01330979915027521 2.1104751255295465e-07 21285716.185817633 337.5180499122775 36199 3776 644460 DOCK_20200208 4906526.465057267 500.9225661180229 0.00872417418462151 8.898925690683835e-07 1747517.1248827777 178.2521154259137 43387 15061 372504 SNM_20200411 2850264.0492211836 415.7214489993858 0.006584154059697628 9.599997914477339e-07 60978.536894290955 8.890949721184933 29922 9683 7470249 PPT_20190803 26234584.027727272 2493.008097627077 0.7241741473556063 6.881649091678438e-05 998713.2082837279 94.90526370942216 24112 None 744473 ELF_20190130 31008439.938292433 9084.323065671368 0.10301350284800394 3.017640372445454e-05 4174959.658291339 1222.9976138934042 85433 30263 893429 DCR_20191216 223257320.84236184 31371.608666406206 20.629725066621816 0.0028989504939882127 15751448.444621429 2213.440513729666 40807 9706 101440 DODO_20210511 370521280.18769234 6636.1854477166935 3.170705395364533 5.674599687534739e-05 67785357.10409662 1213.1520222745703 None 921 24595 XLM_20190616 2453622851.4254246 278269.93976920546 0.12642195836913545 1.4337749878897211e-05 308023096.72419703 34933.47338331619 272820 102060 69800 LTC_20210325 11920888477.360552 225520.78029870466 176.86385095035234 0.0033544777398806197 5172222519.735344 98098.65167434259 153519 282342 84390 REQ_20210210 48479489.31605349 1042.614828390771 0.06267444692120094 1.3456807211743566e-06 1299912.5935089511 27.910374996943567 40272 27211 458949 NKN_20200621 20131821.75608284 2151.9166311497147 0.03110049848948058 3.324004187787539e-06 4787910.065057777 511.72919663603636 12764 1009 255975 VIBE_20190130 7084074.028195448 2073.632238258832 0.03504341805112526 1.0259491344370467e-05 2023084.7856951535 592.2887093229917 20596 None 1517604 XMR_20210819 4577712905.967381 101744.60869720909 254.65914054245687 0.005660074176317181 223007710.1916849 4956.586984809761 433770 231718 39268 OST_20210204 15919866.122967442 424.9206100876128 0.023030850107647473 6.139927894618009e-07 12808743.754245922 341.47572800881755 None 734 716707 MKR_20210508 4599104130.876016 80260.51488309437 5094.911469240935 0.08890119050304841 346840833.4427785 6052.031167624277 142650 25977 30227 QSP_20200905 32248875.46877991 3073.87475527751 0.0452159653586348 4.312420395839589e-06 1633698.138350946 155.8120702851339 57046 8228 237034 POE_20190524 14833174.745189425 1885.6347033171699 0.0065211668884249795 8.289889927255729e-07 873909.206266311 111.09378505896343 None 10884 944416 SHIB_20210909 3385719463.5690303 73080.67093599805 6.7879631834469454e-06 1.4655363512097918e-10 917876870.7434971 19817.16582213694 None 215254 10783 ADA_20210821 78606736222.06247 1599709.693044894 2.45572095050977 4.9928532577676154e-05 7300638937.255913 148433.06563026475 556932 570068 8980 AMB_20200711 1963276.7903466364 211.43892358507543 0.01357165849888835 1.4618038404302418e-06 300628.46123819577 32.380702713424796 19034 5452 661727 NXS_20190410 24329604.08698498 4703.014712931705 0.40730135035468906 7.879195884876411e-05 379113.9606377349 73.33914203708825 21283 3511 688180 REQ_20200612 11477004.265908416 1236.9508365255438 0.014904249933295777 1.6026736113996924e-06 171111.1982082987 18.399812349549148 38931 27972 832677 ONE_20201201 40737833.51479617 2069.8883258959945 0.005589339882814653 2.843372570844353e-07 4557065.5536831785 231.82406993573883 79196 1540 163899 WBTC_20210128 3482159503.5040774 115109.38838604212 30391.35424046575 0.999685280045131 364814945.54430807 12000.127671688835 None None 145403 DOGE_20200305 304497587.25450265 34770.09287820149 0.0024638598811355054 2.81344222390679e-07 130345674.18698607 14883.964233073828 138905 149711 115347 CVC_20190401 29178591.105389465 7110.695490486937 0.08509049755740654 2.073592475757838e-05 4163973.561144458 1014.7295518889765 None 8210 424604 RVN_20190920 150511455.57796803 14697.741514463529 0.033809476754393275 3.2989257155885885e-06 26480673.61604907 2583.8251148545523 27786 7009 264985 ZRX_20210823 949299151.6868609 19242.270828095745 1.120498058376701 2.2736848252350055e-05 126181025.42776449 2560.4317705229682 None 19697 54566 KEY_20190923 3955372.3197630867 393.4683237054859 0.0015128915167867925 1.504978143483606e-07 101295.7093858331 10.076586917357275 23731 2811 575319 ETC_20210430 4370868821.356714 81554.76903078039 34.53131538301317 0.0006443097620844473 2267915615.24687 42316.37730215556 348088 35871 130525 GLM_20210428 448549758.5164024 8142.137556772101 0.4483446945877982 8.140487129352226e-06 6797187.235621504 123.41489901702958 157415 20977 153882 DNT_20200331 2766259.9638708546 430.5494046899063 0.0036704877742360785 5.71692143963787e-07 64174.43055093305 9.99540661784489 58709 6082 659034 SNX_20211230 1057827816.7880377 22808.14397812134 5.433601968998118 0.00011676138208128843 110492732.80810125 2374.352090238079 180643 8614 47472 EGLD_20210401 2447974095.0024343 41620.10906554903 140.1582008753969 0.0023851994159039434 91722964.31246987 1560.9329995436976 189586 7423 26202 YFI_20210826 1366646783.2188358 27881.68024519397 38306.15335396702 0.7816918981275711 221912351.18999738 4528.439214889136 136683 7093 25989 SXP_20210110 81000571.79736358 2001.7111002193105 1.0571617348440825 2.615765342180935e-05 118578716.35881227 2934.0268981399636 None None 116678 ZEC_20190916 345425384.1816078 33519.55480700803 46.553301927976875 0.004517468171750225 223327158.8449421 21671.359284681283 119 15336 166171 UNI_20210513 20098489560.89826 389670.31015544623 37.40945146400453 0.0007421951723693104 2133706915.0563972 42332.269242965034 464634 41905 1434 VET_20190221 240607895.5040122 60624.39169218549 0.004332681984627286 1.091201725920249e-06 7227212.436425553 1820.199754378757 104287 54691 740363 LOOM_20210511 105861497.9968911 1896.0220911592164 0.12678341921361552 2.269038151907691e-06 7901553.84347141 141.41381610777742 32515 None 275263 BQX_20191011 7676143.2104936065 896.6644189748041 0.05450455183292606 6.366777033802898e-06 1022060.2510649296 119.38873937702975 59984 5729 393366 ICX_20210602 707927926.1494668 19293.76948112544 1.1324794630069286 3.08729664367877e-05 66594333.60805521 1815.454225459233 None 32253 245600 XMR_20190410 1169296015.6564007 226072.01061641195 68.8325899889771 0.013301819812951463 189968612.3986568 36711.21851797257 316131 157521 118862 KMD_20190623 157152641.85002545 14647.609665973305 1.3662607460449732 0.00012737232385370248 6121374.360632207 570.6770685970738 97318 8414 339259 XTZ_20201018 1590071954.4733539 139935.73050127973 2.185566237282747 0.00019228567731153164 50746585.53675898 4464.67437350008 74556 29957 102266 ANKR_20200531 11112066.417824414 1146.372874841913 0.0021563789993383426 2.2251432056966386e-07 1945587.4495842524 200.76297793010477 None None 5881 RDN_20200321 3484150.9943598146 563.5899706707058 0.06868420738105305 1.1077218803961956e-05 700389.1171219387 112.9570216226102 25133 4326 1385636 BTS_20200905 101003122.87284724 9632.87492380736 0.037267829776325326 3.5543093392174203e-06 52014398.45922203 4960.7198306683395 13245 6932 99740 PPT_20190321 51779176.42941749 12812.045728318104 1.429301901994982 0.00035366111612250225 107420694.85360803 26579.77491218306 23746 None 550893 DASH_20200913 767897662.7849376 73641.73572079383 79.28731865557175 0.007597645248913479 195673123.385808 18750.22388750907 319990 35341 76082 ATOM_20210819 5066893669.082184 112471.52808518929 18.323762044402923 0.00040679296688702417 584429084.7086338 12974.499490202254 171881 33678 61182 UTK_20210809 125573044.13449861 2854.4344930897973 0.27889477975121607 6.3401960213633786e-06 9157964.05924218 208.19065650490327 77724 3999 176037 DASH_20190922 840462637.8997416 84150.22175087282 92.93568822837894 0.009306196715811515 224903920.6779548 22520.9515083485 318804 30785 76311 BTG_20190515 396935933.1868832 49697.337906584806 22.682290505769352 0.0028380671018726302 20732018.6580706 2594.0440227548347 73795 None 432620 ALGO_20210616 3220540056.7724314 79745.65619989333 1.0334153929475793 2.5604537962014996e-05 295873335.0086598 7330.740464944372 110191 33102 188992 BRD_20210202 6605007.204627155 197.8427047337573 0.08587346926583497 2.571180169146229e-06 627036.2944290704 18.774404939668486 473 None None WNXM_20210814 148006686.14277205 3102.817940506808 66.46278118749582 0.0013930409053850535 19941966.592731487 417.9779223973196 32250 None 129643 APPC_20191102 4286990.287866672 464.31670813407123 0.03895734545436431 4.219404566930716e-06 85586.23775653768 9.269701470788927 25189 3276 880644 PERL_20201106 0.0 0.0 0.016299483829633327 1.0461378626027812e-06 847610.2253266238 54.40154784726109 13276 504 374818 SUSD_20210511 188666686.94587222 3379.0696996414895 1.0210782172933786 1.8274198988251886e-05 54049466.39379544 967.321295627306 122991 6370 31416 WPR_20200625 4976406.107801745 534.4409207934741 0.008168008371349338 8.787608513260835e-07 97033.8011962851 10.439448868068078 32908 None 3933939 NBS_20201124 0.0 0.0 0.00644601031254649 3.511048149726474e-07 1679370.0651616359 91.47284714259855 None None 792843 FLM_20201111 0.0 0.0 0.1681562763515074 1.100773112804724e-05 6672493.184177537 436.79018421898894 11696 None 37281 BLZ_20210104 17513441.039691027 524.6816897398037 0.06748346196848538 2.050065931017078e-06 5011918.773751402 152.2560287717742 43216 None 444357 ALGO_20210814 3087939531.063525 64808.26245917745 0.9542803153340442 1.998945908110188e-05 154176606.22862256 3229.5614946132378 119595 36987 221911 WAVES_20210813 1955465844.113639 43984.90991096679 19.55611766906547 0.0004398563320459463 207361812.89242953 4663.983310426692 194981 59229 114002 XRP_20200411 8286901072.887856 1207552.212410714 0.18842873691679146 2.745749420010087e-05 2101666681.991302 306251.06167751964 947247 212037 34231 XEM_20210727 1377841624.937912 36802.90671231537 0.15192975701159334 4.071870963845225e-06 207320190.97305077 5556.3905481504535 371310 21724 102654 EGLD_20210107 648696735.243185 17612.49312828026 38.50843789268276 0.0010433240114238857 143690122.7232409 3893.0521061226573 117002 3189 49960 XRP_20190905 11128996581.3234 1053913.585229539 0.25897657043811234 2.4517836982652662e-05 1295514126.1212256 122648.94889614884 938209 205084 31314 SNT_20200129 39674944.28068347 4245.148329413474 0.011081324441639766 1.1851180896999255e-06 28622761.289282363 3061.127968930017 110382 5611 244920 ARK_20190316 92853828.21896666 23660.555660050413 0.6620964373870081 0.0001687099676576697 1288573.2503539526 328.3436356336744 63119 21764 175186 JUV_20210708 16874504.083656803 496.6395931006046 7.673540109284961 0.0002259070335719068 3884978.6865288056 114.37276642391674 2546250 None 41859 BNT_20200520 20182256.3500161 2069.040791195204 0.28957665163897967 2.966315118129176e-05 11915014.395463932 1220.5295949776719 730 5015 143192 RLC_20211002 267994442.4116278 5565.4102448154445 3.7603563882267816 7.807770174467469e-05 25356483.770562455 526.4862616027824 47568 8055 585480 QSP_20190806 0.0 0.0 0.01333554336603801 1.1298169023332394e-06 158233.91979757056 13.405929717496884 56702 8564 645541 TCT_20210506 42579722.6094053 743.2285268126436 0.07293866607458296 1.2723081272549131e-06 32487508.407770023 566.696968919094 None None 333105 LIT_20210624 55007449.53396337 1631.6864035264514 2.485787589815861 7.37589774225293e-05 5505350.216754245 163.35627549366492 52727 None 250622 OAX_20191203 3294081.4777078056 450.56415753836075 0.06324983079704227 8.655024435924529e-06 123869.02345280035 16.95007577614309 12132 None None OST_20201228 9355786.385165213 352.38791316618625 0.013376239395398571 5.08634947313386e-07 13395655.745406825 509.3732590220463 None 736 712732 GO_20200605 9786319.781870073 1002.6635913946282 0.010198146120558747 1.0431708956591742e-06 765006.4109769649 78.25269548894512 10874 677 1064861 DLT_20190524 10522961.328112638 1335.7846568833513 0.1311594520323119 1.664938016658221e-05 1537687.2687332162 195.1940139864696 15135 2676 2919270 IDEX_20200905 47622549.31173397 4539.2513687186765 0.08756994369371807 8.350315148406648e-06 1581076.359289768 150.76503783012114 39965 1969 16691 OGN_20210708 232720466.763689 6848.9318013192715 0.7364090681474094 2.167324435840192e-05 83513916.26308131 2457.896830426537 116551 5910 54387 VIB_20200404 2000198.8520323455 297.4410000077536 0.010952520602024967 1.6278651756067798e-06 656689.4288081569 97.60327245111623 31354 1106 None ZRX_20200315 96522068.60799453 18664.51721486811 0.1550075275034437 2.9917871962068327e-05 43016920.193502195 8302.659433898254 152921 15972 118984 VET_20191108 348869434.1417016 37842.427007074904 0.005543594984450712 6.013115654297695e-07 93128901.37791252 10101.655267273447 114758 57712 402467 EVX_20200612 4625834.979043412 498.5560965550423 0.21236345446028515 2.2837670548357097e-05 702240.3653718821 75.51927496602386 16636 2848 2249084 FIO_20210124 15902002.74135088 496.8434615761187 0.0741095933887611 2.312443539226042e-06 1210157.3246470406 37.76056997300309 55563 163 523991 XTZ_20200223 2316560511.1796875 239983.3866811393 3.3075467343286546 0.00034264624004491423 254529866.90459853 26368.093599044867 55968 21712 117570 CELR_20201124 22096102.67757616 1206.5170189735468 0.005612926845049946 3.058406440928699e-07 6199477.658647457 337.80098912784314 25222 None 342979 SNM_20191020 4936931.442323638 621.2648896534089 0.011281797657698177 1.419704700943359e-06 99863.30362645513 12.56682719473086 30923 9829 6645524 PIVX_20201018 23102609.25704919 2034.0445466625818 0.3585756236053809 3.155175012601307e-05 112466.74725014676 9.896162686806933 64904 8617 321361 NKN_20210724 124730006.31316316 3730.8966761776132 0.19196129853446506 5.740673587090968e-06 7895157.022393732 236.10758903182776 28665 3289 146372 STEEM_20211225 179501214.8125196 3529.9618047914605 0.45448903060047247 8.937705075656506e-06 21003162.427977823 413.0354283564534 15001 3953 164208 ALGO_20201228 259667535.16863608 9796.41578006668 0.32050453952559727 1.2187267643503902e-05 140470779.8888314 5341.437575676482 32598 1606 423509 NEBL_20211011 24042748.39457308 439.3356114107822 1.3083260912266477 2.391382854023753e-05 985605.3467156644 18.01507852495826 40736 6240 1209671 MITH_20200324 2296910.755076695 356.53833539292054 0.003723569327522185 5.746381505265277e-07 5861878.6812562095 904.6317733660836 93 2083 1254611 OXT_20210809 206533933.8821991 4694.778158244181 0.34918325154626667 7.938084263015735e-06 26108229.398765292 593.525960961169 68640 4363 223178 AST_20210207 35103887.87470692 895.0366094903537 0.21567539767492996 5.48254786486581e-06 19589550.379379503 497.97356937310303 36072 3446 162456 WABI_20190201 5811545.7365879575 1694.1241486924741 0.11076740121249662 3.228224141308664e-05 184929.36868569857 53.89613242644088 34804 8138 2083509 BLZ_20201031 15568985.76502733 1146.341458120072 0.06280111900288968 4.627375050024309e-06 3846884.4677907396 283.45000040145516 42086 None 234227 BTS_20201201 64951436.16353547 3303.658914660943 0.02391259840095036 1.2180853529631968e-06 12347546.668938976 628.972455869385 13097 6889 100608 TNB_20200506 4067084.935059183 453.5189848417273 0.0012404095809410028 1.3807374143141522e-07 302979.8883398659 33.725607576992275 14913 1437 6404689 FTT_20200113 62858479.236767545 7710.716737933422 2.180839725148844 0.000267038436406628 4089332.2924471013 500.7286361897481 5669 None 36573 FUEL_20200403 1810980.6428411698 267.2785505714147 0.0019087896819833603 2.8e-07 997788.021977241 146.36533757 1 1467 None CRV_20210111 140023650.11025336 3642.604550796775 0.7597008075645079 1.9752064134614106e-05 98334190.4976305 2556.668649018954 None None 29021 IRIS_20210616 90121362.09728763 2231.469535047844 0.08775607273850027 2.1742154287109287e-06 10317652.087895015 255.62673507985247 None None 650450 NEO_20190414 719853136.3139675 141891.8692154766 11.07342864695354 0.0021822923802812186 192853765.83541238 38006.59372171458 319896 97701 185739 YOYO_20190302 4947974.1688675815 1294.1799061388222 0.01690964448411591 4.422228364410891e-06 1184322.1250026012 309.7251925494701 6893 None 1397331 TOMO_20200730 64744692.10516289 5830.594889558256 0.9123780647909043 8.226126855767831e-05 9516548.36838994 858.0251666327263 28581 1611 130769 DCR_20190906 254706211.6931364 24099.363393945077 24.629186269960044 0.00233024027282029 11621546.08947028 1099.548902399232 40568 9599 193164 CTK_20210909 114219426.69834234 2464.4359074702106 2.0164973441137097 4.355575022241714e-05 24322359.75511811 525.355825241274 86723 None 86686 QSP_20210422 55727137.828977734 1028.4211936277404 0.07795179393222663 1.4403971348194296e-06 1555169.1872700844 28.736493780385086 63733 8401 217402 ADX_20201130 29881796.26423975 1646.9545274526313 0.278283772965682 1.5323645120217238e-05 1047109.6822971485 57.65890336496071 52963 3742 13684 XEM_20210206 2547286938.605207 67168.81578001617 0.2860722061162188 7.494498185725406e-06 99750611.7502497 2613.2590402142596 226399 18195 60114 WABI_20210310 16667856.171373043 304.41693396046395 0.2820438252418449 5.151167351087753e-06 6545477.766209326 119.54472443300962 41441 7442 721795 DLT_20210401 18105484.811359182 308.5597008677696 0.2222530990679779 3.7822515833215972e-06 1000794.2295137087 17.031283590784 14789 2554 3585795 DOGE_20210107 1331066850.693355 36315.211483729974 0.010463464980351351 2.834907062996677e-07 699719977.7240769 18957.78416322711 181772 180748 103049 KNC_20210204 303282739.04577905 8092.700558934507 1.4873841293985333 3.9653510009292144e-05 71451529.75604619 1904.8905352421243 131672 9505 112960 AUCTION_20211221 171322071.9047449 3632.3379006674386 23.853034555369707 0.0005060817175974781 3266640.6750436146 69.3072036500152 None None 88829 STMX_20211111 273019427.244074 4211.0245184049545 0.02958535312882037 4.5557647636049297e-07 17420371.636982057 268.2513706262122 74761 5586 94692 ATOM_20210304 5225002711.967252 102787.6493644294 21.722386314377967 0.00042871826264591914 715958813.3246592 14130.336056652135 76344 19490 61581 ETC_20210111 1039545085.2208053 26966.12404735569 8.928494628280317 0.0002321390167909958 3017720022.3701205 78460.09748660488 253167 26464 167227 LUN_20190923 2928744.6407027664 291.60026243629375 1.0833736439828003 0.00010786602372617363 141754.86204701374 14.113813270047029 30778 2191 1514329 BAT_20210828 1255894103.7414079 25605.462532345045 0.8442290371331367 1.721000552548488e-05 140119744.7136519 2856.406821708488 210896 78052 26415 CDT_20191017 7818211.062223363 976.4359043439619 0.011588885723196978 1.4474554922327922e-06 507968.2330204389 63.44539296763275 19574 299 183019 FIRO_20210202 45749205.889763 1371.2835423389347 3.9908325680737646 0.0001194814634276769 4677077.391234066 140.0269346651324 68248 185 276546 DUSK_20200321 4512289.389779878 729.6773349186017 0.017274821122528643 2.7909649125995145e-06 524834.1538523441 84.79356735135532 17636 13343 994052 BLZ_20200531 5739374.656451437 592.7776813193999 0.025315578935758396 2.6186889014163445e-06 5061252.570234387 523.5450457827219 36083 None 761161 KNC_20190906 30239540.729735672 2860.765225863006 0.1782236510798223 1.6862770746605548e-05 12804757.303970782 1211.5321708120262 97716 6700 205924 COMP_20210703 30053.327271562575 0.8939334499259374 3.32843716925455e-06 1e-10 0.021090156836842178 6.3363542e-07 2521 None 3613749 FORTH_20210703 154685211.12360975 4568.650123437404 18.11150630323601 0.0005348727204470096 112202365.26700997 3313.583273867834 None None 63782 QTUM_20210314 635541723.5904075 10347.897795616056 6.138992493002885 0.00010007211126773873 398300529.91015124 6492.722542436447 209073 15636 119513 ZIL_20210527 1604255185.956256 40946.31773543924 0.13399060324426165 3.4178245529250746e-06 299162188.15583473 7631.011781638444 283428 32978 31314 HBAR_20200417 127293232.8629773 17928.522488613286 0.032741307090513906 4.615479336634582e-06 6180486.7260062555 871.2513735436962 38556 6406 105863 LSK_20200301 179353741.78304055 20914.065153593456 1.2916500846278414 0.0001510188166759094 6523265.918695598 762.6956492535994 178625 31310 155203 HOT_20191017 136725137.1758002 17072.98697595238 0.0007691799024006117 9.607352358765987e-08 10734710.104147298 1340.806515067191 24395 6691 551921 MANA_20190608 77254225.81932183 9613.449575132552 0.059025407762475016 7.352141203528916e-06 19701711.553454243 2454.023966680326 44690 6258 128669 GO_20210527 36053284.31070925 920.2084853554472 0.03287458013959192 8.391522011311557e-07 2053415.7450454964 52.41521975263438 21595 1068 97348 PERL_20201231 0.0 0.0 0.023201970890269458 8.046807607869092e-07 2013537.4986519406 69.83264025073504 13431 503 587469 YOYO_20190410 7331476.4589461535 1417.5597027759 0.02510779609228652 4.854656516356822e-06 900485.7709990903 174.11122425876056 7327 None 1373234 SCRT_20210422 230696513.66641107 4257.696248125394 3.318870138182837 6.136763414181044e-05 2971597.0160621423 54.946373586778456 77067 None 64525 BNB_20200625 2370741002.541043 254813.36802903362 15.994267023204436 0.0017207543218183499 157180736.40353307 16910.39864975207 1164750 65085 1028 REP_20210401 244767427.89266863 4161.501163506654 40.30557230714388 0.0006859165352025393 59763517.30867165 1017.0500597659386 144680 10919 142603 HIVE_20210930 188663149.0584939 4541.141140542748 0.5283175995995493 1.2704396183588778e-05 7582413.638980355 182.33348078971645 None 184 78839 GVT_20201129 5957111.29115434 336.5186326099258 1.3411767330076552 7.577536834936784e-05 209594.2916566676 11.8419029076 None 5463 310491 RLC_20200105 28092110.388670698 3822.307819434937 0.3964545778158768 5.391681130993647e-05 513395.9948499989 69.82054573338813 27641 3527 255946 PIVX_20211028 44906443.175107874 767.3553087514298 0.6654761291549496 1.1368200518686931e-05 399259.64568575216 6.820475614864163 68036 10269 297116 ELF_20200113 26133960.51808888 3205.6994737516247 0.05669524712051329 6.9421929397933845e-06 18012321.189471792 2205.5642287799196 83750 33480 1063129 POND_20210616 74754550.50905792 1851.0406885754596 0.09602424122567879 2.379064836062749e-06 7528209.531051059 186.5164290311153 None 582 100675 NEBL_20200423 6511910.082432363 915.3336977019314 0.4007293793859967 5.6327728725973903e-05 72625.44620236677 10.20845149551488 39424 5981 1629881 NAS_20210206 17522822.96255532 462.4240714856426 0.3860821895780255 1.0163646349602772e-05 11852582.606867703 312.0202412789899 23505 4848 795646 CHZ_20200223 62872465.28722034 6513.160783225623 0.013135202319187097 1.3607450017821822e-06 3747104.0790987373 388.1823075799253 18998 None 373629 CND_20200105 11104492.782115236 1512.1218521286341 0.00595301171238232 8.095944079914861e-07 61905.52307254963 8.41899322977602 35248 6019 478937 VIB_20191012 4452421.163428735 538.5324153822514 0.024385106260977802 2.9498381471486684e-06 554320.2907573468 67.05548550474087 32148 1119 9150320 ONT_20211125 836155641.4138157 14625.131642214903 0.9556721204590684 1.6707015542870543e-05 89015822.99975525 1556.1704758154247 178484 20920 87014 GTC_20210724 82284624.65871656 2461.279255742516 5.790913272445582 0.00017319469930575596 18454105.07827165 551.9255823077286 53527 1041 25375 OMG_20210117 506397843.2104313 13962.26371514633 3.5898398609225604 9.918041689966474e-05 608221848.867452 16804.00766474749 289675 42551 205184 MITH_20200314 2195781.318241824 399.42877675889383 0.003617508238221778 6.502731860020392e-07 14180340.613443578 2549.0184574757973 94 2083 1367265 OM_20211021 91141821.42149518 1375.0504779218 0.2449356140905997 3.6965470597645605e-06 8531535.467654875 128.7571938663494 None None 102464 MANA_20190723 61002365.45537429 5894.478707572825 0.04589397194751441 4.437561214283352e-06 14260969.169878155 1378.9158135782004 45491 6340 146197 FIRO_20211216 65062780.366390854 1333.6255591259905 5.141397861400365 0.00010520701289602521 2175856.4870705525 44.52395392578741 77540 1649 199693 WBTC_20211202 14518275520.752974 254006.74757492295 57212.75109938861 1.0005267058815845 469207083.23242503 8205.412400940486 None None 199650 KAVA_20210131 110656927.91432141 3234.736717679365 2.356532242229341 6.897611798848838e-05 52765998.358949706 1544.470159739528 55873 None 91263 HOT_20191019 152645306.1980293 19180.004581003177 0.0008603487545192736 1.0810492700867784e-07 14181081.459871402 1781.8875985705504 24412 6698 551921 CTK_20210219 78082514.83182372 1510.7668217186908 2.229250589606038 4.311394936143782e-05 17011234.27387216 328.9991248533853 17189 None 218849 OGN_20200718 25195313.670606684 2751.9789952114024 0.32660308043813296 3.5676302058630484e-05 11103518.813681528 1212.8865734492858 64729 2324 168509 STX_20200310 63306580.82302656 7996.042719013909 0.11577119174622383 1.4622367163289359e-05 525808.23091763 66.41169442922318 35815 None 34581 DUSK_20210202 22220997.079888694 665.953665358804 0.07411373070709718 2.218889631153539e-06 3229498.338859782 96.6878918326714 21654 13364 931184 REP_20190316 159214285.36477837 40572.733402489146 14.474046713121949 0.0036881575174811847 7482656.593857193 1906.668999647856 123176 9797 256149 REP_20200531 146534359.93173856 15157.7770748657 13.328269923597169 0.0013805024865587451 8475581.98046332 877.875528191902 132141 10138 225936 LPT_20210902 508835381.49972284 10462.276553994609 21.086923447800128 0.00043339473311600863 14480198.272951577 297.6082158930319 15635 1324 117255 ELF_20210508 219349135.00276577 3828.0595335489397 0.4752999229889595 8.293515845138138e-06 125677010.22497043 2192.940131603159 87895 33376 198010 FOR_20210314 40634731.562342085 662.358286827834 0.07164277058127543 1.1678534087327975e-06 13608096.591727452 221.82645732530722 21848 None 158334 DLT_20190804 4920660.419352556 455.8534007089686 0.06133727567766739 5.682327843214016e-06 164743.06007279523 15.261911568217267 15056 2666 2977956 FLM_20210428 0.0 0.0 0.7848010597344868 1.4249926681602156e-05 40977786.493726216 744.049011997385 19818 None 105842 GXS_20210806 35564669.07852365 867.6286522848287 0.5076131177488908 1.2395214570195991e-05 9577952.701064112 233.88043910166925 None 27017 491456 BAT_20210430 1780469845.673108 33223.3271494303 1.1905907307439807 2.2214885878426833e-05 306197399.705219 5713.24815074945 191436 69657 19254 NEO_20210727 2296101439.8408685 61294.977525433904 32.38169673245821 0.0008676098450159234 560190061.664504 15009.294188498347 407327 112403 108336 FTT_20200322 68488148.91994992 11120.297714388762 2.3736328318872557 0.0003857836063611395 8974856.374586124 1458.672298532461 8692 None 15714 BCH_20210527 14302714285.915627 365595.66257510165 765.2116701519469 0.019517906036162044 4583900713.602773 116919.4706471603 None 547358 272279 POE_20190616 18645398.68274573 2113.816558012385 0.007498641404719848 8.496795383666487e-07 46011223.054733634 5213.583722009117 None 10854 945513 BCH_20200927 4104953948.598392 382299.5094405298 221.5446853032112 0.020632090029168187 1818748540.537893 169377.0427281478 None 323701 131611 FUN_20191030 19300088.80898639 2051.273911499968 0.00321304134855206 3.414921019320251e-07 199738.90388960222 21.228876546390275 35594 17303 389622 PPT_20210114 30300448.15897435 815.1347011320725 0.8357081636419935 2.244201132171243e-05 2711830.9899904155 72.82319884816481 23527 None 755937 TRB_20210128 53080281.23762875 1752.700651287894 31.34446462625678 0.0010308265229777085 64799897.04819293 2131.0765189317353 13071 None 436665 ZEC_20210703 1320830410.9253495 39077.98105715356 117.80634308364047 0.0034781355583356874 790578747.2152411 23341.18843160714 76312 20067 101519 ENJ_20190512 127329391.87723848 17438.660168281418 0.14605625372521305 2.0052454918483916e-05 27819016.133856047 3819.347358793906 45782 12414 19139 DOT_20210421 35052437008.23122 620446.304007606 35.414477916826065 0.0006280952440625216 2535369660.112585 44966.17539293224 312996 22600 15695 UNFI_20210710 25884393.384583555 763.1769273385268 6.204700963535632 0.00018258448024327704 7123271.257654916 209.61506249121078 None None 196692 PAXG_20210220 134834468.1058508 2413.919392013192 1809.2930138917407 0.032384614809482765 13126445.077122655 234.95081469754905 15227 None 57778 AR_20210616 702347244.0567285 17390.621287387003 15.994292011612675 0.00039628206991158745 14446358.064214027 357.9297334457922 21368 None 86831 CTXC_20201229 723005.536212317 26.66291714335415 0.07162678099208941 2.6381996616188524e-06 2484221.2347583333 91.50029542231731 16678 20069 688812 VIBE_20190905 2665908.092657991 252.63970800005788 0.014259776581717246 1.3501118098179276e-06 112207.05087054275 10.623733384392 20330 None 1398469 EOS_20210725 3526312913.7376733 103217.56532618508 3.6796472659445354 0.00010752819046892453 886367971.0248799 25901.81534409992 None 91718 52079 RCN_20190904 7279389.281050682 684.9801002674718 0.014216683810894203 1.337486753012104e-06 1100827.694475116 103.56440913323763 None 1112 1734382 WRX_20200430 27140889.066770203 3104.512641943238 0.14514186993608938 1.655481880823877e-05 17290416.44119962 1972.1374089302615 None None 29308 YOYO_20190605 3906546.88064114 509.4006098801498 0.02236466784752641 2.9115163837434394e-06 491153.7401470239 63.94023694535173 7485 None 1718266 HARD_20210206 59196653.677116655 1562.0351013477143 1.231611283781413 3.240105792137918e-05 58060497.98304961 1527.447485148885 16542 None None LSK_20210828 614121204.5273464 12520.770710004139 4.24283889699325 8.64922641241499e-05 13195934.010110686 269.0053140071327 197248 32730 274824 PPT_20190906 14955229.254281765 1415.0007636468713 0.41284959914041086 3.906092357213145e-05 1271908.5484260349 120.33903558160678 24003 None 732961 PERL_20190901 25469098.810470045 2653.359291839654 0.0869937308237188 9.064540665756e-06 6023265.582339022 627.6100047070794 11297 353 317628 NEO_20210127 1636967775.1013565 50233.47954623354 23.18294862729381 0.0007116923318950488 492801048.9069358 15128.477972986977 331334 101611 169176 XLM_20200109 947263260.4581119 117711.05269649127 0.04738748194098902 5.905508278573756e-06 150123633.09341955 18708.661480404775 279544 105800 56844 KMD_20190531 156340190.872263 18842.02935662159 1.375144391649503 0.0001657316065209587 17510894.571708255 2110.402883225396 97019 8372 373870 IOST_20190920 86121069.9469223 8408.60141822095 0.007172329820588257 6.99832874010596e-07 17853401.974621404 1742.027754900567 195770 50812 97717 MDT_20210125 12704610.68223944 394.4002791513483 0.021023989282411372 6.514671232739879e-07 736019.2724110114 22.806916024874383 13827 74 1359138 BRD_20190603 29101097.403704666 3328.9596790004225 0.4852623212713049 5.5510576760747e-05 157703.1840404925 18.0401286466245 168 None None TRX_20201015 1915921477.2110016 167847.7784741547 0.026773157451351236 2.3454773022265913e-06 755805045.9544182 66212.72008785592 538948 75555 30399 ENG_20200117 32950120.787368864 3785.6221408662427 0.41687253888753906 4.787535828779597e-05 1888639.628129335 216.8991488729708 61273 3574 332457 DASH_20200314 479642720.7506781 86219.23700678199 51.11152196695558 0.009187664558630867 819170034.603523 147251.71947110197 316791 34165 59708 BQX_20190305 16195181.050102744 4361.438748755296 0.13768848669598185 3.708015978799593e-05 672242.5671535132 181.03809842418937 60550 5820 398770 CMT_20200530 9111195.488603735 966.1781573864135 0.011395251413645726 1.2090790321766485e-06 3366643.5028933478 357.21353749928255 284588 1634 1222646 LOOM_20190131 24830247.075403523 7179.747550069919 0.04144584167179443 1.1984201337183671e-05 1684315.6832931645 487.02541557258803 16752 None 423030 LRC_20190929 33370660.71943441 4069.1634928087037 0.03468067780053162 4.2289048214618725e-06 4869485.562692852 593.7770620444769 34269 2439 641757 AUTO_20210826 51923009.47933839 1059.2838760950854 1484.6915025645535 0.030297255588399394 11314354.001527647 230.8855909862716 74492 None 13897 STORM_20190803 13182627.019490287 1253.4730052043717 0.002115432159105113 2.009898064181787e-07 44743.25213979349 4.2511113142484875 26683 2556 2770937 ONT_20200314 218773514.2331319 39647.48155550305 0.3464561955758626 6.227799890733791e-05 173364255.72539377 31163.4748245493 84506 16506 345761 BLZ_20211120 100158753.2191162 1722.9821055239106 0.32324600199837156 5.541578689069425e-06 40812171.211363286 699.6648275349213 72267 None 249673 FET_20211007 484177470.68702537 8721.78544109563 0.7024800276082792 1.2661962861321097e-05 112744241.01305693 2032.1764839287466 80763 5628 86212 GVT_20210202 11843800.908774879 354.95358730401637 2.6662409135481937 7.98312426607513e-05 812313.8067002681 24.3218909026 21478 5458 282943 NKN_20210421 385458737.4175216 6822.819449671342 0.5938420862113071 1.0533976552642812e-05 46345535.69757776 822.1087688019423 23693 2370 154711 KNC_20190805 32345419.95913048 2955.01587833521 0.19300020316964667 1.762553169642044e-05 7327276.550785657 669.1554877835587 97629 6703 212094 HNT_20210217 288212529.29414344 5860.405686991866 4.155662231315154 8.444823053412746e-05 11397600.574776703 231.61343422514864 21655 4008 50086 GRS_20190920 17356231.183919203 1693.5168146573444 0.23650393924036306 2.3061667983333084e-05 2162042.505425832 210.8223084407497 38385 106997 None TCT_20210821 18857200.351612646 383.4783433363273 0.03249509577065423 6.606745963799447e-07 2145287.9314394384 43.61695833198592 None None 1235757 SUSHI_20201014 73486281.9000652 6432.188653079979 0.736662607980723 6.44715185586336e-05 32494162.749290816 2843.8365053992047 11642 None 57321 WING_20210201 14716575.998524973 445.2052274857514 16.306681762194692 0.0004918766769684938 7190724.373970282 216.90186033217967 None None 427230 PERL_20201129 0.0 0.0 0.02042524599076615 1.153749485967337e-06 1151893.4098384 65.066361016706 13306 504 372456 POA_20210206 10132439.39269864 267.15474975547187 0.035343484258275076 9.298114556727045e-07 1156786.758247797 30.43258473695787 18263 None 427710 MFT_20191118 10782804.830121156 1268.6539681342108 0.0011883947846958788 1.3965355604089228e-07 2475992.452238292 290.96488400862114 18602 2364 1093623 MBL_20210301 10536941.001644088 232.23149570347758 0.002990490424933562 6.624149634087719e-08 29337843.901018295 649.8541721502769 None None 1225996 CHZ_20201124 63514690.1264736 3468.102755975591 0.011902235353788789 6.482974644826518e-07 11572506.484061167 630.3376120803799 43247 None 325304 VIDT_20210819 24123682.529199913 535.1875673867813 0.5205479564933786 1.155631944552569e-05 1628896.981489492 36.16199742431332 29622 1625 1187246 WAN_20211028 164098867.6463071 2803.708858500127 0.8495857805788252 1.4516197360249945e-05 4049906.8013037983 69.19754045117283 128708 17254 276105 POWR_20200404 24082544.203131963 3580.9607395440116 0.05618532467471115 8.349899311966312e-06 962290.015762333 143.0093140343193 82331 12800 242937 CND_20200127 10663501.376648424 1242.37762283847 0.005671100284725119 6.599116939559167e-07 45402.043575196156 5.28316164069038 35128 6004 525031 GVT_20200308 4883665.090326778 549.429123424702 1.102052148822348 0.00012389701412800796 1038973.7863202759 116.80549783411736 20748 5608 171820 POLY_20200511 14089179.369319525 1609.1687823785282 0.02221906189912229 2.53123839241394e-06 1965088.3206805023 223.8666521734301 34684 4987 371818 BNX_20211204 0.0 0.0 99.69203541457605 0.0018555625590425567 26530341.54713102 493.80783779513166 None None 25932 CHZ_20211125 2601582850.6692004 45476.32128726743 0.48711170283372973 8.51609565526152e-06 626633125.2823508 10955.326272424869 419841 None 46114 FET_20210427 312793458.8509605 5806.491152771512 0.4551606598464877 8.443581455018965e-06 63222715.51175893 1172.8301571824584 51554 2285 124282 KMD_20190816 94106860.52229449 9144.671578853025 0.8164156181055816 7.926727242633205e-05 2476699.251164127 240.46722025684045 98446 8430 208596 JUV_20210324 0.0 0.0 14.066695581716655 0.0002579509450265431 5710952.433663368 104.72577363370537 2373770 None 48576 CVC_20190909 16203659.96913407 1560.0426448035962 0.04731545284591823 4.552558800747261e-06 6039670.632997897 581.1199944214706 None 8148 131188 ZEC_20210718 1056216624.1650628 33417.96397720137 93.16538610110047 0.002953288033636635 517266420.56345356 16397.04179827424 76820 20114 112343 CMT_20190205 16837065.277032133 4858.834334433812 0.022497124175696655 6.493103061924036e-06 417104.5295947349 120.38439567221225 293005 1629 726422 KAVA_20210420 290731496.93342817 5195.084385222677 4.95561688464213 8.855430872810233e-05 61728299.169000596 1103.0527559168024 90378 None 75402 ZEC_20210427 2499915584.1246257 46404.01570297995 227.26582401214537 0.0042159564001769305 1690641166.8606718 31362.69819191086 74871 18943 91916 ICX_20200107 63298119.49276674 8151.430037196171 0.122797560659793 1.5837654435054614e-05 8144500.054987641 1050.4262195772758 111849 26964 96597 ALICE_20210508 236099686.998447 4120.150235626569 13.53171051502015 0.00023608412092514973 84094231.13744327 1467.1694765360628 61333 None 62436 FOR_20210202 14363563.82689298 430.46979142046774 0.02515511755603574 7.531186054595824e-07 5501341.601380074 164.70456581086552 None None 253691 DOGE_20210420 53086953475.86828 948293.313779254 0.40941034319999847 7.32001243785944e-06 30847872453.906982 551541.5372244108 885392 1467831 11474 RSR_20210128 302424835.7294382 9991.967000967274 0.03247982153494624 1.0681650460144902e-06 162268502.7716067 5336.530021978233 55251 None 125159 DNT_20190730 6453138.724783142 678.4246554857692 0.009616347935282757 1.0104316018032113e-06 620509.5142247403 65.19963988530552 60525 6322 724607 AKRO_20210731 58288828.2522082 1397.0941189656335 0.02154849104254962 5.158667239027709e-07 11034906.390268525 264.17353293467704 43830 None 238086 GTO_20210806 23929739.16202163 583.7851968432877 0.036093639442217294 8.809464539598085e-07 11854607.860917171 289.3383687416118 13537 None 552838 POND_20211120 67549897.36747278 1162.044146763041 0.08437155917901519 1.4501941911060537e-06 16194647.028609231 278.3566319791715 26036 757 1022211 POWR_20190316 44981721.0822825 11462.020853274971 0.10811670295471154 2.7549408860633125e-05 1571298.2079452476 400.385283583764 84859 13279 634986 FARM_20211225 59832881.36507868 1176.7456863528382 93.48981902464999 0.0018388983898999858 3419270.072857583 67.25534712986419 None None 114343 AION_20190325 41137858.275001675 10309.178028324288 0.14129754415088477 3.540960626504098e-05 1871611.7669816362 469.03175952631995 67552 72462 245314 DGD_20191024 23373002.929296393 3132.037065762916 11.73012435936667 0.0015711760252570882 1048549.3904992397 140.44656417771233 17340 3352 576212 NEO_20190312 565463743.8136264 146246.602123279 8.678652972550978 0.002247371322100004 271965578.58271825 70426.55626838359 317282 97835 156064 LUN_20200625 2985560.5499398937 320.8957614388869 1.1019007401630012 0.00011850594914842906 2711020.6839286056 291.5617238467939 28494 2121 2710990 NEBL_20210221 46899170.579648085 834.2512564158975 2.6779518011898533 4.763590970057224e-05 8067110.134902008 143.49927050965593 39368 5906 648058 QTUM_20200319 106196941.15222226 19723.17091180113 1.1060217521445814 0.00020528419138993233 396284539.16986066 73552.75881878177 179625 15162 109238 CTK_20210527 65535157.02675796 1672.6910942538198 1.4580709790980406 3.7194937064251244e-05 4397551.304721667 112.18016568515776 52100 None 200657 WNXM_20210324 72524035.4857155 1330.363450099335 43.32722727660236 0.0007948207584773622 26458764.67483309 485.37551856177777 24106 None 103505 CMT_20200626 11240947.76651512 1214.056489660292 0.01402282174001228 1.5154645312022479e-06 4538847.604796842 490.5191469399559 283850 1635 1061023 TOMO_20191203 17300528.462540273 2367.2079250854817 0.26456974746930706 3.621245248524697e-05 4955854.8450944 678.3226722570829 18783 1378 393362 ATOM_20200301 652119306.702302 76108.43751001703 3.4603270993625546 0.0004039267686610309 108559242.75639646 12672.20782190143 31326 8166 85359 WNXM_20210826 159629717.2532675 3256.6222580930907 71.72456966873213 0.0014636355729138327 23496621.229600172 479.4799164883312 32755 None 132696 TNT_20200223 23269888.320339218 2410.6901345939805 0.0543655678886559 5.6320163919726135e-06 1490972.2513239789 154.4576923509916 17727 2567 1056961 ADA_20190726 1818348081.8990602 183599.9900950011 0.05835217463636584 5.900925258849509e-06 228185321.40710336 23075.481508288307 154205 74733 95231 KMD_20200913 79673656.75255145 7637.589455946997 0.6556147658280455 6.278710032074049e-05 3743149.4162482596 358.4749919667644 103581 8391 264851 IOTX_20200317 7196963.514027233 1425.9190754608583 0.0016849310576214133 3.345932883029973e-07 1721210.8570976125 341.7977239686626 22577 1809 487690 YOYO_20201111 1896647.6495927966 123.99971088013845 0.010797069835578783 7.068621124918584e-07 2345231.8037641235 153.53753678883515 7763 None 3755100 SUPER_20210909 230581752.55250496 4977.101429535427 0.7790167798401744 1.6864987712685587e-05 34424596.36890851 745.2604485553118 137528 None None SRM_20210508 507439067.5390145 8854.98269309335 10.141701078451172 0.00017696270191220524 250966328.6613317 4379.115423078341 75012 None 40155 TRU_20210703 53702140.248911776 1588.8271514776523 0.154084525693357 4.5508894967830785e-06 1706315.712553088 50.39606812891376 None None 106582 FIRO_20211120 89970680.47781761 1547.9139165497688 7.15213759151294 0.00012296383366411088 2701914.400450852 46.45293084209583 76884 1559 157714 EPS_20210603 171327032.54750267 4549.188330083674 0.9738704869428354 2.5879168995771476e-05 31634680.51849735 840.6448847581595 16768 None 23258 XEM_20190405 599529059.4169817 122333.59622024243 0.06654115832525177 1.3594314998322003e-05 28585251.96941435 5839.948226917986 215945 18458 129462 WTC_20200423 8424902.085941039 1184.5082003394855 0.2888986210502047 4.060846045467791e-05 27185754.71810104 3821.31157769954 54621 19655 973859 REQ_20210310 70968424.68005605 1296.2853465660191 0.09195173026316772 1.6795593402122189e-06 901436.058835643 16.465327491808505 41376 27325 337222 LRC_20190805 42426577.00842854 3876.011159593185 0.04400074940441382 4.018353814038149e-06 5318930.156314121 485.74952857696934 34684 2451 581854 CHZ_20200129 31823048.058489628 3409.5718157599913 0.007271370391135899 7.776536670167566e-07 1828895.1432391284 195.59545700805205 16651 None 300024 OXT_20210723 177393437.1715392 5480.284797250797 0.29914393535149364 9.240069272068228e-06 41005311.41585563 1266.5873288055757 67877 4342 154434 DNT_20190205 6073354.650670736 1753.1297866372079 0.010452197712255293 3.0171231879489105e-06 732397.1818001526 211.41319565805227 60130 6530 604362 SUPER_20210710 90687634.65254366 2666.4209718360034 0.4189171105891872 1.2326541972238828e-05 6248344.692190069 183.85614041157427 126682 None None NKN_20200127 11779148.296246188 1372.5901874877147 0.018146997993734894 2.1126889142856e-06 2124202.5654853582 247.30146624512315 12133 1005 285563 MIR_20210523 313066149.33722776 8329.758455012783 4.643023843285207 0.0001236332198238808 71609968.28870843 1906.8114336356177 43253 None 16091 CVC_20190528 30205544.426312827 3425.003040486942 0.08818947004561131 1.0001386858777029e-05 4720635.497734298 535.3575864295113 88938 8193 437048 NAS_20210711 14718918.525154343 436.49711616622704 0.3245662566610783 9.633324040189754e-06 4006829.6118918117 118.92514157899006 25268 4927 609906 AKRO_20210104 23344897.823317144 697.8327082256963 0.009921807112835938 2.9856528145932155e-07 5813139.132649248 174.92796438828714 25199 None 214700 LUNA_20210314 5922782829.367306 96529.00210943296 14.529892337931118 0.0002368527090409368 535203813.92916167 8724.391775927854 37427 None 57053 NANO_20210128 385576762.723451 12745.971368716351 2.89759639774416 9.562346919612546e-05 39087593.82349043 1289.9282063026697 103185 57715 248633 RENBTC_20220112 764903269.7982819 17842.901763012625 42792.007853161274 1.000144381698578 1005629.0202209118 23.50378645700049 111449 6503 71958 GVT_20200323 2519468.1107597575 431.839887749696 0.5687706273789915 9.751120590505884e-05 174237.20107587887 29.87158403155388 20636 5598 160290 REP_20191019 91164416.17642774 11455.03204923936 8.287196604531346 0.0010413065391603985 5620549.717483443 706.2358302554859 125623 10049 212520 POA_20190207 5349377.683080044 1570.3262007552773 0.02429820925436696 7.1316389899631556e-06 256090.50292010445 75.16377015545098 16417 None 763440 STORJ_20210916 211897701.28150892 4396.906687171323 1.4834530538075592 3.077825386576912e-05 36510482.85444663 757.5089128514779 105510 13878 75806 BAT_20200605 355928726.52567554 36408.037701295005 0.2432866562068382 2.488585239483783e-05 114150227.71662278 11676.455100677053 118086 39607 20169 JST_20210314 92939877.00778724 1514.7260742453216 0.06468213790586583 1.0542758116737159e-06 486460508.2730972 7928.982618867919 None None 109901 GRS_20210610 67845858.60941663 1811.4617421085322 0.8728811826288713 2.3305635747665078e-05 4657339.273106759 124.34940151352882 41174 106845 6465963 MTH_20200704 2746595.4725492415 302.9773773288543 0.007901873491927896 8.717739060425591e-07 191293.914288952 21.104494147142173 18991 1908 2218636 ADX_20210610 110120653.69971654 2933.764612787831 0.8961924854093115 2.3928039738284114e-05 3924584.008926195 104.78508094043059 None 3842 11246 SNX_20210104 1315344592.8771667 39318.67624542353 9.46556405416894 0.00028755238423265454 163299534.7059528 4960.842299524494 51637 2895 45504 POA_20210731 7924978.532523599 191.4528263017354 0.027330409234719844 6.600002850788764e-07 837171.1709673213 20.2167924656 19950 None 219479 EVX_20190905 9131513.36522437 864.569228364095 0.4253243214972422 4.026500584384094e-05 1628388.1717442435 154.15779426982186 18314 2913 505983 CMT_20190512 29182230.773321968 3987.2538480662615 0.03607391613612088 4.95304578673521e-06 5754241.197969002 790.0728053453671 292068 1639 877566 HC_20190302 50527771.200699 13215.91907277286 1.1517325762318436 0.00030141978767112443 4050839.641488201 1060.1447330958881 12234 786 443467 OMG_20201031 402154626.66125876 29610.568605705914 2.8663445855244016 0.0002112008771566249 192998356.7227562 14220.698528532272 None 42782 100476 RDN_20200323 3300309.9876051703 565.6771318120954 0.06502849375154456 1.1152413187864556e-05 291650.845539449 50.01823890421488 25106 4324 1385636 BTS_20190411 192917121.23509544 36348.85802364248 0.07102329635555626 1.3382537474954225e-05 18080733.80126777 3406.8553571325206 13786 7204 195741 ZEN_20210620 897167094.3233241 25165.12052215837 79.82389902341481 0.002244287425396403 43261954.95519987 1216.3307316714825 113159 7380 1188798 DNT_20201229 36636791.94299683 1351.1865316098756 0.04863437379623367 1.791799294011833e-06 4089546.0149420574 150.6680376538445 None 6154 318484 AE_20200322 35624000.06767306 5781.576166396801 0.1014735478500636 1.6477262795060647e-05 10603737.35689513 1721.8336279867576 25381 6340 484575 AVA_20210826 167971908.72654417 3426.8833079589417 3.2149686902158146 6.560606542481535e-05 9751755.131275643 198.99860521077167 None 10620 61556 QKC_20200605 17085700.125117995 1750.5263664813988 0.005291427904715574 5.413149433588e-07 8875742.123559464 907.9915537732652 49395 9200 677381 ETH_20201226 71422858091.1277 2892186.3644330096 626.4567387784558 0.025394958164180515 13125875205.90394 532089.4981066941 537225 507252 7746 XVG_20190811 77153842.2368128 6809.071144285899 0.004839575103066444 4.273482169166577e-07 995456.05167264 87.90159459074283 303573 52865 396565 TNT_20190703 40848542.65723423 3784.7952953939634 0.09519040979608641 8.801574043127288e-06 26016456.03118548 2405.554977531559 17600 2535 678101 MFT_20190830 9308200.1654573 980.9307508922379 0.0010342444628285887 1.0899230565469311e-07 404602.03170596313 42.63837989289275 18787 2204 880747 ZEN_20200901 84066772.51593865 7192.49262886921 8.530489534004625 0.0007307994935386938 3093839.3775893045 265.04648311442446 None 6090 78884 OAX_20210902 11574583.743558709 238.26229900300166 0.20139214912700007 4.140868415556803e-06 601384.0788077926 12.365190740298084 None None 2559036 ADX_20190726 9837673.730809454 993.1204455847305 0.1065640723796869 1.077640431243275e-05 378064.3949688669 38.23216104020053 54055 3872 831404 AGIX_20211230 189516966.9527503 4086.242590243353 0.19518507594744486 4.195877474565853e-06 935662.5740658881 20.11386116105747 None None 124836 ONG_20201224 0.0 0.0 0.16632002936618623 7.13277263294965e-06 5715484.270539915 245.11329119119014 94104 16677 295641 ASR_20210511 10163753.58286956 182.0667198446219 8.077426798710782 0.00014456140786545446 1140040.7142679852 20.403266384886642 None None 174879 TNT_20191203 30060920.178127263 4113.195075809626 0.06986181811734753 9.562195955155096e-06 703525.3578931334 96.29361950321623 17725 2567 490686 LTC_20200718 2726277217.67358 297831.0042465636 41.90869696008941 0.0045782979153306275 677243499.7097691 73985.18035159259 132040 214163 126072 BCD_20211204 318892905.30056506 5939.732063230052 1.6961762096892155 3.156269065121828e-05 3530751.452247204 65.70073039406498 35889 None 1522827 FUN_20190618 36974703.99788969 3966.562242914389 0.0061722833461499114 6.624514087599566e-07 3521907.576397753 377.99506352254076 36281 17637 455027 KMD_20190813 106703685.11986169 9374.887492331467 0.9225552178046256 8.106099151875047e-05 3505410.1842748784 308.0054393854437 98442 8439 220245 MDA_20190227 0.0 0.0 0.9489836238670145 0.00024908189975873985 13203747.958621586 3465.6178913472218 None 348 1845971 LUNA_20210114 398476802.4299964 10701.501753408755 0.8212283210111901 2.197423795711581e-05 35339334.944594 945.6017717004006 18107 None 167354 OCEAN_20211125 431308071.8206499 7543.975088251627 0.9938127863673886 1.7374669306632432e-05 51064617.36130908 892.7545027524718 133734 3942 111793 GTC_20210819 109701724.15284997 2435.406346221283 7.710484696451672 0.0001712038398555305 27739861.358420115 615.9367366110099 None 1105 24544 WTC_20210620 20732646.750935502 581.5703678986829 0.7156715535476903 2.0101092361071302e-05 19693511.695913132 553.1323629548295 65331 19816 517910 ONE_20210902 1287307493.6286275 26468.613422039896 0.12234834017808581 2.514597559474705e-06 83313908.05830127 1712.3317698365365 204934 28381 32288 STORM_20200315 6961569.571364872 1346.816118990259 0.0009146792713804929 1.7654147361915423e-07 1807313.8522528205 348.8281201425595 26089 2524 826076 NAV_20200117 6848309.204203491 785.9391378002072 0.1020097138358694 1.1707039525931254e-05 1396326.4769753392 160.24796700592876 49883 14056 595997 LTC_20190524 5512359544.716504 699738.8922627032 88.83902013693573 0.011296704244533147 3691120785.989397 469360.1953949825 444756 202935 194516 CELR_20200801 26316946.46191569 2322.020683008804 0.0066255585214929375 5.845049410260912e-07 5248541.154682018 463.024849624173 22005 None 493813 VIB_20190725 5269822.548571982 537.2918281286518 0.02885887895847818 2.943017044290799e-06 277798.1621204159 28.329746528593336 32570 1122 2209395 ADA_20200404 993528047.3070283 147743.29843579684 0.03190034091740878 4.740822202592918e-06 110357362.06716399 16400.5968983887 155211 77708 49277 FUEL_20190905 2903148.6669651503 275.12224953395156 0.003155868887539929 2.990717483585959e-07 179322.61661002057 16.99383921858778 1 1503 None AGIX_20210723 191481261.0570525 5830.0 0.18384787955079804 5.6787617658909955e-06 694076.7567131455 21.438901325632003 55742 None 182415 BTCST_20210325 237093315.6861842 4486.821046202762 32.17279139072564 0.0006106575633103651 24704371.904616423 468.9027870530028 None None None NEO_20190723 851979279.4001392 82345.45084471164 12.07271586815436 0.001167703251717936 335679632.59248066 32467.7730176421 324337 98154 191074 STEEM_20190321 148037628.47638524 36629.87703438355 0.4851792166083295 0.00012005093047567045 5285120.354081423 1307.7304106692168 4730 3696 256324 GAS_20190421 44294597.44934805 8341.774420820413 3.1808178095807107 0.0005988788954104952 1517060.9782054531 285.62962649464305 320302 97652 201868 QLC_20191022 4355505.327644361 530.3393932624896 0.018147938865184836 2.2097474719270396e-06 256071.9946406727 31.18009416893513 24669 5722 940522 BAL_20210105 166334864.6438099 5316.540931388364 15.437848445824828 0.0004934380614103705 56188572.76863277 1795.9484780321238 34891 None 83798 ADX_20210110 45080383.63793905 1114.0403373441948 0.39787017729822877 9.876796467401231e-06 3377111.101705152 83.8339762629186 None 3744 12195 LINK_20200430 1413110233.8463435 161858.7221564669 3.8876840773203454 0.00044338737767166245 572183655.4839306 65257.10564590743 50763 14804 77374 KMD_20220115 84384799.03566435 1957.8232884468962 0.6510679313838961 1.5095201825015366e-05 1002569.6061655483 23.244871724102023 118049 10018 159072 SOL_20200719 20602905.143447436 2247.4647546913566 0.9673182706042267 0.00010551976551925353 2951092.759333697 321.91950204346523 None 1989 132942 STORM_20200407 9016837.3029684 1239.741392193665 0.0012034891348916491 1.6516346380626154e-07 798026.0606877243 109.51885195267417 None 2515 908527 YOYO_20210206 2974555.3083506804 78.40314206654024 0.016757512188998406 4.408542940487706e-07 603803.3992984255 15.884775636130119 9406 None 1427347 XZC_20190930 39401256.72586818 4888.098496569681 4.641489330151226 0.0005764472208284787 17307882.436008282 2149.5429632578616 60763 4052 176312 ZEN_20190729 52473795.16965856 5496.502998188776 7.492469540795392 0.0007856847922398766 3238333.8481767904 339.5822489307098 26388 1739 256228 JUV_20210202 0.0 0.0 8.134868215109018 0.00024357012721306072 1314268.3219166377 39.35116020278902 2257877 None 93564 DOCK_20210610 46044173.46526103 1226.6695358912502 0.0816119430070483 2.1790115931393194e-06 53583583.26393086 1430.6637586605136 48708 15044 249470 COTI_20200621 14056357.910187786 1502.270295284721 0.02725968621580944 2.913830429869247e-06 4062026.1396566406 434.1963175567085 24564 993 313958 STORJ_20201031 45790679.62546649 3371.127927178263 0.3181900809470007 2.3445200740318292e-05 15580470.806726702 1148.0158797068864 82297 8439 86684 BNT_20201111 49858416.99462552 3261.423242493681 0.7395446483320557 4.841156585204406e-05 17657537.846499935 1155.8856631154654 86147 5236 80546 IOST_20200418 39547416.85311786 5586.325888072711 0.003269199849381674 4.6437967601413367e-07 48332876.111558385 6865.5348047204525 193150 52228 215999 GTO_20200711 7325083.626844719 788.9836373531105 0.011048981426907299 1.1893912537222456e-06 15569996.80937501 1676.0656308513207 16595 None 1271054 POE_20200806 6191947.260209483 528.5715882068298 0.0024606994982456585 2.099778640976067e-07 94361.97286221829 8.052151645404548 None 10210 647975 OST_20210418 29588113.91681083 490.82304541978147 0.042120570992276285 7.007227266421645e-07 2370408.020567708 39.43438401467159 None 766 441171 NKN_20200309 11449071.374950197 1421.9271361057672 0.017376568822147144 2.160036387892283e-06 1912092.840700911 237.6873222335007 12233 1000 370779 UTK_20210429 224881700.2703146 4108.3364431028995 0.5017526455847863 9.163295495924108e-06 19898906.43964578 363.40527819182097 69551 3760 75588 GO_20200321 5464280.124300986 883.8920815936589 0.0064381919979991644 1.0383356550668594e-06 1338704.2372545355 215.9029027966943 10677 678 690987 ANT_20211207 161396460.31378663 3197.5939549283416 4.2499178190521025 8.421053931054054e-05 37708598.64079703 747.1818428937257 93249 3387 60042 CTSI_20210127 11963428.839414353 367.33727032379136 0.057330753239970125 1.7595728408254427e-06 2793712.0847197566 85.7435081793332 19910 185 602670 OST_20210603 12743074.49074586 338.628372759256 0.01842765550408263 4.89687712462741e-07 277032.01614041394 7.361716428478125 None 780 499263 AVA_20210711 109008022.67373836 3232.689103805644 2.1023186573825794 6.234534348713827e-05 2109112.061273505 62.546805381385035 None 10483 46420 RDN_20200107 5829009.023912176 750.6282394846897 0.11480771675753682 1.4807174790067706e-05 1164587.3781404507 150.20113066833804 25273 4339 2088256 OAX_20210930 8652448.317997126 208.3507559992103 0.15046979121846057 3.6199703110815863e-06 894141.4306513057 21.511064823413108 14351 None 2915944 IOST_20190410 204620600.46866423 39561.40270906534 0.01512807814936697 2.923483914979124e-06 40581211.73033892 7842.2730615635 196678 48997 95930 QSP_20200625 15296627.617738457 1642.3792310648994 0.022120268221515235 2.378965078670082e-06 984617.7906204065 105.89253784205631 54611 8237 457360 RUNE_20210624 1518856551.4498703 45053.853703536035 5.591259088936473 0.0001659677324158583 188196828.30873242 5586.326862237774 2383 5656 58808 DASH_20190325 797097463.0942181 199612.1619476021 91.46177151483583 0.022920605854161957 1061835003.522305 266099.1712142775 320500 23250 93159 BEL_20210324 88627687.46162803 1625.7649657264355 3.1236373308993666 5.721561367897534e-05 26703291.4917792 489.123751607491 14862 None 330224 AE_20201124 44580595.295315236 2434.2413558004923 0.12037517255818982 6.559077166746779e-06 13973941.283144347 761.4207917785151 25531 6343 534975 ADA_20210620 44642873230.46928 1252295.9195434805 1.390227052457961 3.90473566341843e-05 2406414533.2015376 67589.0505234187 510791 524574 6543 ZRX_20190922 146735135.2832635 14693.23633197389 0.24552635483042445 2.458615584689757e-05 28642572.532648865 2868.167666278204 151146 15886 146664 ICX_20210930 957945620.8728456 23061.734175504364 1.4309588114035316 3.4423712942017657e-05 49245382.86149649 1184.6664696667224 147134 33533 258203 PIVX_20190614 45197033.14416795 5493.5456245521655 0.7504486677320922 9.121448263916863e-05 2228866.6455230177 270.9111584640197 62990 8610 306282 SUN_20210610 0.0 0.0 0.00022135675754260265 6.6e-09 0.04462481539343424 1.330538922174e-06 57 None None IOST_20200229 63510269.60289874 7266.498933181454 0.005285158313709194 6.049883751975114e-07 50053051.02789791 5729.537739011287 191676 52274 97956 MTH_20190614 8778687.133083917 1067.0195571341048 0.025702944704886314 3.1241054909785463e-06 685336.7187453813 83.30034674177367 19487 2005 1790455 REN_20201201 297747099.3880235 15144.466655533586 0.3358726941131161 1.7109040276577183e-05 37345210.755424865 1902.3300379894629 28661 968 109905 TNB_20200217 7741081.860115404 776.5442954460455 0.0024720023511230556 2.4848149810807573e-07 1615762.6076133372 162.4137263236717 15253 1450 1323149 WABI_20190316 11593484.093977878 2954.310901239798 0.22091866917157799 5.629562496747639e-05 1469320.711860503 374.4198173111487 34840 8006 1579546 ADX_20210428 163881762.659448 2974.5426357597153 1.3911489892896638 2.5259613064358556e-05 4604952.293505573 83.61384295234632 58146 3835 11197 XLM_20190201 1565273203.0558813 456177.75551782147 0.08166299646786929 2.3799578479235265e-05 126871648.69465196 36975.030191138896 261556 98969 61988 COTI_20200523 10855442.097551228 1185.8710506449536 0.021750899774904058 2.3760599001506357e-06 1288455.619471554 140.7503947989485 23669 962 239243 POWR_20200422 24941761.711473882 3642.0537083873232 0.057828776689235126 8.447757731909736e-06 7363842.199258312 1075.7266267216 82101 12773 208594 DODO_20211111 401208030.5259718 6176.583786498763 1.6006521355960313 2.46419843979346e-05 90666406.37481374 1395.8061977489033 None 1195 22711 ONE_20190810 26118637.125840258 2201.8718380522837 0.010053087307675382 8.474816716378052e-07 9142407.019253258 770.7107425153321 69493 None 151929 VITE_20210314 61430222.50696905 1000.207603165557 0.10120784233055774 1.6495269721455544e-06 33471285.42525199 545.5287537995997 None None 412913 OGN_20211104 383208386.59872746 6092.673731628795 1.056039085395542 1.6748174577047096e-05 58166305.52698248 922.4842649672202 125947 7105 105193 RDN_20200229 6359232.560397212 727.5887333639977 0.12480505172108512 1.4323857723518714e-05 1043028.3549750114 119.70821334737506 25194 4330 1589511 STEEM_20200421 52663108.90896292 7690.569864739876 0.15037982963476693 2.1963918567022514e-05 6211785.224567299 907.2702446837113 11212 3846 233642 PNT_20210114 10824752.095833939 290.5285991259151 0.3809012830682521 1.0223117831739822e-05 2066825.625551314 55.47212059110959 7450 116 1089026 CND_20190627 24605246.71852241 1893.0105455882433 0.01414084848495091 1.0856103885819758e-06 1416699.5119057104 108.7617697948337 36252 6151 632693 ETC_20211207 5179082752.901143 102541.5238968126 39.394142383904004 0.000779971200574218 1275649497.064188 25256.797318770557 585563 62426 219674 KSM_20210120 919516072.6822867 25393.010231483284 102.21139605057965 0.002826699421826066 139461314.05768666 3856.8616714606615 30897 None 134935 CDT_20201226 4233197.019902576 171.41843698413345 0.006086728193971701 2.468445574778249e-07 143274.4468054426 5.810431531113326 19234 294 518936 MDA_20190522 17081242.55851034 2150.7305274786386 0.9610674963170514 0.00012100976824234094 1354188.5043476322 170.50835419522852 None 361 1619229 SYS_20200725 60320344.405053265 6325.644615541894 0.10229932919653886 1.0725847239387706e-05 8869452.580755964 929.9415179488799 57953 4474 1072348 XVG_20200414 42821113.73163831 6253.615778130882 0.0026389216772087594 3.853893745330411e-07 660665.7714993597 96.48394291218116 294036 52038 317602 PNT_20200903 24950664.103226893 2187.0608319622056 0.8675238010120835 7.600881991214162e-05 8932025.616790706 782.586859017859 5104 87 271040 COS_20201031 17372304.9153346 1279.1195038719472 0.005726593909766808 4.2282966378203474e-07 365507.3485482167 26.987656490347984 13197 None 296050 BNB_20200414 2272857627.6622605 331683.79547742364 15.045572860921823 0.002195678275558379 415375272.6500968 60617.86219724418 1135520 61536 1688 WAXP_20211111 917134422.9263183 14145.790212076321 0.5006408635026173 7.707592889234934e-06 113637586.87429406 1749.502128959849 188116 5402 4134 GRS_20210218 46768231.61649342 896.9654130116761 0.6077020379336732 1.1655084885676594e-05 11746147.562807223 225.27873592410668 37309 106772 3844840 VIBE_20200306 2673840.564899417 295.33188906087264 0.01429006778841811 1.5782033194933449e-06 144896.7318208298 16.002478541684 19452 None 1426283 BAT_20200317 161496430.05799735 31995.572021971264 0.11225200717618594 2.2313499294716914e-05 61621724.75282624 12249.191318719966 111542 35813 19141 SUN_20210111 0.0 0.0 0.00036992599967189296 9.9e-09 19.95121803919406 0.000533936675884392 None None None RCN_20200610 38348366.904570974 3923.021686676239 0.07505632559319458 7.679361723394446e-06 303244.99526958814 31.026405717033303 None 1134 1112799 STORJ_20210127 60928712.64459066 1869.5899633255133 0.4253370816683378 1.3058469808862372e-05 45248205.239655875 1389.18600680106 83489 8628 104172 COTI_20210617 133766320.84206297 3497.6964020766495 0.20187367366824796 5.271005266968416e-06 19303112.770700987 504.01227279619076 120182 5271 80399 MDA_20190411 21813046.89389273 4107.826810673921 1.225008349161583 0.0002308023764075332 1029416.0262537835 193.95105783073615 None 360 1539394 GAS_20210201 27608254.466750354 835.3919423554271 1.9748659743925452 5.972927026559878e-05 8613511.501695495 260.51325157843377 333637 102156 149199 BTG_20190807 299217194.4482915 26174.375735485493 17.10760996037085 0.001491026129588712 9893040.142823117 862.23507481109 74977 None 277231 SOL_20210114 921726565.2583522 24751.93962794937 3.520762208941768 9.419908813388395e-05 75016318.35179248 2007.0849334706868 107035 2960 92318 DOGE_20200410 251097766.85961297 34437.295368232495 0.002023642276731532 2.775363862252457e-07 123549292.19990523 16944.40982584674 139206 152336 104219 REN_20191118 46213942.72709915 5435.460266125388 0.056009300411564794 6.581901969419473e-06 3432331.413261808 403.3485282380634 10092 875 310009 RLC_20210105 56474022.705760114 1805.0722794543306 0.8046329403913243 2.5718384245506693e-05 4713218.771120974 150.648035028086 33744 3891 542862 XEM_20220115 1075540871.4567904 24937.562812403914 0.11950454128625503 2.7708403127971947e-06 17980571.41168692 416.8987352145181 376964 22512 341905 POWR_20210429 177270244.9707481 3238.605746519577 0.41497829496429084 7.5787324125266065e-06 6477876.943321719 118.30521391229792 90158 13502 239820 BTCB_20190807 0.0 0.0 11475.438554849137 0.9998821034054426 117835.23048858135 10.267262340610111 None None 55533 VET_20190625 393044791.1510874 35598.9782836294 0.007088346160840507 6.417853630637748e-07 109558328.01168329 9919.511508633892 110380 56253 189744 ORN_20210727 140982868.49471167 3763.571419759859 4.836470217719478 0.0001296165031392169 7649012.377269956 204.9921103986058 None None 85178 NMR_20210916 261296552.89918023 5421.939708779081 45.15109629282151 0.0009367818553147974 10993961.711193785 228.0995301261239 30584 3602 1776451 AVA_20211216 91399269.45552123 1873.4582374886006 1.735708173588961 3.556712934325102e-05 3441453.9618209135 70.52028679212447 142509 10977 47102 UNI_20210125 3457719717.4881573 107341.0005165201 12.008801004555899 0.00037222856567956954 1339750287.223756 41527.32047045294 None None 5976 OG_20210427 11389911.114181485 211.3641137272972 8.912078563689182 0.00016538908562882263 3598834.3074870617 66.78665489664783 None None 247445 VIBE_20190906 2709559.6674066777 256.35946674785674 0.014479425418855132 1.3699413317388811e-06 61706.61618628503 5.83824575285 20325 None 1398469 ANKR_20190909 12264839.660775278 1180.472403072283 0.0030710237076392957 2.9548519915989474e-07 2217911.1687385766 213.4011280288846 14506 None 7336 FLM_20201201 0.0 0.0 0.18726912799961756 9.53931388190162e-06 5388361.295918211 274.47807473615705 None None 36142 AGIX_20210729 191481261.0570525 5830.0 0.18773153255295422 4.692264252368846e-06 1405134.3044764434 35.120692709479634 None None 182415 FIS_20210722 18491386.40568021 574.6065225625597 0.6883584603126213 2.1314688253376928e-05 4326950.251637095 133.98193095444762 23869 None 421891 FET_20200317 3351798.551336595 665.3252515124617 0.009875528976934292 1.961080662130224e-06 2172681.345282353 431.45064746972207 None 361 584622 FTT_20210731 3738067795.975877 89555.99454323365 35.03164301095455 0.0008378519300076978 92167763.2250926 2204.3767195985756 159462 None 2283 OAX_20190821 3882546.1603422677 360.8116766904552 0.07433403085165836 6.907989035829647e-06 121773.9645813632 11.316663478888923 12292 None None ZIL_20210420 2213001102.9509315 39530.88304960712 0.18481524812217484 3.3047555992114564e-06 315611208.62648517 5643.5706440886825 215949 28104 36030 DASH_20210318 2307504258.6379337 39148.54218608825 230.09028877157007 0.0039036544972185987 973308013.056307 16512.901186013078 381166 38633 48362 BAT_20191020 283819984.86550105 35719.68112660958 0.2100813680447265 2.6426703203210418e-05 25488059.726228967 3206.211935307613 None 30867 23933 RVN_20200312 132602969.96522382 16718.056540094836 0.023131782598625715 2.913989248314836e-06 17738321.213441964 2234.556592374155 30256 7566 183648 QSP_20191017 0.0 0.0 0.010576704947739246 1.3207223598471139e-06 71215.27401129705 8.89271329909447 56082 8478 465255 ONT_20190810 564243075.8145446 47582.06994069088 0.8703083344614014 7.337124998668096e-05 104286025.54305696 8791.822101729374 81557 16293 237451 POA_20210527 11373525.753354365 290.72185883676696 0.039982583913803646 1.0198734365041199e-06 513477.3709479492 13.097751060931033 19688 None 239820 REQ_20190520 16397051.469736217 2003.700487416531 0.02246406608262459 2.7448689422750417e-06 367145.24692412926 44.86122778838449 41983 30119 374528 FIRO_20210702 60034621.151500866 1787.0018479739533 4.99591823906272 0.00014852139271123876 6460256.44606206 192.05404066438507 73528 1059 237934 REQ_20201231 27215497.882793576 942.4614826384368 0.035255661603863175 1.2227216703103522e-06 575508.8473183952 19.95954995762798 39492 27326 440470 ILV_20220105 635214870.601789 13715.398704480276 987.2318317695484 0.021456475559892833 29369558.361501917 638.3173545557974 242072 None 8971 BQX_20200501 4162080.814360562 481.00190305763397 0.029456662749250056 3.4150683423465896e-06 552898.7671117814 64.100509014178 None 18 369703 GAS_20181231 26141220.0574748 6878.041762015771 2.211268344258045 0.0005818089586251501 651505.5234680587 171.418250133124 315437 97830 132421 OXT_20210508 396764733.12191945 6924.0749636501905 0.6717657820767653 1.1721651715909661e-05 73849132.07113409 1288.5946690882934 64030 3941 84331 GTO_20190507 19121769.56884002 3342.850643480296 0.0288253106918866 5.0408644777560685e-06 10693411.319090728 1870.0245017519055 17287 None 885807 ALPACA_20211221 80579472.34588635 1707.963741599575 0.5237316687572152 1.110879054582562e-05 4102382.473990523 87.01499328953612 None None 30691 TRX_20210429 8809878815.064253 160950.4412955275 0.12305210155570184 2.2474460002974376e-06 2965529888.7503533 54162.97814481055 828562 101288 21813 STX_20210508 2110987104.549333 36838.60883843863 2.0067440033101835 3.5015707732348064e-05 31087752.215436675 542.4506782308931 61496 None 63157 DASH_20200610 732866789.246535 75014.03197021456 77.51649542709593 0.007934354444094027 454260637.5911538 46496.74741859504 317004 35008 77341 ANKR_20200520 8981249.047830632 920.8367933594241 0.0017395746828736754 1.783565252734588e-07 1630877.2635831558 167.21190802780927 18030 None 5986 BEL_20210603 63570231.11822434 1689.3955463882821 2.0101391647306515 5.344996473007723e-05 15432056.920562489 410.34119059469907 None None 388840 NAV_20210408 55121127.08046903 976.8717433053425 0.770319811664006 1.368436320888514e-05 2045077.3320102927 36.32982117003273 50785 13945 437489 NANO_20190512 222387475.87218878 30385.453594032693 1.6599119062294108 0.00022789375887281204 9477885.607701944 1301.2443426664613 98403 45427 391429 BEAM_20200610 30238311.39768131 3094.000486074068 0.47579773229125216 4.870121941007348e-05 55300616.30306625 5660.404128280526 15142 1512 505180 ATA_20211221 104203883.16190746 2208.707118488623 0.6005750309010234 1.2743045606479691e-05 9836020.03674607 208.70140359724638 None None 211446 LINK_20190929 613581815.9978248 74749.58877518147 1.6837697695437375 0.0002051252083812122 70910611.71148191 8638.683427425152 33479 10753 93725 WAN_20200704 22064809.47521797 2433.32005863247 0.2079988223764872 2.2947462525265306e-05 1577558.6126320767 174.04409665002203 103745 16115 719982 BAR_20210826 63758644.31794067 1300.7736567841605 21.60830931649074 0.00044084249010021523 8723409.907344572 177.97087636022488 None None 38736 NAV_20201229 8872329.406141004 327.2138882062372 0.12542324451521955 4.6191115689938144e-06 73596.48761879081 2.710425716630343 48224 13639 1033713 HBAR_20200711 195859349.13901663 21095.98054648803 0.04121271433218762 4.43904335769039e-06 8045438.5187976835 866.5784575291167 40301 6578 154427 LEND_20190426 10497621.845033592 2020.9616115448782 0.009443001665720374 1.8167638183339067e-06 1090983.050593986 209.8970860007255 11603 5907 535516 POWR_20210221 114808979.52562708 2054.7990409107397 0.26794549702679743 4.765741651638106e-06 27144836.381668154 482.804446450837 82187 12763 332813 DGB_20210401 1050456771.3805647 17876.57705278867 0.07410342849175251 1.261085353914773e-06 59600234.53037983 1014.2713284111101 196306 30919 544060 HIVE_20200430 156582764.33902064 17924.822316529993 0.4448253624377887 5.072893105530247e-05 57066960.83316933 6508.050498236525 5849 75 222989 KMD_20210106 66172067.57320426 1947.9370918873033 0.5436174679149448 1.5948029636440837e-05 3141869.863010808 92.17259681025637 97185 8411 276744 ATOM_20190716 1013114359.3355923 92504.7842858342 4.194461295555575 0.00038356053224611125 292128148.70697993 26713.52059461047 None 6042 109453 EOS_20200305 3349650365.2010155 382627.1967989192 3.592350290979195 0.000410140568069846 2320072148.2489004 264883.8870850924 1469 70294 94982 ILV_20211021 505668752.9365418 7629.793579337274 797.5088033215624 0.012035981018325153 31969325.064418804 482.48017832708956 110087 None 11454 AUCTION_20210430 143927041.06555364 2685.6591717017473 49.769009244993505 0.0009284917287094754 12081010.961511586 225.38360562884614 31594 None 33253 RIF_20210702 114180442.71527208 3398.157261010715 0.15383631295466357 4.5755001491242674e-06 1283138.989214428 38.16395832515822 None 3353 427293 QLC_20211230 8362321.392595329 179.88900718484877 0.03488046591015341 7.495380468694374e-07 272113.7001400602 5.847386667791773 36032 5836 940522 OG_20210401 0.0 0.0 11.015354837349681 0.00018741818072430698 10649627.586109176 181.19559987412995 633187 None 385842 LOOM_20210610 57394095.98211672 1529.0571034424918 0.06866192730931824 1.8332505035613766e-06 5774621.653316588 154.18046752646825 33132 None 242233 FOR_20220112 33891219.90902402 790.5806280901999 0.059988916846060725 1.402074386265062e-06 7414372.953176588 173.29038353103684 None None 153248 SNGLS_20190916 4224243.967049311 409.9142207141291 0.007319322730605864 7.102569765176885e-07 96906.4704775254 9.403670156332963 11 2162 None ICX_20210508 1712625678.431033 29888.574922513242 2.756084596838206 4.809468447197701e-05 451007868.689785 7870.25230063626 138138 31721 350407 UNFI_20210616 26320876.46068659 651.7464549772849 10.701006425324431 0.0002650294637922097 19439622.465758648 481.45683813724156 19380 None 178336 IOTX_20200107 16548438.244357256 2132.8297960055042 0.0038194613565108223 4.92610022279292e-07 2659842.7407202055 343.04973122245565 22162 1787 479977 ARDR_20190512 77694485.51741369 10615.625609953031 0.07720013784381856 1.059901403966164e-05 896614.5491195085 123.09861691579204 68736 6558 1327077 MTL_20190613 27502637.161067158 3383.569389855825 0.5973579624742775 7.345905568029706e-05 8662834.27479465 1065.2969665047833 33180 None 939567 BNB_20190522 4682632626.157995 588462.3385835841 32.402365184837116 0.004071900614372579 631510663.09503 79359.90605533983 970947 51425 924 THETA_20210613 7924958673.640891 220958.2216278175 7.889446315376638 0.00022113971669232335 371220577.7511898 10405.24393128337 173098 19440 16282 FIO_20201231 12986038.642133756 449.84561042942573 0.06134152402972672 2.127413362100611e-06 1285051.8645626858 44.56746960408284 55417 160 537505 YOYO_20190719 3225290.5244609723 300.5192145242918 0.0183481886420131 1.7121830133265323e-06 318655.90295630624 29.73575401817726 7620 None 1133014 BLZ_20210202 42106481.3863594 1261.060445061193 0.16311818115006715 4.884002430388787e-06 22918442.397666637 686.2124600810215 45356 None 375643 OGN_20210203 48766529.01312518 1369.1716428483317 0.2287746499116418 6.4416850639545725e-06 14394851.954106595 405.3207069333039 70571 2593 192490 IOST_20210626 409992206.84372777 12885.432043002444 0.01818140841519525 5.719373323186043e-07 123032897.1968486 3870.2781106542234 247485 53572 149907 LEND_20190312 9878844.729491467 2555.1402373758265 0.008854637455776995 2.2908059646450666e-06 548182.7956203831 141.82177691574233 11640 5932 427366 ICX_20200626 172194897.3859167 18593.727842965996 0.3108578855653252 3.357518475079212e-05 27203828.540523257 2938.235160146836 112635 27765 138952 BCPT_20210212 416304.52641150646 8.730583178395662 0.0035879981197560785 7.517151617944664e-08 14736.243777708794 0.30873644594764 12304 3273 1647629 POWR_20210310 153824891.34548342 2814.3327706796313 0.35908112109963713 6.5581543783643636e-06 35983701.02106035 657.1959719807716 84246 13020 308264 LEND_20190627 8927531.736696148 687.458011978309 0.007916907048753235 6.070915686370566e-07 2199925.6433368814 168.6967273297213 42018 5864 977023 BTS_20201031 46622584.84381763 3432.3731180618042 0.017184850570832837 1.2662313989374755e-06 15253301.100284783 1123.9090331928385 13150 6916 90112 CMT_20190608 28928834.453518152 3598.4387651751226 0.03611352467473231 4.498261728816973e-06 6505969.8813107945 810.3765996126265 291569 1643 806904 GVT_20210427 35793107.13757517 664.1969766686414 8.067608565748158 0.00014970707063010716 3118097.2639724324 57.86116214300681 25020 5604 213426 SUSHI_20211225 1517145058.4058504 29848.14764498365 7.914186235957088 0.00015563557694087718 640260667.9471743 12590.977199370796 None None 3931 COMP_20210707 32429.242361678473 0.9550748417766101 3.5134804460387465e-07 1.0355e-11 76.2929586020302 0.00224852136921587 2532 None 3613749 PIVX_20210105 20783063.369233675 664.2865121439286 0.3113260176387763 9.950875418253975e-06 483868.1484430339 15.465818438613347 64911 8714 359500 ENJ_20190220 30008623.553807773 7665.01278482652 0.03480153779703142 8.889252506618917e-06 886622.955279122 226.4674444447421 38245 11241 18087 BTG_20210131 186758884.818149 5459.358338068701 10.873219411722427 0.00031821510979605463 26843832.224040896 785.6102866195071 83323 None 263524 MLN_20210814 140562650.81427264 2950.0646221500406 96.91691478999864 0.002030133778650942 18502374.241962068 387.5721283043211 27654 409 109463 YGG_20211125 787528031.4012274 13766.187676675027 9.002531765962276 0.00015738981677603916 228444538.29476562 3993.8591676667997 None None 45870 LTC_20190810 5311280924.352878 447896.53706490376 84.3164403726727 0.007108288384252878 3570275028.5332923 300991.6500476057 451766 207423 141428 POLY_20200914 32044020.40287902 3104.3159313292012 0.04641301633271662 4.494244445464496e-06 679860.1625473436 65.83191528250646 35318 5007 332853 COMP_20210314 99807.17944571491 1.626089857604055 1.0815367446437718e-06 1.76302e-11 190.0431891865184 0.0030979062436752606 None None 1572338 WAN_20190830 31184603.473375835 3286.1656496188352 0.2936395074690216 3.096048519077438e-05 8565818.182999818 903.1546513869903 108071 16877 605813 REN_20190410 23844123.46949619 4608.688310420091 0.03085475721463722 5.965846130902094e-06 600041.4142921867 116.01954035593121 6145 795 1519045 IOST_20210702 488873073.56263673 14551.888046007893 0.02169627311138734 6.450801893914347e-07 97154675.63509373 2888.6323580641065 248365 53569 158729 LINA_20210401 340200075.6866822 5784.033533317952 0.1387715041987635 2.360882310108905e-06 61436868.060273394 1045.2089269295866 28922 None 83193 RCN_20190816 7161230.115050563 695.8801636700545 0.014132671065220755 1.3721666545748496e-06 1113887.771997501 108.14938312935037 None 1112 1641051 NULS_20210804 36699751.53683664 955.1687562837368 0.3891920657475471 1.017153651235318e-05 12350351.911600651 322.7765066792055 59607 5366 385574 OGN_20200610 16389207.949861173 1676.8560839105023 0.25308401600812447 2.5916731786979663e-05 16282952.791119812 1667.4341068380907 64550 2253 171471 AION_20220105 78170852.99996208 1689.7216835014103 0.15438292313531513 3.3614527373998274e-06 18932892.385574367 412.23486149827403 1076 74035 270136 EGLD_20201015 115753729.13796724 10143.087768993553 8.005176254592085 0.0007004863382776402 5412967.234490999 473.6572283627572 72269 2719 46526 MDA_20190818 10985211.40903696 1074.7073894232285 0.5596451214677551 5.475131293342896e-05 207116.17445691582 20.26263081061921 None 364 3033915 NULS_20200117 20678011.126670703 2376.1489903304023 0.25699145286567476 2.9502732053758493e-05 2905135.351888549 333.5108187876901 21675 5230 555548 NKN_20220115 189399496.66104454 4394.28368166634 0.2921514272065884 6.7738425940333405e-06 5867592.008621488 136.0463820164886 37875 4642 106032 DOGE_20210201 4920829028.995096 148872.64701435267 0.03798879183692234 1.145627320697105e-06 7755101291.8493595 233870.45191789954 356863 722413 31801 OAX_20190929 3310633.102146996 403.6931564107463 0.06338435989948972 7.728984615753899e-06 158579.83241834884 19.336963993543723 12275 None None ADX_20200801 19123758.994193412 1687.3448439641015 0.2101413756669428 1.855362110337134e-05 24766221.66180194 2186.637883267008 52120 3744 13823 BAT_20201229 313897704.5424245 11576.631536160867 0.2113702614160796 7.787353997138494e-06 125250349.08940622 4614.503478823724 124934 48855 21978 JST_20201030 35020700.8968385 2601.430152211633 0.02443536499236585 1.8171933978207315e-06 35598247.29487303 2647.3473990850243 30240 None 129914 NULS_20210722 31818947.668792166 988.7773487977491 0.3406216139440933 1.0546748061290333e-05 29413738.426756088 910.7445799919423 56402 5364 334900 GVT_20190411 18391482.022120625 3465.2994934071635 4.1266240027706615 0.0007774923550779864 1514596.7205620822 285.363379477404 21313 5810 169324 NEO_20211007 3266258687.809889 58841.743377360064 46.259833946092996 0.0008338997781277171 380673857.22579235 6862.1916250181675 418513 113991 96660 LTC_20210401 13117192834.593618 223227.18536596297 196.5051441183434 0.0033441065313750636 4220727720.1976953 71827.95747967051 154625 284122 86501 TCT_20210128 5182931.745757238 171.24150153528868 0.008967980819492075 2.9493030417064066e-07 577340.9090163434 18.9870310088362 None None 2451414 FLM_20210704 0.0 0.0 0.3724580487061141 1.0723047988053226e-05 10586249.381048778 304.7775729933403 23581 None 83883 NMR_20211007 262966060.84943575 4737.341082997026 45.24644092826728 0.0008155516628583037 20712475.600830942 373.3353070786291 None 3640 2133102 HC_20200113 54529072.73918324 6688.761149048632 1.2258719046361723 0.00015010498610874132 30101212.82195876 3685.8191426104913 12796 843 1107613 VIB_20190916 3767928.2965659574 365.6790755016462 0.020751557213441137 2.0137024731566256e-06 2145811.9330775565 208.2266285909605 32269 1118 4575381 ARPA_20211204 136184885.0949126 2536.59368107654 0.13883212406071097 2.584074949699953e-06 52346796.21991027 974.3281371231194 56936 None 205403 ELF_20190816 39198229.02553248 3809.0201811188713 0.08496462945534809 8.24704582341379e-06 22496613.62111588 2183.6216387253285 86084 33516 1269907 MTH_20191012 5108929.610922993 618.1676568406546 0.014700098637677118 1.7786750302354737e-06 512345.23040138476 61.992486624510505 19481 1976 761228 CTSI_20200704 7114736.039316488 784.5009479638313 0.035714840299425114 3.938570882636983e-06 1377290.8089343894 151.8852508233066 14802 119 226928 FET_20200626 17615192.311925363 1902.1010304120368 0.028055820261278168 3.032028880352523e-06 1678929.3290904511 181.44406994576377 17582 417 852489 ALGO_20200107 128695202.83836918 16586.698445815407 0.23985960466599993 3.092321406092761e-05 52368973.83840982 6751.520292094506 13757 724 440890 PNT_20210704 23775341.748482108 685.8226986381225 0.7474672087125778 2.151954233870096e-05 3565629.745753323 102.65429624669369 44605 319 307388 CTXC_20200721 1249379.3592266785 136.36731287518495 0.12371778641034101 1.3504474802528169e-05 22596121.36065885 2466.4905540565023 16489 20063 581849 WABI_20211207 12304528.249617554 243.6990951700804 0.20845296953317524 4.127195137937129e-06 2236021.2564361 44.27135808405181 45819 7950 491183 RCN_20210107 24431006.681064274 666.5459168494174 0.047912079491593824 1.298747115063457e-06 830090.3576230216 22.501161891627795 None 1128 5449742 COS_20200520 13170538.979554463 1351.6986238102988 0.006635723207334733 6.80033857920064e-07 4461806.688908798 457.24927353787075 10897 None 168356 KEEP_20210813 149232376.78050473 3356.6318418473484 0.34110791696961384 7.672598149451541e-06 28799408.221461598 647.7899668478512 22757 2872 131612 LUN_20200612 2703304.8961479417 291.33589881575637 1.0018320333530681 0.00010770766380294793 1514747.319008446 162.85154551918856 None 2125 3112082 AMP_20211221 2253633318.2025723 47768.046653723584 0.046772119108471386 9.924142967062127e-07 15174756.838442681 321.9791175290853 None 42160 76901 JUV_20210819 34738464.9906403 770.6472279415882 13.354198519563905 0.0002965170355366273 5851077.300790202 129.91750073089509 None None 38736 LINA_20210603 116294194.74094379 3090.226988523084 0.04697536842030799 1.2475015114910163e-06 22180409.63330339 589.0341145482912 None None 70123 AERGO_20201208 12012956.122805845 625.6168641914993 0.045473790246013085 2.3698463953239715e-06 4915913.214167143 256.1906352492993 None None 661183 BTG_20190510 347674778.6659742 56310.941654875016 19.862863460586432 0.0032174026855762714 20489727.935273174 3318.942700103962 73713 None 432620 NANO_20190922 123098584.24622674 12326.563172022337 0.9246187022691522 9.258810333679348e-05 2716386.6776966914 272.0095211139893 98428 47692 228535 GAS_20210813 129615722.02923618 2915.401263140676 9.301138408878346 0.00020921208155397285 58725426.46983883 1320.920963843755 409532 112645 120320 VIA_20210819 13174487.780175978 292.5666894210938 0.5672038836754936 1.257647801933363e-05 261915.15242576538 5.807382939743038 38178 2306 1271022 ANKR_20210221 176929267.06378737 3166.59977097488 0.027485892896990227 4.903092624364517e-07 65401123.21837486 1166.6630808718705 None None 5433 ADA_20210825 88117473137.34389 1833688.286607412 2.7450346597346518 5.715916887837584e-05 7960262411.9015045 165754.5495480367 565024 578740 8980 STORJ_20210120 59616461.05168744 1646.279751940684 0.41200962842136146 1.1431411478192165e-05 35837690.015439555 994.334483308274 83297 8598 104172 SKY_20190515 16286372.078904346 2037.508780040286 1.085758138593623 0.00013583391866935245 752196.3706563074 94.10362861056343 15628 3717 424998 AE_20201226 35327732.28512576 1430.5558238934832 0.09466458874668492 3.837460948283588e-06 10604492.656042615 429.8790813196104 25593 6351 544843 BTG_20191102 141411492.78156638 15319.46159958633 8.076653887993373 0.0008747345649686395 13167046.915279098 1426.0448962014227 75165 None 358589 DATA_20211221 0.0 0.0 0.11447847036371117 2.4279118125771748e-06 95210.29396436318 2.0192635057106716 None 4823 146581 GTC_20210930 92363587.06231761 2223.1497086480217 6.5074541400222845 0.00015655611670426612 6506777.307923975 156.5398335000065 64280 1247 27336 KMD_20210821 150397998.59570345 3060.9714119194005 1.1792687607912846 2.3994121312969636e-05 8064086.959352592 164.07683067192508 114692 9505 205763 DGB_20200707 280446420.1402881 30016.2191742401 0.021058788346161254 2.2539250321901427e-06 13500096.256290507 1444.9171713422097 162083 22531 171984 NKN_20210805 174987214.97431922 4389.025413382383 0.2655451008664704 6.6764609863473285e-06 12041104.475713996 302.74316491744236 28969 3311 166528 SKL_20220105 659117435.0927132 14247.318269004074 0.2010206316455813 4.368978117537515e-06 30188017.78748717 656.1057342507056 81787 3247 169615 YOYO_20190321 5806679.068734798 1436.877384396272 0.01989142133402665 4.920812487436095e-06 381232.19757461885 94.31061395440932 7115 None 1390338 CVC_20201229 57991077.948569916 2138.588474020278 0.086650065985753 3.1923825669032164e-06 13490248.242112514 497.0109695980804 None 8048 189562 INJ_20220115 304759512.5392429 7070.767221628147 6.982747483114806 0.00016193988844370646 15264920.180213168 354.0153037272823 99245 4494 125425 JASMY_20211230 339438300.4106447 7318.731370632964 0.07177539721005734 1.542364462008066e-06 39717472.46232896 853.4793317465118 46421 None 74967 ADA_20200626 2540498716.547023 274324.8635005322 0.08162344153345734 8.821149923648699e-06 269825228.4688815 29160.358210712526 157325 81337 52095 SKY_20200127 8025693.803647599 935.2109580094386 0.4732192913131923 5.509259168533717e-05 276459.33899401274 32.1856309757141 16311 3820 343600 XZC_20191019 41515144.08680732 5217.196044323035 4.818633311647114 0.0006055562423197138 11582502.12140079 1455.5696621161007 61186 4056 181391 MATIC_20210703 6946254595.531442 205511.32322292152 1.107611138196442 3.271019940393854e-05 524708661.26605654 15495.803849475487 512078 46183 6545 CELR_20210707 165005517.05952626 4830.90126169725 0.02921850240243942 8.55507825694749e-07 45938654.82138902 1345.0682091874405 56960 None 195750 PIVX_20190507 36473791.06851754 6378.340218437702 0.6090437836401326 0.00010650629797938413 1412370.3008590296 246.98771444879742 63084 8606 304717 BAND_20200404 6235018.086401128 927.1828212486099 0.32595446799898814 4.8441243400024696e-05 2468609.1602769853 366.86871613270614 8877 1064 769411 ALGO_20220115 8924372517.563667 207020.735585619 1.385137138909479 3.21158826428999e-05 276341492.5089502 6407.272387316473 224357 62732 62056 ETH_20200725 31236557399.18939 3275700.1484178286 279.42705624758224 0.029293918831257745 7547527176.1284075 791249.9649937911 466650 471391 15611 XVG_20211111 478808915.5001771 7386.614598330278 0.029118943676095164 4.48394369252e-07 168644322.82768372 2596.9061791320587 333385 55398 175173 RLC_20210825 350403263.63721144 7291.747450804527 4.901142674428642 0.00010216946778852529 50957888.68018773 1062.2707217329958 46683 7824 323230 FIRO_20210506 160061927.45397925 2795.9545648173817 13.558359770288241 0.00023657311971871138 16525726.284582768 288.3492316916252 71217 727 205824 BADGER_20210509 303862692.9775698 5181.517598931291 37.84661313598007 0.0006442799452567336 98636732.15800448 1679.1375272268874 33189 None None TNB_20200718 8949525.238990985 977.5193036612214 0.002605717504110065 2.846689573457874e-07 1460297.0299270926 159.53426734433006 15878 1434 1115028 CDT_20191118 8334325.932572406 979.8016026092148 0.012440188349996896 1.4619018555691005e-06 629952.5457043803 74.02852509752731 19468 297 185500 WAN_20190716 27822938.217574183 2544.5312834445494 0.2621357268849367 2.3999140235230555e-05 1476533.4612768677 135.1800993336104 108472 16940 474498 HBAR_20200223 147119612.6941288 15240.8118549751 0.045487352427503784 4.712275148561322e-06 8460662.47711497 876.484723854086 None 6293 142339 POLY_20190205 38699770.01917684 11171.045239246105 0.08955934716810736 2.5852130860635932e-05 2597444.2691297736 749.776224057427 32586 4973 219642 FRONT_20211111 63885620.11519586 983.5169173374617 1.0757418668102865 1.6561008921700055e-05 12496731.453032862 192.3867495270269 None None 339498 BAL_20210825 302664026.42580336 6302.382554537314 27.753254607136103 0.0005785457475875439 63107009.74314864 1315.5319131643962 95469 None 8467904 MDA_20200425 6777857.944420063 903.9176832320143 0.34658689373002416 4.624078537349492e-05 163980.3378105557 21.877860194210324 None 373 2010247 DNT_20200207 5684824.707949093 583.6946958794335 0.007422829307794488 7.622580598108661e-07 907955.7261646866 93.23891760433052 59272 6133 610225 ETH_20210809 352872000029.7298 8021227.927321735 3012.3085592702105 0.06847951486427531 34209269717.32262 777687.3278449753 1482587 1059701 3722 FIO_20210427 75040784.30071755 1392.9245271990894 0.3235395819138101 6.002122344070651e-06 31690335.380521625 587.9010813866747 None 407 172858 WABI_20191213 8603520.61889429 1194.251278814522 0.14606482650703662 2.028695972693898e-05 163442.17317435058 22.7005013059164 36635 7875 1640926 PIVX_20190716 27992446.756820053 2555.9160473951915 0.46490144731347827 4.251269328971748e-05 1152467.7463456064 105.3868687865069 63459 8626 284209 STORM_20190830 9246701.370461404 974.3972676079138 0.0014797698051154033 1.5602257179873476e-07 151344.6742245199 15.957336890456249 26530 2547 2477338 LINK_20201031 4339545056.930286 319479.02176429075 11.074030000827875 0.0008176637728713836 1067488528.8746758 78819.24628625151 96292 23870 34515 STPT_20200806 14560840.01226121 1242.9767256522273 0.018046655928055804 1.5399679109859613e-06 4311024.683155308 367.87090649889774 13047 None 1449224 DOCK_20211216 70448412.58601576 1560.1781752227776 0.06406294129074179 1.3128319647989245e-06 7999826.256297061 163.93920432782687 57074 15279 184279 VET_20190324 325130691.3579214 81176.14028402459 0.005861502859050749 1.4638270283804771e-06 16979968.456210878 4240.505782381331 105672 54886 762391 LINK_20200511 1429439273.7752037 163566.03259335808 3.7654236218928996 0.0004300871477803208 710157810.0831432 81114.31214186641 54264 15119 77318 RUNE_20210201 821174178.6269872 24840.06189282176 3.5948399439322203 0.00010840952434026259 79453195.99456802 2396.0686204189956 None 2238 162982 NBS_20210509 0.0 0.0 0.032996034860388476 5.621611956802264e-07 4928540.157212741 83.96869622243166 None None 486694 LTC_20190507 4602389364.520868 804848.9505768146 74.64312621078929 0.013053315797582624 3192221141.852416 558243.9103990305 443719 202502 206704 PPT_20200129 12375999.36123921 1328.3576905529815 0.34154525973417793 3.661511507682147e-05 2577641.4810666926 276.33420978965194 24158 None 887980 MTH_20190221 5485280.888830131 1381.7521223579017 0.01823251253401348 4.5939264756018065e-06 103526.79463194539 26.084966726700138 18617 2015 836408 KAVA_20211111 548886886.1034793 8464.040246854645 5.502048288070423 8.472448379879619e-05 79377373.28758329 1222.3096972224846 None None 44034 GAS_20210902 147282271.54276392 3027.746533012218 10.597701368603722 0.0002178121416174785 20658269.6909792 424.5847101178001 None 113099 106895 LTC_20190205 2058779141.4143443 594285.5710759875 34.128248980911316 0.009851433564413837 739988766.5504682 213604.57655363178 436859 199654 253204 SYS_20210207 68039192.59640385 1730.0532670380305 0.11264321850159575 2.8682325065464276e-06 3915314.6744286516 99.69559616583054 61645 4504 273624 ARK_20210310 220968797.22600383 4043.038934159488 1.4348520199420183 2.6231095643565547e-05 16830708.603082582 307.6888215512852 65602 22150 76415 NXS_20190507 20097659.885419942 3513.454915276429 0.33659975644456647 5.884406819019566e-05 151093.88455837136 26.41409768084185 21327 3511 725458 NEO_20200626 729698284.7354678 78793.34126517542 10.347611390414416 0.0011176263504808401 281665406.412708 30422.159119480617 319594 99683 217061 VGX_20211120 7093053538.364369 121982.0054644159 353.0118415667398 0.006069300103429913 421862943.0619833 7253.0507548860105 383729 12366 24645 SKY_20200423 7381987.734036317 1036.9163625610258 0.4101104296686843 5.7606464586723656e-05 183933.08479143944 25.83629668702858 None 3823 410514 GO_20200511 6691086.511206165 764.3986896326963 0.006969463420590569 7.960529664426515e-07 1032878.2468492308 117.97547999882363 10742 673 1079767 BQX_20190905 11431466.82221766 1083.0160883021874 0.08133506397014156 7.700155407958426e-06 168938.89355467286 15.993787566172893 None 5754 423715 STPT_20210722 44154298.54324287 1372.063045220248 0.03935531353965133 1.2229287080050093e-06 7186849.620896528 223.32447466475313 None None 433078 LEND_20200325 26816941.258527458 3967.330325596503 0.02292039922934249 3.391969685743487e-06 1244367.7835328365 184.15289181593704 44131 5739 109064 QLC_20200707 4348742.006619984 465.4464590335418 0.0181197583609166 1.939360245973091e-06 383148.3710806711 41.0084232020416 24671 5645 940522 POE_20190405 13451143.865276022 2747.0697117908526 0.005911548903359164 1.2077255632887332e-06 832456.3430600717 170.0702848392593 None 10945 791380 GRS_20200907 14252248.445256772 1387.868493341502 0.1879360239375674 1.8301006145709585e-05 1903716.925293093 185.381889110595 37782 106837 3374022 KMD_20190920 81433993.57466877 7950.969423456709 0.703144944426156 6.860866128761186e-05 3143821.411980928 306.7552147151833 98312 8425 202863 TFUEL_20210513 0.0 0.0 0.3149941985302677 6.279501858309918e-06 50025363.42553982 997.2703118312231 156732 16698 19506 GAS_20191012 17177503.050758835 2077.5136456183222 1.2326774140953163 0.00014908477331432613 647146.5416270038 78.26840530733674 323199 98299 164596 BQX_20190520 14889961.1162018 1820.0736173614168 0.12644844503504876 1.5473935195567653e-05 798098.9046514324 97.66613363103608 61073 5786 448340 AE_20190826 80792779.77873667 8001.487187246633 0.24781144540710312 2.4534329111698407e-05 22871592.311943594 2264.379565552266 24873 6354 305950 XTZ_20200313 969397700.6505326 201739.62175950067 1.348087012198147 0.0002813160411939405 329251634.5379799 68707.55785550465 57062 22394 104382 FOR_20201224 9047868.248191055 387.1016197141081 0.016202728182843608 6.948194820031326e-07 9520757.274847252 408.27739398797615 16594 None 157900 RDN_20210703 16573778.711620225 490.37621863170284 0.326699093636279 9.645424246142462e-06 499127.91639210883 14.736191806074848 30064 4674 857508 BLZ_20210401 137095802.82826814 2330.7959523688146 0.48978674007609685 8.332632321678407e-06 49066859.37970664 834.7635101903128 52139 None 224636 BNT_20210805 865262133.255856 21734.730353730418 3.642291840828448 9.159560646495508e-05 68863821.33707385 1731.773222606157 126082 7653 39422 STX_20200531 101671911.6810289 10533.321405750356 0.15202763572814074 1.574693715205366e-05 1017738.7200705747 105.41680521047769 41009 None 96390 LUN_20190316 6889612.968066895 1755.6464072310953 2.5485407649110567 0.0006494321899265562 2096893.9731582105 534.3412449121488 31718 2247 1442676 EOS_20210110 3463456306.1559377 85589.99991383473 3.6190472082489142 8.983983902618149e-05 5665726599.30384 140646.95384122842 None 74021 95839 PAXG_20210428 107367205.41078794 1948.9444346872247 1785.6853749500597 0.03240480314741883 8994921.648022635 163.23069529467443 17866 None 51510 OGN_20201129 23973014.389723953 1354.453444407245 0.15168197753804663 8.56268420299629e-06 6249082.563742301 352.7704571121776 None 2462 210408 RLC_20191022 22536517.178731073 2744.358163786004 0.322487063313376 3.9266992146033434e-05 444997.6297227718 54.184246188962724 25018 3320 696039 EGLD_20201124 130819288.2631868 7145.198152983507 9.048665095360528 0.0004928874199194173 15896767.55464471 865.9085801600608 None 2812 50672 BCH_20201106 4635885017.621631 298344.70275861723 249.6350230326093 0.01607065474054041 2545620012.3356967 163878.36859539233 None 335153 124397 ALGO_20210707 2838691824.9593515 83108.97819143001 0.9126280816079337 2.6722700404981523e-05 204831002.46061113 5997.665010223111 114731 34922 196865 STPT_20210217 37636543.12631191 765.2873798246595 0.03691316962525996 7.506756835905238e-07 27903300.695851285 567.4486785322378 20200 None 1294175 SXP_20210408 363376513.47451043 6451.406673896254 4.112222325508505 7.318029683870652e-05 551043881.406161 9806.268149052303 144600 None 75710 ANKR_20210220 190152589.9681584 3404.7392457253095 0.029292011301313522 5.243475812484005e-07 73528208.80076572 1316.206594406168 46341 None 5433 MDA_20191213 10748846.5308435 1491.434462247772 0.5439278962907179 7.556357751354023e-05 995784.7886470155 138.33646256583268 None 369 1774649 WIN_20190830 65291775.8026533 6874.439768719986 0.00031593259882956444 3.329228972736183e-08 43113247.08258673 4543.180153862925 None 1392 99060 RUNE_20210111 322168946.6362716 8357.16305402407 1.4637149625146475 3.8056286799364324e-05 27176683.562216673 706.588161210341 None 2051 287788 CDT_20190410 7979106.739213696 1541.9533120913231 0.011816263530029408 2.285842040527158e-06 492353.91962693044 95.245276600459 19806 289 420503 CMT_20200913 10477571.92758364 1004.822100889356 0.013105049156226121 1.2550448711614844e-06 1771583.8819707935 169.66111598623544 282740 1635 830307 WBTC_20210221 6888920241.376205 123294.7698287896 56096.49671180916 1.0006817690484349 441769990.7328442 7880.548728562412 None None 140839 INJ_20210614 237480302.39704388 6101.683136883688 8.228329782000106 0.00021131565122195205 23181984.75658175 595.347577848743 None 3654 114245 STPT_20210203 19588749.992227133 550.0460264533352 0.021339148723765942 6.00679144154669e-07 3095141.481090127 87.12563748282092 None None 1418206 POWR_20211002 147206192.21872196 3056.609613804056 0.34181142973695966 7.09725510290423e-06 12329826.526486183 256.0122822702844 93080 14379 245537 ALICE_20210718 98220583.42185412 3107.691336332396 5.632391566818743 0.00017854793294503287 55249286.124762595 1751.4133591810523 None None 50440 TOMO_20200331 16555363.543410992 2576.7288726061875 0.2351457696359247 3.667815145389542e-05 8906188.430242034 1389.1916007126931 22175 1515 213355 ANKR_20200530 11192956.906782553 1188.3412945129328 0.002167959529664537 2.3016936948734868e-07 2951076.474721012 313.3118502450032 18194 None 5986 POE_20200718 5529993.509246219 604.12180744452 0.0021969053688580464 2.4e-07 164485.2395742861 17.96912059 None 10233 672576 BQX_20210115 229430950.2713902 5890.418002249105 1.0120430021203404 2.5798154287736114e-05 35352565.92106533 901.1780608019629 None 170 152603 PERL_20191011 9080966.73378695 1060.8160284873954 0.03475981871946123 4.059552998346198e-06 3242823.2551977816 378.7250150811194 11139 373 269968 AMB_20190124 17538926.154851712 4940.6352675481185 0.06465901889466595 1.8205655580847048e-05 606122.3281376488 170.66226080404556 17897 4978 577805 WAVES_20191102 78979986.51754773 8549.36186696057 0.7939675665669594 8.583135402830846e-05 7349296.03489803 794.4909293432424 141866 56894 22143 XEM_20190714 664569650.8632405 58389.845790505446 0.07387542800695966 6.487112467773953e-06 56813747.75494158 4988.900658109554 217466 18441 188910 COTI_20210207 49311095.67246098 1257.5345012901319 0.07335446802578488 1.8661413458041072e-06 19651611.980447073 499.93799444528423 38867 1427 238618 POA_20210722 6700584.442201233 208.6349185999688 0.023138490437252593 7.200002085803774e-07 91551.49236843969 2.8488070032 19932 None 239848 MKR_20210210 2321049590.4762735 49829.38099512647 2566.847232132365 0.055112681549836555 241430768.40073586 5183.751057965552 99038 21393 38971 VITE_20200612 7241692.3731115535 780.4839338945727 0.01447485642846735 1.556500362683729e-06 2304114.8402972035 247.76450131376507 None None 642638 FLM_20210207 0.0 0.0 0.34341980119612586 8.733197443650269e-06 38384010.73389214 976.1089583382267 13853 None 184710 CVC_20190510 23117984.672954917 3744.8237352499877 0.06745837824481359 1.0927411691218138e-05 3657264.1362061617 592.4309466026127 89085 8203 436326 APPC_20200905 4403735.312202694 419.9809156709801 0.04017869611548472 3.831811947981727e-06 159186.641365172 15.181509937229315 24500 3185 2103501 SNGLS_20200629 7423314.5996612385 814.1931937378172 0.010765186458716913 1.1799901347528606e-06 195148.32181404578 21.390534705294495 9103 2132 970834 AION_20200312 43768450.68717426 5518.3361323132 0.10936543214408409 1.3784338375391297e-05 4108962.4503243854 517.8905955624853 482 72546 246428 SC_20210814 919605671.3875861 19300.26320486543 0.019006002883923973 3.9840452517093863e-07 99538086.0842809 2086.5209883965085 139725 47848 83896 MTH_20200312 3033721.8111012382 382.4923300401938 0.008737387374094803 1.100678374350047e-06 449902.1020374972 56.67569641647072 19221 1930 1066623 BRD_20190818 17232111.067676563 1685.8553204136601 0.28690541141122317 2.806858732418188e-05 387501.7907083482 37.9101523295585 168 None None ORN_20210618 237834629.3862006 6259.858369762567 8.257796636026464 0.00021642969278412125 13625679.296104537 357.1172449519034 71226 None 59739 LUN_20200208 3077780.316377977 314.20964667142846 1.138832112595324 0.00011622877900895517 4736673.776566856 483.423152126842 None 2159 1865832 ALPHA_20210318 458989232.71887195 7802.900025043997 1.827372290533644 3.100274287158753e-05 226926419.80027503 3849.9770847369805 None None 33273 LTC_20190305 2778021500.930084 748182.1811532511 45.73922459478695 0.012318577379667085 1206523528.1542726 324943.2751348236 438754 199860 247801 ROSE_20210304 156793111.22911546 3083.8846767249706 0.10436001070601617 2.059669570093893e-06 14555049.045594156 287.2612929763357 12539 937 254242 SSV_20211202 0.0 0.0 12.074939905672103 0.000211216748114456 3071215.413119706 53.722183082122186 None None 448309 KNC_20191118 30008502.35461721 3530.4841502495897 0.17408268153269307 2.0457230067192054e-05 7465689.747835739 877.3264028166423 98286 6723 181091 KMD_20191020 64637285.9427128 8134.815608059836 0.5553377881709572 6.985744162898229e-05 1589827.4921369548 199.98869804609637 None 8406 214923 MDA_20210429 25473679.108209968 465.7191355307612 1.2975142297245947 2.3698416204813817e-05 1050175.176016585 19.180898243009757 None 376 1136941 STORJ_20201129 48826397.21097737 2758.392417245562 0.3399311406332106 1.919206100013494e-05 16873668.34050588 952.6649176177182 82362 8484 88505 WAN_20200721 28869172.51523373 3151.013702731021 0.27649082809129405 3.0176889959418545e-05 4225334.583299972 461.1634231854788 103754 16092 631499 IOTX_20210324 237297832.61491415 4352.934322868054 0.03884653921326779 7.126243173743044e-07 49030973.74515689 899.4537197642076 43554 2463 337079 NMR_20201228 122723284.6888374 4635.49530695365 23.518663178149804 0.0008890430139043801 9324511.803848375 352.4814320646471 22058 1975 2410731 BRD_20190909 16821341.958438776 1618.3365803641536 0.28092387925326395 2.704347517709912e-05 1553517.11512133 149.5511939093878 None None None AION_20190509 55204596.67203043 9274.816711688645 0.17838451943174982 2.9956413666710464e-05 3031351.1946588536 509.05992653146683 68878 72513 275245 CELR_20210724 143224507.64243758 4284.749588465981 0.025426306006818084 7.601529428735382e-07 30952651.32505543 925.370322695328 57421 None 211241 STRAX_20211007 228519964.8443932 4116.470143791274 2.282043435326443 4.1136579700255505e-05 65600289.39472853 1182.524176039642 157440 10959 280292 VIA_20190117 6938923.925593915 1929.2543400636227 0.3000074182165053 8.343539138467095e-05 298302.4622489728 82.96122421477102 40916 2228 2614866 MDT_20210724 13335102.312565299 398.93713084747225 0.021993515167130506 6.57964943377891e-07 959288.4377985494 28.69837576498409 34120 314 701499 RDN_20190131 10378126.571654135 2998.1224056273813 0.20640833402542713 5.964135372469959e-05 1147000.5130868133 331.42394005755307 24872 4457 703973 XMR_20190122 730545463.3670323 206860.12181801794 43.64628853295377 0.012359966741378507 227501539.6746856 64424.98454063215 313233 152810 85084 ETH_20190922 23241002834.289497 2326290.444312404 215.34523960456264 0.021563784588853642 8291876955.773469 830314.3772294011 448183 445977 24076 LEND_20200523 68561652.74365143 7489.648495378696 0.05803613875317535 6.339845407687578e-06 1824120.0796834377 199.2661737789887 44850 5726 81711 STEEM_20190807 65920543.40350544 5744.761449706074 0.20586602773636412 1.794055629524887e-05 867187.8225843229 75.57260476969996 6119 3762 297203 DLT_20190616 9532076.380866671 1080.6070917001111 0.11859280527485501 1.3444788160153799e-05 598314.4189892437 67.8305112846629 15065 2675 2617266 ONG_20190603 0.0 0.0 0.4518169438509296 5.1665616263190185e-05 5757206.627821411 658.3410215776578 80962 16204 249314 HC_20190207 40551654.82887235 11904.06246004628 0.9174945874089616 0.00026928898768414114 6569957.660600266 1928.3135528320101 12197 786 367356 XEM_20210429 3062355062.9121733 55927.67105073429 0.340261673694715 6.214185672994275e-06 359869622.68068945 6572.284880414171 306425 21150 27283 PERP_20210825 755204546.3161488 15715.495250461388 16.945472323720534 0.0003528604001877508 39365732.74838448 819.7238734877109 25676 None 133566 DUSK_20191113 11627376.332163816 1322.876338377138 0.052711180874080284 5.989231715733231e-06 678057.4122872272 77.04329311953633 18879 13335 414113 BAND_20200318 4923133.49176791 909.286628661897 0.2708114936200448 5.034939842695639e-05 2447459.7954700673 455.032859679773 8607 1059 702901 VIB_20201229 3419193.683599205 126.09264150380429 0.018739398883704038 6.901382157212773e-07 826812.8586817178 30.45002428131362 30392 1093 3150523 AST_20190629 9709014.802219903 783.4315632138354 0.056527446795503325 4.555092244587755e-06 1777245.3908124662 143.21391032759655 31961 3598 344733 AERGO_20210422 86299740.09818481 1592.7335606014246 0.3294117367986586 6.08249573739414e-06 1861723.651519967 34.37620737083028 20013 None 413577 CELR_20200224 15590957.746801531 1567.0241985680864 0.004182472463652601 4.203201351236211e-07 5388769.370519032 541.5476825371691 19291 None 1202590 VIBE_20200224 3307019.2206622735 332.39684934461815 0.017550833245212005 1.7637817499740954e-06 187719.85950883172 18.865022399988 19493 None 1771395 BTS_20200331 43524094.33999968 6774.22698969049 0.016052706665872146 2.5002688619891206e-06 15608667.584288076 2431.10812091913 13259 7024 125048 SNM_20210814 96936668.90721552 2034.8469192 0.22191229734548004 4.65e-06 242933.60831180718 5.09048526 32380 9708 None OGN_20201228 24480474.68661535 922.0628852549086 0.12183260034504241 4.6327159993017596e-06 6986797.884686792 265.67478862477793 69854 2476 208472 YFII_20210519 105115687.87937836 2455.9032635673993 2664.3441508794285 0.0621862975181852 78251575.541555 1826.406606026361 16380 None 421483 PSG_20210620 30800543.29898435 863.9989297712805 14.63695790475998 0.000410939440474701 7019019.423156584 197.06225386458294 9164916 None 40054 LINK_20210104 5549965907.19672 166040.45943054868 13.649759488970336 0.00041465835608884183 2002356676.4896975 60828.46576510395 113731 26525 46948 RVN_20190915 140831197.51445428 13602.01624264835 0.0318886962406863 3.0805387382161396e-06 16849081.103697926 1627.6691480745826 27743 6996 276399 GAS_20200701 25420432.33441114 2778.7304402881027 1.8220832086732746 0.00019921821834340973 17695434.852320313 1934.7376603387925 319628 99703 207094 BRD_20190901 14734576.871784028 1534.9625525385206 0.24455563057814053 2.548211735978049e-05 114907.39431868283 11.973078275127536 169 None None AAVE_20210318 4770219131.432599 81094.58855850488 383.4074586104408 0.006506231832450042 603105953.1310279 10234.404841320846 None 7358 14216 NULS_20190902 31599342.257935103 3244.980016599538 0.4291578077981841 4.406596312149257e-05 4927543.728709054 505.96064264301145 21336 5302 307386 SNX_20211002 1830788549.557539 38014.7451481205 10.467315089930352 0.00021733682164219023 97392728.51398613 2022.202053194455 158805 7855 46241 BLZ_20210219 64027174.238408394 1238.7449600549498 0.23899181146062035 4.622625562794287e-06 20316146.12543575 392.9588040817792 46716 None 375336 ICX_20210314 1092258196.4188523 17801.529582239273 1.8424794794658348 3.0030243153980443e-05 101705407.6570437 1657.6782298282099 125309 29870 148374 REQ_20190401 20417695.62698938 4975.72303444275 0.027984352536523458 6.819579685680056e-06 354124.29088282574 86.29746988637638 42110 30522 347725 BNT_20190511 36723293.98194725 5763.114653602474 0.5655503247025097 8.877223379649532e-05 2590453.361858942 406.61338422681104 807 5132 153854 MTH_20210217 7113341.090051972 144.55890486168323 0.02077892963425402 4.22253720907093e-07 844552.2344854047 17.162352911768 19519 1905 681058 AXS_20201201 25046465.41086368 1272.3332891075581 0.45498734930966434 2.317662918454005e-05 9827527.356936308 500.6050337404353 27225 None 26328 ARPA_20200109 0.0 0.0 0.009474335538015915 1.1788993939094666e-06 1914834.2030746539 238.26440095814493 12615 None 827154 FTM_20200414 7273139.577336789 1061.0054202017825 0.003413790151442278 4.985620667971151e-07 1955904.7766010216 285.6472965886823 21457 2333 311485 ZIL_20210110 890738704.0332248 22012.20944117216 0.07685367359921552 1.9016123001251399e-06 158532068.3480315 3922.604047621912 None 14382 39054 OMG_20190213 162631703.11461896 44757.92833511071 1.1604551598481465 0.0003193589409924128 45946642.35346325 12644.582532667 287539 37097 None ICX_20200106 58364420.86374149 7948.446831499349 0.11363247116735191 1.5471013429954033e-05 5362008.996039215 730.03528249495 111846 26945 96597 GRS_20210814 68992982.6400939 1447.5220777810484 0.8835541225633762 1.851904197900084e-05 8339573.579839316 174.79507963127944 41434 106850 8715439 RCN_20201124 20357173.46296018 1111.3589114795845 0.040322544496136196 2.1971198486289848e-06 334233.02339377766 18.21189656907966 None 1130 1886227 TNB_20190130 7093377.038885641 2077.2935645301936 0.0028460924460117355 8.332366657994415e-07 319974.2525522952 93.67730823780963 15125 1514 1588836 NXS_20190623 22672983.454831365 2113.978277908588 0.3797318071993265 3.540534457891522e-05 517682.9234565944 48.2675981840518 21352 3518 925188 BRD_20200105 15094809.154948913 2053.8509306551773 0.25151653624521186 3.420265004449592e-05 914907.4739697529 124.4143252862442 180 None None UMA_20210613 696292042.6272825 19417.91021464149 11.372498234808937 0.00031876901587225457 34428612.59469767 965.0276243672914 39753 None 143872 POLY_20190904 18147962.12194776 1707.9932577815086 0.03580829473593916 3.370093323463088e-06 5806084.029367806 546.4388954327823 35250 5059 289476 RLC_20190902 13936322.722772412 1432.826841378159 0.19902674136533394 2.0459048373387864e-05 53353.343606680544 5.484482287369585 24823 3310 984845 RLC_20190227 21859307.354861394 5738.843311418834 0.31251877289691815 8.202751628761828e-05 1330137.6173303754 349.1242591891576 23892 3262 504378 APPC_20200730 4997940.48012064 450.3718809730436 0.045797286294699084 4.129146690921935e-06 1191824.335739309 107.45653094838109 24478 3194 1596022 ADX_20210813 64847621.456292085 1458.5949493279734 0.515381624672075 1.1592299267750458e-05 16849228.386889413 378.98382197032464 92677 3893 14822 NEO_20200526 697654678.2026594 78500.68342747712 9.892534405210329 0.0011132741385503253 345945365.7044052 38931.58347644488 320278 99483 247839 TVK_20211002 89633447.50363214 1861.161227178041 0.20941457200174132 4.34765057827504e-06 23021680.696873315 477.9525246876914 55276 None 78551 DCR_20210624 1469090781.389714 43577.651279025464 112.62104697476805 0.003338780211455029 36255529.363179706 1074.8367844665072 46631 11271 151114 EVX_20190312 5336551.844737857 1380.199142537529 0.276561339646832 7.153194795385345e-05 355592.6736952466 91.97321888888001 14106 2308 1155808 BRD_20210105 4873582.016287286 155.77370581660458 0.06497005358525158 2.0766298751627347e-06 194825.30100464163 6.227177263644003 346 None None PERL_20200711 7330746.479729996 789.4990417910054 0.020823859335177962 2.24294895303961e-06 1437723.004953474 154.85790874863292 11906 482 938177 NULS_20191011 26873186.503123645 3138.2450329980375 0.3607782859665207 4.214529301539034e-05 5821432.5136357425 680.0464124364353 21242 5281 374775 ETH_20190826 20024597154.008755 1983541.6761338676 186.32236897942659 0.018456210690495634 6925363690.298179 685993.7004695598 447881 445020 27728 OST_20190207 9677787.100040428 2840.9440403868975 0.01819724652060319 5.341944071323704e-06 1005899.66611411 295.2897160381299 17291 734 739768 ZRX_20190909 96692319.4930006 9308.845065900825 0.16108591890593135 1.5499230667405975e-05 87101585.02651112 8380.667702003975 151112 15894 155880 DASH_20190930 624191770.921333 77521.15452991586 68.8269003553034 0.008547919128096026 236063043.8238037 29317.72021290188 318547 31007 76311 WTC_20190520 63696644.287260115 7783.049604117528 2.220498804846405 0.0002714225551392451 6102620.424875308 745.9534880853838 55594 20210 976085 QTUM_20190220 173020304.17595366 44208.64234253464 2.1281203950835463 0.000543630519499072 296705747.3918539 75793.78495954958 174413 15194 244662 XZC_20200109 29041745.30411106 3608.853583360803 3.150743972913987 0.0003920496741041181 20506250.168433376 2551.609640372164 62480 4072 128179 DNT_20210106 37159271.93710907 1093.6577246452975 0.04932207328250739 1.4474100499500542e-06 7081669.104505109 207.81930584245734 60311 6172 301062 NXS_20191026 16658431.735120092 1924.0090255795576 0.2789988534365476 3.2223700326277804e-05 266378.9376106266 30.766130229812102 22114 3537 388787 QTUM_20190712 341165507.5609109 30122.255265126154 3.565795378814863 0.00031421495670704626 635445215.1710162 55994.90984842271 179024 15369 346886 AE_20200320 36693304.52326974 5929.844995290394 0.10444783692198994 1.692004858575905e-05 16822845.980632007 2725.2203562207756 25401 6340 484575 GVT_20200711 5086283.118735929 547.8427769645266 1.1450745570409175 0.00012326400148412239 229125.5307136244 24.66470814871604 20328 5527 240600 MBOX_20211120 580039295.7936926 9973.466466555199 6.87439704733978 0.00011785145660651302 659164236.1546172 11300.404215639934 195528 7518 6825 GO_20210511 61305341.5307574 1097.1794238696548 0.056866906577099974 1.0177449181032428e-06 35497498.54431223 635.2974150241428 20750 1019 107802 BTG_20210602 1013895088.6772168 27652.679149831903 57.920473235244664 0.00157899271872591 11091628.843824366 302.3732404961069 None None 157405 CAKE_20211104 4504345483.963351 71611.82851424284 18.984908203806505 0.00030103517019463796 210391031.18012968 3336.076171600183 1148556 None 550 QLC_20200511 2263748.5800008243 258.5321216264251 0.009436609270422147 1.0772064206388797e-06 55837.334577237954 6.373935128000835 24327 5652 940522 NEBL_20190930 5667591.9421741525 703.0483484008903 0.36336014534482125 4.508943059338518e-05 57192.59670049511 7.0970403673062 40352 6107 485969 COS_20200316 11083556.456784604 2051.6023812313992 0.0055405636525622925 1.0310701682531775e-06 3797667.113709517 706.7261591862033 10359 None 117572 OG_20210729 5406272.41552251 135.22250702494384 4.211470242820349 0.00010523064593802131 1190195.303402427 29.739025411126303 696270 None 316582 WAN_20190819 23294221.380901664 2260.3883753815535 0.21955691772148983 2.129423740192251e-05 2361364.7397750923 229.02244157519493 107833 16853 605813 BQX_20190130 14277767.878081467 4180.641094904923 0.15302710371690126 4.4801002109644884e-05 5263670.419148984 1541.0192300903088 60798 5831 334128 NKN_20201201 14380852.009258911 730.6907393490022 0.02207651384481701 1.1238427779642623e-06 726950.5112096997 37.006661817316534 13715 1025 371561 APPC_20210120 3855083.938503009 106.45627932337001 0.034949689668360456 9.665484612857382e-07 214975.2451694924 5.9452313999 24243 3117 531818 SYS_20200530 16231728.26698615 1721.0302291103485 0.02763882606122766 2.9343772708098687e-06 480778.5524920975 51.04361717825493 57636 4469 1010431 HBAR_20211002 3819327305.129705 79305.03726214207 0.36634332732654706 7.605644457660859e-06 165964938.03045675 3445.59383764133 145006 30647 43626 LSK_20190905 148220279.94861892 14036.428666581458 1.0986562524602745 0.00010400090526079174 2592571.8331322847 245.41781562303288 181934 30946 161832 HBAR_20200107 21532418.920176417 2775.185426859516 0.011076408669331461 1.4282330467148958e-06 1795981.6314126141 231.58050536530513 35079 6143 146335 OM_20210513 81015444.6883592 1570.7306443819853 0.2682136611772772 5.321299209126755e-06 13139640.90402217 260.68754456384227 40072 None 68115 NAV_20200612 10485536.800659334 1130.0939876376651 0.15267876627983962 1.6435454371905573e-05 1784020.092684529 192.04491591278352 48487 13852 1041547 SUN_20210508 0.0 0.0 0.0004595879978126682 7.9e-09 7.387349593584043 0.000126983433133739 51 None None THETA_20210610 9388682125.181925 250125.2488290724 9.343839900668593 0.00024947740144155395 733893737.50848 19594.717430330176 171885 19207 16282 POA_20200520 2167208.930502193 222.2200033120281 0.009941428095599916 1.0191076342197725e-06 67789.33357904758 6.949165321595505 17191 None 556929 MITH_20200629 3399830.295467985 372.7950201101726 0.005502317010895375 6.031181917784678e-07 3867514.376442232 423.9247343943012 98 2092 706038 TWT_20210814 180387556.67118546 3781.651773107254 0.5204205003144995 1.0907464163166635e-05 9661832.558273623 202.5018082804183 1027337 43125 3506 EOS_20190225 3689454623.6107435 979496.7118424483 3.5472897274658264 0.000945507106363615 3565064595.9785075 950244.88246442 657 62986 78671 TKO_20210814 146227957.14947596 3065.5960924454557 1.9571001562065125 4.099568319861424e-05 16178457.216311924 338.89267474580515 309530 None 21500 RSR_20210218 538105408.3617504 10313.05301053247 0.05706077461648654 1.0943655447642198e-06 340943578.5441349 6538.938659264368 57737 None 119341 CTK_20210519 87633026.85920121 2055.9392073250665 1.9860964031492767 4.642268556526143e-05 7694355.6855160855 179.8465845110077 50888 None 200657 XZC_20200317 28194755.90421731 5586.167026333768 2.8960668423279743 0.0005756813358563053 67244350.95596197 13366.859224837748 63689 4092 90239 WAN_20190708 41591194.54343812 3636.876257144552 0.3914810008990328 3.4217487259954486e-05 7904765.069203412 690.9178157490229 108516 16966 459878 MATIC_20200312 52267284.04313416 6587.956788087581 0.019013712954270647 2.3952260618284397e-06 70274599.55873571 8852.745003170681 32593 1578 153243 HARD_20210729 50904796.54763786 1273.0325270721946 0.6968180613870956 1.7409353173209453e-05 15269610.022656484 381.4970484152386 35154 None None TOMO_20210519 154475413.90593377 3624.0259166252513 1.9155937505147282 4.4776869698508976e-05 11181713.659953777 261.37177333307375 48218 2157 82082 DLT_20200423 2480047.920652726 348.6030066375113 0.030240874750902917 4.250748452771261e-06 43252.29715325388 6.0796731813291 None 2576 None C98_20211011 609583653.6834544 11142.192458805019 3.2953313597896643 6.022842391499099e-05 38095893.15616494 696.2746236773461 None None 25592 DGB_20210727 613881909.4588659 16447.87154682408 0.04226556890989163 1.1324305824488882e-06 38925061.901049785 1042.9276514517371 222794 40460 89900 XRP_20210408 42704151358.50662 758148.9944538194 0.9221401420253109 1.641022395644782e-05 18282720202.98182 325355.6801085119 1349384 282223 11412 STPT_20210219 46497113.82526638 899.5878092898618 0.04542684920708612 8.786548505511404e-07 21762749.7345868 420.93928919557135 20421 None 1294175 OMG_20190601 318239866.7245953 37101.10730474589 2.265360015150367 0.00026409212663867774 159625034.27922627 18608.83677898523 289648 39377 None RVN_20210421 1568916233.5763865 27770.630561048198 0.18135353585134106 3.2164047040216247e-06 306793631.8006994 5441.153798603211 58173 32693 40524 BAL_20201224 125529851.2370849 5369.106820914954 11.65799608737455 0.0005000107552299107 39092867.550535835 1676.690752128084 None None 83230 DUSK_20210111 17438497.862722576 452.3600787029266 0.05787305088249536 1.508990539071139e-06 1785026.2773978037 46.543040733340355 None 13343 1115146 XVG_20190227 95076925.33988832 25015.256541832394 0.006036291992203923 1.588181277492782e-06 1019393.4303972097 268.20795989441194 304404 53418 414559 COTI_20210616 138269703.59197283 3423.9391139885574 0.20616009672302937 5.107754359238753e-06 24862060.208837576 615.9741794356704 120040 5268 80399 CDT_20201106 4402793.631949978 283.1163206229537 0.006524543296522133 4.19717194433466e-07 1368163.8303259276 88.01257931659968 19198 293 402907 TOMO_20200518 27578944.998935983 2831.7612891638487 0.3912891390845353 4.001887363082046e-05 13325413.26482279 1362.8490450081038 23006 1548 201638 ADX_20190902 7129043.81855314 732.954132864106 0.07745141126175203 7.96296578129043e-06 119961.36768820493 12.333516593385912 53751 3840 517237 WBTC_20200901 0.0 0.0 11847.280045754454 1.014946003126265 48794141.68278315 4180.150961710782 None None 209926 WAVES_20200314 86894067.87080997 15651.95245643373 0.873303646018147 0.00015734965200276822 50843362.37810966 9160.829012134862 141213 56867 51296 SNT_20200229 53655048.72059244 6141.855895293551 0.014752630100237184 1.6931572215181145e-06 48637647.22269288 5582.1357326263405 110604 5616 210180 ZRX_20200430 138150141.76942918 15814.746627278344 0.21267521920973365 2.425764337037909e-05 53246280.622766525 6073.247701098793 152413 15921 132812 BRD_20190706 21107451.905604817 1918.6267008867057 0.3516493620248619 3.1964249325212095e-05 316451.27886186505 28.7648113978598 168 None None RCN_20190723 9466759.914586147 914.7450976643382 0.018654269428183927 1.8037297632303824e-06 644932.1459238686 62.36016432299235 None 1122 2034448 BAKE_20220112 176220399.56380886 4110.693995183307 0.9135617728030654 2.1355109511180206e-05 11914726.109567448 278.51458811026686 429183 None 31382 MATIC_20210110 164076639.47777465 4056.2869017355933 0.03358631445863765 8.337523416575408e-07 96516758.36425988 2395.948307888881 72239 2665 49015 MKR_20201231 519426747.35028076 17987.534328347065 576.3993405269412 0.01998734899362865 41671573.0823247 1445.0125386134005 79080 18371 39498 CVC_20200410 14390875.140670935 1973.6647761734826 0.02147891812040438 2.945768322646989e-06 9299437.373147989 1275.3895647209224 86228 8049 115940 HOT_20200518 95849399.88485463 9911.999757591984 0.0005399333529726105 5.569635659779599e-08 7391719.349901413 762.4863967309349 25200 7000 551083 AGLD_20211104 226731799.25297663 3595.836374403268 2.9501668436570174 4.6779471796698064e-05 50192740.72626083 795.8837664559121 None None 59806 PPT_20190410 57952825.7737826 11204.615142921639 1.60058501000444 0.00030936752340164544 5701031.229939597 1101.918299507851 24074 None 635728 LSK_20190213 150225802.4314866 41343.696035539906 1.1596200054226529 0.0003191291052847361 2546918.5846174085 700.9156838802345 182995 30481 183991 HNT_20210523 1018057115.529711 27083.67341182831 12.124724156879722 0.0003228539713745657 25694864.717967566 684.1961112509895 None 30834 4657 AION_20190221 33861173.95636657 8528.05989314988 0.11964691784913511 3.013351169581528e-05 1384819.336849717 348.77178981049497 67100 72404 212982 BCPT_20190719 4966906.644383506 465.66209508301785 0.04286519822767525 4.000016879063856e-06 211590.33249717357 19.744803160363915 10979 2852 908173 PNT_20200725 37134287.6879347 3893.3744348795885 1.2854471400963614 0.0001347761492403594 5321929.330107903 557.9919385774975 4011 69 538447 AION_20200105 21542749.646012504 2929.7031055945936 0.05661762541753027 7.699639132637912e-06 3420922.8869085447 465.2238862992335 1154 72541 317810 IOST_20190903 85918889.69067112 8319.722633993431 0.007151584454870327 6.925042824961055e-07 28708817.280127857 2779.9404505874945 196302 50747 94352 ARPA_20210821 74418944.70474678 1514.671170732778 0.0757657692307426 1.5411365415798077e-06 37543455.48818025 763.6640099805458 None None 746780 HC_20200701 49593514.021227516 5425.711922700207 1.1101560894967641 0.00012145513883655508 24164888.997128114 2643.7272883370442 12689 845 560022 WAVES_20190426 218985349.7804871 42194.49680723802 2.190015201309679 0.00042168007383109127 9552672.861618577 1839.3350855111164 140094 56753 40445 LOOM_20200105 14606756.20389136 1987.663196264532 0.01764460897544482 2.39955527533241e-06 3894277.677402323 529.5971453617557 21272 None 304548 WNXM_20210304 76976795.35980105 1513.5764407379702 47.08563166135251 0.0009284552107773332 28151200.450869564 555.097761801934 22920 None 104345 ARK_20210420 308816889.7522948 5518.25247270178 1.9703211706404182 3.5207691135754527e-05 8523175.736641662 152.30072300035255 71916 22707 73958 VET_20200721 1039747711.6767467 113525.18679393125 0.0161663435259949 1.7651273938403386e-06 197523801.99847806 21566.699562110905 128273 65114 114673 GO_20200612 9418474.748299617 1015.4396027846246 0.00950908600564255 1.0225245334706629e-06 903676.9959723299 97.17357674191503 10895 678 1064861 OXT_20201224 0.0 0.0 0.2264647617429684 9.713060092265358e-06 17087625.480808023 732.8872353111972 53931 1792 140825 VIA_20210616 15881329.420386039 395.7780772425403 0.6892931879569859 1.7068365502594035e-05 222539.36520298285 5.510548037269736 38151 2293 822358 WRX_20210729 529395147.8866684 13239.169756886036 1.172021624424852 2.928187358639088e-05 93149764.40320098 2327.26049504005 298219 None 1290 DUSK_20190819 17393498.617429987 1685.8201729572586 0.2172412480381051 2.1055549915302904e-05 18718831.004376493 1814.2746100392305 None 13292 200786 LUN_20200701 3722606.070370487 407.2564548670171 1.3770313900094873 0.00015064847355176944 2228002.3460146976 243.7454621093009 28455 2121 1752609 DIA_20201111 30941233.292384878 2024.5202790442847 1.2105105872414297 7.924161596058547e-05 13783013.582923234 902.2542063068344 16273 175 89819 LINK_20210511 19970909380.19363 357687.0352476777 46.81024392895702 0.0008377611996403888 3468330866.1089735 62072.58888783113 282238 54691 24451 RVN_20191108 140319434.286427 15220.393792774792 0.02920674799658321 3.168044456385986e-06 10186979.452166937 1104.9776505255186 None 7146 254605 XEM_20190622 794044375.225607 78458.66148755579 0.08823696773979205 8.717544980967966e-06 52833412.97294797 5219.781072350072 216550 18469 184681 KAVA_20200217 14272383.147613153 1431.7230271593362 1.043858506489391 0.00010492689272221107 3022654.739840276 303.8321454984731 None None 362040 ENG_20190421 41581333.29354077 7830.534760105993 0.5371327626320886 0.00010115545908353001 4074468.63983203 767.3237874450087 61990 3365 361311 STPT_20200502 8240043.891895685 932.3988982744278 0.01173006055356984 1.3282014770195502e-06 1292416.5548791399 146.341066977065 11234 None 1326696 LRC_20211011 479056099.54576325 8755.016161669724 0.3841465382827494 7.0215021411111295e-06 27620882.94786716 504.8596549243934 97884 12772 270613 SKY_20210105 9929791.111108968 317.38469860420696 0.5225829647224874 1.6703255375491603e-05 439215.9635294053 14.038606114380618 17203 3816 758913 HOT_20190915 143590213.28616014 13868.492549054927 0.0008071908671824286 7.797783987625415e-08 5380462.442108949 519.7740160706617 24385 6656 436903 GRT_20201229 471107660.7265802 17360.70392504718 0.38201806342754874 1.4074401352778561e-05 402796608.965864 14839.929523905734 None 2130 70672 PERP_20210508 178339381.38240117 3112.0822905830396 8.04680777009471 0.00014039049509282568 15603651.795997111 272.23272426580036 18235 None 273188 AST_20210428 68305830.79823364 1239.8799360011017 0.3952395375443583 7.172405391156871e-06 3011612.586915605 54.65168411205601 42164 3648 173984 PPT_20210204 64340803.40796865 1716.8496213804224 1.7803053231840336 4.7462759321643045e-05 7328532.227651999 195.3779257817763 23593 None 736934 XMR_20190616 1604386537.4948483 181935.7274815257 94.54934438931524 0.010723017334611047 412588964.34202665 46792.483282504254 318112 158391 113923 BCD_20190225 137003713.02499464 36372.85983220477 0.7220197983815508 0.00019273835156660577 2934139.6274510603 783.2489307479113 20526 None 2421830 DEGO_20211221 33107735.914552838 701.7520822894422 6.08428789160843 0.00012905287925163276 7711252.21757538 163.56216521019397 None None 201352 RVN_20191220 116559979.71500866 16317.676369633982 0.02276702401600818 3.1861409264436355e-06 10104085.02149739 1414.0205056498846 29100 7252 211269 GTO_20190131 14896490.016172566 4307.369047656482 0.025134139355172593 7.267619001551305e-06 3903856.7971424507 1128.8130234866708 16259 None 813279 VIA_20201229 6801322.8080298705 250.83460938914672 0.2905650715238206 1.0700978218811339e-05 230726.8923020996 8.497247917895002 37888 2133 4839859 DASH_20211002 1828200849.3069081 37966.04005946171 176.68089146567996 0.003668067473091251 311037879.08021 6457.449459807755 408270 42546 70180 NEO_20190816 698148098.4759357 67841.3352494177 9.927140247742065 0.0009635725012089823 297809980.1364683 28906.764716088677 324388 98214 189804 NCASH_20191020 2556690.2253965437 321.73315516299044 0.0008814258144763524 1.1088272763221396e-07 236040.24375174075 29.69369132184391 59225 58747 890063 VITE_20210131 11810825.459936187 345.2895789098575 0.020229843728279573 5.921311250850661e-07 1984698.936585743 58.09249097820857 None None 688715 ARDR_20210207 104078683.82338221 2653.6609401140227 0.10398989865567472 2.643461437829787e-06 24192820.64976235 614.9903912469006 64906 6346 None NU_20211007 177023446.04690766 3189.0824272257905 0.3151426432637643 5.680825465845948e-06 26478164.223260958 477.30078053085646 None 7563 497305 FTM_20210805 624639136.2814997 15691.294346639526 0.24521948799159282 6.166729274089938e-06 38102610.67866852 958.1966205697843 104281 9386 45171 DLT_20211028 7457098.820638634 127.46004626394462 0.09095003163130704 1.5542227301448845e-06 279551.02572241833 4.777178749914151 15479 2599 None WRX_20210718 411134051.7390468 13008.248232176424 0.9486364769154735 3.007121928851848e-05 7461027.456278288 236.5101893244961 293222 None 1290 DGB_20210318 987585710.737535 16755.133046648385 0.0698793353419158 1.1855553883933474e-06 99439735.58732589 1687.0697720453131 194791 30015 135732 MDT_20210202 16158496.269728098 484.0025918811683 0.026972703758583846 8.07535285608913e-07 3706970.4573797905 110.98292087575136 13840 76 1222000 DCR_20210930 1340888994.5005457 32280.77343456592 100.61433504618982 0.0024194620340946657 14360098.786555666 345.31574257256926 48647 11937 195580 CAKE_20211221 3048222111.0846395 64627.823961301205 12.143423440795553 0.00025766006038029007 142728041.50128973 3028.4141840625457 None None 637 THETA_20200721 237301162.7721222 25901.18707760957 0.23677377848297929 2.5842073344282444e-05 12682031.658515189 1384.1481703491106 71662 4293 67592 LIT_20211111 126967620.25915523 1957.8880004763794 4.5948022708944265 7.075219697569398e-05 30551370.23632167 470.4395178286554 64133 None 295730 LRC_20191015 30307791.843906205 3631.251450856603 0.03134176142440366 3.7548048662095395e-06 3761343.7989619826 450.6164094795527 34055 2438 547481 DOCK_20190207 4056403.552008955 1190.7889955228445 0.007892510834432131 2.317418016275447e-06 351344.2487737736 103.16254346728284 106 15379 158551 BNB_20190914 3234398477.2197804 312353.1601770877 20.79882402829103 0.0020085002480443957 172255194.5480232 16634.334734792592 1034824 56311 1071 FUN_20211125 218092121.33063915 3812.305027034854 0.02058705275645526 3.599540322179652e-07 6029410.579390919 105.42114384337495 None 523 165910 DCR_20210422 2662552085.3983755 49226.26619655591 207.2779994798018 0.0038322337561165994 31234360.603096038 577.4726278442637 44202 10940 225224 DNT_20210115 95028134.09792016 2433.131917723594 0.12577856656563174 3.2065761109715014e-06 22737257.80909865 579.6595533755896 None 6407 301062 XLM_20210114 6717543909.768529 179746.49020733952 0.3040217778468776 8.134944594125436e-06 1955018523.7142541 52311.93463684858 324593 120203 34006 YFII_20210722 102244611.40405306 3177.1736198325893 2583.2879993178544 0.07998696084809219 53712203.5298252 1663.1037352162698 17567 None 545530 STEEM_20200301 62446383.392776355 7281.742314931151 0.18329830788027004 2.139767039693208e-05 7090689.834870568 827.7449242605284 10659 3822 211376 SC_20210427 1743347766.6329007 32362.35636238539 0.03729241543490113 6.918030822022152e-07 397492744.54424614 7373.797127964347 132393 41682 54045 CELR_20190923 18443838.06012786 1834.7423471778513 0.005667962712888944 5.642638220450528e-07 3495866.9511109623 348.02473959632556 None None 536359 QLC_20190520 9174482.125537772 1121.5008909944904 0.038197927944963864 4.673028242547903e-06 1827738.5647420792 223.60045145223089 24991 5803 940522 ICP_20210804 5295777338.444029 137854.5177160378 38.62631307210061 0.0010056558959237862 205908463.4130701 5360.9325815134025 None 21936 21737 PAXG_20201030 69485652.36965334 5161.658242872773 1873.8973811148146 0.1393567867809329 1946686.5715958811 144.76992615561525 8367 None 84305 NXS_20200707 11992891.896481467 1284.1631954533866 0.2008594291293694 2.1507430282381566e-05 512806.6320336379 54.90980898737254 23353 3530 474450 AION_20200625 45024103.32089599 4839.306949762885 0.10458409240650772 1.1251729473899527e-05 2186105.559420146 235.1932095024109 67475 72565 377141 LSK_20211011 464280227.66890544 8483.840297347075 3.202283114503962 5.853192858498107e-05 19695797.961798195 360.00347205489453 198299 33175 199909 THETA_20210513 9702553369.804508 188113.4883024771 9.674505769185133 0.00018828549890718898 512324757.2505119 9970.878598126263 157194 16697 19506 UTK_20211011 179422164.25076345 3278.599640028994 0.40307757035019165 7.3675270793787e-06 36425407.5319448 665.7903989444362 79825 4153 197443 STX_20210727 1211197697.046627 32333.21243179723 1.1501039613717359 3.073056199842037e-05 48779324.66150825 1303.3744001400269 69606 None 61461 ICX_20190920 106467379.89786759 10388.447593196652 0.21250865316105322 2.072187050467994e-05 18552618.881501697 1809.0791140340066 113501 26283 187595 AION_20210110 43049188.45385506 1063.8448158006634 0.08921583617611054 2.205689019342156e-06 2272621.9604491396 56.186183060410166 None 72535 529270 DODO_20210809 198250802.17467904 4506.766943940911 1.4141745020976833 3.214875964119003e-05 68977125.23913676 1568.0731174009636 None 1050 29473 LINK_20190830 649443900.1934278 68436.98487274988 1.7804691434746303 0.00018772742477438098 79250128.19481796 8355.900203931124 32062 10488 91625 NEO_20200407 551545819.7218344 75620.79040410309 7.820017293659924 0.0010721790784645271 514977588.6950358 70607.03010523798 321548 99289 235469 MDA_20190801 13109266.054316051 1304.1393393344556 0.6680191375581325 6.641778191852027e-05 2118038.8999363673 210.5859515718954 None 364 2972990 NXS_20200518 9777229.246197855 1012.1722812857403 0.1637453108687761 1.6866932847439473e-05 96112.85507497362 9.900308373559588 23561 3522 668599 POA_20200523 2097118.2545972806 229.08838908685888 0.009525098400355975 1.0405180745758195e-06 243559.7959507125 26.6063781469432 17185 None 556929 IOST_20190513 171129253.97455326 24661.523195592283 0.012653518461082282 1.820234491411761e-06 46108185.34583369 6632.756696173048 197963 49516 105349 ARK_20210616 177449473.11755535 4393.776170900038 1.100334021866501 2.7262555237752864e-05 1689052.8782006626 41.84901718599939 72615 23323 114169 ONG_20190826 0.0 0.0 0.19503707985451288 1.9309454808571427e-05 8435171.755076079 835.1159068248883 81476 16282 248344 STORM_20190807 11400647.1928555 997.6901153728292 0.0018411983315686042 1.6078531433861936e-07 196249.10197620618 17.13773742290639 26643 2554 2770937 NEBL_20210110 11152119.546093281 275.5946160754663 0.6379752819745681 1.5831719365786287e-05 3470944.0905939983 86.13345113707558 None 5885 781583 MANA_20210813 1061535114.4030532 23878.88170911605 0.8010336789912629 1.801599669255344e-05 204219823.78316906 4593.094855218379 156729 35284 19440 POND_20210429 130638194.80113184 2386.613298981328 0.17194506947927016 3.140226096280093e-06 54309241.075623065 991.8475511471363 15853 439 75680 GRS_20210111 30729041.49020956 798.9487338517783 0.4006461116849476 1.041671617890559e-05 17519196.596027903 455.49549415514247 37593 106778 4269637 BNT_20200207 20901145.867663566 2146.0447080625827 0.2996482414079654 3.0767502998641117e-05 19176370.240098704 1969.0054782000302 752 5042 109575 DLT_20210106 3373806.1483347733 99.28740925117957 0.04096762418329996 1.2011665361722238e-06 255275.59018706132 7.484654103015 None 2534 None BAT_20190819 236357613.84128582 22908.498525366125 0.18440107180096096 1.7871781940101155e-05 15496860.471482225 1501.9246276477456 None 29594 32625 RLC_20210427 204142904.36333725 3789.348168348388 2.887918761997067 5.357312143502011e-05 58843907.13527677 1091.5998829860541 36967 4269 302860 SNGLS_20210418 34478064.88952536 569.6001143423413 0.038739398752275694 6.400001284745407e-07 2503809.2934033666 41.364562204512026 9464 2129 958581 CND_20200625 14005476.843480136 1505.344835861305 0.007255253628151695 7.802796442350276e-07 43402.29030280616 4.667779428833898 34326 5936 350582 BRD_20210519 21026768.77090063 493.54430869522866 0.2592159884776196 6.050213964251687e-06 475667.85790398024 11.102294781808268 None None None BAT_20200905 389788923.0551329 37174.968809653205 0.26670465014836725 2.543616933222254e-05 148034698.4772528 14118.372722099917 122074 45283 16252 XLM_20201208 3669332920.8642 191040.85844587162 0.1684091045475503 8.776565735835959e-06 297977837.83128834 15528.982762390744 None 113651 47328 ONE_20190807 31753230.057551816 2780.5634691786613 0.012378408925917838 1.0809625101441782e-06 33348754.49855862 2912.2283476566377 69333 None 151929 ARDR_20200425 35663806.490653776 4756.243875663722 0.03570596276905215 4.76380322172209e-06 1628330.6501142061 217.24793831259575 64160 6346 1277377 LINK_20210708 8673287032.920568 255266.62718617579 19.859605866907476 0.0005845090739098001 987570560.1309965 29066.234113166684 394193 62103 24345 TCT_20200407 3258754.514283615 448.0520966065743 0.005680531348562115 7.795801445877126e-07 677438.2539886541 92.969720539858 None None 430478 ONE_20210427 1275577402.986031 23678.97631977897 0.13614667986040765 2.525625966047806e-06 385729131.26055187 7155.573024414371 135403 16822 31277 SNX_20211207 1162395474.6395779 23034.13217360019 6.04810441030957 0.00011974742874551909 81768456.7507039 1618.9473236763777 177052 8488 46165 FIL_20210729 4531346691.046742 113268.64355081184 49.4628328473667 0.001236301005134164 430172399.25166243 10751.96342305975 96570 None 29585 QTUM_20200314 119516773.94503963 21638.756558036166 1.2547756928026301 0.0002260823248640411 695841459.8088138 125374.96213286153 None 15173 105986 SYS_20210814 133595777.20998053 2804.1581861301347 0.21677080948371008 4.543957609115502e-06 1352775.4968526359 28.356929270084546 74398 5475 426282 POLY_20210809 239102536.7301072 5435.095171651712 0.27819197676973684 6.3241480579900895e-06 11322614.512101782 257.39739660913386 48016 5817 197469 DOGE_20210301 6201387146.83418 137392.4740951583 0.04823567257841363 1.06866709629239e-06 1576893240.5192816 34936.25838365494 627566 1190393 12918 STORJ_20190821 21480190.87017805 1996.2537823857488 0.14929909623277923 1.3887442025117583e-05 956832.2336791947 89.0022277982561 83646 7778 176136 PERL_20200425 4772361.209536036 636.5843636713994 0.013545836605315087 1.8072527683597883e-06 1912999.5338228722 255.22777249622314 11644 478 526137 RCN_20210318 73014843.33660671 1240.662249122762 0.14218837282978122 2.4123324978752982e-06 3925088.6340678255 66.59207557243799 None 1144 1175923 KNC_20200305 121676655.2597 13899.002117223525 0.6841346605965165 7.811156490863418e-05 110016396.02198435 12561.200818845036 103084 7078 154836 NANO_20190701 164631412.87867442 15174.406175521077 1.230176067063723 0.00011405211079500193 8476475.210882446 785.8711576223293 98587 46587 329357 ELF_20201129 48447420.30462304 2736.87428193592 0.10510662287712526 5.934180416711398e-06 11124224.242089834 628.0589352175102 82274 33336 429697 DGB_20211111 806500387.456405 12444.374477392497 0.05502697343573098 8.471383573695252e-07 67509530.19276641 1039.3068879407613 231745 43383 126395 NKN_20210427 422613963.6369406 7845.1264611157685 0.6541431602986656 1.2134860378944355e-05 97180835.92443776 1802.7794938859004 24441 2563 154711 DOGE_20210813 34729751177.491035 781157.2711181963 0.2652516117278096 5.966349427952811e-06 4540100217.999598 102121.24315499638 2024730 2132772 15471 MITH_20210418 86977367.65510176 1442.8218463272585 0.14059121965720117 2.3361644671261174e-06 94056989.3547428 1562.9183454783035 None 2605 258183 NAS_20210809 18799194.306653846 427.32884227978576 0.4127962023984591 9.384192595764546e-06 4876566.971405468 110.86013727820078 25298 4926 715519 1INCH_20211207 1065852556.7532563 21116.71895215661 2.666336397979355 5.2791239397977634e-05 150806019.77744153 2985.8335575212395 492779 None 3880 ONT_20200511 296446294.4643565 33859.89054965817 0.4658054766280065 5.317048974955255e-05 163443509.13153824 18656.6536096129 84710 16474 182484 SC_20200903 185332253.62187216 16245.37571900782 0.004141675189739529 3.6295789809503224e-07 8136293.644081324 713.0284013231495 107017 30103 136380 FTM_20190906 39820079.71149912 3767.78017262782 0.019146336480961323 1.8114627313776466e-06 5746578.958331829 543.6921902155156 18821 2131 342679 VITE_20200901 16725827.607244765 1431.0099957035552 0.031218949425899103 2.6778262969333364e-06 2812412.164455874 241.23653711253118 None None 366677 ARK_20190324 87829167.77144115 21943.437275114728 0.6257315218315022 0.00015638224489737283 518547.9319512396 129.5950209573451 63282 21748 175186 WABI_20210125 5678647.592888401 176.3683174056324 0.09602814136721037 2.9763067877842144e-06 570099.9659991933 17.66974112339045 40809 7436 977058 MBL_20201228 5442336.369564897 205.6539957422436 0.0015357318142303806 5.8396597678064e-08 4184865.2329262067 159.13057806032313 None None 994623 HARD_20210422 89511242.89526355 1651.986171109905 1.458482787668269 2.696810492403285e-05 14759433.67616877 272.90960124018676 29292 None None TRX_20200625 1055823301.7924414 113478.38352249269 0.01594387393303249 1.7153327462264607e-06 503498966.12450856 54169.28582803146 508870 73142 60096 BLZ_20200807 28986817.880109288 2463.7513172105423 0.12096304473317837 1.0271004647996644e-05 6221457.736805151 528.265649008696 38707 None 329080 GVT_20210212 17095991.147773404 358.6711084191121 3.8585598804481975 8.084000793796235e-05 1403136.504390129 29.396865583894254 21887 5478 282943 CMT_20191022 12925471.296929952 1574.0549764447808 0.016157013644129636 1.967568620706604e-06 2262693.34942633 275.54624453946207 290744 1652 883595 IRIS_20210117 50828301.43837658 1401.424114242647 0.05429989490004299 1.500202355101772e-06 10651246.284157902 294.2735854218022 11384 None 857234 DREP_20210805 0.0 0.0 0.5286972071241476 1.3293647755816612e-05 2891145.907471166 72.69543849806546 4090 None 292177 JUV_20210110 0.0 0.0 10.749727719843147 0.00026685305616482187 3692451.5829689647 91.66204161962533 None None 134536 JUV_20210722 20344447.279493064 632.189055393698 9.230058742035727 0.00028681524289815363 10555536.08700585 328.0031830054295 None None 42486 POND_20211225 52192173.792661764 1027.209470905664 0.06488205959507087 1.275931154148542e-06 12003361.649147863 236.05081556047125 None 788 3495821 DOT_20201228 4917775037.589005 185831.96957421757 5.170288678373178 0.00019660155831421392 599564761.8727797 22798.604454629476 None 6620 42393 CND_20191102 13934962.148431104 1508.5655835539865 0.007809626096517281 8.454513922707324e-07 297593.8070230446 32.21679186292706 35468 6060 432083 SC_20210806 787502867.7000483 19211.764638227145 0.016216504358849883 3.9633749410014833e-07 60435750.29056707 1477.0725733597292 139561 47731 83896 ONG_20200713 0.0 0.0 0.18865971607021267 2.0304983234562966e-05 9969328.06142168 1072.9743655062478 86947 16540 150808 FET_20210304 247234566.7068389 4863.664452312053 0.3579980818113 7.0655201189646035e-06 47106816.62986287 929.7093407726934 32875 1135 237569 FTM_20200412 7003353.754258023 1017.779764796026 0.0033093381299831837 4.808327960684275e-07 2339507.926205394 339.92058030869885 None 2334 311485 MTL_20191118 19251743.909734163 2264.9573089249075 0.3538303365629365 4.158017636269352e-05 12060472.897646978 1417.279804136998 34637 None 268232 FUN_20200129 17764932.943678714 1901.6794431374908 0.0029268711374956543 3.130210607526817e-07 317112.7779311683 33.91436570425071 35132 17111 393134 GLM_20210916 525378388.5989562 10901.45679038815 0.5255181041752698 1.0903297262996767e-05 8365952.326906162 173.57435335452317 159976 21262 160186 MITH_20190110 31744096.30833493 7980.276828836701 0.06483369556567167 1.630226163092955e-05 7635656.569723228 1919.9656912579785 None 1961 480293 ADX_20210125 50289668.163590856 1561.8245148849187 0.4423280468715664 1.3710538994224715e-05 11576147.724463297 358.8179087934797 None 3744 10698 FET_20191011 14924940.128254661 1743.0639076915418 0.04388005362869613 5.124693103656277e-06 5663028.042587786 661.3775133739298 16253 309 514856 EDO_20200626 0.0 0.0 0.714095153414389 7.717317831345341e-05 1958304.324206873 211.6364578045583 3054 37 None NANO_20200701 124784747.57733797 13640.350833226921 0.9362789910118182 0.00010236844924198308 6517973.679679437 712.6453377617482 98072 51973 214640 DLT_20210902 8995161.945770487 185.13638708548146 0.10968399582155651 2.25749117469198e-06 2576975.361471578 53.038723583568 15340 2596 None MTL_20190225 12849631.105944104 3411.424557718199 0.3036746916035262 8.106392595238922e-05 2208210.6023079325 589.4670372678908 32514 None 581228 STORJ_20190816 19873970.128310814 1931.2187101203142 0.13833368864795975 1.343106861336299e-05 1165676.0226872354 113.17759827475867 83736 7785 176136 SOL_20210823 20991469522.08777 425502.0371376258 73.12559205921369 0.0014838450433571654 1004789455.2040088 20388.92008579858 418436 34114 11331 RVN_20201129 107621690.16751832 6079.7258996646715 0.01425997647704996 8.049979127184501e-07 7848203.697239496 443.0433391692392 None 9953 226414 UNFI_20210421 57756920.4760409 1022.3274299531812 23.775113387660507 0.0004216647124068372 42469854.2453568 753.226223754756 17147 None 90822 AVA_20210124 66863033.60262213 2088.4263568810816 1.6913995028246065 5.277678197530164e-05 23156682.399177976 722.5585535598051 None 9101 88426 WRX_20210506 1035851919.3327963 18088.484022219738 2.3836970931298618 4.158010212857289e-05 89198639.47861479 1555.9395318893817 142005 None 2365 BCPT_20190130 2427054.3593791327 711.0369287336755 0.028932629984838445 8.475467762113097e-06 291417.39275956707 85.36723826859368 9927 1326 1583428 AE_20190920 73520349.20631708 7174.322221989363 0.22316984469706078 2.177557330932012e-05 46994800.698108055 4585.47044806909 24984 6350 366959 MDT_20201231 12210690.00158878 422.85116562983984 0.020118721127952387 6.977488205577339e-07 1299974.658060826 45.08516116149385 13505 71 1360307 IRIS_20210603 88878694.66540338 2363.3006005122365 0.08683696922623885 2.3090107510199163e-06 9431801.797149101 250.7933193104316 None None 569511 ATM_20210823 33371015.929421317 676.4296851857282 17.653342804945762 0.00035833281595040235 12886324.728206122 261.5704616473962 None None 88117 HBAR_20200105 21557864.053482033 2933.743946444601 0.011111162119030488 1.5110897059287014e-06 2621999.416715054 356.5852324990549 None 6145 146335 ADX_20200217 9391148.110813 942.0701944407579 0.10193636458293498 1.0223500928226916e-05 736014.5060932542 73.81708202974849 52567 3788 88673 SCRT_20210131 83123538.06257835 2430.117315041607 1.1856349945210727 3.4703747229870186e-05 816894.7446409855 23.91065451208412 65229 None 226191 SNGLS_20210125 5713348.539814147 177.83516325620747 0.006448991397444086 1.9981481250324821e-07 133860.82255559493 4.14752842918623 9048 2114 2274706 ZEC_20210325 1396996020.1339734 26529.528944144524 127.60199132010067 0.002425570528282982 1074695939.1174712 20428.76266914581 73799 18140 96017 CHZ_20201101 49739457.154493846 3604.6390181619763 0.00937561708248798 6.794677702714993e-07 4078775.5070006833 295.5961698090513 43862 None 330052 FET_20201129 35634416.056955025 2013.312000866793 0.0519234572823619 2.9311601460701695e-06 4300922.478871042 242.79378187104152 26039 702 294127 DOGE_20190804 351435659.5005504 32570.544442414102 0.0029107677710448307 2.697136793530443e-07 47298140.21225513 4382.677158275787 137919 138263 127721 NULS_20190908 31287978.95289783 2988.5012408777125 0.4244075870961519 4.053769668485712e-05 4940587.377171367 471.90492967184423 21307 5302 307386 CVC_20190903 14139709.068726776 1368.3442654869468 0.04125845740776962 3.989942054572469e-06 3869181.841374825 374.1732559972631 None 8156 131188 AE_20200107 47067619.236663714 6064.110204659846 0.1376229994974229 1.772328754427587e-05 6474528.398145824 833.7990665293344 25287 6354 371548 GVT_20200725 6242234.836317644 654.2545217349892 1.407184773910973 0.000147555485921773 2537223.935216453 266.04985897673055 20361 5508 229821 VIA_20210707 10316140.596755974 301.8719553181102 0.4523023789840506 1.3237144600754973e-05 259955.2880217712 7.607887769691421 38222 2298 920370 LSK_20200526 167165574.73003325 18809.681893185665 1.1977297769147424 0.00013468689451505184 3157492.0422797194 355.06573003980367 175492 31246 217591 PIVX_20210110 24951873.011332538 616.6183777442501 0.379231189901666 9.407879488322396e-06 1197248.7099192133 29.701068584021378 None 8729 359500 SNM_20190916 3517694.323119163 341.43674093994565 0.008038773334632397 7.800714702321108e-07 218552.46502545563 21.20802958590389 30968 9874 16793543 CND_20210506 70838133.86270027 1236.5491181272816 0.0362039235511184 6.31524384138072e-07 758994.9246142035 13.239554040437701 35756 6200 107330 BCPT_20200217 3623921.6708700387 363.5326110109727 0.031041816636038857 3.12027094076787e-06 9600538.463508522 965.0298993336389 10720 3154 1896885 SNT_20210430 658053544.5246303 12278.429535877554 0.16958028442409043 3.1641491643045684e-06 73330595.81551714 1368.254241674469 None 5931 113848 DOGE_20191118 322379531.01405853 37927.7783063009 0.002643558693646547 3.106563382176347e-07 76838286.51725468 9029.608754947256 138290 144056 121785 ONG_20210814 0.0 0.0 0.9253419297078057 1.9383282189413245e-05 21584409.031074706 452.1319932764218 142353 19775 173647 MFT_20190419 25013551.974144235 4739.517163791768 0.003749735532441219 7.1046958446268e-07 3549467.454285811 672.5244075196066 17796 1932 683673 ONG_20190316 0.0 0.0 0.628418307307621 0.00016012838359283498 23926173.438853595 6096.670694938848 69088 11205 260077 NULS_20210117 27052658.975836504 745.4641213674414 0.27275611243306086 7.522370006738158e-06 18550623.619735245 511.6096335242772 36938 5103 890471 EOS_20210729 3746976469.5537114 93704.86450444648 3.907708327650362 9.76304693344688e-05 1585057440.4578617 39601.19048266873 None 91764 52079 NULS_20200314 11042049.389340729 2005.6351508451187 0.13476170485561892 2.4335932032086854e-05 4049077.9864860396 731.2024345292689 22711 5189 619302 WTC_20190201 24380615.626476668 7105.401467881511 0.9207967070003964 0.0002683537763679751 1318168.30565331 384.16236724279327 54553 20444 741681 MITH_20200318 2049239.0675640735 377.47118346352767 0.0032758117713057155 6.088107344159093e-07 3389066.0774640995 629.8590858236481 94 2084 1254611 SNM_20200913 5293173.247883828 507.61772608 0.012112654700991276 1.16e-06 385015.7332822436 36.87203686 None 9582 None DGD_20190523 69707080.05143593 9093.61696469863 34.99525407165879 0.004569587116793536 1953672939.5340707 255105.41162645936 16961 3360 447437 LSK_20190813 166128264.17949572 14597.04715316144 1.2346208911529188 0.00010848087101471827 2539879.1093472987 223.16834262928018 182299 30786 180876 KEY_20190220 7248948.432582425 1851.5771745632785 0.0028267119017448285 7.220185500026414e-07 391401.6691316093 99.97455539794474 23346 2808 836734 QLC_20210212 13052121.161561158 273.724214429676 0.05446667234946465 1.1411264814459281e-06 2033666.2532245247 42.60716353456896 30013 5603 940522 NEAR_20210718 806482636.0353587 25513.972132019222 1.9408387730446686 6.152344946470547e-05 52273998.16870792 1657.055047187369 93624 None None WABI_20200530 7007699.547233658 743.5973069460703 0.11859511307935229 1.263153085058969e-05 1845874.315775694 196.6035341644379 79 7689 1504785 MITH_20190627 19953980.68594173 1535.1642800849006 0.046378126821142195 3.556410298732707e-06 11849398.781888692 908.6465269332299 75 2076 556863 ATOM_20191102 808823865.3656716 87437.38467167108 3.2797654913760788 0.00035455694271913096 150834460.4263342 16305.862503301312 28963 7123 96230 FOR_20211002 48387739.684517525 1004.7296793750896 0.08570134728350651 1.7792434810744158e-06 66444744.26054676 1379.4576377679257 36665 None 153140 QUICK_20210819 222630599.17317194 4941.805635337835 616.9336306375283 0.013712015613635145 26456112.660920065 588.0156500914852 None 2151 4739 DREP_20210506 0.0 0.0 1.497514385581623 2.6129462728631477e-05 5155969.482870046 89.96421919532273 3862 None 195950 TOMO_20200718 53358558.46597417 5829.568856972155 0.7477662474643859 8.168940817179492e-05 3145342.0513929892 343.6115651748377 27818 1589 130769 TNB_20190530 14057992.792273844 1625.594783516574 0.00538033157596658 6.222007582586319e-07 2651595.7425718633 306.6400013324794 15790 1499 532164 CDT_20190819 10774581.30755364 1044.9977830368634 0.015900908365826333 1.5411382235723624e-06 239158.6439519317 23.179589443090357 19764 297 224421 SUN_20210207 0.0 0.0 0.0004147525570292075 1.03e-08 444.6921450556355 0.011043522255489054 42 None None POA_20210513 22378961.263821956 434.07982494016363 0.07610982086852405 1.5100018687219933e-06 521098.34907287534 10.338475007676712 19657 None 277695 UNI_20210422 17489937901.702545 322787.7818766435 33.48270701781829 0.0006190409035298941 1760452654.9309895 32547.912017691175 379649 35768 1654 CDT_20200107 5004802.13102138 645.0391843951822 0.007356752639259359 9.484483098931689e-07 231297.1338859322 29.819321985431312 19320 295 203287 ADA_20190321 1657947372.4696782 410236.29605584533 0.05328881287797866 1.3185584524140143e-05 83787695.90484549 20732.114054896505 148753 71845 114541 SNM_20190712 6593480.365681186 583.8101460623736 0.01600040872537983 1.411213435214915e-06 358577.4000640533 31.62601988611469 31261 9978 14838367 KNC_20190914 34739919.715989694 3354.9124463214234 0.2071237548907053 2.0002408436534827e-05 5921094.5391189745 571.8134620786971 97788 6694 205924 SYS_20210620 86303973.2448892 2420.908149070911 0.13987564296409288 3.928692155427558e-06 1101159.200498516 30.928297602077492 72938 5438 388533 AUTO_20210909 48831421.50190086 1054.0250261477922 1394.5223053615443 0.030121272110384525 52756718.157634854 1139.5296132355468 75229 None 15658 POA_20190807 3701637.3252255428 323.78061408338993 0.016840614980268453 1.470631124758454e-06 380010.5592867154 33.184973166282965 17765 None 707962 POWR_20191022 19323178.838497087 2353.1378491310816 0.045053594501451626 5.482142880907333e-06 455291.1467939427 55.40004403102906 83500 12964 308100 SFP_20211021 202369523.7149502 3053.456800973493 1.8710301677992884 2.823753605045264e-05 43805872.496331975 661.1170280015494 398299 None 29854 NMR_20210117 149188520.272282 4113.3853377184905 28.397122509988474 0.0007845582417059987 10332634.462408323 285.4709495008327 22366 1992 2335404 GO_20210115 8007558.7407157365 205.27962433449562 0.007574262044848068 1.9309687170408868e-07 276657.31243314146 7.053051670061659 13465 687 698826 CHZ_20210603 1492854445.0837722 39668.86830775165 0.27947822238182424 7.421964245828521e-06 174948205.3833085 4646.012537795594 None None 25415 PERL_20211104 0.0 0.0 0.0987262461326436 1.5666215482120212e-06 9122216.928424207 144.7544312414461 1075 699 1341726 ELF_20211225 183317090.49312416 3605.3352362609053 0.39825850447613287 7.83354733473214e-06 12370449.558692727 243.32060980694797 94711 33562 98073 NXS_20210624 34185680.55571007 1023.328494076637 0.5078737936891473 1.5064795422314557e-05 93005.23288293571 2.758765709111817 25878 3959 492000 VITE_20201228 8031227.045154637 302.49807147086784 0.013747259671025157 5.227430888296364e-07 1128322.6496231966 42.90475928840044 None None 1446251 YFII_20210401 94205326.38424985 1601.6656249233 2371.378410360872 0.04035590043217267 109266600.03747192 1859.4889843005758 14965 None 306632 STRAX_20211104 285211294.08505505 4523.28764223047 2.1867153668079014 3.468005230118248e-05 13707033.584393958 217.38569583235875 157393 11120 245152 STEEM_20200410 59294223.56339847 8132.02250271065 0.17054874093119352 2.3390241337396527e-05 2265263.8366363407 310.6740486180263 11211 3841 214846 VET_20210219 3543884583.1666074 68563.63887607647 0.05461361783396078 1.0563470954633258e-06 738630463.1315877 14286.732417580204 171795 85406 71018 ZIL_20190627 175700869.5522714 13528.704707737772 0.019194994189133105 1.4780964027219522e-06 69404869.3006113 5344.470888284957 64777 10597 190558 NULS_20200707 64077951.71284579 6865.665591542858 0.6628775986588129 7.095831449295263e-05 68703076.64981544 7354.381154853679 27600 5175 531663 OAX_20190708 8012212.276946725 701.3888271341833 0.17931732146090437 1.5680119700212157e-05 598111.4344250445 52.30090885500444 12328 None None LRC_20211111 3843428476.54223 59293.448505170454 3.0966117826355575 4.7672231546894926e-05 7896536578.451029 121566.90815987474 129022 51184 207385 HOT_20190804 194755113.07662162 18046.140632535873 0.0010977887486084443 1.0169409375062586e-07 5038866.137695112 466.777352248479 24037 6608 379586 AUTO_20211111 37108965.98733648 571.2912509518653 1061.3771699710612 0.01633986490950565 10143893.19493997 156.16488572699558 78355 None 20194 QTUM_20211225 1022882802.1972793 20117.248203137227 9.824252336246136 0.0001932381727932415 150458233.9101181 2959.4388669376017 270828 17602 150166 BNT_20200323 11094509.567809692 1901.612386336616 0.1588694429570766 2.7246174231755352e-05 5206207.587424518 892.8667236025997 None 5023 126378 WBTC_20210610 7022653356.557393 187093.07666774956 37555.12138488933 1.000975568146632 626336734.681569 16694.068497971846 None None 224812 OST_20200523 4861602.424388069 531.0915504885475 0.007018131813684206 7.680071352199428e-07 515480.5195416915 56.40998595993543 17651 754 805326 SUN_20210421 0.0 0.0 0.0003914702761691512 7e-09 426.3655823532967 0.00762397366584091 52 None None PNT_20210115 10868247.80254799 278.26913708158276 0.38188793064683774 9.751516922869273e-06 1824300.1853787424 46.58354638226551 7486 116 1089026 GO_20210602 33061982.564393494 901.722876578181 0.03008371689633648 8.202370360021883e-07 1887563.5321869259 51.46470172691218 21858 1079 95450 BNT_20190618 48080265.37031836 5157.941636479196 0.7333622860931274 7.870942604358124e-05 5340298.643111928 573.1571544807787 794 5132 142963 ONT_20191102 587984774.4583193 63653.821585833284 0.8684494336145447 9.400721370695702e-05 143295512.8989118 15511.337083000442 81872 16287 359928 ATOM_20190922 749297213.7115813 75031.5341967858 3.064289480755041 0.00030684729867751296 143387597.85573208 14358.335706275311 28618 6961 109594 FIS_20210724 19408782.029763944 580.7436830152105 0.7207462739931079 2.1556087671688294e-05 2578932.6730901147 77.1307474023009 23920 None 421891 PERP_20210428 190418871.15273184 3456.5098138919416 6.462313925052295 0.00011733865351385588 19010406.000154927 345.17905949483173 17668 None 280871 LOOM_20210902 89931377.07701106 1848.7589327740286 0.10794995867507717 2.218670905012937e-06 3707028.9454427306 76.18972129531198 34523 None 576567 BTG_20200421 155670950.9230833 22733.149424467596 8.899517155503016 0.0013006025322766137 45589451.66379314 6662.581266261996 75203 None 211621 GRS_20210603 72808186.32013716 1934.769954852371 0.9373023283745113 2.4907424222578263e-05 1436417.4801738996 38.17067178469962 41225 106845 6465963 VITE_20210823 61680665.46291184 1250.2816336349129 0.09309062178377896 1.8889701105605285e-06 5868665.5530078625 119.08539878761147 33523 2450 442806 FET_20211021 511713964.98957956 7720.066457195067 0.7415401021613142 1.1191258953987773e-05 73828806.93000427 1114.2179555892794 82277 6068 78746 QTUM_20201129 276793977.49556136 15637.16457235023 2.691541099324462 0.00015196083791082547 280581318.6629583 15841.248828356678 None 15024 161930 RVN_20190515 164583679.50900075 20599.25412862895 0.04649939808013979 5.8175135778586934e-06 27558786.478697263 3447.8642982177703 24114 6439 171456 NCASH_20191216 2491791.0027000913 350.14077890137685 0.0008577814361081338 1.2063200563055587e-07 151583.9283947485 21.31763702719246 58663 58587 1212439 BCPT_20190616 6468101.252022916 733.5748395232594 0.055723210844511296 6.317303681886069e-06 1204545.3844237805 136.55851622140952 10851 2622 1175613 ICX_20200927 241269652.21230823 22469.745297665624 0.4253378594237343 3.962177225307105e-05 12007760.550173372 1118.5666717582399 116490 28020 123374 DIA_20210219 82121463.23543309 1588.9376733867728 3.216290429252107 6.221010780564427e-05 42614051.34284051 824.2491735081952 25127 243 245610 AVA_20210614 146588311.03570867 3766.3186537470137 2.8262289085851484 7.239766518405541e-05 8866380.125953304 227.12428487424867 82689 10252 43410 GAS_20200927 23344560.322756242 2174.1081803224165 1.677016960079973 0.00015613100340801657 2450902.310466175 228.1800638258672 323805 100614 108767 KLAY_20210930 2612532244.5833282 62883.91620768246 1.0412922877360034 2.5051188921302214e-05 10930585.296326535 262.96570185306723 None 778 51123 BEAM_20210418 148773989.2773196 2467.933528935482 1.728130747746641 2.8673188966192975e-05 41192802.87171883 683.4720245143711 19119 2165 172330 ZIL_20191026 49038506.46974442 5673.6193859416835 0.005309130542471389 6.132215436627965e-07 8400879.105540851 970.3283827762568 None 10567 188924 LTC_20190410 5286221358.540671 1021556.2717303534 86.1417982005569 0.016664027784504702 2799620292.4633865 541583.1955475877 442036 201756 239095 RLC_20210201 84452537.24080615 2555.430268415129 1.2012037499396708 3.633007219452764e-05 8555047.338418571 258.7450192758373 34295 3937 456276 ETC_20211011 6891782303.588395 125951.14749157235 53.08019904671659 0.0009697905072509089 4955493406.136866 90538.29017834627 530912 60847 203522 UMA_20210814 738583883.7228801 15501.060724445351 11.89097627787115 0.0002490821406681265 41237035.23070713 863.7986293174556 42693 None 213282 PHA_20211204 111086941.56597456 2068.8571781063074 0.6104235486635676 1.1383453412820882e-05 18704600.67951705 348.8118223926052 116109 None 121041 XTZ_20210602 3076599378.7965164 83849.21262131567 3.682690543780841 0.00010039527008581677 179496391.25699788 4893.321463055887 None 47774 80687 RAMP_20210710 53677433.77511624 1579.3706633396803 0.18061780904767674 5.314638499794598e-06 11723250.792916816 344.95402383237285 30420 None 114205 SUSD_20210204 151856537.8255824 4053.406042208974 1.00163082472579 2.6708522233433804e-05 77023038.54491037 2053.82211357817 71079 3943 30058 FET_20190603 0 0 0.17401060729226747 1.9899494061588103e-05 54858355.030907676 6273.4883071380955 9107 248 299153 TORN_20211216 87538439.61022857 1794.3208054249317 37.30038836868036 0.0007632676065768718 5534936.918716821 113.2598945819613 30558 None 87396 HIVE_20200927 57746861.210292354 5379.254616514777 0.15567435579131872 1.4501633781587132e-05 1501180.9127480912 139.84047485485414 None 91 154286 PERL_20210724 0.0 0.0 0.05780032475527794 1.7280169187765215e-06 4062684.94413541 121.4593230894188 340 681 5644185 WING_20210603 34453049.55949381 915.5035109262159 20.991368121008193 0.0005581642830456947 3136275.781457506 83.39414148231933 None None 358346 MATIC_20210613 8558294881.96903 238622.0115462129 1.3496685354488898 3.783095867906439e-05 1856898584.7819512 52048.52286842051 467032 42590 10681 QSP_20210206 34115986.779538825 899.2270376372679 0.04764271633611961 1.2499014977925451e-06 2092739.4060592973 54.90279142921013 58956 8170 199881 KMD_20200605 88961737.31788944 9099.91817142294 0.7405273496540806 7.574872623578739e-05 5991716.030752886 612.8941186413857 99769 8374 202548 ALICE_20211111 230849140.72988686 3559.779742526424 13.354845413210725 0.00020564748337456202 218989577.30044207 3372.1584985586105 132860 None 32176 EZ_20210707 0.0 0.0 2.7291925604172533 7.991359964624246e-05 646101.6286001636 18.918528369007753 35049 None 116746 YFI_20210210 1106517115.996014 23751.59728352611 35097.258975545 0.7535158589763774 648467648.1481655 13922.188546211635 80687 3137 19848 FIS_20210506 80748273.61658458 1410.5072193476356 2.9978375978063734 5.229288311880061e-05 32596671.52123741 568.6011594388245 19721 None 252595 ZEC_20201115 673164400.6872761 41822.301955777606 64.13911770801491 0.003987248249551434 426631600.70876867 26521.819506051517 71682 16295 172675 QTUM_20201115 210046779.75642198 13052.49880603634 2.0406318618231665 0.00012686429285234749 152967349.87385443 9509.845962076735 None 15018 123394 ADX_20190605 13751500.028110767 1795.739103414284 0.14937306413076099 1.9484024069138638e-05 653301.2587763666 85.21574839794677 54336 3892 922905 KAVA_20200730 68289267.29150195 6150.01457870403 2.5305711835642963 0.00022814655694497395 40536334.74873533 3654.5999038315113 None None 194309 RIF_20210508 229100674.30758038 3998.113014346578 0.3178139245584762 5.5455401771493345e-06 3885180.8373197555 67.7925816459409 42880 3236 493972 ARDR_20190702 111147895.10125715 10474.441069567421 0.11145820836335439 1.0500101605790143e-05 2716244.1796324835 255.88819604294255 67954 6571 885731 AUTO_20210616 33333559.87101079 825.3628397954787 1305.0520392531878 0.03233353761705077 20099398.166123144 497.9760401403752 67418 None 10402 PNT_20201015 11840707.899598958 1037.5591384144382 0.401764451867644 3.520230304940404e-05 1517980.0676607783 133.00428675644375 7068 96 272628 QTUM_20210825 1324615253.4579453 27556.268868365685 12.72442057333311 0.0002652539140877715 525605954.7665091 10956.808285780866 252752 16850 227670 POWR_20190513 43969439.21820924 6336.458086460736 0.10557664677305229 1.518741641188303e-05 1413882.8827260684 203.3899423207981 85114 13220 672162 TRX_20211021 7427018478.3108015 112044.050404881 0.10360206396337078 1.5632019139869886e-06 1809042148.3270962 27295.770379129448 1186956 118725 30822 XRP_20191012 11548287614.399103 1397313.8091102678 0.2678099641647878 3.238997270679115e-05 1477806676.2125459 178731.65420755337 939277 206178 28793 RVN_20190324 159692380.36533394 39908.421612469916 0.05070142101855607 1.265995065732402e-05 68428901.30133915 17086.434593081565 21996 6120 283361 ENJ_20191024 51921435.88057943 6954.548200279615 0.05869384638351313 7.861669786498096e-06 3383737.514923154 453.23025539494813 49401 14094 31815 STEEM_20201014 60889722.88426965 5329.081050956807 0.16609342677386416 1.4536227752988447e-05 4227564.234212097 369.98957600268636 11730 3851 174013 ADA_20190803 1792264515.594138 170285.25187582595 0.0576035980944542 5.4729232918653336e-06 106871562.39938858 10153.877230630225 154263 74823 93580 SCRT_20210825 241258703.3793996 5020.494150341363 1.6628511774525174 3.462513339660428e-05 4119376.533101473 85.77674532966596 88906 None 113867 ENJ_20190205 24265059.382868752 7004.332996415715 0.02814388753293973 8.123992485819208e-06 246973.03215547377 71.29104161899265 38194 11146 17707 NEBL_20190618 18732170.158672713 2009.5446574360556 1.2278391553679238 0.0001317197950883466 1229141.9702718568 131.85955811140533 40259 6157 698724 MATIC_20190830 25424797.924355265 2679.2098754389567 0.011679408692837283 1.2314424683120625e-06 10100495.040464304 1064.9664611386672 22734 1135 173960 BCH_20210217 13210255338.185797 268612.3871856664 707.0528206468138 0.014368193629367905 8877948016.016115 180410.95714587477 None 451922 297431 QSP_20200721 21541981.928042624 2351.2860089797464 0.030252203447211277 3.3018008556453304e-06 1320533.3109695127 144.12629558291653 54977 8220 336431 REQ_20210602 65653986.04090333 1789.3246267032719 0.08477528777089502 2.311092341639972e-06 1055812.5760642737 28.782920387644378 None 27747 445673 ENG_20190221 25966780.505091835 6541.078716091899 0.33724062402488547 8.49731769585657e-05 297938.4358673974 75.07036113137566 61104 3190 251266 QSP_20190626 0.0 0.0 0.025090708404572646 2.1195524451782523e-06 1132573.7138187191 95.67483491345318 56817 8598 682845 LTO_20200520 8363418.827416606 857.354844318525 0.039480885421681135 4.047283661473483e-06 2092404.2267084047 214.49755620993326 14677 433 1128557 SNX_20210120 2160544331.395683 59662.3872534658 15.309505788152501 0.0004247698308961708 289526638.2104138 8033.06016891453 61212 3289 36126 AST_20190625 10128849.62399944 917.0711929308334 0.05872710756468859 5.318007613376112e-06 1883365.725420063 170.5473618894486 31930 3600 344733 IOST_20190523 159651970.37902912 20834.59007977583 0.01178586662399807 1.5389594161549216e-06 48836683.09698081 6376.932278602106 198549 49659 108380 RLC_20190205 17393924.85955018 5020.916697897616 0.24861002881605082 7.176357579019676e-05 108167.38320027098 31.223511936694397 23876 3260 451476 BAND_20210127 209764298.98944297 6437.017748968069 9.2815733904972 0.00028495786312150847 185004972.01239455 5679.9229261583605 50564 3181 319982 NAS_20190819 31355493.613839947 3042.733163489796 0.6890779248207454 6.677121395793823e-05 7495934.585138875 726.3513079877266 24253 5104 694216 SNX_20210823 2305906044.8318515 46740.65971717409 13.493909045051318 0.0002738148094007668 161077911.53527898 3268.5500916341957 149398 7478 47795 UNI_20210112 1121096311.700495 31611.810200653053 5.236977252369884 0.00014703036241367734 574251384.2802006 16122.35170757438 None None 5230 GTO_20190426 20472384.535276 3941.2643981028677 0.031912447619372425 6.133322416331861e-06 12590052.42211179 2419.7094395371873 17295 None 809336 CVC_20190708 25654031.194132738 2244.352380073267 0.07479178308921229 6.537193067166095e-06 4803041.423521844 419.81094444166774 None 8151 447156 KSM_20211204 3124574853.369252 58194.18194464239 347.83498037595876 0.006472563298886581 121373778.45267141 2258.5407109165208 199629 None 76559 VITE_20200607 7466161.374703432 771.1705501013213 0.014843520279375641 1.5350838916973004e-06 2535627.4721311163 262.2289601491586 None None 642638 STX_20200629 93478044.49142727 10249.96733586798 0.1311065395041937 1.4365015780049046e-05 349327.61833637144 38.27495385650395 40976 None 97025 XVS_20210509 1309389189.6510997 22324.907580616884 133.3979504557475 0.0022708934061865245 308427327.1550088 5250.497336212006 79474 None 9693 VET_20210304 3482830362.995254 68515.16944238258 0.0535215345352258 1.0563139319964087e-06 678399242.4494321 13389.051294549572 182706 91326 59007 OG_20210704 4990708.503924607 143.96180759405146 3.858402353087692 0.00011108320449270942 1577623.8662060858 45.41970963761916 681856 None 236216 LUN_20190708 5312358.019912403 464.8755253023133 1.9694200255610783 0.0001721376119897979 254974.42232350865 22.28609824597612 None 2222 2096763 QKC_20200913 38628317.72298254 3704.540292015956 0.00665976414060547 6.378226236342326e-07 7545838.063202666 722.6841866134644 None 9219 295595 YFI_20201014 471079035.5808852 41233.12744939053 15704.273171434992 1.374385725497802 260492105.3268448 22797.40216295355 45087 1726 10928 LUN_20200308 2578397.3679874074 290.0785740897495 0.9544511741782684 0.00010730313509939113 3719954.559794223 418.2118451861652 29755 2151 1955482 BNT_20201018 73061976.80518962 6431.905132249017 1.112588000634934 9.79074498180782e-05 53436059.202981345 4702.359078028941 85784 5226 72673 GXS_20190224 40614496.109646104 9868.95953787834 0.6769082684941017 0.00016448265896463904 10952561.263700612 2661.3744919002734 None None 374736 KNC_20191019 31826744.175133433 3999.0558129939805 0.18989665929968444 2.3860980079240948e-05 10650304.013635704 1338.2367696430758 98433 6723 165975 ZIL_20201124 274880013.40426356 15009.317217035165 0.024306559580450172 1.3239429802811129e-06 41019327.33458094 2234.263154385332 98061 12412 66653 XEM_20200329 332946512.9434421 53257.4110650241 0.036994056997826236 5.91749011899351e-06 22867374.52030879 3657.816248139598 211350 18006 216330 BNB_20200107 2290887105.200194 295258.81567233946 14.900504443309478 0.0019217730304507592 222341899.1044333 28676.25501296118 1082808 58248 1604 QKC_20190830 49446219.66905371 5210.535023114138 0.012376377386633728 1.3048321824672903e-06 4866232.547151242 513.0432465440325 51118 9239 287849 RDN_20191024 7329083.8179017585 982.1143755122321 0.14492621821537283 1.941195101732622e-05 7612834.027233117 1019.6910059439338 25431 4375 2691065 XRP_20190618 18974636052.468895 2035555.8476698261 0.4455181226198829 4.781603361448539e-05 2924019807.891432 313825.68368121877 927473 202026 41010 XLM_20190725 1604611020.6271317 163234.74172273153 0.08151937184988288 8.31331324890578e-06 363760618.96264195 37096.16382497484 275416 103096 67443 BRD_20191118 20338452.422600225 2392.1103349769164 0.33385655599862746 3.923296858350417e-05 1264494.029415876 148.59631670766296 174 None None POA_20191024 3677173.262683114 492.7498187030165 0.01670169866932029 2.2380666896655824e-06 154978.9084906572 20.767536258501202 17704 None 624364 RCN_20190615 15834433.212776836 1820.507146322183 0.03157158608137269 3.6362135354896377e-06 2539793.9645686233 292.51723899826897 19016 1121 2270629 ETC_20210804 6397838811.107383 166513.8177836287 49.64642402233006 0.0012924358644421181 2395866864.1262293 62371.14399684574 489529 58706 120880 TNT_20200704 14188040.700333161 1564.6654038680979 0.0330962357091396 3.6513410027300314e-06 346645.9179610516 38.243698310700815 17992 2606 448003 DUSK_20190803 7214500.660713384 686.444667293705 0.13326157185063287 1.2671206027365085e-05 2982362.624658341 283.5786096513738 20273 13229 227094 FIO_20210711 56553712.33250535 1677.2936094134645 0.16767598509013446 4.973004364244727e-06 5638059.933790301 167.21593519513596 None 483 108144 KEEP_20211120 391871544.1309787 6741.174750094971 0.7133470441431484 1.2262309874892743e-05 158830681.52078208 2730.271402172371 29534 3567 141689 FXS_20220105 1360452379.8190734 29371.00956799886 37.776985150436786 0.0008225362466634136 40735160.12516079 886.9459959060682 28254 None 65870 XVS_20211002 283715787.9526746 5890.8282207257835 25.279461073343427 0.0005248870102127105 33781296.08754101 701.4138257558434 126719 None 25923 CND_20190902 11097516.758199373 1140.9254925720609 0.006356393959711606 6.53354649524188e-07 237353.32993132016 24.396836110786396 35888 6114 335034 CELR_20200319 4721034.166914903 876.2077441661077 0.0012575860820727403 2.3340366222931242e-07 4238431.803659684 786.6384012876981 19266 None 1309255 NEAR_20210710 863195725.7502705 25450.511892706647 2.098485533538043 6.174746591494404e-05 22521144.786352884 662.6796314941735 None None None BTS_20200113 43454008.816840835 5327.230640260571 0.016035791879863894 1.9635430979911627e-06 6226255.459549744 762.3895985629654 13421 7070 164452 POLY_20191015 14356929.237552745 1720.2080757242063 0.02731961349092836 3.272985001680678e-06 4697520.934010361 562.7793953674438 35217 5060 294073 ETC_20190213 440360304.42516565 121144.65410960981 4.066722015855373 0.0011191677897007687 283431324.567655 78000.71109154086 225669 24122 447874 SXP_20210704 167636918.17572528 4835.648834448155 1.9410425534629407 5.597727665106454e-05 74542674.20874813 2149.7189173152947 None None 60641 EOS_20200105 2537175121.0961943 345254.5890604653 2.6481799765568366 0.0003601457218563841 1590076349.861064 216246.32762764438 1376 69632 75095 AION_20210523 98095335.88496903 2609.673906306718 0.19891243090496474 5.292623747855884e-06 10446391.047132492 277.95556609460016 73388 73316 246548 MANA_20201129 109850498.51505041 6205.6349409999975 0.08237950265887223 4.650451408380948e-06 25831060.642421987 1458.2036607086443 54339 7562 87671 ENG_20200807 23704340.355332155 2014.8477877062135 0.28723559049248865 2.4411901443773245e-05 1003405.1400745639 85.27852466220163 480 3571 577779 LOOM_20190729 25878091.190944098 2710.6673980515197 0.041826883798622906 4.384286491907697e-06 1829876.8361504322 191.80736325504773 20733 None 431801 NEO_20191022 522199222.93999225 63591.55439471215 7.402312675265742 0.0009014135640009076 202284777.9555051 24633.145158713258 323247 98325 172955 NAS_20190316 37223836.93177049 9485.787086191689 0.8177044992369683 0.00020836073392003867 7583275.613115229 1932.3079104261165 23581 5157 598776 DCR_20210723 1536565117.6068463 47509.25131020933 117.18174652444903 0.0036195534234568366 20982497.69965575 648.1152025295884 47492 11429 137794 GRS_20190613 33993997.71686835 4178.585444469089 0.46734047849193894 5.74460861385719e-05 3917615.005588511 481.55822024023826 38622 107041 6997430 GXS_20191024 25997121.204733882 3483.4707741539964 0.4000369485259678 5.3582421079714773e-05 30909903.69129368 4140.186253352586 None None 581889 ONG_20210704 0.0 0.0 0.7498654962909259 2.1627081007039382e-05 14202688.42446026 409.62371864403315 141080 19571 137199 POA_20190321 7189095.406296529 1778.131304971158 0.03265282775752266 8.07626160874563e-06 396879.1523268797 98.1630101089986 16830 None 766257 VITE_20211007 61915145.86414796 1115.4031178568002 0.08108389853972942 1.461653430939766e-06 5307692.899017333 95.67876823808683 None 2545 396626 QTUM_20200322 118640990.14568965 19254.76980914575 1.2276818125007103 0.00019934616218005445 373355902.39681715 60624.06847786826 179551 15153 109238 APPC_20190805 4932393.73154104 450.4091146596064 0.045426137704836916 4.148157584258482e-06 265209.3210250542 24.2179967747727 25353 3337 1400807 FUN_20210519 314537306.4627119 7379.290704657558 0.03062642476351218 7.15890532947544e-07 7468866.42820636 174.58422943878412 3020 299 211811 MANA_20201018 96118752.55482481 8461.674935393181 0.07262781392623537 6.391566089643084e-06 10545983.850681657 928.0928217170476 53060 7418 82845 XVS_20220112 161997859.57716462 3783.328491440818 13.739067277847006 0.00032111255435522484 6858387.653901047 160.29577072189858 143633 None 24128 BNB_20210408 58558889933.084465 1039611.2548809324 377.00503501889756 0.006709107190345856 7619517549.798651 135595.43038399512 2512087 226533 154 DNT_20210916 140203402.41303736 2908.3988830888998 0.18663385171941493 3.8715585823532824e-06 10290142.24198647 213.46014211019178 71149 10270 539502 REQ_20190729 9547732.019868365 1001.20631889762 0.013076545317730273 1.371717126877449e-06 75445.78718416979 7.914191089213455 41481 29673 592890 SAND_20201030 22810694.197851166 1694.4386080098686 0.03759159418538408 2.7935073281573274e-06 4785444.412753975 355.61604462934497 56796 None 78154 SOL_20200523 4919865.806567834 537.4442426789059 0.6149832258209792 6.718053033486323e-05 3449950.8698416166 376.8713020680832 51164 1856 132466 BCH_20210218 13379411682.999943 256358.85527085976 717.0359968482916 0.013751995036529232 7533917294.055643 144492.5968694368 None 453109 297431 XLM_20190220 1714201312.680027 437853.3041976717 0.0893953855791163 2.283399543933684e-05 187959579.37884936 48009.95208547926 262554 99163 66683 BTS_20200229 65800121.85509814 7551.870462334724 0.024278731892719493 2.786466545568662e-06 15918463.633219747 1826.9597673723392 13369 7047 139878 SUSD_20210429 192826027.25734463 3522.715249875205 1.017377913100521 1.8580333138790024e-05 64291172.06641325 1174.1471674343331 117554 6166 27259 LOOM_20210120 48282912.54249752 1333.30928876374 0.057825776829517596 1.5953532524437202e-06 69704820.96112286 1923.0837686657712 23743 None 299124 WTC_20201208 10352860.967030521 539.0133545163442 0.37795352970296703 1.9696880447415044e-05 1819463.2136887708 94.82051782043709 None 19234 810414 YFI_20210110 1096226438.4710903 27089.352190399815 36243.19278529713 0.8997071378909756 1298136706.1959527 32225.164803818865 None 2580 18869 NAV_20210128 14499484.992217682 479.6670261521291 0.2076688974955783 6.831006552288117e-06 630406.3866796979 20.73642326774034 48411 13632 681902 ANKR_20210731 649869932.8806937 15569.473679832265 0.08473524614232933 2.02804446109602e-06 41776197.59930363 999.8671155638133 117264 None 5363 YFII_20210418 121807930.71677986 2020.6134016782814 3058.80553835764 0.050760609132803246 179143695.06364894 2972.873878283386 15453 None 334053 CND_20210814 31297507.94516344 656.1221771544264 0.016235401688071013 3.4008549950581795e-07 371679.956092839 7.785638196867555 36183 6260 167421 DNT_20210930 105296430.33359963 2534.922894444042 0.1405487407289533 3.379760368911712e-06 2082758.7431077678 50.08387425921569 71224 10258 539502 CELR_20210704 159180051.02999356 4591.702332678938 0.02825466686073559 8.148297937751824e-07 24842196.39315987 716.4183482938453 None None 195750 SAND_20210702 178861275.75746766 5319.808946162348 0.25361907932423783 7.5402513207562395e-06 127115996.98815969 3779.2368252935958 136644 None 27312 SNGLS_20200417 3960781.603980582 558.8323579247287 0.006142841972425441 8.667023852967608e-07 268671.0262834136 37.907180485064906 8906 2129 2196057 STPT_20200520 7542569.144129886 772.7161349935199 0.010659288721199481 1.0918977446295485e-06 1491792.3662198586 152.8136410163533 11158 None 1404978 VIBE_20210106 3245184.3309142883 95.43717312 0.017394331014302634 5.1e-07 125305.16102371215 3.67393446 18513 None 1637707 MATIC_20211007 8430736363.790587 151879.95594218458 1.2590833152753813 2.2696492251769322e-05 805652057.0269445 14522.848049920143 717796 None 8338 LTC_20210117 9564493948.54912 264248.6946500274 144.27234202687984 0.00398596917513743 6746848008.143743 186402.52048301717 138943 222956 127540 POWR_20191203 17873147.01160354 2444.6873826102565 0.04156194926358833 5.6887082793793e-06 2867730.5123534864 392.5148506676524 83121 12904 296750 HOT_20190314 185323158.96676567 47931.74045838639 0.0010428678398810571 2.6976794191333335e-07 5208526.0250135595 1347.3359638074553 19021 5686 225640 ANKR_20201130 54472886.09988108 3002.9578508702884 0.009362587965001052 5.15549195892876e-07 9364578.693349695 515.6588149857188 29150 None 5272 BAT_20191127 277513808.4346959 38707.65078744886 0.20383087986243945 2.8480606970958326e-05 48082230.019699164 6718.369151928541 108456 31992 24638 NEO_20190523 730895924.2326365 95381.95448645786 11.234432393128023 0.0014669549612377384 381784276.89522785 49852.125992284185 321403 97579 225000 CDT_20210602 12852591.637293076 350.47514156639414 0.01904326259653047 5.191458443127836e-07 753606.6304634857 20.54436567623436 None 332 455228 CVC_20190419 28022740.25492174 5314.731209099191 0.08171543389660564 1.5492410174037385e-05 3204787.0588836903 607.5948357503053 88988 8208 448453 ONE_20210206 108496601.27313788 2862.631181977819 0.01151876958288191 3.0323258514185695e-07 13967624.229272008 367.6988911755376 81151 1966 152986 SKL_20210408 418916306.34737515 7437.481814430438 0.6314729489082533 1.1228649756773784e-05 91746074.78067006 1631.3993213042538 20319 1151 148914 COS_20210617 52127209.116600595 1362.8365482360236 0.017204652062992674 4.492205942089469e-07 36796311.14880302 960.7669308534292 26019 None 231566 NEBL_20210704 17943814.02081268 517.8890912867829 0.9980075224353453 2.8764078049331895e-05 690673.2466622733 19.906241913989298 40326 6108 1020612 GRS_20210711 51521916.87269505 1527.944099099924 0.6449185063531213 1.913184099081164e-05 970299.79261982 28.784445108876298 41427 106852 6338611 MIR_20210916 296609310.73531246 6213.759998811874 3.7439462318223122 7.76649414462738e-05 38296489.44646486 794.427704430424 61935 None 15403 CTXC_20210111 1697591.074533544 44.04883264462986 0.1680766956594457 4.374106952892702e-06 56137351.90842373 1460.944840307616 None 20072 682759 HC_20200704 48483306.66565089 5345.960260175318 1.0827843466773928 0.0001194581437261644 15034896.72983151 1658.724435730477 12690 845 560022 AMB_20191102 4826790.206910543 521.5312724607877 0.03335833727962381 3.6038451625444095e-06 2269226.9375641807 245.15438084054173 19194 5587 575985 BLZ_20201224 12706442.265784074 543.4742825428336 0.04927404282751765 2.113360751089992e-06 5638432.257483457 241.8320224373923 42934 None 386784 MTL_20200412 16273897.622729253 2364.573588113843 0.25204188405107103 3.6620616895151395e-05 2819764.2176929535 409.69978279429995 35215 None 465912 HC_20191015 65671484.65109592 7867.352264854089 1.4799318473392051 0.00017731080765237032 25052853.67448419 3001.5853277338742 12823 847 404296 EVX_20191015 7920433.62476178 949.0047390437107 0.3633906482548194 4.353787605235053e-05 604111.7242985212 72.37869631647007 18187 2897 447432 TRX_20190324 1590031233.8208811 397295.1942394818 0.0242583029108237 6.057205334916546e-06 328690182.20308673 82072.67971276335 403702 70358 84022 OMG_20200314 69841752.83465256 12644.992307695258 0.5023467626307074 9.030045221797601e-05 159056211.3889924 28591.50070220046 None 42888 381601 CTXC_20210806 28857105.38317296 704.3189331335533 0.1594183165738249 3.8962438948843255e-06 8094567.957610486 197.8342994982075 20231 20597 812838 HBAR_20200316 137966129.15352148 25537.97963715685 0.040745934703676046 7.582607183138017e-06 38783830.114981934 7217.469692576099 37966 6370 115268 MATIC_20190716 30148521.101809222 2752.78147561619 0.013875669079358093 1.2688540058740857e-06 18281687.84957352 1671.7603114778283 20747 910 191906 POWR_20190615 49731483.772593185 5717.698915308034 0.11833296886610153 1.3628835180360507e-05 2364992.179323654 272.3846863955182 84744 13210 613771 KSM_20210304 2226725570.159625 43804.740352029745 246.72873459647917 0.004869497895404574 284128709.7145283 5607.632837098238 39678 None 90363 BQX_20190807 15165997.925630096 1326.5632719025848 0.10942857407125839 9.556008919845466e-06 1011686.0439709898 88.34695089761921 60590 5773 410121 NEO_20200607 832462734.8275688 86071.15774056397 11.801358404690298 0.001220470268926573 365957852.89663625 37846.54815356148 320218 99598 220108 BLZ_20220115 59581234.86970166 1382.558305088405 0.18487152372566507 4.287709664330471e-06 4078829.908137997 94.59995819710736 77572 None 180203 MIR_20211125 296609310.73531246 6213.759998811874 2.7126268018354778 4.7433912945719996e-05 26659060.8958128 466.16938713832246 77642 None 14084 GAS_20191108 21161425.64660676 2295.3213765922374 1.5189299891883048 0.0001647577379189692 1815327.8308555363 196.9078951117006 323627 98609 158708 DNT_20220105 102216290.92967169 2209.603672756288 0.13253755067138256 2.883103296014527e-06 2032377.3446088403 44.21051838746702 73869 10385 292726 KMD_20190930 66411818.42946864 8239.014102471916 0.5716783707827772 7.094952112177487e-05 4511874.772275889 559.9570856880064 98236 8424 202863 MDT_20201101 6897778.379568647 499.8848501381531 0.011380919455702843 8.247956265886513e-07 264566.26490411337 19.173591297710427 13294 65 934790 ATOM_20191118 962341978.4879396 113219.01579832583 3.8970904680887712 0.0004579644315932766 123719808.13582544 14538.864846404149 29132 7245 99616 GAS_20191022 17334271.385121703 2110.672878915927 1.2446365390739547 0.0001514479680812499 866478.0980562371 105.43346850090012 323249 98325 172955 CFX_20210805 183926063.4258461 4624.666571622424 0.21313290950016756 5.359699842418515e-06 4430806.312423853 111.42245442141079 37523 1175 184033 AR_20210821 1355982182.7622588 27595.317470414673 30.938635433038034 0.0006290293963598043 70832843.75678094 1440.1391763774066 25530 None 98920 EVX_20190819 9833808.305403449 952.8897889919394 0.4660295064249802 4.5178800756186274e-05 1437909.0731070999 139.39676913971468 18234 2913 816674 MITH_20200315 2209714.853420385 427.6917437306189 0.003587640026981677 6.924473714403617e-07 4674145.822064875 902.152937272461 94 2083 1367265 VET_20201111 755160879.9406005 49371.18471791634 0.011559360945775206 7.5676775473487e-07 108308781.22793467 7090.754720129346 138458 68078 103170 GRS_20210731 60256663.254623756 1444.2685553310068 0.7677812539754878 1.8380535295033485e-05 23788883.654027574 569.5012913746638 41446 106849 8677556 BNB_20190605 4203191258.1981406 548613.175812024 29.117035180370003 0.003797901435558274 416101388.5923617 54274.48403600274 979657 52183 864 BCD_20200701 136766746.4350618 14950.096699331929 0.7266917287785658 7.945285539680808e-05 21103516.085168153 2307.353373482534 28189 None 1537818 CTXC_20211230 85278471.34285751 1838.7147905864986 0.4519612967698506 9.712123058113073e-06 136758884.65328693 2938.789508163073 54363 20879 309614 FUEL_20190321 6578691.101357856 1627.9137094672856 0.012353339257182603 3.0566640563740476e-06 3709256.0715862075 917.804447353175 1 1526 None OXT_20210106 0.0 0.0 0.2559457311288845 7.511006712062712e-06 22717415.776540246 666.6673502453925 54387 1820 172682 XVG_20190916 70137604.30561906 6807.8715234862575 0.004400121097756904 4.2708742413611943e-07 1144988.3772034983 111.13560873016094 302298 52702 284381 VIA_20190314 10769140.374897357 2785.3800429099183 0.4654494195330791 0.00012040140511045872 2743392.346922268 709.6545391979921 40766 2228 3438029 INJ_20210324 157175361.67369604 2881.474409711947 11.63739781219035 0.00021348343610215137 18715783.30112496 343.33360369292046 56727 2730 98745 ONE_20220115 4098857035.4488716 95112.30923835085 0.35535656627498036 8.239046694195633e-06 524262875.9057951 12155.189250896514 323846 49615 7348 MITH_20190302 18233888.628068678 4771.988699558183 0.03573568390288778 9.352381339713504e-06 4363080.672623932 1141.8612940835662 47 1981 608667 NAS_20200207 26083587.27980287 2678.1818083289004 0.5729446022499592 5.8836276947869955e-05 5819871.945685806 597.6487015547814 23790 5015 905197 FIDA_20211207 371495475.7153472 7361.587408257127 7.562708861213886 0.0001497353350807914 2728599.5135673946 54.023997216219584 59138 None 354569 ONG_20191213 0.0 0.0 0.10073681138032708 1.3994564182337425e-05 4751351.3096441105 660.0674564197387 81513 16279 324525 VIDT_20210125 25659469.330431968 796.8950621992896 0.5532751962133394 1.714827235596888e-05 1363244.46394657 42.252549030787286 24512 1189 None ARPA_20200725 0.0 0.0 0.022731666770892972 2.383089204846817e-06 4781194.374326966 501.2396501572212 18853 None 680510 STORM_20190405 16992781.419129923 3467.3683087325526 0.0037533470337298386 7.668063369912472e-07 2281825.575580796 466.1754683326725 27029 2576 4145825 RUNE_20200907 164317184.07680207 15958.49322424497 0.7803947676775511 7.586730910186109e-05 7678239.550440702 746.4521771013619 None 1829 320641 WNXM_20201111 38600221.99022446 2525.656668444879 22.590734294826426 0.0014788191942523114 15302216.148520468 1001.7032053806295 14604 None 69573 LIT_20210710 56657774.542777084 1667.0623140791556 2.5533614143708903 7.513208663229586e-05 5889794.021524303 173.30586738758663 53439 None 323209 FXS_20211204 585722322.518968 10909.72424092159 16.415183134444707 0.0003061177323236956 3187892.418272997 59.44925438729464 22921 None 92799 BTCST_20210418 584894470.6333973 9703.507968393153 80.39677386858402 0.0013339335631149304 46942190.7575501 778.8591601945882 51338 None 111287 BAND_20200501 20845981.47125204 2409.1211117718035 1.0378662180735132 0.00012040624667090355 21147055.830885597 2453.3389529368296 12857 1119 568885 VITE_20200711 7830627.137699415 843.3346643388539 0.015423200409690203 1.6612411107193587e-06 1780153.612561503 191.74129143292063 None None 603624 NKN_20200106 12205409.36914143 1662.235039736208 0.01866759013770056 2.5415845907276256e-06 2650273.7168715303 360.83365824533934 12131 1004 256364 ARPA_20200407 0.0 0.0 0.007819748119226146 1.07316023719663e-06 2547628.2072914876 349.62932942862113 16660 None 1878146 NCASH_20200129 1951187.812846706 208.86843565099406 0.0006794842416055786 7.271896155516946e-08 250951.2441290008 26.857008237479832 58356 58496 1029178 GAS_20210202 26296520.62922606 787.6713234663013 1.89110848415747 5.6617862396740334e-05 5338435.093545826 159.82731084566336 333942 102276 149199 MDT_20210806 16843937.634393003 410.7939766832977 0.027670794416750757 6.762846712343606e-07 2868136.5775268925 70.0983417091133 34417 316 745074 BZRX_20201124 48189541.982010685 2632.034616171611 0.34386334072688235 1.8729736498682912e-05 18695530.79055978 1018.318395528875 None None 85173 NEAR_20210115 437208040.7183766 11194.419933165476 1.7229788374163193 4.392104809755465e-05 40373814.05373685 1029.1828259452009 35057 None None LTC_20210421 17573459862.733204 311042.67820137023 261.6300066318854 0.004640152065928316 11775108430.583609 208838.02440741743 166425 295226 95869 COS_20211204 160113570.25848094 2982.062737073173 0.04713386387715763 8.789735336825613e-07 772727877.5005977 14410.177676752877 34342 None 205544 NANO_20210602 954195475.6347935 26005.511107558126 7.149551628344818 0.0001949067287047306 59996911.101034395 1635.5993050991317 None 98023 52991 RENBTC_20210418 752502480.8110166 12482.903112920485 59706.24305198283 0.9932800159954384 5907930.21654911 98.28501543606923 71626 4783 63508 CHZ_20210624 1283018123.646517 38055.505926390506 0.24007532066882184 7.126258316173533e-06 468866841.4492919 13917.57477923035 356881 None 30309 DOCK_20210418 66069147.39519728 1095.9863674882656 0.11758780094984644 1.9562043571665174e-06 21784745.349846195 362.41356185671407 None 14952 216888 NEO_20190511 569181365.2420124 89320.96946522477 8.76714793342194 0.001376145096342369 302716146.71509045 47516.1756193877 320833 97557 218328 BCPT_20210217 482059.6886011701 9.796640302624812 0.004147152097120126 8.4338436e-08 3383.5784529983684 0.06881004316368 12364 3275 1170393 TROY_20201231 4450091.191531178 154.06155025496744 0.0023421892157877893 8.119190526267665e-08 986624.2949533552 34.201295841405596 None None 992869 BAT_20200320 197530635.60641634 31922.064970311443 0.1368566529551281 2.2170121330656418e-05 78739501.72530372 12755.421596769387 111574 35885 19141 KMD_20191216 69587880.78710355 9786.179324945642 0.5955302790592629 8.375717905344723e-05 2305847.8939414346 324.30141961538766 98476 8414 213370 ADX_20210201 46501680.37152959 1406.8845778953923 0.40988889526784106 1.2393791706974496e-05 2053623.3970554792 62.095316368703564 52845 3737 11021 NKN_20210107 13200829.602234209 359.5500620419015 0.020441269292834692 5.534518760299516e-07 2041453.78986835 55.27281176356008 13719 1023 376074 NULS_20210509 152406698.25623298 2598.5184447578076 1.3631253797578005 2.3216074205195593e-05 163832203.32265335 2790.3086876830243 51918 5353 238913 WAVES_20201124 797876920.6134038 43566.60076273123 7.920813882124485 0.0004315942263856714 210776234.4957863 11484.906377233829 145612 57124 213856 LTC_20190131 1915782552.4220924 553447.7301919446 31.778905333992693 0.009182463212822197 635822290.7229637 183719.82084011 436513 199679 250878 LOOM_20210304 106357428.24241027 2091.890649030877 0.12680841514914434 2.502715668076003e-06 36382842.0257008 718.0588818160138 26497 None 236528 SC_20200223 129512273.69403295 13417.080314482979 0.0029658440806460966 3.071788293772108e-07 4078771.323572601 422.4470897335327 107918 30188 215597 QSP_20211207 34372248.97529162 680.6653429212832 0.048153761885876376 9.535773137964065e-07 628283.1446065321 12.441739334038996 72258 8655 121782 ADA_20190228 1340877352.4406545 351277.629662492 0.043024207886110166 1.1284587093042344e-05 32087203.178842526 8415.979204132895 147903 71479 106866 CVC_20200725 20381035.52561876 2136.1555596558765 0.030440826809699673 3.1916500407760566e-06 8117317.149513253 851.0818636168233 85302 7982 98736 DENT_20210702 229710636.2619349 6838.842312721778 0.0024047220633696353 7.149938570373757e-08 18197777.720753912 541.0728948791061 104815 None 67197 TNT_20190126 6890718.016963633 1932.3675331043046 0.016081725170889793 4.509806310464455e-06 571571.1618239038 160.28598953667608 17014 2520 1229604 TRX_20210916 8589280503.382593 178228.76159067068 0.11994784217743584 2.489090230615309e-06 2402082650.9627547 49846.669611591096 1131721 117147 35009 HBAR_20200621 197295805.0680178 21089.256711962153 0.043835716128911476 4.683235883148953e-06 7789595.467774632 832.2098104343776 None 6545 134058 ZEN_20210115 267026136.3502599 6836.900840906067 25.150763995841338 0.0006423291671698917 38047807.67829079 971.7087171855989 82357 6390 350689 DCR_20210702 1765971444.588677 52575.71192541573 135.17461892852 0.004018824615341495 31638733.999727998 940.6390341931397 46970 11336 133920 LUNA_20210418 5813771141.085785 96441.86394794486 15.214828403645923 0.000253115658055785 339917923.7965304 5654.914185302122 56643 None 23843 STPT_20211204 190146140.27290952 3541.4095044582755 0.14455241561147208 2.695678586493766e-06 36730384.82820695 684.9647682208293 34336 None 438073 DODO_20211202 361573903.69699246 6325.710863820248 1.3871770254474214 2.4258512531840794e-05 56726911.29610328 992.0222605512735 None 1223 17689 RDN_20190629 18685003.958628263 1508.3731220681843 0.36902090644175983 2.9807068033599643e-05 543106.098032965 43.868518371021715 25686 4425 754056 GAS_20200320 14191081.9362612 2293.3588917871543 1.0179019335082842 0.00016469857079763216 9445097.034177423 1528.2356102935091 322371 98959 219445 OAX_20190221 3202925.9617206324 806.8228109110715 0.1365053460208357 3.43859421969759e-05 387438.8440319848 97.59654170404063 14231 None None WAVES_20190716 151211262.1977388 13804.43140004776 1.5090943827341727 0.00013799842312634035 34668873.77345404 3170.2787890805776 143530 56869 48211 SNM_20190914 3667988.8799346457 354.33540052201744 0.00838203018161274 8.097216536933198e-07 629247.8695360874 60.78666080461737 30970 9879 18762051 DUSK_20220112 265663126.62030065 6197.124862063776 0.6809755031764263 1.5911352920264546e-05 82832663.963904 1935.4290183826117 None 14188 206848 HBAR_20200414 126325045.61016129 18428.294503966747 0.03250105782730095 4.746469914550194e-06 5702246.2814224325 832.7587540056062 38529 6403 106388 XVG_20210201 259140260.40164554 7839.918088326668 0.01567033128353637 4.7256990219271494e-07 38049707.59204158 1147.4643560422953 289819 51588 157669 PIVX_20200106 15043156.612323666 2048.2976713307125 0.24149837121594767 3.287990224987219e-05 530427.7736624465 72.21751956680224 63590 8524 243133 FET_20200223 14270520.7467106 1479.174776176605 0.041969505979657346 4.347894907293582e-06 7406581.507376214 767.2960942638854 16587 354 514590 ONE_20201018 36429339.02392627 3205.9971585879134 0.0050474724721336385 4.441762426806084e-07 3343096.623775864 294.19161876860954 None 1501 120791 ZIL_20190205 169099571.63538942 48812.149626212486 0.017839333098375095 5.149487890526938e-06 8191075.562874711 2364.4294430073965 55844 9885 190156 SALT_20190224 14081324.89208064 3423.9787140877943 0.17061661501041742 4.1479199509652404e-05 464840.96001014585 113.00910476592172 42789 None 344605 NXS_20200301 10175925.382704273 1186.4813701609169 0.17022413171893414 1.9871432018373617e-05 100705.03961015953 11.755990929800218 23466 3533 662796 VIB_20200113 4051232.96757356 496.6894361720035 0.022332248508748993 2.7389465013020153e-06 2313440.0232111104 283.73266825612075 31739 1112 None KMD_20190228 108266958.091669 28393.91864634845 0.9698775084801723 0.00025378192285927485 4732157.128008208 1238.2346478990426 95106 8292 262903 C98_20220105 473381459.03093916 10286.285665330348 2.5543259886156084 5.5515666516234836e-05 36716969.07371086 798.0058221495027 331579 None 36297 RVN_20190419 195458571.62141785 37068.572768179925 0.05843570739322577 1.1078812221585572e-05 30397140.24823131 5762.986774801934 23458 6341 171966 PPT_20210603 93571812.38167477 2487.6439855752956 2.582937369100279 6.866842105345767e-05 3905698.953133754 103.83456580492295 24332 None 601445 MFT_20200107 7603838.44327575 980.0135188805863 0.0008421217818890808 1.0858629309900796e-07 1006216.8480157042 129.74531704273676 18539 2416 945394 PNT_20210613 46554124.40740389 1297.5593312344392 1.018811895764721 2.855223597946982e-05 7865115.486062432 220.42011317042696 39776 308 346623 REN_20201226 235547413.97378176 9538.221195282225 0.26746449159754765 1.0832097333118665e-05 27987740.24032494 1133.4810262343678 30466 978 102602 REQ_20190201 14280752.250631746 4162.006932264863 0.01957183863258279 5.704050223431005e-06 313119.3710890346 91.25604661626461 41848 31109 476226 CMT_20201201 7275506.438231147 370.05789437538874 0.009088548039817705 4.626681163760095e-07 1290700.1631536577 65.7053041559858 281427 1629 881018 BAND_20200313 5788348.628098532 1202.771386122175 0.3326267482592006 6.963891828743933e-05 3446357.907432269 721.5313800257724 8570 1055 796393 BAT_20201231 301043743.5338617 10421.339448036602 0.20251348867356242 7.023485586898812e-06 103283409.33452675 3582.0307159693853 125049 48910 23783 WABI_20190714 9735624.20060243 855.1582732003809 0.1708736002282424 1.5004667889702461e-05 624971.5085436767 54.8796883409628 36469 8009 1160222 PIVX_20201224 19890376.06052859 849.7086173016987 0.3044864642009618 1.3059406246266371e-05 329125.48545248713 14.116172394733615 64839 8698 347708 DUSK_20190905 13241317.421718493 1253.6843705904073 0.12279346336104671 1.162472793094216e-05 4318023.2365334 408.7827148958037 20424 13323 183070 BNT_20190614 47501827.07965286 5777.029103367574 0.7251182899698275 8.813779229992677e-05 3723797.2833713973 452.6258350792346 796 5130 144123 ETH_20211207 515778007028.56696 10215876.56871859 4347.615630598069 0.08611205604965151 30676805365.753136 607607.251314577 1937939 1176147 3541 WPR_20190605 6671253.286810035 870.7520613497447 0.011115947159526124 1.449482224446979e-06 232893.38362363254 30.368516052585967 34990 None 1388186 BRD_20210620 10939086.33220131 306.4705403660259 0.13373755575289425 3.754744441375758e-06 979456.0613129776 27.49868711958352 793 None None XRP_20210710 29681644971.035645 873333.8390079534 0.6424991973732445 1.8905838643800184e-05 2350318273.957575 69159.21176350291 1913761 322099 12075 SNT_20201106 83254083.45207159 5356.888579280863 0.02181222692917807 1.3999582254753216e-06 7305115.9793072 468.8589219472096 None 5697 160974 FIRO_20210318 98422610.17641874 1672.3889462183906 8.470522446545848 0.0001437405077588609 10282701.416913982 174.4922738977803 69691 451 190037 WTC_20211104 29430264.795628596 466.7167519643876 1.0080725451246637 1.599643694779409e-05 10285942.738668052 163.22082697666985 66452 20345 284012 NAS_20190804 46718295.45082386 4329.784987018937 1.0265937949329926 9.512486443842708e-05 13204806.691009242 1223.566178383025 24356 5121 652054 DGB_20201226 278883718.4004897 11310.005287326496 0.020096281104522325 8.149957511013595e-07 11006351.208522687 446.3576829673589 178590 23634 262819 ALGO_20210610 3217532823.9719234 85719.46880366567 1.0458109132413589 2.7922801739786188e-05 548421275.7915975 14642.66471110657 108078 32386 157111 PPT_20210128 38450300.52812175 1271.0330263381175 1.0689627017157803 3.516218031507381e-05 6288708.725684077 206.8591446703956 23521 None 734972 XMR_20210711 3784354981.77256 112229.57557239503 210.69797245530884 0.006250464308887747 151503007.62792408 4494.415066420956 429409 228269 31847 DGD_20190530 72363919.70853661 8368.428779887368 36.18197794525728 0.0041842164820519254 3375319.7231696043 390.33433825119135 16958 3362 447437 DOCK_20200612 3817834.935193539 411.4727159971397 0.006843166377789003 7.357136116916095e-07 911062.7051244387 97.94898973086106 42174 14975 355846 TVK_20211216 95329520.81290294 1954.125119941435 0.22076048740808324 4.517361245283802e-06 10854364.37539647 222.10987820916435 70335 None 34727 SNGLS_20190117 6687295.49111872 1859.2931682017856 0.011323209498252764 3.1491101847873105e-06 1067994.307379646 297.02106555416805 35488 2188 957120 UMA_20210620 660623346.462333 18568.409164326375 10.745722096057232 0.0003018154784391014 15731562.030365355 441.85294188198344 40263 None 140212 VIB_20200314 1654502.3567889137 300.517410032166 0.009111241194726007 1.6378112916309207e-06 588313.0997850463 105.75352108997848 31518 1106 None XTZ_20200626 1848443853.2482245 199763.69592632185 2.5846737902457066 0.0002793290086664271 95451383.99837439 10315.5533857794 66904 26733 92596 DOT_20200901 5712939724.608923 489307.26233294385 6.29879772167723 0.0005396124298089905 430398059.7192618 36871.82110816274 None 4156 45901 KMD_20210111 74795737.40144344 1940.2247787572903 0.593162092053905 1.543064285336377e-05 2546535.805217062 66.24611560651893 96652 8409 276744 BEAM_20210711 42884004.18141811 1272.0403195785877 0.46357845810963305 1.3747973921246763e-05 7750018.733479675 229.83607968223322 21643 2521 188205 LINK_20210420 15196136707.494104 271448.8945300408 35.9990709094387 0.0006436418893299621 3565130060.2691417 63742.39639326433 241527 49328 26155 BNB_20200520 2542931077.0229716 260601.47126409865 17.167573323604675 0.001759890597124673 305892968.0599993 31357.848198333242 1154991 63411 1123 LOOM_20200607 16702760.031726673 1727.362336494723 0.020029342324903658 2.0713900870921876e-06 7461347.45787634 771.6359783505715 21640 None 619588 RDN_20200430 5488162.04607075 628.2577136468838 0.1092846512300903 1.2464959976279461e-05 1609932.12187937 183.62816038550514 24998 4314 1251833 MTH_20200801 3363311.0573053034 296.7547108763862 0.009676079115604981 8.53621024474187e-07 339580.12088845635 29.957664382506298 19066 1904 1234165 XVG_20210821 560963035.2925115 11416.044579973914 0.033969184579508434 6.90645058251839e-07 43886811.29889811 892.2854558098304 324629 54562 161164 CDT_20190130 4916813.6298710825 1439.4716521074445 0.007282427994820488 2.1333001435526295e-06 175019.81496644323 51.269960603526926 19543 284 396515 UNI_20210819 13939845220.537468 309427.3919327913 26.630549471228242 0.0005918926964182784 627293390.046418 13942.272444700431 None 50688 2131 ZRX_20201018 276204291.5320975 24315.24409736905 0.38347413013765524 3.374562203758932e-05 49985663.205749534 4398.725142772869 160415 16314 55516 UNFI_20210707 29256623.503883846 856.5131611680832 7.033795964867464 0.0002059471566818521 16861355.798337474 493.6947704786167 20243 None 196692 ZEN_20190305 29623748.95885096 7977.815511467364 4.986764351142116 0.001342959192904164 1196831.0081192395 322.3122432762183 24918 1498 303166 ZIL_20210304 1506049882.1528392 29627.415667652665 0.1274024902678412 2.514446317909367e-06 235409133.62791178 4646.091516802553 149832 21482 35245 FET_20190813 24259625.75991713 2131.59935718673 0.07729827110775742 6.791134520331935e-06 2923197.5204629 256.82110746422694 16379 297 429380 FET_20210620 178349322.70759887 5002.615710473856 0.2581125032784775 7.249615053481736e-06 25365997.539673302 712.455674461432 66275 2912 113407 TCT_20210310 15487489.431385512 282.85905511620984 0.026757192054597458 4.886856643652486e-07 5307935.596397077 96.94260997343957 None None 839224 POA_20210220 15972236.434464324 287.48526772564185 0.056360372658003255 1.0096304267506153e-06 1234853.7435607868 22.12096643950831 18458 None 431187 IOTX_20200414 10329062.119643971 1506.8033244806918 0.0023838469891567368 3.4813814599655924e-07 2625308.7242747457 383.40133242398684 22567 1817 530142 LINK_20210218 13105334984.825926 251208.5034472595 32.25162970436043 0.0006184058610268992 2108744973.4752464 40433.93350853821 156541 38538 34188 PIVX_20210813 53623170.50497415 1206.2354830221832 0.8215263385068705 1.8476895773001267e-05 809240.1337204399 18.200567535373214 67682 9859 344305 NXS_20210124 23003977.58688009 718.8659938761784 0.3385480974461889 1.0577624176090698e-05 358631.0952046286 11.20509898460535 24295 3532 480496 ADX_20190321 12678477.499234939 3137.258266083971 0.14566285442348884 3.603460913959692e-05 1271713.3007820523 314.60108284077603 54507 3930 962371 LINA_20210826 167565368.46065426 3418.573551432733 0.060292696072063376 1.2303587781392076e-06 48662331.43762826 993.0245377888685 43565 None 115735 MTH_20191019 4910143.29510268 617.1409515396323 0.014129889184610306 1.7756990510867083e-06 109880.37600234576 13.808634791908117 19460 1973 790483 FIO_20220105 74338496.20114705 1606.9709900376786 0.15843849501620647 3.444126654556943e-06 3102577.1896992004 67.44363985387746 None 563 267725 BTCST_20211125 241950979.91672927 4229.363864245984 33.19084070362423 0.0005803247839945209 10217500.060399674 178.64773503215255 67319 None 2435724 WTC_20210310 32845257.47025436 599.8763411103516 1.1255019078331867 2.055584332061148e-05 16970625.944517378 309.9466340663961 56344 19115 448781 GO_20190923 9058794.028409174 901.1686381647445 0.011465038671812899 1.1413504877197735e-06 4115030.286449544 409.65337831504814 10275 686 748628 XEM_20210125 1929045923.2546337 59909.54649923806 0.21500759921800816 6.664056040378373e-06 66150256.77371867 2050.29505854116 223116 17953 70313 BQX_20200626 11074420.790583419 1195.8156231475302 0.0498054373216853 5.379393083847543e-06 588532.7889122525 63.56633702147259 12307 33 380325 WNXM_20210821 172868350.94718844 3518.4415547768635 77.57232026015576 0.0015778832391178238 20384084.357817292 414.62863228914233 32555 None 132696 SYS_20190623 28755668.718458775 2681.1142502996845 0.05177716174924219 4.827586781762221e-06 1106597.2184786994 103.17665017126586 61536 4608 932870 RIF_20210420 214436969.47823796 3830.491883014824 0.29707990699963965 5.312205004974807e-06 4443014.2657771865 79.44732061554289 42421 3201 604908 SC_20200229 102619408.39939837 11724.202382617663 0.0023507279632442547 2.697927081305718e-07 4995443.704740648 573.3263510235269 107914 30206 215597 DNT_20210703 96420788.55936748 2852.6976042284123 0.1286718971198021 3.8003270120648184e-06 4808191.386502898 142.01002716460502 69853 10243 207406 MDA_20200711 8919004.509725695 960.5261469724076 0.4544213483110083 4.8917158632338256e-05 305058.0885396674 32.8386308535833 None 375 1869072 CHR_20201129 11946506.493829247 674.9667190846278 0.026386234158466113 1.4895440715663584e-06 1880615.3590574083 106.16367012273358 31496 None 747411 GO_20200105 12547939.148213493 1707.3151593250498 0.014269201246043249 1.9405379485819276e-06 3086844.7328322367 419.79500058577 10404 676 1082052 POLY_20211104 605561855.2200806 9603.863918187928 0.6937583070221037 1.100061416080321e-05 38656052.511293955 612.9516783471744 None 8074 125947 GVT_20211111 1469175.4940122804 22.66530573704 0.331979178613024 5.110808e-06 98.89659730881985 0.0015225097032 25893 5827 507031 KMD_20210729 90105982.15281041 2253.496299613859 0.7091143713672056 1.7716565076909053e-05 6878784.052318631 171.8600415303094 114242 9440 217175 REP_20191017 88742992.23757294 11081.299989309176 8.055897343569736 0.0010059469185211333 5894440.875459366 736.0439665739182 125578 10049 212520 IOTX_20210729 183128614.58349612 4579.699729951596 0.019198567103830732 4.798594508495734e-07 6900227.8173405565 172.46805520737593 83666 3776 234069 XTZ_20210513 5138727955.47835 99690.48401950588 6.001139668029342 0.00011906127237954853 662410159.6100829 13142.06980725293 113062 45635 85106 KMD_20190801 119935177.43811372 11931.421821712574 1.0414881533203062 0.00010349050927413212 2335601.6924459036 232.08387713500332 98281 8444 220245 DOCK_20200625 4064921.602074011 436.90827597289257 0.007203935337847451 7.750403847026288e-07 1557217.1660898423 167.5342899222128 42030 14970 320646 LOOM_20200626 17921917.406054497 1935.208101279903 0.021522186261691143 2.3259305807514787e-06 10112064.199984528 1092.8238921122568 21751 None 640250 XMR_20201030 2202447959.895182 163506.28897060594 124.19779553158232 0.009236261219523078 359137886.17718947 26708.133718173474 325240 182550 84563 LUNA_20201015 143689525.0754255 12591.002252617669 0.32012356181739776 2.8012147950550193e-05 5695563.075904882 498.38554412606663 15553 None 174032 RLC_20210206 109123343.3718502 2879.1674739333184 1.5666374318859249 4.124186312023732e-05 20381456.145751096 536.5435597579879 34454 3961 456276 KMD_20190915 80313927.90398726 7758.383796652649 0.6890055496477508 6.656066936413966e-05 2282363.704414669 220.4853879274609 None 8423 213183 XRP_20200324 6935124633.666894 1070616.7471345249 0.15818223865173547 2.441954005810481e-05 2149427563.4819174 331820.0130167739 946517 210984 34201 KEY_20200330 2440554.578848472 412.7286304109151 0.0008661871390041882 1.4674459441708838e-07 636056.8831971841 107.7572099007081 23412 2752 250395 GXS_20181229 32342224.374128718 8406.58221910248 0.5390370729021453 0.00014010970365170797 342961.0193699321 89.14445629740956 9953 None 227500 TRB_20210221 81657837.13799435 1456.6597508524137 48.379216268364914 0.0008604841230852846 106954500.06222965 1902.3179020833518 14638 None 359747 DGD_20200308 89058417.4082279 10006.078215691508 44.529230968729436 0.005003041609366559 1026532.4409458181 115.33512714430532 17654 4711 323922 FLOW_20211111 4008293260.06747 61707.536434922746 12.90445192031133 0.0001986635920526225 85543297.02539645 1316.9361060845176 112411 None 599387 TVK_20210508 110684912.28513849 1931.4890109364728 0.5054643387938477 8.818700632909592e-06 21156700.152240217 369.11526828588643 47154 None 59216 HOT_20201015 88161209.90251772 7723.522809124801 0.0004969013557482945 4.3480942842907386e-08 4168782.9517360674 364.78591002424497 26316 7303 231880 WPR_20190623 8231490.730273404 767.2264479090769 0.013526730677735284 1.2610558603500983e-06 674725.1887442806 62.902572222592504 34856 None 1193640 SNT_20190201 64974479.84507996 18959.24996887604 0.018553921837330387 5.415884366352743e-06 15774137.079749396 4604.466007344785 109105 5779 290397 BNB_20210310 45349664034.30795 829757.231081957 294.72023395611154 0.005382685636027985 7151267268.285297 130608.6897655238 2062469 189184 198 AMB_20200526 1491703.5455509904 167.68165195284632 0.01014512120098962 1.1404528785685847e-06 449644.8453892615 50.546341250973704 18891 5452 931435 WAVES_20200308 129135183.5269661 14528.15239706815 1.2936133686673041 0.00014534276404684182 69012595.95223668 7753.848014170949 141266 56867 51296 ONE_20210909 1489282935.0928545 32133.258305688225 0.14110332373988366 3.0547555363062435e-06 436601550.9158454 9452.01692965571 209311 29180 32288 OAX_20201228 4820210.760435362 181.55438153059308 0.08523391634788992 3.241041616363113e-06 677183.6411547244 25.750082325732542 12808 None 1739260 AXS_20210430 558782575.1782094 10423.98977181576 10.113279159364476 0.00018867355794398148 85388676.69151694 1593.013026304044 60560 None 19374 NAV_20200127 6216604.889346937 723.3887706470733 0.09250252215047841 1.076395990597012e-05 30845.11206431708 3.5892594259793076 49816 14045 595997 NKN_20201018 12142221.551557578 1068.5872660953632 0.01860547096268359 1.6369055875458327e-06 1616783.0053056641 142.24424313375508 None 1020 215999 FIDA_20211028 362665901.1857005 6196.450449949828 7.385111828813398 0.00012620236038546486 1775940.2779400174 30.348606788214397 49476 None 516482 SNGLS_20190312 9719240.840892846 2513.8590624037643 0.01646281414407305 4.257631298666114e-06 760970.651651318 196.8030760405226 None 2186 1603096 EVX_20210708 8262517.218358778 243.1053161010452 0.37901455130086137 1.1151620004635098e-05 479509.4556832499 14.108448396125903 18275 2805 1315536 ARK_20200109 20561470.418845125 2554.8556564091914 0.14331193935072942 1.7859776666506898e-05 680079.8949820058 84.75270863535535 62558 21658 97018 AION_20190708 44310423.53906312 3874.654937956399 0.13653884860004675 1.1938005714360378e-05 1684703.0195911587 147.2986954342352 67557 72596 281038 KNC_20210112 196349837.0673086 5534.504299637792 0.9789871320162093 2.7540851575819223e-05 77826462.6817097 2189.4129016524316 127884 9346 138877 BCPT_20190703 6227986.982691023 576.3929556383199 0.053666086764114065 4.962117898967832e-06 1035586.6400635283 95.75326453702577 10966 2818 1043904 REQ_20190515 14820289.084630866 1854.3530637099677 0.020255888816679668 2.5341157080012627e-06 426689.5131783266 53.38104921341348 41994 30131 371026 VIA_20200330 2461728.6305387914 416.3491974335685 0.10634209632714839 1.7972543705832987e-05 52622.30708018038 8.893530845873135 39327 2177 2066197 BTCB_20190830 0.0 0.0 9487.211262770319 0.9997955676112581 75021.89755961504 7.906070453836045 None None 60594 ALGO_20210115 362880992.01976055 9291.325483763285 0.4523526654280562 1.1530996045357787e-05 184703975.77914703 4708.319364617383 36751 1850 343568 ATOM_20200324 396860252.85467076 61602.69554386463 2.109893408839652 0.0003256083450097936 160273164.97974902 24734.08361763537 31799 8324 84919 SKY_20200430 8544783.366032662 976.5678992288956 0.4747101870018145 5.4253772179383095e-05 309065.5435676973 35.322544256154664 16108 3829 410514 NKN_20200317 5035608.422756224 997.6943877184557 0.0077333833206218805 1.535693785956565e-06 1353953.9508904226 268.86791752701566 12208 997 277366 HC_20190117 53331161.48884106 14827.857441047538 1.2205392172114728 0.0003394684310221023 14523591.355593545 4039.4447804418855 12223 782 349692 POE_20191020 6392056.342637479 804.378230639955 0.0025393778263398973 3.1955604478210817e-07 10769.044370317091 1.3551796780165064 None 10683 871423 VIBE_20190816 2741386.446500406 265.6852274301861 0.014649502306163938 1.4197766086283979e-06 207031.35204072454 20.064727438314 20409 None 1220128 POA_20200207 3687943.321401736 378.663031139051 0.01712828650057877 1.759680213214273e-06 1904462.1121278873 195.65554881479045 17479 None 433120 SNGLS_20210421 26095551.925981186 462.8190284059747 0.029320853861502655 5.200214699060161e-07 1170961.598083893 20.767647978989558 9455 2129 958581 LINK_20191118 1059153983.445467 124615.06306872012 2.909499282183738 0.000341908199436742 97269974.88523552 11430.627316500484 37582 11681 109630 GRT_20210916 4491409940.47577 93196.07701790759 0.9050270241352757 1.8780612333864298e-05 146893533.63337648 3048.2520808213417 140790 17681 27652 1INCH_20211225 1160629059.3324704 22834.090472808857 2.7525148278353746 5.415221804103353e-05 190107128.9707372 3740.115255718419 None None 4013 WABI_20200430 5164115.032996649 591.5016679447007 0.08811672207274163 1.0050555146716166e-05 1333886.2625407232 152.14248925471338 36587 7706 1879614 LSK_20200713 175614910.17154783 18924.38963999576 1.2478524101537114 0.00013430484215060502 5383818.593485129 579.4538684878959 175402 31156 183844 WABI_20201208 4767089.794404336 248.19554823101518 0.0803678937554592 4.188337112120392e-06 529977.8828995131 27.619562138895116 None 7508 1606102 FTT_20201030 356600188.07809025 26489.20375075729 3.8535770087584007 0.0002863670947419066 20041987.079857264 1489.36056029739 28687 None 6507 ASR_20210220 0.0 0.0 8.626561969859571 0.00015431628912946269 5252159.147861642 93.95327042768155 None None 142530 FET_20201030 31319474.215515874 2326.4932593914195 0.04572939109084507 3.400773739316268e-06 3681303.225786737 273.7687740439241 25699 688 236091 IRIS_20210207 85863776.28461358 2188.7200399015514 0.08982957363940151 2.2835007723078576e-06 19811062.483100403 503.60448845051866 12506 None 896024 CDT_20190729 9116706.280432662 956.1488356155461 0.013514218052251725 1.417628579124423e-06 104695.86462103306 10.98249630345342 19787 296 299913 ZEN_20210217 625917151.9741628 12727.165075018385 58.1629374236327 0.0011820371101365936 128535552.20599657 2612.2097577838954 86668 6647 515975 LRC_20190605 57042630.24972561 7426.023658216958 0.05939515116406814 7.732283658674105e-06 35941457.56329199 4678.993815806574 35697 2463 858325 COTI_20200421 9418613.387958707 1375.327169798108 0.01885033738218038 2.7533307197987132e-06 3901634.1323098596 569.8831217768567 None 939 241032 ARPA_20200317 0.0 0.0 0.004621365396970167 9.177098597759763e-07 1439951.022624921 285.94519964245984 12242 None 1589260 LRC_20200107 21527235.124086738 2772.1608485898387 0.02232492992935436 2.879328576302019e-06 1281270.7451663765 165.2502149933521 33840 6824 1058807 MTH_20200306 3497554.117992624 386.31296058531194 0.010062754157818996 1.1115515495605357e-06 243719.92990157648 26.921781203447285 19247 1932 1066623 GVT_20190510 12153874.983914727 1968.2177295346526 2.7391934322929874 0.000443627599945962 1120235.81181166 181.4284156455172 21454 5797 192676 POLS_20211204 303768600.8032049 5658.025211607393 3.7346402185242837 6.960934451515838e-05 37675475.40931931 702.2269868276558 None None 8577 WAN_20200107 19178272.90227827 2469.6742046441827 0.18047336780109866 2.3276316065292847e-05 1835990.897216258 236.79451953102003 106739 16539 802960 BNB_20200711 2547754640.775417 274385.4057936082 17.216878342022962 0.0018544306049736589 176179742.2433897 18976.326573387636 None 65988 1041 FTT_20210131 1028456135.8380696 30097.284276668728 11.49474855750217 0.00033645333534677505 18460366.442856133 540.338210127173 52652 None 4702 DCR_20200621 178468511.35057577 19076.777884742474 15.341452091999358 0.0016390205358017512 90171848.91515969 9633.606469379429 40532 9851 289524 HIVE_20210110 50235666.58065756 1241.6234378001675 0.134641826757717 3.3412134864026963e-06 5169063.87753925 128.27325917665684 None 97 154138 QUICK_20211120 135231943.58516955 2325.6364261383555 374.9190530547691 0.006445832939796735 12476053.961887987 214.49579297446752 60459 3977 5022 CND_20210131 21792803.606732827 636.984501765184 0.011280055747818128 3.301692386106162e-07 700886.7930802419 20.51508113054328 34010 5897 421392 LTO_20210110 59898758.85391783 1480.2365937267318 0.2177712908161253 5.4059912970604244e-06 14124912.535595497 350.63921397996677 None 925 1001701 ONE_20200329 11007581.27415636 1763.0295933085738 0.0021614510548808893 3.457410810795183e-07 72823030.69851457 11648.616009294205 None None 395411 BAT_20200305 329581314.11580735 37647.742477107044 0.23028474805442126 2.6291733749360217e-05 64776602.67804728 7395.579625606974 111176 35334 21544 OAX_20190411 5786981.704067041 1089.7747251141002 0.24562218960011728 4.6277386678163045e-05 13953817.48871101 2629.02227446508 15135 None None PIVX_20210108 22643340.18447781 579.1781303081563 0.34878756420412776 8.838474807839231e-06 520289.08838251175 13.184420754666478 64857 8724 359500 IRIS_20210722 64817068.3411447 2014.1976302396172 0.06187506811269933 1.9159114119633434e-06 3227395.8572395653 99.93370096249494 None None 789272 WABI_20191216 9415683.04511135 1323.1263860941713 0.15932608789739675 2.23889770573177e-05 1267275.9998113422 178.08140311169393 36630 7873 2266956 FTT_20200612 279264280.81343246 30062.041086968467 2.812200936170697 0.0003023996679152337 3104891.2659032806 333.87304429268937 12826 None 12803 ZEN_20190615 68632147.13871926 7888.225681334528 10.263727094727667 0.0011821104993024096 1239774.386046281 142.78929135443792 25983 1666 229974 NEAR_20210325 1604663835.6114218 30358.743710079132 4.849877941264508 9.20533941241732e-05 82081067.24618022 1557.9445348629454 None None None YFII_20211007 164474070.20491612 2963.1975919733673 4138.540933181437 0.07460218166979571 29797036.196553938 537.1274426052271 18615 None 483541 XLM_20200329 810850021.4340605 129701.83265121936 0.03997384050879362 6.3941299069444605e-06 290411550.4396144 46453.609569477136 280832 107236 82721 TNB_20201124 7648216.515252932 417.73318010857747 0.0022489573122203466 1.2249743681787078e-07 591808.6150794966 32.23495530130783 15730 1419 1233768 GVT_20210506 52311193.91755113 913.76958749302 11.803229725052491 0.000206107156516431 5303234.041247506 92.60469498976931 25478 5608 216420 QTUM_20201101 201909004.22058082 14632.428988340514 1.9645713557865148 0.00014237600649762147 140472164.06265748 10180.269443719411 186685 15044 123394 QSP_20190908 0.0 0.0 0.01120344197285589 1.0701992023621085e-06 98252.16402126756 9.38545384719012 56450 8531 551928 ZEN_20211011 865210839.5236275 15812.208404117338 74.47025336886834 0.0013611811935520402 26974629.854474727 493.04732023763717 122081 7879 1549485 BAT_20201201 360822764.73804927 18336.619716809513 0.24240030685556244 1.2339803111617734e-05 127192402.96360451 6474.947289566136 123783 48010 21887 NANO_20200713 138811762.99944183 14958.455902463495 1.0446850004432355 0.00011243818014051073 6661403.4650605135 716.9587794170633 98006 52127 214640 OMG_20190725 240407692.05498976 24471.542339166404 1.7081142630346586 0.0001741928159073684 128156229.27428909 13069.321494744625 289711 40676 None ETH_20200927 39946698187.61045 3720286.101164851 354.2615819143104 0.032991795049960734 10859942552.210592 1011368.4837085811 492370 485285 11971 EGLD_20210722 1487028120.2576869 46208.328482689445 76.74258320529198 0.0023761988596873677 43410018.64030548 1344.114733747824 293844 9710 35166 LTO_20200903 27586013.915477946 2418.0635150590388 0.11431724019939346 1.0018251871027637e-05 6871547.314800288 602.1916871268046 17766 547 1139240 WNXM_20210724 113553041.62668836 3396.573137951699 52.43178306244789 0.0015680596278162973 10336145.394506577 309.11960939915497 31495 None 131125 IOST_20211028 1020325134.8450509 17432.750512826486 0.04465488118234702 7.630962859570081e-07 236875633.9073579 4047.909471089902 264256 53910 202500 POWR_20200117 17888757.19210827 2055.2299560912443 0.041610861609390516 4.775427586758884e-06 564163.7462353619 64.74567007316163 82711 12854 316499 SC_20200626 132685691.33494523 14339.514738492486 0.0029874926805014 3.22862208367646e-07 5990779.747484512 647.4313365656167 106610 30125 209759 CHZ_20210703 1275422038.1102731 37734.123421296616 0.23952935956005975 7.0716137197302505e-06 129097229.62150843 3811.3312783342453 359263 None 35776 DLT_20210804 6176895.66927261 160.38986457369475 0.07511607213530865 1.9556855110790267e-06 301633.3328519361 7.853178713264 15255 2596 None NULS_20200318 10641840.298504446 1959.666908903565 0.12827193352071145 2.3800794036768793e-05 4879196.066321 905.332425045015 22745 5187 563630 MITH_20190818 9762397.81073965 955.1455115942633 0.02014123602878932 1.9706030796752823e-06 1483331.662666456 145.12803178773325 80 2080 648556 HOT_20200105 120468979.93302573 16393.219299478264 0.0006808700153815851 9.259658533435234e-08 9117465.128723674 1239.9520007525905 24744 6787 499870 OCEAN_20201111 200011598.03359002 13076.431545313544 0.5732818817217088 3.752778636333654e-05 35225840.66519257 2305.929883885637 30716 1169 94489 NANO_20190430 186177165.4049932 35771.09321872845 1.396633330342713 0.00026834017866248004 6801608.483429652 1306.8174702574865 None 45340 385823 BAT_20210212 888272059.6855112 18628.51016532893 0.5925587797705645 1.241060260951169e-05 957432527.9836476 20052.55011971301 135736 53361 21155 MTH_20210204 5406617.229895003 144.31337801152668 0.015248609568214189 4.0652638426731194e-07 927784.8442014342 24.734649831774252 19168 1886 1161820 ANKR_20190904 8417428.933365544 792.0680007841036 0.003139780420030124 2.954580206586817e-07 2146368.8930554856 201.9765142491892 13969 None 7336 SKY_20200305 8531406.194857314 974.5547817336745 0.502083533532385 5.7327451435321066e-05 235446.88644660942 26.88311614882894 16267 3825 308227 STEEM_20200506 64080802.91401947 7121.554100370615 0.18197535466827816 2.022364381019247e-05 2367814.3691867962 263.14461372189743 11293 3853 240459 PERL_20200410 5045106.103690541 692.1817478429116 0.014334313323663432 1.965928101275831e-06 2157269.1830150443 295.8660113773587 11628 479 646764 NBS_20210703 0.0 0.0 0.011637701105131194 3.4359357035894917e-07 2282565.36744972 67.39086844513822 None None 626214 THETA_20201014 751851798.521228 65811.03791281654 0.7536118934925901 6.597896355196067e-05 46312781.31106748 4054.698892756913 74657 4461 67184 TRB_20210825 105052008.38545313 2186.088983291011 54.083728709277096 0.0011274321408915105 31888218.810066335 664.7434202531811 23895 None 404146 REN_20200526 84706603.14703771 9531.775201777764 0.0971774353678206 1.0924096785194928e-05 5619224.120025692 631.6790303481245 12376 881 400115 INJ_20210613 224241297.2750261 6253.550393124336 7.712577927905542 0.00021610767075783594 23009623.39128198 644.7333385265819 72847 3648 114245 NU_20210806 131342572.28711434 3205.6943743990114 0.24238677627480434 5.918751891653328e-06 28764069.43285931 702.3790364469671 None 7141 153146 ALGO_20210527 3126524303.897274 79800.05841691677 1.0272817571516608 2.622225877974052e-05 414218285.79789513 10573.281386412636 102673 30270 137086 IOST_20210620 552498385.142014 15498.10272516078 0.0244389846034322 6.861359255148413e-07 85666503.32445961 2405.127156383308 246424 53566 149907 RVN_20210506 1529063893.5650418 26709.61946453711 0.17535647473182228 3.0588366908154197e-06 195192983.11026984 3404.8555061369384 60146 35603 40253 ELF_20200306 46512849.51656366 5137.452058158743 0.1008754723272212 1.1135646509531195e-05 43909888.59827851 4847.2139601707395 83285 33439 755936 XZC_20200331 30461998.372969944 4741.20127408221 3.1056284085926067 0.00048441742884103024 32296545.912552502 5037.6309310278675 63575 4098 105177 MITH_20200329 2053276.7799163964 329.3690585621716 0.0033194393457386187 5.309346891602634e-07 5247467.619250899 839.3172156864906 94 2088 1254611 NPXS_20190726 139169011.46178997 14052.001033394074 0.0005939669881261414 6.006553868811566e-08 3872636.7485904144 391.6244793019978 63854 4675 202780 ONT_20201226 362862771.52446014 14701.295082025323 0.45119711361905995 1.827312112330006e-05 161480753.67876792 6539.840974127319 94184 16675 295641 ALGO_20191108 124536064.98675667 13508.62668896204 0.2724202678543867 2.9549319201310567e-05 127224101.59840408 13799.948211785271 12866 671 351418 SNGLS_20190302 7829583.046146962 2046.2822915949657 0.013272771654148375 3.474312000621401e-06 427705.1232406149 111.9571014346264 None 2187 1603096 NKN_20210108 13681058.14652278 349.961528062003 0.020951325457167644 5.309184765992453e-07 1383827.6902134148 35.066978968273865 13715 1023 376074 GVT_20190511 13270562.207254032 2082.533888291483 2.9954413784915666 0.0004701827773063775 2033184.5660491118 319.1410697954758 21437 5797 192676 SRM_20200903 180971968.40619355 15863.173106205975 3.624082342954862 0.00031769240993923225 226956944.38653016 19895.380896840485 19657 None 111486 UNI_20201229 804350306.086027 29638.886329483335 3.7353916631652893 0.00013762019786580604 223923394.32365412 8249.839538242975 None None 4779 SNX_20211011 1687114004.7265885 30832.945018268365 9.627105344564747 0.0001758899842716566 74791009.47545403 1366.4532597771924 160463 7987 46241 DCR_20200314 121852617.14449051 21994.237129015233 10.564706837160367 0.001907826765797539 60055030.68659045 10845.033064397432 40852 9740 216967 ZIL_20190821 69189276.71977805 6435.819729997629 0.0075235998100027434 6.999955652746633e-07 7130682.443561289 663.4385419116254 65991 10608 159234 VITE_20210806 40407134.915230855 985.4588635090482 0.06139078031790739 1.5004138680956622e-06 7898376.664750477 193.03931016784858 33233 2423 651282 PPT_20210314 103513578.42270982 1685.409297638843 2.8443992400588063 4.6359186778262996e-05 8316275.783085173 135.54207753185173 23995 None 679959 XRP_20190510 12506733788.512634 2023505.3554626673 0.29632271750808825 4.799423425290294e-05 931581746.8368655 150884.66034399354 919601 200533 40096 FRONT_20210523 43848760.652253054 1166.685013880239 1.1412954716429649 3.0390116159687123e-05 21635141.055203732 576.0948554823875 64416 None 149805 XZC_20200914 53841224.7911932 5214.675557240607 4.943153220741696 0.0004786532025012644 8446633.809866652 817.9006684404364 66384 4162 333585 FLOW_20210909 1302692949.3750389 28107.33142031005 21.24441470533705 0.00045887311641057524 247118365.61406496 5337.684098358635 85859 None 53866 COTI_20210718 73305805.25807096 2319.389765024433 0.10920497408143001 3.4618193991381454e-06 7151599.651864348 226.70713140990117 123696 5457 101712 WTC_20210523 24598721.454902004 654.4752318419584 0.8418813779065741 2.2417396286018068e-05 7712585.546972123 205.36870292369886 64720 19745 418074 BLZ_20190701 10783877.20716078 993.9715029293695 0.05174706285824675 4.792348494743402e-06 537372.894965358 49.766654222631395 36594 None 875271 REN_20210108 324320019.3137818 8285.605245946052 0.3646465903338251 9.240351529688638e-06 134207954.91785772 3400.9057383103527 32108 987 104896 ANKR_20200418 5515255.404537754 780.9528146640083 0.0013793633702589897 1.9543773256458305e-07 1677463.8363131583 237.67466622415475 None None 5745 ZEN_20201111 69864550.145561 4567.629638894948 6.779382275153111 0.0004437872847703889 3575162.104283348 234.03481592842672 76357 6147 190205 THETA_20191019 81906997.77014019 10294.9353220839 0.08183496432389871 1.028417608921745e-05 1266324.5280475456 159.13863395835725 None 4024 413739 KSM_20210203 954077129.2289172 26790.18998509899 104.98847893128026 0.0029561960509179737 144025628.86056325 4055.378262478299 33325 None 118660 XRP_20211221 41949396100.263 889160.0482775498 0.8870321270036085 1.8814699767313857e-05 5198337121.310719 110261.11597234842 2312951 341659 18381 XVG_20220115 229854637.5406812 5333.68331136345 0.013946615829258028 3.234736615032995e-07 4648473.116395196 107.81530356672936 336677 55623 188216 MITH_20210707 22930895.212586176 671.3526467988754 0.03710765127584618 1.0865506636940935e-06 7784267.71820571 227.9314633177643 32424 2737 334204 LIT_20210618 76994091.21070296 2025.5460658764578 3.485784852028633 9.135939983611905e-05 8150973.037563219 213.62993885259073 51771 None 250622 FUEL_20200414 1695468.2499299068 247.46831902236144 0.0017117733662121261 2.499881950435857e-07 112076.27591109538 16.367672540799205 1 1468 None DATA_20211207 0.0 0.0 0.1412822880659292 2.799455937647435e-06 756186.4044113035 14.983552069949733 None 4805 145430 SNT_20200217 70704094.27474016 7092.659923494254 0.019575044881742682 1.963239422333515e-06 62857605.13363232 6304.176012741501 None 5612 210180 STORJ_20200905 81878779.53603335 7804.461698281592 0.5737697143511447 5.471235603623002e-05 98577718.89669672 9399.972007261997 82136 8326 117786 KEEP_20210821 212896630.25835794 4332.615999712527 0.38793918597423943 7.890994330102246e-06 14662964.362072485 298.25646087551604 23075 2889 114881 SXP_20211007 465642439.9755781 8388.561830974459 2.474851359612507 4.4612174608509264e-05 146882082.89025518 2647.726338517385 6441 None 170596 NAS_20211021 19182886.210624997 289.40075437501804 0.42252632302625465 6.376675037039849e-06 3228216.130191196 48.71953317398516 25769 5190 469852 WING_20210617 38336162.557983235 1002.2665499442365 22.867717736100545 0.0005978072348456734 7185539.329330737 187.84416735041142 10774 None 434218 ENJ_20190316 147032738.6453245 37466.159051229464 0.17264882002357018 4.399295208000905e-05 20243912.75435057 5158.387318213033 41881 11945 17926 GXS_20210111 26902768.80851695 697.8713823088316 0.3818564620337082 9.932896465640508e-06 17567534.000719685 456.968818745208 None None 482061 NCASH_20191220 2333789.5088778744 326.7552952582612 0.0008086995842517718 1.1317380966308185e-07 264739.53053541813 37.04908698182432 58651 58580 1212439 SNT_20210513 643836410.4795343 12835.06793114901 0.16591653144361762 3.3075947823350767e-06 92550908.4426425 1845.0295410694675 None 5953 112521 CDT_20190909 8012606.319178117 770.8715477291461 0.012039588587278643 1.1590054785233173e-06 292955.2195782557 28.201686626731043 19692 299 193122 BTS_20190725 119979449.93953559 12205.334670617638 0.04427680190519392 4.5095144174730195e-06 11041357.335499488 1124.5428294374087 13668 7176 160624 TROY_20200626 6710132.284159511 724.5648702489713 0.0035330097435914416 3.818169448398115e-07 1264852.5043596842 136.69425049382104 8953 None 743325 VIA_20200325 2820888.166732666 417.39350837440895 0.12177044758342274 1.8017798412773318e-05 246639.93035768732 36.494146436316726 39398 2176 2066197 YOYO_20210324 7024285.637135839 128.8645880098769 0.04009899713361783 7.353236689558802e-07 1900638.1388961682 34.85334570821255 9653 None 1135739 GNO_20211125 615000746.5129077 10750.367428481532 408.53811411610906 0.0071431947271145095 1137196.8470237446 19.88362466235547 90296 2388 126825 FUN_20200711 24489657.42701235 2636.241588695985 0.004072045429679658 4.3834404563537186e-07 897265.6278189908 96.58807891509194 None 16769 233884 ONT_20191017 395905819.6399882 49445.667006826385 0.6062611816269119 7.572434972823771e-05 95930318.3624583 11982.065151732479 81372 16278 327053 NEBL_20211204 30447062.59816134 567.7905437990138 1.6273836427648103 3.034818352397815e-05 2175020.641422065 40.56076505855416 41167 6310 1182243 FTT_20200526 277290248.9611396 31205.356524009436 2.7852925297816675 0.0003130170208675065 2618150.807284453 294.23328326029633 11694 None 13105 GLM_20211230 429499487.6807174 9260.567738987764 0.4293863561382217 9.22698141593751e-06 8387072.145571604 180.2278011749515 163935 21790 244527 ENG_20190201 20350313.44197735 5930.824275226513 0.2643649216254213 7.704558945319406e-05 233317.45381967662 67.99722387044105 61223 3144 201160 EOS_20190803 4265827311.8735867 405301.4897861583 4.186363471360414 0.0003977467885435519 2525484610.0457215 239946.53116811754 1246 67587 89433 REQ_20190915 7609966.7316577425 735.3820771067296 0.010426151320431839 1.0075214629194615e-06 101939.98061708013 9.850875480775981 41037 29365 564071 WAN_20190117 33129181.897959374 9203.668392033273 0.3114517900137211 8.661819814901333e-05 4244263.083964219 1180.376650868371 109191 17320 539346 ATM_20210114 0.0 0.0 6.189939652466278 0.0001656137609592645 4042294.1258762823 108.15283680886591 4807351 None 231684 GO_20200319 4907237.54704712 911.828112811119 0.005012068927423683 9.302696940288354e-07 811836.2892363952 150.68162615585777 10682 678 690987 GVT_20191108 4936912.537678088 535.4725149060646 1.111930649041196 0.00012061067973033949 431515.57784765365 46.80632483987542 21099 5673 115492 TFUEL_20201106 0.0 0.0 0.008642118417704337 5.559386353025091e-07 2440624.3684354145 157.00286840485788 74722 4502 75769 NKN_20210111 14884155.820124319 386.09964867506505 0.022851435394073433 5.944620247590243e-07 1249182.6134421781 32.49649804813572 13727 1025 376074 ONT_20200325 246699976.68103284 36497.08926066966 0.38740605574197684 5.733188082814792e-05 101077719.1175011 14958.402588020448 84305 16533 298289 REN_20210930 808706109.5054587 19465.63811115485 0.9201846287043933 2.2127580254699368e-05 116007040.00085151 2789.608745522295 None 1196 100322 STRAX_20211225 204448971.43427277 4020.940321202242 1.545881926616183 3.0406731080316467e-05 5976607.267174377 117.55690186729038 158766 11172 200312 AE_20190510 120644424.11057433 19528.94194336649 0.453112922502004 7.33889319335938e-05 45847334.16448745 7425.7138104893 994 6353 421011 COS_20210125 24824508.08088977 770.9640311121112 0.008258853541725774 2.559758161053763e-07 1858829.3791285208 57.61276246383787 14594 None 378436 GRS_20190430 24544667.481383473 4715.043327807454 0.34025942066254994 6.534832440168172e-05 1851076.0227728614 355.5073249486947 38943 107052 6885878 ETH_20190723 23300408113.461063 2251449.7344045774 217.65256165832335 0.021051899735632307 9159417328.812357 885921.7358795418 446388 443234 33996 HOT_20210108 140185530.58681926 3578.753460876633 0.0007906955961041027 2.0031078502233337e-08 14379769.810331907 364.28974605908877 26952 7425 750555 NAV_20200320 5073849.011828662 819.8304555922103 0.07148723429406428 1.1565974150740727e-05 342579.2220307062 55.42615357434537 49595 13973 1082339 MKR_20210304 1995892756.9914644 39273.175446409514 2206.0223454061943 0.04353858980284422 103656149.71728225 2045.7828056369815 115002 22592 31879 TOMO_20191019 21006157.574910812 2640.2754473822524 0.32435781095958993 4.076195146390955e-05 994447.3028801199 124.97190239844517 17791 1337 283886 COCOS_20191030 14923036.69836461 1585.8361751017283 0.000949591646886848 1.0091088132032927e-07 4758592.08187941 505.6844406758044 13338 150 65492 BTG_20210125 194443315.22384232 6038.7421027358905 11.095445701583605 0.0003439179179927418 44667311.91666581 1384.5220219066596 83124 None 278818 BEAM_20200313 12406091.697553515 2584.771906015232 0.21717980133827375 4.5320636863156334e-05 29930810.185953513 6245.90026834418 15009 1470 244463 GXS_20190726 96320366.55496086 9723.612306064608 1.6043439179783683 0.0001620802768081349 9451981.038096312 954.8948239043023 None None 762110 ELF_20190410 67488186.3473968 13042.015336626499 0.20392674205027428 3.9449384230608316e-05 13491993.936686933 2610.0100825137692 86141 32277 1025647 VET_20211204 7358153825.770802 137043.20191012206 0.11027611005668563 2.052033702663834e-06 515334710.1027249 9589.42233943241 519435 217878 34237 EVX_20190228 4833972.102689886 1264.8488619622876 0.2504158478833711 6.564421593214556e-05 424340.3376171497 111.2369244467034 14033 2317 1312426 ONG_20190513 0.0 0.0 0.37543120589804274 5.395260842435173e-05 5203214.166825435 747.7454513118184 79816 15711 249396 DCR_20190614 278268922.2346851 33843.61481384586 28.062326871123112 0.003410962833833111 12450774.604670439 1513.38588649489 40442 9489 369344 STEEM_20190701 109240188.21412848 10068.443160129298 0.3471977314330715 3.218940377184787e-05 1041747.616739555 96.58252813225508 5827 3753 330897 IOST_20211120 996555999.6340489 17143.505933052216 0.043680929649087624 7.507960153351578e-07 100969428.91899364 1735.4814907111365 267660 53944 190194 WAXP_20210902 542606422.6681343 11154.599245480757 0.3484248898229945 7.161097374380847e-06 71759464.11498597 1474.855916068052 135101 4883 3873 SNX_20210703 1087107635.4584925 32162.72924796208 6.908779301200554 0.00020397603663105455 27509972.53245977 812.2093528194217 139017 6994 47664 POWR_20200107 16071265.844988152 2071.3298830724584 0.03724744212255 4.803940027448738e-06 747784.8917631397 96.44457629179169 82820 12860 288049 EVX_20190807 10413946.761744108 910.9722318392292 0.49538743110579536 4.3260425812947574e-05 2061263.651328975 180.00283751688303 18241 2917 1025264 BNT_20210804 822045277.9363248 21395.928551623765 3.4630735250642286 9.014773279626925e-05 64780828.275963835 1686.3184554056738 125998 7650 39422 QTUM_20210523 1002015823.4316965 26659.700161736844 9.701943583841034 0.000258332214558489 821248867.3372803 21867.271930568924 243844 16614 95326 VET_20211007 7515543379.285015 135392.72823544528 0.11270415947248912 2.0316539330361603e-06 534171651.6824742 9629.209269086725 440235 206647 48603 STORJ_20190510 29249617.755105298 4737.446450787475 0.21296608174247808 3.449783573242946e-05 3282942.361502137 531.795511188884 83968 7695 186547 FIRO_20210819 81685341.56962408 1812.2017313438498 6.694098731458145 0.0001486109826686115 7587080.479019007 168.4354430379384 74003 1134 376180 SKY_20211028 24124527.64730633 412.2770410109564 1.146889634156403 1.9592320906549724e-05 685439.8044415117 11.709371338610778 None 4466 487288 WAXP_20211011 490061728.14965427 8956.150134053676 0.2735396129640211 4.997647423592406e-06 8613173.497978551 157.3651577359976 161513 5126 4606 GRS_20201031 12882947.6146483 947.7933748102779 0.16975661238978296 1.2534175196032363e-05 1208817.7016593302 89.25444870373215 37436 106813 3829127 TFUEL_20190810 0.0 0.0 0.00608948853285121 5.135206468504305e-07 783206.8148397059 66.047069142905 70400 4020 242693 OMG_20210420 1106974354.627723 19775.43512479469 7.869727821694121 0.0001407060336754327 749196767.1087296 13395.190777974472 319050 4459 121524 ONE_20200807 67050600.779135354 5699.004515521871 0.009634152231373448 8.18038456011208e-07 13449422.257191023 1141.9940596004938 76707 1383 135490 RUNE_20201129 173574347.44426274 9806.792292979084 0.7944524612937598 4.484808050874258e-05 10280943.912671326 580.3753185564865 23850 1951 241480 QSP_20210324 74268346.45111077 1362.4680533305134 0.10443700196349955 1.9158552792635537e-06 5891931.007287453 108.08513183204407 62033 8324 197128 IOST_20190723 105193101.13625956 10167.11737980001 0.008750380953197837 8.463587153386623e-07 34990927.93444471 3384.410001519025 197442 50474 111016 APPC_20210610 9773537.968784608 260.63093653013055 0.08661910058722483 2.3098715510749056e-06 802975.399397483 21.412944936013453 24793 3130 545194 QNT_20210805 2282506482.3180265 57334.836481460356 176.222451040387 0.004431605972604806 80676179.19653498 2028.827969782135 37469 5785 173273 XLM_20190324 2071884301.1079903 517644.24457453884 0.10788583298902979 2.69386793274599e-05 201434926.10692212 50297.5296144465 267117 99762 74655 ETC_20190701 863937700.8307831 79621.83766363254 7.746477310685414 0.0007139786919032635 1013533272.3580865 93415.51404281237 228290 24725 547653 ASR_20210104 0.0 0.0 7.64583443606521 0.0002322712 1903743.9620703128 57.8334383592 None None 243323 AXS_20210201 44318781.58765724 1340.729884492282 0.802943712025281 2.4284808491053704e-05 8155337.511599384 246.65590711153337 None None 20130 APPC_20191024 4237811.074945496 567.8589909805529 0.03852585802627845 5.160295204799963e-06 753600.8418489384 100.94007011793855 24991 3277 831430 TOMO_20211202 247739684.23451662 4334.1889332670735 2.904792742562168 5.0798513585470935e-05 11672890.155506797 204.13348617195928 60920 2369 107758 AION_20190909 27723838.4283106 2667.5091758778053 0.08006389178128535 7.701381253299852e-06 1355225.4555345045 130.35973751762864 67396 72571 168998 CVC_20190515 25092228.713656023 3139.166664445541 0.07321923080740686 9.16010176576563e-06 4959362.379343825 620.4417007273926 89067 8196 436326 DIA_20210125 53180925.80543236 1651.6170553563966 2.1042553811977998 6.522037283599133e-05 47580207.641398184 1474.7254110475164 None 200 294987 LSK_20190830 151767572.5768296 16002.241696981106 1.1257745132963466 0.0001187006918025897 4085845.094246147 430.80797580426884 181959 30958 173926 COMP_20210421 130449.09244158304 2.308043731590332 1.4143397911307787e-06 2.5024e-11 279.1603345627329 0.004939200788880219 2402 None 1922361 MTL_20200105 13546553.872408925 1842.2967722112435 0.23143105396883687 3.147403300736409e-05 2050919.1228234924 278.91976923664197 34574 None 546427 CHZ_20210724 1284405693.4410403 38418.86226231247 0.24032690849345065 7.187375684661441e-06 195042918.86212647 5833.082700904651 365468 None 41451 ACM_20210722 14398955.811374696 447.43718755260227 7.21219285025476 0.00022359555937153538 12144176.786995 376.49908400592 None None 42486 AAVE_20210304 4948726824.161998 97334.01361001303 397.85834336965996 0.007852210032393335 848542075.9759058 16746.992272310305 140940 6910 14216 QKC_20200109 10425222.673218494 1295.7278496157503 0.0027870813314467757 3.4733079711670754e-07 1528150.0551535087 190.44064871077293 50931 9207 296858 AAVE_20210708 4040314911.458308 118910.44821219178 314.8281008366063 0.009268708785888907 469755588.1394431 13829.85742199734 251023 11803 14216 LRC_20200914 298928461.00683606 28959.174665481958 0.2518080258612209 2.4387076624624606e-05 61066449.36101033 5914.1569243765025 40488 7086 169251 CND_20211007 31076630.4142049 559.5650589528143 0.016098868053798017 2.9004041178695997e-07 351673.53635500383 6.335820441420303 36642 6309 238436 OST_20200317 5221260.937699291 1036.4097643045138 0.0075022714774893315 1.4897996401933256e-06 1187329.5014718422 235.7796661172858 17818 752 732102 ONE_20190629 45570927.26027207 3677.1704964808546 0.01852456563508283 1.491500946324458e-06 27196914.200342394 2189.7530050633436 61155 None 209250 RCN_20200721 29524529.039415613 3222.5731264645046 0.05760601825199151 6.2872551185964314e-06 600889.6368762559 65.58249571486712 None 1134 1028220 XLM_20200319 744953086.5744495 138196.66432713604 0.03675784374055225 6.818968179810003e-06 310282901.33652467 57560.75481159605 281324 106815 82721 YOYO_20201101 1384970.573069861 100.36938986260587 0.007921073991190339 5.740544260283964e-07 1517677.702399646 109.98882264148628 7727 None 3755100 POE_20200707 5638879.328694438 604.0705928453934 0.002148164904455052 2.300138951144159e-07 378550.9749347126 40.53319373364465 None 10255 701403 VET_20210624 4963224777.798488 147224.1752015635 0.07647605767806859 2.2692187517351638e-06 1128298891.3425653 33479.1970131953 383350 189220 26602 MFT_20190801 15857685.450147914 1575.140987421994 0.001787460357353913 1.775181093761937e-07 888514.5332564799 88.24107312256986 18847 2165 955030 ONG_20190930 0.0 0.0 0.12525667453881434 1.555618397290688e-05 4300852.60142873 534.1420291934072 81636 16299 297056 LINK_20210212 11200755680.494366 234898.06842210912 27.763871998933464 0.0005805721985686421 2068178125.7815418 43247.812177015105 149622 36163 38996 BTG_20200430 175123084.404577 20058.73143008183 10.004986221687647 0.0011410609803286405 47594144.72993345 5428.075585523435 75156 None 211621 NAV_20191020 5423831.795810376 682.7066202977966 0.08167565849680708 1.0274201877638015e-05 151346.18113000598 19.038245261285994 50918 14150 427843 VIB_20200903 3918170.4977476024 343.44626888591563 0.021445914160768447 1.879980504948834e-06 499972.80396146455 43.82835431522957 30671 1099 None ANT_20210427 302422005.6174105 5610.16156159462 8.621242350010446 0.00015993069798765926 75709221.78340101 1404.464483463587 82852 2954 100052 BTS_20200224 88504028.0627365 8895.763259721802 0.03249619023710446 3.265724566070246e-06 13848023.255769348 1391.6655893477946 13372 7047 139878 POA_20200721 3940154.7448686347 430.20705733206955 0.014198353283560106 1.5502517491315355e-06 1573264.882315369 171.7774298855222 17275 None 642825 SNM_20190626 9620437.627567736 815.0253231601178 0.02329489539940795 1.9700580342289937e-06 919907.2564271837 77.79690143257668 31320 9993 15028658 PAXG_20210120 104747941.42204632 2892.563764747367 1849.455615188858 0.05114747787575756 6255041.296190366 172.98581468048744 14522 None 66993 COCOS_20200324 6985250.894732076 1084.2866753987244 0.0002899175416154853 4.472391830240008e-08 502314.9648971333 77.48925203680191 None 216 67575 XEM_20200418 331433583.14121586 47079.110195245936 0.03682595368644909 5.231012244497439e-06 15893721.455263432 2257.6537257121445 210566 17972 216672 KLAY_20210821 4787529075.999685 97442.01962593972 1.9155175584257813 3.8963164174275634e-05 75378606.34315695 1533.2613377818407 None 721 64531 ORN_20201228 36486695.73779718 1376.5249539420324 2.202231059412451 8.365669087293404e-05 5157138.218952394 195.9054731918086 None None 150714 RLC_20200309 36128579.31574935 4472.191021464455 0.5044088169010406 6.270175717839524e-05 801657.5470598885 99.65197905301204 28458 3565 249120 LRC_20210217 858801167.8783674 17462.541481300937 0.6934685447718396 1.4092144230529744e-05 109188424.80195574 2218.844736670448 59012 8941 128184 ADX_20190816 7521731.6150071565 730.9112740746559 0.08178894017165589 7.936645359760283e-06 189866.88817638668 18.424326734820134 53891 3845 611553 LINK_20210219 13212958249.981981 255652.61885426776 32.49662122187919 0.0006285558950602554 1836971934.4494314 35531.06430895777 157607 38843 34188 VITE_20210930 57108684.84193925 1374.5801793294188 0.07456204260891412 1.7937788873110992e-06 4801249.757623803 115.50623006810537 None 2526 540843 AE_20190702 147570125.60944185 13925.76330164518 0.4651176152740016 4.38171606266868e-05 39027964.434672534 3676.6927985714897 24773 6361 357340 BCH_20200314 3210085433.809435 581192.5384184386 177.1695162335295 0.031994143364661574 6837158674.450623 1234687.7695877247 None 287218 124622 BRD_20210809 11808188.839519523 268.41467692192396 0.139571835656222 3.1735215248195843e-06 4140504.1903541293 94.14491906561626 801 None None RSR_20211230 385934297.2710201 8321.245554857916 0.02959085490606986 6.358708524313678e-07 51089319.853875965 1097.8462592156854 None None 97056 YFII_20210104 64842438.412202604 1942.601689517198 1604.9693435514987 0.048756459782886244 96570010.43265657 2933.6459595383208 None None 153054 MKR_20210828 3388288236.325762 69076.36475359982 3754.888775492614 0.07655944381578672 89083942.00373523 1816.3566114761968 174327 29666 37059 WAN_20210826 160293201.09584096 3270.2383594783446 0.9070165780831818 1.850897175718614e-05 6250625.66611765 127.55296508847748 123775 16765 387619 ETH_20211230 432082393736.3374 9298400.718710728 3644.405516878227 0.07824689609970908 15528813680.462475 333410.06234885706 2029922 1194375 3727 CHR_20200719 13759363.395391684 1500.4148151300105 0.03648622687836063 3.9802584179202726e-06 2776472.2560680388 302.88352660250297 23137 None 371620 ATOM_20190608 1513861328.3459 188383.60477306833 6.321290841018009 0.0007873731773062757 108332196.85446066 13493.741735213192 25519 5059 120610 BQX_20190131 13809607.662038472 3993.0934427617312 0.14819867291314726 4.285213334932111e-05 1865886.297578066 539.527155451289 60709 5831 338821 CELR_20190920 18580927.115955684 1814.7096529129276 0.005711226005593697 5.576268748171973e-07 5311222.846312176 518.57177326655 18406 None 536359 SC_20200403 57645758.32918266 8494.732864518728 0.0013174992280204662 1.9326371434616042e-07 2597089.9859777787 380.9666423375591 107306 30135 166038 SALT_20190131 17186636.146052975 4969.572328009613 0.2142424953504527 6.194892166969229e-05 1090916.4087228244 315.44206503758625 43076 None 369410 GO_20190430 14919234.815084402 2865.9927303643954 0.021078102913233646 4.04814275021079e-06 741147.7159601448 142.34069192800362 9492 656 898159 CTXC_20200127 1535560.5712909594 178.83624209481823 0.07209024012052966 8.39100220881001e-06 3384738.415071849 393.96938433867024 17070 20063 482146 LSK_20190524 248537510.5772749 31594.784196320266 1.8789433423906021 0.00023885653832316048 3570633.118315142 453.9088790073208 183283 30406 175336 TRU_20210725 49980633.91649365 1464.829711754761 0.13998655976236388 4.097293105820341e-06 2558256.171076843 74.87808394226722 None None 118402 KEEP_20211225 371879072.1501949 7313.822834763993 0.6757407229914076 1.3293405632348177e-05 20123819.408222113 395.88274787017525 30748 3638 142199 PPT_20201115 10137304.500257356 629.8096117301706 0.2806683516729884 1.74413387641057e-05 1992589.737060726 123.82383840144632 23442 None 1538811 STPT_20200404 9810484.572396722 1458.818349864124 0.014096472908359633 2.0954523940119063e-06 5344176.947114626 794.416337381357 11205 None 1339283 GO_20210304 21063564.206837554 414.36806283348284 0.019861037646443588 3.919968342361891e-07 733199.129648419 14.47113402649306 14847 723 401211 HOT_20190321 213266169.627063 52769.78326006788 0.0012006916437881476 2.970946489810024e-07 9259450.04176715 2291.123682044479 19563 5769 221294 EPS_20210711 100323673.83301194 2975.9821099244405 0.4362413112643274 1.2937258118266818e-05 7661179.70006949 227.2014518362966 18088 None 20273 KNC_20200511 107971263.88660164 12354.796452024208 0.6020490375876633 6.876611489195414e-05 71545100.39090613 8171.890138967408 105694 7523 115849 RENBTC_20201226 345946426.8522677 14008.29534070484 24716.7020051045 1.0020474366818566 10945178.00273799 443.7318360437091 30444 2080 102602 DUSK_20191108 11913578.071084265 1292.3271488183652 0.05607707082199529 6.08228926732047e-06 426111.83423914487 46.21738257866396 18910 13334 414113 NEO_20200316 426840079.8917772 79006.31221651981 5.989081184105199 0.0011156565913224702 516029677.42342234 96126.91717443528 322641 98954 219445 VIDT_20210427 37309747.35769389 692.5935048015621 0.8100520872007991 1.5027625688606515e-05 3465454.8388421973 64.28914755204075 26817 1525 436797 TKO_20210617 137442839.8977294 3593.3268164355945 1.8374352108253797 4.800907530955123e-05 17409467.735039152 454.87995585719085 283018 None 20731 ONG_20201111 0.0 0.0 0.11880964095108809 7.777435439136287e-06 4693651.231527582 307.2525860258815 93577 16681 220427 TNB_20200325 3326018.7132951864 492.13529130053587 0.001076409122215084 1.5929683752354343e-07 306571.63376533444 45.36926594671272 15111 1446 1775001 ICP_20210718 4418987719.248852 139807.77438050462 32.30671422260622 0.0010241038706822303 115029405.41398782 3646.3646075251404 246007 21623 22362 BCH_20200605 4774522155.648067 489176.69138955075 259.72287786887415 0.026569717668003565 3179699668.7905583 325284.09958349046 None 299180 152182 XLM_20190411 2429905166.2185707 457540.22966668865 0.12593314310086456 2.3728904364690886e-05 296493788.3363458 55866.72876514388 268308 100170 69980 ACM_20211207 11818698.404593028 234.12160942090316 5.915158419765261 0.00011711520888791047 5888998.094055051 116.59725623259534 None None 33797 UNI_20211216 6873747914.790969 140895.5660254409 15.208929189148954 0.00031121614247175034 184226251.340373 3769.771202898885 None 58807 2356 VITE_20200322 4193789.2217884166 680.6285584303696 0.008795316382694044 1.4281490107587645e-06 1903606.776277045 309.1002092617177 None None 513506 APPC_20200520 3588914.175478357 368.0533763268662 0.033090834366727544 3.3896390202253e-06 1901161.4009057416 194.744284681317 24598 3215 1178523 BAT_20210105 317499488.16050863 10148.197301358838 0.21361523787880315 6.827757717438846e-06 166696242.73112112 5328.091614986845 125563 49090 23893 LINA_20210408 282145838.00648355 5009.245301256837 0.11292866949366277 2.008526472888221e-06 69347027.20493397 1233.3921986482435 None None 83193 COCOS_20191024 18206914.576510366 2439.693501537058 0.0011607254422842097 1.554718373779752e-07 7419543.878293691 993.8010120591293 13045 148 65492 EOS_20200319 1857600697.9497468 344984.16636609007 1.9935630735370025 0.00036982700233571467 2328904913.728537 432036.45492942794 1477 70401 93580 ETH_20210902 444243407062.371 9134142.00949316 3790.6139962215557 0.0779113808278465 34465100677.998825 708387.5031512678 1540028 1085850 4066 PERL_20201208 0.0 0.0 0.019922876938398223 1.0376594872969877e-06 1015420.2912219501 52.886965172663444 13311 503 394005 LTO_20211021 84743834.32813576 1278.5033780816584 0.2887718409998912 4.358136715764989e-06 5912327.376698349 89.2286828479972 13606 5181 332135 DNT_20200612 5108936.340349528 550.5914493141789 0.006815126021103452 7.329007976465941e-07 320138.6099565348 34.4278068913283 None 6020 623804 FUN_20210729 170947016.49797115 4275.28183927788 0.01614470343649634 4.0340248728970395e-07 5003220.31162595 125.01384903768056 None 346 132450 YFII_20210429 98044727.46410024 1791.167206627645 2470.115743862426 0.0451145104797683 73780086.78522287 1347.5289596209047 15671 None 334053 RLC_20210930 233014691.75528333 5609.632491822541 3.27668941215226 7.882989864327871e-05 13884973.829838783 334.0417543424795 47551 8034 461414 BTCST_20210710 133476265.08592074 3927.3925118960683 18.311608611435403 0.0005388520027614784 2023459.6325628574 59.54393732687099 63282 None 922062 GAS_20200223 26727955.148902565 2768.9354116500776 1.9178550423285732 0.00019868073590151368 4941634.947942423 511.93007101400747 323157 98913 228840 ONT_20190714 695038960.511009 61066.91400956328 1.072422575773803 9.408549799981565e-05 130935722.60317768 11487.218700330739 81091 16273 247326 QLC_20200531 2898757.320501895 300.29183898696795 0.01217370314168166 1.2603604411024796e-06 158633.3736385516 16.423534108376533 24332 5649 940522 BTG_20200129 198677100.5866016 21264.19471022007 11.371507999731945 0.001218907034168981 39473620.997669935 4231.1603966083 74847 None 214160 UMA_20201031 379198670.9179313 27919.90209061708 6.8410704351842595 0.0005040706145024897 12574785.848764796 926.5479854474495 14242 None 88747 RDN_20190410 18498255.359410565 3577.452803351868 0.36581543844274517 7.070628270647442e-05 1891439.8297099269 365.5851155190856 25577 4458 1172617 ICX_20210128 466445986.7090222 15419.256984399819 0.8018742904618823 2.6371268310310034e-05 102851950.28049636 3382.4957469621854 118531 28213 307045 CMT_20190703 29939288.27882081 2770.8463278259487 0.037370627223959896 3.4553937025210115e-06 8685574.977021003 803.0927845687972 291034 1644 722276 ALPHA_20210916 496498081.6058971 10302.404046755018 1.2195334218194338 2.5302525858980014e-05 54122574.22596477 1122.9194783886785 78063 None 59995 QSP_20190511 0.0 0.0 0.020265861898977923 3.1805914271861766e-06 220537.9435597553 34.61195463346184 57166 8607 818331 ATM_20210203 0.0 0.0 4.395882276398248 0.00012373803170273543 1145579.480210972 32.24648457976729 4829097 None 233968 REQ_20210325 95955701.95724232 1815.28409954641 0.12399646269268724 2.353522168699617e-06 2057119.3215977019 39.04527453367455 41992 27412 352445 LTC_20200501 2985326129.7877245 346691.3810676428 46.19229238099793 0.005364395360512005 4667497418.353732 542045.0080654256 133084 213345 149279 MANA_20200217 76149998.87529984 7638.964203377552 0.057185337795409734 5.7481734994160736e-06 40591280.91318457 4080.16694921491 46877 6627 66224 TWT_20210729 115275025.15005495 2881.4934332504718 0.3322582230330355 8.30464313209472e-06 5145491.1822137125 128.609211286176 942967 41873 2945 OMG_20200612 211377748.9425327 22781.544497113333 1.5121306808485204 0.00016260140228659437 99843231.22940189 10736.274061720309 None 43048 406561 QLC_20210112 3505450.4129306786 98.95969712502206 0.014764180753722392 4.153457154635029e-07 1556713.716886483 43.793447350544575 27309 5595 940522 VIA_20200421 2670270.2551008514 390.32363532577097 0.11565364915707074 1.685808342405924e-05 32996.060370732615 4.809622026190065 39183 2170 2765618 TFUEL_20210722 1464710044.4892564 45514.75183043837 0.2764315526736109 8.55947932743233e-06 134282407.6397995 4157.946085075943 183297 21669 19127 KEY_20191019 3518403.1361385826 442.1566955377426 0.0013459724031476318 1.691225069494388e-07 115206.17526151222 14.475747891055596 23655 2799 382534 CTK_20201115 23415830.958371483 1454.7768002684402 1.0456277996690326 6.500210422120729e-05 5217062.942646225 324.32197119647003 7447 None 341284 SOL_20210124 910358037.3778708 28434.083413683275 3.5015683031312848 0.0001092624654776189 34563933.459064916 1078.5283219992077 None 3055 90687 MANA_20210131 206232732.18106997 6028.620202523292 0.15560666225132186 4.554634688591487e-06 60682444.98648391 1776.1859609686242 59484 8525 56631 OMG_20190221 186474031.598396 46964.16349998531 1.3296267418229006 0.0003348713338885124 59800347.129197516 15060.935058132074 287895 37068 None OXT_20210418 0.0 0.0 0.8021493458904753 1.3311597910451881e-05 59257648.409941316 983.3754684127998 None 3577 93493 BNT_20200308 20135192.321743257 2265.2784051952553 0.28869469134674136 3.247798978904684e-05 2178630.757126084 245.0947301939122 748 5030 123445 AMB_20190804 3828386.959846616 354.74529432714246 0.02639933144268773 2.4451287081506614e-06 107660.45066821126 9.971603229149064 19372 5642 834562 ANKR_20200502 8075690.230255159 911.3620555853003 0.0015679640388142086 1.7751684174528096e-07 1953192.0745702987 221.1303829785836 None None 5876 BAND_20201129 133479853.68800344 7540.794269073323 5.918535001647308 0.0003341526303576069 59490785.228390396 3358.7707702283055 39643 2749 283942 AUDIO_20201228 28362529.465341087 1071.3317101070293 0.184785651828424 7.026521991999647e-06 4805523.379876379 182.73126391394368 None 2324 53020 NULS_20190726 41239194.69405642 4163.127232188348 0.5642187757958035 5.7000705607165114e-05 4848644.837878428 489.83867402816185 21332 5313 418042 ALGO_20210218 1090835698.4510388 20909.59167636807 1.3645227085073286 2.617010805190361e-05 921787587.0101689 17678.914834146242 53590 5840 202160 ZEN_20190818 38131913.87906433 3730.5289896349154 5.349445004217661 0.0005233479685804152 2515376.04485925 246.08476996305706 26684 1782 227019 ATOM_20200313 295709804.27253854 61446.07279669606 1.6092393792935413 0.00033581278316604146 171617510.0620624 35812.79108349161 31661 8256 85359 REQ_20190414 20014828.26902977 3945.0639958009433 0.02736229919286883 5.392553652237377e-06 175601.22822083885 34.60743696664369 42165 30412 347725 ONE_20191012 17965330.680796437 2172.7965657820855 0.006475028004571084 7.831149262792851e-07 12443900.159239521 1505.0134067296851 70411 None 165912 TCT_20200610 5328001.584695198 545.0523047153073 0.009192010804273745 9.412956312094177e-07 3493960.3058696645 357.79435441972214 None None 990413 ENG_20200422 11500845.665233117 1679.3800730356397 0.13899928715963225 2.0305328420535467e-05 939205.6903691343 137.20127913662802 60827 3577 458891 COCOS_20190916 19956056.583737243 1936.9877812244372 0.0012698557954223138 1.2325557152681845e-07 1640873.8308195656 159.26756608911225 10212 126 135713 STPT_20201229 15573178.350918708 574.3059260714807 0.017078852141575503 6.292231773770125e-07 1752571.2522651465 64.56865149885634 17741 None 2012677 VIBE_20200417 1554511.9632667555 218.94410304 0.008293972249351153 1.17e-06 17728.296991884585 2.50086531 19174 None 1007181 GVT_20200312 4337101.277386332 546.8227070581715 0.9700173991125177 0.00012219638757369832 720506.2077350913 90.76461503701356 20722 5603 171820 MDT_20210115 12811176.875379764 328.0216291205823 0.021225519628706606 5.420817573617102e-07 1248522.140617133 31.886195859035425 13740 72 1369225 HC_20190804 122756513.04296175 11376.894619469635 2.7764872992664325 0.00025727116144801256 39020841.29471199 3615.6971304070016 12923 847 463002 UNFI_20210212 63472730.16865706 1331.3475428857773 25.88383748998556 0.0005421133431214559 51077478.016913734 1069.7711410325048 14031 None 111570 CVC_20210610 198919383.86994287 5299.440296731863 0.2969728196030954 7.915366156849173e-06 45472146.06296579 1211.9920149835496 None 9821 135112 QLC_20191220 2898320.8456093273 405.79567268498135 0.012075893494672403 1.689966086902571e-06 71498.57440718649 10.0058986163908 24531 5702 940522 CND_20200621 14082136.759346489 1505.2579275596959 0.007303010856434893 7.802250201023816e-07 57060.854060008285 6.09615771922356 34365 5934 350582 TFUEL_20201208 0.0 0.0 0.012997831251752218 6.773762066533457e-07 9581959.045932326 499.3595427672878 74925 4554 81401 AKRO_20210723 47500739.40604795 1467.458910407208 0.017532692106344727 5.415563227050399e-07 9563038.74550802 295.3867019103697 43603 None 233466 SC_20200423 60180030.77290746 8459.086412109342 0.0013660243826136103 1.9201250223984512e-07 2373260.282312978 333.5926145047829 106979 30079 175217 APPC_20190804 4873342.90558798 451.572811612848 0.04489689597658022 4.159041668392014e-06 73641.61942605196 6.821820463503366 25356 3337 1400807 TFUEL_20210704 2025748665.9302628 58434.677050207596 0.3777721241473505 1.0894482795716965e-05 41795466.11777481 1205.3297674803105 180800 20983 18384 IOST_20210203 306643908.03872913 8610.522267780289 0.01659648983281439 4.6683816113918563e-07 185596126.2422535 5220.583096925685 202685 52236 229978 ARK_20210916 322435124.25152624 6690.573542923887 2.0240503002407433 4.198718099004228e-05 12542305.824582316 260.17933676181997 73867 23595 161647 LINK_20201101 4386318369.521734 317878.3051803004 11.225566467836583 0.0008145842084017658 934445822.2763083 67808.14247674942 96435 23902 34744 VET_20190826 248169543.30389386 24582.498619296162 0.0044776392059647 4.433042781462791e-07 32050013.89451055 3173.0801926063496 113639 57385 133902 ZIL_20210806 1063346034.6502789 25953.217924393575 0.08627599231688396 2.1057881173737065e-06 118473121.79467605 2891.642105802524 310607 35385 45480 ONG_20190703 0.0 0.0 0.3608035999860234 3.3435959474387346e-05 9808055.946988717 908.9204242384004 80870 16274 247326 UTK_20211002 163467673.23886448 3394.2652414084105 0.3638814236035377 7.554532937375107e-06 11781300.283575553 244.59127414635327 79664 4129 197443 DUSK_20211120 130244274.73238496 2239.8615414621913 0.34158510649472373 5.856535870158502e-06 36720030.20372142 629.5712838543208 30323 13751 420874 APPC_20201228 2961137.527628499 111.53194728918133 0.0265860257486331 1.0109404748378e-06 551765.2122788568 20.9810142732163 24282 3131 524554 YOYO_20190104 4017220.0844733454 1065.4337618674745 0.013761728193045072 3.649006185177669e-06 109020.72003063699 28.907509007870612 6914 None 756240 VIBE_20201226 2670992.7827788605 108.53639296 0.01428642380597383 5.8e-07 73564.39044413471 2.98656592 18490 None 1358050 MIR_20210930 296609310.73531246 6213.759998811874 2.780414422434752 6.689062023821043e-05 16801674.898724005 404.21112980426363 64506 None 15403 OMG_20200425 86346912.73118758 11514.826900587272 0.616992020171004 8.231758354979863e-05 85678440.64334574 11431.010394786512 279298 42866 554099 BNB_20190224 1538120596.8900266 373804.4396638058 10.648611505285574 0.002587897376173962 90622220.43183246 22023.6231138858 919661 47615 1153 YOYO_20190803 2989425.680734804 284.0365243156336 0.017093184853266486 1.6240444771254264e-06 1579277.194960905 150.04906507146674 7597 None 1167957 HOT_20200309 98838960.97743338 12234.821358211084 0.0005501415535989623 6.8386675553046e-08 9172658.146752544 1140.2294419269506 25142 6921 537857 BAKE_20211225 222546015.31106302 4378.346214163028 1.15525955917002 2.2723276297303585e-05 16599874.792022398 326.50977730992884 None None 29841 FTM_20200417 6663559.34265931 939.2334609642326 0.0031401814056639973 4.4297378073748676e-07 1605080.6146786457 226.42278786511847 21466 2333 315256 DOGE_20200208 341082966.9310376 34821.0552763449 0.0027733568756612595 2.8292634367121964e-07 74768228.3109035 7627.5439502300305 139357 148156 121472 VGX_20211111 6257616842.408161 96356.73383314017 313.02558152903026 0.004819018026874704 283073519.4811354 4357.907065125756 None 11994 29572 TWT_20211221 234195423.4442141 4963.175769727241 0.6729634005400331 1.4272515909866524e-05 6659920.877189336 141.2466511579369 None 61987 3138 FTT_20210707 2485334704.7599497 72763.66739079065 28.712448947606184 0.0008405926577982921 115571368.48778306 3383.495569458585 149730 None 2913 CELR_20210420 306880193.23467296 5482.384340118397 0.054535300810317884 9.75167593252036e-07 67172995.01689963 1201.1472735796797 46712 None 141780 NXS_20190730 16512289.033367539 1739.7009087248043 0.2771487323329937 2.9136911706116703e-05 488806.9083607741 51.38873849560181 21484 3534 1023997 CTK_20210710 46368965.79025221 1367.1452256921145 1.0251011408377573 3.016337103193195e-05 4484211.846442596 131.94692730464936 77791 None 123040 STORM_20190227 12914806.871954573 3397.9559807517753 0.0028580289306923867 7.519629673516001e-07 1590359.9871315602 418.4323686293069 26569 2569 3385939 SKL_20211230 540478456.0793865 11653.418682788777 0.20631366014090605 4.430033552752017e-06 18503469.44888068 397.31247288657255 None 3240 166833 CLV_20211002 149025416.88888592 3094.234331298158 1.1571985035802803 2.4027350148194523e-05 38258898.48564514 794.3839776448964 73353 None 89370 LOOM_20201101 14290120.862293428 1035.610965243908 0.0171702913144934 1.2459636846406612e-06 2171326.7516337694 157.56251483868724 None None 386788 DENT_20190220 18418630.891922362 4704.615691967368 0.000984328644017977 2.514241157159433e-07 886862.5099882374 226.5286331861965 42372 8810 243701 RLC_20210304 113360506.52872957 2230.0581720582645 1.5867030771834305 3.1315482077280534e-05 14822804.373658124 292.5457644679822 35300 4098 336162 NAS_20210325 43897535.39615335 830.4587744891365 0.9652014956292828 1.8320063878398957e-05 25544282.592388242 484.8447613680112 24312 4864 502889 GVT_20200607 4888272.071822298 505.53423813584965 1.101794976523313 0.00011394518878139639 392893.79345674743 40.63220328679797 20370 5545 237369 MTH_20211230 10551484.746184703 227.06764906338296 0.030764060192798343 6.605758376827798e-07 479351.35106674867 10.29278704731617 22527 2096 1070473 HBAR_20210603 2000590221.1284099 53166.20925031318 0.23361393082809567 6.204269673942842e-06 79170089.45115417 2102.5825956696945 110482 20595 35493 MBL_20210124 5515263.46767257 172.34999204827238 0.0015577225966281506 4.8605658050006994e-08 1655445.1275152857 51.654896682330175 None None 959943 DOGE_20210821 42757310850.98928 870217.0732820401 0.3271601389666059 6.6516619704370005e-06 3003645597.5074787 61068.671925372764 2046381 2141391 21799 OAX_20200208 3158609.9180483227 322.4723226874793 0.06012609060301364 6.133045959704837e-06 1223012.3576690287 124.75101779684258 12063 None None GTO_20211002 24107944.9433959 500.64696328046244 0.036391626896949594 7.55526216725737e-07 7027728.907798485 145.90261240362813 13266 None 1255759 HC_20191017 62985779.58852138 7866.451310133513 1.4220964040263147 0.00017762530194787856 32713598.217080746 4086.054042931836 12822 846 470518 CHZ_20210218 193950742.24595806 3720.3589507422566 0.03634027224676484 6.968031555216007e-07 84733612.86783074 1624.716744666281 71414 None 95433 LTO_20210724 46458785.856857404 1390.125684628264 0.16151476383972735 4.830585374118057e-06 15272977.226439537 456.78437472432574 10961 4333 391514 GAS_20200417 15625917.427789252 2200.820936890623 1.1196648870343249 0.00015783701413556205 6741280.003533531 950.3053275411721 321245 99297 240659 GTO_20190916 11487939.01998348 1114.909464725083 0.01733558744426824 1.6824262806899687e-06 3407652.783156914 330.7141806576092 17334 None 702071 ARDR_20200530 46873006.70617481 4970.335475401812 0.046762114302195644 4.961636198331473e-06 4060294.7542911265 430.81254407353293 63469 6311 1998735 NEO_20191015 523088998.27883226 62677.58635448618 7.4224891711728835 0.0008892892953806307 210895400.51420417 25267.402591933565 323209 98313 164596 KEY_20190421 8031079.249363274 1512.400883813747 0.0030716985350922213 5.784786569067448e-07 275942.8353159475 51.96702701549972 23964 2832 663823 BEL_20210427 115428765.06723 2142.0271310716676 3.6741943419606153 6.815914015586834e-05 34649346.01323519 642.7721049630286 None None 318373 BTG_20190801 325577470.8215376 32351.955378547926 18.594385800857285 0.0018443351879598067 11259300.817185922 1116.7846527097013 74957 None 277231 COMP_20210724 25531.834044157687 0.7845171983760009 2.394481666739632e-07 7.3272e-12 38.711361206613994 0.0011845815725927825 2547 None 3559162 CTXC_20200325 1150716.676094589 170.23839972010117 0.05404416349765683 7.997948135246132e-06 5378393.145569357 795.9436624658285 16623 20064 396619 DUSK_20200325 4490205.942706664 664.3945810587567 0.017209977170559533 2.5500161808420524e-06 138755.8049063318 20.55955938757386 17629 13340 994052 MTL_20200329 22909002.780392103 3673.38445129595 0.3565552484733355 5.704437734183974e-05 30775303.541124076 4923.663402870441 34934 None 635134 HBAR_20210731 1972702548.8159423 47282.66482719797 0.21617517578849035 5.175192058827305e-06 81698491.72306138 1955.8461513501252 118353 23687 44270 REQ_20210909 179238719.86847746 3867.3135562085663 0.23232310722577104 5.018110863750738e-06 22959367.965732682 495.9156030128784 46127 28467 243796 QLC_20210120 3957446.670356808 109.28297667895676 0.016456593669624865 4.551140636816622e-07 729035.0271333045 20.161772261371784 27368 5593 940522 BTG_20200526 156201748.99539313 17576.018354900625 8.977284536354274 0.0010096945391349405 42894037.97267804 4824.384893569183 74877 None 210192 ASR_20210826 16408132.894786462 334.75222425601305 8.069920164498768 0.00016463931283081977 2090802.0960432799 42.65571571229833 2009155 None 101452 ALGO_20200217 201730215.4167566 20235.979575898175 0.3419519198598247 3.437242901047394e-05 93947993.93578865 9443.493557685173 14826 778 415248 OST_20200324 5326131.481386204 826.7496019425706 0.007695182718514884 1.1875555888397098e-06 321127.5349357392 49.557861430073416 17810 752 732102 BQX_20190608 15206791.965559037 1889.993123214882 0.1273807650927332 1.586641087417796e-05 552407.6670835528 68.8073039097625 60721 5777 442313 ALCX_20220112 288525097.9436946 6727.746937183696 303.11611397053065 0.007084966575411241 23536622.98089883 550.1396310917886 58256 None 76988 GAS_20210523 121162717.0833044 3223.6633720609434 8.69184905253422 0.00023143657710904904 14460667.070706228 385.04203988471323 399248 111424 83834 XVS_20210821 385264900.8212685 7841.412434486954 36.26449457559438 0.0007376489187638837 28821088.80240945 586.2440726528934 121848 None 17193 MANA_20210724 904661972.0853907 27060.05110144433 0.6820307369778196 2.03972629027502e-05 266659593.2136125 7974.898393025598 150084 34715 17778 BCD_20200403 91623012.48474985 13509.4720294958 0.4878521098319425 7.156293437787698e-05 10131923.088710798 1486.2498952169808 28883 None 841501 LRC_20200207 38776473.71011178 3981.410719287782 0.034213606945897444 3.5149462944440947e-06 4068924.3432058427 418.02229636708057 33885 6815 866918 STORJ_20210429 288132945.40978205 5263.86575102681 1.9968622672816887 3.6471640949767555e-05 172924386.7041263 3158.3731370301734 285 12873 56587 NEAR_20210206 783291938.9001728 20670.139804175466 2.868403098975853 7.514620910942415e-05 86147337.57305798 2256.8814842643787 36900 None None MTH_20210220 8500178.813144218 152.27080230018092 0.02467659386226884 4.4172836655124367e-07 751612.7027287055 13.4543954205595 19614 1908 681058 BCPT_20190524 4848788.485159718 616.4014979018912 0.05779696196407697 7.347429989547616e-06 3023616.1597754853 384.3767439372189 10776 2172 1042603 YOYO_20200901 2497458.955882479 214.2214239311864 0.014279858699717329 1.2248656407282846e-06 1296104.5684861545 111.17434605715506 7774 None 2642123 MFT_20210909 108251841.23867357 2335.6773213625625 0.01150170317344273 2.4900116109805137e-07 18730565.69791799 405.4993018402585 35163 3676 464938 CTXC_20210117 1204886.8558422353 33.20190899311912 0.11919829689338442 3.293146648364188e-06 9123638.799519781 252.06300187659454 None 20078 599197 UMA_20210107 539399031.5472594 14683.04070201486 9.674365654547204 0.00026200459245511256 25701059.450162813 696.0451824290379 16697 None 192669 TCT_20210112 5091319.813293368 143.72916668044144 0.008766568916021287 2.4662098759979933e-07 723397.6722397759 20.350612658633928 None None 2545563 ALGO_20210603 3139233856.7808704 83425.96217487291 1.0254600377880714 2.723395215232454e-05 362525031.06461614 9627.863579481722 105084 31502 157111 NANO_20200127 91241338.8168138 10632.09013109304 0.6848196959963101 7.972729045957568e-05 1869007.9145013145 217.5914883024845 97623 48697 243189 POE_20190411 14360219.687954191 2705.7342061956015 0.006263793230301597 1.180153885374323e-06 928821.3761308899 174.998138597052 None 10938 791380 ATOM_20211002 10550833698.81736 219078.9614986819 37.75756829696479 0.000783883910615319 903595468.2281839 18759.522426817093 206155 39918 41751 AVA_20210427 254807298.78695315 4729.792465485999 4.85847472704194 9.015686995709823e-05 29512005.26985646 547.6430712870267 67603 9936 42647 QKC_20210603 128706713.2660674 3420.4146242223296 0.019835901219268166 5.267400362130983e-07 9690135.899464695 257.32042513076163 74012 9501 257641 ILV_20211111 735044947.0479587 11334.661043562783 1156.0432266916866 0.017797245586322726 34281130.93548211 527.7568279013626 145968 None 10629 NMR_20200903 254500521.21559125 22308.18043555341 49.13748878755828 0.004306189846124077 7666353.333002231 671.8449333481727 20425 1841 882883 ZEN_20190714 55351685.651020326 4863.243329956891 8.050909257783749 0.0007069624533094479 1161211.2355016996 101.96770545725448 26353 1711 233714 FLUX_20211230 710694.7601019159 15.272295520082482 0.6894057526842903 1.4838630165801635e-05 2387.853321241743 0.0513956725573096 None 157 None BAND_20200704 22146233.24318053 2442.2995192552894 1.081483670408292 0.00011926415066137181 2396241.4371635616 264.2533656333475 15651 1233 430099 MITH_20210202 7374923.497724335 220.90434829081875 0.011914606463826093 3.567111854932842e-07 7579899.888483601 226.93448443727493 24383 2164 386896 SXP_20201201 75460891.54224671 3833.3314805086784 0.9714744585052205 4.948599850345132e-05 160839295.9390823 8193.003005333074 89959 None 91691 HNT_20210930 1643027786.2288046 39547.84552432755 16.96307388268178 0.00040790920321493064 18176404.203395087 437.0860262236409 None 55395 2718 ONG_20210506 0.0 0.0 0.9888823751242521 1.7249603680484108e-05 24777774.038330704 432.21195260163233 129998 18709 138836 WRX_20211002 508802258.1752374 10567.438552853251 1.132229774858819 2.35061934246115e-05 16853783.268252235 349.90096377691293 344965 None 1271 NXS_20210806 36824638.16448003 898.0025975258408 0.5468391253527006 1.336495485230317e-05 216344.0429206927 5.287530156762068 26080 3961 456047 MDT_20200701 5404288.208842105 590.747629955582 0.008932777196660342 9.766688752228188e-07 7360766.532116902 804.7924415251412 14058 61 566162 ARDR_20210511 390215623.4840614 6983.674542362364 0.3906064271674746 6.99066874139147e-06 36181378.08292017 647.5367817649618 72071 6850 None GRS_20190914 15678714.353002828 1514.7497478171779 0.21365162910401908 2.0641281167550574e-05 249659.66600124628 24.12008456822738 38426 106998 None NAS_20210207 16790540.51766806 428.331211840127 0.37021344267128514 9.41096175800866e-06 9175684.61934773 233.2492748862775 23519 4851 795646 BNT_20190730 37129133.62923719 3903.4213837928646 0.5207352933821306 5.47317629652493e-05 3744807.4642417985 393.59712523455346 782 5133 155271 STORJ_20190906 21573924.72303138 2041.2676573654048 0.1498555344017759 1.4178699103159053e-05 3383366.8286 320.1199102177464 83518 7799 165970 DOGE_20210115 1211261062.4007857 30876.67371479474 0.009467234495934725 2.413325414201279e-07 475592505.28980404 12123.492666336651 189187 185160 103049 COS_20210108 24545757.39917353 626.6211204139055 0.00810915917708589 2.0549069535485387e-07 1624932.3493339042 41.1767078531086 14058 None 444691 GVT_20200625 5619105.727947463 603.4636189703367 1.2649152007604094 0.00013608678004965047 171223.16331576774 18.42116289815368 20356 5530 238169 DOGE_20200315 205572589.55604807 39770.984746816495 0.0016554647971862668 3.1951986227784843e-07 83287639.85381952 16075.277022363143 138983 150276 115347 OXT_20210428 0.0 0.0 0.6378659812329384 1.1575343476656183e-05 29985500.079505347 544.1463770629007 63471 3752 93493 BCPT_20190325 3549488.6365068946 889.5045050388471 0.04230946768331859 1.0602784221657361e-05 474912.8028679078 119.01350332744173 10144 1554 1708834 BZRX_20210617 43418071.57467604 1135.145469706567 0.30878272772161236 8.071967474567103e-06 18209682.850599296 476.0239304082419 27228 None 126012 RCN_20200718 30230646.571055394 3302.781050375199 0.05896245250985664 6.441519409550855e-06 521480.25959653856 56.97058163120307 None 1134 1028220 RLC_20191102 42902182.17484643 4644.9475731766615 0.6125947519408269 6.632461012756137e-05 418228.5972568393 45.2809113518755 25282 3367 573823 HC_20200807 64688977.663630396 5498.276995666273 1.4460578664651749 0.00012288176160946146 19352411.880306397 1644.5112732984746 12748 844 569123 KEY_20190411 9124599.396453142 1719.154996706346 0.0034900706949879986 6.575600980881726e-07 530635.4342524885 99.97639552035673 23915 2830 702225 TNT_20190914 11461846.260741783 1107.249706838225 0.026749935356876323 2.584126274951965e-06 389772.7798403403 37.65325292225706 17481 2530 571666 NMR_20210318 264038845.9149277 4486.026435339854 47.78457558602469 0.0008107012007327947 33745558.42009857 572.5187342371984 26235 2776 1026780 GTO_20190515 17302558.849978823 2166.322174241449 0.026083586017592416 3.2633027970613434e-06 11810876.414729394 1477.6521147796477 17258 None 885807 XTZ_20210314 3192598491.6065288 51981.92607551561 4.1751395049450695 6.805074186768199e-05 346939477.00824994 5654.778424920589 92477 38837 112847 NAS_20190929 21568693.269680783 2633.1939811274137 0.4743070359401569 5.778244231707744e-05 6014126.50976725 732.6708056299585 24076 5089 980448 XMR_20190930 961281436.5926138 119385.82061541989 55.77888896175613 0.006927428511799901 80584700.37416224 10008.17265058067 320130 161450 88240 VIBE_20200404 1560419.6732604057 232.04332288 0.00834420323871005 1.24e-06 64347.90968330733 9.56249575 19256 None 1554973 REP_20190220 153783667.3316141 39284.12546083606 13.9659085568758 0.0035672701697971663 4099675.900789634 1047.1679294737378 122271 9772 236100 LTC_20210519 19724820148.48588 461066.2889132693 295.49223487547397 0.006907110285980534 10549941954.714018 246604.15398939807 180112 326539 91402 LTO_20200313 5452291.660537922 1166.5557840637837 0.027530395639607127 5.744986669079225e-06 3963215.4226776254 827.0356905883197 14525 414 867701 POWR_20190915 23648487.501110435 2284.061463520228 0.05520601404208945 5.333119957373571e-06 1527243.7521902833 147.5378050002 83876 13038 414066 SCRT_20211216 642517544.3709462 13170.016051546665 4.1470988172301855 8.486094453437042e-05 6046739.066329379 123.73276141616152 None None 56219 ETC_20190207 405382910.9658918 119029.50544763307 3.7505657515991415 0.0011012501377968495 214954759.83598074 63115.533646765645 225943 24127 447874 MTH_20200520 1992190.9734172903 204.23506254036684 0.005732199510384991 5.876525599798093e-07 94944.032172531 9.733454577062677 18994 1913 1287418 CAKE_20211125 3403690234.335144 59533.67445120999 13.964589673504634 0.0002441895547325252 207505351.59641853 3628.5090071127693 1248102 None 561 MTL_20210106 24412490.951280713 718.4992577865536 0.3795226427994148 1.1134002699141414e-05 4345814.948608258 127.49256542605436 42862 None 362516 CKB_20210420 615402679.1280918 11002.610356646523 0.024848748189030358 4.442807780263724e-07 45355959.982616425 810.937478053946 41049 3203 121056 XEM_20210420 3442679941.915547 61526.50909028857 0.3804170663081084 6.8023901852851254e-06 352140813.492562 6296.77116430953 300204 21025 27283 NEO_20190704 1263880721.5015934 105490.75715082278 17.957810245020514 0.0014963231959505092 614215836.6876729 51179.14663402574 323526 98034 188893 QLC_20190716 5779808.526924653 527.9009026899876 0.02402915891280661 2.199925822153257e-06 242373.85304429472 22.189894363832494 25010 5776 940522 MATIC_20210725 6080910913.031988 177983.33213823457 0.9509409955844256 2.7832900883527615e-05 732607141.6826499 21442.53119352174 547190 None 5822 RLC_20200719 122725485.10600121 13388.042200554837 1.7473912675430767 0.00019062176051324288 20804012.062093686 2269.4959501491708 None 3714 380436 ADA_20211125 53476780497.00569 935364.477780662 1.6688310351021263 2.9175904920210648e-05 2764726047.228318 48335.261382184755 727826 663202 6543 NXS_20210304 90135903.4670827 1778.9439602614177 1.3241030169039247 2.6132816936209903e-05 1630850.8089244575 32.18686544461294 24734 3694 416310 REQ_20191213 9134938.054811027 1267.499855575169 0.011821639457235104 1.642286368387453e-06 440049.80860209075 61.13262079198503 40252 28795 1418322 FUEL_20190923 5173952.28630905 514.6889264644815 0.005226633840676209 5.199295261378611e-07 3797218.572573019 377.7356733343209 1 1505 None XEM_20190906 430852553.367906 40765.68130710447 0.04782575549117691 4.524898467049972e-06 50692086.224726014 4796.088235179977 216417 18366 190156 REEF_20210428 464395299.21590614 8429.715117101628 0.03669157946451541 6.658414894330136e-07 88946887.81110337 1614.1177110637207 None 10062 32523 VET_20190419 405796295.48853004 76958.9656958596 0.007318004502677022 1.387418777637235e-06 17540181.037091177 3325.4388576987863 107059 55145 430690 PERL_20200914 0.0 0.0 0.03140071912740116 3.0405803947380147e-06 2410188.8565115733 233.38232971646113 13274 507 1250088 WABI_20200411 4313560.323292009 629.105852451028 0.07277150620925683 1.0605146572410387e-05 1337494.2771442307 194.91588930545373 36699 7734 1806690 ANKR_20190914 12124086.723806487 1171.143447304658 0.003034791978950169 2.9315005913817426e-07 2012100.7024571607 194.36173682036872 15112 None 7336 TWT_20210421 244231915.86493474 4323.031505156446 0.7073201693794782 1.2544712234926646e-05 25830965.61349586 458.12638236495985 512905 20567 5638 SUPER_20210723 94970740.65256765 2933.491603024636 0.43911810213522534 1.3563643460065735e-05 13908534.833383583 429.61200327338196 127878 None None ELF_20210110 63651788.71636187 1573.5933991821778 0.13763238960841565 3.4166096808644645e-06 32481848.406569924 806.3348898759 None 33334 479481 NEO_20191213 610544892.6294771 84721.04249473469 8.621253549557618 0.0011976822025463708 429177283.71732193 59622.18736413413 323574 98744 159020 FORTH_20211002 115040914.9720839 2388.6096482184807 13.31463282591961 0.0002764247518775717 10421668.938436698 216.36400253182273 32951 None 177738 GO_20210202 13498271.667135146 404.5373598862187 0.012681647070131002 3.797102362404308e-07 1486331.3281629034 44.50330596863545 13608 687 754202 TWT_20210401 213903542.97394317 3636.594065636586 0.6157973859600416 1.0479583471629e-05 16941285.587167684 288.3052453213065 427383 14698 6198 AAVE_20211007 4104524294.806949 73947.92681554615 312.34156331518307 0.00562985012998711 324375017.773654 5846.749041640613 308163 13303 14216 RIF_20210203 117145722.67362407 3288.9814485803035 0.1696768273685882 4.777647720066788e-06 1945694.977473402 54.78559045000222 None 3020 663041 TNT_20190122 7124689.472157548 2017.5511541668009 0.01662709246393165 4.708605494025647e-06 1880414.503561493 532.5122285644344 17031 2523 1229604 CDT_20190627 14234503.080281058 1096.6787788681806 0.021206237421929213 1.628029016256172e-06 2736349.757893551 210.07294768234172 19747 297 372453 TFUEL_20210112 0.0 0.0 0.024977611493753576 7.026697985817384e-07 16557208.173802601 465.78713643101105 79232 4888 64313 RUNE_20210105 338153206.6017539 10808.34957739183 1.5440434229358238 4.93520710493138e-05 40349632.230326 1289.6903591340892 26282 2035 287788 ARK_20200914 62285566.02881654 6034.014224311877 0.4107817599799357 3.978334774027395e-05 15325960.305754643 1484.286956478431 63111 21801 112680 CRV_20210821 851292244.0291488 17326.60715648551 2.2785482108375823 4.634749894479058e-05 215867568.79793942 4390.919564260284 150718 None 12354 DLT_20200422 2423209.5448243655 353.8426599941089 0.02940761992733135 4.2959312446327676e-06 101422.57831594335 14.8160382980784 None 2576 None PPT_20210427 153758199.6907762 2853.3116088572006 4.242230353466971 7.872612142045459e-05 8352518.973074174 155.00370513908908 24341 None 724019 DUSK_20190906 12406285.136307241 1173.7855475261213 0.113323082140597 1.0721742613223628e-05 1907708.4828036455 180.4924376157308 20422 13324 183070 TRX_20201208 2175138470.357377 113246.82975832166 0.030334357258915992 1.5800196992575384e-06 587735241.1725231 30613.249889364943 None 76351 28768 ICX_20190914 102039687.18168011 9853.954996079932 0.20613612531577838 1.990703081965011e-05 19131858.230288275 1847.6067251389877 113585 26248 190786 WABI_20190906 9503686.2537742 899.1719095406863 0.16449885795302838 1.5563724251118462e-05 2463760.589991826 233.1036878952374 36304 7957 1609387 QKC_20190614 61093125.672590725 7429.9618925064005 0.023361478763910065 2.839576923646944e-06 8146701.400127677 990.2277819579665 51025 9199 157671 BQX_20200322 3409571.5723586786 553.3544156446727 0.024214543752327365 3.929559589813847e-06 391277.60532907717 63.49690838806296 10761 11 311435 OM_20210930 77307818.36087069 1859.8354812671453 0.21105282821594026 5.077464160911077e-06 7488632.8207375845 180.15993949445553 51697 None 101960 ANKR_20211028 671934457.9479678 11480.326580563054 0.08213587715907271 1.4035998113614322e-06 83526397.58534764 1427.3620730614416 129339 None 5363 BQX_20200430 4477846.823805251 510.69498481236656 0.0317950079376258 3.626196190877359e-06 443237.793865459 50.55092934465955 11064 17 397017 MDA_20190714 14650491.52501992 1287.203891835401 0.7492551436296994 6.579322130392379e-05 629808.5044958206 55.30443223205429 None 364 2408870 POLY_20200807 27970678.20654427 2377.38393912957 0.041227965236484324 3.501627057002975e-06 649905.2118037284 55.19859302018867 35065 5010 388047 MTL_20210710 101939067.94545265 3000.359187409236 1.5777124091701134 4.642383359420463e-05 14614646.325501196 430.0326885367531 57253 4205 185263 POWR_20210120 52300907.58469205 1444.2642794604858 0.12146812708403545 3.370193428496476e-06 7912063.515124359 219.52412624318342 81014 12541 393579 RCN_20210310 43533792.09235663 796.4808337962817 0.08513795428011148 1.5564405183116794e-06 1424460.5218640973 26.041124569076008 None 1140 1277366 ARDR_20200707 51996875.31094911 5570.217791045576 0.05204263075742413 5.5701299750500235e-06 3711212.117370775 397.2115467238725 63018 6301 1411218 GO_20200217 18759453.744043283 1881.8489526221854 0.020330682354271865 2.0436058269337043e-06 3632610.2840948734 365.14384584813195 10658 683 700687 MITH_20200217 5998784.923399118 601.7506546519413 0.009701529372717928 9.751813348305548e-07 3611573.2289954587 363.02923662678154 91 2083 1703270 HC_20190205 41183757.259527706 11887.296740930351 0.9392217590871814 0.00027109735727730354 5648306.027077563 1630.3293894323613 12213 786 367356 CVC_20211230 222296762.13205847 4793.007402634904 0.33230942536965796 7.14188571082592e-06 16848377.648173478 362.09983343757375 None 10246 204035 OXT_20210519 314915394.2138633 7387.981823892426 0.5347781381140069 1.250040150815266e-05 32894191.692770742 768.8994260234967 64535 4098 89170 PERL_20200907 0.0 0.0 0.03121910971289364 3.040083038625147e-06 2284920.2805897845 222.5030583355406 13199 506 1250088 REN_20190704 76095971.07102086 6340.583191698948 0.09744520530920484 8.120277422128149e-06 25854873.999101188 2154.5313483683267 7082 795 1032866 ICX_20200806 218359312.83142233 18640.10204427228 0.39074239462618365 3.334320947719757e-05 25300370.095380727 2158.955750752251 114639 27808 118730 DIA_20201229 33464460.662898045 1233.1928389446005 1.3042663142551707 4.80520931733845e-05 11675543.77118303 430.1531911166522 None 187 284096 DOGE_20210513 53796102921.286705 1064578.5533270242 0.4151917345774222 8.216286908300792e-06 10742618800.49026 212587.17566034567 1365448 1830789 8878 VET_20190702 450871530.6020476 42474.788660077895 0.008111288285011186 7.64892369863564e-07 72990953.80525307 6883.027907893543 111687 56623 139851 POWR_20200430 29659892.709616143 3397.2666946224863 0.06881028395919389 7.848471179195322e-06 2521931.9956100993 287.65047089726164 82010 12770 208594 BQX_20190601 27125014.47366942 3162.9076136349577 0.225404504727168 2.6276159463968923e-05 1533412.3568271617 178.75502382164458 60860 5775 442313 CTSI_20210731 160534245.87662804 3846.0522474221616 0.42286050227303185 1.0113556131029731e-05 19152481.896947887 458.0699773852266 47910 3942 131323 PIVX_20190701 36809357.93433863 3393.815421872563 0.5655269128918676 5.243114368226253e-05 11544046.05769444 1070.271853961024 63468 8629 286633 TKO_20210509 279878182.2794913 4772.750551398813 3.7366893242172563 6.363463423994693e-05 98942757.03303121 1684.9637762721343 240132 None 35525 TWT_20210616 130718059.20948909 3236.7855158069856 0.37589169049450033 9.313268575037544e-06 12759612.538129138 316.13813629315064 873530 37612 2948 GVT_20210325 25183287.799779296 477.3545528420862 5.654512571776904 0.00010748254196413481 1523505.6521093836 28.95921763491378 23119 5514 231591 ELF_20191216 25737799.71997348 3616.7523789789825 0.05575147535082264 7.841056059868314e-06 10350842.750909382 1455.7738206216716 84009 33507 971152 SUSHI_20201101 60476969.9162307 4383.618707790292 0.6051144225757321 4.385372651733248e-05 18072890.403716765 1309.7747526305666 None None 57761 GO_20200713 12193235.94572851 1313.85486544464 0.012517401026765714 1.3472326978384452e-06 1035186.4237757543 111.415859848783 11552 681 901828 BZRX_20211120 94000834.13783215 1617.0504316231256 0.2719349826840629 4.661926506556013e-06 7691609.484874935 131.86136546939233 None None 220483 GXS_20191026 28849729.999173895 3337.8338613041665 0.4443071853450002 5.131889974792451e-05 8483074.27766232 979.8221878214976 None None 581889 BAND_20210710 235760770.6837022 6951.183977311725 6.709731338960238 0.00019743697510635078 41105374.27744059 1209.5448160238723 100058 5465 205919 BTS_20210105 63025757.85846889 2014.4845886871708 0.02329652750098138 7.446240587228053e-07 35228695.72496011 1126.0104920411634 13139 6876 130433 NU_20211225 505424635.66681266 9940.291128023537 0.7815485461231 1.5374893789135235e-05 30812044.948002297 606.1452239295443 None 9598 124831 ARPA_20210704 30551076.05681411 881.2670647177091 0.031109723023313978 8.972442434806173e-07 4709025.94494129 135.814337476842 43118 None 560675 EVX_20190405 23351695.25133151 4767.306325094358 1.2095585259084902 0.00024702496088095123 18560574.015191164 3790.57728239061 16690 2393 756371 EVX_20201231 6125429.974794583 212.12111719229918 0.28086563377519413 9.733732176833832e-06 286448.093832867 9.927198961498389 16649 2810 1341342 AMB_20200414 1240335.3751218761 181.09933377692903 0.008628176883838172 1.2600630482295997e-06 65370.73121558427 9.546772620621658 18973 5486 894983 ROSE_20210821 148528114.73346913 3022.665438717543 0.09912625951711511 2.016307658762114e-06 13003931.554272147 264.51040233562054 27751 1804 261219 ZRX_20200425 118869331.21091807 15852.809450509321 0.18200095339519498 2.4282127154739587e-05 46022059.80379814 6140.151945535686 152389 15915 132812 KNC_20210104 169039896.17943993 5052.991426300772 0.8291138934354882 2.5187476994864198e-05 46649004.93070147 1417.1403323815753 127425 9328 138877 NANO_20210613 813934461.7853873 22814.431975350413 6.108404556526671 0.00017121744658299485 37690408.74750896 1056.455165452773 131498 99687 52991 BCD_20200625 128700178.23765305 13832.511709744982 0.6837408632820727 7.356073546787113e-05 20253314.54574597 2178.966906403221 28248 None 966151 1INCH_20211204 1248324873.0361586 23248.510020916277 3.144834871195151 5.864629784621084e-05 138727845.30119175 2587.059374600748 476478 None 3880 NULS_20210217 72170312.40369658 1467.4841176351233 0.646665711865171 1.314105239415069e-05 55625712.275055036 1130.3837300420498 38981 5112 599020 TCT_20211230 20449587.17507163 440.9208073095922 0.03545701059690284 7.619299542927397e-07 6155293.483212551 132.27010408858888 None None 456283 FTM_20220115 7481090920.597008 173595.6699456143 2.9525997035754727 6.845625383542078e-05 1563459578.454356 36248.931961377726 324158 28824 16138 AAVE_20201229 989182971.423932 36449.64318066514 82.00171524602705 0.00302112691120882 242392752.44892687 8930.29207143213 None 1844 22662 KLAY_20210718 2209441131.032863 69906.53915744845 0.8881314295350432 2.812411440651925e-05 5033272.030417114 159.38667827203486 41387 658 62906 ONE_20200322 11137515.06371332 1808.378314498504 0.002185354323675127 3.546975730234689e-07 10076789.011846619 1635.5300225918397 None None 395411 COMP_20211011 0.0 0.0 1.2099996380622977e-07 2.2034e-12 22.272117901735047 0.00040557354763569255 2594 None 3596708 MTL_20210724 103230611.30885057 3088.279559158562 1.5913553639535054 4.7592127407766664e-05 55696733.02335035 1665.7033835976692 None 4218 206234 SUSHI_20210125 1066474255.9211017 33098.048803017 8.349441506364654 0.000258698141505089 785975527.1951814 24352.575917668295 None None None ICX_20210421 1331592737.211997 23569.88166193825 2.2130736352340294 3.925701179510536e-05 214375203.7961033 3802.7337952140892 135128 31257 432969 WAN_20190318 43137130.779859625 10832.383161474774 0.40634941117997436 0.00010204548998651194 4895293.52469404 1229.342562364271 108852 17234 498965 CELO_20210219 514005797.37770617 9944.560235780405 5.219708421078416 0.00010094972974196487 150714421.0099418 2914.833328185587 None None 108318 QSP_20210814 33686011.47270047 706.2104070511074 0.04747118090022338 9.947217609233353e-07 1343883.8638096089 28.160043591392085 66956 8501 236005 VIA_20190729 7511095.160338246 786.769032714296 0.32428529711974274 3.399152694548026e-05 164242.37554912356 17.21585648086366 40968 2229 1839156 AE_20190421 154323937.60030323 29058.66714456874 0.5802061604077584 0.00010924021596231134 56442366.45733633 10626.871484594616 970 6362 416342 TNB_20200721 8510143.035687137 928.8736905019656 0.0024765721722340007 2.702991865371639e-07 1072489.8697131411 117.05418586340319 15886 1434 1115028 PIVX_20200625 26519959.119380333 2853.1682135176006 0.4178553376329587 4.4955256598105935e-05 635615.4526044354 68.38312974872915 63693 8487 395833 STRAX_20210112 46325302.66107039 1307.7742887630352 0.45977880519529307 1.293449057446999e-05 2397078.408429805 67.43457447311286 144205 10282 230712 FIL_20210519 7270191227.723099 170387.45387668384 100.580814016586 0.0023510694802488653 1104332067.8374205 25813.684708542256 87157 None 27077 GRT_20211028 4643858114.847239 79345.91473764234 0.933983314228447 1.5960611233588896e-05 527456236.6648588 9013.569951294168 155986 18903 27153 DLT_20210617 7458915.980222902 195.09916797175896 0.09099280895062377 2.378955198248014e-06 145457.71049171613 3.8029090484204757 15108 2601 None KNC_20210703 143974392.0209471 4259.838336657059 1.5664185538806819 4.625979414661573e-05 24365239.122154735 719.5592412587081 174312 11207 114765 QKC_20210128 39358088.5005401 1300.3717785611266 0.006139643606542511 2.026141465880036e-07 3666073.8000431946 120.98396290182907 63169 9200 334407 NKN_20200417 10132319.664720252 1428.1577122555107 0.015550790778323833 2.1936925593237013e-06 2628910.37655643 370.85066697825624 12275 996 316185 NEBL_20190929 5869388.663286434 715.7036018720826 0.3764509726649729 4.590381256396644e-05 62353.31052247647 7.60326015019718 40366 6107 485969 OG_20211011 10664703.25517986 194.91370287093133 7.6972005845129745 0.0001406624012921425 2289696.7398810987 41.84303606566908 None None 488504 LRC_20200320 34565316.004648246 5585.049673672948 0.030004001617228625 4.86050434447838e-06 3254878.3588616704 527.2746817515031 34281 6822 553678 GXS_20200207 35281053.12597811 3622.5151403311047 0.5441902311235919 5.588580133973078e-05 8569411.744827306 880.0386610780761 None None 913650 PERP_20211028 883665305.0814337 15098.161308727962 15.858715239495085 0.00027079009984599966 96497229.41627678 1647.7056302404405 30495 None 109427 NEBL_20210220 43109798.414398804 771.8938909082893 2.4710466416481234 4.422937194341519e-05 3021911.6524398285 54.089328871087474 39352 5905 648058 LPT_20210828 498069889.16352355 10154.05270655279 20.505593247092392 0.00041801615149865103 21083584.073547896 429.79876602557835 15511 1315 104852 KEY_20190531 9570144.012605848 1151.7445788248567 0.003659616472595586 4.408164575400361e-07 1388517.5157847463 167.2528739347388 23989 2837 675684 TRX_20210804 4605877375.892519 119880.28627757667 0.06425070951231715 1.672518862555671e-06 1026543466.207458 26722.091063229636 1079768 114877 26326 STORJ_20200903 76499114.74849655 6705.511041071372 0.5318062257417873 4.661891907755145e-05 46750896.145902984 4098.2525941452295 82082 8308 117786 VIB_20190426 6183450.129248464 1191.225818232035 0.03639907090772354 7.006907339670867e-06 2105584.300274122 405.3299636490422 33154 1128 2174259 XLM_20190530 2626774547.1993775 304184.3604231889 0.1360489142230607 1.5732514487673416e-05 442329081.7354747 51150.343436868614 271920 101657 74186 REN_20200610 75581376.29719731 7731.942772441765 0.08642918970218517 8.846630922033027e-06 2114217.899901393 216.4049612594078 13112 882 397347 BNT_20190629 50488094.06177785 4073.942337121788 0.7670143600269623 6.175597670468929e-05 4764999.60547728 383.652797091523 793 5128 142963 POA_20190826 3271347.1578958426 324.04023567316597 0.014857564243958619 1.4717355640539438e-06 203985.63080740013 20.206064903088077 17734 None 702581 BQX_20191019 6666104.003723027 837.7273451478057 0.04718769724973216 5.930064145200668e-06 207539.31204759268 26.08140479031381 59926 5731 349258 NKN_20210909 263042566.62944293 5677.767299049206 0.40329646295654925 8.711085118656735e-06 38925987.79813137 840.7899006886375 30861 3472 229216 GO_20190601 17636776.30175414 2055.93742646669 0.024447970541699265 2.8506864620082894e-06 879826.5551763969 102.58968716764565 9654 666 891610 XRP_20210603 47256850790.178375 1255732.4639439038 1.0250645299812036 2.7223448339117595e-05 3994210155.4317665 106077.39380463143 1838580 317226 10950 SUSHI_20210202 1624693124.0340688 48691.34976904255 12.951361314808985 0.0003877505700573347 1371135698.0035954 41050.40664095602 None None None DOGE_20210825 37922229342.72201 790528.708644863 0.28950162486223735 6.0349654970075355e-06 2760490446.121693 57545.3232951316 2055865 2144347 21799 SC_20201115 120537381.96467601 7488.736451806951 0.0026764774850004456 1.6638489190970411e-07 1361394.403489101 84.63193206012436 106972 30059 142131 ALGO_20211002 10679656778.9856 221783.22324157393 1.7738453381419754 3.682675773909046e-05 516528229.3579908 10723.629371145089 153477 46318 131750 WTC_20190110 32523652.72248679 8176.252670397942 1.2629922131668216 0.00031757605851754234 2807489.4907084843 705.9358224806865 54740 20475 571102 GTO_20210707 22180696.650696404 649.3889255625164 0.0334708975717121 9.80016511839991e-07 5074486.330928949 148.57923611883348 14018 None 269467 EGLD_20210527 2106941578.6020246 53776.66850178961 118.79858579148299 0.003032437048165716 124124920.39840607 3168.396363551091 237686 8836 26800 SNT_20210428 691189689.1151599 12546.571299496933 0.18025701596906232 3.2711211058566003e-06 115361933.98646455 2093.4711198166465 129885 5924 113848 UMA_20210204 1519999511.73039 40559.185586568936 26.829098219670882 0.0007152650326833729 683766059.3629787 18229.23561551006 20914 None 180078 ATM_20210107 0.0 0.0 6.994361527727943 0.00018970504444799612 1720109.0870912387 46.65377526289315 None None 231684 KAVA_20201201 78535229.7473715 3994.578521968227 1.6686407687109084 8.499899699913947e-05 22023092.951488238 1121.8357161089066 48290 None 81701 STPT_20210527 68039701.95059459 1736.6160191235297 0.060587428459254876 1.5454606186758933e-06 12701174.120245462 323.9808143860311 29972 None 475060 YFII_20210427 95742942.29186058 1776.7146679456016 2415.3419520592997 0.04480645695701284 84665812.21175143 1570.6161470685354 None None 334053 PIVX_20190201 37531423.723006934 10951.494275119996 0.6375150846462588 0.00018609046704631954 444933.7168376099 129.87602201900557 60744 8589 177643 LIT_20210825 145888195.39500156 3035.873198873385 5.257405352717082 0.00010947645018499324 31473818.803391416 655.3882999682039 None None 606433 LTC_20201101 3664534668.564069 265917.277378019 55.708279760083805 0.004042476172566599 1970744542.0656934 143007.24933216377 134806 215612 153870 MKR_20200905 531206760.47668105 50641.236970227976 587.3097103425238 0.05600347521328037 44966565.329997085 4287.829542978543 56955 16192 27612 RNDR_20220112 537779536.9827372 12544.785500880267 3.4723859878286794 8.116275422785458e-05 39411255.78066824 921.1896597756078 50124 4499 56156 GO_20201226 7095302.9581078505 287.602078061185 0.006688972981217285 2.711797159863294e-07 290218.4111338321 11.765834086379282 13306 684 688031 BCPT_20200531 2598169.2514473093 268.32652077 0.02233150680781161 2.31e-06 177532.86565909346 18.36422966 10512 3173 8102745 TRX_20200322 740780374.4154996 120143.23374782654 0.011181661849615072 1.8173416610628375e-06 1180943612.3020766 191937.3036733789 501634 72219 50139 IOST_20200414 38389786.49054823 5600.301096074335 0.0031850244106598076 4.651424769813463e-07 38622819.10746521 5640.4948381313025 192767 52233 158956 BAND_20210111 207824202.40884927 5407.398494358722 9.174865065572666 0.00023854459729034016 203637189.6551068 5294.52488428309 None 3006 375522 SKY_20200107 7482935.074696448 963.6118863867889 0.43542932878004403 5.613648184328878e-05 107906.40962824233 13.91152548644749 16319 3809 595131 SFP_20210430 285868741.91409093 5334.272162760138 2.6447306031410296 4.9336325761420284e-05 89019656.31931435 1660.6238677479284 302881 None 25245 PERL_20200807 27880947.198054586 2369.8556441169894 0.07946822899720855 6.749498774256339e-06 10570358.74055335 897.7754287857692 12473 499 889559 POLS_20211021 231193398.93258214 3487.999128571698 2.845865160857825 4.2935533435663766e-05 30336651.170447614 457.6886911473364 508471 None 19770 NEO_20190807 799328285.0994735 69922.18113926088 11.393456032873397 0.0009930049077975427 277310572.20083314 24169.20365383851 324468 98216 192021 ELF_20200927 47827132.63774933 4454.200844713923 0.10495099626625903 9.776567920449233e-06 12799283.679766638 1192.29993692366 82769 33358 433640 LOOM_20190819 18823535.19294768 1826.5688918286378 0.03126311116187414 3.03212541837611e-06 1150368.0691164471 111.57111794778663 20816 None 468578 OST_20210125 10940039.392659973 339.7600807720866 0.01582424724471702 4.904933350652791e-07 2264009.076875134 70.17593605315325 None 733 753771 ENG_20190627 46408455.09606394 3573.648934585759 0.5918367580629338 4.543603826754593e-05 3321995.671162392 255.0337071552864 61768 3463 334360 SXP_20210620 180577562.3409956 5075.567010157797 2.0805258422574573 5.843580327805497e-05 192408530.74472415 5404.185241659183 None None 55454 OMG_20210131 486786615.37812614 14229.805292061574 3.4695611437587113 0.00010155467195890158 267757362.35483146 7837.305633722737 292216 42502 203205 DOGE_20210218 6256910635.589655 119886.76976805441 0.04913740862967067 9.425210701828213e-07 2259698807.77203 43344.03864566216 568485 1145959 15001 TRX_20210421 9627774435.793669 170416.5979416598 0.13359911339697975 2.3694537565311366e-06 5487507101.797301 97323.95661720647 794756 98576 21813 POE_20200324 2438507.481225398 376.1745797181212 0.0009687480045948211 1.4944320502888017e-07 41716.29748639755 6.435334234224234 None 10438 698681 ZEN_20190411 50691952.33288736 9545.066957792475 8.164356648709587 0.0015382367945904205 2116577.4950594725 398.78186629893224 25316 1547 329639 OAX_20210420 23931765.175208267 427.63670316079214 0.4210644710344041 7.528696081713498e-06 1284165.7966058238 22.961077616987552 13735 None 1298527 WABI_20210724 8901869.72190665 266.59452094540393 0.1514465360264865 4.527693878051606e-06 506888.1762867151 15.154090366442746 45423 7892 684219 ONT_20200310 371605922.53533095 46936.30255498332 0.5875305373430747 7.413467822310336e-05 110830291.25577264 13984.580302456303 84504 16495 345761 BAL_20210430 638418323.1496392 11912.799792558442 59.02121845847546 0.0011012597348556673 124072647.4682652 2315.0354130671367 76559 None 49519 KMD_20200418 69005934.29495068 9802.078455681649 0.5780779640142127 8.211417778286129e-05 8708051.440234564 1236.95163735413 99933 8395 159254 MKR_20201111 501535492.91273093 32789.5712303494 551.959815087067 0.036132015823569 31786156.331193432 2080.7636210762066 70764 17536 27961 AXS_20210112 27609279.573805135 777.0621972886827 0.4984503760218865 1.4002681832008675e-05 7289430.825846609 204.7778184167413 None None 19930 ENG_20191102 22157752.458028853 2398.74514268806 0.2816032496043062 3.0485692465109996e-05 1201394.4508516188 130.06008208149632 61171 3472 400437 AMB_20210207 3739429.02639908 95.3938418350642 0.02594359528363152 6.59748037885312e-07 1284439.2973104066 32.6634106383081 20541 5464 398433 QNT_20220115 2208111088.6092687 51238.319091418816 164.98309746581455 0.0038265689165585893 28191175.20735915 653.8577371060092 73859 11520 71530 KNC_20190616 44264677.54944601 5020.24511748763 0.2664230480851726 3.021553434779886e-05 8657627.112098176 981.8776237872935 96893 6694 219809 BRD_20210207 9050968.044703193 230.71469713009014 0.11839459376780072 3.0096340809889346e-06 3851172.6427097125 97.898223798996 493 None None OAX_20210325 22290697.78042941 421.657388529747 0.39838122082316096 7.554476100739885e-06 1255023.232458637 23.798920531173003 13602 None 1313165 ONT_20210902 963029963.759594 19801.071578277744 1.1024039872459397 2.264897365588234e-05 132889685.46672647 2730.2286821309426 146901 19962 152489 ZRX_20190623 208427148.89382017 19426.714593203527 0.34845771371247364 3.2485650260235867e-05 65562668.04622303 6112.207652360837 150752 15958 211751 RVN_20190810 161870438.48561436 13650.376682485583 0.03890312485044062 3.279957240304312e-06 23890518.74100337 2014.2309961070482 27303 6880 260058 ARK_20200506 28553953.101059437 3184.3236111648303 0.19264009316314534 2.1408858550079655e-05 1630148.526438789 181.1648792579882 62223 21993 85697 XMR_20190810 1590997156.987178 134167.65696336937 92.81455069609544 0.00782472065574217 234073894.91025046 19733.574388259247 320461 160098 104374 XVG_20210202 289096122.4087249 8664.085669375918 0.017482206510346907 5.233994616840816e-07 38072407.3720059 1139.8491095349452 289903 51625 157669 KAVA_20191030 11882255.384920182 1262.6337273195295 0.8696354255075397 9.242757784768326e-05 16376579.389869861 1740.5541702174353 6658 None None VET_20190916 207069701.1690716 20096.204313898295 0.003734343096218261 3.624196172404906e-07 26757718.39141953 2596.8481759128417 113672 57431 165877 NEBL_20210107 10242496.055376986 279.443823710681 0.588532206181117 1.593883737014992e-05 1402380.2511523247 37.979757980055425 38337 5884 781583 KNC_20210826 199415987.090428 4068.390498633129 2.1569542946668854 4.4015740270041045e-05 61851890.56787552 1262.176373963019 None 11362 108939 LSK_20190714 190312478.59884405 16721.006438515415 1.4281028455056466 0.0001252899467520094 8894581.022794807 780.337064823101 182922 30492 193702 GVT_20200530 4141306.1316374484 439.40815589126737 0.9286899730087045 9.905187552961998e-05 192409.98322618412 20.5219936287582 20366 5554 249419 DUSK_20200229 9318288.246995917 1064.6085274838535 0.03588785751514997 4.113497149889785e-06 646515.7328115474 74.10419034227743 17669 13340 874362 NAS_20200321 10280965.434550425 1662.523568560166 0.22536028906474162 3.640979290099361e-05 4931053.573132574 796.6738067587569 23619 4970 1138524 TRX_20201229 2115731776.7020419 78023.71936914501 0.029576514670782927 1.089379557695636e-06 970352215.9841713 35740.582675958496 554816 76585 31267 FUN_20190807 15229490.15298449 1332.7587049025037 0.0025433257165021214 2.2166539383023148e-07 136018.10503139716 11.854756401902366 36059 17473 379326 ETC_20190704 879369692.7161927 73339.44318988903 7.887292046831106 0.0006570729818664397 926405590.0150362 77176.815545138 228341 24733 547653 BTCST_20210602 258698555.89142475 7055.66901593689 35.498299389673264 0.0009677330507261648 8744989.462545311 238.4005847226315 None None 353837 VIBE_20190605 8292800.293148641 1081.3533424820703 0.04431531248508345 5.778568105453288e-06 309953.7260981782 40.4169262351522 20577 None 1515542 DOCK_20200903 14677628.529947773 1286.5639097639782 0.02623043089227077 2.29871769915022e-06 4172165.8514770744 365.6299633799205 42718 14921 214748 XZC_20210105 32608005.94276843 1042.2457051137233 2.8503861816993905 9.110654484686567e-05 4460845.400609145 142.58145585845844 67141 87 582569 TFUEL_20200518 0.0 0.0 0.0025484520606414013 2.606414816614137e-07 735061.9257916594 75.17803941072013 67471 4045 375081 FUEL_20190507 4551395.089042163 795.6412590409437 0.008575635990834017 1.4996757295153503e-06 2933566.751961775 513.0113805591218 1 1519 None KNC_20210219 452974683.0971952 8763.780572757747 2.225309726984583 4.3042368549052576e-05 125134849.67494646 2420.3823192458694 136753 9781 94681 HOT_20201130 105420940.78061251 5811.600310341611 0.0005936813737225322 3.272799765791905e-08 5922248.080137314 326.4770125446726 26414 7328 291383 RCN_20200905 25149945.791269846 2397.6057146960834 0.04800388626415744 4.578229059525588e-06 431860.21399921604 41.187394089390885 None 1136 1085396 BUSD_20210614 9609748136.296911 246907.26856399863 1.006159938741383 2.57741438230051e-05 3771385273.2074723 96609.12018143621 None None 39810 COMP_20210108 15340.157603670987 0.38615091632731025 1.643959094025276e-07 4.17e-12 14.02479216312074 0.00035574719305828605 1967 None 4236498 CVC_20191019 27440153.772607967 3447.877227087949 0.0387806754652581 4.8728868014244705e-06 3071143.9666032125 385.8967570985703 87795 8142 107901 HC_20190922 94744112.1958224 9487.284837150442 2.1373503767639823 0.00021402683837683426 36638343.5371284 3668.83638539804 12892 848 356881 BTG_20211021 1279929249.3580146 19309.528620656485 72.98080159329776 0.0011051227868498267 73107575.4569514 1107.0424791859202 102702 None 287488 AAVE_20210127 3397861103.7317557 104283.31343027702 275.60910164596754 0.008461602075169975 1133146596.507727 34789.255997786684 100402 2582 22200 DASH_20190512 1102811174.0290682 150680.32774786113 124.68043913089721 0.01711771198508773 654885098.0031661 89910.9320522609 319931 25550 97874 CDT_20191012 7490158.428175336 906.2903656004626 0.011103453240098423 1.343489966586442e-06 186129.8192178182 22.52124084231929 19582 299 173810 LIT_20210523 56395585.88956129 1500.3168866198728 3.1242615511541367 8.319201627615058e-05 14400277.806723094 383.4468164918675 None None 141877 STEEM_20200320 107637528.72407869 17392.02802585505 0.30922905092379505 5.0033879551367184e-05 163509960.59664547 26456.238990163474 11042 3839 219600 XMR_20200725 1264179232.1479695 132508.4970877821 71.65514999749674 0.0075107358144422725 85833363.49951732 8996.865086911246 320518 175685 89794 BLZ_20210429 108168045.80798829 1976.1088787482975 0.3767885342342842 6.881274302106535e-06 33690479.12736984 615.2879060292065 55478 None 191106 VIB_20210819 8806554.46323131 195.37475070528905 0.048121073563933005 1.0695427827004194e-06 1605202.0429425514 35.67734742085949 32795 1278 6383686 LRC_20211002 485250874.9453499 10075.815881854915 0.3897955142106316 8.09253471030076e-06 43083512.769226104 894.455707713064 96187 12504 270613 ADA_20201031 2901306193.740376 213622.622743743 0.09319045908493369 6.866552891359964e-06 466949288.15202785 34406.225875081655 165730 89473 32273 POA_20190914 3192682.8616892984 308.40175412531005 0.01450019315848524 1.4007633899978125e-06 153892.19718423593 14.866460981994345 17697 None 617003 GAS_20200317 11559344.107259193 2290.228265049751 0.8261824749529442 0.00016425307081653634 2402270.793354265 477.59467999341024 322573 98957 219445 KAVA_20210428 306353636.379807 5560.8975489999075 5.28847380720515 9.596984725125849e-05 55994450.73715212 1016.1303771309666 None None 75402 UMA_20210104 475223224.2546775 14205.515573606706 8.4909964867907 0.00025794320021636937 22093902.07952414 671.17820817914 None None 192669 RAMP_20210408 82204796.67918913 1459.4684968807337 0.6078095969314563 1.0816459618184264e-05 18563328.054772817 330.3493220529069 21321 None 87461 STORJ_20200412 13352520.167563925 1940.1017048848832 0.09281672154261228 1.3485876023634278e-05 1588366.7513265985 230.782953033081 81950 8049 134239 OCEAN_20210710 191446420.45770445 5634.817328565822 0.4414380027919847 1.2990106819503607e-05 12502180.586303614 367.89913932565713 117561 3246 96466 FUN_20210301 164475141.11493018 3624.990215016007 0.027010984500279663 5.984315928628843e-07 2840888.1620349432 62.94021707851044 35570 16920 200934 ARPA_20201224 17737238.95225309 758.5784109280601 0.017842331603612035 7.652565357991728e-07 11146630.775679039 478.07832758257626 21251 None 1357092 ANT_20220115 320410952.0981658 7429.069834331402 8.418213408611251 0.0001951852609386381 71521975.64770237 1658.313326360146 98209 3527 43369 BNT_20210723 677378173.8879782 20943.94147474641 2.8803862687461423 8.89735046804847e-05 38581840.25212038 1191.7712500928071 125285 7613 38654 FUN_20190719 19904502.55370179 1853.1398035107989 0.003288633518295179 3.082249005735134e-07 380634.8577720227 35.67473862287159 36176 17534 408436 ZEC_20200417 347829394.08001393 48986.49455671521 38.63515257132706 0.005450118127895709 380281668.28014165 53644.92893288534 72569 15683 144144 NXS_20210620 43423998.69786658 1217.646907298769 0.6370427699312708 1.7863236502491034e-05 424359.79161254875 11.899419752524006 25734 3950 492000 BAL_20210422 598986683.9467291 11054.733451967199 55.38649775373983 0.0010226962152906644 164349971.19292414 3034.6763261590063 None None 49519 WPR_20190405 8826637.508144874 1801.9798720820831 0.014877928572572486 3.039551048231927e-06 386413.880873842 78.94410239518784 35270 None 821639 FIRO_20210408 120940120.37775436 2147.112815420782 10.271822818781045 0.00018265026395055718 15212555.534550471 270.50479089921515 70021 575 197332 TLM_20210819 331513235.9130582 7358.709824743857 0.26202889819139985 5.823874992049313e-06 162470202.88481754 3611.0755648138766 58669 None 12690 FUN_20210513 356527975.082527 7107.489891929145 0.03461813354299341 6.901226591751326e-07 13641216.091681562 271.9416490748177 None 284 242119 LSK_20200414 134468693.08316562 19637.87177511487 0.9665499249356075 0.00014115540989450296 3605180.667822876 526.5022962411164 176946 31322 155237 PPT_20210429 187753716.59140518 3430.131580083678 5.178104137154698 9.456751385772923e-05 25020924.0952694 456.9561606794488 24355 None 724019 ETC_20210418 4841591899.61717 80314.84830466621 38.27004815541852 0.0006350880863625611 8597162948.025515 142669.1636925882 333551 34650 130525 DNT_20210202 94802146.41534933 2839.2597295015494 0.12648253773352108 3.787076445659621e-06 20812778.681157082 623.1657375360164 61729 6824 232543 QSP_20200317 3601347.8671254097 713.4967938139732 0.00494690346455197 9.823551471943012e-07 55862.33934542177 11.09313270079344 55374 8328 355576 FET_20191220 17572224.859422594 2460.7270315036717 0.05152811506720672 7.2111241312297685e-06 23157340.725791164 3240.763965556695 16240 335 495500 AION_20200523 39273652.487303756 4290.335402211741 0.09349811641862582 1.0213928512012566e-05 5504396.8696857225 601.3117513190435 505 72558 368589 WNXM_20210707 133946162.54953825 3922.2115596084386 62.7537548830744 0.0018371942323778677 15583621.842688836 456.22991360900465 None None 117063 TORN_20211230 89290786.9772554 1925.225535740548 38.12235425752363 0.0008192022155280715 3113152.0422409046 66.89778477613763 31729 None 87396 MTH_20200313 1420554.735345483 295.17962684552066 0.004061150252069273 8.474725305327526e-07 230939.89478837658 48.192065028264 19226 1930 1066623 LINK_20200903 5696520109.645549 499319.7451181955 14.80215563079365 0.001299275613936035 1052965443.5144825 92425.20867903855 85604 22465 40610 APPC_20200704 4453388.993559241 491.0482023606885 0.04087111661482022 4.5091044563065605e-06 87872.21202333833 9.69449860041933 24460 3198 1596022 PERL_20210131 0.0 0.0 0.03778891939007827 1.1060883936990682e-06 3823052.5709595475 111.90142892389757 13853 512 461577 GVT_20190401 19227015.93271242 4685.585560197514 4.333684634762767 0.0010561103302851242 986135.6581578518 240.3192994914451 21212 5812 169324 BEL_20210513 106138106.74262288 2057.809809458203 3.259471349516167 6.466718450589168e-05 17519374.407179765 347.5804803085817 17805 None 339562 OXT_20201228 0.0 0.0 0.2373537479632241 9.025437383502503e-06 24949004.9712061 948.6923382528695 54172 1800 140825 BAT_20190625 416196747.31842214 37695.90464769784 0.3269583410645166 2.960310809678892e-05 43425849.14359834 3931.8162130603755 102887 28088 47977 NCASH_20190716 5531255.519028511 505.8578858505794 0.0019043528455387243 1.743479667596216e-07 1006313.8929969417 92.13039567588292 60204 59083 884263 SKY_20210930 21057320.845271382 507.11441147779124 1.00146077351264 2.411515233565845e-05 382039.6883018012 9.199506885677462 19756 4430 653441 VIBE_20190321 8868200.525769444 2194.457742125269 0.04429667404791523 1.0961319495694751e-05 266110.27774079435 65.849634043624 20585 None 1285691 QLC_20200313 1511646.728922444 314.10779624557034 0.006375743154356914 1.3186472488653554e-06 208116.48682699527 43.043175697942736 24545 5671 940522 SNX_20211111 1827183230.7313404 28135.536684633767 9.61564877853057 0.00014803258116313772 143605156.51003164 2210.796429459954 169014 8310 50175 NXS_20210120 22119448.086986825 610.9743798427344 0.32572638102868623 9.00810094083499e-06 177058.79371448566 4.89663588563341 24226 3528 480496 DASH_20200324 660242737.5801152 102486.28340991812 70.28240311013805 0.010908970789285804 596529958.1070459 92591.14088238901 316320 34222 60317 RSR_20210710 317111834.0725742 9333.51092934222 0.024107969411429585 7.093882476204605e-07 25404805.56027291 747.5482563453214 None None 97085 TROY_20210115 6782151.099271294 173.86540329190964 0.00359636941072256 9.16756429708339e-08 1374412.758732159 35.0353812343135 10076 None 988367 COMP_20210128 2429946.8460467965 78.44886630890109 2.5025095103857446e-05 8.211414878693338e-10 0.44738516907961207 1.4679925165682153e-05 1971 None 2976812 DASH_20210610 1800113136.417412 47957.076420686964 176.5385384745324 0.004713519955512584 796017430.4821237 21253.39926304315 396528 41141 52326 BEL_20210710 56583274.24413081 1664.900702922063 1.1763607596216918 3.46165301335847e-05 4749618.71648164 139.76606927538046 None None 582298 ICX_20210723 495566063.7721028 15322.469835335765 0.7740119098427142 2.3907968102208082e-05 34670544.012786 1070.9166742826078 142156 32596 243184 SC_20210724 536933190.8586395 16063.062854499936 0.011122187820379995 3.325124695890539e-07 36611528.30056636 1094.5499111554234 138872 47477 61155 NPXS_20190430 120836575.39367396 23216.765292393553 0.0006164877988490914 1.1839920432011477e-07 2958554.927651514 568.2035395108294 59648 4317 161982 OMG_20200329 70828769.29839797 11366.445352638664 0.5075703993683786 8.118987390684016e-05 144068156.69730964 23044.833762569822 280412 42970 453059 DASH_20190302 704010273.7786779 184295.44597974463 81.52787471938433 0.02132321136615163 960636014.239819 251249.58608424023 319759 23237 94938 GO_20210916 37452542.27636726 777.0576438237935 0.03431637732082997 7.11969841668473e-07 1114091.6488634893 23.114317908028013 23130 1122 253298 CND_20200410 7874431.101072341 1080.4467432564695 0.004083389481136093 5.600303236128753e-07 99184.12034645356 13.602943160697114 34694 5955 426986 RDN_20200403 3643372.336301429 537.2810961018831 0.07232071006989528 1.0608711379102688e-05 530709.1206527901 77.84962124710216 25054 4319 1242086 STEEM_20200531 74553502.06737229 7723.24336376447 0.20957096072833048 2.169712998144899e-05 2786566.208587036 288.49650266194146 11451 3865 219659 LPT_20210805 408238822.9028466 10263.844090530389 17.026609964165882 0.0004280911106421393 16528001.706010237 415.5548651147902 14794 1256 108437 WPR_20201224 4550549.755421774 194.6340849604221 0.007441194046811442 3.191217886133636e-07 148343.85875735932 6.361849622338745 32478 None 7632831 OCEAN_20210930 264513274.5159665 6366.861356436443 0.6102449666323441 1.4681143928011491e-05 18042691.652120404 434.0672475437204 None 3553 164297 RIF_20210527 159593326.28833422 4073.391255869657 0.2174072122976051 5.549507855816175e-06 3362590.811515319 85.83305000413326 42961 3272 452018 WABI_20201226 3875904.490970943 157.0313079848975 0.06629389349904204 2.688519395438141e-06 510333.2089529524 20.69633654004685 40929 7492 1416175 SNT_20190904 55068672.027745366 5182.781400266411 0.015533381763408642 1.4637199472757354e-06 106486516.45484065 10034.28877400183 111326 5723 268012 GRT_20211021 4355463121.97286 65710.8197090047 0.8784895164882117 1.3258087645871339e-05 303730880.34127784 4583.880122349027 152739 18652 27153 KNC_20190901 28433862.965218846 2962.2270918609893 0.16987147355817486 1.7701091670164405e-05 6943138.324382613 723.4948010057682 97754 6702 205924 NEO_20200322 440495094.52588624 71460.79262888848 6.23465715127694 0.0010123591984179288 478379991.45954317 77677.46853473238 322258 98949 219445 EVX_20200901 9435021.802134667 807.2312369575945 0.4323705872033346 3.703343407855253e-05 537383.439466868 46.02800183316584 16912 2831 827179 QLC_20190530 9860157.887228342 1140.215471012359 0.04108197867532782 4.750870517600999e-06 1719742.4751619124 198.87732009411795 25039 5800 940522 SNGLS_20210422 25893020.065379974 480.14667695320503 0.028722590886142478 5.30002656804996e-07 3400475.041125759 62.74715304548832 9453 2130 958581 XTZ_20211028 5111272703.808078 87340.74592479639 5.892478546861154 0.00010069511719961007 515811041.9755521 8814.5680822629 206869 61859 44126 THETA_20200901 479462347.7554664 41021.31316386261 0.47748513604283105 4.090930147982612e-05 55796583.182112224 4780.461360239018 72581 4368 65774 MATIC_20191127 51137413.19870371 7136.8881831699655 0.020771791437875095 2.902372930068741e-06 80784639.39352107 11287.767414879543 24869 1226 211768 FUEL_20190414 5714894.347468677 1126.260960919652 0.01076208042445095 2.1221505613983586e-06 1519574.885735664 299.6415720444037 1 1526 None XRP_20190318 13059410827.740152 3279414.279766191 0.31514319977266525 7.914110701756493e-05 583878764.92904 146627.98325924986 914728 198069 34701 SOL_20200511 4324416.949285259 493.93543417460234 0.541777928609612 6.184254854237409e-05 2370841.7230691817 270.6254474438744 52086 1828 146569 AST_20201231 11686079.83820702 404.7154501665277 0.06760236129095448 2.3434334324788036e-06 849345.1354864882 29.442518696142024 34463 3470 209786 SANTOS_20211230 0.0 0.0 3.6706231686655455 7.888783512221329e-05 1716403.6671825515 36.88838741490461 None None 342835 HC_20190623 172951764.38235432 16127.39535621522 3.9527621297764672 0.0003685467021459214 119227064.6885347 11116.464906018213 12793 818 640655 VITE_20210114 8252072.134160019 221.60020006905333 0.014277313321184598 3.8202905608723503e-07 826423.4903343706 22.11324909934543 None None 1009411 BEAM_20191102 24649229.77157323 2669.716620998601 0.5801954680565383 6.283753611154231e-05 34071722.11951695 3690.106501933153 11824 1389 213970 BEL_20210722 64019792.890099585 1989.368982979848 1.338487657390234 4.14451871454135e-05 8889816.812193502 275.265983541591 None None 593705 AST_20190730 7168607.076523235 753.6425286388921 0.041644255499282336 4.376493480789019e-06 952040.2125364983 100.05216166457295 32062 3595 228402 GXS_20210527 47925520.92169374 1223.2303342229138 0.6863999522154247 1.7520954741082927e-05 11891258.68651215 303.5347024550779 None 655 535663 XRP_20190805 13668611714.50451 1248738.2974836878 0.3187297098404126 2.9107884809253224e-05 1214318296.4782372 110897.21480107683 936917 204344 35107 NULS_20191113 29833504.103850823 3389.7887698073414 0.4034532178934676 4.583641863904437e-05 11347289.79571444 1289.1683655681277 21218 5275 483582 VITE_20200417 5001715.506686824 704.4629704691997 0.010181585779062727 1.4362786615828522e-06 4701615.720092445 663.2395463993146 None None 537072 VTHO_20210613 283659100.1516804 7908.970887903042 0.007732554564338211 2.1674207001483987e-07 20891103.132170442 585.5737454013882 377624 186579 25894 CELR_20200905 29772105.92506769 2838.24752136276 0.007583907550873535 7.232928130672916e-07 6772257.313594061 645.8840657413849 24077 None 306281 CVC_20200109 12230633.372839827 1520.1183491590486 0.01825995400604174 2.269489264638088e-06 3637270.9183502663 452.06835126994133 None 8104 121680 LSK_20190807 169378153.54291496 14802.138090614197 1.2681220953715255 0.0001105240991633378 4004366.9299245127 349.0034983734777 182424 30766 180876 OST_20190325 15141191.744059777 3791.4960508843183 0.026789788089006852 6.713548237703321e-06 809593.3580366257 202.88492182338112 None 744 1075482 BEAM_20210204 32934812.549527295 878.7456346293401 0.40920523689441063 1.0909370105763397e-05 9029421.40709528 240.72345876727658 16302 1675 285375 GXS_20210506 73652979.14488766 1286.159451545269 1.0543534871191513 1.8391651271625267e-05 13397128.556117807 233.69327218567486 None None 810772 MIR_20210723 214778054.12082538 6634.372761366903 2.7625348539648895 8.533055125732338e-05 12799291.813606082 395.3508947012309 51130 None 15750 WING_20210828 45326320.02334912 924.1836288539936 23.940438364405274 0.00048813136518882926 6866749.528040472 140.00895766870022 14731 None 465613 TOMO_20200229 35990507.80309926 4117.8377637361355 0.5132723725959588 5.8908195919086455e-05 19921949.81320498 2286.4392968415277 22008 1502 222271 NEO_20200423 530788301.1270413 74609.20255613606 7.531799610634029 0.0010579597985225758 327746632.1350446 46037.172896963944 321014 99291 240659 MDX_20210624 831002237.9722252 24650.025850810165 1.6769161634478078 4.975792056648882e-05 91212679.03948677 2706.4878598176147 1297 None 14688 ARPA_20211125 150218383.68041548 2625.853969729234 0.15290088108779082 2.6733932888947623e-06 46138295.617262825 806.7043759768254 56088 None 231620 VIB_20210125 3607926.9052973087 112.17025169687605 0.019813377630641456 6.140980080568978e-07 918924.5555253834 28.48124886238484 30379 1091 None ADX_20190716 10223299.543917404 933.3090352198504 0.11067697078575736 1.012080332388656e-05 1765382.3209896162 161.43455260253234 54136 3882 831404 YOYO_20190929 2491427.690475775 303.5181135922457 0.014245373401136 1.7354422440830593e-06 607436.6914119052 74.00095913233137 7538 None 797587 BLZ_20191127 4677518.615566213 652.4207142857686 0.02206063325995084 3.07884703151509e-06 594047.8770445329 82.90707348536363 36207 None 603268 DLT_20190510 6171123.132306504 998.2941527419889 0.07775278542737797 1.2593184298569862e-05 1007066.9315949457 163.1090050454296 15150 2677 2743184 APPC_20200423 3090552.359894042 434.5195441478109 0.02838999688764905 3.990583484717219e-06 19714.69401600485 2.77115677954684 24726 3214 778214 DOGE_20200325 231830875.29133603 34308.44695762957 0.0018716967539753329 2.769907533836154e-07 153573605.50318238 22727.222557722747 138936 151118 105974 TRX_20200310 991205129.8470037 125195.7243086148 0.015044315690060655 1.898293674764645e-06 1466410499.408032 185031.86405971437 500995 72186 46870 QKC_20200531 15196671.97361536 1574.568617083362 0.004324637090515191 4.4777616414117425e-07 2820143.912785692 291.9998134323969 None 9194 672374 NEAR_20210104 358682750.9770675 10721.852689291578 1.4742575411259051 4.4786160496902865e-05 55748633.851986416 1693.5760499968885 None None None GXS_20190401 67864164.90619794 16537.49135651598 1.1312125545772593 0.000275668130871099 13866494.03470833 3379.1620123167736 None None 652404 MTH_20210723 6603087.469076699 204.6124049773317 0.019070836529090703 5.904938392324299e-07 189612.01058670523 5.870991758811021 21800 2057 970963 GO_20200107 17338521.276087385 2233.864926869544 0.01954892495007578 2.5212969726156074e-06 7620407.383584272 982.8320542124832 10482 676 1082052 GO_20190708 11843551.096529488 1035.6406026823815 0.015968054823862855 1.39613547125246e-06 596092.3678849159 52.118163929604854 10002 677 942776 CHR_20210814 190342419.4845407 3993.5199783929706 0.3354062658141745 7.030019506458785e-06 48054142.28123632 1007.2010932270445 79889 None 86794 ARDR_20190314 65928455.382726535 17051.649830736245 0.06600727440761235 1.7074691430010092e-05 5587043.734970157 1445.250521805893 69303 6595 910933 SNM_20190923 8130685.5323737925 809.4139203111425 0.018577801271534394 1.8496975294400659e-06 22301433.255232934 2220.440696520049 30984 9857 16793543 FUN_20200329 11657899.45682454 1869.3064473379845 0.001941997561066784 3.106168735267417e-07 202587.76792878832 32.4033254986345 34734 16973 317174 SUSD_20210519 241572509.07891798 5661.601388365378 1.0228377663471448 2.3907639093508288e-05 60180948.06104934 1406.659427219879 127679 6562 36942 POA_20201115 6114515.218498058 379.84076167845245 0.021545631198282903 1.339560667350927e-06 115273.41040881265 7.166915889071407 None None 174905 REQ_20201228 25562698.106330242 965.552441049884 0.03289336440806062 1.2507786514653206e-06 651561.5448581286 24.775795516514656 39475 27357 356160 QLC_20190826 3946866.3285539905 390.8617563234545 0.01644527636897496 1.6285906513477274e-06 216124.84664273573 21.40303980724525 None 5752 940522 AUCTION_20210506 148856844.52355647 2600.2246790656004 51.008903724733806 0.0008897755643759666 13455865.17915072 234.717846487265 32940 None 32937 NCASH_20200422 550359.1297332358 80.36471250816479 0.00018961821528942343 2.7699855262896078e-08 1501517.38114392 219.3450353328437 57346 58221 728678 NEBL_20200730 9300676.831737379 838.5132219161928 0.5611405138343708 5.0590268720805754e-05 150004.1789760144 13.5237993631669 38874 5949 643631 ZEN_20190421 44326913.57795729 8347.265400827426 7.0527423266505025 0.001327878170663306 370666.0836581543 69.78837143036216 25413 1561 245481 POLY_20200105 9843550.183450628 1339.3468243089849 0.017464176225438957 2.3750834191849814e-06 4133716.184356807 562.1748568238402 34926 5012 298453 WAN_20191011 23053320.442440197 2692.900798372597 0.21717172899971554 2.536822944302021e-05 4109808.4001345993 480.0742847224045 107625 16788 355950 KEEP_20210909 246046784.87107843 5310.91376988121 0.44468204106899756 9.60500144755148e-06 42817492.62804961 924.8452617611541 23956 2970 113916 HBAR_20200331 120882258.62162127 18818.03508387867 0.03167408017305874 4.940538422396467e-06 7843030.659031002 1223.3597347504035 38241 6383 106504 SNT_20210813 351094517.4364985 7897.046620511471 0.09047838055750199 2.035158747309022e-06 46230621.78506159 1039.8799551856255 134073 6036 133680 MANA_20210418 1998911318.8536222 33158.98214405538 1.5127760106789845 2.516671797246563e-05 1387116972.4195757 23076.239571009217 117607 28228 13153 PIVX_20200730 27996218.14273234 2521.299960636075 0.4389653510245039 3.955138785358299e-05 542109.2425457608 48.84479574731308 64032 8487 353299 DOCK_20190512 6339592.753830255 870.3671826772227 0.01231186617704165 1.6904596642519205e-06 2799889.556906243 384.43403235946124 None 15290 217238 TNT_20200325 15237977.391448742 2254.6915964107657 0.03557847877159478 5.265227723591427e-06 471431.7821886234 69.7667740460954 17665 2564 1338754 GTC_20211125 126905118.23821096 2218.3324060636187 8.93007143091473 0.00015614023992859753 19822396.980011664 346.59004066912513 None 1474 24778 POA_20200403 1882571.2432078691 277.5958063425847 0.008595294377573238 1.2608421181425302e-06 36503.31469381191 5.3546643775060145 17343 None 691851 BNT_20211216 760545696.4512975 15589.299657330217 3.3134011451018712 6.780121795660662e-05 49513307.13502917 1013.1772103046414 141136 8653 38212 RVN_20210219 819802318.3909615 15860.859115331332 0.10003155635074623 1.934829593729615e-06 263496926.41567245 5096.608207296322 39744 16945 101877 ADA_20190220 1428090828.5013225 364772.9606367488 0.04590089299360815 1.172432754205139e-05 67584583.51939453 17262.9276316008 147866 71254 106866 TNT_20190523 14848496.699746033 1937.7295582738939 0.034638725883784305 4.52035545168043e-06 52949571.243854284 6909.921682435417 17375 2517 965063 LTC_20200306 3959484177.2508626 437087.5807641647 61.6474779705907 0.006805266999472199 4235758005.4962916 467585.4572072755 447955 212089 137206 VIBE_20200330 1338931.6270536222 226.43026361182245 0.00715120897428403 1.2100039767755837e-06 49518.59909192609 8.3786814287 19291 None 1312296 AION_20200314 25176017.529876303 4572.874467031122 0.06374412499986029 1.1458466027695097e-05 3399512.6723816963 611.0869114179544 505 72545 246428 EVX_20210125 6716663.514328795 208.60717683652388 0.30891596923618514 9.571417089601211e-06 314975.04275651247 9.75915073115754 16792 2806 915325 FORTH_20210710 158091971.78514746 4661.192691335657 18.503083396149798 0.0005444438087692364 43753096.22317518 1287.4125810917108 31083 None 63782 RDN_20190920 8891865.505972672 867.4996460127672 0.17586532069108957 1.7150809555132735e-05 409388.86628638225 39.92458804315698 25552 4386 1994136 SOL_20201130 87979239.4231415 4849.032682254934 1.9133429784467306 0.00010530381369977171 7475716.686282049 411.4377223907829 92355 2645 83508 SNT_20190725 75673963.12137698 7702.992265628951 0.02142699466077783 2.185116427610619e-06 18710232.19690434 1908.0620677384647 111728 5727 282023 ARK_20200913 60301923.96643949 5783.086610754673 0.3983903499568732 3.815464861492404e-05 6399627.6528454 612.905268380873 63100 21801 112680 ICX_20210310 1175592576.5857165 21509.67293804679 1.9903616929740653 3.635139383360849e-05 216411920.00703734 3952.4850996846926 124523 29811 148374 WRX_20210703 490830754.53616804 14513.798652518199 1.1315753273478104 3.341791475516855e-05 8412815.968166847 248.44900739754928 282740 None 1268 SNM_20190812 4496971.442224846 389.2756705950815 0.010395182557080907 8.998482006956978e-07 70290.75392642453 6.084646238670658 31105 9934 None RVN_20210509 1528032337.0441086 26052.793331431607 0.1757130067654274 2.992765357788684e-06 152562356.1375666 2598.460653289354 None 36265 40253 LOOM_20200423 11834054.548006175 1663.7413812010618 0.014211588731249447 1.9976237231357336e-06 24898811.96271692 3499.8520148032903 21570 None 708796 PSG_20210809 86320239.54953174 1962.1653689147317 40.99591966123871 0.0009321467534121066 482976745.3692994 10981.707664804586 None None 33865 GLM_20201229 110492519.19826658 6393.577954391452 0.11669405667245551 4.299270496154205e-06 2891562.0994633012 106.53162617282325 145980 20323 336346 LSK_20200411 134760412.84300533 19653.96518056581 0.9687300305472114 0.00014124527142932443 4274887.296041456 623.2981299424262 177074 31331 155237 NEAR_20210304 1286205536.8656743 25302.578969219347 4.205342548435056 8.299746253603502e-05 65054428.73103198 1283.9269213434848 40611 None None LOOM_20200520 13235243.744409347 1357.186792256076 0.015753060579410696 1.6136712056925898e-06 7084795.863578144 725.7339629740504 21562 None 710421 BCPT_20210204 2915630.725695149 77.8239888580826 0.02550432594290174 6.799465408696391e-07 3441782.1533992044 91.7580756641 10454 3228 1647629 QSP_20190714 0.0 0.0 0.019278058952948478 1.6928353576018778e-06 1768224.2938942914 155.27043527466023 56884 8594 721105 ASR_20210804 12362188.903038047 321.75905343691585 7.131199618677161 0.00018564515622573042 4698960.871054836 122.32714993994074 1994386 None 92555 WNXM_20200907 36639144.09213671 3561.1909303345983 39.132661091711135 0.003804343414370415 30228094.95853255 2938.6719629147606 None None 105276 BCH_20200322 4038151001.097741 655102.5763503159 219.87228212277262 0.03570026749014809 3231255114.04919 524653.0885418837 2658 288236 138735 TORN_20210809 61204912.03950702 1391.2630390985114 59.753957651293106 0.0013586585711075226 160495950.92736372 3649.284631957699 None None 138254 POE_20190522 13219596.23266092 1660.6701353856515 0.005810143774306049 7.301872225999096e-07 1348481.7927142924 169.46984673648632 None 10887 944416 MANA_20200404 34441375.72327075 5121.629395179131 0.026003563530754985 3.864890745384057e-06 19263168.128331207 2863.070676367519 48014 6816 46518 LTO_20200317 5313001.633184112 1054.620107307684 0.025086155727858803 4.982144083331909e-06 1336412.5719464726 265.4133244026465 14510 415 882624 ANKR_20210527 810907737.7674443 20697.259498001968 0.1153579384252772 2.9427451208474035e-06 117121075.9985602 2987.722211821703 107337 None 5363 OM_20211120 82822018.87983741 1424.766668983228 0.21683857357933176 3.727062091448005e-06 6913192.6354166595 118.82525224651668 54816 None 82416 MTL_20190411 23593679.591480237 4445.490898320774 0.5221097593934731 9.837008318845673e-05 4099049.160014477 772.2970115184528 33348 None 724341 GRS_20200526 12311840.198441157 1385.338477651209 0.1638897158670637 1.844362372427692e-05 1713048.5563664262 192.7809980503337 37283 106879 None BCPT_20190520 3915678.5953601697 478.53864264765286 0.04660899749994174 5.7041832508324415e-06 1026520.8642499043 125.62945857163447 10757 2084 1042603 CAKE_20210523 2621029099.5073724 69735.27590486877 15.257028470900945 0.0004062601482286284 461793655.01064676 12296.5201968052 770078 None 978 REP_20201018 69729256.96062559 6138.513975727816 13.530644773968906 0.0011905871309923171 5197573.303382246 457.34434616902394 136208 10411 107506 MFT_20210614 82672853.05439879 2124.139439497773 0.008828303865377399 2.2614891010674086e-07 11373605.021187406 291.3502320206025 33975 3493 261213 EOS_20210219 4609100611.260651 89173.07722070804 4.8424408513852155 9.365333382698616e-05 3449435098.3092713 66712.4507435274 198766 78063 58943 DNT_20200322 2815072.1627647323 456.87048315769863 0.0037957640801771623 6.159802676644484e-07 170211.52013936188 27.62209018272895 58863 6088 656002 JST_20211204 519923851.66619676 9683.411229081634 0.07127515874707917 1.3262983962395788e-06 435921381.0330405 8111.68770037088 55880 None 184899 RAMP_20210813 81801359.14220789 1839.97668713946 0.2582944412034887 5.8098606130213234e-06 13741942.901022924 309.0998491297098 31265 None 118954 POLY_20211021 643485857.4283736 9708.168223820181 0.7369617152374869 1.1122162335333216e-05 36902021.17969241 556.9221054178938 58011 7904 130896 ETC_20210708 6766491079.088114 199147.03031136142 52.716735679208114 0.001551813746174663 3595247179.436155 105832.69092940386 479064 58217 107608 PIVX_20210120 29073486.3462699 802.8502706440561 0.44673621425393123 1.2394917824890642e-05 1271604.500209648 35.28129751509399 64852 8713 325207 BRD_20190531 27415477.192754816 3307.4276724725996 0.45812031224314764 5.5151072357224177e-05 532135.5420228757 64.0614375692164 168 None None RSR_20210617 393367109.5499304 10284.361715384497 0.029999130453958165 7.83826556005844e-07 68190664.73099808 1781.706772130627 74953 None 81455 QUICK_20210814 293053130.6915318 6151.090136762219 810.7606110116351 0.016983129378198607 54546799.13696566 1142.6003364344567 44835 2042 4564 APPC_20200105 2985563.8675485943 406.0213240386949 0.02675752594148158 3.638955275168014e-06 42404.44922660317 5.766896929903441 25013 3249 1530437 MDA_20200310 10078127.790158423 1274.319676768662 0.5136306891461997 6.48446531744744e-05 887934.4684437412 112.09961527728487 None 372 1557783 KSM_20210428 3569554927.515686 64794.1688631802 396.18514909793294 0.007193682089485558 312572454.90719366 5675.495095290897 52929 None 86081 XLM_20190221 1750394568.3964684 441340.5664346041 0.09131134931521345 2.3007121172111175e-05 157150173.51975954 39596.09743479074 262613 99175 66683 SKL_20210723 238672202.00577384 7372.449491472654 0.1967492082810718 6.077262811982347e-06 28734084.3622485 887.5490979439737 None 2313 175658 POE_20200421 2241060.285001487 327.269526048898 0.0008901681108996569 1.3001464322872274e-07 11086.176748553009 1.61920574 None 10375 1042825 BTG_20200721 157953619.1408683 17240.32852158123 8.995864881544351 0.0009818311057897826 9071017.211479602 990.0334183161062 75901 None 222714 NEBL_20200806 9677581.532219902 826.1132477190608 0.5830209511404529 4.976877020682807e-05 267073.5049809609 22.798357197505755 38854 5951 444797 RLC_20210710 217276390.23222616 6393.002281122541 3.0361547006534466 8.934431026005536e-05 29903947.859332144 879.9774250533649 45686 7717 151690 GTO_20190530 25525284.600652013 2951.614082303448 0.0385113588945373 4.453591078435842e-06 16844298.17490068 1947.9347970993513 17313 None 1154780 ARPA_20200418 0.0 0.0 0.008160927893576262 1.1592344383321918e-06 1799079.5471797914 255.55365708248803 16723 None 1423765 NANO_20190906 123041255.95167054 11641.645084232805 0.9233983862132155 8.736806366695441e-05 3143938.7964309813 297.4662388766246 98531 47608 229089 JST_20210324 131913011.63101053 2419.7805333238825 0.09261805799184353 1.699041451044594e-06 440687667.4135703 8084.240051392017 37123 None 92157 CND_20201201 17469612.95530282 887.7866938184814 0.009063975627103985 4.6018785490577806e-07 111783.97679275459 5.675393514879854 33968 5900 458768 DNT_20200414 3059075.946774252 446.4987075642731 0.004025710561446652 5.879166815469871e-07 81440.01921356545 11.89353906853066 58552 6064 660159 AST_20200927 21815355.763997458 2031.6914419209243 0.12939507602831915 1.2053623065694092e-05 13747578.175573735 1280.6370263908784 33513 3473 141557 AST_20190530 9027480.373061774 1043.9709024618594 0.05418457921539801 6.26610324535436e-06 2314050.7619161787 267.6053076192776 31758 3597 410300 NANO_20200806 135385231.93304417 11532.764744510647 1.016037293484548 8.655093993709523e-05 7163721.565808326 610.240233251615 None 52278 206473 RCN_20200629 31187884.0036354 3420.704126429357 0.061018333736282244 6.68832185341009e-06 338222.3911379039 37.07312329663243 None 1136 966590 XLM_20210724 6298914749.6799555 188440.32230051485 0.26948431452917415 8.05937637939293e-06 852840957.347513 25505.62647415716 603864 196416 24604 YOYO_20190804 2912342.7888665637 269.85965455685215 0.016652404795853497 1.5426020868127076e-06 1452401.5857573114 134.54379379710974 7595 None 1167957 BQX_20210325 943072560.5838712 17841.157777746117 4.254401746393127 8.067593208752067e-05 19490118.728381563 369.5898010200116 56957 3008 27667 FOR_20210206 24787846.62482012 654.1054430803571 0.04313110446846567 1.1299454378169408e-06 34995937.19663664 916.8209361849076 20423 None 253691 XEM_20200511 336950857.3667046 38481.57909781013 0.03763284719480401 4.287206546694847e-06 22697893.704551797 2585.7878353613905 209651 17915 220476 REEF_20210304 164624490.01633918 3237.9161188605713 0.03789927383233195 7.479874763620532e-07 172594709.44290844 3406.3629219066606 68260 6511 44071 CVC_20200407 13671318.595573807 1876.2133105981168 0.020419525756358647 2.799659832707192e-06 7451951.340403335 1021.7146613465798 None 8058 115940 OMG_20190509 231006480.16458422 38810.948578569776 1.6503075915203542 0.0002770458014799434 117872102.59464464 19787.80883227651 289999 38668 None LTC_20200423 2700063347.886299 379529.0378651959 41.815657017824236 0.005877734716150135 3106096059.358067 436602.21892493375 133108 213229 145046 SUN_20201228 0.0 0.0 0.0001882417618254495 7e-09 8.747029946743162 0.000325269 42 None None SC_20190228 93723923.51967144 24523.64132108481 0.0023943757479146805 6.276636241169829e-07 984809.2587881635 258.1587075350566 109113 31158 213763 KMD_20211111 125545143.04354188 1936.7926459476002 0.9803452738100308 1.5092859597094728e-05 5355789.061709031 82.45479883416462 116547 9940 126326 AION_20211111 85033642.6590699 1311.6126874567155 0.1714479941339512 2.6400096319469363e-06 6952740.055991842 107.0604576563367 799 73862 403346 RLC_20200801 82610734.53714812 7288.985236619442 1.1779585481636468 0.00010392048827570266 6188110.320067594 545.9202677104737 32416 3779 278673 HNT_20210616 1166094079.6847653 28874.33037192716 13.489188596762833 0.00033408375611583243 10267916.866831113 254.30323030543653 54844 37188 2774 PERL_20210127 0.0 0.0 0.04253054608375222 1.3053307267951796e-06 5416093.631455317 166.2286071384152 13777 505 443333 WAN_20200117 19683718.391442187 2261.1816468482657 0.18566865439650473 2.1308071496442555e-05 2500708.592423798 286.9912406718968 106668 16517 889247 ARPA_20200318 0.0 0.0 0.004683568081191343 8.650396821000342e-07 1042395.8156405136 192.52709245441565 12459 None 1589260 GRS_20210428 112102727.56584364 2034.9042909964448 1.4480301491195477 2.6292425580499222e-05 3665324.1218364504 66.55266242929402 41490 106845 7053372 EOS_20200531 2597425533.6120987 268285.79117116856 2.7681401290266936 0.000286011417048843 2101509756.4145916 217133.43810576657 1545 71400 89839 NXS_20210718 28799532.432902895 911.2714582246919 0.42500856440667595 1.3447236693768389e-05 258252.5524851317 8.171089928235949 25986 3958 406501 RCN_20210104 18673526.399237324 558.1946683993758 0.03583338205285551 1.0885747944286542e-06 472720.0229200742 14.360662384965181 None 1128 5449742 PORTO_20211230 0.0 0.0 3.2311421392050845 6.943324594389466e-05 2002648.0735740578 43.03442876881397 None None 203949 QSP_20210418 71881022.74109931 1192.3965135213105 0.10040062481485741 1.670276492446994e-06 2683612.0649061915 44.64488298878237 63635 8390 217402 NKN_20200905 14444515.64830554 1377.603074216542 0.02222233176662391 2.1193893449485264e-06 2147407.9976706095 204.8027037538812 13694 1021 204746 TNB_20210207 9127762.94006758 231.99824613624273 0.002512725892299288 6.39238727304784e-08 901955.8415116975 22.94580184731025 15990 1423 3046579 VIB_20200129 3646563.370216148 390.17578171395945 0.01994284488963863 2.137577295398793e-06 731769.2362050936 78.43481275813444 31698 1113 None ADA_20201130 5139050069.158035 283242.06829341076 0.16640238714566252 9.162917049035355e-06 1365586028.7531896 75195.7452018635 166878 91093 42419 TRX_20190201 1658929787.0731268 483472.7032643513 0.025308572217691692 7.375841895898809e-06 178424366.40179226 51999.374189729366 378559 69687 78009 ONE_20210806 812662172.3098853 19834.745952484005 0.07781693084344936 1.9018751937266853e-06 21637048.435459282 528.817639539775 197557 26800 28462 ZEC_20210421 2717240112.403164 48096.55843460644 247.08843854566734 0.004382249357956292 2971807660.669314 52706.64337672245 74708 18844 91916 FUN_20200903 27559950.22732411 2415.2984609994674 0.004585273936442234 4.0183290912913754e-07 659580.4313632299 57.802680322516686 34230 16684 242741 NPXS_20190908 87206533.2414865 8330.134856783434 0.000368595848067538 3.5215696038409945e-08 6779830.172843836 647.7458707433988 65017 5466 165759 NXS_20201231 14089544.788418304 487.77811938358184 0.208625559204661 7.231997536381997e-06 94580.19023603943 3.2786189064522646 24164 3522 535760 QTUM_20210114 303389474.6663894 8147.712373795353 2.9435618212924815 7.895362191404114e-05 379689506.9129696 10184.213409987904 189198 15035 249496 LOOM_20200511 11611771.317066578 1326.2163410475769 0.014040029736439813 1.5994672709793246e-06 26431984.027975984 3011.1826081157733 21554 None 679893 GXS_20200319 18130252.919231094 3368.835143120092 0.2824356257159632 5.242172582265081e-05 6259714.276141517 1161.8400641922876 None None 697464 MATIC_20210408 1723635475.7173834 30601.59585844569 0.33974236699001703 6.0459881049694456e-06 315682605.6859682 5617.825341692536 3415 10784 24254 SNM_20190701 7795030.881756736 718.7002845219345 0.019353390349429518 1.7857058286503293e-06 298391.6526586475 27.532112139145585 31323 9991 14838367 AKRO_20210602 62787904.702385396 1711.212843544367 0.02311088095062545 6.301630762304999e-07 16800839.931916438 458.10754671669764 40584 None 176887 POND_20210624 51324133.00112449 1522.4281565538004 0.06643299967916293 1.9712183549074892e-06 8724925.824500235 258.88841409423367 19348 591 100675 CKB_20210729 280882798.8083734 7021.138700475536 0.010344417466401258 2.5853347852576324e-07 8483685.033659128 212.02901077733566 50349 5210 122182 ROSE_20220105 1451395479.7438552 31332.433448514857 0.4030405742109959 8.773553165321277e-06 152064986.69657576 3310.2132408828857 108319 6857 35703 IOTX_20200106 15208618.615895666 2070.82721385589 0.003502500465675869 4.769205851561653e-07 2329364.959179694 317.1797149668258 22150 1787 479977 FLM_20210809 0.0 0.0 0.4980172186544421 1.1321570059862625e-05 13388478.590494905 304.36417191919287 None None 72660 HOT_20190818 145547412.98437095 14247.804243336353 0.0008202150709599595 8.024344410448117e-08 6849335.775085194 670.085581063046 24165 6628 386677 LTC_20190801 6220195734.015525 618799.0938225895 98.92354697864526 0.009829826890863326 3473296190.088316 345134.21052960743 451299 207040 141428 VET_20190801 310025736.26849884 30842.05913577918 0.005594680912937643 5.556247298810023e-07 30390585.20783374 3018.1811902766526 113162 57154 138282 DUSK_20210723 37020456.23205073 1144.65898472168 0.10274915450218076 3.1737541465817684e-06 12748220.881883724 393.77179385510203 28108 13637 415059 POLY_20210519 258381123.2405658 6061.822816601629 0.3110248168493039 7.270183301298477e-06 4214287.675448956 98.50867913142073 46374 5559 144088 STEEM_20190916 51495241.9806106 4997.63557002009 0.15869606900696567 1.5399625581480203e-05 241621.97006880937 23.446629110617472 11069 3773 219044 MFT_20200422 4821049.982143507 704.0069127868638 0.0004962219792925453 7.248922253429734e-08 565672.7497301609 82.63474724605683 18293 2597 823194 WABI_20210112 4690168.458625784 132.40456873069962 0.07964101582872263 2.240459884052902e-06 1058829.385793105 29.786972682865567 40784 7473 1296084 REP_20210120 125719981.39224672 3471.951674017783 21.630024016847923 0.0005981874697440962 26065294.42055101 720.8467501200898 136690 10444 130861 KAVA_20210704 300795377.88226986 8676.652149796806 4.29472676726575 0.00012386541874267153 31706328.48280701 914.4511087991568 110887 None 48831 CAKE_20210304 1601910641.7631805 31499.329384949713 12.629940635912384 0.00024926755874724 309920281.52569807 6116.66152749002 182622 None 6578 TRB_20210527 123106004.19870321 3142.1045773685705 71.47507954427537 0.0018230823455624547 181721347.82324722 4635.083768226605 21708 None 255524 FIO_20210202 16135980.221469203 483.34924397815786 0.07455882586577067 2.2327173123501168e-06 1515921.465679831 45.39535140588064 None 168 730561 SNM_20220115 9758412.917734092 226.44 0.22118072572460093 5.13e-06 68488.56213819879 1.58850335 33257 9782 None STORM_20200423 7919772.101816123 1113.4351732131558 0.0010418564989853967 1.463451430916707e-07 72743.6297479879 10.21798771216958 None 2509 799916 ONT_20200629 377869093.28650934 41433.749331116705 0.5933740205827231 6.504072114229845e-05 111861900.01907513 12261.37038902268 86312 16510 143020 REEF_20210617 266583876.07137048 6969.609995176065 0.021085448577817675 5.505497992408593e-07 26950000.66158217 703.6756841580429 179309 12286 41757 IOTX_20201129 43554508.70297835 2460.465675613296 0.007601568589559933 4.293855680717436e-07 1384473.8901247538 78.20400497446923 None 2007 410113 TRB_20210324 69145542.50281876 1267.6357741180618 56.16908476539867 0.0010303995284813054 135171633.73378977 2479.669879704797 16286 None 338279 MATIC_20210620 8570172152.089255 240405.48556183797 1.3605233337656883 3.8213067231537444e-05 1047024204.262174 29407.806038707782 488458 44610 8165 CRV_20201208 101277242.35773124 5274.283377508998 0.7079423383654805 3.6894100746742806e-05 46808152.49525576 2439.3860916922854 47687 None 18760 QLC_20191102 4209278.728346109 455.89989981923185 0.01753866136810879 1.899582915913466e-06 103688.84712388489 11.230364646041046 24684 5716 940522 TVK_20210708 30058641.668418735 882.6201349892556 0.13698429019580344 4.031633866497372e-06 18374183.92041473 540.7772092472024 49963 None 76424 ENJ_20200806 174704790.99273297 14882.19376286582 0.18964879775833127 1.6155196083039525e-05 14323960.740688384 1220.183819706894 63723 15746 104408 BNT_20200506 13845568.349151472 1544.0513629814595 0.19865888765379167 2.2141181464574555e-05 4918322.836808761 548.1631338886913 732 5016 133106 ARK_20200907 48665384.95891507 4738.982397075159 0.3204207289332202 3.120222300418383e-05 1775243.2085338295 172.871257935624 63053 21813 112680 SFP_20210819 136439420.52576986 3028.591306588592 1.2611166777192908 2.8001873582701225e-05 12768470.711266134 283.5115172276564 None None 25785 MBL_20200629 6131340.322777507 672.2839608805767 0.0017323545596675803 1.8981040908384478e-07 1804267.8913340003 197.6898000699514 None None 98969 AST_20190915 4238276.229374726 409.34894490880555 0.024603607690307613 2.376310628168622e-06 1737810.0063503108 167.84434379738693 32019 3568 238019 GAS_20190522 39696307.0534862 4988.600120226118 2.8452808703419046 0.0003575572603394195 3426530.310915797 430.6010008403168 321428 97575 225000 PIVX_20200907 24359154.4616331 2365.7623127390802 0.3800512198018935 3.694383070891533e-05 260891.2656784346 25.360588916627705 64578 8617 359685 ONT_20200109 352737126.20108896 43829.18262861241 0.5516799838575356 6.87512941888576e-05 92175463.28634478 11487.062389108229 81574 16265 336672 WPR_20210429 28694416.647646956 524.2273042688641 0.04715761787272216 8.61219549620901e-07 1485848.6091498001 27.135422179944946 33616 None None PNT_20201226 10854181.724689012 439.51482506872475 0.3914061990898346 1.587330449618182e-05 2083334.790595215 84.48871677430185 None 107 947111 BLZ_20191102 5377008.806976042 582.342871719185 0.025494861312497005 2.761154255789934e-06 160772.4366392949 17.41203814365165 36323 None 623163 CHZ_20200106 28822801.296403624 3925.3308766002087 0.007625640190156039 1.038350977343211e-06 2950745.2904842496 401.7904306867779 16383 None 294591 AST_20210610 29787779.001546767 793.5805617322392 0.17253154503287887 4.606534570270106e-06 1424875.7434196891 38.04370597360199 43663 3688 193022 DREP_20210826 0.0 0.0 0.7224537864062045 1.4743197290473171e-05 2028747.0228708962 41.400873209388216 4119 None 303395 BTCST_20220105 161169939.45106307 3484.521251690486 22.007403001997258 0.00047917764194220426 2388579.7236723043 52.00768120965403 67516 None 2305275 ONT_20210108 445971915.9574996 11393.521911538217 0.5597541814503236 1.4184488608762174e-05 272226926.7640252 6898.384808270229 94650 16682 288289 TCT_20200330 2525873.5816485495 427.1571523046217 0.004393901736204875 7.443903276250414e-07 309134.9161632016 52.37191346974074 28 None 409993 AMB_20210420 11330089.82231874 202.5837103786023 0.07826765737045109 1.3993789725872887e-06 2460089.0168303205 43.98492246357936 25311 5622 373333 NXS_20200117 10674510.584441021 1225.7230018062135 0.17877890676687203 2.052866185559163e-05 72105.09058848966 8.27961782252152 22914 3542 570980 CHZ_20210201 114625961.64894012 3467.3715467340094 0.021523547170348146 6.490852297307849e-07 48147796.615481496 1451.9922473673473 69003 None 105011 MANA_20200621 54739302.88174764 5851.169569008534 0.04133503244296417 4.416072651778597e-06 16259834.102888554 1737.1368657639778 49039 6996 63956 XVS_20210708 218257147.60924783 6423.522872964048 21.119968502249083 0.0006216041402324207 36681190.95302899 1079.602943661148 117735 None 10936 CHR_20210527 101305408.98692223 2585.675583915643 0.22993282716915542 5.865514887932651e-06 86553470.51316047 2207.952105610807 60679 None 91225 HBAR_20210930 3213816611.6085787 77355.11028740359 0.31313076061532186 7.529821537538914e-06 137855990.42461282 3315.008093546003 None 30423 46003 TKO_20211202 123459059.55636832 2159.907853657542 1.6389179456567018 2.8668457502963933e-05 27439990.1478791 479.98875936464987 None None 27354 TUSD_20190213 208372466.517817 57323.991578257635 1.0117983090901226 0.00027828016349799693 64136205.653858885 17639.714985832492 8135 None 276548 COS_20200701 15792142.873837238 1726.2534147189947 0.00804469697769386 8.798546319615631e-07 4221282.677946101 461.68489966848927 12349 None 288612 VIDT_20201224 19498198.84039818 833.8183438553503 0.423608481991496 1.8166801671143615e-05 2356312.3355777296 101.05241206329094 100 1130 None NBS_20210826 0.0 0.0 0.015828681205688692 3.22963450949052e-07 3546439.3898129775 72.3604379311154 None None 3265664 DOCK_20201031 4759557.20339119 350.15874622322247 0.008463759803103729 6.249314633214455e-07 1852049.6385309044 136.7482203744302 43100 14896 238140 BEL_20210108 19893093.1161918 507.8446793980769 0.9555161440611181 2.4206558106742744e-05 10434434.98324037 264.3406480389946 9496 None 319671 ALPHA_20201129 39578478.05535644 2236.299699725845 0.22733191958821786 1.2833241419248996e-05 29150706.328676462 1645.602837186984 18290 None 171757 BAND_20200322 5798692.266939906 941.590970005637 0.31537159804976167 5.1208804343001826e-05 902748.828331027 146.58481742412138 None 1057 702901 YFI_20220112 1172108685.5216 27357.401876336597 32782.550844043646 0.7662011129958243 259548233.5200066 6066.219384366844 172084 8125 24632 NAS_20210203 15235415.23950936 427.74927620508157 0.33542639326464624 9.444714212800861e-06 6565349.846982745 184.86277245000412 23451 4839 795646 PPT_20210527 85040299.11335187 2170.531931761538 2.3600560121073033 6.019397892912958e-05 4662064.276207506 118.90743159002754 24349 None 685411 SNGLS_20190729 5671387.654349273 594.9231536011325 0.009827211439544426 1.0308651033994094e-06 218066.93460410205 22.875013371959277 8 2175 None SRM_20210813 233714960.1658861 5257.00407243076 4.686515146112513 0.00010541526312957728 106682449.86747384 2399.641988443432 102664 None 31841 NCASH_20190220 5188260.608356922 1325.2218590686236 0.0017881723096883411 4.5674749428801145e-07 416849.3667351262 106.47458453542265 60229 59615 682979 BTG_20190626 552467747.9416981 46793.733082817205 31.549844885008508 0.0026689600178474303 20714281.454796493 1752.3252238732975 74334 None 408265 EVX_20191022 7607449.434724145 926.305862118808 0.34896557040019005 4.2491094592605874e-05 907433.8081257198 110.49186237307246 18180 2896 495281 FLM_20210318 0.0 0.0 0.538846203838775 9.141930405470935e-06 43684073.65501646 741.1331068801886 None None 115259 STX_20211002 1375056345.8550756 28555.639458619946 1.3132642900712879 2.7264646369064126e-05 14684874.225535031 304.8722985619775 82124 None 80462 ELF_20191020 37715827.50419902 4746.1487754649625 0.08175814624490493 1.0284578234461904e-05 12540979.303945094 1577.563688905541 84850 33546 963430 BZRX_20201101 15683235.335834742 1136.6052549107446 0.11152254942959695 8.08223899602914e-06 4074707.1220859415 295.30132666408224 15331 None 79091 ZRX_20200106 112102917.4949846 15265.717429467259 0.18556975197352704 2.5265244128568573e-05 23561577.923158098 3207.8989811216843 152023 15970 131322 REN_20190729 95101616.3039011 9968.53444132288 0.11809814922390212 1.2388383170538617e-05 9572747.47883112 1004.1720767167246 8544 851 661465 ROSE_20211207 917059998.0573677 18168.834064846895 0.2605745141962878 5.1630200999553e-06 155011072.25277415 3071.387408032623 90363 4845 55340 DASH_20210828 2489697804.2453003 50760.540760203316 241.83981933168525 0.004930018329047597 423445558.18609816 8632.136630684885 403708 42070 76415 AMB_20190622 6237930.440228837 616.0240535401651 0.04272959617081133 4.2142401211368615e-06 644164.3360252049 63.53121566211517 19357 5670 665963 HOT_20190509 225435445.17119154 37872.90185277194 0.0012704142904511953 2.1327111813463656e-07 10380867.123079503 1742.6906759368705 21227 6040 229269 VIB_20210114 3659677.270315636 98.52767507308572 0.019883514192794244 5.333251201128281e-07 871237.5704729914 23.3687504841426 30361 1094 3160516 COCOS_20200217 11691705.208784258 1172.8498868739364 0.0006870867278761923 6.906479655866364e-08 3016493.846629521 303.2128629261904 14942 200 69097 WTC_20210420 53063021.276829176 947.0438477040597 1.7755784738354234 3.172939500097003e-05 8173811.928788506 146.06513379943698 63193 19400 334285 RUNE_20211120 3307190186.5439224 56875.038264534225 11.1708067797934 0.00019150710111776484 92341074.38706113 1583.0523093420668 127263 8549 71242 CHZ_20200412 31574127.881250896 4588.531795652168 0.006391672552727697 9.287783109405484e-07 1285172.5639122368 186.74930440048055 19956 None 262392 BCD_20210902 484885960.3852813 9968.014276834156 2.580994402398391 5.304658989114216e-05 5284459.914702043 108.61030059998943 34898 None 798333 NXS_20200621 12213359.186174506 1305.3507619608613 0.20331889447719226 2.1722311695471228e-05 68844.18216512732 7.355217955793345 23352 3524 462582 DOGE_20201129 434604524.08652353 24534.10321613822 0.003414203816395023 1.9273713040247192e-07 97440479.40534334 5500.667035589227 152751 169207 145564 NAV_20201115 7386595.443430212 458.91378799132707 0.10520922034897649 6.54039679159333e-06 186179.43723834853 11.57396081764798 48156 13716 1185476 CRV_20210314 575221566.2019119 9374.911317359098 2.3580427849231653 3.843382015851168e-05 225571358.9856232 3676.5953101427754 87331 None 26879 LUNA_20210930 13635222098.40056 328193.62044652965 34.164976849892966 0.0008218862390580275 1061820145.5541087 25543.566729747334 145482 9536 14261 CND_20190414 32904733.912602276 6485.755426184838 0.018972562724796124 3.7390116818173385e-06 1257871.4134445915 247.89460323916018 36838 6196 621680 CMT_20200320 5677999.827547044 917.4488981871928 0.006962237781750027 1.126571944059432e-06 8702067.587100053 1408.0968657280864 286386 1637 911838 OAX_20200322 1696720.280100939 275.3682212508054 0.03246778426180415 5.272114999325371e-06 1540476.0305600455 250.14231711435954 12025 None None DOT_20210324 33531597127.33813 615095.5465026879 34.28626821871331 0.0006289679590383656 1146831543.568595 21038.16871284533 247115 19744 15796 WING_20211011 36349451.437888995 664.3416143477639 18.139180371966134 0.00033140804386514285 4827344.48203503 88.19697246778155 None None 293062 SC_20201231 153139177.83178976 5301.27394857755 0.0033930560678368227 1.1756948889311016e-07 14693382.357012833 509.126115008872 107250 30086 159547 ONG_20200309 0.0 0.0 0.11242491960225492 1.3975251370525068e-05 6365562.043178338 791.2865758127357 84515 16494 345761 UNI_20211225 7918724485.184883 155792.12830321016 17.505148846217573 0.00034424561905542896 290641060.3945436 5715.570466575307 None 59160 2356 QTUM_20200411 128530229.21634763 18745.33178086324 1.336092093385595 0.00019480834126533824 332656554.5161416 48502.847907827294 None 15129 108429 SOL_20201106 64230247.786586635 4133.569773875169 1.4057083583738634 9.022155258674713e-05 10875990.980387984 698.045783340991 92012 2544 76248 HBAR_20211007 3983199812.3520494 71757.45817497537 0.3813734299890457 6.874802426274848e-06 207654971.9793706 3743.2783537983164 148079 31130 43626 EPS_20210804 162856967.14070702 4238.6087164594155 0.5789294878766394 1.50711606696655e-05 24032368.14193617 625.6300449785496 None None 26035 ZIL_20220105 998083057.5356013 21549.026458368247 0.07161895019831621 1.5565647349528198e-06 73307103.736802 1593.2550279257898 374425 40129 35628 NXS_20190405 23934477.932896975 4883.449974432662 0.4003609222383517 8.179347379742597e-05 468476.9298729874 95.70952947663615 73 3515 688180 NAS_20200621 16608026.519469472 1775.1611443652337 0.3668946207883252 3.921349544894328e-05 6017538.549265186 643.1512133059864 23412 4914 725695 FIL_20210511 9571958152.373116 171437.62799468377 135.56576866488683 0.0024262155343439907 1078501283.5813816 19301.897476075996 None None 28149 LRC_20210115 500701135.3711319 12820.11822368937 0.40248337422553876 1.0259842578411545e-05 221489515.32151547 5646.065665047854 49820 7747 277317 MDA_20210804 11949786.224281011 311.00491338894244 0.608785695057255 1.5844245144653254e-05 1568416.2740861643 40.81957269568847 None 390 1488938 MTL_20190818 14299196.94117527 1398.9218817270175 0.2942895906748242 2.8790997819886074e-05 18471408.25186891 1807.098489247648 33321 None 511455 NAS_20190621 65923321.89287154 6891.73359512896 1.451352033457218 0.00015185597830372539 7834307.963801866 819.7091213920622 24300 5154 467000 REQ_20190131 15194117.608378557 4393.429044139196 0.020823610183596217 6.021215324409182e-06 162919.3247614731 47.10865821282701 41828 31116 472346 SOL_20210930 40196990252.30242 967523.3499500158 135.27916281520976 0.0032544830809400752 2423220767.1797714 58296.71639040122 665785 65335 8736 NPXS_20190811 114053791.99434191 10071.273531943412 0.0004836914992347781 4.273853343917243e-08 2190738.823988077 193.5716559700408 64058 4709 187000 BNT_20220115 816451430.0556507 18945.42313185187 3.1826898322974686 7.379091137052237e-05 24986127.22923614 579.3053036947127 143560 8706 34822 LOOM_20190325 48509987.57171386 12147.163636339075 0.06992363727311912 1.752291575846573e-05 2310177.8113712454 578.9322860539647 18373 None 438947 REQ_20210509 115400408.60097803 1967.8271203038682 0.14937060500212446 2.5428031001866232e-06 1410603.3474128908 24.013336257720265 43016 27626 445930 WAXP_20211125 1659443891.463312 29025.200768225426 0.8877590022480853 1.5519761570273053e-05 265978082.71526915 4649.816466187509 207281 5844 3965 TNT_20200407 16517589.206232248 2266.827483470259 0.03854915111115402 5.290377070900944e-06 317809.06161350064 43.615221711020354 17605 2563 952681 WAN_20200901 48554788.0996104 4155.248873198303 0.3872883250710142 3.317204518624067e-05 1797314.3228754508 153.9436850345794 104547 16053 459215 DCR_20200318 109899409.71459602 20237.687325188992 9.885537803257135 0.001837923770766027 79042273.42417027 14695.576114615116 40800 9742 200827 LOOM_20210112 35451819.198918074 1000.8132699623371 0.04315258186862111 1.2139677974208595e-06 48732387.95024125 1370.9388199094465 23373 None 358251 PHA_20210602 118806046.99818014 3238.0430564594717 0.6681058564760778 1.821720438368595e-05 22149878.007115584 603.9594636359591 49338 None 185347 MITH_20210125 6581802.734766215 204.4082062712199 0.010644841521398652 3.299508493723332e-07 3313939.922388357 102.71992212968645 24176 2127 495760 XEM_20210704 1216747922.7876167 35117.13109105428 0.13562543557465026 3.908640616584441e-06 68977270.61794955 1987.8819958521588 371020 21678 80485 STORJ_20200718 24082019.93149273 2631.0267263898368 0.16711561743266953 1.825701692363735e-05 4299993.40947576 469.7649068014693 81253 8179 105568 NEBL_20200404 6309029.3729794305 938.1887225215472 0.3895108932869685 5.788658797809042e-05 135875.68668230862 20.19296514365816 39500 6008 1168706 ENJ_20190509 114833347.4080975 19277.528911157926 0.13250927067100154 2.2242012807650456e-05 8349484.7604834195 1401.4819192616335 45790 12398 19139 BEL_20211221 67883156.82893549 1438.852441617636 1.4062354492339133 2.983760819385353e-05 5224399.117749568 110.85168846273052 None None 290468 KMD_20211225 101942195.37935069 2005.5826533387196 0.7883515595248937 1.5509811286994517e-05 3451336.978938102 67.90065242392082 117675 10010 144433 SNM_20200418 2974005.802444407 420.09736482103096 0.00677217802212744 9.599998545275307e-07 22364.102500076486 3.170255577535406 29872 9668 7419106 LTC_20190723 5980929714.198315 577919.6034229471 95.230437157221 0.009210925888211728 3077208159.3253984 297635.26393722376 450902 206660 151076 OGN_20200129 2704577.064190718 289.3849257756652 0.1129717321748516 1.2090327554075373e-05 6161820.327721827 659.4430717961576 60890 2103 157931 AMB_20210723 4477967.554581211 138.46153792572662 0.030802783557717983 9.514478490476851e-07 1133494.9465679377 35.011814006928105 692 63 487480 NAV_20210325 41832534.27760271 794.0048825363061 0.5867509957272024 1.113686185849547e-05 1457469.0576487554 27.6635773543916 50441 13900 461949 PAXG_20200907 59545815.56856099 5787.635699373393 1938.060372158779 0.18861514698624482 1341497.8083743812 130.55672049391117 None None 96035 GRS_20210602 71665270.38679516 1953.9699449962532 0.9226700903121371 2.5156810486953614e-05 2026206.6765640306 55.24498724400768 41226 106845 6465963 NEO_20200610 850531113.3766098 87008.97254040852 12.037182099426477 0.0012320896185867675 386334750.75400364 39544.05871503711 320120 99621 220108 ETH_20200520 23656360817.218487 2434462.321886342 213.68672021176667 0.021921136156328964 10220660537.90651 1048490.4772605042 457730 461882 19199 EZ_20210814 0.0 0.0 6.890557177564072 0.00014438627898926375 7523434.049268428 157.6477227606456 36248 None 164218 QLC_20190316 8433051.548996665 2148.953318947431 0.035137714787486105 8.953972162280963e-06 1071805.6988342607 273.1230089599878 23665 5842 940522 NPXS_20190723 150086944.83922336 14506.194502045773 0.0006568424555205287 6.351180309348885e-08 7342756.878798104 709.990234538076 63822 4671 202780 VIDT_20211204 42126058.02877776 784.5458368875846 0.9084329109784378 1.6932131549258926e-05 15204308.607569106 283.39060633724716 36051 1845 293441 THETA_20210206 2450045251.175275 64643.27777065099 2.453811902079225 6.455454136741196e-05 224635482.3970246 5909.678948374044 83016 5295 46280 CELR_20200309 11222788.50459789 1393.8237429787198 0.002974412150808038 3.6974149178090856e-07 5525075.904924693 686.8079148797998 19289 None 1113968 ANKR_20210513 1001841119.9584777 19423.735239298847 0.14281573796130884 2.77274012815532e-06 125309239.07483162 2432.854813980825 95078 None 5581 LUN_20200223 3000177.5666968366 310.97582628383 1.1124128310005994 0.00011524210185032613 60095.6121001572 6.22569648371871 29858 2153 2036039 DUSK_20191019 10805576.977634035 1357.9337059859834 0.06011830100283672 7.555049346031119e-06 767905.1187210784 96.50241221444168 19780 13330 197441 SNM_20191216 5418191.537821398 761.3841878763948 0.012381320677649842 1.73986010859509e-06 100761.23117124286 14.159268721973696 30636 9783 6507778 AION_20190618 52714973.70518525 5657.729341853172 0.16474999795795478 1.768948587066229e-05 7389547.367755742 793.4281964960314 67365 72569 278705 GAS_20210120 26913857.241477545 743.213156930799 1.9333093472630853 5.346648832988423e-05 6324809.513054062 174.9152842493489 None 101533 169176 LINK_20210115 7080917572.085494 181302.1660896544 17.726316053345872 0.00045281800126629134 1941907563.8482654 49605.94739817298 120818 27704 46948 NXS_20190130 20199472.360145118 5917.696376883976 0.3363852241828457 9.854002642369242e-05 170784.37489384227 50.029239113206046 18 3503 946773 OST_20190703 13203237.977116847 1221.944326919291 0.020721361226425896 1.9157649804251406e-06 735914.4809155602 68.03796216475449 None 758 618395 PHA_20210930 113127535.40031153 2722.9285410449115 0.6232185914474908 1.4993372282849097e-05 18140767.816743772 436.4299927918365 None None 139035 ONG_20201018 0.0 0.0 0.1225516143794456 1.078450965508579e-05 4856707.606943836 427.3889849940576 93093 16673 214666 WAN_20190821 23427987.00663096 2180.373930327251 0.22070124162445207 2.0540016241797085e-05 1841692.6840739846 171.40092808198958 107756 16846 605813 ZRX_20190305 132792524.01778279 35745.266155060664 0.22676768896346952 6.104162457430013e-05 21753435.72164858 5855.618419853239 147369 15664 253317 EOS_20190104 2698798515.9114327 715680.0762195042 2.630978382651724 0.0006977418377331177 691644153.653689 183425.7042968546 524 61787 78743 AR_20211120 3004151486.748605 51678.9505419182 60.01562775779869 0.0010288799296438512 149805681.28587145 2568.1987272328083 45861 None 45169 KAVA_20210421 304264611.643783 5385.641337587007 5.192842740733673 9.209792210630795e-05 161079639.3558368 2856.8359988906673 None None 75402 XVS_20201201 11117495.76430188 564.9790200494715 3.0028742930669665 0.00015286646302582578 4381124.253400129 223.02863967373005 None None 141785 FOR_20210210 24864162.52164412 533.7139086860374 0.04393652494786603 9.42954317397921e-07 17396567.245062225 373.36061991929154 None None 253691 TRX_20211221 7959933182.514406 168718.86679689778 0.077954021642829 1.6540342203583644e-06 1278697031.1030927 27131.488566500648 1306149 121403 22188 TNB_20190714 14216471.329439947 1249.0705306487403 0.005137432984771766 4.511257188889165e-07 705997.8951771598 61.994737243274706 15731 1486 481694 LSK_20190805 175344641.11172342 16019.151994960228 1.3062170444098864 0.00011928983740989608 3608673.031499219 329.5608651221489 182456 30763 180876 AUDIO_20211202 1204041246.6514258 21064.61975423242 2.359353326983343 4.127017950162682e-05 59937384.10639851 1048.434150425357 None 8592 21764 NEO_20210429 6450985533.9888935 117855.07953993395 91.62434857023466 0.001673331903649627 1374007531.2964919 25093.44594369316 384154 109622 88657 BNT_20210429 1233639127.1178691 22537.740424934804 6.6429471204031065 0.00012131732231746802 185645273.90060934 3390.3608025632125 112821 7039 28639 BNT_20200718 98719606.77479936 10785.387794797523 1.502376791886137 0.0001641112758682603 47314720.99773098 5168.396684655979 714 5111 121878 LTC_20191012 3526807727.707485 426734.8809236336 55.652322209386035 0.0067308070595999405 2192891120.9593186 265216.73223903094 450672 208948 124941 FUEL_20200531 3161720.269171345 326.6646831002663 0.003197930025772935 3.2999079806125593e-07 539941.0870586138 55.71591272747416 1 1466 None CLV_20211204 225627799.12126663 4202.566600010971 1.069277111462108 1.989726214571216e-05 26774144.282377526 498.21712426364275 92853 None 80482 DOT_20210112 7889136044.384198 222451.7810641317 8.288132976060027 0.00023316163478494288 1814162155.3060699 51035.983027533315 None 7684 41009 MDA_20191019 15644397.609373666 1965.731048588874 0.7970088580348345 0.0001001447992667172 1637709.0676130643 205.77945173380334 None 368 2061213 GTO_20200309 6237174.528730444 772.0712094133041 0.009350243781891424 1.1623046535405367e-06 9358985.256427765 1163.3912836615689 16916 None 1191106 AR_20210624 516150744.0319459 15309.509145975435 11.755019685972227 0.00034892927169928025 23561064.014716968 699.3731296703791 21909 None 86831 NANO_20190410 225175654.59483603 43535.52248063081 1.6890932043491955 0.00032641534271966004 35255254.646631874 6813.037906089489 98072 45080 397800 TKO_20211111 141968206.44834292 2189.201497836459 1.8959626611175562 2.918920405906544e-05 28652500.313464474 441.11822221181114 336373 None 29249 MITH_20200704 3594000.0474755033 396.34842150214394 0.005808563824006936 6.408295929471502e-07 2173658.8662204957 239.80883547994586 98 2093 759116 BCD_20191127 70594614.78780557 9848.915145562067 0.37582528592213554 5.2512809959511876e-05 6958965.118029785 972.3529162262967 21356 None 2278242 GAS_20190930 15982018.617391648 1983.1808073826992 1.1463895944133227 0.00014227544175099893 1259167.1322373245 156.2719697129535 323590 98312 189975 ALGO_20200523 151092190.50388658 16493.014425522648 0.20230759727565895 2.210050228989392e-05 42846455.627296895 4680.635840949928 17844 876 290997 LSK_20190401 226877372.41323167 55289.02691310252 1.7448674296915414 0.00042521128413455426 3887511.590986714 947.3578150195889 183575 30432 170136 LUNA_20210117 369304564.3765326 10177.69527611378 0.7615466391825859 2.1043316497609477e-05 18397626.797543216 508.36949910402313 18302 None 163077 TFUEL_20210105 0.0 0.0 0.028999952310001843 9.26921928211477e-07 16461653.806690658 526.1618269208298 None 4837 64313 ALGO_20191019 101720274.65107313 12781.233713517695 0.22715950029685764 2.8543147264321862e-05 106563353.89766401 13389.946268177924 12592 645 327819 DNT_20210422 232753578.05487397 4295.661084219864 0.3100269672602798 5.731895387947692e-06 46923555.44713084 867.5403737627566 68022 9738 186228 TROY_20210814 17638768.792381916 369.77983686939655 0.009274521026069042 1.9438416753615547e-07 7087446.178438805 148.5453881101458 None None 543401 WTC_20200625 10879476.118969796 1169.3542016166061 0.3726984204266003 4.009701830996794e-05 9712237.952463139 1044.8978629019311 54271 19579 873849 ALGO_20190914 116705685.44574352 11270.531419166908 0.3184704646558575 3.076522931864995e-05 49294302.77497751 4761.9817134814875 12016 613 192636 TOMO_20210427 177951149.78706667 3303.3675980943485 2.2124323292507144 4.1057698822220966e-05 28289144.9294254 524.982019605485 46660 2105 79487 TOMO_20211216 169629219.0439845 3476.978266496689 1.9961161286320135 4.0845976317762136e-05 4156285.2626040936 85.04892424396989 60979 2379 102672 ONG_20211120 0.0 0.0 1.1824637260583355 2.027160659192162e-05 15981553.101557327 273.9802922180229 177455 20899 87014 MITH_20201201 3726815.2524077953 189.67182535100054 0.006009922035759928 3.0613979633091583e-07 549318.5374980307 27.98177150881784 124 2107 838528 WTC_20190915 27945122.99169034 2699.609738616842 0.9582543383588972 9.259240563013972e-05 2439533.4230350885 235.72266694956295 55840 19883 440674 XRP_20200414 8299611707.552383 1212079.233902813 0.18827236788185847 2.7495966854409408e-05 2228364721.4187016 325438.3168862658 947989 212191 34231 AUDIO_20210729 243471681.90986365 6085.463927949989 1.136951949856138 2.840569028393613e-05 15741036.937200516 393.2752127675174 54280 5938 31979 PIVX_20190509 38565521.02539592 6479.318036255948 0.6437788249699243 0.0001081108655173771 2517462.813299894 422.761782614359 63078 8603 304717 BAR_20210626 40594483.381485604 1275.611267598885 13.721293668224476 0.0004311405018494292 3947291.4682979523 124.0289192650277 None None 39510 BCD_20200412 97479708.68828139 14163.659492327903 0.5179478456279841 7.52633557569152e-05 10735344.274694841 1559.9602202026547 28827 None 841501 OMG_20211111 2168591967.439003 33463.65575470425 15.313986360111778 0.00023575829161377303 1562923533.1677086 24061.153865353946 4201 6019 173710 DOT_20210826 26709687702.000233 544915.8903411851 26.047207844402855 0.0005315582142016184 1426104606.9529798 29103.219917658917 558901 28788 27149 TRX_20191015 1101605212.9254775 131996.57436665084 0.016685380030302694 1.9989667351866793e-06 694450161.2107542 83197.55192774838 475093 71322 66589 MTH_20190205 4820468.692279898 1391.0891479445152 0.016021577325613972 4.6241355996149395e-06 177678.70985592942 51.28149562558576 18689 2017 836178 INJ_20210125 118145972.77263108 3665.1119508497154 8.744844812740666 0.0002710422148262141 21923281.637117174 679.5014592512616 None 2046 116830 STORM_20190221 13664402.911005842 3441.4296025102612 0.003023913499248596 7.615836198274452e-07 857338.8268617457 215.92390369044276 26537 2566 3385939 RAMP_20220115 60896592.45488228 1413.080642490936 0.15683980371513023 3.6364982126002746e-06 5683395.618053229 131.7755921455352 44518 None 146588 OMG_20190923 150596262.51168117 14980.902524524672 1.0732148281539002 0.00010684196976674954 61947608.71805709 6167.082641936783 287396 41540 None CVC_20200223 19701726.444688816 2042.1326818667546 0.02946935162664626 3.052885822180638e-06 5623935.327123828 582.6131719000123 86900 8089 120378 OCEAN_20210724 169176010.8560608 5060.355845787004 0.3900819313387886 1.1666048574858559e-05 15615453.838053916 467.0061039945532 117901 3272 115494 NANO_20190131 117031478.19438823 33840.03656087521 0.8782962857863934 0.00025396225768357114 1396942.6303709594 403.93055282681394 97376 44639 312071 RCN_20190708 13190768.282902373 1153.4458797878365 0.026359786721472888 2.3047161136684463e-06 327334.9707545835 28.619889441318072 None 1122 1949015 YFII_20211021 161671060.72032565 2439.120327445846 4058.227377995262 0.06145231967488087 18609432.394841738 281.7961346120596 None None 487463 BNB_20210401 46841566978.953735 796363.8015521095 302.74519342468096 0.0051505226217270945 4729218327.57605 80456.92056652506 None 215806 154 NXS_20200306 12325666.511101227 1360.4566168804777 0.20643280706842018 2.2785208253403535e-05 203432.22384204774 22.454016159155135 23520 3536 662796 PPT_20190512 39920690.14029131 5480.739845149059 1.1035604141741209 0.00015165754384005798 1936037.1118791746 266.06122274740125 24103 None 552418 EOS_20190126 2500160841.5154552 701121.8940494641 2.4297567158931783 0.000681415644480684 696175853.7499675 195239.75999405383 584 62243 76885 SXP_20210212 222489409.98735487 4667.85681023372 2.6122463769320285 5.4624860045337225e-05 556214313.0712842 11631.034987754856 99735 None 145148 DENT_20190908 32751121.8183812 3128.449799771071 0.0004448318995871188 4.2491193886802e-08 759092.261878226 72.50994478448325 46516 10153 253321 ONT_20190625 1042215211.7575294 94395.84883332667 1.6048805917828346 0.00014530736082861114 168044889.01001304 15214.938387195623 80531 16251 232873 BNT_20211104 1045630192.050723 16607.908864240566 4.41287890949913 6.99857300603399e-05 123610645.74068347 1960.3939883257933 None 8445 39316 AE_20201018 39831017.29453567 3506.465822058432 0.10811791909602955 9.512192743579558e-06 13385807.78801264 1177.6806728493584 25648 6350 482941 SFP_20210902 171134941.27210784 3518.7432885725807 1.5848325093165205 3.25727014710846e-05 17635980.794650707 362.4682950387474 None None 23382 QSP_20201014 19832723.990078457 1735.7564715127298 0.027702955159185593 2.425369664208301e-06 175814.1211659262 15.39237361375477 57436 8212 215964 DASH_20190419 1086562142.54612 206074.98328438096 124.08487415986335 0.02352522253398043 328751427.71911174 62327.90698962984 320550 24164 94657 POWR_20210523 123748539.97456045 3292.4619492292613 0.2872408484294217 7.648573893849652e-06 18526222.591123935 493.31139090036237 90881 13839 168476 PIVX_20200801 27194484.16290313 2399.4483851459654 0.42333186613817275 3.737645202132525e-05 548337.1627091074 48.41331185500024 64052 8487 329425 CTXC_20200711 1212870.9369812931 130.63814315954454 0.12137681429826973 1.3073561157498122e-05 21779929.887060948 2345.9278201584134 16471 20061 611246 ASR_20210813 16401766.807737822 368.9286934911537 8.088397092995825 0.00018193486658459477 6842476.984083304 153.90999265915977 1998979 None 92555 THETA_20200421 82874570.96749789 12103.86867521286 0.08263692849855601 1.206964240203875e-05 10314225.205871774 1506.4573690095722 None 4023 358410 HC_20200531 60660928.58512291 6274.875278917339 1.3527395308165213 0.0001400636644216068 48941601.33848617 5067.450067044399 12649 844 1020552 WAN_20200518 18103823.471663233 1858.871196664329 0.17069808852178012 1.7462983361610765e-05 3096126.9338684124 316.7441041654096 104293 16203 906142 STPT_20210108 16035464.163594734 409.6679763283871 0.017571261195464732 4.452657300797198e-07 2034962.7657783234 51.56711129097561 17623 None 1561164 TNT_20190528 12920445.207560403 1465.2811820006386 0.030084473713044072 3.4185129278657036e-06 1790656.9499344134 203.47319321957238 17401 2518 965063 ALGO_20210210 828461601.9115363 17807.499048379552 1.0287874062337505 2.2088077750225545e-05 728607348.8263458 15643.20837594451 46169 3898 246299 LINK_20200704 1812935987.4732597 199901.45907560753 4.74417670755606 0.0005233525276122916 326715388.4480298 36041.51676765669 61320 16681 82512 COTI_20211011 445523192.9179548 8142.183677639992 0.5127780262459735 9.372652491666422e-06 75729263.0019636 1384.1936066639114 166027 8218 74992 QKC_20201228 34625440.828851506 1306.3058295186404 0.005370600449700728 2.0421846499805273e-07 4137928.9196309624 157.34581266144554 63536 9212 106409 EGLD_20210814 2702515258.9783273 56700.70133535503 138.23676921749012 0.0028956672346421206 83272493.46009377 1744.3219501171286 304502 9965 43311 GRS_20191102 16940379.67271165 1831.3288681923123 0.2295492853894391 2.4804572198831213e-05 1306756.59723713 141.2051373084285 38502 106948 None WTC_20190104 28396199.261997502 7530.386836434075 1.1285905838608183 0.0002992526783898176 1981844.2022277955 525.4980806583965 54653 20494 546770 EOS_20190901 3391012604.16992 353257.66651337844 3.3291487968610594 0.00034682922861945854 1967925041.5209572 205017.54826193632 1286 68059 84416 NXS_20200422 8878206.911272421 1296.4162988597054 0.1486940420445035 2.171264778759217e-05 34141.962448217244 4.98548829006523 23672 3529 498708 WAVES_20190205 272498324.4893257 78659.15246991358 2.7249832448932567 0.0007865915246991358 18339438.697953537 5293.84798038077 136000 56688 39779 FTM_20210408 1066208591.0707359 18929.573488367478 0.4155486219727381 7.395021256084449e-06 190536384.8831528 3390.7478975127988 57878 5992 61839 TRX_20190810 1302486004.544251 109837.37828865356 0.019722356422991475 1.6626911246727902e-06 663564433.6362877 55941.727793206264 452802 71269 73072 LUNA_20210128 543886259.7673206 17978.985579844204 1.123906471078427 3.696948633465548e-05 141224099.99929062 4645.388712850883 20060 None 163077 WTC_20200316 5565194.511993208 1030.09671024291 0.18903971437838674 3.517931068629022e-05 6855288.413150035 1275.7336294298977 54905 19430 966319 ARDR_20190629 120390491.57058966 9714.447132747602 0.1206959865924717 9.725918711120167e-06 2342179.2450841195 188.7373854565419 67989 6568 956576 TRB_20210610 96068052.24862272 2559.3629811751116 56.150829476633405 0.0014992083742376568 74968878.97023088 2001.6440043178902 22240 None 254504 SUN_20201014 0.0 0.0 7.41193068460728e-05 6.5e-09 0.0 0.0 35 None 8121732 NAV_20190806 8393404.935744809 711.1079394546733 0.12752955205138922 1.0804587372239475e-05 414359.7901707321 35.10548327369994 48211 11216 652826 BAR_20210508 108168240.33831842 1887.6323242231385 36.796413627457326 0.0006420612011558499 19044969.01533138 332.31596442418237 None None 39485 TRU_20210509 110938366.43666495 1891.7396290261267 0.45253764378336353 7.706572568216921e-06 9338623.28896284 159.03379321541084 24202 None 91000 NMR_20210115 144219090.73544657 3692.6335147431905 27.687689777681292 0.0007057964543889958 11025263.995007608 281.0488090144549 None 1988 2602153 TORN_20210729 31833469.77006472 795.7312000636349 32.63866455250445 0.0008154467712351768 1733384.1888438636 43.30699676235295 21834 None 132811 CKB_20210718 248573483.9193123 7863.897693636398 0.009160303986465003 2.9038345834596424e-07 4956976.731367193 157.13714832190394 49920 5110 122182 STORJ_20200807 28338191.041514095 2408.6209046700337 0.19721616518643464 1.6750219326469872e-05 4081487.4526827834 346.6541900662306 81632 8210 117892 GLM_20210325 470336334.6647157 8897.878176165766 0.4714520777944619 8.94842395076001e-06 14215840.325656902 269.8245952067846 154290 20796 153739 RSR_20210105 278286542.4089667 8894.838713098836 0.029812311703776566 9.528872721413246e-07 161534909.21325272 5163.120543124942 None None 170522 BCD_20190908 117655227.31381385 11238.50364306552 0.6253038214054109 5.9729426692989864e-05 4283306.550681871 409.1442205607195 21376 None 2392200 CND_20200707 13149228.827979691 1408.624420566261 0.006908011214033079 7.400323499894317e-07 460146.739988057 49.29399544713988 34306 5935 376483 REN_20190213 12400178.677091753 3412.657544271582 0.01645429558908828 4.5282459813397635e-06 297232.6491169569 81.79885559971332 5553 801 10683667 CELO_20211207 1374874662.3602362 27239.078853402218 3.7489891558621182 7.422686206343854e-05 53174111.30585114 1052.8031053580628 79088 None 34752 QLC_20210826 9928632.693305688 202.52494789140414 0.04142939260353911 8.453123435926802e-07 1022554.2216491483 20.8638758917984 None 5720 940522 NPXS_20190807 124488801.51707716 10879.209580732368 0.0005309970354597799 4.6279430992329735e-08 3410630.4283967 297.25596380147914 64010 4697 187000 ZRX_20210703 580876495.8986644 17185.764739752565 0.6915838200944369 2.0418444485050207e-05 71588639.54844186 2113.5958070570946 221624 19534 58387 DUSK_20201015 13070169.146611808 1145.1834536683648 0.04505377378408497 3.942393274039284e-06 518118.3994443085 45.33752273259713 18406 13354 755132 EVX_20190531 15078518.014235977 1814.1394423833733 0.7141562977942256 8.594704983903e-05 3077432.7370427116 370.3618740656732 17284 2397 732348 FIO_20200903 25540732.90292098 2238.7835578437575 0.25404780459566756 2.226361386333147e-05 2774222.9694005437 243.12049875738956 52609 134 278091 IOST_20190805 119377390.73667929 10901.621852260474 0.009913242926814147 9.053236152485713e-07 34971273.5034085 3193.7399286680384 196856 50556 101612 VIA_20210722 8408092.842220372 261.6848278946946 0.36253764635670677 1.1291816940531014e-05 116861.17154810682 3.6398287731996306 38203 2295 1139372 KNC_20190613 45698110.687619016 5625.8165200493195 0.27539184709606046 3.386775056325231e-05 9116184.384487806 1121.1103817272933 96800 6692 215563 CTXC_20200621 1065611.2810075134 113.90457682986181 0.10412934693385975 1.1129941925876673e-05 9530883.569772342 1018.7155087147183 None 20060 551445 MANA_20200325 35696098.21141542 5281.783178592823 0.026721051352006538 3.958671387710057e-06 36652356.54163201 5429.9747873734295 48011 6793 47233 NAS_20190906 29488104.895782005 2789.9124770307926 0.6480902174897144 6.13167577369405e-05 9782932.131027667 925.5774323498017 24165 5095 765651 POWR_20200711 39856935.46972101 4292.984424833695 0.09277984385615053 9.993320423922256e-06 1507016.4994759052 162.3208030695778 81490 12715 196411 XVG_20210115 211747403.5630189 5398.250149965905 0.012896372149306527 3.2877778767327777e-07 8421593.67875732 214.69859169146105 288532 51365 225034 ACM_20211216 10466172.514226764 214.53057775344377 5.251668364631523 0.00010746344792949914 2236492.846903473 45.76473910967756 None None 37465 UNI_20210219 6335641981.136545 122586.56496378813 21.197035107007075 0.00040999712811183234 893915503.2540938 17290.28551675453 218593 None 3373 ONG_20190903 0.0 0.0 0.18204543125772082 1.7627875549867632e-05 7345594.034126039 711.2906738654128 81439 16280 256067 BLZ_20200310 3885517.5988939535 490.7664170205455 0.01800690810309311 2.2721139637313784e-06 224678.27063353182 28.349932877470277 36139 None 543870 HBAR_20200430 140169282.86375427 16055.096387039956 0.035078753830380074 4.0010674654837e-06 10811432.160051087 1233.147268572621 38758 6436 105863 BLZ_20200411 3240795.6293318537 472.64981690447644 0.014756371521503098 2.1502717265738823e-06 379280.46768796386 55.26806267534759 36028 None 583027 OAX_20220112 9964007.230200056 232.3379130717305 0.17239386763798 4.02982045884989e-06 43515.777828265695 1.0172100329192795 14938 None 1034946 MITH_20211125 63888727.777721286 1116.790999105434 0.10334656899129835 1.8069909297966023e-06 841422569.1608251 14712.079611736164 36378 2904 456658 FLM_20201031 0.0 0.0 0.15743587816979762 1.1595160156220293e-05 10557459.50034566 777.5574104988318 11714 None 37312 QKC_20210602 123535863.2976674 3366.829278908528 0.018935725793901903 5.162142413948321e-07 9627388.309626378 262.4560054871379 73943 9502 257641 HOT_20190716 239273123.2409732 21847.394074366526 0.0013367078685857898 1.222346197533383e-07 13021272.747677943 1190.7241368309249 23771 6576 317141 ADA_20190414 2589719878.511384 510465.50437780883 0.08340401487900027 1.6436819340988644e-05 123765669.50368805 24391.07941266307 150560 72518 113717 TRX_20200423 858838220.4539024 120749.28640301089 0.013000551885077182 1.827396735903427e-06 1346847345.1322885 189316.92008245294 505740 72562 64875 DCR_20210221 1845723956.5643811 33033.93019783704 147.68232327280094 0.002626514503500291 106093162.7736093 1886.8556816536936 42721 10490 268087 PIVX_20210703 35309343.1598808 1045.5604489662546 0.5412978823899154 1.5987311387000685e-05 858483.4217861445 25.355432251232177 67647 9833 316227 GAS_20200530 20083987.606889967 2131.008567639612 1.4377463785584366 0.0001531339467919978 18674037.504502412 1988.9662796253847 320026 99517 247839 BAKE_20210711 347903016.9321263 10318.252912647813 2.0060678949093167 5.949679908540602e-05 87710233.50700547 2601.34672108705 None None 8023 GTO_20190901 11203777.345547128 1167.149964690933 0.016933708057262197 1.764452264015817e-06 13582960.723162107 1415.312329643183 17363 None 900303 ELF_20190228 51876246.61543491 13573.849848636015 0.15777973088879388 4.1382971645945876e-05 15271207.431769304 4005.3810498237567 86603 31399 1006337 SYS_20200229 16255333.03811212 1865.6222202181445 0.028075718559205907 3.222246155759397e-06 411072.0438272333 47.178678977323564 58943 4514 833412 ENG_20200317 6384225.526190463 1264.8930263570423 0.07698655328064612 1.5289632460398742e-05 661050.9635581905 131.28560559858263 61240 3605 414852 BTS_20190421 169259965.63066462 31875.861461014414 0.06246414738334205 1.1760642019489122e-05 17384630.866176013 3273.148339051549 13796 7204 210686 FUN_20211225 119235067.62543683 2343.601886837277 0.011240288948475634 2.211143091901101e-07 2737558.824068481 53.852123466388534 26489 540 223479 ZIL_20211120 1173966700.7579505 20195.17568735907 0.09232234783790207 1.5827312701177668e-06 77817652.59704451 1334.069540223926 352825 39043 53751 EGLD_20211120 7093053538.364369 121982.0054644159 353.0118415667398 0.006069300103429913 421862943.0619833 7253.0507548860105 383729 12366 24645 XRP_20210711 29048791926.905113 861476.6861327467 0.6287264607906748 1.8651495585981407e-05 1673959405.818035 49658.87141041131 1914979 322173 12075 AERGO_20210508 79656031.94678538 1390.1042367517464 0.3244395434002042 5.661150704712987e-06 24122799.116906848 420.9191018736992 20401 None 378551 KSM_20210131 905964297.0305302 26483.25804580694 100.76867104138326 0.0029492324843204114 130956085.16814338 3832.7382549156346 32985 None 118660 QTUM_20191113 213291300.05404505 24252.17947220132 2.245517190590271 0.00025515864515306504 366646929.47044384 41662.17660913025 181317 15272 182498 XEM_20200704 382858868.44032145 42221.89932106635 0.04251328812934497 4.690276969011491e-06 7448895.668813662 821.7991441572476 208439 17855 240826 BAL_20210723 193767319.42622542 5985.722365258201 17.942280083700805 0.0005542078286743305 20212320.99966658 624.3256978175139 91828 None 131138 FIRO_20210418 174096786.7240536 2888.008181188879 14.782251492265166 0.0002453101646025386 47177173.66490688 782.9010515263165 70506 641 172734 VET_20190515 390111796.60007757 48811.801246505274 0.007049690481512884 8.819524804578365e-07 25158448.219743326 3147.4510647041825 108394 55519 330753 ATM_20210420 0.0 0.0 9.029297319131137 0.00016143844379838587 4014107.6416816832 71.76984742093506 None None 149248 RUNE_20210813 1816783854.647065 40863.92415697766 6.790612329856567 0.00015290062290344045 91850838.19166192 2068.156698028566 105609 6415 67412 SCRT_20210806 180298305.5643757 4400.5856820334375 1.2670869662652446 3.096808423712243e-05 2125020.5473525873 51.936305137760456 86895 None 76372 LPT_20210909 464749894.7185554 10031.614990234113 19.01267696918173 0.00041066823695379257 40188244.86281393 868.0542824574908 15798 1342 117255 ENJ_20210828 1873321357.7531333 38191.03346095114 2.0026552160002633 4.082506738934914e-05 257336037.54496357 5245.916017168199 277342 35271 33629 SXP_20210727 144893441.51118723 3871.525563839746 1.671998804836156 4.4811256984217714e-05 173830359.87186274 4658.829243984064 273150 None 69993 ADA_20191015 1295121948.591349 155168.71207678638 0.041645500694088976 4.989213163371953e-06 56982292.81645836 6826.591124148527 154404 75431 120482 LINK_20190621 645330155.4012268 67463.88659169404 1.7631963809450761 0.00018448447047833018 63023194.39993724 6594.160907075649 18802 7705 223883 GAS_20201229 21887081.898495447 807.2085111464669 1.5849043118013753 5.839142576113389e-05 2733342.700039601 100.70246901385276 None 101170 122618 ONG_20200730 0.0 0.0 0.1754808932400031 1.581029405738494e-05 10478275.62332558 944.0607222834706 88224 16584 168500 NAS_20190726 42185380.71596046 4258.645411525453 0.9270827939153217 9.365936703347194e-05 7443738.623940434 752.0103408849884 24388 5133 512130 BEL_20210825 125754921.99481833 2616.9080800321053 2.60499978582674 5.4303957135499504e-05 30171149.078064185 628.949297876424 33861 None 475057 REP_20210813 177402887.774202 3990.2613279047446 26.962698560347935 0.0006064765453590271 80869628.11011143 1819.0142418762684 152691 11304 167896 POWR_20190626 50065993.208960705 4234.721608284785 0.11911801740169789 1.0062565033139592e-05 1544280.5790193472 130.45401606537442 84674 13189 724138 REN_20200313 32389117.544126913 6748.175261770283 0.03716180641774311 7.780216155443442e-06 8491917.306048706 1777.8724605719087 11317 873 409604 OAX_20210218 17008279.98920976 325.890830742207 0.30248456799942236 5.8013353528119405e-06 3450153.934002064 66.17031778628652 13218 None 1071767 GTO_20210602 22233004.200212892 605.935211858324 0.033535795058166507 9.144186161851126e-07 8203488.228087891 223.68404686419603 None None 270984 ACM_20210324 0.0 0.0 11.012765503883971 0.00020194886941144052 5376737.838231308 98.59704423648877 None None 48576 REP_20190520 251049614.5981529 30687.036494787386 22.803700326075077 0.002790802043257041 19628287.062679507 2402.1831043589273 125473 9957 279308 QNT_20210819 2421873201.2508144 53729.62546359827 184.74632344383838 0.004106186380220172 179311922.97269323 3985.4009660191587 None 6234 134103 ANKR_20211230 814301621.1307606 17504.97476828091 0.09995764687164947 2.147966130923495e-06 47588172.38131624 1022.6109327970556 153807 None 5363 HNT_20201231 79025707.86101326 2736.839502596246 1.2667368895634226 4.39256441058061e-05 1628625.0277185803 56.47455595457591 17926 2061 69983 POLY_20210127 72077664.54102132 2211.8406620664796 0.09532431148098572 2.9256561282259336e-06 2107393.611126735 64.67929258746277 36103 5030 305151 QTUM_20201231 228363492.03494948 7905.341064719795 2.217182964379803 7.688351907424832e-05 192056281.3207126 6659.78541485889 188529 15019 249559 REQ_20210220 82758551.71930534 1479.2191496357473 0.1072278560355663 1.9165813650312403e-06 5143859.177409803 91.94089118501591 40790 27309 403462 XRP_20210210 21583065336.769062 463388.27171027026 0.4725235786071262 1.0141193274392284e-05 5664958932.603473 121580.05658971031 1137398 260635 11661 BCPT_20190821 3753551.7934857784 349.3320392542939 0.032314005406809454 3.007369559899425e-06 286995.324372235 26.709811782374764 10927 3067 1353671 XTZ_20210203 2213380101.625526 62151.434130892034 2.905544923762769 8.181240948365763e-05 200602380.2694638 5648.428955195103 82520 33876 140734 QSP_20190513 0.0 0.0 0.022040319146875917 3.1677720804616125e-06 964260.7394611791 138.5895652596917 57175 8613 818331 HC_20191102 81936893.83933982 8876.175933848388 1.8411562233101486 0.00019945707033449777 33194500.922115315 3596.0435194561965 12837 846 511707 XTZ_20211011 6026462645.546703 110136.9503686281 6.9826021563954 0.00012757415022543824 551044603.5153055 10067.743436505456 186454 60420 44733 DREP_20211204 0.0 0.0 1.1714226775267336 2.183395453419296e-05 38081604.747593954 709.7967647370373 4241 None 527281 NCASH_20190426 5256876.260641554 1012.7237374013386 0.0018129541399025484 3.489979648539422e-07 1092808.345914723 210.36819426670215 60792 59399 878316 ENG_20191011 24423054.706149627 2852.3360769316378 0.31158137795746504 3.638917473432878e-05 1294345.9386014317 151.16494071371002 61288 3480 359356 XVG_20210707 373101299.63305056 10922.86584411225 0.02270571570486338 6.645086458977927e-07 16676948.563679753 488.0699050320754 321310 54439 100558 FTT_20210509 5363400358.755243 91461.83461367087 61.29164109605049 0.0010433952181712486 136576101.3420997 2324.9965004771466 114723 None 2794 BNT_20210212 355700336.4378001 7459.600068720851 3.1581943870861178 6.614549786418197e-05 218106995.68970442 4568.051883236754 92714 5498 79308 GLM_20210624 224626732.0485526 6667.691259711262 0.22462673204855263 6.667691259711262e-06 4591999.0086451 136.30626851628543 158276 21005 155421 ETC_20191102 560099049.2524465 60676.93444295611 4.88418201986832 0.0005289768378868375 689798957.479853 74708.04114609292 229725 24970 391348 BCD_20210325 202649526.06671 3833.7476025208844 1.070948447608875 2.0312080217410423e-05 6598605.346473196 125.15205696394729 29055 None 1465954 ENJ_20200318 48214052.87350286 8875.496764233805 0.05224967127841012 9.694900750720484e-06 6241982.498208004 1158.1967757348596 53811 15264 111026 BCD_20201115 85392712.7542501 5305.271363109879 0.4532706093630732 2.8177850091164916e-05 2208131.6342726564 137.2698800381626 None None 3405204 WTC_20190225 26750013.28416082 7101.811054689371 1.000464315776655 0.00026706725141919846 2770414.4406036153 739.5435881885438 54453 20380 795747 GLM_20210220 430347365.2079384 7705.498851544992 0.4233872075821611 7.567586094190229e-06 190137292.59932163 3398.4974172427756 148738 20580 179505 BCD_20190812 138732629.68781954 12020.454106096711 0.7386434878417262 6.396123705096931e-05 3003546.559788765 260.0856254288636 21443 None 3532175 MDT_20210207 19660725.982323814 499.9192659416801 0.03238365815327287 8.235194348583684e-07 4257028.831755212 108.25663861414378 13923 76 1222000 WBTC_20210806 7944294077.572261 193898.3656124554 40893.248709163876 0.9994464503787557 530347285.3956483 12961.888052144619 None None 187032 GAS_20190528 45345173.216296434 5148.350866196129 3.2628195267376463 0.00037075572070284003 6918706.332339722 786.1758615692422 321649 97600 225000 STMX_20210909 325852672.7718199 7033.521887649243 0.03522272892047539 7.608005968817305e-07 106903798.95906205 2309.090651113617 71627 4960 99182 GAS_20190712 35801619.12203703 3161.003929760635 2.5790020276525905 0.00022746433377647643 832733.9525609787 73.44595766167066 324136 98090 188893 DCR_20200313 106459189.18325377 22121.346651065138 9.439088423996743 0.001976172724853741 85930633.61946414 17990.484542603914 40861 9743 216967 DUSK_20200109 9496752.980694566 1180.0144919602071 0.036479470254850606 4.546133382995052e-06 420594.8996716118 52.41524892649238 17912 13339 809800 STPT_20200531 8491814.162789905 877.3628108349857 0.012074917286241939 1.2459971167904333e-06 1304072.9642183178 134.56582061657204 11147 None 1487030 DEGO_20210511 68364987.2507144 1224.4347991415232 12.553337420039341 0.0002246666142663928 24827318.618732583 444.33360059926946 None None 63518 ARDR_20210218 168276273.85124934 3227.3616567922913 0.1684448037195948 3.2305938821243263e-06 24705415.429080784 473.82384127082355 65557 6404 None GALA_20211028 568136438.2588679 9707.296018650828 0.07519356834312384 1.2849644027980465e-06 212312992.61605683 3628.164532879299 86805 None 7276 QUICK_20211202 118320276.90397057 2070.005200510526 327.8417448881899 0.005733192614162244 11640668.98718296 203.568332897892 None 4121 5061 FUN_20200310 16902967.43835204 2134.9573450032744 0.0028121096159142555 3.553155123436022e-07 309571.9139859097 39.1150126590396 34975 17016 312525 POA_20190811 3115619.332415265 274.89681915202266 0.014144768706576513 1.2490232214030425e-06 88692.13808668175 7.831767512369784 17743 None 707962 FLM_20210513 0.0 0.0 0.8166296849795114 1.6201750789862656e-05 49748802.75174822 987.0051494614485 21350 None 99101 GRS_20190821 16407447.073038239 1526.9929017440259 0.22410879261745437 2.0857147002937597e-05 1433114.5094376318 133.375757578623 38526 107007 None HNT_20201111 51779838.6162655 3387.110528877481 1.1439912581997314 7.489477142943137e-05 961751.829840122 62.96392822185136 14470 1767 69434 HNT_20210813 1476110227.5533879 33201.33885590843 15.85992708093801 0.0003571095818879985 24156740.511944126 543.9245376080905 70783 45748 2417 QSP_20210711 23569130.417262662 700.4997191226903 0.03310376238210365 9.817091377566919e-07 351337.08020068763 10.419082220461876 66388 8488 236881 POWR_20200901 50826318.634232506 4359.661523463991 0.11827971557275527 1.0145521825015663e-05 4118608.566564992 353.27640837180473 81650 12688 213418 ONE_20210723 665469948.9306575 20575.83629893149 0.06452105992370864 1.9929505256452005e-06 29711006.810155153 917.7246423068885 195354 26425 25720 GO_20210220 26617755.285570104 476.59890443284775 0.025006021502824022 4.47529194546156e-07 2617258.4881911995 46.840701268973085 13762 713 636125 ADA_20201229 5510916587.13831 203230.96433891685 0.1776971739574475 6.545046667069116e-06 1485346338.5519643 54709.14863795673 170776 94185 46501 XTZ_20211204 4185985341.2095995 77968.59363791431 4.806026021959294 8.962493901415855e-05 214111171.10473043 3992.841604442329 222809 64637 37991 ARDR_20201106 48372321.82286071 3113.025004099319 0.04847466251248375 3.1183254407544372e-06 3235623.1830620114 208.14432871685696 64153 6301 1474087 XVG_20200208 76251518.65650693 7784.754992729453 0.00478805624489232 4.883964467515955e-07 3467905.835643628 353.7370492680085 297640 52054 319364 ARDR_20210107 79230117.68868898 2161.618312593982 0.07938920393587985 2.1509224275719045e-06 9609271.90684664 260.34772276803045 64341 6288 None POLY_20190703 39175404.045351535 3640.7024930409725 0.08239825994019231 7.635912946065472e-06 4924075.2029468445 456.3180049781768 35169 5097 354740 QLC_20200217 4328680.253403346 434.21896426125454 0.017798374111907628 1.789062482568264e-06 322974.69935735164 32.464870881235306 24492 5685 940522 ADA_20191108 1353314630.3875728 146796.20828360395 0.04347433198846476 4.7156436747854325e-06 95888074.21440895 10400.941658551788 154759 75625 136886 HOT_20190805 185908716.18767947 16976.54015942381 0.001047130578972813 9.561002454572673e-08 5827122.785924783 532.0552792372393 24036 6608 379586 QKC_20201031 25563628.04250945 1882.245066400959 0.004346155728000137 3.209034190604052e-07 1041495.1840633174 76.89999770317803 64345 9214 94068 GRT_20210704 1954486645.238093 56378.52839212079 0.6776505416691954 1.95095240999413e-05 222377609.5522304 6402.239895153019 114945 15573 34179 WING_20210602 32976395.94833021 898.7672986812237 20.17354652719338 0.0005499589574819565 3178235.8084803713 86.64313186120091 10676 None 358346 SUN_20210727 0.0 0.0 0.0001991402533311984 5.2e-09 0.1991402533311984 5.2e-06 65 None 1993314 MKR_20201106 485172793.63767475 31223.538192640746 531.541989792427 0.03411557119828059 42088396.12421413 2701.3287796092773 70480 17451 27961 1INCH_20211104 799712887.4196162 12704.223233352997 4.422394110683913 7.01760492258052e-05 133781070.0509153 2122.8833799984545 None None 3681 PIVX_20211011 51822191.364563495 946.9522266820422 0.7664434372541142 1.400314209710515e-05 331172.6142030395 6.050618936694471 67977 10168 287225 QLC_20190603 10030026.18973219 1147.3640427280277 0.04180531999034009 4.78047060823246e-06 743476.8966369455 85.01715698131385 25038 5799 940522 GO_20190805 9118697.521896683 832.6878796034454 0.012029268455275674 1.0984711379175846e-06 229576.9126196774 20.964168634406256 10122 683 898219 MATIC_20201115 79593768.80278413 4946.029515287104 0.016723843060057846 1.040203841116544e-06 5637551.664006557 350.64924218275354 57645 2468 54287 LIT_20210602 68271420.041763 1860.6598098190525 3.799380610522235 0.00010357640372372677 29157720.81699824 794.880053512198 None None 185177 SXP_20210112 64806469.39639624 1829.5020119390888 0.8511551787256999 2.3944684949021637e-05 91618881.14776203 2577.4210147548274 92684 None 116678 DASH_20190625 1565067456.0505319 141781.15380707732 176.18178173573895 0.01595166011800508 438143883.30234295 39669.949073991535 319879 27773 110566 ICP_20211120 7644403592.297063 131502.94081752512 42.09466476483679 0.000721651298831892 252655277.7076816 4331.40423692807 None 24861 22498 WAVES_20190104 305187707.988339 80936.51914035132 3.05042824287601 0.0008088591117037839 15749726.44348121 4176.236490861004 134975 56560 38203 FTT_20200412 73108942.58656903 10624.607237502916 2.5369316054663478 0.00036864326701016326 1185145.5699423759 172.21431348200167 10248 None 14034 AION_20191012 24651024.02555774 2981.620245977963 0.06967246316193931 8.426457123311323e-06 2414070.973878909 291.9670789697802 67300 72557 168060 SUN_20210702 0.0 0.0 0.0003147267403262356 9.4e-09 0.28136570585165466 8.4036e-06 65 None 2023134 ADX_20191030 7633598.029072703 811.3227168479945 0.08293299289561697 8.814378338517378e-06 886488.5760153127 94.21878348954957 None 3829 323410 ZEC_20191026 284725968.3761919 32997.838165593064 37.061684868499114 0.004288012122292174 325901625.72161716 37706.59986796263 147 15341 189800 OMG_20190716 223638590.17251998 20416.492340384124 1.589313686111349 0.00014533403943834796 143078347.1200485 13083.731880518082 None 40470 None FIRO_20210513 184642887.98095813 3680.9101996484046 15.577684339980195 0.00031054571232578247 25808621.19155226 514.5024431845094 72020 859 205824 NULS_20210624 42947387.9534261 1274.34678304433 0.3797814185207675 1.1268979372547475e-05 27671484.299592394 821.07594150983 55145 5375 234427 FXS_20210624 25620853.742610853 759.991583917121 1.667955571783692 4.9492039410370014e-05 3213336.1824767427 95.34700064692801 11632 None 151064 VITE_20200531 6765872.876778136 697.9991703546378 0.013591061470245469 1.4024463277559957e-06 3974700.9341473156 410.1449133481515 None None 641396 STX_20200421 54571659.10955577 7969.281831467771 0.08639238509427637 1.2619381785129423e-05 177202.23440486134 25.884024925260366 35854 None 63028 CND_20200318 5284467.825438155 973.4024475798286 0.0027388453356841694 5.09207394386478e-07 31185.42249871511 5.798008206785196 34910 5970 433768 BADGER_20210707 91586351.77089873 2681.392902545614 10.068734588410937 0.0002947747293789643 9342528.667832704 273.5141477406082 35755 None None ENJ_20201226 130397189.78104447 5283.009763675269 0.1412572251045804 5.728624001318065e-06 9710210.565471647 393.79327508401843 69669 16031 75174 BRD_20210616 12476905.271225063 309.17445233357245 0.15311416745701012 3.7913485136391864e-06 586381.4038756846 14.51972930352077 786 None None ADA_20190618 2896488284.2348585 310728.6826676314 0.09313824629824667 9.996229759638578e-06 289880198.2288467 31111.913520317994 152598 73834 101159 GAS_20190123 30372488.709634848 8503.630392815083 2.1910129125568956 0.0006134355393918957 833282.7612569396 233.30088891219407 316098 97898 129733 NEBL_20200719 9577445.862375904 1044.7972502880568 0.5790754870041397 6.317096282505682e-05 348434.7467481841 38.01051663861964 38868 5954 643631 POE_20190321 11492917.997694138 2843.106572651117 0.005052676691633584 1.2499261122672846e-06 434500.71841008525 107.48635364675827 None 10957 686511 SNT_20191216 36511317.80868036 5130.679272545777 0.01024117859762816 1.439120960591516e-06 15006022.739240248 2108.691070396432 110603 5647 296949 DASH_20210527 2172020572.892941 55442.71096104985 214.01887967618816 0.0054630177237642 1281165935.8522851 32702.87287380235 394389 40908 51414 EVX_20200430 3807135.978541999 436.07225381521306 0.17502824862221023 1.996364621414859e-05 509196.9434083275 58.07878277678057 16702 2853 1064652 DUSK_20200330 4232092.575150467 715.2533016218199 0.016239304799617254 2.7511724535358038e-06 198617.41848369068 33.64865536224197 17615 13342 994052 AGIX_20210930 291093365.80079937 7007.3083214127855 0.29958530904093417 7.2040955283787525e-06 3818503.344691598 91.82313698444187 None None 154162 BCPT_20210120 2564722.509932615 70.85669721750884 0.022090104502780046 6.09999230946007e-07 179348.4512698335 4.952553182 10412 3217 1711405 CELR_20191017 15450243.4951835 1929.619513377991 0.00458483369070093 5.72663334486914e-07 6570924.63047094 820.7337197813179 18451 None 557601 NEO_20190421 709674363.062028 133646.63241186776 10.918760230180183 0.002056274129126979 187814642.91913232 35370.168697207504 320287 97652 201868 KEY_20190426 6523120.868100991 1255.8060345959452 0.0024926941781703567 4.795759604185141e-07 325072.1146641265 62.541475388591145 24002 2831 663823 SRM_20200907 130087004.6273497 12643.981526106016 2.6134489012456914 0.0002540705599587655 302300956.5349407 29388.664636333087 None None 111486 SUSHI_20210806 1841831922.0250099 44954.05078491677 9.577556567466752 0.0002340791014853098 381733061.09542716 9329.70025486249 120082 None 5495 HBAR_20210814 2142629281.6159897 44968.52332722419 0.23096147559280886 4.83798616767785e-06 62569930.3938102 1310.662122247217 120230 24146 44489 GAS_20190530 49067456.20062122 5678.9744526026825 3.5088675966065512 0.00040576075607947216 6071414.983419199 702.090308715814 321828 97608 225000 WAVES_20210724 1444722235.157085 43220.76650450838 14.437426637048517 0.00043175658006911995 128318334.1832341 3837.4072138970637 194639 59172 108854 XEM_20210814 1818925931.939386 38132.03417466157 0.2023428437826944 4.240892347436747e-06 110805063.47083919 2322.3571288510016 372268 21778 110067 ZRX_20190629 190114598.14351565 15360.768193425583 0.3186138540069832 2.5735519741704322e-05 61347863.24810593 4955.274624368353 150903 15972 211751 KNC_20210819 166638295.5810469 3696.8959418841187 1.8023146546382038 4.001192134276744e-05 35650000.92245161 791.4406228168081 178110 11303 108939 FET_20190816 22421712.177341297 2176.9646831967784 0.07154518449775243 6.942610521245786e-06 2013488.94200154 195.38519064956884 16258 297 378000 DASH_20200418 724617615.303217 102356.87853788966 76.30002658814445 0.010838181591612954 823817937.2292707 117020.77707409587 315538 34630 68820 AXS_20210508 463907110.78005874 8095.5930780284025 8.400043498517153 0.00014657249135809316 63954960.90928474 1115.9511205909957 65100 None 17077 ZEC_20210825 1803889282.6122966 37538.192257365066 156.09790938568776 0.003254024904854739 378481101.0142807 7889.836151964717 77878 20307 153391 ATM_20211111 28841703.087913513 645.7254437455765 11.627222042598325 0.00017900068215530115 9163327.850410154 141.06911608179314 None None 58301 JASMY_20211216 434206760.3186158 8900.211067607172 0.09185902255151886 1.879671485410663e-06 46848096.838800624 958.6323621532475 40163 None 74967 DASH_20201106 662444290.016364 42631.93415018516 67.6009844528553 0.004348702161363078 349888590.54286635 22507.975027955035 321049 35504 71186 CTK_20201130 28245287.92960899 1556.7573121614073 1.1824194229414133 6.518348362869624e-05 2872881.940806685 158.37396555099403 None None 292384 LTC_20210204 10304402991.747873 274959.4260233091 155.65789621510964 0.004149774126971345 6593329788.879132 175775.40255760026 140886 240231 113602 FET_20210523 171295282.44629785 4557.657639708226 0.24883849466342292 6.626006100713613e-06 25341371.258130047 674.7833802158904 63093 2705 111293 RLC_20190430 29722086.845241804 5710.611311500658 0.4265991009613283 8.193024129884128e-05 173919.00955128885 33.40191385045672 24774 3298 960914 REP_20190213 149025380.40909111 40997.40140469535 13.582007262022746 0.003735530260873382 10966572.960196257 3016.1937304683715 122166 9761 231791 BQX_20200605 6814377.835108964 697.0443986167528 0.04838557589898789 4.9493725576042935e-06 947028.2072875832 96.87175017223262 None 29 406675 ORN_20201201 39438049.8541779 2003.8463498462138 3.098307990349103 0.00015782490546335144 14345168.030507347 730.7294159660396 23331 None 209850 QKC_20200721 44048901.57539481 4807.851433257314 0.008301436622096486 9.060394754303543e-07 8828869.777468465 963.6048440733929 50296 9212 404576 EOS_20190702 6276690850.364592 592313.0493980334 6.041543288888389 0.0005691534012668071 4132025086.448244 389264.1365985314 1204 66923 97672 AUDIO_20211221 756892895.6473316 16042.243799503885 1.4793198847673719 3.137409341158996e-05 24169587.632030617 512.599680363374 None 8821 22668 YOYO_20200330 1177398.7614355728 199.11301409374582 0.00671702665741701 1.1379611958503854e-06 379232.2175229386 64.24740733772033 7486 None 2721333 EGLD_20210508 3361445818.609652 58661.72290859757 190.5887051574434 0.0033255853192392247 110783930.75571999 1933.0705532863979 224295 8427 22997 XVG_20200217 79771229.48159015 8002.226861055667 0.004927045473745949 4.952582832321355e-07 3577056.1749178763 359.55964069230413 297381 52035 319965 BAR_20210707 42216242.647340104 1235.917310748864 14.28614442017148 0.0004181002971738555 3344053.6105389376 97.86753984913531 None None 41859 BTS_20190513 145129414.19663742 20856.312240419313 0.05354941659206966 7.695499626445624e-06 22232034.48921263 3194.9295434938285 13772 7197 176364 ONE_20210729 742834817.1191123 18577.851010639526 0.07193400966033496 1.7979578468712256e-06 24924635.769375604 622.9799322123234 196277 26605 25720 LIT_20210527 66039596.695929386 1685.5661948943343 3.7392233624607516 9.544692287494963e-05 12890677.787076745 329.0457427339245 50967 None 141877 NEBL_20190221 18102568.056817606 4553.590619868683 1.219745452371349 0.0003068195315224285 684964.2084939395 172.2985702887119 39618 6171 501416 VIBE_20200801 3329795.121093184 293.7975024020835 0.01766859508050277 1.5600051817255502e-06 327476.3588296214 28.9137203235 18816 None 1880270 STEEM_20210806 194526922.70203915 4745.640438954747 0.501390791786514 1.223773547137764e-05 15505533.347034786 378.4525335368161 14153 3927 205413 MDA_20190920 12018684.463024512 1172.5553552524634 0.6126069904616623 5.973574505216798e-05 617759.1047438794 60.2381313945279 None 366 3013477 ADA_20210104 6478554204.432761 194089.714257128 0.20503724018152042 6.228783296301523e-06 2068192817.4392385 62829.19562998182 172574 95590 38332 SXP_20210707 179997723.52922052 5269.831246831893 2.0846358082950256 6.103742837863575e-05 135804345.6838258 3976.3051129604783 None None 60641 GAS_20190716 32216837.620051976 2941.633969504787 2.307593710094343 0.00021101681700804183 1418643.1015634714 129.72714843727888 324262 98118 191074 MTH_20200725 3696336.3691355567 387.50000349338796 0.010637335695147432 1.1151720689437919e-06 446543.38780038094 46.81366912898004 19032 1906 1350074 BQX_20200721 18187695.86875315 1985.2867376803695 0.08181775951172619 8.930857104577664e-06 5165371.130314241 563.8285835770868 None 44 341287 LTO_20210821 89474453.99156645 1820.8764058828233 0.30632583224643 6.23397467731425e-06 9986151.833146257 203.22614385837372 11631 4428 676717 MDA_20210420 27738962.540348593 495.93706182995646 1.4131161475594958 2.5265672809889002e-05 2447004.6595131396 43.7509819686848 None 376 1136941 NKN_20210711 140348747.560973 4162.1144558420665 0.21561116745980977 6.396216779404531e-06 7664269.342900489 227.36451339921288 None 3271 105019 RCN_20190811 9136358.265879795 806.3125779415486 0.018023757434437303 1.5919964963868359e-06 2605497.1602995167 230.1374930078323 None 1114 1860009 GAS_20220112 73723841.13978691 1719.756349578781 5.279812775489398 0.00012342213950518145 10687029.7675509 249.8225098037556 433294 115907 79106 RCN_20200526 39070809.44445546 4396.903760459074 0.07658124477036178 8.613558138027634e-06 486933.49651182885 54.768370429791595 None 1135 1036055 RAD_20211120 277311653.2851417 4769.036554343384 13.12147163932089 0.00022555578322923793 17819424.103536673 306.31275750523935 23037 None 200953 DLT_20210707 5201362.088368153 152.14225324104356 0.06335554203964203 1.8547567173391749e-06 810569.0889766688 23.729707208665 15211 2597 None WPR_20190419 8931830.921758799 1695.3111008809403 0.015026390741805071 2.8499161499017026e-06 292859.5859914594 55.543961162181624 35260 None 921512 WRX_20200718 26022793.047863927 2842.3528884032153 0.13407316214783063 1.4644165641373861e-05 4460616.193023284 487.2116189905528 31199 None 19543 XVG_20190513 114118785.77111965 16399.82522988187 0.007127964371438436 1.0243481749873185e-06 2022097.4735522429 290.5923414796347 304877 53081 413203 NXS_20200223 12431694.876088196 1287.8576769967221 0.20820651917761945 2.1569213280830944e-05 70089.9647490195 7.26098973504202 23400 3535 558466 EVX_20200301 5201403.317035875 606.5247749009704 0.23700300578551736 2.7710224238227136e-05 853292.2998493328 99.76633372732708 17858 2875 590577 LEND_20190520 9522739.067207789 1161.5361918340152 0.008498013493777832 1.0396233303333584e-06 438085.045786812 53.59410579938463 11525 5887 548468 IDEX_20210210 36486857.93980567 784.2725438840906 0.06437939836971827 1.3816959646351123e-06 5081251.664057549 109.05266431980309 46094 1933 6164235 AAVE_20210217 5368310718.176834 109157.22067806091 432.7086996172835 0.008793179518788389 916262882.4112531 18619.602560731215 127602 6031 14216 WABI_20210819 13611876.142670868 301.7733434809404 0.22968698673258264 5.099110169157166e-06 751983.0121733077 16.69421624164835 45375 7888 850798 BAT_20210825 1234133496.7948053 25681.80925541567 0.8234698675597157 1.716609445944594e-05 193158142.81630337 4026.5844031692664 210706 77897 26415 ANT_20211021 184685399.93342197 2786.11548070362 4.843021404562408 7.3336181496188e-05 11846167.513614314 179.38237687618926 89718 3256 105914 NANO_20190714 154426803.87375998 13568.062382789978 1.1541170255419055 0.00010134475220851187 5089256.724341676 446.8952889866042 98751 46874 329357 IRIS_20210106 37207577.1023639 1095.0794241126773 0.03965717927337593 1.1637831910304736e-06 3365074.627196952 98.75178616962614 11156 None 805488 SYS_20211202 523156428.21829 9151.134530411604 0.8393104879408309 1.4681351071399164e-05 60084888.948061556 1051.014328316973 95477 6346 147034 NEBL_20210508 61706540.76362918 1077.9847084406406 3.467147492707245 6.049876512331646e-05 4705714.699628969 82.1107059763116 40258 6057 523823 WPR_20191017 4283558.442827814 534.8916740240388 0.007042759940231628 8.794355684553365e-07 317548.0208319774 39.65249796701895 34160 None 763120 ATOM_20210325 4212382674.4733353 79690.35157697099 17.558524639256678 0.00033282556692277205 871487265.1740274 16519.226361936577 90659 21733 52553 NAS_20190930 21834428.125388898 2708.4975044875805 0.47924888427754997 5.952005224537312e-05 7120698.327546053 884.351222054448 24072 5089 980448 ALGO_20201208 266280105.17411682 13867.471311191608 0.33141094409478017 1.726109512738862e-05 91551330.3583538 4768.328416766417 None 1517 404334 BNT_20200310 16923547.906196456 2137.5567951381868 0.24324590040180233 3.06927987725117e-05 2564777.1631843643 323.623909944292 747 5029 123445 COS_20201115 17675099.75680256 1098.350008344636 0.00586669148473804 3.6458662364937224e-07 541504.765496652 33.65191346026352 13690 None 292057 VIB_20210304 9354681.02189937 183.99250600321236 0.051110560580094944 1.0087280139689882e-06 1569745.328659906 30.980800637762485 30728 1121 None MATIC_20210825 9661488060.356327 201051.58326385007 1.4860525099129918 3.0944494985477025e-05 1021859188.0077316 21278.4651337928 602636 None 5701 MFT_20190615 28462990.997998413 3275.7570176947556 0.003228351943803677 3.7205303770265185e-07 4834389.302897725 557.1416180421511 18688 2063 844355 GRS_20190512 27490680.924963247 3774.560783736241 0.37907783977784937 5.204863247711036e-05 3130125.7863604603 429.7765513195833 38839 107047 6883994 CDT_20190221 5134168.021326711 1293.6226073811995 0.00761541469693863 1.9179699064880057e-06 95848.15763744045 24.139707324780343 19454 282 414605 AMB_20190302 7543977.1767082345 1971.63844024765 0.052225370406015034 1.3670636086156494e-05 180585.7612993653 47.27055463412878 17882 4971 683683 IDEX_20211021 184837538.09118438 2788.5336113176613 0.3104893350666586 4.701631549187134e-06 21083815.721068718 319.2648570365311 63035 1984 5069572 STX_20210408 1805920149.651875 32061.439039690125 1.720293129581538 3.059717340202007e-05 99459446.54547162 1768.9880172694727 57596 None 72089 REEF_20210106 0.0 0.0 0.011111138273458325 3.2596590974046946e-07 8352636.476203851 245.04012826489551 None 443 142268 LUNA_20211011 15797969578.43156 288716.6641065225 39.26885637045871 0.0007177127487075661 658427397.9997258 12034.008151005231 160371 10882 11955 SUN_20201226 0.0 0.0 0.0001994913513067937 7.7e-09 0.11486719971939925 4.43366307384e-06 42 None None ONE_20201226 41157494.79810965 1666.6253413919608 0.00473994413615054 1.9197245798030954e-07 3763922.187620835 152.44259705368958 79461 1566 179768 FET_20201201 34821484.954349495 1771.1434263212261 0.05053154425928986 2.5740295091647687e-06 3992018.310837321 203.34967165251967 26065 702 384755 LSK_20200106 78431479.12936139 10680.478481013279 0.5710795086359065 7.775223628346226e-05 2750974.985638255 374.54409387609263 178970 31084 161971 KEY_20190904 3687437.445157652 348.91405318967713 0.0014164775328240275 1.342504868724479e-07 34478.202205752335 3.2677648076639105 23797 2827 766085 XLM_20211104 9332794635.373314 148246.4074231593 0.3860543793495707 6.1214910572273324e-06 910610084.657063 14439.13548977445 670704 205241 28876 WPR_20210722 3662814.427193718 114.11368580372539 0.006056254289801856 1.8836708165866988e-07 122591.90885498027 3.8129640865416503 33810 None 6324665 BNT_20191019 22649417.289865565 2845.9173635715924 0.324666148430702 4.0795096283833044e-05 4092049.505515483 514.1760370848976 771 5097 174130 SNT_20190205 65596682.40818842 18935.086858738872 0.018739319012776673 5.409277118201478e-06 22128569.980131824 6387.615642299206 109315 5776 290397 ARK_20190801 48500068.57924959 4822.117805943179 0.3404210085214601 3.380824283797056e-05 1131402.8263402297 112.36304617805455 63466 21838 143377 ALPHA_20211007 423979416.2428997 7638.497567987358 1.0453075156442135 1.884292615246525e-05 23907617.250000447 430.96357730244597 80671 None 59816 BTG_20190608 465226805.2360575 57869.25751363665 26.522851097898883 0.0033036577600044 30212885.984988395 3763.284530309873 73971 None 422397 COMP_20200701 20935.2478249917 2.2903349561561352 2.269816790739992e-07 2.4832e-11 243.35485288150468 0.026623239952258113 1808 None 1076754 ONT_20210804 721931054.7816454 18790.187939627012 0.822274668771769 2.1406119237609093e-05 145214857.6514824 3780.3506249355914 141998 19757 173647 MATIC_20200612 68291280.43381663 7360.192128788396 0.019842102481020224 2.1332383393815744e-06 33045214.528285377 3552.714165863073 40716 1863 144914 ARK_20190213 68135463.48013519 18744.30341007643 0.48725025915351894 0.00013409197713585834 1871235.5040115796 514.9667213222968 62539 21755 149153 STX_20210219 724189710.0101142 14011.025225919524 0.7891348190067783 1.526654231255586e-05 12248777.24912192 236.9639149697501 51572 None 59729 XRP_20190528 18405115118.683525 2086953.784123474 0.43667355749082487 4.9522252228133085e-05 3140944823.944916 356208.10818002746 923011 201219 39974 ANKR_20200610 12957162.095439978 1325.5121925969547 0.002515997705459732 2.575299291544956e-07 3184660.1619382286 325.9721994600296 20277 None 5865 VIBE_20201106 2444500.3340604566 157.19063808 0.013243532951496766 8.5e-07 115234.11491267887 7.39598701 18609 None 2184803 GXS_20200901 50614352.59918646 4330.407211905451 0.7191420301643132 6.160826167496042e-05 13177654.2996014 1128.917988796336 None None 737078 YOYO_20190213 4254816.324591694 1170.5147960950612 0.01458501595959224 4.013817519517367e-06 149288.22856543335 41.08433675587161 6873 None 763242 FTM_20191216 25094465.397648964 3526.349121277806 0.011920690402611194 1.6765619408460974e-06 3197720.520331707 449.7370823988825 20241 2237 522255 GTO_20210610 51501761.66139449 1372.0659384282076 0.07707399436573519 2.0578498815790627e-06 170783601.11639646 4559.86505208643 None None 270984 BAT_20210511 1970713633.5426934 35302.0529361253 1.314944521971142 2.353351334504884e-05 500753692.9201956 8961.970271760663 197168 71703 21549 MDT_20210219 30535365.7605461 590.8034837240103 0.05032721934798483 9.73438751899178e-07 4260871.062265442 82.4145872271617 23032 85 903443 TNB_20190818 8130990.061098818 795.4082959097226 0.0029414524822924033 2.877454884163816e-07 238559.63649445193 23.336926070630547 15631 1467 1174424 UMA_20210718 508377123.7717149 16083.073818217881 8.214002795436981 0.000260379065436357 15484940.929035315 490.86353485041775 41647 None 160207 C98_20211202 576995669.1483635 10094.9174766447 3.1197162963923626 5.455557294193137e-05 40516050.65038503 708.5183864738419 250660 None 35564 CTSI_20210828 307732771.66218215 6273.687390015013 0.7730737502240392 1.5759471574376648e-05 27764946.225213956 566.0014722703351 51255 4428 202161 YFI_20210106 715875808.2687645 21009.67939956061 23860.082781381727 0.6999799119496735 444590092.9881472 13042.877386258537 62517 2520 18869 FLM_20210506 0.0 0.0 1.0165441597873166 1.7732122971489574e-05 77245634.74951802 1347.4368832887687 20517 None 99101 BTG_20200314 112510795.28935765 20466.54143618557 6.451651816758103 0.0011597309268109352 27558841.161821734 4953.900382444213 75030 None 217881 QLC_20190902 3456669.2049035183 355.4214202588255 0.014402788353764658 1.4809225844117728e-06 44055.826971267474 4.529905427627406 24798 5749 940522 ONG_20210428 0.0 0.0 0.9457649591194336 1.7172608469769322e-05 14457701.057685139 262.51389126084524 126821 18559 153956 ADA_20191026 1277391768.1890166 147790.68983087857 0.041097604308284304 4.746904630270675e-06 108314215.15643574 12510.637982530214 154423 75487 134614 SNT_20210127 181274499.09373903 5562.079175494868 0.04678532852953189 1.4360679762163974e-06 12856311.585657945 394.6223728827571 116511 5693 159141 RLC_20211204 307586085.5537014 5728.689971069517 4.299126278584594 8.013070730503084e-05 300665215.7368007 5604.049483036243 49882 8451 283340 MBOX_20210916 158642652.67169958 3292.144829885578 5.35960286326986 0.00011118034735999125 67138940.41206472 1392.739519480189 None 6487 9324 FET_20200531 7614910.5169147 786.5066769125184 0.022362410475350886 2.313207857869739e-06 1906515.930059596 197.21342810645694 17002 397 1153661 BCH_20210704 9470139980.026703 273322.1408484632 504.8236389611581 0.0145584920061184 3006565118.893362 86705.63513895046 None 580218 271205 ADA_20210724 38578333796.337135 1154121.6135315981 1.203239820067367 3.598488691832975e-05 1049399514.7124714 31384.036863876514 530893 547019 7136 NEO_20191127 654131325.5774044 91238.29571723606 9.270167748333169 0.0012952895281289638 338314066.5964983 47271.49276882964 323709 98717 161604 COMP_20200903 53780.40614029768 4.714039127301066 5.83346456294849e-07 5.111e-11 58.990072707305366 0.00516842535604 1899 None 827585 ENG_20200718 25097845.98781931 2742.0085091124447 0.3027252067687739 3.306801608532277e-05 2656478.7276027882 290.17894556030046 361 3579 537698 YOYO_20200318 1001502.803023805 184.26040272247255 0.005719895476588033 1.053556007798568e-06 266840.5041929986 49.14974713562947 7501 None 2721333 QLC_20210218 14024056.072476994 268.71069118552106 0.05836686071430632 1.1197318227136853e-06 1726975.512507767 33.130948191089544 30294 5610 940522 NKN_20200411 9083793.336569803 1324.9045222043976 0.013980942124429385 2.03727755954223e-06 1750653.6906148728 255.10208444304186 12253 994 307809 DODO_20210527 183646563.48644766 4687.315712216527 1.470916852457591 3.7546429769734567e-05 39489512.299912326 1008.0040878806071 90513 955 23089 FIL_20210124 1030043615.6160413 32182.76615097476 22.689629447925178 0.0007079970988511233 178166580.32060942 5559.4306759713045 46179 None 34991 DNT_20200607 4939788.148605515 510.8619163513224 0.006575672722521856 6.800414647893231e-07 905280.1905779705 93.62206618599767 58048 6023 623804 CVC_20201030 17632084.506352622 1308.978976185851 0.026378980144091735 1.961734910612706e-06 1142848.1415729097 84.99059040971211 84841 7949 267877 NULS_20210930 39404196.31340507 948.5525441842556 0.4168502829782554 1.0023953675234271e-05 9347611.530660711 224.78100359671933 70629 5465 281468 BAKE_20211230 203025487.86499196 4369.102674968992 1.0550050582227744 2.2673824378555438e-05 13099184.200879216 281.5233915308558 None None 29841 DUSK_20210821 56422588.33418161 1147.338330180108 0.15529476883971943 3.1576609510219544e-06 2322698.7340582022 47.22821733353734 None 13647 340293 DUSK_20190806 5973805.1464052815 505.7159227776544 0.101458470350372 8.595787328670547e-06 1537004.9911279893 130.21848231317153 20202 13239 227094 STORJ_20200107 15111345.478400266 1945.9572984300494 0.10548567816670051 1.3604877081231787e-05 970610.875440447 125.18326547804854 82659 7884 137382 ATOM_20210429 5473754373.2564535 99999.35319419978 22.968376391690573 0.00041947056203938375 1072994286.9716767 19596.0528051904 113170 25717 44770 AKRO_20210105 21974857.455348752 702.3796807299965 0.00939280398830911 3.002210448861038e-07 6482297.535446663 207.19288316637736 25213 None 214700 EPS_20211225 142563059.781105 2803.81726240231 0.26900737385238693 5.291241675395144e-06 7396807.372566594 145.4915338345739 28779 None 88886 XZC_20190318 47485647.47995915 11924.361191259335 6.755406791114435 0.0016964680570243575 1454407.2005445864 365.2415663369802 59503 3950 302674 NBS_20210325 0.0 0.0 0.02902764076468992 5.517654399042534e-07 10385756.285214862 197.41533360922307 None None 707411 CND_20190703 23127352.23315178 2140.409565209938 0.013230465922102771 1.2233262330513412e-06 572638.8777182102 52.94780737898826 36220 6137 575045 BTG_20210828 1219848655.8137565 24870.559514946122 69.66123142640978 0.001420351268398886 69384374.57677293 1414.7063211377679 101743 None 217752 ZIL_20210429 2369279160.2006755 43284.072941623774 0.19895989488180438 3.633520071458995e-06 600514365.3481395 10966.93884457553 231414 29135 36030 SC_20200324 60040330.38570713 9319.769784197048 0.0012683652149509702 1.9566343566167777e-07 2828637.428115459 436.35769169818917 107610 30169 162098 SOL_20210616 10852976029.829046 268736.82052189606 39.699499977153316 0.0009835816789527745 508646352.88739556 12602.053780377715 328005 23420 8068 POLY_20190405 53618317.41335104 10946.312076893442 0.12546385648157302 2.563218358144375e-05 9198856.452540679 1879.3203392843361 34172 5035 277280 BNT_20191020 23122647.112886425 2910.4855860336834 0.33154817040383905 4.1726430682984176e-05 3330240.1382691176 419.12170445072957 771 5095 174130 BCPT_20200318 1255732.961431161 231.1619366487471 0.010725188399919896 1.9900534209287367e-06 36375.66899080698 6.7494874508934 10664 3167 1690012 LSK_20190507 224060426.95658702 39163.79139835703 1.709963555652381 0.00029892192102634374 4296698.712960295 751.1139223429226 183765 30417 170512 ICX_20211204 1081467292.1996014 20167.689410404408 1.5968852396840154 2.9779435559723245e-05 39847674.33930928 743.0973877791654 156676 34510 269698 ZEC_20210418 3116592779.122994 51720.23185450631 283.09538236321816 0.0046971257264773044 3493254107.5216546 57960.160284459525 74637 18759 91916 PAXG_20210813 307596066.1873989 6918.828693991602 1763.2487128691228 0.039660138787563914 10655261.009430174 239.66507241289318 24228 None 40633 SNM_20210207 6699689.94297858 170.66471279811358 0.015729405145696998 4.000002339122257e-07 897774.7501135656 22.830495286985208 28919 9475 None CMT_20190909 18715938.093206137 1801.8366803710712 0.0234010541918125 2.252316331910975e-06 2490237.542453066 239.68162464951192 289911 1650 567314 RIF_20210610 143535140.59840184 3823.940599884299 0.19522784221950928 5.212518117147943e-06 8015116.139220463 214.00092124030311 43440 3315 419443 POLY_20200520 18885905.823933773 1936.0411312193746 0.0294619596084664 3.020218682655379e-06 4355125.984212881 446.45478568430906 34715 4984 346394 SKY_20190312 14365067.59791382 3710.390150697245 1.0376746910138137 0.00026839214796044376 973322.8051488381 251.7476821927264 14827 3557 408962 LSK_20200905 212941735.63261467 20308.689940109438 1.5037645403334532 0.00014341710750988073 9807136.364675408 935.3267035175775 177110 31149 154777 QSP_20200621 14270799.206124315 1525.4280132264603 0.01999738209670881 2.1364418258603386e-06 383331.8696874778 40.95367261699514 54614 8236 457360 HNT_20201124 100702087.51692477 5498.652147314386 1.7740326726627467 9.670329347912053e-05 2358494.859608733 128.56258179022763 15078 1830 67416 ARDR_20210422 396948977.055435 7326.023889333756 0.3972064825014975 7.3437031147095076e-06 29140982.038779415 538.7694561683579 71316 6750 None DASH_20200520 727851510.3091782 74666.9331779963 77.05882329029663 0.007898166825358674 483730153.8632073 49580.06481976898 317785 34910 78138 IDEX_20210219 45963649.48092979 889.31960119403 0.07952303031771397 1.5381497404905921e-06 7114524.40181176 137.61049872772662 49885 1933 6676020 ARPA_20210828 76904767.50973402 1567.9523752542923 0.07830130309145325 1.5965064674775995e-06 70300472.0884394 1433.3753580682449 44514 None 746780 ONT_20190512 763736233.4449139 104599.07517731529 1.237767213150875 0.00016993638141631163 118301064.80470093 16241.870569047755 79697 15539 249396 OMG_20190312 187262047.98700663 48431.819943123635 1.3328746361696633 0.00034474492792540195 66612734.3827972 17229.22898413395 288764 37012 None LTC_20190509 4569421133.9060755 767699.5404436594 74.12328214958379 0.01244346461045904 2818913680.768947 473225.84226370754 443779 202514 206704 SNM_20200217 6669693.177596035 669.0682624250658 0.015242825069633458 1.5289578178254544e-06 613549.6898472067 61.5431582158036 30299 9722 None STPT_20200417 8265371.52863727 1165.0100355974455 0.01188673057615201 1.6768171336943948e-06 2214249.422997245 312.35597938122453 11252 None 1265534 WABI_20200612 7258383.203646905 782.2828124446428 0.12352537692749781 1.3283957919401924e-05 3223726.3159011537 346.680542810524 None 7672 1240690 GVT_20190325 17607061.254806288 4408.903504685466 3.9666285926600606 0.0009940495251337094 897517.0848257786 224.92058712564116 21030 5802 155921 ARK_20190723 46500701.467203036 4496.226857501379 0.32575411489597084 3.1512037271201634e-05 530262.3893276115 51.295278898761815 63429 21835 182377 ICX_20190524 181926410.96469265 23093.73767242361 0.3839342914315709 4.882080118569003e-05 26667332.69469038 3390.99834710173 113528 24401 274094 LRC_20210221 880514573.8097572 15759.050461452449 0.7116465847914141 1.2694763579709154e-05 129780553.37320744 2315.1006096651067 60239 9123 128184 LTC_20190511 4745056289.250886 744658.2391599593 77.00621829806278 0.012087366439291605 3502341932.1755404 549748.9847643554 443801 202521 206704 REN_20190805 101243757.69459333 9245.229345019503 0.12555864340973152 1.1465580505952325e-05 10508824.270445265 959.6294402648606 8887 865 478249 ICX_20201229 259047035.0167322 9553.107528148175 0.4491616661832718 1.654812211084109e-05 58753343.12511063 2164.6047952314916 116833 28054 334338 DIA_20210318 97850108.50532074 1663.469553706008 3.837395688122287 6.510429890597249e-05 98432218.4756576 1669.976487817689 None 281 262752 RLC_20200314 18475223.74468773 3360.779126491672 0.2661953457501409 4.7962407130120774e-05 998353.5499041929 179.88082881528328 28450 3562 249120 SC_20210108 221368558.69644243 5655.440250354035 0.004935320157196667 1.2506381349214303e-07 47840185.58475507 1212.2974511950995 107680 30130 159206 FORTH_20210819 141488470.59122357 3141.080250615709 16.414571522004152 0.00036446965201080144 19385770.99033516 430.44225658507304 None None 144667 BTG_20210420 1563200176.8135276 27899.26156782177 88.71870176315362 0.001585357280188154 102361053.95860371 1829.139052713258 92615 None 172941 IOTX_20190922 18647017.2476739 1867.2354396681958 0.004514292945520474 4.520456061581354e-07 591654.8521824031 59.24626060357727 22513 1768 600073 STEEM_20200411 53759840.77266972 7840.537264379974 0.15407078462047144 2.2464225436218586e-05 3877092.339435955 565.2978049321425 11218 3842 214846 MFT_20190923 10067961.423993226 1001.6353087038086 0.0011154313085262964 1.1096308295768639e-07 343158.5708376967 34.137407362012155 18734 2261 975011 DUSK_20200511 5039460.020336001 576.6286745307425 0.01890787600015644 2.1596599150783584e-06 212895.3997020306 24.316938657586732 17461 13333 1673538 PSG_20210212 0.0 0.0 9.874836367947372 0.0002068194315574909 6453014.342170112 135.15249350479885 8636440 None 40302 ZEC_20190801 481549311.2383291 47905.61103979987 67.98202691286474 0.006755232466419026 245506300.75051793 24395.449927758644 90 15357 186923 GLM_20210120 110492519.19826658 6393.577954391452 0.13144386833127114 3.646975316905404e-06 3054412.681620721 84.7461946984065 145761 20314 197039 NEBL_20200320 5929923.337631767 958.1545962806232 0.36591438881805155 5.9276375839682665e-05 125690.17834349822 20.361206004803034 39594 6018 841626 FIS_20210429 60707325.21545713 1109.0547440995354 2.2618401002610895 4.1307025255576265e-05 9222055.827066189 168.41848940293573 None None 230666 BTS_20190207 97448498.02468368 28606.305020568485 0.036159803508767414 1.0613072834829805e-05 4051034.296228609 1188.997667861865 13809 7226 107513 ZIL_20201111 229834027.01443937 15026.173234880762 0.020161655573823867 1.3198085047329763e-06 27338645.589840863 1789.623715435258 97734 12312 75439 FTM_20200625 15582766.796125274 1674.813563813436 0.006500537928919085 6.99292395483149e-07 2800819.8912915112 301.29691919569655 22365 2403 327499 PPT_20191102 18395197.589923818 1992.7410290439095 0.5077628247887407 5.500722001474109e-05 1801581.3054179593 195.1698202459024 None None 826068 CHZ_20210114 109045168.95617598 2928.2864793706767 0.020428971583881142 5.465834897418542e-07 37636862.866856866 1006.9859740239541 66518 None 151849 SUPER_20211104 395031328.9471507 6267.900695374619 1.3744698346039252 2.1810553369616544e-05 140549726.8516651 2230.2907211249426 164356 None None BNB_20210206 10106500512.436033 264834.5199917918 68.33895660447845 0.0017903388561926914 1692097697.7534337 44329.44849151592 None 127776 423 POE_20190706 12699511.091455536 1155.467383328915 0.005045145903343728 4.590335402259201e-07 331146.11488091736 30.12939097462023 None 10845 780853 DCR_20210107 692379763.8976562 18890.048640232384 55.45994552640902 0.0015025977683441197 26864264.56450054 727.8439168967968 41405 10071 378546 ASR_20211125 10961976.414311051 191.73505526683527 5.1356464730491505 8.97955944354872e-05 2033630.3106351418 35.55755707948618 2037610 None 72897 SCRT_20210725 68947870.78314294 2019.50718934066 0.9892256718755488 2.895383337055112e-05 2317805.770453007 67.84029566859142 86008 None 61178 XLM_20200309 1024199639.6871272 127315.61177777991 0.05055818432150471 6.2847573049649404e-06 364703923.3159711 45335.40270421653 281642 106763 84088 KMD_20211021 139385028.00801414 2102.337763281387 1.0822958074735376 1.6388827374306084e-05 3743813.660097566 56.69126256724248 116122 9894 134961 FUN_20200607 20039530.01995083 2072.005875197231 0.0033287569515055033 3.444127668715503e-07 1145422.6651734386 118.51216387887642 34251 16827 232312 WAVES_20190719 151411266.6545563 14107.87480385503 1.5016774115768239 0.00014078487321481656 36514750.91526279 3423.321505967053 143555 56861 48211 AUTO_20211125 33623938.32861278 588.1136238633673 961.3747378877973 0.01680756011562927 4548384.221708936 79.5186707353182 79766 None 20191 KLAY_20210729 2534677914.646551 63358.544116141136 1.0163176437299848 2.5400380115559062e-05 77185037.96581237 1929.0517247837577 41909 682 62906 OAX_20201130 4009378.3102203435 220.49706299713395 0.07211238760374208 3.9699905792097905e-06 104943.66656809735 5.777445200018038 12758 None 1870485 CND_20200129 10762653.024477217 1152.1076986419284 0.005657416180704872 6.050455694195227e-07 42993.777620176224 4.598069830962092 35125 6002 525031 ONG_20200526 0.0 0.0 0.11538292644146336 1.2977819151667148e-05 9265707.654167311 1042.1704662605048 84858 16475 164481 TNT_20200229 18063348.156002197 2063.726080590959 0.04210205308571259 4.817445222221485e-06 462549.75555978157 52.926352675123255 17736 2565 1056961 SAND_20210511 327514654.9798284 5865.91945863434 0.4653590271850908 8.328513251709356e-06 57653098.69811856 1031.815369337207 None None 21212 SNT_20211216 299255458.66147166 6133.994672383856 0.07730328095289583 1.581835814958935e-06 33963122.6017507 694.9780534157006 144737 6255 174489 SNT_20210821 386646799.47661746 7868.57033677389 0.10032620429222967 2.0407154983390464e-06 44480652.813068934 904.7721700650291 134283 6051 144059 JST_20210828 103039455.30679594 2100.9289452909197 0.07188102674730021 1.4656115808431663e-06 136929336.44540626 2791.908106113624 51212 None 156569 BCD_20190419 210579541.4401983 39938.05212156058 1.119331421507528 0.00021225737853164522 8120412.282038443 1539.8633420477622 21188 None 3139253 SNGLS_20190627 8428418.568724092 649.3565480724692 0.014338803788779147 1.0995413778263032e-06 908139.7175613913 69.63880746367761 6 2181 None NAS_20220115 13314789.817400968 308.7176101040732 0.29263274323958166 6.78500241986974e-06 2027515.371479879 47.01010744567061 27069 5245 595906 ARDR_20210310 228925748.10575348 4181.034058996095 0.22915501884788586 4.185221393926826e-06 40774088.65115673 744.6862346661823 66682 6455 None LPT_20210603 652636355.1850367 17343.982119715773 27.547495127866338 0.0007315205102522594 15498637.110847825 411.5644952441868 12267 972 99080 WTC_20190819 41635423.04731866 4036.307693657029 1.426766468791667 0.00013829487942743467 3925515.84352474 380.4958640011383 56048 19985 638612 RDN_20190730 11363189.856199749 1197.1955017291964 0.2250972984773991 2.3664264410710743e-05 321667.29727226304 33.816576326853664 25647 4400 778116 GVT_20190324 17950815.37956305 4482.249854118063 4.046034655826126 0.0010102793584786296 597541.9319026091 149.20393199236887 21022 5803 155921 RENBTC_20210722 391564539.1167924 12167.91173929516 31889.979432366363 0.9886670999479503 5914868.684701969 183.3753477790597 87701 5543 100399 MATIC_20200229 51876436.24711087 5935.419122038835 0.020219527585624546 2.320592254714942e-06 35504463.29999514 4074.842114528795 31756 1539 160214 OXT_20210429 0.0 0.0 0.6162757386681273 1.1255019774226556e-05 30404944.067579385 555.2843074017911 63522 3770 93493 MDT_20210702 14447818.75853372 429.9857230586074 0.02383581609393845 7.088377902172334e-07 3102788.3666568073 92.27179974307909 34390 310 534148 SNT_20211125 355117844.6817872 6211.337901385294 0.09267054938420294 1.620144329094246e-06 24141497.14839618 422.0619167656118 None 6212 192396 DAR_20211207 0.0 0.0 2.2846437961460784 4.5242249178243047e-05 70830387.30203263 1402.6370487669353 None 681 26429 GXS_20210106 21140032.760808226 622.3087089266999 0.30347279345873196 8.902938903888548e-06 9146865.222734816 268.3403059364689 None None 482061 ICX_20190629 149889150.8446924 12100.011695173103 0.3162084611768054 2.5549129922213618e-05 19485288.326412152 1574.3796392119234 113846 25332 300375 DUSK_20210420 103691276.73966722 1852.4409595594082 0.28955689363985854 5.1729053039618876e-06 15944818.447276652 284.8526066148989 26164 13557 307369 DOGE_20191011 281345385.820131 32857.95342590566 0.0023143669244186 2.702918350387306e-07 74872637.3625734 8744.275738387209 138289 141967 98077 NBS_20210813 0.0 0.0 0.014953137775113782 3.363443492175106e-07 5361182.32975836 120.59030076884795 None None 2066443 XRP_20190507 12676457605.811451 2215733.2648496088 0.3011475456986682 5.264438874877006e-05 973493927.3601532 170179.01519873313 919430 200485 40096 BEL_20210310 69339539.6440938 1268.6148322115648 3.098798740240813 5.665036185313513e-05 33897176.545902185 619.6876525694389 13544 None 377767 DGB_20200907 303564595.2555648 29560.790991499805 0.02244800649429516 2.1859625217329264e-06 9927479.973838357 966.727230927158 165200 22997 135081 BNB_20190621 5157341617.501331 539157.0610572344 36.82998150037514 0.003853546722448187 554034951.3800732 57969.06444252966 989133 53143 829 IOST_20210519 1056782653.2092592 24767.23100415127 0.04691258648181038 1.096578421991415e-06 237468524.61514285 5550.810124188525 246479 53381 129229 MITH_20191019 6680879.119598713 839.6881926485654 0.01228948761912809 1.544052676124425e-06 646539.1207698281 81.23125150392659 88 2082 644077 NCASH_20200319 948207.9235549971 176.18927822395085 0.0003271691061547628 6.072452487893545e-08 668647.6345243359 124.10496331737247 57830 58324 679947 RLC_20200610 38219915.12537563 3909.8811240877594 0.5438478868561695 5.5669141218240666e-05 888283.3115569951 90.92610325054142 30385 3585 681480 QKC_20190623 73465949.93019569 6843.1887338898005 0.018391804242372918 1.7146118359872069e-06 9405200.859417459 876.8182012420988 None 9207 162641 GAS_20210814 137969792.58585548 2892.4041125442204 9.891121508687082 0.00020730746256985064 58253908.25013113 1220.9404053428282 409707 112662 120320 LSK_20190302 157548719.6439967 41243.022483868066 1.2167294771123085 0.00031822956142537885 2952778.8365561767 772.2846629585504 182959 30460 174476 FIL_20211111 7769479880.167427 119636.87194167133 63.71362478906733 0.000980869055226311 1509576499.1969955 23239.87811808304 None None 47979 REP_20210826 188761921.91243902 3850.951357667055 28.680645915606203 0.0005852696390088776 51343909.58748854 1047.7459788735973 153178 11356 187615 RDN_20210813 21794649.05265499 490.26410385518204 0.4303898538586178 9.680831877474463e-06 909176.5820787547 20.450262846885302 30613 4681 1394664 MBL_20200523 5189663.916322475 567.0476700097616 0.0014708621242481609 1.607134785428564e-07 5689979.491872486 621.714559033717 None None 88350 AION_20190531 59614763.49788833 7178.174188782006 0.1925246982691925 2.3190423399694946e-05 4906513.344018667 591.0105191020759 68860 72565 270538 AAVE_20210204 4716909693.591059 125753.03644299366 382.5836671269387 0.010199698734974156 1104107031.4416268 29435.545893637747 110325 4045 18454 LINK_20210821 12803637957.724035 260564.23064490466 28.664104399099756 0.000582784729675119 1625996458.9692004 33058.97486274949 433369 64373 31110 RDN_20190530 17959140.928687874 2076.703711653555 0.35476430955061966 4.102621172856627e-05 2021989.8762146973 233.8301304313287 25639 4441 1272561 REEF_20210624 193622870.94435626 5743.0336929034365 0.015248840775916091 4.524678243300169e-07 23027109.01097745 683.2667523988334 181616 12335 41757 GXS_20201031 24953560.87777583 1837.32593719584 0.35621457556596076 2.6301513883136284e-05 11080066.683513172 818.1094982974225 None None 435322 MITH_20211207 44353986.61014061 878.7431842422092 0.07174130881898533 1.420675807509684e-06 42109853.35960677 833.8912533185071 37094 2930 265484 BAT_20211202 2221264787.6696715 38855.038772200176 1.4886708463969458 2.6040288965614737e-05 611389350.6464535 10694.61083346024 237208 84561 24150 POWR_20210624 53090200.69813564 1574.8150363916152 0.12369602746441809 3.6671107206659626e-06 2858147.8197981925 84.73307288906237 91009 13974 149049 XVG_20210429 788254783.346816 14400.530807892465 0.04796381976030572 8.759428723383926e-07 50122715.13833796 915.3698618476116 306918 53498 130279 STORM_20190510 10988423.824769244 1779.7336213165368 0.002428172136983214 3.9333344928137953e-07 776552.7052576719 125.79180423644657 27036 2566 6189578 ORN_20210930 233668330.72511023 5624.290890968818 7.541249653881923 0.00018142578410222204 14490843.015544675 348.6176266613973 None None 87022 CMT_20200217 13734157.344137585 1377.7020310714177 0.017011405684976506 1.709957746442604e-06 17086391.95156197 1717.4952392165173 287334 1639 729361 FXS_20210420 53242259.84048219 952.0462089047364 5.132312929870586 9.177294657355776e-05 11909204.437933067 212.9532625056765 None None 111454 ALGO_20190810 157353176.23535153 13265.298863466329 0.7967880273448188 6.716973887609858e-05 130698093.87428935 11017.932669488575 11118 545 241883 PERP_20210603 226842534.87344706 6027.772280228147 10.613080651774304 0.0002822037381629808 45114309.550092205 1199.5976679541614 20167 None 228103 STEEM_20190601 136001198.13225558 15854.806918083395 0.4388433707860789 5.1170090127039546e-05 4704854.879806073 548.5962971323427 5633 3735 311798 GAS_20200704 24077630.121597826 2654.8942850974195 1.728161676579416 0.00019065937421090297 9689315.357434979 1068.9733649441628 319638 99710 207094 RVN_20190904 142468280.6724583 13424.872152797378 0.03280135587628872 3.090891579508712e-06 17386628.61921986 1638.352518044514 27584 6965 276399 NAV_20210111 11736944.703592628 306.03084242581986 0.1660103761841354 4.328579247673139e-06 605679.6064171423 15.792580170820791 48178 13626 819464 NAV_20200511 6364951.2342419205 727.0055103972051 0.09273674840392523 1.059232720908793e-05 675998.4399801166 77.21207387943426 48806 13901 1266720 RUNE_20210610 2440214522.968829 65144.00207152193 9.713113304576117 0.00025933687786748615 170073547.99969634 4540.906871261099 2170 5375 65526 WPR_20190902 3480671.0809632856 357.8753676125208 0.005722702557070333 5.883963849815606e-07 113188.03735051984 11.63775879246439 34514 None 785340 ETH_20210506 409191426695.66266 7142431.24684435 3524.562728476055 0.06154998015796779 63552342594.19045 1109824.3177973186 1050049 861613 4856 KAVA_20210427 283165552.66476715 5256.184983142136 4.8697541079034465 9.033769634191126e-05 74954526.31976254 1390.4643002686819 92765 None 75402 COMP_20200927 16643.686673478966 1.5500343564423946 1.8043269887768517e-07 1.68056e-11 0.030438071604520948 2.8350185932966733e-06 None None 805340 INJ_20210523 257827488.08843893 6859.060633691475 9.577168589548775 0.0002548569930830288 30207130.737904254 803.8386750264908 70661 3519 100765 ELF_20200430 34131067.09515697 3909.3984131880866 0.07443167129871024 8.489644183908562e-06 29856031.61992245 3405.3660326858317 82244 33418 612782 SCRT_20210221 298418086.38630724 5320.200365532862 4.344053299871318 7.72643540490707e-05 21285886.38544168 378.5957833394397 69208 None 189901 HC_20201014 49687771.4751 4349.26646286242 1.109485539799403 9.713581569499471e-05 5993753.2482044315 524.7550237960972 12870 845 903160 CTSI_20200914 10135172.79396798 981.9204483805962 0.05113445996537939 4.951429164263107e-06 2377376.984793296 230.20510522499418 None 141 367425 INJ_20210527 311812688.93151355 7958.572642743863 10.81175841562089 0.00027573660373103327 32624913.647138026 832.0462352435451 71101 3548 100765 ETC_20190531 902334758.0969031 108628.07914054686 8.123276435626103 0.000979012576472262 1097840539.765319 132311.10672014247 227830 24554 663650 WTC_20191011 20894723.801663656 2440.267003209909 0.7159953464733131 8.362014425438622e-05 2351057.191348834 274.5768425161535 55594 19790 471391 KSM_20210210 1175433410.4661229 25230.898460944867 130.80771419173615 0.002807361278399004 188984509.12621185 4055.93658154213 33814 None 118660 BAKE_20210702 304944437.4875082 9069.856735385387 1.8043366186998109 5.364403817130283e-05 45482487.67502692 1352.2223512390385 None None 8023 SLP_20210828 244426501.04743332 4983.7483080412285 0.1461688682586354 2.9797210469417634e-06 109406742.82501939 2230.3078497961583 None 52915 935 HC_20200907 56991242.029530935 5534.992306979137 1.2725983013676223 0.00012385130985343454 14118229.330125483 1374.008745311143 12871 846 533192 THETA_20210519 9765787684.559467 229113.0012359031 9.81309163041897 0.00022938032928784127 355359714.495981 8306.508427379395 160396 17254 16888 MITH_20211021 33147427.383271333 500.089935946232 0.05326607675599175 8.067946012858288e-07 5919993.022852533 89.66717095322652 33457 2761 538077 POWR_20200127 18121351.014854517 2111.2728550640973 0.04237828195146993 4.9313047601822646e-06 650331.8831666235 75.67519407300158 82639 12845 316499 GO_20210624 19004576.61575829 564.0073715264987 0.01769990881584561 5.251965936580658e-07 574107.4220814817 17.035074338974926 22197 1090 102665 ARPA_20201130 24416225.473278586 1346.0071830811455 0.024763292958213418 1.363586202873685e-06 19539260.189278893 1075.9257928022346 21054 None 1251895 ARDR_20190819 55334906.08255596 5363.13630011804 0.05569242093163476 5.39759770854713e-06 2057530.9167610896 199.41176870740392 67318 6547 926837 POA_20190703 6831502.732608443 632.2476367473147 0.03112812806708558 2.878194605877897e-06 716585.2226867273 66.25749284196685 17715 None 637225 MANA_20190613 73264953.32547909 9010.02803863989 0.055155326110543794 6.7740792417851865e-06 17009497.676629193 2089.076309575484 44750 6267 128669 WABI_20201111 5064379.917457986 331.10084821858976 0.08546862447112126 5.594888626669497e-06 812221.9044973352 53.16911467715777 41134 7567 1658910 ETC_20200403 591588963.4736161 87233.14771291194 5.103446464857286 0.0007486236035576479 1685610696.6574984 247261.91655315846 230749 25357 329004 SNT_20210814 383643674.2984344 8042.898032272157 0.09817226660167581 2.0576626603195884e-06 52700270.466671035 1104.5826126027437 134104 6037 133680 BNT_20210107 150650706.0902742 4110.170912145958 1.581925709073367 4.285972547535134e-05 132570299.81375812 3591.7784404243325 89611 5309 101085 SNM_20201124 5129264.095373257 280.0740255501312 0.011740493695743311 6.400206789925585e-07 434548.737921338 23.68896790095042 28863 9520 None ONT_20200315 209408570.54031253 40531.16471018439 0.32976477174049473 6.36476200700229e-05 88796252.8569124 17138.489765444 84502 16510 345761 NKN_20191213 12772539.966458669 1772.227952250667 0.019552176757981782 2.7162284451403463e-06 2281342.1803516336 316.9287287074033 12149 1001 263296 DCR_20190708 316634655.30482054 27718.188415112207 31.5116050073748 0.0027568043853632325 15611034.3247243 1365.7370951553837 40512 9527 383707 ZEN_20190414 46681325.02127281 9202.009251596004 7.50918883927309 0.0014798709693719658 530050.2491398552 104.45948194936886 25385 1554 329639 FIO_20210731 60397388.8149407 1446.9904020893516 0.1777096226656413 4.255569679571259e-06 4460862.143882709 106.82319504989192 None 505 321832 WTC_20190830 33535777.289374936 3534.117725604933 1.1491638131941257 0.0001211029094924197 4089301.147268553 430.9448844794542 55954 19959 638612 GVT_20200331 2901699.0635171803 451.62957231191973 0.6538437076677855 0.00010183859313674586 235454.73518898405 36.67295211046746 20590 5588 152210 WABI_20200223 8292687.314542603 859.0784384122185 0.14004207592959256 1.4507698490645503e-05 223299.56265345422 23.1327813913444 36727 7788 3929057 LTC_20200704 2674162449.2862477 294908.1946616572 41.18483658991759 0.004543293738258771 964391999.7853957 106386.63393226807 132068 214000 120838 REEF_20210120 0.0 0.0 0.01675874056926532 4.631944716142876e-07 16124906.348895663 445.67594117450005 None 588 125550 UST_20220112 10557904040.21569 246284.27155575185 1.0004170927464213 2.338351983579329e-05 234623431.3492133 5484.034309964402 295741 None 4371 WAN_20201031 30780017.907061465 2266.3268591202823 0.24507888226646674 1.8058148056812665e-05 902426.0921909469 66.49346460376255 104373 15983 434724 PAXG_20210603 264757351.79563394 7035.99598631746 1920.0568914040005 0.050992467364237064 12131117.868424488 322.17567863055035 21964 None 39810 AST_20190324 6784269.245630381 1695.4439326893823 0.040757221528267856 1.0176017105647787e-05 599821.5293545783 149.75981958963067 30948 3596 404922 TRU_20210814 269843877.7575879 5663.935447553753 0.7220346244137084 1.5124572254017743e-05 75884386.83416075 1589.562124610082 None None 128346 AE_20200224 71813805.1734896 7218.186828178087 0.20629355684485137 2.0731597504036186e-05 14153741.168588279 1422.3888984771377 25432 6342 480371 XZC_20191017 42057252.69726665 5251.830288522393 4.897383551932065 0.0006115405500809304 12099377.155721087 1510.8597648079326 61160 4055 181391 RDN_20200711 15680388.484614806 1688.7300246632008 0.2346722280633064 2.52766703697851e-05 2547959.2125562793 274.4420405556824 25535 4328 1882250 VIB_20200425 2232861.9628346222 297.781899380757 0.012225630888413568 1.6311141136429217e-06 424042.90769227775 56.57477948091469 31220 1107 None CHESS_20220105 136034468.74262622 2940.6492744093816 2.388407857512329 5.1919069056860384e-05 87932968.41727422 1911.4816781696245 28488 None 55069 SNX_20210422 2436661218.7642794 44970.611667270445 16.031950041193554 0.0002960254808628078 205249912.3836357 3789.882319636489 114929 6068 27259 HC_20190826 107633093.5659317 10661.495500761795 2.4330351837765276 0.000241002026473753 49797868.59749515 4932.681338147191 12942 853 414812 ETH_20210909 413866162089.43915 8929712.398520581 3496.859022996073 0.07570374089749632 34175479497.51584 739867.3003153958 1558161 1093777 4066 ADX_20200612 8576116.813851006 924.8435457112383 0.09289180378335615 9.98961382032222e-06 794239.6454664947 85.4127814925854 None 3751 28242 BLZ_20190221 8819981.966473568 2218.6126865474953 0.04323610774833466 1.0875779285265637e-05 1060543.008438998 266.7731274390309 34742 None 1029822 MTH_20191024 4717723.6577355005 632.1664058705641 0.01357750605762451 1.8186211285550518e-06 276858.4198777675 37.08343563767595 19442 1971 790483 RLC_20210325 135944278.20805636 2571.8098668782627 1.9114557921685074 3.6253512920483884e-05 14977781.043218365 284.07519587700034 36419 4195 371264 ONT_20190524 1314371950.885964 166847.9373571935 1.3139273777993397 0.00016707803578782334 105462862.88617943 13410.57982146283 80731 16171 231698 KNC_20200329 80040029.79818311 12839.335407566994 0.4435512984668381 7.096265655474563e-05 71086139.76016015 11372.89269367349 104514 7262 120611 DUSK_20210428 95153358.27255222 1727.2369839334283 0.26583974139092276 4.82678844957169e-06 10369106.292641407 188.2693769706309 26460 13569 307369 CHZ_20210616 1751085976.392214 43359.653284292384 0.3258898637669916 8.074448518187593e-06 735341346.4914987 18219.271311198543 None None 30309 CDT_20190930 6948177.313900322 861.9871015352076 0.01029849829946826 1.277942642414202e-06 126632.08829396543 15.71380028651113 19630 299 180702 ASR_20210617 7420993.684550373 194.04273622006772 6.0464779592471665 0.00015787604490804459 4737036.920349277 123.68599680817202 1973921 None 118104 NXS_20190205 17939680.26879805 5178.454025981222 0.3004574683618517 8.672981699571849e-05 127372.2108475399 36.767162411962225 20 3504 881147 ATM_20211230 28841703.087913513 645.7254437455765 7.254149767910641 0.00015589526433811888 1589403.5739347355 34.15706846784236 None None 65314 TRX_20190213 1600973134.6363564 440433.2876630996 0.024408676216913845 6.717303052605966e-06 102115104.35919674 28102.22464067479 384254 69943 78009 NAV_20190221 10646282.196478551 2684.329750474999 0.16552501366710895 4.1706250920771774e-05 114163.24111168477 28.764962311424974 47910 11440 768828 QSP_20210107 19995395.00586035 542.8865878382182 0.027786743052300097 7.52836983585855e-07 874448.5058622736 23.691771799790637 58366 8170 263794 STMX_20210104 21224418.33930022 634.313277663367 0.0024753123021471336 7.519699302962695e-08 8691007.431509811 264.02229111889767 21847 152 199234 LUN_20191113 2781874.895490673 316.5010205604256 1.0341787733989096 0.00011750706788708255 121222.67025780017 13.77375064141088 30485 2171 9301508 BLZ_20210508 107843484.23098242 1882.0129583621413 0.3755252975327119 6.551689060651885e-06 24375161.010993402 425.26689093014437 56227 None 200625 ZRX_20200312 143179598.0469645 18051.515860956715 0.2284909210446479 2.878319486831627e-05 43301880.544324875 5454.774571232577 152991 15984 118984 KLAY_20211111 3877558825.479591 59694.884325357605 1.5376825353766512 2.367256957528649e-05 69432689.36708368 1068.9138570718926 None 963 41062 LTC_20190807 5862623011.616675 512839.83791271254 93.47773965446206 0.0081471200642613 3856139294.099019 336084.6114772405 451657 207343 141428 BAND_20200610 31465843.054270547 3219.4167358388754 1.5320154673954176 0.0001568840047200639 6526638.209074395 668.3516983933287 14975 1179 520797 RENBTC_20210310 760946227.1267062 13916.719056217435 54467.35488468774 0.9952148287359266 94889167.43964016 1733.792777752173 57370 4170 64010 NAV_20200526 7780976.692336329 875.5219554397361 0.11317630916019572 1.273649935634905e-05 230266.47422897723 25.913451521509764 48598 13877 1211272 CHR_20201014 13974027.116929833 1223.1735432378966 0.030824162663499494 2.698628670446564e-06 2184432.9295626725 191.24520580622143 29440 None 318616 CDT_20200411 2123941.5500515276 309.78509559612604 0.003149682879285498 4.5922718842948565e-07 636399.4155680041 92.78772674275048 19137 290 258072 FET_20210106 42847804.59251213 1261.0804796176753 0.06238267621321069 1.8301118484375809e-06 5337563.7259386135 156.58736061987463 26552 735 338598 LUN_20190901 2636281.393503271 274.70803447624803 0.9751883930578404 0.00010161740979591592 121465.62397198683 12.657064188976586 30935 2197 1370867 DUSK_20210206 27016510.149974454 712.8177608885605 0.08977045699590044 2.352378635779895e-06 5416237.18394303 141.92910523342988 21639 13368 931184 DIA_20210729 64062277.64245556 1602.0762035824316 1.321113148155804 3.302062213058089e-05 13055954.721338546 326.32764877793073 34077 402 454629 DOCK_20190702 6455924.1418523025 608.1865784794923 0.012507503618996496 1.1794543293313783e-06 1799819.702509026 169.7225285560622 174 15250 279432 SNM_20200701 3802099.9581866604 415.7214136 0.008597397519138777 9.4e-07 47425.02547439606 5.1852347 29340 9599 None MKR_20210428 4070508137.6857157 73881.92443300528 4510.228891970417 0.08184704956671877 410301868.3798791 7445.741261245406 137288 24955 31771 BCD_20210206 150430254.87459797 3969.030672516665 0.798535258399088 2.0925116621170552e-05 10576217.639288433 277.1431632920923 28195 None 1670747 SNT_20190426 79550534.62079363 15325.206594003557 0.022540094855002864 4.340019583851918e-06 16786061.094391063 3232.0997029532123 111416 5760 304200 ARK_20190719 44928731.36262136 4183.571908906958 0.31319991320734947 2.9363037448560874e-05 706519.4125757223 66.23742566576598 63452 21839 182377 ETH_20200321 14451395504.502293 2341956.4246585085 131.96469397290025 0.021320604019202088 16267979993.668526 2628302.686084618 452888 455250 19216 FOR_20211207 40326860.072306834 798.9575715461616 0.07141357162188153 1.4149975382757325e-06 24047590.950215317 476.48200787636137 None None 182672 GRS_20210206 35538334.75987261 937.1020690435021 0.4472580245205697 1.1717232159068177e-05 16195119.601617144 424.2785278574617 37589 106761 3797410 ICX_20210823 966430488.4917076 19589.522610487442 1.485273749286941 3.013877944568726e-05 89501493.43842943 1816.1404738321573 143543 32918 290799 LTC_20210105 10098767862.758522 322785.6818467861 152.06832261948344 0.004860541193846109 10903840533.738314 348518.12114730116 137827 220280 152475 BTG_20200316 115012321.8190869 21282.813357035902 6.515980565203364 0.0012125901982177674 20258232.670234147 3769.9520622149375 74987 None 195914 OMG_20200801 221777641.7538443 19567.763469352853 1.5811488997090817 0.00013949027828739067 44438586.826074965 3920.4092949171886 210 43079 264295 WPR_20190810 3095593.870948103 260.9669460794502 0.005089657741471762 4.290655953697276e-07 111649.99647938211 9.412258082132153 34627 None 1323626 AAVE_20210617 3698030766.1930633 96682.93334860654 289.4965196444316 0.007564054575409642 180493056.55939448 4715.97838887532 238811 11209 14216 REN_20191203 31239598.279092427 4272.877766284468 0.03778656857658476 5.1719606351396785e-06 1433911.3017195931 196.26372772496714 10175 871 377121 WPR_20200422 2888223.5556762894 421.7450809324105 0.004745579368143142 6.932449049555156e-07 96154.83634115537 14.04651470541516 33323 None 1026824 SNGLS_20190522 9544532.035730394 1199.3734936792166 0.016168926149147254 2.0319347797991057e-06 1373637.2021219283 172.62378342699554 0 2179 None ETH_20200621 25501270877.342506 2725551.6394439284 228.8691487972198 0.024461151490275185 5400222130.457475 577166.701184767 461357 466584 17846 SFP_20211125 185984796.32685775 3253.045240634406 1.7215773795378675 3.0101383530495928e-05 118924477.07893264 2079.3670608506523 418169 None 26450 POLY_20200518 16602480.58917496 1704.7718355472161 0.026039270665833357 2.666218725668899e-06 3703781.753173564 379.2384353936397 34705 4985 346394 LOOM_20190302 35455220.54330581 9281.449327816114 0.05251732661238028 1.3735646361387959e-05 2217722.292780052 580.0342688085782 17219 None 434508 MDA_20200403 6443916.874011384 950.2720012341382 0.3298524038967322 4.838598718488365e-05 317265.232309251 46.53957734845125 None 374 1850910 VIBE_20190701 5884782.630521401 542.5757787315277 0.03142864695130432 2.899870102046066e-06 465120.33583450224 42.915896374092 20502 None 1464833 GTO_20210429 53898210.39941514 984.6598533174417 0.08206382118087291 1.4987283648962586e-06 30168356.5834664 550.9635194087722 1950 None 321700 ADA_20190511 1947276773.1495214 305583.8785601751 0.06324257620231455 9.926941096670234e-06 161982471.39610782 25425.75822809989 151217 72987 116208 AMB_20211111 24933561.62569292 384.72712815905265 0.040431475199238155 6.225928392716132e-07 593204.3611174488 9.134586003514778 2081 115 928186 FET_20200410 5630692.836345913 772.5481723764577 0.01654529326750818 2.269136672672064e-06 2711383.522953032 371.85800735813154 16631 367 974663 FLM_20201124 0.0 0.0 0.22381015661884254 1.2190614010608784e-05 9505272.199360767 517.7383645082621 None None 36319 SNGLS_20210401 31410110.82300221 534.0102151881048 0.03526496887852925 6.000075719851679e-07 5507208.608115928 93.70111389445427 9366 2126 932373 DODO_20210704 116185429.1309129 3351.4809331427687 0.8694591790871419 2.507631594124745e-05 19336580.487902403 557.6917389578829 93840 1018 25829 APPC_20200626 4668498.72185583 504.21203691768136 0.04294067518625807 4.6391298820031865e-06 179089.86482059088 19.3481155070192 24461 3199 1685690 KMD_20210809 108141324.68758771 2458.18551197127 0.8499696910920508 1.93208580188309e-05 8470735.301537635 192.55024713390986 114459 9460 251896 HARD_20210131 38195562.8230752 1117.7751508640483 0.7980677689510801 2.335958558407115e-05 18728219.461574517 548.1783156396756 15908 None None ICX_20190811 98657752.09801915 8710.419378698041 0.20147619363121186 1.7795922716614095e-05 12803422.192897297 1130.8964485900665 113992 25996 229714 CELR_20200704 15880348.70897834 1751.0297657991828 0.004123935285498013 4.549307684803178e-07 3432209.3745377394 378.6232179332672 20833 None 735036 MOVR_20211204 680904714.2790724 12681.009899854513 275.53814651996913 0.005135710174447693 55744786.218077846 1039.0178977699034 None 6327 15099 IOTX_20190811 20690935.46476992 1826.7872661102426 0.0050184562174471195 4.431439270033158e-07 668412.2655035324 59.022700081081155 20431 1760 857691 AMB_20200523 1363340.2195904 148.9341183955 0.009429156739529878 1.0300374445604228e-06 411253.32206976146 44.92515424585486 18865 5453 931435 XZC_20200607 49703311.72808047 5138.994702101781 4.835661234980054 0.0004999754866169593 23674861.249503434 2447.8245473823595 63537 4117 211227 POLS_20210620 95922644.95401911 2696.1368065005095 1.372383331064099 3.854617939718889e-05 43161345.4272715 1212.2742430671074 378723 None 13861 DLT_20190615 9431495.790139401 1084.487536541401 0.11720032072555621 1.3504522872653059e-05 1234660.069876711 142.2649276928618 15056 2675 2533353 SNT_20210202 201181740.75513124 6030.207623305238 0.051792002246602555 1.5505998101194267e-06 36040597.011502616 1079.0187762299274 117766 5706 152018 LSK_20200607 186062909.83921653 19237.678027421494 1.3285092705392667 0.00013735909873259584 8056474.268493899 832.9863170871737 175116 31214 201752 POLS_20211111 238046479.17550015 3670.7653824027248 2.9393132716922086 4.5260461563138496e-05 30628115.65224407 471.6212676546966 None None 14809 PPT_20200316 7431365.96040907 1375.1602630194761 0.20506028057082157 3.8160654989032034e-05 1181428.8771683183 219.85778840348863 None None 1049662 DGB_20210421 1835920840.150703 32496.750495680368 0.12850914225752422 2.279180318853588e-06 205134178.44911286 3638.16748001089 204404 33467 307288 DLT_20210620 6781181.010107932 190.25309103353953 0.08259620572778908 2.3198825659314107e-06 696102.0655609791 19.551443456444908 15120 2600 None SXP_20210724 137166876.05015233 4102.90560438441 1.5881142540615214 4.749314378042091e-05 131036279.0396401 3918.6883594584874 272965 None 69993 WPR_20200423 3014125.0069976817 423.7741579922795 0.004953853771433411 6.967433066132396e-07 70914.6251504811 9.973909746691591 33319 None 1026824 TFUEL_20200129 0.0 0.0 0.002674291858644013 2.866561900144524e-07 463301.45025742555 49.661082476728524 68454 4018 536421 SNT_20190702 97182382.87289509 9158.348356259294 0.027588974289380234 2.5990641469279945e-06 21960902.940408006 2068.8625415317038 111642 5744 317609 YOYO_20210826 4031311.724245308 82.22222853288726 0.023041901512178446 4.7013973761293834e-07 1308945.0894840932 26.70730541029968 None None 1795501 ARPA_20200223 0.0 0.0 0.012303957784447777 1.274647250231762e-06 3611825.5195390256 374.1725668643417 12323 None 2586672 DOT_20210902 33822604572.48581 695434.0356026164 32.97277073071684 0.0006777145074415008 3159549414.572988 64940.62912461414 578142 29168 29086 WPR_20190723 4403261.742960986 425.47419913971413 0.007237695354751264 6.995373026950762e-07 105236.70742902017 10.171332012624845 34720 None 1469795 ZRX_20200308 164026890.3994745 18453.58945452025 0.2617875263152222 2.941290155870775e-05 54560455.598907076 6130.09081111282 153025 15991 118984 GVT_20210422 39893112.42028852 736.0731340165567 9.625286702043299 0.00017785468610144957 64153.461716965205 1.185418590551702 24961 5595 213426 COS_20200107 12164557.203163829 1568.179768029084 0.00932581426254204 1.2027846711453844e-06 4672415.672546554 602.6186872208375 9623 None 212925 EPS_20210809 173712524.16394174 3948.6996426332216 0.5880175955662454 1.3367541499729236e-05 27602026.707246415 627.4833274851948 19358 None 26035 AION_20210430 159050957.09847692 2967.685510695456 0.32299393249542757 6.026649766814925e-06 9902329.791076418 184.76468912356427 72712 73153 244178 DCR_20190613 279749400.5040245 34439.47189825135 28.20890061523867 0.0034704589266923666 13312007.91908934 1637.737583082062 40439 9489 369344 ZEN_20190704 64085649.81143667 5340.367990348551 9.415550495795172 0.0007846141004609365 784732.679772517 65.39313085485342 26155 1696 233714 REQ_20191113 11249789.836884696 1278.2411050012129 0.01464774033143926 1.6643283171070017e-06 190726.72821190336 21.67104873581899 40445 28966 1173311 MIR_20210819 344983787.7125527 7657.720154146384 4.440011222216514 9.858614602982485e-05 151320342.07792467 3359.92153955188 55418 None 15309 LINK_20190528 437678081.3106243 49628.264867079124 1.201355430520688 0.00013624325454406058 65502128.52510324 7428.462004750336 13436 7058 356861 FET_20210805 274143742.45057863 6886.2834640701285 0.3977862284225131 1.0003217198096398e-05 23169441.653346203 582.6470115271757 70077 3236 157156 LRC_20210909 546141282.1144505 11783.723882184426 0.4368479271131073 9.435786887625204e-06 171263106.92362845 3699.2327955479027 91791 11696 326461 WTC_20210401 57355969.59801467 975.1214772833036 1.9617806022028592 3.338540247577715e-05 38960974.03503227 663.0342850506751 57842 19292 410990 LTC_20190213 2668109093.825946 734006.1082939352 44.08551818089902 0.012132398464406 1073431816.3164485 295409.99079295935 436920 199748 253204 NANO_20211225 486700159.18082225 9571.14955510819 3.6525809012695194 7.182943627350257e-05 16027483.117591405 315.18674283697163 146364 119274 64172 IOST_20210221 764779306.0108529 13687.673133169053 0.04192144197337902 7.456246301063291e-07 427479039.0631589 7603.242764933579 209287 52514 193443 BTCST_20211002 119280890.3964751 2476.764807469858 16.41249434646521 0.0003407393757477009 3948506.9907712424 81.97485274141708 None None 2853213 EPS_20210702 84614126.73830722 2518.2255587926597 0.3844045553719121 1.1431556381598248e-05 4915879.219168874 146.190126193188 17796 None 20273 MITH_20210106 5864758.217681939 172.34888358561386 0.009492114860268271 2.7846884627287963e-07 4695698.96269294 137.75706381927458 23917 2118 507648 ADA_20211002 71980741780.63368 1494815.9153242663 2.2467692592328996 4.665051979134658e-05 2511823046.243126 52153.93180656775 635137 625905 6972 LIT_20210826 152397211.97375423 3109.1357230603985 5.492792873144843 0.00011207322445925988 31726442.472712554 647.3363898213657 None None 606433 ICX_20190207 87582696.29654725 25716.241962714124 0.18500519445516259 5.43216702173566e-05 5219965.378831696 1532.6987909176598 111522 23466 236069 VIBE_20190426 7802349.32770718 1502.0781567416752 0.038390648934893336 7.386077480052271e-06 4375661.547300012 841.84498338783 20757 None 1228963 BEAM_20210624 37984249.246688485 1126.6480150790912 0.4191571526449672 1.243734705454942e-05 5756286.971158162 170.80214032877433 21327 2483 161429 ZEC_20190401 364166696.38589185 88744.819600589 58.63074868973025 0.014284145849986095 110890126.29078652 27016.041457072854 74436 15085 156086 LTC_20210219 15121894587.44878 292455.43548412336 227.34031738197106 0.004396731582709717 9316829643.427412 180186.24947706694 144167 261536 93783 SAND_20210201 54455839.00205255 1647.258823332987 0.08293522390755184 2.501667901182747e-06 19575204.411511306 590.4687806710028 None None 48574 THETA_20190227 86158997.9042112 22621.063584397216 0.12343253710958063 3.2397620003191875e-05 33463447.320917286 8783.22746730415 None 3854 509909 UNI_20210603 14403678265.638166 382741.6786334866 27.733691070025866 0.0007365098495773614 613791896.4466391 16300.16632774499 None 45590 1357 ADX_20210718 41171240.43508524 1302.5510276489597 0.33303323256735434 1.0546034542208078e-05 11163517.479196943 353.5107894205247 59218 3878 13599 SXP_20210310 261557355.15508404 4785.37270260102 3.000033101327182 5.47917422070418e-05 351463852.53008133 6419.0347747839005 119491 None 107047 BNT_20200526 31073412.862803124 3496.419715775017 0.44460396339144037 5.0005565947717516e-05 19095957.974739194 2147.7635479374744 730 5022 143192 QKC_20200107 10567713.028012685 1360.8930895783656 0.002831351886327894 3.651698984797799e-07 1837887.6674709786 237.03915298852152 50987 9207 296858 AION_20190605 62172535.28951967 8107.090062382325 0.19565129245931587 2.5470619433271903e-05 3885644.1384370495 505.8477348103067 68922 72572 268953 EPS_20210523 117914069.36709583 3120.441690749851 0.7710752404830961 2.0515279532229597e-05 8278473.2091137 220.25761309445724 15765 None 26202 ASR_20210725 8010176.822797838 234.45138110519744 6.495208428176288 0.00019010948450201047 6268462.935938256 183.47282778510964 1991114 None 109290 EOS_20211216 3295884827.030948 67557.46431569268 3.3803201546418733 6.917056327658671e-05 1266246556.8284254 25910.855651523343 258569 96347 62923 RDN_20210204 17343322.011662927 462.9143808885287 0.2606763716078163 6.949522566564656e-06 1057744.329441178 28.19901950364133 26890 4385 1282732 SNT_20190228 70672386.97248313 18492.01574509755 0.020142289260678563 5.280116241730572e-06 13289222.768324556 3483.647765698025 109707 5759 300242 BAND_20200713 41485978.15806801 4471.435525995446 2.0385713983240854 0.00021940644737334928 9267977.843488859 997.4897590766323 16650 1291 430099 HC_20200410 49944194.17141968 6852.817840990519 1.117141509263622 0.00015321256179921922 22798814.355019182 3126.788078638131 12688 842 1040016 LOOM_20210110 39723956.73255147 982.0968260179253 0.04750341425986161 1.1792327772272745e-06 18131398.968485948 450.0969097433821 None None 358251 WNXM_20210427 174370581.639334 3235.8070875143644 84.68938312742864 0.0015710534057423343 85971771.87412556 1594.842706521068 None None 101327 MDT_20220115 50252318.25855487 1165.1536229806302 0.08288088819247924 1.921681834785403e-06 10484534.344922166 243.0951168142629 43474 971 270296 GXS_20190908 48617756.54226314 4643.771525606547 0.747919789647296 7.144439755663185e-05 2499110.2252620384 238.7253645951316 None None 606832 EVX_20200107 5494139.430969585 707.8553691369646 0.2516307461601915 3.245374567301911e-05 1289110.2859124474 166.26130948577273 17939 2887 801156 RVN_20210117 128770708.28919478 3548.802684497892 0.016215788404733426 4.4808019640837554e-07 14971061.115229623 413.68546736807036 None 10929 190837 EGLD_20211230 4783553217.460983 103139.63083532472 237.0972242443169 0.005094925934648122 137818893.27277982 2961.557461745857 None 14208 13960 STPT_20201201 16508869.349823821 838.6326651183947 0.018004897719384 9.171526166186311e-07 46718389.5478477 2379.7909816442425 None None 2094498 RVN_20210310 1458514915.0152018 26684.53906223301 0.17594723603281462 3.213449743100062e-06 672536689.090658 12283.016769758628 49624 24461 66527 AST_20200721 11428152.57557174 1247.7864978987125 0.06634154249918421 7.243522558248156e-06 4392343.045580621 479.57938172177523 32300 3459 221691 FUN_20200320 10945585.314228157 1768.58321443289 0.0018037921013051 2.9220566832308537e-07 391579.4608486274 63.43399440327901 34839 16987 317174 ZEC_20190821 376156001.7765803 34989.124508346285 52.04864455940156 0.004842604775668555 157233134.61615387 14628.967479000152 104 15346 180529 AXS_20210114 27873289.931572735 748.5061357922768 0.5047511187952343 1.3538675731481566e-05 5575325.550482938 149.54404639180987 None None 19930 ANT_20201106 98781097.49776721 6357.10701605384 2.86379163713076 0.00018380464642450516 15456835.759960314 992.054797166597 75984 2680 88637 GVT_20191213 4590819.67336571 636.9898994441575 1.0365528032621179 0.00014396693220055447 380404.7598482439 52.83445869567677 20929 5650 139104 POWR_20220105 266996232.58656394 5764.2215326658625 0.63182124170575 1.3731989381441589e-05 448611047.5457999 9750.102932065205 104368 15759 183973 ONE_20201015 39186268.78522389 3433.013554046587 0.00542632333948643 4.7480926513089527e-07 4021289.4384067534 351.867252221142 79302 1500 118016 PIVX_20190314 50836929.413093135 13148.397210122388 0.8559001423304989 0.0002214033370768842 9144466.940267978 2365.480967034103 61045 8597 184646 DCR_20210916 1933243734.7627683 40115.07559498121 145.10539567192887 0.003010604679278827 12815351.163451388 265.8891904096983 48366 11725 195580 LUN_20190629 5495002.900759887 442.7059524140933 2.034507833790414 0.00016423849520832095 462487.15925078146 37.33492387050907 31325 2223 2294680 VIB_20200301 3232444.443005776 376.92859381864565 0.01765049116225751 2.063682974821113e-06 534672.502214401 62.513531764163 31545 1109 None KMD_20190103 87263069.99047588 22533.32036327062 0.7837354886320713 0.00020244467157124978 794040.2124312127 205.10645792060947 94757 8211 229126 DCR_20210708 1796303397.1719851 52867.650737111435 137.39966670699528 0.004043954974768441 77692324.4620334 2286.6450082412616 47130 11376 133920 SNX_20201115 568152883.515555 35305.539281928264 4.310384350585232 0.00026795773111511326 66794377.3058671 4152.314118275066 None 2507 34400 SUSD_20210710 267813017.3990117 7879.959848910689 1.0032084037069362 2.957865365611564e-05 102241721.31233005 3014.5007285903366 140873 7141 47664 TCT_20210809 16425438.53972432 372.5470523891157 0.028256769144163318 6.42367740406023e-07 8910902.960771883 202.57364069772754 None None 566218 NULS_20210107 25432892.79136414 693.8801607750316 0.2573495485094504 6.972534698068015e-06 18606993.02288914 504.13107475896646 34918 5106 933536 REP_20210509 302415364.3068734 5148.152984267873 47.09425157229675 0.0008017066604055178 39223624.49779041 667.721430010402 148624 11069 144608 RLC_20200310 33206681.433376335 4194.224989661494 0.46762680652487854 5.9005210158082534e-05 1061448.3219617817 133.93368480035352 28446 3566 249120 WBTC_20201031 1590056157.7656052 117073.75486293982 13549.890331301793 0.9983966121168396 87909754.63415003 6477.45472861888 None None 171459 MTL_20200506 19012463.619866673 2120.072075676171 0.29464164989492053 3.283877361034124e-05 2779232.050552983 309.75448362871543 35424 None 463279 MDT_20210206 19491594.46860414 513.758223266224 0.03211907845905501 8.416603468050707e-07 7955057.144843698 208.4572931916021 13904 76 1222000 LINA_20210708 142205723.45587084 4185.254537095773 0.03818067362043231 1.123735804662593e-06 61136983.52269601 1799.3872516894214 None None 80589 GO_20190419 20216367.5893574 3834.1917594196825 0.028616569666489445 5.42652331853296e-06 1313800.3185902222 249.13426549075513 9383 650 898159 LRC_20200314 33800997.08600346 6139.482400318218 0.030029336840638306 5.397989791583476e-06 3342008.876153733 600.7501894762372 34338 6821 607711 WTC_20190702 41683914.11200354 3928.240849881402 1.4311914535665524 0.00013482771614986886 4211817.277337702 396.781089580196 55671 20085 771082 ATOM_20210108 1481350944.2383695 37844.99390644614 6.275750203414635 0.00015898665125289814 525036158.998559 13300.99796840974 47602 10078 104708 ONG_20211221 0.0 0.0 0.751949653503914 1.5953859929592135e-05 6323775.660549206 134.16939637440882 180904 21030 97967 ONG_20190509 0.0 0.0 0.38476389219182666 6.459233505350594e-05 3722017.1477003023 624.8345636323186 78725 15085 249396 TFUEL_20190613 0.0 0.0 0.013587496656813188 1.6701923742484286e-06 5975543.95777954 734.5214650165326 70177 3999 222751 RAMP_20210603 77389411.46916921 2056.6438846270576 0.2731055093632572 7.260618988801771e-06 13257454.438104415 352.45471854778117 28249 None 97313 LTC_20191118 3767598811.138623 443277.9093558947 59.24446830039255 0.006962080935098562 2256114619.6688185 265126.0620882195 450239 209648 165449 ARDR_20200107 40319212.55034996 5192.0900122000185 0.04030583837153293 5.19718367715726e-06 1984169.8274402388 255.84618647117725 65407 6438 1520323 NEAR_20201031 0.0 0.0 0.630716415125067 4.651796235579046e-05 11040183.67624694 814.2595251002473 32560 None None DREP_20210909 0.0 0.0 0.6825217920713943 1.474994613987581e-05 2225508.4203865277 48.095357123934356 4124 None 259901 THETA_20210902 7085024938.95125 145649.9785786247 7.093156931986336 0.000145729447959405 323407290.50037503 6644.427349144877 192436 23186 22308 RCN_20210725 5845471.21594315 171.12825461078748 0.011013649153884416 3.2230975112620487e-07 468893.05813889555 13.72195561724887 20051 575 2225791 RCN_20201201 21612413.43099143 1099.938051141172 0.04200848291732609 2.137028174600086e-06 329976.00302179134 16.78632424758786 None 1130 2235561 IOST_20191030 67236639.69355452 7144.860269850305 0.005594154635059384 5.94564282753505e-07 40985292.388662726 4356.045294098178 195326 51932 92692 WTC_20200523 8530869.677037101 931.9299293305841 0.2923322008365002 3.193425684080483e-05 8480725.266391426 926.4311563292958 54296 19627 960738 DYDX_20211207 610841480.9675792 12104.489149088977 9.199188042949851 0.00018216929850452723 297704382.20584375 5895.3679623633125 None 2455 12183 RDN_20191019 7761588.540345063 975.2497961945318 0.15340946578567297 1.927602184322156e-05 1241405.4652698669 155.9835877289872 25456 4375 2691065 BLZ_20200403 3073880.77982975 453.2611537313243 0.014136521284424447 2.0741293213480053e-06 414502.21413679596 60.81631957446603 35981 None 583027 LTO_20201015 16256608.24603413 1424.5087868325431 0.06679047967485092 5.852132251620231e-06 1792530.8793931303 157.06022508581609 18133 556 1676975 MANA_20200502 44788174.627136536 5054.224898605406 0.033816125628252355 3.829019279261475e-06 28458161.789252643 3222.3339640172167 48273 6838 47656 QTUM_20211007 1379942770.9617958 24859.708359114276 13.298279654244235 0.00023971749722408335 358901878.05863136 6469.638343767241 257336 17133 171848 BZRX_20210718 24961619.691628538 789.7836334704373 0.1774058619278439 5.617842800426389e-06 7458684.922613672 236.1912900611859 None None 119612 CVC_20210930 267309573.87484822 6434.775991041793 0.39738206421163846 9.560133385936155e-06 26544980.256417252 638.6135028057921 107191 10062 165019 DGD_20190228 31275750.605599377 8193.25605241555 15.620150389797475 0.004096924874170537 383378.760299999 100.55434423522824 16048 3295 571797 ONT_20190430 641849996.4368795 123299.71654528879 1.0437547782090484 0.0002004577146149165 68285523.46190225 13114.536345350853 77123 13856 265242 HOT_20200217 148904040.80045465 14937.193168524002 0.0008386444666859577 8.429912429796128e-08 14821425.601503594 1489.8246499991574 25123 6882 508019 FUN_20191108 22698001.42941064 2461.894112157851 0.003777284724905765 4.0969576344020647e-07 389001.15238488757 42.192245412323956 None 17289 391178 COTI_20211207 312922294.71834064 6199.588996590401 0.36128222610133115 7.15308709838845e-06 62747495.45980893 1242.3481361739023 205261 9604 57032 CDT_20190622 9914726.556857498 977.3623077426813 0.01469764675448227 1.4488474158081598e-06 1513100.8637664767 149.15668562088646 19721 295 372453 OMG_20190909 151199447.7283947 14556.401587359618 1.0776047783829348 0.00010368407829742973 59200427.8950816 5696.097422958671 None 41394 None TROY_20200725 12661073.000806741 1327.7352615351872 0.006659999310379401 6.982053986984835e-07 11136257.186307268 1167.4768309145031 9311 None 599996 KMD_20200317 32411530.664778505 6421.352245091917 0.2729595318701501 5.420425181728789e-05 1669655.43648559 331.5598583691214 99910 8402 161250 CHZ_20201018 56701906.449066594 4990.1029179483785 0.010609846334411515 9.335805291303251e-07 3701500.9133496364 325.7020952370849 44378 None 327807 DLT_20210418 19084394.620640974 315.1128719392288 0.22818037730728105 3.785164372732437e-06 824893.6594385419 13.68372744337653 15088 2570 4793076 SXP_20210509 418768429.8470949 7141.239942973557 4.852600288637565 8.260800080269212e-05 348750224.71093565 5936.932186711944 224177 None 60637 BLZ_20200330 2463387.744570761 416.5900073693245 0.01123783965519874 1.9014729847855171e-06 1015637.4527407885 171.8486148562896 35986 None 563457 BNB_20190819 4336728965.90683 420307.0711848396 27.882349332577377 0.0027023013607394395 202612799.9657699 19636.826098115464 None 55644 879 ANT_20210707 142848042.66716823 4182.000994588023 4.0609069758946745 0.00011890758423534086 30801692.977077708 901.9056393075989 85366 3043 102952 TUSD_20190314 198968385.47323966 51460.92406960198 1.0020085643081473 0.00025919731341901553 49263217.03527054 12743.297772845375 8332 None 284347 WRX_20210602 806833198.1086622 21989.32004095154 1.8372945308492747 5.008720620398237e-05 345131802.42833424 9408.773316159302 247240 None None BNB_20210930 56833140653.68402 1368371.1566410223 368.21137136727407 0.00885433902769492 2218687351.957908 53352.534816473664 5166589 648587 145 WNXM_20210128 67419785.69036847 2226.1883233096055 40.221759881313005 0.0013230440793362355 26098567.04965005 858.4794577882623 19385 None 131837 QSP_20200901 35920786.77868967 3073.271239001405 0.05028688426658161 4.305761889540552e-06 928896.1510435052 79.53576175651007 56475 8223 237034 BAT_20200309 281703782.3953791 34986.440333320585 0.19462013844701848 2.4192726720961967e-05 67337010.7367428 8370.489878178674 111365 35511 21544 MIR_20210704 298278770.6077194 8604.058860389725 3.837486621414964 0.00011059397531524284 18150688.302438263 523.0915367554736 48727 None 16054 ETH_20200418 18844786940.26037 2676555.2575013316 170.445890477055 0.024208702689081957 15220772945.895311 2161830.74824444 453477 457874 21984 SNM_20201018 4125804.743740701 363.20923504 0.009428223753527778 8.3e-07 55800.60309638514 4.91232514 29036 9552 None GXS_20210429 60930098.0950999 1113.1245547549652 0.873021068693231 1.5943949720776004e-05 12229673.193188192 223.3500444446107 None None 582398 LINK_20190325 165681032.76269528 41487.4279947174 0.45463306590861136 0.00011385093213896952 4782577.690532415 1197.6711966736027 10800 6506 307556 VITE_20200730 12495696.187001558 1125.3410201793035 0.023838558331237377 2.1493173987728546e-06 7038492.108032071 634.6001859137392 None None 536085 VIA_20190411 13975952.190556925 2631.87966292826 0.6033994226416154 0.0001136174013102858 316789.7767804752 59.65009220905534 41267 2235 2242748 YGG_20211207 524488140.3939283 10391.182705584855 5.976740912756022 0.00011833449094574208 75398561.25044248 1492.8286994287987 None None 44049 REP_20190507 228285713.00316375 39902.33422617455 20.74985602885108 0.0036273210646280882 60214642.54000461 10526.234060646786 125298 9940 267119 XLM_20210111 6378680428.862663 165844.37408855185 0.28948371675201234 7.5265168633201595e-06 1920775765.006056 49939.77329080381 321334 119395 34006 GALA_20210930 623455964.7718034 15006.302705655518 0.0829552185799038 1.9957190475033586e-06 148758610.48826593 3578.803088145748 None None 15016 XMR_20200318 644391606.5793936 118623.00052020728 36.46182692634435 0.006778999763817093 138723008.11725008 25791.445973415448 320406 166912 83083 TCT_20201031 3915409.8392988197 288.29088111839553 0.0067621931388942265 4.982586984305949e-07 388720.15884920314 28.64206869335437 None None 556734 ADX_20190430 12413634.532739935 2385.0899066376996 0.13488685580000817 2.5916296137449707e-05 601036.4704585917 115.4792960769085 54711 3916 1048935 XMR_20210219 4675649078.108148 90437.30334953191 262.0430616849388 0.005068487276172947 920455394.3127444 17803.625191832514 354591 199032 51844 MANA_20201111 115674160.23030452 7562.587633339043 0.08707787629297814 5.700232368554525e-06 94479684.84624158 6184.764496545321 53837 7487 81691 CND_20190131 16373007.054610172 4734.308802108626 0.009941448458722156 2.8746024958552214e-06 209690.15817437845 60.63259841331244 36983 6259 560365 EOS_20200903 2923162749.152642 256583.84969545208 3.0994266179172802 0.00027205560610824665 2530515401.3046517 222118.79361441414 191055 72608 82491 MKR_20200913 462282777.831493 44314.849017126755 514.1707381443863 0.04924124867304777 54023103.711969174 5173.699875592518 58136 16346 27612 RSR_20211021 472597523.01463354 7129.984123513193 0.03569308900634522 5.406253523316714e-07 50258281.117577195 761.2370263594764 None None 110679 NEBL_20190225 16149164.116687197 4297.209654036917 1.0826437346510194 0.0002885716768063018 116988.54298083234 31.182538571644713 39654 6169 501416 STRAX_20201129 76336449.43893148 4312.371307493063 0.7598220388406008 4.289854378010764e-05 37848232.83349426 2136.8609887715756 129129 10274 361194 HOT_20200308 113019428.77673298 12714.0984024737 0.0006347706835860741 7.13190880079957e-08 8385642.03785042 942.1612528202194 25145 6921 537857 DUSK_20210408 128763719.84132756 2285.9759213391285 0.35807644744076955 6.372257781909854e-06 14829778.529637326 263.9078116276064 None 13520 306445 BCPT_20200801 2799976.010508148 247.0500222256835 0.024108201360902064 2.126845686360986e-06 197593.75276024788 17.431886121192065 10497 3176 1744286 POE_20200621 6122632.0205403 654.4576981225684 0.0024330815796484565 2.599470973395544e-07 1323147.6593413723 141.3632803249904 None 10283 752325 POND_20210819 67069585.2992748 1488.765946023059 0.08533852580861247 1.8948592573912155e-06 16325066.765068388 362.4822856290497 20179 605 209753 WPR_20210125 7420818.476778921 230.71284374274967 0.012226693978166529 3.7896043747012896e-07 402555.98986011714 12.47702725659345 32541 None 7520139 ALGO_20201226 248884836.8377368 10078.30477041151 0.3093894857727758 1.2530582291904343e-05 110294505.64469622 4467.037319880977 32410 1596 423509 BCPT_20190122 2743733.73451477 776.8660410745879 0.03270001929822288 9.260149363291527e-06 1608112.267626539 455.39299703020293 9960 1328 1188589 LOOM_20200313 7927732.4441960985 1651.7192198574878 0.009684532361481646 2.0209484106699307e-06 14416268.060601309 3008.357341108268 21600 None 487535 SFP_20210624 80012037.27700028 2373.397684303185 0.7403987909784855 2.1969317865769658e-05 8046561.4878388895 238.7597997278872 None None 20824 TNB_20201129 8330078.017246611 470.5983924751072 0.0024140506494433767 1.3639185103173005e-07 334137.80225001293 18.878507523883833 15736 1420 1233768 DOCK_20210624 38331515.13179957 1137.007738661462 0.06838410179343138 2.0291119969004626e-06 24676755.76687325 732.2155275563601 49912 15100 242145 STMX_20200704 0.0 0.0 0.0019090744119242087 2.1061856516802045e-07 841135.8878089226 92.79828627689845 19574 69 256849 THETA_20210508 11543062433.31736 201436.7405950756 11.550891316518616 0.00020152530009678396 757249185.2156878 13211.523259715947 154180 16185 19506 THETA_20220105 4831051040.833882 104304.3922193253 4.768780076291545 0.00010364456439177954 179917538.42645532 3910.3239399440863 236217 27106 29092 FTM_20190813 39829061.706596 3499.625392878306 0.019256860380466142 1.6918351136300085e-06 6444225.9882743005 566.165386865914 18298 2072 402967 ZEN_20210219 869193073.8735838 16816.430716845218 81.3988264404576 0.0015744317497133802 139039334.54938853 2689.325538786566 87163 6690 515975 MANA_20210826 1254046783.3081596 25583.937236021135 0.9470143497163521 1.9322584017469834e-05 285079475.6186737 5816.672282682889 None 35921 19080 BAT_20190703 407226996.8435564 37688.385184285326 0.32020232235314283 2.9606810759715495e-05 55383984.13066062 5120.959539659819 None 28378 46382 ARDR_20200422 32578414.28271512 4757.175372145339 0.032603401899608864 4.762778261142987e-06 2568291.3148666574 375.18177030710405 63850 6352 1277377 ONG_20200410 0.0 0.0 0.09013925191689287 1.2360022895147206e-05 12784317.384969512 1753.0038492302858 84077 16504 252464 CND_20200217 15332526.293556722 1538.077757501 0.00809124366364687 8.133181370911917e-07 342858.29742486106 34.46353655133427 35109 5992 388652 TORN_20210813 55407624.03220658 1246.2963644872334 53.58192119247983 0.0012052304127968512 14693448.590025662 330.503100961064 22715 None 138254 NAS_20200418 12379753.189739563 1748.71941671054 0.27154167232353704 3.849278106349409e-05 5351693.534800941 758.6370290471004 23479 4954 1034510 BTG_20210220 495345688.1272463 8867.62853091135 28.265544190548802 0.0005058644064421248 76973207.70430265 1377.5785021079912 84772 None 210051 BNT_20201106 37380754.64453525 2405.6571918684494 0.5594273902762761 3.5905319485091996e-05 27331773.740333285 1754.215265999519 None 5233 80546 MTH_20210616 9085727.824051203 225.11715718403096 0.026156174728311034 6.477590210108254e-07 199659.91677222052 4.944588173418571 21706 2057 537321 BEAM_20210218 57008521.77869882 1092.3241229349348 0.6991893476770997 1.3409715106512224e-05 15054844.728891602 288.7360619235958 16557 1774 251636 REQ_20190608 17504664.73067488 2176.8639779050463 0.02400447623674283 2.9899717003138833e-06 494678.77692999004 61.61665554287679 41720 30017 442629 DOGE_20201208 426848799.2965397 22223.538393184273 0.0033380117038732133 1.7383589080637136e-07 66960746.87020189 3487.160056309861 None 169574 135667 ALGO_20191102 119422060.72204582 12910.045201146908 0.25892361180837253 2.7990770816377525e-05 146481638.56908152 15835.303491089438 None 670 351418 BTG_20190701 461579569.01735973 42539.8885565571 26.419432279453947 0.002435030910591072 13570912.220145628 1250.8062395675265 74532 None 363617 PERL_20200129 9512586.63140795 1018.2920760446731 0.03659251812989847 3.922874711596628e-06 5053668.47212071 541.7749109175752 10957 414 1152093 FUN_20210703 174607323.8394687 5165.918074719946 0.01678705074412502 4.958058738840428e-07 2007278.547477551 59.285011377540364 4572 326 110414 ENG_20190819 31048507.34588291 3008.5806733772047 0.39588545933083497 3.837875079323597e-05 522387.7206136092 50.642395860571405 61608 3479 308569 AE_20190522 144383569.25449267 18143.354251247398 0.542645248834825 6.81924763674622e-05 45807534.68796251 5756.484984191607 996 6352 408857 POE_20200223 5090836.843247747 527.3929980340487 0.002022465430076919 2.0951787862714377e-07 99863.73719267035 10.34541211791745 None 10473 701965 GAS_20200621 24643403.121703316 2634.171844205203 1.768181931957976 0.00018890561859030957 16417364.5708746 1753.9668027539867 319781 99662 217061 GHST_20210909 96104800.17948604 2074.4197364430183 1.73465814433767 3.746810630651279e-05 36248175.65095957 782.9499450024908 None None 49617 SC_20200530 103571574.38097082 10989.333571315377 0.0024317705274596547 2.581990305801784e-07 4986576.754688108 529.4616697732318 106455 30046 169173 ATM_20210704 16019370.452430699 462.92375946088333 8.486352552539966 0.00024492859160974123 3463339.74936552 99.95706893231103 5001234 None 121547 RCN_20200329 26370989.34946979 4228.502792995663 0.05140734950429002 8.22245635084499e-06 1859278.1294735125 297.386140524535 None 1133 875851 TROY_20200807 12800282.74648246 1088.0126165570662 0.00674279727685456 5.725327295112024e-07 4705390.481804806 399.5359708071268 9462 None 529032 ICX_20200316 100007027.7215182 18506.111968915695 0.18934276196273506 3.505949733676629e-05 9773886.012490045 1809.7735929942396 112682 27525 126672 MANA_20210310 724138182.0224426 13249.467347345768 0.5477255058947631 1.0003501196680447e-05 872407262.4502479 15933.395469062834 77673 15464 31249 SNM_20210711 68612035.05320251 2039.22293408 0.15679113744970294 4.66e-06 47427.40898564393 1.40959323 32403 9715 None GALA_20211230 3346954199.072029 72164.6869642764 0.44906892181957986 9.64993539471135e-06 509234222.1274876 10942.813242107739 None None 3466 OMG_20190614 294410719.8214104 35805.34479020536 2.1013328582300788 0.00025541603566419584 188048096.35111958 22857.159015091525 289401 39656 None POA_20201229 5141000.591049495 189.57673498299496 0.018186957948181853 6.7e-07 162266.76821460636 5.97784055 18146 None 194086 ARK_20210723 140935184.81078053 4357.664436814909 0.8885754794495998 2.7447594594383444e-05 910142.0275115884 28.11377308084406 73115 23423 125873 SYS_20210218 93606881.76406732 1794.849418582578 0.15428354689999205 2.958283934169118e-06 7568939.470696011 145.12935750286198 61293 4598 261910 KMD_20200526 72533222.52063434 8152.693063325134 0.6041612626365689 6.798072671075995e-05 5420139.933383458 609.8786438862869 99699 8373 191330 SUPER_20210527 98129140.35260876 2504.6058726550955 0.9518535419212347 2.4296888096092532e-05 17953005.157254416 458.2660441793871 118892 None 137929 CITY_20211216 36118973.38358696 740.3896777566739 9.501874141409376 0.00019443424186965874 3032592.293012197 62.05510351078357 272041 None 37465 CND_20210610 34520483.7339475 925.581960561159 0.018336295683926595 4.895060138255766e-07 514757.95085317484 13.741985674240638 35909 6247 118506 ZEC_20210603 1838032984.6836557 48873.63020819709 164.70423846478604 0.004379515553599326 1222644161.0156715 32510.3298469781 75826 19803 87185 1INCH_20211202 667555663.2543817 11679.323939409009 3.69030195580822 6.453536298471449e-05 495261958.9528481 8661.055565720715 None None 3880 CTSI_20201106 5943332.604522658 382.36582463509995 0.02997643293899495 1.9297809188121095e-06 1655393.3050645343 106.56859739596351 17500 150 428583 ZIL_20200610 259399122.00624812 26541.85939880428 0.02443048745114944 2.5006309381171273e-06 100902616.45643727 10328.087188291525 78391 11139 123931 PHA_20210828 148548262.94547033 3028.8334159530577 0.8185407877405295 1.66918221159425e-05 9395234.626271928 191.589212740595 108064 None 161711 EOS_20211221 3145126522.550042 66664.15039553012 3.2101179846539374 6.808746807885001e-05 967297354.9116881 20516.637734237564 259187 96433 62923 MDA_20210703 11312662.990707306 334.7694033360318 0.5767477145511886 1.7054351474382127e-05 1249892.0134195548 36.95913683588311 None 389 1489514 NULS_20190530 56071371.171081185 6493.147345253293 0.7849516948602281 9.077076419195048e-05 6369064.4922282575 736.5100998352764 20861 5315 698282 LOOM_20200308 19746546.354713123 2221.6127761521466 0.023685318934046573 2.664585008133594e-06 16058297.251159282 1806.5493747726196 21566 None 487535 GAS_20200305 24147839.74988318 2758.4424137456913 1.7334495368894722 0.00019793983243271505 4933947.127657782 563.399537683068 322769 98956 240012 WAVES_20190629 200352891.8633085 16173.76788810882 2.0042757603487527 0.0001619422251084594 26381653.672239475 2131.594754695741 142252 56860 49915 ONT_20190325 761979986.5162956 190952.9623245079 1.2430963999885196 0.00031152384379787355 66267678.47361876 16606.887380458968 72102 11298 260077 HIVE_20210823 190530747.5327943 3862.1031808779962 0.5108072056437063 1.0366715931846461e-05 27283311.83724903 553.7086015462896 None 177 87293 WAN_20190730 31167271.446473077 3274.932908929108 0.29334204404002523 3.083164791436302e-05 3034169.771429436 318.9057143555985 108245 16917 474498 IOTX_20190904 18203140.821657185 1715.2929561348797 0.004418238063509025 4.163332417803106e-07 724104.9091569394 68.23284302134573 21190 1765 585663 NU_20211202 606356202.1247189 10608.599248128501 0.9447295623453749 1.652081716806529e-05 154975272.69982782 2710.106942656371 None 9561 129036 EVX_20190916 8784834.39933224 852.5719888328663 0.4034967551006046 3.915476825664322e-05 992748.2535389905 96.33492045014023 18291 2907 454708 QLC_20200309 2947899.388287619 364.90693589862286 0.01214897402748045 1.5102075814570048e-06 169731.0162263268 21.098824224465 24537 5673 940522 NEO_20200107 687752334.4968895 88639.98289067874 9.737529060583274 0.00125588504758723 464996808.8892778 59972.35395411908 323286 98680 215815 EZ_20210819 0.0 0.0 5.900097017665541 0.00013098367099403647 4493747.546632454 99.762351096263 None None 158506 NEBL_20190821 8422006.520499201 783.8644922926857 0.5444920426466963 5.067770697253766e-05 168682.98437748422 15.699893081967636 40420 6128 679101 ARDR_20190224 59583076.097361214 14480.280947445399 0.059642748965915364 1.4494783050361203e-05 727135.5469997384 176.71338401907232 69464 6609 792340 ANT_20201018 112291221.91899979 9885.394813407602 3.234610321402477 0.0002846448528503095 8437018.50061049 742.4553967787795 None 2682 86369 UMA_20210120 643622643.7646399 17774.041002518585 11.60596602781539 0.0003209679030733939 67539986.73661144 1867.8469215315745 17699 None 212976 DLT_20210509 18557086.410395347 316.68227863362347 0.22420310163926152 3.823010795216306e-06 1012086.1206690534 17.257638885085 15180 2588 4809355 RVN_20200325 87798608.30287412 13007.191745217426 0.015135998072112553 2.2399630176751697e-06 13359852.890558587 1977.1128572993534 30191 7619 202553 SRM_20211120 785731369.9084148 13512.528523763656 5.905880318840132 0.00010153743211368843 74418035.92640343 1279.4394506787426 169870 None 17446 ALGO_20210930 9548034552.675863 229816.8673291235 1.599053108063542 3.8469680393379753e-05 442782522.9757741 10652.367990003922 None 45833 169907 ASR_20211204 9785203.06583484 182.24619805937178 4.550468340076439 8.485918419953667e-05 1231356.372677107 22.962888528200303 2039122 None 105870 LEND_20200418 28703776.909615934 4054.730915890154 0.02405374846763609 3.416760196669831e-06 629492.8539802633 89.4175030749057 44311 5719 90147 CTXC_20200801 1144425.9566522338 100.97602871078627 0.11375798763826074 1.0035824808146876e-05 15546259.67930096 1371.5040306404587 16548 20062 618282 MDT_20210617 20465432.45815886 535.0592989950891 0.03465563633922196 9.048730245746377e-07 29603872.18512728 772.9693692843764 33097 310 464280 DLT_20210128 3668585.8255814826 121.36290730912218 0.044998275752089235 1.4798598950917135e-06 968225.4067885929 31.84206338947939 None 2528 6584935 XTZ_20200612 1868290172.8247707 201357.6921821539 2.624042012114652 0.0002821907711476301 121528242.57915427 13069.207097789937 66131 26256 98518 NAV_20190706 12472652.02858194 1133.740032663613 0.19017763240461638 1.730334732571699e-05 572110.8823073293 52.05361524495357 48339 11250 893210 ICX_20191020 76870195.7692241 9673.323102329829 0.15346863677412187 1.9305234694433097e-05 9311366.01268948 1171.3019023249005 112969 26397 151226 PIVX_20200713 28872444.389033217 3111.315473973337 0.4538999999594503 4.885270673893589e-05 678891.4466216484 73.06826338916552 63850 8480 358751 STX_20210427 2132581918.1582894 39585.482584509155 2.029831462420681 3.7654939903395405e-05 33890723.684047 628.6990753820954 60578 None 58797 OST_20190813 7140514.760415942 627.4093765466636 0.010931672931828717 9.605194677901464e-07 134438.2376648159 11.812514452063144 18060 759 571534 BCPT_20190922 3984278.5368793802 398.8033198871584 0.034290197976688114 3.4332611986540783e-06 331943.8953986423 33.235448129434175 10905 3118 1056617 CTSI_20200806 13383089.413077652 1142.4388046136469 0.0672305060810573 5.727017631219064e-06 4600433.933351761 391.88707304685016 15870 126 383002 BAT_20200704 356945420.41899073 39358.20726442766 0.24169458042108952 2.6662470091408325e-05 91146916.54020943 10054.846624791644 119212 41454 21649 NAV_20210212 25485522.55400326 534.6821102136072 0.36243356561740786 7.5933138862844374e-06 1025667.2794889548 21.48866533038625 48922 13690 604574 CVC_20210204 118964859.12607938 3175.4502354455353 0.18213969658243778 4.8557678007397e-06 42297863.128404394 1127.6432632358133 87946 8286 155763 GO_20210902 41231429.674111545 848.0776441596156 0.03763501691787441 7.738218870483211e-07 1631888.776539541 33.55362521213728 22959 1115 241971 LRC_20190706 51669242.97765771 4701.135701369541 0.053697863624681014 4.885710128991413e-06 6209802.641683052 565.0000506084148 34866 2454 719839 POWR_20200701 36037148.95905768 3939.2533327679134 0.08379795350313374 9.16208377216415e-06 1552967.6686573252 169.79435989649534 81477 12728 196411 ICP_20210823 10048891938.83422 203693.40919418208 64.7169735268394 0.0013134162421928196 300503102.1850632 6098.642036706286 None 22469 30297 TRX_20190221 1645435680.204342 413899.31281898613 0.02510270661634853 6.314432793333477e-06 120708159.43441933 30363.401524966484 387154 70068 75623 XLM_20210318 9175213222.15639 155980.28532577475 0.40580545263736345 6.8847941764129215e-06 906459478.8292208 15378.765614011138 449137 161678 26644 HNT_20211225 3716845610.711863 73124.81818891398 36.92158634706649 0.0007263061560745522 25862377.403947465 508.75397775813263 131470 78818 2009 WAVES_20210115 638301775.9404957 16363.33282338114 6.412653084484321 0.00016374724115507082 149796710.55717877 3825.0623828678854 152076 57245 144968 DOT_20200905 4675680671.656081 445910.10145004705 5.1340152181772725 0.0004896415580722638 676657581.6459368 64534.220971038514 None 4356 45901 GRS_20190807 18312163.121559404 1601.877990190258 0.25146150909222204 2.1959240941203306e-05 1605218.8399582475 140.17806302544108 38609 107009 None BNT_20200319 10435189.831515608 1938.9930403149674 0.1499733644007766 2.7835945162330346e-05 4132441.5005742395 767.005631007415 745 5026 126378 FORTH_20210527 166500975.58082786 4247.259205651885 19.727348145109584 0.000503557689502246 21022798.479700908 536.6251840561671 None None 68833 RDN_20200725 20585995.271973964 2158.802165871319 0.30678916672399653 3.2156968230159583e-05 1884658.0164263686 197.5457236841144 25727 4343 1173290 PAXG_20210828 329414879.0951351 6715.716242698903 1824.5020950861322 0.037205555150656544 9204015.254085772 187.68983497780317 24578 None 41531 THETA_20190726 126587457.1958714 12781.63192112276 0.1265508598759014 1.278491361430782e-05 3866427.5400242456 390.6092945055035 None 4017 240889 MTH_20190627 8066607.642452374 621.4812957670687 0.02357476127362028 1.809863515206957e-06 1743221.990054844 133.82930338459488 19551 2009 1893104 ANT_20210220 208826043.40310034 3732.538522329818 5.990055899253009 0.00010706573773326061 47829261.0928216 854.8960494305708 78460 2778 120479 WABI_20200321 4089348.9346403955 661.4856961903099 0.06963781423435814 1.1231014154739084e-05 1319914.6530660526 212.8725652092403 36707 7760 2574958 FUEL_20190318 6474302.199644915 1625.8851218398866 0.012203180389377009 3.064572647737163e-06 14810947.192942487 3719.4585514840733 1 1523 None STORJ_20210115 53906167.098889954 1380.2061633584542 0.3758625987269961 9.599211779433121e-06 34880180.19728328 890.8101996647615 83171 8573 92086 PNT_20210722 18637192.425411284 580.2121725622153 0.5951246385578415 1.8493069775881003e-05 5274936.345606241 163.9148500707653 47554 319 305973 RDN_20190411 18087351.22647914 3407.9955583138217 0.3575859023648946 6.737233757805482e-05 851230.7480671805 160.37937999323208 25569 4459 1172617 POLY_20190719 26913493.11494679 2523.186862068466 0.05550690901720882 5.213991856519953e-06 4019219.9318727977 377.5418297540293 35240 5095 307913 NAV_20210725 29407043.474716842 860.764062961246 0.4127949576967708 1.2082173725531503e-05 2027092.8938441353 59.33136547468739 53005 14118 823602 TRB_20201111 38270423.30122698 2504.0775630624844 24.68831548506567 0.0016161296191878473 35853125.71309225 2346.9927885701463 None None 195331 XTZ_20200907 1849176856.4490402 180070.8363694025 2.5565194632695407 0.00024895109212518354 213847094.30733517 20824.19807104564 72563 29210 69245 ANKR_20201115 50135306.161113694 3115.453731626161 0.008625763547176733 5.360236137370749e-07 8424745.836158708 523.5319381543023 None None 5129 GRS_20200418 11077602.694137275 1573.5390270159598 0.14796568891193362 2.1018918031490844e-05 8081577.999089487 1148.009560710137 37457 106846 None VIB_20211011 9522764.748531343 174.0104585572839 0.05216127676123344 9.531483689708363e-07 3505071.6715394706 64.0485347424753 32992 1300 6551865 FUN_20201228 22129600.146984022 834.8781989465477 0.0036646591262242453 1.3934960690295326e-07 532570.6617523223 20.251136546960407 33775 16517 396619 TRX_20210207 2505141647.870144 63873.081375078065 0.03504946910726195 8.91311255037475e-07 1750414292.3825328 44513.19804600853 580184 80701 29522 XLM_20200423 1111196518.3759658 156193.12999768372 0.05465125593565377 7.68194516607197e-06 487566560.7268591 68533.82452406808 281514 107751 81218 BTG_20190618 485571717.1689182 52094.49081877323 27.709565375489714 0.0029739789296240526 28266137.02302642 3033.7139824901083 74135 None 408265 DASH_20210723 1451853807.5661294 44890.789430470824 141.89905964517214 0.004383181792139284 593685768.4011974 18338.618006457556 401315 41526 60872 XMR_20200907 1418621014.8611732 138143.77556498576 80.19542170767711 0.007809343173172209 185391971.25432786 18053.269055100267 322819 178992 87669 ETC_20190906 800038484.588554 75696.26967206644 7.063590327432036 0.0006683271474787566 1015503109.8201121 96082.62444187058 229947 24961 350041 ADA_20210201 11024882710.653038 333542.0642510857 0.34567339342407216 1.042693311572737e-05 1922223620.153523 57982.1805846176 187252 118948 26016 PIVX_20200626 26532528.482033364 2867.4043534118787 0.4180073422614712 4.517458913764314e-05 274997.8348822789 29.719368414293594 63700 8487 395833 OCEAN_20201030 159865000.03239936 11868.133004635236 0.4579260374731869 3.40547469721227e-05 23582192.191074423 1753.7451955044833 29013 1103 105472 DODO_20210325 328115267.6504143 6207.6349556213845 3.2355273125799178 6.135508522633427e-05 69010685.90035707 1308.6449613580908 None 762 35063 QSP_20190901 0.0 0.0 0.011112392728967434 1.15794299213492e-06 411539.7190868889 42.88361159695233 56507 8540 551928 FET_20190520 0 0 0.20470083454071908 2.505205291789535e-05 43266022.34940812 5295.05746215512 8484 204 203647 ALGO_20200502 160405907.83184862 18102.212160389015 0.21485303044047038 2.432793173316674e-05 67098517.34398385 7597.603561814439 17183 857 285708 SKL_20210220 183772669.5218638 3289.772307280631 0.3277974726278835 5.86044973314477e-06 38129915.41317213 681.6966916081988 13479 161 210822 WAN_20201224 40363971.477825105 1726.1194290075987 0.31559288664899315 1.3535760041079936e-05 3331720.5768536613 142.89729635882927 104040 15905 718858 WPR_20200313 1997279.7404391181 415.01835432307746 0.0032609924278734796 6.827231616492772e-07 212396.2047088049 44.46738580612504 33610 None 821116 PPT_20190220 49133201.11460801 12549.946318851924 1.3277798455512777 0.00033915082687270125 615449.6648712545 157.20246352508133 23326 None 575286 JUV_20210610 20455737.536070384 544.9642849733458 9.174818486995086 0.0002449645862050442 2666728.100302212 71.20074871648465 2507219 None 34079 ICX_20210513 1329599547.6900673 25789.95209374864 2.0667892462052295 4.120205061819131e-05 170724295.7507604 3403.4389757897 139071 31918 350407 NEBL_20190524 20179316.363945805 2565.986978120521 1.3303737797477033 0.0001691706109761471 371393.51914251986 47.22647837950967 40344 6170 675996 BCPT_20201101 1679585.5957015331 121.95461086189094 0.014471451657658707 1.0498969597110846e-06 41000.43577387547 2.9745621852 10417 3195 2211613 NMR_20210314 238872688.9400938 3889.327922251593 43.09349204420034 0.0007023952481112099 19576815.001103513 319.0890591048763 26060 2720 2364685 MTL_20190207 10569919.247130461 3103.565114793935 0.2604925484230858 7.648644867075403e-05 6484854.760583449 1904.0986538204686 32366 None 590777 GAS_20200526 20354660.39166883 2290.323281134865 1.46012921273097 0.0001641388536175084 18641426.575522836 2095.5559009591852 320283 99483 247839 ONG_20190627 0.0 0.0 0.42482193206112207 3.2713100269257907e-05 13799141.521023285 1062.592738601751 80530 16262 232873 VIA_20190922 5565714.722884929 556.9080103495539 0.24027771400607179 2.4050414436027558e-05 105561.8723568507 10.566135063034373 40605 2209 3148663 THETA_20210219 3538032924.148208 68450.42665757785 3.5578286165764292 6.881620508465493e-05 184419904.85344383 3567.085253898292 86267 3920 42831 FIS_20210703 19134859.489698853 565.8151925303853 0.7115667946540681 2.101613927472024e-05 5452767.788071037 161.04760386201076 23448 None 421397 SNT_20200106 31921089.60408238 4347.281770049913 0.008968988350735571 1.2211240132494686e-06 32854611.6274213 4473.141633742789 110471 5625 276615 STORJ_20210418 342217982.30731875 5679.14855873359 2.377475236915355 3.945399264863917e-05 202324470.71871197 3357.5568133919846 112 12552 56587 NKN_20200511 9971941.582395298 1138.8487382421624 0.015342521801501738 1.7521173995408128e-06 2146770.751169674 245.1614170482403 12291 998 325716 AKRO_20210218 114176203.9607411 2187.697873233705 0.04294750607389381 8.236879221622358e-07 33962165.94328091 651.3585643324373 30198 None 165746 IOST_20201031 82114689.48877737 6046.088955459762 0.004886972654839872 3.608352603864109e-07 35328116.36380755 2608.4922031374886 None 52170 270224 ACM_20210804 17214472.004439157 448.0527082225239 8.595482825897907 0.00022378780925947145 3142661.1982042543 81.82079809081675 None None 44064 XZC_20190901 47430423.504138686 4941.04938100482 5.733588765943061 0.0005973227062689976 12425852.950163683 1294.5197876729073 60814 4042 177313 STEEM_20190523 120069789.45685157 15663.669652307095 0.3868084138501356 5.0508161150450967e-05 3343417.831767774 436.5724234365925 5592 3737 288379 NMR_20210107 150593957.74943408 4099.3347814691315 28.729408803860398 0.0007783769916248903 12141654.836465698 328.95855356710496 22228 1981 2602153 POLS_20210813 105429476.01524432 2371.388460712912 1.4589034109913281 3.2815574505901e-05 17872577.711835653 402.01352680142213 381439 None 22359 ENJ_20210519 1765001406.6894705 41237.16261899762 1.896897389480375 4.433984356932758e-05 213029973.24987823 4979.560698359727 190628 31676 20878 ALICE_20210702 72108523.46532394 2144.698826511485 4.148042739438707 0.00012332386359868367 43640041.25567414 1297.4452852392576 80842 None 50319 MTL_20210617 131645198.53052208 3441.803039628869 2.03672284349268 5.324395137575275e-05 17336817.385609068 453.2185932115961 56636 4177 153721 LRC_20200425 34701346.40079068 4627.886996282893 0.030264152088194354 4.037769998051639e-06 4555627.882345276 607.8008573316931 34175 6808 593192 LINA_20211204 166896134.25307035 3108.6245676044923 0.05337147838889918 9.947822036587582e-07 75837009.1539553 1413.5135349886098 50772 None 138845 BQX_20190513 13429541.354475725 1929.9375614861322 0.11417552050812906 1.640797848672851e-05 617050.9445732407 88.67538837322307 None 5794 460348 COS_20210207 33105805.138953865 844.2662161018033 0.010972823076894072 2.789331948859958e-07 3896675.8120187456 99.05493108424639 14964 None 369084 RCN_20210617 27767312.431871846 726.0544221962061 0.05408866418686404 1.4122774338608023e-06 1415977.0445511397 36.97174735127117 19745 570 2606607 AST_20211204 61624841.43852492 1149.2078133678833 0.3577382267400167 6.671263661101913e-06 1817171.5325162518 33.887433616857244 48893 3753 173278 TNT_20190806 15429768.980514772 1307.244355537797 0.03601036983143008 3.050878646492544e-06 957470.8621943428 81.1190615864752 17572 2543 649538 BRD_20200905 7316565.060761922 697.7752920958613 0.10500258171454532 1.0014017030972245e-05 380065.9641451225 36.24660437577531 233 None None STMX_20211202 279535664.22426766 4889.722797542434 0.030099973028833053 5.263831275889249e-07 5060690.182442861 88.50047551341993 80031 5721 89956 AMB_20210310 12427644.025159435 226.97491816546366 0.08595034389358973 1.5697723745583956e-06 14241395.610686833 260.10075576301097 21676 5504 363495 MFT_20190806 13266429.460974995 1123.0772434649589 0.0014781824462966734 1.2523490544911007e-07 824702.7299596957 69.8706500465347 18842 2172 955030 FET_20210725 191693963.06480932 5610.726877109729 0.2789903028525686 8.154198832600895e-06 17151214.270977613 501.2877148636919 68756 3028 163095 ROSE_20211111 294087709.0781367 4534.052839029534 0.1968352435358809 3.0309304081758443e-06 39018181.50276132 600.8141157245847 39249 3102 152374 SNGLS_20200316 2668290.634772811 496.55505220506967 0.004138296261889148 7.701154775208257e-07 66719.86790964032 12.41622147948948 8084 2131 1285734 AMB_20190123 18287088.095801394 5119.983403869482 0.06745312861627543 1.8885395927725433e-05 765295.1460464841 214.26584846602717 17900 4977 577805 WAVES_20210220 1272000390.27983 22777.55275115328 12.696195519137595 0.00022722199746323034 160817561.15788463 2878.1289180982826 161472 57572 101997 YFII_20220112 102690171.42972484 2395.4540569956157 2578.4034391349605 0.060271882477946424 11720942.502768831 273.98476837847295 19301 None 1111130 MDA_20200520 7141846.390854106 731.9017388303206 0.3652828820305356 3.742673211919658e-05 218560.40380348486 22.39360804301982 None 374 1665650 SXP_20210127 76577640.73095268 2351.317660808788 1.0269743323773743 3.152280848455373e-05 114376346.29202475 3510.7631667678543 95012 None 143437 SUN_20210218 0.0 0.0 0.0003699273691403104 7.1e-09 4520.82788596864 0.08676805413173654 42 None None RCN_20200626 31725230.01619769 3425.7129661318336 0.06200555385424769 6.697105085320628e-06 501429.5277115511 54.15847502726405 None 1136 966590 EOS_20191022 3019334722.268428 367678.23683075735 2.926657834067097 0.0003561171220060069 1864993391.3047302 226933.28592796362 1321 68645 87489 GXS_20211221 155036234.2455309 3286.150417923692 2.0487574993089765 4.346779072424525e-05 259088817.04888716 5496.99927017807 90802 27115 757072 IOST_20210703 556928273.4280264 16477.05589083274 0.024947709602719265 7.36501935659542e-07 200813283.13227168 5928.374752163417 248472 53573 158729 RLC_20210729 188737252.9278924 4720.204928802549 2.6514904273913653 6.627279700301425e-05 12338812.49836118 308.403005160632 45969 7731 149507 NEBL_20190224 18147043.891462263 4408.239730439592 1.221831906304313 0.0002968047019395516 119384.67989876591 29.00066216201487 39646 6170 501416 LOOM_20200713 17242048.538311604 1858.3799104698442 0.02069774922792981 2.229464626312467e-06 4438260.919265877 478.06868335693036 21877 None 624225 ONT_20190410 889399827.0178199 172004.64814898913 1.4500913164463214 0.000280279495603914 71330356.95243934 13787.018956069245 73312 11356 248801 QSP_20201115 18424383.717097253 1144.538896759536 0.02580142157928613 1.6034340996825096e-06 84028.45917433685 5.221964083253397 None 8198 233345 MATIC_20190929 24431713.779271595 2982.723193650285 0.011144886959990928 1.3606132228996107e-06 7856282.061646556 959.1269336583758 23478 1166 202428 TOMO_20201115 44034710.35658601 2735.784826393238 0.5782933978184674 3.593640321851912e-05 3058691.16937753 190.07368854343937 None 1695 94398 AMB_20211120 19914901.88245026 342.5911225293011 0.03696866835966575 6.354848888914658e-07 377735.24279410316 6.493202201984097 2209 127 784694 XRP_20210218 24600084027.406086 471355.2355150259 0.5364850178225575 1.0292130491743127e-05 6208398652.824409 119104.25632941946 1173199 266817 10253 RVN_20200412 98055299.55656578 14249.953678520249 0.016562299120475438 2.406431824922142e-06 13600405.161814364 1976.0811935079919 30307 7635 209100 SKY_20210902 32498460.856960516 668.9793922090341 1.5488175251712437 3.1838415469975476e-05 645306.1213518329 13.265296952684258 19705 4416 668655 IOST_20210421 1270857169.8580046 22494.830638303552 0.06810966314527553 1.207962336666912e-06 875192104.382894 15522.013332936676 239140 53072 143784 NAS_20191019 20430413.681389682 2567.097788729143 0.44902008090966333 5.6419731620420717e-05 4944437.283656947 621.2724918510953 24030 5076 1447881 DASH_20200321 670121651.7945738 108438.92183064362 71.47067701163228 0.011526613722611564 952133286.6284919 153557.69759423152 316425 34186 60317 TOMO_20210203 110619226.22715162 3105.7436380417344 1.3622782509664786 3.835812868947753e-05 20395388.05482648 574.279828018863 38226 1757 172672 HNT_20210624 1050082887.4374511 31148.61686051403 11.981153476607975 0.000355195047574603 21342622.22214669 632.7265342492212 57312 38685 2774 BCD_20210724 327343023.3091823 9793.070163571596 1.7428346179567935 5.212236629686533e-05 3275739.971450823 97.96644898263993 34356 None 1350278 ONE_20200605 25389980.986730162 2597.5480326552174 0.003771069311798063 3.857436150724302e-07 4359197.250763492 445.9033677961083 72288 None 152068 FET_20201208 36525970.12082597 1901.6951685614304 0.05305912150179394 2.7651525670022067e-06 4425233.764158289 230.61909349805978 26139 705 384755 DOT_20210825 25966214797.418373 540695.3085213647 25.155027283169083 0.0005243829695341054 1562256496.4319983 32566.877847160566 556846 28747 27149 YOYO_20210513 6145987.8169777375 119.23116101122012 0.034320331860140885 6.809077284979383e-07 1315415.7418093372 26.097554896491307 9929 None 873930 HC_20190714 172591555.2472393 15164.090449420231 3.9162200210775953 0.00034357679452437235 68914615.6445801 6045.9991041383955 12947 842 542452 AERGO_20210724 37995282.03567118 1136.6788529825126 0.14308860363800754 4.279302542469982e-06 5822787.625716757 174.14014294268947 None None 378084 BAL_20200914 171989149.4046044 16661.76055201629 22.541278065179668 0.0021827069590108416 104509723.90605965 10119.8388571602 None None 61486 CTSI_20201111 7424663.616840544 485.80423137417193 0.03728648278844129 2.441069882161791e-06 2392468.5229952266 156.63002833064732 17545 150 428583 POLY_20201130 48534564.104826495 2675.5925883918635 0.06634992201142197 3.653691004369496e-06 1378533.4061511445 75.9116959385456 35396 4999 340645 WPR_20200309 4085853.201495502 505.76901579920286 0.0067019913907648086 8.325111336364322e-07 318961.28760369914 39.62088395025366 33645 None 821116 THETA_20210301 3147795602.416506 69376.61326982405 3.127933514223936 6.929974119480349e-05 183118511.97182843 4057.0125387635476 88091 4319 39899 NXS_20200913 13067441.051545477 1254.1682940820353 0.21933360792172624 2.100514972618213e-05 45335.91134915816 4.3417313693295485 23351 3524 382066 MTH_20200913 3065544.10452223 293.9870763077048 0.008888280515162994 8.5114549345692e-07 82839.76147718373 7.932770521819889 19078 1898 1279779 DGD_20190714 49299055.901433945 4331.471152742431 24.6886686955442 0.002167949138548708 1306073.457795452 114.68827512031909 17161 3370 483052 QLC_20190821 3384788.7911288687 314.58898081645657 0.014103286629703619 1.3107874200685691e-06 252160.28079009865 23.43627642116251 24839 5755 940522 MBL_20201014 5701361.800644001 499.05284022051023 0.0016160893039385532 1.4147771388976992e-07 1127860.538913767 98.73657986790975 None None 582039 MATIC_20190629 41898477.225710675 3385.288676442515 0.01928801559399202 1.5584403229395045e-06 50630118.86531852 4090.8313460463046 18336 813 215826 XVS_20210527 383154552.83634335 9779.471619950154 38.24128687322898 0.0009754565323697121 197125734.7188586 5028.2718326694585 107830 None 9517 ADA_20190520 2704999271.5429554 330547.7432241769 0.08667775721710332 1.0595051114757378e-05 276547327.0481134 33803.748040981045 151511 73184 118037 NEBL_20210117 18533267.39295684 510.9942119880961 1.0445595418538518 2.8863625559981583e-05 8129623.912469346 224.64054096575234 38333 5883 802156 LTO_20210828 82231253.54603507 1676.5500175437633 0.2813964212869531 5.736398242881581e-06 8936865.690705441 182.18220548282537 11782 4520 676717 HC_20200625 52836246.87495841 5678.976322504708 1.1827268266692093 0.00012719853982220817 22934326.3932166 2466.514467451901 12694 845 1025848 VIBE_20210120 3876858.847679075 106.66507584 0.020972378333398906 5.8e-07 205637.11581653936 5.68698148 18463 None 1420135 NEAR_20210731 976445412.9709804 23393.513667658208 2.326459496047025 5.569499210633679e-05 49151580.130295515 1176.6793584939576 None None None LTC_20211230 10043087113.587414 216543.82284945296 145.50566839953726 0.0031267367466233913 951578655.6371307 20448.24770477852 206545 354080 134071 BTCST_20210725 107443364.29961875 3147.8578779913437 14.751251923907152 0.00043175718377996364 7987575.592594845 233.78986142180074 63423 None 1251678 XVG_20210220 423383461.26472044 7579.76474236729 0.025822574613007587 4.6214292890863105e-07 29883761.20763207 534.8254052229333 292608 52264 127970 GTO_20190321 21675828.44753679 5361.240454535119 0.03657259476881677 9.045766120380122e-06 6335620.0074657565 1567.035021097311 16559 None 763541 HOT_20200207 133567973.85186519 13714.345113197145 0.0007491179189501014 7.692769802329227e-08 8987024.405294146 922.886880809584 24981 6848 484513 STRAX_20210218 165368248.1303304 3169.3632562051234 1.6446474489439515 3.15426054676903e-05 9005595.37576541 172.7178320933297 149157 10464 212375 FIL_20210325 5239968618.420825 99162.64999090642 86.01970880657534 0.0016327021531502147 1657490858.5368512 31460.102935771087 None None 50796 ARK_20190321 88692336.37581226 21945.699946526976 0.6319903594531101 0.00015637733049321377 925658.30082557 229.0414273996953 63200 21743 175186 REQ_20200325 5830698.9495511865 862.7410045989212 0.0075662070878576675 1.1197163200026397e-06 76011.03182469444 11.248805622956993 39580 28199 686735 ZIL_20211207 889600567.5075952 17624.806587657997 0.06929311477142927 1.3719459454937038e-06 84009517.7921513 1663.3184653050894 360259 39522 43413 LINK_20210429 15256450650.615812 278718.24219126895 36.224732232073194 0.0006615708716185615 1423358995.7560947 25994.74981390602 254893 50892 26155 JST_20210310 86712778.73751302 1586.4702565566956 0.060796199984519225 1.110364320728955e-06 339466648.6743723 6199.921292143815 35131 None 109901 PSG_20210314 0.0 0.0 27.386052222476213 0.00044642179776492775 73191420.69956635 1193.0980538645592 8803260 None 28774 EOS_20190806 4543037652.614019 384659.42762785504 4.455591296112799 0.0003772343209198932 2509351601.634218 212455.20167381302 None 67698 89433 HC_20190830 92445234.82554893 9732.367763417042 2.085286976032744 0.0002198708566755935 48596644.469867915 5123.98819632839 12929 854 414812 EOS_20210527 6146464546.2018175 156879.7111965544 6.435117839246714 0.0001641376238983748 4588577768.698273 117038.76616425795 223081 87683 50771 FTM_20201129 49203432.81670515 2779.9490698930904 0.019360707478662666 1.0930798462421327e-06 7839949.697642702 442.6331537465741 None 2818 110001 AERGO_20220105 95209160.75158578 2056.7710877820014 0.2629499553695301 5.725334313700907e-06 16556906.740448346 360.50139714463404 25555 None 561562 FET_20190826 21279112.729319114 2107.4228207758047 0.06256163171910724 6.195926120930736e-06 5069063.697332516 502.02565546850894 16329 299 378000 LUN_20190523 7211919.483362272 940.6346792945209 2.6657800524724755 0.000347846373602264 3486413.798663741 454.92740318815095 31569 2231 1883095 QLC_20191019 3953435.7436522366 496.8271163925029 0.01647264893188432 2.070112984968762e-06 326788.39551064844 41.06740231525815 24675 5722 940522 ZEN_20190920 30100085.516588796 2939.7303697269704 4.086338185094007 0.0003987203416168377 4794643.8984224 467.8325597434825 27081 1785 203585 ANT_20210620 141226282.1322586 3961.5653901890655 4.0124478346543855 0.00011269776494336207 10782562.290832624 302.8502102991413 84671 3027 95645 BRD_20190205 11408569.802204173 3293.188804800826 0.19044178271696305 5.497277552604749e-05 94477.74590117854 27.2718719785951 137 None None WBTC_20201226 2777494436.304554 112468.17238419958 24710.81586540815 1.0007682180019453 303079823.5644362 12274.48970495232 None None 151511 ZEC_20190626 720213085.1176817 61015.09361280365 105.45332730409842 0.008919537098492395 504053953.35854554 42634.2918859097 53 15241 185342 WAVES_20190914 103178827.8869467 9964.212257964677 1.0346029901212825 9.99458404384149e-05 7593500.060551243 733.5555306407736 142454 56909 33279 SAND_20210105 24694683.99877226 789.3131638296011 0.0396789831860356 1.2682544857698271e-06 6215157.270393087 198.65431155289974 63076 None 60991 NULS_20210218 73720081.50927599 1412.8813736709885 0.6616507021864398 1.2689763432210427e-05 52409193.39050082 1005.1531171972083 39088 5118 599020 ONT_20210523 968730468.9778666 25774.107790074333 1.1283783482064458 3.0045163119431006e-05 530613534.71384573 14128.56798359851 None 19125 129307 ONT_20201231 358975893.0974663 12432.149376463876 0.44582873352574215 1.5459654204704934e-05 85823143.20540562 2976.021994418701 94290 16677 295532 NCASH_20190411 6324775.300134017 1191.706063551989 0.0021774584128827898 4.102523681294793e-07 751644.0268955944 141.61636346296297 60691 59461 760895 APPC_20210509 25882061.715362225 441.34525683504876 0.2295032024768205 3.910099963910982e-06 1430540.9275370846 24.372461772950114 24982 3134 605717 ARPA_20200501 0.0 0.0 0.010217170937463056 1.18532734060704e-06 2405519.1688013263 279.0721283403059 16739 None 1333028 DOGE_20211221 22398966535.550385 474768.8409748606 0.1685476455689639 3.5746356354939352e-06 1123058443.7286434 23818.337658428838 2704142 2243968 36966 LTC_20190813 5397410029.47329 474211.4737598217 85.6970974634955 0.007529838384309131 3115206973.440403 273719.9477925263 451835 207508 141428 CELR_20190714 40976093.37519391 3600.2061938384954 0.013656817598600606 1.19813636329864e-06 17798605.738096897 1561.502641216712 17477 None 482178 WRX_20210422 1283670044.5895844 23690.936393446493 2.952578248501839 5.450519613257242e-05 45858352.46707212 846.5545313837752 113988 None 2746 HC_20200331 42743807.02253181 6652.780616460705 0.959626233913188 0.00014968296644713217 19109972.399582446 2980.7827843846635 12710 844 1009475 SC_20200905 167032694.068363 15930.250514854835 0.003734331350023885 3.56150837673785e-07 11006289.645275153 1049.692410615887 107005 30105 136380 TCT_20211111 19632011.107670736 302.8021886738988 0.03397863207188027 5.231546754095667e-07 2770676.609546251 42.65893986743527 None None 756264 STEEM_20210422 356720759.595959 6583.578640275268 0.9363399178385539 1.7285025687106808e-05 7813177.300554355 144.2328451079533 13451 3933 169708 KAVA_20200224 17660908.804102592 1775.1425230212903 0.95991710805498 9.646745844030918e-05 3345772.5767306206 336.2354668836687 None None 362040 BZRX_20210204 54403181.52583305 1450.6628065784948 0.38773613176688826 1.0336882399300977e-05 27940520.717737768 744.8825455558232 18148 None 192726 BAKE_20210704 310203959.58073384 8948.132857079636 1.8271463587879984 5.270400534098258e-05 41550406.49010272 1198.5207616465823 None None 8023 ENG_20190719 35726380.41641087 3328.8361774262703 0.4530910416500123 4.2465644312875874e-05 1483289.0523782526 139.0202399104879 61828 3481 316821 FTM_20220112 6575838211.515958 153394.60537080243 2.5794160974776124 6.028669014100778e-05 1437769681.362442 33603.874675045656 315496 28170 16138 TRB_20210814 95921902.50907338 2012.510059884781 50.42577055586895 0.0010569097442931332 28765512.315661352 602.9169198777493 23615 None 290542 FTM_20211207 4068738943.871122 80610.03956226468 1.6019102969299137 3.172224262580955e-05 758178547.7382448 15014.026622546147 262077 23750 16767 TROY_20200309 4253427.618312512 528.354281869313 0.00359619902954567 4.4703421264738017e-07 1597263.0557817952 198.55164485219586 None None 312111 SOL_20201124 104405683.73789695 5700.880202515438 2.273388487038822 0.0001239233963623637 18928875.39550107 1031.821240278154 92131 2607 83508 CHZ_20200530 52603506.85769071 5584.8441082899735 0.010976574309625519 1.1707354487055074e-06 11895462.782766214 1268.7419194465042 23407 None 285725 NKN_20200531 11934108.386038968 1231.4672049482017 0.01844097321980923 1.9068634487886513e-06 1301760.766888626 134.6067800142212 12437 1002 245910 LTO_20201115 18466617.71164002 1147.5324968667678 0.07587442843760184 4.71678115921041e-06 2438272.8142463597 151.57675000755074 17903 571 2813904 NEO_20190530 884498522.4627168 102370.18385246952 13.595730424969966 0.0015721920832873974 848502232.6539845 98119.66338934105 321821 97608 225000 CKB_20210624 326265213.9085114 9678.007578763845 0.012235518227037471 3.627359825777731e-07 16264817.12366234 482.18917346404436 48365 4838 116696 UMA_20210825 803252962.8258742 16726.161743028373 12.803543478372513 0.00026690331416337736 37145724.42031132 774.3416478045829 43324 None 226348 KAVA_20210821 573238165.0852246 11667.28883435732 7.048772778603514 0.00014337769434262016 81359222.32117061 1654.9118656977255 None None 51016 PHB_20211221 16944208.550830327 359.1302364247748 0.45481995244032225 9.648535094128025e-06 453195.9575115351 9.61408372061414 None 420 210451 NAS_20200324 10788025.224957116 1676.5764171942017 0.23699662990419348 3.675204726679848e-05 3941253.377472877 611.1864564397729 23608 4967 1138524 FUN_20181229 25805999.695003517 6710.00364483037 0.004393586635515998 1.1423590923197608e-06 258274.82552779003 67.15301637026214 36682 17934 473481 THETA_20201018 627443817.086291 55218.76456311831 0.6256146948566389 5.5049025164638576e-05 22977917.106432993 2021.8705657367377 74703 4469 70726 ETC_20190914 699993388.4683586 67621.520699068 6.170256023426521 0.0005960657661633697 508791406.1803716 49150.81938104492 230129 24967 350041 BQX_20190509 13378489.07864584 2246.1682802482915 0.11374148333499373 1.909651459993659e-05 434735.742032674 72.98953030522902 61195 5796 460348 WTC_20210422 48275406.513627894 890.9628235085382 1.6528938720295372 3.05202238046835e-05 14491506.053508868 267.5816127728452 63352 19425 334285 BAT_20190224 174222618.26186886 42346.15607820368 0.14061464303137333 3.417311877439653e-05 13589868.790347578 3302.7015557504596 92596 22938 122237 EVX_20190221 5224245.079863522 1315.7451361544693 0.2709056369511811 6.822857058318877e-05 1579401.5167491497 397.7780199683842 14026 2321 1312426 KNC_20211120 159848271.97835317 2749.7917392711324 1.7377572171311562 2.979129920152614e-05 22168244.670733463 380.0420468681691 196211 12102 86761 MITH_20201111 3345679.7908544308 218.85327472411043 0.0054012591167192266 3.5360940398653986e-07 761344.9626494165 49.84369989532006 120 2106 516659 WTC_20210304 29111857.270383872 572.4439037112226 0.9937345068993814 1.9613314657080414e-05 11651731.443445072 229.96995023664323 56148 19124 448781 DNT_20190826 5052997.569339103 499.8566647392301 0.007528060321116241 7.446968007469415e-07 613706.2370724395 60.70953895843959 60321 6292 572325 AMB_20200407 1327520.5748228428 182.5232229769526 0.009146981698611405 1.2572484749038721e-06 108703.29863318978 14.941218964540546 19005 5489 894983 ADX_20190201 7665539.098830244 2234.0179427537582 0.08806473164491468 2.5665277820911017e-05 167329.79745060604 48.76601176283222 54488 3953 834764 XMR_20210708 3866339471.339404 113780.81858123015 215.62675090360815 0.006348167635805173 185730396.11207533 5468.0028551328605 429110 227958 31847 SC_20200425 61568823.031303406 8211.023059223988 0.0014049782463413936 1.874488006292249e-07 807347.0706862978 107.71429414352059 106964 30078 175217 WPR_20190312 6744089.317836293 1741.9524626327745 0.011590084131621142 2.997748332947096e-06 582714.7536691892 150.71781719251027 35014 None 815253 ALGO_20200721 289346570.7326826 31580.185606701067 0.360348410205053 3.932932327463761e-05 178639305.44426793 19497.13886451281 20849 968 270923 CELO_20210930 1743222049.3561482 41958.565213801936 5.696981747729828 0.00013705677812508003 148019951.9026735 3561.03259661906 None None 82883 YOYO_20211011 3798119.778086221 69.40343289927462 0.021680816863187853 3.9619933139144566e-07 581823.4349727322 10.6323510492573 12178 None 1593198 QLC_20201231 3338626.212675216 115.58278424169471 0.014040018443724447 4.86928280863117e-07 911445.2380352715 31.610247852328214 27308 5607 940522 LEND_20200725 385507412.1149976 40405.39552776233 0.3099406784419299 3.2492834440263373e-05 36220775.58840359 3797.2287807082303 51665 5789 49562 ZEC_20210210 1168757691.524565 25135.662878688017 108.70550670291462 0.0023330127921120792 1305932800.6119587 28027.631919264706 72549 17197 125065 FORTH_20210813 142292636.76739758 3200.5386883060132 16.528251055546303 0.00037177275036319896 20225209.32579405 454.92905888543476 31928 None 110884 FIO_20210722 50133972.67995822 1557.877114883506 0.1482408542311694 4.590016833820831e-06 4822726.147739813 149.32721696620655 None 502 141932 KNC_20200229 95575841.02713978 10929.411418673808 0.5332306081657308 6.103853472146278e-05 81039336.18240926 9276.516125715121 102311 6991 153525 STORM_20191108 9574213.180568162 1038.5302579665486 0.0014759637048983715 1.6009720197802323e-07 4089124.1796302744 443.5456898613665 26116 2541 2077933 ONE_20211216 2166670263.592471 44411.364307723234 0.18969540569373466 3.881685006906216e-06 118284812.35419191 2420.4296407751467 291912 45247 8495 SC_20190615 133709768.28480822 15367.912443387313 0.003238894478209891 3.7303516875378315e-07 4603839.234908805 530.2407835338565 109577 30885 231411 MITH_20200107 4211910.5716609275 542.6552328958239 0.0073769909655723755 9.510574782759976e-07 501179.067593421 64.61307902023869 91 2085 1348503 FTT_20210727 3169408870.759333 84686.0101977619 29.678758832353452 0.0007954207175043625 171867490.45562682 4606.222360783553 157586 None 2587 ZEN_20210107 171180446.08174786 4662.429700527003 16.10399714704013 0.0004361341466792041 28340651.030173916 767.5315352157648 80954 6333 350689 FET_20190324 0 0 0.20528148129303112 5.125799971328241e-05 19861370.355131406 4959.30811467348 7256 157 185069 FET_20210508 392173701.6155772 6843.781072562764 0.5700328983153633 9.94521095820216e-06 31123006.947002027 542.9947475948765 58356 2541 119551 ORN_20210428 361094807.3171169 6554.066068646116 14.73897962520825 0.0002674680209900066 28590633.34646046 518.833753386142 58291 None 53561 TCT_20211204 24630167.436819743 458.7287910864806 0.042236708552720686 7.872430608575244e-07 159533683.59779578 2973.522078043521 None None 502027 MITH_20191011 7288211.750762568 851.1805571881525 0.013428608338152511 1.5683093080184147e-06 1112596.0353514713 129.93861123707163 86 2081 581138 OCEAN_20211225 397126918.922868 7805.651600963718 0.9157834598844714 1.8015609522166287e-05 34425358.51346374 677.2275803249217 140048 4224 84153 OGN_20210204 48081447.46982207 1283.4062496287038 0.2272753086305142 6.0665093675844325e-06 11860318.501763377 316.57963078802436 70545 2601 192490 BCH_20200612 4324548069.587228 466084.4614443862 235.4000760218905 0.025312879993977647 2820426386.448824 303284.1614094809 None 300014 152182 TFUEL_20200501 0.0 0.0 0.0019366865282299743 2.246813238368233e-07 1134647.1008645336 131.6341126939385 67621 4028 365481 TRB_20201129 38727376.42214064 2188.0614400460604 24.397642676232056 0.0013774585218333329 25137427.70463365 1419.2258025997332 11045 None 262414 XRP_20191022 12655454831.360157 1541112.7770523864 0.2922858993183195 3.556548772342449e-05 1659509597.8302536 201929.91987019792 939999 206558 26005 AVA_20210203 71685981.89410314 2012.6544887161663 1.8524442047238034 5.206718766166414e-05 9553008.291121544 268.50918055122753 None 9209 69143 DGB_20211125 729421375.4216834 12750.468744035721 0.048993928907107 8.566475502219736e-07 24972726.785224184 436.6423697818964 234366 43779 110164 LINK_20190914 576664846.9965696 55712.66316206531 1.5831503071360469 0.00015288839793615492 131122480.77513872 12662.79387924377 32624 10591 94033 DASH_20200605 749668326.4064118 76691.26393755466 79.3152094667221 0.008113172445332868 516873040.38841903 52871.07147808999 317109 34986 77341 DNT_20211125 119125763.08380704 2082.347381370611 0.15849675059571905 2.7712791389602224e-06 4235798.103216905 74.06195317047305 None 10361 394339 LSK_20210527 650180897.546229 16594.9369211931 4.5451192938986065 0.00011593029061337359 80029616.68783197 2041.2790336992696 196634 32461 142125 EOS_20190712 4877734610.675099 430665.9489370092 4.689504220755819 0.0004132352558581308 4907551859.541258 432449.43449218693 1208 67150 97672 OG_20210805 5780714.045342333 145.20716462508784 4.5109614773025655 0.00011341352831707701 2061765.7959008804 51.83642880861193 None None 320611 EVX_20200127 5569036.438086361 648.9437586174954 0.2561440523701171 2.9805936592512598e-05 1069544.0087528932 124.45637762350633 17888 2881 683099 CND_20190603 34753321.23297508 3975.99841882193 0.01990435683308842 2.2769605260770988e-06 778407.5129930782 89.04599104356362 36454 6172 588984 AKRO_20210202 44815891.23330871 1342.390229406597 0.017429990337911174 5.218361626504104e-07 9782132.880416876 292.86709779466787 27181 None 187936 RCN_20200315 18405464.672803354 3560.8028110214364 0.03633672810992765 7.0098396398213896e-06 1547534.1564477952 298.53998524653935 None 1132 864394 BCH_20200701 4101844915.181824 448745.525847433 222.32814159391353 0.024322898810966085 1643317016.7042434 179780.36079949947 3340 301664 156887 TRU_20210212 67473394.02069041 1415.5808114905608 0.43924273966082106 9.19953813384446e-06 14275085.514951123 298.97863231636063 18839 None 115581 FUEL_20190401 7661492.080650113 1867.0722308527647 0.014476380415451752 3.5268648935130374e-06 3397212.1289927615 827.6591143441127 1 1526 None PSG_20210823 96090308.0159359 1947.7482177374727 33.109842885317036 0.0006719567225125701 22984750.027600568 466.470268367427 None None 16263 WAVES_20201101 321494345.8919135 23329.26520940897 3.2149434589191355 0.00023329265209408965 35948742.123972744 2608.6236030936875 145251 57081 240575 AGIX_20211204 225561575.79106477 4201.333117449284 0.23138460839636954 4.312745241385514e-06 2203672.812566601 41.07394827095318 69505 None 115858 PNT_20201229 10947884.879121754 403.4498822787713 0.39145458453692644 1.4422063932594077e-05 1849308.9094615707 68.1326835268031 None 109 947111 THETA_20200531 289312591.6448357 29988.74903503356 0.2888968599856916 2.9922851286253772e-05 49751895.05508286 5153.1143572009805 None 4194 142803 REN_20210508 895514253.082673 15627.920784623488 1.01749870484262 1.7751925551331123e-05 205796318.48356912 3590.4526532281075 76238 1156 67818 DCR_20190621 286166573.65827507 29915.464445384558 28.74059765523014 0.003007148833196836 8954158.198282562 936.8798346239428 40466 9489 389258 QTUM_20190729 279350880.9383707 29263.812265610206 2.910479164630606 0.00030520233753776886 282414675.8020776 29614.923981324853 178918 15364 354208 SNT_20210304 333279729.0751219 6556.367875940803 0.08578676142344546 1.6931042918203657e-06 31064948.578761786 613.103897281592 122111 5802 156186 POE_20200208 5412037.123748567 552.5317234628419 0.00223571753557938 2.2807861237558355e-07 462298.47366027255 47.16176918497025 None 10499 559112 MTH_20190920 5596454.256364898 546.1177288904355 0.01610763018141102 1.5714771519084167e-06 5819731.496602452 567.7790571394521 19523 1985 708112 AION_20200323 22486689.490213983 3854.2458322236853 0.056087264365246 9.618988703138434e-06 1934741.4735791525 331.80895143431104 538 72542 244642 LSK_20190621 269635838.1338839 28229.138491267735 2.027330635270927 0.00021224848175499628 6730476.781001636 704.6376419325142 182887 30476 183148 GAS_20200329 13737752.414657775 2204.6043385483367 0.9911889863872544 0.00015857376662902777 5467386.310097995 874.6909547171791 321776 99265 219445 FIL_20201111 971324219.7046409 63597.57225965541 30.355539393303946 0.001987113553762638 77788935.21881078 5092.166062453832 39962 None 36454 MKR_20210805 2681399264.4602194 67254.79639679895 2966.5158277822406 0.07458969773445794 89620642.10058646 2253.4100585090428 169933 29228 33465 GO_20200927 9266623.879935585 863.0123036286137 0.008917147639908432 8.301902972346431e-07 249522.03974910115 23.23060968720575 None 680 655829 REP_20210729 179968167.15521348 4500.895379451923 27.265119724124794 0.000681425152029528 101172575.75858974 2528.5617123666957 152256 11288 153333 SRM_20210220 259015669.2347065 4636.87237723316 5.15847048938051 9.232040942386057e-05 324114772.0321646 5800.635772935109 36008 None 81157 VIA_20210401 30655050.589865554 521.4495542083303 1.3226358764790587 2.250170850368171e-05 1660589.568900873 28.25123912647287 37943 2181 925933 POLY_20200109 10158916.734655702 1262.2913319826132 0.017971460429072467 2.239633844104886e-06 3439037.814231273 428.57871848016373 34901 5008 298453 POLY_20200322 11689588.211768914 1897.1548526771257 0.01919840067565061 3.117361074927302e-06 5508839.974854568 894.5038493438547 34923 4998 422167 CELR_20200113 12414563.6764261 1521.9595568566274 0.0034436629682530746 4.2171535120615307e-07 3311637.463425923 405.54733980386527 18860 None 822333 TRB_20210202 51007475.19086935 1527.6827938897638 30.473453222710162 0.0009123441599309331 47247973.7722918 1414.556224550079 13346 None 357137 NAS_20200531 18113457.606157415 1877.553725606988 0.4068866246940981 4.2129345938752094e-05 18541915.137417216 1919.8437839496885 23431 4919 734393 LEND_20191011 6018783.071350582 702.9256700356954 0.0053341082587858805 6.229634092807797e-07 2885689.1407039585 337.01579683098504 41511 5805 753503 WBTC_20201106 1908957735.6342576 122813.28462484214 15562.898461220773 0.9988621420345841 120238154.1112891 7717.157602046436 None None 172604 POA_20200502 2243777.920429737 253.21600996762666 0.010157187011401222 1.1501041046886334e-06 484508.77879141417 54.86120661362222 17245 None 548176 MDA_20210930 11578636.07147055 278.8500891155687 0.5905061348549236 1.4206121512607375e-05 788643.174361795 18.972810109457324 None 390 734228 COTI_20210711 84621987.77292748 2509.566311192006 0.12634935489925656 3.747321913723936e-06 6755486.5871576965 200.35704136446773 123402 5428 94644 CTXC_20210131 1269492.0294984377 37.10994474561431 0.12759188223763374 3.734637093388783e-06 9968252.110789606 291.77251276747296 None 20080 607104 KNC_20200907 257998772.1241255 25039.161027382135 1.30259482274477 0.00012663381168707982 72993397.56574348 7096.16835591528 122382 9037 55300 GLM_20210318 434484729.1593769 7386.319029656708 0.4361854463431671 7.400213578458482e-06 9013741.221190589 152.92488719416545 152913 20770 153739 GAS_20200531 20829083.493651524 2157.9158628801406 1.497969153135595 0.0001551008483148706 14006540.662425177 1450.2477131464857 320035 99524 218825 VET_20201015 722808200.1531789 63322.92429605249 0.011146373943905065 9.764842691813236e-07 101855547.14458098 8923.111678836667 136696 67783 73117 VIA_20201030 3846866.27128606 285.3936417321688 0.16592615107770176 1.2325624876660345e-05 168583.3243236215 12.523009800307296 38128 2139 3160666 ARPA_20210218 39197966.97986737 751.9885509668939 0.0402714414400668 7.723638216657766e-07 18451117.978959676 353.8730049542467 24097 None 879227 SUPER_20211207 461455462.88438183 9142.376454347284 1.6055043587216768 3.179341496323004e-05 182881604.2579447 3621.5602291753225 211566 None None ONT_20190903 477249837.6891189 46232.941965429934 0.733036883899946 7.101253510682519e-05 39179230.39029276 3795.46586898458 81439 16280 256067 WAVES_20200903 328681884.4491701 28810.52953906725 3.2861130473088265 0.0002879802567590733 70254071.86415443 6156.7527843810685 144365 57014 140835 PSG_20210508 67292016.66670305 1174.3356426597404 31.94552286982081 0.0005574179318944175 14680362.314082153 256.1578733246234 9051576 None 27720 ELF_20210610 112832846.32118194 3006.021128424007 0.24483579150905885 6.5370337778578016e-06 38949369.775221005 1039.9351511377076 48752 33384 236117 CELR_20210610 220569202.1205099 5876.216260048687 0.03928169819501237 1.0488082088394774e-06 41022763.47538445 1095.2940697387269 55602 None 140975 CVC_20210729 175276915.1656542 4383.3474055179295 0.26204268598030306 6.54963772627414e-06 103315494.9615614 2582.3237957490346 None 9857 183364 CTXC_20210821 37301426.76292649 758.4890224780158 0.20456725861760003 4.16106218767813e-06 4157770.329603413 84.5723847524558 20406 20610 1047878 RLC_20200113 31885779.754999433 3909.2617223395437 0.45427426262871035 5.5714627292053115e-05 591817.8769669709 72.58371242338796 27624 3526 255946 MFT_20190511 21951121.351493895 3444.8660620147502 0.00334953111465194 5.257628653558407e-07 1563402.9309355838 245.40127454819194 18011 1978 690074 NEBL_20190104 18794516.260678053 4984.018166101659 1.2826163664514278 0.0003401529661115655 248824.16591077796 65.9887713026408 39941 6188 492051 ADA_20200318 808050684.4755495 148800.40882648368 0.025700793838345847 4.778303503881124e-06 106703913.57145049 19838.4410731924 155600 77156 42201 RLC_20200308 39304989.65362982 4421.94655288408 0.5587418654815933 6.277693867793437e-05 993144.9265359278 111.5839030563953 28445 3567 249120 XVG_20200106 56180138.64703306 7649.567848777411 0.003480726131712529 4.7389940724256985e-07 1153407.3555786083 157.03592912349987 298808 52179 314927 PIVX_20200901 33217478.399162933 2842.703986380249 0.5181861282409762 4.439254729376668e-05 920942.968481661 78.89636957663188 64468 8615 359685 SRM_20210809 212350926.86593366 4827.300203665132 4.246019032146801 9.654406800596374e-05 76934766.75723936 1749.3080689462804 None None 31841 DGB_20210509 2104044350.0063748 35878.517108037166 0.1473136493391491 2.508704733223232e-06 127697922.28195839 2174.6551218345635 213065 36363 157922 HNT_20210821 2249264715.390297 45774.32851643862 23.93011611069962 0.000486757763524199 103296506.85587342 2101.133835892493 73683 47327 2626 YOYO_20191017 2237937.724160071 279.5016312765382 0.01280649105847975 1.5995799122442478e-06 498043.19442429685 62.207507551692494 7524 None 1389635 KMD_20191030 65199672.79401624 6928.616595366136 0.5584495269109548 5.9353765507470874e-05 2809049.2056406625 298.5545511566492 98190 8404 214923 FET_20200417 5078892.951123924 715.8735983353963 0.014923717505374119 2.1052336511800715e-06 1893365.707670995 267.0901000601208 16658 369 956265 AST_20190430 5741158.807923008 1102.8795786992089 0.034467751198163775 6.619683835081448e-06 587987.3589126033 112.92556896584976 31570 3593 448937 MDA_20190512 15324236.38551139 2103.8752751868738 0.8600258718120534 0.00011818964297983716 1667996.92511702 229.22561696391494 None 360 1527812 FET_20190806 23938088.58821816 2026.4927066140835 0.07764385263731381 6.578159934248784e-06 5259782.723824964 445.62049410839666 16264 293 429380 LTC_20190615 8233268204.231973 946289.4634298569 132.09764512248688 0.015214162632269289 4955175385.5437155 570705.4362488886 446944 203953 172197 AERGO_20210314 75718715.4827609 1232.853013338756 0.2862003411741825 4.6648751380455266e-06 68925227.79585603 1123.4353537451952 None None 593763 AGIX_20210704 191481261.0570525 5830.0 0.1834450605314159 5.28137381936891e-06 745102.4051938496 21.451459767518166 54939 None 164854 ELF_20210731 113283505.15061834 2715.248330883333 0.2456709641160371 5.8775401445290805e-06 37576115.787495226 898.9875128758003 87961 33395 837846 MFT_20190405 24688163.280416496 5041.958235422351 0.003717820811928413 7.595483531805633e-07 3754482.0569698587 767.0382214946674 17238 1904 690472 WAVES_20200315 80121500.90149488 15500.66084747458 0.8036724948612086 0.0001549939584374221 42905649.20710882 8274.659705861513 141183 56865 51296 VITE_20201015 9509326.741952213 833.2684958485876 0.017611573930473717 1.5428716984715177e-06 431379.6527354535 37.79125364544294 None None 392905 INJ_20201115 17395825.215792 1080.9955832681196 1.289711387047709 8.017571264142802e-05 13415717.257379672 833.996429362789 28616 1706 209398 MIR_20210909 271837392.75020885 5867.603403483412 3.488880609114635 7.535879618687096e-05 39548904.69087061 854.2447225700914 60222 None 15699 ZRX_20200721 278556976.6878537 30406.021493730168 0.39652541645060235 4.328292358269643e-05 51342971.27277888 5604.3668574902285 155310 16127 62408 1INCH_20211007 563988319.0595027 10160.925833817377 3.1241571236446357 5.6317407781430675e-05 136345909.2645514 2457.830341907961 273715 None 4022 TFUEL_20190531 0.0 0.0 0.014700988199545894 1.7717545928641593e-06 36248315.25655366 4368.625984025397 70195 3992 221576 WAN_20210616 137617160.55458793 3407.618156996316 0.781922797797059 1.9372660580392277e-05 2672700.3669141186 66.21794016901839 121827 16570 180661 WING_20210513 57392996.91892182 1112.737693167591 36.02673355531459 0.0007147623574945529 7525703.657353977 149.30828185344035 10127 None 317115 HC_20201111 39010736.52839589 2550.4582272282105 0.8733670038829142 5.717755416483962e-05 7770004.973246609 508.6863577896757 12750 844 947042 EGLD_20210828 2764486667.1258984 56366.661106103114 140.67812985106622 0.0028687322052200637 79079384.50403625 1612.6001769847232 311158 10204 47013 RCN_20201129 20691161.968448985 1168.9239333214152 0.04023673444773029 2.27296599096261e-06 361074.4438147442 20.39703127655154 None 1130 1886227 OXT_20210107 0.0 0.0 0.28282237257809706 7.662615998626894e-06 34036606.59788431 922.1669554585874 54434 1822 172682 RVN_20190618 235905240.15806288 25309.05926557403 0.062378591875844484 6.694894538565133e-06 32132185.2465522 3448.6445597789975 25558 6665 184956 XLM_20210809 6743223499.822537 153324.37825110808 0.28771323708853314 6.541893975837213e-06 560777400.4091322 12750.703911455053 608683 197205 26468 CTSI_20210624 138932311.88903332 4119.700414374687 0.377987594301059 1.12199672577514e-05 17536426.61210608 520.5412436077913 44685 3735 123787 DNT_20201115 45236402.17552875 2810.443435877489 0.060378960780507994 3.753495749314482e-06 13540065.046799403 841.7265872355009 58983 6061 606726 HIVE_20201106 40895051.704683416 2630.9936207603846 0.10979816326844578 7.066466615026504e-06 2442710.366425954 157.2096539750478 9356 96 141285 GAS_20190813 25131437.42513939 2208.19219994337 1.803823707779279 0.00015851268222179875 1286060.4053231222 113.01375154781272 324432 98238 192021 LRC_20210523 393833688.13384944 10478.36550452949 0.315947531908142 8.41296792427703e-06 55756201.64477168 1484.6614980153236 77456 10708 181705 REN_20200605 84941299.6550627 8690.579539861077 0.09717299207506327 9.939849456802226e-06 6724247.916806483 687.8249869227245 12973 882 397347 IOTX_20210310 206575983.104966 3779.4504764637227 0.03391386535697738 6.199646636018755e-07 58671014.467221245 1072.5393689123696 40630 2318 431436 LINK_20190522 433455832.6973599 54472.01464340899 1.1887263300600772 0.00014938339982531807 50584004.997371405 6356.728586054223 12872 6948 356861 RDN_20190914 7988430.931892287 771.4608029922722 0.1578930544123972 1.524808858991245e-05 104829.5390733419 10.123625162478971 25552 4382 1279478 REQ_20191024 9132837.290586986 1223.821560123395 0.01185346673840968 1.5876969574240011e-06 212571.09618267664 28.47255491525519 40590 29082 915310 HARD_20210430 104527837.16358565 1950.47534152161 1.7067797198512944 3.184630596982456e-05 22348226.777070366 416.98905813552653 30195 None None CHZ_20210408 2424865425.890556 43049.8962241653 0.46076439292357796 8.1996721912851e-06 2040889874.1547997 36319.273371799056 258999 None 38872 ARDR_20191108 54748611.038015544 5938.560284565353 0.054803442155909744 5.944507794336125e-06 4835784.434934707 524.5356337913678 66178 6490 1381120 GXS_20191127 28225901.67597996 3937.899673357594 0.4341395168986622 6.0588914176096175e-05 10235805.513466533 1428.5185237431374 None None 538448 DCR_20210823 2343800032.3714404 47562.84814037111 177.01220355104945 0.0035921172626542444 18412536.074928623 373.6464907907927 48041 11517 147946 VET_20190130 214890300.01930305 62954.88947329139 0.003876332184683175 1.135525131442942e-06 8163121.289309107 2391.28870628125 104159 54654 665875 LSK_20190904 152852403.16227347 14385.685416498107 1.1315963149535035 0.00010663100435495199 3426085.223990221 322.8420803533183 181944 30950 161832 COS_20210909 78083939.26808645 1685.4398990937354 0.022716824140233252 4.917980843427726e-07 12274808.633504637 265.7381742432999 None None 416507 ENJ_20200320 67179334.9359034 10856.559479508715 0.07417944397697936 1.2002382551198968e-05 42517894.32608994 6879.480427644532 53848 15271 111026 MDA_20190723 13050516.751887914 1261.03295409258 0.6650847618781451 6.430877310360535e-05 489755.41873791337 47.35572351851331 None 364 3017941 VET_20190205 209355331.1057218 60419.44813698935 0.003779665537633239 1.0910352875274904e-06 6373886.298938182 1839.881016346253 104115 54657 678197 DLT_20200430 2758615.77863534 316.09534245460696 0.033884085245514554 3.864220814369814e-06 271539.4052398565 30.966992735575 None 2572 None HC_20190318 59041008.49844794 14827.229448909824 1.3439235973418133 0.0003375054736762362 11793757.014595792 2961.818332163117 12375 793 596410 FUEL_20190701 5461022.467599567 503.50517666710755 0.006796596909589735 6.294398014100851e-07 530780.6732026158 49.156141812908075 1 1516 None BAT_20190708 398902008.23460495 34919.87007161023 0.3130138172391976 2.738412923881068e-05 25548158.93938597 2235.090106821686 None 28542 46382 DLT_20200412 2373299.3986482765 344.83694102218595 0.028821349895513337 4.1880500689225225e-06 25439.95685926151 3.6966975337405 None 2579 None ENJ_20210117 184530255.27180192 5085.4846880934765 0.1979756001648004 5.470529313271961e-06 30226042.506818503 835.2163166577648 72219 16149 72441 FUEL_20190703 5700543.359840431 527.578661460705 0.007131949678704836 6.594402030986872e-07 810058.4457774966 74.90029095414585 1 1514 None BAR_20210725 62626851.772172675 1833.0371747184256 21.225065355168493 0.0006212308100910597 29401510.303847104 860.5450093236982 None None 42486 FRONT_20210814 57398643.193085834 1203.3338885020826 1.248154601038945 2.616096384210497e-05 50752226.94404062 1063.7521769211698 71426 None 254647 LUN_20200217 3427685.990898238 343.847287874136 1.2762465212785887 0.00012828614318204489 724763.1288227924 72.85196470042472 None 2155 2036039 GTO_20191026 8506148.680408107 984.1378444639489 0.012578991143312953 1.4529136748316419e-06 5250311.9658722235 606.4278101032901 17220 None 1047356 CVC_20210724 143402713.35454705 4290.080846811304 0.2144263937061112 6.412777736517774e-06 38552202.92441252 1152.9677122968 None 9838 183364 BEAM_20200331 16187304.634292645 2520.3091814281124 0.27704877124513777 4.3214202014257e-05 106911771.18739936 16676.150040406937 14953 1481 257695 AION_20190515 66302177.75248143 8297.173559544108 0.21492294971091683 2.6887964670497077e-05 2863785.053096979 358.2742161092625 68859 72524 275245 BEAM_20191108 31090271.93434231 3372.34955636446 0.7041874878674769 7.638293956779846e-05 18164567.77808305 1970.303515431969 11829 1392 213970 WPR_20210427 28217996.684601765 523.8269712334625 0.046358961870852165 8.602629047477215e-07 1470525.512464103 27.287896402472807 33604 None None DNT_20190714 8609984.39884943 756.0556824909826 0.013154273484801516 1.1533285687678541e-06 600601.2035877616 52.65897256389418 60656 6351 784792 SKY_20200801 10664171.460307233 940.9308459786662 0.5910577206332801 5.218598890775939e-05 495372.72305108584 43.73771719393548 16279 3826 1078195 HBAR_20210527 2303585325.8740654 58795.718729568005 0.2750408009152128 7.015724831916155e-06 163792190.88208818 4178.001725640909 108031 19674 36966 NEAR_20210112 370070763.5328673 10415.628553234192 1.4831589008894277 4.1724204350496596e-05 58627161.98886642 1649.2984573980557 None None None REQ_20200312 9067910.645826006 1143.2842190165218 0.011763212959776503 1.4818519041616344e-06 88882.92333795971 11.196883848501765 39754 28274 787523 ZEN_20200319 41744064.46541379 7756.586298836954 4.827268397727524 0.0008959696206048293 2649469.7906717504 491.75729368386294 57929 5084 39151 OAX_20211204 15962545.767230947 297.2971800231477 0.2771099026832787 5.156500889954167e-06 1222887.6958739627 22.755669974361385 14739 None 1497869 CRV_20210704 619572067.2763301 17871.987752389243 1.7628137502653614 5.0837377473697266e-05 86574690.93319452 2496.7074609991873 138960 None 15400 MITH_20190701 17382313.494138792 1601.9809552445615 0.04104169559582058 3.782738264084991e-06 7478620.556929153 689.29082321222 75 2073 608806 THETA_20210603 7974909582.4045 211935.3114558839 7.979033462594432 0.00021189522593548804 314563843.5933699 8353.71565012581 166483 18361 16282 OMG_20210710 588131737.669881 17304.8140964855 4.193641128626938 0.00012339575517213895 162728607.5367314 4788.20642949963 326331 5007 166792 VET_20190207 201053350.4234147 59033.76837585112 0.0036255398416117695 1.064539729362318e-06 7412033.657900834 2176.3391519367196 104138 54658 678197 CTK_20210204 35699040.19238623 952.8908487501551 1.0270931570476265 2.7382352344809867e-05 7595606.266718752 202.4992237954268 12807 None 214497 CDT_20201111 4792508.268346276 313.25449824491517 0.007051605634268425 4.6163906761259657e-07 380257.4851987742 24.893863897719882 19194 293 402907 CAKE_20210511 5959943355.87206 106744.14403208715 36.06670364229877 0.000645484457553858 576261699.4916755 10313.334265158825 None None 1709 CMT_20200207 12390963.9154602 1272.265727488392 0.015272007456135711 1.5682983253712982e-06 13689008.113104027 1405.738476846405 287596 1641 908642 QKC_20200306 13031370.414535556 1438.9545974381776 0.0034942536423960666 3.857307676354182e-07 1759180.0978264154 194.19594539743454 50474 9198 398743 ARDR_20190104 53745172.570508204 14252.397492778971 0.05367239276373249 1.4234048523331322e-05 118606.95852100031 31.45485259478599 70661 6617 806985 THETA_20200629 223671076.7479819 24525.77226147994 0.223892668981754 2.4549092362423036e-05 14750870.14216712 1617.3842367999985 71611 4273 93022 QKC_20200106 10506973.159740832 1430.8446253415868 0.0028158143359139393 3.833719443012343e-07 1571208.00406437 213.919312696556 50964 9207 296858 XLM_20190805 1612193501.8472726 147286.92355601137 0.08218519605889492 7.50553571270778e-06 142259464.14419842 12991.798277633872 275609 103246 68303 DOT_20200903 5597505846.232816 490651.7013866564 6.158884269227721 0.0005397370838030488 485766767.0734896 42570.42782548606 None 4259 45901 FET_20190830 17013375.71039422 1793.9281122651707 0.050013408638290534 5.270588257469906e-06 2534691.5883255955 267.1146815517922 16218 302 378000 WTC_20201124 11062950.750893397 604.0811522656779 0.37897257857048666 2.0642085666495456e-05 4834349.364101557 263.3199850289211 54855 19259 748902 BTS_20190923 91849272.49110179 9139.881491122229 0.03388366643410516 3.3732274003021418e-06 10138949.317788117 1009.3648429561042 13553 7136 140611 BTS_20201014 52663790.141727924 4609.763116170847 0.019430187021115253 1.7004653061019895e-06 17655261.424903385 1545.1297247207747 13176 6927 91611 MKR_20210117 1344002663.690122 37056.47619929289 1488.8790360109044 0.041141213380000694 217876326.91834924 6020.432983068038 84547 19123 39551 DCR_20190405 225430710.5100441 45974.55995721754 23.481717762823912 0.004791071454743771 3091018.5610270486 630.6732302721832 40372 9403 258760 STX_20210624 681955113.5641307 20242.765002894295 0.6479005154441277 1.923190781698891e-05 9838606.203057716 292.04355149363727 66546 None 53312 CHZ_20191020 27359047.60431729 3442.8705136967756 0.007596529169079484 9.55637855133193e-07 9995678.501980098 1257.449099664384 12344 None 374824 FXS_20211230 951924700.0175916 20524.786326315047 26.573288451114024 0.000570539510719162 22968531.22490025 493.1438798438591 25938 None 80112 AXS_20210301 77803001.05590644 1715.0299928344657 1.3941853857317288 3.088834400393495e-05 11323875.845646558 250.88182400836402 None None 23096 ZRX_20190719 144146864.01430455 13431.007849117212 0.23892158208556122 2.2399314515145664e-05 33735803.29816348 3162.7903260160065 151423 15983 206099 XZC_20201018 43137273.34129299 3797.5272765324808 3.888946499297875 0.00034219578834036076 4143131.351628083 364.5619962434568 66892 4175 317901 SC_20190706 120404219.02424605 10955.000306374925 0.0029194279054466127 2.6570814406957513e-07 3528189.2679725518 321.1138115691081 109575 30849 228253 EOS_20210825 4929295326.665782 102576.60348075836 5.111794763117746 0.00010644162145657154 1780707126.0030942 37079.2182813375 None 92409 70056 ANKR_20200526 11508132.767851582 1293.2983614131351 0.0022161639254019007 2.4936460424742333e-07 12242534.63994434 1377.5401586872492 18112 None 5986 OMG_20200321 74082808.67461152 11988.061984487838 0.5300903065748716 8.55695505545115e-05 166891524.58138567 26940.377087935514 None 42856 453059 FIO_20210509 83640818.20877637 1426.2572588000417 0.35521344176106234 6.050038655035759e-06 16963263.920540914 288.9203796062423 76458 436 101174 ENG_20200315 7800520.482825699 1509.1232824846381 0.09409590762278654 1.8161371655648105e-05 874979.9779226368 168.8791465193924 61265 3604 363885 WTC_20190625 44278827.90157422 4010.436134457709 1.5176394748959443 0.00013740784939525962 5216315.158557595 472.2878256408269 55650 20130 829543 OST_20210112 8728578.122961152 246.19658324997783 0.012603358747519906 3.545383279851549e-07 1989024.8175341627 55.952190781549135 None 731 741572 FRONT_20210422 83065809.28330898 1533.0486746949819 2.196891204429658 4.062166040537421e-05 46117866.56388524 852.743326752434 None None 149576 ADX_20200913 15848243.105053227 1519.853734348565 0.18118116615723873 1.7352183097134973e-05 5843845.217953612 559.679984205667 52784 3739 10625 ETH_20200117 17869543294.566414 2053420.1217370569 163.80590111423027 0.01880935516799809 14605493158.53319 1677106.2968668065 449294 449685 19999 AMB_20190608 7045309.776568825 876.3614674281969 0.04873176887663853 6.069976633123031e-06 3473089.7561520073 432.6043185082889 19319 5688 617435 HC_20181231 37362924.035023294 9830.595178759884 0.8525029020004913 0.00022430286533326504 10731475.945084887 2823.5690436818727 12145 760 383086 MITH_20190730 13746987.722427275 1444.4787882102544 0.03022532560997208 3.1768258803585813e-06 3518406.514327633 369.80130558628497 77 2078 572627 UMA_20211028 707103639.279303 12081.71819323076 11.113020141448054 0.0001898623078211874 41679813.83184737 712.0859624970365 46641 None 258925 OAX_20211021 17891787.672869574 269.9108139074027 0.3128176396001293 4.719429702391623e-06 855162.134249374 12.901694360638094 14382 None 2965045 BAT_20190513 442290077.3700276 63729.11575838112 0.3537531868601444 5.088811891728882e-05 92845349.64454223 13355.993300200671 None 26730 57848 BLZ_20200607 5584362.965617784 577.5224119727083 0.024637773786787633 2.5479838310276187e-06 569537.7215760499 58.90032590989604 36153 None 740381 ATOM_20191019 674258267.0816431 84721.08952127173 2.74525899644822 0.00034494851288158934 140761942.23773086 17687.082606067426 28883 7065 99736 XLM_20190419 2268389559.273902 430217.76869056723 0.11739702492074405 2.225727474671593e-05 263281779.49982324 49915.53155702157 269035 100317 70841 STORJ_20191030 20025687.17408281 2128.392779256488 0.1392728555090592 1.4802355466510498e-05 4517188.784077081 480.10097765888025 None 7828 147955 OMG_20210727 533306541.15473384 14244.910683453683 3.789031959907445 0.00010154988411816777 237179981.93101546 6356.663109495673 326130 5003 225112 VIBE_20190908 2781231.180926237 265.6747273403467 0.01486242578129268 1.4197204979364835e-06 317864.5574838795 30.3637397063 20319 None 1398469 CELO_20211104 2244478104.64888 35655.735117434335 6.466193575751356 0.0001026077521176279 64921288.48907488 1030.193018258035 69393 None 43938 FET_20200310 9581769.972172795 1210.2820741316477 0.028548654274730204 3.602272841732989e-06 5225267.568702384 659.3249290277676 16597 359 523257 XVG_20190430 112683769.5439215 21650.53236809436 0.007072276668629986 1.3588219209582904e-06 1921389.0221130354 369.1633747187049 305245 53127 400359 GTO_20200605 8268776.965848352 847.1828483043586 0.012530021458949244 1.2818256203190666e-06 10452618.618579535 1069.3065760992652 16634 None 1410862 RSR_20210527 572041571.9123129 14600.542461354013 0.0429670748326919 1.0960016581374161e-06 138018953.69380888 3520.579483053646 73712 None 74651 REN_20190318 15331455.381054228 3849.9588051421897 0.020345461325659654 5.109303749080676e-06 191598.68101533895 48.11568750205492 5774 804 2336942 SFP_20210704 76984483.50462529 2220.6917902147475 0.7114472916552159 2.0482530786732724e-05 6336582.838285021 182.42989268522524 357804 None 22344 ZEC_20200407 363289927.17549413 49856.887776249976 37.36428705377119 0.005127769660345046 572733038.3556548 78600.27125182215 72675 15665 146498 VIA_20190225 7458676.750134866 1973.070730216078 0.32115775545831715 8.526272784085929e-05 151038.84362073283 40.09862317867667 40592 2224 3168832 FIO_20210304 44802240.60708423 881.143598715566 0.20201724143690233 3.973153947442457e-06 8435968.336978631 165.91356589251805 56112 264 389436 IOTX_20190701 28043858.45036099 2584.858450848662 0.008029588373824167 7.444393752802665e-07 1702264.1682945434 157.8203532995853 19968 1742 776154 REQ_20211007 149037941.38466159 2684.7117555782606 0.19330673566232462 3.484586583704495e-06 6137217.585367261 110.63073402989606 46705 28873 250453 CDT_20190904 9042430.015466623 851.8287510100464 0.013404549425272288 1.2627557609239506e-06 461532.43139990646 43.47798035677961 19712 298 193122 STORM_20190608 20010936.636836268 2490.143785264416 0.0035039899624814868 4.364532149202666e-07 4576109.163815386 569.9952276572398 26878 2575 4240387 RDN_20200905 20262712.063425276 1932.4963958769927 0.30336155615663724 2.8932213619050776e-05 1104732.4638337647 105.36060020418464 26416 4388 895755 AKRO_20210127 48202150.406619646 1479.1749558939712 0.019705996566218617 6.050028843103974e-07 17052164.945831865 523.5263764153077 26476 None 227046 IOTX_20220115 969318853.8392494 22489.29958552216 0.10224514690534427 2.3706628366079e-06 26896929.66625017 623.6340159759988 216269 16960 42206 IOST_20210806 596048215.9157459 14547.822380505731 0.026355162364902804 6.441301267623463e-07 78409296.60408108 1916.3528367479064 250452 53591 221575 ETH_20190324 14458951512.820686 3610344.81936821 137.19806866408575 0.03426326762631891 4329648785.084198 1081268.2459438976 440815 433327 32450 STEEM_20190903 53981921.30727471 5229.540370844564 0.16612512133470267 1.609235735394054e-05 509550.7385829511 49.35961827663855 10882 3768 235183 QSP_20200314 4083918.3990224265 740.1128055513941 0.005773560570214451 1.0378391365916029e-06 68877.21260084787 12.38117553062149 55423 8329 347894 COS_20200718 18650694.30775629 2037.6395056987217 0.00948113197997038 1.0356660687994892e-06 2729084.5015755566 298.10999605736953 12404 None 262147 ENJ_20190812 63673726.17932315 5517.40564406343 0.07255656580728405 6.282879063571145e-06 11543276.80231959 999.5651163939096 47123 12748 22336 LTC_20200407 2879838587.511534 395220.9475984668 44.682230833386114 0.006132063681403659 3675368960.07645 504397.2983328144 133268 212925 140377 STMX_20210826 295338433.8224824 6025.354815207049 0.03179946521942634 6.489136117928896e-07 21851025.85714389 445.9014644584914 None 4799 93146 EGLD_20210704 1653714085.269325 47702.9802024903 92.10028029219158 0.0026560586527888436 64274504.48766631 1853.5975488519239 260933 9496 31347 IRIS_20210710 79114316.00299622 2327.80930379056 0.07537045067573399 2.2179110070259897e-06 4800782.254456269 141.27164835862794 26113 None 777699 AMB_20210729 4503958.024682014 112.63555559152218 0.031179536484240645 7.789918093549106e-07 278803.10126432084 6.965636978517227 741 64 487480 AMB_20200430 1310431.5958746963 150.15549728576573 0.009102989078634785 1.0382829908181049e-06 257940.14651501318 29.420541369674304 18933 5475 839960 COTI_20200629 12992457.356121419 1425.0198085051709 0.02513950002538957 2.7544816142592455e-06 1672531.062496035 183.25567558105874 24792 1008 313958 NMR_20210909 241043061.32735512 5200.824349701444 41.53085406219531 0.0008970542467298351 17683922.34105194 381.9675273502602 30222 3583 1411463 MIR_20210703 292306217.7664865 8643.45510205658 3.763220535794612 0.00011110599664496297 21280900.32463308 628.301110068007 48607 None 16054 NEAR_20210120 567192486.5989544 15662.746323220686 2.1784881049997225 6.0443232902145856e-05 51920300.96978856 1440.5545004648254 35570 None None EZ_20211007 0.0 0.0 5.167018506979538 9.314172786314802e-05 2276391.9441045993 41.034704768572 36990 None 194935 TFUEL_20210218 0.0 0.0 0.05831882608978008 1.118493646690031e-06 14060054.487940563 269.65703309369337 85910 3876 42831 STORJ_20210202 63454483.10755163 1900.4728557105257 0.44340109663064675 1.3277932773389255e-05 35991802.33542329 1077.7978120359792 83785 8688 105291 BTG_20190221 217257649.05274144 54717.12958783451 12.40485279328273 0.0031242073214337637 151425836.5832875 38137.14803322108 72775 None 354755 STEEM_20200610 82063788.91856527 8395.090837101043 0.22888104411790236 2.342757266772625e-05 6439911.72001148 659.1699211079848 11471 3868 215539 SNGLS_20191108 5479676.069696418 594.3422946056339 0.009495019321386371 1.0298586082498585e-06 106093.57621092624 11.50723121697466 1094 2160 None XVG_20190205 91308606.53379 26357.0706961836 0.005873599438978045 1.6954686040129062e-06 826993.1033429039 238.7191801245906 304909 53576 374789 NBS_20210202 0.0 0.0 0.01426676819222241 4.2713251255562544e-07 5788945.021741004 173.31511936463568 None None 745524 ENJ_20200317 42965684.1254574 8512.69962190386 0.04648713309893209 9.231406031121826e-06 7996635.917248099 1587.9704364230913 53808 15258 111026 LPT_20210707 410925161.95180154 12030.742478870929 17.21845803520908 0.000504091776685996 6966529.914812678 203.95382878728378 13910 1166 101406 CDT_20190923 9086289.822876655 903.8762817462497 0.013469380458891313 1.3399336828937156e-06 484980.5297011204 48.245852827269296 19647 299 180702 IOST_20200610 65641219.78576086 6716.445348175501 0.005452269485555862 5.58077843751393e-07 57488320.81412655 5884.330957196843 191821 52182 420210 DCR_20210805 1795546772.971132 45035.90071127293 136.20299059019152 0.0034246707209537124 25347569.383675233 637.3360697842608 47652 11456 143950 ENJ_20200907 147012536.63533944 14276.545312919938 0.15936603464780796 1.5493020598978258e-05 7356968.708689718 715.2193251320008 65310 15855 86087 BCPT_20190629 6550839.393164058 528.8256876751302 0.0563956143983992 4.552614982015334e-06 695869.2748789318 56.17502212065441 10961 2811 1175613 VIBE_20190807 3289047.5843371525 288.0243818077187 0.017525630845590452 1.5304511285811304e-06 1248374.8496068928 109.016144086698 20397 None 1550581 ETH_20210219 221863277318.4042 4292395.327482576 1938.5694368074617 0.03749618273140912 34799956643.698685 673107.4515990317 711291 671470 7379 XVG_20200321 38437900.17894468 6217.412293423545 0.002360889734272816 3.8110539084523137e-07 1287006.482536496 207.75434846748294 295814 51899 327824 LSK_20210115 193843979.61158302 4976.756910002917 1.3557473376505604 3.4563178323033756e-05 7973354.818832979 203.2712709683194 177532 31041 299861 POLY_20210527 216515763.47303012 5526.255002014153 0.2572664163733078 6.562336859703585e-06 2875046.463738918 73.33651880538208 46616 5591 144088 NEAR_20210108 370238624.18960017 9446.074549766072 1.500323513959518 3.800842983690135e-05 39715582.946275465 1006.1342995693909 34679 None None LUNA_20200901 221914872.50649557 18991.155352935417 0.5091588403246563 4.3673440554868363e-05 11470520.951254735 983.8916173557336 11364 None 170396 NEAR_20210704 924846857.9030004 26678.100976383164 2.2522547142209737 6.490857867182619e-05 45881688.2084241 1322.2816894859016 87213 None None ONE_20200207 25294452.549471803 2597.131582202678 0.006303544881594827 6.473446909576713e-07 4633672.702068623 475.8565980989258 71061 None 378695 XTZ_20200322 1162694691.681248 188571.27556900692 1.6496005904340456 0.00026769877994829684 154940565.04409888 25143.904813886737 57458 22599 103142 SKY_20210324 51822942.21408898 950.7025074641804 2.5686856134762395 4.7050570212257117e-05 3783667.215508598 69.3053673244896 18608 4213 346885 LINK_20210806 10648767743.06088 259905.78876123458 24.05458570783196 0.0005871142063003211 1105770147.4108322 26989.172473518083 415046 63479 29120 NAS_20200730 19630645.948167965 1767.908315474573 0.4319838716188632 3.892043123464631e-05 7172962.774976459 646.2621009111733 23528 4923 784060 UNFI_20201226 17504749.720368303 708.8126501705921 7.1578387587880945 0.0002902829705227487 10401110.656585043 421.81242130138736 13058 None 121184 WTC_20200718 13367891.128557151 1460.4787694203758 0.45740591313515516 4.997059895042345e-05 23174738.36445059 2531.7896497082847 54529 19524 745990 GTO_20190614 23268158.4565893 2828.115700206779 0.0350801044382698 4.261956928760802e-06 10825738.84577672 1315.2421699286333 17384 None 1170930 FUEL_20190830 2434527.073890224 256.5451649919297 0.0026464536025278267 2.788775213820449e-07 163841.7246378382 17.26528438749736 1 1503 None FOR_20211028 45856990.58760719 783.5219714521444 0.08145653696588472 1.3908834003884644e-06 23147841.059448548 395.2530893610378 37000 None 157734 ALPACA_20210930 122965639.27941777 2958.2500678134825 0.8460333401445626 2.034447223766236e-05 9308484.7087613 223.84012514180583 49026 None 21699 WNXM_20211125 182354670.1772573 3187.604092467971 82.34317864065761 0.0014395925652837148 2770140.31242123 48.42991811085204 36409 None 109263 POLY_20200410 12675647.148336753 1739.2191898438948 0.020418824825723957 2.800379750046886e-06 1137350.9540955934 155.98422571965426 34831 4989 460641 ANKR_20191203 7665888.926836353 1048.5395730120576 0.0019182807493500476 2.623778670315044e-07 1011268.0185733858 138.3188283572993 None None 5301 MITH_20190324 23866199.89885966 5962.712025557572 0.04670571266045845 1.1662237582653798e-05 3287245.1076998487 820.8125142444984 55 1997 567173 YOYO_20190616 4850213.238682563 550.0832871327387 0.027733643205860754 3.1441448488203185e-06 1149824.7091049787 130.35486933122303 7497 None 3542595 UMA_20210110 543230415.9917198 13424.477501068359 9.7197415686078 0.00024049832955663525 22917229.199824896 567.0475188790308 None None 192669 XVG_20190922 70586324.23818639 7065.154186720973 0.004429378656764023 4.4353971971852016e-07 2728614.96861386 273.2322549463233 302082 52673 284381 FRONT_20220105 47714965.26128947 1031.45165538558 0.7042821936196529 1.530685416370902e-05 31943566.3466419 694.260789164394 None None 235352 MDA_20191108 14241473.362693764 1544.767008731298 0.7255364319514057 7.869865112742494e-05 1135214.012665358 123.13621701590702 None 368 2018091 WAN_20190314 46651759.13702439 12065.950220954373 0.43889941663842663 0.00011353403356173591 8522486.05540921 2204.5876142992815 108608 17230 537237 JST_20210511 173803757.58130226 3112.8953409511355 0.12032716801597025 2.153490863653269e-06 257931445.99078366 4616.189523518974 None None 74071 ANKR_20210819 753371291.7117252 16722.8337376338 0.09798797203897049 2.1753621209652874e-06 98471916.13581839 2186.1058238406667 None None 5363 TOMO_20210825 282627430.5293809 5881.360306688631 3.363108334581519 7.003096344231274e-05 27824310.284247894 579.3935438497243 51266 2247 146029 NANO_20200207 129723264.12269974 13319.457519017087 0.9726458910687513 9.988620142986091e-05 5350604.7891544895 549.482183237112 97607 48799 259718 KEEP_20210704 115106761.99402058 3320.3657376355154 0.263708050161225 7.60501538343504e-06 7416586.267072105 213.8852136640227 None 2723 132559 OST_20190513 12691057.840486461 1828.9147532677255 0.020371893585094055 2.930591922101668e-06 318667.14541539986 45.84175537206237 None 748 1072673 SNT_20190325 80429871.7705479 20140.07552985438 0.022955681581835106 5.752710960465122e-06 10112898.25730184 2534.2998612110136 None 5755 348070 DNT_20200903 10055770.934797922 881.4427806687588 0.01340452157617147 1.1747123454562077e-06 637104.8964396137 55.83302491963844 58367 5991 478994 SNT_20191017 44110094.98220722 5507.941443877598 0.012378091530843027 1.5456630716084162e-06 21613318.410106577 2698.8738965271523 None 5690 373858 COMP_20210210 3624529.4103875505 77.86471194393687 3.9204589531977224e-05 8.442156121290185e-10 284.3313102050898 0.006122674257218012 2094 None 2426495 STORM_20190523 14857435.200797994 1940.0443369589498 0.003307823672062414 4.3162393228033034e-07 2249122.2996003022 293.47846420350083 26991 2570 8080480 POA_20200324 1926164.4651011673 299.3469008911163 0.008706804314220102 1.3502001434718295e-06 185766.62917605485 28.8075992423696 17370 None 758180 BAT_20201101 275726677.65188384 19982.026292025064 0.1855042558500653 1.3443825829208208e-05 134692345.18430322 9761.395612664195 123104 47048 21140 WAN_20190618 44045852.29492787 4725.138967441539 0.41595423009641896 4.4643035689363736e-05 3327025.7473300174 357.079020792881 108566 17019 440153 ARDR_20190123 57522502.342771694 16105.038473110068 0.05758011153226028 1.6121167782081875e-05 2528854.475662677 708.0237640002774 70266 6616 740966 XEM_20200410 353943612.6934924 48542.290465051374 0.03932706808142439 5.39358783004944e-06 17234228.695763085 2363.6220722404255 210839 17980 203182 DOGE_20190813 347535216.7671303 30534.124038499733 0.0028784658595074827 2.5291851601013076e-07 51869391.07876904 4557.542127748581 138029 138787 127721 SYS_20200501 13120868.423695909 1522.1947611826954 0.02244720418739248 2.604173406353107e-06 348204.7094076875 40.39636458226318 58229 4494 978039 CDT_20201129 4757930.744224694 268.41162561875024 0.0070441947245843 3.977058841953081e-07 121986.01992060157 6.887168769294961 None 293 497751 NBS_20210626 0.0 0.0 0.01098381889610445 3.451255621805006e-07 6801480.924385198 213.71118277641258 None None 552078 PERL_20190915 16033927.440899357 1548.6180997798735 0.06137761363436103 5.929320960571672e-06 4240567.599714008 409.65565236034496 11372 369 317628 WAVES_20190915 102705642.8065366 9925.598371701293 1.0270564280653658 9.925598371701294e-05 6741660.629956585 651.5222916943866 142454 56903 33279 BNT_20190321 39599932.42728058 9796.19172286187 0.6086831478423016 0.00015057542902852217 1668805.347487419 412.8273996968162 841 5131 160609 REEF_20210115 0.0 0.0 0.009427889960306092 2.4032789050880047e-07 7786795.670596095 198.49448659418402 15938 495 142268 WPR_20191108 4668807.768381137 506.44961536260826 0.007800627932180656 8.461310406679188e-07 1984982.3394618137 215.31025286662364 34097 None 790828 ADX_20190626 13607869.094875524 1152.5794883481958 0.14797634306590196 1.2514414790641864e-05 513152.17220855225 43.397471519327446 54182 3886 880682 IOTX_20211007 695400327.0987942 12527.656717575068 0.0728510421841738 1.3132277224281876e-06 303246631.3756838 5466.385532944667 146193 9785 63450 AUCTION_20211028 236774716.67168877 4045.4941996484486 32.9788301696638 0.0005634325075954996 33003975.318005532 563.8621042158513 None None 128625 EOS_20190816 3690291612.172326 358597.711540034 3.6269386893244717 0.000352046843037088 3216831446.638483 312240.00524321897 1266 67903 84065 CTXC_20210114 1232704.0002891303 33.1055256920398 0.12289210636622892 3.2883186310691114e-06 7738959.524985186 207.07729359980902 16953 20075 682759 FLM_20211230 0.0 0.0 0.35320209425867966 7.590904131635195e-06 5050426.690186016 108.5421220661734 None None 30888 OAX_20190603 9988824.276498841 1142.6723691819711 0.22341532552176738 2.5545400101192547e-05 988288.9516993777 113.00136473533468 15122 None None BAKE_20210809 368676833.9864447 8380.478549926034 2.1601308034523172 4.910688087417721e-05 86896659.16344094 1975.4469882486767 None None 9385 FUN_20190605 35145783.03248689 4575.409919619954 0.005844368327887029 7.608417998998517e-07 1456297.397408303 189.5862599464523 36333 17667 466451 ADA_20210813 57851525295.06172 1301350.9496476254 1.8076602778206021 4.066027269610124e-05 5153417333.576463 115917.44127533972 543947 559319 8000 ZEC_20190528 509949902.00846714 57823.18507636107 76.85305010087399 0.008715746731874871 487330397.9498562 55267.14057151568 74912 15159 175759 LRC_20210506 713850548.8986496 12469.509348742486 0.5728714988225325 1.000344129717369e-05 130726899.03129105 2282.7437970101996 72779 10210 161207 POWR_20190227 37948744.23232259 9984.52115503641 0.09132475593665029 2.4028040349524216e-05 1639373.3848257829 431.3280603328905 84656 13278 761259 RIF_20210421 230240203.76645932 4075.1525407365352 0.32066866020050994 5.687235058635364e-06 7784171.607369059 138.05656480487238 42438 3201 604908 NXS_20210821 48557453.248887226 987.402421497652 0.7119015898977594 1.448604828758239e-05 409768.67756023613 8.338131188509994 26162 3978 554016 ADX_20211221 77368350.54672578 1639.6252203824156 0.5580232878051122 1.1836781437035138e-05 5879509.590908995 124.71606742127094 399 4048 12336 OAX_20200318 1227175.9063557172 226.04660872518537 0.023268355988610434 4.326063531315674e-06 20836.438538614406 3.873920311711 12032 None None HARD_20211221 65547843.51359815 1389.2777858319678 0.6745361057925364 1.4308249548258223e-05 1868148.3257787963 39.62713368322645 None None 47415 LOOM_20210718 51914435.25945127 1642.5685438403625 0.06199918498529283 1.96533775874221e-06 5483787.751674122 173.83285170361177 None None 286849 CMT_20200301 10692498.594280776 1246.8299241061063 0.01299148439189691 1.5189551900142599e-06 9202969.748907372 1076.004730634634 287070 1640 953076 LSK_20190603 283257749.3423056 32392.771846768315 2.137915477318258 0.0002444722849763327 3558505.515513306 406.91785232298776 183219 30424 180914 LTC_20210513 20598042524.232872 410628.0271572629 308.5737448416146 0.006151508228404331 11553514406.847614 230322.70285079128 176722 321055 92383 ALGO_20190929 85894614.33438043 10484.876741605429 0.20339134402292028 2.483084423326751e-05 40212588.414140604 4909.316686630971 12249 624 199307 ADA_20190201 1187186855.6870704 345989.59092271223 0.0381578928586053 1.1120603026707946e-05 30894039.17470899 9003.650878379769 147909 71026 104586 GVT_20190201 13713669.02652595 3997.6727222065783 3.4674884516728466 0.0010105527240100683 1874358.4438947628 546.2564786150397 20617 5796 138721 VITE_20211125 86722657.5832142 1515.9338239508559 0.11337521751801817 1.982339536942202e-06 7244070.369336946 126.66090011466508 None 2772 301171 CDT_20200418 2444697.7613638765 344.66216283973836 0.0036082906049632766 5.109291406075768e-07 314753.33838685724 44.56865321882784 19106 291 263916 ONE_20201101 32182234.266296383 2332.3310400286236 0.004388328829600731 3.180300537909442e-07 2223194.080906126 161.11885881683432 None 1514 134160 POA_20210428 23242898.03111814 421.9025314021672 0.0809560228500835 1.4699573598092732e-06 744686.7253304367 13.521634266530832 19465 None 274673 BTS_20200518 51041365.760841146 5278.301227304428 0.01880410220730297 1.946665108225581e-06 9945071.915097889 1029.5479296212536 13158 6991 152581 MKR_20210212 2271078422.5236993 47628.2091943998 2528.2961184187966 0.05296381109217086 217384279.2377845 4553.8573650772805 100883 21564 38971 COS_20210401 122406057.82353067 2081.1304691907635 0.04048449860866816 6.889614866018866e-07 21753251.11911135 370.1948336897077 22122 None 200238 PERL_20190908 21172965.039137494 2022.48211846209 0.08100756775433415 7.738178553165074e-06 5654876.972994179 540.1772812870238 11374 363 317628 SNM_20190616 11542939.222909382 1308.4808082547838 0.028168679709230815 3.1934646504405663e-06 528775.2261038573 59.946898826004514 31358 10003 15028658 BTG_20190830 198010554.68451646 20865.92133909183 11.293788695395813 0.0011907838310497975 11036425.089371633 1163.64817011086 75019 None 269887 BADGER_20210519 208159183.2903604 4858.544337121825 25.042491805390497 0.0005853664913004882 25435303.798637874 594.5484441195151 33774 None None EPS_20210722 103581788.90202324 3226.2210846471894 0.3969679668399336 1.2335477976225344e-05 13858618.371257495 430.64603690929744 18520 None 22794 TROY_20200117 6212961.593105958 713.5868469627572 0.005331054682109335 6.118129885039389e-07 2215277.625559386 254.23405034801345 6760 None 323346 CFX_20210430 815362959.8287629 15214.562844605622 0.9895815114174076 1.845712604961723e-05 21828982.03975251 407.142078135086 31903 None 146617 POWR_20200411 24296543.778158743 3543.499276603846 0.05655481522351431 8.24613324127982e-06 933852.7844611154 136.1630209200072 82291 12790 242937 ASR_20210430 11449442.037050674 213.65108413853352 9.486876772798906 0.00017701287218886022 12421046.128345529 231.76068409288374 1961700 None 190056 TRX_20210513 8955002389.058695 173619.9403350243 0.12422823049047538 2.4118672398975195e-06 5008302968.057171 97235.24039944152 917698 106731 20833 STORJ_20210219 114766532.5006784 2220.5225163516443 0.8030468391843886 1.5532686347065827e-05 44403555.6931703 858.8621106795975 84858 8871 75920 XVG_20210814 528840538.00955725 11099.063320897305 0.03217187437777554 6.743880032859635e-07 33194933.304903038 695.8334018041799 323604 54510 124542 BQX_20190201 13072941.975861317 3809.9325516596264 0.14029309878360735 4.08865307300998e-05 1395219.7741171175 406.6179781064752 60751 5832 340776 GVT_20190914 4654018.305217091 449.56153531040354 1.0489952101672095 0.00010132918830323176 417164.3228507723 40.2965826858238 21234 5703 171342 RVN_20200518 118406937.59065625 12157.832079892698 0.019224365124051405 1.9684254194606322e-06 21874391.25584495 2239.7674776454924 31266 7727 210247 NEBL_20190901 8772987.011376034 913.9167276556116 0.5655309672250376 5.89299385204832e-05 128374.46480922597 13.37698509407584 40396 6124 464857 RCN_20200607 39115558.56553164 4044.2908379574537 0.07656972913783171 7.916805112170785e-06 305107.5108107364 31.546104819047844 None 1133 1112799 HNT_20210602 1298842839.967478 35399.7893680716 15.232226967768879 0.0004152517085694683 19119898.36842419 521.2350421223846 50649 34088 3416 MFT_20190920 10561207.551734177 1030.3623920585333 0.0011711616659968078 1.1420081028154022e-07 221016.50166076733 21.551476886641716 18737 2253 975011 MDT_20211111 27353331.108130924 421.8950611650602 0.04525321397076603 6.96671667644247e-07 4281945.007784933 65.9203956488395 35574 351 734581 DASH_20211104 2098003437.7277658 33341.520110854675 201.2553936941544 0.0031935888257267164 342827699.3376627 5440.106173840939 414597 43038 63232 XVG_20210128 162219712.00162417 5362.480326899528 0.009942464226341121 3.269781746306835e-07 9421838.68200134 309.8563438371344 288921 51316 179972 BCH_20210617 11117049151.202171 290648.99403888546 592.1676307264014 0.015472338949383563 4039845615.503093 105554.33533165281 None 568294 266622 OXT_20210219 0.0 0.0 0.613516764862998 1.1866759212902386e-05 46562519.84922455 900.6212104409609 58536 2502 125162 CVC_20210429 345968705.24193794 6320.460216238433 0.5191414063628599 9.481059252569856e-06 30938582.450970832 565.0301243803034 101587 9622 120797 STPT_20200626 9806732.544724323 1059.1568910008727 0.0138766038445645 1.4996625736157888e-06 1615422.0833125387 174.58075953398316 11160 None 2264449 ONG_20190920 0.0 0.0 0.19169637797965758 1.8704581425387127e-05 11927726.094439605 1163.8358862306497 81596 16292 297056 ARDR_20210219 203591974.87326676 3937.915117999801 0.2037958736638468 3.941858967606186e-06 39097646.31146444 756.2341913720568 65609 6410 None PIVX_20200721 28491346.49288893 3109.802273973542 0.44781911289654824 4.8876093694010176e-05 937054.1538170828 102.27242495767575 63959 8480 353299 TROY_20210106 5301148.396237358 156.02140706223597 0.0027906899691253926 8.182274346070968e-08 1293738.6810949938 37.93228534146644 None None 988367 BEAM_20210318 77744445.03452905 1321.0272545360833 0.9286351552076302 1.5754992612923655e-05 28060265.06670245 476.063464067039 17456 1893 205649 CTK_20210220 90807667.08921927 1625.5765846799707 2.5894255671802062 4.6294433732277146e-05 26501884.74646996 473.8076902947784 17451 None 218849 HBAR_20211216 4694906439.251084 96234.47184779175 0.2575410138324388 5.269991059619123e-06 79302230.33379221 1622.7397673399296 184306 17044 31895 ALPHA_20210111 74897430.02661897 1948.7636457303774 0.42584679502426037 1.1071928742322458e-05 57105449.51401387 1484.7298963032802 None None 85584 DUSK_20210708 43760134.475167125 1287.9202418057118 0.12133223731927337 3.5709726741297866e-06 5465075.371285865 160.84459698512052 28152 13640 479861 DUSK_20190729 7156982.3982134005 750.5045162996825 0.15643771077134108 1.6410166595269823e-05 1230353.497605197 129.06290796012465 20083 13215 701655 ENG_20200414 10337337.376297502 1508.8241869378148 0.1246233359534752 1.8200051145940637e-05 820970.0245348111 119.89485212782127 60862 3586 411857 BTG_20190523 397836251.13474756 51917.650571984275 22.716183309962357 0.002966203955913151 18230220.648561385 2380.4418139739864 73955 None 446927 SNGLS_20210111 4789063.906747042 124.46663757830085 0.005363753599115369 1.3985530936337728e-07 135238.99582759515 3.526241698086249 8998 2113 2388583 POWR_20190515 48256539.90689799 6041.835393185694 0.11509849878380116 1.4399908538856995e-05 4369598.442099023 546.6780069473286 85080 13219 672162 DASH_20190515 1245357570.9304163 155921.77689771765 141.57817313600515 0.017714628750492446 749824462.6118969 93819.98431670152 319849 25697 97874 RCN_20200412 28762317.442068152 4179.122772744503 0.05563636323461845 8.08455800037371e-06 1932654.795889501 280.8353904474295 None 1135 866129 XLM_20210110 6955006911.483843 171899.7712013132 0.31197997960880025 7.744643696153258e-06 2260622213.546394 56118.06756792368 None 119125 34006 SC_20200518 93539908.93519825 9681.158435607846 0.0021157888865051 2.1897912516404526e-07 3447445.5717195147 356.80242965676496 106583 30050 169173 BEAM_20210314 75668300.86516379 1233.2354206225164 0.9016041213942938 1.4694714186080865e-05 61823777.3018282 1007.6293084700496 17414 1858 234487 BTS_20210511 306148896.9519218 5479.135455228087 0.11296190309063416 2.021674990425105e-06 65278029.19335993 1168.278467640278 5621 7136 108198 WABI_20200518 4835090.558843049 496.50894509917543 0.08208097192299331 8.394784610087365e-06 937982.4649309083 95.93162186872225 28 7693 1504785 ZIL_20200718 199586983.67077518 21800.053532191192 0.018101521876945963 1.977551807114279e-06 30109252.59314734 3289.3702132455546 82347 11648 88835 OG_20210804 5699789.361643348 148.2545270666753 4.458917344330335 0.00011605033701334699 2926573.7541274084 76.16868495953456 698206 None 320611 NEO_20191020 501570957.8604539 63124.35921534455 7.108857444993049 0.0008942423955120461 179629156.4529013 22596.037185045512 323210 98332 172955 WAVES_20190801 138284409.0646618 13741.03380163262 1.3777453487711588 0.0001366554536407141 7762381.420576747 769.9331050598656 143273 56857 43327 GVT_20210809 16132207.726479353 364.0568181068218 3.599678618333204 8.177103764217086e-05 454521.8129427501 10.3250107068 25838 5695 545801 AKRO_20210603 66778503.61920713 1775.3331763676745 0.024647626302774953 6.552669844707796e-07 17388590.77038591 462.2826270708426 40639 None 176887 NEO_20190906 634663908.814424 60049.560903396625 8.999786848498147 0.0008515219022562244 180149960.67298818 17045.030041933278 323817 98221 210014 PERP_20220105 589832140.9104564 12750.665731875533 9.338779588826583 0.00020300583958223004 14273144.058276696 310.2687632220532 36235 None 104435 DATA_20210930 0.0 0.0 0.11024877409979775 2.654146400448186e-06 394574.6868490726 9.499053330610753 55490 4528 336974 C98_20211230 455460492.88549984 9801.49674178847 2.475321288834772 5.3184114176812276e-05 44408740.3397627 954.1547302694415 331377 None 39046 NAV_20210704 24555689.44172187 708.7679276256669 0.344197529444279 9.909429097913275e-06 183404.19547661688 5.280197316551568 53127 14122 770142 ALICE_20210602 120317359.83485356 3279.561439114635 6.886036217168936 0.00018772293181431443 45200410.24977121 1232.2260969439615 None None 47479 ATOM_20210422 4723363643.05089 87173.60891994154 19.779673939082056 0.00036522615614952334 1059374019.6204865 19561.045460217323 106631 24728 44770 PLA_20211202 549430592.8453487 9612.250869160083 2.261890498088495 3.9555550216174146e-05 20551822.3806787 359.4067188043964 18132 None 106717 CELR_20210729 156458265.52023402 3912.724824470364 0.027779631766129177 6.940483423686517e-07 25044572.205616314 625.7154151997618 57675 None 211241 BTS_20210201 97826126.74747828 2960.0986956674965 0.03600995572069237 1.0891110614000351e-06 44795142.862710446 1354.8165948101516 13232 6884 136810 ELF_20190227 56183199.913819455 14750.911321396547 0.1697221501679526 4.4547360493647377e-05 26666021.67780834 6999.0916296855075 86417 31383 1006337 SNM_20191012 5253380.531803122 634.6540704423045 0.012004942112544006 1.45030144514112e-06 424126.7523517319 51.23820140840116 30931 9829 6623482 ENJ_20200403 83436008.92414522 12303.112702305178 0.09172946325622075 1.3455777739250013e-05 7147646.423973652 1048.4869116816972 54054 15294 101377 HNT_20211002 1802870043.3385067 37435.041446625764 18.58271990493337 0.00038579537311250186 13722223.494246032 284.8867313277608 87327 55722 2627 ARK_20200313 13132531.332879864 2728.8323370614935 0.09118947339286429 1.902923284722675e-05 567884.3373329989 118.50494232866484 62703 21959 80258 KMD_20200229 71692451.44291219 8190.817147876095 0.60605644737316 6.955701075301692e-05 2519300.848203743 289.1397937405276 100044 8405 157439 ETC_20210702 6889439174.149154 205072.34491644485 53.5349158983163 0.0015917488589376754 4842841216.457703 143991.76408448096 476521 58073 107608 REN_20201015 338083566.65718156 29625.061027372052 0.38524830837040486 3.372399804240478e-05 111999751.49084802 9804.272511939573 25615 970 91402 RVN_20201111 97994875.21822341 6410.2068005174215 0.013154183381654846 8.610901538495311e-07 8776061.641744507 574.4925435524868 33727 9726 228057 POLY_20190821 18700771.14731761 1739.50065128623 0.03736411881452742 3.4763568146981577e-06 3003596.233778625 279.4545292966548 35244 5065 281069 STX_20200501 65313149.36869365 7542.338997433061 0.10291639820220468 1.1939667186987936e-05 465510.7944882604 54.005426299704126 35948 None 78814 ZEN_20200105 65031993.12309501 8849.445934893316 7.983533223405313 0.0010857194398374984 1277450.2388838078 173.72665948393367 45956 2927 41253 AE_20190830 70991430.17481868 7480.922419198836 0.2170981579945181 2.289064216559827e-05 18700525.567302555 1971.767255070646 24887 6354 305950 POLY_20190131 39054260.58106588 11292.667804520554 0.1028389657402813 2.973622493901462e-05 1918097.9159690046 554.6243165101037 32495 4971 219196 MDA_20200127 15240664.896307608 1775.9995965855226 0.7759679279476484 9.031941891840386e-05 1649587.850899735 192.0051213227133 None 372 2164064 CHZ_20210428 2798870012.769486 50805.47746334436 0.5230454282083548 9.491696788255962e-06 930794402.8666594 16891.11072909857 305242 None 33338 SUSHI_20210620 1419158291.3264759 39902.245161464336 7.5140248383057076 0.00021104668269884225 150785523.723043 4235.1183640659 106715 None 6774 RCN_20200621 36724863.453502506 3925.5684557417544 0.07192740598220236 7.684441784572652e-06 349921.60150228336 37.384250678720136 None 1136 966590 MATIC_20211104 13723321299.136755 218191.8896819163 2.037005142796291 3.2299876473781665e-05 1749682459.0039234 27743.92960863573 821653 None 13730 1INCH_20210703 415092159.7140943 12274.218705024841 2.4033028140918633 7.097483183944748e-05 33930223.18766191 1002.0343133202751 183 None 4913 ONE_20200718 39724943.6049048 4340.059040984069 0.005806212918769998 6.342972802825539e-07 4586039.621170366 500.9999632587755 75837 1319 140564 SRM_20201208 59141523.6213772 3079.8721962889153 1.1824051731220748 6.15839897144121e-05 25877081.70786997 1347.7731406812245 28260 None 70902 CVC_20190531 27665377.889300548 3328.5003983837496 0.08071700691197085 9.717162434609456e-06 5405006.595796525 650.6847696764767 88876 8193 415503 CHZ_20210427 2442291275.974221 45321.927961972295 0.45474628473468764 8.435894476951493e-06 687184534.4585228 12747.803365270562 304028 None 33338 NAS_20190329 42057009.93278658 10446.122934081799 0.9243307308464709 0.00022958511943036925 2297530.66209982 570.6602992308557 23801 5167 598776 BQX_20190908 11403906.494509865 1089.3229608194472 0.08097358269600533 7.734751498798741e-06 139764.19362250227 13.350543104391724 60318 5755 423715 TORN_20210814 59204767.31921146 1241.1983787914626 57.00058136564186 0.001194988721089831 15999809.483072294 335.42801518480996 22754 None 138254 ETH_20201124 68705033455.82259 3751568.339314321 608.2733109189421 0.03313176335869452 22868894446.116894 1245635.4494972685 509658 496354 8793 ANT_20210508 373667850.723912 6520.8374597138945 10.625583611000442 0.00018540667985569186 220218761.72600225 3842.615233979179 83452 2969 103669 AST_20210731 25249228.637883417 605.1316716336934 0.1466308895913155 3.5113347182521927e-06 3295364.5372166377 78.91330360933152 44311 3700 214411 UNFI_20210806 43629433.5836197 1064.8744598143412 10.241311936437098 0.00024996563241900074 29448015.498487025 718.7547711904474 21075 None 266714 XLM_20211125 7999660421.73834 139836.07227209065 0.32873347833620586 5.747194596869616e-06 480545179.18408555 8401.294177083946 692330 207318 25362 ARDR_20190321 69734922.8860202 17254.948465515386 0.06980476290032579 1.7272229417408648e-05 2051755.4458499649 507.67869263793114 69307 6590 1067590 REP_20190708 164226667.0214303 14354.2697439866 14.92969700194821 0.0013049336130896913 20367748.311706495 1780.2477432347298 125986 10016 252413 CTK_20211028 105324095.82742591 1799.5503267516588 1.8234247824928882 3.116005781227689e-05 14016286.966072004 239.52088200708113 89857 None 124997 OAX_20200313 1147499.3146679515 239.0780322307592 0.02255177581804928 4.645135511191045e-06 675749.1478889782 139.18843415443723 12050 None None PIVX_20200306 23239260.219884433 2565.1122454026863 0.37141871680915656 4.1028091421624625e-05 1025309.3409325813 113.25892711228758 63962 8510 213646 NEBL_20210108 10356261.979291856 264.89556758324306 0.6038886394101819 1.530288081900609e-05 3745533.584175291 94.9139465484914 38344 5884 781583 COS_20210930 56677380.124094285 1364.3590821345713 0.0165196702419778 3.9742672160683425e-07 9610750.917902807 231.21340641389773 None None 301552 BAR_20210428 122055954.97619066 2215.546284642307 41.44043010587093 0.0007520188039635328 46811375.60401758 849.4852636346968 None None 44251 YFI_20211230 1023010550.4699143 22057.493578612786 28894.960067061944 0.6203867620388593 275502040.7212567 5915.142937781448 None 7941 26210 DOGE_20210207 7271788223.656685 185505.27654580947 0.05787569494567245 1.4717842983677415e-06 5679785681.169644 144437.4774503588 433287 983465 31801 QSP_20200223 9216243.10229801 954.774944291858 0.012921347953495393 1.338590698243271e-06 68448.84730210096 7.090977708659302 None 8338 377226 VET_20210511 13511033566.614565 241988.05610560355 0.20703032819141448 3.7052141059297245e-06 2302050567.351614 41199.71363243216 318468 162137 28728 RVN_20200530 129885328.44674587 13789.751951167944 0.020536603216890825 2.190385515900899e-06 16716773.406141397 1782.971504815051 31554 7851 210247 EOS_20200626 2338914087.9633517 252557.61151971528 2.4826177138173855 0.00026814294337561983 1324934103.6022003 143103.6797736976 190188 71645 89691 GO_20190806 9213564.607046036 779.9796299227521 0.012152476063240531 1.0287748756005536e-06 305325.9551182449 25.847544966127074 10125 683 898219 IOST_20210110 215234463.0660369 5318.940401394207 0.011433141978286076 2.8381824712081867e-07 704971001.3971403 17500.319183260835 None 52144 596701 DNT_20210418 269444491.98033917 4469.685580405883 0.3581238285176921 5.943033466027469e-06 100050448.38612212 1660.328399567534 67649 9638 186228 XTZ_20210418 5469125203.405237 90724.69761556119 7.074653917344337 0.00011769476686154691 612770219.6528085 10194.11677013995 103867 42186 96118 BAR_20210611 52525634.65423676 1425.213357444902 18.662933760885835 0.0005083405984237496 7102592.181179931 193.46025689208028 None None 34079 XEM_20200610 414965958.51734525 42450.841741109354 0.04614223028539448 4.720939039068561e-06 10637705.99936509 1088.3730853043041 208694 17882 214042 AST_20190207 3936597.883054548 1155.8864258872545 0.023626462910547544 6.934478270553895e-06 216990.6258064678 63.687771854207284 30456 3592 375150 FUN_20210324 225099287.5925924 4126.7144540695135 0.03561497572537809 6.533425699844987e-07 10525380.53749347 193.08392131040273 None 141 203036 GXS_20190523 66106975.30563108 8626.963567294644 1.1014094756492372 0.00014381911729902499 9363734.37057579 1222.6915071753258 None None 869901 MFT_20190821 9201150.461583266 855.0787005278895 0.001020877310056233 9.497796136800624e-08 209117.1524095087 19.45534554181027 18780 2193 880747 ARPA_20210314 84091080.81747955 1370.5091595401445 0.08558091512682935 1.3949119753961483e-06 110134931.02549182 1795.126097555894 26812 None 841021 WPR_20210111 6326034.742335696 164.07023412289774 0.01035938028205045 2.694694525837867e-07 326219.1861087438 8.485652916455367 32524 None 7558136 TNB_20190813 8719870.575248215 766.1778299046906 0.0031530763005339097 2.7707950588083395e-07 276013.0962223572 24.254906963393143 15652 1469 836143 HARD_20210217 73346971.36888468 1491.409860586432 1.4401842446259854 2.926633694752995e-05 6980330.2225041 141.849000958822 17064 None None ARK_20190623 73966481.20789829 6889.81210163756 0.5195724133125506 4.8418714469979046e-05 1183340.6653604116 110.27497289840578 63489 21828 211362 WAVES_20190316 276950198.633875 70575.49232591917 2.7703231711039518 0.0007059109613137027 14155023.37433598 3606.866614631692 137527 56742 38388 CELR_20201018 17085212.845893998 1504.0719262507946 0.004330427448910543 3.8104253555512275e-07 2723577.9903656095 239.65279997754703 None None 280111 TOMO_20190906 28084373.99311821 2657.103455441358 0.43736136354382266 4.13797072962376e-05 2267136.551817946 214.49870686949262 17038 1317 270545 WRX_20210108 20000671.04414551 510.9695826870323 0.08396697117752464 2.127770699441501e-06 4219174.923290794 106.91628686494143 47650 None 5719 KEY_20190221 7229587.153345005 1818.5585682467145 0.0028191620124108905 7.091430152513466e-07 246674.9883082305 62.049589284297454 23371 2808 836734 RDN_20200901 27955755.43799981 2392.413309370166 0.4175787422689747 3.5773601520314107e-05 2813443.605430098 241.0252253111641 26374 4386 895755 OAX_20211007 11891390.916819386 213.9335406949851 0.2052673338802529 3.7001907629405305e-06 313545.2970516845 5.652031377729602 None None 3028474 POWR_20200526 39423392.303695515 4431.563876605953 0.09166501175807099 1.0309761423630997e-05 11058378.755569197 1243.7596910255074 81845 12763 209836 GVT_20200324 2799441.703056532 435.0636787348828 0.6386262233820916 9.855570276872731e-05 262727.6391138223 40.545323949435286 20628 5599 160290 UNFI_20220112 38134346.65540612 890.0681819273594 7.46815630960758 0.00017454742017086758 21426130.80104935 500.7763228998675 23846 None 287186 FTT_20200425 280053360.0476131 37356.26499597649 2.7867115201979704 0.0003717963132319023 2583506.0479993112 344.68513044731253 10651 None 13510 QSP_20200903 34736783.136755385 3044.844160884788 0.04808635303455457 4.213094083413541e-06 834030.9392193309 73.07376404452567 56897 8228 237034 CMT_20190316 26785330.46266892 6825.217567838165 0.03350617819503846 8.538215664771864e-06 1849262.6863014787 471.23857410856397 292438 1637 1091095 GAS_20190920 20012407.700055525 1953.9511047925203 1.4368845359102185 0.00014021522976563608 2992172.5321517885 291.98460183045836 323764 98278 189975 LRC_20210916 610879665.8236401 12675.837781499033 0.4934367839598885 1.023744743405874e-05 89983023.23233813 1866.8986590461243 93409 11963 300422 APPC_20190524 12079642.92555191 1536.049947163608 0.1133981928107505 1.4419738161874812e-05 6272275.851905442 797.5839228273161 25607 3382 1307105 LUN_20190314 7065115.475676871 1827.31226456917 2.6118418322088885 0.0006756284629109886 7743110.770451267 2002.9796458100036 31697 2245 1371801 TROY_20200316 2082124.199434427 385.4079674006037 0.0017713519227038463 3.297400327713646e-07 794227.7094653748 147.84677600783223 None None 356286 SNM_20211120 20929460.07061294 360.084 0.4642706043264468 7.96e-06 1464069.7661015673 25.10172996 33121 9775 None STRAX_20210519 271399354.87130743 6340.923746067128 2.7193456043264885 6.356451296493418e-05 15401595.768734155 360.0112219516317 157498 10689 134289 STPT_20201101 13369957.758164356 969.2095457494412 0.014591184704450021 1.0576288846456348e-06 1536965.9333585696 111.40559171597654 16150 None 1333112 SNT_20200927 95056475.80218114 8852.728806063094 0.024342795306302296 2.2688124666661646e-06 6405604.092914117 597.0191278225457 112274 5704 111435 REP_20210221 205689851.71528575 3658.828521155577 34.80170664440208 0.0006190557083568803 102685829.55960341 1826.5842421397242 139558 10715 131610 MDT_20210114 12503811.535232253 335.7976082632483 0.02069030630655091 5.551919812706726e-07 1006834.7268701164 27.01683380328456 13676 72 1369225 HOT_20190819 145394695.45958605 14108.584016825735 0.0008169977299187807 7.916656195559842e-08 6747308.187295495 653.8098847546948 24164 6633 386677 SYS_20200430 13255370.815982165 1511.6805806900034 0.022679260505461006 2.5864080429329637e-06 419075.99892922374 47.792631244290995 58245 4495 804811 SNX_20210324 2585746179.4190626 47404.131071602824 17.550040229926562 0.00032146379860200985 151434958.6017291 2773.83164912857 102643 5602 22945 SOL_20210523 8668570148.20386 230636.558403462 31.614601894528402 0.0008418253184987172 1134738458.8461702 30215.517744547273 None 18645 10872 YFI_20200914 1093935333.3424954 105977.9158046916 36727.67576854644 3.556397878438629 643680603.7039937 62328.59241709585 None None 26862 HOT_20190605 327844480.77180773 42791.24853475482 0.0018468149493068471 2.4089063682938566e-07 20921806.130403157 2728.950837367513 22201 6330 302460 SKY_20210508 74946748.9319272 1307.920953062813 3.747771245117474 6.539003140192035e-05 7811230.043549448 136.28808815392674 19334 4333 250717 GVT_20190701 13259023.25164598 1222.0600019142814 2.9849587016664274 0.00027674155730695877 3861147.4384026104 357.9747868869255 21456 5756 196385 ICX_20190622 156459730.8934092 15459.615917702673 0.3312002219141564 3.272157811176881e-05 20802839.20716148 2055.257463686519 113622 25075 300375 AERGO_20211028 76874928.44001351 1313.6285191482195 0.2857665704440949 4.882228221678725e-06 4282219.800675068 73.16032218113243 None None 685447 GXS_20210210 34128958.299557224 732.7485116194887 0.485080261335147 1.0415140267956876e-05 7602950.351316383 163.24266450529072 None None 429351 NULS_20210603 69598510.94321647 1849.5986620539172 0.6137822332009002 1.630069954456363e-05 42987910.1190193 1141.663881739437 53661 5367 225634 WAVES_20200407 98153513.09903847 13470.31206031617 0.982460673276537 0.0001347022314330812 62986148.36528494 8635.841581203802 140437 56866 67847 LUN_20200305 2634291.12664349 300.9146276220771 0.9749573069574782 0.00011131140098545116 3790261.0797132654 432.73614944240126 29771 2151 1955482 WAN_20190916 26327691.81449161 2555.435596132321 0.24807198924418236 2.4072563476746273e-05 3820952.449449177 370.7799524695896 108021 16838 408901 FIRO_20210703 61690895.59748542 1825.181817148231 5.154862438821927 0.00015218095066479352 5635873.596726141 166.38127825044398 73557 1060 237934 GVT_20210703 10538770.34374311 311.7992018142298 2.376946019146076 7.03233688709893e-05 201689.6948289697 5.9671101879 25826 5681 286484 DUSK_20190730 7089930.073776052 745.371139976749 0.14968294271970903 1.5732391187981714e-05 1092010.7898859181 114.77554232851176 20074 13219 701655 DCR_20191108 219246935.19889036 23782.84382426177 20.60419405270819 0.002234969972068455 25182787.624202337 2731.6173595089776 40636 9672 100172 BEAM_20191030 25189146.476946846 2676.8839044927327 0.596186979141414 6.336462017311233e-05 39668279.42144189 4216.069029351179 11809 1387 211289 REP_20210104 98463577.8338264 2943.3028879116055 17.269338929077712 0.0005246216236834799 18621338.78206996 565.6937435260255 136881 10451 135410 SKY_20200421 7180445.790852267 1048.5845055214415 0.3993379869370771 5.8331512817532695e-05 515316.18003066827 75.27250936254475 None 3824 410514 XZC_20200217 61673156.152843945 6199.281415306831 6.502165205018395 0.0006535866563214068 43508656.45705351 4373.416607879304 63627 4099 108999 BLZ_20191220 3505472.4550014427 490.8889396318042 0.016533794472017912 2.3138289483800613e-06 217058.48824372282 30.376343097764554 36157 None 865479 DGB_20211011 708497185.5563811 12948.179380087571 0.048006694805877034 8.77096125171952e-07 23266995.147309605 425.0946950341095 228628 42463 152641 BAT_20210117 396889628.2160601 10936.706008906727 0.2675365484694429 7.39266116407971e-06 343852930.4034156 9501.461461212919 127094 49669 23802 JST_20201031 31717156.39554903 2335.292734578631 0.022105021157313956 1.6287643438153938e-06 43072682.72998857 3173.72461776025 30210 None 130607 REP_20200725 254516928.76143423 26676.159399107393 23.141177146441724 0.002426020493831424 31198426.627101615 3270.7075311543776 134547 10277 213403 AMB_20210624 3647249.0106879 108.19111031835573 0.025224596560662935 7.48256316262863e-07 270041.49142147735 8.010445325586359 542 56 1325034 AKRO_20220105 66354400.94257283 1441.687905710984 0.024637943821442757 5.354805451352195e-07 6157656.088521698 133.8303659969835 51123 None 261960 WTC_20190908 29961085.98282776 2862.0070866088695 1.026670576869911 9.807182784691498e-05 4936169.93772532 471.5234070811934 55879 19911 440674 OM_20210610 52389644.082336195 1395.720143406918 0.1687806750879891 4.500920022630562e-06 20801973.24778358 554.7318604595226 43982 None 62304 SRM_20210523 241257507.84109396 6419.67319282375 4.8303170082629565 0.00012862041304510287 112176882.1821149 2987.0165655160667 86151 None 30792 REQ_20200412 6378171.886327979 926.9236583042314 0.008265816677841974 1.2009881096725507e-06 28577.07619910372 4.152127982263746 39397 28204 588604 REP_20200610 162711906.2132795 16645.359066882193 14.793338354191132 0.0015135473106196457 13164870.612567337 1346.9342776616559 132323 10157 227925 FUN_20200315 9129779.85695648 1765.4297692290293 0.0015194203473816005 2.9326203792595937e-07 250663.08898606987 48.38027109190017 34901 17003 312525 BNB_20190213 1350152715.9607162 371576.0048324351 9.29019706330998 0.0025566756893370514 116196069.71947359 31977.32670510726 914658 47361 1125 DEGO_20210724 34802874.21831338 1041.0157755356145 6.408814864128442 0.00019167490706180581 19729479.357021254 590.0694905857832 116696 None 198268 CVC_20200901 29335165.501227856 2509.8258838738743 0.043723794485142915 3.745778801786061e-06 7581510.246231707 649.5012772852604 None 7977 130606 ETH_20210718 221838551362.95905 7018818.439884122 1899.8427500663568 0.06022539305386879 14920352990.216908 472978.1574327109 1438282 1042184 3522 CTSI_20211204 511862283.88140815 9533.999562213454 1.05314025601973 1.9596985220766654e-05 157733757.29075226 2935.132422081638 64309 6577 102870 CLV_20210902 228432253.34971285 4696.845964903013 1.7781833697775618 3.6546597652511945e-05 71588807.9829837 1471.348459469804 67842 None 84496 ELF_20211111 251028591.0429723 3871.840045864543 0.5422136246147451 8.34917433001523e-06 11144928.533666166 171.61308200112938 92434 33518 125823 ARK_20211202 306079553.010805 5354.840971311502 1.8943969825881468 3.312888711343907e-05 1868529.985849667 32.67652954383292 76967 24317 124176 MATIC_20210804 6582077923.089085 171316.19479303522 1.0228925058593936 2.662705242326863e-05 472152603.6125078 12290.667940333082 None None 5735 IOTX_20200331 9084753.9153138 1414.2457284976751 0.0020885338441906614 3.257705242684846e-07 1690325.0841510778 263.65772830531046 22520 1811 542503 OG_20210202 0.0 0.0 3.5997631533677517 0.00010778229542479709 2114000.2061155047 63.29632951836205 None None 479965 MDX_20210825 1000659170.4166982 20836.757420915357 1.5477727285281788 3.222971268989854e-05 139752292.18457302 2910.10181394441 None None 93491 XEM_20190523 716156848.4542086 93426.03451016516 0.07937354338909158 1.0364334324257471e-05 62646642.871347934 8180.191072334614 216873 18454 179358 XRP_20190605 16823463256.32088 2196891.303673963 0.4000123337729527 5.217589659339785e-05 2636439040.269349 343885.82332556014 924781 201517 40280 TROY_20200410 4451111.747477218 610.6654052327154 0.002383538894099126 3.268342556215277e-07 1642984.9691579943 225.28844430502497 None None 412780 VITE_20200518 5904774.455265297 610.1320661335178 0.012041434934550944 1.2363949859199522e-06 2286792.477309459 234.804138223774 None None 618557 MTH_20211011 18471557.106805336 337.3131987483306 0.052050374820278134 9.507723436167468e-07 12084784.570393931 220.74536423166418 22035 2070 1356552 WTC_20201031 7705215.731305076 567.2610266804094 0.26390357559960054 1.944520799518883e-05 1931715.3697838082 142.3345896985494 55088 19307 738450 XVG_20210519 716218815.6186807 16803.052420181917 0.043725779339585054 1.022039062232265e-06 40133603.356195144 938.0761408415557 314793 54167 106082 AST_20191012 4714138.886590212 570.2639377411167 0.027366036918363004 3.3104378867213118e-06 2133658.868071306 258.10624955572405 31948 3548 271152 SNT_20190511 75445906.29917122 11839.638302211706 0.021365050375900457 3.353588821721561e-06 9974684.476502243 1565.6874087378635 111425 5757 311029 DOCK_20190513 5893455.869313235 847.4814901263044 0.011473747302319016 1.649078496565681e-06 2705547.5591273275 388.85816321672627 163 15290 217238 WABI_20200316 3611777.0483180997 668.5279234107359 0.06073992268230588 1.1303384678338195e-05 329624.3526925174 61.34138295367188 36785 7763 2574958 DODO_20210610 192093598.75372124 5117.63582427937 1.4840625278367832 3.9623973329745534e-05 32973078.51595127 880.3701725560647 91845 989 25824 LSK_20210324 731879327.1113596 13430.863353921892 5.035606737575806 9.23762035590748e-05 162436922.83194387 2979.8407681567846 187807 31782 156413 EVX_20210418 29757938.004550885 493.6401758446734 1.3647629680447229 2.264398235365745e-05 3523945.7781353793 58.468882790442414 18041 2824 782921 BNT_20210819 942476367.0324173 20908.98160266661 4.052199336210317 9.006450257908486e-05 176512954.87297803 3923.190879910381 127024 7714 39587 LOOM_20190922 14304306.57450145 1432.3742945601516 0.02373757234028051 2.376997994322127e-06 2696122.006488383 269.98028736896947 20940 None 411903 DOCK_20190228 4489382.8298200965 1176.3708700964062 0.008773723025976954 2.298504499513364e-06 267030.02764988184 69.95544744701901 115 15370 163959 ASR_20210106 0.0 0.0 6.8029330916531805 0.0001994613 1617125.2252168774 47.413945623 1925290 None 243323 MANA_20210206 302536195.20807624 7982.209658839466 0.21654150353523946 5.690654579460073e-06 171988642.27010092 4519.816934725375 61112 9388 56631 AUDIO_20210506 372831365.31791985 6511.970126335046 2.426023743590545 4.2363053764131555e-05 31869213.92065554 556.497942902739 46663 5014 33719 SNGLS_20210823 6605130.231754162 134.07290289522444 0.007421494642420407 1.5064371111822973e-07 2723407.19351317 55.2805312520047 9460 2134 None POA_20190318 7242973.116309325 1818.9206905324068 0.032897539989812236 8.261526750713297e-06 232495.918854375 58.38647064923136 16794 None 766257 XVS_20210523 350495383.7112039 9324.331965253732 34.709868790188764 0.0009242452727012337 173477334.19025624 4619.308906505506 105732 None 9517 FIL_20210825 7435544828.274244 154830.584138428 74.87982046272728 0.001559243844591973 848040105.3115866 17658.980830922508 None None 44704 QSP_20211230 28282965.945367992 609.8175423000001 0.039743639173857426 8.54365732407547e-07 219810.16868831174 4.725241061607309 72985 8661 122145 FUN_20200704 20836720.093640458 2297.8856453264116 0.003483905012699682 3.843616940090297e-07 624409.1625286379 68.88791818072312 34142 16776 233884 BAT_20210125 474319413.78679377 14730.733277623645 0.31964517898368733 9.907246969555744e-06 310103836.410812 9611.51769376574 128993 50111 23802 APPC_20190906 3850386.6152447076 364.30735418830665 0.03546217430765593 3.355181361970628e-06 52178.610320856154 4.936772892807908 25206 3312 1154369 TFUEL_20210107 0.0 0.0 0.03118653125267303 8.449564902332053e-07 21847717.557127547 591.9340819634955 78841 4851 64313 ALPHA_20201111 9098269.181711117 595.3101574367811 0.052305692985023994 3.4243469016853574e-06 5755915.231068651 376.82801551863344 16468 None 226160 BCH_20200506 4526391983.751205 504781.1354257423 246.81463637134786 0.02742949067040026 3465931816.9131546 385182.76644350216 3033 294439 146470 KMD_20190719 146176415.63062328 13620.11306396435 1.262444791830128 0.00011832176442789174 6292722.674817377 589.7810777613646 98087 8450 276726 MTL_20191113 18997283.2869162 2161.3694986538803 0.3484570248623439 3.9588287714497105e-05 8100774.389903216 920.3309572662724 34580 None 239021 DIA_20210206 59798451.25786999 1577.914866277843 2.3342019020382505 6.115124624457762e-05 38785032.64566002 1016.0873743816666 23628 214 235170 KAVA_20200330 8036441.169702267 1359.0637907037135 0.4274248983280718 7.232145342272653e-05 3836425.7294238745 649.1336508134722 None None 337432 ATOM_20200319 337091535.0627884 62635.96072414756 1.7962838468441031 0.00033340092660129274 153083823.02497157 28413.264715297177 31716 8279 84919 DYDX_20211202 835253018.0971246 14613.198813757876 12.83596875039714 0.0002245287843696937 255074658.4186658 4461.806046114434 98543 2416 12183 OST_20190405 18047881.41367868 3682.3834752231455 0.03033317381085517 6.197047512578846e-06 1947867.6341732668 397.94807996209386 18125 749 1019811 WING_20210120 13933601.4375324 384.76966786628697 15.893652464214911 0.0004380605012574273 5563673.923722056 153.34585887957826 7605 None 403766 AST_20201229 13115472.057752755 483.67090880635635 0.0760988395747071 2.803651746321845e-06 1719593.0423143075 63.353660357914315 34439 3469 210501 AST_20200518 2677296.1042354633 275.7805604524447 0.015581996187526589 1.5940901419569188e-06 45299.15767069225 4.634254803605177 31607 3450 343534 SNM_20210508 306037558.58031166 5347.443996723657 0.7203733897997907 1.2569900935063777e-05 3212775.941048442 56.06019861 32390 9697 None CTSI_20200530 7152525.195912083 758.7637422383714 0.03608332524058814 3.828576516298871e-06 7743942.552692297 821.6614295695662 14285 104 293741 REN_20210519 661524265.486588 15519.875585217123 0.7452893983707809 1.7421087466777065e-05 89858785.37742636 2100.442812068136 78644 1158 67257 JUV_20211120 30466565.56336933 523.9453991052043 11.264690710823517 0.00019366931034534924 5633749.27992536 96.85879228387509 2759551 None 33092 ONG_20200422 0.0 0.0 0.08277281853534589 1.2091833915092562e-05 11131237.307854066 1626.1023265575689 84073 16492 204987 ZRX_20210814 888195617.5028716 18641.043360843287 1.0504699406311557 2.2019989182338474e-05 176716283.94566965 3704.333184906451 224235 19655 56204 LIT_20210421 163937181.21722305 2901.773082190149 9.166127299776555 0.00016256630909490115 78202381.7572306 1386.9622523149246 None None 89808 CVC_20200314 10664918.013953064 1937.1344662082392 0.016043221238713302 2.8971638646109053e-06 6049368.001643026 1092.424651964675 None 8071 106398 STORJ_20190810 21551526.834486917 1817.0284971230906 0.1499517623935001 1.26410292051531e-05 3566951.951884454 300.69632445416147 83814 7778 204651 CHR_20201111 12663723.205966868 828.6018917349861 0.02797711388741541 1.8314186903596042e-06 4138694.4042947628 270.92438184346133 31810 None 426894 BCH_20210304 9839354904.036474 193608.95522672968 523.9316836338983 0.010340442247084138 5222820646.617809 103078.84968637902 None 467093 293453 QKC_20190702 89950236.89168632 8488.342086227718 0.022512626892284532 2.120838592807944e-06 34911569.48966785 3288.901124842047 51044 9216 176500 ZIL_20210804 978802431.1355276 25475.953022083508 0.07943420783208312 2.0681103913608782e-06 62906537.0451342 1637.803995258378 310245 35355 45480 QSP_20200403 5228502.368355583 770.9723263564798 0.007363107084296593 1.0800927954832785e-06 362261.5521002283 53.14007904876561 55102 8296 386866 LUN_20200417 1861070.633002847 262.0852641523813 0.6704071219244497 9.46165306734835e-05 653507.1981811827 92.23139468530323 29325 2141 2572257 AKRO_20210115 23993658.11780731 614.3303558378052 0.010250203604831601 2.613168436348517e-07 4702121.707314566 119.87504349310429 25610 None 214700 KAVA_20201229 63962800.77939645 2356.9160939850017 1.3650841187995468 5.029182926714075e-05 13803869.937429508 508.5561106150143 51002 None 82278 WAVES_20190410 279687947.2282771 54089.98910627061 2.7974024883556994 0.0005406932305193851 46165454.84662718 8923.045226177597 139135 56731 40979 EZ_20220105 0.0 0.0 3.2504297546266088 7.077315142451855e-05 549524.446357169 11.965056866143007 39097 None 307017 OMG_20190205 155595392.68774545 44914.043930280655 1.1094509688492271 0.000320253245887474 73203349.56973496 21130.821431306533 287786 37137 None DOCK_20190318 5711056.169031904 1434.1322095660062 0.011112909984183933 2.7906190516468725e-06 538360.2180294193 135.1903581707979 122 15353 190400 ZIL_20190930 46849810.59218514 5809.975427640874 0.005055923698171509 6.279176697874371e-07 17044873.44688181 2116.8787061518515 66301 10601 170382 FTT_20200315 58402663.19068596 11303.873357176795 2.0237603841817067 0.0003914325751226559 24033585.54270584 4648.538607605885 8220 None 19129 FUN_20200713 23663060.25158728 2549.948474410834 0.003933118327771687 4.2368792855065057e-07 861955.2335519938 92.85254014057112 34100 16765 233884 MLN_20210826 138570568.48738325 2826.9924010241775 95.21764085081692 0.001943153348086306 12347069.289235191 251.97273125072527 None 422 127987 LIT_20210909 111159137.66873673 2399.3672390490497 3.9674105034937583 8.569490132203418e-05 30383844.274192594 656.2821100987902 55647 None 504947 CELR_20190719 32966085.49143563 3076.2694179556624 0.010898411603561515 1.021446085199045e-06 10001404.398953522 937.3747057291457 17562 None 509628 SC_20190227 93691520.30445282 24591.392241961807 0.002377356752686641 6.241075254168452e-07 1467531.312201133 385.25868475336443 109071 31159 213763 IOTX_20190530 29344471.431012895 3393.3554307137256 0.011623806141274907 1.3442195259221342e-06 1445463.4632270925 167.15869033443607 19616 1724 780068 POWR_20210428 182581411.70809573 3314.197725408217 0.42418808264394164 7.702141838574189e-06 6215784.038222361 112.86231805932097 90120 13490 239820 OAX_20190510 3590559.2781446013 582.0677975868317 0.15325693636695908 2.4804870416962036e-05 626417.2519860686 101.3865938521644 15255 None None OST_20210617 11874444.858895026 310.4907333786407 0.0172786884101414 4.516989871674005e-07 567806.9533313533 14.843593427834769 None 783 504948 ICX_20190426 169915342.53566337 32733.755219405746 0.3593289954135226 6.918759158612805e-05 18986468.75461318 3655.7808098542396 113631 24017 296108 PPT_20210809 85580170.73925273 1945.3426932859165 2.361518504985704 5.368508597773805e-05 5737855.199708018 130.4403285740931 24458 None 828150 ARDR_20200229 49073545.463754594 5606.62147271764 0.04903418756503225 5.627646610327015e-06 2267910.5229822197 260.28776249751786 64755 6396 1135907 ETH_20200414 17316641314.145325 2528930.5183662507 156.70135879140688 0.022884740829813024 13286483792.048328 1940364.4005747521 453127 457506 20344 QNT_20210814 2001074148.5056124 41997.62894060339 154.40623656792368 0.003235135284358289 31410466.61528403 658.1153138886449 38831 6040 173273 CND_20190227 20514424.283040144 5385.479718250353 0.012456055933401511 3.269983874428504e-06 1439181.1538762962 377.8161555085238 36734 6228 644110 LTC_20200801 3787764747.1661873 334205.49371179845 58.15475289592702 0.005132371354718301 2111828633.3887012 186376.6630300165 133911 214410 128052 TNB_20200905 8088741.1838089675 771.1194389027243 0.0023545126741989705 2.2455470139899166e-07 463167.210591367 44.17320654582262 15972 1434 593209 STMX_20210809 238608360.42307842 5423.87053706952 0.025837530033656474 5.873720736808853e-07 86568224.17568596 1967.9805802918902 69447 4700 91821 NAS_20200511 11899373.651472889 1358.9832677554275 0.25860401415729944 2.9460668143382427e-05 4408384.278169676 502.21164080099584 23415 4931 943407 RENBTC_20210804 507072054.6348774 13197.907393530795 38335.764712898694 0.9979234483088094 3867839.0335402275 100.68423819794526 88418 5581 110606 LTC_20191011 3646978137.998324 425925.72632506536 57.486010559986006 0.006713714717996939 2220047307.9185934 259276.37247099605 450701 208918 124941 XZC_20190225 36227487.9295397 9617.968093270878 5.250326862503116 0.001401539607269829 1473286.4453532365 393.2839535693025 58741 3931 292752 MDA_20220112 8339034.505443058 194.90178021158957 0.4248347896958329 9.929333756022734e-06 769370.4153249797 17.981897483586625 None 391 1130423 VITE_20210513 100784104.10866441 1954.8872600697632 0.16052570835258165 3.200127140785076e-06 75206880.14637502 1499.2712432177498 None 2254 146293 XMR_20190729 1377142030.421087 144252.2934479514 80.0728510403115 0.008396700312375653 153930850.3575141 16141.691003739741 320298 159794 109892 INJ_20211221 342652299.7023898 7264.848721020969 7.848866545611248 0.000166537833249315 9989469.879834255 211.95731376361854 None 4440 136917 OCEAN_20210206 306365577.3735348 8084.62209427252 0.7328580753663582 1.927992805911169e-05 124537847.97126709 3276.3243392280424 41857 1547 65645 RLC_20210731 244146579.69647855 5851.300648199271 3.395254122901368 8.1261654759315e-05 49905715.04257746 1194.4381302572951 46098 7742 151708 COTI_20211021 439973299.9057397 6637.806814502755 0.5050088079267719 7.621549161104863e-06 61269571.15406675 924.675057743239 172995 8592 68879 LUN_20190305 5315627.245399399 1431.5235235902007 1.9663067851216784 0.0005295357043579169 1590714.477116102 428.3869218403195 31656 2253 1371801 CHR_20210108 10959248.789008958 279.9827449750706 0.02452141909635937 6.213866753827206e-07 3976421.6473329705 100.76478109388712 36284 None 675741 MATIC_20210602 11453762980.132832 312159.2671617163 1.825050441617648 4.975341528922851e-05 2863996954.750881 78076.54332584146 420693 38859 10681 REP_20190613 204302544.92592946 25151.338097743515 18.595317048011236 0.0022877277255209092 14411562.329668682 1773.0125614170074 125573 9980 263200 DCR_20190904 263974198.04719347 24843.89968764697 25.496582551678937 0.002402558376320075 13449676.355314773 1267.3711279054426 40586 9596 193164 DNT_20210421 258509660.71923715 4575.754989755686 0.34373387738685524 6.096309371464059e-06 89580715.91806394 1588.7632668197305 68013 9731 186228 DOCK_20190401 7124439.454821605 1736.2016826222837 0.013943840609004068 3.397122796810894e-06 1534968.1317551727 373.9626247159294 150 15351 183380 EVX_20201111 6244583.065918597 408.26059331956554 0.2861664239137522 1.873283067789063e-05 273334.4959334675 17.892835786673036 16682 2812 1244228 BRD_20210421 29152217.14654874 516.0093541557734 0.36729704527537915 6.51421511387222e-06 1346489.144939225 23.880725563832748 719 None None HBAR_20210418 2781167676.4450207 46153.81194987953 0.3500464258638221 5.823413125800694e-06 200163759.78270778 3329.947629523013 None 14916 42635 LEND_20200711 240063095.76145843 25857.15933590101 0.19146287565030481 2.0620992246314897e-05 12845625.982209658 1383.503474908687 49017 5754 67758 COS_20211011 75385316.29296596 1377.708504543219 0.02201042715200227 4.021368362572077e-07 16970535.301832423 310.0565622257508 30353 None 290587 LEND_20190430 9603975.927215671 1844.9287467588565 0.00861248431290192 1.6540656469937218e-06 1992547.6080803694 382.6775676778852 11600 5903 535516 OG_20210519 16776527.308304226 391.96364499912966 13.037391920623575 0.0003047481226545519 32736422.923187416 765.2115920888597 662221 None 231105 SKL_20210821 404304459.8770261 8228.93030805579 0.33359108625633166 6.785510372226644e-06 39203437.63969779 797.4293789334147 None 2386 218531 TRU_20211011 192407276.10425767 3516.53616115154 0.43634805053134434 7.975651127227889e-06 6492493.854562519 118.67101472461383 None None 87045 AION_20200217 46943949.29670772 4709.16813577312 0.11968819911817309 1.2030855476019268e-05 12321821.257702101 1238.5686462404742 1140 72537 253863 ICP_20220115 6422447712.582793 149030.28518032178 32.53327350595525 0.0007542984995754007 364688778.57227796 8455.472470014442 464957 26026 35734 NULS_20190904 32683784.983830187 3075.5929164192194 0.44367056226039236 4.1750061664733316e-05 5552056.622201077 522.4568093092058 21320 5302 307386 BCPT_20190603 9022417.947329069 1031.785102976415 0.07767779150098322 8.882526733836406e-06 3044656.1481632865 348.1592242624129 10894 2368 1057836 CHR_20201201 12341683.251069814 628.1152758033576 0.027302826903991658 1.3907804157711277e-06 2562489.4569587926 130.53081151231436 31438 None 887313 DLT_20200506 2622126.761416925 292.4202989460983 0.03203287524953735 3.5656762108803517e-06 40526.14147703859 4.511087358152 None 2570 8451664 LOOM_20210804 67262383.32820834 1750.6093185344373 0.08071799449177898 2.101316117754906e-06 5481474.699304578 142.69818281830032 33926 None 309472 CRV_20210429 878944964.1498374 16057.338695669832 3.0419119304858757 5.555431892072448e-05 332733409.7724722 6076.697282661798 109174 None 25328 ANKR_20211216 831623602.6592478 17046.3158773483 0.10198717239663439 2.089972631670004e-06 60828769.04773351 1246.53384872286 150990 None 5363 WTC_20210624 15534938.270589419 461.13021002582184 0.5323326412482458 1.5801457230579028e-05 7140962.062519518 211.96822789506408 65449 19831 517910 TRX_20210105 2197459010.85919 70237.11355583109 0.03056010393737172 9.767888638286505e-07 1819580209.4367435 58159.019650692746 557530 76761 32747 CND_20200229 11215322.267112548 1279.9200423811574 0.0059442056884901505 6.822156265881256e-07 64220.34050590493 7.370559185522929 35049 5984 388652 ATM_20210127 0.0 0.0 4.761915726794019 0.00014613027005792864 1229031.0217264341 37.71562652902541 4820470 None 267747 CHR_20211104 375173318.2140024 5964.923265325147 0.660406879007181 1.0473674558505861e-05 272741592.08213603 4325.525316046852 97191 1410 66033 GRT_20210511 1704424204.0652308 30526.924375366838 1.3875339855393116 2.4832644282550815e-05 334114031.91406786 5979.626438559626 None 14378 27969 UNFI_20210124 18102588.9761683 565.5987561252986 7.423638473831813 0.0002316399812951292 12164877.505579088 379.5809841471704 13519 None 124475 WAN_20200321 12740515.621040808 2060.8827909053934 0.12015574383184272 1.943092989969815e-05 854403.6236927611 138.16948227840297 105845 16361 732459 REP_20200625 184565260.42793268 19837.551035895187 16.79222523348202 0.0018066032098588906 17802518.707192115 1915.296334630995 133220 10201 234509 GTO_20200526 7421945.307006063 835.1234459752123 0.010924866212183929 1.2281070746051286e-06 8067598.996411887 906.9104563972548 16680 None 1039704 BRD_20200430 7802115.408270736 894.003565464892 0.1255696076717136 1.4322415053231726e-05 669186.1457464587 76.3270818868077 187 None None LRC_20200417 31821303.40535685 4481.848256097335 0.02782549945913993 3.922507352261645e-06 2780723.9826665116 391.9933326852425 34134 6806 593192 NAS_20190130 23917180.067367442 7002.11667494652 0.5252229062620646 0.00015389812832901657 2625930.2483771294 769.4366440030087 23575 5206 403429 OAX_20190801 4890732.08760426 486.32056638030195 0.0978561885833188 9.718394881655861e-06 415088.6235142404 41.223710146442706 12319 None None BAL_20210724 200355633.20978028 5992.992808020916 18.58551061866408 0.0005556383450980454 20901107.980891827 624.8661813765684 91943 None 131138 ENJ_20190906 72626034.53567788 6870.67425887487 0.08276656870287023 7.831023913288525e-06 12521876.354577508 1184.7671675742433 48469 13723 25046 BNT_20200411 12700241.469395561 1852.2509567781733 0.18208139734416887 2.654830094983251e-05 5050668.042899987 736.4105128606897 None 5016 146407 SNT_20200711 103222610.320588 11118.091573638585 0.026637532359829165 2.86745418291397e-06 25479126.832924984 2742.7551406467774 None 5706 151682 THETA_20200313 53612315.68299578 11169.96478602157 0.05402927574774193 1.1274718786250339e-05 6755614.421310632 1409.7478038431414 None 4027 385146 QLC_20210624 5926389.819793536 175.7684533422619 0.02444190580898731 7.252469946003026e-07 696885.9187143638 20.678191875734246 34256 5666 940522 SRM_20200901 170179911.0358672 14571.476956479364 3.4008637286797967 0.0002913744304616165 198922061.99524453 17042.965300645825 None None 111486 EVX_20210202 7856748.721320226 235.4973711442498 0.3612232224192085 1.0817087487003002e-05 1046818.1194829039 31.34771653270205 16845 2811 1099607 GLM_20210110 110492519.19826658 6393.577954391452 0.13099053800900684 3.250604680033085e-06 2417430.4057233254 59.989910034251494 None 20312 228749 NEBL_20211216 20251661.412430678 415.1088090962457 1.0767834888631014 2.2055957026835196e-05 457338.96315809287 9.3677592779236 41538 6309 1078711 NEAR_20220115 12462550402.221441 289145.3400345269 20.23676126297608 0.0004692109044926822 1198948397.2438927 27798.897985720803 None None 8074850 GVT_20190712 10197317.88740011 901.7101706184726 2.309617928654874 0.00020370503698202426 894633.3650456746 78.90539835656698 21465 5754 196385 WPR_20190704 6628575.276184866 552.3161396003871 0.010902771945482632 9.084571964517623e-07 924546.4247893994 77.03645066167599 34787 None 1294750 SCRT_20211002 344482463.5601364 7152.881234373115 2.3297461908805066 4.8373401202575034e-05 2540777.0173332472 52.75511405785018 None None 197630 PERL_20210221 0.0 0.0 0.06970062830626032 1.2398406856863767e-06 7487194.236541274 133.18284586061117 14540 541 428459 LOOM_20200523 14425842.29763662 1575.9089872346874 0.017263098899884356 1.8891328181194101e-06 16739840.16220665 1831.8716473732172 21543 None 710421 YOYO_20190915 2666505.266702684 257.6943156197513 0.01524642410674243 1.4734329892000714e-06 1242333.282112323 120.06060100584476 7538 None 893009 FTT_20211207 6121361169.134156 121276.6837159964 43.940298539344134 0.0008701391170198367 189386685.3971955 3750.378779499504 None None 906 BAT_20190929 220701205.84969226 26940.27976014197 0.164859049724608 2.0083949444853372e-05 21870088.18913171 2664.322924818136 106005 30457 27075 ELF_20190325 59151455.96230855 14823.399071326541 0.17836733938449123 4.469941283199735e-05 8951959.742769955 2243.389095662472 None 31984 915905 SC_20210902 1009477419.1964968 20755.98637082956 0.020784104113822945 4.266601986690669e-07 88338257.68742242 1813.4252199943514 140200 48271 147984 STEEM_20200325 61824901.05866412 9147.938816612459 0.1792986321831305 2.653424658859647e-05 10430875.773102969 1543.6561145421374 11115 3838 219600 CELO_20210202 0.0 0.0 2.8435611551096827 8.516515341680697e-05 12216920.463968016 365.8989024115544 None None 140742 DGD_20200223 94362110.23190449 9775.414317280016 47.17689225556837 0.004886657486156979 1776929.1707100184 184.05714788039955 17656 4697 321612 SNX_20210902 2154873699.0665154 44298.68783992425 12.471846076988276 0.00025634336556006396 162762754.89311397 3345.3870517301943 151881 7542 50358 MTH_20211207 13040855.832111964 258.33184426243577 0.036671407585581024 7.263407287444051e-07 949597.5654655158 18.808424140919367 22490 2092 1052038 PSG_20210523 66985264.767819196 1782.0388298238167 31.7612007147678 0.0008457289133929779 85891262.31677437 2287.0899813098545 9095787 None 33472 MTH_20210408 23764208.34106033 421.9121210918217 0.06818266929111773 1.2133653248824168e-06 1856942.5307790462 33.04578275641397 21198 1994 421640 BZRX_20211002 88520029.16192712 1838.285423891223 0.28636807900543143 5.945280370828844e-06 18464245.96984238 383.3357387733758 None None 301368 ELF_20190131 31212663.60148695 9025.24426532677 0.10369655716007806 2.9984200316647736e-05 2858740.518740169 826.6142166600564 84941 30284 919321 CVC_20190804 17345760.90145452 1607.5803796949833 0.05122563816209073 4.746660741847956e-06 4354995.660422571 403.5418137073401 88529 8146 266707 VET_20210106 1808113014.568004 53226.24086824541 0.027975090190708124 8.207013088720752e-07 643836077.2781259 18888.128964700412 148066 70609 134055 THETA_20201226 1294424448.003699 52416.22693855871 1.2959603740563344 5.248768578414621e-05 114377152.144439 4632.388568990178 76596 4675 78073 BTS_20200324 46909192.47094903 7290.198549450421 0.017412376095235237 2.7026836560683805e-06 12096371.74926383 1877.5534163547466 13295 7027 131725 LSK_20200113 84745433.20570734 10389.06999924045 0.615961224664764 7.555634640193592e-05 3575957.227188289 438.6416744381809 178814 31067 161971 REEF_20210207 0.0 0.0 0.02810826894273587 7.147958901063633e-07 94787565.26659286 2410.4565892614005 28571 1655 104266 ONT_20190712 692681479.1812927 61158.375834927734 1.0708098813663942 9.435888624289123e-05 213253997.23004174 18791.766881899137 81019 16274 247326 ADX_20200610 9198355.099449597 941.0212370807333 0.09967993595530635 1.0207591160613058e-05 820139.4002674097 83.98528362210942 51344 3751 28242 BTG_20190131 178134715.0741849 51508.238329340005 10.171034158566691 0.0029409879555320497 248423155.73028433 71832.37195823035 72741 None 291332 RVN_20190329 206671794.28572264 51333.47748095286 0.06451956526907794 1.6025359326019338e-05 96311327.3861615 23921.792127586392 22507 6203 283361 OXT_20210617 184836245.35048804 4832.439619755981 0.31249055180684887 8.169119229425387e-06 27969499.85518554 731.1778797255753 65344 4242 105017 ZRX_20210125 409819345.39670736 12728.232771199439 0.5474397988127174 1.6968615853544635e-05 131936222.3784042 4089.5365655957335 None 16382 88733 FTM_20210218 420429686.6666199 8057.740320795135 0.165443987951774 3.1730413969966636e-06 45885458.929474205 880.0347628579433 35088 3640 100563 STX_20210722 1021609596.9656506 31745.742065761344 0.9660956039993159 3.0020496409407328e-05 48774535.636613004 1515.622021141592 69225 None 61461 XLM_20190819 1366355855.4424574 132591.00066114677 0.06959621530947532 6.749950520598997e-06 128739214.4013427 12486.071597510267 275855 103377 64328 DUSK_20190920 12029532.979555193 1173.6137478073001 0.09093805911823402 8.867435076005328e-06 1786951.0516488818 174.2468729610118 20248 13324 178526 HBAR_20200312 162718424.99437135 20515.57571588117 0.04815136710369305 6.068962782687578e-06 58105496.01478238 7323.573846281705 37855 6353 124891 MTL_20200711 21540124.68914266 2319.8057454529885 0.3331545815087092 3.588409233449631e-05 5446890.7026030505 586.6847996596073 None None 396348 MATIC_20200417 34751289.17256957 4898.21909344556 0.012579577220395512 1.7745544481432484e-06 13997754.142292388 1974.611423104691 34445 1622 177145 TROY_20201030 4868572.094189132 361.4353432257334 0.0025507295361554675 1.8969256522892242e-07 689931.8774431559 51.308829811355544 None None 540021 GRS_20190712 20615945.608716324 1811.712654423689 0.282650509778626 2.48390985824457e-05 562457.4441921485 49.428306057757936 38721 107023 None SNM_20200224 6042580.340018864 607.3550024700994 0.013802721352275931 1.3879180467277103e-06 83598.08184586135 8.4061167000636 30262 9716 None HOT_20210115 137222290.47074577 3513.4851161390648 0.0007741812744413613 1.9768736305167517e-08 25501012.454133973 651.168928213015 27251 7483 750555 BRD_20200316 6544832.9367169505 1211.426816694311 0.10373027031847747 1.9303665471067823e-05 375862.5581394607 69.9460732450391 None None None SFP_20211225 169503805.27648133 3333.6664912130886 1.5665023572186594 3.0812324727085e-05 22675994.27193322 446.0255650408819 None None 24619 RSR_20211216 418217831.9122105 8572.475871919652 0.03198053826877369 6.544089745173484e-07 83785754.10056588 1714.4848832532343 None None 97056 WABI_20190702 12864686.867019858 1214.0162196641056 0.22559850902564055 2.1255444704324416e-05 1118199.402054131 105.354532977294 36451 8012 1160222 LINK_20190615 594354849.0028158 68333.81628006604 1.63236725398175 0.00018800562912867178 277705301.8198929 31984.322065799268 17568 7454 252422 ARDR_20210916 358456584.7495172 7437.875357411936 0.35902652738194346 7.450316784491895e-06 22930232.806125533 475.8353083086854 73359 7102 None LOOM_20210203 53386678.771962844 1499.0712130345678 0.063963243852969 1.8010346545340178e-06 17126902.783652663 482.24798462534164 24512 None 265333 TROY_20210610 21431073.411005117 570.9483501655885 0.011185445508885956 2.9813131366246297e-07 18511194.824924517 493.3882004281642 39383 None 469106 BRD_20200117 14701300.679081023 1689.3539978845338 0.2445910382333704 2.8070238064718177e-05 1011583.8134818365 116.09337231627376 180 None None BLZ_20200927 23810989.58772775 2217.5473227391535 0.09768649626653968 9.099853261398466e-06 4879386.62579536 454.53265289827755 42140 None 203437 ANT_20210809 154912055.95410082 3521.341842964878 4.317817991301305 9.817660039521804e-05 14644070.985553933 332.9702892072668 86198 3065 129869 TRU_20210310 88593240.6417071 1620.9796392720323 0.38470242823606804 7.026094567092855e-06 7132301.6405051965 130.26230699139296 21685 None 99540 PUNDIX_20210828 480839273.36269385 9804.100229688505 1.8580680229701694 3.789003722630664e-05 40436885.6982314 824.5958089159218 156051 None 272391 FOR_20210422 59578444.91950493 1099.5575965626915 0.1054974556755088 1.9504767116564905e-06 37823844.697914176 699.3014926872796 None None 121436 NPXS_20190614 207779081.308748 25270.501418974178 0.000870851391247527 1.0585158326246411e-07 7421722.959397379 902.1069882683319 61686 4527 180599 CDT_20201228 4443087.473583502 167.82398861309346 0.006549364147138543 2.487923006669537e-07 305677.7973524188 11.611857389139367 19247 294 518936 FUN_20191011 25211644.298920285 2945.1618049991826 0.004196240930434881 4.901944659523978e-07 835543.5819076033 97.60613051136323 35675 17324 353291 NEBL_20200711 10053952.601744393 1082.9096973623145 0.6090999181844097 6.56062110179508e-05 540649.568241373 58.23341721426518 38872 5949 736542 INJ_20210616 247994812.23288578 6140.743070123608 8.569996131792353 0.00021233551656795355 22373280.773472533 554.3342210775994 73015 3662 117778 GLM_20201231 110492519.19826658 6393.577954391452 0.11384030421842038 3.947551168039673e-06 1272733.6584959142 44.13358937059125 145974 20310 233334 ZIL_20210324 1980262271.267894 36303.8773915634 0.16775383915134254 3.0773774841521614e-06 285086071.03573567 5229.790629466828 186809 24710 33725 ENJ_20210206 374784089.67424124 9888.499814936411 0.41138515236682616 1.0822663226101641e-05 88234679.8766117 2321.265655003404 77779 17001 66239 ZRX_20200329 94962594.11459598 15233.08524602301 0.14829298950542483 2.3719033272526815e-05 27541795.35580631 4405.230231100012 152491 15959 132419 MITH_20200317 1941802.9381345399 384.72528655666383 0.0031082806775277303 6.180923158180545e-07 4899177.276404036 974.2182712998396 94 2084 1254611 AERGO_20210428 97808271.33250168 1775.2730290865484 0.3703320271881769 6.7242572751962e-06 3638922.678720653 66.07328154156737 20138 None 413577 FTM_20200621 15995966.671313839 1709.740676786003 0.007505444327816454 8.018522177586613e-07 2515458.8209059364 268.7417488060726 None 2393 327499 CMT_20200612 8713813.844966913 939.1439678101888 0.010851903699081036 1.1670190717699896e-06 4543219.848463719 488.58010146644676 284176 1636 1175745 ZRX_20210731 659132432.6127467 15798.396928452476 0.778628729393819 1.8640221766611508e-05 67140470.84960595 1607.3299364713953 223302 19601 56106 NXS_20190704 18692608.344089873 1560.472965632357 0.31219348775068195 2.6008153964330694e-05 425134.23898718547 35.41699995970889 21390 3522 987625 BLZ_20210519 112779992.20353204 2645.9066414035588 0.39284010622966625 9.182179022129275e-06 46904507.59476508 1096.3381254870226 59198 None 200786 GVT_20210107 9342670.687372798 254.8940811335328 2.1151411188987703 5.731139963673816e-05 1296507.6442176134 35.129886637789745 20835 5452 383832 QLC_20190228 6033389.621428877 1581.0069118133292 0.025139123422620323 6.587528799222205e-06 280024.3159698202 73.37838376153745 23294 5846 940522 ARDR_20190807 63265578.91985417 5534.230868064104 0.06302874100817928 5.4933155464714414e-06 1959442.955020103 170.77666910463978 67496 6555 897983 HC_20200129 68074101.97977413 7306.622621162325 1.5343866788560871 0.0001640985623409701 23408500.99443672 2503.4767393887923 12790 847 1039608 ROSE_20210624 81642950.7034343 2421.775481961264 0.054774728563534714 1.6252909073949504e-06 5697862.146285678 169.06854275336605 21643 1628 217403 LSK_20220115 337031591.3313445 7820.680902155405 2.099287841877804 4.8688605937969666e-05 2014493.5425592458 46.721978902386695 203771 33707 231723 STORM_20190819 9825165.968467887 952.2353747666544 0.0015761372342522136 1.5275605875346598e-07 82384.60966260864 7.984551091436874 None 2546 2477338 AST_20210823 38897979.39234364 788.3774523900715 0.22585437479479084 4.583273821075146e-06 2201028.646411503 44.66558145575038 44636 3698 258024 LTO_20210809 73042192.91698532 1660.3390138770183 0.2517397169283997 5.722857850758584e-06 18204797.655637503 413.8539220438887 None 4370 653266 FRONT_20211207 50635667.787938826 1003.1961352044736 0.7885270396640699 1.5619299869740188e-05 13309843.009403188 263.6440080375678 85501 None 319294 BEL_20210805 87391200.68055993 2191.944141457809 1.8108852066009695 4.553013553318959e-05 14770863.602615366 371.3760647653935 32961 None 462798 CELR_20210408 352080310.6562496 6250.6647480269385 0.0623523515870356 1.109000367859589e-06 116039889.28762676 2063.8881554728905 43206 None 163195 WBTC_20210427 8465786170.112538 157100.73352747448 53959.75735049759 1.0009951357299858 397382297.7554201 7371.748254807751 None None 239911 SNX_20210203 2471848855.4047475 69409.20414229015 17.06397892622284 0.0004804762163252759 271772443.14361763 7652.3884463109725 70875 3880 30058 BAKE_20210710 364779503.8434254 10755.17964678687 2.1083767393333916 6.203851242584196e-05 90974113.16825907 2676.892864983623 None None 8023 ARDR_20190805 69591662.02134494 6355.435402667791 0.06918574378580657 6.317437368726708e-06 3684534.419755083 336.43947663240664 67524 6554 897983 ALPHA_20210112 62184018.04509691 1752.7782063876423 0.35606119276965703 1.0016708229639853e-05 58519524.63993084 1646.2704050834716 None None 85584 POA_20210805 8794831.987716382 220.5917792690195 0.030266449567480102 7.59998253550042e-07 173068.42789583985 4.3457922823830115 19959 None 221231 GRS_20200313 7753691.212757315 1611.153461327535 0.10431139554777985 2.1767488731360534e-05 4251505.4744576905 887.1954691104227 37726 106866 3955402 ORN_20210120 48529605.19776001 1340.1215871817722 2.8684661558609554 7.928147463802696e-05 10183272.827083543 281.45525953755333 32101 None 133090 EOS_20191220 2339954442.3831897 327682.19088827923 2.448437905506556 0.0003427661659763997 2056650967.6998675 287918.4174386032 1372 69562 76795 NULS_20211007 46431492.09771662 836.3897343925416 0.49001186045770295 8.833053586863604e-06 19352678.06546332 348.85531595477147 71209 5473 224525 DOCK_20190511 5725001.546956781 898.5087014646384 0.011140671014440577 1.7484537740493673e-06 2971074.901692196 466.29032650848154 163 15292 217238 CND_20200322 6616695.945149709 1073.8527819475923 0.0033938240172243094 5.5075304533634e-07 39488.75420937605 6.408273241916492 34848 5967 433768 XRP_20210723 27517390338.90026 850827.658364893 0.5950738476348508 1.8381494989844268e-05 2245674032.11694 69367.60224675582 1928933 323104 15139 CAKE_20210902 5222945880.601507 107390.14269869447 24.1187312030659 0.0004957067871339944 336339076.8023772 6912.700413035267 1073881 None 678 TRX_20190410 1987081573.3487277 384091.87327297905 0.02990723455666187 5.779539099721495e-06 526419143.71864784 101729.90144573976 409394 70453 89278 CTXC_20210809 30707174.647387557 698.0130099016617 0.1679319251087717 3.817602399548097e-06 6025788.3245021505 136.98445933903446 20262 20597 812838 SNT_20190903 55101839.695119075 5337.654462547386 0.015574767819056591 1.5072526829626365e-06 20222513.631724853 1957.039634990338 None 5724 268012 WTC_20190126 29581781.390061732 8295.47126973506 1.1174515781874628 0.0003133613672531726 2152643.4888355033 603.6550666153071 54599 20461 575473 XLM_20200321 807000169.6843907 130538.88958886797 0.03977942171106018 6.432910571465329e-06 348235782.1777349 56314.78659507001 281206 106825 82721 GXS_20200305 29274971.68341323 3344.12205767275 0.4506950381625586 5.145842880806281e-05 4935227.195640393 563.4831000887957 None None 822093 TNB_20200626 13593758.153506214 1467.8637015760191 0.00394191800624525 4.260081910851508e-07 4883624.419260191 527.779624409282 14962 1437 2259871 SNM_20210401 30604728.18608088 520.7557362077483 0.06993744085733292 1.1900227729750055e-06 6783618.464504567 115.42687803521135 None 9494 None BNB_20210304 37511795342.74582 737942.0603723814 241.75975167975105 0.004771428848461656 3989584025.1825523 78739.39387700072 1973223 183645 198 LUN_20190205 4415809.293933939 1274.6640449277966 1.6334546001096188 0.0004715117228096472 1318413.318694509 380.57215378444835 31844 2264 1530504 BTG_20210421 1662466878.8535817 29426.525473180343 94.26578958610361 0.0016718556251453108 76983760.98198918 1365.3493426161695 92833 None 172941 FUEL_20190608 7440228.0077265985 924.772730345335 0.009487695898133357 1.1801682769795816e-06 10529705.50012853 1309.783168707379 1 1516 None LRC_20210703 313387239.72031623 9271.849372974739 0.2518979386026523 7.439101609749677e-06 17600918.21565971 519.7939282771405 81787 11063 263753 STORM_20190905 9491615.898610577 899.2299903667384 0.0015235465128315285 1.4423254477095015e-07 65896.14717535289 6.238318894536556 26507 2545 2939778 FLM_20210206 0.0 0.0 0.3783342182546932 9.959680348106351e-06 52839124.54539468 1390.994430198842 13742 None 184710 ICX_20201106 181341677.69050214 11668.22240889988 0.3168717220352563 2.0337546236068928e-05 13764860.751057552 883.4600012888999 116256 28014 230904 ARK_20200807 77580621.67279111 6594.009719414955 0.5130567790436591 4.359806220526471e-05 5206333.5789527735 442.4189768228866 62550 21833 107464 ONG_20190810 0.0 0.0 0.20753469417218906 1.74974356271204e-05 8097114.153651101 682.6749341071929 81588 16293 237451 SCRT_20210418 285913450.99348056 4742.867993982282 4.0990790397101176 6.802385647925542e-05 3052755.7100916123 50.66021276432494 76727 None 64525 VET_20210707 5510817132.148575 161341.35337471977 0.08446602724179422 2.4732532187752186e-06 607495163.5551181 17788.090877673414 388740 191917 29344 ORN_20210203 70748651.93604587 1986.600211335265 4.13894066862184 0.00011650770940856722 15503788.01597736 436.41863305544115 33543 None 131553 NANO_20200501 83250209.45600052 9620.45529412332 0.6213451065163877 7.208427334867919e-05 6087616.453301026 706.2442495474845 None 50744 290525 POLY_20190221 41064219.868692465 10353.840433615243 0.09221340655037132 2.323464480417596e-05 3555420.546435753 895.8451554523041 32641 4988 244935 BQX_20191102 6396826.586220384 691.1109156149718 0.04543536131226008 4.9074547244440305e-06 398263.4368452351 43.0162703293411 None 5720 373048 ONG_20200707 0.0 0.0 0.20667083495805458 2.2120008078266763e-05 15694491.011338403 1679.7835457796925 86710 16527 150808 MKR_20210201 1338454552.241126 40499.99428604906 1478.7447997660104 0.044724223792574444 176347776.55570838 5333.589288191187 91242 20245 38971 VIBE_20191012 3702199.548619266 445.84213330268886 0.019856457286463906 2.3988327830294617e-06 1073124.5664286767 129.64278335684 20156 None 995532 TNT_20200518 16937703.90209381 1751.565655845559 0.03937962933446494 4.078763901211858e-06 2309094.606631212 239.16557583663072 17919 2596 456220 ATOM_20210106 1479314485.5012825 43547.24980727382 6.223298928537338 0.0001825720503967924 512929990.25634396 15047.75539572502 None 10040 104708 SYS_20201030 24391970.998981107 1810.8312535436598 0.04067682384203542 3.0247064136379034e-06 539139.3332341539 40.09010647956746 60964 4489 266377 NAS_20210427 43989948.14089121 816.5516696908703 0.9672005874302879 1.7949037308109178e-05 8924047.371324468 165.6099689029413 24798 4897 465428 PHA_20210324 163669386.4773202 3000.5284782912545 0.9160079970393238 1.6778503434764597e-05 30385492.864397336 556.5705736632552 38043 None 130514 KSM_20201106 272875953.55590004 17555.54432963977 30.3715459708164 0.0019493147462797133 25157024.50351259 1614.6349245553072 14104 None 170112 BQX_20210112 109436375.89371318 3089.4148646215895 0.517859960532461 1.4547944208099497e-05 11952139.512107657 335.7646314474326 19952 143 152603 BTG_20190806 313844901.1732904 26573.27745892123 17.898250733726993 0.0015152901527737388 12618050.87903443 1068.2612803143745 74948 None 277231 PSG_20210106 0.0 0.0 10.306113171213502 0.00030217418036928233 2185679.189317759 64.08388949454213 8530259 None 36186 ATOM_20210806 3605997303.552028 88012.02130277472 12.996847068201792 0.0003176478533367033 275995122.7162036 6745.425086726957 168658 33045 54848 NAV_20190901 7101426.317292635 739.8078500049407 0.10747372121772245 1.119632860690247e-05 52570.4389593714 5.476649574697805 51510 14206 463565 FET_20210207 117172651.15536416 2986.802360777316 0.1703388610637182 4.331733059115008e-06 24450681.412552595 621.7830994714941 28272 887 293884 ASR_20210221 0.0 0.0 7.8953805015698615 0.0001404445115320344 3847496.356411986 68.43998795119782 None None 142530 BCPT_20190818 3617664.910215195 354.13739345726395 0.0311441668852415 3.0487384420248554e-06 268433.2631961453 26.27724195159244 10941 3057 1353671 ENG_20200223 25564636.670525514 2648.3608167616217 0.30821458119570727 3.192957676988434e-05 1280252.2362353017 132.62809274988481 61450 3617 305641 SNGLS_20191118 5839477.440357709 686.8110732172591 0.010127138996428437 1.1900851397067976e-06 1897794.0522764882 223.01821873233078 1895 2158 3001732 BRD_20200913 7123206.783617122 683.1311352337489 0.1024725423054137 9.813550539383571e-06 295812.2396878371 28.3292314119884 235 None None COMP_20210902 7323917.037921154 150.72053679226528 7.940651099823669e-05 1.6341244583311449e-09 239.95522185836242 0.004938092506692979 2577 None 3554274 GTC_20210825 119794514.22576112 2492.8744517358327 8.372022460013445 0.00017432852585246478 26571201.69088519 553.2854746896003 56742 1126 24544 GTO_20190625 23295227.895582907 2109.1713008055567 0.03522595894040314 3.1896248550327196e-06 12871400.245170629 1165.473967948724 17417 None 1224207 DOCK_20200407 2753405.943975433 378.600233428592 0.004923255276090685 6.756537063999317e-07 402778.02408362407 55.27612312734539 42846 15008 604505 PHA_20210804 141821898.99630466 3691.137983376509 0.7793797299368602 2.0289443496203193e-05 18327601.132454187 477.1189361416983 107131 None 139541 YFI_20210819 1340719950.5190136 29760.40774040704 37400.653430079794 0.8312698778691202 229900325.02294615 5109.7827865807885 None 7028 25989 ARK_20190302 79925191.75748037 20905.03580589561 0.5693356145730327 0.00014903063275966276 866502.4595869432 226.81772672326144 62688 21761 156863 OAX_20190509 4156265.7554083667 697.7287963016446 0.17710935095469335 2.973560047859017e-05 361305.5326943906 60.66103744941703 15254 None None LTO_20211204 130032239.83593825 2421.807823077845 0.4372157962855276 8.149203864324854e-06 28781142.84543091 536.4476821018162 21081 6004 189843 BCPT_20200701 2580037.6516808793 282.26556081 0.022211322825191157 2.43e-06 47746.40622268729 5.22363157 10477 3173 2322058 THETA_20210618 9491469668.268253 249817.5139490595 9.552806317758343 0.0002502754594819565 428895918.7230773 11236.71092638073 175389 19848 17272 CND_20200308 11739573.721167987 1320.7424300607406 0.006219753240060888 6.99248992781348e-07 42398.40982239823 4.766595107485736 34993 5979 433845 BAT_20210429 1783906884.2737153 32589.977997117177 1.1971273225724601 2.1862627929327504e-05 352972186.0233554 6446.1811429108875 190986 69557 19254 MITH_20190629 17728998.79402365 1430.5732890882418 0.041649013412468835 3.3533602969093076e-06 8321282.948231003 669.9860950269792 75 2074 556863 OGN_20200526 10045632.10928959 1128.9407072706933 0.18714307328217475 2.1058638155978203e-05 9599330.64932125 1080.183343889234 64594 2232 165846 NKN_20200223 14431697.80523488 1495.8811769939973 0.022238632754847183 2.3038174542179876e-06 590097.198797776 61.131286318811284 12232 1003 406869 DCR_20210909 1946800992.768374 42004.818356759126 146.31228285990738 0.003160302325872249 15201443.421600211 328.3467119974986 48276 11672 170768 ORN_20210729 167381968.76078218 4185.905948537681 5.781557156347553 0.0001444468448845736 15479268.207421707 386.73516376627583 75996 None 85178 ELF_20201231 48396435.24287596 1675.9486197845042 0.10482966321271107 3.635096219231495e-06 10749764.15045944 372.76116152042715 82259 33334 554993 YFII_20211207 106699656.75383288 2113.93841454552 2684.7296479055985 0.05319691842971997 18659988.493379243 369.74072475274903 19041 None 706820 BAR_20211021 50722665.02129619 765.2447355333438 17.169395869006866 0.00025903446886488653 6026197.279120537 90.91716583283053 None None 34479 BCH_20200315 3050856327.8499866 590232.1936094939 167.11354832515227 0.0322290367395389 3528122368.5223227 680423.4999274487 2641 287295 124622 DLT_20190411 9374280.197160857 1765.3163855389269 0.11712116167512551 2.2066659758466895e-05 518860.15663568786 97.75782937043937 14957 2684 1058682 POA_20210511 23910516.81369118 428.2989944203986 0.08326259996629902 1.4901476638064308e-06 1125339.5733142816 20.14016061042948 19626 None 277695 HBAR_20210809 1986798283.0263383 45162.3721889298 0.21375341625304162 4.8593184873854026e-06 49069123.79246343 1115.5026412408395 119265 23956 44489 FUN_20200927 19768674.565374743 1841.065946434016 0.0032880874416940913 3.06122361183822e-07 288562.5755805604 26.865300437537627 34152 16659 255524 ROSE_20210804 109236249.95549855 2843.0452153433444 0.07280977133594764 1.8953209522829112e-06 8299262.599732465 216.03922118080854 25548 1699 217823 BCD_20190621 233377520.44006857 24418.346835460863 1.259283288347444 0.0001318388630848394 6275158.954129507 656.968793157544 21319 None 3124822 RGT_20211230 299034264.44916236 6432.780375272824 26.646250196214474 0.0005725949412462169 14063063.25176909 302.1978258514037 None None 50980 ZEN_20190725 45923655.91811443 4671.746620453348 6.584881816235543 0.0006715236391442869 1768907.6094660023 180.39249729431145 26354 1727 256228 BRD_20200621 8990676.677174695 961.0274703702952 0.13905930837818822 1.4863456576606432e-05 1873479.956580873 200.2482847538028 204 None None XMR_20210702 3722909151.760247 110816.8154712905 207.46923443337306 0.006167758992100714 191951905.51607352 5706.451342200487 428426 227262 31847 ONE_20200320 12353274.067372305 1997.550953247447 0.0024212904734811445 3.917696463094704e-07 24318389.96744378 3934.764184928106 71105 None 395411 RLC_20210221 139878180.8449781 2487.9062346832793 1.9775366374588248 3.51729319035182e-05 14324926.20595085 254.78650783041363 34887 4064 376079 ALGO_20200331 106982494.80359544 16654.225057760803 0.15344411544517816 2.393428771744923e-05 58996157.66773328 9202.249351478134 16282 832 316746 STRAX_20210204 70421231.3150969 1879.0978339803162 0.7062648910277323 1.8828950351181166e-05 5945000.568714247 158.49311210015816 147468 10372 249759 ENJ_20190801 76011728.25904995 7561.818080638495 0.08679533506701193 8.629623482192578e-06 5890063.362100757 585.6193660862461 47012 12728 22336 YOYO_20190510 4751751.542960947 769.6226552668402 0.01626698700717024 2.634528952671348e-06 381728.8818779213 61.82311395066329 7466 None 1472428 SUSHI_20210304 2240010691.81592 44057.64127032934 17.51766413799528 0.00034573285025711576 1067937663.3844616 21077.07565062883 51503 None None CTK_20211207 100117370.0703904 1983.5298537402791 1.670540522271842 3.3081310398788524e-05 44040748.4251362 872.1283018418195 105315 None 236315 ONE_20210203 89527998.65185511 2513.901381894471 0.009401357796119877 2.647172058597761e-07 12382375.077021522 348.654715986843 80859 1843 152986 NXS_20191220 10985410.473586675 1538.0740333158503 0.1839905087600497 2.5748630546767633e-05 87763.80860739836 12.282143782515595 22640 3541 663769 ZIL_20210218 1607938282.0990756 30816.922638703996 0.1367906658345256 2.623500864487187e-06 256912518.89896378 4927.311460303557 142713 19292 35455 DNT_20190704 10101980.479226127 841.6583243001922 0.01580356270951092 1.3166923194330822e-06 970694.1823759557 80.87452164717298 60639 6366 784792 LTO_20211125 170203079.04254755 2977.02877147227 0.5736368358971993 1.0028800657966528e-05 30215112.853406582 528.2459645235907 20450 5862 214303 KSM_20211216 2594845337.390657 53188.1889025095 288.98485081036966 0.005921710644341629 61986637.51303379 1270.1943722605226 None None 86184 FUN_20190305 24066435.989884917 6481.204881007317 0.004004287173921577 1.078373448710202e-06 1666802.1994862813 448.87770484689355 36373 17813 523273 GRS_20200506 11168468.205826443 1241.1962230370436 0.14894010808429936 1.6552305670398058e-05 8156482.67971982 906.4623105659068 37445 106890 None GVT_20190625 16215982.747099828 1468.2033196734 3.6567673735124395 0.0003311057674371617 6288604.256005015 569.4081481297867 21420 5769 171234 BRD_20210219 18181741.580148682 351.85174416460575 0.22952564056716773 4.439529065527628e-06 2668269.2964115017 51.61017769867536 557 None None RDN_20200414 4461803.348344837 651.2389568302965 0.08745029398392884 1.2771282449293694e-05 879394.5536068333 128.4271980897787 25036 4317 1242086 MFT_20190225 15613325.659937784 4154.625791942873 0.0027220242126582412 7.266261407902454e-07 1703621.247259891 454.77028694606275 15990 1850 701840 LUNA_20210111 411126257.3310879 10664.743465128655 0.8478717886387434 2.2044491437111435e-05 36616084.50952331 952.0106368047296 None None 167354 SUSD_20210724 198040992.85662293 5927.040534622295 1.0101315748903852 3.02110265067925e-05 106130909.74284384 3174.1644426657913 143655 7285 44436 WAN_20191113 24221101.312447377 2753.1323951338527 0.22838777131969748 2.5950230307706558e-05 1105168.8312640921 125.57321057289289 107121 16690 357067 XZC_20200320 34207101.06648832 5531.052281825734 3.5113628445427287 0.0005688239381756279 25438946.218221284 4120.987266632376 63659 4093 90239 SNT_20210620 237397596.24689037 6659.2273068723025 0.06109182008945083 1.7158881221931522e-06 10796817.03845267 303.2505839021913 132360 6002 121237 IOST_20210325 836245806.1603198 15820.991004122907 0.04497733898967244 8.525549845652076e-07 338947611.1282649 6424.823741578501 231977 52843 143950 DOT_20210104 9839572847.117577 294781.80193391745 10.27944456603755 0.00030932724504732507 2026241252.0596154 60973.29678411282 None 7220 41009 COTI_20210106 27094456.142720472 797.4338492342051 0.04798191333695824 1.4076386817479397e-06 8349365.477048814 244.9441674201026 34934 1270 237911 ARK_20190616 82274673.01759285 9321.510136282019 0.5785650594061421 6.55499422598708e-05 2429950.772043885 275.3072108524814 63502 21805 211362 CFX_20210708 220430664.0846372 6487.491604102346 0.25870420119098886 7.613919506807473e-06 2251124.05065217 66.25279853437891 36910 None 151953 OST_20190729 9214244.218108613 965.8354338106875 0.014142006635826675 1.483483002538555e-06 375733.7877732564 39.41411583197662 18098 757 581011 SUSD_20210828 314806173.0394392 6417.640140837978 1.0034925133794974 2.0463388970813587e-05 14884864.698338877 303.5346771788518 150173 7514 47795 BTG_20211221 741916001.3234808 15725.663034051087 42.32478725818528 0.0008976434662559779 26551339.969572637 563.1129744052957 105565 None 261846 VIA_20210107 7697027.164817062 209.99634176205655 0.3337520688597144 9.043272823312122e-06 176649.14612082043 4.786446501541169 37844 2128 3644327 XMR_20200520 1171764658.778097 120083.3151995366 66.6852937209509 0.006834928851975284 111914481.94715822 11470.707841752777 319922 171487 80558 ARK_20200331 21871647.533959296 3404.17204034453 0.1473495038150745 2.298364723275023e-05 1666974.020745941 260.01541808425395 62511 22041 83106 TCT_20210428 27600448.337304465 501.00717417440546 0.047706661580898264 8.657320035410897e-07 6380016.113168431 115.77804753559414 None None 341028 ARDR_20190228 56545658.0437597 14813.602966119794 0.05652963456899691 1.482685250871627e-05 726712.1169277945 190.6053958447971 69385 6604 792340 WAVES_20190702 187671904.8624603 17710.0515073105 1.8826575753112555 0.00017735881564895234 16749766.32128539 1577.9389497576285 142601 56861 50285 CDT_20201018 3769608.163273973 331.8519858363244 0.005578508066134347 4.908635194129187e-07 69990.30253649254 6.158579645407698 None 291 280851 SNT_20190430 77156526.77409485 14824.445874797077 0.021883415238381988 4.2045391780616544e-06 16765861.903234502 3221.285272807028 None 5762 304200 ALPACA_20211002 131545588.86878946 2731.298363098201 0.9055568454537153 1.8800242529278378e-05 17398166.66066506 361.2028934764722 49283 None 21947 EZ_20210731 0.0 0.0 2.876049214456302 6.887206022052586e-05 4672660.162900219 111.89507137490106 35472 None 162901 NEAR_20210418 2087351496.7085745 34626.07388076699 5.87920108445846 9.78070742472778e-05 83000599.5854899 1380.8076453935998 50378 None None OST_20200312 6541335.60919133 824.7056501892564 0.009461230100094163 1.1924864611271036e-06 468800.6317290942 59.0872857324561 None 752 839878 NBS_20210821 0.0 0.0 0.01586651582631612 3.226192216766802e-07 3327351.756520855 67.65616633696258 None None 3265664 MDT_20210729 15427591.142166968 385.81516306638014 0.025455750026950674 6.363093518794945e-07 4503188.818548139 112.56479009605515 34168 315 701499 SKL_20210104 49686566.57119428 1486.4920756197391 0.08672700279658759 2.634630774059022e-06 12699567.959267778 385.79302274766616 None 86 244845 BCH_20200430 4723075212.866066 540984.6311299945 257.52047839616193 0.029372674205841866 4579773336.036461 522366.9627122182 2990 293643 142695 TOMO_20210120 97735189.1489076 2699.0182464071827 1.2668539721153262 3.5149491757075726e-05 12699317.71866749 352.3488683762469 36908 1724 196124 VIA_20191216 4726828.405396895 664.7369004320767 0.20422505641568536 2.8722829415877143e-05 186869.50146967985 26.28189169314572 40144 2192 5495093 MATIC_20190621 48851915.16555594 5107.060373564962 0.02259968288112068 2.363136097485838e-06 35401143.90807466 3701.7210153576134 17087 682 215826 GRS_20200721 14682921.375942206 1602.6263376101308 0.19425519496122406 2.12014904178112e-05 855182.7881513102 93.33675576648692 37629 106866 None ZIL_20210702 1012974951.2808203 30147.44122599622 0.08315822985038095 2.4723453540317366e-06 93716445.6634057 2786.247608314469 306071 34741 36438 ATOM_20210117 2168903025.14005 59800.4047916139 9.05712539865608 0.0002502310709537887 1637463199.3996713 45239.97979469247 50536 10314 102282 MKR_20201130 494180321.2812777 27242.96033839951 544.4413748479534 0.030013533908216962 30065115.45927843 1657.4059283123258 73567 17814 30241 SFP_20210325 304956230.4797337 5769.4875639784495 2.806423431800688 5.3345274318288284e-05 97049638.63343501 1844.7464259053475 None None 38831 DIA_20210408 318309199.7542299 5651.279098975292 4.569131087469437 8.126667122937931e-05 71661522.14880109 1274.5734908404413 29763 327 244618 ILV_20211007 434024265.840529 7818.035919976216 683.0193298667301 0.01231224553614099 119371067.5591555 2151.8071735778954 98793 None 13370 YFI_20210201 905983532.2749246 27405.497641455935 30207.801966842468 0.9111917106532786 443136182.6416345 13366.812214831294 None 2889 19848 XRP_20200306 10432581064.571096 1151990.1597813722 0.23799885638303916 2.628982020798377e-05 2193770065.4365125 242328.14171662042 946517 210552 33270 SCRT_20201031 17170908.45272869 1264.2715272356304 0.30438344042989274 2.24178553307871e-05 154453.69948310638 11.3755225495411 61741 None 429044 MATIC_20210210 484477250.7676025 10401.723407364245 0.09872013499405008 2.1196163505079972e-06 366127293.86548114 7861.105523116365 85451 3623 42218 CAKE_20211021 4797916410.0628 72385.83945097408 20.51676331719799 0.0003096372138353902 215634452.0189624 3254.3364612538376 1102008 None 560 AION_20190131 32374276.850833725 9352.55935860089 0.12321959804328002 3.560410323262071e-05 871220.9996644751 251.73789643093758 67436 72376 187571 SC_20190421 124773977.9844551 23498.04350575617 0.0030952383167849214 5.827661359934167e-07 1856907.327703384 349.61531149162136 110154 30997 247728 ARK_20190821 31402155.63513795 2920.9528178707833 0.21996796278073905 2.046088963417344e-05 352888.7455948235 32.82486042731051 63330 21801 119780 CHR_20200707 11470027.693151245 1228.738198616346 0.03239857238608364 3.4691427724490127e-06 16847008.68569417 1803.9275843050966 22608 None 392224 ONG_20210310 0.0 0.0 0.7717618753567661 1.4095237049572591e-05 42600787.17562161 778.0485314349031 104983 17261 202243 NCASH_20200301 2309179.178994718 269.2431374248744 0.0007885006355050209 9.204709471365502e-08 488714.01828996127 57.050943910292574 58059 58370 746963 STEEM_20190908 54620593.77910908 5217.4635916052075 0.16840290977531802 1.6086168049113248e-05 799966.6560081486 76.41434509298665 11072 3768 235183 ETH_20190509 18006362667.522446 3025048.725211032 170.11063311538186 0.028557365265643755 6667762034.758085 1119352.2265114712 441837 436384 36863 ONG_20210324 0.0 0.0 0.8364179980295757 1.532065473030548e-05 46212454.443683565 846.4727689260126 110522 17708 190882 POA_20210120 6264815.391970688 173.04549046526228 0.021985570111711723 6.100005465711817e-07 240099.9786458661 6.661692985968441 18194 None 322201 NAV_20190704 13133358.94595929 1094.3837915888787 0.20047989698909988 1.6705699639145392e-05 711130.1834972812 59.25744889265302 48346 11252 893210 ADX_20190510 10676274.793674486 1729.4226904724858 0.11598926459624141 1.8788806950042696e-05 475701.81276502385 77.05773079034606 54663 3917 1002486 DASH_20210206 1199688011.4898694 31473.684914731264 120.58326218323243 0.0031590312527388547 732617776.0204183 19193.065512224603 339596 36588 65272 ORN_20210821 284437943.1763755 5789.251031455486 9.520410179625987 0.00019365278235301803 20057614.037602264 407.98796401198996 None None 95381 HIVE_20210325 206582667.44853425 3926.7805918278273 0.5394644388266853 1.0254613038069422e-05 131943632.74558604 2508.1002551084202 None 148 118919 AXS_20210718 1019443579.8490574 32253.11927986482 18.479352505738063 0.0005851785070840902 689811746.7336116 21844.00173097521 242740 None 3082 CDT_20190905 8587043.872789493 813.0190033230947 0.012731719986788077 1.2052985304615185e-06 310434.6376238709 29.388520397926165 19711 299 193122 COMP_20210217 8020025.585806105 165.2448557208831 8.722321627472896e-05 1.791598318940925e-09 993.5223796686768 0.02040733076888731 2146 None 1914243 VITE_20210422 108492449.14919087 2002.3184847968555 0.17814776210730546 3.2936629513870414e-06 39655713.205518216 733.169767898471 31054 2154 143258 KAVA_20201228 60872695.272103585 2299.2791789341804 1.2892661101264276 4.897566763796907e-05 15594916.344933847 592.4079084623692 None None 82278 VIB_20190626 8441455.085941652 714.0018596775711 0.046403094148614564 3.921539332512393e-06 630863.4990222476 53.314462542925085 32653 1121 2278285 SRM_20201101 48806184.62173049 3538.0381062240053 0.9755681733737587 7.079218946558631e-05 14180362.812726395 1028.9992625094421 26505 None 63040 OG_20210711 5195090.384882021 154.09858663077972 4.044897310253804 0.00011995627010420597 2063396.253841796 61.192485092365004 688332 None 236216 RLC_20200316 17641259.46605423 3265.3384745005765 0.24944269513541997 4.6419992219358756e-05 265729.22024883074 49.45083009831321 28405 3559 324809 SNGLS_20190915 4020758.1973283673 388.5498878765789 0.006967049928622981 6.732676614066745e-07 32665.328876860254 3.156645898524568 11 2162 None DNT_20201014 6637299.459471536 580.9775387819061 0.008836706795085999 7.733591709081219e-07 207406.0407444532 18.15148645654543 58275 5966 478019 SXP_20211125 461382967.71872425 8065.09009353766 2.3886458291965242 4.1764244155361905e-05 97946159.54343824 1712.5382387175282 None None 160371 AUDIO_20210511 320593290.47893727 5741.955031123215 2.0913535573303963 3.742338493389663e-05 46311158.938257985 828.7074758863904 None 5084 33719 IOST_20201228 107070151.87667833 4039.410335749662 0.005788597773359069 2.2011292086202552e-07 37080033.90873717 1409.9778372714388 None 52143 676530 FIRO_20210427 120406003.6882289 2233.624277101987 10.20678475570124 0.00018934373306268574 10809045.291640697 200.51613072566323 70782 682 172734 CTK_20201129 24561577.39738992 1387.5238161293894 1.0224873511998276 5.7721005698822685e-05 3248862.9002706665 183.4033778130989 7793 None 292384 TRX_20210204 2459585464.123432 65649.330710775 0.034474788145664355 9.190833703803413e-07 1370963145.1582482 36549.301559021784 577030 80071 29522 BAL_20210509 745244962.6109498 12706.325244401145 69.2372284835795 0.0011792140753204 84632798.84240878 1441.4237804506774 78746 None 45464 QKC_20210723 94046375.19054177 2907.831775265453 0.014437403124226549 4.459478839839415e-07 6074654.774921347 187.63619880249402 75209 9534 284050 LINK_20200316 773607184.621726 143192.11782787726 2.106229454210574 0.0003919583807557888 440444295.918326 81964.39979326724 46150 13653 84663 GTO_20210124 29589902.000767387 924.6737539255824 0.044598151647680016 1.3916347141972486e-06 42270761.64010949 1319.0111500280948 16659 None 744307 EOS_20210523 4903022407.987394 130450.14282863872 5.109075727485398 0.00013604312702950193 3792979526.409455 100998.46294225758 222522 87200 50771 RLC_20210104 56415047.37083475 1686.0209328359929 0.7931474266464066 2.4094859247159033e-05 3678135.0106891496 111.73729170291115 33731 3893 542862 ELF_20190520 79196362.33501507 9676.949600975615 0.22157941252183938 2.707942154203087e-05 18583673.803155992 2271.1276782794844 88213 32780 928009 INJ_20210124 113861267.53016211 3557.4510098787073 8.444934431035195 0.00026350750518618315 23481328.309555702 732.6884882101141 40962 2041 116830 PSG_20210718 36018246.994546175 1139.6144294325811 17.10167692328758 0.0005410622388481519 7823247.025305664 247.51160775409576 9280512 None 40943 FLOW_20211230 2746132030.9535203 59210.17934194579 8.710070800215657 0.00018716864254349775 53560244.301485434 1150.9433677575767 134303 None 178119 BCD_20190723 154699660.41124114 14948.172051293332 0.8215166457080054 7.945914316297933e-05 5563749.862268977 538.139791979542 21429 None 2927391 QKC_20210421 225667007.6044381 3994.2089363873524 0.03517010350333646 6.23761129431667e-07 27444881.18511418 486.7500626923292 71974 9382 311852 OAX_20191011 3775118.044374232 441.35994435348687 0.07227724528957775 8.450141315864252e-06 311645.4363562656 36.43536727366616 12256 None None ATOM_20200411 427143173.793021 62289.40809979532 2.3022527483797255 0.00033568641048885333 148965135.12660325 21720.278772098005 None 8354 80555 CTSI_20200531 6867877.401175056 709.5512610602364 0.03460733396704965 3.5710918254293524e-06 6163952.746948633 636.051343565476 14317 104 266708 SOL_20200621 10673766.043338617 1140.9355211267098 0.6445979846649201 6.889427837275118e-05 1745226.9861953105 186.5289012237284 None 1928 124882 FIL_20220105 5369065733.89456 115927.50834243381 36.37876929841391 0.000790655395451841 700226221.1739333 15218.701745145698 132323 None 30755 SKY_20210603 32057053.16288316 851.9245862578192 1.6034395544311248 4.258381067556194e-05 824939.8384727052 21.90857884425433 19449 4387 327198 VIBE_20200318 1128398.0386239474 207.72145347023178 0.005982382214826665 1.110028071116024e-06 18541.659252941325 3.4403957348 19391 None 1312296 NEAR_20210318 2010951874.1663198 34169.92985356406 6.282880029499854 0.00010659377678903795 90774993.98939876 1540.0659254832997 None None None ELF_20200422 27507506.176038012 4016.7096468907075 0.05961691555934703 8.71032885750531e-06 23196074.072345387 3389.062172665574 82332 33422 612782 NANO_20200629 129505966.08000736 14200.467386134067 0.97497207431928 0.00010682561906228839 4917947.589344652 538.8490702304849 98080 51944 210277 RDN_20200127 6479090.162770602 754.8624368545857 0.1276421402985959 1.486020634915106e-05 926117.9413916518 107.81943706472242 25247 4333 2042821 DATA_20211002 0.0 0.0 0.12040763878955812 2.499781833254047e-06 450371.81140170025 9.35016485390395 None 4538 292753 BRD_20190131 12088981.284729183 3495.55487565615 0.20179980374499049 5.835084621880596e-05 116740.88519026765 33.75587742291692 135 None None WTC_20190920 28403762.729612436 2773.25769080933 0.9716578403257753 9.481710181295536e-05 9607936.322699297 937.5694186920102 55808 19864 452938 WABI_20200109 7567970.195485249 940.354511015445 0.12790346414359496 1.593954638271073e-05 1581682.1107149725 197.11190416344655 36772 7852 2468394 FUN_20210124 104614382.25552967 3270.4443914305407 0.017607478532810143 5.494213874447885e-07 2609458.8564679385 81.42520252000497 34325 16493 254768 ATM_20210729 25556141.140128948 638.81879686121 13.541436995232742 0.0003383555100185343 8792981.14753485 219.70737830888353 5013303 None 94240 BCH_20210702 9388193405.949785 279450.73432265234 500.42836352817534 0.014877008379015143 3899940586.851629 115939.56901083262 None 578886 271205 OAX_20210125 7281023.230865999 226.3666171334865 0.12885675694726978 3.9937998791860075e-06 345191.21944992605 10.698892966081244 None None 1543553 ETH_20210825 373455291323.226 7771450.642979707 3177.6637963046905 0.06624174002793397 23531754575.679913 490544.14466881193 1519907 1077117 3885 ADA_20200523 1698293632.3563223 185525.12518677933 0.05458098672313555 5.962405932885995e-06 185615336.25988722 20276.54772465796 155491 79117 54750 FUEL_20200625 3504005.6880027633 376.2205834726236 0.003532550744020082 3.800519242923913e-07 177832.17436739156 19.132197940492773 1 1465 None STORJ_20200913 77089487.32550125 7392.916957042474 0.5374689439781346 5.147211659254292e-05 15281090.795718053 1463.4335544612095 82296 8337 117786 DUSK_20190818 19607334.780365363 1919.38463182581 0.2501477225012291 2.447250178529155e-05 28855001.302820608 2822.948231696963 20308 13293 200786 LTC_20200105 2727569539.430861 371283.1044901622 42.781417393309496 0.005818163639008254 2085468681.6081836 283618.4211026342 449141 210155 182245 LTC_20200208 4741891251.622826 484114.4444917991 74.31922357147701 0.007581738352569003 4745575179.732064 484123.8594287843 448789 211100 140635 LTC_20190430 4133113828.387978 794110.0065754872 67.17771708642259 0.012901777238613613 2317648462.6048994 445114.62250906444 443568 202454 217185 MTH_20210201 4191650.0956421546 126.82550589554575 0.012404815080329909 3.7418030897416146e-07 1083708.0225868577 32.68909694368 19126 1880 1161820 C98_20210930 568609164.9478822 13679.334411007216 3.0742015516542476 7.395848865844646e-05 129410092.64815599 3113.3205512361237 227389 None 27762 ETH_20210710 251611015863.3228 7403242.462977943 2156.5809569525845 0.06346127161354138 22262234450.01033 655106.2702291616 1422654 1036336 3687 NXS_20201015 10905322.207823314 955.38871424318 0.18264458748084492 1.6001047403406305e-05 21004.937457774777 1.8401914045369014 23276 3517 544885 BTG_20211028 1075772309.0767157 18380.092415923515 59.88524702723883 0.0010225587550723905 17158519.09759241 292.98691745129327 102778 None 287488 PERL_20200317 4099637.481331287 812.2524555961602 0.011908334151046722 2.364754726187063e-06 1694677.5957418191 336.52875398542153 11562 476 685227 GTO_20200530 7398945.734745797 785.377564827479 0.01120364559135143 1.1949543344344e-06 13825532.313469857 1474.59856964744 16651 None 1039704 WABI_20210428 32980464.927455645 598.4847776302329 0.553030162050497 1.0040094569747868e-05 6788013.947185738 123.23433086871914 44262 7711 293001 AAVE_20210110 1444658076.7481136 35700.83573585715 118.7175961948752 0.0029470656551295357 368143881.5903952 9138.8658830338 None 2015 24520 DIA_20210814 93763801.2745542 1965.6679866756797 1.933216545149893 4.051817746057338e-05 28546868.077318903 598.31221163623 34438 403 453696 RDN_20201111 14375680.8137056 939.8585278346146 0.2054552636280717 1.345073653151243e-05 1884617.7954209724 123.38207832288289 26376 4385 2012801 QKC_20200430 9900271.20073298 1133.984601605648 0.0028141419752843165 3.2173324043261695e-07 2814216.227006737 321.74172943120766 49692 9192 700112 YOYO_20210809 2540853.909337277 57.62936753169035 0.014408974817952749 3.276247784544913e-07 387385.37697810127 8.808194192332733 10153 None 1435059 ZIL_20190905 66194508.58319863 6267.278261417766 0.007198706814665008 6.814939971930657e-07 8734038.530207165 826.8422347001938 66160 10610 166369 FTM_20190806 45014060.14167588 3810.6912436229704 0.021703728271162695 1.8387881446852995e-06 9471889.731965031 802.4795707585903 18127 2053 402967 XVS_20210219 685430127.3723224 13262.132808494072 80.33816809126115 0.0015537489266693122 314198853.2732376 6076.640065771234 27418 None 29971 1INCH_20210422 798293736.150357 14733.011965291691 5.045825241932305 9.328911832479578e-05 305836490.16623896 5654.420268473753 None None 71599 SNGLS_20190122 6773269.15885071 1918.0870664544905 0.011477048558677748 3.2501710095025624e-06 80947.40378635595 22.92339391402057 35597 2189 957120 WAN_20211120 158610894.3801641 2728.8446572102316 0.8250275286757861 1.4182077706779288e-05 4212574.184119078 72.41340724792538 129837 17336 223029 BLZ_20210718 39086007.305227675 1236.6781181962945 0.13177109592156816 4.172744319059568e-06 9835255.433137503 311.4492290445228 64663 None 404484 EZ_20210624 0.0 0.0 3.223844720785384 9.565881290434953e-05 1307525.9785606884 38.79727275457692 34023 None 123122 BNT_20200531 40405790.33303781 4186.084132719838 0.5794572946879064 5.999744239072385e-05 36904976.767407626 3821.168941752823 725 5028 125138 TNT_20200217 28798835.74265 2888.9465342908984 0.0671812476716083 6.740108043669217e-06 4076280.288789988 408.9618831883469 17734 2570 1056961 MBL_20200718 7522703.864809201 821.876029474837 0.002142381395324454 2.3405049744727226e-07 3939620.578608256 430.3949605747624 None None 152748 MTH_20190704 9303117.831687434 775.1684054197689 0.02723842478723067 2.2696010832568492e-06 6575040.8764218865 547.8554656575046 19526 2005 1459879 NXS_20211007 48923599.97584459 1021.8120047259132 0.6767804110412446 1.2191260215933921e-05 315804.3150741724 5.688776624696644 26705 4107 589642 TNB_20190806 10153776.187931543 860.250508340713 0.0036732119887250897 3.112026916941203e-07 533269.6569011143 45.17979172882613 15672 1474 836143 STX_20210301 869077876.4716777 19157.869651523913 0.9456152954656837 2.0866441410222423e-05 15074655.18266656 332.6452212191747 None None 60484 XZC_20191216 29707923.818177607 4174.666637734238 3.299985750064036 0.0004641199735109233 6521440.927381265 917.1951698308121 62248 4072 173771 ADX_20190915 7243518.019493657 699.606702875309 0.07869508273320945 7.600672382579214e-06 151054.09884827744 14.589383192896593 53602 3840 517237 ZIL_20211230 1034516271.093611 22305.51672431604 0.08097643471564904 1.7400833714652392e-06 196398244.92055392 4220.355235091238 370961 39990 41987 NULS_20210617 56695157.5321949 1482.2629889899015 0.5039183999633303 1.3174988923547928e-05 31308453.941393346 818.562159907803 54613 5367 234427 OXT_20210430 360820493.94846904 6731.24181172559 0.6090204708805148 1.1359112380483352e-05 26014290.42061118 485.2041310845011 63601 3784 93493 ARPA_20210325 83263407.12968047 1575.2660347796725 0.08437494986479566 1.5993451101265141e-06 52643873.332850076 997.875809442619 None None 701431 BAT_20210104 325203804.63490087 9721.089954268511 0.21600521805931955 6.561977194829217e-06 159793516.78930876 4854.333716906074 125457 49056 23893 BTG_20210727 774327541.79334 20689.88659232477 43.984555748846475 0.0011787779210156387 95680148.71212855 2564.210206540688 100944 None 177172 CVC_20200807 19729810.231192954 1676.946608850478 0.02947452506882002 2.503368620820485e-06 4570513.668714929 388.1887993980194 85276 7979 102776 ENJ_20200518 148991236.695664 15369.061761534258 0.16198711831727405 1.6709640655419806e-05 14399335.945056824 1485.3510070307318 54846 15411 98201 ETC_20210916 7651678856.356858 158727.49060698872 58.95657501108488 0.0012230033933687296 4438562210.586543 92074.1519364875 513227 60034 212393 NULS_20190510 43014922.364555374 6959.524944029374 0.6014976275404053 9.742222358618723e-05 6025667.487319354 975.9538497368577 20892 5319 670223 ENJ_20190511 118526697.23813017 18600.2567043274 0.13671257858376173 2.1459241483670536e-05 18021535.56970752 2828.7703128938424 45708 12408 19139 AXS_20210523 218118637.06132174 5803.487745653113 3.945566102984958 0.00010499503100680478 21134882.535464786 562.4180635213557 72563 None 14156 BAT_20190213 145487147.97491387 40024.02133367067 0.1181770092839309 3.252248414277839e-05 15271476.79687537 4202.7325363252485 92140 22664 119907 ICX_20200422 120667750.73495646 17620.18393611841 0.22483819508941866 3.284486910733557e-05 20022230.497924536 2924.8924529023802 112757 27538 102592 XMR_20190421 1191775338.9774768 224433.35696380617 69.46010717390477 0.013081065833215999 98448418.28764547 18540.28583014466 316714 157574 117211 HBAR_20210429 2329077480.581651 42549.63334402977 0.28894913104273645 5.2770667082562095e-06 120041969.45391901 2192.3218052699135 84934 15754 42635 DGD_20200319 42669893.600190215 7928.617309085627 21.42242044972414 0.0039761281829309774 512140.1981848585 95.05625568285839 17620 4713 334920 SNT_20190830 54750339.25492981 5763.95784819363 0.015437717832745694 1.6277396272140642e-06 25327312.647239707 2670.48995799787 111355 5721 264981 RAMP_20210422 148737531.37115744 2745.044499467892 0.5441818207795402 1.0062204754569805e-05 31174512.85077512 576.4329484199127 23402 None 95701 CKB_20210708 310149763.64339644 9127.665516182906 0.01152121652320427 3.3909311420494314e-07 18726583.098319042 551.1618819451354 49133 5005 123301 KAVA_20201208 78996321.89193666 4114.010796299523 1.6854836079010174 8.783823013108241e-05 14495866.356146378 755.4456412223835 49093 None 81701 ATM_20210207 0.0 0.0 5.39834130111467 0.00013728032072303858 2385507.5155006074 60.66367770180116 None None 233968 ARK_20210722 136925045.82096028 4254.961075398718 0.8656561875827947 2.680434331976371e-05 1686147.5314912444 52.210193804616786 73118 23421 125873 STORJ_20201224 40953622.15263024 1751.4864459975145 0.2773909611139327 1.1897281738731825e-05 20309501.967818744 871.0733252235435 82355 8531 96620 ATM_20210131 0.0 0.0 4.248685708783376 0.00012435978659379858 1236491.9194744034 36.192338471377695 4825336 None 233968 BRD_20210708 9917013.960667377 291.1959993804681 0.12129298596461201 3.561559195730867e-06 545415.6316973236 16.015188702945345 800 None None KAVA_20210916 592204116.3701639 12288.317540448861 6.476973794398541 0.0001344065212256194 31415659.18785407 651.9201092184188 11 None 56614 UNFI_20210204 24960325.713440884 665.9754697746855 10.19856210680236 0.000271889381728716 15089226.906093562 402.2724508904723 13563 None 111570 ONG_20190719 0.0 0.0 0.2397054850191785 2.2466230693063968e-05 12181020.432227606 1141.6577100246823 81421 16286 245341 MANA_20210207 298750791.1634147 7618.6243217245055 0.22917371495258443 5.827908858501557e-06 308243683.80815524 7838.665511070393 61905 9730 56631 LTC_20190324 3717083473.353653 928141.5079981518 60.91959691517127 0.015213803467616726 1998143900.0316095 499008.03902935085 440707 200613 251595 BEAM_20200322 15984053.935773775 2595.4888028486607 0.2766050986081069 4.4887743041717286e-05 112227693.82717791 18212.418744371033 14978 1476 244013 WAN_20190103 37476351.44088016 9687.272153994514 0.35304259355340956 9.125807487153895e-05 1928035.2833396776 498.3783584610533 109348 17364 494501 WPR_20200323 2875989.819624371 493.4213244066839 0.0048179517203102065 8.25994198319673e-07 213804.11451970116 36.65477954577294 33511 None 964364 QKC_20211104 197458304.81220418 3134.470477319281 0.030074260417643012 4.768740520687798e-07 19731662.00662232 312.8761101513072 76904 9602 448868 CND_20210624 21368123.48914203 639.3352324670198 0.011172342986283194 3.3140529693158665e-07 129093.90045440297 3.8293133736293323 35993 6252 130832 FET_20210825 360926154.58154774 7510.724472941797 0.5225496427275342 1.0893096250616713e-05 43061837.10347992 897.6692316698586 72445 3789 152406 GXS_20190701 122200525.57044227 11263.466536818143 2.011518232667452 0.00018649192296997505 11149484.695555547 1033.6912722094191 None None 741418 ANT_20210325 290308766.56315225 5513.082868008059 8.23000556125001 0.00015643822643834736 310867660.90461385 5909.0586472907535 80645 2872 129265 COTI_20200404 9763979.160866117 1451.8576501663924 0.01957327971262604 2.908709933029913e-06 5792077.545483207 860.7384013706607 22767 916 253363 WAVES_20211120 2227579227.54385 38320.49349737023 22.34684171657318 0.0003831038313203744 153485220.55898198 2631.2790323113104 202258 59953 104259 XMR_20211007 5167455542.602462 93084.54285373427 286.9435599018467 0.005172568738922949 316915165.67750245 5712.849869970148 443683 236977 46981 LTO_20211002 78757888.8308724 1635.3396316757583 0.26867670752779166 5.578710855282262e-06 10364064.026429098 215.1958650271153 12853 4940 415943 BCPT_20190904 3421809.50552515 322.7621507736345 0.029458064506931277 2.7786316691602057e-06 92668.69654821155 8.740973966842645 10902 3115 1000589 CVC_20200607 18922526.573188554 1956.4644774979392 0.02824257697490829 2.920096235071551e-06 8384100.102986211 866.860668094985 85381 8007 113262 POWR_20190922 23820910.140748885 2385.327745943193 0.05561972833464292 5.569566289297529e-06 14114970.033567155 1413.4240426419935 83808 13021 385730 APPC_20200109 2906095.987836491 361.2163723277991 0.025678138740236507 3.2000531511184843e-06 241493.26485042673 30.09529977916853 24994 3248 1530437 FLM_20201014 0.0 0.0 0.2758719739613431 2.415268000966318e-05 9445996.297369134 827.0000126029082 11694 None 65486 REN_20201018 304737622.5101836 26818.712006847356 0.3464341618718392 3.0479207778300564e-05 70785853.45326303 6227.725128229383 None 970 88468 VITE_20211028 72078812.94973682 1231.5015287791268 0.09423405564941478 1.6099579640118233e-06 6021773.843449018 102.88003301913538 None 2666 349145 CTSI_20210428 196557958.9162681 3567.6332723447144 0.6367600417129939 1.156018509610928e-05 83767227.98921669 1520.7685738857977 32652 1084 161196 ONT_20210813 849251257.9108278 19101.743393810386 0.9685241707504483 2.1783014515533826e-05 284846356.7529843 6406.460996259356 142350 19772 173647 RDN_20210603 32267889.205634926 857.471469857237 0.4830960955606961 1.2837564815686291e-05 758084.0309476119 20.144962818901483 29563 4652 821866 ATOM_20200506 504083387.4344879 56215.14565505229 2.70236270995127 0.00030032429936254325 184782870.85637632 20535.65423315852 32828 8397 88245 BNT_20190126 33858849.80757576 9494.868213020525 0.5310495029212535 0.00014891956086763412 892703.8147733322 250.336474000277 852 5098 105322 ZRX_20190818 103314559.61627388 10108.21724466741 0.17208036683276284 1.6836038554598912e-05 35238692.319363944 3447.691293446869 151284 15905 173586 YFI_20201201 792791596.9656546 40281.72167848926 26258.54075195996 1.3375854578345803 593947564.1783923 30255.132304029106 53906 2188 10841 TOMO_20200806 66098750.550668985 5630.609255697555 0.9242182699547038 7.872935421226459e-05 5721315.177278066 487.3691245835319 28922 1621 87241 LOOM_20190225 27908233.5919351 7409.304800510707 0.044544896131879085 1.1890961813525012e-05 8415625.8511082 2246.494981965517 17028 None 410268 ZEC_20200725 608281790.7891997 63758.76446442621 62.93675711979925 0.006596892976444048 292194459.7925683 30627.183029026153 71598 15902 235720 SUSD_20210110 155824513.59731692 3847.0422554375905 0.9935048562380395 2.4654387900146728e-05 48986136.49654629 1215.6188299758262 53888 3036 45504 ROSE_20210401 268398377.2056228 4563.065820239157 0.17833638798302984 3.034728521496012e-06 27503515.491731524 468.02396217707127 15481 1179 252696 WBTC_20210324 7502887275.098252 137549.40629328365 54590.93958826513 0.9999413436883037 411192391.77105194 7531.804285529055 None None 167083 CND_20200109 11174267.58849065 1388.4532658967646 0.005941123548766398 7.403928814989741e-07 114624.80611863184 14.284737524278002 35219 6013 478937 LINK_20190903 661724712.8171743 64103.6996322581 1.8134625075085704 0.00017566811379480897 117460864.03143448 11378.304400380937 32185 10520 94033 ICX_20200403 132439545.34112579 19527.7178174302 0.25025600034977796 3.6710005695928036e-05 44772388.5836624 6567.653273565188 113031 27500 109675 IOTX_20190821 19516749.380595766 1813.7329564205559 0.004738351306940804 4.403917645637465e-07 1744710.3691904584 162.15684071692885 20361 1762 702138 ICX_20200223 211668931.25445366 21928.165384638825 0.4049570949422049 4.195164486152662e-05 34262008.350666285 3549.382451923576 112463 27467 160011 CELR_20201229 19762989.438621264 728.8173098472673 0.00500332637300017 1.8421710936837718e-07 2968136.7460886547 109.28361070450089 25724 None 413002 WAVES_20190312 262789689.9856268 67965.83206299019 2.62654782048303 0.0006801548888459323 8352432.550689797 2162.8952607696374 137156 56735 38107 UNFI_20210511 52612426.17524993 942.3097555325244 21.573187359568703 0.0003858433005246783 10761555.668440148 192.47383748555274 None None 94770 ELF_20200629 40838911.94517357 4478.030277032665 0.08856891361371962 9.711289121841957e-06 15941024.718605777 1747.880758885472 81122 33376 528254 WPR_20190511 5442599.084049544 854.1795100859915 0.009063517112409781 1.4224583672574826e-06 452915.10622814414 71.08199549040661 35200 None 1010461 LINK_20210127 9306173950.651775 285752.2840407285 23.031854761069205 0.0007068845919707762 2117491764.294313 64989.22111712628 131940 29604 44259 NEO_20200725 782319480.5231656 81995.64274572952 11.08520204157909 0.0011623792440847685 241852563.7609482 25360.331655657224 319983 99856 192818 ETC_20190201 422882643.93932074 123274.55235362948 3.9208022795986968 0.0011426853418739036 149258028.77849686 43500.015935421856 226021 24115 447874 QKC_20191024 16526020.66217808 2214.3955685093215 0.004343581507342019 5.8179529210501e-07 7999478.199340457 1071.4795492627727 50221 9232 305114 NAV_20190804 8343918.371596792 772.9421696153522 0.1268047220273994 1.174660544318974e-05 223124.61577161006 20.669236793611592 48285 11220 652826 HOT_20210727 1057084436.8739582 28219.12206333784 0.005937760360889722 1.586558424548426e-07 228738744.84383455 6111.856332953122 81769 23690 92270 SYS_20201201 58097393.108105876 2955.038133058392 0.0967541166734594 4.928564030672183e-06 3999324.104862486 203.72182195357044 61034 4485 324861 RVN_20210304 1325947138.2848883 26079.385949098894 0.16011813013076295 3.1601300876569736e-06 200382761.2182963 3954.8025714301025 48116 23213 66527 RVN_20200316 81539580.99000917 15093.241882781384 0.01401087656088271 2.607351482429597e-06 11154465.839393571 2075.788257477933 30235 7576 202553 TRU_20210210 59986235.03679598 1287.6157779687287 0.3921080120814414 8.415320586169146e-06 20973090.79785014 450.1190419697026 18696 None 115581 CDT_20200612 3147093.515151782 339.16311815232496 0.004606062426951348 4.952959549908838e-07 271443.8915996189 29.188718921741028 18907 291 294678 MBL_20200410 4891075.57761758 671.1020276929617 0.0013901732806418509 1.906580392061157e-07 1188334.2589357097 162.9764309853002 None None 105584 AMB_20190220 15146276.801092774 3870.044831499033 0.05587697016890234 1.427382886378569e-05 267093.1749078832 68.22922319868505 17859 4962 641993 HIVE_20201101 42787353.665718175 3101.4028025161333 0.11502794081215532 8.336277150131327e-06 2180890.0300821965 158.05293562902983 9302 96 141285 JST_20210112 33427826.007722158 942.5720878286786 0.023388419946235913 6.579626853783284e-07 37389329.90319602 1051.8360780315256 None None 212672 RIF_20210809 160243822.96345228 3642.539474429609 0.21297972367280202 4.841717860594708e-06 6202111.758345511 140.99405687988815 44756 3369 684649 KLAY_20210909 3587941508.3992324 77414.60575314047 1.4269575685923384 3.082186426727613e-05 81211077.09675008 1754.1354069445506 None 753 57146 WAN_20190522 42835987.006612465 5386.1716125383655 0.4028918299925942 5.072884803717554e-05 3541623.6585027846 445.9323197999718 108943 17081 452673 BAL_20201228 145313370.40196943 5488.766441053512 13.589290922863121 0.0005167362865047469 45969638.203953445 1748.0073296181142 None None 83230 MITH_20200905 4875654.457886599 464.8080392749867 0.0079623832858906 7.59388819937348e-07 3426697.4629408154 326.81116309435134 115 2103 363135 THETA_20210527 7532836563.133581 192264.8728602036 7.5925379555459545 0.00019368328117274857 506838741.2207093 12929.298608693458 163568 17826 16888 GTO_20190810 12564712.482528875 1059.569986331323 0.018660465426492433 1.5732805248516928e-06 6563148.284103198 553.344900092037 17439 None 944506 AUCTION_20210707 66610470.84107515 1950.0796098158742 14.589970551335224 0.0004271893819678151 1237365.1807824622 36.22963219748097 None None 50364 ASR_20210110 0.0 0.0 3.958255438782221 9.826040142116978e-05 1346148.3321083526 33.41701351292766 None None 243323 XEM_20190603 858231904.347903 98188.38666520549 0.09540621754762274 1.0910458213267018e-05 69870160.73770967 7990.207438026937 217186 18459 168914 QLC_20210427 17587647.198551137 326.46600627749547 0.07358553388611648 1.3651169805117913e-06 891469.2828914624 16.538031205470553 32913 5639 940522 BEAM_20210124 28266296.963646647 883.0754167299564 0.35402015679133797 1.1046500012939895e-05 8934006.780467926 278.76804222255726 16124 1635 289835 WPR_20201208 5366199.223340569 279.45184323489246 0.008807292883032182 4.589881595200046e-07 248207.55962554255 12.93522680402308 32541 None None MTL_20200308 20136121.61172772 2265.4424845330154 0.3117641284795914 3.504974303812975e-05 8868042.613947863 996.9800450933021 34756 None 606546 STEEM_20200607 76964355.97690132 7959.482715104804 0.21496291388644748 2.2230987003662424e-05 4154316.735543574 429.63020777505875 11476 3867 215539 THETA_20190325 86485205.25304693 21656.363831841267 0.11634270115355898 2.9134979321017664e-05 6968243.813812993 1745.013975146479 None 3933 345140 RENBTC_20210114 473864592.3929913 12725.9273156703 37266.92896662036 0.996887850913838 28296827.659423385 756.9382424387088 32899 2191 104896 LINK_20190314 175541862.17620113 45390.18713635947 0.48213875408940304 0.0001247191393131765 8866303.560796326 2293.5259603438176 10524 6461 327842 TNT_20190419 8763532.63812714 1662.0979465218536 0.02045778789045051 3.878587264840793e-06 556475.6061964362 105.50208120964771 17297 2511 1188979 XEM_20200701 375701050.90852267 41102.03314303142 0.04174456121669636 4.566892571955368e-06 8267685.223968534 904.492205358367 208433 17862 240826 TKO_20210610 171386161.40712622 4566.06133684061 2.2782742793053057 6.082916156681439e-05 51672703.131613724 1379.6438979881727 279450 None 23426 SOL_20210729 7595729558.871121 189954.80683706555 27.871801252229435 0.0006967026220694181 324323976.86976814 8107.024122349276 366829 28056 7993 CELO_20210723 304030066.94741577 9391.880822973228 2.417668002525368 7.467813233798335e-05 22768437.254583765 703.282819911927 34595 None 78180 WABI_20190614 18038031.560295045 2193.5152198205897 0.3195339576711317 3.883826554413094e-05 1301296.0952496002 158.1681135463579 36343 8025 932643 SNGLS_20190801 6265358.289032597 623.0095080081196 0.010869976780017533 1.0795303621773014e-06 82818.60671467986 8.224967017967597 9 2174 None ETH_20190421 18306343766.281067 3447423.3950208905 173.16628767058037 0.03261159920766667 6156525100.7694435 1159429.654576713 441350 435386 34722 FUN_20190906 14429327.028489947 1365.422517495146 0.002401842467271059 2.2735861265444078e-07 281852.82384428545 26.680212326656857 35877 17399 352374 BTG_20200412 171268929.64610523 24885.12567143645 9.78567573479932 0.0014219632350377738 49826918.15188286 7240.383561377709 74688 None 202519 SNGLS_20200127 4044099.0705132275 470.5873876602215 0.006744247657918465 7.847873733396554e-07 12293.744215385921 1.4305487758852613 5704 2148 1416171 CND_20210620 26878648.573497087 754.1084607960739 0.013951966470641702 3.90879692652155e-07 47611.86775931786 1.333898864759904 35914 6251 130832 STORM_20190821 9730327.227325054 904.2560053757202 0.0015605644477750785 1.450265674037929e-07 99219.07900793545 9.22063966662947 26582 2546 2477338 COMP_20200914 17520.676615411474 1.6969272977543366 1.8999789491643297e-07 1.840089570615229e-11 57.511136950664614 0.005569832410179466 1904 None 827585 SNM_20190130 7608091.230601061 2227.38392737994 0.019028030487300646 5.574033852302152e-06 50971.464723208366 14.931480694137448 31470 10111 10188243 WTC_20200309 10544951.509835845 1309.6392021418671 0.3553540970788225 4.414154315523248e-05 9221758.96619314 1145.5128130493295 54972 19437 905715 KNC_20210111 230478376.13189313 5978.725241564675 1.1431988095724375 2.9737025673600144e-05 75152104.75775121 1954.865636574764 127839 9342 138877 PPT_20210511 160292059.86563787 2868.741050990243 4.424669575793086 7.918814730926222e-05 9519657.792099211 170.37296246904444 None None 645855 BQX_20190714 16552918.233169336 1453.536651433268 0.138674259175507 1.2158557068516295e-05 3015968.3316777074 264.43136091415306 60766 5776 466152 CTXC_20210430 3376377.2537171654 63.00274410866685 0.34252590309764624 6.391091120761918e-06 5834852.505980386 108.87081445427457 19530 20509 377528 NANO_20210131 478880236.63353467 13997.248561583165 3.5944019900198625 0.00010520878573981281 78965276.44818206 2311.3276906114684 103969 60192 188898 HBAR_20210421 2577802787.167301 45628.445502459064 0.3207464124729584 5.688614037951524e-06 367839331.6312689 6523.832860655168 82653 15219 42635 CND_20200310 9584511.005876418 1210.58756368613 0.005140195940119446 6.485905800704659e-07 55356.970679753824 6.984949628844496 34981 5977 433845 ZEC_20201208 797002376.487033 41504.94118875464 74.94438432275322 0.0039033778760445914 438429716.98287755 22835.024571038946 None 16406 172022 ADA_20211104 66247488607.36172 1052305.6137573752 2.0675682387769276 3.279044714526241e-05 3879652302.104393 61529.061710390866 691971 649673 6435 NAV_20190615 15058738.050334569 1731.3342302682274 0.22878661082296514 2.6350179837942918e-05 2677056.0951111135 308.32621405901915 48361 11265 1015910 YOYO_20210117 1822516.411206521 50.24992720569973 0.010460064158085536 2.886614946688879e-07 407555.4352596892 11.247116587860708 9355 None 1925232 STEEM_20200317 42088576.87375282 8338.920227442157 0.1229434110201714 2.4414079129443497e-05 1295420.6830410452 257.2443923529407 10934 3835 219600 YOYO_20210427 5759195.097982458 106.837513025756 0.03292966718415377 6.108707357306398e-07 1254874.3277576948 23.278887076505818 9838 None 783243 OST_20200314 4075144.321638294 740.1934557668766 0.005998514772701243 1.0782762762807557e-06 159944.96434917528 28.751260454197862 None 752 839878 WAN_20201201 44150726.94818824 2245.6615478662848 0.350960459867268 1.7853831864935483e-05 2818823.168029305 143.39733575119376 104016 15933 599630 SYS_20210112 45487633.786931366 1283.0153847176134 0.07536599757794854 2.1172139410515994e-06 2938540.965992836 82.55075364877317 61021 4491 315243 OCEAN_20220115 345242307.925427 8011.207238890475 0.8004146192915301 1.8557675219383856e-05 24683961.55206111 572.2995689613533 144426 4395 75552 UMA_20210117 576322255.5217948 15890.200608851037 10.370861765234663 0.0002865711898000591 49071766.50051916 1355.9677903320564 17427 None 212976 CTXC_20200324 1076014.2226086515 166.91590837788848 0.05074854379450677 7.831746043357674e-06 5729063.145570827 884.135075957142 16643 20063 396619 POA_20190522 7108013.985458868 893.7574648179412 0.032280349704022195 4.059441011666671e-06 981608.4065474233 123.44294468528851 17419 None 639132 BRD_20210527 16187288.494028904 414.2329999205701 0.19980556889805448 5.0967121650131974e-06 316977.0528994152 8.08556443372591 769 None None VIB_20210212 8391120.5160656 175.97544820600396 0.04599792017737592 9.633844399478588e-07 2660460.6164306737 55.72091849109375 30547 1111 None NAV_20210603 21848676.997733533 580.960281465979 0.3051044843344936 8.112783538970674e-06 254115.6272352411 6.756980586916266 51113 14070 589462 DEGO_20210710 29237210.83538461 860.2570917369359 5.402263944886646 0.00015895886621485094 11604722.852343984 341.46306181359256 None None 168590 MTH_20190801 5278285.87541625 524.8207046662991 0.015472234052489035 1.5365944903470643e-06 343828.0989142427 34.146611318430686 19512 1998 1172984 CELR_20190701 50553969.67509671 4659.66036627669 0.01703380493433529 1.5792385006061291e-06 63515565.08143268 5888.6564775767765 None None 482178 VET_20190531 416353082.4448987 50102.8653868496 0.007510598948463315 9.041676934703255e-07 33957104.43607698 4087.945183277368 108944 55769 212142 BTG_20211204 904937317.5002794 16855.455579683225 51.603959899311846 0.0009623338986790198 7311217.643207535 136.34288129063845 105104 None 249393 OAX_20190130 3012462.3878396773 881.9439858347474 0.1283170254467478 3.75887263081958e-05 3653307.984265572 1070.1868552672681 14433 None None NAS_20190627 73287299.79725987 5643.0126971546415 1.6112268974583355 0.00012413488102946022 19951117.92697298 1537.107935683258 24340 5149 467000 VIA_20200224 5187526.14554165 521.3236212312554 0.2239422602341807 2.2505214774161928e-05 77418.24183792359 7.780193690009683 39639 2186 2490082 EGLD_20201226 344175591.39492136 13936.589480603872 22.969610502662036 0.0009311294166937041 44923931.01637239 1821.1015671343314 112758 3033 53733 DCR_20200501 152167156.0986067 17584.548219716384 13.244967899357095 0.001537801847840953 16463645.191794818 1911.5051233433953 40568 9761 293468 AION_20200418 27071114.85462834 3823.968333837647 0.06586628523643023 9.356101066789511e-06 2117549.957027094 300.79138880847916 489 72553 308963 MDA_20200502 7583385.825696127 855.7646694701908 0.3872380314824004 4.384718416620108e-05 290246.3502363286 32.86476052897301 None 373 1654204 NAV_20190723 8855103.451619765 854.89595998118 0.1346718035944285 1.3016291183585638e-05 140730.69245147432 13.601894550492302 48314 11234 923849 GTC_20211021 153436072.06888852 2323.4288452051355 10.79656495938076 0.00016348861201617428 42543767.91131991 644.2254172440859 66904 1335 26508 VITE_20210704 31046017.445219945 895.5523622539022 0.0475747647343664 1.3719976217903056e-06 3104793.4250237085 89.53841850962623 None 2373 205892 POWR_20210519 148292079.50308245 3475.439512548036 0.3467088182677574 8.103914003180311e-06 4188679.5175317586 97.90549535646724 90880 13805 168476 AST_20211125 105290518.23434694 1840.504689095864 0.6101627807778599 1.0667377885105519e-05 4577228.619690043 80.02295271190906 48555 3745 168464 MITH_20190812 11407303.587715 987.740388418483 0.024058411638893055 2.0822103507193853e-06 1719304.3613465081 148.80256398328874 79 2078 826998 POA_20190903 2959816.490216441 286.4858923419443 0.013443468557151924 1.3012171864360763e-06 91815.70797786373 8.887005366039485 17721 None 617003 OCEAN_20210203 237644726.0294403 6672.125872735328 0.5672665680036358 1.5967772602192565e-05 45541857.564484976 1281.9405663731595 40903 1506 65645 ONG_20200223 0.0 0.0 0.16029986486065675 1.6606309868320114e-05 10005019.091225471 1036.472784376794 84437 16438 403200 ICX_20210202 450861568.0617594 13504.856137530387 0.7669599295847853 2.296392795513563e-05 66987835.330009975 2005.7160290259767 118911 28342 278107 SNGLS_20190512 8758273.709259631 1194.132569075329 0.014827698642347628 2.02542717667193e-06 424031.5993742766 57.921673879146596 0 2180 None OST_20210420 23276024.608306214 415.8253492084211 0.033625909695385765 6.012783819165387e-07 2446007.712925647 43.73804524863528 None 766 441171 GAS_20200719 23560471.94599442 2569.194529091708 1.6906592105937044 0.00018440912228330058 5108675.272814761 557.2301722233785 319876 99799 192818 CHZ_20191015 15984263.975548685 1915.1908824155576 0.005322583973052829 6.376381362131192e-07 2175413.2514263275 260.6114733286589 12090 None 395631 GO_20211225 40435470.86004816 795.2527911847956 0.036436318482574295 7.168380868024566e-07 787340.822058162 15.489926316665862 25054 1169 167701 AE_20190803 98597595.1649985 9368.126599374886 0.305572727041944 2.9032491526978694e-05 25874776.254170228 2458.364755368214 24891 6362 316448 CND_20190702 23637224.31985798 2226.783120613703 0.013591834303631952 1.2817064301005288e-06 643527.00650029 60.68442888200628 36225 6140 575045 SNX_20201130 610605656.9987774 33653.9257007718 4.557062296715334 0.0002509338028638826 44967515.85823131 2476.128045864368 44403 2554 37543 NANO_20190826 137189544.74850643 13589.346015084167 1.0303844723790798 0.00010201220413933091 3350316.033738242 331.69475310109317 None 47484 238230 ATM_20210702 16403325.951008555 488.1841395916187 8.692912500262883 0.00025871228933453807 12951050.963326935 385.4399827341251 5000654 None 121547 UNFI_20211204 55178305.985533215 1027.6778533427566 10.994533552451811 0.00020503101619202168 28986962.092435256 540.5619315979309 23530 None 309725 XLM_20210909 7853043329.969847 169439.8450835334 0.33044785618700245 7.137576614037279e-06 1282062299.7166827 27692.169027170643 624351 199967 37510 BNT_20201124 95011330.11440974 5187.918813152614 1.1191655888583893 6.0981789713665885e-05 62993816.34012218 3432.446189873598 86589 5240 95264 REQ_20190321 19290645.80274223 4771.354408850993 0.02643796116196487 6.539173641000681e-06 216728.37751845497 53.605665158644065 41845 30619 402457 QLC_20200323 1832900.5189506663 314.46293564573784 0.007639998897297533 1.3102629254036492e-06 46381.64223695999 7.9544705515496 24509 5665 940522 UMA_20201111 424186449.20702654 27755.004475751517 7.646661299255131 0.0005005605109469368 14163335.269814823 927.1505643988554 14567 None 89241 DENT_20190608 142828560.91296786 17762.028239398853 0.0019487314160617478 2.427318858396322e-07 3756668.5097393948 467.9265825591384 45217 9505 248149 FLM_20201129 0.0 0.0 0.18505188576986178 1.045292273007557e-05 6009233.780163262 339.4402392047205 11837 None 36319 OAX_20190920 4082858.4591326653 398.3279173125974 0.07816914831924807 7.626263403390215e-06 239200.62511311367 23.33666174688276 12285 None None FET_20210418 439423375.9635762 7289.383846009313 0.6371340940963997 1.059943702410353e-05 50994006.249173075 848.3422294507945 48853 2154 124282 SNM_20211125 21018304.879742634 367.632 0.4724872431426259 8.26e-06 2147384.089739047 37.54046874 None 9781 None XVS_20220105 189583448.05243388 4098.214475407638 15.991421517243015 0.0003478630761680125 13924848.116167452 302.90868736336574 143099 None 24128 KNC_20200117 42856990.35503199 4923.817203155551 0.24550720362091505 2.8175380839861458e-05 35876752.40115536 4117.358461549646 99288 6776 187251 POLY_20210603 212346320.32723477 5645.311693508916 0.25373157387705975 6.745555179921207e-06 4177009.78456827 111.04747256456251 46743 5607 154352 REN_20190515 20114679.11965974 2516.8008962635554 0.026113982472836365 3.26699330657818e-06 294606.81446550344 36.856825339922196 6322 780 1306046 DOGE_20200421 245311641.0820963 35829.30584078906 0.0019746003894539786 2.884027882044578e-07 129791433.25304659 18956.85397164449 139544 153096 112062 CDT_20200725 7201997.566994793 755.0108549840983 0.010667458895407452 1.1184583070409712e-06 3366716.730808639 352.9924354007005 19156 290 313567 REP_20190908 118966035.90871857 11362.719804830327 10.818536893593842 0.0010334073368926354 22651813.68265914 2163.744569512559 125811 10055 201886 LRC_20210725 267542108.3051624 7830.63619846484 0.21483403523266573 6.287026530607922e-06 14566851.566806717 426.2927062220737 82802 11078 261623 CHZ_20210506 2770448567.4249644 48394.07123165336 0.5225467240554139 9.117659569668861e-06 702282546.4931744 12253.781118271596 318504 None 28385 THETA_20210814 7158427769.668125 150253.0764466689 7.151140316592293 0.00014991678448904785 362577309.770748 7601.084862424047 187127 22560 19933 CHR_20211011 181385162.3816815 3314.9145364070396 0.31887722346531866 5.828085401684879e-06 17563430.053379867 321.00495979371686 95010 None 75701 BAT_20190930 212467719.6954891 26387.311878241126 0.15843968173068068 1.96773293454116e-05 23922372.26164914 2971.025898146929 None 30466 27075 QUICK_20210731 57171185.1892964 1369.5084849962907 357.6805726671269 0.008562803996860555 7647423.513734977 183.07784552234244 42149 1877 4573 BEAM_20200127 32923146.77763156 3834.3338307376457 0.6117797250820136 7.118911224232128e-05 24370189.05945096 2835.81173613962 12343 1430 301167 LRC_20200223 50499494.324612916 5231.572044267325 0.04468478136387599 4.629132572081075e-06 7877585.666017402 816.0807165859884 34062 6809 811957 NAS_20190324 41651142.32603982 10408.958428610318 0.9157614727631489 0.00022866213266126742 4780214.780846373 1193.6013240097843 23715 5169 598776 BQX_20191113 5566149.941570237 633.2751123909193 0.0394936498088478 4.487408858668262e-06 671876.935020559 76.34104532599278 59717 5718 373048 XVG_20211120 434739775.46223575 7478.615993174648 0.02648680849074482 4.5407749072334713e-07 23419421.212428525 401.4916339221673 334681 55507 173959 GVT_20200109 4240508.635301821 526.9624730937078 0.9527371909869714 0.0001187317227719578 793625.5440144973 98.90295977535956 20862 5633 224170 THETA_20210430 10942892353.33967 204192.8952065792 10.92310827457941 0.0002038110977110076 351065734.9770103 6550.433357957462 149439 15408 21480 CTXC_20200313 844636.5562379508 175.97748707498562 0.0408688637416816 8.528430918682094e-06 3883839.19326387 810.4716213394295 16538 20064 415103 REQ_20190530 18518243.965752188 2141.5158665271288 0.025371125010655228 2.934007504299262e-06 457758.6389005866 52.93684379892824 41872 30070 374528 ARK_20210107 62036226.469675966 1688.694982712175 0.39947755601369334 1.0823200031523807e-05 3925860.192839117 106.36484959730227 62999 21579 94251 VIB_20190821 3039504.926186732 282.49761386050346 0.01664899447362807 1.5473905541180525e-06 234912.6691531544 21.833249201087504 32392 1119 3938160 BAND_20201030 104305338.18877609 7748.075990832304 4.617799007505433 0.0003434134858032065 61141079.03276701 4546.900166569702 37965 2671 124810 ETH_20200501 22894189506.373463 2645669.3392184344 205.55600541063674 0.023871594694958462 23630952297.4432 2744305.6911596856 455207 459376 20496 TVK_20210511 95874677.98587601 1717.1541200875095 0.43834316481713065 7.839906577386535e-06 16441775.84804771 294.06637758067933 None None 59216 THETA_20200506 152205490.817782 16973.88576792235 0.15355752151635685 1.706545716140382e-05 16411253.492662432 1823.8477716907998 None 4029 365481 PERP_20210821 831945006.854451 16932.82701759602 18.808663987360195 0.0003824086740965162 66396544.49404567 1349.9424819126632 25671 None 133566 VIA_20210106 7361995.62594476 216.6554450614631 0.3176937639204216 9.31343453000091e-06 211123.75947871243 6.189253724618839 37862 2128 3644327 FIO_20200901 29590673.23086021 2533.6704578445497 0.2945653506201234 2.5266540244354737e-05 3038227.0487097707 260.60596005641764 None 134 278091 GO_20190329 17787584.466800485 4418.108903743825 0.025441806409119517 6.319276888509207e-06 1034403.6410605855 256.9268438423807 8517 636 816048 ZEN_20210805 687074365.8759425 17233.18388235197 60.20868506496793 0.0015138795410852572 29863741.243659347 750.8901222515673 117565 7469 1280845 ARPA_20210108 22619739.768017158 577.8805603193093 0.023088812562636223 5.849201883054698e-07 17300104.798228674 438.27202151832506 22199 None 1160562 GTO_20190821 11899493.987686072 1107.0768927159486 0.017956634188886277 1.6706067335334526e-06 3268384.210185621 304.076176630581 17392 None 815582 WABI_20201018 5101430.767442895 448.9560607842221 0.08635846072404893 7.598844970652425e-06 651984.866532817 57.36938665251958 41407 7619 1574710 ADA_20190510 1922238791.7584457 311005.29965496936 0.06168351334394121 9.990637956708032e-06 144333254.89852068 23377.09408288776 151222 72977 116208 BEAM_20201030 17397642.263700735 1292.3428144828567 0.2355754859981573 1.7519269530784498e-05 4467728.313243743 332.2558634587581 16081 1581 354475 MIR_20220112 238780249.40356228 5573.20948454379 1.7686631142255609 4.133759002101897e-05 9516001.40546563 222.41011392993383 None None 17649 SNM_20210203 6232986.3925504 175.0405952 0.014565543903697301 4.1e-07 1157394.8892129355 32.57907207 None 9481 None AMB_20190621 6367878.628386438 665.8573011977761 0.04415225974553101 4.622457695850311e-06 685878.7833967541 71.80709841365886 19340 5674 665963 HBAR_20210217 982444584.541471 19976.660433541365 0.1373162233040988 2.790436622658432e-06 96585261.62080999 1962.7327693020616 51630 8754 100428 ARDR_20191102 56339316.77664785 6103.205336083209 0.05643527096033333 6.112170074015553e-06 5672263.2276758645 614.3292476881645 66264 6498 1381120 TNB_20190923 10514285.183104606 1045.932208516307 0.0036426906330144742 3.626317232426662e-07 717606.7850140949 71.4381239795108 15532 1462 1364178 WABI_20201031 4212212.355703076 310.1443939010225 0.0710759254234875 5.247972900357793e-06 979932.3850157196 72.35443745690648 41268 7604 1558135 BEAM_20191024 22077469.670649 2958.4325786421696 0.5316705159456193 7.121390553057405e-05 36140782.73710179 4840.829443143724 11795 1387 211289 DOCK_20210602 35062483.32308488 955.5880559069454 0.06260190883532374 1.7069626871363939e-06 7032102.325219249 191.74393408434253 48319 15025 249470 PIVX_20210125 25939688.900123917 805.6388797695064 0.39894553595232013 1.2365841067352333e-05 664500.6178255721 20.597069746810057 64900 8708 325207 COTI_20200801 21601221.732788257 1905.9385827447716 0.041847362658796954 3.694751252496093e-06 4951899.682385993 437.2088559775594 26773 1085 206457 SNGLS_20190920 4852142.624103734 473.38008047761247 0.008407648076273921 8.202588900010255e-07 1142439.04220079 111.45754105644659 11 2163 None ONE_20191022 15797136.673667409 1922.3887061284408 0.00567502631035764 6.90606577089299e-07 3022622.8344689943 367.8296972358946 70968 None 174888 MANA_20200721 54978992.70594894 6000.902645313997 0.041536264406920494 4.533370198880823e-06 17653700.88227142 1926.7683943747036 49469 7051 75007 AR_20210729 491932239.97874314 12302.293400237242 11.230556722713594 0.0002807026562217257 31765126.567364037 793.9548877968645 23246 None 89863 BEAM_20200520 21759878.01068329 2231.014437361553 0.3455235685614578 3.5393848113839444e-05 81199774.36393782 8317.732109218072 14976 1490 578426 POA_20210506 25510263.397090573 445.471001451742 0.08946457934969394 1.560578463166095e-06 569978.5499266204 9.942440415500233 19560 None 277695 WTC_20190803 52312610.87570671 4970.099419392491 1.7918684499092428 0.00017027961435146484 5172797.020671783 491.56615366658787 56114 20024 698794 NEBL_20201226 6595749.374976379 267.0872731133943 0.3822715938454017 1.5502854639142067e-05 325110.28067059914 13.18470298100494 38268 5888 1009679 ALGO_20210602 2758632230.272168 75186.15562299559 0.8978829443430497 2.447753880786931e-05 284164137.13316894 7746.709900555068 104335 31211 157111 ELF_20190305 45464198.4851241 12238.112705498685 0.1373540743881516 3.69731502793711e-05 10648866.559531663 2866.4758971612773 86736 31472 984154 POWR_20190906 22936391.430202194 2170.1568577689522 0.05364827494521388 5.075822216552506e-06 5846195.464745609 553.1258712897644 83974 13061 414066 ZIL_20200719 197682199.76642752 21556.615134998025 0.017910372656395473 1.953579760463481e-06 21528527.52379333 2348.2311870292424 82434 11653 88835 MFT_20200322 6139665.100596012 996.8863936601805 0.0006349624608513092 1.030423225285938e-07 1250354.0776943883 202.90866955503097 18385 2512 872119 WABI_20190708 11857049.050811056 1036.8209099562055 0.20787213968769433 1.8177050638986442e-05 1044177.3595696674 91.3064385131 36437 8012 1160222 GVT_20200318 2289382.6995725185 421.4416239899994 0.5099076644450168 9.48022693383965e-05 193838.65658380013 36.03857288485978 20679 5601 160290 PPT_20200629 12179211.725881306 1335.8225842613356 0.3359552715800296 3.682462052124104e-05 5984532.764608275 655.9746689408202 23685 None 1787425 MBOX_20211230 517152669.0146483 11150.512251035223 5.294914134737166 0.00011378115215304524 75628984.45982617 1625.1732830849628 261723 8362 7517 PSG_20210310 0.0 0.0 11.223720537483803 0.00020518526147894023 6125723.45698696 111.9867663375845 8771346 None 28774 ONT_20210727 597590704.5421417 15961.976001706516 0.6777581680702607 1.816460355994407e-05 214291869.95321274 5743.238587448018 141705 19724 156257 BNT_20191015 24480012.361249186 2933.010786849747 0.35099558890366644 4.204996417997735e-05 6917971.231589421 828.7866049686708 None 5103 168578 WTC_20200105 11153194.588529686 1517.708250548554 0.38240697664579415 5.2005381183436514e-05 13266429.806482598 1804.1661924711107 55244 19574 1004613 BCH_20210221 12536568028.360123 224480.83973153177 684.3009024697781 0.012172473001040188 8254811833.724576 146838.14358861992 None 456386 297431 BAND_20210819 273442862.5785708 6069.702387058606 7.727939793559531 0.00017159141336972112 63472804.56339306 1409.3521089087142 102591 5583 341497 WAXP_20211007 542421544.94895 9770.971637650646 0.309395650905111 5.577299843836626e-06 121384956.08731721 2188.1377280171923 160401 5111 4606 HIVE_20200610 89809171.76253244 9188.624442680177 0.25031742058312323 2.5633422265012297e-05 5499471.772648474 563.1660867007131 7349 86 109710 TNT_20200313 8166988.933311555 1697.0333390216783 0.019172845021862957 4.0009500953360275e-06 465845.3349935588 97.21165196552668 17720 2563 1226899 WABI_20201201 4974843.178108119 253.18872080313432 0.08384424859775799 4.256567517280236e-06 805550.4361454779 40.89582621794116 41032 7508 1606102 LRC_20210724 262711903.0372626 7859.3722328181575 0.21094215434936014 6.308194761456289e-06 13084760.070705187 391.2978664104805 82748 11080 261623 GRS_20200305 15473882.550966822 1766.9379200492886 0.2075316115510109 2.369770307165144e-05 9747001.119834555 1112.9944814220194 37767 106868 3955402 SNGLS_20190401 11438046.53409634 2786.3872423610965 0.019372887012901862 4.719369261135588e-06 718220.285223792 174.9634287626746 None 2182 3255572 APPC_20190130 4281304.530370949 1253.8261935586418 0.041043382269700904 1.2026321846000449e-05 178134.3799677281 52.196024471188025 25374 3439 1782365 FUEL_20190522 5805683.244639392 730.003169504165 0.01092616410593858 1.3757333291409468e-06 10517005.338074578 1324.2153994811858 1 1515 None FLM_20211028 0.0 0.0 0.4750500580958162 8.11607458752507e-06 23703560.4342926 404.9675633042959 27100 None 80793 BCH_20200418 4257295536.3321486 604735.5967645308 231.58791083690457 0.032896342823328005 3316599518.9423423 471112.6517292535 None 292195 142695 STRAX_20210527 186145463.81150147 4751.096566780418 1.9122490871326314 4.87775390442566e-05 15135831.410968918 386.0839116534064 157361 10706 134289 DOGE_20210806 26330675953.71314 642581.9795804806 0.20060637243563464 4.902895543469604e-06 1109943587.2951722 27127.44067688195 2008964 2127012 15471 STX_20200410 61751029.78747337 8470.743424444601 0.10437616892305909 1.43158479616133e-05 390453.9171827947 53.5532102018965 35854 None 52879 FIRO_20210401 104815000.31015953 1782.0834611761975 8.94204864936205 0.00015217496430625904 12326256.748928009 209.76710755557403 69616 509 197332 VIB_20210826 9235746.852326063 188.4194201865166 0.050525838209638026 1.031052061260761e-06 1316997.363539915 26.875216611325673 None 1278 6383686 VITE_20200423 5190839.13107416 730.1868819780967 0.010541544971395901 1.4817513165898716e-06 1966614.1581868478 276.43321031450006 None None 537072 QSP_20190703 0.0 0.0 0.02211227545198536 2.0445634184114695e-06 783228.9397554146 72.41955907895235 56849 8597 721105 SUN_20201030 0.0 0.0 7.562003790697866e-05 5.7e-09 0.0 0.0 36 None 8117582 WAVES_20210318 1016316200.696875 17242.56737921345 10.16316200696875 0.00017242567379213448 89645355.49735337 1520.9007603507457 166079 57733 97613 VIA_20200927 4366151.326763695 406.66571632230165 0.18843120282099463 1.7550585020485695e-05 226434.74297894444 21.090255481832592 38329 2151 1700199 VIB_20210203 6123292.191337623 171.9412725426739 0.03374979768784344 9.493389054027795e-07 4812467.5726219 135.3685950930859 30432 1100 None DLT_20200309 3262333.3061492303 403.82926749696446 0.039668429092486565 4.931079959875997e-06 174916.37827324888 21.7434031871122 None 2588 None CHZ_20210104 106179257.70020379 3173.9423114681636 0.01959827375870889 5.953718461900788e-07 64119740.58906401 1947.8801450447183 64838 None 151849 SUSHI_20210427 1849301975.0229797 34317.62618140983 12.089592827662171 0.00022427127562563737 474130735.3975117 8795.490994338463 None None None RVN_20211204 1083916986.8360682 20189.14931494556 0.10619286456024533 1.9760520837017697e-06 116334417.00706345 2164.7675489780313 78865 58946 61120 LTO_20210806 78325406.3308419 1911.7077143905078 0.27078311202293615 6.612151377006145e-06 36837145.950423 899.5124677510704 11372 4366 653266 KNC_20211225 128873485.95076376 2533.047960238457 1.3942540209527772 2.742415684445663e-05 24836465.313425194 488.5186701859607 200070 12209 89231 QLC_20190906 3300626.359201517 312.27705863424984 0.013746714066810316 1.3006173401878519e-06 37998.80203837662 3.5951792259068647 24779 5744 940522 TNB_20190626 18101396.207641345 1530.841861197299 0.006483642067728819 5.477095017297605e-07 5043288.731129847 426.0348009886435 15735 1491 506098 AXS_20210128 48480441.938430004 1600.8148445900574 0.8776589956219134 2.8963591340012595e-05 21707432.896485947 716.3661725007983 30920 None 18871 ASR_20210131 0.0 0.0 3.7709173936168954 0.00011035948480428635 1552425.9483429715 45.4332222036847 1937113 None 183417 NAS_20201115 12978832.167742424 806.3478065662706 0.2848912926336618 1.771044486513206e-05 1119933.1680629354 69.62134378433338 23371 4869 985620 REN_20191019 44386033.39621205 5577.140529741998 0.05369734785430803 6.7471146246529335e-06 2189378.734025039 275.0971857180715 9849 878 270891 NKN_20200331 8576279.107804766 1335.0902190285458 0.013094964460405391 2.042558922092335e-06 4697605.60005131 732.7348050365518 12227 998 307235 BTS_20220112 84638507.79205395 1978.3210824538542 0.03122966311534139 7.299549879920218e-07 3419726.034829832 79.93189255582934 8200 7519 200218 LEND_20200531 74708759.91147418 7715.621409864527 0.06309753670947005 6.526890955154459e-06 7519040.679380931 777.7793105879556 45051 5723 77525 CRV_20210107 131872732.120396 3591.808276011577 0.7320884189156838 1.983475486771737e-05 105247779.8279526 2851.5188320433713 53029 None 29021 RSR_20210304 584149036.4257096 11489.332970276475 0.06214264090429429 1.2264593076404161e-06 246764497.6671006 4870.192359947053 60524 None 104993 CKB_20211007 406989904.7088408 7331.934736042474 0.014456616065595231 2.605979052687409e-07 39447389.48830698 711.0866763237711 58425 8231 130039 ENJ_20200612 171646216.68584168 18499.420789331867 0.1857056607414364 1.997087827449632e-05 16849010.20987558 1811.950861399295 55945 15554 107410 THETA_20210120 2019903215.977496 55778.65084042086 2.0053726906237266 5.5640059873078e-05 109362815.84032033 3034.325564367408 80308 4962 50826 BAR_20210710 41649646.661988296 1224.593537526674 14.107400556661984 0.0004151356227092174 2360691.4759857105 69.4675905721609 None None 41859 WAN_20211230 130884902.6507191 2815.5764515546903 0.6788337641338703 1.4587297515708319e-05 3771164.0079910182 81.03764761212948 131550 17424 243413 AST_20210506 78931180.32521228 1378.7663152896894 0.4587034757298071 8.001409836236126e-06 8234311.492724382 143.63549538771392 42754 3651 191334 HOT_20191102 162127035.1120897 17551.484010402117 0.0009127699863231467 9.881428972687746e-08 14088281.631852753 1525.1635831405313 24499 6706 567580 YOYO_20210314 5789841.325014979 94.27026434333935 0.03302162071809051 5.381999337615024e-07 1535418.6776672092 25.024884080385327 9553 None 1284003 NPXS_20190706 193609637.22516298 17615.608923900665 0.000810949315184991 7.380022016461018e-08 5421087.48280953 493.344580569368 63010 4620 223593 AUCTION_20210731 99752511.9936515 2389.8537713506335 21.808819225705715 0.000522098930451207 5182840.062091126 124.07619253077108 None None 70761 JUV_20210108 0.0 0.0 10.52724713711539 0.0002666919037553438 4904008.107910611 124.23563741742777 None None 134536 SC_20201111 121475146.3306347 7941.846628227648 0.0027067687308517997 1.7718864297838733e-07 2044747.036988848 133.85183173891525 106957 30064 142131 CELR_20190627 41495620.65538486 3192.475507154354 0.014044538139966823 1.0769762279220096e-06 18224468.47488025 1397.5055013098831 15877 None 371624 BTS_20190224 132623642.75922564 32216.641713304205 0.049236782498326186 1.1960490210212679e-05 26235826.889650382 6373.148990415152 13793 7214 130894 YFII_20210506 107699207.83019036 1881.284928588747 2706.341325224241 0.04725793940288638 84057424.05361815 1467.8047500011733 15804 None 329518 MFT_20190608 34628823.2354864 4309.181051132425 0.0039172488313662865 4.879282944297265e-07 15378690.268692253 1915.5530925894357 18591 2049 844355 NKN_20210114 13335361.24401429 358.10626369027335 0.020493528188825046 5.483107217893042e-07 813193.7143437462 21.757250794398644 13723 1025 376074 ETC_20210131 877449143.7507912 25649.69963186248 7.532511809661701 0.0002204354093021308 857483959.9589547 25093.864100035626 265512 26970 152499 XEM_20200806 503064316.1926646 42939.81269198172 0.05600051877022303 4.77039333852115e-06 14039308.298302822 1195.9357565680236 209015 17824 241923 SNX_20200730 361894874.8170717 32588.880805663448 3.2753011889973807 0.0002950946622646118 25728153.533590633 2318.028278801165 25984 1623 66575 APPC_20200718 4468954.315521366 488.12523502026374 0.041020492154828024 4.481266356172694e-06 56547.52327157745 6.177510318631984 24447 3196 1596022 WABI_20190421 18769055.36067939 3534.688646172167 0.3577068277815402 6.735496467829388e-05 4079546.622457228 768.1645898771403 36325 8038 1086520 LTC_20210826 11883856192.012661 242519.71316812414 178.02832560623148 0.0036331118253386113 1712750334.7468586 34952.94062802593 190688 341004 92826 1INCH_20210617 617018770.5769897 16131.433956168177 3.574329047457652 9.344000957804344e-05 116131013.50125258 3035.8936935543834 228341 None 6332 LINA_20210704 66961615.125852525 1931.5544205702429 0.02707749464967295 7.809496145012036e-07 6233185.65120209 179.77305487084644 None None 80589 IRIS_20210428 155338477.55636558 2819.4773900839214 0.161387051029669 2.9286881622722153e-06 15420759.155723229 279.8402629236649 22628 None 536237 EPS_20210930 182407300.88555142 4393.091784619112 0.46723317878394216 1.1240680378510295e-05 11162628.658120431 268.5501514607836 23002 None 42567 SNGLS_20191216 4667742.640153783 655.9005317715751 0.007970527388034202 1.1209990710204544e-06 210642.3206136136 29.625372855495712 3695 2155 2197318 VIBE_20190801 3943999.513708084 392.871428404027 0.021044537735043455 2.0899968696095692e-06 295674.9115191623 29.36437223176 20411 None 1550581 BQX_20210318 1156971821.789085 19668.557168751653 5.214863838167741 8.847408025314912e-05 13662424.375864625 231.7932870721957 52257 2660 27667 EOS_20200605 2556859976.5856743 261567.43777033692 2.7257084959441777 0.00027882175713647196 1875682048.4139767 191869.73417968635 None 71474 90009 YOYO_20210610 3484800.704334134 93.04301373964773 0.019925237024359128 5.31997166987896e-07 1401707.9925047266 37.425134769797815 9966 None 855012 REN_20191022 45375339.48242088 5521.826009339643 0.05489419084704261 6.680196208742109e-06 1908715.0513572667 232.2757809687752 9858 876 270891 MFT_20190528 25004609.5351633 2838.946111093237 0.0037702310936840195 4.284131362155695e-07 4179086.3624778325 474.87155311623314 18119 2027 781601 NANO_20210418 1984204884.8028455 32915.02415577798 14.720599860148928 0.00024489361442187735 3674031678.252435 61121.619073654525 116511 83897 65732 SAND_20211230 5325358994.621422 114821.66828748354 5.837777792862783 0.00012544662035739708 1440917498.4527721 30963.53386655598 None None 5212 ANKR_20191102 9154619.504528888 989.6542639458181 0.0022785317724996605 2.4607634929808755e-07 1515970.9419441288 163.72148044543007 None None 5174 TNB_20200309 4900913.8291164655 608.6731523557329 0.001563846060964552 1.9439766454008416e-07 559000.5370653499 69.48791290565522 15206 1447 1374605 QLC_20210131 5224514.737242413 152.70797539051213 0.021510002879006708 6.295106967562135e-07 1309437.6914982088 38.32193971198343 29813 5583 940522 BAND_20210813 274866514.18867683 6182.476709731179 7.8113616801971455 0.00017570228127398232 66349048.71507748 1492.4003902100048 102051 5564 306752 ICX_20200322 106540213.66305117 17290.881397568857 0.2022894084755875 3.2847730415760114e-05 19485386.97148656 3164.0348504128283 113232 27507 126672 BTS_20190618 173718077.34685513 18636.080671667984 0.06407066374941824 6.876499194979882e-06 17427367.984687004 1870.4236058176705 13711 7178 169425 NXS_20200721 12373252.654264208 1350.68772833389 0.2072297896171405 2.2621596891470755e-05 215038.86088185388 23.474049922347653 23329 3527 454042 KEY_20190810 4660241.136359669 392.9948154864778 0.0017828996757730602 1.5031786579534437e-07 164904.18278604376 13.903219095250234 23871 2828 851050 VITE_20210708 33939305.70459592 998.8799013994395 0.05250598939487034 1.5453593309751072e-06 5379974.920586005 158.3437344912101 33022 2378 205892 ADX_20190615 15091925.938140042 1735.356294113009 0.16382375340409178 1.8879950563887176e-05 1060919.9162008753 122.26624743915532 54242 3887 922905 ADA_20210120 11583747204.108196 319875.2131339935 0.3693457419983242 1.0247680790078691e-05 2957432002.378526 82055.41765491881 179986 103994 30705 DUSK_20200903 25736654.272655874 2255.9571269367 0.08947972301246405 7.850890631500144e-06 2953877.027658696 259.1711809369238 18368 13344 627816 WTC_20190426 60138622.36966185 11587.619501085444 2.1526768956843765 0.00041449070844979633 5890106.132970778 1134.120159320697 55655 20273 1107833 CVC_20190813 15728156.340049917 1381.8613291952909 0.04384609773571444 3.852152753840512e-06 5868901.5156118255 515.619548897 88422 8139 266707 FOR_20210310 32030473.355166417 586.019661937323 0.05729469919396967 1.0473795463321344e-06 8102147.950212157 148.11185264591117 20833 None 158334 LTC_20210220 15839424500.723024 283181.41181584226 238.10008240054609 0.004256816116303799 8817656448.880142 157644.3892886995 144410 262981 93783 ZRX_20190702 184586403.68007952 17418.881740019664 0.30912034846248887 2.9121184656872263e-05 40159502.23651081 3783.29115561094 151028 15984 206645 DCR_20210131 780149718.6699963 22805.431054646666 62.313790302807014 0.001823440991044699 20230945.37249423 592.0027477149032 41774 10198 288064 STPT_20210201 19639104.649376888 594.1710758434946 0.021428011794774972 6.480842367737054e-07 3366079.5163838957 101.80613559430654 19157 None 1418206 FTT_20210408 3962197507.52758 70345.24906505262 44.56179426351601 0.0007930128951542569 190647432.85572278 3392.7240853141243 86699 None 3088 BNB_20190122 937294752.6514071 265394.93367007555 6.488161356916699 0.0018373640955772878 34108855.4936929 9659.19048214418 906992 46951 1078 KEEP_20210902 246236646.72342554 5061.995212376497 0.4481815807158588 9.211373913444178e-06 26966286.947222143 554.2319515481661 23575 2906 113916 RVN_20210823 1328839527.4732404 26935.545058986263 0.13993194200280742 2.8398869015691845e-06 70903153.56593892 1438.963357542902 68715 49821 58921 ONG_20190321 0.0 0.0 0.647926099107979 0.0001603204103035129 62457844.914744236 15454.335513248447 69616 11267 260077 SYS_20190608 36750608.90514518 4577.616254233987 0.06626102325635026 8.253401674604089e-06 712079.0120584167 88.69579462780362 61664 4608 1053467 LTC_20190629 7470796127.9671135 603090.4839425007 119.63980586588153 0.009663712192777351 5585164742.220899 451132.6663182277 448337 205196 158874 MTH_20200223 3767724.1075653224 390.32483572517776 0.010878715816777492 1.1269836439340715e-06 120777.04464871007 12.511932122711809 19189 1938 1456443 BCD_20201226 89212566.55222696 3612.5601161076315 0.47384015221473336 1.9216376838465225e-05 1453194.1391243567 58.93364263526506 27860 None 2009944 TFUEL_20210201 0.0 0.0 0.02775755294905717 8.395194425869201e-07 3263397.443169337 98.70054494562929 82040 5185 46280 XTZ_20200605 2143418003.0250382 219605.26646316308 3.00921263364659 0.00030781310653529116 90813058.23408747 9289.290247040646 65796 25984 98518 POE_20191015 6727106.09456564 806.023491420223 0.00267265463676916 3.202173578791415e-07 186562.64251582877 22.352531316050225 None 10685 798754 WAN_20190623 42174778.03212956 3932.7110759106504 0.39788754080533884 3.709814458201435e-05 3680912.913398158 343.200089097176 108527 17008 440153 CMT_20190906 18769517.187290296 1775.661295769536 0.023459680171125964 2.219656067629358e-06 2446303.8629320962 231.4589616317753 289952 1650 567314 REN_20190821 77062625.29062083 7169.569717801407 0.09371042992128542 8.721354435713945e-06 3801094.756627562 353.75672317508963 9423 881 378808 RDN_20200106 5801208.087255526 790.0571839742825 0.1146641591193888 1.5615711742721084e-05 858227.6863556356 116.8790340650211 25269 4340 2088256 APPC_20200322 2519853.7339349743 409.14412434804007 0.023319363890590892 3.7842889356865453e-06 158155.50541427356 25.665628447894306 24825 3228 700856 STPT_20211028 176972929.96498844 3023.7958750241964 0.13363139066729368 2.281777374451951e-06 71585476.27657999 1222.3334599124635 32805 None 695224 SOL_20210310 3948666694.263174 72248.26936355392 14.866607085296575 0.0002715484386852997 167995189.73188934 3068.5435632084022 127833 5311 46450 JUV_20210523 32996424.96228102 877.8185878934014 14.92650652935852 0.00039720764396460723 26222283.940185532 697.7983497187186 2471840 None 36746 PAXG_20201101 70485598.95105343 5117.955175039832 1884.3511901201455 0.13656235149640508 1615798.7037358412 117.09986529259476 8372 None 79585 ONT_20210420 1740498872.7211092 31100.497407176532 2.137302651038567 3.8213695010215186e-05 2195564957.6702547 39255.390258725296 122789 18395 153956 HNT_20210324 601770881.8059701 11043.21735087798 8.05176487270572 0.00014770642539273043 16400862.294502836 300.86729818594 25041 6847 32835 XEM_20190806 577933037.9524375 48933.64497168509 0.06419653407805954 5.434965538133977e-06 64097897.31042385 5426.614815768794 217179 18405 178171 UNI_20210710 10965693623.299467 322653.49196106265 21.093212814029208 0.0006207057070024801 321418439.99853414 9458.315421263456 None 48407 1526 ONT_20190511 648822229.4218173 101818.91762725533 1.0598868436981541 0.00016636631361867645 72889014.80789068 11441.105028320688 79423 15432 249396 SOL_20210718 7314497718.903992 231430.11778937676 26.79168755465958 0.00084840200546155 292646432.68583465 9267.121373944574 None 27263 7993 TOMO_20210916 203839447.0350238 4229.218920909639 2.421638365211778 5.025247880670728e-05 16842156.918297663 349.4989779458567 53412 2270 146716 ADX_20190702 12197398.2545724 1149.4678248577843 0.13256718795307673 1.2488707323944756e-05 631867.9681439743 59.5261485392517 54185 3884 882596 SNT_20190130 66215940.4339454 19391.32040757251 0.018925916716348388 5.544591798473002e-06 17087936.732075777 5006.131817945216 109082 5782 284394 MFT_20200411 5163572.2084852485 753.0747810273862 0.0005319022014097276 7.750782523515929e-08 1027426.0804692345 149.71466723769376 18319 2554 847135 LOOM_20191203 14634523.114647964 2003.0709406596761 0.01754918783890938 2.402009817259642e-06 49127346.915165894 6724.2068789368095 21104 None 262438 SXP_20211202 449977043.00817984 7872.317776041507 2.3366242577560734 4.0873086229114865e-05 80041832.25755665 1400.121008305045 None None 172109 CMT_20200129 9197458.740404457 984.5586398318528 0.011433410286095291 1.225542313525176e-06 8338603.765410324 893.811338394713 287828 1641 899375 MITH_20210821 37244143.96724144 757.9479950069906 0.060276119373274 1.2255049537121398e-06 12311174.744789593 250.30486024362546 32844 2753 771999 MBL_20200312 6263984.948347208 789.5080411936777 0.0017877031167470396 2.252030356574979e-07 3268590.5295035476 411.7554546221139 None None 120670 PERL_20191108 7872852.55370424 853.9465659381873 0.030048444238122963 3.2592717307854427e-06 982332.4363763296 106.55088545492565 10976 375 281717 INJ_20211216 375114984.6855837 7689.345421962207 8.603200986679298 0.0001762918253858901 23617686.28997413 483.9599858119713 None 4428 136917 BQX_20190929 7738509.337588258 943.6211032805435 0.05494738369633956 6.7001936114583054e-06 1106480.1407156547 134.92236884287524 60154 5736 402735 WAVES_20191108 81233601.8989243 8811.827018205677 0.8123689692965108 8.811896490458745e-05 28038861.996330988 3041.420326971459 141701 56885 22143 NEBL_20210724 15267021.419564134 456.7330327843703 0.8470660611989073 2.533406128866083e-05 3047973.4403754408 91.15882394743905 40387 6109 1825448 POE_20190509 9078320.939154811 1525.5104710839635 0.00400669355702382 6.730981973223677e-07 453090.14223639126 76.11616751404009 None 10914 815050 ADA_20191213 1137756552.5843792 157878.51541108804 0.03644246147404853 5.062661395301305e-06 89954575.04016536 12496.673824046891 155016 75856 107764 WTC_20200526 9640811.592702208 1084.7921220458359 0.32985070112548254 3.7075266146389514e-05 9133480.790671095 1026.6045517006376 54338 19630 960738 BTG_20190811 261826783.41269648 23116.49150321476 14.962381904691098 0.001321592329264149 10856634.457050027 958.9412241618883 75032 None 277231 BTG_20190623 528914654.94911855 49267.21578331302 30.193015444944617 0.0028136732366062433 34149572.90788095 3182.3830086678677 74237 None 408265 NANO_20190509 199652582.09596792 33543.241262256386 1.5007997626655543 0.0002519471371549218 6378357.797228699 1070.7684174385479 98445 45397 391429 BCD_20210111 199235989.03683907 5168.243755319014 1.0634787523247509 2.7663337904486773e-05 99635613.32536456 2591.7336220542347 27893 None 2021519 COMP_20210722 23171.830799450243 0.7223074644714418 2.4076542220284334e-07 7.498593886408572e-12 60.23051221124379 0.0018758679984453173 2546 None 3559162 SNGLS_20201106 4427276.4917257195 284.69066131603915 0.004968211095831159 3.198829969884909e-07 218393.4030173222 14.061466981207051 8960 2116 2790788 TNB_20210117 7388004.699813642 203.58414443195423 0.00214517019365572 5.9276074509091965e-08 320215.54593206634 8.848305190783858 15803 1412 3029706 TNT_20200322 13448932.78233791 2181.210964453734 0.03155093619064282 5.120116453304181e-06 500148.2180530261 81.16453676273281 17666 2564 1338754 XLM_20190117 2023649877.4819422 562686.7921264909 0.10578601162327876 2.94202634564255e-05 80028535.70038773 22256.823640558254 260700 98807 59724 XLM_20210708 6002646204.43053 176666.0373375094 0.2582756443662618 7.603774020671357e-06 338784693.51802534 9974.003772188338 600273 195611 23566 BEAM_20201031 17169603.381132394 1264.1754365212262 0.23298419919696567 1.716850752051709e-05 3627408.513768402 267.30220574302194 16080 1581 422598 CHZ_20211225 1623976190.377736 31949.931770707357 0.30420373273874535 5.982285738647073e-06 142833794.78784838 2808.882605954154 None None 47803 ARK_20190908 31917222.548277665 3048.659421088258 0.22357593864378228 2.1355457563515297e-05 549602.2726434488 52.49674039812041 63210 21776 99618 TRX_20191216 922575236.0907317 129643.66283150206 0.013948658254045695 1.9617814711033175e-06 1003812485.9439732 141179.22308519372 490963 71653 62495 WAVES_20210617 1671268851.03951 43694.5538139865 16.72074555865613 0.00043716529808157125 229174562.5616453 5991.788201280873 192623 59026 97299 FIS_20211120 40498473.178701974 696.4680232378578 1.5095008324171997 2.5878178205891167e-05 9272839.405228494 158.96923370280786 29273 None 322707 WTC_20200425 8371647.489200601 1116.404381601741 0.2863149529969822 3.8199448768159906e-05 13932175.564311642 1858.7971781674337 54620 19654 973859 SNM_20210418 36038839.19793418 595.13529142 0.08136510522243835 1.35e-06 10573902.084768789 175.44090646 29776 9512 None CND_20190730 16981509.22334263 1785.2823309422645 0.009645027343218659 1.0137383754302427e-06 326834.41854989564 34.35185621618904 36120 6130 486164 RLC_20190905 13364428.088939393 1266.4718655919412 0.19101767908334863 1.8084030955570096e-05 199549.44959907327 18.891750967940585 24816 3307 984845 ATM_20210611 24806767.433312804 673.0507972731582 13.146495974884754 0.0003566873282071525 25785379.92047362 699.6022581386536 4991829 None 91720 REN_20200901 436638654.07936907 37366.90749501346 0.5075405722860333 4.348055193062861e-05 107703421.77275673 9226.85688437447 21775 953 91896 STMX_20210106 21665082.069765873 636.8222660160709 0.0026204206697863627 7.68749147483864e-08 2185936.7782793725 64.12852158172352 21858 153 199234 BTS_20190616 172916536.93360525 19611.199004084145 0.06380923128052164 7.234010488583761e-06 14521875.38435467 1646.3354398127021 13718 7182 169425 BAT_20191012 255962547.42999402 30970.825639380542 0.18930534098574636 2.28953199964033e-05 33354972.235085018 4034.07932822624 None 30706 24857 NULS_20190712 51577510.43974722 4557.86683306841 0.7038182122488171 6.207577157069749e-05 7431176.961878872 655.4193050974121 21309 5317 511487 STMX_20200711 0.0 0.0 0.0023738263141623683 2.556763820662328e-07 3682244.210780165 396.60141606813784 19671 73 256849 QKC_20210731 117633780.62593326 2819.5183939214303 0.0180473425857126 4.3204990439743376e-07 27086370.449769255 648.4424899520021 75219 9536 278683 FIS_20211125 44851866.91969432 784.0218926139956 1.6614277308664358 2.9049209619215533e-05 10484214.305092864 183.31109646436045 29698 None 322707 MATIC_20210722 5654339691.734202 175704.53595933763 0.8916623627080229 2.7608753849542598e-05 2068269781.3720164 64040.329250776726 542874 None 5822 OCEAN_20210616 239598063.59933656 5932.826317677124 0.551697059384648 1.3669104734260787e-05 34398208.29200496 852.2661192698349 115023 3190 84543 THETA_20210104 2166390124.154044 64758.38527345526 2.1322478881058244 6.477511118102133e-05 277019045.8201381 8415.503465781518 78485 4819 64313 GRS_20190419 32981340.33067897 6249.237563049401 0.4558114690272233 8.636347342135432e-05 3185478.140275861 603.5586539521423 38927 107054 6885878 KAVA_20220112 720653531.5031333 16810.68793335077 4.899167085060318 0.00011450442923686498 112647109.39008929 2632.813443988931 146263 None 51112 IOST_20190405 218692977.09862596 44601.397569064946 0.0161915281084597 3.3038729827962502e-06 78127500.40532833 15941.87627464908 196075 48878 95930 RVN_20210104 110040466.1863524 3289.3627170448312 0.01401315531448625 4.257027049041294e-07 17711253.639541987 538.0464579452605 34634 10518 220085 ANKR_20210708 548358426.9438922 16138.114197884657 0.07841136101111822 2.3078077337368964e-06 52019696.30189171 1531.0467244042327 115477 None 5363 TFUEL_20210828 1797906910.1673222 36658.527136642966 0.33798940310196324 6.89140383497808e-06 87528146.09334682 1784.6470810040262 190714 23045 21702 CTK_20210506 134206873.33011311 2343.5771451458645 3.017696055351753 5.26392848051695e-05 31190020.168767642 544.0641882508492 46247 None 214700 GTO_20190430 19442158.086510386 3735.513148312044 0.030251687299754654 5.81240283474122e-06 9470883.339489585 1819.6865723386977 17272 None 809336 MKR_20210203 1541070737.9460015 43273.07198169649 1696.2883275118077 0.04776296319418932 298587615.1725957 8407.432299347813 92577 20509 38971 NPXS_20190920 86870056.57930312 8481.730213104101 0.0003672852943810667 3.5860627940732006e-08 1914452.913694692 186.92140605233746 65262 5482 147405 ADX_20190704 11940910.71413075 995.0567333090195 0.12972853163745893 1.0810502816622277e-05 1457621.6569918562 121.4661326200512 54170 3884 882596 BAT_20190716 318685723.745613 29098.347939117215 0.24927942606510667 2.27952393888696e-05 28297461.39786769 2587.6479934337517 None 28780 42959 AMB_20211221 16403481.986068495 347.6884577740354 0.030096396605192585 6.383699631235555e-07 273918.00257480296 5.810031928286919 2667 160 615473 KAVA_20210324 302946149.8932716 5557.171253186876 5.196091478603181 9.517672225884705e-05 85329520.0206536 1562.9794165343826 79093 None 80710 GXS_20191022 30607299.311777957 3727.335792288062 0.4708997618578139 5.734362370854485e-05 15178270.108882284 1848.3275638886525 None None 581889 LOOM_20190321 47489414.32148919 11750.603038797872 0.06861723300924463 1.6978391463284056e-05 5191605.222749293 1284.5913763790495 18205 None 438947 SC_20190830 74945094.51638617 7901.990126926471 0.0017819450194454791 1.8788674291712086e-07 5394990.93461303 568.8431818661114 109110 30670 198456 BCH_20210731 10409718764.796421 249505.04757886133 552.6360791542935 0.013221508501144341 3460123281.814755 82781.51049336139 None 595771 318097 BCPT_20190706 6262542.300018999 569.2530261816363 0.053913689453917356 4.900650471321579e-06 687228.6499426429 62.46775988361518 10958 2823 1043904 AE_20200807 64655848.71922557 5495.689472957445 0.1884271546551771 1.6003739675970392e-05 13426639.753760457 1140.368795227221 25464 6350 394812 ICX_20210104 284600430.97308135 8526.287591639795 0.48524602564438185 1.4741187193383017e-05 64465446.4024217 1958.3822694089088 117286 28052 340142 RSR_20210110 442799399.46541095 10944.218521264353 0.046846800938523205 1.1625300017079946e-06 192075626.95819485 4766.465894411903 53044 None 170522 BCPT_20210105 2107947.787630585 67.37607727740208 0.018459916287318492 5.900320461479622e-07 93324.63468443949 2.9829238823092 10396 3211 2139942 GXS_20210819 46506229.58000441 1031.7477792673983 0.6634422718188578 1.4731092652338164e-05 12249206.558012422 271.98175996385197 None 27010 713331 WAVES_20210708 1658229830.050083 48803.95796999872 16.615025066393635 0.00048909371869995 149077898.21015674 4388.381198356164 193973 59120 98898 OGN_20200310 12693963.73206873 1603.3860966416237 0.4446463184168781 5.618192603371362e-05 108237120.33074585 13675.970398618958 65846 2165 120835 RVN_20190811 163450972.80614325 14430.964528597468 0.03919352219254747 3.4618724890503526e-06 22980150.973878462 2029.7831886571435 27309 6878 260058 CVC_20191113 27199727.788852595 3090.529743992363 0.04059644803561227 4.612712712732362e-06 4554400.004408321 517.4871156406022 87606 8141 114781 MTL_20190811 13526194.769057104 1193.7786934126136 0.2848339986926369 2.5158723402709136e-05 2518212.803545258 222.42786916010675 33304 None 712205 RCN_20190726 9479449.243695846 956.9574184305101 0.018627869863766168 1.8837630042523679e-06 422548.2665528656 42.73063951297788 None 1122 2034448 GTO_20200725 7906006.886725977 828.8146397622162 0.011950222930208127 1.252596182627753e-06 7048850.6018406125 738.8450748864078 16601 None 1486058 ETH_20190729 22676505895.192112 2375309.0897728545 211.229753661743 0.02215024088079092 6820635279.878914 715234.0604973278 446478 443686 33996 WBTC_20210506 9769761177.902317 170657.74976399238 57346.31054180955 1.0013771889395329 594226740.7681035 10376.345010534438 None None 227802 SC_20201018 129372160.77429971 11389.090485097 0.0028824535002160943 2.5365514571817856e-07 1428652.6240099182 125.72105308783865 107095 30068 160917 CVC_20190227 19995989.792440988 5249.379460410241 0.05834838552068197 1.531771218527792e-05 1979217.7393490605 519.5874301029156 88243 8205 370829 KEY_20200301 4527342.68030461 528.5190289622373 0.0016333840336123495 1.9067613655047009e-07 2378002.0827474636 277.6005155655082 23529 2769 281483 AR_20210704 462764888.4291414 13348.90021665854 10.592803683877591 0.0003055100207917888 12616464.875500787 363.87500056285006 None None 93046 FET_20190904 16851762.330363695 1585.6846772307713 0.049471472145796766 4.661726705995057e-06 2195954.3449698556 206.926104501655 16222 303 439975 DLT_20190325 8405832.01325648 2104.8976247675046 0.10406247415029769 2.6078381324824835e-05 572431.1770562365 143.45304240921848 14743 2685 1013339 QSP_20201226 20524968.55386233 831.1349583092506 0.02905692509647687 1.1783906868405638e-06 897540.1694320875 36.39934278015925 58237 8187 269724 CAKE_20210806 3611088912.3860455 88136.74712390384 17.510276784661517 0.00042795778105195474 236379462.7653122 5777.203388350189 None None 746 ENJ_20190201 24823715.504909173 7234.536948907403 0.02879184618081323 8.390995094233938e-06 2696538.9524447476 785.8698945277397 38073 11130 17707 RIF_20220112 146392648.0194094 3416.852509565565 0.17866761753004612 4.17466341253525e-06 1771156.721609137 41.384013878867094 54733 3574 330828 XEM_20190131 421814875.6017897 121969.15763617231 0.04686831951651756 1.3552128627747156e-05 14940024.623064285 4319.957222322037 214737 18487 182945 SNT_20200109 32443023.61462226 4032.271591780751 0.00911586915634855 1.1360350574493506e-06 24779157.206776123 3088.0205494548973 None 5624 276615 TFUEL_20200903 0.0 0.0 0.009946902473672664 8.731003875784799e-07 7622063.602312898 669.0350793064603 72612 4366 65774 THETA_20200331 72201281.28391622 11239.74899041727 0.07197807456486546 1.1227175059697864e-05 3790860.9247205253 591.3003298032166 None 4025 349854 ARPA_20201226 18649262.630281262 755.1584827407722 0.01870606560667335 7.582961824693244e-07 7979845.349913045 323.4825747310508 21292 None 1357092 SRM_20210127 109924177.70129545 3373.668648256385 2.200426140202022 6.755629724488856e-05 163910210.81094778 5032.282938613019 31350 None 88356 VIBE_20200707 2902385.4447228783 310.64110673506724 0.015509853534193489 1.6600131715519557e-06 280658.8277382963 30.0387975767 18846 None 1079841 COCOS_20200314 5856146.487895764 1061.28687779706 0.0002420576389709568 4.361333590023774e-08 611017.9003880459 110.09166677809026 14607 213 73199 AVA_20210220 105643807.4943594 1891.162996297888 2.7465630639250933 4.9091829127460375e-05 16279242.206139313 290.9737581507533 47889 9366 58416 IOTX_20190730 25112855.52305125 2640.1385563057893 0.006095263230842289 6.406412367299468e-07 936065.9546643298 98.38499637268099 20375 1759 905527 LSK_20191220 70394035.52229483 9857.829437875658 0.5129323844157504 7.178254221264201e-05 2611198.284578359 365.4252622435296 179300 31109 152394 RAD_20211230 299821734.4011898 6464.546665785622 10.95328572158179 0.00023540444179258362 47067297.18770142 1011.5549893239183 25358 None 200348 SNM_20200407 3089332.6769334194 424.47344336 0.007059694177578801 9.7e-07 47550.885708689784 6.53347836 29955 9686 7470249 FTT_20210902 6794931202.250988 139712.07975708667 64.19490277993843 0.0013194468027290095 1511373855.7437778 31064.419686488625 195887 None 1511 SNX_20220112 1011546482.5032912 23596.349013891664 5.074626695003866 0.00011860531049726838 46548325.22142639 1087.9378716567642 183164 8645 48226 BQX_20210127 205173982.7685619 6295.738121978535 0.9262253619078347 2.8436471791348275e-05 5921920.414668527 181.81160843562367 25563 235 96295 ZRX_20191108 183089756.32446715 19860.039491558262 0.30386829661214343 3.296047449946063e-05 26807173.799185667 2907.763587915403 151405 15987 145983 NEBL_20190205 14772895.424057953 4263.156929333078 0.9989331382519422 0.00028828971594503373 142537.90143022328 41.136097643760785 39703 6177 502010 CHZ_20200907 58807522.0510228 5711.424375934037 0.01103508943391098 1.0745850386594795e-06 6002928.527468996 584.5586682729917 32395 None 244050 INJ_20210724 168827099.88641733 5049.918383672068 5.827144343804744 0.0001742704378391154 13015428.455721451 389.2480230138369 77618 3777 133527 RUNE_20211007 2269636899.7463193 40884.360110131274 8.635581286141614 0.00015566674688844524 60161316.746948004 1084.4801474513222 116245 7349 89015 ZEN_20190901 34037634.159818105 3545.859783047533 4.708956723397782 0.0004905540786767981 1773468.0941540545 184.75047831034158 26969 1785 209860 INJ_20210731 217912037.12758398 5219.978960396391 6.658908004327389 0.0001593736031927089 20660316.911033493 494.48185003830196 78013 3808 150203 REQ_20210203 32368400.441772472 908.7769194585582 0.041621286893666544 1.1716043274987479e-06 685956.1430367518 19.309090266944672 39574 27188 458949 AUTO_20210523 34919101.69298161 929.059960214835 1367.603735952669 0.03641619320209267 6280602.868014387 167.23824413064105 None None 10768 GRS_20210930 56298414.963353716 1355.496569684415 0.7212536750024559 1.7350764584416994e-05 3813155.796185652 91.73078881448627 41784 106970 8987263 QNT_20210909 4168114511.3276267 89932.60923373672 311.72224772626447 0.006748496327322713 223249082.27427354 4833.134698583021 45710 7517 115433 POWR_20210127 47481165.40023837 1456.9536500319516 0.11036162163707108 3.3882630184794093e-06 4087072.4368890566 125.47909487319515 81111 12513 393579 OXT_20211011 201154780.7584849 3676.215287118852 0.3406798519941782 6.226569745177742e-06 23436572.837517135 428.34777139457134 72620 4484 250207 SYS_20211002 199168582.69485727 4136.111408134323 0.3204739324867456 6.653351123466661e-06 5470625.817515879 113.57552280961377 76388 5773 310151 MBL_20200317 3898989.252388763 773.9415019305059 0.001111802185287013 2.2078146606353604e-07 2255258.085349999 447.8487207746202 None None 114904 ICX_20190410 193469025.68403277 37405.35419838458 0.408482775510546 7.89388322799668e-05 14741984.149115441 2848.8716880815177 113310 23747 314795 GAS_20190819 22546946.352773555 2187.8754650260885 1.6208764022552944 0.0001570618955505148 1187825.6301653173 115.09955034058497 324314 98208 189804 REP_20190305 133612141.18442915 35966.339559954715 12.115446040946066 0.0032629556112235736 3170033.486264319 853.7596153550344 122541 9786 251259 OGN_20201229 24256835.43060853 894.5408587526591 0.12146124951534558 4.473732072457334e-06 6846648.770166974 252.17978832069156 69730 2477 208472 XLM_20210805 6591238110.051254 165575.6920856665 0.2807156136507995 7.059378545207042e-06 452766967.5327046 11386.090623925382 607026 197060 26468 NXS_20190419 22980076.512343295 4354.218352038957 0.3848761428122195 7.2925351110073e-05 133305.4013788616 25.25836787229943 21287 3514 683392 OMG_20190719 216388107.38631803 20192.51322195266 1.5293574344453467 0.00014337992357655587 119597612.28995864 11212.484487834508 289820 40559 None SKY_20201130 9294678.674185177 512.3930508250038 0.48981549192013313 2.697160058087313e-05 368944.65021567344 20.315869763648994 17128 3808 936289 MBL_20200605 6302419.144972171 644.7754513698575 0.001786950829002731 1.8278764343568268e-07 4091598.4909340017 418.5306242926725 None None 90223 ZIL_20190712 129558396.11420548 11438.996595503331 0.014095356069100637 1.2431904834593973e-06 24398275.431463033 2151.893409468967 65426 10609 184168 XRP_20200807 13609846976.87266 1156688.983056015 0.30336700769757885 2.5782896473615646e-05 1861387417.2002969 158197.68747829163 956410 216441 27343 SKY_20190528 28394936.511290055 3222.336883487091 1.8954299726044437 0.0002149253427155706 6854888.634158214 777.2850014338059 15900 3758 440893 ZIL_20190410 199044611.60950607 38483.33950207068 0.02271859936903111 4.390343516899174e-06 20072924.27981539 3879.0698117255415 59048 10123 183798 XTZ_20210821 3122250442.379626 63540.2834011386 3.7113377712177242 7.551314142863586e-05 148175399.59407616 3014.8670359693047 128194 51978 67956 ONG_20190905 0.0 0.0 0.17499339123070262 1.6566979136289158e-05 7599845.7956877155 719.4928097037928 81475 16278 256067 XTZ_20210506 5113574435.614565 89323.68873115393 6.625113390683463 0.00011556539301572522 591357930.9360647 10315.372382561174 109688 44535 85106 IRIS_20201229 36204701.88680971 1335.250795062009 0.03871422542639117 1.4263188023733666e-06 2596749.335943439 95.6700634486112 11049 None 798128 VIB_20200403 2068924.8285508612 304.8786978384253 0.011399961354319815 1.6722581902752415e-06 480187.36643305887 70.43859460805099 31360 1106 None MATIC_20191022 33037554.733709607 4020.0254272754414 0.014900681490320415 1.8131220351396328e-06 22256103.89277729 2708.133343469228 24005 1188 198579 XTZ_20191017 705714442.1769137 88131.51759321 0.872232749142243 0.00010891646315890774 15596732.355682667 1947.5775550592475 44891 16886 211690 TRU_20210221 88836390.03461596 1582.4471154333787 0.39739672232417006 7.068926588882183e-06 13656067.754077477 242.91529100139132 19883 None 95211 AMB_20210314 17047529.251905385 277.7123907081672 0.11774684795239843 1.919398937716276e-06 22837861.290045228 372.28144499923815 22245 5528 363495 COMP_20201224 15260.715408427683 0.6474771018128249 1.5398556602289265e-07 6.669e-12 7.205533267587336 0.0003120662709022735 1958 None 4212866 CDT_20190929 7110644.983215451 867.060356379844 0.01054086036165549 1.285335178918502e-06 253288.98059641008 30.885641780937213 19631 299 180702 GRS_20201130 16079487.050386008 886.4230506785877 0.21150256956351826 1.1647562793589286e-05 828253.6182848545 45.61238214693724 37294 106800 4271463 EOS_20200329 2066099949.4753537 331426.0414914719 2.207207038324224 0.0003530601101853737 2529760534.3623753 404655.07652725733 1481 70770 93580 ATOM_20190803 885871253.3860943 84169.94388737297 3.65571092862101 0.0003473294403722811 124650963.08391689 11843.099767774645 27607 6352 108331 RDN_20191102 8102813.93503879 875.3819639752822 0.15999284016952448 1.7302922386406e-05 1191513.9691886238 128.85997716738066 25442 4376 2354098 XZC_20190701 89686507.31192884 8248.914758759209 11.412184068909564 0.0010518402012279784 11921664.706553403 1098.798102816772 60670 4026 268050 QLC_20191020 4409600.938888843 554.7245971733275 0.018373337245370183 2.311352488222198e-06 1320140.6881675464 166.07274027848746 24675 5722 940522 AION_20200721 49533410.300366655 5406.474831140123 0.11306591868721506 1.2340292840593102e-05 8113790.357812697 885.5590634661442 67564 72556 276087 ZRX_20190618 210573906.5087001 22591.390831510467 0.3521145439263254 3.779132657841508e-05 57620115.391829796 6184.182493507619 150624 15946 211751 KNC_20200425 92962656.2478956 12397.07200934679 0.5156965826075857 6.880299118516958e-05 85705362.22657675 11434.602207329399 105184 7365 116749 ZRX_20210220 1166728166.0423884 20887.743206779473 1.5594508104300009 2.7873488041779443e-05 275630004.8549226 4926.5867143067235 181615 18162 64913 VET_20190621 384900150.0475274 40236.93825093615 0.006930012593883452 7.246368456930032e-07 31340326.46446971 3277.1015931842358 109601 56036 189744 TUSD_20190130 208242351.59775817 61007.28710098839 1.0026046259474661 0.0002937010285555158 57057712.014426686 16714.374013410546 8143 None 272058 BAT_20200109 259506601.90513745 32247.41903023885 0.18189925837922974 2.2633874913486855e-05 48372063.743077144 6018.975832135864 None 33129 23415 GO_20220112 32499213.905256238 758.1092982378611 0.028924313208656235 6.760255197511233e-07 595059.9437384495 13.907874141968207 25204 1169 136613 XRP_20190703 17028337734.931097 1582500.8868354869 0.3988303337337495 3.695336657276242e-05 2060372052.6549523 190902.43970475244 931361 203133 39729 ENJ_20191026 55049108.14545147 6369.029353402768 0.06229767299328383 7.195580310925739e-06 2360363.097967864 272.6294806581985 49493 14112 31815 DOGE_20211011 30206110262.026096 551959.3559987586 0.229298522141921 4.189349966532439e-06 1155512151.4220598 21111.539436314648 2196847 2178035 34432 GTO_20190314 21437572.101423685 5544.585726642268 0.03611117147018516 9.341156316311628e-06 7960831.12599018 2059.289824397715 16361 None 778582 ADA_20190701 2571108566.877609 236957.35089537557 0.08330828430155335 7.678372693131322e-06 337900612.3627363 31143.683448898126 153146 74270 97209 BQX_20190922 9850432.220601344 986.2616353499662 0.06994186510483179 7.002968220181037e-06 185267.3628208347 18.54999794652925 60230 5739 402735 ONG_20210617 0.0 0.0 0.8135795316581346 2.125745755581734e-05 4928919.16036948 128.78432380675474 139153 19425 131880 LOOM_20200301 15784779.73660645 1842.7048818431251 0.01891938356417538 2.2120409792894064e-06 8971950.472253028 1048.9941197850894 21481 None 487535 DNT_20190616 11761399.886093566 1333.7302417276342 0.018631744084223106 2.1130608158054953e-06 2012580.10018124 228.25045949208584 60674 6378 1037935 PIVX_20190227 43653256.14894339 11461.171868654734 0.7394019219346588 0.0001940725116522739 376763.1129932281 98.88987500222757 60704 8594 178528 NAV_20211002 29064766.407148268 604.1137567442489 0.405576206109564 8.421440104114062e-06 8041793.627549822 166.9809085046816 58507 17023 980663 BNT_20200330 11323923.441242646 1915.018599988586 0.1622392583551281 2.748567035204776e-05 4374095.741484846 741.034906456402 None 5018 126378 QLC_20191108 4268178.264610575 462.95750454024505 0.01778407610254406 1.9289896022510214e-06 58117.04125962522 6.303794903766377 24646 5715 940522 QSP_20210616 30085880.11056015 745.0180239401903 0.042148778452418566 1.043732126788998e-06 611314.9354836798 15.138019681176498 65534 8482 222044 PERL_20200208 11992216.655271601 1224.217826727481 0.04575569561706748 4.667221522692425e-06 11829744.19740244 1206.6702512433812 11011 421 1007811 LSK_20211204 488562312.0627679 9098.298114250996 3.37250751535928 6.289203991151984e-05 19908142.649057943 371.25601539701756 201887 33637 184325 NKN_20210127 16912782.878853407 519.0010125655449 0.025966510151457626 7.972097977545538e-07 1387501.856977883 42.5983340977884 13885 1026 373477 AAVE_20201129 759087952.9198147 42887.77688637288 63.78184361606367 0.00360058454955374 132244835.61693434 7465.427226388386 79124 1628 15890 ENJ_20200404 82229239.20863509 12227.957792917314 0.08999513149809855 1.3375910976403156e-05 5684773.480423772 844.9237500894421 54072 15292 101377 ATM_20210513 32995319.49615999 640.0030073733558 16.537898197921827 0.00032810821124824846 248123216.1230601 4922.709260692514 4954220 None 141318 RLC_20191026 31699319.049840964 3667.523422502504 0.45338747868149154 5.236770264553083e-05 1577338.0716501633 182.18758786163798 25092 3334 696039 CRV_20210610 828634636.9433115 22076.44156943286 2.5202484919381996 6.717345259609698e-05 424613655.1673767 11317.441644456967 130401 None 22444 JUV_20210107 0.0 0.0 9.977547212374075 0.000270325548151185 2474868.2044979557 67.05256209192731 None None 134536 NXS_20201018 10414200.760513073 916.51122259562 0.17441918410095902 1.5349919147960117e-05 6848.397092550535 0.6026994232637157 None 3516 597688 COS_20210603 45164788.338930406 1199.1396697531952 0.014984135602940802 3.98430881572917e-07 2661193.2663255297 70.76161129574237 None None 208235 LSK_20190318 200448518.25929865 50335.63472413318 1.5333821156909695 0.0003850743351094357 6626207.26890548 1664.0225109325074 183332 30455 187764 DCR_20210804 1680172178.6892989 43729.12357868037 127.43495792605293 0.003317489894805383 24348188.9964165 633.8517488999748 47626 11456 143950 OMG_20200129 114983068.17220737 12308.570921443832 0.8146489459591063 8.733385709032899e-05 92004925.45990549 9863.322172794053 283463 42936 415405 WING_20201101 5926700.620404306 429.6359734261154 9.51016730607277 0.0006893359137347885 6174209.606160412 447.5320237252752 6515 None 218127 GTO_20210127 28799380.448924076 883.7054042382057 0.0433039225939221 1.3294936890524578e-06 32044078.872132245 983.8000365809462 16670 None 744307 TNT_20190923 19248821.85547198 1916.5076485801908 0.04492336824421689 4.472792126524414e-06 1629231.6928205793 162.2143435086267 17561 2536 560905 QKC_20210114 36687867.74846249 986.6180056731743 0.005753843570384802 1.539600188507547e-07 2378044.752303352 63.63117286973393 63185 9207 114091 ETH_20190228 14178777736.552544 3714498.888165785 134.84981713392082 0.03536903015057793 4639489690.788092 1216866.6909931046 439973 430729 29840 QTUM_20210725 632813866.8481355 18521.9488092704 6.108365246899266 0.00017878451477722413 147881464.6897346 4328.312869391749 249291 16755 143849 AE_20200418 35853674.41894092 5064.561114900461 0.10044217928068343 1.426749933361806e-05 8318403.28590902 1181.6033282871806 25303 6338 661770 KAVA_20200621 27986059.333979663 2991.310560308984 1.0288673448390686 0.00010996536439679889 12408536.299050773 1326.224631970855 None None 334665 POLY_20190909 17548481.836727038 1689.0150297131581 0.03462382207119636 3.3314060503455637e-06 3946888.278287512 379.7584063159632 35239 5062 289476 ENG_20200725 25524355.06756029 2675.8083383410185 0.3086302610925026 3.23634556336829e-05 1456341.3434720486 152.71424872634032 413 3578 537698 AMB_20200323 1073712.195605774 184.1506233062046 0.007445201993215864 1.27685517694286e-06 98122.85033638381 16.82810883338898 19066 5495 780586 XLM_20200105 911869877.4752684 124085.74292196213 0.04570305773606762 6.2154992731275965e-06 106403953.88837829 14470.666314503396 279465 105751 56844 OCEAN_20211007 342639104.3789221 6172.653233547715 0.7891880155718427 1.4226244561390064e-05 44869460.361870974 808.8363024406128 124006 3587 161636 ZRX_20210718 529352934.4260862 16748.360979321464 0.6252810195766912 1.982153268833158e-05 35066282.252520025 1111.6081220522906 222806 19588 52898 OG_20210813 8030580.580734164 180.6452538059436 5.8116796452228865 0.00013072008482759525 3600744.92185258 80.99030062918247 700282 None 320611 NULS_20210527 71664198.04907037 1829.1260949382984 0.6369014103627407 1.625746148361503e-05 49664627.93703846 1267.7327489738414 53182 5368 242019 COTI_20210324 338162692.54539424 6203.175034822499 0.501764475175971 9.204669807055213e-06 243916860.19858187 4474.557824593305 63231 3063 107112 GVT_20201015 6273266.569303887 550.4323974913664 1.4042547809597432 0.00012302355209285428 2673854.5948780756 234.2502902620567 20701 5483 165944 CMT_20200719 9927467.294049872 1082.558733037012 0.012398988487263247 1.3522023222660375e-06 1582068.44507217 172.53638291607103 283385 1637 956184 WTC_20210729 16208926.309127126 405.354892378126 0.5559327231978114 1.3894182173279213e-05 5896923.251001374 147.37921063535902 65366 19896 895790 PPT_20201015 7937086.081687962 695.3499722953766 0.20535202669992494 1.796915953704414e-05 598805.6613510178 52.397994962207 23559 None 1436311 STORJ_20191127 18677457.042966317 2605.7609366377847 0.12893100961826232 1.80150986630914e-05 5076942.628348098 709.3842096431591 82911 7858 156221 WAVES_20210125 706072347.1780229 21928.18408579912 7.0546931971807165 0.00021858180785002784 155923152.83819407 4831.105149500891 153946 57275 125387 WABI_20210107 4813558.576422192 131.52762308913023 0.08130747567271396 2.2028949061505568e-06 1063208.0593463595 28.805907436360286 40849 7475 1296084 DEGO_20210819 51136849.63228048 1135.1017004165694 9.41886908855727 0.0002091368595543224 15200091.66990869 337.50330394170976 None None 274758 ATA_20210825 107957465.0704663 2246.550339034268 0.6244745969297629 1.3006697536494935e-05 21361021.365615644 444.912163503775 66658 None 88669 SNGLS_20210120 5686551.33693318 157.07548703342985 0.006403355120408915 1.7648913363944017e-07 488016.87670645915 13.450710471582946 9038 2113 2274706 GO_20200903 13488391.341616677 1182.3216172482528 0.013017616771640796 1.1405407301596321e-06 1410197.1384853744 123.55466459122108 11946 682 742486 DASH_20191220 396939558.08943456 55585.442838220595 43.04912500172002 0.00602452823518464 264269667.98890442 36983.33186652256 315942 32845 79033 BAND_20210428 493194969.11356384 8952.420892835464 16.70204569603925 0.0003032205651762853 277322431.6376252 5034.704489951412 84979 4907 169936 AAVE_20210114 1795039758.4677303 48206.90522505596 147.59248470992014 0.003958796160097043 561183308.1428058 15052.326883395668 93567 2077 24520 NEO_20191030 756287448.0933638 80371.6671711695 10.746350251677432 0.0011421557762388728 579572421.6196618 61598.772941382624 323473 98559 172955 GAS_20210821 141152390.8830596 2872.563583535685 10.144265784883057 0.00020641943505560968 29257655.770138916 595.3460706957607 410350 112793 110676 DENT_20190818 32081783.97580641 3138.631476524447 0.0004382092861094328 4.2874060336477866e-08 352263.7260727511 34.46521268429719 46568 10060 273311 CFX_20210809 256091179.5791121 5821.267949173378 0.2957730820963583 6.725155100825523e-06 59825331.12974695 1360.281429108276 None 1184 184033 ZEC_20190901 326813251.1909381 34047.257941742566 44.67938847784543 0.004654678654066473 143328658.2793743 14931.915340331965 107 15339 175119 APPC_20200607 4286130.2402836485 443.2620676052233 0.0393578811072971 4.070304628686816e-06 76749.80065630493 7.937293880493712 24539 3210 1584019 ADX_20210325 117982061.7709193 2231.998620099409 1.0327514486401272 1.9602199743029682e-05 5930552.085414409 112.56519341397082 55602 3804 10456 DODO_20211225 238824997.11465824 4700.384772241222 0.907647544011137 1.7849245008834474e-05 29909112.186325204 588.1744240183665 None 1250 17050 NAS_20190513 42377687.83881767 6093.929747527517 0.9325099136669802 0.00013400948411721494 4008781.46041306 576.0954683431504 24111 5177 484793 MTH_20200423 1842103.1473030064 259.06236014615826 0.00530034665348178 7.454090264457476e-07 39150.74527206871 5.50592646590535 19078 1921 1304375 CELR_20201201 22762221.079349555 1158.4561425130817 0.005715670775404634 2.9115091288462753e-07 4012900.122935412 204.41337159150262 25327 None 412743 AE_20191127 52403196.88163562 7309.215702275746 0.15494905561052427 2.1650513191832184e-05 8646358.52080138 1208.1267515850948 25221 6350 383599 LRC_20190818 34916174.415756375 3415.9261262950363 0.03628299351920063 3.549900247759167e-06 3714822.547006101 363.45538779813535 34551 2447 491659 VITE_20210809 53078737.90566659 1206.5470051464927 0.08062230440614057 1.8328056984673555e-06 34788473.8078175 790.8545098730017 33254 2431 651282 BQX_20210420 865281203.8888094 15465.826191723289 3.8916452845104295 6.958029360884376e-05 8557130.720670836 152.99638699430852 65784 4309 20896 BZRX_20210112 27063608.030492898 763.1187717557752 0.19262493966602068 5.4186289072245154e-06 19506462.244681265 548.7258315562698 None None 145216 FUN_20210909 251619867.13515478 5429.032989619783 0.023712054360429165 5.121734080126767e-07 27987208.86959403 604.5154894475853 15636 415 110852 MANA_20210804 923989652.7972772 24049.30376015315 0.695924147135607 1.8115695092349715e-05 78516061.90178894 2043.8621696334128 153852 34985 19440 BTS_20200704 61905327.867836006 6826.955664684565 0.02283842590831652 2.519648508963797e-06 6068579.144185513 669.5157737034662 13110 6974 134669 OMG_20200318 65898310.94605396 12135.000685151059 0.46576121291468403 8.659454060604213e-05 77739996.53306283 14453.456191357423 281280 42870 453059 XEM_20200730 460755824.1205458 41519.39543974845 0.051119085383361546 4.608967459237752e-06 14434071.154628472 1301.3958242229844 208804 17829 268527 AION_20200403 26627896.273491804 3926.434318974922 0.06513251981225696 9.554277100074415e-06 4109237.1079109856 602.7832196890018 539 72560 269211 XZC_20190801 71968592.7121996 7148.627114873692 8.915116780493545 0.0008842703254160251 13407484.242982946 1329.8581214879403 60856 4043 218512 RVN_20190909 137534097.9627416 13237.4504369341 0.03142620824236388 3.023740708427606e-06 15378226.275514532 1479.649356806611 27630 6980 276399 CHR_20210125 13999246.703491954 434.59079115933827 0.03115916698755232 9.654320692446156e-07 4006135.658016579 124.12564942890359 36958 None 518597 QSP_20210703 22395327.541413784 662.7173227777549 0.03153382498622784 9.313560900185771e-07 427607.84746451076 12.629459732517123 66236 8486 236881 LTC_20200725 2875112865.9521265 301414.34425477247 44.16220830472597 0.004629774091530669 1289105583.6831574 135144.2299126404 133455 214235 126072 RDN_20200309 5808391.9024903225 718.994176007922 0.11343291744475904 1.4089656615640303e-05 1031987.3812192766 128.18455313145347 25180 4329 1576973 CDT_20200308 3926881.96612834 441.7877304313261 0.005828969654519849 6.549086316306962e-07 80976.97750852449 9.098095319912229 19266 290 235568 PIVX_20201201 26010272.25873911 1322.9741002799153 0.3949171096874384 2.0089965916993586e-05 834360.7452768206 42.4450562508051 64892 8671 298063 PHA_20210422 137888236.35756838 2544.813950220441 0.7758074508471985 1.432506794893264e-05 45794985.79184757 845.5916251799815 None None 139188 COTI_20200430 11470490.446179997 1314.3434594219555 0.022915024561817706 2.6136777745406956e-06 2920102.237385943 333.0655961835365 23211 946 241032 DASH_20190523 1382879490.0631974 180403.14386563425 155.08313082914086 0.020250241419695458 512992704.6908321 66984.8877888393 319958 26079 107339 AION_20211104 95738234.37062062 1518.254697827193 0.19201168559019938 3.0469065313185853e-06 13139496.86965797 208.50199146652574 763 73842 403346 TWT_20210725 110071760.17585157 3221.711176270219 0.317259228574615 9.2857762404147e-06 7524053.38114741 220.21952342306355 937337 41574 2945 RDN_20211204 31298684.058341358 582.9725094166527 0.612429516113231 1.140245975019975e-05 1380505.7275401512 25.70281245276631 33043 4880 850939 GRS_20201201 16737958.195132814 851.3515338651869 0.21875894221668088 1.1136298921717548e-05 1693491.4164596528 86.21008331799976 37298 106800 4623667 OST_20190530 18972066.133652333 2193.9043542781214 0.02975412304408375 3.4408757928717754e-06 13574598.695924912 1569.816323658856 18128 757 1111162 BCD_20210814 517239417.826159 10843.66607492005 2.7519833062855787 5.765983611816737e-05 10039350.82675274 210.34550684998993 34500 None 1282493 UMA_20211207 674022610.6199443 13356.492037126025 10.626164160190578 0.0002103891978851403 35604875.36249399 704.9468703277739 51139 None 201960 GRT_20210708 2056499864.1849732 60524.816990139734 0.7096509319712495 2.0885726049617025e-05 174925920.44377992 5148.242169171002 121004 16006 34179 LSK_20200423 142022735.6699219 19963.143555866787 1.019710561356594 0.00014333358828621972 3808291.1175155886 535.304871595971 176611 31317 162071 OG_20210124 0.0 0.0 3.862024428273196 0.00012050889139397669 1669493.3321517 52.094126897377976 None None 397078 GRS_20190324 33832948.396264546 8461.806217550295 0.4694490168591491 0.00011728676161578512 13498083.337357942 3372.3501931067008 38669 107065 7284589 BAT_20200806 382398807.38421667 32643.22780110934 0.2572426226742363 2.1951277292284858e-05 142898996.2350156 12193.995919239085 120361 43459 16969 ELF_20190510 57160170.124975726 9257.913436345696 0.16296109991815227 2.639765548464387e-05 11807188.843357 1912.6165906195538 88546 32661 938169 FIL_20210711 4726777354.723511 140188.73603883898 54.49825472957034 0.0016168930067005823 155146960.89789838 4603.010451095197 95271 None 26863 MANA_20201228 107880633.93396948 4062.7288254978102 0.08097346598959787 3.0759588937089574e-06 23820081.751226585 904.8592821872331 55513 7706 82693 DIA_20210909 87253542.11794747 1882.6111149843034 1.794266412241037 3.8755627381394785e-05 24797259.198106516 535.6135136929587 None 408 566748 WAVES_20210909 2784108445.759262 60070.83928149136 27.751956704653182 0.0005995054290486014 314561885.56507915 6795.252679837537 196258 59452 170142 VTHO_20210614 293200801.3620898 7533.330528367594 0.00803253872372308 2.0628744791953312e-07 19456594.293279916 499.67405324952347 378272 186871 25894 BNB_20181229 848545994.7505513 220636.54905354508 5.8806438047260565 0.0015285317136452211 20381364.41725928 5297.644767075348 898400 46589 1027 AST_20200317 1504735.0210340759 298.1299496411989 0.008703302571013106 1.7306816853043755e-06 2195027.0184440245 436.4886810004508 31777 3482 355183 XLM_20220115 6703860599.38095 155560.3566810644 0.2691529021268005 6.242652398336495e-06 518939776.57816195 12036.134907888454 720506 210403 23022 OM_20210805 44944413.09995268 1129.029505558386 0.13663786868648703 3.43614103299614e-06 6169059.587967121 155.13824234078135 48213 None 86864 QKC_20190716 57986427.96847538 5303.1164008333135 0.014424427983865347 1.3205901923842676e-06 3539236.85588341 324.0254300297108 51095 9225 202056 BRD_20210711 9320511.356263079 276.32612814643215 0.11393304034273866 3.3796877330634566e-06 38275.033726203284 1.1353832178786736 800 None None BAR_20210718 45725699.68471242 1446.7574494807993 15.467768451798246 0.0004903191774055069 3253083.0276704137 103.1208217998464 None None 42486 ELF_20210325 152192994.68239304 2879.2049989400243 0.3310429999286972 6.274990432894831e-06 33881721.11033449 642.2352258261101 85288 33335 211873 MDT_20210828 26359915.784334596 537.3944099771702 0.04342980992983909 8.853370779586417e-07 2688932.0705746287 54.81514347029614 34655 326 955933 VIDT_20210212 23795004.99981291 499.01996543716996 0.5112885994003048 1.0708472884981813e-05 10208261.193806747 213.80271010327255 24254 1258 None ALICE_20210513 191567588.9075408 3714.1199869347906 10.344240736695657 0.00020522742879533351 81827187.86715963 1623.4331546400442 64316 None 62436 RUNE_20210826 2739183483.4954333 55883.523787950784 10.458277498454196 0.00021338741667686697 143343970.32522607 2924.7454495662932 108841 6631 73281 ETC_20191113 564846519.2996676 64179.869086837614 4.908994082582559 0.0005577120168744325 715399283.4485954 81276.68734787681 229570 24964 391348 BTG_20191108 154532015.3842114 16762.02686890636 8.823380493384086 0.0009570686083202348 15187520.355158547 1647.3843535417952 75177 None 358589 BCPT_20191020 3380376.7917933 425.38563337086407 0.02910137382855211 3.6621084276979867e-06 423443.5872947964 53.28601800116783 10855 3124 1510702 MDA_20210428 25955455.432914548 471.1470343501032 1.3220019431773493 2.4004084257462914e-05 1903147.4555829752 34.55616091485683 None 376 1136941 POA_20200423 1962077.934595852 275.86046455213517 0.008976540537477784 1.2617695789300186e-06 21026.056957026696 2.9554859048941067 17272 None 511690 TOMO_20220115 133295399.59279886 3092.6048357989325 1.532823998130824 3.5540160070321596e-05 2334888.447057601 54.136880200181565 69342 2396 104936 XVG_20190719 97558871.71119146 9090.131656100417 0.006106180893237092 5.724650955350274e-07 1452546.3244896948 136.178748215437 304225 52972 416991 NEBL_20200312 8323685.38224426 1049.4521299632318 0.5185570581435412 6.532439450463386e-05 123538.3391463855 15.56254432585868 39650 6027 856581 MANA_20190227 61397831.00035877 16154.103512450085 0.04855680908130959 1.277556075440463e-05 31943894.086902883 8404.612398564308 42777 6046 109319 DOGE_20190816 315999211.9630991 30706.677457317957 0.0026186756958295125 2.5418034067359314e-07 64238566.84257071 6235.281761094805 137999 138980 107008 UMA_20210201 608759132.0872434 18414.624951007485 11.020260387301757 0.0003324164374876451 38028360.969105825 1147.0919771923375 None None 180078 MTH_20200319 1510839.6578316137 280.73352079517116 0.004374046697221723 8.111541774636471e-07 30395.929257723285 5.636836253017698 19200 1928 1053445 ONT_20210212 838749024.0301977 17596.81784659443 1.0363981824862556 2.1706413654080558e-05 751105484.6693735 15731.21858335399 98050 16772 259663 CELR_20200129 11896329.541559612 1274.5916054723684 0.003314976744319375 3.545279201342573e-07 3551722.6451135296 379.8472627066275 18893 None 865409 AION_20200718 47987036.882452 5242.715391696803 0.10934016430314508 1.194371076839311e-05 3237328.6043182933 353.62775205845605 67287 72556 276087 RVN_20201015 94033655.4669697 8237.989061488397 0.012966185214817552 1.1359098445180101e-06 6561701.221730969 574.8414734992616 33678 9436 217499 BEL_20210206 50716147.16900641 1338.3386196779213 2.2911093082415923 6.027418421551419e-05 21964330.40398245 577.8345416247844 11107 None 421105 EOS_20210206 3169972599.0286503 83580.39003277454 3.3176479662303464 8.72802200922784e-05 2936943913.349387 77264.7109533665 None 76098 71191 ADX_20210318 115331481.69387074 1960.638797187802 1.0082113446912786 1.7116620721724536e-05 8580590.318823215 145.6745263075484 54867 3793 10456 ANKR_20211007 678615289.3101654 12225.273783294984 0.08887614187659218 1.6020994329736128e-06 86517674.16997391 1559.5852137953514 125594 None 5363 LTO_20201229 30168313.785223868 1111.7583697294044 0.11095217347759151 4.085139995359631e-06 2800019.6788849263 103.09372064997915 None 729 1084652 LEND_20190524 11250335.590005849 1428.1175419480405 0.010070683743678676 1.2803909549135831e-06 1035305.128246245 131.6291282222232 11489 5879 548468 XVG_20190915 69870951.75709987 6748.4040288149135 0.004383547776225573 4.234539005436044e-07 1037439.4567525667 100.21740539074852 302326 52712 272149 EGLD_20210809 2455708162.6065836 55821.271326094284 125.59948269284354 0.0028552824097454422 102085164.96778473 2320.725926406109 None 9896 43311 BRD_20210523 15136492.106521113 402.6805594305293 0.1863573490819882 4.957719467246681e-06 879543.4388985148 23.398753259780687 766 None None BQX_20210826 1017630720.5840024 20753.79507149284 3.7385374676046133 7.626657649186617e-05 2916482.530985312 59.49656515789851 None 6800 34355 ZRX_20200117 147128326.53433216 16901.474867450357 0.24640969422878867 2.8278954243029296e-05 54410630.20929866 6244.379819709939 152122 15980 132078 NANO_20190810 150278389.47599602 12669.203367634906 1.1274764614553838 9.504698477620543e-05 3279114.4912075116 276.4314429437588 98787 47243 262200 VIBE_20181229 5812144.42545346 1509.2533408601544 0.029031669546216225 7.538722551609052e-06 535747.292917845 139.118771404232 20588 None 1364460 THETA_20200301 118331257.8300506 13810.36728935774 0.11785095987458552 1.3779051088366535e-05 5023578.528218917 587.353257541663 None 4028 385146 LPT_20211202 1365273406.9639807 23886.353248892545 55.9410512956526 0.0009782874394409283 56580202.893290214 989.4648121464012 None 2197 88203 RSR_20210620 371826553.58485264 10451.080214008958 0.02828254671954564 7.946134948838344e-07 31094511.171688966 873.6171618083033 75050 None 81455 KSM_20210430 3452860622.49593 64414.41154815556 385.01629551029674 0.007183906984351553 259159782.78380978 4835.586948692803 53372 None 86081 DLT_20210219 11364991.109417098 219.22418455124102 0.1385647961660124 2.6737350014396873e-06 1586521.5005002075 30.61338943076 None 2540 4991902 QUICK_20211028 151672368.233979 2591.449351360887 420.1737040334238 0.0071785300591714315 21462168.063235246 366.67410906006546 None 3691 5585 GRS_20191026 14167707.072671706 1639.1644707093014 0.19268223069274026 2.2255413385784157e-05 1245295.783107874 143.83564245129818 38192 106953 None UTK_20210204 137208256.6119212 3662.361539717003 0.30534215999616293 8.140436486573283e-06 10548119.955901656 281.21337896755773 58924 3237 107548 FET_20210324 430692502.7498743 7903.723930587312 0.6296673790276783 1.155099772695351e-05 63924538.09646726 1172.670236449376 40495 1621 199208 DNT_20190614 11492141.634308994 1396.8644929480597 0.018522715367274054 2.251373041149353e-06 834845.97578949 101.47268832545326 60661 6377 1082435 DCR_20200610 202262027.95790255 20691.319764529213 17.435515864335205 0.0017846467648085036 112997104.96972074 11566.042518388547 40527 9838 295595 APPC_20200411 3091857.806526695 450.928164961394 0.028461653968694732 4.1498393911304235e-06 264140.0776122995 38.51283203911559 24752 3221 735722 DREP_20210711 0.0 0.0 0.4123683973720909 1.2256029026961974e-05 765523.5678651422 22.752177733234 4086 None 201937 CVC_20210324 305460574.3406642 5599.966933531409 0.4586723936126696 8.414162703199815e-06 68844558.9451124 1262.9260628303164 None 9344 130858 WAVES_20200511 96155397.37848748 11002.74572707057 0.9612826572633606 0.00010979782297781681 43753172.08569558 4997.492680310592 101 56838 74379 BZRX_20210809 42288862.31816009 961.3380864125166 0.30097237737629556 6.843374334721787e-06 13769641.203859167 313.08789874428857 None None 159675 VIBE_20190528 9421142.544897208 1071.2415321360813 0.04741268610605363 5.381819859401901e-06 1617511.1647494098 183.60389221105962 20635 None 1508897 QTUM_20200520 152217644.91488296 15599.377653449583 1.5785449489090961 0.00016184633798550237 193737259.31198117 19863.650998763864 178650 15085 104792 BLZ_20210111 22408631.58212091 581.4557328697284 0.08805239654581724 2.2904295865076083e-06 10125163.076556971 263.3769663122489 43326 None 444357 KLAY_20210814 4210652152.5259924 88342.49106800718 1.6863687078565424 3.53530993593028e-05 111825448.26776974 2344.3130586394564 None 701 67261 WNXM_20201228 30413084.853191253 1148.7868966417564 17.10338298884471 0.0006503605421718364 10786533.502651371 410.1607139075635 None None 115937 QSP_20200605 9567011.553602967 980.1943057863726 0.013345854061806378 1.3652855837085915e-06 952840.68450305 97.47593852730637 54450 8246 565587 FTM_20210724 483960186.70710695 14478.30573803817 0.1905572920897396 5.699189635776347e-06 28318420.07438468 846.9476261946949 103080 9270 42722 LRC_20190522 61555699.7726948 7735.138235784257 0.06586837107339583 8.27797810167058e-06 11588897.348275542 1456.4294957990892 35901 2465 907750 FET_20190411 0 0 0.2032435940190468 3.829288553119601e-05 17631907.349724118 3322.0068415852047 7773 171 174439 XVS_20201228 12905808.423899055 487.4883189098242 3.4687278746822705 0.00013189927061191918 4223985.952094202 160.61815348004237 None None 109948 XVG_20210828 471599337.5026732 9615.077521846399 0.028625404313243976 5.835423146224674e-07 34697607.95670485 707.3270385058166 325622 54640 161164 ZIL_20200807 222704885.27067193 18928.930271140613 0.020088002100822098 1.7072617172780429e-06 68327886.33170837 5807.127257910697 89339 11757 80584 RDN_20190618 21265938.45226237 2281.361563562471 0.4175109080330098 4.481010894803443e-05 4962262.081550766 532.5837007482676 25658 4426 754056 ATOM_20190621 1563623991.1791086 163459.12562774358 6.507179111071543 0.0006804232577539793 95407451.16435476 9976.28121604969 26060 5363 113612 BADGER_20211111 312105141.8568567 4812.777548175365 31.616513464327095 0.0004868276693713827 28815722.897465996 443.7013978550505 40317 None None PNT_20201228 10891650.549898133 410.2366012011263 0.38637966189319234 1.4692186133990158e-05 2031995.8284981365 77.26716460567454 None 108 947111 POA_20190920 3656987.4397480935 356.7794977694703 0.016610014783909093 1.6204903161917274e-06 443525.08808258205 43.27076884496052 17707 None 603772 NULS_20201015 25432177.71592433 2228.0320890769385 0.2603814430119258 2.2784463173592684e-05 8980019.187036643 785.7891641526118 30664 5153 275025 MTL_20190706 26688412.23418848 2428.2501607632175 0.5735020230823195 5.218018844761816e-05 6145505.922664368 559.1500016462038 33282 None 763288 ARK_20210218 127613577.13399307 2445.167570886984 0.8208873767746628 1.57400283239583e-05 12711943.608091863 243.74397524552404 64277 21885 92701 NEBL_20190105 19851421.07255666 5210.2369182517 1.3705218695078882 0.0003597521680052069 235085.84708253207 61.70834996281297 40001 6186 482708 DODO_20210614 172178013.98215908 4423.843467659915 1.3392438768110415 3.430653812174782e-05 28608129.653547928 732.8358244118533 None 993 25824 GVT_20190813 6299540.414855322 553.5137434437619 1.4136765661419528 0.0001242281401041896 307434.557968903 27.01609707265634 21342 5722 213598 KMD_20190807 104728446.9446282 9161.24397722829 0.909862861299823 7.94550938108303e-05 3143162.862966167 274.4812551013651 98318 8444 220245 TRX_20181231 1284441290.4648187 338104.39770020737 0.019606629375094973 5.158719270094205e-06 75015839.05726473 19737.490167410408 362568 68707 91743 TNB_20190524 13769458.981020117 1746.8113349986045 0.005281850242215939 6.706694688679228e-07 1580685.915905146 200.7095496941523 15798 1503 532164 DASH_20201201 1108679841.664522 56475.112140194615 112.62283686338326 0.0057369017658490265 819011121.1994293 41719.65898140713 322222 35621 79206 TRX_20190714 1882890267.1507065 165432.8815596153 0.028487556383754865 2.4992628742727338e-06 761102094.4155518 66772.81064334261 444687 71284 89082 TNB_20190708 16087426.855727296 1408.2928739183926 0.005841508233064055 5.111805714570832e-07 1469269.648285374 128.57331847688067 15728 1488 481694 JUV_20210127 0.0 0.0 8.671219671452278 0.0002662191122427644 502185.5659563457 15.417830549279303 None None 106290 REQ_20200407 6916308.093517743 949.1746691834617 0.008961259871544398 1.2298180993429403e-06 52718.67802613272 7.2349630899385255 39454 28231 588604 CVC_20190629 25379068.01689068 2048.7608214897355 0.07404084487974791 5.980529726285714e-06 5859735.936062777 473.3107112800331 88688 8166 458176 SOL_20210813 11719191265.4597 263593.3503195357 41.19014957214054 0.0009264970106542277 501994574.0018019 11291.448975263871 383724 29617 9636 WABI_20210131 5521115.405722037 161.37735232998693 0.09361457594938022 2.7401152933168036e-06 5151579.77000913 150.78765640274136 40801 7429 958104 ERN_20210909 150125471.45752203 3240.4545907455254 13.225058639661622 0.0002856913672193024 11430299.024403622 246.92047460674866 92546 None 39642 ZEN_20210930 750736268.6265826 18073.343502735617 65.04109123885696 0.0015647447728772072 59700433.02511953 1436.2603507296762 121340 7772 1307330 BCD_20191213 70067435.82625316 9722.06535582638 0.37335899641482384 5.180250603828736e-05 1859624.108416822 258.01759172872676 21297 None 2556189 GVT_20200310 4403246.402140632 556.1589685380151 0.9892865293241481 0.00012482830059107377 885491.0195987754 111.73136992038717 20735 5606 171820 FLOW_20210814 1343586152.9717999 28167.612683009655 23.580464438466752 0.0004942397977312127 181228293.81365007 3798.4932617152144 79005 None 60038 ONE_20191216 18417963.42963432 2588.147152236309 0.004941715577837088 6.949265646205238e-07 10738499.30235148 1510.0967086877977 70843 None 220757 LIT_20210809 83494259.25054032 1897.927355850201 3.7699549581819873 8.570251954904817e-05 18607545.327225685 423.0059867705659 None None 505137 STPT_20210727 54172685.84365089 1446.1528152297578 0.04418494274106274 1.1806133774910162e-06 11335751.447969597 302.88915121640764 30711 None 433078 LINK_20200501 1353940282.1185036 156462.33252924174 3.7018515924965945 0.00042946388293915044 526466854.56624913 61077.137738063 50894 14843 77318 WAN_20210823 159909363.3441921 3241.358924580928 0.9052088209588507 1.8368256370428048e-05 6932933.305574651 140.68123664656966 123677 16736 387619 HBAR_20200913 202993141.33357292 19467.486947424015 0.038521958167254525 3.6891724287764926e-06 2353314.7517094417 225.3723411604604 None 6695 159106 XEM_20191011 366197805.7162406 42776.239797548864 0.04069407290332765 4.7526066520344345e-06 53589773.34064489 6258.6783550717 215552 18298 139419 ETC_20191020 504572001.8918989 63509.587600427774 4.4114128300634405 0.0005551908533938264 459347365.09404653 57810.38081332817 229701 24981 405893 ZEN_20200106 60167383.389463566 8192.476782814261 7.4011248151206015 0.0010076600485336893 1136024.7273440817 154.6692915585366 46084 2935 41253 ADA_20211011 70297930939.29306 1284733.713001517 2.196016203628428 4.012184781322452e-05 1430279071.7511737 26131.610118551933 650576 632566 6972 SC_20210509 1955182683.0559616 33340.102998850176 0.04101343239934257 6.981901362243228e-07 236760741.87124655 4030.48476923641 135627 44104 47016 ANT_20210120 139334790.10296056 3847.610354044848 3.9978621150715616 0.00011092266713660419 47073701.81211262 1306.0832031470059 76873 2702 136164 ALGO_20210207 649237910.1462096 16556.903885839267 0.809920921571835 2.0596364266691017e-05 485928697.34782857 12357.211910010958 None 3261 246299 ONG_20191012 0.0 0.0 0.1679760885108249 2.031716348292065e-05 14630035.572784182 1769.5424814826888 81470 16287 312703 XMR_20210428 7188334440.922316 130483.64581815223 401.4016009484639 0.0072873241109094955 638153247.8574411 11585.478330376176 396244 213995 39530 ONT_20191216 380772988.8658005 53507.61981541664 0.5956837236164931 8.377875995992105e-05 78940479.09413554 11102.427659088777 81566 16281 323482 YOYO_20200305 2060689.6042846546 235.39222322329232 0.011786809462038216 1.345900776655011e-06 193750.9923964258 22.123850562265336 7513 None 2563708 ONG_20200612 0.0 0.0 0.11420854097537553 1.228204278006764e-05 6928227.457849602 745.0649951451086 85577 16472 148134 DOT_20200914 4819470920.9595585 466922.1871068975 5.294815256024742 0.0005127051834675931 413410119.80475265 40031.14387809434 None 4668 45901 TRU_20210207 46862541.02651034 1195.091314749931 0.31305255563145296 7.957911004086272e-06 9713575.6006959 246.92266129526328 18494 None 115581 COCOS_20190930 12413299.03514104 1539.9871322202298 0.0007884830566480093 9.792522062315718e-08 1930434.1912602186 239.74921526060442 12006 127 135713 STX_20200914 169835201.01399413 16448.934408820707 0.1993381410767937 1.9302221749205616e-05 3315546.574698777 321.04952348281574 43534 None 104221 REP_20210202 107526695.11670408 3219.2397628664385 18.427330647120492 0.0005516955159675698 20218726.715512812 605.3280901683486 137250 10463 129604 YFII_20210819 154671124.69286 3433.286522472446 3889.0598555288675 0.08635280490225795 54213418.20656155 1203.7564088452687 None None 505373 SC_20210106 189939978.32497963 5591.349077950263 0.0042159982400169415 1.2368415079975424e-07 23601840.967699748 692.4039079743692 107630 30118 159206 ONG_20210707 0.0 0.0 0.8137088511467074 2.382624234810324e-05 33684869.185265146 986.3280404794081 141253 19601 137199 TRB_20220105 86697787.75016479 1874.1410834835951 36.10615577869435 0.0007848734835449326 20704513.85265485 450.0735002707387 27113 None 308104 ENJ_20210617 1302069079.4057465 34041.9959507025 1.3938579843329604 3.64425341601377e-05 260593231.33858258 6813.2319373280025 213989 33411 26462 UNFI_20201231 14930341.301056553 517.0315700080547 6.189953713000768 0.00021464418228349976 13209013.056399267 458.0386118733067 13037 None 133168 MATIC_20190623 47416092.084097244 4416.702805357862 0.021885627758767033 2.040330350338189e-06 62292809.764565036 5807.368734011832 17446 690 215826 STEEM_20210210 98619825.4384037 2120.9483397206595 0.2500642524542379 5.36682195337248e-06 10958569.373390047 235.19031654245666 12271 3867 197343 ARK_20210513 299973447.14775187 5951.406278337589 1.9078550569093058 3.785141875659263e-05 34401576.82654117 682.5196105085479 72398 23057 75515 LTC_20210120 10174714752.65026 282302.5069982732 153.42728033232035 0.004256915985625932 7951747165.599574 220625.16880686593 139235 223371 127540 HBAR_20200718 188438524.01868767 20587.425572481414 0.039579695088234855 4.323995412035301e-06 4798769.908694098 524.2551521013177 40448 6577 140094 DOGE_20210723 24989319857.1687 772660.6424646843 0.19164698918225934 5.919867232401168e-06 1590344694.4926803 49124.849210111 1983279 2119826 9379 MBL_20210128 5307793.372708099 175.4571636899539 0.0015011212610698157 4.936742830248508e-08 2018549.4036193308 66.38410602963718 None None 959943 OGN_20201231 22915981.380501688 793.5709969736378 0.11495635111694458 3.986866655059221e-06 9361763.086195922 324.6806350259777 69799 2480 207075 POA_20190220 6201635.955788789 1587.1748628253263 0.028220506627037338 7.207634822607643e-06 114845.63856951565 29.332053981808812 16411 None 772242 CMT_20190723 35640728.33387321 3443.858491685668 0.04454613745808651 4.30861374767316e-06 6028794.219809321 583.1200445112332 290945 1649 580172 STX_20210114 508565090.36059463 13676.441450528155 0.5562085890730089 1.4882901109684697e-05 11826405.784876723 316.448237652475 48024 None 83877 NAS_20200330 11084530.492264802 1874.5635071185827 0.2435167689421103 4.1255252915960246e-05 4207813.5826373845 712.8643104499535 23555 4965 1138524 TFUEL_20191012 0.0 0.0 0.003712651665319792 4.4902244949906855e-07 1422885.5666941244 172.0892828384516 69820 4021 359269 NCASH_20191024 2399397.464117986 321.5060189169041 0.0008275449780533864 1.1084441984633698e-07 286713.3204599365 38.40343728911898 59183 58728 890063 APPC_20210731 7003518.731480339 167.8487314634198 0.06186933925375499 1.4801892705874553e-06 1134152.3817683787 27.133960164329277 24920 3126 900011 ERN_20210710 68704351.43223046 2019.8896332291047 6.072030394895497 0.00017871727247203588 4892453.730819037 143.9989475682891 80977 None 52714 BCPT_20190902 3441216.760274103 353.71233825281286 0.029656824358283165 3.045165448993186e-06 66859.27695628353 6.8651166986824075 10905 3114 1000589 TNB_20190312 8399433.75083928 2172.494024920948 0.0032156361378455397 8.316313933813088e-07 624372.5537458108 161.47592407907453 15075 1507 1537568 BNB_20210823 69395126714.92691 1406637.538889447 448.5460498577836 0.009101777012074767 1602226689.0749912 32511.9573595156 None 599904 153 WABI_20210527 15960350.295726322 408.1777915826329 0.27097520477948894 6.9168773738594875e-06 1166824.2626489238 29.784202389124 45219 7843 265814 LUN_20200129 2583351.7574596326 276.53957080103567 0.9493992706150296 0.00010160548962434313 3890057.572585926 416.3171560827399 30037 2159 2593780 MDT_20211204 40036672.24650664 745.6698906281194 0.06608004401722566 1.2296269548060279e-06 48385463.0896227 900.3636501855667 38382 360 615716 NEBL_20201101 5743084.894662571 416.2037360322701 0.33464726897752506 2.4252476068287555e-05 533155.4587407135 38.6387136619795 38501 5925 779472 RLC_20190922 16503060.046733297 1651.8307907554695 0.2357873905953443 2.3607903920917395e-05 88981.58805429991 8.909165058456022 None 3304 1199907 APPC_20200530 4040985.655098195 429.0260531225389 0.03675708808854542 3.921087786102069e-06 161927.60290627345 17.273738998558976 24546 3211 1178523 JUV_20210201 0.0 0.0 7.956014069259617 0.00023992937497779578 5087999.48694312 153.43871015844144 None None 93564 CMT_20200506 7141633.173872894 796.1698841061939 0.008393126617136577 9.32761491072421e-07 6739282.0312843155 748.9631746319264 284839 1632 895705 MTL_20200629 19443357.616233125 2131.984912074904 0.30208481140347715 3.310815324047626e-05 2313399.928505985 253.54601240504923 38352 None 365486 EGLD_20201201 132729332.46888322 6745.1600414258455 9.15450762358993 0.00046632203924110746 14112228.4820646 718.8636936665887 104562 2832 49767 ZEN_20191203 43016545.05294324 5885.89571582209 5.4471864681731725 0.000745572700748354 587094.2380399877 80.35734396220691 None 1912 48185 FTM_20191017 23788157.132893566 2970.962380317366 0.0112770711627657 1.4085494940446428e-06 4697174.268568964 586.695104068999 19126 2178 498287 CND_20191026 12785016.441453926 1479.1909940521932 0.007190033900680962 8.318670094418562e-07 266712.86302058486 30.857939587683486 35480 6063 332150 LEND_20190712 6727977.448404039 593.398101884135 0.006027161130347106 5.296620537009823e-07 1072191.8917120069 94.2233577374125 42000 5863 929610 VIB_20200208 4488471.282741133 458.2027424154814 0.02460533269528515 2.5098195269400774e-06 1048281.5669053816 106.92794033443883 31630 1114 None BQX_20190729 14757762.522381049 1548.0752075161965 0.12249682947514323 1.2849800531904236e-05 425378.9617417254 44.62184721245254 60646 5779 463128 FUN_20190601 39876388.34520638 4648.726970691376 0.006634408742634575 7.735864682019243e-07 1325102.984008352 154.50988583434554 36364 17668 466451 MIR_20211202 296609310.73531246 6213.759998811874 2.7084522304639616 4.736455489767807e-05 38698950.86188054 676.7549975456271 79055 None 15195 VIA_20190807 7519772.294250248 658.4906196955939 0.32051083307166844 2.7989073290359325e-05 767707.5806595365 67.04117778084422 40898 2229 1890047 PERL_20210203 0.0 0.0 0.04017967987831553 1.1305953995165147e-06 6769949.024019259 190.49612253502053 13911 517 461577 UMA_20210210 1615771884.1888528 34690.61179260659 28.878259588768323 0.0006200165740977024 107668435.11233784 2311.6425722129075 23093 None 180078 POLY_20190930 13038886.02528099 1617.9755620072267 0.025187969395219723 3.1282060397872595e-06 3905400.0045423205 485.0290108861673 35181 5067 289751 MTL_20211021 212621109.12261617 3207.546259013689 3.2901191946789776 4.965438877947586e-05 6365979.837387143 96.07519336051531 61626 4377 184218 OAX_20200430 1917947.611829248 219.68317982437395 0.03679702309619185 4.1970525135735785e-06 156022.37266363876 17.7958442358183 11862 None None RDN_20210420 65966088.327571884 1178.4776521871847 0.9869971303703046 1.7646919259469828e-05 1943880.6990030948 34.75542601879632 28797 4511 626244 MTH_20210902 12786979.78232805 262.9146259629332 0.037318707805413805 7.662508943510312e-07 8498015.524142105 174.4865344624339 21860 2053 1131339 ZEN_20190523 74527705.52883957 9724.805344334354 11.455336840976349 0.0014947584947341338 572318.0017774282 74.67935746646825 25722 1642 229804 SC_20210613 727809581.3781185 20292.28383485227 0.015053609086903738 4.2194987019389515e-07 63749339.14578437 1786.8821504679427 137748 46713 44919 QSP_20210125 22762626.429378938 706.929062743549 0.031933285032781394 9.906310122713717e-07 885775.847716002 27.47844525759419 58532 8169 193675 PSG_20210916 89779543.97783898 1862.9379880007214 30.89284636902366 0.0006410709913337785 67596726.44256528 1402.7292892928435 10253525 None 10612 NANO_20210511 1141373076.187901 20442.451766270733 8.584404301176727 0.00015353479452980063 103350121.44822502 1848.4497123473143 None 89749 59676 LTC_20190603 7122921372.967449 814917.4534430641 114.76391857866058 0.013124164967741709 4278356608.2216744 489264.0353565772 446144 203177 172197 XTZ_20200315 1117730030.927395 216241.00813767416 1.5833598056454286 0.0003056029387613638 187973217.33003208 36280.55191224828 57103 22448 104382 LTC_20200324 2511937005.942921 387764.58359370526 39.03582479150503 0.00602591160116805 3323889866.361073 513104.7342713999 133570 212479 131624 FOR_20210401 51790368.499426946 880.5325145767043 0.09287247642518551 1.580495291316131e-06 51056095.04847854 868.8679458452158 23340 None 123033 POWR_20191012 20120473.375740554 2433.950431351071 0.04699048308068 5.683210739409355e-06 856548.7993925043 103.59432413532927 83592 12982 329598 PERL_20210819 0.0 0.0 0.08372509307406589 1.8601439359255728e-06 4457771.646934859 99.03956618419497 501 688 3275203 MANA_20190329 86026891.11161296 21367.364955924164 0.06524892907901565 1.6206518592745648e-05 57474419.33043574 14275.487101987217 43743 6146 116780 DNT_20210727 99540079.01882711 2658.7701924243097 0.13216534487894815 3.5420066842622865e-06 16037116.021126052 429.7917294064141 70218 10251 228003 HC_20200309 65150458.60924119 8064.676263357158 1.466768081788518 0.00018233015169393345 27829852.34627912 3459.457062720877 12774 842 804824 BNT_20190213 32868095.534489162 9054.004010802966 0.5160445803720533 0.00014201621604583036 1715181.8827872102 472.0205387065314 854 5095 111486 TWT_20210203 112697799.99618241 3164.1093817572355 0.32467533583812447 9.141993058718051e-06 17425368.18802214 490.6519757938413 322568 6656 11832 ADX_20201111 27881799.79632126 1822.866523647804 0.2726380218557608 1.784905451287505e-05 2342447.3534481823 153.35524451302075 53051 3745 13140 NEO_20210114 1640963108.8447237 44144.7587269672 23.258378599636476 0.0006238473460982087 780129166.8404183 20924.997340735023 328785 101422 181319 DOGE_20210916 32473677223.432064 673638.4776753235 0.24733019054810937 5.1306518783697926e-06 898438545.7166989 18637.334172451447 2109779 2163412 32574 SUPER_20211125 494473806.2052734 8643.52625684966 1.7187163586024903 3.0050871819131968e-05 39400957.536057055 688.9054837587422 193176 None None FET_20200407 5324998.105524341 732.1268930612131 0.01565799613202785 2.1488593477527293e-06 2155577.5925126146 295.8254057811653 16624 364 974663 SAND_20200914 25389988.374855332 2459.8444719417016 0.04354381062212257 4.2164148009679235e-06 7655042.404292708 741.2496433901562 None None 106488 SKY_20200319 5053807.537132176 938.0098217780013 0.2972827963018927 5.5177048339882434e-05 128537.28316255966 23.8571083653809 16208 3830 253868 MDT_20200725 7586340.131005639 795.5606367085827 0.01252120938844595 1.3132140671195986e-06 8877670.46389836 931.0827233031721 14080 62 598192 RLC_20201106 48200855.272076555 3101.428787780761 0.6864521125590628 4.4058054433976306e-05 4409774.309627743 283.0293228333723 33502 3844 531109 NAV_20210427 44998901.83263006 834.764351423431 0.6281767448760015 1.1653163336431779e-05 1264407.8401874828 23.455741088406807 51147 13996 446539 XLM_20211028 8049911822.799792 137555.81906407524 0.33273884893279837 5.684734208707619e-06 890176689.9640685 15208.3770724797 660557 204368 33259 AXS_20210819 4018498812.238128 89199.9579108613 69.83477531314794 0.0015503527808691233 1622440012.2262924 36018.65078636253 388225 None 935 SUPER_20210617 117610677.65037812 3074.8317061458492 0.5745067245907194 1.5001455607427622e-05 4769235.943456746 124.53375778688024 123240 None 564935 FET_20211125 546467388.2150946 9558.217507579755 0.7919116800066439 1.3844864695762443e-05 46053940.44894278 805.1536431650617 87192 6776 68010 TRU_20210324 91276921.27147432 1673.3673143190965 0.3901679610814865 7.157476124206569e-06 7132139.054366308 130.8362553774288 22413 None 95086 GVT_20211028 14590312.28857242 249.38395620945622 3.2904471617944364 5.6220043653338045e-05 241648.39607413186 4.128765091197517 25806 5812 522762 FLM_20210218 0.0 0.0 0.5133909851833887 9.84629824872597e-06 44175191.926626876 847.2336434752682 15050 None 174277 PIVX_20210511 102814457.8805692 1840.0665398182005 1.5703587408991972 2.8104652149177434e-05 1790056.1974732787 32.03656938201176 67678 9726 218406 PIVX_20211111 49061685.05785974 756.8776339272972 0.7265212994549916 1.1185124526950933e-05 644663.2000143229 9.924882003476046 68486 10306 269232 NKN_20210204 22803226.45328223 608.4740728885724 0.03514016545953653 9.368384800010195e-07 4345192.627565675 115.84304180945519 14087 1026 338143 MKR_20220105 2202992100.0925994 47629.0604577024 2452.7132315190706 0.05331693548209509 72494688.10453348 1575.8852518075003 194383 32522 27561 LTC_20200612 2822237691.693257 303493.2448147091 43.46467886975068 0.004674034530768249 2448864752.801253 263342.0679369203 132401 213911 144329 FIRO_20210221 72425877.91071674 1287.9074839219047 6.263390333227869 0.00011137824652719433 9702033.873657335 172.52565513324902 68715 297 232997 WAN_20200629 21548345.024907835 2362.799027824916 0.20327717107998464 2.2281551500729e-05 872654.5371103049 95.65312675134241 103815 16124 676910 MINA_20210930 1000111029.0057529 24072.21951275765 3.995236453626164 9.607301894249881e-05 51449886.57950951 1237.2098586195837 135645 10549 69004 CVC_20190302 20652442.570642643 5401.8018840484 0.060324485433126455 1.57875134956351e-05 1144522.9340314309 299.53295311761804 88283 8208 405899 FIL_20210114 967935922.4576999 25978.70742033112 21.719502249805913 0.0005811120391650959 85333698.6427731 2283.1296526717038 44872 None 31509 LOOM_20210602 63559371.59796444 1732.2382952829087 0.07619304230226519 2.0775513502550685e-06 6892096.22696073 187.9263957673001 33016 None 242233 AST_20201018 23843190.574629318 2099.000691359021 0.13970054132039544 1.22925159493294e-05 16165550.288254268 1422.4374713932539 33888 3466 168306 HOT_20210104 135754850.49668428 4058.0248281170093 0.0007546955871864479 2.29264722051042e-08 45704945.818199925 1388.444808380576 26880 7404 750555 STORJ_20190224 32750484.246529307 7959.243532168556 0.24118935123952162 5.861546258158087e-05 5644140.271601264 1371.6770296657553 82878 7618 236494 LOOM_20190712 33205169.121223405 2931.7576314850644 0.04805244011327054 4.23815730251589e-06 2684851.533075023 236.8001105511066 20593 None 438184 TFUEL_20210202 0.0 0.0 0.029379303817964497 8.796603189074373e-07 4772265.816610299 142.88877967161196 82135 5209 46280 DNT_20210212 159381032.41435546 3342.4729710898855 0.21199625057685473 4.440067906232891e-06 32743032.684664745 685.7729237206939 62697 7837 232543 CAKE_20210519 4553887781.795984 106726.95120061695 27.02216108123754 0.0006316411219140646 379952807.6575251 8881.370256867956 739321 None 978 MITH_20190708 18951184.794619996 1657.156395263631 0.043784966134991325 3.828252407882273e-06 6316024.183875581 552.2291536236025 75 2075 608806 XVG_20190220 100022314.84424174 25556.831403582888 0.006356233522426746 1.6237063184193646e-06 1559442.4287579716 398.36115458181547 304375 53446 414559 RDN_20190207 10085802.228033088 2960.228847625581 0.20075695258515622 5.893377393250487e-05 509018.62384652096 149.42639903084307 24883 4455 699735 HBAR_20200404 130442288.60237285 19396.15309418257 0.03371563255801794 5.011129958943347e-06 11194226.201110892 1663.789703101246 38327 6384 106388 KEY_20191011 3804646.385833008 444.4500763711647 0.0014552484833451514 1.699987946238961e-07 151739.68985362 17.7258830137541 23669 2801 473626 XTZ_20191020 697817270.07495 87822.60482302001 0.8604950971745615 0.00010824400446596705 12637001.049916897 1589.6425239087034 44911 16914 211690 AST_20200612 9748917.142251315 1050.703731996174 0.056515603085190116 6.077705746357966e-06 4175760.3299265243 449.0625803701038 31906 3453 366039 QLC_20210825 9708686.234473541 201.63946242591354 0.04042779500860237 8.401644402647325e-07 1079836.0320086405 22.44099227319183 35156 5705 940522 SNT_20190813 71546175.57181454 6285.981086209976 0.02020361880071703 1.775205798684042e-06 20641341.359088212 1813.6666126352418 111566 5720 278039 KLAY_20211007 3775167873.5585766 68014.17596273254 1.499428919689718 2.7029011062999622e-05 89073172.10241608 1605.6511399492538 45567 802 56405 AKRO_20210509 136819958.10331467 2333.076870511702 0.050589936159206664 8.615305700823118e-07 27247143.15176062 464.0102074605741 None None 159597 SC_20191011 82925792.23567058 9684.792985472977 0.001966266121672102 2.2963760525343306e-07 14770006.603679495 1724.9694274150575 108511 30515 221641 PERL_20200117 5665595.915904742 650.9173510730247 0.021662836958237796 2.4861131256768495e-06 883434.0106256346 101.38639245265294 10845 393 1152093 AION_20190411 64110174.009454735 12079.444260941782 0.21282308384389972 4.009774589632011e-05 3915787.888723306 737.7689718145465 68516 72496 263529 NXS_20190621 22146976.940735936 2318.6460803942477 0.3709221415197305 3.883316318374172e-05 650735.8639363941 68.12786071551068 21337 3515 925188 BNT_20190325 39202494.97943039 9816.665195905493 0.6030018453193687 0.00015111287788188607 2936650.2846140694 735.92755857266 None 5136 160609 KMD_20190507 120823935.95504966 21121.547711163224 1.0679070452594812 0.0001867516623683488 3295840.1649905816 576.3644246422293 96961 8362 329492 QKC_20200520 10705597.38725064 1097.7882733232686 0.003010692546381377 3.0840152278971756e-07 2558352.8692662204 262.06592289321054 49483 9189 750672 GTO_20211028 27244310.00307645 465.5579956805682 0.04110793364489522 7.019245435747113e-07 6576039.192337666 112.28692126645556 13204 None 1200639 ADX_20201226 30586878.194970213 1239.2197747183657 0.2843747703845849 1.1527827780968123e-05 3271757.5260265535 132.62870419240582 52867 3746 13863 BNT_20210508 1486832727.8160572 25948.058552576764 7.648061222219849 0.00013345164750073774 210282980.97580993 3669.244980813969 115384 7132 28535 DCR_20190902 246241258.1291404 25316.655700405034 23.852729654471265 0.002452356476591716 8487668.887862837 872.6376423091955 40602 9594 193164 QKC_20200129 9304170.681355096 995.5296810274946 0.0024860416393134295 2.6587552183082084e-07 858584.5648360492 91.8233289425981 50886 9207 299608 FET_20210401 498773703.81687886 8479.76164128546 0.7257159872682637 1.2350168153794193e-05 109634178.93393369 1865.744408269086 42789 1816 141764 ZRX_20190401 190961510.01430464 46534.49026675323 0.32489081058523106 7.91734870063361e-05 26096627.047975294 6359.5549494621355 148736 15764 212447 LRC_20210310 774829799.369632 14176.965641870054 0.6204239175125299 1.134221431453568e-05 117431011.86358662 2146.802639507659 64027 9440 117202 ZEC_20190325 352762801.1683911 88333.7161088949 57.26495436641606 0.014340506492817618 147661994.80487326 36978.07531098909 74072 15064 171176 REN_20200422 48017765.20862645 7011.665088841689 0.05485669404820944 8.013589216716621e-06 1599105.1930927048 233.6008823371944 11752 876 420454 RDN_20210620 27664458.55846795 776.0142510912219 0.4137861551740167 1.16172398793393e-05 1261443.5405882285 35.41561751647689 29799 4671 827519 CND_20190405 33182271.353386343 6776.673680416574 0.01920006198623182 3.9225600695485904e-06 469530.0597419825 95.92468321807362 36851 6200 621680 SUSD_20210114 215154717.72434425 5777.740150397819 0.994394767147221 2.6672131670796514e-05 52210179.81509313 1400.4063945138976 56128 3149 45504 MITH_20200414 2337559.9134777966 341.003181896107 0.003777389072126981 5.516516933593703e-07 2420486.4892252698 353.48899598069016 96 2093 1121889 KMD_20190524 134105234.05457856 17023.31772134204 1.1786596575824464 0.00014985528320630556 8135551.444566801 1034.357422791275 96945 8366 351516 UNFI_20210722 25219236.868288416 783.6696330199071 6.083860901490132 0.00018838182947503236 16068468.027196448 497.54710911995375 None None 243649 BAT_20211225 1975392204.838955 38850.44816270493 1.3205223010138518 2.5979591771640157e-05 268912752.874533 5290.515379031858 246200 85683 23993 ONT_20191203 393808284.3538562 53865.060434082414 0.6170235261375615 8.44538551223742e-05 66937963.29651217 9161.999202555693 81164 16289 324525 ONE_20210428 1325421280.857843 24059.231299358715 0.14125012032015757 2.564353019633592e-06 219258751.6325264 3980.5760204348803 136365 16999 31277 BCD_20211216 242162868.87859747 4963.737940326333 1.2860384472566342 2.6315649038115422e-05 1493092.4565824617 30.55250576116006 35935 None 1761338 REN_20190123 14157851.205355482 3963.205230719025 0.018817760019413994 5.267652827933807e-06 349838.3615845243 97.93020172535054 5477 796 744296 MTH_20190714 6562232.473469444 576.309990310773 0.019215792527394682 1.6873676491035165e-06 290142.28859374044 25.477830836900257 19537 2005 1459879 TVK_20211011 84543437.89968131 1545.1601549683817 0.19451231111708348 3.5537927780957507e-06 7523929.726856643 137.46424055446178 None None 78551 WBTC_20210105 3411655444.857471 109046.32564688075 31366.05014118239 1.0025492237521823 466980161.3961716 14926.029774488918 None None 159793 YOYO_20211125 5055746.066654893 88.44050841027196 0.028515234599950284 4.985272660720488e-07 1004202.472552793 17.55631052130318 12346 None 1060628 SKL_20210814 378980561.0714001 7945.138192320249 0.3127580457759713 6.555078391381331e-06 32981985.742241904 691.2675947549591 None 2369 190534 GAS_20200625 23303774.3736339 2504.7498775993076 1.669889569685395 0.00017963154942251077 8970123.77415936 964.9244245339626 319603 99685 217061 APPC_20200207 3790272.4415252367 389.16976929169414 0.03468491632509489 3.5618301224987653e-06 108244.06145886498 11.115695222445895 24914 3244 836985 DGB_20210212 751196243.847856 15708.315283401718 0.05355059306381004 1.119800060701374e-06 71983065.0340957 1505.242724363514 185935 26231 203281 ADX_20191118 7563711.868613236 889.2065261784386 0.08208317368673985 9.645958770686595e-06 310221.7379189301 36.45553600494066 53153 3822 265958 ZEN_20210127 351343234.16327703 10780.923406434486 32.78818314827245 0.0010066451249671007 79597865.42664361 2443.7707581165523 84216 6438 413746 BTG_20200404 129112875.82134143 19199.822487227215 7.381146723491465 0.0010969382539804755 31954671.668618158 4748.896487199589 74660 None 202519 NMR_20210826 256092905.63151348 5224.5776724399275 44.30479581180675 0.0009041027851129586 19767317.689453367 403.380416268273 None 3569 773013 MTL_20210722 91205170.48197563 2834.2108483450634 1.4161859737377027 4.385151673056398e-05 10288421.694321845 318.5760235069335 57250 4218 206234 DYDX_20220115 568354023.0745841 13188.423780584659 7.684897858467424 0.0001781777945883956 121985917.7303127 2828.2980714024957 None 2642 15962 NULS_20201031 19025049.47705605 1400.810771330079 0.19438799266952259 1.4323091078390943e-05 5687431.595480904 419.0670402296066 29668 5145 360883 EVX_20201129 6041792.950923772 341.3107992168389 0.2773386034560391 1.5656196716570453e-05 324889.63413004065 18.340526561138407 16652 2807 1331525 LSK_20190622 280719001.44149345 27731.459003860047 2.0975685566940117 0.00020723341601637857 7132366.388620211 704.6561821672962 182857 30475 183148 MDA_20210902 17804547.34811131 366.4559360916438 0.910176987306022 1.8706660242700244e-05 922040.8455709618 18.950495418523207 None 390 709438 GRS_20190725 19705580.575610336 2004.6200072208574 0.2678909560057276 2.7319413573568286e-05 759995.4475622184 77.50403468468514 38590 107011 None ZEC_20210324 1496110659.58913 27455.42480424526 136.9693777145725 0.0025117043456242744 1093036974.54243 20043.792011724552 73722 18136 96017 PIVX_20190818 18997403.68493464 1859.6303565712021 0.3124655548217913 3.0569192362648154e-05 218504.87829059814 21.376812751254615 63235 8602 276830 YOYO_20210703 1913474.112699276 56.62308081128208 0.010987166991152389 3.2450756905418333e-07 125608.27251625956 3.7098585286061603 10091 None 1096916 ENJ_20220115 2251255502.5707893 52239.46765725705 2.4164699235978704 5.60260431765119e-05 153678094.4163392 3563.038574978223 472328 44393 14129 ARPA_20201018 16599038.918614503 1460.8135375010907 0.018861641941144945 1.6598195026239111e-06 5247809.618078759 461.805858542118 21083 None 396166 WRX_20201208 18756647.17399443 976.8182508769494 0.07885865469135284 4.107259782258048e-06 766628.1967634744 39.92892311992357 44437 None 8278 AUTO_20210610 29838683.442859914 796.5739232009249 1172.1554296443676 0.03122850493951491 3597863.185992058 95.85408678227994 66654 None 10120 DGB_20201129 317853284.73267514 17956.053695818813 0.02287177186808839 1.291147193939317e-06 9496837.382209621 536.1112819792565 178037 23440 238709 ATA_20210724 65876731.61826227 1970.8239032028307 0.3843872006340796 1.1491762180733802e-05 13368098.899782598 399.65694256056526 67476 None 91785 FUN_20200725 29124127.301846445 3054.1748537139974 0.0047804238625014095 5.01282781009907e-07 7056407.409135002 739.946003059904 34187 16744 237156 BTG_20210509 2301980884.1913643 39253.764083244794 131.01973776760934 0.0022314630770784603 72571366.2737344 1235.999453610647 96081 None 155846 REQ_20190723 10257006.584498057 992.0833118589492 0.014052300864658251 1.359233142193061e-06 173934.80529690586 16.82414532804705 41536 29699 592890 ZIL_20190816 70763883.67986292 6870.593752986678 0.007722484805972106 7.493754421136048e-07 15605983.218887115 1514.3753426652286 65941 10610 159234 BEAM_20191020 21467313.379636336 2700.572439988891 0.5224795739944713 6.572411804150143e-05 29981811.971762367 3771.493178317171 11765 1382 211289 NANO_20191026 108575235.44639258 12561.854041005548 0.8148339873359169 9.427403564432645e-05 3039296.5779731264 351.63819671085554 98204 47931 267335 XVG_20190929 52416656.848889634 6398.3311471445595 0.0032829765296671356 4.0076963211500664e-07 1513247.7923860492 184.72984974854293 301855 52641 284381 BAT_20200310 280316589.38341415 35405.851878558344 0.1945041282148788 2.457597441383758e-05 76701784.35386443 9691.419442233015 111402 35567 21544 GRS_20210324 68642485.07233766 1259.1612236223905 0.958913349738327 1.7564400075358123e-05 25460012.49170881 466.3506305861947 38975 106769 5192531 VITE_20200725 10307259.009724738 1080.5463852332418 0.01965828704747834 2.0608894244663135e-06 7600465.051059572 796.7997418556237 None None 536085 RVN_20210120 142996410.45834637 3949.0669754426804 0.01792779603058125 4.974155922227202e-07 20534341.371833805 569.7354854412106 35274 11034 190837 SXP_20210731 177150573.78061146 4244.143414388071 2.0512894690693035 4.9095346213580215e-05 117199300.59422033 2805.0357228584326 None None 80064 ZEN_20200310 76448310.56192502 9666.436905068382 8.926641939285672 0.0011263648197325535 1946487.532346972 245.60804537647945 57463 5066 41227 IRIS_20210219 140667950.0922637 2721.506952392329 0.14766368300318006 2.855831722645232e-06 25358168.172999345 490.4297361665063 14348 None 757978 ZEN_20210828 981646581.098215 20012.635456479256 85.92243363163018 0.0017519075545129902 66253321.53089426 1350.8660031578024 119064 7539 1506863 UNFI_20210115 13587038.837384336 347.88069258841284 5.570297543303029 0.0001420081618121995 6743784.556271011 171.9248282607311 13420 None 133722 XTZ_20210201 2147668478.160957 64974.63930755617 2.833799114228397 8.56638834838632e-05 230466175.49587446 6966.84091173689 82196 33481 140734 DUSK_20200425 5265179.03084827 702.3212401171944 0.019689845018218514 2.6269715156454803e-06 797527.4687850563 106.40418659997863 17494 13332 1548362 PYR_20211207 532888172.723465 10559.75945541817 28.00876027108745 0.0005545501197193615 125847260.43037872 2491.6709151908 51988 None 52488 COS_20200127 11357718.732033053 1322.7558552764158 0.008681311064337787 1.0104682713559248e-06 4485380.182326509 522.0794791961897 9754 None 199274 DGD_20190922 30429407.389094558 3045.808313008796 15.194789180022708 0.0015215435518924354 1335967.52483977 133.77828075628562 17293 3371 538258 BNT_20190905 22272070.74375812 2109.1603143658053 0.3304728231188797 3.128653217825337e-05 4279578.236955546 405.1563482776846 None 5117 161703 ETH_20200109 15364547561.67077 1909114.496506297 140.27393527388705 0.017481175451771008 10095847759.294762 1258161.6511293189 448930 449300 21447 NEO_20200117 790535244.8015782 90841.88572338324 11.258859656030666 0.0012921114083521376 550409731.0883758 63167.20472009636 323251 98693 204331 MITH_20190909 9710849.191005807 934.6546548864175 0.01818764926539321 1.7498933587865734e-06 1589955.8392368695 152.97486350468057 84 2081 697406 POLY_20190929 13397628.705414224 1635.63711660121 0.025915497124792727 3.1638695118751146e-06 4127257.4606045783 503.8724121087208 35181 5067 289751 NULS_20210729 35381063.164200455 884.8141312773038 0.37706382939248806 9.420590163333828e-06 9321828.08560376 232.89723150856352 57534 5366 334900 SFP_20211111 162269385.54203728 2502.254371224394 1.5028739509611206 2.3142330463714125e-05 24686319.68889046 380.13764747724673 412972 None 29425 PIVX_20200629 25545818.224020038 2799.001036146563 0.4023290127448433 4.4082335264007355e-05 539382.0064577233 59.09894064518243 63719 8488 395833 DNT_20200324 2820899.708474809 435.3340702743038 0.0037550827501021595 5.795014451976566e-07 59830.02543646202 9.233241585874248 58863 6085 656002 CND_20190410 32521689.996152025 6289.501836035943 0.01872193127235217 3.6186503527278064e-06 455010.1878448686 87.94620345450691 36839 6196 621680 CVC_20200217 24007732.512423012 2408.3284566685516 0.035679587555443266 3.5864518347351143e-06 16351219.815160252 1643.5969786677679 None 8091 120378 COS_20190920 26932989.963220432 2630.4698083773096 0.020450398690782745 1.995162164020311e-06 2276829.423621754 222.1298463968687 9325 None 303115 ROSE_20210127 93709520.66303985 2877.3523030707556 0.061817643693615684 1.897891974670459e-06 6955930.068892599 213.55721546991953 9492 655 196498 FUEL_20200410 1948360.405015652 267.2677872099634 0.0019685914620630545 2.69989164309152e-07 108085.20552826504 14.823712729190182 1 1467 None VET_20190224 267638019.40635952 65077.52724965906 0.0048583031097362735 1.1801682367084384e-06 13509933.280297719 3281.803085835685 104413 54718 740363 BQX_20200807 46052337.943896584 3914.4076499933794 0.20671279015554975 1.7556799004882815e-05 2517419.0677401344 213.8127038492127 13790 54 263713 PIVX_20210207 36363889.397706896 924.765287165679 0.5647746797885772 1.4362272567245439e-05 1045551.1320147606 26.588462405236402 65175 8866 328598 MDA_20201208 10094793.84589947 525.5791270814874 0.5159784935515693 2.6875670291813583e-05 556922.300731449 29.00830232204385 None 371 4532963 KEY_20211104 32730698.456296913 519.0563312674539 0.011717113563819236 1.8581461032983483e-07 8559492.462150723 135.73980893953825 None 4063 265197 MDA_20211221 10829561.13677123 229.737943820423 0.5517154683837021 1.1704073293424617e-05 349828.469034336 7.421249314795074 None 390 979272 MTL_20200430 20892752.79269512 2393.0718130545347 0.32314655364474537 3.68579559189308e-05 19370945.496123817 2209.441651632334 35453 None 490866 DOCK_20201129 6501216.396240312 367.312795861795 0.011565655005982731 6.533417995427834e-07 3197972.7975830697 180.65291601565104 None 14887 275585 IOTX_20200109 15643833.383518172 1943.970776288612 0.0036095683394745245 4.4983052143157703e-07 1607265.0498410303 200.3000933773685 22157 1788 479977 GRS_20190201 13726711.109806271 4000.5362318139432 0.19108773936817308 5.569093854183874e-05 312174.4489068386 90.9806568746229 36362 107021 15185409 VIBE_20200520 1917434.0632297434 196.49534275942338 0.01024644109080637 1.0500376481321527e-06 243265.989674722 24.9294799438 18993 None 1044807 FUN_20200629 22949763.064248018 2517.142528980113 0.0038841090670432782 4.2574370625081323e-07 723234.2190049466 79.27491519206286 34156 16785 229791 DEGO_20210723 29257274.465431876 904.6530973308152 5.400827066573644 0.0001668234339830194 11965153.744538506 369.585622941456 None None 198268 WABI_20190130 5975800.872484599 1750.0777177283826 0.11384198424004048 3.334845998091422e-05 180922.2447968843 52.9987094000771 34842 8141 2131990 BEL_20201018 14900893.662589047 1311.3461406800682 0.9314384131830628 8.196633402958498e-05 1794513.8783886016 157.91674671658348 10053 None 207731 NANO_20200410 77887418.91464178 10682.022720386816 0.5845284687303813 8.01663024747771e-05 3229221.974591691 442.8779767315707 97404 50315 296838 EGLD_20211021 4802297506.195385 72451.93675117036 240.85933082251336 0.0036350281459661027 103811020.6909043 1566.7069271689381 None 11537 31177 FTT_20211104 7490135113.616501 118976.75509746045 62.51049936100358 0.0009919377989604488 336989079.71075267 5347.45697793166 295134 None 944 AION_20200330 21653774.831770282 3661.9270501050237 0.053889688354299844 9.129690461470573e-06 1167050.7428058106 197.71522827513644 534 72551 244642 NAS_20190401 43068038.96520446 10495.042900971655 0.9466882226518861 0.00023070091628682012 2572772.5413046246 626.965635015408 23907 5166 612650 WTC_20191113 20900088.103713054 2375.64381888422 0.7166036980018586 8.142784631533635e-05 2834605.391469862 322.09687561594626 55476 19712 533151 IDEX_20210731 26334822.47273018 631.1493857356761 0.04463594944785508 1.0685760299636385e-06 2865711.8055085745 68.60458849940368 53195 1975 8005888 OAX_20211207 12743328.17132064 252.422369854509 0.22102793928713552 4.378165224095873e-06 323037.56331060175 6.398792072733506 None None 1497869 CLV_20210809 130282431.36107296 2961.6568851047114 1.0149632554649086 2.3077777282033303e-05 14709205.547281748 334.4512895300113 61400 None 108852 OXT_20210104 0.0 0.0 0.23029773029369607 6.996166424984947e-06 12333019.390147232 374.6622082032661 54309 1813 172682 ADA_20200317 760151209.7313702 150600.6836795972 0.024346526372750345 4.83961233935443e-06 136720716.22836453 27177.399156404634 155630 77134 42201 XZC_20210114 47796482.485083856 1285.8084230712566 4.184816235263783 0.0001119435536794053 5460102.70544891 146.05738124220372 67215 103 582569 BEAM_20200927 20991501.694227282 1954.9648791707473 0.2946721399683222 2.7449784119777884e-05 4401166.812296831 409.9847338322055 15969 1562 276086 CTK_20210202 34211143.872151375 1024.6004628504506 0.9765152884836601 2.9238328974979748e-05 7773744.176347861 232.75753311382485 None None 214497 KEY_20190805 5156384.582796873 470.90510810370046 0.0019724473718099604 1.8011706339834796e-07 48635.81440101757 4.441254145026883 23870 2830 851050 RDN_20200421 4444495.437192399 649.0445281597952 0.08776149829586422 1.2818118005399045e-05 587183.4245745476 85.76182691910095 25017 4317 1251833 AION_20200107 23142668.302446235 2980.275607760908 0.06090006571839783 7.854506154175642e-06 3765345.756521054 485.63053370005167 1150 72541 317810 BCD_20210201 125346448.06440245 3792.1775796801967 0.6622690197207025 1.9972035064982308e-05 2860803.963358639 86.27321431151194 28140 None 1670747 ARDR_20201231 73031403.5052457 2529.0474244910165 0.07354705490159437 2.5503336843304802e-06 12298002.365734866 426.44820686939096 64268 6292 None ADA_20190507 2069938543.688164 361836.7461087821 0.06645168351622693 1.161659229837767e-05 154332100.8992162 26979.197513641484 151107 72933 116208 MTL_20190914 16580552.476867748 1601.150320672159 0.3285514259560936 3.173908127848347e-05 1852608.8291183477 178.9677279089976 34378 None 253517 CTSI_20201226 8967646.045556115 363.13449653509207 0.045388685207790644 1.8407179616980067e-06 2075054.0238989075 84.15289396020748 None 167 590727 SC_20210731 681172154.7814721 16325.205439138947 0.014018494176484337 3.356000497015495e-07 71279066.04057062 1706.4071079776047 139252 47555 84713 CELR_20200207 14764565.366757862 1515.9655634572512 0.004093587388356671 4.2037474538696187e-07 3880609.531475607 398.5038278113194 18989 None 1104525 MKR_20210708 2563925757.7942705 75455.98761887097 2848.203268875313 0.08384208406674079 155649381.98644733 4581.824869050545 165360 28753 29892 VET_20211230 5530270927.445656 119239.8361523457 0.08315435348331289 1.786884150547719e-06 327989223.98385257 7048.082527691157 534612 219807 35068 IRIS_20210711 79912885.05106993 2370.415264301597 0.07639526848436766 2.2655410671091717e-06 3261866.9720787047 96.73234648299594 26158 None 777699 XZC_20190531 55353103.897468105 6659.689562590603 7.0334982493552625 0.0008464651595836628 3218942.9585588933 387.39230017680427 60275 3978 387624 BCH_20200801 5559662054.174176 490545.1435641944 300.80907081317645 0.026554223649654908 1828009949.6600914 161369.41916627268 3548 304341 162707 AVA_20201129 34080320.47319432 1925.2532340575258 0.8869273666162844 5.006843314279327e-05 1102835.0865643024 62.256760674586666 None 9007 100722 OM_20210725 37925220.20560872 1110.0404463753134 0.11834666554172972 3.463857174327217e-06 9784415.540846363 286.3774641441752 46440 None 86802 PIVX_20200313 11318999.812906092 2355.5768075570577 0.18319651641952106 3.822907445390135e-05 4890196.676582767 1020.476243201002 63962 8513 213646 VIBE_20190830 2931807.322359377 308.6607585631889 0.015667079037674694 1.649430528178938e-06 205152.52145499559 21.598463313234 20341 None 1220128 XEM_20210809 1585099736.1563523 36031.32657217472 0.17609638803496605 4.00325032900113e-06 90698095.02547699 2061.8661336677796 372171 21760 110067 HBAR_20200229 118651944.30562295 13575.508844594213 0.035514949915287655 4.076045661848233e-06 10122044.042088838 1161.7055297896734 37344 6305 142339 WAVES_20210711 1428466654.281419 42362.88802226265 14.271788387540182 0.0004234255748451236 119685397.44091442 3550.9115491251246 194257 59123 98898 DOT_20210219 30015246212.949078 580756.6053673573 31.16279213534729 0.0006028612584514546 1446625690.0175753 27985.76521013912 182440 14642 20426 GO_20201129 7955825.188665848 449.437621518927 0.007665998317089471 4.327575612829362e-07 262000.27316600704 14.790324049253377 None 678 694072 BQX_20210430 944549690.0556138 17625.66810243283 4.222035835744178 7.876639320879811e-05 8690630.826233955 162.1325994195381 None 4666 20896 IOST_20190314 99845843.62231365 25823.998948839493 0.007401917960941175 1.9147114285880467e-06 5893185.172826226 1524.4358368653463 195079 48491 87686 FIO_20210428 76721805.5313634 1392.54226914644 0.3286818459756648 5.967119053180422e-06 19086417.043531306 346.5081025674765 74362 411 172858 BNT_20190922 31724926.437129427 3176.8033555964075 0.40708048819364623 4.075916073446184e-05 3368993.7626479715 337.322377927008 775 5108 171453 BAND_20210221 386942114.6353048 6925.314459947118 17.296499666960653 0.00030854496982226336 497545098.3310933 8875.497372628688 62224 4061 238789 TWT_20211021 390575355.18360734 5892.583892151996 1.1213317944632455 1.6984251387001797e-05 23691062.04582261 358.83665780110647 None 49227 4876 CTK_20210428 122039067.01875226 2215.270105714424 2.7506664692127076 4.993751403781182e-05 29824556.986647792 541.4557707603593 None None 202878 LOOM_20200502 13677277.45778972 1543.51533346864 0.0163498704397668 1.8503881834236407e-06 29934631.448134042 3387.836528174898 21546 None 679893 ONT_20210324 1082111286.2599204 19838.19821768073 1.3439012350356332 2.461621684626161e-05 704681244.6921918 12907.634783427064 111072 17706 190882 LPT_20210806 395222140.1847349 9646.285281913368 16.486085197961117 0.00040292615167186806 14141554.2799556 345.6249301311407 14825 1260 108437 DREP_20210624 0.0 0.0 0.39630308699628297 1.1759214892694363e-05 1870573.2653990972 55.50416769921174 4072 None 173575 HOT_20190902 142064868.52560377 14588.837187288638 0.0007985548158224795 8.199568183336353e-08 6321365.593139694 649.0783997008394 24257 6653 436903 XMR_20210527 4802560659.6986065 122503.43936213982 268.0247025017599 0.006836758599638481 328048784.8868947 8367.849419259052 418394 221939 33793 DENT_20190522 87246895.64755899 10963.514361285414 0.0012604341891757948 1.5839765999359558e-07 5034226.259409836 632.6468023612248 45135 9340 250313 STEEM_20210202 71081185.94557111 2129.1262291588605 0.19058784622681507 5.706006050186172e-06 5156890.58791133 154.39205320444057 12155 3824 197343 DGD_20190515 70932789.05820364 8874.056161718148 35.466412262307955 0.004437030299374224 5686047.367905346 711.3537244331153 16963 3354 465743 FXS_20210519 47900088.97009249 1119.12871617993 4.007156488295607 9.366700214475754e-05 4749660.643627016 111.0229847506427 None None 139440 SKL_20211111 811567865.6214653 12496.434592732357 0.3414875391209991 5.257188881939855e-06 79522313.79734033 1224.2432770391006 79283 2982 155813 YOYO_20211002 3095432.396226631 64.28249412587763 0.017504046979539046 3.6344801823218835e-07 330397.0849098653 6.860251568140206 12137 None 1593198 BCD_20211111 389740675.59109426 6012.618374342989 2.0851840607279173 3.210831385057197e-05 6944219.125578749 106.92924971495862 35702 None 744535 ALGO_20190909 127226346.77003321 12245.344860565028 0.3767353942425588 3.624841212441037e-05 53622324.020896085 5159.388074184121 11958 606 192636 WAVES_20210722 1275515763.502487 39636.79465813085 12.831257922277745 0.00039730951792021424 95335279.82196014 2951.9797900008116 194612 59166 108854 LIT_20210613 70228121.39636962 1958.097474535465 3.147561580664289 8.822556721922675e-05 7138077.862710299 200.07899834630447 None None 185177 ICX_20210428 1413484184.4167535 25657.409618367958 2.3005840596885245 4.177256614292324e-05 191766372.55818433 3481.9738265767887 136193 31419 432969 BTS_20191118 71086343.63351084 8363.270066981231 0.026383003284419556 3.1015183590814097e-06 14778194.5590444 1737.2867389218309 13506 7107 169087 IOTX_20190513 22707858.02133434 3266.5717858350245 0.00899882150728 1.293206013340202e-06 477787.7062026752 68.66209472667741 18610 1719 727084 VIDT_20211221 33991422.05018828 720.4827072821314 0.7309842476201105 1.5505626668427997e-05 3978909.378128532 84.40056480783552 38117 1865 290376 SNX_20210210 3570318027.9916205 76654.70472484444 24.72834063380009 0.0005309412829661652 599585639.2456654 12873.680982623244 76683 4357 30058 VOXEL_20220105 122460635.39494634 2644.117369651191 3.2870566998668305 7.150369052065895e-05 39374645.2623842 856.5208045593836 None None 50305 ALGO_20210420 3734380545.199909 66714.33957743479 1.302786542531701 2.32801211997849e-05 631069623.6478758 11276.887536369146 83965 22112 138222 WTC_20190909 31007962.20423591 2985.2248604857946 1.0632160325328324 0.00010229963394338505 3549489.8545481623 341.52185604370396 55871 19908 440674 ONE_20210523 855153402.7773694 22752.268753855366 0.08983276795622451 2.3920433585930544e-06 107758621.92040129 2869.3682913282137 None 22345 22523 XVS_20211221 171552545.3917002 3636.2304043195604 14.905876081377162 0.00031616620717814795 8045116.073952478 170.6436992715495 None None 24385 DCR_20190826 252082050.58571273 24970.05304508451 24.510790550931496 0.002426666779561199 10799356.837292286 1069.179732217505 40563 9578 278378 KMD_20200718 79401113.05829078 8674.789372143627 0.6569091664476048 7.176376469477884e-05 2865501.866586237 313.0405422688619 100746 8378 296104 AMP_20211230 2365054061.3541183 50993.77005195878 0.049359041897156175 1.059759075937382e-06 21475688.464079052 461.0919273763856 None 42640 76901 STORM_20200330 7420798.64760677 1254.9508578607667 0.0009857747955761874 1.6700446826042794e-07 388576.87728301936 65.83052747967399 None 2518 875750 DOT_20210727 14197666149.040764 379010.0961651675 13.94463912061858 0.0003736217495396335 1406472419.6280398 37683.92150957 None 27759 21430 REN_20190507 19727989.792479414 3445.2450109179017 0.025567626383952997 4.4695244933797596e-06 260511.80884851693 45.540555582973546 6289 779 1306046 RVN_20191015 168021872.19409364 20130.41224525624 0.03626262166569389 4.34433363358593e-06 21475693.677588336 2572.8304811562903 28204 7085 266417 BQX_20200301 6813718.81946029 794.533517459814 0.048339775907334 5.651852496883938e-06 3253303.428543308 380.37394176136235 10576 8 317687 DNT_20191024 4425684.309889723 593.0336634095388 0.005891314924646293 7.894036881901244e-07 289033.72714859445 38.728924381196144 59878 6228 368992 SYS_20190324 32098388.33832434 8014.844641022719 0.058326777854348755 1.4563973056425865e-05 187198.132495165 46.742656772176716 62512 4616 853485 MDA_20210304 18921468.819045562 372.3094676723106 0.9615542685867889 1.897742299568323e-05 1404830.0248291404 27.72599996607728 None 370 1160920 WABI_20200418 4477700.192282358 631.2820575247546 0.07519065301815232 1.0679448819913979e-05 1096695.8318807757 155.76546468822696 36639 7728 1879614 BAL_20210203 353762683.5755707 9933.546473635293 32.601457089657444 0.0009176861156119676 236538273.25197482 6658.226611688165 41407 None 75993 NAV_20210804 28176334.05514628 733.3167445818412 0.39500207036315643 1.0284081740375324e-05 176385.6015115081 4.592289711549864 53045 14120 873726 LOOM_20211225 77590634.56734987 1525.9911013043402 0.09302053238466435 1.829667754354059e-06 1877761.8516189642 36.93464466593191 39583 None 400372 SRM_20211007 1087209174.083383 19587.376919665596 8.157739897387243 0.00014705494832476356 210623687.79563323 3796.7937093309474 148273 None 19134 MDA_20200913 5946430.596697417 570.2654034599868 0.30367026862533764 2.9081776068177984e-05 106814.2362304338 10.229344192992071 None 373 1669605 ORN_20210626 148118146.20651907 4658.42540055126 5.095827341497603 0.000160301432932185 7167004.163077877 225.45525195025084 73376 None 59739 BEAM_20200502 20768577.256308362 2350.0601218344113 0.3429714715217318 3.88088751594347e-05 31291748.383241426 3540.812158916579 14982 1481 417545 MFT_20190914 9589547.112687401 926.3161092335821 0.0010638035757655074 1.027293534908136e-07 168825.83260851202 16.303168208417198 18768 2232 866690 TNT_20200315 10241510.360875798 1980.405612867107 0.023963264816967512 4.625129502638142e-06 259594.12125265427 50.10404208640775 17714 2564 1226899 BNT_20190421 46180802.120130464 8696.993675113385 0.7103546634482051 0.00013374435181863896 3887852.4429790736 731.9981576930437 817 5141 152129 XMR_20210408 4652877586.330476 82604.95411274518 259.07649661610134 0.004610474197538429 716432637.4967055 12749.493808183912 383103 208669 40324 QLC_20190507 8080440.689498338 1411.147219508416 0.033631241985536645 5.879778127977711e-06 1687105.8769576403 294.95812968145134 24998 5810 940522 WTC_20210718 14237421.603111502 450.4621792306253 0.48787041453274316 1.5435226611924406e-05 1616631.5278311765 51.1469300796904 65393 19878 895790 VIBE_20190228 7350434.900286382 1929.4864986797031 0.036840671589923206 9.653836432721962e-06 552809.237177529 144.859735827112 20467 None 1395931 AMB_20190228 7405135.29882638 1937.6150206132443 0.05111661544242255 1.3399751534038812e-05 535995.5846535497 140.50632256334399 17867 4971 641993 GAS_20210430 204787732.38272005 3821.07468730345 14.695803671001142 0.00027420472292695696 21351119.663569257 398.3843267504996 None 109686 88657 OST_20201115 7308115.749191106 454.0380080681551 0.010531607060304775 6.54703920426962e-07 7508686.844681462 466.7822001259743 None 745 657896 BCPT_20200913 2592058.04400046 248.57954738 0.022345759534587353 2.14e-06 121327.88230331939 11.6192814 10505 3192 1330981 TNB_20200319 2817825.301526318 523.5883330058597 0.0009115905293784444 1.690750799166785e-07 270386.5526222551 50.14930116065769 15150 1446 1775001 BEAM_20211021 89725041.08048125 1353.6637143263058 0.9028560437332317 1.3625878685469193e-05 9028372.005289089 136.25594304345614 24923 2809 285868 TROY_20200607 6484287.694413423 671.1061966452625 0.0034127829970596957 3.532137877080329e-07 2196061.693715285 227.2864314976912 8856 None 552530 RUNE_20210828 2689079888.2789445 54821.741911707606 10.324641898640593 0.00021047267543373502 154716108.8074663 3153.9605608686347 109198 6664 73281 FTM_20210814 881306170.7325988 18490.433238332815 0.34674693420599784 7.267716675941506e-06 63111423.187903345 1322.797399190942 105376 9484 45171 GTO_20210731 21557238.09709261 516.6481603294128 0.032548597204412916 7.796861285729562e-07 4668425.752970952 111.82991325262748 13611 None 548749 VIA_20210420 41180393.00239575 734.9682867753331 1.6922753706303135 3.0239287611385106e-05 5116774.993378567 91.43170984630412 38258 2230 732301 UMA_20210420 1620679640.7125826 28952.472980971248 26.911496357311044 0.00048116148340857697 227860940.28416568 4074.0175344511085 35227 None 123733 MTH_20210704 7101286.180893643 205.92371996165195 0.020503284558523016 5.924987874718614e-07 180068.5221436421 5.203575101707683 21814 2057 662461 TCT_20201014 4452198.953597158 389.70956072310565 0.007681693611564774 6.724804429540092e-07 627009.4057425078 54.89044268509435 None None 497621 GVT_20210511 49047513.697969645 877.8015337273418 11.055093376428145 0.0001978525961802078 14420102.656575719 258.07604247576495 25785 5624 216420 OMG_20190324 250063891.3980211 62434.036735548805 1.782704661095672 0.00044520515118443775 78330649.9368075 19561.966493125197 289658 36983 None NANO_20210324 645587007.509526 11835.458315936125 4.850599277814374 8.898231526447441e-05 40119216.53712354 735.9710768931213 None 79995 69675 COS_20200422 9970555.649367224 1455.9774587443178 0.005053083730290772 7.378902708313889e-07 4530997.696241994 661.6512402465208 10802 None 147635 CMT_20190530 34268873.751637176 3962.678259322037 0.042816326232672855 4.951432875776256e-06 9749792.824612493 1127.5008617379945 292131 1642 879969 RSR_20201208 189412798.6779612 9863.919232183252 0.020120530057480733 1.0485724935345344e-06 38563411.69388431 2009.7150842216984 None None 179162 PIVX_20190903 22410790.879645098 2170.8138845491258 0.36814739015712267 3.563363942702023e-05 8957917.141060818 867.0527021404429 63103 8602 256099 SCRT_20210220 260427063.55783835 4661.395403912128 3.7318175334159367 6.675663323083814e-05 13130369.414534906 234.88266704968754 68913 None 189901 XLM_20200913 1730079749.1598418 165915.43618125128 0.08395993354990883 8.040698662518326e-06 119848621.24115472 11477.69665569804 289227 111341 46719 NANO_20200422 71837512.80658725 10489.879702370552 0.5406529313969539 7.897979592465576e-05 2906002.450653308 424.5153723963346 97598 50536 313652 CTXC_20210429 3361053.93650326 61.40268575865781 0.3348919781099381 6.11652809841834e-06 13774847.881300818 251.58633118932417 19509 20508 377528 LINK_20210124 9950268834.874548 310790.6203643963 24.745835954201077 0.000772165730493632 3689083601.8597975 115113.66759054862 129396 29109 44259 ARDR_20191015 55204046.51972615 6613.63735439166 0.055256292115093204 6.62026281846535e-06 4143802.3234728747 496.46944083793284 66489 6509 1164361 YOYO_20200905 1992339.1767475125 189.983930314361 0.011391707502881739 1.0862815878178862e-06 1188740.8521228384 113.35502601531198 7772 None 2642123 THETA_20210707 6138046852.772803 179704.8899566177 6.1388559495740385 0.00017975209362479396 182933439.70560014 5356.481574282304 181372 21107 18384 STRAX_20210916 271792643.96729785 5638.104415023542 2.7159036300310735 5.6339082705634466e-05 21991348.618081775 456.1915949088274 157501 10836 265041 AE_20190523 143615198.81020516 18741.79059195104 0.5392276119966732 7.041055506629402e-05 66840283.86852752 8727.782819846985 994 6353 408857 SC_20190512 125868134.53862906 17197.73267802653 0.00306844580637434 4.2127515688505464e-07 5383652.965885432 739.1361591286931 109965 30932 237750 NCASH_20200309 1947501.3476319993 241.87158269091816 0.0006710858684795586 8.334609495827185e-08 443339.09551012254 55.06088578026218 57991 58349 746963 MTH_20190509 6346082.574532864 1065.3420201049212 0.018580569854362697 3.1191938634369957e-06 167197.2790661907 28.06806954438873 19490 2003 1355649 HBAR_20201228 211058001.90763837 7972.068053902576 0.03189003405156422 1.2054941971810818e-06 9259839.416061012 350.0367125616999 43441 6825 198776 MDT_20210220 35799548.988118 640.9134603468236 0.05916122780298014 1.058929404659832e-06 13294806.98366742 237.96433182837274 23069 85 903443 SNX_20210314 3033757357.6107855 49395.67286928706 20.523484263637688 0.00033451913821879294 152336308.43283433 2482.9804706538494 None 5328 24026 BLZ_20190906 6286215.799591114 594.7480163466181 0.030032636211090227 2.8414313764677552e-06 71133.60233438441 6.730053538205946 36586 None 878308 FTM_20200113 21425515.5698188 2628.142180726309 0.010212857792173676 1.2505392049748958e-06 2463974.413655336 301.7075795074999 20579 2260 521985 STEEM_20211207 193716630.81907165 3837.9226314620532 0.4879509930667219 9.665429971423115e-06 88506128.4313284 1753.1469318637328 14886 3944 181404 STEEM_20190324 142661312.8567063 35642.824014946105 0.4680543120800675 0.00011687136922084923 1806843.2537650513 451.1618408054587 4840 3693 256324 IOST_20210324 891583943.1187112 16345.28649305844 0.048185617339480374 8.839459925963917e-07 352254153.30395675 6461.962394188252 231752 52834 143950 SCRT_20210804 75466078.6834366 1964.123393187475 1.0824234498171639 2.8176710433753756e-05 1400342.4941090327 36.45250384334853 86751 None 76372 BTS_20190816 106431078.34943512 10342.256153133316 0.039350518955372005 3.8185005578485815e-06 17610938.647379335 1708.932457168389 13642 7153 133964 ROSE_20210523 103404709.20788309 2750.9059469361855 0.06874376470546754 1.8304909171732069e-06 8782797.808259329 233.86603402168308 None 1536 211372 WNXM_20210511 224181114.4439979 4015.174104366021 108.29398137999168 0.0019381333686794395 41289440.48637039 738.9555851672061 None None 102080 YOYO_20190512 5444766.817260121 747.5158955928113 0.018604750264639543 2.556770515372722e-06 547534.1633039154 75.24525645234975 7498 None 1472428 CMT_20200410 6550985.795136747 898.8574763846768 0.008186013327073575 1.1226868416967283e-06 8878636.155835427 1217.6779570346364 285656 1636 926050 OMG_20191024 101818046.76570638 13649.177413663436 0.7270239228292991 9.741988586451531e-05 63081057.628686905 8452.747208763423 286194 41782 None MBL_20201106 4740991.663036906 305.05367474027787 0.0013450143429387712 8.652339647925236e-08 3954764.0848367363 254.40592711197098 None None 627263 OST_20201018 7246275.6965965675 637.9153683030411 0.010436059284964666 9.182886765940286e-07 6546497.025928414 576.0387063848403 None 747 699456 LOOM_20210104 25067990.330982737 749.3399077965887 0.029767345214449896 9.042959341574167e-07 8480014.8891127 257.61259294619583 22862 None 358251 MANA_20190830 42090689.62776562 4431.186438611827 0.03174045443672133 3.346372297914833e-06 9987603.926952524 1052.9855887958647 45672 6358 132060 SFP_20220112 119883613.46790692 2799.784464275383 1.1081497799356206 2.5899924590737557e-05 13505447.183977408 315.65233325185096 453923 None 22684 ENJ_20190909 72100410.3836457 6941.625855838128 0.08235151324626605 7.923629255013788e-06 5116462.8511753185 492.2915576369473 48460 13725 25046 XLM_20210731 6555909396.328734 157136.04573001503 0.27944351646081905 6.689823944881491e-06 557341283.0626432 13342.642935951675 605610 196806 26341 EOS_20190509 5075842493.30882 852782.4061921269 4.871796705048967 0.0008178540956442008 1973883964.2720764 331366.2663372779 916 64553 112167 WABI_20211202 15812151.702209415 276.59096334291837 0.26809332147452664 4.689530548011545e-06 3137838.931048765 54.887572137045 45767 7950 491183 DGB_20210828 978926128.5524949 19958.574717335894 0.06694508386756211 1.3647069842293284e-06 29358124.23146005 598.4791543738615 225205 41289 143665 RVN_20200308 150963927.4460544 16984.407497274096 0.026553739525165626 2.9862024115520735e-06 23776511.852108143 2673.878643863776 30268 7536 183648 DNT_20200422 3042246.4512421517 444.2358602310574 0.004158451852073365 6.076019208886225e-07 56507.16548944459 8.256404911418961 58461 6058 716172 TWT_20210519 259481147.07033068 6062.468969003965 0.7493989953673043 1.751632693644448e-05 18118930.25153445 423.50884907305635 752108 32536 3237 COMP_20210324 100016.15987331608 1.8351640875740425 8.269357494476588e-07 1.51601e-11 327.28691088274803 0.006000106176311345 2320 None 1672733 TNT_20200610 17083289.037377752 1747.6132305754873 0.03983556094968522 4.079307595165277e-06 2835355.154914616 290.35077058518516 17997 2601 462149 REQ_20190220 15829358.847799387 4043.2456932398454 0.021694227694834835 5.541291567061782e-06 100566.30807835146 25.687350696415226 41677 30885 495814 BTCB_20190801 0.0 0.0 10068.754250821205 0.9999585227306921 105038.38125014966 10.431680218668197 None None 55533 FIS_20210430 63569327.10893518 1186.1950688700733 2.3601629678862457 4.4037593802967875e-05 10665934.626494965 199.0125694715305 19162 None 230666 GVT_20200605 4352429.637701318 445.9309705342628 0.9811597085076083 0.00010037298468404275 169780.9820004257 17.3686544180369 20353 5545 237369 GXS_20200322 20432625.90938905 3316.1010203855503 0.3142271068121112 5.102416073916255e-05 3144447.190439235 510.5949658783406 None None 697464 JST_20210106 33640596.3022252 988.6032809268112 0.02352489420335884 6.903636856244977e-07 109575782.68081215 3215.6208879321425 31313 None 212672 NCASH_20191011 2869636.9691339913 335.20757690914525 0.0009890415602481566 1.155317653205717e-07 422017.3177507867 49.29661975313529 59352 58790 740180 TNB_20201018 6850628.173265337 603.0851125783558 0.0019883187669214935 1.7495594450617294e-07 279515.581048095 24.595106830972277 15871 1430 753450 ETH_20210813 356667351344.9034 8022323.380598069 3048.4126816864195 0.06856165256367397 28111908833.730755 632263.1243266131 1492244 1063860 3722 WAVES_20190804 136493957.0094066 12650.06089368935 1.3649156966165004 0.00012647399706813982 7849268.264091708 727.3184225814526 143272 56857 43327 IRIS_20210325 189609137.63839293 3587.0479983158198 0.1936055226285857 3.669833835820871e-06 23372220.65201577 443.0254106520752 21260 None 577311 1INCH_20210806 915946613.3884441 22355.737286421896 2.4094398702809214 5.888762086084096e-05 136449711.37604076 3334.8825049311677 246165 None 4437 TROY_20200331 3557845.6595465457 553.7542930537988 0.0018829672440538868 2.93706146051718e-07 504763.80823838204 78.73330417841348 8771 None 389243 THETA_20190905 112557022.6468713 10656.86861800639 0.11260525767340872 1.0660221222022019e-05 18213087.741644695 1724.2138464363986 None 4025 310301 OCEAN_20210620 211608234.41091168 5935.811293904944 0.4876698310747784 1.369719987828039e-05 18887914.61189211 530.5055290231983 None 3199 84543 PIVX_20191220 13425406.40278437 1879.699354383171 0.21667216162029487 3.0322278452995303e-05 232115.53955152704 32.4835085915781 63473 8544 297199 LUN_20190811 2788263.2633748683 246.28079702269358 1.0314080954838614 9.110187375347293e-05 162628.79646574947 14.364622644687955 31056 2203 1249671 WNXM_20211120 185762740.58664924 3194.6342311904737 84.4573095158836 0.001447896721555488 4719095.790175044 80.90197713456331 36238 None 109263 IOST_20200301 62035937.45124139 7242.034839802802 0.0051420695576590136 6.0120714511208e-07 38533147.27076002 4505.2683949658085 191649 52274 110553 ELF_20191011 37277372.07573285 4355.538915085444 0.08077913428958908 9.434087658964473e-06 9943677.02464637 1161.3088148065879 84879 33554 876099 STORJ_20210617 129015145.04768555 3373.028365160709 0.898395002728213 2.3488612860289162e-05 16512635.266445722 431.7242369991659 102829 13550 44115 OAX_20190205 2921621.9897235828 843.3531104449845 0.12451646569908627 3.594282525881313e-05 2019953.2266216446 583.0781129854242 14397 None None AMB_20200730 3983475.5025348444 359.15566227696326 0.02754995948076873 2.483942460979762e-06 9944860.875184067 896.6424147973661 19473 5480 573873 SNM_20190902 4132582.4449725403 424.9201282683417 0.009446737017391236 9.70939441565912e-07 76395.34101689578 7.851943968444045 31003 9906 18762051 PIVX_20191022 14843150.798913311 1807.346564091285 0.24278265609252822 2.9541909462130555e-05 324939.1134175401 39.53874639886752 63053 8586 244902 STX_20210125 453674363.03190756 14104.711327436262 0.4922943473948672 1.5253191803000416e-05 6642993.946619023 205.8257653173434 49013 None 68593 NXS_20190513 16563285.251683412 2385.6490755896866 0.2774053204912231 3.99553431784486e-05 217125.58287990728 31.273110268488384 21326 3519 725458 BAT_20190915 233580466.53280556 22565.921599103935 0.17416630267762054 1.6830399125433177e-05 18736775.909319945 1810.6109622213178 None 30229 30571 MANA_20200106 47341970.52418938 6447.426700363259 0.03555644013343232 4.840994454969991e-06 22375462.927998155 3046.4099205470548 45957 6429 82411 AERGO_20210723 36886727.939434215 1140.5054088532902 0.14039623026980622 4.336760241698656e-06 7813736.430416335 241.36190427208055 21455 None 378084 RLC_20201030 52952532.86954955 3933.5153149755974 0.7530223602270987 5.6000279179115304e-05 3800808.8764573066 282.65609287336156 33466 3841 347368 CELR_20210805 176496167.51175714 4433.450236519886 0.031129703732817343 7.828433901203359e-07 23797561.585224245 598.4561866656855 57963 None 199421 QLC_20200314 1716492.5234455005 311.77706418415875 0.007166963795814703 1.2988412509602062e-06 80648.64595675473 14.615643553814083 24546 5671 940522 OCEAN_20211207 412847326.7734789 8181.019368959982 0.9522099447706661 1.885296363565319e-05 55032536.95627481 1089.598385011901 136956 4137 94055 SNM_20200127 5109775.334668479 595.1006009698804 0.011665012364576071 1.357387047141105e-06 79611.04793299563 9.263856899264 30411 9745 None ADA_20190807 1669756002.070157 145921.76383604348 0.053764486901642504 4.685882773805141e-06 107284678.50501938 9350.47381405466 154256 74889 93580 ATOM_20210401 4547557113.153633 77314.02051587077 19.0539225626015 0.0003241592643674149 893610783.9077492 15202.760134592201 None 22241 47588 BNX_20211221 0.0 0.0 70.9512181111915 0.0015053478518213027 19846586.847335447 421.0782798654846 None None 19867 IOTX_20200501 11152100.807801608 1288.7449528125942 0.0025709148194476656 2.98260217482453e-07 1441238.602599439 167.2027932639819 22599 1819 628477 CHZ_20210813 1904250421.715285 42831.26174301168 0.3628198713713069 8.160158273057363e-06 887088365.9716153 19951.44709455041 None None 53111 HARD_20210427 89880212.70219468 1668.3774556652781 1.473981753196347 2.7343498887892862e-05 13584980.28829083 252.0118669036502 None None None DGD_20190806 42947548.38823571 3638.6118473715787 21.473784931010318 0.001819306833339206 2436743.3583362387 206.4463184835701 17195 3361 575541 ETH_20190531 27163085813.469257 3268068.2083302015 255.37736314606394 0.030743747999958618 13789629797.840866 1660072.3662224642 443223 438037 37195 AE_20190321 125663371.12247 31093.674488823977 0.47228842998015474 0.00011686128245221646 79974734.21900101 19788.649078276867 984 6345 437952 STPT_20210125 20143305.86622052 625.147880422524 0.021921394488814538 6.792099817854026e-07 51287859.44766675 1589.097176232872 18686 None 1582459 DGD_20200314 48197653.207270265 8663.875641737126 24.098838653054464 0.004331939986838556 814092.7044166622 146.3390327653442 17642 4713 323922 MANA_20200725 62992122.806125596 6602.26381420557 0.046156748796028144 4.838873052964431e-06 17038465.734395377 1786.2387377058562 49647 7064 75007 GVT_20210207 12931438.059771145 328.72487102765535 2.8923622477160404 7.355304062225176e-05 1013442.5998288514 25.771939449283714 21675 5471 282943 FET_20210110 50328791.143039964 1243.7406015314261 0.07299932374090852 1.8115197249982397e-06 7150095.41972226 177.43368328202595 26597 741 338598 XMR_20191030 1025692376.5380807 109001.68515946025 59.53303926746353 0.006327357947948457 216651563.5387483 23026.407006261434 320096 162267 81315 WPR_20210220 16305479.804703062 291.91433354973327 0.026820478003734976 4.793868892253028e-07 3001895.5211091465 53.655619241516895 32776 None 7566939 XVG_20191019 55234158.59697005 6940.216121309192 0.003459650439153873 4.34713546379512e-07 1567132.343030199 196.9140150041592 301029 52576 287655 SNGLS_20190629 8178746.125831926 660.2407393511652 0.013848884017971564 1.117970564501904e-06 726098.522238918 58.61532046466939 6 2180 None ZIL_20201031 198795057.20754695 14637.242218967524 0.01752982035405199 1.291649808564972e-06 17257347.679528408 1271.573203626678 97536 12262 75903 UNI_20210610 13141278620.335745 350101.6102597432 25.172290372942854 0.0006720917371587961 656660732.7143261 17532.62202347396 539547 46357 1357 QKC_20191022 19397987.38598485 2360.584240218642 0.005100430696551813 6.20622841353132e-07 4980064.725774836 605.9766525839486 50211 9232 305114 POA_20200317 1612471.4859697358 320.07233744154485 0.007310629489818501 1.4517434108053853e-06 157459.76967191353 31.2683310522702 17403 None 758180 LINK_20190716 993306523.6980698 90832.44594886695 2.7210987288631827 0.00024912296680780195 127803598.21362506 11700.718984567 27226 9675 123465 SOL_20210509 12483159691.847982 212874.7829402802 45.68567329638394 0.0007777277978522352 565022391.0665238 9618.630704872494 None 14458 15641 YOYO_20210825 4030550.0036124517 83.87408384589085 0.022977800991813083 4.789964002747318e-07 2676991.234686055 55.80469451530626 10457 None 1795501 COS_20210731 41321971.41809898 989.9847859417503 0.013724462897247262 3.285609975263665e-07 5102683.089684544 122.15725005485953 27230 None 411960 RUNE_20211216 1974433690.410101 40470.991548503815 6.645066725380883 0.0001361763264304333 52871185.34371328 1083.481038140631 None 8923 73120 STMX_20211104 301622236.873731 4790.4398890886705 0.032436572189832334 5.147145256029744e-07 12639920.305530816 200.57454115820755 None 5562 94692 BAT_20210108 379323713.86868286 9703.102283018809 0.25743227261858775 6.521657749504327e-06 252225412.51974842 6389.749814385051 125977 49237 23893 NMR_20210204 156090817.25557998 4166.374676975257 29.859843841465345 0.000796064854894259 14373354.777334873 383.1943209720844 22852 2014 2472794 SOL_20210909 55627271034.27753 1200713.2703305045 189.3444533132092 0.00408978456559039 12034756697.736256 259947.20907730766 542265 53605 9402 SYS_20200404 11022349.230928903 1638.0702041401667 0.018900389796696088 2.8088536049763263e-06 239694.4057579984 35.62183123988817 58489 4508 925060 AION_20210429 161496790.44782993 2950.4355549072307 0.32817449687261296 5.9934380342159915e-06 14051776.050049642 256.6270378387868 72688 73147 244178 IRIS_20210127 60439893.3279003 1855.8078734573626 0.06453385012739636 1.9806474462801833e-06 9433713.3347855 289.53580467609487 11838 None 857234 COMP_20210104 35823.492164279094 1.0695380943252926 3.9055250291576e-07 1.159602e-11 276.77105006270136 0.00821769828124836 1968 None 4236498 NCASH_20190131 4843315.78609707 1400.4606778114503 0.0016692845308936717 4.82679108454207e-07 622556.3369087515 180.0142109390779 60513 59726 636250 NU_20210805 123491803.83952305 3097.4186627042595 0.2209723221014569 5.555791022914843e-06 18286041.421964966 459.756334235183 None 7141 153146 XRP_20210722 26445756208.820633 821804.8247005991 0.5737055813634152 1.77862715325192e-05 2019404552.77175 62606.463796718235 1927738 323034 15139 THETA_20200607 270917138.5079104 28017.64860900724 0.2709171385079104 2.801764860900724e-05 21111628.22841928 2183.317690883475 71257 4220 132852 XMR_20181231 803035214.8552158 211287.37419293288 48.130331288328655 0.01266361814379512 33915478.41198923 8923.534417426878 312662 150312 82960 EOS_20190507 5079729037.570452 887891.945444396 4.872384058690295 0.0008517541789155493 2278300620.766724 398275.68007550924 None 64516 112167 SNM_20210107 3843622.8185966443 105.0247058085908 0.008853869338032509 2.400007969166942e-07 285195.9166352476 7.730772237153518 28779 9496 None RUNE_20210902 2796153313.8133297 57492.32525902776 10.693763235036043 0.00021952368605322647 138189618.72097817 2836.783815872171 110071 6744 83233 ZIL_20190605 199918913.3840947 26094.01838724677 0.021877848077964654 2.853652856738827e-06 150801829.38405538 19669.94512850123 62766 10408 194027 GO_20220115 33731591.45792027 782.6112767630268 0.02982061633961033 6.914043297015366e-07 570413.3383617363 13.225288416958508 25233 1169 136613 KMD_20190110 86941476.05850257 21856.56948981583 0.7804152098668522 0.00019623334472919636 495552.5640611823 124.60538429465781 94805 8224 230091 PPT_20200530 12279841.24938404 1302.9373406635514 0.3399065098921172 3.609038367354444e-05 2743827.798418287 291.332454946163 23696 None 2264384 SNT_20200605 109747213.40041386 11244.221149758614 0.028790404407943303 2.945339875119892e-06 21477045.901088733 2197.162596118453 None 5699 170381 POWR_20190414 48884959.63168267 9635.824237955714 0.11732603549656781 2.312199061698961e-05 2791048.8410361484 550.0450504516144 85206 13240 630492 XMR_20190625 2004728489.3552501 181610.52240391704 117.60386009803956 0.010647961363355878 169072723.15106058 15307.999433088917 318359 158722 113923 IOTX_20220105 1180305581.5000618 25484.65047135756 0.12403334759507555 2.700008979315512e-06 28787101.203675393 626.6494716576839 198729 16604 42206 AVA_20210828 160719036.19134632 3276.5473278741074 3.0817288021332807 6.282248937191637e-05 7222120.5601814175 147.22632044085796 116073 10627 61556 BCD_20210806 402267755.9824022 9813.644834148487 2.1349967765283977 5.218012794843616e-05 6245238.172710218 152.6359807673191 34416 None 1282493 COTI_20200612 11568830.949934367 1246.8475910260768 0.022519637576306734 2.4215662675653203e-06 3984949.987912535 428.50691695041104 24213 981 270348 XMR_20190906 1302440790.8072042 123232.14933829522 75.75433937642225 0.007167556327263384 75343297.39728227 7128.665267522026 320326 160822 87781 REN_20200417 47837768.66809622 6736.753573726036 0.05510554149810988 7.777207292291268e-06 2344463.4109752816 330.88102286359754 11658 875 420454 KAVA_20211011 564464349.4876361 10315.899342762781 6.191977155569098 0.00011317011380044021 77145901.39743379 1409.9875081956275 None None 50736 DOGE_20201111 351265740.47055876 22994.31760436739 0.002764883564939465 1.8099291649150238e-07 62506709.2260859 4091.7714389767734 152192 168443 144250 LSK_20210212 343295448.83945364 7199.464047851589 2.3942169466691907 5.014468792036925e-05 94231416.65751867 1973.590984375586 180469 31264 225361 BNB_20200914 4578726414.545887 443571.4737154387 31.117471967379696 0.0030131531323835375 1204406182.07132 116624.52091142311 1261768 71651 775 PAXG_20210725 306789385.3085642 8979.4765690184 1815.0529996818725 0.05312430498952527 5352508.37547259 156.66114843336948 23533 None 38365 NANO_20190220 119514645.1355987 30537.342012573503 0.8950020176407756 0.00022858723955265084 1949506.1076840388 497.91197211064775 97135 44717 310679 FUEL_20190531 5064195.346541812 609.6560150775608 0.009680867421863675 1.1667325410223648e-06 13243486.688817674 1596.0973539977992 1 1516 None PERL_20190930 8489859.878747111 1053.491900614964 0.03234728735735304 4.017353606170805e-06 3224021.6456790175 400.4055994419309 11263 372 279806 CTSI_20210421 193330992.632098 3422.058780122454 0.6169062805737775 1.094117218869383e-05 141174316.04278192 2503.804141868247 31766 1042 161196 SYS_20190530 44695016.01878719 5168.691272019816 0.0806892779894084 9.331196272849057e-06 2625761.405681331 303.65242635211956 61923 4598 1089755 STMX_20211207 222331702.70152378 4404.845726883575 0.024027274468997387 4.758063118785246e-07 10023257.887492945 198.48815455989407 81486 5758 89956 POA_20210509 27306091.43581139 465.5660352336074 0.09511427213698888 1.6199978813342652e-06 966944.2643140735 16.469112619618574 None None 277695 GVT_20190906 4999599.6916551525 473.04370393060225 1.1267427686012847 0.00010660447112319502 177668.97658780406 16.80978818941459 21274 5699 171342 WABI_20210304 12683309.532895291 249.5639353199843 0.21421424978694487 4.223970867968457e-06 1069365.1467488601 21.08621266596655 41263 7442 721795 MATIC_20200711 78530241.56221475 8458.480310437564 0.0211408565773767 2.2757527538324842e-06 21973094.150485754 2365.3407486194396 43743 1971 125573 BAND_20201201 141204801.4960656 7182.173771814157 6.198780155436879 0.00031576005195974456 73771722.94430253 3757.8624319531323 39912 2757 350529 SNX_20210731 1614917529.7806754 38707.10479388674 9.598786414556084 0.00022973634358229122 138894249.48820156 3324.280345860957 145028 7341 46239 WTC_20190123 29293222.671064477 8200.718925896694 1.1277895470101251 0.0003157498572869348 1929741.43972926 540.2741901718722 54689 20463 575473 ARK_20210813 198170070.58837217 4457.370333358948 1.244657781401292 2.7995653700534203e-05 13126774.182260728 295.2559568606437 73165 23429 125650 AXS_20210731 2393367240.94085 57331.97122515337 43.29065654409995 0.001036369977039587 1436864583.6457255 34398.261297907426 306911 None 1652 AE_20200806 61826772.75923119 5277.756211101715 0.17028400062776458 1.4536056175279629e-05 12768802.551657572 1089.9910179329272 25470 6349 394812 ONE_20210603 1033390172.5860809 27478.031992145992 0.10145541415136441 2.697717851187897e-06 61749650.90412346 1641.934409731395 176431 23949 20488 IOST_20210527 791287331.3867646 20196.47670434506 0.03519036197954686 8.976337167522022e-07 233025134.0067109 5943.991632046786 246545 53467 129229 SC_20190419 125951527.27070248 23879.120864647724 0.0031236802929824046 5.918496972784203e-07 4074887.4337797803 772.0767389493491 110130 31011 247728 DASH_20200422 704621270.6609243 102932.65962172672 74.52892163550896 0.010887352457422233 706865627.0645869 103260.52025180872 315443 34713 68820 MTH_20190806 4496420.190458609 380.6911146895301 0.013164684472324056 1.114618142781651e-06 247912.4101251837 20.9900716365193 19487 1996 1172984 DODO_20210724 123314968.55182372 3688.5697088367638 0.9028219775957108 2.7001609863565167e-05 32709923.18050533 978.288750501268 98254 1038 27217 XLM_20210722 5318808030.783534 165282.5529676593 0.22914803828730634 7.095383568451487e-06 413109694.34290934 12791.607377993718 603263 196276 24604 RCN_20191108 24697523.248159666 2678.930623222742 0.04849923398356692 5.260692815871889e-06 6057026.653062965 657.0032963842168 None 1129 793232 SYS_20190130 22410258.96947108 6565.374874362206 0.0409447909494802 1.1994219281407999e-05 130777.40117962568 38.309459895313225 63125 4629 849970 DASH_20190714 1255691643.5885088 110326.07116368553 140.92094665847605 0.01236323977551616 372169881.8826412 32651.11110906569 320738 28635 107234 TCT_20201124 4743705.700038609 259.02131899064074 0.00821373831363404 4.473903904914712e-07 393298.60480574716 21.422403498260973 None None 642162 MKR_20211028 2021523912.383821 34538.71792117696 2242.846058608152 0.038296955268934195 128738392.94233185 2198.228655499681 188324 31196 41099 ORN_20210614 187592818.82156718 4819.900567685715 7.354071936256844 0.00018838447096881374 4661970.411319606 119.42265961240035 None None 55511 LINK_20200323 725199115.6070211 124300.00734777185 1.9939609668790377 0.0003419651186766226 343441137.95437264 58900.29516617216 46750 13734 84663 FUEL_20190623 6848876.6029463615 638.4998846155931 0.008581958377810898 8.002178260674664e-07 6368407.170178784 593.8170190162189 1 1515 None DIA_20211104 94169964.27757874 1493.2108661889654 1.9397936893802334 3.0758438079146526e-05 17022098.868656557 269.9117833484473 None 425 346400 SNT_20200308 55702761.89446396 6266.752341521111 0.015361200649892557 1.7258938533030304e-06 34497701.58545672 3875.9581673609878 110625 5614 203342 YOYO_20200526 1541854.125303075 173.50013305115692 0.008803388141192225 9.901360367994806e-07 1079931.458832936 121.4622185815738 7450 None 2546990 DEGO_20210916 47687873.3177559 989.5299846092166 8.800217952491819 0.0001825529453883359 9950360.712478057 206.4116667956967 None None 225650 XRP_20200117 9976223216.14577 1144910.961115394 0.22853059053530053 2.6227077360356488e-05 2022448461.469136 232104.21034680514 943190 208666 30183 TRB_20210804 76812339.92608424 1999.2467337898127 41.38371949498917 0.0010774463881061457 35095208.95362558 913.7217869334546 23426 None 290542 ONE_20190716 35014794.11071388 3193.343492213019 0.013493863770700132 1.232466928989875e-06 9667350.960000992 882.9709971587735 70400 None 156927 ZIL_20190908 62809972.83022554 5999.649353365008 0.006829248520553249 6.523342492291142e-07 10272806.573958281 981.2651485343955 66170 10610 166369 ARK_20190225 78368117.9481287 20805.805233329284 0.5580476829730164 0.00014896709308093585 3043389.831445466 812.4125413211905 62612 21764 148771 ENJ_20190207 21603805.604024407 6343.361368408034 0.025057225931720474 7.357362952068898e-06 709071.5619842517 208.19929766863692 38197 11178 17707 GO_20190131 13203460.50362961 3814.329156079923 0.019765806472007034 5.711297758479588e-06 530599.5311133153 153.31587491709809 7817 624 659143 LUN_20200418 1824535.2305740323 257.22944925352147 0.6714172141618098 9.537272811319408e-05 576074.6690104846 81.82961595499752 None 2141 2572257 PERP_20210506 200650610.62712413 3504.9558607274275 9.060797013019611 0.00015805232395234485 24058610.780297555 419.6672036054954 18123 None 273188 BCH_20200531 4627878024.614197 478009.437117786 251.39592599615548 0.025974879046223726 4294278463.714628 443695.9876887452 3185 298559 153848 SYS_20210724 74341845.1664948 2222.54748160454 0.12067655265696496 3.60778465473621e-06 759775.8365840955 22.714500405553807 74467 5465 381052 SNGLS_20190325 9777067.644670218 2448.2691977359864 0.01655867437423957 4.149655561152055e-06 368827.2496147476 92.42926171972267 None 2185 2467008 ANT_20210704 129283103.59368238 3731.300141738692 3.6829368426918476 0.00010621136263290883 21502096.869351625 620.0939916986034 85280 3043 102952 MITH_20200719 4594032.479627586 501.1393300111409 0.0074246553239093755 8.099173898067912e-07 2966034.150459084 323.5493814078832 102 2096 578289 ADX_20211028 65373793.984294355 1116.9430230474425 0.4921323081058818 8.409928020668628e-06 5491315.142219224 93.83973440519468 None 3928 10004 NEO_20190726 843683477.7854972 85187.3630284018 11.937212381088608 0.0012071632034072876 312076302.95128226 31559.045575414115 324386 98182 191074 VIBE_20200407 1677183.9346582915 230.17200576 0.00896258531882769 1.23e-06 24504.545352570374 3.36293488 19241 None 1554973 COTI_20210731 88857695.31786238 2129.7831381388705 0.13284556317867535 3.180297187709403e-06 11806912.968724541 282.65522168369915 124475 5483 113141 VIBE_20190826 3442873.660034829 340.57870030771494 0.018398130510529548 1.8199945731684165e-06 2786256.695078821 275.62431202428 20352 None 1220128 KEY_20200117 4050138.134581982 465.3182516319561 0.0015227801932039917 1.7481583732027905e-07 1350144.9792258565 154.99723866944248 23577 2782 347689 FIO_20210823 79929579.19885603 1620.1914182749342 0.2288226301738963 4.643903178306641e-06 6585992.16735858 133.6612114590937 None 517 401470 CVC_20190716 18608694.17090722 1698.8314123774228 0.05415421932413012 4.952107010582089e-06 2871180.8877631635 262.55378030361175 None 8144 434521 ADA_20200927 2980675759.2437825 277594.07165804005 0.09573509661982581 8.912978850198403e-06 444216426.15245867 41356.74116390513 165057 88545 24510 ATM_20210201 0.0 0.0 4.181835149100477 0.00012614136994679086 1487241.8525143547 44.86133910819454 None None 233968 WPR_20200718 5072291.207058933 554.1617259585503 0.008251106258559486 9.013886215242946e-07 718544.6506506752 78.49710715842171 32895 None None TWT_20210210 225725575.0661661 4845.982492777329 0.6504121459921283 1.395897699872853e-05 44168923.115099445 947.9419866641667 335948 9210 11832 CELR_20200403 5980129.86364731 882.5938855298225 0.0016021907433274997 2.3502505926454952e-07 4694584.869196635 688.6477728699901 19258 None 1350205 BZRX_20210418 127917017.68805048 2121.954118440553 0.9088521968754565 1.5119771040759914e-05 76432421.63158026 1271.5386716710339 22861 None 181064 ARK_20211230 191035130.66947845 4101.603389540829 1.1776571747249645 2.5284787372047062e-05 2645955.051227312 56.80975100576378 77194 24365 113733 ANKR_20190902 8236272.908556176 845.7942187962309 0.0030784687503859673 3.1609745403716125e-07 2065032.606853573 212.03773773837946 14024 None 7336 COS_20210127 23146680.46406892 710.3917611740986 0.007688628419295888 2.3597634751394988e-07 1835890.5388087805 56.34642749755719 14609 None 378436 GAS_20190730 30003804.46760086 3161.1211462577094 2.15760147726537 0.00022683071003382708 1092729.3048513925 114.87967852541755 324401 98198 191074 MATIC_20200316 27511144.720317464 5092.4024466943565 0.0098792848013721 1.8384836780389768e-06 21270124.20333451 3958.259829928292 32656 1582 190232 REN_20210624 301579280.3460884 8945.748539426037 0.34413902820750175 1.0202396516754077e-05 30174786.294638526 894.5661763204455 85384 1177 86030 SYS_20190909 14192684.487224339 1365.5247011390043 0.025179754848300248 2.4226267585198027e-06 1148598.8105608143 110.51045691401903 60506 4591 689818 MITH_20200430 2583063.2553219935 295.6963372019485 0.004168251044578226 4.754289084233893e-07 3127635.4957845625 356.73674973134035 97 2092 1180459 FET_20190615 0 0 0.20770214575320084 2.3904085188698293e-05 57464980.62814964 6613.5464673263605 9564 266 299153 RCN_20200518 44751695.537049875 4595.491412640029 0.08880384703785449 9.084929519121178e-06 474578.90866477275 48.551004042009964 None 1135 1036055 BZRX_20210114 29096524.95968416 781.4052109393349 0.20624706381022936 5.518204351282822e-06 11929314.212855533 319.17251271886704 17307 None 145216 THETA_20190130 37083345.43280512 10864.045109585786 0.05216530187714153 1.528120100358307e-05 2627709.475080474 769.7560489977711 None 3812 548466 FIL_20210916 9163747153.980003 190146.36758907957 86.26780138217958 0.0017895512724242927 1300705450.9394174 26982.014812987672 105118 None 54646 XTZ_20210429 4014548965.387316 73341.3069951736 5.239668230677627 9.569185649610793e-05 273992974.2812386 5003.92300076436 107302 43617 96118 POE_20200106 4265471.90189013 580.9077468763978 0.0016157209832583764 2.2002983148379434e-07 56709.99245711997 7.722800045973017 None 10551 664429 LINA_20210707 105508914.56281786 3089.512058152276 0.041999181290778405 1.2297217623321314e-06 88728111.59136543 2597.928969117618 41249 None 80589 TFUEL_20200223 0.0 0.0 0.003373788984210178 3.4950862466927747e-07 462708.3973378984 47.934407377986645 68482 4028 394395 AE_20201115 36914573.15210537 2293.425533732585 0.09932991532768944 6.174906128603177e-06 7590429.719827006 471.8637969343545 25580 6345 520399 BEAM_20200229 31998987.506877538 3661.149764210726 0.5671829081872058 6.50955002866488e-05 33720359.82687831 3870.0808171249687 12576 1458 234451 VIB_20210616 8762936.590020983 216.98894927112897 0.04799672411152537 1.1884394772063346e-06 1245948.8973356795 30.85074832888142 32216 1276 3737754 ICX_20190509 151167474.61064866 25397.352834804173 0.3195888370478039 5.365105629937947e-05 11446617.991715435 1921.6038707232901 113640 24185 291267 NBS_20210217 0.0 0.0 0.020350390258240224 4.1357808866833803e-07 9278910.593551505 188.5739811132877 None None 724995 NEBL_20190615 18366389.95410213 2111.872966884771 1.1964218079959954 0.0001378588861480794 921384.8716327766 106.16748313017283 40243 6156 715559 VIB_20210511 18918937.549101718 338.59152370817833 0.10362914170271634 1.8546469059706485e-06 4081986.209195393 73.0551558056632 32427 1252 3730171 VIA_20190909 5029550.992031703 483.81184799675873 0.21722370151242193 2.0895583049843488e-05 126078.57289816922 12.127982685392128 40676 2216 1917066 GXS_20200313 15715223.39917879 3265.4945728898065 0.24853661621975234 5.1864112875528325e-05 6252677.175611547 1304.7958877955632 None None 822093 AST_20200901 33507734.871424016 2866.817993127163 0.1940310436987177 1.661915976405203e-05 23664944.395541787 2026.9513796338756 33322 3482 151828 LRC_20200330 28699477.414613295 4853.4444218130175 0.025096564260951193 4.251719955077596e-06 2196981.4485242586 372.2003445770404 34188 6816 553678 NXS_20200625 11822201.654687017 1270.6807778329048 0.1978098741512049 2.1281512641386083e-05 47321.861632561464 5.091155337258201 23326 3527 462582 EZ_20210506 0.0 0.0 13.040385607566137 0.00022747041430781003 5924027.689390325 103.33598050158129 31174 None 98658 MDT_20210430 37861335.33235823 706.341902868535 0.06244450423866649 1.1649660414889214e-06 9227054.83327265 172.14013746725857 30810 243 381469 CMT_20191015 14170329.932431152 1697.8502562849983 0.017696062688279782 2.120167339575261e-06 2979244.9735759897 356.94368859537514 289079 1652 599967 APPC_20190627 8884501.30931863 684.4948497186264 0.08366343234444244 6.4229449452210365e-06 1577369.5402126738 121.09660614142405 25513 3368 1293635 NAS_20200725 21830808.27233147 2288.107608865304 0.4799144823667779 5.0312149729484584e-05 8606519.440500148 902.2701140517585 23532 4926 784060 RVN_20200331 86271145.42470562 13430.038947321047 0.014663707921224194 2.287252289688558e-06 9548668.101970587 1489.4058922229951 30194 7626 209094 POLY_20210725 167334108.3765857 4897.733680889483 0.19532371180899458 5.716877931193118e-06 5570928.452658625 163.05402775882186 47429 5671 180054 ALGO_20191022 102665148.6838248 12502.006012661077 0.2274851063590841 2.7680496309761005e-05 105588109.91231376 12848.011606390282 12618 652 327819 XRP_20200520 9031729491.792507 925578.3669826986 0.20474144959670157 2.0982056287624162e-05 1785715895.5300689 183001.495337272 952745 213677 35864 UTK_20210806 117547019.25951605 2867.653897609846 0.26191208141988537 6.401230236025635e-06 10053324.859562479 245.70705831798082 77674 3997 176037 DOGE_20210220 7128326860.060291 127411.09380487536 0.05549877783784476 9.919803241308956e-07 3048336602.085827 54485.703080386986 584338 1156701 15001 NCASH_20190324 5189937.773382994 1296.649843895965 0.0017891600513514302 4.467464128840602e-07 445718.4231711123 111.29418329993881 60446 59525 708822 OXT_20210725 164604258.3294413 4817.833183319752 0.27826743757355776 8.144535848210696e-06 12211126.430109218 357.4042217238147 None 4348 154434 DNT_20190629 9519067.722957604 768.4400780565926 0.014795743172210503 1.1954578098532861e-06 1096087.2012955358 88.56101311153098 60620 6366 1037935 POA_20210707 8694752.443780055 254.54645852100313 0.030058599043125866 8.799916943010842e-07 204916.93688242187 5.999121989 19871 None 217721 KNC_20190626 45480145.809923455 3846.2729758822165 0.27328361165371967 2.3085794867482588e-05 14904458.381638262 1259.062944635777 97042 6692 219809 FUN_20210825 354427950.5331653 7375.499525797303 0.03322914119401699 6.919398784301177e-07 88652104.55469944 1846.0280417718895 13158 395 124228 AAVE_20210825 5009914671.1762705 104321.61098300258 380.86789678673273 0.007930716778231527 348713554.2924758 7261.174961597405 274860 12632 14216 IDEX_20210324 64459372.844803855 1182.4272198138099 0.11126240614105921 2.0402974275861018e-06 12079753.229362695 221.5149779207263 51285 1974 5056100 PERL_20200325 4196497.776447653 620.9359699025912 0.012168545700432723 1.8010381994038121e-06 2351351.9040755066 348.01813657405916 11559 475 685227 DCR_20200523 158816608.87923723 17349.456350006658 13.778859001096073 0.001505231187590641 102920065.34928028 11243.201790531433 40487 9780 320960 RSR_20210210 479111005.5294477 10286.510157175639 0.05018944962686963 1.0776158081481766e-06 268908641.4961419 5773.727450255908 56912 None 136667 GO_20201018 7735781.163742226 680.794466628302 0.007066369728011035 6.217723081359945e-07 171725.015027822 15.110143265683716 None 678 697842 MANA_20190813 54355279.754750505 4775.9879122441525 0.042780186377606465 3.7589124837187983e-06 13460545.416591877 1182.7207052696797 45646 6348 132863 1INCH_20210710 448329084.2272519 13191.590932859106 2.592841275511306 7.62930344824152e-05 42138344.183688514 1239.8993244212604 237531 None 4913 FTM_20200305 14540062.116486605 1660.896691401272 0.006881155881674752 7.856609016552495e-07 3767602.164472312 430.16867580351345 21153 2314 349202 VIA_20191015 5175500.239328818 620.0894756623509 0.22350277091693851 2.6778419402592876e-05 906040.219928072 108.55491815744928 40474 2206 3844028 GRS_20191108 16786095.86087477 1820.8742389767826 0.22762105912997557 2.4688470789728526e-05 711463.8327975845 77.16752624343766 38541 106943 None RUNE_20210513 4150503730.341446 80519.09526780689 17.60817701810427 0.0003510241801993412 287315866.80613226 5727.7261865432965 1536 4478 74862 BCPT_20201015 1985557.8942925143 174.2380005 0.01711812001052805 1.5e-06 73371.35891891233 6.42927134 10460 3194 1571577 ENG_20190914 24121878.69413031 2329.4234520658392 0.3150793637972663 3.0435544759598497e-05 1324108.5587894411 127.9041725294773 61417 3480 285692 OCEAN_20211120 387959057.85697377 6673.963543036939 0.9038281553336212 1.549480832930134e-05 69426913.26889627 1190.2226188113073 132598 3893 111793 BAT_20190314 235069343.10724458 60782.319051332655 0.1889003506904262 4.886431628124383e-05 19477605.502594218 5038.423021457608 94095 23748 109829 APPC_20210427 24981176.678375013 463.70642361835905 0.2210156016541857 4.10128949831249e-06 2280454.918991285 42.317400856017294 24859 3137 715817 ALGO_20191113 127218452.17990533 14460.495964997028 0.27365891153137 3.109592631622287e-05 125629831.94650052 14275.347276165809 12915 673 351418 CDT_20200321 2005418.1423994212 324.38065955639036 0.002934149360054752 4.732123395486306e-07 157412.66019845806 25.387123853059734 19217 290 281286 RDN_20191220 5852626.523913859 819.3315215313576 0.11570058563144675 1.6191768007739976e-05 886250.2577806832 124.02667188301885 25293 4355 2347248 SUSHI_20210207 1759306266.1018677 44854.2035023692 13.829829792364826 0.0003516938562311454 994802403.0073452 25297.917512680975 35847 None None BAL_20200903 241327563.32628703 21153.508059791915 32.06025843590655 0.0028096177225843707 85904205.55019984 7528.260536042913 19273 None 61486 STMX_20210111 23855581.988909725 618.8258203784434 0.0028680155037040813 7.478106294734536e-08 5143414.776825626 134.1101621289524 21956 155 199234 DNT_20210428 225748169.7179872 4097.451387353385 0.3002878711887904 5.449319062548943e-06 21279340.73310271 386.15584650925933 68185 9790 186228 QTUM_20200403 121645170.38241595 17939.29188719233 1.2693344048887556 0.00018619842548580468 263376794.89042047 38634.692583151016 179421 15138 108429 CTXC_20210108 947587.9636725 24.20861906524487 0.09418395170292816 2.3866747839148613e-06 14629896.414372468 370.7298773532313 16717 20068 682759 YOYO_20200612 1562016.2876727704 168.3485785086469 0.008931704502699662 9.605183138363114e-07 702078.4649074272 75.50173912379644 7473 None 1857725 REP_20200526 136554896.81386653 15345.860037475748 12.457803931007 0.0014011560564682506 12219933.634650193 1374.4022715925164 132127 10138 252584 ZRX_20190703 176121099.53404608 16318.386546356222 0.29529917906754566 2.7304195821883775e-05 41881435.57507068 3872.4757781387884 151019 15989 206645 BLZ_20190712 8702334.157025762 766.3851283547614 0.04194898724140528 3.6864431284383863e-06 555408.4714013217 48.80884802036237 36595 None 875271 HARD_20210304 90240881.09359144 1775.2427234038498 1.765629841903167 3.4801601656837884e-05 24325391.426353287 479.46775845955307 21741 None None ANKR_20200129 5225832.885759515 559.4087522664653 0.0013164038851279651 1.4078588401889244e-07 1019991.1746614269 109.08533531273982 None None 5243 ARK_20190622 72496045.84792122 7163.255477695807 0.5093245391509271 5.0319720789279375e-05 1025002.449280432 101.26713537522069 63475 21826 211362 GXS_20200329 25677246.84760872 4120.6281852783695 0.3954119205056585 6.324498905920531e-05 9653144.514388774 1543.9924482264291 None None 697464 ONE_20191019 16328521.37322373 2052.0005167246513 0.005876478514485122 7.384953403079677e-07 2661728.6861587344 334.4986673646505 70276 None 174888 GXS_20201101 25409613.169189885 1841.4451686027116 0.3629229722844284 2.6301678128365677e-05 8466993.109193262 613.6181627504166 None None 441833 SC_20210916 952764542.8525002 19764.28021422427 0.01950251272766444 4.0456283698070855e-07 47726164.88943634 990.0382035639232 140484 48588 138754 MATIC_20210509 5077166130.970952 86576.68831450069 0.8490095868166898 1.4453072673937005e-05 887144265.3546338 15102.256486304406 251821 20052 18351 APPC_20200518 3519191.8383769696 361.270788343526 0.03217080579439919 3.2902508224476567e-06 54230.0172102584 5.546344094323783 24609 3213 1178523 CND_20190510 23674873.04940577 3829.8518479402132 0.013560094472595577 2.196252749799053e-06 306720.09807192435 49.677740827727185 36696 6181 553989 CTXC_20200730 1194946.871763112 107.73806311618256 0.11876289713117472 1.0707827108748439e-05 18752802.911158174 1690.7786541728497 16542 20064 581849 TFUEL_20201111 0.0 0.0 0.008909826114397203 5.832489419539832e-07 1223729.2899336056 80.10692963340315 74685 4507 75769 POE_20190906 6379438.033149577 602.8122644913306 0.0025296774712127478 2.3945862707820967e-07 78249.27429599376 7.407056435460137 None 10733 694514 BADGER_20210708 91414300.25812759 2690.4129145652123 10.03408456470794 0.00029532375998574405 5677782.585015333 167.10882697619675 35763 None None APPC_20210506 25914655.110018395 452.371145379213 0.22980717064269518 4.0098236652415e-06 871317.173021179 15.203303754798236 24957 3134 605717 BLZ_20210724 44648973.153630346 1335.530322313815 0.15059113056012935 4.503881227090253e-06 20390921.01098933 609.8518950145278 64991 None 404484 WABI_20200319 3430879.0478678485 637.5016366148842 0.05784881096791872 1.0737082122835014e-05 414555.3474417676 76.94392910532112 36736 7762 2574958 PERL_20210110 0.0 0.0 0.0312367272498386 7.722676740836729e-07 3822191.8555263337 94.49630207928173 13496 504 591773 XLM_20190623 2508350355.686343 233845.85612072752 0.1292368079190065 1.2048353580917841e-05 563701483.555801 52552.17068054342 273359 102355 69800 SNM_20190805 5200367.988706625 474.92187802885354 0.012161186910211633 1.1105174743880521e-06 396367.05344134115 36.1948666991298 31127 9943 None QSP_20190615 0.0 0.0 0.025712901865860817 2.9592539567719134e-06 1041133.9889514592 119.82233247757102 56828 8594 693082 PIVX_20190324 49598696.08111851 12391.850042525388 0.8366216547698752 0.0002090877124421083 716894.2819586603 179.16555783963602 61453 8601 217374 MATIC_20200518 55811572.15800602 5767.046499890656 0.020261019132713262 2.093542701599713e-06 27418119.44193514 2833.0758424966566 37242 1737 157570 SNX_20201111 625302942.3495004 40881.28489100508 4.657793260629933 0.00030488420671191755 56539576.57871923 3700.89932903102 42447 2492 34400 REP_20210723 108975788.95547831 3369.4362086507167 16.68789914791432 0.0005154641330857374 48204911.84248443 1488.9773046397013 151862 11238 153333 BNT_20191213 17941567.279553175 2489.4458833958965 0.25736459904868136 3.5753617275518475e-05 9107007.011763526 1265.1640685145917 763 5068 141630 ARDR_20190411 85359243.80977897 16083.12945156417 0.08543808623948179 1.6097288931361487e-05 1310394.7636770383 246.8899299303919 69175 6582 1030225 NEO_20210324 2889879331.531881 53011.250851102355 41.21126349483793 0.0007548660364691585 846979621.6864353 15514.111817335366 360290 106799 100528 DGB_20210324 922657085.8458614 16925.777412545012 0.06519992339617779 1.1960666727086198e-06 51163364.52584269 938.571580846218 196034 30517 135732 IOTX_20190627 32342011.47213521 2487.4983546174144 0.00922754335301472 7.109240778735752e-07 2482637.993876557 191.27161574526374 19751 1740 766707 ADX_20200105 7810476.818300894 1062.9039606006363 0.08502263080655041 1.1562860914674975e-05 87207.8895160222 11.86005052502349 52880 3800 215499 PNT_20210206 27810346.80611628 733.8377288816174 0.8175556435473424 2.150813987283123e-05 14893452.733369222 391.81487780917803 8650 147 785804 SNM_20201231 3539251.855505363 122.52841664 0.008073452437116024 2.8e-07 189057.59447294148 6.55681406 28777 9502 None EOS_20191216 2446501719.8700986 343791.4130792213 2.563035392916319 0.0003601653776000003 1487012418.2830834 208959.41999358186 1369 69528 76795 FTT_20210620 2571239427.012032 72126.32783465263 29.52558009891472 0.0008292860176437691 22393477.468424067 628.966397570203 142011 None 3170 KMD_20190706 190089829.69801027 17295.358580093573 1.6541804244452516 0.00015050591419016606 12303515.465998838 1119.4376475492438 97621 8430 312186 AMB_20181231 18144266.0244814 4773.955430661798 0.06692632000161129 1.760904896317147e-05 211490.70237559368 55.645523813317276 17873 4966 613884 BNT_20200312 16844452.70857167 2123.7523958779443 0.24172496635555132 3.0450966657691858e-05 3795696.847036774 478.1576345813338 None 5028 123445 KSM_20211111 3853488677.202516 59337.219287994754 429.41941899599686 0.00661089713857733 206253690.90948275 3175.2684548884445 None None 83525 SKY_20200316 5028299.591356899 930.7215365528332 0.2942114418642192 5.475122386233427e-05 177595.9506008172 33.049685582510115 None 3830 253868 CDT_20201030 3181476.4949774733 236.1879472421171 0.004638044543849849 3.4492193495941905e-07 116723.70896883387 8.68050471972217 19175 292 280851 RVN_20190712 166967706.10651067 14741.94709872577 0.04240713308203817 3.7402492012214825e-06 20584673.989096377 1815.5391522501377 26459 6761 214144 SKY_20211111 7438399.000785978 114.70288343333917 0.354539915973049 5.4593160906112724e-06 272451.69277602644 4.195296053490088 20633 4503 430974 XMR_20190131 730611289.6391488 211258.6556593841 43.59615412141843 0.012605971249306942 254468827.45157656 73580.49780642106 313110 153620 99747 SUPER_20210624 75126454.1539932 2228.47659411181 0.36673617216418025 1.0885986487265133e-05 4151452.014366804 123.22932386035491 125193 None 564935 LUN_20190531 6782808.041756425 816.7134239243206 2.509032492115883 0.0003021109405954379 1506269.3168629676 181.36889081247548 31490 2231 2334034 QTUM_20210430 1472487019.2849493 27477.1859652286 14.208847944675389 0.00026508057908444007 865614394.853517 16148.921147233767 234365 16197 88405 ENJ_20210620 1164253448.0241969 32658.695644069638 1.2435130092013738 3.4926594086689325e-05 67800997.98495013 1904.3290402033197 215179 33474 26462 GO_20200801 12091838.034328429 1066.8980176683958 0.011625674559200562 1.0264440315855524e-06 719695.567381995 63.54274033184574 11680 682 681368 DLT_20190805 4920559.499303745 449.75081973246614 0.06138412090303416 5.605385347340414e-06 203584.23209504024 18.590607061682 15048 2666 2977956 UTK_20210207 125597263.18345083 3201.5508609265366 0.27988290621184636 7.114726326722626e-06 9835463.588703958 250.02109874158512 59359 3258 107548 AVA_20211125 138978099.41798693 2429.3720645492535 2.627033103677096 4.592799776787371e-05 5570243.098389133 97.38366533380983 None 10919 49771 SUN_20210427 0.0 0.0 0.00045990099920581424 8.6e-09 33.8835044554577 0.000633610578842274 52 None None OG_20210916 13272756.90632471 275.38043032081845 9.740348040428035 0.0002021262301189041 26734600.773882404 554.7814149689584 710292 None 341879 DASH_20190224 771947790.7634876 187603.95768673893 89.22287696221439 0.02168354522752538 222180672.11243975 53995.84519643252 320387 23252 89364 FTT_20200301 74824379.0590963 8734.94916456273 2.580191849225831 0.00030167421076675115 5144582.707630888 601.5009808338427 7759 None 19129 QTUM_20190618 349570023.8511959 37503.56899740812 3.647922851023115 0.00039151987946491247 351959151.7927644 37774.64883826372 177997 15314 453664 PERL_20210108 0.0 0.0 0.027486735478159215 6.965294752632581e-07 3174450.9925111965 80.44238959623551 13470 504 591773 IOTX_20190629 29987258.378975093 2420.763444498656 0.00856111521888787 6.917242005238622e-07 1598427.3589832888 129.15033365615838 19921 1740 766707 ONT_20201124 468766163.7040921 25603.24748925241 0.6061388858965973 3.301550432927833e-05 216216490.64084476 11776.998059207097 93644 16691 254257 RLC_20200607 34118073.595670745 3527.670003750654 0.4859915517932066 5.0260166632797306e-05 922127.321253415 95.36435901373933 30385 3584 681480 ROSE_20210105 60536337.46129344 1934.9155490552325 0.04036254269928959 1.2901030148742755e-06 10102071.697799014 322.89128192203765 None 578 219756 DOGE_20200129 300978822.31486434 32188.882188268737 0.0024452269213911916 2.615104966219311e-07 73912107.34704554 7904.702720883838 139030 147622 125854 SRM_20210805 227713017.33185586 5720.281957974085 4.549550203613628 0.00011441115326661096 167196944.80420676 4204.634397156275 100389 None 31841 ADA_20190318 1546126613.137764 388255.62349874544 0.049687912732741646 1.2477998642832897e-05 55364282.81391416 13903.49096628916 148529 71776 114541 BCPT_20200502 2089413.3864701928 235.7546563555565 0.01793644946005262 2.0295957118829495e-06 253130.69345286762 28.6429580794186 10579 3166 1976205 ILV_20211120 638513175.5230318 10984.030254057307 1009.2422226533897 0.017301977931944414 44069080.46783606 755.4997607323114 None None 9890 SAND_20210104 25838214.583861943 772.3636828585195 0.04102727288094865 1.2463589140558947e-06 5753139.923316028 174.7734305432094 None None 60991 BZRX_20210115 30228433.35364155 772.1840641571793 0.2156793082412768 5.4979556714215915e-06 11400542.41719462 290.6151607727659 17349 None 145216 BNT_20210324 1252973200.4545949 22970.586322938994 7.361723978072548 0.00013484457717739394 178372303.823167 3267.242559057485 None 6717 33884 RSR_20210202 345060726.6312723 10342.826423635419 0.03699727472400045 1.1078782035147237e-06 130622771.97703856 3911.4805897353735 55714 None 136667 REQ_20190816 8212325.185091227 798.1577726718258 0.01126281138359555 1.093526775371421e-06 94337.91569828808 9.159439258573174 41323 29555 589589 REQ_20190801 10078433.098512275 1002.6252444768203 0.013866608426203372 1.3753976136672247e-06 192904.58716920615 19.133770905120386 41451 29645 541329 SNX_20210725 1444843691.7299225 42289.40340531627 8.579621684470567 0.0002511146722109191 92273035.00383079 2700.7149954914926 None 7297 44436 ZEN_20200301 86715901.73818229 10111.760149385644 10.122841194785494 0.0011835554511461395 1620084.0818251136 189.4190879282912 57009 5043 41227 ZEN_20210710 690006495.4414892 20308.87048209738 61.19554005715189 0.001800647610729518 32544922.32943258 957.6177704966874 115659 7416 1147969 ZEC_20210128 843910324.4757462 27896.736278872133 78.92989117124077 0.0025957701382113415 789857732.7762617 25976.07935031571 72287 16783 132493 ONT_20190201 318341309.44232655 92776.27940380729 0.5327888024139356 0.0001552741077887988 15471821.168562444 4509.053525396591 67022 10994 281556 AVA_20210421 272375457.79664063 4821.186785176194 5.200340436414529 9.223089786299237e-05 15993707.47283216 283.65719868032437 66126 9893 42647 CRV_20210217 598738749.2364824 12176.232870327356 2.665086291556714 5.4180633755933725e-05 260673113.6055518 5299.428593747939 74275 None 26864 GAS_20190520 37086717.37688926 4531.600749585306 2.660073016869668 0.0003251538859286473 1467210.0049483376 179.34433812788686 321314 97572 225000 ACM_20210708 12236587.609879 359.3062762841545 6.107073692188266 0.00017974374778847153 3499485.4742842936 102.99705983305252 None None 41859 GLM_20210617 286713436.3034453 7486.206623205548 0.2867134363034453 7.486206623205548e-06 2218001.729666634 57.91294420306939 158046 20996 155421 VIA_20200309 3914470.6090257866 486.59773062066284 0.16898166553557398 2.100567437561479e-05 110923.34145103686 13.788594069012175 39583 2185 2317316 NEBL_20181229 18171774.0566575 4724.771135590699 1.2419318909591073 0.00032290980134784325 294649.5329640084 76.61066025381223 40067 6186 481923 ETH_20210115 138240285220.32953 3543890.8082722705 1216.9147884634556 0.031078970909977258 34339866026.50668 877011.0343041223 588362 533118 7761 RENBTC_20210204 605593577.0120968 16164.029912153186 37509.782135583344 1.0000125731204446 24483932.779605657 652.7428106764364 40114 2512 83739 BEL_20210809 88017591.20449814 2000.748262725332 1.827387747201524 4.1542536345177936e-05 15841278.966229232 360.1243951736461 None None 462798 HC_20201124 45817099.504593045 2501.758392370026 1.0345430827338893 5.6350058413266724e-05 14613703.979009982 795.9872204406026 12708 842 1056664 SNT_20200410 66029502.13976261 9059.158570890102 0.017158912980082812 2.3532927508004565e-06 18340608.02136925 2515.3586332688924 110267 5638 188189 FIS_20210821 60303413.456382506 1227.3735165359794 2.237414472799243 4.552777315325327e-05 23050006.941485774 469.0304366807582 25533 None 372916 STORJ_20200801 26469319.93899341 2335.465037802339 0.18446374307986166 1.6273545686227217e-05 4418036.314342219 389.7628585674525 81635 8204 117892 DCR_20211202 1433649597.766746 25081.602247225634 105.83148519579709 0.0018512430510830877 7706290.818050403 134.8012578690313 50130 12415 141050 UNI_20201226 753044951.8807377 30498.34817919504 3.5015609706547175 0.00014181670648346975 256537750.05243066 10390.034360679074 154553 None 4779 ENG_20190131 20641308.960456293 5968.5023265787995 0.26814515860581845 7.753505390892078e-05 265596.00018698536 76.79795637393545 61213 3142 203168 STORM_20200314 5771342.127787917 1041.7196633595827 0.0007692119228432143 1.3859466741908563e-07 1405863.7614295708 253.30499263671805 None 2524 826076 TNB_20200701 14461062.887385208 1580.7518580123585 0.004204593030595513 4.597109113497983e-07 3450628.108097947 377.27584590470224 15055 1433 1208185 RUNE_20210727 1073112908.656093 28647.369052678892 3.890467541195784 0.00010395256254483607 205257156.19250873 5484.432691171804 102621 6161 63469 KNC_20190908 30218828.43420351 2886.5602921498053 0.17993118761123056 1.718714377285046e-05 12008635.942313455 1147.072695937003 97727 6696 205924 GXS_20190819 78395081.26533428 7598.241869826406 1.205648272564206 0.00011686213976374851 5426090.432182251 525.9448820075773 None None 790272 SRM_20210110 87383411.3922115 2159.371388728497 1.737095660521336 4.312195601057812e-05 135734549.96214703 3369.497389007743 None None 89781 RIF_20210318 237608688.31876248 4039.390704332118 0.33474014780270583 5.679117925167766e-06 8332015.086854843 141.3588914957846 43095 3154 671314 PHA_20211111 132952354.29477426 2049.772842719242 0.7320931136333194 1.1273294580078853e-05 14340741.788687473 220.8290225247147 None None 139107 VIBE_20190618 8268767.847136753 887.0546290174249 0.04443091190726685 4.768627513482202e-06 6799129.0972962165 729.7287561586446 20516 None 1430855 LINK_20211011 11730341073.461216 214378.49508111834 25.619594808860775 0.00046807695865926313 782901053.4028438 14303.814979977496 529569 68479 27709 DGB_20210724 546351367.6007997 16344.82000335896 0.03765530951446238 1.126144624000866e-06 14010209.62506068 418.9986074693545 222674 40392 89900 VIBE_20190712 4874575.969963012 430.3679523373706 0.025488091355503378 2.2398728887967694e-06 436709.8389911961 38.377708043485 20510 None 1464833 MANA_20200330 30313965.701306332 5126.474799890318 0.02265112943930051 3.83742802563483e-06 15992430.487029796 2709.3483843002655 47971 6808 47233 BNT_20210420 1190802761.6947398 21281.463166608406 6.59966834075741 0.00011799812863177219 212514540.48647237 3799.633070889566 111437 6976 28639 WRX_20210603 782058369.3157707 20783.406051814425 1.7961641633278167 4.770215033177065e-05 82659421.08752649 2195.251531880542 250682 None None WABI_20210128 4747141.196475479 156.92575804140972 0.08031403625398441 2.6418289619096877e-06 564251.0856874133 18.560328050802468 40783 7425 977058 COCOS_20200320 8162700.093983317 1320.6494728681785 0.00033575185772723035 5.4390190480886446e-08 1252860.0504086395 202.95731868438236 14638 216 67575 OG_20210723 5526726.3937530285 170.72781875310355 4.307798852569388 0.00013306330061167091 2548038.4997710628 78.70618486815398 694367 None 316582 TRX_20190801 1481667779.050775 147399.6507873333 0.02242326881333274 2.228153533657025e-06 696611781.6699897 69220.86230318925 450645 71292 73072 ZRX_20200502 137371386.29986343 15502.70818063439 0.20997105812104674 2.375923730786973e-05 46747827.32534015 5289.741991059394 152410 15923 152410 LINK_20190131 153872156.55789396 44492.639791928465 0.42225059288197914 0.00012209514671978721 10241117.157372318 2961.2526849746614 9530 6283 269353 AE_20190324 128021844.57905443 31988.34244702763 0.48153401268255824 0.00012023719883814097 37796292.94258908 9437.589599467387 990 6350 437952 XLM_20190803 1615304715.5372396 153476.14763216852 0.08232911474738526 7.82209696277633e-06 139081420.2933736 13214.13886926274 275590 103205 68303 DLT_20200322 2535008.7892108145 411.1396090308964 0.030874614128230032 5.0132988634212445e-06 220261.32795677465 35.7651713642536 None 2584 None DASH_20190629 1514868945.716782 122289.91795957374 170.22796439071064 0.01374988903674997 589617343.840002 47625.38917128524 320123 28040 110566 DOCK_20210203 15280350.630812272 429.07031875383666 0.02731112556480403 7.690085842051741e-07 10438941.012080941 293.93278681443076 43492 14835 229507 XVG_20210805 398436192.4585462 10017.276507812529 0.02411288305629412 6.063858261993197e-07 17152585.30437824 431.3496891668765 322359 54507 124542 STEEM_20210120 76417493.87807474 2110.3872499506087 0.20261775885088942 5.6034798850813105e-06 5619079.285624736 155.398016088248 11997 3832 212736 KNC_20210508 489025308.56658304 8534.421594967383 3.53215587450335 6.162457537627018e-05 341381230.7325828 5955.986692767903 160907 10704 105580 YFI_20210616 1416852290.8503263 35083.499562311226 39211.60544512071 0.9715251015216493 206698539.0103009 5121.259811139595 129093 6477 17690 CVC_20210718 141594991.51769394 4479.96766726799 0.21132999228357818 6.69210511289272e-06 18370617.375314113 581.7352337730083 103629 9844 183364 VIA_20190929 4220926.900409244 514.6928852672291 0.18228858906580078 2.2227970792025004e-05 106603.1523583863 12.999013098426346 40552 2208 3148663 GAS_20210124 24473189.98748899 765.078426210052 1.760100770682364 5.492140108276171e-05 3462676.2887410983 108.04780978534015 330991 101597 169176 FTT_20200325 72208535.07090354 10699.024377098744 2.5021554198193106 0.000370338186964661 4667214.557242255 690.7835395089035 8946 None 15714 POA_20190205 5917660.58612544 1708.1872601659713 0.026877978511315428 7.758576181217725e-06 176982.35389903662 51.08758736743665 16423 None 763440 XRP_20190726 13413623886.914587 1354115.2609848252 0.3129737267944508 3.161845019890687e-05 1825936400.316726 184466.85519293667 935933 204002 39002 ELF_20210823 146279837.22093728 2965.088759948161 0.31750217997830027 6.443634449966733e-06 21354555.602913093 433.3858437005544 88216 33386 746184 BAND_20210304 305226325.93757075 6001.84824734245 13.398802746616346 0.0002644413900132461 280062294.12395465 5527.364179395792 66268 4170 210943 SXP_20211120 473875734.1226962 8149.425642505198 2.4703493107125496 4.246082750227538e-05 109977853.23314938 1890.3199782124607 34121 None 160371 LTO_20210421 158068040.25821805 2797.886245025042 0.5651585922900102 1.0023398475395023e-05 12370745.646897202 219.40197804332453 8144 3744 174432 NEBL_20200127 7493583.86869651 873.2297454430015 0.47002529738963483 5.470897727624368e-05 126134.01196621051 14.681471045802981 39764 6031 670570 FTT_20200129 70155548.86807035 7516.576718235906 2.4366776741265888 0.0002605961774320222 9012955.66314036 963.9115661945585 5987 None 31022 LEND_20200301 29764337.62593344 3470.4295442627 0.02642979451559548 3.0901529293691767e-06 450328.57882756484 52.65209974377678 43794 5750 155774 MDA_20210111 12027849.355282838 312.0084745000769 0.6091304904239628 1.5837266978528817e-05 722568.2649302139 18.78662569320296 None 369 3261426 LPT_20211230 1049462542.043973 22627.77777130472 42.77637464122623 0.0009193358824272589 138014035.329996 2966.152602262967 23670 2320 79616 LEND_20190510 8334418.424091548 1348.452809582158 0.007314387675233653 1.184670510761811e-06 983501.3604966947 159.2922211410316 11576 5899 565182 FLOW_20210813 1284212095.0484617 28885.3350922994 22.514429145925362 0.0005064092082603729 59806629.01805924 1345.209663254485 78828 None 60038 RLC_20220115 196044373.71528602 4549.129900356509 2.7755206327760304 6.437241604803351e-05 11307065.841572268 262.24382483087555 51129 8502 260800 ADA_20210219 29081988032.46847 562654.31876561 0.9127152054579659 1.7652011547290105e-05 4727330677.658762 91427.09052164933 216643 187651 16033 AMB_20190719 4309412.614344084 401.8304565902155 0.029781371862752152 2.7790840835485544e-06 143645.5084584582 13.404451214331983 19383 5661 802250 MATIC_20190803 24092974.523641985 2289.163697301981 0.011089687697989795 1.0536322748853433e-06 8551526.670006622 812.4813560525257 21142 1045 193229 MITH_20210131 8407699.418077918 245.7748875870267 0.013631327069002603 3.989337541788335e-07 59085811.176583275 1729.2024725147135 None 2153 386896 AE_20200207 73204094.00629738 7516.369230955949 0.21120213067835733 2.169698312495742e-05 9172864.689256012 942.3365651239624 25310 6347 408938 PSG_20210104 0.0 0.0 11.425805859158576 0.0003470981212802561 4744196.52123116 144.1212742279982 None None 36186 EOS_20210318 3899264583.8882194 66255.9850504545 4.088395594068652 6.936270075717674e-05 2467858509.310658 41869.07244022752 204330 79719 55495 BCD_20191017 84686059.31433547 10574.712487294953 0.45027615149987127 5.6226375258666975e-05 3439395.4039878976 429.48030004119227 21307 None 2032087 ATOM_20200423 443665242.9929437 62374.58355237586 2.385363839485233 0.00033529392696173997 109646319.5057493 15412.216968929159 None 8371 86348 TRX_20210603 5599744889.2336855 148814.68747830126 0.07821967233507852 2.077341617659683e-06 1607975681.1239674 42704.28017486708 1010968 111242 19068 QTUM_20190930 156626854.9921262 19429.10725418214 1.6293576819062687 0.00020235718336549517 148413784.11614087 18432.168491831864 None 15323 210417 ARK_20210823 208402192.05273712 4224.307388794958 1.3068356415348434 2.652193178898429e-05 9337689.883226877 189.50629006320142 None 23435 142622 ONT_20200518 299797786.1980202 31002.75627902954 0.4704818481127764 4.87058934097333e-05 78461890.4224664 8122.643810748636 84770 16474 164481 REN_20210704 341542672.79211336 9857.422880288126 0.38810333415518905 1.1184896467859527e-05 31549508.531761795 909.2371940265343 None 1178 90516 SNX_20201201 635149044.0182846 32271.907413533616 4.720383685058119 0.00024029922255675194 70956893.99097745 3612.182313706097 44512 2554 43275 FUEL_20190621 7237140.217761966 757.2270424781648 0.008984342309617517 9.406028703989174e-07 2324039.9068821026 243.31203464886696 1 1514 None AAVE_20210206 6206119654.851098 163772.09382153783 502.00771948359414 0.013215395745601226 1721394810.4645715 45315.86422239663 113907 4648 18454 NULS_20200308 22274398.342568055 2505.857238151299 0.2682302254006986 3.015549133635989e-05 6344958.9461199595 713.3251080986539 22654 5191 619302 YOYO_20210310 4411499.581990793 80.57896579073774 0.02522387426480491 4.60730793173138e-07 713829.2825904133 13.038565293555507 9514 None 1284003 AE_20190221 99391532.07633856 25036.905707152237 0.4368716924457419 0.00011007569201575516 50270872.99601581 12666.421809785339 959 6310 487451 LTC_20190725 5958518786.522814 606151.4364945332 94.6796545067439 0.009642956326288806 3916091298.7953763 398847.0127059202 451001 206746 151076 DGB_20210117 378413495.38919324 10456.450781515798 0.0271328757762824 7.497448784797791e-07 18485635.889472406 510.80139635212987 179773 23944 218245 NULS_20190708 70708544.78022973 6189.823930959234 0.9476023838797869 8.29013440238626e-05 5726029.968173426 500.9438434915464 21271 5312 511487 SKL_20210828 409832952.93903977 8356.312744472467 0.33776059609004727 6.886692236616284e-06 43705121.013847664 891.1155447694596 None 2434 218531 BCD_20210202 126814460.50891887 3798.0067377793152 0.6766935593019036 2.025951612309797e-05 2792698.081811821 83.61053690799064 28143 None 1670747 ZEN_20190803 46427162.04840159 4411.218458130492 6.613051397077724 0.0006283066374087094 2514367.9664488574 238.89033781073587 26456 1757 272148 SUSHI_20210724 1641208505.9207335 49091.461092822305 8.539721062428422 0.00025539455362137226 428235505.2219833 12807.094623052035 117142 None 5721 BNT_20210620 741175742.9651629 20790.681223292428 3.467583633704586 9.739414476558537e-05 63259046.50668575 1776.759087602133 122015 7501 35578 ONE_20210711 856585336.6758564 25402.479711420736 0.08305082034903909 2.4631559005176617e-06 35201604.2174323 1044.023873231482 None 25904 23324 SUPER_20210430 252952558.72752514 4720.060624622897 2.483136268574332 4.631408184031925e-05 41201756.88221475 768.4723405467461 98893 None 80916 LRC_20210602 468338716.9491914 12764.038414266412 0.3750751131604037 1.0227151774595867e-05 65918159.88279493 1797.3867158046094 None 10854 187996 NAV_20211111 30249956.43699094 465.7982542346751 0.42011411297267454 6.468319911827323e-06 379046.26673457795 5.836015594131094 58451 17239 860706 SC_20190510 98700209.64576761 15969.029658801956 0.0024200637964041363 3.9196828960108123e-07 2173609.9482778814 352.0511215251034 109996 30936 237750 ETH_20190916 20389680178.128475 1979076.4373906527 189.25504633546134 0.01836728433527961 6872781110.7933855 667006.3878366873 447925 445703 24076 AION_20200901 60772759.29009546 5200.84526047694 0.13520171124271643 1.1582611022249021e-05 4202912.004871564 360.059754168168 68102 72550 307005 HC_20190625 184559463.7198651 16719.441459891324 4.1887805825704785 0.00037925432288791496 99474245.58559148 9006.448752968288 12809 829 640655 KNC_20220105 126695729.82211785 2735.4132639424233 1.3557422568316522 2.946567327259025e-05 28281909.10097816 614.6784087427017 201211 12223 100267 MKR_20210909 2741028387.3413806 59141.32977571057 3029.615139222567 0.0654387969610887 123774504.62076923 2673.492937098378 178493 29924 42157 BEAM_20200518 20810282.73936503 2144.5299262087733 0.3363613897737975 3.4401169383688504e-05 241690674.67094675 24718.77596713654 14992 1486 578426 INJ_20210304 185280468.444445 3644.1881473817352 13.679423396612 0.0002699797740132652 26806355.09917538 529.0554639596248 51531 2597 104898 LRC_20191022 29161273.533065967 3548.35768081364 0.03039259352883986 3.6981852855507754e-06 3956876.46298529 481.47461644787694 34067 2439 558420 RCN_20190702 13729922.447588557 1295.6528251598218 0.027426492629002142 2.5871796649095206e-06 1006573.8458546854 94.95152808825488 None 1121 1949015 LINA_20210624 60415748.95470226 1792.1128313245813 0.024476679849017042 7.262788195414001e-07 13233211.424248993 392.6595122880319 None None 70371 JASMY_20211204 775983141.5347724 14452.431528646475 0.16200404846909228 3.021124500314276e-06 83450405.20473535 1556.220761811883 None None 84310 ELF_20211104 275413563.7747834 4367.6169692838175 0.5964127623749105 9.457049541687384e-06 27061453.72253837 429.1013282563716 None 33517 125823 LOOM_20190410 51418650.38181513 9941.295890308671 0.07431990233088594 1.4362236688753241e-05 4414164.559579538 853.0322860965446 18895 None 433767 STORJ_20200605 19061122.751514375 1952.9195588661273 0.13267132158745426 1.3570982385677786e-05 3103932.807684028 317.5020566267626 81339 8117 104942 CELR_20190513 20803166.520559914 2991.5042978415 0.008780054919282966 1.26176742253286e-06 24833865.407430463 3568.8344360857905 13201 None 376913 AMB_20190627 6213268.935127552 478.6932251955187 0.04327265848452966 3.318273911351006e-06 1244619.6473448626 95.44107179862438 19397 5669 665963 FUN_20210210 234202252.66939297 5036.8257776752735 0.03875681234572186 8.317886672499458e-07 9059324.180302447 194.4288688889238 35085 16841 258794 DLT_20200331 2347825.274018321 364.96300547524754 0.02857266730306063 4.450153455195903e-06 321134.10393045045 50.0161929941435 None 2581 None STMX_20211120 277325486.445345 4770.694873824025 0.02988504048270106 5.137185750349259e-07 6108472.1140255295 105.00355828108135 75971 5630 89765 MATIC_20200410 37216451.99170692 5105.870404112095 0.01351101946723529 1.8529952453908419e-06 21649893.915227927 2969.217133127445 33547 1617 187719 ZIL_20210401 2108060085.6857412 35840.93919216247 0.1775598060565801 3.021696504728147e-06 285348591.91202646 4856.036182732222 191417 25536 35468 REQ_20200718 37358147.0177727 4081.4800225135527 0.05011317614014619 5.474592781338968e-06 2479280.6055536508 270.84796357986596 39248 27885 405956 BEAM_20191118 32571586.931799807 3829.2273442645037 0.7185951630500693 8.447620867572215e-05 36338845.53189357 4271.901699362237 11985 1396 290873 AUCTION_20210422 120575741.8048857 2225.325711856843 41.082692627707274 0.0007588108874625371 6413003.159435164 118.45028423061824 None None 33253 BAKE_20210930 317724573.3812982 7647.486582200157 1.6539042825156953 3.978697765524898e-05 60388380.559840165 1452.726843609362 385642 None 17415 COS_20200610 18163513.377583865 1858.3935236875982 0.009205279741757692 9.418349798408187e-07 6253930.987730076 639.8687634700751 12198 None 171431 BAKE_20211216 213641621.4623344 4379.123137234813 1.112694318665776 2.280072199170144e-05 18235237.719373062 373.66649466725755 None None 29841 MTL_20210508 256331204.93185696 4473.466981180981 3.970594641286015 6.928323153294805e-05 57802516.327372506 1008.6008479070742 55706 4096 203255 GTO_20190905 12082766.064636376 1144.2353503856002 0.01822294094628194 1.7251466389484814e-06 30409965.080565564 2878.8793863694223 17361 None 900303 XZC_20210127 53407448.140732214 1638.8008982429337 4.636577699271478 0.00014234970923507012 2115553.9107221095 64.9505958046871 67900 145 431811 VIA_20200605 3973141.343595468 406.462433012327 0.17238889937964594 1.7657425848805384e-05 134809.92561170747 13.808292028881931 38837 2157 1856302 AERGO_20210111 13536765.844954446 351.14793207599433 0.05197198151439159 1.3512607882650889e-06 14562540.55539032 378.62304758516973 None None 652713 ZEN_20190224 32248525.400239546 7837.2541084191935 5.488036452479863 0.0013337396268677953 389252.7852342107 94.59883676627807 24942 4249 306368 THETA_20190520 87254790.37644027 10661.603437601165 0.11744755813705952 1.4353372904453133e-05 9389261.547845917 1147.4701937728119 None 3975 247302 STX_20210511 1845077378.3167505 33046.07940924309 1.7437587789195343 3.1207986199093446e-05 34043574.727258906 609.27659438905 61842 None 63157 XEM_20200105 286600077.54598176 38976.13587156602 0.03184768182493889 4.331203491391134e-06 20789414.343562603 2827.307321260204 213759 18129 305996 VET_20210206 2044961725.3336842 53966.16339055943 0.032021935559362044 8.389082644944465e-07 427116800.28744143 11189.573878234896 161275 77523 98520 DLT_20211125 375727.4438238144 6.567810034333647 0.004602216898360349 8.045981877400262e-08 25557.031392642708 0.446809474578684 15626 2610 None RAD_20211216 244243742.22387657 5006.418730421461 9.542416361059251 0.00019554801418606685 12442706.68394989 254.98222788467928 24459 None 200348 WABI_20200423 4432077.551559695 623.1026566008611 0.07521146901920503 1.0571950652799615e-05 934831.8485780859 131.40278072895202 36600 7719 1879614 CTSI_20200927 10098523.510727243 940.4435915359769 0.050890870658115074 4.737962041707787e-06 2693584.882353412 250.77391610067397 17830 142 380135 FTM_20190629 53291960.415451735 4305.852672591765 0.025882771607753537 2.0906390958968342e-06 17009600.994169433 1373.9230629135368 16204 1871 471621 POLS_20211221 215935761.32633242 4576.977735433179 2.601771890859779 5.518577681613564e-05 19971448.243978366 423.61126636777607 None None 7209 STORJ_20190131 17656366.185731325 5105.396312818676 0.13002945158086504 3.7598443285304244e-05 301046.6915076926 87.04864028316902 82715 7558 211897 YOYO_20200520 1377907.9941885634 141.25029992738604 0.007869010846402222 8.060653455950181e-07 559918.9979758731 57.35553164410631 7450 None 2546990 CELR_20190909 18226025.22853025 1753.2314438050307 0.005605530945036746 5.391985072725269e-07 5256522.1053221105 505.6271922188349 18328 None 503834 RENBTC_20210519 517545065.7469174 12091.826078992084 43028.84168238405 1.0043118880948654 2603225.7230973984 60.76042112403463 78608 5083 67257 AKRO_20210909 78174451.91559657 1686.7176794400389 0.02877558776716208 6.215442420235977e-07 23811925.49246932 514.3305951244122 45232 None 231252 QLC_20191113 3984464.676171264 453.32273512347746 0.016625394959988292 1.8888151825986965e-06 69926.6964693475 7.944389067336012 24608 5713 940522 AVA_20210610 150888942.01857993 4019.8542952823077 2.887220165566992 7.708781314240689e-05 6269921.110309036 167.40479743574323 None 10245 43410 RIF_20210821 185481167.02548844 3775.153995021092 0.24359827517755778 4.954984383496743e-06 8097974.641198158 164.71930212084763 44734 3382 841825 XEM_20191203 322599230.4773443 44124.35355321634 0.03581804431411052 4.902522832810544e-06 38825354.276539505 5314.142340197734 214100 18212 196816 LRC_20200316 33547473.63101302 6207.896759201365 0.029141534061536835 5.42308839175396e-06 1262844.2592140127 235.00876886834251 34337 6822 553678 MATIC_20200309 60128637.82298643 7467.72720490197 0.02151045077745613 2.673908576246172e-06 73503295.59268169 9137.004821563874 32466 1568 153243 FUEL_20200713 3766700.622590229 405.8724002135961 0.003715260041676016 4.0003287194429716e-07 386393.17580423004 41.604078875435796 1 1460 None CND_20210220 38760248.139277555 694.3446968898196 0.02013912835075346 3.6023132561162574e-07 603676.1220428332 10.79803683139243 34348 5981 249426 KAVA_20200719 66259304.7236948 7226.119222229134 2.4210192011066636 0.00026410738735132205 22803293.621548343 2487.5962564193082 26620 None 194309 AUCTION_20210610 92662173.14807405 2468.646846822507 20.71388247633893 0.0005530537368895853 4200704.153898203 112.15739649651718 61442 None 37628 XLM_20190914 1146986292.6156108 110802.41414474408 0.05711044360531868 5.517045029296844e-06 149953407.97870234 14485.96179417481 275953 103801 66255 KMD_20210506 351486552.3938306 6137.806735055406 2.7985848208317945 4.886868875113092e-05 12787380.563196512 223.29232833449666 109350 9084 204449 STEEM_20190830 52307888.97623635 5506.823725478025 0.16179190227568127 1.705886185945841e-05 612031.3168386436 64.53078022299853 10382 3770 255296 OST_20190807 7750376.369424066 677.9732814445279 0.011823223287468734 1.0324801191579357e-06 378656.18957384274 33.06670086705194 18069 758 571534 LOOM_20200801 18159266.893748187 1602.244902408443 0.02178019391941605 1.9214669229012327e-06 4003583.633354876 353.1994964334267 22081 None 586484 BZRX_20210804 35331879.268703766 918.9982162847771 0.25187840190928495 6.555531572058282e-06 11312647.031587167 294.4294318884485 28497 None 159675 APPC_20210221 10202041.757756243 181.88209349527793 0.09193393803615954 1.6389990857045244e-06 768971.326725085 13.709227825525 24419 3116 1017685 WTC_20210112 9299544.379768975 262.5283449533245 0.32200176511722933 9.058548912672108e-06 3287171.6732412223 92.47466508627703 54713 19124 816491 DGD_20190520 71941431.29524578 8791.15865543147 35.81561990003372 0.004377920423080603 442557140.92134386 54095.94894706507 16974 3357 447437 IRIS_20210513 169994284.30093184 3295.8559043695955 0.16111093606685328 3.196405033625666e-06 136391202.74608698 2705.9710386075103 23972 None 498236 REP_20190625 201384282.0973346 18234.856648681143 18.307662008848602 0.0016577142407891952 12787397.480999867 1157.8677220848763 125709 10003 269417 CVC_20200704 17900517.154619012 1973.949358244627 0.02671718978301345 2.9461930720069056e-06 3387755.729152859 373.57905303452515 85277 7990 96333 TOMO_20211207 186107604.50558177 3687.1475013089826 2.183785852731608 4.3256862947455234e-05 8808613.895125305 174.48276970100648 60973 2375 107758 CRV_20210819 734030139.037583 16293.511723346537 1.9365988529846334 4.299307048228465e-05 158973804.85192406 3529.265746647619 None None 12354 YFII_20210421 104346068.14364728 1846.9794925313997 2602.7933869221292 0.046165260982146995 221782546.87218255 3933.7156798861497 None None 334053 NAV_20191019 5485339.790889687 689.2373236890361 0.08255609562706778 1.0373239320327941e-05 253264.16171962564 31.8228441016358 50971 14157 427843 LINK_20200331 783232332.0405982 121927.681292777 2.143747399670718 0.00033438276149197824 227848434.2911878 35539.90953953511 47304 13839 83038 AVA_20210221 95055482.65099975 1702.2986440671239 2.4830162481247045 4.416351118674935e-05 12297761.301123045 218.73087588706107 None 9381 58416 MITH_20190103 31532965.737411115 8152.327967806946 0.06458524837850962 1.669745025090399e-05 12080173.546872964 3123.129536315524 33 1959 476361 DCR_20200316 124836183.41224355 23231.366464930135 11.117849110416898 0.002068974074070907 77718453.00794695 14463.001139283384 40836 9743 200827 STORM_20200323 8469208.136849701 1451.6325392358701 0.0011062727071213209 1.8972622025373917e-07 732767.5696105155 125.66993690776773 None 2518 875750 SUN_20210128 0.0 0.0 0.000305964628520702 1e-08 188.30473974277504 0.0061544610778443 41 None None CTXC_20210107 833605.3129378738 22.70484893877759 0.08303211693445821 2.249621279328423e-06 4569888.56708319 123.8137595935919 16652 20068 682759 KMD_20210206 103640896.6440405 2719.0076870100515 0.8362799885481369 2.1908800376036048e-05 4766489.8037521 124.87214214716921 97174 8505 251504 MANA_20210421 1853247590.4606414 32803.44295725557 1.3909888877789027 2.466995297826054e-05 1101953179.4062884 19543.74571863503 119141 28821 13153 REQ_20190411 21913553.50374062 4128.923692170581 0.029702582342834044 5.59622846232722e-06 438149.9348316185 82.55131179404268 42163 30441 347725 VIB_20211207 8016440.579275083 158.8220825072372 0.04398242838323881 8.708154409337004e-07 1021203.3575789377 20.21897573195326 33290 1321 3749819 SNX_20210813 1754054502.8817353 39452.9872057283 10.393610113397791 0.00023376201318085532 155086112.51441225 3488.0317312489647 147414 7420 46425 AE_20200404 34755848.55020894 5168.393301690085 0.09910607929072428 1.4730064524002487e-05 8278410.62869351 1230.4141541018098 25318 6343 695802 AE_20190804 98893144.88098313 9165.275614036096 0.3060398080545332 2.835785234397398e-05 25978350.65336553 2407.171265238962 24886 6361 316448 BEAM_20201226 22119954.158985198 895.6942303972804 0.2848604413469683 1.1552388630869297e-05 5416776.819227577 219.6749771449689 16375 1608 396725 QSP_20210218 41760248.18753612 800.1562757945408 0.05841126413442323 1.120266511004663e-06 1584804.10441757 30.394873163435804 59731 8213 198547 ETH_20200207 23314707733.86607 2393859.4309175136 212.73341421352782 0.021845815503943773 30730370695.67516 3155733.719911451 450278 451089 19444 FTM_20210108 60573579.66507653 1547.5109137592535 0.02400936920662255 6.082411002876516e-07 22308673.384207875 565.1565406985231 28554 2841 142400 OST_20200223 8643692.909664676 895.9401518644418 0.012471069820067626 1.2916554357689978e-06 268584.0981536193 27.81783081536426 17834 756 817761 AION_20190414 54719782.78750696 10786.582155208795 0.1820042069293553 3.586842039844e-05 4489824.862302293 884.8307871198563 68618 72494 263529 WPR_20210110 6466704.77278482 159.83090815232367 0.010609932081114338 2.6252456654388593e-07 302972.7535930428 7.496540996072752 None None 7558136 POWR_20190819 23094912.336547565 2238.3911254026457 0.05437420699622481 5.269839058480941e-06 628979.03213778 60.959385959511 84172 13099 483233 JUV_20210825 34319634.50075104 714.1774445414122 13.160644412185437 0.00027404784979123177 18980183.949702404 395.2297803321808 2651762 None 38736 MTH_20200905 2890615.8274191 275.52560794596127 0.008312493535817441 7.927795523341466e-07 261930.2327555517 24.9808233560695 19087 1899 1279779 ARK_20210508 369995624.4569105 6456.9182341490705 2.366142222044709 4.1287009684955406e-05 27831367.094272356 485.631806939228 72238 22965 75515 POWR_20210527 119228939.23546053 3047.6441161129037 0.2786194891779344 7.112004370213201e-06 4456935.375089383 113.76714514450357 90887 13870 168476 FUN_20211221 107203442.65734085 2272.285827926927 0.010107427864666858 2.1438707224266697e-07 1756572.924849235 37.25839368645131 26180 541 223479 STX_20200626 99086130.94370133 10701.602997024142 0.13839223582480106 1.4947489195722658e-05 688138.0725903865 74.32451931936264 41048 None 97025 ETH_20200605 27105225697.6403 2772871.6084742183 243.70782131595863 0.024931373235123438 10063518956.568722 1029500.5954678621 459721 464226 19155 INJ_20210710 202709084.6820067 5966.309844253455 6.992624883661229 0.00020575442716467757 16539412.445902703 486.6637907888549 76288 3733 124543 NPXS_20190909 87556078.7180054 8424.397797155647 0.00037024335331889294 3.5613872333339364e-08 2296610.2007832834 220.91195360283342 None 5468 165759 ZRX_20190706 171667921.9627881 15619.237871709343 0.28732664857427215 2.6148082903434847e-05 34392628.71354285 3129.8917497946886 151102 15978 206645 XVS_20210304 426079459.9446886 8377.899202483834 48.64411935807627 0.0009600520880770628 113654417.00209993 2243.1110235307674 34565 None 20030 BTG_20200927 138655095.8881436 12913.122973661139 7.915955045434341 0.0007374000715588463 2626797.8957913825 244.69580047001276 77950 None 245823 CELO_20210523 333916680.1139929 8884.209573012266 3.0550192904264937 8.129678650727687e-05 36437745.59080647 969.640890119786 29774 None 73566 NMR_20210125 143899026.33222958 4469.009941816627 27.589110119065722 0.0008548178351978305 9950504.0964831 308.3052818367188 None 1999 2335404 NANO_20210429 1072474770.4948713 19593.378207916954 8.039654162749995 0.0001468372738728224 56325711.01256662 1028.7400038118883 118525 86609 65732 PPT_20200913 10907804.961673642 1046.0823913625918 0.30161884725165833 2.8886807464940564e-05 865399.0228136905 82.881475014421 23663 None 1237047 ICP_20210707 6305194609.374749 184690.4266930709 46.10539697339144 0.0013497928460031133 234414009.76829463 6862.761718996936 None 21362 23001 POLY_20190915 16677107.13507092 1611.6959390084548 0.03268166953952221 3.1583963363823693e-06 3891582.4750618055 376.0872686476816 35231 5061 289476 MATIC_20190901 25657991.281462643 2673.0380247542535 0.011795745746797872 1.2288755018131156e-06 4839536.024028707 504.18069257599757 22811 1134 217453 DASH_20201101 685663855.1638188 49690.34298042319 70.02095779532301 0.0050745442829921465 382778836.047822 27740.668155307725 321028 35463 71186 REQ_20210304 62591718.482505195 1231.6170459784944 0.0809802035253979 1.5961673949409369e-06 949545.5761073262 18.716101252049487 41261 27315 337222 STMX_20210418 599198688.679566 9939.819956626154 0.07149119674911214 1.1893358788069466e-06 226899545.8098423 3774.7272809501155 54506 3776 60335 NAV_20200412 5551359.46720721 806.6718416568729 0.08120218188613047 1.1799544597243468e-05 143482.7366576856 20.849574614891907 49275 13943 1202030 FTT_20200117 69035707.05002156 7928.344760945582 2.3938910557094943 0.00027473243631539194 13339886.645504732 1530.938323007554 5803 None 31022 NAS_20200610 17721746.939751472 1813.2987958407346 0.3894860268045009 3.988479814207065e-05 4594310.114659632 470.47421194714684 23426 4919 697228 ADA_20190305 1250170403.3857007 336676.7943504308 0.040182274659520956 1.0821276351958468e-05 32363603.102818146 8715.67117312793 147954 71543 114984 DNT_20210210 144390843.36925465 3105.3139483212976 0.1931467461164039 4.1468629180058915e-06 23317983.392838202 500.63737856687374 62513 7639 232543 DGD_20190224 32680208.631536175 7942.164678314281 16.340112485824335 0.003971084324699303 320130.5810999785 77.8002925968762 16066 3297 571797 WABI_20190510 14915431.458824854 2414.4257963111754 0.28479260047600047 4.6070509646939225e-05 1315371.0784236563 212.7857811492847 36424 8049 956243 SNX_20211021 1750989909.5447948 26416.62997772412 9.959939142492168 0.00015028075054800401 78620716.89408398 1186.2703350322577 162421 8148 50841 MBL_20200423 4186738.60250971 588.9416968295221 0.0011895817384591715 1.6721119266066511e-07 459628.9996678783 64.60683678234876 None None 95998 PNT_20210310 64315370.64378365 1176.6941856937754 1.7818510748729086 3.255756803440988e-05 19199942.038549036 350.8168712816655 10239 195 419542 WTC_20191118 21147960.791015055 2488.046204388158 0.7264823366204445 8.53721701041503e-05 3996720.999561255 469.6724584119377 55463 19699 553431 DOCK_20191220 4198902.91488127 587.8204426602427 0.007505005511171473 1.0502912104592685e-06 1853710.7530980376 259.4183452383366 43697 15096 302140 BZRX_20210117 38323606.04918954 1056.163453893307 0.2725900569112497 7.5309719659636095e-06 28413438.130543817 784.991237180141 17423 None 186488 CTSI_20210620 188688322.28354594 5303.539439611575 0.5134256799044019 1.443521064972096e-05 16078093.916897146 452.0433660030833 44144 3721 123787 ICX_20200313 82911254.20650025 17228.278832928438 0.16504905220357646 3.4442098728488865e-05 20074775.016817454 4189.163002454649 112571 27527 143772 VIBE_20201229 3248678.070305562 119.76429568 0.017099937249682205 6.3e-07 105903.32241762184 3.90171567 18503 None 1358050 BLZ_20190830 6389043.386777281 673.2634881657856 0.03050941714669117 3.216823124010116e-06 560138.4887557387 59.05935320278507 36490 None 1006021 XMR_20210725 3743590276.4364195 109415.91571369153 208.4475899399485 0.006092409224147876 143012804.85233563 4179.911754818751 430592 229399 33010 BCPT_20190321 3899370.080977252 964.8455466883918 0.046480011438708536 1.1500840165297734e-05 1502317.3740277449 371.7277913975268 10120 1542 1708834 NEO_20190411 809441786.2365198 152505.97104485933 12.450119496251538 0.002345909008392708 245611058.87336785 46279.16991040778 319692 97722 185739 SCRT_20210310 216248963.12591508 3956.4243356679835 3.123650507696102 5.704945498330171e-05 6190859.909451491 113.06808583162444 72128 None 125864 QLC_20201101 3355836.6962446705 243.1988724020568 0.013967622526852196 1.013329625278246e-06 143288.39115297896 10.395353356280415 27503 5614 940522 ARK_20211111 297336373.34731597 4587.927337956545 1.8422527310523988 2.8362315354545317e-05 2361834.596197775 36.36151354454483 75559 24186 149782 CTXC_20200526 950861.2551758193 107.00688027723207 0.09272601202985314 1.0427208909539584e-05 10309384.395902682 1159.309049010064 16412 20060 554748 RSR_20210429 1098747908.0084677 20072.891955318126 0.08377968954875359 1.5300652019624129e-06 149839505.27098778 2736.5130394877756 69928 None 82413 CELR_20210519 382051027.07011944 8963.21528428179 0.06848424098238239 1.6007392089626452e-06 248700733.7157601 5813.089406349822 52657 None 130545 XTZ_20200905 1991882837.521398 189860.83330735142 2.7515062887045683 0.0002624217296827992 293281736.56833565 27971.406393140664 72464 29171 69245 REN_20210727 307899898.2759931 8219.461482598243 0.3477357710155579 9.291434539114809e-06 49161510.92394617 1313.5863453443415 88036 1182 100399 RENBTC_20210124 470660259.64905906 14704.030933459851 32023.309546524964 0.9992410985197646 11146308.242085509 347.804441514074 35770 2293 93933 DNT_20200306 5069615.012712704 559.950730858975 0.006761418044779909 7.463971627366006e-07 239271.9846818441 26.413383894634954 59061 6105 762988 CKB_20210806 318572130.0449299 7775.429301726363 0.011650761314477148 2.8446261629501555e-07 18264990.376669407 445.9542864975282 50670 5309 118997 FIO_20210401 73128556.15340306 1243.265397284387 0.32161758456259376 5.468935322237197e-06 9100446.13513756 154.74822803690483 54806 322 283512 TORN_20210704 34542687.010203615 996.4171734802643 38.85491786181949 0.0011198571802850913 1906109.8324228574 54.93695263600775 21261 None 103371 SKL_20210602 399519860.1504496 10889.949125448918 0.4167751554749292 1.1364184456301245e-05 77269766.09385446 2106.9103166314712 25651 2140 111729 ATA_20210821 99675083.03018673 2028.7169524535059 0.5786584947065156 1.1777610433861468e-05 13877625.873817228 282.4554945341153 66674 None 88669 CDT_20210429 28356760.427405156 518.4286846279598 0.042080597293452565 7.686292297926023e-07 1896836.4336733087 34.64693993979288 20709 327 413427 ZIL_20210724 771816836.8358542 23089.916163367998 0.0629189102622946 1.8816945990753892e-06 49367104.73250685 1476.4053280626458 308627 35165 41251 QTUM_20190906 193534011.61046827 18311.47518501742 2.016025213076609 0.0001907478091797229 182571923.23351854 17274.185932117533 178052 15344 240356 OST_20200721 8327587.920832872 909.0018865171468 0.012042456590559086 1.3145001725810964e-06 2828199.7906726915 308.7135157993936 17640 753 831793 DASH_20190914 842327939.074353 81342.68812518069 93.26125985327037 0.009008705661939589 297567170.9952694 28743.929283927915 319062 30576 81581 NULS_20190704 69647703.14212313 5803.350872645049 0.9376381935578193 7.813203352064496e-05 14535746.27296785 1211.242697716623 21221 5304 511487 GLM_20211202 716867394.3515855 12536.11152638012 0.7168673943515855 1.2536111526380123e-05 6823307.5658927215 119.32157230026382 163136 21764 239313 XLM_20200523 1355846464.3125808 148115.48499810125 0.06702581843148897 7.322039674608712e-06 366003909.9492994 39983.02762166139 283156 108712 77209 REEF_20210108 0.0 0.0 0.010065703975840739 2.550706508606154e-07 5686091.7694297405 144.08879219602633 14574 457 142268 ENJ_20200319 47781318.11018187 8878.385996669695 0.05193479429411278 9.639405582211132e-06 4359613.804626065 809.1701568434048 53838 15266 111026 NULS_20210523 62158038.65840878 1653.7809428992362 0.5516223905309128 1.4677462593415381e-05 43947450.56452434 1169.3453217443862 52837 5367 242019 SXP_20210202 95266102.78062634 2855.0838696894534 1.2727670932911346 3.810535077957811e-05 155996167.5351852 4670.3664130939005 96413 None 145148 GXS_20210128 22687307.10085095 749.577406054442 0.3253202403821842 1.0700999140663143e-05 9877574.64284612 324.9103641407518 None None 451509 SKY_20200323 5556701.823986694 953.0208454385289 0.3293674208331233 5.648664694259527e-05 169156.72821557836 29.010447847296607 None 3829 253868 YFII_20210805 179146534.73914295 4504.187221388983 4509.679890027214 0.11340850281670499 160256935.05444488 4030.1084586313837 17877 None 584326 DOT_20211120 43630032597.80758 750546.1381392252 41.42920166167476 0.0007102429097782099 1421375199.7158933 24367.39346263306 910371 35287 15201 RLC_20200127 36592049.16321011 4263.965981096982 0.5215116909959865 6.071081656649264e-05 413821.5977916336 48.17427403554432 27632 3529 233222 COS_20210825 79775850.25416775 1660.1025535220394 0.02284907342641895 4.759056469354212e-07 15480406.591450294 322.42939467336413 28196 None 429015 WPR_20200407 3984756.97075978 547.702689710185 0.006560088784661397 9.004933751312802e-07 297930.1121628603 40.89641178059491 33410 None 1058111 ETC_20190511 620319974.6209679 97348.97793803115 5.629360169996201 0.0008836187608917906 507000611.80860686 79581.91319245491 227682 24460 756071 FTM_20210217 437163196.6473599 8889.112801758374 0.17203552133886396 3.497445318825901e-06 56686085.79982242 1152.4159887459523 34587 3614 100563 BNB_20200207 3157866992.351171 324236.94808931026 20.606359319469284 0.0021160884648297636 353390568.57729137 36290.04493964621 1105550 58919 1981 ARDR_20200418 34225146.03063003 4861.575601823923 0.034259422754392914 4.866444503882279e-06 2062513.9457049065 292.9736944843645 63926 6353 1277377 BAL_20220105 212578943.17504537 4589.950734403653 19.40924752689457 0.00042250849163127295 33087238.176673405 720.2566238026465 117154 None 2418492 THETA_20191011 88400710.99576028 10324.20146592573 0.08840071099576027 1.032420146592573e-05 8909616.139588842 1040.5422193220854 None 4023 359269 CKB_20211120 753907971.0884908 12969.110553478691 0.026460647627123114 4.536290010794305e-07 46725467.52168206 801.0396213849021 68240 12805 104064 AION_20210127 36876020.50290001 1131.6110493159956 0.07544865252381912 2.315640251613364e-06 3303023.7194273607 101.37509976503578 68013 72529 431137 BAT_20200725 383017556.3738527 40144.431398756125 0.2576120666412261 2.7010027294589942e-05 133451165.52823135 13992.044978360233 119866 42798 19525 ADX_20190826 9388818.235256998 930.0006165050552 0.10200206940912158 1.0103719665063673e-05 1055659.0927586057 104.567324926788 53786 3841 611553 COS_20200207 15503310.162186923 1592.73772836543 0.007864350736867498 8.075983544525211e-07 4838032.518013172 496.8225898189686 9765 None 188976 DCR_20190524 270674955.2217719 34359.47742408742 27.51374560688696 0.003498627588431727 13783424.371282982 1752.6900719894047 40497 9452 352776 MFT_20200105 7692789.134842407 1046.8882028214396 0.0008523289624818547 1.1590454314357287e-07 768082.0035218042 104.44816219288111 18546 2411 945394 ICX_20190813 98545583.16528428 8658.818722413338 0.20098599294846764 1.7659781826992654e-05 13347698.700130694 1172.80534567988 113977 26018 229714 BTS_20200319 39621435.1308488 7362.17435489131 0.01458425651682089 2.704607750606511e-06 12217403.382036826 2265.681753556118 13306 7030 131725 ONE_20210218 259128041.49445477 4966.315496779406 0.027043763917757466 5.186709018804752e-07 53867107.574026324 1033.1143753539172 83299 3075 144448 JUV_20210814 37683477.11775503 790.0152778846472 14.47289740498503 0.00030334779472602716 7483757.5490977345 156.8574201321372 None None 44064 WNXM_20210430 184386923.59312925 3439.8073015297728 89.09095890076644 0.0016623222688315453 43514264.0197489 811.9199858698746 26207 None 101327 XVS_20210202 91986673.45232096 2754.938231458626 11.418109396520757 0.00034187775392232174 20799432.04696694 622.770623764017 None None 58717 THETA_20190920 101953772.9064987 9954.45876349332 0.10201958881227365 9.954458848075803e-06 9964537.369525475 972.2797194132726 None 4028 338625 KEY_20200414 1681665.191229274 245.32127616781824 0.000609451881408848 8.900464209023987e-08 562951.632587375 82.21372367696836 23350 2750 226427 LRC_20210813 355393186.96117294 7993.735095997752 0.28522107565075705 6.415525962176714e-06 46374073.73356753 1043.099894812454 83701 11112 273210 STEEM_20190909 54059170.4854264 5204.071077913582 0.16661141884304548 1.6036098915336337e-05 463437.848436451 44.605197112201324 11072 3768 235183 STORM_20200501 8510068.59906629 982.7396609408364 0.0011153382442483637 1.2939402923021895e-07 555238.0172835658 64.41497420949209 None 2510 836447 VIA_20210427 38828643.18060462 720.9303314365318 1.6796379307801845 3.1168403049933466e-05 2751722.0089503545 51.06266004394112 38487 2269 732301 VIB_20200313 1379690.6422724007 287.1249520505078 0.007748137523329233 1.595934131555307e-06 363847.54916281404 74.94403921501078 31521 1106 None OAX_20210112 6194090.5224445285 174.86064552646752 0.11149735829274533 3.1366420409554407e-06 271774.7171768159 7.64556233993789 12816 None 1823390 DEGO_20210704 24953328.99181573 719.8028785543978 4.610874192677719 0.00013274682989592682 5396792.221042237 155.3733693467591 None None 168590 BLZ_20190916 6905716.804367523 670.1574030815093 0.03299173197460957 3.201712989468295e-06 129347.16031062769 12.552614201524518 36459 None 550438 REQ_20210624 40977787.94691668 1216.3611874872506 0.05309373176963116 1.5760039245431606e-06 632667.7327810521 18.77974662095763 43288 27762 366720 FRONT_20210314 95943503.52113013 1563.9078241976015 2.631687233366444 4.289930276661938e-05 94082830.17986457 1533.6502627873062 None None 145212 BRD_20190708 21379878.77431951 1869.5297009020153 0.3561879835036826 3.114629513542349e-05 235376.1113206219 20.582091958598 None None None EPS_20211011 222112846.14075738 4059.4507189376386 0.5361935991902225 9.796411314993779e-06 18973753.69948197 346.65593865764987 None None 45967 LTC_20210430 17074601454.145075 318544.13944917487 255.7900201528906 0.004772024229561694 5406485449.861107 100863.51120379471 169536 301697 95869 WNXM_20201226 29761643.58477306 1205.1260257785473 16.68568154317665 0.0006766804012738046 9974133.562486783 404.49655496284475 16890 None 115937 POND_20210823 71616969.36103268 1451.6928566948432 0.09109925572652203 1.8485618407556472e-06 28764983.307989344 583.6913822078743 20374 613 209753 GVT_20190224 16728009.345458912 4065.8721679623013 4.228822427177524 0.001027716943017993 773647.6149130018 188.0170604141979 20648 5795 148821 WPR_20200410 3393114.895459724 465.56759354910446 0.0055764903545809374 7.647986991703161e-07 95034.11935112049 13.033640557959044 33390 None 1058111 BTS_20200901 143627789.9447972 12288.348768032807 0.05209069107201748 4.462563432234824e-06 230622695.65499932 19757.242361222554 13238 6933 99740 MTH_20191022 5297567.274750465 645.0476817067473 0.015242863208114273 1.856016745994099e-06 197359.42322255677 24.03107536160315 19457 1972 790483 ANKR_20200425 5503347.594593076 734.0686734541214 0.001377470197128195 1.8377874321296877e-07 1013758.4349162312 135.25319929162313 None None 5745 MTH_20190605 7364446.351467582 960.2991023754321 0.021562217047297473 2.811640778891367e-06 349690.21958361653 45.5984317013451 19400 2008 1790455 ENJ_20210104 126244803.83637542 3782.1429179806737 0.13614775906311982 4.096934514293094e-06 13869142.965493247 417.3478204121717 70035 16054 75025 NXS_20210107 19678584.30802588 536.8865962473012 0.2891373365013959 7.842147000140886e-06 443434.08685699385 12.02707106624052 23922 3523 514648 EOS_20200107 2729712866.78047 351815.1661162858 2.852109097050814 0.00036727917585220333 2308238237.893287 297242.4296674386 1378 69657 75095 ETC_20190130 419533774.5195237 122907.83903608893 3.8771577587076007 0.0011357606002660933 131679621.24944094 38573.75298624153 226159 24130 451316 OXT_20201015 0.0 0.0 0.2578448288915654 2.2571308727001142e-05 4679498.224171884 409.63551434904235 47135 1693 93284 LINK_20210220 14238686858.572706 254970.39427554293 34.90034448560798 0.0006239575701656697 2626562919.5127974 46958.38511915774 158970 39228 34188 CMT_20200324 5746330.009825432 893.042162860436 0.007263927862272644 1.1264473264652736e-06 8777499.876872623 1361.1631966646478 286234 1637 911838 LSK_20200518 156993468.000251 16235.043919225393 1.1245860555531206 0.00011642100279012925 2845677.482677969 294.59428606174004 175710 31261 217591 WAN_20210124 63234382.76442795 1976.826971576026 0.3848585178118083 1.201700743477888e-05 2959760.592991046 92.41698807490357 None 15846 602909 WABI_20210823 14951432.654908895 303.0651780343033 0.253266762704957 5.139221713002387e-06 834686.9575695127 16.93724549596094 45424 7886 850798 PAXG_20210916 312126335.0448663 6476.664737281933 1801.8423228185434 0.037377667795460395 7796933.394207918 161.7406709462579 25146 None 42422 AGIX_20210805 191481261.0570525 5830.0 0.2255884127593693 5.673051029722324e-06 827042.419717589 20.7982927554334 56121 None 210064 REEF_20210603 326649786.67237103 8673.420507311135 0.025750597139241726 6.847130452559112e-07 56110432.8209155 1491.986578784542 174200 12066 36544 REQ_20211111 165099315.16322047 2546.5962610434813 0.2146375406383878 3.3043375321851034e-06 25810329.816733643 397.3491369582712 47783 29376 249079 AVA_20211007 157708137.71848968 2841.1165970369266 2.9838332044905966 5.378718499774645e-05 8530835.148763148 153.77857168465172 None 10793 58653 HBAR_20200117 22298970.356434073 2561.917039533182 0.011530526770978884 1.32328900441629e-06 1538866.6411212941 176.60644183092776 35089 6128 154670 RARE_20211230 138105865.2986136 2972.0342595917245 0.9524958141234113 2.0450479689473234e-05 13924548.284011718 298.96581973889414 228633 3191 8540 CITY_20220115 40092423.08169453 930.3283596577863 10.551053293007437 0.00024463742960786656 2548210.8348281696 59.08298739656834 None None 38699 FORTH_20210725 136072229.63309282 3982.6707418906753 15.89310562048398 0.0004651710943764799 21930816.57171633 641.887255319484 31498 None 61730 BNB_20201030 4420211966.048975 328350.1377870906 29.821938544896494 0.00221777861107998 274519364.77393854 20415.278322914164 1309967 75183 639 VIA_20181231 7187584.449364905 1891.9929849751745 0.3104869584044248 8.169252474718569e-05 94989.21073822929 24.99270336128181 41189 2233 2532367 ADX_20200412 5349531.58139088 777.2791361591692 0.05807210098554209 8.44360292646298e-06 22912.61001585454 3.3314617122418286 52042 3761 33366 APPC_20201231 2762239.1438027164 95.65520388719837 0.02479609324669942 8.599646150845085e-07 100048.72414683853 3.469835417 24261 3127 534136 XMR_20210206 2751972565.6103277 72476.73367623625 154.48042752741856 0.004064049547083929 465747896.27652556 12252.830712693043 344436 194871 56021 PIVX_20191012 15686816.038848523 1897.6160228076633 0.25610069933400287 3.097380893757327e-05 492213.99636597454 59.53026414799359 62993 8582 263500 NCASH_20190812 3676988.640279437 318.8686081723381 0.0012691667543393672 1.0990075316131943e-07 684161.8412702028 59.24351656923804 59942 58982 884408 ANKR_20200404 5716410.681911486 850.0033073902904 0.0014323369047035805 2.1291806932873292e-07 1683539.2163983393 250.25950139078773 None None 5685 BQX_20210212 531672636.9181672 11150.040140814375 2.3967497482811204 5.0208122370791984e-05 8603964.378871901 180.23946668530812 38848 896 65097 NXS_20191024 14278126.72002287 1913.190185450616 0.23961250397319245 3.209458059103009e-05 271457.4723852885 36.3600128542611 22121 3537 388787 FRONT_20210616 36245925.118360326 897.5063288089026 0.8184951592506299 2.0279310857135457e-05 19182828.903420735 475.280209119224 65625 None 199058 BCH_20201226 5935631398.034299 240480.63215202163 318.98046135471856 0.0129306542173837 4653066917.724413 188623.46335543576 None 349484 540127 GO_20201201 8122311.639209641 413.1293908108199 0.007711646824835441 3.925745999220369e-07 362310.1158816174 18.444017473915878 12138 680 586203 NANO_20210729 538926068.1914958 13477.53171340653 4.043553422629562 0.00010106677828455098 18698585.265745986 467.36263226094894 None 107703 59418 DIA_20210418 197977975.70077136 3284.1617830965097 4.756662525312065 7.893639664117402e-05 54341556.91031363 901.7933619518298 30504 349 265172 EVX_20190615 17783785.944555033 2044.881812867247 0.83816757287824 9.659619374758753e-05 3106083.489844661 357.9664166091566 18073 2909 738381 QSP_20210821 34071878.260006405 693.087825748062 0.04773295788460979 9.709805765419458e-07 661822.0094003325 13.462738215577426 67111 8506 208905 QLC_20210519 13541352.40163895 317.36119250397985 0.05652744537163168 1.3212630656466257e-06 1336674.112037435 31.24319741375363 33798 5637 940522 ADX_20200308 8295400.443925262 933.2610877413325 0.08963503433462343 1.008025086018222e-05 163607.7401905492 18.399134624431237 52461 3775 53936 XLM_20200629 1302161250.8490098 142821.75615172889 0.06398241838890496 7.0154610499034534e-06 182779477.75259253 20041.166607690542 283204 109349 69025 BTS_20211125 140741461.64572617 2461.6976817929476 0.0519621686085401 9.084002138381118e-07 11788147.102112724 206.0798391419401 7785 7479 199567 WPR_20190528 8213559.526947355 932.5421716531403 0.013674056256829851 1.5537894575190131e-06 909817.0997813448 103.38294587640645 35071 None 1131129 REP_20210809 167577978.80016986 3809.253870359586 25.493410621214085 0.0005795491071427974 45146736.6007477 1026.333874118893 152568 11296 167896 DEGO_20210508 79425437.97174707 1386.0800636434958 14.687739082817693 0.00025628756382968336 28463918.793194428 496.66925341066724 None None 63518 GTO_20210418 67658587.65007372 1122.3558937409211 0.10165287117199678 1.6891369616993288e-06 39729049.40869666 660.1663586644975 1765 None 321700 COS_20210823 87261828.57120088 1768.8178420444085 0.025355565100839562 5.146317394874639e-07 102380903.73331237 2077.9841572857918 28071 None 429015 SNM_20191102 5752831.067700009 621.2929239583157 0.013146278578696264 1.4197687644935878e-06 457075.20340577926 49.36310248831156 30871 9824 6574745 LSK_20190729 188003855.57931474 19694.62031550824 1.4022906140148825 0.00014694911447732874 7518405.731721884 787.8702556487896 182551 30681 196756 OAX_20210821 11660420.026821353 237.1441748549374 0.20269455168821257 4.121456734394958e-06 596064.3755222951 12.119978135417005 14284 None 1894568 ANT_20211225 409367954.2874714 8051.124454454631 10.741085390748198 0.0002113023533624159 348001096.6759755 6845.998148722759 95385 3452 53298 SNT_20190622 102964884.50534788 10173.848301884987 0.02916057841463786 2.8809767664535135e-06 23889382.107155457 2360.198547402506 111581 5745 303277 STMX_20210420 457133995.4054589 8169.757107349443 0.05402908349448721 9.65471756885571e-07 72973722.90184191 1304.0026574522744 55340 3839 60335 BTS_20210218 165994101.93112212 3183.592003586533 0.06124800658323118 1.1746722427216058e-06 46757680.593921356 896.7630555140347 13337 6963 134881 ENJ_20200117 72021582.64676571 8273.532348879544 0.0800378857717763 9.19188025228787e-06 8475638.846874679 973.3772524209229 50210 14272 23876 SNGLS_20200530 9694983.713521628 1028.6742345391424 0.01437620358701559 1.5333318649669512e-06 1975166.6557186805 210.666602869275 8841 2126 2556875 FLM_20210314 0.0 0.0 0.4982551570371328 8.122089344721596e-06 37346649.70053858 608.790137562366 16623 None 156358 LSK_20210708 389950604.8771355 11476.776370754653 2.7080494615493333 7.972643410859574e-05 30389140.27553809 894.6726506274425 196522 32566 337278 ZRX_20201101 233452047.85649508 16918.366397919377 0.3240792622131277 2.3486604854893698e-05 30171503.63602221 2186.582933255447 160907 16302 67906 QSP_20190302 0.0 0.0 0.016248507597455105 4.249327136611804e-06 86410.65287826025 22.59820663317068 56555 8564 1028822 HBAR_20200324 129589111.08579256 20115.490272948802 0.03415548309273033 5.271029463497939e-06 25540993.870480184 3941.602314709332 38131 6386 115268 BRD_20210218 16447304.30824867 315.142134765273 0.20800668906717634 3.989349165439328e-06 1492886.7140126715 28.63199444859448 556 None None SKY_20200105 7235206.428945594 984.4467263569405 0.425800185917918 5.7907739157282256e-05 73962.32268160279 10.0586872222236 16319 3810 595131 SKY_20190901 10571257.633393837 1101.2521595763924 0.6601117780225787 6.87820834808792e-05 234143.7669946719 24.3972258398398 16357 3805 477504 STMX_20210105 21942860.193879303 701.3569561757729 0.002616305032213011 8.362463770024459e-08 20984869.624978382 670.7368208099712 21852 153 199234 LEND_20191030 16865408.09269236 1792.2474360849085 0.014837006701266612 1.5769235609365461e-06 5199416.605581453 552.6102881497096 None 5792 671068 REQ_20200306 11000672.798434634 1215.0498130483968 0.014261190449146597 1.5743017245779272e-06 68786.3270669506 7.593365625052844 39784 28303 787523 AION_20210909 89739049.78879301 1936.0620432865464 0.18087397150099271 3.90682464692083e-06 5442908.693872611 117.5652287595425 586 73492 735942 TNT_20200319 11212046.925811945 2083.3431214807765 0.02652382560199262 4.920449743010423e-06 274170.7143941621 50.86156278604061 17696 2563 1338754 ZEC_20200320 301856207.86562043 48773.80305186057 31.897554920444044 0.005167250896961403 386752590.3429615 62652.064533979436 72968 15634 148838 RLC_20201224 52256854.246964425 2234.7050627577087 0.7321065331392151 3.140000543833857e-05 2656436.11723294 113.93438625666782 33690 3893 508696 DIA_20210702 55666050.39953789 1655.6560477324113 1.1473831548854014 3.4112407363397044e-05 5792759.228558815 172.2222970777467 33597 391 433777 LINK_20200412 1199191987.6336787 174275.55167793934 3.2913998591202938 0.000478226441384544 645584856.2400331 93800.74181990777 48483 14177 83240 XRP_20190716 13234306671.312214 1208190.9503038055 0.3097409525654331 2.832411512541537e-05 2937047968.91624 268576.96443248703 934385 203671 39002 STPT_20210703 51540005.31114304 1524.0309469657063 0.046638767385230984 1.3769572873334429e-06 15966945.186961269 471.4061448073811 30634 None 433288 XZC_20190324 48050642.984048694 11998.061533780527 6.779071375323501 0.001692976723741804 1740496.0659885453 434.66415447531284 59713 3957 302674 MTL_20190512 19623231.03877043 2694.0872982605715 0.4325572489848102 5.9444475452975244e-05 941911.4296526291 129.44282170804343 33406 None 819230 REQ_20190708 14746032.14632363 1289.4434696758642 0.020279559861254712 1.7731034353272642e-06 328745.3697528466 28.743204904085108 41623 29867 539616 BCPT_20190104 2689827.871049563 713.3488645544389 0.03206720841909288 8.503020445494168e-06 408459.94619473006 108.30825147820855 9969 1327 1029030 BTCST_20210318 31305187.16520766 532.3490145167472 52.597277858921736 0.0008927657762142193 4226245.203723669 71.73464546766435 None None None TNT_20190702 27666955.567974582 2607.29989899568 0.06443611864569823 6.078349794882722e-06 5264901.047150171 496.6455285115086 17597 2532 678101 ACM_20210731 17226731.49473068 412.6581401570006 8.609956204708277 0.00020624739610964086 11047601.662670141 264.6400309140082 None None 43974 ONT_20200806 453583503.2457575 38719.8634968536 0.7116096577643574 6.072206205200868e-05 113368677.0058685 9673.814520072237 88564 16596 189841 BEAM_20191019 22220875.39050258 2792.070731810307 0.5423003322977196 6.814136422221482e-05 28299221.931166615 3555.866507856504 11745 1382 211289 BNT_20200607 41925424.91685069 4335.834305548526 0.6010781867098719 6.216217074537242e-05 18291476.371677827 1891.6638509625488 725 5028 124345 ALPHA_20210120 102005876.36412054 2815.666436365076 0.5802894224742657 1.6100417823152733e-05 87827461.51232597 2436.8164780015845 23273 None 81517 CTXC_20210603 2604854.2680805433 66.09556522772208 0.1945544067534184 5.166369509804122e-06 5089416.199398275 135.1488517481881 19775 20556 441880 DLT_20210814 9791621.5936214 205.57009620379318 0.11963737436517463 2.506654522121567e-06 922195.7434276326 19.321939676545 15273 2602 None IOTX_20190411 39105785.04188769 7368.261944956494 0.015492578940528861 2.918938502421352e-06 1255072.4015864814 236.46670902114866 14948 1681 990626 ANKR_20201106 50232339.12141278 3232.72734916462 0.008629222550692869 5.551090573725525e-07 43729415.78539553 2813.0685740784666 28070 None 5129 IOST_20190929 57310214.910195366 6988.313364193422 0.004770299564305617 5.816824845043904e-07 16393484.091643326 1998.9944923927137 195438 50826 97717 HBAR_20210902 2538920246.46876 52193.70188494348 0.2639060717894396 5.424001364353152e-06 107321088.68099055 2205.7458833080623 125568 25511 52510 ICX_20191118 82951778.72459877 9752.095285154726 0.16436068823369604 1.9314755400107316e-05 11757696.385507986 1381.6991897230014 112562 26574 100048 HC_20190816 84277056.5221765 8182.6122020228395 1.9038239978407945 0.0001847435101439278 65250835.50834718 6331.81870031463 12909 847 414812 YOYO_20200506 1435921.4457504028 160.10776224568207 0.008224167904955082 9.154569992404156e-07 346109.66275752534 38.526513191105245 7447 None 2248259 MANA_20200414 35129637.19005731 5127.475706872317 0.02648429626818741 3.867779200078573e-06 20840188.10368561 3043.5109642683647 48039 6825 46518 SXP_20211207 314958957.46440554 6239.981078151859 1.6332544365145432 3.236128256853865e-05 81898122.41088974 1622.7283526181754 39205 None 172109 FTM_20200317 4900484.8053692095 972.7363490759647 0.002306212628622816 4.584298771733635e-07 1793612.3038093818 356.53497770627627 21283 2317 333169 ELF_20190810 41463701.85098347 3496.593659789831 0.08985218175114255 7.575517782306402e-06 19648524.464311186 1656.5846657761213 86243 33505 1285223 POE_20190224 11081923.942162346 2693.2038865955637 0.004871989760324922 1.184023805472951e-06 557563.0371023923 135.5027291635775 None 10985 525108 DNT_20190810 4982765.315404745 420.10139894492016 0.007371717804799651 6.214557732952448e-07 315868.7543504256 26.62859135313638 60445 6307 717960 WNXM_20201030 41689145.41981228 3096.828104163762 22.914931692787317 0.0017041368413375452 11809293.585913837 878.2331337370451 14339 None 71459 BCH_20210509 26155461063.16135 446007.30836324394 1399.4902150559492 0.02383628799759269 9007429774.169085 153415.64228557475 None 527476 307702 TKO_20210711 102665768.54656447 3045.4575557587145 1.3672651453093436 4.063657985251521e-05 5790962.339283877 172.11358333132623 295170 None 20199 AUDIO_20201106 6073537.195375985 391.050469254048 0.09332103350170096 5.9895557150013245e-06 1812874.6861798333 116.35441153779914 19134 1913 79642 NULS_20211120 47640306.81657368 819.6347245395867 0.5001991077901226 8.598334442157612e-06 9504008.03291298 163.37222185175594 75739 5507 221741 ADA_20200913 3035646274.926691 291119.86082782556 0.09766100338612642 9.352760953272734e-06 616070407.8229095 58999.59098281652 164640 88149 22859 ZIL_20200418 44001717.92598327 6215.736925094075 0.004227124703225499 6.004742606163812e-07 10963775.270476766 1557.4333172807042 69232 10549 194676 POWR_20210725 77584445.69515766 2270.9492287647627 0.18114327793663565 5.294371490269934e-06 3653989.009649012 106.79709155540692 91520 14011 159703 XLM_20210814 8474102372.144899 177850.58454520846 0.35994070119973487 7.545090097427594e-06 1007784996.3721374 21125.225825028534 610604 197547 26468 DLT_20190321 8728365.861660535 2159.3838891768087 0.107783571997097 2.6671329022041592e-05 566423.0406976166 140.16287458461932 14716 2683 1013339 HOT_20200403 59198262.96859652 8728.563447988607 0.0003342815304397632 4.903569492573862e-08 7327547.764021073 1074.8766054697198 25098 6927 474054 SUPER_20210420 219281407.613282 3917.4406875417303 2.149927024975593 3.844101861441826e-05 14372175.126022859 256.9766532217045 None None 80916 RLC_20191017 24844067.123991083 3103.1193891062126 0.3547452452417602 4.430904341100908e-05 773884.1635693209 96.66110387277125 24976 3316 696039 ENG_20190908 24864830.93344676 2375.1916862974676 0.31721741518975405 3.030192199272003e-05 206047.27754474475 19.682489775154234 61472 3473 285692 QSP_20190524 0.0 0.0 0.027522055211174325 3.498680714297668e-06 2792134.348930695 354.9439358135449 57060 8609 772894 NBS_20210711 0.0 0.0 0.0115589781669734 3.428209999164057e-07 1466917.4142470884 43.50644905480013 None None 626214 DOT_20210819 24871121629.816124 551769.6175586142 24.217998883334403 0.0005376467776619863 1897698075.3012993 42129.461648592674 None 28539 27149 FLM_20210819 0.0 0.0 0.5789569823426995 1.2855178680771539e-05 27974060.761772823 621.1369073816373 None None 69223 NEO_20191203 632218765.005163 86507.02613127459 8.965607595402828 0.0012262944296971556 303732258.22222084 41543.774073742796 323365 98736 159020 ENG_20200410 11138488.302707976 1528.3063953435635 0.13468586224386198 1.8471756551344172e-05 821658.585477726 112.68797709284482 60907 3589 411857 IOST_20211125 947432563.0272597 16561.359029240233 0.041376380143944 7.234564665056109e-07 78039719.18620767 1364.5064960523712 268293 53950 190194 SKY_20210704 18608288.632569995 537.7453730298968 0.8904953463924535 2.5663521485047593e-05 396441.44284482655 11.425195569217063 19651 4407 442973 RCN_20190902 7248524.89517571 745.2770588301943 0.014297100086036952 1.4695559896272889e-06 1177882.623667402 121.07101819751942 None 1112 1734382 ETH_20210806 330223699956.3277 8058881.556833102 2821.649692746136 0.06896218467953297 37970347683.56547 928009.644865475 1473364 1056402 3722 LOOM_20200207 21549204.119458493 2212.6054149533425 0.025943712255294935 2.6641867875429298e-06 7979328.973102571 819.4055890848722 21354 None 295436 OAX_20190908 3660213.9302295246 349.6388019054277 0.07007732657307697 6.694076622513037e-06 184130.66856619585 17.588924466907603 12296 None None REP_20200412 108861980.38498122 15817.486968123369 9.910481598242882 0.0014399509479232446 22862986.38769756 3321.8949649387678 130904 10123 261589 ELF_20210729 109540731.75116737 2739.4085631083835 0.2382106180669364 5.953493264424699e-06 170398676.35150635 4258.699213989342 None 33394 615767 POWR_20210422 183011268.54663596 3377.5878316211097 0.4255353301745763 7.867457524714977e-06 5016118.76409982 92.73989376931624 89979 13456 239820 NULS_20211207 83581786.6146941 1655.926128129756 0.8752972224552678 1.733015580856152e-05 352242808.23444027 6974.1141552178005 79670 5558 241702 ATOM_20191108 954970012.9978459 103587.12880572361 3.8693218630907533 0.0004197038191232997 145583087.65437722 15791.340201276791 None 7176 96230 ZRX_20200605 214305972.0159417 21956.854093087873 0.3273182405798109 3.3481463998921276e-05 32803445.74641479 3355.4726001631157 153424 16060 97412 POE_20190523 12744709.418390138 1660.9579734381398 0.005592433002139155 7.302450139603958e-07 1121719.518003653 146.4711485628709 None 10883 944416 GRS_20200109 11573478.625786241 1438.0570420839401 0.15545157828319256 1.9372639036021125e-05 8614374.82864594 1073.537984749992 38012 106896 4090330 DNT_20191113 4775085.130370964 543.3514696833452 0.0063684848144295435 7.23652423476019e-07 191626.90410698537 21.774610068320957 59761 6215 369438 BLZ_20190625 14783712.847047225 1338.995158928698 0.07126506199434796 6.452271476083634e-06 10593446.20105523 959.1206243799547 36574 None 922433 KEY_20190520 9608308.903156748 1174.4711356610503 0.0036686035201520177 4.4897740513775757e-07 455443.826305478 55.7389170558752 24030 2838 636619 SUSHI_20210218 2055083587.8095138 39425.4969934145 16.18894905379643 0.00031048698811914267 810828288.8705528 15550.832389220377 43000 None None REP_20210201 106202863.10795471 3213.5684710640367 18.13038484576546 0.0005483484299764385 21885871.407709874 661.9320729910988 137234 10460 129604 GXS_20211207 211135753.1799939 4183.031069733572 2.7844165518969093 5.5129128074866156e-05 587938363.1832818 11640.689789024915 81579 27068 1228624 CHZ_20200313 25985005.502279527 5352.300093393453 0.005433430129418492 1.1191588389920577e-06 19975481.122257512 4114.4793856926035 19719 None 294872 RUNE_20210809 1821104806.1961617 41395.955369561605 6.676076483569526 0.00015179761964394028 118932900.46245682 2704.242713812914 None 6364 67412 DASH_20200229 827475544.0628374 94845.95982552218 88.4500279686806 0.010138218415608835 971688830.4039903 111375.8109622234 316806 34131 60141 STX_20210204 423891472.78905153 11314.654486706897 0.4617514253556652 1.2325225139038761e-05 6608223.56127272 176.38893718422497 49377 None 62343 XMR_20181229 820352915.9120609 213305.86378651048 49.19757835705737 0.012791667860146311 227945226.7139057 59267.13728200734 312429 150154 82624 JST_20210115 36776276.685632676 941.6320068606437 0.02596331751994172 6.618398861331498e-07 60478900.89366791 1541.688532298667 31823 None 212672 NANO_20210624 620409438.1381507 18401.9185814399 4.656745345580627 0.00013817623686527194 34019324.994994074 1009.4308276844081 132693 106306 57331 DOGE_20200520 317354537.6796903 32522.729451435316 0.00254643804449757 2.6096086790359606e-07 122220132.33541103 12525.2102160743 140947 155388 108072 GRS_20200523 11798465.55261463 1288.888892331119 0.15705666310214653 1.7160767307392312e-05 2741922.9490139945 299.5957049732135 37273 106881 None MDA_20210729 12421566.947324112 310.6559018881703 0.6329603737290016 1.5829139860145113e-05 2161803.544418618 54.06261130244248 None 390 1618266 VIA_20210814 15313652.750856826 321.0360134961406 0.6607902719299998 1.3852833031333318e-05 768544.1883915147 16.111790338398112 38182 2295 1212735 AST_20200625 8811297.128447613 947.0609803423345 0.05059198820882651 5.442974175272931e-06 1718094.6303214233 184.8424036018234 31981 3455 357121 CELO_20210212 468020061.35116327 9819.121866646128 4.768003138345285 9.970403497457579e-05 119068346.63356534 2489.8462212921063 None None 140742 ADX_20191019 6551978.665449863 823.26134977864 0.07118205570224326 8.944082123842433e-06 261208.06365898548 32.82100172195789 53363 3831 323410 POA_20190324 7251456.624145818 1812.1978493832432 0.03296039972849822 8.229353691677937e-06 185552.35474806343 46.32759214462002 16865 None 766257 VET_20190524 412522715.8596952 52365.63143010847 0.00743177439504352 9.44878913543976e-07 13298126.054459002 1690.7293239267499 108746 55654 262413 BRD_20190801 16012130.962106686 1591.0921142497948 0.2664555463190387 2.6462508452706982e-05 1052755.455790061 104.5523372747574 169 None None AVA_20210107 38551714.102244034 1049.4204738780556 1.0028084560176243 2.716947760742346e-05 7179936.728309842 194.52880457073354 41863 9043 96594 NKN_20200321 9676956.354987623 1564.9044696469366 0.014887625161519416 2.407545337918364e-06 22640208.071944855 3661.2506562832878 12235 994 277366 BTS_20190302 124009491.84469491 32435.61648435628 0.0458749877896159 1.200834496056501e-05 6036232.596532593 1580.05847573823 13786 7215 158492 BCD_20190213 134999806.03451762 37187.69723093851 0.7181266355508573 0.00019762949036133105 1698213.0119254673 467.3506808647581 20531 None 1643339 ICX_20190901 103041202.77308458 10734.284738897935 0.20977275394095796 2.1858913973864758e-05 17404995.292621218 1813.649712221492 113770 26167 190786 HOT_20190401 213366558.15337884 51995.904348308104 0.0011924703798046712 2.9052026807738525e-07 6365208.28757398 1550.748806337054 19991 5820 216677 BAL_20201129 130365018.83259133 7366.004626613541 13.360031258606488 0.0007542896317214749 39734875.92035194 2243.3783532619473 29679 None 64391 LUN_20190613 7455832.3583969055 917.26935115445 2.762424849254672 0.0003395607766605063 2204457.661393335 270.9747401164195 31372 2228 2333394 POWR_20190625 49923478.11814241 4521.685195639265 0.11888966415643322 1.0764379242184076e-05 1399248.4464950296 126.68923778177223 84688 13189 724138 AUCTION_20210523 115934544.81778108 3084.2408555437464 26.364047790955695 0.0007014227708715176 5218195.953333313 138.83154413766565 48000 None 32294 PSG_20210513 59494473.05045078 1153.4811954828244 27.39805744733938 0.0005461883217449722 79441139.81403583 1583.6824532517905 9074824 None 27720 ALCX_20211216 184092395.86645088 3773.642960598449 207.8321035942977 0.004252811276717231 5612653.999609998 114.8501978714918 54955 None 81040 STEEM_20190302 118472550.26413171 31013.683039162403 0.393528265004202 0.0001029253663501226 11098281.736069942 2902.7005557775533 4104 3683 267616 VIB_20200417 2098655.5742445383 295.5836128319445 0.01147164341302275 1.618262322289133e-06 446768.72321222664 63.02401195026884 31275 1105 None ONG_20200607 0.0 0.0 0.12718507082259042 1.3153197476707405e-05 6473296.3465933455 669.45392742485 85489 16478 148134 SXP_20210218 210690852.42977124 4041.972607967625 2.4654158969823086 4.7284079637991124e-05 280605922.628386 5381.725983308929 103225 None 126923 AION_20190213 31649191.584072914 8710.185170881297 0.12048809519649262 3.3158498333688425e-05 2062086.5449200864 567.4892042416851 67168 72397 189694 AION_20190805 31810326.121074006 2904.808822054412 0.09463177382802974 8.640946407990109e-06 582167.7854156882 53.158473425394334 67571 72598 199411 UNI_20201130 759264594.5007293 41847.35918783886 3.5421268078675268 0.0001949464710082734 198301875.29683137 10913.852857434398 None None 3614 BTS_20200425 46920496.22066083 6260.019160007564 0.01731258417003251 2.3098031210915614e-06 8887219.529927041 1185.711341902623 13208 7006 127468 MTH_20210207 6246475.40694305 159.26438721031994 0.018017105338243147 4.581766623062668e-07 5043994.662255706 128.26925278266123 19269 1891 1161820 QTUM_20200730 241408703.02293375 21765.742643189784 2.352463771248723 0.00021210138814905567 239623388.6167227 21604.776226419475 181191 15078 105183 BRD_20191011 17384154.964585792 2032.4317220321007 0.2836438346277495 3.313462308400886e-05 1164863.110083856 136.07664043799676 169 None None LSK_20211207 398186052.1998797 7883.752111155117 2.749547202695052 5.4438744009763964e-05 11565344.826385556 228.98419265947751 202167 33653 184325 FUN_20190830 15049969.881240148 1584.4174336187511 0.002500761598597078 2.6367294069647713e-07 291217.21249194216 30.705085539644443 35930 17425 345008 GRS_20190205 13622588.958186043 3932.2858366378396 0.18956590935105225 5.4719946607694955e-05 175099.717319502 50.54414697002293 36323 107013 15185409 XVG_20190511 112889538.35406256 17716.14912993757 0.007066308948512907 1.1091710191937782e-06 2567779.8229848067 403.0544070571181 304866 53083 413203 ETH_20210107 137306782958.13135 3739815.1342711444 1208.5750928728885 0.03274439273587714 47886847354.00142 1297416.8886064724 567786 520517 7761 ZEC_20210617 1520121301.3290436 39742.87079149233 135.64269688376802 0.0035459675725786947 1007836662.6800253 26346.837731939573 75921 19956 96879 BAR_20220112 23905686.90755312 557.648058141123 8.065940322133446 0.00018851896185801022 3655736.8497719755 85.44269957638343 None None 38699 MDA_20200530 8109948.405400366 860.496027078607 0.41257078985976164 4.384552328860548e-05 242687.48788773 25.791355480235435 None 375 1665650 ZRX_20190314 156852293.89709735 40568.07299904955 0.2677326047313886 6.925646579574537e-05 30673479.8880106 7934.5465332166 147653 15718 253317 MANA_20200518 48305727.76172087 4975.782172598439 0.03639200047084064 3.7485961925926268e-06 22574389.38448883 2325.2986645953265 48626 6909 48961 ANT_20210804 130063529.49209988 3385.2514683510367 3.695247408743457 9.657530882089788e-05 10641461.415060712 278.11464532346974 86048 3061 129869 CELR_20210422 295431444.14384735 5452.433291334421 0.052372599446798875 9.682843524122e-07 53482361.99626493 988.8020605819579 46895 None 141780 BTG_20200501 172932446.8955392 19984.200461876128 9.865841542937224 0.0011445684711079073 58321365.69660777 6766.0519457743185 75135 None 196262 ADA_20210509 51816643346.55726 883586.0920825559 1.6160806488867332 2.751126892792828e-05 4553766443.703337 77520.81763617393 383591 392875 6677 SCRT_20210212 168538016.20334154 3535.949539183737 2.416564952880691 5.0612746505735614e-05 8252339.898735027 172.83772442199484 66930 None 226191 TNT_20190601 13458878.015138464 1568.9154614282193 0.0313879202986947 3.65989967606796e-06 2435153.4618341182 283.9441823902265 17390 2519 874753 AVA_20201130 33612033.87123426 1852.949755815514 0.8732656673359558 4.8061537413540365e-05 1089880.1476906408 59.983253039486456 39018 9009 100722 DCR_20190411 242291351.50488642 45652.22621086023 25.47022669329287 0.004798815332543642 5265327.5021233205 992.0341366536328 40426 9406 258760 HC_20190224 53577039.6506189 13022.31424305125 1.220816409507192 0.0002966910363276561 15768878.78764239 3832.2592592930346 12232 785 404563 IOTX_20210421 279435824.8156363 4946.158941059232 0.04320449127412853 7.663907773094194e-07 64983084.15090521 1152.7143337571958 46156 2673 219398 EVX_20190507 14340745.404112289 2506.6361299598047 0.7434605582410424 0.0001299657279490633 15287695.695985686 2672.470621028376 17195 2388 712033 BTG_20200901 176971675.40546885 15141.14831315951 10.091394418850419 0.000864520834472322 7264139.751464075 622.3124276986379 77189 None 234816 NAV_20210131 19700634.933935203 575.8913461951388 0.27720239634959715 8.112591832278971e-06 2013107.9902733283 58.915520408381454 48497 13651 604574 BEAM_20201014 20014092.628415015 1751.8779056468018 0.2754529293524948 2.411599251944098e-05 3453869.152784902 302.3873547015311 16114 1569 277428 DASH_20200625 683342135.9643216 73517.83811257177 72.27819343823644 0.007776099620672085 287749201.3769936 30957.697601952277 316620 35066 75056 VIB_20211002 7637250.124301637 158.6019086870518 0.04191865841004258 8.70272196126925e-07 1251220.5372155702 25.976557601395793 32959 1300 6551865 MANA_20191015 43038670.01029336 5156.569430155943 0.03242786588069077 3.884922323312744e-06 10176767.829830008 1219.1968681114886 45830 6408 84692 BAL_20210813 267062407.3890667 6006.888454458844 24.726183856290973 0.0005561574361404968 48954268.106299356 1101.11129142991 93921 None 286590 ADX_20190324 12139582.381549355 3030.9179311198686 0.13946430263145063 3.482037868446364e-05 346532.6032439233 86.51960568973087 54525 3931 962371 XEM_20190130 419919169.33788943 123020.74542689213 0.046709531874561165 1.3682921681702114e-05 13649193.207385149 3998.3453950388384 214861 18484 180302 LEND_20200907 747815344.8773996 72576.58121769624 0.5935252793596139 5.770049684334857e-05 203727083.92639753 19805.650023336788 64628 5901 20694 ZIL_20210107 909608765.4698929 24816.660912475538 0.07812861158700854 2.11676871118746e-06 358500573.9992707 9712.994798829714 116334 14232 39054 UTK_20210220 211463152.74960008 3785.7901787974456 0.46789306136800424 8.369266772897447e-06 18076983.137066245 323.3454539397059 62170 3394 80432 BNT_20190805 32716847.64873831 2987.8552368343253 0.44925559812639704 4.1020040505650426e-05 3329034.001367805 303.96306723900824 782 5134 154213 BEAM_20190929 32379864.77110464 3948.347464152181 0.8564760431991773 0.00010443728030298376 49649436.76423439 6054.170674597329 11558 1364 185690 ELF_20200324 26199241.169416264 4071.6469397392743 0.05714106860492575 8.818269540342898e-06 33536434.921851795 5175.495134817348 82924 33434 652715 JUV_20210731 27977656.425182167 670.2839495964697 12.693646574314167 0.00030407025202482596 22805485.106435895 546.2945232691768 2578306 None 43974 POWR_20200325 23977916.03066926 3547.3215418567183 0.056542237968786144 8.36763597506145e-06 3658802.66827054 541.4629829398077 82433 12817 249499 DCR_20200423 139398932.47707677 19594.333875120705 12.234535195011055 0.0017197231223946663 92604967.51148026 13016.833197148326 40595 9767 260313 XVG_20200523 60975475.830168724 6661.087677176191 0.003751223304089522 4.097821865577054e-07 3160664.381248836 345.26975765777973 292166 51770 289428 MATIC_20201018 64142007.3632801 5644.875774928009 0.016752562281284036 1.4742210503286152e-06 4935940.307920771 434.3614417259502 55928 2394 52170 NULS_20191019 23860961.26120379 2998.6000396722006 0.3243418006742567 4.0750342148571324e-05 5246491.355033452 659.1697935717353 21223 5276 455576 POE_20190225 9874239.139312424 2627.4843359773145 0.004347343817953243 1.158756343428765e-06 894812.2943972539 238.50642271009295 None 10986 525108 ZRX_20201224 254925333.19059518 10901.592545427886 0.3351640434296667 1.4373788446491861e-05 85693042.26518154 3675.017308694335 162501 16313 97350 EOS_20210511 8977725076.705 160794.67413437366 9.32245331355287 0.00016684360122982131 9424871732.864344 168676.57988205546 None 85128 54887 MATIC_20200914 75278889.95368297 7292.763343609646 0.019800776846394363 1.9173399703190805e-06 12776941.723488456 1237.2111081764406 52292 2287 59373 COS_20200329 9435433.251048855 1512.941184210308 0.0049306117361035216 7.886370368052524e-07 3079783.530359437 492.602437056563 10311 None 117572 BTS_20191213 51321825.17241994 7123.962161333772 0.018935416476750122 2.627423927889984e-06 6671332.747354324 925.6949438021113 13465 7090 167509 BEAM_20210220 56952553.390349135 1019.6122325761959 0.698497867011482 1.2494126269423441e-05 13805679.367952488 246.94406297383438 16717 1789 251636 MDA_20190701 16084843.76167691 1482.5721789155498 0.8155603268100865 7.561224709514181e-05 552589.3013026245 51.23167154985384 None 363 2408870 STRAX_20210128 58492895.03376439 1933.5713992578017 0.58573583173527 1.9263115130871852e-05 5747789.909882293 189.02777119527067 144506 10287 214690 SKY_20190411 21671737.844122246 4080.690904454844 1.4447825229414826 0.00027204606029698964 1453830.861639464 273.74982183613605 15477 3657 412487 PSG_20210704 28235092.13201457 814.4685063679697 13.408285076878645 0.00038667842795395266 9171996.196391543 264.5090740601961 9208790 None 41128 JUV_20210128 0.0 0.0 7.937555674482524 0.0002610958861699371 620661.6136293149 20.41588124454621 2246368 None 106290 TRX_20210506 10414186273.062275 181914.53840281747 0.14624738296310738 2.5517983166443076e-06 6393923763.660873 111564.41617131539 863519 103768 20833 LTC_20200713 2906761936.435128 312851.26339117147 44.70795067916056 0.004811862532767041 1200458516.7151787 129203.89485477807 132043 214168 120838 REN_20191015 54733104.47909445 6557.479346225156 0.06617917087598503 7.929090033928882e-06 9195410.123323424 1101.7248146454247 9835 878 276397 FTM_20200127 20479003.54581054 2385.0495411589095 0.009669329437892237 1.1256370584976603e-06 2828375.978119122 329.26014536841075 20632 2276 555132 OCEAN_20210731 201688324.10489312 4834.160849001215 0.4646333850344396 1.1123233718791804e-05 17878839.415290132 428.0159709623071 118200 3295 136835 RENBTC_20210221 998581488.2968063 17787.78263124729 56236.29954978288 1.000232054922699 32406765.91315414 576.3943631109382 50170 3735 73664 XZC_20200223 61251532.713971294 6345.473756024395 6.442878825455705 0.0006674518553871564 44736412.05339511 4634.481267974329 63687 4097 108999 XVS_20211230 174707464.11567175 3759.6996162000128 15.053650116179847 0.00032352813508350857 8604165.911105962 184.91792553204525 None None 24385 NEAR_20210508 1976857287.7152393 34496.82570624706 5.340136543480252 9.3167928776514e-05 115776710.89135651 2019.9251960091472 None None None RLC_20210718 175634359.2999335 5556.9497373549875 2.4558714200833722 7.785161248693768e-05 7111470.08637257 225.43501620208258 45803 7726 149507 STX_20210616 944989709.0876287 23398.622676012947 0.8915166139365489 2.2088514933762794e-05 8468270.043096365 209.81270162104127 65891 None 53312 STX_20210930 1206334574.8085496 29039.336850598505 1.1448117701875848 2.754184374433275e-05 17146695.52571831 412.514634456983 None None 90837 CRV_20201031 41175171.49502256 3032.486482841295 0.3944214565242612 2.906475102573512e-05 38496336.34043306 2836.778812688204 42478 None 12628 LUN_20190909 2426287.644126121 233.11613974919229 0.8973585803394076 8.623121105867396e-05 108243.30440279195 10.401584642022444 None 2196 1370867 SUSHI_20210916 2913601635.080647 60456.79329678687 15.181331665231678 0.00031492365591019486 967013719.0405622 20059.867107245656 136196 None 4348 CKB_20211111 777019295.2442296 11970.520436545996 0.02723395765553219 4.195579809650774e-07 105240605.89702734 1621.304427516022 None 12063 120789 SC_20190904 79008793.74230592 7434.845336575412 0.0018804103627261478 1.7736969051916176e-07 6414919.640399236 605.0872372737554 109067 30644 202127 IOST_20210106 104976460.32752606 3084.9653248569452 0.005711259871361508 1.6760315180458803e-07 61895533.59609894 1816.3919602663634 None 52140 596701 WAN_20200719 26217647.251946066 2860.0658412972994 0.24698098472304433 2.6942992674673212e-05 2982546.3939840198 325.3640183477924 103696 16093 631499 CELR_20200229 12883723.342563586 1473.296091375893 0.0034598104265285844 3.97081941928874e-07 5850994.207110411 671.5177583602785 19269 None 1202590 BCPT_20200331 1723577.728740895 268.2630608613392 0.014806042324427404 2.3094536790899925e-06 164968.20178915397 25.7318203073255 10639 3166 1854999 WPR_20210610 12121939.173817227 322.9423482140911 0.01991049587485929 5.304384224120166e-07 657914.4506154669 17.52759476509036 33662 None 6560594 EOS_20200927 2427480126.8433385 226074.26862503804 2.571464720592379 0.00023940447628821666 1495787227.336561 139258.4370034131 191258 72861 83424 BTG_20190730 324015799.16805124 34064.09133563428 18.515038390743427 0.0019460188417669375 10618082.787808543 1116.0111436143213 74941 None 299895 BAT_20211007 1095670274.4234543 19738.531229764943 0.7358380876485006 1.3264367220383813e-05 99995121.97501339 1802.5324325930217 214323 80034 25671 LUNA_20201229 301676328.35011536 11117.020278558539 0.6211743058402042 2.2885453143203877e-05 54004613.81256624 1989.6509680203087 17208 None 184547 CELR_20190830 19901552.97352256 2098.4639359445123 0.006124135660770086 6.45382875905312e-07 6797191.228539829 716.3118301337195 18294 None 463728 BTG_20210724 702597289.4651792 21019.12233071794 40.48803152667748 0.001210861884500869 20231255.634431712 605.049329384799 100897 None 177172 VET_20201130 985624919.8817884 54323.354922008635 0.015154079431097802 8.34028386535976e-07 146590816.88758707 8067.854140902312 142219 68565 122046 PHA_20210916 194220974.6425295 4030.1121580368517 1.066078233273472 2.2114875171172266e-05 91381535.2412487 1895.6312789587666 109885 None 139035 LEND_20191022 9959216.070567455 1212.6640219474548 0.008826291970201593 1.0747157852211694e-06 3904921.3377540526 475.4749351029449 41487 5798 671068 BCH_20200806 5423892798.130923 463007.1139324686 293.58950055147676 0.025052161217587587 2577299972.8741846 219922.4914557436 None 305229 162707 ONG_20190601 0.0 0.0 0.4617244383900448 5.383807230346066e-05 21816910.24680311 2543.8991174066095 80864 16206 249314 POE_20200117 4192955.5694184657 481.7264720117117 0.0016672676816513873 1.913422547268947e-07 71836.76931295326 8.244272688727337 None 10536 564904 XRP_20190701 16831748098.04542 1548099.702654125 0.39643748864425954 3.6538920623082415e-05 2042972341.6974328 188297.0363971309 930919 203001 39729 ONG_20210314 0.0 0.0 0.767592422866274 1.2512573429092617e-05 28516909.026727196 464.85596722707805 106463 17333 202243 LINA_20210617 84542050.65607576 2210.304339125437 0.03414957706975417 8.922707084701449e-07 28262806.966009878 738.4593590546074 39570 None 70371 PPT_20190704 23323313.944365647 1945.1646698663321 0.6444528234457407 5.368794966123646e-05 3835405.785746411 319.5192344019659 24027 None 660913 WTC_20210207 13235988.269653616 337.4752707280796 0.45577689456061415 1.1586016147723679e-05 7246933.5714345835 184.21971447470028 54879 19040 815573 ENJ_20210930 1141157622.9461203 27470.37290017149 1.2239422890553169 2.943200786381781e-05 52451101.4140065 1261.2859634701078 302689 36560 29174 BCPT_20200105 2458833.0566584496 334.55716530791506 0.021178143716087484 2.880173524355954e-06 199212.23649211213 27.0923560140198 10733 3149 3617841 XLM_20210420 11504970414.970705 205535.1600627001 0.5022141415411621 8.974306766021638e-06 1703034491.0459318 30432.344873564387 501828 172515 26729 UNFI_20201229 18342905.89688483 675.9036438683632 7.492498472348037 0.00027596810383830354 11537412.734687282 424.95276139759306 None None 121184 AUTO_20210617 31531960.192000758 824.3764332649519 1236.8099919136494 0.03229362136803179 6623827.543537636 172.95088178191153 67698 None 10402 DNT_20190830 4738119.030430103 498.83316671816215 0.007099776632026988 7.485795462889726e-07 281258.2973099702 29.655046841973114 60303 6284 572325 NANO_20201224 131921976.29666379 5641.980886371299 0.9771278001793032 4.190204416873029e-05 11673788.600845546 500.60555587435954 99011 53680 348353 TFUEL_20190826 0.0 0.0 0.0060900813181245985 6.032545879768734e-07 6374244.862084671 631.4024816871778 70218 4027 248011 MBL_20200707 6720688.206517459 719.9806280953908 0.001912969556381565 2.0483509061302525e-07 2971164.312912324 318.14343789807305 None None 121072 SFP_20210602 124415984.4199091 3390.815977865811 1.1437481421445659 3.118016631472586e-05 18358204.53179462 500.47020794964436 None None 24038 BEL_20211125 113200197.02029608 1978.7678597868844 2.359311397491107 4.1252015789620815e-05 9846852.371427579 172.16994328775405 36056 None 305830 NANO_20211230 466588056.7244227 10037.172496477622 3.5073639525857323 7.536891088132307e-05 18703427.895226132 401.9135194599093 None 119488 64172 PIVX_20191203 13528706.783310661 1851.71455264102 0.21918169530996887 3.0000054061241134e-05 394079.9182395042 53.93889683586593 63080 8559 261790 GAS_20190124 29603279.433740202 8339.108398889053 2.135100334176662 0.0006011675088651615 1045973.8250718645 294.5086320728329 316063 97902 129733 EVX_20200323 2663231.5205133567 456.4811104210106 0.12220288425893341 2.095784446755765e-05 848109.6029014565 145.4511426374245 16804 2865 688824 AXS_20210127 52289794.636435315 1604.8192897842139 0.9482441135499198 2.9112479635336854e-05 26759874.974605225 821.5672569016612 30867 None 18871 ICX_20200318 97382667.86570844 17941.112104382206 0.18208008937334436 3.37848708320257e-05 14888746.34884546 2762.5995460444724 113242 27513 126672 BNT_20210909 961745083.3117871 20750.92815345829 4.108368520567035 8.894235196418051e-05 162815855.10657126 3524.8116174931133 129370 7897 39289 PERL_20210804 0.0 0.0 0.06363424296522974 1.6567501925740964e-06 2945959.5842493386 76.69957056277796 None 682 3927089 BEL_20220105 79841493.98330477 1725.973214770197 1.6572843604400498 3.6019382916205724e-05 7268226.292410032 157.96747510393303 None None 300803 BTCB_20190915 0.0 0.0 10350.2754833663 1.0 41.71782036325621 0.0040306 None None 70056 QTUM_20210707 741976770.8411748 21721.90056116108 7.162307748523501 0.00020971982785677128 266811748.3184527 7812.525779703514 246548 16736 119158 GAS_20190103 27690293.862111326 7150.2671475592215 2.339632091791685 0.0006042848199386402 1327826.821350906 342.9537466445265 315453 97812 131426 FUN_20210616 218409133.83073637 5407.9667348275025 0.02120718897186581 5.251024001413883e-07 3565531.044712492 88.28463366082973 3589 322 191066 STEEM_20190906 56751116.93048061 5369.551507975165 0.1749795670240867 1.6555071239446606e-05 3330241.12450104 315.0789546362306 11038 3768 235183 RSR_20210727 371463048.62048596 9916.29499535519 0.028185774132292517 7.531185949597188e-07 131456236.47070336 3512.4859670283686 None None 123422 FUN_20200404 10072186.53802975 1497.7916986064515 0.001681554441294595 2.499644629248003e-07 295996.7707971559 44.00016557467143 None 16955 280907 GTO_20211230 40032885.17276052 863.1682566284347 0.06063277931800941 1.3034178546993996e-06 10111788.72553384 217.37228799429533 14988 None 467835 LSK_20190227 158037254.9678249 41580.46194756934 1.2152190464443653 0.0003197307453165317 3315225.7055032873 872.2539272360049 182941 30467 176926 POLY_20190411 52326510.747925095 9859.202220476209 0.12270320009391836 2.311836502491451e-05 6154023.60321524 1159.4723195660247 34306 5044 277280 REN_20190804 87871187.73435362 8142.303973616021 0.10921180281167275 1.0116878432105734e-05 11369526.351463307 1053.2205582827623 8832 860 478249 DUSK_20210117 18688575.417561173 514.9831100042768 0.06213753394842863 1.7167024780807977e-06 2210651.7253513476 61.07470081181457 21110 13344 977461 UMA_20210729 530564598.1050303 13262.35586038466 8.55733961848795 0.0002138698274387876 21248358.914872512 531.0508939791482 42094 None 160207 ARDR_20190902 54666916.29280103 5620.437080701887 0.054729876402401345 5.62696519594838e-06 2238062.8283698955 230.10287012142126 67108 6534 930148 BTCST_20210826 171234729.72882545 3493.449836340652 23.49434587021482 0.00047937127050787974 6092678.647429695 124.31310580633324 63500 None 1726916 STORJ_20200317 9857986.89381682 1953.1419785774046 0.06841034994031919 1.3584914253288826e-05 1395846.6832410754 277.18696833315954 82279 7999 127597 GRS_20220112 54506004.57800633 1274.010858531695 0.6881563953323693 1.60848098628611e-05 136129703.9209876 3181.864499274338 43142 107181 None NANO_20210718 501555581.5106113 15868.871945407413 3.7639672980481658 0.0001190845514303206 12896129.630039226 408.0082770583188 133824 107389 59418 ARPA_20220105 98428718.85834007 2128.0454891694867 0.09953288144060542 2.1651492508318524e-06 23024741.20122987 500.8596198653054 57821 None 198855 WAN_20190812 25962781.781716123 2248.076240305747 0.2446455562939268 2.1177488940714397e-05 2180727.4562753923 188.77241135129827 107983 16885 529577 BEAM_20200914 23670349.80419378 2293.1285444009523 0.33675957636311354 3.260895272734182e-05 29406461.178336047 2847.473300681482 15946 1552 271885 ANT_20210219 220884026.856497 4273.481975110974 6.333916348065198 0.00012251182768239444 53844254.35523675 1041.465919149818 78392 2771 120479 PERL_20210610 0.0 0.0 0.07122609448173949 1.9017129097924182e-06 27687391.520026106 739.2440969174542 19577 658 347381 TKO_20210603 182909345.18223226 4860.863767649166 2.424287758409123 6.445065782108698e-05 127842151.6239369 3398.734634882142 274211 None 23426 PERL_20200612 6442276.177600054 693.4935272799687 0.01827091251070378 1.9668140909152894e-06 2440325.816322684 262.6944439231476 11785 480 827795 NULS_20210821 56248676.27362432 1144.7053647115565 0.5972069312597361 1.214766818833628e-05 9989476.057553565 203.19395869455093 64117 5376 365718 CTK_20211007 117386642.39823598 2114.861118539369 2.0708104474732756 3.732885084390186e-05 13670727.65640255 246.43132075952136 88336 None 106519 LTC_20210710 9013459284.3449 265206.2918756809 135.1155296389191 0.003976017361175035 1902363514.351356 55980.466350096256 188381 338618 73715 ANKR_20200511 7954033.33229119 908.5106624775991 0.0015415993969227853 1.7596958182065104e-07 1759909.1951293568 200.88908034565293 None None 5876 LPT_20210731 463997369.0702984 11116.370306945219 19.30846726828707 0.0004622409863227526 104757025.6913996 2507.8630119627446 14631 1232 108874 HOT_20200719 124390837.56132223 13564.451720178447 0.0007014393830692513 7.651955951570385e-08 8531005.345114164 930.6417446620655 25670 7166 636916 PPT_20190725 25188955.460122533 2564.030230283854 0.6949798623243636 7.078247692134001e-05 1332454.5902486038 135.70815702137074 24124 None 661854 QSP_20200305 7922943.225961074 905.0364579668535 0.01110540231126168 1.2679097648195982e-06 142806.38575220748 16.304281997078537 55509 8338 347894 XVS_20210325 376491430.9822427 7122.86686381 41.16992802798572 0.0007814282455603186 68924693.9310409 1308.2292156960657 None None 15629 EOS_20200713 2454104440.046697 264456.0680828324 2.615383928973408 0.00028149060168159985 1275877651.5233307 137321.16490460417 190209 71817 93319 GVT_20200321 2617835.129166345 423.3272282209665 0.5904737002357623 9.523013549838098e-05 243176.39773419578 39.218886966497095 20649 5600 160290 EVX_20190730 11706343.660211504 1233.3492750765622 0.5576327748875601 5.862446777066299e-05 7588372.725000391 797.7728933495076 18214 2915 1096264 RLC_20211021 314896690.6267077 4750.4488437834525 4.3989023708473916 6.661104209627676e-05 22382472.860931028 338.9299684937182 48151 8277 616787 KNC_20200502 124784959.32652502 14081.646632177295 0.6927115376741285 7.84361242881442e-05 71172517.80870992 8058.904968564699 105522 7460 115849 SYS_20190616 35033837.80354827 3973.3363692450066 0.06278622893270923 7.118033386753671e-06 412603.85821117007 46.77662742570703 61607 4609 932870 KNC_20201226 166504070.22671485 6742.181017547558 0.8301917895264376 3.3623594256090686e-05 25357258.583612513 1026.9942256939275 127045 9301 138116 NEO_20210718 2090881527.025629 66154.0463879488 29.599679224917008 0.0009373215914154181 222953624.03093952 7060.186162848559 406852 112343 108336 RVN_20190531 196920247.72117347 23711.036604057914 0.05437121805058467 6.552787744140746e-06 61220802.853888094 7378.295741952775 24555 6509 169101 NANO_20190522 233015884.95586488 29280.9615993796 1.7458071749674997 0.00021938995094261833 6929105.241481492 870.7582835046853 98393 45749 404660 EOS_20190623 7792327060.318745 725837.8173919276 7.470750821161139 0.000696475321989473 5686249862.725265 530111.7382788898 1160 66533 103805 WPR_20210603 12361121.892387545 328.62536000834297 0.02030335764913037 5.397728681029032e-07 186230.44913351675 4.951010832496255 33680 None 6560594 TROY_20210616 19601420.705488767 485.3621222075147 0.010366409051707735 2.5684300584097895e-07 5803801.383381393 143.79770132321187 None None 402786 ATOM_20211120 7967362575.192305 137058.64643947268 28.209935345413683 0.00048501082215764965 368544115.6127031 6336.3450616253 252291 45879 32360 CDT_20210207 9553409.407094538 243.63161618167936 0.01419871023617849 3.610745201815222e-07 1075320.552820463 27.345501541517404 19387 296 640190 SNGLS_20210819 11237731.578024704 249.30078779502122 0.012605776285718403 2.800673414168797e-07 287674.3407420867 6.391370589113878 9462 2133 None SNT_20211011 369214902.0230073 6747.60729986685 0.09517031736206423 1.7391603067863998e-06 18338328.83496678 335.1180755364768 137090 6141 174168 CELR_20201030 14317432.125576038 1063.5532520383483 0.0036283559562511314 2.6963046320849356e-07 2917124.754493864 216.7774353660201 25006 None 280111 GAS_20210427 201104987.77644008 3733.1801521415887 14.426187502846544 0.00026761690983298937 59578216.43628052 1105.2218871335442 383202 109502 88657 QKC_20200325 8116777.099534305 1202.4846193760955 0.002167354288303707 3.2074485137156214e-07 1529658.592512707 226.3728272541522 50178 9196 585547 XRP_20191213 9488179879.695215 1316608.328870549 0.21866369382763226 3.0377208248775162e-05 1195013016.275011 166013.6560392982 942323 207953 27644 RLC_20190929 14218997.140488815 1733.8411293346746 0.20303123488278021 2.4757294913364858e-05 74184.70719482593 9.045961204660411 24770 3302 1199907 SRM_20201129 50880653.7976007 2874.710525322736 1.012189012896266 5.713964843977126e-05 16230093.558420684 916.2140946572363 27575 None 73913 ANT_20201129 113309982.40617608 6401.066863501966 3.27269093767521 0.0001847717864078354 19238086.192940045 1086.1568112088617 None 2684 92172 CFX_20210511 665860555.9501687 11924.35506827108 0.802772856536286 1.4366535545799301e-05 15414735.84789395 275.86427304404646 None None 144382 BCD_20190810 140747665.18454444 11869.150348850879 0.747744851701523 6.304303702253642e-05 4212700.117931304 355.1765136132274 21442 None 3532175 LOOM_20201231 24216677.11600644 838.6135545863846 0.029163648754008082 1.0112850320770233e-06 6895572.2190367505 239.1123631867096 22827 None 355559 DNT_20200129 4378116.294226893 468.66339337121605 0.00581565724156192 6.234633714807523e-07 105274.40908023335 11.285867665436658 59263 6139 608237 MASK_20210708 56766743.05019476 1670.70117245108 3.64954126969363 0.0001074135107232316 17299305.652740985 509.1541692282725 37421 40 255505 EPS_20211120 230935972.08710322 3973.1721837283476 0.4824237351330354 8.27044750186259e-06 11652977.960981973 199.7732189526004 None None 69915 EVX_20190920 8763083.828557761 854.9355716354249 0.4019708552739703 3.9196465112081515e-05 1099346.400288362 107.19805244493683 18271 2907 454708 SUSD_20210617 208013748.63470355 5440.9125123439835 1.0049071854649783 2.623854300142671e-05 52728021.530299045 1376.750490307964 135498 6890 43067 CVC_20190701 24368061.45451969 2241.2519764587064 0.0712718450432263 6.568996029111499e-06 4423760.820210228 407.72997028595734 88692 8164 447156 OGN_20210401 421081819.53450435 7158.90479751981 1.980742381077553 3.370809229067159e-05 227828770.26274168 3877.169130045501 92920 3840 63219 ONG_20190706 0.0 0.0 0.3526524588868558 3.209304036652916e-05 14550404.893978834 1324.155609422893 None 16270 247326 PROM_20211202 257250515.33556533 4500.735518567326 15.6467305443591 0.00027361986424940296 5319131.754663984 93.0175223833295 None None 634264 BNB_20210506 100850357948.66006 1761649.526227915 651.8302379358385 0.011370223147051333 5349087812.5937 93306.99701039307 3237080 322671 139 GTO_20210427 48363829.23474812 897.7406699320019 0.07293703893094819 1.3530383524557209e-06 35505298.16654693 658.6506778839049 1931 None 321700 SC_20200421 56160829.43005493 8202.641851996006 0.001275160133207352 1.8624514599931886e-07 2605300.9540401734 380.52056672828485 106991 30082 175217 GLM_20220115 425434946.3354238 9870.574501251356 0.42565295273243564 9.872133048407911e-06 4819686.67986384 111.78258684643556 164151 21797 208647 SUPER_20210616 90575157.5575648 2242.78389571576 0.6241470549467563 1.546415975673957e-05 6301656.644331255 156.13279644229195 123205 None 564935 NAV_20190205 9252090.32958009 2670.7011328004 0.1442508983602435 4.163935110171611e-05 366297.86665243533 105.735254689783 48098 11466 833323 GXS_20200318 19119012.139370754 3520.7158131959436 0.28890411380508085 5.3713186758488806e-05 13954305.145534055 2594.390881095963 None None 697464 RDN_20200412 4132208.153104826 600.4038175694075 0.08124586969119899 1.1804680319211997e-05 549424.7445232299 79.82908538258933 25038 4320 1242086 XZC_20200711 58014830.25830503 6248.02031078923 5.522616325900096 0.000594493854401188 18809509.190851144 2024.7898746507906 64243 4126 587407 TNB_20200312 4878729.305519827 615.1112909809851 0.0015769138507748576 1.986491956287745e-07 487257.9939100115 61.381545038970984 15170 1446 1374605 VIDT_20201031 16769384.138733631 1234.5686863364438 0.3614852420162222 2.6690679617285927e-05 1433802.1067119665 105.86643164569723 20903 1075 None AST_20191020 4413557.744969599 555.4008243462042 0.025629322182231525 3.2241501261441456e-06 1053217.4497530782 132.4939906461053 31934 3542 318017 CTK_20201208 26630347.121373504 1386.8688179736296 1.0796565799370608 5.6232636313437054e-05 5283981.696481213 275.2099385550984 7922 None 264615 TRU_20220112 147358394.15839094 3437.4298747825387 0.26133458440800333 6.108374679512092e-06 4088545.196027114 95.56471834000396 36732 None 102903 SNT_20211002 322946393.15636545 6705.703307632649 0.08327043905648635 1.728998790267253e-06 18369580.789343324 381.4196649178969 136470 6124 174168 VIB_20200223 4070408.5336527578 421.68202789641975 0.02229617005240754 2.309778046842964e-06 671902.3488117516 69.60591398700909 31585 1111 None HOT_20210708 1074676766.5852702 31627.591613069308 0.006050909214939929 1.7811960425125795e-07 70935398.02967644 2088.1134678496187 80804 23492 73444 AMB_20200626 2233984.113285096 241.42956030687603 0.015450370351850077 1.669741561026724e-06 2600431.9258287074 281.032050643176 18944 5447 835291 BAT_20200329 199345011.58156133 31964.327430867987 0.13833234295391308 2.2125856765942574e-05 61897772.03050795 9900.368986985659 113764 36190 19141 NULS_20181229 17102729.49178928 4442.903890444095 0.4275682372961141 0.00011107259726146137 7959808.621103118 2067.778988544924 19783 None 363190 POWR_20211028 139311333.92738357 2380.533484728923 0.32440154877329086 5.539208344175628e-06 6550139.460273931 111.84467919793937 93548 14593 252530 GO_20210310 28401494.558240943 518.7167326391855 0.026558770552565256 4.850617510881342e-07 2782509.7781964066 50.818958760176535 15128 737 401211 ARK_20190704 64154633.86841166 5346.1165510762285 0.4499149029259781 3.749218667574287e-05 1247758.2425661609 103.97785148313702 63487 21854 202264 ZEC_20190410 442964906.32260215 85622.66539310261 70.46671603968473 0.013617612815679438 257558656.06646845 49772.917666046604 74711 15101 156086 APPC_20200707 4463078.577367201 478.1118008691238 0.04109510791983612 4.400242189594235e-06 123981.74918614642 13.27529604187368 24453 3199 1596022 BAL_20210804 235565825.8185064 6132.020142321844 21.80717073071349 0.0005676653948716041 49548981.25025171 1289.8161964355647 92927 None 286590 ENJ_20200719 190670890.33265567 20792.05414147011 0.20697320285626897 2.2575669854302404e-05 19591492.609564465 2136.94846967063 60214 15690 108364 DOT_20211007 33631272711.70877 605907.7044191511 32.485705866217415 0.000585593949614525 1673853881.1569786 30173.2309398161 678669 31168 24089 BCD_20200325 93764878.39866191 13871.688122842479 0.500577648342028 7.40800450963886e-05 12180257.19657087 1802.5455299415623 28940 None 1207769 IDEX_20201208 18486204.560503878 962.46932748007 0.03340129638417052 1.739667026414894e-06 1032818.5564961089 53.79313324668519 40216 1948 61286 GVT_20200430 3828492.212980295 438.5184131688595 0.864864057418577 9.864601972282211e-05 214170.0783211226 24.428146353038642 20453 5559 159747 EOS_20200526 2364903735.3704405 266101.9593427844 2.5269085768819446 0.0002841554710448722 1639886331.1700435 184408.20422109053 1532 71342 92987 XMR_20200319 644232853.5015104 119573.43527959677 36.838188827210544 0.006837386146339551 147463360.27563354 27370.07352263041 320358 166954 83083 BADGER_20210527 124604447.81618343 3180.3502062480015 14.880363091530803 0.00037983418765706205 24155570.787040398 616.5919172032964 33999 None None ZEC_20190719 557641166.8962073 51958.69463265324 79.17557163554758 0.007422847762434323 474001466.314093 44438.46316406604 80 15346 211514 QSP_20191113 8099438.17407481 920.6363216840869 0.011350381565267444 1.2897465199999948e-06 202735.36287811183 23.03686684446892 55864 8441 459848 BQX_20201106 30917776.04645213 1989.3688637548944 0.13962308557876663 8.990947415472982e-06 498937.95138293563 32.12881928423728 None 75 180444 NBS_20210602 0.0 0.0 0.01284820816333675 3.502600376931784e-07 2846223.0151422704 77.59200099292431 None None 498254 STEEM_20200324 55491351.91780289 8563.67775955501 0.16043816914541048 2.475954781079113e-05 3661921.548028559 565.1243848688173 11097 3839 219600 XVG_20190421 135017555.78446573 25426.65000496598 0.008492223730935406 1.599296952085603e-06 1460294.3795375803 275.00975296195395 305342 53165 400359 VIBE_20200223 3125843.599205913 323.82652949432196 0.016704175854575478 1.7304738252719128e-06 152943.0782314779 15.844181475352 19492 None 1771395 ATOM_20200502 529109576.7454226 59711.35317771352 2.829365913494568 0.0003202120330065844 211021949.11885673 23882.300629296402 32771 8388 88245 YOYO_20210806 2557887.060011763 62.38236094768392 0.014625371800713655 3.5668706290026784e-07 550212.3868362568 13.418711189440948 10137 None 1435059 DNT_20190507 9403218.458591022 1644.4003123211203 0.01618286830160122 2.8300005797580937e-06 464822.4592778782 81.28644469724945 60924 6411 1175150 CDT_20190920 9293541.947387917 906.8899322965473 0.013779188961820786 1.3437796876593028e-06 757440.3221052706 73.86740411786076 19655 299 180702 BAT_20210722 743688370.2255248 23110.199076901987 0.5017835462432216 1.553732144313407e-05 71258215.12109528 2206.452965804895 208515 76519 27687 BCH_20200711 4393070838.0659895 473120.33321071183 238.02740005896518 0.0256360986658909 1798842625.0208485 193739.48968908947 None 302505 156887 FUN_20200730 28944222.974045835 2606.675940051852 0.004869320689089634 4.387109646685203e-07 4116006.4739131355 370.83964808444483 34221 16734 237156 COTI_20210527 181803685.7879581 4647.134637213309 0.27266788375453943 6.9551965983129216e-06 65769906.921545 1677.6549793590118 113678 4994 65620 KMD_20200719 79556200.69688737 8675.35064892937 0.657320679709121 7.168573069401646e-05 3136075.306539405 342.0124405035046 None 8378 296104 NAV_20190826 6997696.2053950615 692.8000498314537 0.10597191418488164 1.049164543202339e-05 280435.8075013974 27.764272084532912 51608 14210 487370 HOT_20190201 196422590.7122641 57315.195223221766 0.00112847480286732 3.288920496099744e-07 12939770.069574922 3771.2738369087633 17214 5256 326508 AE_20190124 94090264.88929975 26504.797211682497 0.4135071346531017 0.00011642874578689824 57504255.435738616 16191.131365627218 957 6300 467648 CMT_20190803 29888395.544287816 2839.7331527462466 0.037296237073209886 3.5435190045281805e-06 3834697.3031390947 364.3349527088597 290736 1647 586149 UNI_20210324 16055382395.307783 294516.0700591848 31.092701843068866 0.0005703832535659187 1860453596.6625454 34129.28155709159 298663 30802 2272 CHR_20210825 208439460.85855228 4336.212957838939 0.36682520255931744 7.638166177514949e-06 73603826.6803762 1532.6053269058352 85898 None 83278 CTXC_20200403 784037.3818497943 115.71430972661075 0.07669947562414142 1.1251031675970055e-05 5935993.127385246 870.74971714058 16630 20065 374531 AE_20191113 79501329.22201665 9036.650192859843 0.2357452536412668 2.6787788475829596e-05 47323449.24744996 5377.374639815185 25160 6356 394142 BAR_20210617 48921031.46474976 1279.1778577969812 16.626678761586355 0.0004341294718227444 8028249.648404662 209.62092487017634 None None 39510 XVS_20210729 280342474.6144898 7007.632387078724 26.696939075128416 0.0006672248628307239 76225581.41786267 1905.0724490399632 119117 None 12441 ASR_20210523 9929922.349453997 264.1686500835407 8.106453765194885 0.00021574730616704427 7611257.200526605 202.56801372365024 1973091 None 155506 OST_20200807 7019642.657299693 596.6385794674272 0.010111508956673993 8.585709438890496e-07 468071.7093481021 39.7440946771361 17658 750 745612 IDEX_20210220 45368024.947797395 812.3995789315436 0.07883350152380067 1.4101055548147581e-06 7118604.349314972 127.33144337711505 49959 1933 6676020 YOYO_20190414 6678027.1909652185 1316.2527013807976 0.022841411505857542 4.502695727816239e-06 1960306.1731529145 386.4324334248731 7350 None 1373234 ARPA_20200526 0.0 0.0 0.01112851907502342 1.2505432108327011e-06 5251431.927882156 590.1182808144033 16640 None 1143848 ONE_20200313 8493726.12797035 1769.6423022001934 0.0016906566474761348 3.49665863727096e-07 13794187.33491315 2852.9485487643115 71417 None 408073 THETA_20220115 4139311567.380528 96051.04018649065 4.142950418676237 9.609036039728113e-05 144932888.70373628 3361.5303350434315 239272 27288 29092 GAS_20200411 15910735.47076696 2320.4814703554694 1.1451997091456199 0.000166876427058515 7124549.240096551 1038.1764089660553 321464 99285 235469 DASH_20210617 1670993790.4327846 43660.242415101944 164.0722180841754 0.004286929643995418 586650321.6736639 15328.180992543303 397404 41207 53288 XMR_20190701 1502405592.9826274 138183.72507799062 88.27925193510775 0.008136537717845583 140245568.53033176 12926.178383869297 318921 158977 104259 RENBTC_20210219 939846377.8609288 18183.37257030987 51677.36978145779 0.9995536612004015 17310816.70909234 334.8291581618151 48446 3403 73664 SRM_20200927 95034598.4400214 8850.271921650135 1.9009009645134263 0.00017707585493009445 38639723.04009073 3599.4310694337105 25108 None 85702 QLC_20190804 4372774.776954622 405.41727871362866 0.01822611969628428 1.688865379574676e-06 175979.72420026272 16.30660111211243 24897 5763 940522 ONE_20210821 1161626508.2014248 23640.024687173776 0.11106928640241265 2.2582070993737853e-06 98200478.03597516 1996.5647015980248 200743 27428 31812 IOST_20190811 104863593.71014205 9258.328507882947 0.008729046035542434 7.710162964594292e-07 45248167.64863218 3996.6652140420083 196949 50600 101612 BCD_20200913 119639804.35655662 11473.719330626582 0.6353476628957067 6.0846000363368176e-05 2672252.225274272 255.91635787088765 28228 None 3034323 ETC_20210527 10134357392.094866 258664.9689237962 79.65176037641962 0.002033180340555783 7885812552.240504 201292.2121840507 443731 56126 91962 SUN_20201015 0.0 0.0 8.06114940701425e-05 7.1e-09 0.0 0.0 35 None 8121732 JST_20210117 39921937.37013187 1100.7168080487088 0.02802442292360971 7.743804133616437e-07 98212573.84111668 2713.8433407070033 None None 184317 UNFI_20211221 44700516.48046983 947.4728383886502 8.690874438687874 0.0001843407789881206 13815076.609634707 293.0294301185552 None None 309205 HOT_20200502 64258764.35242961 7251.7639854731415 0.00036167722715158647 4.095291964719459e-08 7202147.579144915 815.5032967346309 25060 6965 565992 ONG_20190530 0.0 0.0 0.4968390683404051 5.745380538570046e-05 12168972.791251414 1407.203738683093 80866 16205 231698 ONT_20190205 319290259.605397 92166.07573468957 0.534377003523677 0.00015425284641789054 9181496.582602326 2650.32359720508 67104 11002 281556 ASR_20201231 0.0 0.0 9.717826338082476 0.00033696678435766775 18643752.42846877 646.4743334177765 None None 243915 TCT_20210202 7427825.374792855 222.49864774443847 0.012637480748720509 3.783878209229324e-07 1801737.0608048714 53.947093876528285 None None 1849521 TRX_20210131 2268502271.017194 66313.13310884574 0.03175421591260301 9.293173365215768e-07 1807492084.5349753 52897.97532419001 573053 78709 29522 VIA_20200308 4504217.967117849 506.75333309283593 0.19444044731022173 2.1875794084975448e-05 195158.86692744837 21.956620887374143 39581 2187 2317316 PSG_20210724 46774803.46857242 1399.3297879779802 22.173390804128243 0.0006631620216422596 19280750.07394158 576.6488901387919 9307004 None 40943 ETH_20210105 116693162132.74934 3729849.266540939 1025.6547675669035 0.032782877870613576 62285144708.39812 1990812.4611683404 562010 517286 7761 DIA_20210117 38204728.86985785 1052.8873077981063 1.5147909797843204 4.185722104891711e-05 25399051.180065483 701.8352458291846 21800 197 294987 ETH_20190329 14528588960.681654 3608608.6076985253 137.81198852309657 0.03422886159279092 6421741403.9849205 1594991.1183877583 440618 433711 32450 JUV_20210418 0.0 0.0 16.32811698819821 0.00027087984943239846 4594868.969652782 76.2278599278025 2405557 None 44251 SXP_20200806 118722983.94629955 10134.71102772708 1.7960219555645316 0.00015325920713631064 121457733.14346285 10364.303077959723 62583 None 158179 MFT_20191108 10554583.549123095 1144.782159639636 0.0011679690813496805 1.2668914642030527e-07 4993280.390035585 541.6191580344271 None 2348 1257642 LINK_20200330 736953744.0682917 124628.19397754049 2.022603198671787 0.00034183331122286556 166701134.6932377 28173.593759872867 47185 13821 84663 ETH_20190528 29061104048.029087 3295235.083983457 273.40508817754096 0.031006310102639174 12655030646.34605 1435181.0611666616 443136 437828 37906 SYS_20200319 8662047.934700292 1607.727427248045 0.014903762224607766 2.7662265873288896e-06 215334.99298268135 39.96745075464659 58758 4509 831215 DODO_20210828 291513689.6862212 5943.835269575063 1.9644169814593138 4.00455630146012e-05 74951791.70999624 1527.9274850038164 102601 1068 31066 CDT_20191019 7602297.556479864 955.2347569093837 0.011269688918482866 1.4160454092349457e-06 90886.0461277849 11.419904250568333 19573 300 183019 CND_20210201 26146788.582824785 791.033706782675 0.013596124256623954 4.100180777226559e-07 1167995.1079205065 35.223207724489214 34009 5898 421392 ZRX_20200520 235883653.13629365 24173.532507390537 0.359596044856112 3.686895520729559e-05 58928475.28843657 6041.86655254494 153195 16046 121592 STX_20200414 56154556.56914826 8191.825312214135 0.08883437322538464 1.2976325545098585e-05 312952.37958400126 45.71397095685065 35852 None 52879 WAN_20190605 45861773.226257846 5980.221398957513 0.43302822487480314 5.6373239251383384e-05 4945944.844086028 643.8816594470711 108726 17066 409918 ARK_20200403 23073513.263500046 3402.3203863580848 0.15682944842937419 2.300528233922399e-05 1146154.6313501978 168.1292076372681 62483 22030 82800 MIR_20211028 296609310.73531246 6213.759998811874 2.793473804569592 4.773698706039663e-05 33415348.017433956 571.0266669827139 71433 None 15205 XMR_20190228 818393353.4620179 214174.04420463872 48.55155772509287 0.012734257596878209 165924777.12524873 43519.28038192477 314039 156206 108704 SUSD_20210603 268907558.283079 7149.014783533759 1.0052460762230824 2.672486822569289e-05 147700386.14559639 3926.6737269502623 132698 6748 40897 ARK_20200414 22792637.350241385 3328.6475791350545 0.15324369583231146 2.2379782089786563e-05 565608.0488555974 82.60166796987836 62408 22005 82800 REQ_20200320 5671318.71139632 916.3693661623054 0.007427393036576571 1.2016835833243189e-06 138247.92407561827 22.367237060462603 39640 28226 686735 WAVES_20191203 59426450.5747939 8128.344371542015 0.5933416018925286 8.121243933434288e-05 7021866.29932176 961.1038380397038 140955 56860 21748 OAX_20190302 2971210.4736624584 777.137819426489 0.1262373155973052 3.3044177353030025e-05 495012.4728309546 129.5756319499652 14219 None None YOYO_20210120 1865221.0264952998 51.50717695488426 0.01077585429999026 2.9898142187651934e-07 493048.58741193044 13.679877586945615 9355 None 1925232 XVG_20190730 89443322.23072852 9400.919763593338 0.005642933492718765 5.930992238805454e-07 947435.1949664226 99.579957753669 303971 52952 416991 POWR_20200621 41408234.632815525 4426.190865333141 0.09626482314949279 1.0284555925421528e-05 3290787.0759386476 351.5747768900745 81581 12735 221637 ALGO_20211021 11040420512.576733 166563.32620159717 1.7932617954117216 2.7063751597860116e-05 265100349.82597566 4000.8715038446353 166106 49817 93058 STPT_20220105 145928965.535268 3154.5380415936547 0.11046938860156715 2.403052242723066e-06 8004877.574347333 174.13094479175967 34579 None 443822 SXP_20210806 203068086.56806946 4956.307855066251 2.3505102220766863 5.73702644558964e-05 109846486.68119006 2681.0868258565574 None None 79966 PNT_20210318 80944097.97641096 1376.4655218729965 2.16231018066274 3.669331676552735e-05 23031888.545899224 390.8395704190674 None 201 406587 COTI_20210201 35960619.980275266 1088.1242857931234 0.06342015846976562 1.9130131596267266e-06 9774065.580889134 294.8260699822982 37803 1380 238618 BQX_20190708 14089391.146033823 1233.3848866417293 0.11676396824500174 1.0209937636632423e-05 974980.2221235178 85.25307433834377 None 5774 466152 TNT_20190723 20497730.985264778 1980.6353072420816 0.047995695674222405 4.640828477782459e-06 2100815.9331608564 203.13334919381788 17586 2545 635699 DYDX_20211225 591816406.4789381 11643.331915715575 8.664612324749449 0.00017045325575472584 164189250.72751042 3229.9878283639678 103626 2547 12899 EVX_20210219 15094824.929978555 292.0400202401259 0.6933678571045537 1.3409642384923982e-05 1800613.5864524764 34.82362792038422 17093 2815 787934 NANO_20200725 131841173.53190488 13818.39776873572 0.9893577130957681 0.00010370230764017217 5093368.642116136 533.8757406527697 97917 52171 209112 LINK_20190930 622481817.4561609 77308.78779746612 1.7081928424147468 0.0002121480728723334 80643391.92764445 10015.461815864566 33503 10797 93725 WING_20211021 44879312.34811595 677.0936453332532 22.080237151103184 0.0003331242721924371 7811450.1192279225 117.8512539483896 None None 314890 TFUEL_20210616 2685612476.1920514 66497.69027123184 0.5004103725884428 1.2398401761740888e-05 138634465.08324367 3434.8724372660845 174148 19663 17272 VIBE_20200313 1013871.6173347773 211.2371032458148 0.0054579590953422515 1.128828839438818e-06 129519.78009568712 26.78760696 19433 None 1426283 AION_20210207 39345498.970442496 1003.3733274454617 0.08070255826958536 2.0522735530135486e-06 4914761.939135162 124.98285262966668 68261 72588 360629 STPT_20210428 93634390.52985598 1699.664470359374 0.09212318917583077 1.6717579997196928e-06 56840570.556850836 1031.484899591136 29536 None 910650 DCR_20190410 241637611.1695985 46696.193828021795 25.17020785718826 0.0048691465912680705 2688113.0153792407 520.0122462254193 40422 9408 258760 LUN_20200621 3085419.201885755 329.80527685397783 1.1406439082617892 0.00012191011144613526 4214505.24932603 450.4392658517036 28543 2122 2710990 MDT_20210620 19871728.313836213 557.4207907506518 0.03276680970498353 9.20322548790017e-07 5749525.210799744 161.48711894679525 33137 311 464280 REEF_20211002 277422376.79476595 5760.436373052289 0.020100252561705896 4.173008298230953e-07 31449972.217906892 652.9320695924631 204857 13481 84193 RVN_20190608 236073666.21156734 29340.67926506188 0.06358359691590587 7.909121964076903e-06 32311115.63448061 4019.1585054001716 25118 6600 169696 MTL_20210819 175526044.60083786 3894.0720061806305 2.701121898522681 5.9975793889813095e-05 55922717.81481267 1241.709750031565 57520 4234 207199 LPT_20211204 1158757331.3184476 21581.47528317991 47.324048529743436 0.0008809975451143456 44858944.760392144 835.1064931709419 22170 2202 88203 PERP_20210617 186196777.27568305 4868.009961313114 7.436853816218832 0.0001941793346436198 21869460.031947546 571.0206631677394 20705 None 196172 LTC_20211125 14647429097.667574 256078.65007910976 212.1377095355498 0.003708769499856348 1447237113.3361375 25301.813980893094 204592 350867 122629 COTI_20210703 90405612.50522526 2674.733094965991 0.13536211598371667 3.996136800715052e-06 10517779.79300365 310.5040622864899 122791 5375 94644 VIA_20210220 18957803.263014503 339.39844588281454 0.8180844932146513 1.4646032651872346e-05 578612.2902027605 10.358801035067094 37807 2141 1515639 DOGE_20190903 307792760.495484 29786.076696153494 0.002543728739816507 2.459939346279881e-07 51554082.4385521 4985.591186153722 138216 140024 101956 OG_20211028 8607991.828881275 147.14651990697504 6.219186514202108 0.00010624116517348611 2329031.695117416 39.786399788815295 755330 None 254363 DNT_20190818 4346337.938970794 425.60005354571035 0.006477097753445224 6.340430136665823e-07 221509.79799440852 21.683591204462804 60379 6298 572325 OMG_20190531 305194600.10392 36726.337838086656 2.1791866335769656 0.0002623426128385921 199001704.61425155 23956.93252860281 289680 39363 None TRX_20190520 1880036585.9295464 229720.39060418808 0.028489752937837665 3.4817586194113545e-06 763434924.7927139 93300.07654178124 420483 70609 115818 COS_20210707 38272014.6352425 1120.0741261340572 0.012704448036160674 3.718101507782839e-07 3020180.876667421 88.38903539415458 26803 None 334513 ARPA_20210202 25248456.874833938 756.2782058695344 0.025726340233262996 7.702851229604555e-07 11902987.507559573 356.3932573667273 23662 None 1157851 KMD_20210127 73470229.08683394 2254.57416219574 0.5994837708896662 1.8399994136704135e-05 1775186.2958773645 54.48590774563716 96734 8414 314092 ONT_20200224 570044994.5272237 57296.38178639493 0.8952392868716098 8.996762113700407e-05 142141990.26899025 14284.646480236788 84390 16451 403200 TCT_20210106 5004281.9829699425 147.31331285827716 0.008689378226457656 2.5477167772934174e-07 574135.4623974436 16.8335928287171 None None 2545563 CHR_20210210 23225438.249535173 498.6145992156049 0.05116526233975786 1.0985674466502524e-06 18983621.602620777 407.59663409290306 38120 None 474695 HARD_20210813 63026844.70693767 1417.677238383283 0.8619021301007067 1.9387036423402152e-05 15814585.051180793 355.72244887294755 35386 None None EVX_20200321 2757098.200408204 445.98322415410354 0.12655610465199846 2.0458285022732205e-05 585130.0121772384 94.58853523813542 16814 2867 688824 ZRX_20200806 284042774.5334573 24247.128430603694 0.39789404886197555 3.395348138158262e-05 44066671.91529432 3760.34004203786 155965 16137 50937 NEBL_20191030 7642572.401225189 812.1582778138699 0.48722419968857456 5.177617510890419e-05 305278.7500069825 32.441258105594805 None 6088 478074 SKL_20210511 355372487.257826 6364.864461400526 0.536013082448026 9.593006258547094e-06 75000244.79137763 1342.2765996499968 None 1568 131705 EOS_20181229 2667724833.8007336 693628.9286355634 2.604591953387281 0.0006770009431038944 1219230908.8805575 316909.7079103288 508 61627 79237 ZRX_20190227 142576822.81445575 37512.73809994224 0.24401734900636052 6.42022926617615e-05 15058826.116754403 3962.0591135314844 147027 15606 295106 BLZ_20210324 109961660.56705754 2015.9120844347585 0.40168382760657656 7.368730117164918e-06 155255417.70248806 2848.0989117586587 51716 None 289688 GO_20191022 7229311.526303394 880.2626561448487 0.008768986022188792 1.0670144042062903e-06 1399519.1351502733 170.294156290026 10271 688 791048 ALGO_20190901 125791273.69966367 13104.878479883195 0.4041697478605277 4.2115639591107465e-05 56389528.10914864 5875.949536374157 11822 588 192636 LSK_20190224 167144076.35704523 40620.48056056089 1.2860132843690133 0.000312535620507096 4075492.260883669 990.4536120341153 182958 30477 176926 BTS_20190321 135722601.79743937 33582.69289905478 0.05024574656618105 1.243261957897147e-05 12777471.528343193 3161.609759022915 13796 7211 180886 FIRO_20210909 94665911.76649739 2042.5428398175345 7.696497547549887 0.00016624208593533641 6773706.227998255 146.3100645324165 75033 1237 291129 REP_20200208 173710700.59389672 17734.66637209684 15.802892824208309 0.0016119436174069416 15531329.661699086 1584.243340539974 129538 10104 302168 WTC_20200725 14225826.35499791 1491.0222800372305 0.4873480640716881 5.109731343009738e-05 9917254.511690646 1039.8011185602309 54737 19507 745990 YOYO_20210603 3090023.754749328 82.14951504233517 0.017667999104713516 4.6971080917737835e-07 1416976.8121188006 37.67089420037052 9962 None 855012 BCD_20200319 75149025.77230915 13963.659531988995 0.39810202103440673 7.389009422308621e-05 8363096.916847965 1552.24034677606 29028 None 1207769 FUN_20210117 94157861.03260185 2594.6176753716227 0.015667143351843625 4.3235067364474643e-07 7219001.854640256 199.2156607496101 34266 16501 254768 GO_20200317 4454491.657804871 882.558958922797 0.00482161584921795 9.57579357151305e-07 902857.4551546649 179.30869827518418 10680 679 690987 KAVA_20210114 77440126.48933686 2079.702591921682 1.6523239319018934 4.431942215557815e-05 34932714.876979955 936.9819729544677 None None 85719 CELR_20191113 14572310.681163114 1657.9290499324247 0.004180193094939479 4.74912758639298e-07 4401706.997583516 500.079007229343 18566 None 556012 BZRX_20210703 27569058.126876894 815.2132990753272 0.19673879950489895 5.808088556510169e-06 8675576.212904213 256.11884920567525 None None 110017 SKY_20190615 24068679.781934444 2772.076733137971 1.6183064631445676 0.00018650476314668236 1464445.3207163208 168.77274725254904 16078 3773 431254 VITE_20211221 58960152.59578896 1249.720305942491 0.07695341081109829 1.6322467658216947e-06 3259700.862310117 69.1410053689853 39821 2887 156048 AERGO_20210204 14979380.12138067 399.8346779266597 0.0566602963315167 1.5105661910655545e-06 11883416.39335216 316.81244540486205 11973 None 586684 NAV_20210718 21799172.826360688 690.30597290878 0.3062152099589174 9.696798594786244e-06 295502.952957251 9.35757769633811 53023 14123 823602 ARPA_20210703 29165289.94774371 862.8725375771742 0.029757834323914958 8.788144692636603e-07 3284795.00372076 97.00724005694389 43095 None 560675 FORTH_20220115 67903121.0628443 1575.1644211762457 7.825995512536551 0.00018145405706352266 10011755.442913087 232.13323346968892 36245 None 87350 PPT_20191019 14778448.432901759 1856.94822099561 0.40794129923403116 5.125882282721687e-05 757196.40872787 95.14358225868229 23947 None 810126 XRP_20190414 13590031721.840157 2678921.336891533 0.32564927226908136 6.417722533593545e-05 1154974892.819901 227616.30461315255 917150 199974 36994 RVN_20200502 119740051.1798314 13512.9674452226 0.01978771697650321 2.2405745302856004e-06 21104442.415705405 2389.668106161927 30725 7656 223095 LSK_20191113 102986522.46952271 11710.030486550033 0.7538674474211853 8.566213490373024e-05 3342138.9840696594 379.76803680772065 180117 31129 157769 CHZ_20210722 1207716693.1962852 37528.92693352075 0.22669833445109988 7.01931445772056e-06 240663220.87200043 7451.712558006547 None None 41451 SC_20200309 80481353.47042683 9962.417377116419 0.0018227026169966843 2.26575454413148e-07 4365458.703375946 542.6588957605234 107908 30191 227333 STMX_20210708 194588581.6608497 5727.006467210244 0.02102276482907282 6.187432360750243e-07 21563743.990362428 634.6653661862161 68293 4585 72030 WBTC_20210509 10027387159.300142 170988.6874498497 58858.64589459963 1.0019772447962298 807139086.6039735 13740.292286217844 None None 227802 AMB_20210204 3843316.107820751 102.58709276944464 0.02697168743004884 7.190624508730189e-07 1460403.3415627875 38.93420494252639 20501 5466 398433 BTG_20190227 224032903.3972679 58819.887371264536 12.795573426799123 0.003358478590983926 9789673.866536831 2569.5143935181563 72833 None 354755 DAR_20211230 0.0 0.0 2.0822482757525003 4.47449386061804e-05 28919586.82712767 621.4461321276843 None 721 22834 QKC_20190608 55782544.90021264 6941.532024732793 0.026336983848583632 3.280506335662254e-06 25103074.58843417 3126.8119274937076 51415 9195 157671 SNM_20190819 4060564.027438388 393.82322945371 0.009283551477201106 8.999853372283934e-07 147853.9001174358 14.333560004973634 31063 9918 19008991 LSK_20190510 233751603.04065466 37819.43620125616 1.7691791674330417 0.0002865470461096845 2432947.165719178 394.05495865592985 183678 30412 170512 LUN_20190608 6894482.775694168 858.7693471967306 2.5503421583003383 0.00031766787178482255 338220.7085338454 42.128407093856566 31386 2230 2333394 WAN_20200905 51699008.41890636 4928.592652168587 0.4136506747429473 3.9449030385147416e-05 3995235.2763448036 381.0175286436571 104687 16057 459215 DOT_20211221 25931679868.20374 549798.5318880709 24.23642926385144 0.0005142503560031897 789581277.3226116 16753.394179323983 None 37002 12763 WABI_20200412 4304184.538977999 625.3917355987693 0.07260253950211643 1.0548841097312861e-05 1103313.9341888349 160.30683571157783 36682 7734 1806690 ONT_20210620 724859957.3694708 20333.35001015811 0.8368769441607926 2.3505392475133813e-05 155293115.95982105 4361.723267430256 None 19454 131880 ENG_20190314 33377065.449941095 8632.600735540296 0.4340616535395827 0.0001122826061567176 4662512.259664796 1206.0937046240813 61219 3244 328243 WPR_20210708 10548123.229730899 310.3539471408046 0.017325475820460602 5.097617547562245e-07 364610.58150753455 10.727816757128863 33796 None 6439074 CVC_20210310 321961341.3897077 5890.88710656935 0.47738915845466584 8.727339475140882e-06 103429538.5169525 1890.8361834537207 92862 9275 137471 VIB_20190507 7302077.167447946 1275.215832688535 0.04290321267035501 7.492505874128054e-06 1543966.9187380942 269.6343813920926 33082 1128 1885935 GRS_20210422 106745161.43943805 1973.5447659518368 1.3793024699819696 2.5501063782097058e-05 7341955.098371891 135.740832285555 41430 106831 7053372 ARDR_20190821 57250987.66345952 5320.432519781396 0.05729481335756397 5.32549508911964e-06 1941657.3054298884 180.4750873397345 67274 6543 926837 RAMP_20210401 110601615.33698484 1880.4685292006593 0.823056088759647 1.4006693078994154e-05 44186139.7286402 751.9556758972573 20329 None 87461 WAN_20190302 33549935.21982828 8770.492842342846 0.31563589216412186 8.262700088363855e-05 2499995.42498592 654.4475115713228 108427 17235 537237 AION_20190625 46869478.024161346 4243.605530514781 0.14686387389030103 1.329816636814413e-05 2168580.588130205 196.3596947280838 67375 72580 278705 OMG_20210108 491312014.16931015 12551.853600067203 3.5232208712551083 8.935449471699905e-05 360448966.1907938 9141.560073061615 289617 42580 211368 IRIS_20210421 168885753.9991187 2989.3653854562185 0.1733750135810503 3.075444415751715e-06 21405736.572437797 379.70957663966095 22385 None 536237 WABI_20200927 6549056.270770998 609.9218239632256 0.11105954898885102 1.0339691985490825e-05 801956.5929603304 74.66250522749615 41636 7632 1655522 PAXG_20201130 73648808.85449532 4059.400495415786 1799.9897655693726 0.09906524291263659 986928.2772275131 54.317136347698536 None None 82114 AAVE_20210511 5554840826.815018 99489.43780130247 434.65198192259345 0.007778950401416072 653486444.5746841 11695.42266403263 None 9220 14216 NANO_20210124 417537203.055017 13044.3984248194 3.130058891390577 9.766896455597856e-05 44587190.38577513 1391.278844438693 102917 56813 248633 BAT_20200501 266120223.47622365 30753.048305160537 0.18220939827761848 2.113870687061698e-05 109395243.70044813 12691.299194677887 115876 37519 19988 GLM_20211125 524519234.0183769 9174.324092846738 0.5246717387979354 9.172751730706745e-06 3980338.874649708 69.58762517853786 162495 21688 197301 CKB_20210217 239832933.9514703 4877.355369918663 0.010013421057026557 2.0357070637957067e-07 20450747.41941837 415.7593168660198 27493 805 255152 DUSK_20200127 9530739.67843324 1111.4696061181714 0.036761351158260194 4.278867406351695e-06 248038.34354576838 28.870624998368044 17861 13340 884255 REEF_20211111 483524467.6381488 7454.665453742269 0.03074731969987745 4.7346927060181613e-07 91377086.89555511 1407.0898896052292 216078 14197 74100 GRS_20210125 28000991.36856201 870.5493021386012 0.36289327865205206 1.1247554238951187e-05 19777762.55246663 612.9941504021522 37592 106766 3770172 SXP_20210221 253691703.35239598 4540.459038042024 3.031684323777857 5.3927857784314574e-05 655814961.7865384 11665.692141713102 107010 None 126923 NKN_20200229 12005114.962220179 1373.5598291604806 0.018336202143489955 2.1044432662869254e-06 1285331.927617094 147.5173593119299 12235 1002 406869 BADGER_20210724 76688106.38183501 2293.8774550245353 8.284734055035122 0.0002478093219897467 8271323.141405399 247.40818063846524 35987 None None DNT_20210804 104112391.96167883 2709.803656244926 0.13813380822486748 3.596384630561091e-06 6261631.041104391 163.02477958048553 70317 10249 294360 IOST_20211104 1253908730.1981206 19882.668061995162 0.054791364631523516 8.693654474092071e-07 591182902.7572336 9380.200551904474 None 53927 219178 CND_20201015 18634595.88839903 1632.5343585007645 0.009668927070297859 8.463908742940258e-07 72381.42964810616 6.336068219058853 34196 5913 292389 PERP_20210602 190141325.14628705 5182.085295267235 8.883530002451522 0.00024217739267224525 16469855.949130468 448.99119723208815 20090 None 228103 POLY_20210509 343170989.7916447 5851.809268271489 0.4139126370205856 7.051926812393616e-06 8812528.914136566 150.141124904826 45971 5523 152972 FUEL_20200520 2216726.9741926235 227.6800949050176 0.002341841552377979 2.3999366696621994e-07 28162.497874348526 2.88611376330314 1 1463 None DREP_20210809 0.0 0.0 0.6291939204560363 1.4303347930774446e-05 5177142.107391268 117.69100501703635 4100 None 292177 APPC_20200107 3024192.7222430133 389.439173905435 0.027141895851382315 3.4991913565455446e-06 123129.65878729032 15.874139379285303 25008 3249 1530437 MDX_20210930 705919246.0195379 16982.676377283566 1.0853390427067235 2.6111050831486675e-05 35588726.36040286 856.1924029811668 19713 None 44840 XMR_20211021 4710472579.581212 71047.20286736892 261.13819063268033 0.003941074940692012 210420979.8513669 3175.6551911419256 447463 238528 43320 NAS_20200607 17305190.000936545 1789.6643055831948 0.38033384617442956 3.93332814413889e-05 5303666.556379058 548.4934129098413 23431 4922 697228 ZIL_20200331 39452347.10203871 6141.642788387917 0.0037854060082008296 5.895910869917375e-07 7146366.821887972 1113.0732538149127 68693 10568 245670 SOL_20211111 70391383039.29988 1083936.9775832265 233.07366976619127 0.0035882747308907913 3800891475.935171 58516.44611610584 913275 89303 4135 GXS_20190419 79607267.37375803 15097.459062761052 1.3276786809751857 0.0002517142934224438 6561433.100287137 1243.980580801598 None None 722859 SKY_20200310 7529251.799468914 950.9946398632169 0.4399002040882697 5.5506663922250625e-05 188832.74563705732 23.826939956337874 16251 3828 308227 ICX_20190904 103361688.77357417 9726.016957010588 0.20900908141692928 1.9695052004220117e-05 17738748.89108331 1671.5330239779234 113740 26189 190786 STX_20200313 37155536.92708568 7720.61593439043 0.0652512732380333 1.3616502276256314e-05 1300872.2279254661 271.4633565547206 35839 None 34581 SNX_20200801 431238561.9039061 38044.565106181384 3.900548156955116 0.0003442377558422705 36672615.46664685 3236.4935237614905 26268 1634 46620 BTG_20200914 146440649.17547134 14186.830167815375 8.37565125049366 0.0008110273169887652 3485476.396565409 337.50409201523286 77671 None 234816 AMB_20190616 6505051.2549523935 737.7386586476542 0.04498930308293952 5.10040763452052e-06 1485697.4925870816 168.43254539438925 19345 5677 665963 YOYO_20190723 3182801.0210138024 307.6238957465277 0.018179634656519464 1.7584041828237043e-06 240339.8210162742 23.2465918352524 7613 None 1133014 DLT_20190613 10236167.98392092 1259.9155558846273 0.12650264093728045 1.5556442080097764e-05 1023920.4457114929 125.9148345862285 15041 2674 2533353 ENG_20200927 55648989.29246861 5182.66016471052 0.6745112317877473 6.283318029634407e-05 1588937.447725334 148.0153160206461 1183 3601 348119 EOS_20200414 2289905386.3404093 334231.5827508653 2.446720124681611 0.00035732771732322014 2862926306.112094 418111.9497518153 1488 70874 93233 XLM_20190826 1402479291.04672 138922.95072457634 0.07150261556173208 7.079046327569259e-06 133184519.99920726 13185.802781934257 275760 103427 64328 STX_20210603 1061156844.1245921 28200.521139360706 1.0061991332606262 2.6721130281991132e-05 13537447.510938719 359.5072651803935 64433 None 60665 GVT_20190729 8836124.254727058 926.9010033553844 1.9916234556405827 0.00020891940019424237 545951.934369055 57.269836996664246 21383 5741 209505 REP_20190324 158888277.21454093 39673.79432673336 14.440980890428518 0.003606429724945769 3866274.8467367003 965.5471908645139 123509 9818 256149 GXS_20190804 125322213.66702197 11614.684012746491 2.0839847386136907 0.00019310341318137185 10518181.223262647 974.6216740643509 None None 741400 LEND_20190811 4035593.7458358468 356.2995630931972 0.003536761781613627 3.123061030861771e-07 1281761.9731651533 113.18322003033596 41816 5840 699914 PERL_20210401 0.0 0.0 0.19994792683512264 3.402489437199352e-06 42965942.621343605 731.146195124016 16466 603 334148 NAV_20210724 25442770.44112492 760.8610262921554 0.35718454045099135 1.068153315505123e-05 489823.254995206 14.648067723592556 53009 14117 823602 KLAY_20210722 2383321739.241616 74060.00754560514 0.9614154830778929 2.9768536308769113e-05 63305181.29861508 1960.1333878958903 None 664 62906 EVX_20210112 7578899.417119289 213.9541292875116 0.32652034541533836 9.18566554705253e-06 891796.5493240326 25.08800738798094 16700 2809 1350138 TROY_20201124 5779091.948339104 315.64731518887487 0.002966030585275975 1.6155537601601123e-07 2113605.182562967 115.12500299675048 9609 None 1151989 GTO_20210115 14376367.025513038 368.0972777455636 0.021808329435014807 5.559197053322338e-07 25618597.00542196 653.0478614016661 16519 None 786393 QSP_20210117 21060243.09898215 579.9034478431842 0.029416506456670526 8.127034711831067e-07 779774.9795131653 21.543205122795296 58328 8168 193675 FTM_20210708 655329132.2893914 19286.24756079288 0.25786332735873474 7.58944843517301e-06 65924540.431293145 1940.2949048265648 101808 9086 43795 SNT_20201111 104929306.92787886 6863.813595811246 0.02718063380578974 1.7794605873083375e-06 14073474.460625384 921.3616322603519 112829 5698 160974 UNI_20210107 1373830072.1371005 37418.91248928195 6.40667314597079 0.00017350778816326996 506631176.12117565 13720.764705879385 160921 None 5230 HOT_20200531 104914444.54217762 10836.097279633357 0.0005906698521136774 6.100738564247281e-08 11623714.813628035 1200.5563678178946 25291 7036 573357 ZEN_20190312 32504958.491518144 8395.789091397439 5.419308937447691 0.0014016916657779922 564623.3472403161 146.03851695215587 24940 1497 303166 AE_20190807 94375771.55769087 8247.5996684617 0.29151029981457305 2.5406791192610617e-05 18670797.80765991 1627.2668979463388 24890 6360 316448 QTUM_20190321 205135007.26477656 50757.83886091353 2.521893974121562 0.0006240080114533954 408766949.32819045 101143.76489083111 176175 15224 328111 SNGLS_20200312 4284317.246611555 540.3735117828654 0.007681200120597191 9.676285089200185e-07 140716.1410716668 17.726520286984766 7841 2133 1276289 TFUEL_20200107 0.0 0.0 0.00244251020835159 3.150195527184582e-07 599229.4892527402 77.28483796491703 68742 4015 523233 TCT_20201224 4655226.723012271 199.07548734250133 0.008040982589710272 3.445855291141408e-07 1482704.238946219 63.5393024418265 None None 1564302 WPR_20210105 4203994.495506439 134.3717617984254 0.006905035221290778 2.2070479610683898e-07 200653.51859290167 6.41346386947 32503 None 7558136 BTS_20210429 311495228.19188076 5688.825200962191 0.11493457637945394 2.099045684791629e-06 72161715.90145893 1317.8866024619047 5187 7098 102843 DOGE_20200901 405652921.3823183 34721.701564046634 0.003215634910296568 2.7542577362034236e-07 184353787.46588328 15790.282774342744 151932 166500 90441 REN_20210127 526026641.20037466 16141.062007443603 0.5953753653319036 1.8278893536937105e-05 112432702.88145246 3451.8482384545255 36717 1003 93933 ELF_20211007 335012711.073971 6034.722981626161 0.7303581791910542 1.3165585274553936e-05 184530064.8391328 3326.376528088489 53963 33509 260925 CRV_20210127 424896630.74313706 13046.457717267664 2.1263501397348765 6.528205580826777e-05 341578302.1637915 10486.952909613618 60870 None 30895 FUN_20200217 33999707.45191085 3410.670413479153 0.0056951403238272615 5.724658793133423e-07 798989.2745921985 80.31305141467935 None 17071 372623 NU_20210813 146667164.1639914 3299.233937198024 0.26268130421692887 5.90857341541243e-06 21354153.46062041 480.3257080749934 None 7161 153146 AION_20201018 36653475.871154815 3226.735572718593 0.07848511568489354 6.906669423901298e-06 501666.8191267222 44.14654741109407 68214 72547 640926 ELF_20190830 34868788.88216155 3674.3970904166913 0.07552295365774453 7.96291789356995e-06 16440664.1633412 1733.4552279526622 85522 33549 1269907 SKY_20200612 8572579.248449503 923.9222036406402 0.4773430615621892 5.1329327659851545e-05 424932.55344339594 45.69355674229655 None 3818 485273 POA_20210114 6106926.189640551 164.41781983811504 0.021714066164529984 5.808498138590314e-07 199224.90749443273 5.3292529164 18171 None 255706 BTG_20210120 221328883.9731848 6111.890135323113 12.61504160193956 0.00034887431519738154 30784871.51981669 851.368652503226 82969 None 278818 CHZ_20210430 3085555001.2541533 57576.04010725191 0.5624186563128164 1.0494005994889645e-05 1552257042.212327 28963.112307436855 309379 None 33338 DEGO_20210519 62915527.55454908 1476.0473817338723 11.717133501743826 0.0002738871746196917 32722272.60016072 764.8808292795804 104840 None 65351 GXS_20210125 25608180.294899084 795.3022007634277 0.365945919227716 1.1338426543070742e-05 15184115.702746056 470.4629057769085 None None 451509 BTG_20201030 125654897.64363688 9328.422908875536 7.152542014713019 0.0005319156120988009 5208315.015539816 387.32859783213627 78486 None 307123 NKN_20200626 17391913.47885459 1877.9782931969287 0.02680353727767108 2.8966930342674533e-06 2154567.3669482693 232.84688953715965 12837 1009 255975 ANKR_20201226 56754379.40860922 2298.203217211039 0.00865884387182262 3.5100744275475014e-07 18080027.949949667 732.9182128226096 30708 None 5391 VET_20190228 250686504.65795386 65690.61874867204 0.004518465559547743 1.185123925316705e-06 15484579.316326061 4061.3666695910333 104519 54741 740363 SNX_20210825 2125319227.6039934 44227.016892377804 12.271800188122263 0.0002558185666720547 176123029.6934795 3671.46957442596 149658 7490 47795 DOCK_20190627 6835667.839229261 526.3755718710754 0.013341850048319871 1.023092051539301e-06 2492921.9353339197 191.1645392438874 173 15251 251058 AST_20210703 23828155.78039857 704.9778779404154 0.13887871522664455 4.101394714595813e-06 6215426.548980123 183.5552521878084 44136 3697 208588 BCH_20201201 5909604578.802435 300583.31273423665 316.4132208861088 0.016107557363670876 3734544638.389011 190113.3960887581 None 341431 699066 GTO_20191118 8603904.796059582 1012.2447682921785 0.01294854576462195 1.5216411960697499e-06 2172423.5045702164 255.29114697157465 17128 None 1232547 ZIL_20210819 1224688156.1725032 27184.811316063213 0.09898590927675772 2.197886180562802e-06 106923104.20408276 2374.1239013723944 None 35658 59302 POWR_20190806 30252208.768735528 2561.457377040335 0.07126225070562799 6.033158679314466e-06 1121398.15240997 94.93908667194398 84333 13118 515073 ETC_20190314 459639052.8520753 118849.72829554048 4.217979757839639 0.0010911025105868435 151348716.24780574 39150.72469590426 226133 24206 486280 STORJ_20200502 16026143.212430699 1808.5071054404314 0.11147562357091781 1.2614004130689804e-05 4077476.655074051 461.38613736638877 81667 8057 105636 WABI_20200721 7071706.636572911 771.8584427755649 0.11922577677517698 1.3012594923701204e-05 2227756.393447875 243.1428196210189 None 7664 820507 XZC_20201129 49037421.19913127 2770.2044007398863 4.331964685921659 0.0002445769762304511 14930362.456584543 842.9484468152322 130 4205 286121 WRX_20200320 19954193.119884007 3228.2130586844155 0.10478250999577868 1.694355695374371e-05 28947696.234930817 4680.9046648718595 21083 None 25580 POE_20200318 2050759.9473161502 377.51469108766514 0.0008004749787601995 1.488246791066905e-07 12379.962819366941 2.3016884260375994 None 10444 698681 BQX_20200411 3772353.4996406683 550.1742148645516 0.026848337887734587 3.914610523880598e-06 395020.7316667903 57.59583031917472 None 14 327684 QKC_20210704 109635129.18462421 3162.531203899036 0.016915796646413402 4.878307417630303e-07 30574465.120515402 881.7299185203516 None 9530 268503 EVX_20210718 6715300.495827787 212.45465206722395 0.3081182023697571 9.747660863817006e-06 398149.3217812526 12.5958951208763 18276 2805 1518494 SYS_20200626 18092354.46322709 1953.687942486853 0.030759296552423175 3.324197069190447e-06 888176.0099547995 95.98633324351555 57225 4456 992436 FUN_20190531 38000146.02971309 4571.905784357914 0.0063140249843743395 7.59845604582617e-07 2065337.9688908402 248.54795182518603 36361 17669 462660 VIB_20200105 3655836.439188618 497.7396873539799 0.020046435511874412 2.726264095334803e-06 517264.0020839671 70.34658485072728 31771 1111 None ZEC_20200523 433137906.2200048 47305.11209262385 46.870831086409034 0.005129161672036757 155842549.35817775 17054.138203071976 72206 15794 146242 IDEX_20220115 127512109.90686503 2957.9279368988045 0.20427632717268665 4.736364628390322e-06 7951722.341331569 184.36916775200206 77216 1992 51993 ETH_20200422 18883297426.60788 2757807.1902154195 170.45154288047368 0.024900383315620802 12178214643.078756 1779052.3194337452 453826 458318 21984 ZIL_20211111 1306761339.5424988 20133.58364587401 0.10265043494646088 1.5806849844298372e-06 182224948.20152447 2806.030384195517 348171 38868 65935 LSK_20211225 428286009.7022368 8423.189773650543 2.9596037537189743 5.8213938525443105e-05 16105329.832645105 316.7838531193495 203111 33699 225551 HOT_20200526 100833159.60061161 11331.756655769404 0.0005661818703823139 6.37072539723557e-08 9821293.996535163 1105.1001519210477 25245 7025 551083 POWR_20210105 41865134.259603396 1338.1301651092776 0.09757548263827114 3.118793215464637e-06 5890099.074382097 188.264516197149 81032 12573 337778 LOOM_20200907 24053467.133118484 2335.8580248879834 0.028801369088264136 2.804646079265109e-06 6622580.575152896 644.8997125031913 22479 None 451154 HBAR_20200320 137451078.64090827 22226.134680296913 0.04058173469671579 6.574046366088527e-06 48920607.017278135 7924.903683696133 38067 6375 115268 GO_20190314 16143303.93628935 4175.283104006613 0.02324452766147094 6.012869654411581e-06 1200981.7505813194 310.6686799036267 8162 630 731173 CDT_20190714 15584853.257890373 1368.6968065154508 0.023111146418890796 2.0294245342905046e-06 777282.5420689858 68.25434932388781 19846 297 343226 NEAR_20210602 1274281420.1054049 34729.08902933148 3.2393536236657385 8.830928857180264e-05 99870023.91015306 2722.5958588535364 63100 None None ACM_20210725 16158174.26366489 472.9366599589606 8.07588907975686 0.0002363747255881474 7954704.47204685 232.82775037463648 None None 42486 SSV_20220112 0.0 0.0 8.242825787421147 0.00019265316852853367 334653.2633225337 7.821590944683859 None None 358994 TOMO_20200707 47053885.26412415 5040.694561867762 0.6558484020811971 7.025886600227483e-05 12114411.593871813 1297.77677001166 27627 1580 149165 JUV_20210325 0.0 0.0 13.072200185161659 0.00024848000373685325 3549254.7873954056 67.46521858165289 None None 48576 LSK_20210825 625637794.2599972 13019.2645584076 4.3047209110140265 8.973642957817189e-05 14399257.271286348 300.167644503204 197177 32677 274824 REN_20190314 15160212.813109804 3921.017696348437 0.020113199073285796 5.202836931495799e-06 1046779.4093960003 270.77853455786175 5721 805 3522346 SNM_20200323 2553323.9325249367 437.64281663310254 0.005831442670396192 1.0000947952151805e-06 115797.87240170321 19.85938232297958 30095 9693 None TFUEL_20210610 3161995766.816962 84239.88575084537 0.5906040415021346 1.5768930452702772e-05 473111403.92329544 12631.916310413617 171627 19218 16282 TRB_20210704 68505459.47215039 1976.0876858769316 38.9385029667015 0.0011229384688432912 25100552.41326092 723.8690177219128 23021 None 263441 TNB_20200901 10351901.876690539 885.9008615243634 0.003008078078686127 2.577218926973852e-07 680396.9499417465 58.29409514566391 15977 1435 593209 AE_20200313 26851679.31128871 5579.558803381234 0.07669881615165508 1.6057706178717393e-05 16158403.111379545 3382.932129835835 25453 6342 460321 TNB_20190914 10611478.11215647 1024.7743887547117 0.0036790770579768475 3.552967742496262e-07 571950.2152352493 55.2345230344839 15552 1463 1259839 QTUM_20200718 246151239.44351602 26892.69801919524 2.4019045409058135 0.0002623706788141702 305094087.88871175 33326.77946949697 180388 15078 105183 TROY_20210821 18393982.756863534 374.37826493392794 0.009681705862959156 1.9693366597774298e-07 5778333.733780388 117.5359447543084 None None 544029 NKN_20200306 12904923.986866463 1424.9920852359985 0.019853729210563793 2.19229551574769e-06 1405412.635998768 155.18897165353982 12229 1001 370779 ARK_20190708 66252817.82546626 5796.15220110722 0.46391989062467553 4.056192330657256e-05 955730.0372109736 83.5623762950536 63502 21850 202264 TCT_20210422 25612838.10905141 472.70100370004593 0.04417063321918909 8.167379699560771e-07 6773837.931052488 125.25178466800459 None None 341028 SUPER_20210725 129650845.5880964 3797.486444771129 0.6027828770160469 1.761477319064441e-05 47830232.92117424 1397.715059082126 128125 None None LINA_20210821 175292472.4586174 3567.78042920302 0.06306486392473823 1.2831561777153748e-06 86964977.42263784 1769.4424609859968 43086 None 115735 SNGLS_20201031 4110158.2980958484 302.59147794190966 0.004616414825675521 3.3999917854509885e-07 144161.1394471431 10.617474997598764 8968 2117 2795227 EZ_20210729 0.0 0.0 2.6949901525643094 6.735470421588858e-05 2024083.026737653 50.58701733829876 35403 None 131496 FIO_20210506 83000917.93961222 1449.8563092779048 0.35543104383130386 6.199973622808686e-06 10105032.992312998 176.26749012865562 None 435 101174 CELR_20210428 361402382.70739496 6560.226279201535 0.06652155930228046 1.207165643225382e-06 93207724.15699549 1691.4390381960902 47943 None 141780 GTO_20200318 7092887.704389224 1305.696122135742 0.01064620026937837 1.9793464890680187e-06 15138511.319787761 2814.5590419452046 16893 None 1148049 TWT_20210916 455310493.4127928 9447.623880590434 1.3148105652889304 2.727461326719002e-05 39573622.08646725 820.9207215741644 6001 46072 4781 NANO_20201015 106296953.38547395 9301.427136516415 0.7977359663337815 6.98052270428117e-05 3281253.640442366 287.12339047315226 98735 52728 248744 IOST_20190915 82546140.40486059 7974.191898223837 0.006886135252599949 6.652056692980856e-07 10447228.113517826 1009.2098273757415 195738 50799 94352 DOGE_20190922 313507752.9523477 31392.914158851345 0.0025791613479888777 2.582719691542976e-07 72581064.80886461 7268.120137624671 138218 141017 96250 SNT_20190930 42927151.54405283 5326.8385234723255 0.01209802083475391 1.5025070600543003e-06 30974398.450353466 3846.8484215945505 None 5701 299805 LUN_20190605 6314085.940701291 823.3356279346743 2.335647225412151 0.00030456056395631 463271.3606880219 60.40903152703355 31462 2232 2333394 ALPHA_20210104 50662084.572132796 1514.406271935749 0.2865136350177956 8.703937598757837e-06 48428367.85451766 1471.1952252786532 None None 85584 ETH_20210120 157929393133.71045 4361143.844598411 1383.4840902277115 0.03823808713496249 52274850962.437416 1444823.4860003751 600410 539118 7694 XEM_20190316 450020354.7827289 114676.4880287379 0.05000226164808124 1.2741832004608862e-05 23726313.800461818 6046.0606094548175 215666 18459 129022 AST_20200106 3182181.558127272 433.37618008084894 0.018425960305502146 2.5086867901199652e-06 4892601.431477675 666.125638879454 31834 3508 410205 RLC_20190703 24552547.21070429 2274.9003790115535 0.3505484475603126 3.241269917331803e-05 916643.7705155734 84.75547100434792 24966 3317 789445 BCPT_20181229 2725760.5127644995 708.7446017108076 0.032492122879152596 8.448148421548461e-06 402612.49755666876 104.68168387702966 10038 1330 870631 ADA_20190410 2593699164.399162 501466.5039294287 0.0833658930679053 1.6110364121307053e-05 197432272.62434593 38153.56237693688 150377 72436 113717 IOTX_20190613 38318960.37123811 4714.270148128182 0.010969376954307775 1.3472394048140366e-06 1360616.0757390896 167.1084510719887 19571 1721 736941 LIT_20210509 152466161.04427174 2599.527307378941 8.479414897610761 0.00014442242852155112 25522979.5704435 434.71050033275446 48968 None 92801 OGN_20200305 10521571.765792096 1201.8942530116165 0.371133563091753 4.2372518843296506e-05 51116011.99648549 5835.942627963794 63469 2159 120835 SNX_20211202 1416688988.6495976 24784.877543776733 7.388238065244951 0.0001292031675886209 61931865.466186054 1083.0448507804365 175960 8462 46165 COMP_20211221 0.0 0.0 1.4077271247110564e-06 2.985907995825587e-11 133.79066485408876 0.0028378128753940276 2637 None 5058999 COS_20211230 87185535.64350286 1879.8335780246339 0.02550536321559633 5.476107135370666e-07 37567291.518642716 806.585310716107 None None 173868 LUN_20190723 3813575.25245259 368.4945322612578 1.4082744968677434 0.00013616971892562265 173077.64457193343 16.735327002007303 31157 2210 1689451 DUSK_20190801 7025508.77658538 698.9134507166347 0.14004499499321613 1.3908293202987056e-05 1010161.9021807394 100.32224228147122 20092 13226 227094 CND_20190221 20459171.803144086 5153.70217744828 0.012419388865470183 3.129252299075536e-06 419898.25437941164 105.79969691969485 36772 6234 644110 PNT_20210602 50473850.65223496 1375.6073229174547 1.1428522023200358 3.1160125997621184e-05 15134445.33670797 412.6441044945108 39843 303 346623 STORJ_20200704 21970936.053907588 2422.9676429769643 0.15240007802916233 1.6813533074199962e-05 4331222.485003805 477.8419633708786 81293 8152 96917 DENT_20190225 16890280.483998526 4494.416914138025 0.0008991008035146966 2.400089404058941e-07 1356700.1818256697 362.16203101540253 42437 8819 243701 CELR_20210110 29043882.53918481 717.741378636099 0.007339497244030507 1.820765470124377e-07 10026789.04875285 248.74225943798925 None None 415548 CTSI_20210523 216790346.64886343 5767.9384940488 0.6966155467325758 1.8549295874600365e-05 34735138.19621438 924.9181398101333 40207 3372 121908 ZEC_20190430 370117979.1381057 71112.73717391798 57.57211087427787 0.011061536469410264 208054022.91303518 39974.1667816505 74912 15139 154432 VIA_20200501 2903309.8249488347 336.82244672510035 0.1253213519891309 1.4538938986513598e-05 288304.83064367465 33.44718418461574 39070 2163 3161515 REP_20191022 90360723.68544231 11003.63974831307 8.21004848936706 0.0009990026184578337 5082945.604600792 618.4952470197162 125626 10053 212520 XRP_20190826 11574629576.681505 1146527.9413405494 0.2697890566921288 2.6710200962451683e-05 1118735287.0596344 110759.28989680446 937475 204858 32072 WABI_20191011 7044999.6309707025 823.6512364770247 0.11930854479317694 1.393735093030205e-05 388966.0303550162 45.4381207517201 36234 7920 1306632 SHIB_20210702 4164920296.578924 123875.78116035351 8.36998002711745e-06 2.4882734886909525e-10 470490755.6338487 13987.006780481668 702713 192178 10263 ADX_20211120 99326345.30890577 1708.1538621834952 0.7353343493951018 1.264026777424475e-05 5087543.118735248 87.4539689145904 307 4045 9243 DCR_20200414 135009779.79525864 19716.892335422745 11.890216677271289 0.0017364528882732033 93274501.4159383 13621.852467630486 40606 9770 206207 OXT_20210722 146298687.68469828 4546.1205705117945 0.24818563403867838 7.684867314796042e-06 8586681.765404029 265.8796521285547 67822 4340 154434 HIVE_20210509 218860223.1204724 3732.2139298960456 0.5875406099676482 1.0007063314058436e-05 13184201.229272636 224.55492302716416 19603 166 115181 GRS_20200106 11832274.575278787 1611.0993911500257 0.15927712020060855 2.1685513307889832e-05 7824515.714374646 1065.304542411084 38014 106900 4090330 ELF_20190613 93932135.28435604 11563.708257050615 0.20370488023313885 2.5061218430965596e-05 27714255.96706306 3409.604235535976 87339 33130 1112151 GXS_20201130 26960251.68602333 1486.2531666402638 0.38521148949284006 2.1200714864773497e-05 1525985.398093174 83.9849853787463 None None 441623 MANA_20200907 104172735.87817132 10117.26137471922 0.0784256858943662 7.624276840015651e-06 46103749.42513363 4482.048769753664 51317 7269 80457 NANO_20190421 230230550.5499597 43356.67440466249 1.7279563190639489 0.00032541715361891836 7907817.840439662 1489.23878722049 98361 45222 385823 DUSK_20210620 43667164.374271855 1224.9159608323234 0.12088715534471617 3.3956318330310174e-06 4339517.8630771665 121.89388487017308 27457 13630 389018 TCT_20210617 17867584.257070187 467.198206367234 0.03087805641957977 8.07191091729094e-07 2841608.2453244342 74.28320068601784 None None 301780 POWR_20200520 36677763.15829359 3759.8628272894885 0.08587461441359512 8.79651267288097e-06 5392745.118376667 552.4024893660234 81836 12770 209836 ARDR_20210702 187459871.05761483 5579.965852629384 0.18530351105953574 5.509612695505093e-06 25857834.21687138 768.8286685176071 72194 6970 None REN_20200129 36877111.06726427 3945.785161871317 0.043386025004997796 4.640019642452382e-06 1718745.976787603 183.81529747797387 10593 870 462804 VIA_20210506 38512040.39670938 671.7860996223743 1.6618596289470544 2.8988705525600206e-05 1469949.2110349329 25.641109558259576 38499 2279 682329 IOTX_20190622 35507133.440605186 3508.4212544398297 0.010145094980187919 1.0023046359297854e-06 3412936.7685466595 337.1878086829084 19544 1737 766707 EGLD_20210626 1123419996.1288142 35307.383345911905 62.63386411230195 0.0019678396119989974 35195173.78618213 1105.766953855156 257998 9222 30591 SNX_20210114 2176296913.5357637 58445.802416072984 15.808479390097489 0.00042402258915480407 450933653.8538671 12095.157967180916 56725 3150 45504 HNT_20201115 52192489.24717282 3243.288968165958 1.152990118281449 7.16763497090221e-05 1676850.0030028871 104.2424261223987 None 1788 69434 NXS_20201228 15334441.562997987 577.5753784333831 0.22392504617222866 8.514807540087787e-06 561197.0958388626 21.339664074240332 24188 3520 534384 WTC_20200305 12456979.537962452 1422.9786622981073 0.42676891251871035 4.8732060111209223e-05 9603780.063225241 1096.640297845984 54969 19431 905715 DCR_20210108 727682255.0068728 18590.551154455312 58.45943689071425 0.0014813953055294465 31855289.89769017 807.2311233332042 41429 10078 378546 TCT_20200903 11873033.509283077 1040.7356869258417 0.02053686200167218 1.7997587749181887e-06 17761126.009667154 1556.5056816237739 None None 525749 KAVA_20210310 255313583.27821234 4669.354131809656 4.36420621888637 7.978016106101114e-05 57557266.99644652 1052.1794344493335 None None 89619 BEL_20210219 73119143.52492133 1414.7618606767257 3.2767030469974174 6.337862027223481e-05 36561738.652886845 707.1841779185282 None None 362473 DOCK_20200317 1701908.09624494 337.1954317104728 0.0030275473593882334 6.012749552866894e-07 764693.7694053266 151.8692054746606 43059 15022 378260 ZIL_20220112 840226684.2936752 19611.166910869433 0.06090233573627027 1.423423016932621e-06 44075641.28504086 1030.1457494647318 378067 40292 35628 EVX_20200208 7000499.635423312 714.7647684525695 0.32040741590473465 3.268254077166804e-05 1356466.5586295344 138.36375629019545 17877 2879 593628 HC_20190916 97219335.18616582 9434.016674235725 2.196143358542194 0.0002131107206565907 41928030.37788878 4068.638203780371 12902 850 356881 OM_20210710 34323341.87004779 1011.9913646488687 0.10794528653789767 3.176265832979053e-06 5288230.457070123 155.60499449704056 45973 None 75678 WBTC_20211230 11972763557.43952 258148.3590242955 46575.51065364095 1.0009856736432812 297537527.87338 6394.579438694988 None None 207353 EGLD_20201014 115192282.06667094 10083.035868792049 7.961247163532426 0.000697000274835068 3004403.108211647 263.0328828039684 72093 2713 46526 TKO_20210704 104885928.92791493 3025.5359349819396 1.4030444906445867 4.039357843069918e-05 6921358.405927888 199.26555107912745 292310 None 20199 ANT_20210616 162670227.3583002 4027.8314504112263 4.620276372617018 0.00011447043903373472 28854777.741187826 714.8964282376272 84559 3024 95645 UNI_20210207 5766938732.57773 147020.76621671373 19.32316884434958 0.0004912020528632822 1124689339.6259599 28590.01631190871 None None 5312 NEO_20210204 1735615410.4091313 46327.633253325796 24.715325985267217 0.0006589002087731461 594523639.3394456 15849.750487403737 334775 102552 149199 REN_20190826 64169212.19147532 6356.221347923692 0.07816114813364435 7.727358636185381e-06 6238047.880193273 616.7211499699071 9519 882 378808 NMR_20210509 374081127.7844721 6378.89412500661 65.84862608234819 0.001121541829059445 17831145.278306246 303.7022407217266 28059 3216 699246 SC_20191113 81984378.51739246 9321.992323254068 0.0019517372387604847 2.2177636030744498e-07 6153301.894166027 699.2011377657163 108240 30440 223665 MDT_20210731 15558792.848415071 372.8873646000227 0.02569096607536906 6.148848775613612e-07 1940817.7310327634 46.45132726476718 34276 315 739856 KAVA_20210513 382731241.03708214 7420.408431648987 5.186101949518229 0.00010338646546931605 94681139.22570482 1887.4963173570427 99791 None 74239 MDT_20210813 19824038.402262956 445.93580738994325 0.03267260980565281 7.356718582211996e-07 4278593.763001027 96.338830687961 34574 319 745074 VITE_20201014 9751230.08889333 853.5439754735619 0.01797051579439809 1.573197400549167e-06 498580.3625972408 43.64734654123555 None None 392905 QKC_20191127 14749166.205472395 2057.7463607897266 0.003938233602519161 5.502762067693857e-07 2401143.5125844395 335.5037505059872 49348 9221 296217 CTK_20210206 42234610.36553097 1114.340091508341 1.2044347291285808 3.170684628426394e-05 12596754.813484358 331.6106376645933 12972 None 214497 QSP_20190914 0.0 0.0 0.011588312484882823 1.1191094886008357e-06 175349.42193252177 16.933889396005604 56390 8527 551928 SNT_20190601 102286479.70931411 11923.641727824644 0.028986651000203326 3.3799064607141544e-06 30046444.323179398 3503.4806638645427 111530 5754 342560 FIS_20210707 20809906.79201788 609.2560222764832 0.7715694372949682 2.259235643740723e-05 4315157.330732013 126.35229933572201 None None 421397 STORM_20190923 9638013.903587477 958.7601034538958 0.001545728457453121 1.5389945712765717e-07 46275.40383509455 4.607380742875496 26392 2547 1924840 BTCST_20210814 180781735.72175503 3789.9988033588234 24.887062002565767 0.0005216065407789416 8680830.474780148 181.94104047202 63469 None 1348993 MTL_20200117 17178938.27961202 1973.4431867855908 0.2818312792505849 3.2344075890057084e-05 12437580.272041133 1427.3860633116378 34609 None 534159 THETA_20190719 120372782.4409212 11232.72914745785 0.11870612905911393 1.1125649794410439e-05 7797232.411266044 730.7902116003849 None 4017 240889 BQX_20200502 4626737.705752478 522.1390452015104 0.033420892997975064 3.7842668620933593e-06 936800.0254190938 106.07440360185727 11105 18 369703 LUN_20190804 3185104.563216867 295.05341757957115 1.1782038929452379 0.00010914338236605583 126175.23989591375 11.688293117640049 31087 2207 1249671 RUNE_20210131 885277125.7213221 25878.528148817284 3.855893372624488 0.00011286268503144588 98217736.95913464 2874.8506350358966 31071 2210 162982 REP_20191220 104604572.51835746 14645.750119527473 9.547487032417365 0.0013361271616916595 6650889.59735396 930.761593104478 127624 10100 332512 TFUEL_20200105 0.0 0.0 0.0024259502748252794 3.2992304928255767e-07 205044.81736548047 27.885572135099363 68782 4013 523233 GO_20190830 7881806.163562384 830.6123526545883 0.01022195351830258 1.0772252811563264e-06 282302.8026129739 29.750058574564726 10221 687 906372 ANT_20210710 130261885.32170874 3833.9809483383824 3.714698545303425 0.00010931168272905731 8316077.622343036 244.71553411867032 85434 3044 102952 QTUM_20190302 172626415.11056942 45151.738889536035 2.120805094167914 0.000555146941546578 156469399.95184433 40957.799030077804 174583 15200 269800 STEEM_20200502 65707082.51952336 7414.867322672296 0.18633375323030457 2.1088226748985177e-05 6003226.229523834 679.4120429548921 11288 3854 240459 DUSK_20210902 61256780.42869372 1260.1407881488924 0.16993013143956792 3.49253527409675e-06 2843223.254491468 58.43611974121864 28568 13663 353421 ICX_20200109 60219328.53675931 7485.027159842038 0.11708481603745725 1.4552212615717105e-05 6568256.831640585 816.354102636945 111782 26978 96597 GVT_20190915 4698362.503305478 453.78583873258606 1.0592617782512408 0.00010232769998452702 203283.20544547023 19.63773571917106 21236 5705 171342 NULS_20210127 31660006.747101933 971.5477149607838 0.32145856152246177 9.869247477732617e-06 27419752.289542377 841.8264545264268 37542 5093 890471 VIB_20201115 2855049.925738002 177.37830457333644 0.015628805301460734 9.71692714260835e-07 600007.6732927068 37.30439233155121 30431 1097 3115290 KAVA_20200502 11677970.29338863 1320.2603005076467 0.5929401689525176 6.713895504548612e-05 11102498.865759736 1257.1423075580087 21667 None 342540 ONT_20201018 357235064.7505716 31438.79722292212 0.5609103110456932 4.936256689554251e-05 99100550.02153112 8721.282945758478 None 16673 214666 KMD_20201115 59282084.57543043 3683.0724250276903 0.4829604320171941 3.0023536431068267e-05 2510668.676181125 156.07728391087394 None 8396 291140 SC_20201124 137971944.8682993 7533.81745188083 0.003064295401985178 1.6696923108136951e-07 3140524.9880959834 171.12287611517613 106929 30062 144998 KNC_20210115 214946878.8605611 5510.320432619689 1.0706190405178513 2.7338281348332898e-05 59228542.243367344 1512.402162133785 128287 9344 138877 VET_20190629 457803689.2827735 36978.35400184343 0.008282885535051012 6.668945365406681e-07 84366212.279166 6792.725288731099 111094 56493 189744 POE_20200320 2331701.2283041603 376.7612375331781 0.000980264953322825 1.5879822048901678e-07 18805.954962407657 3.046474499066838 None 10445 698681 NAV_20210206 24459689.35981335 644.9680588856057 0.3469072807069236 9.090488152118163e-06 2277081.689453248 59.66950038407433 48713 13671 604574 NULS_20200807 46875118.96306738 3984.1777930686985 0.48647558192672646 4.1339269937565585e-05 23749948.633989874 2018.201065088001 30224 5181 381223 POA_20200901 12076429.42989166 1033.2218908616578 0.04295175856063969 3.6842158589037794e-06 1141633.583964017 97.92438531147185 17992 None 497841 CMT_20201111 7667488.054430798 501.28778644281147 0.009456819360997978 6.191186509641208e-07 3769151.175173272 246.75863012433038 281864 1633 811182 NAV_20201228 8813280.356972177 332.3447924396286 0.12481372821604665 4.7359909827648984e-06 195889.62366317393 7.4329282887868064 48237 13646 1033713 FIS_20210809 66057398.32590508 1501.5660293820404 2.410660672744117 5.4802249148669376e-05 66762882.796284504 1517.7400030841088 None None 435557 WPR_20190615 8401156.560129285 966.0132162194993 0.013956003895621698 1.608094352067431e-06 1278519.8189238037 147.31871065632544 34892 None 1388186 DOCK_20200718 6522647.164486246 712.6170921456609 0.011726846266303985 1.281132392255706e-06 1447483.752245858 158.13444468821103 42098 14961 299500 TFUEL_20190701 0.0 0.0 0.009343417143440131 8.611657250680899e-07 10753633.924033267 991.1428349111743 None 4004 256073 UNI_20210708 11650837813.605581 342895.63482648047 22.410617142857696 0.0006595905860219693 429667893.0750782 12646.010396841628 None 48295 1526 WTC_20200707 10657049.176047392 1141.647157939253 0.3646806049865329 3.904802943743896e-05 5953853.3857380925 637.5064620754428 54378 19563 728935 YOYO_20200531 1634828.8120290719 169.35731284607525 0.009355119082471218 9.689817249801835e-07 941429.8830654371 97.51114272290678 7461 None 2226811 TFUEL_20210823 1783823148.2958853 36158.51585304647 0.33545597949851597 6.808615527369021e-06 36059872.19297498 731.8927690454776 189459 22851 21702 POLY_20200107 9988114.121393368 1287.3086323584084 0.01756790192281557 2.265797124206111e-06 6603989.882131491 851.7409391833428 34921 5010 298453 BAND_20200721 81716828.65471707 8918.851182875369 3.964574053798477 0.0004328732873958688 59607061.682603575 6508.216114120917 18199 1383 306961 ONG_20210813 0.0 0.0 0.8716406163250539 1.9606087265193384e-05 31320231.076980717 704.4958348204218 142297 19772 173647 FTM_20200329 6250628.396810708 1003.0871183527298 0.0030079936864680426 4.811198598857305e-07 1539651.1433924974 246.26273177178527 None 2324 333169 LAZIO_20211221 0.0 0.0 4.957938420676393 0.00010519089241471762 15092723.598310413 320.21718092625036 None None 86457 STEEM_20210620 132168163.12016034 3707.47436522718 0.3438268034010788 9.657075647504327e-06 3370691.6756924526 94.67273689714037 13882 3942 208449 MBL_20200701 6525585.785145541 713.2130505155267 0.0018521579260401151 2.026277442613941e-07 5173680.1715649525 566.0052676692773 None None 121072 VIA_20200318 2104600.3969733836 387.6494599109714 0.08995982749617452 1.672537282845184e-05 17463.548965986076 3.2468311188842867 39491 2181 2066197 CND_20200421 6739681.468310469 984.2182178749574 0.003492843498355992 5.101517294677706e-07 167096.13476846975 24.405439917258605 34622 5945 386882 DOCK_20200730 8744426.302178536 787.4415646799366 0.015754394573786065 1.4194928340743066e-06 11173430.218063219 1006.7415826286791 42293 14924 299500 BTG_20190615 474497017.35718346 54553.59212417476 27.04199013607051 0.0031145236196217603 28766386.87615099 3313.128616870674 74070 None 422397 NEAR_20210828 2347885183.255814 47872.34100796415 5.314849241398814 0.00010836662956991202 163562469.89050716 3334.9419298861458 None None 6382942 WPR_20210106 8064709.005524433 237.3355279817707 0.012955544971385687 3.798552488149024e-07 8570125.461072735 251.2751988882584 32520 None 7558136 MINA_20210909 851440131.7587229 18378.762862006006 4.034125658984445 8.713592908092729e-05 113213339.92037594 2445.374882249009 124859 9772 53382 LRC_20200421 33544094.44787749 4898.556261590727 0.029203368116185156 4.267869128094257e-06 3510394.791804045 513.0197825044723 34144 6808 593192 MTL_20201115 20469784.618634563 1272.0111186869074 0.3162093936099599 1.9657354142329918e-05 6174326.397203102 383.8308507996659 40517 None 352724 TNB_20190523 13443448.31334842 1753.399177848773 0.005143228696932537 6.711181776515124e-07 2079768.6273815355 271.380219195295 15800 1502 532164 IOTX_20200905 53390615.016677506 5089.047642215797 0.009114769208544357 8.693105704264485e-07 6956183.842151906 663.4379878915274 26410 1933 382406 NPXS_20190401 112580052.09439486 27435.26806537744 0.0006392051223661218 1.5576955949870186e-07 9498034.86182127 2314.600829625059 57888 4178 151112 RNDR_20211221 691632646.9339331 14659.856277031122 4.4924381698739415 9.529352967570687e-05 30427988.530531235 645.4380268271136 None 4192 62178 WTC_20190826 40670165.01462087 4028.5937670208004 1.3938921263644881 0.00013804711287387537 4830747.403114813 478.4234873054956 55979 19969 638612 XLM_20200410 1052235018.5113977 144310.8339132859 0.05181874383360482 7.106783183803963e-06 355194794.99558717 48713.88631409304 281176 107432 84829 ETC_20200404 594609917.4443986 88393.78073498278 5.116779695736128 0.0007605032467504059 1465602027.7795448 217831.3640313902 230752 25361 329004 XTZ_20200325 1243055544.3798897 183929.06209179523 1.7649188382313163 0.0002611887837195396 176495349.1150153 26119.3911974464 57751 22679 103142 1INCH_20210603 585782616.2784841 15554.086254316597 3.389688050405772 9.001826081551597e-05 125769093.10404569 3339.9872959447175 219826 None 7666 CVC_20210421 390953154.084085 6920.073472626908 0.5845070238648103 1.036655355114519e-05 220557133.21984446 3911.7020656015297 101025 9588 120797 TFUEL_20191024 0.0 0.0 0.00316385996499154 4.2377904717574794e-07 816639.7874024274 109.38373847786005 69624 4027 413739 AION_20190816 27400639.441960983 2663.0744465017674 0.0816417265730907 7.924510051617924e-06 974871.7278825598 94.62539721924233 67480 72590 170946 TNB_20210110 8198718.185714747 202.6092512157958 0.0023798784655444777 5.905803728721925e-08 533692.6833421981 13.24388738713539 None 1412 3447610 BAND_20200305 8426461.988775365 962.2064768594909 0.47450037991115573 5.420209774210851e-05 3085555.988091049 352.4625360396413 None 1042 796393 SNGLS_20190816 4103144.916152626 398.7160180502145 0.007109807178707163 6.908832286764651e-07 80862.89397744983 7.857712012018583 9 2171 None XZC_20200719 55436265.79162443 6047.505660445337 5.241298747316088 0.0005717698223329465 9864278.82158268 1076.0876685663263 64433 4133 551795 POLY_20210219 275665936.12300295 5333.357173622603 0.3504834893961374 6.780346657821476e-06 579780568.23134 11216.257989357166 37728 5201 248256 RCN_20210506 71784786.833626 1253.9334345428663 0.14002128166146566 2.4424660366610723e-06 2590045.159923774 45.179541720143945 19765 1160 694898 STORM_20190618 19566909.995637517 2100.0537993406833 0.003311524508423352 3.555639862105282e-07 886942.0970249855 95.23247276411581 26849 2576 4259920 SOL_20210301 3482110143.44744 76756.97920796493 13.030769065831386 0.00028864083101428495 388225411.00663006 8599.46981545763 123298 4989 46450 ROSE_20210207 106396400.36634031 2712.4408685312414 0.07094681079850025 1.8041839886418036e-06 15675546.309022812 398.63059869281574 10371 700 215578 JST_20210427 172821556.17613477 3207.072881250142 0.12080795987739561 2.241920246054668e-06 501928840.6922547 9314.654689713587 None None 74075 BAT_20191102 318535173.84710634 34483.85401400118 0.23539422695404572 2.5483214490837353e-05 42529216.33112483 4604.110967024078 None 31073 23989 VIA_20190426 10310948.314966125 1986.7323370789313 0.4429541611117768 8.528933646200332e-05 2373122.184217453 456.93670859114394 41285 2228 2047585 VIA_20200506 2938786.6191479927 327.1252254166861 0.12685174623136028 1.4120251470474085e-05 82228.78918300082 9.153135182379742 39031 2162 3161515 OCEAN_20201224 136230805.16491646 5826.25897861772 0.311711698840063 1.3368015165277908e-05 43325565.14295926 1858.052854706896 34302 1302 67754 NMR_20220112 168298861.25047845 3925.9082379280526 28.488963915885915 0.0006657404418764732 2552295.3965034042 59.64296455582864 32838 3773 2494554 ONE_20200412 11659327.08481193 1694.3997074369402 0.0022340758061026762 3.246017403735757e-07 52912176.887677155 7687.914912187688 None None 330702 BOND_20211002 114828990.3590535 2384.209429604936 25.384001338778546 0.0005270576192779861 15258608.760839349 316.82026405728163 24271 None 167037 COTI_20200530 10906017.878038859 1157.8773608354127 0.021861947725176103 2.3321383891751638e-06 1555261.4660455382 165.9085922153548 23965 973 239243 NEO_20200109 666918781.609295 82867.67370481355 9.445946111929707 0.0011753668741805445 423414461.4810403 52685.81105340868 323211 98684 215815 TFUEL_20200713 0.0 0.0 0.009596027158512474 1.0328087699395332e-06 25890907.791045055 2786.6070183603224 71593 4288 81176 EVX_20200907 6433430.249202343 626.4804589446824 0.2951114793212084 2.8737635731407447e-05 309707.7923950172 30.159008865050076 16908 2831 827179 AVA_20210805 114200882.1015264 2868.6397835242788 2.1885304089866504 5.5036712827639146e-05 4249760.15040441 106.87209463653323 111358 10539 54869 COS_20210723 34145120.905660115 1055.7373140495538 0.011344878277391814 3.5043688114526665e-07 4520523.583267459 139.6364197948954 27117 None 345679 WTC_20190530 69593618.1489794 8047.712927596771 2.434998407119831 0.00028159191192530516 7113861.598033045 822.672360977668 56414 20194 976085 RCN_20200320 22299322.49196488 3603.115440637896 0.04385078243725189 7.09465152998824e-06 1452856.7644625653 235.0588038331493 None 1131 875851 ZEC_20190130 280288620.7080133 82114.17237404022 48.49348456890205 0.014205586058081724 118969471.02236734 34850.683012713096 73020 15006 145116 QSP_20210724 21395443.1921069 640.1879551263111 0.02997466960309275 8.964827557337272e-07 353122.6899792912 10.561197384877211 66501 8490 252569 MANA_20190616 79164255.5199973 8978.354508735907 0.059520282810192456 6.750306186224291e-06 19267165.629250955 2185.1251572996384 44770 6266 136694 WAVES_20200530 108544659.8846542 11516.99664687726 1.0850381946832306 0.00011519705682816627 28175158.681355637 2991.3189891958464 138 56836 89919 AR_20210724 391154126.2317461 11702.47146121073 8.927414622567609 0.0002670012169739217 9636831.8398327 288.2184750895255 22999 None 89863 IOTX_20211225 1349044888.3040116 26515.891747462592 0.14133522556029116 2.7794126542291037e-06 140694427.0100246 2766.8110993629193 187421 16410 43807 REQ_20200117 8748145.343534898 1004.949639157731 0.01133696070386218 1.3017902221720176e-06 100765.22207496478 11.570577358312045 40039 28587 1277267 VIBE_20190725 3973561.3883781196 404.22461183011126 0.021234035353548838 2.1601074853101926e-06 142498.50375479256 14.496165212176 20447 None 1758563 DLT_20210527 8037028.7993223155 205.13365812794117 0.09883731229821471 2.5208770738361774e-06 661039.1146473525 16.860012785410145 15115 2600 6348048 AE_20201208 56122609.67098537 2921.9783979815193 0.14742619068592 7.67917127580263e-06 16009545.872717276 833.9091190813526 None 6349 626578 XMR_20200423 997126553.0427802 140159.11204543404 56.871062654458484 0.007993967885425635 133149950.02267128 18715.958076858933 319539 169457 82357 XZC_20200425 39950392.81891974 5327.917288502081 4.007628837669593 0.0005346881497592389 34879859.28866662 4653.586492746296 63656 4093 120622 XLM_20190702 2056698037.7500439 193820.69606160405 0.10606188288700648 9.991731996843544e-06 487459537.39525723 45921.91769919475 274082 102686 66272 TNT_20190325 7724318.263619321 1934.417411797507 0.018030096456504552 4.518355646893645e-06 540991.8036968516 135.57295031968653 17131 2512 1213867 CDT_20200305 3921648.8640603065 447.97558168713175 0.005815665392995023 6.64081537348828e-07 96674.89123505357 11.039151336274283 19257 292 235568 ANT_20210108 119637566.43832985 3056.455319011884 3.4655536736757586 8.804513179906094e-05 49346694.93517133 1253.691810465294 76546 2688 131856 WTC_20210110 10603944.375702081 262.08681532794395 0.36171576186390975 8.97929315346228e-06 3601915.9693963532 89.41457026004737 None 19143 816491 HBAR_20210218 993677239.4039935 19044.30969488354 0.1391487789525723 2.6687269898665155e-06 78367406.35662532 1503.0042954314877 51847 8811 100428 COCOS_20200308 11028892.970620936 1240.7884007434377 0.0004562327880872788 5.130740439493184e-08 1346333.7107844034 151.40711047828057 14683 212 73199 TVK_20210805 94417653.40161893 2368.7339305349756 0.21703572644064034 5.4571187792678795e-06 13035383.608750295 327.76003219786793 51379 None 105979 AMB_20210506 11115237.058095692 194.01632414667208 0.07850753091338594 1.3698500115369662e-06 1476579.6383602386 25.764313450063465 25560 5605 453287 FTM_20200711 24769852.630894713 2667.637596180529 0.010320349739337141 1.1115254131188555e-06 7213910.438650644 776.9547527987742 22974 2436 295003 XLM_20191026 1270401262.7970304 146981.9077172966 0.06344395993018334 7.3279801152445096e-06 304346444.118028 35152.98687371575 277305 104603 61021 CHZ_20201115 57552059.469173506 3576.337558602123 0.010754805492387826 6.685791901442216e-07 5374219.558101725 334.0917101993199 43369 None 330052 CVC_20190930 25849442.73401398 3207.6623398720244 0.03856090487877876 4.7856939758373815e-06 4592758.024489368 569.9952965152944 None 8145 118286 STX_20210523 1017970908.2737896 27081.53341578516 0.9806153897469297 2.6111569127217916e-05 16409863.25151152 436.95753007773715 63160 None 59386 RSR_20210418 1361497224.4772596 22585.16200420437 0.1027053770316286 1.70861861885992e-06 191368107.92450783 3183.622140397919 68307 None 82413 FLM_20210324 0.0 0.0 0.48084660801158047 8.817624311896717e-06 23279724.12611601 426.89676501522797 17027 None 115259 TFUEL_20211207 1886178773.9046779 28765.286079276702 0.2583249642840656 5.114619086447216e-06 53255923.98603342 1054.4229282688425 None 26544 31041 XLM_20190205 1517108163.8222568 437927.25182836887 0.07915014307748666 2.2847418177763434e-05 69391654.01190509 20030.54038328865 261754 98993 61988 PSG_20210805 47172237.83955472 1186.026797507569 22.458691564158098 0.0005647865586082568 5067353.144132881 127.43275516971667 None None 33865 STRAX_20201201 84024106.8420289 4273.762152328403 0.8390526436207248 4.268373944660191e-05 14641981.565084893 744.8573469825548 129128 10280 294046 UNFI_20211216 46232943.067411736 947.6659259627579 9.09380775249627 0.00018608265852803845 24055129.686226 492.22972434412145 23726 None 309205 IRIS_20210725 72616903.53865051 2125.4378901804166 0.06907767101540123 2.0218160371247895e-06 4543195.114077196 132.97357317359914 26454 None 789272 WING_20210620 33478296.673206743 940.988104767584 19.95655732718432 0.0005605651083827692 2670437.76602441 75.01064493232006 10789 None 434218 PERP_20210806 705367665.0284882 17216.084408432922 15.938408476318958 0.0003895407256497563 43475175.4279729 1062.5497149935202 24850 None 147640 NCASH_20200330 944191.2560872625 159.6771711383512 0.00032529017835559467 5.5039981467709166e-08 544911.2204660517 92.20045814974556 57621 58294 679947 MITH_20190523 25542809.79696253 3333.337949678694 0.04756742629178699 6.211196930138684e-06 10593062.905850615 1383.2070585022507 74 2041 460427 ADX_20200531 8767895.356530646 908.2952208645104 0.09484732235909002 9.819655712154083e-06 1021382.8644648896 105.74497866547026 51397 3749 28215 SC_20210506 1970632103.935396 34422.913144587736 0.04151801092867733 7.244272564176058e-07 714420736.1595137 12465.57439162875 134763 43482 47016 SAND_20211207 5025527451.588507 99565.97665328828 5.505112739184544 0.00010899664601488064 1498545023.3276038 29669.943048104484 542905 None 6333 ADX_20200526 8104167.864296334 911.8912179291231 0.08825254974939474 9.925954467171856e-06 774982.4509493499 87.16394645621273 51483 3750 26669 MDT_20210429 37945564.97148025 693.2229133765571 0.06313642846110278 1.1530581300173826e-06 13041432.211995382 238.17516773816564 30713 241 381469 YOYO_20200411 1290293.8419028765 188.24816849881165 0.007363297069999546 1.073602407761993e-06 260757.16955446757 38.019588563862726 7469 None 3120831 BAT_20200721 384654784.3119779 41987.178991256376 0.25893740301268947 2.8264437441669777e-05 61585096.538977064 6722.350993764343 119763 42598 19525 CELR_20200807 31358409.765454363 2665.326138412777 0.007952325852520472 6.757653564991077e-07 9834223.592268962 835.6835138508885 22284 None 493813 WAVES_20191012 84655550.03632373 10243.10902476042 0.8472311345398859 0.00010246740971596273 15184031.912280602 1836.4155372321986 141967 56898 24707 MTL_20200224 22824293.123669986 2294.1273142363516 0.35368110338379555 3.5543399378443845e-05 4275662.049556195 429.68527970724034 34739 None 562991 TWT_20211204 344700000.8283286 6419.612070995821 0.9982527028413303 1.8580424525915318e-05 32374671.33066719 602.5880375766824 10839 60115 3311 ATOM_20200607 573171422.0424594 59276.11513969138 3.067054634550949 0.00031718797669556267 129600768.75849664 13403.02359064943 33817 8511 147612 VIA_20190702 10175645.94214791 959.1282981455424 0.4396067722662749 4.143612088452895e-05 696075.0007456149 65.61010815848749 41028 2236 1727246 ZRX_20210110 415669822.59334135 10276.149378720786 0.549171084217179 1.3632715730109798e-05 305732604.2092759 7589.557794275518 None 16326 98378 OAX_20190811 4347910.409788491 383.62412544226623 0.08367673514282403 7.3888931980899835e-06 826956.2862973765 73.02258708482182 12308 None None BNT_20200404 12732935.120372783 1892.2864078200505 0.1825500771626532 2.7129410972077317e-05 6390824.007973245 949.7629015409428 None 5018 146407 VIA_20190923 5344991.405588689 531.705062968182 0.23063716740723958 2.2960048460519994e-05 170182.77977908988 16.94178312541682 40597 2208 3148663 TORN_20210826 73318007.76876728 1495.7642909310623 68.10085504486996 0.0013896954401092854 73429707.10486902 1498.4382951574105 23405 None 123832 AKRO_20201130 19210554.519100796 1059.0311922692742 0.008346660124355053 4.593714522965064e-07 3875037.2758426294 213.26871761709285 24141 None 105123 YOYO_20190914 2475262.4106719624 239.1015361457698 0.014152944289980394 1.3671240294079188e-06 505855.60267900943 48.8638502112027 7539 None 893009 BQX_20200329 3400584.799352191 545.4926607454584 0.024209831362059984 3.872292260841888e-06 107048.47179466934 17.12209237091431 10786 12 311435 MDX_20210703 843751997.1105628 24920.337488949288 1.6475759395564857 4.866118777820516e-05 85005309.27178697 2510.6334811689053 None None 12360 XVG_20190906 69546033.30310372 6580.152571337401 0.004366825109502349 4.1315825959449194e-07 1071939.3073602235 101.41935330914743 302597 52760 272149 BAT_20190702 423060300.6013769 39868.68292454495 0.33151244649076134 3.123066863222187e-05 79904735.02223857 7527.5553845444265 103406 28350 46382 FUEL_20200207 3086819.1589865466 316.9420453228856 0.003116447916060205 3.2016931367995833e-07 284658.36648266885 29.24447200299479 1 1479 None QKC_20190318 52315786.94105611 13137.281949317503 0.03311486709853596 8.316052013206067e-06 3164351.6510763294 794.6555497300684 44962 9034 152354 COTI_20201111 22051103.36423293 1441.6651158029324 0.038707134411633884 2.5338199535876635e-06 4272591.575977617 279.6894668980913 32419 1207 163060 BTS_20190826 107571148.43510494 10652.868505551922 0.03970777631619565 3.9332641043421915e-06 16925493.941617906 1676.5592018728576 13619 7159 133964 WNXM_20211111 148909151.63781235 2295.775012624496 68.74127744314806 0.0010584996078779449 4575022.376292203 70.4476199957617 None None 115391 CDT_20190821 14017197.076581985 1304.6277087363485 0.02077917226845459 1.9339874982083208e-06 1321149.5916600376 122.9638390077975 19755 297 224421 STORJ_20200306 23157369.5141084 2557.7851477242316 0.1609642549901321 1.778042713277591e-05 2017564.7619375193 222.86415848963267 82418 7992 120208 CVC_20200903 25624150.25074616 2246.0456429195387 0.038239203659170586 3.350359657133049e-06 4482545.220255521 392.7419305348689 85319 7976 130606 EVX_20190930 6916501.768690592 858.0897517575612 0.31705863732429773 3.937692350987289e-05 748692.755839952 92.98348604504787 18240 2903 454708 YFII_20210217 124850390.25126 2539.0169317010877 3139.544027785409 0.0638343850679474 208381481.64178708 4236.890332617578 None None 229687 ASR_20210702 6272971.621123796 186.691727195281 5.086594634866154 0.00015138361773032978 4884790.327091786 145.37766121572093 1978025 None 120026 NAS_20210401 58961070.49160524 1002.41015125249 1.3006418540809632 2.2134203858767607e-05 23903800.610814568 406.7926878248592 24321 4869 445034 THETA_20190201 36990421.2534303 10780.359179538149 0.052062324078593736 1.5172861899665735e-05 2011804.1778663022 586.3131832888486 None 3812 561867 BAT_20190613 424009384.08322287 52198.54526831672 0.33411722804344607 4.108981096420626e-05 40539105.144175835 4985.508160673673 102267 27710 48578 BAL_20210202 320355481.0989008 9600.915120441781 30.17051637891639 0.0009032745392928236 144938814.4365502 4339.320520457232 None None 75993 COS_20200605 17179703.30954264 1757.5272062451952 0.008690111405370574 8.889136506725939e-07 6982948.235877796 714.2875067143268 12098 None 171431 IOTX_20210207 83298478.27122734 2124.2447929541386 0.013714559869448101 3.4914516098579944e-07 30609108.437102824 779.2464500965515 None 2069 512659 AKRO_20210324 147950493.1488612 2713.9682339958126 0.0547869358897785 1.004666789423215e-06 49150122.53557855 901.3005565217228 35325 None 146874 HOT_20210111 174657475.93505877 4530.66945226569 0.0009789646938406452 2.5525671077710982e-08 25455932.018164553 663.7417587789027 27004 7463 750555 YOYO_20210823 3917459.8963094475 79.37850556424148 0.022246677444189934 4.509115042448978e-07 1011232.5694180583 20.496381995092708 10423 None 1795501 AST_20210809 31240446.417478327 710.1349533110115 0.18130136971288918 4.122348871876273e-06 7024142.997910982 159.71179925000536 44382 3699 216089 OAX_20190511 3906545.050345651 613.1061071561242 0.16649285378952164 2.6129939406989687e-05 833659.5466995871 130.8372878805785 15220 None None ZEN_20190511 71015738.86396584 11144.417280635285 11.079238616141824 0.0017390649739908756 3156813.3590713986 495.5127091665913 25685 1621 234358 RLC_20190725 18796710.44766748 1912.1619730386699 0.26848160091521195 2.733044223714118e-05 93097.19445513682 9.4769529339165 24949 3315 855809 XLM_20190312 1958053536.9280865 506413.85886198096 0.1015765743741008 2.6303653454922306e-05 229721399.6295787 59487.25997376053 264570 99357 70469 TNT_20190123 6766558.284725635 1894.487845064027 0.01579195817037878 4.4214017739382e-06 783076.944235623 219.24436178331416 17016 2521 1229604 VITE_20200502 5968352.695831887 673.5436880618879 0.011951194146743681 1.3530528682399277e-06 5331710.746484628 603.6289285888876 None None 592403 DLT_20210324 14592431.907975571 266.62596416008563 0.177284462029648 3.2509905580461257e-06 1234307.3643581087 22.634367057976842 None 2555 3522473 LTC_20190622 8639536667.622364 853476.0941733012 138.61947794457117 0.013695184288105773 5118152377.385691 505657.94260840997 447559 204508 158874 ZIL_20190704 161029340.8387363 13429.849006815008 0.01735397232322754 1.4460087825200677e-06 29750477.77536228 2478.939769297792 65068 10607 184168 SUSD_20210128 160000469.77922317 5293.568867504542 1.0127653978561917 3.33136408586829e-05 54744678.66708423 1800.7571821664933 65278 3479 36126 DASH_20190905 729284414.9485402 69063.0774116964 80.86456619417469 0.007655612429601961 257579446.5333841 24385.568430008134 319463 30353 81581 TKO_20210826 217980335.93880886 4447.039223396253 2.9190824099297217 5.957115412134386e-05 197889280.00017583 4038.4241149725053 313449 None 26828 YGG_20211002 703291881.436674 14602.541834103218 8.00153470724553 0.00016613889107106145 143390104.68310603 2977.2629694454495 None None 55588 SYS_20190621 30399267.471867204 3182.607836686493 0.054746324095809824 5.731588113376368e-06 700314.9613107936 73.31847341647898 61546 4609 932870 WNXM_20210809 140918316.8091918 3203.246915575211 62.715600603856664 0.0014257319616404647 19474028.22151253 442.70873897349634 None None 129643 VITE_20200324 4630027.428752564 719.5566043033341 0.00960884280481936 1.4828803151990278e-06 1809097.9175272477 279.1882170060272 None None 513506 LOOM_20190701 42929331.207859404 3956.433707145269 0.062061533893729794 5.720083759052332e-06 3243004.574351402 298.9010524303855 20537 None 438184 STX_20200520 79687753.27731729 8169.414223565606 0.11829516059620489 1.2117714646259378e-05 346563.2674601248 35.50064737045371 36153 None 93144 TFUEL_20200310 0.0 0.0 0.002542578985893426 3.21137952478668e-07 317124.5037505048 40.05410033681428 68525 4026 385146 GLM_20210509 513883434.4746618 8761.659416654204 0.5137211250881093 8.749760845993461e-06 8448646.518360574 143.89837773424549 158137 21008 134242 OGN_20210210 95417754.82362117 2052.0836228759404 0.4449298494442242 9.548969177022166e-06 213046680.48604134 4572.352670357589 71388 2718 192490 RVN_20210430 1424503612.8846283 26581.04526253265 0.1646090815794369 3.0709506384707697e-06 136987268.53730705 2555.637488166155 59129 34363 40524 HBAR_20191108 26403519.784988597 2863.979395915507 0.03280850478337551 3.5587255970245406e-06 1862545.2932419612 202.02955466706868 None 6163 83811 LIT_20210304 150346873.37976405 2957.096873547252 8.226355005661304 0.00016235695036176723 58165802.03747628 1147.9716384294015 38669 None 122984 STRAX_20210203 71320212.8512357 2002.6625828837052 0.7329501002869744 2.063792345640629e-05 3753040.060860635 105.67561621799628 147364 10372 249759 ADA_20200520 1739159666.9690204 178629.14226263986 0.055955048441401 5.734315050942799e-06 187764434.93610883 19242.239177283078 155455 79020 54750 OMG_20190613 287531537.2371117 35397.15988831563 2.054217064939271 0.00025262807120746724 168677390.741037 20743.983002826546 289417 39647 None RCN_20201014 22543492.456092507 1973.2818810817823 0.043955213791028874 3.8482407923619435e-06 89946.17945139353 7.87470989283654 None 1133 1120785 HBAR_20191216 22115367.22028836 3110.0982301677727 0.022852333936270165 3.214021339625078e-06 2323296.49725475 326.75544394183254 34983 6154 105891 MITH_20190930 6706526.939132853 832.201227410031 0.01235392900848668 1.5342894352883162e-06 1228250.3020353394 152.541872387961 86 2078 719075 AST_20210107 19391466.99333936 528.1640147342423 0.11300973091962686 3.0651140839910244e-06 12973162.054304065 351.8654668315762 34697 3467 211626 DEGO_20220112 29346164.65718373 684.5581052848812 5.3967528858849025 0.00012615266128007498 7289257.1529582655 170.39119782667763 194715 None 213928 DASH_20200526 694784653.8054037 78177.74590024872 73.48848689799959 0.008268985539387982 498371477.75574136 56077.17231306639 317580 34925 78138 MIR_20210610 307086212.7289235 8181.196112727679 4.1840012954044195 0.00011171143575896464 28104673.034302186 750.3853738397764 45226 None 15173 STPT_20211125 192858856.4950191 3371.22122357413 0.14615571778019237 2.5552169367698023e-06 33082550.86137585 578.376922616655 34149 None 500592 AST_20210430 68104704.08869344 1270.7458491373804 0.39535446265849145 7.376803835854618e-06 4188516.9223603862 78.15231802783458 42296 3649 173984 STMX_20201231 18948739.29248219 656.2378196127166 0.002237168812129116 7.757655268100759e-08 1794428.5899666522 62.223996368594136 21795 149 197475 STPT_20210724 45824003.690203555 1370.8853616284744 0.040888900825517334 1.2224276025407163e-06 4425509.134853158 132.30643065769277 30703 None 433078 ZIL_20210104 795990964.7287649 23846.934674059514 0.06784337618408447 2.0609757162931126e-06 352020669.4719317 10693.837662888798 114651 14051 39054 BEAM_20210201 32455582.383485764 982.0661440320356 0.40494151627780695 1.2247343151961595e-05 21644154.309032973 654.6214067981033 16226 1660 285375 XRP_20200721 8723579266.387522 952226.5133329326 0.19467002770335812 2.124930101164275e-05 1231350389.8074782 134408.64725048465 951759 215301 30317 BEAM_20200612 28627481.896015104 3078.6135111232943 0.4466641622149045 4.802117701871645e-05 74138308.79551135 7970.661520913743 15149 1513 505180 OCEAN_20210826 397261273.16115606 8104.56803855886 0.9150905563179151 1.867122094120557e-05 53647327.57329423 1094.6032598747693 120522 3417 157087 SFP_20210821 155008202.6351491 3154.928582904094 1.438142623195321 2.9261326776049653e-05 20985856.431660112 426.99103191705456 378794 None 25785 TNT_20200404 15981047.508888649 2376.4730928554636 0.03728244276798813 5.541262367709206e-06 417498.78163881315 62.05254043187363 17622 2564 952681 LRC_20190922 35197546.334903054 3524.5371971805753 0.03658012561591784 3.6626054623299723e-06 4265439.275035365 427.0794844177117 34312 2437 641757 STEEM_20200914 66049426.262320496 6395.66851198822 0.18151325163697998 1.7576210024787003e-05 2891806.3676025663 280.01810121087624 11743 3860 161191 MATIC_20190703 46885776.08767703 4339.224075400312 0.021607580376026954 1.997897886770568e-06 54515200.950424954 5040.62939395871 19418 862 197160 DASH_20190901 720372485.0833632 75044.57600306837 79.86098015456825 0.008321324943346892 308471575.5667395 32142.007412241765 319656 30244 81581 DOT_20211225 30096279470.711548 591909.7699195808 28.157889269866587 0.0005538517218402927 876002452.4345791 17230.533935525684 None 37110 12763 WAVES_20210511 3090108959.848315 55303.56545782945 30.901089598483146 0.0005530356545782945 639163146.6463083 11439.079132187459 185330 58617 111881 MITH_20210814 38301465.436764404 803.5921148720579 0.06201812824572874 1.2998822495554894e-06 29017031.564548876 608.1886914758052 32791 2753 709591 WNXM_20210202 69253409.05465141 2074.378018816851 41.31157329968474 0.0012370692693732747 24688417.004139073 739.2911851538253 None None 132574 COTI_20210218 86790038.15612748 1664.8046382825314 0.1284571434541128 2.4630894975225517e-06 17654189.23921787 338.50860242681944 40977 1590 218044 MATIC_20200807 81651632.18546027 6940.027607768583 0.021704276420790255 1.8443658327207291e-06 16917053.27360192 1437.5616327048099 46697 2111 76971 TRX_20190616 2157959747.4877987 244710.3409058011 0.03268630972207683 3.7070152946920277e-06 832558213.6648686 94421.97843743135 431693 70906 93718 RLC_20200903 98114600.97862051 8600.085071246513 1.3981391661049345 0.00012252666607728426 5157695.673294018 451.99739111129367 33057 3834 240774 CND_20200725 17469688.418748677 1832.346805431103 0.00896550547519038 9.399046506030548e-07 1527880.9287369596 160.1763999209524 34288 5926 399242 QKC_20211202 210195648.6016969 3677.3585822769023 0.032037008458141066 5.602530584831704e-07 6513604.450100778 113.90785190466866 78296 9616 438055 BZRX_20210723 25547149.04467381 789.898863941617 0.1818611568889883 5.617588400983602e-06 7812537.725349889 241.32487694973938 None None 119612 PPT_20191118 20313911.440904386 2388.1479013524126 0.5609670486354591 6.592173255266704e-05 824308.4050862225 96.86814645029511 23854 None 692385 STRAX_20201208 64161729.22490905 3340.5286723373442 0.6367771159705677 3.318535676801103e-05 7956009.733349416 414.62391601266654 None 10279 294046 SYS_20191216 12707836.26352369 1787.1111376432095 0.022106739381092668 3.109158667053794e-06 429887.87083803664 60.4607299356202 59458 4550 988060 FLOW_20220115 2479674427.1876035 57521.58181641746 7.795903814682057 0.00018075634893797098 42684900.846652836 989.6949751085327 137930 None 154515 DIA_20210902 104550430.13210532 2149.6844630914743 2.1535941179293365 4.426232922458692e-05 18119965.107657503 372.4155143515674 35057 402 566748 MBL_20200914 5899852.654408029 571.5576996052653 0.0016812250784096912 1.627956350876563e-07 1633907.6576727824 158.2138157593 None None 428070 XLM_20210804 6463408648.523896 168227.5093057299 0.27616083818365267 7.1887799289251155e-06 466373922.32019836 12140.242310243622 606699 197009 26468 IOST_20200325 40087309.64391659 5938.856357376428 0.003342170975315238 4.946049376979477e-07 38987057.2265729 5769.660245690033 191133 52255 127057 ETH_20200312 21375073649.951973 2694102.8482185192 194.21794124025206 0.024479125416799485 14699687559.439268 1852740.7563761382 452819 454495 19200 NPXS_20210301 439328277.8201571 9684.21735583788 0.0018576504254669858 4.1148282179814735e-08 127758524.97582914 2829.942471690164 81232 9376 88511 PIVX_20190803 29404166.230454277 2793.799902877821 0.4846028999099478 4.604216725965212e-05 8982064.93893293 853.3868376195361 63303 8614 295552 HNT_20210220 319310769.7190383 5716.082431469385 4.585526911231201 8.198126040391908e-05 14331425.346570523 256.2210049228704 22045 4149 50086 VIBE_20191203 2927743.7835666216 400.45652187352454 0.015491767301654462 2.120045848963229e-06 111806.3218814427 15.300677061376 19851 None 1365160 REP_20210427 229651295.19486657 4262.840863950156 35.98490932916701 0.0006677582931017839 41849888.20050239 776.5924781313004 147634 11017 149141 COTI_20210114 30340190.933756173 815.914919777814 0.05339118932107185 1.428629126562559e-06 7246512.537210767 193.90051070793828 35760 1289 237911 VET_20190616 408180289.271088 46287.2108040195 0.0073614356883452215 8.348741390391983e-07 23705120.577117234 2688.4418978181566 109450 55936 189744 DOCK_20190716 5110270.961632145 467.3063146493639 0.009931323928250387 9.092359843807232e-07 1401996.5073556057 128.35606648955448 177 15240 260296 ADX_20190522 13738401.603778755 1729.8273018953792 0.1492568456269267 1.8793202732494503e-05 1608715.8479647087 202.55635808722596 54513 3910 959810 DUSK_20210508 101260695.76480925 1767.1917046373999 0.28281670668702485 4.9348919093984e-06 15077391.437256323 263.0866397185246 None 13584 280853 EVX_20201228 6262155.997533225 235.86559088083357 0.287409539654947 1.0928821751653658e-05 413930.5752482891 15.73981670851665 16648 2810 1370634 SNGLS_20200531 8698438.953434084 901.100002807527 0.012941850408253375 1.3400088866199465e-06 1347129.86449521 139.4828353682331 8849 2128 1431024 AMB_20211202 22846929.377092678 399.6438593106647 0.042873327210365894 7.49740908361828e-07 828410.7152891047 14.486708697228362 2510 148 640829 FIO_20210111 15047822.67519039 391.4572096433134 0.07071525442501195 1.8394537492024053e-06 2184793.0921597467 56.83110210494138 None 162 541516 OAX_20200105 2841202.5661818963 386.5836576555456 0.05449674852575921 7.411418789652701e-06 470661.0463246095 64.00870174188461 12119 None None KEY_20200417 1590029.2897630606 223.93150916416883 0.0005677947062758218 8.009669991296174e-08 615409.9822156389 86.81361084233508 23361 2750 220323 CTXC_20200501 917789.6611416148 106.0667952656178 0.08934095745701631 1.0364736007451646e-05 9933638.205469606 1152.4337831589062 16537 20065 447744 ZIL_20190130 192518837.01275286 56403.15584201297 0.02039445641013666 5.974311976495532e-06 18480461.7446135 5413.630141038513 55490 9824 186092 EVX_20190528 14049899.752222417 1593.370304599134 0.7265192005226877 8.255471918900857e-05 1526920.3269331963 173.50467643975603 17269 2396 688933 HIVE_20210210 71144298.77556436 1527.4676297015292 0.1900017652735465 4.079520842667654e-06 19056775.504278198 409.16731879735437 10430 110 140605 DOGE_20210508 88794768977.21323 1549587.4140338462 0.6818416367796407 1.1898385999614606e-05 31623843001.995224 551847.629320641 1213854 1738039 8878 VIA_20190123 7301904.07397291 2044.1854813817854 0.31571768929293215 8.839221431115921e-05 154400.33838933063 43.2278211309294 40891 2229 2614866 ZEN_20201106 54129998.05920071 3483.563142724788 5.265341635413638 0.000337941575446133 2701045.3098952617 173.35921780233835 None 6140 190205 OAX_20201031 2887250.6261396143 212.1478825470014 0.05185335864633421 3.8100538069597117e-06 199226.08618526798 14.6386295494 None None 1449165 QLC_20200127 3003943.642513987 349.9818896164716 0.012525745046530888 1.4582578734019653e-06 47922.59675768576 5.579189403597 24511 5689 940522 TRU_20211204 228077328.4132334 4248.191784621469 0.4212486826523496 7.838656020429306e-06 16086311.679681256 299.3363993460845 35589 None 108013 COS_20200310 18641651.60495601 2354.5155766843022 0.00947480090722355 1.1955315883007948e-06 5619418.311107461 709.0589200331324 10290 None 161709 TNT_20200308 18556610.237657994 2087.5222174765145 0.04329583415386642 4.864464421946609e-06 522648.8581470884 58.721741371057256 17732 2565 1226899 LUNA_20210324 6838247563.461055 125364.65735828939 16.952199662935787 0.000310981363010749 624585152.7765553 11457.766306953261 47344 None 42354 NAV_20190104 10282675.79761507 2726.990520009733 0.1610190878956474 4.2696220344403875e-05 43435.63453646691 11.517500485221175 48147 11511 711016 OAX_20190726 4628083.849753719 466.41207051422214 0.09897894233027973 9.999436025714072e-06 74178.30729716705 7.4939297273827 12318 None None COMP_20201124 12378.744347810003 0.6726567668833237 1.3366316711729643e-07 7.293e-12 8.480594208183605 0.0004627226400075297 1938 None 2442703 TCT_20210418 35745779.85728185 592.9696154268169 0.06174500909070113 1.0244657343533945e-06 13730089.962040078 227.80799457065618 None None 341028 LTO_20210106 50502368.019889496 1486.3667133013466 0.18613043577165259 5.46220070260147e-06 17524005.30777823 514.2610541242611 None 844 1001701 SNT_20210804 308194768.2385438 8021.593722635441 0.07931674576502498 2.064837677562594e-06 20842292.410360176 542.583413383879 133776 6035 133680 NEO_20200318 405375392.317627 74623.6370598171 5.737694531026555 0.0010597333842628398 467909682.2449166 86421.38552573645 322513 98957 219445 CVC_20200404 13079268.712072114 1944.962002720888 0.019446517311622474 2.890015541612464e-06 6856420.526148162 1018.9568426504882 None 8061 115940 ONG_20211111 0.0 0.0 1.174730792952091 1.80849400240981e-05 6130356.742328315 94.37663052376841 173571 20830 88071 WAVES_20190105 304440516.6332808 79902.06267981426 3.04411913380328 0.0007989645595913782 14378082.520468649 3773.695398833588 135162 56560 38272 ICX_20190726 136545834.76187703 13787.136885041102 0.2776118054948745 2.807378688811702e-05 22342838.930943064 2259.4431728314976 114113 25778 240617 POWR_20210707 90447552.47357675 2648.0520357655764 0.21123183859592826 6.181940493123596e-06 6449914.524120777 188.76409938429066 91201 14001 143959 CTK_20210318 90206239.63135886 1532.777049592581 2.52180589131696 4.27843302788195e-05 12813172.786388803 217.38509625185824 22325 None 213642 POWR_20220115 272980087.6145558 6329.33462789098 0.6352615728955999 1.4729217454036073e-05 91816765.49307379 2128.8696854578575 105533 15890 183973 YOYO_20190316 6304462.369124958 1606.4720825468876 0.02159062455180225 5.501616721052118e-06 3311651.801658288 843.8588185622804 7061 None 1390338 ENJ_20200626 156142602.99468377 16874.53360209584 0.1694998792032071 1.8318071764584875e-05 8636267.320704281 933.3326094536054 56491 15578 105546 DLT_20190622 8910510.2493852 878.3698481810886 0.11054559486883517 1.0897234239613445e-05 627778.5213827519 61.8844161653215 15074 2674 2617266 JST_20201124 34834675.04881232 1902.6134468302323 0.02449264016422499 1.334078519284067e-06 67410911.91717346 3671.7744167657843 None None 156179 VITE_20210429 98298201.1515008 1795.797886607669 0.16161737059885292 2.9518564241042765e-06 15315132.678204255 279.722857850327 31263 2176 143258 SYS_20210310 136866481.21672127 2500.792482986556 0.22505578854736663 4.1121669765197825e-06 7149325.317996821 130.63080788466712 62777 4766 264718 DGD_20190321 34400469.19995854 8511.923418987943 17.200243200100868 0.0042559638374758905 543738.5489072398 134.5406326101981 16223 3303 547619 HOT_20190410 227795936.62814865 44042.128523686966 0.001281351587823164 2.476197385714015e-07 8368367.058594259 1617.1774265632812 20366 5873 216677 XRP_20201208 27593689253.630165 1436648.170558904 0.6086984106196396 3.17220475012605e-05 5608978769.602056 292309.43905661197 None 223112 20721 WBTC_20200913 577941544.2794714 55424.85741074081 10431.237626312059 0.9989747041605775 41974327.34923288 4019.781041155696 None None 209926 GO_20190915 7360831.5127734905 711.3597196911003 0.009400779376948012 9.085027650556683e-07 126973.35638406254 12.270859759371369 10243 686 740517 OG_20210325 0.0 0.0 7.86597413686088 0.00014918953196367643 2667773.054988381 50.59815943125608 None None 445935 AXS_20211002 6623487218.299279 137524.33626176036 109.64625816738473 0.0022766267233116227 2054615038.5419245 42660.74904007874 541122 None 508 NCASH_20190625 6443476.294891411 583.6005917319115 0.002217819412916012 2.0080249684908936e-07 823054.1611345008 74.51974206526582 60222 59135 1027921 AE_20190923 71656892.73157531 7133.672929189449 0.21712873958181791 2.1618408298419318e-05 50517766.04791355 5029.797966179841 24984 6347 366959 HBAR_20200422 121118755.04351959 17695.750250909547 0.031011029452645382 4.530160913499527e-06 4780765.182388604 698.3849278189246 38638 6411 105863 IOTX_20210506 428045866.76837856 7477.085988928309 0.05682599050288865 9.912461174187865e-07 71193698.68833263 1241.8697287098826 49664 2879 209846 OST_20210523 11953163.008963736 317.9953187468839 0.01727000388291626 4.5962845445822423e-07 902378.3099681052 24.016135187876245 None 776 522637 VIBE_20200612 2448175.840804013 263.85571392 0.013111840916647079 1.41e-06 296162.2426421886 31.84821756 18944 None 1004646 WTC_20211207 26677145.843 528.5288172768677 0.9139424188119303 1.8109428761636254e-05 26494914.720379382 524.9868709432036 67449 20368 434582 YOYO_20190124 4980448.010593153 1402.3151397778756 0.01705632880340472 4.802449108829331e-06 2524208.477260293 710.726375637078 6931 None 754371 CKB_20210727 276178772.79282624 7379.444976291489 0.01012918886537073 2.7147249386478096e-07 11340736.6555613 303.9431985195076 50286 5193 122182 BAL_20210221 495116030.70319647 8861.362144599236 46.70061828571891 0.0008306281844297763 205483553.9776035 3654.7788366816753 None None 71652 CELR_20211120 623824186.3757812 10731.342749116226 0.11085827238794811 1.9005025150325034e-06 121315158.52847771 2079.7704936993396 89425 None 53727 FIS_20210603 39378200.540737465 1046.3770641477988 1.4591959934800356 3.880028594748002e-05 16306841.857883954 433.60188063378916 None None 289115 MDA_20190805 14423921.808386488 1317.1425894268536 0.7348313265828654 6.710225201890467e-05 1191304.0261616688 108.7857581771475 None 364 2972990 ARDR_20191203 50662249.28571051 6929.461660451371 0.05065944551648328 6.933909795969512e-06 3158150.552971266 432.2655100768689 65819 6477 1383228 NKN_20200308 13386423.554294687 1506.0582777862246 0.020755069021400396 2.331974679465085e-06 2917460.256247668 327.79671505309386 12233 1000 370779 GTO_20190522 22998999.341220222 2891.880543089773 0.034644855438002664 4.362197185325543e-06 82086032.14841488 10335.60261300952 17296 None 1154780 PPT_20210610 68540001.69338149 1829.9951303789992 1.8919643335528908 5.051481516941474e-05 3189304.690772014 85.15336897009846 None None 601445 XVG_20191017 55411519.11232405 6919.422352712408 0.00347269089704027 4.3362813254653006e-07 3878439.2310125506 484.29313486338486 301085 52581 287655 CHZ_20220105 1639179332.5623522 35390.56047561111 0.30454384810661483 6.6189494944695455e-06 144048669.01200786 3130.750697686909 430423 None 51051 NKN_20201014 12704506.947570952 1112.0499944732478 0.019569450944415274 1.7133117215143222e-06 1066344.086225155 93.35876756513808 13764 1022 211409 YOYO_20210114 1798291.94761698 48.29112602213745 0.01025928120366812 2.74515479642472e-07 478831.89575371327 12.812473400567969 9354 None 2139137 BRD_20201030 4775419.140536307 354.73627618536534 0.06710034117578062 4.985323996025017e-06 4683973.088581769 348.00305074559776 243 None None OAX_20190615 9528217.109383985 1096.5862324299908 0.2126993720040381 2.451264572421759e-05 3442705.219279631 396.7562883613699 12258 None None DGD_20191118 24352453.512649037 2862.9277487106037 12.181128921436814 0.001431458630059999 2482516.9951885077 291.7316120658907 17389 3356 523731 EVX_20210511 21104405.527443063 378.0502800784577 0.9689071632463692 1.7340495568734158e-05 1979626.3002117465 35.429298480521915 18201 2813 705371 ENJ_20190419 151671057.9166141 28764.30335374849 0.17490562659577785 3.316031721005608e-05 40553498.63138465 7688.5284068200035 45154 12310 18567 TCT_20200506 3469519.500375638 386.88470657081064 0.0060012482721555 6.682506279199038e-07 419680.2880068106 46.73221357753059 None None 668926 COTI_20200425 10705756.14919941 1427.8062719348586 0.021462458656053954 2.8634693413282e-06 2436916.526905077 325.1275109713667 23147 941 241032 ADA_20190813 1646774788.1645753 144684.11608192165 0.05296431927823547 4.653748797850993e-06 96213549.93362917 8453.874201392746 154344 75013 93580 ARK_20210112 57776264.29834353 1631.037653503492 0.37374484997083557 1.0514184613514591e-05 3179756.8889802783 89.45287395784132 62942 21571 94251 CND_20211120 29169374.802204255 500.06615635786903 0.015119422239937876 2.592003228436036e-07 273877.158879179 4.695222269370512 36997 6344 173736 ARDR_20200914 62729343.38582929 6074.1797313585 0.0627921672631369 6.080263064956304e-06 4706728.47254717 455.7598269937003 64189 6283 944701 EVX_20190714 10891306.16106519 956.3819783370077 0.5170771079981004 4.533238543936795e-05 897902.9287551995 78.71955850270902 18215 2914 1053022 NULS_20191012 25951044.172638033 3140.011194217602 0.3534159346201844 4.274348981821025e-05 6310964.5398195665 763.2724564068294 21235 5281 374775 CMT_20190522 32624320.963641033 4099.869825730353 0.04078504260531063 5.125324620422797e-06 4995197.71298444 627.7303684587829 292326 1643 879969 LUNA_20210610 2501287057.6621017 66637.70337037291 5.994818010357618 0.00015978290423707177 237595535.63817176 6332.753496843029 80427 None 18879 HBAR_20200318 130601792.99796565 24056.93613093258 0.03787188170208677 7.027108981955888e-06 26319670.75580856 4883.6019352075955 38043 6373 115268 ICX_20200305 170148324.8305673 19435.87224693673 0.32444523231109956 3.704376679419828e-05 23169640.886616997 2645.4103442832393 112549 27513 143772 QLC_20200927 4200878.297656927 391.233064371396 0.017511826948932406 1.6310389778054152e-06 588515.2958029637 54.8138917366264 27744 5613 940522 ELF_20200410 30575469.51777314 4194.913148892621 0.06605719748696726 9.059543816366153e-06 26399063.444869325 3620.551296276373 36349 33433 699270 BCD_20210421 455014417.7334728 8053.991044520299 2.4137405228951816 4.280901574751551e-05 12259273.857150884 217.42496454191883 29944 None 1334994 DCR_20200107 203792600.18606007 26265.519850185246 18.635093127629656 0.0024034367110770676 16891848.519026395 2178.6040225571373 40895 9711 113234 ENJ_20211125 4207725664.058432 73596.99403226905 4.456510002241104 7.791244851423637e-05 1673714986.5199442 29261.29025833295 383424 41912 19557 XMR_20200207 1361487837.750558 139812.60172183454 78.09910080785093 0.008020077868724974 97332859.83831438 9995.212582658869 320543 165359 79314 WRX_20210210 33239789.86011504 713.4983193060079 0.13931787809048563 2.9900042115761644e-06 5939973.028748593 127.48216249081698 57437 None 4666 LTO_20210220 105075049.42738397 1881.4003248225417 0.38399738469416994 6.8686134032510404e-06 18394886.071890283 329.0318269362415 2773 1842 791991 AMB_20210206 4164285.914814147 109.87270173014547 0.029361796532898023 7.694074997887083e-07 1048980.6546213466 27.487881468514225 20525 5464 398433 OGN_20211007 321081763.108193 5783.842529692073 0.9015975523182371 1.6252381087211415e-05 38434975.816910595 692.8367013065043 122923 6467 103565 ETH_20190302 14187938674.158926 3710962.206948775 134.95470877409352 0.035326062743470284 3152662372.3438797 825248.3354310128 440254 430900 32034 EGLD_20211007 4579446082.207303 82504.21228380928 230.4314434500946 0.004153856881341283 174218395.39266753 3140.536160008902 344179 11285 34852 PAXG_20210401 103261744.67747222 1755.562543193219 1714.1532308748408 0.029171302567499155 5350865.909352463 91.06054559671642 16221 None 49424 RSR_20210508 1054694067.3703381 18405.352694171197 0.08021950531744813 1.399751412235876e-06 97635064.55804193 1703.635779827414 71531 None 79462 MANA_20190804 54614649.99258656 5061.607863200093 0.040855625513505564 3.7857094575299177e-06 12495325.383861212 1157.8251681634383 45628 6350 132863 EOS_20190830 3256288646.3379207 343140.6111665111 3.195582598105991 0.0003369394675642717 2099834184.3668826 221404.70175084088 1280 68030 84065 BNB_20210427 82089500489.02422 1523764.439860607 533.5835251560673 0.009898386119817427 5295872672.712616 98242.52452428425 3006948 284614 141 QTUM_20210421 1801508095.7713754 31887.62708278047 17.39036837058809 0.0003084277478751721 1731206747.7046182 30703.903846217385 231158 16134 88405 CELR_20210318 202964136.03247553 3450.4270454223224 0.051736742982462475 8.777526878391526e-07 98303041.68173489 1667.7849065248631 None None 237739 RCN_20200129 26295371.422635023 2822.3707706871446 0.0514352406091462 5.500861780105704e-06 3160131.9202484153 337.96767924704596 None 1139 766343 ZRX_20200501 130473752.53449401 15077.642585127876 0.1992007691531909 2.3109931251268392e-05 53357061.89590346 6190.126862591229 152412 15922 152410 ADA_20200422 1068102318.6141045 155966.76992772543 0.034321463320175806 5.013756536673272e-06 128811222.5384038 18817.033031897237 155045 78020 53187 STEEM_20191012 43985464.41122695 5322.130767275121 0.13561332241507784 1.6408871551972627e-05 496797.0457823799 60.11119531967303 10881 3781 215234 SKY_20191213 7774353.992432287 1078.7147656035213 0.4564730719472723 6.341417417667414e-05 177223.78135209507 24.620290723762 16347 3804 862429 DEGO_20210711 31501645.916070394 934.1705650681931 5.807803525489127 0.00017229149491128644 22818163.246207856 676.9126124127672 None None 168590 ADA_20190419 2537199477.7739186 480742.87875644746 0.08150942908991061 1.5443747889493826e-05 110382965.73238443 20914.472265351636 150815 72640 113517 DOCK_20190902 3549017.0206141816 364.9019635184021 0.00641567470164413 6.596452714448069e-07 3121923.0890421257 320.98912417944996 186 15182 184011 NXS_20210519 81021171.6842179 1900.8199243948557 1.194254371360233 2.7895043970783276e-05 579391.3937040159 13.533254548826603 25542 3901 447667 POA_20190625 8842923.852501985 800.924121821009 0.04016450653523655 3.6377925063786244e-06 800527.5629179043 72.50563795617522 17700 None 649823 NAV_20190302 10167262.941408427 2659.3241900881135 0.15766952730528316 4.127194719558348e-05 108866.46260809315 28.497141920337505 47861 11428 735368 TCT_20201129 4538707.611890838 256.3990416436165 0.00784447179040294 4.4310630579206945e-07 216906.48027946777 12.252275455510103 None None 642162 GVT_20210127 10853569.073770024 333.0404160177533 2.4452355093930445 7.507230253642903e-05 530501.1328335917 16.2871598204 21298 5439 340322 ASR_20211230 8744728.30430569 188.5477192495895 4.127434136115647 8.861772064368894e-05 3381264.3120112116 72.59714542804979 None None 103751 IOST_20210120 331727412.121132 9160.367088898714 0.017933399266462466 4.959557475645884e-07 272805710.8022295 7544.557405457119 199342 52187 269048 ENJ_20190524 144483427.93595356 18340.725599280875 0.16540313661159128 2.1032540797266253e-05 23336362.670230772 2967.4346567804664 46114 12497 19374 MFT_20200223 9583874.229272524 992.838556975865 0.0010446523489018311 1.0822105574207527e-07 1159696.6551859342 120.13910321142554 18481 2488 850762 VIA_20190920 5380082.438445607 525.4576057184236 0.23270022295396225 2.2693486081491804e-05 267910.44975561654 26.127272184943862 40610 2209 3148663 ENJ_20210804 1273554966.399023 33147.676653584276 1.3623374695675492 3.5463189936934205e-05 114857839.36535414 2989.879867616361 252649 34381 37503 DLT_20200625 3182236.317243077 342.0349810425902 0.03879390985814503 4.1706601457177184e-06 103751.71510099193 11.154151381076 None 2563 4282096 STX_20200719 114291128.32873628 12463.084029003474 0.1491483471464901 1.6270494787741274e-05 1119431.551056174 122.1180493458873 41568 None 98084 WING_20210725 27829825.63990906 815.1384215700148 15.531104093862293 0.0004545828245053335 4505748.545400548 131.8796067491697 11320 None 411490 BCD_20191026 89183621.13423067 10311.172076359635 0.47459221871559815 5.481691788193566e-05 4737312.065251269 547.1746822246139 21316 None 2032087 LSK_20190618 274990952.82064235 29500.404672980396 2.074860884868099 0.00022261751935335122 8104213.045629807 869.5232618662365 182920 30462 183148 BRD_20190520 29450702.696858793 3592.249752504817 0.48996866749070167 5.9891294414678346e-05 236028.90399670994 28.8509807209439 167 None None CFX_20210930 294884427.8976915 7097.734624828693 0.2937244371048579 7.063159774745658e-06 37746117.61682889 907.6768083440983 42980 1749 253814 CTXC_20210513 3463552.90883871 67.18177946758443 0.3394314315839564 6.7342438879227775e-06 8379271.382831674 166.24287512726494 19811 20540 375335 CELR_20211207 412679451.522334 8175.969018377748 0.07305444104679286 1.4469697085968015e-06 107949633.77198313 2138.1294262744227 94798 5244 43614 MITH_20200612 2999631.4773805575 323.27109451248333 0.004909736275115442 5.278491867657272e-07 2815176.707678043 302.66162019358813 98 2097 809760 XEM_20191022 363088904.9418928 44216.23646706251 0.04034518815837497 4.9130185988559845e-06 36730319.773116015 4472.81949656212 215330 18277 149235 WPR_20190321 7571616.172726375 1873.4923830717748 0.01277303963748293 3.16051314852657e-06 199501.64960579417 49.36394191415079 35037 None 884505 GAS_20200414 15471905.710542003 2258.2590375364416 1.1089331432612348 0.00016194912269334403 7493042.477524912 1094.2874806414316 321342 99268 235469 WAVES_20190725 138769820.8981998 14116.85173667462 1.3861881375039045 0.00014118082432395933 14620861.292215157 1489.1090132095367 143407 56856 48211 GRS_20190225 15604221.133860908 4142.735518336675 0.21565161811997852 5.7566755762493905e-05 3117320.5470814 832.1478509259271 36266 107006 15092451 NAS_20210110 15007340.29331237 370.85324015147626 0.32880782533951497 8.156988343742574e-06 8164516.969785513 202.5434452056071 None 4856 1361296 TOMO_20191011 22967541.163309455 2682.348586068742 0.35395477251786267 4.133790712922646e-05 741866.7070318158 86.64162604559486 17465 1339 289065 ZEN_20190914 29637635.500534937 2863.3470761417752 4.009027701944332 0.0003871608525540093 2191790.447236182 211.66614981486524 27045 1788 209860 DODO_20210620 167600526.29267144 4710.816178423097 1.2857903596502238 3.6114039531378334e-05 45649047.006695986 1282.1464057469145 92737 1004 25674 BTS_20200301 65624413.64301941 7672.760147168401 0.024213899602867458 2.831072059417643e-06 13979653.36226865 1634.49120890779 13368 7045 137133 FTM_20200626 15898140.531021053 1716.6925543707143 0.006592785620127018 7.124907903543572e-07 1979840.2485001592 213.96387274034677 22384 2401 327499 NEBL_20190421 25194752.361214258 4744.70261684363 1.6742157832362625 0.00031529724893055296 284479.9128917215 53.57477501339828 40463 6180 627763 BNT_20190228 32902539.924401414 8609.22224931543 0.5159914881882376 0.00013526243229443414 2685914.080128825 704.0877218493122 848 5099 140738 SAND_20210127 61006973.90998742 1873.220091632742 0.09310304678156016 2.858399556279759e-06 24304528.968634564 746.1845473492402 65985 None 55627 NULS_20210902 58941305.11903099 1211.682372603448 0.6248326937401818 1.2842043990724199e-05 11842468.919589894 243.39556548139922 65145 5412 352949 AE_20191118 71513862.20494038 8413.567396802397 0.21217632308015955 2.4933783291053757e-05 43955489.94796231 5165.405097535447 25165 6354 383599 LOOM_20210711 50603898.05803573 1504.0018765479865 0.060786279222188 1.8032564068881134e-06 3678778.520873407 109.13286718930985 None None 264943 AE_20200117 54474113.7587312 6258.502434023588 0.15843036621969855 1.8194795384401658e-05 11047071.704260109 1268.691186240751 25293 6352 376876 IOST_20220112 674131573.5157576 15725.470025456809 0.029265956401248135 6.841278483350377e-07 53198505.06318504 1243.5807087433932 271641 53973 226297 CTSI_20210124 12042891.278278757 376.2690704690804 0.058543742982374435 1.82674191061251e-06 3587066.612230628 111.9273313066659 None 181 602670 BLZ_20190706 11250365.122848678 1022.6365084688563 0.054106146471707785 4.918144443344214e-06 987051.3451143679 89.72106506990048 36566 None 875271 ONE_20210825 1128731876.3901703 23488.444990144777 0.10796545719506918 2.2481376615625525e-06 78153500.73337212 1627.3707623374444 201779 27732 31812 LUNA_20210707 2686120805.7213264 78642.12434029777 6.480603674762172 0.0001897588228262407 200970436.79643092 5884.623628178539 87420 None 21739 BLZ_20210125 34770294.95098397 1079.8460404943048 0.1350560638210168 4.186240150315872e-06 18949157.510291155 587.3540346131138 44355 None 447066 ADX_20200725 10254967.563205112 1074.8328242053944 0.11062164810488347 1.1598216190255218e-05 303311.63293049915 31.800953538604567 51728 3733 16348 YFI_20210131 929329331.7795693 27166.267571167067 30982.365927483883 0.9067284124448706 436127246.19080937 12763.678748360218 73917 2860 19848 CHZ_20200927 60126273.24100072 5599.635234000688 0.011254238991813883 1.047774511655346e-06 4271032.157550951 397.63493883480805 33286 None 248033 RENBTC_20211204 827851567.5440731 15419.648470078633 53967.42250772659 1.0064088144563297 16453067.520560477 306.8242174279587 106631 6366 69235 ATM_20210708 16144034.455122836 474.04170911097924 8.536657522793245 0.0002512514002731319 5070349.374548999 149.2308174280132 5002346 None 121547 HARD_20210821 84458238.76780762 1719.0039431492232 1.1202445047963947 2.2793177808115935e-05 20774499.193802755 422.69062867214814 35639 None None NANO_20210207 485453612.3861611 12379.845703475237 3.6506969322485885 9.283756208934324e-05 45164146.39557457 1148.528438001227 104907 63043 188898 EVX_20190915 8727186.974134475 843.0808822387072 0.40068993850928775 3.87210628046485e-05 959010.0869874146 92.67487460923695 18294 2908 505983 GO_20190213 12456478.029168919 3428.1517087999264 0.01829546920416297 5.034939627279835e-06 505458.0710852862 139.10279335479706 7798 628 665019 COS_20200414 10328518.831619712 1506.770337063088 0.005218184506882314 7.620661426497851e-07 1150584.3342593594 168.03188240006708 10723 None 122996 EVX_20210711 7915622.630269026 234.73508924220076 0.3630590055055776 1.0766701957792188e-05 149887.60723732904 4.444994256632326 18281 2805 1315536 ZEC_20200208 609988355.6312426 62281.00971041111 68.72947629563492 0.007016204970394148 458658648.6590042 46821.87707343188 190 15514 155286 XTZ_20200319 977204752.0682781 181577.2634533764 1.3935392178858035 0.00025864913683582783 145616087.56655777 27027.20876104321 57218 22541 103142 ENG_20200313 8169760.137949714 1697.6091726243208 0.09939577635724677 2.0473192627692045e-05 910632.5666680359 187.56889511518008 61326 3608 363885 NULS_20190811 31560638.635622177 2786.465255185245 0.42747463234410105 3.774722326214251e-05 6431625.4616177445 567.9307820136091 21335 5308 406668 JUV_20210916 32503690.387751315 674.4560830973086 12.450168972583093 0.0002582680370869631 69374955.01712792 1439.123717495426 2694994 None 34977 CND_20190426 29124981.921725757 5606.6279854362565 0.016784849226298512 3.2292810962035037e-06 371674.7432436956 71.5074771367393 36819 6192 608018 KEY_20200312 3794201.2758580297 478.35784877917877 0.0013900310977447204 1.751072355030125e-07 1296404.8937343773 163.312804585969 23520 2762 281483 BADGER_20210616 122766530.91731498 3039.893121899945 13.711137648287057 0.0003395807192776755 10389813.813091224 257.3222250636091 34806 None None ENG_20200407 10696840.455614598 1468.004297015374 0.12931710005166416 1.7747115079552968e-05 1024285.7499052335 140.57009529793004 60944 3592 411857 THETA_20211230 4882551815.088316 105274.1693986727 4.916919113365887 0.00010565850692305342 211943380.39972556 4554.400959004215 234160 26979 31111 REEF_20211204 374398265.47448045 6972.705595080303 0.023251703294552967 4.327827181772104e-07 38773735.785827726 721.6934843309559 221175 14387 78929 HOT_20190903 141653676.16544482 13722.809419269535 0.0007975200823607455 7.72593086254179e-08 8640188.488954568 837.0133916552276 24298 6653 436903 AE_20190915 67930557.0399674 6562.3612889194965 0.20618063270360382 1.9922436050814756e-05 34863406.77639996 3368.7159793269466 24936 6344 344855 PERL_20200518 5440144.681188495 558.5852220320443 0.015596889600832275 1.5956137877751414e-06 2373152.0200789142 242.7813609402149 11678 476 584750 BNB_20190812 4697767187.332835 407067.22771162476 30.219454448788586 0.0026167883713395777 242894746.16688251 21032.945790140042 1021607 55463 791 STORM_20190909 10351134.497882381 996.2811543569115 0.001662110565007968 1.5992356884300215e-07 1184557.7791234073 113.97479296887076 None 2547 2939778 TCT_20210519 27544901.796211395 646.2248948189061 0.04824343007665747 1.1260108027165108e-06 4885846.745690849 114.03658917542654 None None 279525 ADA_20210127 10707255441.64569 328572.5628843875 0.34389780984225143 1.0558165184056721e-05 1848031728.9798493 56737.2739852499 183005 107006 30705 FOR_20210429 54822585.81618509 1001.5710278544351 0.0974000599294141 1.7789609591187292e-06 33553361.248970434 612.8345275391321 None None 121436 QTUM_20201015 232194122.32296038 20341.961452712978 2.260173818677632 0.00019800378048154474 139790035.8171087 12246.383590812628 187007 15058 80997 CVC_20200713 20230540.895058926 2180.057707810685 0.0302400434925832 3.2546992215197415e-06 11370959.022526164 1223.842534737947 85259 7987 96333 FET_20190325 0 0 0.20890979957967215 5.231598226929685e-05 25735627.846300494 6444.8132773341085 7291 158 185069 LOOM_20190830 16578701.094480732 1747.0274425164298 0.027494791748348853 2.898969897087113e-06 1670360.7392161062 176.11791878927275 20846 None 468578 BCPT_20190621 6502585.386725922 680.778878295972 0.055980199796248714 5.860766965378245e-06 1522494.3825956243 159.39537220244648 10923 2771 1175613 FIL_20211011 7771676718.229707 142053.54293685834 69.75504342146758 0.0012744447111714204 850870083.2410443 15545.6412080278 None None 55587 CDT_20190922 9325008.390025862 933.3795992161334 0.013819536387868252 1.3836887820595326e-06 155237.22733200446 15.54321389579222 19649 299 180702 YOYO_20191011 2475381.784373761 289.16796531357323 0.014148873502654133 1.65242811864155e-06 386559.22657807154 45.14573795561269 7531 None 1153684 ICX_20200407 133297319.84773962 18327.29141395489 0.25089783592358456 3.443251329922899e-05 25895990.52028597 3553.8929010851534 112967 27506 109675 VIA_20190325 12247794.962772539 3066.9141973534283 0.530982108741843 0.00013306577631846337 4888403.213173379 1225.0491265325127 41022 2231 2390217 TOMO_20190908 26725552.382446125 2552.715778641392 0.414098301301553 3.955298107646896e-05 2146061.0073347185 204.98299593420643 17046 1317 270545 MTL_20190725 18496756.11394763 1881.6480556069937 0.3926596761521826 4.004327822935356e-05 1820846.9968651943 185.68925544648278 33337 None 788453 QLC_20211120 7696392.24953167 132.39727629222375 0.032095748320847585 5.517202528673036e-07 461625.2594214967 7.935256792019767 35400 5816 940522 ZIL_20190623 193338543.36502138 18009.052398278232 0.020624099751644233 1.9227219404216295e-06 58928189.92034645 5493.695484097429 64584 10572 190558 SNT_20200309 47932427.30226751 5933.335189982196 0.012859613106982103 1.5974014977954016e-06 25648828.84079727 3186.0583414241346 110633 5613 203342 SNM_20210201 6218653.140567658 188.16882219736266 0.014544508254497036 4.4000038441388104e-07 1227934.3050072098 37.1474619 28884 9484 None XEM_20190915 441438131.9594774 42643.244323865205 0.04904868133428068 4.738138258733705e-06 58661307.04222029 5666.724887256238 216204 18347 190156 SXP_20211111 458490765.4998372 7070.098394134722 2.384660204792573 3.671974082504746e-05 149789972.75430378 2306.5126707255085 None None 178128 REP_20220112 114964930.66694675 2681.787416888482 16.624659942686982 0.0003884910833882239 141555556.69652373 3307.921591794516 159916 12082 173717 BCH_20200217 7576689280.691173 761901.9799835867 417.18426191883765 0.04184638581238322 6271059075.274551 629029.3797498036 None 284083 126656 MITH_20190325 23238471.64918899 5819.039169280744 0.04546306753112728 1.1393186842363849e-05 3546012.607810212 888.6418444707591 55 1997 567173 SUSHI_20210509 2710781852.596677 46218.46186660506 16.25615294139922 0.0002768767791839218 593036045.1871439 10100.662236833881 84804 None None IOTX_20191030 18035296.394951794 1916.5687272571454 0.004164653563397988 4.426324298080952e-07 1257802.7784526395 133.68322036169823 22510 1774 522982 DENT_20190801 48051213.601633534 4772.918234331369 0.0006606304617106478 6.552644544542616e-08 423707.8996138673 42.026630889758565 46572 9970 266120 OMG_20190130 153430969.5586079 44949.58464609353 1.0945420339843108 0.0003206311929770108 198261940.48674524 58078.13727244526 287839 37160 None STPT_20210420 76249192.7897058 1363.4424073091395 0.07437906340984742 1.3300018735754122e-06 11857214.95466015 212.02361769718803 28983 None 910650 ALPHA_20210427 332691414.5088998 6175.495573192914 1.3320610461432365 2.471076026201737e-05 91085489.38614719 1689.7061122584494 None None 28389 DOCK_20200329 2225484.7912431727 356.0405843585183 0.003975707293636978 6.35902842704195e-07 442975.9043971026 70.85271023508612 None 15014 378260 ONE_20210519 1682117640.081736 39422.86149526013 0.1776488712019798 4.152335040613478e-06 639950671.3160812 14958.100092562077 163722 21670 22523 DUSK_20191030 11016802.725820834 1170.729835334426 0.055723085918245936 5.921379541055448e-06 1954935.1391547918 207.73998328206653 19614 13334 197441 ZRX_20210513 1440181602.148594 27922.297836809616 1.6960032419995157 3.300766201258729e-05 434389795.7042161 8454.106220585694 None 19142 56937 WAN_20190405 47466069.432180345 9690.315439453954 0.44671195628212096 9.126295964870887e-05 4097407.616927305 837.0976884527043 109122 17178 502175 RUNE_20210930 1710802382.06922 41186.12675127726 6.534038746375042 0.00015719568828558578 49382889.76359504 1188.0519303969797 114960 7236 90267 ROSE_20210112 62342123.15192451 1757.234708142885 0.041445141135133284 1.1659340998597383e-06 9283957.66704946 261.17616032175243 None 611 219756 HOT_20190523 314795708.34934795 41080.855605856224 0.001770174189270737 2.3114348089309e-07 26753324.995380446 3493.3605417916115 21677 6178 277166 DLT_20200404 2515095.2462083832 373.7771773578006 0.030668230115150796 4.557713869596655e-06 172068.0489938431 25.5716397871374 None 2580 None SC_20190329 107198159.45152725 26626.051649773744 0.0026784541146696434 6.652725125348292e-07 5849316.60105796 1452.8490633775425 109762 31077 227818 RCN_20200318 16543929.021137206 3045.4935800577323 0.032302529118328996 6.0057011873321895e-06 1042877.6374086925 193.89229376698313 None 1131 875851 CELO_20210210 361386160.2270374 7758.407548984655 3.6923090792362765 7.924349534409413e-05 25703068.070924036 551.6333847730045 14033 None 140742 DENT_20190411 44010815.80531005 8292.461560799857 0.0008445152538610783 1.5911412166043767e-07 2826915.445390042 532.6158006561635 44381 8997 242433 ZRX_20210724 550023269.9793733 16454.66979418359 0.6504956560411005 1.9454153887787018e-05 43099257.50382298 1288.9549378877866 None 19605 52898 OXT_20201226 0.0 0.0 0.23516400290214562 9.536971650645708e-06 7132364.764094229 289.24988398643393 54085 1796 140825 KAVA_20210207 175702299.99944824 4478.758816650122 3.0222641163602715 7.694077691832449e-05 92950998.82315467 2366.345822019236 57953 None 91263 THETA_20190329 84318429.57719685 20943.01716597944 0.11348346091707653 2.8187003913803865e-05 7891396.572051412 1960.06382132042 None 3941 345140 PAXG_20210617 270735300.3168096 7079.135315019268 1824.9553744522145 0.047707932147323405 11926473.44577363 311.7815338792118 22312 None 40331 MDX_20211104 816723019.1825222 12952.75894190839 1.0918107786689746 1.7325223630349333e-05 28958871.53845256 459.5291925015561 23715 None 30289 VET_20200421 240934826.95567217 35184.51830777222 0.0037219926967597666 5.436204090484222e-07 154315407.9159307 22538.73449208085 118865 61697 321528 APPC_20210422 23849421.67271842 440.15604652479306 0.21160323591917263 3.910015143480738e-06 1925567.4001982189 35.58073042627651 24834 3137 715817 GLM_20210819 411454584.3285063 9128.182557135317 0.41092313007072323 9.12261569643293e-06 5686505.123798585 126.2421049194359 159122 21136 187771 LRC_20191011 31481652.137290537 3676.700283113866 0.03287758308081904 3.8397292014468795e-06 3822407.0789507246 446.4138390217318 34064 2439 547481 TFUEL_20210429 0.0 0.0 0.3172931118934191 5.795082055260649e-06 75117929.8327312 1371.9634964789723 148430 15326 21480 AION_20201228 32876230.904728603 1238.2910344828713 0.06711412090306235 2.55203172883227e-06 1193874.360040513 45.39737995620066 68071 72530 524587 BLZ_20190714 9108594.182303129 799.9371930468261 0.0437510174956437 3.8418426631253995e-06 2475277.0238216133 217.35779914418708 36588 None 875271 WAN_20210704 105572186.12370117 3046.9682587839693 0.6005181933783511 1.7319713573480362e-05 2925975.5727318027 84.38888180492869 None 16626 187166 SLP_20210708 111551348.25179137 3282.138488981718 0.20582736402363325 6.0596684102614945e-06 105952406.80101542 3119.295898914438 None 16699 5695 ZEN_20200501 52583726.498939924 6076.614020398677 5.868501359422317 0.0006813600684539851 4811156.466066039 558.5974507440995 None 5210 41746 WABI_20210204 7656932.620290819 204.37877598046228 0.13055711407201678 3.480658861478255e-06 3182356.1407983415 84.84176584769986 40797 7429 958104 VET_20210220 3485420291.0764527 62398.90844039031 0.053868438995295385 9.628397895735291e-07 779912643.4939063 13940.090701588555 172672 85938 71018 ZIL_20200704 187028095.82739094 20625.567495417054 0.016988773036304743 1.8741117495519783e-06 35505756.437131666 3916.8075983686726 81321 11546 87928 XLM_20210711 5762082537.498728 170881.45290579836 0.2471498004297386 7.33555650085363e-06 295995920.80762744 8785.339083143697 601006 195750 23566 STEEM_20190730 74699149.7204705 7870.1040077712305 0.2346614333086795 2.467018126184598e-05 1304208.1908559985 137.1126563830275 6088 3763 334107 DOT_20210401 36315780875.424095 617407.9745683016 36.88846964991404 0.0006277645953859435 2749780924.550207 46795.51973510152 258776 20403 15426 YOYO_20200310 1704386.2253643274 215.509561797399 0.009767853832293977 1.2337192265087337e-06 164828.36379249912 20.818485306615717 7560 None 2563708 SYS_20200414 11326537.388252264 1654.5124135277724 0.01940546102275097 2.8346329554936476e-06 283397.9388213863 41.397065287974904 58442 4509 925060 LOOM_20190426 39458680.55768175 7602.97057532788 0.057050953678131615 1.0984969576805643e-05 2555238.260014733 492.00254751413433 19210 None 474051 STX_20191118 68960131.17123742 8108.273510897694 0.17857897903123848 2.098560998165821e-05 654356.0790715914 76.89629282806793 33429 None 47074 REP_20190826 105078957.42888547 10408.623441553991 9.554308163313122 0.0009462315142655345 9548012.613108674 945.6080208737301 125911 10050 195654 HNT_20201129 78552734.95185149 4438.157867570936 1.3663710846281072 7.719882823155798e-05 1083041.6643777075 61.190951972371245 None 1855 67416 NBS_20210218 0.0 0.0 0.021152284762371958 4.057290489471264e-07 5234150.540361436 100.39799220955615 None None 724995 LEND_20200806 399226096.2670558 34007.997640350826 0.31776360469586734 2.7068631083318743e-05 33109405.91290979 2820.4183260766713 53886 5799 34253 NU_20210723 107379839.72403307 3320.090852410195 0.19374238000695435 5.984592671267256e-06 14032015.04123323 433.44101778796147 None 7137 130828 TNT_20190531 12349356.184720777 1486.0978660332087 0.02883489865771632 3.470213004761886e-06 1955199.2344530995 235.303681515938 17393 2519 867323 GTO_20210220 17128109.113470208 306.6156637120163 0.026091995778324387 4.6647958713788e-07 17808983.88670682 318.3937143557847 None None 550878 RDN_20210814 23880758.680357177 501.0353821678376 0.4676460505930389 9.803750042667222e-06 355626.5458520937 7.455368776555982 30629 4682 1394664 VIB_20210429 27334629.654188324 499.3730260489637 0.14978274998228167 2.7354765198641743e-06 8995503.450826125 164.28452860561626 32158 1235 3723426 XTZ_20210104 1632071259.7526772 48894.89760476632 2.130992266734892 6.473696692286209e-05 205143459.2606249 6232.010103417581 78276 31552 186076 TRU_20210527 114436190.430498 2925.1353293274638 0.3582914889010028 9.138778048873406e-06 7979295.166668218 203.5242526645044 25344 None 92654 ONE_20190929 13919588.044074714 1697.3316764716824 0.0050304285167558395 6.134021812054079e-07 2124179.043991424 259.01889958580637 70776 None 165581 OCEAN_20210418 708305758.1426632 11749.74485624196 1.6611706140690405 2.7561942221574857e-05 103221987.01085603 1712.6467431424974 None 2616 70658 FUEL_20190207 3715148.1275707525 1090.4953227711312 0.007003075177367229 2.055435586290346e-06 82847.08119612148 24.316008981473242 1 1515 None MATIC_20210106 117726586.1596266 3459.6559550884463 0.02451036926318054 7.19057275529769e-07 64990809.52935813 1906.626290810533 70307 2617 49015 FUEL_20190901 2317602.094235586 241.43376927664664 0.002519350257918868 2.624506727925033e-07 146660.56099697322 15.278210238848471 1 1504 None WNXM_20210722 109797145.7286248 3411.867272160816 50.85033266172536 0.001574556064543678 13895046.144255713 430.253412875308 31426 None 131125 CND_20190914 11662431.183143837 1126.5493303100009 0.00667801058082087 6.450720462556975e-07 323569.67365967523 31.25567846409104 35803 6097 335034 BTS_20210902 164386694.21371198 3379.974548971438 0.06069759612390093 1.2475038636158028e-06 12949926.63641392 266.15689160886166 6759 7245 297381 IRIS_20210708 85341422.70381506 2511.4755199607384 0.08136916161929461 2.3948618931135366e-06 4021781.0193261104 118.36929266514072 26037 None 777699 ONG_20210202 0.0 0.0 0.20238708564058241 6.060452898943268e-06 3915896.7962955325 117.26098044228758 96752 16679 259663 CTK_20201101 19018666.20952961 1378.550894808277 0.8608477724830282 6.238718063739566e-05 1692677.958284554 122.67140477095039 None None 341284 BLZ_20210620 50190811.07049962 1407.9120192104253 0.17084580495007953 4.798552195877207e-06 6614702.567736365 185.78738612142408 62715 None 221752 GAS_20190110 30114207.028808177 7570.532367232306 2.546540957914874 0.000640346411785807 1018134.9438886094 256.0175032749694 315723 97882 128580 SNGLS_20190813 4689878.565154823 412.0843718743402 0.008126481752701102 7.140475136160738e-07 73726.60463221728 6.478116893265897 9 2172 None ENJ_20201018 137176464.09594795 12072.339655350317 0.1486235695776248 1.3077670152252273e-05 4542616.9311907515 399.7134910901291 66608 15923 85667 AERGO_20210729 43104471.70243471 1078.0488078178416 0.16322903537012312 4.079511528581404e-06 9385784.549594065 234.57478743306092 None None 378084 STMX_20210428 468408433.3883146 8501.866427677398 0.05573941662868687 1.0119321740782259e-06 136066153.14224005 2470.239670517548 57444 3984 60335 BNB_20200927 3874918801.864329 360876.0477277523 26.17859218285808 0.002437238240646044 360614333.50742364 33573.3502248792 1277612 72790 672 OG_20210212 0.0 0.0 5.713985730041264 0.00011967421399007905 6191116.126672843 129.66727450604336 620352 None 479965 NPXS_20190904 89783552.27070561 8460.35836867677 0.000379201061455071 3.576813670464693e-08 55160777.96254862 5203.0398842459 64986 5465 165759 TRX_20200323 681383006.0442928 116901.98031177113 0.0103332295844403 1.7721530861693535e-06 1058281960.8095264 181495.7876973891 501855 72219 50139 YFII_20210710 87675899.65092643 2585.0412139496825 2211.0781821529417 0.06505984982094394 31056629.588528465 913.825514304941 17381 None 427366 SUSHI_20210511 2329026187.8053994 41708.635507119274 13.840605728489116 0.00024770480744442107 856340100.8410809 15325.887027412036 None None None NXS_20200324 7847192.504732429 1218.0816981945313 0.13213043188230486 2.039776653653544e-05 33206.024384517106 5.126212965119294 23630 3532 599319 MBL_20210127 5530790.099615727 169.82299683458874 0.0015679313443638084 4.812232970799389e-08 1653960.8346175037 50.76271285326405 None None 959943 ICX_20190725 131379284.32057871 13373.339643413014 0.26686020713422287 2.721429821196375e-05 21503375.07549285 2192.9056720466115 114111 25763 240617 SNGLS_20190618 10370107.611726694 1112.4815849771746 0.017673834466967717 1.8968760642098816e-06 911391.1957556461 97.81669889415433 5 2182 None EOS_20210809 4127960281.037918 93833.77056367909 4.2899807533236505 9.752513561753272e-05 1518330273.739281 34516.55715329445 None 91952 58453 BRD_20190805 16297809.874311803 1488.259558323196 0.27152090504976656 2.479434877086167e-05 406550.2080208954 37.1247571110183 169 None None BCD_20200306 134271428.01776707 14826.567160982768 0.7138261597415295 7.879929184720961e-05 13130965.385334829 1449.527674930359 29196 None 1280057 QTUM_20200425 137144309.99944153 18290.021416752395 1.4259632203295738 0.0001902485651206418 336779508.15514755 44932.3077026796 179084 15111 107639 TROY_20210723 12703171.492233368 392.4173484771877 0.006683405525225831 2.064466211467924e-07 2003031.1329689734 61.87250016365022 58428 None 506506 LUN_20190803 3418502.136400328 324.79608465718326 1.2645401258289057 0.00012014550975054087 108656.98565701258 10.323633598547666 31087 2207 1249671 NXS_20210212 43118693.10081875 904.2673651624905 0.6401534396060566 1.341179863965653e-05 972935.5417738492 20.383887312495105 24367 3625 387114 ZEC_20190520 511252622.68859786 62469.60993228327 77.80659863366702 0.00950881518807622 545683908.501635 66688.52678523255 74883 15147 175759 LOOM_20210616 55012248.02879743 1362.1427003981328 0.06587811678278684 1.6322369044840478e-06 4258694.521161716 105.51604541586468 33294 None 248078 SNT_20190603 103411276.6979955 11829.51851285713 0.02932644860158246 3.353712160859699e-06 26415455.521766823 3020.816997705531 111558 5753 342560 SNT_20200418 63342583.90165971 8997.981820800607 0.0165797284876543 2.3551943469393963e-06 18036490.745118577 2562.131284185946 None 5642 178977 REP_20210128 102370263.91112663 3384.0432800018352 17.629701195484422 0.0005817971027696411 19637876.46492118 648.0688189295953 136948 10443 130861 QLC_20200520 2480053.064030935 254.24961732807265 0.010347206877838848 1.0599292456219559e-06 49862.17415688916 5.1076949811813 24293 5650 940522 MATIC_20201130 89617639.74651954 4940.402723656376 0.018803166704911087 1.035392939558408e-06 9252437.320627633 509.4837707832715 58691 2504 55039 LTC_20210603 12546752972.990368 333398.5392979935 188.0478628206549 0.004994135616880084 4236639177.629152 112515.77282240345 184503 334301 88308 EVX_20201130 5946929.565323405 327.8713306338545 0.2724685894916491 1.4995733598249387e-05 347263.4143724218 19.112183389883658 16646 2807 1331525 CFX_20210902 267033311.63559422 5490.530841676808 0.3057014027679865 6.283011279184152e-06 11164922.506207548 229.47010842131846 38108 1296 218228 CELR_20190511 18596417.96607092 2918.400755048413 0.007844195307894678 1.23127281411091e-06 4255213.354054161 667.9242822798591 13156 None 376913 ZIL_20190626 186717803.75826892 15814.901600004918 0.020110058596627074 1.7009649509513372e-06 38092871.176001966 3222.001489461168 64702 10584 190558 UNI_20210201 5088183581.45538 153927.70196383545 17.638787124819952 0.0005334801940976274 1777734968.623929 53767.098009881665 None None 5312 MDA_20210708 11746449.670444338 345.7139810322651 0.5984266490513542 1.7612509737294604e-05 1941315.7343566925 57.1355609392093 None 389 1489514 ALGO_20210204 594137522.9220703 15853.777498064705 0.7416769246613549 1.9773031575651458e-05 359660673.5324697 9588.517072342109 43013 2909 246299 NANO_20201031 97646251.68378961 7189.674923243688 0.7325338523985265 5.398011108601073e-05 4958852.393222085 365.41574449945074 None 52846 265875 ZRX_20200318 91759822.30396219 16891.631327534913 0.14162452010306897 2.633089642679817e-05 37711605.86921778 7011.359244203997 152823 15967 132419 OMG_20210707 633625621.826942 18550.79072794408 4.526536174108249 0.00013251997696737722 181621449.76060724 5317.193857132698 326296 5004 166792 TRX_20211104 7585709950.119215 120494.90980943499 0.10591794983135985 1.6807419409556858e-06 2512188260.2124186 39864.25510726201 1221893 119484 28507 ANKR_20211104 1045976804.344364 16630.351394432848 0.12877019264361442 2.0422214447748924e-06 192190878.8261771 3048.037175149906 133388 None 5363 BTG_20210422 1525993165.8602238 28163.474487278523 86.34139422921253 0.0015942697350848937 57083488.92218958 1054.0306833603313 93003 None 172941 LRC_20201224 175684245.84277934 7513.586325090433 0.14161562709686537 6.072884489118418e-06 30735445.66822105 1318.0241128121445 43907 7270 249793 ETC_20190702 869747081.9567955 81963.89636605584 7.793815797708545 0.0007352016175250823 1007317107.3678607 95021.64099327006 228332 24727 547653 CRV_20210202 521194285.84218687 15612.244225013023 2.523869337883925 7.556897122496449e-05 326383495.61931396 9772.480935735983 None None 29016 FTT_20210823 5342100316.512083 108285.6331176652 50.268833600086666 0.0010200417866351673 151345360.53285435 3071.0597581203906 173697 None 1799 ORN_20210902 268295707.43563816 5516.487240270265 8.914213249423128 0.000183220624402466 15114582.598291926 310.66154508036993 81520 None 95537 NBS_20210219 0.0 0.0 0.02281012194269443 4.412828877972906e-07 7643260.896062671 147.86594516575514 None None 724995 ADA_20210819 68408416408.650925 1517651.1265314734 2.1184219304391667 4.7084213185835635e-05 4160522472.269788 92472.10115890366 552866 566483 8980 FET_20210804 259051099.8937929 6742.498221583936 0.37436072846975943 9.783919441182215e-06 30513126.638314437 797.4607116194219 None 3215 157156 UTK_20210325 240961594.9827016 4558.539834731421 0.5332980077139163 1.0108777098466009e-05 24179334.211812273 458.32441974477183 66503 3613 72941 DIA_20210104 34200629.85512403 1023.1933653133434 1.3090430718524757 3.9767144801965666e-05 12971533.389451064 394.0594910080746 None 190 308409 EVX_20210131 7446895.82927399 217.66622207533734 0.33873620946017213 9.914869116577211e-06 2567851.420397749 75.16146792997071 16833 2808 1099607 AE_20200506 39796935.05157574 4437.740020824068 0.11208396066657059 1.248076628369239e-05 8327232.545167754 927.2534854060813 25254 6334 567449 VIDT_20210617 23028366.170055952 602.0636745104325 0.4997459225831117 1.3048573111174775e-05 3903577.6413035532 101.92402968375498 28271 1612 730445 PERL_20200223 10962974.49719302 1135.7260437670777 0.0419093967206978 4.341615814481449e-06 2093757.4865304218 216.90339939252777 11255 447 1012589 SKY_20190929 8387242.407437199 1023.9487366889099 0.524202650464825 6.399679604305687e-05 358579.65690451144 43.7768659654024 16325 3811 8463973 CMT_20190804 30488084.22995972 2825.5911872665633 0.0381993215530648 3.539574564263124e-06 3435539.436884082 318.3393712483908 290706 1647 586149 BEAM_20210110 26804136.533973534 662.369259895861 0.3387799510049954 8.409930711656273e-06 8472224.00605126 210.3159193841179 15735 1618 333744 ENJ_20190601 136544551.29117912 15917.140897892708 0.1566568698348882 1.8266531254903534e-05 14341292.489405781 1672.2258511200196 46272 12532 19644 RSR_20211225 433244877.5881092 8520.71685676541 0.03292434250934821 6.477444395189753e-07 68610041.36185098 1349.8150426143668 None None 97056 ZEC_20211230 1737303008.2013648 37372.60249305014 145.7807843950727 0.003132648648903806 290603994.4728838 6244.720210754322 84166 21701 107284 BLZ_20200229 4513901.626269678 516.4560244643895 0.02080073847893004 2.3872977448234052e-06 697423.6122206685 80.04320703937998 36181 None 533350 WABI_20201015 5407898.5446258625 473.77281834013047 0.09166187116435223 8.023824226841798e-06 585341.2981114443 51.23914261292317 41482 7621 1594537 ARDR_20210909 355948173.6101046 7680.054834804326 0.3567213399216266 7.701693081987745e-06 53030462.52489818 1144.939482601045 73218 7095 None MTL_20200410 17917132.815200977 2457.2802961401776 0.27720968027613435 3.8018464911079165e-05 4126282.7636474096 565.907136816627 35199 None 465912 OGN_20210324 180306179.48737657 3307.493156035177 0.8532861404107609 1.565319499883506e-05 70634242.25449324 1295.757091603868 91185 3458 85447 BNB_20200113 2347844996.5334334 287825.8461095408 15.303621814103838 0.0018738906823231752 210916688.70912793 25826.227445992135 1084793 58358 1604 XZC_20200404 30682903.03033186 4562.402967065462 3.1201604529831855 0.0004637471800580526 29100706.633141752 4325.216873354455 63574 4094 105092 XZC_20200625 47131341.687373 5061.6684217434795 4.52780090866739 0.0004871266042150581 17113857.489284463 1841.206239394742 63602 4121 444213 TRX_20190414 1743639301.696934 343692.6607310604 0.026231484708910534 5.169561391400451e-06 359209175.3344545 70791.03241209236 410685 70485 89278 CMT_20190227 20780004.147121385 5455.794595228172 0.02777934296072135 7.291297192651196e-06 2352557.497896571 617.4802587742115 292698 1633 907470 TRX_20191213 914504837.3835105 126899.43708468294 0.013805432184389418 1.9178789175679106e-06 993613807.3302641 138034.86539435555 490609 71636 69501 GAS_20191019 17706625.629096493 2225.462279175895 1.2705883077170104 0.00015963686506582307 1490590.8609904612 187.27801184621086 323245 98331 172955 WNXM_20201231 39993992.55110892 1384.975490019574 22.03667467345483 0.0007641485275724604 26155513.816896718 906.9742902343863 17235 None 131301 TWT_20210511 315624789.27197516 5652.967172207522 0.9126558587577797 1.632313959532248e-05 33127119.904246636 592.48904984186 None 29088 4038 EVX_20190316 6179419.134774774 1574.7074740375072 0.3204366278961417 8.165718199366343e-05 1390384.2247924302 354.3129836012145 14207 2306 1271428 WPR_20210104 4488250.640242962 133.71731548810325 0.007244159200896281 2.1964456159713208e-07 252191.75432211225 7.646511593731754 32502 None 7558136 EOS_20190430 4668442051.564128 896969.6979189995 4.480415930785962 0.0008608384070673055 2197224208.8188195 422160.5799793483 None 64373 106638 CELR_20210218 76299421.10174957 1462.5389897362743 0.019451107669526933 3.730517537502725e-07 24343033.744221173 466.8737423170428 30446 None 384776 FUN_20190616 38133438.20648149 4324.875218062012 0.006340390355765725 7.190754852104475e-07 14370479.55857509 1629.782865323477 36274 17643 455027 MANA_20210825 1143250879.8997545 23790.579467233543 0.8600385255629535 1.790882735574269e-05 251974783.80364603 5246.942743857086 161175 35848 19080 MFT_20190605 23455914.0688084 3061.5365131824547 0.003534615959832388 4.6105061067936844e-07 13204917.550989212 1722.4319049198732 18379 2046 844355 XEM_20190227 390783850.16503644 102600.38460715172 0.04341744018564497 1.1395874714922785e-05 13273862.38176433 3484.020984169538 214850 18488 136957 DLT_20200713 3313975.507072348 357.09001804862794 0.040433376722582064 4.35423705936463e-06 268452.7236790259 28.909452855016 None 2564 4351611 OMG_20200807 225524386.87142193 19168.575437141808 1.6077455330939305 0.0001365511304563584 55359009.57644839 4701.823256856626 217 43120 264295 APPC_20200605 4331927.898285356 443.8304516709114 0.03966406464894839 4.057647821241435e-06 218100.20439532056 22.311727933320807 24544 3211 1584019 VIA_20200718 4508387.039635135 492.5168397557623 0.19458150782014133 2.1256974714895613e-05 87431.65676662089 9.551434450222272 38589 2154 1442044 STORM_20190419 16018503.331455858 3037.920522883719 0.003545089988626312 6.723236802715938e-07 1068149.0082108513 202.57366514891925 27053 2576 3845738 KAVA_20210430 301312729.78259623 5621.102124557945 5.14052529444985 9.587822956090607e-05 65245909.22072703 1216.9305477261346 94011 None 75402 MTL_20190905 21508153.86066679 2036.8175496616384 0.42572428468078805 4.0302869937448624e-05 22201542.33203817 2101.796644487436 None None 253517 WTC_20191012 22660773.897809226 2733.0210986122765 0.7863564458074005 9.511194484260069e-05 5513077.303375979 666.8216521749214 55591 19783 471391 CND_20210204 26814445.048600297 715.7309237782152 0.014275254708858416 3.805789684876089e-07 881855.2817257686 23.5103036912034 34033 5908 421392 IOST_20190318 103502404.84227288 25991.012548035553 0.0076673406878249575 1.9254796878149784e-06 8199042.493492832 2059.004604532676 195136 48534 93184 EOS_20190426 4771707358.165393 919257.1919044887 4.5880222405533555 0.0008834082777043038 2931743158.4061093 564497.3015489457 883 64315 106638 ZRX_20190515 177584959.78534234 22234.06604366116 0.30162765098786953 3.774043512343051e-05 40370847.18171728 5051.305256495875 150208 15875 221725 GTC_20210702 100182678.60298556 2979.698694564513 7.04092419326834 0.00020931644937300997 33227349.551534407 987.8008396756488 51376 953 25905 ATM_20210304 0.0 0.0 7.173447439030084 0.00014157656081944503 1790606.464306655 35.33975918165774 None None 220888 AION_20210117 39296428.29044876 1082.8539041054557 0.08073698188563405 2.230558055150135e-06 2269414.285989024 62.698161336475835 67920 72531 431137 BEAM_20211028 70616173.89531559 1206.5624690560885 0.7081865888134697 1.2102026505934553e-05 5528953.367689134 94.48292478675266 26746 2819 285868 CDT_20191015 7631841.7678348925 914.4264504236506 0.011313944073422559 1.3555516034661755e-06 98329.01079351548 11.781041817371428 19579 299 173810 QKC_20191216 13190052.650378207 1853.5055374252702 0.003533371213016455 4.96944010669632e-07 1087023.059706508 152.8822097692262 48853 9211 280804 IOTX_20191213 15740421.478377031 2184.1881457911177 0.0036045295730633285 5.007041785264882e-07 1837241.7274178443 255.21072618071034 22172 1786 479082 CELR_20210710 162545462.0393596 4784.179218338902 0.02880207551462843 8.474864085034855e-07 31465582.853782516 925.8587559315696 57067 None 195750 STX_20211125 2073409007.6657515 36256.40534109564 1.969991228936492 3.4441040213266817e-05 22973972.016335435 401.65026242286035 95728 None 46004 HOT_20201014 89053304.6318679 7795.033215140984 0.0005067071863895964 4.4345326675018624e-08 4621158.905659528 404.42844860518613 26331 7304 231880 FLM_20201106 0.0 0.0 0.1293191223610499 8.318966823763775e-06 6607628.0573675595 425.06195208735517 11684 None 37281 UMA_20201130 451996143.79455477 24912.05979824024 8.15995082852546 0.0004490956151227572 11706334.038985722 644.2763438834073 None None 96214 NCASH_20200305 2339829.409021322 267.27831567043177 0.0008015436540361981 9.152641591859259e-08 872161.150309751 99.59006448285528 58003 58362 746963 TWT_20210422 231682151.19969139 4275.887009488732 0.6599359710072095 1.2202559166103708e-05 22623895.270192076 418.32758438808713 None 21112 5638 YFI_20210602 1634669077.3328738 44552.68893466172 45181.548975194855 1.2319627257781902 361039921.26419795 9844.45499554647 124861 6198 17925 ATOM_20210408 4713646601.386936 83683.81802160088 19.628379921048335 0.00034930277484634823 1320334643.2022958 23496.41470418884 98007 22904 47588 BAND_20210318 323356862.09786606 5493.840977804247 14.329169034314798 0.0002431051107843188 241811691.2912044 4102.5168912108375 70928 4344 216728 OCEAN_20210128 219807128.30821076 7266.141621884145 0.5276399343777382 1.7412625530213733e-05 77321050.22989267 2551.6690559894287 39810 1450 64181 ADA_20201124 4725945643.464689 258051.56378869218 0.15357163877237542 8.364824007692315e-06 1583345915.5301619 86242.55124567101 166353 90598 42419 NEAR_20210217 1161059810.581479 23608.55558061148 4.056820407795763 8.243964161752115e-05 91228422.390689 1853.875126630667 38344 None None WAVES_20190318 273159233.1571046 68594.3877316864 2.7336152232768844 0.0006864858105339498 10589720.403502645 2659.3694433015235 137549 56738 38388 SPELL_20220115 1153384409.7099867 26755.325199752115 0.014357039147958557 3.328832730153873e-07 46942674.00418028 1088.415989227682 None None 6379 MFT_20190901 9335637.151580142 972.5732149944816 0.0010370334587402564 1.080326328720788e-07 257356.7338635322 26.81005642808291 18777 2207 866690 WNXM_20210513 242414807.95842877 4699.9478800242805 110.47630343281776 0.002202377554705753 67661631.57048957 1348.8544968943088 27489 None 102080 LSK_20201018 152196596.7102684 13398.406589815628 1.07105276901793 9.425236042029272e-05 1729558.5558355341 152.20069551016007 177501 31058 197564 DGD_20190318 34095356.66201191 8561.77380394014 17.02417383932708 0.004275237303789908 261436.07305277028 65.65377342949681 16176 3300 547619 CMT_20190627 34908122.244674966 2689.4508828274056 0.04395746998661777 3.370787258604318e-06 13719856.326868018 1052.0786776529158 291077 1643 705322 MLN_20220112 110263902.30257426 2572.126508636966 75.6318126723923 0.0017670511173689086 7758608.842886136 181.27105434370634 31792 612 93129 ARK_20200605 35058338.75220706 3586.1261649052385 0.2339343151260225 2.3929199106440927e-05 1662642.0213927198 170.07206467853553 61863 21913 92267 FIS_20211104 48113407.919414885 763.051071191387 1.7849066401323241 2.8307596211242406e-05 91697171.67473744 1454.2645823139567 None None 263918 QKC_20190316 52537729.72888949 13387.370916954724 0.0333012241621192 8.485543999488347e-06 4513756.944758062 1150.1584137351188 44346 9019 152354 XVG_20201208 112301588.99297307 5846.9119839199275 0.006825164187824894 3.556904023286072e-07 2043084.339848785 106.47443355698734 None 51314 288083 ONE_20201115 35976179.95005847 2235.5926922013664 0.004888943755265617 3.039242372974258e-07 2980587.605977892 185.29008722371253 None 1524 134160 IOTX_20190623 33986950.44361622 3165.8083315605745 0.009711260986642283 9.053512537772277e-07 1358857.3993547743 126.6821324133387 19596 1737 766707 DUSK_20210718 38819905.061429136 1229.3571245017565 0.10788472506662158 3.4134639983979577e-06 9145184.541649275 289.3529011854846 28136 13638 415059 MTL_20190920 16137908.562728819 1574.4311422783098 0.31700084596618155 3.091097883438607e-05 8500954.331025464 828.9341266503875 34396 None 247818 ARK_20200412 22769646.529781707 3308.396429864006 0.1521896783956666 2.2114786274930505e-05 534614.2724184381 77.68516563471412 62436 22005 82800 POLS_20211011 166298766.72639367 3039.669540564144 2.0451176336186307 3.738749290963895e-05 21016102.490169816 384.20253677495424 None None 26189 FIS_20210401 103407306.78959054 1758.0372582248237 3.8287824497602068 6.515786879220994e-05 8848933.984471751 150.5903474738421 17442 None 245374 KEY_20190930 2961816.204484211 367.52727408775564 0.0011328659473235664 1.4057561468409235e-07 49745.755983829185 6.172875300800544 23678 2808 575319 SXP_20210314 265745582.85413516 4331.7325407030185 3.0441589969832403 4.961495332172782e-05 399854022.51523226 6516.98504652961 123526 None 107047 XRP_20190520 17545117532.265755 2143992.8157856027 0.4165254503990362 5.0903954144332165e-05 3168824166.002931 387264.8835338444 921482 200995 39974 AUDIO_20210427 348497449.9715851 6468.890887206743 2.2658923478200546 4.2049794857173445e-05 81932880.70015407 1520.4874268688552 None 4817 38976 TRX_20200318 674253833.7376415 124162.0705737065 0.01011727241501937 1.8772549095853288e-06 1154798915.2687068 214272.36950284702 501217 72204 50139 COCOS_20200306 11562953.6992924 1275.7848487107333 0.00047775133392031203 5.271052569029922e-08 1555684.0493788584 171.63934086356863 14687 211 73199 GO_20200520 7054606.574556752 723.9860694226181 0.007317306053267094 7.498829757523442e-07 958363.1238385217 98.21376691418686 10749 675 1263025 RVN_20200404 90180232.88814867 13410.315991296884 0.015402745740944588 2.289056382770942e-06 11603919.263207123 1724.4993783149996 30217 7631 209100 RCN_20200316 18760933.111426543 3471.675308341289 0.03687599642916116 6.862431735647548e-06 1390571.858145556 258.7782127695991 None 1132 875851 XTZ_20210930 4839611479.85286 116509.57113765084 5.633425096237928 0.00013546636407234206 480922488.39679915 11564.691069957546 156175 58792 46936 MANA_20190914 43147168.86454913 4166.7146572344855 0.032449430654257386 3.134499470859052e-06 12418691.260797806 1199.6013612838378 45659 6373 122199 XLM_20190426 1885584002.9223764 363317.7665576269 0.09901128255920526 1.9064290017123448e-05 247143078.12013283 47586.56988600702 269699 100488 70841 BNB_20191017 2764149805.042665 345161.7939164707 17.76674876061258 0.0022191351474491953 199939156.27276903 24973.16841784062 None 56868 1996 QKC_20190312 51994081.39939385 13447.335033782816 0.03286161899913939 8.509645491071477e-06 13670960.648586823 3540.149030542565 43225 9010 173960 YOYO_20220112 2760288.516064192 64.38926172023524 0.015756302664699025 3.6825983114687833e-07 188280.7313670732 4.400539378872968 12517 None 776872 ONT_20190225 592341955.0067801 157619.15286476127 0.9850302735810528 0.00026294723717934266 353527932.63759005 94371.91490047128 67468 11116 278128 MDT_20210201 14166725.696921423 428.5355680795292 0.023471571686737507 7.078317704721611e-07 3323991.954389693 100.24156633023124 13786 74 1222000 THETA_20210220 3739276527.268294 66940.15111655428 3.739930092845163 6.68634573015013e-05 259173405.8901526 4633.570555656462 86491 3979 42831 ONE_20200331 11062751.276654497 1721.841417149781 0.0021642270409987703 3.375771859016318e-07 32346658.219826926 5045.447473076492 70955 None 350374 IOTX_20210212 124378282.04071918 2608.4149175670377 0.020306801262487267 4.25307411421092e-07 28065527.952412482 587.8068578755973 31858 2108 512659 WRX_20210722 416407099.50193334 12939.550889578966 0.9199845817521498 2.858785867831894e-05 8766483.116707275 272.41215278737565 294594 None 1290 CMT_20210117 8624122.032595737 237.64664166050903 0.010777831659414509 2.977641554524946e-07 3479964.031842067 96.14258077981538 280597 1627 1294863 NPXS_20190708 198776260.49159798 17400.86799865099 0.000835314379933601 7.309695801914573e-08 3774080.481069174 330.2634422593322 63142 4626 223593 LOOM_20190812 21210483.574674428 1837.7770604594616 0.035090308375970325 3.0394265174505703e-06 1928214.6001355092 167.0166737833678 20828 None 419085 HOT_20190801 205731572.78799734 20455.91912813703 0.001158590715612705 1.152069839294215e-07 7215342.85627765 717.4732865426475 23965 6600 379586 VET_20200322 177430089.70774305 28809.004946928424 0.002839522455666556 4.6080045159157e-07 69848175.32509594 11335.029475967267 118604 60945 265359 LTC_20190914 4362517453.351803 421298.15558577614 68.9604548863052 0.006661792674520697 2360670037.9695277 228048.00797549504 451665 208363 124361 BTS_20210304 135427615.15992048 2662.9943933983764 0.0498728771042906 9.83075858646173e-07 48411804.20984179 954.2757257151746 2480 6974 126730 ROSE_20210617 108334748.60276708 2832.320385665739 0.07231719752701683 1.8882319924673574e-06 13012723.68464867 339.7676073013185 21328 1613 217403 CELO_20210725 306763162.3921348 8978.589348049356 2.4365707909858845 7.131534442883505e-05 16316308.07666198 477.5576948549545 34686 None 78180 DNT_20200310 4285119.460928691 541.4787854638301 0.005664807302555427 7.147861087697091e-07 152208.6305826207 19.205704442274467 59052 6098 762988 GAS_20181229 26923966.601453546 6994.240072452327 2.2774803515963433 0.0005916380960930914 1024846.961295305 266.2321563136852 315675 97817 130290 FIL_20210603 5312676048.68686 141065.6772771706 70.1603557096299 0.001863303980628661 485410711.118052 12891.43564222141 90184 None 25507 ICX_20200329 101482899.48969993 16235.577515012312 0.1912216304685682 3.05853448004356e-05 14845616.829415418 2374.513324618134 113058 27514 126672 WTC_20200107 11101604.553183872 1430.8197924704282 0.3813669800189382 4.911298744723495e-05 9311408.016802473 1199.13649845247 55248 19575 1004613 ADX_20200229 8557621.81743559 977.7028699193654 0.0906568674207299 1.0404675553490038e-05 499046.7163871674 57.27551941482285 52511 3783 88673 ZEC_20210401 1719054317.2202103 29226.021233473082 157.3572774220302 0.0026778917241448816 1380133374.114396 23486.983260678033 73805 18271 92641 MTH_20210206 6056589.667025883 159.80023552650692 0.01783423139656478 4.69180472826791e-07 2518964.196463711 66.2685588434301 19244 1888 1161820 TNB_20190613 13538188.175691182 1665.5638816419357 0.004969574451782539 6.108664136057075e-07 729487.732800909 89.66956012614125 15709 1494 509934 UNI_20211011 12596667450.01749 230223.29246002377 24.25958741977626 0.0004432296414114124 298370108.99057794 5451.307729494667 None 53649 2657 FUN_20200407 10433669.154937303 1431.8874079350467 0.0017348701150179892 2.3808869489805205e-07 380062.8817019541 52.158760877999626 None 16953 280907 GO_20210124 8864918.036775976 277.02548792137463 0.008314484540961044 2.59778428399471e-07 268146.26565746905 8.377983641741517 None 686 751826 SNGLS_20200713 7313598.259672407 788.0604213801209 0.010559248962764643 1.137475648391949e-06 378626.09647370287 40.786798957316826 9093 2130 889953 GO_20190405 22075939.012744997 4502.188630187113 0.03152734653854249 6.433138845834014e-06 2434605.4503246 496.779989956188 9048 643 935336 ALGO_20211125 10934563407.83917 191255.57655676856 1.7445995612557301 3.0500553892158104e-05 381399674.94300365 6667.9492523072295 193680 57061 73303 SYS_20190729 20199883.051034313 2118.948458386462 0.036157985022417995 3.792938128802201e-06 676186.3949760556 70.93130765145925 61087 4594 748817 BTS_20200105 41400871.99677353 5633.762103821698 0.01525531936584899 2.074684520614357e-06 6344416.883997337 862.8245129380889 13434 7075 164452 YOYO_20190401 6594143.975059205 1606.3790780729569 0.022582684846097822 5.501298212579753e-06 569620.7647693946 138.7635578510791 7302 None 1373234 OMG_20190810 184964390.03654474 15597.915259544348 1.3191448210532954 0.00011121036143361147 69448676.10583065 5854.86312613375 289252 40988 None IOST_20201129 98705276.29462726 5576.023046914769 0.0058722510196841955 3.3149772872433937e-07 30356970.900952145 1713.6983536438966 None 52156 285910 ELF_20191024 34091587.10631681 4568.352417987043 0.07393684906998493 9.903373662790756e-06 13111914.340435438 1756.2580605095186 84812 33539 963430 DASH_20200901 839905027.5757649 71891.33905470556 86.62066497898223 0.007419238915136783 393715473.66736805 33722.54374211074 319202 35296 76082 STEEM_20200801 76166705.48514694 6720.299058944167 0.21158349087694636 1.8666072517821145e-05 2987154.2163108303 263.52924319601755 11597 3862 180097 BCPT_20200224 3444657.4792447668 346.3189289473908 0.029761795271908472 2.9909298671832603e-06 377781.89593685186 37.9654233058029 10724 3157 1896885 CKB_20210318 388598458.7866653 6606.244128728244 0.016105107857194385 2.7323524626170797e-07 32791297.503809664 556.3289813481081 37296 1891 160288 TRU_20210727 49163049.553375155 1313.1720610395523 0.136437460602624 3.655598563158507e-06 3399558.770240596 91.08511768669945 None None 118402 ARPA_20210902 79780440.84931034 1640.0816653180789 0.08132780127392499 1.6715117696176594e-06 64298596.431109376 1321.5144024673618 44771 None 784225 XLM_20190228 1613107716.0227013 422859.0267588411 0.08399201754388447 2.2017613852650286e-05 106663592.20284109 27960.72595865046 263271 99246 66683 BCPT_20200707 2808388.884344779 300.85147055263263 0.024198833506573286 2.5900045004350632e-06 49786.87855663335 5.3286965047 10475 3172 2322058 NULS_20190730 38757419.97695216 4082.7413695815126 0.5273693919118226 5.544284932965565e-05 4209526.273989381 442.55152941648737 21308 5314 418042 RLC_20210916 302115027.2448112 6268.928712081202 4.23817684749217 8.791733008922508e-05 24153820.482800078 501.05021208795694 47344 7923 461414 CVC_20210203 116428972.3613674 3268.857978201071 0.17473154431023125 4.919975091731769e-06 51803508.89084052 1458.6488914372676 None 8257 155763 DENT_20210727 244734960.26854107 6522.526646933988 0.002541621701192761 6.809822315612673e-08 56855852.42888211 1523.3512228105506 105610 None 84915 ARDR_20190220 58283609.17830406 14887.20762871664 0.0583419806216259 1.4902117271557418e-05 1264436.3132668913 322.97117824852154 69531 6607 792340 ARK_20201201 62536102.05767238 3180.806511049289 0.40753124667028356 2.0731664075521632e-05 2744381.1077957284 139.6103677617162 62915 21639 102174 VIB_20200531 2846882.7310367213 294.9179790377348 0.015608426485826905 1.6161081713495815e-06 1053347.628309406 109.06440254745173 30975 1102 None SNM_20191220 4921817.1007155655 689.2277240756712 0.011244278109936999 1.5735853157265667e-06 199557.69714615986 27.927187392483127 30619 9775 6507778 BNT_20210207 277388606.06899405 7051.383870309075 2.4687070512098765 6.277944962304259e-05 137772684.63601226 3503.572167584232 92205 5430 79308 TKO_20211221 89591514.2304363 1899.5022013178618 1.1956427765861055 2.53692372262571e-05 12088359.596359193 256.49171163980395 None None 24168 ANKR_20211207 914001935.9511327 18108.24760039976 0.11218062237825714 2.221485764725744e-06 150800668.98054925 2986.2692178853454 148829 None 5363 QTUM_20210519 1825113437.2790358 42774.174966438935 17.782339620817428 0.0004156609426826659 994309687.9492781 23241.919287587294 242956 16600 95326 KMD_20200806 83050216.29089144 7089.465862459219 0.685509684568924 5.851757796890392e-05 4597601.633360579 392.46784999007144 101607 8374 322159 NULS_20211028 50390929.66261267 860.9535087569104 0.5312038314849467 9.070390406415171e-06 8959412.71538917 152.98340547282544 73412 5509 212195 SNT_20200312 46669939.90434294 5884.156547092262 0.012929373016390229 1.6287570487304971e-06 22544755.939662848 2840.039505557285 None 5610 203342 YFI_20200903 953095099.5304091 83543.94707467887 31814.888939650755 2.7874879756815085 621038974.5176978 54412.84667632918 30323 None 26862 AE_20200730 58171500.48576574 5244.822961585949 0.16047063265552217 1.4468254244496442e-05 13558180.675861236 1222.4243269002188 25453 6349 364540 ZEN_20200330 47221240.66956419 7985.708722420457 5.395702145422952 0.0009141097659748054 3237850.4271405134 548.538562071208 None 5101 39151 ETH_20190615 28177766390.07106 3239637.5917724087 263.92853843827874 0.030397602496046023 9249836453.371191 1065337.0542146487 443228 438851 37291 CDT_20190730 8868785.50523113 934.391684643975 0.013175989915105034 1.3851792595156801e-06 85449.4061038919 8.983214607454418 19791 296 299913 STMX_20210202 25962364.10906322 777.6621852919898 0.003122014560997688 9.35150842126633e-08 5068118.846667606 151.8076073913155 22421 259 181816 NANO_20190316 133231224.86007221 33949.325212792086 0.9986531163093876 0.000254468572008501 3013310.3350531613 767.8269515777283 97193 44787 349841 NANO_20200905 117321509.29030523 11182.765923346751 0.8827124744466314 8.418768123765694e-05 12047147.013719251 1148.9827117827897 98801 52586 201446 OXT_20210711 180984375.4582445 5367.184947974363 0.30563249585340885 9.06674603797252e-06 19801805.449109223 587.4307985448178 None 4319 118089 TRX_20201014 1921550555.451818 168197.58083361934 0.026821370850925872 2.3473171176649222e-06 791416994.7550426 69262.1816134843 538805 75537 30399 PIVX_20210826 57979989.53615752 1182.8526248320234 0.8668334011740741 1.7684724402939915e-05 200062.20476095084 4.0815743254123324 None 9904 371211 TRB_20210212 96279286.08333845 2019.9519664962697 56.81775839963429 0.001188119975235615 158908080.4304473 3322.937579793317 13976 None 357137 WTC_20190410 58084376.90963557 11230.049275410716 2.097638045577571 0.000405366169129083 6823031.746546437 1318.5431332039427 55324 20295 1086384 CMT_20190228 22190625.817644034 5806.361148848907 0.02771521087206013 7.265288129598754e-06 1375334.8891430602 360.5314168613198 292686 1633 907470 ASR_20211207 9368359.311314609 185.60511118202265 4.374008749260211 8.661743860275398e-05 3473928.1331420853 68.79335960032243 2039428 None 105870 NULS_20190803 37224152.75657813 3537.37707490256 0.5051003841860844 4.799922596568931e-05 5039140.432362373 478.864890739607 21323 5309 406668 OST_20190603 17746419.420423586 2030.064841805569 0.02787848366112644 3.1888544991461647e-06 1244841.5101469266 142.39004167544235 18120 756 1020616 INJ_20210107 62612605.84899172 1704.384669551285 4.642930682650559 0.0001257927178995354 19280266.929973688 522.3677338136255 37498 1946 132125 AVA_20210523 156969026.48727605 4175.916916198464 3.0087196880471474 8.011539788207835e-05 7006613.081329007 186.57025346910686 None 10105 42343 COCOS_20200315 5964649.463948227 1154.4617741195048 0.0002654275670447962 5.122995053174498e-08 835937.5072579886 161.34359223218655 14609 213 73199 ENJ_20201111 128654488.0717355 8411.220263261303 0.1390394798858624 9.101707316400062e-06 8281091.526208804 542.0911484547139 66978 15943 82312 RCN_20190426 12181003.717020493 2347.0580244842176 0.02438045248408612 4.693294834044541e-06 563059.5049529248 108.39028798092032 19000 1116 1782398 XEM_20191024 334863424.73865587 44871.09102446978 0.0372241756067625 4.986603670208552e-06 26689488.664878756 3575.361978146685 215273 18272 149235 ADX_20200927 16958008.42498371 1579.3205924205877 0.1918484516168759 1.7861173718713457e-05 10229489.548420109 952.3698958121962 52857 3742 10854 FIL_20210106 965061654.5564218 28322.839979847126 21.637499704274394 0.0006347763030238736 123548680.69304316 3624.530368373121 43119 None 31509 DUSK_20190930 9232288.081809143 1144.8707736217025 0.06129096622290198 7.605607832654511e-06 1893166.8748711273 234.9234430352592 20092 13330 178526 POWR_20200425 26443747.95678757 3526.626197403427 0.061382951487218576 8.189564973922845e-06 1224267.2237326596 163.33877292118243 82075 12766 208594 RUNE_20201224 196984161.8742437 8425.31873262322 0.8787934830060854 3.769139994864704e-05 22379726.982154377 959.8651523227866 25044 1999 305720 MFT_20210611 100485471.35034549 2726.56497246304 0.010693857981737468 2.9127907946006615e-07 76803858.06532373 2091.981875432978 None 3490 261213 XLM_20200324 802593090.9226772 123859.8153616434 0.039568735014597914 6.106427115348863e-06 315920459.2950129 48754.281839457915 281110 106862 82721 MTH_20200305 3493486.083064823 399.06593232228687 0.010029388451748446 1.1452398395767524e-06 265543.9969050425 30.32204464700777 19243 1932 1066623 BLZ_20211125 125428193.96750027 2192.5154097398818 0.4019220417843979 7.027400244661431e-06 31191430.53111402 545.3661251633291 72969 None 249673 GAS_20210131 26087248.481029846 762.5856068419841 1.866551851003824 5.46264155735565e-05 3762284.077361563 110.10682259118572 333295 102020 149199 SC_20200404 58207747.83882916 8650.458753143213 0.0013249543216002193 1.9690613594150845e-07 2564900.439195224 381.1789027916371 107295 30127 166038 YOYO_20200313 1018623.4413959713 211.66159940626105 0.0056064218000470385 1.1699366374585464e-06 179314.27540408165 37.418936337042446 7511 None 2563708 HARD_20220115 70673613.62943144 1639.7081965428365 0.7315819466089514 1.696643034962451e-05 3220907.373587176 74.69744280850765 39783 None 51112 STORJ_20210513 253655354.95999262 4920.097531701266 1.7163950591786374 3.40528951093194e-05 124334941.72147684 2466.777509188887 424 13263 52053 BCH_20200530 4381631967.534372 464655.8859251953 237.7441443883055 0.025225547867987964 3514509145.569215 372902.6383053101 None 298448 140343 CTSI_20210318 97771172.5334467 1662.127627898153 0.3273840100971815 5.554315526119808e-06 37779211.76730957 640.9526916768077 None 725 199890 FUN_20190803 17046001.709938835 1619.990794930772 0.0028365571629551264 2.695015637805994e-07 217697.81926143388 20.683490355421004 36089 17496 379326 AE_20190704 148257694.91375145 12364.693579563886 0.46367451549879307 3.86353861325794e-05 30188557.769948617 2515.4425081416425 24767 6361 357340 DLT_20200305 3706516.1383687225 423.3947084556186 0.04521743864979504 5.162733446389039e-06 217068.90803875204 24.7839980584104 None 2588 None CMT_20200610 9396835.480682384 961.292288367348 0.011788465971494246 1.206631786623338e-06 3979866.2598027717 407.36709485356846 284206 1636 1175745 CMT_20200523 7968044.973885164 870.4457892966848 0.009942325052976417 1.0880070058634937e-06 6189440.666406482 677.3219313937711 284495 1632 1222646 FIS_20211216 30727829.702604085 629.8052696092454 1.143216995650867 2.3393335518219705e-05 4871681.03226706 99.68787147070597 None None 264927 ETC_20200323 535041275.35077745 91764.05442130982 4.622110565197683 0.0007921489171705925 1785761186.2330718 306048.237065333 231046 25311 345588 SC_20210325 934218408.2274384 17718.79803445727 0.019746962066846827 3.7452958491839683e-07 132465783.34723401 2512.4044237783805 124961 36494 75300 NAV_20210219 30869352.666116223 597.234775548965 0.43509438598649586 8.414667712073081e-06 2024488.8373636196 39.15334557717036 49186 13724 541634 HIVE_20210616 137026776.01311302 3392.8812108831758 0.3683520982243477 9.120709447261645e-06 5311213.283823588 131.510132310112 None 168 116714 HOT_20210702 1057864438.1876221 31483.41026104175 0.005964305854904758 1.773488881770964e-07 73814459.08175558 2194.876079129609 80236 23369 73444 STPT_20210825 77748178.73478091 1617.9075451791223 0.06406122322290377 1.3354234955686125e-06 45917617.04608931 957.2009646226358 30808 None 819629 ARDR_20191216 44978420.95352839 6320.283999448796 0.045166370278598426 6.352334878076633e-06 2416936.966230176 339.9253226237577 65689 6462 1429068 CELR_20190806 27603734.78813736 2336.810101496648 0.008828577399404187 7.479767187295016e-07 8469189.201248026 717.5285510297888 17869 None 493170 LRC_20200801 121353728.5615654 10707.39221542951 0.10219231567714034 9.018848632927793e-06 19687212.66502669 1737.469102775725 37583 6949 238881 TNB_20190622 14755801.185886338 1458.004673721408 0.005300296645673794 5.236532442659824e-07 1040702.7880513129 102.81828126064153 15707 1492 506098 TNT_20190228 6635282.033174076 1736.176533536246 0.015449014485111247 4.04981733932356e-06 582053.0912836083 152.5798751602544 16975 2510 1224257 GTO_20211202 37558896.7455297 657.0903451467102 0.05673932479332785 9.922393438596488e-07 10414316.156267475 182.12226295045593 14041 None 649191 APPC_20190801 5079059.115374959 504.50201041740115 0.04680333051656643 4.6481807060098806e-06 180172.3429423737 17.89346183227081 25365 3338 1400807 HC_20200223 83193947.79256108 8618.603757219582 1.8620738356423763 0.0001929020660076556 37807781.22839328 3916.7077967166233 12778 844 931143 HARD_20210314 71871878.25095294 1517.8470889414311 2.1869092232340317 3.564314450629528e-05 36252742.40689979 590.8620818050058 23969 None None ETC_20190426 594574606.7772988 114543.27400621593 5.412036864522761 0.001042069526843361 441916294.011039 85089.49863649222 227733 24418 713652 ZRX_20190929 125976692.29623076 15378.615159257562 0.2096804881609246 2.5596762980961367e-05 88052278.30043879 10748.989175665229 151129 15897 146664 APPC_20210131 4669825.400963324 136.4948934539119 0.04170024631978247 1.2204559192802962e-06 1601568.2497921323 46.8736667788678 24277 3113 1221759 XVG_20191108 63564307.38603809 6894.795396663497 0.003963394688519088 4.299078614606961e-07 1579885.2286676096 171.3695287469889 300535 52447 272884 FTT_20200719 290553923.7961385 31687.282300844177 2.9258869676130215 0.00031916993211088084 3030351.9234292586 330.56547582972644 15632 None 11932 DNT_20190520 9371317.588149142 1145.4877597857983 0.016088248343561817 1.9681915466962125e-06 774919.5350441596 94.80150018034894 60855 6404 1189433 ATM_20210219 0.0 0.0 9.269372370458424 0.00017932457432628406 5983506.638698385 115.75646527943047 None None 230170 TNB_20210221 10496632.731431505 187.13406406049674 0.0030574862011848113 5.4381168931672486e-08 825228.5839064451 14.67770975099444 15680 1434 3054806 GRS_20190625 31139288.230212048 2820.941804739731 0.4277647398252769 3.873021190349054e-05 1114325.508092162 100.89205359820534 38576 107029 12971590 MBL_20210108 5570115.766209632 142.30321184207008 0.0015855953007613305 4.021322309966474e-08 5116999.696065009 129.7752650250521 None None 990117 WABI_20200913 8975565.953148164 860.7608642395484 0.15296673008418493 1.4649323917971797e-05 2109371.634313348 202.01038694774712 41712 7633 1644461 RLC_20191213 42216422.20610587 5857.65428600342 0.6019743435693333 8.362008497401486e-05 1011493.5122384452 140.5062763016274 27332 3489 443445 DOCK_20201228 9648962.635334132 364.4681851632243 0.017050331639100143 6.483432509373872e-07 11811360.51134208 449.13002479998426 43075 14868 287642 RVN_20191011 174469299.58429644 20376.03745759033 0.0378879967478553 4.424888749864889e-06 64749507.92627561 7562.008915092156 28117 7069 266417 ARDR_20190806 67753666.32858098 5736.117173090799 0.06778562114588386 5.74294863011124e-06 2742446.268707382 232.34614916533977 67502 6553 897983 MANA_20210828 1240951606.3811283 25299.035921720497 0.9341402345156226 1.9042887522780503e-05 195812603.41660848 3991.731909865552 162516 36022 19080 REQ_20190725 10103278.931818705 1027.7918484839893 0.013825865926881627 1.4081401331745213e-06 203547.00996067224 20.730905046317293 41521 29687 592890 BCH_20210219 13134112760.200792 254107.9811817192 705.1784914407276 0.013639697950085402 6440725280.379201 124577.74658493738 None 454155 297431 RDN_20190430 13635535.770534808 2618.7170865711864 0.2694982747586998 5.1758333833439755e-05 429559.4779085052 82.4987947652484 25674 4455 1332555 BLZ_20210206 42018465.5161197 1108.6372125380512 0.16322722436885137 4.2772672461773514e-06 22793685.655607 597.2942654105148 45759 None 375643 EOS_20190903 3378408544.8024993 326939.2557006032 3.319415568433134 0.0003210075365202537 2169162756.646501 209771.14147574455 None 68087 84416 CLOAK_20190131 5907673.346622393 1706.6594537412013 1.1252254128253192 0.00032513206011375886 100616.19424169789 29.072886322811684 17977 1382 954535 VIBE_20201130 3059164.285518939 168.4185408 0.01632634788246732 9e-07 95813.14785494938 5.28175889 18552 None 1913666 MITH_20190826 11493885.400245482 1138.5160773616954 0.022550977885780487 2.233792976207968e-06 4121623.626088653 408.26849962613056 81 2081 648556 SNM_20200421 2816790.941762657 411.34539872 0.006432054312188314 9.4e-07 84896.1506639351 12.40698193 29848 9665 7419106 FIO_20210117 15666297.657189196 431.3786874939107 0.07247354507076868 2.00226025258016e-06 1655423.112087992 45.735142323998666 55425 162 523991 ZRX_20200317 86566298.5913488 17151.19664186998 0.1375784273177967 2.735192266859065e-05 40471983.57225675 8046.2219731279165 152856 15968 132419 MDA_20210203 13652689.176493509 383.3136220141112 0.6942381105138562 1.95280355165362e-05 863593.4880394987 24.29178699769482 None 370 2554978 BCPT_20190302 2929287.7546136705 766.8274359718323 0.03494804798975748 9.140488657222744e-06 401509.88477369846 105.01291942292166 9882 1320 2438592 AUCTION_20220115 146513988.66977894 3399.291132751345 20.340059338633214 0.0004717452814892633 3658545.101376249 84.85232810564055 86167 None 86380 BAT_20200701 370600466.4007115 40510.72329597184 0.25164956022623186 2.7530688401950453e-05 69756643.50736201 7631.439588611435 119071 41270 21649 OMG_20191019 108221758.81723751 13602.452121893557 0.7717731266622443 9.696566679712383e-05 52566972.04384888 6604.5205768978385 286408 41724 None SRM_20201115 51814367.39212185 3219.801395214542 1.0360816981715042 6.44086648686528e-05 30318653.57656885 1884.7780063370615 27207 None 63040 VIA_20200229 4364341.36875226 500.8948272589261 0.18840446097166497 2.1623152718732754e-05 91014.86576454707 10.44576297159834 39612 2186 2490082 CTK_20210828 136435221.23444697 2781.8538500146237 2.4390287147009015 4.9730016789574945e-05 34219905.35512705 697.7189147430026 84773 None 88969 EPS_20211125 228762098.77834806 4000.2196138450527 0.4741147349035051 8.28887175265711e-06 11127639.316603903 194.54273072514218 27640 None 69915 AMB_20201124 2196508.5691638384 119.93630775923378 0.015220951201483405 8.293686427203744e-07 486944.9431056113 26.532958498920337 20141 5489 530514 CHR_20210729 192592753.96388537 4816.379926889531 0.3408038587884552 8.518966531102827e-06 157180706.10793456 3928.996518492366 75693 None 109219 ADX_20190531 15315800.852752792 1842.6876164113266 0.16651846179155372 2.0040109677561115e-05 1790007.416696709 215.4232303632138 54379 3892 956915 SRM_20201014 66831654.66586695 5849.715071895175 1.3360108260592374 0.00011692550406884166 21400946.718045 1872.9762018012898 26344 None 73980 BLZ_20190124 8537867.316595899 2403.262075500949 0.042154519945878995 1.1865768738283883e-05 610215.0216920375 171.76498124805343 34873 None 750261 BCPT_20190627 6916824.625249358 532.8977584171522 0.05953062849031065 4.57023981246057e-06 4133861.90180556 317.3616795582927 10971 2810 1175613 SC_20200301 98514350.70022137 11487.552635510216 0.0022569516027918595 2.634557779546301e-07 4214793.565041705 491.99624671731857 107922 30200 227333 THETA_20190807 123894384.86966 10827.26287382604 0.12376331472399504 1.0807810935030472e-05 2539229.694784646 221.74191538946297 None 4023 242693 KMD_20190207 66079056.9322669 19395.97023951828 0.5915049284873813 0.0001736094856454424 450673.21042202954 132.27471232679326 94882 8248 249846 TRX_20210210 3307719410.6380315 71011.67136365951 0.04626203218045289 9.928651835556317e-07 3702271397.4244704 79457.30434491749 584448 81975 29522 PERP_20210711 362081838.24944574 10737.565996044517 8.370646833608014 0.000248346307491522 15951664.162502421 473.2653248727219 23028 None 159386 YFI_20210509 1948683316.3174007 33230.81240812053 54258.80332500195 0.9236720525117303 436784409.903077 7435.577780507299 112289 5017 19708 SAND_20201229 24405158.734158564 899.2869401573398 0.039253340513246436 1.4461810100387852e-06 5227086.105832172 192.57756321506204 None None 75408 SHIB_20210828 3707816357.479747 75600.73649514494 7.460442088594149e-06 1.5208461675669328e-10 292903845.9656399 5970.982500936506 838987 211938 8911 DASH_20190510 990623544.540662 160276.22251515352 112.39531534036423 0.018204230639951174 313746137.3367024 50816.23757338192 319891 25465 97874 FIL_20211207 5196635363.092365 102955.97431743414 38.75224661793949 0.0007678419146625752 822263419.5716373 16292.43136960747 126387 None 35649 DODO_20210813 218993772.411197 4926.199330929909 1.558263257338362 3.505050686408941e-05 73304499.14621174 1648.861216737923 100276 1053 29473 WABI_20210729 9211380.122546691 230.29812313696115 0.1558857057019085 3.896625801928536e-06 757321.6992115318 18.930531572606455 None 7894 684219 DIA_20211120 100511669.04154876 1729.0531440229358 1.7779123284792568 3.0566933735715434e-05 8327198.183239861 143.1661792282985 37960 436 327673 ONG_20210711 0.0 0.0 0.740705283368814 2.197340526417915e-05 6554598.185944199 194.44554469566424 141405 19634 137199 CKB_20210201 126260366.42117813 3819.623203156019 0.005308131515759159 1.6054295634297103e-07 8795478.384243159 266.01678915921616 None 591 367403 POWR_20200106 15656720.270913167 2131.8413746564142 0.036524626607349626 4.972812638512039e-06 450982.739283781 61.40111135892874 82829 12861 288049 BTS_20210210 139430517.62120757 2993.7074633003426 0.05144665480169041 1.1046092137452618e-06 69412793.53097379 1490.3595108693412 13285 6940 136810 NULS_20200315 10649130.742519796 2061.146165277262 0.1258982606593221 2.4299516954549337e-05 3150257.9040540946 608.0286173127319 22716 5188 619302 REP_20200309 121494377.10400958 15039.231343539435 10.994668542321046 0.0013657409325737709 27977283.74704886 3475.295453291509 130391 10111 288679 ALPHA_20201030 5430379.934359976 403.4042241296927 0.031179109616839566 2.318707830365992e-06 6542340.9619713565 486.5365754143953 16193 None 296232 RVN_20190818 136625034.93755206 13367.288592609113 0.032385180025377276 3.168508700558331e-06 12369631.012788234 1210.222807345938 27367 6898 259754 IOTX_20191118 20209588.239466693 2377.647178767973 0.004837730067167974 5.685031739842632e-07 2570066.4727130244 302.01994050966607 22556 1781 438791 OST_20200207 9145015.582836913 938.981824398168 0.01324449917218091 1.360091391506474e-06 1250720.6609121112 128.43780515754594 17804 755 561274 UNFI_20210427 55044268.32999156 1021.4638968385209 22.627974713892353 0.00041976639132938 33763271.551411636 626.3347399760314 None None 90822 BNB_20210902 75616163844.14787 1554753.0200455564 490.1903097419243 0.010062723598514133 2082474521.4613652 42749.44872216324 None 611308 154 DNT_20190126 7288511.515885329 2043.8808968912379 0.012543473545327973 3.517503663687674e-06 687399.7565888934 192.7640819332733 60138 6538 537326 SYS_20190419 33318289.88127485 6319.1020229448795 0.06039807460320649 1.1453209243754912e-05 218177.99462687326 41.372812647768626 62426 4612 1041442 QLC_20201111 4178095.4643576 273.15705622371866 0.017312040538908214 1.1332840727903324e-06 1462454.83606001 95.7354951403394 27488 5611 940522 AMB_20200109 2039673.4149263443 253.4386430153331 0.014033946217581474 1.7489341525298298e-06 1408301.4214155485 175.5049089388929 19143 5530 724593 TNT_20190714 22671083.735630173 1991.8995322984392 0.05279331563463115 4.635860465488974e-06 1112319.6997296214 97.67446615113789 17594 2542 678101 WAN_20210513 338175781.58787394 6559.5217910304855 1.8970188671983936 3.691983367093332e-05 24868281.920413528 483.98719067011035 120733 16472 177297 MANA_20210105 103613079.41636641 3311.7721827226396 0.07779424897008684 2.4865280635046682e-06 37455354.23338027 1197.180905565653 55871 7751 76796 MDT_20211225 77419544.8161512 1522.626243685771 0.12785318656493627 2.5148087927719034e-06 126747315.90585075 2493.056865175447 42418 821 368604 UNI_20210703 9462758032.177608 279812.4679581479 18.232300860715522 0.0005384913645017407 220023562.3764466 6498.400242062309 None 47918 1526 APPC_20190819 3956547.5136925513 383.38889060944007 0.036293148128344874 3.5184057779594644e-06 346856.8887953678 33.6257212338532 25284 3325 1230496 BCPT_20210206 2615106.6501720045 68.5272329005909 0.02251322882494859 5.899450697087537e-07 631492.5167304876 16.54786613239048 11504 3249 1647629 ARK_20210804 180388171.3526291 4694.885879710784 1.1357698335491897 2.957035084837323e-05 5232321.606674451 136.22617989191954 73133 23425 125650 LINK_20190712 1007003259.4636506 88683.3702696471 2.796385211797692 0.00024574407456309745 140648315.36067578 12360.06039201887 26580 9568 152412 WIN_20190904 63586185.982847966 5983.210469024697 0.0003026209187176253 2.8516151983938344e-08 102013030.47636165 9612.749487818655 17934 1404 68914 1INCH_20210718 363344856.3592715 11495.491485282673 2.0115186235134925 6.376395922207705e-05 29201395.07385771 925.6670770787595 239435 None 4419 ZIL_20210710 920639390.0769409 27097.058154252096 0.07539342862196399 2.2184347185832493e-06 65613168.34986958 1930.6527548104295 307453 34889 36438 MANA_20200806 70677677.2597387 6033.354379489005 0.053469419188176465 4.562576342807945e-06 25548445.849152964 2180.063602647683 49946 7098 78107 CHZ_20210723 1239241494.904105 38281.79328226894 0.23183658332691284 7.161054718435885e-06 178918651.10878184 5526.505922199691 365349 None 41451 SNT_20200127 37519483.52081253 4371.300298116992 0.010538411708912562 1.2262913320656327e-06 27319723.94696121 3179.031299588639 110381 5616 244920 FLM_20211216 0.0 0.0 0.3592025351575651 7.360570874051938e-06 8287504.228067791 169.82274975576084 None None 30888 GTC_20211230 191034796.26078883 4111.063335605406 13.469643109599343 0.00028948517348661377 68895500.12029488 1480.6796024578432 84278 1873 21952 KAVA_20210318 370808016.578822 6303.803391443783 6.33827078143305 0.00010753352248209938 265014157.8394264 4496.164156252309 75739 None 80710 BRD_20200605 7228994.982713498 740.6512594212604 0.11407972924166872 1.1670396589511978e-05 644782.4739363169 65.9614747933234 None None None OAX_20211011 11471166.189371571 208.87856511877953 0.2007009428728986 3.6587498542256394e-06 433416.4119197623 7.901120000889451 None None 3028474 ONT_20210519 1536321528.9432805 36005.91861385761 1.8765507922738385 4.386424328524839e-05 725667095.4147934 16962.41751005538 135990 19001 129307 RLC_20190512 44634420.54548977 6128.42608470893 0.6379788445059085 8.759659078283026e-05 1903095.2443914018 261.3012277433912 24804 3300 1063788 YOYO_20210704 2084497.1620699898 60.23727747082363 0.011826905892173951 3.408692184348075e-07 193404.98085614835 5.574222477703009 10104 None 1096916 PIVX_20210206 39005816.202465534 1022.1229987726083 0.5984541424618618 1.5682116214308135e-05 2267790.703573845 59.42603591458814 65148 8856 328598 MBOX_20211028 131186367.18689138 2241.2760988243294 3.7140537136673357 6.341859356432496e-05 40990423.98567867 699.9239211891357 None 7276 7243 SNX_20201226 1006916120.4968101 40773.908404967864 7.388930042302713 0.0002992457388559067 139236091.32918873 5638.949995015341 48740 2749 47105 DLT_20201018 2811179.0503069 247.79297653464445 0.03434387013609578 3.0217406366905447e-06 20232.722836808127 1.780173304423929 None 2541 None STX_20200105 44033128.794350736 5995.081050229361 0.09428426386628351 1.282469339176755e-05 113356.7230957946 15.418959198332715 34971 None 32309 HOT_20190419 256721564.43601298 48687.05380130061 0.0014332992812899873 2.717388785574306e-07 16517997.553426445 3131.6433279326734 20819 5945 231377 GXS_20200801 33563472.43724171 2961.402733620868 0.5222434556073281 4.610946877216026e-05 2785692.582348347 245.95196695237863 None None 752968 CDT_20200331 2002764.7335977918 311.5703029413332 0.002965409525698865 4.618735802301523e-07 39979.819829352266 6.227005869345325 19151 291 259848 1INCH_20210814 552763726.1259212 11597.377975927717 3.0633171962969725 6.42133667185204e-05 130999768.62713158 2746.021924554179 249025 None 4437 AKRO_20201231 20744596.44333961 718.3768309117207 0.008847114208624236 3.067844579985223e-07 3910419.227417885 135.59854828831783 24996 None 212784 BAND_20200531 32737150.24539423 3381.178817740388 1.6011616102458028 0.0001658474206091638 9938480.874050634 1029.422268924978 14573 1158 516987 UMA_20210821 785761259.5491728 15992.835314176298 12.58562241890912 0.00025607474831768436 35645448.05008956 725.2640222531762 None None 226348 REN_20190923 40625465.01310386 4041.2968302865816 0.04926474119029603 4.900957622176673e-06 4042286.7245514323 402.1349844747835 9768 877 293718 MTH_20211002 14347940.079508761 298.2232116216711 0.0412950340870623 8.580873148077012e-07 447562.95080335805 9.300103490714559 21940 2059 1356552 WABI_20190930 7056427.226384456 875.4165268489465 0.11868555738063442 1.4727713731160365e-05 719343.3555650028 89.2634558828158 36287 7923 1396317 BTG_20210508 2372510721.61377 41404.82380386934 128.76485491903463 0.0022465130493745564 221659107.9963676 3867.204905714945 95831 None 155846 BAND_20200217 5561020.658835166 557.8494670033151 0.31185480190171727 3.134711758406352e-05 1100412.2196343543 110.61157637934863 7782 1008 671457 LINK_20190821 861228812.140099 80035.82200786259 2.361385295940746 0.00021965036777725827 67151306.15538724 6246.25262091248 31675 10397 91625 SNGLS_20200501 6130490.317110931 708.4439596274258 0.009257303503086534 1.0739699873544836e-06 730141.2193136874 84.70606541222938 8844 2125 2345766 DASH_20210602 1943928998.9666946 52994.210227218835 191.2849967340171 0.005214695256680539 839895802.1212261 22896.728599774044 395103 41010 52326 ARK_20200707 39227754.899165146 4200.391324844123 0.26056931695396696 2.7900987483667973e-05 1113891.8607712071 119.27222755481813 62136 21885 108686 GTO_20200730 9032130.240378976 814.3493580394436 0.013629710544053224 1.2288735587749297e-06 14559239.434066135 1312.6811694620592 16613 None 1486058 BQX_20200907 25674514.886394735 2493.51018368718 0.11501510277988247 1.118033113611205e-05 481802.78900382144 46.83484684332475 15036 57 203989 GO_20190816 8300323.136316786 806.7103137813011 0.011050507196855698 1.0726115067956243e-06 464279.7329059556 45.06506126964247 10185 685 906372 IOST_20190909 83227761.97633368 8010.5471330980445 0.006931890207272651 6.66966833683285e-07 14907641.685570393 1434.3710410009314 195824 50762 94352 GRT_20210115 407302298.68955016 10428.703378333757 0.3337795884479543 8.508490667353652e-06 175630396.7636033 4477.055049157834 42724 2759 38944 APPC_20190806 4620272.833991157 391.13186360495445 0.04251742262143548 3.6021706354823386e-06 236319.80640872256 20.02153975342805 25351 3337 1400807 YFII_20210210 95898079.43272972 2058.470248695185 2390.4337295103173 0.0513028695002618 461067357.11904454 9895.308186583572 13891 None 213676 WING_20210202 17171579.009493317 514.2917915179889 19.028700846617223 0.0005696999273960212 13698381.207821371 410.11558500202 None None 427230 AST_20190708 9540185.06571482 834.2264014087414 0.055421657315192545 4.844142752146645e-06 1229863.8300262464 107.49653198688827 32017 3607 257533 BEAM_20200330 14399515.629516885 2435.140117683909 0.2468200959372823 4.174583943001138e-05 82903721.75554 14021.894949090918 14949 1481 244013 ZIL_20200422 43105589.41591622 6294.377823048404 0.004107741287217685 6.000680838582861e-07 10116553.332118226 1477.8488587255174 69585 10549 194676 SNT_20210725 261782437.58651078 7662.057553755695 0.06747270541181649 1.9748407244273214e-06 35339198.06159162 1034.3336179374835 133477 6027 134549 FTM_20200520 10326948.075317975 1058.960288363117 0.004939169952740403 5.059458949314454e-07 1939164.2522716 198.6390835752211 21790 2355 335778 ZEC_20200612 461832555.7950241 49791.827184563226 49.65800227428274 0.005339790341413048 397180547.964689 42709.347067659946 71952 15827 168070 FLM_20211002 0.0 0.0 0.47951978121583927 9.955297924922002e-06 13452612.905646905 279.2893527870625 None None 94802 ZEC_20201228 729212064.1419764 27510.81134396002 66.95257726660883 0.002545888990459584 607317366.078007 23093.39922578345 71799 16492 168324 MATIC_20201106 64027926.91964577 4120.5493131260555 0.013508324962605008 8.669949521979005e-07 10548826.8311661 677.0476457702175 57317 2440 54287 POA_20210104 5115783.964969273 152.89039458050675 0.018432136624091898 5.599460108692916e-07 180735.96179958113 5.490539859498577 18162 None 255706 LTC_20190726 5865631681.481752 592139.8603519008 93.28917512702175 0.009424622213698027 3224118406.2072434 325719.44075354957 451054 206792 151076 UNFI_20210220 65553267.9286893 1173.5894158656388 26.86723745327808 0.00048057792744315 80216520.20792551 1434.8437979626697 14830 None 96925 NULS_20190318 22881924.01256248 5745.939528850378 0.5719467837530072 0.00014363153529570446 4472338.017001951 1123.1268257655606 19795 None 738002 BAND_20210204 268728587.7248287 7172.901023657273 11.93831600571877 0.0003182760716778061 245010193.25099283 6531.983387907575 54719 3650 278216 PPT_20210124 30521312.522685647 953.7799964445879 0.8432073451301281 2.6310620370638958e-05 1920935.2111314782 59.93899055620035 23524 None 734972 NCASH_20190507 5369310.231456345 937.6824238852422 0.001848556607601728 3.2314963113902915e-07 624945.7622145666 109.24793523285332 60721 59356 935849 GVT_20190616 14603483.996392813 1656.0195579782942 3.295886448950288 0.00037365247413920195 1046570.4854030743 118.6490060531277 21326 5774 171234 GO_20201124 7582256.713098256 414.01517272379823 0.0072261449582398845 3.9374267460577694e-07 338845.73762006796 18.463237006774676 12113 677 694072 SUSD_20210703 139366313.51976192 4123.235696097586 1.020775818400178 3.0148761700361957e-05 89642083.83685033 2647.5919346882106 138908 6994 47664 NAS_20191213 18732554.41378696 2599.068154981529 0.4108145637736054 5.707120069606878e-05 4693208.347304669 651.9901169937516 23920 5047 1053649 XZC_20190104 35020057.30445939 9287.403994746992 5.395121446256612 0.001430583771555558 343294.7190599099 91.02887837466349 58948 3918 314412 AGIX_20210814 191481261.0570525 5830.0 0.2878365435337913 6.0327500195462805e-06 2687808.7077817875 56.33363239891621 56521 None 210064 SNT_20190615 103804796.64264826 11934.584053060766 0.02935523505132969 3.380948386818705e-06 22258539.194351602 2563.5963074557353 111535 5745 342560 KAVA_20200316 7733462.640233256 1431.489109991814 0.4143134799908685 7.717904476771968e-05 1662119.08186475 309.6224699986783 None None 337432 REN_20210110 400342286.34309065 9893.38199321484 0.4476091150497484 1.1111524257285988e-05 151705576.2722264 3765.964843068584 None 990 104896 ADA_20201201 5342764712.853764 271751.8397609282 0.17050059426844394 8.68514048818962e-06 1526479658.4557934 77757.4432683722 166976 91170 47905 LEND_20200502 54210952.79671432 6117.560040865486 0.04578926403548178 5.184744600918226e-06 2514410.0974253546 284.70809592000484 44364 5723 91330 DGB_20211230 494090209.6014483 10653.227736993866 0.03324918401591753 7.14483817718699e-07 15852725.153484996 340.6554453632551 237567 44375 105962 PPT_20190915 14429010.421191918 1394.4371353735264 0.398295483088589 3.849176043663761e-05 1063714.8219795667 102.79869553888783 24000 None 732961 NAS_20190703 67545698.85602812 6251.275911861267 1.4880208891841804 0.0001375866125792551 13163075.44289341 1217.0951190784776 24341 5139 449898 REN_20190225 11761617.951110233 3122.5390428531414 0.01548000269568379 4.132283087666844e-06 209811.84592177908 56.00786766894241 5507 802 4072973 WAN_20210707 108384347.50178498 3173.1913600544517 0.6163292032395682 1.8043804064753798e-05 3130957.8862712537 91.66268665824478 123020 16633 187166 COS_20210711 39761866.19517296 1181.765114300196 0.013222030256792939 3.924379054162905e-07 5324223.749028839 158.02620138182522 26919 None 334513 BRD_20191012 16410149.424852071 1982.4888119182451 0.2687592923836109 3.250478813269721e-05 1334623.7822326683 161.41456131091283 170 None None VIA_20200315 2125515.9387032483 411.21173868481424 0.0915268161733794 1.7665513484886045e-05 49902.53335113274 9.631645813774206 39538 2182 2317316 ALGO_20201030 206313721.75402412 15316.41503744924 0.2564678918352249 1.907283807471577e-05 72216308.55755335 5370.5356628300915 29429 1418 218974 BNB_20190923 3172781422.767618 315619.5806812775 20.386317625786912 0.0020295231432614297 107935117.58008869 10745.286280752629 1038003 56472 1307 UTK_20210819 212430432.07675713 4715.389125542425 0.4686638727167284 1.0404477355316632e-05 19370975.883833114 430.04142556459595 78662 4047 188834 DGB_20211002 721088033.2411602 14974.753548993931 0.04896863220590547 1.016754228984207e-06 21636357.685957953 449.24387686613187 228128 42194 152641 ZEN_20211225 836701629.163177 16445.627581531397 70.37010112438978 0.0013838556436949708 82907052.59870765 1630.399712486306 130672 9049 2220353 MANA_20200109 45210372.977584 5619.097183320488 0.03409778737888864 4.249324028185995e-06 19553167.131378356 2436.7488129140534 45955 6431 82411 IOTX_20210314 264151277.58335695 4300.9141989481805 0.04442651979428818 7.241995550832994e-07 138272421.2743941 2253.9876279051036 None 2374 431436 STX_20210617 972499491.7174109 25425.550980915366 0.9293672150637112 2.4266163073838637e-05 21094498.14376137 550.7860871573876 65947 None 53312 UNI_20210203 5508085635.714836 154645.30306783234 19.072254090511567 0.0005370238982258102 1417633194.841543 39916.77653491742 188488 None 5312 KMD_20181231 93283756.78054641 24557.152798307954 0.836733285604727 0.00022020474071066633 1774106.2800882084 466.89503109422094 94673 8207 230691 BCD_20210207 136593413.55325985 3472.2935111696265 0.7303625518414377 1.8566084459997134e-05 6472482.405774773 164.53288124984343 28199 None 1670747 BAND_20210120 217923905.54112402 6015.349785569447 9.540037043468665 0.00026469305918636125 185824976.9370438 5155.806145676913 45754 3066 319982 LRC_20190613 63226965.78048467 7778.629546520498 0.06589732137043558 8.093392030536467e-06 29582113.57590865 3633.22267555928 35194 2458 858325 CFX_20211120 317203382.0933342 5456.694832880241 0.2770314094955242 4.749297270723849e-06 8168206.575779407 140.0319237002781 46708 2130 181589 ELF_20210708 103344831.54266034 3041.578871411486 0.2240163805447183 6.59433279050123e-06 22332666.439545322 657.4029731375921 49348 33393 490467 ARDR_20191012 55451664.779452 6706.538774066776 0.05550720001059861 6.713255419680443e-06 3948026.044680378 477.48953714886284 66520 6511 1164361 BTS_20210603 158469107.22267002 4213.7222837472045 0.058471456572838046 1.5547666282862613e-06 14347174.162800081 381.493961429628 5960 7161 112571 CND_20200317 4919853.649746079 974.760140714271 0.002564289093079846 5.099177160633237e-07 60387.26219537581 12.008215025787 34921 5970 433768 VITE_20210826 63357737.2386473 1292.5945404754352 0.09616733524522508 1.962534229881564e-06 6920381.869528244 141.22764520997063 None 2452 442806 CFX_20210828 293869010.86348784 5991.859227213841 0.33793749136781936 6.889014518451691e-06 24084676.017313704 490.97743515793684 38001 1271 203830 ARK_20190401 101285475.05463417 24681.769392901668 0.7201692982930279 0.00017545406673787918 4014978.834497433 978.164948226459 63539 21743 183985 VITE_20200530 6664160.179093931 706.9563514792269 0.013389196809861049 1.4206441378821837e-06 4400155.007004441 466.87299509033573 None None 618557 ZEC_20190813 407288251.3642632 35786.841206438155 56.784061193663284 0.004989373225565067 136140586.82594556 11962.092610908381 102 15352 186923 SYS_20190719 18610150.711447366 1734.0167750988987 0.033334888293209713 3.1106846893911716e-06 482804.96319853014 45.053518517104564 61220 4605 748817 LUN_20200324 1544955.483391087 238.42455545535492 0.571495386989759 8.819576683772131e-05 2376570.065897018 366.76309936534517 29592 2148 2364106 VET_20200324 178725117.46171424 27742.63463735493 0.002859770314316779 4.411603837023606e-07 93738412.33539994 14460.487874325963 118621 60975 265359 CVC_20200927 17864280.215644084 1664.099308718609 0.026695087195722833 2.4853241494551985e-06 1223430.5540814323 113.90191307287114 85179 7963 180853 BCPT_20200410 1845609.2412210421 253.23511862714304 0.015826047149779292 2.1705170049900825e-06 311374.02110408695 42.7044480104425 10643 3167 1858149 WBTC_20201018 1194666420.2754526 105137.70635113468 11370.350568653506 1.0004987410469985 40163752.810450844 3534.084888583831 None None 149186 FOR_20210421 54662911.72317569 967.5618712894109 0.09693729044755202 1.7192361622670357e-06 18900620.700184476 335.212903589783 26946 None 121436 KNC_20190213 20759334.68709739 5710.965304869828 0.13252569021758298 3.644923144277462e-05 2928499.7501992104 805.4405526948664 92733 6548 188819 COMP_20210523 51235.36755586783 1.3437640159161552 7.935184147014286e-07 2.11296e-11 318.08513012187086 0.008469887328263136 None None 2394186 ADA_20210207 19854979470.033638 506505.8750497862 0.62635697398072 1.5922224451013393e-05 6225004469.82153 158241.90117520894 195134 140041 26016 AMB_20200324 1184549.3009064542 183.87185266235252 0.008193016808245315 1.2705249906550605e-06 128908.39478209954 19.990357753331967 19067 5494 780586 NAV_20191030 6403911.856173019 680.5287213958909 0.09626834417202737 1.023021157093817e-05 90352.23832567196 9.601520852251578 50865 14146 427843 STX_20210115 464651104.14037126 11896.86361060268 0.5088294106747769 1.2970654028755236e-05 14635296.180351036 373.070737227938 48433 None 83877 OMG_20210805 609111956.1142352 15277.732463899009 4.333512575512799 0.00010895523039156157 169377067.9047641 4258.558648448587 325993 5008 264742 LTO_20210620 58690425.5133784 1644.5102733408312 0.2062241525583221 5.789839556560229e-06 5588686.598201081 156.90499068159156 10246 4268 208240 STORM_20200317 6311810.906232368 1250.536644424773 0.0008370000925728638 1.6621131886500783e-07 1026980.8576736543 203.9376629915908 26067 2525 875750 WABI_20210110 5594897.900859393 138.25807733399753 0.09439404721422871 2.341563657724785e-06 1124296.5119903777 27.889596120491092 None 7472 1296084 CND_20210429 65352939.865345925 1194.993901995772 0.03495277121797507 6.383410972376022e-07 675686.8339988821 12.34004229061056 35656 6189 117159 PPT_20190530 38281463.66760551 4427.008702437812 1.0567137745242334 0.00012220225215065034 1900734.3538335676 219.80788400638602 24031 None 592908 XLM_20210219 11183167509.851748 216283.6784560108 0.4980656756957935 9.632644450444508e-06 1647389258.7951796 31860.687808463856 397157 150689 26616 MDA_20210718 10441806.560388623 330.3715426443048 0.5319906647663857 1.6832141719251454e-05 861289.836958567 27.251140963918672 None 389 1618266 REP_20190410 225744040.63601345 43624.77937948746 20.50299768949847 0.003966280369118523 10744726.61702182 2078.554506908369 124282 9846 255741 CELR_20200423 6156982.789353568 866.0927360352551 0.0016281911478727299 2.2886345251733257e-07 6874766.250221281 966.3378537163406 19355 None 1594945 TOMO_20200318 17300760.44117254 3184.815093584461 0.24202309963099825 4.49970468718176e-05 11058629.561607365 2056.025534258471 22130 1508 236393 ENJ_20200913 158478032.4377362 15191.848835367024 0.17231575043193606 1.6502383523270602e-05 4712454.091590761 451.30363626251335 65580 15870 86087 WRX_20210814 680858681.1179388 14273.547944210315 1.502054506837923 3.1481476411011226e-05 26170701.395484034 548.5102670315081 308368 None 1330 ZEC_20190908 345921952.1444103 33043.12652018003 46.97089037659365 0.004486689921624933 172825618.8733807 16508.415237199562 112 15331 175119 MTL_20190221 14924087.851692002 3754.0633040717744 0.3546879890811304 8.921960105277201e-05 9071324.484422425 2281.83636445407 32471 None 581228 NXS_20190528 21145996.62064883 2403.4562330747226 0.3549451043540717 4.0253596040865585e-05 565764.0646405374 64.16214178787591 21331 3514 737068 ICX_20190510 140283972.2134569 22697.002579541186 0.2959826525331369 4.793915525590171e-05 11343341.47922237 1837.236755732739 113607 24183 291267 ALPACA_20211028 129251307.79295003 2208.366768730579 0.8326412793833409 1.4225403434777544e-05 9530034.278324764 162.81751303134013 None None 22516 THETA_20210204 2170572320.796431 57937.6501410374 2.185671781538958 5.8269091575974337e-05 89576168.03542271 2388.063012190139 82461 5256 46280 COS_20211028 65304422.926513225 1115.7577848309077 0.018947900244329414 3.2379600886381103e-07 7311327.147510848 124.94147210692309 30782 None 291886 SNT_20200306 59728015.31509485 6595.308052762212 0.016503390427120485 1.82180977957714e-06 34845182.69859158 3846.5607956002614 110607 5615 203342 COTI_20210624 97850334.53944539 2902.3315550537645 0.146106495763275 4.335312384066803e-06 16609419.475618131 492.839292111112 121468 5321 80399 OMG_20190902 152976884.01103312 15725.331422911022 1.0906663115172046 0.00011210631534573618 50123179.290534966 5152.011100314387 288358 41297 None OST_20200903 6686443.301012067 586.0985388895012 0.009672715463657548 8.474766273332081e-07 573639.3543984698 50.25951059945554 17659 749 678146 FIDA_20220105 175142324.111965 3805.26246816466 3.5602851924724788 7.751978109438366e-05 2787817.5501472 60.700476095402685 62693 None 449205 CELR_20190509 19474708.333061572 3269.2964317479227 0.00818053462989013 1.3734628247715243e-06 3812261.2978101256 640.0558652641233 13096 None 376913 GAS_20210421 233369651.0696816 4130.5424114897905 16.762705669542157 0.000297295804653299 46557745.88405737 825.7272303357643 380314 109043 88657 NEO_20200711 740165385.3991791 79713.55497769789 10.496598010386963 0.001130507757442268 198361842.37775198 21364.026836760033 319706 99757 207094 MANA_20200719 52604770.89690231 5736.394167539156 0.03970544159237408 4.330884039279262e-06 10595557.001077985 1155.7138483521028 49330 7045 75007 FET_20190805 24173487.450658947 2207.538776071414 0.07878540033240125 7.195050498036959e-06 2893635.9091705764 264.26033759522596 16227 293 429380 ENJ_20190915 62181823.840134114 6007.010856731571 0.07100549988589368 6.860986466980249e-06 2429450.464316631 234.74838969743985 48463 13727 25046 IOTX_20200318 7536107.171005006 1388.0867260466623 0.0017369024161038133 3.229257023331933e-07 2162780.4181526788 402.1051378874284 22570 1809 487690 BAT_20190225 162420856.63986427 43120.80980834892 0.13047166988132178 3.477637873691438e-05 11377268.006015843 3032.5371134475536 92646 22948 122237 QSP_20200321 4558771.756109845 737.4186837710447 0.0063862240071118756 1.0327452275575265e-06 205950.88090277984 33.30525035243856 55289 8323 355576 NKN_20200520 10172110.896623338 1042.5935071045474 0.015503830807496458 1.5898154055678167e-06 1293996.6567877133 132.69080688881397 12296 999 285670 SNGLS_20210814 13146558.996011408 275.9139669924581 0.015219289562888153 3.1887611382915916e-07 922533.2402035727 19.329010943564196 9471 2133 None ZEC_20210120 1113365794.5812232 30745.058190107706 103.54348954810935 0.0028635390313488844 1513490450.9741924 41856.2190520414 72182 16713 132493 TROY_20210131 7917831.144394189 231.4778582581812 0.004229561659003309 1.2380002225431313e-07 2805285.3201084905 82.11120041715353 10405 None 869305 ENJ_20200329 78312567.668783 12542.934809139193 0.08584865901800748 1.3731243846665044e-05 9064508.39922646 1449.8418100370554 53948 15289 111026 MTL_20200707 20472123.15230628 2193.0968721006966 0.3169341248007257 3.393559423157342e-05 2889668.750755348 309.4101219013529 38267 None 396348 MDA_20190520 17250687.502933815 2111.0265169761306 0.9706012306424571 0.00011877584211918659 1363570.7334724257 166.86488440784353 None 361 1619229 BCPT_20201031 1753762.148498801 128.93612037 0.015049997578014679 1.11e-06 40665.46645168158 2.99924751 10418 3195 2214838 REQ_20191019 9255333.081108244 1163.1150078314352 0.012656203654823901 1.5901269221664279e-06 121558.60818515132 15.27263789111166 40630 29145 915310 TROY_20200318 1908996.3134177362 351.63837595086926 0.0016386234449937652 3.0183551583765597e-07 638135.7918100622 117.54503237697423 8756 None 356286 STRAX_20210124 55017183.93879159 1720.0661709127785 0.549755992691923 1.7154341316820976e-05 1100245.9590506833 34.3315852212733 144511 10291 214690 ADX_20190225 9700022.937688911 2575.240968960913 0.11007712938444911 2.938435277024229e-05 2926972.1726905503 781.3356266826135 54259 3939 833344 OXT_20211111 404761342.8103698 6232.641268606979 0.6882663694770241 1.0595837009870023e-05 450772937.64203745 6939.633821342446 75883 4781 207442 QTUM_20190719 299429883.40815896 27941.65517133818 3.098539243815978 0.0002904934516752896 434075993.9393003 40695.38057988794 179001 15360 354208 ALGO_20210206 662463927.2409997 17481.632723708808 0.8335071149405114 2.190435091292731e-05 570477095.5324384 14991.990187416624 44020 3165 246299 BTS_20210614 134824621.62970632 3453.714518899649 0.04974718509326546 1.2743412394130766e-06 11918799.090719707 305.31611340637176 6065 7174 112571 ANKR_20210310 285528047.0714066 5224.271596697496 0.040898577708661475 7.469598670282319e-07 116102399.4601765 2120.4608502575334 50270 None 5506 XLM_20190920 1641026327.5940576 160249.4686453449 0.08173303730478572 7.975018972835258e-06 564778380.3178754 55107.68285395033 276228 104073 63333 ZEC_20190922 356442047.8442631 35692.637330817044 47.688959595128274 0.004775406671076176 258924092.43300208 25927.758726638593 123 15345 166171 SFP_20210814 134518407.55213577 2820.0491420944945 1.243180256841088 2.6055745482078317e-05 12699495.852255885 266.16802338696243 376117 None 25766 BNT_20190726 34674935.89221289 3501.154674250367 0.47774994249947306 4.831296726604083e-05 3214332.648372569 325.05278223693676 785 5134 155271 BTS_20210626 112502766.49038567 3538.2953302721885 0.04168489366930937 1.3104213602816983e-06 10274804.232489236 323.0024537373318 6158 7176 121525 CTXC_20210408 2638522.9757522354 46.84306975488883 0.261240485341359 4.6452946515907e-06 5461194.721576186 97.10921566496137 18912 20411 360598 BLZ_20200730 17909329.232756224 1612.8855492533007 0.07550668088036225 6.803256826685668e-06 4225824.476307242 380.75265501823634 37767 None 455945 REEF_20210731 192241046.5447418 4605.042619562159 0.015183648417551336 3.634936177473951e-07 26510010.407847583 634.6445415932284 186956 12538 58491 ZEN_20200610 61452404.65358941 6286.554959546384 6.668517880996047 0.0006825693575680746 4908468.6538194455 502.4160323883155 62582 5920 57737 ARPA_20200404 0.0 0.0 0.007083271649797633 1.0526177987854105e-06 2082664.4185081967 309.4967614127049 16731 None 1878146 LOOM_20200129 15445917.161500236 1653.4361958783202 0.018454444825196748 1.9736536469889254e-06 4221762.741204932 451.50626365766306 21306 None 255178 IOST_20200113 63860685.899913274 7833.655310202698 0.005314769723333134 6.519351509431732e-07 37275723.45069717 4572.419062232813 193042 52332 87170 WABI_20210430 30680024.47083886 572.5285175058674 0.5159149016143869 9.624818147980163e-06 5204945.0440946305 97.10254416548221 44323 7720 293001 PAXG_20210108 93309168.89561507 2382.0611850514474 1959.3156503498487 0.04963630225865696 9019598.581185615 228.4979050453371 14056 None 75931 FTM_20201208 55231586.81604279 2875.5980190613413 0.02172658832384244 1.1314883628799247e-06 4878396.900161115 254.05964524970528 28040 2818 121484 XVG_20190909 71575025.55227688 6888.988747555748 0.004494046386870903 4.32545217431115e-07 955738.2185453355 91.98836860154422 302501 52735 272149 MANA_20201014 102035938.89667392 8931.402513642113 0.0767321064932138 6.717920591881817e-06 23699347.293009225 2074.8854745431217 52900 7401 79376 SOL_20210429 12162250490.154093 222190.67562538342 45.039620110247284 0.0008225394558973417 1328456957.4543355 24261.045281749994 186939 11490 23689 NULS_20200411 18167287.28897753 2649.2980373781993 0.1914464244168626 2.7913764752042087e-05 8804103.078462597 1283.6785170237335 22796 5185 528791 SKY_20191019 11665759.32021819 1465.811971397218 0.7269445952201917 9.134236783958891e-05 298931.5477954845 37.5614807196167 16347 3805 1313874 SYS_20210408 225877290.68965483 4010.1169408252936 0.36750457206317394 6.536444820998249e-06 19111673.29476351 339.9206633725725 63325 4963 301020 WABI_20200129 7075047.300429594 757.361260698699 0.11889288551492705 1.271527696011689e-05 508291.11551265005 54.3603789420913 36712 7841 2320940 STORM_20191220 8488011.322093446 1188.6434684673172 0.0012068791067889428 1.6889721347446433e-07 1423217.3151058215 199.17275668938953 26025 2530 2709978 XVS_20210422 753422029.0375001 13904.876445921578 77.68594482965744 0.0014362870198437797 287024873.1847766 5306.624005559121 59936 None 10756 CKB_20210616 489004968.7977141 12108.53503895343 0.01827493882656345 4.527884435547454e-07 26883799.620511215 666.085610602176 None 4755 116696 MANA_20200224 76707581.94049941 7710.035072615889 0.05786366354119602 5.815044352292812e-06 43007621.17250213 4322.077264026929 47741 6720 66224 WRX_20210519 855977777.6982679 20081.906751850056 1.9824235678074376 4.633901199516594e-05 36575404.56747906 854.9475190385195 199312 None 1865 COS_20190902 26582499.971356075 2729.4935385766294 0.020281817110912773 2.0825388437686976e-06 1118442.2634356753 114.84175433492764 9312 None 256445 CELR_20200914 26920195.2244279 2608.094672149596 0.006819929943947025 6.6049584221462e-07 4976866.594375023 481.9990410252037 24322 None 306281 AERGO_20210427 94093677.88607533 1746.5887783988903 0.3590932522311754 6.661456915420187e-06 2087260.117720949 38.72028577279361 20118 None 413577 ZRX_20210617 727531829.1172421 19020.910260285236 0.8614736715259029 2.252330155260824e-05 132440130.04046163 3462.658332069843 219410 19427 58328 VITE_20210202 13512108.147441283 404.6899998241595 0.02321600442166965 6.951219123454819e-07 1987132.5733315658 59.497722750644456 None None 688715 OST_20190528 17809088.682669573 2019.6922084408188 0.02850071272521767 3.238396638528555e-06 1962373.8065147547 222.97494100668428 18117 756 1111162 HIVE_20210718 114024449.3840807 3607.724380530769 0.3070090246450647 9.713164087232176e-06 5384677.484027469 170.36064662806027 22190 171 113471 BAT_20190627 388354434.63726795 29878.141381971713 0.30524153354621963 2.3406812821294652e-05 79635631.2180569 6106.692926650683 103040 28164 47977 CELR_20190730 28955562.27641673 3044.1259981490484 0.009256211648435918 9.728719914642121e-07 6379909.055161556 670.5588704753085 17744 None 509628 NKN_20210117 13904131.346805772 383.3609309300784 0.021336099097118963 5.894623082885938e-07 1594975.9661149632 44.06514097874195 None 1026 373477 MDA_20210408 26068626.657164063 462.17968700751504 1.3244889890689708 2.355739180186544e-05 3061089.656908511 54.44461145662009 None 375 1186502 PIVX_20210821 63230067.43367553 1286.782235555322 0.9464597840813109 1.9242963315174137e-05 1891621.0026992708 38.45952482438261 67715 9874 371211 FUEL_20190224 4623225.392928939 1123.895599001118 0.008714450597709943 2.1189623861967675e-06 4651726.5828081295 1131.090657904735 1 1510 None ADA_20190806 1761490516.5599287 149132.80816571004 0.056482892795423685 4.781918217951911e-06 118562437.32904637 10037.656553498691 154240 74871 93580 WTC_20190213 26815110.842220988 7379.79610610308 1.0128169079064964 0.00027872868019351534 2939841.897871339 809.0487488652062 54442 20412 741681 AE_20190524 142491834.57405058 18087.912748161343 0.5348615916504535 6.8012605309267e-05 62224109.32300589 7912.371825105779 994 6352 408857 AE_20190626 153725922.78544167 13023.370115437065 0.5741079169786841 4.855965188526154e-05 69418877.34160352 5871.642627250333 966 6364 390677 JST_20210809 84308351.31615053 1916.5526022689319 0.05878346472623883 1.3363415748108092e-06 204048125.3701288 4638.6852912499 None None 152000 DIA_20211230 74574554.66705407 1604.8422772273507 1.24671778301242 2.679405168849586e-05 3937724.77416812 84.62829565099756 None 455 272189 POWR_20210819 124766176.2593446 2767.9566037882046 0.2909552272693767 6.459280864118075e-06 8197800.864358204 181.99328724200856 92061 14070 202845 CTXC_20200607 1145388.8952797311 118.45357501319353 0.11184578111204645 1.1566842211814364e-05 9298292.882041402 961.6087932549253 None 20064 552232 BNT_20191127 17519235.212633077 2444.215625506969 0.25099055137908693 3.5070070109475837e-05 7937563.567026845 1109.0892038147335 765 5066 157122 DATA_20211120 0.0 0.0 0.13825768108405226 2.3704519113926702e-06 709818.1190824698 12.169954710127667 None 4739 146837 TWT_20210828 310691995.19832075 6334.461017414068 0.897274381145183 1.829135978291324e-05 25911679.436035067 528.2217581417195 1090035 44436 4197 LRC_20211104 1481311668.135668 23529.836630369184 1.190394592001736 1.887897589978916e-05 1712772866.439709 27163.595907264425 111742 26062 207385 JUV_20201229 0.0 0.0 16.144100470066604 0.0005946289894274927 16846256.516210582 620.4912132728622 2184144 None 282510 MATIC_20210421 1777708295.1228266 31466.35827499279 0.34098365911793244 6.047532737825657e-06 290186072.99312174 5146.609608878699 3806 12343 22143 BTG_20200607 162548475.5990378 16810.402237179438 9.281099746638034 0.0009598307173868881 32567543.25246532 3368.062972802938 74952 None 215523 SCRT_20210508 250125412.14534575 4365.022794190965 3.5894905111008413 6.263331431016395e-05 5891284.290422627 102.79750274069059 79658 None 56465 AKRO_20210930 61487479.55464613 1480.2592941747264 0.022725965123783182 5.467048342111953e-07 3562796.8381158295 85.7080543818962 None None 217037 SNM_20200629 3790293.0934625785 415.7214136 0.00866797277241233 9.5e-07 81194.28053548439 8.8988012 29352 9601 7298232 C98_20210804 212996841.49126184 5543.577808023199 1.1511325186975345 2.9965285448774046e-05 42794191.55775698 1113.9813572712085 152216 None 61225 IOST_20210511 1269890298.193588 22744.247004652403 0.05643895574555405 1.0094286300893735e-06 391869577.8531153 7008.71172970155 245589 53282 140464 DOCK_20210325 43444522.46295527 825.0293483548918 0.07728886474395132 1.4691745054126486e-06 19166250.71897531 364.32889801074583 45477 14888 189285 SNT_20200117 36234020.79781222 4162.907695239411 0.010102579496751462 1.1602218134315567e-06 11584613.588750433 1330.4247088741856 110437 5617 244920 UNI_20210805 12203745070.555143 306820.24152543274 23.546564925203725 0.0005921441742570289 552814277.791703 13902.059815530889 585387 49916 1884 ANKR_20210519 1086722606.3061225 25468.917138335593 0.15499212612750946 3.6175456031684258e-06 271012113.2527099 6325.47409470444 103428 None 5363 RUNE_20210106 347873538.78220534 10223.032870703315 1.5871024841718522 4.656060363682389e-05 42399507.62949626 1243.868426154958 26383 2035 287788 CMT_20190621 34257375.74026337 3581.3229748007934 0.04274365219693637 4.469490478087245e-06 9012990.396251874 942.443443286927 291233 1641 705322 NANO_20200229 102378593.68170169 11713.600751818387 0.7672645111334531 8.78282318872618e-05 4606707.497631352 527.3265848580095 97751 49091 300765 VET_20200127 358592487.0076657 41785.74856132793 0.005721845281615472 6.658165828093015e-07 113221782.03048044 13174.935060430424 118352 60076 339767 QLC_20190302 6566609.2119649965 1716.200730878119 0.027267059643105978 7.130910687158136e-06 611630.1474094476 159.95417224434257 23354 5846 940522 BEAM_20200410 17578603.68525325 2411.7606990655236 0.2953773401060673 4.05101042256684e-05 98965602.28632362 13572.83149051103 14950 1477 257482 ATM_20210707 15872291.472519387 464.6964190473629 8.404467193050396 0.00024596631026918537 3027408.380568824 88.60055634011661 5002116 None 121547 WAN_20190130 30385160.207645312 8898.621785383839 0.2855527997971479 8.364927593274845e-05 2155315.387139431 631.3738533434108 108996 17292 496457 ETC_20190922 696455684.8510902 69739.17973026182 6.122722187193023 0.0006131081203301104 615791303.8471963 61663.20098715267 230283 24996 331618 WTC_20201201 10907673.932078097 555.1330787578297 0.37229312111416984 1.8939053109738544e-05 2259835.848599195 114.96089701530143 54823 19251 810414 HARD_20210201 37697628.23675511 1140.4284438791722 0.7872971338637935 2.381158210108222e-05 9822962.485639835 297.09275906386006 None None None CMT_20190903 21391121.596319616 2070.0863381550193 0.026746986551478166 2.587801154051051e-06 2520193.7891464555 243.83159513814707 289993 1650 567314 DCR_20190916 236622802.58028418 22963.27762388272 22.77181715342527 0.0022099119509709055 14652661.575642643 1421.9810264317962 40567 9607 165659 REN_20190405 21762809.68471129 4440.69012297161 0.028162150580497782 5.751482046100876e-06 1897401.1572862878 387.5012548913875 6111 806 1519045 TFUEL_20190811 0.0 0.0 0.0065420635030237935 5.780043449087735e-07 2618682.9419969833 231.36585539304892 70385 4021 242693 AMB_20200914 3357511.554087628 325.2643231384178 0.023313048354947113 2.2574386746377117e-06 794891.8074425713 76.97060808835627 20300 5504 374093 SKY_20210207 19738898.458314516 503.2786343854996 0.976201770378896 2.481540773572972e-05 2797742.845676333 71.11965124610663 17409 3895 739970 AUDIO_20210314 225362654.680115 3673.4787244719814 1.4629501014753146 2.3845113281748232e-05 83493033.18510023 1360.8808889160005 31037 3188 66000 ENG_20200224 26661227.324027665 2679.787255785192 0.3213000741936907 3.232367030236246e-05 1889006.688177242 190.03926326761425 61448 3619 305641 AKRO_20210506 140593663.46311942 2455.8838032056624 0.05197276309875824 9.065886784771782e-07 28208621.51664951 492.05805844587064 38470 None 159597 ADA_20190826 1538261850.534183 152372.92744890667 0.04945092551466617 4.897479056751376e-06 173255575.46409392 17158.739567961264 154336 75149 90911 REEF_20210828 302360491.62659717 6164.996766329121 0.0238911547253936 4.870324127093441e-07 58357067.77887946 1189.6362417669686 196175 12848 76465 POLY_20190224 42222986.29493711 10262.623679812921 0.09244543861805 2.246671389224343e-05 3460675.635455214 841.0367297500096 32676 4992 244935 SNGLS_20190205 6872233.672777989 1983.604371658597 0.011639661215633253 3.3596766308183447e-06 189118.85084006694 54.58734338085506 None 2186 1020593 NAS_20210219 32260184.259087775 624.1434381062639 0.7082796429338652 1.3699681018453572e-05 15721822.579220563 304.0945148047322 23726 4845 603021 VIBE_20201124 3255766.2964384635 177.7751264 0.017610171542667648 9.6e-07 91960.09144956258 5.01310777 18574 None 1913666 YOYO_20210128 1842437.735716813 60.90527463900198 0.010552944684002606 3.470550671544714e-07 750287.6735070029 24.674737403757693 9382 None 1925232 ATM_20211104 28841703.087913513 645.7254437455765 11.844948742052722 0.00018795966284218914 3181566.0300798714 50.486168521852186 5158494 None 58301 LOOM_20190801 24578514.287183933 2441.3793163818486 0.04032244499850702 3.999492372148786e-06 2029208.321749965 201.27259655609478 20757 None 419085 DCR_20210513 2569934997.4941106 50986.937092043794 198.91381600316478 0.003946405739126084 63797075.259016775 1265.7197423513144 44854 11084 215733 GVT_20200306 5184871.205624429 572.5256838786594 1.1689837752559202 0.0001290448493729455 1071062.9309850407 118.23530618947322 20752 5610 171820 TOMO_20200701 34704263.16332076 3796.6776278477964 0.487751501648359 5.336045331210816e-05 3473886.5293183555 380.0463132000635 27341 1574 149165 BCH_20191216 3761711147.9201717 528609.4755772346 207.06872634926356 0.02909791500377013 1781345061.8188946 250319.9209028031 995385 279243 114260 XLM_20210220 11584743207.651457 207217.8760609781 0.5157265388409119 9.224870684773539e-06 1717452707.6137326 30720.30997388346 400243 151551 26616 STEEM_20190312 158554632.2293312 41007.18475433942 0.520048695858472 0.0001346686552468868 8938946.396558465 2314.77532803224 4333 3688 267616 XVS_20210710 202131126.88423413 5959.645646046324 19.575202258638274 0.0005759959336986728 15493211.12848154 455.88426071063145 117898 None 10936 RDN_20200324 3614980.148485338 561.1036489727842 0.0717387642153258 1.1071052305929666e-05 310657.9245436399 47.94214354670243 25111 4323 1385636 ATOM_20190615 1502265453.1952536 172717.58050727748 6.251328021204362 0.000719988014124523 88919015.44370747 10241.123986785886 25785 5242 120610 QKC_20200414 9764116.703492181 1424.3891012581687 0.002617028982541128 3.821921550105104e-07 2042481.467672161 298.2849631801453 49869 9196 784929 WAN_20210418 355610071.37007886 5899.045092990538 2.159071535942191 3.5829602422051254e-05 25049164.750954226 415.68868798017496 None 16253 185285 KMD_20210429 328942683.02720654 6010.466118214763 2.627669859090573 4.799209903012359e-05 12431476.531913808 227.05008041487767 108089 9036 203738 PPT_20210825 88900040.90008648 1846.362733722355 2.4487730396838128 5.089020395257164e-05 4160605.366146911 86.46536539650876 24468 None 917945 PPT_20200305 14296550.586592156 1633.08061392653 0.3967394349914116 4.530275844051719e-05 4253437.5977694215 485.6902012721098 24113 None 1098941 ETC_20200309 750720424.3538198 93236.36023032275 6.41725918648263 0.0007977129141670045 1464015232.901432 181987.95215918435 231165 25287 362649 MDA_20211021 15574814.71507245 234.89813518041262 0.7947807956640897 1.1994658281479315e-05 731426.8807403188 11.038534826496244 None 388 602847 ONG_20190616 0.0 0.0 0.43258455098029336 4.906022002380821e-05 5183113.843778403 587.8265994658667 80407 16235 232873 GRS_20200325 10823098.197835024 1601.4427588980068 0.14506502921528497 2.149405582477017e-05 8741474.116632752 1295.2103871626325 37600 106841 3912987 KSM_20210509 3902686252.8923855 66549.26047128075 435.2576928394416 0.007413362100051479 271890348.8152582 4630.869575509919 55552 None 90994 INJ_20210131 128384282.62581955 3753.3155524891554 9.475792839493963 0.00027731809178552935 58647281.07358579 1716.3684718760644 43050 2142 139911 REN_20190915 32915807.9989675 3179.134758091498 0.039854233120166276 3.849274420769995e-06 1952230.2795528206 188.55387471332122 9643 882 312063 LOOM_20200721 20740948.243338317 2263.853975016571 0.024586323438816355 2.683732024311023e-06 11012348.083610525 1202.0581803697487 21976 None 626078 CDT_20200412 2146113.6533857756 311.8271835997611 0.003125215316430598 4.541271754732212e-07 309641.4937044194 44.99421726433225 19137 291 258072 EVX_20190329 16843514.792034246 4183.59332821826 0.8734497331223651 0.00021694216311859645 18359122.125566978 4559.9277392200065 15967 2371 1271428 HNT_20210112 81649786.66930714 2304.992856071272 1.2680090480850466 3.566968272378857e-05 2956461.6804728415 83.16663850842805 18923 2158 70077 WAVES_20190613 245526866.6157962 30226.39407929232 2.443793402900156 0.0003005382558354176 28033163.362750135 3447.52466087841 139635 56855 46755 XVS_20210110 15408046.355207708 380.76839135247735 4.165988243106011 0.00010299600291128546 5267952.290798948 130.23993295648734 None None 105222 NEO_20211120 2926314129.5043035 50339.952507669455 41.6930960750547 0.0007148353603797833 171468697.9106189 2939.8605525514135 427312 115073 87407 GVT_20190605 14025550.141496815 1829.432725100977 3.163555373115437 0.00041251700944393814 1312436.5715739299 171.1373267531477 21381 5784 170487 NXS_20191022 15001471.011405522 1826.6241080541843 0.25134605491982687 3.0586860599443015e-05 464173.23056454957 56.48627308592404 22139 3539 388787 WNXM_20201129 31528970.889961008 1781.3580939920837 21.183142850846643 0.0011958214522438 11664909.61922086 658.5023411949395 15224 None 73532 ZRX_20190510 150402355.0864055 24334.08883069646 0.2556365667764375 4.140445718321044e-05 25870967.493970677 4190.219652062196 150114 15861 221725 GRS_20200404 12357322.021318026 1837.6044040341385 0.1654118820219425 2.458861350879784e-05 9083298.708530612 1350.2398896555335 37541 106842 None VIB_20190410 6735950.678941541 1302.413271845387 0.03957642206745371 7.65601149174838e-06 3326927.0973803 643.5900659827238 33125 1130 2240138 DIA_20210112 33436020.28387748 941.0556085291563 1.303448288279608 3.666858804398456e-05 16038316.08098056 451.1896717198596 None 196 308409 CMT_20201229 6925823.914005117 255.4097581824759 0.008667622124568135 3.193346185278784e-07 1161928.0352085885 42.808032070118564 280886 1630 983064 LTC_20200224 5110438784.780377 513576.67963795544 79.66623820445704 0.008006107463441577 4824912814.003222 484882.5721067493 448178 211874 132727 CRV_20210624 523137199.99762446 15516.733901032436 1.5064572679104926 4.466065491851656e-05 167796166.6767151 4974.509968671688 136087 None 18193 LRC_20200129 30325952.248855118 3246.2965195563934 0.027615892401309065 2.9534460271749904e-06 1973099.9642386413 211.0177779488848 33891 6829 877255 ONT_20210707 637321747.5332237 18659.00297839524 0.7287917895158691 2.133628616801748e-05 137734414.47984153 4032.3463090581918 141287 19602 137199 PPT_20200229 13988109.92915521 1600.4433064600312 0.38995797802825977 4.475542070132531e-05 4158278.3019614224 477.24499890598287 24121 None 954834 POE_20190625 14182551.862897536 1284.173763088313 0.005634314810607131 5.101648365333991e-07 3106148.593776827 281.2494230193444 None 10852 945513 CVC_20200721 20862011.355183456 2277.067893867486 0.031119311441543895 3.396843488942584e-06 5707166.536838698 622.9685231753228 None 7983 98736 AVA_20220105 95240026.15290345 2058.6846778796244 1.8039448219385137 3.921404608111742e-05 1796676.2881242784 39.05604312200956 145785 11021 46341 MTH_20200411 1895733.3446768923 276.48087714990334 0.005459511183478632 7.95550079614167e-07 121418.31458185399 17.692856848525583 19131 1920 1281286 PERL_20210603 0.0 0.0 0.06316352005025924 1.6795294465924511e-06 3975545.039916149 105.7104631831919 19464 656 347381 NCASH_20190703 9687998.038650274 897.6351912024895 0.0032437186220917492 2.999233818676672e-07 21933201.562122703 2028.0057409711335 60215 59129 1075927 BNB_20200309 2576606762.579333 320003.8636147571 16.8768661458687 0.0020979196388990705 273483539.38262784 33996.03239295052 1122669 59952 1861 FIRO_20210511 185317886.87807837 3319.118036834319 15.652408003937277 0.0002801305655774968 26287513.572484147 470.46665553528567 71924 845 205824 DASH_20210212 1645155541.684137 34401.958410542866 165.0156208975679 0.0034506527701305785 1465813024.8355427 30651.71495359198 349662 37018 65272 DGD_20190929 26397004.29963235 3222.6538702413973 13.198508749070548 0.001611327740784569 1190969.376514694 145.39839547692608 17273 3364 538258 DYDX_20211028 860791690.4145582 14698.279175948046 15.090038174388539 0.00025786995242028634 413643868.24260724 7068.658368519106 None 2129 17153 FIS_20210806 53008277.49851446 1293.7862408580959 1.9666951309306961 4.80022672124064e-05 486516594.42862296 11874.692321011129 24683 None 435557 REQ_20210814 241448153.29853103 5067.403403416258 0.309882083242491 6.491148484786726e-06 65512350.86359147 1372.2974642268955 44290 27996 309382 IDEX_20210813 36490401.56903952 820.7869514083201 0.06175571742210927 1.389090827372561e-06 2134330.195322779 48.008162169705976 53425 1974 8041913 STRAX_20210401 190285350.00239792 3235.0831639699354 1.8989790299227056 3.231665107496799e-05 7159299.3657380855 121.83630040043919 152016 10598 202709 REN_20200324 35973172.3890796 5583.9413760665475 0.04120022118148438 6.389088641794536e-06 1926254.2734602469 298.71221432432236 11355 873 365958 AR_20210916 2366437739.020092 52810.94202412789 57.476034145149164 0.0011924960925298687 56142078.83251428 1164.8195744543636 32276 None 62253 COTI_20210408 251968548.10737768 4473.474691632292 0.37201424595449895 6.61665398516145e-06 95628039.92580883 1700.8425304918871 72445 3431 87239 TCT_20200411 2983859.0960063827 435.2760320661619 0.005293016345248501 7.713625438796252e-07 485737.08415086166 70.787499687891 None None 430478 NAS_20190807 39768507.26022153 3475.41240597032 0.8742695251190873 7.634685411277228e-05 9737193.58245738 850.3145500884688 24332 5118 652054 ETC_20210104 774853076.2695163 23162.14124313252 6.630843986338377 0.0001989081386289768 1170179565.8639522 35102.35496223679 249348 26275 167227 ONT_20200410 285248540.5564807 39135.71475287554 0.4478166537034614 6.141669265828913e-05 100715111.22437927 13812.771322723354 84076 16504 252464 TRX_20201130 2192297028.4670944 120856.0082717783 0.030608108139112987 1.686984292421441e-06 855564507.3828869 47154.95248998572 546434 76201 28670 WAVES_20210105 529058890.814165 16910.24460898019 5.298507545225427 0.00016935554851824864 102391915.11415733 3272.7402575123256 150556 57230 144968 NBS_20210727 0.0 0.0 0.01242696531426691 3.3305860001343553e-07 7893530.52020148 211.55673631786593 None None 1815973 UTK_20211125 174754348.33498523 3054.7498762857376 0.38878186771305556 6.797761314030905e-06 7955410.317839959 139.09851509785 81162 4245 157005 AERGO_20211230 64312496.15733742 1386.6610885718915 0.24391134748861412 5.2406162433811166e-06 5804188.989897541 124.70730621309362 None None 525635 VIBE_20190419 8779693.466884775 1666.53992032603 0.0438915141330476 8.324496355828484e-06 325258.290882964 61.688722994397 20684 None 1228963 CDT_20190811 10842083.17736503 957.2394404420306 0.016069711083899516 1.4190010965464758e-06 685439.1059488815 60.52621841669577 19771 298 234430 XMR_20210318 4233599019.188943 71971.94953174198 237.35802665312062 0.0040302466149840345 625230285.8372079 10616.166129336072 372174 204673 39767 AUDIO_20210125 31594948.121353988 980.5498154722713 0.20650563989077347 6.400541943128901e-06 3851676.118413958 119.38082930953368 None 2455 50334 UTK_20210105 78028918.4099137 2494.028774103479 0.17233281758050945 5.508252767393341e-06 9234352.990952462 295.15649504040624 55165 3114 130913 FIL_20210401 11887088710.101213 202093.5027996037 189.57559567550769 0.0032236317949902453 6658959382.907221 113232.04926140002 67162 None 40671 OAX_20200310 2194666.2394133634 277.32370606033726 0.041977693233724835 5.3039630795097325e-06 253351.72880006983 32.011483056099685 12062 None None WPR_20190906 3227277.8533370146 305.35142921096093 0.005306089197763814 5.020397975286533e-07 98833.11521880043 9.351172832617213 34471 None 785340 ZEC_20190531 554965046.1048778 66769.42510745673 83.50448978784127 0.010052735133905222 836320671.2246529 100680.93603339899 74945 15160 179655 ZEC_20210902 1744462654.663039 35861.68721665678 151.41147356375157 0.003111925518120546 279632471.7720527 5747.222480046597 78149 20381 170452 ONG_20201106 0.0 0.0 0.10664665972656619 6.863639956520551e-06 2825390.216266512 181.8384301097648 93546 16680 220427 DAR_20220112 0.0 0.0 1.5684765834989935 3.6658785635748345e-05 19682961.219297722 460.03457342367517 None 746 20937 ZRX_20201124 322864700.86202115 17629.43276015599 0.43670521894500325 2.3795465205224693e-05 60741481.17430177 3309.7195524446715 161697 16307 88488 LUN_20200422 1667339.7282759622 243.36315337272032 0.6162641661503886 9.002525511602189e-05 414614.83266362455 60.567867053819256 29255 2138 2572257 XLM_20190923 1378545375.4764307 137133.90725114974 0.06866986658701847 6.836304919861621e-06 217765898.22369558 21679.29188442847 276226 104160 63333 RSR_20210707 329184264.69230497 9637.597020827172 0.02501093895116579 7.323463324311934e-07 44315754.77715591 1297.6114388723313 76110 None 97085 BAND_20201031 99616351.4965049 7334.621647471059 4.39372613998853 0.0003244158352756916 84250758.10196188 6220.751861045566 37951 2672 146194 SUSD_20210725 209887265.75012326 6143.14819895591 1.0131140607788243 2.9605642557754084e-05 91701797.20666212 2679.7482486000026 143851 7297 44436 ZIL_20210106 814808085.8971233 23981.125323258035 0.07049280719063136 2.068688333365298e-06 212514138.23303807 6236.459235464993 115726 14180 39054 REP_20191020 88534220.19571817 11142.323595298347 8.047450476795984 0.0010123105502985136 5478177.447763157 689.1147504129733 125616 10051 212520 NEBL_20201014 7443858.159397879 651.5752605889801 0.43763404391307037 3.831500123839478e-05 149631.68176810435 13.10030184348916 38620 5929 491538 THETA_20200621 222023483.2168523 23732.43684542604 0.22219140752091834 2.3738058015733763e-05 9636372.183521142 1029.5121872887555 71611 4251 93022 OMG_20190714 261260684.0959361 22954.66101358718 1.868984988324596 0.00016396930403467054 141734126.44040844 12434.581452271972 290030 40433 None GLM_20211221 435478373.0156583 9230.406326922162 0.4374532671511591 9.281915909237086e-06 3671431.5086009456 77.90070640295855 163751 21785 244527 STORJ_20210804 144149879.5655374 3751.886430942201 1.0031355394688823 2.611443570483422e-05 21481831.135773435 559.2324027461727 103924 13700 58754 BNT_20210127 210253515.6171325 6452.030294623828 1.8920928888132995 5.8071367831841355e-05 93677953.328357 2875.126753886275 91076 5347 94458 KMD_20200425 66376289.42119373 8852.162769881832 0.5553974127118827 7.409977994785254e-05 3778310.926751486 504.0931085361211 99847 8386 159254 TNT_20190908 12278165.006122464 1172.8338060591834 0.028655079883577236 2.737188039583073e-06 471577.6264435522 45.04599687317728 17510 2530 571666 STEEM_20210731 190339925.84155008 4562.183746473751 0.49085911352836 1.173987915733781e-05 36365229.75061704 869.7473287850116 14136 3931 205133 MITH_20210723 23834922.00195399 736.9905914914413 0.03855539172573123 1.1909542700537024e-06 7336384.758924039 226.61678080076038 32676 2748 479656 BRD_20201229 5189249.957660511 191.23349465665936 0.06974071698967521 2.56940426517132e-06 268804.4317967688 9.903357512912018 None None None WINGS_20190131 7707301.622451614 2228.591595299203 0.0862271251931258 2.4932856647575515e-05 342809.6864126197 99.12454752008323 37396 1225 1583284 OAX_20190804 4855731.958685014 449.9163766654485 0.09296634587660792 8.613960128877775e-06 146823.40724567868 13.60418078256952 12313 None None RVN_20210620 602048338.3905075 16888.30989085601 0.06655715808634866 1.8693932647624315e-06 27192678.235589802 763.7617200919808 None 42848 52142 XTZ_20210703 2473677881.520177 73186.03251103417 2.965939751034525 8.759074130870707e-05 71795986.7545585 2120.2938126536105 123659 49712 72508 ANKR_20200321 5060135.701473896 818.2689570710492 0.001266536735840039 2.0426390696074414e-07 2474718.192647233 399.1164190920068 None None 5425 VIBE_20201101 2165381.5325340987 157.19160198731535 0.011577444376854545 8.400051461253167e-07 35370.518222662846 2.56631916 18639 None 2184803 STEEM_20190603 136017999.3964303 15561.514143793109 0.4370778181740209 4.998331758360751e-05 2567898.052344403 293.65952362641883 5652 3735 311798 CDT_20200425 2579362.4020602563 343.9923506519528 0.0038215822710182023 5.098662666654601e-07 73627.76363713355 9.823238205098267 19085 289 263916 BLZ_20210527 72076586.69711486 1839.6517250008578 0.2525078208934664 6.440954881604782e-06 138308038.40687588 3527.953439183947 61095 None 200786 NAV_20210703 23892518.92540208 707.0246010146161 0.33681127361205654 9.946779642613984e-06 65933.38068832386 1.9471581273574736 53135 14122 770142 XLM_20190812 1531535219.0219014 132709.38530777194 0.07805306527226426 6.758836560004738e-06 150205889.78078195 13006.75451805918 275837 103309 68303 ADX_20190329 14109365.323450422 3504.4819075793716 0.16162407134780238 4.014315465232637e-05 3235884.9836371257 803.7084467186451 54608 3931 962371 AUDIO_20210509 339409308.6068764 5787.664449868645 2.2206393948493806 3.7802944813266586e-05 24290226.512070693 413.50346862590663 46995 5049 33719 AST_20210427 61810996.66431611 1146.6416832401162 0.3588188760174572 6.65636702493925e-06 5101948.578010156 94.6450829302254 42143 3649 173984 WAVES_20210304 994852821.5129569 19575.71581227046 9.918863958165907 0.00019576838531982263 115536642.23249574 2280.3439981156957 163627 57648 99978 ONG_20191011 0.0 0.0 0.1591153096726619 1.8582865396325932e-05 8141168.430356928 950.79623338177 81464 16290 312703 BTG_20190621 493823718.36565983 51669.121021844185 28.172074250484656 0.002949435027284196 22509529.990313254 2356.6030534649703 74161 None 408265 DGD_20190621 62093670.04403281 6500.807990641553 31.04685054544168 0.0032504056205235866 5668060.104201423 593.4094472222324 17072 3369 464575 LUN_20190410 7789440.648226061 1505.7316117080823 2.8784650008779566 0.0005568356100447008 1555357.9031059644 300.8821252124639 31824 2243 1417813 REN_20200127 34854129.88510866 4060.7666753426665 0.04114558822971228 4.787863635671566e-06 1496738.0511751957 174.16636863567226 10577 870 462804 QKC_20200914 36131519.88742076 3500.3377766624963 0.006215493751633445 6.018559119030409e-07 2035461.8581020918 197.09693255341872 65188 9219 295595 NULS_20210506 126608583.41277252 2209.9512435744564 1.1272412650514698 1.9683806657987397e-05 94763934.76687238 1654.7610772713113 50910 5349 238913 LINK_20200418 1270921369.8492894 179525.7823402992 3.4601943623550464 0.0004915098528590358 483760633.1552506 68716.69412792759 49370 14410 77374 LINA_20210523 130023189.84559552 3459.530093742047 0.05372566673960503 1.4305929476990053e-06 103711104.62236394 2761.592063434638 None None 70579 CMT_20201031 5509909.145455351 405.170497598129 0.006877672450079235 5.067675608817068e-07 460738.81751592545 33.94861974756844 282047 1633 833805 EVX_20200422 3179364.586955935 464.2581674137058 0.14553972770888576 2.1260770682732543e-05 459448.5082849105 67.11727120108277 16701 2856 1064652 THETA_20190803 130983824.8470794 12448.23238597778 0.13101641808536552 1.2448030722819473e-05 3427107.340537631 325.61367566633055 None 4018 242693 JST_20210429 176979450.5368254 3233.2160662551973 0.123462399291585 2.254933081794798e-06 235702098.1087384 4304.893323987613 None None 74075 REN_20190830 51447849.63919667 5424.775503368218 0.06260215545187556 6.59982488707173e-06 6962838.177608796 734.0563972204081 9544 883 378808 ZIL_20200313 33332925.83687644 6926.308691516684 0.003198567878342328 6.69653923752202e-07 17171825.18716912 3595.1027309553892 68665 10582 224303 ONG_20190629 0.0 0.0 0.38822404161616025 3.1257765329719686e-05 10374395.918680387 835.2919919996389 80616 16261 232873 CVC_20211207 256350184.75075582 5078.7873266914075 0.38187582963715944 7.560823292197619e-06 62228471.589077696 1232.0718959238716 None 10254 159287 VIB_20210602 9695051.862346726 264.22759836172975 0.05276567874007396 1.4386641145952451e-06 1021908.1403843701 27.862478131399335 None 1275 3757550 TKO_20210825 167526966.35483333 3486.1671012391394 2.222505110946001 4.633045381995567e-05 32220581.69753271 671.6718737957126 None None 26828 AST_20210108 21127804.583863795 539.7651642528316 0.12421905949323454 3.147781459725114e-06 6967661.44038462 176.56449492663265 34735 3466 211626 ZRX_20210105 289441456.2211462 9251.381858731947 0.3852816197531004 1.2314709281877512e-05 78499594.84354109 2509.0729473751403 163465 16319 98378 HBAR_20200407 134013473.45392181 18425.75667831766 0.03462823149540046 4.7522810912458584e-06 8690906.61767484 1192.71557920726 None 6397 106388 COTI_20200331 5240706.976613633 815.8335960526445 0.016752124113533003 2.61300446255932e-06 6216533.383341754 969.6578990361352 22676 913 253009 PAXG_20210729 304947828.5353455 7622.684655802655 1817.1077494857057 0.04541778155041225 8160691.355050797 203.97276791590198 23700 None 38365 APPC_20211111 9828851.645025566 151.63193810844413 0.08439568044954947 1.3000010751423105e-06 319422.06493458373 4.920263994877863 25167 3101 913085 TFUEL_20200322 0.0 0.0 0.0017567736293376296 2.8513606966479334e-07 598232.0634015682 97.09705135436079 68322 4027 384607 POLS_20211216 272254280.1090602 5580.841309554524 3.2609632016160246 6.682641541051519e-05 42436523.66067629 869.6451273418671 None None 7209 FUN_20190905 15332559.565940129 1451.990096753526 0.0025526007647682413 2.416795535690541e-07 141857.6348941243 13.431042701535269 None 17406 352374 VTHO_20210727 236212404.47953612 6309.3630857202525 0.006182837697437369 1.6520426289172426e-07 34578170.730806716 923.9222323585801 394057 194419 33228 BAND_20211202 321309250.0316273 5621.515961011222 7.738596079957658 0.00013532754353223943 49503044.37838162 865.6770974833555 None 6331 265509 VIB_20200914 3055112.0532755153 295.96888591816474 0.01672939762029699 1.6210011532630205e-06 493850.31924549607 47.85180884606462 30648 1100 None BNB_20190110 932116117.8303659 234387.43820916934 6.5124285245428695 0.0016376903504273456 64385829.721023776 16191.202965376162 902601 46804 1051 LTC_20200329 2505340327.9594817 400823.0972612844 38.91148983077907 0.006225351381992395 2973414804.129698 475709.1553324072 133390 212823 131624 IOTX_20190130 9212219.41834816 2697.8977845646737 0.006924295969165521 2.028389651847951e-06 278795.9455968435 81.66993634357219 13495 1551 1330550 GRT_20201231 461509269.9330805 15983.112773740015 0.3748375647176249 1.2997948982876835e-05 246013107.50424957 8530.804064070036 36663 2226 38757 XRP_20201231 9633436313.890484 334102.688892892 0.2120697554323437 7.354911914520131e-06 6788558769.855404 235437.8712657048 1032861 227343 15024 GLM_20211120 542600137.595859 9334.215720506849 0.5555616068840082 9.551719577331288e-06 14970535.935305275 257.38704655710984 162280 21678 197301 QTUM_20201030 209425351.93002206 15556.910774982227 2.0352906999317986 0.00015124959255758913 148245458.77062154 11016.640147926159 186695 15045 91229 AVA_20210902 185228060.1125804 3810.4097542191853 3.538767263124796 7.273147727586783e-05 10099000.586081209 207.5624580597456 None 10652 57789 DOCK_20190623 7206286.14413237 671.2494182892741 0.014085946060500187 1.313189805531276e-06 3780610.0231868285 352.45474601526416 None 15252 251058 CDT_20190605 6522412.472667445 851.3249102349939 0.009674201903092977 1.2627059544698864e-06 376231.2058509447 49.10682954978302 19745 292 399262 VIDT_20210707 17276562.07268108 505.80954505052665 0.3736135765144327 1.0939794505159608e-05 860277.3612935388 25.189816809638085 29496 1619 805010 TOMO_20200907 47832925.83590708 4657.918430694332 0.6658163053200741 6.4836469561707e-05 14015459.32664447 1364.8102258302104 30801 1670 74287 FET_20190405 0 0 0.19525428868304007 3.989032310132246e-05 28631312.573432226 5849.358378105487 7662 165 174439 CDT_20190528 7768564.894182135 880.8879760385043 0.011488777400293863 1.3054136039550683e-06 596205.9346937602 67.7439653316004 19780 292 386642 LSK_20190821 162700257.41011316 15120.014096351777 1.2050630705568777 0.00011209206184929688 2967834.540334673 276.060814559641 182086 30895 173926 PPT_20200423 8257195.295385856 1160.6562447418492 0.22792994759379073 3.2038520051263155e-05 3565688.364081235 501.20389775531396 None None 1377509 OST_20201224 7264123.2480580835 310.6978403523621 0.010616359216913323 4.552599493501049e-07 1778499.9216722425 76.26718046331167 None 736 712732 XVG_20200109 54717241.25364529 6798.864598314748 0.003402623587879903 4.2293281225235703e-07 2494664.47322812 310.0770432105912 298671 52165 314927 LRC_20210108 459413243.26281965 11736.915860111238 0.37208111975718033 9.43657002059997e-06 256452067.64697096 6504.033031446446 47674 7645 277317 BLZ_20190605 11651992.196656393 1521.5749538189536 0.056320232475221506 7.351086282461576e-06 848854.2889629975 110.79501708644224 36623 None 848455 OCEAN_20210127 250280960.4373189 7679.8401169998115 0.598583211502058 1.8371479570911734e-05 107528394.05531704 3300.2190116944366 39649 1441 64181 FIO_20220115 66512266.467292964 1542.900445093109 0.14217289777516698 3.29751592593443e-06 4710452.499691901 109.25283495772405 None 569 267725 STRAX_20210513 312772730.32522917 6205.341201528108 3.1253995003898156 6.2007228925737e-05 54367932.25295956 1078.6476484071075 157330 10671 146304 ZEC_20191213 256368371.99393928 35615.2193724408 31.806084500786092 0.004418566409200685 165035996.90485957 22927.138743366475 170 15385 186453 FIO_20210112 13810590.342304353 389.8762431072566 0.06478600368466854 1.8225589012546808e-06 1752415.4892762937 49.298926728411715 None 162 541516 FUN_20190714 22758630.2896024 1998.7140130609846 0.003852171240778795 3.382649516656901e-07 405670.7710140177 35.62256067347028 36236 17556 429165 TRX_20190908 1018330245.5989367 97271.5657119279 0.015396532613079094 1.4706867838616694e-06 572784172.653527 54712.71577154262 461161 71259 65746 RSR_20220105 413427601.4948483 8926.073091782177 0.03113816437733184 6.779860476669829e-07 53516893.04286016 1165.2487397092507 92907 None 101626 UNFI_20210902 62615261.502522185 1287.4462078664153 13.437141862692933 0.00027617051514602475 26789850.68793349 550.6056973107624 21765 None 227824 STPT_20210519 74056797.17738034 1730.2491525906473 0.06635645200919045 1.5510774163219635e-06 11429294.710647486 267.15896304579513 29962 None 475060 ATOM_20190512 970754458.610573 132951.68429670305 4.096789329932594 0.0005624591981083926 72407374.20218433 9941.002661116821 23514 4080 164771 YOYO_20200502 1515068.2808124947 170.9694889953703 0.00865452226712327 9.798205964186489e-07 372501.32077048207 42.17268787562872 7455 None 2248259 SXP_20201101 62639727.26675455 4539.665550697396 0.8179355354818296 5.9277253926861846e-05 24429165.44598292 1770.4253948446012 89157 None 69849 ZRX_20210603 969075160.4203675 25767.88416149443 1.1510283010902354 3.060605115110898e-05 361816797.66089135 9620.774229487477 217845 19337 60005 LTO_20210219 104699755.96227942 2025.6445260933463 0.38224087021805764 7.393376396520913e-06 18666127.056644417 361.04381804155804 2737 1808 791991 LUN_20191203 2614260.439997581 357.70572241184954 0.9690416858096369 0.00013261319793085496 486672.2209261138 66.60101469959042 None 2169 6550339 TNB_20200407 3534136.9480583016 485.9037791488535 0.00114049365414999 1.5676033412587847e-07 434960.94472424866 59.78518405479334 15052 1441 2723419 XEM_20210318 3551031979.228423 60368.18632001478 0.39252024266208235 6.659400614853328e-06 383790518.81887805 6511.294295712529 269301 20217 26657 NEBL_20201201 7312937.825325366 372.18326427952053 0.4279026746101952 2.1783119106242462e-05 593913.3341957767 30.23417628636609 38401 5899 1009266 DOT_20210202 15718566326.160374 471078.62988587376 16.334468233166803 0.0004890784214697717 957499231.0275391 28668.959759498714 None 10510 24755 GRS_20200430 12108571.492984038 1381.0984189553494 0.16156579152322142 1.84281241894869e-05 15031887.51708798 1714.5305782597013 37509 106895 None SNT_20210707 281210454.09336525 8232.68122369097 0.07253123127080623 2.1236898149259643e-06 16702320.45845259 489.038269746321 133180 6014 125766 SYS_20200711 19179948.936481517 2065.622013913964 0.03248139467944125 3.4985990819353232e-06 700373.743156955 75.43786093555387 57129 4453 880000 ARPA_20191203 0.0 0.0 0.010912524151594908 1.4933771647105125e-06 2387648.127813435 326.74926001600244 9140 None 733601 MATIC_20210314 2110419300.7654428 34395.43116882057 0.4229744479804992 6.894202076481496e-06 904427909.5707891 14741.573165852858 2211 7735 30873 STPT_20200605 9409461.751674414 962.6446303437774 0.013354823883790357 1.3660682468688565e-06 1511539.9451083285 154.61579582435743 11162 None 1498022 NPXS_20190922 83001896.5957657 8310.45627647507 0.0003506453116430499 3.511217606317581e-08 1614572.136368113 161.67659807915973 65270 5482 147405 ONE_20191026 14455856.140270906 1669.697579743023 0.005185397363380802 5.989299660725957e-07 2657966.441933203 307.00361791583754 None None 174888 ATOM_20210620 2843053867.0216026 79751.0465614906 11.911410550212025 0.00033455621148213764 403131515.0862236 11322.769192427884 159671 30925 46073 THETA_20200319 56567494.24706935 10510.97099564636 0.05665669641696454 1.0515818597807334e-05 2043457.9890681296 379.277912131254 None 4026 384607 OGN_20210511 287238567.7681914 5144.558505467386 1.3605338379614336 2.433357935315509e-05 133192568.93698013 2382.1913538988792 107221 5243 43246 ENG_20200418 12756803.529203417 1812.0642856960515 0.15422057056666064 2.1906552641009727e-05 2259081.916084728 320.8955636282782 60863 3579 458891 POLY_20190512 40323909.23923381 5522.644375444673 0.09068337982311507 1.24501645042869e-05 6019178.574825287 826.3891749891743 34660 5053 307356 ZEC_20191102 293022373.5725424 31721.899440724723 37.76138764130094 0.004087957267205138 156892723.8997301 16984.83003140545 150 15344 210927 CTSI_20200629 6746518.473847715 739.7011769106789 0.03388573582525666 3.712788091332334e-06 1957761.6631285823 214.50778658060113 None 117 235006 LIT_20210711 55256058.724109165 1639.1050680778908 2.4940906936078786 7.396354517190645e-05 4413241.340448487 130.876946887043 None None 323209 ONT_20211011 841566828.7937346 15378.037119690685 0.9633424839849222 1.760054432685625e-05 151910780.2582383 2775.4536586017425 159355 20525 107360 AKRO_20210301 80695415.16363502 1778.506395446271 0.030417030756277365 6.737589308907616e-07 15544512.94182075 344.32205118303074 32149 None 152537 WAVES_20201031 321749188.5645741 23687.3023940389 3.215664696465545 0.00023693983199541357 63648801.344767936 4689.834830700719 145236 57078 241696 NMR_20211011 251747187.1209316 4600.819599183707 43.25029180940118 0.0007905369078709952 11591641.654048154 211.8741901377874 31105 3649 2133102 ARDR_20200324 34077269.630246185 5258.959206313262 0.03411139825475706 5.264226090838276e-06 2141073.137817268 330.4201425668269 64399 6376 1001396 INJ_20211002 348431590.94347274 7234.8814583046415 10.672527417405488 0.0002216006929094101 22957019.25610374 476.67166129651315 85942 4120 113899 RVN_20210422 1511254972.5538769 27891.159087147353 0.17411924534844395 3.2191822156160708e-06 203913327.20251387 3770.0264272555887 58239 32905 40524 ETC_20210110 920808379.2263478 22755.300524092425 7.830793969747309 0.00019426452234682287 1727033275.3371534 42843.84132778651 None 26424 167227 THETA_20191017 84368438.88267592 10535.16045387672 0.08444795527219762 1.0547873907588814e-05 1450140.7671120965 181.12815059227734 None 4024 413739 FET_20200324 4424724.589008021 686.8285744451434 0.01317403371922654 2.0330767888315485e-06 2957780.210527056 456.45809177729205 None 360 584622 SNT_20190714 81293079.68100058 7142.502490511263 0.023105869374096207 2.027118111731227e-06 24869509.212733842 2181.8453025410695 111749 5734 317609 NEAR_20210821 1922156678.5940232 39122.23316588004 4.412823245602742 8.975594168822375e-05 114392016.02854356 2326.7107130310415 None None 6382942 QTUM_20190221 174806757.3962081 44075.384326926454 2.1524935032453785 0.0005423496555766863 239217205.539978 60273.98867267777 174392 15191 244662 GO_20190621 15969052.439997798 1670.84584829868 0.021859242066299623 2.2885220891791146e-06 842106.3689955241 88.16312208078821 9863 674 943493 LUNA_20210201 706993420.4318646 21392.754382149866 1.4650179899660798 4.4190975890277736e-05 111715808.29669614 3369.808852051362 21249 None 115872 MDA_20210819 15261713.699343015 338.5834405264743 0.7760812696985598 1.7234809497222043e-05 423808.00681136636 9.411707956343731 None 390 2385325 OMG_20211011 1821949113.031096 33292.66331770648 12.95903288010554 0.00023686762223903315 812891653.7853825 14858.185402530655 2923 5712 239148 GVT_20210603 20731139.574420143 551.244758825214 4.6727074731306235 0.0001242481386438069 457255.4851310119 12.158506227682908 25810 5650 262747 CLV_20210814 188285297.51899052 3950.3600895481027 1.4583691258308231 3.05558993047446e-05 71436943.66158172 1496.7541608634003 62871 None 108852 EOS_20210821 5233476501.37394 106505.41531096921 5.455042791639195 0.00011090929597617219 1604680753.576047 32625.59423335947 None 92238 70056 ZEC_20190227 310203384.13261265 81616.19874098254 51.861713492255646 0.01364509909286586 146043234.75197655 38424.76994769883 73564 15037 147645 DGD_20190719 34557940.30681429 3219.965766748048 17.146706339967178 0.0016070631851795303 1427646.8133735775 133.80520956749174 17164 3372 582962 NANO_20190901 127320536.2563425 13263.576632490094 0.954783464130376 9.949113606988558e-05 838840.7557245842 87.40957809190144 98669 47535 229089 ONG_20210805 0.0 0.0 0.8014827497326273 2.0155523428968838e-05 13680275.020812044 344.02874396073804 142015 19764 173647 GO_20210729 23154978.897735383 579.1703281340664 0.02126273702218317 5.314524389160198e-07 453104.85436894995 11.325149706166178 22465 1107 149047 ANKR_20191026 8509784.004924245 982.8597008137737 0.0021352734575579404 2.466309078880468e-07 1770960.8207771198 204.55163413212136 None None 5007 BRD_20190302 13228144.0328762 3458.0496742435957 0.22061721547376278 5.769605084612349e-05 390996.69788402045 102.25387585161361 146 None None BOND_20211204 124042478.54367125 2310.1380640024327 24.585720324008317 0.00045761270627694777 26339914.737834744 490.26343371010444 26891 None 201520 SNT_20200301 52676737.15971892 6142.524276799076 0.014572504206606508 1.7011485020066343e-06 39140107.84732434 4569.093608679019 110604 5617 203342 ALPACA_20211216 78748696.65708752 1614.1619283696857 0.513338103582524 1.0504296679525573e-05 3942075.793075401 80.66561467900702 69139 None 30691 BZRX_20210930 79901926.95235804 1923.2474889915902 0.2592294489036411 6.233662523871086e-06 17462153.24100691 419.9105105725119 None None 234610 FOR_20210219 28079994.14847024 543.2685675033887 0.0498100880796787 9.636033976952958e-07 11565050.237247992 223.73222238238688 19659 None 211911 BNT_20210519 1309803469.3608847 30697.140038384176 6.612293387405533 0.00015455464110505871 227371289.75228313 5314.538546065153 118158 7247 28093 AKRO_20211007 77629445.39971313 1398.496671982698 0.028649934347638968 5.164052932923795e-07 14617981.517788792 263.4841302405427 46224 None 204556 ANT_20201228 102561872.78441957 3863.017263650283 2.9243770466943126 0.00011120019021052485 14643056.087796697 556.8059782397086 76468 2687 106385 LTO_20200719 14946616.774215395 1629.8810199034722 0.06727584880619956 7.338775671738987e-06 2632156.147539823 287.1283505530948 16139 510 1277084 STORM_20200520 9246017.88621509 948.2054833887129 0.0012057421690636985 1.2350944854684188e-07 188467.23021265783 19.305523411188194 25725 2512 825026 WTC_20190421 75881704.76227535 14288.264253342008 2.7271617305203932 0.0005134653106696225 15452346.038732994 2909.3410818134885 55522 20273 1107833 SCRT_20201015 26546304.192846563 2329.1821368643405 0.47312712544657065 4.144958618131791e-05 606401.1924461523 53.1254226081975 61748 None 539408 WAN_20200506 16641884.223376457 1855.5993090305012 0.15695088616509262 1.7470677755770418e-05 601729.1433545979 66.98029056520272 104557 16231 828507 LTO_20201224 26322999.74165062 1125.770440857967 0.09598948729341167 4.116983371412301e-06 3662289.1835196023 157.07536413613286 None 721 1084652 XVG_20200502 52276344.3366618 5899.17958878529 0.003202746069040731 3.620884778200969e-07 2348736.6429756414 265.53790326251396 293079 51819 303181 STPT_20211207 145634253.57347846 2885.2930303143257 0.11053383069726759 2.188477763847472e-06 30264401.80062631 599.2099428655138 None None 438073 HC_20200905 61433338.25463997 5859.023431422887 1.3722801875242268 0.00013087717518874326 30426484.6896973 2901.8362309051595 12871 846 533192 MBL_20210708 29487821.156382192 867.8225807901857 0.008360034325280059 2.460530160604095e-07 25053229.56029087 737.3681082531762 None None None OGN_20200725 26239010.880852588 2750.135482691704 0.33967668943919466 3.5610228669072236e-05 7242435.498149371 759.2654786994814 64905 2334 168509 ATOM_20200330 348388380.02445334 58916.87905066827 1.8555395425689427 0.00031435516107083716 81944621.57431586 13882.600786949146 None 8330 84919 BCPT_20190729 4960843.56673986 519.4087261429844 0.042301279691382775 4.435850151254235e-06 508579.6239464362 53.33131806570828 10983 2962 908173 MDT_20201031 6927682.430629522 510.0839385928177 0.011388935840725164 8.409152086296758e-07 388749.3865125415 28.703759160262102 13152 65 935822 FIDA_20211204 406411755.9025265 7569.285671594773 8.281029871349741 0.00015409459383397434 6681993.426413345 124.33949388430655 58870 None 354569 SUN_20210325 0.0 0.0 0.00044709085161867996 8.5e-09 70.56405461999826 0.001341549401197645 None None None AST_20210821 37966305.33711019 772.0643212370463 0.22015866826782735 4.480955610634039e-06 2561504.8338038707 52.1350785186276 44576 3698 258024 VIBE_20201015 2623331.1619882435 230.17200576 0.014018634970796631 1.23e-06 34959.90598997939 3.06739454 18709 None 2256816 SXP_20210210 209642011.52681348 4500.005069520449 2.430834122327477 5.216993226584729e-05 275523904.5864279 5913.222670304145 97620 None 145148 OGN_20210710 212518420.93867794 6255.0267489031885 0.6752799410042193 1.987132623660053e-05 48457159.8738969 1425.9390422901622 116649 5922 54387 NCASH_20190901 3173550.610222633 330.6036320097323 0.00109257614077357 1.1384954765724235e-07 606165.8810669167 63.16421235032672 59755 58898 754232 VIDT_20210508 57805563.105663806 1008.8170027933368 1.2510929170122393 2.18303400213724e-05 4491425.003521457 78.3709456540772 27526 1553 391219 WTC_20210408 61685489.09751049 1095.134548841789 2.084093087440151 3.708810922802115e-05 47865655.17475665 851.8077518181638 58905 19331 410990 MDA_20190603 20998592.990558095 2401.904585185559 1.0703471123194426 0.000122395018438608 2694988.102978637 308.1739696957818 None 362 1548972 SXP_20210828 745914107.9107068 15206.803966822321 3.9830015823722333 8.121104427408106e-05 164984272.54972708 3363.9316443813495 None None 111870 ANKR_20210710 505641286.237837 14882.473513578892 0.07233820181561401 2.128535355412777e-06 20181256.036455233 593.8289301097949 115666 None 5363 GRS_20210707 60853511.93334475 1781.539618448779 0.7858539231991464 2.2998910634060318e-05 14968369.474222155 438.0663908551773 41386 106850 6338611 STORM_20190726 14011570.700724518 1416.934878251015 0.0022603923088211323 2.2867277043374616e-07 315419.3449992779 31.90942350489568 26702 2570 3721557 SNM_20200301 5021404.676432609 585.5355094431649 0.011428343059874327 1.3361938082215497e-06 137038.3574152515 16.022428072711737 30250 9710 None HC_20201201 43774707.260966845 2226.535861582008 0.9722607415619873 4.9526051025501485e-05 10936131.708377495 557.0763004793987 12725 842 1295476 OAX_20210220 20203454.227168884 361.40957368957623 0.35901249526744233 6.422196491991623e-06 1434739.0503979067 25.665335379273728 13258 None 1071767 PHA_20210427 149740321.68639797 2778.7513058885124 0.8398015315274118 1.5583878011399442e-05 56971570.45646324 1057.1997915943211 None None 139188 BCD_20210916 410771823.3214578 8523.453211887785 2.186421023432415 4.536322948942295e-05 3843099.504931703 79.73551430603206 35103 None 803974 SKY_20201106 7385089.826295653 474.8892711932107 0.38314680971590404 2.459123176959447e-05 200659.9019730329 12.878807890745 None 3806 1281976 RCN_20200223 38137262.12982975 3950.88776772304 0.07494586395808552 7.764037987922189e-06 2021976.3787906282 209.46721522072912 None 1139 845670 MDA_20190531 18543772.275469195 2232.4024916788367 0.9443152087157457 0.00011380832264087394 3632050.8020837205 437.7326614211256 None 362 1536513 GAS_20190622 46229293.3247084 4567.3140671034735 3.330718226817327 0.0003281091956469035 2038504.869486124 200.8132022889582 322372 97759 201306 WABI_20200511 4218272.668649287 481.7491625436006 0.07141493481189162 8.135727134129801e-06 1172269.525759743 133.5472056980569 None 7697 1649170 CFX_20210909 274492432.3780941 5922.538978137168 0.2748383216539543 5.933820502615393e-06 22500586.26236125 485.79266268614424 38383 1346 218228 VITE_20200106 5466025.790582713 744.4092469507658 0.011368633938918541 1.5480185095504375e-06 3043595.2932011844 414.4334204769212 None None 589611 ELF_20211230 169437497.1322644 3653.3020145827477 0.36835543184500097 7.916574717290966e-06 15540735.318320367 333.99641127294393 94784 33564 98073 TFUEL_20200506 0.0 0.0 0.0020906457399321745 2.3234176328304134e-07 934813.4647790166 103.88953259701107 67590 4029 365481 SNM_20200308 5184484.268207187 583.2723158130468 0.011855882300974648 1.3328846720307474e-06 264185.72205815493 29.70079244728519 30218 9705 None SNGLS_20200320 3032889.4332839614 490.0530386405505 0.004635883535900149 7.500431324773981e-07 122631.3892486521 19.840625982044784 8319 2131 1285734 AAVE_20210202 3631127137.1726813 108839.15439632529 294.97567570503713 0.008832013126259551 640809111.5637954 19186.78369404788 None 3307 18454 MBL_20200501 4498337.772092655 521.0242278675732 0.001274081618797284 1.478103661149359e-07 1505284.8874850422 174.63301176613635 None None 94095 WBTC_20211225 13146593118.088827 258644.64985936118 50795.82972129129 0.9992731619423189 286060661.2863696 5627.48444270662 None None 207353 AMB_20200305 2466295.40839954 281.728466389564 0.01707517177843755 1.949786577951741e-06 428476.70308758353 48.927069987089155 19153 5516 509552 OM_20220115 52937750.73589188 1228.2160106220363 0.1265081037118577 2.933225381123327e-06 2649119.6535233697 61.422666037630684 56779 None 64108 MTL_20190401 25247682.64931969 6152.486134063521 0.5827533717220691 0.0001420126854952455 100973520.55511521 24606.499959952504 None None 724341 XEM_20190220 390452606.47041386 99741.34084095257 0.04339380336608008 1.1083949151711315e-05 16485358.794671949 4210.8057937758695 214829 18486 136957 ALPHA_20201228 30523177.26330458 1153.8248285011898 0.17295972488619163 6.5702634500724025e-06 21116685.759596612 802.164716232262 None None 104236 GRT_20210603 941012986.2497014 25007.66664049513 0.7684248935108314 2.0407666814271344e-05 105774937.19385558 2809.148550211895 108490 15056 30919 STPT_20200523 7474352.959848064 816.6006836930433 0.010612642051565362 1.1613610338929665e-06 1544421.353703782 169.00888312154456 11088 None 1404978 MATIC_20210707 7126014765.646805 208629.8345395169 1.1300219469721435 3.307138006913421e-05 615326977.7451727 18008.2452401289 517615 46458 6545 SNM_20200626 4133633.089242774 446.352649415644 0.009443713527163331 1.0199980155929873e-06 226721.79880490474 24.487801774959085 29368 9602 7298232 SC_20210828 1067094056.246932 21756.16303502041 0.021983716654925826 4.481483915629669e-07 98349977.11740781 2004.9104865780314 140061 48171 113075 AMB_20190909 2281641.9410642483 219.6701046163369 0.01578981939461074 1.5192516804443127e-06 109380.7788773977 10.524308604474124 19263 5608 670257 TORN_20210722 28783786.99173697 894.4354623633219 30.2285794759457 0.0009393313488567588 5141214.312756132 159.759534152301 21678 None 132811 PIVX_20200913 27222353.02568357 2610.6832906970503 0.4255303502990089 4.0754128634806654e-05 211058.60570387135 20.213621802286152 64721 8621 359685 ALICE_20210813 219184381.93512234 4930.164451724919 12.60793685823333 0.00028359429981448614 131630236.98221733 2960.800431595559 None None 36136 RIF_20210703 115935652.25678459 3430.062773589053 0.15627181407493215 4.615510671493369e-06 1013125.0721795636 29.922795802191725 44440 3354 427293 ASR_20210120 0.0 0.0 4.121564751121741 0.000114354858124579 3947896.1973337047 109.53633796819261 1931262 None 205258 OCEAN_20210120 249766413.17838913 6897.455383045959 0.5913767475713632 1.6408041156770042e-05 91794104.11613998 2546.87294431492 37521 1410 64181 TOMO_20200127 31407322.81671991 3659.8047693505114 0.4527597854795491 5.271067864487601e-05 18464767.027631164 2149.683855016164 20619 1456 248664 OST_20190719 8858342.749433922 825.3836933005414 0.013589205696522794 1.27401170606018e-06 349857.02103961754 32.79970516347889 18126 757 581011 LSK_20190804 176558723.90745136 16363.210702033932 1.3181871880082003 0.0001221441023534883 5133190.435876509 475.6448429354231 182495 30767 180876 FTM_20190916 32753802.701940186 3179.1709627640685 0.01571199852408518 1.5248562717626863e-06 3775292.229872783 366.3937484231425 18984 2150 407157 CAKE_20210527 3303963419.0526843 84328.93789410403 19.41170153567073 0.0004955005357388979 363902779.89427686 9288.934412222718 794003 None 978 DGD_20190531 71839945.53584868 8658.108674502757 35.9199907279197 0.004329056501779629 9601909.392263591 1157.216564974457 16989 3362 469607 XMR_20190314 841179686.8916568 217505.40258591925 49.9679305448807 0.01292565104538871 510630026.8574474 132089.23140270083 314903 157492 112805 BAND_20200806 146394635.81138694 12496.883759498845 7.154887676691141 0.0006094877201191784 69642080.27662055 5932.447111704189 20819 1518 241439 TNT_20200410 20969830.188004054 2877.2598861376505 0.04901510557875244 6.72234318229932e-06 840010.3572593019 115.20607436232338 17599 2562 952681 COTI_20201030 16355877.204369895 1214.2352987183124 0.028743606506157943 2.1375859124210294e-06 2778493.309159087 206.62919088257564 32345 1204 146128 QTUM_20210212 764197572.9584848 16026.466329715442 7.4011565663396235 0.00015501046669358945 1754199700.3479128 36740.11106066459 197845 15378 197984 WRX_20210219 56782294.11420456 1098.664729943465 0.23882077613626473 4.619317364669527e-06 11997908.888003519 232.06586027697657 60350 None 4431 BZRX_20201031 15128917.882898435 1113.9224328107637 0.1075747285214068 7.92642906172088e-06 5179243.549358564 381.6222188206296 15340 None 78745 XMR_20190530 1582106099.0850914 183210.21588431622 93.11688721116548 0.010767912301709473 391126790.6137525 45229.3789699723 317829 158005 116319 REN_20220115 460634261.4837577 10688.83055571725 0.46231742156925376 1.0719036230812174e-05 41647696.76795138 965.6204801243402 111814 1247 71958 KEY_20190329 8003011.154811283 1986.6066403784025 0.003057504520229216 7.595121209101558e-07 985585.238061602 244.82839830496457 23771 2830 726205 COS_20200410 11999672.140972286 1646.3914923196003 0.0061059560138611935 8.374133047241929e-07 10127615.530717986 1388.9716813062203 None None 122996 QKC_20191113 17326470.35843306 1968.6951434523269 0.004640373439318146 5.272867225164483e-07 9612277.611743504 1092.2453600112015 49360 9225 304095 DASH_20200523 699128395.512995 76382.36096582963 73.70751721242975 0.008066753803898829 516434591.25590503 56520.02483643526 317550 34911 78138 REN_20210711 325010306.702952 9638.348181470888 0.3686499117747095 1.0937367943746145e-05 13180663.692068553 391.0533108469313 None 1181 90516 XEM_20210221 4587146497.667828 81588.06685941458 0.5096829442419456 9.065340763164436e-06 402355967.117369 7156.397896414749 234105 18488 44148 QTUM_20190629 497923345.68949676 40230.91948708488 5.209120873916336 0.00042075832987682857 994477148.0061419 80327.28631638514 178339 15351 453664 XMR_20210821 5066033002.770679 103097.80674423923 282.00255452700617 0.005733539768745605 249825942.71149856 5079.340434356117 434075 231930 39268 ONE_20200106 17321059.2692109 2358.894624997502 0.0046447595495113314 6.323820702936813e-07 8075581.9099279605 1099.4870999433608 71410 None 276429 LINK_20201018 4133437986.560987 363881.2164976386 10.655830239445267 0.0009377102430037567 386831124.9761802 34041.0366955803 94448 23557 33256 STORM_20200523 11195425.696681468 1223.0115654466106 0.0014515867545333901 1.588498213582523e-07 4992288.108192241 546.3153143817303 25670 2513 825026 STEEM_20190920 53941983.76569627 5266.732536804652 0.16644047161501002 1.6240261744189847e-05 2012162.0290841917 196.3346877533146 11054 3778 219044 ARDR_20190510 67941572.19444399 10997.83126081535 0.067951338735463 1.1005813177247034e-05 676844.0042960416 109.62578221485964 68787 6558 1327077 MOVR_20211221 459075128.02211505 9730.563510844127 177.89599422995866 0.003773879607134802 19852552.37667072 421.15137492666514 None 6570 15676 BEAM_20200317 13335825.30764514 2647.134423814675 0.23152188867982276 4.6022014480866444e-05 23718984.984308872 4714.869408865744 14986 1473 244013 VIB_20200711 3149353.225580231 339.17573888717857 0.017249101405981872 1.8578393099207009e-06 522192.6415081517 56.24351054071321 30757 1101 None DUSK_20201030 12113788.44067241 899.8582272003151 0.04145278170241872 3.082406216506698e-06 629406.8263483165 46.802347986567106 18249 13349 724869 POE_20200321 2473698.9611891527 400.1410751834864 0.0009881047144840837 1.5935908036096695e-07 41357.0928447639 6.6699694734134 None 10443 698681 LOOM_20190531 52512567.673783354 6319.228126828134 0.07586771108725786 9.133377219758765e-06 6845872.531495972 824.1442285852609 19619 None 402672 DASH_20190608 1326543160.6540918 164880.82614202777 149.62113470881752 0.018611274923322076 1492731256.309549 185679.86302122148 319636 26945 107403 GAS_20190714 36409929.527999476 3199.0178420298575 2.615534564826993 0.00022967402481626845 1218303.2034160895 106.98103704610563 324232 98096 188893 RVN_20200713 131870033.0325061 14213.196282104982 0.02009455272696562 2.162752349654626e-06 10985384.697752407 1182.343637588975 32469 8378 199638 BCPT_20200903 3162810.699726715 277.61921413 0.027228366004981058 2.39e-06 134802.87330379087 11.83247159 10505 3193 1330981 BCPT_20190819 3703675.7055185335 359.2095869786622 0.0320005451507779 3.101537482789848e-06 245384.55685052648 23.7830136075411 10938 3057 1353671 LRC_20210902 665269740.6389817 13676.24310542199 0.5345016560673423 1.0985490754723498e-05 222726691.75351262 4577.650948905748 90291 11571 326461 ICX_20201224 210702159.03176978 9010.438693783943 0.3534906268293384 1.5161191851749627e-05 23400454.495975323 1003.6440943677482 116611 28039 334338 NANO_20190807 145395801.5316479 12718.66861350808 1.0935978965136735 9.531331628101908e-05 3114524.0974475835 271.4486021884602 98799 47203 262200 GTO_20200305 7419573.52236401 847.5287526551498 0.01120198982370118 1.2789952119323298e-06 1094539.523047269 124.96983404557473 16915 None 1191106 GAS_20191220 13496040.927842744 1889.3622722852592 0.9690827873023943 0.00013561870570194954 923159.581420815 129.19196298713902 323459 98747 183626 DNT_20201201 38138796.57735882 1941.0286460657098 0.050640827357384344 2.5795962877675508e-06 4323567.120374054 220.23845730088436 59522 6095 340409 BTG_20201201 170263282.4516893 8665.34705523718 9.711303223166388 0.000494684685285106 17380448.877994314 885.34377783759 79928 None 377276 ALPHA_20210805 260225594.52787742 6536.670115124703 0.7444257035565288 1.8720664560984778e-05 47891374.18673163 1204.3624329883537 71593 None 58883 MANA_20211028 1005383940.6789303 17177.4729533834 0.7556140114489933 1.2912502071145297e-05 127256344.77460526 2174.652389408997 189346 38892 11242 WTC_20210314 38627044.19213586 629.5402242027083 1.3244283814822901 2.158730141114151e-05 25235014.45091094 411.31394545973075 56605 19128 448781 CMT_20200412 5898091.8093670225 857.154829689012 0.007516443826466358 1.0922195941413946e-06 5727887.357334094 832.3232301273249 285688 1637 926050 SXP_20210729 156176670.44240317 3903.89895574439 1.8077214110633169 4.517958658626044e-05 120681203.49159586 3016.1322696706716 273554 None 69993 SOL_20201018 95604758.79489854 8416.426240422488 2.2035632012257804 0.00019389228564117877 6335659.683846947 557.4768794752101 None 2488 70876 SUN_20210114 0.0 0.0 0.0003347628402679272 9e-09 0.06822212772736981 1.83413173653e-06 41 None None GXS_20200610 36437847.865230486 3728.3404328973515 0.5656552585162555 5.7925173822079016e-05 23252727.466928944 2381.164605262099 None None 447663 STMX_20220112 172751288.05131143 4032.0718293895948 0.018552729186644225 4.3361853748179893e-07 3490017.362729884 81.56946664765854 81683 5805 87861 XRP_20191108 12617635477.367332 1368655.1552699553 0.29173271465291817 3.164413270216641e-05 2766281976.0571494 300057.51684759825 942063 207106 26217 BNB_20191015 2867379837.7550764 343541.1135942291 18.404843678815887 0.002204936591509986 232507149.33811006 27854.815303503787 None 56832 1637 KEY_20200418 1817727.1913854477 256.7656063202435 0.0006387624656472351 9.050427945612209e-08 637138.087843759 90.2741263858111 23369 2750 220323 ALGO_20190930 95412329.50631265 11836.801746169212 0.22472250115657455 2.788972726135331e-05 69635635.18262137 8642.298225228657 None 625 199307 XVG_20200422 43236924.62451767 6313.555693844463 0.0026612804071593486 3.8876582600346257e-07 2091378.758178997 305.5133116458819 293559 52029 294741 LUNA_20200927 139494840.7893658 12990.968305771195 0.3158412191414196 2.9404953936667097e-05 2979831.9374491973 277.42364058083876 12225 None 175176 TROY_20210703 15379846.706202935 454.77997525107423 0.00810440772653808 2.3934103192348376e-07 4169830.5201484105 123.1442905285163 59349 None 430405 LIT_20210620 67015618.11180855 1879.7569787404957 3.0149174375676635 8.468682711386619e-05 3427206.185884094 96.26771669797184 None None 250622 XTZ_20210108 1905714405.6054983 48686.47118907253 2.5519901326720658 6.465081497399499e-05 305476402.3143637 7738.783199866468 78810 31766 186076 PHA_20210703 155281168.38591382 4591.643028992096 0.8704963467781919 2.57101267224247e-05 35429611.877596624 1046.4142836103547 108993 None 165668 CND_20190228 21874182.340365462 5724.486978892833 0.012611342071813482 3.3077430696280177e-06 468341.77950074873 122.83817745481946 36744 6228 644110 NANO_20190324 131967935.29265045 32971.16645755457 0.9917937662108269 0.0002478681834364012 1267810.8169154727 316.8501102103696 97363 44843 349841 NXS_20200404 8862008.945259714 1316.2902967013667 0.14799466798935895 2.2008242891293822e-05 47873.97210013652 7.1193240977207735 23641 3528 537983 BCD_20200423 96370280.66918282 13548.629780001631 0.513242025498192 7.218580976301507e-05 9725404.616930395 1367.8463038264174 28779 None 812794 BTG_20220112 642270255.4062675 14982.240925105796 36.4931314241419 0.0008527847313610859 30128610.05655002 704.0562875993882 105693 None 248860 FRONT_20210821 65524994.83822779 1333.6499333286997 1.4252379382814833 2.8990483293875374e-05 29320253.37164414 596.3974805271894 71617 None 304891 DASH_20200105 426937096.0562592 58096.89304768473 46.164579831790505 0.006278265100899205 446024329.6734308 60658.17112045518 315668 33157 83621 MTL_20210511 235397140.1181501 4216.05764423267 3.6473192012483713 6.526635822368816e-05 49029566.78573117 877.3515814833295 None 4096 203255 WTC_20210828 28295667.461773966 576.8356114533171 0.9672548071980037 1.9717943643537904e-05 8772942.661557823 178.84055752557813 65690 20044 846713 ADA_20190608 2671196811.1532965 331992.6790126018 0.08577380440177361 1.0669347335504365e-05 209735394.75958553 26088.848347653195 152092 73589 105576 XRP_20190629 18022571581.23273 1454897.3403416437 0.42419799835559024 3.426390856447968e-05 2518459272.760998 203424.48238738044 930253 202878 41010 KMD_20190528 151413161.06167346 17171.455940316882 1.3270751344191507 0.000150796173020437 7633465.106275098 867.3942379420391 97024 8369 351516 STMX_20200806 23402261.47443711 1997.7189719726782 0.002935322341308576 2.504727464092524e-07 3636713.366527948 310.3228466592913 20639 89 195986 HARD_20210318 71871878.25095294 1517.8470889414311 2.655734362570402 4.505652734504661e-05 68065629.98390712 1154.784515292966 24449 None None FLM_20210429 0.0 0.0 0.744568606518549 1.3598027415042202e-05 36511582.86460983 666.8096135304637 19874 None 105842 NAS_20200526 14937130.348650951 1680.738304278656 0.33134348285196275 3.724762093296632e-05 7782567.407427728 874.8689371586032 23423 4926 956871 MTH_20190804 4867028.194757428 451.0058083516543 0.014256737623691547 1.3207540807358548e-06 127509.54680463833 11.81257302478145 19501 1998 1172984 BNB_20210620 51823405992.95456 1453708.2509269763 335.07018119431814 0.009411128088352984 1215531869.4137082 34140.686818960494 4314342 510539 132 VITE_20210212 19473685.98151849 408.5604691672755 0.03373307672713783 7.067387356988528e-07 3678573.825261049 77.06947799245327 None None 688715 NXS_20210902 53575071.72427099 1099.7996651866508 0.7859619821739928 1.613438296999603e-05 256071.5583344102 5.25668757980259 26387 4019 615837 LTO_20200801 15501001.952639734 1367.5235243216905 0.06715878530746087 5.927010412141723e-06 3833655.936140758 338.33427072944585 16538 521 1057940 SKY_20200907 9822421.6594666 956.4967662366091 0.5374015098608889 5.2331576079022157e-05 668747.5190039213 65.12190797057903 17208 3829 1022336 YOYO_20210420 6681005.77304683 119.45239334665081 0.038200354879263064 6.82999532110627e-07 1327502.645273181 23.734954517121317 9783 None 783243 ANT_20201124 143302992.61417475 7824.913881542848 4.141297451205981 0.00022557045441305837 37635149.71731643 2049.9319171498714 76158 2684 92172 ONT_20190704 930031842.212801 77564.66708111463 1.4294397265370657 0.00011910716233476497 175998855.3098918 14664.993452303164 80851 16272 247326 BCH_20210131 7672188583.386698 224274.34579475134 412.99190902241384 0.012088346653840825 4245091063.6962156 124254.5706925622 None 417959 337812 REN_20211028 1018677907.424238 17404.60683226403 1.0161815206210734 1.736527617389865e-05 107086440.28812265 1829.9738504853042 100911 1206 86593 STEEM_20200310 71836594.64642829 9083.31269220381 0.21030305908398925 2.6536066848593408e-05 2589153.051641534 326.69966266234917 10929 3841 211376 ONG_20200329 0.0 0.0 0.07805652486635672 1.2484914604646251e-05 8092241.509263663 1294.3305428509545 84166 16536 298289 PIVX_20200531 22723497.336312536 2354.179211826045 0.3606457056902891 3.734152654384845e-05 2939449.2771979403 304.35278024090593 63756 8471 263875 EVX_20190708 13786873.414567705 1205.5713506696948 0.6537415481331614 5.714043093580084e-05 1036643.3413206134 90.60805056514909 18217 2913 1053022 FTM_20200129 19587724.75817267 2098.6598815921056 0.009278832118339303 9.945940097112404e-07 4657201.960393073 499.20346793077044 20633 2275 555132 CHZ_20200526 47176182.5713728 5309.0564925987 0.00985557736899459 1.1084780268685732e-06 9541107.620490517 1073.1089365270695 None None 285725 MITH_20210212 13183212.570136778 276.5816514634523 0.021371214924918613 4.4760058372323094e-07 15533725.749253722 325.3397028287584 24632 2195 386896 BAL_20210722 190203199.84374946 5910.427527971402 17.672441293558357 0.0005472128433040294 23455190.773917522 726.2710012969302 91722 None 131138 BTS_20210519 251738118.57311922 5884.360883129586 0.09288557704305903 2.1711938551743006e-06 40790014.46299626 953.4637300414586 5808 7153 102901 KNC_20210125 277125802.88117886 8607.016153819464 1.3800801084504029 4.2777396269328536e-05 100439373.31440903 3113.250344675847 129554 9375 125563 LTO_20210602 62580225.071646385 1705.6157357715933 0.22125046890293742 6.031595736338874e-06 4924629.896548145 134.25226547247505 10004 4199 193640 HBAR_20211011 5040033573.641277 92109.4114748291 0.34310435915495685 6.268615349615312e-06 99408039.62552547 1816.2134827039647 149907 8780 43626 ONT_20200414 247880356.49446556 36160.54854829806 0.3878410539650069 5.6640491643505956e-05 84682241.69254735 12367.0347785638 84051 16509 252464 USDC_20210611 23237329690.439667 630519.8984102726 1.000654847457573 2.7149836258080196e-05 2678726031.0734935 72679.37921720403 None None 40672 TNT_20190515 7793446.147125949 975.1362242163442 0.018161259320043043 2.272066801734619e-06 481013.85102095635 60.177302841169194 17267 2504 1010954 DOT_20210217 29114114011.07639 592078.3187394984 30.19801882921414 0.0006137100444007337 2701843651.3887186 54909.18449436446 177839 14209 20426 COCOS_20191019 14620202.857397355 1837.040160385208 0.0009303057991376494 1.1689520090921721e-07 3137420.0213131635 394.2245056066108 12392 141 65492 OCEAN_20210506 591074936.8311096 10324.870467758456 1.3890658063310743 2.4230217109807898e-05 63665392.96602361 1110.5494692310597 104986 2890 66643 STMX_20200927 17117243.538626693 1594.5111023757963 0.0021474768399824084 2.00150482519464e-07 1856943.0867388197 173.07197353755967 21468 121 165229 DNT_20190515 8651703.870192397 1082.5236597199787 0.014869923613778847 1.8608489377420015e-06 1004916.1639904011 125.75701293774759 60877 6404 1175150 WAN_20200612 20848464.43670778 2242.05413994014 0.19635788997369205 2.111462234325075e-05 1358694.8490429514 146.10224534957905 104206 16141 818787 FOR_20210826 49150452.92947231 1002.7442564627673 0.08662806569547007 1.7677696969173532e-06 147342680.6421783 3006.738333711106 31337 None 189593 WAVES_20190905 112902193.9659147 10691.81351197328 1.1296391486789887 0.0001069452284802442 13296157.43125486 1258.7741811690066 142654 56908 33279 BRD_20210120 6018588.722829448 166.20041805336595 0.0791886271082269 2.1886927683888596e-06 211583.09957037488 5.847940756822 None None None PPT_20191026 19192385.190132726 2220.5058130059447 0.529782716055086 6.129439300932772e-05 3900043.1947233514 451.2241964229558 23933 None 810126 LUNA_20210723 3084447972.7830667 95282.6387508368 7.369026806069731 0.00022762507519724843 236914173.03035945 7318.144969551518 91924 None 20667 LTC_20190909 4457441370.613462 428882.37816690037 70.51511444414643 0.006784764501648279 2791893177.38771 268628.05047757516 451904 208268 124361 MTL_20210422 296559223.00046694 5473.247389173317 4.5880525308203 8.482564395436031e-05 275098399.97932166 5086.12287507702 54624 4054 207061 SNM_20201030 4068240.0724611627 301.94502672 0.00928517341854426 6.9e-07 202567.53285050785 15.05320271 29007 9549 None KNC_20200421 81517337.4967669 11904.249334960328 0.45682411581855575 6.672203116375323e-05 53596184.746587686 7828.05938892345 105078 7349 116749 SC_20210819 855367291.1123303 19011.46098812076 0.017599449304072572 3.91166750626714e-07 79525464.3862884 1767.539254132598 139755 47909 113075 LIT_20210805 85611171.18729517 2152.4767075815803 3.850944009044196 9.684053038472915e-05 19812888.57906069 498.2390379978541 None None 505137 RAMP_20211230 73862095.543094 1589.510177316968 0.19656685584712222 4.220371820557255e-06 2780587.521492478 59.700365912282045 None None 153760 DGB_20200719 271012961.356479 29553.101450006612 0.020285073038499364 2.2122387562640106e-06 10878816.521971079 1186.4162128730518 162624 22603 156961 EOS_20190922 4121431804.3897076 412697.1458547369 4.005352737828542 0.0004010821025794323 2685425414.125498 268909.1677857123 1313 68405 87912 KLAY_20211230 3253029309.293536 69978.68000029246 1.27415996245953 2.7382327427999542e-05 34928736.73113758 750.635818105752 None 1107 27552 OMG_20211120 1424013267.4395695 24489.31101826559 10.197689283973764 0.00017482442865327487 1159564873.1280305 19879.03933782345 5463 6298 125625 QTUM_20190509 196376407.21609998 32970.423960802946 2.411434343998987 0.00040476529145799014 167353407.0952132 28090.68833574268 177319 15278 401038 INJ_20210718 179419799.7780403 5676.477166365024 6.189071293422733 0.00019581009089258272 10988079.407198548 347.64130601387546 77106 3760 133527 CMT_20200501 7132908.406375101 824.2841296018136 0.008853079106178822 1.0270745960247508e-06 8062802.224431029 935.3919961819092 284985 1632 895705 ARPA_20200127 0.0 0.0 0.008867893189689823 1.0321856497879543e-06 857486.1312618001 99.80779658122812 12481 None 931659 WAN_20200318 11269338.215262018 2075.2190003072064 0.1059628580117249 1.957099276019445e-05 503476.8420565213 92.99052343155408 105944 16368 732459 REQ_20210722 35608311.83263588 1106.7445978621336 0.04614620085852164 1.4339599759076656e-06 957360.976972069 29.749303256462866 43404 27785 339521 SUN_20210124 0.0 0.0 0.000322987091991465 1e-08 61.51242362859813 0.001904485508982 41 None None STEEM_20210304 169572164.5739133 3346.709385568399 0.4479592328810978 8.84101098079527e-06 19195311.693881273 378.842423615002 12614 3894 179872 HIVE_20201130 44913601.08781428 2475.4421722732764 0.12130528972790397 6.676225733806496e-06 3025113.666959797 166.49184678053615 None 96 151628 COS_20191017 21246898.7029093 2653.5782398767724 0.016088131243186927 2.0092868886016228e-06 1230593.080136595 153.69184299571523 9394 None 200954 BAT_20200414 232373917.04572943 33910.906621528404 0.15827719845087754 2.3090455150285968e-05 75052449.6115087 10949.114835460563 115118 36772 18490 BTS_20210131 98049874.05998601 2865.9116698937983 0.03607508594358832 1.0557717084293229e-06 87601219.06057194 2563.7330109953414 13220 6880 136810 BTG_20190706 459437636.39846665 41802.01896822104 26.239819891091745 0.0023879476174174206 12778717.8215707 1162.923712979787 74611 None 363617 BAND_20200711 33955551.94075781 3656.9094013602275 1.6587703837806453 0.00017866703936809486 4685498.784152849 504.677563521113 16330 1276 430099 ELF_20200117 27603341.941689104 3170.954234813723 0.05975248845802222 6.862221726451832e-06 26962745.307943653 3096.5126546477286 83726 33479 920843 RLC_20210707 201597621.40805304 5902.216004474512 2.843660276039812 8.322295865881093e-05 14920474.535701394 436.66469089753315 45578 7711 151690 RSR_20211207 457835791.62936246 9070.602459263795 0.034791122319578274 6.888352380026283e-07 103921832.69428793 2057.5657117377773 None None 100570 POLY_20210221 276891023.7861288 4955.6699525016775 0.3515064346208185 6.25197614768538e-06 61915494.773140155 1101.2435573516093 37960 5226 248256 ZIL_20191020 47737245.489896655 6007.889781157744 0.0051457112192628465 6.472929247677886e-07 4863699.847933695 611.8179520017163 66325 10572 188924 CVC_20200301 15544948.457976755 1814.2412379924451 0.023151352128961234 2.7068397583625713e-06 5271925.203759606 616.3897756450602 86812 8086 106398 WINGS_20190123 9125453.027905976 2554.6958828552283 0.1020888858891505 2.8581212280387228e-05 788336.1265236073 220.7057309346538 37583 1222 1854227 IOST_20200927 88840697.1036603 8273.775844410417 0.005830229378756997 5.431071218095838e-07 30639385.94870384 2854.170502664046 621 52192 202070 LSK_20210624 285826996.1780391 8481.137746530892 1.9804971754807608 5.876586038571766e-05 12579690.791182326 373.268067171399 196448 32549 424383 ASR_20210422 0.0 0.0 8.963306933980082 0.00016573620470923642 2375648.182812153 43.926969860982716 None None 190056 RUNE_20210508 4258781440.381322 74321.4290115376 17.99110220882293 0.00031392702591251766 129422590.03398454 2258.296812706618 1422 4336 74862 SNM_20191127 6216988.495950757 866.8556501725405 0.01425246531187404 1.990569808126449e-06 1257044.7356472171 175.56508600368088 30756 9805 6555526 QUICK_20210729 52624592.61668725 1316.0413687592832 329.59051886305355 0.008237965079971692 8089441.958765326 202.1919216688877 None 1867 5182 JST_20210408 184458570.80266967 3274.8958325892127 0.1274593331243355 2.2664410444809993e-06 764817889.0287203 13599.746780073567 None None 84644 STORJ_20210825 190223379.75137112 3958.470106664217 1.3223952204801335 2.7536612600157842e-05 73905611.41912524 1538.9576119969254 104553 13766 71027 ELF_20200704 40987931.893845856 4519.4907303324035 0.08883450605820037 9.799753708731183e-06 10956040.649592517 1208.6125623134794 81074 33375 479052 UNFI_20210429 64683716.92127322 1181.6989607584255 26.55359251207888 0.00048497821636021284 45495380.34861666 830.933456708912 17441 None 90822 BCD_20200411 96575235.0542169 14084.895311739598 0.5146570186056494 7.499488843703304e-05 10989860.697914818 1601.4225924900438 28796 None 841501 VIB_20210725 6610407.660708521 193.52204184283312 0.03610160110151714 1.056497978436478e-06 2125388.2763011614 62.19858257783486 32272 1279 None BLZ_20190512 10942462.906289678 1502.2984884231207 0.05305466481400472 7.284579736232232e-06 754213.4088855709 103.55597824288189 35757 None 825478 ICX_20210117 382228367.6812629 10532.699744218518 0.6643872986745827 1.8358576459621173e-05 89333009.84205493 2468.480199463811 117808 28141 307045 SC_20210616 775087112.5498354 19203.301903932213 0.016126769051814798 3.995514953386332e-07 42021367.125048205 1041.107491341999 137832 46807 46227 MTL_20201129 21954443.777582917 1240.2425592790769 0.3407062571670524 1.9233399599992327e-05 3733363.2419337677 210.75417775150515 40543 None 376540 XEM_20190614 766161689.4570196 93182.0948414796 0.08493193732166175 1.0323437644358007e-05 39615539.10284737 4815.2504296115285 216383 18467 168914 ARPA_20201111 19462055.796836313 1273.0849663629108 0.019810365705110685 1.2968126076620963e-06 6842007.77551359 447.88683243334117 20963 None 548225 AVA_20210212 81001805.21954535 1698.7396321758997 2.103110119624676 4.404772122153106e-05 15490437.71370004 324.4330744480074 None 9292 69143 TCT_20210221 15550385.380896717 277.396772783938 0.02686585517963031 4.792486708442168e-07 3575782.0742240846 63.786869795970155 None None 1023236 BAND_20211225 233456562.19096902 4594.7270309204405 5.62404672575642 0.00011059908508707197 21040438.905570615 413.7684849112915 None 6368 255553 NEAR_20210806 1060836260.8921863 25892.09502580279 2.5039832401416 6.113674500948396e-05 53262355.501044974 1300.4428283185032 None None None NAV_20191102 6295535.5669106385 681.7759897586968 0.09457097722623425 1.0241578482972966e-05 25309.371098661566 2.740882224802951 50819 14145 454414 TFUEL_20210909 1765274216.680716 38103.40033460803 0.3327787420943684 7.184767068838316e-06 95411991.79062948 2059.9661272690028 194818 23457 22308 BTS_20190201 98775020.28871451 28786.646937138186 0.03675411547306484 1.0711491048216064e-05 5191340.805768285 1512.946233462677 13821 7227 107513 PERL_20200207 9386707.353072762 963.7889601239244 0.03584937997458633 3.681564300181719e-06 3457273.7391477427 355.04590548079534 10969 418 1007811 NKN_20211028 243077108.8733319 4153.766110799532 0.3731405234494556 6.371487604484348e-06 28109044.219698913 479.97045500198504 33259 4051 183195 ENJ_20210110 194039023.36172238 4795.152161524815 0.20973192183748773 5.189456581801213e-06 65157025.44645933 1612.1988087999289 None 16108 75025 QKC_20210220 102284784.48424236 1831.032069827961 0.015974037474638526 2.858850666775499e-07 17392227.242945075 311.2662063623315 64337 9255 339655 NEO_20200530 723081220.5112263 76674.32696248045 10.240842761260556 0.0010865919324632726 321299979.5967471 34091.136234520774 320023 99517 247839 KEEP_20210819 196669127.6288564 4365.530195861669 0.35632594889355046 7.910542037054964e-06 27134039.627561767 602.3837494166502 None 2886 114881 ICX_20190520 182012199.78508848 22241.677663710092 0.384271903154303 4.6971455960579116e-05 14565905.416495558 1780.4626858762326 113526 24335 274094 TRB_20210819 99506863.01937565 2208.7870142299735 51.63032063431353 0.001146401230733849 64682979.99739096 1436.2228815456951 23752 None 404146 SUSD_20210718 261305505.88624415 8267.525603143913 1.0059929657985647 3.1825702560156076e-05 106354998.53755337 3364.6582673220896 142700 7246 44436 ETH_20190902 18351207184.536457 1886144.47750708 170.72754514461607 0.01753032001622934 5582323205.083545 573193.4594165493 447963 445218 24829 CELR_20191022 14893427.662506638 1813.7113448278762 0.0044085316231280485 5.364322318879036e-07 5613639.07978901 683.0702823557608 18469 None 557601 ATOM_20190626 1583321627.8919008 134106.52461769388 6.601180486152296 0.0005583462916280228 158200284.00473088 13381.022090493952 26222 5538 113612 ENJ_20190510 103461208.20507544 16757.20816966123 0.11930476924720482 1.9325082999220356e-05 8360076.129768362 1354.17189192845 45772 12403 19139 BEAM_20200730 26360504.344807193 2373.9848643245446 0.39342779638554215 3.544664627787758e-05 9975457.423423896 898.7583337950675 15559 1542 344672 PPT_20200905 10504898.270081872 1001.457590950044 0.29151007984067867 2.7801914022692603e-05 791478.6817205303 75.48494471276817 23667 None 1237047 WPR_20190703 6493833.537929848 601.6819456611809 0.01060211818518075 9.803017806179375e-07 659534.6234345362 60.98243336277563 34798 None 1294750 OAX_20200725 3887051.6590254586 407.4055511879956 0.07373276766414462 7.729823089299095e-06 314514.64265712386 32.97234898068157 12008 None None LTC_20190312 3336937517.555072 863036.3640095135 54.805712521545686 0.014175370211437893 1629449053.3836854 421453.21189484163 439298 199882 247801 BRD_20211120 13366890.516313283 229.9440880191527 0.15637255943325143 2.6807782232521275e-06 423043.5675771827 7.252461605528 869 None None ALPHA_20210201 355232243.01060617 10746.470617598956 2.0471977301818014 6.175191441791778e-05 239659000.0915762 7229.102418858438 None None 61683 WAVES_20190522 246982085.573965 31035.96548705566 2.4697754303513415 0.00031036870410052695 49469588.88050834 6216.683510793949 139998 56807 43809 RVN_20200305 154965327.70878208 17701.533735649708 0.027471964128049083 3.1369796814860018e-06 28997147.893541873 3311.1379783075317 30253 7507 183648 NXS_20190906 12747748.081469418 1206.1381984427128 0.2135019163376412 2.020065152604319e-05 189331.64780562455 17.913762582461025 22168 3538 525271 FIO_20210408 92229040.16541304 1637.4394689433577 0.3968393951614291 7.062075548557563e-06 25829059.059927657 459.64883691843045 55017 335 283512 UNFI_20201130 5188965.544485063 286.04492711145105 4.825843315705744 0.00026559781031726534 11711963.842919288 644.5861889196945 None None None TOMO_20200711 47310776.50800528 5095.2263623819 0.6649300355557274 7.161996741760855e-05 6755886.884972435 727.6801658905106 27624 1583 149165 REP_20190227 141015405.26055357 37101.920643023535 12.819582296413964 0.003372901876638503 3445905.248801308 906.6364263406329 122421 9783 236100 ICX_20210729 558456903.410132 13965.961326640525 0.8680490975871654 2.1687401847044864e-05 41074303.11149777 1026.2033790973765 142364 32629 243184 AMB_20190430 5974721.3026847225 1147.7470548378676 0.041340110210562095 7.939405887011131e-06 1025747.8063038773 196.9958021514192 20692 5692 593270 DREP_20210723 0.0 0.0 0.5308952542752214 1.6398490311867287e-05 1562258.398279131 48.25561916877233 4080 None 319856 HIVE_20210909 298111863.53868574 6432.159591274318 0.8276863549290157 1.7879909103713542e-05 28882659.108656947 623.9311744853153 None 182 84862 FIS_20210509 75439816.5992207 1286.4124040323215 2.804362636817193 4.7739928527737234e-05 9701982.43227229 165.16121767323136 19890 None 252595 VIB_20210620 8646717.761410965 242.54861861247622 0.04735030347645775 1.3299296566795959e-06 1310552.9400869836 36.80954700822344 32219 1278 3737754 REP_20190811 119600854.40179129 10555.58892478934 10.831905757646366 0.0009567569957647831 13477626.780288802 1190.4473688063158 126071 10042 203996 LINA_20210427 214673123.3667664 3984.812547663441 0.08677397222743673 1.6097241420755212e-06 64854408.0869608 1203.0993135126942 None None 69525 QSP_20210203 30014088.035614137 842.6771200643782 0.04263027684503606 1.1991354950154662e-06 2651431.1179815563 74.58138678567936 58760 8168 199881 DASH_20200305 814512724.030951 93007.90630358033 86.93762496939473 0.00992726846229355 515855946.19299674 58904.76611859516 316812 34140 59708 WABI_20200320 4225095.052549636 682.6891367434984 0.07154803187728659 1.1575810638092919e-05 963354.6879092334 155.86188958604384 36718 7761 2574958 TRX_20200301 1098128042.2443762 128161.83882638365 0.016564348621303866 1.936691955172439e-06 1557806279.2023392 182137.6111806803 499953 72139 46870 DOT_20210210 22334799741.81557 479420.66255188157 23.177174086708273 0.0004975992071848062 1884256190.4570649 40453.78366649969 162299 12680 24755 XRP_20191020 12585151584.053505 1583882.832371608 0.2914877406912295 3.666703088577324e-05 2064923352.044381 259752.29059931397 939806 206485 26005 FTM_20210117 72889096.40417391 2008.756684080948 0.028637871441993538 7.913314320690422e-07 18798033.90580877 519.4336848985643 None 2851 149161 DLT_20210708 5180608.0864526285 152.11961535159386 0.06317060205622788 1.8548957045121692e-06 269171.50818236155 7.9037567800938975 15220 2598 None DOGE_20200422 243556559.77759254 35579.28991089137 0.001960256003534966 2.863586048063092e-07 124397419.90261082 18172.254818032914 139550 153156 112062 ALGO_20210401 3535681209.1611557 60110.895309481144 1.3596440287490847 2.313125849613381e-05 515084062.0372166 8762.986733507914 75695 19389 136604 WABI_20210201 5937784.291471221 179.61467024326458 0.10067428998517992 3.0367511880239256e-06 2129827.731516637 64.244375549324 40797 7428 958104 PNT_20210120 12200106.234701974 336.90003585254186 0.4243880841607296 1.1696975084468831e-05 2598603.7236137786 71.62265893876138 7563 116 1091126 GXS_20190716 90478874.98505376 8272.816171966673 1.5079156054329843 0.0001380532081899833 6360948.613400204 582.3597554449152 None None 762110 STEEM_20211216 169988850.27193326 3478.4351736336357 0.4304041499310863 8.807241955005834e-06 30618258.72917488 626.5330223047091 14939 3949 164208 ANKR_20210107 59732961.34656767 1621.7845937730203 0.009211068992259982 2.495613399239076e-07 15580071.504501838 422.12076839734806 31404 None 5158 ICX_20200531 194962390.3886823 20196.79754805273 0.3559950151822308 3.6859990564592896e-05 34554322.672644876 3577.7804557954455 112712 27713 121189 BEAM_20211221 62308600.877216615 1320.6940674825385 0.6004821066646883 1.274107393313225e-05 5292923.30281273 112.30563971024856 30422 2968 252645 RLC_20210429 192604343.8643378 3518.665342918676 2.7390098559315663 5.00224301494242e-05 38772566.588827886 708.101871084322 37083 4278 302860 ONG_20190804 0.0 0.0 0.2466245217293258 2.285239236052981e-05 12022239.721013878 1113.988735712516 81480 16295 237451 STEEM_20190522 122217629.31800811 15388.64549636325 0.39443630715623074 4.966419767420184e-05 3261262.871665097 410.63157976924583 5583 3736 288379 CHR_20210620 77947329.4856777 2186.515414028522 0.17323093073684745 4.865543308622895e-06 17247143.3427873 484.42112807114853 65773 None 93255 BRD_20190719 17805165.402591977 1663.9413441637016 0.29614302569025724 2.7634938139939976e-05 1267744.7824423094 118.3011099395864 167 None None WING_20210112 10548873.95937294 296.89768455852413 12.338354024466998 0.00034710239365243374 3364063.7906149784 94.63779299949053 None None 329521 VIA_20210724 9295832.559995117 278.0970616797288 0.401118911671236 1.2e-05 176506.46689840572 5.28042318911376 38197 2295 1139372 POE_20200927 4323460.271967684 402.7403938476789 0.0017185423089751968 1.5999703132795488e-07 53204.30998148328 4.953344242054656 None 10140 908347 PNT_20201018 11694168.664471705 1029.4791728802302 0.3977612295727191 3.500288300947301e-05 1701576.4486454397 149.73827747764958 7069 97 343871 AVA_20210508 262890413.62769076 4587.937646316301 5.0298497084095315 8.775443765792951e-05 8097045.372094878 141.26697704922228 72328 10027 44048 ANT_20200903 222045367.93840423 19463.479013126296 6.3854759578716935 0.000559594566408099 63879315.404724054 5598.097626894397 75243 2660 541569 XZC_20190509 49029325.31036673 8236.871641799997 6.56557404640187 0.0011021973922967843 1424672.3863177935 239.16723472751994 60366 3971 353652 WRX_20210206 29912231.287447102 789.3284800385392 0.1259122935598189 3.29864081679163e-06 4673646.205480853 122.43983252769712 56349 None 4666 TFUEL_20200324 0.0 0.0 0.0016591539579793593 2.560481833398459e-07 590385.3765549185 91.11095592442805 68262 4027 384607 STX_20200319 40438129.286397874 7513.926676530251 0.06854507520077403 1.2722372149615357e-05 233630.11441602506 43.36313370802636 35801 None 40997 MKR_20201208 469562972.1035528 24447.502421084293 518.8999657499029 0.027028587617045345 33680997.17849875 1754.383972550264 None 17970 33541 ALPHA_20210422 387528542.3696215 7152.120165173062 1.53170603446557 2.8318758307479908e-05 184472449.50865287 3410.596155186564 54768 None 28389 ANKR_20210124 68354853.82388969 2134.99253651545 0.010530465627626537 3.288369762290042e-07 18332385.624822013 572.4691071698859 None None 5258 BNB_20200807 3370982469.604111 286518.60076989816 22.727115837134946 0.0019315576839419033 262793562.791695 22334.594901451313 1209371 67964 992 IOTX_20190509 23143434.433426987 3885.209869088951 0.009164713997108914 1.538700652730003e-06 899374.4404978295 150.9995881027214 17243 1717 727084 STORJ_20211028 163979909.39787424 2802.066810643926 1.1393521518639607 1.947010880925194e-05 53476621.9205753 913.8488445749196 106209 14054 74317 WNXM_20201124 41994600.58160998 2293.6964915091803 27.349913749972586 0.0014897100595714775 21072024.37174938 1147.7625475934767 None None 73532 AR_20210718 380552047.4519592 12040.636083483807 8.650719507927555 0.0002739389881371862 9249985.94612698 292.9157266101522 None None 89863 GVT_20200903 12976459.287933368 1137.4483393085336 2.916591728859213 0.00025559706037079933 3567442.1089422363 312.63467802718145 20555 5494 155510 COMP_20210427 75468.8220014288 1.4089544454832925 8.196332064657726e-07 1.5276e-11 44.07338720096263 0.00082142238451392 2431 None 1922361 WPR_20190819 3456340.5243544444 334.91890457900644 0.0057363081104217515 5.55970985290292e-07 404135.76422501897 39.169402114055764 34604 None 1022788 CHESS_20220115 100915143.34290771 2341.694827961234 1.7670340625005834 4.0970570337861746e-05 13478624.67178378 312.5162960308094 None None 55069 ZEN_20210513 1492841178.0566993 29760.227316909884 134.8008605920468 0.002687294745551308 188082331.52904186 3749.4765169092225 106490 7226 756616 LSK_20210207 229749569.85014576 5858.9825116433585 1.6191896176855192 4.1176142379397985e-05 31536515.45632136 801.9765173863534 179342 31152 225361 XMR_20190902 1219625286.2096455 125371.96035465167 70.96486270120174 0.007294866754360672 416959959.75890917 42861.59702938905 320445 160701 87781 ALGO_20201015 262249208.32926422 22974.81788697809 0.32921311342289833 2.8840897325309138e-05 154502972.36513942 13535.31855431894 28891 1378 194024 ADA_20210508 52795204748.10216 921376.7214495395 1.651883984389271 2.882374967096422e-05 7524037592.658627 131287.05050427458 380243 388360 6677 KMD_20190615 182632965.71519816 21018.91607758431 1.5929920426112807 0.00018358516630357855 2077674.2043551193 239.44260493978234 97196 8404 375668 ETC_20210218 1773172419.1103811 33975.253998620195 15.246665500219546 0.0002924149822383359 2220253227.7148237 42582.11791538874 285882 30162 127057 MTL_20190616 25908751.671038423 2938.421587538662 0.5804108835075629 6.580079926873477e-05 1472726.3985662533 166.9620210155174 33175 None 940825 SKL_20211207 621355788.5455198 12310.32892202264 0.23531857677579093 4.662749988068712e-06 45872242.21971854 908.9414010287448 80830 3157 166122 AMB_20210813 5710880.49185855 128.45745655836419 0.03909767261099264 8.793432272825368e-07 599301.1981587531 13.478844506847729 877 70 582804 RVN_20200421 97170901.69103946 14189.114225701496 0.016222285435030293 2.3707741833013966e-06 17322617.0879025 2531.5800010849816 30367 7637 218336 MDX_20211202 525867308.5852816 9200.393291805922 0.6643121358352265 1.1617280258094632e-05 34428444.73195717 602.0737387231384 30926 None 30091 NEBL_20190419 25158900.017236352 4771.655196840098 1.673087920224825 0.0003172003510395215 567953.2529745254 107.67812560223906 40434 6181 627763 REP_20210718 124128452.09551296 3927.3384320689865 19.04223735675315 0.0006036277428007494 79725608.00154936 2527.2549595820306 151792 11238 153333 YFI_20210930 1020515199.6105697 24563.33865806214 28670.866833621232 0.6897576310184265 264923820.30235225 6373.48105840377 None 7254 31762 FOR_20210527 24884039.170831937 635.1294877209039 0.044289820940577644 1.129742189304191e-06 4212926.568404177 107.4630870861374 27412 None 122353 NKN_20220105 245823173.09280413 5341.021704017993 0.37759435973979194 8.206627755091935e-06 8889025.781796709 193.1938966114093 37755 4619 106032 LRC_20190701 51818937.088257335 4775.713564503125 0.05414387629876545 4.990342374209345e-06 6128190.812103751 564.8241754641241 34930 2456 719839 GXS_20190818 74134646.85259789 7257.126144303971 1.142666934562324 0.00011178961901575056 2794883.4646144095 273.42959549480565 None None 790272 LSK_20200707 160821518.32088494 17228.16760001196 1.1450839113033158 0.0001226452225657777 3841220.0343651646 411.41726068147557 175287 31164 183844 RARE_20211120 275493223.0404504 4739.175341503839 1.9009662669291707 3.268313807628667e-05 135397944.07798553 2327.884391496688 None 2979 8316 XLM_20190302 1631732608.7146266 426561.15642485884 0.08483681973642768 2.2189709092344392e-05 98572307.65503043 25782.329396855115 263498 99256 70469 LRC_20190908 33191306.989442065 3170.455176836453 0.03449428326149375 3.294916315662212e-06 3400710.1284029754 324.8380377110487 34403 2439 519433 MITH_20190908 9755555.307742164 931.8281235752651 0.018243192630365522 1.7426015955131046e-06 1407900.4884605282 134.48356804780607 84 2081 697406 ATA_20210722 64724962.04989793 2015.9628394320102 0.3771527677297445 1.1719750784801222e-05 15090814.989966193 468.9362135310616 67565 None 91785 TFUEL_20210220 0.0 0.0 0.0851897420011432 1.5246286426275715e-06 248719413.7352723 4451.295816264414 86385 3980 42831 RIF_20210930 154373764.23630175 3716.1429624648704 0.19970226996513699 4.8044319259842385e-06 1977672.2481790914 47.578786610404535 44765 3489 1151505 FET_20190922 19482092.27696812 1950.0451603687839 0.05725182780070937 5.732962030085581e-06 3274635.56131707 327.908506270714 16276 308 435240 AST_20200410 2489576.80623531 341.59358534707087 0.014458825529468252 1.9829839654226157e-06 139851.54816349194 19.180214671138106 31708 3461 340670 COMP_20210620 19080.87121241972 0.5287729664804737 2.061676681862648e-07 5.733e-12 3.349410557524832 9.31386133200159e-05 None None 3414055 ARK_20211007 241770809.24916315 4355.16572301299 1.5144461629795163 2.7299714948782825e-05 2768380.3279011003 49.903387567657084 74410 23830 147149 WABI_20200305 7815991.363237329 892.8128429728191 0.13231940399332492 1.5107662729270899e-05 500985.69921666686 57.200401056334684 36893 7780 3668499 BNB_20211221 88675975411.82384 1879475.4514093392 526.5978524574593 0.011173392340457744 481169380.3684995 10209.487645995498 6706389 749438 109 XEM_20191216 317058107.42897713 44553.95087360282 0.03520596610647968 4.951473519680725e-06 39100240.563068874 5499.1760537299615 214150 18180 198508 ZEN_20200404 51991623.05022088 7726.658518900566 5.926271353000046 0.0008807240926243725 4414974.4071003655 656.1249219013388 None 5104 40228 STEEM_20190719 77708776.08273444 7240.58194848363 0.24630757303929082 2.3085006823714005e-05 1129503.8246377362 105.86196428078888 6017 3761 334107 HBAR_20210826 2437707618.9148445 49732.95601792193 0.25725390464562103 5.249809941202893e-06 105940158.72973667 2161.93297138921 123367 24980 50561 SC_20210611 793662484.4876013 21535.176190965278 0.016494638937297135 4.4928062948723227e-07 101324389.22823103 2759.8715890611993 137663 46661 44919 VET_20191102 250839035.7149416 27155.232447763334 0.003979461890644464 4.3080700079022515e-07 38193631.029158354 4134.750899774414 114093 57634 402467 PNT_20200713 20089357.101059705 2165.195006667173 0.695797971526359 7.488703174570463e-05 2677349.1556240614 288.1565330978534 None 51 1293508 MANA_20200914 108893679.90468068 10549.250097181664 0.08182824902746613 7.924893467023525e-06 14714539.567097077 1425.0721464955895 51579 7286 80457 HBAR_20191019 24073226.7739702 3024.8201618808607 0.03389264567326841 4.25869389290501e-06 3261469.0549417054 409.8115703352668 34949 6169 85439 HC_20190324 63409770.8072663 15831.665810847748 1.4427770147654657 0.0003603130529704825 35125305.63460665 8772.045839518561 12455 796 596410 DCR_20190626 319473905.5162141 27059.274894049533 32.178769017078466 0.002721770202697948 37203288.32027463 3146.758085704344 40460 9502 389258 SC_20210602 829808793.7234081 22615.49373619419 0.01731813426406282 4.721164447985432e-07 60835384.62258798 1658.4572603509882 None 46233 44919 APPC_20200425 3142934.8927801982 419.15225283967163 0.028834268755416587 3.846998421006322e-06 111366.88074960036 14.85829996349849 24724 3214 778214 MATIC_20210828 9787433583.185648 199534.48025629052 1.5102276371094576 3.078669986009366e-05 1000754758.9800009 20400.855898285103 609512 None 5701 REP_20210324 222961787.55547607 4087.527958221038 37.27799705189657 0.00068385003504034 131837773.66340084 2418.511542179818 143636 10893 144967 NULS_20190513 46123543.123662695 6628.339419314229 0.6452915311749288 9.273379717531038e-05 6584338.187801452 946.2245396735398 20878 5322 670223 BTS_20210616 138782204.0717617 3438.553593122051 0.05120744200989534 1.2687472064261725e-06 17260309.859170686 427.6520961863545 6097 7176 121525 ATA_20210823 116393011.26931515 2359.2835212819678 0.6725543353343338 1.3649337100397166e-05 77513428.87267111 1573.1173897865076 66703 None 88669 GXS_20200411 26155204.388551094 3814.573326827316 0.40493571391791844 5.901214393109401e-05 15453228.095055131 2252.0318391335304 1 None 493162 FOR_20210428 56091440.34203446 1018.179620769141 0.0994165611683673 1.805082666093798e-06 33628347.30865634 610.5818397141655 None None 121436 CVC_20191216 15169607.319791408 2131.6784635423023 0.022634082130743367 3.1833257458038493e-06 2272497.798668275 319.6109613809952 87298 8119 149166 GAS_20200407 16002511.478989711 2194.056274603343 1.1483586648573023 0.00015744800667278442 7352274.251297011 1008.0482351062323 321546 99289 235469 STMX_20210602 218753738.44713828 5966.225706840128 0.0253458144220287 6.909621794700522e-07 11893161.90733164 324.224147444946 None 4415 51930 RSR_20210819 527951452.05517864 11719.114401348095 0.040043605550617964 8.889799522235819e-07 75681890.42912725 1680.1604753805098 78358 None 160893 OAX_20210429 21495904.316513382 392.7748244337878 0.3785348383415948 6.913166985894592e-06 1163792.6532911563 21.25429982721626 13831 None 1298527 LTC_20200317 2108163870.3970861 419123.37769803 32.786377810915454 0.006518249175765601 3434261352.815002 682764.3895721033 447762 212328 131624 HOT_20210124 123119306.43497573 3846.405242872781 0.0006923962296132184 2.1604857273395496e-08 13779966.77046206 429.9766558149407 None 7521 800111 MDT_20201129 10262542.847591378 579.7334844659273 0.016959067341067904 9.57957384507789e-07 121700.04793517549 6.874402776391833 13377 69 1258241 NCASH_20190520 5982809.394027569 731.0354070726173 0.002058889373868529 2.5166823480595913e-07 447409.9001006373 54.689125711242774 60646 59314 878224 ZEC_20200207 620817796.3885126 63743.048110671494 70.15761264441073 0.0072045581917308775 532640153.82885236 54697.37123129104 190 15511 155286 HOT_20190726 217143358.39362165 21925.13020313858 0.0012175558143440745 1.2312661702318853e-07 4998941.8249880755 505.52326912264925 23937 6593 317141 COS_20201106 16941954.690897457 1090.3079815812425 0.005615601406850075 3.6151334165235244e-07 808794.3082066241 52.06742998399309 13188 None 292057 SNT_20210809 334834073.95944405 7611.202999490253 0.08639213516372073 1.964345451416784e-06 25211438.284079343 573.2463264526791 133890 6036 133680 BLZ_20190510 9458981.286533514 1532.0342884184138 0.045959494758596064 7.443395604748285e-06 612174.5310653036 99.1450675818856 35754 None 825478 QLC_20210804 7319380.002827738 190.4983767274748 0.030497416678448915 7.937432363644784e-07 743265.8648607462 19.344663165215245 35100 5687 940522 CDT_20200323 2125800.5825936883 364.3647963016559 0.003154350702558661 5.405658198284883e-07 28823.216706126157 4.939477958555089 19203 290 281286 LOOM_20210221 124342677.91727073 2218.096640610364 0.14943817578621205 2.6579425539588067e-06 45033192.55783327 800.9709581260148 None None 256262 QTUM_20190821 251841443.9864244 23404.05752107701 2.6199963603624203 0.0002437057455714437 322715660.65719193 30018.232802874114 178457 15351 286987 WAN_20190401 44958237.41139201 10955.656252791916 0.42325429091654393 0.0001031439394727538 3643127.7805279237 887.8032883554927 109078 17199 502175 AMB_20210718 3728130.4555470394 117.94249743787964 0.025780931686068705 8.156561885846956e-07 325922.17123404983 10.31151392048668 648 62 487480 IOTX_20190220 9994214.22363356 2552.792188588265 0.007508575389237501 1.9178929100543937e-06 2355583.9800987495 601.6797568477076 13344 1565 1268862 ETC_20210821 9005050134.196003 183259.94282898883 69.7668055185947 0.0014195179681587408 3474727890.159605 70698.93250636575 498567 59262 245929 VIB_20200511 2135472.3465163712 243.88436506579941 0.01172952508176488 1.3362501237245467e-06 766755.8384993677 87.35030420405867 31108 1107 None VTHO_20210618 284446800.92544895 7470.923128782416 0.0077723554304594345 2.0362914958290305e-07 22845612.943737667 598.5357691186384 None 187913 26602 LTC_20210804 9286551471.933895 241697.10824087463 138.55919653556384 0.003621245268648415 1523803552.9333727 39824.61319334588 189601 339674 80775 SNM_20201111 4752292.063630775 310.69705648 0.010844999962208658 7.1e-07 166697.9984512941 10.91337753 28931 9534 None POE_20200430 2637308.943527076 302.07937449381643 0.001052145803327497 1.2000729452917534e-07 77474.52576272924 8.836710845884575 None 10358 1042825 NKN_20210218 34504668.31217809 661.1341668807089 0.05303220591130868 1.0173897972388643e-06 3973976.3159599956 76.23825727876114 14395 1030 263603 ALPHA_20210408 440070023.57632035 7813.027484730671 1.7565739399552183 3.1212741756134696e-05 133912563.12688623 2379.506012077205 51314 None 29700 PNT_20210813 29231066.123433907 657.5440789669942 0.9196481379860193 2.070723026431721e-05 7476146.106132591 168.33642402451048 47430 326 329278 BNT_20200626 75979319.6489418 8211.182438875956 1.1572230565702049 0.00012506257865792776 46253943.73287155 4998.72297176329 718 5059 118402 CHR_20210112 10536324.769249726 296.9869270520607 0.023618342362595954 6.644308594082407e-07 3681647.6042788653 103.57205616696076 36463 None 675741 NAS_20190405 55691608.16114696 11358.03988683047 1.223728481406577 0.0002497011672348008 5480781.950479282 1118.3507380828944 23951 5169 612650 BNB_20210611 54791987617.99424 1486707.8360531954 352.39187862755034 0.009598442600521541 2560252759.4685807 69736.11097479134 4228926 490641 132 YFI_20210723 1019113942.877246 31479.853987085946 28604.669082130284 0.8835516705792793 152068682.90719584 4697.1541058442235 None 6835 20096 OST_20210304 12624071.273486687 248.34410298749106 0.017827776493178325 3.516567079389069e-07 502239.8191976853 9.906787954317842 None 736 625092 KSM_20211002 3128621537.7046523 64963.12774596878 348.5814010221919 0.00723772745263265 161718435.2769281 3357.8210287992456 141935 None 80172 KAVA_20210201 103960285.04074433 3145.7108073458608 2.2169368130591605 6.705063522586441e-05 55918304.56505249 1691.2335163339042 None None 91263 BNB_20200901 3429200221.899609 293521.03838528076 23.163433626535507 0.0019839959461391728 226364373.29574117 19388.57624521605 None 70561 775 TFUEL_20210731 1769868229.9200363 42402.20300755194 0.3329726494969508 7.971301076536719e-06 66586188.10320193 1594.060514313776 185089 22168 19854 FTT_20200523 283756265.4161098 30998.12403513236 2.8409411976637045 0.0003109204336222292 2177203.736947498 238.27917682081716 11530 None 13105 HNT_20220115 3323282690.121887 77090.95801570229 33.294742669637444 0.0007719741375539767 18570990.959356755 430.58824246285246 141698 83403 1924 ETC_20190719 682096676.8393295 63554.943655081384 6.04627786182282 0.0005668490819905566 695173752.908543 65173.75030815035 229093 24842 498409 MLN_20210823 136888477.2104836 2774.726119842371 94.14877707379847 0.001910565715809782 9501108.142176291 192.80644999153174 None 414 127987 VIA_20210603 18770360.943265993 499.1688512074667 0.8109948333626203 2.1522366998098478e-05 182125.87088714872 4.833298156572671 38235 2289 788851 ADX_20190708 12589981.570608288 1101.4391808152043 0.1368567665873475 1.1961997277995355e-05 259873.06112614388 22.71426490140858 54163 3883 882596 RCN_20190601 16000494.244434666 1865.1943187500924 0.031953005819201616 3.7257898750289903e-06 1003297.9329690387 116.9867179771621 19021 1122 2270629 KNC_20211230 115980030.8248087 2500.6803561578486 1.262681202979357 2.71296423502991e-05 27858016.28096257 598.5501459180904 200544 12214 89231 IRIS_20210809 94004333.04054888 2136.834278758585 0.08752451860284129 1.989715347787573e-06 5600894.878104553 127.32645295517987 26781 None 796801 BAKE_20210708 372400493.8525661 10959.696070753154 2.1883504737526107 6.440765830779263e-05 202368514.7444367 5956.1218855242005 337141 None 8023 ZEC_20210725 1121529691.1473637 32825.82712974074 98.95638954924932 0.00289591658880085 604695398.0805806 17696.1532494227 76924 20134 112343 DOCK_20190914 4542302.780670784 438.7959527047239 0.008174025902172935 7.896280050814651e-07 3813177.14057513 368.3608902846957 188 15174 184011 LUN_20200511 1849845.997963051 211.6643929284141 0.684727620396599 7.820967275781214e-05 492741.54505284067 56.2809996921702 None 2133 3953623 CND_20200903 25547665.718798153 2238.363121602294 0.013242074464267782 1.1602153762737856e-06 194914.9205392684 17.077633001163377 34310 5930 303234 HARD_20210823 93615345.82790723 1897.5807940894906 1.2365606367761819 2.5093585191155674e-05 34011537.11937646 690.1977782604326 None None None VIA_20210430 40225808.722690254 750.9625439400052 1.7427472985907402 3.2511605300393956e-05 1522213.3739551716 28.397462120314817 38482 2272 732301 SRM_20210310 321599366.9775569 5881.635100266805 6.436491906625722 0.00011766271693493153 195847518.09610382 3580.203536095386 42901 None 88045 BEL_20201111 12597887.616560562 824.2941938298509 0.7881079150000974 5.159058119289291e-05 2499499.510070142 163.62052703893195 9820 None 193192 NPXS_20190221 116271877.84559311 29283.495588013706 0.0006946787090445891 1.749573610431312e-07 3192258.97950386 803.9820416957466 55720 3997 178391 WAN_20200422 13709358.26355294 2001.8721885396776 0.12891488679789972 1.8832176540022705e-05 415940.6396696694 60.76154392245723 104894 16281 925023 NEBL_20210806 21420489.75118964 522.2881805394749 1.1802882831304957 2.8846691623550617e-05 1357648.5130513364 33.18144266016907 40409 6114 2429755 OST_20200518 4505794.825563788 465.95427068296686 0.006511659604221071 6.741093197874746e-07 165273.45922180061 17.109674944112523 17698 754 805326 ROSE_20201229 69065534.43994851 2545.193162604114 0.0457265686688145 1.6846692382972645e-06 9115856.454072054 335.84857547779166 None 566 229578 POE_20191118 6418319.4655646235 754.8916706022301 0.002551941488364997 2.9988999299560384e-07 251862.52935602807 29.597485878418905 None 10620 710511 LOOM_20210418 151211597.3458005 2509.3746370084928 0.1804197892307387 3.001484634981573e-06 7243910.7231252305 120.51054280321871 None None 252037 NANO_20190621 194989090.78327438 20384.483503706026 1.4629786844842467 0.00015297638278124505 5904032.86443952 617.3552636154461 98427 46302 363666 VET_20210519 10626284151.008879 249300.9199526724 0.1638131532812496 3.829120980064501e-06 1539202180.1394436 35978.743113588425 344350 172463 26109 LRC_20190813 39113632.763210475 3436.7480585401427 0.040542739590881616 3.5627308641388176e-06 10140504.680442281 891.1062589140203 34660 2448 581854 XEM_20190920 426706894.3785196 41662.37367286798 0.0474412654839387 4.629033800846801e-06 52431192.83034658 5115.920946766462 216102 18343 181782 MBL_20200421 4077299.3667782573 595.4216583353119 0.0011582367383198514 1.6917515733326598e-07 1651617.4803307261 241.23966875255692 None None 95998 VITE_20210804 36612174.8251262 952.8894346180332 0.055610103634071595 1.4478376045921573e-06 2970461.809016795 77.33749856679552 33179 2417 651282 BEL_20210616 56534623.656909615 1399.8303411506558 1.790490908905379 4.4360610469762213e-05 10169781.264557796 251.9631364760954 28135 None 506926 KNC_20190421 49961499.802773476 9408.99308447681 0.30056977017574565 5.659075833091014e-05 23065940.502189662 4342.815526229854 96145 6659 249884 SNM_20200105 4846898.403999715 660.0122252805215 0.01109140337196375 1.50827215457425e-06 536118.7573286248 72.904479812508 30524 9761 None PPT_20210902 87466164.3696147 1795.5227159366307 2.414398297220431 4.956324561871377e-05 2110495.290573906 43.324664610755015 None None 1320252 BTS_20210805 122357697.47524086 3072.4329321237146 0.044988174393548616 1.131353361401974e-06 12880444.943343746 323.9147815941317 6400 7183 184072 EGLD_20210727 1673520684.324062 44716.15860180214 85.9268554067862 0.002295949449872436 105796177.52843434 2826.8540079244162 None 9755 35166 POWR_20190801 31718156.693441447 3150.5586871662213 0.07548695358221288 7.487380665036271e-06 1020062.0821423293 101.17765717821702 84420 13127 515073 FTT_20210826 5266659712.293458 107447.8964583331 49.61501339980675 0.0010124653770829052 189887403.17298722 3874.9243038112536 177868 None 1799 GXS_20210201 26839434.60564342 812.12839565547 0.3845395236278045 1.1630290577888266e-05 12050270.312071161 364.45706269490563 None None 429351 EOS_20210401 4572649116.577872 77743.53304595256 4.7949477581378535 8.159998145358574e-05 4114823481.1088576 70025.68884580715 None 80672 56951 SNGLS_20190321 9831578.792544957 2432.861933270126 0.0166598224526963 4.120595174248935e-06 528055.1534467809 130.60772545495698 None 2185 2467008 BTS_20210725 105563552.57374018 3089.718404549651 0.03895428931483018 1.1401427652933302e-06 14074992.838790642 411.95723343855695 6297 7183 164427 REEF_20210821 281275122.3710713 5724.877188061244 0.022219567215336227 4.5196382642610065e-07 58838965.829051375 1196.83177810492 194000 12727 76465 BNT_20210727 758317853.155727 20243.476598985522 3.167748020931975 8.464163260208018e-05 98038628.20114155 2619.5737458219874 125516 7623 38654 SNM_20200422 2817003.739499594 411.34539872 0.006434731181097967 9.4e-07 36771.688770456065 5.37169098 29837 9664 7419106 BTG_20190528 434016111.3381433 49276.84832280601 24.754898999765594 0.00281291084118306 25605142.15358363 2909.5243715003953 73994 None 446927 HC_20190805 115224221.34358384 10526.665106507222 2.602810509769084 0.00023770080466174994 47049095.10739084 4296.742972129075 12923 847 463002 OGN_20210909 352102734.2004929 7600.128814761964 0.9911153385252864 2.1407800140390123e-05 70550350.95948982 1523.8668543082038 120534 6258 114895 LRC_20200523 47704928.19552394 5211.93970759233 0.04083045088274073 4.468151702572639e-06 9297135.814492375 1017.402755063202 34332 6803 498950 TFUEL_20190725 0.0 0.0 0.007372855357411538 7.518808687327165e-07 868530.4853550234 88.57239484470901 70286 4017 240889 DOGE_20200117 287096649.09641534 32966.4731469645 0.0023355947889077203 2.6818955614093215e-07 79745346.96790454 9156.926239602066 138693 146837 125854 RUNE_20200901 216395879.72785798 18514.161104081828 1.0291229888671711 8.81640562426306e-05 7336947.372647497 628.5497922103111 15500 1811 320641 BNB_20191127 2353850328.782428 328315.8434552063 15.315763044273119 0.0021400203345962755 172816405.70923045 24147.058249760557 1066757 57586 1628 JST_20210131 43664035.89020685 1277.8074388008106 0.03068861751723634 8.982612946428239e-07 90371559.34117064 2645.1916202187117 None None 170314 NCASH_20190405 6187821.348909591 1263.2590284222963 0.002133029957260339 4.357766211119628e-07 715238.4373548122 146.1227435925031 60626 59480 760895 SUSHI_20210114 653331818.5412595 17534.95842904618 5.143004837946721 0.0001376026943178166 607172267.46231 16245.08289423027 22280 None None ASR_20210318 0.0 0.0 10.834353354066844 0.00018385352995405188 5277079.806520266 89.54939151156748 None None 149569 PSG_20210408 0.0 0.0 26.495801017800435 0.00047151404519992017 207595522.2654875 3694.328939254542 8914022 None 28984 BEAM_20200422 15233668.15322283 2224.537751463355 0.25358577080871597 3.703055066737683e-05 112123994.89463171 16373.210770987203 14926 1478 307022 AMB_20190305 7637970.622718535 2056.9415638343794 0.0528246705765594 1.422593328410974e-05 702931.0745594539 189.30265841445168 17903 4968 683683 TOMO_20200412 18883329.204450563 2743.7201909234 0.2689354911784851 3.9079200191837726e-05 8907644.600213349 1294.3759302428884 22279 1516 218911 BCPT_20200621 2825406.5626978246 302.0113850447691 0.024326379820206617 2.5999901070211935e-06 102919.85375294964 11.0000174112 10498 3169 3960582 HOT_20191015 144098693.2885634 17264.204532409072 0.0008137880503960996 9.749341430795438e-08 6693176.08340044 801.8557026211382 24413 6687 547189 QKC_20200314 7117195.849198354 1289.8219976358562 0.0019219930095649663 3.4549209994828377e-07 1677873.4557088625 301.60985017918927 50410 9198 398743 DOGE_20200530 312085297.51217985 33113.42380921329 0.0025013839495645635 2.6540624467662593e-07 135246773.45676783 14350.191322703462 140698 156120 108072 DLT_20210201 5155448.8221661905 155.98687630668152 0.06405049860214611 1.9315697487271035e-06 1805974.3298645676 54.462735789338865 None 2530 6584036 AION_20200106 21970415.40915218 2992.115481434444 0.05797022039627326 7.892621264632128e-06 2828734.720238182 385.1310492238593 1153 72543 317810 MANA_20210718 800132680.1919786 25315.644984071412 0.6025588028345192 1.9101233898179232e-05 72103604.55160896 2285.6986056186497 148850 34589 17778 ARK_20200518 30730342.18636007 3177.893076720766 0.20638521438925433 2.136570474229737e-05 2410733.8170846254 249.56742710723657 62076 21968 92164 SNGLS_20200331 3114928.1539656757 484.8172188651039 0.004820542101250429 7.519105002539257e-07 69365.96939740631 10.8197376259141 9022 2129 1302975 PIVX_20190627 41594355.35937137 3189.5767230896795 0.6890446142962774 5.2837954668157836e-05 15733309.711290376 1206.476167227971 63428 8632 321690 KEEP_20210825 223332683.15848947 4647.4610601466775 0.40701017897395625 8.474966569127165e-06 49060398.117248625 1021.5597923371754 23282 2896 114881 NANO_20210420 1376939641.6437967 24598.890691076624 10.330870171090531 0.0001846073027549545 531106508.8394632 9490.598415109489 117233 84726 65732 SRM_20210430 460038902.6455227 8582.1984849623 9.213329863722015 0.0001719088400385828 363573300.5626724 6783.80838341965 68212 None 59775 VIA_20201231 7410071.882897812 256.9929213520639 0.319775517661561 1.1090316768772751e-05 312511.0318108966 10.83837299948331 37885 2133 4830229 BADGER_20210603 160354823.5966321 4261.0278588885385 18.089853329890513 0.00048040324388245103 98046124.93682896 2603.7622091677727 34428 None None ZEC_20190513 393195888.77094537 56663.65806034599 60.41407913983467 0.008690688756287717 495148784.05049753 71228.16455212413 74842 15137 166067 ENG_20190909 24957189.912466407 2402.808442609579 0.31798262750572215 3.0595387389614644e-05 226872.93254075007 21.82907070662925 61456 3476 285692 VITE_20200422 4913835.599099338 717.9891898664084 0.00997755056117687 1.4575430213863145e-06 3224846.72812369 471.0928613989161 None None 537072 ARDR_20200730 56361296.08065583 5075.626653115966 0.05734809558108133 5.170583636234046e-06 4055144.9213778134 365.6174762314289 63413 6288 1213640 QKC_20210221 93958555.33434345 1673.6885053656829 0.014796285035910477 2.631702068801548e-07 16523898.117381964 293.8979396155181 None 9255 339655 QLC_20200106 2941299.104699508 400.5707867969839 0.012121603880569806 1.6505472225931722e-06 98000.87914949167 13.344362716815562 24585 5698 940522 GRT_20210408 2055052659.1236742 36485.51832233019 1.6589451561317101 2.952226055769994e-05 382289423.4182457 6803.147123273726 84417 13020 26769 GAS_20191203 15117853.956774497 2067.8186553424034 1.082146483866777 0.00014811662521486464 977336.3591449094 133.77095002800772 323221 98736 159020 XVG_20200127 58866646.790425 6849.956207899595 0.0036431527774260057 4.2393168873541253e-07 613567.1926753009 71.3971090521387 298011 52091 310702 STEEM_20191118 48768625.55602652 5733.346387389841 0.14983689119602997 1.7607999421667623e-05 1105139.0094951852 129.86979965164372 10601 3793 205566 DIA_20201101 27880848.13375923 2021.1271152542517 1.0907179270941287 7.904628264971055e-05 6412228.243188843 464.70567094825066 15941 171 89819 DLT_20211002 6930511.741686013 144.09246127996005 0.08451503780967336 1.7570154007194135e-06 674126.3784079255 14.01467075671543 15392 2599 None STEEM_20201228 59894536.841670915 2255.9419356942667 0.15913790643073944 6.051259869108364e-06 3373212.1926283264 128.26726220708883 11832 3837 222215 DNT_20190726 6662375.3554818975 672.5717240415632 0.009937712723383183 1.0049616897748947e-06 435275.7001590596 44.01771467196115 60568 6335 724607 RLC_20191216 32154402.79733265 4521.890138082024 0.45782969553922653 6.438209817846049e-05 839372.424479469 118.0363754637655 27496 3501 308562 REQ_20191017 9461430.397894109 1181.6616708641168 0.012962592978581284 1.6189306248309008e-06 221077.65277769603 27.610940429814875 40655 29154 915310 CELR_20210602 244506832.5712641 6663.75529193927 0.04370068139721042 1.1913414009809516e-06 63876767.67879243 1741.3695957025745 54908 None 140975 PNT_20200711 20286523.839129627 2184.796756585304 0.7015705086218168 7.556075802891896e-05 2782069.6697445586 299.6353047224226 3343 48 1293508 BAT_20200117 307562105.69903064 35335.64943628443 0.21628668631358935 2.484150790466749e-05 57531991.015297376 6607.81037398497 109961 33338 22497 ANKR_20200320 5057127.460105325 817.748373713207 0.001266588786574283 2.05181308091815e-07 2422518.987869711 392.4364561546003 None None 5425 GRS_20210821 71231080.8465575 1449.728747372181 0.9069777409492601 1.8453922183012283e-05 25590206.80166619 520.6739522304974 41460 106858 9087517 SKY_20190801 18495341.9290844 1838.9944412589712 1.1502907496694104 0.00011423886313010278 743525.3418941991 73.8417567826444 None 3797 513361 GNO_20211111 718233004.9770039 11082.40072164861 482.250979150743 0.0074244722888255005 8160860.338749473 125.64014187119189 88554 2380 144658 TRX_20210805 4842934084.450417 121657.28947575619 0.06752116197094794 1.6980083008781437e-06 988493599.152252 24858.43382623695 1080286 114936 26326 YOYO_20210204 3079693.260012577 82.20314453449431 0.017632104864398486 4.7007012708145917e-07 1221556.5140910824 32.56657275078931 9420 None 1427347 IRIS_20200901 95925804.04916158 8207.114629161435 0.11650847620295636 9.979191695168837e-06 8164430.268791366 699.3003203662233 10198 None 427030 SYS_20210809 101604918.02171047 2310.246854986128 0.16466929417466425 3.7441762307068207e-06 1153712.492550894 26.232594931127117 74412 5467 426282 POLY_20211111 572915544.4264797 8837.346174937722 0.659071499624014 1.0148588298966583e-05 23034195.06028045 354.6877123320211 59642 8145 125947 VET_20210513 11858612752.8971 230018.9221084357 0.1718138392858188 3.425159346149002e-06 1861900212.9938579 37117.527567286605 324523 164984 28728 FORTH_20211021 136743022.86715758 2063.249967161682 15.737646349795678 0.00023837025148529506 15803097.191293752 239.36160261881588 33350 None 167046 XLM_20210930 6438767078.557107 155007.89559262758 0.27131210680773177 6.527169099710229e-06 435966341.0159528 10488.385730643575 634989 201451 38178 UTK_20210725 90637770.61162314 2652.894058432127 0.2014659179105977 5.896652532985616e-06 6301997.625802224 184.45149754583505 77491 3990 165733 MIR_20220105 299657370.06954026 6469.347706682917 2.215410636077127 4.814968747807929e-05 26194810.098129097 569.3174435624773 87707 None 17649 GAS_20200523 18244744.938012518 1993.0938467509052 1.3093044361080928 0.00014302791148507795 14727287.582442736 1608.803213879134 320099 99467 247839 LUNA_20211230 30261660674.503075 652480.7749685223 83.9387607884999 0.001803740092810487 2365480179.8494773 50831.2417179219 None 22656 5217 HBAR_20210204 674715946.4310398 18002.33997535199 0.09490042888782227 2.530035807435373e-06 81673507.82495144 2177.407433640125 48338 7801 141603 AVA_20201228 29530881.713903543 1112.287663773567 0.759135708399517 2.8866330784893452e-05 1084086.0618736227 41.22265164856045 40612 9036 106233 EOS_20200117 3672399144.0586996 421869.55631600023 3.8320964337626533 0.000439786592181035 4128932615.932686 473852.6902683445 1400 69740 81972 HIVE_20210128 49347993.064627916 1629.4612154920014 0.13280200902723796 4.368354648973874e-06 3812679.1693100035 125.4132742139857 10940 103 147152 PIVX_20200903 29681825.40738183 2601.7727424429468 0.4637835414415667 4.0643916208042353e-05 530998.2619963813 46.53431383122119 64518 8614 359685 YOYO_20190923 3142995.807052292 312.93216535010055 0.017970880327301247 1.7892694865998402e-06 400558.49516959465 39.88157953044116 7542 None 797587 EOS_20210125 2581796422.3584194 80181.7369676125 2.716255673607385 8.4193913532441e-05 1912715036.558222 59287.11570303367 None 74304 74168 MFT_20190805 13612095.208099611 1243.009395648325 0.0015336737578541025 1.4004168169816938e-07 664312.0099944166 60.65916598982405 18838 2170 955030 BZRX_20211221 90751511.58137466 1923.5704424943985 0.24410316494538156 5.179399081773799e-06 950420.8419187606 20.166100005438892 None None 189984 STORM_20191020 8124055.073489709 1022.4391239312629 0.0012883806106662953 1.6206887991894838e-07 747825.7533172219 94.07102312102235 26223 2545 1742887 FET_20191113 13719318.159334876 1560.8819094852877 0.040343713941234996 4.5839961666677325e-06 8426645.77432838 957.4654426623589 15896 315 460894 NCASH_20190130 4951121.1936947275 1450.4949152657105 0.0017069405544889013 5.000278111252014e-07 1319420.5829133797 386.5084723031017 60627 59730 637185 MDX_20211021 792486435.5258602 11956.23331625951 1.2133813920581602 1.8373810594404077e-05 40753828.08007145 617.1209835928054 21517 None 33887 BCD_20200421 95402636.28702663 13930.908123234012 0.5054385443650927 7.382247377212557e-05 12450855.604792222 1818.5256577135242 28778 None 812794 GAS_20190105 26331706.963618677 6911.780949499291 2.230274456877168 0.0005858319202602358 385923.3357794571 101.37147389002573 315550 97820 130003 CFX_20210506 751357044.2860781 13124.67112678366 0.9078496688051946 1.5836106884178912e-05 13168025.885373415 229.69691187842938 None None 144382 LSK_20190228 157479163.6887789 41255.754854189145 1.2095094598324614 0.0003172357031062125 3489645.4439100334 915.280254313625 182974 30467 176926 SYS_20190605 35083599.72051559 4576.258145097401 0.06342978628103774 8.257527598158e-06 1210396.6430175651 157.57397699798494 61868 4605 1053467 STEEM_20190430 102315154.06513019 19658.291100258517 0.3331661226376049 6.401240392202495e-05 722001.2772125712 138.72069892118267 5391 3720 265614 CHZ_20201208 68143611.61162388 3548.8178076513386 0.012745372352291118 6.642194231607316e-07 7758030.327298127 404.3063071386149 None None 335695 BICO_20220105 291041062.6971913 6283.697046234733 3.9170270900877013 8.513258316970866e-05 51376532.573696606 1116.6164623598615 None None 56648 TOMO_20200523 27525895.597823195 3006.9182159159245 0.3890387994084145 4.2498448360449854e-05 11801786.945035694 1289.2226528750248 23020 1551 201638 OMG_20201106 407988690.55419 26251.564683475142 2.9057645247312096 0.00018692485873372574 227296122.31585136 14621.726982004622 None 42775 100396 MDA_20210221 27162031.55377335 483.1633197448689 1.3837784164733808 2.4614910419014515e-05 5285579.478536586 94.02088067563257 None 370 1150180 BCD_20190414 199007498.32984796 39229.15298427633 1.0593012318311956 0.00020876676650109929 5393341.491203019 1062.918110468219 21161 None 3375137 ONG_20210819 0.0 0.0 0.8569514051828038 1.903921633488907e-05 14662346.628500134 325.758949397598 142533 19808 180960 GO_20200625 15984765.837800626 1718.1787413265477 0.016383408109307405 1.7626167772236464e-06 2383684.8576444224 256.44987255802624 11432 679 961544 QNT_20211207 2336865496.9888554 46307.53465919801 174.557198728731 0.0034567140374631897 89440539.30066635 1771.1693930157232 66227 10662 75629 JUV_20210727 22212339.344178975 592.963715480759 10.063879139722479 0.0002689049618427403 5619726.557707258 150.15803892181643 2573951 None 42486 ALGO_20191220 117523305.99592875 16454.509888036442 0.23009866042854715 3.220125557893589e-05 69907814.95183782 9783.27910313119 13567 708 443575 RVN_20190615 232738880.64442918 26758.317758940833 0.06166813562806261 7.1025417887216405e-06 44125891.242038116 5082.138179130291 25402 6647 169696 LUNA_20210725 3526679555.4288936 103223.05122310226 8.43805305499529 0.000246971679021257 335147600.5317621 9809.367763369793 None None 20667 BTS_20200418 46440160.48414264 6596.680433516304 0.017134656835314937 2.4340233885814204e-06 21163934.42534838 3006.3929427247626 13218 7010 127468 STORJ_20210301 92983315.48880401 2049.653261856822 0.6418334581558927 1.4217068984874168e-05 152651268.21495348 3381.334493025756 85569 8983 78580 BEAM_20210702 37103389.27652078 1104.2447259775079 0.4071218008912984 1.2108882648785597e-05 5460191.089539779 162.4005715204506 21500 2503 188205 IDEX_20210110 23917061.77538293 591.0458034812692 0.041946907192627184 1.0412971074934393e-06 3540830.3899031053 87.89817151952093 None 1945 159964 XMR_20190105 844475058.3830155 221637.05414590545 50.576358098753026 0.013274354878358508 574915669.4803066 150893.32068769136 312334 150911 83108 OAX_20190608 9731932.137171837 1210.2541140191868 0.21627776052419406 2.693932485745206e-05 2025050.3805003061 252.23809383259257 12174 None None LUNA_20201124 178982261.106013 9772.996951988278 0.37851859487714085 2.0624956293604204e-05 24062548.032412473 1311.1350623140297 None None 206479 DEGO_20210825 54340175.14184549 1130.7966411439115 10.000830263326616 0.00020825013912343973 33122695.572378404 689.7233309103979 138936 None 274758 UMA_20210727 533915163.5631184 14261.167322325231 8.591655553582388 0.00023025477236518228 24763535.573934898 663.6581519094992 42038 None 160207 FUEL_20190524 6116028.349572441 777.5944094861514 0.011527782899055346 1.4654440374481937e-06 13075682.505805822 1662.2173692453052 1 1515 None ZEN_20190811 43911821.807202145 3875.357468818082 6.178607782802702 0.0005457420284616378 1039065.3167427859 91.77821826491065 26580 1766 272148 ONE_20191015 17191294.595917337 2059.7314962779014 0.006196051490573594 7.423642435122305e-07 3808348.7288183104 456.28767407777724 70327 None 165912 COS_20210217 48672131.58813083 989.6809047672947 0.016029478757941192 3.2573896581198326e-07 6401057.2104167035 130.07745213121828 15389 None 361958 BCPT_20190801 4753143.016854319 472.853382338801 0.04093719254230964 4.070678644134805e-06 169766.10450183885 16.88106128380351 10970 2998 1188214 GO_20200518 7028277.215372023 726.8097884675913 0.006880441445687203 7.1228687995041e-07 1143427.2012908165 118.37150277158126 10735 674 1263025 DLT_20211007 7134472.739710895 128.59678095692848 0.08699537405654009 1.568066130457775e-06 381943.7996580478 6.884425091303 15412 2598 None POA_20201124 6350948.133770999 346.58237338869856 0.022928729574734696 1.2499356033195643e-06 176178.38961614022 9.604179812882961 18079 None 168138 RENBTC_20201229 367266090.3700619 13544.99039100231 26967.965352786803 0.9935602642384805 17785386.687070124 655.2534929952691 30750 2102 102602 CVC_20200612 16968024.749564603 1828.7535598906397 0.025398531727684876 2.7312663388531562e-06 9236598.256279413 993.2704052883163 None 8001 113262 POA_20190930 3246977.823895466 402.66675857328386 0.014588883991779813 1.8099571519803387e-06 166506.85662204341 20.65752775651935 17705 None 603772 DODO_20210428 406013972.3991694 7370.022055478647 3.5684326763120287 6.47562891217285e-05 87411044.48558934 1586.2467874806953 74744 857 26612 IOTX_20211216 1071572062.4064422 21964.691481473394 0.11356399146339906 2.3238108853537066e-06 49688077.657758504 1016.7456624718353 181807 16173 43807 LRC_20210806 319987502.54282725 7809.074221506562 0.25623035430674773 6.256133591302947e-06 35848447.18907473 875.2775418135307 83347 11083 273210 IDEX_20210212 38685341.80351608 811.2929587472024 0.06835720735493157 1.432139802518168e-06 4138392.424191615 86.70273023809946 46229 1934 6164235 NAS_20190830 30199748.964353167 3182.3838247132967 0.6617818370781158 6.977632861116969e-05 9969951.91392617 1051.2023781963617 24197 5096 694216 BZRX_20210220 85880224.17803955 1537.3688806885098 0.6126507624617321 1.095313203178854e-05 42802275.521341234 765.230378825367 18841 None 179211 ICX_20210210 553714707.4041926 11908.359035591111 0.9432234688258837 2.0251916053667376e-05 127202347.05467843 2731.156867404399 118873 28569 278107 ANKR_20210821 781411048.1144863 15902.337229595702 0.10220212631453948 2.0788732575367563e-06 58053538.18778524 1180.855549644338 119729 None 5363 SNM_20190325 9262918.348798111 2321.294260902732 0.023180476348343616 5.809044696953783e-06 146651.31830409638 36.75092996769093 31528 10069 None AAVE_20210723 3588184483.3071404 110836.99168547428 279.38067695255177 0.008629911285924694 347124884.20660967 10722.491578573585 257631 12067 14216 POA_20200417 1966603.4713588331 276.9848307678303 0.008914858040118545 1.257586062909082e-06 31595.164483372275 4.457013037201503 17272 None 511690 LINK_20201130 5233208239.192852 288521.8212223608 13.324814031708721 0.0007337284504187588 820650238.3478483 45188.95545452776 102570 24898 41366 ENJ_20200207 123472333.50938742 12677.63736962904 0.13735721861692218 1.4105355602614767e-05 25907721.105429456 2660.490818939959 51015 14338 23594 ATA_20210702 81116046.67544317 2414.4797451777567 0.4711489146283247 1.4013218906104087e-05 7469008.458896995 222.14813044541063 68464 None 98513 ZRX_20190816 104567397.14351548 10152.638156924093 0.1739528088194773 1.6880054320753046e-05 43164726.51032537 4188.62410546577 151305 15910 173586 MBL_20200927 5873698.428381907 547.0249011048535 0.0016689881113524702 1.5538351412324726e-07 952334.6451462838 88.66276684513439 None None 584496 LIT_20210821 146917355.94333294 2990.2531460306814 5.3239429974866725 0.00010825352994331302 41305694.18847643 839.8826217283812 None None 606433 THETA_20190629 117140436.8550088 9456.325877727682 0.11707286206937378 9.459297048042528e-06 5639991.111809781 455.7021185944405 None 4003 231431 BAT_20200407 233883617.02660576 32157.084711775715 0.16201045022586985 2.2233858500538646e-05 89941656.97524251 12343.3400234586 None 36488 18490 NANO_20210115 441087458.3940478 11293.749832236523 3.3377924299569024 8.508481861310782e-05 57744227.9113137 1471.9780396444612 None 55840 338450 NBS_20210427 0.0 0.0 0.029633214218827933 5.497189895872998e-07 9879581.62343115 183.2738624798642 None None 497911 FORTH_20210823 149523196.22332525 3030.349748055485 17.32714088761219 0.0003515977292985913 12938075.74302873 262.5359880344905 32119 None 144667 VIB_20210408 17944120.210739937 318.5666489125512 0.09819289173109608 1.747421320038675e-06 3446990.382369868 61.34196048138052 31321 1195 4807299 TFUEL_20211216 1886178773.9046779 28765.286079276702 0.21190977624185617 4.34256213130789e-06 33054775.154706404 677.3751423431148 None 26744 31111 MDA_20190601 18728646.870159656 2183.2179185495356 0.954221148616443 0.00011126425833519622 1356242.149282725 158.14078013432388 None 362 1548972 NXS_20190316 24994317.412156217 6369.179773847001 0.41860998750075024 0.0001066723376179656 1014604.1036107804 258.546605959201 42 3504 745468 VET_20200605 450216158.7007377 46127.18534507069 0.006989066138947311 7.150012517091377e-07 203718224.037153 20840.95103505001 121091 62409 306632 CKB_20210207 150406881.67995632 3835.6852624071525 0.006284610666038101 1.59993570600472e-07 9758263.886019686 248.42580789020698 22864 666 367403 MFT_20190524 23560114.387292545 2990.7489175872975 0.0035425310709790154 4.5046563688156794e-07 2547475.8818267137 323.9351532999729 18087 2015 781601 UTK_20210108 100471843.85021298 2564.9149194960764 0.22292850166891695 5.649134740357094e-06 11520257.795318224 291.9298700802952 55609 3121 130913 KMD_20211125 121974470.68675348 2132.1434847803566 0.9451197469291914 1.652668467655994e-05 3358631.6425946867 58.73017285082452 116752 9964 129078 XEM_20190225 383124503.32937837 101715.00866797841 0.04233499755008926 1.1301044181434724e-05 21086441.725788783 5628.884454060521 214959 18490 136957 FTT_20210127 916520177.6210405 28128.801628488683 10.226947117996039 0.00031398221771154994 63695080.40707302 1955.5320246387557 50180 None 4837 BRD_20190305 12396032.71297164 3338.6393520991583 0.20684369725045473 5.570947765016861e-05 222914.06076432168 60.03772921841352 149 None None FLM_20210120 0.0 0.0 0.1793343312124803 4.975719960990052e-06 8714091.262252374 241.77678385576564 12656 None 124168 CVC_20210506 385850016.84957933 6740.010776403251 0.5784021620632184 1.0089377983172196e-05 43037610.52184188 750.7280375621275 102122 9668 107274 ARK_20191020 27758220.075159177 3493.9727717280593 0.19430800281714902 2.4451662621772827e-05 257335.53631780433 32.38302912596548 None 21736 85415 GAS_20190923 18240535.618953027 1814.5183787775613 1.3086461974977475 0.00013027640102416708 1497112.9720367608 149.03836521779172 323728 98285 189975 RVN_20200407 99052867.23003662 13618.646710634042 0.016956853591798014 2.3271108922218496e-06 14309975.860908205 1963.8608373347506 30231 7630 209100 WPR_20200109 3603198.3196955374 447.71368101188995 0.005990558173260786 7.465535081506146e-07 293935.7353129993 36.63076929095324 33849 None 779057 SCRT_20210506 257853992.57699051 4504.18196919515 3.7075712350279573 6.469157837012264e-05 7451239.642030892 130.01299845648714 79249 None 56465 BTCST_20210324 245450130.3614571 4499.803671298711 33.76405506507494 0.0006193881663548433 21822792.432992052 400.33045094144694 None None None ASR_20210828 15619126.705113394 318.4444743537901 7.698432785349818 0.00015696648691756736 3051038.9645859385 62.2088782318186 2011267 None 101452 DGB_20210107 413092617.35329413 11244.839830174671 0.029736447770377872 8.053329962237453e-07 35018088.06207338 948.3722467062569 179527 23820 242284 RCN_20190623 16913281.597988203 1576.7736776190065 0.0337787969482691 3.149459494150056e-06 2654445.2664190084 247.49454099351544 None 1119 1997723 EVX_20200113 5387857.614108765 660.9171012589527 0.24760013401838243 3.031802469474355e-05 1129727.70413095 138.33236628876458 17922 2886 801156 ARDR_20210325 260062120.53203064 4919.886001777706 0.2720666201618725 5.1570803956648805e-06 26630177.878341716 504.7806606622839 68231 6510 None BCPT_20200612 2511503.103656638 270.66536783364216 0.021669361237232083 2.3301349337423277e-06 183835.12952776265 19.7680334308 10503 3172 8141726 CELR_20190922 18898488.663047172 1892.3890294389043 0.00581767613563023 5.824980651010638e-07 3530028.6296000993 353.4460837206204 18416 None 536359 MTH_20190430 6215159.809690979 1194.1479425597772 0.018197232419023674 3.496322180271771e-06 177757.2107952862 34.153351701827006 19489 2007 1210960 OMG_20200325 74646866.14575912 11045.14447512517 0.5319980006369933 7.872991534661812e-05 150647464.46410665 22294.18552370597 280825 42827 453059 ZEC_20210112 955181317.6257292 26980.449241708404 88.46813398522615 0.0024887842419939596 2829167891.7653556 79590.10945293299 71986 16643 167554 BAR_20211202 31749814.022889998 555.4608378407105 10.770776081765224 0.00018840410937289757 3537290.006487214 61.87483317884108 None None 33797 HC_20200927 54845910.119125694 5107.868394119346 1.223862955733588 0.00011400729614510474 6019426.732764741 560.7315450893145 12886 848 499656 BCD_20190321 160540852.9987716 39726.223687300066 0.8532924493728815 0.00021113549181100616 2295711.276123994 568.042210729442 20788 None 3287367 EOS_20191024 2801033370.3513885 375230.4263907827 2.712813598573305 0.0003633642369414669 2382291372.163478 319092.8735662747 1320 68669 87489 POA_20190201 5800723.137558345 1690.5424919468144 0.026346849328759133 7.678433750922959e-06 189242.23653865376 55.15209648056167 16409 None 763440 CELR_20200520 9831056.063760465 1007.9664969625306 0.002595171051304752 2.6607980430961303e-07 1886668.818188483 193.437912190124 19607 None 1477184 EVX_20210723 6772446.322439337 209.5242928401477 0.3126413842586565 9.680373014168863e-06 185888.06555903895 5.755686560052546 18285 2804 1518494 WRX_20200905 25771886.175839566 2457.8120676400567 0.11283395443057692 1.0761407891443638e-05 3216663.3654028047 306.7855478366788 38168 None 17152 MTH_20210826 9705993.791181281 198.0124578212015 0.027927389291485995 5.697480457035831e-07 635562.1386661727 12.966134522951464 None 2053 1319394 MANA_20191203 32604053.4526738 4459.5046915797775 0.02451729387502688 3.3557553273140023e-06 3524591.5600239374 482.4213864893085 45785 6411 74966 KEY_20191118 4311472.952099002 507.09458091457367 0.0016427526385218423 1.9304716801146475e-07 1300140.0496108567 152.78523906161664 23627 2789 382157 JST_20210825 101437492.41411148 2110.8723961327055 0.07069700012180277 1.4720877843406375e-06 216056038.88476542 4498.825339509732 51083 None 156569 HOT_20190922 151600505.95488185 15178.951797731417 0.0008536309883120442 8.547027840837493e-08 7912645.157859739 792.2580059168754 24415 6671 466446 FET_20210301 170822899.35861418 3761.462157184241 0.24478712005132286 5.423287928032187e-06 26213494.604561117 580.7631088214395 32344 1097 237569 SFP_20211104 192230402.98989806 3048.4655824631454 1.777052921607211 2.818304073715376e-05 23995544.16883275 380.55557636896515 None None 29425 PERL_20210519 0.0 0.0 0.11280748638717968 2.6368670902260976e-06 11989830.718645548 280.26145295771266 19343 654 309210 DUSK_20211125 120662134.2084973 2110.506150574092 0.32015335323664684 5.596906024691208e-06 13115797.421460127 229.2897602497979 30684 13761 420874 GO_20200901 16314616.152796013 1396.4431249725228 0.01572895508986676 1.349161657822687e-06 4361559.432872214 374.1156816537075 11929 682 742486 MDT_20201111 8434593.570163086 551.4398862204299 0.013889893268294328 9.092506911549883e-07 2261324.8809218183 148.02930239914105 13277 66 934790 OAX_20200511 1733347.2072983682 198.3342855410493 0.033181463563674116 3.7899908367025032e-06 112534.29243475519 12.85368068 None None None XZC_20190902 46839726.04058121 4815.704834682043 5.6568224587554345 0.0005815972040762612 7683648.651500803 789.9821154720113 60836 4043 177313 ENJ_20210707 1101140316.6812646 32238.31687544245 1.1779117326243764 3.4490481904715775e-05 114477776.86889987 3352.028494352371 238817 33856 29114 TNT_20190903 13283552.078001946 1286.7630449352914 0.031024177033552328 3.002885169067271e-06 875173.886044203 84.70963403525262 17513 2534 571666 AION_20210704 66408362.39691663 1916.6428182526881 0.13491848891584973 3.8885538016822265e-06 3110741.9608997046 89.65626264650479 73629 73373 296358 ARK_20210427 281344709.174393 5219.161448737275 1.7933129958682905 3.3267339844495676e-05 4890322.038324349 90.71924732201711 72058 22785 73958 BNT_20201231 124219075.270846 4301.655415451842 1.3252951995179967 4.5956224807840134e-05 26780567.346044306 928.6487824629008 89194 5294 101730 TCT_20200914 9362940.349173976 906.8273682868676 0.016015480221518306 1.5510655071716508e-06 11081880.04063404 1073.2567271099847 None None 525749 PERL_20200901 0.0 0.0 0.053562983621576916 4.594400795725605e-06 3762120.6818632367 322.69842129192693 13143 506 1250088 JST_20210325 118921219.17708729 2250.4988278542983 0.08156878114898726 1.549024699600161e-06 291342344.46139103 5532.71093735984 None None 92157 BAT_20200411 234191392.64814574 34151.64779664352 0.16052074091796623 2.3404658579838916e-05 90615583.98032092 13212.166807502936 None 36674 18490 REP_20190515 233199066.31176177 29182.949832140435 21.21051402195955 0.002653544223325737 16730967.321157256 2093.129927909542 125349 9946 267119 BEAM_20210602 75395103.59181145 2054.8835505001452 0.8482078165171888 2.312332568153241e-05 19817265.819256198 540.2462494836902 20670 2403 145423 WAVES_20210408 1223842634.491288 21727.51437956992 12.233781028482081 0.0002173833046577282 213232503.5590512 3788.9501353825235 170077 57903 113507 CELO_20210707 385768390.69373614 11296.07009645333 3.0711201371503996 8.992135444839027e-05 26991338.065131195 790.297210399272 33968 None 78561 GXS_20190414 79073478.03016213 15587.279839589813 1.318122990962878 0.0002597686634521416 27569784.540638994 5433.306399241012 None None 652404 HC_20200217 88700610.46386729 8897.743642459931 1.9906470287647011 0.00020009647470081216 96518111.49672519 9701.83743084745 12779 845 931143 AVA_20210218 88266946.4042864 1691.937484677334 2.289603151235764 4.3912176389768835e-05 10124563.574470142 194.17846333396363 47269 9354 58416 ZEC_20200502 413961154.39261717 46714.40153577805 45.62081990658963 0.005165671575696566 298950208.53331023 33850.30339066793 72411 15725 154064 NXS_20190325 24810296.629282568 6215.557271867569 0.41676135525823355 0.00010436695509778002 470277.10915452824 117.76857262649185 55 3511 745468 OGN_20210725 246067990.77882722 7202.57661024637 0.7809960561077046 2.2858816604822506e-05 81970108.75740379 2399.1666392031657 None 5996 73435 CMT_20210108 8447506.20738392 216.08724624861816 0.010461734084277897 2.651062785486459e-07 2832872.5952669354 71.7865991702368 280654 1628 1272511 SNX_20210727 1583842667.5595002 42281.05911497145 9.365087705957048 0.0002502333858804411 239405911.5031287 6396.881024094905 144339 7312 44436 STORJ_20190703 38573931.222368956 3569.972495068324 0.24860853811499042 2.298704733659716e-05 7829587.642423607 723.9457788822233 83719 7767 206682 NXS_20200319 6468013.3652468 1204.199563895739 0.10883755089207 2.0225933001933125e-05 28996.173362711193 5.388532312053023 23641 3534 599319 NKN_20210620 174421405.26694968 4892.728123838757 0.26837320717889623 7.537807808621301e-06 7695011.657138923 216.13006591208958 None 3229 104026 LSK_20190914 124118963.2464958 11986.448386307591 0.9180681249176972 8.865991067445408e-05 4923725.599275983 475.4952927447145 181631 31001 161832 XLM_20210427 11125638626.409277 206516.69712533758 0.4858781911878072 9.01341536391831e-06 1463038139.35905 27140.486406808373 511288 175169 26729 ALGO_20210427 3632404213.967865 67429.5524247009 1.2381610199356514 2.296884231994486e-05 418601317.24752223 7765.377439583137 86483 23517 138222 CAKE_20210324 1589186902.3797233 29151.66201305745 11.459698291572007 0.00021022360904566194 422235909.0346939 7745.749879927492 265588 None 5671 STX_20200907 155429815.0930343 15135.58678983801 0.19185967477555874 1.8683087008096844e-05 2258831.503488089 219.96256152141845 43364 None 104221 LIT_20211221 86512119.51467499 1833.7122227077614 2.7828417351317882 5.903511048439826e-05 6446233.024334966 136.75016943849644 None None 128209 STORJ_20201115 50632013.66026567 3145.661537904782 0.35314515426510124 2.195348873664255e-05 18359684.26782168 1141.3412216308245 82311 8455 86612 WAN_20191220 20228969.756755497 2832.270417059696 0.19059573850046208 2.6682224772912024e-05 2682992.07855864 375.60229975378235 106676 16593 669609 LIT_20211021 125361887.4094383 1891.3332867827867 4.519910664666769 6.819876681757385e-05 11762507.216511348 177.47883672121836 61179 None 371757 KAVA_20200422 10228292.485753141 1494.378878449565 0.5248386613906583 7.666961180234386e-05 10866944.030375639 1587.467619247167 21208 None 326778 DIA_20201231 29294264.045465898 1014.7741320326231 1.1478431054631633 3.9802857369422e-05 8801678.768499643 305.20892878709196 20679 188 308933 SNGLS_20191019 5701082.272268036 716.3549428956564 0.009878665388152644 1.2412784874967466e-06 119500.82980960823 15.015571785493561 17 2163 None PPT_20190528 36991157.213082045 4194.422856208129 1.020969125490359 0.00011578601379070766 1524490.7999128518 172.88937380720355 24053 None 592908 FTT_20210203 1141975992.1609938 32066.114154382976 12.758834300626651 0.000358889789538952 23490755.61552527 660.7650934500145 None None 4702 BCD_20201129 101579111.09291655 5738.370691031122 0.5389211212224037 3.042677117928924e-05 1232906.00974947 69.60823684016745 None None 3884204 BEAM_20210723 36748177.30924527 1136.2215443861041 0.3958742815166587 1.2227912225417949e-05 6152035.128391028 190.02635197580457 21770 2534 207096 ARK_20201018 45590280.139147975 4013.4741712439923 0.29856224783015994 2.626744642388463e-05 1210646.120378238 106.5124018071073 None 21724 103410 GLM_20210523 321236472.7833336 8553.800453234153 0.3212364727833336 8.553800453234153e-06 10661364.82357798 283.8880232679088 158238 21009 128524 BQX_20200129 3615678.5983132697 386.87116616314063 0.025791434315769978 2.7583251016521466e-06 424648.23692371027 45.41499619363179 9574 4 278278 AION_20201106 29784784.399472777 1916.4678147917127 0.06254410674450207 4.014222709871267e-06 779028.0932986261 49.999790971864066 68066 72540 747017 JST_20201018 37129341.34493489 3267.550227602483 0.025900463483894482 2.2792339368815796e-06 34790261.092545785 3061.533775424859 29705 None 129914 DLT_20210711 5266524.1836241195 156.2578977103656 0.06406284676598255 1.8995039509834204e-06 40133.79591208732 1.189992448844041 15221 2598 None PNT_20210724 20393707.0347128 610.1348766563253 0.651260470144945 1.947437597212873e-05 8691850.468710532 259.90885625765026 47530 318 305973 RDN_20210314 38136755.36297529 620.9430979968428 0.5693375083402586 9.279296491610382e-06 1842570.9902872092 30.030978593978155 27817 4410 740464 DASH_20200117 1183045183.2262213 135945.76784172765 127.99697994742071 0.014697520906669072 2115322841.3663034 242896.36910267093 315675 33540 73115 OGN_20210727 235777070.10415 6294.125321417907 0.7434773037274404 1.9865574021120835e-05 55619671.70099172 1486.1471892510583 117258 6001 73435 FUN_20210127 107224295.94519562 3290.164174206949 0.017857794920075703 5.482603936199988e-07 3956572.0224965843 121.47254149509831 34336 16484 254768 ASR_20211002 15688193.105842121 325.75179853360015 7.344238629764132 0.0001524736677035401 3160809.671063984 65.62153924394254 2026275 None 69254 C98_20210823 581635584.0536519 11789.890442217456 3.1529181522122998 6.39877560050427e-05 516744285.6697715 10487.20761915008 None None 45586 ICX_20190302 138024428.02617753 36131.96350481151 0.2918812322767916 7.634008897046625e-05 29542790.726419743 7726.770422676726 111502 23516 258994 ZEN_20191026 31970917.78316611 3701.5333647440943 4.168286201600256 0.0004822591694170676 1644301.6539370115 190.24114745152073 37300 1846 95686 CHR_20200807 23366836.31947466 1986.0777405530025 0.0566603365111728 4.815452703244349e-06 7808145.78928082 663.5992488485141 25651 None 325862 FIRO_20210804 62560860.0104022 1628.2447794829843 5.147365653092012 0.00013399176775810056 4348710.903846885 113.20187854254141 73823 1110 285212 KAVA_20200113 14156551.317049151 1735.6221051924742 1.035293169587379 0.0001269738962268995 4129986.5974439722 506.52366406641994 None None 303770 AST_20211216 52238833.11281525 1070.7665131283134 0.30436313963986156 6.228051408561957e-06 1837140.4387778947 37.59261095478034 49286 3755 186050 SUSHI_20201130 176575755.66437185 9732.563515568889 1.418253338883484 7.80557835470289e-05 75576108.23543485 4159.448939070379 None None 58279 NANO_20210710 596114708.6839651 17527.116755715848 4.470557639471518 0.00013154824430163003 13814373.205421949 406.49437673183945 133650 107158 57343 NEO_20190513 602971944.4044099 86894.59135626172 9.292545230600668 0.0013367516231763137 397907903.08214074 57239.865087571154 320916 97546 218328 LUN_20200425 1805708.548825187 240.82157125814237 0.6677131952960125 8.908468009983125e-05 425040.074960177 56.70781912681753 29227 2138 2572257 INJ_20210104 61077421.112694696 1827.2766413275658 4.492921438244731 0.00013477600168677528 23947893.015469965 718.3747398682837 None 1932 132125 BNB_20190511 2824317176.629537 443216.8087347214 19.55523566423102 0.003069509248790245 200023697.5757745 31396.94147532567 960634 50543 978 IOST_20190613 155079736.11659658 19091.409128558204 0.011461206023705654 1.4095016641124838e-06 49257332.758273706 6057.677730330292 198251 50012 109542 WAN_20190426 36883385.64282578 7096.724392062016 0.3476230613796898 6.688011108011475e-05 2982795.719655627 573.8678793866537 109310 17136 455982 LTC_20200901 3983740402.535963 341708.00126978866 60.95552510433979 0.005228500992809443 2366434812.830789 202982.5310687662 134875 215193 123582 SXP_20211225 316107922.3360728 6219.073044702962 1.637296576695808 3.2204661019742935e-05 43197643.809228964 849.672255795768 None None 180854 CMT_20200607 9081662.232875705 939.2053327736376 0.011352077791094635 1.174006665967047e-06 1568652.1835228142 162.22652398349788 284301 1636 1175745 DGB_20210408 1152619315.318715 20462.751499691443 0.08112469568703434 1.4436790721408257e-06 73412240.09667948 1306.4297347311033 198713 31431 544060 RUNE_20220105 2368837662.4424953 51146.923980492495 7.845993757216331 0.00017052466085198275 109702417.11787887 2384.2699921171056 134799 9145 69653 ZEN_20190922 30029655.68090134 3005.7954708135603 4.0683035817590385 0.0004073831501462868 2207102.919922076 221.01018818909222 27084 1786 203585 EVX_20210930 12111528.17942174 291.64531930684643 0.5620614506299276 1.3522059505096553e-05 917886.4794115172 22.08248863111987 18396 2790 2963834 RDN_20190523 16109839.652478442 2101.1706924840073 0.3180414622374098 4.149988638103768e-05 1141683.848544634 148.97350070130278 25654 4447 1272561 AE_20190410 162880033.8911215 31491.270181369982 0.6119970257991312 0.00011826772993063174 45936923.05401862 8877.25819010769 993 6362 440681 SUPER_20210930 161054329.01175538 3878.452865230652 0.5606830628218898 1.349797260905519e-05 8222424.6840853 197.94795050026184 141666 None None NPXS_20190608 214030209.93058735 26600.983681845002 0.0009053410146631516 1.1261477568691565e-07 13423147.445298895 1669.696516651424 61368 4492 180599 SKY_20190826 12301888.097343247 1216.219355783396 0.768868006083953 7.601370973646225e-05 954272.9876674085 94.3436705909396 None 3804 472188 YFII_20210725 103596602.53379707 3032.188562021199 2607.5207305518115 0.07630798348285521 36699387.14038005 1073.9919322314988 17590 None 545530 WTC_20210527 28665809.147391245 731.6537541955302 0.9837100690298757 2.50929531218716e-05 8313699.778340537 212.06988255487468 64657 19774 418074 APPC_20210519 15725419.93668037 368.7617581254159 0.13943379018211832 3.2591021203871583e-06 372420.1389520061 8.704886117977885 24924 3132 595415 AVA_20210120 55968669.05559298 1545.5477393971184 1.4463641741880797 4.013009134230783e-05 7242542.0741524305 200.9479218118759 None 9068 88426 XEM_20190426 516885072.14776725 99524.48515202738 0.05746764978404064 1.1044832061718768e-05 45973642.03156046 8835.773820790107 216714 18447 129299 REQ_20201124 20585095.10020114 1124.3245038755467 0.02686593960859343 1.4638880036889642e-06 675861.9031809996 36.82678315485341 39444 27459 345148 WBTC_20210826 9686108056.940489 197607.2853808274 49047.835715477544 1.0008865505804787 295788939.386899 6035.968089605016 None None 222414 XZC_20200807 78438832.4370264 6666.447718175113 7.317219220756559 0.0006218840574502677 13397135.175354252 1138.610793212996 64750 4145 546853 REQ_20200502 8777580.154027432 990.5262836300246 0.011353657087709168 1.2854027889525296e-06 96469.95227602142 10.92183291672194 39234 28157 689696 SNM_20200129 5151585.990940572 552.9370735944922 0.011661737366694505 1.2501882064166721e-06 98768.55362372687 10.588412088396733 30402 9744 None LTC_20211028 12408899504.601624 212052.6328601814 180.24193594393577 0.0030801101301976253 2997033270.948103 51215.5647354894 200763 346246 133415 SYS_20190830 14553581.668380685 1533.707434345317 0.025842801025253756 2.723404929444322e-06 1050682.6992426184 110.72462461027351 60654 4570 680853 FIO_20210805 62571075.94079899 1573.2791976482274 0.18414905764926912 4.630273574303397e-06 12172967.888786962 306.0790658165923 None 508 318266 ATOM_20190430 883823251.0599166 169813.11233185214 3.713481608937613 0.0007134845608744227 78367793.1867986 15057.085613136245 22045 3468 215981 FUN_20200707 22827626.721775293 2445.432571333855 0.003793645757268886 4.062030971197968e-07 880495.283421121 94.27867914122757 34122 16770 233884 BQX_20210725 429340261.60601634 12566.441356339295 1.9341824425082104 5.653138497459569e-05 1840824.8526780065 53.80277275322338 97941 6323 24773 GAS_20210825 145457177.13557097 3026.903886596353 10.43082385249274 0.00021719843136073794 33813414.22177505 704.088251491784 411046 112880 110676 GTC_20210814 127326300.14471793 2671.3967636840334 8.97019147256449 0.00018790000433752005 18592984.500162847 389.470155560598 55479 1095 24142 ARDR_20200224 62112723.906833835 6243.106662896583 0.0624834846300259 6.279316105706373e-06 3124207.043480407 313.96910274528136 64798 6400 1135907 OGN_20210724 238958674.13379517 7148.763137739559 0.7585483277947056 2.267780241181427e-05 56975906.181691565 1703.3698385162884 117180 5991 73435 TRX_20200414 837750467.1959045 122255.01995403154 0.012576457938402726 1.836671887832882e-06 1297978650.3600047 189557.4182969248 504404 72472 50971 MTL_20200411 15988883.955685254 2331.878939160256 0.24689195687930499 3.599797710765299e-05 5179914.663478086 755.2552615824408 None None 465912 GNO_20211104 737779051.1073346 11718.26075402967 490.9404814925765 0.007785527874831814 3454060.908740513 54.77586082249524 87487 2364 144658 NULS_20190920 31265859.236665204 3052.704158010928 0.4278014620699456 4.176924395964143e-05 7365096.252437382 719.1057755291157 21307 5294 318571 ADX_20200207 9314196.464359548 956.3438367806795 0.10124582901802809 1.0397039456395039e-05 500706.4151077623 51.41806239759811 52659 3791 133072 EGLD_20210819 2916014933.079556 64727.75567482886 148.450724150743 0.003299477522901324 168127293.263299 3736.8105024883284 None 10059 47013 MBOX_20211021 152051029.98953483 2294.225153539118 4.364358464592479 6.610475300141639e-05 59526155.957895614 901.6128873566086 143803 7195 7243 ADA_20210723 38077856018.87969 1177334.0486685412 1.188191868090006 3.670257558297548e-05 1355558235.861202 41872.42813637225 530577 546657 7136 RVN_20190803 173328089.37699798 16468.550594912544 0.042157193168370515 4.005358901930365e-06 19651132.29239117 1867.0559338707171 27265 6868 260058 WTC_20190515 61544431.5130314 7701.780653320789 2.1381741414909454 0.0002674965649462178 5967090.19626403 746.5136254579664 55600 20224 966813 IOTX_20210826 711625642.2035754 14518.249231501526 0.07481730704229082 1.5268336767743104e-06 49973103.1273854 1019.8257569559189 105587 8036 88256 RLC_20210318 174263332.74302956 2962.5081951708435 2.466084008325847 4.1838966698752475e-05 35677185.74669968 605.2902420687294 35963 4151 371264 SFP_20210825 153035038.67204267 3184.5960609430113 1.4097544086029685 2.9355717874547302e-05 19354531.76812998 403.02493165616363 None None 25785 DLT_20190923 3541174.8959521977 352.26523260437756 0.04414164000458181 4.391075148964518e-06 483433.9231582982 48.0905259960093 15007 2646 6222590 AUDIO_20210513 286851713.3298776 5564.000046209201 1.8028277717243697 3.593990110160105e-05 20640522.118504576 411.4748703448964 47720 5112 33719 OMG_20190329 245380551.88683826 60947.582321794405 1.7496986778066805 0.00043457898339299315 93583448.51412542 23243.659284614598 289400 36948 None QTUM_20191220 157782169.2832491 22095.03077445466 1.648987884962575 0.0002307683157796473 296106820.7416498 41438.79584352877 180405 15258 163016 SUSHI_20210108 501140833.45261204 12785.845029234653 3.9499406792120344 0.00010006578032596504 426564726.45930725 10806.372976010733 19908 None None PERL_20200217 10774202.962106027 1080.8109253189825 0.04132988201805194 4.154409883878117e-06 3823602.783123001 384.3420890311749 11182 443 1012589 BAND_20210711 222948076.67026818 6612.2871303557085 6.333171191880153 0.00018789703011961646 34331013.410413414 1018.5569385971964 100140 5468 205919 MFT_20200421 4852940.795576259 708.6911694169573 0.0005062643618751048 7.398701519992167e-08 786743.2495617343 114.97705378305866 18297 2593 823194 GXS_20210723 29532756.38058404 913.1270316441966 0.42226936483152344 1.3043213387999731e-05 3840793.817471603 118.63586969085378 None 27040 558664 DCR_20200530 168327858.79364023 17849.20547779243 14.299152652732545 0.0015171938751266873 93011769.92633344 9868.898603579737 40487 9790 320960 QTUM_20220105 954571739.3928168 20610.871381833884 9.092006384644556 0.00019760547270122262 129923608.81384327 2823.756940829724 271684 17637 158151 ADX_20201015 19108154.830434766 1674.0188989475519 0.18700550093487314 1.6363761948714286e-05 446512.1335341856 39.0716755594829 53112 3745 11775 ARK_20210703 149183363.00793535 4413.726838392768 0.9446456039374845 2.7897467807306246e-05 3234233.2963612676 95.514041340447 73094 23402 123483 WABI_20190414 21793918.010241937 4295.138772304684 0.41542075339635987 8.189131617738731e-05 18732506.39772614 3692.7129703302976 35907 8017 1213575 BLZ_20200113 3787070.796429363 464.5519670906436 0.01769120636789607 2.1697442497193153e-06 88188.44804614437 10.815903339809847 36193 None 709947 KAVA_20191216 14309119.846308148 2010.7701097971888 1.042540376385197 0.00014662603069197383 8365933.09129687 1176.6101246502394 None None 335672 STEEM_20210218 168891009.10421193 3236.072742027957 0.4559695968167859 8.745016512133862e-06 33122814.666164186 635.2606910770505 12409 3875 182454 VITE_20200707 7581310.474724545 812.1555426785129 0.015032625175909026 1.6096487943505905e-06 2357567.4555222313 252.44131134614506 None None 603624 DNT_20201130 37320405.73867211 2057.4260415823137 0.049556405051536925 2.7289224441668807e-06 2827800.035283548 155.71845810598893 59473 6096 346319 PERL_20211111 0.0 0.0 0.08925978046455275 1.3744124867275065e-06 4273016.551359345 65.79544867370427 1131 704 1341726 NEBL_20190523 19966767.27930593 2607.2073183609905 1.3184479476371505 0.000171932888877752 896553.9650638398 116.91558511997616 40346 6169 675996 ALPACA_20211120 119408207.18772745 2054.1210590656497 0.7720602424319588 1.3270316320493379e-05 6810024.446962099 117.05197806432105 67724 None 25285 GVT_20200523 3722687.5839311127 406.6741268303725 0.8375388106055102 9.166255548797074e-05 164858.3064309992 18.04254736560733 20363 5548 249419 STORJ_20200310 17722145.959661227 2238.4250471873165 0.12407307826833065 1.565555685865837e-05 1284924.477634146 162.1319346585269 82405 7998 120208 ATOM_20200523 486363977.41651905 53131.4114811494 2.597443993895052 0.00028374377982753445 124558555.08161935 13606.728503784178 33122 8449 115651 STORM_20190131 12662108.401843108 3661.290260253095 0.002802107108130052 8.102384798482034e-07 988977.813771004 285.9661852712546 26464 2567 3680888 NCASH_20190816 3278684.8389723543 317.06253412206235 0.0011286902173290399 1.0954946248989084e-07 625978.9540568067 60.756846204609054 59885 58961 801228 DLT_20210408 21516413.351317663 380.8457878811933 0.26085969263118536 4.6340196960663094e-06 4385782.247906452 77.91085358745377 14961 2557 3585795 BQX_20210819 952892219.2822757 21129.383935686616 4.165370275926731 9.254320270262874e-05 143872.62692368941 3.196458608663888 101719 6643 34355 OXT_20210420 0.0 0.0 0.6623384231274047 1.1835644798507115e-05 45247967.35199262 808.5577564773366 63070 3599 93493 NCASH_20200418 541549.6372741143 76.34958898307357 0.00018553065575206378 2.631609484019165e-08 1312690.7673487682 186.1950769772443 57390 58231 728678 LSK_20190614 268977037.8034507 32678.59569692072 2.025135994058532 0.00024603810392721706 5008157.964446468 608.4518241518085 182940 30457 180914 STORJ_20201111 52929379.9909939 3460.436399652604 0.3663908746772585 2.3984428792813003e-05 19175311.708870694 1255.2411373960142 82313 8453 86612 DGB_20211120 757210163.5835963 13025.916557898643 0.05123434817692141 8.783377682951851e-07 22816528.074504152 391.15591516848343 233338 43662 110164 VIB_20200330 1737340.396979664 293.8062229041804 0.009530129569201377 1.6145414026610192e-06 544422.2933440612 92.23298872832731 31376 1108 None NEO_20190419 730660793.9507526 138569.27626525093 11.245837497284882 0.002132095724767907 201124888.76083687 38131.22104733702 320103 97674 201868 BNB_20190325 2477219277.4346976 620309.1246232162 17.150104271536645 0.004294793986646508 272128059.37602484 68147.33802788811 936111 48316 1100 XRP_20200417 8313796758.115251 1172796.5701544047 0.18856584786352443 2.6600286975590392e-05 2619561036.3051047 369531.79011621873 948471 212320 34710 NEBL_20200625 9571250.104567643 1029.3577604921136 0.5813771487342089 6.252527865056442e-05 401033.9940574828 43.12994117740335 38958 5956 1156866 WAVES_20210429 1901846504.116001 34733.34851316658 19.01846504116001 0.00034733348513166576 313577235.39394015 5726.848817273782 180472 58233 111113 WTC_20210519 42454804.87120836 996.0228580748596 1.4644113111838741 3.423051179211855e-05 13861617.441729274 324.0143364594459 64739 19740 418074 STORJ_20200607 19616808.682658542 2028.2486697032762 0.13642922399909566 1.4105882183039928e-05 2863738.6679067817 296.0916955210164 81339 8120 104942 VET_20210804 5594736317.974394 145611.81225467444 0.08569094639099212 2.230632552963576e-06 547050040.9353229 14240.333206760608 395933 195205 38303 INJ_20211125 574398082.0211887 10044.139681033625 13.145480639221448 0.00022984569797271197 34994458.63444746 611.8700404162739 92338 4361 114107 UTK_20210519 258204015.75968388 6051.384818911571 0.5779709957031907 1.3510031527908911e-05 20469928.863437064 478.4831529177731 75480 3913 101934 BTG_20210112 220463637.0503397 6223.740797788845 12.453565213990528 0.00035032456640108955 186458882.517918 5245.174859351806 82603 None 356122 NAV_20191015 5849024.722380754 700.7861086888025 0.08807090481184682 1.0551992785332999e-05 167268.98810544045 20.040910894117868 50971 14153 439826 ARDR_20200523 51397175.38250776 5614.734234065568 0.05146664832430552 5.623493830442451e-06 33226659.787699334 3630.504849372447 63572 6315 1998735 VIB_20190902 3074287.81904526 316.0780125448395 0.01683951898503426 1.7313283616540794e-06 288614.737644856 29.67346521714639 32351 1120 4329648 BAL_20211011 223764665.60914412 4089.6402367661053 20.70496934759418 0.0003784492950415878 23158496.34211126 423.29531948394646 None None None ELF_20200329 26780940.977792103 4295.9689621696425 0.05806108189933759 9.286701535940875e-06 34694690.876975894 5549.315109470632 82649 33433 652715 LEND_20190830 4419850.751295633 465.77936005172353 0.003917064648385258 4.1279399868225987e-07 2130137.0974182477 224.48131167484826 41698 5820 628333 DOT_20210729 14744715019.364664 368568.9892337329 14.543284734722445 0.00036353389996180433 861496261.0001287 21534.55022551797 510618 27827 21430 EVX_20190923 8934479.356265783 888.7774644023037 0.4095285641354398 4.0768778875584295e-05 1385347.4111999685 137.91204623860105 18273 2905 454708 LOOM_20210106 27331471.86012327 803.1957136172825 0.03287238897821636 9.64676117737582e-07 17125789.94650401 502.57498990203356 22919 None 358251 UTK_20210421 238004612.00382194 4212.804998975081 0.52706031548325 9.347704581911582e-06 23104418.317835107 409.76956645656 68886 3735 75588 GXS_20200625 33655078.26707888 3617.334763824179 0.5171596848764684 5.5633216641305075e-05 20210484.25365209 2174.133602811066 None None 465315 ORN_20210509 415454760.8955349 7084.7320894963705 16.394821514166264 0.00027909643247836746 59805182.923010975 1018.0905710444001 64529 None 51666 RLC_20190702 27401297.60180539 2581.365745347634 0.3915945321236543 3.6895261232086024e-05 913837.7811680097 86.09998581210257 24967 3317 789445 WPR_20190316 7489709.554999157 1908.566088165637 0.012634866168181835 3.2196812065973184e-06 509261.09362274286 129.77251603324981 35024 None 884505 WAN_20210104 39269884.136337996 1174.8521905921787 0.3092299306247111 9.27609668326618e-06 2457101.4985522027 73.70667844190588 104133 15884 601908 POLY_20190618 45929783.069619976 4927.242780891528 0.09950414569472754 1.0679461359149222e-05 12708447.18775121 1363.956946002593 35109 5112 316227 AKRO_20201229 23942458.944761004 882.9473179370739 0.010204092991242938 3.7594164765736343e-07 4315277.062214395 158.9844751766907 24845 None 166133 NKN_20200625 18501146.95031423 1988.551074013002 0.0283566201099426 3.050760502190481e-06 3439104.6496186955 369.99771437067744 12808 1010 255975 BTS_20191017 70361994.52504109 8788.48331785398 0.02596195800780438 3.24274825338006e-06 12939703.675374305 1616.2186796528208 13543 7122 129148 GXS_20210421 68039748.84296015 1204.274278916604 0.9673962204544724 1.7158526379704328e-05 12841736.628909525 227.771488092897 None None 582398 AST_20190201 4098958.8906403417 1195.707955233893 0.024583800543851866 7.166425604426332e-06 297800.2396101986 86.81177096031047 30436 3591 375150 ATOM_20190622 1572931419.7083166 155419.64360237622 6.561145409542794 0.0006484946642908059 110164210.50411612 10888.480325984228 26092 5395 113612 TNB_20200523 4709958.509515949 514.5140505289033 0.0014330851600625446 1.565496700166091e-07 438276.23817763967 47.8771271763332 14861 1435 6344512 SFP_20210828 185816571.4054087 3787.6010510944407 1.7065284915516705 3.478838499648765e-05 45928788.97937392 936.2799398585494 380832 None 25785 BNB_20210114 5950937294.099859 159816.1092441787 40.22565374012507 0.0010762498791555884 597978132.5142691 15999.090953597155 1491707 88563 896 BOND_20211125 128572330.7177742 2247.4756866700536 25.733270856345964 0.0004498906408130358 7034965.124395844 122.99116523429849 26642 None 217749 TFUEL_20211007 1649541827.2291956 29716.543043663354 0.3033570778351318 5.46844591346732e-06 38772931.173417576 698.9376300086117 201538 24441 26496 GRS_20191118 16150272.478677304 1900.0708643965156 0.2197113780471325 2.5819261109244162e-05 541093.8851197519 63.58634873031134 38440 106940 None ATOM_20190821 699978990.7050349 65122.98479230257 2.878298763008979 0.00026778433218737 128273726.66467158 11934.026680460049 28024 6667 115107 ELF_20211002 310701985.00619024 6452.312946781165 0.6757456406940623 1.4029137979500053e-05 47931628.0163969 995.1073044784071 91721 33511 260925 OST_20190608 17580427.713516396 2186.8178856055806 0.02753524441484351 3.4297603809238254e-06 1124850.3538069818 140.11014828238123 18110 755 1020616 XEM_20211021 1580178610.0074475 23833.54713888545 0.17506750135587915 2.6516598097049586e-06 50765212.330500916 768.9152596876731 371964 22295 128433 CVC_20190321 28281076.22182636 6998.260932838638 0.08254311717065534 2.0424160148432333e-05 8582594.781793648 2123.645148390044 88779 8206 423151 BLZ_20201014 27518854.895644724 2408.786387444547 0.11207668414463447 9.811557451983233e-06 6682815.449105209 585.0353998275021 42195 None 202026 SNX_20211104 2130529826.416807 33842.316799414395 11.22791504137478 0.00017816836286552117 258043754.45290613 4094.7257891717604 166047 8231 50175 VIBE_20190110 6604412.054599582 1660.3098722823695 0.03300833826387625 8.279259736420058e-06 147318.25083978797 36.9508471728336 20591 None 1612143 BEAM_20210805 50707810.690249994 1274.9907607907433 0.5414861864204843 1.3617183302450267e-05 5518012.478859889 138.7658434771118 22039 2569 205785 OXT_20210304 0.0 0.0 0.5091380481991827 1.004844803827144e-05 38590714.58211849 761.6338861527732 59334 2700 124540 BNB_20210616 57077376078.24857 1413276.7514275461 369.0197344143191 0.009143005772669141 1840165427.4525166 45592.800484145846 4279197 502585 132 PERL_20210704 0.0 0.0 0.06728175008747575 1.937038110505366e-06 6088848.864814104 175.29764438228733 252 681 5749080 ENJ_20220112 2166796553.2426 50544.87222957992 2.3168363487782035 5.4149617505605907e-05 146182246.32849434 3416.6041675635083 470056 44306 14129 SUN_20210708 0.0 0.0 0.00034221936995407654 9.9e-09 5.735938859800277 0.0001659339 66 None 2023134 ADX_20210124 45928270.6967746 1434.8581576639626 0.4044826060564634 1.2621081108865296e-05 2866861.8513457775 89.45476372028679 52804 3744 10698 ICX_20190405 189451143.70384184 38640.04300963457 0.4000560990940011 8.16312412606043e-05 25835295.86376424 5271.678833219057 113106 23599 314795 RSR_20210805 490662108.7355978 12325.714361649334 0.037243152657484985 9.365831469323805e-07 74576700.86237878 1875.4395425083287 None None 131143 ENG_20200314 8706981.200351167 1581.502394838913 0.10596183224861729 1.9047403271372366e-05 1407676.100793432 253.0399276635328 61298 3606 363885 ZEC_20190616 624046012.4154388 70766.15428849708 92.22293940198365 0.010459175409872103 438523050.9442335 49733.71637078143 39 15174 185342 OST_20190830 6994114.760296413 737.0245927417607 0.010461364789065217 1.103015505028089e-06 457232.7574937364 48.209275853710544 18006 755 528261 QLC_20210127 4192264.9432170577 128.72629387550276 0.017466946871317394 5.362607875086675e-07 628200.1437243188 19.28666218936368 29582 5590 940522 QSP_20210806 25624947.48586535 625.1411647593992 0.03633575283244947 8.880595290560363e-07 518121.0677674252 12.663074673511108 66732 8495 236005 ONT_20200320 240387341.5657662 38871.14951667689 0.3764871997220369 6.098912049247129e-05 127529023.23252888 20659.090056603087 84407 16529 298289 SXP_20210513 360400894.6379339 6987.466792882094 3.9917312276958046 7.957633435518953e-05 494002410.41274595 9848.083135087765 236644 None 60637 TRB_20210421 145726492.61273563 2580.4223742691156 91.95316428811512 0.001630839943525588 310360493.26249677 5504.414048426643 18289 None 295366 KAVA_20210111 85067450.50119412 2206.6762233022773 1.8225512309428489 4.738595568643814e-05 58452170.45373342 1519.74436266675 None None 85719 VITE_20210603 56582236.60771353 1504.531926990446 0.0915330501104137 2.433880392899845e-06 3817868.9963537236 101.51782860591425 32502 2312 160764 HARD_20210519 74207700.34935233 1739.1648616277098 1.1674952757425663 2.7288839554205545e-05 11487909.823748434 268.5164852543506 31376 None None KEY_20191017 3577177.02207737 446.762571738149 0.0013682354866329373 1.7088234688384054e-07 131624.61096079196 16.438926375169167 23659 2799 382534 MATIC_20200331 29760805.76686497 4632.936987042643 0.01078092436581924 1.6791140745763362e-06 13909225.400530994 2166.3426385341786 33018 1602 188548 BTS_20190523 171284783.29367065 22350.22753159721 0.06320014634695369 8.246720016353336e-06 20161941.90917964 2630.8465964335433 13761 7195 179069 NKN_20210104 11815257.553041814 353.1109604558382 0.01809650473030803 5.497499199940134e-07 930989.3030845865 28.282328687973212 13743 1023 376074 FTT_20220105 5847024871.318739 126239.68787316125 41.50614277958868 0.0009035228055562899 317199884.06841946 6904.937678684205 360201 None 963 DUSK_20210809 45249107.504257664 1028.5679486351214 0.1252829549113155 2.8480340251750455e-06 2548385.493609654 57.93197167324531 28166 13639 324432 KMD_20201101 53166949.73677828 3853.1484839943096 0.43276172861519685 3.136301794473212e-05 2252383.69231884 163.23428226119972 96638 8398 291140 XVS_20210120 16921360.75674307 467.2751971130517 4.544381151067335 0.00012560205329169551 4432255.901231275 122.5030259132491 15795 None 82683 ZIL_20210729 908205313.3175027 22712.514081192316 0.0740094058529682 1.8496845473357901e-06 77372363.99266993 1933.7334818279985 309439 35269 41251 XEM_20190321 451870668.0854538 111809.18782453527 0.05020785201507352 1.2423243092995386e-05 17261064.331162386 4271.013190635658 215940 18468 129022 ENG_20190818 28658427.78060947 2803.717011739606 0.3656148882853871 3.5768908534633336e-05 256512.19312693374 25.095151942537044 61637 3479 308569 ETC_20200605 803975962.243857 82371.86640802128 6.919995348587262 0.0007079173162738777 1198696263.0824077 122626.93814701244 231882 25534 386099 IOST_20200914 111026315.50907417 10755.85259584453 0.007370127705524102 7.136609106693011e-07 203966087.14341307 19750.352953493497 585 52191 275570 VIDT_20210823 27930466.38767342 566.1571398635942 0.6023969632397987 1.222367878147195e-05 3714397.150070522 75.37155795920391 29696 1623 1187246 ETC_20210107 888903336.6018027 24196.936049444033 7.634065734930475 0.0002068326975048433 1333583550.4947646 36131.29525920051 250826 26321 167227 NXS_20201111 10804548.092768282 706.3836237487019 0.1807150785177554 1.1830658814079978e-05 1042481.8764898641 68.24691941465025 23103 3515 726240 GTO_20190605 21552374.91925877 2813.08085319314 0.032516466793019234 4.2414047360233815e-06 13314394.906759964 1736.7119857850266 17389 None 1170930 POWR_20200530 37415432.71619207 3969.918129475546 0.08676485894371444 9.254134596279619e-06 2493547.4266762943 265.9558695720186 81786 12751 209836 KAVA_20200605 30703800.73239053 3145.77735021866 1.1296137775082264 0.00011554847342858403 17046059.023425035 1743.6456046730175 22865 None 393722 NEO_20190324 608209949.7967889 151956.54498511844 9.35793173491171 0.0023366397161773823 195015870.83703542 48694.71609658357 318590 97799 162875 ALGO_20200806 268070974.5300246 22883.504794137658 0.33379989631760476 2.849436251372687e-05 94939520.80380906 8104.37975717422 21901 997 217668 QKC_20190729 55613878.63560454 5832.714542490881 0.013866252577485371 1.4545566649285856e-06 3411200.2663613847 357.831653153251 50894 9231 202056 HC_20190629 244116478.94404575 19706.644767559086 5.535814977389822 0.00044714651872581696 248590907.82518676 20079.529296937206 12885 838 640655 XRP_20210731 34956569128.79335 837860.4268482589 0.7543775937140769 1.8055193914666787e-05 4070677889.3198047 97427.17608295279 1941343 323836 16410 NULS_20191022 24399852.593564592 2971.3649669663628 0.331463192885625 4.0364920870010707e-05 2779488.68289273 338.48054068183995 21215 5275 455576 ARDR_20190908 55494179.39635047 5300.910160687549 0.055549757206184054 5.3062190593875615e-06 1962545.602953581 187.46610979156975 66993 6534 930148 MTL_20190930 16766949.675986294 2080.0986647067966 0.3252501363952572 4.039426224276615e-05 3379500.1493120533 419.71516689814086 None None 247818 LIT_20210422 161789347.01830885 2985.9571123930964 8.93649493543069 0.0001649695175531896 71880389.58044711 1326.9266391689819 46446 None 89808 AST_20190321 6696438.477145824 1656.9416878040204 0.04019324176086627 9.945265392768953e-06 550802.3495061867 136.28847300725027 30897 3597 404922 SUSD_20210809 233772219.42871547 5313.930493834565 0.9971634330783663 2.2668805908422306e-05 48052949.49848909 1092.4016559107624 146509 7394 46425 NULS_20210220 80278098.9856525 1437.1304283759666 0.7192400207596362 1.2865143992266357e-05 50308340.323098466 899.8721199983089 39601 5131 599020 CKB_20210304 277460797.7252691 5457.236582584974 0.011505408387710473 2.2707298885227303e-07 22452145.949243244 443.1199410781327 33649 1348 208516 ZIL_20201101 199570961.56630853 14462.990070832035 0.01761141544239364 1.2776998442580153e-06 15601080.417553194 1131.8509909079316 97531 12265 75439 BETA_20211125 178746663.46743023 3126.4436360168993 1.11736670692626 1.953375277991344e-05 43944973.26726937 768.2439779185181 None None 51831 RIF_20211002 178169258.6144042 3700.440912285968 0.22996342456488408 4.774264781265142e-06 4365223.444145633 90.626292381801 44779 3491 1460969 RAMP_20210418 90721505.31715323 1504.931378497582 0.6716114143041833 1.1173005740153066e-05 23024891.011076797 383.0447695706434 23206 None 95701 FUN_20210723 153504631.04352987 4746.307123255826 0.014742759137176216 4.553798342221511e-07 1605379.3829520906 49.58755620098985 4806 339 132450 AE_20200329 33727590.965245806 5408.110052587947 0.09612702733469745 1.5375239027448263e-05 10068546.674675856 1610.4348181199052 25313 6343 484575 NAS_20211207 17953401.7921713 355.69360647336816 0.39443382701417967 7.815306816392843e-06 4340908.44459439 86.01070454121113 26789 5239 607302 POND_20210422 117266073.70683105 2164.243031327029 0.15542661128457436 2.8707807911451535e-06 22089284.52188884 407.9963731530705 15481 431 75680 DOT_20210703 15419847509.992872 455962.7935785334 15.342281439549721 0.0004531345840586701 468816447.8059007 13846.503006310697 490790 27027 19390 WAN_20190714 31917074.84851098 2804.2705171200887 0.30102909924681887 2.6433818057918134e-05 1138276.967143521 99.95381285156157 108493 16951 459878 DASH_20200423 763603732.0247692 107334.4408576586 80.76759115045583 0.011352935916862365 751860779.7795653 105683.81611553609 316186 34759 68820 GXS_20210722 29300318.71585152 910.5106730856409 0.4203376168759652 1.3015013623303457e-05 4443841.7207772285 137.59572832327913 None 27040 558664 DLT_20191026 3208141.302685046 371.7179938492693 0.03989550499391309 4.6157994368171115e-06 185477.61180767135 21.4592460041464 14953 2636 7624999 NXS_20210509 129478877.9195508 2207.345380176166 1.8989318540655213 3.238240287165145e-05 2022293.2652729372 34.48607968763695 25460 3879 484526 MITH_20191113 6564686.6406694725 746.1859742219473 0.012095612914896015 1.374537745698609e-06 788220.6829831616 89.5728962495496 87 2083 691078 XMR_20190626 1925250523.9802532 163103.59166768 112.90949762122331 0.009550200819177939 326127052.0474365 27584.737380268663 318446 158791 113923 HOT_20200410 65113420.00617147 8933.164402509805 0.00036707029308501003 5.034257477462795e-08 7360402.154776267 1009.4567793377464 25087 6939 474054 AUDIO_20210616 244883311.71483475 6063.697405047498 1.080223794743522 2.6763267403620267e-05 12548800.066483645 310.90491933998715 50971 5565 27098 BZRX_20201228 22865014.401015576 863.675258929071 0.1610733848647307 6.12485693493525e-06 12206576.149849614 464.158201219947 None None 127378 CHR_20200730 22456586.760894373 2022.331958769964 0.058667194606146646 5.2859957232018765e-06 8697872.342493603 783.6903794707785 24400 None 371620 IOST_20201106 76762023.27430402 4939.164407921651 0.004584782027380525 2.9426171532521503e-07 33007608.171102054 2118.50320063317 None 52170 268325 ZEN_20201228 133579062.95805658 5030.518358789503 12.532920831501821 0.0004765675417716177 20083443.436368573 763.6781080370547 80201 6301 401562 AMB_20210821 6932675.35073196 141.09709740057056 0.047809815216225404 9.720460771654316e-07 598398.4712354933 12.166348769924733 1047 77 632892 COTI_20200725 23812901.2874958 2495.8526475693584 0.04670694860354149 4.896553610884309e-06 8550371.832191437 896.3838426847249 26403 1069 273018 ZEN_20211111 1078069994.572332 16634.718264191524 92.42992905842928 0.0014232648461537396 128366934.97206338 1976.6340601510965 124673 8657 2528840 POND_20210724 41799138.30856773 1250.2864593901006 0.05384990683984982 1.6104709766720438e-06 5372123.9918684745 160.66229785165345 19714 592 135580 STX_20210708 1045661245.6579775 30775.231852153516 0.9932636901799041 2.9238537404456002e-05 86435950.48131698 2544.4006422704783 67774 None 54271 WTC_20210930 24462405.072606526 588.981167298098 0.8383816023479336 2.0160471726350605e-05 9734230.096119424 234.07797843011733 66047 20176 358221 QTUM_20210823 1406262142.9941058 28504.899601676763 13.537819383273103 0.00027470582629222353 322975673.52444816 6553.7363703821175 None 16848 227670 QTUM_20200417 135406790.91340378 19071.270651245966 1.398146819598199 0.00019723140248725405 403796921.96131766 56962.13882698986 179323 15128 107639 WBTC_20210508 9761439895.955814 170345.83738199322 57388.056685986885 1.0012340198436251 412918421.25983214 7204.076852569512 None None 227802 NKN_20200412 9133846.535327846 1327.3825139869164 0.013931922927173953 2.0244572508540692e-06 1531200.0089761082 222.49972074086782 12252 995 307809 TOMO_20210429 183269393.86615932 3348.1262762629144 2.2588413388881077 4.12557676734832e-05 20819432.1116521 380.2487760007839 46844 2111 79487 TNB_20200511 3722445.5437923856 425.1781864300341 0.001132926707407461 1.293862524756103e-07 178755.69655984335 20.41485078895507 14881 1435 6404689 VET_20190703 422465055.62400424 39243.230109280856 0.007617100574062889 7.05882829651825e-07 77279333.66369247 7161.537935560989 111743 56651 139851 QLC_20190629 7824891.39746088 631.6753206563964 0.032573725025192686 2.631904059815066e-06 758651.6560986562 61.297821238658464 24983 5786 940522 VET_20200106 346986856.0440927 47251.25281726355 0.005472563117512122 7.450871799013276e-07 76562477.27835427 10423.949264110446 117962 60048 370383 AION_20190522 66367872.67802647 8339.839713871384 0.2144470973842021 2.6949378801195593e-05 5498471.9750614725 690.9881546133059 68890 72548 289915 HC_20200502 51127877.32049877 5768.908740575449 1.144090741078977 0.00012952808227665173 26802158.00902163 3034.402782169466 12643 839 1050366 GRS_20200223 15451726.658119306 1600.7259962967655 0.20744401670010953 2.149022162086979e-05 8242136.88168824 853.8465029487227 37813 106871 3972954 BQX_20210610 599582142.0991442 16006.453506158865 2.691712011702898 7.186781079806455e-05 4444168.083341119 118.65780201586074 None 5785 19182 MDX_20220115 256002222.75589067 5938.542834487847 0.3072585011710062 7.126462334561119e-06 8796960.673719373 204.034090711734 35331 None 34109 VIDT_20210814 27248528.076558005 571.87964383604 0.5879979291353965 1.231979283970645e-05 8611157.643765107 180.4218569906091 29597 1624 1199855 GRS_20211002 64817665.98053028 1346.061131144625 0.8314330578686571 1.726136046926856e-05 2438617.976247863 50.6280854922444 41779 106983 9013944 FXS_20210527 35326985.03849381 901.6707358555602 2.512648873962148 6.408590838508542e-05 10407195.093366733 265.43881964991914 10042 None 139440 ELF_20200801 47651475.60526556 4204.428203379857 0.10328059495552909 9.111500463166204e-06 16824938.63373936 1484.3101573927584 37206 33356 548610 ANKR_20210429 1231387060.1493812 22496.06050068116 0.17571166222074883 3.209015232582001e-06 506675408.70765257 9253.393223694466 81614 None 5736 LOOM_20190513 39482896.8918515 5677.6575636441885 0.057079462234922176 8.202796748519788e-06 2414530.700538942 346.9882827218449 19400 None 495542 WPR_20200901 7115439.635423994 608.7749725285083 0.01167463337876951 9.999200363867942e-07 1114457.4568626601 95.45210583178913 32931 None None TRB_20211230 77092903.79613689 1658.4110169652308 33.114189880619115 0.0007115829608101062 11667538.536083525 250.72096423930702 None None 346717 NXS_20190225 16787665.451129287 4456.92593931723 0.2799202474213177 7.472283610371393e-05 344496.2097285275 91.96095693338913 25 3505 888108 BCH_20200320 4070986836.627271 657894.4369471621 221.840197061904 0.03589659292088293 4027222965.179451 651656.3963488442 2645 287948 138735 RLC_20190816 15431285.296108207 1500.1085421298121 0.22065065512262716 2.1411525744576846e-05 114487.08408371174 11.109611919881171 24871 3312 784217 XEM_20191030 378533508.2535063 40227.25646866769 0.042110994035154274 4.475688392243173e-06 48109147.275319435 5113.190912594319 215229 18266 149235 KNC_20190329 43977726.09856873 10923.258501183263 0.26663824990564716 6.622741733042467e-05 7232337.772390055 1796.362870278971 95206 6653 212741 STX_20200106 42795949.79506628 5827.157595089346 0.09181527831482128 1.2500611746721287e-05 173410.14350478508 23.609718520524424 34981 None 32309 ARDR_20190903 56229234.49415192 5444.805404228983 0.056460845565822315 5.464945471373625e-06 2209189.7547210343 213.83139810389216 67082 6534 930148 GAS_20200713 23466909.110446543 2528.811085679711 1.6881712077572677 0.00018184189736801014 12314190.595604982 1326.4269477921835 319771 99772 207094 RCN_20210427 58627537.72346906 1088.258018960085 0.11416803699154318 2.11790518148655e-06 1325600.1978409009 24.590906540635366 19633 1153 909754 ALGO_20200506 155107569.72564173 17297.5242622161 0.20882171482783274 2.3207186424832128e-05 81508923.69352508 9058.41037174996 17301 863 285708 ELF_20200127 27493518.29443077 3203.7404132585607 0.059607580624776 6.939565146633426e-06 20742732.282129347 2414.886504069612 83617 33476 920843 ADA_20190716 1830497000.8659518 167137.8247091661 0.05863966042805709 5.362276053983151e-06 272335513.2211476 24903.592390112975 153904 74567 95231 SRM_20210727 152659317.88943866 4077.6142434395383 3.0414057625401836 8.150910929289365e-05 124256731.03677829 3330.0573028425824 None None 26595 SOL_20210304 3742765612.839295 73614.57038212611 14.131003508942642 0.0002788922473786343 196774080.8443388 3883.5717221224477 125267 5115 46450 MATIC_20211230 16907462210.894873 364546.8821018972 2.4774733330919645 5.3237835986483217e-05 2002370442.2446234 43028.46281512086 None None 3692 PERL_20190914 16800341.705059156 1622.374920617784 0.06429213973830299 6.208561524249635e-06 4124860.6981287147 398.3294307443033 11355 370 317628 CRV_20210708 684917829.3611588 20157.8064736693 1.9409157277682663 5.712514448563203e-05 134125302.17735295 3947.5836876597923 139922 None 15400 BAT_20200330 188856866.3790947 31938.08345032733 0.13076651377861923 2.211715325000014e-05 59114192.17773555 9998.260333363014 None 36230 19141 FOR_20210220 35839640.0660192 641.5547361402164 0.06340122319320723 1.1332279445369377e-06 19627927.640946344 350.82787012305556 19776 None 211911 IOST_20190704 154888892.53335848 12905.885748685567 0.012887134990954403 1.0739072381335479e-06 57872904.92124138 4822.649218027085 198054 50309 104916 DGD_20191220 33915877.616735436 4748.013135341515 16.999228667135938 0.002378964336149196 1867773.7673723458 261.38639979377734 17502 3354 462773 MDA_20190213 0.0 0.0 0.7050734897853346 0.00019403724573824503 398176.609035042 109.57877959370781 None 345 1419763 XRP_20210509 72020347233.61066 1226586.7728820082 1.5646144361837921 2.6647127454943078e-05 5932468398.375749 101036.54796865933 1625756 304820 11015 NEBL_20201031 5804873.518089399 426.86066679673195 0.3401036282796213 2.511194351519476e-05 265879.7698098661 19.6315393489685 38510 5925 780317 ROSE_20210219 196781193.7646436 3807.464289317988 0.1311874625097624 2.5383095262119924e-06 23285751.983517863 450.5495033900418 11567 837 193183 DUSK_20200806 21569045.736276884 1841.2276916815858 0.07542969328977561 6.436611174105848e-06 3252286.566810646 277.5260397375271 17492 13331 756199 BEAM_20191213 27747704.603049584 3849.8847415354285 0.5657679927078243 7.859764844421218e-05 42277194.62445624 5873.234476197321 12115 1407 312343 MDT_20210421 42002216.016759515 743.460994783556 0.06903063016677817 1.224296193331488e-06 12547815.19307591 222.54240383427808 30107 234 381469 REP_20210616 129278674.10955624 3201.032653006645 19.936309001635284 0.0004939513291259749 74159174.16612493 1837.4024320769404 150355 11184 150117 QTUM_20211207 1105107815.3044875 21894.445906010027 10.640953207520566 0.0002107202257615692 336975607.7260524 6673.046554324725 269309 17565 132017 DOGE_20190806 365385230.1357713 30937.201985730273 0.003031206361548203 2.5663823213863917e-07 62073359.96918175 5255.464480240683 137960 138384 127721 BLZ_20190626 14206822.097844094 1203.5751615076058 0.06859901250967297 5.802296168763864e-06 2002761.3552037762 169.3991518698407 36587 None 922433 RLC_20190801 18717485.4347544 1861.213813145875 0.2674408027961122 2.652685001675872e-05 255545.63315406398 25.34699496951272 24927 3315 861371 UMA_20210112 467531845.6097904 13183.102835973048 8.387676679409209 0.00023596199678112262 34754230.180781245 977.7054914598258 None None 192669 WAVES_20210725 1515044801.760685 44344.13297819996 15.14977970098016 0.00044341488513010446 266487914.45307058 7799.764109317337 194644 59174 108854 KNC_20210729 131445665.38955498 3287.2099318232717 1.4280066646117373 3.569237694584985e-05 28848090.781780023 721.0449053690821 176787 11251 107693 NBS_20210401 0.0 0.0 0.03912562210545221 6.656354627138609e-07 19301377.444419745 328.37001981984776 None None 976233 SYS_20201111 27851826.2150351 1823.217194458622 0.04643362694627131 3.0396063222532336e-06 1607698.6190192958 105.24206718340919 60912 4490 320728 WAVES_20211028 2870243962.805949 49046.34583688768 28.708424274737485 0.0004902009373632586 875434418.6598254 14948.182753615443 199754 59872 136540 MBL_20200907 5389503.912978119 523.380512905832 0.001525569834676983 1.4831067941211055e-07 2053559.0185721777 199.6399812938054 None None 428070 CFX_20210617 272392155.7085449 7121.539624767307 0.3225274666541259 8.427097371798566e-06 2118255.733800207 55.34644076142472 34425 None 134840 KNC_20210107 237929426.36426583 6491.377523315257 1.1827537120847678 3.204480407275236e-05 145875480.67671707 3952.2608549369293 127554 9336 138877 DLT_20190625 8412383.297984824 761.9290652891787 0.10443294421355724 9.455993152432774e-06 418678.7409050778 37.9097164872772 15082 2671 2617266 UTK_20220112 182054477.5522821 4246.7855567392335 0.39487667051017333 9.229756792957072e-06 61732247.21233439 1442.915397651656 88772 4291 106204 PPT_20190228 42838423.45976553 11222.310112193638 1.1825662184319414 0.00031016890585202787 1818528.7661069676 476.97208735740537 23352 None 575286 CND_20190321 28498346.506292563 7051.987737373349 0.016585661615139944 4.103021569834131e-06 426285.6567032794 105.45610328670057 36716 6207 587150 ETH_20190929 18778305331.488625 2292206.773877826 174.07970541243265 0.02122699301817031 8420640752.534281 1026799.0863098033 448127 446250 24076 ZRX_20190329 177264152.37610343 44029.15591991771 0.3016955783956708 7.493493144447304e-05 24465753.542471297 6076.786322794738 148606 15747 207676 LUN_20190329 7623030.856832179 1893.420842346828 2.8198398053501568 0.0007003964118476546 4445340.692425078 1104.14097442967 31797 2248 1442676 AR_20210819 1463631470.6606956 32488.715731940752 33.51627004876733 0.0007441962932141643 265219120.09008437 5888.933517165709 None None 98920 XEM_20191019 362672111.1926834 45570.04029363048 0.040257022083982415 5.058393367939905e-06 52246086.87652437 6564.848706535995 215403 18282 149235 GVT_20191024 4846013.279233973 649.3569822622538 1.0937918726417901 0.0001465065087347993 860002.0378808476 115.19183788632743 21154 5686 109882 SKL_20210111 57737521.93776343 1501.9959842257047 0.1022457410867624 2.658368156684359e-06 23555444.078031685 612.4366823304856 None 91 244845 RIF_20210217 202159518.73298076 4110.635981592536 0.2890793199303641 5.878791182215676e-06 4498133.390205068 91.47519413404395 42576 3092 719987 SXP_20200905 135532452.65660185 12926.931065378296 2.046643699773473 0.0001951926060576908 149964268.12640134 14302.39973590247 79781 None 88692 ORN_20210218 124929061.58059043 2394.692133628624 6.097984800541134 0.0001169529243698697 13345470.385688093 255.95206281249025 35795 None 107725 WRX_20210724 430367521.1347221 12873.056862172998 0.9576192474906263 2.8629290032816635e-05 9197465.082432834 274.97034557490014 295349 None 1290 OAX_20201226 4166521.9771216237 168.80560326999412 0.07430616985039919 3.0134537028875186e-06 152393.88395037132 6.1802662526171135 12772 None 1739260 XTZ_20210724 2251163140.4871507 67346.50723221675 2.6842481212167955 8.027205367716507e-05 97344531.50291902 2911.0742022010318 125288 50685 65574 FORTH_20210731 134211332.92244014 3213.9265756823106 15.63165029367689 0.0003741262725859348 17544965.06211201 419.9193468391253 31781 None 110497 CDT_20190804 8723231.474012518 808.1262256913337 0.01293136770110325 1.1979708900826065e-06 776215.0701223215 71.90910350268956 19792 297 234430 ZEN_20201201 157461692.87367508 8009.056552190091 14.970125673908841 0.0007625641726447408 20221778.00575253 1030.0784208671164 78074 6211 299340 ZEN_20200423 53474433.21961274 7516.527420037751 6.002335656705723 0.0008437063813768758 3836861.027397647 539.3207441931534 None 5144 38653 XRP_20210212 23856145163.797523 500233.2347669003 0.525723076120374 1.1010789820558041e-05 5044099241.561654 105644.05312532792 1147454 262452 11661 XLM_20201018 1699630246.187389 149624.48295817024 0.08198678805775647 7.214815666652231e-06 226493912.4205695 19931.404393865458 290725 111620 45585 PNT_20211216 28638642.173524152 587.021104327177 0.8501145392483679 1.7421265998394875e-05 6094871.49243993 124.90126046980657 None 384 330723 TFUEL_20191216 0.0 0.0 0.0025685551094846966 3.612493567138134e-07 135205.59385471206 19.015723518551532 None 4019 533259 ZEN_20190627 62182359.3428724 4788.306823739363 9.22824220218366 0.0007084635418944573 2271907.6594047206 174.41715464058223 26068 1687 240249 POE_20191030 6148538.662458109 653.3908099285321 0.002442635344074156 2.5957313980467235e-07 74598.97804527527 7.927458760640961 None 10675 871423 SNT_20210110 243614508.03419948 6020.27682133468 0.06296398960396644 1.5624872024430861e-06 61013868.33291375 1514.0938342909521 None 5680 172923 BNB_20210509 99362109225.36565 1694339.34970151 645.0585761750556 0.01098112274015742 4816848613.341271 81999.38392804675 3350381 336964 139 CELO_20210421 601138101.3159672 10640.455985187502 5.861877060890471 0.00010396361374778868 292937816.95103854 5195.413301450548 23043 None 83997 GRS_20200927 12842230.723355323 1196.3006106053288 0.16903760942092344 1.5746469575394856e-05 513935.97482673306 47.87500970365912 37704 106812 3365109 IOST_20190205 81906896.27505974 23643.180392067683 0.006144753881695295 1.7737398326252718e-06 4535971.351010984 1309.3499300114386 196242 47947 76980 ICP_20210814 9349584557.759521 196160.96518159244 68.06350300497547 0.0014265915773558947 565507796.0139205 11852.881839825093 250013 22291 21737 KSM_20211202 3538308602.932724 61902.46845877763 392.96103410988684 0.0068738181496411825 131617843.2153028 2302.3074579373756 None None 76559 AUDIO_20210610 239119689.8803009 6370.614534309536 1.0577558225398034 2.8241726824538312e-05 11965800.752618324 319.48287959396714 50757 5474 28886 OAX_20190321 3647461.6230939105 902.5322914241989 0.15544359065445873 3.8464926276745426e-05 486201.5640947631 120.311858725112 14355 None None BLZ_20190103 9027714.161821496 2333.9665307620567 0.044687986907053515 1.1553341620992522e-05 160957.5422906081 41.612916608361004 34959 None 742592 MANA_20190712 60958809.27810301 5371.6401485152965 0.046993186742333125 4.129723307806189e-06 15068748.501901787 1324.2294515795122 45355 6312 154801 RVN_20210711 468247744.42044705 13886.12823296557 0.050978779468469945 1.5124747099098548e-06 15380249.626843156 456.31219176379665 None 44622 58646 POWR_20210110 55172573.55191983 1363.971057342449 0.12778676497240404 3.161864263404636e-06 9617269.890075063 237.96284367565443 None 12570 337778 LUNA_20220115 29238052559.936546 678356.0648936909 81.62788200406618 0.0018926295492264558 1735623545.109905 40242.28397405375 299939 25823 4371 AE_20190512 130618552.94552176 17846.796288685226 0.4886129599417167 6.70829841374118e-05 45277878.12015601 6216.3213601055495 995 6356 421011 ARK_20191017 27823713.362678614 3474.973047321152 0.19490144614579274 2.43417283456137e-05 595835.6403991681 74.41540113756825 62813 21735 85415 DENT_20190920 36677289.54012811 3581.0598850397014 0.0004981578484033854 4.863862923630919e-08 638621.9947626443 62.35312466714387 46436 10228 275071 HOT_20210107 135559427.73787117 3698.438800688238 0.0007636843057012974 2.068236848021008e-08 12127468.448641418 328.4403899810264 26939 7418 750555 ENG_20200801 22883482.381461173 2019.0761669829562 0.27659113889102954 2.440110159317365e-05 1516005.6684859681 133.74328794794582 443 3570 577779 OAX_20210813 10292915.171254411 231.73675504010023 0.17923520960151437 4.031842366549952e-06 740035.4642014412 16.6468761575941 14243 None 1659116 EVX_20210725 7113448.166516334 208.5145669431702 0.3262156888044165 9.550080633276782e-06 232853.56228526033 6.816871082197525 18289 2804 1518494 SKY_20190302 15778010.822568242 4130.359526731271 1.1559015313353822 0.0003025913060653632 3664425.718945705 959.2714727129866 14660 3538 408962 BQX_20190629 11908704.64573333 961.3468665056355 0.09946522626598595 8.036628682086815e-06 754560.2851196248 60.96724511076415 60737 5769 449913 LUNA_20211216 23077478888.09374 473033.7060196088 61.57306005704599 0.0012599429217069753 2123141062.6601856 43444.9181379936 None 19724 5217 BTS_20190629 184587384.55487588 14914.1836201223 0.06820554921177478 5.509193138208434e-06 25941772.788730014 2095.404821048794 13698 7178 169425 ARDR_20210828 296911516.9775127 6053.46468714776 0.2976732009749616 6.069380341342232e-06 38645546.29172715 787.959810205317 72844 7044 None HBAR_20210420 2316377742.405134 41397.58520373305 0.29301328481936545 5.235995737633231e-06 218742318.86843207 3908.8120183396663 82205 15120 42635 WTC_20200412 6634036.663444356 963.9158510528121 0.22739452680047334 3.3039460410980784e-05 8289629.190344948 1204.4479667552953 54622 19632 978850 COS_20210218 55759976.53057261 1068.40110141899 0.018513770812254124 3.5507462029333274e-07 8556721.88120358 164.10891134684474 15485 None 361958 XTZ_20211230 3722061355.7449675 80252.4852815846 4.334946800172009 9.315264211932526e-05 161873923.8824338 3478.470300782682 247524 66506 36113 TLM_20210527 315147717.65429306 8043.694478057336 0.2536901000662793 6.4756600684130904e-06 102821769.8736111 2624.614950130674 46042 None 16975 QSP_20200309 6809588.668746118 842.9277287124581 0.00943444600746431 1.1717192534516327e-06 91420.35948180682 11.354031310111116 55481 8334 347894 CELR_20190430 22192237.371344395 4263.874283800342 0.009227192526262881 1.7721230740617843e-06 7056639.914907212 1355.2588593940634 12892 None 386585 ETH_20200308 26199142579.509506 2945558.1684866264 237.38079020191347 0.026695263268641734 15033855133.023136 1690670.5903932007 452737 454168 19200 XZC_20190510 46340215.98796953 7506.534119791769 6.217769312093823 0.001007200689404287 3956395.152586 640.8864216769238 60357 3969 353652 NULS_20190627 63133572.36748264 4861.190840322873 0.8873218353045083 6.832756498372594e-05 18324566.76042688 1411.069779086423 21188 5312 640711 NKN_20210806 180426134.49025944 4403.682935839141 0.278180496570144 6.789712507866329e-06 19009031.87430117 463.9644513929037 28982 3315 166528 APPC_20210128 3610700.845656444 118.93428413730382 0.0322849549641968 1.061972888383302e-06 132955.93552966564 4.373417867199302 24240 3109 531818 CELO_20210314 378755540.90650177 6173.828681911944 3.9867419369974093 6.498124099853566e-05 22352870.84332757 364.3369222873162 None None 92860 DOCK_20210310 52117023.96574143 953.5787842955187 0.09245815979670413 1.6901875186521327e-06 97077122.45406535 1774.6247716729367 44639 14859 205614 KNC_20201014 196148646.27777088 17169.26929233055 0.9892056520163901 8.660527285113054e-05 37077120.47096955 3246.1138170582867 125185 9169 58616 ARK_20190603 88174802.74033709 10087.881354369732 0.6213814759293195 7.107614385664301e-05 1848199.5767787849 211.40459457445724 63485 21761 216267 TRX_20181229 1335620512.5274818 347271.5826722774 0.020376706007310185 5.296433925613292e-06 127072328.8362484 33029.39116918815 362196 68689 93555 SNT_20200404 67584232.36446585 10050.16158209355 0.017716363523115737 2.6331702322786104e-06 46518906.87305297 6914.071313587581 None 5637 188189 ONT_20190904 470484247.83119977 44270.72065454873 0.7214572842404379 6.789986495341947e-05 54397693.226607695 5119.632311638357 81460 16278 256067 HC_20190726 135463324.1326004 13677.834962713147 3.0563713913037445 0.00030907878336601654 60871040.51283634 6155.648229617005 12946 844 470640 BNB_20190906 3535644062.8874755 334527.7403579043 22.711985916020357 0.0021488140085365918 240497988.30711493 22753.864334455797 1031681 56108 1071 LSK_20190207 137601963.02065033 40389.85578113742 1.0609081548049457 0.00031138154595557394 2156394.4102053293 632.9119274826817 183157 30493 183991 RDN_20190623 21180968.744342253 1972.959810931132 0.4197778126002581 3.913460563651361e-05 1864461.564408137 173.81806721888856 25672 4427 754056 HC_20190719 133414432.02772966 12431.004281661877 3.009508321176974 0.00028175428891064037 99909031.0165892 9353.620254760164 12959 844 470640 AMB_20190725 4137635.9184321067 420.9156747683262 0.028616142317541646 2.9110784733855365e-06 147184.0568762712 14.972819705869917 19378 5651 802250 HOT_20210813 1945138995.8868825 43750.94604643681 0.010957553294254558 2.464456228062309e-07 413016315.6024046 9289.123255383985 84903 23988 97227 CELR_20200208 15022664.456833176 1533.579167360695 0.004163303571873794 4.2466975475078513e-07 2962229.930971326 302.1565534638275 19008 None 1104525 QTUM_20210509 2654284106.4578238 45255.26953324756 25.574016088059217 0.0004355173841355048 2102126835.6885839 35798.553400754325 None 16492 91634 POWR_20191024 17946907.15755095 2404.1932868078707 0.04186313161096955 5.60730191038561e-06 630162.389632549 84.40626955661995 83467 12960 308100 STORJ_20210902 217157035.68131614 4464.192838799403 1.5118596327404223 3.1072906565170776e-05 51881196.76829307 1066.302416414341 104954 13816 72856 REP_20210218 185447070.35913044 3556.6794447242055 31.38950256267499 0.0006020175909416151 50760108.43917104 973.5254051085775 139160 10694 131610 GRT_20210727 1600014758.9169424 42713.3183458108 0.5495511276293648 1.4724242914452242e-05 221591656.82303098 5937.153467327184 None 16220 33618 FRONT_20210724 27052660.09298638 809.1931071653423 0.5977050595952692 1.7876169647143402e-05 16184979.294648353 484.0605428412327 71162 None 222970 NEBL_20210314 46138674.13139945 751.0328300939767 2.6180328984060908 4.267219433860525e-05 1699711.8273312056 27.70417188403591 39664 5924 614575 CDT_20200806 5845093.178975076 497.9131296698713 0.00866479920539923 7.381092410707899e-07 290559.6049590214 24.751263637880268 None 290 257807 EVX_20210902 11950060.980435928 245.8300804731826 0.5489219349946957 1.1277642850231454e-05 1241285.446848318 25.50230379276165 18349 2793 2458089 CELR_20210825 250488151.84246555 5212.555167708399 0.044292320405295786 9.222706108604376e-07 48064411.75784614 1000.8144524136572 59613 None 206136 DOGE_20201014 334010355.1548773 29236.57054436149 0.0026374022396522413 2.3082117321851475e-07 81979158.31176832 7174.683185028227 151878 167763 89289 SNGLS_20210731 7795444.656168376 186.84598488555022 0.008776469879556697 2.0997212360830822e-07 60388.163179787014 1.4447529630564162 9466 2136 None POLY_20200531 24456454.390264075 2525.9268116359235 0.03803328677677369 3.931584109478039e-06 3781888.766750504 390.94212042304787 34731 4988 338574 SYS_20211216 494474093.9439645 10134.864488160514 0.8012375556936949 1.6395377880631217e-05 42944284.59871121 878.7503391546055 106850 6581 107700 GRS_20190312 40869547.58675605 10570.14270193197 0.5588479407266365 0.00014471587231059874 405218921.4254569 104933.03350925261 37611 107040 15350348 NAV_20190608 14692846.88466066 1826.2268462691022 0.22500597972930378 2.7965119489617325e-05 515038.018705011 64.01207537732651 48346 11277 1015910 TOMO_20200903 67005430.86336689 5873.388891122478 0.9302404420935408 8.165031704375115e-05 10707266.02588071 939.812575464263 30666 1666 74287 SUSHI_20210408 2020915677.5528216 35879.44846760272 13.912426398134677 0.0002475827941613675 615141374.0471572 10946.934476596954 68385 None None VIBE_20201031 2160302.192736706 159.06263920958997 0.011535953058955065 8.500036657118168e-07 45213.309247265905 3.3314524082 18639 None 2188012 ADX_20190613 15919339.323968451 1958.5099758927174 0.17290430622151925 2.1262606102177207e-05 2343608.8149081767 288.2012147525162 54248 3889 922905 FET_20210909 608092998.3579048 13125.672339264793 0.8785304348721075 1.9019365657795203e-05 306908524.38965553 6644.283700553835 None 4713 117531 MTL_20200330 24082631.536420017 4072.6774221157343 0.38610425690565925 6.541162992499512e-05 24113601.064704638 4085.1918122954758 None None 635134 GLM_20210707 326126661.5586542 9547.642358514648 0.332488913983157 9.735621569627073e-06 25029293.23690527 732.8837650270648 158545 21009 170065 DOCK_20210723 43332372.85959908 1339.8211413750141 0.06282606547371715 1.9405949058821257e-06 4138981.378336299 127.8463981116336 51824 15145 269891 SKY_20201228 11969946.207080554 451.58733390925937 0.6283146557709574 2.3891826573037086e-05 787191.1555117473 29.933146385449433 17186 3815 846842 MANA_20200707 52161187.95956639 5587.8199495050685 0.039109124937598105 4.188817330308288e-06 13813125.777718239 1479.4670229967007 49205 7031 70384 KEY_20190627 7834872.224689359 602.777769893625 0.0030018326187824405 2.304543945296199e-07 788556.2824596303 60.53843891551528 23920 2839 824192 UTK_20210104 66415604.57246327 1986.9811240227084 0.14680689464661603 4.45981584782936e-06 6835019.655703639 207.63962792148678 54969 3110 130913 PIVX_20190608 43950184.49433304 5474.387633606658 0.7302957774479 9.096485530001444e-05 2805263.191904355 349.420561107162 62904 8606 306282 MDA_20200704 8181102.317344139 902.2167353349158 0.4166599069752859 4.5963721191690325e-05 127667.80826803466 14.083638589047608 None 375 1869072 STORM_20200425 8047054.978290622 1073.182021881323 0.0010557664688728202 1.408578096138537e-07 388442.87410259026 51.82510907418476 26039 2508 799916 PERL_20210722 0.0 0.0 0.05499430115695162 1.7089540440801054e-06 3952127.247114296 122.8127951367085 327 682 5644185 TNB_20201130 8077306.78282283 445.28229646012096 0.0023523634879438838 1.296519287043413e-07 364916.9213669434 20.112615637232384 15734 1420 1233768 DLT_20191012 3397378.923602165 410.43292973847247 0.042349186869087306 5.116150193894867e-06 354521.96153150906 42.8293371449214 14970 2640 6019106 XRP_20210124 12353173876.273672 385462.9396252661 0.27142759423240986 8.46950584652491e-06 2366507204.2381835 73843.43754296651 1071203 231705 12972 VITE_20210702 31122164.554361824 926.3882157471336 0.04776265783650747 1.420013213493815e-06 2666446.005331014 79.27508082985504 33025 2371 205892 FTT_20200404 71498876.90829027 10631.545777326126 2.481252566845516 0.0003687476973865958 2263905.9102112763 336.44704398296307 9994 None 14034 CFX_20211007 329585488.93646926 5937.877781884667 0.32683046372197005 5.8910076172351575e-06 25077881.716956172 452.0202631551087 43321 1819 188055 GLM_20210112 110492519.19826658 6393.577954391452 0.1158982303726605 3.260447309475664e-06 2778309.227725762 78.15935426540135 145745 20319 228749 FORTH_20211011 115044120.09141643 2102.8184065743953 13.248395636903586 0.00024210367748010925 8552028.769753085 156.28138469125827 33098 None 177738 VIB_20211125 9688929.928156469 169.46830070043802 0.053100372178842316 9.283452772214856e-07 1311500.2399625194 22.92874802729102 33178 1313 3761779 FLM_20210128 0.0 0.0 0.1887883600806011 6.230835009496996e-06 18863514.581481773 622.5778273950431 12964 None 124168 CAKE_20210401 2649470835.025269 45043.900544012045 18.199790449310857 0.00030970361005085563 544146809.6882175 9259.679765405108 286861 None 4019 KSM_20210620 2708087466.003368 76117.31615422326 301.8239719337885 0.008477340627207407 201435561.7263098 5657.7277816799715 83854 None 86794 BTS_20211120 130304839.50192478 2241.6018667560884 0.048107919174990105 8.271001635063094e-07 7135332.849764666 122.67491647779232 7535 7476 199567 VIB_20190807 3736804.027098583 327.22405721867324 0.020525243887351143 1.7923966873753454e-06 348089.50497673574 30.397420807989402 32485 1119 2890790 TOMO_20201224 49179670.45730191 2103.294451063751 0.6361202934650456 2.7278663679926888e-05 10800479.67071781 463.1555627859999 34862 1694 137928 ZIL_20190221 177759112.6009235 44819.78455638955 0.018770539090675394 4.729489494610572e-06 10469840.592284031 2638.0169931322393 56007 9967 183294 MFT_20190613 30815286.03817714 3791.1149380986135 0.0034986455270619105 4.296974328777296e-07 3193267.7043676013 392.19147079767544 18660 2059 844355 DODO_20210429 391133033.39984596 7145.561836674219 3.4346854314909088 6.272752604738768e-05 91714829.03167893 1674.9843447873186 77903 869 26612 MTH_20190629 7588778.03849193 612.61473896112 0.02220680723189879 1.791892798401847e-06 816969.9985483149 65.92224814768747 19554 2007 1893104 RLC_20200414 21863017.48061647 3191.0973177517994 0.3121477238086788 4.558620177305954e-05 385639.0891355945 56.31891565446463 30549 3567 395542 ALGO_20210617 3083583586.0612993 80618.55759867879 1.0111956370993147 2.6420832260193495e-05 288317323.9050589 7533.244184532885 110553 33249 188992 DEGO_20220115 29126238.143969342 675.8625015072492 5.37440768987025 0.00012464818446622435 4403062.8522042455 102.11986553464922 194605 None 213928 ARK_20210120 67844865.80193558 1873.6408706553389 0.4343786420474454 1.201292520964586e-05 3090517.8167724884 85.4695783774534 63184 21540 90989 SC_20190131 92104840.47985008 26632.417340697673 0.0023513002512025143 6.798861955253294e-07 1071418.0919852199 309.8040626688551 108829 31254 205589 RSR_20210219 585958342.40614 11336.63873334483 0.06285249796173595 1.215574160660443e-06 301458894.7556426 5830.247879556099 57903 None 119341 LTC_20190528 7377385536.226366 836520.8564295394 118.62361225773279 0.013452860485061852 7592238398.229151 861020.1796822129 445501 203051 194516 BQX_20190812 13605824.095749618 1177.558526616871 0.09673630554028305 8.372345594116627e-06 543290.9786366201 47.020814015038795 60572 5771 410121 ADA_20200903 3592445420.136127 314897.29639403033 0.11549344683669856 1.011905447597149e-05 403602179.37055224 35361.94088523559 164160 87773 22859 AMB_20201208 1982862.0267008003 103.23127500528402 0.01361468391998131 7.091649672356181e-07 311898.1262626741 16.246225457155056 None 5484 628794 THETA_20210318 7780103945.920966 132263.1751400026 7.850886094166842 0.0001331961769106707 340141458.5987153 5770.755218042175 None 7248 29341 FOR_20210825 47513407.283007964 988.7344165652863 0.08366388566886009 1.7440615872101595e-06 230565945.81889468 4806.389354339822 31244 None 189593 RLC_20191127 45901972.267560385 6407.186019966471 0.6554283695929861 9.148738669151725e-05 797801.5389661277 111.36041905510886 25826 3464 588041 YOYO_20200927 1563422.469525016 145.60349534537266 0.00883367518518542 8.227733255422261e-07 1219210.1419123812 113.5578977001975 7784 None 2472646 CND_20210707 21783910.401918266 637.7429698431339 0.011291148290358616 3.305624110401247e-07 211769.5444830189 6.199816830760294 36083 6257 150163 XMR_20210127 2458903014.4009657 75451.13292202531 137.88964942559377 0.004233068352157544 426717593.3898894 13099.784845433793 338300 191226 53273 XLM_20190603 2646524529.320653 302782.93371222436 0.13697275322414668 1.566392148040277e-05 358629985.1265772 41012.18523619784 272295 101742 70523 VET_20200707 930318708.0338928 99572.14011957223 0.014464904951299845 1.5481807795427572e-06 457956266.8496365 49015.1226430319 125817 63960 180669 CRV_20211125 2283756473.6745014 39945.27459438893 5.831654133754128 0.00010195387247430453 1300031631.4380274 22728.244186674696 211284 None 11055 LOOM_20210204 54385102.512920894 1451.194851671368 0.06531369452593355 1.7412661978892553e-06 25268819.46124241 673.6679268841083 24550 None 265333 ICX_20190523 179613651.6444378 23439.59047833377 0.379247300380154 4.95211029000463e-05 27595558.64095602 3603.3545859738897 113536 24389 274094 ASR_20211104 13354516.190644803 212.09976997129343 6.2702275660270015 9.949809703017705e-05 2445151.4654077697 38.80049251749505 2034759 None 77395 NULS_20211230 78799189.7331822 1695.7563026646994 0.8245064748265262 1.772434766626227e-05 57073632.41296828 1226.9071673169592 82394 5571 218016 MDA_20191011 16380109.439574918 1913.0111962130477 0.8344899333866961 9.745896946444687e-05 3878461.614026648 452.96037362178026 None 368 2423736 KNC_20190531 43751917.68939077 5264.993907420338 0.26336959132022486 3.170589689960105e-05 9044469.73044007 1088.8235932910989 96774 6692 216491 MITH_20200610 3453040.641002768 353.3169984655727 0.005579604065488369 5.708647044667773e-07 4350995.233745215 445.16234110796455 98 2097 809760 POLY_20200317 9068721.525279054 1796.7535393443345 0.014960618483388321 2.97387778067664e-06 3227650.6257809773 641.5936941681288 34986 5005 422167 RDN_20210809 18848531.682167888 428.4510210650768 0.36925049754544526 8.39404389852246e-06 608086.6715309944 13.82342406812699 30550 4677 1394664 GAS_20210204 30260262.955752995 807.7066640699821 2.178525383100965 5.8079590174327686e-05 10714617.098508293 285.6522006966052 334775 102552 149199 BTS_20210930 102969686.16827457 2478.9084879203815 0.038148526280797894 9.177691510683873e-07 9507220.720165309 228.72269888333417 6946 7310 245459 QSP_20210513 55708393.65162785 1080.563547115523 0.07402501943632678 1.4757105028624056e-06 2216580.604585085 44.18818533970011 64898 8434 221703 MBL_20210710 24923582.33899367 734.8483198014872 0.007098845457117514 2.0888193456344005e-07 23487138.67320409 691.1037848414798 None None None TCT_20210703 12574077.954099797 372.0906312298537 0.021906094914683535 6.469996873587671e-07 1729506.6223809333 51.081228686511714 None None 405222 LINK_20220105 11231834139.895174 242470.57442615865 23.71465044906858 0.0005163503517719483 1752321397.6336539 38154.1263713287 700052 74544 17316 DASH_20210219 2809878473.7632465 54363.21123247564 282.43647333003395 0.005462940564790064 2738756819.6550775 52973.56092428641 357770 37858 54926 BTS_20190929 77619866.89624913 9457.907902930965 0.02863994601822451 3.4897505318753834e-06 10687166.007982437 1302.2211437432486 13548 7129 140611 FUEL_20200506 2130737.156144781 237.58093384125752 0.0021595556928457943 2.4e-07 37149.96169402614 4.12862277 1 1465 None MANA_20220115 3923335566.162712 91039.4049822777 2.9626491224649576 6.869034520718079e-05 356379566.77431947 8262.819677460164 466274 78785 3071 NANO_20190730 178571877.4189035 18813.8587039983 1.341900366371851 0.00014107527089968826 8254426.8290598905 867.7957993109216 98865 47120 306067 KAVA_20200725 67368341.94998547 7065.34230352192 2.4838942145459413 0.00026043054351640915 17750358.717009984 1861.0839146091341 None None 194309 YOYO_20190726 3150306.201286777 318.02574307298545 0.017932048950855022 1.8116012565148733e-06 163817.76985511574 16.54983647001708 7606 None 1133014 TRU_20210218 71314770.71341003 1367.9124700942996 0.4599470252103965 8.821299398582389e-06 9987316.235239087 191.54620395482726 19426 None 95211 MATIC_20190530 47821537.80628897 5529.839397866842 0.022118548256102752 2.557869951506542e-06 3988206.4294172465 461.21080226849494 14228 532 412270 CND_20210513 60344871.75870389 1197.22879496509 0.03127868191627476 6.20562072092177e-07 906180.2777711134 17.978414575395274 35999 6211 107330 XVG_20210620 405968783.2597026 11387.808680291753 0.024581746631549314 6.904283913309116e-07 14325585.008445397 402.3632152957307 319450 54401 100105 SKY_20190305 14859230.717705399 4001.661014372183 1.084061718092256 0.0002919429408478154 2388833.758004338 643.324213805486 14751 3540 408962 CKB_20210819 374318623.8553847 8308.87529230238 0.013591759915631338 3.017918560971171e-07 16769590.897058876 372.3525131570599 51478 5494 124430 TFUEL_20190818 0.0 0.0 0.005755079069956498 5.630320412503951e-07 397645.08763020753 38.90249337327008 70261 4025 248011 BAND_20210617 239981393.58404168 6274.178487886682 6.826612111737194 0.00017836783199243488 51958055.102639176 1357.5761287604264 96975 5374 189686 APPC_20210220 10156941.407141708 181.86308706717398 0.0916882204963809 1.638827272065871e-06 910290.2922002298 16.270449445721674 24415 3116 1017685 CDT_20200422 2449373.4339532764 357.6764057386775 0.003628691518657024 5.300874164809451e-07 403279.9790629594 58.912046152407925 19089 289 263916 OGN_20200607 15007888.904488927 1552.0825297536935 0.23232920599418316 2.4026970353389508e-05 8232775.973373665 851.4154016576764 64571 2248 171471 WAN_20190613 49680827.26808627 6112.087558096875 0.46825149294181 5.755806919368764e-05 3197212.5799523056 393.0054376285616 108569 17048 409918 FTM_20190819 33079126.517870665 3205.3626486542 0.015950596105932635 1.5459540286672038e-06 6067262.788533579 588.0475744368845 18388 2086 361717 DGD_20200306 85669159.67744319 9457.021185903874 42.83460125602222 0.004728512957208415 1139460.3106258581 125.78505892503411 17650 4708 323922 ICX_20190419 176204780.9758074 33417.10568904617 0.3717600159851632 7.048189527129322e-05 11591054.514930129 2197.5453391355577 113424 23891 296108 RENBTC_20210112 486393929.8049978 13689.539954557324 35469.570910490744 0.9964264048537178 76221582.65408418 2141.2494041140567 None 2183 104896 GTO_20200207 6747458.480068383 692.8081003553704 0.010179021586486914 1.0456999599446543e-06 2966253.9537006705 304.7259124283861 16934 None 3746850 EVX_20191220 5240303.024793273 733.6100181765914 0.2386113387864333 3.339256599748867e-05 1264402.322942008 176.9473245947002 17994 2889 1042275 XRP_20201228 13068762432.413218 492162.8276697542 0.28414724389132995 1.079397097911932e-05 7010555503.559292 266311.689730358 1019881 226621 17736 SNM_20191213 5488891.0923535675 762.0316950109998 0.012537853969244596 1.741383908904679e-06 128656.20357483967 17.869074184111657 30650 9784 6545565 QKC_20210711 102790366.09492593 3048.3713117106204 0.01579192944736402 4.684757533685282e-07 6589418.289097862 195.47850106186715 None 9534 268503 WAVES_20190329 276031312.2204734 68560.61328246047 2.759663115026598 0.0006854275003160893 9764790.46931451 2425.31629532908 137708 56737 38388 WPR_20190627 7437914.3639229825 572.2377218631686 0.012374548627559444 9.500093688429049e-07 2573358.882112114 197.5599370111142 34822 None 1193640 ENG_20191216 37470184.02275425 5269.451175086558 0.4772986260424489 6.712872189563933e-05 537955.2317766192 75.65965032345431 61329 3573 358395 XVS_20210707 221453411.60406715 6484.598844606406 21.516060776250864 0.0006299094426345052 56313618.98508488 1648.651243204367 117694 None 10936 LINK_20191203 762940907.8700391 104393.84704627181 2.09306922560643 0.00028627739983961626 109676833.27054988 15000.93655155582 38014 11803 107076 LSK_20190909 143240621.6295447 13790.80642425183 1.0616088063746936 0.00010214499119665167 2784472.084720266 267.91401396936817 181761 30932 161832 ZRX_20191026 183043662.97333393 21177.64486485789 0.30513592906048165 3.524417490746951e-05 35742396.59587824 4128.361026234919 151324 15966 142278 ATOM_20190702 1319056017.8993804 124262.94806475782 5.479767323117834 0.000516740629454121 112708566.06793647 10628.388385965141 26487 5723 112670 PERL_20200312 11606903.56790691 1463.4010191689265 0.033928026764806905 4.274028808097957e-06 7802233.078999148 982.8738104429801 11561 475 686395 VET_20190725 327507469.1452249 33316.85776238293 0.005908757777536346 6.017965896500376e-07 36477784.59755466 3715.198218524711 112901 57074 133161 ARK_20190901 30092030.898508772 3135.6746877362357 0.21079071161832186 2.1964988041542756e-05 796537.3487906973 83.00144350055459 63284 21783 99618 DASH_20201229 1068734165.5456334 39415.5474257514 108.02665499362315 0.003979870554803071 712808702.2576635 26260.984990140867 325068 35753 92093 ZEC_20200315 234463195.63065466 45360.28950773256 25.034206608541822 0.004828024852671183 206959702.9160781 39913.651141607756 200 15602 157694 ARDR_20220112 224348642.0394333 5233.381708030299 0.22459719867594705 5.249335978152591e-06 12538267.716508195 293.04719834434985 76444 7448 None TCT_20200329 2583083.776779363 413.7196925494721 0.004433015381205627 7.090479440404898e-07 310760.01430578367 49.70516235239934 28 None 409993 YOYO_20190608 4370006.132204026 543.5821998097667 0.02490520032148453 3.1021649219700385e-06 635755.0132375226 79.18895955760301 7464 None 1718266 LINK_20210620 8909634823.55653 249925.86665398412 20.46124107641803 0.0005746956053519003 780336685.3106008 21917.344215240453 377819 60938 25533 BQX_20210217 796984712.0066184 16196.50115194167 3.589374065665084 7.294633895251089e-05 8081088.07649675 164.2308043544631 40252 1107 44204 BNB_20210513 94580104074.73462 1834549.6261237857 602.4357875472981 0.011952191643609982 5510123316.514754 109319.61749323792 None 360596 139 EPS_20210513 222546775.88323227 4316.691216252325 1.6744995931065099 3.338164117216636e-05 22596395.160839915 450.4657738639745 None None 33734 FTT_20200625 293236836.04495037 31519.59202773128 2.946483629239712 0.00031699948686772934 3134667.3228539913 337.24536019301 14761 None 12681 BEL_20210727 81171459.8039247 2168.134282487592 1.6860634377435337 4.5186186833225585e-05 33992893.38548218 911.0032262925788 None None 593705 REN_20190122 13910105.824899592 3938.9069183489023 0.018481200802854408 5.233458686992555e-06 419437.46609396266 118.7752178008131 2 798 744296 ZRX_20211120 963866268.0178685 16580.920573958756 1.1479317741852195 1.9679606915486352e-05 97345926.05619891 1668.8531519826117 243696 20703 52689 GRS_20200127 12541080.157266244 1459.3297658497752 0.168786674983212 1.9640686112599232e-05 6820786.8698008545 793.6937792276632 37911 106893 4060583 ONT_20211120 846647988.3508112 14564.471768283227 0.9720485246917243 1.670934269801269e-05 97661890.91205119 1678.7906800259016 177516 20899 87014 BAL_20210325 516452347.9135334 9770.796923831404 47.49837832727355 0.0009003418578428108 103767503.282602 1966.935082403067 None None 59391 BLZ_20200316 2071206.4363333622 383.3870539092348 0.009509722455837233 1.7697100416934295e-06 100242.71593553267 18.654649683161114 36091 None 563457 BCH_20210204 8300546333.828032 221551.6879970636 445.83538984540354 0.011885784214325316 4318179917.635847 115120.86269654373 None 433006 337812 BNB_20200903 3644800878.5971384 319926.4362119118 24.64635903957026 0.002163361477284281 598973209.7440873 52575.53725502614 1248327 70766 775 BTG_20200518 159338863.35587806 16407.210124847767 9.139540189577735 0.0009381568630492623 42862840.80820994 4399.791175475756 74883 None 210192 QTUM_20190915 197483699.80440527 19077.486982284503 2.0570725332279114 0.00019871470150748682 168224983.95706505 16250.655693056318 None 15334 240356 PHA_20211125 116698301.903007 2039.9156112420428 0.6401992390052145 1.119355452326912e-05 9357931.874198053 163.61862725991259 115421 None 113780 ALGO_20210806 2686096824.6378317 65559.89676378013 0.8518909278968796 2.0820536173385608e-05 181390146.3004782 4433.243715681371 118289 36570 221911 QSP_20200913 27998092.89828997 2685.0298650792397 0.03923411621201726 3.7570755273368187e-06 304561.0717254239 29.16489676932194 57237 8222 237034 BNB_20200422 2232531184.047116 326138.42038295465 15.096507864715075 0.002205367281531831 304659694.1730378 44506.08892809611 1138438 61926 1429 MITH_20200407 2396934.7501876415 329.5845488819943 0.003872844931096639 5.322879558292085e-07 3747592.233518524 515.0730909063649 94 2089 1121889 QLC_20200208 4676777.8696584 477.4668165589776 0.019506151475063703 1.989687376872858e-06 6117091.408727786 623.9621164986023 24512 5693 940522 AE_20200903 64177411.376670234 5624.378913983674 0.17564256696442096 1.539708679503778e-05 19373935.341403667 1698.347781910223 25693 6356 378824 VET_20191216 349720409.881829 49143.997291897416 0.00554250616383274 7.795148248419748e-07 75687268.81990156 10644.886329925874 117500 59886 381683 BCD_20200417 99087597.58200116 13955.92037091123 0.5228877833344966 7.371048909828817e-05 10690337.615266431 1506.9964136894566 28851 None 812794 FET_20191024 12281380.18235458 1645.231210477904 0.036110799096427 4.836813323967583e-06 4869129.397071833 652.1891105480843 16342 311 518889 MDA_20200208 17965765.12573961 1834.1809084594704 0.9165273029662896 9.348860063978336e-05 1559482.1706260825 159.07197241442864 None 372 2300943 YFII_20210620 67735422.61393537 1903.8670806131302 1706.9508094493956 0.047943188053877706 17969146.165323038 504.70004700931474 16862 None 423261 STEEM_20190220 98233709.76585886 25091.542099760954 0.32779854351889665 8.372859962785716e-05 2146645.7972224816 548.3113029393378 3968 3676 255452 IRIS_20210806 91294148.60987493 2228.2275542347934 0.08510880353525434 2.077299864719827e-06 12626451.80907917 308.18112281447895 26713 None 796801 ETH_20201228 78833072066.0927 2974116.693786386 689.6598573269875 0.0260607385746096 24721301579.88044 934163.9517694698 540722 508544 7746 VIA_20190622 11090325.668522196 1093.9491516356222 0.4773966695148281 4.7165344037349634e-05 778563.5237765942 76.91971645125548 41043 2235 1573301 NAV_20210125 15613776.581926836 485.43146663033616 0.2210200123869516 6.85645959625991e-06 608076.3215899525 18.86367974283037 48373 13641 681902 YOYO_20201201 1593206.3052932743 80.96500832422457 0.00909892971261972 4.634909525408677e-07 843411.7674892896 42.96260503645957 7744 None 3054135 HARD_20210704 47946645.9087228 1383.0673155251752 0.7159762901405203 2.0612920419241537e-05 3240461.182575597 93.29271010491503 34817 None None ZIL_20200105 46566087.63392984 6336.63609442137 0.00455652021790789 6.196633044742366e-07 35237654.07103592 4792.139641509994 66980 10528 237329 XMR_20211207 3632955139.69452 71942.53299385191 201.36282504700742 0.0039875393798277595 165510578.49724326 3277.566002472209 459304 244540 31566 HIVE_20210204 57555291.593229786 1535.6535326051317 0.15475168403057615 4.125614890797894e-06 7217047.532081022 192.4034555906138 11127 107 140605 STORM_20190616 19984440.90858554 2266.4726833313675 0.003434684395336492 3.891409619970497e-07 3521142.439133339 398.936437348779 26847 2576 4259920 ETC_20191024 485932074.25279886 65114.015818609965 4.244733668670739 0.0005686305780108655 638671965.5329885 85557.40766512847 229702 24979 405893 ANKR_20190920 13794171.710694624 1346.8213049514634 0.0034512238379784156 3.3696708223096506e-07 14591424.550308524 1424.6626666761813 15288 None 6100 AUCTION_20210718 67880014.20725599 2147.7181738575673 14.883160233637454 0.0004712992775861015 2752078.4380768193 87.1490032603708 45812 None 56782 AION_20190901 26851300.588142686 2797.2257540276855 0.079839988269048 8.319554317701733e-06 1147490.0055457884 119.57172886833993 67414 72578 168998 BQX_20210809 784501248.7558006 17825.950042702865 3.527805713534724 8.019843221399751e-05 4443441.927671512 101.01380437874006 99770 6495 29593 LINK_20210723 7071647316.914529 218649.15824701326 16.08749569276609 0.0004969336539507548 694718335.1028095 21459.456917490264 403299 62749 26292 NAS_20200323 10337785.985321641 1771.9090471581544 0.22594466134228944 3.874960152866049e-05 3792830.715568814 650.472013903024 23610 4968 1138524 STORJ_20210602 151731608.72795597 4135.272212978663 1.0542819506411258 2.8747045975862035e-05 28780789.73838512 784.7641566165889 None 13481 47967 MTL_20190510 18173014.080417708 2940.2713720827473 0.40156372684967595 6.503963539805882e-05 1257992.2222332822 203.75185804138943 33417 None 819230 APPC_20210620 7947274.565629522 222.30558351028384 0.07031418880917178 1.970209022116421e-06 422906.00485828234 11.849859045381102 24807 3131 602662 CHZ_20200117 31282140.683638334 3592.8100986801396 0.007209063399424071 8.27603655530652e-07 2083206.2559192828 239.15299631861424 16473 None 300024 ANKR_20200106 5642767.453914545 768.3272689087936 0.0014065997661415726 1.9153070502713397e-07 1551197.8194354214 211.2200066746749 None None 5257 MTL_20210120 28375858.03784176 783.6431943844644 0.43749977394009665 1.2138648207537857e-05 8149424.972951613 226.10983761086032 None 3357 402004 ARPA_20210120 25345520.170454063 699.9042868855711 0.025832005345490232 7.143950420026671e-07 19348328.672871355 535.0862192102501 22793 None 1180898 RLC_20210506 299899704.9134722 5238.63458517084 4.247362196626167 7.408900838187765e-05 133652785.2388607 2331.3769505433092 37928 4332 331686 MDA_20211216 11918999.611761466 244.29479193975604 0.6076457058781921 1.2434087253681053e-05 947011.401647871 19.378434315276586 None 390 979272 XMR_20200127 1110209133.909317 129188.33267272048 63.7417025688644 0.007417237009747637 82198076.87670805 9564.893835104573 320266 165027 89553 ZEN_20190324 39498829.4322477 9871.077972380002 6.498181999795029 0.0016224268658663159 288248.36760782305 71.96811287584642 25121 1519 311352 POLY_20200223 15955067.788531046 1652.8968246474722 0.026637917932199245 2.7595626472518122e-06 1972552.810037661 204.34716662790316 34865 4991 368062 LEND_20191012 5777816.0429026745 699.1012358559827 0.005122826512153317 6.195744487242966e-07 2575115.925813588 311.4444782293578 41494 5804 753503 ADA_20190329 2040501513.483253 506823.09530555457 0.06558512610094981 1.629002315540603e-05 139866735.21952033 34740.07737501375 149452 72072 114541 GVT_20210104 6874086.095239146 204.79790741804877 1.54745049270848 4.6419505233316085e-05 967474.8151358786 29.021737661989192 20806 5454 383832 PNT_20201124 11981930.640091822 654.433616012822 0.39836320252866336 2.170626160070338e-05 2723139.856456076 148.38013582663763 None 104 624601 ZIL_20201015 214338952.27289397 18777.552946404514 0.0190221746994134 1.6664481609064492e-06 25294218.006212916 2215.9139921746255 96668 12171 100341 IOST_20190701 151342383.8197887 13947.948682571277 0.012668020947160056 1.167588396906593e-06 57399268.878760025 5290.385973729094 198200 50269 104916 BTS_20191216 49524063.757395305 6959.303450432237 0.018362496760233535 2.582217974800909e-06 7281008.559944417 1023.8886042384054 13461 7089 157411 MTL_20210314 99538385.88673735 1620.6851661565654 1.5287891995989935 2.491683412464126e-05 69587968.01317337 1134.1732768061768 44494 3494 320334 REP_20190714 163040192.3872149 14324.841580093682 14.845045569893541 0.001302381670085231 9966339.452968737 874.3642961741905 126137 10039 252413 GXS_20200621 35433894.05719604 3787.584271338432 0.5475529964925395 5.85221633663665e-05 13073890.839622382 1397.330268396857 None None 465315 PPT_20200621 13296671.4634492 1421.3019775591674 0.36762328572877206 3.929137475735239e-05 4018688.43505281 429.51521153421845 23724 None 1787425 ONE_20211202 2786564477.3225074 48750.7560880456 0.24328159012818604 4.2555198406289086e-06 103338136.97307737 1807.6069461353347 283356 43869 9801 REQ_20210511 105026309.80446383 1879.6519716736964 0.13607954457512303 2.4354105627561272e-06 2026808.7252544712 36.273720591753076 43043 27651 445930 ARPA_20201129 20982112.728066135 1185.4702288775256 0.02145153162980719 1.2109724174089955e-06 8503392.436697615 480.02976537753335 20949 None 1251895 ADX_20210107 44150957.80976781 1204.5611151955054 0.3882449561692484 1.0524110456345716e-05 3094425.57749361 83.88023091866656 52867 3743 12195 CTK_20201030 21420313.864907783 1591.2413495439991 0.9650388691251389 7.176797697880594e-05 9554209.325731894 710.5271060858223 None None None BEL_20210203 50883402.07761123 1428.7901543652986 2.2566605463136598 6.354155297022065e-05 43751083.46966436 1231.914029929524 10885 None 421105 VIDT_20210203 25656565.21782673 720.5084334522551 0.5539976785018251 1.5594271637744443e-05 3342552.738357608 94.08825594070309 24753 1222 None CND_20190729 16785817.05953563 1760.2155226910363 0.009652257917864684 1.0125126459066624e-06 475693.20849003026 49.89976368913916 36113 6129 486164 MDT_20210902 28029706.977259677 576.2190332398899 0.04624010495451573 9.503623416487171e-07 2666580.603176399 54.805623575520976 34726 329 976793 NANO_20210825 851994908.3722391 17722.22494996788 6.3867195129361995 0.0001329874218256097 47166135.705605574 982.1165266864255 135382 108706 81313 PPT_20210523 96957463.7977296 2579.656780705644 2.6699999703708617 7.106008592152291e-05 12614470.225310702 335.72484944281234 24361 None 685411 FOR_20210127 13189460.290894745 404.98258528852443 0.023222641559964695 7.129690233058411e-07 9655158.675939579 296.4274771787859 16787 None 247763 NEO_20190929 516200670.53922224 63010.9401675429 7.334927278509309 0.000894408970654107 235293399.3168766 28691.290191970817 323588 98311 189975 VIA_20190213 7029882.434273704 1934.6658444396537 0.3039563858540423 8.364923768957222e-05 107185.65397335355 29.4976472395441 40653 2230 3450417 LEND_20190522 11044979.286145728 1388.789147847324 0.009889034886651512 1.2451464900851755e-06 2373922.0608333023 298.9048734950143 11514 5881 548468 SUN_20201129 0.0 0.0 0.00011864999762209565 6.7e-09 0.03298469933894259 1.8626e-06 40 None 8085345 NKN_20200322 8545997.073223434 1386.9675753083625 0.01308670489653627 2.1249678623107587e-06 5898041.629576258 957.7008889944284 12234 994 277366 BTG_20200530 160039976.55667505 16980.8434180752 9.111719366105383 0.0009718336050319455 35599523.108798 3796.957686047447 74902 None 210192 EGLD_20210310 2741722856.577934 50164.96625305011 159.06577695405792 0.0029054419163911647 219020357.17768306 4000.5520890316875 171932 7002 28708 EGLD_20201106 106916737.8238605 6878.51569912241 7.399991101907208 0.00047494822262742517 4531010.468981305 290.81053467676344 102981 2783 47014 REQ_20201226 22935465.05400607 928.7452373649303 0.029697664684845717 1.204375596156225e-06 216959.27841830763 8.798687137847962 39444 27359 356160 OAX_20200520 1834226.4416236593 188.39345357732742 0.03512884715410477 3.600030427442312e-06 41311.35601114619 4.233618541098355 11797 None None NAS_20200914 17840211.131694425 1728.2991003656878 0.39224676220242194 3.798186309724994e-05 4845966.521721145 469.24246351556627 23607 4891 894508 OAX_20200305 2668013.1694406644 304.7709759235421 0.05110820261522788 5.835051026698374e-06 296567.586426205 33.859281115593 12055 None None CHZ_20210523 1364323675.6086504 36295.504735983064 0.2547254294661108 6.782761854962464e-06 264229978.61276236 7035.8464941193915 339273 None 25913 VET_20200807 1265197720.7281132 107536.21055847725 0.01973379800435026 1.6760565464024987e-06 231204291.65812644 19636.943000254163 130316 65888 91721 FLM_20211021 0.0 0.0 0.5201434896585866 7.848195947810917e-06 14903608.57977076 224.87341048965484 26621 None 80793 BRD_20191113 20041847.440055963 2278.089766633654 0.33184001116618567 3.7719144198573664e-05 1205141.7186242754 136.98442844416698 174 None None PERL_20211216 0.0 0.0 0.07467408375899458 1.5302844690811598e-06 3855496.2506502806 79.01008939075338 None 725 815622 KSM_20210511 3728692247.725454 66782.38081449778 414.4423571612904 0.007417259496536213 300876235.13302696 5384.770822191794 56083 None 90994 WAN_20210207 80618214.68501179 2055.893772804355 0.49080393609826617 1.2481189684280854e-05 6668334.4454892455 169.57636435032876 None 15803 443553 STX_20210310 1292634898.7760463 23649.649444438834 1.2304494841637221 2.2494332276145626e-05 29432679.492294732 538.0704212550028 54367 None 60484 SNM_20190324 9467306.32294244 2365.304133069939 0.023666444155859445 5.909420470440846e-06 132317.75363501033 33.03923634594203 31521 10070 None ONE_20200907 51116747.931975245 4964.002287166343 0.007200590708479272 7.011857122847046e-07 7972805.3374596415 776.3831351878908 78444 1458 127975 REQ_20211104 183902332.4291288 2916.3957533520665 0.23735925496566462 3.763699194581029e-06 28667220.643685907 454.56325376116007 47662 29304 249079 RLC_20190130 16797145.63059011 4920.940808149976 0.24010500221416828 7.033588743417652e-05 394772.14450591244 115.64377610654314 23860 3258 449667 NBS_20210304 0.0 0.0 0.01919873244929144 3.7841829762927823e-07 8021300.153147932 158.10453928377632 None None 714123 KMD_20210325 228925415.036345 4341.900307530433 1.8264876732268525 3.4718383855832315e-05 16126721.519268047 306.54119173599247 103462 8840 256487 ARDR_20201129 68968585.01695617 3896.3026724436804 0.0687442966682629 3.8812117436815305e-06 13609257.045501051 768.3605888452536 64196 6298 1570658 ENG_20190803 35692639.104182616 3391.7838460241337 0.4553550654832483 4.327127368764267e-05 322846.72994262533 30.67933195314753 61791 3473 330014 LRC_20201106 143520384.59279826 9236.32625019423 0.12062419809284439 7.74193478087959e-06 27379309.535921663 1757.2662212391897 42341 7179 160661 IDEX_20210325 75100953.6197043 1420.4755922124896 0.13075027396810082 2.4782410375152594e-06 12894288.07334876 244.3983701381198 51365 1973 5056100 RVN_20190625 249515004.8392721 22599.152663235483 0.06532680000071737 5.914748391927238e-06 51291566.30725711 4643.985459749242 25772 6698 184956 BNX_20211225 0.0 0.0 68.92020207776473 0.0013559170590489644 21762041.51675861 428.14040648068 96165 None 19867 AST_20200323 1811355.3393950763 310.4685005135079 0.01054933756214201 1.8092156924436383e-06 3964761.2276061336 679.9581668065083 31740 3480 355183 APPC_20190821 3942118.6663402515 366.7746363324501 0.036305946997064124 3.3779045314522918e-06 367857.97475530196 34.225498096972345 25258 3324 1230496 JST_20210930 85723586.6367248 2063.3279056942265 0.05979929128591532 1.438555478297372e-06 28391431.03907093 682.9955302091902 None None 189686 ETH_20190914 19522068957.29138 1885892.0838847102 181.2119450035023 0.017505632898597877 6577694623.403602 635425.5918072013 447884 445579 24829 WTC_20190621 47134368.02459721 4927.505141930875 1.6137264271420342 0.00016884532467598086 5374266.211063356 562.3132323049439 55635 20137 829543 SNT_20200502 84875144.1533032 9577.931461230757 0.022142701980244935 2.5072308315079102e-06 20138514.85649718 2280.295575221001 110314 5663 168718 COTI_20200324 4211291.683482747 653.6984179138702 0.013590331079308599 2.0973216904367017e-06 1605793.5209725965 247.8133580591098 22537 903 294374 ARDR_20190325 72244651.84025832 18091.77899902712 0.0722725281227069 1.8111721473880462e-05 1323253.7161342772 331.61151779844045 69286 6589 1067590 DENT_20190324 40290936.38798435 10069.03192784982 0.000913418923176492 2.2805692435191353e-07 530857.013653576 132.5411755029777 43407 8860 257059 BRD_20200518 6572739.790409278 674.9458071222484 0.10517139628470965 1.0759384357153572e-05 579693.8343369903 59.304611267299265 None None None ETC_20210219 1737583200.063456 33617.32666414585 14.971871205733285 0.000289557620852319 1972797820.733287 38154.12486152178 286667 30276 127057 EVX_20190213 4954821.747715049 1363.088727048779 0.2569603809445146 7.071586906139967e-05 372197.5260932044 102.42929833555648 14033 2325 1281949 HOT_20200107 124617387.29789422 16061.134981165796 0.0007009370275218642 9.038140937727412e-08 8511436.777252236 1097.4960967226475 24764 6788 499870 ARPA_20211120 160710501.3034197 2763.801110784131 0.16405785969221792 2.8201256730152726e-06 69115112.58998318 1188.0765955012537 55438 None 231620 XTZ_20211002 5692872997.705191 118223.24902990977 6.620266078272061 0.00013745908817261283 649282839.2446283 13481.305130863657 158707 58985 44733 ENJ_20190813 61851286.72258955 5434.633012223944 0.07092912329069609 6.232239491508835e-06 6395794.648989658 561.9711923923182 47128 12752 22336 MITH_20190608 22987038.280776765 2856.9697259055106 0.04303769066364897 5.3534301458472945e-06 5993146.392990912 745.4835534614923 72 2066 476862 ETC_20201106 590975315.5463684 38001.95305596776 5.09681588176281 0.0003271252101206694 522798266.3060648 33554.3791817222 237147 25925 158636 TNT_20190321 8437756.208758043 2087.48752135 0.019690870496113202 4.872557811930668e-06 288868.168273712 71.48118973297859 17096 2510 1213867 REP_20210806 171199670.093091 4178.009827978992 26.033803346629274 0.0006356426898244872 53468078.74233807 1305.479377677164 152457 11296 167896 WAN_20190811 25288467.557396546 2231.87927384699 0.23812576453061512 2.1027180838581384e-05 2062962.4337496131 182.16543784398462 107991 16886 529577 CTSI_20200907 9493794.36310445 922.7621228085743 0.04784751339675346 4.651571536582659e-06 2319768.9590402353 225.5200008377385 None 141 367425 IOST_20190801 119828852.88105199 11920.844415088352 0.009982280299069552 9.919184088406296e-07 38113101.386703156 3787.219528087586 196874 50542 101612 AE_20200208 74043617.45675413 7558.695698355488 0.21406590994986996 2.1835380463980897e-05 8044034.774409418 820.5162597157805 25318 6347 408938 CELR_20200713 19211867.95548584 2070.69069384318 0.004991635451848406 5.372436723917404e-07 3908288.9983291393 420.6444069254019 21072 None 735036 DASH_20210104 881423325.590997 26776.574258174987 89.00622752873358 0.002703901509828045 620394756.6696782 18846.84213480465 327201 35806 87017 OAX_20210620 8173894.77690874 229.2289281660126 0.1436255223605262 4.034015151314332e-06 333486.0830780742 9.36663546825963 13968 None 1358766 ARK_20210624 118398997.91249797 3514.4880412946445 0.7487116795969634 2.2224328674351024e-05 5502331.205499856 163.32804805715605 72912 23363 114169 SYS_20200903 53545323.72786986 4700.00012803552 0.09002920321212525 7.902413080447684e-06 1366843.144401225 119.97617170715715 58520 4492 424365 MDT_20210823 24862541.207516335 503.96310850968763 0.04095909762445259 8.311849617594589e-07 3169587.890103881 64.32060133220398 34730 324 955933 YOYO_20190122 4344066.08219878 1230.021961055774 0.014876938637670124 4.212403976219272e-06 362437.3430388086 102.62410447006636 6892 None 754371 BLZ_20200107 4047155.994191693 521.4285396681081 0.01903608430826931 2.454583024225133e-06 219992.30734066415 28.366620693308224 36207 None 709947 MTH_20211125 12928861.389940172 225.99964913135673 0.03718106948131863 6.500306652987868e-07 575002.7001060212 10.052679842528834 22377 2088 1032434 IOTX_20200721 32730917.937231764 3572.5473015411676 0.006352657135067958 6.93481658386053e-07 3749217.1463944255 409.27965559142643 25015 1879 529833 ATOM_20210523 2947119998.6469755 78411.27222472693 12.336315191442432 0.0003284772370975962 689069570.7239447 18347.75338072102 150732 28842 40023 GRS_20200610 15921578.924083166 1629.6847502878106 0.21165002061551388 2.16638571237096e-05 2877574.1743140845 294.53980488130173 37421 106876 None ATOM_20200317 315540342.44677883 62516.88570619411 1.6787377855466232 0.0003333995697251734 177785618.83526245 35308.46171053436 31675 8270 84919 MITH_20190621 20534081.97135863 2146.605004490634 0.048562844004276955 5.0811643319326104e-06 24882294.874701142 2603.4519148595623 75 2076 556863 XLM_20211111 9331403240.559137 143737.61999069323 0.3846494589052687 5.92185267012431e-06 1694234102.8319378 26083.501519085457 678722 206021 28876 VIDT_20211230 36472593.25922596 784.5929715962146 0.7883332630746885 1.6940306239292822e-05 4996613.674116379 107.37104440936184 38664 1880 290376 CVC_20210420 355240711.9186214 6340.169153230021 0.5188918039028187 9.272327960156755e-06 70633546.24504228 1262.1849118580246 100938 9580 120797 DOCK_20200316 2011770.8385824868 372.2744015378455 0.0035653983208380076 6.637046789446207e-07 680384.7786784925 126.6547298382858 43065 15022 378260 LSK_20200117 93639042.05491275 10758.140558576357 0.6793754567415289 7.802227388312135e-05 3630486.337305854 416.9399947074837 178784 31064 161329 LINK_20190812 875040070.6074213 75823.28401441721 2.4008203959946934 0.0002078938554155679 79799089.36686958 6910.029744335208 30792 10264 107221 CVC_20210325 290887168.3708511 5503.037712403689 0.4304389270164954 8.169971425034396e-06 110615056.60361111 2099.5356017032177 96715 9347 130858 LINK_20200315 771458029.2142059 149249.6912110072 2.1294755948791324 0.000412161383173898 484653359.5633703 93804.97222784712 46116 13639 95530 TRB_20211011 91049538.40108415 1663.9808593813987 45.26385270376156 0.0008272826647824177 18851492.177809834 344.54673547237377 None None 559592 ETC_20210421 4271912332.2976103 75615.06257029032 33.558714185176875 0.0005952246560822846 4105203103.5683045 72813.22198419303 338026 35113 130525 CVC_20210430 345137885.84887904 6440.22639366019 0.5096207381478787 9.508865008683845e-06 28700516.961981576 535.5145916211372 None 9627 120797 ATOM_20200105 809483882.2481306 110160.19181670024 4.253197325895877 0.0005784239873016566 92285809.35421804 12550.634670302652 29664 7736 112563 BLZ_20211104 87841815.04571179 1393.1208360524133 0.2858088374753047 4.532764337890378e-06 22819986.891877007 361.9119117811166 None None 273750 STRAX_20210806 197290161.41050524 4811.559608296527 1.9702300169829143 4.815316608636133e-05 14699627.179055074 359.2644426586098 157341 10764 188062 FORTH_20210603 185930399.26255077 4936.946551610157 21.939951513178325 0.0005826483877643661 9913951.487103458 263.2798822214982 29467 None 68783 IOST_20220115 678462877.2942759 15743.454927524119 0.029556830409678728 6.855090759278607e-07 39407473.90198534 913.9742199946834 271663 53971 226297 SNGLS_20191024 5120427.09641083 686.12793560995 0.008876138994545178 1.1889027224117093e-06 143386.02252268838 19.20565153810393 19 2163 None ETC_20190324 531969979.02369666 132908.57881436398 4.875629171593385 0.00121742593197124 193594277.48322555 48339.749680407076 226524 24270 601028 UTK_20210823 209728841.39973122 4251.253070596079 0.4658428467539444 9.453371563877797e-06 14397746.80329578 292.1741766834082 78784 4051 188834 FOR_20211120 44468492.73825485 764.7419964974601 0.07949790505047097 1.3628750045780113e-06 11259364.462155377 193.02529271888784 37517 None 147074 NULS_20200801 42150692.831399836 3719.078149864381 0.4361968549951258 3.848165135019839e-05 21322247.364921927 1881.066494871406 30047 5183 381223 XZC_20200721 56623979.55105662 6180.4513315387485 5.344626973453277 0.0005833953418186868 7570710.174088708 826.3845300636494 64494 4134 551795 ANT_20210902 195289223.93647248 4014.646600128103 5.296535691736115 0.00010872833190779623 27406037.063833673 562.5965475514696 87233 3122 115713 DOCK_20200414 2460440.156475774 358.92894868089724 0.004386813179011183 6.406522792448453e-07 219042.81220139132 31.989116281594956 42781 15007 604505 MATIC_20210318 2041702241.995348 34692.43758991892 0.40666339391528494 6.899349794321822e-06 723671072.0802475 12277.623058822965 2484 8375 25492 STMX_20211021 299032537.61586523 4511.456073288749 0.03207439444249543 4.858147971787057e-07 18350844.7806585 277.95106003191967 73531 5510 101113 AVA_20210207 68691225.2465136 1752.331660893346 1.787744073848348 4.5445111313885744e-05 7746805.259173644 196.92663646888758 None 9254 69143 ALPHA_20210823 470438552.6656023 9535.900394999182 1.1591976406935194 2.3522129872419594e-05 145741584.17969725 2957.349420445708 None None 63427 ENJ_20190531 131790049.39705238 15865.619480328334 0.151031140552846 1.820218568356398e-05 19801701.626944344 2386.489624224585 46264 12532 19634 BAND_20210110 227592335.8224721 5625.166294293233 9.95590188712229 0.0002470613661118385 289898656.8929839 7194.000003014293 None 2999 375522 QKC_20200229 12088735.038949301 1383.127182631721 0.0033874516001456425 3.887773298970924e-07 2173421.822971063 249.44330807218955 50568 9199 379379 IOST_20210107 112880385.4588648 3074.5150735207953 0.00612560952345352 1.6631385634753992e-07 68331908.86572334 1855.2510132314073 193035 52139 596701 DIA_20210428 166090485.0112671 3014.8975674529984 4.039994650142628 7.3313716509639e-05 37084636.34959646 672.9742862657959 None 357 265172 XTZ_20210204 2312097663.8411593 61714.48985079288 3.0546380539580738 8.143679558704893e-05 310507954.3612096 8278.156809675369 82716 34021 140734 LOOM_20190601 54511137.075055666 6354.420159012639 0.07872417766887677 9.179410091754964e-06 3624738.8620921536 422.65242363807414 19633 None 406238 REN_20190625 44765156.67887653 4053.3092139720125 0.05738236740544234 5.196235254725436e-06 394338.8203626045 35.709179898364816 6444 779 1312648 BTS_20200531 63138968.88089536 6515.239095869714 0.023254911298809293 2.401828286902519e-06 15236768.856220687 1573.6934864911739 13139 6989 150627 SRM_20210117 89642569.52225585 2470.614269268825 1.7776026412148862 4.911065285837172e-05 105344214.13251947 2910.3934765557856 30240 None 88356 AGIX_20220105 198576286.69058928 4289.775920301988 0.20709418410387898 4.501801152573016e-06 1506855.8864874975 32.755944334719686 71650 None 134947 SNM_20201015 4339081.761346452 380.7125713433744 0.009824252375026923 8.599987609678244e-07 222116.92052522596 19.44374687759989 28975 9553 None ENG_20190528 37528961.27021806 4255.4063932644385 0.488016073281296 5.533679603924802e-05 1551380.7195720347 175.91313720664246 61875 3421 370110 ZEC_20201231 691066842.1034939 23931.360117534157 63.9721898118204 0.0022183135783718777 407448958.65296173 14128.788777312402 71802 16502 166074 MITH_20210115 5301852.26275107 135.75038683030428 0.00860967915527222 2.1947074457336853e-07 2582910.7015531044 65.84140066232911 24006 2124 507648 COTI_20210708 94096937.7692675 2769.2601276410433 0.14049231236880128 4.1348271608144426e-06 14395568.84436009 423.6757730685087 123178 5410 94644 ARDR_20200605 50983199.96785697 5215.599361801062 0.051034260000158434 5.220822821137724e-06 4112222.718562234 420.6818363703926 63384 6308 2127258 RENBTC_20210115 511138183.87213314 13103.401144567719 39107.56659706464 0.9990011510332208 20722570.308740497 529.3571907476457 33094 2202 104896 RENBTC_20201201 337908469.1178353 17165.383892591715 19606.5901655771 0.9981070794500525 10189493.758474171 518.7136452824327 28628 2009 109905 FET_20190726 31837418.52171917 3214.6483852163415 0.10589946145754606 1.0709194831343008e-05 14804397.795548003 1497.110355153097 15956 291 438146 SKY_20190819 13197825.40183097 1279.2504678052246 0.8248640876144356 7.995315423782654e-05 653084.0436823238 63.3027065414 None 3805 472188 YFI_20210418 1779123047.4457111 29513.01981528766 49190.78536130941 0.8163167606927155 566412313.2826482 9399.562568460911 104429 4549 20046 STX_20201229 355722006.74892366 13118.276302145749 0.38920109403707076 1.4339040293724557e-05 9339048.882743275 344.0714846036998 None None 97569 ADA_20200319 802095050.1562663 148961.0186569883 0.02583792069504759 4.795671194346165e-06 107356169.80102359 19925.941298704656 155585 77167 42201 DODO_20210427 366183580.57962173 6795.31799632153 3.251818157068701 6.034632958142182e-05 74352185.9058185 1379.8070184269764 None 850 26612 ARDR_20210314 234876770.78982452 3824.266336074315 0.2346255729660957 3.824240731471073e-06 28828484.162376165 469.8851108453502 67068 6461 None NANO_20190510 190708665.83066517 30855.378643778145 1.4300331155014796 0.0002316168834841805 4440578.409432244 719.2231570799391 98425 45405 391429 LTC_20200721 2733539273.0254116 298358.7237105393 41.97381683615026 0.00458203102881839 716898100.0325592 78259.48618570792 132058 214194 126072 ORN_20201111 22308421.055696927 1459.6655018218837 1.7865703120439043 0.00011696310981755324 2403714.5113195963 157.3662802198245 22390 None 197578 ENG_20190905 25739492.7829109 2437.0082508506152 0.3286239558871058 3.111149616895524e-05 325519.835251956 30.81762277500945 61514 3472 285692 WAN_20200913 51600759.79434602 4948.536373956431 0.4144347402042015 3.968942486220883e-05 3859330.318711364 369.59884354160675 None 16059 459215 HBAR_20210207 718986608.5183371 18327.40727904521 0.10193720178677428 2.5922725100778535e-06 130354496.9636237 3314.9269660222426 None 7948 141603 LRC_20190228 45408491.24501032 11881.508054776712 0.05748299535813818 1.5068639591347199e-05 6638365.056591546 1740.1864654119702 28506 2472 544203 CELO_20220105 2076051293.1254046 45111.30769819752 5.331411880050856 0.00011587279200569434 140723106.15481555 3058.47298553055 106205 None 35618 ONT_20190819 508935975.7184249 49315.823567557425 0.7803818440235982 7.563569710214806e-05 52666155.44542107 5104.477264958073 81494 16281 248344 APPC_20200321 2388081.1069316813 386.29168574888104 0.02226154300416677 3.590286503604449e-06 746155.987794727 120.33818913907419 24836 3228 700856 TROY_20200107 7575193.720442569 976.5473031940184 0.006469058881347062 8.340049290050228e-07 1371819.677528649 176.85793153991753 6686 None 397449 OAX_20210203 9771238.11686554 274.3377971708895 0.17182928540101608 4.83685030886159e-06 1979987.6183792106 55.734991280147504 None None 1390628 PPT_20190922 14199870.196111571 1421.895637142724 0.3921290092052776 3.926213556872864e-05 1864817.1987460882 186.7158612326412 23977 None 830282 RIF_20210823 191934755.00580877 3890.5627434300823 0.2510543033425449 5.09554854412254e-06 5818654.222517219 118.09889198292655 44771 3383 841825 NULS_20190305 16715350.677964212 4501.522886367718 0.4178837669504561 0.00011253807215955666 4809920.460734807 1295.334297960604 19581 None 626169 NEAR_20210702 860421334.8942238 25591.213612084135 2.0940420861528457 6.226196577075583e-05 49588200.33626422 1474.4015186638944 None None None TFUEL_20210106 0.0 0.0 0.03050192090005264 8.94830588038653e-07 19486112.73888653 571.6613644714826 78767 4845 64313 VITE_20210120 9425091.624900116 260.2693489102972 0.016016444769075985 4.426781738931589e-07 2758395.794414474 76.2392422757635 None None 879867 POE_20190714 11172551.271159207 981.6330688019176 0.004441356315063666 3.900021793790731e-07 287385.0137651674 25.235710386297516 None 10830 780853 ZEN_20191011 25938220.836689077 3029.8913240669463 3.4519627679732072 0.00040323012544060075 3602835.7368708295 420.8538746706377 33203 1818 182594 REP_20191102 99691500.4296657 10792.36275772613 9.063517260998758 0.0009811003048792065 10230157.360455796 1107.3858212302262 125563 10049 254763 LIT_20210310 177852468.7852701 3252.473298535131 9.917038023301469 0.00018112193181794688 99738440.4330511 1821.5942063847708 None None 122984 SOL_20210702 9145093164.974165 272169.7692018128 33.55617113324256 0.0009976456202787493 663491276.6668489 19726.004007772357 347399 25866 7723 WTC_20200224 16554969.471001118 1663.981769073329 0.5631636048377414 5.6595471826581816e-05 11201082.635695409 1125.6596685049672 55049 19433 899275 EOS_20190207 2414464259.626477 708709.8257485543 2.3444703922174575 0.0006882376241878197 636977854.9488161 186989.83233291536 615 62456 80265 OAX_20200418 1767337.0150957946 249.65620574849387 0.03367076651647992 4.770706837355523e-06 66326.30670331426 9.397569393948 11958 None None HC_20200418 46180723.185381435 6523.322886513053 1.0278177984449717 0.00014599832320857063 24825721.725864775 3526.4165982555637 12663 842 962062 CELR_20210624 163200931.10733253 4840.690779406827 0.029018312507927635 8.610394009050005e-07 44646876.408321805 1324.7744748905945 56462 None 143745 SCRT_20210206 91375019.6358857 2411.27775824557 1.3371356427634509 3.503880256864687e-05 1401207.9068403132 36.71777614418901 65721 None 226191 OAX_20200629 2476906.2108389316 271.5954093095721 0.047093995643933996 5.15997137235884e-06 1952782.0342276725 213.9614457277282 11848 None None CTXC_20210711 26384721.440499276 782.4525151046302 0.14638426962566845 4.3415257785061166e-06 4697368.372823278 139.31651217649383 None 20587 663987 MTH_20211225 10314399.991644112 202.85544370538938 0.029680716605344395 5.836829353223848e-07 266439.5458867844 5.239638189906737 22509 2094 1070473 IDEX_20210206 39398164.71231683 1039.5018230501887 0.07010287301692675 1.8370019080925507e-06 5943388.901153627 155.74278602417735 45873 1935 6164235 TOMO_20191026 19560604.13364577 2263.107724984555 0.3009200278456351 3.475722484470187e-05 637906.9896500874 73.68029581815885 None 1340 283886 GLM_20211021 549859571.892102 8293.505830655195 0.5452986353370413 8.229632070392205e-06 3970650.1802226463 59.924943775572984 160724 21641 157900 DLT_20190608 9010078.247581877 1119.8276379479435 0.11165778046817845 1.3907972847526476e-05 539282.7937727086 67.1724838294326 15035 2677 2533353 CELO_20210616 302304707.71691686 7485.541823492354 2.5599499724434343 6.34265194866671e-05 18322951.042486567 453.9780167032937 31062 None 78751 RIF_20210909 180371255.86658162 3891.393356683673 0.23531229527639005 5.083281155322283e-06 3461361.6519690105 74.77328983826656 44724 3463 1182664 TUSD_20210614 1439668077.3739588 36989.63919228721 1.0041086962620627 2.5721598480418713e-05 75401998.96015705 1931.523896859 12643 None 935042 BAND_20220115 236205066.5287261 5481.0424313530975 5.689304857075678 0.0001319090781483662 31084695.299688548 720.7125658603509 120976 6430 251134 AION_20190421 56603645.79531565 10659.114654508336 0.18825558846637444 3.5444437759375015e-05 1741628.6354187706 327.9108379779761 68683 72492 254752 NEO_20210523 3643149795.0195107 96919.78743976286 51.639707819193916 0.0013741786557717889 879864376.8506433 23413.97536321253 399227 111424 83834 CELO_20210711 367235504.48004156 10891.623898933112 2.919335938095197 8.660361024873067e-05 30590727.16225727 907.4897403256634 34137 None 78561 ARK_20210725 149061981.43383282 4362.923339966002 0.9191256686401357 2.690164549084686e-05 1245510.5826634865 36.454518999000896 73113 23422 125873 TRX_20210610 5421720344.375081 144442.03473521888 0.0755321613415664 2.0131967445227922e-06 1667915337.850995 44455.78768912295 1034207 112100 19068 REN_20190419 21684400.324672725 4108.71625235601 0.02812967914588862 5.3297842690353244e-06 197589.33180226813 37.43762973289549 6204 791 1322561 OCEAN_20210511 581122244.9457054 10408.133598425491 1.361645965067391 2.4369327340221132e-05 169117423.78614518 3026.6882617872693 106914 2950 66643 AUDIO_20210916 915287014.6184813 18992.33248363826 2.257799305784552 4.6844165397099886e-05 29341229.718393996 608.7633273521379 80514 7260 23825 FTM_20210104 48505439.489953086 1449.9391883884434 0.018641267585541108 5.662991564649945e-07 12092362.808104442 367.35135239460385 28437 2837 142400 GXS_20210804 33130203.540291116 862.2656553749133 0.4734740707802814 1.2325859958908711e-05 8270804.656302724 215.31227628383812 None 27019 491456 NEAR_20210825 2280438625.4264703 47454.98760789446 5.167150280776363 0.00010759704309644631 194338740.71442547 4046.770990530854 None None 6382942 PIVX_20210916 59543577.48081562 1235.5128249246181 0.8894661095695859 1.8454384960187696e-05 1005703.6808385617 20.86604838834568 67796 9968 292265 WAN_20191118 27195273.236159537 3197.135859067641 0.258605329876401 3.038986235336737e-05 4111485.2241922915 483.1589128144631 107080 16677 380962 PPT_20210725 60271636.82210084 1764.1915970546472 1.6635870961913957 4.8684167750259684e-05 2566598.3984596957 75.11040886541228 24457 None 885459 LIT_20220105 97048097.61243193 2095.1858703866574 3.0930650123647556 6.734677412252456e-05 7835256.140909221 170.6007547220961 None None 122432 NULS_20200330 13067448.37122946 2209.8707056031535 0.1540973343013951 2.607368739827277e-05 6135407.491077431 1038.1276075190722 22747 5186 563630 XMR_20190419 1178501533.4660506 223512.00571054805 69.62905988937239 0.013200957327151631 227968682.39913338 43220.52966188725 316532 157567 117211 STEEM_20190510 92798103.80279154 15014.108655147178 0.2999240443524663 4.857752710889407e-05 856194.626292876 138.67450260291076 5478 3726 297313 REP_20191118 125635562.98263311 14780.956362843066 11.45645139828819 0.0013462985516130791 7274160.321675495 854.8189282011301 127012 10064 272277 CND_20190712 20541192.36885276 1808.9933190457314 0.011729956698972404 1.030819123736205e-06 657728.7868515622 57.800674726940834 36221 6139 575045 CDT_20210708 10501744.35191459 308.3655981450448 0.015530159905520058 4.570845687916053e-07 215050.250786832 6.3293714776553704 21049 336 541618 WRX_20200612 24206005.4132258 2603.121441959564 0.12956760657914568 1.3933741198176808e-05 8922513.320198597 959.5298911768498 28263 None 24905 AUDIO_20210617 229064724.31475356 5988.70350170368 1.0163185887467172 2.6536499469491948e-05 10408067.23211455 271.758948071623 51146 5617 27098 KSM_20210421 3357079568.939945 59422.04846753222 381.8463345136743 0.0067722547607230186 515450448.71869344 9141.797209335211 50990 None 86081 VET_20200223 413487362.1692055 42836.04162764032 0.0065947220697753235 6.831820992571343e-07 201947716.634728 20920.830860033315 None 60407 239259 DCR_20200801 180575438.55554992 15932.695830656423 15.28010590256803 0.0013490979319796686 6885951.221378149 607.9684664301216 40632 9875 220512 NEO_20190531 890816764.6701536 107198.61177087447 12.61931576143626 0.0015191834504125737 914798159.4198004 110128.49274327619 321773 97612 216350 REN_20200721 145961049.00707555 15931.504052539503 0.1666363618215098 1.8187107692963922e-05 16503629.549754402 1801.2472467904095 16547 915 163395 CMT_20190224 22028832.005821038 5353.595303927132 0.029440255935549935 7.1547695257435695e-06 4685553.381778374 1138.7147795380204 292681 1628 907470 VET_20191019 212732221.57232013 26729.973465353483 0.003372988219766846 4.2382422637755617e-07 28141354.05693035 3536.030023022092 113832 57576 368784 PIVX_20200310 18406112.523908265 2325.8440156523557 0.29582173353428154 3.737765064998474e-05 337487.9208649257 42.642254353556645 63958 8511 213646 MITH_20190821 9825873.21712339 913.1392596159242 0.02026877729424326 1.8858066055888342e-06 1744590.0075863437 162.3166169616465 80 2080 648556 NEBL_20210210 29530479.717904318 635.0915918824361 1.688381420676522 3.624956902268487e-05 3626224.5150968046 77.85508312397974 39020 5876 713465 HC_20200229 67646305.65651947 7739.721638094417 1.5178737582720547 0.00017420615156139862 64380909.83139458 7388.987703770852 12778 844 931143 QSP_20200312 6794839.698856853 856.6949214509358 0.009521991032061064 1.199517562975225e-06 64956.49723258319 8.182790657698181 55459 8330 347894 OAX_20190826 4147713.5171398153 410.06140048366245 0.07941084324924849 7.850909051893844e-06 510285.9905670583 50.44914193673982 12286 None None MDA_20200107 10605977.29075154 1367.2572482298592 0.5399435008612637 6.961067279832083e-05 906164.2334811883 116.82463416595141 None 370 1886046 KNC_20210702 144606396.94513404 4304.381265564948 1.5701347580360312 4.668107271184709e-05 44525513.095815696 1323.7709080193329 174166 11206 114765 TNT_20190318 8338056.162145803 2093.7909971882113 0.019460572069978317 4.887083769931235e-06 393018.9981518676 98.69785740295382 17072 2510 1213867 ATOM_20190712 1052549616.4511163 92931.92753458695 4.361156975782726 0.00038430156662372817 245389648.97840044 21623.534089533827 26856 5959 112670 BAND_20200308 8870392.759212526 997.9759259851761 0.49266079223969766 5.535245925557536e-05 2834386.876100254 318.4549827085568 None 1044 796393 ARK_20190830 29170746.833145335 3071.1208234443166 0.20432199641496668 2.1543109776610708e-05 351516.5248011828 37.06286750793451 63274 21789 119780 RAD_20211221 247336482.97783437 5242.547917012606 9.58979425365172 0.0002034076266462385 34670807.640383214 735.3970804277848 None None 200348 CND_20200313 5417401.198247763 1127.405674596252 0.002800673472001213 5.992236001759815e-07 52301.896764734134 11.190355173037085 34953 5974 433845 DCR_20210711 1756292030.3802762 52084.94184613586 133.94281044059002 0.003973910624732389 83205607.98581776 2468.603193590737 47219 11391 133920 OAX_20210823 11765074.817341315 238.4523444370105 0.20420488644261633 4.144664711823914e-06 438405.6174626062 8.898143055324221 None None 1894568 DOGE_20210814 37271229391.97983 781977.026451676 0.2864974725960222 6.004905173766317e-06 3060479635.1347547 64146.778778537475 2027002 2133615 15471 ADA_20190902 1385327625.6654646 142261.2035729592 0.04449442698498823 4.568690502059246e-06 57516134.361344784 5905.7602171277595 154485 75211 100209 WTC_20190905 32872856.02476828 3115.176124257745 1.1278583417623007 0.00010678532432038778 3117983.215112707 295.2098118377946 55921 19929 440674 POLY_20190531 45037948.906003214 5419.751615831799 0.10111236492149163 1.2172469119936192e-05 15237540.067622354 1834.3798612656099 35027 5091 301793 ARDR_20210704 171294910.89575464 4943.8225687496515 0.17339958032610586 5.0006303374318245e-06 19090995.408918906 550.5607950957578 72227 6976 None ROSE_20211002 292561948.9747212 6075.600872223315 0.19684635355181646 4.086722116184787e-06 202848548.17537963 4211.333525393869 33619 2505 205423 FUN_20190302 22912687.29280804 5992.95001070218 0.0038063903442125168 9.961699382504915e-07 685232.3300269931 179.33206690903666 36382 17817 523273 UNFI_20210819 54239528.231757835 1203.972891728473 12.399482552522421 0.00027531849277781636 22731760.60233863 504.7367130613737 21402 None 252503 LPT_20210704 428726473.8033355 12366.913703230093 17.97542961071604 0.0005183892514080323 9689033.118618516 279.4197821138033 13874 1158 101406 XVS_20210813 330254481.1213529 7428.975655443939 31.104612266697018 0.0006996458529227645 58945174.899315946 1325.872408069492 120782 None 14321 BAL_20211002 233734638.9916171 4853.2981789195 21.704871652201675 0.0004506142857589465 28664732.668770406 595.1077824825047 101116 None None AMB_20210826 6375598.189001735 130.02541648584247 0.04409413352411671 8.995198082054283e-07 466909.284950173 9.524943952419498 None 78 632892 ZIL_20190716 111199408.43797217 10153.322964460729 0.012084627451272001 1.1050730500522845e-06 17805818.60184333 1628.2446728587881 65486 10609 174377 POA_20200501 2038454.1210048997 235.57935447 0.009136886345812613 1.06e-06 63262.3889784809 7.33927618 17245 None 548176 GXS_20190922 31532724.16640912 3157.17274195949 0.48492363846933484 4.855816904638689e-05 1527642.2554146182 152.97152994020865 None None 561908 NKN_20200315 6058155.49097338 1172.559926324893 0.00941987755948116 1.8134394026670756e-06 777561.6931666471 149.6899512216791 12219 997 370779 MDT_20210117 13483939.82375717 371.6050216691457 0.02230871763299247 6.164420951430505e-07 1329940.4027846674 36.74936685269262 13733 73 1359138 REEF_20210519 470897522.4722408 11036.164989020766 0.03739285850999236 8.727564055830631e-07 83015166.73822896 1937.589727513725 None 11579 32388 NEO_20210304 2811661003.0494347 55287.37605263089 39.81091851310771 0.0007847382219182054 953364672.3077108 18792.374698414973 349827 105561 102810 PNT_20210707 22438030.601426188 656.9229458147581 0.7035774092400369 2.0590994689422288e-05 4420715.849931714 129.3772872663874 44727 321 307388 WAN_20210120 68236462.69499987 1884.4554243432897 0.4145444411196089 1.1501741113654418e-05 6595146.038120129 182.98559771379163 103870 15864 602909 RCN_20191026 20547053.335816856 2373.2503210301934 0.04034861523904407 4.660393999282827e-06 5559772.481550699 642.171488584909 None 1125 851208 OMG_20190702 344080604.14431655 32425.733370906077 2.4529146391656487 0.00023108080884994266 196917668.15554494 18550.948862087564 289682 40187 None DOCK_20210814 60394308.58966354 1266.1086406309212 0.08751073806970756 1.8342000682703128e-06 14807528.35696453 310.361563876017 52711 15155 292152 RAMP_20210430 139453342.65420976 2602.1805628114216 0.5068382234591677 9.455585019968653e-06 24484812.922217526 456.78920722266065 24168 None 95701 TRB_20210110 39748727.5496242 982.282808505626 23.966364569257518 0.0005947389637169891 47042612.26473971 1167.3891711035662 None None 425795 WABI_20190321 12352704.741240907 3060.9203911378395 0.23538593489095358 5.83271132102187e-05 1524583.5163166143 377.7819409465916 34956 8004 1579546 WRX_20210218 51240187.65231975 981.7987081583149 0.21468364897419565 4.117918877385215e-06 7619002.423497214 146.1426338544022 59860 None 4431 NAV_20190220 10137965.698336948 2590.3647665154654 0.1575889458313863 4.024887251825972e-05 484253.4528125439 123.68034690474661 47918 11440 768828 LRC_20210804 301052944.2243867 7835.70863766934 0.2419786464502792 6.3000383193742586e-06 21620434.605675794 562.8991173205466 83225 11080 273210 VIA_20190726 7704777.602099425 778.4036658561391 0.33222528171485005 3.3563355724161834e-05 86404.75104991099 8.72911712430999 40960 2231 1839156 JST_20210804 73203293.24117975 1905.3116342493797 0.0510387178277118 1.3286811828784793e-06 85800232.63381404 2233.621051609707 49987 None 152000 TOMO_20200314 15433833.328728631 2797.014183258963 0.22229651324678174 3.995940088782934e-05 30624056.65024818 5504.894964953209 22131 1509 211808 MDA_20190524 17486786.042145148 2219.772530275843 0.9823361420778646 0.00012491313894124738 1821787.4310529626 231.65714539952148 None 361 1619229 ONT_20200704 354287509.4039992 39065.13553235265 0.5556233507713282 6.127042851372501e-05 100249723.34114106 11054.869272443573 86599 16521 150808 QTUM_20190228 168295827.3051881 44035.99795735624 2.0665969800074695 0.0005417364128809491 193281122.49899638 50666.590047872385 174575 15198 244662 RIF_20210523 147575764.93692327 3926.4106936785497 0.20150660280760113 5.36566491186663e-06 4789436.81868746 127.53186609061358 42924 3274 452018 ONT_20211007 816395548.6727586 14707.389083634504 0.9313857991014435 1.678956332024614e-05 135931536.31869498 2450.3606759334903 153703 20441 107360 WPR_20190613 8637194.980918944 1062.608955661317 0.014384580479546182 1.768918746822929e-06 345246.85624490556 42.456131213675945 34889 None 1388186 KAVA_20210218 273501496.8940873 5246.299809056433 4.693849501850412 9.000177880406581e-05 101053344.64536701 1937.6379171505014 60362 None 92615 REP_20200403 110372747.50180481 16275.087570551457 10.043332864333365 0.001479845988151642 29956571.680099484 4413.984184174984 130761 10115 261589 SNGLS_20210206 8454233.488078067 222.08215973212987 0.009499138750649514 2.495305165529549e-07 481917.8533090869 12.65938039531059 9071 2114 2522161 ONT_20200502 319105649.81881326 36011.87919246971 0.5000981767218526 5.658851921924218e-05 139023108.45821434 15731.13482731617 84159 16476 182484 SRM_20201201 53154033.90204215 2700.7551643156517 1.0594463315227054 5.3967203272527276e-05 19490875.916949477 992.8469534250078 27586 None 70902 ARDR_20190906 56227164.82818648 5320.007191023006 0.05627213497012401 5.32423225354223e-06 1940499.3570263358 183.6018709818432 67007 6534 930148 FUEL_20190221 4509855.094807343 1134.426551648711 0.008500464382849375 2.138239986546719e-06 309563.30730580515 77.86876248601436 1 1510 None QKC_20210124 41391133.209747046 1292.8088575597524 0.006405987518038485 1.9988619247636114e-07 3192317.655931205 99.60996952028677 None 9203 334407 GTO_20200330 5653801.52796043 956.1293082620823 0.008506217465258935 1.4392750928260653e-06 5671690.177517071 959.6653788909538 16843 None 1148049 WAVES_20190110 281746515.5520515 70829.3966798216 2.8166324921069292 0.0007082629101386238 13898226.259976909 3494.8109858993244 135116 56587 38701 NBS_20210318 0.0 0.0 0.03018549467592126 5.125379135252042e-07 8561448.626567913 145.370054820227 None None 707411 UMA_20210418 1730395413.1488438 28704.620203911065 28.791645806124034 0.00047771171360913974 115859389.0958462 1922.3419069330273 35183 None 123733 AION_20190810 30679902.77788249 2586.398884265222 0.09135093793870208 7.700942329513539e-06 1517465.8385829334 127.92333799326181 67590 72603 199411 BLZ_20210509 106902184.37956095 1822.9983319449136 0.37303916138695414 6.353648485383956e-06 18350144.345416408 312.5418961198353 56354 None 200625 ICX_20200607 184308784.60109186 19060.805052596614 0.3367939008582503 3.48304770228767e-05 29675186.40728801 3068.9418533848384 112680 27741 121711 TOMO_20191022 20102350.546776533 2447.9923793448656 0.30973130727220327 3.768825328912928e-05 489032.74697782757 59.50573804468974 17811 1339 283886 CMT_20190207 16430674.112492872 4822.842227118965 0.021960430110589207 6.445486164595286e-06 667852.5495965909 196.0177622540663 292865 1627 726422 YOYO_20190725 3024765.7934633526 307.70501805152253 0.017277395233043606 1.7596723238190825e-06 109145.83712021794 11.116311588056396 7608 None 1133014 YOYO_20191102 2391149.882046103 258.98142224140923 0.013767064213251572 1.491029217356481e-06 1949952.2976324456 211.18778870972412 7524 None 1284296 TFUEL_20210318 0.0 0.0 0.3542135814590833 6.0094993474992184e-06 155531376.1528616 2638.706566970652 100777 7258 29341 WABI_20210202 5991381.472427006 179.46250153463555 0.10185964126245672 3.0498300801103793e-06 1017196.3132844558 30.456379731780448 40792 7426 958104 QTUM_20191024 149276438.88496682 19997.284718488343 1.554456832475488 0.00020820966876897 195803643.91305742 26226.6606515996 177370 15280 181813 KAVA_20200323 7304004.234464507 1252.2053919173695 0.3878331604531089 6.651354512152926e-05 1134095.5770465822 194.49785378817506 None None 337432 RUNE_20201208 210799153.73668167 10978.105987134972 0.9654821569143519 5.0315674082472026e-05 9204894.94136302 479.70901431594586 24388 1974 236901 TFUEL_20190923 0.0 0.0 0.0042132417418459705 4.1943037913685653e-07 466030.41167023696 46.393566814543064 None 4027 338625 FTT_20210318 3658758471.45938 62199.55618450502 41.35723560980718 0.00070213067900841 64371203.490399264 1092.8437587493117 76537 None 3417 RDN_20190625 20385375.624568406 1846.3507480593435 0.40310310507609826 3.649732487284769e-05 310540.0029405839 28.116576703615184 25669 4427 754056 CKB_20210422 520898017.03958666 9613.606627850468 0.02103044833309833 3.8832135607767813e-07 45092234.98053467 832.6155276802327 41187 3237 121056 CTSI_20210711 176588293.5345647 5237.329328644502 0.4641501328643658 1.3769253712441813e-05 34750599.1503642 1030.8944940032022 47235 3885 120521 DOCK_20210617 57417423.52835593 1501.1520741619393 0.10355376922681865 2.7038318225981e-06 73178871.20536105 1910.730649248253 49378 15076 242145 APPC_20200526 4053968.0875793323 456.1558539075915 0.03741073080345084 4.207665518935597e-06 387540.1909615279 43.58748048194033 24586 3212 1178523 SXP_20210428 354445629.5534045 6433.858125299457 4.100277684887966 7.445027712637642e-05 388703971.2916212 7057.843542997742 177932 None 66436 ENJ_20211028 1965392676.202414 33584.36779292929 2.091996145451329 3.574960780460823e-05 685005683.0671291 11705.893706746969 321032 37967 24816 DOCK_20210708 57207434.78115593 1683.6925690491603 0.08268451415107822 2.433575425263683e-06 29684615.578477245 873.6793306687125 51716 15135 237761 AE_20190811 86192777.76913035 7607.098920549472 0.266055407928459 2.3500054237170245e-05 14237299.760471947 1257.547513004915 24901 6354 316448 QSP_20200325 4969790.92648005 735.2368066297989 0.0069601763336396335 1.030030362687192e-06 36308.36648211426 5.373243162733925 55224 8312 355576 ARDR_20200113 39897004.252318345 4893.931229726835 0.04000488234292106 4.899048821773653e-06 1877717.20609251 229.9476395725336 65320 6436 1520323 WBTC_20210725 6657995520.215762 194871.5327844798 34221.2234901287 1.0016119166343593 215151124.95857278 6297.201229463821 None None 177929 CMT_20210105 6553844.648722819 209.47973479588936 0.008275036487529253 2.64493978991666e-07 1652744.8978425998 52.82648299464897 280830 1628 1272511 OGN_20210418 485804705.7751561 8061.9874970549445 2.3041857122239144 3.823110747028062e-05 128764124.17036907 2136.457596867329 None 4688 48206 STMX_20210422 446873077.98508036 8247.414741067869 0.053191773193455825 9.81930972369558e-07 97952225.04772274 1808.2180347149147 55968 3897 60335 DAR_20211204 0.0 0.0 2.8481653663901256 5.311387123136879e-05 110683596.06397378 2064.0775771449685 None 676 26429 XRP_20200330 7221559455.172825 1223436.328697443 0.16447701662718836 2.7864778878658407e-05 1869916824.5573218 316790.880004081 945821 211583 34201 IDEX_20210427 73254027.03864895 1359.7583224788293 0.12616542038364606 2.340548377823032e-06 14931217.938706651 276.9953749537221 51263 1977 4760670 MTL_20210202 26869814.86548654 804.8785709210202 0.4161972539846994 1.2462968407594985e-05 5288139.461003172 158.3525946085694 43051 3354 419249 UMA_20210513 1600995276.6155386 31064.5523405224 25.9613425724009 0.0005175469887644513 80496248.99846216 1604.7163647182215 37925 None 112681 1INCH_20210314 600111204.7030053 9781.992255650573 4.154027326263291 6.770788154041309e-05 276482187.0767951 4506.47569222164 None None 8283 FUN_20190117 24965613.844420943 6936.706235844569 0.004251481210512134 1.1812976831269323e-06 789511.6760297442 219.37020711500472 36563 17886 460903 NMR_20210427 360527689.5386658 6692.198997819165 63.749464830316434 0.0011830446936053128 20920042.603239454 388.2282848591039 27700 3151 915213 FTM_20210422 949814152.3839856 17529.61104071725 0.3732572147723646 6.892090245078851e-06 79965898.50164524 1476.5479867234963 61984 6189 57773 GXS_20190618 138368987.9072866 14843.910665373984 2.3047964525699407 0.00024736642362056994 7974699.531743966 855.8989668768924 None None 715062 NEO_20210212 2544970983.6906757 53372.18178058406 36.24796385809651 0.0007591805069886247 1688836397.0385766 35371.136352482485 339207 103427 149199 FTT_20200725 295607268.08553916 31003.045372832374 2.98017772868362 0.0003124288880938866 5556090.500920878 582.4763941573631 16263 None 11932 MANA_20210422 1795770188.590568 33140.193320158236 1.3410804219946089 2.4794400156952675e-05 536233475.5242686 9914.086546672183 119552 28976 13153 REN_20190126 14219078.750075486 3987.466429899199 0.01889810739908226 5.299899347362053e-06 335398.76109955646 94.06125372871489 5479 796 744296 LSK_20191020 103607079.43950517 13037.945032714635 0.7602886475601277 9.563876427901095e-05 3775276.211696736 474.9022004436372 180734 30946 158256 POA_20190805 3882917.7282515964 354.907898478209 0.01765338890390958 1.612176363366804e-06 91522.18081051961 8.358162697805046 17757 None 707962 NANO_20190916 120454713.76699254 11690.182217712001 0.9042263143138612 8.774487363520516e-05 1866924.584529641 181.16378517508056 98475 47653 228535 XEM_20200625 386691563.3913112 41602.48031065951 0.04296572927047522 4.622497812809112e-06 11816882.087611679 1271.3274633451601 208475 17868 219464 MTH_20200718 2937905.1217405135 320.97419223495143 0.008363383502161897 9.136814169947804e-07 98193.94108395294 10.727474018941786 18994 1907 1350074 FOR_20201129 19509898.18059583 1102.291449925874 0.022047298553107164 1.2446043894178573e-06 2045616.054566032 115.47821672772301 None None 731464 YOYO_20211204 4669473.158006584 86.95740175077722 0.02669398385561659 4.975447727122496e-07 6328013.221260362 117.94679718552534 12428 None 986357 BAL_20201208 136275858.94857377 7096.929980275627 13.46706698819673 0.0007014758605910784 25903709.865423273 1349.278739481678 30770 None 76645 BQX_20200530 5662975.266782606 600.8629740808176 0.0401825770757619 4.266480874744936e-06 786913.0087444753 83.55236389060394 None 26 379386 VIB_20200502 2415439.2494695312 272.58842486190963 0.013166953333764438 1.4906948841664854e-06 473014.0894260745 53.55222771527236 31160 1108 None ARPA_20210221 43262985.97255784 770.6457604888294 0.04429257020642086 7.877980747320935e-07 28308464.299611177 503.50100637472104 24263 None 879227 NKN_20211021 307295289.96576923 4636.066675583258 0.47430569831832486 7.158180491872658e-06 21099378.70461162 318.42999476810024 32829 4010 183195 LOOM_20190605 53028669.05884279 6921.4615168209275 0.07680194736766074 1.0017717269440864e-05 4733296.807555697 617.3909750419425 19783 None 406238 ALICE_20210805 222290660.6974908 5588.7793031458095 12.801592726052252 0.00032193182224338456 222817215.52143076 5603.361531259385 89436 None 36136 BTG_20200511 156625259.5116595 17887.589147001057 8.950572399496554 0.0010196664735238534 38386597.68473396 4373.075256502388 74998 None 196262 WPR_20210304 13904622.777233934 273.4830170931014 0.022759351434256805 4.4918300857848783e-07 411208.51314208395 8.115691592521845 32799 None 7585359 ONE_20190901 22567981.04019781 2351.122143609323 0.008356916088489113 8.707708590854741e-07 2637116.0350314905 274.7812435852295 70881 None 133162 POA_20190714 5493891.902789614 482.42691271895376 0.024983327810685897 2.1908680147455303e-06 223900.00365255555 19.63450826971013 17781 None 637225 MTH_20201030 2154272.7933040247 159.9306797690388 0.006192353546218419 4.6025845561862805e-07 58656.024490337535 4.359720588166 18936 1894 2542776 GAS_20200229 23209048.218923192 2655.4528138117826 1.6639790350346566 0.0001909746330302402 6858883.96774909 787.1931203211337 322928 98929 228840 NEAR_20210114 406271834.15315574 10910.845296482184 1.608364237972651 4.303623923175038e-05 33062637.786795363 884.6824343836413 34998 None None WAN_20210314 193072701.40801144 3142.785094764272 1.1714129890771563 1.9092798723559798e-05 23250662.858101442 378.9613315529313 None 15906 322886 BNT_20210513 1472537563.0814147 28549.616486495568 7.412216445519052 0.00014425676150794993 210371303.72592786 4094.2521326470173 None 7204 28535 VIA_20200807 5581001.502123239 474.32443310309685 0.2408701321009221 2.047134171470342e-05 579390.9638595105 49.24193092819752 38580 2157 1374526 TLM_20211125 562640175.4628117 9841.16150989419 0.45059647883323317 7.877705859548328e-06 535194005.5934033 9356.710830886635 94541 None 12180 PAXG_20211230 321818146.6713168 6925.517284855458 1811.7734665690089 0.03893590738104057 11302786.635228058 242.9024719134998 None None 32401 TRX_20190225 1558185742.568507 414262.3005133071 0.023782493241178114 6.31390715041545e-06 341851317.7839188 90756.56861735779 388907 70114 75623 SNT_20200317 32465035.41467678 6431.952572778872 0.00874712144987018 1.7370017104612894e-06 15030442.008856073 2984.7423095697045 110484 5608 189796 XLM_20190801 1643943888.7240214 163543.24399706573 0.0838440714211535 8.331410802253533e-06 168334303.1487709 16727.029208765925 275520 103185 68303 XLM_20190625 2486760002.3659363 225278.27859028013 0.1282401524293085 1.1610981026981681e-05 406744949.36982334 36827.06079561941 273458 102424 69800 FET_20190421 0 0 0.23416647617234318 4.40994801674753e-05 22013732.178984072 4145.743496283944 7966 175 178040 XEM_20190623 827839685.3895962 77159.83921645401 0.09203164041128385 8.579829246494123e-06 65491827.6136328 6105.6034148110575 216584 18462 184681 BTC_20210702 629863895571.7473 18745943.0 33677.566235922626 1.0 29129630236.14075 866041.8350482128 2839958 3156371 5487 REP_20200318 81130572.57365237 14934.943060006079 7.299696241319234 0.0013571629089184785 26974230.094481308 5015.061362915915 130567 10108 262137 CELR_20210125 29304859.517609924 909.736241693248 0.0074261136113849295 2.3016878216619274e-07 8790875.631287295 272.46891767529894 27205 None 526594 COTI_20200318 3919744.65374671 721.9835652406974 0.012415258922936507 2.30825069397456e-06 2679087.6076543587 498.0972098908229 22522 901 294374 AION_20200309 47402165.05562936 5867.696460108225 0.11751162968087231 1.4607567161803032e-05 4433788.968636481 551.1528545430518 629 72547 246428 RIF_20210617 128915979.36851153 3370.4357342832955 0.1737058427832074 4.538639968775806e-06 5602659.748197854 146.38802620104158 43466 3339 412930 TFUEL_20210104 0.0 0.0 0.032570217420316676 9.894438007699145e-07 28925294.99611142 878.7154672627668 78485 4820 64313 ATM_20210110 0.0 0.0 6.224186194934663 0.00015400680894293205 1476074.8998340773 36.52294098611724 None None 231684 IRIS_20210727 72067252.67451552 1924.9559087116215 0.06842644558938527 1.8283417839967617e-06 5655074.953837769 151.1025414323006 26506 None 789272 TROY_20200523 5203715.672708007 568.4647125927643 0.002725193861103769 2.9853658552120756e-07 698878.6725870679 76.56000389023065 8542 None 549001 ENJ_20210602 1469681606.6345878 40054.49860311201 1.572032513639519 4.285579440201729e-05 223227373.17213392 6085.488898330167 None 32833 21502 BNB_20210106 6146043355.419785 180923.85895491773 41.70002777344284 0.0012233478834335848 750006113.3520838 22002.824466123104 1463476 85324 896 BNT_20200901 117070536.08235133 10041.803644338195 1.779542944374572 0.00015264148796163937 78443303.52487615 6728.526899850576 None 5212 75903 CELO_20210428 567840062.9987116 10307.511742897483 5.54353041162223 0.00010064111038102554 59767080.01056992 1085.053179086853 24423 None 83997 ZEN_20200322 49653088.37171017 8058.418812388724 5.719808367015603 0.0009287818115905536 3203127.054463995 520.123395314385 58092 5088 39151 CND_20190622 27768690.375293173 2743.46244674977 0.01587449220289547 1.563796909044488e-06 888100.5023963772 87.48681865332334 36287 6149 632693 XTZ_20210217 3422503115.608495 69591.8972418767 4.5108806263382375 9.167398580460096e-05 490256267.1245905 9963.408433062437 86023 36489 115000 ADA_20210304 39107972070.42584 769194.9911596559 1.2196969639873494 2.4072177690144953e-05 4665067737.673394 92070.68873133737 250930 241463 11673 ADX_20211104 105220941.71563663 1671.3778888804213 0.7906613837332167 1.2546482922397155e-05 18907378.01306556 300.0286851346684 None 4015 9701 YFI_20201101 314645012.09472 22809.11838023042 10486.159158210567 0.7599507444954924 201121065.34478787 14575.603997277129 47130 1852 9659 BRD_20200309 12558081.610597035 1554.507287288971 0.197631595791187 2.454949495775502e-05 745023.2522561629 92.54565041309313 180 None None SNT_20200107 33994205.09641304 4377.589778901404 0.009540418897808876 1.228628848638606e-06 36244071.87274791 4667.563633418274 110466 5625 276615 BTS_20200127 50644298.58885312 5893.171200127917 0.018686581615172646 2.1744446595537124e-06 5701876.869310756 663.4929792530202 13386 7058 163691 VET_20200208 425568476.11130255 43447.61097912923 0.006798275620808602 6.934449988516348e-07 70141517.46917608 7154.650269251583 118559 60164 353991 SSV_20211204 0.0 0.0 12.26727831644872 0.00022876573409255218 2975791.0844596857 55.49389313436285 None None 448309 DOCK_20190803 4729316.884478957 449.45729500305663 0.008619652812648327 8.191808524721502e-07 739386.8908171437 70.26867516491374 182 15217 218357 SC_20200109 58894557.717287675 7318.493893285284 0.0013947120148079858 1.7354516760968694e-07 2740113.911372386 340.95463649119256 107611 30240 203685 XEM_20201201 1705770006.3521595 86813.13368693917 0.18877750852052436 9.61004264913353e-06 51645698.92978118 2629.112828372487 212842 17806 146620 RVN_20210806 686043623.3993274 16744.351399757834 0.07315158415877167 1.7878523579048268e-06 49206814.01207135 1202.6331277463792 65972 46891 63027 MTL_20190515 18875416.82361886 2363.2477928607454 0.4167014267028109 5.213876482746881e-05 2780574.6053497996 347.91271673989485 33376 None 819230 QKC_20210610 111700716.87239678 2975.859653692866 0.017179794236418664 4.5869476242798563e-07 8353591.2978099575 223.03809481295636 74061 9510 257641 DASH_20201228 1072416656.399274 40392.82771488007 107.62945818666128 0.0040885466008935166 706670782.12673 26844.47615822966 324840 35744 92093 MTH_20200127 3291118.255569432 383.2940439600331 0.009409591683342182 1.0949373623162481e-06 400406.75289750803 46.59291589106331 19202 1943 1201858 WAN_20211207 142342323.9282442 2819.7194670642425 0.7374815113820699 1.4612449257960797e-05 7971331.511457951 157.94386087221875 131128 17408 208332 BAND_20200511 18297513.839069474 2086.300620752401 0.8968223612039953 0.00010216773337062211 6244700.416484228 711.4083175560444 13051 1131 568885 DGB_20210806 756738167.797293 18461.235087238198 0.05199058984101193 1.2706696608834825e-06 25349474.01920336 619.5507235839593 223190 40653 115108 ONG_20190723 0.0 0.0 0.24929512496350859 2.4113502785139973e-05 12618765.64728459 1220.5719651572247 81437 16289 245341 NEBL_20200321 5947817.292883103 962.1081804655349 0.36800909636771717 5.935159533395236e-05 1062802.7789768132 171.4061991408028 39589 6015 841626 STMX_20210206 78916060.46160188 2082.500689112753 0.009605825970907408 2.516527078555572e-07 88486978.70354016 2318.175227007509 24370 828 181816 SKY_20210826 33374597.58572379 681.0918697443863 1.5892665517011333 3.2432946178304106e-05 929737.2965146999 18.973607457821718 None 4413 978551 SYS_20210704 78170605.87550867 2256.1184306016175 0.12729055666382094 3.6646885529091105e-06 5045857.25075465 145.26996967489677 74280 5456 378699 ONT_20210828 952507443.1877064 19419.944385171206 1.0869161550537771 2.2161576932568983e-05 151949734.1442699 3098.165122916065 145324 19921 180960 STORJ_20210420 266679567.00858745 4763.702449618745 1.8517757452409638 3.311234502968904e-05 86377021.31540313 1544.542172443378 146 12614 56587 LSK_20210511 1163916592.9745977 20846.215236926044 8.293406476398655 0.000148426788147436 291839722.0808311 5223.044683215395 196427 32321 151176 APPC_20190131 4365584.002270568 1262.3229623830543 0.04188650303305571 1.2111620018089999e-05 153371.0224636559 44.347735221529476 25328 3438 1889676 STORJ_20190515 33084217.433645677 4140.218367388083 0.24322678782625015 3.0428920163189605e-05 5970522.326837688 746.9430026172375 83916 7702 186547 WPR_20190221 6397792.366376332 1611.6154049006332 0.010963196459169836 2.7616489077399498e-06 344184.34106286365 86.70065460355963 35007 None 831971 EVX_20200526 4274082.235309055 480.92328049943404 0.1963458734902016 2.209613575390622e-05 894974.3601162178 100.7175480995284 16640 2847 1534035 STORJ_20210110 58609790.740814336 1448.3832163668453 0.40513409364970143 1.0024348083891549e-05 69582057.90733396 1721.6886452901663 None 8567 92086 LTC_20191026 3615046625.2614183 418250.88263690623 56.92609778066944 0.006575146208311477 3289049726.611091 379895.7540036833 450726 209330 128159 BZRX_20210108 30203995.21239744 771.0685399997468 0.21638150332444228 5.481698520744647e-06 19342886.33786852 490.02280599854043 17114 None 145216 ONG_20190712 0.0 0.0 0.275979839088829 2.4252885428240988e-05 9152115.45353991 804.2805164811109 81022 16274 247326 SYS_20190905 14401506.493262134 1363.8195708040644 0.02555323834004958 2.419373730316786e-06 904682.6658316911 85.6551113741111 60569 4564 689818 STORJ_20210708 139412896.44359565 4103.111049632685 0.9693942290358472 2.853589606219742e-05 70591577.8308261 2077.9924900630735 103451 13665 49703 XVG_20200520 57223405.1113378 5864.297187407199 0.0035167487891423974 3.603990358990241e-07 1164217.5341695896 119.30988024702776 292470 51772 289428 ZRX_20190807 119252369.43736425 10421.59217775133 0.19905656360353385 1.7348918889694658e-05 49623343.05714946 4324.958384435281 151321 15928 188207 CVC_20200905 20959595.952115327 1998.9596412225712 0.03128297903300795 2.9835218525710022e-06 4337865.689621438 413.7111451197722 85311 7976 130606 XMR_20190807 1526780144.034197 133556.8874279241 89.63647320977277 0.007812331706740206 156834327.042263 13669.009299263129 320413 160017 104374 ADA_20200725 3795362719.226924 397795.54691400286 0.12196350601214086 1.2787590539847122e-05 287737557.7596631 30168.61512000081 159887 84135 35792 ADX_20210127 48547458.8448694 1489.77140417707 0.42799695760357953 1.3135913623931474e-05 1138126.8409206024 34.93093960087998 52821 3742 10698 LTO_20200914 19943079.38937825 1931.5438872577508 0.08260563392049895 7.998831809377175e-06 2561484.337051838 248.0325060413009 17996 553 1139240 ADX_20211007 68434830.14683291 1232.7449931879987 0.5236721714440093 9.438642904134084e-06 12701497.400751647 228.93119942368378 None 3917 9788 BTG_20190603 507585378.01061225 58064.17653625692 28.980009447425754 0.00331485150465992 33698788.3001711 3854.604647548207 74143 None 422397 CVC_20190920 16181693.791852519 1579.93175713269 0.0472877184490975 4.614051603237836e-06 4340067.956066198 423.47776901954944 88048 8140 118286 TNT_20190621 19854125.78769752 2075.583295322182 0.0465202241193409 4.864387764103635e-06 14897922.39063097 1557.8014242072745 17460 2514 824040 AKRO_20210120 44812253.81997818 1237.468725939553 0.01834149931891785 5.088939951352374e-07 22050470.90642738 611.8012513083478 25832 None 227046 MDA_20200526 7504552.443504974 844.464353708923 0.3824514092979947 4.302150757133685e-05 839765.1854823265 94.46419442325332 None 375 1665650 BZRX_20210819 48786611.635894276 1082.932684036695 0.34178480325975763 7.596536038986895e-06 18867461.702329855 419.3496943660906 None None 206797 EOS_20190622 7367658849.579685 727990.3613330522 7.063243778342671 0.0006978270777711278 3906934822.895591 385993.31922580296 1153 66476 103805 SNM_20200526 3581488.7848423067 402.59336896 0.008090609202875463 9.1e-07 487500.4690695995 54.83214128 29556 9630 7249686 BQX_20210722 406792957.4880293 12652.441356425681 1.8348020112911434 5.6883335009014606e-05 2465297.470720804 76.43023119710092 97677 6293 24773 ONE_20200107 17690209.105113845 2278.04940123004 0.0047375612695253755 6.107765476737633e-07 7762552.758899528 1000.7649306224356 71441 None 276429 NMR_20210603 282113473.1231294 7501.448383714946 49.27165957893299 0.0013101423587452094 20164543.070883766 536.1788550999551 29112 3452 477400 NXS_20190807 14024192.9716977 1228.0690371070023 0.23554161213375732 2.052879970436669e-05 377256.5351026282 32.880066397300894 21871 3541 855550 VIB_20200629 2710187.6365488633 297.25485802947986 0.014849792579888048 1.628230755676081e-06 552787.7556597723 60.611353342767124 30821 1101 None NEO_20210707 2593546715.0118203 75928.3413281433 36.78470207514982 0.0010770435821006756 330893771.2926274 9688.457228761219 406260 112244 98164 HNT_20210806 1231223211.2866945 30036.67862371738 13.162811924018722 0.00032170409712436505 14351875.116429709 350.76525084641895 67644 44585 2417 BLZ_20191203 4634672.509795255 634.1559750107323 0.021903516833624213 2.9979998476184106e-06 381288.3016455606 52.188070021581666 36081 None 601205 STEEM_20190902 54032059.7074566 5548.626695303472 0.16660835087448467 1.7107360770237402e-05 438791.2342474195 45.055124234099544 10745 3770 235183 STMX_20201130 18192142.348057635 1002.9851292536334 0.002285017554552193 1.257595034323697e-07 888786.5777667913 48.91575491603246 21619 141 269523 VIA_20191108 4973301.046156166 539.4795688453866 0.21475943383650278 2.329345988177462e-05 266355.6639695185 28.889743570849667 40365 2200 4314355 TRX_20190411 1999230288.8617713 376446.0844971656 0.030050228163275107 5.662202758271348e-06 518701290.97836626 97736.09253609467 409704 70465 89278 FUEL_20191203 3980507.3000437887 544.4534175479829 0.003945295001011375 5.400043244966287e-07 316638.71552750794 43.3392878464297 1 1489 None ETC_20210217 1666365159.0893114 33883.24539133956 14.368336344441685 0.0002920056572513058 2099895607.4474833 42675.87995662687 284986 30022 127057 SOL_20210105 111799126.97201678 3573.4218193703987 2.4217846067950366 7.740720513768275e-05 74768826.60691226 2389.8268586009376 105406 2829 92318 WRX_20200629 23053403.386762466 2527.619198418835 0.11958940984918662 1.3103157594901033e-05 6698553.658542408 733.9462947134782 None None 21864 EZ_20210511 0.0 0.0 9.015193709108326 0.00016134458748378832 5191174.888891926 92.90626447197113 None None 98658 ENJ_20190706 101468522.70453548 9232.132447881702 0.11589870076908781 1.054732949814477e-05 5700430.643605633 518.7661283556533 46749 12643 20679 BCPT_20201014 2109998.9863922936 184.69228053 0.018164800276093847 1.59e-06 45714.739364420966 4.0014993 10465 3195 1571577 TNB_20200320 3506894.4287376995 566.6425726353284 0.001159327296879364 1.8780546125283818e-07 766346.8884558412 124.14452006222615 15140 1446 1775001 TORN_20211120 72869834.65508907 1253.5441697095885 51.73062530740412 0.000886845711945388 4516952.532730679 77.43652741308954 27797 None 86399 NEO_20200422 509275523.16768783 74365.58929558328 7.216210193917452 0.0010543787282697985 338013543.95983523 49388.014074027895 321044 99293 240659 TOMO_20200407 19640123.075000834 2700.356311834608 0.28001393739766867 3.843708581514885e-05 12545250.674527008 1722.0674128964386 22228 1512 218911 OAX_20210127 7208478.581210972 221.20591918573555 0.12802749080627937 3.9306310111514e-06 463344.2748672641 14.22534616716397 12977 None 1543553 FXS_20211202 638358204.7858884 11168.033394375945 17.906833878286356 0.00031322915479030654 1587477.1711869787 27.768400374940498 22769 None 92799 ADX_20191108 7564334.423402964 820.5003768004202 0.08218049871200182 8.914086340528243e-06 434110.46647839533 47.087791388034844 53211 3825 287295 ZRX_20210324 1133578539.8843138 20781.740339535205 1.5039025021991548 2.7546957428600197e-05 245717631.51259148 4500.805820081993 None 18584 57131 DIA_20210401 104577776.67907615 1778.0165566708959 4.0650071642603365 6.917791933173345e-05 60925491.86323626 1036.8244362314779 28719 307 244618 STORJ_20210702 114017576.88669659 3393.310163865326 0.795101187415646 2.3640190272781947e-05 18485483.20831831 549.6160076799318 103300 13637 49703 SRM_20210324 234561149.1561035 4302.733260231236 4.7047517960434435 8.630680119700061e-05 125258596.11620523 2297.819145806622 46819 None 85799 ETC_20200901 769353364.834932 65852.49735183585 6.605940128037071 0.0005658124199449221 644962997.3755751 55242.413229143436 235069 25746 179202 SRM_20210401 275847262.3633655 4689.916109992567 5.495427920578924 9.349248676139213e-05 107747672.49630184 1833.0870661970393 48268 None 75869 BTG_20190207 161700652.54827422 47467.72174620094 9.096909630637262 0.002670468986268337 172030244.6790298 50500.824100560014 72783 None 294190 BEAM_20200801 27184439.897552326 2398.562150417938 0.4049509571574703 3.572511211122105e-05 9321221.993792675 822.3259998675119 15567 1541 306109 ARPA_20210616 45344487.78296267 1122.8011046458837 0.04621103914985061 1.1449463492208542e-06 13026688.058586413 322.7553244745769 None None 491421 YGG_20211230 448992023.4802315 9680.876380223439 5.151492768432346 0.0001106145167282109 31072850.00740303 667.2062723254136 147353 None 43136 GTO_20201111 4553200.255928266 297.6807947344682 0.006863256542032944 4.4932338974863293e-07 133025.6743427859 8.708919235822936 16424 None 839827 XMR_20200607 1191016374.2822201 123146.24756728298 67.70439831555156 0.0070018384652102686 60008864.49640728 6205.983453633656 319909 172609 79521 MBL_20200403 4731296.532964463 697.7151804898247 0.0013464671963186298 1.974947143670438e-07 1470260.0666816665 215.6521842555556 None None 105584 IOTX_20190312 22693670.268077552 5870.950577453303 0.008990306628648125 2.325083096471592e-06 4023680.8148292187 1040.608806194103 13947 1648 1423177 MDA_20190419 20486691.144901752 3884.0670261535683 1.154306198257014 0.00021870860969345248 892638.8608681386 169.12999732099593 None 361 1377289 GRS_20210310 56665471.428094715 1036.8011686825087 0.7323252049140022 1.3387925880376978e-05 12188483.686081398 222.82247707506392 37995 106776 5238877 AMB_20210108 2254462.768997117 57.59616253451176 0.015794412112199337 4.0012757181770824e-07 641062.3037454447 16.240345076434306 20232 5486 666960 TKO_20210527 139753331.18545327 3567.0037743369817 1.9040080872291325 4.8601459564973205e-05 29032672.738136042 741.0841790063323 267842 None 25911 DOGE_20210131 3654877536.8188677 106963.46800618025 0.028517121171004703 8.345806794550053e-07 7417688490.908438 217085.7101460298 344194 622501 31801 DNT_20191220 3975941.5037838607 556.6739995429704 0.0053712544902915545 7.516825100122441e-07 122953.05365565635 17.206717751431135 59524 6183 474777 VIDT_20210117 27232736.73868928 750.5539872007226 0.5893008925980752 1.6281257791872978e-05 2072134.3085120108 57.24911209200958 191 1178 None ICX_20190830 104468022.83851087 11008.612901831684 0.2125484395130661 2.2410481718168414e-05 22964819.433290318 2421.3429524574512 113788 26162 212480 KEY_20210909 24609060.693232123 530.9245912591742 0.00878243159340515 1.8961465176381037e-07 7556922.076538064 163.15562867862275 32653 3925 217231 RDN_20190821 9128216.755519513 849.5363190391867 0.18042116620340984 1.679126794623084e-05 420658.4514180827 39.14944637728465 25614 4391 818070 CHR_20210708 71628603.3719287 2108.020090971352 0.1593789936559312 4.690680797550602e-06 46524483.46292086 1369.2613825044193 68147 None 101399 BTS_20200607 60100962.125253454 6214.19496887168 0.022150633951014482 2.2907693545129794e-06 9701835.76434509 1003.34230165281 13131 6986 151831 MTL_20190603 23194784.432529822 2653.66324759014 0.5028013548342151 5.749932564672182e-05 7338912.075934746 839.2628446396458 33286 None 939567 COS_20191118 18893592.20843008 2222.1728697707276 0.014319881397103109 1.682792944687184e-06 11196165.952552129 1315.711251373427 9201 None 208767 GXS_20200113 25796777.76742835 3162.547914092038 0.3969051281461351 4.860005235583391e-05 5188565.153467228 635.3269842795256 None None 1062662 ONG_20200801 0.0 0.0 0.17068978273194768 1.507039508509089e-05 8086797.0056327665 713.9925067407411 88317 16588 189841 AXS_20210206 59435724.905045286 1568.3435263438919 1.0764055917444986 2.8317928216708235e-05 18096024.656706955 476.06769341091064 31965 None 20130 TFUEL_20211104 2053452232.8188827 32560.670599884666 0.37489411364054614 5.9483823961682756e-06 45006010.065031014 714.102857985361 210201 25410 30625 YFI_20210325 1127167596.2531207 21324.960040565693 31055.1809063184 0.5886575300583125 263001098.29949945 4985.241509126358 None 3998 21713 FUN_20200907 22055345.598855186 2147.7499515409127 0.0036672774828920983 3.5711954731633944e-07 332337.6445519645 32.36304581047927 34223 16680 242741 BADGER_20210620 111234999.21122034 3120.2995135080214 12.368141628140021 0.00034775304661502544 16150075.278524965 454.08906608822997 34992 None None VIDT_20201231 25016258.324459113 866.3027225175937 0.5363519263985863 1.8598656144424408e-05 1696387.0477829056 58.82428651169412 133 1140 None NANO_20200907 111965822.88161553 10903.110376255412 0.8402796229626327 8.18255181830507e-05 7254892.286935685 706.4735410906534 98802 52606 201446 FIDA_20211125 395946747.49743533 6921.24853806221 8.072743187624804 0.0001411344724141027 3277699.2242517197 57.30348903654238 57300 None 328812 AUTO_20210603 37232203.48790546 988.5269883172891 1459.2219612117788 0.03880097643417375 6154782.3524733875 163.65677831319957 65300 None 10120 FUEL_20190615 6905785.157712686 794.0668267489418 0.008933431964889774 1.029550119611633e-06 2511072.802154902 289.39329408594165 1 1515 None BQX_20200313 3226964.031704191 670.5366678396246 0.02308308087209082 4.81693011707593e-06 1563952.0799361407 326.36232213770234 10776 11 317687 ONT_20200113 390361722.96977973 47855.03019511411 0.612815410201996 7.50377329700643e-05 136113324.04919985 16666.740251040806 81639 16255 336672 CND_20200430 7421289.750215762 850.0401787150477 0.003948778344368711 4.503959473149008e-07 118450.96099566336 13.510465297218694 34566 5933 386882 BQX_20190702 11688418.761830913 1100.829787179713 0.09647208570021396 9.100347672274817e-06 476513.63942288724 44.950202515624234 60756 5773 466152 TCT_20200430 3518528.9599919403 403.1698162385246 0.006104158280484605 6.962376490996704e-07 631613.7636341174 72.04159225974412 None None 458106 NAV_20201014 9183726.100482272 803.8290778784643 0.1314438386593891 1.150779391583669e-05 871514.2110220336 76.30031226608718 48398 13741 1226716 ADX_20190511 11328241.016348388 1777.932546545119 0.12307236091691119 1.9315828091805363e-05 519128.12192974985 81.47556028104903 54621 3917 1002486 YFII_20201031 55991265.573453516 4122.563639150767 1403.04266975205 0.10333416150694713 175870631.14828047 12952.880618104657 11424 None 77719 TFUEL_20200318 0.0 0.0 0.0015648484193759903 2.909373435069112e-07 454861.04828459636 84.56797694530731 68373 4026 384607 WAVES_20211011 2653769332.351185 48499.10775816898 26.583907541982672 0.0004856956387288713 130972382.132129 2392.9031010601334 197719 59747 141312 NEBL_20200403 6282871.090834694 925.8497604294563 0.3896895249560477 5.716348323630792e-05 94139.6506291714 13.80932767238092 39502 6008 1168706 OM_20210707 34953104.935656846 1023.2826216977809 0.11169458700036727 3.2699979691613545e-06 7876046.455256456 230.58105683872046 45938 None 75678 TCT_20201101 3793203.8988890573 275.028700094204 0.006569749699146877 4.7612153312650025e-07 205486.62967305465 14.891984266864362 None None 556136 SNGLS_20200315 2533511.9311123197 490.1444525544298 0.003901024249916831 7.525596234268643e-07 69608.58284869937 13.428424316257892 8027 2132 1276289 IRIS_20211002 115771622.08095856 2404.2161687764656 0.10514624220855702 2.1832204518150857e-06 19766349.78116052 410.4216964250986 28739 None 488094 TFUEL_20200313 0.0 0.0 0.0011692725561594861 2.408426510044729e-07 1085911.7519578037 223.6722855768082 68483 4027 385146 BNT_20190803 35322168.87129643 3356.8920971729617 0.5065396000585232 4.812637171235389e-05 3408447.270219116 323.836873305801 784 5135 154213 POWR_20210201 45703066.66106699 1382.4923312260541 0.10642766212785969 3.218048333344151e-06 3127886.3082205798 94.5777546909425 81191 12509 369771 FET_20190605 0 0 0.1609027985413227 2.0987472308905176e-05 42283100.2430002 5515.226605935784 9117 249 299153 BCH_20200914 4106801813.529906 397755.421027286 221.72346889748172 0.021482421658654268 2172984485.6709347 210536.88728134087 None 320134 143808 GLM_20211104 573747413.1003184 9099.305102077858 0.5732744325240541 9.090155428221211e-06 18065261.674554497 286.4527478578906 160954 21659 155012 ELF_20190318 56528726.611365356 14195.212610398421 0.17072383190039161 4.287343994928109e-05 6820952.731040352 1712.9284415415736 86610 31766 915905 DOT_20210828 27227356056.746326 555153.7541909695 26.547837050599668 0.0005411901299699554 1360622439.1787415 27736.927618461024 562864 28873 27149 SNT_20190816 63773657.55414675 6196.699313810957 0.018033370619722797 1.7523616329548493e-06 14968015.359380962 1454.4910316749913 111492 5721 264981 ONG_20190511 0.0 0.0 0.37875898037437633 5.945232332065729e-05 4283499.936849525 672.3643171123647 79273 15436 249396 CDT_20210617 13343441.228379708 349.2580162829311 0.019826104212737294 5.183423376804147e-07 459609.83195321413 12.016240415122866 20913 337 469321 FLM_20210804 0.0 0.0 0.46059264631932517 1.1991766066969814e-05 11051953.559597325 287.74328623957615 24249 None 72660 DUSK_20211104 66752428.645163715 1058.6552560905816 0.17535800613335362 2.7810774627761703e-06 3723875.43177664 59.0585298376638 29320 13687 496960 AION_20210108 41268943.83736356 1053.5422234124262 0.08498171104776216 2.153484783600635e-06 5363067.4244192485 135.90317198273488 68005 72530 529270 UTK_20210430 217688456.57191178 4061.0599048072168 0.4887504010118303 9.11813820743425e-06 14954154.210134009 278.9850291293902 69622 3766 75588 BNB_20200208 3395280397.1581664 346664.80012744945 22.124597241734357 0.002256776889411043 437168891.0251412 44592.56994626556 None 58949 1981 AST_20210128 22841175.41904042 755.0583854238319 0.13327066597612994 4.398510220378661e-06 2511214.64221634 82.88097900952552 35364 3447 178843 REN_20190629 59158377.37501931 4773.5574626488915 0.07576342205219304 6.113437602258874e-06 1890160.4670641725 152.51922049789232 6685 782 1312648 OMG_20210120 547356534.9487413 15114.986107566358 3.8833176594511754 0.00010774457440668616 548330611.6240977 15213.704766028846 None 42540 205184 ZEC_20200914 623859351.5100993 60409.269787082536 62.1970892388086 0.006022640735774259 612117307.2462322 59272.26940699553 71861 16143 174620 DGD_20190923 28600396.30077368 2845.1668185093254 14.300597995682645 0.0014225842065576976 1172335.4542024985 116.62071071710514 17291 3371 538258 EGLD_20210519 2584295115.651081 60378.98753829962 145.62698771451906 0.0034040206341909613 111932946.24109375 2616.4247755876827 233647 8645 26800 OAX_20190915 3774646.716428185 364.52962963424386 0.07239876691358163 6.992550094627843e-06 110674.180993221 10.689336127792915 12284 None None MTH_20211021 14555530.329380339 219.321486654122 0.03980521701268502 6.002000812320393e-07 493135.8405753138 7.4357130493073615 None 2077 1313452 MITH_20191220 5032870.539263012 704.5707529355756 0.00889831812882469 1.2452789414562502e-06 767570.686666323 107.41800847605066 88 2085 874298 TCT_20210620 16709722.572246652 468.60791577697745 0.028750951141354283 8.07528986580713e-07 1912045.6245273584 53.703693414503654 None None 301780 KMD_20191113 104292699.78427877 11865.647147624202 0.8911498153790584 0.00010125560932676024 6313929.791722675 717.4111437540087 98304 8405 265268 CLOAK_20190201 5540441.462473357 1616.1905850378882 1.0585739570659713 0.00030858497637761297 116829.65509515985 34.057021823651176 18024 1381 959121 SYS_20210902 151627562.49651217 3112.640582638459 0.24524547854316744 5.034447673322003e-06 1502651.6468252859 30.846730109405307 74991 5582 429832 GXS_20210428 62503417.44314158 1134.4708346325178 0.8927375426585321 1.6209769814915474e-05 13029936.556922985 236.5894366464003 None None 582398 ALGO_20200305 264371561.57718056 30198.897941862957 0.39411373593179333 4.499617755682032e-05 151691043.18884033 17318.648123153987 15832 810 407593 BCD_20200105 58990668.40002229 8026.470421034404 0.31696917063944985 4.3105803397746104e-05 1842575.3121737684 250.57859410071543 23496 None 4380689 ETH_20210110 147397891905.5662 3642416.626551436 1282.979575527323 0.03183786765048036 34851118090.66404 864850.3112652968 None 526191 7761 YOYO_20210220 4968572.982201146 88.9637918188936 0.02850104313447656 5.098410268422112e-07 1711278.3336397063 30.61220948016083 9455 None 1496735 ARPA_20200421 0.0 0.0 0.007695019501114503 1.123905926111346e-06 1802796.9402891921 263.30981545569387 16714 None 1423765 MDT_20200704 5436456.120803994 599.4450539116265 0.008964935764100259 9.890562126151579e-07 2963274.9474059897 326.9232009620423 14152 61 566162 WAVES_20200229 116223336.0255897 13290.52030537446 1.1519728547480592 0.0001322117578192485 65830254.02796375 7555.328727453606 141301 56866 40604 FTM_20200704 30780223.614609312 3393.94863014965 0.01280554315307906 1.4127710833336317e-06 46514927.49940384 5131.757687194791 22753 2416 295003 STORJ_20190601 40080003.91421445 4672.167900205735 0.2788027711802919 3.2509008631961956e-05 4665066.14785302 543.9568445722382 83752 7724 192975 SNT_20200324 56939092.32808023 8838.379615998476 0.015466144472741741 2.386805743054731e-06 49410916.50080391 7625.317316902698 110401 5617 189796 ENJ_20210125 382739142.1034345 11886.564313740018 0.4183924446474135 1.2967870475936844e-05 90419521.7276647 2802.5091305093715 74994 16386 72441 RDN_20190205 10558355.934052719 3047.7667369320015 0.21003739056840415 6.062922830833797e-05 623236.3541146895 179.90291681599223 24882 4457 699735 STMX_20200629 0.0 0.0 0.0019064128661655383 2.0896511021597121e-07 857138.4949185705 93.95238735524671 19575 64 267635 HC_20200308 72333018.3483014 8137.927251358513 1.6399734051036174 0.00018425773375133742 26801701.614616044 3011.2810273753753 12774 842 804824 GTO_20190405 22930992.23090599 4679.057170695187 0.03740193101113386 7.641189971859992e-06 12273983.224094609 2507.5667215901394 16853 None 779658 PIVX_20210509 122185060.99082236 2080.0113374350726 1.8662198146988584 3.176950063487036e-05 3332582.36007474 56.73205083895039 67644 9713 218406 BAND_20210702 195408304.29691523 5811.961482164161 5.557709956126605 0.0001652341375448673 36396423.21944492 1082.088062863633 99341 5432 205919 AION_20200117 24134901.404951267 2772.5145737247935 0.06349800763448693 7.287283310988296e-06 3169690.979247848 363.7663138507327 1133 72536 266785 WAVES_20200506 105114795.4614282 11721.30803528916 1.0529359902520992 0.00011701695793151675 37016239.0846282 4113.761645389126 92 56841 74379 MFT_20191012 8566071.599456135 1036.2277902277758 0.0009505739167997912 1.1496608543656647e-07 1215081.0961229086 146.9566065724957 18659 2298 1001046 GTO_20200316 6904011.906634261 1277.906807601356 0.010326849730354764 1.9217731907254637e-06 28991295.05291806 5395.129691230212 16904 None 1148049 NEBL_20200107 6846763.756579998 881.6891865643229 0.430749109545173 5.54724890155649e-05 105446.50499425195 13.57955236680512 39917 6041 753189 IRIS_20210527 89989728.20067269 2296.8590259748335 0.08887142240088743 2.2685202186216305e-06 13793075.572062714 352.0802296947138 24520 None 469012 PERL_20200730 20630980.88496107 1857.9908417213908 0.05839420105455428 5.265217770350491e-06 9266980.386898885 835.5738914041369 12289 493 1781566 TUSD_20190316 197217421.77421612 50253.84214737255 0.9914978656027807 0.0002526453298837461 386212710.2678428 98411.54577936909 8362 None 298928 NEO_20210117 1672124367.721472 46077.12401631054 23.66895141292628 0.0006540285389262054 749027309.3202718 20697.37810450801 329343 101482 169176 ATOM_20201014 1433395948.4694 125468.3256837734 6.011573431971666 0.0005261231721104162 297776236.704738 26060.894041647847 43677 9634 80647 CHESS_20211207 105537790.05469556 2091.3462401282072 2.1852317244756403 4.3299553043507975e-05 62691058.22468263 1242.199978404877 None None 44775 NAV_20210610 29450433.595138952 786.3167308888267 0.4118715254133663 1.0996832028398e-05 5459520.392865549 145.7673692195657 53035 14095 589462 WPR_20200224 6336202.696373211 636.8677266597649 0.010415500434317233 1.0467121034215086e-06 588162.7945868887 59.10778073110147 33688 None 661925 QTUM_20200913 292439428.20165306 28045.07440205302 2.8531274498069275 0.0002732384236001903 414501614.28198034 39696.007156570115 186121 15081 78545 BNB_20210711 49113706032.49423 1456450.2007040384 317.67435605424265 0.009423974047909312 944409662.6501232 28016.401015037758 4481349 547521 139 ZEC_20190706 693298400.5861561 63079.8841799817 100.38284611196305 0.009135313397635837 446480417.48867285 40631.82802285812 63 15284 191872 QSP_20191012 0.0 0.0 0.011377817422381023 1.3763614357318147e-06 121158.34425908836 14.656385004676157 56126 8491 448058 BTS_20210523 130934980.13889076 3486.386319416228 0.04831199682534294 1.2863963825166296e-06 36184343.8040369 963.4751621119867 5860 7161 102901 ADA_20191203 1185865205.6776633 162262.93494292148 0.03806227948306808 5.209698011374843e-06 70629290.05765718 9667.242134614628 154859 75825 107764 TRX_20190205 1759241153.4552393 507621.80169241835 0.026883816621928687 7.758605216578045e-06 272368243.2253483 78604.82395177048 380880 69745 78009 WAVES_20201106 343654556.3115137 22116.0611328111 3.441623357356756 0.00022089119757297244 45214398.31298967 2901.9626943048956 145241 57079 240575 MBL_20200721 7491534.401575819 817.6514135340113 0.0021232595017886356 2.3173777149529613e-07 5066632.88035115 552.9847913965677 None None 152748 YFI_20210217 1449815313.1714938 29484.12624814136 42975.91183487535 0.8733933477393534 724428699.8819095 14722.461499348045 84801 3334 19652 NCASH_20190819 3347112.92417112 324.3347656767708 0.0011533503463449534 1.1178432470831108e-07 680461.6826659698 65.95129565595705 59865 58959 801228 APPC_20200711 4633767.0515273865 499.0425814313999 0.04253526243996803 4.5814957170702585e-06 233510.78199824292 25.15157039702235 24453 3197 1596022 ZIL_20210828 1397465967.7014282 28489.863371353767 0.1125899539447566 2.295642506167064e-06 184522908.84090534 3762.3128712230896 315859 35991 59302 DUSK_20190929 8816215.164976021 1076.377318762925 0.059953510069416883 7.319368859687381e-06 760436.0813967051 92.83713609950905 20090 13329 178526 WPR_20190916 3628044.8743746085 352.14765812622824 0.0059663991434953 5.789711387689993e-07 65599.06170200271 6.365642415525109 34413 None 840031 AE_20191216 50587520.22293841 7108.744261394233 0.14753468716332238 2.0749724478917763e-05 5479780.038442637 770.6928329124846 25260 6354 386278 AUDIO_20210114 26973157.06292725 723.9402312512556 0.17585829687578655 4.71991082878055e-06 1753139.3124486955 47.05300444841737 24388 2399 55662 OMG_20190818 167934429.8767578 16429.394574842398 1.1991993053159198 0.00011732873994536362 64778273.348381974 6337.856563217182 288933 41108 None SOL_20200711 15112460.37027957 1627.5658985658602 0.9136373735709605 9.840836693739278e-05 1871221.381625289 201.55024922453484 65032 1964 104192 RDN_20190316 16256013.070681868 4142.44037738046 0.32130359243023626 8.187622444034962e-05 1106533.453593129 281.9725130114058 25093 4459 918297 FTT_20210207 1306785457.9130712 33325.12504539814 14.601984873125748 0.0003711878213834128 62125908.25984366 1579.2634178712692 None None 4702 LOOM_20190421 50094758.83211814 9433.416708039695 0.07246104125058296 1.36428399683048e-05 2908949.4618773498 547.6919914390515 19118 None 474051 BEAM_20210821 69774292.78169143 1420.1371727857236 0.7346171142742 1.4948272543946435e-05 11367809.19282024 231.3165685089521 22396 2625 247381 XZC_20190201 30622193.58201629 8933.600559631786 4.5737222309933685 0.0013329734524878559 886138.0840091861 258.25760323143925 58798 3928 286073 DNT_20190321 8680912.39585256 2148.1136721826106 0.014915185731768647 3.690557765094361e-06 464721.18425969995 114.98887147750646 60398 6452 957318 ANKR_20210418 1379657959.2958632 22886.48486088516 0.19623403438127807 3.256486557536917e-06 524609177.09324497 8705.843196625663 None None 5736 GRS_20200310 13693902.15742104 1729.6310307270282 0.18384768743932628 2.3220702381230995e-05 9318519.374309415 1176.9664771877249 37753 106865 3955402 ALGO_20191012 111389513.3459222 13477.851469014378 0.2531088765018459 3.061196631465468e-05 79374800.40537281 9599.895309179292 12498 636 276742 NULS_20210731 37651850.83025055 902.4573136983848 0.40079556610188033 9.594968632906646e-06 7859058.105923588 188.14433688460355 57618 5366 382671 CMT_20190812 26420257.81489063 2289.3474017046783 0.0330295318640985 2.8609276935128534e-06 2854566.010892852 247.2546988291012 290501 1646 586149 MITH_20200421 2134267.1528353123 311.6741679127476 0.0034745154955847036 5.07474809555423e-07 1922386.498361126 280.7766214850505 96 2095 1180459 XLM_20190804 1612159505.032783 149412.59199921446 0.08221408702412403 7.6180120332885e-06 140188717.68683857 12989.979904006594 275628 103217 68303 LUNA_20210401 7298712158.532365 124087.01364783561 18.644496937215052 0.0003171938162240003 585865723.0636847 9967.17611202877 49414 None 27398 ADX_20200316 5401484.153862322 999.7967583295678 0.05896588436415364 1.0973245345611838e-05 219093.44566970418 40.77215425281869 52364 3772 39887 RVN_20200113 126518429.95240511 15519.272864806717 0.024001800821771148 2.938961212269572e-06 6762289.275509824 828.0256150131373 29384 7315 200333 HNT_20210727 1043911534.5968708 27883.45055652521 11.27324191486749 0.000302134271287284 22666247.803535074 607.4783380552129 65292 43302 2371 BNB_20190930 2375227666.699408 294549.0389491594 15.25344192048347 0.001893065148214826 106615424.88891646 13231.76409439045 None 56599 1307 DCR_20191127 191655668.6869744 26732.197773374988 17.871050377594347 0.0024970620855189274 16087981.724134238 2247.919867442327 40658 9701 83809 BCH_20210806 10322509598.138096 251913.72464080993 548.3933126238425 0.013389459474534715 3608361333.549241 88101.01569961241 None 598854 320566 BAR_20210724 65037811.366383255 1945.7260568970223 22.11421803277471 0.0006611337058734798 23953193.744599007 716.1123094835107 None None 42486 LUN_20190813 3130723.402470766 275.08331022087464 1.150940663210249 0.00010113997882209686 3052467.70248027 268.23843196475224 31056 2202 1249671 TRX_20200704 1100673952.9704404 121364.64314548946 0.0166310824886699 1.8348235716092709e-06 495821952.27512413 54701.53887911377 510859 73406 58804 QTUM_20190608 301924185.3806541 37527.244189532976 3.1501736932259483 0.0003918480418888967 272555260.4426353 33902.97028402763 177596 15307 454954 FUEL_20190804 3214350.202264809 297.90139204537314 0.003653860886863332 3.385549006915011e-07 174984.44097406729 16.21349084458153 1 1504 None UNI_20210206 6321799769.83289 166831.13188611576 21.24196805398914 0.0005582334139630929 1315724521.5155115 34576.899353853834 193973 None 5312 SCRT_20201208 28638847.822941747 1491.4685432865408 0.5043760770078943 2.6285335388105275e-05 1393926.1003391526 72.6438400310466 62203 None 399659 DREP_20210902 0.0 0.0 0.7987433627618086 1.6402155605697727e-05 4474872.1011981545 91.89127815179778 4125 None 259901 MANA_20200430 44761437.88213658 5124.068565634262 0.0338185155031617 3.857325227826952e-06 26642874.486735772 3038.8747220410946 48245 6836 45768 FIL_20210105 933651801.4490069 29842.198319021216 20.971516044607387 0.0006703100019540747 139133407.4518984 4447.104082632147 43038 None 31509 FIRO_20210707 62600760.01820914 1832.7756304419509 5.205393703895179 0.0001523417788939983 5909726.890699129 172.95489227512462 73609 1060 237934 HNT_20210509 1403628652.7098432 23934.911176862144 17.267040642780138 0.00029440069429894917 15702028.748948134 267.71745438181233 None 25382 7875 DUSK_20200331 4534578.236887665 706.2271064225465 0.017372702821337824 2.70586318038981e-06 226030.56078808932 35.20510184104177 17611 13341 1647516 SC_20190730 111915366.63726132 11791.105772944657 0.0026938656682407884 2.8320867810921185e-07 6739788.022543172 708.5603707356568 109595 30785 213896 UTK_20211221 146338150.18005505 3101.785693599754 0.3175517364869284 6.73554023660117e-06 4807265.289086357 101.96615247918876 81816 4272 122426 NMR_20211125 235495573.547166 4116.52003903906 40.00275151664056 0.0006994388866800507 5089479.395051079 88.98837372161182 None 3732 2691108 AMB_20190325 7943953.377947688 1990.6515569615283 0.054912282576196465 1.3761189671219146e-05 463425.83600417717 116.13596318724561 18881 5699 634689 SUN_20210603 0.0 0.0 0.0002503777089027838 6.5e-09 3.9115894762097603 0.000101547904191565 56 None None SNM_20191017 5151256.87968548 643.3533361778212 0.011771570757742674 1.4701808696267985e-06 380110.3257596618 47.47292785135729 30922 9829 6645524 BLZ_20200410 3680432.059427841 504.9902375606525 0.0167521155004572 2.2975905715855636e-06 292995.03361873125 40.18493226992254 36029 None 583027 CVC_20190625 28712887.56892228 2600.592818016611 0.08396627126319355 7.602383216760143e-06 5017277.148191093 454.2688750067455 88679 8169 458176 QTUM_20201224 218578762.14600316 9348.080075917082 2.09153160275255 8.970566540265893e-05 261409125.47453663 11211.821763610631 188129 15023 230416 ANT_20210117 121444204.39675379 3346.5212128189564 3.505053702695685 9.68357447564287e-05 40378840.27907899 1115.5649534893812 76725 2696 136164 SNT_20191203 39376945.78936597 5385.884756404708 0.011060137540127647 1.5138340985060385e-06 14768499.425369425 2021.4086789406276 None 5658 305668 DASH_20211202 1875781509.3992162 32811.74026638435 179.29679249056497 0.0031363250791157414 283201525.3561463 4953.864673653065 419420 43393 67368 BTG_20190902 190965261.85751057 19630.36475991862 10.904399164205412 0.0011208304487352 11290989.490706218 1160.566907627033 75039 None 255203 PAXG_20210106 86993774.74159607 2560.3680799565564 2017.644166321676 0.05920996927338879 8406743.787947195 246.7050680601757 14027 None 75931 VIDT_20210527 29534351.964963127 753.8220666226663 0.6337546531947836 1.6177137774758407e-05 7008273.437606528 178.89226436732014 28039 1591 377967 ETH_20210204 189023794263.7008 5045275.215206119 1661.000824367477 0.044281584252641025 42202356538.206825 1125097.097659931 650109 610627 7116 ANKR_20201015 49390562.2481568 4327.9193817236155 0.008475081099280534 7.4246417849714e-07 36265350.72593864 3177.046156753647 27512 None 5286 NMR_20211028 237419719.90466046 4056.9964929243365 40.64718483857685 0.0006940571839946517 12367438.406457732 211.17598937545247 None 3679 2763192 BAL_20210718 192140151.47779667 6078.566668646199 17.791734020781455 0.0005634039585253466 14040678.595794788 444.6207374735382 91288 None 131138 REN_20190605 30581785.48596665 3991.626701434133 0.039781274577421116 5.187344770382533e-06 651529.2865367789 84.95723360220997 6388 780 1322492 SNT_20191020 44767101.992937304 5633.479108505292 0.012573415114232638 1.5816438771659395e-06 20218311.87673421 2543.3161075124262 110976 5689 373858 CTXC_20210509 3370887.943576382 57.48094651736547 0.3375741128999302 5.746676200531445e-06 4399210.322632581 74.88973915988372 None 20529 375335 BNT_20210206 290894256.8567064 7622.701922215177 2.5850519920406474 6.772299807582073e-05 190963570.33854848 5002.8492836541855 None 5418 79308 YFII_20210527 84251339.32812726 2150.394862341978 2130.9738414824387 0.05435675741964139 62193761.45569546 1586.4348677834957 16543 None 421483 UMA_20210128 557884396.3525822 18441.715224676147 9.981693077597912 0.0003282682952571999 36992153.05599465 1216.5622532352068 18371 None 212976 GTO_20200422 5547149.12469639 810.0075397354166 0.00836118558244767 1.2214207907531778e-06 3556953.0341580436 519.6076973549731 16789 None 999939 KAVA_20191127 14845778.633649621 2070.690529816659 1.0931519026791903 0.00015267500222268982 7073902.360102096 987.9761960846449 None None 438956 SYS_20190811 14807639.775767434 1306.5052688422886 0.026423570829001295 2.3332762975803087e-06 790969.3999307151 69.84484288338753 60901 4578 678710 ZRX_20190528 200918315.0657092 22785.733885763457 0.33631003233244144 3.821506748848007e-05 51227727.02514119 5821.0307672655235 150494 15912 222198 GRS_20201226 24222171.065419547 980.8489151048492 0.31782025026630556 1.2889059037033535e-05 11455838.162553852 464.58642667399704 37621 106782 4622785 EOS_20211011 4452963464.909021 81369.4588630003 4.595867480149329 8.39678210496024e-05 1383902676.7171745 25284.300039233894 None 94435 80899 BNB_20210221 39186024468.50675 698804.8572307912 257.3900907544965 0.004577019067393364 13497538091.829664 240018.91070506713 1843452 166811 283 PIVX_20201129 25801169.722191777 1457.550420900163 0.3977405131477109 2.2466946679614662e-05 1031809.2291151263 58.283232830885346 64874 8672 298063 RDN_20210826 26815757.394987512 547.2423838475418 0.5248249348595035 1.0710361233683856e-05 1287489.7963080013 26.274439126700806 None 4710 1417860 VIBE_20200626 2686080.8837005845 290.05422404786515 0.014249852131139655 1.54e-06 1186450.1863592595 128.22121031 18874 None 1162638 SYS_20191022 15306761.538748855 1864.0026952129156 0.02698459279692727 3.2857249606666734e-06 1041318.5590963002 126.79407124563954 59997 4578 999459 ATM_20210723 28393462.09841146 877.1112419080484 15.011905094997923 0.0004637092679983561 66317442.849543855 2048.5083461879594 5011074 None 94240 INJ_20210318 161090529.61885124 2738.568158018584 11.94140477135172 0.00020273179570143277 23411905.820686914 397.4689576897591 None 2681 98745 XVS_20201229 13147665.004758507 484.50224541304766 3.554271403702303 0.00013086445997887344 3519992.449220029 129.60234565009978 None None 109948 FTM_20210610 779018790.0454874 20753.95312192176 0.30673407951829057 8.189697373380138e-06 103416345.39479941 2761.1818470723865 95126 8327 47008 ENJ_20201106 114342475.020812 7357.235503268931 0.12405521506408024 7.96214523652095e-06 6217308.466377763 399.0409670724478 66910 15934 82312 AMB_20210527 5838125.490367262 149.00979806741506 0.040787476025513976 1.040475824240817e-06 785845.6852604494 20.046678950812876 25725 5635 534259 XTZ_20201115 1576634034.3475368 97952.98829070252 2.1005767711839516 0.000130591015284957 78666895.66464393 4890.651898607513 75200 30299 118463 CHR_20200704 10677699.578482004 1177.5429374794114 0.0299450247107906 3.302137128213191e-06 13759882.84192096 1517.3478883721793 22342 None 392224 DNT_20191017 4936508.144871256 616.5888243007563 0.006571306496595502 8.207814163267046e-07 432483.61321624066 54.01886409918998 59931 6233 368992 PIVX_20210408 108016882.23990013 1917.651899174816 1.648894461954327 2.9327275047781814e-05 2784530.0524888523 49.525715934157155 67160 9564 200189 ETH_20190702 31498970007.217487 2968424.2314449344 295.2558980709613 0.027815061582070172 14541502314.74893 1369905.8512400899 445039 441234 35893 POWR_20190524 50342745.802875765 6401.546407380447 0.12032830866736753 1.5296471491258688e-05 2374953.219933748 301.9107026777456 84987 13214 633531 STPT_20210310 68158294.18482602 1247.0031295985766 0.06620732448924432 1.209320693782676e-06 362341714.97121036 6618.411746974828 23378 None 1220262 ZRX_20201031 233085264.6952556 17162.023668700633 0.3234474953682749 2.3832582823741405e-05 57153133.93807896 4211.214548638776 None 16302 68246 ARK_20210819 195056115.90511313 4327.34960961343 1.22629890269692 2.7228778632937685e-05 5524917.502966146 122.67543852698732 73183 23428 142622 ARK_20191024 25628884.897047576 3432.8271611340992 0.17952696192733328 2.4046501965874936e-05 886090.9598222205 118.6862841021817 63152 21733 85415 VITE_20210324 84770432.39610055 1554.0847436170332 0.14081651097662665 2.579333718405809e-06 160796905.392775 2945.314274714102 None 1975 284411 XLM_20210310 9768946867.769964 178417.2375219288 0.4327987438026883 7.904511849378497e-06 980352046.5416837 17904.867977121576 433771 159595 27460 ADX_20190302 10995904.549986105 2878.5022157609437 0.12685319177195795 3.317782328969869e-05 1383095.44092823 361.74175431389256 54231 3944 897974 AION_20190207 28288782.544696026 8303.514151413376 0.10724880198772478 3.148372481991883e-05 777548.555238567 228.25546107320048 67622 72386 189694 OAX_20200314 1301294.580501425 236.36211542192135 0.025139453902130866 4.518998080105497e-06 244385.81245888476 43.930111672517796 12046 None None MDT_20210624 15118063.50754337 448.44723545448426 0.02494731455846311 7.395917762636493e-07 5054228.779594432 149.8384137492267 34135 311 464280 BAND_20210203 259002913.2850774 7272.7215033539405 11.366385497361323 0.00031995422127983143 394326808.71164083 11099.969030645963 54122 3609 278216 BRD_20210127 6286860.908278881 192.90092270004487 0.08304171459032543 2.549501958777025e-06 198510.38924017074 6.09455896596296 437 None None DASH_20210112 1212195960.0348294 34240.191853855766 124.9670156926383 0.0035155702444994324 2318140634.014599 65213.89816614512 328840 35959 87017 IDEX_20210513 60289274.22612252 1168.8908320974317 0.1012619072864502 2.0186858613529977e-06 2236795.6800942626 44.59117880693871 51674 1982 5142522 KMD_20200407 52711354.14541501 7235.607132807265 0.44248005406628077 6.0738561686247474e-05 2542885.846463436 349.0580590630853 99884 8385 155354 PERL_20210304 0.0 0.0 0.06012254419092198 1.186590284045732e-06 5348064.113548719 105.55043870796057 14827 554 400824 DNT_20210527 161555295.0260017 4123.467700080522 0.21481587179356545 5.479510825364512e-06 15917988.520083526 406.03512992580636 69103 10097 193568 AMB_20200309 2025696.3190787153 250.7516504101298 0.013867411095005515 1.7224899515760069e-06 336409.73589615483 41.78590983735703 19151 5510 509552 NEAR_20210823 2420253290.823279 49059.1049164396 5.492712357058148 0.00011146387921719017 387528581.9693214 7864.136376690322 None None 6382942 POE_20200629 5736828.035741724 629.1880588507088 0.0022796509910854613 2.499562088779553e-07 90180.8696383814 9.88803478088277 None 10263 752325 GTO_20190819 11085240.325602133 1074.1527581927576 0.01662995856257605 1.6117987858034278e-06 3648432.4161654897 353.6111600238698 None None 815582 AAVE_20201101 333092591.4960533 24143.916560815927 29.671283640749714 0.0021503310938466185 87225931.49238975 6321.41955665931 73202 1488 15035 ELF_20190807 48946464.589980915 4277.483918400888 0.10692212253983079 9.318874986469351e-06 15951061.23228688 1390.2262880146752 86222 33490 1285223 DCR_20200224 239499361.46357504 24070.97462534092 21.511668802157903 0.00216182834824005 143531661.08947986 14424.302301553409 40909 9737 202166 MTH_20190730 5756952.017955229 605.2338801318161 0.01686475059030348 1.772052869514953e-06 297889.521575452 31.300550736263045 19510 1999 1394829 DNT_20210821 143751359.4623795 2925.454664225157 0.19152121161481445 3.89569512332577e-06 14527495.196081055 295.5009093370513 70662 10251 337612 EOS_20210519 8865797096.91411 207782.78680897778 9.348098528574004 0.00021851114811285418 6503548749.443402 152019.99633454598 221740 86804 50771 REEF_20211202 401787106.4414271 7029.480576567444 0.02495491067946421 4.364035752779959e-07 49540018.90865558 866.3401624141172 None 14368 78929 YOYO_20210218 4555696.854654424 87.27707111289786 0.026097600343291994 5.005244812865495e-07 1143805.6449995532 21.936987294817776 9430 None 1496735 AE_20200718 51521290.50353236 5628.842293067824 0.14262731318036195 1.5579813576796188e-05 5213388.456714256 569.4815281019595 25369 6347 364540 SNX_20211216 1002907668.3299495 20557.233892232503 5.208225463171507 0.00010657366713457756 60081607.32937731 1229.4239690100371 178337 8535 47472 NEBL_20210506 64517508.02128457 1126.988934421132 3.653022395778349 6.372162164907787e-05 5996520.827167685 104.60051704067885 40237 6053 523823 CELR_20210107 27875689.48743328 760.5264592560567 0.007076496148334591 1.9213098049294376e-07 8005098.062860189 217.34306180912117 25993 None 415548 DOT_20201106 3937088642.1498547 253327.45624291856 4.2330784917447986 0.0002716885842441631 147107170.64734727 9441.672060483921 72288 5540 29997 CTK_20210704 52792499.52347359 1522.8364136059902 1.1674492086406447 3.36108024282384e-05 4391002.228698602 126.41672740742908 76378 None 123040 FIL_20201208 1360443036.0415494 70849.84723316242 30.535994423804752 0.0015905663041712568 147780373.59187344 7697.6200411483505 41031 None 31748 DUSK_20210724 37171255.96573907 1112.4744309439998 0.10344714846607159 3.0933378499458657e-06 8290983.0338607775 247.9218810010229 28105 13636 415059 CTXC_20200207 2165719.1673668995 222.36932419500687 0.10173362240164756 1.0451637550127531e-05 6850016.332260905 703.73870729374 17001 20064 421913 TNB_20191015 8303766.917295279 994.8593368751629 0.002882744518508489 3.45358481916927e-07 668575.4065352563 80.09665302129287 15474 1464 2032004 RDN_20210427 65283818.67002862 1211.06521117398 0.9773914154036384 1.8131364938657676e-05 2780792.3612715956 51.585844039795326 28916 4531 626244 RDN_20210825 26555592.573700823 552.3791053751286 0.5173745465455738 1.0785215934170514e-05 1118436.4701400634 23.314983158046577 30891 4706 1417860 BNB_20190626 5066153058.296499 429194.92785700224 36.11575407972535 0.0030552132349468183 325608881.61261964 27544.89252316541 992434 53476 829 QSP_20191118 8140135.699745231 956.972173705851 0.011409441396430776 1.3407741972373933e-06 280999.6567560836 33.02151929444874 55824 8433 411478 AAVE_20210125 3294460157.877113 102243.63361761133 266.1120458370718 0.008248492509319607 1495250298.2725036 46347.247626700555 None 2488 22200 INJ_20210106 62092667.65083103 1822.3091566151315 4.599511209804369 0.00013493521716373335 19065981.50317446 559.3360331607917 37213 1944 132125 BTCST_20210727 122928432.39536816 3283.4859593835886 16.872162022968645 0.0004508210027168538 56161880.173964106 1500.6348978881745 None None 1251678 HIVE_20210614 138957987.33520913 3570.305549267846 0.37433913687395887 9.589201856355103e-06 64952376.19461728 1663.8427164772024 None 168 114577 CFX_20220115 227974548.01722422 5290.056599183859 0.176819667314171 4.1007006581222176e-06 4996523.261883854 115.87651158694382 48051 2247 234014 PNT_20200719 21427318.146363266 2336.812516166571 0.7467575193484559 8.143948620243354e-05 1199219.3728150122 130.78383147888573 3593 56 538447 BCPT_20201201 2370113.906894961 120.83179579815055 0.0204886295487174 1.0402299024049695e-06 301226.74498329416 15.2936079395 10376 3203 3422416 ETH_20210707 270697947572.19247 7924918.429701623 2320.6549288317 0.06795119244769703 24748897613.709663 724673.4892482144 1416969 1033812 3687 GTC_20210711 89604320.02741371 2658.0052662084786 6.348119025688113 0.00018825397959373145 20735334.40652926 614.9080073073819 52303 992 25905 IOTX_20190805 24383067.067326643 2226.577245902296 0.005918879741924436 5.4043330294463e-07 1596186.7722076715 145.7425268012368 20386 1759 857691 RDN_20190902 8689884.174855802 892.3761850419704 0.1717763588882608 1.7638007105831368e-05 125725.0440834688 12.909455266586928 25570 4391 1279478 NXS_20190701 17955301.659700613 1655.4752132804579 0.3006132146308802 2.7737092046588043e-05 216488.4678792797 19.975038582271182 21384 3521 987625 BNT_20210624 673496109.307127 19977.92033069787 3.0884850493475624 9.156168445536321e-05 83829374.6221905 2485.2180355766623 122787 7506 35578 LRC_20220112 1866444967.8194928 43538.569544427475 1.495191263124141 3.4945944731311225e-05 222951917.41661155 5210.882096449147 174125 92571 49045 NAV_20210519 32460340.429487363 761.9822594176258 0.4567446548340431 1.0668507928929919e-05 583494.2744251215 13.629088435531798 51287 14053 505111 REP_20200523 136799122.7475039 14944.220416088392 12.436406936939854 0.0013585482959611644 10882451.840396985 1188.7948407137476 131842 10138 252584 BRD_20200314 6565703.517672919 1188.734061015563 0.10668830788831171 1.917799250508457e-05 437852.3502309552 78.70711662100393 None None None ARDR_20190522 79346860.52605237 9970.78965897424 0.07939888735836423 9.977801816958557e-06 1875409.7490693573 235.6766879786102 68541 6555 1228634 WPR_20201229 4467661.939828693 164.7579363641116 0.007320796778666362 2.697145552768343e-07 132141.3834184612 4.868384622591391 32510 None 7632831 RVN_20200927 103493368.7815016 9638.46723031454 0.01461836802302386 1.3609603898192341e-06 3977640.793683481 370.3157258461588 None 9165 236982 TNB_20210203 13352468.248295898 374.9748221798639 0.0038845408534058305 1.0934447490780698e-07 2941178.737064884 82.79013061026183 15928 1417 3046579 MKR_20210310 2044866344.7873845 37412.24398377569 2266.948094595027 0.04144109490543131 127310141.99206455 2327.301489300123 118383 22779 31879 NANO_20191127 106928966.78644139 14923.321923449826 0.8017366731792156 0.0001120239833063125 2197791.401717501 307.09004032515196 98074 48289 246161 GVT_20200229 4544992.810384282 520.0133083117533 1.0239639237012652 0.00011721243408243969 800007.9945977088 91.57635553532035 20777 5614 172341 REP_20190622 201186949.43436915 19879.06375748877 18.29463074554068 0.0018074540696453249 10082460.816984648 996.1165704391401 125689 9991 269417 TNB_20190811 8854859.150429707 781.7889126737281 0.0031955218003408897 2.8217364425829807e-07 286319.60785312636 25.282833984078852 15660 1471 836143 SYS_20190904 14247146.575911332 1350.5112239784628 0.025478156915692874 2.397458056566898e-06 2249816.8004337936 211.70453702156564 60582 4565 689818 EOS_20210826 5039108568.878382 102803.3715070747 5.2168887153816925 0.00010646362043111501 1578172899.137783 32206.552540230732 None 92464 70056 DENT_20190826 31590137.520567015 3129.1692834030787 0.00042998606442779723 4.2570348600263446e-08 567521.7267207325 56.186931957609715 46529 10106 273311 WTC_20200207 17260661.932420693 1772.2546138026382 0.5808496187076477 5.964805130747745e-05 21816938.727396812 2240.4041229797963 55096 19456 903430 IDEX_20210221 42475952.306479014 760.2153282935616 0.07397982715576007 1.3159594376212943e-06 4461054.96453558 79.35362392734169 50060 1933 6676020 VET_20190522 429562353.6331766 53979.14731716484 0.007748038783211371 9.736710175806738e-07 24201083.884815104 3041.272073100867 108707 55603 262413 OAX_20190729 5854923.5391953355 614.175892801187 0.12528973157137946 1.3142773296958986e-05 4065709.4320400865 426.4890401346911 12324 None None GO_20201030 6044092.934637284 448.9781854647249 0.005892404855179545 4.3820615886663656e-07 174995.7283687455 13.014076227150325 12112 678 697842 GRS_20210804 60928565.40546239 1585.7617450645062 0.7769275122646462 2.0305004274104677e-05 2450104.4288789257 64.03349104651498 41443 106850 8715439 MDX_20210616 933996575.2242613 23127.229739957478 2.0011653011399204 4.9582107321971535e-05 45790561.861984715 1134.5352386836923 None None 14688 HIVE_20210127 53073569.90015538 1628.87403451632 0.14257780017303975 4.376149638404376e-06 28377227.67479589 870.9840836179393 10693 101 147152 TFUEL_20210508 0.0 0.0 0.4056390984662703 7.077076461839834e-06 76646646.56390919 1337.2334676991281 153926 16189 19506 NULS_20190419 34708924.55204486 6582.818199537894 0.8695218294987708 0.00016485244213374877 5463041.513080398 1035.736774346994 29 None 664813 LUN_20200314 1334075.5294675548 239.80969434935108 0.4934886598241426 8.870814437660119e-05 1896134.2230038622 340.8437966367475 None 2149 1955482 WRX_20210128 20950107.06161468 692.5455333271877 0.08828756405591662 2.9041081058580977e-06 1705725.1815082834 56.10767925194005 53395 None 5221 IDEX_20210201 30262842.02829631 915.5590190967729 0.05330233977776904 1.6121143913851825e-06 43947142.09757358 1329.1690483219024 45053 1935 6164235 NAS_20200316 9343505.92626977 1729.5133635242769 0.20296936875551744 3.780949149422593e-05 1996757.687335401 371.95953881235994 23652 4975 1138524 DLT_20190626 8191525.483527714 693.9705825081513 0.1020216591223759 8.628009946956728e-06 461753.55319714546 39.050671046711 15076 2671 2617266 SNT_20210602 393539765.1068863 10725.478158387294 0.10135130219138608 2.7635401915374586e-06 37648569.80219825 1026.5614111776165 None 5979 113644 DNT_20200105 4134174.6610089336 562.8651164968505 0.005413154965740797 7.361116199109647e-07 114118.46640906266 15.518478540108463 59447 6165 582264 STRAX_20201229 49284026.693071865 1817.49081354523 0.4847206857727778 1.785819606107182e-05 658436.6776122081 24.258282404129893 142894 10292 267900 RSR_20210318 1071269890.161922 18202.930398940338 0.08166981465007916 1.3855897219647593e-06 242506403.00610402 4114.303197032857 63067 None 95725 RNDR_20220105 757426723.6069491 16354.032050120933 4.830815508926547 0.0001049928411605649 62485617.273145676 1358.061072101892 49216 4442 56156 RCN_20210112 22818633.401704855 644.1754366029543 0.04514339561946618 1.269973340531733e-06 844415.9454885174 23.755096938873002 None 1127 5449742 DASH_20200129 1073507657.251385 114887.6710847367 115.47023875573528 0.012357719780231053 1008966385.0923393 107980.41113450564 316273 33878 73115 QLC_20200905 4886309.166127077 465.7496478219797 0.02035275975609911 1.941084428959855e-06 611521.479720719 58.32205737625655 27686 5619 940522 MBL_20200321 4263273.826496702 689.4333323075135 0.0012103654280382352 1.9520473760070113e-07 2782656.788883092 448.77999298702235 None None 114904 DNT_20210724 89516810.6537688 2678.013169136387 0.11904451751595127 3.560224179431486e-06 5995279.485725589 179.29879874282966 None 10250 228003 GXS_20200325 28064533.97578062 4152.576637099273 0.43148044576730105 6.385441097204469e-05 33823746.024506584 5005.546370524729 None None 697464 LINK_20200531 1585515161.3756201 163607.52399956094 4.162920323577822 0.0004299573393686758 381073274.8335869 39358.248204745934 56786 15666 81846 CTSI_20210610 229904323.2585519 6124.965165409383 0.6252123687631088 1.669296122004168e-05 31889558.375680137 851.4405470618301 43372 3658 117994 ICX_20190130 93831485.21769626 27489.145766301313 0.19813138800300725 5.804021938421048e-05 5282950.43541627 1547.5771171744714 111641 23436 228207 STEEM_20200713 75097130.54093643 8082.613120907028 0.2088524673693999 2.247853787400742e-05 2468237.9759266693 265.65346113818555 11550 3865 224107 NXS_20210206 37797846.335151576 997.0083281633472 0.5482774807592374 1.4367268201343255e-05 796932.8904957244 20.883127573229043 24399 3602 387114 JST_20201201 33364809.950055692 1695.2651786520598 0.02327070575320729 1.1846351639895977e-06 51180964.92775585 2605.454747412697 None None 203333 VIBE_20210221 1187769.544072035 21.121418602211104 0.006347238163844913 1.1286926398776873e-07 5118.660333628438 0.09102217524323306 18625 None 825902 FIDA_20211021 353578736.2365973 5334.438138752205 7.1781070024752545 0.00010869556707650925 4786368.248419545 72.47830254126309 48940 None 516482 WNXM_20210325 68603505.1888086 1297.914357773603 40.998563209097306 0.0007775968176256171 24057660.854290742 456.28819781815855 None None 103505 ZEC_20211007 1470201874.1878135 26483.64717087693 126.00633320543758 0.0022714158233806568 319109026.4576875 5752.324297048184 79510 20793 150261 ANKR_20210304 213709779.02758795 4202.303516109609 0.03269960801781277 6.445626780721461e-07 78713505.25249636 1551.5717411155879 48712 None 5506 UNFI_20210704 25398801.45933783 732.6461158943755 6.105979191908051 0.0001757908256146907 3898277.5525842546 112.2312094270107 None None 196692 IDEX_20210523 27980353.486517917 744.4471603405015 0.04832216719671453 1.285695410358656e-06 720973.5588525103 19.182757094339163 51664 1983 4781331 DASH_20200301 801523600.4698517 93578.36641359312 85.61342012287588 0.0099954187169074 673360218.2592353 78615.21381985789 316810 34131 59708 ZIL_20200217 81713178.07788087 8196.819694311282 0.007874029663021136 7.914841528876532e-07 22309065.277428936 2242.4695344678694 68002 10534 247600 MTH_20190916 5351602.314329534 519.3121029363504 0.015398349141876854 1.4942345497542908e-06 841993.8687558359 81.70592300408768 19528 1983 708112 THETA_20190621 129253780.8238987 13512.40498846617 0.12895675785134478 1.3484364851324032e-05 5391655.016349304 563.7784681027268 None 3999 231431 SNT_20210825 393415351.9177812 8184.307998936443 0.10128446235852868 2.109075228939073e-06 56562572.882198 1177.818577232735 134496 6055 144059 LOOM_20210111 38049666.82772791 987.0275351379631 0.045707840516390666 1.1889578746404433e-06 17853876.54989161 464.4171957596612 23250 None 358251 THETA_20190706 113121215.9397466 10282.50052679912 0.11299573393105493 1.0283145796690482e-05 2706767.545832744 246.3286386416264 None 4010 256073 REN_20190117 13977802.048548082 3886.603450130071 0.018573474721216322 5.165838371539642e-06 306949.96936860716 85.37195940488127 5455 794 744296 TRX_20190719 1710956847.638386 159659.9701593075 0.02570378834825237 2.409069774399718e-06 970924742.4442018 90999.24954829433 446470 71281 80727 NKN_20210617 183809561.62122384 4805.597551411391 0.283051877025512 7.39566696042763e-06 9567341.800916633 249.97846472425928 28000 3222 104026 ZEC_20210930 1204129433.9230413 28991.816522741552 103.80752424811193 0.002496248309511433 255003490.36487308 6132.041355898217 79260 20709 157844 PHB_20211216 18032548.725320462 369.6225052302694 0.4859567739861487 9.953943234451509e-06 1520208.4272204882 31.138712739744335 None 418 210451 NEBL_20210610 31083748.51333988 828.1066743740454 1.7279458661961584 4.613557692693843e-05 1249680.1958691224 33.366043426759965 40276 6084 641234 BTS_20200329 43550910.10193395 6965.841670612535 0.016069284375753175 2.5702353971375145e-06 10830987.44095417 1732.3850058125242 13264 7024 131725 YOYO_20190729 2965924.639912773 310.8876912129393 0.016882450659489803 1.7709529658331217e-06 144049.97223821576 15.110704642874195 7600 None 1133014 XEM_20210513 2765950892.44197 54875.84872385252 0.3073278769721442 6.097316525549982e-06 285309084.6542666 5660.4685975482635 358448 21390 27944 BEAM_20191011 32635048.11835646 3811.403865747775 0.8125869716347606 9.490095169196207e-05 52211529.3335288 6097.715070519002 11663 1374 186825 AUDIO_20211207 893478163.4861825 17701.62969416652 1.7538163085186254 3.475033810493938e-05 33589867.516581774 665.5538823716787 112486 8670 21764 TRB_20210219 85712568.67679757 1658.296086383495 50.54134191423609 0.0009775803517400883 76395911.31902055 1477.664403637778 14481 None 359747 MTH_20210602 10838966.472038738 295.4036884271886 0.031172106900361183 8.499755683559914e-07 9896304.100078238 269.8443428599389 None 2053 450955 DOCK_20190708 6311993.064851734 551.942255201278 0.012266091861219523 1.072461619777112e-06 925766.3006011168 80.94255591030827 175 15243 279432 BEAM_20210707 39160287.78998177 1146.3354049090342 0.4277036735192508 1.2523608860936907e-05 6197146.671958404 181.45890666513225 21542 2512 188205 STX_20200511 59804947.14988983 6830.04287976698 0.09475562486204846 1.0794743569145218e-05 349713.3976516106 39.84002486226692 35967 None 78814 CHESS_20211120 84260622.5736463 1448.8164849924708 1.8972361801009072 3.261005147126509e-05 9370165.592727955 161.0561644765198 None None 43497 CAKE_20210804 3331936112.020115 86722.5551983276 16.276834882187142 0.0004237044784376004 229738867.98796937 5980.36337790799 1026627 None 746 TFUEL_20190708 0.0 0.0 0.009816158566476472 8.589955445278515e-07 9106418.463126415 796.8873804816309 70226 4017 256073 POE_20200414 2242255.222880924 327.2766274734976 0.0009586383518146316 1.4e-07 24456.87153807745 3.57169313 None 10388 753171 ZEC_20201129 802670938.2772949 45343.07206680709 75.7378705974905 0.004278162882817629 497168392.68945616 28083.273893689402 71831 16366 167113 REEF_20210511 484553191.63932204 8678.542936515416 0.037976499980078175 6.796640117863697e-07 139260697.97107905 2492.3435471105972 None 11102 30709 RDN_20210128 12240801.004649775 404.43001120877136 0.1835743126153883 6.050789166989129e-06 419714.95951778843 13.834216204280805 26795 4385 1545077 WABI_20200610 8455545.927591905 864.99876589728 0.14261671100352213 1.4604474457607867e-05 3422057.93228815 350.43128756014016 None 7677 1240690 REP_20190725 129545006.573984 13178.424813079757 11.782336974590878 0.0012015580573205742 8227249.22242094 839.0116166345317 126159 10042 220680 SRM_20210509 538423868.6315415 9180.05372382851 10.782909611434498 0.00018365583137706153 284128026.15163904 4839.303188173602 75706 None 40155 QKC_20211230 137113469.2091488 2950.677924213811 0.02075260169440394 4.4556695490122913e-07 2857277.8382226336 61.346938780544654 78645 9623 488675 SNT_20190512 83533682.38576755 11440.52820997537 0.023589410720219344 3.238653484230393e-06 13110025.956684016 1799.9106356044988 111448 5757 311029 ZIL_20200502 62409068.232117966 7043.0211027781315 0.005933117729516239 6.718103197920913e-07 22138017.720384274 2506.70043008012 70174 10576 175667 MTH_20190625 9250420.50795746 837.5892649497289 0.027084133278203654 2.452361950981203e-06 2690139.518139731 243.58157336443077 19537 2009 1893104 ICX_20200801 208754520.2910383 18419.01812160646 0.37396471473434106 3.2991479890069634e-05 18310028.77786842 1615.3260519264982 114459 27800 118730 DNT_20210825 141224272.65797397 2938.8188895742564 0.18905869224223634 3.936823036215095e-06 12501385.29509283 260.3199092864937 70780 10254 337612 ETH_20190220 15072819715.874296 3850367.127436375 143.65523417640586 0.036693425961207685 4958547530.735177 1266546.9360533992 439395 429547 29840 ADX_20190920 7441943.6487644 726.0437617520932 0.08084869634284698 7.883614107793457e-06 349898.8670153607 34.118888356661756 53565 3842 407203 TUSD_20210626 1426798279.031959 44842.101768404405 1.00314051176672 3.155605413720728e-05 88603420.19859524 2787.221024105942 12699 None 726197 VIBE_20200109 2351959.3511199267 292.274918618062 0.012514999139380437 1.559640394397628e-06 1243239.0309693476 154.93455420945 19684 None 1894870 MATIC_20190513 11260147.515432395 1619.8247459207405 0.005218062375747743 7.498792632837668e-07 17282002.997800354 2483.5685629766563 9106 96 593763 XLM_20200520 1407630964.2455223 144255.06990489745 0.06958791693512538 7.133630267897732e-06 442133346.4309562 45324.18789726342 283259 108641 77209 GAS_20210203 27237592.493141737 764.8281623559957 1.9518637005155097 5.4959285267585216e-05 4180904.9541634494 117.72315248848672 None 102451 149199 FTM_20200502 10494222.129143897 1184.2994937515257 0.004934243183779811 5.587071826901609e-07 2119280.252369261 239.96731718137406 21631 2339 305591 PAXG_20210902 329619845.63762516 6776.1403622266125 1821.8877252800123 0.03744664809747447 7042192.3971659485 144.743551906226 24741 None 43840 PHA_20210325 142619832.5366298 2698.234264315049 0.8052147132798475 1.528342532612417e-05 35333421.6881243 670.6480929630314 None None 130514 MBL_20200422 4087112.9955048775 597.191926623041 0.0011613420231773282 1.696514541265447e-07 959347.7622228743 140.14367828426185 None None 95998 RGT_20211204 266908829.01206148 4971.471309930455 23.75611039037049 0.00044205711590828204 16425273.523555929 305.64385004588127 42482 None 54346 AKRO_20210217 111297408.62372525 2263.079846123785 0.0427129359669007 8.679800384500277e-07 27784032.492905177 564.6061326755137 29834 None 165746 TCT_20210702 13214849.835489487 393.4654348258476 0.022911584669218447 6.81352674617837e-07 5032270.808997215 149.65141977796156 None None 405222 XZC_20200127 47051552.18614948 5482.7817098929145 5.049221713800593 0.0005875474400069884 29346244.705498587 3414.845282671474 63125 4082 121146 LUNA_20210731 4513488468.318355 108133.39155453752 10.857457707512435 0.00025992544565777716 426563348.0202009 10211.844367462596 94154 None 19705 STMX_20211225 221660671.87006384 4356.808606543507 0.02378920660450549 4.6782408000917977e-07 13204270.442541474 259.6671580801876 81655 5795 86095 ADX_20200113 7136777.37441577 875.4533902822126 0.07754444370197758 9.510465669846707e-06 83229.35627241996 10.207693778736905 52804 3797 215499 POLY_20210813 251023072.80708864 5646.688851901908 0.2902479666214419 6.528596672179048e-06 18644192.485398952 419.36697931943127 48244 5881 197469 BEAM_20200407 16641853.529575162 2287.413763698949 0.28730961654273707 3.93921583969562e-05 82313353.33809257 11285.736592796737 14948 1479 257482 QKC_20191108 18226598.961278062 1976.912231985791 0.004885880370548589 5.299374112020009e-07 9371346.778256275 1016.4447089374257 None 9225 304095 FET_20200113 13450291.891972473 1648.9343339847317 0.03959516872400702 4.8483305872437785e-06 8615760.688531017 1054.978610389165 16344 342 374290 AMB_20190329 9268552.019476634 2302.1235692009172 0.06410361507206068 1.5921646523019117e-05 3075155.2506919987 763.7874221272108 18589 5694 634689 BEAM_20210616 61277189.04837333 1517.2671314843324 0.676172257634124 1.675326142575905e-05 8665325.983760923 214.69746785133873 21044 2465 161429 ARPA_20210523 38940995.53291839 1036.1039910371755 0.03965420548799836 1.0558666551446162e-06 15678674.775276018 417.47375059831484 41790 None 478045 CTK_20210821 119803978.57974197 2438.4064194106727 2.141970751162959 4.3569403823500656e-05 24199124.622208685 492.2296125041787 83104 None 88969 IOST_20210112 185646006.14473918 5240.830813862286 0.010408676173087817 2.9281672476470433e-07 206145876.2680429 5799.292754311056 194074 52149 596701 IDEX_20210724 25059008.86034573 749.6864589264159 0.043207649669978 1.2921162319034724e-06 20707308.7493599 619.2479794307299 53180 1975 9034089 SAND_20201031 21683852.115747318 1596.553665532526 0.035704326192230726 2.6308019796949117e-06 4318853.257796808 318.22607824751634 57275 None 72888 AST_20210511 64855754.46791509 1160.721032539034 0.3764939926114513 6.738099023501431e-06 4406257.806904407 78.8586325642613 42978 3658 191334 ZEC_20210814 1648714280.2939317 34591.20376238762 144.27868261943027 0.003024039967526172 284002509.07863235 5952.611451248709 77468 20220 132489 STRAX_20210127 53958231.5227784 1655.8112876611724 0.540133112446569 1.6577552210301168e-05 649624.1276150995 19.93800721424197 144496 10289 214690 ZRX_20200629 232040661.87044898 25450.346341775603 0.33284822407151426 3.648405183510483e-05 34378584.662344925 3768.2942979111263 154144 16094 84197 NEBL_20200329 5916304.422329415 947.585079755731 0.3663829247051991 5.860188543336635e-05 142744.09068098318 22.831503010430364 39541 6011 841626 AION_20200610 53484566.16132388 5471.448457648245 0.12438755140931865 1.2731934227376305e-05 8791720.858047483 899.8940041979727 67493 72563 450836 VIA_20210703 9975960.998251878 294.83930325771684 0.4299313891838089 1.2722478942066033e-05 249836.9112570336 7.393144400209178 38228 2301 920370 OGN_20210220 80820024.8727034 1446.8319309282965 0.3820735756903407 6.830812229104595e-06 36468275.12838522 651.989448030343 72812 2820 162285 DEGO_20210722 28078781.963897537 872.5279385817902 5.197082402755746 0.00016091849874396607 10663880.977590581 330.18828348542223 None None 198268 BNT_20200309 17284489.61163302 2146.661856462235 0.2462360994539779 3.060897351353703e-05 2415286.8309392757 300.2380674472659 748 5029 123445 STPT_20210221 44787918.71377062 802.08327989841 0.04489234194569399 7.984657559995399e-07 14050795.562313745 249.91075570593935 20617 None 1294175 KAVA_20210217 268877120.04500544 5467.246712947686 4.598805523213931 9.346087098639671e-05 107339950.90623401 2181.454565254729 None None 92615 NPXS_20190804 134015236.0551816 12420.340928626316 0.0005693333898702142 5.275481090864107e-08 2158567.853909126 200.01433429436858 64000 4687 187000 NAS_20210124 13708674.230278868 428.2765876367894 0.3008820699893455 9.38843093047297e-06 5575955.942313543 173.98669597568494 23376 4853 953730 QSP_20201224 18853919.0331611 806.2664491266526 0.02613554001597555 1.1209517488071564e-06 469028.6772045317 20.116611925055043 58158 8187 269724 SCRT_20210210 126025547.49745351 2705.1619973370484 1.8063751240555677 3.8767955000754614e-05 5279368.384507356 113.30443673486486 66262 None 226191 BAND_20200422 12536661.98544294 1831.637382623013 0.6296816077455905 9.19853051545594e-05 8079112.394432739 1180.2149051813128 12389 1093 683896 CTSI_20210110 10794495.797911111 266.7964793580016 0.05240835065630086 1.295695120048536e-06 3457854.3365023327 85.48876149579968 None 172 553409 SYS_20200913 42545842.270868465 4080.2394782109186 0.07161740637765185 6.858627893625776e-06 1397862.067675395 133.8699103154287 59096 4492 424365 MBL_20210727 24071918.6330815 642.6056297020846 0.006848067705041748 1.8352694201157531e-07 17584487.21257511 471.2609898102469 None None None WAN_20190324 44637357.324757956 11155.237787222692 0.41998632008339476 0.00010485896700207128 5100138.136340857 1273.363419166556 109028 17236 498965 WABI_20210212 11160363.525642145 234.01872805831823 0.18847174552040988 3.948638319999788e-06 2806075.2435301566 58.78958782289214 40901 7428 958104 STORJ_20210727 123227748.27337095 3291.4808509126833 0.8550872719545749 2.29172026778123e-05 59675817.42459269 1599.3721901127365 103679 13687 53900 ADX_20210106 41910108.38183314 1233.726822147059 0.3766443863881461 1.104956369330106e-05 3871574.506724397 113.57983990056415 52892 3745 12195 FTM_20190801 47599279.45758178 4728.027698688618 0.02307558844114644 2.2888155704999302e-06 9810188.02648258 973.0504234729609 17955 2042 402967 YFII_20211111 150398059.5032227 2315.3729366549833 3785.313607174708 0.05827477237242126 36998753.47448676 569.594533119362 None None 542811 YFII_20210111 74998976.05067721 1951.0390655591868 1887.5762623083249 0.04907659307565418 161822096.2492367 4207.341089658133 None None 153054 HIVE_20200807 84465078.65669969 7175.03697493495 0.23205919265292965 1.9719710429408415e-05 6355849.7339810105 540.1014924428839 None 90 144109 MKR_20200927 474045016.7399955 44148.40693019389 527.0109358105096 0.04906494577798951 29750648.212188337 2769.798200005306 61489 16715 27288 DNT_20200417 3081262.3101439406 433.97814147902915 0.004096360284314968 5.776961690086678e-07 30774.28658491044 4.339996052630082 58527 6064 716172 ENJ_20190716 89755616.80168119 8195.347242069069 0.10236906907554713 9.361091175584442e-06 8862784.773227518 810.4531679440875 46945 12658 21300 POA_20210110 8139538.696489987 201.17662820731104 0.028290394341126315 6.999972718939174e-07 750127.653398394 18.560621835791515 None None 255706 FUN_20190213 22807504.032376476 6282.66498644126 0.003886622534293194 1.0696041514878912e-06 1026700.9711385401 282.54959450703126 36411 17846 509158 STX_20210112 456302548.5822144 12888.911794764146 0.49569367798079655 1.3944847246587723e-05 15678664.69796502 441.0719643111118 47611 None 83877 APPC_20200127 3247579.0395009997 378.43102154766217 0.02907411476787989 3.3831791651468435e-06 26557.625256150684 3.0903504770383923 24948 3243 1366689 DGD_20200318 43258818.553344086 7967.905770951266 21.48411893210348 0.0039943373506970276 609537.8722661069 113.32556375950608 17622 4715 334920 EGLD_20210821 3040861794.650502 61891.57495868208 155.20338697951144 0.0031569614283546875 143353790.15875915 2915.931120751879 308521 10086 47013 BTG_20210217 461580887.37540716 9380.460617449486 27.668543053551083 0.0005625671804307575 108293072.06433795 2201.855301650965 84388 None 210051 OM_20211125 96425049.29964976 1685.5340666792576 0.23793899655970807 4.160308492336102e-06 25475057.35024423 445.42550388697975 55266 None 82416 SCRT_20211111 1162099334.544919 17894.3676301091 7.792498584523816 0.00011996524683313547 22701082.04929873 349.48237486138737 None None 80311 ADA_20210430 42218008953.63177 787804.6243585541 1.3151260010143138 2.452900149385636e-05 3877408673.9024854 72319.2782144762 361128 363472 7301 ANKR_20200913 48663924.76595345 4666.8925566903445 0.008347277788182849 7.993988496592476e-07 6157179.286195483 589.6583489168767 None None 5082 WAVES_20200412 100047789.227878 14539.69326150371 1.00068496524438 0.00014539528175216642 51719937.8262056 7514.687632594992 140366 56868 67847 WPR_20201124 4943211.731253188 269.9149786355398 0.008239435578052024 4.48955483247656e-07 174721.77518897096 9.520348605286161 32578 None None FTM_20210318 1103614451.122732 18761.645403518436 0.4332576107173771 7.35054064889352e-06 166993706.06917423 2833.173599739859 None 5529 62637 PROM_20211216 194721076.1029431 3991.516404887736 12.012019726706304 0.00024579676917220683 1662652.6589080272 34.022142912949654 None None 741894 GAS_20200105 13191843.167045338 1794.926924055232 0.9468642033383375 0.00012877111640071973 779136.9222861127 105.96063401496346 323308 98679 215815 OST_20190803 9021529.79314819 857.3737976673139 0.013883513314406733 1.3194392534598906e-06 234564.98960707715 22.292214352820256 18075 758 571534 BTS_20200801 71360320.43271494 6300.483866738277 0.02633031731126198 2.3247336673904875e-06 12650550.703305386 1116.9315121935722 13120 6953 129258 DLT_20200607 3568421.6003980413 369.0382344925894 0.04351213933303845 4.499928785508111e-06 62772.645463328285 6.49180754136 None 2563 4273653 RLC_20200107 27707281.17745481 3571.8519830937194 0.39454620578116467 5.081022707032019e-05 546839.5241797916 70.42277935378766 27626 3527 255946 ARK_20190601 88047107.01847292 10270.288375725906 0.6207103957315121 7.237789403482333e-05 800817.6912577023 93.37929314161683 63470 21751 216267 GRS_20200711 14537199.128064103 1565.6120169571561 0.19349121405541259 2.0841041470867284e-05 754721.434749499 81.29144673236789 37685 106868 None ONG_20210131 0.0 0.0 0.20727277393381183 6.066910969626568e-06 5187092.853391719 151.82713067159972 96600 16666 259663 APPC_20191030 4337016.4245292535 460.95169475289856 0.03941195005032696 4.188825540633426e-06 99843.02762694468 10.61162981389816 None 3278 831430 BCD_20190421 208338426.26243237 39235.30758028182 1.1074288047338348 0.00020850478682782138 4068663.0271793767 766.04086287982 21202 None 3139253 EPS_20220105 157856110.25028193 3412.1783519903515 0.286469542829499 6.227258016285104e-06 21423060.225906387 465.69321892811234 29286 None 83602 CDT_20190522 7005337.346095981 880.3381259588997 0.010364774071200039 1.3050476819230335e-06 1021334.3307018934 128.5980757124787 19818 290 386642 LAZIO_20211120 0.0 0.0 6.883756530165017 0.00011831929894590093 81868753.30665074 1407.1754941317802 None None 81859 MIR_20210813 264708411.091284 5954.528258268094 3.4080972612651643 7.665129519170112e-05 50320334.975760326 1131.751401056094 54035 None 15673 SKY_20191108 10098372.38902822 1095.3664772717862 0.6311489165217261 6.846047448947727e-05 246297.25175531648 26.7157659297713 None 3804 1279974 MATIC_20211216 14550346856.315825 298247.6782099822 2.1250528454767332 4.3484038123671076e-05 2703718559.2497463 55325.02457825595 None None 3692 RCN_20210131 26345584.1423391 770.1373061786044 0.05131446875069596 1.5019836298595135e-06 1600664.0921089922 46.851722755466305 None 1130 3103198 STX_20210212 587734922.2756982 12330.58289555213 0.6439367329558225 1.3486666928597839e-05 24932420.93949886 522.1867921575588 49714 None 62343 OST_20201226 7669914.167942723 310.5843390444087 0.011145500740684966 4.5200083041788303e-07 977079.9177266309 39.62504193148815 None 736 712732 ALGO_20200418 138769183.8335332 19712.53012602083 0.19003522340567655 2.6995006837276433e-05 89635037.92546652 12732.894556563677 16810 844 305108 QTUM_20200106 156356979.33245033 21292.054818475426 1.6256104714200519 0.00022132618587669513 273451682.08858126 37230.33216276177 180025 15225 156080 PSG_20210806 52080494.87691762 1271.1416191692874 24.726668095589087 0.0006037912456046176 44894495.67146138 1096.2618723020873 9371306 None 33865 AMB_20190704 5512642.821986086 459.7544791661131 0.03817702153392973 3.181043327789894e-06 625355.3633633605 52.106802107562864 19367 5667 665326 BEL_20210204 48162624.21818251 1284.258119855688 2.15260410147809 5.738752111606062e-05 15597420.132339349 415.82066882901177 None None 421105 ENJ_20210221 516314585.5929434 9240.76426485258 0.5586859148236544 9.96616263686366e-06 91673576.25187354 1635.3263008563167 82948 17878 59943 LRC_20190325 48446119.8163203 12140.633832448944 0.06120462554020679 1.533807048807382e-05 2381605.705637223 596.8378348114488 28813 2466 678788 CELR_20210513 247169323.02920517 4795.0445442993605 0.04202001769226404 8.376813935493257e-07 48775780.45731196 972.3595083697261 50202 None 140241 ZEN_20200905 69298585.98852059 6605.3519991033745 7.022977985988907 0.0006697958103419245 3191439.7821900863 304.3741557120182 69834 6096 78884 TNB_20201101 6495939.88855816 470.7634486078416 0.0018915478504896342 1.3726033451050527e-07 556001.4769272237 40.34629559681019 15816 1429 972434 VIBE_20190325 8444630.639332771 2114.7272697156886 0.042220153214785956 1.0580502377230548e-05 271417.69643345074 68.018123186982 20603 None 1285691 CDT_20190512 5624478.256878662 768.2899006017798 0.008307723326299912 1.1406475082605997e-06 317602.04747284076 43.60665008203986 19840 290 447254 KSM_20210318 3088626172.5566583 52507.20391943296 348.4949587428337 0.005912478619665083 328856780.5708115 5579.302182938098 42081 None 84869 DENT_20190131 19741941.196583666 5708.447181752114 0.0010550490056694785 3.050708875612765e-07 2745370.63001445 793.8329407283929 42248 8796 245575 LSK_20210722 328842691.2622129 10218.823319436013 2.2878828394247095 7.084026060989313e-05 21827879.435144763 675.8618234733552 196423 32591 298346 STRAX_20210725 153576986.40705806 4495.302321389051 1.5335427115265607 4.482167322740825e-05 9101809.215728061 266.02344713273436 157539 10764 180987 YOYO_20190520 6030921.964179245 737.0444586723777 0.0206828993172271 2.531250492227987e-06 517145.8665847488 63.29024327145503 7450 None 1390874 NEBL_20190626 16677884.543195434 1412.9189092702002 1.0873476808222144 9.186327862811057e-05 467436.27519210515 39.49079907577365 40255 6148 698724 BAR_20210602 47995243.03050478 1309.0082702464692 16.25610863564468 0.00044322651020788567 4002292.7087045843 109.12342368455445 None None 34079 SKY_20190201 11585830.266413366 3376.533908856682 0.9235614750458473 0.0002691595307110756 319073.42052382213 92.98964330047043 14324 3478 287738 NCASH_20190830 3178363.6862098523 334.9290484496915 0.0010902454147409138 1.1494375611701306e-07 687206.2964589951 72.45164425757271 59769 58900 801228 BTS_20190410 185276753.19323248 35804.52205706232 0.06838338438040918 1.3228683880739283e-05 22375348.36036601 4328.484365940486 13790 7204 195741 ONG_20190312 0.0 0.0 0.4966385675545963 0.00012844121854503344 9005778.753369268 2329.0845145701687 68685 11181 256269 SNT_20210420 814668774.490623 14553.570668358678 0.1909977991562839 3.412941819083033e-06 33765413.55776065 603.3545542355696 129364 5917 113848 ETH_20190622 31419443062.588604 3104521.01203383 294.47562296593696 0.029093299041898477 13984421402.12714 1381618.4500510325 443911 439729 37001 POE_20200105 4279128.07641259 582.05370985264 0.0017002539499696827 2.3121020870329355e-07 76606.65909474096 10.4174094920779 None 10552 664429 KEY_20190819 3897372.918704983 377.9957608987898 0.001490707308892863 1.445797092697966e-07 29090.890673328788 2.821447571135237 23874 2826 821396 QKC_20190909 42187227.14851222 4060.457273667489 0.01114486081399896 1.072283594127021e-06 14554619.554944718 1400.347660504125 51049 9239 312593 RUNE_20200905 173829932.321579 16568.99451245006 0.8279902093440916 7.896860849945503e-05 14477174.21762244 1380.743745599929 16010 1824 320641 WTC_20200414 6491216.780833797 947.4494761132181 0.22365067602771818 3.266205090231468e-05 9080625.464492083 1326.1388537423295 54599 19631 978850 PIVX_20200217 24002778.492343113 2407.8314956362187 0.38479887726336803 3.867933274791111e-05 933282.4126920335 93.81197067158121 63924 8515 215507 NBS_20201208 0.0 0.0 0.00551359000240271 2.873382957919137e-07 1411201.5606824434 73.54414297919813 None None 790583 EOS_20210304 3681485644.744008 72423.16922160081 3.8438182374077083 7.586234806800572e-05 3113511361.514405 61448.86881544886 201894 79051 56230 TFUEL_20190922 0.0 0.0 0.0043885798586885405 4.3945429626175203e-07 253920.47232021773 25.426549376562757 70011 4029 338625 LIT_20210427 143764868.50508848 2667.864016854808 7.993377777248453 0.0001483388635265736 64661962.750471346 1199.9785741522094 None None 89808 EOS_20200207 4416829355.08776 453502.08662799676 4.581083041121616 0.00047063663526996063 3765503339.0818467 386848.220321583 1427 69941 83653 MBL_20201226 5526057.028376521 223.76436052208663 0.001565748166874374 6.341154461824963e-08 3687083.0049878024 149.32390369564004 None None 994623 NKN_20191220 12042813.301648377 1686.449691355325 0.018638181324012532 2.608328267636524e-06 2337468.673097632 327.1180545335965 12160 1000 277650 CELO_20211111 2126520581.031109 32745.68834774117 6.143408756488479 9.457756583141202e-05 93613262.23180196 1441.1729419876979 None None 43938 FORTH_20211216 85002134.90143798 1742.3426140691095 9.830447377793027 0.0002014398495716176 10577538.568393145 216.7488107274175 35897 None 98724 ONG_20191024 0.0 0.0 0.12377076541095308 1.657831181355935e-05 7632741.496213681 1022.3574856015713 81302 16270 327053 NULS_20190621 70671966.37510318 7388.164778659143 0.9970831990770271 0.00010432551245708052 19856823.188575186 2077.633297637895 21170 5318 640711 BTS_20201106 44264845.03730754 2848.6862778333093 0.01621116968935995 1.0404696606579302e-06 18357941.33369798 1178.2543367236242 13134 6910 90759 QTUM_20200105 157737432.88921654 21464.64866330935 1.6389429635128763 0.00022289206243574126 271320352.60385484 36898.87587243705 180025 15225 156080 ORN_20210508 402517266.8983009 7024.4643676811 15.911081885346917 0.00027763271851504226 25031053.64523757 436.7672494491498 64220 None 51666 GRS_20191203 16049772.058368698 2196.4087096452 0.217110208598293 2.971149692244572e-05 1540744.0905640237 210.85057953110615 38214 106932 None UNFI_20210104 15265430.624265369 456.70174495512384 6.209440728944421 0.0001886352969713317 35442933.96366597 1076.7134538552855 None None 133722 QTUM_20191022 163795287.05071634 19952.32381385144 1.7057614753282553 0.00020772420121620023 170368296.5005957 20747.108441020835 177426 15281 181813 XMR_20210508 8206441906.631104 143194.33413085502 458.3485190195494 0.007997730530186794 1683496565.2638183 29375.35809273722 403771 216826 36296 WPR_20201014 4666057.130044733 408.41912570895465 0.00765663762211533 6.702869601446653e-07 111759.45331857765 9.783786033698055 32772 None None RVN_20190621 242404598.1969208 25341.37942445071 0.06354880610069008 6.649156026926466e-06 32166878.876054384 3365.6430335960013 25679 6683 184956 COS_20200129 10498212.40329419 1124.7951189447658 0.008029412663975243 8.587242660259681e-07 4232029.796980161 452.60429788554467 9750 None 199274 ARPA_20200208 0.0 0.0 0.018507504276883354 1.8878222946341072e-06 2674753.7444715495 272.833099262143 12259 None 1191849 STORJ_20190920 22496056.98435823 2196.447127046103 0.15654497361610523 1.527609831943319e-05 4538420.408517006 442.8718136006341 83404 7805 159770 LRC_20190510 42641305.191748455 6899.076199948644 0.05340886685636273 8.65042575419959e-06 6416404.8376971595 1039.2400536536368 36026 2466 903966 DIA_20210203 49278222.57508111 1383.7078198355632 1.9247407526295681 5.414051059463501e-05 33242616.66102709 935.0725478591809 23361 205 235170 HNT_20211021 2240835994.753044 33806.78266132643 22.652565130643076 0.0003418718925650042 19784625.487735264 298.58902601861143 93704 59957 2574 SANTOS_20220115 0.0 0.0 3.3816701040260315 7.842576016440906e-05 3670892.168167635 85.13323296301832 2977331 None 517558 WRX_20200518 24823542.53744881 2555.1623375732165 0.13288179337051123 1.360606179534037e-05 6050122.447036699 619.48546746529 None None 27588 EOS_20191012 3154496062.309446 381686.104107159 3.0638552691837027 0.00037055450440729506 1926159852.31879 232957.22114033808 None 68567 90750 DGB_20210127 339231017.95917374 10409.261559894045 0.02440061416509207 7.491345032573811e-07 15664641.987954471 480.92739448907673 180392 24027 218245 ALGO_20190915 119177881.16672635 11512.669922814477 0.3217961256828206 3.108678229832205e-05 46684312.12905123 4509.889747190974 12037 614 192636 POLY_20190920 17274742.472372286 1686.653732264532 0.03370948577440114 3.289466324547061e-06 4444772.514337201 433.73338899425374 35228 5060 289751 KNC_20201229 171141798.1781383 6311.3480548070565 0.8556623078243748 3.1512472131172285e-05 32201460.659675997 1185.920686633024 127164 9309 138116 NULS_20190601 56120386.47103996 6542.012041175024 0.7827086869336025 9.126553280699515e-05 11681012.726159574 1362.0314530489936 20842 5315 664729 RAMP_20210509 166447922.7863917 2838.297892946366 0.6061681592870656 1.0319073653398183e-05 12696592.574783728 216.13981519662013 26183 None 97168 VET_20190922 229561084.77098155 22987.300722667722 0.004139835666547531 4.145487556664947e-07 37366122.26040965 3741.7136173555114 113658 57494 165877 ADX_20210823 76256998.43114544 1545.7275124941873 0.6004898056169587 1.2186803878296877e-05 14788042.271413319 300.1199507800409 None 3894 15083 VIBE_20210110 3710898.9099786575 91.71848161980301 0.02015859086392376 5.000896512530191e-07 541007.5356607104 13.4211895891 None None 1637707 WTC_20190325 33015387.141408432 8271.12358616884 1.2375980676073866 0.00030992265905943394 6526602.113954728 1634.4093730610632 54792 20325 924295 XEM_20200523 364409187.41591823 39808.81681853117 0.04049525548061967 4.423686086075033e-06 16813294.21895337 1836.6777740929485 209142 17898 220843 ARDR_20210729 165089226.41048428 4128.572388334441 0.16473721266183428 4.117531687384316e-06 13298754.13552432 332.39630967994856 72299 6974 None AE_20200523 43346780.31266368 4735.29234917573 0.12126213055358333 1.3269939062064301e-05 25087773.85006471 2745.4014594119412 25271 6343 522422 VIB_20190321 4900529.759571798 1212.5687525795965 0.029049456040153018 7.186360573996946e-06 986737.8479141579 244.10281408778997 32703 1122 2263235 LTC_20201111 3813314839.2249413 249627.93739513698 57.907418791609935 0.0037904338928574656 1920408182.6811905 125703.75982308951 134624 215770 153870 BAND_20200612 24359286.73147546 2619.605363175641 1.1890854456517121 0.00012786392297327981 7441845.008060353 800.2313882230687 15067 1190 520797 ONT_20210711 604958376.0476755 17940.352485417763 0.6896434839025396 2.0460833686727364e-05 124899749.91579919 3705.6146693066676 None 19634 137199 NAS_20211104 20013283.77893636 317.9002149819435 0.4407158184217908 6.98904534979573e-06 2580602.1535763294 40.92420722658073 None 5203 447495 WABI_20210218 13401757.43105385 256.7872745146765 0.2264477478723375 4.343029246037257e-06 3111505.204630036 59.67539191656564 40980 7433 943415 USDC_20210909 28637608634.323593 617894.4603609208 1.0006606733049996 2.166337156860584e-05 4039480941.668402 87451.00004244084 None None 29834 BAT_20190719 299376885.1491444 27894.698381252325 0.2331927750489341 2.1862228876042388e-05 24587960.137474444 2305.1640944178985 104265 28842 42959 TROY_20210127 6962683.578185371 213.78930857285127 0.0036753169251308067 1.128013758308265e-07 957289.2138528568 29.3807425564448 None None 965237 FLM_20220112 0.0 0.0 0.33552066912214024 7.841864147103016e-06 4121299.852956089 96.32394225046164 30570 None 31025 STRAX_20210207 74773475.61191553 1906.8435524416989 0.7505719469735253 1.908711432990819e-05 3003742.8975855396 76.3854608942468 148058 10382 249759 QLC_20190725 5119913.853982992 520.8413782867528 0.021332974391595795 2.1701724095281366e-06 288303.17657743895 29.328662187592588 24945 5766 940522 XMR_20211204 4049624198.761516 75519.2169551128 224.47853577816915 0.004186176892755164 200171241.61507434 3732.883517519037 458835 244215 31566 DOCK_20190105 4623419.340133969 1213.470312602789 0.009008936006986585 2.3664003612651347e-06 727638.0687412606 191.13056052393244 99 15428 156743 XVG_20210702 357665706.7480549 10646.344836636072 0.02175101063954279 6.466709331947395e-07 9079579.518242804 269.9414871970904 321098 54432 100558 LUNA_20210427 6606180067.721449 122591.77276619367 17.630713884906474 0.00032706334692358946 547008001.1555616 10147.420508314244 60993 None 23843 QLC_20200713 4834267.122865346 520.9441189677931 0.02023718593788989 2.178996764692897e-06 273362.30603860616 29.433715847412962 24778 5643 940522 BCPT_20190509 3420454.1443015346 574.2051864231659 0.04073426219328907 6.8390389318271395e-06 291105.2597628859 48.8748315933908 10737 1865 1145743 ONT_20200127 411066882.2371516 47900.43853507569 0.6455201465282302 7.511528133711425e-05 89359135.16753012 10398.182944793189 81731 16233 348769 ADX_20220115 69495797.11254531 1611.3342148911556 0.49601251578601957 1.1500579472538699e-05 7552638.3071698705 175.115978558127 453 4064 14779 PPT_20200207 16521468.548251068 1696.373126830832 0.4545817684895542 4.668147447636735e-05 3117350.257716366 320.1239393586187 24135 None 809684 LINK_20210819 11532629617.270151 255853.1427765505 25.691785250059684 0.0005710276486741909 1439444167.5094185 31993.199786253543 430181 64260 31110 BAND_20210603 303510525.67302966 8065.032135309254 8.630373155193341 0.00022919253042368357 82876950.07323413 2200.921971682265 95734 5313 189880 AVA_20201030 16423642.917806959 1219.2661216005072 0.42423316547796824 3.1549097289277416e-05 816526.9529422171 60.72294760044895 38417 8978 72238 ZEC_20191019 274493233.5331542 34501.204567452645 35.849369393275374 0.004505179791716223 140923042.721909 17709.757661092855 139 15332 189800 MTH_20210819 8380141.632551943 185.9147171769266 0.024112469338555344 5.349388010462177e-07 292247.282433226 6.48355042691002 21828 2055 1319394 GLM_20210813 414453300.6713823 9322.071088381897 0.4144894518066602 9.322255466525184e-06 8876651.385708874 199.6441924979603 159037 21084 227363 GTO_20190712 16412540.48242185 1449.0994048466691 0.024814314457489772 2.1885874635509336e-06 10745263.641798683 947.7170662634229 17476 None 1222950 TNT_20190213 6100229.11617645 1678.8462051409103 0.01424028379574558 3.918946728657599e-06 195802.95585939416 53.88525708707515 16972 2511 1261592 RCN_20191102 21423684.007956825 2320.3631841277524 0.04207258725734631 4.556632836077047e-06 5241053.750544948 567.6275021857111 None 1127 793232 EVX_20190901 10491524.866503168 1092.943607653663 0.48777721861787204 5.081641188008516e-05 987953.2750395858 102.924529122015 18311 2910 505983 BUSD_20210909 12740354997.056696 275000.24770694226 0.9995639926509221 2.1590288587442116e-05 10630273397.04416 229610.78239414346 None None 43840 ADX_20200403 5174426.208754935 762.5082858574447 0.05644486311483568 8.279886370578026e-06 80642.7261945936 11.82946636164971 52099 3768 33366 NU_20211221 470349432.3021182 9969.533838663472 0.7208085778001648 1.528895805254123e-05 20987123.641040523 445.1545984242192 None 9594 124831 OGN_20211011 293860658.61325175 5370.466669514055 0.8267606441449464 1.5105154819686234e-05 25631784.45947645 468.30007609474575 123357 6504 103565 AAVE_20210428 5548813383.060127 100722.83171250758 437.367532599827 0.007936901424959059 938515658.1451813 17031.228221721518 182647 8702 14216 OMG_20200331 72079812.12034221 11218.728754309685 0.5150965863889313 8.034501593717541e-05 125343014.91134562 19551.06439603088 280287 42954 434914 LSK_20210602 516252617.29622716 14069.877206734312 3.587243962127691 9.779326341978879e-05 27792175.813566778 757.6533960442341 None 32483 207056 PPT_20190714 27973617.746150315 2457.7938885391413 0.7726471943541248 6.784731246786162e-05 5717833.06501217 502.09152305955126 24146 None 660913 CFX_20211207 259197836.3739463 5135.239230826171 0.22546614822860672 4.464851665990339e-06 15788922.514200183 312.66421831201865 47212 2186 180578 BCD_20200330 78973518.991728 13355.420368253115 0.4153553238779964 7.036718256002673e-05 7483134.422340715 1267.7509008473419 28901 None 1207769 BAND_20200411 7039488.8274850445 1026.7366911850331 0.35938620601318216 5.239889959500071e-05 3334827.6942162467 486.22150375313896 11552 1069 769411 BNB_20220112 78027582165.11958 1819425.1753782474 463.4275547369332 0.010832049449390039 2693923972.6085095 62967.16150328437 7079338 773067 103 YFI_20210731 1117506443.2616405 26769.334080052817 31341.997529697765 0.7501360695055079 184632553.97582307 4418.976110599006 None 6899 22140 PHA_20210318 155560446.7012844 2656.3093045244023 0.8910966151760411 1.511812309793594e-05 32184426.249281906 546.0329548855489 None None 130514 XLM_20200927 1530948501.786826 142688.4218912432 0.07383541522924365 6.8816546516418575e-06 111532845.69056498 10395.154194966017 289901 111469 50891 WAN_20190520 42565765.16278646 5203.295717700149 0.4004541200710684 4.900907135878833e-05 2533191.7870405097 310.0214752055295 109009 17091 452673 REEF_20210506 511800343.6122738 8940.105431438538 0.04044867313363514 7.055678192959836e-07 101765249.15607606 1775.1456194852965 129779 10647 30709 COMP_20210828 33624.14254839326 0.6946924850853985 4.039288851443318e-07 8.235901896608446e-12 86.98875459482365 0.0017736558966193268 2568 None 6343475 NU_20211216 479119666.1169442 9820.76432970171 0.7396658952839729 1.5157858990479232e-05 29915708.479963586 613.0579950093278 None 9589 124831 ENJ_20210114 165148915.65522355 4442.79276988302 0.1795107173648246 4.80189965237294e-06 15854776.633000407 424.1142117867424 71919 16122 75025 POLY_20190419 50144791.14939446 9509.99522217024 0.11600789603209503 2.1998428193484368e-05 6557467.079299663 1243.4840524579606 34457 5050 292756 ANT_20210124 128659098.30884555 4022.1279082153483 3.707606873610683 0.00011569166526616266 57384590.267524205 1790.621021856328 77002 2701 136164 BRD_20200403 7195820.569116996 1061.153789912235 0.11445627579711151 1.6789569603022716e-05 470482.31655708846 69.0149626642487 183 None None ETHUP_20210813 0.0 0.0 79.21247306518589 0.0017817104573545585 16809084.3966873 378.0834039039205 4733835 588131 143 FIO_20210204 18216983.26274606 485.6656389318013 0.08397762021815153 2.2388473432166244e-06 3503522.224359272 93.40406888800749 55456 168 730561 BRD_20201226 4848484.495154874 196.3337945278015 0.0646863982739643 2.6233281408204263e-06 64348.10591122177 2.609608844358 294 None None MBL_20210115 5670208.269504563 145.3599356747532 0.0016061590692668327 4.094315507634221e-08 6972802.327433623 177.74611025240006 None None 990117 CHZ_20210117 105966913.8450436 2920.5250453128324 0.019776686585089538 5.46379695354953e-07 37114668.44650323 1025.38416391194 66716 None 119636 BAND_20210421 448814569.7532204 7944.250521661549 16.092912596855633 0.0002855345655291818 273722595.1230171 4856.626282133778 82288 4811 169936 BQX_20200905 26874738.340497572 2563.0988991297672 0.1208966156016706 1.1530158114701089e-05 723892.7869401892 69.03913935037129 15041 57 203989 MDA_20200621 9935766.249725528 1062.0495706853615 0.502190689774089 5.367386495240913e-05 2267213.119109747 242.31849226071722 None 375 1694044 GRS_20190528 33089487.69525789 3752.013020023154 0.455763162099041 5.167959525124104e-05 3616888.5972643113 410.12384132710906 38743 107041 6849352 LTO_20200421 8354087.061343661 1220.2200635096613 0.03966336108510328 5.793082989144513e-06 2833014.887474436 413.7796168460688 14662 423 889154 ARK_20190810 34413500.82086683 2902.066011095896 0.24113025638989968 2.0329907516247475e-05 677382.1618883898 57.110695731519066 63421 21823 143377 PSG_20210828 102068923.070702 2081.1402220190766 35.09361455832787 0.0007153998191166379 47691357.07349345 972.2107184797742 10054276 None 16263 FXS_20210806 96352413.91740087 2351.6973816644186 3.00262789889908 7.338536042235285e-05 3402872.9422006616 83.1675005172731 13191 None 100208 CTK_20210304 63732732.54776735 1253.4571608955782 1.7780361366923714 3.507214344227965e-05 6210291.036004393 122.49932019842514 19797 None 216744 VIB_20210708 6217635.033078991 182.97607050474096 0.034057313219965094 1.002257821789909e-06 902338.8990008094 26.554538039679887 32266 1279 5353041 TFUEL_20200927 0.0 0.0 0.010883915619102296 1.013733837969027e-06 8730680.62066634 813.1803556191013 73894 4426 70637 MTH_20201201 2982378.8202494495 152.05398098608904 0.008614627353488752 4.374939050339829e-07 122985.78520764507 6.245833885359316 18884 1893 1719762 LEND_20200801 383948671.28877014 33876.907309001515 0.305566069639285 2.6978775884284448e-05 45894703.44790222 4052.0955748074457 53095 5791 34253 FLM_20211207 0.0 0.0 0.3962565898088555 7.8514230151523e-06 17984709.053839672 356.34879574936247 29429 None 43497 OAX_20200621 2522043.248633962 269.55132456664927 0.048193408121785665 5.150884976160555e-06 128601.75198456587 13.744884581129773 11848 None None GRS_20210219 53396547.04513211 1032.8062782872667 0.6937679089385267 1.341899226967451e-05 23285712.799707517 450.39673358662566 37341 106774 3844840 BNT_20190524 45599441.61136856 5796.822071897726 0.7009004803437006 8.910186684494668e-05 2854390.7951512057 362.86399522552426 807 5138 148813 MDA_20190923 11687111.221130723 1162.6017211646097 0.5954036327035298 5.9229117877926134e-05 331769.0272026646 33.00347149580804 None 366 3013477 ETC_20190920 706970123.657476 68977.70787498332 6.221985893033942 0.0006067102870379686 766377786.0696788 74730.04512697972 230304 24992 331618 LINA_20210509 249770546.90809664 4259.129252811991 0.10109193848696386 1.7209336106315637e-06 47942470.202263474 816.1462682646729 36617 None 64342 PHA_20210725 123074500.3451707 3602.2428155929683 0.6766286663294121 1.9804108448732906e-05 13534368.433803903 396.13470960698004 107544 None 155093 PPT_20210821 98841582.29803401 2011.5049279158452 2.7319712213540557 5.5545119692176124e-05 3574705.0769894486 72.67917751607827 24444 None 917945 CHR_20211204 469106706.4649217 8736.533415058266 0.8227806025113777 1.534358344819204e-05 88204418.34526646 1644.8757411744182 110178 1741 35979 WRX_20210513 884785250.9386802 17154.251423201527 1.9874460816509678 3.9620321330517455e-05 49581083.565478295 988.4134623403969 168272 None 2365 MDA_20190810 12640581.31794106 1065.6352353487823 0.6438730945856442 5.4279444061606374e-05 322851.14436185383 27.21682390206458 None 364 2972990 ARK_20190914 33510514.20174139 3236.9959088231867 0.23495588050173452 2.2689212795171592e-05 556426.0566717929 53.732935637298574 63167 21783 99618 POLY_20200310 15459328.93102459 1952.681888384037 0.025513165883582795 3.2236380673536816e-06 6274709.526596218 792.8217369737828 35035 5005 364083 ARK_20210527 203586085.43140522 5196.243473958079 1.2944641313078982 3.3013237023756095e-05 4534363.030711816 115.64167585964603 72720 23242 74988 BLZ_20191015 5998350.141264383 718.6630317075156 0.02853146403394592 3.4183032437686184e-06 467935.6301197439 56.06252383018759 36365 None 568408 ARK_20190605 77445112.1127976 10082.095307406797 0.5454823666770873 7.101294141505181e-05 840742.3563962335 109.45099483896145 63472 21761 216267 ICX_20190228 129150255.81348795 33834.262059754226 0.2724617537445197 7.146252169922438e-05 17036304.146622587 4468.360193754684 111448 23503 263363 POA_20190830 3450171.9462984 363.59120966792767 0.01567066006630648 1.6514290703442157e-06 641724.3522650327 67.62716094881569 17730 None 702581 WAVES_20200321 94511790.2964256 15288.0564612228 0.948584788705016 0.000152985404640399 63806492.22217465 10290.552987487774 140974 56864 60056 AMB_20200315 1033755.7532880465 199.99497201811215 0.007156555963243395 1.3812808219454743e-06 203305.81035491632 39.23988274187394 19121 5501 509552 THETA_20210201 1911078099.230949 57818.69135653397 1.9077584109900227 5.7699620738335046e-05 146546987.97060326 4432.272754001963 82048 5182 46280 DENT_20190806 41886004.89240916 3546.491994901483 0.0005156249525980768 4.365558147408755e-08 1353335.1175847957 114.58062917587218 46600 9995 266120 BQX_20201231 33932710.825792104 1174.6608441569215 0.1527937582785109 5.296590157300582e-06 563726.3238419502 19.541552822007155 18437 109 153741 VIA_20200914 4649051.1022348385 450.2714171581857 0.20065090322269635 1.9432617109626495e-05 85110.28109354514 8.24275135581082 38406 2153 1668792 QSP_20200707 16480751.964447193 1765.5172018162068 0.02300340126291982 2.464278149949584e-06 264139.8368922648 28.296425434880867 54761 8228 412251 KMD_20210704 79247229.61340685 2287.191372031337 0.6264713991780871 1.8068237258060577e-05 5681814.867990979 163.87081553271972 113499 9391 230876 EOS_20201030 2493551327.5205736 185230.46592772633 2.6347285998475933 0.00019593940466945486 1474799167.415286 109677.81307231207 191647 73096 85959 BCPT_20190826 3780813.953440826 374.5049930125351 0.03254870300328796 3.224081359443761e-06 344518.80737789517 34.12598851427851 10911 3111 1353671 APPC_20190329 8917667.157976905 2214.9707638827963 0.08540075492937864 2.121129410963873e-05 3822734.7490420747 949.4664436177416 25562 3412 1389484 LINK_20191213 769462409.8893366 106772.91434799906 2.1064967400226546 0.0002926388419902742 129449631.7428065 17983.408001322103 38472 11923 107076 WNXM_20210418 139113574.09794456 2307.688428196481 71.8064755465296 0.0011945808936150157 45732966.19739362 760.8189541672629 25332 None 101327 FUN_20210813 214644894.32419753 4828.372620669643 0.0202565422346132 4.555885819444317e-07 6596995.693641209 148.3726036926416 7463 369 131817 MTL_20190801 19155065.397998903 1904.7255270876587 0.4024615429539678 3.991925269380922e-05 1855143.0685770165 184.00745669795543 None None 712205 CMT_20190902 21368653.70439492 2196.6009030409464 0.025506739557140584 2.6193222465175067e-06 2145722.6291087666 220.3472146916252 289991 1651 567314 LRC_20200719 161221091.4759349 17580.647244402346 0.13532392127548584 1.4760494243889306e-05 23801773.382080957 2596.185032839474 36739 6934 317120 NAS_20190608 51419585.53103304 6398.609104347123 1.1287828416787835 0.00014059997473527076 2870084.8866443895 357.49468157234514 23998 5157 510015 SKY_20191127 8905380.333823726 1242.86114012337 0.5559861692279999 7.768608749448529e-05 307175.6620189169 42.9206276640168 16346 3805 1289341 YOYO_20190625 6026013.689116352 545.6316148448934 0.03445527054627323 3.119787952363173e-06 1050512.4401311388 95.11973067015303 7575 None 3542595 KNC_20191030 31435703.183978662 3340.5985863706346 0.18060003094433377 1.9194737162023185e-05 5718509.5268639615 607.781110295115 None 6714 165975 NANO_20220105 500715255.85311735 10823.932841579834 3.7098089327181376 8.064360764838768e-05 33783493.70419799 734.383592439345 146828 119669 56442 CDT_20190908 8238016.417189013 786.936772298839 0.012215505203818464 1.1667752430945018e-06 453071.6578880134 43.275557166990495 19698 299 193122 EOS_20210916 4928519209.852232 102267.45708233237 5.09429110820177 0.00010569487493515545 1374314846.4849274 28513.885982465243 None 93229 82513 DNT_20191216 4221501.4607743835 593.6724491628805 0.005629485315384588 7.917478357007227e-07 173525.462752419 24.405145741784064 59558 6185 474777 COS_20210819 59624448.63936512 1323.5037653594602 0.017374251419495074 3.8577841403431184e-07 4393734.866786782 97.55862440751551 27602 None 429015 DLT_20191020 3039922.4391860007 382.5447245520018 0.03789340145435451 4.768516668331854e-06 98006.05529507322 12.333110524136 14960 2638 7624999 COTI_20201115 19672268.174628682 1222.4527181951103 0.0346274950960243 2.1526398263928808e-06 1995991.9938453026 124.08208700045546 32440 1209 163060 NANO_20210523 878399132.8108596 23389.781475485797 6.592198164875959 0.00017553532188282345 84186901.15516913 2241.7066997967163 128126 95274 54022 RSR_20210125 359584535.47666395 11162.895480832281 0.03880573019146278 1.2027647470334217e-06 118800812.01118726 3682.173429052915 55113 None 125159 LEND_20200625 174222041.8040333 18725.835175330274 0.13755982086972665 1.4799468830095612e-05 10134868.531736122 1090.3668671871226 47184 5745 78862 PPT_20190207 43534127.906904384 12782.595355354846 1.1764700104437773 0.0003454379544106557 2872861.8888223604 843.5366183323163 23342 None 591964 VIB_20190730 5070569.954280402 533.0738763042439 0.027785755224678885 2.920070851109397e-06 211561.82072361655 22.233533006652483 32534 1122 2209395 UTK_20210420 233212154.2833384 4166.195728079669 0.5184557507603514 9.26453591619961e-06 22391762.62325755 400.1292082225856 68672 3733 75588 FET_20190507 0 0 0.1279648523599947 2.237802345160356e-05 7741517.729374418 1353.8081911084591 8199 183 174758 MATIC_20190706 39966864.42293798 3637.1735427498375 0.01839574877656693 1.674100075531606e-06 29338015.905113272 2669.8980965244264 None 873 197160 GAS_20211002 118443933.36677524 2459.3861166365236 8.520964152562115 0.00017690351903992393 8806312.411147827 182.8276269450779 417676 113883 96660 SXP_20200913 119769798.72347642 11476.84721421461 1.8232510174368877 0.0001746174073035046 66288684.56787231 6348.63665074158 81165 None 88692 BLZ_20200318 1925547.0745300911 354.46484605246707 0.008813842986441748 1.6354042216011941e-06 116355.96696344805 21.58979231570518 36098 None 563457 QKC_20190904 47890839.80730959 4506.340012007834 0.011956949351723485 1.1251667683635133e-06 14184783.341742694 1334.809269746108 51215 9238 312593 DGB_20200725 326151211.95057535 34184.21619553954 0.0243358855719246 2.551268535710754e-06 34113785.30573717 3576.341071595369 162852 22626 156961 GRT_20210427 1776020768.8719585 32966.91143129592 1.4539100885124627 2.697115402014141e-05 221981665.63312733 4117.931184839762 None 13794 26419 SUN_20210519 0.0 0.0 0.0002849070154648737 6.7e-09 3.862736332423485 9.0837824351251e-05 54 None None CTXC_20211111 38597309.78810386 595.0681943568002 0.20738660440639872 3.193403550361174e-06 6369826.649294867 98.08457540093576 21255 20665 639406 ENJ_20211202 3299265570.5422964 57720.42685828685 3.533366186369419 6.180619710015737e-05 335745267.01513374 5872.909020478399 399446 42587 16030 RLC_20201130 68116496.05744436 3755.4583344481653 0.9707181045300948 5.342498422181266e-05 1940998.1118505436 106.82585708070366 33701 3884 679095 JST_20210513 162956022.453281 3159.3978054254285 0.10994610831870721 2.1918079593930183e-06 178434574.87579086 3557.1456545781502 45576 None 74071 PERL_20200109 5798208.109907512 720.5357535821605 0.021914624615003958 2.731037645066334e-06 1050389.3267732388 130.90129736603203 10847 389 1210386 CND_20200506 7958828.201441937 887.4856916149289 0.004139258999399018 4.600122900959613e-07 50794.50254832945 5.644994779243027 34521 5931 366061 POWR_20210508 185932610.90399235 3244.877641116291 0.43172980143050843 7.532273952710942e-06 11525694.346329676 201.08569532173132 90451 13663 209298 FTT_20200610 297991804.10937333 30488.92729929039 2.995553291978707 0.0003067556475764313 2338430.7792990543 239.4638913409921 12609 None 12803 AMB_20190930 2378173.452541155 295.07385814447696 0.016448790749523916 2.0406280411951885e-06 163409.33580338882 20.272473394016977 19213 5609 570829 TFUEL_20210203 0.0 0.0 0.03022787609704653 8.508893667049192e-07 11255254.540710231 316.8259780310311 82287 5233 46280 XMR_20200224 1487164780.232747 149468.06317113098 85.04582579194673 0.00855169306131365 159306792.1864337 16018.925992836503 320839 165981 77626 IOST_20200310 54038346.001403734 6825.398360407541 0.004489809290660424 5.672961250898535e-07 59554467.30045791 7524.822624786942 191462 52260 110553 ENJ_20210826 1929508868.0332682 39364.1086067671 2.0628815889117966 4.209824177937681e-05 390832509.65243936 7975.911741627607 None 35180 33629 BAT_20191030 317683945.2512231 33760.69294515556 0.2344757568513687 2.4920818119990948e-05 41801251.744952336 4442.768011126394 106997 31010 23933 WNXM_20210217 91133555.1757951 1853.334850193614 58.05311384235738 0.0011798051811043645 38017584.88604341 772.6259739215329 None None 109999 ADA_20200629 2494920752.549869 273644.2687925467 0.08032049074677003 8.800545547318595e-06 264994501.71835187 29034.884628803557 157497 81531 52095 RUNE_20201201 187142597.74252787 9518.73196134199 0.854275305614397 4.3515983487837935e-05 12543133.238574028 638.9354524335437 23880 1955 236901 LRC_20190321 50607068.42133896 12517.014662788646 0.06412994042838863 1.58646989764741e-05 2484165.5231509237 614.541943579893 28759 2467 678788 RVN_20210825 1285192840.8650253 26744.3331545916 0.1344307675397848 2.802350571347919e-06 123626588.52065985 2577.126109706506 68933 50185 58921 REN_20190510 17629521.22693274 2852.337886147943 0.02289623597993985 3.7081726671176715e-06 397604.7258089857 64.3942951083076 6313 779 1306046 ELF_20200531 42345600.246310025 4386.720502967033 0.09178871822783981 9.50387264856041e-06 25548788.88873107 2645.3407413397076 81469 33390 511298 BNT_20190915 25550821.26753254 2469.262477100345 0.366318083761717 3.540142563110108e-05 3277157.308665447 316.70847246407146 777 5111 161703 AST_20210513 57846249.10015894 1153.181964669747 0.3358031289588902 6.694333997776831e-06 3556248.126914837 70.89485084414041 43138 3658 191334 LTC_20210624 8601544859.04922 255323.33108198448 128.8574341691629 0.0038249302730933928 3334966578.167712 98993.23781228162 187426 337512 76492 SRM_20210106 74125672.2923791 2181.6389253883017 1.489880436513914 4.3722166841656836e-05 132983048.69229268 3902.532645935777 29370 None 89781 LSK_20200612 165609817.1513833 17848.839045110504 1.1849295773798183 0.0001274170369883006 6997074.70485067 752.4046521391568 175182 31211 201752 LUN_20191108 2800584.025444568 303.7937676686285 1.0359656757913382 0.00011237653038246848 99226.39062858946 10.763597445155431 None 2173 9301508 STORM_20200605 25343835.87567482 2596.618962246921 0.0032539999066828313 3.3289340236377775e-07 20251917.1958695 2071.828461296761 25710 2525 1230704 QKC_20190524 44075085.942779325 5594.94378546107 0.02790847695233897 3.5488213350392953e-06 21292169.672874205 2707.4965836872684 51563 9184 159226 XLM_20190821 1369318373.2525465 127370.69414555466 0.06982504534041994 6.496216923947882e-06 117076498.27029583 10892.285508045137 275768 103402 64328 BEL_20210610 54260322.50864705 1445.6007340213055 1.7224731635291197 4.598945759540565e-05 17761434.8334843 474.22437191096344 27942 None 388840 THETA_20210428 11200346915.86486 203310.2538593944 11.220727500194357 0.00020362235750785387 442555419.9129634 8031.04593075582 148109 15238 21480 GVT_20200901 11430888.714409454 977.9914270436202 2.573351047002924 0.0002204567081819228 2093698.3302497717 179.36528416922533 20542 5495 155510 ZEN_20190613 71138835.05849066 8744.476103920892 10.687685081990445 0.001313743846505997 2804882.2546165353 344.7796949393343 25964 1662 229974 AAVE_20210124 2589783901.6225295 80889.19794046205 211.0459384025101 0.006590374128151075 658167791.7882837 20552.73851663112 98788 2420 22200 RENBTC_20210725 424519687.14793634 12425.347050380828 34071.810848982925 0.9970970313033509 4034863.7010120936 118.07856752388916 87914 5551 100399 TOMO_20210304 166230484.77010787 3270.1305098071034 2.043857444456992 4.0337970027778625e-05 64548597.275114715 1273.9437328568147 43085 1886 113228 XRP_20190627 19803154744.736454 1523106.0964222031 0.46567098695510195 3.5858651682217726e-05 4686624019.381552 360890.0339172763 929793 202754 41010 BTS_20210718 104757984.82668756 3314.270334059553 0.03855272433170872 1.222129029412309e-06 5043301.211320807 159.8736515062836 6266 7184 164427 FRONT_20211007 70156211.78995505 1263.9482781630256 1.2324148957293377 2.221604403741675e-05 20926116.275686238 377.22322435710726 84175 None 383027 VIA_20210304 14002310.571742719 274.6711708045846 0.5991460591355594 1.182489132760374e-05 258602.1006233863 5.103833514942168 37809 2141 1480037 FTM_20200501 9639777.88567182 1114.046486570541 0.004566671659370406 5.297944809339874e-07 3200699.3423995115 371.3235750708837 21627 2338 305591 XVG_20210617 459129215.35243744 12003.72172036383 0.02790391737695406 7.294634244214504e-07 25052473.023897003 654.9210462231081 319113 54394 100105 ARK_20210602 188851885.3282566 5146.943081363938 1.1980660003860089 3.266759748117636e-05 2563488.8744320157 69.8985053164329 None 23266 91159 DEGO_20210418 83095535.48508339 1378.4281723213069 15.311518207603294 0.0002540468610438674 21713100.583442025 360.261142752914 97423 None 65410 ARDR_20191026 50493425.16478607 5832.1519647468485 0.05052559054889924 5.835867169400528e-06 3810690.7248068815 440.14695626598825 66340 6500 1346230 MITH_20210128 5361804.006134752 177.2446032902636 0.008698561901401515 2.8709028461494934e-07 2377433.485906358 78.46562039318209 24169 2126 495760 PPT_20210418 219229443.4438263 3639.3753885427104 6.04681352467133 0.00010047818725890993 13242179.095552567 220.04153848142263 24325 None 724019 MANA_20200309 49228081.132651575 6113.923315570046 0.0369574333193238 4.5940830776152e-06 25219298.984887004 3134.9459172319876 48050 6777 51080 WING_20201018 8938853.953242913 786.6596392884508 16.265973623258738 0.0014312486259701407 2287738.436503974 201.2988936083993 5716 None 247234 HC_20190130 40809577.55238271 11947.621863120214 0.9223269865625204 0.0002701831385496807 5196413.131772144 1522.2185077502377 12231 785 362477 WPR_20200905 4924038.8163606785 469.61567809826823 0.008087819377328493 7.713519171702288e-07 323183.9322800191 30.822714273467028 32926 None None BNB_20210702 44649305234.25196 1329039.634696964 289.1924506931423 0.008597271509106958 1331378980.8209975 39579.963281204866 4412502 532337 139 XMR_20210430 7292572536.570741 136050.393285676 407.443220572913 0.007601269664791565 626539916.3838899 11688.742430155724 397506 214479 39530 BQX_20190410 42682480.813107744 8250.702910363181 0.3654391233211293 7.065876950436205e-05 9900810.038002022 1914.351829721593 61199 5811 421392 SNGLS_20201124 5868111.691999045 320.4174387196116 0.00678878850486195 3.6991172453429236e-07 242489.2640105881 13.212905626234706 8938 2114 2791594 LINK_20200502 1431753286.950245 161569.50292811493 3.7600449834025382 0.00042575204772453927 496252069.5092911 56190.90614972627 51840 14879 77318 KEY_20190909 3726030.67003105 358.31863320155 0.0014268941875669526 1.3733642323217777e-07 18019.34934708171 1.7343353206301861 23780 2825 766085 XLM_20210212 10147730450.16221 212813.99821399298 0.45241715070221866 9.478552095384056e-06 3048405470.1474376 63866.87598336557 378644 143737 30646 FUN_20200411 10245867.06949321 1494.2957681728237 0.0017065676090306963 2.487017319313955e-07 264733.98010216776 38.58024669171864 None 16941 280907 CELO_20210430 529349693.1460242 9877.593869157728 5.152225784829204 9.613388116867592e-05 38285067.78274248 714.3499354391894 24617 None 83997 PERL_20200403 4456609.963764235 657.1524137049233 0.012611915318323652 1.8500394896630664e-06 2778478.458632957 407.57448332854614 11608 478 646764 NEBL_20201111 6533895.615745788 427.17542174316935 0.3839580477567977 2.513694927222549e-05 149511.5023951322 9.788212731254363 38483 5912 779472 FTM_20190714 51889850.15061789 4559.101283742665 0.025110960156790367 2.2030282138553827e-06 15000052.233986823 1315.9806743527265 None 1962 411389 MITH_20191118 6826434.327169639 802.8921653310331 0.012086173373932939 1.4202999813975348e-06 1818985.3635329644 213.75705924923068 87 2082 755856 PIVX_20210428 106883689.33422786 1939.996774702909 1.6330715588509612 2.9635322735223617e-05 1432743.7503938985 25.999977287996387 67488 9655 208244 WRX_20211207 570482930.0884345 11304.740513132321 1.2530043689391277 2.4817921273712397e-05 32377174.315144796 641.2860027765499 460236 None 640 PYR_20211216 452179786.5436867 9269.068721629157 22.731025503305602 0.00046513873419918266 71182785.832008 1456.5938036476532 57734 None 44132 BRD_20200306 14329378.240966165 1581.7933924616054 0.23279395258977387 2.5715159567906648e-05 884873.6815507773 97.74595802588222 180 None None CDT_20210108 4994638.905880675 127.50660639101774 0.007459095060286357 1.890177017350173e-07 231990.7312743664 5.878776781217655 19252 293 987559 ARPA_20200520 0.0 0.0 0.010813088953742112 1.1088108232013366e-06 2134583.1113462658 218.8873935106603 16650 None 1143848 EPS_20211230 142053092.42839962 3056.9784741965746 0.26957430392742265 5.787871973322239e-06 15756220.636532953 338.2925838963603 29068 None 88886 CMT_20200903 12867229.40879036 1127.8738211848097 0.01607927711529394 1.4091159632973719e-06 4133090.4706725744 362.2055716943533 282715 1634 830307 QLC_20210125 4385808.582942372 136.35455084210633 0.01839541017390168 5.701493685615928e-07 273468.6353774775 8.475916998201892 29253 5592 940522 BCPT_20210128 2287855.944681668 75.62941853831393 0.01942602382108201 6.411456610263287e-07 94406.2227361748 3.11582754343664 10422 3217 1711405 CTXC_20211202 39385289.96937681 688.9394624672086 0.21024146343220895 3.6765662015350535e-06 3010062.2240750473 52.638013724253476 21675 20696 491291 WPR_20190901 3270931.908584522 340.84042687068404 0.005377862475899093 5.603885966340701e-07 155854.23309795736 16.240455265759074 34515 None 785340 NXS_20190627 22430633.971670195 1727.2544632010581 0.37527808964392784 2.881056205065904e-05 1641198.6071581251 125.99684237853671 21373 3519 925188 GRS_20200725 15269241.587851679 1600.760963151228 0.20223155034745358 2.119746798461615e-05 1114439.1315437339 116.81306784779433 37621 106860 None DOCK_20210704 59977258.06630023 1730.1019442368786 0.08686596123220248 2.5034229223467075e-06 15568096.861389438 448.6628592750562 None 15128 237761 VET_20200502 287294374.7786891 32421.896394127412 0.004448021014713095 5.036519679140083e-07 181734565.48834696 20577.908971976176 119934 61856 289943 BCPT_20190930 3193056.8856046405 396.22704544983486 0.02748875282465699 3.41108464553777e-06 281533.0300939954 34.93548806273766 10885 3117 1056617 GVT_20211021 16684060.38846203 251.60120810770385 3.7876768267169774 5.714348018864065e-05 364893.0515418719 5.505025855077693 25802 5812 522762 APPC_20211125 9740676.610490607 170.269401912358 0.0829402024870342 1.4500302372892067e-06 1799363.745371848 31.457987326218724 25228 3101 1126197 NXS_20200331 8281563.266238712 1288.363596783806 0.13823949738312682 2.1562664001054066e-05 107975.30412501995 16.84204042500816 23612 3531 533193 WTC_20210114 9470126.428695463 254.76285484745497 0.32569548439248325 8.714884633771665e-06 1925199.2160136416 51.514036480678215 54741 19118 816491 COMP_20211007 0.0 0.0 1.2170226147736832e-07 2.2014661299899263e-12 820.9512154057028 0.014850145536743395 2593 None 3596708 KNC_20190627 44821560.48331727 3451.4512826621335 0.2685204980401696 2.0590936506205705e-05 12538646.844786016 961.5000826346684 97062 6690 219809 BTCB_20190725 0.0 0.0 9808.11967106663 1.0 74720.24778137197 7.61820311 None None 50789 EVX_20190810 10761847.26788038 907.2528673834233 0.5100352966856743 4.299672185201465e-05 4527720.271164257 381.69344433225376 18249 2914 1025264 DOGE_20200806 440880176.5649526 37635.45219988852 0.0035065884429933024 2.9922761034645837e-07 118440406.69035825 10106.871803913678 150873 165121 89115 NBS_20210624 0.0 0.0 0.01226042604777915 3.6379475533374966e-07 4822444.529948266 143.0929089287967 None None 552078 RLC_20200324 20106375.29097332 3121.0152859376594 0.2860569335326664 4.436003139132386e-05 204769.34894034575 31.75442956336307 28324 3561 324809 ICX_20210825 943310704.386951 19629.906846848542 1.4478938237090504 3.0149905786230365e-05 99115663.60953987 2063.9137144132355 143708 32941 290799 AMB_20210115 2240877.6102799643 57.446536318100925 0.01598051297673654 4.0736187939373385e-07 272074.39671589853 6.935493106037855 20261 5481 666960 REN_20190723 96569392.30138333 9333.619184325837 0.1199702071018055 1.1603979836106836e-05 20683611.552320197 2000.5984584765954 8124 823 661465 RDN_20190804 11341662.45883271 1051.1287377361084 0.22332183898341665 2.069340751882221e-05 104699.48901107634 9.701644957704007 25642 4399 836731 RLC_20190225 19055235.83123874 5070.500416138372 0.2695195073324728 7.194642816546882e-05 421148.31194989796 112.42272246859775 23865 3261 504378 ATOM_20190623 1619020645.5339537 150808.1478832031 6.7333565967979405 0.0006274784074973407 238200607.85916713 22197.80520096729 26117 5430 113612 CELO_20210509 593367817.110364 10118.67575110845 5.361673983759257 9.131736736729134e-05 44453538.52986164 757.1105816958386 25870 None 73395 EOS_20191203 2552728235.4714017 349291.95461346937 2.6780661692745156 0.0003665549248726989 1644897575.7480526 225142.04996844754 None 69423 77339 WABI_20200324 4346063.072415242 674.618328085556 0.07355474484064815 1.1406438396080204e-05 1206116.480257655 187.03746930753135 36661 7756 2574958 REN_20210324 851718321.8262025 15614.435510064608 0.9681552655904998 1.7733684096208034e-05 120795355.93316522 2212.6065503565865 64093 1121 63602 LSK_20191203 91698351.90461609 12542.492027947443 0.6694822872669209 9.163404262681376e-05 3339805.8520785463 457.1292140737851 179451 31126 158103 LOOM_20200531 15059510.96540681 1560.3569910518431 0.018101939060927857 1.8749449124602727e-06 5775498.241561614 598.2088995268194 21638 None 649971 FRONT_20210527 50769524.32539887 1295.819450984513 1.3225293005966932 3.3758708672284786e-05 27172845.14847689 693.6104650011654 None None 149805 IOST_20210314 811957338.544082 13220.298906873217 0.043807963442796166 7.140406565355342e-07 391735924.74030703 6385.034932184691 228354 52734 149920 TNT_20200531 15742052.329952706 1624.404652264894 0.03666646460195183 3.790292709275058e-06 1302853.3796871777 134.6788058213774 17995 2602 458674 KEY_20191012 3906294.0472361706 472.44230799727677 0.0014941195539570156 1.8070459672505985e-07 236957.80090590916 28.65859277469252 23664 2801 473626 RCN_20200807 28359100.78544939 2409.023041172682 0.055354297834057695 4.704454995403072e-06 348982.7484618616 29.659370609896328 None 1131 1018083 STORJ_20190826 21968776.75959534 2176.122892320705 0.1528339794777301 1.5131178246417312e-05 3741446.916303815 370.41828252826855 83606 7779 176136 SYS_20201229 35760712.72359617 1318.8646768699784 0.05943084608694941 2.189565522263771e-06 2036204.8866037836 75.0183500576427 60970 4490 329298 NAV_20190916 7090544.37518986 688.0815283020429 0.10711964127851403 1.039511814353646e-05 35157.22330058647 3.4117318303752904 51393 14183 455499 ICX_20210511 1436516586.9426172 25709.28408334783 2.3060771844590104 4.1271777849476296e-05 245554201.8893642 4394.674444845507 138633 31854 350407 TNB_20210107 7521305.225757918 204.85725837258312 0.002175742614932488 5.9011726493818367e-08 567948.0552562743 15.40420961075824 15741 1412 3447610 NAV_20211125 26816629.64477031 468.7614177859219 0.37157625750464457 6.496925186700618e-06 915304.2271864377 16.0038833671357 58700 17281 665322 NU_20210819 156665467.17035934 3477.555607363304 0.2836022770584768 6.297113701104611e-06 32999967.652764317 732.732298899643 None 7174 175162 LOOM_20200305 21113177.574229587 2411.7370680448544 0.025393206062679096 2.8996096200154866e-06 42231147.89924101 4822.307290016006 21542 None 487535 OST_20210506 27665921.28696703 483.2670713241805 0.04004114532643972 6.986581583226984e-07 1329648.0611382902 23.20037196835159 None 773 471679 WAVES_20200207 101891986.6584985 10461.85506512124 1.0188854377870584 0.00010463040503458265 81361194.85496496 8355.065698320175 141296 56853 35697 PNT_20201208 12217246.327984238 636.2559938313811 0.4877731258011314 2.540654285027544e-05 6573970.932056034 342.4171307253258 6681 105 971763 DOCK_20200901 17709492.195354454 1515.169290601158 0.03167512875053516 2.7135802648124394e-06 5164064.582952199 442.4008454355284 42708 14922 214748 FTM_20190725 45704514.22706106 4649.453655441927 0.022062569311567085 2.2499320787273243e-06 12331083.785423307 1257.5190397136762 17640 2015 417127 BLZ_20191113 6535350.565788859 743.5435458097735 0.030904045078982794 3.511016110557312e-06 1261444.909920944 143.31306435755207 36287 None 623163 LEND_20200501 49881348.72920146 5764.67030218238 0.041891296640924496 4.859946020859769e-06 3051716.598037614 354.0396007445547 44364 5720 91330 SUPER_20210427 193007728.7953811 3581.6579316855546 1.8931511457005994 3.5132568141165293e-05 10532726.25666137 195.46338059946868 None None 80916 UNFI_20211202 59385515.57631406 1038.9885247071772 11.906288503165586 0.0002082691536918078 40032701.113134146 700.2666514096971 23496 None 309725 XZC_20210108 39014389.33634767 996.7248695797279 3.4230037976522034 8.674085872792414e-05 6886023.303826346 174.4957382180163 67150 90 582569 SYS_20190730 21902087.68377482 2307.545784706523 0.03957043229885395 4.160077451407198e-06 716309.7456076419 75.3063296963749 61073 4590 748817 SAND_20201124 29403280.009313736 1605.9731313591494 0.0476080229059283 2.5940955211946385e-06 47831238.62639888 2606.258238009767 None None 77261 BEAM_20200301 32044194.0209466 3740.8182909381044 0.5696929912243474 6.650417559568223e-05 30998003.802654352 3618.6098824507476 12570 1459 244463 UTK_20210511 306912830.2456845 5496.93247513941 0.677047136541275 1.2117087494411323e-05 73248359.75567736 1310.9231781346607 74307 3873 78610 RVN_20201101 83388366.51684736 6043.373930945813 0.01129163936721182 8.192030849590442e-07 3986322.2711054585 289.20579164200603 None 9641 228057 POA_20190608 7475851.754542519 929.1445847526488 0.0339552733530355 4.2201690717848506e-06 315676.9249873497 39.23425918727478 17566 None 614936 RDN_20190813 10050207.362499336 883.0688484011924 0.1986308863957149 1.745487346623278e-05 487968.82891444524 42.880713663024665 25608 4396 836731 DUSK_20210127 20984398.476537783 643.9036551946797 0.0694380009328306 2.1318480749726384e-06 1653548.332747167 50.766349587903726 21467 13350 977461 KMD_20200322 43346136.74364267 7034.835802446451 0.3645533554329187 5.919474539366576e-05 1624032.0859984534 263.70396653642086 99822 8400 161250 OMG_20201111 449991180.80171454 29435.585492858485 3.2107194652220197 0.00021019924649620523 110324367.89468144 7222.7110629949075 286268 42760 100396 SNT_20210421 789993473.538529 13983.293964183182 0.2026147253162405 3.5934835929827634e-06 186282882.93589586 3303.8293857411686 129453 5918 113848 HIVE_20200502 129656307.39716935 14671.208036931866 0.36813553722163883 4.1684197796605615e-05 19080523.041882288 2160.4985558937274 6207 76 153201 ONG_20200113 0.0 0.0 0.10463134843319401 1.2834583149428099e-05 2892092.3156989655 354.75791775120234 81590 16255 336672 ADX_20190914 7163953.614148534 692.0123159074897 0.07784605474600462 7.517435603760669e-06 132023.8268073661 12.749273157447513 53608 3840 517237 ATOM_20190804 893279093.9779756 82787.8323256657 3.687398131351825 0.00034167676553923304 112481556.67701188 10422.615920274871 27629 6360 108331 INJ_20210206 168558631.72695926 4447.9506493469535 12.50033045713653 0.0003288569506561494 40916776.388181455 1076.432847902424 45047 2254 139911 ONT_20200319 209350909.07705563 38900.102656308365 0.3311255471854378 6.145886377976559e-05 82383427.62518571 15290.852364498967 84435 16525 298289 CDT_20210826 18176288.435502402 370.8153564296558 0.026939629513909207 5.496677582952495e-07 696799.1948239519 14.217272409149706 None 337 774115 HBAR_20200317 124208802.31135915 24609.225850695846 0.036502140077124476 7.24858801982266e-06 39311892.06876917 7806.548034832087 38001 6374 115268 LTC_20190405 5196657081.441135 1060375.2046886622 84.68843263509658 0.017301791236158496 4059158468.935144 829283.4126073506 441407 201415 239095 DOT_20210511 36380576367.92715 651590.7840707162 36.69757742138309 0.0006567751821821994 2738737908.933777 49015.090790194314 None 23684 16901 RAMP_20211028 97718703.41006282 1669.6058320733898 0.26145435394029376 4.467929174963285e-06 7753493.286123558 132.49754054149093 34304 None 111091 DOT_20210207 19582739051.288105 499175.9651432604 20.398566658141082 0.0005193065550431575 1354116192.8114617 34473.079751239675 156550 11992 24755 ICX_20201018 217930143.5371525 19179.140760470058 0.3822234083060599 3.363256361357659e-05 10933883.518989153 962.0931764110618 116487 28013 188394 SUPER_20210620 100801455.42770198 2827.623810512257 0.4919101532717775 1.3816297958538096e-05 4984502.543930465 139.9999001118109 123596 None 564935 NANO_20210221 917947428.1808131 16326.828929906831 6.88899968758183 0.00012252936926925536 109876708.02784164 1954.2929804892146 108397 70982 127851 TRU_20211221 184468838.94662124 3910.004362195167 0.33475147301557584 7.100361159104336e-06 17189777.735583067 364.6096881004356 None None 113426 MDX_20210821 868191414.8287044 17670.5610639338 1.3625102469719175 2.771455171913351e-05 33864739.94912182 688.8359840674927 None None 93491 EVX_20190723 8744607.407674845 844.9656301988845 0.4143235625000643 4.0062021413709426e-05 1101420.7300598265 106.49923119724428 18166 2915 1096264 NAV_20191220 6386643.515781131 893.7815620490545 0.09541402420906786 1.335275648127931e-05 571058.1343228304 79.91697517713301 49940 14088 588918 ENJ_20190922 61719074.77612964 6177.723694077523 0.07035907178831081 7.045467411774994e-06 1725686.6405558442 172.8031464876658 48507 13738 26747 HC_20200321 45751103.66188037 7403.4324071910105 1.023475746524129 0.00016506363277802831 43018242.930377975 6937.875643786463 12737 842 891141 ARDR_20201015 49771078.62315024 4360.285678993008 0.04989090590381821 4.370720472456728e-06 2601199.8698069784 227.87955676401228 64271 6306 1228525 ZEN_20210318 597829639.1295384 10158.272356421558 54.912646911811244 0.0009316342824198118 69073717.00566335 1171.887468473112 91954 6856 484882 YOYO_20190922 3176092.015377907 318.0051893819451 0.018159931630597165 1.8182732745133336e-06 274610.1621690715 27.495495519405534 7541 None 797587 SYS_20190528 39591176.83130425 4489.136710134611 0.07134228549209007 8.106657526551708e-06 821477.8278555145 93.34491277012154 61958 4595 1089755 VGX_20211207 5802488984.17188 114982.63810663615 287.56958657473143 0.005696654608922917 261251973.7770375 5175.311750571408 411021 13602 16321 CKB_20210401 1018031474.0567052 17308.42702498435 0.04154078187791719 7.069372184613569e-07 252355942.23932803 4294.570294636211 39302 2703 130206 OGN_20210930 250451157.06833333 6028.9538794689115 0.7062991478366138 1.6991815878226375e-05 28905710.40856294 695.4001156536182 None 6415 104238 QTUM_20190801 293086307.7773466 29141.612676221455 3.059792912536046 0.0003040452508098264 316968369.05021805 31496.486860863606 None 15355 320250 ANKR_20210111 61598877.59082004 1597.9059315028128 0.009417666557206507 2.4485738593947476e-07 17966497.786665715 467.12523275354073 None None 5158 XZC_20200229 49242725.55409557 5631.067445221085 5.135204670172251 0.0005893666967990952 30697244.28152628 3523.1182835077143 63691 4096 108999 WPR_20190329 8190606.424990513 2033.2736287959083 0.013808249727934308 3.4300949435558992e-06 661873.9918650578 164.41552531995848 35095 None 884505 QKC_20200423 9963273.823581537 1400.7296387967674 0.0026688483368249812 3.753647767666405e-07 2744304.9767118953 385.9775060086505 49780 9193 700112 STORM_20200223 9460193.486480094 980.0474671498275 0.0012602728252105884 1.3055832001020518e-07 144767.09914852848 14.99718860828761 25979 2524 1783010 FUN_20211002 199255248.46796378 4137.9111864326405 0.018764621184995653 3.8957182093985346e-07 19253288.43773158 399.71702928726376 19090 448 181320 DCR_20190706 295448136.2075885 26881.403732374736 29.427995558662875 0.0026780866702342163 15603538.288340053 1419.995725335478 40501 9516 383707 BTS_20210813 146581776.37086457 3296.9836104018495 0.054106851680891514 1.21691370349742e-06 23547244.422768474 529.5995521356493 6514 7186 184072 ONT_20210114 464354181.77282405 12470.706099177653 0.5775236153345144 1.5453243665036135e-05 179263939.06300476 4796.703125447496 95086 16679 288289 MATIC_20210909 8898039832.260374 191987.03322716756 1.3365429588247957 2.8856259796573776e-05 2076261412.7030559 44826.945767041776 None None 5886 ORN_20210318 425823559.2882841 7235.559108995479 20.618952111230023 0.0003498932521136786 31762887.19013031 539.00022831042 None None 83235 BAND_20210418 546349705.4043484 9063.10816185776 20.133841581644333 0.00033406120748597374 344399469.2548237 5714.284682843855 81446 4763 169936 KMD_20211120 115314524.11572178 1976.8984161576277 0.8949227070183984 1.534213747708614e-05 2517381.4325682 43.15681311674591 116707 9955 129078 RDN_20201228 11605562.77808594 438.3645037596244 0.17190223129597157 6.5300921819400065e-06 816178.3859637935 31.004368338152457 26500 4385 1993466 ALICE_20211221 206967830.13238707 4386.8933272023705 11.88353821703757 0.00025205987124979584 93799834.83257776 1989.5736319721823 None 3108 29730 POWR_20210506 171734410.7565786 2999.848979259196 0.39996140247293716 6.976740463477153e-06 3815711.7129609985 66.55949834204316 90386 13625 209298 MTH_20210805 7172218.708301276 180.81604603281343 0.021582079305506683 5.414164543575623e-07 244945.96359209294 6.144809924935731 21803 2055 1226676 ENG_20200129 29852724.719371997 3194.188341496501 0.3760682087689072 4.0316123115058226e-05 1828997.5307596114 196.07637100894598 61221 3589 332457 BTS_20200414 46286808.94382732 6755.961842819355 0.017120980915438167 2.4977144265004214e-06 24456891.44972005 3567.9223581306833 13228 7016 124371 DOGE_20211111 33523008507.97533 517263.076336228 0.2557342500886513 3.9370199561539725e-06 2821821732.7649975 43441.848210607706 2471405 2215142 32889 BAKE_20210703 297723855.52867866 8803.653913818165 1.7560261420894332 5.1859324347176185e-05 34801064.774300635 1027.7521857448687 None None 8023 INJ_20210722 167413406.72995403 5202.251110922675 5.7959587653227445 0.00017946717281223812 14529327.401192216 449.8888651790039 77514 3769 133527 JUV_20210420 0.0 0.0 13.59781701235386 0.00024312084760775852 5446578.588258402 97.38157247862752 2411427 None 44251 RUNE_20210729 1277805761.3302515 31955.501402139347 4.702168688520374 0.00011747932482620106 135040156.86784655 3373.8531099467914 103062 6203 63469 STEEM_20210602 211308104.61681804 5758.961766271177 0.5500012304051483 1.4993799076413091e-05 2134127.308299799 58.17928087281232 None 3946 201995 GO_20190513 13329692.053838657 1917.5383816880478 0.018685683198795985 2.6852891633092226e-06 521061.04246023385 74.88083554960572 9549 656 839463 GTO_20190509 17767747.743202448 2985.1246749750258 0.02684421087879989 4.507993676824688e-06 13732632.32383183 2306.1441426420442 17298 None 885807 ADA_20200106 1069729851.7474385 145655.94314774414 0.034426974000458806 4.687218113292296e-06 48833556.38398183 6648.668280181402 155181 76032 69067 LTC_20201115 4215664174.5525975 261970.49487696882 63.98777721776308 0.0039763389515232546 2384641700.4228187 148186.79583990373 134640 215841 153870 SNGLS_20210806 8755889.412460746 213.45793356707793 0.009813238447569983 2.398392556898101e-07 219610.32721395267 5.367359379087831 9470 2135 None SNX_20210127 2387238047.547003 73300.18172632364 16.76910121326559 0.000514835906279946 289039324.2818108 8873.929531145734 65162 3425 36126 NKN_20200207 15096313.337248156 1550.0280967264275 0.02335392104364755 2.398338884647545e-06 1666522.491077538 171.14409546135445 12133 1005 439931 CHR_20201226 9855923.22032658 399.10425749635726 0.021934667776743393 8.883364476089751e-07 1951902.7531512487 79.05049556533538 36239 None 874188 MDX_20210722 652215099.6308252 20267.088705678223 1.1568133715728253 3.581978990425192e-05 44543198.307152346 1379.244089179499 5287 None 11841 ANKR_20210202 76875456.57876799 2302.684582468145 0.011857238856040302 3.5502347428288107e-07 21920573.36774727 656.3347681341487 34122 None 5358 BAND_20200530 28583625.59853487 3037.5280954045475 1.3881127257248627 0.00014784360304795517 5665331.7467702245 603.3970025504201 14514 1156 537280 PIVX_20190511 35979904.08271931 5646.45188300007 0.6021752407668711 9.452110435607415e-05 2251813.932027476 353.45847064149245 63028 8604 304717 AION_20210218 64988438.456442885 1245.2250439577213 0.13336009285761818 2.5577060888298307e-06 5967742.728109464 114.45501862803766 68774 72658 308962 BAT_20200325 219827952.44243127 32526.904607843895 0.15282890692794712 2.261701527176149e-05 86281184.45231818 12768.67646082014 112849 36056 19141 XRP_20200605 9036511117.737663 924437.4275849608 0.20484984489666377 2.0956192184142424e-05 1313145139.9027412 134335.08788525622 951853 214194 34981 POE_20200422 2240977.021960628 327.232645699115 0.0008899096314284423 1.3e-07 50917.537290457534 7.43814834 None 10373 1042825 NANO_20200325 66390161.6338697 9823.438877409095 0.4979819132902195 7.369590455329176e-05 7361198.860496499 1089.3773330775398 97649 49753 321803 ETC_20190819 628232679.3219367 60889.187782574874 5.569111806753333 0.0005397660862684732 447868307.3204088 43408.0212059801 229433 24881 482560 NANO_20200407 81656405.1581805 11206.295368098017 0.6131668094706858 8.406945918857762e-05 5809984.665704275 796.5895433272611 None 50259 296838 DENT_20190603 148743385.5908802 17007.37981358753 0.0020868161212750824 2.3862903417187887e-07 6314647.538280506 722.0848199480996 45297 9461 248149 XMR_20191213 920425820.5729487 127721.05049011584 53.05096858022033 0.007360672025056749 137281385.17791975 19047.4043826771 319983 163758 85461 FTT_20210819 5023009614.431437 111497.41909307429 47.25225586947924 0.0010490122311552726 254434241.350495 5648.505585397427 170211 None 1799 NAV_20200321 4618403.596989971 747.0646226258975 0.06796237575592687 1.0970790968859363e-05 84825.40384866395 13.69289646104837 49580 13971 1082339 AKRO_20210902 93362236.4081692 1919.6415432487424 0.03438800405047959 7.06768812185574e-07 17604468.660024215 361.82063331558646 44901 None 231252 CTSI_20210513 292904962.1932491 5682.308482905854 0.931600528882096 1.8482746687111495e-05 66412591.20642384 1317.6109953221933 37639 2813 173640 RSR_20211204 592789310.0183641 11040.506494779427 0.044910594045036806 8.375129959731515e-07 124455637.30310501 2320.904808316391 89998 None 100570 CELR_20190421 35578268.6283489 6700.046562526931 0.017817702590265102 3.354686336913231e-06 3226711.26564496 607.5196362261254 12277 None 386585 NEO_20210104 1144183068.8629236 34230.96386597697 16.160872033053995 0.00048478428708906404 474689772.1397714 14239.463211179336 327344 101195 181319 BRD_20210112 4848439.873916964 136.75415562945776 0.0646426160206399 1.8185251216025591e-06 225583.71171405958 6.346117654727704 378 None None VET_20210806 5942597151.847757 145024.9833462843 0.09119866779629046 2.225938709118248e-06 655296944.9529805 15994.212097439216 396270 195382 38303 LTO_20210513 125463860.52870867 2433.595106251051 0.43522861162918514 8.60315972617503e-06 15236436.251116179 301.1784869458845 9400 4075 155489 QKC_20190811 68661725.01204957 6062.092510739467 0.017206318922769828 1.519366794553096e-06 4839935.810289355 427.38006838817273 None 9241 258370 LPT_20210718 338726677.49758613 10717.28475204403 14.165498473245199 0.00044903798376507684 39463669.24025417 1250.9751422503914 14130 1193 114263 LSK_20200330 125874181.26702838 21286.915231761937 0.9036833217322725 0.0001530969885809495 3494766.630442172 592.0638724285324 177494 31361 164419 QLC_20190221 6289489.654666843 1584.2062527498458 0.02620620689444518 6.600859386457691e-06 199281.75364717728 50.19539223704083 23232 5848 940522 LUN_20191102 3078574.1990066925 333.2790597900301 1.1387971835772617 0.00012328345204628253 189440.1947384001 20.508341169501552 None 2175 9301508 ARK_20210718 140126437.82225898 4433.503643345411 0.8850089741915006 2.799995014782788e-05 861741.5634629563 27.263814854890946 73103 23427 125873 SOL_20210916 46994383928.494865 975139.9836102279 158.59633983839294 0.0032899445356475705 3973589945.002292 82428.70257778635 601788 59954 8736 ZRX_20190522 195612279.33367693 24582.423722359483 0.3346128925160271 4.20497218286581e-05 68804630.27096611 8646.455734753901 150387 15900 222198 KMD_20191127 81251645.56220154 11333.0071239816 0.6936181593410802 9.691694505486509e-05 3916387.1018787767 547.223668317658 98390 8410 244638 XMR_20200312 948248480.0399946 119454.08287433904 54.250827022080074 0.00683416100685303 130349148.67401129 16420.525142996437 320735 166696 88356 KMD_20190105 84435937.88951904 22160.66927058857 0.7583283942633835 0.00019903212880873893 459853.3662481687 120.69387763482445 94776 8209 230436 PIVX_20210429 100523327.05290972 1836.0310238071959 1.5353646613122773 2.8043014827223344e-05 1452559.7727341452 26.530606227055074 67489 9660 208244 ATOM_20190730 873574679.5872937 92023.13997915479 3.6057497755486057 0.00037907592778840484 141326967.92092416 14857.839512170629 27458 6291 109453 DGB_20210731 656929625.1997671 15745.691007352678 0.045288632279418074 1.0842011312016388e-06 17370129.183158357 415.8375460161032 222919 40537 114110 HBAR_20200129 23905947.11803108 2559.055435065301 0.011471094746590436 1.2268029841056111e-06 1195426.060008963 127.84762832967742 35057 6116 154670 POA_20200310 2753578.768356066 347.7951010991766 0.0125213064769991 1.5799400501001544e-06 112917.49298167779 14.2479436827436 17428 None 535987 TFUEL_20201231 0.0 0.0 0.028563071998442713 9.901378676310543e-07 18869655.694641404 654.1159387002583 77278 4740 64430 QKC_20200207 14193190.938860536 1457.3128062039389 0.0038111376757266682 3.913860831060228e-07 2228146.1224661903 228.8202257856346 50757 9207 327738 DNT_20200501 3277592.6152784918 378.7610077341697 0.004387054091858828 5.08956460808069e-07 149254.58464662926 17.31551140481612 None 6051 731161 ONT_20191011 420365105.1114522 49093.8815483489 0.6458723103416746 7.543056812688035e-05 105889107.66789453 12366.648054028383 81479 16290 312703 TRX_20190818 1118362913.9475608 109411.90323270303 0.016907424501907384 1.6539823980974351e-06 490564956.5318888 47989.911363238214 454457 71286 66162 ZEN_20190321 41630848.80458207 10300.98150209229 6.875449843861613 0.0017012355907666866 428137.6596226319 105.93678098718962 25086 1515 311352 KNC_20210128 239498981.81786305 7917.093197020965 1.1861166800054523 3.9015812722114486e-05 50874150.28044069 1673.4410308851386 129896 9387 125563 HIVE_20210207 59676592.63505276 1521.1927528138197 0.16043185528061174 4.07979698181863e-06 6538448.857450533 166.27336178182256 11257 107 140605 COTI_20210729 83243253.04841611 2081.8635814245413 0.12456962865021869 3.112256670715754e-06 12687755.29811817 316.9918020214641 124314 5482 101712 BTS_20210124 65993871.13635506 2061.733283645562 0.023619423472938942 7.370099777855146e-07 13004231.513282565 405.77825236517145 13171 6860 133221 SAND_20201201 30048568.94512068 1526.0167653287783 0.048107010363833205 2.450526024670956e-06 9686678.485086352 493.4303242042687 None None 80343 LEND_20190730 5337578.361425136 560.8515028285277 0.00471991684479104 4.960857718841444e-07 2338477.2618118976 245.78511351100605 41887 5850 751506 WABI_20211021 13754598.86556811 207.5074232373027 0.23274736947723482 3.5113206410099564e-06 7915841.739428156 119.42157951366617 45366 7916 845056 QKC_20201015 31761136.41656839 2782.5157941834136 0.005478812407619752 4.794189558689766e-07 4251110.72319194 371.98993368738434 64881 9217 231448 VIB_20201101 2127994.063857589 154.39991379898638 0.011638870749897938 8.443882033995838e-07 587572.5263278553 42.62778756927798 30494 1098 3115290 BCD_20220115 223749453.9130377 5192.015010144999 1.1900529617645759 2.760079801578817e-05 1218913.7418897578 28.270163656147634 36073 None 1984459 SUSHI_20201115 128967783.73352821 8014.198974203404 1.0552608606725258 6.560464205649099e-05 140277604.9657946 8720.935652306616 12302 None 57761 REN_20210902 756754804.8620278 15556.941869246411 0.8608925620585548 1.768710308035134e-05 128366140.08487223 2637.2920986550807 91641 1190 119029 MTL_20211204 183870013.73699626 3428.8908741681294 2.844793765058075 5.3050996090371964e-05 13704410.97189515 255.56603147153564 64509 4488 175729 PIVX_20210114 24000130.319810893 645.6452047418181 0.3721891782092319 9.958952166874435e-06 750107.7878831106 20.07121113910613 64811 8721 359500 BCH_20210422 17192472545.53199 317301.3960625286 914.8518200955704 0.016916085731613965 9526156965.336168 176143.5943818793 None 507389 311242 CTXC_20200322 1042365.9252838386 169.17016558603552 0.04891136123583878 7.942035183779433e-06 4925105.309003421 799.7193016019165 None 20064 396619 RUNE_20210710 1702570629.2218108 50198.6893059742 6.264360127399128 0.00018432739099866652 63638732.98343413 1872.5554372250747 2581 5868 58738 MTH_20210429 16950554.122301515 309.6749936586108 0.048578256594598405 8.872421283721984e-07 1157194.1750301206 21.13520522899536 21479 2013 362958 XLM_20200907 1609601041.6793194 156324.53453785463 0.07783511183074818 7.566863250268771e-06 181529874.7800482 17647.713300469666 288562 111275 46719 CHZ_20200901 79690650.01362939 6823.428589498592 0.014859281934107455 1.2745648603949916e-06 7522313.93965182 645.2315164928943 32195 None 244050 TRB_20211125 116448898.08975555 2036.2689826544513 55.8405187939853 0.0009763427596373904 27361195.130718704 478.39642857652746 26427 None 362020 VET_20191127 394960219.4774642 55089.185579642275 0.006283129639870906 8.779206857248984e-07 109481481.50119762 15297.48116349291 116639 59697 477331 DOCK_20190618 7993073.025670306 857.8709351506654 0.015406143798626195 1.6541837112297876e-06 2918588.3111058148 313.37376225499133 174 15259 251058 ETH_20190627 36033928259.050896 2771452.150773521 337.3409578098138 0.02598999540669489 20783128904.669895 1601209.1394892116 444453 440600 37001 AION_20190920 26890591.1078158 2623.4740338160905 0.07863870574257172 7.66811634638815e-06 1922990.6839270096 187.51219463916118 67327 72559 164304 ROSE_20211125 594110493.9354753 10391.539270291742 0.3940146916783953 6.888146506594925e-06 303176948.99145085 5300.125315581164 67507 4304 132320 QKC_20190901 59439451.62877734 6192.375413622234 0.014856855064256764 1.5480491021599053e-06 22964960.6072581 2392.894491831807 None 9238 312593 ASR_20210823 16279186.101961557 329.9829410246186 8.001358669129779 0.00016241396403038049 2815620.774503033 57.152310014251974 None None 101452 RDN_20190312 15176247.836918147 3925.301243447477 0.30027421702896057 7.765725187787742e-05 1263943.9217565598 326.88258240265316 25011 4458 714743 MITH_20210401 38699687.90576536 657.9666160393181 0.062474638429443 1.0631876705038044e-06 38497868.63595191 655.1531998163514 27441 2385 315101 CDT_20200719 4761436.486331537 519.421964877212 0.007058380391903128 7.69994060098826e-07 91222.60701476921 9.951414013996342 None 290 313567 EOS_20190321 3841339081.8909187 950486.5733476791 3.7071757348854453 0.0009172896966217339 1733666388.0579972 428971.9260352674 747 63474 96004 HOT_20190608 343977580.3487448 42804.27495827298 0.0019368049861589003 2.4124634257913367e-07 23748239.77894587 2958.0551631711614 22231 6354 302460 QLC_20210930 5789043.890008923 139.4010109895372 0.0240855522783542 5.791826709477126e-07 883789.8910682243 21.252399934607574 None 5763 940522 ANT_20201101 107056434.92448401 7758.424087248979 3.086313890796638 0.00022391061016650756 21118668.669243753 1532.1494037711461 75994 2679 88637 ADX_20200301 6854662.798956292 799.3079093755547 0.0987910013077806 1.1535394585571144e-05 1411530.5321074105 164.81826727023764 52514 3783 53936 WTC_20200417 7874041.212577955 1109.0135883965781 0.2697233771764376 3.8022387760011806e-05 19277906.319672804 2717.569522378848 54637 19663 973859 WRX_20210204 28342718.922555305 756.5235961460155 0.1193704103464576 3.182420808884497e-06 2514355.7608138486 67.03284399315177 55872 None 4666 AST_20210219 55682345.83009468 1077.296102499075 0.3233006746839867 6.253343803409311e-06 8714144.784659509 168.55066369541714 37378 3503 155263 HC_20200322 45702954.931954086 7417.334225986388 1.024825547372309 0.00016641105215022618 24637365.87519022 4000.6125803682953 12737 842 891141 ARDR_20210212 125611001.67697337 2634.261879326325 0.12558928249181936 2.631210056632313e-06 17147943.97258013 359.2650721144085 65228 6358 None QKC_20190703 85400592.64967814 7936.565254232588 0.021374197136949324 1.9804124089705353e-06 10609499.779735914 983.0163389125563 50960 9225 176500 ONE_20190801 27596117.029926803 2745.3239321324268 0.010613247239722224 1.0540337728813527e-06 2679581.722722293 266.11738793515696 69401 None 151929 TNB_20190712 14131211.654666819 1248.7648272034612 0.005141355935101553 4.53460326880807e-07 833724.5838893994 73.53332994471707 15723 1487 481694 NCASH_20200417 540067.8482614231 76.05505248525763 0.0001853674365303843 2.614909891427674e-08 794391.444018811 112.06186391264089 57406 58238 728678 TOMO_20210821 273573909.41220623 5567.446960456047 3.2689192863533814 6.649244130725503e-05 16589092.767196735 337.4354581859182 51168 2239 146029 DNT_20210120 90321603.37305717 2494.370732148355 0.1202088334854753 3.3244261720447546e-06 10395522.481416784 287.49257444110657 None 6423 241579 STX_20210401 1277786309.7563012 21723.92660702356 1.2159135316595264 2.0692305033811965e-05 13910328.858107181 236.72470151700685 55573 None 72089 RVN_20190513 158082524.92349786 22777.94607134787 0.04487493384480827 6.455350947277512e-06 17619923.524615265 2534.662009952841 24048 6428 171456 CND_20190126 17521813.314848542 4913.788270967515 0.010645922202827217 2.985849072796693e-06 389996.2010237577 109.38176825223968 37049 6265 440166 AXS_20210916 3961243571.4540944 82195.20503907092 68.52279767301822 0.0014219465991729538 290626081.0186615 6030.9091509579985 495921 None 556 DCR_20190821 270101373.41785127 25124.178638005003 26.310840535941296 0.002447845565149014 15073654.24030816 1402.3868843081757 40545 9571 278378 ENG_20190414 40375621.43678288 7958.529465797683 0.519280422111042 0.00010233962859086295 640034.1806087352 126.13774280700434 61961 3354 361220 BNT_20190426 38869788.01905212 7484.24717411587 0.5980820201891807 0.0001149466786434943 2990810.814539429 574.810407230781 813 5140 152129 LINK_20200229 1532209411.8175554 175053.95438243344 4.19211591174518 0.00047987597103272043 556238156.2798268 63673.17387918093 44131 13239 107371 ROSE_20211021 298747818.08212364 4507.188068276156 0.19890325929542915 3.001842541915505e-06 27617537.97974078 416.8031268276869 35899 2829 177520 WAN_20190621 42358637.4632764 4428.242334692127 0.39898376484428116 4.171974190850095e-05 3125312.724417577 326.79836057225015 108518 17011 440153 TORN_20210723 29320038.672014266 905.6794313743367 30.670649471164488 0.0009473990359855669 3348672.5928031513 103.43860469064079 21694 None 132811 RDN_20190531 18250371.809463393 2195.754205184518 0.3605014257078164 4.338364584361786e-05 3387349.4133290863 407.64212515365233 25642 4440 851232 AST_20210131 23069470.34977318 674.3695510470502 0.13356969510653804 3.9096087395940465e-06 1669028.6735567155 48.85276621740968 35517 3444 162456 GVT_20210723 9974789.535864456 308.4147836444356 2.267708128321396 7.00458131297271e-05 183667.70719583565 5.673196535097304 25766 5687 392150 ARPA_20200129 0.0 0.0 0.009462042687054667 1.0119402254665897e-06 2016476.0550772683 215.65673515874312 12473 None 931659 ACM_20210408 0.0 0.0 11.67537723607659 0.00020765852963275532 44370957.67291957 789.182879700424 None None 46245 BNT_20210511 1489690773.127695 26685.32943412655 7.598896011719313 0.0001359971601169646 266650768.14763442 4772.238908804394 None 7183 28535 STORJ_20190716 25704162.548491027 2350.5050048945313 0.1782022992393988 1.6314838196641886e-05 6455416.380505755 591.0085009532693 83905 7775 215806 ADX_20190801 9737857.099336896 968.7439763175302 0.10649017581517632 1.0575862340149027e-05 287367.6268387966 28.539350594529726 54021 3867 708738 DYDX_20220112 525460918.00743145 12257.429024694293 7.082668988708544 0.00016556612841491915 133756391.89523005 3126.7207308639076 None 2621 15962 PAXG_20210430 107610507.28125559 2007.9975500903279 1788.010288774027 0.033361963510120184 9748424.339163663 181.89301209633504 18120 None 51510 ONE_20210430 1260186547.9978828 23509.253284457118 0.13318680244503875 2.4847359093434484e-06 138987206.46010646 2592.9483739447073 138662 17316 31277 PIVX_20200229 20609350.18584428 2354.605199171017 0.3276748811857704 3.760719869068346e-05 232931.79847017 26.733548799181893 63914 8511 215507 POLY_20210722 161025010.68274534 5003.87017227393 0.18781312645201917 5.815481473580556e-06 14922407.26961416 462.06026520640984 47401 5670 180054 ZRX_20210124 426670538.82394314 13333.300286481337 0.5658310816146002 1.7655941237046646e-05 115598483.84982753 3607.0836407930133 166671 16376 88733 BNB_20210131 6604362183.837016 193059.51516611536 44.6166614363188 0.0013059376181386699 612389944.9645923 17924.762641431636 1567618 107388 423 TNT_20191213 19232288.046571035 2668.537233109143 0.04475300118104138 6.217178594384377e-06 1609750.8093066113 223.62987978007845 17756 2565 490686 NAS_20210420 52823400.61069922 944.0348062610315 1.1594065059944212 2.072949593329754e-05 19538139.394018706 349.33026425026816 24770 4891 465428 XVG_20200511 52676944.34213698 6016.767041606666 0.0032390994553439987 3.69970336943224e-07 2965599.2854100135 338.73111399884573 292996 51797 303181 MDT_20210513 36342669.942577064 705.1453133090994 0.05882519839535163 1.1670788144195708e-06 7388236.377358626 146.58096168224077 31918 300 371904 ICX_20210618 682525792.0101271 17964.22498573841 1.0807652098602276 2.8315135939378538e-05 88846471.57580593 2327.702536546698 140605 32396 229472 NAS_20190523 49389187.02277501 6441.7222353855595 1.0846063900659357 0.00014152570435072449 3598719.618251073 469.5817149876752 24079 5175 501303 AMB_20211207 20873751.36975348 413.4180700322467 0.03905501316171443 7.732567244979708e-07 955604.3045948878 18.920169132386146 2604 155 640829 STORJ_20190220 32213544.88613148 8230.924637653572 0.23772733108088884 6.072768852420021e-05 6777891.73681833 1731.419338166891 82882 7604 236494 TOMO_20210809 229796977.68617004 5223.568352568598 2.7377619589280715 6.224999811488219e-05 10707039.557528758 243.4518421510602 50882 2222 136634 RVN_20200318 76101683.96580721 14013.924997595388 0.013039332392226129 2.424278722670571e-06 11452299.917868305 2129.216909378145 30219 7583 202553 BAT_20210814 1172620276.5200286 24602.411349151516 0.7878552647370758 1.6515050774642114e-05 115308009.6889954 2417.090701770198 209701 77347 27723 AVA_20210114 34134637.602478884 916.6476491015203 0.8861360550856368 2.3768364758485393e-05 6775258.487761894 181.72922108962845 42229 9051 96594 STORM_20190908 10259051.366091544 979.9031054050613 0.0017510062693174263 1.6725725482869388e-07 153565.39964951068 14.668666601668347 26478 2547 2939778 MTL_20210809 148133548.16371796 3367.263351594816 2.29394105391995 5.214882815762694e-05 42479166.87573522 965.6912368765594 57439 4227 202262 BNB_20210707 49507487066.40898 1448893.0285186032 320.3670298197941 0.009375906223041916 1844919548.445925 53993.673084948256 4451511 541050 139 THETA_20210203 2165919407.424554 60810.31887085133 2.15839676199975 6.077470641625568e-05 152664533.45019013 4298.626815958421 82344 5230 46280 SNGLS_20210131 7601438.738523038 222.18978100236748 0.008528807299262298 2.4960365908170527e-07 1458448.4894718647 42.68288246890635 9043 2114 2522161 FIL_20210304 2406002229.814256 47322.445166918034 42.24686832392668 0.0008337943966163833 621298264.1719575 12262.092596356368 54860 None 51977 STX_20200117 50103901.18188209 5754.660531715771 0.09855061005211795 1.131005905026956e-05 252749.98704112618 29.006591403931843 35132 None 32191 CVC_20210104 59405476.142029785 1775.7663628848204 0.08767139455687949 2.663319919471651e-06 19684056.200247377 597.9708574169654 None 8049 183713 SRM_20210427 473769651.23255897 8791.807191452055 9.487541371074144 0.0001760671325521844 1596923998.3271513 29635.267799353827 None None 59775 TRX_20190903 1049536180.1734502 101667.41267994337 0.01586834732296775 1.5371493106280705e-06 530156535.6013022 51355.67911631121 458475 71286 65746 VIBE_20200725 3622448.557826105 379.877178104616 0.019363630824452218 2.02999894594084e-06 739240.6787618739 77.4987817258 18809 None 2048051 AION_20190510 50786628.28425048 8220.9279257982 0.16395176905532152 2.6554628266069957e-05 2552431.7837422844 413.40741598773417 68878 72513 275245 KMD_20200319 35683294.71934064 6630.417005673217 0.2991255497013893 5.551947461743197e-05 1556623.7445099696 288.9185914024641 99873 8401 161250 IOTX_20190726 27146017.083338425 2740.4105197375293 0.0066352713989382426 6.703342176110092e-07 925881.2191262497 93.53797686753803 20439 1758 905527 TFUEL_20200301 0.0 0.0 0.002860120863089284 3.3440331358649305e-07 683300.5340147027 79.89101638982163 68509 4027 385146 CMT_20200417 5933814.8365127845 835.7438203663392 0.007648133439776665 1.0788939069863342e-06 6024886.672108942 849.908487084572 285536 1636 944279 OMG_20210724 519316094.7166251 15536.02424436967 3.7048857173856895 0.00011079597681075289 137545218.56422296 4113.3406018324185 None 5007 225112 ALPHA_20210729 209297356.3924471 5231.739982328969 0.5963229318314023 1.4904820398837365e-05 35987616.5985518 899.4941052095675 70999 None 56625 AMB_20201231 1756805.851423103 60.815754520833174 0.012128056501310934 4.2062003174197426e-07 303086.91747423576 10.511529925244844 20206 5482 662209 SNGLS_20200506 5473586.408205407 608.3013938104077 0.008489076068781505 9.434247346604746e-07 410732.43267230433 45.64632631050741 8830 2124 2345766 ADX_20200129 7856887.073007612 841.0547161174513 0.09537976419137797 1.020061135560332e-05 206143.2809390132 22.046474011076544 52675 3796 160693 DLT_20191022 3309553.946362701 403.31301336962 0.04126006601527896 5.0239493997698585e-06 226668.94524825978 27.5998906789137 14956 2638 7624999 GRS_20220115 53671735.90082912 1245.2453010358392 0.6793373732425898 1.575631718429383e-05 3245987.944409918 75.28632700478985 43163 107183 None PERP_20210809 635149970.835757 14437.741175706517 14.343724454079162 0.00032614114507472275 31575495.662430335 717.9493962405517 None None 147640 NKN_20210902 298303700.63418305 6132.360574827357 0.458322325951422 9.416267000547996e-06 22711365.415745027 466.6067276075347 30581 3437 229216 FIRO_20210711 59378376.93198004 1760.9368236730388 4.919617314734011 0.00014589378743098353 3963985.0562281865 117.5540201960238 73659 1071 237934 UMA_20210304 1237871380.738084 24339.970893714133 22.01344735458363 0.00043447889416628645 82772021.94292709 1633.6694558738627 27842 None 124201 GXS_20210616 50442020.11179106 1249.7826407919517 0.7206002873113008 1.7854037725599305e-05 14278951.727355344 353.7841259728508 None 24117 544646 ZIL_20190513 145205299.13806227 20922.480044149936 0.015855078659967856 2.2807854692497603e-06 19639641.472586364 2825.2025645920544 60959 10260 201594 POA_20190812 3205837.4572822046 277.7897060860655 0.014571365927725366 1.2617115456398855e-06 63935.95244524675 5.5361130714698294 17755 None 707962 ZEN_20190524 75352691.62974145 9581.864191669527 11.569316172626369 0.0014711566894159555 402211.66563467286 51.145320400147384 25713 1642 229804 RIF_20210806 143758728.63556957 3508.737035013984 0.19078359951142063 4.65650286478701e-06 3727333.0038025444 90.97394563615381 44740 3368 684649 SC_20200322 57017492.74332655 9252.853891791605 0.0013005001048723274 2.1104641536612832e-07 2598349.3183280784 421.6626415082057 107671 30174 162098 NEBL_20190414 23787139.729666736 4688.493477483268 1.5828955239217202 0.00031203399629283076 183319.96899422718 36.137610891605114 40421 6183 641318 CVC_20200330 11202635.608836265 1894.5072943253408 0.016611055589515332 2.8141523991287874e-06 5323856.770530647 901.9381232378379 None 8058 104560 TCT_20200707 3983632.1219026595 426.8283435662475 0.006866681752596202 7.352471931508479e-07 759895.3190710671 81.36548635361306 None None 649723 VIDT_20210729 17894750.314856354 447.5369187880824 0.3869676997281162 9.671313615558044e-06 1083262.3476093262 27.073499671978553 29577 1621 891299 WAN_20210202 70498743.36006911 2111.449681032374 0.4298332898256587 1.2869851891244321e-05 5554645.561113741 166.31439995931217 104161 15794 443553 CHZ_20210727 1328486997.148467 35464.278372078355 0.24734748405365828 6.628866611409772e-06 390345336.48210806 10461.182485140742 365849 None 41451 GXS_20190312 52644877.2302311 13615.611077367445 0.8707824869086737 0.00022549254994467749 16652611.917877717 4312.2593541493625 None None 478262 GXS_20200711 33134609.963972386 3568.4964538070367 0.5104755896940139 5.498334470482912e-05 16951833.702901747 1825.882637060631 None None 671757 SALT_20190220 15029284.415564463 3838.8850786685953 0.18168563331147675 4.6407416843184845e-05 1149285.806490433 293.55862938441976 42853 None 344605 STORM_20190714 18029117.481893737 1584.0526680909245 0.0029252702079119873 2.568723775863039e-07 341984.78339750343 30.03019829486361 26799 2580 3762880 GTO_20200612 7304753.193290189 787.2352246418602 0.011118672666707278 1.1956055055755733e-06 6308230.22624526 678.3322987392736 16634 None 1410862 1INCH_20210624 450506858.7481105 13358.687172395128 2.612703921427261 7.745660678511251e-05 98892999.93381071 2931.7964989652924 232403 None 6332 GVT_20201208 5871556.02873024 305.69889185439985 1.3159872639133363 6.854746466246812e-05 323937.635155106 16.873342324459173 None 5464 338184 DOCK_20210314 55899890.40355969 911.0515772969347 0.09774720636155816 1.5933834944860342e-06 50496403.672420874 823.1451223774575 None 14866 205614 NEO_20210814 3898924654.803418 81828.84729288424 55.29281363820219 0.0011582272189204024 922771839.6333289 19329.446110482375 409707 112662 120320 RUNE_20210318 1367086069.2743874 23229.414731894736 5.864425269147089 9.95163487518815e-05 41150781.94535428 698.308082981523 42724 2970 105445 AKRO_20211104 116764381.76460898 1851.4804053744683 0.04309717485764175 6.833725625060959e-07 37477175.99849822 594.2587624869456 47526 None 212051 QUICK_20211225 93761737.80722433 1844.0315423952334 259.6384021294039 0.005106958646546094 4938873.95971453 97.14520219622403 64148 4273 4934 TNB_20200314 2997764.5131673724 543.2733192597099 0.0009752677058150588 1.7531140124700873e-07 614827.2357637391 110.5196281840237 15160 1446 1374605 IDEX_20210401 88464356.83544013 1504.002023309491 0.15285633003267937 2.601295014019884e-06 5526549.0096016945 94.05030449402986 50785 1971 4026001 TOMO_20200422 22149344.814200904 3236.0741646704114 0.3146826527592717 4.596954950699935e-05 13226734.14011281 1932.1910646754568 22513 1530 222907 ONT_20190414 810015234.476203 159673.43853643877 1.320923686498878 0.00026032724076830577 42427872.62093832 8361.672308529234 73439 11437 248801 WTC_20190723 51736468.61072195 5004.125727831344 1.7714173911024296 0.0001713434155611602 6617746.939507394 640.1130358265999 56134 20044 613904 LTC_20190601 7111085132.698092 829475.2371798389 114.67882141775863 0.013369077597417888 4955174985.01514 577666.5478809398 445824 203162 172197 BEL_20210104 18808076.550878752 561.196542310751 0.8906718779358448 2.7057534089225962e-05 5906948.453413529 179.44594760524092 None None 319671 COMP_20211028 0.0 0.0 7.942262794916737e-08 1.353e-12 189.01757131366398 0.0032199988918909656 2610 None 2752191 HBAR_20200605 196921750.62873286 20185.947453157103 0.04388056073814706 4.4891055871735714e-06 12432908.214320514 1271.9217072630142 39665 6519 130784 OMG_20210127 482653621.6491079 14810.166301421013 3.436947248651613 0.00010548542784295467 257837063.00772184 7913.433328315052 290994 42502 205184 BTG_20200329 124822869.66028574 19969.58488776266 7.10721318931532 0.001136778121976863 22505049.724398457 3599.6173857790495 74717 None 195914 EOS_20201018 2387599642.3679776 210188.87066865823 2.5260973581962336 0.00022227610409876518 1365267468.343985 120132.47744852406 191660 73037 85959 BAR_20210805 64205075.709343314 1614.274493109405 21.784417644558314 0.000547817510165536 7112654.728882779 178.86348250475308 None None 44064 LTO_20210204 60164518.55671606 1605.9316677197621 0.2209643553572267 5.890816894872779e-06 4296324.207540669 114.53819864618148 1774 1389 777868 ZIL_20200403 41039463.523857385 6051.501641637667 0.003941623636927404 5.781960311064245e-07 11850358.030194432 1738.3267940796457 68717 10569 227703 BCPT_20190329 4031301.4835119136 1001.3012401522785 0.04805410853989441 1.1935388904538183e-05 2324145.0436183214 577.2570922444683 10229 1588 1708834 BAT_20200625 368033484.0555734 39557.18972217706 0.24948041965044504 2.6837742074756316e-05 71634454.26350644 7706.043664202584 118793 40841 22299 WPR_20190629 6852576.804340712 552.9422981866335 0.0112777959225725 9.096741349011188e-07 476609.03629585495 38.44358558667656 34817 None 1193640 ARPA_20210421 103956457.17495036 1840.0831764358286 0.10540761319711012 1.869792242197702e-06 57375064.19685191 1017.7580791081799 38490 None 501259 REP_20201229 91637033.71694025 3379.380260430024 16.249706918882147 0.0005986756097064632 12101014.231323328 445.8284761176758 136742 10451 135870 BEAM_20210108 24652656.147997547 629.8167394616723 0.3132204101855965 7.937182941265261e-06 8766992.558847208 222.16056655774545 15637 1617 333744 MLN_20220115 113708338.73374139 2638.555720067554 78.43828521129433 0.0018186267309779412 17292608.937285192 400.9368738362804 31807 612 93129 PPT_20200217 17467956.574740697 1752.2928030387618 0.48092367189021923 4.823326421431999e-05 6241406.725403807 625.969228073587 None None 954834 POND_20210401 105417300.63003166 1792.2900240549016 0.20812089112150878 3.5417822492010157e-06 54599829.41823695 929.1748925388375 12580 366 81447 ETC_20200730 843194601.7609866 75934.04148011505 7.268567068591795 0.0006548757566049571 927227325.2880235 83540.35815623656 232536 25612 352262 SNT_20200621 98122830.23362221 10488.502557810265 0.0257175059262989 2.748672900769833e-06 14959054.050413216 1598.815476405701 110465 5700 161883 UNI_20210304 7933740066.481902 156005.88765277178 25.486634117740195 0.0005030091927098673 925993783.7850428 18275.594316781797 None None 2571 STX_20211011 2246810601.713473 41056.20094792595 2.132346629771709 3.8958586381732655e-05 999980836.9890273 18269.937576746237 85172 None 80462 EGLD_20210624 1165178259.6978533 34562.691783405346 65.22792289160886 0.0019354609829060467 53968996.99536814 1601.3830172805663 257216 9201 30591 XZC_20200801 60297288.36858005 5320.2050216504185 5.650277715507449 0.0004984722255330859 12924514.901991975 1140.2115137543951 64693 4143 546853 CHZ_20191216 29793487.34653796 4186.690339203211 0.007901127550314845 1.1112384680107764e-06 2324406.862361739 326.91160904770703 14250 None 276661 NEO_20190314 578826727.4218085 149668.3078981508 8.902353251260571 0.0023028512558714476 265272392.53821206 68620.3799223699 317553 97813 156064 GTO_20211104 33312621.414912842 529.1096074825114 0.05034980921944646 7.989678445341795e-07 7679293.308477871 121.857629995758 None None 1278658 ELF_20191019 38294740.654755354 4812.488884649101 0.08301671007355794 1.0430229259730266e-05 12321022.674102638 1548.0147441564066 84872 33550 963430 CHZ_20210318 3065244836.346479 52084.389680076434 0.5825483625909484 9.883370339602399e-06 3626640384.3256097 61528.67694525884 189665 None 48350 AMB_20211104 25633366.326837875 406.5040378349594 0.0417642469419733 6.623139076849771e-07 637326.7270239316 10.106978718753659 1921 102 928186 BLZ_20190530 13318281.742644623 1542.276636623239 0.0643615951739535 7.442801709040623e-06 661890.7154671329 76.54131838967426 36642 None 862077 GXS_20210708 32043464.576083533 943.0827199249519 0.45808264316815656 1.348231497275263e-05 4103530.391508396 120.7753449376381 None 27099 581243 DGB_20211104 810497713.6486858 12874.318890259825 0.05464934923801018 8.671944033707427e-07 39324503.70924132 624.0145584069861 230696 43172 126395 BAL_20211207 173173960.55761617 3430.9303212316595 16.064439079894374 0.00031812020630406245 33936412.96852364 672.0345877671057 111960 None 2445426 ARPA_20200530 0.0 0.0 0.011024303562725457 1.1741645542199267e-06 2037141.223604777 216.96962561738434 16708 None 1143848 WABI_20190224 7529361.3585843025 1830.4892636272073 0.1437541942234811 3.493065103035187e-05 163381.1460269524 39.6997793882402 34669 8014 1817938 BAL_20201229 151857440.01523048 5595.678112934501 14.272699771671295 0.0005258382369982104 44018061.37019443 1621.7240015742086 None None 83230 WABI_20190729 8472211.10905464 888.0556558038759 0.1479726268285375 1.5522187366608046e-05 403385.97792705405 42.314804194843084 36414 7993 1256578 LIT_20210508 155776065.22427115 2718.3448216726993 8.668347598139764 0.00015123433362758512 47376243.772194244 826.560607491493 48801 None 92801 SC_20190914 73228077.01932906 7071.8006552921 0.0017346635816915476 1.675738531644384e-07 6801310.471512072 657.0275725553238 108864 30596 202127 DGD_20190414 38972240.20558339 7680.4416730072235 19.47195112542286 0.003838478682554449 588038.6324257118 115.919238937364 16584 3319 526457 HBAR_20210610 1891985970.8562546 50404.67399276925 0.21899077080517065 5.846980365775278e-06 102908470.92831731 2747.621768613914 111917 21282 35493 FUN_20190405 32611918.146567162 6651.04634836481 0.005420930207117433 1.1061380206332577e-06 1291804.8544455871 263.5921161399157 36607 17766 523376 TRB_20201115 36355146.198793866 2259.148501577633 23.367370484346026 0.0014526471580803442 34457262.41728445 2142.05720576171 10560 None 195331 RDN_20211028 29816039.66082404 509.4925071322249 0.5841190251916637 9.979482152787743e-06 1067924.057786468 18.2451326109705 31947 4839 1118840 EPS_20210703 84659752.998701 2500.4380714754743 0.38021042913348957 1.122952250217805e-05 2996176.9160978966 88.4921441437236 17826 None 20273 DCR_20210809 1996835466.4848247 45390.52973212552 151.2564881223492 0.00343855767058162 34088344.00950068 774.9402238962488 47773 11466 143950 IRIS_20211028 123400320.0123655 2108.3544044077717 0.10794605753333857 1.8442230233200855e-06 11377996.751759445 194.38934638604334 29670 None 502613 LINK_20190626 799714870.0357814 67735.43670238521 2.195210279387295 0.000185677019649866 239498832.40824085 20257.480492300154 19961 7938 223883 BTG_20190702 460350129.3059055 43441.90201180951 26.28300791265054 0.0024760334625955885 13487659.979739364 1270.6269218855994 74545 None 363617 RVN_20190411 215674674.98589754 40610.57266687572 0.06538806054996468 1.2320720321734562e-05 33977424.4908484 6402.183225555596 23199 6309 225475 RLC_20210107 73155259.1139047 1995.8792486528089 1.0313942801923093 2.7943964405119745e-05 8233936.100487716 223.08521748167718 33740 3895 542862 CKB_20210731 286949983.9529178 6874.699069057318 0.01052971862742342 2.520794352245369e-07 19909889.966992017 476.6389298562026 50394 5233 117925 MDT_20200730 7168208.209707155 645.5342792722191 0.011810487345176587 1.0641413146588811e-06 9502440.543715531 856.1830919523422 13889 62 598192 GTO_20200117 5104534.756016458 586.3871894764403 0.0077078646442130935 8.848662582709213e-07 543531.6929758798 62.39767790633369 16999 None 3211163 WAVES_20191216 71927699.88297488 10107.5447368249 0.7185845664074911 0.00010106390608502819 34943531.48327825 4914.563920793447 141228 56864 23349 RUNE_20210511 4010148920.9222584 71835.13985928714 16.62019543460766 0.00029745102133384377 142850958.15157267 2556.5983004162263 1483 4405 74862 APPC_20210111 3692014.5573072913 95.74986160781377 0.03252100882248604 8.479576225179391e-07 873999.2086504388 22.788785400081338 24251 3124 538163 MITH_20210809 28271773.520502944 642.6522355501544 0.04549473391721094 1.0342424244495976e-06 8855835.029491952 201.32176853907242 32744 2753 709591 SAND_20201018 26114954.315242484 2298.270338540359 0.04319454726612161 3.800247567677197e-06 2787076.3431993644 245.20641526624448 47996 None 78154 PSG_20211207 50168190.135878146 993.9344468664075 16.062514001814083 0.00031802439581357753 26233545.685951058 519.4023498364097 10911593 None 16273 LRC_20210509 716562132.1677597 12217.3102531388 0.5772938417193465 9.82753313760577e-06 72369413.62868193 1231.977130514288 73485 10254 161207 QKC_20190816 62408308.81625244 6065.477880908117 0.015605819956559956 1.5143594999951983e-06 5346737.35244055 518.837364918078 51377 9238 287849 ALGO_20200907 303546845.9858982 29477.760199873148 0.3761426652373253 3.662836471659461e-05 170378839.01026314 16591.30652280655 26068 1273 193545 CELO_20210217 444964459.06140256 9047.740751518022 4.539170873644284 9.224892447950189e-05 33550489.091116417 681.8418210222442 15260 None 108318 QKC_20200523 10620226.228392188 1160.1494160221243 0.0030081675891131658 3.2861106691647814e-07 1708481.247239937 186.63383233506093 49356 9188 750672 FUEL_20200607 3255186.0059378794 336.57298960844815 0.003281313731303962 3.4e-07 134951.98853557062 13.98332493 1 1466 None COTI_20211202 414033437.05612284 7243.486833512144 0.47642409861244495 8.333685270351699e-06 105227113.2197303 1840.649215761543 202845 9519 57032 ZEC_20200403 311638358.16025424 45952.8432896724 32.318494797832365 0.00474079393282887 438808828.8753878 64368.78470415981 72719 15665 146498 DNT_20210220 247529758.13924828 4432.484586153781 0.33032166206431174 5.912441880362528e-06 41395333.743928865 740.9368896658623 63758 8759 221054 OCEAN_20210916 371258237.57595474 7703.659915104536 0.8546266543801592 1.7728494203976076e-05 51512126.28439358 1068.5747133989187 122596 3522 164297 NAS_20210318 36568972.54084399 621.3769919559011 0.8054667625075708 1.3665348357854241e-05 16866266.529338133 286.1488746007151 None 4847 502889 KSM_20210325 3894045751.9569163 73692.02452709578 424.12136599190325 0.008050060585639403 600280100.9346564 11393.651837313875 None None 84869 DNT_20191102 4638626.663080032 502.3743253510432 0.0061747771160972935 6.687430813482815e-07 480508.0258993941 52.04016465871049 59851 6226 369438 BRD_20201124 5281753.72408254 288.40044106961636 0.07272021744547613 3.9609645738959465e-06 302728.02339356777 16.4891555376126 245 None None CHZ_20200315 26971343.473996554 5216.755161858228 0.0056396720889534515 1.0908165738796324e-06 1798209.9695628209 347.80696593278543 19758 None 294872 SNT_20210805 311514751.4844966 7832.6874023201835 0.08050172837258901 2.0244409163235063e-06 29691954.15266657 746.6871592377794 133787 6035 133680 YOYO_20190123 5164462.90610063 1445.9362928975938 0.017686516801718132 4.951836619513328e-06 2641932.9567089127 739.6832574777776 6892 None 754371 XMR_20191012 930437754.6749585 112580.63243106371 53.98559398246378 0.006529226502476114 83834077.18657696 10139.217487447297 320037 161677 83445 SNX_20210428 2587701930.2142887 46968.189718920876 17.025306309086393 0.0003089579537413649 180191722.0989172 3269.93621906833 117519 6158 27259 STRAX_20210428 230290823.86020178 4179.903017151918 2.280829604878461 4.1407768512216225e-05 15696654.785278568 284.9679986504826 155682 10628 156260 RAMP_20210825 103876582.72410327 2161.628859886932 0.31674871078924927 6.5957486880784046e-06 17289609.998218864 360.0264770738568 32017 None 126255 BTCB_20190826 0.0 0.0 10114.739118101728 0.999988082869289 86156.29441562208 8.517794346827309 None None 60594 UTK_20210218 191326647.95397192 3666.8686692520773 0.4242099126330583 8.135899227679361e-06 12463743.113121657 239.04146260663816 60912 3364 80432 VIA_20190716 7809114.640273229 714.9427496663701 0.3373395782097412 3.088422909976993e-05 283887.9925653937 25.99061114498726 41027 2233 1839156 ICX_20210814 798567670.3781108 16754.52037643522 1.2206125055412806 2.5568361142247502e-05 52629256.08128524 1102.4332620100438 142899 32812 233721 LINK_20200105 664597338.4569734 90437.30528167264 1.8244206172608568 0.0002481096703625384 71763889.40952957 9759.435284207942 39202 12057 107276 ETH_20190803 23340842011.61525 2217700.771858608 217.79546207706508 0.020692767408550135 7476612908.300348 710353.6980971588 447412 443994 31061 AMB_20191220 2155447.2010695403 301.8441933728951 0.015026658294930962 2.10291213061046e-06 221906.27231392398 31.054768315648506 19203 5544 683323 NAV_20210418 55976945.01742899 929.3112294265075 0.7812915574036877 1.2997657379972492e-05 1632971.227198925 27.166299598855314 51101 13967 446539 LTO_20210617 64952494.61751024 1698.146420343388 0.2297790078980436 6.007441374668926e-06 9112661.503201395 238.24534820855106 10224 4269 208240 OXT_20210616 194875580.79178098 4825.427038206222 0.32898950802584515 8.15119813524847e-06 36953543.69215517 915.5783059520998 65261 4249 105017 TOMO_20210125 99306434.5957491 3084.1170701887195 1.2946850779188117 4.0128134750922645e-05 10601940.70903557 328.6019995513923 37315 1722 196124 ENJ_20201115 130370643.74439521 8101.350917111032 0.141024797774559 8.7668944968928e-06 4869467.563375745 302.7134876832146 67034 15956 82312 CKB_20210617 455579765.66215193 11910.922994171 0.01710618546291478 4.472426567762937e-07 23801657.156156044 622.2963269792501 47579 4768 116696 GXS_20200907 40227187.36523147 3904.107813474797 0.5743483003038498 5.583617655581851e-05 9416833.253407696 915.4723081026075 None None 737078 PERL_20200506 4917911.649192515 548.4432269928066 0.01404882762501057 1.5638174863488847e-06 1712863.3591471142 190.66400017549734 11652 477 557708 MDX_20210814 876857967.6704419 18397.10675942823 1.4374362511064993 3.0131591086412766e-05 40063403.964814454 839.8105341146833 None None 12116 TROY_20210304 14460808.152823538 284.4065020734594 0.007605839167845773 1.501103284970927e-07 5012854.080499309 98.93466797364196 None None 606363 CKB_20211225 625288208.5241477 12297.672873523614 0.021373158928333698 4.204896376245833e-07 15050642.595688375 296.1021939853941 None 14745 74070 QKC_20201111 29626980.998671558 1936.9636197715452 0.005029613350885345 3.2924510845405794e-07 4439909.350417298 290.64230858759964 64258 9215 94365 FTM_20200411 7010468.617150837 1022.322180141208 0.0033066532959550843 4.818395282006498e-07 2280834.548717543 332.3590786497536 21463 2333 311485 STX_20201224 240563713.03922874 10289.283862084065 0.2622851552431869 1.1247540145501519e-05 2319295.7554894867 99.45805775768126 45988 None 97569 AST_20210114 20436241.437192485 548.8361486528955 0.11765016043839116 3.1480558512433877e-06 4989903.040567548 133.51867439417364 34842 3461 211626 NBS_20210809 0.0 0.0 0.012751434268730507 2.89936368135274e-07 3177895.5982127846 72.25755853350127 None None 2066443 QUICK_20210813 230535623.1298391 5185.311502500889 639.8745287750414 0.014407716016946561 24406830.963553596 549.5556919099146 44467 2013 4564 EOS_20211021 4708154070.465919 71025.97685573211 4.846902827710639 7.314903740421765e-05 1038954395.7320911 15679.809696242626 None 94766 79308 ARDR_20190515 77489650.42266901 9701.891462432537 0.07761658234621802 9.7115883803957e-06 937993.678375955 117.36420533394453 68686 6557 1327077 YOYO_20200430 1510766.2857508212 173.11477390223033 0.00866867750253837 9.885963807390197e-07 749396.2501168599 85.46291177494886 7463 None 3352047 DIA_20211207 84096379.8130749 1666.121271797656 1.489054029704469 2.9482029281160707e-05 14724544.042950176 291.53370526934793 39361 446 276114 AMB_20210513 9776208.770590406 189.54152212471536 0.06621934878264774 1.3104238913446303e-06 2305024.552826889 45.61445105832636 25716 5624 453287 GRS_20200331 11118880.196734687 1734.3283380559196 0.1487681222336027 2.3204924023273078e-05 8154442.401310593 1271.9338896907068 37531 106842 None TNT_20190726 18023695.181135595 1819.5053707986663 0.04203275793152674 4.246396900445032e-06 666273.9103137088 67.31091669531945 17588 2546 635699 LSK_20191213 88654152.96504657 12306.047749593468 0.6454756868327791 8.967080458220406e-05 2827944.8112097527 392.8638858258696 179419 31108 158103 AAVE_20211204 3039015831.7906 56605.0215502188 226.170428387568 0.004217728068558839 150584048.60365966 2808.159196588385 None 14341 14216 NANO_20200502 84215274.44002186 9503.906593370346 0.630451887926679 7.138642847663228e-05 3665596.4443838587 415.05758553876893 97651 50758 290525 DUSK_20190826 15642468.890386486 1549.4501381538757 0.17094983858779517 1.69332765098245e-05 13982641.016815735 1385.0374392354565 20524 13308 200786 COCOS_20200421 6648732.14332503 971.1314113216728 0.00029441193138142073 4.3004907899522944e-08 646539.1066258398 94.44031226391635 14928 218 64758 XTZ_20210430 4023154582.0862613 75071.52181105888 5.233309636337316 9.76468011514398e-05 211503208.24378327 3946.376796601433 107584 43719 96118 CELR_20190915 16856293.169472788 1628.3847886738806 0.005182956418145364 5.008090063585108e-07 3906935.844863156 377.51208007890483 18337 None 503834 ZEN_20190703 61552829.734588936 5703.13762115085 9.074262679038423 0.0008390319468886969 885368.2093828362 81.86364432096855 None 1696 233714 BEAM_20201018 17714362.508908674 1558.9686058387485 0.24270006103291317 2.135754118583324e-05 3683116.069277217 324.1132400503385 16081 1573 354475 XLM_20201031 1604963483.2629871 118158.04580284252 0.07683146863898632 5.661173346615233e-06 101874093.63099785 7506.3891630693515 291267 111874 45768 GO_20190530 17182885.711071435 1987.0059230773786 0.02384666680358733 2.7577159112897447e-06 833512.906595235 96.39048608828037 9631 665 859929 XTZ_20210110 2008366587.0960104 49638.736697748354 2.643369401848031 6.559671468875597e-05 224096425.36076087 5561.080213337901 None 31905 186076 WBTC_20210703 6618054222.6198 195799.09032713244 33894.568793684666 1.0009813604414144 264832422.11903158 7821.085430981967 None None 181430 AST_20201015 25052017.50752836 2194.7462293727517 0.14546432923510982 1.2743483211665293e-05 21883992.996568732 1917.1593394916188 33866 3470 145555 TRX_20190302 1541016108.721321 403064.36834123766 0.02351134194749198 6.154384299480812e-06 90165211.19531389 23601.858259690074 391232 70121 78443 COMP_20210401 81428.31623306242 1.3846048792612717 8.828525029775433e-07 1.5012e-11 97.82596473133617 0.0016634300492934931 2325 None 1665764 WAN_20200523 18427596.571191747 2013.06893909646 0.17329580476404235 1.896408019908636e-05 935085.9939483446 102.32818853534225 104231 16185 906142 AGIX_20211011 341353549.17380524 6238.425609638846 0.3508506437002252 6.410142196789603e-06 4158410.2203483735 75.97535106075439 None None 126140 ANKR_20191020 9152485.420175944 1151.7514292124322 0.002290810162593873 2.881672031423452e-07 2692503.2571251984 338.69726340784405 None None 5007 CVC_20210508 400407087.83096814 6987.865121294319 0.598241769858922 1.043873006826408e-05 71034402.54971239 1239.480409319665 102364 9680 107274 NAS_20200403 12093055.67823378 1782.043995600323 0.2664486379974591 3.908530067166348e-05 4774712.640962879 700.4017006632481 23535 4965 1093908 SYS_20200412 10997871.345368907 1598.108208427235 0.018845547832850213 2.738459447124563e-06 232365.05365138417 33.765124898308734 58463 4509 925060 SNX_20201106 413595162.9209857 26612.3067221408 3.1641166934287948 0.00020308019010218208 48900494.52034461 3138.5447142029616 42006 2479 34400 IOTX_20210804 193017161.21167505 5023.575204069751 0.020261546740636422 5.274649723994319e-07 12612165.345110351 328.33008905058284 93156 5082 162985 COS_20210310 72266461.01575156 1322.1648829309793 0.024102699144345555 4.4063094851339603e-07 68496580.35558344 1252.2129986875495 16522 None 300118 TOMO_20200704 40346938.05203682 4448.812225894588 0.5679162051577384 6.265533471030502e-05 6897240.134923488 760.9377674140349 27491 1576 149165 KAVA_20211028 482002670.7765991 8235.596754448645 5.291621842788257 9.035528953740937e-05 96057264.72183739 1640.193162695828 138325 None 46204 SYS_20210324 175783772.5650516 3222.619861631843 0.2886864416169892 5.292449052397307e-06 8111435.543640418 148.7058384732786 63328 4855 261664 RLC_20200207 54198399.31411578 5564.923471857184 0.7716743797914509 7.923455076074694e-05 1199086.6339001579 123.12070122889389 28026 3534 239089 OST_20200621 6819199.9527069405 728.9131588367826 0.009826355368774447 1.0498343240545704e-06 319981.24452254485 34.1863570923716 17657 755 855262 SNGLS_20210221 13007759.999839788 231.30947026290423 0.014615460673977291 2.5989828119427437e-07 1006154.879560981 17.891870098814334 9162 2117 2616688 TFUEL_20190714 0.0 0.0 0.008702153706065741 7.641492080125229e-07 4020399.2374940524 353.0373051310043 70188 4016 256073 GXS_20210823 51555497.83845535 1044.9178254895044 0.7352503006057408 1.492173744021331e-05 8079115.420912206 163.96380791780814 None 27008 713331 LEND_20190702 8560017.457644014 806.6855277185227 0.007565926138153433 7.12760364257156e-07 1962191.7144910146 184.85145845004638 42038 5861 929610 SNGLS_20190324 9709011.640152395 2426.360788718583 0.01641688980482813 4.099884892343656e-06 118722.02738232269 29.649138919726724 None 2184 2467008 XVS_20201124 14434737.411387011 788.4019432328454 3.935266964472527 0.00021434827318531899 6184796.533519803 336.8768800010014 None None 200025 ZEC_20190903 341741360.4746492 33104.10882590016 46.66988497561072 0.00451726101497462 172025898.2879968 16650.692074952734 110 15331 175119 OXT_20210729 161737483.9772761 4044.751586920391 0.2736685539770879 6.837355075304151e-06 7679438.251945242 191.86364434044052 68145 4350 154434 FTT_20200319 61133203.17344444 11338.5350977266 2.11748898606436 0.0003930185038752174 11722446.476692287 2175.755532306171 8278 None 15714 CELR_20210108 26459490.936876 675.4762375759925 0.00672331673800886 1.7037266150704086e-07 7104283.904470606 180.02658569745552 26028 None 415548 ETH_20211007 423560000564.3804 7629845.810692044 3592.1761295000256 0.06475412084004567 24709364134.235626 445421.68684019503 1640913 1115920 4065 OAX_20191012 3709939.27947265 448.7870708074924 0.07102935276725418 8.592338787361292e-06 233204.12502005068 28.21043372517125 12250 None None ZEC_20210506 3231290557.964804 56426.16144066579 291.71843290152947 0.005090050781968684 2847758364.18862 49689.12846652053 75132 19114 85283 WRX_20210131 25643687.673740126 749.5640686342631 0.10765768907617444 3.1507046857557623e-06 3600247.296977337 105.36466206737838 54548 None 4666 ALGO_20190726 99543650.5195163 10050.998173196846 0.6081260312224931 6.149738686805189e-05 67445839.95844719 6820.531764159619 10555 516 261967 STEEM_20190915 52293265.753390886 5050.68381660069 0.16122743282760135 1.557196273827359e-05 279519.41052665986 26.99705483743329 11080 3773 235183 OCEAN_20211230 362747912.69465417 7806.324675587278 0.8320073253954497 1.7881229886676597e-05 22689469.822278164 487.6346800265635 141217 4260 84153 POWR_20210207 60533801.79676059 1543.736621861314 0.14146803286600687 3.601492106165124e-06 45676339.436426215 1162.8279024323376 81355 12579 369771 LUNA_20210527 2945935747.201312 75190.79395164421 7.366127755061191 0.00018789476046566874 809481947.6854396 20648.218673255305 76476 None 20297 YOYO_20190904 2122901.9508714257 200.8578237837228 0.012115788997216017 1.1483066508490595e-06 197367.3237630573 18.70602158798536 7556 None 893009 BCH_20210519 20398957614.973255 478079.09598028834 1099.7079597072075 0.025705596504995584 6896503202.180879 161205.27913417245 None 539755 272279 CFX_20210422 0.0 0.0 0.9445778503812459 1.746573548442367e-05 13189876.212419795 243.88766781418275 31578 None 146617 NEO_20210617 3411886308.803985 89202.19498766634 48.39991171745882 0.0012654197600734964 431342305.52664286 11277.480834168167 403224 111967 92050 SYS_20200323 8812174.230947692 1510.4173434351048 0.015074410600331548 2.585267563181559e-06 230887.75978713075 39.59734492705116 58689 4509 831215 NBS_20210731 0.0 0.0 0.01261428977486776 3.020713695186511e-07 2293710.766373617 54.926941178931095 None None 2054017 XTZ_20210212 3124741586.012986 65530.914503466076 4.111953754112434 8.614918292038483e-05 642383902.7533672 13458.528877680888 84335 35427 140734 DNT_20200127 4256463.920349793 496.0071136564073 0.005587805821142799 6.502192202206507e-07 77301.80359109747 8.995144080073572 59274 6143 608237 GTO_20190908 12215682.3585372 1166.7921641908117 0.01843187376771338 1.7606478372794475e-06 44439105.20091974 4244.90832829416 17352 None 900303 ZEC_20210430 2542604075.241839 47445.990420543334 230.12656590310306 0.004292193200088523 1395650000.9907494 26030.890525165825 74960 19002 91916 XMR_20191220 822465710.6112814 115174.01027911493 47.44095095858295 0.0066391441996224865 165735562.38074136 23193.93425759728 319965 163879 83347 XTZ_20210207 2397337486.2789717 60917.837252945545 3.1755235184475774 8.072297477404702e-05 381427954.91104096 9696.038780230057 83382 34463 140734 MITH_20210104 6159387.023951872 184.1182497548323 0.009840941881520118 2.9895590848384423e-07 5852476.062936222 177.79114228492796 23908 2117 507648 LINK_20200801 2972451669.8426394 262234.5056041278 7.770381435217357 0.0006857648103967362 639095620.3646768 56402.54478865331 69308 18791 63304 FET_20210519 347351205.67289853 8149.1303912386065 0.506211344629654 1.1832654712043428e-05 51789580.10518151 1210.5778062217453 62332 2662 111293 REP_20190903 89826762.18778624 8692.819231957854 8.166069289798749 0.0007902562938143504 7870555.083323367 761.658451536615 125823 10047 201886 KAVA_20200310 15237631.637313152 1924.679101712922 0.8257836619270362 0.00010419748790539763 4154535.325041883 524.2197978020155 17228 None 380992 SRM_20210617 204820259.06947505 5354.85246093048 4.096605589751015 0.00010709334827918815 76168751.35857172 1991.2013589109479 91966 None 25883 ETC_20211204 5903748826.492576 110095.768543841 44.93051705499406 0.0008378845292408117 1299904968.865515 24241.21364022032 582848 62338 219674 ADA_20201101 2891746978.3344765 209566.09872881757 0.09286959263589264 6.73909007787315e-06 367673987.30852777 26680.294910708286 165755 89508 32496 MKR_20210110 1388515711.4264781 34313.42829707974 1574.4408576988862 0.039084185718691086 458352309.5724043 11378.21513226061 None 18832 39675 LSK_20210710 367306294.70876044 10807.386745674557 2.53771562402607 7.467171276238391e-05 40443758.356375016 1190.0485138785095 196533 32569 337278 PERL_20200313 4826992.925251574 1032.7687635168875 0.014742171595431975 3.076366224362903e-06 3668592.0625695395 765.5542902344076 11556 475 686395 EZ_20210718 0.0 0.0 2.2828725164211208 7.229084085104183e-05 1854062.3762067729 58.711876025557046 35032 None 131496 LTC_20200109 2891096928.8105264 359260.27868250536 45.20246778781239 0.005633208113174503 2791396416.0488086 347868.55026999355 449088 210216 182245 EOS_20210220 5002416801.960274 89557.44843896141 5.261362149894494 9.411069976662708e-05 4962238038.795099 88760.2261419976 199045 78197 58943 DASH_20200518 708211712.6845003 73353.36611675125 75.00568369347003 0.00776291013828783 426937303.4448419 44186.9970130513 317819 34903 78138 BNB_20210110 6535325408.396228 161526.93400987002 44.009471856745336 0.0010917767804919606 627647722.2753556 15570.539263444296 None 87077 896 LTO_20200422 8300348.90179119 1212.0361363556165 0.039252654985463264 5.734116103361383e-06 1601765.9040340367 233.98956497434935 14683 424 889154 POLY_20210821 280998765.0214591 5718.548686064226 0.32405462725790457 6.593413051354004e-06 90525224.81134391 1841.881425358696 48604 5942 188790 FIRO_20211028 105764950.19801955 1807.2973559230438 8.498324915677436 0.0001452257851393192 6241281.957185324 106.65573292402802 76313 1480 198290 GRT_20210624 1742075562.216529 51657.02145133561 0.6047563955788657 1.795124247359887e-05 166987889.78720385 4956.772878533006 112913 15399 33300 BAT_20210725 796947267.9410686 23326.00038303961 0.5354084111850723 1.5670761182782662e-05 73817780.54718451 2160.5577832398467 208626 76595 27687 BAT_20210519 1634386268.2884734 38304.20771365355 1.1058398894787949 2.584892993376095e-05 293945970.0804929 6870.966454739877 200770 72741 22972 SAND_20220115 4526888401.647673 105011.27838161448 4.926640981376426 0.00011422942836270789 743651213.5741464 17242.34693555363 750648 None 4051 FRONT_20211202 64494844.76780678 1128.3329245741397 1.001949742025724 1.7526471390134813e-05 16782045.849689554 293.5576846976853 None None 319294 XTZ_20191015 760141855.626206 91072.68459272625 0.9373223654832956 0.00011229306902908632 18687716.209118206 2238.825278840404 44879 16862 176367 SC_20210825 1007718483.0312202 20970.20616617103 0.020526417772636328 4.278947418480653e-07 249255977.15286756 5196.002691716391 139984 48077 113075 BTS_20200314 41919904.88036226 7535.405120972224 0.01546748095390895 2.7803912132259264e-06 32372748.537195735 5819.234938708257 13331 7035 137133 AGIX_20210813 191481261.0570525 5830.0 0.25053046182384703 5.634664421708472e-06 2429861.0986000476 54.64984889383186 None None 210064 BEAM_20201124 21361508.200294998 1166.7408603433082 0.2825406747872886 1.5389579993434496e-05 9498688.642036514 517.3797677074326 16108 1591 425445 COMP_20200711 23204.126053732274 2.49895263175946 2.4378349711216697e-07 2.625805e-11 24.457778517462643 0.0026343603189225386 1828 None 1076754 ALPHA_20210314 389341302.44244397 6346.379763366919 1.546435562051481 2.5208545508141764e-05 98490642.83195703 1605.5023001811132 45994 None 36970 REN_20190803 96947782.16207226 9213.569103418455 0.12023093854903416 1.1426316682917984e-05 17512336.880273543 1664.3096150359124 8762 858 478249 NULS_20200113 18868350.314718444 2314.5442350642584 0.23885482238934555 2.9247182891755336e-05 2893382.5514095556 354.28754508857554 21679 5231 591161 DOCK_20190816 2923575.148797173 284.2070488694258 0.005297633118891384 5.142118946107133e-07 1014283.5350002045 98.450882969799 179 15204 201601 ATOM_20210809 3651797601.512588 83009.85754172123 13.129581779666921 0.00029853451589102547 285525326.4241486 6492.146248760608 None 33125 54848 POLY_20191203 11604798.816358969 1587.8943967231835 0.021090665736208103 2.8847309717389663e-06 3767881.8770234785 515.3618991667628 34975 5035 342968 CELR_20200421 5816828.355996743 849.450892470561 0.0015472131998530557 2.2599010016980082e-07 4987429.959093181 728.4773657259252 19339 None 1594945 STORJ_20201201 50565993.05786847 2571.9645878761335 0.3504164365871678 1.784988488860425e-05 21100235.982048236 1074.8262469367821 82371 8488 86448 XLM_20210723 6147785927.319026 190087.29535209754 0.2641732817262795 8.160163438205743e-06 1005347338.594841 31054.611357704813 603663 196362 24604 ETH_20210117 141369013157.282 3895570.01683295 1234.6318700828049 0.03411576896731452 38277998837.56892 1057710.7205130314 591908 535308 7694 WAN_20210718 87685045.46563686 2774.3477652652696 0.4973809241951691 1.5750369315280797e-05 1653282.709595576 52.353863994350924 None 16646 248498 CVC_20201129 55367985.68084904 3127.9521034551826 0.08231774248246757 4.6469649500985725e-06 12900448.30576082 728.2504270594768 85878 7996 225858 ADA_20190421 2369595754.887332 446186.73796928034 0.07620388916648492 1.4347536923538558e-05 136815464.5951843 25759.37988810441 150925 72687 113517 ADX_20200501 6816051.120809353 787.1151318515256 0.0738183814626988 8.563911313871287e-06 2033756.9195046227 235.9427766837533 None 3755 29399 QTUM_20210916 1347947277.0555766 27970.092929730334 13.017084060083018 0.0002700282025245581 201603789.169096 4182.097047249442 255162 16943 176771 BZRX_20210511 103966019.92680936 1862.0586040597282 0.7392356588582091 1.3230073172058455e-05 59813367.46129747 1070.4776192783331 None None 145743 JST_20210207 51951323.28851693 1324.5193698784822 0.036367401569958574 9.24826399982634e-07 181546610.11486092 4616.747158539678 None None 170314 ANKR_20200312 7119853.465433112 897.6428870599018 0.001780076716945414 2.2435991714961357e-07 2104101.8202473433 265.199867832169 None None 5490 ANT_20210112 116809883.97914095 3299.4606233116797 3.350149455436674 9.424125824115122e-05 45666965.765749425 1284.6329308788518 76540 2694 131856 REQ_20210112 20669808.10358743 583.0086023002278 0.026868592238691664 7.558668410411379e-07 673167.519808523 18.93753875040915 39461 27272 443928 MITH_20210724 24060322.33697837 719.6871008682151 0.038885944902663866 1.163147670975423e-06 7829326.453769509 234.18905861239404 32677 2748 479656 NEBL_20200518 7295525.981819101 751.8712688673828 0.4501804234001894 4.604194616101844e-05 135316.0380192863 13.839370646439539 39237 5965 1392040 DOCK_20211202 70448412.58601576 1560.1781752227776 0.09413468006750961 1.646618630318341e-06 20560401.767570563 359.64578169312625 56603 15264 178550 DUSK_20211221 202870041.51096565 4300.036536231038 0.5293285901070699 1.1222723834566926e-05 168323705.49663416 3568.7671078140565 34279 13908 291899 MATIC_20200320 30985064.666725248 5010.351516844188 0.01118450687893067 1.8118364666623466e-06 35358713.94375756 5727.942056906079 32798 1586 190232 KEY_20190207 6407617.933591483 1880.8072105740987 0.002588960890110457 7.600097224684994e-07 640091.4981587572 187.90386665490638 23460 2807 797344 QSP_20210902 37498935.84632327 771.4074791628456 0.05263594342639353 1.0818145525145825e-06 2120535.329238083 43.58287947282719 67681 8519 207889 POLY_20190426 38314532.44790625 7381.196469839114 0.08844188795750178 1.7025272854760488e-05 5339360.220974253 1027.8394856928228 34591 5054 292756 ZRX_20190805 127265779.47015966 11621.9947006311 0.2120801933956403 1.9368153168951072e-05 45868901.97067979 4188.962226200943 151312 15938 188207 FIO_20210421 70045062.99775423 1239.8339219818351 0.30280910972738306 5.3704861081182675e-06 8788001.069496175 155.86003242883865 69524 379 172858 STRAX_20210107 46434473.61412527 1266.861787260537 0.46175930007826116 1.2516855147887742e-05 2153646.9946555775 58.3786562982464 143730 10289 230712 ZEN_20191030 37207165.308489874 3953.881914422739 5.0087027865670635 0.0005323406259021145 2201387.469339844 233.97035783883072 38304 1859 95686 ZIL_20190302 142033625.88521424 37149.96447904911 0.01709341531884826 4.47351557324053e-06 5029623.928322514 1316.302245700657 56330 9995 179574 STORJ_20210422 266633319.90097094 4920.607226500977 1.848444798805481 3.4122667655039236e-05 112889348.31280561 2083.9603740188295 186 12672 56587 BLZ_20190213 7910812.77097708 2177.1375709343047 0.039057953555668316 1.0748805396755977e-05 217146.32279170895 59.75898258423997 34762 None 995474 ONT_20211202 858660460.3269429 15022.827641414062 0.9746363646107278 1.7043807907426474e-05 80623768.09556004 1409.896106988023 179412 20977 85093 MITH_20210108 5995496.027881172 153.05718122002284 0.009738950353626347 2.4679052864667684e-07 4971414.454154219 125.97846345993626 23949 2120 507648 POLS_20210704 89076942.89583096 2569.4864512743447 1.2364812764410233 3.5658597160436785e-05 18616428.97715759 536.8748836804629 379692 None 15425 CTK_20210711 45876275.072757095 1360.9434235434176 1.0111553602168506 2.9996446648847243e-05 2349773.929442917 69.70725873051846 78233 None 123040 ASR_20210217 0.0 0.0 6.455696848454478 0.00013119820945570879 2985429.3453890886 60.6724562454242 1946095 None 142530 CTSI_20210408 175064861.61915 3108.111214495795 0.5561682185678977 9.892020802497767e-06 46091854.57435068 819.7907918025289 30650 934 195693 SNX_20210620 1280747858.7616553 35926.79416513468 8.127865662991393 0.00022819363077603854 39544417.598744616 1110.2280233135994 None 6909 43067 RLC_20200701 43106084.54124353 4715.844449186538 0.6137534974115927 6.714518506472049e-05 1103139.462825591 120.6844501839927 30622 3598 559121 STX_20200229 68892058.8637968 7870.874070241648 0.12508722755701399 1.4318868097023574e-05 971619.0801904257 111.2222704229083 35784 None 32573 CELO_20220115 1946440007.6098914 45166.348159156056 5.051068868454511 0.00011711129124555596 104136306.17222543 2414.4468426349886 115662 None 35618 QKC_20210218 84441627.61601004 1618.6121855434906 0.013125031979934396 2.517732328258607e-07 14776385.224033589 283.45060667454555 64282 9250 339655 GAS_20210722 78421220.85124682 2436.948187284977 5.651305394325282 0.00017498809823945192 9003873.399404204 278.79765346474267 407031 112367 108336 BTG_20210115 240788099.9120607 6165.105728113267 13.785958666539214 0.00035208168429320366 48207791.09236899 1231.1860708717072 82790 None 356122 WRX_20200730 28696709.57363491 2584.287340735237 0.12514456930713216 1.1282552647884622e-05 2841964.4524812335 256.2205754197973 34518 None 19543 FORTH_20210707 140690111.8586842 4121.064994892039 16.48072386235839 0.0004825499966823984 19351186.37632507 566.596164081344 None None 63782 OAX_20200223 3079078.349084445 319.15408755402564 0.05897616107761757 6.109652098273546e-06 195064.37642481274 20.207749282863656 12051 None None NKN_20210110 15455327.734550385 381.9934811313801 0.02369404315984522 5.879811531043785e-07 1860218.0997692312 46.1623698390821 None 1024 376074 KNC_20200422 81969382.54667866 11969.358745858563 0.4559235052719917 6.660233083467289e-05 46975612.7217798 6862.303135239665 105099 7351 116749 MDT_20200711 7788020.938336293 838.8465443851254 0.01315347286459348 1.4167675508946542e-06 19505319.797416195 2100.928358866267 14021 63 566162 IOST_20200105 58384083.79823816 7943.936462763921 0.004865429240927256 6.616859660698735e-07 21491828.17517224 2922.833810647785 193001 52329 87170 ETH_20200407 18679968361.111393 2568335.776535847 169.85504979336824 0.023345059988286006 15337221519.354977 2107964.154486695 452783 456855 20344 MC_20220105 217164488.93332523 4718.351952510934 5.079646665945882 0.00011060156035069779 18693246.593184832 407.01693979764593 None None 41620 GTC_20211111 128019899.55102612 1974.4365406788943 9.033454266350521 0.00013910360461503551 20192518.314234484 310.9388724342213 68824 1421 25579 KAVA_20210203 113638870.22616242 3190.9225851164115 2.4110196508423094 6.788789439621185e-05 61639032.843967184 1735.591060377286 56756 None 91263 CRV_20201018 41167719.30112859 3622.9457808744164 0.4374042743876636 3.848803281931326e-05 23857587.12849831 2099.274401643035 40939 None 12005 MTL_20200325 13394012.698916925 1981.5262393111439 0.20706630352121155 3.0680686526513804e-05 1488009.0432653492 220.47594528274013 34710 None 635134 1INCH_20211230 1011353682.8205929 21764.302243123042 2.403654092162337 5.167115371396309e-05 103450477.00497098 2223.8663693484746 659630 None 4013 VIB_20200523 2654065.1299117906 289.9355895232141 0.014510783518157423 1.5881001364526918e-06 1456355.773462968 159.38758921364496 31025 1104 None XZC_20190603 58921108.77414397 6738.096443649197 7.692242881706694 0.0008796139107625824 7469054.556931872 854.0921535572024 60320 3977 387504 ARPA_20200801 0.0 0.0 0.023054554718014826 2.035512861698076e-06 7003273.134506102 618.3269515994042 18951 None 446273 ATOM_20200113 801127778.3907889 98211.45816595305 4.250241306102097 0.000520431547373297 116024160.82308415 14206.871845877133 29731 7845 112563 ELF_20201224 42485870.090243794 1817.0169498595628 0.09039648977606096 3.8771000422629475e-06 14907312.00734103 639.3737207813001 82304 33321 543167 CELR_20190603 49117448.82873858 5616.10927696959 0.017278992029949626 1.975866075373752e-06 43468055.95919339 4970.605749649649 14559 None 333919 FIO_20211216 65710066.261864565 1346.893380575654 0.14151575047990456 2.9000122123495807e-06 4164268.1431873124 85.33628539429884 None 552 389055 NBS_20210120 0.0 0.0 0.014463930328480076 3.9976826052507474e-07 3595397.2677195533 99.37310806750077 None None 755646 QSP_20190421 0.0 0.0 0.027478334063106596 5.174075879888064e-06 235279.33587732769 44.30229045193194 57256 8550 831378 SKY_20190511 16580586.562406775 2601.9721594830166 1.1049753437823115 0.00017340353585757582 646436.1299551921 101.44507863552938 15631 3709 424998 IOTX_20210115 41454954.916704476 1061.426438739618 0.007294125546252642 1.859370713031893e-07 2260845.0496545876 57.631981316671364 31070 2016 689535 BAND_20201106 95665326.48404434 6155.47578720958 4.219125160516905 0.0002707930277799517 77223283.60545227 4956.365594062717 38311 2684 146700 WAVES_20201208 900265986.5059606 46871.6223359781 8.988648754291564 0.00046843944025666074 163747747.2591541 8533.641169674656 None 57163 211690 XRP_20210418 71413494678.56975 1185518.29015434 1.5483167850731618 2.5757978436266765e-05 13404046754.476355 222991.2835597135 1442436 291077 11104 WAVES_20200127 87123713.17544098 10160.31939113657 0.8698717169675156 0.0001012645030916503 58464189.37521348 6806.000206991696 141327 56852 28931 GO_20190528 17201354.453265637 1950.7703163776755 0.023919191432642952 2.7179489964330466e-06 1114648.7891879664 126.65806728793727 9649 664 859929 AST_20200711 11253496.515051143 1211.9672587229527 0.06595648601054782 7.103938319484612e-06 2341331.6271502697 252.1764950011762 32175 3460 274586 ARDR_20191024 48847325.24476298 6545.655844598821 0.048918528688285605 6.552327759808609e-06 3391529.539935684 454.2739479009116 66371 6501 1346230 STORJ_20210207 72752058.23095846 1855.3273257806131 0.49751379485462605 1.2651822015713691e-05 67920214.26138759 1727.2173575715763 84092 8728 105291 NULS_20190531 53617454.62865136 6452.534661278 0.7475916015495163 8.997091090013777e-05 6650649.511417329 800.3902041964566 20846 5315 663038 POA_20190719 4496517.936505607 418.9669203827424 0.020379953459803524 1.9100970338881495e-06 144673.01202068815 13.55937792936673 17784 None 582366 QLC_20210201 5627458.788829815 170.2800057058083 0.023443913301923594 7.090546152756413e-07 1371073.0462846546 41.46772165670824 29887 5589 940522 YOYO_20190419 7072123.356485387 1340.0116091933753 0.024200234336304347 4.585264823095403e-06 1901725.1671185105 360.3235155001133 7413 None 1423576 IOTX_20201208 41411963.8029531 2156.087991348862 0.00721152669095329 3.7555954790127504e-07 1623934.1098123079 84.57071383617794 29316 2005 446227 OAX_20200407 1799249.5517752983 246.98023986655684 0.0343820499595775 4.719571522328153e-06 69699.88035536636 9.567596196899624 12016 None None SNT_20200520 104380998.82911876 10700.168264874366 0.02714830752100521 2.780919981842564e-06 17025303.297422912 1743.976345490446 110360 5688 159898 REP_20210704 104808680.70763093 3024.9323717421903 16.297242620608866 0.0004696763861096056 14610953.984548809 421.078597455417 151361 11228 153452 LEND_20190512 9013490.383494355 1237.48627644013 0.008050458067627133 1.106339699795605e-06 1864086.6106991924 256.173375968135 11568 5898 565182 APPC_20200223 4702620.97765275 487.1751840390686 0.0436336214272116 4.520237360942959e-06 334535.6493090826 34.65631527048023 24962 3240 775270 BEL_20210127 34555816.6671289 1061.0368932435506 1.538368217414898 4.7230151773341806e-05 11349025.639455013 348.4316676352942 10463 None 430969 PSG_20210814 117802953.50360642 2472.3945052442623 40.47719465602502 0.0008478821299076862 112663633.82470658 2359.9827661528143 9891490 None 33865 CND_20190723 17207905.477209933 1663.1774608552803 0.010011276893569742 9.683580988245886e-07 323029.8634484469 31.245623086643615 36129 6134 486164 GTO_20201231 13873312.373817204 480.4270936083212 0.021073685625715266 7.308684879436884e-07 16077768.778875262 557.6022517193629 16507 None 787769 NEBL_20190729 13203268.297919922 1385.010246586934 0.8576811449127245 8.996993374706179e-05 1350151.2264520505 141.6295754114613 40517 6154 884677 FIL_20201106 848688650.7816124 54600.6016166118 29.437496731232574 0.001889365346330773 53073486.40389357 3406.376803571209 39809 None 36454 OST_20190920 8495678.580614291 829.6198271974682 0.012777263019417057 1.2467285978957601e-06 662498.2446816429 64.6426004102113 17971 752 557470 ORN_20201018 21220729.787084308 1867.5203473583122 1.7184485759773573 0.00015120688254720004 1092140.6285665275 96.0978303669996 14459 None 151682 ARDR_20211021 326433491.6044702 4923.5808637956225 0.327446685983966 4.941797005705971e-06 17910772.080322694 270.3078199446335 74145 7359 None HIVE_20210418 219459047.57698905 3640.4908168048037 0.5898511376939343 9.786824958166689e-06 15452003.927842721 256.3800390144708 18983 161 113776 PIVX_20210221 59278985.74391263 1054.465734141993 0.9073408546622506 1.6139949569341325e-05 3695583.7610828234 65.73773816826136 65656 9091 316171 KEY_20191022 3704241.0230980976 451.03949803922194 0.0014168362335898663 1.7251822967709497e-07 93591.98416839144 11.3960407264482 23638 2797 382534 BNT_20200313 9393157.75681708 1951.8211671611875 0.1388524966357582 2.8717822888098533e-05 2234992.2600956187 462.24672538706034 745 5027 123445 IOST_20210212 485275689.5790639 10181.147195146234 0.0262972246898465 5.507713605814611e-07 373399890.95983577 7820.519785280749 203820 52352 229978 GO_20190811 8263545.492192444 729.5822706403535 0.010820505866444733 9.554813779481302e-07 198976.92072397633 17.570226821168728 10144 686 898219 BCD_20211207 278446434.269575 5513.007429286945 1.4798630148499419 2.9300054843927875e-05 4773142.6025879895 94.50424710282923 35916 None 1522827 FET_20190515 0 0 0.14181137003780084 1.7741940858413143e-05 12518210.81743997 1566.1463246350836 8271 185 174758 ETH_20210408 229324263726.26553 4071312.8447006973 1989.1480619041722 0.035345375084247 39604003543.54452 703727.584131877 881167 765652 6152 FIL_20210708 4870594002.520488 143346.37982223046 56.54576219303808 0.0016642581587206107 228042534.28257254 6711.761120479205 95011 None 26863 FIRO_20211011 98632274.52007943 1802.559571424576 7.9586308281209 0.00014540647485201014 9647766.93054461 176.26747739165006 75645 1378 214051 KNC_20210506 451945078.8738281 7894.556353329184 3.2782203672254653 5.7183749588847866e-05 111414753.83313881 1943.467085798614 160466 10680 105580 GTC_20210727 96815639.52924657 2585.9989170007643 6.724217713241277 0.00017966983530878195 40792335.90031966 1089.9635594246804 None 1050 25375 BTS_20200707 64048369.26854589 6855.105830039291 0.023632375469779452 2.5293764183332906e-06 8518638.043681012 911.751009184718 13105 6973 134669 WTC_20200901 18805108.556211505 1608.9068323634376 0.6445933341998865 5.5210750814415646e-05 5007814.3584904745 428.92964602971375 55450 19436 628603 IRIS_20211125 152947064.05590305 2675.184900176765 0.1320792611632537 2.3091205068552302e-06 40154648.77245149 702.017274395789 32058 None 451561 WTC_20211202 27295557.92378262 477.5339302064314 0.9356549225815973 1.636257162159885e-05 5134220.795243515 89.78636616529734 67054 20355 434582 HBAR_20210314 2053449070.1605766 33466.935279529374 0.27614589047754395 4.5014719124506e-06 245220723.50925487 3997.3587777055486 None 11245 84941 CVC_20190704 24597904.38229802 2049.604845847571 0.07197563703304839 5.9978542657710865e-06 3854399.554907064 321.1937784138065 88633 8162 447156 ONT_20190130 324325406.7895039 94978.6084461843 0.5425328165341415 0.0001589419973701572 18679003.321709517 5472.255329737239 67041 10990 257742 NMR_20201111 124572730.29115309 8144.361607427892 23.933022223861354 0.0015668460892719945 5568662.328682042 364.5689504049608 21549 1924 1007007 AE_20200607 51508890.26937755 5325.679617761279 0.14388938532798223 1.4877213674102593e-05 10427897.173975436 1078.1758089742384 25301 6343 486173 DENT_20190914 33020928.111928564 3188.825333856508 0.0004483847155356974 4.331236104077677e-08 256065.6492466312 24.735026565436137 46475 10189 253321 TFUEL_20191017 0.0 0.0 0.003420265133859678 4.272042496019031e-07 532652.8200312124 66.53038269667293 69748 4024 413739 LUN_20190530 7053298.767182833 815.6075943372092 2.6090898746531472 0.0003017018825257233 369092.9038442115 42.68002608821134 31517 2231 1883095 SNX_20201018 496267209.31276304 43688.16380449937 3.9559417397445262 0.00034812182689930484 22541932.396617167 1983.684089406679 None 2414 30438 ONG_20200502 0.0 0.0 0.09620742306470036 1.0893621634023984e-05 10391998.00350915 1176.6918878559813 84138 16476 182484 MANA_20190805 54244104.50293342 4953.824813642405 0.04087759112307907 3.732397438418465e-06 11004138.279296948 1004.7514150720534 45619 6349 132863 TFUEL_20210304 0.0 0.0 0.1282431227428865 2.5310313375821866e-06 82791587.04729713 1633.9909448789206 89898 4578 39899 GTC_20210821 117617099.100518 2393.31812316947 8.286393170093449 0.0001684749447035342 18999208.87718406 386.28274078846084 56352 1106 24544 DOGE_20200217 345487246.86260724 34741.74638710882 0.0028394801353567077 2.8541974386109067e-07 129451161.48156218 13012.211951236844 139663 148768 115261 SNM_20190522 11051517.103409346 1388.3858070263389 0.027426131623504418 3.448545531808496e-06 311300.7550451471 39.14277239665565 31487 10012 15277898 WAN_20190810 25970660.985791545 2189.3970487320316 0.24467281508124472 2.0626074357383513e-05 3556684.692737142 299.83078795984903 108015 16888 529577 LSK_20210428 699213272.2423583 12691.099094997775 4.865658253054202 8.834757867186349e-05 37321143.18549723 677.6539703820972 194295 32091 143089 TORN_20210804 31344961.03481403 815.801911283626 31.651361490708354 0.0008239208488215923 5970032.8989234045 155.40672950254566 None None 138254 STEEM_20210523 233064312.5091664 6200.278577362726 0.6103692952034679 1.6252753333750676e-05 5518540.389310374 146.94624453529087 13858 3946 198346 SUSHI_20210127 1024122213.5036335 31445.688642955964 8.071799390110874 0.00024781603387486395 1130498670.4221568 34707.96079843823 27181 None None RLC_20210722 166982793.01963913 5189.008923093324 2.360257300788277 7.308120827388493e-05 9350054.043302318 289.5079475794627 45844 7726 149507 LPT_20210930 406597787.88102514 9786.850009737333 16.860020406544063 0.0004054310874187847 29220133.74814447 702.6533962814382 16426 1373 120075 SC_20190818 82945117.0614772 8114.703204456492 0.001981845940566038 1.9388834658863174e-07 6628283.727224523 648.4595731113404 109365 30720 198456 AERGO_20210128 11918909.97663816 393.7948908422782 0.04514335062007452 1.4879690573366283e-06 1743048.886282028 57.45259872357361 None None 562212 OMG_20211125 1212987983.4669104 21216.27608543364 8.642589114735426 0.00015109699722269207 381884541.97252053 6676.426104699457 None 6386 125625 KMD_20190213 85933303.60516956 23649.73477310744 0.768653716158526 0.0002115346161366474 5478923.955199812 1507.8078090837557 94829 8260 249846 GO_20200523 7563358.696220582 826.2370194499047 0.007800705994061859 8.536456741252738e-07 1310399.5416786848 143.3994437146172 10737 675 1263025 PHA_20210304 102343063.01520848 2012.3473356968989 0.6917953008975666 1.3653947629462201e-05 46392490.04175755 915.6474879327016 None None 160856 QLC_20201018 3954962.706507775 348.405520322561 0.016496520892494104 1.451689475828445e-06 76589.62557965702 6.739866795926522 27618 5612 940522 CELR_20200511 7053080.427333864 805.7533597120017 0.0018639895576827207 2.129051158267964e-07 2363946.5183670465 270.01026117709443 19459 None 1399236 HARD_20210117 28881589.160177927 796.3153275108762 0.6066087829495397 1.676202080484311e-05 12121556.9124964 334.9469952716725 None None None DCR_20210828 2365776815.9640465 48233.718108670946 178.4552693348157 0.00363859729381809 20774442.16866179 423.5785770699348 48115 11579 147946 DUSK_20210710 42639359.72099221 1254.5933944804517 0.11821925054814722 3.4785749184577903e-06 8104816.450115882 238.48240528808753 None 13638 479861 BQX_20200109 3606503.3045554208 448.12434032231954 0.025592497610239986 3.1893804084137616e-06 1709585.8434866413 213.05148402304292 None 4 319214 WAVES_20190515 237269459.8984311 29706.70966675501 2.3721159827260423 0.0002968053129682239 46912144.00749076 5869.769305357676 140013 56787 41172 BOND_20210809 106977449.51740323 2431.8813742167963 27.45078377291031 0.0006240466394371565 81182042.24731798 1845.5349423239063 None None 140491 EOS_20200518 2453568752.0711207 253938.53908830293 2.6181185989103795 0.00027096905746211783 2580765547.668794 267103.10536488314 None 71252 92987 PIVX_20200410 17045071.214828085 2337.679698783511 0.2713831214651432 3.721937008333957e-05 1503314.843869325 206.17506064369172 63701 8501 213367 SYS_20200403 10889317.309699465 1605.6915933526311 0.01875975390861109 2.751864777974473e-06 295198.9323359519 43.30267594918143 58502 4507 925060 SKL_20210201 74804707.83168745 2262.991613465776 0.13299672078099262 4.022448704353085e-06 14203146.878927367 429.57021365178616 None 117 222285 EVX_20190613 20684119.842536345 2543.7376553964787 0.9853767653757263 0.00012112376553681668 7831817.563067834 962.6969780177845 18034 2907 738381 KNC_20200725 307225198.3984309 32200.562861501774 1.5794635115091558 0.00016560012967565022 82727758.18553577 8673.658735054067 116336 8672 73639 DLT_20210806 8052575.329703062 196.10463535962072 0.09823731716815011 2.4009571515514626e-06 4320159.966219851 105.58634199046296 15270 2597 None TRX_20200725 1189804641.9531207 124731.42508432124 0.017981133020488455 1.8852800647239672e-06 410419748.8654822 43031.55812392136 514522 73707 53101 BLZ_20210114 19908634.198233254 534.624182836128 0.0776711529190085 2.083332783037117e-06 8590508.008252567 230.41871124531158 43430 None 444357 ONE_20210725 750849169.5046343 21977.863309161155 0.07273650905926285 2.1289102653693897e-06 40026181.2030569 1171.5182533340394 None 26513 25720 QKC_20200105 10529462.507824415 1431.952722670429 0.002823253076006862 3.8394457035338934e-07 1730256.1988964651 235.30390475167493 None 9207 296858 BTS_20201130 62473704.06057097 3444.023504421002 0.023099631073355064 1.271976965109236e-06 17504220.980160497 963.8667305222954 13098 6889 94225 GVT_20210930 12014579.464983173 289.33081424408124 2.7090729240106346 6.521381616345191e-05 181769.41304013925 4.3756212618260495 25786 5779 561636 YFI_20210128 833884532.0203884 27534.706453946575 27797.68591691917 0.9173503822235168 389376249.4230216 12849.790889232278 72501 2789 20013 RDN_20190613 18189275.02909856 2236.921085746682 0.36011317566052425 4.422846096578448e-05 522137.6246868236 64.1280161712231 25622 4430 856737 NEBL_20190805 12388029.190123374 1131.3326481560948 0.8033472677679894 7.335275522830807e-05 97828.1501860038 8.932580769173104 40476 6150 850260 CVC_20200526 16996910.86658032 1910.4431390802226 0.025503610452622283 2.869687415494445e-06 12828471.448093994 1443.4702546532956 85595 8017 119250 SFP_20210617 116858911.66172963 3055.222384520244 1.081063993090415 2.8227028804527817e-05 8165857.525622676 213.21392356293546 None None 20824 DASH_20210203 1095060401.8512611 30749.157989187355 110.09909518221222 0.003096947586852232 531696605.036289 14955.949594131565 337271 36453 65272 BTS_20211230 91285048.01038164 1959.9277945456893 0.03368208361891303 7.23168287707008e-07 15709934.69897332 337.2988056435471 8142 7510 206863 MANA_20190703 63477017.37157743 5899.133423817972 0.04797033872480325 4.4446607030162065e-06 17545181.296255704 1625.6374232029673 44966 6285 154801 OM_20211011 83959459.05780753 1534.4870517657573 0.22996757366870246 4.201573730406484e-06 9263924.338145718 169.2545628006666 None None 105890 MDT_20210511 41120039.37165872 735.9238196994457 0.06781906793031599 1.2137553436812536e-06 23697069.715101194 424.1055778862171 31766 300 371904 RENBTC_20210127 530910970.3611251 16301.62967951904 32525.00761033359 0.998104212342736 22988065.371115915 705.4413377979114 36665 2313 93933 ZRX_20190712 153994288.1669016 13596.495409802325 0.25800668193797194 2.2735336659226082e-05 43718969.15770189 3852.4796130420996 151313 15986 206645 ARPA_20210210 32708721.632963646 702.0988402748841 0.03325033936854903 7.136101705749989e-07 24633776.581015956 528.6837320076446 None None 1157851 SKY_20210203 13672471.570691878 383.9614145222731 0.7189410263501628 2.0222897136069505e-05 2793673.7079675156 78.58249001977568 17264 3855 739970 BNB_20190205 1019274201.1476768 294222.89090025245 7.056569561143419 0.0020369438309932593 78011771.93744208 22518.816857957434 912034 47176 1125 PIVX_20190830 19133650.70121885 2014.543603451979 0.3136807471324902 3.307357449934108e-05 5871022.498572332 619.0233279182579 63123 8599 276830 KMD_20201226 65853939.438884854 2666.679418601978 0.528549814946542 2.143510290219343e-05 1997894.9779694618 81.02374313551176 97048 8414 269586 ANKR_20210207 102209472.01286907 2607.391165444865 0.015862826883237563 4.0339316109102634e-07 45111153.50656936 1147.1808239114744 None None 5358 ENG_20200106 30427556.123822 4143.059462776018 0.38129334825943584 5.192475188025658e-05 1655346.7862456946 225.42609658405107 61310 3579 347348 OM_20210825 69836528.12240073 1452.6596919159128 0.1971756250575327 4.110333040926298e-06 12592342.365339056 262.5006050915612 49510 None 103723 AERGO_20210104 14382154.077936152 430.872087707264 0.05478442673410521 1.6642846042833367e-06 60917140.55422954 1850.5890305913083 11497 None 652713 ENJ_20190702 112579952.41629884 10623.842484278182 0.12953713739669828 1.2203256488337074e-05 18324880.3999696 1726.3251306387886 46720 12640 20679 AMB_20200217 3543155.6407547533 355.43059102394807 0.02450479728401223 2.458179701633023e-06 1659520.1290820583 166.47347245849159 19161 5506 619062 XVS_20210212 302440580.16906667 6345.154088026453 36.23741549776502 0.0007577630377632846 84460434.10053436 1766.157829847826 22313 None 58717 EVX_20200518 3545779.3589889384 366.9797431154316 0.16265042931141918 1.6833933170432643e-05 425249.1776701964 44.01228000434758 16643 2851 1534035 YOYO_20210202 2643706.676909685 79.18811642114332 0.014882707828624376 4.4561054257278765e-07 560109.796211306 16.770525435566757 9388 None 1427347 SNM_20210616 93477922.5072191 2323.66390128 0.21188621867591798 5.25e-06 176558.57392230368 4.37467108 32374 9712 None WAXP_20211216 885685747.1120206 18154.36108832091 0.4765638289742221 9.751794794385757e-06 79576388.65926531 1628.3497938854623 225765 6349 3362 NEO_20200612 752243452.847646 81102.0694295382 10.79304503004155 0.001160645068003932 427217025.269727 45941.375391881505 320117 99623 220108 ADA_20200217 1964825566.136611 197100.8849281418 0.06285710908344452 6.318290362750359e-06 277034923.6330006 27847.08227373268 155759 76680 49262 MANA_20200208 66474513.89541893 6787.178488237022 0.0504804021406983 5.149156103253575e-06 29353407.2158091 2994.1377149750288 46231 6556 71924 OST_20190221 11960786.167120766 3012.367525526565 0.022711062274351174 5.71986368701513e-06 1266039.254674533 318.8565938338718 17254 739 887864 CHZ_20210511 2337548126.4983106 41866.09821568706 0.4380864164325016 7.840416348474022e-06 464108263.92441785 8306.128388017602 325368 None 28385 YOYO_20200718 1938104.6298660098 211.7432463814624 0.01114714438085846 1.2178012249127883e-06 2954994.6943879616 322.826729024507 7544 None 1934644 GTO_20190613 23922721.37956017 2941.9849547006806 0.03608446049753467 4.431829381580592e-06 9972621.469453214 1224.8196655932752 17372 None 1170930 ZEC_20190603 591815376.4957052 67708.26944021243 88.75417906070096 0.01015206446146809 390919854.5143986 44715.00502059355 15 15152 179963 UTK_20210212 194422200.00081372 4078.946074130152 0.42863979803900576 8.980394862487895e-06 44370328.141842924 929.5988583301091 60092 3299 107548 AE_20200423 35431129.71769677 4981.477917463072 0.10013796170594566 1.407569355355725e-05 7566282.107556257 1063.539405749675 25305 6335 661770 SAND_20210218 161011539.13744983 3088.4161866032355 0.24155122485579897 4.632698023370399e-06 168489551.24186307 3231.4520924608155 70337 None 43842 XMR_20190126 770884125.5425161 216175.18672763853 46.03193601547981 0.012908506004813611 38169308.210021265 10703.628543082586 313006 153233 85084 COS_20210221 52947933.764654 948.2166976591369 0.017766726111711095 3.15935411266553e-07 5279223.456616459 93.8773763633778 15623 None 361958 REQ_20200316 5041145.231254332 933.1323930996683 0.006496987327963582 1.2090556552462346e-06 52677.986373161606 9.803100131860397 39711 28251 686735 FOR_20210723 13109037.844204677 404.98263041552013 0.02353998149208502 7.271117142806003e-07 7840754.811363525 242.1881543985628 29304 None 171123 OCEAN_20201124 181912065.45943135 9932.973526420534 0.5256064487217076 2.8629019498723375e-05 27162946.988299694 1479.5262517461276 31982 1222 73952 LOOM_20191108 13561320.42572801 1470.958960318524 0.0223457382608769 2.4238334315585228e-06 2116529.7760371035 229.57915152123894 None None 337394 AION_20210809 73277013.56849048 1665.6794180801794 0.14748826850197017 3.35352180867091e-06 6413328.924308326 145.82338400400045 73612 73396 420360 CTXC_20210218 2249738.137950794 43.04570968121626 0.2209628897721126 4.238505381449167e-06 18070348.09185583 346.6250269942709 17740 20163 487509 SNGLS_20190103 6188286.813381124 1599.6119212076248 0.010481244591296065 2.7092997307553104e-06 184599.65582587098 47.717214637074946 35837 2188 980261 SXP_20201015 92942724.66189437 8144.240542016213 1.210828806747546 0.00010607532892856997 32265081.984600883 2826.60039582078 90011 None 69308 ONT_20211028 747235010.884671 12766.873101856756 0.8545230415028628 1.4602734168584078e-05 150036309.19452003 2563.933600842199 170247 20715 93861 WABI_20190623 15515234.784757147 1447.1864309669218 0.27576427516880436 2.570866261492246e-05 1337751.4839736873 124.71449227075924 36411 8011 994304 LOOM_20201229 23519512.4053006 867.349942850876 0.02832663260833547 1.0436166099722387e-06 5103299.02795658 188.0169699261555 22808 None 350385 EVX_20190704 14513401.164788375 1209.4268098954567 0.6878389177624822 5.731880615618278e-05 2052341.9719995963 171.0252046248193 18205 2914 1053022 TNB_20210114 7180866.07303828 192.8494968916359 0.002101434222215694 5.621322453207166e-08 337938.2832230541 9.039826415680466 15773 1412 3447610 ELF_20201228 50223387.990936294 1891.6758204659677 0.10861424662789512 4.130084695558517e-06 35607146.23846261 1353.9709043492944 82334 33322 543167 VIB_20200927 2902306.4159807856 270.35660223767263 0.015898851796149714 1.4810360070129754e-06 611824.8480916229 56.99371512025664 30601 1099 None ADA_20210106 8086992388.5403805 238013.32033210417 0.2592124040314695 7.606870792269127e-06 3367998095.423193 98837.57853417526 173627 96699 38332 CND_20190515 28855028.320267197 3610.970048866262 0.016612221433021705 2.0782742075257946e-06 368509.2812359953 46.10240343318916 36638 6178 553989 DLT_20210422 17862369.635143254 331.7345910405013 0.21652127826791204 3.9953517143250776e-06 3973892.6185004427 73.328121895826 15087 2572 4793076 ADA_20201208 4801963855.153406 250068.5484491905 0.1541612220757159 8.03404366467791e-06 606007826.4647386 31581.828902232082 None 91768 47905 YFI_20201031 334305354.8056164 24614.465952497732 11115.653834633651 0.8190347566374421 441066504.5999795 32499.104652792335 47035 1844 9605 NAV_20210722 24810702.30756991 772.5712053570305 0.3511315405731017 1.0885933703874591e-05 787328.6041236178 24.40910598251848 53020 14117 823602 RVN_20210218 602276566.2495496 11540.050530456314 0.07406628570426657 1.420513332463466e-06 94192371.99351121 1806.510465063505 38953 16232 101877 BOND_20210828 135516545.883014 2763.1224656977697 32.33042160505522 0.0006591981564827987 26298719.380013153 536.2153189630053 22829 None 141217 OAX_20190228 2882060.3595467936 755.197759101842 0.12301845665740006 3.223611317393229e-05 427445.553547219 112.0090725753176 14216 None None ETH_20190811 22164896130.494186 1956122.343136293 206.50462546838185 0.018240072383863794 7866305403.719613 694812.4267530915 447618 444395 31061 RDN_20190807 10848864.526254179 949.0171744212014 0.21480273662030286 1.8757960473963306e-05 562869.9770165887 49.153436995177685 25627 4400 836731 RCN_20210408 79910427.799197 1418.6706786506102 0.15444826575667223 2.7470204279358492e-06 6473979.55822061 115.14635019916265 19447 1151 1086230 CTSI_20201228 8636546.133702805 325.82893650734394 0.04349154664883824 1.6537772601407869e-06 2554702.2073058696 97.14320925367181 None 169 590727 VET_20210104 1738746786.2010612 51975.14197391348 0.026025652481535173 7.906186393139834e-07 829850738.3268979 25209.568214868268 147245 70313 134055 ZRX_20201201 316613714.13571244 16113.67803984435 0.4245485554991636 2.1626105553408258e-05 53619071.80087987 2731.30526867118 161958 16309 104276 QKC_20190430 45460189.13138297 8734.508086056401 0.028698153538652526 5.513879327192933e-06 11191126.397898898 2150.1913149313777 50338 9167 169862 BTS_20191127 56295491.59569669 7852.11429119504 0.020734053620210274 2.8970999510501606e-06 7405592.264792894 1034.7586333487718 13490 7100 169087 SNGLS_20200314 2662883.859893894 483.67592678737276 0.004180250549064987 7.57570710158368e-07 69543.88678308135 12.603170809753546 7967 2132 1276289 LUN_20200330 1422887.622657558 240.63204246908896 0.5236563084758966 8.871493138259769e-05 2129178.5761064515 360.7135600645119 None 2147 2364106 TROY_20201201 5762646.127056685 292.7361757647757 0.003032971645819308 1.5407167145514508e-07 1094809.275731287 55.61512428545973 9597 None 1550924 UNI_20210420 16366385637.621965 292492.2953838824 31.345466854040474 0.0005605008685609548 1111669225.0515075 19878.203412801817 None 35250 1654 ICX_20210610 657720419.477259 17522.570262178866 1.045801614821746 2.7874277248004348e-05 85895083.14635284 2289.404919564903 140373 32321 245600 POA_20190618 8007171.307251372 859.6834582824596 0.0363677995144053 3.90487213129637e-06 423485.38363413344 45.47034174859179 17656 None 649823 LOOM_20210825 86350083.448418 1796.9096358464808 0.10285393530534412 2.14175681145961e-06 9338154.770269431 194.45105844821703 34295 None 329311 IOTX_20210104 38739990.484367184 1158.9991588990513 0.006759952708150588 2.027810657539919e-07 2487700.654040086 74.62457382207973 30839 2013 689535 MATIC_20211021 10286231359.857517 155185.1134135086 1.530730023476453 2.310164484892841e-05 842457013.872256 12714.288239257887 758778 None 10536 BRD_20200610 7532481.725716677 770.5696891347077 0.1184503917725728 1.2129754703805096e-05 1565388.7787069282 160.3015542427332 201 None None NEO_20190714 1000803485.3780773 87931.73311769511 14.219575187835495 0.0012475080654918134 459562278.1031766 40318.198044337885 324233 98096 188893 VITE_20210111 8868497.27588657 230.05328919771694 0.015337568963459045 3.999140550789796e-07 1234196.9217961421 32.18063416291073 None None 1009411 EOS_20190909 3868383959.546694 372204.943214933 3.771664746099543 0.0003628988945586077 3061308871.7206845 294550.46517556376 None 68167 84416 QTUM_20191102 207835358.01030686 22499.757430289832 2.161519785311483 0.0002339784500104593 252024833.47507837 27280.980864186444 None 15278 182498 SNGLS_20190126 7596294.4294478735 2130.292213455163 0.012863009628524883 3.6081252232647443e-06 117123.09996301653 32.853494120565365 35345 2189 957120 ELF_20210616 101744042.96371864 2519.255445795912 0.2205049880098667 5.46330561257693e-06 11301892.884270392 280.01949245980245 87424 33384 458355 DOGE_20200502 309595787.45347303 35055.70839100147 0.0024890040164181706 2.8183135081157906e-07 219094154.08480555 24808.156593294527 140410 153950 106341 KNC_20190410 46515720.12651738 8989.11006678232 0.27966414965704983 5.410069510465397e-05 6812663.235911905 1317.9015509450523 95689 6651 240920 COCOS_20200318 5416664.917102326 997.7532387738631 0.00022246221215177495 4.1360277604342986e-08 492212.298234249 91.51233864990483 14585 215 67575 ADX_20201106 24036964.429017235 1545.6679319930245 0.2368046165609386 1.5198657700628818e-05 891075.2790251961 57.191233634210484 None 3744 13140 QSP_20200105 6772667.050633344 921.5120497499279 0.009493098252343249 1.2910371474030212e-06 48474.18466464624 6.5923654668468865 55482 8366 458793 CHR_20210325 138531353.7074872 2620.752465886455 0.30456359252928206 5.776487315117531e-06 71557895.78622885 1357.1985865838894 50823 None 163006 OG_20210814 8653573.77552365 181.61724826937822 6.263782890860677 0.000131208440306071 3825318.183382045 80.12953853307093 700521 None 320611 MTL_20190803 17566306.102329634 1669.4386561112435 0.369126399992823 3.508044762225082e-05 2566258.0442121564 243.8879497833663 33325 None 712205 TOMO_20200316 14520376.072084716 2687.6733344141844 0.20789779188972637 3.8486852948544785e-05 8124576.714325021 1504.05344102575 22119 1508 236393 WABI_20190621 15777079.893342203 1651.7588180389007 0.27951286570594336 2.9263199768668442e-05 1025407.6615809218 107.3535887851893 36388 8013 994304 COTI_20210930 556267677.5797327 13390.68348505358 0.6435718581910801 1.5482915213970837e-05 462888221.2492024 11136.066613122934 None 7570 115768 QKC_20210408 236535598.67924654 4199.339422196028 0.0365610411620376 6.506330721404341e-07 54935564.26350241 977.6224585103914 70406 9358 311795 GVT_20191102 5062370.285863343 547.2682116180912 1.1400458050682938 0.00012329775768884417 674980.3458152245 73.00019240724482 21130 5676 115492 VIA_20190613 13138328.167847639 1615.7343968714717 0.5676655666424397 6.981076817584033e-05 586247.5525525478 72.09595647480646 41060 2233 1811232 NAV_20200629 8392082.2481539 919.5026247357956 0.12165721214969526 1.332972230036143e-05 301135.12209651474 32.99473563057502 48495 13842 966957 TROY_20210422 42540121.550797135 785.1133640603356 0.022392069502670815 4.1358891164755426e-07 20462376.61555904 377.94684734887954 15639 None 495335 LRC_20200309 46161777.60760723 5733.101146940993 0.040301384801678095 5.009761049207931e-06 3364218.003260635 418.1972504596774 34362 6822 607711 YFII_20210206 93325122.59916654 2462.5905060885098 2362.7154844229744 0.06215798951393432 254686202.08603516 6700.249091766436 14243 None 213676 MITH_20190530 27604987.40789656 3192.100336968449 0.05124448601430544 5.9260953724671984e-06 10000867.253103636 1156.5360053124825 73 2064 460427 DGB_20200913 305877170.5650209 29334.290736968345 0.022478818467343436 2.1527578446440647e-06 6404123.119468576 613.3118741775087 165494 23015 135081 MATIC_20200626 75613667.49498063 8164.817749850363 0.02164386789349562 2.339080872505693e-06 17203243.586693253 1859.1768447627246 41619 1918 129897 ZRX_20190220 146182843.7348019 37339.04569599545 0.2501889808892609 6.39050216248778e-05 17122066.54296438 4373.438145843224 146762 15586 295106 NEO_20190201 446279873.6042979 130062.24771249574 6.86584420929689 0.0020009576571153194 109404920.1417452 31884.587824944756 315913 97902 145826 WING_20210105 10307476.195951167 329.45660076998774 12.453907056978341 0.0003980627078148513 3577651.146190608 114.35202594285882 7245 None 329521 SAND_20210106 26059059.51429302 766.9604448395258 0.041989587287485475 1.2322302488187665e-06 9621912.508376721 282.3655198879061 62941 None 60991 RSR_20210722 255639428.09863332 7943.811220369863 0.01950044357115388 6.037968731547523e-07 29244746.076033264 905.5120296357825 None None 123422 MDA_20200907 5987658.498750096 581.5216960919568 0.3047793464622001 2.9679418246288495e-05 208582.25495105897 20.31174374282688 None 373 1669605 MANA_20200105 47204960.996612474 6419.63180669676 0.03555116465633499 4.834867709647958e-06 18472645.794329494 2512.232708158349 45957 6428 82411 CHR_20211225 448713864.62150747 8819.608867757865 0.7919150931262338 1.5573320962162682e-05 203150441.5452486 3995.033125710254 116474 1821 31346 RLC_20200531 27733859.46971885 2865.425035592247 0.39423925136782273 4.071545039787709e-05 556430.9207839506 57.46595620913132 30312 3580 676480 ORN_20210201 57086051.188787155 1726.964778241525 3.398457947538514 0.0001025114874031509 8739698.574589893 263.62530128857935 None None 131553 IRIS_20210212 115395915.5914539 2420.0400802811623 0.12233087410060764 2.55806915303967e-06 22335108.41858325 467.0509574580949 13200 None 896024 EPS_20210707 101665157.97142035 2977.9543009889826 0.4507473402244412 1.3197729016423105e-05 15254854.757484425 446.65696568264616 None None 20273 WPR_20190531 7291264.017331035 877.2327377387229 0.012137624950425809 1.4606107523840247e-06 419766.88486923545 50.513673641995595 35010 None 1393000 WBTC_20200905 435935125.75878054 41578.99609430758 10520.186162249238 1.0033505867734236 18552648.12667553 1769.437355671363 None None 209926 VITE_20210204 14771543.866441369 394.28704235150497 0.02543783839262375 6.78162086052539e-07 2289226.056178652 61.0298050385489 None None 688715 TRU_20211120 250471941.11095563 4307.463566153325 0.46666897900660925 8.021957442120595e-06 6779432.595434406 116.53725061834409 None None 101262 ANT_20210210 199082747.07895708 4274.498265607502 5.746746075617691 0.00012338817146908353 60848943.57978402 1306.485406757419 77829 2756 124714 DCR_20200129 213146650.44996926 22816.66949261127 19.413725451228544 0.0020762461510705696 116328117.4125559 12440.98185306418 40872 9722 104467 VIB_20210513 17221814.480427403 334.0477749028099 0.09159067734706915 1.8171386080450454e-06 2012672.815711528 39.93097971023118 32425 1255 3730171 RUNE_20211221 1901166150.0806088 40297.14710907887 6.384851410119522 0.00013542808505268562 40208595.279397346 852.8582282614628 132306 8961 73120 THETA_20190221 67546120.8687239 16990.814862894586 0.09715333998330483 2.4438330310283183e-05 14115704.76042859 3550.719466330962 None 3834 509909 CTXC_20200417 932322.5598688769 131.41153242753512 0.09100430011452765 1.2837640147919115e-05 7423452.749569452 1047.1990327283447 16561 20066 404295 HIVE_20200711 83556061.8845593 8999.895610531674 0.23038490511519025 2.4814880537120655e-05 7939605.019787585 855.1790751197182 7980 91 120272 AUDIO_20210111 29705374.932997316 772.7618429376814 0.19395913935947534 5.045288587134974e-06 4413373.052045959 114.80119350802194 None 2385 55662 POE_20200526 4472073.801826028 503.20145589202303 0.0017788264680044126 1.9990825225767458e-07 1831735.1324671549 205.8542390260749 None 10299 1075811 FIO_20210828 79273120.03338654 1616.1254806704815 0.22631462199513622 4.6143900986932775e-06 5256498.689016494 107.17617487796781 None 517 401470 GRS_20210418 122044541.86175805 2025.3438447108801 1.5656179093487288 2.6045801955529438e-05 6588538.476183165 109.60769374338389 41450 106820 7053372 SNGLS_20210127 5219560.97203087 160.16171691793727 0.005862123306607086 1.7996106849944394e-07 68271.1716494542 2.0958537299782205 9034 2113 2274706 DOCK_20190507 6506423.493081028 1137.4000358859673 0.01265921365723184 2.2132208977354776e-06 2428504.936579243 424.5775465540447 163 15298 217238 ICP_20211125 7433278089.1597805 129935.51321951991 40.6465873687785 0.0007106962081029716 225973525.21685246 3951.094984831061 433099 24965 22498 XTZ_20210120 2204583732.3587933 60878.514021378214 2.900198635333346 8.020622085643672e-05 309410806.63511294 8556.886824923184 80379 32264 158435 TOMO_20201101 41278383.978608444 2991.461547998038 0.5435108589246184 3.943145524401645e-05 3289371.1654198086 238.64231921113958 None 1692 94398 TNT_20190615 13757008.591809165 1581.859833252333 0.03204913527469268 3.691706394176693e-06 1746851.8877755483 201.21804312370665 17388 2514 874753 CHR_20210819 210479899.84226173 4672.0925112219475 0.3674838887413051 8.167725943182867e-06 86787822.50162263 1928.9529993459478 84481 None 83278 ENJ_20210614 1223115704.8952322 31331.758377878425 1.3090816273611892 3.35338914227366e-05 111951909.30213892 2867.799144560269 212602 33306 21502 WAVES_20200501 105294378.1451769 12167.89560395726 1.0520415868195814 0.0001220507774554764 39802546.505699344 4617.623301769216 72 56842 74379 FTM_20200421 6400854.473023008 934.7381789387326 0.0030190032823973283 4.409443900102565e-07 1420097.0211007725 207.41408874104397 21487 2332 315256 TNB_20200605 6503993.61318682 666.370837831354 0.0019810133955119893 2.026383514885194e-07 1120440.1893256428 114.61010481847534 14846 1435 2834149 LSK_20200129 113447684.53916018 12176.722043554828 0.8254497673686787 8.827965074023755e-05 3539789.1854330148 378.571011026193 178596 31105 161329 THETA_20200704 217063979.080772 23937.94221958055 0.2166340628750362 2.3900145119681315e-05 6545795.158902596 722.1646131971586 71605 4280 81176 SUSD_20210729 226185957.25047082 5656.482301767923 1.0070523078657163 2.518447044919322e-05 12065939.989533745 301.7463012940843 144515 7322 44436 TOMO_20201031 42708585.21465488 3144.624999220486 0.5632729791555899 4.150364470380707e-05 5830419.049317725 429.60278524269415 33533 1692 87780 MDX_20211207 398781112.3927553 7902.282012959651 0.5018131697090371 9.935482707749794e-06 20836512.83162775 412.545595502166 31542 None 30091 POA_20210429 22935626.598421354 419.0815412010095 0.08048753709411428 1.469940750111019e-06 853601.3384776057 15.589287945416533 19476 None 274673 ZIL_20200323 37527357.35958131 6432.234534144344 0.0036057073388786882 6.1838027851807e-07 8566601.825974504 1469.175705410114 68643 10567 233633 SYS_20210124 58516283.950382225 1827.7206869645097 0.09643515936894614 3.0090687458929147e-06 3459624.3968190793 107.95074859749967 61138 4494 270004 SAND_20210825 546498143.9454466 11379.748063099076 0.6181398530778872 1.2871371269297116e-05 194338450.8536933 4046.660865470447 164097 None 25914 TRX_20190305 1488125330.5488195 400759.18012776575 0.022702785669801787 6.113967409109749e-06 228390647.6977401 61506.68014396319 392862 70136 78443 ZRX_20210819 829464375.9232849 18401.79338486348 0.9776596951177735 2.1704335988378732e-05 100151322.25142837 2223.3891390639114 224749 19673 54566 ZRX_20210723 540514362.993289 16712.231986771127 0.6405450040240434 1.978607332356269e-05 50674541.960330024 1565.307974562563 222911 19606 52898 MANA_20210626 645157523.7241464 20276.320598815302 0.48571574358806474 1.5279287517722356e-05 50555131.539247386 1590.3260301555013 142803 33719 14515 NANO_20210106 207879041.67842513 6119.429402193346 1.5506945904517242 4.549251035005733e-05 36079748.75703249 1058.46654387221 99821 54224 338450 EVX_20190605 14539288.54690825 1895.874458775986 0.6899767620325079 8.983483348159687e-05 1386552.9631384164 180.52891258254544 17368 2463 738381 ETC_20210602 8636894008.342407 235388.71101786295 67.85850630881288 0.0018499173328582552 4667856049.561535 127252.25300530507 None 56549 97655 BAT_20190421 515078449.8618353 97002.08344113822 0.4122304535046222 7.761403935359577e-05 103768211.19400103 19537.299970908454 98117 25457 68088 LRC_20190614 64164342.070445985 7803.7937559717275 0.06682160405040533 8.122135023221709e-06 30692015.98020071 3730.600327074256 35154 2457 858325 TRX_20201224 1801727101.0148416 77062.66813951463 0.025003130664027515 1.0722059952120548e-06 958132478.8622253 41087.47027913124 552452 76552 31267 TCT_20210107 5338595.226696278 144.94596108859605 0.009199050892969251 2.4923344607465523e-07 705071.376050309 19.102771669186485 None None 2545563 BCPT_20200106 2516958.228368117 342.71262414296854 0.021663569207001687 2.9501357237331494e-06 198070.49536187088 26.973156574574 10731 3148 3617841 CKB_20210408 713259765.647727 12663.284898657 0.028750742898843724 5.113613783523067e-07 72054160.67532203 1281.5569687569039 40317 2932 130206 DASH_20200511 683543616.6977181 78074.43571015241 72.3847462649339 0.00826178239921273 771649672.0185212 88073.82781044989 317861 34853 74287 MFT_20190726 15743653.72080744 1589.3334975496791 0.0017740756822598256 1.7940527614944203e-07 1455455.3023835886 147.18445388681852 18840 2156 894559 BCPT_20201106 1815756.1659185907 116.16250535857313 0.01563168907506997 1.0000330440996979e-06 77480.4582575692 4.9567911796 10404 3198 2211613 NEO_20190608 867709684.4081779 107850.76118150137 12.290422353982711 0.0015287975846385241 514212053.0610508 63962.50039828834 321676 97642 216321 NEO_20190920 685384722.2029457 66929.17456826368 9.730488155860234 0.0009494426026107115 311702226.65933233 30414.03150372852 323760 98278 189975 IOST_20210610 676159052.499804 18013.800628620687 0.029831157467917455 7.964819310054028e-07 145974969.55576727 3897.482883635125 246353 53563 156257 MFT_20200321 6094327.650688835 985.5413448403505 0.0006364756965673251 1.0264922349857746e-07 1919015.3735719277 309.49404516367764 18383 2511 872119 RIF_20220105 159768788.3307743 3448.416059385437 0.1952505355346252 4.24730545944838e-06 2177082.528181347 47.35830548323657 52842 3571 330828 BETA_20211207 129876639.16991447 2573.7447940583056 0.8130073027077703 1.61094370148784e-05 20616586.47631626 408.5099853296021 None None 52614 ADA_20210916 79647419225.17595 1652694.9942787045 2.4949058499577745 5.175467401320647e-05 3923375598.2928805 81387.04918442255 609610 612578 7697 NULS_20191030 29582337.737052925 3143.6457790549157 0.40744557041587204 4.330459187116018e-05 8960375.03928195 952.3367346774329 None 5267 455576 XMR_20190329 889945391.3512775 221046.08838422675 52.71197327162696 0.0130925915098532 329038769.7311883 81726.59712046731 315443 157502 112141 GTO_20210508 53083363.0200463 926.4056312743846 0.08021820924271414 1.3995455630117495e-06 28369951.18081057 494.96292266795535 2148 None 267517 PIVX_20191118 14664547.153806292 1724.847749367908 0.2387045196481776 2.8051229642876648e-05 261740.30887908826 30.75826767748771 63152 8574 260294 LEND_20190305 10183025.876957402 2742.6073892720456 0.009129566338734563 2.458877783873817e-06 3321437.4626156115 894.5670017973457 11656 5935 427366 DOGE_20201115 349939417.55178297 21765.83007794572 0.0027532653753921323 1.712499458893017e-07 49169560.31348336 3058.2902099967487 152215 168546 144250 DCR_20201201 303147578.938036 15419.154075283966 24.5312459371402 0.0012495986786940241 7796533.040274885 397.1480865866516 40892 9979 378576 DOCK_20190725 5057763.930192123 514.518957072093 0.009217770716670008 9.388137389143249e-07 1246220.7985240489 126.9253969681965 180 15217 260296 PAXG_20210207 114850952.80392507 2928.9358447097006 1834.489019299385 0.046651226160952686 5577095.093461319 141.82604626631615 15096 None 71165 FET_20211221 324430912.2297597 6878.522338297903 0.47023330359754323 9.977445156917683e-06 26163340.926586278 555.1357107623593 89424 7036 85496 NKN_20210408 537762121.33087 9547.031277796805 0.819445848077207 1.4574498099915819e-05 542582682.5103483 9650.265839835252 19432 1340 290706 ANT_20210718 121680452.3014873 3849.959695252655 3.460282243434695 0.000109575419196855 11635464.076462366 368.4557397441597 85650 3055 128582 TVK_20210821 121364034.81177285 2470.1587132486748 0.279632046307827 5.689564130912685e-06 16401169.533959325 333.7081966017175 52712 None 114085 LOOM_20200621 17690101.662818983 1890.9179922302478 0.021231908554498576 2.269254718658178e-06 9056098.255503464 967.9108049181527 21718 None 640250 STEEM_20191026 43334612.108485214 5017.200746494067 0.1336066539768157 1.546872976250314e-05 836545.6455660444 96.85369807633504 10839 3787 220628 RDN_20190104 12535587.740774732 3324.2460809432137 0.24960205114624603 6.619506835065909e-05 4395403.062648871 1165.6715352481756 24846 4438 571129 PPT_20200903 12101224.006010866 1060.7378197570401 0.35080084901429576 3.073570837670031e-05 1096939.7334166581 96.10928778492162 23672 None 1237047 RCN_20200612 36870023.086699575 3973.7203928101326 0.07240296435905864 7.786237578940654e-06 526905.8750705738 56.663623670068915 None 1134 1112799 BNB_20210210 16042189486.944416 344425.7034305331 107.73553377385184 0.002312195454332767 5431056857.981953 116560.10361083396 1670427 140027 423 LOOM_20200526 14967502.512562277 1684.3947954475993 0.017979133798227413 2.022151925889482e-06 9640747.722960815 1084.3156735905648 21578 None 710421 ATOM_20211204 9351281608.904308 174156.0781884098 32.70939631298948 0.0006099795623966463 1766732137.3352573 32946.817045837364 263678 47232 31405 UNI_20210106 1362188547.6343179 40040.097464306615 6.330039540016079 0.00018550518976115387 584406673.4967331 17126.349713831452 160322 None 5230 STEEM_20211011 237432154.3981446 4338.622149563962 0.6064855974700151 1.1083032052364762e-05 3507874.640372327 64.10356195943491 14444 3934 227916 SUSHI_20210221 2324861913.770658 41609.324030264805 18.448055547483406 0.00032908708997639145 2220612287.1248336 39612.566953454305 45296 None None WNXM_20210902 170445675.30129054 3504.5711388594573 77.34052541251016 0.0015895621973106538 19345782.84619942 397.60946703790233 32971 None 144980 LTO_20210511 141321411.83182785 2531.123438238368 0.5013052670472531 8.978573338311027e-06 22210000.21832386 397.78978780473886 9311 4053 155489 REQ_20200403 6233498.696864966 919.1647345803079 0.008116729114798734 1.1906414696155391e-06 55514.23248782417 8.143372338664115 39467 28257 588604 HIVE_20210422 191903649.28749728 3541.741635308952 0.5158979461938745 9.538115618044856e-06 14076564.519116372 260.25282883708854 19061 161 113776 MITH_20190906 9945159.504529737 940.9260000196793 0.019125628148294996 1.809532335564843e-06 1849838.8497484755 175.01873341097811 83 2081 697406 OGN_20211216 244904743.83306482 5019.939573558317 0.6211807714917961 1.271105158535624e-05 18770820.9077798 384.10215481279374 131176 7465 100062 PERP_20210624 138097410.81591558 4096.097115750612 5.146292759833695 0.00015270222324604088 20732064.321180463 615.1675511026472 21153 None 196172 BCD_20210825 476941320.7939264 9920.788600947659 2.5111802805388748 5.22993654108919e-05 8744071.632766023 182.10934557152157 34816 None 1368102 OAX_20210201 7589607.48060186 229.61969613630643 0.13596698033562915 4.100353811036132e-06 1887445.4322559289 56.91965837712539 13018 None 1390628 ARK_20210220 171398586.8197249 3069.2131720970233 1.1247195189830574 2.0128944556973335e-05 16332097.544398423 292.2932165945885 64424 21920 92701 WABI_20190903 8987733.895142553 870.5938864446371 0.15442395849460153 1.4946969075459863e-05 1085734.12111341 105.0901329732527 36287 7960 1609387 VET_20200417 244923640.78561643 34496.091450082924 0.0038015453114554135 5.362699416737006e-07 169462712.75007826 23905.47833495616 118903 61673 321528 BADGER_20210711 81501084.83069187 2417.6324603033277 8.91971411750261 0.00026451872008553324 3208505.2361002266 95.14987669566588 35794 None None TFUEL_20200607 0.0 0.0 0.008273111559237023 8.555868183402168e-07 4630321.647421254 478.8575782935942 71245 4220 132852 BCH_20200721 4114125338.7777348 449052.70928969304 222.86237920735806 0.0243237489643383 1560668363.8893194 170335.18907427622 None 303296 166061 DNT_20190626 10699531.320146834 906.2447800283717 0.016763500958366737 1.4162444878316983e-06 1326618.9358526934 112.07782670342527 60628 6368 1037935 XEM_20190929 373800601.7954677 45580.63069845685 0.04153340020411123 5.064514522613485e-06 42818778.86960689 5221.251483384058 215849 18324 181782 ROSE_20210408 274091155.8778098 4866.011818863146 0.17718950210916867 3.1532294060604187e-06 40992005.6375355 729.4856413673673 None 1269 252696 ETH_20201201 69576210026.93625 3540998.376103454 612.2637856122055 0.031168337469680785 18811269166.61186 957619.9007617265 515380 498898 8087 TFUEL_20201228 0.0 0.0 0.027399101223811048 1.0418578791436177e-06 114122503.44824219 4339.537579496106 76994 4709 78073 XVS_20210508 1084270314.8133926 18921.484606164173 110.90504792442842 0.0019351839286715332 175577058.38724023 3063.646858219973 78345 None 9693 NANO_20220112 405246051.96739924 9453.176343473979 3.036152315075938 7.094990852636196e-05 12867486.939182265 300.6921018968394 147498 119827 56442 TNB_20200730 9058744.68893703 815.8160595115183 0.0026293364357940787 2.3690686503373696e-07 1715727.6802016825 154.58944714521874 15909 1434 1115028 EOS_20191020 2953958468.695967 371765.4153673143 2.8677724500114796 0.0003607448489894739 1584558016.9348738 199325.83651535644 1321 68641 87489 NXS_20200610 12746489.876713926 1303.960513880123 0.21194436716823475 2.1703880807249185e-05 70382.9562459527 7.2074729497833 23331 3525 680331 ARK_20201208 63903147.66553938 3327.077410447202 0.41470291625255823 2.159924593496135e-05 2198559.705566507 114.50903748722857 None 21637 102174 1INCH_20210823 609373007.0063531 12352.134546133268 3.3756278566895483 6.850759874819989e-05 85766342.73572797 1740.6083975151337 None None 4603 ENJ_20200704 157999774.77721685 17421.677174384455 0.17127407000830622 1.8894051166038365e-05 7373024.451580434 813.3531317954715 57932 15604 100201 STEEM_20191102 49330101.48890457 5343.901130895504 0.15213523686367156 1.647686679160243e-05 1217403.0585406723 131.8497176642838 10808 3788 194536 QKC_20211021 200426285.18996677 3023.767861146381 0.0304801715902853 4.600041079837095e-07 29649165.25426546 447.46263238219245 76724 9594 401013 THETA_20211225 4727670399.879456 92923.81419456293 4.723427346537595 9.288805169591682e-05 185587611.75751907 3649.6531883126663 232151 26890 31111 ZRX_20200719 294062321.6089947 32066.560874570278 0.41787219698477956 4.558540227271202e-05 61271321.62302388 6684.048051342348 155174 16124 62408 FTT_20210430 4622025915.777747 86225.62914512756 52.46984783929894 0.0009790196174970008 104138901.99317777 1943.0974587190794 105286 None 2918 REEF_20211104 532530802.17020726 8459.773871140576 0.036044090708297345 5.715349721157834e-07 117681505.57746987 1866.0228261294333 214026 14100 74100 WING_20210825 44555439.97509351 927.1803364087172 23.692946540023044 0.000493364979035529 3140191.7687372514 65.389108253527 14701 None 465613 STRAX_20210723 145940061.36391094 4512.339224753545 1.4404472608534113 4.449307139523796e-05 3716170.6782151065 114.78646375762104 157517 10763 180987 AION_20190512 66819550.217527196 9151.409675813991 0.2146810139928559 2.9474132364405734e-05 4324161.33849213 593.6757111646779 68860 72517 275245 LINK_20190623 671518000.3508204 62550.39809559705 1.8430658406117417 0.00017182340912132721 82781507.1397511 7717.467523695424 19056 7750 223883 LINK_20210304 12367778863.685484 243302.25022575498 30.04607011028272 0.0005929964963606141 2117165196.2915053 41784.883647323724 171789 41905 31090 EZ_20210509 0.0 0.0 11.391664059839412 0.00019408245614247084 6239406.482467533 106.30223368837864 31478 None 98658 FIL_20210814 7120937450.601483 149402.3562949056 74.60970265322342 0.0015639713063415792 687083107.4382236 14402.661140467155 98281 None 38800 TRX_20210314 3800609103.56799 61941.99833841198 0.0528666586522021 8.616425107571892e-07 2226600214.3622656 36290.04457757014 636996 87365 26578 GAS_20200330 12935876.703184914 2187.620273335202 0.9273025162306217 0.00015710164937334477 7113224.935928999 1205.1076646923782 321750 99265 219445 OGN_20210527 258879777.79758987 6607.535839543839 1.2130519358987935 3.0964203885601866e-05 483137553.73489344 12332.505539059044 111234 5595 39883 HNT_20210318 566635023.4773273 9632.897949896178 7.688754376573181 0.0001304454905957232 16296125.092985751 276.47599707967714 None 6095 32835 ZIL_20190329 170697681.5180065 42398.16865450606 0.019596525794035265 4.867381949666221e-06 11936960.618356904 2964.9003735831466 58052 10066 178175 TCT_20200502 3394365.1798626375 383.04497001372437 0.005900643875518106 6.678616609538646e-07 703586.7105199761 79.63513796563053 None None 668926 EOS_20210314 4096305621.467694 66696.09616043622 4.288974281084008 6.99148454685864e-05 3368420749.5451703 54908.8431740628 203695 79487 56230 ELF_20190701 92065594.78590016 8484.90792264257 0.20039827889161307 1.847034403952052e-05 37232694.67926755 3431.6695934122513 86550 33298 1102918 ICX_20210611 620262442.308563 16894.695396911993 0.9869146754566469 2.6881561234829134e-05 54966195.50250766 1497.1680804752166 140308 32334 245600 FET_20200127 13275978.126160277 1546.7506931028863 0.03909075469951143 4.548755066323107e-06 7006026.860562035 815.2490383404042 16408 346 392761 CTXC_20211125 42755972.079321556 747.8412979354333 0.22824111823586266 3.990302807452625e-06 11942801.145069176 208.79407403170555 21496 20690 578240 BAND_20201226 127243372.42787631 5152.573791304079 5.635738779031069 0.0002282530331305115 53458061.965639755 2165.1047479943604 41927 2893 377723 LIT_20210314 180295406.26220232 2938.86908620389 9.949855845823713 0.00016217428039037114 114930684.0286166 1873.2734690761727 42980 None 122984 TVK_20210909 112812768.55459838 2435.0608208474273 0.2582982632071666 5.579830379331668e-06 26953596.545398574 582.259032518695 54207 None 120691 FIDA_20211111 451087292.7763147 6944.473307788003 9.189583939143027 0.00014147332766188472 9877115.438173285 152.05785136658307 52572 None 334624 LEND_20190729 5375159.421031633 563.0407563685652 0.004702273982191285 4.92891519258937e-07 982230.1564401505 102.95718962852109 41882 5848 751506 BNB_20211216 90516070605.93126 1855354.944385471 539.3565808593963 0.011036620653582546 1459793198.0898228 29871.1174235166 6641795 744444 109 BEAM_20200321 16908069.867909323 2734.2806083605446 0.2926821075582831 4.720304519845392e-05 99444151.48860231 16038.1063830615 14977 1475 244013 FLM_20210112 0.0 0.0 0.14862167807927903 4.181022858289048e-06 17889898.290518597 503.27835516178874 None None 65365 WPR_20190714 5330954.740888637 468.38194322363563 0.008771221394692956 7.702141456528399e-07 187474.5325174653 16.462420727627727 34760 None 1294750 GXS_20190509 58028513.38650044 9749.257456023492 0.9675485572217614 0.0001624274570895711 7540881.707899428 1265.9274109657238 None None 893298 DOCK_20210428 62812788.88024496 1140.1864735788 0.11192767360648676 2.0323126769745193e-06 38916865.882608294 706.6281048546539 47353 14979 216888 BAND_20210105 147136720.8816183 4702.913010766082 6.575494418948348 0.00021017172375325954 143288969.37878633 4579.9278001644225 42933 2946 375522 ONT_20200106 348621303.84827846 47473.82524347208 0.5472617499380203 7.450945839699251e-05 94395096.19935897 12851.852872858 81588 16275 336672 XRP_20200229 10383454661.41943 1190160.5198284045 0.23717611347675766 2.7185330481116673e-05 2477143911.606179 283932.3694917503 946442 210398 33737 STRAX_20210624 121267617.97889774 3596.9098718255136 1.213785254536259 3.602930630308288e-05 13050644.245182801 387.3878490490515 157241 10749 142794 WTC_20190312 31232668.543888036 8078.257154793715 1.1730284893287592 0.0003033699321808363 8961298.338339396 2317.5809401781185 54436 20350 860641 DOT_20211021 46502735484.6576 701586.2106585213 44.55324022965871 0.0006723936402037901 2051643382.724359 30963.224120155464 None 32398 22718 ZEC_20200319 270209195.02953005 50208.35816604137 28.9897267445361 0.0053806650744688475 317670613.29574144 58961.54831703114 72990 15630 148838 ENG_20190509 31550456.180548362 5300.441239081545 0.40963026047593165 6.878990156942565e-05 996254.5767239385 167.30271389448836 62020 3396 347491 ARPA_20200107 0.0 0.0 0.010042002335041569 1.2951540890866749e-06 4139383.1121100136 533.8715113855246 12624 None 827154 TFUEL_20210408 0.0 0.0 0.3584616751638384 6.375607647537663e-06 137014731.4662573 2436.9471837186607 129933 12338 23388 VET_20200914 819740269.04583 79413.6548646818 0.012770549535404203 1.2365921426779243e-06 124355573.1416782 12041.54325691999 135016 67243 75670 FRONT_20210825 59370068.55965039 1235.466649426342 1.2866201447001417 2.679165800017279e-05 19136256.392361715 398.47972129121524 71638 None 304891 BTS_20191026 72491983.8916105 8392.986991214071 0.026652598241087292 3.0836877695623674e-06 15928489.65237307 1842.915586852735 13533 7117 129148 NCASH_20190321 5276831.618990013 1305.3773342621737 0.0018186989621853445 4.499079323545458e-07 517853.43012882693 128.1060642009791 60383 59528 708822 LTC_20201130 5187570863.43909 286005.70144144504 79.11564866102998 0.004356661244724616 4015379014.8386264 221114.8670698418 135129 216642 178888 BRD_20210210 13109084.117451662 281.77528374039815 0.16899125433081594 3.6284049428623814e-06 1536945.3336667817 32.99969615391455 511 None None XTZ_20210325 3089734437.587358 58451.96000422631 4.013219328136062 7.607142544801284e-05 452772809.9941248 8582.404858583302 96487 39931 107402 LTO_20200330 6137184.201235888 1037.2271363745328 0.02874164603364444 4.861209277625547e-06 1338092.7700340927 226.31790052661077 14522 419 882624 ZEN_20210814 852665053.8901315 17875.697016668255 74.81716957711393 0.0015680888732453237 36998213.0512469 775.4434783291646 118069 7489 1280845 FTM_20210523 752227938.097165 20011.741478842458 0.2935826503567624 7.817181739639319e-06 149069458.1444902 3969.250378825034 None 7867 46470 LOOM_20201228 23441080.121432662 884.3560942428787 0.027867330961329016 1.0596624354791553e-06 7783960.618945529 295.9871068597048 22806 None 350385 VET_20190807 268963582.8467318 23527.90550547499 0.0048963326683885144 4.275793507387091e-07 29309927.857300896 2559.5319542590983 113345 57225 138282 FORTH_20210513 244784119.2681652 4749.613691059401 28.003185091566163 0.0005582517190524996 36057253.72124163 718.8119425835464 28630 None 71804 XEM_20210218 3573326817.2770815 68516.42126072104 0.397036313074902 7.612935696481552e-06 179010607.88526902 3432.4221788789664 232372 18411 44148 LRC_20190723 38366923.07320286 3710.9446888556618 0.03987445701567684 3.8569259244207525e-06 2485653.299397927 240.4291209733759 34775 2451 709028 SALT_20190201 16758038.905845607 4883.904330582257 0.20889975454521187 6.088101487370604e-05 1086907.5327978088 316.76453528950896 43070 None 362688 KEY_20190901 3643539.093255635 379.56453371804105 0.001393734089559988 1.4522379040930142e-07 21144.0338615591 2.203158238662044 23817 2828 766085 NEO_20210702 2424399546.8803563 72165.13384117688 34.38454957133033 0.0010222027154392938 354552845.9593274 10540.341124856328 405647 112177 98164 RENBTC_20211002 839035533.5489749 17421.849173018967 48112.58333415128 0.998864113206456 14766290.920275416 306.5625884810875 96286 6016 93086 COTI_20210110 34693786.907996744 857.490741201776 0.060384968566947146 1.49900665658364e-06 12956939.74078216 321.64526009237426 None 1283 237911 POND_20210916 88051400.77389775 1827.0787768632479 0.10956914876268789 2.2729176638923718e-06 51410808.88123087 1066.472971093637 22518 671 336782 LUN_20190507 6491321.99479997 1133.9069835489229 2.3992319532249105 0.00041941421621243815 1301607.4033435616 227.53641979295168 None 2235 1641403 BNT_20211221 747826915.9527787 15850.950871916248 3.2365446516929737 6.867324477685209e-05 32766775.94305424 695.2478853361705 141579 8660 38212 POLY_20200329 10618086.119683458 1707.2012150982946 0.017323118500920397 2.770968930641307e-06 6075962.079659418 971.8978800264199 34877 4992 422167 ICX_20210626 467728274.07040673 14710.400638201385 0.7401253943075787 2.3255681399213665e-05 57693200.57713292 1812.7937533854652 141159 32450 229472 FIO_20210314 74205768.83478664 1209.3992001307931 0.33256232115819073 5.420444669034105e-06 115511945.37519734 1882.733156113967 56667 289 389436 TRB_20210108 36841471.36331832 941.211982665018 22.71392659296796 0.0005755837896260666 44283980.31858928 1122.1811916655129 12024 None 425795 ZIL_20210523 1390372056.348463 36992.33212561558 0.11520452830476231 3.067533908742115e-06 257082626.9413999 6845.301023281426 278375 32639 31314 WAVES_20211007 2729943047.679485 49176.13678820272 27.306779175919804 0.0004922375624138 155597359.4593593 2804.8296888063487 197520 59676 141312 REN_20200403 42485830.433821134 6264.377500042804 0.04831982365386535 7.088025857843169e-06 1835634.9152858856 269.2689410108245 11459 873 365402 AMB_20190221 15071889.636473915 3791.2419418578806 0.05559365738347373 1.3984245549638477e-05 307879.34504741675 77.44517204735709 17842 4964 641993 CELR_20210206 45260186.2719823 1194.4079819109556 0.011581311952922247 3.034810306646959e-07 16550830.360364608 433.7041499734925 28346 None 412914 ETH_20190716 24761194859.108467 2260507.6556320786 230.18019411198864 0.0210487191429462 12728221879.918568 1163926.2386283425 446114 442611 33996 WAVES_20200730 149956203.5490571 13504.33287489476 1.4986360240293892 0.00013511909722549678 28309603.99848287 2552.4330616326533 138950 56876 125564 RDN_20200531 10780121.413537344 1116.8323853104869 0.1608728906910464 1.6675308592847736e-05 1445047.598625379 149.78667030176572 25002 4308 1712876 DOCK_20210201 12674749.887381578 383.49612441121855 0.022598979058674116 6.816782766946651e-07 8131990.45065066 245.29432157552728 43451 14841 229507 XRP_20191118 11390521192.50825 1340088.687466436 0.2634004405345416 3.095335713106474e-05 1565745959.2119908 183997.7706706026 942183 207432 26921 YFII_20210509 104186817.08206175 1776.693290727203 2627.5560303909306 0.0447528547155335 71244132.02374421 1213.4387441848546 15875 None 329518 MFT_20200117 8293317.213229044 952.7009227178005 0.0009197681004678424 1.05556236773615e-07 989480.8347407288 113.55674677314849 18539 2432 906375 BRD_20200707 7772859.2828830695 832.6754022407957 0.11921862957041965 1.2769016500292163e-05 561673.0895323375 60.158491788166 207 None None VIA_20190626 10634094.473230196 898.6904969928595 0.4594293217416284 3.882650906745792e-05 651784.7207548723 55.08252123413955 41033 2236 1573301 BLZ_20190719 7667456.174330694 714.4218139215175 0.03666804195478074 3.432912284713114e-06 416638.2387092711 39.00624226704347 36583 None 1258413 CLV_20211225 167977431.2624609 3303.6469769296273 0.7953822906063112 1.5644775322169193e-05 15693069.25535034 308.6748919542124 101497 None 70589 WPR_20200806 5129186.20618838 437.8496755997619 0.008427899826139094 7.191777324921017e-07 547880.6307502127 46.75228204270039 32931 None None NEBL_20190725 12796169.761263495 1302.6031479427513 0.830227735081275 8.470000531628799e-05 185548.73090216485 18.92971991872247 40524 6157 884677 LEND_20200621 176554690.9391366 18872.16071862098 0.14006771364853762 1.4964642327852385e-05 12448887.761598436 1330.0220863128545 46843 5736 78862 KNC_20210217 415774275.81129795 8449.557437642423 2.0374178483051018 4.142144589109384e-05 136948898.90726483 2784.2209248589447 135964 9761 94681 ADX_20191017 6524360.52425062 814.8946930445854 0.07088200648572128 8.85318502907234e-06 319136.19222876604 39.86021134777013 53368 3834 323410 KEY_20190312 6853468.881199253 1770.2044609059728 0.002665533126465076 6.902502871668991e-07 650794.88591648 168.52589541302225 23426 2818 779936 NULS_20211011 51236371.64923158 936.2474828404463 0.5401617058691628 9.872478561855201e-06 23906412.45474278 436.9349805546631 71646 5484 224525 ANKR_20200417 5539884.67248131 780.85071156593 0.001384941181932581 1.9536853200682995e-07 2021090.635740481 285.1077834268561 None None 5745 BTG_20190511 351342416.19973725 55135.75662455406 20.06991681024908 0.003150296745551027 22224895.964730766 3488.5554379650944 73679 None 432620 WABI_20190922 8299772.820621457 830.4791384438278 0.14280145865414606 1.4293603037253298e-05 257236.63417926675 25.7479046100124 36248 7928 1396317 HOT_20190901 142871271.05136746 14884.264944044606 0.0008033270107529592 8.370896396320198e-08 7982928.510260799 831.8439017255182 24255 6656 436903 QSP_20210725 21532651.784816705 631.078665159172 0.030191229404356996 8.838590083943956e-07 421401.85312048916 12.336689541396595 66514 8492 252569 CMT_20210111 8630176.570826368 223.86947451158895 0.01074564612537513 2.7951704640876347e-07 3015126.196609991 78.42982722425097 280626 1628 1272511 REN_20210106 303922113.3515883 8931.423084962267 0.34558560477030725 1.0127570734175245e-05 74307274.50389649 2177.614368810792 31871 985 104896 AKRO_20211111 99264222.38168088 1530.3911568236929 0.03688033922734041 5.679099018697882e-07 18636858.944546916 286.9837142526192 48022 None 212051 BRD_20190329 17081151.90464099 4242.613784401642 0.2849366330526893 7.077074121052826e-05 837141.836978161 207.9239431818944 158 None None DEGO_20210624 26906224.75226642 798.1195541777146 4.977869594800431 0.00014770472447421716 9265150.854623243 274.9181207204864 None None 129325 ONG_20211225 0.0 0.0 0.8283870670484728 1.6295687318366053e-05 6450439.844011613 126.8903812543375 181397 21043 97967 QKC_20211216 140196741.60563076 2873.685336817138 0.021266185999095945 4.351641255879718e-07 4895336.0715065645 100.17191804430622 78526 9622 488675 ATOM_20191015 762921136.7018214 91405.67058332864 3.0999730163356434 0.000371382884619632 175037171.70111793 20969.79857549335 None 7063 107820 REEF_20210819 254591237.76425478 5651.990622129977 0.02007888226843196 4.4583212076727614e-07 38048914.068217 844.8392607289179 193095 12700 76465 PIVX_20190810 21628779.720011447 1823.939587362922 0.3562365130950643 3.0034618938166975e-05 6769929.796335658 570.7788342763819 63302 8610 295552 NKN_20210318 93656739.52107428 1591.4076616454854 0.144372174113448 2.4493823262167314e-06 24017739.146829035 407.4789767708221 None 1125 267321 BNT_20200129 17509499.324004013 1874.3360883856544 0.2501148699869158 2.6809704955974025e-05 9650795.865523122 1034.4646432199095 754 5050 111697 ZRX_20200127 141996549.4719564 16543.6594747908 0.2305290509211633 2.682527355567799e-05 31545906.381355114 3670.8066287534984 152206 15967 132078 CTK_20210702 53776533.90418597 1599.4568133630637 1.1886610632603085 3.533962498429234e-05 27924977.35601382 830.2267635061492 76113 None 123040 SKY_20190405 20631948.543649904 4212.063309859918 1.3754632362433274 0.0002808042206573279 1098627.7668632285 224.28757507841826 15411 3595 412487 PIVX_20210725 32907394.100329112 963.1599043290233 0.5026181631545884 1.47110300032284e-05 320726.4102021935 9.387276841925514 67667 9848 339375 MATIC_20200422 33128904.535100643 4839.62269880097 0.012009737272868967 1.7544376407264187e-06 12296674.80674778 1796.3547949935198 34602 1630 177145 SCRT_20210429 228369468.53345138 4172.054057490015 3.3013946188563237 6.029196797951374e-05 3935074.6952088242 71.86459812026806 77775 None 64525 MATIC_20200306 72433912.21689516 7998.323098749049 0.026267287608054333 2.8996466913052595e-06 80146249.31486046 8847.34694019576 32233 1558 153243 LRC_20210220 921404452.6337577 16499.47491006341 0.7405388097073683 1.3253317286041682e-05 109658553.99571635 1962.5434753488007 59938 9076 128184 MKR_20220115 1966548974.389328 45632.96854875449 2189.3797697548057 0.05077810042609649 43372750.91562433 1005.9405554826569 194990 32598 27561 BTS_20201231 56277049.98503311 1951.7764077443608 0.020764937355415087 7.201606134182107e-07 17237257.202790122 597.8151298189005 13122 6880 129318 ZEC_20190914 330784942.286688 31944.648375872264 44.65542083304631 0.004312283410720792 172009446.82660353 16610.603375810162 118 15328 175119 CVC_20210201 101172430.031858 3060.827225446793 0.15092833280774487 4.563613069531421e-06 19430874.90768618 587.5304724534561 87813 8198 155763 TROY_20210314 32133308.680617463 523.782549298992 0.01667035269738831 2.717156573659316e-07 53180807.53585195 866.8117790404606 12241 None 606363 XZC_20200423 40198729.878463 5651.783806927503 4.028346541169708 0.0005665737461738714 25408375.282357164 3573.6047583772724 63661 4091 120622 ARK_20200404 23758094.741875283 3530.7742740179283 0.15996700659559476 2.377326118595993e-05 1654312.8668737868 245.8532712743012 62477 22028 82800 DOGE_20200403 233977644.13226712 34532.23304014706 0.0018903543609302047 2.772957262166673e-07 135883818.3652451 19932.771798480575 138913 151901 104219 HIVE_20211225 607176328.0030204 11934.237270036481 1.6363909411260542 3.2186998523231865e-05 42135499.95388167 828.7843941851507 None 200 74607 COS_20200331 9388447.987965075 1462.1815105984256 0.004750647394834809 7.407791945597793e-07 5224785.959457917 814.7126934747097 10346 None 121886 OMG_20220105 858844041.8353566 18564.55884184734 6.04890149717835 0.00013158239121999755 234016653.865189 5090.588913581732 6706 6547 114794 MDA_20210206 16379262.225675106 429.20831439316777 0.834446771802616 2.1866155351906215e-05 1641542.7088121807 43.015599197700155 None 370 2554978 ETC_20190903 756437661.3524455 73202.85948451834 6.686597998863263 0.000646634417133117 1171066267.0805643 113249.18189588045 229972 24944 350041 MITH_20190623 20773618.20536344 1937.0970569361114 0.049146428744900404 4.582303119061418e-06 17606469.135274746 1641.5878120665986 75 2077 556863 REN_20191102 43789361.51805653 4730.753734963615 0.052975505983235714 5.7231725721426435e-06 3025688.8570367736 326.87822715483577 9898 875 305252 LTC_20211120 15132525641.426569 259469.50803617854 219.27825342781202 0.0037598496039675747 2115211086.7261496 36268.41897184884 204112 350315 122629 BNT_20190627 54465162.601914965 4189.040699368998 0.8260804076340602 6.361171391102844e-05 7885897.914235486 607.2477659755122 792 5130 142963 BZRX_20201106 14527543.127150029 934.7581119866833 0.10345969646578576 6.658531156744363e-06 6562147.673730847 422.33126747229664 15324 None 79091 DUSK_20211007 56785096.71901019 1022.904740140653 0.15744828463847388 2.837853386086572e-06 2686112.106780966 48.414578508363135 28869 13673 352907 THETA_20200718 241548143.0463395 26383.29590519598 0.24089098416535096 2.6316814922641158e-05 14673682.132299304 1603.0677870630414 71617 4291 67592 VIB_20200610 3097686.0529909143 316.891970775146 0.017038682421131365 1.7440280916306021e-06 583454.716549476 59.720663294638165 30929 1101 None COS_20210111 23291059.17444046 604.0376217472374 0.007712016535235771 2.005108375486976e-07 1438452.8375949739 37.399476767544456 None None 444691 CELR_20210221 86682925.44982322 1551.4116823752076 0.02223254133278974 3.9543321095948566e-07 48271133.965430856 858.5617458159765 None None 384776 CHESS_20211111 108777716.21634114 1677.666507022514 2.596187103092193 3.9977950144766664e-05 13302750.43294047 204.84528752297786 22592 None 45262 AUTO_20210718 26937859.749449532 852.2015236227093 804.4344135879091 0.025451748855546047 13858605.373914648 438.476695560278 None None 11033 FTT_20210602 2955404453.9896564 80546.18295525304 33.771840733930546 0.000920667384747796 142537555.84559768 3885.772167486949 131672 None 3336 WAVES_20200629 113421743.7031808 12440.15870608787 1.1356894534704491 0.00012448482489152562 22633958.785527613 2480.946166584902 224 56864 114930 OMG_20200607 239472797.80322373 24765.74474844699 1.7075269578772474 0.00017658864463022866 121340087.11766031 12548.72224685655 64 43023 406561 RCN_20190905 7295990.46326575 690.7037378108369 0.014386557362648192 1.3619602430460548e-06 1098688.6167441865 104.01169492973148 None 1112 1734382 DCR_20200713 183389242.30465138 19762.157289302286 15.620217320492596 0.0016811657380783561 8104428.810569708 872.25982606209 40557 9865 294466 TFUEL_20190904 0.0 0.0 0.004653104195631672 4.389040113223401e-07 892435.9432303547 84.1790123031761 70152 4023 310301 REN_20190812 94862783.56487755 8214.01849826631 0.11480239529423376 9.937750325577901e-06 4483791.120948861 388.1347297487174 9324 873 478249 NEBL_20190920 7337566.412866618 715.5771453444369 0.471559470782244 4.5982100697798395e-05 924170.3921682207 90.1165148143666 40422 6108 485969 AUDIO_20210120 30014216.29811386 828.8280734932073 0.19595751976612363 5.400976869677047e-06 2524626.460505518 69.58369923256285 None 2427 50334 WABI_20190601 16857453.635232545 1966.6660595222336 0.32279991237115646 3.7640027861017786e-05 1663527.7028555153 193.9753596062359 36296 8028 932643 VIB_20191118 5724510.265175378 673.5188828840338 0.031391162176264135 3.6889150664638096e-06 932012.9184183376 109.52498278295604 31936 1120 None HARD_20201228 22088673.991698466 834.3507200385872 0.5516863774698544 2.0978016559304476e-05 3365733.327632796 127.98287643986984 None None None STORM_20190430 12281423.313706517 2359.67397786566 0.0027354211239468806 5.253497070994336e-07 452185.1593605341 86.84415680829568 27071 2572 3845738 SNX_20210112 1770514066.8110359 49982.03231199896 12.848142035327442 0.00036144374246395943 392621466.0399164 11045.221298686947 55347 3079 45504 SYS_20210210 74899685.26193108 1610.6763548680635 0.12797789908820636 2.746628519664045e-06 5154920.499315982 110.63356845906267 60950 4527 273624 SNX_20210711 1773187897.6704366 52584.80114767021 11.158438396400497 0.0003310208452737609 155323688.21075734 4607.757531658608 None 7159 47664 ADA_20200316 840720328.3685061 155614.5376014052 0.026756995277093912 4.979338087659038e-06 98577461.91335168 18344.754543874988 155655 77131 42201 RCN_20200501 34642106.78341596 4000.4580313660117 0.06813742366032086 7.904844861405194e-06 583645.5406651032 67.71062369496804 None 1135 1160341 COTI_20210220 113682627.00386074 2036.5356741772223 0.17038680079923157 3.0454788460078965e-06 73875563.73928943 1320.4453957088947 41701 1641 218044 VIA_20200331 2706975.827415107 417.07513058823815 0.115555255222246 1.7962747786674137e-05 33819.810447175834 5.257196862984341 39318 2176 2856739 REQ_20200905 23314243.98843606 2223.52725238466 0.03020758998356083 2.880959793962208e-06 384123.244677327 36.63462144593228 39562 27723 292019 RCN_20201030 19698615.705084376 1462.4020736906746 0.03857586326175507 2.868808454334086e-06 3696243.1413610163 274.882081089387 None 1131 1361725 INJ_20210207 151940151.13671264 3874.78679149206 11.24555319787354 0.00028597546238754915 47532684.564471446 1208.7605836426635 45268 2261 139911 XZC_20190716 74328588.61798179 6796.942682871778 9.37458623791218 0.0008582653438524679 10503098.66502958 961.5833017570728 60852 4037 262317 POA_20191127 3250898.891910749 453.5448975742757 0.014765563061203942 2.0599981755458746e-06 197640.57943707064 27.5735663697066 17621 None 417356 NULS_20210725 33492196.625813138 980.4960010793502 0.3573687154787712 1.0445006628438264e-05 6151350.749089817 179.7888191248473 56485 5362 334900 DUSK_20210114 16808490.731952526 451.37328521894364 0.05589084562935422 1.4955143533915228e-06 1692497.2907166488 45.287452047668346 21036 13343 1115146 BCH_20200323 3723394216.869888 639282.7999455248 203.35702776786295 0.034889099149082205 3001337190.7522535 514926.63901203737 None 288363 138735 CHESS_20211204 111603873.76356922 2078.484402265258 2.324977774643866 4.3282427762267465e-05 33703747.418836504 627.4382615106725 None None 44775 HC_20190702 197044522.1516483 18569.233663653697 4.472734747896232 0.0004213612438085775 158567971.83123308 14938.153412839483 12912 839 542452 LSK_20190613 277743330.99745244 34192.50810039136 2.0918925910041155 0.0002572614157765183 4570647.417918955 562.0992353076338 182935 30455 180914 COS_20190901 27742468.68698452 2890.6995159364947 0.021166845733883038 2.2055351817174165e-06 964345.4564644228 100.48251205218418 9318 None 256445 WAVES_20210703 1607551783.913313 47560.89626687763 16.125803313002564 0.00047610110323058184 117779448.3940978 3477.3415147079822 193679 59108 98898 BCPT_20200312 2347805.5664077033 296.1233661650869 0.020245040401871597 2.5503365255671303e-06 69905.75976405288 8.8062660747915 10692 3166 1771218 BNB_20201226 4899865020.948586 198414.38973316795 33.15766052669594 0.0013446941901921006 481229184.400561 19516.0357556987 1409431 82124 1070 HNT_20211011 1882095619.2275014 34391.72660449712 19.144974948166634 0.00034993542618136765 10458957.848715972 191.17078408890106 90702 57849 2627 NKN_20200704 13862355.452842766 1528.748644812954 0.021324078011962126 2.35257813229163e-06 2069844.687818427 228.35554001772127 12946 1010 257526 ATOM_20220115 11554931430.017805 268087.54785959376 40.493562880638606 0.0009388864659937951 1260104620.8299878 29216.87028925769 311956 54335 29857 GTO_20210814 38262989.348470375 802.1644623814896 0.058374275159764635 1.2227750755674302e-06 86399773.96143752 1809.8295841029098 13506 None 552838 KEEP_20210722 103888147.7236567 3228.2452623003364 0.23824810765031504 7.403388455611156e-06 7563970.6542876 235.04494357926256 22089 2817 132886 THETA_20190819 118234727.6389456 11456.92826994497 0.11822298871853211 1.145833700989482e-05 1808476.9226496627 175.28010650849848 None 4025 248011 PAXG_20210111 93246804.03234008 2418.8512074216137 1881.1295359445896 0.04890897952130898 6929524.556119497 180.1662076596299 None None 75931 DCR_20211204 1438756492.7882707 26830.579429489717 106.15104139470046 0.0019795524551510695 9825777.858745359 183.23553333523358 50185 12425 141050 ICX_20200913 278114490.0905736 26671.306310655287 0.4932064301893941 4.723341311077668e-05 26607210.797888663 2548.1204266935333 116285 27970 115181 WINGS_20190224 4443290.5708610825 1079.838437546748 0.04971028656864781 1.2080929059718702e-05 120622.79574912322 29.314565234254193 37298 1222 1388669 AION_20210603 102821600.97916842 2732.33209531677 0.20880574283608216 5.548704040827718e-06 6247797.067532218 166.02597401788037 73335 73342 242029 MBOX_20211221 475279151.66145617 10074.024246417312 4.964955101566806 0.00010534678606013623 42703210.805355325 906.0798981592027 None 8301 7517 FLM_20210427 0.0 0.0 0.7562384810362073 1.4033570421009937e-05 58938866.22268402 1093.7326655702398 None None 105842 BEAM_20200308 34807209.90357163 3915.7914631538615 0.6098685813023369 6.852123475125005e-05 30572877.9377585 3434.9881440374447 None 1471 244463 GRS_20200301 13374399.842341486 1559.5608260646236 0.17903197544506322 2.0898546655270565e-05 6123346.667320959 714.7831871668673 37776 106868 3955402 SNM_20210202 5989850.502782631 179.41664372314128 0.014027354642562823 4.1999998824885173e-07 896882.309015813 26.853998408528327 28877 9479 None INJ_20210202 140980787.04783165 4222.859924436879 10.396828405878853 0.0003112966000763098 46730564.895211704 1399.183039637277 None 2189 139911 VIBE_20190201 6649106.182536186 1937.7922835626166 0.03321229469517756 9.679275170662753e-06 930740.2422480746 271.2516855523542 20596 None 1520887 ARPA_20191220 0.0 0.0 0.009047102279035863 1.2661006030779292e-06 1390297.9039487992 194.5658355964937 9660 None 759241 COCOS_20210710 20185547.582894165 593.9267106068207 0.48039641177476294 1.4135556613397944e-05 1564767.7081975748 46.0429386729357 96161 1199 327250 BQX_20210124 214394857.81243074 6702.390676757549 0.9654529506167322 3.0164353942854634e-05 7563017.475517522 236.29689656215103 25331 219 96295 STORJ_20210527 180766332.5333295 4620.618561811884 1.2719618911595705 3.2467931641689114e-05 58741658.381289564 1499.4318321160292 102758 13441 51998 MITH_20210218 13486575.746548485 258.41245421046216 0.021673645373937817 4.156776855220414e-07 8273898.111313435 158.6846493895128 24783 2200 386165 LOOM_20200109 14266965.349103212 1772.8751658911892 0.017075723252466972 2.1247463436485776e-06 2348364.6765385433 292.2089557353229 21274 None 304548 HIVE_20210124 52323265.77963114 1634.2626115979597 0.14002256775158267 4.3691277652063364e-06 29302838.300352838 914.3372134451959 10772 101 147152 THETA_20210804 5883370785.719059 153130.4714625539 5.886764527175414 0.00015323915931600765 250062142.72760758 6509.401276616794 185647 22276 19933 ZEN_20190806 52882440.522594616 4477.561239511388 7.376559558699179 0.0006245095248097644 1818992.7912884247 153.99839378782775 None 1759 272148 WABI_20210707 9934489.282629859 290.8541342436504 0.16818409189817124 4.923798491241641e-06 445905.1735261533 13.05442860775579 45501 7888 437012 AION_20200501 33908461.579287864 3915.736947068898 0.08195441853371416 9.51528589706842e-06 4189236.730969498 486.3897017251956 501 72546 306523 BRD_20210401 37690057.94910363 640.7769800389776 0.473414488044513 8.056524365406951e-06 7688707.038832601 130.84571165681444 None None None ETC_20211230 4476632468.033974 96522.26154667875 34.12414005465731 0.0007332855402089578 319972285.4606352 6875.808440010021 597910 62684 198488 VITE_20211204 86673853.30503759 1614.272093253811 0.11308190791533577 2.104244392412072e-06 32416463.77092009 603.2102161104145 39454 2797 264565 NXS_20190318 25298578.242868003 6353.343783889844 0.42370581070091823 0.00010640711318919993 554316.2689424538 139.20789491746956 46 3505 745468 RENBTC_20210125 492233158.719978 15287.072720926999 32277.79138339709 1.0004212614178616 18396983.67560113 570.1980472088817 None 2297 93933 TROY_20201014 6195554.01384271 542.3087913041591 0.0032552859500092077 2.849974577119423e-07 998898.3628034468 87.45268412158954 9976 None 421740 LUNA_20201014 141670383.37985763 12400.282187260887 0.3160977847818787 2.7674462679090068e-05 3139624.821843337 274.8751625020224 15376 None 174032 BRD_20211202 95201703.12776591 1665.2905702538696 1.0883494736964756 1.9032348924555258e-05 34870750.13061417 609.7970365095412 1059 None None POLY_20190130 37908290.50767624 11101.432714241826 0.09984917430587774 2.9232357929217377e-05 2153899.68697769 630.5867527805353 32516 4968 216982 RDN_20200422 4710400.351564153 687.823549389102 0.09256238986744586 1.3521722046600351e-05 1037165.8993952995 151.5115267434104 25017 4316 1251833 LSK_20190314 178677195.2141973 46200.896055389894 1.3717132112848829 0.0003548316769047811 4875623.3267573835 1261.2152356314161 183157 30459 174476 YFI_20210114 994503525.5042958 26691.762872033472 33318.027621029214 0.8914341935247753 856702492.8165236 22921.341697086067 65615 2622 18869 YOYO_20190916 3018665.8066729796 292.9628258687016 0.017262272007564184 1.6751070522755293e-06 2279462.0692074155 221.19585335295068 7541 None 797587 BAND_20201115 129397482.16582508 8040.877767476951 5.7054162028584585 0.00035468075615525724 67203931.7274661 4177.774324292409 38815 2708 146700 DUSK_20210201 21709108.384243835 656.891012134046 0.07249666872913059 2.1862807512319167e-06 21650654.04186508 652.9183893975425 21621 13362 931184 AST_20210212 46569753.313124135 976.6415699627568 0.2713360887060214 5.673927238143239e-06 8437827.648767877 176.44398264682343 36666 3478 162456 FTM_20191102 25138476.0940621 2722.706067363261 0.012022217995348083 1.3023970209131303e-06 3211301.3670401243 347.8883293669827 19168 2192 560187 RLC_20200605 34105396.78318658 3488.9941354898615 0.4855998121625496 4.967703227734782e-05 1576514.5343739258 161.27799362407043 30330 3579 681480 ANY_20220112 319268527.6183061 7451.832346616727 17.380812258698526 0.00040622823284070094 7609186.175010918 177.8436017386702 606 None 10549 ZIL_20211221 777032910.5971241 16470.00158592157 0.059936312341979846 1.2717331263542532e-06 48693022.8897683 1033.172175790866 364244 39718 41987 FIL_20210421 10378377088.785328 183702.6539644583 153.87534665124306 0.002729063905363919 1333667516.362534 23653.326929040802 77733 None 34217 NPXS_20190622 204868117.348793 20231.66005129675 0.0008626248957375545 8.497721554665933e-08 14269723.442854052 1405.7110695348504 62084 4557 216939 NBS_20210723 0.0 0.0 0.01009010844563698 3.1167774987529006e-07 1083688.026497445 33.474510951521765 None None 1815973 SNM_20210523 111554189.93142359 2949.43402912 0.25177466419837496 6.7e-06 364490.94436452864 9.69950386 32506 9711 None WABI_20200301 7042451.832953876 821.2055963326898 0.11797353273568086 1.3793382220814477e-05 528814.6707062203 61.82863823674361 36912 7782 3668499 KAVA_20200713 51853164.915015355 5588.830106714249 1.9022006669430624 0.00020473155177149036 15625786.05906945 1681.7844106130608 None None 340069 FIL_20210202 1073176630.2547331 32140.90929518339 22.552385653557636 0.0006751954625280101 231322958.9842114 6925.573847663157 None None 48258 NEAR_20210727 893828426.3761333 23874.648288564233 2.1288101219005835 5.705171569902303e-05 86532651.57813722 2319.0589831050484 94501 None None RUNE_20210108 320286440.85409456 8176.494420503496 1.462091478196457 3.7080969385190436e-05 35872598.039797455 909.7862408183998 26542 2040 287788 BEAM_20211230 60597516.04870048 1303.5647026818572 0.5840838765894423 1.2551239687980837e-05 4589187.008677783 98.61594957083567 None 2977 252645 ZIL_20190213 162174043.94489294 44630.12782832728 0.01711545270938423 4.708520676300183e-06 6043638.493369157 1662.6260075790985 55842 9923 190156 GTO_20200913 7900179.925300534 757.6308542153233 0.012107210343890252 1.1594786069286138e-06 6803239.935911758 651.5300337102644 16622 None 1248781 POWR_20200305 44842410.472583346 5122.412947218864 0.10439456740008836 1.1920648820927765e-05 3886667.3283711276 443.812331035595 82728 12842 280064 SNGLS_20210722 6305217.047148799 195.9729216616335 0.007396686820024433 2.2919027681916262e-07 26645.46857051225 0.8256240214361039 9466 2136 None BZRX_20210401 100336448.25793539 1705.9060911920867 0.7081557876626795 1.2051330286435778e-05 72602149.21541892 1235.5367207940967 20396 None 207011 HBAR_20210710 1584528258.0122077 46637.2119390028 0.17730118015776683 5.217047438975156e-06 49364056.79169079 1452.5262935833484 116421 23011 40505 XLM_20210823 8744300371.676506 177246.75688904492 0.3709916126916148 7.528063023049025e-06 562363771.4742309 11411.335913560495 614539 198313 37413 EVX_20190325 5722677.250738064 1432.9893797623654 0.2978134641882928 7.463298510039458e-05 544902.7164130786 136.55432411715825 14417 2323 1271428 CND_20210825 30644634.33772236 636.4576467777978 0.01634965985906068 3.397773134950084e-07 516164.1333047487 10.726881418243947 36274 6267 184499 OGN_20200330 5593974.590440579 946.0118168532656 0.19609532850171435 3.3179862057931904e-05 14155660.383296806 2395.1761750031355 66352 2184 104622 OXT_20211021 296968535.56279033 4480.304785008566 0.49942482942169675 7.562615746374473e-06 64935924.455811396 983.3020223755179 73816 4572 256049 AAVE_20201111 786769427.9055935 51465.494761523594 66.90511678147242 0.004379696985449141 404830326.3719898 26500.725883506566 74285 1541 15035 ZEC_20211002 1333548825.838145 27693.65748966443 114.68381528228522 0.0023812234267438833 254367930.8972444 5281.537543671596 79331 20729 150261 CDT_20210324 24299699.33909081 445.4830646717224 0.03603934428695894 6.611274425274916e-07 881656.8252179261 16.17364393208887 20311 308 485840 INJ_20210212 202563012.7232379 4249.7983993726475 15.065927570946974 0.00031564492885570786 42187972.93545175 883.8765255619896 46183 2373 139911 BTG_20200422 156293318.4579436 22822.311698377496 8.914480564201336 0.0013022473658207165 42590846.10329687 6221.766568074063 75195 None 211621 QKC_20210508 222846699.77867106 3888.8737815553914 0.034499969265944216 6.019905073086524e-07 29811444.521446873 520.180365168751 73104 9463 369620 NXS_20201229 15464418.229239896 570.2574556040511 0.22896431985649462 8.43540286192483e-06 226471.56699350144 8.343565956298034 24185 3521 534384 XMR_20210509 8501776444.029756 144973.71768561087 475.54862089060333 0.008099602099721203 851853899.6418989 14508.879494327126 404886 217110 36296 ENG_20190805 35212637.39698338 3215.7824060223084 0.4492039924206944 4.1016322362261615e-05 319850.14462127007 29.205164826575185 61763 3474 330014 RDN_20200407 4834755.328316445 663.5082224921085 0.09518371294361119 1.3062745040172778e-05 1170104.3255079628 160.5818264682412 25056 4319 1242086 FIRO_20211202 97568220.1058831 1706.9493776426082 7.7187524501140725 0.00013501879528405976 2708723.6022271635 47.38182755489267 77115 1604 165193 FIO_20210710 54823220.13452407 1613.0835522621462 0.16281816669385862 4.790841662102358e-06 3502891.5100223823 103.07079931439164 None 483 108144 QLC_20211011 7800600.261529656 142.48118323396406 0.03182585507237892 5.814670200739224e-07 2186036.2443404095 39.939476186246395 35182 5776 940522 SUN_20201201 0.0 0.0 0.000123888625639383 6.6e-09 0.24728268590671224 1.3173652694598e-05 40 None 8117599 WAVES_20210806 1642679863.722437 40088.46869344816 16.42833404686959 0.00040097586472353814 114886266.8871966 2804.0956604927824 194811 59212 114002 BEAM_20200314 13919886.521709789 2532.1297707556255 0.24436567640527815 4.4147087728290096e-05 37572927.869257845 6787.92278544817 15004 1472 244463 XEM_20190401 499292796.64887124 121675.47859800444 0.055419771146464354 1.350538823445004e-05 18367893.123247933 4476.1196689671715 215864 18463 129462 SOL_20200806 43050611.45569475 3674.955393302417 1.7611833194175444 0.00015034095729275882 5569521.620614501 475.4344439185473 82193 2149 111447 PIVX_20200223 23376598.580083124 2421.691671450024 0.3723543289067211 3.857461393867639e-05 720680.4230110967 74.65998628897168 63925 8512 215507 KNC_20211021 155197164.660337 2341.305463380555 1.67781897202891 2.532149851257051e-05 25138235.822808612 379.3840763560796 189853 11981 107187 NEAR_20210117 544674519.0856768 15011.625014007566 2.122260114926953 5.8530038768392905e-05 75292863.54960528 2076.5099393546284 35257 None None KNC_20191213 37486133.06666657 5201.312582853016 0.2212488981141962 3.069765959996034e-05 8876539.238711849 1231.5947437398036 98586 6757 177558 BRD_20200417 7501993.802359287 1056.5420427902266 0.11999172057563709 1.692678837748442e-05 626184.8818314857 88.33358609322009 186 None None LIT_20211125 120180139.51594374 2100.7790067380856 4.3323997769567475 7.57510111619944e-05 16965725.562356833 296.641799605156 65378 None 170550 NMR_20211111 252707739.6110758 3898.579988398208 43.27836112293611 0.0006664136888656874 8965381.396152232 138.05173609338098 31895 3713 4492361 BQX_20210711 478524390.2667813 14194.855214002762 2.1522923093216764 6.385573997894337e-05 764115.7769928983 22.67033067866354 95094 6180 22386 BQX_20190623 13075252.660647722 1219.5966412666637 0.10997631484786778 1.0252756533911473e-05 1127113.5456110446 105.07735947698754 60744 5766 449913 QTUM_20210814 1416214148.656786 29722.854777839046 13.66325177366486 0.00028640958166865595 1014746486.5807197 21271.15283650859 250757 16810 166372 STORJ_20190621 39296112.50705834 4108.08088771609 0.27345900844822896 2.8612207305042232e-05 5740032.356224636 600.583599881816 83685 7750 209007 BCH_20200905 4276899234.9124684 407620.8570152611 231.09894594974702 0.02203665947182075 2934458178.002156 279818.0464959574 None 316818 143808 ENJ_20190227 72643851.92000422 19072.65907531677 0.08433268189806854 2.213499168017681e-05 112022577.50703779 29402.82183966728 39272 11451 18087 NANO_20201030 102722482.09733292 7625.959902732511 0.7704907072253773 5.729935389504571e-05 4021461.4142687586 299.06543789638994 98538 52847 246217 TKO_20210804 114335921.12984303 2975.7721785808326 1.5243164862482095 3.96796875101585e-05 14638303.511770898 381.0516479130597 None None 21500 CHR_20201015 16300044.486863617 1428.007192051557 0.03599286340930778 3.1507147492023636e-06 10659642.367756855 933.11532476265 29435 None 318616 ALGO_20210731 2697826010.691883 64634.05820306724 0.8517891294895023 2.038663135740905e-05 159084942.4220249 3807.5222650660003 117687 36321 224213 VIBE_20200309 2169973.9148206343 268.61111182532636 0.011536001642111667 1.4329845033731338e-06 177458.11003541193 22.043575371066 19441 None 1426283 OMG_20200501 104132111.12415342 12034.30347803614 0.7412659158581175 8.599667775989201e-05 181333421.4799676 21037.08194387862 None 42846 632859 OMG_20191026 117496110.30209814 13593.974555363344 0.8393841215459433 9.69515483981373e-05 67571930.7643894 7804.773938055371 286160 41799 None DGB_20211028 660817603.7863997 11292.549566647567 0.04467587473030735 7.634550395367606e-07 44265079.48960804 756.4350606639833 229372 42888 144911 TROY_20210523 19015374.41896146 505.8716084890982 0.00999110032979671 2.6603154839729515e-07 7564139.153577358 201.40921268876247 16905 None 513803 KMD_20190810 97065700.85410868 8183.113409923406 0.8398778475912003 7.080223820444871e-05 2663345.6555753374 224.52173737842534 98349 8440 220245 ICX_20201228 235804015.5340742 8881.614172167958 0.4033963242202614 1.532391501352081e-05 46691837.36417886 1773.6942669887487 116808 28052 334338 GAS_20190225 34797175.969177224 9259.349860309932 2.487487989761296 0.0006630238159299342 3507332.8553307173 934.8568608369274 316485 97920 150509 GTO_20210727 20570681.66752606 549.1392708595881 0.030855429580074898 8.244512874883555e-07 9351485.011593184 249.8699244399677 13698 None 367259 OST_20200719 7354602.117863239 801.9959688487044 0.010634390861592156 1.1597597686054162e-06 424802.89470406284 46.32792919472715 17628 753 831793 ONT_20190801 651620748.0367817 64824.70096497321 1.0018827056781896 9.955499840591387e-05 120175375.70953295 11941.576862626847 81486 16298 237451 AST_20200531 10816610.600626968 1120.5283953559165 0.06177690066467518 6.396426574804969e-06 21006839.302441973 2175.0638785870824 31755 3453 364044 POLY_20201031 31622480.892665014 2328.3572483764874 0.04359071505065268 3.2185707035120455e-06 6382990.238300129 471.2954434889125 35352 4994 334574 RLC_20200229 36794045.90338103 4203.696429116157 0.5213820072066689 5.983893750968434e-05 665897.5552468308 76.42496604312626 28406 3561 230585 VIDT_20210506 58698587.95276601 1025.0195520170148 1.2667784139664988 2.20970927802902e-05 18553655.48341718 323.64132677860096 27457 1548 391219 SKY_20190228 13245784.648978934 3465.8693271596976 1.0205566923488372 0.00026767486815096244 840023.679601261 220.32409308242194 14571 3534 348246 REEF_20210318 449116560.2667555 7635.062806581279 0.03978463265584695 6.751252163062486e-07 141380794.4909992 2399.1610099297304 82936 7879 35321 ONG_20191118 0.0 0.0 0.14448603218943362 1.6979196184083703e-05 4625836.921905068 543.6026681778305 81556 16292 302631 LUNA_20210127 614155066.4296565 18846.520033541674 1.2513304993901826 3.8414540591869136e-05 318222119.7170404 9769.087016626101 19818 None 163077 POLS_20210703 76798559.23943597 2270.9229511463504 1.0645092350665184 3.1440301193734115e-05 8350801.1710512685 246.6410768248838 379700 None 15425 FIRO_20210725 55155341.98408754 1614.6923075174334 4.554711291016429 0.00013331092938950859 4057670.3779692003 118.76313879877958 73710 1092 308142 XVG_20200625 112513101.45957765 12104.775695446046 0.006899606088201792 7.422974124895314e-07 13780147.771664042 1482.5437719003928 290501 51712 273967 AMB_20210519 8078010.902116362 189.5164406171209 0.05605511799318433 1.3102229644014107e-06 1456924.708004107 34.053914756952274 25723 5635 534259 LOOM_20210201 54276446.91008066 1642.3387600607157 0.06511820359951062 1.9694818951963706e-06 15196896.849917427 459.625904196535 24433 None 265333 AST_20200411 2273024.5870138183 331.49239015092735 0.01314773497891714 1.916646411444226e-06 75935.16709361579 11.069653118638026 31695 3461 340670 FIRO_20210310 77741271.72128618 1419.8442400905208 6.6874189475239625 0.00012213709736773294 6630484.310286724 121.09725951901913 69275 388 205310 OAX_20210527 12553719.698309826 320.88912489884586 0.22172526549878344 5.659729912888361e-06 311695.84852317575 7.9563071607615985 13909 None 1446066 BURGER_20210909 0.0 0.0 4.331853669981802 9.361548460473381e-05 10418837.218847895 225.1609979393372 None None 97080 KMD_20200621 85017217.78598388 9087.601067819785 0.7083221217922063 7.570507913036258e-05 2945918.802660221 314.85818274703064 99865 8375 202548 LOOM_20191024 12211400.301709238 1636.2602507985987 0.020263949030165526 2.7142279073797222e-06 3087701.209521181 413.5780631927524 21092 None 365854 HARD_20210527 50898343.50658633 1299.1073762282626 0.81868946790057 2.0884513628111592e-05 3420954.7372730076 87.26749107319412 31678 None None GVT_20190130 13753764.587878276 4026.6228749713864 3.474690488881197 0.001017869002481491 1009426.2123543423 295.6993306700573 20618 5796 134217 NULS_20190221 18253050.0260504 4597.606096953903 0.4565383514331315 0.00011498084530556037 4205628.228689811 1059.202775095902 19507 None 499055 ZIL_20190522 183332333.9596081 23039.21374852214 0.020817731616943252 2.6162591186517884e-06 115516764.88239506 14517.517808460303 61673 10312 200377 GVT_20190806 7322500.757728338 619.8487562923085 1.6504593917673673 0.00013971117725296612 756476.3334644088 64.03562525652052 21360 5728 213598 HNT_20210110 100014310.48326734 2472.544165279223 1.5513343353281284 3.8485142734826625e-05 2703528.9953250187 67.0685208877419 None 2140 70077 GXS_20190531 66701760.47875788 8029.929082397364 1.1135704692729995 0.00013420686872419083 14179253.848846866 1708.875470756262 None None 813759 PIVX_20210711 36407986.67502698 1079.951591058439 0.5562929908693485 1.6501767982093033e-05 472826.8567295131 14.025844678106447 67727 9839 316227 NPXS_20190616 210906826.66949213 23916.60989679509 0.0008870901277453819 1.006065444304764e-07 11982040.54941693 1358.9055465722488 61838 4532 216939 CELR_20210304 98999867.10134044 1946.6937428288743 0.025084908287592477 4.951002465675389e-07 31690883.762848888 625.4822295958079 32702 None 259985 ALPHA_20210210 368687009.1504343 7915.707676666078 2.10573576964601 4.5212174471400726e-05 344504650.7078015 7396.846555267709 33767 None 61683 DCR_20201014 145792713.58541292 12761.517389535255 12.04443450460376 0.0010541094040599495 2911690.908707489 254.82647337334637 40742 9930 232516 ONG_20200520 0.0 0.0 0.09370114441501202 9.598315065236945e-06 5656906.510639698 579.467532896119 84773 16474 164481 WPR_20190228 6056031.45084041 1586.5346441570803 0.010327911105517801 2.708852018099335e-06 495598.9856245702 129.98798098289717 35042 None 831971 ICX_20190411 191580637.0267401 36073.7735297364 0.4044039856992559 7.619966646644893e-05 14076561.52512571 2652.3707261547897 113303 23776 314795 ZIL_20191220 45634724.84705072 6390.460052994101 0.004883591387617141 6.834362882550686e-07 39621134.08032223 5544.796577570405 66774 10540 236490 QSP_20200319 4003483.7364425464 743.8989828945734 0.005708838604363853 1.0586874359015882e-06 71755.7375635006 13.306891835102922 55333 8325 355576 GAS_20210422 216889262.31361616 4002.8719278639896 15.559557406022646 0.00028739015893582245 35879289.906983614 662.7023224247529 380929 109128 88657 BQX_20190818 11772813.842916014 1151.760267524529 0.08370375134667295 8.188922064869045e-06 217799.45586220987 21.307799723810277 60500 5769 396128 RCN_20190915 6511105.173086777 629.2411316260502 0.012838885760401571 1.240765552073351e-06 967886.7539745818 93.53775436990831 None 1110 1734382 XVS_20210826 372020129.44002855 7589.743553739673 34.73217374048033 0.0007086643886766887 40516859.756643124 826.6933093529881 122327 None 17193 BAT_20191017 296641236.12859833 37045.355399125125 0.21875140509373153 2.7315060883641995e-05 48662305.68293932 6076.36710675453 None 30833 23933 REQ_20190706 14287510.87053154 1299.951839166777 0.019574797649580804 1.7810166120939854e-06 533862.2280130114 48.57355430599009 41626 29869 539616 LEND_20190603 10715027.398109484 1225.7233352014543 0.009606495747077238 1.0989151561836995e-06 1836511.0863108048 210.0838766165445 42276 5870 1092370 ARDR_20210429 379269903.17249 6928.835752765492 0.3805331683524762 6.94951565935441e-06 18956176.12384546 346.1885947669113 71492 6770 None GTO_20191011 9224852.283290273 1077.3582292868823 0.013920532929297005 1.625760526767803e-06 2861792.8932162407 334.22498586845046 17243 None 746491 VITE_20201111 9930352.403418822 649.5810353977804 0.018091025991421872 1.184262367512285e-06 3707401.0085045663 242.69134861289177 None None 740345 WAN_20210117 58404470.66242459 1609.573675777339 0.3526483230000688 9.744498749553874e-06 4065705.655000316 112.34496547200925 None 15873 602909 MKR_20211230 2124428783.656465 45612.366004864954 2357.043138159667 0.050606692553822684 74081702.10091573 1590.564831584751 194056 32439 30283 TROY_20200314 2244005.1610561493 395.5252323651778 0.0018768270825874672 3.401301450981859e-07 1991909.021017295 360.98600165496254 8796 None 312111 RIF_20211230 158904698.79182345 3419.6245597408683 0.19680556352132644 4.2291228587516464e-06 1610573.580881359 34.609354658150984 None 3567 352170 LTC_20190325 3652089784.41949 914570.1388445611 59.79457226906968 0.014984706730453372 2184116846.758784 547346.5094197612 440533 200657 251595 BNT_20190729 34334874.13969249 3596.494936969546 0.5056218537086825 5.299919243090472e-05 3070768.010295658 321.877354577507 783 5133 155271 AMB_20190708 5853364.903354019 511.8382406443786 0.040486751666891245 3.539879512028284e-06 963978.9899075119 84.28360725194574 19363 5669 665326 LOOM_20190909 17261782.264221292 1661.4206263066433 0.028682335063381272 2.759733006128097e-06 1496477.0382176477 143.98678023096775 20861 None 439430 LUN_20190621 6057204.140233128 634.1503255943996 2.2406239282703164 0.00023457891805385588 576475.6622295012 60.35329509069759 31330 2225 2294680 AXS_20210702 322904457.34663785 9604.035382581256 5.8166635642915265 0.00017293298769124725 42650203.15879224 1268.016789413016 129228 None 5695 MITH_20190122 25584154.343288016 7245.044365011308 0.052203011335678555 1.4783223386844229e-05 5195146.935710745 1471.1989924152317 42 1968 482840 NKN_20210325 103216377.53583144 1960.161500053124 0.15858326918235535 3.014394727810448e-06 20977806.200683597 398.75195371117877 16839 1156 267321 AION_20200430 34456130.768973984 3946.6314538973716 0.08384176291876885 9.5620885495267e-06 3720554.8445026735 424.3264172650285 500 72546 308963 JST_20210813 94337395.25891764 2121.8981539694196 0.06580897955638458 1.4802525231526356e-06 222819195.09772786 5011.909893962975 50445 None 152000 POWR_20190812 27449269.798300773 2378.512538814553 0.06468657720190599 5.601394402753457e-06 572857.1357723213 49.60532606133796 84258 13109 515073 YFII_20210221 125482883.63633876 2237.7378101948907 3200.7173479526436 0.05691650478063342 211490861.71248364 3760.819632954655 14435 None 229687 ONG_20210509 0.0 0.0 1.0259131832439388 1.7473478437540904e-05 11358753.903098196 193.4636815715103 131422 18810 138836 ACM_20220115 9759155.541309286 226.40482079681334 4.868831782781202 0.00011292240507526122 1060033.115227968 24.585258676278826 None None 38699 IOST_20190528 190447059.61475757 21594.769126694613 0.014044401773750657 1.5927467901409015e-06 84102312.76838823 9537.870737622969 199583 49726 108380 RVN_20190312 76375544.46313387 19753.162420431 0.024644806014615096 6.381869450378962e-06 12363283.026254397 3201.520766884964 20649 5938 345292 RCN_20190730 9483635.01243135 997.0236330658969 0.01869381208163321 1.96457700409058e-06 1477649.9114643664 155.28973028521824 None 1120 2034448 BRD_20200730 8724316.269910522 786.5964246145103 0.1315591353939287 1.1861553653568084e-05 981271.1155640404 88.472761325981 218 None None ADX_20190922 7677303.300071496 768.4396678625028 0.08356516394121478 8.367871041261764e-06 125172.32388695651 12.534240523454601 53555 3843 407203 STORJ_20190706 37720263.100330144 3431.985167707848 0.26233392053731786 2.386850064847093e-05 8622453.872722657 784.5155724847066 83753 7770 206682 GXS_20190124 33234235.478577126 9355.354496106673 0.5539039246429521 0.00015592257493511117 1083623.0625822202 305.03719266080986 None None 235095 LINK_20200530 1514734542.752751 160632.00335384026 3.977957184764267 0.00042208056529212753 355441863.5314027 37714.10694474636 56697 15643 76484 TNT_20190509 7259108.72925945 1219.4140820152631 0.016952390208811046 2.845905183432083e-06 421363.0641541756 70.736888050154 17292 2503 1010954 SNM_20210210 7337521.361860426 157.53653568 0.0172325760456813 3.7e-07 1461576.1140561479 31.38144644 28953 9479 None ARPA_20200331 0.0 0.0 0.006281026155682499 9.797175130162546e-07 1286359.9312946151 200.64704739233468 None None 1875456 IOST_20190401 134178916.25589773 32697.413588978456 0.009923645112728577 2.4176869189211927e-06 21995745.00750365 5358.799551221136 195995 48776 95930 EVX_20200207 6687210.993073917 686.6220753299298 0.31057876090176934 3.189365589410103e-05 1277228.680265983 131.15994122780336 17880 2879 593628 THETA_20210729 5779015054.689298 144522.3441003663 5.776400160865472 0.00014437849419122626 422490376.6553838 10559.95476301091 184843 21970 19127 GTO_20200425 5858636.612512706 781.3272684536707 0.008837596314259798 1.1790907324487666e-06 5260861.47495728 701.891418123506 16777 None 999939 XRP_20200320 7154342167.204617 1156878.2365849772 0.1630137642312299 2.64074478919073e-05 2490205855.675707 403401.404071623 946351 210881 34201 VIB_20200321 1766030.4233650824 285.7786112670345 0.009733666397490768 1.5698216018071236e-06 494780.38319467625 79.79695440246834 31457 1105 None DGB_20210124 344965941.02001417 10784.290866314705 0.02472280107492007 7.720239006392599e-07 12195200.085922418 380.8219752640024 180209 24004 218245 LOOM_20210805 70070910.81259874 1757.5170182603379 0.0844423230270262 2.123207060482837e-06 6436673.332387291 161.8428979147375 33928 None 309472 WAN_20190629 38461774.91406862 3107.6120115548842 0.36243028317463427 2.927472107797251e-05 2300617.9337905534 185.8286998778406 108517 16989 440153 DOCK_20201115 6336804.05246242 393.7747935234564 0.01119930252568081 6.965837614718143e-07 3248371.812580954 202.0449979521472 None 14892 246761 EOS_20201106 2314323462.0651436 148939.44581294904 2.447205184392826 0.00015706718247707533 1766405403.0635624 113371.90748895572 None 73140 97683 VET_20210124 1948716067.6562202 60880.39249524214 0.030017188340734153 9.366270960378609e-07 299096276.39184356 9332.708767145585 154449 72284 117810 WAN_20210201 67729380.95505477 2049.0555888062627 0.41178535942135547 1.2454333277912856e-05 4165286.796218242 125.97793673647922 104130 15798 443553 ZEC_20190321 360619639.7113783 89230.37470110947 58.74026213515186 0.014534470736413462 222719663.5653716 55108.920438023786 73982 15053 171176 KNC_20190804 31552612.475141943 2924.2511199900136 0.19073673859314505 1.7674012888690695e-05 6938214.159532176 642.9075351950842 97636 6703 212094 RDN_20200927 12610899.469742319 1174.4688835138998 0.1899253854458662 1.7681927709431596e-05 1152226.746678724 107.27154767551473 26463 4383 991823 IOTX_20200113 15621881.096964642 1916.30312274423 0.00370580413512291 4.5449965624504946e-07 2610272.0109699494 320.1377321720129 22160 1790 479977 ARK_20200612 35232289.97789394 3797.211323717933 0.23502005534957618 2.527417257348312e-05 4378356.568722118 470.85062311609136 61856 21899 92267 HIVE_20211028 262598534.3590144 4486.812560199335 0.7245994276301145 1.2372651150684265e-05 7588047.154063801 129.5671191174318 25945 190 80724 REN_20211120 803160614.6746902 13816.37972188695 0.805229297117207 1.380447549275968e-05 56777717.67155014 973.3707093591456 104337 1215 69295 SNM_20200309 4366441.150308728 540.5017102250429 0.009943335601591996 1.2351459605298296e-06 146844.78043775936 18.240834328628 30216 9703 None WTC_20200418 8983731.124535527 1276.1110795349357 0.30784372840682184 4.372824466132934e-05 73862625.56668457 10491.956353386502 54638 19665 973859 TROY_20200721 9228516.965294197 1007.231567929287 0.004858904977149234 5.304176519921143e-07 6974668.441329842 761.3829197055422 9150 None 599996 RAMP_20210724 49125643.494395815 1469.6842129328732 0.16373672257725047 4.897039741039113e-06 14270385.961652616 426.79886389694354 30673 None 117048 FOR_20210624 13976749.16229426 414.5924191510516 0.024828684126006202 7.367235878818038e-07 4174004.471856522 123.85221603910556 28651 None 199277 BZRX_20210120 39453360.163524665 1089.5291643748515 0.27767929030288 7.704349625485648e-06 17408279.74039347 483.0013550955073 17570 None 186488 ONG_20200107 0.0 0.0 0.10252973748291615 1.322363850589888e-05 2986769.2139693536 385.21464460649213 81588 16274 336672 BNB_20200704 2264032087.7304187 249641.0909477742 15.292613762872096 0.0016870004133384307 149724446.6696348 16516.810490027303 1176434 65448 1041 EOS_20190524 6289689261.230455 798420.6290666962 6.022271052521825 0.0007657875430851074 2639032937.11383 335577.4808885108 955 65111 118263 MBL_20200511 4119421.2135423305 470.22127132193674 0.001167532374835833 1.3327079925695095e-07 1821001.655078352 207.8626265542715 None None 94095 TCT_20200317 2355454.9759802045 466.68128511324585 0.004067755480300087 8.077741080323518e-07 336966.3404486784 66.91471166619306 26 None 409993 NAV_20211104 32830386.739396926 521.7106716533176 0.4569477920730436 7.250368064433864e-06 2349761.8875136958 37.28355589806595 58428 17219 860706 RLC_20210401 188729425.58971578 3208.630550188506 2.6655282969232603 4.536171624055737e-05 25500172.33615183 433.95959552671457 36175 4216 324696 BNT_20211002 875627246.3527602 18184.051891666197 3.767211322140601 7.822003332986122e-05 51337834.67146194 1065.9468757390787 131914 8169 40923 NEBL_20201015 7040239.146951924 616.7782022749999 0.4160226859098201 3.640244294644597e-05 111102.31055953325 9.72157446778857 38601 5928 491538 WTC_20210124 10240338.419759156 319.9213228784376 0.3518786334107714 1.0979678004087211e-05 2105287.0817911504 65.69132669458543 54810 19081 903762 KEY_20200423 1644842.4949318208 231.25840557421472 0.0006023842209772674 8.4672940726243e-08 550318.0376674407 77.35436115574487 23347 2748 220323 ONE_20210304 283443382.52094895 5573.27989638328 0.03024434008945696 5.96909600555348e-07 26756848.673863843 528.0796276855624 86248 4087 108360 ZEN_20190515 81088607.99693695 10144.601262610906 12.574435960330986 0.0015731265102566846 1410205.2273337452 176.4239155553245 25686 1634 234358 BLZ_20200511 3072365.3443495994 350.9911341544423 0.013811722826964206 1.5775766747846528e-06 901035.8352042292 102.91642357521401 36033 None 714156 LINK_20190703 1359660582.627168 126300.323314895 3.7435001471040374 0.00034685158449726885 445578279.6062765 41284.76725680464 24288 9139 152412 YOYO_20211221 3148826.7774067726 66.7425810546792 0.01800260638130018 3.81955173775939e-07 723285.2570629801 15.345697184049252 12501 None 802085 ADA_20200806 4435057025.443044 377799.4731967493 0.14254911094068604 1.2143018389414339e-05 346798168.7821568 29541.934798100545 161845 85633 30582 BNT_20191024 21608254.61189514 2895.4668916946634 0.309795696599522 4.151206096024105e-05 3969487.0819175257 531.9040630137144 767 5091 174130 BTG_20210702 859527282.3116671 25580.64065934409 49.269715895289984 0.001464818977115658 52846444.886191115 1571.1573313494514 100298 None 156251 KAVA_20200704 35219550.02249399 3883.4462364528154 1.2955457374099812 0.00014293103643236519 12239222.447138289 1350.2917720164985 None None 340069 LSK_20210201 187695627.75038326 5678.462871108219 1.3170335125789143 3.9717756246662365e-05 14991639.605191648 452.10260930329525 178678 31077 225361 SKL_20211120 766465067.6673841 13181.198417127176 0.32291841058417387 5.535962614660408e-06 23614018.505421374 404.8277191486915 None 3017 157471 COS_20201030 17360030.621773627 1289.5489223882464 0.005752354063778514 4.277908664937556e-07 458336.26495444804 34.085535374987366 13194 None 255499 MTL_20200317 9827334.09429238 1947.0688045960453 0.15189091294661702 3.0197383310545298e-05 2601091.856454687 517.1222312878293 34728 None 635134 NPXS_20190522 173777353.9457124 21838.44778352056 0.0008112750839407128 1.0195663365971189e-07 42698623.098201804 5366.13037818331 60697 4388 188211 STRAX_20210819 207200668.11932364 4596.778348308601 2.060760603395953 4.5802627975604154e-05 15412223.24927265 342.55329153716224 157343 10769 253656 TRX_20210527 5967427568.932064 152310.04857563524 0.08335879456179082 2.126311307339587e-06 3240538719.5072856 82659.47411286629 992874 110419 18998 CDT_20200224 5013378.634945117 503.90734121395724 0.007437594372911921 7.47445607588508e-07 61103.95456180234 6.140679385507516 19284 293 220223 KNC_20210723 119581499.83901986 3697.355525519211 1.2959657372876623 4.003164951987694e-05 25017787.645314902 772.7853275473226 176383 11245 107693 HOT_20190813 172935642.7427244 15195.185142308826 0.0009719191966932787 8.539839376503238e-08 7417229.212848479 651.7202902457252 24169 6617 379586 STORJ_20191020 17351677.998602826 2183.540209752177 0.12076025817839897 1.5190759329709733e-05 2932662.273790279 368.90751534047496 83210 7824 147955 AERGO_20210325 75410011.11585627 1432.067123845143 0.2895081955064128 5.503225611543604e-06 20453884.55496826 388.8053709207142 16880 None 363931 SRM_20211221 448651778.6381834 9509.63003615765 3.3573292589766965 7.123606154408943e-05 58982795.430819474 1251.5013337217208 None None 26537 LUNA_20211225 35072115002.22879 689770.5592402087 95.96747770680258 0.0018893528530898856 3781369096.58623 74445.43361917176 264861 21473 5217 AMB_20190830 3049102.5749576287 321.00960610399585 0.021087779337248605 2.2201220104089887e-06 85703.1385837765 9.022828875816538 19283 5614 728566 STEEM_20210421 360395732.4289786 6379.191270300706 0.9450957200681392 1.6762986562544674e-05 13206798.861612244 234.24652884416295 13452 3932 169708 BAT_20200425 259993499.74049085 34673.59804055561 0.17816819070315654 2.3770769223333953e-05 90068496.86660036 12016.721081686348 115557 37243 18644 ALPACA_20220115 76365642.3028948 1771.4714857431156 0.4978683566831406 1.1543609124102846e-05 2968090.0994975893 68.81833620031696 72135 None 29947 DCR_20191213 211102933.31740525 29291.1605843222 19.535739159472932 0.0027107229766844855 16500464.760380026 2289.5570311833317 40622 9704 94758 NAV_20200701 8167899.447378283 892.8416028065416 0.11835640524778406 1.294054633221865e-05 253481.63283939264 27.71451876438272 48510 13840 884815 AGIX_20211120 259681921.7856795 4465.851192429495 0.2667210513774947 4.573326464047324e-06 2101645.235441833 36.035812410178956 68482 None 112488 DODO_20211125 341760536.79918325 5974.0599730624745 1.3437895670743232 2.3495850737561084e-05 41210708.860545 720.559742314845 122230 1212 18891 ONT_20211216 611873258.3602245 12541.953842529927 0.7006282585565902 1.4336653307443413e-05 83870840.22223008 1716.2127621676168 180756 21014 97967 OST_20200316 5303666.286436882 981.6909962884563 0.007402627689263746 1.3775906307934954e-06 2008137.4928833202 373.70397535369534 None 752 732102 IDEX_20210825 37063352.15652778 771.2730777685933 0.06285362774028241 1.3087692184753505e-06 1045825.52276079 21.776694540862533 53595 1970 8868023 XVG_20210809 415104008.15092266 9435.84036886702 0.025152549557912567 5.719073411252971e-07 22326374.412987135 507.64704381558596 322656 54496 124542 XMR_20210724 3652123130.3610454 109185.03633740719 203.36206814024808 0.006079777161661083 122122821.08922721 3651.022756435861 430497 229303 33010 SXP_20211011 474376903.427878 8669.501255013593 2.5313240525699747 4.6264742891934393e-05 144232982.43911016 2636.131017009667 None None 170596 NULS_20200322 12489730.635312747 2027.0134973238814 0.15010517903686044 2.435921369397376e-05 6490563.935805445 1053.2949956900507 22696 5184 563630 LUN_20190528 7125370.824298054 808.9925884781894 2.6336775184510333 0.00029926601776485373 568546.9950435903 64.60426302265705 31539 2229 1883095 NEO_20200329 468195273.44972533 75134.94929736677 6.637584242510663 0.0010617337582453264 363029010.4302163 58069.342928650025 321772 99265 219445 ONE_20210429 1247892467.0363226 22797.595772516783 0.13265392273180976 2.4226534159886063e-06 163397284.9610449 2984.1182410749398 137415 17153 31277 WING_20210427 60631959.56245001 1125.1554351912534 39.47239005297451 0.0007324741481301443 10389575.887966318 192.7954131421577 None None 321336 STMX_20210624 122967846.13824952 3648.7359676938736 0.013231866748453626 3.9261961269563004e-07 27169345.73914697 806.1763471540553 66684 4490 52447 GTO_20210826 35935864.49252209 733.1293430827463 0.05419160627238027 1.1058573064802908e-06 15412921.358610524 314.5227254006052 None None 734299 SC_20191118 82877569.54063936 9750.984008663514 0.001975497032422957 2.3214944148101205e-07 6775457.721582318 796.2141678918915 108177 30435 235097 VET_20201226 946593012.0600538 38331.19361667977 0.014601781438098328 5.913604337894726e-07 145095059.99166703 5876.233525418145 144772 69471 129519 DREP_20210930 0.0 0.0 0.5068447033007498 1.2193653126631115e-05 600903.06142037 14.456505998727804 4125 None 323316 AR_20210703 463723755.49902004 13719.69329540748 10.638744730297617 0.00031421553484494444 13294702.027490804 392.65928585310905 22349 None 93046 NAV_20201111 7338475.094876584 480.3862364638302 0.1046307502146889 6.849266593425266e-06 249192.56182265098 16.312473011230797 48169 13722 1185476 CDT_20210718 9829628.672812166 311.00865828359616 0.014571497169611765 4.610409950112235e-07 239844.47061925166 7.588659702919609 21067 336 581034 BCD_20190509 168376125.42322764 28266.18435111903 0.9204186520532797 0.0001545327853270728 4808006.367643449 807.2355055004198 21229 None 2990373 NCASH_20190726 4705586.61428455 475.03245208065033 0.0016165824943518503 1.6347861126652407e-07 973776.6643336208 98.47419313595532 60082 59047 884263 CHR_20210114 10890857.588624846 292.4851104758322 0.02419679193470683 6.474521764146801e-07 2615431.7003893126 69.9831180617012 36745 None 675741 REQ_20190730 9466968.46343722 997.4146522998981 0.012999179981708589 1.3666162431653784e-06 101504.9262281411 10.671310124167404 41473 29665 592890 FIS_20210421 66818724.21792931 1182.7260532493779 2.4669226479877353 4.375222998656831e-05 14466571.081865868 256.57259485096773 None None 230666 TRB_20201224 27557007.627144396 1178.6560420235412 16.722708379415042 0.0007172359626485292 38339173.369305894 1644.3648537537229 11553 None 383463 KEEP_20210916 265960312.07303357 5518.713358398006 0.4840984566172677 1.00439344241804e-05 73950468.79687567 1534.3028862834103 24222 2992 113352 LINK_20201014 4260608982.543344 372940.5514252929 10.997384895502089 0.0009624545277062379 789814609.7814282 69121.94621319251 94063 23504 33552 ALGO_20200316 103367848.25399202 19133.725212437672 0.14925654511576944 2.7803772104202437e-05 84988204.93823257 15831.75250247845 16060 822 354014 POA_20211002 8573575.800094165 178.20303047261768 0.02981654321793197 6.195708048764837e-07 127045.52299804737 2.6399336893122745 20348 None 227008 BTC_20210828 922969799298.9401 18799325.0 49083.10330586219 1.0 34607868773.39842 705497.6630962706 3111347 3301583 7536 AERGO_20210826 66042123.98479266 1347.360127187007 0.24935973717368387 5.087269193385794e-06 39325299.407363825 802.2882381224603 None None 449238 NEAR_20201201 222343600.618726 11315.912844679167 1.0738702550748922 5.466720602355872e-05 24850099.253747765 1265.0368973258976 33249 None None SKY_20211007 27536200.83854493 495.4323962258181 1.3097914385864777 2.3610867071067275e-05 2007553.6890402883 36.18903124081722 19827 4440 533754 ARDR_20190714 81411639.38759162 7152.891688408092 0.08154028437259483 7.160175035865257e-06 970936.1771880594 85.25936634649432 67879 6568 885731 REEF_20210422 415270246.66413873 7664.113427625049 0.03265882016800818 6.038085730124889e-07 89543480.66227946 1655.5136102015483 110842 9829 32523 GAS_20210218 55395871.29511257 1061.8510660974964 3.9643547041973126 7.604693089282324e-05 15206339.416780874 291.6982785461655 343853 104170 123772 MTH_20190325 5775275.221102908 1446.3144272863622 0.019254014140838185 4.8250755950168105e-06 196918.41718048186 49.347956327278325 18840 2013 1148279 SNM_20210124 5041227.38698037 157.53653568 0.01152218239669692 3.6e-07 179096.7054381118 5.59571197 28734 9490 None DASH_20191024 570701497.0972714 76451.98674330782 62.69772922074838 0.008397964588588498 228884976.69023022 30657.696107889657 317571 31473 74820 REQ_20200410 6950189.328835185 953.6319930887738 0.009012808842754001 1.236092289551618e-06 37590.29335397367 5.155448494193534 39420 28209 588604 NEBL_20190122 16389972.113296263 4641.269950524428 1.1121349142819503 0.00031494234630296587 101115.36479920875 28.634574661927754 39801 6180 488373 AST_20200403 2254265.150656686 332.4041809648711 0.013158160185961543 1.930168046717967e-06 4281164.679721774 628.0032429117805 31698 3464 340670 GXS_20191019 30915367.120523933 3884.5915548260946 0.475621119029704 5.976295785448246e-05 18240807.44649509 2292.00210638362 None None 581889 NAS_20190305 26702138.530559666 7191.721137525015 0.5868601874848278 0.00015805980522032997 1919465.2383598937 516.972028725671 23432 5167 511386 BTS_20190314 130445179.76235826 33729.453744237515 0.048304770591725166 1.2495369010485444e-05 13474340.972175373 3485.5121048701653 13778 7209 158492 DGB_20200914 285514734.41931605 27652.913034251484 0.021116472708442562 2.044740843762477e-06 6490858.834730558 628.5199405089928 165510 23016 135081 OMG_20210204 651457034.6460238 17388.911391531037 4.645122355511095 0.00012398917618057736 748778690.3645804 19986.653925214177 293565 42537 203205 ACM_20210814 19467771.792255178 408.4477637601979 9.737772312601324 0.00020414303853113732 6421701.2472752575 134.6247953920133 None None 44064 LTO_20210108 52372823.95112644 1336.2128289747754 0.1933509023802572 4.8982530358581445e-06 9801772.624965034 248.31310289208471 None 872 1001701 OG_20210107 0.0 0.0 4.005706149672428 0.00010852814700789752 2208897.507137513 59.8465150519347 None None 397078 SXP_20210527 208601988.38388592 5324.2672184473195 2.438315039942459 6.224010844034205e-05 247444547.6967249 6316.2369215337285 0 None 53111 QLC_20200807 7765320.949532904 660.0179363290006 0.03225496145472442 2.7413209440911133e-06 1458098.4990750363 123.92251529033378 26191 5635 940522 ETH_20200107 15692578635.119993 2022515.7108993542 143.80639795566535 0.0185472416889589 9514201882.396584 1227081.7174960421 448828 449230 21447 HOT_20190131 206258626.4733049 59561.79297370492 0.0011605366452060643 3.353351835041916e-07 15965022.197669115 4613.06729987253 17105 5230 327580 FIRO_20210731 67805561.03181793 1625.1956574050596 5.586175481977944 0.00013369893592928822 12249926.750481231 293.18845729693294 73793 1099 283035 RCN_20190213 5538044.226065215 1524.127103386519 0.011066693998994827 3.045570219420247e-06 75751.29062256946 20.846864910487316 18087 1100 1863788 SUSD_20210806 194459657.49693462 4746.200864124843 1.001678069022969 2.448139050109042e-05 95306367.61497645 2329.3236369830256 145822 7378 46425 PAXG_20210422 109706854.16882125 2024.7088533328103 1819.7960868958105 0.033645075748285534 15240063.859376878 281.7640430429174 16865 None 51510 YOYO_20200207 2208537.349285419 226.7636387498384 0.012678412931198289 1.3020139389733054e-06 360376.486625926 37.008986172911726 7480 None 1442392 LTC_20190920 4872160110.084115 475367.2404922636 76.9755385334459 0.0075059397242954184 4044344388.1010857 394366.9090173268 451100 208541 127570 TNB_20200629 13049773.614603672 1431.306286994025 0.003802818167466458 4.167845647359727e-07 2913987.068437557 319.36968281976436 15045 1435 2259871 HIVE_20211202 932588853.6268588 16315.578592775972 2.5357968266722417 4.434521187242825e-05 54256607.93916466 948.822377737171 None 198 75974 KMD_20190221 114413897.45427872 28815.55646464352 1.0233034464801376 0.0002577226971425927 3834698.7675369508 965.7828403670696 94920 8281 262903 LINK_20190510 232564893.20064268 37627.434535813336 0.6375625286053106 0.00010326351488026287 23727349.463484365 3843.0262044282044 11863 6688 419208 LOOM_20191011 15066400.038321447 1759.584822449244 0.025009686646299312 2.920848041012364e-06 3522027.3197002634 411.3328864382536 21019 None 364132 RVN_20190805 170708467.03881246 15595.599973762535 0.04139537782092851 3.7804191201705354e-06 17986424.403991994 1642.6042302234043 27261 6873 260058 CELR_20200725 25761868.149250615 2700.707674005713 0.006565610050595258 6.883889756576814e-07 7206687.930701867 755.6045035069748 21668 None 610073 ONE_20200314 10011367.040199809 1814.321498025199 0.001947184187752737 3.50838744032702e-07 22386582.562799636 4033.558077821841 71401 None 408073 VET_20190902 227604654.13327286 23373.03568912269 0.004103104024758707 4.2130709811923404e-07 23828552.376681298 2446.717946614125 113655 57405 147845 AST_20201111 19013139.970443036 1243.047890189152 0.10692771109838305 7.000338879152068e-06 2946285.937865253 192.88732348306138 33968 3460 170837 COMP_20210711 308001.0816148193 9.22332053864423 3.3458987187816e-06 1e-10 91.24477654247339 0.002727063315762885 None None 3613749 ALICE_20210727 164039575.38920152 4371.8825477723885 9.416451002706257 0.0002522970202135487 330582194.7683254 8857.360660798127 None None 50440 PERP_20210427 190305443.9449636 3531.5237400601654 6.458809945212642 0.00011981590828452254 10175001.521849379 188.7541295498896 None None 280871 YOYO_20210711 1936257.80537018 57.43532976156928 0.011314785661844386 3.355786366580676e-07 209902.99533123217 6.2253906621698745 10088 None 1096916 XVG_20210127 186156123.0998522 5712.555826924299 0.01122831107903423 3.4469743359879487e-07 8135459.38037973 249.75011378161213 288919 51344 179972 RSR_20210120 395627918.99594843 10925.51190064487 0.04190501140242996 1.1626753242999574e-06 227759990.9503057 6319.313907294304 54486 None 125159 TOMO_20190830 30754383.611914806 3240.830016869037 0.47723000273363075 5.0289459132923554e-05 3984997.7594566178 419.93039167917124 16915 1315 315168 NBS_20210408 0.0 0.0 0.03884701908946216 6.913138841330042e-07 12731874.120421162 226.57391884332327 None None 976233 WNXM_20210805 132394406.94371845 3321.488224311915 60.21034258392694 0.0015139212175317414 9163462.83166685 230.40494724949878 31940 None 129643 BLZ_20200309 4059053.508404812 502.4516047886365 0.018674956566738017 2.3214356147831033e-06 245153.48385776413 30.474396365087514 36152 None 543870 INJ_20210114 73572581.31214221 1975.7096730743692 5.465237104991845 0.0001462241188621593 51135364.590228215 1368.142586727267 39149 1988 132125 UTK_20210702 101111598.270266 3009.2115923154133 0.2255917814651079 6.707500230594297e-06 8639281.829859847 256.8709927711476 77334 3978 145803 CTSI_20210617 208328537.69521284 5446.632383032851 0.5664970400646183 1.4791472447317334e-05 27759680.93278384 724.8167715346863 43926 3710 123787 ETC_20220112 3926614264.7876773 91773.70712542448 29.696073870224872 0.0006940632826047031 291514295.0683043 6813.337326863646 604427 62887 203643 JUV_20210617 19988403.855727397 522.5799150103012 9.087028736441505 0.0002372660855698798 3554634.903604354 92.81299021604576 2519894 None 39510 NEAR_20210909 4654346681.365889 100463.95807536754 10.365184120839684 0.0002243965821552 2135320629.5665576 46227.7028072135 None None 6415147 BCPT_20190512 3691606.305655308 506.5247342899328 0.04393050274118557 6.037179351320896e-06 698729.1141598853 96.02332586597113 10745 1909 1145743 DCR_20210729 1825018480.208068 45640.29446023626 138.4143648822504 0.0034596040820586206 17222585.384919982 430.47068670914376 47548 11447 137794 OAX_20210401 30232121.092546977 513.9829522155366 0.5369055012494642 9.136455304594982e-06 1354573.8794468762 23.05061817682496 None None 1244197 DUSK_20210617 47046731.92691687 1230.0151221476135 0.13098643813545252 3.4201101746829618e-06 8267101.857602078 215.8574550220752 27424 13625 389018 LPT_20211125 1129092647.1979127 19743.736297617907 46.091860335431406 0.0008058924789495953 42822334.82487491 748.7265064868641 21447 2136 99732 POA_20200621 3776747.922807752 403.6804828539371 0.01366245876688209 1.4596434779562034e-06 125627.72211874655 13.421572820085439 17199 None 532939 ZEN_20200412 47081723.01345785 6840.905682301049 5.332168192907279 0.0007747414258076342 2878212.9455538657 418.1921350835318 60209 5121 40228 PAXG_20210624 282301690.2006289 8373.917232946713 1785.1375788133455 0.052953888302353695 12836668.458301457 380.78382068854376 22506 None 40331 QLC_20200718 4481218.899526644 489.5854552482732 0.018743042932756093 2.0475758162490625e-06 182336.30932300596 19.919253172142 25385 5639 940522 MANA_20200107 48764255.64360822 6279.59696294587 0.036700533890846904 4.731511449113378e-06 20943757.446736448 2700.114075762845 45966 6430 82411 FTM_20200721 39690260.05476574 4332.152606536795 0.016438158686940693 1.7941011253634738e-06 29837837.705240913 3256.5750960850633 23083 2466 210821 SNGLS_20191113 5843848.677607358 664.2507338722543 0.010222454365684943 1.1613755375915378e-06 182917.81782389866 20.781337965509938 1502 2160 None WABI_20190512 17088310.226421017 2317.643977634097 0.321770564408783 4.417610885868442e-05 2231100.29162089 306.3093404407028 36410 8048 956243 SYS_20200113 12285186.921205258 1506.059524981685 0.021470606975500853 2.629317864365758e-06 238826.72760864827 29.247025112329656 59297 4536 919572 STEEM_20210707 150329459.00990352 4400.5800516093195 0.38988257070800136 1.1415629238917939e-05 6833581.10675315 200.08493364324562 14048 3942 206155 GO_20200320 5964836.082662768 963.7957833947871 0.006585387966105104 1.0648713804498047e-06 1448411.9316900293 234.2113207448518 10681 678 690987 NAV_20190524 14453447.195590558 1837.362674056446 0.221742243038564 2.818849476579579e-05 361239.38610207953 45.92176215411885 48570 11280 1031140 ALGO_20210513 4053865656.3411593 78644.3323974489 1.2670352721594467 2.5137697170545788e-05 495039630.56555855 9821.475845235878 94936 27350 134030 ADX_20200312 7110707.4292292325 896.8612088266985 0.07782346273732538 9.803702549759385e-06 93423.05576001295 11.768839598568464 52429 3774 53936 NEO_20200321 442136002.2494573 71519.1209978029 6.243481776788156 0.0010092830375508053 501188965.2679426 81019.1395341583 322339 98958 219445 ZRX_20210710 713571764.4922701 20995.681644323955 0.8438227001613042 2.4830999919557298e-05 200461014.0408481 5898.925713388786 222357 19565 58387 AKRO_20210624 46815483.40318142 1388.5905999777212 0.01727572456911178 5.126100812762293e-07 7790387.242504562 231.15852661217107 41840 None 201373 ETC_20200315 534493429.0763306 103405.46889532036 4.597636822005313 0.0008866869714426615 1408847974.819275 271706.3553251197 231209 25308 362649 STMX_20210707 194433623.82332698 5692.474138944259 0.020891678872900624 6.116298857574143e-07 16164385.297157422 473.2324861389444 68242 4581 72030 HC_20200325 45848467.1591754 6783.9812959769415 1.0303305344057374 0.00015266490526465051 27481503.668622002 4071.9565362780736 12732 842 891141 ENJ_20200410 88725400.73179685 12173.96774882448 0.09685324223881414 1.3283127731732448e-05 6463553.733306371 886.4567448214717 54149 15291 101377 STPT_20200331 10327858.300502151 1608.487736251269 0.014810178310259582 2.3100988121706285e-06 5979958.928420233 932.7569005568979 11092 None 1337005 BAT_20200403 208392204.21193063 30732.07564772838 0.14478856497089374 2.123900740584769e-05 72495325.62673151 10634.325702344075 114463 36349 18490 ZEN_20210401 561584058.910368 9547.614328228305 51.28605992510719 0.0008725182729877251 59047353.09764006 1004.5594187676649 94582 6914 739625 SC_20190812 99053242.76743215 8589.90134215032 0.002373367605790771 2.055746093596183e-07 8059373.206207789 698.080859664181 109476 30735 197380 RCN_20210707 20188741.814206786 591.0700444467403 0.0393022817994708 1.150226066367325e-06 519383.16535200074 15.200340231347226 19922 570 2739535 MTH_20200109 3196298.126972707 397.1544925007844 0.009232980026984838 1.1506296125454584e-06 284550.72625535895 35.461193563055254 19230 1949 1221699 RSR_20210729 415429470.8409631 10389.104071755228 0.03155487943885573 7.88699856466502e-07 93905370.24109738 2347.122009263268 76837 None 123422 XZC_20190618 91626340.92947355 9838.075164444323 11.851398376196917 0.001272504684199317 7462650.69012515 801.2774238355191 60506 4002 343816 XEM_20190708 812106678.6533585 71091.79477026776 0.09023321147355991 7.89615673986099e-06 42945256.99250342 3758.067289290505 217248 18452 188910 RVN_20211104 1319566268.03172 20978.52875951532 0.13283827364803497 2.1067388776974486e-06 200397123.77936405 3178.1835163210835 75628 56936 56504 BAL_20210420 570034816.7524861 10183.651664145144 52.648672739158215 0.0009413268269560192 157448567.65394694 2815.0863618680787 None None 49519 RCN_20200324 21707642.264702875 3373.603633192621 0.042824578592342004 6.6409844614361355e-06 1533367.6827671737 237.78566630766792 None 1132 875851 ADX_20210806 61629976.73500432 1503.51275691265 0.49076416619995256 1.1994461662120685e-05 16383389.968122354 400.4162414501794 92837 3892 14822 NAV_20190618 14940693.095779158 1604.2074821945455 0.22846288599625084 2.45304463969268e-05 614867.0929091793 66.01931949721737 48362 11256 919129 OM_20210427 92443538.91866088 1715.4871954206476 0.3163106857148092 5.870005015126107e-06 28146925.397315595 522.3427494055331 None None 70476 STMX_20210324 430940086.42543703 7905.0612162359575 0.05202268155649003 9.528986035083285e-07 343719165.4317037 6295.898307034848 41699 2693 141471 MITH_20201106 2828484.774120756 182.0285546308184 0.004572802494950967 2.943814902263902e-07 721028.5024530833 46.41736556131693 122 2107 516659 GXS_20190528 69512686.55606382 7892.255661599622 1.1586363074157706 0.00013165638971700068 11605138.56179618 1318.697364679903 None None 869901 MDA_20191216 10183587.727352448 1431.035174252241 0.5181832755094353 7.287886261283876e-05 175171.30848004195 24.63662246118887 None 369 1595611 ZRX_20190221 147975550.258125 37302.85173555654 0.2534754765178535 6.386655159670547e-05 16935551.07010097 4267.139610884846 146683 15592 295106 ONG_20200127 0.0 0.0 0.1051962909202288 1.2247041506692143e-05 3654924.3852755 425.50940017679625 81720 16233 348769 MATIC_20211011 8386331568.265944 153272.9885081581 1.247791609860409 2.2807367988948518e-05 628634402.0179302 11490.29695666849 729921 None 8338 DASH_20190730 940966141.8411571 99137.6934247985 105.42203841529155 0.011083119880536146 251953136.7472788 26488.074607767823 320710 29262 102503 WRX_20210420 1295854995.5432072 23100.76704275351 2.9170323710418136 5.2125858630364915e-05 70752174.72510998 1264.304741395376 111049 None 2746 KEY_20190704 7603017.008560395 633.510042281829 0.0029080802018975763 2.423114415749434e-07 442262.48907281086 36.850861682503854 23962 2843 905724 POND_20210825 64280350.17534003 1337.6475854207254 0.0810160151447108 1.6870195754627935e-06 14666807.79659313 305.4111192485417 20431 615 209753 BNB_20210610 58321133322.78771 1553754.6443071663 376.18736712521803 0.01004407693231386 4575803882.958323 122172.43385612067 None 487726 132 IRIS_20201014 58618209.8618309 5130.9649577029895 0.06916474644285116 6.0553957866621005e-06 4484524.852629696 392.6215925657041 None None 357243 UTK_20210418 298609476.0800128 4953.489528020405 0.6674773615999179 1.1091282219351232e-05 41340838.20758717 686.9489965110212 68752 3720 75588 COS_20201015 22290275.244992986 1953.2175756990785 0.00739677938438897 6.472768506593833e-07 1134598.4366161076 99.2863602726744 13229 None 244119 BRD_20201115 4729195.769156925 293.9179985646693 0.06664017112501441 4.142727794879195e-06 68969.96484219575 4.28756087417 245 None None KNC_20210314 471545736.5909441 7677.71321233712 2.3102799123141446 3.765533146108593e-05 144177266.69800165 2349.950210677508 145437 10008 95381 KNC_20190723 31384177.196635343 3033.3416353351204 0.18708185834234184 1.8095024906536108e-05 5151653.47821598 498.2807997747124 97577 6693 215847 GTO_20190622 23888682.502616297 2360.1294285944227 0.036009192419726985 3.5472670926057242e-06 9184307.060107982 904.7464831468852 17409 None 1224207 GXS_20190719 92563025.66184919 8624.639409976777 1.5360107755925034 0.00014396154693219608 4812233.775489919 451.02328025769106 None None 762110 AKRO_20210707 50492592.567743815 1478.282262852352 0.018607943094895635 5.448342532585347e-07 15837942.144460628 463.7295663160173 42974 None 210414 DNT_20190803 6554586.90195338 622.9244034128621 0.009767149316985645 9.279888471152088e-07 362722.04051313037 34.46266635994653 60504 6313 717960 HC_20190405 69493208.07863757 14180.053366234763 1.580450288941753 0.00032288495733789777 28693297.954350527 5862.021950767921 12600 794 695528 SNGLS_20210427 21633379.0483402 401.3301463633071 0.02430716747004517 4.5093274872281704e-07 2290638.1349547314 42.494616116722085 9464 2130 958581 XVG_20190405 136760247.9295153 27893.322566928353 0.008601389983136795 1.7551092021346804e-06 5110109.3793810755 1042.7151905970995 305327 53242 432369 ZIL_20190806 94829745.90621366 8029.24355280007 0.010346852024042641 8.76020136845499e-07 15007779.321675714 1270.6393079336483 65849 10618 160236 OMG_20200412 78797608.6570536 11449.177606768792 0.5625344942166932 8.173387641731422e-05 63540071.616689615 9232.102945611136 279777 42887 477396 GTO_20190920 11393637.117093958 1112.7841306592375 0.0172098697169811 1.6803197521674147e-06 16525441.997570612 1613.4942947543602 17309 None 702071 NCASH_20200407 751650.783724262 103.31399354828179 0.00025618763381450533 3.5212873767027974e-08 1146127.0887455863 157.5346471492509 57511 58269 716326 LOOM_20190117 26280811.104775358 7302.134344046481 0.04523308367403988 1.2576319315265177e-05 2629534.977146904 731.0992052093369 16632 None 360086 HBAR_20200323 115473741.15773049 19811.33796352717 0.03360743735151037 5.759357039633393e-06 14379567.993811537 2464.2481747666952 38094 6379 115268 TNT_20190605 11554817.873605814 1508.1696121260813 0.027066800274125433 3.5236576184691834e-06 1081662.8936748223 140.81493406356702 17397 2518 874753 IOST_20210727 520709323.7110925 13900.636219355203 0.022860599156800734 6.125090064079962e-07 130996931.8867531 3509.829293716551 249253 53586 204537 CVC_20201018 17902646.812775638 1576.033539620216 0.026775556766303395 2.3560320918663966e-06 1864503.4837843855 164.06120259359145 84941 7961 267877 GRT_20220105 3647285299.765865 78751.26101485483 0.6804989933747868 1.4816827908307989e-05 190763553.07054162 4153.585478512066 196283 20560 24735 QLC_20210210 12431163.582631417 267.2036134893761 0.051760108831479135 1.1113393735724626e-06 2661410.651983037 57.14304922394394 29849 5605 940522 SAND_20211202 5968960271.956346 104430.87286202195 6.553045457687655 0.00011462788952709467 1475135296.5171187 25803.520958078163 None None 6333 DENT_20190601 128658504.82019454 14999.292961409765 0.0017978753743345475 2.0963617332783945e-07 9066887.333264101 1057.2187548003287 45220 9434 248149 DOGE_20210128 948845594.1597716 31392.279686701553 0.007437338700769726 2.4543933334120565e-07 221445009.68034008 7307.8983940928265 201546 213991 60672 AKRO_20210207 108592503.3263939 2769.332493065417 0.04278448379556533 1.0880133970432878e-06 84791942.52546734 2156.266974491235 None None 187936 OCEAN_20211104 439472283.2558009 6987.219825059119 1.015219356183973 1.6100797069455054e-05 64342275.4469449 1020.4316078568821 129610 3776 158476 FIRO_20210325 84363186.03529471 1595.9926898490046 7.198833013818134 0.00013644669992367506 7281710.977084795 138.0175690579396 69869 485 190037 ANKR_20210430 1162038854.3781688 21683.48827315284 0.16615098427461863 3.099716408990806e-06 173444092.1141224 3235.7767888997487 82453 None 5736 QLC_20190318 8344729.255373482 2095.3458957077023 0.03465595695353174 8.703116267411981e-06 211649.77843813217 53.151399979775555 23685 5841 940522 ETH_20210114 128582223216.03041 3457860.7158149537 1132.0155910164729 0.030290212029623995 32166268470.073753 860697.590998254 586461 531952 7761 PIVX_20200322 14318096.934357883 2323.554624517033 0.22844884374598878 3.7072899407309846e-05 386424.2921561191 62.709308030350904 63822 8510 174953 TFUEL_20210217 0.0 0.0 0.058028388284057694 1.1792090979889683e-06 18185466.91440463 369.5513294573927 85728 3837 42831 DNT_20191020 4540726.020798265 571.465344919507 0.006005214064877557 7.5541211122767e-07 386660.8749175976 48.639116723409586 59909 6230 368992 ARDR_20200625 49892027.17345511 5362.523982264516 0.050151294014931354 5.395561784467828e-06 3191681.7724091266 343.3792993310623 63102 6308 1460932 NEBL_20191020 6414016.883646616 807.1380211594668 0.4098999112447514 5.15624179255208e-05 43006.10275894093 5.40985392524356 40260 6089 478074 COTI_20200807 29049967.63167742 2469.1187667957643 0.05130869829127114 4.357816961515368e-06 9907070.658207944 841.4401844338861 27195 1098 206457 SNT_20210314 431218679.44215834 7021.10759498108 0.1109715195712405 1.8087619342282954e-06 142999594.0672259 2330.7982386674394 123663 5820 156186 CELO_20210131 0.0 0.0 2.875131457961379 8.414749351044738e-05 15204554.357632482 444.99709242696827 None None 140742 CDT_20200914 5310756.490630285 514.3591237507848 0.00789505595984066 7.646195310488099e-07 186686.86981933925 18.080229903413418 57 292 256475 UTK_20210111 85885241.61418502 2227.889980080372 0.1893725904536518 4.936776627355978e-06 6329117.795413771 164.99452602581735 55989 3127 130913 KSM_20210711 1877229191.3890758 55669.38245147495 208.91139688690697 0.006197464620778288 103491558.55348668 3070.1306019778744 91917 None 64367 ZEN_20210724 568412680.1159363 17004.81319360431 50.178033187343544 0.0015007251811191538 24509805.229390956 733.0395305599704 116684 7443 1253134 GRS_20210708 58098918.86002805 1709.767752051113 0.7483842802135717 2.2032836124868993e-05 9670475.987522123 284.70401946677833 41401 106851 6338611 AUDIO_20210703 192203501.46638238 5683.431396282855 0.8288120294522529 2.446999469941583e-05 12338943.357489368 364.2971721268329 52145 5722 30965 BQX_20210218 860843230.0808909 16494.37306816707 3.9042726752211516 7.49010364013814e-05 11297587.257423969 216.73716587127552 40524 1159 44204 DCR_20200310 174514916.25207907 22042.39602447772 15.927250967787987 0.0020097025608493534 94063466.22719564 11868.940179412266 40875 9741 216967 CMT_20191108 16025132.40257504 1738.2018386010552 0.0200314155032188 2.1727522982513195e-06 5510179.843405063 597.6739844776648 290232 1649 965231 NXS_20190515 19073596.220748067 2385.6405511334456 0.3194485267950714 3.99552004090958e-05 387191.69277737715 48.42821420047268 21326 3519 725458 QTUM_20190614 317053835.78646183 38559.13233824393 3.31243285955277 0.0004026246798916943 352991603.94803864 42905.96596823509 177908 15315 454954 BNB_20210115 6162213630.697031 157779.36514285931 41.76107527446097 0.0010665424201666026 599233551.3479655 15303.916335950631 None 88841 896 DNT_20200418 3312797.702806296 470.5726155654023 0.004409880107049922 6.26409760712653e-07 49723.77713524288 7.063107971398685 58504 6064 716172 IDEX_20211028 141530129.12011555 2418.1109988766248 0.23813592918661977 4.069446347268941e-06 22248022.387571383 380.19098482240713 63280 1986 5069572 MFT_20200324 6035267.015897844 937.9461151903796 0.0006271874510440872 9.679041940686793e-08 1011709.1008447119 156.1315489101224 18381 2515 872119 KSM_20210207 1009053423.0130099 25721.38733986233 112.49314486628329 0.0028607111230995823 160553981.33185956 4082.9026586457835 33910 None 118660 NCASH_20190923 3185075.8562137242 316.841590804856 0.0010977032918554617 1.0920177768369441e-07 388384.04682844045 38.63724255209529 59524 58840 745931 SC_20210314 640570902.0357463 10429.782938033268 0.013561933100299432 2.210739432839629e-07 122478625.59829904 1996.5319492999315 116394 34850 86360 YOYO_20201130 1572752.5363596717 86.7103706525861 0.009065052141755216 4.991852056550992e-07 1237692.81851615 68.15602761984721 7709 None 3015981 EVX_20190903 9652505.890426159 935.027603903431 0.4526169729864334 4.380960029912053e-05 1820812.2793945768 176.23965282096913 18309 2912 505983 STORJ_20200610 20459809.18782526 2093.0298113823733 0.14261411088915554 1.4597549828450518e-05 3637711.443805521 372.34516087786125 81310 8123 104942 TVK_20211207 113562536.96268177 2250.365339024439 0.2616772835800123 5.183736991495511e-06 26762891.67534857 530.1636797772398 69372 None 40179 PIVX_20210930 43166249.77064584 1039.313514036551 0.6426420857396545 1.546054694560968e-05 796771.0914130899 19.168549861652203 67910 10048 292265 GXS_20210221 44316802.07793768 790.0803515946341 0.6339960198060988 1.1276402373205488e-05 11026229.270846099 196.11510803380708 None None 445350 XVG_20190726 93628941.1056892 9451.910914599694 0.005903458667009087 5.964021829433688e-07 1368364.6814697173 138.24026373756445 304081 52956 416991 EZ_20211221 0.0 0.0 3.1781403768492016 6.740345619980123e-05 455712.7033841707 9.664963657993079 None None 290326 YOYO_20210125 1946763.8205394284 60.57622573092224 0.011167524558379768 3.464377732036162e-07 501034.88834594894 15.543051650210685 9382 None 1925232 POE_20200725 6004081.278466785 629.2934226772171 0.0023844534368633714 2.4999994964925485e-07 141483.9284774511 14.833996944 None 10229 672576 VIBE_20200331 1490867.5914412437 232.04332288 0.007949712370730154 1.24e-06 42445.05954061506 6.62060102 19284 None 1552501 NXS_20190625 21747010.804152377 1969.1389040946767 0.36422342610073954 3.297954484763833e-05 247153.1746082974 22.379118480907568 21358 3520 925188 STEEM_20190530 130843602.04212238 15131.221422775174 0.4210606366082426 4.8692955754022495e-05 3237355.153770658 374.3793115699799 5634 3734 288379 WINGS_20190117 6667202.633679735 1852.2257003472475 0.07442732901360977 2.0680047016957685e-05 299077.08117483126 83.10022920826577 37552 1220 1854227 KMD_20200927 68556358.6413845 6384.739659888078 0.5654193171881475 5.2670870736661304e-05 1924359.610749503 179.26111334981397 103569 8393 283497 NCASH_20190530 6995014.401651419 808.8941102097489 0.0024115941481331004 2.788855821510213e-07 1074372.968709073 124.24442606053871 60510 59271 878224 ALGO_20190811 159072080.78726923 14044.355416922883 0.8086510225229404 7.140618034092446e-05 93021565.22290723 8214.068215951025 11186 545 241883 PIVX_20190929 13438009.369012075 1640.566952591286 0.21968339662495256 2.681984441586956e-05 4176617.423150751 509.8984775110214 62900 8595 243854 BNB_20211225 91373285919.82881 1795970.0074221205 542.6983592819216 0.010676897935353634 1580172422.0506623 31087.87668497653 6765784 753436 109 IOTX_20200607 23078585.288511183 2387.846133104516 0.00532992731836286 5.514656196546226e-07 6841916.172903255 707.9048768481174 24252 1858 869322 XZC_20190421 59636483.30486319 11230.232685662366 8.12193821397223 0.0015291845296908563 1531760.7286558247 288.39727017609266 60273 3968 377233 NKN_20200224 14880506.050560923 1495.6699278708968 0.022860658700082952 2.297395915296088e-06 1242238.1106488307 124.83948072849701 12232 1003 406869 BEAM_20210727 43017182.558318585 1149.012577401107 0.46023014648813515 1.2334632839755496e-05 10725403.548658649 287.4516496592116 21873 2548 207096 ONE_20200301 22873060.776065502 2666.3693182286474 0.004484497171881734 5.243242456637732e-07 12416611.790613469 1451.7414910268585 None None 408073 CTXC_20200113 2384913.7946860706 292.55233245378554 0.06904337358238236 8.469191427136261e-06 3537661.7851155987 433.9465658765797 17113 20063 634574 REEF_20210202 0.0 0.0 0.021677144533091646 6.490508390715815e-07 45181980.64441003 1352.8258947299564 None 1198 104266 AST_20210201 23165041.859048724 700.9457746298912 0.13479132430187554 4.076725987018498e-06 2859144.048119222 86.47401382816382 35574 3442 162456 DCR_20200319 109709962.97413649 20362.819260014825 9.759290155748632 0.001811382085639752 83734349.88747256 15541.591541831132 40793 9742 200827 ELF_20210511 193887848.72592822 3470.003638324278 0.42028016635859006 7.521738551245349e-06 48625211.85196826 870.243613250503 87929 33380 198010 BNB_20220105 86116119394.8199 1859382.2117976362 508.80180480659266 0.011066045978297067 1866547636.5206501 40595.968354064295 6922862 765696 103 RVN_20191118 129555262.56574923 15230.960500908008 0.026584877579252403 3.124107189518249e-06 5702631.747507401 670.1416167312622 28615 7173 245564 AMB_20210603 6262539.150427673 166.2724304674144 0.0432986568516372 1.1499166281515367e-06 1976176.7513196182 52.48288680860058 25678 5637 592518 BRD_20190421 19618949.974965148 3694.661568860727 0.327262320366118 6.163038896249754e-05 1246258.8770584043 234.69679997119167 162 None None KMD_20190411 129327715.13481073 24367.535270384935 1.1490277246503067 0.00021648695667171393 2639637.667931798 497.3310157685608 96570 8332 316064 RLC_20191019 22662678.697657004 2847.583670047209 0.3235974799259858 4.066028168157075e-05 714338.8514368845 89.75724694196245 25002 3321 696039 THETA_20200422 85342841.16111656 12462.4200862535 0.08514211338851173 1.2437751373406212e-05 7058946.403498083 1031.186763291639 None 4024 358410 LTO_20210814 92202949.24806957 1935.1133253315584 0.3182499646815987 6.6718046712239436e-06 20138435.051653534 422.18293781488916 11473 4380 653266 XRP_20210826 54461699709.8884 1111426.7607149258 1.170876776871693 2.3894659737888403e-05 4651023694.044695 94915.73391606615 1987521 327010 18908 NPXS_20190812 115479273.2282803 10005.672833921779 0.000490543559401008 4.247755974719593e-08 2548958.5953743537 220.7215627504175 64060 4708 187000 STORM_20190712 18730797.421134923 1649.557960744833 0.00300315886086517 2.639151758905344e-07 1029430.0486203363 90.46548149316665 26798 2575 3762880 SNX_20200901 879055266.8093773 75209.24543280604 7.428943475591807 0.0006363043570011375 158339223.4201953 13562.081617321863 33148 1927 31979 AION_20200511 32734417.61709616 3738.476252978727 0.07857324977579341 8.9624805049279e-06 3107428.808346834 354.4497675064963 499 72552 306523 MTH_20200531 2540556.51038668 263.1846347255585 0.007310030503734002 7.572701886741747e-07 324921.7161704708 33.6597130727517 18990 1912 1946330 ARPA_20210527 47903391.310128964 1222.6655075579135 0.04871201712109865 1.243416530800928e-06 14107156.85145453 360.0974270495271 41787 None 478045 KAVA_20200301 15001609.82409967 1751.2781375254897 0.8140847130859158 9.518221034267581e-05 2137199.3263415257 249.87983750850205 16553 None 380992 RAMP_20211216 81166328.73531257 1663.7990049943764 0.2165616377600867 4.437964206331799e-06 55479301.80300194 1136.9287660576626 None None 153760 MITH_20200320 2472087.2889542016 399.74182501172044 0.003992917531129378 6.460620508139218e-07 7588489.991508011 1227.8328736501348 94 2083 1254611 BNT_20200325 12380888.60386309 1831.94165302367 0.17734335628147752 2.6244887030793433e-05 6023374.636279175 891.3939049534289 743 5021 126378 NULS_20220112 61356471.55618119 1432.0802079284063 0.6369104701220691 1.488601400811644e-05 14871905.3363326 347.5894989159132 83184 5573 239062 FLM_20210125 0.0 0.0 0.18835148834115342 5.838201858973386e-06 12511363.230618635 387.80614220041406 None None 124168 FET_20191216 16208616.02782467 2277.6942942677492 0.04766258391808445 6.7034099117228775e-06 4271185.159743912 600.7123949435615 16158 332 495500 WAVES_20190916 107243066.9004204 10407.9861588259 1.0724306690042045 0.00010407986158825898 8378398.244654904 813.1271837317958 142453 56905 28141 XMR_20201106 2135058664.7130163 137292.3657109926 119.61665508031645 0.007694817031038413 363834485.83139706 23405.100202599075 325467 183021 75533 REQ_20201208 20612561.7960965 1073.1261210729353 0.026699097180692306 1.3904269229332256e-06 314542.1942219952 16.38062636668576 None 27399 377292 NKN_20200530 12064228.189936442 1280.8430036785994 0.01856035106144068 1.9705276979670757e-06 1302569.246733344 138.29203826540817 12429 1003 285670 MITH_20190104 29632136.79252292 7858.145055928576 0.06077200635581496 1.611445579558228e-05 6661837.629879818 1766.4693736703168 33 1959 477633 DENT_20190805 41260539.1129208 3767.7695463339323 0.0005660037672768806 5.167992910244424e-08 447803.6310204022 40.887466198843406 46594 9992 266120 RLC_20190701 26426179.71402807 2435.6465577348904 0.3751218964096512 3.474042305606118e-05 1496531.1548132696 138.59528311302054 24960 3316 789445 TROY_20210805 13492624.073133886 339.2607135293134 0.007077800711947916 1.7799107731617245e-07 8193573.464602543 206.05030112983238 None None 543401 REEF_20220115 247293738.9657204 5736.530119697151 0.014111367169909161 3.271871060481979e-07 20056611.434029274 465.03393847100057 226494 14545 108982 RVN_20190227 34479477.67263184 9052.085530916542 0.011556261111347561 3.0331982547739605e-06 6938302.497162409 1821.1121073425427 19388 5771 319806 FUEL_20190712 4692826.319200435 413.281337637835 0.005805074610197654 5.10145269626738e-07 2751019.890024383 241.75740671440283 1 1512 None LRC_20190608 61422710.59619357 7638.471697651605 0.06334085933489343 7.88966920240505e-06 28709953.84104008 3576.080921550472 35200 2462 858325 HIVE_20200625 86540971.09989229 9309.605397217418 0.24037306104302986 2.5860702652920365e-05 8030946.388298368 864.014942723346 7777 88 99356 ZRX_20210828 933188115.6164887 19024.72226741561 1.1045692099231228 2.2521360664448153e-05 80501111.4658294 1641.358955983455 225877 19758 54566 WAVES_20200217 139914358.9485454 14035.46678046156 1.394280181717692 0.00014015068722657775 70378172.35211876 7074.294930268978 141382 56867 40604 FUEL_20191216 3025079.668279626 425.69085748669625 0.003060162390222616 4.300252658078579e-07 222146.075017472 31.216782894521945 1 1488 None COS_20210324 99767361.06957862 1830.8507209727682 0.03310461929235335 6.072910792808056e-07 11067692.863518635 203.03242532039084 20086 None 274525 EGLD_20210430 3078276850.551236 57440.23079689854 174.63328285536656 0.003258431591167177 109010300.95462619 2033.991473935576 218045 8185 24132 NAV_20220105 22450401.498099204 483.8619220753564 0.30918237208562965 6.724477611629331e-06 309431.5351664386 6.729896716047355 58668 17328 732719 POLS_20210826 141052902.2037116 2877.6944893088444 1.923037124637276 3.9242325540677756e-05 26637967.68316471 543.585865385711 384905 None 25468 QKC_20191203 14832483.251263447 2028.7856768369104 0.003964893595771287 5.423086923109753e-07 2078582.7036537118 284.3035861242012 48891 9221 285301 KAVA_20210724 309483012.21323806 9257.188191755526 4.405052658936238 0.0001317404221148809 203009624.93600836 6071.340288792792 124425 None 50166 MTL_20200414 16199199.361311821 2364.413863614184 0.25011238180232354 3.6526530975985994e-05 2874849.5406604223 419.8443917151825 35245 None 465912 WBTC_20211221 12222359176.657398 259065.31406572767 47168.28533183412 1.0004791258860943 398203769.82628256 8446.237906627233 None None 207353 THETA_20190714 114192816.2449853 10033.11078420032 0.11443476504478634 1.004868886849469e-05 4315316.033457105 378.93439264253294 None 4017 256073 DOCK_20190826 3235336.7977522737 320.4732631005872 0.005845902379461551 5.790795121343394e-07 1768018.2234498376 175.13517397706784 183 15189 201601 GXS_20190906 47464385.301507436 4490.295145388691 0.7276959880795205 6.88546716995913e-05 4396738.016340487 416.01981819797305 None None 606832 AUDIO_20210128 33387525.037333045 1102.4496387999675 0.21755462200833445 7.15618499612413e-06 11743836.94525205 386.2987095779623 25115 2463 50334 COTI_20200317 3456499.6175101683 684.8289183799051 0.011097555589628697 2.2063014399543522e-06 2623421.5013588034 521.561580774095 22532 901 294374 BNB_20190716 3957842252.0288725 361923.01555932383 28.367249931948486 0.0025970882233214082 200366016.47181922 18343.978460411934 None 54524 742 AMB_20190712 5164838.062799564 456.7070539772262 0.03564115711405958 3.1434996836165217e-06 1674796.708727805 147.7147026164041 19385 5668 665326 WPR_20200725 5808162.874197769 608.7590299084051 0.009536282644356782 9.998571024692088e-07 1452801.3947504503 152.3228544277682 32931 None None ANKR_20190915 12702804.619327577 1227.1413179423423 0.0031794627605528317 3.072191732679341e-07 2881089.2418088056 278.3884956796092 None None 7336 TFUEL_20210418 0.0 0.0 0.3770026288637111 6.264545877843696e-06 117666367.42670302 1955.228692291878 140952 13944 21480 EOS_20200704 2268092551.344711 250126.5694689376 2.414509383550404 0.00026635592784984136 1681882009.6816714 185536.34385300605 190116 71719 93319 NKN_20200518 10031035.728913836 1029.9704600177265 0.015432362659867442 1.5845699384888105e-06 1566876.095872736 160.88429319467375 12295 998 285670 ARDR_20210519 322431220.63596123 7564.30470304733 0.30898976246027055 7.222614047544836e-06 18287673.93590925 427.47309689071324 72148 6886 None BQX_20190329 20106951.753206246 4994.166018443038 0.17095001908111795 4.245947399149447e-05 3952328.0618281 981.6540030183571 60929 5822 403749 LINA_20220112 114078409.6339706 2664.2086417251403 0.035202363071385585 8.227575057747337e-07 17100609.9888994 399.67928269934686 55765 None 129596 WAVES_20200322 92707273.85078456 15045.87255583644 0.926474614153956 0.00015043731755921163 49721018.80349189 8073.504207062363 140945 56869 60056 ADA_20210823 85113700351.55208 1725252.6460554528 2.6628666921343758 5.403418189140844e-05 5514366048.470247 111896.04757871688 560867 574662 8980 POWR_20210114 46428246.23904528 1249.00049080434 0.10815374558911293 2.900951451422478e-06 2666242.9761686437 71.51524331802713 80925 12560 337778 QTUM_20210527 1302077434.6640177 33233.66308715943 12.614818744725175 0.0003217604442361303 586527344.2994902 14960.28620604276 244414 16648 95326 DGB_20210620 714172809.1320982 20033.39775398344 0.04933447999303092 1.3856592930226846e-06 22002473.16524891 617.9842458097496 220753 39574 87100 BNB_20210909 64391771501.81906 1389338.0348844193 414.01508472530526 0.0089630409735093 2645148614.5046954 57265.003830856396 4978530 622304 154 GTO_20200610 8519890.498735955 871.7598346582344 0.012894367594419762 1.3204305502113232e-06 9721621.582960676 995.5297180522707 16628 None 1410862 ATOM_20190818 705280518.0721793 69004.10476106998 2.9018226798401177 0.00028390919554395136 108422026.2705428 10607.819172262783 27980 6611 115107 ENJ_20210711 1213790444.4194422 35994.54162994186 1.2990605098899164 3.853730179522595e-05 274483721.3509492 8142.701534722669 240413 33942 29114 BNT_20210124 177833444.17171267 5557.230922613685 1.757118423570495 5.482888650887504e-05 96484388.76483165 3010.6858652790706 90835 5342 94458 FTM_20190730 50947299.158043936 5353.3395414572005 0.02463061456760231 2.5887950660051925e-06 13363002.943314385 1404.5153437693023 17871 2029 417127 TFUEL_20211230 1886178773.9046779 28765.286079276702 0.19435891981609824 4.17709846978326e-06 21325391.295631774 458.3183495401101 None 26978 31111 GO_20190614 17501339.48813504 2127.190816298867 0.024035135539193453 2.9200800306973897e-06 1525657.7120462446 185.3554190015275 9796 669 891610 FTT_20201124 387110954.6470052 21137.48120326632 4.224281183032946 0.00023017525678026014 9380221.72460701 511.1153473375103 31423 None 5253 UMA_20210124 623196177.6115154 19464.882353687844 11.17450861492339 0.0003486843933970064 41406381.54153745 1292.026300941285 18021 None 212976 QTUM_20190603 343862191.54751253 39335.40219856673 3.5903848775653335 0.000410589007542082 347486429.5290603 39737.83120750744 177666 15304 454954 CELR_20190601 48578573.80411086 5663.397543393145 0.017113425941106035 1.9950564239831064e-06 67432707.64370897 7861.199565425037 14455 None 333919 BETA_20211230 156725622.10543185 3371.4581438999053 0.6137800969380193 1.3190437683117799e-05 7697235.0135015445 165.41738528898114 53482 None 51622 GXS_20200224 32885941.38212264 3305.448977995432 0.5061348713084107 5.0864334277849765e-05 3722820.1495299083 374.1270939354406 None None 811785 NULS_20200418 18629946.128672365 2646.325934778789 0.1956647089303259 2.7793563662879155e-05 7895470.3985945685 1121.5270263676287 22822 5180 583809 XZC_20190314 47343879.893435635 12244.959431930081 6.767147455989851 0.0017505104273375053 14675921.825807007 3796.3343275645298 59258 3947 296891 GO_20210107 8547291.48302864 233.54965245864304 0.007864058761263936 2.130639875795659e-07 450457.39133681596 12.204416440230846 13378 685 698826 MDA_20200224 13838285.539047945 1390.9210097029788 0.7050818134549306 7.085762923248742e-05 924120.3061519361 92.87003688078 None 374 2393526 SOL_20200531 9591470.33610501 990.9778067211895 0.5858132380721703 6.044940833236667e-05 2439529.3289575824 251.7322842178137 None 1890 124242 SUPER_20210828 270753260.35939574 5518.912149590141 0.9136197210210273 1.8624567215027243e-05 28698858.175640367 585.0397061147133 134662 None None HBAR_20200127 24201000.66301814 2820.072827169379 0.011667671396892737 1.357696462674648e-06 1564564.8326121955 182.05896160466395 35070 6122 154670 BCD_20190207 126875501.0374153 37253.48980775084 0.6743069343601293 0.00019799162408093955 1287218.303843408 377.9561347185487 20583 None 1643339 VITE_20200318 3418349.474929386 629.6622205857777 0.006818437376903963 1.2676870377615998e-06 1049359.4538780022 195.09739608956613 None None 513506 POWR_20190411 51366167.17438957 9672.018584429696 0.12329210862388579 2.3231268452611037e-05 2635462.703782766 496.58605284458747 85167 13247 630492 QKC_20200330 8762029.46683707 1481.7699439338267 0.002352238620437137 3.975438765934686e-07 3000095.312914098 507.03594035205566 50102 9199 585547 BEL_20210220 74557945.61300166 1334.728819834101 3.3499338726425796 5.9953287956555166e-05 38919481.70289388 696.5364041090231 None None 362473 POLY_20210220 277758269.6776915 4972.238070444654 0.346850023506091 6.20107626639651e-06 73080705.75241598 1306.5561460596396 37849 5217 248256 KMD_20190618 184196475.82873258 19777.487083366777 1.608863640178866 0.0001727464096116682 2059203.912145172 221.1002061317217 97273 8406 339259 MTL_20200421 21037729.605419047 3072.209990596389 0.3227202033567051 4.7163313061654585e-05 49190457.347218946 7188.843200338954 None None 490866 PPT_20190324 51147248.81427201 12778.74394838123 1.4132712789975403 0.0003528884259668747 107208064.16904403 26769.443048757727 23798 None 550893 QSP_20220115 25468123.65883296 590.4898398663125 0.035679537967651775 8.272460485606165e-07 373297.5718355493 8.655071192855894 73465 8675 122179 APPC_20210617 8328372.002787353 217.76869249247693 0.07381115155446358 1.93e-06 142089.24961345692 3.7153227659864116 24788 3132 602662 VIB_20210806 6816349.619738992 166.2387636153921 0.037496129097557944 9.164195634351718e-07 1026239.2262177195 25.081674463611282 32712 1277 None GRS_20200323 10704546.782602241 1834.772292321787 0.14371845469782998 2.4647773568852258e-05 10793715.622125316 1851.1266293537806 37628 106843 3912987 DNT_20210203 97855974.90741482 2747.4095170982955 0.12959331126808463 3.6490026229149774e-06 11079768.405052805 311.9767800954789 None 6878 232543 AION_20200414 26236934.835243482 3829.5085503638106 0.06397478672897502 9.342908225090898e-06 1813791.851380385 264.88702304949675 478 72554 269211 POE_20190221 10885219.159989657 2741.482060429289 0.004785511664142889 1.205248528706271e-06 792151.7593117809 199.506303490247 None 10987 525108 SRM_20210724 139834408.9993826 4182.695510086846 2.7980118157470586 8.367919437720333e-05 43782452.28912568 1309.387013590645 96882 None 26595 UMA_20210217 1426868256.6070383 29017.471675828587 25.63388186391754 0.0005209537375891951 98806244.18480049 2008.025256513216 24990 None 131876 SFP_20211002 108153746.7955475 2245.719267930061 1.0016956528003527 2.079617785202089e-05 8277268.749804563 171.84416501028633 387075 None 28591 CVC_20200309 17823250.047092076 2213.573665983793 0.02628541234157715 3.26747171491039e-06 6677229.969148508 830.0292106749445 86747 8076 106398 HIVE_20201014 56891695.59657522 4979.679328019544 0.15270085555556528 1.3369008995281887e-05 1653353.4767601055 144.75162842256157 None 95 135312 FIL_20210206 1188786069.8665295 31369.866480422654 24.574468847793767 0.0006438000905272644 273547244.93157846 7166.370192625533 48251 None 48258 SXP_20210422 328501614.85097384 6062.77082746295 3.7808929915005494 6.99025742561018e-05 482128940.8002727 8913.7815222671 168186 None 66436 TVK_20210325 160449942.04146212 3035.5633127843194 0.730531435515926 1.3855581146478063e-05 37425962.537476756 709.8372988656315 39803 None 97211 NKN_20210613 178800519.42116222 4983.538738140159 0.2727690821479494 7.644362255454268e-06 23417197.69903048 656.2677148353812 None 3211 103719 SAND_20210212 104388658.30997628 2190.087652401423 0.15850590949307383 3.3145277562168253e-06 95404625.30245619 1995.012549675789 68755 None 48574 KSM_20210105 598935743.5780971 19143.70990605775 66.64792376706293 0.00213025943453538 136013910.4123899 4347.395980356615 28170 None 180647 POA_20211125 12532429.94475228 219.07002136454125 0.04260848925867897 7.449996102846103e-07 210.61428104150752 0.00368254214186521 21286 None 224382 KAVA_20210711 303520190.54212224 9000.915629556668 4.321217056501373 0.00012819113856611889 34376287.63735478 1019.7903494060474 121522 None 48831 IRIS_20210819 114850166.43808852 2547.9684171588274 0.10735218383237322 2.383246086545622e-06 7307307.603095626 162.2241078528577 27140 None 908370 BAND_20200127 4488453.675029371 522.5150124851275 0.25105985213800514 2.9229164254519692e-05 769458.8311051949 89.58277625807563 7679 1003 897793 REN_20190324 14452296.825427324 3611.7462439862215 0.019155605323917312 4.782655935219356e-06 325358.2214412828 81.23347722693357 5846 806 2336942 LTO_20210201 53468310.332749814 1617.8855377160016 0.19673005658178003 5.932784822162263e-06 8686609.185399618 261.96191891893704 1222 1313 777868 STX_20210325 1269585997.3354194 24018.17743149569 1.2024881678362118 2.2793418832196115e-05 16465707.2982501 312.11098192567243 55791 None 83546 BCH_20200901 5089980423.114132 435482.95692446077 274.5430295280649 0.023519858518541582 2287614607.2887654 195977.92011281324 None 315677 143808 LTC_20211011 12056112164.150537 220268.6376676019 175.4349103638173 0.0032052462832987106 2710452830.030585 49520.752976106625 198748 344567 150290 XEM_20200711 412106820.5817858 44382.64791511946 0.04579267308160947 4.931976255692462e-06 12368051.946321571 1332.0676523888349 208463 17839 240826 DLT_20191015 3471853.6910516885 416.2300946262804 0.0434615996730665 5.207241678383887e-06 198938.11581499575 23.835267359774 14967 2638 6019106 LTO_20210217 94508270.18038155 1921.6957895248809 0.3459115201510359 7.03250701713521e-06 15048098.319765437 305.93331202755 2571 1763 791991 IRIS_20201226 34287653.77208943 1388.439042603305 0.03679225018009394 1.49209335868053e-06 1573082.4852360548 63.795661243554505 10996 None 798128 CND_20200113 11159670.887480356 1368.1984436179175 0.005949411332057643 7.296676528725707e-07 36979.09145232918 4.535313724231792 35196 6010 478937 YOYO_20200107 1856113.2329231678 239.13840086489552 0.010563725186145328 1.3621257446957176e-06 388425.96509873524 50.08507866743636 7534 None 1425817 WRX_20201015 22583267.42100159 1978.465047945346 0.09451495408800566 8.273682343018282e-06 3008796.4516382925 263.385051771558 40409 None 14892 LSK_20200801 179164620.22240266 15808.215228232562 1.2694747914625208 0.00011199412779689214 4469037.785461696 394.2622510034407 175838 31132 181542 GAS_20200506 17243096.10672315 1922.9420832867324 1.2398822142900858 0.00013779303419468193 10168770.0365873 1130.095795568454 320744 99334 218752 LTC_20190316 3558479624.289665 906810.8730551992 58.480581797163325 0.014901540782395292 2003002787.4453492 510388.69325708604 439853 200089 251595 QSP_20190324 0.0 0.0 0.020739981533666983 5.178199706196428e-06 166742.9067231237 41.63109158040591 56842 8554 1062367 CND_20210120 18150586.269785356 501.3604923870085 0.00936620598777339 2.5987003033396515e-07 246431.53227513283 6.837365081569002 33945 5899 464745 ATOM_20200414 420088325.6200302 61315.5402859388 2.2620657367958374 0.0003303531540877203 122845330.12825648 17940.390331140734 32333 8355 80555 EPS_20210616 130856081.90606695 3240.203175676154 0.6734963989840759 1.6686473744816728e-05 6216777.575918557 154.02620705086073 None None 20325 DGD_20190830 31375130.318912756 3306.421176597129 15.687573003242878 0.0016532114149042717 1637253.3574831625 172.5394960152207 17245 3363 558523 BEL_20210527 55797838.76488979 1424.1599809173283 1.774667534137989 4.52656376370406e-05 14693641.68827607 374.78403556477184 None None 396046 LTO_20210418 196760742.87151536 3265.268183045504 0.7001742745914807 1.1648180811851034e-05 15194449.747923834 252.77663636480403 8076 3667 174432 CDT_20190531 7465287.439447438 900.2988253087433 0.01112384904983778 1.339415296552861e-06 812567.3522343953 97.84069670363581 19764 292 398221 FTT_20210125 922787937.9588653 28658.62663591196 10.32586824704585 0.00032006385363000933 53964751.84034783 1672.7083883866417 49867 None 4837 VET_20190131 221841124.1774713 64146.04716513759 0.004000400055604834 1.156728048497269e-06 7239528.966189071 2093.332190955891 104043 54660 678034 TRU_20211230 178712136.50700825 3844.4287535510903 0.323220339223447 6.945605095816622e-06 18910815.772729583 406.37002829923324 None None 113426 VIBE_20210128 3676029.161460137 121.60914521257062 0.01998993691096134 6.597546516600769e-07 118463.25069031723 3.9098012686 18483 None 1420135 SUSHI_20210314 3214948015.8931975 52404.61492357957 23.053971169362196 0.00037576439112532186 1743939088.6465595 28425.04681691474 57187 None None MDT_20210703 14210358.120778259 420.44857735332533 0.0234076277324612 6.910839499503469e-07 1588816.5339740787 46.90802581940139 34370 310 534148 AST_20210930 36230369.15834567 872.4325096090698 0.2106732288890174 5.066036352206809e-06 1347729.6865179962 32.408710023831546 45847 3714 212084 CELR_20210106 23496597.15932301 690.4994439942737 0.005935123152830733 1.7411787796355424e-07 6962009.340799497 204.24349445963776 25926 None 415548 BCH_20200321 3907557656.0912395 633248.8619908956 213.3923909892152 0.034476302198875285 4211584382.5119452 680435.9576011488 None 288102 138735 DNT_20190904 4661249.362418982 438.61688561606854 0.006940261437336676 6.529305890425298e-07 72047.47439766795 6.778130812828323 60245 6278 485543 AST_20200315 1623861.175702286 314.1593837450546 0.009482662782558552 1.8302407344814559e-06 3668589.7891646116 708.0714166680692 31790 3482 336261 VET_20210727 5120230667.674373 136685.78323869227 0.07828606998595533 2.0917890974366304e-06 1250838757.1087523 33422.17683478908 394182 194461 33228 COS_20210729 38897128.49725208 972.7434965852241 0.01297744290282996 3.24263171897435e-07 2566021.7327229413 64.11635577522335 27202 None 345679 COS_20210202 28101142.89577162 841.7626935066157 0.009305412978876222 2.786492867625268e-07 2009716.434982813 60.18067682478275 14752 None 369084 XRP_20190302 13049579376.232838 3416112.151435691 0.31512793629703345 8.242014913511723e-05 669236941.529748 175035.60355759805 912737 197690 32700 PAXG_20210610 277153533.345996 7383.748653152869 1905.8874878968093 0.05088655873549852 18061908.986615263 482.24693134266994 22198 None 39810 QTUM_20190531 300440274.2962891 36146.824984178966 3.135241645101293 0.00037743783500826495 426193845.87485886 51307.586683850575 177545 15298 452029 XLM_20201111 1666520321.4241724 109103.68209629663 0.07967167627810871 5.215941941408449e-06 138041607.43936792 9037.30213217916 291454 111990 45514 NXS_20190414 22870775.15474321 4508.378553291133 0.3832288917182668 7.552663411475358e-05 305733.5264072474 60.253870949137735 21284 3511 688180 SNX_20210107 1667527289.3202493 45494.78948785462 12.144661616447634 0.0003290400174208444 278018847.5650447 7532.472236380307 53036 2971 45504 GXS_20210206 31210021.71272921 823.4615674286869 0.44465855340042837 1.170567408982893e-05 12284402.240338443 323.3879297139539 None None 429351 AION_20200621 46652192.49302487 4986.725710270871 0.10863775737885403 1.1606431662374965e-05 3456986.4652952473 369.33086741916054 67520 72564 377141 ENJ_20210725 1224482519.6232178 35839.61056237482 1.3129366854644064 3.836718461980513e-05 368219848.0552102 10760.27431285744 244090 34170 35760 BCPT_20191012 3539323.0984836896 426.315781527042 0.030200747924762204 3.648513083112524e-06 313601.21106882417 37.88575449571572 10862 3122 1234245 ANKR_20200322 4987286.224463596 809.7767055688387 0.0012511092810137353 2.0303122468041977e-07 1406058.812775464 228.17658462191955 None None 5425 OGN_20200418 6446780.225443346 910.648991358082 0.22187205515258626 3.151751311418054e-05 13849114.055240398 1967.3033341474113 66405 2205 171904 ASR_20210427 11582378.99226733 215.01039124114223 9.33565134566393 0.00017323758385069288 3116063.01583839 57.823413493379064 None None 190056 CDT_20200106 4881651.322209839 664.8242294983821 0.007236517424099455 9.853657860194804e-07 343753.33199867903 46.80742853650297 19326 295 203287 AION_20200927 37448114.65170309 3488.379097980216 0.0821053160405301 7.646332251676768e-06 2250973.52193491 209.62944019294736 68382 72550 344425 XLM_20210430 11340662796.357626 211602.1259878091 0.49421340629181376 9.221384088469009e-06 851945420.7541546 15896.20161487013 515816 176324 26729 BEAM_20210219 55958860.20368516 1082.6458745410605 0.6838292587874925 1.3225332393180518e-05 14269111.76888549 275.96617675231636 16596 1781 251636 BEAM_20200423 16512588.614700349 2322.798932792203 0.27722796352008555 3.8967997675488754e-05 75464805.20708048 10607.560350518772 14963 1475 307022 JST_20210128 39433726.02996783 1302.870805125045 0.027774395672864015 9.134175383324979e-07 90286395.51365422 2969.2519004318033 32178 None 184317 SNGLS_20210707 7301214.547215322 213.74942160949038 0.008207590704890104 2.4020449600216194e-07 43886.825628208084 1.2843979689286467 9514 2138 None XMR_20210218 4860174460.422804 93147.61768214797 272.07862973286507 0.005219196135704667 1185812022.5809965 22747.04754284967 353819 198709 51844 BCD_20211120 354222919.6256213 6093.523853538695 1.8841595189641125 3.238528736587022e-05 3936309.6102994294 67.65802821231917 35757 None 800580 DGD_20191127 25585340.273380086 3569.5672625602824 12.808282485152409 0.001789658464305416 3849219.6034907466 537.8385784622692 17400 3356 523731 IOTX_20200313 8118392.468144115 1691.4426626237703 0.001882206569811387 3.9405979886210514e-07 1594620.9791515963 333.85072201120823 22591 1808 497303 POLY_20200801 26441543.357089464 2332.715825123422 0.03915002909825995 3.4551344107657625e-06 626900.324584966 55.32626497307027 35073 5009 388047 HBAR_20210617 1746544636.016025 45662.426656373544 0.2034545223940739 5.318702410658165e-06 74410057.77893716 1945.2256407428672 113086 21790 37891 PIVX_20190704 38064408.879508235 3171.852097057178 0.6300448419916614 5.250072474886487e-05 1759437.7383272727 146.61140010397546 63420 8630 286633 AST_20191024 4101986.8546901736 549.6436013721069 0.023821486388755364 3.1907375534440858e-06 1252902.1631329583 167.81832659219427 31926 3541 318017 IOST_20190228 100190897.61011188 26215.778686561433 0.007464953383055388 1.9568581136924497e-06 8179539.186257457 2144.179179902922 195699 48251 81938 FET_20200117 13392581.322493829 1538.0591653359252 0.03943264924640507 4.525447293015759e-06 6995411.92230736 802.8212294212542 16379 341 392761 POLS_20210821 138177000.18637225 2812.3580557476807 1.8827923652381273 3.828002523058565e-05 29004929.50555983 589.7142211662631 383956 None 25468 VIA_20200518 3103363.834009792 320.9257606972804 0.1337865463219473 1.3852417222195603e-05 49973.59740561131 5.174325374172524 38930 2159 2692600 REP_20210210 139465391.8283063 2994.456246105207 23.765960620701744 0.0005102780574621856 32695255.994273476 701.9986266599362 138040 10582 129604 GXS_20200404 27526193.737510294 4093.302315103929 0.42364556467846043 6.297526469841656e-05 12265057.406738598 1823.2109601262373 None None 493162 ARDR_20210110 89765671.84459303 2218.316954594812 0.08986792916935471 2.229422763748969e-06 9413243.966923505 233.52157521104027 None 6291 None ANKR_20210823 767411262.3228816 15555.407713056422 0.10009683526726315 2.0312699502489324e-06 47152456.18210625 956.867088428986 120007 None 5363 HNT_20201018 52781507.50938116 4646.543439997845 1.1784382292052638 0.00010369301787158026 2428328.7960350225 213.67326263265102 None 1631 76118 SYS_20210127 63501681.97609045 1948.433920346768 0.1066988836210432 3.2747600049861142e-06 5259088.951053832 161.40988148238586 61307 4495 270004 ZRX_20201129 310098253.74595594 17517.959268298942 0.4156631873022974 2.3464835212790606e-05 47837017.60096492 2700.4742526348846 161884 16311 88488 MANA_20210508 1959882178.1843798 34202.56385917421 1.4672686098820624 2.5602393092357723e-05 395075649.1274039 6893.681226500998 127847 31051 10949 CMT_20200707 9632645.810326057 1031.9069126105808 0.012038706391291175 1.2884977368697795e-06 3005516.270928759 321.67915616070286 283642 1635 1005584 DOGE_20191020 334028973.0199958 42038.64787385313 0.0027444704851403083 3.4523436150383745e-07 67906451.33863388 8542.136086657949 138294 142574 101092 WABI_20210217 12779362.796823578 259.85077954124534 0.2162765383729547 4.3950085341421585e-06 2827482.458010443 57.45796389465013 40952 7431 943415 ALICE_20210814 231619275.66092426 4861.119415271655 13.309826040528863 0.0002788030086532838 125362838.75719348 2625.994998912341 93684 None 36136 HOT_20190626 345365957.5633029 29252.31833771088 0.0019484171447411425 1.648025666913387e-07 28641348.908196446 2422.5653250449327 23020 6465 301392 POLY_20190325 61536378.633953735 15409.284851563436 0.12752027503693125 3.1931767567134895e-05 74379018.18914708 18624.90901936733 33714 5022 275079 SAND_20210418 456612244.56361014 7574.521751632813 0.6621040917338732 1.101484081414207e-05 74851965.08478571 1245.2460124140546 103807 None 22461 STMX_20210429 450969193.5309794 8238.70137175682 0.05375440832470566 9.81714662261295e-07 85877021.15998968 1568.368687360991 57773 3989 60335 WRX_20200607 24742784.32518197 2556.343742843802 0.13243073041119585 1.3695691937875375e-05 5846373.634539533 604.618973283266 28161 None 24905 BEL_20210106 19562074.730366856 574.8748056198078 0.9360383515859478 2.7460426224334603e-05 9748870.339478377 286.0012458616324 9348 None 319671 SOL_20210707 9343669279.576614 273556.5726284455 34.291237666647795 0.0010040831409300355 499801292.4695335 14634.702207666305 351161 26336 7723 MTL_20190414 21542493.714688122 4246.542410153803 0.47633947292057294 9.387683930713373e-05 2038483.3449683615 401.74368131312235 33347 None 724341 ICX_20210828 919297740.6867435 18741.541930239855 1.3945766900671726 2.843459310231885e-05 85232267.61726575 1737.8354780676596 143818 32993 290799 FUN_20201018 18457939.29746719 1624.4077583236406 0.0030692580283128807 2.7009389478790464e-07 279738.57448459824 24.616920574283935 34016 16630 324351 ONG_20190515 0.0 0.0 0.4007840244784533 5.014013954847985e-05 24715259.85316194 3092.0059242059533 80091 15968 249396 ANKR_20210806 735776540.3572043 17958.188842851374 0.09591988212894899 2.3419603138899967e-06 50708334.366987996 1238.0843682783136 118301 None 5363 IDEX_20201226 18925911.519729104 766.9089034561049 0.03351643255451046 1.3592440303720854e-06 771288.530626424 31.279263663976682 44262 1949 96261 IOTX_20190314 22634925.43478296 5854.267633272473 0.008962796694360209 2.3184867013455397e-06 1556823.5381327514 402.7174544496516 13981 1648 1423177 WING_20201111 5180596.311631143 339.20017805923936 8.306773753330367 0.0005438275136391454 1283666.0222023942 84.03899298659717 6324 None 218127 MFT_20190719 15855137.774412017 1477.3160786614847 0.00177579456791113 1.6643511692270755e-07 1168271.9716492181 109.49548202959168 18875 2148 894559 WAN_20210610 140453020.6066183 3741.8293919866323 0.7966452951917332 2.1270163040877035e-05 4039039.369190047 107.84100079385611 121808 16560 175005 VIA_20190510 15756365.642483301 2552.33372951739 0.6809231607546775 0.00011030101673432887 1396388.0752494277 226.19736459690745 41310 2231 2027413 THETA_20211011 6345899551.178515 115974.837150765 6.3219068813324775 0.00011550305747430461 251016128.5505806 4586.136883567039 202905 24599 26496 ANT_20211111 182664507.15168667 2817.9765903355556 4.824549123588487 7.428991059599994e-05 21511957.425390474 331.24782294444475 90711 3297 100312 GAS_20191213 14427400.857981347 2001.7450530683902 1.0353222908295197 0.00014364804313615913 891266.7341899797 123.6607415997649 323573 98745 159020 CVC_20190616 29535126.476100687 3349.251939048698 0.08633804708125292 9.791758805610104e-06 5743167.847241403 651.343367627939 88740 8171 458176 NXS_20190329 24142771.140439406 5996.620414408134 0.4043481147605763 0.00010043263656007073 658410.5889543978 163.53708345323633 67 3512 745468 HOT_20191127 144003320.26117232 20085.595972116425 0.0008099038686575064 1.1316515820890414e-07 11609846.440277562 1622.2050048642102 24593 6734 647403 ELF_20210131 64322175.07159626 1880.2736113024202 0.13890130531424258 4.065665918937942e-06 12793200.921466637 374.4592670519643 82046 33307 465986 GVT_20210725 17627984.682801854 516.6400203100405 3.8865497491416052 0.00011373822289805174 3385822.4891584157 99.0846529238922 25802 5689 392150 SNGLS_20200301 4464054.132587537 520.5440268485776 0.007953432680100977 9.29909738059151e-07 43879.92028763017 5.13040932411696 7336 2142 1276289 RAMP_20210902 108112824.63269533 2222.9316424636154 0.32517653984925626 6.683279334343005e-06 19270346.839512143 396.0590479800203 32369 None 106838 HOT_20190228 194458320.29404542 50975.17992626221 0.0010948031778806374 2.8699100605168616e-07 12517137.16793844 3281.2343453987155 18524 5577 247216 COTI_20211225 350658954.971788 6896.4823894454785 0.40598560784273396 7.983866239995724e-06 66865287.78453803 1314.9321144836388 211652 9862 60051 AION_20200223 55935222.97290701 5794.720126750304 0.14270762738270243 1.4783837047835002e-05 13598855.895033496 1408.7773251952615 1150 72538 253863 BAT_20190426 487860413.9830254 93935.88467541368 0.3892743276020393 7.481547601929296e-05 78746209.00728078 15134.404438859745 99086 25927 68088 NKN_20210217 32818681.143446952 667.3227776865338 0.05124728176351102 1.0414912231286837e-06 6172479.327564705 125.44242003444457 14358 1031 263603 FLM_20201015 0.0 0.0 0.273367772705655 2.39199810163038e-05 11487547.55698916 1005.1730559437067 11686 None 65486 STX_20210718 1091297946.0192287 34528.578980591796 1.0382727219328445 3.287858063090345e-05 33094212.496851344 1047.9816246818023 68995 None 61461 CVC_20200208 20925543.539230376 2136.5391131339925 0.031385057814902285 3.201372317679696e-06 7110960.702274208 725.3398377861072 None 8092 132667 REEF_20210430 453677374.27854973 8465.797944569862 0.03581899230729066 6.683361509874022e-07 98722422.07872204 1842.032936666875 120363 10146 32523 KMD_20200423 65389488.36396544 9193.505680305956 0.5502074187409972 7.733881222621489e-05 3757316.4422871857 528.139717689463 99854 8389 159254 MITH_20190719 12913298.245383296 1205.0197615222887 0.029485017104368398 2.763462822732981e-06 4606833.347448838 431.772267288773 75 2077 572627 XMR_20200612 1124889411.3780797 120960.8389168982 63.93709015299112 0.006875239454282469 74215881.27697897 7980.531392168129 319900 172986 79521 DNT_20210125 86866581.15655069 2700.677294229846 0.11519462526748361 3.5704014236004777e-06 7943805.647069647 246.2143952050251 None 6425 241579 DASH_20190205 567705664.387903 163873.47150411888 65.88149452550581 0.019017300500981743 711153631.7101296 205281.0491626017 319921 23227 89262 ONT_20200901 567803399.8378898 48591.797631457244 0.8892299008905125 7.61861916831328e-05 244463527.0622328 20944.80304097555 90302 16612 197799 VITE_20210219 22880025.19712545 442.660517936368 0.039269435320974516 7.595569674199685e-07 2959497.406507164 57.243167791954356 None None 414630 MANA_20210823 1172974816.5489438 23776.17114106086 0.8823618971809506 1.7904652676438886e-05 148756493.28557742 3018.5271532606453 160261 35731 19080 ENJ_20190613 135830322.61855853 16704.443264679478 0.15595799356343273 1.915448391459255e-05 9037194.743164996 1109.9322156295132 46292 12582 19644 SKY_20200329 6161146.087690023 986.8001526182105 0.3628246706626132 5.8047406428108286e-05 179313.93411589565 28.687985281815013 16140 3830 253868 ARK_20210805 183523600.7184202 4614.49414040718 1.160714339223074 2.9189405594013353e-05 8751622.95367805 220.08401496252267 73138 23427 125650 PERL_20210206 0.0 0.0 0.05635882680410708 1.4785677109447008e-06 13980039.123293236 366.76481072417766 14021 524 461577 SUPER_20210731 179188870.2028943 4292.383957884202 0.8288432425849033 1.9848110188710644e-05 50667729.51824844 1213.3279573513162 129041 None None ANKR_20211204 1110314959.0826676 20680.840661949966 0.13564147486282435 2.5281991307857334e-06 127672349.22952983 2379.6639093898225 147881 None 5363 BAND_20200506 20842412.70761104 2323.6573479866324 1.0165133844741594 0.00011315117874450974 4827848.465000713 537.4024119685258 13028 1129 568885 DGD_20190803 37666131.931431636 3579.6539298708203 18.83641249829184 0.0017896493293360737 1641048.7283482787 155.9161945706298 17195 3364 575541 BAT_20200713 382132378.64851654 41178.86129679297 0.25887119683742077 2.7861672969648886e-05 50476121.68204258 5432.6213663874905 119475 42143 21649 SYS_20191017 14858946.944494642 1855.9395341769884 0.02620857697437957 3.2735519093628526e-06 1079193.4767942377 134.79540953273533 60049 4582 999459 ALPHA_20201208 42582510.76574081 2217.6337432955843 0.24324377589132737 1.26765414178686e-05 18039744.196580816 940.1332619416261 18976 None 122485 PIVX_20190719 28647977.418959554 2669.2998991444956 0.4689929003954886 4.3968901384417e-05 589937.9646016272 55.30771183661643 63377 8624 284209 XEM_20191015 350083004.83701605 41941.16525679739 0.038895888114452506 4.66012090241144e-06 43600805.1258834 5223.817559614993 215494 18291 139419 GAS_20191024 15863387.347524311 2125.606361142897 1.138459813278673 0.00015254733229396695 854542.4541456321 114.50397299175161 323166 98335 172955 BLZ_20190621 13078752.698289096 1367.2745360080082 0.06313584285594877 6.601800126262984e-06 693735.2496242839 72.54043426666875 36559 None 922433 NKN_20200901 20598647.77715825 1762.356491963507 0.03162664300170581 2.709426533593723e-06 2767270.3699354846 237.06960506451864 13672 1022 204746 AERGO_20211021 85684415.11411074 1292.703600093153 0.3236849029233176 4.885024501781049e-06 13535163.714694358 204.27151771599236 23366 None 685447 OXT_20210203 0.0 0.0 0.34421478451559034 9.692171912678276e-06 35407659.55537382 996.9854255947142 55495 1983 149953 OMG_20190131 158911039.05983347 45907.586828638705 1.13318901704368 0.00032743313065121236 47498132.22857026 13724.508358067256 287649 37162 None EPS_20210828 288193172.34006727 5874.39943713065 0.8933795062833764 1.8217945915772338e-05 120474470.28144798 2456.735763896693 None None 31668 DOCK_20211221 70448412.58601576 1560.1781752227776 0.06609527306676895 1.4023209181648842e-06 12367589.190335322 262.39893148420805 57389 15283 184279 CND_20190511 24407602.19142894 3830.609853911253 0.014024775389876133 2.2010946583772675e-06 369830.5339617395 58.04242778787113 36666 6182 553989 GRS_20190719 18706733.050749645 1743.0159175091437 0.2548955446543216 2.3889908519948988e-05 2504208.3797907345 234.70519733572758 38622 107017 None STORJ_20210806 157117004.36798933 3834.3320874107744 1.09312425504001 2.6689499263694743e-05 37125093.3103749 906.4387200296667 103931 13700 58754 BRD_20210324 25635650.495168857 469.9748745067508 0.3237385515839417 5.938855017783849e-06 3514574.7182436967 64.47347589187513 None None None PIVX_20190225 42249389.88909856 11216.711594903954 0.7105520219775692 0.00018967710542738313 586144.3330432968 156.467305722235 60726 8590 178528 EVX_20190629 14843305.3452959 1198.2466193247212 0.7029073203754181 5.677620414997264e-05 1310783.593787051 105.87642888331351 18165 2911 694179 EVX_20200224 6578317.324004771 661.2032790212837 0.3048607417692131 3.0637167199044186e-05 893334.9014228837 89.77623875347561 17860 2878 594950 MATIC_20200323 27780340.717279203 4762.945694735294 0.010058751367945245 1.7250799601468354e-06 15233623.814708106 2612.572694351897 32891 1586 190232 XLM_20210729 6233004512.416993 155883.68572896215 0.2696905128965154 6.737967407350536e-06 697823424.9755436 17434.471250292496 605181 196698 24604 SNT_20190706 93264130.41065827 8485.65428605794 0.02643598752629447 2.4057997992937067e-06 20327255.722184863 1849.8763357329728 111641 5744 317609 GAS_20200721 23949632.75853705 2614.0555624760004 1.7186106250966773 0.00018757339646545388 12849576.823855268 1402.4344623487525 319911 99820 192818 BEAM_20200306 35542428.02867937 3924.6785709457195 0.6292386355759275 6.946167243890484e-05 34557524.85502464 3814.8062373537855 15053 1471 244463 STORM_20200531 14828451.690662172 1536.2438359318378 0.0019564412080373588 2.0255267735722727e-07 3788873.4270150256 392.2665570816845 25699 2518 1300878 ARK_20190314 90268634.0961662 23340.92929956414 0.6446061535151014 0.0001667452646174167 8234697.413840903 2130.132937496214 62939 21770 156863 THETA_20190510 60127124.177109204 9732.891726518128 0.08096337727941075 1.3113322285012235e-05 5394633.4178940505 873.7477239148171 None 3961 252883 XEM_20200526 364327641.03066695 40961.31587084075 0.04088849177101213 4.598816790029129e-06 12742270.39741067 1433.1506130105613 209149 17890 220843 XTZ_20201228 1521682892.7660782 57476.899562894454 2.013742064492955 7.612266482502035e-05 157249507.67246044 5944.282426987087 77502 31250 166360 SYS_20210610 118438021.99085435 3162.2555900215816 0.19295906057048906 5.151942405636088e-06 1443061.552068088 38.529260984491174 73126 5399 376504 PPT_20190131 45169407.45716306 13048.92666428989 1.220660104606491 0.00035270775969489777 3136540.378139181 906.2982609091615 23350 None 589298 ZEN_20190130 23808578.333709612 6975.030596449673 4.190561434587092 0.0012275679419310203 231029.14660923328 67.67684436945159 24922 4276 220390 NAS_20190729 40426623.97664478 4234.950434417804 0.8882899145616492 9.311039024711428e-05 5442326.122425507 570.4636524677492 24372 5129 512130 BLZ_20210704 45205766.61306322 1304.0040046766303 0.1534809135255616 4.426586056126415e-06 16359320.710795192 471.8237550367818 64198 None 284185 REP_20191216 109898627.19435562 15443.358993681872 9.999388166200985 0.001406344185193098 9234459.804199837 1298.7623475736966 127645 10107 332512 LEND_20190513 7961905.755180126 1145.9639164212736 0.00722204800950678 1.037997766539226e-06 1057007.9540909706 151.91977318848566 None 5898 565182 SYS_20210325 171386205.53769848 3242.3044225082913 0.27418453023884826 5.197226053615733e-06 8089584.662484951 153.33979686662877 63359 4857 261664 NULS_20200313 10099973.621629434 2098.6917086704984 0.12291521598422256 2.542163438477382e-05 2576110.31837171 532.797620897441 22720 5189 619302 DCR_20200518 165746549.57725707 17072.897247803277 14.410033719102907 0.00148432064287981 19883648.675856117 2048.13609465866 40501 9778 320960 HOT_20200208 138865861.5238969 14176.033346320004 0.0007821898690775843 7.98300051698379e-08 12553743.854378043 1281.2303973939818 25017 6855 484513 BRD_20190410 19650283.699332543 3799.4325530838523 0.3277849960116174 6.337806635846698e-05 184773.41248739357 35.72641133791058 161 None None SKL_20210823 464676219.65480226 9419.096546074697 0.3811635970128579 7.7363247153001e-06 170796541.21845627 3466.5889226340323 None 2408 218531 FTT_20210511 5211337852.9715 93337.16110854941 59.17688819492593 0.0010590865734518918 167892812.37670925 3004.771436807263 117251 None 2794 CND_20191012 13657813.108558936 1651.7295211727362 0.007787757017342266 9.418248783330721e-07 223828.31723802147 27.069036332381376 35535 6087 313724 WAN_20200407 14957367.52812531 2055.882074177285 0.14122222659534325 1.93809411607356e-05 593988.9940308236 81.51737882183716 105352 16312 867725 BRD_20200520 6842072.244553539 701.4352356836051 0.10911404448921382 1.1177235386093744e-05 628194.8208999161 64.34993235190228 190 None None POLY_20210428 332374252.77915245 6033.303630366886 0.4052701082290565 7.35442999249685e-06 5299652.311029508 96.172703376415 45415 5501 167143 NEBL_20200725 10314281.321324805 1081.0495551468716 0.6222152338527819 6.524464511075316e-05 1672334.6949800851 175.35874685156176 38888 5952 643631 DASH_20211216 1404750012.0063303 28745.01382948569 134.03575642612284 0.002742736884986133 192552936.39332023 3940.1578730928845 420442 43554 69246 WAVES_20190621 237503022.330217 24828.24296829095 2.374234279131782 0.0002482618343990834 25794501.9399315 2697.202388704399 140851 56853 49915 NAS_20190207 23047667.579231106 6767.311594711372 0.5065421445984858 0.00014873212296068945 885043.7670717196 259.86867981941316 23521 5190 429754 XMR_20210115 2917407742.9055557 74368.64749219909 163.7770073739989 0.004174896209946239 758243118.1083527 19328.636972706983 335510 189775 59059 XZC_20200323 29942281.759696193 5132.143383302356 3.0791928011206897 0.0005280828206539897 57635268.62740518 9884.472065157173 63643 4100 90239 COTI_20200707 13352589.10145063 1430.4095952811965 0.02589312112600497 2.7733055823018486e-06 1934582.4669045282 207.2051618953439 24971 1018 317411 FLOW_20210804 1171023482.0801103 30482.942737116548 20.971409149231413 0.0005459095727143381 54407940.710431725 1416.3004237885166 None None 60038 XZC_20200105 26833057.433669437 3650.9968040501744 2.919404177385452 0.0003970315213326518 12774543.01797966 1737.3052652476972 62425 4073 128179 CDT_20191213 5655526.840098001 785.1660074188392 0.008383784991908018 1.1639345325855332e-06 142531.17489456988 19.787835278445343 19377 298 193801 WPR_20200301 4320776.1043279115 503.8036930971568 0.007056686073280624 8.250627574164281e-07 285635.2176556648 33.39626814157879 33664 None 821116 NPXS_20190228 126636737.5297993 33184.25791913085 0.0007610909273297662 1.9962242832946684e-07 22161295.963374004 5812.56661494789 56234 4033 178391 KNC_20200319 79900067.77353664 14846.464495134187 0.4549354175960089 8.443870941484849e-05 90155872.26782653 16733.46414902647 104445 7211 120611 RCN_20200208 28994253.834281176 2960.113664275515 0.056914711008026315 5.808694095422894e-06 2975136.4811402904 303.6413153119539 None 1140 836966 WABI_20190819 6193004.029835676 600.2345909765542 0.1075970308133978 1.042845434452029e-05 83419.35427854821 8.0851202023586 36224 7972 1534793 AVA_20210809 118205466.8952144 2686.955860741059 2.2774543413543764 5.177403093300031e-05 5211019.544247327 118.463620621209 111382 10545 54869 TORN_20210731 36499734.82086693 874.3337464805671 37.27180386901751 0.000891707020760067 6520319.53618781 155.9949909709309 21895 None 136923 ENG_20190723 35640345.579015985 3444.7085697104535 0.45651020875843 4.4141157815166124e-05 1469643.0884582873 142.1036074440416 61824 3477 316821 GO_20201031 5864414.175160939 431.44263786659485 0.005714768210283652 4.2116613171745755e-07 135750.71018325738 10.004535509051271 12108 678 694874 IDEX_20210408 77315879.80044843 1372.6289988513236 0.1336935018247842 2.375001148790499e-06 4213365.968104818 74.84843225692723 50997 1973 4026001 HBAR_20210509 2467008620.747119 42062.24186820303 0.2995035512841115 5.0985838794139605e-06 107026115.35974869 1821.9537768748376 None 16690 39748 FET_20210718 150549633.04315817 4763.3782451361885 0.21808572805535367 6.913697100699401e-06 13593290.917414375 430.9309776604806 68335 2998 163095 REN_20191220 26556126.994296934 3717.69355985947 0.03138308624179208 4.39191944466599e-06 1144812.8797387509 160.2113287485768 10358 873 372683 1INCH_20210401 652071831.9918817 11086.432990234525 4.321349938403499 7.351796526435524e-05 128556663.8471159 2187.099976148974 None None 5394 CMT_20190523 31506173.67640944 4111.557232721993 0.039324474406733846 5.134859582608848e-06 6285193.333249106 820.6997220605434 292266 1642 879969 GTO_20210813 27467140.02895815 617.8642408904676 0.041560910502067186 9.347882825866997e-07 8501363.69311548 191.21273019119903 13503 None 552838 MTL_20200425 18675650.90771282 2490.646932966084 0.2891536013806086 3.8578174372135955e-05 4556717.891102183 607.9462836645844 35423 None 490866 ADA_20190401 2174696705.146237 529941.3617497436 0.06998460362244281 1.7050273239501383e-05 125531038.36643676 30582.9910208952 149656 72136 113717 STX_20210429 2368434014.9856606 43268.633086435955 2.237496436187071 4.0863310128793406e-05 28906271.40067807 527.9141069497649 60722 None 58797 RUNE_20211125 3273016574.462635 57213.15132459736 11.067575379087655 0.00019349264255369333 151983889.89042288 2657.1099335861654 128051 8611 71242 SKY_20190316 15456890.449643621 3938.803864695985 1.1093389858547065 0.000282687433088664 1326967.5117121672 338.1446469123681 14960 3568 436972 NXS_20211111 48923599.97584459 1021.8120047259132 0.5703385408345555 8.782250552884243e-06 491021.10116851 7.560895903869637 26830 4132 662048 DLT_20200629 2977258.608925253 326.5849796626321 0.03670547778066505 4.021727440351113e-06 171931.89825477902 18.838148278978 None 2563 4282096 XVG_20190622 137856708.7546437 13618.485558888135 0.00868674195669364 8.582237772364883e-07 2824370.756699598 279.0392705591098 303962 53027 395064 IOTX_20190616 37049323.622154795 4201.3539059111245 0.010583874474121496 1.2003369265686571e-06 960544.3584226468 108.93712560943844 19423 1725 766707 STPT_20200704 9225982.668646844 1017.4467499222366 0.013087275547045245 1.4437191443977699e-06 1182728.9447909116 130.47241300069717 11557 None 3550673 MFT_20190430 16640466.975420589 3196.6423192967477 0.002502522315591713 4.806204624204083e-07 1700895.0772073786 326.6644111194328 17937 1953 683673 NPXS_20190512 138957368.00618142 19031.19368444732 0.0006515671152495507 8.945539729842314e-08 3567859.005253079 489.8409348013686 60119 4353 180426 KEY_20190227 6934310.22450121 1820.4062935844188 0.0027040194069921806 7.098635317858233e-07 467004.6907248238 122.5988239068242 23394 2811 836734 ADA_20201224 4367651955.025395 186777.67877360966 0.1384300242564514 5.936276697488127e-06 1136208021.3378723 48723.860569956996 169488 93279 46501 REEF_20211007 295945738.82948524 5331.817347024574 0.02145129642236079 3.8668543783699703e-07 45106033.69645724 813.0905491951322 205333 13541 84193 DGD_20191213 38884842.9888302 5395.387749394538 19.324369818225865 0.002684342719139857 2133075.500782394 296.3049115578615 17503 3355 485399 TRB_20210616 87646770.94442298 2170.2724200143784 50.59811308193084 0.0012536425476770076 49541664.506284066 1227.4674829721434 None None 262407 CTXC_20210718 24997865.51437806 790.9304483783992 0.13822500887446076 4.381760274132236e-06 4427151.764293481 140.34159148402728 None 20591 753985 NANO_20190819 137765548.12575415 13349.39425367648 1.033189678629418 0.00010016162064978756 1533963.132869121 148.70864138810788 None 47410 238230 BTS_20210707 118519697.32508427 3469.7674734446496 0.043653003235441745 1.2779959688397358e-06 22863263.610385284 669.3504813632082 6207 7182 140146 YOYO_20190314 5421240.8105656 1402.1426622726729 0.01856589318687232 4.80185843244165e-06 595114.9853943926 153.9197647064491 6977 None 1397331 SC_20210220 634950642.4610546 11367.417325403207 0.013585616770826146 2.430077733936851e-07 57389635.16487708 1026.5362031439552 112675 33757 91836 MATIC_20210731 6786082340.792125 162652.02120919368 1.0557612252147095 2.5268478024365367e-05 708968914.5638876 16968.387368055202 556220 None 5732 ONG_20190302 0.0 0.0 0.5725917334605404 0.0001497585286150884 3522070.3811402065 921.1800435374087 67867 11154 256269 LUN_20190906 2494732.2957036374 236.05183484984488 0.9229122771923111 8.731807236998933e-05 62526.654043824325 5.915737646769084 30883 2196 1370867 ICX_20210324 1114049327.6944988 20423.713963342652 1.8781525477112564 3.44020879206888e-05 115667681.84073855 2118.6829393152702 128024 30322 116416 TWT_20210218 229427486.32632586 4397.761335855577 0.6609668127848182 1.2676647153951072e-05 28133140.32406547 539.5639937172989 None 11253 9818 LUNA_20210511 6185860433.313122 110791.253253698 15.960003581318633 0.00028563559221872036 581398314.1667752 10405.26406750792 67895 None 21924 MITH_20210117 5797891.185339474 159.76691467273702 0.00942516098032284 2.5993752306635963e-07 4743455.742819387 130.82027342955118 None 2125 495760 PERL_20210325 0.0 0.0 0.1351945122092147 2.567488738966807e-06 26574197.148213726 504.6724960221585 16335 594 385073 WAN_20220112 106349414.55726552 2480.8132366849723 0.5505129916595228 1.2868920574502456e-05 1843042.8995957405 43.083402298645844 131694 17423 242413 CMT_20200421 5581500.412843393 815.0851661501704 0.007346109047307962 1.072945363027838e-06 5539018.525306786 809.0084429976017 285372 1635 944279 BNB_20190816 4367803038.164496 424433.7137956932 28.08213542589457 0.0027288329913188612 216142177.619842 21003.242672231263 1022956 55582 879 NEO_20191220 605569835.1866184 84800.98990469554 8.59376216881279 0.0012026577271989998 386126395.5326354 54036.623790692385 323457 98747 183626 GRS_20201101 12835306.036174187 931.1883632751905 0.16841493278729355 1.2218331621490985e-05 514099.19285206863 37.29737215488376 37457 106813 3822572 C98_20210809 231617093.11445922 5264.941818159678 1.2415194106704686 2.8223821309957622e-05 135147470.5737173 3072.3466964607837 None None 61225 MFT_20191127 10497628.467011333 1464.2101562058876 0.0011811487655070672 1.6496507937931222e-07 2237339.2659019874 312.47786932201234 18599 2377 1093623 BCH_20210624 8862130085.010666 262877.4336658968 472.27122152062316 0.014001162702742407 3690311689.038837 109404.62180969169 None 573183 266622 GRT_20210112 354423042.43226254 9993.747933317496 0.2901849562044731 8.16303742836999e-06 184921245.87681353 5201.920427362146 None 2661 38944 GTO_20191020 8727695.448312202 1098.2957355130295 0.013157327116705683 1.6550957464571857e-06 2046341.7607041174 257.41486199266126 17253 None 1047356 HBAR_20200721 195343866.3940183 21321.58969989436 0.040720893041730655 4.44490877160191e-06 9608041.508354995 1048.7704170592842 None 6579 140094 ALGO_20210729 2643993583.5789332 66121.27071593897 0.837022108100123 2.0920986809569483e-05 190721791.47387943 4767.004413753437 117491 36236 209093 RCN_20210513 63518409.654137015 1231.4974374324106 0.12047415234723828 2.401687609081795e-06 12548835.637338785 250.16472389640757 19821 1162 694898 RDN_20190213 11487072.741636777 3161.361337943011 0.22706110955239922 6.248754626305888e-05 250650.16767494223 68.97928922881863 24848 4460 699735 ELF_20200607 42258296.33372642 4370.259127991917 0.09160101538015615 9.4731735145451e-06 14816565.377061268 1532.2962755815627 81400 33388 507213 OAX_20190813 4369806.6953937905 383.9606979726117 0.08366297071469979 7.3511930548185206e-06 338558.28710867313 29.748015251952356 12306 None None DUSK_20210112 15398500.995994657 434.9524711742952 0.051236755134101045 1.441391640632419e-06 1251369.0977299144 35.20349702265113 18535 13344 1115146 VIDT_20211011 58667799.753002204 1072.1866092388009 1.2852067532371556 2.3481097123377362e-05 278979945.493585 5097.043864039361 32981 1773 566642 AE_20200324 35348925.091325656 5493.607304901032 0.10109419564450337 1.5677094894673095e-05 14868886.489154197 2305.779703597326 25378 6340 484575 PIVX_20190302 44328462.51331968 11604.28202935136 0.7440083660822361 0.0001945738659933682 189417.1676791601 49.53658087868135 60741 8597 184646 TNB_20190321 8490385.062683353 2100.9250299767114 0.0032507501554222503 8.04031702087797e-07 393473.7891461205 97.32073684173876 15182 1504 1478446 BEAM_20200605 32807644.79230828 3356.640971363693 0.5182029670350764 5.300711000457842e-05 68829155.153457 7040.551349244848 15152 1508 505180 ONG_20190608 0.0 0.0 0.4237949274736415 5.278743961691623e-05 7459626.483392923 929.1630386051387 80237 16209 249314 STORM_20190816 10057848.390255412 977.3540399532475 0.0016134637720340978 1.567855543978513e-07 114347.9559474866 11.111565055399884 26592 2546 2477338 CDT_20190810 12389116.875687031 1044.4361019099676 0.01836569696548013 1.5482779878466577e-06 2234422.2130596163 188.36784329711267 19777 297 234430 ETC_20190622 974628840.5814527 96280.90580892604 8.738300232447001 0.0008633175786162741 1047625538.0715367 103502.22798092396 227843 24665 633324 NU_20220115 419464896.8201982 9732.062564176647 0.6431726360754815 1.4916092152547289e-05 12306674.813886438 285.4093680593397 None 9625 126838 EGLD_20210613 1424302230.920459 39712.33383276505 79.35694980028836 0.00222398105747288 41015423.921172306 1149.4585678313936 242775 9032 28492 TCT_20210124 5815976.65003565 181.74717042295464 0.01006200066572047 3.1396486429329204e-07 762771.9322709849 23.800792124579353 None None 2451414 BTS_20190627 193595982.74010438 14845.50571577462 0.07143246589733133 5.47765023716595e-06 64824154.126040556 4970.905578605453 13697 7179 169425 GAS_20200913 26132876.01877849 2506.2000590365756 1.8840542040219554 0.000180440683800123 3080434.8153754002 295.02111101765604 322230 100432 111243 AMB_20191216 2519854.073136099 354.0991553453268 0.017185584508281396 2.4170325664583605e-06 285131.63588189794 40.101775375867824 19218 5545 683323 POA_20190613 8773249.494742017 1078.9361727671583 0.04015860084294078 4.938434039023027e-06 3869024.51298897 475.78655510150566 17618 None 614936 CTSI_20200612 7158604.337684766 769.8385639354697 0.03591897807871586 3.862414987190991e-06 4482086.912578921 481.9647047613424 14379 107 268807 THETA_20191022 86423711.2364419 10523.21031264037 0.08649336055872081 1.0524553392015473e-05 922683.5774953669 112.27257806329654 None 4023 413739 COTI_20200325 4290809.939438986 634.8908955382742 0.013701035019588593 2.027604099943402e-06 1108275.339496606 164.01269094026154 22562 903 294374 JUV_20210508 37659029.063206114 657.2003974249261 17.227739136114657 0.00030060709162915683 8038591.440269801 140.26550869863703 2443649 None 39485 CDT_20190626 11854855.050975546 1004.3209511853022 0.017581633189487564 1.4887788517318245e-06 1595993.7862940668 135.14568134379678 19735 296 372453 XTZ_20200531 2079110919.618558 214722.24601105056 2.9153734789534527 0.00030138138892044964 112237232.74309517 11602.703165442997 65315 25738 100952 APPC_20190702 9150709.19674848 863.1992822988083 0.08595983050755396 8.10233634427992e-06 744528.0257565773 70.17715654863207 25518 3367 1256272 ONT_20190329 750635394.1080949 186439.7981260482 1.2239056498923797 0.00030398586902169293 48747797.06449292 12107.66651403729 72384 11311 260077 OGN_20200704 18996086.73666535 2094.583306649821 0.2545857974729706 2.807401971681542e-05 7723196.656715268 851.6624940182977 64460 2299 159966 POE_20200913 5510072.212614103 528.606581513955 0.00208838874155022 2e-07 924858.0538726329 88.57144606 None 10158 911005 LINK_20190411 189838536.93802497 35745.7439071098 0.5206328433463108 9.810004455290122e-05 8773350.603066621 1653.115234734753 11291 6572 297045 MANA_20190806 54616942.18079135 4624.026007674802 0.04156577901918791 3.5191823889882958e-06 13704621.395029554 1160.3069495913055 45620 6348 132863 WAN_20200113 17896479.027909294 2195.326653951515 0.16882346370665605 2.067433629400969e-05 1493883.307443797 182.94285168657424 106683 16526 802960 THETA_20190207 44602943.471755154 13096.423552492692 0.0627766005143932 1.8432616449242867e-05 13770433.06913674 4043.307681899273 None 3820 561867 POLY_20190629 38780668.65849815 3130.62380879501 0.08238456144979198 6.654479963562113e-06 6114442.167497651 493.8841959700103 35168 5097 316227 TNT_20200324 15285854.065259373 2358.982507551209 0.03567449770468921 5.505450705714927e-06 631371.8178538475 97.43616992020274 17666 2565 1338754 PSG_20210826 101925481.6938559 2079.4432812172704 35.06646116408185 0.0007154850845092902 46559583.0606818 949.9871419877123 10015480 None 16263 RARE_20211104 284351770.35763854 4509.65608858916 1.9877076225462595 3.152390354762576e-05 32305685.09358315 512.3496480963893 None 2854 9149 POE_20200309 3664953.189388649 453.66773502013876 0.0015074178346709988 1.8738321747945704e-07 104411.34595737912 12.979104729197092 None 10462 759696 KAVA_20210125 120089835.39326212 3726.9903239807045 2.5494036190080083 7.902211487072173e-05 86881525.73357147 2693.0070450489484 None None 89855 DASH_20190201 572773527.9235625 166927.11654303264 66.52641144986731 0.019388225006732027 490649946.696388 142993.30685015657 319822 23238 89262 PIVX_20200309 18556992.547445618 2297.0849401734304 0.2953639718293048 3.671593243486231e-05 402026.3347788836 49.97485527214976 63968 8510 213646 BNT_20200305 19347028.212846648 2210.0388173442675 0.2775304784121463 3.1685804237544784e-05 1851845.852879289 211.42623868973328 748 5032 123445 GAS_20190702 44930927.215472415 4238.397624874476 3.2062309218003238 0.0003023467397450918 1937166.1267326912 182.6742605405925 323443 97987 188893 BCD_20190818 131405350.56636687 12855.67441581034 0.6983817866681351 6.832422598197775e-05 4661686.845569313 456.0630754897423 21434 None 2670030 FOR_20211021 51942370.35251534 783.6441325140195 0.09214355532971341 1.3903099662560773e-06 62536605.33478058 943.5848805882931 37088 None 157734 QSP_20211104 43432709.71602376 688.7730487115974 0.06084700373336725 9.649357947136192e-07 848281.4450222929 13.452381877014833 70827 8629 156056 ETH_20191017 18931847830.822693 2364260.0752612264 175.05406935469742 0.021858659880625693 7574783773.934067 945848.4615300035 447784 446720 24016 XMR_20210310 4023856564.0708666 73490.5596338749 225.3175851424764 0.004115135607796536 653232353.6718318 11930.447936675198 367377 203221 43863 RLC_20190531 29799934.127689302 3587.481889352287 0.42284510741918263 5.096104771808587e-05 1923341.8724861231 231.80004976335553 24926 3314 786788 DUSK_20200730 18375901.805174105 1654.8451413166679 0.06496545954328298 5.857375709364229e-06 2205530.038224447 198.85363950303557 17435 13333 827596 XRP_20200329 7760076485.941018 1244303.149184705 0.17685014138047248 2.8293809279376855e-05 2638537629.977689 422132.9985732822 945811 211546 34201 DOGE_20210125 1118023169.9593675 34652.58477443931 0.008729032409539577 2.7055211707409574e-07 255272293.7364981 7912.040677646295 193967 188009 60672 PERL_20210212 0.0 0.0 0.07496011190209066 1.572296646608904e-06 15761992.8626188 330.6095454358283 14229 531 461577 STORJ_20191213 15841207.262806876 2198.014676976307 0.11026888366590022 1.5299496106399987e-05 3751526.7937796214 520.5137448238803 82799 7859 159613 DENT_20190213 18756846.313147724 5162.078284852489 0.0010063568484746622 2.7695086248001696e-07 4097542.5507045584 1127.6496455370109 42332 8808 245774 CTXC_20200520 902076.1613446879 92.48879697632512 0.08808659949816647 9.031414382103111e-06 4353198.604164759 446.3282804170815 16436 20059 554748 BCD_20191030 97907008.74771719 10404.348619282453 0.5202719381484873 5.529613175212978e-05 6744639.55529085 716.8414248848975 None None 2032087 ANKR_20200905 53266073.165240005 5080.094613797998 0.009137227841491817 8.714361540902701e-07 19896282.96795505 1897.549301720783 26196 None 5082 UNFI_20210731 38508299.72527481 922.4479611875826 9.051647338570781 0.00021669469334309612 20701450.395715825 495.5887340132787 20860 None 264571 FIL_20201226 1066903272.1972156 43201.76471510516 24.19868044306187 0.0009809527768480973 128403111.37619881 5205.134592226563 42348 None 31616 NANO_20200411 72925259.93235093 10635.694038455373 0.5460000619975223 7.956213994138237e-05 3590787.7566907476 523.2430871023017 None 50332 296838 TRX_20200418 856276371.7335639 120954.52101274372 0.012904272578203275 1.833011805686185e-06 1357117165.0530806 192774.27457968544 505317 72528 64875 SUB_20190224 6319807.609377523 1535.8822624071042 0.01649989846519517 4.009916590911467e-06 102503.75660654454 24.911154157364205 68367 13721 542564 FIO_20210110 15477083.875188407 382.4744678283654 0.0727284746179296 1.8047984500105942e-06 2178946.3878806573 54.071793532896514 None 161 541516 XZC_20200324 31050259.59962854 4819.781459380191 3.1897900136819413 0.0004946539256756163 47062442.42525088 7298.1675275425405 63629 4101 90239 EVX_20210127 6621749.246412222 203.17058453114032 0.30319354862236614 9.308484897195694e-06 168738.40930428062 5.18051568617662 16783 2807 915325 STORJ_20190401 43870513.505975895 10691.052951308193 0.32267865487081815 7.863440102420083e-05 16672180.864709022 4062.8871363939083 83773 7661 204987 VITE_20210508 109394611.03692241 1909.143994087274 0.18140261454216436 3.165297079355666e-06 22487380.300015822 392.3826531698398 32060 2235 146293 VIB_20200224 4248896.594454575 426.9318700316417 0.023245248507978846 2.338535871035742e-06 750452.3076095644 75.49756416861416 31585 1111 None MDA_20210723 10437875.952577513 322.8757067698126 0.5324806919162889 1.6448027769242613e-05 1941935.5436454795 59.98529192300091 None 389 1618266 MTH_20190405 8213695.475007815 1675.8740704468596 0.025537261720760415 5.215407888460219e-06 1273363.3431180026 260.05565111841435 19345 2012 1241512 ARK_20190904 32698413.735631913 3076.969503783251 0.22855166612809302 2.1536561567220722e-05 1446456.2751631502 136.3004486122836 63255 21779 99618 VITE_20200223 8465558.788367724 877.0024589085948 0.016707663151638685 1.730835092798151e-06 3645291.879428001 377.63504394013864 None None 469368 DGB_20210201 396974977.2390252 12011.153404372866 0.028432562138957986 8.574402714263128e-07 36657996.19232202 1105.4945400795061 181864 24551 203281 MTH_20190706 9104505.291064916 828.3751106173731 0.026656910842398046 2.4253840007605853e-06 1323376.3642900672 120.40764512851177 19529 2005 1459879 RVN_20210204 197373273.9072046 5268.28563510056 0.024668092539873277 6.576525186311451e-07 37802324.45749802 1007.8117653158854 36574 13390 133359 TRB_20210310 76646457.37025508 1401.7642454235781 44.93681526630711 0.0008207130769949586 55325552.07395985 1010.4499798210975 15473 None 323814 LOOM_20210508 124387276.63909687 2170.72425060709 0.14950227056297222 2.6086773800614033e-06 11990359.841685439 209.22077223319718 32379 None 275263 WING_20210115 11122229.090901071 284.7720394103566 12.914335597730318 0.00032923574459041546 1577124.2339571957 40.206921025789576 7455 None 329521 AION_20210114 37311880.0332919 1002.0486692431674 0.07663347108903455 2.0505407401399816e-06 2577464.6868653707 68.96720547277728 68040 72534 529270 MTH_20191203 4166155.670662288 570.013782167118 0.012049398405679486 1.6492371913840938e-06 958360.8786622162 131.17371927151706 19288 1965 1471362 AVA_20201201 33897232.4060342 1724.132684896633 0.8735243772600084 4.449651315828674e-05 1788672.7377254565 91.11331301333483 39036 9009 107676 THETA_20190704 120048158.9071706 10012.0179296021 0.11994101804759792 9.994009570309634e-06 4005029.565543116 333.71655884667183 None 4009 256073 HNT_20210131 157675703.94033384 4609.195272587435 2.3433022758838242 6.85775843783847e-05 3243023.9491215367 94.90826292485988 None 2774 66241 SKL_20210202 77133171.10182503 2310.4040196634674 0.13684848279427533 4.097104229057965e-06 18044122.23246573 540.2226462343124 None 118 222285 SNGLS_20201030 4074685.146731995 302.49983539094256 0.004570418202297631 3.398927015482504e-07 191806.85015788575 14.26428514634617 8969 2117 1349251 DOT_20210707 16110114515.520721 471736.37659102085 16.01125441862346 0.0004688261993680601 710889640.5946512 20815.58881373206 494094 27165 19390 XLM_20200318 766829556.3349612 141162.0231102825 0.0376651974112027 6.98875881366149e-06 301301007.7818773 55906.25347617009 281403 106806 82721 THETA_20190131 38483992.73053535 11117.586595884944 0.053925814713545864 1.5581776798930022e-05 1778575.6111242194 513.9165414518384 None 3811 553844 ALPACA_20220112 75033686.55411264 1750.3111190187265 0.4876426451276553 1.1397293005615018e-05 3280168.5602421747 76.66483348497903 72125 None 29947 ELF_20190523 81645990.80509973 10648.905683682682 0.2186186368062189 2.852662204609953e-05 20175737.260545425 2632.6466935348426 88329 32833 928009 FARM_20211202 78146544.92948924 1367.2250318836534 122.69912504090414 0.002146297977257994 5715288.427440672 99.97391576486459 None None 121899 FIO_20210127 15675984.029553395 481.33133571908155 0.07322449171322924 2.2473771862466635e-06 1046026.787622208 32.10424113166387 55348 163 523991 KSM_20210727 1659507250.229132 44341.72227280159 184.35966300032842 0.004941025204285986 214461490.05355388 5747.784577483471 95149 None 62098 KSM_20210114 686429719.8611042 18434.771625070924 76.80689239540249 0.0020551811074476637 176998501.0683186 4736.085058219824 29093 None 180647 BAND_20210314 318163809.23744816 5186.165320024757 14.147994618990943 0.00023059864912824594 209002077.79322878 3406.532028180295 70038 4317 210943 ELF_20190414 61976673.45607003 12217.089430645105 0.18730980699079555 3.691401981990609e-05 11039665.583397875 2175.6385354169406 86740 32322 1025647 STORM_20191022 8630898.555410022 1051.0648710782436 0.0013585337905639152 1.654191493329948e-07 523035.2887706736 63.68634563271952 26202 2543 1742887 SNT_20190131 67450780.57949392 19503.614891357465 0.019285516291725913 5.57647042040569e-06 28476791.24313646 8234.157781067464 108995 5779 291148 DLT_20210519 11405172.798447007 267.75687298070386 0.1404796833613797 3.283702755592141e-06 261950.04651484024 6.123063983248876 15139 2599 6348048 CND_20201101 16538533.36752469 1200.0503839606952 0.008574124451922084 6.220395991695883e-07 27191.725238737446 1.9727180265551296 34107 5911 337093 POLS_20210718 70252057.62621565 2222.501713494659 0.9729525785820569 3.078231350296268e-05 7312505.703488811 231.35335473907796 382765 None 18534 DGB_20201229 352104866.8684938 12984.88382297737 0.02548431838941681 9.386533810443307e-07 26395566.622398462 972.217011108461 178978 23681 262819 BTS_20200320 45586083.70153732 7384.726900956054 0.01682021663525145 2.7247944148810714e-06 28219153.75784091 4571.367552477759 13307 7028 131725 BLZ_20210616 54588517.71663285 1351.6978797199267 0.18574120519477647 4.602011093021014e-06 9108091.42165865 225.6663388975438 62482 None 221752 FUN_20210429 334950637.07653177 6119.172468404263 0.032650766558444615 5.962996759423703e-07 8043065.6898805285 146.89019493230015 2470 234 255008 GRS_20210813 66334588.91414209 1492.0275757835714 0.8487915537265477 1.909011596598746e-05 11419980.938756527 256.8460530657726 41438 106848 8715439 OG_20210909 8884368.327293666 191.56566989838643 6.413564872631998 0.00013861207503421152 3198427.5476085576 69.12546891237234 None None 310886 DUSK_20190908 12046011.102066983 1150.6848970442752 0.10684288107920253 1.020607473900137e-05 1334103.5804245379 127.43910229534767 20406 13325 183070 POLY_20200725 27683362.408175442 2902.144707243039 0.041024215424608046 4.3008005484611995e-06 1055099.1917775692 110.61201623751205 35031 5012 381210 VIBE_20190810 2796655.700065561 235.76564876007657 0.01494485178474486 1.2598914755831262e-06 158425.86265838644 13.355729233725 20395 None 1550581 BCD_20210131 126338097.17854814 3693.1305566481633 0.6734250869246633 1.9708425799273283e-05 3576817.9546513553 104.67898007583558 None None 1665696 ZEN_20210325 515463303.6334741 9752.085128158138 46.72794632459522 0.0008869225394381068 47492331.986158706 901.4310065415951 93954 6887 484882 POWR_20200511 31076622.318685904 3549.145609375962 0.0723475955967477 8.252349456901553e-06 2729228.9371698746 311.3102896045144 81977 12775 203991 CHR_20210324 149184499.96619618 2736.6045580222008 0.3339805284212756 6.117515596136349e-06 82104900.86427721 1503.914057297623 50159 None 163006 ENG_20190906 24994566.90339392 2364.772314403094 0.3188724662010308 3.0168987636878903e-05 972160.6491534087 91.97753244357898 61493 3471 285692 CELO_20211021 2147126118.801769 32393.54612152229 6.570243497230772 9.915754543004919e-05 89161019.88322876 1345.6103846664248 None None 46485 HC_20200310 64325275.962307915 8124.705243097079 1.4483908122789426 0.00018275813763685107 41469371.47238682 5232.610587566042 12771 842 804824 KMD_20200323 40196573.72039887 6894.048643276348 0.3357434791576078 5.756329538444172e-05 1398505.9817107527 239.77416664683582 99810 8396 161250 CELO_20210722 295824425.03834623 9192.531075340961 2.3605170606552366 7.308925128043857e-05 34250821.442944124 1060.5163320911934 None None 78180 FLOW_20210731 1288187080.7326255 30857.907379121865 23.619969797523073 0.000565094540972837 1749168257.2967682 41847.87033660935 77383 None 61740 FIS_20210930 37630995.658377334 905.7818837257939 1.3971657448833124 3.3597493573166344e-05 12293143.060734423 295.611881761053 27315 None 322498 XLM_20200605 1667804001.7085366 170621.0708440546 0.08218119918815302 8.407369327790868e-06 598563672.51652 61234.758202100995 283295 108989 78344 ARPA_20200523 0.0 0.0 0.010588169447660651 1.1566475456621679e-06 1978584.3340257627 216.1397893327198 16550 None 1143848 KNC_20191017 30951706.530516546 3864.966555488236 0.18361815282766336 2.2934612412198956e-05 6060824.892904373 757.0203036920394 98221 6724 165975 GTO_20190213 16104468.629711475 4432.116487740771 0.027258832747691017 7.5016702585311955e-06 10995734.023135664 3026.0419312732115 16250 None 829190 LSK_20190708 227926758.27150452 19952.701717167707 1.705878924395494 0.00014923944681877044 6738137.451020966 589.4884398877009 182908 30486 193702 TRU_20210220 102855526.67705452 1841.0155717664184 0.4607879872304516 8.247664342215784e-06 15375811.28205396 275.2123188059859 19607 None 95211 ATM_20210105 0.0 0.0 7.958750961277219 0.0002543845834062876 2013341.9347700372 64.35220197525733 4800009 None 231684 BCD_20211125 342632173.01825607 5992.952014026025 1.8247048895930267 3.190102248005693e-05 2889237.859140606 50.51208138935448 35799 None 800580 TROY_20210702 15289830.98977272 455.0450932046818 0.008051465843844705 2.393750348941979e-07 2859163.8428353956 85.00470074901713 59444 None 430405 INJ_20210401 173305427.49470878 2946.514347805715 12.830632309064773 0.00021835052460802287 23420564.62408332 398.56902209501845 56256 2785 96980 NANO_20200224 130404092.49395499 13107.244498553058 0.9782352178081749 9.830834811348305e-05 3269699.707596018 328.5904772485251 97799 49024 300765 LINK_20201030 4403972775.114427 326944.2006271401 11.27095007639395 0.0008381907154809854 932003045.4997097 69310.59886193699 96132 23845 33256 LSK_20201106 144888860.6599976 9324.395213067333 1.0215503423931862 6.556541930422518e-05 4253680.992192437 273.01089947867257 177295 31047 211425 ONE_20210219 267806863.12787434 5181.306311168962 0.028195734783658798 5.453017707049738e-07 40334424.19589579 780.0624138064553 83604 3146 144448 HBAR_20211111 6192845044.370635 95361.86746449716 0.4085805744235429 6.290283034576863e-06 232721680.37131336 3582.855694701723 167019 13750 35786 SXP_20210711 166142745.66265765 4926.976467369267 1.9218402749229118 5.7018525014018895e-05 69291553.497894 2055.7911226719275 None None 60641 REN_20200223 54443036.13558704 5640.1340781119 0.06237221376931807 6.4614671380213595e-06 1217640.9568819648 126.14185954502668 10913 869 519713 WTC_20200223 15365257.46239096 1591.7942566018496 0.526651390606926 5.455925309792345e-05 11844389.340403173 1227.0375571755017 55057 19433 899275 BQX_20201130 34017209.432149634 1875.2860999813176 0.15258564399086155 8.409849556583968e-06 211465.59863641558 11.655053676161906 16549 84 205091 MANA_20190512 70410000.07316656 9643.14716046417 0.05298226859012068 7.274077797320633e-06 15583282.387127118 2139.4706462742056 44437 6213 121517 CHZ_20200621 70847435.22063506 7572.5802842481135 0.013329574487646564 1.4246575961909323e-06 7188032.724219007 768.2529874992014 25624 None 373448 WAVES_20200701 112565883.7980567 12304.69409657721 1.1247911664773595 0.00012297906576141105 25097811.72401562 2744.069770872758 228 56865 124642 BTG_20210805 953273769.3489633 23909.99136821191 54.42683096906783 0.0013685013350028916 44468681.96276246 1118.1148993672837 101183 None 198666 STORJ_20190325 36684645.61023223 9186.172563125125 0.2695728510051875 6.755523159741533e-05 2975719.8317237925 745.7184269541079 83437 7654 210414 CELR_20191024 13140289.637812952 1761.2481292349873 0.0038981892749951497 5.22350286315779e-07 5721903.280626253 766.7246524118657 18461 None 557601 AMB_20191127 3307298.899747785 461.4134707376205 0.02293378725026153 3.2011923191066547e-06 1137847.8563709687 158.82548217522074 19210 5563 698581 XVG_20200421 42680990.5376426 6233.826722675775 0.002627633192205134 3.837823303681683e-07 1534364.3470831597 224.10354934785613 293639 52038 294741 KNC_20210110 241972312.69904697 5979.488332877771 1.195218916146385 2.9670316204466872e-05 107843962.01733088 2677.1367241353378 None 9342 138877 OAX_20210421 22920078.20472192 405.69726453957014 0.40269801904512814 7.142070854458955e-06 1045752.9163150286 18.54700314217843 13741 None 1298527 MIR_20211207 296609310.73531246 6213.759998811874 2.1734200069733163 4.306441884450087e-05 29073228.985326286 576.0606353899022 80467 None 15195 LTO_20210703 46316245.247332655 1370.3086629764457 0.1636539210579836 4.833521777081692e-06 2653921.2575177397 78.38361653630687 10783 4286 318165 ZEC_20200526 423741478.5149843 47628.301797145046 45.87302537837059 0.0051616708890498296 172127123.3855015 19367.886784588383 72200 15807 146242 JUV_20211028 34513109.740198635 589.6980904781101 12.732394895584639 0.0002175807660641488 13895269.26613305 237.4528402854746 2737217 None 34479 UTK_20210304 157727635.32405815 3102.2653601225516 0.34950858633436077 6.898242771619145e-06 9497055.879551275 187.4431691646741 63584 3465 76416 CTXC_20211028 35343080.7664523 603.9378480280311 0.1904021513459766 3.251147195421342e-06 6177582.697701279 105.4832128741035 21168 20660 771134 VITE_20200407 5358612.295847367 736.7484632920896 0.010913444338267233 1.4977304046266528e-06 5152524.074058626 707.1179113663457 None None 524494 YGG_20211221 463342012.84391123 9821.004467492825 5.2731181273385275 0.00011184728419994544 42743702.07681372 906.6299822029879 None None 43136 STX_20200403 55357434.87010459 8157.523379278267 0.09392360973389917 1.3780597715405953e-05 1158076.1745845957 169.9144861548756 35804 None 52879 MTL_20200418 16190705.720354896 2299.8394173671086 0.2504988048297959 3.558257652886836e-05 2885240.6766387336 409.83946909630174 None None 490866 PERP_20210727 441060928.27933353 11780.97968889784 10.08488722949679 0.00026946629405874957 42469528.42383027 1134.7778288804232 None None 152304 MTL_20191024 14489025.181775695 1941.449415464753 0.2738744249619202 3.668374837711212e-05 2593972.7549678027 347.44625699735883 34599 None 240997 PERL_20210506 0.0 0.0 0.15383489564412206 2.6834242866916454e-06 9967796.511112336 173.8736008544958 18942 649 314180 BQX_20191022 7013424.635004425 853.9756206961416 0.049798910216050825 6.0636646823704825e-06 224141.5286017131 27.29214484691032 59883 5730 349258 EOS_20200629 2226039892.2902737 244153.26939994094 2.369188242159714 0.0002595869228567518 931923430.5839276 102108.87061589652 190139 71672 89691 QSP_20191026 0.0 0.0 0.01089334467738998 1.261211174808613e-06 234345.92044346372 27.1321345635528 56001 8465 465255 NXS_20191216 11746280.28523987 1650.630475707016 0.19673356729952873 2.764558762975429e-05 105016.27146192275 14.757199674168694 22568 3542 663769 EOS_20190613 6671459590.027204 821303.7222483488 6.413981510940144 0.0007887928717586949 2800067949.684813 344352.978783006 1117 66154 114129 HOT_20200318 54856667.211986445 10101.711024847153 0.0003029691389904731 5.632816276071884e-08 4556875.90406337 847.216480397202 25129 6920 515134 POWR_20210821 133931043.84079024 2725.603419361905 0.3117738418488126 6.338835206982433e-06 9910801.780433726 201.50163619468108 92074 14084 202845 VET_20190325 318491392.8002217 79814.18106206236 0.005743756597457568 1.439403358497299e-06 12881981.082882466 3228.264728872275 105640 54895 762391 RDN_20191108 8588687.712368956 931.5551316710191 0.16974269895716376 1.841226277410509e-05 1794609.0259194148 194.66411907558813 25417 4373 2354098 WRX_20210114 20043749.026405625 537.959878833089 0.08418680012553104 2.2524440260673493e-06 1708245.7509708658 45.70464646585817 49136 None 5719 ONT_20210506 1738729315.2336583 30372.0456399298 2.1456080817990273 3.742698828060978e-05 962727159.344817 16793.36427555376 130353 18709 138836 LUN_20200301 2371961.4009921947 276.58946386615264 0.8764257545844651 0.00010231337044257315 3661797.1657170537 427.475810634073 29809 2151 1955482 TROY_20201015 6474616.81166749 567.3476533362408 0.003411126778868306 2.9860438141715277e-07 1646994.8669861017 144.17519937994595 9967 None 421740 IDEX_20210117 19790412.37077836 544.9380766458219 0.034878646681837745 9.636303714984568e-07 1900085.5200748339 52.49573276998708 44585 1942 441014 MLN_20211002 209085047.65013024 4342.045513176924 143.85534575424364 0.002986922945745936 37207019.31072941 772.5434125464288 29312 502 115672 NBS_20201101 0.0 0.0 0.004900834403441158 3.551720874557009e-07 5402822.567605479 391.5520524712721 None None 802433 STORM_20200306 10396171.443769194 1148.2812370320046 0.0013932728876349793 1.5380343714960917e-07 2187508.039318476 241.47908010374553 26112 2525 826076 CVC_20190929 24503048.981967263 2985.083304924203 0.0365717148984586 4.45534821630478e-06 3603770.70579972 439.0292725029671 87976 8145 118286 WABI_20200523 6972450.184810078 761.667768293424 0.11798377075088745 1.2888501599975107e-05 3610255.354641943 394.38290214394914 37 7691 1504785 CKB_20210511 965452459.5791936 17294.473055482977 0.03624020728202048 6.481676052932039e-07 739707135.3871516 13229.896805806986 43223 3737 113010 SNM_20190405 12793885.115876203 2610.3890010546734 0.03194248214362108 6.523529232322114e-06 2179401.6608382002 445.09347706682775 31623 10060 None GTO_20190813 10652986.87160974 935.8090469423548 0.01588599007908413 1.3956831643145507e-06 5097541.164078809 447.85073808351285 17434 None 944506 DLT_20190522 10269111.020258924 1290.0247245199723 0.1258356837201074 1.5813660099138455e-05 1959685.5341657815 246.2719637414293 15139 2675 2919270 XMR_20190528 1666471713.5466678 188961.11546920077 97.95294407087563 0.011108642416178451 263997495.50271976 29939.41431902667 317726 157975 116319 BEAM_20200418 16391005.201921444 2320.944490998745 0.2727315425552352 3.874223801291145e-05 109954568.63268758 15619.337714528758 14940 1479 307022 BADGER_20210723 71940312.4220916 2222.1956108646555 7.788015874027459 0.00024055913446289896 7706769.871808075 238.0495776914952 35973 None None TOMO_20210513 181122323.250053 3511.606763437244 2.168194133571285 4.3223586829423036e-05 20783810.818701874 414.33137266577097 47955 2146 78743 WAN_20210711 101506324.81486322 3010.222386828215 0.576408788700226 1.7095372484344484e-05 2240724.7995876693 66.4563515248225 None 16640 187166 DASH_20211207 1449767823.6750028 28704.195130484306 138.50553190478115 0.0027422941449813812 327748208.96695876 6489.1414957787665 419970 43451 67368 TCT_20201130 4586799.23707444 252.8590968006119 0.007926200869935765 4.362308217381226e-07 805911.4512250564 44.35459312538447 None None 642162 ONT_20200330 221356500.56540617 37434.18242013648 0.3468621633780302 5.8763453290313494e-05 65770124.20240155 11142.40764638769 84178 16533 298289 SNM_20210111 4714451.027887939 122.52746651429686 0.0103846328559611 2.6999831004911427e-07 422124.62170847424 10.975153004661664 28712 9493 None QKC_20190915 29937057.37301957 2892.038501808226 0.007870673220692119 7.605126721165513e-07 4813908.537472482 465.14933888157765 None 9238 312593 WRX_20210212 41862382.170976475 877.9222573915208 0.1765830017332102 3.6983697430896606e-06 21322483.764770143 446.5799540676593 58279 None 4666 LINK_20210210 11265069575.117748 242270.05580238678 27.66886466690488 0.0005940771652257091 2516907959.814959 54040.43728940452 147299 35513 38996 TRB_20211111 129769263.20526701 2000.6980165848545 63.451454765596424 0.0009770709869911297 47425022.56573056 730.2844950924491 None None 513298 QLC_20200425 2374266.839892594 316.8131496580982 0.009893619768009607 1.3199828283635627e-06 1122215.286450708 149.7232501931939 24408 5652 940522 ZRX_20190605 183454968.72904235 23956.46005082729 0.30788002328443237 4.0158552378985784e-05 30348210.184138175 3958.4906330939825 150604 15918 209456 ATOM_20210724 3151169181.35981 94271.37209454422 11.412881822006963 0.0003413212020810514 453933106.13546985 13575.624094502213 None 32590 47947 LINK_20200625 1793941095.60052 192810.2318993296 4.705963361268474 0.0005062943353686206 475609777.2710265 51168.80808297362 60144 16438 86438 SAND_20211028 685517880.5010875 11712.899479737414 0.767726550989341 1.3119490281437538e-05 136826367.66656107 2338.1921577840158 221132 None 12711 THETA_20210310 5370006053.620484 98254.34099301317 5.386515962080057 9.837777918445e-05 365079372.1637125 6667.7047116092 93972 5259 39899 CELR_20190605 45898318.594031945 5984.986792334633 0.016278790720259156 2.1192340620791875e-06 36935445.48997998 4808.394894039682 14587 None 333919 VITE_20210201 13838147.522240888 418.6533690303428 0.02438780074961731 7.356365057115707e-07 15083407.301732048 454.977681488753 None None 688715 NAS_20210310 31304100.502502788 572.7672808075828 0.689148831559928 1.2586416164678711e-05 12242963.488581985 223.6019659315922 23979 4844 561188 DLT_20191011 3519583.463024479 411.4846590566496 0.043908243618279115 5.129260449048312e-06 262532.44634862116 30.6684390602062 14974 2640 6019106 BNB_20190804 4311679119.679633 399600.2709662792 27.72111323933165 0.0025686887397497428 133399579.78187115 12361.047534947458 1018873 55211 791 CKB_20211104 588910717.998262 9363.158498876599 0.020720129232981728 3.2854979139982994e-07 27555588.650898717 436.93660407973573 63136 10876 120789 BNT_20191022 23376203.668611288 2844.427618763875 0.3351184494347208 4.077737286355843e-05 5630125.781257876 685.076392058823 770 5091 174130 VIB_20190908 3021724.4655216723 288.64090065516643 0.016551833920097576 1.5810419142217903e-06 369506.2643887101 35.29547809543422 32311 1119 4329648 ARDR_20200313 26496286.583815522 5505.711108485031 0.02681341695247408 5.613671666312644e-06 1874975.5326489962 392.5459049593431 64625 6383 1029538 ORN_20210916 352708022.7934251 7318.638132062369 11.562338401506418 0.0002398507562160998 84663913.19544928 1756.279992764876 None None 87022 ARDR_20200127 43375957.10028727 5053.623248795976 0.04363700002873887 5.0777741817900574e-06 2087491.3807746915 242.90876620817386 65168 6421 1194906 UMA_20210318 1376073904.175659 23382.135287795252 24.0208852406948 0.00040786525231653625 72995401.72913352 1239.4334199541267 None None 124500 BRD_20210106 4675174.057190658 137.3624257280202 0.06199179808456294 1.817593157053912e-06 282851.97265851137 8.293190806661453 None None None RSR_20210930 371338216.1044243 8938.148539462403 0.02830657788589968 6.806852172569366e-07 40046923.01489469 963.0040269348161 None None 126188 CTXC_20210823 39923080.738879226 809.2398802889184 0.21870742811238705 4.4379528973546165e-06 10168324.629634073 206.33293592633575 20433 20613 1047878 VET_20210401 5721910618.233825 97279.46321961089 0.08792823315713097 1.4963546125588824e-06 813594382.1244336 13845.67462271539 221295 111833 38627 RCN_20210219 48552282.27425744 939.3495134183635 0.09455369641456848 1.8288757737404543e-06 1840989.2340521626 35.60876769018867 None 1138 1423891 NKN_20210809 176176507.58623278 4004.71537177685 0.27108377400064326 6.162626159256942e-06 11824298.000476256 268.8052003157209 29005 3330 166528 ATOM_20210813 3893577606.4399843 87579.13194282491 14.033410781993673 0.00031565793432171576 225757386.1093553 5078.032081023796 169894 33264 54848 ZEN_20190401 41847254.072890215 10197.993444940523 6.816655046170691 0.0016611684053251716 322544.48925704136 78.60170585667696 None 1537 329639 REP_20190730 123472748.23162697 12980.808293988392 11.221164406037653 0.0011793978980692236 6764862.197171422 711.0192817225845 126132 10046 220680 ZIL_20201030 198641471.94410294 14746.838950310228 0.01750877105921665 1.3020809463129964e-06 20340872.35542567 1512.6968212564827 97490 12253 92216 ZEC_20200422 379361746.045352 55395.27921033601 42.06870424798092 0.006146447617610659 787342082.9651746 115034.6072358094 72509 15719 144144 RUNE_20210107 349129084.5680757 9525.213954961284 1.589064510605362 4.307458517137689e-05 39533976.13826886 1071.6428508508516 26441 2037 287788 LSK_20190515 249586169.17817026 31248.791428055716 1.8897919869839368 0.00023645568185794223 4532069.087131194 567.064255540214 183533 30401 170512 DLT_20190302 7413709.665691898 1938.0629837917031 0.09167980205974426 2.3999891247676573e-05 459596.8282873215 120.313020412989 14535 2693 947216 REN_20190626 49095037.20238081 4151.985695706529 0.06292065756656968 5.317443545566098e-06 859704.6452958205 72.65389609739704 6500 781 1312648 ALPHA_20211111 491104552.5690279 7562.180914535875 1.105574862045374 1.7020286853974167e-05 41842629.07296774 644.1658308228806 None None 56040 VIA_20190528 14338097.252035055 1629.2210679364107 0.6195639442876844 7.040031973726552e-05 664620.8627435679 75.52008420212151 41251 2238 1806760 WABI_20200229 7381861.695143424 843.3730209933854 0.12444080990759056 1.4282053743299128e-05 491623.7945497687 56.42359174983286 36905 7782 3929057 CELR_20200913 29545923.277382318 2833.5187680397858 0.007471672366635145 7.155811484022558e-07 6632732.1133136265 635.2336973291235 None None 306281 SNT_20191024 40918399.66377503 5482.991274194337 0.011485328399690223 1.538590977983702e-06 21057332.16036715 2820.8702576776814 110928 5684 373858 XTZ_20210105 1709257083.582633 54632.7750744994 2.267126787840954 7.246389618925879e-05 237536060.4868784 7592.336044301633 78396 31593 186076 DOGE_20200501 303753871.59630835 35239.47783805456 0.0024423116160898714 2.833405402094905e-07 235092727.59249502 27273.874470623243 140296 153876 106341 TRX_20190805 1472925244.118085 134508.502229226 0.022266668814671414 2.0334961283269353e-06 601631811.9576448 54943.82525185294 451565 71279 73072 LSK_20200322 142192881.28712875 23077.11014819377 1.0301649700949456 0.0001672741512578522 6243492.892664936 1013.7939114826478 177963 31302 164419 DOCK_20201231 11169770.084855782 386.80453762924407 0.02009236004821878 6.967270504200368e-07 12519024.45638537 434.1124169933902 43104 14867 237682 XEM_20211216 1167996573.9980206 23941.03165102347 0.12980308664875156 2.660034613594501e-06 127575608.2956445 2614.3872436183865 376956 22518 308464 DNT_20190708 9790477.199759897 856.5235084909242 0.015130843462617354 1.3229355423153648e-06 656824.5172621373 57.428159976476515 60654 6362 784792 FTM_20191127 25253715.49215446 3524.4830037993047 0.011957050853642456 1.6707187160462513e-06 4882012.357291681 682.1472549656003 19951 2217 656705 NULS_20190329 30179271.99683339 7497.323332186045 0.7542444890201061 0.00018733929652273084 41567161.49865797 10324.454347319392 5 None 738002 VITE_20200107 5799902.766157584 747.2493854733601 0.011411982152297993 1.4712571858291697e-06 3437510.7276060185 443.17124684048053 None None 589611 LRC_20201228 203143344.87073743 7673.116183084221 0.1587486409731418 6.036457949849638e-06 33144650.28894887 1260.3338617907398 44132 7282 249793 STMX_20210115 22362007.37426592 572.5537923408505 0.002680183264353951 6.832810917763562e-08 3074525.7098720274 78.38140442393285 22048 156 199234 BAND_20200316 5549445.3769926615 1027.183888797851 0.3046350694571905 5.674795728097501e-05 2137803.83621006 398.2338638441008 8595 1059 702901 DOCK_20200629 3776494.7795729553 414.0818703578358 0.006740512138039996 7.390749138832348e-07 423172.70718947356 46.39949097617659 42012 14970 320646 GTO_20190411 23113718.67383156 4355.057276778871 0.03772562134399861 7.107839765830957e-06 25283731.391523466 4763.6779729765185 16895 None 779658 GVT_20200330 2630848.7508411556 444.90978040952604 0.5924867778587537 0.0001003758056420992 246091.61895491573 41.6914696453478 20580 5589 160290 ASR_20210711 6245151.424982233 185.61256786438568 5.043759007761044 0.00014958991023259006 2523427.4111434943 74.84086359609357 1982642 None 120026 RCN_20190719 9007186.318034453 839.2523206330508 0.017582985836477587 1.647953179058779e-06 375381.1292091415 35.18233654920613 None 1125 2034448 PERL_20210111 0.0 0.0 0.0291952713328388 7.590710264510633e-07 3029342.63725526 78.76228307379566 None 504 591773 ZEN_20190716 49540346.93943627 4522.654668180138 7.164873418486618 0.0006551884659855313 638610.4634081675 58.397432228619074 None 1711 256228 FORTH_20211007 119289409.36812758 2148.7482629725414 13.753668266136437 0.0002479264250813275 11580784.855939982 208.7575862243567 33010 None 177738 ADA_20211225 44858561786.50875 882542.4885556027 1.397481594409191 2.7482023764105754e-05 1148430340.8919153 22584.33316479901 766096 675304 8356 NKN_20200430 10430112.39300567 1194.6730152007347 0.016049402237771973 1.8305878665050334e-06 1820473.0099903932 207.6423628753754 12263 997 316185 CND_20190224 20803515.99573526 5053.544053441208 0.012631588158607081 3.0684374332460574e-06 312749.978909368 75.97253254956051 36776 6233 644110 TNT_20200526 15945723.987417774 1794.2330306000597 0.03720832590380937 4.187305827882275e-06 3455213.4320620513 388.8386534253968 17969 2602 456220 CMT_20200312 8851659.700068008 1116.019251011316 0.011108108841725896 1.399326212577465e-06 7177985.192721831 904.2351832148547 286817 1639 953076 THETA_20201111 642446285.754017 42002.08867784004 0.6406652545190445 4.1938790616924695e-05 22085725.380457506 1445.7606461727871 74691 4507 75769 LRC_20200113 22585551.533118587 2770.526157549052 0.0236157992674444 2.8916962755897767e-06 2169919.2879349813 265.7012558495985 33892 6837 1058807 RVN_20210107 124298423.82638611 3383.5411439355107 0.015845167458453376 4.2976162800213196e-07 22137478.160744164 600.4252513688288 34708 10599 220085 AION_20200425 35134408.4715685 4685.36302003202 0.085445074210452 1.139987520955004e-05 20902281.064941447 2788.7318015357914 492 72543 308963 STX_20200530 108263805.48016581 11487.31524631864 0.15734477897273064 1.678486308683324e-05 3246722.4601886347 346.34636326037395 40300 None 93144 COS_20190929 20874733.17138507 2548.607595881688 0.015865309610590593 1.936758986416436e-06 884111.4764748109 107.92798180966304 None None 303115 XLM_20190902 1221656609.2960012 125453.60127920975 0.06216639578652437 6.3832512291453775e-06 87218207.97398505 8955.57360548284 275800 103487 66255 EOS_20190726 4658143174.633471 470336.2624776468 4.565009733935073 0.00046164142833990233 3533969608.9059443 357376.4072916541 1228 67466 92954 LTC_20190616 8569206112.50246 971849.6334555523 137.67733610703365 0.015614243241919588 4847718036.566606 549788.7359786357 447064 204038 158874 NAV_20210707 23222728.593081053 679.86562685772 0.32669489070169216 9.564399294716147e-06 355549.87873791705 10.409164961635353 53075 14120 770142 VIBE_20191102 3515168.2426383025 380.0077293945509 0.01877684630780824 2.0307456384018897e-06 79562.29745238613 8.60478835924 20103 None 1037797 GTO_20190729 14547752.852592083 1525.7502570510064 0.02194955202983252 2.3024870648201876e-06 2964324.88818823 310.9548523678926 17458 None 852349 ZIL_20200520 102487446.16005994 10509.410403510215 0.009722620005453703 9.959488980471488e-07 33946627.117441095 3477.3657564595137 73168 10722 162490 GLM_20210610 303473653.3605088 8084.885828253995 0.30144009074809963 8.048349643144146e-06 8722563.656668197 232.8895334367204 158099 20987 141932 ELF_20200719 46436213.25621311 5065.4872168773945 0.10065725913526186 1.0980181709096688e-05 23310167.45398368 2542.78604954135 81367 33362 495562 REP_20200109 104737223.77544446 13014.073563242719 9.508667152778392 0.0011818111927941975 8171692.255782179 1015.641542267172 128136 10087 330161 SKL_20210124 66835043.625038214 2087.5521068842563 0.11833201115106554 3.692316772465291e-06 19865212.5422769 619.8547353750134 11307 103 245973 BEL_20210201 36003554.57428516 1089.1779926354375 1.6175436122733864 4.879177679797708e-05 16236426.581488403 489.7574913898711 None None 421105 SKY_20210602 30152831.41322026 821.7810839222074 1.5273330910945713 4.164607212215673e-05 721382.5332010931 19.670070124537506 None 4386 327198 RCN_20200127 25148497.107961494 2930.481855929396 0.04967168347373761 5.782819564155937e-06 3116803.5717529785 362.8609181706882 None 1139 766343 RIF_20210212 215215232.84898636 4514.163337290563 0.30765813387289875 6.446675332931005e-06 14367487.467283387 301.0566497481124 42545 3070 663041 ENJ_20200301 89840934.27857016 10476.163665626938 0.09704800336722927 1.134678408936228e-05 6243557.778394827 729.9923708149869 53565 15126 23333 BNB_20210618 54283380385.86557 1428750.1947232485 353.2126444369965 0.00925387304429828 1476059646.4892137 38671.51640676732 None 507062 132 NAV_20210110 11763577.499860661 290.81803163514866 0.1663179833488925 4.125977993774498e-06 1592360.0341422833 39.50289876504097 None 13631 819464 ONG_20200229 0.0 0.0 0.130476014500042 1.4935498111735596e-05 7589936.8057528 868.8147569872082 84519 16471 403200 BCPT_20190813 4442053.763682798 390.30431513962816 0.037898461148232386 3.3299126815702914e-06 9528725.436537176 837.2325078377612 10954 3053 1188214 NAV_20210104 9157028.013290044 271.8842644456824 0.13002659500739808 3.885976724734554e-06 144317.02622186084 4.3130607615245875 48252 13637 819464 DOCK_20190729 4849635.747743978 508.54862127351544 0.008876754983004942 9.311631279840283e-07 1287646.0074827794 135.07283758078046 182 15217 260296 POA_20210624 7229994.553497703 214.45955709137593 0.02503267986728367 7.42531325220806e-07 50726.07632464266 1.50466114200644 19815 None 235218 EOS_20190614 6740363659.21438 819742.7219224175 6.466501759965549 0.0007860002938977999 2844913695.4431167 345797.9420304184 1119 66182 114129 MIR_20211104 296609310.73531246 6213.759998811874 3.7861322572814045 6.004588740480915e-05 253747894.98963833 4024.2961672700762 73040 None 14119 QKC_20211221 132566479.88528305 2809.881157122166 0.019928225702157087 4.228385728887548e-07 7337124.529137136 155.67965313999875 78540 9623 488675 PPT_20210207 60085020.86023769 1531.9754194706368 1.6690098398591806 4.2443075256924844e-05 5819438.750476262 147.98886797477982 23625 None 736934 OXT_20210125 0.0 0.0 0.29638233861450247 9.183889207284275e-06 17967186.243735276 556.7425123928514 55176 1867 171899 MDA_20191127 11409420.918260058 1591.3870487455351 0.5804808091071356 8.107282126431945e-05 1907741.7723145015 266.44465294766337 None 368 1646523 HBAR_20210212 956149869.92508 20051.978884331995 0.1343896207275018 2.810230416476812e-06 279894653.5537568 5852.895964494985 50434 8352 141603 CDT_20200306 4035019.450475012 445.6772525444041 0.005984910736051765 6.606744812215988e-07 78585.0274183395 8.675003606761813 19260 291 235568 MATIC_20200414 33178189.29746607 4840.033427487489 0.012029996719812286 1.7568664320446336e-06 11129979.293923346 1625.427459896338 33997 1619 187719 IOST_20190810 103871957.44867848 8759.42117156608 0.008657043111124588 7.298310829631229e-07 85231029.27304311 7185.39270255824 196878 50581 101612 ADA_20200414 1031622714.6329374 150547.2816799863 0.033164582986299866 4.8382541738048325e-06 127857134.59532972 18652.5883760433 155094 77812 49277 CVC_20210805 183688074.9394382 4607.263942853801 0.2736780153640195 6.8809425835261435e-06 30547560.647479374 768.041271428055 103740 9859 242818 POLY_20190318 48209475.76912507 12106.125375144762 0.09993652266477283 2.5096803741541832e-05 5280562.030926145 1326.0940585228661 33290 5002 275079 REP_20200129 160419706.8130514 17218.38738362977 14.599072211480232 0.0015613318301237733 23968627.734806437 2563.380800138283 129217 10103 352265 AMB_20210617 4672064.314493401 122.29996869138347 0.03205199161285833 8.369380352379324e-07 542570.5287764841 14.167541219186699 None 5621 1325034 STRAX_20210111 52275187.56384785 1356.03468525474 0.5220653887329102 1.3573592311653667e-05 3043669.942629916 79.13479005525281 144202 10283 230712 RDN_20190616 17445043.762672517 1978.2494141746486 0.34515001352889535 3.914410620207143e-05 673708.8551574037 76.40657668219843 25644 4429 754056 INJ_20210804 214892399.07891223 5592.912675635122 6.5762277189964236 0.00017121546563870715 11345451.332668705 295.38465147624237 78121 3816 150337 PPT_20200106 12908312.405543007 1757.9380266511355 0.3565194731371279 4.853997717625434e-05 3739104.704281825 509.0775418476407 23708 None 813674 GVT_20190812 6042649.518017704 523.2501803639713 1.3629518920451607 0.00011798251747452109 383974.48720206175 33.23835339346405 21342 5723 213598 OST_20210220 14335839.936131295 256.7101023494853 0.02077044592490056 3.712491424788865e-07 1091664.0989548361 19.512309079801785 None 739 607091 FRONT_20210620 31217900.518320173 877.4542304318284 0.7059557117205455 1.9828203166349406e-05 9851364.880068908 276.6956355261695 65722 None 199058 KMD_20210421 346529656.4724679 6133.754538575445 2.7411139034984333 4.861516271013606e-05 22910687.02256175 406.33363538133574 106749 8999 203738 ATM_20210519 90696846.32445161 2125.6118629919424 48.58619774032038 0.0011346143001517409 132315968.16303988 3089.9225829235993 4958081 None 113965 BTS_20210617 135456639.84628758 3539.252968074967 0.04998038528194417 1.305902960204718e-06 14907586.182760645 389.51002109635607 6102 7176 121525 QLC_20191216 3314497.789990831 465.76541091882314 0.013800500827175644 1.940689317062923e-06 181277.20582884963 25.492026788354153 24532 5703 940522 BAR_20210613 48088645.3621292 1341.0766471812228 16.270697606908925 0.00045598682107491083 6267825.450319721 175.65600880752137 None None 34079 YOYO_20201231 1918665.710026288 66.44774529210385 0.010676272084922755 3.7026865977244947e-07 268112.9189412477 9.298546381583103 9286 None 2126221 SUN_20210430 0.0 0.0 0.0004603106028377965 8.7e-09 42.97821972603784 0.000812300453892189 52 None None MATIC_20200903 89068305.51251909 7807.319338264851 0.023544650333135065 2.0633478978429128e-06 23511217.29693434 2060.417976014081 51156 2249 59373 PPT_20200105 12922667.14807933 1757.4162397278258 0.3556296115076293 4.836337895303426e-05 3498841.2637562314 475.820292967718 23712 None 813674 QNT_20210828 2586891040.3213987 52738.43800043229 196.22080521243186 0.004000053295239229 48801152.01098978 994.8344096422173 41462 6661 134103 ALICE_20210418 206409272.4725619 3424.368190758842 11.870649130039576 0.00019695637683676283 37990909.16943344 630.3405770633888 51587 None 73832 WABI_20210711 9296177.42462589 275.7600140562909 0.15694879511502807 4.658335763594881e-06 491415.6179369683 14.585514633273313 45479 7888 437012 QTUM_20200610 174454902.11691573 17846.662572482695 1.8090564695365074 0.00018516955855136215 263130169.10758674 26933.209701121406 179322 15081 120132 RDN_20210602 28893258.2024272 787.4528503888532 0.4324596592633875 1.1791077223835797e-05 652832.9235879434 17.799587201727288 None 4650 821866 CHZ_20191017 24998631.175505023 3122.3369405444964 0.006935069463073395 8.661923694051501e-07 5110439.437698879 638.2955021304402 12193 None 374824 IOTX_20190618 44657759.10254572 4790.782939585784 0.012567819202483363 1.3488637946148056e-06 4353654.666834838 467.2638156020665 19494 1735 766707 GVT_20210111 10842908.992613733 281.3501382998447 2.4425826288660106 6.36882628728523e-05 1544903.0319824133 40.28203150680797 20910 5448 383832 STORM_20200417 8280043.727588434 1166.1967163373565 0.0010796965847497649 1.5230880525987415e-07 281529.58272495307 39.71433733865744 26047 2511 799916 KMD_20210202 85236599.1836131 2554.503987601025 0.685735764555641 2.053023054118027e-05 4387004.9714033725 131.34246178129325 96944 8451 251504 PNT_20210204 27561984.611201152 734.9413183119185 0.8149217110612582 2.1729916952531982e-05 19589476.165400796 522.3540917365073 None 145 785804 SNM_20200719 4292202.988303999 468.23359216 0.009808474390525838 1.07e-06 140522.6204192803 15.32951995 29261 9591 None FET_20200914 52528649.198007815 5088.797239123209 0.07679966204318903 7.43663053650429e-06 5951327.251823377 576.2762595068592 24689 663 239426 BLZ_20190726 7592318.306356421 767.0207359656101 0.03636455270703884 3.6790203967439987e-06 224884.69359386087 22.751699472634876 36559 None 1258413 PPT_20190110 55760541.16136383 14017.868087068167 1.5078621985276095 0.0003791479700379943 972939.3963837167 244.6430432894251 23398 None 475679 DNT_20210624 95901019.07427259 2844.5130528283603 0.1277832272674996 3.7882804503866322e-06 13516403.461367236 400.7092956342864 69598 10230 205349 ALGO_20210128 434102334.2823057 14350.076194357443 0.5431437503530253 1.7862387835601216e-05 282498518.18070406 9290.538814902282 40122 2056 270468 FIL_20210108 985030080.1124637 25146.531125670368 22.141311677022408 0.0005610734027069512 150413994.76491714 3811.5759846819933 43327 None 31509 DASH_20201231 1005898537.7589117 34886.139822619196 101.64053061538752 0.0035250531038583384 469290927.54166305 16275.745814464042 325534 35768 87240 NANO_20200801 123873576.46715541 10929.725720697064 0.9296514072372201 8.201462463759343e-05 5718539.6797559215 504.4943531083037 98375 52224 206473 MTL_20200229 18746921.99352447 2144.9206485523086 0.2902424668205526 3.322385215209381e-05 6128001.863964118 701.4680868254052 34730 None 562991 LUN_20191012 2530422.4300881387 306.1022795139265 0.9360300419508709 0.0001132304733501346 319714.79546398355 38.67552963575545 None 2181 1767204 ALGO_20200501 157917696.89937764 18250.17728464004 0.21128096974893443 2.449493200475479e-05 94694000.2189007 10978.38153325641 17151 856 285708 AAVE_20210930 3490644070.926612 83976.28898644536 264.8705569404027 0.006372199659743185 203741940.33261293 4901.580371407659 302841 13187 14216 XZC_20190511 47528716.77546906 7458.626228948845 6.372806861614324 0.0010003146951718582 4938581.964253772 775.189993895773 60338 3968 353652 TNB_20200531 5856598.755469866 604.3358312544741 0.0017780628513469183 1.839251252483612e-07 612272.1581107047 63.33422537976639 14844 1435 2815656 FUEL_20200320 1408031.5622549308 227.68172826453846 0.0014215891954575891 2.3e-07 59517.19088781417 9.6293317 1 1469 None GXS_20200109 24783109.949175734 3079.764724695906 0.38044631235210097 4.741186395905167e-05 5828764.419073904 726.3904964092015 None None 1062662 STORJ_20201231 41693932.82255349 1443.8437214780674 0.2926684470685871 1.014863477400139e-05 10808833.220238099 374.80945344129526 82735 8548 91927 BCD_20200223 136816874.2221831 14181.407455045306 0.7300649393016446 7.56312840099905e-05 8578621.011745982 888.7046716338194 29402 None 1333183 WAN_20191030 23764545.518970545 2525.770359099083 0.2238717607788123 2.3793792191946764e-05 2645151.6392785576 281.135004264182 107382 16725 356039 SKY_20200806 10849630.525409514 926.1635750685247 0.6027572514116397 5.145353194825137e-05 747132.9603506736 63.7779629443918 None 3827 1078195 LINA_20210422 232325486.4506484 4287.760297215337 0.09368156738894935 1.7303294585259834e-06 50782836.7108371 937.975749097484 33272 None 69525 NEO_20190915 642958607.7956102 62112.352114130554 9.114570642669047 0.0008807780805740636 163294577.70402706 15779.820065796117 323836 98250 210014 QLC_20210724 5176943.552993709 154.87507775958932 0.02169931825365916 6.487297299279494e-07 1302586.3696574275 38.942536992063985 35134 5680 940522 ONG_20190520 0.0 0.0 0.41211631144423744 5.0436333910378646e-05 3749105.8568343315 458.8295818672979 80736 16173 231698 RLC_20211011 255512637.24327087 4669.635290515683 3.5800314710576133 6.543185783951916e-05 10363241.239769084 189.4078677908641 47821 8161 585480 MATIC_20200423 35210714.43429939 4953.033822815053 0.012783154440848219 1.795595235649703e-06 10377552.099236086 1457.6905249263696 34700 1629 177145 ALGO_20210131 526109676.31096095 15379.301771391554 0.6589548901871322 1.92877268726186e-05 441125484.3139733 12911.821407962085 None 2494 246299 ONG_20210401 0.0 0.0 1.01349921340281 1.724763671857202e-05 22676791.784393907 385.9115640817726 113238 17922 179444 APPC_20201015 3696861.63040545 323.8730422173356 0.0336602896934675 2.9465277600616445e-06 96353.54492138051 8.434520245566775 24403 3164 1517148 BTG_20201111 127692766.78485629 8348.34449656984 7.290644045345606 0.0004772551530203034 15472909.810243644 1012.8770370940703 78735 None 360586 LUN_20190830 2734168.6078167222 288.12073775266845 1.0109047537388645 0.00010658682112357588 135355.5772501551 14.2714935774923 30940 2197 1281939 LOOM_20200421 11477397.359776441 1676.082709308471 0.013735519248750248 2.0073506017135167e-06 24537118.567211825 3585.9292123004443 21569 None 708796 MITH_20200718 4158373.9510588604 454.2018375781815 0.006739768600402887 7.363050281553181e-07 2534245.9274238185 276.8608433875239 100 2095 578289 PPT_20210221 79953788.35849841 1424.2208818545632 2.207028190390643 3.9313904945967914e-05 8593243.968639005 153.07189007893436 23758 None 693522 MTH_20190812 4298342.9222198585 372.92346687294076 0.012602414022820868 1.090914904147876e-06 229055.49197978995 19.82795118658902 19476 1994 1172984 CDT_20200127 4199168.333915167 489.3169782553714 0.006233598870130938 7.253662575690434e-07 70447.88739796639 8.197595241548623 19309 295 202251 OMG_20190512 251772282.80446392 34481.99362997471 1.7970678761509111 0.0002467242699499084 174065751.16950744 23897.953967417463 289938 38718 None GXS_20200903 51532036.37683564 4517.062066354086 0.7354982101880507 6.445577506508955e-05 26238501.449803717 2299.4249667326394 None None 737078 COCOS_20200207 10722560.598650547 1100.948942001076 0.0006145847192127417 6.311234385581008e-08 2135669.234361092 219.31409432686306 14753 197 59619 ARDR_20190704 117763269.98391144 9829.200100781754 0.11753181193592001 9.791317181405525e-06 1745763.255608419 145.43570355764342 67925 6572 885731 CTXC_20210202 1270358.460660714 38.07209326183883 0.1264297566527716 3.7855234813712697e-06 8714909.902944786 260.9393306532896 17233 20086 607104 THETA_20200117 101247768.6768923 11628.76591613368 0.1012550108891892 1.1620426821171218e-05 3061793.7701261127 351.3836020047 None 4019 536421 BNT_20200914 73493022.1887886 7119.754536221959 1.1156840707924007 0.00010803342110125853 49394783.036955036 4782.973545769667 85412 5212 75903 XTZ_20210711 2347961549.671452 69627.9989134162 2.801912370773382 8.312913028448182e-05 56728654.877845496 1683.0661056334784 124416 50113 72508 NXS_20200526 10274469.255404277 1156.0918081732473 0.1722913835314763 1.93716581915032e-05 96314.51335100138 10.829165064866453 23503 3522 668599 FIDA_20211230 181104504.91091853 3904.8487452682443 3.7039391493309304 7.959306859214315e-05 4370339.983394922 93.91319782674405 61848 None 437544 PPT_20210125 31907431.459468 992.0003125768474 0.8812110707337156 2.7303343115673717e-05 1205442.0321984773 37.34927817437232 None None 734972 ANT_20211011 175887545.14365962 3214.4425294433595 4.607710811173827 8.422059839691853e-05 20115824.52630052 367.68079601350814 89351 3220 116609 MDA_20200404 6037058.882874134 897.7451563894482 0.30667083665557726 4.5575434916781534e-05 1149880.2525952258 170.887760915798 None 373 1850910 BNB_20210819 62145691624.651505 1378711.6243097654 401.11859917961044 0.00890495219477501 2128230790.5160668 47247.356486971774 4779457 595335 153 BAT_20200321 194307941.90667626 31430.90166228302 0.1350445089424666 2.17796438347188e-05 75676764.40956773 12204.96107773254 None 35917 19141 DCR_20200217 238130272.76941174 23887.96659609807 21.386937064620298 0.0021497787651155193 130616195.50482592 13129.319202091978 40888 9733 202166 PPT_20190805 27321166.548561797 2495.0964538202134 0.7542885283472701 6.887158694246768e-05 2030079.5614338154 185.3598401155131 24110 None 744473 LIT_20210626 50814302.81148703 1596.7513765941276 2.2778821560375837 7.157395502599027e-05 4834771.092795046 151.91465802542638 52688 None 250622 MATIC_20200511 42581693.138247095 4864.589686996912 0.015371296335348237 1.7557113521353636e-06 39906909.57516294 4558.172104757988 36057 1693 181455 LTO_20210125 63960724.033927456 1988.5354393034372 0.2343192006836144 7.262609742035046e-06 9033235.774747895 279.98075253067043 846 1191 818812 DCR_20200711 182241175.17726645 19626.818847869636 15.537353128513434 0.0016735288819153644 9508956.938189115 1024.2101045991694 40552 9861 294466 QLC_20190511 7815972.231516616 1226.842747633612 0.03257202390090996 5.111961213480997e-06 1709979.3630142522 268.369819639534 24981 5809 940522 TFUEL_20190929 0.0 0.0 0.0034794347626290203 4.2388204946007127e-07 1500318.3646959553 182.77624575704985 None 4022 338625 NANO_20210727 536523009.56592894 14330.824321667124 4.010241769226712 0.0001074737342464375 30121606.608802915 807.2534600262914 133965 107657 59418 TVK_20210813 123484940.30542038 2777.4791273394935 0.2821826143192979 6.353756540075273e-06 26532770.956182096 597.4243572582571 52087 None 105979 POLY_20210131 76953006.02244076 2249.4995912892537 0.09644672919696126 2.822605279885513e-06 3543173.2390575195 103.69433546770719 36207 5029 279172 SC_20220105 786113462.7283438 16973.423783186063 0.015618123885380279 3.394439711667095e-07 21505787.172338177 467.4063193773166 146333 50936 92361 ANKR_20210825 766542118.9487549 15951.425462651736 0.09994933995302052 2.0812200608822716e-06 78098109.59970428 1626.2173666407973 120281 None 5363 PAXG_20210909 307862339.0249814 6642.539056466326 1793.5485832482539 0.03874012248603584 10493366.72119321 226.6536384164675 None None 43840 BAT_20190905 233685899.77690497 22130.00450236293 0.1754918493699177 1.6614169178922272e-05 21080582.016209338 1995.741439074975 None 30005 30571 FIRO_20210204 47834029.84808845 1276.388103410275 4.153897826950372 0.00011074249469446832 3598491.050720776 95.93540638073533 68329 197 276546 MTL_20200913 21414777.645998828 2053.6869329785673 0.3328437675449348 3.187729784324047e-05 2709243.6958557954 259.4711893202492 40661 None 386727 ZEN_20210602 1176050141.6419868 32051.907394729213 105.50552658538801 0.0028762275057224312 86550493.11737573 2359.48691025739 None 7329 1013649 FIO_20201101 8641002.941814769 626.335317432038 0.07690097603533286 5.580326023505996e-06 944285.3042990474 68.52214534667506 55755 149 236963 GO_20200306 13121473.724270009 1449.2971918828828 0.01441280129444034 1.5910381405217267e-06 2282833.1879818547 252.0033820163044 10687 680 656341 OAX_20190626 10009689.131131517 845.5744146903987 0.22377485167465958 1.8903513061033635e-05 1635153.6327155381 138.13057106959556 12307 None None WPR_20190414 8244390.712881642 1624.8020290929549 0.013892599486890827 2.7394506115570134e-06 216257.28289395515 42.643289791555695 35251 None 821639 COS_20200502 10972091.346432805 1240.456710738496 0.0056059898956345765 6.347694477393379e-07 804810.3608720823 91.12913826396408 10817 None 153547 FIL_20201101 790579447.5429804 57310.364108224196 31.068181236508313 0.0022515667657322116 79127391.34417841 5734.503840227433 39498 None 36454 WABI_20190613 19081328.08853504 2348.61933913621 0.33928493551043615 4.1722974388610994e-05 2329962.6794883995 286.5231050015887 36321 8024 932643 OST_20190816 6147751.125012925 597.397093843639 0.009354771165335054 9.082716915304193e-07 226074.11238216402 21.949945416674637 18036 757 528261 RLC_20190906 12774020.411949953 1208.9807778474126 0.18385287552722535 1.740352886669239e-05 48515.823955019296 4.592512030455088 24809 3306 984845 XEM_20210722 1253607354.1855779 38955.98839432106 0.13973358050617835 4.326737241543965e-06 225528285.88951656 6983.300864723784 371236 21725 102654 NEBL_20200229 10229496.552992964 1167.4151976923542 0.6324895227388788 7.259073098719265e-05 170319.68230097016 19.547565288031066 39712 6027 775420 ZIL_20190903 69852212.20908202 6761.119621072974 0.007597223181623633 7.353487183082733e-07 9082567.64321084 879.1178455225954 66147 10612 166369 IOST_20210707 546460299.500703 15998.83323521269 0.02418273468053591 7.080622572966304e-07 94735608.44497304 2773.8264364248 248535 53576 158729 SKY_20191024 9515491.013101922 1275.098054029394 0.5949380710083645 7.968819468948156e-05 263070.7274012337 35.2366613666556 16353 3805 1313874 VITE_20200207 7280333.055820897 747.4426804640287 0.014649824814688189 1.5050546271859234e-06 3688523.1901187934 378.94165732309006 None None 540507 BCD_20191024 79884028.62748788 10701.791438950726 0.4249349709444934 5.691735383079544e-05 2726109.393809971 365.14512468592596 21322 None 2032087 ZIL_20191017 48031694.98690289 5998.798396688109 0.005183969997064493 6.474977599340621e-07 6520513.7999495575 814.4372134632846 66313 10580 188924 BTG_20210427 1533898524.0260782 28472.581893443454 87.58344653509738 0.0016252527476801005 126019717.13605024 2338.5000207220605 93601 None 172941 WAN_20210710 103389552.57844925 3042.068421570412 0.5872739079933468 1.7280808738172172e-05 2509320.404148423 73.83792362757764 123095 16638 187166 KEEP_20210727 108203582.21178536 2890.1771219592306 0.24669364609283823 6.611343875553635e-06 21130099.744151372 566.2827468234019 22215 2825 132886 POWR_20210703 91017170.90878855 2692.797409724963 0.20999074447397012 6.199310166685991e-06 34503727.669240735 1018.6130358474118 91199 13990 143959 REP_20210513 243607331.45573646 4856.383697578562 37.90089218652948 0.0007555654168470232 99030724.74691388 1974.2065821516042 148984 11102 144608 RDN_20190520 15290764.594673373 1868.3681166706249 0.30207600492878633 3.692424464497642e-05 1347772.698977982 164.74492528665178 25658 4448 1272561 BAT_20210624 824246746.039708 24449.637641052952 0.550120354308103 1.6309112721198714e-05 91609303.91916007 2715.8901724464436 206899 75424 26903 POND_20210711 49274931.74683649 1461.252058761762 0.06358807070597691 1.8857093442399892e-06 7568785.957344786 224.4529554971376 19636 592 110694 QSP_20211007 46680991.82084057 840.8840764377098 0.06542802997040309 1.1793210718593655e-06 2986859.005753122 53.837258522853084 69525 8581 197683 BEAM_20200412 17154097.06296221 2492.9309241775068 0.28916956948089917 4.201942795133628e-05 114996040.23558526 16710.153271114927 14944 1479 257482 ATOM_20200605 572550337.0074856 58661.00740154126 3.075357395963259 0.0003145790706755718 190005905.37028757 19435.751178940307 None 8500 147612 NANO_20190524 222674416.2789026 28266.289257490145 1.6681118606875502 0.00021211587327211502 5619628.907783097 714.5878650777762 98373 45817 404660 XZC_20190813 62972586.92457436 5532.71348459791 7.740661583187127 0.0006801389129177642 14933552.495758016 1312.1475537086121 60866 4042 218512 TNT_20200323 12813531.775680818 2196.2548762002575 0.02988427855824038 5.125165955344337e-06 237162.82411440395 40.67352101726728 17667 2564 1338754 AST_20200412 2285304.048239179 332.05134495431065 0.01325727366585947 1.9275892007048366e-06 11609.407446887968 1.6879917383641623 31693 3463 340670 MKR_20210702 2270117592.393263 67561.62786280316 2521.376630454059 0.07496207903033822 238815223.37047765 7100.1235720669565 164076 28585 29892 OG_20210206 0.0 0.0 4.344093686949429 0.00011416165598582059 2663523.0522000724 69.99669535421494 619534 None 479965 BNB_20200607 2594510241.243783 268318.48531988106 17.544231651455394 0.0018143854620373066 220115765.14981315 22763.883434012263 1159259 64288 995 LINK_20210624 7923006406.433357 235020.2006811496 18.32967603880951 0.0005440876052583637 1317364487.8171937 39103.892939038575 382420 61215 25533 PSG_20210617 31187409.053566337 815.4824603836312 14.823527336263044 0.00038704844096163274 6701913.2417087415 174.98973171640668 9155479 None 40054 PORTO_20220105 0.0 0.0 3.098926423872796 6.745870633122261e-05 1722748.1042607743 37.501490049177235 None None 209617 ZIL_20190601 192895496.3051106 22486.029389118034 0.020950408335385508 2.442863112640106e-06 45578497.46655943 5314.551793368173 62423 10372 194027 WPR_20190513 5682647.232205887 817.1671173934087 0.009463267390726898 1.3608219230954314e-06 191889.94016531168 27.59385597138546 35198 None 1010461 VIB_20210823 9181687.848568767 186.11259045923507 0.05023909851995188 1.019438410306452e-06 1697815.385445995 34.45161773445291 32818 1278 6383686 LINK_20210626 7548646482.081535 237242.48812023262 17.24123295312597 0.0005423418194849583 1183038205.8881118 37213.75929702581 384313 61361 25533 POWR_20190902 23339005.20831681 2399.539231313702 0.054621975367769644 5.615635056886655e-06 30739371.573781066 3160.2865234025794 84024 13067 414066 LRC_20210212 926583968.2711382 19431.93504569452 0.7491373061205878 1.566526069782079e-05 168699893.4912424 3527.6948426454633 57773 8728 159364 DGB_20210112 360140267.2093283 10166.845217406428 0.025907006683873166 7.288155303786913e-07 33796434.3016571 950.7607918981848 179388 23880 242284 SKL_20210212 196809353.7423214 4129.085884294471 0.34795835418810467 7.276180595742356e-06 130678430.98610216 2732.6254776717146 12873 143 222285 DGB_20210523 1014084397.2405415 27002.773071115185 0.07075364661337513 1.884009524901174e-06 53679148.890405975 1429.354282624287 217903 38040 110176 ZIL_20190608 237511247.34305054 29519.350641557343 0.025662973430479234 3.1922004521224336e-06 121047662.04840429 15057.039378778794 62960 10447 194027 RCN_20190616 15895560.779621422 1802.7830724505309 0.03178948051821384 3.60395245140004e-06 1615543.2075294314 183.15306850586805 19025 1121 1997723 NAS_20200501 13209447.96315823 1526.493499776442 0.2897286151402946 3.3612362070089686e-05 6328740.725975676 734.2178632449194 23495 4941 943407 FUEL_20190523 5609329.31231952 731.6123940267764 0.010568183959770905 1.3789976643265772e-06 10145284.877947064 1323.8153502884354 1 1515 None MATIC_20200704 67394225.9121771 7431.152664078296 0.019255359201248386 2.124149568882149e-06 16892652.00598097 1863.5081849552962 41972 1938 125573 XMR_20190225 797609363.0572326 211753.7219321376 47.24169440152796 0.012591967728898515 170708962.39044052 45501.36849843076 314029 155859 108704 BCPT_20190622 6390069.665715182 629.4860373550524 0.05501156160577482 5.41919129766746e-06 1024666.6513246055 100.93995585257935 10942 2789 1175613 CELO_20210508 595901384.6337966 10399.612364432875 5.412967458366006 9.443859019791317e-05 47186975.185922466 823.2584892737613 None None 73395 YFII_20210508 103184787.83458836 1800.6666307548014 2598.6589957320225 0.045344041761426736 95974477.88146242 1674.6601767433015 15853 None 329518 OGN_20201015 23629408.089943856 2070.114883646784 0.18142304092597494 1.587471577910565e-05 7953765.647326575 695.9632491026449 71461 2420 151602 IOST_20210902 994550520.4776633 20445.413142663383 0.043794040591959675 8.997518905296302e-07 129494098.6610634 2660.4660932819534 254031 53676 288048 BCD_20191118 92086469.11581002 10833.92352686982 0.48964771633941234 5.754068065150622e-05 35595707.40655636 4183.009874440728 21389 None 2278242 NXS_20200713 12230766.830606762 1317.8989219954374 0.20486033001268855 2.205790852945596e-05 568373.8374259353 61.198466856421796 23337 3528 474450 BLZ_20191216 4070837.371710593 572.4839450727069 0.019264624665279 2.709435060188871e-06 203241.15236289776 28.5844501750249 36162 None 865479 TNT_20190207 5402841.913926963 1586.4133993480477 0.012583527034206569 3.693992800537889e-06 239145.24447913692 70.20295732566893 17009 2511 1261592 DUSK_20210725 38851908.1327037 1137.9859436178708 0.1078116778997955 3.1555604004815207e-06 5348853.5662423475 156.55660713579087 None 13636 415059 BNT_20210115 161481634.5603935 4134.629422168885 1.6577477263655602 4.233747001205367e-05 56949879.07003091 1454.4515784700445 None 5315 101085 VET_20210115 1653268583.5752952 42330.83809813298 0.025610727700899845 6.528518973868293e-07 321670338.8340209 8199.809606873305 151135 71467 134055 MDA_20201228 10457610.969424857 393.8883974587848 0.5293251267988687 2.0127724244649074e-05 249675.52778236306 9.493976233911448 None 369 2990723 OMG_20190706 321905793.9296959 29288.658650852987 2.2947409281586713 0.00020883226922784905 174303065.6479542 15862.402716563265 289739 40280 None NEO_20200129 802195076.8173622 85872.42585188037 11.3372344697339 0.0012154001056413255 399355106.26270014 42812.57829110426 323199 98713 204331 RVN_20190701 197424269.6041224 18194.92670613242 0.0511387488233733 4.7133652531476934e-06 26599558.28069942 2451.6327957562958 25978 6726 214144 MTH_20210804 7114566.991326756 184.2981828434935 0.02037507740022967 5.300245241432093e-07 249939.64466386885 6.501773643617994 21805 2055 1226676 TFUEL_20190622 0.0 0.0 0.011795133618406404 1.1658149208228987e-06 5559996.518176598 549.5424732195099 70129 3998 231431 PIVX_20210318 78639199.80899464 1334.467688578626 1.2011127359230258 2.0382279325357768e-05 1708043.8546880442 28.984645574887633 66468 9330 212535 OMG_20211002 1787140176.0016973 37113.337705579135 12.780705084931792 0.00026533989169007975 1701778969.8329618 35330.58970809852 2270 5528 239148 MDT_20210819 24937570.58590737 553.2437977598673 0.041046128207391994 9.113894958564436e-07 2613876.8271966865 58.03860163698966 None 323 955933 MTH_20211204 14943886.777220108 278.3249904017935 0.04498496564178581 8.384673725275124e-07 3369624.4537501354 62.805875737202655 22460 2092 1052038 OXT_20210105 0.0 0.0 0.23128698006536477 7.3925974512191794e-06 18126592.567616858 579.3780608695829 54382 1816 172682 MTH_20190805 4810934.972106645 439.33774643649775 0.014086273370720106 1.2862021246580982e-06 135117.9216819954 12.337468780636387 19496 1998 1172984 DGD_20190616 62713323.61509101 7112.584437747083 31.155599589413054 0.0035320897883427296 3309701.679661076 375.2186977381776 17064 3364 464575 RVN_20211002 1034333741.6248125 21477.048015988497 0.1061185244242334 2.20312397398437e-06 55664952.08313931 1155.6586478227534 72709 54474 54487 KMD_20200502 62756310.46014326 7082.208265942655 0.5242729863594688 5.9323901825012455e-05 4600516.449299314 520.5696140816588 99768 8383 170099 LOOM_20181229 25941252.196564723 6742.6237405676975 0.04606953425399327 1.196782730302076e-05 2437922.9614637294 633.3174722368252 16496 None 342810 KAVA_20220115 805733002.199241 18693.921820080443 5.501339801941971 0.00012755102426135085 162209924.32850388 3760.9096580715313 146801 None 51112 SNM_20190531 10697459.741411021 1287.0418453510931 0.026247264998492996 3.1587973108005896e-06 414678.94290801266 49.90564654178901 31427 10006 14913795 NEO_20190623 1233285426.6451824 114949.91954046524 17.485822028641273 0.0016301498763889597 1220224283.8260853 113757.78972173754 322521 97785 201306 VGX_20210930 4012334141.887151 96577.289906673 203.51883274940175 0.004893995361937113 163877859.8785515 3940.7531742153656 335140 11182 41484 ELF_20210624 67998576.32664816 2017.0422986588733 0.1473598799951968 4.3686527918762875e-06 9014401.77416509 267.2422879218176 87681 33384 458355 WBTC_20210210 5897968802.970679 126629.35164976925 46546.21158060757 0.9993919794214907 556738673.4706043 11953.715372447065 None None 144337 WING_20211225 36003282.683791704 708.3246860910411 16.439874260835317 0.00032336417616165626 3992019.0582778794 78.52103571600354 None None 238138 VIBE_20190923 3649752.650607363 363.066215081403 0.019503656604217687 1.9401640224474784e-06 353813.7159492888 35.19630478855 20236 None 1366400 RVN_20210616 688375021.8115151 17045.25230497827 0.07647427109596502 1.894762357901534e-06 52155991.1370876 1292.2412640140062 63791 42447 52142 NAV_20211204 28764628.738251638 535.6702883710683 0.39735015936919854 7.406144238336564e-06 467450.35037840717 8.712730163892349 58782 17321 627196 CELR_20210115 24917347.795525707 637.980380590609 0.006316416852768105 1.610295930384558e-07 7441188.467269295 189.70431789689493 26299 None 415548 SKY_20190507 16660263.969937725 2913.4857810825497 1.1106842646625152 0.0001942323854055033 1235838.7536593024 216.11894283272963 None 3705 424998 STPT_20211011 166575636.31274417 3044.423581690268 0.1381522649492236 2.524081625712312e-06 121772776.440823 2224.82365844109 32276 None 1227708 ALGO_20201101 199840941.4611794 14482.555625400673 0.24764717475658596 1.7966685168061743e-05 58199033.31143724 4222.3122860977555 None 1423 286881 IOST_20200719 88696375.08855039 9672.076506843734 0.005875318966429382 6.409346697333235e-07 32755331.301787604 3573.2574809764865 103 52179 346780 WING_20210203 19440720.029206168 545.8893909871608 20.992310643056584 0.0005909046322306198 18438706.15405739 519.0241829036361 8064 None 427230 BAT_20200316 178651322.05312565 33067.76574217816 0.12285450508576459 2.2862586403255116e-05 59021866.873930424 10983.663400415358 None 35789 19141 NPXS_20190205 102980414.11808437 29726.245512553785 0.0006152674443895158 1.7760261758932317e-07 10218277.710984988 2949.6000239802306 55056 3899 183678 BQX_20190227 13819287.60382411 3627.861649161233 0.1475590016350908 3.873742687519792e-05 988465.000626326 259.493424705775 60521 5811 364991 GAS_20200301 23310015.275312115 2718.1321858835868 1.6679539708917377 0.00019501600158724979 2362563.521787732 276.22926025267395 322919 98935 240012 TRX_20200605 1128960172.8486364 115668.32953353637 0.017112112180686204 1.7506175196133818e-06 1452845364.561306 148630.1937267993 508603 72976 68107 IOTX_20200730 37733159.54048517 3402.073866386662 0.007349225189907039 6.626163104615491e-07 6601206.042564166 595.1738692845361 25264 1895 529833 TOMO_20211125 279187769.08060026 4880.272286127241 3.273155213874061 5.7230364210590146e-05 13128630.36227178 229.55107476548022 60799 2365 129382 CMT_20190712 47655696.72518396 4196.87598666611 0.059670416737472365 5.243788043964727e-06 24857431.911036067 2184.4510460223023 291167 1650 722276 ANKR_20190916 14484282.37759751 1405.7058872303635 0.003626595812542783 3.519198526521499e-07 7797175.0261836145 756.6271038055444 15233 None 6100 NKN_20210418 504744044.174237 8372.957114320805 0.7827916927435298 1.2988099515310489e-05 79580102.66701196 1320.3950712037245 None 2172 154711 TCT_20210427 23236206.757217094 431.3158852590434 0.04016183336999221 7.450329990223669e-07 5600864.504919753 103.90035835206935 None None 341028 ETH_20200301 24105658618.96741 2810910.494062733 218.34835692985286 0.025529135854294754 13967572974.821035 1633078.7785297506 452320 453611 19200 DNT_20210725 96297872.92214224 2818.523089005438 0.12800809421073217 3.7466349683291494e-06 15882581.994753797 464.8630811653043 70148 10250 228003 DLT_20190801 4738649.667164978 471.1400953758509 0.05903346409293234 5.862792364927313e-06 507085.466812818 50.36019567673855 15058 2664 2977956 SNM_20200903 7039289.0289086355 617.01809808 0.016177522898356948 1.42e-06 1798035.9013814144 157.82459379 29101 9584 None LINK_20190410 194937734.55369952 37689.314771866324 0.5338783080912198 0.00010317137648619701 8564816.456025511 1655.1410494258216 11282 6572 297045 SOL_20210620 9621683962.87426 269901.88341239345 35.26048477919641 0.0009903624892302573 302280531.1963374 8490.164023441761 None 24061 8068 RCN_20210206 37321249.79662761 984.7034115773794 0.07291264288782943 1.9194315011959742e-06 1747814.3994085337 46.01136213961936 None 1134 3103198 ATOM_20200511 470156515.5235783 53701.334850132655 2.5157553964247916 0.00028716696825101983 200137989.53262264 22845.233589725794 None 8412 88245 VIBE_20200117 2486787.1567446548 285.7056755859653 0.013586516994309104 1.5592426004452164e-06 119188.92736259529 13.67859423596 19661 None 1683059 TNB_20190805 10612866.081110734 969.130178117509 0.003834425218196816 3.501086651391446e-07 647256.4463550024 59.09884207954963 15676 1473 836143 BEAM_20200718 23606015.825146202 2578.3791594117106 0.35556044484566907 3.884420354392552e-05 6732196.181478954 735.4777578943396 15334 1534 344672 FET_20200905 62148498.47521981 5924.768042867589 0.0909232350519969 8.67153535466852e-06 10376322.653104167 989.6111668968216 24269 602 239426 ALGO_20210702 2613272080.706087 77774.34808334468 0.8441807373586685 2.5096267155091016e-05 214130735.3581337 6365.795738810618 113961 34560 196865 ATOM_20200913 1333509893.0164955 127884.20629701525 5.598246640908471 0.0005361307049331121 393991136.46470284 37731.589777891786 42237 9470 98949 IOST_20190902 83591455.74270527 8594.238514749022 0.006958932713326967 7.154715989294537e-07 22872890.226121496 2351.6398298952936 196319 50748 94352 DCR_20210519 2323624335.173389 54457.49937448206 180.15827302806693 0.004211187008893999 76421871.09573771 1786.3558822169937 45149 11125 205679 CFX_20210428 835560689.0800856 15167.005826513472 1.0125820195833328 1.837530926529057e-05 17824629.52998749 323.4632590923623 31841 None 146617 ONE_20200806 62221669.66090071 5311.512739278459 0.008974752749994392 7.66117249138043e-07 9133870.562481796 779.7001192390372 76669 1379 135490 STEEM_20210401 460687144.36676997 7832.243651860453 1.206989208260237 2.054043171618678e-05 29166773.747791722 496.35748227735155 13135 3923 170877 WPR_20210217 12874073.532375071 261.77659218583955 0.021149819151946046 4.299726135797201e-07 385840.26073812944 7.8440739441778735 32657 None 7566939 PERL_20210710 0.0 0.0 0.06417421163264533 1.888441545342707e-06 2955683.3330452046 86.97629560220729 284 682 5749080 PAXG_20211202 319713680.3171526 5593.36910162908 1784.9334882488552 0.03122270948624479 7696004.8215583395 134.62133145588336 None None 35647 ZRX_20211216 667855530.7706232 13689.381250289245 0.7917883755204085 1.6202148147237443e-05 80280583.17139824 1642.7595328546033 247806 20856 59550 COS_20210704 38374410.41160731 1106.9469362649907 0.012766313582462161 3.6754150877081114e-07 1923999.6810426721 55.391851459487604 26757 None 334513 BZRX_20201231 22114629.390931834 765.8205076216595 0.1569792716683205 5.441680829023612e-06 6769219.46700129 234.6547503345825 16872 None 144003 DGD_20191216 37381564.34160292 5252.9689108400435 18.624209187433266 0.002619365091066132 2098295.8920252146 295.11067852517965 17515 3355 462773 LINK_20201224 4510416511.474448 192899.50364362387 11.22856604281105 0.0004811851447118396 1511121889.752177 64757.10277031904 108627 25715 46547 COTI_20200417 9144061.70151951 1287.7124510860767 0.018206706874464317 2.5683528233157183e-06 1314555.6498811326 185.4395052360161 22934 935 241032 NANO_20210725 515700475.14392203 15093.93356361464 3.871745867872255 0.00011332110322003295 20062199.4677761 587.1951967648505 133935 107557 59418 ANKR_20200412 5488306.282765973 797.4428978576343 0.0013766337642223167 2.000395939827182e-07 1836922.320728868 266.9244389948389 None None 5685 LUN_20200719 2206996.098952978 240.74983171563372 0.8163912185272594 8.905591113994373e-05 86534.40998341385 9.4395928706 28311 2121 1675739 GAS_20190613 44477790.84635016 5469.820486229799 3.1964048977744484 0.00039257677532279414 3442779.4905250776 422.83606544303274 322005 97670 216321 FLM_20210909 0.0 0.0 0.5714161041390526 1.2337000800543706e-05 38977731.906147726 841.5379024958395 None None 70538 AST_20190916 4579628.5654265415 444.51089505361443 0.026585191359201215 2.5804291849047556e-06 2020163.4546110057 196.08242295957956 32018 3567 234516 AE_20201101 35471999.22851809 2570.7489470110427 0.09591011584189776 6.9507779577834555e-06 9536934.921799334 691.1587631541582 25607 6349 520399 FET_20201224 35305082.48655578 1510.053244893288 0.050703158778143596 2.174655448774568e-06 6076128.012008576 260.6047671819239 26351 715 356196 FIRO_20211021 97801534.01146807 1475.1358965708741 7.786312940681096 0.0001175103600762405 6509070.214158223 98.23432354368711 75938 1417 198290 KMD_20190523 127278325.65050134 16609.82783158144 1.1169615468166683 0.00014584986535133595 6941726.786194866 906.4322043652779 96955 8369 351516 STORM_20190207 12795380.803101566 3757.0104901029326 0.002831600106533819 8.314212345634474e-07 5541667.207395407 1627.157655659395 26543 2568 3618383 TLM_20210826 431561163.2193009 8804.323618757473 0.34785408554433905 7.097505751379398e-06 495692689.1672178 10113.958290228577 60542 None 12690 ARK_20191102 29068410.49360483 3146.8764085741636 0.20362038555078388 2.2043454620111033e-05 547762.6536485582 59.299471247107206 63148 21706 95337 ZRX_20190811 115053250.72364801 10153.814079072423 0.19154681789035352 1.6914127653404138e-05 18414521.154833008 1626.054480672436 151373 15925 188207 NMR_20210722 179712103.17762858 5584.573656441995 31.335182069690838 0.0009702386965905643 14315633.37307838 443.25836160367294 29532 3535 583885 DNT_20200530 4738943.690310547 502.81974856289446 0.006353656973080044 6.74614669667048e-07 179983.40709727965 19.1101671429424 None 6035 635978 MDT_20220105 70896246.65146907 1532.5600798164758 0.11429938922225732 2.4863666495256187e-06 14649428.84349643 318.67056822360894 43254 947 270296 ONE_20200324 10697069.194894595 1658.8387473100681 0.0021340370310972746 3.2933429858304515e-07 15314548.988244308 2363.4108385484824 71093 None 395411 AUDIO_20201201 8918875.1560886 453.16782884407604 0.12484783472037397 6.355593024389997e-06 1698426.3379942498 86.46130395752023 23163 2144 55194 EGLD_20210708 1721228451.3337429 50655.52008214924 95.59948896613142 0.0028136897145051467 56225222.22569947 1654.8240077754317 273572 9582 31347 DEGO_20210401 92624559.10871936 1574.7896434539105 17.071092509440458 0.00029042590950116484 25685798.291785974 436.9855840234047 91023 None 69982 BCPT_20200806 2945403.950349126 250.90366469016536 0.025356729948950996 2.160008126558179e-06 140557.51400241605 11.9733645902 10499 3180 1744286 ANT_20211007 177456089.61816204 3196.62527186423 4.67205931791464 8.421949272329434e-05 18038831.399357717 325.17164838845423 89243 3202 116609 BLZ_20200725 19073055.545496874 1999.495812183909 0.08066530852945279 8.456600560779086e-06 4108602.404367506 430.7280295606433 37466 None 455945 GVT_20210731 16348883.764703413 393.99951809185103 3.696596473239629 8.849580736187984e-05 569800.4768599722 13.640913635 25847 5691 541797 MANA_20190523 74215401.72903588 9685.113619076605 0.055855408517476626 7.293450553096749e-06 17725462.961138994 2314.543767008073 44668 6230 119390 PAXG_20200914 61331265.578143165 5941.630644451132 1948.1802549066178 0.18864531937791418 718863.5504675715 69.6086739025063 None None 96035 BNB_20210108 6360257240.65883 162695.4084230765 43.399503661775 0.001099768051256643 993406143.5104641 25173.475417349902 1471932 86219 896 HC_20190228 49458781.53898985 12960.322560181974 1.1228496594643043 0.0002945061721568271 7902645.194007942 2072.7421221387594 12230 785 404563 AXS_20210828 4229492025.3785195 86212.05482243089 73.36829216861913 0.0014956471029534122 601929781.8164941 12270.621378049216 430910 None 935 NANO_20191118 123180879.7766967 14481.566222706037 0.9269244617015799 0.00010892701560537608 2517799.6325527024 295.87783168740475 98135 48191 246161 DATA_20211230 0.0 0.0 0.12260148596441799 2.6355540289612866e-06 212526.1739630444 4.568657627939281 73203 4825 146581 HC_20200422 43867057.13843535 6405.569100340668 0.9833469341605171 0.00014364953128518472 21110648.128558934 3083.890947789273 12647 840 962062 QTUM_20200629 155595126.56045786 17061.171674501584 1.6160549829937672 0.0001771950962963467 239681636.7664026 26280.300580251056 179796 15082 115798 WNXM_20210509 219300545.12383613 3739.0516162987933 106.61277192118148 0.0018149172453095035 29144267.9352911 496.1360025118315 27043 None 102080 PPT_20200417 8153259.7742589945 1148.3399229529907 0.22521044476064245 3.176960477418589e-05 1981132.2839227268 279.4710064735175 23885 None 1377509 ROSE_20211007 260729476.82372656 4696.628258466567 0.1734598161669482 3.1268219710825112e-06 46919022.982887685 845.7718632851451 34073 2572 205423 CND_20190816 12406573.809259279 1205.5873745527583 0.007114705439224529 6.913592086793085e-07 189066.29105745777 18.372190175685322 36027 6124 336080 TRX_20190511 1547872587.4419825 242905.84436153763 0.02350559710686961 3.689582112776379e-06 583460503.0346495 91583.52479712197 418112 70558 110041 ELF_20190507 56583466.791671015 9890.292186465542 0.16880368296394394 2.950888691230205e-05 11816833.538273616 2065.7227284365354 88301 32624 938169 HARD_20210723 44979313.575995855 1389.3855870660525 0.6151194381283009 1.9000038266604987e-05 8712861.293630343 269.1261041828251 35083 None None DIA_20210128 45407992.89251195 1499.3631695372897 1.780843034212634 5.856664820456721e-05 23820079.48542661 783.3718012349184 22864 201 294987 NULS_20200625 49119587.48460217 5279.50016882182 0.5079261467636862 5.464558713069717e-05 38050639.78013153 4093.7044976567195 25699 5176 775098 SYS_20190821 14820146.231367378 1379.2674751512038 0.02640470447138079 2.457408280579083e-06 581438.2547542579 54.112750378525455 60760 4573 680853 PHA_20210727 125142549.70562746 3342.6262490545923 0.6859139275185006 1.8382365803413488e-05 22147606.786328517 593.5517464842159 None None 155093 ADA_20190528 2859830610.0531316 324276.0004479795 0.091890182252933 1.042107703742625e-05 257802427.47259974 29236.84436420523 151761 73330 118037 CMT_20201208 6880677.829152572 358.2369404794142 0.008587320556576938 4.475243993605644e-07 496481.8909608953 25.87393338606658 None 1629 881018 DOGE_20210114 1106626599.018502 29610.85923895578 0.008650340588929543 2.3146381785418843e-07 279274226.79731566 7472.755332375005 188281 184653 103049 BLZ_20190122 8521257.475250917 2412.793367329279 0.04206697597626098 1.191282815213848e-05 499113.83991791104 141.3426390965532 34908 None 750261 CHZ_20200322 28538085.05778901 4638.021634189085 0.005967755430395719 9.686064839129779e-07 1869366.3529546096 303.4106191849296 19718 None 252561 AE_20190511 120801283.12307051 18957.766840926328 0.45416474239979016 7.12884723665341e-05 38114433.90337481 5982.674378750015 993 6353 421011 OGN_20210422 418879229.46685475 7730.764957712283 1.9683464659299341 3.6344967866313126e-05 276284367.4506072 5101.513697291546 102407 4846 48206 ARDR_20210731 198052751.35647324 4747.021727179928 0.19903273330997426 4.764805288652912e-06 38470036.304702304 920.9652572767492 72445 6999 None MTL_20210108 27057793.643338267 692.1384813948565 0.414788805817241 1.0508047815254125e-05 6514082.539488898 165.02444096242328 42793 3363 362516 UTK_20210106 90821571.9836094 2668.9926431532294 0.20323711538834047 5.964214879026032e-06 14750528.030537734 432.87033761093596 55148 3118 130913 TFUEL_20200207 0.0 0.0 0.0030510758893914688 3.134532967670695e-07 1208255.2941201383 124.13050969825593 68335 4021 477822 ENJ_20190901 58314168.36855461 6074.8600631009695 0.0665475122231778 6.932566057502137e-06 277084620.9904282 28865.20283571254 48377 13714 25046 OM_20210617 44429513.11668012 1161.5846181272054 0.14394740140676066 3.761102211406428e-06 10589471.573356835 276.68498745339167 44409 None 70903 DLT_20210420 19111604.94571826 340.6648455123835 0.2209242173080393 3.9478014141166356e-06 2165604.8914460936 38.698238504782 15081 2572 4793076 CVC_20190726 17632900.740789633 1783.7754147126357 0.05131632300940937 5.19169864561477e-06 1913276.1482679439 193.56712650336198 88576 8146 434521 STEEM_20210708 159804477.4857536 4703.262998469138 0.4145750364793211 1.2201351747492499e-05 11388976.846872851 335.18880859985165 14045 3942 206155 REP_20200704 200187278.4284417 22076.769827995915 18.18385981293689 0.002005947413318529 27160106.1296111 2996.159517100386 133558 10218 217465 DCR_20200730 179639425.76864424 16187.576943371048 15.22583786025333 0.0013727826057775819 5446113.548018029 491.0291319550667 40614 9873 318539 RLC_20210704 211742425.745899 6111.197219405059 2.971314934857633 8.570964852839748e-05 12088059.171985434 348.6884849757553 45491 7703 151690 QKC_20200806 37770541.192116916 3224.2579121504505 0.007117638343044861 6.073692271915432e-07 3148352.6659153104 268.65828712580947 50701 9215 348302 VIA_20210723 8481747.881260473 263.03998871512937 0.3666176665564778 1.1341189310264763e-05 210644.9438692747 6.516227676942886 38202 2295 1139372 CELR_20210203 35643365.657230765 1000.7250157258428 0.008931353403084152 2.5148313346678764e-07 12209330.138311084 343.7822312184716 27958 None 412914 WBTC_20210930 8567927757.545855 206226.14066573486 41651.882094912304 1.0015983043665106 504475713.9882271 12131.07293863228 None None 211676 REP_20201201 85485257.74634925 4348.081436024748 15.407693002185058 0.0007848534422829294 6745167.179079422 343.59249490001855 136516 10435 147834 DASH_20190601 1467206416.5318918 171142.85198872516 166.1318705679541 0.01936739357423519 453198022.22349393 52833.11644816017 319980 26680 107403 CFX_20210814 282908307.2124081 5930.900785727375 0.32671403635245627 6.8453459548830276e-06 12947726.067950677 271.28208280762266 37701 1190 184033 QSP_20190916 0.0 0.0 0.011048468135260007 1.0721281000615521e-06 104564.86817194243 10.146830499387875 56380 8524 561299 XMR_20200730 1396099949.1741393 125866.99738930314 79.10759387412645 0.007132036153657047 107278086.43052508 9671.779325447207 320696 176038 89794 AST_20200107 3734006.214764939 480.84511444669977 0.021428583629469686 2.7626189058357495e-06 8230391.584642439 1061.079714241821 31838 3507 410205 IOST_20210804 560414816.5905658 14586.295544625544 0.024705142253807114 6.431442448020677e-07 72216493.29072733 1879.9981624295665 250277 53591 221575 CELO_20210511 542747380.2901177 9720.8243074274 4.911943464524562 8.790887002535539e-05 27868304.673838146 498.758015252639 None None 73395 BQX_20200629 10642804.0330442 1167.3085506015627 0.047912573456185124 5.251163793250856e-06 334867.47291397414 36.701095818017926 12326 33 380325 GRS_20201111 14647487.575696759 958.8438114414575 0.19202028435078297 1.2569900494503001e-05 1154011.9839979564 75.54314304534125 37372 106809 3822572 LINK_20191102 989175883.4117053 106934.2237901283 2.7164409978232866 0.0002935324182781044 106795357.66639252 11540.062759254004 36795 11455 96268 GTC_20210731 97156462.29737085 2326.582482846259 6.837374987435118 0.0001636450131792002 27525219.415576294 658.7857039141375 54096 1063 24107 BTS_20190801 123996749.29116853 12335.476145665996 0.045878862221665345 4.561504445586689e-06 18703152.11971279 1859.5603162160805 13661 7169 153233 BNT_20211125 932719227.4698038 16314.117625165713 3.9873841937490346 6.97107973606527e-05 68832873.48418938 1203.3940704109089 None 8560 39755 QSP_20211011 43440152.59365921 793.7863711047594 0.060797240978147704 1.1111847649601657e-06 965363.5477299001 17.643847806694374 69731 8595 197683 WAN_20190531 42353487.46873514 5095.6686901843095 0.3988218889655523 4.799522651427078e-05 2772564.2653156053 333.6573383280097 108783 17077 412002 ICX_20210218 1128812834.9138427 21628.86269251909 1.944685851858047 3.729702595115146e-05 283261651.89973706 5432.660072975995 120481 29100 176350 MTL_20210218 55104639.5538267 1056.2686151361534 0.8495384654637491 1.6296420929619558e-05 22565842.111428276 432.8732325009269 43241 3412 337340 STORJ_20190528 41381850.24316269 4698.367421113268 0.3050148194964562 3.465897770341136e-05 4466429.934723591 507.522538665478 83810 7715 179109 RAMP_20210723 50179833.053464994 1550.0266958958673 0.16769740778735678 5.18007819248792e-06 34716941.02134066 1072.386696177032 30664 None 117048 DOCK_20190220 4601143.456897159 1177.5633537830818 0.008969833158204476 2.291348992151607e-06 397777.5157409284 101.6124930885553 110 15360 163959 STEEM_20190725 77973843.44778708 7932.165510962101 0.24560532811482147 2.5046734069280365e-05 1387400.4127265566 141.48654449762668 6063 3760 334107 YOYO_20181229 4068945.0803217855 1057.9503249307043 0.013945324697464618 3.6226812440444936e-06 174653.30712084216 45.370995200423714 6933 None 735888 WBTC_20210325 7264758452.116514 137965.55209473785 52639.434960370265 1.0006165322690377 287554135.8300172 5466.081131958787 None None 167083 FUEL_20200612 3212852.630521712 346.4721951851672 0.0031626384799759957 3.400174787697884e-07 558793.5614239614 60.076287287065554 1 1467 None ZRX_20190615 209505045.97968817 24087.090978969994 0.3488336012625941 4.017642507016835e-05 55136781.74894792 6350.302185709685 150527 15949 209456 SRM_20211111 926631587.0666419 14289.004247516743 6.98543207427039 0.00010756669073358336 184129889.2775652 2835.364032481486 None None 18455 POLS_20210707 90944100.71457185 2662.589583155895 1.2599947399628961 3.689221800370173e-05 13779642.895027244 403.4632634351115 380559 None 15425 MKR_20211011 2224157269.9348397 40647.70882332657 2461.6180988965484 0.0449907345240749 125192734.64936005 2288.1344151138455 187458 30820 45314 EOS_20190316 3817681589.084458 972802.8392956627 3.686681109216058 0.0009394097529880287 2348419054.1613426 598404.8248890182 732 63349 96004 BEAM_20200417 16274682.512813391 2294.427988139466 0.2715225096329431 3.830267653661321e-05 121791623.80641842 17180.69407148754 14939 1481 307022 BAR_20211225 26617696.63889788 523.1790052079888 9.006229886831907 0.00017730950670867844 1123222.3655200605 22.11335998048502 None None 37465 MDA_20190513 14242812.183261184 2048.8576414859253 0.8007199472773763 0.00011508446299487913 1214038.598982351 174.48919649623778 None 360 1527812 ONT_20190816 505552205.2036641 49084.98010927236 0.7773084345448452 7.542855265253616e-05 88441356.8398683 8582.183396689845 81427 16283 248344 VET_20200418 245810177.6454425 34722.26173538886 0.0037937229453066158 5.388865512648542e-07 123339235.3785396 17519.954974838947 118833 61686 321528 BTS_20190726 120783555.03700285 12195.60750176751 0.044393603992900724 4.489350067337702e-06 19342726.07608619 1956.053593352295 13666 7178 160624 SKY_20210204 19987911.161905926 533.5171432553884 0.982931424357917 2.6204998454007087e-05 63556678.45741904 1694.4240660597989 17376 3880 739970 VIBE_20190221 7988204.246340007 2013.9711133658116 0.039904648194085006 1.0052052657212591e-05 1012705.7082798674 255.1023894854918 20477 None 1395931 DENT_20190726 44292791.268900335 4471.39006688143 0.0006415231101952615 6.487470173438391e-08 623303.3984700089 63.03221415275578 46534 9927 262986 GRS_20190305 16188632.381681072 4360.121510455634 0.224673988849191 6.0511961018383555e-05 1277524.1277329726 344.0785050970552 36265 106993 15350348 AXS_20210902 4281707937.302709 88037.14166153982 74.05361090797389 0.0015220069923991832 461373005.5226486 9482.494261925121 452437 None 688 ANT_20210731 140960252.4698234 3378.6017945221006 4.010379435959411 9.600771103416624e-05 15124535.15162141 362.0784575501335 85953 3064 130306 POWR_20200319 20914240.71571707 3884.0865566290713 0.04885824472591436 9.068379750979469e-06 1340794.599091885 248.85942302750087 82554 12826 249499 ADX_20211111 98638598.86744033 1522.0025697732017 0.7393501756651171 1.138474436517798e-05 9276865.330634266 142.84806276598601 272 4034 9701 QLC_20200502 2554758.1910836822 288.2608790154168 0.01068766623333931 1.2093586335008976e-06 111872.42827619657 12.6588802487572 24376 5656 940522 BQX_20190618 14314787.68441014 1535.657901346766 0.11982662396504686 1.2856527381729186e-05 612903.7869873616 65.7601295857843 60760 5768 449913 CMT_20200325 5850507.380112194 865.671964579808 0.00727448553031741 1.0778490097229465e-06 7488328.101479184 1109.5337251028493 286154 1637 911838 NULS_20190528 55892100.4812584 6337.601512826082 0.7799237294913486 8.84495499853763e-05 8866177.699026618 1005.4950220334108 20865 5314 698282 CND_20210106 16420364.783741534 482.2875980820186 0.008858784955428047 2.598889354198008e-07 135178.11672181435 3.9657015068821475 34019 5903 513668 CELR_20200324 5670592.207016866 880.2185725820041 0.001511926553661507 2.344607017684526e-07 4797622.983738777 743.98723196159 19250 None 1309255 BAT_20210114 369316451.8381367 9931.737207325315 0.24986014401403847 6.685085879230032e-06 157062536.38233882 4202.25701969752 126597 49525 23893 SCRT_20211207 738197215.7956218 14620.470602118134 4.773239456646207 9.4577570164345e-05 10628521.801945973 210.5948749474864 124404 None 60335 RENBTC_20210107 463737586.79273397 12630.787846414547 36873.79536140078 0.9995336427729421 19200276.567728207 520.459643274982 31990 2151 104896 YOYO_20200530 1692249.7339273032 179.55406126870258 0.009670119130094346 1.0315666442299346e-06 1991842.6181735145 212.48118847563492 7460 None 2546990 MFT_20190507 20282933.526090015 3545.7125676905907 0.0030578809207281988 5.34750985870395e-07 2183338.3428322948 381.8141914565357 17998 1972 690074 POLY_20201111 43986939.3083865 2877.348196634379 0.05982701279697679 3.916354984495103e-06 26781836.13292833 1753.174235676115 35353 5000 334302 PIVX_20191026 14191638.814504452 1639.1003427595397 0.23110886255283986 2.6693629322480182e-05 1159939.0328706321 133.97574735172932 63069 8584 244902 WPR_20190830 3335674.783807075 351.5061495716981 0.005481914069049879 5.779540874813327e-07 228881.9038082926 24.130847399335313 34522 None 1022788 QKC_20200927 32462902.998309042 3023.3108694207262 0.005527241881239561 5.147428923905249e-07 772305.2866723092 71.92351368220643 None 9217 245158 REP_20200330 104790428.0141882 17721.38603631482 9.568811357872226 0.0016210946555716514 7350935.972631381 1245.3545767603014 130678 10114 262137 STEEM_20190714 88277427.29522268 7756.125300067214 0.28057826894443966 2.4637999883864438e-05 841555.3065308703 73.89823746000405 5959 3758 330897 ONT_20210513 1823193220.8498144 35369.65105417433 2.1449951229172175 4.255622476893856e-05 1159382089.4381678 23001.88203883224 133361 18898 138836 GVT_20190923 5384459.7336447295 536.0281671743554 1.2136334882052129 0.00012081838596343438 334307.6420876366 33.28064866766443 21224 5703 141613 DGD_20190626 55649489.97762122 4701.023608145459 27.824758901190055 0.0023505129793292188 2750048.3138480377 232.31195923159578 17084 3369 464575 TRX_20191024 946931693.8935425 126940.54835205355 0.01432287725349962 1.9192395510966035e-06 675088146.2389113 90460.5860824248 477313 71313 65552 FXS_20210421 53344195.72176041 944.2199145255581 5.135476615142007 9.10805023171742e-05 7363574.563786166 130.59704490564897 None None 111454 LRC_20191020 28642781.563786473 3605.2127542681683 0.029950743847246965 3.769399889988035e-06 3821731.2526094844 480.9774821159967 34050 2438 558420 DOCK_20190726 5064555.446697102 511.27062144381074 0.009224431657554499 9.319064445596722e-07 1204154.6206476602 121.65079572234146 180 15217 260296 DLT_20201208 2772038.860352423 144.46449757152072 0.03382484797588533 1.7615477078330437e-06 85731.33756240609 4.464760382077211 None 2536 None BTS_20190520 187483209.59827045 22910.228655915384 0.06907515551286299 8.441737582591488e-06 24734088.924754735 3022.7755044051983 13764 7196 179069 LUNA_20210325 6652850176.229344 126344.75786316681 16.47289387377197 0.00031312133178298837 971285814.4056774 18462.46992660254 None None 42354 SNM_20210620 99027066.28061284 2770.01741904 0.22565886912055558 6.33e-06 307267.00097989285 8.61920528 32360 9715 None DOT_20210509 39197018807.0192 668425.0683662492 39.64457142823194 0.0006754338747253529 1539872559.5545456 26235.170466302574 367240 23581 16901 SYS_20201115 31285314.437804244 1943.6914160395963 0.052053488581311994 3.2359375782767595e-06 1333967.046813347 82.92689332864275 60923 4490 320728 AMB_20210117 2355446.440827188 64.87205833598793 0.016261957815952764 4.4928682567373974e-07 404392.53253963776 11.172593074412271 20290 5482 518256 DNT_20200412 3050877.2341485876 443.28801223192875 0.004061491285223387 5.901780769698078e-07 59668.52157609366 8.670473687221902 58587 6065 660159 TOMO_20200430 25672504.498990897 2938.8616525404673 0.36473348643103787 4.1601343456728326e-05 19090910.371821236 2177.5009666679384 22615 1535 222907 BEAM_20191022 23648257.161349256 2879.4827261635587 0.5722784602087357 6.9635116159907e-05 35289494.30548614 4294.042509114503 11783 1384 211289 QLC_20210718 4906417.101045658 155.23864129237185 0.02044340458769024 6.468276720515494e-07 428049.51341985207 13.543452075241813 35021 5680 940522 AMB_20200325 1192316.611962785 176.42146173297726 0.008256172090560432 1.2218236327930565e-06 237544.46369338292 35.15399587074572 19058 5492 780586 TFUEL_20200605 0.0 0.0 0.008661207413855032 8.85957054212713e-07 11386764.658866253 1164.754980702212 71206 4210 132852 LSK_20190615 269876494.6717096 31018.215002877525 2.0178687300454614 0.00023240522570266677 4213384.073078636 485.27065308842003 182928 30464 180914 YFII_20210114 69654414.11287667 1870.6124607025579 1768.438517051913 0.04731946986238707 104938709.75357766 2807.9257863373227 13153 None 153054 KMD_20200309 62897646.62136245 7785.811006653114 0.5282742770612148 6.566841088819248e-05 2464646.3263965524 306.3738188356431 100018 8410 149248 EOS_20200423 2450675652.05242 344474.3520818622 2.6189002586679817 0.00036812050954851427 2211393518.022094 310840.13450768817 None 70997 96512 NULS_20210202 34471942.73656707 1033.109204547478 0.34836208992806555 1.0430482254450329e-05 38799723.135686606 1161.721769805471 38650 5091 775793 XZC_20190302 37446347.77115548 9802.685585476649 5.42846247104264 0.0014196573285224752 1086545.8991259777 284.15464907395136 58743 3932 296891 MBL_20200719 7424992.688577866 809.7520991006003 0.002103496093066975 2.2946900098507568e-07 3367227.1569266655 367.32858897930777 None None 152748 SUSHI_20210324 2295029554.6794715 42099.46972744906 16.53213226449962 0.0003028187951201713 666884293.4690589 12215.308648752782 62274 None None VIDT_20210724 16381249.710719619 490.06663811890223 0.35440731661848895 1.0595474019356855e-05 1253836.0268199996 37.48508121519936 29554 1622 891299 NAV_20191022 5700915.3481075885 694.4431131622154 0.08580811241401548 1.0448253153500511e-05 94808.0812881352 11.544116359495808 50920 14147 427843 WPR_20190920 4610765.420295121 449.83106944962594 0.007587224406515841 7.398356692920897e-07 1961056.1421282454 191.22398464777564 34392 None 840031 CHESS_20220112 95960696.91716206 2238.475576989875 1.7013481133831907 3.976428876047627e-05 14287595.340582276 333.9328749634843 None None 55069 CDT_20210114 4551407.968015754 122.53833631793442 0.006760722572718299 1.8090185490927776e-07 223744.71167055232 5.986909377213245 19241 294 987559 KEY_20190723 5207566.252695088 503.32138497993213 0.0019897764045496607 1.924645693730968e-07 87884.08641558507 8.500740489257048 23935 2835 1002597 UNFI_20210828 59417980.90314124 1211.5063649984113 12.788607355197843 0.00026075037766304463 31340819.585041378 639.016455513225 21659 None 252503 DREP_20210729 0.0 0.0 0.5085722253915506 1.2718427912447442e-05 2344109.510333528 58.621738147627056 4092 None 319856 LUNA_20211111 23531062389.900234 362348.16741689184 48.872490311744066 0.0007523903020325894 1364460525.82452 21005.822715155617 203159 14627 7946 ATOM_20190511 915120388.4223504 143608.77790951967 3.8330995217110426 0.0006016667165482702 55655191.342396386 8735.978819276186 23438 4049 164771 FOR_20210107 8015069.832646395 218.3058900412171 0.014327089301308975 3.8801129991330183e-07 2766262.8114602603 74.9169078801272 16588 None 227730 FOR_20210731 15843824.22470159 379.7522494444252 0.028166410129218833 6.736561308521775e-07 4705284.213927615 112.5362992150046 29249 None 173725 OAX_20210304 13063985.579412065 257.0558872564135 0.23160191634108793 4.57094069113267e-06 373990.7029898283 7.3811536165525355 13384 None 1088622 MITH_20190706 17788910.753266625 1618.5273600160906 0.04100331388923529 3.7306941555636456e-06 5618472.379393944 511.1977564941074 75 2074 608806 NAS_20190702 70005784.0598117 6594.962602657724 1.5393508059842764 0.0001451603795437135 15452664.528783672 1457.1822350303353 24354 5141 449898 STORM_20190531 16174416.540434927 1947.5507830081606 0.0035783447541117186 4.3126003959003563e-07 3369021.430521213 406.03251373047976 26965 2572 4208890 POWR_20200318 21785544.889145065 4011.75080758265 0.05048929144287465 9.386992469081286e-06 1553573.9933920393 288.8411970017794 82569 12831 249499 VIB_20190220 3976899.766955561 1015.8075895427074 0.023775540526834983 6.072915066483512e-06 978725.405003032 249.99289716608268 32686 1123 2777721 XZC_20190623 102750983.67528348 9580.27195477018 13.225522984169176 0.0012331181892410706 10544697.153331522 983.1639834111613 60561 4012 343816 STORJ_20201226 43405613.469139606 1757.6603173051942 0.3017986112790695 1.2223144315228036e-05 20353937.92300797 824.3547561790036 82394 8533 96620 AION_20210220 85596132.65347944 1529.937824253303 0.17558293646305398 3.1383541225605953e-06 30005081.070477746 536.3082072335268 68956 72675 308962 DOGE_20190729 338377230.67306715 35444.19565804069 0.0028207644393080534 2.957945588418245e-07 43011878.221211635 4510.365830662026 137762 138028 143495 BEAM_20200107 31730056.47742485 4086.024971773665 0.6023782312973539 7.757100896700319e-05 32548465.021465678 4191.415195407302 12285 1419 354880 STORJ_20190830 20032525.386714745 2110.9839301674133 0.13927755378232756 1.4683928001966817e-05 3775836.1824469366 398.08357588562967 83584 7790 176136 NEBL_20190302 17102831.61031001 4469.870394634942 1.149515885705443 0.0003006226275119288 144997.6072695071 37.91992979161974 39641 6170 588480 TCT_20210727 12698897.74703488 338.4432647090512 0.021468375856840926 5.736309737488174e-07 3986165.1714216843 106.50958526411387 None None 514683 ADA_20191012 1251090236.224886 151378.77769344274 0.040235605666570064 4.866249743342325e-06 67125868.66385761 8118.462136846304 154390 75386 120482 MFT_20191019 7967086.588093655 1001.387468260588 0.000883091864372403 1.1095176615220484e-07 1135605.9984397953 142.67767178387194 18640 2307 1251152 TFUEL_20190605 0.0 0.0 0.01282838572289101 1.6700473918868693e-06 11155852.58512423 1452.3107518365503 70230 3997 222751 ORN_20210806 185845794.17687133 4535.9846192723435 6.388494153706698 0.00015613721107359145 5602307.960288295 136.92252343805697 None None 92091 DIA_20201031 29042546.35119639 2138.9377636943473 1.1336913158706083 8.37074053923446e-05 7502138.6883021835 553.9290596127112 15914 171 87729 ICX_20200319 95136107.51187652 17677.517450719228 0.1808412828107432 3.3565213739908966e-05 15303548.50582386 2840.429290222481 113271 27516 126672 CND_20210509 64388745.887945004 1097.7356352649474 0.033366501050514565 5.686585295834382e-07 556317.157440745 9.48120080836026 35831 6201 107330 GRS_20200730 17450827.276140276 1573.3907296918871 0.2309273328387422 2.0820727806854562e-05 19586307.95183229 1765.928621758694 37660 106857 None GXS_20210620 45538646.26469324 1277.4021368289903 0.6501337028434138 1.826032841897761e-05 5086692.99183459 142.8701268541725 None 24357 544646 SYS_20191019 13554346.02908337 1703.114399030748 0.023934817252387663 3.0074683765668735e-06 1080051.7138588005 135.71114164922915 60025 4579 999459 BCH_20210828 11927530963.24146 243181.2891491601 633.7279015707747 0.012918840987421522 4910482047.245705 100102.48338871762 None 611762 398111 WTC_20190511 53240750.86524838 8355.256792354927 1.8718181323999998 0.00029381200861539286 5418157.853618995 850.4671551214977 55624 20240 966813 ADX_20200323 4798559.539222004 822.4789208199103 0.05255460420373407 9.013136045317129e-06 826667.8410532736 141.77387173952607 52277 3769 39887 EOS_20201031 2371276123.83024 174574.28519251212 2.505432225001457 0.00018460777055525357 1765859518.3707771 130113.83247455972 None 73102 97185 VET_20210602 7977450396.3514 217416.32630808253 0.12213932597289784 3.3296880292742906e-06 1329007671.6761909 36230.59894874348 None 182001 25894 LRC_20210125 521031823.94271445 16181.460434811293 0.41829857732586406 1.2960515319010809e-05 107983665.82628389 3345.7535621839697 51983 7855 177149 CVC_20210110 103236779.27876717 2552.326646124561 0.1536524035112546 3.8117732238737937e-06 80334360.81206794 1992.916208941875 None 8081 183713 SFP_20210616 119437083.63852878 2957.332033381761 1.1010141349983498 2.7278361996388715e-05 11604370.009442437 287.506032661499 349033 None 20824 KAVA_20210429 295710778.6826173 5402.304265842045 5.0786845706935635 9.275181819383149e-05 48299545.587095246 882.0927168798646 93550 None 75402 AXS_20210723 1393187258.1674879 43034.767378375305 25.245984592538203 0.0007798214707891615 2332720963.0562763 72055.25637882692 265507 None 3082 TFUEL_20201014 0.0 0.0 0.009884703949559778 8.65325662181292e-07 1801892.898151923 157.74110921577184 74649 4461 67184 POA_20201018 5197376.195608271 457.3998255716007 0.018527886151616574 1.6305634949267066e-06 102450.17313282461 9.016220792393485 None None 216356 APPC_20191015 3864599.1749725733 463.0271790625347 0.035124265704774386 4.207956343118424e-06 93678.03040372704 11.222812899818763 25023 3288 849291 WPR_20200310 3983919.3557030954 503.195543704383 0.006491049477913188 8.201567100514904e-07 342825.8347386222 43.31671014011099 33644 None 821116 AST_20200511 2367630.8833324737 270.3960328915893 0.013761118729517005 1.5696659956311316e-06 115188.76756780624 13.139040152456388 31634 3450 336637 REN_20190621 40345829.05945057 4218.762074446102 0.052250946813620545 5.470338157234012e-06 671553.6429534205 70.30734832004953 6435 779 1312648 XEM_20200626 382336223.31719935 41319.56560224432 0.042481802595520125 4.591062845203932e-06 11064099.700072642 1195.711432781624 208453 17868 219464 XLM_20200323 757866663.5688694 129980.4724677288 0.03735914925487107 6.40480648382984e-06 291236509.3166588 49929.22805799966 281132 106854 82721 KAVA_20201129 76241809.60253173 4307.5926934017725 1.6228484533271657 9.162386962316074e-05 16649113.618823374 939.9868560892243 47531 None 84165 ICP_20211011 7494152812.8988495 136980.8597268828 44.880971872811436 0.0008202847921931012 327731773.26040053 5989.91907496641 None 23723 23600 ALGO_20190629 96637677.02429225 7808.074550912191 1.4388516348632951 0.00011622091817010655 90724193.01114869 7328.100240855932 9641 476 445869 LRC_20190512 46827109.54144164 6413.303620764923 0.05918015066464536 8.12559398324855e-06 9843439.35498103 1351.530719320874 36092 2467 903966 ALPHA_20201231 31804980.527600415 1102.0434267876285 0.18259330247208436 6.331645100551889e-06 19604063.23041814 679.7947636812327 20074 None 85592 CELR_20210117 26351659.024702173 726.2275678240034 0.006645937635408551 1.8328902509020324e-07 19232817.24072224 530.4239243847986 None None 526594 TRU_20210401 121925531.78490917 2072.9606334980194 0.5150886848587544 8.765732027026152e-06 16633352.926046431 283.06487551877797 22035 None 87666 BAT_20210325 1486243159.6568208 28116.923146525005 0.9893914904963684 1.87541252074242e-05 501995653.2716368 9515.433906062624 164699 62764 19543 TNT_20200607 16116114.190548152 1666.6927268620516 0.03761217896263251 3.889767991047058e-06 1390783.58048475 143.83174820097582 18007 2601 462149 NAS_20191220 16913630.595454987 2368.087755165353 0.3718185195257313 5.20348545771101e-05 4320438.712225935 604.6320672427813 23907 5043 1040847 QKC_20190426 48333056.34015145 9312.901495341483 0.030690118364613637 5.90927924616046e-06 12942362.840077475 2492.0085096619014 50228 9156 169862 QKC_20190520 37089226.81618855 4533.83639005281 0.02341798483979821 2.8659804770868962e-06 15361202.667537164 1879.9613737437205 51325 9184 159226 ONG_20210523 0.0 0.0 0.8773272860270073 2.3361240620750117e-05 112007138.3319041 2982.4966708407 137115 19125 129307 ONT_20200229 442303816.52718335 50532.93076282529 0.6919006896536408 7.940934201567157e-05 147820919.28351873 16965.385512669505 84535 16472 403200 ZIL_20210620 1145485302.7656667 32132.487600986657 0.09418874968197405 2.6454827599977004e-06 64864649.33822885 1821.8557113984214 300776 34436 32653 JST_20201115 28576355.968809776 1775.8829087867318 0.01992387942417077 1.2392424296580086e-06 29534359.399833307 1837.0032523204538 30275 None 128932 WAN_20201015 32842559.795610562 2877.2320612650665 0.26209190680820393 2.2934135895754676e-05 765357.092946415 66.97194046231186 104551 16008 402276 KAVA_20200610 31015204.20821802 3173.2512157655046 1.1404104734565963 0.00011678221656909498 27127307.19267837 2777.935784743831 None None 393722 IOTX_20200625 21961324.389277607 2357.9591505386466 0.005081699756591381 5.46718196316942e-07 3799096.4434741703 408.7284284192947 24497 1869 670606 RAMP_20210421 165285757.83025867 2926.764104497165 0.6050462289232791 1.0730827649561867e-05 34914997.27251714 619.2366801178963 23285 None 95701 NANO_20190130 114723075.67729422 33609.60708161947 0.8606468573379613 0.0002521161988299824 1703373.6007160717 498.982914697659 97488 44636 313884 LTC_20200907 3132753425.1257844 305064.1302556538 47.90186268958278 0.004664631426725385 1902238780.1695814 185237.94894189897 135027 215275 123582 NANO_20190207 101862307.48719971 29909.055749457242 0.7644548945971442 0.00022446108501247744 1705528.286864367 500.78131815846416 97317 44650 316685 VIBE_20190513 7180712.986213424 1034.6614417561368 0.035867671424167524 5.168135350823162e-06 265912.1435355095 38.315003306655996 20719 None 1402427 SRM_20210203 149628070.34969375 4201.509824485327 2.9872221849452987 8.408619025319614e-05 138396342.7061012 3895.6664361224466 32422 None 83159 HBAR_20201115 191636423.0595732 11908.462420032316 0.03188530824020888 1.9821700704700193e-06 5159608.9365513995 320.7503070791963 None 6741 166628 FUN_20210218 206305778.896778 3952.962549238371 0.0342077664459923 6.562546658286593e-07 5539580.870524922 106.27340427960266 35342 16897 206769 REN_20211221 491922364.6093747 10426.79404536495 0.49054197796953936 1.0405368926008376e-05 29173666.626314692 618.8313697997778 108528 1233 77574 MTL_20210128 25466699.544519376 841.8403952197979 0.3933585838399607 1.2966409302257237e-05 10683515.028379649 352.1642448792906 43242 3354 402004 PNT_20210117 11642923.535337016 320.868300303313 0.40668868791924667 1.1235777057677303e-05 3047477.1414440703 84.19406481360564 None 116 1091126 BEL_20211204 121519541.4509049 2263.151474573464 2.519109698447125 4.695327116141119e-05 135902527.7491463 2533.064852578834 36382 None 290672 EVX_20190324 5759060.329952825 1439.2359060188448 0.2988298028556658 7.46100217706829e-05 245212.15408983073 61.22309080368034 14284 2303 1271428 NULS_20200518 21524577.38891453 2217.1847209675707 0.22530848448074367 2.304329680471551e-05 9142692.272145906 935.0636399990647 23735 5189 694372 PAXG_20210519 238935295.90142283 5605.608529839036 1880.2843178182766 0.04395151418325296 36743003.57513402 858.8651340993064 19226 None 43058 OMG_20191011 125184074.08968547 14622.783736968746 0.8906794347256205 0.00010404696419441796 62625330.661094196 7315.735923515223 286574 41652 None KAVA_20200913 87063695.43315038 8345.950311997713 2.957982199436454 0.00028328015745182855 20707406.20966929 1983.1077051821546 37335 None 95209 LTC_20191213 2790943136.467522 387279.64957123797 43.72602330571635 0.006066862210567938 2133233952.9145436 295980.18472321914 449731 209867 164753 MANA_20200927 105905153.66259092 9863.079781018396 0.07947660484356475 7.3993062426133425e-06 59480578.001563944 5537.667505896966 52181 7319 86714 BAT_20190729 329796159.38776326 34548.28157986712 0.2578793800987522 2.704207285363582e-05 32714709.05354571 3430.571088206843 104596 29066 42959 XTZ_20200430 2079750572.1331284 238216.2140977407 2.9383964292239444 0.0003351522237793821 336208606.4307514 38347.808001112164 60646 24176 97090 TRX_20191026 1158510533.2985718 134263.63358754932 0.017575627287729795 2.0334883083184154e-06 1098054304.1380188 127044.14771711918 477984 71464 65552 FUN_20210422 354979542.48756707 6549.774848294407 0.03442000186034953 6.357487907328436e-07 8835237.120554905 163.18974467288632 2448 200 255008 ALGO_20200313 95976676.48034061 19996.45198882565 0.13998816356202445 2.9212443730219832e-05 79622674.99529305 16615.49700892399 16035 818 407593 DCR_20200320 130038014.51769006 21026.249945125644 11.548247823185095 0.001870760754907889 97636587.13087489 15816.658790511461 40782 9744 200827 ANKR_20200605 12422577.575650146 1270.904533524525 0.0024037391647843535 2.458790752570375e-07 6365997.619047241 651.1794751242334 20141 None 5865 NBS_20201031 0.0 0.0 0.005012266440310523 3.691536693965481e-07 3745244.9436075347 275.8374739623649 None None 851940 NPXS_20190821 99188434.96549146 9217.791850704043 0.0004206132865215878 3.909558056869854e-08 3067734.57271552 285.1428330826778 64710 5316 188042 LSK_20190920 134896733.71140024 13170.910058341538 0.9973162339494097 9.731212921898158e-05 7889727.042780166 769.832186977579 181525 31003 164016 WINGS_20190220 4979935.165017592 1272.0099153839226 0.05571411551829626 1.4230889563372007e-05 419825.85494253953 107.23485999833417 37323 1221 1388669 NAV_20200523 8118537.533310716 886.8859091882995 0.11792920426443844 1.2905210778358603e-05 1244848.4363039478 136.22606510249278 48593 13882 1211272 KMD_20191012 73299733.50710037 8866.984123874225 0.6298807947447415 7.619595242312691e-05 6188537.463558149 748.6202311234254 98184 8413 202419 JST_20210203 48088362.65832338 1350.3063140503334 0.03342960860887005 9.409974402780503e-07 112182991.10930198 3157.7966918996062 32452 None 170314 OAX_20190618 10610162.872867992 1138.234168016389 0.2367947108840963 2.54144181358628e-05 4922136.975071809 528.2772015448231 12280 None None ZEN_20190616 69691538.53910124 7904.013435776233 10.437365874038157 0.0011832772890499707 2617926.2235724637 296.79257028508835 25989 1667 240249 WAN_20200325 12867500.016620027 1903.9432471247585 0.12115331739545523 1.793161989602831e-05 310061.3123060847 45.89145156123477 105703 16353 732459 XRP_20200407 8563367775.746166 1175212.507270781 0.19471507618414166 2.6722149378414046e-05 2390554002.134605 328072.90731712297 946416 211860 34231 STX_20200417 58311861.04604019 8211.767589287952 0.0922260164055327 1.3016129191883271e-05 296955.7684317764 41.91024178239468 35854 None 63028 SRM_20201226 51635532.66342655 2090.856443811152 1.0322634909489636 4.18629872245937e-05 15355502.474272134 622.7355801537823 28902 None 80741 RLC_20210624 200515554.28630316 5947.894446960685 2.8148548177883055 8.355453820993322e-05 23745032.607796706 704.8339480197908 44831 7708 152729 BAKE_20210804 324487457.2071439 8445.296438018762 1.9306785421331925 5.0266207271855356e-05 43267036.69789444 1126.479518590566 347574 None 9385 HOT_20200229 112855251.11796618 12905.368730951062 0.0006326809338482881 7.261269921251743e-08 7143127.691163345 819.8157313199893 25155 6914 508019 AR_20220115 2508919775.926891 58209.79160095674 50.20025823382572 0.0011639465557541288 43022600.88546616 997.5249108675076 55346 None 54416 STX_20200305 81792988.41469865 9339.832461020125 0.14872687481911676 1.698847719623989e-05 1321504.8885693327 150.95022800340564 35813 None 34581 MDA_20191220 9777061.1909216 1369.1586355104391 0.4985772999699837 6.977361377197045e-05 755625.207204879 105.74629323688119 None 370 1595611 SNT_20200713 102224183.88575116 11015.751934700782 0.02637934136903385 2.8391439115582136e-06 13936343.161211066 1499.9344859301734 110655 5712 151682 ATOM_20200903 1585365861.0191967 138962.81631707423 6.654594948788346 0.0005831789516642271 353568110.8599682 30985.128594605252 41552 9301 98949 ALGO_20190730 97679316.6947742 10289.626798155356 0.5721527537150467 6.0150967053231755e-05 72068610.61348185 7576.642067063658 10699 521 261967 REP_20190131 131141852.11391021 37920.097555500346 11.921986555810022 0.0034472815959545773 9086098.87721358 2627.275353131261 121961 9744 233136 XZC_20190805 70538669.58844942 6441.9205539596815 8.72965446190504 0.0007970758319341604 17697144.92475082 1615.8676812824124 60827 4043 218512 BCD_20210930 285114869.52517045 6863.900400193869 1.5216810395496116 3.660855217545677e-05 3007687.1483331365 72.35883804518849 35255 None 803974 IOTX_20190621 34766900.564808704 3634.4845046953274 0.009915213795087356 1.0374357538583817e-06 2154406.4206897416 225.41705054035177 19522 1736 766707 COS_20210523 43182098.741152905 1148.947124611861 0.014282483050098571 3.8031020864073146e-07 4999387.985074334 133.1223906242594 25509 None 187764 MDT_20210420 41421066.60015643 739.9053427390345 0.06830332787891358 1.221359208972824e-06 23493785.94269288 420.1018121051561 30038 231 381469 QTUM_20200711 195749522.8424925 21081.62669961634 2.0342705990008216 0.00021909562418522842 309863989.5060148 33373.064638839605 None 15087 112420 AUDIO_20210823 1123113869.8582191 22765.782979574116 2.81515602030668 5.7124396389524e-05 52386723.26785203 1063.0174398558106 None 6699 28500 BNT_20190930 22090783.326691117 2741.2067625718705 0.314128021660911 3.898561472118512e-05 5043280.327715761 625.908452062572 None 5103 171453 PPT_20200907 9880920.382509567 959.6354870582553 0.2724492768178143 2.648658647523916e-05 617715.7676932134 60.05221334856285 23658 None 1237047 ELF_20211125 234057922.89793453 4092.824374982384 0.5073908354485726 8.871467873073192e-06 10704944.412078723 187.17044889238343 93491 33528 121888 TFUEL_20190723 0.0 0.0 0.007544804030563816 7.297624631400883e-07 3266273.38633657 315.92652400857236 70253 4016 240889 QTUM_20200127 185330702.03712666 21613.164281565176 1.9329284586494118 0.00022492321232241437 299172476.6981253 34812.8944950259 179752 15217 148036 TRB_20210418 131630535.82182504 2183.5497882689956 83.49348597417918 0.0013853260257682813 93527616.06026618 1551.8125653110149 18096 None 295366 BAT_20190616 422481517.61817783 47915.42361699563 0.33251485420871996 3.771112923865714e-05 46414922.64514304 5264.002868799842 102430 27769 47977 YOYO_20210131 2341934.77921511 68.45269591857436 0.013564144785099756 3.9702493110167507e-07 797998.464651865 23.357557034902964 9402 None 1427347 BNB_20211230 86121656107.6653 1856520.0217482557 514.1864863211885 0.011049231271066677 1354698230.2318523 29110.78849121371 None 759177 109 DNT_20190511 8460171.710077643 1327.7673433150674 0.014559891934450857 2.285077619610498e-06 839660.0822279038 131.7790317824676 60885 6403 1175150 TOMO_20200309 30822042.56470842 3815.3191913913834 0.4295053485559877 5.33907004985265e-05 15964392.765209777 1984.4924298004437 22092 1509 211808 OST_20200309 6867785.763323935 850.1316799548129 0.009897409191626167 1.2303213723369808e-06 199793.6830636902 24.83583668937829 17850 753 839878 APPC_20190513 6743455.224718929 969.7117632121633 0.0633363488838711 9.103094938674776e-06 186760.47528674506 26.842379885907864 25631 3387 1192201 RCN_20210114 23416901.89107952 629.9553466759771 0.04594588609184111 1.229409420378352e-06 476606.86256419355 12.752936475795595 None 1127 5449742 WBTC_20201015 1199848463.8678632 105114.90244319057 11411.500910468274 0.9997108640800441 75351658.19020455 6601.223792576671 None None 152934 WNXM_20210204 87524291.50104973 2335.2672484446 52.016379255003365 0.0013867513943889513 35596945.21479733 949.0109484669497 20140 None 132574 WAVES_20210509 3245722063.837201 55339.2255454456 32.493343120186715 0.0005531488181377006 342358051.06044006 5828.115334994832 184907 58581 111881 SKY_20190608 25376121.01538016 3160.822296284454 1.6917414010253438 0.00021072148641896357 1334715.8845739658 166.25077270909352 16042 3766 431254 VIA_20190806 7085173.730548036 599.9023297260956 0.30656537714353965 2.5954240114181358e-05 226530.59739281947 19.178387242305327 40902 2230 1890047 KNC_20190915 37179626.2584401 3591.699387233512 0.22086169860190177 2.1343185542721976e-05 6380882.840552538 616.6228334490903 97795 6696 205924 NXS_20200511 8871515.841542818 1013.3056271790734 0.14869010418671402 1.6971051901055143e-05 40509.05282712177 4.623584345118086 23612 3523 609605 DNT_20210523 148260055.83245146 3944.228291416772 0.19659033788007133 5.230837942753772e-06 10562700.985150805 281.05031858074057 69043 10075 193568 HOT_20190621 297988158.6959464 31151.276868763027 0.0016769781891731504 1.7535324342281175e-07 19750661.840097897 2065.228179929972 22798 6432 301392 HC_20200306 76184600.58371368 8412.482937454222 1.711576658211635 0.00018894100022633805 27384466.61141536 3022.972116032334 12772 842 804824 ANKR_20191127 7568481.670778283 1055.6524994417773 0.0018950520576290542 2.6447905340913036e-07 948977.1515064255 132.44204966660664 None None 5285 RIF_20210428 231043499.51225922 4193.5644873583105 0.321979578890022 5.842958125650648e-06 10908644.180539895 197.9589866358834 42637 3214 604908 LTC_20200223 4804883822.079394 497745.38571026985 74.91139161856353 0.007760187529183274 4671139764.078064 483890.63079810655 448225 211820 132727 XZC_20190712 80869621.59950423 7106.757050636196 10.230744833320397 0.0008990695954722424 15012037.111547451 1319.2457003849286 60831 4036 268050 NEO_20211204 2483394335.82449 46255.95840157592 35.117362741636235 0.000654884405468558 190006569.58834818 3543.328133022209 430277 115357 77665 FXS_20211021 205557792.48960498 3101.247941676317 5.7663107182046325 8.699626041568104e-05 3413280.5000740527 51.496121830330836 16515 None 101271 SYS_20191102 14614043.96659563 1582.7357991113006 0.0256779322829132 2.78098127829774e-06 1420745.3684009043 153.87011022613717 59954 4568 1069372 HC_20200607 59297220.57352966 6132.386820080924 1.3283160575037065 0.00013737149574888943 11490571.96362893 1188.3294256190643 12669 845 1027994 CND_20200801 18018799.362109207 1589.8510437885263 0.009442217331660051 8.329898025493392e-07 134878.14239928793 11.89891243327818 34300 5926 353871 VET_20191026 212200263.03298646 24550.982742279895 0.0033694278051820768 3.8917967893708773e-07 47668007.45185406 5505.8071899186425 113899 57599 368784 FORTH_20211120 118166793.81169893 2032.1603961521807 13.642607497443954 0.00023451401671697748 7058107.702846083 121.3276265644667 35275 None 122024 COTI_20211007 437825937.87669253 7887.446752653483 0.503543252722205 9.076973219473261e-06 137363661.4175959 2476.1453346375615 162188 7995 74992 STX_20201201 221499597.77905783 11266.250048023046 0.24064626125204155 1.2250510413613257e-05 1460913.5329046352 74.37030750081905 44758 None 104655 DASH_20211221 1341270576.9276795 28459.17870873912 127.8891037113043 0.0027135605000427345 201002271.51386258 4264.881124119341 420804 43611 69246 REN_20200310 57933789.64659974 7317.423415798852 0.06657047277303822 8.399870754815368e-06 11164364.53295811 1408.7209423345778 11278 872 409604 DREP_20210610 0.0 0.0 0.6641376200303672 1.773225241508028e-05 11649486.643178998 311.0373986245665 4021 None 183665 MANA_20190704 69106093.94959293 5763.449085488343 0.051605910591030445 4.300029904086933e-06 29366716.40094046 2446.9630951698064 44982 6288 154801 JUV_20210513 35325916.012930006 685.2090790975672 15.40851958070676 0.00030717336316768835 49436230.459049314 985.5257731218434 2454395 None 39485 SKY_20190421 20758939.68712818 3907.1934482636175 1.395115716270467 0.0002627296785809383 978359.5312376736 184.24570964322723 15538 3687 401033 FIRO_20210420 152784688.9353893 2729.4833765589524 12.974519513406358 0.00023184794816356066 18205125.601100903 325.31617161728786 70570 652 172734 VIA_20190627 12057742.812343847 925.6877954573156 0.5209326497307861 3.999264237228267e-05 9741679.377124442 747.8807474173852 41034 2236 1573301 AMB_20190905 2502608.2532008244 237.09560305183908 0.017339193587181605 1.6415366110609836e-06 226782.7225405442 21.469980131117456 19275 5607 670257 DNT_20191019 4642389.022990764 583.3198867723273 0.0061797777997544675 7.764940138749095e-07 546722.0346075676 68.69606009833467 59923 6234 368992 BTG_20200105 94002929.54023385 12783.914733929458 5.373434016988316 0.0007307733197998419 10215805.95790698 1389.323551882915 74638 None 244799 HARD_20210221 98327059.47454777 1751.504890888906 1.9264076832472525 3.4315197638214015e-05 25583848.752979986 455.72639371164917 None None None ZEC_20190613 603440380.3899628 74287.76624984623 89.80728713588576 0.011044520132143255 487825019.26270574 59992.82929076738 36 15172 179963 POLY_20200621 35149712.30725725 3757.1984994979525 0.05372027328338666 5.741593287434494e-06 3978307.61362251 425.19933153036516 34876 5000 358611 DOT_20210722 12507872639.32874 388673.1391721028 12.401542039727646 0.0003840037133628749 943414148.436684 29212.055652291863 505192 27637 21430 WRX_20210430 1205381879.1206036 22492.263268226892 2.7850635228760843 5.1958206204015315e-05 50792847.17852315 947.5924716666383 123372 None 2746 DIA_20210324 79465402.05676216 1457.6942076615046 3.113012212407607 5.70209935580976e-05 42200368.93624111 772.9834645915848 28890 294 262752 MKR_20210114 1405384543.3905578 37743.038148248954 1549.0784192259096 0.0414498829709005 273744809.2692218 7324.80045378902 83550 18996 39675 STX_20200903 176314147.24369684 15454.546524532956 0.21731454791389274 1.9075025266635165e-05 2489099.146154771 218.4834359219949 43163 None 104221 FTM_20211202 5443973678.768326 95241.9494051631 2.141166128661428 3.7453614709605716e-05 434329834.66113865 7597.365784248915 257040 23198 16767 BCH_20200407 4703875754.164513 646729.60872412 256.0599047756717 0.03519531746872479 4236404222.119218 582291.8338345728 None 290805 142295 NULS_20210826 60451990.597627975 1233.2840403521034 0.6415114536883617 1.3090964938330966e-05 18015186.921668988 367.62582958279273 None 5399 365718 MDX_20210707 871115879.0097376 25502.67686137108 1.6689552992455277 4.8860742366467686e-05 39424928.6610881 1154.213826455757 None None 12360 SYS_20210125 55403865.143229686 1717.3155960819713 0.09157847895473828 2.838595281536144e-06 2889687.9282790073 89.56967414122288 61134 4494 270004 LRC_20210527 523558672.71500415 13382.829022647229 0.42240613137625105 1.078228325382583e-05 149282452.89420053 3810.564223314867 77922 10798 181705 ZRX_20190419 195655137.47784528 37107.52253043717 0.3329892475515569 6.314432294710952e-05 26642816.265271366 5052.2429983698485 149543 15832 214126 BTS_20190511 137632545.10348505 21599.155508447097 0.050861325751693075 7.983504391415602e-06 15129435.840507198 2374.8086721532045 13771 7199 176364 KEY_20190826 3977572.8285600427 393.24053550589343 0.0015213829958972288 1.5041068757319817e-07 1874493.5267664096 185.3207647073574 None 2829 821396 ZIL_20211011 1212508087.6760383 22159.25841216617 0.0961954469088423 1.7578937172287297e-06 67245896.23360015 1228.8641749383548 334215 37819 65872 POE_20190615 14686483.097856333 1688.7361485018187 0.005817924588006 6.704896348885231e-07 1561230.4983191034 179.9247912138326 None 10853 931861 MBOX_20220115 409475495.5561813 9498.697877917417 3.9486671349034324 9.155406113814553e-05 34540825.269363925 800.8658923210768 264432 8425 7442 DOGE_20210212 8951728841.132595 187485.787246992 0.06975470115587286 1.4609485265343248e-06 3377206172.403933 70732.49974006592 522729 1104094 31801 NEBL_20200629 9480545.895595135 1039.5519748485879 0.5776879205533477 6.329603827987004e-05 274628.83873340924 30.09049846944284 38934 5958 1156866 IOTX_20190703 30686680.150159124 2840.0165767262774 0.008785882838499143 8.123675326426722e-07 1567614.8538791009 144.94609527450874 19933 1744 776154 WTC_20191203 14709052.387532199 2011.9028147985377 0.5042758179870929 6.902173915570271e-05 1378822.0422306294 188.7234960440076 55297 19665 1009896 FLM_20210519 0.0 0.0 0.7446612714654133 1.740640504437502e-05 20303044.95456618 474.5822532409594 21860 None 95069 XEM_20190909 424452871.5279846 40828.309928084185 0.04716143017501623 4.536478881402296e-06 35164618.99034308 3382.5002937836507 216362 18359 190156 FET_20190314 0 0 0.24539761263903428 6.346931891135738e-05 32766758.73793313 8474.75180244919 6960 136 214900 NMR_20210930 231490895.46872592 5572.535374301017 40.05865613329671 0.0009637226497764258 16863751.845267948 405.7045638129905 30845 3628 1776451 IRIS_20211111 135818869.6532354 2091.3812721806694 0.11885489164423815 1.829766955844485e-06 9454676.283403495 145.55441515491822 30788 None 479024 POWR_20200207 23451798.35622502 2407.9578877125273 0.05456459963930884 5.6054699533173745e-06 2457525.4315508106 252.46377792804924 82560 12831 334086 RDN_20210202 14908659.818369746 446.5042094899401 0.2330871922710338 6.979029802075913e-06 1310499.9834134795 39.23861431745968 26847 4384 1282732 AKRO_20210519 99610399.76919189 2334.513888932007 0.036984727970962375 8.632305614393932e-07 19175656.261726998 447.5634519679472 39644 None 169169 BAND_20200425 14174219.91393846 1890.6965269986779 0.7141252432651846 9.527686332346629e-05 5134442.3002923 685.0248774996955 None 1100 683896 XVG_20200526 69527631.22335905 7823.3067714652625 0.004266611310380157 4.801507719387663e-07 9387296.530738115 1056.4162863128033 292165 51774 289428 CLV_20211207 179708855.85570762 3561.1266809433696 0.851293650694656 1.686764003991658e-05 51416904.76236553 1018.7810525669397 None None 80482 LUN_20190818 2733908.180637572 267.4670758038058 1.0112507297036966 9.893898175033524e-05 145207.94884904567 14.206888736079224 31014 2200 1281939 ATM_20210220 0.0 0.0 9.701116317380414 0.0001735384589761191 3978688.287350979 71.17278172370854 None None 230170 POA_20201208 5521047.015749379 287.8836487745903 0.01958531841582284 1.0199961172191075e-06 180949.7360483943 9.4237951236 18089 None 178664 KMD_20210108 71841472.35226834 1835.3787763638932 0.5758277028169216 1.4591800761636976e-05 5970745.375999269 151.30207612249376 97157 8411 276744 GXS_20200403 27950657.826831546 4118.835080122537 0.4296167331004669 6.302039790111321e-05 15294138.939124215 2243.4943689056004 None None 493162 LTC_20190207 1983687272.1723719 582455.0285231642 32.867493947578176 0.009650632634123227 742608223.2239501 218046.41281272343 436838 199616 253204 ADX_20201228 35391432.45801888 1333.0266975332474 0.3117002304258154 1.1852481522926636e-05 6816533.720247605 259.2004499299521 52876 3747 13863 SKL_20210731 309580944.8997934 7415.863943167174 0.25537034110454904 6.112006861175149e-06 68258316.90924688 1633.6873713568175 None 2332 188999 KMD_20190515 133311676.30775364 16677.975281601826 1.174693143515119 0.00014696014447965365 3411456.9160549254 426.79077854266274 96961 8362 329492 GRS_20190714 21425168.759048782 1878.3542981606386 0.29369010703008824 2.5747945375423777e-05 368190.64912965114 32.279441815045026 38643 107022 None GVT_20190805 7885963.396764275 720.1188682609338 1.77743648273007 0.00016230934433127873 326532.92007208534 29.81785547581041 21362 5730 213598 CTSI_20210301 47957997.32018944 1058.3278487920059 0.1709687330812052 3.7878327339929285e-06 12309179.59750287 272.71134650026147 None 604 224647 NXS_20200321 7439888.94821583 1211.2461617085632 0.12814711188336694 2.0703824230674314e-05 87371.06529321842 14.115926235808942 23631 3532 599319 OAX_20200905 6654948.495834636 634.6960832632702 0.1195190427887396 1.1398776170975373e-05 866033.309813234 82.59537245976072 12701 None 1276581 ONE_20200321 11455331.720933028 1852.9937649301298 0.0022561817561446693 3.645153591458844e-07 16044837.999027712 2592.251209249695 71130 None 395411 QLC_20190915 3476403.977292814 335.9114530605648 0.014485016572053392 1.3996310544190201e-06 39651.1098269785 3.831333183497425 24754 5741 940522 EOS_20190801 4508064060.445888 448237.44161023665 4.425898533113895 0.0004397923219072115 2182683658.4379587 216888.73049197267 None 67544 89433 UMA_20220105 580367690.5708982 12609.467196821142 9.066621189616672 0.00019736594310052489 16235510.221511865 353.421271229087 52664 None 196141 ACM_20210603 14769511.30744682 392.5036323798879 7.37823688152852 0.00019606574150051072 4247045.670211249 112.85896236283416 None None 34079 COMP_20201101 11790.318192034354 0.8550340955542055 2.483724178040058e-07 1.8e-11 85.17614670903036 0.0061728699761355674 None None 1770443 BAL_20210704 242255322.47111446 6988.023483995872 22.47251696719755 0.0006480797121496886 35239836.86255434 1016.2734936821923 89577 None 89492 NEO_20190618 999940244.6851791 107271.31770859293 14.177876858194308 0.0015216661276243187 532523633.04758036 57154.05646929479 322239 97701 201306 ELF_20200905 46221025.23778751 4406.3631456295 0.10022495432675438 9.558839091074457e-06 12295288.22751975 1172.6488930299256 81824 33355 608633 IOST_20191026 53712288.57274297 6218.708815217564 0.004471529413567806 5.173435692067678e-07 20669814.351276945 2391.440275196287 None 51101 92692 WPR_20200903 5963889.407990926 522.7632555551594 0.00980020983627764 8.586470686966493e-07 476745.344432833 41.77012526779834 32922 None None VIB_20190905 2797172.9077954446 264.8355782627973 0.015324554530457548 1.450651685016993e-06 398829.05862947233 37.75392262037329 32335 1120 4329648 AUDIO_20210212 59979768.74966123 1258.0822903872913 0.38965665004705635 8.161002761211307e-06 7214083.517173755 151.09239248490726 25879 2560 56398 ICX_20210204 471882159.8198681 12595.63812801642 0.8074664207467838 2.1526715590338938e-05 69179356.27511032 1844.2925786062303 119060 28417 278107 FTT_20210221 2794835943.5823426 50020.706046724976 31.77701084883791 0.0005651933913698765 182323185.24069783 3242.8430692157654 62740 None 4654 MDT_20210723 12638531.339462314 390.77615569017405 0.020861827507903653 6.444100666491265e-07 1140410.6952626025 35.226642146433775 34086 314 701499 MTL_20190614 26529143.058503285 3223.0823391998765 0.5762712083299103 7.001242181330735e-05 5803280.156841159 705.0529201676782 33184 None 939567 CMT_20190618 39066841.95370504 4191.280438122735 0.04882018987541983 5.239714663953949e-06 17506451.907672927 1878.9114300561619 291351 1643 705322 BCD_20210114 160826887.77499908 4326.522710577385 0.8644096023590296 2.3127547810412376e-05 9141739.210468302 244.590076375172 27965 None 2021519 DUSK_20200612 7650868.367323554 822.7781546775441 0.02867039331684623 3.082374072361959e-06 431856.4699150322 46.42919164508639 17356 13333 1126512 ETHDOWN_20210828 0.0 0.0 1.8881154891348728 3.849113134160757e-05 4858729.139942337 99.05007535556385 None 605801 153 TRU_20210201 37234851.20849901 1126.428515743572 0.24789519411778663 7.49752096547147e-06 9538998.637001911 288.50435170818054 None None 115581 OCEAN_20210805 256187828.4668979 6440.941772517222 0.5929789293561419 1.4912112216400999e-05 41025429.83888205 1031.6990759650819 118486 3316 135729 LRC_20210128 495507559.24216145 16371.324692086358 0.3995679871329088 1.314060660408882e-05 120225718.86705592 3953.8674923931208 52577 7899 177149 ANKR_20200306 9097980.904659312 1004.6006333235634 0.002274899009489578 2.511261720032872e-07 7099821.793162073 783.7495472919252 None None 5490 ETC_20210206 989080869.747204 26096.427961906043 8.504464339449411 0.00022349511825231613 1297623337.0925992 34101.20491953891 271871 27421 152499 ETH_20200421 18894679854.84961 2759253.270573302 170.70405868653958 0.024932399864779235 15901061387.704433 2322449.8810578636 453740 458249 21984 SAND_20201130 28128003.481894508 1550.5735462669377 0.045209266306146786 2.4894399901147686e-06 6341424.39746303 349.18937596621697 None None 77261 KSM_20210427 3525713287.0481277 65427.136059528086 394.1644331092777 0.007312054382626238 383576088.6488038 7115.632422617737 52728 None 86081 MTL_20200313 9858405.706906244 2048.4958766116215 0.15131937161477751 3.157701705709115e-05 3551199.091795222 741.0569651334275 34765 None 606546 CTSI_20210902 333353098.3420512 6854.146609668104 0.8169439141134728 1.679046213187125e-05 36605235.386526346 752.3390626548374 51655 4472 229659 REN_20200410 47901085.434652105 6572.483915602719 0.05490742209419824 7.530386017424393e-06 2262681.379132205 310.3198724222039 11520 876 365402 ACM_20210506 21256389.333893992 371.18805464383513 10.604391603450054 0.0001849780692159499 2744507.277085488 47.87390696692397 None None 39485 SNT_20190920 55695985.22388769 5437.987946868648 0.01572816348986041 1.5346597456270859e-06 20278090.358966623 1978.6142871770833 111158 5707 299805 ICX_20200530 190096589.6830715 20182.301187060537 0.3469142433625008 3.7001021016740737e-05 35295731.49484559 3764.5560187546553 112698 27711 112473 KAVA_20210221 270873206.71551764 4825.078151511282 4.654573830101417 8.278734525820578e-05 109079089.96403767 1940.1063579448942 61743 None 92615 ELF_20200317 21899063.759571757 4338.783610088528 0.04748009917678129 9.428589045618521e-06 34105825.36365307 6772.728300718707 83090 33433 652715 QUICK_20210826 236088581.0524159 4816.567387618093 653.9275312048878 0.013342532419733294 28968790.773038637 591.0701287305728 47099 2283 4739 BCPT_20200914 2410669.1922399555 233.47892067 0.020757696640846274 2.01e-06 77884.5119745231 7.54167824 10503 3192 1330981 ONT_20190716 599716216.6599238 54758.496653057846 0.9188716362809597 8.40257828225108e-05 134862874.06171423 12332.471826635312 81284 16277 245341 DGD_20190804 40702339.50772113 3772.2334714994454 20.348083109379143 0.0018854903663967826 2075719.6103632743 192.33995200643017 17195 3363 575541 WPR_20190614 8295798.614986449 1008.8107708267971 0.013749037147854568 1.6703999339341348e-06 344839.348676141 41.89527012343547 34888 None 1388186 CHR_20210203 16407211.522986468 460.6486100425544 0.03644653837722141 1.025550445956319e-06 4070458.926729575 114.53655555292396 39267 None 474695 CND_20190804 17286238.791492485 1602.063955441436 0.010005747188359868 9.271000868912243e-07 424307.3030386487 39.314938715755616 36098 6132 388996 SNX_20210513 2913007750.3614163 56477.50942324149 18.216825512926466 0.00036315776669752634 841940920.6871669 16784.33952342841 124947 6434 31416 NULS_20190524 54449431.47960911 6907.5251412502885 0.7599349354532577 9.66327656211354e-05 6336955.991324251 805.8026476909497 20851 5318 698282 ARK_20200316 16471622.125727873 3048.842491550533 0.11438187416999285 2.128587371991073e-05 773574.0694067836 143.958123381668 62648 21963 77737 PSG_20210117 0.0 0.0 10.054554081359578 0.00027778183025082675 2996973.031385247 82.79876433445878 None None 41999 KSM_20210117 934902895.1130071 25766.602244411064 104.1697829213799 0.002872909588226086 233833108.63284084 6448.908320592492 29881 None 134935 AION_20191026 24755586.911250994 2859.211083498954 0.06957727331709289 8.036397411221865e-06 1531148.5661670358 176.85255237384987 75445 72558 187992 NEAR_20211021 4585067815.116113 69174.60713586699 8.73252908234006 0.0001322336376832708 226275267.69117522 3426.4073422979054 None None 6621810 QNT_20210823 2422412432.668245 49102.241378726576 184.44013851512392 0.003742610180990561 29799575.68672988 604.6850552826321 40474 6400 134103 DUSK_20200324 4522123.822622797 701.6625387231953 0.017392912810157864 2.684153394331751e-06 213108.77054279836 32.88791452345161 17633 13340 994052 BAND_20200314 6578358.9833535245 1192.1706673324888 0.3683626566797961 6.621584322392389e-05 5285638.591878309 950.1316433450847 8584 1055 796393 AXS_20210806 2375273155.0814295 57973.585093647154 42.70101301865358 0.0010436288931846757 758021286.3016493 18526.326663206608 330589 None 1596 ARK_20190528 91594001.23622979 10387.487755999084 0.6451605852257849 7.330990138569347e-05 2218728.193865058 252.11513043218756 63487 21739 215073 STORJ_20200308 21379842.760686543 2405.3058614172846 0.148791088886694 1.6727676327854175e-05 1240430.9047829192 139.45409525214885 82410 7995 120208 AMB_20190509 5340451.771567634 896.5227936722157 0.03693436897812192 6.200406599123598e-06 1156866.901798448 194.21057867450568 20704 5692 611574 TOMO_20210711 201831222.3824455 5985.236059212647 2.4199217620459805 7.179596104921989e-05 21440600.86503149 636.1150053364503 None 2196 118140 MDA_20220115 8506516.178204434 197.2326548793784 0.43336719727599615 1.0048080914180081e-05 906206.2260788794 21.01135836262959 None 391 1130423 VET_20190510 331332244.55563 53664.59073563598 0.005974156233113136 9.676986576789837e-07 12202068.537664894 1976.5009290110515 108241 55449 330753 EVX_20210206 9510220.722158263 249.49960957518886 0.4362486569797368 1.1444936219045357e-05 4404399.887239779 115.54895352943454 16888 2812 1099607 LUN_20190623 6572576.107038267 612.6052237013878 2.4325354470336946 0.00022677786333399333 3688329.3350565215 343.85169880923024 31330 2222 2294680 NXS_20190723 13932260.844263105 1345.4139944645724 0.233138093122703 2.253324916632029e-05 89542.49871862668 8.65445628201052 21455 3535 1023997 XVG_20210725 315662508.2801931 9241.1325096803 0.01929343164686923 5.63899448128499e-07 11087271.561155362 324.0536172630984 321857 54464 103436 OST_20200704 6610150.503404626 729.1667387086013 0.00951209197654011 1.0489299102629664e-06 458643.50447454606 50.576139421032586 17637 755 819752 TNT_20200314 10504578.16773369 1908.0109565842824 0.02484759107229666 4.4665336322774104e-06 511410.1886804785 91.9296683925812 17713 2563 1226899 LTC_20190719 6417532568.125338 597959.108468036 101.25267252544184 0.009489836659615173 5551382478.996295 520299.480959251 450666 206484 151076 ELF_20200129 28906552.633513197 3094.3543152908005 0.062439006290393353 6.677685167268937e-06 34850114.33262651 3727.1267655073466 83582 33472 920843 CRV_20210930 909273234.6317303 21885.794943077566 2.2861691143501517 5.5000171483217277e-05 181942799.39858618 4377.141264067563 169902 None 14064 POE_20190220 10863475.273637347 2775.7406592289353 0.004778198894444114 1.2203718804943471e-06 351307.82846151874 89.72548123739128 None 10988 525108 ADX_20200305 8751054.7775042 999.6455547704315 0.09563905394764287 1.0919162313944866e-05 759521.9384024208 86.71502889351265 52476 3778 53936 JST_20210603 101889690.91063939 2705.442252482822 0.0710497935664673 1.8868340546526687e-06 23628813.797721673 627.4986640584672 None None 83188 FUN_20210610 253217688.50359058 6746.009344059657 0.024438141486688335 6.524902073422501e-07 33738024.98018585 900.7939874081892 None 317 199069 SUN_20210107 0.0 0.0 0.0002767779974586896 8e-09 75.45328022120574 0.002180904 41 None None WBTC_20210617 7237329265.358182 189213.85317661284 38329.5581281631 1.0014865459828632 399538517.37278557 10439.265916211623 None None 229345 NEAR_20210221 1160675573.6481295 20773.244962153345 4.047632408576875 7.199214233537157e-05 114351311.01748519 2033.8793220359657 39102 None None GO_20190701 12607050.537135007 1162.0170305334752 0.017158805247229666 1.5832150330992042e-06 1191884.5307424944 109.97324578263222 9969 678 942776 TRX_20210220 4386621751.79172 78543.78021871031 0.0613594572606049 1.0967335979850185e-06 3544075050.159017 63346.488949232844 603549 84822 27627 YFII_20210708 87283679.32734762 2568.844671238252 2196.6345880874237 0.06465147684228194 24834348.92879833 730.9260007880083 17380 None 427366 FIS_20210828 60976881.93286241 1243.2109212231958 2.2604922887613914 4.609009952601719e-05 59285599.47114336 1208.7982753446229 25888 None 372916 EGLD_20210603 1852076739.2957947 49214.30117244428 103.94427621014516 0.0027638971444398064 53707319.21458542 1428.0873524252952 240126 8924 28492 SKY_20191102 10635218.771783985 1151.88265865136 0.6645527537399176 7.199266616571e-05 272277.07593067636 29.496458365026 None 3803 1279974 STPT_20200501 7991063.719242863 922.8051640931521 0.01132621586640281 1.313991261792281e-06 2335091.3701071525 270.9015695973882 11236 None 1326696 ETH_20190915 20297648872.897217 1960833.401398604 188.30568158376607 0.018196744892195197 7236471987.494058 699289.7589092094 447896 445634 24829 RVN_20210704 508774112.6790809 14676.080732974546 0.055794240010871694 1.6079552611495175e-06 22879582.979666024 659.3753372730306 None 44067 58646 MATIC_20200725 77293389.29878083 8102.939135460199 0.02062644097848558 2.1626344646155134e-06 11432022.11417822 1198.620986051649 45234 2055 96762 HOT_20200511 84987519.9887566 9709.088173607752 0.000476739766515918 5.445327458566606e-08 11330206.06776537 1294.1375262841793 25179 6990 565992 SYS_20200105 12017221.84610434 1635.3870567430338 0.020970560611156642 2.851942751586608e-06 212138.05072436604 28.850233778547448 59341 4544 919572 FIS_20210418 86601369.96970518 1436.584618307093 3.1791406770375468 5.288855471596675e-05 6761105.250553609 112.47853470816744 18574 None 230666 ZEN_20200422 50095450.62243959 7315.053516402495 5.6351376884344715 0.0008231935846346518 3445084.3425561585 503.2656673390697 60836 5142 38653 DREP_20210704 0.0 0.0 0.4659175563142515 1.341374238572656e-05 6041200.990742835 173.92586454837084 4092 None 201937 DEGO_20210430 81890944.54934557 1527.7063226652 15.111638451588203 0.0002818757587735317 100838611.70319422 1880.9317254754794 98216 None 65410 XMR_20190622 1863758021.0138059 184115.5350633849 109.16527777690705 0.010785198582372462 161831301.44701782 15988.44209893164 318321 158596 113923 XZC_20200319 32082227.804280423 5961.292265371669 3.3071105598565214 0.0006138193175684538 56046588.759544216 10402.57900114345 63668 4093 90239 LTO_20200901 25495168.632428575 2182.248887949987 0.10528905778862302 9.031239452657796e-06 3604744.118126041 309.1993411291956 17719 546 1139240 NAV_20190411 15395163.783783026 2900.7370475472017 0.23763423005500087 4.47723846535467e-05 694325.8047055447 130.81710490935984 48647 11356 988851 CMT_20190614 34911798.59578371 4246.04175933734 0.043701041913798776 5.311841404040522e-06 20060584.072609536 2438.3547027622894 291455 1645 806904 OMG_20200905 593708741.9242618 56623.22004961408 4.233356312244388 0.0004037438715147226 752500521.6762381 71767.51766905694 283963 42947 113182 FIRO_20210809 73937347.42730235 1680.689643853864 6.046587361797231 0.0001374845795653913 11367863.933474896 258.4773691231062 73869 1112 285212 IOST_20200711 96689399.97167777 10414.40048596475 0.006416421502459314 6.911129980821787e-07 54965505.36846184 5920.336622483386 60 52178 403755 INJ_20211207 421849076.13918954 8359.398835507453 9.664371589729544 0.00019148973538380467 26270329.481992792 520.5199732073775 94234 4398 111579 STRAX_20220112 177637460.27520508 4151.782465620523 1.338213042318301 3.1277014632804495e-05 5158791.627569956 120.57243213201063 161294 11164 207386 ONT_20200407 273434241.0122446 37583.3884877336 0.4318144819048265 5.9261004927583644e-05 106988414.89776571 14682.78913315434 84090 16516 252464 RVN_20201018 92378737.83112705 8132.428165076801 0.012722337468869806 1.1194626360835812e-06 4269637.818828811 375.69354055287914 None 9454 230574 COCOS_20210727 27843497.463132802 741.8138460851187 0.6569394719845356 1.7606819951572575e-05 9365329.816423113 251.00284409267095 97344 1200 416135 FET_20190614 0 0 0.21023810488438152 2.5554344274781534e-05 46876934.21781092 5697.869642646399 9506 265 299153 GVT_20191020 4614355.448263608 580.6691489905181 1.0416421507063 0.0001310309820279189 511309.61391175585 64.31901856673608 21150 5688 109882 POA_20190224 6384452.563779424 1551.592715154538 0.028998144844284 7.047324706999209e-06 326974.92304909066 79.46365073168589 16478 None 772242 SC_20201229 153486730.89693618 5660.266462064178 0.0034504959241488304 1.2712400054299396e-07 8822492.046138972 325.04037341837903 107223 30091 163532 BTG_20190909 188128321.6873152 18111.64949064996 10.746616531719903 0.001034008991292113 10529168.7745882 1013.0867842563603 75014 None 255203 QKC_20200901 45108849.925092384 3862.3981127727598 0.008459129764529135 7.24541941030061e-07 2604728.799569251 223.10040309469775 61929 9217 295595 MITH_20190704 19044874.29193206 1588.3427502231561 0.04390904467971053 3.6586934136079633e-06 9496172.16533701 791.262547596716 75 2075 608806 ALGO_20190803 158733679.00084832 15081.48170911897 0.8013895102278663 7.614009300583776e-05 323521905.35518676 30737.84676338681 10852 528 241883 NBS_20210128 0.0 0.0 0.012273361075662334 4.045420036231064e-07 3931346.895943477 129.58104470471048 None None 755646 BTS_20211002 115227991.4341067 2392.9266526799406 0.04257078260746982 8.838109299263481e-07 8493289.753998524 176.3289715584936 6943 7327 234700 MTL_20191127 16039377.608463096 2237.173821433512 0.29573094903325536 4.132149620434775e-05 13182238.934807286 1841.9101480250922 34587 None 268232 BNB_20210725 46583469226.00497 1363460.3752596793 301.4738994735757 0.008823778974700484 1507391380.4043567 44119.535363699135 4585930 566160 142 CHR_20210131 14654428.928404436 428.38004113068723 0.03283913655276458 9.612073694186811e-07 3292117.721460094 96.36087141867564 39116 None 474695 SAND_20210723 352765762.23911905 10896.735114405323 0.5020359029666652 1.5507605437176412e-05 387150643.84068674 11958.864682689493 144578 None 30642 DOT_20210201 15447495133.606997 467278.1307486309 16.14345479897933 0.00048695307954819153 1145966595.3844478 34567.071895731686 None 10209 24755 SC_20200605 123807106.56910706 12665.510725403241 0.002794098327872451 2.858372456975757e-07 4881334.502473023 499.362243481908 106408 30072 166069 REQ_20200511 8484865.667788427 969.0249931978294 0.011058898086117737 1.2618599580866883e-06 71975.50957137409 8.212663936655 39137 28118 689696 FET_20210823 384654267.0626946 7797.032697336308 0.5583052803423799 1.1329716229257066e-05 26921244.05247367 546.314115936812 72233 3725 152406 AVA_20211120 133601004.24043894 2298.2728137870445 2.519763143550967 4.331428402380178e-05 6518553.529538854 112.05278548717313 133876 10905 49771 ONG_20190618 0.0 0.0 0.4341142849951086 4.6592096235700964e-05 5784824.48901466 620.8666902123425 80389 16242 232873 NEBL_20200113 6792661.038044599 833.2413669104877 0.42770484456599006 5.237140153829814e-05 50755.66607305924 6.21490591473962 39818 6039 753189 VITE_20210620 42746574.14408394 1199.1020402907986 0.0654452955612711 1.8374072887716755e-06 5052810.312693876 141.86001327830354 None 2344 185769 FUN_20190126 25385683.045256954 7118.780359700644 0.004321835699158777 1.2119508085788124e-06 892953.8223962954 250.40658238983477 36488 17876 460903 STORJ_20191015 18911213.454803597 2265.5369951698713 0.13151304478176606 1.575659327083362e-05 2183538.617858356 261.6100170887573 83245 7824 145218 CND_20190725 17467612.799590014 1776.6095770723953 0.010017535930032838 1.019748415388477e-06 409863.60985788814 41.7226121869884 36147 6131 486164 CVC_20210107 70530872.90698494 1919.9286929961088 0.10558825592478217 2.86074348270638e-06 51492904.72842972 1395.1171966739705 86594 8060 183713 RENBTC_20210304 871950929.3383943 17145.693907440524 50591.06244803214 0.9984774271220591 17207746.861260623 339.6162480329075 55335 4040 64010 ETH_20210722 233005814487.5354 7240681.681293044 2003.7239214521073 0.062041780435591 25849497421.028152 800384.1378524646 1445456 1044750 3522 HARD_20210324 71871878.25095294 1517.8470889414311 2.0130018773470693 3.6927719116551294e-05 10801327.418437572 198.14605713117095 26029 None None SNX_20210110 1847479564.4082458 45655.48451627954 13.300001860091788 0.0003290857280385871 259276756.43149257 6415.358512825976 None 3035 45504 QKC_20210511 193433323.23544055 3464.441402065631 0.029692563995026677 5.314067166713611e-07 12529920.584745485 224.24752403355112 73268 9467 369620 REP_20190601 216853110.79002735 25281.215127428753 19.68901209485667 0.002295314228542259 21738616.72689034 2534.253930144756 125560 9971 263200 FLM_20210729 0.0 0.0 0.40733404747883756 1.0176863495638542e-05 11267748.856291842 281.5142577041192 24063 None 74148 BEAM_20200430 20904322.922574453 2391.351695386266 0.3455506341421917 3.950586936712063e-05 98428172.42394161 11253.0267278415 14979 1476 307022 ONG_20200105 0.0 0.0 0.09883295731683268 1.3441030092807956e-05 2917766.0056502447 396.8087341552983 81565 16277 336672 VET_20210418 15342926231.565117 254617.7053796666 0.23411778793186158 3.894810797914598e-06 6277473141.825828 104432.77459770802 261115 129500 33497 HIVE_20200704 74803128.22250164 8248.0873998969 0.2070439224288652 2.284211322322084e-05 4839826.720967871 533.9537072337898 7935 91 120272 QSP_20210202 23346553.65236344 699.309656704015 0.0330396488135527 9.891734428951919e-07 1187029.6916682732 35.53846027699549 58665 8163 199881 BAND_20200323 5626523.420877242 964.622744938643 0.3025886638481326 5.189407920305822e-05 2021705.4952207457 346.7233165975424 8692 1057 702901 LUNA_20210219 2944737201.8578763 56975.76817075611 6.703412352106336 0.00012965869042715568 340895501.15291566 6593.666319528665 26951 None 71119 ANKR_20190908 15828842.766709318 1511.8502610109638 0.0031151789550424125 2.9754929798168176e-07 2391864.8294460643 228.4612573273698 None None 7336 ZRX_20190903 102587631.8972312 9927.72886161669 0.17096635482949268 1.6533671936543948e-05 48309432.67482447 4671.868404065188 151190 15903 155880 HC_20200318 41222672.0314602 7591.046662106921 0.9123395924198712 0.00016962259993249796 27135236.92699249 5044.99582785019 12757 842 891141 SUSD_20210217 301518872.8974796 6130.971896993354 1.0215402536022125 2.0758969818581582e-05 51905142.88250463 1054.777127702552 82059 4735 30058 SKL_20210809 335731590.3467453 7631.592582073933 0.27672675470524033 6.290909678381364e-06 37297603.140037574 847.897243705313 None 2360 190534 BADGER_20210825 208612339.9220346 4341.136786350762 21.941395672814167 0.0004573914426374477 17713471.203961123 369.25591557218917 None None None YFI_20210107 746807653.8026803 20328.933750412638 24829.60060351467 0.6727179787428952 411766456.5512487 11156.147969857802 62940 2529 18869 AION_20211120 82738992.86933078 1423.3184775279228 0.16620088358424126 2.8566919738814937e-06 17937397.003933504 308.3113455741061 838 73881 368843 SNM_20200113 4831378.662802663 592.3368917977018 0.01105277519299084 1.355571515007102e-06 148801.6261558215 18.24982796460778 30471 9748 None STEEM_20200223 71694449.46369766 7427.295709783172 0.21158791684695025 2.1916612739968476e-05 920568.873498875 95.35398713499208 10680 3816 201794 GRS_20210805 62270625.14562109 1563.6312495995721 0.8001176833181681 2.012119501939557e-05 9435774.840601198 237.28892597333723 41440 106850 8715439 GAS_20211216 83517833.42898372 1711.9084396784813 6.006456050219118 0.00012308082803514357 8083107.0209958805 165.63436024884626 431417 115594 78285 TRX_20210602 5463441274.013716 148899.8704823396 0.07617270498075515 2.0765739610200747e-06 2101993766.7762778 57303.27580485576 None 111125 19068 BTCST_20210519 539600007.7017174 12646.307166383705 74.22024265170357 0.0017348929715990413 32599982.20843584 762.0222999415237 None None 217036 GLM_20210711 314160681.8300396 9316.327865829386 0.31400299541793186 9.315061236101484e-06 2910977.799045094 86.35566173165384 158612 21018 170065 LRC_20211230 2427058118.9532456 52330.53067978274 1.9560725328541477 4.203927245274476e-05 245000811.07146385 5265.477468132669 169386 89332 53381 VET_20190614 421932001.6175688 51316.201700514845 0.007618238133570362 9.259933166710576e-07 18653174.061305214 2267.2846677445 109357 55909 213726 OAX_20200410 1847017.5753661513 253.31550057360286 0.03529485417395148 4.840632689147222e-06 80877.62781729094 11.092237046895 11994 None None LSK_20201130 180735622.50874415 9963.722768580801 1.2778450346385144 7.032819362788321e-05 3740212.0831519407 205.8484029463474 177195 31055 209509 ONT_20190920 530692786.129157 51815.24238883112 0.8174335324463796 7.976025540298761e-05 130803081.14413816 12762.979184779808 81614 16292 297056 ZRX_20190228 151871754.22896057 39738.503123306196 0.2599531200379436 6.814394491472512e-05 43362632.89985298 11367.05290266846 147185 15610 295106 VIA_20190615 12550058.620050844 1446.0929171387213 0.5422417262819683 6.248033921535985e-05 2484689.8096867357 286.3008408051714 41056 2233 1811232 QLC_20190426 7357115.339984088 1416.2621239763864 0.030675757281608353 5.90178927231688e-06 1840222.6662167262 354.0452576427092 24978 5823 940522 ARDR_20210718 149079155.94013995 4717.075097634379 0.14922845976027238 4.72179928142444e-06 7085274.746308082 224.18810232013595 72200 6979 None SNT_20200208 56152663.84772593 5733.297316383306 0.015749585650262 1.606506121895163e-06 50035235.50782558 5103.747739068351 None 5612 238861 GVT_20201115 5520348.693487052 343.0878987820057 1.2428810820750227 7.723532014477206e-05 174480.84079267332 10.84261703883404 None 5476 262282 NAV_20210207 22392546.954401426 570.7145174771961 0.32191333661523136 8.186286051687289e-06 904707.616214196 23.00679871589733 48735 13673 604574 SAND_20210602 229492417.98005906 6254.554519775361 0.32682411304890785 8.9115731615167e-06 39860578.74481264 1086.8857270994508 122091 None 20999 NULS_20190201 15501509.2002481 4517.899074685149 0.3848077470515758 0.00011214902987670224 4726611.420415461 1377.5317401099212 19617 None 445264 IOTX_20200410 10731829.135788508 1472.1466410700166 0.0024741112371364405 3.3932039135347737e-07 2938832.721240379 403.0561981715364 22574 1816 530142 NEBL_20210729 16465588.875418058 411.79784714574873 0.9111948790305663 2.2765359191587633e-05 691863.6384736156 17.285571510463058 40603 6111 1825448 ONT_20210110 516094576.2848582 12753.88826509503 0.6375651868970711 1.5816569427827647e-05 328161863.115663 8140.963462567626 None 16686 288289 ICX_20210418 1622123573.5110278 26919.335718367132 2.7109661309352346 4.498824473116334e-05 270052738.3964737 4481.501464243721 134716 31145 432969 NBS_20210314 0.0 0.0 0.02944145210111474 4.799270033160424e-07 19135047.29584989 311.921636047981 None None 714123 NEO_20200421 510868785.6620966 74603.87677911104 7.229384807071173 0.001055897054663711 407233526.1956904 59479.01409947915 321090 99285 240659 DGD_20190801 38713855.199296005 3849.123845839305 19.382991080297675 0.0019225551669287129 1783412.479147915 176.89266132078896 17189 3363 575541 WABI_20200317 3111526.2232848792 616.4800734269503 0.052467776056712795 1.0419040969868163e-05 489600.74449471215 97.22482253210941 36764 7762 2574958 AION_20210916 89874301.38176027 1864.866987948137 0.18132048784821136 3.761994333253258e-06 6796984.25537004 141.02221186013614 607 73501 662533 XLM_20210821 9036666498.876184 183903.36103293058 0.38469006858886406 7.821332720177548e-06 756612586.5875726 15383.0817667926 613354 198148 37413 VET_20211021 8191148341.441478 123574.96589318542 0.12267124789781321 1.8509276955412008e-06 430378913.8626048 6493.781264121603 457237 208926 43716 KEY_20190804 5285707.14087004 489.7832311836488 0.0020227934174699013 1.873822661191289e-07 50259.03313934832 4.655765359562535 23877 2830 851050 ONG_20191216 0.0 0.0 0.10347471633801977 1.455299696518996e-05 4319574.0584901795 607.5179559687584 81563 16281 323482 ETH_20210724 247068794868.14566 7391388.0700987 2117.154607794504 0.0633170278106658 20760571836.05241 620879.4102562035 1448943 1045764 3522 DCR_20191020 149698863.83871284 18838.061533119 14.190142505040056 0.0017850163861847892 8068027.713625361 1014.8990165461074 40547 9640 135598 EVX_20200730 7392394.883959241 665.7472609808594 0.33880710454386115 3.0533487900640584e-05 7972632.885290741 718.4981851753346 16792 2830 947797 RLC_20200511 23290364.112046216 2664.946588141037 0.33240861650244735 3.796775293433542e-05 3004837.373392956 343.21289321933443 30417 3586 510441 AION_20200229 58411669.27409581 6679.566282517134 0.14873945010499098 1.7070805162114777e-05 8649685.246005315 992.7231238514635 591 72544 253863 VIBE_20190302 7414426.005780624 1937.779898181989 0.03694225972582664 9.670093002421012e-06 200710.92456996132 52.5385648197514 20463 None 1228279 MDA_20210218 24538864.260632347 470.182220920699 1.2537951830553178 2.4053278666194488e-05 2667335.6382054957 51.171170753491275 None 370 1150180 BAT_20190618 436289717.2111142 46804.16966583892 0.3434389525360918 3.6860203132523554e-05 73380944.81261161 7875.741851283205 102552 27842 47977 RVN_20191019 141263060.3361624 17749.816301977466 0.030315925493804963 3.809270247086622e-06 19364245.207477957 2433.1648110564543 28307 7090 246956 TRX_20201115 1802217154.0708046 111991.42057310305 0.025147765103811916 1.5627365455395996e-06 638371882.3664191 39669.81026348506 542524 75892 29248 DCR_20190302 156509078.30061728 40970.865709779115 16.688722743756156 0.004364452673889921 1190149.581191518 311.2491951430904 39820 9369 242491 AION_20190729 33663909.98204309 3530.107393324902 0.10248950977505689 1.0751051785298383e-05 1328005.3244544119 139.30649142236507 67550 72604 240336 CMT_20191026 13189742.765789144 1523.383745238732 0.016428339586711395 1.8975257211306517e-06 3305371.020082761 381.78091555644704 290676 1653 883595 OAX_20190515 4237508.302720402 530.0086845572308 0.18059816057011502 2.2588414388656803e-05 823466.9103943844 102.99557730054364 15206 None None NMR_20210727 213268947.87495944 5693.265611023942 33.783441738345026 0.0009053899610688621 28192505.732188765 755.5539149916843 29556 3540 583885 SC_20200106 55156418.169874854 7510.975744592144 0.00130781372415916 1.7805829163519788e-07 2325315.182946557 316.5906897444847 107652 30256 203685 CDT_20201224 3744409.6312574204 160.13925930575394 0.005692233656031534 2.4411616927210056e-07 311905.55384948076 13.376328798405584 19202 295 518936 XRP_20190801 13704301136.532732 1363334.7707024382 0.31989806364828316 3.178760451304701e-05 1228517591.1468859 122075.23508999511 936594 204199 35107 LINK_20201229 5042440339.229828 185968.17874814064 12.670463355940075 0.00046651286759644476 1278788612.8135517 47083.624809478606 110864 26040 46547 MITH_20190314 23592800.211327262 6102.011117880298 0.04628624415664301 1.1973276332368033e-05 8975165.979087556 2321.6863747425227 51 1988 608667 DOGE_20200704 288759721.5848906 31844.590520793543 0.002305199375022509 2.5429742480856973e-07 63141653.197570935 6965.453825936984 140588 158860 117230 ICX_20190801 130815705.4636031 13013.84127768966 0.26668872449333964 2.6500303270368762e-05 16927165.661437303 1682.0172070944213 114030 25838 229714 NULS_20190130 16542444.907843187 4843.051271401101 0.4133182413905553 0.0001211083960654772 14114397.317643868 4135.728476003777 19646 None 422486 TROY_20200312 4622244.4682869315 582.5842823965306 0.003967591818272044 5.000723454047473e-07 4903190.099430435 617.9944624584342 8783 None 312111 QSP_20210603 31446709.471462008 836.1737045961456 0.04405523074942372 1.1714365706852126e-06 399141.2953521305 10.613239388202945 65262 8477 240687 EOS_20210930 3627280846.0155487 87334.01725886115 3.754191722210898 9.027664235351626e-05 1063358739.7859944 25570.472620565124 None 94012 82513 EGLD_20210806 2132015476.271873 52036.36489984362 108.90527370825318 0.0026616860403866397 109150054.88585638 2667.6685848603006 300231 9864 43311 TRX_20190103 1300297560.2215447 336170.4780622243 0.019837292068530826 5.128604530336705e-06 96596672.45929195 24973.475728376765 362838 68712 91316 CHESS_20211216 91286676.55765438 1871.2523283043374 1.8228726621507076 3.730094282617265e-05 14154108.270393226 289.63163160639107 None None 49485 ELF_20200612 48450653.44147049 5221.839681863405 0.10663485909903858 1.1466586745272206e-05 56829799.75537648 6110.983163641174 81351 33386 507213 POA_20191017 3669861.043784279 458.3381106732522 0.016668486615405986 2.081768920386582e-06 169537.5933727375 21.173973430455117 17709 None 624364 ANT_20200927 125525333.52282128 11690.331737952558 3.6111204147780644 0.0003363890316432246 25267322.123931374 2353.743172535297 75956 2674 568885 SNGLS_20190105 5928711.312863088 1556.0223986268343 0.010041359927501778 2.635471990267192e-06 164828.01448271915 43.261034214181095 35721 2187 956630 CHZ_20210909 1812875293.0017369 39115.193421855096 0.3385340106379932 7.31223517461279e-06 492927991.9150768 10647.099812039258 None None 60398 LINK_20210125 9818894870.17378 304941.1793179783 24.685050652516416 0.0007651011476164143 2671856833.2638507 82812.9039787301 130225 29261 44259 MKR_20201228 515131462.0970937 19402.548696758822 568.5990432924821 0.02162112503212236 58291130.983939454 2216.535265289357 78316 18309 35335 BCPT_20190615 6399731.262164828 735.7861402902339 0.055110063938006576 6.342523127777642e-06 1357431.5854847352 156.22448260988585 10841 2600 1057836 ZIL_20190909 66623354.85652647 6412.397877466411 0.007235056520068737 6.961085058421408e-07 9495411.580726178 913.5846761502097 66166 10608 166369 SKY_20190627 25660574.261911213 1976.985574269405 1.7142026055745556 0.00013145006533124245 2132399.3521599504 163.51861398540697 16210 3776 427664 VIB_20210220 12543574.272980127 224.59646548089233 0.068679759421491 1.2294159442634786e-06 4594455.16961875 82.24397534749592 30650 1118 None COMP_20200704 17479.115152418413 1.9275666198256014 1.8951000433286176e-07 2.08988358558006e-11 312.06159924247754 0.0344136140064257 1814 None 1076754 ATOM_20200320 392959286.1811902 63504.43730236087 2.064904602621882 0.000334082490300695 197727570.28542575 31990.4943783773 31741 8288 84919 LTO_20220115 100178312.73428568 2324.2507644724965 0.3365587644466918 7.803474094932722e-06 9073731.412019478 210.38414534970906 22765 6166 178243 HC_20191118 76622410.49642693 9007.89832405897 1.725675107977504 0.000202791756160376 49395532.8871448 5804.688735645995 12813 849 624068 MKR_20210718 2190640315.651812 69311.68287539264 2430.0709657082807 0.07688268467297228 50442718.22013882 1595.9087836087847 167102 28929 30327 VET_20191220 318371938.9996445 44575.44972845185 0.005062616824966959 7.084900797569206e-07 68955489.56189072 9650.005518578886 117597 59987 381683 BTS_20210702 114382613.37791249 3404.7344275996957 0.04228940394959941 1.2572900068661636e-06 7017066.560520111 208.6217075693787 6190 7181 140146 XTZ_20211207 3629888859.276435 71930.20067974493 4.184510169812826 8.284981531410328e-05 235054536.80383736 4653.884008557949 226090 64907 37991 BEL_20210408 157846181.6291354 2802.3253026585585 5.540665735348309 9.845265537692071e-05 99665394.45623337 1770.9645739507087 None None 320068 XMR_20210324 3899155401.9129453 71554.17766135499 218.6574244138532 0.004011183517694831 683960667.8364357 12546.986524383683 375770 205905 39767 BTS_20190723 123292993.95226695 11913.438474384875 0.04545086563599472 4.394762251496541e-06 9846154.907523109 952.0502922105227 13675 7177 160624 TNB_20200806 8341211.008126562 712.0421032114199 0.0024305783733651106 2.074084741467372e-07 603166.349573381 51.46997669055629 15896 1433 845361 BTS_20200530 60235252.07159455 6391.18678771998 0.022225422906619007 2.3582009595218107e-06 17138053.762036156 1818.411959843246 13142 6990 152581 ANKR_20190810 13033323.26487316 1099.087477951896 0.004958573501821147 4.1806176551123946e-07 9542009.257439947 804.4953322210171 11761 None 12914 BETA_20220115 118582821.92325069 2751.666118524517 0.4658156886983855 1.080043381353347e-05 5667848.636047768 131.4151187775828 None None 55829 ONT_20190520 872215122.3854302 106575.37204585515 1.420662870253751 0.00017362050153879284 92434894.71866399 11296.552557802434 80731 16173 231698 NEO_20210826 3982524382.3336887 81247.88899004862 56.454191033284715 0.0011518736223011432 693196574.3588494 14143.765670164335 None 112923 110676 TRX_20200208 1464102792.2215908 149487.77198382723 0.022112650937857758 2.2555583297144295e-06 2243498690.9046373 228843.75890499228 497203 71863 47748 WABI_20190901 8108284.139673842 844.672002617079 0.14087303903198334 1.4675301203576926e-05 1680866.484069475 175.1025043984216 36278 7963 1609387 COS_20211007 64720414.03651345 1165.835674456752 0.019660809780486274 3.543655226368238e-07 9753646.206486396 175.7992663662676 30015 None 290587 BRD_20211204 87377502.29068787 1627.5023474472907 1.0007967787722734 1.865368648301749e-05 18974499.645220965 353.6625767204002 1065 None None CDT_20200421 2359952.1821132815 344.6055403053515 0.0034971038055252686 5.107739740863725e-07 146699.12834536488 21.42632902734617 19093 291 263916 BTS_20200310 57952398.800785065 7312.441080563695 0.021383102543832216 2.6981226093665436e-06 17462764.227116525 2203.4538199794956 13338 7040 137133 ETH_20190205 11267355154.846409 3251975.571826762 107.61824539435413 0.031064998248643085 1910734433.7085884 551551.1019462626 439687 427467 27812 ADX_20190821 7653730.551639772 712.3102193893685 0.08315171679811573 7.738686021861427e-06 115088.50547149638 10.710949128465543 53844 3841 611553 POLY_20190819 19108487.58862069 1853.2810322102277 0.03852322447067346 3.7337246628380136e-06 1816607.4295989573 176.0681265856098 35252 5068 281069 STORJ_20200713 23716632.10113558 2556.222512819263 0.16508656816984785 1.7782352079004792e-05 3459625.6237007594 372.6546719349018 81256 8169 96917 VIBE_20190723 4049233.340253899 391.0273618709491 0.021720764360361338 2.099354030305783e-06 263952.44253191806 25.5115158401 20451 None 1758563 DOCK_20190806 4233429.1889532525 358.3833915462806 0.00768031206487572 6.50693124975269e-07 1397615.7234139356 118.40911344498876 180 15216 218357 AE_20190821 79596306.09830573 7397.021303969411 0.24409711092696815 2.2705324828032704e-05 20599967.447677474 1916.159312866089 24863 6353 305950 DLT_20210821 9920128.727850566 201.7441891203158 0.12097533122420707 2.46e-06 730426.7652237572 14.853026846608 15294 2596 None GRT_20210617 828413764.7930945 21658.177307383856 0.6772023386994743 1.770340451989458e-05 190427743.4272146 4978.156720747446 111199 15320 33300 DOCK_20210930 70448412.58601576 1560.1781752227776 0.07881453201362719 1.8961032886454654e-06 10156498.556916922 244.3428873188436 54336 15196 259377 INJ_20210723 163427524.7504327 5048.183917580039 5.637656846763125 0.0001741380440657525 11927867.387839952 368.4324096431473 77592 3773 133527 BLZ_20200718 14299047.214711163 1562.2101256804033 0.06103732700947543 6.668194925794728e-06 3007900.231675961 328.60654364901563 36381 None 455945 BNT_20210217 411472780.2438446 8366.733491042512 3.6516919647751145 7.421281675842504e-05 194684847.94820955 3956.5524928694495 93936 5591 60733 LSK_20210617 410415643.8530261 10730.127845848312 2.847031427716451 7.44358759828707e-05 18978272.353682738 496.1885258923688 196101 32521 424383 IRIS_20210104 37689547.06347748 1126.627278395564 0.03985253206935541 1.2106717094375644e-06 3060984.7064101654 92.98901210649665 11143 None 805488 COMP_20201018 16608.332244624464 1.4637409694828394 1.800689044150447e-07 1.587e-11 172.32244234670858 0.015187281607150029 None None 1771292 XZC_20200107 30424777.711240795 3919.8754469723754 3.3047834126443076 0.00042605975706708416 19065284.015877 2457.9372569895513 62443 4073 128179 CDT_20210420 28800574.343346927 514.9173188463166 0.042694134386585106 7.633163473312167e-07 1200747.1036568056 21.467817685041044 20613 327 413427 MITH_20200105 4181929.9466645154 569.0075723862799 0.007276539385594504 9.895907955050188e-07 256114.16764344022 34.83087350563014 90 2085 1348503 AION_20210202 35050043.73085957 1049.9152766791012 0.07174343939599717 2.147925522845475e-06 3437644.6404384803 102.91958015721696 68092 72559 360629 WBTC_20210429 8597876326.904583 157073.55736217988 54792.204973792235 1.0006679019788582 421472176.251972 7697.329913155608 None None 239911 WING_20210724 26697191.079757996 798.56039768958 14.93057744563643 0.00044652373703565635 2587748.8784798603 77.39093172624456 11316 None 411490 FTM_20191012 26306520.92469745 3177.781998058325 0.012531787912795776 1.5157537362298613e-06 6227474.159546381 753.2298894852171 19114 2179 496460 LPT_20210819 448085784.6403651 9946.309554366826 18.620705811880402 0.00041338520683633484 20757082.414678656 460.8134027785421 15181 1293 104852 EOS_20190318 3871089563.7836037 972088.8860523957 3.736971688936408 0.0009384561576104778 1454968593.0199258 365382.54739575525 739 63405 96004 GO_20200502 7605685.704589037 858.2811507529118 0.007890039549436179 8.933936986467242e-07 1429863.2231961996 161.90423197833834 10734 677 1079767 GXS_20200914 44728490.98545755 4333.1443871504725 0.6387328667024879 6.184949535998514e-05 13636576.967390627 1320.4509237561385 None None 737078 LTC_20200310 3214474673.0706234 405819.78397724964 50.025118805408525 0.006315552297587229 4403136077.298616 555885.4598175582 447914 212143 137206 SOL_20201224 56718890.08800321 2425.955074789872 1.206243024482621 5.173569120644615e-05 21811152.391227532 935.4790221093998 104513 2745 87194 FTM_20200331 6284965.8457118375 978.2118595900544 0.002941670825148667 4.588432452744602e-07 1138934.7660254606 177.65159844919748 21367 2323 315226 ICP_20210727 5560505864.569178 148575.6731155996 40.54089140526613 0.0010865368431340872 529220668.70269036 14183.648527739055 None 21813 22362 CKB_20211230 633809091.3406897 13665.748603430171 0.02171311453347677 4.666511708226844e-07 10212203.829806335 219.4773516490062 None 15041 74070 DLT_20190305 7349386.717079638 1979.2245550262164 0.09087734779660943 2.447369898725088e-05 517745.69351913314 139.4313606454684 14534 2687 947216 CELR_20210114 25165249.57088715 675.7847300693636 0.006411450205095962 1.71540344702056e-07 5065726.154351827 135.53507909849336 26251 None 415548 DCR_20200329 123602264.27969877 19827.215609779956 11.080765904336715 0.0017727384088372803 79973306.62126663 12794.400094108518 40685 9761 200827 GXS_20201229 23332868.95646515 860.4669266602668 0.33310148815426677 1.2267516362854482e-05 9062752.092836589 333.76452386150186 None None 480010 CTSI_20210401 119298285.10649058 2028.2012613121306 0.3862304427349817 6.5728342734278915e-06 19151505.335401885 325.91856241285734 29080 819 195693 ATA_20210707 77728794.74553464 2276.815412889294 0.4526546540103704 1.3247454302060945e-05 7055314.794834102 206.48182781984153 None None 98513 MITH_20210120 6017860.981241946 166.1803218212346 0.009683259321486436 2.686668323215628e-07 4358561.930636513 120.93046240981097 24083 2125 495760 BEAM_20210826 70848578.35205616 1445.3853396624943 0.7440951457518775 1.5182284170338642e-05 9379496.597498048 191.37630924073324 22516 2647 247381 NEAR_20211011 3525184373.7380695 64428.116108556824 7.388854016754511 0.0001350453060342555 149535603.34449875 2733.046460369094 None None 6549014 ENJ_20200324 67562124.13026921 10487.34140835686 0.07438029755798897 1.1474344734248894e-05 8224388.84520433 1268.7428786475687 53874 15280 111026 NAS_20210826 23701724.809365183 483.683816963898 0.5209170287772568 1.0630413559646106e-05 4523562.732009556 92.31286356128363 25484 4957 625809 BCH_20210112 8957465342.965738 252652.5318272699 481.24842695615223 0.013537741490703425 12318354349.49957 346521.0220616503 None 360348 464995 STORJ_20201124 52382292.69854097 2860.2817136375 0.3649595626068958 1.9878817049389932e-05 20363203.070889436 1109.154081329825 82306 8470 88505 XVG_20211225 296436172.89429593 5829.53362721442 0.01797626634743903 3.535103295289346e-07 7411390.559190398 145.74790271842454 336434 55615 176659 MTH_20210729 7415201.565560065 185.14776945972866 0.021827281220038415 5.457102488726265e-07 188199.0078732423 4.705218501047366 21811 2057 970963 UNI_20210523 10639247156.097713 283039.02691505157 20.460067083643683 0.0005444606228300883 896183979.1636194 23848.254527759625 None 44008 1386 FXS_20210814 109368903.67436904 2292.8139619790113 3.419067997140277 7.16439168846544e-05 4743519.021198632 99.39676039779825 13417 None 100208 ARK_20190531 84220686.05550681 10132.830580142661 0.5933515203114612 7.143095766641776e-05 1768364.3641875512 212.88554206581819 63484 21752 215917 DLT_20190819 3651161.2913915645 353.9029838504304 0.04551264821952078 4.4114901321394405e-06 53462.07311229686 5.182019003619699 15040 2657 4092557 ARK_20210418 373973332.8264012 6203.664439028371 2.389509149317414 3.970579657904099e-05 5914603.030663678 98.28128293561745 71913 22687 73958 SNT_20201226 119273972.36689223 4832.355372264518 0.030761668243924803 1.2475257877412262e-06 10909355.919673586 442.42408212461015 114280 5684 158181 MITH_20200423 2248800.985603078 316.1442209176206 0.0036524605700095692 5.134008604136909e-07 2219605.5386229525 311.9944408612827 96 2094 1180459 GO_20201208 7450930.853984551 387.92670418981606 0.0069216908228843105 3.6047134970343457e-07 161888.97763607296 8.43093685688014 12477 685 586203 DNT_20200707 4907267.128968011 525.6959481454619 0.006524615552818468 6.986205920762801e-07 261638.48220547027 28.01483549009504 58052 6006 675973 LTC_20190608 7363782682.239242 915271.0655711279 118.25868858437113 0.014710120796761702 5379113785.221562 669104.4396596886 446035 203369 172197 CHZ_20210310 1424002846.9642003 26043.16422105702 0.26586092464659655 4.855607506369783e-06 4484492084.20891 81903.4743645973 115270 None 88491 WPR_20210511 23490747.99521031 420.41304571676324 0.03858396205008429 6.90535737925561e-07 3580494.525214015 64.07997773524893 33702 None 7374795 DOCK_20210729 44930473.28240288 1123.626020029762 0.06518865308232373 1.6292313507766384e-06 4543287.198936977 113.54837981914699 51885 15149 269891 VITE_20210506 115592203.10912225 2018.5199061843707 0.19049121954650708 3.3228401318978555e-06 26188236.078126874 456.81539564489026 31907 2227 146293 TWT_20211111 387517788.15395635 5975.668645668498 1.1234863681590757 1.7299322102625867e-05 39596092.4191897 609.696366754596 None 52814 3937 VIDT_20201228 21682940.19284058 818.0271643331794 0.4928910207254663 1.874230797963888e-05 2855559.282378837 108.58337700225735 117 1136 None ATOM_20190916 839417263.6739081 81477.61735327089 3.4346803357164353 0.0003333791831456447 188585335.68741927 18304.592864420083 28584 6900 109594 ZRX_20190826 107494169.22362268 10647.862873673714 0.17905469688952952 1.7733068065012463e-05 19535571.315290164 1934.747436626463 151229 15904 173586 CHZ_20210124 105145443.95164399 3284.108231197872 0.019695159810946095 6.150247318207389e-07 31481946.501103517 983.0930995175277 67858 None 119636 KNC_20210212 477473426.983415 10013.3945352104 2.3460640084254796 4.913616859465029e-05 230316327.28630593 4823.765185859401 134393 9710 112960 ACM_20211225 10576994.704773927 207.81365337894314 5.28691396329656 0.00010396923706141875 832034.8723770962 16.36229215948926 None None 37465 ZEC_20200224 575149640.007721 57805.63382631559 63.170492563783995 0.006348357389314973 430211901.9623724 43234.408913883526 198 15540 158191 GVT_20200315 2360642.489215237 456.4785340132834 0.5328005290387515 0.00010283538009952129 433580.9354673726 83.68509014646709 20700 5603 171820 FORTH_20210718 130781377.33234522 4137.656507984176 15.25360952017038 0.00048353046502485253 31894750.25047587 1011.0448546667573 31192 None 61730 BAT_20190614 414534534.25558096 50416.507138913854 0.32595060537317705 3.9619145115773986e-05 41134849.67889443 4999.921926445914 102319 27728 48578 HBAR_20190929 25542872.673248213 3118.7367285994515 0.03993609226733013 4.865213401762893e-06 11221529.124161039 1367.0624936882637 34762 6168 121771 CELR_20200106 12575160.003951263 1712.2517312359344 0.0034854910250511633 4.745481454780144e-07 4450437.195601687 605.9251630717238 18813 None 822333 SUSHI_20220112 1345919339.750012 31396.26604868806 6.969877655310527 0.00016290153997927686 251514087.76908013 5878.443532340703 190621 None 3501 1INCH_20210909 528235660.19906837 11401.953668947479 2.9165650097068965 6.299694737563305e-05 149480148.40965056 3228.7272910851134 261422 None 4494 MDA_20201115 11437153.608895777 710.8154244590727 0.5826694619122477 3.621271996962195e-05 70703.6204265196 4.3942073074178 None 371 4462991 MKR_20210610 3002191575.888865 79982.48385057633 3327.6215877079308 0.08869277442072523 151948870.311297 4049.96978255773 158410 27906 30046 POE_20200713 6305784.619593653 679.5159079061872 0.002505978579378494 2.699519274037996e-07 649453.9104691253 69.9612264581114 None 10238 701403 OGN_20210729 243895948.32712212 6099.375628600826 0.7740926596861666 1.933998736261098e-05 44867481.33742703 1120.972420032792 117350 6006 73435 BEAM_20220105 61619149.749970764 1331.9441896264923 0.5859267327819552 1.2745725916537764e-05 3719922.7813081825 80.91987197123349 30457 2984 244658 TROY_20210117 7189758.072877248 198.15495006567346 0.0038483428982454986 1.0631995462526325e-07 2877029.132065422 79.48501858194932 10115 None 965237 BRD_20201101 4495477.843169895 325.78913735307646 0.06317767610300151 4.5785122996080715e-06 123891.61192813134 8.978476322972417 242 None None XRP_20190513 13003310163.38719 1873913.5931810872 0.309352369637077 4.450097061503045e-05 2362625017.0521126 339868.4373470872 919755 200554 40096 SC_20191216 60977442.97702566 8568.774391927422 0.0014440290442018578 2.0309261084868767e-07 9193885.862367174 1293.0559057176238 107846 30341 215240 XMR_20190522 1504268536.9766889 189027.58185225056 88.45292498293641 0.011116281822448129 443234866.5898598 55703.34380122058 317473 157868 116319 VIA_20210617 15082512.124366036 394.5057933605849 0.6508257320446774 1.7023326064162608e-05 232721.12050909293 6.087170991222593 38148 2292 822358 ALCX_20211204 271978832.2819228 5065.516556224791 310.70406327824406 0.005784813570446324 8697358.684862105 161.93093201415002 53577 None 80408 VET_20190729 314145701.5763376 32906.001652818726 0.005652459914655856 5.927353817736254e-07 32155431.91763333 3371.9234636898154 113053 57109 133161 GXS_20190104 32464264.80630224 8609.02634042616 0.5410710801050373 0.00014348377234043599 1101477.0800888033 292.0948696185891 9930 None 230625 SCRT_20210112 43294150.7159659 1218.5123409382481 0.6207389380394047 1.7462618660437952e-05 972755.6342610229 27.36554717277034 None None 361970 1INCH_20210418 1007886236.1437541 16721.019969745394 6.474073383602032 0.00010741798891725797 304006314.21940565 5044.080435403965 None None 71599 ADA_20190923 1531930997.040778 152441.79279575555 0.04922405448984773 4.900412111010237e-06 120575342.7443275 12003.661136759412 154368 75320 108471 MKR_20210421 3116328912.289289 55160.63705493267 3444.024545148818 0.06108166954551651 338190210.04462147 5997.989382094192 133595 24388 31771 MDT_20201115 8745832.187330458 543.3603354836572 0.014310559009441769 8.892117155249467e-07 726434.898261118 45.13830813134367 13269 67 934790 ARK_20190507 69349725.07668501 12127.625246364023 0.4906242367910734 8.579856479612627e-05 530571.5595327498 92.78440589745577 63651 21728 202158 UNI_20211230 7671892844.642082 165417.36482824758 17.139968666548977 0.0003680022273022313 487610754.7416053 10469.20489135073 None 59374 2356 XLM_20190608 2478477857.9576054 308058.93763251125 0.1280380296620383 1.5926566626554453e-05 379657123.30206233 47225.30083817001 272187 101837 70523 AION_20190916 27511644.60693083 2670.017042139912 0.08054946989804912 7.816409394090928e-06 1118132.792520827 108.50206307208224 67362 72559 164304 WING_20211207 34284895.252136186 679.2538918786775 15.892020722871607 0.00031489447391380194 4219970.54920691 83.61714530813501 22308 None 214661 QLC_20220112 6146582.097073505 143.38134619988912 0.02556159175346931 5.974312415353603e-07 368660.2908205511 8.616410799997064 36064 5842 940522 REQ_20190205 14288166.5051738 4123.274029598758 0.019656341962285287 5.673198635735772e-06 76274.14606487207 22.014186679668168 41837 31071 476226 SNM_20210930 62971541.522979975 1516.36379316853 0.1463253076736461 3.52e-06 1301347.6609604666 31.30520509 32437 9723 None ENJ_20190513 117209339.15135103 16888.571380927835 0.13526895700945057 1.945871592341572e-05 10012089.254160572 1440.2595015424158 45822 12416 19139 TLM_20210909 280199917.5598612 6045.685555124015 0.22553823579433718 4.869420682044424e-06 196452728.10879788 4241.458101008383 63853 None 13411 NEBL_20210616 29339376.692611024 726.5673092251662 1.6344687086691312 4.049427268804737e-05 1626468.3554146169 40.29606241667864 40133 6097 644774 CHZ_20210105 100059379.22122464 3198.1856980983107 0.018618035122430345 5.950859791324616e-07 45142705.97484169 1442.8907889083823 None None 151849 TOMO_20200501 25043556.770417128 2894.0517974669374 0.35470855141701924 4.1150896516771835e-05 18998941.437796455 2204.1291925770515 22638 1538 211142 SXP_20210723 134435066.6357232 4152.872566020098 1.558433999665101 4.813768488702244e-05 121427689.77551019 3750.7189064334693 272948 None 69993 NCASH_20191015 2872016.5065432377 344.1171789888297 0.0009898540927243758 1.1859453457570974e-07 335127.2668814513 40.15163702566227 59261 58770 740180 AVA_20210626 113767093.225872 3575.526861296298 2.194397592555592 6.902717376742104e-05 3916205.473906624 123.18852184004558 86476 10395 44540 YOYO_20200323 1110700.6546080143 190.55818079621582 0.0063528629043479974 1.0895185778997583e-06 231929.78863391018 39.77605329906665 7491 None 2721333 LSK_20190522 267555195.63962877 33621.19887544294 2.0233992002240844 0.00025427404448762157 2654211.8187449155 333.54622953511756 183358 30405 175336 NAV_20200607 8540719.12368002 883.0540421300424 0.12406212396715512 1.2830229250695244e-05 134724.54620577974 13.932913271528895 48479 13861 1041547 OXT_20210408 0.0 0.0 0.744361383160022 1.3246508253462354e-05 80622304.8977314 1434.738624815747 62255 3351 108247 BQX_20200312 7036432.43595422 887.1549882227195 0.04990015388765454 6.289388701852478e-06 3892396.3284623474 490.5955509972843 None 11 317687 LSK_20210703 363251557.0147938 10747.131006819265 2.5345589123423844 7.485111386541968e-05 17152118.622421056 506.53988660043126 196559 32562 337278 BLZ_20200626 7324149.795614187 791.0304162338576 0.031554343178611687 3.4101183029228414e-06 976018.4813548152 105.47956800809094 36188 None 529393 CTK_20210217 64928950.84704533 1320.240982327661 1.8595401297931236 3.780512717733347e-05 10268878.258398099 208.77002991620537 None None 218849 C98_20210805 211815487.69705015 5325.355349387017 1.1449252282030744 2.8792344275859772e-05 38267538.206752315 962.3441841417809 152720 None 61225 ADX_20200914 14971271.728138397 1450.3820530651617 0.17053659696952886 1.6513323507881178e-05 3879301.2968300795 375.6387686717136 52779 3740 10625 LTC_20190530 7110675528.050249 823426.6964338048 114.8635104309215 0.013282662726706211 4856815117.345882 561635.6046202362 445758 203130 194516 ZIL_20200711 217187838.6038347 23393.268885358266 0.019713744556633498 2.1233681575842823e-06 45626845.69247098 4914.4692423137 81817 11605 87928 NXS_20200107 11205582.044173671 1445.3516311092344 0.1894255768656876 2.4413936136990515e-05 100752.66694712675 12.98541209259576 22890 3545 610142 DGD_20190312 32270123.057198264 8346.592354302671 16.13367153093404 0.004172508070087971 1171256.7169926388 302.911714449265 16109 3295 568878 GRS_20190915 15843019.087901037 1530.1794401350608 0.2158526421724134 2.08522215160083e-05 237267.0296206907 22.920936293863242 38418 106998 None ONT_20190805 624439975.3607415 57024.26932611824 0.9590262470006361 8.758275323854198e-05 105205645.4158259 9607.870598508982 81453 16298 237451 AST_20190701 9180544.053128252 846.1890834715551 0.05299087569616256 4.907539275674428e-06 1118940.1340076507 103.62619191757598 31980 3599 257533 CVC_20190803 16737556.04460197 1590.2557474313264 0.04882720358146848 4.639076883554682e-06 4330392.593911547 411.4309791592469 88532 8150 266707 ANKR_20200411 5386502.830426592 785.587820939348 0.001346526410026051 1.9632971237967047e-07 2028097.2876095267 295.7058652467609 None None 5685 WPR_20200530 4706406.142790377 499.67285810223007 0.007700302038860585 8.214350440692904e-07 284623.73496327095 30.362433719199398 33030 None 1707857 CDT_20211011 64106874.964724414 1171.4315121568645 0.09502633871986542 1.736529213957482e-06 1899994.7672241717 34.7208622798531 22164 340 572218 BAKE_20210825 490061390.59703374 10197.975494096285 2.8085926000063592 5.8484124246883626e-05 105556049.26294453 2198.023700585923 360946 None 12983 TNB_20190726 10903897.34006674 1103.0575335099709 0.0039548945720018856 4.001187066588253e-07 512761.6394894838 51.87635732927782 15698 1480 578897 ATOM_20210707 3658620324.21135 107114.19748424352 13.137723130026384 0.0003846680707567722 527925737.0276494 15457.486259635089 163855 31893 47818 FIS_20210620 30340610.893814314 852.7958940429077 1.1162044640539546 3.1350874454301616e-05 9876711.477789024 277.4075463172095 22301 None 388114 WABI_20190812 6607529.884280963 573.2681166908952 0.11528416791538082 9.979454473042664e-06 153719.3984817721 13.3065603587332 None 7980 1513094 MTL_20200127 15236966.129897423 1775.2204544359554 0.2433739804173745 2.8319960434240203e-05 3378038.2763807527 393.0819152005876 34634 None 534159 XTZ_20200224 2461074798.3267765 247368.84014887465 3.511814754482745 0.00035292197736174223 269278086.88344586 27061.266475341272 56077 21778 117570 OMG_20210110 524723585.6310751 12966.68417666928 3.738278255955489 9.249728191116522e-05 459105209.99238867 11359.770762890026 None 42567 211368 PIVX_20200610 29598608.261079352 3027.9250845961897 0.46788638593001214 4.789143788145537e-05 533993.1186401449 54.65792346072776 63701 8474 263119 MTL_20201124 20756235.134271275 1133.3560177890186 0.3223737725674066 1.75657023443331e-05 4122511.704296042 224.6299782143477 40521 None 376540 LUN_20190421 7794225.311883115 1467.1527507538576 2.875104449630721 0.0005414427341965822 2144239.3331246567 403.8054365113542 31803 2239 1420358 STMX_20210220 94492026.96139818 1691.6752776722287 0.011295323961705421 2.0217549774391505e-07 21806667.887929995 390.3185025348169 26115 1214 138788 CDT_20191011 7791873.3428673055 910.4130918168603 0.011550717137016905 1.3496015192597885e-06 181908.26840019674 21.254409790025104 19588 299 173810 MTH_20181231 3661477.7079414716 963.7733832373632 0.01676049828386101 4.409973655454575e-06 90299.45073612765 23.759329353101194 18723 2032 765962 UNFI_20210430 60646897.22120931 1131.6949157015272 24.832189197785535 0.00046333658989230976 38217591.31815999 713.0909117281253 17490 None 90822 ATOM_20200914 1245861793.3403006 120694.86177686934 5.264414433687349 0.000509761424631754 390657144.1840334 37827.93791603914 42266 9485 98949 NMR_20210105 144073186.69401446 4604.993642280219 27.612080659096158 0.00088256155640756 17158890.903331883 548.4475309499485 22201 1980 2602153 CVC_20200806 19396292.35561331 1655.75199931268 0.028906064958687566 2.4666404064014357e-06 3747814.7097869217 319.8121644048856 None 7980 102776 EPS_20210825 221987226.3529544 4619.4626587331395 0.70084196907857 1.4609787092755266e-05 35078435.22707096 731.2468328463628 None None 31668 COCOS_20191213 12831647.19322294 1781.155848705656 0.0007417815598317148 1.0304981372843604e-07 3341184.8067929335 464.16423731321163 13540 182 42849 MATIC_20211120 11105776807.769333 191047.2534124649 1.6237278947025597 2.7839096254184536e-05 667015203.4912163 11436.09130173748 891251 None 5039 TLM_20210916 277994532.2530005 5768.309940197397 0.2248814771069928 4.666614067849019e-06 67915985.8409555 1409.3543809588502 64897 None 15063 ONE_20200117 19242369.44720671 2210.481361835297 0.004891007689947438 5.613114496132863e-07 8082212.891088939 927.5468209351919 71325 None 309943 XMR_20210813 4623566735.350697 103995.35416655231 257.30203485883976 0.005786963433100157 248969625.53773504 5599.559753695484 432732 231092 35880 HC_20191113 84113796.44540173 9557.30850737309 1.8934716776026432 0.00021511777982319977 40024037.254258424 4547.140649390768 12820 849 511707 VIB_20190524 8220725.86110384 1045.0416877332061 0.04830071523975573 6.140122152923562e-06 1774531.5039515866 225.58341309003364 32958 1121 1724143 SYS_20190329 35081313.13826124 8713.490959287024 0.06372355208817479 1.5827248906299488e-05 749488.1225468356 186.1530733793661 62528 4617 853485 XVG_20200719 96685373.69542971 10547.34362706162 0.005921356219388875 6.459568432850267e-07 6058293.544339669 660.8952457178126 290141 51637 240038 VET_20190816 253270686.82184595 24590.51013317972 0.004569762522199689 4.435615286535873e-07 24321605.147996765 2360.7634546316553 113497 57319 133902 UTK_20210127 105825514.32109728 3247.4578241403274 0.23248653049654036 7.1376761404112215e-06 6573779.569242298 201.8246368229997 57713 3169 109478 VIA_20190915 5673710.981077735 547.988728937641 0.24504018140188885 2.3666918881293354e-05 255290.01606430573 24.65688715553419 40630 2211 1917066 DATA_20211225 0.0 0.0 0.12338695320753042 2.426452837587121e-06 207231.52784954605 4.075289288830231 73181 4823 146581 MTH_20210420 17466525.308246654 311.44859713441525 0.04872580496141766 8.707049144478564e-07 758669.9431082903 13.557039199892673 21385 2010 362958 ZRX_20190316 158939009.399169 40500.056385119104 0.2712667707733641 6.912196704212744e-05 27233673.511534065 6939.460655404223 148080 15719 207676 SUB_20190201 15189318.514379436 4432.172241670881 0.043321101426334226 1.2628537638834431e-05 168218.55253929968 49.03740330575786 68699 13856 506806 ALPHA_20211230 301390603.12698305 6498.373516632969 0.6819174517621586 1.465356214669164e-05 6213575.159526181 133.5220407073749 None None 53774 ENG_20200312 16081930.167469842 2027.5459733980924 0.19347372080289302 2.4372541971088366e-05 1409287.3510859136 177.53271592196396 61336 3610 363885 MITH_20210711 25159279.07043995 746.0898395137916 0.040639453744840535 1.20572023603741e-06 23401296.038916245 694.2863051451707 None 2739 334204 DOCK_20200610 4249760.1016102405 434.7640925879134 0.007542681102415055 7.723982184625035e-07 690817.4342692553 70.74223983055097 42187 14976 355846 SKY_20200109 7336464.7957426 911.6929040882092 0.4301128623979418 5.360139356581915e-05 110934.88394429412 13.82489317181842 None 3807 595131 BNT_20201201 86888511.83979 4415.579489621155 1.0195284184380822 5.1933822188884553e-05 46245383.40463843 2355.696491984686 87415 5243 106287 GXS_20211021 51527874.89584692 777.34986508338 0.6866104283659772 1.0359935842249223e-05 17540473.629677586 264.65980407344574 None 26978 908245 ZIL_20190621 194657911.40360126 20349.27333812615 0.021283620435099397 2.226920091411752e-06 48009939.25455996 5023.313521280526 64505 10565 190558 LSK_20200217 260928069.6599112 26174.920725244945 1.889131583373764 0.0001898923137135102 11630035.758108236 1169.031537090706 178735 31256 152609 ICX_20200113 62383636.86577497 7652.2344071388225 0.12107506799918914 1.4851648677264571e-05 6348151.61846057 778.69473166859 111739 26995 96597 QKC_20191017 19720704.233328912 2462.9680249408575 0.005184853907383885 6.47549359129582e-07 5257024.739721196 656.5629547028958 50261 9238 305114 GVT_20200319 2204903.903156043 409.440292301257 0.49861851639325555 9.254587996492134e-05 161740.3870773881 30.019756498850988 20670 5601 160290 POWR_20190811 27036310.264707036 2386.1382815759857 0.06383194320801369 5.636541748259237e-06 318490.3217242315 28.123599323383477 84282 13110 515073 TRX_20210711 4416356903.160505 130965.55763340597 0.06160171966783433 1.8274468693882544e-06 794567260.314042 23571.24866333047 1068780 113869 20767 GXS_20210212 38531725.82119221 808.0713880178191 0.5506864143877601 1.151544072582044e-05 17309133.7466107 361.9524623573573 None None 429351 ZRX_20190625 202953787.81827 18381.99525291669 0.3396452239743445 3.075179011226572e-05 50067534.227838896 4533.160472556747 150796 15962 211751 DEGO_20210805 60107567.789607935 1511.3543686004102 11.081803306104703 0.0002786829114487241 65455134.641112834 1646.0522703019735 None None 244168 BRD_20190512 27500593.188259326 3761.7597544810055 0.45838590615846525 6.261438771659237e-05 255448.9657100148 34.89370062621414 166 None None STORJ_20190318 35462528.740899935 8905.17501399498 0.2612035371769457 6.559537728879845e-05 1872235.291050378 470.16966775093255 83272 7633 210414 AMP_20220105 2377990820.3043375 51672.26645770462 0.04943378158297274 1.076345213883942e-06 90638417.25413537 1973.513323915074 42555 42958 73148 MTL_20190205 11426319.418550827 3298.312395124217 0.2815982785528427 8.12859380675602e-05 4659883.132549614 1345.118207615096 32350 None 590777 RSR_20210201 312081245.03509396 9440.283978756173 0.03350257424108012 1.01057561114597e-06 107775629.30849917 3250.9568271183284 55633 None 136667 STPT_20210707 56081468.23916218 1641.908952515001 0.05035470504102595 1.4744381900036986e-06 13656040.344269114 399.8630791584793 30713 None 433288 ELF_20190904 40625435.34291022 3822.7284956290387 0.08792547910242542 8.27391872862869e-06 15264695.5442512 1436.4306187432644 85508 33562 1052488 DUSK_20210513 76438009.95787437 1481.98315886872 0.20853572816944838 4.157220985891374e-06 4514507.124911408 89.9980254001742 26939 13596 280853 CHZ_20200718 64781502.043365836 7075.792714078938 0.012134914812125745 1.3257129913734012e-06 3809745.6402152334 416.20640665847094 26919 None 256662 REP_20190205 149334333.4375563 43106.73148127116 13.575848494323303 0.003918793771024651 9850673.447544023 2843.487665818829 122168 9745 231791 XVG_20210418 1062022902.664516 17617.38909269208 0.06379405367370226 1.061285309783438e-06 300500262.0006152 4999.157370976 303915 53204 130279 NEAR_20210131 584758000.1174599 17112.667375210785 2.1679003497851213 6.345482893652296e-05 53004552.97711796 1551.4526958553533 36360 None None RCN_20200430 35665153.2186557 4085.1138058589113 0.07016862063493895 8.003402471988e-06 583090.8025571062 66.50708433985267 None 1136 1284317 LSK_20191118 107223140.41000044 12615.369071409808 0.7852203839749672 9.230849917156786e-05 4082971.5939390142 479.9836933533681 179906 31130 148488 LTC_20190819 4809379454.332901 466131.7667024267 76.28570176240197 0.00739345717316017 2641844351.877508 256042.254610131 451926 207700 123278 REN_20200411 43859007.097629964 6396.5624634530795 0.05001441133899082 7.288706673977724e-06 1941778.722402009 282.9795483832048 11540 876 365402 LUN_20190524 8377304.091994213 1064.9463508294627 3.098853459179706 0.00039393492785613977 2798523.4046762283 355.7561304679032 31557 2231 1883095 GRS_20200312 13608129.12812296 1714.2622623206798 0.18239128994782872 2.2976450501736208e-05 6114229.433158905 770.2302558823842 37736 106867 3955402 OST_20210206 13945611.289376931 368.0221141062885 0.02021585546526408 5.29613464251601e-07 5640308.820330379 147.7643871621839 None 734 716707 NEO_20210821 3958876405.184127 80566.28812381957 56.281018248140725 0.0011442784867408333 530564319.1686681 10787.177545016437 410350 112793 110676 FUN_20200621 23097671.908135448 2468.636515498314 0.003843761130260905 4.106523547728351e-07 1242536.8866040737 132.7477647762767 34182 16795 229791 DUSK_20200316 4212980.793720237 779.8087378363133 0.016082000215720975 2.9957833248171478e-06 182892.70676205104 34.0695755378002 17696 13343 994052 WPR_20191015 4663443.157352956 558.9595999158137 0.007667342722297697 9.19006552854736e-07 120541.10774222495 14.448039159814192 34173 None 790860 STX_20200320 49226227.32859277 7959.541396456506 0.08309969822127744 1.3461752514952333e-05 535687.6274100086 86.77882615546129 35795 None 40997 APPC_20211002 6778262.870725214 140.77939952225125 0.05828233949176111 1.2099981609325182e-06 412285.91371241154 8.559457319672648 25057 3114 871723 TNB_20191127 6461072.870458096 901.4081122435289 0.0022091610307000656 3.086786805482456e-07 475291.10069893504 66.41083551685621 15422 1459 2517583 SYS_20191113 14383063.325448854 1636.397894336961 0.025344118962918875 2.8796888740291996e-06 1128562.8351452656 128.2313204402817 59816 4569 1069372 QSP_20190410 0.0 0.0 0.028493807889259228 5.509350547414554e-06 416498.0808584988 80.53096794548986 57135 8537 846011 STORJ_20190712 29094271.764872562 2568.7974353561403 0.2010936374195777 1.7736174602377733e-05 6505698.68863225 573.793429432531 83877 7775 206682 OGN_20200217 6950843.676523332 697.2684832615071 0.28998820990316443 2.909371191930953e-05 24561321.80079575 2464.1692193914623 62536 2132 124471 ONT_20210909 865525485.705698 18674.862477090977 0.9881322389725464 2.134336606643162e-05 238919925.83260915 5160.6002076324785 147696 20029 152489 ONG_20200907 0.0 0.0 0.13809437019952114 1.3425062164797601e-05 7221538.9368127175 702.0533060988846 90484 16623 197799 QUICK_20210902 218880869.81752917 4500.457860576523 606.5778535188213 0.012466856418891037 28183439.332489282 579.2478072029841 None 2373 4684 CAKE_20210620 2837608449.3106885 79757.81512583102 15.454373659432745 0.0004341990127881882 152628651.2189339 4288.184765223691 911123 None 861 PPT_20200421 7890594.753837288 1152.289932856731 0.2176939192009623 3.1798666927648744e-05 2637834.6041942295 385.3099080437138 None None 1377509 TFUEL_20190930 0.0 0.0 0.0033048057902168642 4.104385419509963e-07 421744.8976419401 52.378376174435076 69930 4022 338625 BQX_20190224 14593553.656298464 3548.530941869407 0.15646477179291082 3.804557115394926e-05 885734.0973231266 215.37282314122064 60551 5810 364991 REP_20211104 176747771.990239 2802.935910807002 25.6741930284816 0.0004071041579431657 32047196.533466972 508.15801473187713 155847 11991 206927 SC_20210823 939868779.2930714 19051.117407923986 0.019312525780754868 3.918846309138345e-07 58985243.82504075 1196.9128620541896 139886 48011 113075 WABI_20200807 7366408.840621198 626.1121713758605 0.12402083211402115 1.054042197678635e-05 1780696.071110493 151.3398005961951 None 7646 775803 QSP_20200704 16744500.861535486 1847.0885160966532 0.023459880227562995 2.5882104341667194e-06 510719.34891764936 56.345093622705456 54733 8230 412251 DOCK_20190909 3344709.6541677667 321.78562194447034 0.006013307942388214 5.787718611493002e-07 1010194.6966200443 97.22972285595777 187 15175 184011 FUN_20200526 19301614.410932276 2171.833673380289 0.0032565338593300843 3.6626938145473286e-07 3084520.252455595 346.9226403756527 34334 16843 215039 FTM_20190726 47122679.88627092 4758.012861505314 0.022778090771794622 2.303458474705801e-06 13226018.173798468 1337.4950497068692 17668 2015 417127 BNB_20191024 2586896306.0683155 346785.34654594795 16.660830564258255 0.0022325210505613046 138680474.32316977 18582.93180728273 1052917 56943 1996 ARDR_20190904 56337841.25858473 5301.4748930387805 0.056330810639648066 5.308086315994318e-06 2153526.432358649 202.92809666561593 67061 6533 930148 FET_20201226 35842851.578280985 1451.414986289632 0.052104928408982135 2.1130922205902497e-06 3349809.051136952 135.85001769621616 26398 717 356196 TFUEL_20210324 0.0 0.0 0.4790263408746126 8.787547773457521e-06 616271175.8379569 11305.249705461234 111439 9571 29341 SNM_20190930 5468212.319710999 678.3834486516413 0.01255908542056296 1.5597687233281016e-06 1277884.0093891702 158.70610344148744 30966 9839 16793543 BNT_20200707 102670811.01988994 10998.714340891227 1.5602230389354077 0.0001671090650856244 94793093.57568628 10152.897918246188 718 5090 116886 BRD_20210509 31222855.64208748 532.304843034217 0.3859632596977396 6.575746706486675e-06 2489033.405636815 42.406246729984936 755 None None QNT_20220105 2416048668.10161 52163.49108477868 179.73356318593764 0.0039063254259935004 36116132.50417136 784.9472529715757 72070 11293 71530 HARD_20210114 20783034.81879291 558.1052369648736 0.5222854593429606 1.4008990193404214e-05 7307194.901562378 195.99707379573312 14252 None None NAV_20200223 8232028.221590381 852.6865677664912 0.12112632310622826 1.2546457074180338e-05 145288.66540067425 15.049230894393252 49851 14019 1012653 QLC_20200207 5564925.896592833 571.3893239099726 0.02308003835758732 2.370113137364086e-06 9571932.50069376 982.9517013085283 24497 5693 940522 LINK_20210809 10273394367.97699 233527.2784631938 23.060762210436526 0.0005243452227269168 900348797.4588978 20471.725367422758 418399 63675 29120 LOOM_20190227 32575987.260512568 8570.919552899193 0.05261820747933576 1.384413677831385e-05 15923190.424978495 4189.478067589286 17154 None 410268 MTL_20190629 25884258.084120724 2089.542997433228 0.55589303337983 4.49013624326234e-05 2344522.225219836 189.37499814646225 33147 None 940825 QSP_20210408 77356988.77805232 1373.338809346606 0.10815624240216615 1.923645049984909e-06 3995299.1084311395 71.05958179061847 62947 8366 181433 SRM_20210107 72435164.90013956 1976.233072619298 1.4466831525571024 3.919554654986492e-05 99823455.1914963 2704.555505337035 29470 None 89781 EPS_20210511 240626672.05735937 4309.187337901284 1.996272018161695 3.5727206277366314e-05 39751012.582080886 711.4223980166786 None None 33734 YOYO_20201115 1565017.8952508832 97.31394418091215 0.009181971871467179 5.70803007278709e-07 1459650.3614981624 90.74007496229392 7726 None 3755100 FORTH_20211204 115137170.56929913 2144.5567848412143 13.222969664598878 0.0002465878970194599 12409281.254175223 231.4138688665667 35700 None 105755 AMB_20211204 25935258.17058664 483.0727870185378 0.04833751834455405 9.009550507072418e-07 4337209.4544613855 80.84053335378645 2563 154 640829 LTO_20210823 90534121.2154831 1835.1479855718758 0.31063921188739585 6.295647381226595e-06 8924715.278747065 180.87497721699157 11696 4452 676717 ADX_20200629 8844997.216590809 970.1241185045308 0.09597813444500568 1.0520324216529076e-05 285985.96172492334 31.347400698291306 51409 3744 23124 DASH_20210506 4020319075.704546 70204.5109033998 397.0196919180282 0.006925426634359204 2560804048.9338636 44669.47339610326 None 40188 48371 REP_20210206 134787391.53313142 3554.177322604715 23.106545440301225 0.0006072340243262135 71200489.01499458 1871.1303942111856 137683 10546 129604 FET_20190531 0 0 0.15422910006068338 1.8561113569236772e-05 42168245.557971016 5074.850300682589 9023 240 296914 ICP_20210729 5579782119.179051 139464.11568576272 40.77809872005497 0.0010192300265258272 320573438.81416535 8012.587266246064 246981 21848 22362 VIBE_20191011 3969572.1200481253 464.09413147291633 0.021149202052717593 2.470601342222109e-06 680317.5878994911 79.473142372566 20156 None 995532 VITE_20210617 46044759.42567906 1203.814323910668 0.07410829123232793 1.9363243470428454e-06 5918289.601506871 154.63490059866916 None 2341 185769 CELR_20210219 83558532.16334106 1616.7186512343192 0.021181555214874477 4.096977130622367e-07 26087587.18880566 504.59112667326013 30612 None 384776 ARDR_20210814 275902782.24089277 5784.036687011467 0.2757340906685769 5.7793077636471876e-06 37450483.96423274 784.9514443500053 72623 7002 None GRS_20210212 44085590.00643508 921.8767438567282 0.5731503200211069 1.198518497051699e-05 18377027.362467792 384.2832577312657 37248 106765 3797410 NAV_20210805 30245439.57005515 759.4706871661997 0.42206788707101395 1.0612542953052374e-05 261402.43231197668 6.572744873329967 53039 14122 873726 ADX_20190530 16221859.155494202 1877.4879089567714 0.17654805838980508 2.041664797944941e-05 2098665.668808009 242.69719291958612 54410 3894 959810 KMD_20190826 93810850.21117532 9292.45815215647 0.8132016928791166 8.051023605673487e-05 2243542.0506441165 222.11968037235678 98431 8432 208596 DGD_20200313 40275647.98027806 8381.693070044968 19.61353998297448 0.004196453516730578 657235.4799187729 140.62010954776005 17642 4713 323922 BNT_20211204 887573014.384891 16530.756314758397 3.772417567062072 7.03134702984648e-05 74786812.93294227 1393.9391004301185 140008 8622 39870 PHA_20210902 151375562.98728323 3112.4663517339354 0.8326340164757521 1.711293723084413e-05 16026818.575795496 329.3955505908666 108534 None 138672 CDT_20190703 17338719.86250369 1606.5078726165025 0.025651082653783474 2.3717715234894957e-06 8525444.083995508 788.2866300982454 19793 299 343226 HIVE_20200523 103719719.6851421 11327.497068570296 0.29300503036919706 3.200775647938635e-05 6821092.2263918035 745.1334833080613 6670 79 122787 LTC_20210703 9099994524.142696 269245.83596555464 137.5266046447976 0.004060036457797219 2196980065.360166 64858.862657549165 188045 338243 73715 TNB_20200301 4888214.943351581 570.0045329062161 0.001573767545528509 1.840037911793614e-07 472540.74862392 55.24913096637484 15226 1447 1374605 BTG_20200306 208650551.0792931 23045.937073722936 11.920836139996021 0.001315941470117097 42613604.248785734 4704.117090745783 75071 None 217881 ONE_20211207 2149047259.3519244 42576.73539759474 0.18806744405691547 3.723578716360929e-06 133167560.72752813 2636.6067626497947 286919 44474 9801 GRS_20210523 76803394.9944746 2043.4362752313432 0.9889537647195785 2.63169412147153e-05 5227296.291266348 139.1030138281169 41513 106853 6377018 GTO_20210203 28628116.72079559 803.8739073136596 0.042847119917296804 1.2052350149820213e-06 64994811.55094344 1828.2214259570942 None None 738206 NULS_20200107 19294514.21117606 2484.6431313854864 0.24507845584713633 3.160867261799464e-05 2400987.2945621833 309.6641893366471 21699 5234 591161 DNT_20190625 10602805.935617752 960.0419818140964 0.01658706823996284 1.5018931745308586e-06 1049430.1585045883 95.02173436578381 60636 6368 1037935 SYS_20200621 20162716.819400385 2155.2242880599415 0.03425162426319756 3.6607947788329956e-06 607058.2535709916 64.88205254277476 57319 4461 992436 SNT_20191220 33105988.97020598 4634.633733064503 0.009313417244648974 1.3033701649964187e-06 23403647.41056743 3275.233460044447 110583 5642 296949 WAVES_20190816 121787584.9009107 11834.49814518745 1.2203803523779189 0.00011845555912585757 16706695.618845575 1621.6263780548184 143035 56896 38385 GXS_20210220 47804047.28050763 855.8280265291127 0.6833080077041561 1.2230559923589165e-05 13480420.280815305 241.28663235432393 None None 445350 POLS_20220115 205394149.9289431 4764.57565163145 2.3320384856669882 5.407080080415167e-05 9469153.72521769 219.55243363562997 None None 6619 IDEX_20201201 18819705.87792641 957.2365565307348 0.03475592274035696 1.7704341330412154e-06 747335.6600760515 38.06857816210981 40124 1948 61286 EOS_20220105 3143675732.2421517 67877.45070333789 3.182260559910623 6.928887115873067e-05 465437930.44281095 10134.201203104483 261043 96658 67163 LRC_20190725 36334405.11372992 3698.5461051956836 0.037748392625186374 3.844607411894886e-06 3630777.0892046927 369.78826215717794 34712 2451 709028 DIA_20210120 43884134.8351741 1211.33301284769 1.7039741544138904 4.7277608006259436e-05 18938069.85544392 525.4461405424339 22058 197 294987 SNGLS_20210603 10055892.45872506 266.9871819511061 0.0112978981952977 2.999892419794957e-07 313153.41525997233 8.31505595494118 9515 2137 1063291 ONE_20210819 1036827919.2876365 23002.185145264895 0.09928119186003184 2.20406798931512e-06 57236743.306692064 1270.670419758657 None 27305 31812 MDA_20190312 20636064.930327456 5330.142134364579 1.1675398859193655 0.0003019814789018676 48318162.93052848 12497.380582499523 None 353 2571969 DOCK_20200422 2397499.9493838265 350.0884854294358 0.00426322111815108 6.227809271712609e-07 185254.60585254818 27.06240938439353 42719 15000 521704 NCASH_20200109 2182760.6872930634 271.2488215144988 0.0007501511835838118 9.344710658403298e-08 219090.0697139095 27.29227593596338 58490 58527 1010197 KAVA_20210304 274525707.90773886 5397.933778924998 4.685967647507942 9.236807531735007e-05 158657259.7264197 3127.393703592459 67955 None 89619 HOT_20200223 129010006.85686818 13365.046987437378 0.0007316182911785398 7.578218548668824e-08 6892684.072663686 713.9551719713248 25168 6903 508019 WABI_20220112 9970475.150424613 232.58131539495275 0.16871461584449607 3.935606547075736e-06 631102.3207173198 14.721726466064219 45889 7941 512122 ORN_20210221 177540023.2147114 3165.185152956468 8.68211644750037 0.00015438905363082445 35199500.96620419 625.9323605379832 36883 None 107725 NANO_20210618 804469153.0760943 21173.800359079996 6.066197445183317 0.00015898977745480033 28404311.49487094 744.4523862163684 None 105555 57331 ETHUP_20211104 0.0 0.0 131.6540427360163 0.002087821758839931 7632884.415272033 121.04529290353157 None 687495 121 TRX_20190614 2151413711.5082016 261492.4127540239 0.03262550238425738 3.963742074530319e-06 897987620.4387239 109098.43691044058 430725 70877 107576 PSG_20220105 47369404.446991034 1022.7798074408014 15.085427670054957 0.0003284621842009523 2022014.647797216 44.02628564652243 11111967 None 18624 LSK_20210519 891477675.4500537 20914.762060627563 6.235426522628918 0.00014575265806925867 99630208.95781025 2328.84915360596 196882 32418 142125 CHR_20211028 181309929.51746017 3098.1998819646296 0.31953284062582793 5.460418155121071e-06 41867254.04968693 715.4592112354471 95235 None 73571 STX_20191102 0.0 0.0 0.19117920829600277 2.0713971493976095e-05 1558141.840179814 168.82225817717725 32381 None 53113 CHZ_20200411 30653553.18598825 4469.821292024011 0.006412868521803561 9.345609863805789e-07 2035697.4732294474 296.6665279485113 19952 None 262392 MINA_20211207 1196171657.879444 23703.444026614787 3.7823269290956216 7.494539991339492e-05 73387645.2938801 1454.1488687672274 None 11735 58560 MATIC_20191024 29725524.294027667 3983.0562126161362 0.013262387930048265 1.7764130468669532e-06 20640370.092331193 2764.647129730442 24070 1190 198579 NEBL_20200306 10725185.714762589 1184.3002540562761 0.6666260675668917 7.3588872212503e-05 175139.73451219685 19.33368070857279 39698 6030 856581 BRD_20200207 15402686.305071533 1581.3983335939058 0.2522355465116238 2.5902330543609347e-05 1045201.1978721392 107.3327978006184 180 None None LEND_20190401 11253179.686882159 2742.377518783516 0.010089010055996016 2.458671694063214e-06 327310.2185055475 79.76484956905794 None 5920 527065 ENJ_20191020 49949247.88748255 6285.627892471221 0.05647384749977958 7.103997943798161e-06 1544111.6944265133 194.23798426773487 49281 14069 31815 MTH_20190522 8510054.158134792 1070.049164984433 0.024916419522207783 3.132975819978085e-06 1243619.9602450137 156.37203656877983 19424 2007 2077678 GXS_20210112 24118351.79219051 680.8667952357383 0.34424327103815444 9.684246629586287e-06 12558335.513378127 353.29090965779915 None None 482061 ZEN_20190701 64487626.89749556 5943.279654548839 9.512528694385129 0.0008767501780643076 3615036.9527122444 333.1905105180218 26117 1695 233714 GO_20210509 55353716.67871211 943.9008597155267 0.05072686929128712 8.635463483247721e-07 2501575.9103992134 42.585453678953925 None 1007 107802 BNB_20200907 3441897088.2076416 334277.219204517 23.236376313822095 0.0022589609992571145 755431632.9076576 73440.47855381024 1253893 71108 775 KEY_20190512 8611133.41287322 1176.5644341377467 0.0032853700874988664 4.510572734122787e-07 505619.7364711831 69.41789011348494 24028 2831 639890 RVN_20190723 204874566.61852923 19816.159032965203 0.05079273435041328 4.913015212001631e-06 42968227.23311572 4156.1762076572 26916 6812 272876 IRIS_20210202 62475754.70361478 1871.445576189948 0.06583841057561046 1.9713005319032395e-06 10300367.051903874 308.4084027954747 12158 None 896024 RCN_20210325 65454290.2796027 1238.271972822319 0.1276730520302387 2.4210554359917864e-06 3422989.901292137 64.90992559577509 19265 1145 1175923 FORTH_20210610 151014894.33388686 4023.3310825313793 17.731222809722425 0.00047341772097724363 10551121.739366313 281.7114229067908 29644 None 68783 ICX_20190324 153931465.9930146 38462.283243520396 0.32526133977405264 8.121651088965633e-05 8530144.174273508 2129.944332460409 112504 23561 270821 DASH_20190509 1031950675.9281582 173376.02213813705 117.50582010730761 0.01972631906770549 526786679.1145335 88434.44608395215 319865 25416 97874 BEAM_20201015 19231272.007806156 1685.167997067885 0.2644412584700091 2.3166523061042177e-05 4449719.7923992835 389.82016944789603 16107 1570 277428 HOT_20190522 339842123.53717226 42731.54715118651 0.0019086566121469712 2.4032244891770023e-07 74076218.31207018 9327.072286352199 21618 6155 277166 BCH_20210814 12280213187.584482 257731.4974304317 654.1072430824137 0.013701686768705167 4219120097.21367 88378.56884010532 None 603315 320566 TVK_20210814 136049330.007316 2855.341109439619 0.31277519861793734 6.553961591903785e-06 28000953.21445853 586.7382475182337 52120 None 105979 CMT_20200306 10946633.78089356 1208.7530708143297 0.013687187805632101 1.5109290851068038e-06 11111462.816789806 1226.5947239404566 286971 1640 953076 RDN_20190908 8262687.730491997 789.2182373550261 0.1635495912445461 1.562293467673888e-05 176930.9185249931 16.901174508460002 25568 4387 1279478 XVG_20190805 94721163.30634372 8657.739195932672 0.005976182958625688 5.457683485870581e-07 1640871.4175696755 149.8507810103338 303844 52898 396565 COS_20200330 8889588.05089795 1502.4026744586454 0.004350421443097736 7.370241388537804e-07 3823052.0397654255 647.6801556483133 10340 None 117572 XRP_20210805 33994364798.13678 853912.7323804536 0.7314367904089276 1.8394022043287857e-05 2915778567.791885 73325.40002441693 1947008 324269 16462 DUSK_20210207 27390661.51147716 698.5182826322543 0.09018462969185569 2.293403510042988e-06 2919827.4770533163 74.25148395546125 21789 13369 931184 NEO_20210318 3221045860.1378613 54731.74793984187 46.09183358218251 0.0007819825617532525 1416054925.663421 24024.434965886205 356615 106278 100528 CELR_20211111 749186587.9769773 11536.512151839257 0.13340812913865685 2.053878583384698e-06 478018183.8635803 7359.306487878547 87049 None 62285 ZIL_20200501 56822033.823654585 6566.788974995468 0.005402002494677933 6.267039369470608e-07 22784858.768159803 2643.3458160851596 70148 10577 175667 WABI_20210114 4822287.580603365 129.72791442438793 0.08171447306503846 2.1943511018027468e-06 727215.4286008991 19.528559839433 40816 7462 1296084 ARK_20190915 31963088.72377045 3087.7252636307617 0.22389722515993482 2.1629108643340278e-05 948141.3424246887 91.59314989230954 None 21787 99618 NEAR_20210218 1219963512.16118 23401.313753633713 4.21916889750941 8.090005989773163e-05 89338356.42421289 1713.0099698426689 38525 None None KNC_20200105 33618661.814781 4574.771829155463 0.19853129796528318 2.6999750111303367e-05 13534380.597214976 1840.6412378363555 98836 6778 195958 CELO_20210916 710283175.7047483 14738.47439662633 5.028256079369243 0.00010434354513585773 102058710.61562298 2117.8650230885933 46363 None 82883 QSP_20200229 7211458.241743151 825.1570293070737 0.010069298131742609 1.1556518892929305e-06 123080.00035646014 14.125873828060133 55519 8338 377226 DNT_20200208 5659225.104858382 577.7679142167046 0.007541006517204088 7.692058320872814e-07 857199.423698489 87.43697468851947 59266 6132 610225 FOR_20210324 34957804.553667955 641.2575522369544 0.06211176547066793 1.1394156433459093e-06 7571368.917515963 138.89375258918884 24723 None 130989 LOOM_20210523 86777749.13033424 2308.8146099349806 0.10447284208813734 2.7818754086710074e-06 10343038.603500215 275.4117162596009 None None 298596 BAT_20201208 349915122.11331606 18218.11195358216 0.23574571308374398 1.227958003855004e-05 101666809.3632266 5295.645492379627 None 48268 21887 ZEN_20190520 80311248.398173 9819.408058805395 12.388440851844397 0.0015143004188338672 4641733.727708044 567.3820791530117 25726 1642 229804 XVG_20190903 73255043.71265326 7089.121741825964 0.004590765693398222 4.441617651577032e-07 1022423.6144779046 98.92063931698306 302785 52775 272149 IOTX_20201231 38140053.99717789 1320.8765759392447 0.006658923535908365 2.3090628194059722e-07 1781002.3063903044 61.75842363687907 30754 2012 684706 FTM_20200312 12680520.924759753 1598.7097863161453 0.0060148382893513265 7.577096157977672e-07 4325163.153395835 544.855497948167 21282 2318 349202 RDN_20210731 18821813.557007007 451.13273796491114 0.3688408267775088 8.83254274854659e-06 1223754.3354017993 29.304951340638084 30435 4680 1385969 TOMO_20210325 193439626.56832242 3673.5731057045623 2.383825046277043 4.5312407094200176e-05 44685709.58802101 849.3983513210778 46322 1987 86466 GTO_20200423 5698011.309280158 801.1180489245523 0.008604218763158405 1.2094349087474407e-06 4072821.051556875 572.4879959963031 16784 None 999939 AST_20211111 72553399.61553107 1119.2978587307605 0.42647797221958894 6.5656136669474314e-06 7230759.782750519 111.31729736230457 47507 3731 209076 REQ_20200310 9275179.678815836 1171.5169572286404 0.012103407048745058 1.5272094468819226e-06 201470.88817231148 25.421622395187324 39771 28276 787523 WTC_20190528 68562570.23913543 7784.382390503871 2.388096677583343 0.00027136055106631785 5999435.883566965 681.7187271912516 56624 20192 976085 ZRX_20190410 210456257.1645599 40700.99112310487 0.35845526103112096 6.928367794421655e-05 30243375.256886106 5845.561494108646 149176 15787 212447 XVG_20200530 66401138.174373955 7045.410492932189 0.0040782822690796396 4.3272108704308205e-07 2238172.947281516 237.47856740593937 291639 51767 289428 TFUEL_20210617 2627647734.1482825 68698.63891290076 0.4964170523573469 1.2970538232400414e-05 104197173.79488967 2722.4959738929583 174538 19758 17272 TNT_20190110 5666556.427925255 1424.9090736802898 0.013257038136282194 3.325173814824363e-06 428083.7780001072 107.37337816516498 16977 2518 1205212 ENJ_20190618 126744512.8641033 13596.863392118645 0.1455106431071845 1.5617191420100507e-05 12665220.009416746 1359.3175113592943 46388 12594 19875 MTH_20191108 5008222.385805613 543.1627909804137 0.014400720481273927 1.5620063653082822e-06 186582.54543799465 20.238093226554145 19397 1967 784910 XRP_20200806 13565668790.998877 1158014.392862729 0.3023822645129705 2.5812440200868358e-05 1922038117.7264874 164072.10276539362 956130 216383 27343 BAKE_20210805 347997626.0995706 8728.915333299195 2.0400365908641 5.129156841976202e-05 56147743.40900148 1411.6932194133817 None None 9385 WPR_20200321 3097141.9184929035 500.9880816968308 0.005056417053841262 8.176961182507377e-07 439298.8888979758 71.04101429506291 33539 None 964364 TOMO_20200721 65774754.71591486 7179.249384954696 0.9128902566829908 9.964697741971945e-05 21816744.035855446 2381.4172452797 28062 1598 130769 TKO_20211204 125542659.94073595 2338.077090930594 1.6758476028167213 3.119246240199913e-05 32734577.11218681 609.28694476815 344601 None 27354 AION_20190312 39505723.22976775 10217.445557731822 0.13585357438217396 3.5138211380015435e-05 2262992.3758922713 585.3177203256557 67287 72424 229111 IOST_20211225 800554871.2140812 15735.15194865241 0.03490226435249262 6.863667201011082e-07 86959257.86718373 1710.0879187072794 271001 53974 217229 REEF_20210218 0.0 0.0 0.04014673704689116 7.699721227782414e-07 191289837.44168 3668.737562129737 49997 4874 58276 SC_20201106 114260113.81109646 7353.266865455204 0.0025185499944945866 1.6201574419671002e-07 2307508.2128328467 148.43964231774459 106973 30061 142131 BTS_20201115 49135867.17322436 3052.7090732657803 0.018124929489392736 1.1268109675677148e-06 13550421.006566396 842.4177878482074 13120 6894 90759 DLT_20190807 4499615.664243862 394.034743138978 0.05624518851999926 4.91169265209929e-06 229654.4204366796 20.0549053005641 15046 2666 2977956 RVN_20210318 1845577742.9282246 31374.8793726256 0.2213072602687382 3.7546438245069083e-06 588353501.8394303 9981.858885361122 None 26396 51823 LRC_20210304 726838721.1721827 14298.56551944405 0.5798724912534962 1.1444503536971494e-05 88618145.81860042 1748.9891287453158 62783 9358 117202 RUNE_20201106 91779037.63004655 5906.485945429247 0.42670887976747346 2.738714428625032e-05 7059197.369965386 453.075307506403 17823 1888 224255 SCRT_20211204 868474435.5833638 16176.294189637414 5.679609265452556 0.00010591591300475622 15569026.74402 290.33822664858104 None None 60335 AMB_20201031 1852724.7914855 136.41577370682157 0.013031647526102377 9.621842208771736e-07 261550.6567765765 19.31144273250245 20157 5499 433803 FUEL_20200501 1885848.8807889177 217.77715045628383 0.0018962885814237075 2.199946262033053e-07 74066.42684341199 8.59268786789688 1 1466 None WABI_20190629 12723621.49566555 1027.1321709069557 0.223064475279321 1.800719227807281e-05 746062.6628356844 60.2269536839092 36427 8016 994304 DNT_20200625 5176266.763493073 556.3377735698726 0.006884656202344762 7.406905172478958e-07 96666.29166413806 10.399910099906087 57960 6016 571962 ZRX_20210201 523581636.5874477 15840.213855753102 0.6964187955752401 2.1006858902472764e-05 383907068.4119462 11580.218209260573 169533 16538 76527 YFI_20210614 1389340125.4024155 35696.91098165501 38686.689145623175 0.991011718596634 231631242.52718368 5933.54667476134 None 6452 17925 CMT_20190819 23696455.966878343 2297.6479572509033 0.029722645071921367 2.8807602290482267e-06 3599370.315002787 348.85599272832604 290306 1644 599569 FUEL_20190818 2391472.1705017025 234.24874848434814 0.002657425869555018 2.6029936363532965e-07 129159.2462302759 12.6513668684159 1 1503 None PERL_20200320 5686929.185905523 919.0398360067828 0.016442774249009345 2.6602889845788606e-06 2155012.335923535 348.66108918538134 11562 477 685227 BQX_20200407 4097272.4135420388 563.3414506091932 0.029128795127644304 3.99846524933182e-06 356537.87370377814 48.941409757187756 None 13 327684 DLT_20190523 10042539.530949887 1308.7968944533152 0.12496537499668123 1.630798765615056e-05 2341394.9901551935 305.5521627381802 15133 2676 2919270 EOS_20190723 4205513845.776774 406366.40289741394 4.125499728842471 0.00039902864450228135 2870389598.660727 277631.2558547673 1226 67386 92954 AION_20210711 62120422.99084932 1842.1599557765537 0.125935873367476 3.7350587058413397e-06 1297832.4285913247 38.49165596357502 73615 73381 296358 FIRO_20211007 94441089.42786977 1701.358918426388 7.614936992117182 0.0001372684049915299 6892546.597426081 124.24644862300069 75538 1350 214051 BTG_20211120 1030411746.4146396 17725.669932313198 59.05268570249551 0.0010123717001855213 8822413.09684394 151.2473351608032 104424 None 255078 EOS_20200318 1869039512.5453782 344062.6364546573 1.9899719069762813 0.00036898096363280005 2031545884.9724836 376689.6184179806 1477 70394 93580 WAVES_20210204 725085659.3792392 19353.97983680923 7.276409160987177 0.00019398941379755895 78422395.03468466 2090.7447760009063 156621 57370 119606 BRD_20201201 5379310.60087125 273.83558072798274 0.07415422939520755 3.7749481529156712e-06 118155.72577318309 6.01491974768892 247 None None REP_20210325 191055292.86378753 3623.63888128758 31.920143787846158 0.000606766079661943 58203523.30387568 1106.3836019138485 143814 10898 144967 OG_20210509 12096243.501551727 206.22357776006018 9.43642602738912 0.00016069934283632437 4891222.4513771 83.29596727841368 656857 None 233476 INJ_20210221 200660476.9999659 3574.375240668282 14.861089315894302 0.00026432283105092956 49837413.35504868 886.4199595498592 49167 2505 114661 BCPT_20200422 1747645.8372568036 255.1952855680089 0.01506206942276331 2.2003009696796147e-06 41913.788270023164 6.1228604373647 10606 3166 1977022 APPC_20200314 2096154.757705272 379.8780550969164 0.019552438884161315 3.514691851417493e-06 100310.58605451875 18.031551025704843 24899 3232 683942 ARK_20210111 64521630.56032095 1673.711239813813 0.4136618296465164 1.0755122158437374e-05 2009807.5504644588 52.254581329551684 62964 21579 94251 POLY_20201231 60872508.93926587 2107.9899134637176 0.08247288886724453 2.859847845758109e-06 1682361.073341842 58.33791876902293 35609 5008 312321 FTM_20190821 31868047.60564177 2961.565323813533 0.015357533852800621 1.4287978022538283e-06 4266066.498646196 396.89617460441497 18419 2086 361717 NANO_20200506 83133065.75634907 9270.960949594008 0.6258908951302317 6.955774066345498e-05 3419008.43833196 379.96798504342325 97758 50841 290525 THETA_20211202 6520744758.753661 114062.8491620751 6.515467106496925 0.00011399324680771794 188216538.8408611 3292.9971120545374 224205 26377 31041 DNT_20220112 82979941.39892186 1939.4257560568728 0.11045998750521063 2.5816955419555074e-06 974958.3705801473 22.786945171438095 73946 10358 292726 ZEN_20200113 80771936.66470516 9908.122683813559 9.880314413078262 0.001209820089779507 2240250.3526864145 274.31312096992696 48343 4177 41253 FTT_20200806 337801333.3330804 28836.193164250304 3.6026977034177303 0.00030742889909091624 9322896.839807047 795.550486814668 17524 None 11505 TVK_20220105 88859623.21070926 1918.4036738409065 0.20327027129725517 4.4186771616474044e-06 7466662.921976317 162.3098779595211 103190 None 33768 FUEL_20190821 2319487.5794690675 215.80507474352473 0.0025774359299776187 2.398045837532729e-07 237391.31659119375 22.086883014115106 1 1504 None AMB_20210111 2298348.8738674102 59.619887312193335 0.016207829238053004 4.214002136172706e-07 371871.37772982527 9.668579037443127 20239 5484 666960 RVN_20200907 119755442.6994862 11629.579648767303 0.017115643414379333 1.663924289575043e-06 9152697.783876529 889.7939615251146 33549 8953 265141 XVG_20201031 59732545.63052468 4397.5336112836785 0.003632341995305424 2.6764186672308235e-07 1301661.3592387047 95.91031804775264 288161 51316 404095 SKY_20190723 23018006.141348656 2224.7349660783166 1.437041534239384 0.00013899618405102248 2608473.560511258 252.30159495769436 16337 3790 462705 IOTX_20210718 186099137.20078233 5888.161689020517 0.019539456226360396 6.187484015051983e-07 35715777.553341486 1130.9977111764113 None 3265 234069 MDX_20220112 265914079.86856917 6202.978849532211 0.3203855719688934 7.488123270156441e-06 7197977.644799277 168.2327439680101 35134 None 34109 WPR_20190522 7258341.085613511 912.6595052757272 0.01205990454681535 1.518484664008907e-06 1979639.953190205 249.26009136386102 35116 None 1131129 BNT_20190130 30643729.148915373 8974.007867520388 0.4807470925306419 0.00014074599194215912 1648117.319968958 482.5113050918738 862 5101 110862 PNT_20201115 9071218.450011969 563.6954244873267 0.3039559079876591 1.8895608567330882e-05 963881.0820147494 59.920268540875114 6498 101 413502 NEBL_20190623 16170047.981544852 1507.484273552746 1.0610639007899854 9.893805243849407e-05 731343.9495153878 68.19358002270819 40254 6147 698724 THETA_20201201 640308277.0634243 32568.33524551625 0.6392824338163563 3.2543768068372016e-05 17158952.704878807 873.5058990908461 74710 4533 80855 BTCST_20210513 447974407.98534894 8690.63043370504 61.31598655993477 0.0011904381047852222 11318657.566650111 219.7495631777079 None None 170961 XRP_20201106 11124604142.737074 715354.2174729784 0.24551217214077564 1.5793546828805682e-05 2015568105.5288682 129659.43392437765 975490 219220 21491 WBTC_20210104 3622437743.1104207 108373.859800594 33282.14822035625 1.0015205736186974 419759817.16752356 12631.338881381795 None None 159793 RGT_20211202 295512405.490809 5170.183254854582 26.269526721841814 0.0004593844263597779 11716041.74116861 204.88253067760638 None None 54346 STX_20191220 55527711.2837363 7775.835080433283 0.11837709135521936 1.6566332747531016e-05 4274682.938856523 598.2223346136356 34718 None 37065 DLT_20210217 9276776.720557893 188.52472648129526 0.11407702613804135 2.3181872023569702e-06 594798.8402127058 12.087052985492011 None 2540 4991902 RVN_20210108 120981634.23484781 3090.793054959542 0.015642395702463036 3.962764657130846e-07 24167100.160626095 612.2369757388931 34879 10624 220085 NANO_20200526 124933769.90113449 14057.65148121219 0.937701158095097 0.00010552588510039822 7731583.325389224 870.0876250346225 98022 51455 299823 MDA_20210603 17774060.35457134 471.7246763373493 0.9050671346741035 2.403186389698416e-05 5121864.090704514 135.99868563450036 None 387 1555115 SKY_20190621 25722210.85049181 2692.9500819530535 1.714814056699454 0.0001795300054635369 682090.1352980924 71.41045131877716 16135 3771 427664 BNT_20190225 32336077.90015742 8584.844914174735 0.5000268440547394 0.00013347881855621052 2112513.510241086 563.9213391914307 849 5096 140738 KMD_20190522 133593111.97472914 16787.416799565315 1.1759868412097614 0.0001477916207847295 5957987.519007223 748.7674191519327 96970 8367 351516 WPR_20190726 4323865.307671967 436.49740360419725 0.0071044832393053715 7.177367627362397e-07 145145.02723994176 14.663405974710239 34709 None 1469795 ATOM_20190909 665671679.764023 64069.89974612741 2.7275370575095477 0.0002624358869810665 211417776.60281858 20342.019395691175 None 6807 108058 KMD_20201208 71135398.72264346 3703.607149024382 0.5796996721989452 3.0195537513589805e-05 3138291.594363955 163.46809582752215 None 8400 313408 SUN_20210301 0.0 0.0 0.0003142241972405165 7e-09 530.4919977242656 0.01181781675848305 42 None None GRS_20190706 25647820.002175342 2331.337410871609 0.35183872473541095 3.1981462030669696e-05 507355.4997367162 46.11763717334828 38653 107026 None TOMO_20200625 32889005.84194625 3535.1903953052765 0.46256735202435934 4.972974435555955e-05 5258781.691092118 565.3617099763156 27203 1567 168109 STX_20210201 389989527.0431121 11796.966150957865 0.42720005829138247 1.2913976800270479e-05 4909650.818358056 148.4155152489685 49200 None 62343 GXS_20211216 92037969.29750144 1886.5499994618494 1.2314034897776802 2.5197871536431663e-05 42320539.241444886 865.9935756321194 89386 27096 757072 DYDX_20211002 1142825482.2067156 23728.2370600905 22.310582521374005 0.00046318943363644313 788722467.7704371 16374.646999599168 None 1742 21030 ENG_20200404 10064840.381600661 1496.6992831637262 0.12181257599996116 1.8102996652944924e-05 1490732.5377222905 221.54302147613498 60953 3592 411857 QLC_20190810 3228658.577681561 272.18466119159206 0.013452839935455839 1.1341053105487868e-06 62560.9116944257 5.274028571352193 24867 5758 940522 TUSD_20210909 1422782357.9507673 30698.4199869031 1.0025059424531955 2.164432630618544e-05 137514225.07908458 2968.96270965785 16287 None 550825 DOT_20210111 8899676317.009953 231561.55904405122 9.32941019974151 0.00024256273886844604 837525001.2664026 21775.477101822158 None 7649 41009 YOYO_20191020 2201743.532124354 277.13707617928907 0.012586468357522923 1.5833685828316941e-06 328299.3077396637 41.299814600469894 7529 None 1389635 SNM_20200721 4370040.738597922 476.98562192 0.009986944458228208 1.09e-06 452705.4678713611 49.40940265 29264 9590 None BAT_20210702 870301442.8139344 25905.5567732856 0.5817037172742314 1.7294409530043026e-05 74667250.16662669 2219.9033021737564 207575 75719 27779 MDA_20190615 19257648.755418632 2214.3550209902432 0.9910139110696197 0.00011419055806592828 1252708.1277790293 144.34453301509944 None 363 1548972 WAVES_20200305 119765612.7074532 13680.99793697186 1.1995800755553443 0.0001369781318071265 73481428.13617936 8390.72684993849 141269 56866 51296 PIVX_20211230 37386153.46428187 806.0961244130214 0.5502901832239189 1.1814958185085689e-05 405011.499916677 8.695764674484897 69168 10385 315235 QKC_20190627 70117344.9115032 5394.494713446814 0.017601586108544568 1.349741061165971e-06 12233506.801564272 938.1010523880468 50937 9213 162641 ANKR_20200501 7876094.514074554 910.1672615609581 0.0015226843133732348 1.7665157594034618e-07 2295121.2382276542 266.2645041695485 None None 5876 WBTC_20210217 6205349085.971738 126177.24552871313 49271.24173196434 1.0013324424365897 308106980.26393235 6261.61436640427 None None 140839 SAND_20210107 27943226.461480234 762.3690560378857 0.044974014674755036 1.2184983854984721e-06 11904020.26838538 322.520228244393 63046 None 60991 NULS_20190903 32327721.576904673 3131.773026779303 0.440243952361189 4.264646353252519e-05 6269296.992699357 607.3072534892432 21331 5302 307386 COS_20210105 22705558.422640435 725.7349863631855 0.007554464884069834 2.414624369755544e-07 1208850.1861678336 38.63833062563475 None None 444691 CVC_20210624 124175329.08211479 3683.4137527428607 0.1856233586175261 5.50307265614319e-06 27307955.92993152 809.5838082685171 103246 9828 150952 MKR_20211202 2678948171.7588487 46860.97562983756 2972.367071316758 0.051980241771090584 84185410.42593884 1472.2199117891028 191579 31955 33161 SKL_20210422 364168950.8942903 6720.966566500476 0.5499872312906845 1.0158445622117892e-05 71313819.25774053 1317.18977063381 21621 1309 134291 SNGLS_20201111 5846790.826573703 382.253589499051 0.006561388314369545 4.2954659417847446e-07 262476.1825517382 17.18321563458631 8946 2115 2790788 ARDR_20190103 54446319.71661066 14056.012055115809 0.05441263760722035 1.4053804029370122e-05 417133.9778913861 107.73819166044694 70749 6616 807975 AION_20200806 47109631.44132961 4021.4479722308856 0.10493188727106469 8.957364181762173e-06 2290806.019984304 195.55146032745478 67559 72553 291955 SUN_20210131 0.0 0.0 0.000341062155907725 1e-08 44.75606861875893 0.001312255489022 41 None None FTM_20190803 48163345.49113037 4577.271413929809 0.02323897781930291 2.2079374760211297e-06 10344450.548439782 982.8272229674446 18038 2052 402967 AUDIO_20210707 196617671.99680004 5756.153773559433 0.8476274637300534 2.4815348348022898e-05 12043996.696532167 352.60298458435364 None 5743 30965 XEM_20210930 1243451306.278769 29932.824685951287 0.13847315258553908 3.3313577242474644e-06 37069993.80916495 891.8220457043591 371567 22064 119214 KEY_20200106 4496163.938283041 612.3168786782081 0.001649690779179615 2.246313739122519e-07 1348288.0929022091 183.59065260022132 23603 2790 310211 OGN_20201130 23677979.748376515 1305.3094900784076 0.1505612673366306 8.28637407125462e-06 6844728.707932234 376.7103152988847 69918 2462 210408 POLS_20210722 65471377.428559475 2034.4733122226544 0.9101337706250283 2.8181555685363887e-05 11295376.74515944 349.75220017632137 382926 None 18534 FIL_20201130 1305347569.5699754 71948.59839581401 29.9657492276032 0.001650058506939397 41468964.75579041 2283.480968539596 None None 36454 LTO_20200425 8777226.582426624 1170.7926021209428 0.041496515043165594 5.53636470556705e-06 1408532.0774405114 187.92294418191207 14690 426 889154 FXS_20211207 633625723.7490193 12555.98373174452 17.780251683490736 0.0003522206708540264 9052281.594945394 179.3225851291918 23111 None 92799 DGD_20190903 32668697.08481185 3161.452905406751 16.3379288642635 0.0015807130679328248 1293215.6606322944 125.12007558609236 17247 3364 548048 XEM_20200317 294197189.49802464 58421.6218214916 0.032688576614523686 6.4912913142203205e-06 26124183.707703885 5187.735421846701 212125 18023 216330 BQX_20190803 15880929.660292001 1510.635002323399 0.11282838177327847 1.072831163049669e-05 677842.2575937927 64.45278095362967 60641 5776 410121 BRD_20190316 15532913.458857505 3958.176436654942 0.2591865739059691 6.604724813855946e-05 666782.2150352527 169.91285369121286 154 None None XRP_20200704 7844409345.792821 865086.0380498762 0.17602967232868488 1.94204672071925e-05 965079482.8005862 106472.35889337581 951722 214830 31878 DNT_20191022 4917106.06672759 598.8017841854428 0.006545293145784168 7.969745263835304e-07 459785.03406877565 55.98480489773332 59888 6228 368992 FUN_20210602 223147608.76063746 6081.6339695901515 0.02165942998306468 5.90466208660084e-07 6720816.153782682 183.2188029199465 None 312 199069 DUSK_20200523 6186437.031539246 675.3029052228857 0.02232350403332519 2.438610968436083e-06 684608.6581377934 74.78638570041966 17285 13332 1128839 SKL_20210106 62476121.74328073 1832.1400723725094 0.11100495305946162 3.2565367849088385e-06 28790377.896074153 844.619290274096 10392 86 244845 SAND_20210427 342943447.8361159 6365.79620515213 0.4999099068833436 9.27371451734007e-06 59456830.2744138 1102.9700801659135 None None 22461 SUSHI_20210429 2186044953.4274726 39936.58949408434 14.264996693106971 0.00026052107812515266 730586729.515657 13342.676940774876 78608 None None WTC_20190614 60013247.65655922 7294.582456909172 2.0593965121002147 0.00025020048755146275 5202823.53524015 632.1021607605621 55615 20159 895800 WAN_20210110 64529673.12497996 1595.3694539216278 0.3899421592862883 9.676636398203506e-06 7490352.452644331 185.87735501925178 None 15877 601908 PERL_20200329 3816271.9872113066 611.2333201994649 0.011165806874122186 1.7859384023829689e-06 1576812.0746150925 252.20651486663326 11581 478 685227 FUEL_20200530 3172455.018500283 336.57281573998705 0.003110971483928797 3.300038348926471e-07 1344666.4485978798 142.638750300719 1 1465 None CHZ_20211002 1531396777.25726 31798.13322633969 0.28666661164005486 5.952167266343386e-06 184280264.47553468 3826.280820668542 390386 None 54002 LSK_20190530 279077696.2070218 32273.54146140818 2.107349583601122 0.0002437014318391842 4116299.551732591 476.0235807302582 183266 30421 175336 BNB_20190410 2650892693.214673 512524.3163913243 18.35060702383248 0.003546233958774338 160615366.78953943 31038.737152963422 942294 48827 1082 FLM_20210401 0.0 0.0 0.8675780230152622 1.4764363275373284e-05 148368767.22951728 2524.926081555844 17344 None 112678 QKC_20190726 56040524.01238846 5657.3323837408525 0.013991071786043273 1.4148619038644502e-06 3697819.4393350235 373.94589435982925 50978 9229 202056 GAS_20190601 46356662.45913676 5404.187189157293 3.3330830468380257 0.0003886447221524708 2456260.3092601113 286.40528664059065 321789 97614 216321 DCR_20200721 180587905.00059116 19710.991116657922 15.349481322299104 0.0016752801964346798 7444746.393727631 812.5379574078202 40566 9873 318539 CVC_20200418 12840067.683146758 1823.8916999298772 0.01916428012409964 2.7222264178057866e-06 6713961.8977422295 953.697416642935 None 8045 107790 HC_20200407 48951988.72996886 6730.498135833213 1.1028140850529577 0.00015134710313614773 31524929.841287002 4326.39270092381 12690 843 1040016 BCPT_20200411 1681591.4178180315 245.22300836846992 0.014546459667220265 2.1198865451118486e-06 250615.92842222363 36.5227929549204 10634 3167 1858149 POWR_20191118 20050756.398952067 2358.96069822105 0.046640925713598985 5.480982596713493e-06 446678.44266811747 52.491170214428465 83303 12923 272519 KNC_20190810 26821537.386190735 2261.1868077848317 0.15982129888182703 1.3473037425655832e-05 6681994.207913609 563.296373331329 97638 6699 212094 XLM_20210217 10916150915.469465 221847.3834626792 0.4867154454530544 9.891448817514702e-06 1916635789.7105656 38951.516728818366 392496 149076 26616 CVC_20200707 18175577.900112886 1947.0771421609795 0.027167073753797483 2.9076956650358227e-06 6240810.131760885 667.9547724162312 85278 7991 96333 BNX_20220112 0.0 0.0 32.045351343242594 0.0007489711213243142 12874234.001350654 300.8994775217689 None None 16195 NANO_20190723 160336332.62320313 15492.827067323546 1.2006883756679574 0.00011613358053640181 8826511.68262409 853.7222697598502 98799 47041 306067 RIF_20210804 138019459.95743996 3592.1735267928816 0.18317523398547964 4.7685658442172645e-06 1151330.8308179076 29.972375390374935 None 3365 684649 QUICK_20211007 150634850.89865842 2713.370582737596 416.9076307695207 0.007515261854926868 13196470.706072908 237.8822683910923 53576 2975 5286 POND_20210805 53619037.254583225 1344.9403138007494 0.06877738062614142 1.7293297355190208e-06 9396795.890726045 236.27184409315836 None 598 162799 OMG_20200621 206081884.9483227 22028.360918950755 1.4704816942204677 0.00015710049347967541 84549685.25178003 9032.956567097805 103 43067 539864 NAS_20200325 11756709.042661857 1739.3015804639977 0.25794335062372103 3.82190580867463e-05 5075049.32452593 751.9620275465312 23591 4966 1138524 ICX_20190224 129078085.47787106 31386.295005521442 0.27279927158501677 6.632118103780141e-05 15168050.073013352 3687.557481506146 111359 23491 263363 TOMO_20200208 36782651.2622991 3754.933611027793 0.5277695754960215 5.3863965267174224e-05 74807988.31954654 7634.875278219984 20822 1459 248712 LIT_20210611 74355796.25269161 2017.4022304312516 3.3274271748741184 9.062904648358432e-05 15520161.286520172 422.7222249340364 51673 None 185177 ALICE_20210930 178851785.8563197 4304.881482671147 10.294758069543613 0.00024766910533829034 118652798.4092249 2854.523848873703 120306 None 28938 SXP_20210120 75845359.38394228 2094.5169356625584 1.0068841858981588 2.7936501105539748e-05 132821611.28988467 3685.20147858866 93965 None 143437 ETC_20190509 627202763.9445572 105277.55407608241 5.685874194077302 0.0009543882175711978 425997616.7762265 71504.7664241573 227680 24459 756071 OXT_20211120 314624112.8220792 5412.324923542633 0.531364034652951 9.134054038331734e-06 52486403.6992022 902.2320224953241 76736 4865 156946 KEEP_20211221 327430024.6701455 6940.211864966531 0.5934130451624968 1.2590242656273697e-05 22887432.89413749 485.59487572010494 30625 3633 142199 BCPT_20191213 2636025.5833023833 365.9056638898661 0.02275047506787472 3.1598159701265894e-06 68679.02766969218 9.538837663653762 10768 3146 3993255 WABI_20210418 36392665.12343973 603.9406529451587 0.6158156379936459 1.0219534547476134e-05 6619149.758984909 109.84558602190381 44116 7682 293001 VIA_20200903 5567308.752097459 488.00476254970687 0.24032260722385954 2.1061388666648745e-05 159551.12788287722 13.982739099585773 38435 2158 1668792 LOOM_20200310 16199356.378941827 2046.0852089295033 0.019631279741018307 2.47707738441908e-06 20214126.17948578 2550.621022447952 21556 None 487535 ONE_20190904 23971104.53772947 2258.8116615249555 0.008779323738931913 8.281096325614447e-07 4673904.503908245 440.86600021308954 70896 None 133162 KSM_20201229 522200914.2861637 19243.532249781412 58.33524367330408 0.002149201074691931 96829240.14109975 3567.406148816514 21788 None 222840 CHZ_20200331 30145470.668284032 4692.818707428912 0.006288264905872013 9.808466167896243e-07 2422963.8569598678 377.93508022910834 19819 None 261202 PERL_20210825 0.0 0.0 0.09112633881229554 1.8972840204538403e-06 6018932.888421415 125.31640509456302 545 686 3275203 RCN_20201224 18267322.49056147 781.1813137423367 0.03527777513205808 1.5130616663797315e-06 311160.8743866702 13.345671300110785 None 1131 2745170 OAX_20200422 1684427.6231212802 245.96401578468854 0.03217470019483128 4.700152552135175e-06 40441.8966314383 5.907843197121 11940 None None DCR_20190401 199781090.1563882 48685.97271198519 20.96546938498285 0.0051091297871542 2101457.9424087894 512.109754036938 40313 9402 258760 XTZ_20191012 731110399.4350388 88462.52286277688 0.9027213314703567 0.00010917860871738037 20833180.773296393 2519.645446154907 44856 16824 176367 FET_20210729 236176932.65643388 5906.342794910279 0.3438781342138079 8.591476339111107e-06 54105328.7473174 1351.7714722256403 69276 3088 163095 DUSK_20210523 45941929.62592652 1222.3780103704025 0.12826642379978045 3.4127515786110793e-06 3877754.4805479227 103.17441098703775 27187 13599 286941 C98_20211028 649622565.9893899 11092.409243113578 3.505812531982843 5.9909968442044174e-05 102507675.8610901 1751.7284708979573 237811 None 24344 MKR_20201030 485964405.9561784 36077.25395951333 533.86338250567 0.03970233342023666 35199000.32559623 2617.678029211899 69832 17347 25138 DLT_20200511 2448238.5190968565 279.6381038356998 0.029944081510593783 3.4197732873169153e-06 759940.9400141004 86.789295095904 None 2569 8451664 FOR_20210111 8590524.36030066 222.84253166472493 0.014952841593958361 3.887707939990734e-07 2483861.291838657 64.57988072326314 None None 227730 FET_20210428 422798055.7569234 7674.583855977936 0.614943356872341 1.1164109811198256e-05 108925047.27891974 1977.5011396119 52971 2323 124282 GRS_20210509 126745816.29764429 2161.003060978286 1.635314067298449 2.7838688074177313e-05 6308526.928622682 107.39289588794529 41643 106850 7089967 XMR_20200105 872976859.2687373 118793.2454090528 50.29499846146174 0.006839991498697182 85815470.84996529 11670.685138209645 319820 164199 86242 QSP_20210723 20356436.888661057 629.762591171342 0.02857464479335027 8.826546355433994e-07 226313.5983573836 6.990699206281575 66496 8492 252569 FOR_20210131 11583147.826126989 338.56523373699713 0.020537119776329035 6.011251496799706e-07 3938900.113247227 115.29230709747686 18088 None 253691 FET_20190523 0 0 0.1719767973643138 2.2456272385226617e-05 56033131.566138916 7316.657155679532 8705 227 203647 BNT_20210731 823318500.2971773 19733.801322134295 3.482002327702358 8.333787716104336e-05 76038019.16293421 1819.8859461277611 125755 7631 39368 WRX_20210217 48621730.22359304 988.6560622870155 0.2044057211134437 4.156847162798139e-06 7729973.722962965 157.1987279209742 59486 None 4431 PNT_20210207 27121767.400901824 691.3503970654019 0.7942737142276457 2.0198454330506236e-05 17188386.21087718 437.1022579201222 None 148 785804 WAN_20200229 24318882.57142952 2783.7654768722914 0.2285079741045535 2.6225827116981582e-05 1448771.5928532167 166.27530603714433 106223 16406 754171 STORM_20190920 10144866.070561184 989.7436841737365 0.0016147174224579784 1.5747113125603696e-07 223035.8269769975 21.750990914082077 26402 2545 1924840 UNI_20210314 16859485766.807154 274814.66420340736 32.441688716023855 0.0005287681961168089 1289367663.2993128 21015.4477290627 None None 2571 MLN_20220105 132923775.34907292 2870.0329873888663 90.67266880773347 0.00197425909926551 8455273.986283777 184.10069785858082 31732 605 93129 STORM_20190426 12678668.532430636 2441.23505610283 0.002810863304630681 5.402259056140377e-07 988225.0751066271 189.9291172468177 27087 2571 3845738 UTK_20201226 52200661.98485817 2113.8056756893866 0.11581918738229537 4.690792432232822e-06 1981232.008212916 80.24186942312494 54406 3094 117682 SNGLS_20201226 3512972.8578789826 142.2493689511699 0.003941259020363196 1.5983600840769893e-07 85588.86042889947 3.4710182062224075 8940 2115 2318818 POWR_20191216 17951321.491006326 2522.585670759367 0.04174375961026956 5.87096856530023e-06 1404925.0634780661 197.59290876744515 83091 12894 269666 NKN_20200403 9120236.482872033 1344.8305925378318 0.014071517632209807 2.064148278989436e-06 2656473.2673294363 389.6775647274933 12238 998 307809 POA_20200314 1741766.9989914836 316.84023177828954 0.008004131771230613 1.4388003911268999e-06 421719.88042209577 75.80718886690835 17413 None 535987 IOTX_20211221 1163765904.1367836 24667.2000958684 0.12244707729738878 2.5980911794481834e-06 146596248.6049466 3110.490089654652 183878 16316 43807 BRD_20210131 6561030.301401825 191.7731510375077 0.08165088723435415 2.3899359961286117e-06 14434041.056113627 422.4869497203702 466 None None RVN_20210602 718265480.644872 19576.23042817238 0.08078936309182233 2.2024304869606503e-06 56395719.952089 1537.4258219538854 63056 40642 45441 TOMO_20210828 271566646.741745 5536.375726283171 3.2289778327926433 6.583650322363468e-05 10712809.291295975 218.42636895113154 51488 2250 146029 STORM_20190806 12203405.37999408 1033.175084619386 0.0019466887263775582 1.6481713670150295e-07 278257.84576373204 23.55880566938257 None 2554 2770937 KAVA_20210809 463433739.14602095 10535.07896754922 5.689658020634714 0.00012934464810537263 111949011.15066358 2544.9693813779845 None None 50274 STORJ_20190901 20792327.87446758 2166.0341861552797 0.1445711318575297 1.5063969453987956e-05 2964249.3542292356 308.8677604745961 83589 7787 165970 WTC_20210618 21999846.161709443 579.0406615061927 0.7573278153971538 1.984673073147139e-05 4542656.606124847 119.04604668457867 65264 19818 517910 TORN_20211204 63591639.215328135 1184.4644146116495 43.432902666023914 0.0008099563412399782 6564382.380061443 122.41556075444961 29385 None 84336 WPR_20191024 4768154.237855683 638.9240120580886 0.00784015472792651 1.0505374669947744e-06 370604.0138888717 49.65889265196668 34136 None 763120 MIR_20211007 296609310.73531246 6213.759998811874 3.0923388634358595 5.574313010292453e-05 34706626.962836415 625.6287255897585 65991 None 15469 POLY_20190804 25564878.269218434 2369.316454225999 0.05221614513275586 4.838382768108239e-06 1895080.7731564257 175.5994459893857 35279 5083 295167 LSK_20200107 81080627.5991907 10449.961537993535 0.5928881214665466 7.635298385233881e-05 2899553.3519219994 373.40864531182393 178942 31084 161971 CND_20210125 18052544.540720023 561.7296775184423 0.009394204930173872 2.9116497577639793e-07 157124.5727228973 4.869935534809812 33973 5898 464745 PPT_20201031 7482692.4539146405 550.9492209539261 0.20621431230864637 1.5194489825747273e-05 1223902.6270061147 90.18082113483852 None None 1540688 AMB_20210819 6379646.401349974 141.53342609253642 0.04368103139253958 9.70045643525202e-07 650059.2233585527 14.43617738751563 988 76 632892 DOT_20210108 9154780364.803495 233709.5831285916 9.646132180213604 0.00024443846345969085 1357811528.895877 34407.71467676613 108016 7492 41009 BTS_20210204 112120481.57578619 2992.7188762343867 0.041618671793269384 1.109763391338149e-06 39828538.72906009 1062.0294283190615 13245 6922 136810 LRC_20190821 34862058.97590632 3242.7846860457626 0.036230623210358484 3.3700852320180633e-06 3247135.919985918 302.0407555995682 34520 2445 491659 NANO_20200520 120786269.22590943 12378.266856380538 0.9061069513815798 9.29020690894254e-05 22668002.082894754 2324.1233194529245 97976 51244 299823 ARK_20201014 47548852.26410604 4162.042739298763 0.3106063860037566 2.7183237231794515e-05 2659936.4320236337 232.78878449175542 63158 21734 105690 TNT_20200106 20179200.746159196 2747.6287698694837 0.04719705062320102 6.425858705214494e-06 643305.3379967719 87.58575274713098 17731 2567 553344 EZ_20211225 0.0 0.0 3.543924841798496 6.972220051763712e-05 624479.1514528872 12.285830699103109 None None 290326 VOXEL_20220112 87913836.31429008 2050.7664261640907 2.4259678058951497 5.670026233808553e-05 15169396.992586164 354.54254046575545 None None 50305 RIF_20210620 120697447.22082458 3385.707124587484 0.16232615081755575 4.5592603674493345e-06 4101834.2423328734 115.20836415282182 43475 3340 412930 ORN_20201030 18081060.86586169 1343.1089531584057 1.4383797894110708 0.00010696937803843778 1525272.3135356687 113.43139824354915 13883 None 151682 GRT_20210421 1933927377.0243893 34231.5169987222 1.574542738260787 2.7927370956367168e-05 374359448.11200964 6639.943727404477 None 13589 26419 ICX_20201111 199763966.24332955 13060.241783391639 0.3481845278604853 2.27926173723217e-05 14091466.228940932 922.4459224102525 116211 28007 230904 AKRO_20201228 23606517.11526952 890.5974966422106 0.009988402390367787 3.7981157284889006e-07 4866672.508191309 185.05647526366155 24935 None 166133 RDN_20190224 14330235.524137348 3482.630472006818 0.28324018529369865 6.883493984025591e-05 2172197.239429573 527.9020211848136 24932 4461 723276 SNGLS_20190908 3755551.465632657 358.71496112151925 0.006507507610868419 6.215705898301182e-07 919492.0500959841 87.82613100102014 10 2163 None NEBL_20190703 15824859.796634385 1464.5723788592306 1.0356921167690165 9.576301721101015e-05 556052.0795393983 51.41414518946773 40279 6147 707671 AMB_20190723 4139560.3007052457 400.260675968614 0.028621612314241422 2.7684750287663373e-06 294286.2950469056 28.465351644083782 19376 5652 802250 MBL_20210110 6264900.923421478 154.82016289414832 0.0017765287209757512 4.408557031974245e-08 29329237.175700955 727.8216966982644 None None 990117 POWR_20200313 16607353.005494887 3460.09206834622 0.038153086515960555 8.007510546401852e-06 2854716.2007511538 599.143402852517 82686 12836 280064 GRS_20210617 53303963.10848291 1393.6075473995033 0.6867326268866522 1.7954682252779433e-05 1404249.8688651712 36.71423085471489 41125 106844 6399829 REN_20190906 41538437.27075259 3930.011943039796 0.05059992324957529 4.787408632399261e-06 6101301.35144084 577.2621949382567 9590 879 312063 GTO_20200914 7312381.748021017 708.3987237226647 0.011029600968847959 1.0680133894894692e-06 4486118.6583876945 434.3978361074866 16616 None 1248781 ARK_20200610 35316957.96387482 3613.0381045065724 0.23548212796319548 2.4092826983620607e-05 1244179.547949943 127.29544634488069 61845 21900 92267 XEM_20201111 1187182167.248057 77616.03074252255 0.13174345089134618 8.62497468499817e-06 30095555.998879023 1970.294590471571 211943 17792 137047 KNC_20200418 85691583.10582025 12104.484873738033 0.4738765031173565 6.71420970585152e-05 37751655.15149033 5348.91533474752 105042 7345 116749 AE_20190906 67612526.29281558 6396.379025063511 0.20634957447895008 1.9523927082717533e-05 18615495.773939475 1761.3197556465345 24918 6351 344855 YOYO_20200407 1426474.006071323 196.1279673106159 0.00818309767432985 1.1246937098993022e-06 222906.9972848967 30.636576479504786 7524 None 3120831 LEND_20200626 163071822.45116717 17608.611704201758 0.12915181286700217 1.3957601919344004e-05 5439311.109775099 587.8333218898495 47273 5746 78862 GRS_20200701 13498268.358861586 1476.759955729983 0.17909394514003807 1.9593532997355236e-05 837263.8615553648 91.59973044343101 37418 106874 None STORJ_20200721 25278522.92093255 2759.125760582383 0.1762769516849347 1.9241595904408284e-05 7208720.986540773 786.8714252477025 81263 8187 105568 BAND_20210206 279923120.12131536 7386.392847359422 12.485214303342982 0.00032845927698990185 273125567.9408628 7185.349357542994 55974 3704 278216 CMT_20200316 5295732.339935438 980.2572956918552 0.006515688180666036 1.212535786971367e-06 7449857.495390662 1386.3798528300158 286650 1639 911838 OST_20190430 13091769.225597633 2514.9356447044333 0.021149774097082213 4.061907517585251e-06 447617.3374042726 85.96688642904897 18208 752 1002831 AION_20210519 167785782.08748645 3936.289972309507 0.3408729721991149 7.967881841231705e-06 15012497.622048983 350.9160800357783 73417 73290 246548 MTL_20190318 15067816.969493572 3783.7552387661026 0.352230022440304 8.845185345741334e-05 2376331.8985026544 596.7434558709624 32791 None 615522 OXT_20210114 0.0 0.0 0.267158826502685 7.165861721032299e-06 12193398.586980544 327.05716418789194 54662 1839 172682 OST_20190213 10453129.739098938 2876.7640515769863 0.01984599312538291 5.461646056444233e-06 376409.0127616481 103.5883055673515 17254 737 739768 BAT_20210218 855695086.4403313 16395.730947454893 0.5732994311982574 1.0995279130946539e-05 390458913.2562824 7488.590615632754 138025 54572 20378 INJ_20220105 361438331.7349479 7812.760932535993 8.150167085495374 0.00017729144282680977 10270857.735976765 223.4230498563507 98479 4472 125425 OST_20190916 7678983.418550797 745.1981788229865 0.01153779244039888 1.1196718947786841e-06 397817.0470692996 38.60570114848978 17978 753 557470 ATM_20210421 0.0 0.0 9.081896321543702 0.00016107242636832132 3268062.947869154 57.960893837667065 4929565 None 149248 WPR_20210620 9340493.832357245 261.7213613809419 0.015304116896664305 4.298814573190517e-07 49394.552195361706 1.3874568669814713 33673 None 6502768 FUEL_20200718 2355246.0112028127 257.3170863709003 0.002379408359503802 2.5993710745441864e-07 142971.5852697496 15.618849187762592 1 1459 None OMG_20190920 159692193.66142124 15596.367367663315 1.1401662963006418 0.00011125058048775718 84463324.06714256 8241.423959718106 287536 41511 None SYS_20201224 30881342.64179589 1320.7196391500813 0.05118347330814724 2.1948942184159143e-06 3293963.7293184213 141.25461751345998 60917 4490 329298 FXS_20211104 643466148.759515 10203.153975085877 18.037150071629835 0.0002862196130964415 17075601.19773988 270.9614295383317 None None 106944 KAVA_20210707 322164939.52530795 9432.090760128778 4.593609261462918 0.00013450566177554586 56453172.89490444 1653.0076781367807 None None 48831 NAV_20210204 18237995.643665884 486.8084141307052 0.25699842766639747 6.8515520116264896e-06 6752110.2930066185 180.01057547645937 48605 13662 604574 STPT_20200901 25793285.242895957 2208.523081608289 0.03163462386538575 2.7134810503920467e-06 8569264.857523346 735.0344327034268 14277 None 980559 VITE_20210722 33465692.312731925 1039.9501223328914 0.05108603193212806 1.5818543789537317e-06 3982035.120839663 123.3018000187704 33116 2401 593813 OGN_20210304 85154140.480696 1674.8538690859255 0.4031337059056724 7.956325618556376e-06 48438731.33598967 955.9962697564193 77744 2981 129589 BZRX_20210430 124594373.33093052 2324.914199592546 0.8916990567052347 1.6637953136279944e-05 113143221.60560283 2111.106437319062 23982 None 181064 IOST_20190605 151502004.06072986 19774.497633798845 0.011173148150593903 1.4573776189086096e-06 70375580.10377875 9179.489431141705 199642 49815 109542 NANO_20201124 152834336.52038202 8345.237655077673 1.1666581252836896 6.356959253577599e-05 26395232.469664577 1438.239820749243 98367 53112 313412 TUSD_20210702 1512483385.951165 45013.45657718815 1.0048961656394588 2.987618147804575e-05 56329033.759524345 1674.6968419484567 12709 None 677408 CTK_20210111 23030346.415541224 599.2288630895987 0.9125441796041226 2.3737209547420116e-05 7634148.211787583 198.58038642893754 None None 220154 XEM_20190706 806368720.3895508 73367.60829900662 0.08969671432059961 8.162824902802149e-06 51618986.74041221 4697.57174065497 217113 18462 188910 FTM_20200117 20019055.31291368 2299.279392901193 0.009506979134301884 1.091820616210199e-06 3223405.0313491193 370.18910191192776 20638 2263 555132 ARK_20190922 31942940.921023533 3197.3042969634143 0.22393486037721538 2.242391380453333e-05 417237.7733909292 41.78047067237933 None 21790 89396 POA_20190225 5773200.274601209 1535.8477132566893 0.026130474116488098 6.975355133134899e-06 359660.7397848979 96.0090267119446 16400 None 772242 OAX_20210217 15146651.157964585 307.813624567989 0.2683125581941092 5.452445244185984e-06 1165990.6544564539 23.69438181144357 13193 None 1071767 XZC_20200707 45349149.84236567 4853.72578602709 4.322107693771488 0.00046259578484195905 11981686.782245144 1282.4015951177414 63905 4118 587407 FUN_20190321 28042095.860833004 6935.940822675191 0.004665241703304469 1.1539023523127995e-06 533787.8752851068 132.02726120090543 36498 17796 506904 UTK_20210114 92471679.10688089 2483.4214440294445 0.20478674494883176 5.4796364772562386e-06 10422475.360177284 278.8821912336255 56327 3138 130913 ADX_20211021 73676229.5406819 1111.4602657122114 0.5586518077055554 8.431124664632358e-06 2452225.7644082876 37.00877870683752 19 3926 10004 RCN_20210723 8540919.491041806 264.08034249575934 0.01618027883055627 4.997845041219935e-07 225822.21880060076 6.975309067594506 20026 575 2225791 TLM_20211002 254180918.58050406 5278.546359300023 0.20483267136268804 4.252525856186392e-06 111542942.21864101 2315.7401732069607 66545 None 16687 RCN_20190714 11294804.76894369 992.3744002390569 0.022573147328110558 1.982182024790286e-06 400368.42622872203 35.15695380129234 None 1125 1949015 CHR_20201018 14392603.166054757 1266.634149599835 0.031907491581891434 2.8076007828341306e-06 1787070.1131257988 157.24769324828407 32801 None 333879 GAS_20190915 18515423.872900978 1789.0737031148476 1.3285557454209949 0.00012839324484151683 878104.1949160903 84.86105854632284 323840 98250 210014 VIBE_20200807 3236446.244247335 275.08361664 0.01729654506113371 1.47e-06 166201.7137348203 14.12516305 18789 None 1880270 BADGER_20210806 161182783.88228086 3934.0081022007794 17.359124376218947 0.0004242635590751551 92399816.93262291 2258.2864400367916 36288 None None FIL_20210430 10290478894.81161 191972.74811482348 149.71293049316535 0.002793449990453263 689794370.0552198 12870.672360083387 80390 None 34217 MFT_20200414 5074054.021926878 740.2028742080581 0.0005223391423891966 7.628265632817903e-08 895840.7756277595 130.8290121613431 18315 2565 847135 KEY_20200410 2068249.950879593 283.7512886735033 0.000750533212345309 1.0293442732653834e-07 695323.8534884468 95.36255223357865 23368 2748 226427 BAKE_20211125 356283963.82754946 6231.734398368132 1.8463746930810834 3.227987217359017e-05 37075983.43193309 648.193462777487 412903 None 23826 STX_20210828 1501358442.888028 30610.046852250205 1.4268116709908512 2.9091845279810546e-05 19523787.615677353 398.07847113889267 72356 None 67440 ORN_20210702 159154865.8795402 4736.654108641035 5.515221102592358 0.0001639709177790963 3983579.6130643217 118.43427363106625 None None 65422 ANY_20211230 333393027.6611573 7174.608391725689 18.14924504048082 0.00039003624734066896 21577250.34496141 463.705775843993 None None 13118 COMP_20210304 5824435.713009885 114.09818832046562 6.430537220063816e-05 1.2647194941552688e-09 98.77150592697734 0.0019425787416821956 2204 None 1572338 TCT_20200223 5581544.591331839 578.5409038773911 0.009624748536510106 9.970785486368534e-07 277921.99474032293 28.791407702628597 6 None 380561 STORM_20191216 8887481.184978217 1248.8485515870314 0.001296353340504256 1.8232305337802045e-07 1165426.6994920024 163.90913472479534 25984 2533 2709978 XZC_20190714 83603987.49736838 7345.513145124631 10.537884379582302 0.000925347480035021 9804141.554680616 860.9164187745571 60856 4036 268050 ARPA_20210710 30750880.46266049 906.6607092451723 0.03137771077189716 9.232731646589227e-07 3667304.182519804 107.90855849798001 None None 560675 QTUM_20200305 206605128.39448652 23600.800525582545 2.150884869479347 0.00024560610596762383 355196055.2607902 40559.26991981719 179302 15183 105986 SNM_20190515 10332733.211902382 1295.2727397128785 0.02572866956475796 3.2189778788081597e-06 261525.9665933166 32.7201645261492 31527 10022 15333127 XEM_20191012 351372554.6250534 42515.1969810449 0.039025109148723335 4.71984761339545e-06 50127750.49073098 6062.643992023252 215523 18298 139419 SNT_20211104 372446668.10609376 5906.790671241104 0.09600768027431802 1.5223507041017388e-06 25918328.343314823 410.9753020784112 None 6189 183825 ARK_20200421 24938817.119954042 3641.8988430121976 0.16812164522758805 2.4555222160451786e-05 1339973.9498021568 195.71161097114182 62459 22041 88173 GO_20210127 8789663.194077807 269.7275859634138 0.00806264803619445 2.4753507393984227e-07 202160.321836346 6.206617229081206 13521 685 751826 ZRX_20191017 185557019.93333802 23170.666711747435 0.30893845853838087 3.858759984613297e-05 47033782.36651637 5874.700035067865 151209 15940 142278 TOMO_20200129 29874563.928859904 3197.976838771293 0.43225701823801743 4.6228735058841105e-05 47269484.38605311 5055.345264163218 20651 1456 248664 PAXG_20200901 60070089.60022194 5143.438617727354 1974.310414808458 0.16934779819007928 939071.9492554953 80.54952542197505 7073 None 96035 MITH_20190321 24280120.206621435 6007.782120682019 0.047531587570891716 1.1758537800735364e-05 5106763.664113732 1263.329853949093 52 1997 567173 OG_20211111 9655118.971870776 148.78553690808423 7.018640445829035 0.00010813786742871237 6658433.3656039145 102.58807102741423 None None 255994 BAND_20200315 5800881.0123968655 1121.8399092341713 0.3282884856049308 6.336268332988814e-05 3135018.5458360943 605.0872816544355 8590 1057 796393 ENJ_20190314 149622622.42674243 38688.20090882817 0.17359380570907892 4.4905060741332684e-05 58595445.64941726 15157.407462234853 41386 11914 17990 MANA_20190701 65491929.561033726 6035.837744749664 0.04934295364045158 4.547850084871136e-06 17416208.778599262 1605.2202133873152 44957 6280 154801 CMT_20190411 33844915.84942854 6377.015707943996 0.04224537877160254 7.95940192521587e-06 13005760.00436948 2450.3998834366985 292230 1638 939194 XVG_20210804 374051478.10166395 9735.278037668591 0.022548082323794884 5.892942401061024e-07 15789316.093176033 412.6538521240085 322314 54500 124542 BCPT_20190725 4775222.622393428 485.77644140216 0.04108391848816358 4.182007830731093e-06 178175.8739821904 18.136850808316932 10978 2921 908173 XLM_20190716 1660673874.02905 151606.81974803592 0.08529205375907235 7.799491574962911e-06 359262387.1312353 32852.57932170596 275068 102936 67443 ENJ_20190522 145378552.81827676 18269.595332643483 0.16732324429524253 2.1028273959183033e-05 33076930.45837996 4156.928455082771 46064 12479 19374 GLM_20210826 466268761.373113 9512.39689369364 0.46551984093790355 9.500092939042095e-06 19251029.818013333 392.86525806274454 None 21170 187771 WAVES_20190605 229740409.7838769 29986.40986846737 2.299326949477534 0.0002999143651866682 49132789.03978814 6408.670692989903 139964 56838 46755 POWR_20200129 19211376.525235526 2055.583049716937 0.04462849722521461 4.772898732121078e-06 1004091.9579079043 107.38495649196851 82618 12844 316499 CVC_20190821 13714853.941489832 1276.3378299358928 0.0400200025151733 3.724359251812535e-06 4324451.53265507 402.44402954628504 88309 8151 181988 WNXM_20200901 58982567.18153344 5050.320647650179 62.125165037854615 0.005328827641511817 48988740.44311381 4202.042023341846 None None 105276 WAVES_20210124 659055779.3759985 20603.3360884869 6.58828907811641 0.0002055800845896789 105779412.27130805 3300.7265262257197 153720 57274 125387 RSR_20210702 311474054.15976244 9264.064861437058 0.023669596751948043 7.037116791299202e-07 48686544.88638076 1447.4809441022471 None None 97085 XRP_20190816 11332614728.499443 1101227.2564044227 0.2645103553949027 2.5674554643419563e-05 1895907030.435476 184025.19091960276 937534 204565 32072 IRIS_20210324 187401878.74975792 3435.613013383248 0.19285749808842248 3.537894126713822e-06 29065029.727222502 533.1864147566482 21151 None 577311 ATOM_20210602 3289893135.5288367 89662.29107485275 13.73060670833664 0.00037431545022253147 531872278.15802026 14499.57860483507 None 29680 42655 VIBE_20210125 4338146.693828601 134.73483264 0.023230220106397248 7.2e-07 188443.94848288494 5.84065249 18485 None 1420135 LOOM_20210325 137369276.8609977 2598.7681592332665 0.163235733685442 3.0999137142218178e-06 29962145.43126877 568.9934638262482 28773 None 239350 ZEN_20210804 664656222.954144 17298.723594848576 58.416364220982736 0.001520742040867902 26856908.381928086 699.160761009246 117517 7464 1280845 UNI_20220115 7150804294.586346 165931.50321846778 15.8994070060301 0.0003686447176626698 164792850.67984357 3820.8980931588862 808118 60100 2747 BTG_20200725 162788232.3806162 17061.988200221676 9.297081947981251 0.0009747600783254418 6559032.771464087 687.6870972875248 76001 None 222714 IOTX_20201111 48087627.720015615 3143.890545545778 0.00832328634591028 5.449085593535385e-07 1842122.5993480086 120.60000461915374 27892 1957 414237 POWR_20190803 31268476.746254522 2970.7452088577825 0.07402978663576153 7.0349826849717525e-06 558287.0291932254 53.05350402997631 84393 13125 515073 TNB_20210218 11814076.905986506 226.36617810776926 0.0034505088538768196 6.616487850745337e-08 1200975.2976225247 23.029178600242407 15664 1434 3054806 ENS_20211216 925431213.9160851 18970.07733250399 42.38052465078807 0.0008672210405948527 121185207.79078576 2479.7796363069433 None None 4184 SKY_20200224 10447137.035278855 1050.0681137567547 0.6145908568505236 6.176368505521637e-05 319986.4061318016 32.1572301149314 16310 3826 299478 STX_20210519 1437533114.931409 33725.648864829775 1.3827562755570835 3.232183105565997e-05 18794120.8787418 439.3112586942418 62766 None 59386 MATIC_20210212 611777882.0316379 12835.179675086765 0.12372854280554764 2.5872958975272103e-06 313404032.2905835 6553.612841689063 88835 3873 42218 WAVES_20210805 1629820125.404516 40879.14525528891 16.26135231683559 0.00040887338024859853 101915063.31553282 2562.5394262523896 194837 59211 114002 RLC_20200425 22287988.16935319 2972.400247268399 0.3171349972998314 4.2311384561438285e-05 659518.5016055801 87.9913638810247 30559 3571 508763 NPXS_20190329 110377167.92078412 27415.658897981924 0.0006271732507323798 1.5577684233012467e-07 4758246.39141258 1181.8498270093621 57588 4170 151304 XLM_20190213 1479153692.5146801 407071.9751489841 0.07723385169653439 2.1254867865638096e-05 173339834.45922065 47703.37353831127 262016 99082 61988 IRIS_20200913 62464435.83199206 5990.367855535909 0.0758127874304616 7.260409513047407e-06 6643317.386013313 636.2146332087531 10443 None 427030 WAVES_20210112 558781118.937837 15774.52360623731 5.608353678382865 0.00015745691343294616 132507584.42159645 3720.2067569134115 151430 57244 144968 LRC_20211028 467810211.1592924 7993.878464643018 0.37514858124434675 6.405775800338719e-06 65845851.734983966 1124.337888197752 101573 14143 254887 CDT_20200316 1644359.1069120995 304.3654036168678 0.002424533353073381 4.511930859476224e-07 62638.74095907076 11.656744914385795 19252 290 281286 ZEC_20210727 1148610852.852733 30690.66641901651 100.92145755822222 0.0027047970110878647 846095054.3355559 22676.20216189186 76950 20141 112343 STRAX_20201224 46291121.001427874 1979.7582421857787 0.45941904467082206 1.9704455360183167e-05 929717.2681754761 39.87551805015235 142299 10292 267900 GAS_20210704 88820926.02231595 2563.502303425711 6.25563773665583 0.00018040488787270077 4938389.571407542 142.41707311167912 405901 112202 98164 NEO_20190325 592708196.5045127 148417.34273578518 9.120386800835648 0.002283961763027199 252026549.39789045 63113.441859694656 318487 97784 162875 XTZ_20200320 1155195817.829153 186686.1605389196 1.635689135424627 0.0002649737941749193 195663728.15483022 31696.585438367005 57257 22562 103142 STEEM_20200109 41290761.64195232 5132.280280274425 0.12274657965491216 1.5296886701458014e-05 386225.23277823377 48.13204281261989 10453 3796 188997 SOL_20210318 3813907144.3630457 64837.111702995906 14.277756264275158 0.00024223285454068848 118128026.42254479 2004.1306569427963 None 5599 35910 ROSE_20210722 86647824.11951135 2692.51876590663 0.05776521607967423 1.7950125106044199e-06 2842876.4571554414 88.34033961992523 None 1662 227884 BEAM_20201231 20658145.543673042 715.3830718621504 0.26481418559687153 9.182754340331911e-06 5577799.038593635 193.4169735495845 16376 1614 334529 AKRO_20210710 54245217.158390105 1596.0767604014632 0.020019639644780145 5.890734040521868e-07 25848007.223775413 760.5718121527213 43028 None 210414 MATIC_20210202 197091461.70397422 5906.7458071662495 0.04075937572029639 1.220294205880481e-06 49235900.51491118 1474.072727020094 80045 2966 42218 QTUM_20210131 338076932.5886793 9882.705835569092 3.2858827643078907 9.616448496329594e-05 271090782.19179106 7933.7296299619 191966 15076 197984 ARPA_20210201 24967503.025363557 755.3158333346208 0.02546771862140644 7.68211276098396e-07 13038883.519478893 393.3064243523539 23637 None 1157851 OMG_20191108 139931618.2464749 15178.607041060714 0.9980244298864308 0.00010825531698391678 99251649.86067197 10765.787384649917 None 41945 None REP_20201030 65230648.769249685 4842.623559973747 12.454091390272211 0.000926177802432223 6994948.8261840055 520.1958239218732 136254 10423 107506 ATOM_20200422 421821086.6677337 61621.563843353135 2.2722231852936305 0.00033193681042600437 119319532.92809308 17430.74599274174 32498 8371 86348 LEND_20190803 5020182.46766879 476.98632842293375 0.004449104818026826 4.227261032017555e-07 1257980.2507782192 119.5254126541546 41856 5848 699914 TFUEL_20210422 0.0 0.0 0.30639369015008056 5.664721991726315e-06 66147098.98072944 1222.9524899859848 144170 14502 21480 SC_20191220 58096057.73698684 8135.4831753444205 0.0013881404056656443 1.9426390357525726e-07 3397612.262030531 475.4803031186965 107800 30329 215240 ZIL_20190614 213069986.31154048 25912.92983134861 0.0232932067892399 2.831278496746644e-06 37541269.09400439 4563.123870755901 63688 10505 194027 DEGO_20210828 58150529.75837536 1185.6635964312409 10.800217862178396 0.00022016751486743559 24111773.927592795 491.529838789084 142827 None 274758 ONT_20190726 680210092.0886899 68681.3308261492 1.0434506611504533 0.00010552004961454521 128339584.39796224 12978.475952329127 81408 16296 245341 VET_20190726 325646111.92280036 32874.21606216417 0.005877546108226168 5.937843435553932e-07 32113017.372439846 3244.2462532772684 112930 57089 133161 SNM_20190227 7919078.632142783 2078.929282743413 0.01981751409445141 5.2025257325911235e-06 80206.1508242745 21.05584795280671 31337 10090 10312209 OAX_20210324 24746976.449391197 454.0742467365996 0.43833731749185195 8.04112381652332e-06 3095617.022175892 56.78786352548291 None None 1313165 RVN_20210428 1471309182.789206 26707.042635687973 0.1698945029389168 3.084838100762909e-06 292511500.5187989 5311.240835356208 58878 34034 40524 ARK_20210108 64583003.58023398 1648.7197117211015 0.4197438336866362 1.063654694298097e-05 6577173.1798661575 166.66930080976468 63025 21574 94251 ADA_20190905 1413078045.9517365 133789.8491677581 0.04542015426529244 4.300018090900984e-06 68735197.41303329 6507.3004955323595 154481 75237 100209 ENJ_20211230 2452479127.047101 52878.6406873586 2.6431149041017905 5.67972683614662e-05 227713343.99433848 4893.277960887023 456591 43858 15146 LTO_20201228 27882090.712934714 1051.9010521051694 0.10275243074399415 3.9032817643968086e-06 3238151.2309485036 123.00844426358393 None 727 1084652 GRS_20190903 15757019.172326421 1526.3650754125906 0.21496315244570854 2.082324358467341e-05 666712.3070291898 64.5836861444183 38473 107004 None REEF_20210418 588839957.3473351 9767.95662315394 0.0464290329394675 7.703516859050327e-07 316657543.75054175 5253.989954966619 104910 9654 32523 WBTC_20201111 1883568615.0338995 123211.18138518892 15235.845486581195 0.9973584945124438 72447615.03840798 4742.516214762258 None None 172604 AERGO_20210603 50613027.45707676 1345.8095737494252 0.19170157012442038 5.0973794957244516e-06 2831949.4121989454 75.3020481642519 20793 None 377537 LTO_20200701 11843666.91809719 1294.6419383040836 0.05347842159205703 5.850587458827553e-06 3678808.1170382528 402.46491934933573 15793 484 1316486 TCT_20210718 11267503.247003354 356.5028938223392 0.019468840023314896 6.159544597902662e-07 1070787.6669187937 33.877541658218654 None None 514683 LAZIO_20211204 0.0 0.0 4.810429898532857 8.951317081294473e-05 3699739.328265787 68.84528107465627 None None 88685 ONT_20200430 326274040.6222068 37350.242405906465 0.5156492064875834 5.881472510842619e-05 147642450.13653734 16840.033902629617 84151 16478 204987 CTXC_20200610 1233958.4598727946 126.2593014679514 0.12002646807154516 1.229115069933478e-05 8579447.793905338 878.5669314963816 16433 20064 552232 SYS_20201031 24007820.863351412 1767.465258107367 0.04008166601113692 2.952016669453316e-06 545140.7943710625 40.14964626807818 60980 4491 324167 CELR_20200610 13110250.082217325 1341.3706555685321 0.0033594120190563767 3.43874797749401e-07 2841407.7357121515 290.8510492011794 20108 None 1372925 SNM_20190729 5490698.672102351 574.6125436410855 0.012887733990094859 1.3508899758373317e-06 211442.00265509615 22.16331296698633 31162 9956 14424702 ICX_20191012 83006312.3990562 10039.104413017616 0.1669177154941806 2.0187673994869578e-05 19823241.032871477 2397.4994284371396 113047 26376 180222 CVC_20211111 305581938.2990575 4714.282321950804 0.45836236332851565 7.0581922572373655e-06 52631325.43063153 810.4548788539526 109539 10148 161709 MTL_20190723 19508199.841199547 1885.0198304383248 0.4163351575009255 4.025652775921856e-05 2570227.1259099394 248.52193665979314 33346 None 788453 ZEC_20190419 447994139.8465551 84961.75550072682 70.50203039912972 0.013366463603776333 242374694.47123227 45951.76215189011 74809 15126 154432 MBL_20210114 5463717.611417452 146.93146547236972 0.001562130646347793 4.179529138839115e-08 5164763.529454136 138.18485487775993 None None 990117 BAL_20210620 204379229.5408995 5744.5701535187645 18.949543691411453 0.0005322365071700942 20153429.238335114 566.0500833153402 86534 None 65621 DOCK_20210117 12305684.511715082 339.095920313946 0.02196876251582355 6.069549365717819e-07 7810214.660404416 215.7813095026785 None 14865 234839 AST_20190806 5895811.749070571 499.14740936887233 0.03420171118274526 2.897645061947393e-06 763296.4937717471 64.6681771026502 32057 3588 229078 XEM_20210422 3248802799.023691 59955.306922217715 0.3733927997020959 6.896688205947346e-06 338703512.6373789 6255.965628643152 302323 21053 27283 SNGLS_20190810 4611665.227701959 388.86524423834896 0.007993084876520588 6.738287514777675e-07 119029.65424846648 10.034374030817027 9 2174 None EVX_20190701 14935026.692083122 1376.4352101263114 0.6991574349983404 6.443990082170278e-05 2820752.358686481 259.98293536958886 18226 2914 1053022 BZRX_20210428 108432832.2783946 1968.287841690594 0.7711784171439835 1.4002101630680633e-05 49996157.36845641 907.7682428007129 23842 None 181064 FTM_20210711 577494254.5020497 17125.889803786828 0.22719012775489364 6.73971262426275e-06 25117522.919786554 745.1243061728858 None 9142 43795 TFUEL_20210519 0.0 0.0 0.3310491168254051 7.737886757498042e-06 29273152.104449492 684.2257674371261 160276 17257 16888 BTCST_20210616 222825146.49348882 5517.502410067438 30.469980445360456 0.0007546432791669093 3787875.508792838 93.81347651854841 None None 679829 REN_20190524 26701682.25543037 3390.4791379727626 0.03461010255265153 4.401027954632068e-06 824895.9434728904 104.89394249450599 6355 782 1359818 MTL_20190810 13496979.162512636 1138.1906387230167 0.2835389068209335 2.3905418752621295e-05 1198891.39437129 101.07960541535026 33310 None 712205 NXS_20210221 80778742.1351228 1436.4416357627388 1.188011169504083 2.1125715287473575e-05 6634088.911125473 117.97016486530656 24444 3649 477796 XRP_20190706 16114742611.58369 1466202.8596481555 0.37942942175258837 3.452987053313441e-05 1990548634.4520094 181149.33291165237 932061 203232 39729 POA_20201031 4199829.467568268 309.1931048700037 0.014901495237899924 1.1002690815119086e-06 74438.87027654437 5.49627981087757 18089 None 174933 ARDR_20200713 52100166.30038903 5615.452373286386 0.05229856505456348 5.628831155994706e-06 2864181.947042705 308.2684307519979 62962 6300 1411218 OXT_20220105 222763820.55961624 4815.472676507257 0.36952950814272867 8.032810640554907e-06 9762657.03370376 212.2200624642237 79179 4957 152824 ZEN_20210826 961395845.8745778 19613.53540171918 83.94702207686561 0.0017130591637081318 134265859.39329982 2739.887075401397 None 7530 1506863 CND_20191213 15854684.400699561 2200.782442382236 0.008569995044725961 1.1902875489606434e-06 957235.5068635597 132.9505442297673 35352 6033 466197 DCR_20210718 1532105962.6111493 48474.773731447545 116.42137504342122 0.0036905807449679816 9552831.168055976 302.82664807565 47395 11415 137794 FET_20210602 224058414.49888045 6110.903895432599 0.32675797629031705 8.907877241480635e-06 41011311.82740537 1118.0254432290524 64540 2804 112736 RLC_20200914 79441670.41602986 7696.03938529911 1.1321271652524756 0.0001096256314720236 3013530.184404327 291.8048074145933 33165 3837 240774 IOTX_20210805 211669075.00818124 5322.180376295468 0.022372895074964178 5.626289661352457e-07 17882882.064268507 449.7150419570378 94181 5681 162985 WAVES_20191020 79845103.84384593 10048.76964592453 0.7985958464107175 0.00010045753037898882 12912118.344497832 1624.2502721237315 141998 56894 23523 BLZ_20210210 44751201.028982624 961.9117746661049 0.17116672718025255 3.6751144395828833e-06 30196688.973822277 648.3519869981528 45115 None 375643 GXS_20200701 31363447.037479494 3428.3667503732413 0.4822978561561088 5.2732234816118694e-05 11640731.92945977 1272.7442216477039 None None 671757 QLC_20210821 9413916.602739658 191.58070112942997 0.0396759259075562 8.067439931813535e-07 1313055.3895038916 26.69879842665312 35127 5697 940522 VIBE_20190104 5568991.811907713 1476.9895029905638 0.0278234768861777 7.377564636258459e-06 146876.04839192503 38.9450802630624 20561 None 1518400 QSP_20210127 20629348.92709025 633.0090039650956 0.028451587447606213 8.735053013517455e-07 504903.82382157736 15.501285037015478 58525 8164 193675 DODO_20210523 171571013.85319275 4564.829894707856 1.3704780715138603 3.649273025472881e-05 49361731.681824915 1314.3912307778355 89924 945 23089 WAN_20190329 44859850.39085555 11142.36283570593 0.4226012280599336 0.00010496562559021512 4811504.323180257 1195.0806760102807 108896 17210 498965 LEND_20190914 4733925.754901373 457.16589344247126 0.0041955974735320084 4.0516033766241186e-07 1712345.0855935556 165.3576915922804 41599 5813 754376 XEM_20200430 383222053.9194443 43710.141455053956 0.04258022821800273 4.856682384434515e-06 15855905.17632892 1808.5176755013833 210180 17946 216672 REQ_20190623 15605197.776734853 1454.502088562181 0.02131406790577035 1.9862481950180754e-06 809230.9488752441 75.41186031039457 41683 29945 444138 OST_20200417 4727224.084812285 665.7113120830331 0.006824499795760833 9.628784653738645e-07 304768.4748588617 43.00022128342931 17779 755 821883 BRD_20190821 19563448.294956047 1820.712664624332 0.3257209264519527 3.0313889810373705e-05 273673.3158613053 25.46997158404242 168 None None BCH_20210723 8329055530.435002 257527.12191490293 443.5321210345944 0.013699985319547076 2912295305.7163177 89956.06190016492 None 591600 283440 AERGO_20210304 41467765.24972319 815.764957337257 0.15871045605267686 3.1323478920733646e-06 94516489.29083772 1865.4002600689826 13365 None 593763 MITH_20190419 35591958.1882641 6743.892146969179 0.06952249410981036 1.3172945082957572e-05 79832365.68047412 15126.433284893856 70 2012 526151 FLOW_20210823 1341814280.6336303 27198.542991509705 22.998665152825737 0.0004666827895658969 31205266.540447623 633.2089598014848 None None 63325 SNGLS_20190510 6958533.122144257 1125.672390351689 0.011757396180912176 1.9042797780643e-06 377667.2678543433 61.16865757908167 None 2180 None ETH_20210212 203774834938.25632 4272900.929524218 1782.5088691218523 0.0372741630977816 33868453070.396435 708225.5047838531 684900 649071 7116 PNT_20210220 69295048.26740976 1240.857808980239 1.8974134394888937 3.391420265530668e-05 20283408.250762854 362.54387348599647 None 182 453797 ALGO_20200518 146660193.49064535 15154.494360936675 0.19831859444261182 2.0530620598511615e-05 32107940.69993768 3323.9240655302438 17675 872 290997 ONE_20190725 28480489.691325348 2897.2787293230963 0.011033876373007234 1.1224601705929048e-06 3053552.3612780515 310.6334336624783 69488 None 156927 BNB_20190730 4194357406.8811984 441837.36982667836 27.016691528333105 0.002840290659192458 163244169.31323978 17162.015888650687 1016929 55048 742 TCT_20211221 20325570.06065078 430.8210972382427 0.03510625901665982 7.443162095760865e-07 10878865.627076918 230.65163463275456 None None 456283 ENJ_20210212 549384943.1916436 11521.496018401802 0.5941635542840854 1.2444213146466168e-05 461478681.3202683 9665.249629488042 79909 17423 66239 MITH_20190806 12746882.666152475 1079.1874208182583 0.026908952586224593 2.278256640007821e-06 3376059.0311584743 285.8353137361676 78 2079 826998 IOST_20200329 35698959.16985651 5724.212563902593 0.0029693006814501943 4.749310260339534e-07 33646224.33017518 5381.615928331744 191755 52258 127057 CRV_20210825 845966304.5592133 17615.583003179938 2.1104370901221357 4.3994278196375725e-05 232476263.892571 4846.211941409696 152380 None 12354 STEEM_20220112 172759051.94914836 4037.7632147435925 0.4374181764164239 1.0223435485825296e-05 61629575.215139546 1440.4202207431167 15105 3950 170410 POA_20200518 2076062.911188297 213.84703846382004 0.009429732159306424 9.709846907419115e-07 125649.68010407334 12.938216453716052 17193 None 556929 OAX_20200129 2549891.1065545455 272.8338039896508 0.0491252089405593 5.255273005529295e-06 1234877.8261189675 132.10366418150085 12066 None None GTO_20200907 6974495.83870511 677.3007809737336 0.010459862375301493 1.017970599737205e-06 2991969.1907621953 291.18324526976795 16589 None 1248781 IOTX_20201124 46126022.58824566 2518.664459596365 0.008171229235807785 4.450749827925734e-07 2227118.622825504 121.3079151405168 28988 1961 410113 TFUEL_20200403 0.0 0.0 0.0017212545547227972 2.5249050739922457e-07 212879.72296415214 31.22728658509283 68058 4025 349819 TCT_20200313 2146007.0838466953 445.92267686443824 0.003625759337245083 7.609687389134168e-07 476443.08411766187 99.9951345806957 22 None 365886 REN_20210731 372570290.3068074 8929.940386462315 0.42268258515334856 1.0118939652120182e-05 53580951.97340254 1282.7176670297574 88235 1183 109654 WTC_20201111 10135117.79855368 662.975496337509 0.3455798383924835 2.262211097221632e-05 4537615.995824303 297.03831416883355 54979 19283 755936 GO_20190622 14225125.16588926 1405.5691530986662 0.019415272157534195 1.918979021803471e-06 813705.263424452 80.42551851824798 9868 674 943493 ADX_20190830 7132424.281189063 750.9586088482162 0.07739931074809908 8.160755461168565e-06 242071.83531585085 25.523341654530757 53762 3840 611553 ACM_20211028 16111456.557763115 275.2836599904503 8.046151062371312 0.00013749869732878933 4006134.072196991 68.4598402368579 None None 34479 ROSE_20220115 1979649303.5944898 45922.383251609484 0.5686256869108469 1.3183754095463261e-05 448911368.063129 10408.14233939138 119077 7465 35703 GTO_20200319 7210013.226344156 1339.7135741832205 0.01102243195255849 2.0458286883997325e-06 17873473.166892566 3317.42253647427 16889 None 1148049 PNT_20210314 79477298.45826249 1294.0503054175665 2.1164423107903554 3.449464583224967e-05 30386519.700023655 495.25197534704756 None 197 419542 HOT_20190905 144151027.62919372 13648.180508598653 0.0008119588994087675 7.68697952044103e-08 8492267.63850728 803.9801948946368 24321 6653 436903 AKRO_20210111 26747118.296664573 693.8285988278737 0.011349687622169119 2.950895347072337e-07 7087314.014647311 184.26870100118498 25454 None 214700 CKB_20210509 644399648.548033 10988.919367989598 0.02469293117037749 4.205730147661809e-07 29495007.79480191 502.3625694017681 42609 3596 113010 ENG_20190531 34779202.79295954 4184.384931051519 0.4506370074653597 5.423078784645442e-05 2210103.0747391456 265.9693477886156 61838 3425 350669 AST_20190905 3972687.035620968 376.21260875689154 0.02306933612868217 2.183949769825099e-06 1498717.5511659754 141.8820131036317 32045 3578 238019 CELR_20190902 18679982.79002564 1918.2731833234536 0.005745574159555207 5.899550367724075e-07 4886572.658590406 501.7528400874247 18304 None 503834 OCEAN_20210124 228684328.20756567 7144.392089675874 0.5465618936689662 1.705438475653038e-05 67779730.93872753 2114.9326791949375 None 1423 64181 WTC_20190626 46974553.238018595 3973.2389769301176 1.6155515083930605 0.0001364746700137759 6459239.608642528 545.6480895531603 55655 20117 829543 SNX_20210206 3334055876.0675864 87967.47733378479 23.442443548208804 0.0006141433766887726 596334303.723902 15622.721333260011 73977 4071 30058 CVC_20190603 30111375.962159712 3444.974966574296 0.08791566421027078 1.0053853986811519e-05 5031364.783519575 575.3764968084242 88859 8193 415629 FTM_20200106 22034156.39803773 3000.7548779696185 0.010472545113837509 1.4261467795783922e-06 2228391.612234069 303.4614305196899 20499 2254 521985 RIF_20210220 247756937.74467334 4438.372472029495 0.3540103990628798 6.3364476202463345e-06 11418304.923492102 204.37673935916604 42661 3097 719987 SNGLS_20210711 6917260.803957545 205.58837617198006 0.0077842220279350045 2.3098809012362942e-07 51063.379290693934 1.51524871917674 9504 2138 None VET_20210930 5628594055.397367 135503.66227377747 0.08459413061902733 2.035147645603078e-06 317550064.6303505 7639.552078429928 435621 205692 51102 ALPHA_20210506 499022501.14201075 8716.902652667048 1.9935688728251872 3.4801660166418535e-05 84518589.99115653 1475.4379879781652 59667 None 30246 TRB_20201015 32534662.668587234 2850.8968258702744 21.726391109836392 0.0019033525388260461 26530064.053786367 2324.180970355926 9880 None 204841 ORN_20210711 150667644.55494815 4468.126665379676 5.198124704328037 0.0001541530676342824 2233655.700726598 66.24021120907653 None None 65422 EOS_20210427 5574100761.611442 103473.92453745486 5.874843628567699 0.00010898288250579645 4219200098.8661947 78269.41748835698 212834 82886 58571 ALCX_20211230 215610938.48438838 4638.190263351323 236.53385328376862 0.00508281978989306 35053088.71125475 753.2474972396221 56346 None 81040 MDA_20210210 17149426.215961814 368.1980687654708 0.8739539021111624 1.8764631760448197e-05 574763.381699524 12.340723213121683 None 370 2554978 CHZ_20200310 49519544.52241602 6254.858677331996 0.010374476591530318 1.3090527810252615e-06 9137528.673580954 1152.9745347938367 None None 294872 HC_20200707 55275181.56834074 5916.110335875466 1.2371153519160678 0.00013240862738898396 31442699.513950795 3365.3164820874003 12688 845 560022 PNT_20200721 29346879.930608634 3203.017776041672 1.010589850188708 0.00011031790485246851 15831565.689415827 1728.2037387021592 None 57 538447 OG_20210727 5407796.318774995 143.9849012377012 4.19451983834504 0.00011241235225691441 2643044.22528283 70.8330941165182 None None 316582 ARK_20190228 80406159.03238261 21064.480583365515 0.5723925908642147 0.00015012976090385296 4302939.738655847 1128.5948219084066 62676 21760 148771 LSK_20191019 105867195.89565754 13302.2976783998 0.7780867709958287 9.776850741409138e-05 5363579.524609784 673.9468964968324 180751 30946 158256 GLM_20210201 116784916.3450972 3533.768432221723 0.11629932301381035 3.5174405686617476e-06 2147781.09033464 64.95903969149087 146091 20300 190516 FOR_20210616 20335177.333928194 503.53109473834064 0.03604468213775817 8.930311211672204e-07 3779249.8817265173 93.63344490459217 None None 199277 NANO_20210108 596120234.7992748 15229.454398523389 4.36826985359237 0.0001106944370075761 723532155.064067 18334.715401300145 100926 54801 338450 QTUM_20190421 232560637.04582497 43795.47282344144 2.8560271821199157 0.0005378622770194086 154793260.34284657 29151.492673631652 177029 15260 376893 XVG_20190826 84715512.61463489 8391.51712235735 0.005329810688384055 5.276726799968624e-07 1961117.8716848327 194.1585515217292 303015 52799 316359 KEEP_20211011 230159961.25110385 4206.301062513029 0.4213215033012385 7.697665075494818e-06 16582927.098278854 302.97484883564096 24990 3033 140553 CKB_20210825 431434118.4240123 8977.966131232994 0.015597100655713063 3.247828726166292e-07 25033818.761722457 521.2863434986004 52151 5672 124430 DOGE_20191102 319696347.69603765 34609.559910175296 0.0026232436692274824 2.839860686035665e-07 78865239.65917233 8537.761711965552 138407 143234 105671 TROY_20210909 16510109.363848666 356.2275484010928 0.008736611487690964 1.8870824147572488e-07 3494900.048485745 75.48881430888453 None None 459032 ASR_20210809 12590268.283050943 286.19275985618816 7.261997015756223 0.0001650886762760058 5649701.815428724 128.43599247419252 None None 92555 CELR_20200105 12821937.761288173 1744.8983904689217 0.003551541848496178 4.829914172592328e-07 4114500.7345356653 559.5509291067485 18814 None 822333 BLZ_20210112 18114150.443800118 511.36676616027006 0.07074401776235596 1.990062036229297e-06 13162106.146156503 370.25615149927614 43316 None 444357 SYS_20190908 14515486.742762143 1386.460100530854 0.02575525950295918 2.4599757049417076e-06 1859924.3531278875 177.64793716011025 60523 4593 689818 DUSK_20200315 4219490.150687667 817.6709542307779 0.016297036711626797 3.145477291022176e-06 181996.0856562939 35.12691077626313 17701 13343 936304 GRS_20190511 25824633.923950184 4052.7499048478644 0.356600833937832 5.5974245296395544e-05 1755179.530811548 275.50370118872337 38860 107046 6883994 CKB_20210804 283084357.23887354 7367.715641230819 0.0103530776742596 2.695476936833587e-07 11596758.752128627 301.9275691913635 50518 5280 118997 FTM_20210819 1078504625.7681875 23939.926753794643 0.4228927303916651 9.399247235121587e-06 180155858.88667527 4004.1583523160784 None 9625 52942 DIA_20210804 66609645.91708647 1733.6208007638097 1.3714662480321376 3.570311861799656e-05 11120643.361060672 289.50158241085734 34184 402 453696 BAT_20200207 374531554.4627861 38455.3777838958 0.26297983855445073 2.7005673065308806e-05 100658758.18587485 10336.752542210072 110708 34049 21651 QLC_20190623 8395053.786314111 782.471548293354 0.03497021079896043 3.260166134474313e-06 679299.3179873815 63.329004346173214 24972 5790 940522 AERGO_20210624 24049463.721629314 713.3293694899728 0.09251213918753358 2.746077353538581e-06 4137501.0459132185 122.81521130316213 20939 None 351474 BCH_20201030 4960488101.693549 368483.9017207108 266.99476702524186 0.019855693910957956 2563027388.273126 190605.56082787176 None 332578 125255 DASH_20210902 2465123774.908122 50604.54825409748 239.05182533711638 0.004907303135702816 419946476.4946403 8620.744301045614 404430 42122 71755 BAL_20210117 210135376.68318066 5791.138363598032 19.446863570834736 0.0005373623675184949 86007231.29155117 2376.581152132539 None None 81450 ZIL_20210506 2548056592.2281547 44509.33819038062 0.21271356639512282 3.710476402531875e-06 362381873.05091363 6321.22065107525 247950 30334 34741 BQX_20210220 1346436804.3760786 24119.847000371417 6.072422117593583 0.00010867727114943144 46009734.19587329 823.4296400823507 41855 1302 44204 TRX_20210418 11380541777.061522 188786.35486024455 0.15773302701838435 2.624065015503042e-06 8006435350.365983 133195.99134640011 775719 97277 21813 AERGO_20210722 35219503.660970576 1094.450005649386 0.13451937604062336 4.165155440474456e-06 5407486.024386281 167.4332761323573 21446 None 378084 OAX_20210825 11176028.690838434 231.19034484765885 0.19353441428640944 4.0187014078421226e-06 352500.5295046829 7.31959935605644 14298 None 1894568 ANKR_20200927 40613765.728688 3782.41093786484 0.006972777580875438 6.495396522074799e-07 26595716.453817792 2477.487947271175 None None 5183 CHR_20210916 200576348.59931895 4161.928899781678 0.3525979022126408 7.314339932733144e-06 47520247.06657988 985.7666156017458 89910 None 80057 LINK_20210114 6382145246.599789 171690.79582170412 15.957004857311738 0.00042697385470787124 1647370015.0902975 44079.946817273005 119844 27548 46948 IOST_20190621 160613575.13544527 16790.324722370213 0.011818267575122426 1.2357772833993552e-06 55772519.7637093 5831.854163381435 197501 50110 103864 AVA_20211230 97932246.24643011 2111.551920679127 1.8951558632767926 4.072455419410429e-05 7608250.467079603 163.49188711749204 None 11008 47102 BTG_20190524 406744992.85358894 51632.207301421404 23.180754962423958 0.002947647695481774 14379739.483908663 1828.5170616781065 73953 None 446927 CRV_20201231 101018486.96703796 3499.352203288794 0.5814993236158601 2.0167309076338953e-05 111636376.1607512 3871.724713619084 51484 None 28782 FUN_20211111 206590865.83315837 3187.1244488299412 0.019578281865932773 3.014724842021304e-07 24160531.08854522 372.0313854292091 23054 496 158342 POLY_20210617 175341634.60303542 4584.208364770525 0.208957213552754 5.455959428457403e-06 4186460.6311079874 109.31022176170433 46857 5640 135189 NEBL_20200501 7087089.9861096805 819.0383422392005 0.43409088448706384 5.04196021073495e-05 228579.93900046693 26.549531413782113 39358 5981 1526179 STORJ_20200318 10064198.100112729 1853.7395334317541 0.06941757636910281 1.290614797666375e-05 1348221.7032302385 250.66200402501877 82261 8001 127597 NAV_20200403 5280438.231049247 778.718320022798 0.07758862951471447 1.1381461493204696e-05 88677.89703962677 13.008144063989102 49386 13958 1202030 DGD_20200310 75487790.35763758 9534.61059839907 37.84982255467193 0.004775895442952397 897929.2702948666 113.30082998144705 17651 4712 323922 WING_20210408 86062861.97932184 1527.9648011344466 57.496680031832874 0.0010226372812419415 15490849.142247355 275.5206012275193 None None 336855 REP_20210304 179443418.7230726 3529.3821584456623 30.395596813717937 0.0005998934400113919 33906335.45672962 669.18206409877 140910 10758 132256 WAVES_20200907 249616901.9256454 24242.80613387055 2.4945573169363646 0.00024251232693364014 54096127.79335698 5259.040447857236 144445 57021 140835 JUV_20210611 22349820.732777677 606.4382993075379 10.073083235210284 0.00027334409925737236 10087969.598993752 273.74805697365395 2508311 None 34079 NAV_20200520 7719320.885114722 791.5192155743407 0.11241090546073641 1.1521588916221055e-05 527313.0808106425 54.04710977413449 48654 13890 1211272 FIS_20210731 22097901.874008797 529.3447042748447 0.8208698712856404 1.9632747619824065e-05 3526619.7456766344 84.34617695191888 24077 None 432358 DNT_20200711 5927926.3580114255 638.419592383727 0.00789133114611502 8.499755705201834e-07 2182772.923630214 235.10655258612277 None 5998 675973 ONG_20200518 0.0 0.0 0.09350797890292549 9.563652036103063e-06 7564206.981149006 773.6392588687148 84761 16474 164481 HOT_20210828 1870483110.9489963 38133.170682512944 0.010547927665065427 2.1502446067791812e-07 178118763.03237417 3631.0346613868815 87000 24265 107359 COS_20201229 19202901.97901152 708.162467276019 0.0063785929377037425 2.3494008102518148e-07 745332.6725317508 27.45253070473606 13927 None 464399 SKY_20190227 13281477.513418179 3486.6748776393997 0.9961236884050361 0.0002615039957621002 994894.2282650789 261.18123590509504 14549 3528 348246 EVX_20190117 4288764.151177396 1192.4207472068624 0.22230334146174857 6.182920259572066e-05 398849.0081495531 110.93182840989485 14063 2332 1554071 NXS_20211028 48923599.97584459 1021.8120047259132 0.5962723858600701 1.0186006303217565e-05 172749.6120138825 2.951048343977371 26768 4124 825769 IOTX_20190430 24779911.87472154 4761.080853789642 0.00980938373255585 1.8847242882427403e-06 1224839.4900874402 235.33432875147324 15504 1707 782632 KMD_20200315 36286111.96810571 7020.072124991868 0.3065173326132099 5.9008262586357926e-05 1502317.1130450459 289.2140615304334 99963 8404 149248 ONG_20190813 0.0 0.0 0.20643809927352214 1.8138835151980908e-05 5252941.926028863 461.55359884863844 81552 16289 237451 PPT_20200107 13350339.59131137 1719.184489651562 0.3680063313151726 4.746313423463851e-05 3703951.982824828 477.7123522065398 23704 None 813674 TRX_20210112 2078746516.4453843 58593.537458247105 0.02899910857519136 8.158024952336024e-07 1706368167.4987564 48003.52415051742 560780 76978 32747 CAKE_20211002 4530046559.731202 94057.95253000737 19.936825212202315 0.00041395584140046816 221027781.96578273 4589.283423146276 None None 561 BNT_20190904 25500012.422550764 2399.5892034597628 0.36509216784078674 3.440285552767057e-05 5217404.090436085 491.63913927352615 776 5116 161703 DENT_20190605 123881112.53288503 16153.68155175609 0.001722556019350553 2.2424880648561547e-07 3035809.225437877 395.21303683298186 45302 9473 248149 LINK_20190920 679978559.2465925 66391.05483901469 1.8681085368879855 0.00018227881302686967 146550660.6477437 14299.533428434868 32928 10643 93725 RENBTC_20210202 533989408.8336615 15994.821151568336 33505.403918275966 1.0032019301237192 53302412.7633695 1595.953998790501 38725 2450 83739 ONT_20210527 1105034820.1856527 28204.43234476756 1.2994245538029077 3.316893994987811e-05 531321018.7662257 13562.430318857934 137716 19200 129307 VIB_20190622 9608989.323090382 949.2456588740997 0.05354874776016742 5.290453981265373e-06 2605982.6842714148 257.4631909015014 32669 1121 2278285 SOL_20201031 65971825.09030392 4857.492922804312 1.4406457973488311 0.00010615110884039527 9349348.871776775 688.8881024754049 91912 2527 79154 INJ_20210711 198524920.28098905 5887.358846486527 6.84455858023892 0.00020306923510223803 10519820.301529571 312.10951546418585 76320 3739 124543 TRX_20211011 7011748492.703033 128126.40054893433 0.09790126563947069 1.788684288494228e-06 1208472184.5723312 22079.134478066917 1168686 118206 33166 NEO_20210527 4382961151.788989 111868.81084399518 62.29137647271382 0.00159004146841147 883856414.2746143 22561.202374998302 400272 111558 83834 ZEN_20191220 59290675.74914956 8302.771544254276 7.415516247496005 0.0010377786185713335 1982260.3987132309 277.41122661822953 43147 1950 45499 ADX_20191015 7275300.643796126 871.7066660776344 0.07901952192435112 9.467338160133204e-06 361712.3055937394 43.33679362190714 53382 3834 372232 NEAR_20210111 431132385.0656172 11217.67620349994 1.729354896974721 4.499625624794317e-05 69717696.29001422 1813.9916409116413 None None None MFT_20190228 17683611.621817905 4635.006585107401 0.00290037724599552 7.600232639540764e-07 1343122.004708475 351.9555848524452 16024 1855 701840 CND_20190929 14284955.892680554 1743.9656360709014 0.008165664082296915 9.968975516767953e-07 605880.8622941581 73.96840503619792 35725 6091 303660 BQX_20190324 18321190.93565254 4577.52772956094 0.15533310515611143 3.8820706395120035e-05 759202.1883162968 189.7391107809191 60822 5823 403749 STEEM_20190706 105425154.9253407 9592.127367847137 0.3345160732686884 3.0436007266554886e-05 918982.9839373988 83.61383805463032 5845 3753 330897 BTS_20190706 162754289.8021165 14808.229388431802 0.06005259040701001 5.4638961295444695e-06 18220505.653895702 1657.796102481579 13695 7175 171113 AR_20210707 486870904.4741001 14254.221971615108 11.114151612355826 0.00032538061312886577 18726061.5581234 548.2287450980294 None None 93046 VIA_20190515 15951941.426202524 1995.637337044086 0.6893541949552667 8.624034737495859e-05 1155063.6987789073 144.50205040002916 41290 2233 2027413 ANKR_20200207 6554063.408972703 672.9508945319219 0.0016401982832404524 1.6844072196166545e-07 1781945.6421893202 182.99751532102445 None None 5287 LOOM_20210703 55355760.567328595 1637.733267038564 0.06679490256354606 1.9726007681522027e-06 11307816.447603514 333.9447555813998 33657 None 264943 CVC_20211104 327512297.93106216 5194.1573164640795 0.488824325270242 7.752473606662805e-06 119142722.92553014 1889.5352934727216 None 10136 161709 ARDR_20190130 51078356.964192204 14964.064533714145 0.05110098635939463 1.4969422507673516e-05 370990.8712802894 108.67733666873906 70025 6613 703182 STX_20210120 462309248.40420794 12766.446403500844 0.504825477992157 1.3961162276438795e-05 10497534.090946078 290.31374868212083 48766 None 68593 MANA_20210814 1111980519.6015563 23337.73852722106 0.839407801614989 1.759569693162943e-05 129373787.03523499 2711.938039162149 156985 35319 19440 MDT_20210408 48674271.348840006 864.1270416021558 0.08023278684414331 1.42780683841675e-06 20301550.22982213 361.2823807916514 29183 194 473757 COTI_20210722 69504471.70613986 2159.798652786453 0.10434130003660193 3.2308781114162453e-06 11253522.351176796 348.45990061458207 123834 5468 101712 ADA_20190929 1203464965.327838 146903.06164227388 0.038690642111289586 4.723163344334686e-06 58647511.48034696 7159.399827577321 154336 75372 108471 ZRX_20201115 269705656.87177396 16756.250641532006 0.37473120081348277 2.3295398781407862e-05 31871084.207345363 1981.2858245969342 161373 16294 67906 REQ_20190701 13889906.39797935 1280.2040654987086 0.018968501967224622 1.7586081747996245e-06 641611.96116555 59.48514236414682 41665 29906 539616 STORJ_20210821 186300642.52843896 3791.3664654809654 1.2978671225108018 2.639835753295187e-05 55290596.436719865 1124.5996663533926 104270 13746 71027 ATOM_20210508 6778870413.469043 118300.35029173545 28.5538430724954 0.0004982364576710214 2393648798.017336 41766.81559132876 134243 27010 41486 APPC_20210310 9841439.435609467 179.82049033151284 0.08868443246393103 1.6204213047060648e-06 951198.3853918032 17.38007546383938 24494 3114 1055081 SNT_20190909 55606636.365062445 5350.312985233456 0.015693198977868805 1.509894119287942e-06 17522970.911669176 1685.9424754184838 None 5711 268012 DEGO_20220105 32879978.896789532 710.7646097282308 6.050459408335307 0.0001315005556378521 7154893.542350885 155.50430353315738 None None 213928 LTC_20190703 7371293845.530923 685039.2110645352 118.23958566072487 0.010955412321393772 5394392706.783507 499813.96666855033 448909 205495 149931 GVT_20210722 9550211.568483396 296.7738899927314 2.1548942335064907 6.680697417989316e-05 252779.63589970747 7.836784908591517 25758 5687 392150 TNB_20190515 12812137.663261952 1603.0879420011943 0.004839548478684797 6.054523664925535e-07 1314833.5537825157 164.49242944618243 15755 1503 655962 ATM_20220112 28841703.087913513 645.7254437455765 6.779755664450631 0.00015845796627157982 3422982.2879171674 80.00270788091072 5199333 None 79432 NAS_20190509 41448088.6854594 6965.34775403922 0.9115658261020947 0.0001530807889504044 3524077.570672163 591.8042991450395 24121 5183 484793 SNM_20200914 5149496.0257894285 498.86569632 0.01176752178793749 1.14e-06 208224.73213136508 20.1721483 None 9580 None ALPHA_20211125 400850560.1931507 7006.965518885422 0.8962320023322218 1.567015574587815e-05 13452776.684463212 235.2148833242771 89896 None 53355 DOCK_20210821 70962314.00299072 1444.1396120402508 0.10263278741325055 2.088229277123709e-06 54810107.30163956 1115.1998657964805 52965 15166 293388 WING_20210809 40311562.20244674 916.3314621608015 21.86007196538721 0.0004969501276623966 19589705.246249624 445.337350142618 None None 410110 NEBL_20200718 9445907.833806118 1031.991337788854 0.5714124773150726 6.24237149672507e-05 146697.72462888228 16.025931025528248 38861 5956 643631 ZEC_20210110 867680458.1110541 21442.38695980174 78.98197915932602 0.001960661987903816 889867223.1067306 22090.214213388408 None 16615 167554 LRC_20200301 46302479.862253755 5403.933542430606 0.04051608303967909 4.737111846168597e-06 2601267.0476135234 304.1383080943462 34199 6814 607711 ADA_20200730 4338588502.703453 390725.8578236983 0.13964887973262488 1.2582558037285932e-05 506618734.70375067 45647.05169415747 161043 84864 35792 XVG_20190312 98344430.90281565 25434.944352550374 0.006221421753831698 1.6110616332364636e-06 1593323.9866822537 412.59751320961254 304676 53349 436458 XZC_20191020 43038401.50089556 5416.5247684707665 4.990445395870394 0.0006277616171102676 12403370.687238887 1560.2535290101378 61210 4057 181391 ELF_20200520 32305469.013391525 3311.6559354339392 0.07027473097165947 7.1986810995929726e-06 13086830.091756303 1340.566020424938 81938 33398 471890 ARDR_20210806 250404881.94844595 6108.8281117078395 0.250802221101476 6.12147508042126e-06 60337052.65573743 1472.6813926768227 72550 7004 None LOOM_20190923 14099941.82127795 1403.8597555690408 0.023405400479496335 2.3303571186766182e-06 2598920.9626232935 258.7613901942263 20941 None 411903 IOTX_20210814 945824438.4742993 19844.07259993983 0.0990412599413762 2.075876512449772e-06 371748401.2330806 7791.740281952061 101833 7504 162985 LSK_20190430 221780851.12331533 42611.551594392935 1.6838677345072448 0.0003233942347572316 4092446.0589704784 785.9723388032602 183831 30423 165953 ATM_20210523 48944649.595736794 1302.0889345855405 25.96056358575039 0.0006909213106539268 358570004.9330462 9543.077019541688 4973298 None 113965 VIDT_20210408 58909056.040502995 1045.8772465237787 1.2696079386131038 2.259369228170226e-05 7060023.718943698 125.6387886023941 26434 1466 479637 EOS_20210727 3542645258.303111 94572.96181855588 3.6804363900528565 9.834056960456382e-05 1708351877.5276034 45646.8415471454 None 91736 52079 SYS_20200306 17728864.802553423 1957.0899337760034 0.030537835997310876 3.3710726600516374e-06 391151.84108169493 43.17926383243001 58898 4513 856942 FTM_20210131 332565965.2619008 9721.60857127793 0.13160695536212877 3.852158998077675e-06 271725962.64870954 7953.467270391337 None 3148 133702 TRX_20200306 1176313298.4422789 129891.28349334178 0.017793473997265167 1.964222144778116e-06 1448960818.349312 159950.82954317852 500749 72180 46870 GAS_20190901 20366035.065135725 2122.1988959923374 1.4614901458775755 0.00015229143837597537 698951.1530077455 72.83270212005418 324024 98213 210014 GAS_20190414 43323908.55367892 8538.045309634483 3.109446530272154 0.0006129608760885468 1342252.5829363526 264.5963875432103 319905 97701 185739 STORM_20190321 16195638.819748348 4009.799135529244 0.003590702972719006 8.885106735327453e-07 7938223.116420171 1964.2939060712024 26914 2572 4061731 CELR_20210324 303648330.4324881 5566.743313811631 0.07705424947910579 1.4135295716917478e-06 193542332.66798627 3550.457144801396 38393 None 237739 MITH_20190305 17576237.422273286 4733.830514857703 0.034446786285487654 9.277597027130544e-06 4021905.0280671096 1083.2248274933252 47 1982 608667 DOT_20210821 28679131918.841976 583715.0001448677 28.11162896524324 0.0005719763451078288 1906428283.9811225 38789.352386156796 546433 28606 27149 REN_20191108 47534870.51705598 5155.976078995327 0.05750674890407483 6.237598178032529e-06 4145256.849716669 449.624558265324 None 874 305252 WABI_20190627 13556189.684427176 1044.4190053826226 0.2380953356037057 1.8278872733794955e-05 1868782.1062705552 143.46870845285514 36431 8019 994304 SNX_20210115 2035309493.3503041 52176.64730637222 14.647709246118007 0.00037338716072493296 269622278.06181496 6872.985746926288 57432 3177 45504 OST_20210430 23336257.469561365 435.424435222962 0.03374637052588412 6.296637044832064e-07 1090827.594932626 20.353434567161912 None 767 441171 WAN_20210821 155608249.33528253 3164.065968587521 0.8828549087717331 1.795797725853683e-05 7827115.2517932085 159.20980479929747 123609 16729 387619 ZRX_20200309 143262011.06689608 17792.547049257122 0.22455095191055682 2.7913348833542552e-05 48968506.648020454 6087.148579393671 153024 15990 118984 APPC_20201201 3649914.9353891406 185.4520887207081 0.03337372150055038 1.7000260972089803e-06 1755612.2597575595 89.4292432481245 24266 3141 517397 BQX_20210206 567298689.7064719 14967.90590297481 2.539080473470217 6.684150857551514e-05 11617833.030207949 305.84043878539023 None 660 65097 CMT_20190201 16378741.618248506 4777.808443149625 0.02191646105013553 6.387515057191528e-06 1059367.6822592919 308.7508976040396 293020 1629 726422 REEF_20210125 0.0 0.0 0.02105167737067178 6.522627659833415e-07 31204962.432348125 966.8509900729179 None 719 125550 XZC_20190605 50585512.75514823 6585.411872457852 6.624267579027243 0.0008623720109830051 2606936.5663078506 339.3807847240021 60300 3975 387504 OCEAN_20201231 135973564.05205393 4707.045728011991 0.3250331609617254 1.126441029778482e-05 27665263.629891552 958.7725744702673 34870 1327 63644 LSK_20210218 477818893.02971643 9155.352339717154 3.37037999408148 6.464033765885315e-05 55846765.17419215 1071.0821225955776 181861 31380 216887 THETA_20210819 6968250849.554278 154676.5873364485 6.905471363280572 0.00015330351795745674 448466337.18369853 9956.086059720377 None 22720 21702 BQX_20210304 1442260035.1432366 28372.524753928166 6.515676312065585 0.00012859975056211582 13194600.550880259 260.42152162590077 46121 1886 33455 ARK_20190509 67180790.56386864 11279.252830383097 0.47525250575820505 7.977232284514598e-05 1128316.6268053167 189.39077045256772 63649 21726 202158 ADA_20210112 8567295374.420918 241856.78174363112 0.27651184814117397 7.778406555899083e-06 3667755701.884773 103175.66928420022 175971 99606 38332 EGLD_20210420 2995908321.909167 53521.79528585526 170.42549520135037 0.0030474466540916937 223422494.02558506 3995.1072523666385 None 8005 24132 LTO_20210909 87035301.85122032 1877.7304276869966 0.29611080320924354 6.395906357322656e-06 8686179.586232096 187.6189272201936 12193 4647 543169 VET_20190901 228174857.6361295 23770.927604498545 0.004112292833655326 4.283968065026914e-07 24744381.18833553 2577.738091318205 113663 57399 147845 PNT_20210611 53530747.854593776 1452.4991532478343 1.2003758945267773 3.269460668119868e-05 11810678.415100675 321.687137487936 39773 307 346623 FOR_20211204 44715513.50824024 832.87575513277 0.07922823225908217 1.4774837780684765e-06 57622922.96804416 1074.5782343315527 37949 None 182672 GVT_20210519 34010415.64590416 797.9108960390145 7.757045539077654 0.00018107853016828993 2843619.631490381 66.38074517339993 25886 5633 252863 XMR_20210202 2555657563.4118547 76513.78515331776 143.34435638235368 0.004291584069869581 468392026.4173824 14023.180331320164 342133 193638 56021 GAS_20201129 22597272.348149236 1276.5252854357411 1.622463554545423 9.159059813126836e-05 4760527.673917961 268.7392119552198 324738 101009 122930 TROY_20200414 4072676.275059249 594.1401573411789 0.0021421470146327335 3.12911943502462e-07 646214.0504121109 94.39505928014921 8757 None 412780 LINK_20211028 13379716941.808043 228630.81773928937 28.961572063134092 0.0004949171846770165 2104927367.3337855 35970.58627616868 564317 69933 25840 XRP_20200313 6028784807.164941 1252291.222370769 0.13782959908786777 2.8506264642300147e-05 2844634644.5898576 588334.498003134 946657 210694 33270 NPXS_20190914 85557356.02699654 8262.466953175182 0.00036145493495582667 3.4917661750173165e-08 1707700.9030530762 164.96917523220372 65139 5475 165759 CVC_20190706 23724020.47724598 2158.5344243156364 0.06922649342273436 6.298585405072898e-06 3242333.864615083 295.00435091128617 88640 8161 447156 HNT_20210106 93893052.48533788 2763.425029287723 1.4795812660432426 4.341992644798941e-05 1804703.6954818852 52.960998842457606 18366 2116 70077 IOST_20210128 290165191.864473 9591.850697857144 0.015819262802901128 5.202486584353755e-07 179309707.44243953 5896.964726084516 201877 52194 269048 SKY_20190629 28978590.554077003 2339.337321199995 1.9301846694825802 0.00015595578534156163 1811334.5999694057 146.352892819472 16228 3775 427664 NEBL_20210304 37683010.736919954 741.3102553518511 2.1269500008029567 4.197956228347997e-05 617803.5053155363 12.193573295354797 39493 5915 614575 XMR_20210114 3065325633.020946 82021.27612100593 172.0889888182034 0.004604717462050503 706587416.5001849 18906.70308174527 335289 189475 59059 QSP_20190723 0.0 0.0 0.01583761092558696 1.5313797366828848e-06 109911.54433326979 10.627632703589345 56834 8587 708512 NAS_20200306 20566524.50288979 2271.6203099729896 0.45324289937182666 5.0033497677092984e-05 3999575.8813210884 441.51330521621566 23738 4988 1191705 TNT_20190302 6580708.830480526 1722.6945599341109 0.015374251849858401 4.021059336078006e-06 295634.61027590797 77.32176637451605 16979 2510 1349382 INJ_20211202 557013896.3245865 9744.920247983566 12.757982459472306 0.00022316729591616822 26426586.940604787 462.2635253311227 None 4391 111579 CELR_20200323 5125452.936352734 878.5088452790385 0.0013702003050455542 2.3498991089030294e-07 3057616.597112159 524.3824928707849 19249 None 1309255 MTH_20190816 3849059.249033903 372.2201246604604 0.011260175429393591 1.0898158149691163e-06 174243.6884591617 16.86417130284201 19475 1994 1114327 SC_20190629 136205622.6537692 10995.389711471576 0.0032764106011667145 2.646467774323687e-07 3876983.2543323096 313.1570640300512 109565 30862 233756 COTI_20210217 82982746.72784628 1687.3401098734198 0.12375484046952934 2.515052032681213e-06 20366884.422877908 413.9132972318333 40719 1567 218044 WABI_20211104 12419254.003575087 196.96224983061094 0.2100531898160643 3.3328813135474295e-06 983114.1544850905 15.598919480520802 None 7917 801187 VIB_20210324 17493378.76729806 320.8943293749962 0.09595146150621335 1.7575413442417474e-06 2256138.6344781294 41.32565430678365 31055 1164 None AE_20191012 58341500.52739051 7059.175096184035 0.17552532588914022 2.1228711682294396e-05 35978749.70117716 4351.409121314618 25020 6353 361614 CELR_20191015 17500150.95676264 2096.6951321176452 0.005198895941614074 6.228379929307364e-07 6171985.483487286 739.4160402716946 18434 None 552887 OGN_20210115 31506780.68066778 806.7100804047852 0.1544249607914778 3.936472023451063e-06 10633391.292649873 271.0575228472673 70205 2503 203625 IOTX_20200502 11220172.476808062 1266.224825486194 0.002584959078655799 2.925774034477292e-07 1197114.0445065734 135.4948020897394 22602 1819 628477 FUN_20190702 30132480.518908072 2842.439312468427 0.005182042975620937 4.8866530113127e-07 1904892.774782258 179.63089186851315 36249 17584 429165 CTXC_20200612 998834.2614700807 107.65081607103497 0.09789122351761746 1.052637210335763e-05 8446094.708877984 908.2196802847109 16421 20064 552232 AXS_20210418 424587978.96796715 7043.286553229214 7.702408950673382 0.00012782079972827054 56298723.54465798 934.2723702731826 56824 None 19374 AMB_20210809 5554020.115136315 126.20207458637867 0.03838713764897392 8.728294432215575e-07 409553.89416503155 9.312251949653774 825 68 582804 VIB_20190712 6785110.053656013 598.4371169183277 0.037790517534825784 3.321000168244394e-06 480622.94440727984 42.23675629125121 32622 1123 2096372 STPT_20210421 103560220.40898542 1833.0695802942216 0.09396478766927929 1.6666359180411153e-06 212079736.53737888 3761.6187421817795 29150 None 910650 LTO_20200718 14128005.25888542 1543.5233228959316 0.0637219764982453 6.960633923827874e-06 3168104.0543543776 346.0660476462613 16114 510 1277084 NEAR_20210916 4279909193.4842033 88807.4685036104 9.296780737672002 0.0001928537128800331 320616796.4125272 6650.919425183828 None None 6468744 MASK_20210702 54242156.68044633 1613.305670250597 3.4882199102252973 0.00010372236733750573 9249907.623201577 275.0463964497414 37235 38 255505 STEEM_20210703 141520708.9299069 4187.248098186692 0.36094948735462457 1.0659634323779401e-05 3408045.316607036 100.64709358683218 14048 3941 206155 MANA_20210106 109019987.10204734 3208.635283185278 0.08233246666056818 2.415376061001518e-06 44861695.530074544 1316.1012882804484 55894 7761 76796 ELF_20210201 62400347.55030505 1887.575785535332 0.135280087117331 4.090457783048676e-06 12922341.494042438 390.7322464515694 82064 33306 465986 DOCK_20190117 4647025.2782957265 1292.0293957207546 0.009039937871143069 2.5141070139392805e-06 1797778.3304834692 499.9820988377021 103 15414 150082 SNM_20190312 8437616.774367707 2182.3699752444604 0.02110311406095457 5.4613863244355866e-06 188519.46810194163 48.78794864151169 31359 10076 18629318 VET_20210428 13710605896.168726 248876.82374978744 0.2109120472394454 3.827417454435092e-06 3559226385.246736 64589.22270909297 284375 143169 33497 ADA_20190613 2975683026.8447676 366327.564935288 0.09619876111923988 1.1830545023156996e-05 376113617.20364136 46254.53623705953 152371 73713 105576 FUEL_20200105 2833269.944431624 386.0690174920435 0.002792815872498982 3.8e-07 114301.79996194843 15.55229058 1 1486 None PHA_20210624 111429772.59046651 3305.110265426886 0.626774262060833 1.8597819392843627e-05 19881725.17580857 589.9360526102018 None None 192691 HARD_20201201 18735014.237588573 951.718411973964 0.5373092279599234 2.735264723501994e-05 5589696.078843671 284.5530600248486 12019 None None WRX_20210806 501300171.05289435 12235.358220538685 1.1096603191116288 2.7120517495440408e-05 13529959.506317528 330.6773227661677 302236 None 1330 PERL_20200725 15077285.306668127 1580.6050980070977 0.0426812640668112 4.474951660916311e-06 6683056.241492455 700.690438339638 12085 489 1781566 GTC_20210806 111782346.81358069 2728.2995996670807 7.85129774322889 0.0001918886835366153 19763019.477712605 483.0156636916885 54705 1076 24142 SCRT_20210201 80265228.90113935 2428.1802707171346 1.1471466397626195 3.469512998305149e-05 1444095.2992676587 43.676259319709075 None None 226191 AAVE_20210616 4020348866.707421 99546.18889445598 313.7401889712089 0.007773373864231915 223076347.31506348 5527.044060352641 238047 11135 14216 KNC_20190512 36990764.29958001 5066.146617642691 0.22260697449711914 3.0564536796347716e-05 6127048.304235204 841.2602245318253 96470 6665 236085 TFUEL_20200317 0.0 0.0 0.001514039943910629 3.006577635112759e-07 1098768.2395121974 218.19318759562356 68405 4026 384607 KNC_20210804 145408308.54645306 3784.6404133390834 1.5759164448553724 4.10228929740768e-05 28372188.28145692 738.5602498851895 177136 11263 105078 RLC_20191024 23771151.857669447 3184.417416003289 0.3372983022779066 4.517897591390739e-05 969999.3665855492 129.92528489920136 25048 3330 696039 VIA_20190906 5334762.252958511 504.68697517297574 0.2304077133211227 2.1797367226266138e-05 78675.64516382256 7.442988364756424 40689 2217 1917066 ADA_20200323 849511432.181408 145607.2890736754 0.027299338945898356 4.68184775805283e-06 107973019.0664643 18517.416786111342 155462 77202 42201 FUN_20190701 28929475.71019252 2666.377037794863 0.004829047215556797 4.477107324787923e-07 1815024.2668221984 168.27457005347478 36260 17590 429165 NAS_20211216 15703231.866890777 321.85736107569943 0.3467196293861716 7.094828586208789e-06 2661888.8399199047 54.46950052470008 26886 5247 678539 NULS_20190316 22339334.008229308 5692.399181040988 0.558490596360565 0.0001423099795264847 13600297.43673974 3465.515914482813 19801 None 738002 PERL_20200626 7102213.548645833 766.9020848520613 0.020200480641481576 2.1830921402967328e-06 1399419.5724099712 151.23708805383913 11876 482 799656 COS_20200306 18823923.02618608 2076.8909232187316 0.009540123644866616 1.0525695961960946e-06 5531938.020630249 610.3432183176924 10240 None 161709 AION_20200903 59168147.75957637 5185.3771521767185 0.1287654999811162 1.1284432766742658e-05 4055566.620645297 355.41172805160625 68121 72552 307005 TNB_20190528 13340466.523973916 1512.6738906358598 0.005105801475778447 5.790384697511416e-07 1690293.5159610396 191.69271965536709 15790 1499 532164 BTS_20210203 107303023.18161795 3012.64534313334 0.039564130781536616 1.1136757904600059e-06 49221052.485916354 1385.5048361155311 13237 6919 136810 HIVE_20210620 111788025.36841388 3135.812681678872 0.30433912859262274 8.54798392167841e-06 4696135.733919447 131.90053126982613 20569 168 116714 DLT_20190627 8126497.743370733 626.0954507095352 0.10147169839119179 7.790107505767336e-06 3097162.9007154433 237.77301791513 15081 2672 2617266 VIDT_20210127 28432834.027878307 872.4579729347166 0.6107804578613937 1.874583263996894e-05 2390654.8572569755 73.37303490518367 24573 1192 None RIF_20210204 126719394.93944028 3381.340202481673 0.1841868998008738 4.910431495954218e-06 4516371.8653453365 120.40668841817397 43749 3029 663041 QTUM_20200605 175357514.70248032 17939.570182370848 1.822274835429502 0.00018642387443287283 348662423.622358 35669.152982357686 None 15084 120132 UNFI_20220115 38422906.83383172 891.4551278045707 7.55094896309783 0.00017511729239601934 11741344.158041205 272.2985426195307 23838 None 287186 STORM_20190627 18406604.55968418 1418.11291182954 0.0030708307570650414 2.3575146675213352e-07 2181971.3806046653 167.51263553201164 26837 2577 4259920 DCR_20190703 290633612.9408093 27009.562376693924 29.106254188818603 0.002696821153321416 24517509.073948946 2271.653943116306 40493 9509 383707 DUSK_20201201 15200116.286372056 773.1314754445398 0.05026897530489443 2.560654492693149e-06 458748.6780922833 23.368227747814753 18134 13345 1227849 RVN_20190908 139069191.65633965 13283.979409595246 0.03183131171207777 3.0405475456315634e-06 15255281.777500756 1457.194412409281 27629 6971 276399 OMG_20200511 94853241.80344261 10833.482321183177 0.6793503790349577 7.739290565557924e-05 105265004.81266128 11991.992405852736 None 42783 632859 DUSK_20210930 47758987.39901889 1149.7574057323586 0.1328176285991372 3.193851151593607e-06 3131845.0118571487 75.31113831223475 28835 13667 360157 ARPA_20200901 0.0 0.0 0.04404577420764782 3.7726115601629307e-06 13079449.00645207 1120.281829754622 20655 None 330815 WABI_20210809 11021596.724682428 250.53486659256637 0.18650108739487317 4.239406160198575e-06 851321.8537527438 19.35162503084829 45350 7884 670233 FUN_20190712 21369622.395323902 1877.9451618991177 0.003554737870398559 3.1238749389391645e-07 595794.1015532557 52.35790459005952 36243 17564 429165 WTC_20190902 33745502.82156346 3469.344112531994 1.1565819769308041 0.00011888158867640461 70845497.04205258 7281.995921533038 55940 19946 440674 WAXP_20211120 1712184172.2433596 29453.86793786019 0.9265470225101083 1.5884289991585455e-05 247131467.79704347 4236.706616249015 202590 5711 3965 HC_20201129 41744304.09867 2358.2042467194083 0.9305143486638029 5.252898625986318e-05 10082354.299095962 569.1646251396343 12723 841 1056664 XVS_20210418 780836249.4493876 12952.918425501912 82.45125293344113 0.0013680332688615145 124072802.03113723 2058.6190615742803 55745 None 10756 MTL_20190513 17770144.433309257 2556.3181700959 0.4055412534037515 5.827967441458619e-05 1264358.801274105 181.698948412802 None None 819230 MANA_20190130 43850150.208442375 12846.467986278301 0.03442867049335512 1.0085467066483658e-05 1750404.8718095368 512.7601628141541 42320 5980 101256 KAVA_20200407 11508200.94443652 1581.7969864831575 0.5968741350357153 8.191332745828273e-05 16350406.388514306 2243.88378380348 20101 None 284724 MTH_20190902 7674164.861394899 789.0724893397716 0.022087493481902438 2.2703071354927308e-06 4238095.844731728 435.6211466493568 19531 1994 715962 KMD_20190312 100099372.1903071 25888.904242283137 0.8921146203727084 0.0002310165898086876 1409622.7821107719 365.02736375267165 95472 8300 269004 TWT_20210418 275886135.8873629 4576.54292483968 0.7946745327598498 1.3187554043358535e-05 19171643.80756129 318.1517443804113 484013 17813 5638 CDT_20210418 35412221.60649236 587.4347354754926 0.05248210436826594 8.707843997665924e-07 3501185.415022561 58.09175673861613 20589 325 413427 UNI_20210813 14535927994.461237 326959.9541647009 28.028754374629905 0.0006303929027623731 569346100.5724059 12805.126343436235 593376 50374 1884 STPT_20210114 15846831.88291188 425.3176263776218 0.017225020380414745 4.608607786125759e-07 1326705.2911631318 35.49641277464447 17893 None 1561164 VIB_20200407 2320621.7774334624 318.4756054982257 0.012711286899061617 1.7444612608598113e-06 666365.4106100207 91.45011465927482 31340 1104 None ADX_20190810 7968508.254282695 671.9786250246542 0.08659041382715474 7.300515212214528e-06 163834.87447995608 13.813064755871247 53941 3852 708738 DOGE_20201018 328237703.8023724 28895.930058302944 0.00259471293674535 2.2828232151470908e-07 129773084.68694746 11417.40985020909 151801 167852 119070 MDT_20210325 49511110.798902854 936.6570589121434 0.08068865404498407 1.5315157540264544e-06 30549100.315346558 579.8389991510363 26118 151 547860 RLC_20210106 59684058.526439786 1756.4362871325145 0.8544422062776295 2.5066651519876437e-05 4973038.17782761 145.89332559040477 33736 3894 542862 BTCST_20210610 223622297.3264877 5957.554214397552 30.52356096437654 0.0008149688728710591 6970583.4220968895 186.1122469095252 None None 353837 BNB_20210325 38516791584.363754 728665.1997633685 248.3507195782589 0.0047138354711662705 3180619598.785246 60369.93776583779 2311867 208425 178 GXS_20191015 29746405.803091366 3563.863225742158 0.4579335559006933 5.486134364987361e-05 3125892.672958781 374.4881106310603 None None 575121 SC_20200207 91114219.6647048 9357.005856008895 0.002160423174736165 2.218653945767634e-07 6292641.437988427 646.2249580987258 107407 30143 238569 WAN_20200418 14893442.668304363 2099.7303811182182 0.13914917084766654 1.976570716167639e-05 772410.2942634148 109.71848119590119 105121 16292 925023 EVX_20200913 6874136.283927698 659.2328015347787 0.31566154406947283 3.0230151866759816e-05 234550.50315826468 22.462341276955634 16908 2830 827179 DNT_20200425 3326285.8684071745 443.60454889930037 0.004409566523116016 5.883137039347669e-07 71195.18615875342 9.49868959949002 58440 6054 716172 GLM_20210124 110492519.19826658 6393.577954391452 0.11691075261165833 3.6480310911875423e-06 1313119.3538980167 40.97399189082266 145841 20302 197039 TKO_20210809 135125756.7605907 3071.7671109701596 1.798316482062325 4.0889310063381736e-05 26042234.722627293 592.1366016151369 307929 None 21500 EOS_20190515 6303849115.710343 788988.2539413562 6.040178420167178 0.0007557628123736977 4905940785.773552 613844.0535490715 927 64700 112167 BAND_20210828 314114592.17877084 6403.792307616097 8.928356513767946 0.00018204390360862928 51795887.30811153 1056.087478350705 103475 5626 341497 ALGO_20190701 101443324.53426437 9349.174032293364 1.4398594468173882 0.0001327088797251002 137876906.28953716 12707.830485879154 None 478 350942 KAVA_20210112 71863571.16696592 2022.5976692631932 1.5350499909314435 4.3184003731119064e-05 64186606.65734749 1805.696672912171 None None 85719 BTS_20200626 68826178.25132023 7438.133281574571 0.025395277118850142 2.7445001412511966e-06 11777528.799478482 1272.812629784852 13113 6983 148844 BCD_20190703 205706361.82447243 19108.283595425677 1.0958841620744835 0.00010153843812055085 6144111.071142387 569.2786367329405 21365 None 3671311 RCN_20210124 26486341.05974637 827.4673084722948 0.05151342132875785 1.607417857459516e-06 887217.5634775031 27.684617293887836 None 1127 5522516 XZC_20200418 34508179.88627142 4901.779681182557 3.4785881387401623 0.0004941226316158964 26282750.968862046 3733.383072921884 63631 4093 120622 IDEX_20211007 181761959.92578223 3274.153608181568 0.30932011111017227 5.575389484696798e-06 44576006.55607808 803.4673120042087 61895 1988 5032932 WPR_20200322 3177958.9719066042 515.999489678427 0.0050872822128715375 8.255690798946961e-07 251484.31436230344 40.81111786775531 33521 None 964364 TRX_20200425 918326861.2666912 122463.84394269389 0.013902145278576382 1.8547906100527416e-06 1624977158.849541 216800.52361623372 506053 72549 64875 WAVES_20200621 120527702.095908 12883.39429987982 1.205556589275338 0.00012884922576792473 31874669.270267867 3406.747135405247 206 56859 114930 CDT_20200315 1535061.4112471584 296.9797875484377 0.00231344309347242 4.465156975070224e-07 47189.505641192045 9.108006626937 19246 290 235568 RLC_20200331 21009741.494659524 3268.4875124852183 0.29800532804278407 4.648301593068989e-05 618555.9869453416 96.48266352833798 28305 3562 394817 DEGO_20210506 84265363.08755372 1471.9435803706485 15.55578711406269 0.0002714274020561772 32342542.244686887 564.3335276446074 None None 63518 BCPT_20190316 4002016.2832742245 1019.8142540047709 0.0477035415366026 1.2156060391072246e-05 1848054.910157102 470.93080241537274 10048 1528 1708834 XEM_20190314 414092554.15218925 107072.68506628126 0.046043604780129053 1.1910455742837562e-05 18613679.54473427 4814.944604958382 215271 18461 134227 REQ_20220112 220167828.96628448 5145.811758284567 0.28526507264327583 6.6672791021637445e-06 12597807.728451839 294.43878082479904 59206 31626 144319 WTC_20200719 13365499.455410335 1457.4652052017327 0.460877034244538 5.027029032995965e-05 16103831.238914914 1756.5298586246938 54544 19521 745990 FET_20190510 0 0 0.0986270278714741 1.5973195302165724e-05 3304082.5218967637 535.1145274853598 8228 185 174758 UTK_20210704 100450235.84000008 2897.5840831824403 0.22346878098013487 6.433654664212941e-06 3731971.766046876 107.44327442083674 77381 3982 145803 ETC_20200330 564567471.0221587 95475.49606510841 4.838205245928529 0.0008196617503887674 1442975522.9303489 244460.86570811603 230786 25359 345588 FLM_20210902 0.0 0.0 0.7213207787772498 1.4825141618362116e-05 33265896.552181594 683.7063924373264 25507 None 70538 BNT_20190622 50670456.72210174 4991.548869036725 0.7729060074940136 7.613900401050913e-05 3176057.322663653 312.8735433328454 793 5132 142963 AMB_20201129 2126689.7144680177 120.14494448310094 0.01471022968500625 8.309285452527764e-07 278309.9029868279 15.720736369874565 20160 5489 530514 HARD_20210128 39595292.0570055 1307.4289087799903 0.8338457633832326 2.7422715277388998e-05 20372689.549990945 669.9973658165305 15720 None None OXT_20210506 389932278.09999317 6809.162246571465 0.6585070581200244 1.1486690489295747e-05 47657379.28207368 831.3131326291387 63906 3892 84331 XVG_20190706 117330036.25683391 10675.29521437918 0.007411540096999606 6.743403569354214e-07 1963806.3378157397 178.6772856198688 304169 53015 387398 WABI_20190826 7149410.4084092 707.2396914029727 0.12421360107392711 1.2287557137333683e-05 1802997.6784623568 178.3575776005458 None 7966 1534793 COS_20211002 63703922.84809915 1322.9321536048421 0.018600636270545173 3.86242154793731e-07 8511784.660444207 176.747182223882 29855 None 290587 BLZ_20200901 38641368.93772212 3306.03582052931 0.1611487270682646 1.380272140925872e-05 7402403.421428622 634.031146529882 41484 None 210138 NKN_20201229 12190867.467113037 449.5734443253204 0.01879337469286487 6.922086134356391e-07 538516.7982009302 19.834966965033207 13707 1023 401461 CRV_20220115 2080333685.528119 48273.296459397025 5.347182460330814 0.00012397681733579988 768794856.6960256 17824.8526629497 251292 None 8564 WING_20210401 86548340.58451134 1471.482636161664 59.13073540779919 0.0010059753118194365 23610144.933963384 401.6730512185238 9065 None 336855 DOCK_20190130 4493537.988653259 1316.49311510866 0.008744935907486479 2.5617099622188465e-06 748513.8054217276 219.26693259874457 106 15395 152690 COCOS_20190905 21407223.410413727 2028.1183263636158 0.0013621973157646378 1.2905444518702272e-07 2231890.1618620437 211.44906338021846 8620 119 186264 ASR_20210509 11306412.813814275 192.77316926942137 9.16180490388182 0.00015602263218882865 2377003.6733411183 40.47961877905317 1971241 None 174879 TNB_20200315 2844436.227653431 550.5424775746845 0.0009177683901167821 1.771377018173356e-07 323459.05673056585 62.430559341845324 15158 1446 1374605 GTO_20210110 13864949.166090285 342.63489792602604 0.021262116175450475 5.278143623560767e-07 27935581.317113455 693.4775879440972 None None 786393 WPR_20200907 4376938.625539839 426.22636216540116 0.007189197800675026 7.000842112770742e-07 240671.8425137657 23.436628357482327 32920 None None AION_20210902 99442913.8925461 2044.6576874123173 0.20066648695442113 4.124451368584616e-06 9655226.282872986 198.45123050086002 547 73467 735942 LTC_20200425 2871632289.637668 383147.73186360777 44.46317669126096 0.005932502347944069 4056280289.845061 541209.4711657146 133189 213255 145046 FRONT_20210711 28160195.750673503 835.0928668398959 0.6240486592947037 1.8506213115565558e-05 8621484.291380784 255.6708091467053 68188 None 214172 AST_20201115 17704417.537384488 1100.3238652708462 0.1026789929186157 6.383103625532013e-06 1077021.0159304042 66.95368308694373 33993 3459 170837 XRP_20200107 9465463489.326942 1219947.3004603677 0.21886937694958472 2.8228391019482274e-05 2315410062.424789 298626.9779879995 942616 208375 28405 TRX_20190623 2462531421.945496 229379.2879492978 0.03727600333305535 3.4751281424529274e-06 1298149600.4948742 121022.52941353613 434613 71010 93718 POE_20200417 2323577.8876604903 327.2178463659632 0.0008509303963229743 1.200376048733182e-07 19086.25524124096 2.692427459472016 None 10382 1042825 PIVX_20190901 20836530.00867116 2171.1170656604218 0.3419094948641719 3.5627943790207136e-05 7380700.245437692 769.0900002098105 63107 8602 256099 WRX_20210727 455354336.4255444 12162.764472493522 1.0000828307168161 2.6803230123807834e-05 20719994.378866695 555.3167802138037 296814 None 1290 ELF_20210704 95411125.83631328 2753.7051436772667 0.2074184069848817 5.9816914006349715e-06 22603657.51457514 651.861644023171 87885 33394 490467 UTK_20210115 86788088.54845624 2222.1510537908384 0.19296439371431398 4.9189219469176884e-06 4862318.080466817 123.94702804245246 56408 3141 130913 EOS_20210218 4602083547.77184 88214.64862314424 4.837959113806691 9.278695911005642e-05 3987096018.457941 76468.30130844875 198513 77939 58943 CAKE_20220105 3109594480.599038 67141.0266017834 12.04017888608963 0.00026215653553829816 97931826.96589607 2132.3161988877678 1377381 None 662 BCH_20200301 5642077350.992566 657910.8534184502 306.48735888813724 0.03583428578394534 3894716585.887969 455367.5156211582 2568 285454 124622 UNI_20210408 14935901075.534973 265172.8119630376 28.616200276208147 0.0005092482518804068 1161207835.3831873 20664.62544051906 None 33152 1940 MKR_20201201 515881439.2102109 26255.171671438457 567.5309145071443 0.028891133990797638 37051859.3519114 1886.188409795931 73742 17841 33541 POLY_20190702 39912877.16885339 3766.4620657172363 0.08457455473702434 7.978036825351352e-06 6458510.664478424 609.2404042604622 35176 5094 354740 CND_20210314 61563630.92457729 1002.7922739953865 0.03188932135830123 5.195322968806566e-07 3888211.013577381 63.34569418846148 34847 6061 206667 POA_20190314 6937230.814190351 1794.236342287489 0.03150405035160368 8.149396625757634e-06 400568.23282404727 103.61808619937717 16693 None 755314 BRD_20201208 5536349.081579304 288.2465518299622 0.07568555865882974 3.941591177780757e-06 310095.2700292356 16.149299843691942 None None None RGT_20211225 303841488.65661985 5979.993399815787 26.951617163980906 0.0005300141242251859 41813519.95162732 822.2792726349589 None None 50980 PUNDIX_20210710 293591131.37110734 8638.59660864609 1.128023863998823 3.319152790641934e-05 16877169.92482321 496.60213264932776 156101 None 60619 BLZ_20201015 25233467.894466788 2211.1190842464835 0.10273739164682473 8.989950625708891e-06 7350420.727937974 643.1924965499346 42212 None 202026 EVX_20190803 10023984.97167574 952.3554847242488 0.4749812912211882 4.5136305724698375e-05 1237789.130429644 117.62406150806454 18237 2915 1025264 BAT_20200308 325770687.9090313 36650.32310463877 0.2273309011105548 2.5541558491086428e-05 65441263.36064591 7352.594159839556 111315 35471 21544 ALGO_20211202 12276561279.686308 214786.48738962793 1.9622692633616943 3.431489076517456e-05 691241214.3920114 12087.977530470203 199826 58028 65951 ZIL_20190201 173228458.37664524 50547.25565970885 0.018367707946808292 5.361528586085995e-06 22856559.002850637 6671.822898547306 55656 9851 190156 ONG_20210301 0.0 0.0 0.524300901421782 1.1569497758025043e-05 41451105.48781158 914.681761386291 102284 17100 202243 LAZIO_20211225 0.0 0.0 5.3453314206912825 0.00010511803927733568 8259884.603267652 162.43387094607158 632323 None 86457 AMB_20210210 4291484.637656373 92.29399034841092 0.029743176528509108 6.386146381351009e-07 982567.9557537581 21.096680070650304 20587 5469 398433 GO_20200312 11027943.849189546 1390.4056472790976 0.011824047754772714 1.4895154699843967e-06 3562083.7149538123 448.72778838884034 10685 679 656341 POWR_20210731 136260887.0695022 3265.984272716765 0.32010091172707256 7.663154154268653e-06 56561543.96266212 1354.0724649946853 91751 14037 170034 SCRT_20210108 50027058.498000585 1278.0723780398143 0.7259019654157303 1.8389629746026244e-05 715440.7916622317 18.124611711634355 63518 None 361970 ADX_20210401 163578492.02045462 2781.0339866747213 1.4192984755503433 2.415349136712761e-05 8014437.229796232 136.38895819091798 None 3811 10649 OST_20210207 12708442.452332834 323.05618963614495 0.018496177092807566 4.7087553593872855e-07 3243244.731048297 82.56649972856707 None 734 716707 CTSI_20200901 16756730.767493844 1434.777552522071 0.08438990903378552 7.2386009703135525e-06 4910169.8402832635 421.1731067994068 17436 140 367425 NKN_20201130 14539494.626545602 801.3536499048782 0.022391583037841348 1.2323556807227495e-06 758304.8702805009 41.73449072495738 13716 1025 337822 RDN_20200511 6779323.137329299 774.2347402750078 0.10144343900981581 1.1585478385313478e-05 885670.1692743597 101.14910045244191 24964 4310 1420050 POLY_20190714 31350922.210566897 2754.5277020810586 0.06541084167639341 5.743824408388466e-06 3121725.189646358 274.12338506940483 35218 5095 354740 HNT_20210804 1231770837.9009783 32058.773424760577 13.202429092783438 0.0003437320210419799 10973649.33225427 285.70459547050615 67253 44347 2417 ARK_20210806 187268368.18140566 4568.562174501663 1.1770366582960887 2.8728615483778174e-05 10214075.884997051 249.3008663358014 73135 23425 125650 COMP_20201015 20316.113629164756 1.781126241207929 2.2026897519221532e-07 1.9311117224488693e-11 45.911940373696424 0.004025128195137312 1926 None 1525892 WING_20210108 12139356.418088105 309.9019107905885 14.50014877390708 0.00036744199851429776 4720935.664851595 119.63118879662959 None None 329521 QLC_20210513 16214270.605141593 314.55420459193107 0.06576306781908986 1.3110060709211911e-06 2032543.5469441963 40.51935254580723 33596 5639 940522 SRM_20201030 51360825.11369465 3815.217733272024 1.0246743810858474 7.620232072682303e-05 38535083.274658024 2865.752115143696 26486 None 67635 ETH_20191118 19958777557.908268 2348139.437078922 183.9879638750186 0.02162124384486007 6738152838.897733 791830.3052296838 447902 447666 23055 SKY_20190818 12006230.355842248 1174.5959182839545 0.7503893972401405 7.341224489274716e-05 521787.88388595823 51.04765612998883 16371 3804 472188 ALPHA_20210724 197486723.16359597 5907.178613539849 0.5636958224981572 1.6859021001405705e-05 38329460.72056267 1146.3579424746113 70781 None 56625 GRS_20190901 15278420.723608067 1592.0549821527766 0.20847276898545977 2.172345666549405e-05 699900.1771004134 72.93159313518248 38476 107007 None ZRX_20190906 95824815.56205884 9065.359245522848 0.15961035385705513 1.5101659008605207e-05 23481974.249402434 2221.7654393581115 151097 15900 155880 WABI_20211204 15124862.624762537 281.68189859226555 0.25798786093969006 4.811073888794016e-06 3069301.636622847 57.2377200500954 45800 7949 491183 VIA_20190414 12989976.593948841 2560.416121400412 0.5611235527066609 0.00011058324323108002 620545.2387330857 122.2937528458781 41276 2234 2242748 ARDR_20200105 38758909.33674309 5272.047614944593 0.0389933891845376 5.303001465085962e-06 2138307.288834286 290.8043369051066 65434 6442 1520323 MFT_20210626 53923412.74710886 1694.7309214208603 0.005747630054282095 1.808047058473734e-07 5515129.1346880905 173.49086344982393 34149 3507 252491 RENBTC_20220115 765501888.7849752 17763.159763557072 43038.38845727082 0.9981217053059444 201920.48417066372 4.682824455583835 111784 6508 71958 WAVES_20211216 1754217370.824202 35957.1034133432 17.53785205602989 0.0003588722517040856 263569841.34392515 5393.357301806047 205082 60039 105979 YOYO_20200625 1706442.2136669361 183.41281791023656 0.009713746021578226 1.0450601095646648e-06 629086.9948176577 67.68076108531315 7487 None 1874217 CTK_20210107 23860790.28852153 651.9818927829699 0.9435583922766233 2.5564192699433763e-05 14637419.520711966 396.5772720722424 10392 None 220154 XTZ_20210727 2388374841.125783 63816.92750900824 2.8378369805062063 7.605689779499664e-05 196892704.048515 5276.923364966234 125503 50800 65574 MANA_20190629 59163963.56072405 4776.093846574126 0.044590965914040555 3.6017632916781557e-06 15930608.247782722 1286.7691655654878 44875 6273 136694 SYS_20190810 14283953.844520116 1204.170122325559 0.02547420118265724 2.147533679271479e-06 428265.16588002956 36.103737298435426 60908 4580 678710 TNT_20191102 29084456.872421052 3148.613551062603 0.06787801227904183 7.348310825210683e-06 572557.2825440957 61.983678309199014 17718 2557 472199 ALGO_20191118 125940089.51865791 14816.78374589807 0.2698165331161211 3.170734070322798e-05 113076244.61540587 13288.092364299982 12981 679 425453 XEM_20190621 777960427.8094386 81329.27562005879 0.08625018429116517 9.024417103831189e-06 61606302.07180055 6445.910471839957 216545 18473 184681 LRC_20191019 28358637.46184909 3562.9825604818056 0.02952434131193234 3.709805756956246e-06 3415084.49501826 429.1137264081967 34070 2438 558420 CND_20210616 32439990.42078355 805.9006377889982 0.016518224783245834 4.0910322665936595e-07 289548.27315599564 7.171178160858568 35888 6249 130832 FIL_20210111 1050431927.9268968 27331.292311777306 23.581049628823116 0.0006133931144356389 265355918.21325916 6902.470232190555 None None 31509 GO_20210422 51046867.55702939 942.112444709053 0.04728294540659237 8.741849107503499e-07 4153548.8939928063 76.79237699701491 19669 954 121965 MTH_20190122 5288096.735988218 1497.3692806882893 0.017820462647349235 5.046484662055832e-06 965670.1819765876 273.46314505894156 18737 2022 785552 BEAM_20210722 35182340.475406595 1095.5297778923916 0.3800592534899796 1.1810052555138993e-05 6835729.182614635 212.41509095766466 21760 2534 207096 COCOS_20200330 6228891.734497266 1052.726352136953 0.0002569011404768786 4.3522758497554546e-08 308574.8111319855 52.277023599023806 14686 217 67575 COS_20191030 21060381.395804793 2238.363323143821 0.01594690051780995 1.6948865533840434e-06 1009211.586165756 107.26216953579083 9392 None 200954 BCD_20191203 70888489.28550816 9696.12095822156 0.37139276164371376 5.083363787066347e-05 1658607.8984717438 227.01862283793886 21297 None 2556189 SNT_20201129 166808035.42989135 9423.259676527327 0.043011498123791694 2.428066152021363e-06 21391513.58768137 1207.5843053237836 113749 5686 157993 NEBL_20200305 10199642.169689044 1165.1197729202881 0.6336040245823665 7.235023101945897e-05 157642.60305769797 18.0009569182442 39700 6028 856581 ARK_20211002 251142876.47169805 5215.4556827756205 1.5729953122098377 3.265691548292142e-05 1862966.4468764341 38.67699880026485 74323 23801 147149 CELR_20190608 54698331.31702929 6806.6134167205455 0.01916907120734555 2.3876788589760934e-06 32580296.19942335 4058.1665962372153 14628 None 333919 XVS_20210916 383194216.86325413 7951.222048509265 34.429118708186124 0.0007143253729906837 23889343.40209348 495.649170716226 124854 None 23048 BLZ_20190818 6589478.126824372 645.0516192055018 0.0316110646470796 3.092494317762245e-06 216782.98428503887 21.20776869028864 36515 None 1006021 BEAM_20210210 41204239.37620389 886.1510624858674 0.5092136393811472 1.092861122499134e-05 12586957.755251225 270.1380268990949 16327 1722 285375 DASH_20190807 950776369.6460643 83170.28032236813 107.35071432228368 0.009356229213508933 357218997.3007277 31133.68028582986 320594 29506 93403 BTG_20210723 668093085.8535156 20656.85466286191 38.1073184875799 0.0011771135408485838 6327344.283096401 195.4480905202273 100896 None 177172 WABI_20210117 5212759.286221032 143.6429973361823 0.08825639651865573 2.438730852878617e-06 847227.7195559174 23.410885336319627 40820 7455 977058 ELF_20200309 35679224.60984956 4416.567464733515 0.07623121430417204 9.476105350577476e-06 32371549.949493557 4024.023760908313 83268 33436 755936 GO_20201228 8428003.823245572 317.44276292363224 0.007889451013759267 2.9936105101718715e-07 278803.4259658909 10.579048716923609 13314 684 688031 POLY_20191012 13666626.796716766 1653.6275320332347 0.026108005462389044 3.1576031421863043e-06 2823939.7241603564 341.5381906212271 35213 5064 294073 RCN_20191011 21460199.43038485 2506.8054002723693 0.04211368214082982 4.91840092682895e-06 6877875.876653717 803.2579761899101 None 1121 1108011 VET_20210821 8914335505.210993 181413.82787417955 0.13360403834674425 2.7183892345655023e-06 1160043237.7488968 23602.947097623837 403950 197891 47063 NEO_20200518 714890601.0288901 73928.4280612676 10.137632491687636 0.0010494824604770517 336202605.14867455 34804.845959797436 320368 99429 247839 IOST_20190729 110885968.35026012 11616.022651485016 0.009223598763796999 9.67216648526877e-07 41789245.60419467 4382.1565869065025 197229 50531 111016 VIBE_20190530 10735906.403222824 1242.6548225511779 0.05334469267301077 6.1689756886733154e-06 2388637.6841078056 276.2308125502659 20611 None 1508897 POA_20210218 13996801.526048418 267.5940627132321 0.05008224816856454 9.598507508436389e-07 943789.3946009525 18.08818477950433 18422 None 431187 BNB_20200412 2087481774.1363175 303368.4694000646 13.82675861556279 0.0020091757527948865 379071140.06073177 55083.08667058743 1134869 61466 1688 GLM_20210814 430452614.8008599 9031.203457505402 0.431127539207772 9.036310049381691e-06 8270608.767777457 173.34959687359375 159047 21091 227363 ZIL_20200914 185620827.27616623 17982.315703685457 0.016685187731740835 1.615925268142433e-06 19122669.628800787 1851.9902529316682 93607 12013 85218 FUN_20190621 36266919.74687014 3791.404043890841 0.0060250856319340055 6.300131476252147e-07 1164009.427831983 121.71465905928642 36250 17631 455027 GTO_20190627 22442830.566643424 1726.6445413662336 0.03467243282455842 2.658783474695338e-06 11717577.928174019 898.538118640964 17435 None 1224207 TVK_20210704 20751244.4381792 599.003625489991 0.09471590446790806 2.732171755650093e-06 3088332.0438406225 89.08592099344217 49851 None 76424 SUSD_20201229 100406045.59314245 3703.001892062836 1.0115328102347534 3.725737050744219e-05 28306282.31740723 1042.5936136892567 49429 2792 47105 LINK_20201208 5180856042.418032 269737.0904123127 13.075995190359299 0.0006814496856211244 575741231.8283557 30004.498756455367 None 25166 43090 BQX_20210106 37148772.67263504 1093.2475765827435 0.1673431088963314 4.909321384334918e-06 1077463.4534610976 31.60939466107815 18777 119 152603 CVC_20210115 112773254.93969932 2887.483887420325 0.16583022637569214 4.227235524028245e-06 81698870.93278264 2082.61411099829 None 8109 183713 PNT_20210804 23178324.51992505 603.2523512377425 0.7331975378676417 1.9087191319853774e-05 7292712.241588238 189.84978345762335 47395 322 329278 BZRX_20210421 103219345.43515557 1827.035916569449 0.7253989457651177 1.2865349277577919e-05 50656879.521569714 898.4276199488762 23223 None 181064 XRP_20210111 14491113587.04244 376944.5989347246 0.31868717998893553 8.289729462474321e-06 7389910221.259051 192227.23828532477 1054631 230137 14934 ARPA_20201208 22667768.93937603 1180.1791035660922 0.023028000823147866 1.2000940420188329e-06 8233916.334428881 429.10689518026845 21079 None 1058810 POLY_20210325 437910584.2260292 8284.859980896561 0.5376544652376583 1.0197391528545986e-05 7479718.344761816 141.86363439029395 41990 5369 242292 XEM_20201130 1599620945.283378 88191.70331157667 0.17789413399591894 9.790680999491288e-06 48472638.39508818 2667.7672223913187 212774 17807 134230 BCH_20201018 4534089058.062933 399151.9523265572 244.8915810006249 0.021548475309073008 2236297416.6561837 196776.05685610138 None 328035 125255 CND_20211202 30841860.6223506 539.4906771661977 0.01598632526671069 2.7963531607709915e-07 112271.64631065774 1.9638732966326564 37224 6353 176268 LSK_20191024 92848615.52986363 12438.613022753974 0.6824353085339432 9.140789668621612e-05 2844028.721846551 380.9396734434214 180600 30965 158256 ZEC_20200423 408782146.55413914 57473.167023954884 45.38717081383484 0.006379757454166005 672170680.9534955 94482.33576563347 72501 15717 144144 LINK_20200305 1702019466.3742294 194424.12794255008 4.663737998181804 0.0005324856265054677 722046296.5904502 82440.15310375733 45190 13440 95530 ZEC_20201106 591162782.1306715 38044.57700014666 56.80352962892065 0.0036457794427978284 312513158.21523863 20057.803718676976 71692 16277 172675 IOTX_20190807 23472777.28942089 2045.2987205329612 0.005700285013879892 4.966793157792024e-07 1766282.6207618942 153.90038242238649 20384 1760 857691 RUNE_20201228 198586949.25753903 7501.182015976395 0.8968820464098143 3.4104170756610834e-05 16179301.138007808 615.2220918480951 None 2004 305720 SUN_20210828 0.0 0.0 0.0004039556057238497 8.5e-09 0.1292657938316319 2.72e-06 77 None 2008209 STORM_20190401 15885811.146238636 3871.3405959267734 0.0035155080748485315 8.567223291391038e-07 1770740.8964424494 431.52603629488243 None 2574 4145825 EVX_20210616 11122936.549790027 275.6867038827808 0.5102754932535122 1.2636583795937291e-05 155057.94211593457 3.8398917931183933 18150 2812 977080 IOTX_20200718 27736676.760810703 3030.308008486289 0.006411037865305552 7.003919119176341e-07 4061939.4798770086 443.7580339059793 24936 1879 529833 FTM_20220105 7408523083.29957 159961.64404045377 2.890180556461285 6.292927446762528e-05 1546968691.7675304 33682.88433725271 299511 27021 16138 BRD_20190810 13838569.07695189 1166.6288475418016 0.23040475649051417 1.942374490006764e-05 608239.5010169985 51.2762370267517 169 None None FTM_20200404 6871334.514118852 1021.7350341303766 0.0032823789778550325 4.878576014918511e-07 1424080.0509810897 211.65998280248286 21400 2328 311485 REP_20201124 83290013.71789962 4547.897904328958 15.725417955538333 0.0008565406653011793 8517729.795391655 463.9483647702315 136432 10439 142308 FIL_20201231 971502565.7987247 33645.337332856456 21.667585858799086 0.0007513499234980266 112612320.8927767 3904.9693509516123 42671 None 31235 REQ_20201031 14364573.799435718 1057.5255989509153 0.01878451869165961 1.386944163866055e-06 219243.96874693094 16.187752686546066 39454 27538 294211 VIA_20210201 8093185.421871232 244.87309580119614 0.3532423118783587 1.0652722125285696e-05 1507335.952207311 45.45670353852405 37737 2122 2708625 GO_20210219 26381013.522178646 510.39424164974616 0.02447344497970864 4.733190931852855e-07 2557497.5545173706 49.46228143734582 13698 713 636125 NEO_20191017 493583723.28666514 61650.502481496835 6.998209602816747 0.0008741032536721513 250605233.706801 31301.556055453966 323230 98320 172955 NXS_20200914 12852832.623762062 1244.8267469497853 0.21371424586560117 2.070642123260727e-05 44712.18884423575 4.33209032318256 23347 3524 382066 ONT_20210809 756828666.4158684 17203.647802564432 0.8604408691602639 1.9564316871495125e-05 235531447.29659417 5355.407946404907 142113 19765 173647 BCD_20190702 211129129.41103846 19889.762659120515 1.12114491779567 0.00010572367335505671 7833654.967644658 738.7116204422932 21380 None 3671311 OMG_20210128 439862123.5894553 14540.309917955452 3.136958781498895 0.00010316527501790883 211825429.08561435 6966.310420235162 None 42501 205184 AST_20200807 12082536.439284507 1026.9621588218065 0.0710208751971724 6.0320371567204e-06 7165123.945103888 608.557607173707 32559 3459 206687 QTUM_20190507 196722302.95587653 34388.15041423948 2.4143771733243193 0.0004220635775189855 194407318.8639651 33984.851000982075 None 15271 401038 AVA_20210131 65202498.42938855 1906.0073303072206 1.7031335280523794 4.9843822892255744e-05 8098092.39311415 236.99837761346174 None 9174 69143 PPT_20210428 182773651.585974 3317.732725770977 5.053957096278003 9.176348731498765e-05 10322803.888339376 187.42867531668296 24352 None 724019 FUN_20190922 22843405.452903602 2286.493237815057 0.0038030893638583145 3.8066732787265297e-07 1448471.0986101117 144.98360933840505 35781 17354 353342 BCPT_20200314 1343578.4101802942 244.04238673081025 0.011630826803186823 2.1003519572758417e-06 143130.60268646057 25.84722879857585 10682 3167 1771218 TNB_20200422 3192495.0620379555 466.1755097417481 0.0009708397412985648 1.418224524283755e-07 403194.67603305884 58.89958489398861 14972 1438 4384247 DIA_20210310 70484428.33853619 1289.6449254471509 2.757829847548453 5.0414691327859084e-05 34745378.55745138 635.165195779088 27282 267 245646 STORJ_20200914 69874158.51833099 6767.510730326036 0.4840341779030301 4.686978109462466e-05 13117637.439046444 1270.2012033743842 82296 8341 117786 FTT_20200907 342669575.91911817 33280.08653619675 3.658965008244072 0.0003560942913531761 9857223.833621427 959.3153057857608 24404 None 9100 LSK_20210704 378690791.73775595 10923.701685826492 2.6301862299163736 7.579922535086808e-05 24519309.7023481 706.6209458617316 196570 32568 337278 PERL_20200306 12445855.40417183 1373.0450935075628 0.03612121072522943 3.985391151670478e-06 2219322.075023296 244.8662816921297 11485 464 686395 WABI_20210124 5547987.41728271 173.37260365842562 0.09415990306163143 2.9380738651042272e-06 1063600.0031198545 33.18753811849003 40815 7443 977058 DUSK_20191022 11083078.40021177 1349.657663180621 0.06014304934506797 7.318234947768696e-06 407930.88626271096 49.637224926754406 19708 13330 197441 SC_20210125 211102426.35359648 6563.16297958727 0.004654129955674569 1.4425249598908742e-07 10012932.256029313 310.3459688186818 108273 30223 141057 EVX_20210304 11661712.447446171 229.36834430500116 0.5333418431174982 1.0520282034528215e-05 510178.6094417542 10.063382291436383 17228 2814 744332 ZIL_20200324 40060129.416668184 6218.339927345994 0.0038809437609701883 5.986909613494358e-07 8869997.280690841 1368.3236671835075 68641 10569 233633 VET_20210527 8742142722.182993 223130.68190438332 0.13456673655654827 3.434932787003666e-06 2600285822.9995217 66374.5533075962 359513 178917 26109 DCR_20211230 939425783.0985042 20208.786951800063 69.13895686642543 0.0014858303593940857 2864703.7321601897 61.56389926646602 50887 12482 118301 STORJ_20191012 18570534.76793396 2245.9922884489274 0.1291525786319016 1.5620212302201612e-05 2947826.4596116454 356.521531485765 83254 7817 145218 TNT_20190421 9078293.219487013 1709.4114173597266 0.02118768522722225 3.989180860018118e-06 826042.2837849556 155.52581760119963 17306 2506 1188979 TRX_20190819 1172867853.0381331 113675.98868760507 0.017739858068057005 1.7193901729787785e-06 525199935.30224085 50903.65459201606 454726 71291 66162 NULS_20210620 51294390.479907624 1438.8687358188954 0.45311960181466665 1.2726786361058742e-05 27099001.19258403 761.1306096555847 54686 5371 234427 DASH_20201124 923488202.6030738 50319.59875717525 93.96709915056647 0.005120137660994598 545580452.1259295 29727.926532630354 321600 35579 75926 CFX_20210610 298911923.4986048 7963.596160867672 0.3538716033778481 9.448253501041337e-06 3188974.960165413 85.14456527314034 34398 None 132746 XVG_20191022 54511181.83927645 6638.076619464026 0.003401170628051539 4.138960204022929e-07 1243647.7109260624 151.34225671871184 300921 52553 287655 XVG_20210124 204144883.6066698 6377.748326782989 0.012440154787535695 3.881704682213442e-07 12320515.041391598 384.437346160422 289007 51372 179972 AERGO_20211111 79770543.87264504 1229.8453073704927 0.30398338751104026 4.680954117782667e-06 10178654.550927814 156.73821955787764 23625 None 664233 ONE_20200903 73889225.11089297 6476.790736931618 0.010430405855167508 9.140741395772772e-07 12790786.00030627 1120.9273033181767 78418 1453 127975 REP_20190411 219296211.48616445 41319.511372444176 19.9386080722628 0.0037566096006498924 7151567.677556206 1347.4184205756424 124299 9845 255741 AGIX_20211125 208752290.04410583 3649.0409234369126 0.21389142889105198 3.7398423163899e-06 3127915.1875826693 54.690875839437126 None None 112488 ONG_20200721 0.0 0.0 0.18799867417371968 2.0526695430918404e-05 9871890.531830275 1077.8655283866563 87676 16568 168500 ENG_20191203 38150752.33115889 5218.256348505538 0.47997615551165 6.569577168883806e-05 804946.5630883082 110.17544314048915 61133 3553 384802 WAN_20200730 27657426.733067323 2490.783620511457 0.2605745650265568 2.348312718874246e-05 3240116.9071231573 292.0011683742553 103860 16086 631499 WAVES_20190811 130754712.2059453 11539.99274443663 1.3086760743510457 0.00011555981155061589 8447748.123672253 745.9601350798199 143176 56898 43327 POWR_20190702 46257532.89013567 4365.188762195382 0.11090653771029292 1.0461969853417247e-05 3099992.3539135167 292.42664338855525 84683 13184 757422 SOL_20200629 13136127.952360291 1440.7776778541652 0.7987604659546775 8.751818743222375e-05 3419777.1925617917 374.696437883105 58885 1941 124882 BCPT_20190605 6924510.437146707 903.8079469871891 0.059643448583993924 7.779636133815948e-06 1751625.6463184103 228.4745515985204 10898 2413 1057836 MDA_20210112 11324386.556148238 319.6901201595354 0.57958596091666 1.630402193760433e-05 1167827.3932653742 32.85152630167277 None 369 3261426 GLM_20211216 452236262.3930248 9269.7212583693 0.45254691825402293 9.260343344025822e-06 7160941.490506562 146.53237972410236 163598 21778 244527 FTM_20210519 1690351386.5602899 39615.831261034255 0.6709444401037382 1.568254326693687e-05 243832976.34800628 5699.311258756934 87714 7724 46470 ANT_20211230 412265604.39969647 8888.982793935756 10.890282910511887 0.00023405040593993975 284754929.6643574 6119.860009973715 96297 3472 53298 XRP_20210125 12456245392.6549 386848.23599125596 0.27359188165054465 8.47973690676074e-06 1991913877.8750145 61737.598072738874 1072140 231779 12972 SKY_20200312 7616564.931489087 960.2982240781571 0.44913144149790846 5.660828662299012e-05 694624.2835042806 87.55007310278138 None 3828 308227 SC_20191019 88491179.78141938 11118.987382318282 0.0021052196039494956 2.6452599649471513e-07 7814805.584265315 981.9494511223635 108455 30502 207365 ETC_20190131 430405824.8059238 124453.25883395121 3.9883811135133582 0.001153253507366773 210540934.11531642 60878.60307283347 225937 24124 445407 DUSK_20190916 11429733.152307762 1109.4213385102594 0.0904332242759345 8.775515278536504e-06 952130.2355385838 92.39340403954716 20365 13326 178526 GRT_20210221 2771467854.4268217 49602.474586232274 2.3188116951366564 4.1242930373683865e-05 1358788786.499732 24167.737048975065 65615 10287 27786 NULS_20210508 137812197.60508132 2405.084920324898 1.2251440519090917 2.1374637525961556e-05 197726971.0758193 3449.669717831293 51594 5354 238913 NULS_20190426 29266373.370628163 5631.136679745942 0.731242012332348 0.00014053898589962835 15449823.015707856 2969.3349429292193 32 None 664813 LRC_20200718 154695304.33436614 16900.886275676232 0.1302849840395498 1.4233350509351531e-05 21642899.524828564 2364.439595602587 36693 6930 317120 AE_20190629 160461689.68080607 12964.889825302038 0.507098793919238 4.096008650526843e-05 50794243.86581752 4102.823054722032 24765 6363 390677 XMR_20210823 5488227164.997983 111246.23179884485 304.95319008574455 0.006188028935181428 277074105.00049144 5622.313963826564 434412 232215 39268 BAT_20210110 413810569.7440736 10225.861984811858 0.2763510764347734 6.8601857873041655e-06 239700716.99731958 5950.371075684057 None 49334 23893 ASR_20211221 8066650.184978997 171.0275790653318 3.777855190914301 8.009736539271437e-05 2645520.5331823444 56.089821894139824 None None 103751 BNT_20210729 775635852.7996235 19397.200137751668 3.254944145299057 8.132176148215877e-05 46164700.53919157 1153.38223900567 None 7624 38654 CTXC_20201014 910451.6629716108 79.69385283322069 0.09052533391392702 7.925522086913277e-06 2934381.986734907 256.9060863053059 16699 20065 591640 BAKE_20211111 398190021.37353724 6130.315763341474 2.069147678906587 3.185445712203573e-05 128795838.9020129 1982.8074958713528 None None 21150 REQ_20200105 8719702.561498815 1185.8346819256988 0.011297865797707576 1.5364516163451503e-06 45528.019621751126 6.191576408265263 40142 28652 1668382 MATIC_20190701 48567202.961990826 4476.536109772307 0.02195680098774727 2.0356594198224157e-06 66977116.339674614 6209.583894552071 None 845 197160 HOT_20200317 51319805.624379285 10167.44788983081 0.0002891616392288049 5.742788833964201e-08 6247553.589550913 1240.7724997462913 25123 6920 515134 GRT_20210128 592958346.5431087 19579.370265957677 0.48660167683409883 1.6002886652778637e-05 176201287.505049 5794.738009047826 46956 3436 38348 ONE_20190914 21234973.099214923 2051.22279809438 0.007677588274726822 7.416276926710112e-07 2757035.547923134 266.3198180018248 70848 None 133162 LOOM_20200315 9885608.861665137 1913.3660097998488 0.012041144234740495 2.3289793258472057e-06 16680299.13379078 3226.2774263149604 21600 None 487535 PIVX_20200301 21460965.504136246 2509.2009467029825 0.34345322783906124 4.01563091034218e-05 517619.2933870737 60.519682618577896 63934 8509 213646 TCT_20200306 5366555.889586623 592.5760343906662 0.009261255187638174 1.0228368819296236e-06 797123.1531990515 88.03633460184935 19 None 365886 MITH_20210616 35492142.223897435 878.9358596274643 0.05750969386690124 1.424841151203912e-06 17343684.832563672 429.7013981702037 32259 2735 253945 KAVA_20210930 464559639.29711473 11181.740116439947 5.094495568470883 0.0001225067839997179 118890548.19660252 2858.9481552735756 None None 56614 XTZ_20191102 709406979.363357 76798.69829578567 0.8749178950611619 9.47074065034869e-05 18431193.79350526 1995.1249972136204 45101 17100 215238 RLC_20190916 15146580.50785189 1470.167277183927 0.21632963298775607 2.0992329032654416e-05 101101.09381324473 9.810710615910011 24800 3309 1199907 MATIC_20210718 5087930068.468128 160981.696939558 0.8025229012916089 2.5440135591922104e-05 378756494.7509709 12006.656217882291 535968 None 5822 NULS_20191026 24038438.793348998 2776.516498545028 0.3262106131245485 3.7678368263724224e-05 5004104.52086306 577.990063417274 21205 5268 455576 ATOM_20200117 936909309.4467511 107641.02045977782 5.0709437123300996 0.0005819616215132095 310794465.0907088 35668.00602060114 29872 7905 115238 ARPA_20210617 42358680.9460605 1107.4438763685102 0.043248928439465435 1.1300213745087593e-06 5768199.0561776105 150.7132884234419 42159 None 491421 TRB_20210105 30726838.562972244 982.1181822705972 18.855531161585866 0.0006026770359798447 38530213.23621664 1231.5364923891848 11939 None 425795 FLM_20210731 0.0 0.0 0.46464780259106125 1.1123578872319559e-05 27026304.16543121 647.004514677664 None None 72059 LUN_20190601 7136748.825886794 832.179360490644 2.640899620126002 0.0003078524258437578 498259.470644029 58.08262668085521 31482 2231 2333394 WABI_20200806 7243466.411855002 618.2769895501684 0.12281701237328416 1.0462143397037875e-05 1624533.7899303571 138.38559605999575 None 7646 775803 XZC_20190909 42815169.75171358 4122.124794979086 5.136721270732915 0.0004942407653629412 9976174.124674466 959.8792059958449 60788 4047 177313 MTH_20190524 9791870.325637091 1240.5965697432766 0.02866942376711096 3.6323181985848145e-06 4253110.496802067 538.8545923915171 19422 2007 2077678 ANKR_20200806 38213577.353685066 3262.07740862097 0.006554061659762694 5.594783309725886e-07 12182919.137719631 1039.9778975823947 22668 None 5159 WAVES_20210218 1147720402.348668 22006.85764219251 11.477204023486681 0.0002200685764219251 178930276.8318272 3430.881878598755 160971 57551 101997 CFX_20210427 0.0 0.0 0.943988798519281 1.7511720621046863e-05 10818675.898799615 200.69478591971063 None None 146617 VITE_20211230 59603296.29581483 1285.1246128253113 0.07821580663666457 1.6807608904013431e-06 1937634.1913541278 41.63736089638222 None 2915 156048 ETC_20220115 4241210536.880708 98334.36354834975 32.05982574792106 0.0007433214015146368 485545668.06025445 11257.593516562167 606789 62930 203643 QSP_20220105 28595081.594751246 618.152694133586 0.040003287683569935 8.710105895006798e-07 321431.40846977517 6.998678778351547 73197 8667 122179 MTL_20190316 15492900.26803447 3947.9800707580603 0.35852964399095216 9.136235725809892e-05 3163999.835535253 806.266617513036 32782 None 615522 ZRX_20211125 987624865.8126233 17274.585498013395 1.1641713401552405 2.0353020537591406e-05 176441474.21731365 3084.6979517199075 None 20736 52689 TVK_20210509 106633931.48985648 1818.3396824522663 0.4870357723244106 8.291029361169714e-06 14604845.379664566 248.62486235915793 47310 None 59216 STRAX_20210902 239279623.3210352 4919.857052792481 2.388060864576356 4.908363648884974e-05 22584763.995799076 464.2018813674247 157472 10831 257847 AXS_20210617 230262003.1329584 6020.005343890638 4.188473918961249 0.00010936278954177014 32869761.522311926 858.2430931178566 96756 None 8042 MTL_20201030 19206339.088833112 1425.8492277371506 0.29703450394905984 2.20732342290473e-05 2395237.2327911113 177.9949190098144 40831 None 386925 SC_20190813 96910016.51017597 8516.05763076403 0.0023187838816316657 2.0376528536849927e-07 5641042.875049072 495.71187738353507 109464 30727 197380 LTC_20201231 8556679209.7351265 296758.09288953047 129.244151372546 0.004482375339583381 5932640524.567994 205752.61088050532 137172 218992 151901 BTG_20200807 184100113.81088558 15647.695437843275 10.514240228856444 0.0008930090985089908 10975146.46317346 932.1553850542601 76478 None 236149 CELR_20200330 5446675.58588917 920.5263416364851 0.0014475895297631305 2.4524254501369034e-07 3842461.0894124573 650.9683285964238 19246 None 1309255 AKRO_20210110 29629506.885467894 732.2135080112611 0.01259762012218605 3.1251884102655917e-07 6795594.114585146 168.5835242036592 None None 214700 WING_20220112 28432042.859591506 663.2343823020161 12.704321864001718 0.0002969479074889079 1550293.3401155889 36.23620121320721 23465 None 234136 AE_20200314 31623275.032328077 5743.929387864002 0.091611240384494 1.654360874820336e-05 25069761.91633776 4527.221013642118 25446 6341 460321 WBTC_20210310 7146133399.737201 130743.45273132004 54695.9567426529 0.9999183558251737 428515608.44248396 7833.862832955904 None None 145424 MATIC_20200403 31740389.13825934 4677.293430779435 0.011537449057245583 1.692426235598713e-06 21342034.953552004 3130.659099532294 33051 1612 187719 MKR_20210723 2203539321.832121 68074.80162810873 2445.9481793150103 0.07555135819886849 59531901.843452215 1838.84355297099 167894 29026 30327 XLM_20200901 2007989998.7945578 171873.11074736415 0.09729589377054086 8.335253165421358e-06 190688756.74669904 16336.137134745506 288196 111200 46719 XVS_20210828 356407327.81051546 7266.987864807893 33.2531132441339 0.000677880335192579 25442521.60176722 518.657755288308 122602 None 17193 XRP_20210206 20535328839.092148 541491.3015375888 0.4509005614736691 1.1862229098969243e-05 6193490021.851766 162937.47189240518 1118344 255659 11661 POLS_20210602 126097525.49223436 3436.7713359161344 1.8740241197693446 5.10885059211141e-05 19386371.530500073 528.4994714191683 374395 None 12514 WAVES_20200319 86384192.78769429 16033.41808685849 0.8638419278769429 0.0001603341808685849 60084308.24085692 11152.003664061202 141058 56865 60056 SNT_20201030 85910260.47764243 6377.846292840084 0.02212440277425592 1.645333256313759e-06 6448571.985721338 479.56322491952125 112644 5699 118374 FXS_20210724 109699448.64380342 3281.3053281003595 3.4334498497910393 0.00010264751029219528 3372210.202939673 100.8166703045809 12771 None 120117 TROY_20200127 5986199.154042068 697.554527079338 0.00508701480485766 5.922345827524704e-07 1628000.607036445 189.53321293822648 None None 323346 ARDR_20200410 35602960.24875652 4882.837762373872 0.03563861686312116 4.887727958635126e-06 2685360.1331275767 368.288978556681 64051 6365 1047061 ARDR_20190513 73014549.21304813 10522.163553059458 0.07322553564979492 1.0533642958818418e-05 712462.35821129 102.48916633246284 68727 6557 1327077 RLC_20190213 17094192.76281583 4704.424460251179 0.2443322127092384 6.724057887024781e-05 245564.05020919652 67.5795823346409 23844 3259 451476 RVN_20210707 490507860.68667805 14360.701904342102 0.05364000475656032 1.5703778610075427e-06 24427424.099834315 715.1432253206566 64610 44300 58646 BRD_20190807 15999252.57462468 1400.1219296619847 0.26615409171587345 2.3242292025426985e-05 362568.8781386317 31.6618530667772 168 None None SYS_20210105 41080789.3134119 1313.060243540614 0.06789597291413677 2.170150676753367e-06 2198022.8703935477 70.2551361291526 61076 4489 315243 THETA_20190126 39221122.11155406 10998.807342702758 0.05518222940774735 1.547563761005538e-05 5409895.894389985 1517.1838700295732 None 3811 514220 LINA_20210814 156348332.4890176 3277.692539830834 0.05612508862530019 1.176322593873724e-06 97527969.01621412 2044.083248657419 42344 None 101818 STEEM_20190929 43648249.417656764 5328.7561845429755 0.1345736415509931 1.6429298637604373e-05 211541.79217696926 25.825884162408776 10942 3782 219044 QNT_20211002 4132997011.935307 85829.48103336628 309.18204230858765 0.006419749711674734 75930071.36392173 1576.585917171294 51796 8735 93840 POND_20210519 104216715.41569015 2434.899839131244 0.137103109709181 3.200012569032921e-06 8293895.404369013 193.581090877678 17352 468 90153 EOS_20190228 3624797813.6544843 948611.8183760928 3.5000619326233844 0.0009180074202236793 1655189082.12383 434128.277874218 671 63104 78671 XZC_20190220 37169922.71696448 9495.094564690022 5.461316708783347 0.0013949677605089397 1410767.701896635 360.3481663218742 58717 3928 292752 KAVA_20201226 63644905.12801322 2577.1470369068356 1.3543935621646122 5.4926829135306876e-05 10017525.439516902 406.2562932561105 50968 None 82278 DOCK_20210825 69445281.41531603 1444.6857993852345 0.10035588519225118 2.08973920193207e-06 21549203.302592725 448.7252025684801 53130 15167 293388 ONG_20191102 0.0 0.0 0.15725031194735317 1.6988429946903482e-05 5275159.70291291 569.898272136131 81871 16288 359928 NXS_20190605 20003047.51984633 2604.0717875124888 0.33501516901546863 4.361353184590204e-05 440057.23925291724 57.28830271948273 21324 3515 793300 OCEAN_20201101 148123584.14620757 10734.905171773507 0.4267095260229903 3.096421391907884e-05 21207646.627895135 1538.9347245812257 None 1121 94489 GAS_20210724 83223555.28946966 2489.7421547956674 5.988320162954333 0.000179090668627141 11250133.473252289 336.45394218123033 None 112383 108336 SKL_20210806 335719379.4275281 8193.98656945468 0.27631427498701266 6.753225288820437e-06 42123019.2426135 1029.5025068974735 None 2358 190534 MANA_20200417 37143326.38809903 5231.424699282802 0.027818790588635303 3.92429393421826e-06 20887250.93200767 2946.4872627661366 48076 6826 45768 ENJ_20200801 160415755.64368272 14153.948408268447 0.17445026214317777 1.5390148023464075e-05 8617262.006746676 760.2220610706651 63321 15729 104408 POWR_20201030 33643223.455306485 2497.621434280924 0.07811363094692736 5.804781765920979e-06 665064.5587164224 49.422291305602506 81277 12615 227692 WAVES_20190520 256350458.2249904 31323.28798053202 2.5615582808380073 0.0003131119423283078 39871846.07229016 4873.733016851703 140021 56798 43809 NBS_20210429 0.0 0.0 0.030673387840066253 5.601868855466607e-07 5841044.2875508005 106.67476396295353 None None 497911 OG_20210127 0.0 0.0 3.605437983834986 0.00011069221351442671 1864874.602863051 57.25437482027601 618221 None 397078 TCT_20201111 4735084.33171967 309.739358477885 0.008169539691619597 5.348430798766576e-07 490356.77818325366 32.102656867064326 None None 556136 COCOS_20190915 19382606.914929137 1872.0463841449298 0.0012333657011863411 1.1912318148782445e-07 1857721.2704270189 179.42583277450422 10036 125 186264 BCPT_20200403 1770859.9968616583 261.3572348755332 0.01527715690620831 2.2410032776862086e-06 138517.3234262159 20.3190801613305 10639 3166 1858149 CELO_20210201 0.0 0.0 2.809014694122295 8.473145140440791e-05 15093798.71758614 455.29112938537895 None None 140742 SCRT_20201018 24431544.546846837 2150.1203287180315 0.43288910399764485 3.808768760033943e-05 371139.1539812661 32.6546268375691 61729 None 458890 FTT_20210120 959871676.3673708 26506.39231830477 10.667157485025871 0.0002959655748367602 22220448.049989816 616.5173514572567 48711 None 4837 NKN_20210509 419198826.15433216 7148.248683922333 0.6503938609520716 1.1071947696454423e-05 47477799.46620044 808.2359689911963 None 2832 131546 UTK_20210814 290694038.2043706 6100.953510828136 0.6415926083403992 1.3447597768885106e-05 472325270.54684675 9899.80272812611 78357 4032 176037 DGD_20190603 71427841.90073872 8167.828852759816 35.713938807338764 0.004083916468338142 3228401.9483060353 369.17025462318105 17012 3365 471901 REQ_20210826 203136208.00289756 4144.202644657149 0.26314798304773734 5.369188981128524e-06 12254876.610705558 250.04466194731765 None 28265 270313 TRX_20210731 4535158363.86432 108700.81401048938 0.06320278345011306 1.513062458784973e-06 944668927.5380521 22615.192119927615 1078326 114699 26301 WING_20201106 5015420.610046684 322.92262646524654 8.060133988255666 0.0005185001724353282 1936563.8370846645 124.57717017154992 6415 None 218127 WING_20210523 35135875.35516228 934.8274548008046 21.79898260687469 0.0005800948396896048 7304417.864458054 194.37857199685953 None None 323805 POWR_20211104 162677643.7677198 2584.293855973058 0.37940421813618763 6.020514775940158e-06 18175680.129775703 288.4178550297446 93736 14622 262348 STMX_20200701 0.0 0.0 0.0019467940751949056 2.129810241622165e-07 1032045.2992228456 112.90668469302625 19577 64 256849 SNGLS_20190405 10720063.792028496 2187.423503148558 0.018141000659951834 3.7048889180455794e-06 538004.8044338517 109.87530815775565 None 2183 3255572 ZEN_20211207 869079022.2696851 17218.232807347376 73.58648031312148 0.0014572152928575177 57651788.79237111 1141.6644461231895 None 8936 2237241 MTL_20211202 189248848.81799367 3310.39838169483 2.9289133957282214 5.122033140041956e-05 8051571.510274123 140.80449140350237 64446 4485 175729 ICX_20200518 151054886.55317616 15511.623094095534 0.2780796936819073 2.847319711975675e-05 37126413.667507954 3801.4559089445793 112592 27674 112473 ARDR_20190723 77237640.5364964 7463.2454687121035 0.077348548743699 7.479032081572565e-06 5453987.508104014 527.3602182345901 67702 6564 883304 DOT_20210220 33723084919.03054 603738.8643136056 35.02642927738189 0.0006269395899891945 2809304671.1877484 50283.86721242243 185067 14999 20426 SKY_20210429 60152961.46390886 1098.9533336479133 3.010448453000817 5.498509118454749e-05 1984705.426229863 36.25015028140911 19172 4310 267586 FIO_20211021 71088681.9872927 1072.492421244516 0.1969506948235477 2.971694687647226e-06 3783206.966337587 57.08299762134788 None 532 544451 CND_20190419 37409385.13036811 7094.98160625669 0.021594054242285162 4.094852746262135e-06 511135.2260369587 96.92591583613925 36819 6199 608018 SKY_20190915 8185947.397920083 790.6301404313914 0.5173594525613571 4.9978394324071485e-05 274537.21701960353 26.5210758611039 16355 3808 477504 MFT_20200314 4985810.979923172 899.9323243328155 0.0005353385870955997 9.64559586659459e-08 1005416.1154155942 181.15334408592568 18410 2507 867921 NXS_20201124 10901491.85713631 594.4392779632472 0.18287998259380614 9.969510113213738e-06 94469.45927030605 5.149903320348671 24968 3514 510508 AKRO_20210401 209553091.59489667 3562.792002173502 0.07717866493309049 1.3134194458040294e-06 132608871.2263165 2256.725615890906 34897 None 141673 XRP_20210707 30723093719.801144 899486.4829924877 0.6662899993882386 1.9499736146783736e-05 1937393189.3106942 56700.01956928852 1910402 321839 12075 FIL_20201228 996416285.4536161 37652.393496317985 22.26786214815625 0.0008467411920278144 90932583.26916578 3457.734893418007 None None 31616 WAN_20200626 23647537.628644772 2553.477980464709 0.2224866464914909 2.4044420422311686e-05 1121046.548537422 121.15295435066083 103932 16131 676910 SKY_20190623 28661489.262693316 2673.405780041706 1.9044190887240695 0.00017754318538706698 1423057.28011847 132.66729156225958 16157 3770 427664 KNC_20210325 492457971.48580766 9316.377907069558 2.397959917215041 4.545383996106442e-05 140171806.87547234 2656.9863954067037 150203 10300 96542 BEAM_20210206 37982953.59112135 1002.3631514276959 0.4709403346746769 1.2340696695643813e-05 12033731.060000751 315.3363901841277 16338 1682 285375 ADX_20200520 7563912.480393841 775.4357685062736 0.08217819112799583 8.418027121447308e-06 799581.4971162687 81.90614366345137 51504 3750 26669 ARPA_20210430 90802938.34199706 1694.3705808874406 0.09252645415545468 1.7264241747577622e-06 25514643.480396442 476.07030569738015 39560 None 501259 ICP_20211021 8192076726.140631 123606.3214180646 47.056075268961365 0.0007101662097011264 348937187.61897993 5266.129793841844 319756 24033 22760 FUEL_20190220 4447621.419672186 1136.042610642493 0.00838316235700173 2.141286038277526e-06 2414425.1578298155 616.7093825409407 1 1510 None CDT_20200531 3097678.505925805 320.8987411798259 0.0045920161466843626 4.757021098637347e-07 157366.05428100273 16.302068993475935 18912 290 292378 SNGLS_20190821 4347213.532964602 403.9957832924044 0.0075327220012072725 7.000318484761305e-07 150842.8438071933 14.018145733085872 10 2166 None JST_20211104 122074474.03587006 1936.0311856148521 0.08493683885915723 1.346805339655754e-06 353249066.6343204 5601.311934394194 54111 None 192359 SNGLS_20210729 7471068.375238282 186.85707124714185 0.00840359503910256 2.099779134552552e-07 97023.51040588843 2.424295099458809 9467 2136 None MDT_20200713 7442023.760497513 802.115097809724 0.012320376432200724 1.3270932571441078e-06 11761621.424416501 1266.906784165255 14071 64 566162 XEM_20190228 390143404.6985632 102084.25513264237 0.04323742969170883 1.1334232213623925e-05 13688495.775983047 3588.293543035312 214910 18485 136957 DASH_20190819 852205076.7391607 82596.90502385248 94.76700379323921 0.009184627889460478 217591071.49123073 21088.490125489454 320177 29880 87828 WBTC_20210420 8592739742.9819 153565.37641907056 55928.61629453733 1.0000820264209829 285531090.8906148 5105.6959907654755 None None 239911 FTT_20211120 7332873113.1041155 126143.83416210908 52.70811370477202 0.0009036033171073348 178834407.33563888 3065.8536669806354 318038 None 930 ANT_20210114 114556879.5205912 3081.7790964911187 3.3066240357546013 8.846975469646622e-05 29557198.962926902 790.812052864075 76617 2694 131856 WBTC_20211011 11426101367.239876 208829.41358782086 54708.43312067403 0.9999709538210301 434630705.92773974 7944.2611819608055 None None 275397 EVX_20210603 12539662.225990767 333.37192604961007 0.5752138635775581 1.5292290185761927e-05 281802.1828571036 7.4918235253050725 18174 2812 922475 BNB_20191012 2576943773.434511 311689.2198306061 16.56807401757623 0.002003959154200501 183367679.45360887 22178.88086664397 None 56803 1637 GO_20210210 24608464.66260437 528.3435754614893 0.023094516156736935 4.956492385298982e-07 9705141.668345284 208.28953700928224 13436 701 754202 FTM_20210902 2226922547.9737263 45779.82776397133 0.8763331149492368 1.8011942951437447e-05 752330868.7796284 15463.230200822663 119308 10509 51149 DASH_20200801 779486034.575727 68775.18505301375 82.42593754641501 0.0072716851452535435 268898125.91845137 23722.41755487031 317191 35150 74768 REN_20200520 77640246.37035182 7961.494246440246 0.08853669511836498 9.06936853342107e-06 4900493.922913511 501.9883035308144 12167 879 400115 RVN_20200621 134519191.3536931 14378.931454395492 0.02093013375475441 2.236093352532781e-06 18359495.833641972 1961.4564852044741 32048 8166 198358 ANKR_20200801 30171097.796964064 2662.083658338385 0.0058505934420485135 5.163364419037118e-07 9094713.35469291 802.641984990173 22181 None 5159 CND_20210725 19099353.10555661 559.8202027284935 0.010246978886355628 2.9987347231702267e-07 91756.21134538384 2.685206440644939 36101 6252 140212 LTC_20210916 12616239375.27891 261713.0246222279 188.99992857014865 0.003920640809685425 2990353969.084617 62032.31871723408 196545 342860 131752 GVT_20210527 23070782.4352733 588.8487045387369 5.191127340564989 0.00013242404347439232 1704677.1030258657 43.485782565358804 25840 5643 252863 ZRX_20191127 148104246.54998395 20657.593537166398 0.2449175096909924 3.4221504310448744e-05 21081259.59825412 2945.6138808595574 151353 15997 134222 DASH_20200707 663608552.0564958 71026.1152004143 70.19094062613416 0.007512546092855081 287375477.3589576 30757.83712765306 316581 35109 73217 RVN_20210128 122767100.55626072 4056.1642849333675 0.01532927182302451 5.041343076528917e-07 11953297.387081014 393.1085163063046 35462 11387 190837 LINA_20210930 96862176.55946204 2331.4824179061648 0.03274871295251689 7.878615877264523e-07 10062444.448084496 242.08015352456124 None None 123686 APPC_20211225 3857612.251925615 75.82255398805832 0.03304545435887242 6.500564928472157e-07 6739735.995586047 132.5812953402617 25519 3101 1055977 DUSK_20191015 13231860.589324662 1585.405421033686 0.07658606821055616 9.176333660485497e-06 1818611.5005275595 217.90106631086832 19795 13331 172815 ZEC_20190810 419478302.7097951 35374.306468353905 58.61847136035941 0.004941823886679987 201283193.97005165 16969.157892798783 95 15356 186923 GVT_20190321 18123285.088224597 4487.988975499033 4.082898036232093 0.0010102570174242197 767389.5359432931 189.8799962440594 20994 5803 155921 XRP_20200113 9309701295.480135 1141290.27101662 0.21474449708822158 2.6294933125107364e-05 1497339722.9534612 183345.54977887517 942685 208511 28405 PPT_20200314 7846309.5979154175 1416.2485626351822 0.21913212186445388 3.9390578723389646e-05 1712869.0714033868 307.90056439881124 None None 1098941 OXT_20210527 287070852.89351773 7327.072686478466 0.4859198356345527 1.2403525700239892e-05 87383301.688481 2230.5346453896004 64977 4184 89170 GAS_20211225 90547363.22331482 1780.8137708348393 6.476113950953382 0.0001274003574776815 31795883.49914001 625.4996367864732 432229 115656 78285 OMG_20210220 915438244.3903595 16388.940909305315 6.529930892731936 0.00011687951872361506 520037121.46410024 9308.167187923926 300606 42657 165404 STORJ_20210304 99620019.01342545 1960.2227980356568 0.6921888300398602 1.3661205925666642e-05 58128942.226222716 1147.2468429574026 85859 9016 78580 BEAM_20211202 63860307.66267315 1117.2779456721764 0.6256160470415171 1.0943374298886392e-05 5014199.567544254 87.70916752605233 None 2904 266564 ARDR_20211225 252795734.63557535 4971.7861395595655 0.2531553972171841 4.979441154062219e-06 8124112.563758324 159.79726636247338 76246 7434 None TNT_20191216 19702309.960588153 2768.641005752111 0.045969968466965855 6.465355356995755e-06 1248852.3970407473 175.64237706855465 17757 2565 526741 QSP_20190325 0.0 0.0 0.020702793072451656 5.1881846615770834e-06 281810.1694522089 70.6225094126996 56840 8556 1062367 CTXC_20200719 1151693.84705821 125.58879649914958 0.1143612040061628 1.2475588293811518e-05 4516042.401050081 492.65208601564495 None 20062 581849 XVG_20200207 74543025.51478997 7654.900799304338 0.004610158101549043 4.7342192905042797e-07 2821315.5074298433 289.7238230373333 297629 52061 319364 SUSHI_20211111 2132791242.19187 32842.24848354996 11.092292100717325 0.00017076545415748812 425373889.50097835 6548.61635159015 None None 4019 STMX_20201229 19595646.299832594 722.6460483277416 0.0023770881512106498 8.752183553184147e-08 770944.3320794515 28.385343220064613 21791 148 202017 STEEM_20210825 228051968.78208375 4745.667448290054 0.5863841083685557 1.2210443426414722e-05 68644510.89158428 1429.4042161333334 14237 3925 204602 AST_20190228 5313623.493659535 1392.0416079622487 0.0318833598339638 8.3625142342557e-06 1161254.3176612759 304.57912251420396 30521 3596 387473 ADX_20210324 129817481.97001047 2381.3406416255984 1.1302399354316004 2.070258633116837e-05 8790402.599788543 161.01366002286554 None 3805 10456 POA_20200410 2084906.6723731514 286.06899917538067 0.009473852295044615 1.2993236602006096e-06 23914.42424187852 3.2798249613624 17322 None 691851 ENG_20190522 36018013.06176223 4535.093976079697 0.4644872890865745 5.848444507724463e-05 1604778.5914337724 202.06061090802672 61919 3409 370110 BAR_20211216 25736069.500407826 527.4182890575522 8.742442685130857 0.00017889420447745827 2167314.268526583 44.34915685294012 None None 37465 CRV_20211007 1080403147.6284344 19464.758192123416 2.739501881708171 4.938344599332157e-05 205778665.90086365 3709.455248761019 173544 None 15184 AERGO_20210814 55207997.5278016 1158.6802000604916 0.20856207484607608 4.36981395512934e-06 9834109.593751082 206.04527151333772 21538 None 411041 MITH_20201129 3658953.153462275 206.69513322929782 0.005921562235057095 3.342814237404343e-07 538802.5006591884 30.41624150616111 None 2107 756695 INJ_20210626 160863310.2895186 5054.850660869677 5.556429712066638 0.0001747900665428782 11994115.79641051 377.3020458847545 74627 3698 117778 BTCST_20211204 207843837.0672772 3870.8349350532576 28.531955368337364 0.0005311587536940928 16855218.88658869 313.7814054965448 67556 None 2237027 YOYO_20190906 2070060.4575811054 195.8603962847194 0.011836439232694184 1.1198627248383756e-06 283753.0548115673 26.84628906510813 7550 None 893009 WNXM_20201101 37760785.98474689 2737.0565703421203 21.117659207689105 0.0015324047795967413 10934547.156108625 793.4663667006126 14379 None 69573 FTT_20210506 5125805293.816555 89537.33681327444 58.474041858337344 0.0010199939578512775 114268309.88488741 1993.2431888124083 112039 None 2794 MDT_20210401 50700564.15770378 861.9714629018902 0.08347138369086508 1.4204223360154076e-06 18876846.624283668 321.2249922437063 28748 180 473757 SNM_20190603 14367644.036014745 1643.4296385445866 0.0352034730220634 4.025544311790098e-06 6989574.015580574 799.263183567763 31438 10005 15012322 MITH_20200625 3696161.743983937 397.2730136928183 0.005984858019169914 6.436526033873083e-07 3669562.864902867 394.64991211532754 98 2095 706038 SKY_20190419 20827239.512228955 3950.0483831371876 1.3894035245500593 0.0002634166922104157 622852.73912262 118.08650645751706 15519 3684 401033 WING_20210429 65450785.45069099 1195.7124424689262 42.505984861267976 0.0007763494976480177 8345472.4376823325 152.42567266177645 None None 321336 MITH_20201030 2764111.838292491 205.20343370902717 0.00445539617787674 3.3133874764567067e-07 604927.2412766494 44.987207992101624 118 2108 407878 CHR_20210616 87640972.71295369 2170.053315658902 0.19490541562475214 4.8290969414846145e-06 29441958.165952854 729.4721374199975 None None 93255 FTM_20190905 39707975.11675978 3759.540399660155 0.019099488893431868 1.8083344692489812e-06 7174095.668573184 679.2414475359103 18804 2130 342679 KLAY_20211120 3895288604.4724126 67008.74707050786 1.5445659704093806 2.6550816614267108e-05 20758406.654354867 356.83334920170324 51397 985 36667 FTM_20210731 640946028.9045565 15355.676301236934 0.2522781827771249 6.039491090322835e-06 55305529.44028439 1324.0037193199234 103803 9348 44934 NKN_20200801 14328464.48928518 1264.242071093816 0.02200186648480416 1.9410230620101785e-06 1450382.2217552592 127.95393259480446 13069 1011 209272 DOCK_20210318 52986790.503347546 900.3472126430086 0.09553458943815131 1.6211739572184192e-06 24902082.06458545 422.57581427884384 None 14878 189285 TNT_20190905 13250981.321892556 1254.5993460585805 0.031080358703546085 2.9424405720053873e-06 693561.1655976184 65.66084170029032 17514 2535 571666 VIBE_20190430 6925064.838909577 1330.3085400566267 0.0345907085702982 6.6448930209472795e-06 260750.2636913204 50.090260622772796 20748 None 1228963 GXS_20210318 51407986.51187985 873.9450746259639 0.7368506994285254 1.2511437169387966e-05 10505023.229696408 178.3711927032739 None None 480247 NCASH_20190205 4812344.835842941 1388.7447683311784 0.0016582971773459946 4.786164842987908e-07 313663.869269143 90.52943007562634 60561 59696 643651 DLT_20210110 4253969.168199281 105.12539745123583 0.05163906138692795 1.2818967798735686e-06 378432.7653066358 9.394278869833 None 2534 None COTI_20201014 22173735.11378665 1940.9097977983527 0.039002165939485495 3.414652166704608e-06 5052422.35778447 442.3412017138639 32058 1200 145304 TRX_20190621 2169479954.444879 226794.4841093552 0.03278119512357904 3.429919372213527e-06 823037810.2324644 86115.02169882819 433755 70981 93718 ETH_20210821 383483277312.2806 7804833.573334434 3276.9698366433354 0.06662576837606286 22079051284.799744 448900.6094639827 1510681 1072840 3885 SRM_20210703 162469823.8725632 4804.21059398534 3.2556288763835726 9.614589999982462e-05 36055327.90822528 1064.7933419781746 94789 None 25633 QLC_20190616 9425672.994333547 1069.0056146004893 0.03928824600426939 4.454082551527337e-06 329441.414865435 37.34855604251605 24984 5791 940522 POWR_20190805 31428238.151245758 2869.9178718222897 0.0744468171391881 6.797832600223566e-06 779636.0477960156 71.1895490724402 84349 13119 515073 STEEM_20191024 40626019.42083172 5443.981633226945 0.1254367379666324 1.680145830868832e-05 457036.35564593633 61.21713143547081 10808 3786 220628 GTO_20210112 11119337.959582971 313.62989195798144 0.016910198218408678 4.75717447165756e-07 26489642.849396627 745.206242404026 16514 None 786393 CTK_20210301 56363444.85297292 1242.432773934516 1.5587862730786348 3.453509635391439e-05 6376087.024585806 141.26297078567225 None None 216744 NAS_20200430 13479440.361330021 1543.9453625147398 0.2965433502759031 3.382360606741078e-05 6006567.205654314 685.1064533817968 23496 4942 1034510 ENG_20200701 18734355.01500043 2047.8692838310324 0.22539460297519906 2.4643523640361094e-05 795055.4939186563 86.92740909124277 282 3568 584808 ASR_20210722 7100380.584149493 221.00387391428475 5.798686441616549 0.00018019000731196833 6550991.175063614 203.56733539920052 1990017 None 109290 AST_20200530 6166456.317172672 653.8217960392925 0.03719690405273625 3.968005458175738e-06 4620945.063978359 492.9425096723218 31717 3453 343534 XVG_20190329 111795624.21820001 27767.979554772224 0.007072162821201786 1.7565826730111344e-06 1952325.6286330565 484.9183281034287 305090 53282 418037 FOR_20210408 42507404.1713134 754.6560393806719 0.07539525074205876 1.3397059113326578e-06 15990003.348642051 284.128002726499 23778 None 123033 DCR_20200309 187115430.11916745 23162.16032861308 16.64159518795103 0.0020686737138077642 92384315.07601564 11484.055585263783 40877 9740 216967 ENG_20190902 25888735.066930354 2658.549892003933 0.32961403016901775 3.384479889175148e-05 192048.71797332267 19.719580000562615 61544 3472 285692 AVA_20210519 220065635.25096345 5157.556672399922 4.233562040349377 9.895921606047249e-05 7707438.797070328 180.16084184494596 None 10086 42343 NULS_20190626 66451778.58445354 5619.851819228864 0.9350900607204536 7.899228641550488e-05 11787447.013375495 995.7515641549562 21180 5315 640711 GTO_20190906 12196682.613979071 1154.0178278497367 0.018404972277299182 1.7414009096397883e-06 44395012.2189677 4200.468954627763 17354 None 900303 FIL_20210624 4737419355.834323 140476.66966692058 58.41520431506102 0.0017318031306156867 991190027.26369 29385.260436515055 93367 None 24500 DCR_20210206 971414272.5429735 25455.302977082036 77.3227246486597 0.0020256949371701685 19653234.63587789 514.8739659887983 41973 10311 288064 AMB_20210422 10352005.524255307 191.05488150084912 0.07193841448178148 1.3283227358343188e-06 4318430.116510526 79.73860625362124 25332 5622 373333 ASR_20210708 6230684.992706885 182.95331139718056 5.051435443904588 0.00014871295127938145 3402875.310326773 100.17976788064715 1981021 None 120026 UMA_20211104 768678053.4462519 12221.14725453483 12.083592999513497 0.00019163885870572206 32448004.33414787 514.6067496749334 47038 None 263701 ICX_20210430 1457801499.620926 27200.69383308702 2.372675996552432 4.427107076245933e-05 148258395.8075083 2766.3102511509983 136566 31469 432969 NAS_20191026 21422232.704028804 2476.781328923614 0.47068291032782716 5.436538027045193e-05 4580614.894376013 529.0756582426216 None 5066 1447881 REN_20210210 774880615.6235621 16655.794056702427 0.8754302752254758 1.8795498338058192e-05 198742299.3836017 4266.999512673062 42989 1032 83739 MITH_20190625 21442163.074549668 1941.5036963016798 0.05061801277526563 4.583337871184815e-06 8627846.387059057 781.2304933451693 75 2076 556863 DIA_20210727 62832596.73317423 1678.2931755075592 1.2907215636123734 3.4592641761949806e-05 27471847.236309696 736.2732573592233 None 401 454629 DOGE_20201101 325251670.1167678 23601.915769020452 0.002562899585809585 1.8597703165373175e-07 59252178.201375104 4299.639471606052 152052 168202 144250 LINK_20190507 208770483.8051528 36494.239297083644 0.5722191655734097 0.00010003112637712134 13274340.000440573 2320.522034291421 11714 6659 419208 AUCTION_20220112 147005380.46182337 3429.195122811203 20.38291576416772 0.0004764256014201578 3361180.785238801 78.5634693101358 None None 86380 REEF_20210427 444867474.9869061 8257.733751544274 0.03499821448976488 6.492438843994597e-07 86232836.90274718 1599.685664247175 None 10010 32523 LPT_20210724 288395669.0718116 8627.735886205803 12.06626590599287 0.00036084614195768715 10338658.490776746 309.1814036322529 14204 1203 114263 XRP_20190224 13704367044.414268 3330527.693564635 0.33129836333034973 8.051436234365159e-05 644852641.5168257 156716.43745965426 912302 197616 30397 TVK_20210527 57071355.10609056 1456.6646629682687 0.25773206912034513 6.574214703025625e-06 25020169.218341704 638.2130283934723 48707 None 56079 PPT_20200626 12588755.073373737 1359.342752134377 0.34730334599656215 3.753351765699245e-05 4274759.0934715485 461.9786931617745 23695 None 1787425 UMA_20210207 1688726725.3512201 43046.67446073966 30.11187304274034 0.0007654548781980819 205448131.29026574 5222.566995071998 22298 None 180078 THETA_20190805 127040707.6301949 11611.82227430793 0.12713605174002088 1.1610657666662766e-05 1621613.1428330028 148.09328126451706 None 4019 242693 AE_20200113 47418949.46781932 5816.782267027304 0.13824041327732212 1.6927197071881406e-05 6748781.993193718 826.3716816643445 25296 6354 371548 XZC_20200313 24461392.073036436 5090.61655625303 2.5012069233274046 0.0005219467463973454 16011014.092210168 3341.145682114857 63725 4092 107900 MANA_20190419 75446642.09964482 14309.0440028717 0.05704278538526134 1.0814728460920073e-05 6242866.438834722 1183.5836012880436 44286 6178 119897 FIL_20211225 5149825194.370931 101317.10339481631 36.42301281868787 0.0007162728352545416 438864869.58189833 8630.449820113625 None None 32648 UNFI_20210207 40622746.02369186 1035.9636906317714 16.717866293102666 0.00042513689270593587 77272809.68406211 1965.054727904658 13759 None 111570 REQ_20200113 8606964.49402376 1055.7981356324092 0.011153851609934443 1.367968067841599e-06 26736.182664794218 3.2790685603924374 40068 28614 1668382 ZIL_20201229 1050735813.4285346 38748.91758058792 0.08995219118805624 3.3140402576347828e-06 616952539.6631802 22729.91381854498 111538 13616 50668 GRS_20200707 14054505.657486692 1504.2556863078821 0.18637246317805717 1.9947470536429604e-05 545768.6163791701 58.413690570427626 37390 106870 None SNX_20210930 1622364492.8125231 39050.47795519678 9.290242191087438 0.00022350031889264716 69943950.42753373 1682.6789768906428 None 7829 52479 IOST_20210131 293430745.3559399 8577.603083593644 0.015933430939453954 4.663743583671487e-07 107748871.90901726 3153.828650734664 202212 52221 229978 ARK_20210421 318945461.80853736 5645.19744068604 2.045179085085379 3.6278783583181224e-05 10678900.628612552 189.42963363795567 71971 22722 73958 TFUEL_20220105 1886178773.9046779 28765.286079276702 0.19558618811720585 4.25023898145868e-06 15155738.507333886 329.34590738106516 235999 27105 29092 OG_20210421 0.0 0.0 9.931861369639112 0.0001759341937620486 4679809.423657359 82.898710248622 650200 None 247445 DENT_20190626 172469712.77573428 14587.970249941107 0.0023869759455895107 2.0164120599854742e-07 4275743.529558983 361.19596572969664 45424 9678 252434 WTC_20190318 34964795.13360191 8780.185412857209 1.3110305563959548 0.00032923575581474287 4171909.561263716 1047.6809948421808 54629 20349 924295 FTM_20210617 707741004.9515963 18503.562372976536 0.27949905409824166 7.297836114507897e-06 74193304.20496373 1937.2179152038896 96705 8491 46901 1INCH_20210427 716218862.9916033 13290.92356802074 4.544625227637263 8.43063047343138e-05 153022615.4356909 2838.6875929195467 None None 71599 MATIC_20200107 39538911.01233434 5091.757376785871 0.015531090299231784 2.0023014320877814e-06 16572957.203360556 2136.62114525596 28354 1408 155878 STEEM_20201031 53086995.61303775 3908.285593157502 0.1447394515267659 1.0660067710654115e-05 1115999.1815499018 82.19339450900536 11686 3850 214889 DENT_20190614 137484200.70737496 16718.769214281325 0.001909359395284621 2.3207613911748267e-07 2432094.5232051667 295.6128156428572 45263 9563 248149 IOST_20200127 64314013.47432862 7494.326549989051 0.005365237848848381 6.243203293100551e-07 27758507.581474546 3230.089901446156 192814 52325 86825 QTUM_20190605 282446486.5283412 36865.765665321705 2.9513328923858824 0.0003849592295152167 310777963.76027757 40536.54733022982 177767 15303 454954 POE_20200903 6605389.105879252 578.9937534004779 0.0026239299442442424 2.3001757372295202e-07 159277.74461020099 13.962522301202181 None 10171 911005 BNB_20200612 2405200798.5210166 259224.01619905597 16.314759849959252 0.00175449440999651 210778571.13409096 22667.193890858158 None 64523 995 POWR_20190401 59259981.46353695 14440.77935085645 0.12267619572491163 2.988746879780192e-05 2649695.7907592836 645.5425178619527 85115 13271 630492 MITH_20200425 2346699.1870824145 312.9450037330966 0.003790745596577367 5.057015606813776e-07 2278010.7083845977 303.89630248970207 96 2093 1180459 OMG_20200404 75868059.54048853 11278.427121824214 0.5450156785544659 8.100528412742551e-05 156632473.0002952 23280.170604674156 None 42931 477396 THETA_20190122 33163705.545288462 9390.583492801188 0.046676953237453266 1.321785900216862e-05 1506188.4962549414 426.5185663020456 None 3813 514220 ENG_20200417 11599819.90593957 1633.658696914125 0.1407808489570586 1.985943385482684e-05 1146848.0591360254 161.78161547310717 60870 3585 458891 EZ_20211011 0.0 0.0 4.969828316318769 9.080011376903652e-05 1450913.8702446779 26.508590659903135 None None 194935 OMG_20200308 127237147.91709423 14314.99302896117 0.9135414310241347 0.000102640124068247 194377020.6958882 21839.05495985666 281907 42899 381601 TRU_20210617 87741488.65876207 2293.951845250747 0.26232894923621586 6.858612427656173e-06 2886546.303205812 75.4689957239351 26283 None 102070 NEBL_20200129 8062924.924220907 862.7185971602585 0.5020508703473863 5.3693001367464284e-05 299179.32207240217 31.996430437488147 39750 6031 670570 VIBE_20190614 8889634.96491432 1080.0207678839945 0.04750469532878703 5.771447053741455e-06 1283338.2124684174 155.9155046473128 20518 None 1515542 TNT_20190205 5921353.304774281 1709.253197432823 0.013819398247423972 3.98909665159853e-06 75918.29848256845 21.914516453588995 17021 2513 1261592 RCN_20200407 28044791.805833466 3855.841050920271 0.05533343170298194 7.59380453000475e-06 1927269.9020308852 264.493100502842 None 1134 866129 POWR_20200626 38728426.86900151 4182.7876929297245 0.0900109290930863 9.727597839449776e-06 1121301.530156345 121.18051054489557 81494 12728 221637 FLM_20201030 0.0 0.0 0.15271730718244958 1.134873170440052e-05 4558507.963923465 338.751938528718 11706 None 41270 ZRX_20190813 113115187.8006656 9938.196212379882 0.1886452034282898 1.65736559788118e-05 33558862.8384847 2948.355100566361 151359 15912 188207 HBAR_20190930 23060906.27947901 2860.9235004488773 0.03567410551413672 4.430525961910594e-06 13674976.964697985 1698.3562614236973 34852 6162 121771 LINK_20190430 156622684.00564018 30092.651897164113 0.42965828961507935 8.255179057686846e-05 5661626.671152087 1087.7886696892833 11584 6633 340281 1INCH_20210120 185924978.40007773 5134.434317204984 1.9180428985144014 5.3044288227755826e-05 208932211.08817303 5778.108734485199 None None 17332 OCEAN_20210112 160255861.09565288 4520.145766209623 0.38283321482479427 1.0769858359699873e-05 64570337.171592966 1816.4917740859548 36337 1368 63800 WAN_20190421 45622542.76685941 8590.568029599151 0.4298398890955927 8.092951353880628e-05 2258058.8523804625 425.1434292188397 109281 17153 455982 ZRX_20190531 196921088.57658997 23696.980300585405 0.3258684422212814 3.9217509291823816e-05 69997461.89124611 8424.031776172871 150517 15924 214794 JST_20210703 76103847.97465089 2250.380433536069 0.05317776388031133 1.5704566344583296e-06 85433693.04077372 2523.0453530189698 48755 None 109468 PUNDIX_20210813 454875162.800274 10231.34850801598 1.759800250952402 3.9583485100008825e-05 127404108.86456351 2865.7221989774307 156202 None 177132 ONT_20210111 524658016.0105509 13609.893371152843 0.6609849518939548 1.7193620496932847e-05 322640997.0289957 8392.57662942769 94799 16684 288289 ROSE_20210603 123791493.52447735 3289.448928135 0.08249352715210494 2.1921435743764346e-06 6801580.610943743 180.74195329764393 20901 1580 216095 GRS_20190810 17322501.061627284 1460.7941755126224 0.23782310605535695 2.0051078714544277e-05 1107190.73989143 93.34824124452442 38602 107009 None DNT_20210111 89304402.09859468 2316.584070477446 0.11741522743708206 3.061502109249149e-06 43144256.15298303 1124.9497539416056 60812 6376 301062 KNC_20190524 46970021.70225506 5962.374313372442 0.2825080807594233 3.592351908103755e-05 8972117.332196362 1140.8878192582915 96745 6683 226732 ZEC_20210221 1767120226.186594 31642.203143919774 165.44820206859148 0.0029420696551064273 1949904470.062665 34674.023047705305 72935 17587 114224 ARDR_20200301 47669288.84233464 5558.616189229255 0.04758884069898663 5.555083694662071e-06 2249510.165411668 262.58713297718623 64746 6396 1029538 LSK_20190812 173626860.25200003 15034.842856928186 1.2875948735718226 0.00011143944677647659 3416237.3228972754 295.67032700646115 182333 30787 180876 PAXG_20211216 325704289.71192914 6676.493585317771 1779.1526369832939 0.03645990029536029 9987945.53705043 204.68142579031954 None None 32401 RLC_20200907 70337359.48252268 6826.344388478038 1.000505045276336 9.725659882205296e-05 4106580.1644394146 399.19041035237734 33054 3834 240774 VIB_20210724 5809440.199229812 173.77070498449697 0.03198248723815649 9.565325881531312e-07 1099312.4725738359 32.8782497980817 32270 1279 None MTH_20190901 8940276.028899051 931.3459784513165 0.025724163275197897 2.6797937712367174e-06 8658579.221658824 902.000442841711 19523 1993 715962 RARE_20211207 192868542.85508332 3821.9002096779127 1.3309751618377663 2.637277730050107e-05 42222642.955539815 836.625950380245 None 3081 8715 VET_20200331 190892141.2434782 29716.643716929884 0.0029630367822193185 4.62175917644489e-07 99706124.2082976 15552.209721888781 118504 61443 276923 AMB_20191024 4036095.1820733664 540.7019351480263 0.027919043069511523 3.739579374869045e-06 902513.3452136819 120.88595883828054 19182 5591 589761 AST_20190421 7894909.773583982 1486.7778228348075 0.047416204783929994 8.929672669912409e-06 1465443.7519287507 275.98018610985645 31405 3591 448937 AST_20201030 20225040.134405248 1501.476034720297 0.11712467574791811 8.710323803171804e-06 11798688.404508231 877.444447975959 33941 3466 168306 CMT_20190511 26961291.32513799 4232.19611136964 0.033758110009845424 5.298231420900845e-06 4753497.315945845 746.0467671669699 292032 1639 877566 ZRX_20200223 174632654.99979097 18091.4155147872 0.27922190626693744 2.892607240512929e-05 45752624.57072309 4739.756091315468 152788 15992 118984 BLZ_20200315 1958433.6378523011 379.0561014047728 0.0090656370445861 1.749750949020749e-06 162851.47436395191 31.431825520515602 36099 None 543870 VET_20200621 535123276.0900544 57200.02349939193 0.008307149939065176 8.878636204294751e-07 197490052.44513884 21107.62827792173 122978 63220 234168 PAXG_20210723 306698298.5978317 9474.312242791975 1814.7243727823336 0.056054109466661964 6365832.027895181 196.6309874325026 23481 None 38365 REQ_20200901 29697847.948003683 2540.855870478402 0.03841718443992498 3.2905112178004855e-06 298959.51002912514 25.606499689150414 39565 27724 292019 QTUM_20200707 175552259.99400687 18806.21158716674 1.8253297973962164 0.00019544645557554135 391718544.4045402 41943.10595065531 179906 15082 112420 ZIL_20190920 67120886.80504784 6553.480865124144 0.007261340203421999 7.085179726596445e-07 11370040.59112295 1109.4202837217106 66268 10603 170382 BCPT_20200518 2041209.96466005 210.25697413742756 0.017572601488789898 1.8100842543021573e-06 96958.5188383012 9.987313966098128 10540 3171 4184037 AE_20190122 95329691.21498233 26993.407702126566 0.4189116796088562 0.00011862632694261958 16372526.15944102 4636.329650392927 959 6303 467648 ALPHA_20220112 240357065.18229106 5610.012882962798 0.538182275983094 1.2578516565552574e-05 11037630.326735504 257.9739655225088 94877 None 55254 AMB_20191213 2574968.5995845636 357.7199123202254 0.01780863985172355 2.4740127267294895e-06 535760.4468498507 74.42893870732789 19222 5549 826478 SRM_20210620 186594772.3220767 5246.455167509065 3.7386895604708004 0.00010496545840231208 33318731.26762559 935.4389671362186 92348 None 25883 NU_20210724 107043338.56394961 3202.398861299643 0.19315042484127365 5.7744866211001074e-06 8398566.336938657 251.08621422359286 None 7136 130828 BAT_20200423 239834190.60433468 33711.81630923506 0.1642950725225364 2.309381031718542e-05 81965936.8274335 11521.37899512173 None 37146 18644 NEO_20210711 2411816144.4170394 71521.5851410887 34.18613015274564 0.0010141492292910002 286709641.74409944 8505.389785445617 406559 112293 98164 IOTX_20190923 18547575.911840722 1845.661279442802 0.004501838813553573 4.4797603869970924e-07 570737.9043588217 56.79388270425819 22590 1767 600073 COMP_20201130 12679.558701335214 0.6972830327215037 1.3402957446656915e-07 7.371e-12 7.800416869456496 0.00042898646044052925 1942 None 2442703 HBAR_20220115 5228268020.650883 121281.34379686289 0.28187664722839084 6.535610856040087e-06 59497740.85037033 1379.5186115452502 200557 20146 30905 SNM_20200530 3466844.3300603246 367.58524992 0.007968075845178314 8.5e-07 116996.1100313845 12.48064093 29500 9623 7249686 BNB_20201014 4536387303.784849 397078.72937697725 30.68552818912381 0.0026854953083217743 406898662.76747274 35610.41684176574 1293426 74012 623 XVS_20210805 292587074.495896 7356.36312478475 27.70562289124004 0.0006967353090067777 28022152.927295692 704.6953412842289 119433 None 14321 AE_20200105 44999739.86240407 6122.8172312028355 0.131361011317744 1.7864421633051634e-05 4702122.855416084 639.4645139901944 25270 6352 371548 BTS_20210809 130806349.60445778 2974.2158516514205 0.04826453511599242 1.0974172572558303e-06 20359343.32308313 462.92157700166996 6441 7181 184072 ONE_20190706 39974228.68967365 3633.580351354189 0.015716932140493356 1.4286388426055223e-06 13171074.303463822 1197.225271482354 None None 175184 HNT_20210711 1166236937.910657 34584.35861396098 13.001332586063556 0.0003856912544063824 12845441.94062001 381.06667779522866 None 41391 2473 VIA_20210809 11884408.207463866 269.968653850947 0.5128169914064281 1.1649255934758082e-05 294833.6864643468 6.697502480157375 38168 2295 1212735 WPR_20200730 5259602.947876517 473.6708430266105 0.008635870383496475 7.781039168439355e-07 333934.2910303904 30.087943459156893 32917 None None SNM_20201201 4645859.865512564 236.30480352 0.010636714690647893 5.4e-07 164724.56414763606 8.3626634 28832 9518 None TNT_20190305 6812234.907280764 1834.567035608983 0.01589855938216218 4.28155713259589e-06 930989.6028608654 250.71989723634016 16978 2509 1349382 LTC_20190716 5697715522.675685 521024.90510046465 90.89757367099993 0.008312085695979906 3991747203.678433 365023.43785056385 450567 206255 151076 MITH_20210519 46540424.64959601 1091.8482160765511 0.07544808400582086 1.7635936772204585e-06 13642549.967190588 318.89364959148946 31821 2697 239829 RDN_20211207 25736190.204707827 509.8865617093719 0.47303610768607524 9.367419765978806e-06 909960.6397667518 18.019730723961207 33127 4881 850939 NKN_20210120 16437118.784607774 453.90308914651206 0.025303485714593902 6.980969464872705e-07 2470558.8110042587 68.1601571235133 13780 1024 373477 NEBL_20210718 14004423.095053315 443.06354390399997 0.7736129069524893 2.452368302120393e-05 397782.74058460735 12.609791995109259 40372 6111 1825448 BADGER_20211120 272820252.12696946 4691.796178579157 27.538062108429877 0.00047337443072077343 16070000.790244268 276.2404792977639 None None None CDT_20210221 14744180.504218567 264.0105340834025 0.021694215115803432 3.8590077380109537e-07 700100.037393487 12.453510980976409 19969 299 552425 SKY_20190614 23966141.67512166 2913.002991076875 1.5977427783414444 0.000194200199405125 461041.7307731064 56.0380539745975 16081 3773 431254 DENT_20190615 143962970.66758198 16580.73500651948 0.0020276105967063575 2.3363343641502455e-07 1808699.0943592659 208.409142042522 45276 9569 248149 VET_20200129 370774432.1520199 39672.20344669033 0.005895579764465652 6.3191874165766e-07 140747583.7705715 15086.054227224395 118372 60088 339767 COMP_20210408 93607.95184183153 1.656010309431417 1.0972333226983185e-06 1.952614764e-11 362.13001942635304 0.006444394348875596 2359 None 1665764 GO_20210718 20037075.113187913 633.971440255573 0.018398790802770387 5.821016964585175e-07 363932.26448847464 11.514103879198 None 1101 149047 WAVES_20211104 2633817243.271422 41770.83178490935 26.342944268785683 0.0004177082462685678 171143139.32263318 2713.739962319314 200319 59906 117946 BADGER_20210610 134347140.91270646 3579.2696493118365 14.96601592835749 0.00039889676146291934 21943814.06790937 584.879530246108 34791 None None OG_20210823 8122574.311492743 164.64649664975752 5.8892082762301845 0.00011954090557561463 2214572.808170456 44.95205917921605 None None 316019 WIN_20190906 59881726.18894371 5666.0152935925935 0.00028544557331498316 2.7006420701473844e-08 7220085.985993025 683.1028324386637 None 1407 68914 XRP_20200607 8959322858.43545 926415.0166584937 0.20320959689430387 2.1010532408167094e-05 1058657481.0092325 109458.20302700726 951806 214238 34981 VIDT_20210210 27289009.308983628 586.5679304625595 0.5890526798828432 1.2642096031250198e-05 4697237.611393495 100.81089687368463 24127 1255 None SNT_20190806 73046862.19160955 6184.355569284008 0.02047935006426511 1.7338919126432912e-06 24046877.893195804 2035.938004501762 None 5724 278039 PIVX_20200719 27611030.835553523 3012.069137130959 0.433607303754353 4.73019346887732e-05 532907.6327252042 58.13454206158143 63894 8481 353299 SC_20200127 62863572.036070436 7315.054262429394 0.0014905677552110206 1.7344836855500089e-07 2332774.26843188 271.45085465055803 107427 30177 233431 CKB_20211028 537268872.2194532 9179.499639721937 0.01893008538893781 3.232369491591426e-07 30370321.168103043 518.5824446992518 62000 10362 121896 DOGE_20200718 384482519.554721 42005.769767481084 0.0030674646316936013 3.350727574512163e-07 120670354.18557718 13181.357627341999 148986 163023 90180 SFP_20210708 82708336.56178892 2434.187826190344 0.7646379319591027 2.2504047630406726e-05 11362353.803985381 334.40526621964176 None None 22344 ANT_20210819 172833891.40838534 3834.34617798847 4.725111738979562 0.00010491652669150909 16825257.24964923 373.5885305657457 86503 3076 132148 QLC_20200422 2135055.807151462 311.76578503164455 0.00889285041435508 1.2990875848938604e-06 260534.35485005574 38.0594443911586 24420 5653 940522 QLC_20210314 20300329.396114625 330.85301209821023 0.08451960817156702 1.3775352793197453e-06 2471510.122122536 40.2816868188579 31720 5615 940522 ALICE_20210506 251611602.5442084 4395.140180332789 14.620383819079088 0.0002550311673863019 119520787.29215999 2084.86495889883 60427 None 62436 LOOM_20210124 45186976.695787475 1411.3680681954243 0.054182939417899444 1.6919815886049505e-06 17174876.097626556 536.3233234658267 None None 299124 ANKR_20200301 8700328.777962945 1015.4099446353014 0.00218336832384737 2.552778841261001e-07 3596975.235170011 420.55580694243474 None None 5490 LOOM_20190906 17188765.061681516 1626.116672983522 0.02852151136293324 2.6984616575548424e-06 1425372.3948965517 134.85655463420358 20873 None 439430 RSR_20210725 311818386.11406606 9127.135176588727 0.023760170277384713 6.943296274092414e-07 34667030.254392095 1013.0544486386733 None None 123422 COTI_20210821 195714710.95024616 3982.9502562493462 0.29362304507993275 5.969801971509292e-06 70071165.34212364 1424.6530986404246 127731 5640 156434 FTM_20190716 46804944.606163554 4273.635315111923 0.02258069101187055 2.064880625355932e-06 14281190.675850065 1305.9367367488621 17212 1965 417127 ARDR_20210201 79352612.80798353 2400.6998509033774 0.07902336599579929 2.3836701565485994e-06 6110489.126014737 184.31751657314027 64667 6312 None GO_20201224 7139325.629830825 305.30515775517796 0.006711961224930114 2.8782815886951346e-07 445126.5860225182 19.088305403621806 13253 684 688031 TRU_20210610 103180280.58540012 2748.840892850724 0.3106092720711268 8.293163718955908e-06 8117762.238315252 216.74153776868005 26510 None 94799 RDN_20200207 7373408.139643081 757.0715796471048 0.14496730047665693 1.4886842821687957e-05 1422944.1234612472 146.12361160317738 25238 4330 1852265 ELF_20210124 66961399.21412578 2091.960103294919 0.14530574302445273 4.533978818460124e-06 28611853.668238305 892.7764022846794 82080 33326 473527 BNT_20210105 130206329.41370064 4161.768979318659 1.3792280456762498 4.4084097307313655e-05 113702866.62651876 3634.2708170687497 89515 5304 101085 ONE_20200325 11058657.901015611 1636.297416413927 0.0021883567498426847 3.2389357781266133e-07 72957479.05095679 10798.266288028866 71098 None 395411 QKC_20211120 186454812.45968142 3207.535938595008 0.028308888465636856 4.866247998495337e-07 11401334.410587804 195.98692765011307 77902 9610 421125 BLZ_20210523 51614191.40986294 1373.25063626726 0.17883217165822585 4.761737742499151e-06 15502406.376104798 412.7802780460293 60170 None 200786 1INCH_20210711 431830974.86777866 12810.489177610705 2.496497407547064 7.406786179739383e-05 30266434.148717843 897.9661083765386 237764 None 4913 GRS_20210624 32392443.00426026 961.5187254450065 0.4162367565662447 1.2355333483315914e-05 2861811.734326847 84.94838042600281 41201 106844 6399829 GXS_20190821 67812417.92003529 6308.970868522322 1.0436916985157239 9.713332050673269e-05 6633951.667230188 617.402394246921 None None 790272 MATIC_20210711 6556892269.42062 194448.02019411375 1.035074907863297 3.0706032399040286e-05 362405143.5832112 10750.935991112456 526230 46573 6545 CVC_20190513 23332379.481914874 3353.0583340426965 0.06808398321519255 9.784238573329979e-06 3386105.5197272017 486.61172092069324 None 8198 436326 TNT_20190314 7970897.7672140775 2061.5826167033556 0.018597608168238338 4.810787297566935e-06 570847.2049009879 147.6654662979384 17020 2509 1349382 BCD_20210523 608573096.2478862 16190.141101313557 3.2114697034724835 8.547090471743506e-05 31780456.373339195 845.8134777436022 33264 None 1493473 TRB_20210809 79813354.70757824 1814.2558616771953 42.85959236828485 0.0009743395600773017 25316667.543772057 575.5311554357019 None None 290542 MDA_20200927 5435746.791599773 506.3524737117123 0.2769609000279546 2.579628931153473e-05 88581.5368073664 8.250532659709531 None 373 2564578 PPT_20201208 9446496.04417051 491.82590755834065 0.26067281513474627 1.3584848062234974e-05 606585.8105707382 31.611950287380484 None None 1191706 GTO_20210809 24123610.660602342 548.3602539231142 0.036403132132830106 8.274893448084261e-07 13024084.53260869 296.0539531953746 13512 None 552838 SUSHI_20201015 72077225.26165037 6315.352975670062 0.7212741998931236 6.318762617390073e-05 34632460.652904235 3033.995916590807 None None 57321 ZIL_20201228 889811253.2664841 33569.69902733367 0.07666731741433348 2.9152944860655434e-06 1108797737.5061405 42162.31947759879 111091 13546 50668 XVS_20211011 301855608.48804617 5516.8712129131745 26.817343295685205 0.0004899605771062582 15038541.239491863 274.7584748905095 None None 25923 WTC_20190922 29304133.214536827 2933.1748531632925 1.002971165669318 0.00010043339804046626 4423311.290241591 442.93215864611574 55740 19854 452938 RUNE_20210124 547184157.0531113 17094.73576037063 2.365640349965998 7.381638860806687e-05 67324819.52457298 2100.7737042806516 29389 2116 220522 ARDR_20191213 45515999.68742213 6315.165711872224 0.04561693455177448 6.3371979878942725e-06 2469428.181437099 343.05802124627525 65709 6463 1383228 SXP_20210722 132267527.07947738 4110.118198586852 1.5360905634367281 4.7564304612074294e-05 130871489.89397252 4052.3726650764706 None None 69993 CKB_20210809 335612645.18627304 7629.366230565739 0.012263702707611256 2.78794315129669e-07 17977582.423729908 408.68960207265246 None 5342 118997 STEEM_20201018 57247522.48752365 5040.229159743777 0.15660935414011126 1.3780354502466324e-05 1919932.5908159357 168.93851499197186 11717 3849 188070 XMR_20210210 3014397105.033789 64719.14141113912 169.01798139296218 0.0036288180547047687 896234152.812728 19242.157835315877 347471 196033 56021 XMR_20200721 1222630214.1181128 133456.79225624749 69.31718050483776 0.007566350358105299 59205974.80388852 6462.656810285444 320432 175424 89794 WRX_20211125 534808245.27030194 9348.582376585051 1.1797194171044614 2.0627121995624127e-05 6060849.673785213 105.97255907269367 439191 None 671 BNB_20190530 4847361038.579062 561024.3862669119 33.606453476083296 0.003886205334391301 448618231.4740536 51877.61230147062 976484 51887 924 RLC_20211111 319298347.935853 4926.802607322124 4.52188281989582 6.962936054961018e-05 31972339.64963531 492.32004758812917 48864 8371 455749 NEBL_20190810 8478489.766584296 714.7596467729497 0.5495330330053793 4.632598516040166e-05 229992.8593469551 19.388544726484334 40451 6146 850260 SAND_20210408 434246084.06408894 7709.6482144004995 0.6306572208836547 1.1223051424398017e-05 139943199.8745378 2490.401563128212 98785 None 26678 ETH_20200224 30135977087.940575 3029043.125412192 274.6312157785517 0.027599232446445375 15734092874.96997 1581207.31235597 452123 453159 20404 BNB_20200321 1792058784.8584447 289791.8473745689 11.850720950684286 0.0019146373255219912 387993875.20748466 62685.43142966141 None 60344 1672 NAS_20191011 25000298.37624027 2919.629096044628 0.5499013733490045 6.421736601093883e-05 22847133.389660466 2668.083402391131 24054 5082 1274941 UNFI_20211230 40082369.16191467 862.5714345819976 7.933124762204595 0.0001704736323144268 17782151.693362206 382.11777583227814 None None 309205 XVG_20211216 292218941.4874699 5989.763226130788 0.01775597385358607 3.6333282045935695e-07 9536456.123281922 195.14038086731802 336225 55624 176659 IOTX_20200224 22163532.39632742 2227.70171847279 0.00513265579624714 5.158093918298243e-07 4113153.5981766745 413.3538932280289 22310 1805 655766 MTH_20200523 2054606.4228671985 224.44441298926557 0.005911789626770024 6.458016181244026e-07 128047.47338972322 13.987856593774817 18969 1913 1287418 APPC_20190726 5323499.168449277 537.8112567643171 0.0490114129303078 4.958509714020017e-06 152665.45606530365 15.445242273907041 25383 3340 1368976 ONG_20210220 0.0 0.0 0.4527245085949002 8.093928254886102e-06 23235093.866326198 415.4031407163514 99618 16959 213342 COTI_20200412 8704777.894365024 1264.7915316036524 0.01744081389771467 2.5340762964556444e-06 2325108.6546658315 337.828427218331 22834 933 253363 SNT_20210204 215834761.5567046 5761.059495821817 0.05572348472858893 1.485590749241162e-06 26665803.689240303 710.9115927470351 118078 5740 152018 TNT_20190906 12323639.061315311 1166.0173267869188 0.028763457630393063 2.721352545685593e-06 600631.0190208646 56.826573968736916 17511 2535 571666 DASH_20210115 1315316115.2729294 33529.17697411752 132.58779794143805 0.0033798413097558344 822158342.3380321 20957.922008945327 329589 35979 87017 NEBL_20190426 20229212.40994459 3894.1712899854506 1.344111915607371 0.0002583277798174595 419892.9126389016 80.70012818395334 40536 6178 627763 CLOAK_20190221 3898368.863994181 982.849466439995 0.7389126793251739 0.00018618019176637045 143733.21397239887 36.215750641899 18059 1381 1179717 BURGER_20210702 0.0 0.0 3.674332184932411 0.0001092325589163909 2792871.1962323575 83.02800403822332 None None 43206 MDA_20200323 5507254.157213487 943.9500372731235 0.2804661289604896 4.8100055451368856e-05 339234.89682409714 58.178923097616305 None 372 1815630 AERGO_20210429 92214594.88154453 1684.6973779814286 0.3504798398047793 6.400799642049185e-06 1737234.991366351 31.72705487735567 20169 None 413577 WPR_20210318 22904215.023334265 389.186549291607 0.0370970498574689 6.298045897307719e-07 722337.9797636296 12.263287154635938 None None None XVG_20210112 205014759.08751905 5787.615306330526 0.012696493051825205 3.5717755549410883e-07 14479832.712585945 407.346440559158 288546 51374 225034 ALPACA_20211230 95048849.1743761 2045.448507709747 0.6205476604666117 1.3323415324824004e-05 79246281.97881052 1701.4505009299232 71460 None 30691 ONT_20190426 634375093.437624 122127.44277544806 1.035667169851563 0.00019904711617461593 69369305.00750172 13332.236952880876 76743 13633 265242 GTO_20190228 17545686.714780275 4596.414189462284 0.029576869749814036 7.757515844003257e-06 14897830.407079281 3907.450531505879 16269 None 751692 VIA_20190813 6754216.206004193 593.4528610666275 0.29173497778526986 2.5633019725659935e-05 196917.66350317473 17.301985491170694 40867 2225 1890047 HC_20190605 80102517.26627205 10455.221684779066 1.8271281247584903 0.00023832277170333065 70407229.48578067 9183.617641057137 12705 806 744090 ONG_20200531 0.0 0.0 0.12097933069679018 1.252629053165751e-05 6955945.3295336 720.2237904460138 85284 16479 149560 XEM_20211204 1465110837.9743357 27285.881050783795 0.16290432852680536 3.0313471546556393e-06 43538488.712099776 810.1704544561161 376832 22514 218348 DOCK_20190221 4735319.638540241 1192.7395372338772 0.009192876531258038 2.312412040709464e-06 294642.5402452759 74.11553450671207 110 15361 163959 WTC_20210131 10534049.970082413 307.93262443069113 0.36038695770304596 1.0548590369602268e-05 4023520.3378191087 117.76915612575952 54826 19039 815573 ZIL_20201130 333242779.324381 18370.864701075006 0.029174426713380792 1.606484477256115e-06 73439462.48810855 4043.9305856545975 98846 12493 66653 ONE_20210828 1095156418.9628503 22328.305045203357 0.10497810621282153 2.1400280119631577e-06 47744360.16401495 973.2912113799479 202492 27931 31812 AION_20200905 47225087.23236696 4503.953399024832 0.10297888331537813 9.821307248283766e-06 2888598.417683748 275.4915538372503 68138 72551 307005 RDN_20210324 48052933.51482421 881.8289571588043 0.72337246680204 1.3269980307180288e-05 1632519.25128057 29.947916612527585 27998 4426 660799 REQ_20200324 5862462.484338755 910.0016667385897 0.007561117081977287 1.166865970182766e-06 118941.87016501396 18.35565025917536 39587 28204 686735 CRV_20200913 94473620.48591365 9056.26780998944 2.069418696151444 0.00019818467498481485 107339493.00094612 10279.718924444527 33107 None 18839 GAS_20210104 21312336.20816314 638.4920329853759 1.5476659507335544 4.657209265719101e-05 3977958.488894793 119.70402995779446 None 101195 181319 IDEX_20210930 183403140.46005103 4414.948959016862 0.30917656163067986 7.434735342175153e-06 51013996.03554436 1226.7280458474731 None 1985 5857808 BRD_20210513 24923644.46184825 483.0952580491788 0.2966707842486516 5.9142192132045205e-06 1050365.5102939394 20.93934492943257 None None None BCPT_20190909 3329908.6301620877 320.1205534575862 0.028632351737364614 2.7563277836317797e-06 127542.0251967781 12.2779864837921 10882 3114 1000589 TFUEL_20200913 0.0 0.0 0.009612877564534399 9.206064426504186e-07 3940336.0806748634 377.3582631969033 73103 4392 65774 DEGO_20210909 48275341.354168504 1041.604638699531 8.901820910238948 0.00019227671646722183 24335958.626690432 525.6495568721338 None None 237398 REN_20190716 61138387.94455472 5591.377140967258 0.0762034162693262 6.976601378163e-06 6225128.358360059 569.9250927370578 7520 801 661465 QLC_20190805 4264446.841795099 389.4145177915027 0.01776852850747958 1.6225604907979283e-06 97873.92566961743 8.937507954244246 24881 5763 940522 CRV_20210508 1076968028.4758122 18793.45494508061 3.6509131071604393 6.369650093543964e-05 739464922.2878946 12901.245998393411 114122 None 25483 HNT_20210620 1095202591.0983753 30721.986213240983 12.57336961593331 0.000353148679288566 5476952.945285052 153.83137203745247 None 37997 2774 WABI_20200626 7469373.639247384 806.5427404143086 0.1262790712415187 1.3647142996450569e-05 2320013.035648608 250.7268175149207 None 7666 978945 MITH_20190511 18017992.727481246 2827.5426366983993 0.035000863290163914 5.4932003017018425e-06 5219712.247870779 819.2062194894017 73 2035 435662 ZRX_20200314 104799307.5933566 18974.12915032512 0.167268995906185 3.006780792868193e-05 64577372.63097666 11608.248296630865 152960 15980 118984 ZIL_20200713 213600787.31595874 23022.288281261885 0.01942420367287856 2.0906034936181335e-06 37201605.17885403 4003.9636664080062 81988 11621 87928 CVC_20200331 11871534.368045019 1848.0706166867144 0.01775498988464823 2.769431953038282e-06 4924262.672242092 768.0888853365358 86309 8060 116192 DIA_20210930 70498489.73352316 1696.8667187585825 1.4530899102259234 3.49581287496643e-05 15192825.68158029 365.50577669713067 36107 414 534458 THETA_20190528 94114798.2199042 10671.6656223281 0.12641313500293208 1.4336254277763955e-05 9593708.279718697 1088.0027725089367 None 3982 247302 LSK_20200725 175435723.02077356 18387.583625081596 1.2440538800616459 0.00013043383551473084 2562651.6778568476 268.6832883914689 175613 31141 173512 VET_20210108 1848741878.8941903 47230.958614816955 0.02863677230656606 7.256720611210853e-07 515565180.8706186 13064.714257579344 149070 70852 134055 VGX_20210916 5102483269.419831 105875.75617937541 258.4327472170754 0.005361887712361089 272371680.74354625 5651.088663880688 325541 10871 41484 MANA_20200421 36302540.64166413 5301.381381697364 0.027378441567824457 3.998793339161058e-06 21090028.256870285 3080.3310812037857 48126 6830 45768 ANT_20210304 181354703.05702984 3566.9742466703938 5.159165129230472 0.00010182229143018813 146623379.66944906 2893.787680994156 79208 2805 130780 DNT_20220115 84932555.54101941 1969.2519315917464 0.11305923896408655 2.6213991006875105e-06 1962611.52270945 45.50524245315103 73947 10358 292726 ZRX_20190627 193823144.0758671 14925.208583026737 0.32472124528598406 2.4900574044442225e-05 60949764.556894965 4673.8060640400945 150817 15966 211751 SUSHI_20211011 1977047345.8421757 36131.63778030756 10.265359466095445 0.00018755107069165047 201416388.58492392 3679.9353650220023 None None 4459 XVG_20190923 69820172.06376715 6945.51892914145 0.0043734030643068035 4.353745210396601e-07 1444725.6208158988 143.82317749990997 302055 52671 284381 LINK_20200901 6015458738.552195 515980.00235232373 15.644497276809457 0.0013419172323392754 1022273061.957608 87686.15659070358 85035 22375 40610 BRD_20200208 16056062.230489984 1639.0729232673677 0.2631089620852845 2.6837922450897006e-05 1265355.7164831664 129.07017048232188 None None None OGN_20200531 10799090.66631089 1114.084828809102 0.1941538578746848 2.0034517983731528e-05 7331797.078517815 756.5598851888068 64489 2237 170081 DASH_20210718 1195393543.034808 37821.42549715578 116.52916465695822 0.0036939976971563475 327945002.26191175 10395.92179962562 400727 41442 60872 LUN_20190227 6703713.8489455655 1760.0615248240942 2.482552292740398 0.000651601171795191 16131018.416545432 4233.945255939852 31692 2257 1490290 WAN_20210825 152596380.65736404 3175.4677685090132 0.86406923038489 1.7992759871127124e-05 5579879.829712012 116.19142813479543 123763 16750 387619 ENG_20200127 30253199.485514987 3525.3181053132357 0.38160703175086863 4.440530586745059e-05 1491834.1827265446 173.5957350773833 61238 3584 332457 TOMO_20210722 199216047.0518819 6190.660888358812 2.396409339346603 7.420059244379056e-05 14885401.799165227 460.9002369199064 50507 2210 130894 NAS_20200322 10504434.546438418 1704.8110346899232 0.23187388737386977 3.765077325988681e-05 3496331.9166478873 567.7206766398905 23607 4969 1138524 WAN_20210523 152339027.2770053 4053.1423707726053 0.8637370019062826 2.299936210345659e-05 7441855.274458992 198.1597683103215 None 16519 162082 DASH_20210916 2147712008.1603966 44565.32201004421 207.9464932996953 0.004314413553463721 314052665.2897241 6515.873646758805 406192 42289 74827 FRONT_20210429 79194868.73997952 1446.801429196404 2.1024680116019665 3.8397291278087985e-05 43397632.00943062 792.5692604358402 None None 149576 SC_20191102 86315102.60831591 9344.266008680652 0.002046630577433041 2.2156331811151115e-07 10599038.54679332 1147.4264946069231 108327 30461 223665 RVN_20211230 956719673.7298186 20588.57993469291 0.0927283448592926 1.990915975760636e-06 63166187.12145706 1356.204203351441 80672 60343 66229 EVX_20190725 8520716.543688882 866.8000820273953 0.40312423710972695 4.105749469375918e-05 1157154.8174509378 117.85418341000909 18164 2915 1096264 BCD_20211028 357597131.692087 6110.572069317488 1.9008078664564534 3.247467957914315e-05 5112007.705908123 87.33697665348976 35534 None 808497 LOOM_20190414 47488681.824409276 9360.600781914954 0.06868550426388154 1.3536173607085934e-05 3164794.557615343 623.7008670426131 18980 None 433767 MDA_20190130 0.0 0.0 0.6839925557671793 0.00020024917932575582 1021583.1866187109 299.0839490993236 None 344 1403646 JUV_20210408 0.0 0.0 17.17845709364192 0.00030553643529412857 81438461.29543619 1448.4663566936927 2392847 None 46245 CELR_20190812 26210013.375340596 2271.1294658775923 0.008393001230626636 7.269788064567405e-07 9384564.57676395 812.8653109494053 17982 None 493170 AST_20200607 8064252.596867683 833.9870884422313 0.04681377439104489 4.841376548465724e-06 1870297.197513007 193.42198121142638 31852 3454 366039 ORN_20210828 253479819.31874937 5168.341465589535 8.45878278070816 0.0001724695731855037 12961345.889092019 264.27416938755283 None None 95381 PNT_20210217 67113859.29283455 1364.8593709108695 1.9242067484571566 3.91022768560303e-05 31274220.4850016 635.53109812217 9024 179 453797 AION_20200317 19716301.361788835 3906.3488587255356 0.049097963871964634 9.750921299460141e-06 1516391.1703822494 301.15731479521946 522 72544 244642 ENJ_20211207 2703251818.9895916 53556.5874176705 2.8971027890606647 5.7403560997592245e-05 369335059.7091533 7318.05157504883 408611 42871 16030 COTI_20210108 31208929.212808646 796.7231922086416 0.05489834708669057 1.3923095496939919e-06 19533700.19226348 495.4057592226009 35197 1278 237911 MTL_20210729 111743735.69856192 2794.5015662459114 1.7303567348343796 4.3231358630985e-05 30000904.275214367 749.5447764415951 None 4219 206234 FUN_20210219 213990890.73065016 4140.332384432231 0.03556031260515705 6.87814430344114e-07 6183118.032908611 119.5950624725019 35355 16906 206769 AE_20200412 35743184.3173192 5194.466965976694 0.10134034846784114 1.472432286893224e-05 8555426.7212841 1243.0672208084331 25310 6342 695802 TNB_20191024 6604349.393177183 884.9463720331145 0.002257227482539468 3.023413559367334e-07 426439.6143552357 57.11889130653683 15469 1464 2346363 QSP_20191020 0.0 0.0 0.010811776855324487 1.3601136801075427e-06 26483.152483965412 3.331561358305 56061 8474 465255 ATOM_20190903 521367510.7833261 50506.78274804942 2.125323322534021 0.00020587772712577212 118413345.41680826 11470.570222089682 None 6759 108058 NANO_20201229 143023642.40597433 5274.796429267597 1.0740619331281265 3.95708480090063e-05 13069323.995776808 481.50317729922716 None 53745 348353 NXS_20190812 14915596.321700158 1291.1531316246792 0.24980948616569942 2.162449917628434e-05 218841.78131771027 18.94381191234045 22052 3540 855550 DREP_20211207 0.0 0.0 0.9898191319858506 1.9605081914947887e-05 24905367.707607124 493.29393446854016 4257 None 527281 ZIL_20200308 71637526.5343522 8059.468182215031 0.0068967717510604615 7.748805737312262e-07 21487332.244121507 2414.1898468248123 68608 10567 224303 ALPHA_20210325 457159285.0156697 8651.411768142223 1.812897079870835 3.438420494885859e-05 300149209.1744043 5692.762175018701 None None 33273 SNT_20200530 103811548.34424053 11014.79571135296 0.027007912591380398 2.880597613190946e-06 18004081.010527287 1920.2710543121839 None 5694 159898 TNB_20200411 3250563.7454763083 474.07443568185056 0.0010498059720740584 1.5297582450061005e-07 264938.37045514956 38.6063394001777 15025 1440 2723419 VIBE_20190126 8670936.26298445 2431.547367037767 0.04331133877899595 1.214558250422434e-05 2534374.8420893652 710.7020842346841 20600 None 1525453 BNT_20190821 27506910.15236118 2558.626473099603 0.3943622207565831 3.66826231092164e-05 3917986.1125528207 364.4416233334639 780 5125 148794 XVG_20190531 157062649.25250205 18896.65460923793 0.009689443710885686 1.1661020201097796e-06 5288542.284720803 636.4637667197109 304423 53096 388468 ENJ_20210314 1926750381.6709857 31402.011016591216 2.0586665318294695 3.355489473722544e-05 900585106.8400801 14678.938038147026 104252 22096 49755 GXS_20210602 53409607.190208994 1455.6717614982445 0.7623932070449468 2.078813220816138e-05 18527591.477977168 505.19078289778975 None 657 546653 ZEC_20190131 284593417.27781004 82215.7925077868 49.15594745943615 0.014203531383281379 621467210.01558 179571.9435256688 72995 15007 147110 BCH_20200423 4275421200.5783663 600966.0832566133 232.5194409018231 0.032683633056056115 3303944962.4713616 464412.4567477077 None 292861 142695 SYS_20210420 247612821.11700475 4425.219105708101 0.4034553531166292 7.21354077146996e-06 5480831.960525485 97.99400231875782 63552 5024 411439 IOST_20200417 38861280.366904594 5473.388673727326 0.0032334648756344236 4.560048778986912e-07 59329428.87490315 8367.033510636496 193101 52232 215999 ELF_20190625 97151424.38587679 8799.229820112381 0.21057810997893292 1.9065935226573062e-05 23639013.698544227 2140.297982737177 86571 33251 1215448 MANA_20190803 53193962.08614838 5055.363151536729 0.04007361516462494 3.8073976823287665e-06 11239828.644002661 1067.8971026982647 45623 6347 132863 TFUEL_20201226 0.0 0.0 0.023697500688449457 9.610416112492429e-07 31080388.01695748 1260.451326524378 76411 4678 78073 RCN_20200914 24442949.092063628 2367.97617001924 0.0476104113472111 4.610190064131933e-06 312262.6526793857 30.236877566198817 None 1137 1085396 EGLD_20210614 1559862927.8828294 40078.20906388542 87.6402965001266 0.0022450243939454587 47399315.1534549 1214.1973843694284 None 9040 28492 XMR_20210825 5585849952.5632515 116239.23455904203 308.5498468804986 0.006432045695483965 341258962.148061 7113.9015647604 434890 232499 39268 SKY_20190703 24685424.5883181 2287.21204647732 1.6450190160326292 0.0001521031026442629 2220606.0540489885 205.32350524803016 None 3780 456375 DOCK_20210104 10246375.120461779 306.9691101667487 0.01815466353490848 5.515167141154493e-07 10229294.684283026 310.7535967905145 43183 14868 239744 NXS_20190530 22006620.450489208 2546.45476416111 0.36827527322391257 4.265577597781749e-05 524053.48670888116 60.69891126211165 21327 3515 737068 FUEL_20200526 3259030.839189979 366.25396397005085 0.003288120929583507 3.69982096055717e-07 2877350.786937269 323.7618986761117 1 1465 None ETH_20210124 140773242456.76056 4397936.875382396 1231.176379704471 0.03841746184531759 30774910632.149376 960296.1642973144 607144 543476 7694 MTL_20190726 19058418.79608651 1923.9614856949 0.40550898308918304 4.100752398540543e-05 3295646.7378129433 333.27575536980123 33339 None 788453 DOT_20210506 40073630954.333496 700004.3869043288 40.56852655266073 0.0007076584865279511 2902362969.2338347 50627.468155559116 356967 23441 16901 EVX_20190818 9897004.04942288 968.2456703852225 0.4690523246171981 4.5888420397403905e-05 1653850.7223957118 161.79985310973962 18236 2913 816674 WAVES_20190601 264256500.122558 30824.30023338874 2.644003955916937 0.0003082338449029402 30288424.57840598 3530.977154161295 139890 56834 46755 WNXM_20210428 192481638.13556165 3493.953446851013 93.03515540892337 0.0016883074359613855 62534031.53297771 1134.8040423399318 26021 None 101327 VITE_20201231 7406682.756951598 256.5102230792429 0.012848097827227319 4.455093206376233e-07 611876.9744458501 21.21690688107119 None None 1002330 ENJ_20200330 75103752.7227991 12700.993974339413 0.08214859069522108 1.3917156097889523e-05 9006305.492313014 1525.7980488896158 53969 15292 111026 FTM_20210707 633097685.9007777 18534.48673621166 0.2488233180192992 7.28580581203252e-06 54636502.234550945 1599.8136697893563 101602 9065 43795 MKR_20210527 3555964020.5910645 90760.8926045772 3953.867840754257 0.1009259095465914 366755940.1764562 9361.763805656927 153440 27323 30840 CTK_20210314 92961297.76099256 1515.2969777048097 2.598757210868798 4.235755644227074e-05 26974262.949336402 439.6577951132246 22596 None 216744 ENG_20190725 36075132.631292135 3672.154281052613 0.4620164985684462 4.705556796685462e-05 481377.2969360595 49.02743123646215 61818 3478 316821 POE_20190902 6132126.203718488 630.4586363409295 0.002436115152203958 2.504628551018145e-07 385796.4404121931 39.66465947487568 None 10743 694514 FIO_20210602 41666594.03438779 1136.4025420050511 0.17352710119259782 4.731242340789386e-06 4030230.3397584544 109.8848323722968 76781 460 99766 NMR_20210203 143672046.41840535 4033.734092590107 27.421622779696538 0.0007721198915945924 12709524.47588385 357.86637207350776 None 2012 2472794 TCT_20200421 3135602.8264313587 457.9025641352144 0.0053653339276096826 7.836407166912853e-07 398653.29010286526 58.22581673061427 None None 458106 CTXC_20200314 981337.1000031095 177.843943808678 0.04623194186492785 8.348791640337902e-06 4672646.983990918 843.8095936391479 16543 20064 415103 ENG_20190530 37479928.54170781 4334.312788880577 0.483340110228852 5.589517650260714e-05 1498510.7927198852 173.2931397116644 61863 3424 370110 QKC_20210324 258123380.52904698 4734.953161004987 0.03978057387269633 7.286600875800379e-07 53033399.50518723 971.4118668016494 69110 9341 355106 MITH_20200713 4092010.8313142583 441.0445026553719 0.0065500825117086455 7.049693403320417e-07 4071072.007436766 438.1595105705437 99 2095 759116 OMG_20190901 152980965.78393573 15936.743770088377 1.0908091671138882 0.00011363470029931659 47228467.24952053 4920.010651996128 288373 41286 None FUEL_20190729 3680361.9399367776 386.0664558913835 0.004182607063612968 4.387514901491085e-07 341879.2147016228 35.86280341901705 1 1506 None ONT_20200927 440106413.7093375 40987.66226601865 0.6891377529963221 6.415902249225354e-05 185478195.82663098 17268.100152868763 None 16656 209787 NULS_20200404 18721058.60128662 2783.7331175827994 0.19558131170805437 2.9069108189595397e-05 7936081.5391316535 1179.5340303619018 22798 5186 528791 SXP_20210203 98673359.81375623 2770.3516824144695 1.322708019148362 3.7243936311176746e-05 126439649.9908933 3560.20391749066 96833 None 145148 CMT_20200105 8992667.530404177 1223.5728445985592 0.011313837564100229 1.5386103851307525e-06 6016908.227904912 818.2614814277139 288397 1644 926664 SUSHI_20210523 1878303639.8401265 49980.18769474769 11.090384263645644 0.00029531184027442977 1049226929.3542149 27938.539189193823 94539 None 8425 NANO_20211111 751148847.9186542 11591.017049176431 5.664734108450138 8.722963668575658e-05 38876834.655425005 598.6533697011922 142935 116252 87991 ARK_20210603 196486287.84250215 5224.606007083489 1.2460806306991934 3.3133509823748325e-05 5782886.772514463 153.76800743561725 72664 23272 91159 LINK_20190305 146784057.99041724 39529.640097162664 0.40279968058260635 0.00010847585645657789 5448587.8006307855 1467.3304291041409 10117 6399 327842 ETH_20210207 192164042318.95844 4902156.486979397 1683.941297865053 0.04287290311311777 36776919163.51647 936335.0694560622 663175 626595 7116 NEBL_20200506 7121189.867968811 794.0251729378355 0.4386926666112993 4.875365814158233e-05 145034.3891612371 16.118247616400986 39322 5979 1526179 CFX_20210916 264247176.460052 5483.165556854172 0.264582594314886 5.4885381420574e-06 10826736.552466162 224.59132913141252 38858 1382 253814 HOT_20190702 333548573.8141951 31422.266031547024 0.0018822542415699137 1.7749608409068785e-07 57038391.52334507 5378.705445116239 23289 6521 316713 PIVX_20191108 14981073.586652972 1625.0210772556957 0.24360092193235774 2.6422718998546114e-05 332028.8682567267 36.01425403385322 63179 8583 246395 GVT_20210201 11762855.075720623 355.86528926539216 2.6479203039495784 7.98532855757958e-05 1219572.6728827655 36.77863143497332 21457 5454 282943 DGB_20201014 332787321.08949417 29129.612114833246 0.024400319636570404 2.1362558285756386e-06 5407646.919314329 473.4412262760031 175992 23190 156010 EGLD_20210111 617900460.9948523 16074.191962479485 36.39872857476166 0.0009463594273803055 105978064.5212189 2755.4077953347996 None 3253 49960 ATOM_20190904 527268483.5428155 49613.894306715105 2.16122573992104 0.00020340349883498688 128662453.42950849 12109.051226278527 28248 6762 108058 ATOM_20200229 672811796.2286097 76938.23930078013 3.555956799625285 0.0004081166472543221 180664999.03052768 20734.8957918482 31304 8166 100979 GO_20200421 6439456.877668179 940.3754171500934 0.006379622257230483 9.317838973916448e-07 931855.6854328308 136.10337530487365 10723 677 903309 CTXC_20200430 946174.0095546516 108.37549149108291 0.09238550840227937 1.0537451066189312e-05 10515334.683491806 1199.374518668172 16538 20065 404295 KEY_20190908 3654926.2172793387 349.1336976530632 0.0013979737990720306 1.3354025024763326e-07 20178.26371867521 1.9275113656230882 23779 2827 766085 MITH_20210429 88708394.70425256 1620.602878467053 0.142737623928636 2.6068116575785587e-06 190780878.21516138 3484.223736434103 31014 2649 258183 NKN_20201208 14275669.25106185 743.4241480019913 0.021955197044846927 1.1433756303765623e-06 1054324.730806397 54.90678135317862 13712 1023 371561 NAV_20200531 8069314.630347908 832.6634895747231 0.11697212555693008 1.2099748232931152e-05 656150.4350137018 67.87305119739852 48543 13867 1033878 BTG_20211207 804881111.6917613 15946.34090597669 46.05024366182351 0.0009117564607859919 22603867.625146773 447.53774805895995 105251 None 249393 BNT_20210509 1545590105.4521563 26352.151467124528 7.962603019428102 0.00013562002559196283 152484371.3218939 2597.1324063992965 115721 7153 28535 NMR_20210703 183069145.8337453 5416.268851675246 31.840215201714567 0.0009403117686305552 11781828.5168566 347.94337727311495 29394 3511 578267 RCN_20191024 21015027.00461789 2815.975469228503 0.04128114959810607 5.53159910688073e-06 3360783.6608133647 450.3389095885903 None 1125 851208 FXS_20220112 1249377982.5270088 29144.245406323396 34.97060651392939 0.0008173408396613559 10634592.307635862 248.55407076560383 30349 None 65870 CTXC_20210602 2604854.2680805433 66.09556522772208 0.17746314079913889 4.8385590487474255e-06 3936057.468286974 107.31719496120984 19762 20555 441880 NBS_20210724 0.0 0.0 0.01029020867037613 3.0775967668854846e-07 1497379.759567081 44.78365069612304 None None 1815973 LOOM_20200208 20942906.846675646 2137.9433546110054 0.02513353487121792 2.565119158436217e-06 5455067.6240881765 556.7421592232104 21367 None 295436 CELR_20210104 21841234.443851825 652.8847501624988 0.005499127888233704 1.6705685222904748e-07 6022806.470793706 182.96557400462757 25879 None 415548 XRP_20190524 16014322672.554684 2032858.0377111835 0.37983190674034745 4.82991449755853e-05 1791080635.9339194 227752.4919913387 922214 201088 39974 ALGO_20200905 301463558.2639492 28739.256778722698 0.3752910524659759 3.579227716532942e-05 215700065.35902914 20571.757501759195 26009 1267 193545 ANKR_20200713 21440676.822769657 2310.4628299667993 0.004178541522795832 4.497261913280845e-07 9749471.431037456 1049.311734781744 20926 None 5352 ANKR_20190830 8741261.682596462 921.1351332461959 0.0032668646737031956 3.443955068832652e-07 3298316.0306496555 347.7111342812817 14140 None 9409 WAN_20201130 45370128.32503785 2501.3856615518753 0.36154717215047194 1.9919606127188754e-05 1976660.3696101084 108.90500339322126 104014 15929 471269 GVT_20200316 2400364.678681364 444.31531609981806 0.5408536002690544 0.00010014671361953267 356361.2365332167 65.98533629514706 20696 5601 160290 CHZ_20210429 2865839639.227212 52355.67596551217 0.530187924259462 9.682801377988098e-06 1010373407.7544466 18452.41013090216 307132 None 33338 ZEN_20200520 50025394.25077136 5128.137707095856 5.507191587642769 0.0005641257422055304 4705880.560603657 482.04394594476133 62106 5698 47922 CFX_20210418 0.0 0.0 1.0537374700867845 1.7483638688770168e-05 15894011.114699552 263.7138334103445 30897 None 146617 CTK_20211221 101306129.36074682 2147.2862841200367 1.6749895630343676 3.552794175373499e-05 7478480.2943283785 158.62487633775302 None None 1041807 DCR_20190528 287517102.5835192 32606.72470267959 29.1618705536478 0.0033136770960087406 17620663.749031745 2002.2443270304627 40492 9455 352776 REN_20190305 13639374.401399286 3671.4647287015187 0.01809856259783022 4.87179486848848e-06 2700091.366651969 726.8141430238296 5603 805 3522346 QKC_20210809 125186562.00963977 2845.6447515748846 0.01926970123033956 4.38145785958923e-07 15706795.391718296 357.1340380184573 75129 9538 280880 EGLD_20210210 3380501419.102245 72574.1896503152 196.7141187939881 0.004221827462003861 978177743.0704587 20993.397340943837 147170 5682 47707 SXP_20200801 116620329.42511941 10288.034218349583 1.7618989228930337 0.00015543619649852232 100892344.8921895 8900.80704522409 60686 None 158179 YFII_20201106 45521912.16602112 2928.663873040169 1145.2549402147445 0.07350506113042238 128397181.90773357 8240.82252230429 11481 None 77375 WRX_20200907 23872089.73587016 2320.2798963243117 0.10389459595470484 1.0117143053450502e-05 2813147.679449652 273.9412694369846 None None 17152 TRB_20210112 31913242.78588743 899.5371834881233 19.39325770365808 0.0005455708400253177 49769751.85293441 1400.121925937966 None None 425795 ASR_20210111 0.0 0.0 3.6035440099070586 9.369140020236832e-05 1185899.73084973 30.833148139014575 None None 243323 GVT_20190618 15115673.064440273 1621.5750654033316 3.4069085317787007 0.00036553656755477224 2419117.0196104706 259.55370495376167 21332 5772 171234 MATIC_20191030 33513836.403228186 3561.2515304365497 0.014057760186646028 1.494102799753094e-06 20093785.014968686 2135.6304311564954 24200 1194 198579 AERGO_20210114 12774370.612032907 343.04148550331035 0.048671656688870316 1.302225315419724e-06 19411213.83467972 519.3530645593526 11645 None 652713 XLM_20190110 2346688106.1014967 589943.419265374 0.12251104131511009 3.080507798870609e-05 83602328.66275996 21021.584886129942 260372 98722 58635 AION_20190205 29642209.86036209 8554.138423071272 0.1128331261951771 3.256581203280301e-05 596247.3216367172 172.08845359735798 67634 72385 189694 SAND_20201208 28121849.603488576 1464.5205621276993 0.04515360674283541 2.3531601741679433e-06 5908094.1619809335 307.8977049693516 57944 None 80343 SKY_20201201 10658186.368330972 542.1129152741083 0.5654826540245728 2.8786863780070137e-05 592550.1522254577 30.164781171577445 17114 3808 871030 XMR_20210624 3931454710.6155076 116618.77167074573 218.71372377271015 0.00648973415099544 228936664.74228144 6793.072085119697 427029 226324 31404 MTL_20210207 45113299.84709639 1150.244527961818 0.7014013104404923 1.782987906096532e-05 15056443.514854532 382.74032705972246 43238 3375 419249 POLY_20190615 45521463.05435748 5232.002623952938 0.09833595484976002 1.131731708074772e-05 9253232.236330096 1064.9386930786445 35086 5114 303523 NEO_20190811 746997474.594322 65927.60820239875 10.597221591219183 0.0009357647427371784 269623372.6169327 23808.509026731357 324467 98217 192021 ARK_20200502 29017057.455106672 3274.496795076022 0.19447867530975807 2.2020931828575685e-05 2371622.0768104456 268.54012653780904 62300 22010 85697 ANKR_20190929 9210872.286561955 1124.6301882335047 0.00231012286861933 2.8143065838517225e-07 3356489.657700831 408.9042652498947 15037 None 6100 DODO_20210725 132359614.92011957 3874.255499658831 0.974400478502255 2.8474338074496568e-05 61736178.83089258 1804.0804230314686 98311 1038 27217 TWT_20210603 182580999.18487436 4851.632813911779 0.5245786418593946 1.3948641167485293e-05 40400005.379119374 1074.2434655752838 None 35465 2999 DGB_20210105 382687958.20315605 12231.808395031117 0.027579183481406977 8.815100679412892e-07 38475367.74589023 1229.7834726909584 179634 23799 242284 ONT_20200907 413418788.8880389 40151.49875343551 0.6479559947605803 6.299206475358706e-05 233050764.78221852 22656.397941744304 90505 16623 197799 WAN_20190510 32089319.697586644 5197.381893408925 0.3021306937217693 4.8931744996773436e-05 2222074.423481948 359.87730248221635 109153 17119 543432 MTL_20210111 27021850.866060857 700.9604309007389 0.41567892300778186 1.081269041041074e-05 5310461.287249956 138.1363611607272 42878 3362 362516 BAND_20191113 5218876.468915816 593.2122331896718 0.33320400099739195 3.7874184360692304e-05 1498481.0241408518 170.3273262008455 7624 983 534835 MDT_20200721 7737908.155358641 844.6351065620397 0.012762091837599451 1.3930523059698605e-06 13649225.204571879 1489.8877776378192 14143 62 598192 HARD_20211125 99399529.31340985 1738.5892403055175 1.0555280877932078 1.845362800805163e-05 7348565.378343138 128.4737881000461 39217 None 43706 LRC_20210620 334136396.719809 9372.999896825408 0.2685945914368434 7.5440258361427575e-06 18837881.57045148 529.1002492099683 80511 10978 248927 MTL_20210707 115580247.67952804 3383.8672445169445 1.8134848345225105 5.3098219968427464e-05 25755494.754000064 754.1121380282485 57299 4205 185263 THETA_20210523 6874317444.120433 182898.5506927381 6.874173730339093 0.00018292789047865248 529660923.2903601 14094.749298938872 162140 17535 16888 AST_20190401 7957206.504813058 1939.1441825334934 0.04782150892486389 1.1653747942781028e-05 761147.2651334052 185.4859575664691 31208 3594 447606 HBAR_20210513 2073193575.235548 40195.15899572947 0.24646478961254373 4.889806448657997e-06 112486895.05858669 2231.714906261801 92762 17333 39748 KNC_20190530 47101182.05316329 5446.948905391792 0.28354908118829497 3.2790628389329466e-05 8183657.176083869 946.3873421915114 96782 6691 226732 KMD_20210909 145792192.91045123 3146.920880413045 1.1354579662855195 2.4581607412365398e-05 6425732.130257132 139.11111573749292 115157 9605 191352 QLC_20190130 5440197.4122141795 1593.2204694098405 0.02265556807722864 6.638418625208267e-06 409970.9087821387 120.12757779348631 23302 5872 940522 GVT_20200129 4270522.4020661665 456.93828610316365 0.9690009224851948 0.00010388105024193703 779754.5614468978 83.59302957761878 20817 5627 244138 POLY_20200423 12085239.95436167 1699.1373529313646 0.01923882323667946 2.704266949289001e-06 1937433.440934736 272.33148079338343 34788 4989 378789 POWR_20190410 52949050.458311275 10237.18385854636 0.12735694362336522 2.461158466182244e-05 3898052.632766252 753.2942426074803 85167 13252 630492 POLY_20190812 21675354.30989082 1878.0556693960204 0.0439238264836644 3.8034888605276582e-06 1915089.304405709 165.83302092161205 35256 5071 295167 XMR_20210108 2552209178.2218375 64656.36416210818 143.3244715948472 0.0036309089818548947 677218358.9328485 17156.30411725665 334101 188626 59059 LOOM_20190419 49343271.891520895 9358.336290287447 0.0712780971054995 1.3513597910775274e-05 3712788.393148488 703.9066909788612 19096 None 474051 BCD_20190929 86389486.83194982 10547.993915728921 0.44869684171895147 5.466248107217897e-05 2407085.530576965 293.2431321562428 21343 None 2265228 WTC_20190813 45295961.13611571 3979.9628798651574 1.5518505900909776 0.00013637031068055005 4303625.761160946 378.1851074129054 56081 19996 698794 ZEC_20200506 398678248.23265386 44452.80885305338 43.83322441233516 0.004885355935256635 244585024.37572044 27259.79930813761 72325 15733 154064 HOT_20190213 210415167.55580428 57885.945751260035 0.0011974190591793874 3.2953145963321924e-07 8476348.710594395 2332.703443752242 17820 5402 326508 TRU_20210702 56332901.42719832 1677.6764720211045 0.1624094536710516 4.8304881027022835e-06 5256058.584047159 156.3291291452173 None None 106582 PERL_20200404 4499383.278254334 669.0840064938157 0.012703715544029536 1.8879439834980947e-06 1907319.615483631 283.4534967490333 11609 477 646764 FARM_20211207 66424086.20723638 1315.9969933972275 104.13639286285283 0.0020618138243287333 31712365.048893955 627.8784089062951 58459 None 121899 BNB_20190703 4467346461.655678 415165.5814806453 31.871920677090532 0.0029530721927103713 335470974.429479 31082.846122958566 None 53870 760 BTS_20210212 177118570.5653745 3703.738366335389 0.06535267970245055 1.3665942898260557e-06 84352626.42888406 1763.9034563600435 13304 6946 136810 DLT_20190816 3712721.0667963815 359.03565232448153 0.04645720543999869 4.502463783919894e-06 159261.82901681395 15.435078595831 15048 2662 4092557 GXS_20210711 31021626.797800343 919.9357618406865 0.44411017467773795 1.3174757989785113e-05 4911980.974188844 145.71645567977768 None 27104 581243 COS_20210422 97544117.71321614 1799.7995161072379 0.03232943803966166 5.969540459597575e-07 26146557.05789996 482.7888750952871 23912 None 214516 BLZ_20190603 13462519.334535137 1539.309991235287 0.06497059655144062 7.42943786305807e-06 433202.2269195446 49.5370090143612 36633 None 848455 STORJ_20200224 22778978.495168008 2289.572626543832 0.1580295025015623 1.5881271765018945e-05 550900.9767967957 55.36313150158665 82455 7969 126163 BNT_20191220 16176801.716644222 2265.3189101479234 0.2314330454256404 3.2387996658836434e-05 9246283.105994333 1293.9750492105923 760 5064 137088 ZEC_20201015 705282548.1318707 61788.086036969544 69.0156709296936 0.006046156115791494 611498508.5570211 53570.66587204191 71768 16194 161943 GRS_20190930 12809702.414083667 1589.1647199841366 0.17420954262555996 2.1620694879889757e-05 715515.5863033533 88.80078519304077 38311 106971 None YOYO_20190714 4517392.946749932 396.7275916994424 0.025845031191441572 2.269491068887106e-06 280883.34800815285 24.664789335394712 7626 None 1328336 XRP_20210727 28868798734.47323 773488.0047439319 0.623983788986763 1.671853340262434e-05 3564334796.5071845 95499.9976045944 1932942 323388 15139 ENJ_20200711 162636861.57146448 17515.49405310998 0.17678921158945304 1.9030853061701965e-05 9024019.655174589 971.4099097989497 59442 15636 100201 VIB_20190613 9194642.937984703 1131.7197692113568 0.05121554582934119 6.298142603123641e-06 1424344.3818046502 175.15627115359925 32777 1123 1919556 SNT_20210711 254685146.6328048 7552.601155454853 0.06561056241009203 1.946580859386839e-06 15926123.695277512 472.50757211442277 133331 6010 125766 SYS_20190716 17317338.066729683 1579.4862742621913 0.030953180465487055 2.8304989693508646e-06 320937.2654194241 29.347956666645267 61263 4604 748817 REEF_20210727 181086434.09666798 4838.595533088369 0.014253288085067005 3.82002519022503e-07 33716231.47396495 903.6290628612425 None 12506 50076 HBAR_20200907 194001419.39521518 18839.68618021104 0.03668817637822 3.566698974614465e-06 4888141.298582068 475.20837170236996 42079 6684 159106 LEND_20200417 28153261.776042935 3964.682972521046 0.023796436151884183 3.3568752656343404e-06 1217579.3919047513 171.759423072582 44293 5720 90147 ATOM_20190507 1126505390.8459737 196919.39470407547 4.728409522125743 0.0008265856142664707 57941291.87215019 10128.86851475647 23152 3897 164771 STX_20200707 95165276.07685095 10196.5331912994 0.1333704270355201 1.4274655270185312e-05 1316151.8829693827 140.8679182498949 41302 None 98970 BAR_20210603 48260133.58846983 1282.5256935253037 16.344697539340913 0.0004346084700651127 4059577.080072452 107.94489036184582 None None 34079 CTSI_20210826 325730336.38136315 6645.396013558238 0.8177350756078452 1.668481022193301e-05 181245887.79519054 3698.084295969151 51111 4396 202161 AMB_20190104 19389080.50843757 5142.031099578004 0.07153039384072452 1.8966720305151104e-05 319165.4938020207 84.6286777824492 17858 4964 612678 IOTX_20200425 10832018.87597495 1444.8809594840943 0.002499651945077334 3.334975187803737e-07 1123186.426409139 149.85281733839707 22598 1815 547255 INJ_20201231 53209553.36599225 1842.6249180452094 3.9355505961062556 0.00013639118092154546 16505055.97032534 572.0023208940848 36229 1907 130999 ROSE_20210314 281627642.3362784 4589.942948162641 0.18501114748538763 3.015878608425109e-06 53171709.61919701 866.7554565953558 13928 1047 254242 ONE_20210124 65604843.483187474 2050.9320783082667 0.00758215670157347 2.3659024313592312e-07 6700181.755343685 209.06948945313593 None 1646 164688 GTO_20211225 39979185.86987385 785.8031811009452 0.06028196767873935 1.1857164176904533e-06 10338742.618787413 203.35794157720815 14920 None 467835 WAN_20201106 28877245.47608698 1858.4095993111528 0.23049232012117424 1.4793520189856565e-05 911597.5367264795 58.508398707154214 104271 15976 434390 STX_20210804 1439459154.1128857 37464.18851297102 1.3718859611805747 3.585424620137159e-05 290328111.4472635 7587.726590664691 70359 None 61340 VIA_20190205 6791226.781792637 1960.3501925668277 0.29365546548635696 8.47663561844015e-05 334416.0520541439 96.53227511108561 40746 2232 3450417 MTL_20200309 16866553.77443302 2087.8332827270838 0.2596168556488034 3.22723007546147e-05 3241148.2693431512 402.8987697163923 34756 None 606546 PERL_20200319 4569046.545491624 848.9878570131075 0.013300100291621647 2.467309054279341e-06 1468449.0052954662 272.4127974279537 11561 478 685227 TFUEL_20190914 0.0 0.0 0.00435733424926776 4.207789300280808e-07 682448.6951543081 65.90268621103516 70040 4027 310301 DLT_20190830 3387307.528118189 356.9470958032446 0.042223644379134145 4.449435756939945e-06 207763.49674286164 21.893665148700293 15028 2652 4092557 NEBL_20210620 25934763.505702212 727.2334543385746 1.4382620304448732 4.040875207962463e-05 4636691.68793429 130.27036862638943 40168 6097 644774 LINK_20191015 922166541.5652193 110484.88115780453 2.531401574734596 0.00030326690393805153 103939116.59325312 12452.111273809596 35479 11157 100360 DGD_20200208 81168403.93578352 8286.457414075632 40.654965375658584 0.004146931367705213 2586369.035323802 263.8175873953011 17608 3340 310939 SKY_20210408 78156618.61453877 1387.55507198997 3.9254462312644915 6.981807748515627e-05 6621827.209127923 117.77597193868142 18851 4258 324346 WBTC_20210805 7705515559.963682 193279.45904750968 39777.83817771475 1.0001689181695883 516220304.49061793 12979.777864570187 None None 187032 CHR_20200914 20342157.856835086 1970.1853227316883 0.04578364907364224 4.43330183643483e-06 4346506.996992667 420.8790221340802 27841 None 270101 BCH_20200208 8032773167.526558 820161.9244526894 440.5260633395252 0.04494063836007782 5919917948.050951 603925.4286292793 None 283323 121592 ONE_20210131 85422257.31784488 2497.073770808398 0.009075562324692579 2.656433239070243e-07 16117677.406787815 471.7672852459084 None 1739 152986 ZIL_20190131 191693793.21132755 55355.8715134517 0.020290149061200764 5.862805700165585e-06 14655182.682327135 4234.591293920772 55533 9836 193044 THETA_20190522 84569487.25707093 10627.773352560122 0.11379420404675872 1.4300150212085966e-05 8572049.927832885 1077.221837617858 None 3972 247302 LRC_20190528 66546423.91825559 7545.690984301873 0.0715388348986657 8.113072489013561e-06 22034746.06002046 2498.9153417885236 35777 2464 907750 SNT_20190405 101915565.1287287 20785.19712469962 0.02773753632631044 5.659830021228581e-06 19658022.1116444 4011.2093012357245 111001 5755 338064 QLC_20200417 2130410.2213060074 300.0150105549828 0.008896032572829943 1.2555232653007641e-06 46993.18339586267 6.632286312018545 24453 5657 940522 AST_20210806 30635743.836229604 747.6441909357368 0.18216055184283678 4.452072718242126e-06 6320248.048754466 154.4692504810793 44339 3701 216089 WNXM_20210110 53128772.92249254 1312.934614412758 29.712556304644952 0.000737333978832764 19238971.45783692 477.42601572922416 None None 132342 WRX_20200418 25181452.086066943 3567.882114674808 0.1346004553214573 1.911957626125407e-05 9000102.536430044 1278.4365877026016 None None 29308 FUN_20211021 216636962.97548476 3268.1283764509844 0.020408062066696844 3.0799670398375175e-07 14032675.115625588 211.77991666050607 21088 463 175860 STORM_20190316 15149799.1468486 3860.5492885764097 0.0033526296355153463 8.543342277208543e-07 6670362.4801620785 1699.775876744423 26837 2566 4061731 XLM_20211007 8528846378.454395 153635.33554626856 0.3556056836578415 6.410301884109428e-06 1050851734.4634366 18943.107950524696 639741 202045 37145 VIDT_20210602 23350402.780798726 636.4121313711868 0.5033139791399993 1.3722930841651898e-05 1268847.4638260591 34.59531568036798 28016 1591 374024 LRC_20190405 63691486.998996675 12996.215163914001 0.08064097077432428 1.647489743292645e-05 9655569.491491698 1972.6265135621127 29292 2463 750583 STORJ_20201014 84122747.80878738 7363.426351128293 0.5850076312041211 5.1217606184469104e-05 33560705.408629626 2938.250547867495 82425 8401 102320 DREP_20210427 0.0 0.0 1.349208299966219 2.5029745158631414e-05 5100507.046173417 94.62170633602011 None None 197188 CTK_20210805 70241980.06489812 1766.175663633838 1.2548574381960798 3.15568968939311e-05 12844917.32937348 323.0213404614411 80773 None 93731 SSV_20211120 0.0 0.0 11.600388380175932 0.0001988906698931841 818490.230503587 14.033156900512 None None 601967 TRX_20190123 1718507417.1458144 481100.25497294957 0.02622736181463037 7.342935365855092e-06 233125724.51297393 65268.75022031388 374058 69393 85818 ANKR_20210511 1033322046.7745249 18507.21428506419 0.1473863843888448 2.637768655588572e-06 156309353.83428445 2797.4627088456155 93051 None 5581 ROSE_20210809 121992792.35205308 2773.219971573468 0.08115777231847808 1.8453288670178463e-06 7277244.8845410785 165.4667159308425 None 1714 217823 FLM_20201018 0.0 0.0 0.2540299600081002 2.2352578633503053e-05 5382251.15406092 473.59450098946223 11683 None 41270 INJ_20210325 143318484.7040619 2712.199589511854 10.556438934873109 0.00020036711141771039 19443508.734681692 369.0486635718904 None 2734 98745 PHB_20220115 13665827.488933347 317.0089546077116 0.3698860639575827 8.578186176575475e-06 260968.91793294068 6.052241980614147 22359 429 222681 APPC_20200422 2938127.365078609 429.03215055479245 0.027019468468529404 3.94706470956008e-06 41032.383990895294 5.994102918353809 24721 3213 778214 PIVX_20220105 35996896.96541434 777.1879096336638 0.5254507000775018 1.1440887750234195e-05 394193.46177297644 8.582961536364236 69253 10389 350674 BLZ_20200321 2367396.1671538204 382.82902019934073 0.010944671712399838 1.7651295387770581e-06 189012.9393116423 30.48353857997077 36069 None 563457 WBTC_20210603 6994188054.638762 185853.03193677767 37687.64743779049 1.0009006194608845 281186798.04034925 7467.699882497844 None None 224812 XMR_20191102 1049606327.1364954 113627.8638242942 60.71497274473794 0.006572857343530144 204255158.40665343 22112.17360718391 320182 162371 86841 ADX_20190806 8938420.366591297 757.2828592836607 0.09710885351014518 8.227278113119807e-06 230422.09990657485 19.521872937593848 53986 3860 708738 YOYO_20210110 1888494.2646338253 46.623711940294854 0.011171030498888799 2.761691416630301e-07 592311.7797730447 14.643074856262805 None None 2139137 DASH_20190725 984066387.2228382 100107.64010181154 109.70422114003152 0.011187593014624337 258657718.06826335 26377.81162627689 320711 29101 102503 ARPA_20211007 70077358.17031601 1262.4456052456696 0.07137325930535285 1.2864786514895175e-06 18561952.76893776 334.5728666394845 49179 None 652155 DCR_20190625 319079400.90915245 28899.76134896038 31.962151203897662 0.0028938824867238704 12080678.532888582 1093.7957151583728 40456 9498 389258 RCN_20190813 8445813.894646477 742.0976384612131 0.016655873550921838 1.4636503444974094e-06 321510.87202643533 28.253066232909163 None 1112 1860009 TNB_20191022 7604712.742684806 925.9726342872458 0.0026390371411945347 3.2111929882938676e-07 278709.68567573343 33.913527568103646 15479 1464 2346363 LOOM_20190806 22834866.856614556 1933.4303359712653 0.03759619216930306 3.18294455829602e-06 1558326.0084740946 131.92999084555228 20790 None 419085 BTS_20210408 310779367.47759575 5517.427637704328 0.11339655851888036 2.0179827733106003e-06 157840455.43872854 2808.897590607396 4430 7055 111487 ARPA_20211021 160866748.21863487 2426.985719286835 0.16331687728297928 2.4730504272667814e-06 211003478.18249533 3195.1519680959564 None None 536850 NULS_20191118 28917716.78799017 3399.6300938913396 0.39086817576484545 4.595180178894728e-05 6160949.251606359 724.3023003538193 21191 5273 497258 ZEC_20211111 2106255751.5717006 32499.718196523292 180.00842384424786 0.002771223473996752 681379503.7119433 10489.813949043883 81334 21297 131533 MFT_20200323 5597276.359796255 960.3008660446537 0.0005886655839111751 1.0088050568176871e-07 866493.8969457776 148.4923611692683 18382 2513 872119 POND_20210511 113178486.06455423 2027.0722961869692 0.14912725428770526 2.6685333150783973e-06 28673807.839107282 513.0987749643178 16618 455 80924 FIL_20210724 4276795674.9222074 127926.55395093017 47.324846715968086 0.0014152670336656922 289424067.67528266 8655.333723290154 96046 None 29585 BTG_20190804 313378216.3145954 29043.436105103065 17.8926088523277 0.0016579616585711415 6848234.312299084 634.569838999532 74981 None 277231 ARK_20200320 23723646.664067093 3833.875124322549 0.1670594330866703 2.7062826840990464e-05 3590309.527789338 581.6129221850797 62599 21963 77737 ENG_20190513 31694921.996551953 4554.825727472258 0.40952954798628405 5.885282574700574e-05 513521.1038108982 73.79728322070923 61976 3402 347491 SNM_20200713 4670336.947998548 503.2417112 0.010777909447811323 1.16e-06 312454.5806517064 33.62872135 29290 9594 None SNX_20210809 1636349435.5001893 37196.238223357206 9.672835948174063 0.00021989484146775427 143483779.96546206 3261.8503216376116 146450 7394 46425 FUEL_20191118 3787841.059594766 445.52682452997385 0.0038298540698176895 4.5006318342653943e-07 1351947.3532213282 158.87334570030742 1 1490 None XMR_20210909 4641460110.384819 100145.66952198687 257.32652514371694 0.005558177345226525 369592484.85399514 7983.08909326059 438609 234092 48241 MTL_20200526 20023797.36658312 2253.0942989440987 0.3103741319966481 3.4886096981048285e-05 4546434.312737815 511.0198692520223 36882 None 416687 BTS_20191113 72797326.59996352 8277.38322824897 0.02688710703709159 3.055188280195861e-06 15299567.807295088 1738.4934791395128 13511 7108 152147 NKN_20200407 9854742.085263778 1354.5289677904711 0.015161925151931998 2.0839997172801816e-06 2393515.0423070104 328.98755411927806 12247 997 307809 HBAR_20191015 23765408.661552977 2847.1788641484095 0.03721801655200903 4.458791826273677e-06 5511079.714062539 660.238224910948 34896 6169 87146 QLC_20200523 2591242.688050944 283.07273543914033 0.010777047076475858 1.1794697309964182e-06 92924.02640151892 10.169861525625219 24276 5649 940522 BRD_20201228 5325614.326176659 200.8264932190085 0.07096761823474003 2.698561957122323e-06 350893.7647965817 13.34282575948073 310 None None XRP_20200621 8365620576.287947 894108.7277864325 0.18867538287461827 2.0165309073923438e-05 1064702970.5453695 113793.67115019678 951614 214593 34884 KNC_20200806 298808648.7936936 25507.383480021006 1.5315480426643946 0.00013073846222332234 122373273.59389344 10446.223795282756 117809 8772 65408 NULS_20210513 117753907.81449527 2283.0174198443324 1.0277630344872573 2.0488757936107906e-05 76362092.8889398 1522.3007485150729 52425 5364 238913 AUTO_20211207 26872976.07427493 532.4086146559396 769.0294261291818 0.015238031763743139 21860692.05062454 433.1614740953583 80948 None 20328 STRAX_20210603 160574889.1424641 4268.94752856043 1.6045538170132663 4.265770375531006e-05 3863304.632834041 102.70749587615039 157120 10711 144893 VIA_20190329 12211272.775898717 3033.0339835008504 0.527341453525208 0.00013097770243573835 1218029.7439480855 302.526449028883 41101 2229 2390217 QLC_20190923 4005887.049582989 398.49337430953705 0.01669119603992912 1.6603890596230713e-06 249277.1138754532 24.797323792919432 24764 5738 940522 IOST_20210430 1140067148.8640354 21273.4992120626 0.06098440891764529 1.1378903341723795e-06 437837950.4558696 8169.490868237737 241789 53159 143784 POWR_20200704 36622706.784613445 4038.163824937786 0.08564553951895833 9.448841037234612e-06 2396060.2003196515 264.34525458799123 81461 12727 196411 WAVES_20210420 1262324980.097413 22548.93641593224 12.584875879197135 0.00022501006507214357 139211248.40260115 2489.0139849231446 175905 58066 111113 BEL_20201224 17724739.1307457 758.1146382949775 0.8371206094726082 3.590405289415278e-05 8317154.394201081 356.7222547374186 10164 None 227684 YFI_20210219 1540425700.0292883 29804.675783553812 44343.28302946546 0.8576963052309636 575030975.8401021 11122.359682833714 86287 3371 19652 SYS_20200526 16197465.537440643 1822.651299963335 0.027479770342561178 3.0900979748045957e-06 762490.3882286988 85.74198310617581 57749 4473 1010431 ANKR_20200621 16232858.816440476 1734.9379705700646 0.003118786963654697 3.333342367972616e-07 30033984.377690587 3210.0157456047386 None None 5685 MTL_20211216 140846587.09868175 2887.005556981958 2.1782560393818082 4.4573055305949065e-05 16794672.263361003 343.66476764252633 65012 4497 205875 SRM_20211002 1095541763.9902024 22746.87773587593 8.238331983263828 0.00017105560246277783 301005591.6064554 6249.892929965237 145919 None 19134 CDT_20200317 1526373.0673847252 302.41704974764804 0.0022575545178275445 4.483047458983499e-07 92006.78957549407 18.270690738958137 19245 290 281286 IOTX_20191012 25315583.793957192 3062.3969398999507 0.006335406305605206 7.662285380790391e-07 3707555.351096038 448.4060815490282 22490 1777 588755 ZEC_20190414 438271517.7665211 86388.68366709784 69.45587078063087 0.013687993339991185 156704398.43196356 30882.4687960317 74774 15123 156086 XTZ_20210806 2716392722.3285484 66291.69019057175 3.230102544170571 7.886552610722517e-05 153289755.50961888 3742.691462514639 126383 51232 70665 CTXC_20210813 32974252.24065229 741.6974000784159 0.18132378054509404 4.078546506400135e-06 12005994.523662865 270.05286826217787 20325 20598 812838 POLY_20190706 38042921.27661456 3461.342282007459 0.07991073278744976 7.2722543355053245e-06 3926927.9896156765 357.36900540830584 35158 5092 354740 FORTH_20211104 147879293.68682197 2344.855601374442 17.077971564242016 0.00027079773161031083 13434886.999477774 213.03097444646147 None None 138960 FIO_20210104 13370774.785705458 399.59917127694376 0.06269642516482254 1.9046415444274116e-06 1120974.1774340887 34.0538393211171 None 161 541516 WING_20201228 13177414.193920944 497.94567966901644 14.790302161302163 0.000562405048099756 3368977.602626299 128.1062408318796 None None 238835 ATOM_20210825 5526634707.620647 115006.98972525522 19.83032121274469 0.0004129324308762853 574467808.7227778 11962.30692237167 174796 34388 61182 CMT_20190706 48756295.42519694 4436.100625453839 0.06094536928149617 5.545125781817298e-06 39179336.61234083 3564.7392431101553 291101 1649 722276 FIRO_20210916 92677747.00887384 1923.0377121944866 7.56067777423231 0.00015689493735813236 5749038.233654479 119.3008114448196 75149 1259 226350 IRIS_20210723 66185499.3400332 2044.69450288001 0.06295518364056903 1.9445831559016085e-06 2595857.6032224623 80.1818163086514 26418 None 789272 NEO_20190625 1263946988.949485 114502.32496461367 17.929987084013582 0.0016233974765529752 861889451.6693549 78036.2615071362 322615 97854 201306 CTSI_20200730 10204569.03056989 918.974298976405 0.05131259681148945 4.62641471731257e-06 2151405.800578937 193.97372335834257 15698 124 236053 ALGO_20200324 109476725.04283828 16993.54196708382 0.15844935612038621 2.4443074464237727e-05 74204166.05410174 11447.051605807745 16194 823 354014 WAVES_20210127 677801085.1371202 20799.61955545658 6.779469936234029 0.00020808270904739245 63143561.09379219 1938.069402900033 154183 57279 125387 VITE_20200701 7316038.846913488 799.7228205568085 0.014512720250273323 1.5867122922192537e-06 1842944.964112685 201.49381907820458 None None 603624 ONE_20190830 23897444.62250515 2518.260708339336 0.008881384323352604 9.36282693460598e-07 4983259.6609471915 525.3392497943303 70928 None 130681 REP_20190513 220502253.17587116 31776.691039544417 20.563279649814525 0.00295806980408329 40602117.26202862 5840.697549222848 125314 9946 267119 STEEM_20200127 53156460.25175451 6185.496282602936 0.1583749040952646 1.842913120812106e-05 664492.5215264487 77.32298204682724 10500 3809 175956 XMR_20210710 3840984704.9235096 112933.61227193619 213.7173951891212 0.006289018560101094 158028458.611526 4650.271487506152 429333 228154 31847 MFT_20191113 9561452.978581592 1087.8309555426022 0.0010592591518118167 1.2036386591689405e-07 1378162.4218273223 156.60091930175318 18596 2355 1257642 HIVE_20210624 86886919.7690323 2577.327377156232 0.2324545454065231 6.900047588068073e-06 12609344.680097543 374.28856551232025 21072 169 116714 MFT_20190803 14476267.51676759 1376.4790979489244 0.0016324022917072471 1.5509469580927214e-07 590264.3284941238 56.08106956228061 18850 2169 955030 BAT_20201031 279670662.20750195 20592.09761939115 0.18805573149392238 1.3856511058170893e-05 143351715.72416493 10562.584922884189 None 47019 21296 BAR_20210821 66259969.30109978 1348.609089690749 22.45602815548681 0.0004570542970103404 12250510.969352191 249.33833536126278 None None 38736 OST_20191203 7028874.192801046 961.392652751577 0.01030630394706934 1.4106546404178692e-06 53274.25540639577 7.291806644729195 None 756 508690 BTG_20201129 159749973.58865696 9024.538179858813 9.142494749293736 0.0005161080877002531 11606175.608608803 655.1867146913206 79810 None 374330 XEM_20210825 1813066048.4620984 37729.15697127024 0.2006806900257091 4.178831208694111e-06 107880434.91195253 2246.4250454780044 372145 21825 119011 NANO_20210930 564397226.7576258 13587.38797826179 4.240081472393051 0.00010200108227661995 14403683.120415326 346.50071622860867 138387 110504 104141 DOCK_20200423 2514430.023301786 353.5190025235877 0.0045078047748259445 6.336306184864634e-07 263992.02804084396 37.10751471251869 42708 14999 521704 BQX_20210201 600714844.4787568 18173.76878396254 2.6903425236894347 8.136865882957305e-05 66435278.13875615 2009.3164470771549 35125 474 65097 EVX_20210105 6286815.813765579 200.9447248089501 0.28800308126424273 9.205407255936334e-06 358856.2962657139 11.470079899777032 16660 2806 1350138 TRB_20210603 110548046.6729846 2937.8433022201793 65.00534067095963 0.0017263145233141503 85263912.76937804 2264.311353638126 21996 None 254504 JST_20210420 203584763.51240218 3633.4851113141776 0.14090352310847268 2.51793069561139e-06 687264766.587998 12281.346936030315 None None 74075 ARK_20200127 22407255.31200287 2611.052853421373 0.15590423563482325 1.8141634439050552e-05 516681.9199230427 60.1231549248361 62771 21646 90381 SNM_20200730 4224913.824749653 380.71329456 0.009766775070740513 8.8e-07 248704.38177231853 22.40861025 29256 9590 None VIA_20200117 4333018.774228946 497.5479425325523 0.18706709543836478 2.148037045315169e-05 106343.21993022008 12.211082627488295 39927 2184 2883050 KAVA_20210107 85357171.14657865 2328.7813983394335 1.817755919871028 4.9216142579258503e-05 58192133.7436025 1575.5648599508477 51671 None 85719 AR_20211207 2347882822.6900215 46516.3604339122 46.94521736865681 0.0009294761945930756 65067745.90122004 1288.2871619504785 49135 None 49164 BTG_20200907 145995579.96911016 14179.098107096179 8.336677325496021 0.0008113388219035846 5154848.115944704 501.6780947838407 77416 None 234816 ICX_20200310 166658925.88303876 21050.132127512377 0.324490508952535 4.094425385348146e-05 33028885.57219974 4167.5889989237 112604 27516 143772 CMT_20200106 9496368.945140088 1293.1767358236912 0.011824668241518493 1.6099236361749077e-06 8181574.905105692 1113.918001912048 288363 1644 926664 ZEN_20210916 1234015802.3962739 25605.487854865052 107.1233090887846 0.0022225633589235084 224170451.29638112 4651.023530198683 120228 7616 1307330 XMR_20200412 943674508.0505059 137125.98829718892 53.864987775127474 0.0078271582206235 117942766.90693034 17138.344139473378 319698 168652 87089 FET_20211207 422092946.59636754 8362.468355323252 0.6126469210596726 1.2129898650674872e-05 62701897.99440724 1241.4453443454645 88608 6930 73164 ARK_20210204 75163974.07656983 2006.2179841542684 0.5014827600927618 1.3369319729718379e-05 7180482.60750985 191.42865006111842 63557 21630 89752 AST_20191213 3552787.588058623 492.93528675089414 0.02057452177665643 2.8580009723713e-06 2194566.079044924 304.8465503076563 31894 3523 341821 BZRX_20210131 48218128.4679664 1411.0808125100386 0.3430575415918707 1.0041355276894503e-05 20348421.160901688 595.6019076344182 17967 None 192726 GXS_20190909 49916851.98873943 4805.854898236125 0.7684652687937714 7.393955065607064e-05 3875926.955734781 372.930708934473 None None 606832 LEND_20190318 10323847.716873283 2592.617688424484 0.009255819806514107 2.324404893343963e-06 393447.63665410446 98.80611669533415 11643 5926 466790 BCH_20210902 12317463200.338194 253260.8391705385 656.0982914993626 0.013484638697822937 4935289021.253837 101433.87078307127 None 614390 485301 WNXM_20210527 165617076.59713268 4227.1388617756265 81.47677972207192 0.00207830498172857 31849079.239513747 812.4044699942659 28525 None 115981 COS_20200412 10294048.709409846 1495.9896908876367 0.005237780693642359 7.611054955626753e-07 2928701.860381546 425.57167074724185 10717 None 122996 SNT_20211028 322408766.3375294 5509.277977603001 0.08318863768641246 1.420459297298886e-06 15195091.478511827 259.45861795840665 None 6176 177655 IOTX_20210703 188372443.99247774 5573.111361095108 0.019800297519998813 5.848021766719659e-07 20646915.001743317 609.8070406459874 57205 3218 211014 VET_20190923 224741995.9251524 22356.7164149288 0.004049684623477577 4.031590607546242e-07 31708464.76704657 3156.6791150457525 113683 57506 165877 EVX_20200314 2886161.521421897 524.2312177998681 0.1345054993514884 2.4178333216756408e-05 534777.5767698669 96.1301248672573 17819 2870 590577 AGIX_20211007 329874055.81440365 5938.962928728863 0.33610967703294875 6.058858434964758e-06 5054205.982072705 91.10930341802867 None None 126140 WPR_20200217 6181948.379308496 620.1402898770499 0.0101657365574463 1.0195519288566157e-06 805627.8314679291 80.79880930143202 33702 None 661925 PNT_20201224 10496019.66869952 448.8891389908437 0.37655115433220515 1.6147594099481277e-05 2938803.4612141363 126.02432600158919 None 107 947111 TNB_20200229 5119419.614894145 584.8904469703944 0.0016446381917272128 1.8875488724296382e-07 482634.2913850437 55.391867772630356 15226 1446 1323149 VIB_20190719 5387975.005462986 501.62876042776804 0.029611980064293848 2.76327708670675e-06 340752.3635618975 31.79771148121004 32590 1122 2209395 QKC_20191015 20715413.694988366 2481.878174940378 0.005456518016536499 6.537016258792194e-07 6404803.835183027 767.3081382317467 50314 9238 292005 ICX_20210110 401300329.983164 9920.908164342158 0.6882396007183128 1.7084976067469953e-05 76050169.57574396 1887.8822517224048 None 28111 340142 GTO_20201014 6875329.173427422 601.8108220070322 0.01040571153892305 9.110233905372554e-07 3202692.559537106 280.3967632125913 16522 None 1354714 NAS_20210508 55014544.17294067 960.0773358740873 1.207449633743374 2.106888768477273e-05 26338229.312841155 459.57792333554073 24928 4898 492294 NKN_20210624 142619898.8229875 4230.535168479383 0.219920525992858 6.5198617357721745e-06 14580723.338701297 432.2666097068454 28171 3242 104026 NEBL_20190614 20083313.95797265 2441.0584909059326 1.3175237738649916 0.0001601405326777169 551084.2818449396 66.98241974494259 40231 6156 715559 RGT_20220112 302354816.057738 7061.251260364397 26.810084459301603 0.0006265077777970145 12554265.078551909 293.37261985049 46184 None 48282 MTH_20200410 2138405.5797784617 293.27889842281655 0.006152907819065337 8.438614472094506e-07 75659.23940072488 10.376543438149632 19141 1920 1281286 GO_20200807 12429717.616727801 1056.4710233951605 0.01189278570926981 1.0107449164463792e-06 1012081.63087742 86.01486551975552 11725 682 681368 BNT_20210930 772523417.2501824 18597.850759777884 3.3256431536696165 8.000299125117546e-05 35018862.784106165 842.4276578957587 131689 8150 40873 KMD_20211002 121801884.56262764 2529.4459470226097 0.9526271404313351 1.9777467720547894e-05 2906234.0191953066 60.33625021114578 115659 9729 128638 BTS_20190318 136713787.6461145 34330.886236861974 0.050626831002227715 1.271378679025206e-05 5812507.293584174 1459.6801139728154 13785 7207 180886 DLT_20191216 3149945.1331870966 442.641866819496 0.03840909448110586 5.397360510625314e-06 60818.84404985432 8.546445356529839 None 2614 5273124 BNT_20190512 41397895.44560564 5683.62812937065 0.6329054874380106 8.697746899482275e-05 4098767.135245863 563.2758737263479 807 5135 153854 INJ_20211225 384779630.98069423 7567.540800688185 8.807652557322013 0.0001732671927702647 10286018.763017245 202.35012499087043 None 4447 136917 BCD_20200324 92943481.14239603 14427.166566611637 0.495731031429585 7.650346697018964e-05 20224639.393478755 3121.1583171645257 28958 None 1207769 CTXC_20211007 38635726.33592884 696.0237113922553 0.21050111368770094 3.794220904008066e-06 6945829.429327519 125.19654055383123 21102 20647 793028 SNT_20201115 101929875.82081948 6332.690856113187 0.02625071718346705 1.6318922036897506e-06 8052802.043226179 500.60746075441364 112938 5694 160974 RVN_20201228 103466199.46154441 3908.118033577569 0.0131968044683074 5.018118880073007e-07 9678740.04094525 368.0365822758556 34158 10361 209765 VITE_20200411 4759372.910605742 694.1248360180325 0.009824833837016649 1.4316569887955334e-06 3551694.124677844 517.5464338644828 None None 524494 ATOM_20210318 5020358014.314317 85346.9948381478 21.018598035492 0.0003565962961085056 1086177508.4450226 18427.81691594368 None 21022 52553 DUSK_20190807 6317686.233893331 553.226475538316 0.10485878578702187 9.156945530994828e-06 3011864.4360775547 263.0154295694322 20241 13241 227094 CELO_20210704 430611543.04596937 12421.289838301613 3.4191566581670374 9.843734361913651e-05 55288265.44038743 1591.7463068741222 33783 None 78561 BEAM_20200511 17590757.562226046 2008.9750851086555 0.29735756164349003 3.38755470291178e-05 126854403.89069203 14451.498395059969 14967 1484 417545 KNC_20190603 45616729.0943426 5218.907630939769 0.2747285348334881 3.141738847152872e-05 6544444.557563113 748.4091782455772 96822 6690 215563 HC_20190627 242208909.45360935 18634.40042183996 5.523080784606058 0.0004235259750540729 347228305.9382099 26626.48122923366 12859 834 640655 TFUEL_20210212 0.0 0.0 0.04468281740804543 9.358408131921327e-07 29105861.846179593 609.5957014089743 84575 3576 46280 GXS_20191020 31319617.852923434 3941.2698265514778 0.48256149079226346 6.070271444419994e-05 13894829.371592969 1747.8681488030013 None None 581889 FTM_20190930 22676327.70425243 2813.8710615623468 0.010869601250524443 1.3499441637571157e-06 2888022.9237284055 358.67642251327453 19095 2170 407157 CRV_20210408 777700427.9459081 13807.370833462197 2.90177862168316 5.1611101698413286e-05 439995142.2788425 7825.763779936166 99016 None 26027 ARK_20191011 26336606.191959992 3077.204930844281 0.1844844563511949 2.155541509829498e-05 442413.39551752777 51.69218358034693 62861 21766 84118 BAT_20200229 311769802.3202042 35651.90115887685 0.21637720938686392 2.4833581005966904e-05 65053830.09085451 7466.218664560149 111168 35138 21502 REN_20201228 248995564.1821368 9405.04299689394 0.2811984034686444 1.0692641698838288e-05 49710114.7477074 1890.2399133451759 30677 978 102602 AAVE_20210826 5051685028.635945 103062.08480301035 384.236542549589 0.007839842002626793 258964752.43281788 5283.835654597154 275697 12646 14216 TNB_20191026 7238374.226681111 836.0149120937954 0.0024680005630379545 2.850619518431141e-07 392126.31503385736 45.29184247632614 15468 1464 2346363 LIT_20211202 140106401.73773837 2451.2365227224213 5.054295313628743 8.838791585792045e-05 22623605.130566858 395.63444211329727 66336 None 136723 NULS_20190614 63566305.58635147 7726.132137543211 0.8987851512526148 0.00010919533063503434 16350908.232630422 1986.5068177382059 21055 5316 664729 FXS_20211120 708801251.9447112 12189.531309789343 19.953067140718897 0.0003420660765021195 9741970.284644669 167.01179468634686 21603 None 95624 RSR_20200914 116521890.30931814 11288.24522915704 0.01706348470516113 1.6522837215900073e-06 51218563.69796983 4959.573059293066 43707 None 120167 VIB_20200430 2401822.394485827 275.106565862245 0.013215977575952442 1.5074086770411512e-06 627295.3157590984 71.54903196590718 31186 1107 None POE_20200612 4437547.110880789 478.263097560245 0.0017672659457671125 1.9e-07 338110.27453575743 36.3504725 None 10288 691823 ENJ_20210106 135060542.03172648 3975.838282262463 0.14697779547068027 4.3118670322637525e-06 16982671.89498643 498.2182705165951 70130 16066 75025 GO_20210813 32638058.516179718 734.1823439927668 0.029718663946548547 6.68400549702687e-07 6071730.980251246 136.5589089787495 22518 1111 169047 ATA_20210704 79551414.15586235 2294.7159411638195 0.4617916442511579 1.3309529837366668e-05 6875686.54270027 198.16762891161875 68393 None 98513 LOOM_20190621 53263293.1277851 5568.072229536842 0.07691518679864814 8.047689787501025e-06 3406543.6930069006 356.42904905965196 20422 None 421831 FIL_20211204 6543164148.267629 121873.64861507855 49.74553633556802 0.00092719886635885 701684981.4084944 13078.59090942813 125536 None 35649 COCOS_20210702 17821523.91067308 530.5744382620487 0.42467035304889655 1.2628994679250922e-05 1461659.2449099435 43.46733105882763 95985 1199 327250 RVN_20211207 943581371.698589 18694.151193783204 0.0921737943303638 1.8249643392340865e-06 51907551.145540796 1027.726269334838 79030 59095 61120 FXS_20210310 69152595.32763082 1265.1945566533498 9.179569614925619 0.00016765302079170142 16923076.195779275 309.0781991235566 None None 69148 ONG_20210207 0.0 0.0 0.2532233021287012 6.446556902204033e-06 30214829.86267241 769.2089091434929 97493 16717 259663 POWR_20201208 45356200.02113405 2361.4339649069934 0.10492345788138494 5.465278592439203e-06 3000886.881240321 156.3109257122959 None 12585 345001 TROY_20201031 4946371.4631684115 363.90259763309814 0.002602350077337476 1.916632109533276e-07 637125.1263113215 46.92429683127389 9633 None 684967 BNT_20200113 15267452.546569474 1871.70857693774 0.21901092362935534 2.6817346514523378e-05 1928689.1895274979 236.16322627773033 757 5055 126434 SNGLS_20210725 6694802.743579605 195.95144828661378 0.007856101509746083 2.2990546430611637e-07 31526.58954945456 0.9226122141323977 9465 2136 None ICX_20200711 222377807.49427986 23949.41175742107 0.4008894110785268 4.3180011466186904e-05 35358467.4228694 3808.4793126332515 113159 27780 182019 ALGO_20200704 163036379.35411933 17977.03302294529 0.20283649157117042 2.2375850879818208e-05 59530469.253262445 6567.087078358485 19332 916 300563 PIVX_20190726 29861935.57618769 3019.8197585226653 0.49242387459855264 4.981877525310845e-05 9403336.630497685 951.3403764307718 63340 8621 284209 XZC_20200520 44629358.469075486 4585.6654990973475 4.4188431072183185 0.0004528463336782416 30761077.759670272 3152.418165900215 63600 4099 177140 GO_20210111 8907511.823613273 231.06363755048 0.008360344742374175 2.1747029839640138e-07 349923.2117461884 9.102244897697894 13372 687 698826 LOOM_20200229 16407898.497422941 1877.3023272102694 0.019675758679721773 2.2522703328576547e-06 16379421.727066163 1874.9409476776968 21495 None 480790 LTC_20210408 14765003095.389482 262130.77402947188 220.26617134830127 0.0039176592194973365 10017158494.614027 178165.41273392117 159220 286320 86501 BTG_20191020 130694684.84386903 16450.292848299992 7.462035150218202 0.0009391217332622199 10996622.67074576 1383.9612297027838 75031 None 318337 POWR_20190509 44216882.084570706 7422.863148953772 0.10618650230518106 1.7828078482278943e-05 2442413.8856622814 410.066679799382 85195 13226 672162 WABI_20190513 15741203.438403893 2263.5918283230294 0.2999551891892121 4.313368528452452e-05 1415588.5095440932 203.5622368398088 None 8046 956243 EVX_20200704 4820186.951888394 531.5730285168331 0.22114852411813973 2.4386780755499315e-05 625556.9565801116 68.98223902252697 16644 2833 1106208 NEBL_20211028 22940968.607249763 392.0122103643029 1.233834664016738 2.1077603252401786e-05 608647.521618649 10.397528417196007 41044 6273 1043231 FET_20190623 0 0 0.18626911892017442 1.736530205359739e-05 31598455.21068966 2945.8276408976126 9844 277 385628 THETA_20200511 142480843.1652431 16272.20789165516 0.14243019173218954 1.624003129814615e-05 8927338.565820068 1017.9039707442815 None 4034 365481 JUV_20211221 23680203.673832867 502.06316292865944 8.696034506206718 0.00018451310595091287 6037436.693131009 128.10278011621426 2782416 None 37465 DOT_20210610 23303937957.99968 620848.7347542739 23.196555046160704 0.0006193402644771397 1452158373.0871491 38772.1430643791 464321 25836 17770 ORN_20211225 187645314.77886552 3688.22631235802 5.488759199248062 0.00010793860280711635 6549275.469875864 128.79407129286457 None None 62828 QLC_20190811 3619111.90959217 319.57785310658494 0.015070599991653803 1.3315744383193273e-06 552138.2053500237 48.78459524310678 24871 5757 940522 DREP_20210401 0.0 0.0 2.969471927062467 5.0523386173173216e-05 237702.37943346848 4.0443315866870755 3489 None 317071 REEF_20201231 0.0 0.0 0.01170525925383263 4.0595675971355645e-07 71621879.53980541 2483.959176987385 12701 383 148816 BNT_20190227 33130424.467885405 8716.794999851096 0.5196247227897306 0.00013671609278061367 3123555.031265952 821.8243296185758 849 5098 140738 CELR_20210813 244182001.7543103 5492.252022531063 0.043323998163302437 9.743972420749634e-07 53463681.71983304 1202.448209480026 58476 None 199421 SAND_20210506 424165682.19550467 7409.307098961855 0.6041746673046378 1.0538941563685829e-05 82926766.38789903 1446.5358981806241 110199 None 21212 ENJ_20190723 78974461.51651523 7638.676263159535 0.09016593611884165 8.721456354369943e-06 4446588.75275714 430.10399938497187 None 12705 21300 GO_20190623 14933976.288830088 1391.940045452365 0.020381026472379455 1.900060959685471e-06 1602760.2433973937 149.42045094453144 9881 674 943493 MITH_20190201 19241042.802416652 5607.542314206097 0.03931294739861531 1.1457228087773167e-05 4301114.702878872 1253.5018471877197 42 1974 498260 BAND_20210325 270560305.5094762 5118.491726661222 11.861530802464427 0.0002251384845348477 187186848.33440748 3552.91100792041 None 4390 216728 WING_20210128 12744877.663287504 421.0844547068314 14.194716550993387 0.0004668221480694042 4245078.13416288 139.60803558093517 7841 None 403766 HC_20190615 120354534.04004806 13851.3977508827 2.724611588690587 0.00031400297198840835 135216228.44009584 15583.247816859852 12748 812 744090 CVC_20210125 104492738.26003464 3245.1858642433795 0.15585103146964893 4.828870549259519e-06 42312473.21742478 1311.004834932678 None 8131 160531 DYDX_20211216 578668604.0972332 11861.337006553696 8.573254190367383 0.0001754321467588611 144148674.42896855 2949.6747496337143 None 2500 12899 SNGLS_20210523 9075327.109816074 240.27745205182896 0.010154407660341315 2.6997444040887957e-07 467249.60481573484 12.42272861311913 9517 2138 1034837 OG_20211120 8044065.318262121 138.33692559927252 5.842039178362786 0.000100153194815653 926725.9831780534 15.887358009805432 765359 None 241803 EOS_20190329 4406013056.216381 1094372.7119791722 4.249230724449599 0.0010554232492806668 3180664552.021321 790012.953886142 800 63682 96004 DOCK_20201226 7791487.150628297 315.4974932078468 0.013904137693056144 5.638761263156786e-07 3513827.8496564687 142.5017271940533 43086 14869 287642 DOCK_20210703 59602975.0240641 1763.4087689642195 0.08652534881667003 2.5555278790221316e-06 34925764.60116756 1031.5331443916962 51121 15124 237761 MTH_20201101 2011836.8641141793 145.9694566495139 0.00578927383792515 4.2000295165049336e-07 205824.88817905888 14.932280451484 18928 1894 2394440 SKY_20201231 10473907.555396069 362.6052513895387 0.5542229162696642 1.9203838886806414e-05 455931.4607697118 15.7980373222021 17174 3816 753653 DNT_20200309 4354818.211953188 539.0629600294593 0.005640911892883757 7.012071873472231e-07 159292.06009118175 19.801184550354787 59047 6099 762988 AGIX_20211216 184262874.3391893 3776.9528791752714 0.19008456014691394 3.889648167641461e-06 2284544.820083583 46.74801344446369 70790 None 124836 ENJ_20190805 69817378.23170123 6381.474118079945 0.07975890636993273 7.283955613332822e-06 2727153.594276639 249.0563955242565 47042 12742 22336 TNT_20190725 17639956.85042393 1794.4871146115513 0.04111578996004237 4.187570909200052e-06 999764.7089123294 101.82427761098072 17586 2546 635699 HC_20200713 56161985.692484476 6053.242786731434 1.2612211876099235 0.0001357437074614329 21895188.91441917 2356.5526396238756 12688 846 560022 XRP_20210718 27109511265.747284 857726.1995231562 0.5852641997905791 1.8552991541807605e-05 1604653849.4093466 50867.846190273405 1923041 322759 15139 PERL_20200526 6654697.809399155 748.7921207480513 0.018745768714885105 2.1072854102310997e-06 4154755.064338547 467.0523179565462 11702 477 584750 CLV_20210825 184107462.65052137 3831.200393287275 1.42883826263257 2.9752341109454307e-05 29825181.148169685 621.0422735577316 65914 None 93229 RCN_20191213 22395131.027727857 3107.2611653453855 0.04384554585937799 6.09111304230257e-06 2735654.202470441 380.04268541529626 None 1136 743081 DODO_20210826 304604638.11576587 6214.399525489442 2.055679338737868 4.194907980947717e-05 97514282.74939433 1989.9185405685917 102338 1068 31066 HBAR_20191220 18828192.13528054 2636.659559521396 0.0182214026626319 2.550001999374166e-06 1161561.0659922266 162.5551608466314 34975 6149 105891 BNT_20201101 39392106.87299437 2854.7622665233125 0.5908661710489542 4.282113019753929e-05 36169089.41597404 2621.2387218890963 85994 5231 80546 VIB_20190530 8839177.611019662 1022.1948812132536 0.051934416492774 6.005886184652283e-06 1482193.3448741052 171.40626840780098 32901 1121 1724143 ARPA_20210511 94379540.3270175 1690.375602078978 0.09649890908877631 1.7270373973033752e-06 27658561.90345108 495.00425666932455 41318 None 485281 RUNE_20211230 1999578391.3106632 43113.511594952055 6.77026619548142 0.00014548464214952345 60871369.09894016 1308.050391936051 None 9064 73120 FUN_20200905 23606395.314548396 2250.0971449606 0.0039229641679784195 3.741481699208558e-07 403856.09091250773 38.517307539969536 34229 16684 242741 RVN_20211021 1114148383.5157688 16808.803652824583 0.11206083650496561 1.6973293963800367e-06 51697103.580620065 783.0301499775246 74247 55858 54350 GO_20201111 7743316.418688774 506.2453781589275 0.0074485829728750605 4.875940430493748e-07 477228.0500297585 31.239976142839744 12120 678 694128 CKB_20211011 417261495.20373124 7625.6854627568855 0.014822032479757177 2.709007253005235e-07 23156820.848639354 423.2347737814062 None 8580 130039 LUNA_20211202 25097833283.5221 439084.88703590486 64.31780963291818 0.0011250572427385888 2280518756.4233007 39891.19279338904 None 17215 5944 NEBL_20210421 70261322.67594059 1243.661830381045 3.9368705525076204 6.983489896360868e-05 4815848.884883123 85.42681701474852 40101 6048 477279 IRIS_20211207 112752330.54884595 2233.854260905836 0.09647557996708737 1.9101361110927158e-06 9749982.208246378 193.04152516975182 None None 440878 VIB_20190923 3680518.536908037 366.1278741021125 0.02015361448468523 2.0054774851442896e-06 609592.2765558787 60.66026452374902 32228 1118 4575381 RLC_20200412 22415798.82559121 3256.982874553511 0.31890766760479655 4.63406913324384e-05 260782.48307504816 37.89448100715997 30212 3566 395542 MTL_20190105 11087089.198511042 2909.8666261571834 0.2722701208947496 7.146116639031505e-05 1717683.3782888048 450.8304374288092 32347 None 539006 AE_20190207 81572713.80130078 23951.57644572516 0.3585685131579094 0.00010528374935338638 19936312.71848466 5853.7480962788995 958 6307 511202 GXS_20200317 18227839.261570804 3611.4430282784706 0.28645809719078774 5.689096127457608e-05 12143678.350679731 2411.7507640892272 None None 697464 STORJ_20210814 180427183.73008624 3782.4825163154915 1.2551066961456596 2.6305711056513196e-05 54872716.18228945 1150.0741898757608 104122 13731 58754 CDT_20210723 9851346.565298349 304.60003752771587 0.014615021802552756 4.514497672983518e-07 575015.1869937786 17.76189429399399 21069 337 581034 NEAR_20201124 231374725.41431978 12633.791037548277 1.1720263745587842 6.383857354084194e-05 41912097.64003675 2282.8910556314754 33099 None None CMT_20190904 21384543.476224016 2015.0784501587889 0.026738358937428982 2.5220954658250426e-06 3458493.9106761827 326.2224069589308 290011 1650 567314 SKL_20210708 306201363.9161351 9011.807798246613 0.25273305057019657 7.438453830614105e-06 44091892.37486817 1297.7151385420714 27188 2292 152464 SC_20210618 720138611.1688544 18954.2024395212 0.015050644347561223 3.9446434393099374e-07 33963220.83686781 890.1465821540979 137889 46852 46227 OMG_20191012 117019500.12923934 14153.865938502215 0.8343910160192161 0.00010092214176255694 60762028.551254086 7349.352931059089 None 41650 None POA_20200914 7008466.034681866 678.9639210885726 0.025093248691566733 2.4302282522927363e-06 333746.0772002574 32.32260421411769 18039 None 497841 RVN_20210114 129528127.26708156 3478.6102292816418 0.016391329394866882 4.3859541048556216e-07 15537433.93365946 415.7470727273502 34994 10840 220085 CVC_20210909 358206109.4863956 7728.772801713695 0.5381429531864008 1.1623729692162224e-05 216425585.91100183 4674.7290737558815 105815 10024 249289 COMP_20210127 2611804.2992715803 79.76394100239078 2.8317254215394175e-05 8.648072098133497e-10 3.1916083420797805 9.747152333825263e-05 1971 None 2976812 OST_20191127 6792955.551433976 947.7102894427122 0.009956035185403101 1.39112349068925e-06 199616.63029845274 27.891763977244914 17897 755 567623 BCD_20200626 131054487.4266761 14163.228416668488 0.6965170496135394 7.527350084292172e-05 20151457.208518688 2177.7941143194757 28252 None 966151 ANT_20210523 137185187.49218225 3652.9311531169387 3.9093245662490985 0.00010409646811548435 29869227.60013061 795.3499500540116 83881 2987 111610 MTL_20210105 24016216.730560325 767.6273975305136 0.3710833191543105 1.1860890736671923e-05 7139828.812126895 228.20947492917105 42913 None 362516 ETH_20190708 32585483973.188705 2852532.308874887 305.33625290070216 0.026712454691217215 9431071377.576225 825080.7575904495 445455 441811 35893 ADA_20200309 1340799680.8298566 166521.7542817719 0.04328449004181886 5.380583156470186e-06 145742667.2924989 18116.894528627457 155744 77050 41962 ONG_20200312 0.0 0.0 0.10946035165783204 1.3796324167006025e-05 7287063.035176379 918.4575267304722 84533 16498 345761 POWR_20210206 59130358.78248485 1560.1263713887904 0.13810933722507776 3.6181780513294023e-06 16843987.83321112 441.2775290903193 81320 12560 369771 ATM_20210218 0.0 0.0 8.055934348005763 0.00015450433402971846 1433750.5625229527 27.497825361769518 None None 230170 REEF_20210219 0.0 0.0 0.04201135735706176 8.124940787073349e-07 166996275.11111903 3229.685809500702 53519 5065 58276 LTC_20190908 4341810268.672753 414738.0215248039 68.69351181259222 0.006561735639695348 2887691012.6826897 275837.7688717109 451946 208243 124361 BCD_20190426 179795639.362488 34613.56204659446 0.9518629693600201 0.00018294060539900475 8695142.921302075 1671.138347910905 21262 None 3139253 FET_20200526 7653541.939699797 861.3050974369517 0.02251984028387017 2.532397049209659e-06 3815152.911787921 429.02089243569833 16907 392 951449 NULS_20210704 43559619.89011979 1257.1945703044682 0.3841464792018053 1.1080698595487132e-05 23922900.62345106 690.0556576466644 55974 5369 232645 ORN_20210220 175254551.3078364 3137.2867963308313 8.448486895285553 0.00015104427857245677 31058058.55488897 555.2641681792851 36502 None 107725 XTZ_20200310 1751664141.3595707 221246.84545562108 2.530765522769773 0.00031933231681386835 288682209.87499785 36425.95810355391 56936 22330 104382 AMB_20211007 19560460.1663378 352.17724997189424 0.03328129055394424 5.99602356191133e-07 344388.8757564229 6.204578545860931 1520 93 718802 AUDIO_20201129 9411125.022847349 531.7560729151784 0.13283987551336424 7.499963049439255e-06 3857262.6973648425 217.7759320416278 23125 2130 74005 BTS_20201129 63517328.34467012 3588.198118924789 0.02339858046388483 1.3208863608096682e-06 15332823.583484925 865.5618051439476 13094 6888 94225 RVN_20190929 125775662.73927781 15355.20552665727 0.02782899836916132 3.3974775425773734e-06 16137149.570038505 1970.0889891234058 27837 7033 264985 FTT_20200106 61649024.857468605 8395.765588719976 2.136903484931854 0.0002910174295000736 4254101.938223297 579.351299496105 5494 None 36573 CND_20190616 32811232.11024018 3720.758834627724 0.01888713638067187 2.141222201477919e-06 2531418.179853359 286.9852103929171 36305 6157 632693 THETA_20210704 6235806664.644989 179877.8667484539 6.245126083231077 0.00018014055462095056 144208222.51189098 4159.683701814588 180911 20974 18384 ANKR_20190811 12721274.27320451 1123.1518212675574 0.004856530368829636 4.2884541500469994e-07 6892830.324251478 608.6564803409137 11990 None 12914 SKY_20210511 67323376.92360422 1204.8285885118064 3.366168846180211 6.024142942559032e-05 2967328.3802483925 53.10372455146741 19369 4339 250717 TNT_20200621 15815053.02765949 1690.4957158041013 0.03686628682680882 3.940248476786899e-06 719913.8785870913 76.94399972654034 18004 2604 432834 QKC_20200321 8328493.572640063 1346.838441668976 0.0022766161020245936 3.671670047066175e-07 2169757.1777581256 349.9330621397532 50281 9198 585547 ATOM_20190531 1415685354.6001813 170461.7359119051 5.903827983572975 0.0007115259330456762 322782803.1227 38901.59669319895 24997 4830 121536 NEO_20190922 663549926.5322173 66445.15432969539 9.407085559710499 0.0009419928536628214 199959330.96799594 20023.23244531517 323716 98295 189975 REQ_20190528 19005311.896746095 2157.804392966258 0.02599930500040483 2.9543132815672644e-06 497024.29713238194 56.477105147886334 41901 30072 374528 VITE_20200323 3982447.8394419793 683.251614421447 0.00801472604547103 1.374528784076436e-06 1354128.3292872522 232.23356049586266 None None 513506 BNT_20210120 179928156.63165835 4968.994249777595 1.7810421008168986 4.9415896401333194e-05 91474099.4434287 2537.9942559630895 None 5333 94458 ONG_20200323 0.0 0.0 0.07358208968722602 1.2615064760780272e-05 6827278.149326119 1170.482604662433 84339 16537 298289 LINK_20210422 15400642175.554834 284231.67462512275 36.46467560500079 0.0006741726623666233 2267772024.6106353 41927.42368075884 244966 49772 26155 POND_20210821 65589314.51964903 1334.9590511554302 0.08361536866723172 1.700719864955816e-06 19576242.89262701 398.1768626912534 None 610 209753 HC_20201015 49656917.9562995 4350.32162236473 1.1083443693879649 9.698135231117132e-05 15764529.260315785 1379.4136627939056 12861 845 903160 RVN_20200314 81781276.89054877 14820.905896535054 0.014478578512489236 2.602628869955274e-06 27783707.225313634 4994.321678513602 30246 7571 183648 COMP_20210729 30390.822409797183 0.7677030850340524 3.330375389135297e-07 8.2698e-12 67.81571463821295 0.001683961509998746 2551 None 3559162 NEBL_20190813 9676753.3973135 850.2550415738772 0.6270547436395779 5.509557590524032e-05 512394.90809415205 45.021097182842766 40447 6141 850260 CVC_20210916 358255620.1364554 7433.8538000560675 0.5351133804671215 1.1100466403030608e-05 65954012.92509049 1368.159218857351 106215 10033 165019 SC_20210115 203887467.71102196 5220.402463131012 0.0045536272617923545 1.1607808386284464e-07 12781160.179536376 325.8089645661311 107875 30189 159206 KLAY_20211204 3727506724.7851863 69420.2120906479 1.459047331644957 2.7208972136222363e-05 35266739.42686426 657.6700492088391 59469 1034 32572 DASH_20200502 784440235.264341 88521.96816564913 82.85695773426427 0.009375664146444522 642526082.183971 72704.92323901174 317566 34839 74287 MDX_20211230 300074587.45458674 6455.159648181785 0.366140496650616 7.867906164046463e-06 9259784.111085385 198.98130130868608 34541 None 32885 KSM_20210708 2137092707.2458613 62896.74375849302 237.11681157535216 0.006979967991395674 352365541.56351686 10372.525613193635 91533 None 64367 LUNA_20210508 6440212407.597387 112387.45381658243 16.63978611071766 0.00029034789002512005 287121759.90817606 5009.992112575452 66195 None 21924 HC_20190221 52045710.706227966 13091.781195487574 1.1863969299591661 0.0002984309140419708 9851582.906139094 2478.105613051894 12222 785 404563 JUV_20210112 0.0 0.0 9.559863026592211 0.00026892338154557894 2217958.930982411 62.39221359028475 None None 134536 GRT_20211120 4719701899.735028 81190.72627492134 0.9557777044333032 1.6386974442042466e-05 159958980.56276682 2742.5244532267125 168703 19642 24595 NAS_20190515 51707246.324605554 6469.744961822146 1.1314112536670018 0.0001415453578006422 5283614.132906006 661.0072601795287 24098 5173 484793 REN_20210828 538851897.3241493 10985.46747253577 0.6109169956295123 1.2456235869810478e-05 55250260.0754325 1126.5200940412565 90770 1189 128608 ROSE_20211230 1292199389.6029284 27861.569683090176 0.37536699105961663 8.059284789432957e-06 328548926.6085576 7054.08155183345 None 6523 45093 POA_20190725 4633023.527746994 471.31073464243366 0.02104246734489405 2.142045996210281e-06 138908.823476056 14.140408740487683 17772 None 582366 NANO_20210809 653874797.5773122 14863.403123107235 4.900463819007191 0.00011140366713145373 33151764.45738324 753.6486889477557 134235 107958 67455 MITH_20210823 36259636.9004621 734.9819623532727 0.058582017348006894 1.1890157198465011e-06 7735381.31721298 157.00193338401803 32851 2752 771999 IOTX_20191108 22313574.982949264 2420.344693464512 0.0051532505734293915 5.589710608463077e-07 7951503.930804892 862.4965008382578 None 1781 524128 WAVES_20200605 112802987.1865043 11538.6455327558 1.128029871865043 0.00011538645532755796 33939147.49876329 3471.6438140478376 157 56840 94496 RSR_20210825 735142092.5936587 15298.00385991512 0.054881167303220804 1.1440555861061013e-06 255015730.69088364 5316.07080494282 79171 None 160893 BAND_20210729 199005319.49626535 4974.473183275875 5.6553660078581425 0.0001413533005982861 26843340.982069917 670.9370961363954 101082 5532 263918 HNT_20210916 1973127054.4147549 40942.6600087047 20.512318857766033 0.00042551039581577646 13778539.863324057 285.82394763168156 83915 53054 2718 BNB_20210813 59332763048.56222 1334585.4144444657 385.11114348041565 0.008661509833076968 2038927323.1838586 45857.38262228285 4734794 588161 143 FRONT_20210707 26565044.190925844 777.7503915380616 0.6044290271527712 1.7695411607415102e-05 7902095.799063943 231.34368378095706 68170 None 214172 SUSD_20210112 157612989.72365013 4436.012022280323 0.9965299764289992 2.8034366616405412e-05 60079523.3879865 1690.156266882474 54887 3080 45504 FTM_20200308 16383182.968065128 1843.0988345048113 0.007758314681596813 8.722200893510382e-07 8993454.143176345 1011.0792998565548 None 2317 349202 CTSI_20210718 149073338.44973192 4716.668403288065 0.3914272649853343 1.239517577712759e-05 9068058.10855942 287.15468815646375 47540 3915 130586 FIO_20210310 50211671.08147587 918.6572482460168 0.2258613059934974 4.125065969127735e-06 13054471.037824333 238.42310654416897 56309 275 389436 SC_20211216 795919020.3314109 16314.36502607258 0.016055742660991423 3.28544254058196e-07 31182474.648142375 638.0784177522398 145557 50794 97295 ADA_20200224 1886303219.5727327 189597.09794762565 0.06073456267572729 6.103557121387925e-06 232674655.60882208 23382.782202452116 155837 76836 49262 STORJ_20190530 39648310.8952002 4585.0722681967245 0.29198806071301353 3.3766542119751496e-05 4655835.084384419 538.4173965729432 83802 7719 179109 GLM_20210218 248192258.1183208 4757.452274305788 0.24727102253420977 4.7433198504027885e-06 5388206.86967679 103.36022531503329 148106 20482 179505 RCN_20190419 15968467.88989605 3025.6695580963597 0.03189764619377015 6.043884745021714e-06 1310232.3087868025 248.2594801950545 18939 1116 1782398 FUN_20190312 24102562.14705869 6234.071700909444 0.004004522359466623 1.0356540251662646e-06 749361.2433550307 193.8006379586311 36380 17806 523273 BLZ_20211207 77495666.91778466 1535.3476500517852 0.24493376863510438 4.849484568587725e-06 37570009.20974634 743.8548833819357 74649 None 221086 NXS_20190314 23204092.246257633 6001.4761960728965 0.38856988481463234 0.00010051438062211592 790886.5700246919 204.584752537642 40 3504 850492 NEBL_20200502 7437573.302939031 839.203266097514 0.45559295590210425 5.1587051421036373e-05 351524.9546918429 39.80337202000586 39348 5979 1526179 PLA_20211230 438604826.5168074 9438.763285047258 1.4603087177393237 3.1384478345793155e-05 69616298.12058607 1496.1707578259015 19938 None 86021 GXS_20211202 47352969.6628003 828.3092766433934 0.6274328229171774 1.09751536282667e-05 8701057.258339617 152.20026216452496 53651 26947 1228624 REQ_20211216 312387695.4225436 6403.1726376571305 0.40622656345593794 8.312438634062804e-06 42118600.50066297 861.854722241331 57817 31504 169585 VIBE_20190524 10290837.3199796 1304.5389386225752 0.050702842472074884 6.417248751095236e-06 4924289.043894848 623.246866965504 20665 None 1508897 CTSI_20210727 149359778.09538847 3980.645558519109 0.3918049148219514 1.050087395505703e-05 40893257.67632822 1095.9917250296128 47724 3930 130586 BTS_20210318 200787240.22699666 3411.760371884341 0.0741027788764371 1.2572092788521956e-06 43182614.70748142 732.625479347681 3118 7016 119116 CTXC_20200106 2323351.2942293757 316.3508277082368 0.0676060594118755 9.206564675747806e-06 2229866.953669341 303.66234189451046 17092 20064 634574 ZRX_20191024 177353099.60268435 23758.47424384442 0.2948828030713044 3.9497687854969664e-05 41803781.288861886 5599.352309824692 151311 15961 142278 BCD_20190601 283077333.7196839 33000.71271906675 1.5010311876471067 0.00017502349646484892 21654880.791303877 2525.0061309948987 21228 None 3286107 AAVE_20201124 847989372.6051859 46315.80403224596 72.10694374873245 0.003927560446787481 201150328.8925038 10956.366121541225 None 1609 15890 HBAR_20200306 154567874.08533424 17067.748514250496 0.04564766470486735 5.0390471183135915e-06 13623533.526114725 1503.9022872225264 37588 6325 124891 SOL_20201231 71585859.2732059 2478.9888231009254 1.5378390877377932 5.332644293895077e-05 16897738.266745638 585.9496501707961 104974 2785 92082 OXT_20210603 238727202.2419011 6343.5775526532025 0.4048264031222715 1.0751294527684066e-05 14024574.240072297 372.4616949820013 65184 4209 98275 DOCK_20190930 6474186.66079112 803.3643238892969 0.011474961507228973 1.4251265487106906e-06 4322924.891294652 536.8832851234552 193 15163 179200 SNT_20200223 63055090.95007898 6532.288203574904 0.017459955567129006 1.8087690384947294e-06 59065029.40386324 6118.858437682486 110592 5614 210180 TNT_20200403 16639842.259188952 2452.06271886239 0.039049555922620736 5.728172025203309e-06 414994.66047128686 60.87548881300651 17629 2564 952681 SUSHI_20210508 2634767114.5216317 45980.208142900134 15.810062306656693 0.00027587002629479544 1137143826.3636093 19842.040543243835 84265 None None BCD_20210731 403113289.5641331 9662.009393808754 2.1451622074827585 5.1354769947883624e-05 11682009.442315333 279.66505532609244 34411 None 1274405 FUN_20190411 35097730.89296094 6608.7450970506325 0.005837909131972556 1.0992520704718393e-06 1388202.6483377768 261.3923240192984 36603 17759 523376 SNM_20201014 4400273.841051285 385.08930944 0.010055436194155 8.8e-07 10743.744399337033 0.9402371899999997 28984 9554 None WRX_20200301 11221529.782141868 1309.898207359956 0.060246252035770914 7.034692232435671e-06 3446902.729667756 402.4798064443578 16642 None 24445 BLZ_20190821 6836082.935667282 635.9992670779701 0.032794809379849556 3.0521165732948855e-06 191763.56312210232 17.84687150883917 36492 None 1006021 EGLD_20210114 592741392.7194792 15918.675854712566 34.990386953044556 0.0009362647018444516 71868057.71233568 1923.0289083820787 120335 3286 49960 GRT_20210729 2636837326.745352 65906.54941843089 0.5591572077128826 1.3975880032116921e-05 94880642.66889322 2371.4984999200865 124941 16248 33618 GALA_20211011 686524202.8050562 12547.275932338254 0.09101340263218993 1.6634423665446417e-06 84577181.64093731 1545.8082339041935 None None 9332 UTK_20210509 350143510.9812082 5970.705868899297 0.7773556652304627 1.323812046955581e-05 73124883.12423801 1245.2935707799306 73741 3860 78610 DLT_20190905 2819464.858152996 267.191798712762 0.03517711221244187 3.3305595190179924e-06 179280.77370571403 16.9742554146126 15019 2654 9139526 TRX_20200412 825728835.0838466 120001.09219757271 0.012500002772784706 1.8161973929607818e-06 1101729960.9806812 160076.69112173573 504200 72472 50971 ZIL_20210727 915425850.3312368 24460.00691538189 0.07438490346602963 1.9935015909518407e-06 260171456.98956975 6972.546703187237 309070 35231 41251 ELF_20190616 102017710.52058233 11568.699902296106 0.22156372874109279 2.512795534815241e-05 32535244.582694106 3689.8827157331884 87064 33149 1215448 TRX_20200807 1344914188.8051512 114316.5064856657 0.020238641544347142 1.7198204741495392e-06 436133582.20547193 37061.354266173774 515309 73837 52156 RLC_20200725 78954162.65487391 8277.211459982987 1.124165972863252 0.00011785267756154498 7906358.973594725 828.8683319844915 32178 3759 380436 MANA_20190321 65774224.16396144 16274.927989286281 0.050060278889844566 1.2386728150907005e-05 2566594.1253245436 635.0684496597853 43318 6110 116780 VIB_20210804 6159559.130863116 160.31901235938653 0.03359617213299576 8.78036120468426e-07 943019.1761410501 24.645810709280525 32690 1277 None ONG_20210930 0.0 0.0 1.0398744076250253 2.5017077862432188e-05 30085155.306335542 723.7822830171634 152615 20325 111684 NANO_20190618 206768154.36802167 22181.61784878922 1.5533594008649942 0.000166717090856727 4388858.167503121 471.0420946121403 98427 46226 363666 SNM_20190201 7540470.469989734 2197.6076686570445 0.01887004622119553 5.499518690332944e-06 264161.0715282783 76.98755652735775 31460 10107 10310545 QSP_20211021 46519109.287198 701.806035481372 0.06492401799772202 9.833716016724283e-07 990720.3949368038 15.005945898368902 70221 8609 173409 POWR_20200725 41457494.99896164 4345.199159292914 0.09659306791459243 1.0124673727405902e-05 1446229.6457363607 151.59062253752475 81517 12706 226515 PERL_20191024 7283022.689788324 975.9420766005977 0.027882409569667733 3.734672549083361e-06 3445994.8610759177 461.56923345473706 11116 372 274565 REQ_20200301 10199906.01178999 1189.3897321035815 0.01321286326727684 1.5448386519478016e-06 144910.77264387524 16.94286530749945 39817 28328 787523 MANA_20200612 53996544.596130505 5819.556171645799 0.04056999405827931 4.3627505844390446e-06 22929567.790326674 2465.7628772259477 48945 6979 60458 ALCX_20220105 301699919.76168466 6514.174907646788 301.8633312903632 0.006560691199198925 28133387.727017175 611.4504483711205 None None 76988 ZIL_20200806 217929323.05223083 18603.396243827166 0.01966198618538186 1.677815699379503e-06 50081986.089982465 4273.644672802751 89201 11747 80584 AION_20190201 29391127.147440143 8565.647446134359 0.111892337123768 3.260951194277977e-05 966442.3936960811 281.6565958791347 67564 72378 189694 SNGLS_20210104 4465480.6219893955 133.4554193379951 0.005263356499435604 1.5989440268090058e-07 470948.5080164311 14.306845905426183 8978 2112 2388583 AMB_20210823 6679097.981110987 135.3617159510208 0.04619221766185348 9.361661471807781e-07 579591.0794472058 11.7464277588587 1075 78 632892 POWR_20200610 43385829.40233484 4438.3519658957775 0.1009357363477137 1.0336189728240342e-05 2747686.652681524 281.37319430684624 81664 12742 204075 TOMO_20210703 141402496.4977603 4183.477386694352 1.7289460218828796 5.1059588680666585e-05 7354662.863412077 217.19941278550374 49990 2191 118140 IOTX_20210427 282408626.0032117 5242.44718664446 0.04396460105769956 8.15577273952675e-07 76715158.56182957 1423.1253869127681 47303 2711 219398 IRIS_20210115 40831557.16682334 1046.7468285407526 0.0434472543396153 1.1075210919729558e-06 5193885.214600513 132.39818054996303 11345 None 805488 RVN_20190302 46665830.82564103 12216.157099335935 0.015533694590225466 4.0627607942031864e-06 10130877.675118458 2649.680820636128 19620 5802 345292 SAND_20210420 352089934.34418815 6289.389552921774 0.5127166828552021 9.167068096676576e-06 51782658.772386946 925.8430144109391 None None 22461 BLZ_20210729 47030047.29123012 1176.193134010984 0.15879708546340737 3.9690609103727865e-06 11446863.095444987 286.1091356049417 65133 None 404484 WAVES_20210821 2440964405.21673 49675.56989482031 24.420847743131805 0.0004967151558118067 189537697.36016414 3855.1588325979787 195344 59293 144631 BQX_20210120 251038435.8630291 6934.0813597577335 1.119756354078856 3.09673359426032e-05 7402682.953748622 204.72433049410674 None 209 96295 NANO_20190904 130298697.88203888 12260.706651700035 0.9748331096250384 9.18591128162608e-05 2756505.3959488003 259.7471686640677 98650 47569 229089 MTL_20190714 22792514.04199027 2001.4449459403277 0.47873090209686975 4.197055611224497e-05 888298.2336202024 77.87751050802403 33360 None 763288 POA_20210210 10199361.909492541 218.98023353224124 0.035861173439145154 7.699739224890287e-07 633839.0325234493 13.609134317004798 18338 None 427710 RDN_20190812 9943881.749302937 861.0689571397907 0.19695522992300876 1.704618612022576e-05 165569.2667882955 14.329777069468356 25611 4398 836731 POA_20190329 8008764.413023026 1989.2174394290073 0.0363729476116872 9.034092787081258e-06 733915.5200388456 182.2854990113454 16973 None 766257 SYS_20191108 14913797.585394358 1617.6937524711284 0.02619167279046659 2.8410004358246408e-06 1023391.6645967824 111.00689094577561 59876 4569 1069372 POWR_20200707 37957625.86014708 4066.249012227107 0.08847831439681846 9.469846239341256e-06 2176663.160558484 232.96855942441658 81467 12722 196411 REN_20210620 363133976.8039659 10186.423150937126 0.4116565943444896 1.15622133965553e-05 37437947.52356461 1051.520962723252 None 1177 86030 POWR_20211204 240890798.87842867 4486.293810721387 0.5582329150220235 1.0410178957821832e-05 25290944.21117478 471.63692459845447 100899 15437 166762 OMG_20191102 137122407.9928854 14823.529878608622 0.9783484955615237 0.00010565945537153657 106758017.0208191 11529.627720734436 None 41871 None NXS_20190902 13412369.217116212 1378.957921902604 0.22468823617235847 2.3095029151286228e-05 83868.59875374049 8.620601443545672 22179 3539 525271 ALGO_20210723 2502553090.2962294 77312.35086110502 0.799055511525666 2.4681524196870874e-05 177192824.08918002 5473.1979345448835 116651 35955 209093 NXS_20191019 14855664.858741071 1867.1632568893529 0.24793652280167433 3.11581104788978e-05 2149502.489552958 270.12735069181446 22105 3538 388787 POA_20191015 4024418.9126509964 482.1948899442739 0.018284495826099346 2.1907106376690552e-06 566314.8595999441 67.85158305676512 17716 None 548069 SOL_20210809 10274392698.30968 233549.6013966172 37.66581962149719 0.000856428438852194 387950835.5915774 8821.051335558113 377478 29102 9636 MTL_20190201 10297441.964774022 3001.050521975835 0.25377743226166716 7.39600085302619e-05 8287121.728038835 2415.169813307514 32273 None 590777 POE_20190923 8851251.677355036 880.4954069135161 0.00351634451262595 3.4979518212252344e-07 675015.0740399471 67.14843210369153 None 10710 709572 NAS_20190629 73017523.0801078 5899.627156694981 1.6052529926462669 0.0001296617192351356 16999840.491328277 1373.134674052229 24351 5145 467000 ARK_20190816 30278600.80671838 2942.270719774329 0.2120976092435007 2.0610218728232054e-05 722360.5686842275 70.19414020900018 63355 21823 119780 YFI_20210408 1591028393.1812835 28247.276511399094 44261.826320943845 0.7864929128151168 628476047.2410369 11167.455076187054 101428 4273 21200 VIDT_20210324 57196767.41148674 1049.2037338857415 1.2490139049017168 2.2904051292576018e-05 6536151.7862909725 119.85803775423206 26101 1397 516242 WAVES_20190528 273255065.8129991 30984.35896499503 2.732103096877217 0.0003098422067373748 50063778.95597821 5677.630455110731 139984 56825 43809 OAX_20190512 4136353.2728563026 567.5483973611084 0.17442714454013722 2.3948785964364994e-05 1046786.7267441932 143.72345161773973 15234 None None CFX_20210519 507399195.480628 11891.634526386184 0.6122181920505373 1.4310557342932238e-05 6957638.494925905 162.6343123185252 33700 None 127715 BCD_20190904 117712305.2692945 11092.10163548237 0.6256071743842366 5.895134197127159e-05 1738936.481942005 163.86103518423155 21388 None 2392200 MANA_20190818 48338612.410735026 4731.922559809546 0.03649448830431547 3.570336044839559e-06 12473939.241371261 1220.3529070810412 45644 6353 132060 CHR_20201124 12750254.804369574 696.2041968302717 0.028532505410802083 1.554696876215096e-06 3682936.252405921 200.67811797372258 31558 None 747411 REP_20191203 112187094.25330032 15350.654601469725 10.197540301757517 0.0013957678350455596 6510771.328317042 891.1487410190055 127447 10108 289721 AKRO_20210823 97653504.07882652 1979.4341640970626 0.03604644402061214 7.305442848701283e-07 23927361.502049528 484.92986402066094 44557 None 223104 CND_20200531 12298939.64411443 1274.0877538107914 0.006282909801510871 6.505371876719426e-07 85522.8143903337 8.85509627114149 34427 5934 341287 ARPA_20200315 0.0 0.0 0.005351106747826403 1.0350027159489266e-06 1281957.759652124 247.95426918192246 12266 None 2543726 NAS_20200903 21794139.70996073 1909.994454492397 0.479199716997602 4.1994920915109807e-05 8908895.971750217 780.7358153687367 23602 4898 894508 KMD_20200117 73467921.56512527 8440.6910771319 0.6224574379271416 7.143568543626863e-05 4919073.447921856 564.5323873610423 99090 8410 193331 IOST_20200407 41403124.47416988 5690.837058146771 0.0034496030593936878 4.7341382113718317e-07 37891585.33764664 5200.1345936868065 191871 52238 158956 TORN_20211111 73242273.60055284 1129.423142037587 52.23021921519658 0.0008042783578072546 7524579.673630514 115.86887196783175 27253 None 88402 MTH_20200417 1934849.074051296 272.4941458290783 0.005553631829809173 7.83430308846893e-07 43379.70920669716 6.119415190448249 19101 1921 1304375 COMP_20210813 35383.05224618778 0.7976143135408758 3.83625963100149e-07 8.6478e-12 406.8158666187194 0.00917055306401913 2561 None 6364625 DASH_20190812 960131436.1073062 83196.55409677316 106.9918631074881 0.009264729238646274 322737199.15400016 27946.730513487088 320507 29659 93403 BEAM_20211011 66572138.36612637 1216.479523555929 0.6738641593247875 1.2316144210615243e-05 6857352.115233714 125.33110180367956 23903 2776 295538 RDN_20190524 16495695.251441872 2093.983157599137 0.32559813040665764 4.1396682858911094e-05 1232637.6016337592 156.71806165186183 25647 4445 1272561 QTUM_20210930 936517327.1375537 22545.86604772102 9.04914253223332 0.00021770235103118398 202109845.42083514 4862.315778311194 256480 17060 176771 IOTX_20200629 19780649.25853273 2168.9693006020857 0.004585135937934674 5.023836045730852e-07 3630074.673910473 397.7395706985456 24566 1867 670606 RVN_20190426 179852101.7890964 34648.04642008278 0.05247498598006702 1.0103882360783295e-05 25246825.970581606 4861.191572053456 23686 6373 171966 OMG_20190701 346927743.7770779 31973.398625231708 2.4976903297780075 0.0002302075644079496 206934861.19544223 19072.808914279576 289631 40161 None MDA_20191017 16938784.38899329 2115.5270843571284 0.8629242555959793 0.00010777951245503568 8838454.834536681 1103.9258043155824 None 368 2061213 XTZ_20200410 1493326344.5006196 204882.3588626169 2.1112092730581273 0.00028949202923832105 196159288.98422942 26897.64171968343 58919 23179 99470 POA_20190922 3671814.65106759 367.5274856669475 0.01667735988784468 1.6693076120713838e-06 178022.68813289225 17.819045125856118 17705 None 603772 WPR_20191012 4523889.933540296 547.2497415692588 0.0074378980054073274 8.997539332466187e-07 225001.74711414045 27.2182015410982 34175 None 790860 CTSI_20211021 391338683.1653242 5904.100169638012 0.8726078642400071 1.3169322259892735e-05 408283159.55724967 6161.774058934858 None 5261 190612 FLOW_20210805 1246052527.692358 31327.958428611477 22.3799756104674 0.0005628070259865307 185603667.03253752 4667.522863873002 78037 None 60038 MITH_20191213 5236015.698530316 726.5127690911077 0.009274630415075865 1.2884506550560281e-06 1195703.8410563453 166.10962683297984 88 2085 845657 TNT_20190522 12548036.223427117 1579.9462172139579 0.029284911889116087 3.6873168786578586e-06 14625136.282445492 1841.4776889588386 17316 2515 965063 OST_20200306 7641547.87203507 843.536246227883 0.011050190283529784 1.2198308470991784e-06 180408.8845783464 19.91534234731072 17849 755 839878 PNT_20201111 9808219.579947734 641.2453005826092 0.3302392483460239 2.1617895760980104e-05 1305936.1698732914 85.48830017089132 6504 100 413502 ORN_20211007 261637834.2145701 4713.719307534763 8.4497073274114 0.00015231614505539394 12458511.276184859 224.57966142348994 86390 None 76105 ALPHA_20210509 465774358.2058343 7941.389452846445 1.8749355953024753 3.191787329453194e-05 129808251.75338216 2209.7843480222314 60670 None 30246 XRP_20210616 40312888500.39617 998817.0207362392 0.872464326158809 2.1616714935820795e-05 2862140885.0995646 70914.17008618564 1878856 319816 11293 CND_20200107 11621470.1429237 1497.825174287978 0.006205865095401578 8.00073422307047e-07 59054.46689497076 7.613428378613521 35248 6015 478937 FIO_20201129 9769832.579423053 552.0240983793633 0.08314105572068954 4.693442266477657e-06 907913.9633927223 51.25315926259338 55462 150 324482 FUN_20190623 32967354.722033076 3070.8352731343302 0.005427503734062085 5.059896255772098e-07 1511549.062282357 140.9171106167835 36259 17621 455027 KLAY_20210724 2433290502.148879 72795.08688365946 0.9777956993211546 2.9242605740334386e-05 44492539.48488375 1330.6233515303895 41772 672 62906 XRP_20200308 10388905930.494232 1168324.1794862042 0.23709215080017237 2.6663105277829096e-05 1974512300.6903646 222051.33813159307 946537 210606 33270 REQ_20200331 5951980.466129263 926.3849673882432 0.007720100767224384 1.204185070469285e-06 45092.96323509043 7.033622325429682 39496 28282 587698 SYS_20190903 14218630.145668318 1376.8224830789716 0.025264085786376546 2.4443288303974137e-06 1146266.43461866 110.9025720204813 60599 4565 689818 ARK_20210429 314597950.7975829 5747.351717074401 2.019591683148561 3.688372412456958e-05 5786431.9104697965 105.67738025076554 72062 22812 73958 MDA_20201124 10566336.430546543 576.9553535154486 0.5401638445978609 2.9421939698623153e-05 247863.31368816673 13.500754524330183 None 371 4480394 ADX_20200306 8870126.388723107 979.7260229271881 0.09485629573792428 1.0471189419710274e-05 282567.0564638923 31.192586100749747 52463 3775 53936 IOTX_20210111 43619613.262797594 1131.835029919912 0.0075921338457396945 1.9748750365879766e-07 3634192.707170111 94.53306015630545 30887 2018 689535 FIRO_20210708 62688220.28323776 1844.8243027031206 5.200104166920686 0.00015303836097561884 5341702.098276585 157.2055689077394 73624 1062 237934 ALPHA_20210110 81775964.20735614 2020.8032003061574 0.4692211843200729 1.1610073192278006e-05 49854761.15579382 1233.5705320744262 None None 85584 KNC_20210708 155736146.3496969 4583.526482954791 1.6869954525364936 4.965174818978919e-05 59767241.67000844 1759.0729298858853 175024 11220 114765 LRC_20200313 27722697.53703469 5769.321003671957 0.0243643743948546 5.084307829471222e-06 3234979.383277494 675.0688829526953 34355 6823 607711 CVC_20210704 161802968.73038596 4669.871184829238 0.24411488536759737 7.028054943337538e-06 13670408.750009874 393.5703619559135 103517 9833 166246 STORM_20190507 12247420.711912833 2141.003592215325 0.00270926106775989 4.737809897051303e-07 714093.5780507033 124.8768404702607 27042 2572 6189578 WPR_20210114 6100227.524765959 164.10671928510695 0.0097657307613228 2.612326430218625e-07 155240.7441974201 4.152679497574 32518 None 7558136 NBS_20210804 0.0 0.0 0.011548159902281205 3.018112146529198e-07 2726926.4709102213 71.26823644795881 None None 2066443 WING_20210616 37512822.64258275 928.8767116099746 22.32752406863987 0.0005531686494143034 3478617.1380664892 86.18340028110917 10770 None 434218 BNB_20210120 6375499623.76684 176056.34004361468 42.9091445016058 0.001186670553777769 925423978.3094243 25592.991833677166 None 90294 564 STEEM_20210513 341106390.3745639 6800.056071612506 0.8911657273790825 1.7765650501659422e-05 6943029.555076282 138.41133327797718 13791 3937 174026 VIBE_20190123 8075298.559728322 2260.9064051369014 0.04033612761692129 1.1293230660512558e-05 981975.2405799133 274.9315204498975 20624 None 1525453 BNB_20210603 62216853673.38303 1654357.4160470122 402.6103887950831 0.010705483211627979 7211249339.156458 191748.4269748819 4115252 464317 132 AUCTION_20211225 182865974.0671478 3597.685378176842 25.457335282623266 0.0005006284848450089 2965447.450732037 58.316687417038004 None None 88829 HIVE_20201115 43830458.76280877 2723.6725908351546 0.11809360432261279 7.341362556032122e-06 2330311.528764069 144.86526937075374 9355 96 141285 MTH_20190626 9033992.61699426 765.3428084178933 0.026610009172469695 2.250418448432419e-06 1997585.177514364 168.93652710365646 19545 2009 1893104 GTO_20190227 17904572.25222616 4710.79041060771 0.03020953349370509 7.948292686712146e-06 15103845.628113098 3973.9039920022574 16265 None 751692 ONG_20200903 0.0 0.0 0.1776576528588801 1.5569122470516895e-05 10546595.468466192 924.2564778562038 90350 16621 197799 CND_20200404 6876067.570870222 1022.5105430504713 0.003566297145035208 5.3e-07 23334.503599542863 3.4678229 34724 5958 426986 GXS_20200425 25739846.233162444 3432.751521885026 0.396043273625443 5.283913600205472e-05 9234086.961325584 1231.9895559335596 1 None 503557 MTH_20200317 1402620.0551760898 277.8981286206893 0.004021014943797728 7.995926675861688e-07 99938.8345324301 19.873181377377716 19207 1929 1053445 BAND_20210703 195810363.52072552 5793.166656589623 5.581225920388978 0.00016482590909263243 24822767.104447685 733.0710515119467 99400 5434 205919 DNT_20191127 4363806.263820544 608.6651800509546 0.005735575333719843 8.014127542511752e-07 2268503.906321831 316.97046204009115 59646 6208 380353 SC_20201208 159695388.59578955 8314.411579748772 0.003543385859104731 1.846619813306086e-07 4766766.654734526 248.41792850252995 None 30102 155406 NULS_20210114 25664446.519164924 689.2346173206738 0.26059880027685595 6.9899055625328365e-06 19585454.117757782 525.3304103357572 36472 5104 933536 SUSD_20210813 266424860.22003368 5992.601529021021 1.0088505596547042 2.2691724043122512e-05 120123329.59259701 2701.8921882634586 147249 7421 46425 NXS_20200501 10090244.200111056 1165.9752817017009 0.16918344701528765 1.9599141740982822e-05 92361.38116203708 10.699650779807868 23622 3522 609605 VET_20190511 336906039.9106205 52870.27288869702 0.006074286783972268 9.534571601871012e-07 15706817.595369652 2465.43803950339 108208 55468 330753 BLZ_20190430 9803081.830495806 1883.1770938387306 0.04752869593930239 9.128095952736904e-06 574554.174753775 110.34566662413258 35655 None 850620 ACM_20211104 16313037.262646757 259.1237954793779 8.158128704786508 0.00012945595242053537 3704855.3679613294 58.78990116426681 None None 32257 ARK_20190530 89524011.72284254 10352.876433326583 0.6311355332772557 7.298676704669952e-05 1464541.9594943633 169.36486252434557 63494 21753 215073 QTUM_20190224 193013669.61628288 46907.48356419553 2.374736473564348 0.0005771244716732646 467519694.28024435 113619.7887900175 174553 15195 244662 KNC_20200629 196908598.03813964 21597.04242070319 1.096906460020581 0.00012027217381636652 63023808.01014159 6910.352585053462 111683 8134 105194 LOOM_20210115 38024408.50240821 973.5717784721537 0.04567669432315947 1.1665440075108655e-06 14471716.317159101 369.5953526921393 23502 None 358251 OGN_20200806 23652518.856939394 2019.082032181502 0.30523024092030904 2.6046203334342163e-05 8769066.731637344 748.2905181871331 65443 2348 154387 OMG_20200605 235794265.2627121 24158.45078724685 1.6812056004390106 0.00017197093778266966 105353705.021064 10776.656612742705 None 43013 406561 SC_20191213 58924079.86941411 8176.48224535939 0.0013969984628093264 1.9407388801101006e-07 8537957.32652442 1186.110520621842 107849 30358 221942 REQ_20210219 70221219.91789806 1358.5719994261908 0.09108754211445143 1.761832821509309e-06 2213015.996335581 42.80458256267477 40722 27304 403462 TRX_20190321 1497813672.0037389 370613.4122154449 0.022851718445443616 5.6543437320362116e-06 157096296.61916602 38871.319994396115 402453 70286 84022 OXT_20210814 237455176.88002408 4978.019588782862 0.4015643689974548 8.41636515355836e-06 18167005.811080407 380.76125886019156 68919 4371 223178 NXS_20200312 9851254.69821774 1239.0335929119726 0.16464358481641628 2.0751589353976857e-05 81446.37529792417 10.265457572713677 23563 3536 662796 HNT_20210115 92466344.95238292 2367.4957073536007 1.431919832322415 3.650156256218652e-05 1524025.7431731024 38.84946611891758 19212 2184 70077 CELR_20210909 324373580.75616294 7001.595723050142 0.05723434445295192 1.2362450257687951e-06 185273919.62299553 4001.862233730932 64860 None 202750 RUNE_20210707 1899767389.3821604 55619.88981851271 6.988596975855351 0.00020463339557545227 176169608.68515497 5158.429559894557 2549 5841 58738 NEBL_20190723 13038144.7497048 1260.6789735625762 0.8476834618222633 8.199365118174814e-05 257096.94731285644 24.868147566010453 40536 6155 884677 FIO_20210930 56112691.50856686 1350.6070708856303 0.15754463858533427 3.790203710050664e-06 1801312.5812755895 43.335918567699395 None 527 535960 REQ_20191102 10950593.090405509 1186.0403206985118 0.014170627689089882 1.5347367881364343e-06 103743.47963779884 11.235842068731882 40550 29053 1173311 RDN_20200404 4262532.951280201 633.8185459475654 0.08367261278270957 1.2436199615622792e-05 519952.22436048253 77.28012114939304 25060 4320 1242086 FOR_20210513 49735952.958023444 964.2826221496169 0.08613848789523208 1.7089683855040924e-06 17211768.97843974 341.4776572178686 27172 None 121636 DOT_20220105 31537656135.75426 680828.5720788225 28.85560896706936 0.0006282868842085442 1312142515.8722835 28569.902436499688 1069548 37632 13365 ELF_20200407 31336258.274351228 4308.38038923686 0.06793222954530748 9.336678396094036e-06 41044589.95181345 5641.212408964819 None 33428 699270 SKY_20200704 8883390.531489685 979.9282027216946 0.4933756592042251 5.44316516849033e-05 244804.5412258897 27.008052120735968 16097 3818 1118226 ARK_20190608 86639444.88563156 10777.02378817391 0.608771570068925 7.582793094546272e-05 1489746.2127022392 185.56118336843522 63394 21764 216267 STMX_20210814 283068934.77641726 5934.268188243682 0.03039675400990241 6.370838674480342e-07 38467827.023427136 806.245035388423 69640 4711 91821 BCD_20190626 250550560.05519754 21221.50310973543 1.3366340788206934 0.00011305624543045624 11471222.929287434 970.2680901456896 21337 None 3124822 WTC_20190704 53638005.85378599 4473.4103480210115 1.8314903678794894 0.00015260777807683535 13383747.40352759 1115.1922988045724 55699 20076 771082 WBTC_20211120 14261193501.004082 245255.30142406333 58198.927347035875 1.000334084003351 492006443.3689202 8456.699071383522 None None 192631 ZIL_20190625 182216511.73136133 16503.772063856002 0.019907718140627837 1.8024630604579767e-06 28179722.231801968 2551.417898223648 64643 10580 190558 XZC_20191203 32642533.329620738 4467.88114855843 3.652661533537074 0.0004999507067346979 6276126.772748225 859.0322390351819 61753 4067 168548 DLT_20190329 9356683.691570997 2324.011602247939 0.11619826889633299 2.8860583944827874e-05 2830106.761582482 702.9238433693552 14868 2689 1013339 AVA_20210202 65257782.660062514 1954.6952526183122 1.699576258959606 5.088358260177371e-05 6853066.254107791 205.1738255215352 None 9202 69143 TLM_20210722 219532315.9554517 6821.808700212871 0.17733078556406864 5.497686628081656e-06 251110539.28888908 7785.038844933792 53621 None 10364 BAT_20210304 1153572050.4257057 22698.83357597498 0.7729601963914415 1.5241569386275284e-05 1277732349.604755 25194.88888885437 145928 57128 20502 MITH_20210725 24416215.96003375 714.6428449494853 0.03946362145433464 1.1550502726359504e-06 10688107.761960166 312.8273921515257 None 2749 479656 JST_20211202 543383858.2383808 9506.856810820858 0.07436742793820691 1.3005247304161784e-06 429090539.1598193 7503.861209623161 None None 184899 APPC_20210718 5613392.196310155 177.60727627715858 0.04930780515087243 1.560002357472702e-06 456718.35461991397 14.4496739964 24914 3129 778412 ETC_20190807 660458119.7860355 57718.14184798832 5.873001200180217 0.0005128683466042343 616472655.986041 53834.36866871063 229311 24871 465281 QKC_20210203 56161402.5828379 1576.7905035503975 0.008907184280296599 2.507249697688666e-07 77190217.90888453 2172.7983212909176 63374 9219 366724 NCASH_20190419 5842972.113536899 1107.1145212919016 0.0020138290090312917 3.815751906215443e-07 315024.58790210896 59.69005642492105 60743 59442 878316 KEEP_20210707 141472285.34567848 4141.913882340546 0.3232433344522502 9.464901375000198e-06 47026683.50759676 1376.9902545616226 21742 2772 132559 STMX_20210110 25240279.66741866 623.7455719362731 0.0030507957632580104 7.57334691982291e-08 20359466.067772366 505.4068236575129 None 155 199234 ONG_20190401 0.0 0.0 0.5978706509495666 0.0001456966546057705 2306311.9446068327 562.0311588683247 72754 11317 248801 SNT_20190316 78175736.78987387 19920.356619227015 0.02232673486968469 5.689114915995444e-06 122022908.16041133 31092.873676353287 110226 5750 348070 SNGLS_20190806 4995941.618647114 423.26728869500676 0.008656818686766043 7.334249384731545e-07 174041.06106984764 14.745145893154971 9 2176 None NAV_20210430 44394748.2700373 828.2252958691764 0.6198658990922535 1.1564174540468982e-05 1477681.8364056002 27.567528229088612 51147 14002 446539 SNM_20200312 4199617.660696875 529.4887416637594 0.009605037932341591 1.2099792631702506e-06 179182.5504010313 22.57223467876 30196 9701 None VIDT_20210128 27292018.71961832 902.1790901920821 0.5906044722030949 1.9466901939973574e-05 2291421.801594403 75.52750717982471 24536 1191 None NEBL_20200903 10031307.947871951 879.1235995878391 0.5939234251572149 5.203709524938818e-05 303567.96073881997 26.597359555984855 38826 5947 419992 GTO_20200701 7313349.661296213 799.4288632457758 0.010998056655665842 1.2024727549565786e-06 6252785.170223861 683.6483976391667 16589 None 1271054 KMD_20210916 147986678.5666636 3070.701199869137 1.159230876342037 2.4052567230921866e-05 3334063.544763699 69.17758075565033 115269 9618 139626 ONT_20211207 663186437.5271971 13141.76146674786 0.7587711519843955 1.5023036689235354e-05 125039565.2021563 2475.679222549914 179782 21003 85093 AERGO_20210821 54693009.03232377 1113.18326738654 0.20791615698729493 4.229181467716796e-06 11188709.463142758 227.5873284445249 21608 None 449238 MTH_20190316 5994427.50889131 1528.0218088233305 0.019937190633963035 5.080230910643926e-06 587892.5960007607 149.80195520897698 18775 2015 1148279 GAS_20201018 21596963.756058004 1901.2573721344847 1.5504473115340622 0.00013640804215791035 1380023.1835039714 121.41416170282274 324425 100862 83823 BQX_20190321 18911470.160650853 4679.691000288899 0.1607764909668513 3.976601999761792e-05 1219323.283970703 301.58410475532304 60714 5818 403749 PIVX_20190905 20484871.216767274 1939.9129031326656 0.3378123612464821 3.198034067703675e-05 371359.5554293869 35.15621824045487 63080 8599 256099 CKB_20210210 194111975.330281 4166.6499318490405 0.008139530662761912 1.746884986728311e-07 22283932.48591446 478.2519867269886 24726 718 367403 EVX_20190904 9252254.785117276 871.8455576850329 0.43033743186591983 4.0550956171396885e-05 1260886.6891357112 118.81411441840497 18308 2913 505983 CMT_20190629 33715988.0459517 2720.5818260880087 0.042178283931789864 3.3959743854649892e-06 6519317.469233395 524.9012779190978 291075 1643 705322 MTH_20191026 5107237.407731666 591.7607312760983 0.014788479831586715 1.7109861596797379e-06 317452.37792699033 36.72836093878789 19436 1971 790483 DCR_20201224 402318497.22154754 17204.69392078441 32.332402450147825 0.001386506202462618 8908018.534904381 382.00139842192334 41132 10027 350762 APPC_20210723 5486871.088210973 169.7461187748237 0.0485618072263823 1.5000012668552337e-06 600453.0159030004 18.547091551655253 24914 3127 778412 KMD_20200313 30822948.041257184 6414.508591451289 0.25900485032669057 5.422539739316336e-05 2180003.50805704 456.4067290391644 99985 8405 149248 SNT_20190225 68399723.17242551 18159.314726443627 0.019435958534490438 5.1882990154170115e-06 27840638.28549289 7431.872009238722 109647 5761 300242 WPR_20191020 4398153.11491639 553.464868114773 0.007234521166453334 9.100975111852178e-07 308296.1036652598 38.78342604827912 34153 None 763120 CND_20190110 17582971.9679895 4421.404184027107 0.010549843344842927 2.652985223447373e-06 253523.04138208117 63.753826536095566 37273 6276 417658 NANO_20210218 857971957.961889 16439.357437148406 6.429271289886233 0.00012332614308712157 107499746.35292363 2062.057813831111 107528 69102 127851 ICP_20211207 5531680469.632937 109593.90308749244 30.12663509663226 0.0005969329572812476 336809809.9186448 6673.592162921191 452996 25238 29488 BTS_20200721 65781333.46131487 7180.39326422007 0.024271799407452013 2.6494000015712893e-06 7852210.971522089 857.1118857344177 13106 6962 136009 MTL_20211221 134322558.9052602 2847.881281154984 2.0730013986041667 4.3982165286026456e-05 9150839.602152476 194.15025004748583 65252 4501 205875 GVT_20200707 5108739.885240485 547.2788742731675 1.1488419638349878 0.00012301179226257563 242642.10813292282 25.9808063592702 20336 5525 240600 QTUM_20190901 201799268.0467986 21023.35724333907 2.1024314577437306 0.00021903036638136006 161767680.5723892 16852.884413391468 178207 15348 240356 COMP_20210702 30053.327271562575 0.8939334499259374 3.258406464964973e-07 9.6921e-12 0.6908661548261824 2.054975010388344e-05 2518 None 3613749 ADA_20201014 3395519136.054972 297216.33842749737 0.10903356749862499 9.542441267340096e-06 577952326.4607311 50581.45172259585 165595 88982 25735 HIVE_20200511 108417442.65696864 12377.601114656742 0.31083529265953047 3.549363838932481e-05 10846270.414691478 1238.5131581360272 None 78 153201 OAX_20190714 6210519.763795822 545.3550832528638 0.1330784371117477 1.1670074280326551e-05 245152.8831497003 21.498241326585756 12341 None None LINK_20200407 920688836.8151833 126352.74633355453 2.526522120061146 0.0003467327893824376 310344717.1805083 42590.83607607485 47754 13932 83240 CRV_20210401 814289213.3640616 13843.806791888228 3.115363644426937 5.3013762437948655e-05 301491486.7716771 5130.443787957119 95286 None 26027 CTK_20211204 127965913.24812514 2383.5062658543798 2.147537118258052 3.9971994294452484e-05 23482068.768845197 437.07049851207 104271 None 236315 AION_20210722 52235188.00954097 1624.6659163268214 0.10629073322098591 3.2912065388456846e-06 2140284.75554356 66.27218543870126 73763 73384 347500 FORTH_20211225 85387129.48325951 1679.8971421201304 9.864143778985328 0.00019402190853737335 8352033.71310325 164.27959258228364 35991 None 98724 QSP_20210511 56613239.46089746 1013.9659338006026 0.07939839626649302 1.4200655082264316e-06 1946802.6811409981 34.81918362093866 64750 8438 221703 ANKR_20210117 59619759.33778555 1642.8844037319375 0.009146113781199646 2.5268964994946275e-07 13723112.16683154 379.1433709016287 None None 5258 BCH_20210325 8948436252.836838 169287.57099254712 475.8747306705189 0.009025649856815813 4015265614.4533043 76155.29714533141 None 482991 308933 BTG_20200319 110941982.3487806 20614.45312699099 6.362257513438638 0.0011808726966972348 18798984.83210481 3489.2029860419643 74923 None 195914 CND_20190205 16720506.622129792 4826.528318033115 0.010152445072136054 2.9305968261205024e-06 125012.05875425047 36.08588276113813 36978 6245 572490 MKR_20201224 473152412.0458829 20235.57363255525 520.9073773345482 0.022338003205808307 64759713.48173872 2777.0823572599147 77488 18237 35335 GAS_20190201 26460874.785113014 7711.664931684159 1.9088366082211252 0.0005563046744099134 865122.1372909268 252.1281742175627 315925 97902 145826 DLT_20200425 2617423.7907010457 349.1087867570025 0.03190671180780415 4.256916344412873e-06 145149.92695162477 19.36555230613186 None 2575 None OST_20190314 15093050.686676623 3903.6469714440245 0.026692435155626325 6.904738868900475e-06 2099978.1551919486 543.2176085642543 17434 741 1030175 TLM_20220115 212282837.01202145 4925.936831966305 0.17173961357664236 3.981859766273058e-06 39153359.759019494 907.7881607628009 115391 None 8723 DOCK_20210616 58678123.79236881 1452.9629825783186 0.10614940364203374 2.6299225107155587e-06 36383653.51063267 901.4293637707973 49257 15067 242145 PIVX_20190613 44867686.69885798 5517.83808231995 0.7441801696827518 9.151426105457187e-05 4230887.497990032 520.2860258271112 62990 8609 306282 LEND_20190801 5171022.074804613 513.8336967955167 0.00456220830286641 4.525151515029325e-07 1640717.1580973302 162.73903427500173 41869 5848 699914 EOS_20190730 4269373682.4499493 449739.6515533413 4.202513768056511 0.0004418142979506073 2767649710.5906925 290965.6651579078 1238 67522 92954 LTO_20210819 82637358.07402733 1834.3289886310924 0.28128511401302886 6.249390474067343e-06 9703587.207857324 215.58732559966336 11600 4402 676717 UNFI_20210114 13560062.133649018 364.1403556479316 5.570431352678968 0.00014903862368270365 6358667.619220395 170.12813019742424 13415 None 133722 PHA_20211120 127850701.60781582 2199.6263583688574 0.7104233581779205 1.2179166695202412e-05 9656400.591818837 165.5448277841662 114946 None 113780 BLZ_20190123 8660571.896188155 2424.771956885532 0.0427603565624563 1.1971970754576327e-05 1408913.2825387367 394.4651067081506 34887 None 750261 COCOS_20190906 20804666.368440233 1968.5397419862384 0.0013228404348205939 1.2516730247599388e-07 1886092.4493011276 178.46226792377996 8636 119 186264 SRM_20210212 204936402.04638156 4298.563723150379 4.0989011339178045 8.57123978645909e-05 158927470.79594865 3323.343053033166 34461 None 83159 MTL_20190110 10267107.05823923 2581.7387282259965 0.25729257537117467 6.469553899095396e-05 2423512.6719026933 609.3858648426334 32304 None 546213 AMB_20190110 20502326.438617975 5155.460440337896 0.07567648108745421 1.8981423355897736e-05 148940.30182847215 37.35769532537238 17862 4962 602429 FOR_20211104 49132592.533941954 779.1640395446643 0.08715810153977481 1.3821875657764414e-06 20671712.206119154 327.82016897841675 37142 None 147888 ENG_20190316 34024305.703656144 8670.247566013402 0.4419423118912952 0.0001126179998312821 909080.0499685322 231.6564270025366 61372 3248 352140 APPC_20190221 6289067.540758495 1584.615056670885 0.06033587611165708 1.5195809981335204e-05 744572.6259117819 187.52332558693456 25246 3414 1561264 ALGO_20210804 2611409223.319023 67968.91443917895 0.8229589566342241 2.1422555307595625e-05 147456881.72186866 3838.4699245412517 118056 36495 221911 OG_20220105 6595043.307531638 142.39733859625133 4.699759910992734 0.0001023301055394688 1418462.0643900433 30.884848481995217 775439 None 169599 AUCTION_20210617 86602031.34096782 2264.1701940862695 19.00698383254427 0.0004962802235182302 1453983.0627837356 37.96410023533136 57998 None 44860 EPS_20210727 140608508.9597266 3757.032970253112 0.5154247835292352 1.3814044899392405e-05 62653681.50495299 1679.1989773859225 None None 22794 NAS_20210314 34751153.49842596 565.8186887399893 0.7624626618847286 1.2428952865570634e-05 18596908.912864063 303.1494076732145 24061 4843 561188 DODO_20210711 145416934.54170248 4312.8361507596965 1.0792908334994655 3.2010058103412733e-05 57729837.893350214 1712.175632285358 94123 1020 25829 STORJ_20190520 35947552.93300721 4392.7488711149845 0.265618403267996 3.246146665681893e-05 2488800.0912935873 304.1585228471591 83896 7718 179109 LOOM_20210722 43919588.771491684 1364.8061211136658 0.05292859784920445 1.640915556275769e-06 3773552.494607302 116.98932604384925 33746 None 286849 LUNA_20210509 6533864278.740684 111421.70527598755 16.98413656729999 0.0002891286081134181 287311024.4768456 4891.025002858675 66609 None 21924 CHR_20201030 10485788.828636779 778.4489190977283 0.023328866459144827 1.734906031542562e-06 1739989.6675399148 129.3984246651388 32129 None 333879 TNB_20210127 8451922.79955301 259.5164222439764 0.00245568531080058 7.539312670641126e-08 314915.59637630207 9.668368888716978 15870 1411 3029706 CND_20190316 26129080.73489974 6658.345966471503 0.015097591875977754 3.847245564846126e-06 583116.74498094 148.5927907804266 36707 6212 587150 PPT_20201130 9315020.257462215 513.5144328844915 0.260104689271211 1.4315267074431202e-05 715039.7101415637 39.35332518679547 23466 None 1330810 BAT_20210902 1281428314.453756 26342.88632128088 0.8596792665593642 1.766879209374333e-05 136186504.36778066 2799.0101951374945 211395 78309 25472 GAS_20200605 24229186.701399293 2478.409516160889 1.738714359150942 0.0001778535229726224 14347417.316919925 1467.6008752919581 320260 99588 220108 CTSI_20200621 7210955.3175720135 770.7482691276801 0.03643787913008712 3.894460497585698e-06 2418083.9776177704 258.44348670945243 14360 112 235006 BZRX_20210813 45695374.15296938 1027.9023264425118 0.32579181482509456 7.335681821296292e-06 10974464.992763977 247.10621839622178 28823 None 159675 FORTH_20210523 161921452.19345868 4307.644102359424 19.16855679823458 0.000510033276758514 16703469.899528287 444.44271813297115 None None 68833 QLC_20191015 4305493.394214979 515.8518052030291 0.01793955580922908 2.1493825216792884e-06 78680.54621329042 9.4269107120269 24687 5722 940522 POA_20200730 4812041.527574318 433.36476432830347 0.01731280774818597 1.5599080257357174e-06 804904.0420585416 72.52297220742818 17347 None 642825 MANA_20190902 41787006.09835277 4291.165260208128 0.031481002689940626 3.2328275632294476e-06 9990881.945408529 1025.9774395435259 45685 6359 122199 MDA_20191022 15164516.620584257 1846.6413713137997 0.7706154409182222 9.377790741399324e-05 1568245.4826737277 190.843281703976 None 368 2061213 ARK_20200317 15315525.176914161 3034.4324322192615 0.10697600899882978 2.12432754791632e-05 486343.67765323084 96.5780348194701 62620 21972 77737 BQX_20210310 1352201680.1756842 24739.714899976607 6.046870770195023 0.00011043830958173438 22039429.342499554 402.5218023062241 48103 2173 33455 NEO_20200501 626489371.1813456 72397.57145450816 8.867008603025722 0.0010286906024079845 687657138.1757199 79777.34852752346 320936 99319 218752 DLT_20200411 2389604.82074994 348.4941685506546 0.02908606119457053 4.2408808219937155e-06 145926.77663967235 21.27679180507496 None 2578 None ARDR_20190625 118823232.94584638 10764.325205932391 0.11875192216568721 1.0751907956000506e-05 1147108.1969571766 103.86022831739052 68020 6571 956576 VIA_20200905 4764913.398784907 454.4395607554834 0.20564411501643026 1.9612700899002274e-05 102230.773588941 9.749958489759488 38431 2157 1668792 EGLD_20201208 195748330.7085982 10194.118074273181 13.189291612677579 0.0006868676505640841 18843409.058569696 981.3209449578759 106564 2865 49767 STEEM_20200107 41736222.49217482 5377.222320214618 0.12425364784167414 1.6025451370840952e-05 386753.95418954856 49.88108432230919 10450 3798 188997 NAS_20210212 25066457.69151771 525.6833642352519 0.5515896174201484 1.1558021027301557e-05 20368897.81658226 426.8103347704799 23609 4852 795646 WABI_20210106 4654188.581382142 136.98032896336986 0.07909254309018153 2.3189852454127146e-06 933966.9310081857 27.38381455558791 40851 7477 1296084 CKB_20210610 562721237.3859899 14991.538497725729 0.021118441867250773 5.628804692120756e-07 57448094.26673791 1531.192995177659 47275 4594 114536 PAXG_20210418 108233354.16218568 1795.431255106094 1798.8704299741073 0.029846903558425873 6290040.31773684 104.36450764539177 16785 None 51510 SUPER_20211204 467612094.2423534 8709.790977342693 1.624970038669572 3.0303173547159117e-05 32259899.787247054 601.5971486263776 207209 None None ACM_20210823 17969789.359431695 364.246305931109 8.970284952804276 0.00018204989065542253 3247674.466784675 65.91081383403831 None None 38736 OAX_20201229 4892937.65732702 180.44120661698082 0.0879929864265085 3.240620168900913e-06 471533.6751633701 17.36571970229265 None None 1739260 SYS_20190706 23696565.47559323 2147.4317793964506 0.042504112825609924 3.851810623390856e-06 285964.53888005664 25.914698026765926 61393 4606 806939 CAKE_20210724 2727757548.5829906 81604.45601184842 13.646095398395145 0.00040796801442732406 157885346.60526356 4720.1906099304015 994514 None 809 ARPA_20211202 151549799.14164948 2651.4448880261043 0.15466476727314532 2.7054526838782755e-06 71215886.29738425 1245.7343331320042 None None 205403 ANKR_20210725 444206536.97593117 13001.391855935068 0.06353146308621217 1.8592212054238833e-06 19180716.68304907 561.3155035318525 None None 5363 MANA_20210203 222144358.26540077 6236.9367291624585 0.16762258567624372 4.719805743115063e-06 66543315.86728573 1873.6826134095759 60341 8928 56631 ADX_20210310 99715714.63548176 1824.4861794059047 0.8712851602251565 1.592758612368444e-05 7760209.131795546 141.86101741080392 54304 3784 10289 CDT_20190701 11418585.781203121 1052.3545650860467 0.017236230317113792 1.5891769796559813e-06 3958302.7888130415 364.9547235536763 19760 299 343226 SCRT_20210826 251072708.41635525 5122.266455617671 1.7298906448021603 3.529206232319155e-05 3357013.1656523584 68.48751868678217 88984 None 113867 POA_20210430 23076939.158707958 430.6247460707687 0.08040285838284209 1.499990061162271e-06 732141.5661223248 13.65878147413753 19505 None 274673 IOTX_20200612 19618118.888650183 2111.8371972305126 0.004537358798001686 4.879081633463652e-07 4887875.195547218 525.5996529029206 24318 1862 869322 XLM_20200502 1472775209.8465412 166763.18081244998 0.07246687334471434 8.205465587485487e-06 688359200.4463625 77943.3066502466 282368 108039 75602 WABI_20200730 6755368.369639478 608.3255384807809 0.11414251692400254 1.0284399319693406e-05 1191761.4853983002 107.37936520032794 None 7662 820507 FTM_20210110 70289296.62992914 1737.2684401845145 0.027527623380708084 6.833503712411558e-07 14815558.998060014 367.783938389858 None 2843 142400 WING_20210823 44158077.508882545 895.0946438666455 23.477119693330938 0.0004764627986248119 3935580.97999679 79.8717198888976 None None 465613 AST_20210624 18657671.757199228 553.6156007594205 0.10830960784176757 3.2137926636103772e-06 740410.0535200986 21.969652051021836 43993 3694 210640 INJ_20210421 199999907.5578345 3540.102031050848 14.615633032298094 0.00025921629052698625 62117697.08694734 1101.6915229997176 60782 2960 97465 ZIL_20190414 179080563.47450286 35298.97226213551 0.020463562822886857 4.032850045417318e-06 9434253.498696322 1859.2524664445773 59275 10137 183798 DREP_20210527 0.0 0.0 0.6282643466510827 1.602599244896132e-05 3190857.2639225684 81.39353234019512 3970 None 188907 DOGE_20191127 278440669.58749783 38836.99917961168 0.002274122330073181 3.177555055956431e-07 85702194.88743144 11974.88099342298 138158 144527 121785 SC_20200418 58842301.29202519 8358.365982148476 0.0013366277269616094 1.8986381359198272e-07 3145404.780797708 446.7949713494608 107065 30093 175217 MATIC_20190826 29632317.840094198 2935.2015524461826 0.013629162831136915 1.3500402669005878e-06 11800360.047821794 1168.8877318340353 22615 1131 173960 ELF_20210804 117562429.53398693 3059.876882912192 0.2543660316792951 6.621862269279947e-06 32716558.826393124 851.7039206961254 87971 33390 843761 THETA_20190511 63051192.533562705 9894.550290910798 0.0848233285720953 1.3314387821030583e-05 5495367.091223163 862.5863887112789 None 3961 252883 ARK_20210825 235332825.03915587 4895.124633342521 1.4518156253533685 3.0211684603968346e-05 41925957.92410882 872.4618990198032 73270 23445 142622 KNC_20200113 35391686.20111223 4341.423312942321 0.2042895471505332 2.5014750335022076e-05 18118271.03195929 2218.537525235008 98882 6776 195958 MATIC_20200506 46668679.09490026 5203.63965519123 0.016966759145876077 1.8855833209118473e-06 17543028.861187544 1949.6264628104007 35765 1678 181455 FUN_20200323 10597055.957460735 1816.3482346149274 0.001761574956799064 3.021108232135731e-07 440592.3096793911 75.56176072159809 None 16981 317174 OAX_20210809 9034807.794887766 205.29480692671865 0.156970580953757 3.568134651771355e-06 722051.2135775014 16.41311346282418 14198 None 1659116 ADA_20200531 2349213951.9981914 242412.74217660562 0.07515173911855684 7.773793271448234e-06 608232672.4572831 62916.375749658146 156112 79594 60901 AE_20200127 56630406.262808844 6598.977956202959 0.16444527027232797 1.9135503062914095e-05 7154611.014341589 832.53887905787 25288 6349 376876 REP_20210428 242948282.69916028 4408.778492734155 38.11007826053305 0.0006915829637680923 40000843.173587814 725.8946435662759 147684 11019 149141 UNFI_20210813 54040276.74514801 1215.5403091136623 12.425812157352729 0.0002794958974007918 19999283.472677976 449.84727040649415 21268 None 266714 APPC_20190613 10467457.05338109 1287.7807705505304 0.09828560706847736 1.2086501454353633e-05 383301.8417285991 47.13587681542627 25543 3376 1192397 REQ_20210108 21343285.692350157 545.8726819066467 0.02808740177795092 7.1175070016771e-07 614748.5784553498 15.578077837238114 39543 27274 443928 XTZ_20201031 1422135444.265825 104698.1733315068 1.9002304321508816 0.0001400146849394085 94082859.2897747 6932.307618474427 74905 30115 118890 BTG_20190213 176259316.46979824 48489.552107116964 10.060374087382314 0.0027686295220182 71230262.68973698 19602.671474339866 72740 None 294190 ALGO_20200105 125118456.32467088 17026.988987422807 0.2342835517881565 3.186196543466397e-05 48189161.96640703 6553.603106919869 13717 721 440890 COCOS_20200105 10177189.806474151 1384.895136015079 0.0005883859479536493 8.00189880717391e-08 2807422.0983648305 381.8022442287982 13799 187 47947 BCD_20200322 94657403.54482041 15362.367709075892 0.5050411203076849 8.195856167492913e-05 14704430.689025134 2386.249240036087 28979 None 1207769 TFUEL_20191118 0.0 0.0 0.003328590469977882 3.911574686480936e-07 1185294.3607537784 139.28921143561078 None 4022 453885 SC_20211120 1034003621.5699149 17787.459206030257 0.021084036103343518 3.61454880888047e-07 108565519.15230593 1861.1966229522243 142900 49972 101806 UMA_20210902 825575738.026945 16971.724107502705 13.192600601870435 0.0002711445143293397 37572725.09505324 772.2236581984913 43710 None 238327 LRC_20200526 50038087.351553835 5630.327119170748 0.04303821764957312 4.8406010925573824e-06 6702965.390398992 753.8969633065533 34378 6802 498950 MBL_20200704 6558978.333687305 723.2187722065004 0.001837640081978249 2.0271875206781828e-07 4077856.0095441923 449.84754603150657 None None 121072 REP_20210108 110810862.24452132 2830.954017157693 19.617378961873918 0.0004971155154169513 39008773.57369223 988.5044591612856 136575 10449 135410 NCASH_20200323 1018948.7650829605 174.75823686742294 0.0003513255558916484 6.023197572302266e-08 1099267.2844599846 188.4606436405294 57747 58315 679947 CELR_20210509 320277849.71783316 5461.431604515282 0.05678820734068446 9.667312365634419e-07 41707421.6079962 710.0042271643403 None None 140241 KNC_20201106 148431428.37151796 9552.37893287021 0.755619830914263 4.8497395568796035e-05 20048374.270855032 1286.7501589370693 124916 9190 85913 RLC_20190509 44420707.816647656 7457.971098036022 0.6349017567626619 0.00010659620669650054 1890166.2443271666 317.3476046095829 24806 3299 1063788 JUV_20210220 0.0 0.0 12.495071281664847 0.0002233358164433749 5044561.759422088 90.16605777933962 2307961 None 93564 AMB_20190730 4191810.8686034204 440.6180854888511 0.02893774804311418 3.0422531707380073e-06 743231.5117772113 78.13664076167318 19375 5647 802250 LTC_20190701 7624136052.740029 701229.7645787626 122.56684305690813 0.011296762485287768 6518524940.364725 600800.5604871007 448669 205371 149931 ICX_20210724 508590179.4835331 15215.144377945931 0.7947934196937247 2.376961837043424e-05 32592995.234753653 974.7477005761034 142151 32601 243184 HOT_20201229 105562771.40351158 3892.932054296372 0.000594487746549933 2.1896521804571973e-08 6203703.677065233 228.49845707047317 26684 7362 472191 DOT_20210805 19483236487.043167 489430.1057780776 19.1805497367464 0.00048234852182216145 1291235791.1619103 32471.73223599516 518021 28093 22959 XVG_20190325 108228745.52664258 27103.051859664993 0.006849867249637492 1.7153696681538627e-06 1654719.1904206648 414.38103909385114 305103 53289 418037 IOTX_20190813 22059976.59339945 1938.3247042391802 0.0053618301213931956 4.71070168940617e-07 793596.7275765742 69.72241493415324 20385 1760 857691 LTC_20211216 10599207876.799978 217257.46196809958 153.23514794842248 0.0031402242279883305 1153019236.6725764 23628.645195386514 205536 353045 134071 HIVE_20200506 141112906.0062352 15732.249693788888 0.40208802254868103 4.4757633697039476e-05 28950992.999069136 3222.622578022726 6306 79 153201 LINK_20190221 168618462.85068893 42515.08159901889 0.46306667355308345 0.00011667586941930337 7091778.595176054 1786.8688907635647 9847 6362 313186 LRC_20190616 62814472.34487971 7123.094376170903 0.06534753440363356 7.411185648194099e-06 29268356.175803516 3319.378813843771 35061 2457 720276 REEF_20211225 338103811.94249773 6649.557787718321 0.020729393554761912 4.077368940184183e-07 52460099.62528921 1031.864150999177 None 14474 99045 MBOX_20211111 316840289.9244751 4885.792774525078 3.9815891129579466 6.129642701158262e-05 58155902.078888826 895.3081058690865 186502 7399 6993 VIA_20200801 5960531.046408718 525.9073458557879 0.2586371608111895 2.2816898822446105e-05 2468992.683124817 217.81385191335374 38610 2156 1374526 GRS_20200315 8583475.904744463 1660.5973102712003 0.11619954538955977 2.2427576111993415e-05 8233545.679392465 1589.1496974199017 37707 106867 3955402 MDA_20200725 9066498.362054009 950.4730620039202 0.4612989255674254 4.838064913771766e-05 241765.55378393643 25.35617098353069 None 375 1312356 REP_20200306 137832464.69907683 15215.330040265673 12.530224063552444 0.0013832118218423336 24464116.977369886 2700.5946296253264 130257 10116 288679 COS_20201014 22486528.047703173 1968.2891665427371 0.007461749540773697 6.530402368548829e-07 322712.0132399185 28.243232825027363 13229 None 244119 LOOM_20190905 17553561.495091934 1661.9664791434518 0.02914877977984102 2.759574079139209e-06 1637642.8265279194 155.03896660882324 20868 None 439430 ARK_20200106 20693463.292550072 2817.6514920528125 0.14610131706050405 1.9893994678209503e-05 501659.4624214496 68.30883442038238 62606 21667 97018 SYS_20190901 14385643.411476793 1498.94996422941 0.025540128549933618 2.661220890947099e-06 969930.5232837992 101.06446278387298 60635 4568 689818 VIA_20201031 3944623.03288746 289.8617885740945 0.1681151109478121 1.2412973044501677e-05 239697.72353899284 17.69835777606912 38133 2139 4094429 PERP_20210418 215219463.74080098 3570.17256739892 7.370341195723574 0.00012228888706821488 14524215.558770478 240.98615098734533 17147 None 280871 ENG_20191220 30358315.65221566 4251.227636452108 0.3887005098695601 5.439685932399944e-05 2284968.3085266855 319.7708685291767 61329 3570 358395 IOTX_20190605 24573654.254724078 3208.9496977627746 0.009730800593527962 1.2692439774296253e-06 1084038.4553894917 141.39733597257714 19928 1724 736941 POLY_20191030 14047479.42581101 1492.7927534272997 0.026297970674348036 2.795030722582174e-06 3717988.58352058 395.1594762133648 35175 5048 332480 ANT_20210314 198796047.16585678 3236.7995709602274 5.657887805757606 9.221980676419437e-05 46863261.141985185 763.8399761932294 79790 2824 130780 BAL_20210821 318176921.1404078 6475.950600427587 29.4887275994845 0.000599824381507347 81073155.04582071 1649.0930277730517 94910 None 8467904 STX_20210324 1341191879.3874395 24612.479402224657 1.2717713286535939 2.333013939703643e-05 27775630.16292475 509.532892385302 55709 None 83546 KEY_20200223 5512447.531823743 571.0729118892791 0.0020004711650827385 2.0723937652025302e-07 669532.5388102072 69.36041284919528 23537 2774 278947 USDC_20210727 27048461699.123333 722074.3114277102 0.9941799609933841 2.663727997337485e-05 4391024899.441503 117649.68537447901 None None 33232 MTH_20190426 6623873.023283175 1276.871135704756 0.019515749024203704 3.7576919486558335e-06 354512.4209387534 68.26017634311101 19484 2004 1210960 IOTX_20200403 9204897.484295165 1356.4423027944333 0.002137952693361914 3.135868127052723e-07 1963140.1635297583 287.9459721847046 22529 1811 530142 REP_20210114 109375391.16047569 2926.6414838854103 19.142386298470395 0.0005122075564462786 11103129.75198791 297.09498442344886 136455 10456 135410 ONG_20200310 0.0 0.0 0.11434404762915067 1.4427946530316985e-05 8303161.17270422 1047.693936993705 84511 16494 345761 CTSI_20210825 302678824.0915553 6302.690686797313 0.7621171116506316 1.588713181032837e-05 117045430.23957461 2439.934951710088 51026 4370 202161 AUCTION_20211202 208595346.86633673 3649.512336437124 29.03999085310093 0.0005078463424457649 7189653.727449318 125.73142214150569 85790 None 89055 HOT_20201231 107173454.06105606 3711.372573408799 0.0006071114327406837 2.1052328188156168e-08 6224952.190162175 215.85779709546517 26697 7365 745341 SUSD_20210620 185943951.28830844 5215.903857253382 1.000395936223048 2.809815621701928e-05 9920429.81569334 278.63546482777616 136123 6909 43067 NEO_20211225 2047761836.7113192 40273.75672124028 29.00835132736568 0.0005707023083780324 148812538.24996325 2927.696859998033 432229 115656 78285 ENS_20211207 1089354190.3041866 21582.334376604533 50.681854901567796 0.001003640529057633 174894064.8119025 3463.3849151292193 None None 5113 COCOS_20210813 32699391.78273294 735.4895093167135 0.7757359593043754 1.7448873570157573e-05 5732471.136298225 128.94228107143655 98429 1204 331627 CELO_20210805 376169023.4680454 9435.545850312508 2.8041000751397966 7.05059366489925e-05 39410868.8973737 990.9418891269238 None None 88664 CTK_20210602 59121522.10743385 1611.2897609766785 1.3070465674081841 3.563190867918155e-05 7159919.38419602 195.18936815990364 53125 None 194884 EGLD_20210217 2353109764.816481 47847.25314204726 137.13638415990678 0.0027867820673403063 259364862.5932281 5270.616929276649 154567 6289 32014 KAVA_20201014 67463610.3838749 5905.029591741854 2.288363345925217 0.00020034694661560194 12461636.212350082 1091.0202566495502 45985 None 79713 FARM_20211104 98995628.43012282 1570.0139230085201 159.61452359311266 0.002530935875989893 10394489.577666285 164.82075686158805 56696 None 97269 NEO_20190213 533351304.5039387 146777.72298447695 8.205793717038489 0.0022582836881413736 175128791.98357308 48196.49480576283 315965 97838 145826 NCASH_20190510 4948455.656690872 801.4737187288723 0.0016718756278671842 2.707695496984293e-07 625242.0254555133 101.26142092345418 60694 59348 935849 CHR_20200610 8485154.820162129 868.1556501473221 0.025560340479239985 2.6162792829656704e-06 3328133.5588292335 340.6577032093837 14257 None 533180 NANO_20190513 214681839.9448032 30937.908350015146 1.611166899287218 0.00023177387416079578 10356903.123206582 1489.8888266855538 None 45440 391429 PERL_20200105 5827581.5773272235 792.6767827421204 0.02222374222019987 3.0221109481864342e-06 922585.8240185529 125.45847102536256 10853 389 1210386 CVC_20190613 30859698.833325937 3796.578915000296 0.09011729309674893 1.1068045962942086e-05 5903009.358403224 724.9971304435593 88723 8176 415629 DOCK_20210202 12982480.349157618 388.86998103966266 0.023240340862265816 6.958556148359939e-07 7529281.369754172 225.43958145339695 43464 14839 229507 REP_20200301 122209648.92886618 14288.665937674084 11.109968084442379 0.0012989696306976441 28200594.65071277 3297.1936319229226 129982 10122 288679 ADX_20200506 7256055.041538984 809.1197427492552 0.08063777811334363 8.961596504001066e-06 221335.6010606828 24.59790429602827 51693 3753 29399 ETC_20190923 683671259.4624088 68069.68279472558 6.013653964980158 0.0005987490510502451 611302822.8867866 60864.32429256132 230269 24997 331618 ALPHA_20201201 39137000.58568185 1988.5500438668303 0.22376279286140943 1.1398266970091721e-05 32573651.08400719 1659.271259972568 18277 None 122485 NMR_20211002 260123902.51077774 5401.963633750503 44.88210808787639 0.0009319041833186279 41337494.32668213 858.3060273265304 30858 3629 2133102 CVC_20200322 12660922.397694943 2054.7969638462314 0.018867994121515456 3.0619163424719156e-06 8004909.909887183 1299.0445256260398 86517 8058 104560 GRT_20210429 1867147953.2022812 34110.698965657495 1.5335333751397702 2.8006860206660208e-05 263390000.1903593 4810.281298567281 93962 13864 26419 OAX_20190530 5366425.938643493 620.965901089674 0.228711446472584 2.6464915582953284e-05 1557799.9709976404 180.25789860290868 15142 None None BCPT_20201018 1940247.4111935967 170.75324049 0.016703423526662858 1.47e-06 84929.71491171976 7.47431691 10452 3192 1679578 ELF_20200713 46212389.27344036 4980.856865687919 0.10044750230340056 1.0811042901795547e-05 19925919.364283856 2144.602545261084 81183 33364 479052 AVA_20210702 119116724.46407439 3546.289839573804 2.2992163862267807 6.837489666899645e-05 4473644.462013945 133.03879515490766 88082 10464 46420 REQ_20190419 21072955.366797768 3992.8564212968063 0.028894214617717642 5.474642271493891e-06 764499.7832140967 144.85124046823503 42149 30374 359801 ROSE_20210418 295351109.77478325 4899.438050541225 0.19671125010276852 3.2686951140658106e-06 56078963.12786783 931.8482429559756 17632 1341 227579 STORM_20200321 9265596.795410525 1498.78619917031 0.0012304296628231316 1.9844064767844736e-07 2709368.3191707795 436.96021016115594 None 2523 875750 ZIL_20200301 61182277.32121572 7142.379113509384 0.005881612957986027 6.876740377535521e-07 9344445.842562297 1092.546015697804 68261 10542 224303 XVG_20200312 53036534.09605816 6681.0571249290315 0.003273176572250649 4.1232482536620554e-07 783620.6323071902 98.71335482132231 296646 51941 314536 PIVX_20201014 24838443.03488224 2174.1568211701447 0.3859387126662106 3.377673117461376e-05 802229.2585416851 70.20980564239872 64938 8617 320652 NEO_20210107 1386815022.6823907 37772.58266872128 19.671637509642224 0.0005335453212330292 995947189.6776179 27012.645133747268 327863 101273 181319 QTUM_20200621 161501429.47368652 17263.140006171063 1.681088607976369 0.00017960090964352527 186756470.02865344 19952.328354265675 179606 15072 115798 1INCH_20210127 256395187.66003162 7872.618262157261 2.661684999965116 8.16999839770857e-05 316232249.3572201 9706.696962961907 None None 17332 PPT_20190702 23801647.01727919 2242.272827962959 0.6561257093612914 6.187248327607409e-05 1514053.666098894 142.77486584998172 24013 None 660913 DASH_20211230 1406027647.1374602 30190.67980598994 133.83993608146724 0.002873854339718183 206248964.9296754 4428.644396279012 421368 43687 69246 APPC_20210115 3744099.8537444463 95.9827378523609 0.034129487042301634 8.70000356342459e-07 392781.85304045875 10.0124666886 24232 3120 538163 YOYO_20190701 5239117.152218047 481.8676977741088 0.029757999484212344 2.7427335238442794e-06 425925.89082644804 39.256712134251806 7582 None 1328336 SYS_20190701 24763198.03118588 2293.3451340972833 0.04443693491047223 4.115350057887853e-06 833501.7821265765 77.19145378129734 61475 4603 806939 FET_20201014 36560342.60327616 3200.2078544706555 0.05314419989699594 4.652728545317584e-06 4567780.185099902 399.90518809469717 25507 676 223809 CELO_20210513 510530137.2751229 9898.178484155134 4.572873982328559 8.899739994417905e-05 43249708.98978041 841.7270327823097 27919 None 73395 OAX_20200403 1696090.5593406514 250.11920569602964 0.032582734022838164 4.779555135123691e-06 380976.69585849735 55.885399972163704 12023 None None YOYO_20190523 7145263.935244648 933.0048917800076 0.0245141731177092 3.1968059581823923e-06 8126511.91697789 1059.7494596571898 7463 None 1390874 HIVE_20210318 139107738.22670624 2363.7073161012763 0.3712317022005334 6.299615366966029e-06 6530975.480214516 110.82737075674942 None 139 118919 BCH_20211111 12549756939.69998 193607.965231594 666.3210600425925 0.010258314569851172 8205513739.828165 126327.60120926185 None 679992 278401 LTC_20210115 10089394739.03153 257190.41740526562 152.22312208348978 0.0038803445915273453 6840344526.142325 174368.34511672988 138681 222698 152475 REP_20190803 122328180.67654327 11624.734745998298 11.120743697867566 0.0010567940678180275 9014835.660262426 856.6715596499663 126115 10044 203996 BNT_20210301 544650605.7496153 12006.22590110855 4.8122171864316785 0.00010618889992096795 289243786.0960379 6382.604580091535 98766 6015 42430 FTT_20210324 3255078054.175036 59674.90079133702 36.826294262783605 0.0006755637269607325 83235479.76259032 1526.92178372687 79009 None 3417 LSK_20210108 193221967.4554845 4942.6187844289325 1.3526148610208075 3.426645424344567e-05 18650383.5487797 472.4792939319482 177561 31044 299861 PNT_20210325 80690889.85525666 1527.0172496916646 2.114419938082359 4.013287226225677e-05 22494707.93094398 426.96212975938397 None 209 406587 VIA_20190405 13745913.598858457 2807.2692766150267 0.5939523234777303 0.00012134407008477577 470232.4973430663 96.06819075921265 41247 2233 2242748 XLM_20190123 1956348873.8744104 547684.5387145401 0.10222690994207101 2.8620705264262806e-05 117718221.94021912 32957.84384261738 261275 98857 59724 NEO_20190812 783002519.482911 67848.11851821205 11.113286199400935 0.000962331009093606 220914949.84569877 19129.652813254692 324459 98224 192021 ANT_20201226 99302338.35222231 4021.1338024610245 2.86220888367811 0.00011591716354771065 12063219.345538229 488.55070563253884 76403 2689 106385 MFT_20191011 8658606.719389323 1011.2271629747524 0.0009594024065805344 1.1204733107753486e-07 1309579.2936905592 152.94402399449586 18664 2297 1001046 EOS_20201014 2493694812.6394596 218277.91618028007 2.638475543978582 0.0002309105989900363 1430246814.651398 125170.44148028936 191738 73013 84814 GTO_20190730 15511301.802900923 1629.8658938397398 0.023418192235659028 2.4613636963073466e-06 3464464.2164140334 364.13171279945334 17450 None 852349 DOCK_20190305 5181578.327579523 1395.5611211269566 0.010082620766825775 2.7155651524855516e-06 6041358.225248349 1627.12674110932 117 15366 178518 NULS_20210401 122235344.85433777 2078.1500319144066 1.0917408399511312 1.8579145547715315e-05 65444259.17340292 1113.7244041355843 41572 5248 475383 NULS_20210111 26892037.862922605 697.7904709014897 0.27173158034754574 7.068314726591655e-06 22218060.27283244 577.9388704908805 35648 5103 933536 GLM_20210111 110492519.19826658 6393.577954391452 0.13679388529510284 3.556612772644035e-06 4130877.898864642 107.40197243203022 145810 20312 228749 LIT_20211230 90680462.26999459 1955.1887430381908 2.9345071608671693 6.306400945417116e-05 13543214.37144557 291.05037143897107 67491 None 128209 CLOAK_20190130 5690342.3946327325 1666.9177169987036 1.0840976998461356 0.00031757344945280774 160971.1245034945 47.15456483131322 17979 1382 963097 POE_20190520 12260199.683775323 1499.878722848697 0.005389999753710381 6.593975755100001e-07 1225069.1932753187 149.8715571038118 None 10894 944416 LEND_20200414 26003069.149254713 3795.3738219835855 0.02197528312324723 3.209280779796625e-06 573482.7389154675 83.75169144462767 44247 5722 93984 UNI_20210427 19685884166.76706 365312.33027924044 37.94415718429781 0.0007038933945559309 1427787042.7943268 26486.551364787458 None 36828 1654 FTT_20211028 6982592598.259082 119300.9860691563 58.12239120021007 0.000993239253614994 502026804.96132636 8579.01264483258 287887 None 1070 THETA_20190513 63898486.881889574 9208.443207701317 0.08614909285855211 1.239272307597825e-05 5036405.970888327 724.4972921293671 None 3962 252883 AMB_20190801 3987385.092979065 396.21815440619326 0.02759605567371003 2.74031464089776e-06 455488.4065154887 45.23043306955969 19373 5642 834562 ZRX_20210826 974696501.9019034 19884.88345151308 1.152037749852611 2.3508979538496077e-05 132569493.61157928 2705.2703031147466 None 19736 54566 AAVE_20210718 3255040667.7774844 102976.81955625245 253.01845688401573 0.008020735408333647 189170631.08474147 5996.746631229896 255525 11970 14216 PNT_20211021 36623772.66957759 552.54037419012 1.0897010885490055 1.6445674386118854e-05 4869656.546613178 73.49243455787445 None 354 342430 BTCB_20190729 0.0 0.0 9533.094230692264 1.0000124888220046 196885.9883355126 20.653152318130253 None None 50789 THETA_20200610 252496687.4640408 25835.59853827483 0.25268476691195246 2.5875847214714333e-05 19227285.56856437 1968.9445858017004 71254 4231 132852 NAS_20191020 20501546.226905048 2579.9086208338044 0.450671012038394 5.6691124911627154e-05 4639046.206058954 583.55816307993 24029 5075 1447881 CELR_20200127 12095667.140990939 1409.2356401976554 0.0033469459529531374 3.8946388928110114e-07 4347652.962127106 505.9101209508629 18880 None 865409 QLC_20190131 5469346.58268421 1581.478479953421 0.02278894409451754 6.5894936664725875e-06 518884.10872905405 150.03694484142187 23279 5872 940522 KEY_20181231 6807362.383917703 1791.5069167957965 0.002773696938126453 7.297900914213061e-07 194514.38228986284 51.178867771316035 23545 2813 583701 NULS_20190916 29991973.034318604 2910.375525168708 0.41180615914105434 3.996104442033364e-05 3093085.6295880345 300.14833313244804 21324 5296 318571 VITE_20200610 7700959.108478953 787.9663289232958 0.015408680935203372 1.5779054611492853e-06 1794320.203776088 183.74497210337745 None None 642638 HBAR_20200315 141433403.06339842 27374.52693695248 0.042267020867963294 8.157921998450703e-06 112392010.69295095 21692.68705609421 None 6368 124891 SKY_20210210 21178376.54513186 455.4292880730432 1.0599270361671502 2.2757654011927547e-05 1812055.4434831375 38.906575100058056 17444 3907 739970 FUN_20200701 21728064.76487942 2375.117408771009 0.0035936338662159646 3.9292337827385266e-07 617251.0849223279 67.48945233707525 34156 16785 233884 SOL_20211007 46002942256.337265 828744.3162274306 154.09462360903782 0.002777776344549622 3216047716.7546687 57973.867363533274 700800 68182 6633 PHB_20220112 13471547.830992013 314.2508524084443 0.3620291231965443 8.46198575052438e-06 193983.88380244284 4.5341348399655965 None 428 222681 GLM_20210722 319402562.0073598 9925.470249621058 0.320993100184557 9.951568583975685e-06 15839858.58074503 491.0742284993937 158631 21016 185713 VIDT_20210821 27673311.530396935 563.1739316687468 0.5999890654917945 1.2204259031036594e-05 3833042.0402721018 77.96715078130616 29637 1624 1187246 GVT_20200719 5003864.904643459 545.8683210857079 1.1278490914852441 0.000123036313277718 109440.0313907434 11.93874082 None 5513 229821 COS_20191203 15656303.320809396 2141.43183801644 0.011846882770376883 1.6215182707929711e-06 651432.8249214248 89.16355874185501 9166 None 202397 UMA_20210219 1526142150.648819 29528.897695214448 27.43662561852563 0.0005306844873298571 104849723.78500146 2028.023514522508 25472 None 131876 XRP_20190712 14118488461.449438 1247640.487934625 0.33217329442431803 2.9297215087239548e-05 2987364186.6516166 263481.29903678823 933656 203502 39729 ENJ_20210823 1730357799.573113 35074.31071620381 1.846943797675206 3.747769176788916e-05 337532248.71527284 6849.114518263241 264221 35020 33629 GTO_20190723 15413117.975750377 1490.8087521181883 0.023265001876656855 2.250347605598666e-06 2617717.839875278 253.20329241008162 17455 None 852349 NMR_20210704 183564435.44071302 5297.939057301423 31.960179075475505 0.0009216922023340966 9479818.440145856 273.38628845575136 29389 3513 578267 SUPER_20211120 497876715.54190165 8564.729931881679 1.7389934487667784 2.981249258008107e-05 70854331.40924256 1214.6936096295447 185023 None None WABI_20200707 6441316.449118124 690.1582139693097 0.10920917082488028 1.169352814188104e-05 1969673.098315474 210.90195659841706 None 7664 979343 LIT_20210513 126182010.34241022 2446.4218048416974 6.818255491791858 0.00013527266805442626 22785778.68305455 452.06476640030166 49572 None 92801 NPXS_20190730 140787055.8297215 14830.634688258408 0.0005789811647344947 6.086884444452246e-08 3793804.376012483 398.84628806940236 63886 4682 202780 APPC_20190213 5301193.9304504385 1458.9434500504608 0.05086484569194873 1.39980792157871e-05 466969.2316475505 128.5106089876986 25247 3426 1889954 IOST_20200721 89311190.68843547 9748.141742475744 0.0059272347356841915 6.469131663762116e-07 50563740.18258084 5518.652579829309 125 52177 346780 COS_20200523 12918096.94325326 1411.1997518631517 0.006537254245874847 7.153838142209425e-07 3393379.329909825 371.3437716853749 10939 None 168356 MANA_20200418 38030789.58973025 5402.155439221899 0.02865118851915211 4.0698122644475815e-06 27863571.15243694 3957.933665882409 48086 6828 45768 FXS_20211216 600257085.9170707 12303.849796278027 16.852913342387264 0.0003453401659219455 2222902.808136586 45.55044038940665 23895 None 80112 NANO_20210519 1320280271.21625 30974.805635921683 9.987395011696217 0.00023345465861229414 156865820.89444283 3666.7275723011435 127340 94516 54022 NKN_20201231 11213845.107114716 388.3308374972226 0.01723319549659691 5.976723100877882e-07 1058031.4607487365 36.6940714747957 13725 1023 373262 IRIS_20201231 33589118.16446904 1163.1773279377435 0.03576494721900197 1.2401930945156736e-06 1588768.7917375737 55.092492440421765 11076 None 799922 CHZ_20210527 1777752638.1813772 45374.59190733445 0.33498143696232374 8.55069202318034e-06 500518940.0017718 12776.180514758458 341846 None 25913 GTO_20200208 6614735.772783195 675.2611035069535 0.009989786833329356 1.0189889474269647e-06 4593861.229081359 468.58795853675485 16936 None 3746850 AE_20190131 85383578.0636857 24688.94222265762 0.37531989813375394 0.00010852498208878653 88441521.37257656 25573.156580798688 959 6308 515575 TUSD_20190302 201726004.6030327 52762.955664876106 1.00205872154751 0.00026230125344706953 43585233.18951489 11408.973398023092 8262 None 284347 LEND_20200107 17366352.987336155 2238.763231933254 0.015201926174154628 1.9606485031123638e-06 2179567.335484584 281.10684033025785 41537 5779 450933 NAV_20200901 12839669.106621621 1101.3312174147172 0.18486331983660734 1.585677507732496e-05 761514.5509156551 65.31942065441852 48552 13780 892932 ONG_20210916 0.0 0.0 1.1643706145327055 2.4162364814880382e-05 7220131.6305661015 149.82811511368237 151206 20124 111684 CVC_20200520 15128934.347296894 1550.6445889356862 0.02258049902581626 2.314394908859233e-06 9452681.732714744 968.8554027193754 85602 8020 119250 NEO_20210207 1743786913.8937197 44469.36305125519 24.81288099128018 0.0006309938684021664 700562661.5162425 17815.373555517323 336188 102786 149199 BLZ_20190613 13214375.684730174 1625.72617349591 0.06386034979116423 7.849795435611576e-06 708106.5411592233 87.04135684968405 36549 None 848455 GO_20200417 6697156.051980436 943.1928527878911 0.006687503574164854 9.433814035711284e-07 992444.2603240935 140.0004424502419 10717 678 903309 BOND_20210819 113656479.9023451 2522.8707776920633 28.299811366447916 0.0006283698838482532 11775226.83053412 261.4574994857387 None None 141217 QNT_20211111 3716123081.956625 57241.839584345194 277.4923985567555 0.0042719859010682424 107642651.51761928 1657.1549059669792 60370 10003 86328 GTO_20190511 16759584.750994256 2630.1401098231768 0.025286994820084563 3.968660041989808e-06 13340735.499266528 2093.7578499696533 17269 None 885807 FUN_20190704 26382623.951633044 2198.4258673699737 0.004388841469382589 3.657158071829886e-07 1828331.061280501 152.3521809886636 36242 17578 429165 ETC_20200806 840048258.575756 71710.17832454003 7.219262536190293 0.0006160411215306282 648729859.6725639 55358.046382115834 233604 25653 265753 STORJ_20190225 29386012.665723253 7801.637606148286 0.21423667571500155 5.7189046359914847e-05 3887505.434003679 1037.7435504339724 82901 7618 236494 POLY_20191108 14356225.602132747 1557.1197927983437 0.026692055458857836 2.895276746862554e-06 3339957.931034771 362.2839218257014 35144 5049 294854 ETH_20210729 268838784855.6686 6723495.958764594 2299.689405936291 0.0574556075325268 23171592869.594303 578920.7631179517 1455115 1048962 3522 ATOM_20211011 9081837665.174986 165975.6250085534 32.36811909954478 0.000591630523542322 533110905.20681316 9744.300649155233 None 41124 41751 DGB_20210603 1040537978.1574082 27668.093437835043 0.07243412874616834 1.9260366121244877e-06 54906585.45381535 1459.976059094717 219384 38828 96410 QTUM_20200223 229576818.4004937 23782.94118256161 2.3883561902699886 0.00024742243548377655 372608562.8079983 38600.48951979938 None 15193 121059 SNT_20200319 33912870.22583294 6301.449269892604 0.009067100441687685 1.682907572852001e-06 20555440.43183142 3815.211553959407 110424 5608 189796 ONG_20210318 0.0 0.0 0.7702814690002778 1.3079078583511153e-05 41425495.531959854 703.3887393482105 108147 17410 190882 MDA_20220105 9560019.493331281 206.6636877012978 0.47859536850621237 1.0403677876712611e-05 4156805.725859984 90.36039755859122 None 390 1130423 OGN_20200412 6270682.045079704 911.291170178584 0.21934573887055717 3.187000565800785e-05 23884871.831020683 3470.370586248936 66349 2197 102776 EOS_20190220 3646387860.699672 931385.9238023168 3.532740685551154 0.0009023573664307716 2692952465.5261965 687852.7780581662 637 62754 78671 ETC_20210220 1776719206.942423 31815.489813816275 15.387482187916152 0.00027523798497321427 2468141671.1820564 44147.98547991485 287740 30521 127057 VET_20211202 7964765816.101598 139322.10437675385 0.11905316148845789 2.0819243862212493e-06 442079537.68170065 7730.799910241595 517909 217629 34237 CELR_20200425 7194664.9676958155 959.4474091812408 0.001915604555379874 2.555753281738607e-07 3912727.6267890963 522.0266596584963 19378 None 1594945 BNT_20210617 795171628.9096239 20789.31476216886 3.767330250018553 9.843396960257757e-05 84361251.63269484 2204.2168665216404 121743 7480 35578 LPT_20210618 587402593.375289 15460.562030223373 24.822407224298985 0.0006505737797270894 7096140.534140792 185.98369316298087 13210 1074 95239 ONG_20210725 0.0 0.0 0.7130110058277572 2.0869254044898202e-05 31013629.631031264 907.7437940428177 141649 19710 156257 BAL_20200913 182344460.39998052 17473.015189753158 23.775682023323487 0.0022769402602385892 72865373.23858644 6978.142698135613 21176 None 61486 IOST_20200331 35220891.13570579 5482.921750757517 0.002923523522028625 4.5601262011225896e-07 27338169.226695836 4264.220925264658 191678 52255 156422 OGN_20200325 5672529.477646967 839.3374143487281 0.19773180505458468 2.9262155599535435e-05 31519105.146331076 4664.484597687502 66364 2173 104622 YOYO_20190131 4113105.7399593894 1189.3172457040175 0.014085978561507659 4.0730042661104885e-06 259443.99264129106 75.01903287943195 6883 None 763248 DASH_20210310 2451805392.2830024 44779.06891639805 244.787526623812 0.004470729022402392 1479766001.1113656 27026.020887493083 373963 38490 52035 TROY_20200713 7234970.704430697 779.6456719469586 0.0038169011160706407 4.108084399461869e-07 1627853.181459644 175.20386449657687 None None 690328 DGB_20210723 537353133.8607732 16614.489543196883 0.037080469856326646 1.1453947667069713e-06 11979480.385935627 370.03938178465035 222622 40380 89900 REQ_20190622 15675454.258816378 1548.87459407631 0.02143265469059505 2.1174813245827062e-06 577412.3711754433 57.046592230291445 41677 29947 444138 TNT_20190810 13502599.536873214 1138.3057055195584 0.03157450665615116 2.6617510485225807e-06 623297.8844568877 52.544409183090686 17570 2543 649538 HBAR_20200530 198356580.26531368 21055.000747566737 0.045033871673401095 4.780220552708796e-06 21937116.87710623 2328.5641022300883 39552 6511 137425 RSR_20210408 1023566105.2235034 18172.494548719067 0.07731358273599048 1.3751011712056034e-06 115565262.5560695 2055.4464334448403 65979 None 80530 VIA_20190914 5496101.010992994 530.9885385331296 0.2374082593497092 2.2932792603915792e-05 186350.00933164931 18.000747435856724 40637 2212 1917066 ONE_20200626 31099187.17278628 3358.8066410868423 0.004631867849171043 5.005910080108136e-07 3988280.4058741787 431.03503243591916 75088 1289 151549 MDA_20190804 14330852.377809612 1327.6201230610993 0.730089874566996 6.763603333317197e-05 1316750.0814905681 121.98464258386382 None 364 2972990 BQX_20190605 13735159.58898092 1788.3149729340091 0.115394521475573 1.502434312557072e-05 452918.74101625214 58.96992756688308 60838 5772 442313 NEBL_20210106 8500438.62672959 250.1817146129837 0.4941391605507783 1.448810946932531e-05 1093687.0504566669 32.06679206428005 38343 5881 781583 ETH_20210624 229518675836.76538 6808214.267178764 1971.1059779809414 0.05850918090420052 28098744044.509525 834067.0247294694 1392159 1020825 3750 BRD_20210825 16600231.967576187 344.76980399285037 0.19499773808777893 4.060493480671106e-06 785379.7741728557 16.354186895461694 826 None None BNB_20200730 2937168739.556445 264835.08229837177 19.872261286815668 0.0017916065830292415 207031363.72103673 18665.150824190212 1200530 67276 1050 PROM_20211230 200288905.01317307 4310.211490498073 12.187050599199674 0.00026168428705432414 4383684.556278587 94.1278907840217 None None 741894 AXS_20210930 4009380546.651636 96455.80947268361 69.21663275533201 0.0016651990647315966 563362883.6501179 13553.26472286974 529110 None 556 AKRO_20210420 137343662.99415442 2454.5633844200865 0.05052707885743409 9.03494968421219e-07 47008844.520543255 840.5840087341057 36824 None 141631 MITH_20210511 60463901.25554682 1082.9328383540633 0.09853747363916458 1.76344043785732e-06 77859961.53584991 1393.3927833903956 31639 2683 254910 OGN_20210508 332720524.08773994 5806.60586705944 1.5723376773677753 2.7432153381261584e-05 137844171.89510491 2404.930264388132 106548 5174 43246 PSG_20210108 0.0 0.0 10.492939408981622 0.0002658227692883417 6225276.884487768 157.70798596290047 None None 36186 PERP_20210509 183913134.75771153 3136.1176164263384 8.31945003009071 0.00014162574576210277 11350548.356704077 193.2254980813314 18315 None 273188 CHZ_20210127 109754580.34615512 3370.0161125264412 0.020622558434058587 6.331426727158571e-07 38078852.67971185 1169.0764090535463 68248 None 119636 BRD_20200323 7230540.221016618 1239.3233572112545 0.11682256639658316 2.00351177608276e-05 730163.7744578542 125.22338497762483 None None None BTS_20191102 79542994.46752176 8611.133822135173 0.029349576627627712 3.177314779954714e-06 16151322.624649428 1748.5034534640763 13523 7117 152147 STORM_20200117 7861380.953619778 903.0819267835066 0.0011135790784984182 1.2779875363837186e-07 1062202.2693581139 121.90254716249135 25883 2523 2384795 XLM_20210108 6885986441.634154 176143.56371557506 0.3140609809141245 7.956260530823753e-06 5052844176.568417 128006.17438505212 318065 118444 34006 EGLD_20210506 3396205775.653239 59324.77005880102 192.64782383625757 0.003360458932909608 156935062.41895527 2737.502152325117 222772 8382 22997 WPR_20200721 5075893.869130628 554.0616498635659 0.008337243942028772 9.100558941802024e-07 513818.750728542 56.08613420600379 32912 None None CND_20210806 25271600.429987203 617.2705738690146 0.013084071180662784 3.1977964360376127e-07 198966.49480886967 4.862816314627154 36147 6258 167421 TFUEL_20211028 1725284530.9240735 29478.56629193719 0.3159394860943184 5.394717270142381e-06 88343477.34437564 1508.4790091475243 207071 25149 29310 DLT_20200330 2255883.194566349 381.53480684668597 0.02752823453740377 4.652239176339462e-06 822286.954954451 138.9655257707916 None 2582 None BRD_20200511 6438560.962816111 735.3178884986078 0.10260407535758005 1.1688854189361571e-05 486411.7194837322 55.412961378263184 None None None BAT_20200412 233367354.0899077 33914.68988872478 0.1599619170685772 2.324178818467871e-05 78801557.15297674 11449.532073231918 115037 36721 18490 LOOM_20190207 23492040.966750536 6895.542227905792 0.0392146276926009 1.1511760731189565e-05 1118940.2827265614 328.4736733499114 16814 None 436692 WRX_20200414 23543220.648583364 3434.48444121572 0.12619522655200024 1.843383919562123e-05 14004926.673504096 2045.7554005773845 22800 None 25623 VIB_20201228 3487132.515297412 131.55822493504132 0.019037024585528507 7.223498413545938e-07 980817.8310808737 37.216614471234436 30396 1094 3150523 GRS_20191017 15508377.352813624 1937.0558860960234 0.21070425158641232 2.631777016225808e-05 1360922.9911057998 169.98450775810036 38228 106958 None GRT_20210430 1838926954.7804742 34305.87290447908 1.4960137512000544 2.7913685112178888e-05 208183201.2811362 3884.4297530991716 94563 13904 26419 REQ_20210724 37543667.48791144 1123.1682095911613 0.048644241456703076 1.4552564850367185e-06 1006909.5739957415 30.123024710069675 43406 27788 339521 ALPHA_20211011 390199545.6522904 7131.113311574989 0.9623132942353518 1.7588098645089708e-05 9255714.079840379 169.16571062891796 None None 59816 ICX_20190614 181752639.57860923 22105.11427542909 0.38464944091384284 4.675396138877964e-05 21285832.805520672 2587.2831187612346 113593 24892 290071 AE_20200626 49279483.41795395 5321.233769557283 0.13690321099462535 1.4795305448098382e-05 7558953.797051526 816.9058233398994 25411 6345 480616 WING_20211007 36296588.92340612 653.9265718947921 18.18854780476026 0.00032787046680178404 9247399.372003334 166.6955043001148 15552 None 293062 ZEN_20210813 774544447.2226778 17422.00546528206 67.92778667987486 0.001527911210641218 46637474.13666017 1049.024604691039 118030 7485 1280845 LTO_20210105 44520614.101035535 1423.006942444462 0.1652933178486454 5.283250098583669e-06 11241920.797653155 359.32413926651407 None 830 1001701 NPXS_20190816 100895863.82969353 9804.381245601531 0.00043171323494678687 4.1892642644548254e-08 3659453.630838731 355.1065170608399 64587 5024 188042 ONG_20190906 0.0 0.0 0.17322497349034569 1.6389066594210762e-05 7777809.716382777 735.8698854469801 81467 16278 256067 RUNE_20200913 167280177.67000416 16042.535496321132 0.7985690731450459 7.647758885551003e-05 7733995.956876339 740.6715121970848 16643 1838 320641 DGD_20190411 42083274.96896327 7929.276784516997 21.03519487440336 0.0039632162250409836 1219104.7180231423 229.69008023655752 16563 3318 526457 LRC_20190615 61382573.94080263 7057.24120448541 0.06374959435179993 7.3422709035437215e-06 30280272.719389364 3487.4883142321364 35030 2457 858325 THETA_20190419 93667613.11861733 17764.793242727595 0.1260978866051534 2.390686909694595e-05 6605466.7884633625 1252.3289175376538 None 3948 258696 SKY_20190520 22612522.573904715 2764.0405127701124 1.5056368247423466 0.00018425000519117172 3185454.806679704 389.8151632731323 15787 3741 440893 BTG_20190205 171038140.44961768 49371.73537859306 9.765837767117048 0.0028189990648921997 6580287.103117774 1899.4605104818631 72807 None 294190 IOTX_20200901 67287860.5787456 5756.940902343417 0.011564501581477286 9.905234528997873e-07 8248840.962748738 706.5302706975235 26328 1932 382406 FIS_20210729 21541881.698748574 538.4756201440998 0.7992270867448694 1.99763174447e-05 2782999.3288478428 69.55980216821453 24012 None 421891 YFI_20210729 1062429160.6792936 26557.20652245493 29817.542971351282 0.7452759218192504 190037831.49995655 4749.909145355816 134389 6886 20096 ARDR_20190324 70578089.12686151 17623.078562379324 0.07063647353441337 1.7640455295436254e-05 768276.4207729618 191.86611642752024 69316 6592 1067590 HNT_20210127 135988406.207664 4175.526147439485 2.034523721048715 6.246285059962288e-05 6122109.72358329 187.95771268843575 20376 2488 73258 GXS_20210325 57318503.570161805 1084.3582016069215 0.8131326926434882 1.542223299099966e-05 17576598.983228978 333.3655222095145 None None 480247 NXS_20190915 13021218.9182851 1257.6454136753628 0.2180820623641758 2.1063304999198306e-05 34546.802662142254 3.336679015831575 None 3534 525271 DOGE_20190920 325080669.53998667 31744.770747847713 0.0026817862160434243 2.6169623311217815e-07 72674839.60388291 7091.815019627926 138224 140949 96250 BAT_20191108 341605996.486346 37054.55027614413 0.25140940664343625 2.7270279357811597e-05 41743999.81186496 4527.955224827752 None 31238 23989 PAXG_20211204 319999477.0494563 5960.343182473858 1787.3842899083966 0.03325990371458094 12300160.713311655 228.8831580921993 27134 None 35647 ETH_20201129 61290956964.36442 3462563.7072033877 537.3926120944484 0.030355396955655343 9637463879.915295 544386.0506016831 513414 498101 8793 BAT_20190811 258415013.3620834 22806.882665574358 0.20216586966944336 1.7856840194032464e-05 23093124.532223314 2039.7618798220456 None 29399 37775 MKR_20211104 2905412050.677114 46150.902856506225 3229.6862172380343 0.05124975596753192 787824939.7658454 12501.473267785052 None 31367 38680 ZEC_20190622 747286472.4669775 73838.56394783704 109.44946854369884 0.01081327576879606 643237250.1567172 63549.89076926933 45 15219 185342 XEM_20200117 325928362.1921293 37445.73903728387 0.03621066514104206 4.158581834373289e-06 28599959.634344853 3284.5370869587173 213594 18098 258081 EGLD_20210610 1657981018.14858 44170.878725275536 92.58136373509184 0.002471891459194773 57903014.24749341 1545.9911218153782 242025 8998 28492 NBS_20201030 0.0 0.0 0.0042840877681480025 3.1859626448777473e-07 1302314.4530153612 96.84967777831011 None None 859330 XEM_20190512 554984091.4011184 75829.10543211926 0.06130883185168041 8.41725400627955e-06 65178893.70388198 8948.585180698274 216660 18443 133593 ETH_20210429 317353332381.2044 5797689.448250567 2748.7845851218613 0.05020094564731195 42878743228.1645 783092.8148655572 990597 826049 5558 IRIS_20201224 32492709.06611958 1389.763663046297 0.03439000601539578 1.4749853020401656e-06 3004011.585757109 128.8418773223385 10950 None 798128 QKC_20190530 42262103.18802677 4886.97465548944 0.02678308831063289 3.097291982862581e-06 16183142.67503076 1871.47641390537 52073 9188 159226 XLM_20200313 656003587.3686297 136312.16686747482 0.03251516675019948 6.824232701627392e-06 380748304.2715083 79910.86280013811 281606 106781 84088 GRS_20190616 31307133.442455165 3550.674996591866 0.43142723706673464 4.8910621478591135e-05 2050329.0950241976 232.44445796953414 38636 107041 12971590 GTO_20190221 18989398.092876196 4782.549018518772 0.03203990855691719 8.069367574099156e-06 15788380.750322025 3976.3611512141656 16250 None 751692 FUEL_20200425 1781450.7895308884 237.5802036084699 0.0017988617332719706 2.3999978311244626e-07 14963.568251202905 1.9964030967209534 1 1467 None AST_20200704 8826719.002785537 973.4157199731843 0.051108818734554584 5.638578570886887e-06 1838119.4110107913 202.79045726895924 32085 3457 274586 TKO_20210813 138006745.19375476 3104.1376228190347 1.8401153451094783 4.13900261157587e-05 24184263.394896623 543.9807326021751 309013 None 21500 AMB_20190914 2329587.680877524 225.65202281255017 0.016135605576093906 1.5599889931355923e-06 226872.7480036587 21.934038239785043 19247 5603 670257 WAN_20201231 40199884.96097865 1392.1054593740023 0.3191011732103991 1.1065221739153745e-05 2128757.831399633 73.8172699160398 104088 15895 597494 RVN_20190318 86525569.35781577 21727.87349561574 0.02769328504688916 6.954543956984619e-06 11468029.31912766 2879.936918456004 20934 5979 283361 NXS_20210809 38936741.3270163 881.8965752754742 0.5666321117980357 1.2881158872407433e-05 222124.17322389627 5.04951397057246 26100 3967 456047 PAXG_20210727 304778383.59873664 8136.235025973441 1795.477685412353 0.048121103514488964 17658623.669357043 473.27375016714814 23626 None 38365 NULS_20200223 26148085.807162363 2708.8507825548877 0.3145869061190684 3.2589719573815846e-05 4129589.4311693935 427.8059858787194 22671 5207 626543 AERGO_20210202 13161783.226199737 394.24071949028917 0.049727110081079544 1.4889040864719285e-06 4055170.107378671 121.41786108966332 11927 None 586684 CTXC_20201030 754120.7453968283 55.984770313141425 0.07493584803401988 5.572780613265323e-06 3238223.0139101353 240.81807181464612 16614 20063 632525 GXS_20200309 27253754.268372692 3384.8031413050803 0.41762349160258977 5.19136975506051e-05 9709911.4579316 1207.0140133541527 None None 822093 QKC_20190719 56861913.36554635 5298.157611342058 0.014161258075571044 1.3272541127055953e-06 3312474.0016750963 310.459333379273 51093 9228 202056 MDA_20190224 0.0 0.0 0.8760916828583883 0.00021291370863062126 9812539.769648988 2384.70958498887 None 348 1845971 QUICK_20210821 261704432.07446444 5326.549040555016 725.1813839849541 0.014754982646675735 12809356.140385665 260.6269710453587 46265 2202 4739 XZC_20200312 41433160.94625764 5219.370380556219 4.2913045960147835 0.000540579274929961 17483197.22043732 2202.373163083891 63725 4093 107900 ONG_20190714 0.0 0.0 0.289420593374661 2.5391372089877164e-05 10222989.09434228 896.8806156415243 81061 16274 247326 GTO_20200107 6276700.284460171 808.9665737404356 0.009473072664295567 1.2217771304996234e-06 2374149.941863523 306.20287694811657 17030 None 3106980 OMG_20200707 218861453.8755602 23445.754323914836 1.5623843947471066 0.00016729168210339346 104277383.60121207 11165.459003967622 138 43071 490885 OGN_20210804 242174755.22128198 6303.246182168184 0.7662585986894916 1.994658066239667e-05 29546560.797236666 769.13049882434 117530 6027 91977 AR_20211230 2729761510.5013227 58857.2096227298 54.81356510708427 0.0011769745755297913 53237941.792278156 1143.14228276584 52949 None 55160 JST_20210401 192249126.94355333 3268.5924444553057 0.13314153148559632 2.2651071126226807e-06 1507589663.9656448 25648.28594550491 37865 None 84644 BQX_20201228 32398186.460844766 1220.2853771232692 0.1437733674569403 5.461554138790024e-06 426988.3334387612 16.220110448522075 17546 100 178993 NXS_20200315 6486596.686690774 1254.1002843095257 0.10857203563992307 2.095539689750985e-05 112400.15511354442 21.694259003834073 23638 3536 662796 NANO_20190528 241624586.78469598 27397.782761798924 1.8081091212264295 0.00020505394572522222 6087736.004546065 690.3976500151417 98384 45897 404660 ENG_20190706 43430749.28268622 3951.5548172121 0.5582531270258906 5.0792764798149376e-05 1653765.562926458 150.46816793756528 61807 3472 328066 TRB_20210828 102238745.8872598 2084.321170538092 52.78742840346228 0.0010764501635903206 34281405.911408335 699.0722245340768 23967 None 404146 HC_20191213 51338989.16298593 7123.139717143171 1.1545982897273466 0.0001602087378038564 23018428.871962182 3193.9709842076372 12817 846 704478 SUN_20210304 0.0 0.0 0.00036427655185907983 7.1e-09 629.8473186545456 0.01227615650698602 42 None None BNB_20210421 89885987227.80591 1590943.298502094 580.458871224804 0.010296575943726325 10147802771.886824 180008.6570857533 2865176 263091 141 OMG_20210624 521257222.80586314 15462.057055874615 3.717047160680082 0.00011019723349409278 187419663.3386913 5556.326704915755 325839 4992 165671 STORJ_20210826 196632700.99732926 4011.5239302270843 1.37576198254336 2.807439278929054e-05 45615741.64441783 930.8545115723332 None 13779 71027 STPT_20200421 8152919.232482193 1190.9550857711158 0.011697757941815087 1.7085310142642102e-06 1946744.4230110713 284.3342493582329 11239 None 1265534 REN_20200330 34039344.80636301 5752.887803246853 0.038385438269906556 6.503046878432566e-06 1213932.3987100597 205.65765696229022 11428 873 365958 XTZ_20200610 2069512331.605902 211710.23470014153 2.902179401485112 0.0002970583216495939 74049403.76159513 7579.473408610166 66057 26170 98518 DASH_20210711 1316232914.4826937 39034.46216285406 128.69016429904946 0.003817660272106911 526561158.1612109 15620.709051822281 400547 41419 56983 STEEM_20201201 64828490.99928599 3297.4054903815386 0.17437433010983713 8.858026924164133e-06 2051126.3643981286 104.19499561235325 11688 3840 219689 CELR_20210120 32172440.72384132 888.4263976731421 0.008133705319384359 2.256736880264187e-07 15775221.427344982 437.69134227889487 26816 None 526594 GTO_20191216 6541481.3203915665 919.1940103358601 0.009852025012019467 1.385618585631377e-06 1842827.3502306389 259.18081038915153 17082 None 2742398 ARDR_20200321 35595462.733794965 5757.641977342599 0.035966763501806054 5.800630511312602e-06 2794344.734596801 450.6649959152981 64507 6378 1001396 RDN_20190929 7839208.059317068 957.0938996173381 0.15497092145639849 1.8918088088464516e-05 127112.60177416996 15.517281402977494 25513 4383 1994136 OXT_20210624 141254514.3323331 4189.739730274081 0.23915202267924437 7.089936226838651e-06 42839193.014171235 1270.017050564824 66055 4260 105017 ETC_20210120 920961541.8284752 25431.907763088828 7.890291997729933 0.00021807961151171256 1610566082.2539902 44514.401448380086 257639 26585 164892 BAR_20210814 70942438.95135224 1488.4230642616094 24.066223087568606 0.0005044211602359581 13300304.684615513 278.7705863148511 None None 44064 ATM_20210909 28261303.90123572 609.373161332143 14.906817683779478 0.00032215053131914634 6749590.599688087 145.86508294404382 None None 87660 MFT_20200319 5555482.42584514 1031.6269770563108 0.0005747142382207147 1.0659375303369407e-07 2319602.5409493335 430.22275061737037 18394 2507 872119 AST_20190920 4674930.609789354 456.0910920663873 0.02714821582541836 2.6475593798350364e-06 2403135.2573061115 234.3595370100176 32003 3565 234516 PIVX_20200423 16013456.319087334 2250.8996592384715 0.2544153116141839 3.576138260263193e-05 138242.23689849794 19.431745260159285 63876 8493 261496 MATIC_20200329 29431994.45489613 4708.630023350663 0.010667359469437662 1.7063279720809847e-06 13793676.264683817 2206.4069103223255 32982 1597 190232 WBTC_20210117 4025619482.042185 110948.99430019956 36253.596458079424 1.0015949286075594 258071192.89533404 7129.852574007585 None None 145403 ONG_20200404 0.0 0.0 0.08396534651183046 1.2479708416991613e-05 10565474.64861412 1570.3388168980318 84111 16521 252464 FTT_20200316 60772414.567216866 11249.17177310562 2.105177478333687 0.000389803462408488 11211302.833414031 2075.931700558583 8253 None 15714 WTC_20210710 15884952.00086697 467.5397042364466 0.5444891941147846 1.602131733023647e-05 2295237.413317689 67.53619235139809 65463 19866 588715 GTO_20201124 7659559.307647479 418.23613862422815 0.007579233981779638 4.1298200862217457e-07 303082.80329644814 16.514564029176025 16390 None 968505 SOL_20210513 12440648899.351025 241199.79267379656 43.62157836926913 0.0008696089760075887 1387803968.4736757 27666.279695506615 241012 15472 15641 TRX_20210620 4930616492.881324 138309.66414736738 0.06872802823357642 1.9303665717452274e-06 842854110.3117367 23673.27335325731 1049904 112903 19409 VITE_20210711 30972301.53750615 918.4995676854909 0.047159672788987764 1.3986812629722738e-06 4925240.071803991 146.07482615276052 None 2380 205892 HBAR_20200626 190732484.95837405 20595.429771536677 0.04070184411618744 4.39870045139789e-06 6658093.303708158 719.5486754081172 40066 6556 134058 SYS_20200425 11740979.18690418 1566.4530554326486 0.02009680962964508 2.6812677501310294e-06 265054.24737016554 35.36289682818815 58346 4500 804811 PNT_20210421 67274583.91970073 1190.7950062595114 1.7179629567856454 3.046901793009286e-05 15572317.01525424 276.18360714751594 31957 239 387057 BOND_20210804 80534071.11522089 2096.114749151474 20.926163695949253 0.0005448234176690785 12518273.165106306 325.9196701423371 None None 140491 POLY_20210125 73397518.01328509 2279.475032365591 0.0976227170212501 3.0247311084008734e-06 3315337.2650256963 102.72203096110346 36089 5031 305151 GRS_20200905 14687322.874238877 1399.9555131601262 0.1933747889048606 1.8442896819745664e-05 2961018.9031359944 282.40375294589904 37796 106840 3374022 STPT_20211120 172079765.72330418 2960.245571467139 0.1305569895027739 2.2440380339955532e-06 33742018.39353387 579.9641436834662 33958 None 500592 OGN_20200312 11666037.976796828 1471.4107867052044 0.4097297502353541 5.1615048767209095e-05 57329128.06998925 7221.945048936175 66258 2167 120835 ENJ_20190615 131498456.55361629 15118.56323932253 0.15098622756365027 1.7376747037992803e-05 11396763.41744627 1311.6340354508716 46307 12585 19644 VITE_20200801 12426356.1147691 1096.2732835248469 0.023677272436343648 2.0905265824209824e-06 2447614.932813211 216.10614543263344 None None 383254 ORN_20211207 202251194.39712787 4007.827667650253 6.172455422493253 0.00012220947519192568 11794047.842737203 233.51232185443175 91851 None 61725 VIA_20210508 42725197.90380317 745.5154822103618 1.8436630999237174 3.2170228633411e-05 2423777.845831804 42.29269841123997 38526 2280 682329 NXS_20210617 45257515.15242254 1184.5932165093507 0.6647136713572792 1.7378560592409115e-05 94831.38414086089 2.479312561736328 25679 3950 492000 ENJ_20200423 102610506.56091154 14426.634900031877 0.11179584623460774 1.5714360921184133e-05 15542032.441763414 2184.6348989218322 54318 15316 92997 LRC_20190515 46928661.09042764 5875.581756959587 0.059443999338355036 7.43700537106101e-06 9431500.16364502 1179.9696883606723 36103 2465 903966 GXS_20190324 64843062.51203832 16204.807464539015 1.0803698620515285 0.00026976421706655015 13974347.74429616 3489.34111425256 None None 590574 TKO_20210523 113895773.07873802 3030.0028102521755 1.5151221375796053 4.034427446809495e-05 25676024.981900126 683.6944517055581 263715 None 25911 RCN_20200310 27928914.378846582 3527.6078658114848 0.054983501646853894 6.937825258585316e-06 2083700.2131862247 262.92155896531875 None 1132 864394 ZRX_20210108 328541437.91145045 8393.452452394127 0.43930556853020775 1.1132252404863065e-05 139653347.6154725 3538.8950794340303 163899 16318 98378 FRONT_20211230 47208735.852603704 1015.5472654395282 0.7086427266132816 1.522785522997665e-05 8541556.402956791 183.5474766876247 None None 326297 KEY_20190205 6374648.771896687 1840.101111192009 0.0025968145178004837 7.495944405329904e-07 289810.9871751103 83.65661209251269 23473 2810 797344 DENT_20190524 84231413.25330432 10692.335165270932 0.0012126284243656482 1.541969356197073e-07 6142025.61638979 781.0154450572837 45140 9353 250313 QTUM_20200109 161246742.34164906 20035.636720394443 1.6771309080770633 0.00020900689499042636 273419076.10910004 34073.948463710636 None 15222 156080 NEBL_20190314 19493888.177803185 5041.873848215765 1.3070906853157755 0.00033806423241126326 1019196.56498152 263.6036720997932 39693 6165 588480 QSP_20220112 25403342.58569262 592.5838783879213 0.03551560365296857 8.302006803959284e-07 532591.6697593167 12.449681861747848 73408 8673 122179 YFI_20210124 913478391.1515555 28531.94427073407 30445.437456691725 0.9499897641634364 466124869.4670708 14544.506231701636 71064 2744 20013 WINGS_20190205 7450951.019693487 2150.785673278099 0.08335914667091933 2.40623858515012e-05 286018.7631931985 82.56195169431656 37418 1225 1583228 JST_20210107 35381309.36348927 960.6230988666894 0.024675739696264794 6.69960664551166e-07 74425903.1281219 2020.7064968789975 None None 212672 UTK_20210825 195148969.20995408 4060.969592558039 0.43120458896165725 8.979096062776369e-06 13666579.03981821 284.58307074966086 78848 4054 188834 NXS_20200425 9578270.265024047 1277.3899863832914 0.1603815176663559 2.1393260460730335e-05 55584.41800764489 7.414395058097816 23653 3525 498708 SCRT_20201111 23053041.35926579 1507.1700134026248 0.4091155848551646 2.6783082737994628e-05 517941.6597886539 33.907469774061 61750 None 428764 AMB_20190522 7151191.878014658 898.6671940605888 0.04941858806963538 6.214673787240368e-06 1215214.4695255994 152.8202606475575 19599 5691 582766 EGLD_20210710 1752951902.5883677 51578.68458117135 90.46238597916494 0.0026618979130984435 37022117.88890296 1089.3930917282341 278973 9608 31347 VET_20211111 10804807608.455036 166652.27897931627 0.1631789319309166 2.5121340266827984e-06 1328393314.6709669 20450.569243924703 489715 214103 41669 SNGLS_20200325 3223425.9606764014 477.031967613183 0.00499926485882201 7.398368013772769e-07 81510.00229323117 12.0625934172026 8647 2130 1285734 RVN_20190807 166092207.06110922 14514.97571125969 0.0403889045638601 3.5201242131238502e-06 21381595.628332816 1863.5284442417176 27275 6875 260058 SC_20210120 229483787.49750066 6337.083853874625 0.0050205709879377015 1.3929823203038037e-07 29937595.620546557 830.6334381491553 108112 30209 141057 UMA_20210220 1440267352.8955264 25781.797469398796 25.839472203327784 0.00046185247694138706 81817003.83855824 1462.390004773185 25684 None 131876 CFX_20211028 301991652.139402 5159.780124523247 0.2971287446420802 5.073563428388796e-06 24766300.496659406 422.89209213904854 44614 2062 169396 LTC_20200506 3009427134.458644 334449.5882476176 46.538089621914054 0.005171962708005474 3408732483.2800207 378825.97735145426 133002 213412 149279 NXS_20210117 22236194.1750556 612.7414302627188 0.32399627693969646 8.951195455760358e-06 341092.8463153733 9.42353030957454 24222 3527 480496 BNB_20210127 6125248409.288884 187952.4849914707 41.53699697144749 0.0012752464910299216 610970650.8481272 18757.69158641682 1525153 92711 564 GRS_20191220 11524276.133799136 1613.8348608525623 0.15579984822328682 2.1803476484624734e-05 3233108.7836347586 452.45879338204514 38093 106926 None RCN_20200319 19862632.0669258 3690.733562296137 0.038674141488968736 7.178149840062959e-06 1561732.2545318415 289.86676113512436 None 1131 875851 RLC_20190603 32848318.651044384 3756.4659540077273 0.46798141228091383 5.3509186931190774e-05 1482108.0025889892 169.46483787937925 24923 3312 786963 CDT_20210519 19273804.24378095 452.17849068209983 0.028054171555571925 6.548895613388453e-07 426437.7078305296 9.954655152310552 20828 330 462630 DGD_20191026 24339693.540544026 2811.1763938209365 12.172268791453442 0.0014059359434584458 1836516.6244023473 212.12353894281077 17332 3351 576212 PERP_20210408 213276741.28979456 3786.5365008457884 7.327826122578095 0.00013040454731891993 22040274.687914595 392.22437806029166 16718 None 303684 DENT_20190904 33572530.12835072 3159.0432832341776 0.00045515276118326725 4.283664700961046e-08 695700.4862675485 65.47576703079203 46538 10143 253321 INJ_20210909 396022943.6815034 8548.145450829716 12.109328764691263 0.0002615890624876041 38037909.92415766 821.7054297065347 83950 4009 148597 AAVE_20210108 1395927335.9952984 35577.87412259731 115.50437259507443 0.0029261287987476367 403787021.15852 10229.33422022546 91557 1969 24520 WPR_20190411 9262639.425756393 1744.1134037241247 0.015504054795836887 2.920873428855965e-06 617969.9775389191 116.4219367767472 35243 None 821639 DOCK_20190605 6548009.836392745 854.6659552037096 0.012741503801339517 1.6630594316734587e-06 1253522.9373416363 163.61358723966813 169 15268 238088 TVK_20210729 104782001.31115475 2618.978454806526 0.24139526405565054 6.031036850450387e-06 19188810.805848245 479.41464609559057 50938 None 92892 APPC_20200713 4647652.825030277 500.9326253596348 0.042738786326161814 4.599870909883672e-06 110914.71593624707 11.937479258760508 24456 3198 1596022 BLZ_20201124 21146506.943056885 1154.9879080821413 0.0849742912794642 4.630131960327592e-06 11838170.35579474 645.0455789728301 42721 None 240877 LRC_20200422 33353362.430311773 4870.335092273042 0.02912834652793572 4.255134358477983e-06 3930450.2857081634 574.1690157031944 34125 6808 593192 ICP_20211111 8621269504.38257 132943.11863490051 48.521391242866514 0.0007470087988879259 559766469.4960281 8617.858378029054 383941 24624 22378 MTH_20190615 12793728.53680469 1472.4083649489537 0.037665851692577634 4.3400850147115376e-06 65065644.964266844 7497.253294224676 19514 2006 1790455 TRX_20210127 2108929375.5160627 64716.52176712995 0.02952602463850334 9.064920928250305e-07 918613915.268727 28202.78925948744 565716 77265 30212 RCN_20191020 18628644.003987297 2343.4698931285006 0.036581601939104286 4.6019389692751e-06 912450.5796161045 114.78562056585045 None 1125 851208 DASH_20210727 1454936322.8541923 38982.425411768614 141.97146517638134 0.0038038723515959835 632497237.6396105 16946.636084434846 401478 41561 60872 WBTC_20211125 14233795947.172153 248810.22333267657 57132.55582541222 0.9989333628062302 394205510.21242905 6892.4806577285 None None 192631 STEEM_20190818 54761253.9933858 5357.4139021447745 0.17054700032307707 1.668498808683783e-05 451389.31747193966 44.16040956614866 6143 3766 255296 AION_20190826 29791105.252018742 2950.96567441508 0.08849007058482736 8.76380498260061e-06 4086951.3771780184 404.76004376812443 67510 72578 170946 C98_20210828 991775749.2841612 20215.908850470387 5.34346881347409 0.00010892912202763145 559159280.9324373 11398.724624720306 None None 45586 BZRX_20201224 24154650.690077856 1033.1319482883407 0.16902736234203047 7.249573465776641e-06 13192786.412003282 565.8378204978661 16602 None 127378 SNX_20210718 1480167413.6823301 46832.377568616896 8.839618731249686 0.00028021767197167186 71400476.9408571 2263.4093205064587 None 7247 44436 POE_20190401 12882845.493486244 3139.3585449749203 0.005676405838689763 1.3829366111737822e-06 1233025.7886945892 300.4007384540305 None 10947 791380 ZEN_20190807 47893155.19966221 4189.51003689901 6.8040798357505645 0.000594176138669531 1340149.5183341 117.03050012136556 26514 1759 272148 ZRX_20191213 131361555.76441473 18228.12389791847 0.21769841322892003 3.0207205671111578e-05 21305104.413120177 2956.235010196821 151656 16014 147414 ZIL_20190510 139805980.5406788 22630.659456022368 0.015863778016119993 2.569394222098185e-06 17153238.3934131 2778.2430877136026 60859 10254 201594 PNT_20200901 27538554.81818852 2356.1134394921405 0.9520867891832479 8.156443315080931e-05 7669784.113161356 657.063621390805 None 87 271040 TRX_20190902 1028786857.8735287 105754.63350678331 0.015555913449282529 1.5989456355448608e-06 471717369.5747079 48486.41204846566 458215 71289 65746 IOTX_20200308 17373651.68032762 1954.5260054485097 0.004027991316778505 4.529831804848119e-07 3202305.136284784 360.1274807804897 22494 1806 497303 YOYO_20201129 1539800.4341538218 86.98585355115841 0.008770417365420197 4.954393211020758e-07 1172005.7567993691 66.20639728797951 7707 None 3015981 RSR_20210421 1187835892.5415545 21025.31099683366 0.08988979316138958 1.5942449217247306e-06 214853448.8651052 3810.544086504415 68802 None 82413 ETC_20190729 662261005.3525813 69376.12534591512 5.900107386153117 0.0006187045033206181 577957414.9345526 60606.49949978231 229281 24856 498409 WAVES_20190220 278083992.8593424 71030.16093692173 2.7808399285934238 0.0007103016093692173 21872450.336333543 5586.814442284088 136496 56718 39709 BRD_20210427 25360721.083197396 470.77967403294207 0.317521866179857 5.892481762593511e-06 1450584.87228611 26.919547330319205 730 None None BNT_20181231 39757574.322181836 10466.268310963978 0.6367825363122795 0.0001675833096521119 490941.5961685725 129.20206324796698 882 5093 103037 COCOS_20191203 13118561.661830448 1794.8826950392834 0.0007592710119917068 1.0392369387722529e-07 3428440.269209274 469.2608717920448 13758 176 42849 XRP_20200109 9024811867.845201 1121462.374501985 0.2077455033575198 2.5849944517257998e-05 1751818179.3607318 217980.1825258601 942517 208420 28405 IOST_20210218 742216080.7521565 14221.39189265449 0.040287441256003496 7.726706812799577e-07 1208042645.6108696 23168.985294152884 207609 52486 193443 POWR_20200625 39447876.67639767 4239.959703203736 0.09142634121927645 9.83481520538144e-06 1355793.750311952 145.8439746478421 81511 12731 221637 LRC_20210823 686239222.5021858 13910.052430558473 0.5477419353622552 1.1116297861743501e-05 1593696494.686712 32343.707487792282 86526 11321 344060 ZRX_20190201 147056768.36548275 42857.71097064847 0.25183781639673675 7.339473365677443e-05 13884135.806256942 4046.344048462444 146276 15531 202840 ENJ_20200331 84243076.73461458 13111.857530042225 0.09211112298973782 1.436753773983201e-05 16815634.315589573 2622.910814748879 54003 15292 99549 TNT_20190616 13802868.537075633 1565.3299687276638 0.03239761019586533 3.6728957120892312e-06 1138742.2961640495 129.09846348140096 17391 2514 824040 DASH_20200903 807878272.9050058 70814.90578181842 83.53988026442622 0.007321061637813692 405741164.085905 35557.34173748988 319362 35306 76082 BNB_20201124 4543628008.752998 248100.17732135952 30.89436317605904 0.0016827710693411567 542655453.1484727 29557.65399579765 1334389 77360 888 PAXG_20210420 107363268.88308597 1916.1991538448815 1782.61295827763 0.03185510047599351 16850074.569574513 301.1090073979942 16807 None 51510 LSK_20201224 161434287.8117166 6904.150406225393 1.1222447860591722 4.8128399976706e-05 6134357.804459162 263.0770306806057 177215 31064 311147 NULS_20200316 11024064.242768927 2039.9823080163876 0.12911144041905842 2.402696962694843e-05 2805450.170907644 522.0797307158324 22708 5186 563630 ETHDOWN_20210727 0.0 0.0 5.498925164064568 0.00014635296562583676 29293497.994399406 779.6415075898121 None 568083 142 BTG_20211125 981969105.3993455 17175.543312451227 56.09874734567651 0.0009808736624350237 10129559.360070463 177.11300979933623 104709 None 255078 NXS_20190618 20509537.37591833 2202.1437093900117 0.3434979656777386 3.6881957425021074e-05 1211030.3802033337 130.03037975767873 21317 3515 925188 OMG_20211021 2062852741.6382637 31119.655153911244 14.719902190030366 0.00022215148810679613 446940762.8627437 6745.191257642478 3161 5789 181701 OST_20190613 18140631.776619475 2231.789120168645 0.02846679463860358 3.4962411835810486e-06 853525.1129332415 104.82843920232283 18118 756 1020616 PPT_20190930 12497698.94298713 1550.5161051319762 0.34462184131569107 4.280012050717148e-05 2501604.3296216675 310.68537722479607 None None 830282 ARDR_20200806 60425437.64426637 5147.329195255693 0.06048595414381703 5.152484281541797e-06 5852940.031251499 498.58156226031565 63456 6286 1526259 WAN_20190923 27324754.091816038 2718.322650333289 0.257231433150325 2.560752127289213e-05 5476963.523140367 545.234531456771 107888 16810 408901 LUNA_20210523 2534330719.5967817 67428.57299771429 6.596029138292773 0.00017563733203710373 427325651.80824894 11378.71525747129 74361 None 20297 BADGER_20210821 245982088.23696595 5006.547446317308 26.086459008564756 0.0005306195083440171 17936686.56671448 364.8465973946848 37009 None None SNT_20190528 107406360.84459546 12178.800029247468 0.03057313285917345 3.4672362703986803e-06 34690821.58349502 3934.2149003265454 111586 5755 333146 MATIC_20211002 8445601501.4634905 175365.63071596174 1.2677663424872625 2.6320064641855713e-05 897200922.2229043 18626.76542059773 704972 None 8338 NAS_20190421 57744382.1527345 10874.48359007778 1.2692641455425957 0.00023903400848510344 2331930.0103459973 439.160422073867 24148 5168 536647 POWR_20190510 42729600.896927245 6913.361850808007 0.10260365816333346 1.6618314135707094e-05 2894900.743868759 468.8757770870125 85178 13225 672162 SRM_20210710 160605222.108054 4725.63227831215 3.2112623183832536 9.448975882265719e-05 37914814.97985473 1115.6241278525713 95493 None 25633 GAS_20191020 17078499.56683265 2149.15342363567 1.2260830476323301 0.00015423230105474664 1000475.2566150029 125.85248713294517 323215 98331 172955 MDA_20190221 0.0 0.0 0.8024836741975223 0.0002021978625240599 2864706.323776371 721.8059557485363 None 348 1845971 POLY_20200501 13216389.614461938 1526.2239190414239 0.020793242554368378 2.4122919201825992e-06 2232365.9853558973 258.9840625041503 34736 4987 371818 LINK_20201015 4241058185.405842 371548.77678704966 10.951853200754268 0.0009583328713780495 725814039.7553928 63511.75824356214 94163 23514 33552 SNM_20190622 10302265.727650804 1015.5646904443262 0.0252754311277007 2.491571860756443e-06 384280.8785800815 37.881190586203644 31338 9997 15028658 WPR_20201031 3223060.770433748 237.28300743890094 0.005279295767088343 3.898028897066986e-07 124392.69533272089 9.184678077970654 32665 None None ARDR_20201115 56500581.33212614 3510.2634226299406 0.05640841340832873 3.506664195884733e-06 6072315.181884007 377.489259985035 64140 6299 1474087 BNT_20211120 962235065.472944 16552.859793397303 4.086924987295895 7.006433574865484e-05 60064708.1271661 1029.7213406040999 136848 8526 39755 BTG_20190914 177087344.5555819 17108.737646961894 10.101239364871683 0.0009754994814476203 12883035.43874597 1244.1438061227107 75035 None 255203 ONT_20210930 639032158.9165001 15381.568904512671 0.7314673598311318 1.7589516498602592e-05 94063137.17284514 2261.926087302167 None 20325 111684 AMB_20210324 11977177.06895568 219.79320971052283 0.08339609693359669 1.529868241871278e-06 4449811.818413465 81.63002866566701 24126 5585 320095 ETH_20210727 261543645427.02673 6982058.713014889 2230.212067673471 0.05975455709976113 35197538271.146904 943055.2999331228 1452606 1047788 3522 CTK_20210729 54004001.76402074 1350.537778366835 1.0145742988133584 2.5348198141337957e-05 7062948.112599797 176.46120981929545 80406 None 108429 ELF_20190321 56822325.59975396 14059.903694409117 0.17166865791970584 4.247705056461078e-05 8548726.585417965 2115.2649285676525 89465 31887 915905 LINA_20210729 114238077.02957484 2855.5731682503524 0.04117579406260256 1.029088520899431e-06 80991907.84894805 2024.19515034433 41759 None 92304 RVN_20200403 92005886.84860635 13558.073540796611 0.0157593041472957 2.311729365939261e-06 14598738.347529812 2141.486186713357 30215 7624 209100 KNC_20211104 195541650.6591275 3100.616208115684 2.1172395882811132 3.357211807182916e-05 75302400.58755486 1194.0363752927854 192946 12043 102926 PERL_20211021 0.0 0.0 0.09349854086791758 1.4110718754428854e-06 2363892.725250091 35.67566413551381 987 697 2114307 XRP_20210523 41860408304.124275 1114610.8907021417 0.9073386931415942 2.4159572968891205e-05 8164115632.892728 217384.69752282108 1779281 313457 10817 AE_20190401 142789961.13542712 34795.79762512804 0.5365837961812516 0.00013072732954431382 68449886.53691135 16676.37177690524 979 6355 440681 NULS_20200425 20003734.84842071 2667.606019243506 0.2096827933245693 2.797537130815159e-05 8283873.918354658 1105.214429193365 23263 5178 583809 BAT_20210718 797512013.9999175 25232.72891704605 0.534766096052563 1.6952191609291696e-05 171824275.84792024 5446.863720050481 208429 76365 27687 ATOM_20210711 3981477598.5372543 118072.77055524851 14.433961079347455 0.0004281909194995812 572692357.8820437 16989.214946877335 164924 32111 47818 XRP_20200914 10882899642.99869 1054039.743344221 0.2423228845096534 2.346450120607148e-05 1590391766.8511598 154000.10447597064 967193 218236 21508 STORM_20190626 19183915.499139756 1625.2251232687165 0.0032537397676531015 2.749745186333082e-07 2604246.6511071897 220.08566155464953 26843 2575 4259920 ONT_20210219 994095584.534957 19234.38602995452 1.2314390379489328 2.3818730612799736e-05 606984995.0041538 11740.420464577706 99563 16949 213342 KEY_20200308 4846885.604057815 545.2913046908185 0.0017657968476088705 1.9851778993323777e-07 2730353.71987366 306.957047148027 23528 2764 281483 SNM_20201229 4153180.3842837624 153.1605208 0.00950598039755511 3.5e-07 94470.44161048532 3.47830031 None 9503 None KLAY_20210707 2594819821.050035 75969.08619040594 1.0441337693180268 3.056831487448457e-05 62882918.39986072 1840.975654995775 39774 637 50267 FIL_20210509 10354168926.699018 176561.02494937988 148.13288217261825 0.002521732786867645 817391832.964972 13914.829406368115 83598 None 28149 ETC_20210304 1314892868.5094705 25950.98266932528 11.3041200341702 0.00022310032256183824 1389634193.3722208 27426.092066180056 296823 31292 134573 FUN_20210707 171884516.37455013 5032.299172884515 0.01644558550348408 4.815211574700049e-07 2743527.793523073 80.32956190027313 4686 331 110414 BAL_20210131 303858575.2136162 8892.278046117533 28.33497851379115 0.0008293698622682934 133085628.56018834 3895.440025660512 39888 None 75993 ONG_20200331 0.0 0.0 0.08201240606822086 1.2792334965353405e-05 9207452.018846855 1436.1828417097138 None 16534 255967 LEND_20190213 8365476.077233254 2304.3943594501698 0.007521273552838518 2.0698653768432273e-06 100871.72930981105 27.76004602596626 11701 5951 413082 STX_20210111 436108041.5705562 11312.778747391267 0.47576084268272434 1.2375548570279858e-05 7430764.4585126005 193.28994364498 47521 None 83877 KNC_20210527 187530418.62076864 4786.4455562466255 2.02923333847439 5.179794282874285e-05 97488688.29751837 2488.4834124992476 163561 10810 127302 VIA_20210112 7833218.083450166 220.94223146428413 0.3389200208400914 9.534493033434444e-06 139869.52018732726 3.934807281406075 37772 2127 3644327 QLC_20210408 26401091.23068955 468.70546241444856 0.10994291552748099 1.9554472391203823e-06 2223991.8763023578 39.55597096435529 32430 5635 940522 IOTX_20210110 45248206.87597138 1118.6218188170956 0.007905195994235859 1.9623992026790865e-07 10234118.782914598 254.05349284646036 None 2017 689535 REN_20200905 331923344.2553813 31666.072684431154 0.3766920582356923 3.593708698765624e-05 92077471.59714836 8784.3532510042 22146 955 91896 VET_20210105 1545875186.736323 49410.61949159526 0.02407963331148975 7.696543739492094e-07 614380146.354366 19637.35746273033 147716 70415 134055 YFI_20201129 701857360.4505568 39656.99242478916 23399.32437205922 1.3209283555863498 401689669.44470406 22676.008335916 53438 2170 9390 WBTC_20210124 3610482251.9401293 112796.10213282122 32004.50724677801 0.9986374587253968 268715486.245038 8384.73619464707 None None 145403 POLY_20200313 7794115.288117378 1619.5532527494806 0.012952506385024265 2.667911735795594e-06 3532807.109686887 727.6751902730756 35028 5003 364083 BTG_20190622 505801624.6004539 49950.215068788435 28.97677020880838 0.0028545028784203764 21522909.218489572 2120.222711966816 74186 None 408265 NPXS_20190605 208742505.2125466 27245.70015419809 0.0008857195619718023 1.1552946840489435e-07 22306671.054503243 2909.5866902526964 61422 4475 180599 GTC_20211216 131190844.41946185 2689.233328776998 9.254551360421273 0.00018937334370337504 26502495.710663836 542.3132936164616 81066 1763 21952 SYS_20200719 27492922.761949535 2999.155965477826 0.046274535512391766 5.047850624934338e-06 2682400.1789921178 292.6092130351778 57165 4451 1072348 XRP_20200626 8174313655.851336 883408.6777996818 0.18352365517619634 1.983363942098246e-05 1065596334.9274625 115160.37785418403 951401 214668 34884 CDT_20190318 5966973.304236349 1498.4707687875743 0.008769058404713133 2.2212285152830545e-06 1053632.6561523392 266.8882783607784 19522 284 398206 SAND_20201111 25192853.236518387 1649.5051514555753 0.04145524684578008 2.7137150097881846e-06 6464709.492817494 423.18839035847685 58121 None 72888 SYS_20190414 31446255.408684548 6198.279013341533 0.057050060284981156 1.1243122236467405e-05 183089.22031672148 36.08224906192299 62482 4611 1033934 PERL_20210718 0.0 0.0 0.056164015704235036 1.7804104687890995e-06 2092217.0261149658 66.32369586765498 320 682 5644185 YOYO_20200224 2504054.1341868998 251.68880168328877 0.014288352301768677 1.4359167268559806e-06 183699.9568083953 18.461039812914215 7524 None 1663513 AMB_20200320 1214027.4253743177 196.29986032034665 0.009951075107774378 1.6120264360269542e-06 321618.21890057967 52.10060878453106 19084 5499 780586 FRONT_20210602 47176399.563252434 1285.7390484277687 1.2294161606644767 3.352271642231285e-05 22583178.326676674 615.7796742728129 65239 None 177043 LPT_20210727 294872681.69573003 7876.21131488696 12.291182578850384 0.00032940140920943294 17237185.02633698 461.95335575351976 14263 1212 114263 LINA_20220115 118079727.5752973 2739.9920189438844 0.036488331307327655 8.462707918926578e-07 13687557.361842886 317.4543639751693 55894 None 129596 XZC_20201228 40576006.10801141 1528.3048937171807 3.5556993869497537 0.00013520638476054557 5343734.470513696 203.19687922163342 67106 77 998901 XVG_20191216 72770420.26454574 10225.966902016056 0.004486166315092431 6.309479946347925e-07 3011611.245297195 423.56211125014994 299623 52288 335598 AR_20210806 501606066.1563704 12242.76117363396 11.483618317175022 0.00028066397087285136 13815486.105784032 337.6557007462368 23536 None 92701 STEEM_20200719 74058144.38601843 8078.954110292732 0.20596294522049458 2.2468361807499656e-05 1486298.5505889568 162.13932827987176 11567 3863 194139 POWR_20190725 32669555.51359542 3325.4943056057846 0.07768096597951425 7.921874138756907e-06 668977.3241697135 68.22204251621213 84488 13142 580575 ONT_20210819 876001072.4767166 19434.217078571994 0.9959859987296826 2.2111185378820258e-05 169188002.78555226 3756.0239784846844 None 19808 180960 XZC_20200321 33176833.310356148 5366.624621779963 3.413900172016871 0.0005520580273148097 46764434.28492983 7562.225032660924 63643 4093 90239 BCH_20210909 12514359966.544079 270013.9455437008 663.4311570196381 0.01432991808755247 6327776022.322151 136678.1030960397 None 620213 485301 LUN_20190411 7735398.885425884 1457.4939532729322 2.8564016768796963 0.0005381712667097401 1566192.9567063027 295.08456539741894 31819 2243 1417813 VIA_20210527 21080604.7495386 538.0522672989218 0.9143520192930131 2.332083895499863e-05 1521907.28498376 38.81672916847538 38320 2286 795875 LSK_20210603 549284339.7343231 14602.943443450813 3.8107752185175463 0.00010131098042706187 38071844.00441207 1012.1551709506543 196518 32491 207056 OMG_20210408 1401992791.2286348 24889.94389560229 9.948074732175431 0.0001769366873369234 2281539129.2696047 40579.50773699652 314791 4308 135394 OAX_20210131 7650658.22292248 223.62201781134655 0.13605799445373443 3.98244170418804e-06 1144703.9107877589 33.50568712681178 13010 None 1390628 WTC_20210513 50164102.69044815 973.1754085723837 1.6826511014080943 3.3383422514191164e-05 35876243.24895328 711.7766633852123 64656 19683 333404 PERL_20200407 4590771.704483167 631.1790836638502 0.012973616197543737 1.7832176466283083e-06 2183242.3654383193 300.0856703047243 11613 478 646764 IOST_20200411 38187249.43388398 5569.372005334378 0.0031868333647232564 4.643795848783782e-07 49011318.019019075 7141.840476491532 192074 52235 158956 WTC_20190708 72351540.46574937 6333.651724959256 2.4766058085638134 0.0002167236134890336 26762459.95509666 2341.9379084342727 55959 20063 771082 WAN_20190906 32853830.59274203 3108.34867865849 0.30949655221702643 2.9281918783183835e-05 9348493.262787025 884.4745393936296 108112 16864 451102 BADGER_20210430 256984974.16399452 4795.304952727532 31.67731858774015 0.000590972750765987 40193888.83484305 749.858072201308 32363 None None MITH_20200106 4225874.255431632 575.5070698691238 0.007309351942585173 9.951652103160987e-07 330881.1591850993 45.04933145326336 91 2085 1348503 GO_20210809 25631684.714403 582.6397650887367 0.023474321066903926 5.336380568428958e-07 578933.4975946125 13.160804345188124 22485 1109 169047 EOS_20210704 3882643739.732656 111998.60913056546 4.054075538422269 0.0001167166253936858 1107068673.2386363 31872.449932140342 225728 89190 47044 ZRX_20200531 221353366.97682327 22841.204664749726 0.33757747763007845 3.486588808595627e-05 55185755.02909655 5699.729651075631 153394 16050 97923 QLC_20210617 8452979.545636106 220.99839338253997 0.035220748106817114 9.208266390939165e-07 742057.4844385559 19.400675344479268 33907 5654 940522 DOCK_20210131 11945576.284459477 349.194532592658 0.0211686403615425 6.196098695650822e-07 4589013.103406812 134.32122998319753 None 14843 229507 THETA_20200325 70857546.9578623 10497.4067094238 0.07098630161532944 1.050520022679154e-05 4197243.248904998 621.1463300234003 None 4027 384607 1INCH_20211011 534769887.241218 9774.71913626682 2.9626323005816944 5.414771827834287e-05 67210130.96918507 1228.3924793689084 None None 4022 FXS_20210723 108573442.82575941 3353.7723145858477 3.407779747713618 0.00010526076985591077 2550454.027396547 78.77937375089702 12738 None 120117 NANO_20190816 139026146.24261948 13498.300576571812 1.0441260468374292 0.00010134753024743705 4342379.689657468 421.49073694350494 98784 47338 238230 OG_20220115 5915471.497408287 137.2661084507751 4.288317577054784 9.947919201281147e-05 1553276.7088238427 36.03247874944895 777039 None 169599 WAN_20210724 87977558.29694335 2631.565487170576 0.4990345252861415 1.4925130196885735e-05 1973225.9954031426 59.01526527124479 123140 16649 248498 MBL_20200807 7311132.986312821 621.0572504013192 0.002062989562720498 1.7533167738133285e-07 3029056.5898157097 257.4368685002031 None None 188797 BLZ_20210422 106625929.34982397 1967.8703077502448 0.3691978108479429 6.825868239594373e-06 46239588.27448223 854.8949309580318 54942 None 191106 ONE_20190804 26032949.47915296 2412.6966263421596 0.010089800740775626 9.347261522191409e-07 1501905.7412450418 139.137591571694 69399 None 151929 OGN_20210523 145980956.5320677 3883.5743994615214 0.687181608061782 1.829809143265505e-05 61000760.39215359 1624.312231326127 None 5441 39883 MTL_20210814 188714614.2973802 3956.220533935179 2.9148582353765944 6.109235075072528e-05 142716723.93412116 2991.191835938908 57534 4232 202262 ELF_20200418 29135827.40480588 4115.622203755982 0.06299560770645005 8.948330247405255e-06 25032946.663321868 3555.8522564447 82386 33428 612782 FXS_20210821 130428066.0902305 2654.6416687994315 4.088455694391568 8.31245069955691e-05 5681525.047309614 115.51402383751929 13601 None 93970 GXS_20190813 92039728.51206724 8087.13831791996 1.4157202528597475 0.00012440773097100304 5445632.663635794 478.5400237200851 None None 741400 MANA_20210610 981430838.0741131 26146.44199353548 0.7376560489478893 1.969516988791675e-05 104106241.12192795 2779.601832335334 139510 33064 11364 BAT_20210107 373165340.0858451 10163.877969990965 0.25191031281514065 6.820527298062784e-06 214425508.44875708 5805.617949627026 125774 49193 23893 ALPHA_20210106 50228626.931008 1472.9768367935874 0.28798310376312486 8.451178364198842e-06 33656306.08062787 987.68102034699 20430 None 85584 IOST_20190207 81013302.14989178 23781.702940524137 0.006074903344993775 1.7830127768625113e-06 5733745.243181028 1682.8812653112088 195968 47961 76980 RUNE_20210220 1125596725.7591925 20149.660704187543 4.801487738850812 8.582137389425286e-05 138806458.4672759 2481.0145561067943 37682 2698 124938 LTO_20200411 7731821.854315295 1127.7161427597534 0.03656170833344933 5.328215616411496e-06 1852371.3334799975 269.9500191956693 14555 421 900520 RLC_20190818 15816580.313482951 1547.2938874887761 0.22584291992893096 2.2093610794032702e-05 449731.0658978053 43.99599126268088 24869 3314 784217 LPT_20220105 1101956685.3399458 23793.169829582872 43.30158396199549 0.000941115701587391 45103834.44187421 980.2857750492744 23866 2337 74426 TCT_20210108 5450823.713582777 139.40945185399633 0.009471340338883288 2.400091390090356e-07 713375.3283105954 18.077335647543762 None None 2545563 GO_20211125 42359175.52906839 740.9009611186932 0.038841678803206374 6.790628313275348e-07 1823552.6627029316 31.880878282421094 24621 1161 169368 ETC_20190401 527768853.7983601 128613.49537442104 4.826028656160436 0.0011757601385172629 139382126.75001034 33957.51669340582 226664 24288 634838 WPR_20190616 9748906.246888792 1105.5857751293563 0.016064716854193868 1.8212463602400683e-06 15705746.732015256 1780.5501541141539 34909 None 1193640 ENJ_20200322 69642519.57807556 11307.730804544486 0.07623433079633454 1.2371380965003104e-05 8260292.363870145 1340.4882373632258 53874 15275 111026 ARDR_20201228 66971289.049129866 2522.489486024705 0.06628369967749968 2.5204547479016447e-06 8487462.940823283 322.7379637968369 64251 6295 None GXS_20200127 28165558.67485278 3281.498130530484 0.4319181208781574 5.0259703494694364e-05 4030225.9535927796 468.9730568200352 None None 1111246 NEO_20210106 1185625348.7769704 34901.78981349678 16.86967512131552 0.0004949032999689456 577123290.7650882 16930.985275921925 327776 101237 181319 SKY_20210724 18114134.110406257 541.6595574994783 0.8625778147812504 2.5793312261879916e-05 477120.674394621 14.267144749578476 19642 4409 638153 ONT_20210408 1438957907.6817164 25547.40197016611 1.7619639488533152 3.135556265923454e-05 1201982228.4280581 21390.238491139506 117484 18086 179444 BEAM_20200324 15735739.251712656 2442.4423788660956 0.2712397078640914 4.185894510525896e-05 68622593.26334447 10590.150634692993 14964 1477 244013 BTS_20200629 66075349.2648601 7247.180342828692 0.024406192669377845 2.6752036936084767e-06 9092721.539303185 996.6684511762202 13110 6983 148844 ONT_20200506 301951540.5157193 33670.493317123706 0.4737821662218494 5.2804568881300565e-05 119801765.77807449 13352.297836739537 84149 16479 182484 IOST_20191127 58216264.05816777 8121.96576925825 0.0048501974106826785 6.768980551511787e-07 19746403.77745699 2755.826450228792 194287 52295 86149 FIL_20210221 2315945991.570518 41449.750898778235 43.51944064392642 0.0007740470104336553 869684870.756501 15468.419728469053 53288 None 47749 DASH_20210107 936515865.650161 25550.761557346497 94.36707867772606 0.002556723784713863 587959400.9550526 15929.811603066159 328044 35841 87017 DLT_20190405 9855008.084204607 2012.6462469455516 0.12292444189198136 2.5104334214429083e-05 573592.9020239026 117.142430698086 14940 2684 1058682 OAX_20210418 27894570.710925613 462.7283752163916 0.4894230758166935 8.142099313676338e-06 1876862.7941082313 31.223708122615765 13749 None 1298527 BAR_20210909 51612744.92765335 1113.6135555884023 17.470553735086245 0.00037719314148565046 6547855.749347831 141.3696622065994 None None 40531 WBTC_20200927 929013822.751594 86519.49361492385 10750.604567774259 1.000885929221227 72102183.81783941 6712.744459574032 None None 182966 THETA_20210422 11162213382.381 206007.9421384782 11.100759266267012 0.00020523502004783658 509869301.74296504 9426.655767861135 144449 14500 21480 AUCTION_20210826 157075808.1009247 3204.5714939589743 34.368099679106614 0.000701330275189749 4310730.626154783 87.96662965185514 45956 None 81918 IRIS_20210828 127747587.41528064 2604.364897320354 0.11777080752207517 2.400813237931893e-06 7613839.690459899 155.21169893414432 27424 None 908370 PAXG_20210707 289467709.16272676 8474.807063029022 1803.4181663905697 0.052779087958284114 9584920.0404097 280.51360872026584 23009 None 39244 STORJ_20210104 45524523.297369145 1360.8327448559735 0.31465692370561316 9.558896660470124e-06 36421361.757138364 1106.4369064886832 82999 8552 92086 GNO_20211011 447756777.0929133 8181.523102541883 297.53454393583996 0.005438391939282091 5755236.039198915 105.19527874045612 85961 2347 166619 NEO_20211021 3207513652.178584 48378.776211372744 45.492517418309966 0.0006865691301295972 250819171.04101524 3785.341191343855 421142 114401 97523 FUN_20190316 27191190.350273535 6928.725342680675 0.004524709369007773 1.1529492203859358e-06 729649.6555283364 185.9233230002439 36470 17799 506904 PPT_20190625 33501969.845754113 3034.3511066639617 0.9223022505424461 8.350571452296646e-05 2676950.1521139923 242.37242732864274 24034 None 671795 LSK_20191015 110239475.73565288 13209.117918422628 0.8110105606850992 9.716189440997711e-05 3046240.8118521404 364.95027618199373 180836 30945 156630 OGN_20210207 48801353.15894442 1243.976263974717 0.2308810939814132 5.87776913689334e-06 20622317.04538853 525.0027907021797 None 2623 192490 SYS_20200901 54580601.8242213 4681.692251344447 0.09178703319089407 7.873101939176632e-06 2304405.8642128017 197.66214951573042 58481 4492 424365 VET_20211225 6164449487.114323 121278.71189506982 0.09222556095347643 1.8136518347870944e-06 339829757.1698932 6682.885484614631 530640 219422 35068 AMB_20191011 5112563.208844804 597.1822089305346 0.035275515908899886 4.120798345190928e-06 1975552.7807362683 230.77917983451636 19204 5594 570215 HNT_20211202 3829634350.4095445 66999.1926052996 38.14098085379918 0.0006671737847683206 18723706.53132437 327.5208416710316 123705 73810 2046 AVA_20210602 148225913.11069065 4042.6703538808597 2.875313534306685 7.838504903585047e-05 3328186.9812963875 90.73100954616473 None 10159 43410 PIVX_20190930 11582058.041435357 1436.863826283843 0.18954960026880668 2.352092198892877e-05 247592.67148830977 30.723398534464582 62895 8596 243854 SYS_20190220 27057831.540466037 6911.300823760636 0.04932364049512057 1.2598589679109546e-05 4244615.49390933 1084.189415390877 62630 4632 882608 DEXE_20211104 44681126.05379832 708.4885658491827 12.827587505560045 0.0002034012988879573 3913062.584597522 62.04767747575414 18222 None 362108 ONT_20211111 930275618.7794766 14342.325484751444 1.0720859546817028 1.6508748077563998e-05 208000827.0388915 3202.945844514408 174304 20830 88071 CHZ_20201111 58052990.537926175 3797.4605703399593 0.010858264219613733 7.108683838442066e-07 7805193.40644355 510.9900726496931 43482 None 330052 STX_20210702 820604654.9757404 24422.25306201257 0.7730901341829297 2.2984445495459064e-05 8667570.658749579 257.692210229306 67341 None 54271 FIS_20210723 19225543.174057636 593.9422204993555 0.7132539923186465 2.2031254920343504e-05 3211936.4088330003 99.21148787530248 23904 None 421891 POA_20210422 24250772.158853527 447.4542291217816 0.08437973954037618 1.5600444186574963e-06 941461.7568813373 17.40609970121345 19427 None 274673 NBS_20210725 0.0 0.0 0.010583207894698457 3.0932107882518904e-07 1446513.7972632737 42.278032592474666 None None 1815973 RUNE_20211225 2252007139.227551 44305.74467272839 7.588629165005101 0.000149233369429688 59269943.52123636 1165.5666900117214 133002 9004 73120 ALPHA_20210217 402262617.16170543 8179.457482477303 1.6045125684124513 3.2605693083318314e-05 112867945.05217305 2293.617169329636 37927 None 39039 ETH_20201031 43341298725.501526 3190803.537505376 382.9007710380906 0.02820066058473973 10598788554.534933 780601.297368843 498645 490292 9870 ONT_20210704 616019301.8471382 17769.671808521907 0.7081661514689417 2.0422639629911376e-05 140227392.2731147 4043.9852888981804 None 19571 137199 EVX_20200404 3140436.4570341897 466.8523740544305 0.14404201364231767 2.1406591802566883e-05 298269.6722184301 44.32690823192953 16754 2862 864914 PPT_20190818 20673119.818596236 2022.496773544107 0.5706239981939191 5.582884213112387e-05 1176398.8702223112 115.09678355054817 24062 None 771976 MANA_20190325 68541759.1772031 17163.227745980992 0.051976231509316545 1.301608450889951e-05 4969116.985520262 1244.385072560452 43451 6120 116780 VIB_20210821 9371045.390508417 190.72396114295645 0.05138337217887743 1.0447019117751886e-06 1626033.592686461 33.059729847558174 32799 1278 6383686 LRC_20210206 895442759.1950787 23630.569536322175 0.73160130404114 1.922629261924909e-05 399390452.55963844 10495.877560401572 55631 8417 159364 LEND_20191113 17312735.985476315 1969.7142445113345 0.01545363342403075 1.75589675457323e-06 4657857.134023264 529.2422824123113 41599 5794 541859 BADGER_20211207 153493503.15460002 3041.6409187658337 15.429323920025814 0.0003057263090306519 16448461.832621561 325.9201473366002 42885 None None MATIC_20201124 100067376.7100508 5465.517799456559 0.02112417119639252 1.1506029093567996e-06 25334654.270092074 1379.9418040928733 58226 2489 55039 BEAM_20210902 64990396.85202259 1336.0362159451447 0.6795839775944225 1.3967334653086941e-05 6849520.509465246 140.77663441615084 22641 2660 274472 SNGLS_20190914 4032025.231841501 389.54145509734894 0.0069865731101096664 6.749858195240368e-07 107103.94456456405 10.347511241463916 11 2161 None OMG_20210304 685518875.015592 13485.71046602787 4.871364173744784 9.614241985472399e-05 315909093.25370276 6234.858162159215 304362 3818 147521 VIA_20210111 8319531.679351975 216.40866406583095 0.35901951159578205 9.33885894933717e-06 359875.099918629 9.36111461625135 37802 2128 3644327 SNX_20210602 1973133137.1122804 53775.49676572096 12.715867203907239 0.00034672282771357763 75107075.9849325 2047.940368454976 132659 6731 40897 ADA_20210909 80226388042.93837 1730990.9280303316 2.4771529159609793 5.3628053427419534e-05 7155681412.912866 154913.8378372637 591916 602278 9041 XTZ_20200607 2085264281.0103965 215653.39942698937 2.9241265523692737 0.00030240667195795723 52529900.065191865 5432.5255670373135 65925 26061 98518 GXS_20190805 114907456.64129376 10502.814329367888 1.9140523727108552 0.00017480019672982882 9145345.435437553 835.1956320884951 None None 741400 BADGER_20211007 243145649.83807525 4380.560432421577 25.049440325712776 0.0004515463125959624 135735094.93909845 2446.788463640805 38005 None None NAS_20200317 8085255.77089104 1601.9145312079313 0.17789088728554608 3.532553849415867e-05 2534273.704934326 503.25558933600115 23650 4974 1138524 LUNA_20201226 260793867.16935906 10560.547235348875 0.538124641485264 2.1823405738225862e-05 68879829.65520836 2793.390887279518 16928 None 184547 HOT_20190810 175308393.2840012 14783.586344214504 0.0009873543843480924 8.324473096027023e-08 17637315.044595126 1487.0178013320374 24103 6613 379586 PIVX_20211225 37329649.80858996 734.1699644596838 0.5508696073229546 1.083306692548843e-05 493093.1791245281 9.696870800182335 69120 10386 315235 BRD_20191022 20538208.830615927 2501.0164892309335 0.3406045946499652 4.1444929631629555e-05 1344242.665653208 163.56808910075293 172 None None GRT_20210422 1890382089.5981855 34888.57548165674 1.5318948779159633 2.8322249716346428e-05 327373241.8527073 6052.599848637194 90689 13635 26419 NANO_20190305 113965726.44772038 30691.50840743337 0.8552884727280206 0.00023033322534520608 1443767.0483839395 388.81328523078344 97076 44764 338911 AR_20210723 371574572.90372103 11488.761239133783 8.489078771923431 0.00026221382631892536 10240879.902963549 316.32411200022705 22966 None 89863 ADX_20200414 5369646.057616517 784.013213810589 0.05832052956747259 8.517157824940613e-06 47810.22425114613 6.982227846914624 52008 3761 33366 MTL_20201229 23661789.594424732 872.5968250876005 0.3665877586941708 1.3502375613492761e-05 4355877.334946581 160.4382320682324 None None 417448 BCD_20190520 190371752.09858844 23265.504976752174 1.0078309897040487 0.00012334212189710585 4090511.1095623365 500.6120322270109 21198 None 3558878 NCASH_20200113 2352627.107486993 288.59179280311065 0.0008076613608977099 9.905591269956394e-08 390699.90417450195 47.9175276586482 58469 58520 1010197 YFI_20210207 947155760.8605325 24153.990983764168 31513.277086589438 0.8013855634855284 437894590.5259157 11135.70011178595 79115 3063 19848 XEM_20210304 7149259129.202478 141099.17560870305 0.7943621255552045 1.5677686180486752e-05 1290084832.316211 25461.366417895573 244985 18875 34570 TFUEL_20200309 0.0 0.0 0.0025477505455991016 3.1642010192315603e-07 470113.4363031778 58.38614839566932 None 4028 385146 BCD_20190302 135492844.8027801 35439.17392953487 0.7201065263733457 0.00018845898844867945 2240311.7576848706 586.3117083375478 20527 None 3143940 RLC_20191220 30451607.277358 4263.548143116802 0.44229082698018574 6.189657920338288e-05 890476.8479255302 124.61816385097792 27540 3508 308562 SYS_20200330 9748654.635505697 1651.5627006932907 0.016757584935336037 2.8389765837124798e-06 1595787.9160876402 270.3494891314002 58539 4509 831215 SFP_20210401 352745496.5082282 5997.329002388445 3.246681415708093 5.523491847379478e-05 19521591.714666795 332.115593978955 None None 30000 FIS_20211002 40779553.14992717 846.7522481628866 1.5122775216526378 3.1396354984651045e-05 11452523.039189296 237.76553817671072 27335 None 277306 XLM_20190130 1583635710.4982796 463907.1324761279 0.08262100395809727 2.4202834512010303e-05 131253840.95456651 38449.24219633329 261545 98938 60485 VIBE_20190708 6563144.284314977 574.53745766735 0.03522089805710909 3.079835751421529e-06 1168258.4266206126 102.15651126702 20506 None 1464833 FOR_20210110 9316212.701499693 230.22512017875707 0.016026431536901888 3.9770501098713737e-07 3182575.498801705 78.97742056950797 16649 None 227730 AR_20210804 480794492.06220347 12513.432864802186 10.963752275767579 0.00028544692052261366 11972755.58508585 311.7168398164498 23480 None 92701 SKY_20210708 18612035.35729619 546.5102961302823 0.8832889369146958 2.5997011318894673e-05 494490.600571375 14.553876090698243 19647 4408 442973 FTT_20200321 68118514.39042382 11015.753685851958 2.361151553099429 0.00038183251876037106 14524532.761641828 2348.8280203425325 8483 None 15714 BCD_20190201 132157560.81659567 38525.26081006788 0.7033755366390786 0.00020498930983021694 1546129.1002096555 450.598465045881 20609 None 1643339 XMR_20210112 2868690406.2599115 80983.81101092223 159.340382418272 0.004482318871880554 1496253683.2903044 42090.31018971526 334726 189251 59059 GLM_20210114 110492519.19826658 6393.577954391452 0.11951296978458993 3.197900473980836e-06 1526349.9367662927 40.84171948068284 145698 20316 228749 SNX_20210909 1901191351.766489 41020.72974538195 10.994365324733096 0.00023747506106860293 194047012.95069578 4191.358472233153 153550 7573 50358 MKR_20210220 2318190798.576616 41507.902639216096 2576.0678669745985 0.04604441281808024 141503606.9144857 2529.223152676427 107202 22153 33476 POA_20191030 3707761.112913517 394.01509359941895 0.01684062849965353 1.7896141667417075e-06 150874.4136300702 16.033070739419063 17680 None 624364 XRP_20201201 30191107728.904293 1536540.4841601157 0.6641238171287605 3.380836126576408e-05 11254530543.020834 572931.1683475636 988423 222140 20721 ANKR_20200414 5257803.805187745 767.0082880087472 0.0013151746305065841 1.920687274010974e-07 1949406.607260011 284.692266379485 None None 5685 CDT_20190601 7761599.695692212 904.7777797147079 0.011502726379930925 1.3412428778710228e-06 480314.38912368735 56.005700933223906 19747 292 399262 QSP_20190807 0.0 0.0 0.012839116585725344 1.1211944746372439e-06 675400.2111122827 58.98030287456404 56702 8566 645541 THETA_20191024 94699391.56413113 12689.19586310761 0.09479094909894387 1.2696648566790366e-05 8527437.72520196 1142.196391124497 None 4027 413739 VITE_20200721 7922922.84387993 864.7715286460876 0.015454040572783437 1.6866924908604543e-06 1875176.2256345467 204.66140514656203 None None 536085 AGIX_20210806 191481261.0570525 5830.0 0.23371407320570722 5.706315229928287e-06 1143922.5523736584 27.929780149451627 56152 None 210064 VIBE_20190622 7686251.23942926 758.1714256144398 0.04073849420195112 4.02483975548329e-06 1235984.1320940414 122.11148618645689 20518 None 1430855 POE_20190608 13563445.830887971 1685.8495224736978 0.00537688632543507 6.697391682409405e-07 672124.1816200161 83.71906399125683 None 10854 931861 AAVE_20211216 2321200025.097153 47581.433733978214 173.4472301085491 0.0035492030507516103 148217054.61730933 3032.9248964768767 None 14498 14216 BEAM_20200224 40359185.30816357 4058.219741043424 0.7225219756310549 7.261028902550485e-05 29910606.960222024 3005.8847890586576 12572 1460 234451 LRC_20190513 43713060.418317154 6281.932867402563 0.05540420745522253 7.962048606862366e-06 9255609.938883565 1330.108661496661 36190 2467 903966 CMT_20190305 21621789.81809607 5822.850120560317 0.027027237272620085 7.278562650700396e-06 1705392.5860205984 459.2702782080384 292581 1633 1016404 PPT_20190507 37245489.426251166 6513.354413150319 1.0281169512575765 0.0001797933168516348 3455824.874969224 604.3419632067117 None None 552418 DOGE_20211021 33806328664.944805 509864.4000565065 0.2545175092518988 3.840292773958985e-06 1734041308.2019353 26164.118630610854 2249133 2187311 34595 DOT_20210203 16703247515.16536 469018.8281074627 17.246208880683334 0.0004856073266834675 1360952730.1383374 38320.80555195379 148856 10862 24755 WAVES_20200320 95189728.19556126 15383.19703491243 0.9506557800400378 0.0001540016764408801 62988003.65865203 10203.754463774647 141026 56864 60056 SOL_20210610 11544497584.210085 307558.6426674573 42.07765252553618 0.0011215168688010688 1272173444.9534538 33907.87966819652 318950 22455 8787 LTC_20200927 3019712576.4293213 281229.6194003592 46.09665924819183 0.004291618888478267 1908407338.5904162 177673.54760153114 135102 215346 142976 LINA_20210916 140752431.1242066 2920.5916594911773 0.050207042784319825 1.0415018797256659e-06 22796922.268644217 472.9025267779373 None None 123686 FIO_20210814 74664453.60210107 1565.2685172023978 0.22051665324659048 4.619196839695091e-06 13072438.08090775 273.8304059191161 None 514 318266 CVC_20190915 15202052.262200186 1468.5292952913248 0.044329636733121854 4.282418763004481e-06 4107412.327888457 396.7923248782895 88087 8145 131188 SUN_20210429 0.0 0.0 0.0004230163033055683 7.7e-09 0.042301630330556825 7.7e-07 52 None None WRX_20210304 69450188.59427018 1365.9807546554891 0.28032731930825716 5.527617473774303e-06 17120007.44238335 337.5798424612441 64786 None 4198 QTUM_20200526 158718775.99535108 17859.237416374435 1.6507723060868562 0.00018577262829974514 384107772.020327 43226.258458215845 178682 15088 104792 CELR_20200404 6190345.782153587 920.5397943142934 0.001636544723090662 2.4323845257591024e-07 4926616.692175848 732.239457762204 19259 None 1350205 JST_20201111 28970435.645585872 1895.5687351890724 0.020225009645396263 1.3239557456261929e-06 30963229.447969902 2026.893744404872 30257 None 128932 1INCH_20210819 570733718.6372916 12668.766636365248 3.1573478682937193 7.010584938458111e-05 160918051.91246715 3573.0293845423557 None None 4603 BAL_20211230 170046729.9500412 3666.4591823178353 15.787844403442834 0.00033938998861876633 17375224.68076837 373.51377147905885 None None 2428230 AST_20190507 6740580.946372822 1177.4476469341244 0.0404274123581286 7.067191417191023e-06 813064.6423753087 142.13334782138054 31596 3592 464238 QLC_20210318 25091448.55270044 428.45498112074546 0.10533422073086723 1.7870741379932276e-06 4128365.385937019 70.04081828492144 None 5618 940522 EVX_20210117 7272068.930607251 200.38941387316902 0.33220095614082545 9.179490133898194e-06 333681.34035025974 9.220396615332643 16746 2807 915325 COMP_20210201 2366346.4392170766 71.70091196377076 2.5773781881566835e-05 7.773871857034077e-10 23.285626666450113 0.0007023396048260274 1982 None 2426495 HC_20200106 47871645.07227477 6519.47230799595 1.0795103464823732 0.00014699233052840172 16208764.496442873 2207.078492653481 12802 844 1107613 RSR_20201226 159510463.67184916 6459.192481873208 0.017071205755519805 6.91370137519898e-07 39787233.75229252 1611.3510471844943 49153 None 180905 RDN_20190614 17959492.95167885 2183.9645306133284 0.35529702402152824 4.316579547136977e-05 806737.438503718 98.01225711206129 25631 4430 856737 EVX_20200308 5584211.120483362 628.2205983937208 0.25632855193030035 2.88174586419138e-05 1041673.8326717687 117.10904760834053 17846 2874 590577 TCT_20211011 17576786.578122076 321.1824268676007 0.0302151819197133 5.520395839134918e-07 4053781.2471832684 74.06368490243402 None None 947696 XLM_20190531 2498565303.838017 300609.5070340251 0.12942475451008276 1.558087212036365e-05 562971070.0171497 67773.59001069736 271955 101676 70684 DATA_20210902 0.0 0.0 0.15133126706711447 3.1137137631416e-06 25295.65715190332 0.5204703386687534 52820 4431 268890 XTZ_20210710 2317729374.032515 68217.42401085907 2.76719426898703 8.142407039433972e-05 62924177.35034612 1851.529798070897 124349 50075 72508 LUN_20190706 5138793.912108547 467.1064633579698 1.9008942633188326 0.00017278762521768121 461318.8025885575 41.93299012243456 31280 2223 2096763 INJ_20210509 430910953.90572554 7347.965850482351 17.936912766317352 0.0003053481465735516 36377813.036909334 619.2758994779915 66975 3338 92186 QTUM_20190522 303262842.09600925 38132.08998739967 3.1643848280049607 0.0003984334879015993 288545443.62198275 36331.285153109275 177486 15298 449132 THETA_20200520 214578340.0220635 22003.5909127244 0.2153640740247992 2.2061091771932743e-05 24870186.174620006 2547.6090293507646 None 4051 375081 XTZ_20191022 701996109.8286316 85485.28588772185 0.8677999710871812 0.00010559431464217349 13267822.10417746 1614.4349257464432 44936 16942 211690 VET_20211011 7420928347.305916 135621.58518983604 0.11107521994116054 2.0302536061569174e-06 347728300.7306216 6355.842796396316 443037 207225 48603 LTC_20200531 3090841697.415876 319353.7799917647 47.66219026243264 0.004924581105438131 2531365834.5739346 261547.28289354476 132627 213800 144609 GRT_20210304 2429881929.4333878 47792.12294270134 1.9763175869188556 3.9004990197682104e-05 585042822.1750213 11546.519494236487 71638 11275 25525 NXS_20190726 14899691.642128762 1501.5708994119746 0.24981417519973548 2.5175661089986863e-05 55346.005313782305 5.577634941453358 21466 3535 1023997 FTT_20210624 2294796341.052008 68065.78500119773 26.345406242510293 0.0007810476320863952 52315437.9899919 1550.9667449239694 143827 None 3170 GRS_20190702 27052236.36466147 2549.369516566317 0.3702755421089917 3.492861321774435e-05 1330975.2754920942 125.55277168795523 38567 107025 None YOYO_20210509 6531734.182676028 111.35668622711984 0.03774943589943613 6.426256533808454e-07 1884959.9271089095 32.08852201081944 9893 None 873930 HIVE_20210201 51553776.75709466 1559.4730555168264 0.13947887120615043 4.207257164682912e-06 5494225.214520553 165.72845907254379 None 104 140605 XMR_20190411 1198564701.2299013 225684.35027632143 70.82528351206939 0.013345226980588838 134175496.9218469 25281.96673367651 316124 157530 118862 SCRT_20210420 234850916.12113672 4197.668264805191 3.341380652671202 5.974189060784868e-05 3164597.1977502173 56.581108008379225 None None 64525 CMT_20191113 15176256.491959048 1725.034829997624 0.018975525940428905 2.1560666997126618e-06 4634342.373215163 526.5704517136937 290106 1648 965231 RVN_20201229 103469106.75916374 3815.722124161309 0.01333767184374891 4.913806453018074e-07 7083474.171536127 260.96624284690523 34166 10382 209765 POWR_20200224 45489589.72954803 4572.273487135333 0.107126606644941 1.0765754029857642e-05 22007545.02934131 2211.661733785474 82740 12854 297028 BAND_20210823 349224403.8896439 7078.770214303807 9.864808650937098 0.0002002040454331763 152284768.17641506 3090.5846961233797 None 5595 341497 ETH_20210731 287344044145.01373 6887237.777615293 2462.3999826480103 0.05893482196799285 24040211451.365524 575375.8901653049 1457729 1050020 3720 PPT_20190801 28389343.918965302 2822.6096337780773 0.7832230248990016 7.768612528061828e-05 2647903.3992116596 262.639565823104 None None 744473 SNX_20210805 1633707720.7307189 41026.82088349193 9.663952053036972 0.00024302707960514058 93052097.51422395 2340.0550195101523 145797 7376 46425 POWR_20190302 42853816.89560507 11208.738533155569 0.10304533146096949 2.6967980736540103e-05 6596839.766453835 1726.4581055877652 84684 13282 711745 MLN_20211225 120029132.6337615 2361.440162034557 82.53707500029871 0.0016238116636778511 5278330.016783619 103.84440987232863 31424 587 99475 ICP_20210825 9381981297.337898 195235.1627614645 59.36004341719119 0.001237422463843126 385522045.2823743 8036.612031873917 None 22524 30297 RDN_20190605 16064236.41195509 2094.722545391756 0.31805107437548213 4.1405082347951734e-05 976074.0803198369 127.06898649124501 25638 4437 856737 YFI_20210825 1337282779.608841 27828.303304027857 37448.9593412547 0.779810354490528 230966794.22917145 4809.487389012092 136595 7085 25989 XZC_20190224 38992747.903307706 9479.662749211893 5.684491684838551 0.0013814835022175854 502108.5005069974 122.02579372641443 58748 3930 292752 VITE_20220115 52276159.40877901 1213.0470022447635 0.06845059638778576 1.5870576977412622e-06 6653855.977886089 154.27262736384506 40229 2983 163960 STX_20210124 442837873.63753825 13859.6008057891 0.4835010798224596 1.5086952503624493e-05 3107065.9169919565 96.95150201629527 48940 None 68593 BAT_20200313 162561644.960314 33767.09031578227 0.11030827511230444 2.360122392089022e-05 55746815.79566387 11927.419598670911 111525 35683 21544 FUN_20200801 27233098.187271755 2402.5480756045204 0.004522975086923166 3.990206448475092e-07 1674587.6274180107 147.73352099105782 34231 16734 228128 SC_20200217 119007719.74865462 11938.223565495497 0.002775939501356294 2.7903274672899376e-07 9910293.836492695 996.1659858714069 107464 30145 215597 SUSD_20210125 149081468.62635487 4630.195367453139 1.0080337919215274 3.124311034761267e-05 50917107.4770563 1578.1304359395565 63754 3367 36126 MTL_20190524 21742804.692066446 2760.031515813133 0.47694251360076634 6.0647658084108234e-05 4907890.7899172865 624.0837712156705 33333 None 919877 ATM_20210821 34698416.23273727 706.2273047048611 18.409393204231144 0.00037429089332886227 16573668.718806276 336.96782950308557 5034794 None 88117 MTH_20190520 7541553.736838062 920.0553748455754 0.021973575269692385 2.685938822496678e-06 263999.20382278704 32.269928855586 19437 2005 2077678 ONE_20210210 197599514.39328232 4242.460282483624 0.02081866047537319 4.4699668554885184e-07 104701107.698479 2248.03359322159 81582 2272 152986 DENT_20190703 108996757.39679094 10087.52319578283 0.001508109719870497 1.3944408258179238e-07 2256028.2351784734 208.59874012356113 45683 9765 256957 DASH_20190623 1571216318.2908447 146447.19337963976 176.73607883707115 0.016476565791291434 922592834.2679002 86010.51710784354 319984 27639 110566 BAND_20210704 202297152.95744342 5835.402257387672 5.755947334166629 0.0001659944320843322 24059463.537791923 693.8452967599465 99443 5433 205919 MANA_20210114 151923251.99998835 4079.993089900906 0.11484546221756776 3.0730083832914963e-06 48612472.66790975 1300.761328802105 56417 7899 76796 YOYO_20210511 6244025.73572333 111.74909703277825 0.035701810039165026 6.38953970270639e-07 3734712.8946653353 66.84001817413672 9913 None 873930 ETC_20190220 494288856.999283 126243.43089296905 4.554178971672934 0.0011632602868195101 335582354.4673859 85716.79513198824 225714 24148 470641 FOR_20210722 12900502.349467406 400.8733094533668 0.02296304738196334 7.110321794301007e-07 12367671.986822333 382.954954583864 29308 None 171123 MTH_20210401 25781056.051800262 438.38037740656455 0.07418071803821118 1.2613669162559447e-06 17634929.61370589 299.86386453920124 20759 1978 421640 LSK_20190712 186341704.59880993 16466.879998027867 1.3964524363959836 0.00012316513119784895 4884013.399505775 430.7630789593223 182982 30487 193702 THETA_20190901 112496663.2815752 11719.85192881724 0.11249666328157519 1.1719851928817241e-05 1432330.722411853 149.21957229741312 None 4027 310301 LTC_20210722 7866951800.433402 244466.40490192847 118.24795114382209 0.003665974736048128 1770138958.9477773 54878.62275858232 188821 339087 73316 NAS_20190811 35030944.944258384 3091.5919345259463 0.7701740506952722 6.800855452611112e-05 9751962.814608846 861.1259938129788 24294 5112 652054 MTL_20201208 24161582.21674493 1258.24599589456 0.37383159325366666 1.9470576493065628e-05 5742654.581199423 299.0993733925147 None None 434978 WTC_20210610 24910793.505597908 663.6520803495181 0.8525547818125646 2.2723572062379966e-05 18278352.432526197 487.1821348524234 65192 19800 502738 ZEN_20190325 39290684.61226446 9846.27492794675 6.458446295234034 0.0016184914683416724 326588.9603333005 81.8434375376144 None 1521 311352 FOR_20210212 25057813.13480712 525.590404863189 0.044783033474694874 9.364610312270374e-07 9028313.671742793 188.79167567018015 19757 None 253691 CVC_20200422 12343559.711935533 1802.4351264198883 0.018415089029354122 2.6905364002979542e-06 7197537.836643347 1051.596194356814 86064 8043 107790 NAV_20190725 9135681.332546977 929.359554190681 0.13900459354482386 1.4140734816026935e-05 359313.0907737231 36.552397320019594 48290 11233 923849 ETH_20210430 318971242360.58826 5950734.497648936 2757.497552304977 0.051443934852075615 38536865198.32878 718944.6028733172 996315 828801 5558 ADX_20200422 5295460.9945622515 773.2554570912138 0.05755691904816803 8.408067785375911e-06 49262.09059560273 7.196337188071578 51893 3758 31500 LSK_20190512 266210587.74472994 36373.134001514336 2.013668195361299 0.00027646190887680464 4114310.1101824557 564.864673034225 183613 30413 170512 REN_20190513 19391449.356605165 2788.498762163388 0.02516946334787242 3.6175121940053004e-06 424770.6737212138 61.05068950436037 6318 780 1306046 NEO_20201229 1105267539.8377702 40759.93247620074 15.642675433312151 0.0005761602080028616 342619112.4498822 12619.54835900358 326301 101170 122618 ZIL_20190325 173640041.94045535 43480.40700182296 0.019950782996368016 4.996150547253405e-06 18600617.776690103 4658.037065571792 57969 10053 178175 PIVX_20200425 16673844.9584208 2223.6794322007772 0.2642334432057791 3.525338712114011e-05 333981.56249208667 44.55901255726917 63878 8491 261496 ADA_20190622 2782660835.193781 274951.69201484125 0.08948493917904113 8.840840776769785e-06 189893730.24152938 18760.92501122739 152746 73968 101159 BNB_20190618 4748959734.978701 509457.6113161676 33.82649909972988 0.0036304898406861333 465666757.4397981 49978.52207661482 987345 52956 829 ONG_20200207 0.0 0.0 0.15907473381617657 1.6336234029534376e-05 4167383.412538882 427.9708605183388 81737 16267 309416 CTXC_20201115 803249.8663896348 49.90424096073312 0.07964814786717593 4.95137678084596e-06 2072910.35265692 128.8637647423628 None 20064 571475 FET_20200325 4623228.101000906 684.9221821848361 0.01362073092044125 2.015719967070183e-06 3125231.278261895 462.50022308646385 16590 361 584622 PPT_20190622 32268522.98372769 3187.7187423839655 0.8904559833306297 8.797435232756923e-05 1170257.5779605336 115.61790184443187 24042 None 671795 QTUM_20210207 445498026.23589146 11361.117221355189 4.431230818866587 0.00011268661132748488 710423727.0723397 18066.141368573604 194315 15187 197984 SKL_20210825 400443790.98727185 8333.070194075253 0.3288887417349367 6.848544012749911e-06 61112926.971233696 1272.5718974223118 None 2414 218531 POLY_20190625 43793396.08958638 3966.46944943301 0.09277781903145796 8.40015088930743e-06 6731502.529796695 609.4736603247176 35139 5110 316227 AERGO_20211007 101494398.24027933 1828.424477761911 0.38536370340270315 6.946644596334442e-06 166682196.1074214 3004.647211636317 None None 741422 NMR_20211216 189300560.65383795 3880.191787427027 32.17258752563589 0.0006593078688388281 3446189.2404167126 70.62222402546824 32551 3745 3023938 LEND_20190205 8139328.959744611 2349.492309162487 0.00731079721008622 2.110328984600113e-06 160689.47904598643 46.38449890022848 11734 5957 413082 BLZ_20200223 5143272.1354018925 533.112879672039 0.023864343746876494 2.4722334445461173e-06 278840.71524626156 28.88658281345766 36210 None 533350 EVX_20191216 5675963.883780467 797.5758809579281 0.25913182929687123 3.644508396642839e-05 1114461.1424000487 156.74118467924498 17996 2890 1042275 DENT_20190704 111549533.82273537 9294.794447597418 0.001541896884481181 1.2848893302213146e-07 2548791.6745030377 212.39521659892438 45692 9780 256957 BCPT_20191015 3560220.9293681746 426.5588691423453 0.030649636581729842 3.6722087138133684e-06 149345.3191751245 17.893431818667853 10856 3123 1234245 BLZ_20200208 5466787.958471692 558.1214066780307 0.025361854321770894 2.5869870570125407e-06 655574.8415325724 66.87064788050527 36250 None 537174 XRP_20200905 11509605205.140549 1096952.4601677267 0.25549889572209644 2.436333985564092e-05 2213832554.2559366 211102.10574641786 964820 218007 21508 TNT_20190104 5031545.354975718 1334.2294365463415 0.011740804231269166 3.1138570843600154e-06 131592.20532149484 34.90044742383035 16982 2520 1159962 MITH_20190613 25964474.40133999 3193.077068176665 0.06133453886182803 7.532999182629248e-06 39918488.03487431 4902.717837594277 74 2072 476862 RARE_20211204 224577472.721141 4181.3352048413535 1.5483653424367898 2.882809046792499e-05 21842838.357390426 406.6787746954621 None 3071 8715 WPR_20200913 4761103.66765305 456.5920109211269 0.007754273149239985 7.426082122511305e-07 165483.31680485513 15.847941861821774 32917 None None PNT_20200905 18715189.95650591 1784.1647359302594 0.695127187222085 6.62937556188633e-05 5266256.783959488 502.23893796640056 5109 88 271040 MDA_20190318 19091694.43656353 4794.581616722284 1.074184557109788 0.0002697647161491338 2409068.3320932826 604.999979276922 None 354 1647124 NEBL_20190213 16778290.007033408 4615.766042096107 1.1322835982889066 0.00031160608644279045 992416.8186908512 273.11454609038316 39638 6173 502010 RCN_20191015 19248720.350109726 2306.2367611094273 0.037801995997409375 4.5287537162154555e-06 6610450.045062132 791.9449599826258 None 1123 1108011 MANA_20190726 57013352.95840654 5755.540185990027 0.04240003257814294 4.287748053531465e-06 13461373.401708886 1361.2955955791276 45555 6343 146197 DOCK_20200511 2661258.475583509 303.6471077283812 0.004759481803018376 5.43073953815545e-07 889538.0036682073 101.49947845475877 42557 14990 414692 MTH_20190110 5423475.902461284 1363.3551918588173 0.018207572994674907 4.578427846695557e-06 276995.8168215757 69.65263088743296 18694 2025 776610 NXS_20210826 51064524.792763114 1041.7942438581213 0.7491389277476355 1.5283427195955564e-05 380636.776927479 7.76549482719451 None 4005 554016 LTC_20210418 20312989752.930435 337096.5070307995 302.36320243653665 0.005030149465125678 14766460912.07151 245656.56422509256 164664 292883 95869 IOTX_20210821 782233207.6379085 15919.068830754326 0.08270615030339129 1.6823094616484093e-06 103136983.14694014 2097.888995648917 104085 7859 88256 WTC_20210111 11433703.41369634 296.5938360517766 0.3933818403230947 1.0255118073217898e-05 4671477.1920050485 121.78129560075593 54741 19130 816491 PPT_20191113 19116996.38617358 2172.1410745690514 0.5262500954497173 5.979792180140205e-05 997256.5094795179 113.3184911231875 23883 None 826068 BCPT_20201231 1980092.412578095 68.54557057963568 0.01701487904834572 5.901027064499118e-07 140583.11840217884 4.87564316 10379 3211 2127061 YFI_20210427 1634598866.596463 30333.471198702515 45328.30893852002 0.8408751074175496 445746786.40888685 8268.94683873989 None 4752 20046 GTC_20210710 92597531.91017182 2724.580682640229 6.512223496597902 0.00019163388362182043 20902117.841535926 615.0823938992637 52238 985 25905 ZEC_20200329 291069619.54095215 46690.89306516017 30.448447799534275 0.0048712456674665575 361281917.1574692 57799.103102860056 72781 15670 148838 FUN_20211204 190319082.56243026 3549.156015791729 0.017956529097452732 3.348614464241025e-07 10731442.43933707 200.12477455697052 25170 529 194611 CMT_20201030 5798832.376517529 430.49644326242304 0.007227431668155992 5.374893863563659e-07 701871.065230491 52.196722912535904 282047 1633 897903 DASH_20190813 937763398.7426668 82406.82888414463 104.40794089854194 0.009174944694267221 244866458.45026118 21517.867265914094 320487 29692 93403 STMX_20210301 75732321.04894277 1669.385502656592 0.009172366105067794 2.0317445283227508e-07 18069102.095864467 400.24350199774807 None 1321 161856 GTO_20200106 6362001.397273019 866.2591890030295 0.009623010632003158 1.310168873341248e-06 1753016.6421066825 238.67248273623397 17029 None 3106980 ETC_20190221 506688113.5220348 127454.30558201723 4.673390187041587 0.0011755628069954633 290535797.21449345 73082.50833691738 225651 24153 470641 AVA_20210729 99647683.46760786 2492.1284979561533 1.9297647908278694 4.821338401859227e-05 3938746.4533020454 98.40592812528855 None 10520 50781 ATOM_20210902 6993096501.286567 143760.16519165735 25.097000527000024 0.000515812933657054 1176993130.4747376 24190.47164107244 None 35077 59205 RCN_20210203 40923279.317634605 1149.1205225266726 0.08001814295057004 2.2524436305588388e-06 19518021.543262247 549.4159409996412 None 1134 3103198 HARD_20210731 52690597.642796345 1262.1781464282988 0.7209726957473921 1.7259947429458155e-05 16825810.04568483 402.80665073663374 35159 None None GVT_20210203 12053030.361648398 338.56003544647933 2.6986179409732283 7.593502582293275e-05 898681.2309783314 25.287530126 21489 5457 282943 STORJ_20200324 13284777.82087213 2050.1673221757183 0.09239178290524852 1.4258320064057986e-05 3962868.2859379114 611.5678539351769 82229 8024 127597 KNC_20201208 191342912.3347798 9962.149041705612 0.9529763809054685 4.963886550089458e-05 21747096.77823981 1132.768066071373 None 9277 127367 EGLD_20210422 3213664499.9321957 59310.854189502534 182.26192619647702 0.0033697271672724436 276524848.6280249 5112.495595175856 211253 8037 24132 POA_20200719 3968576.49149224 432.9115592595045 0.014304329801612161 1.5603856274040586e-06 156561.1077917387 17.07844448477086 17245 None 642825 UMA_20201229 442861970.4065735 16318.68043216433 7.960704023759987 0.00029329017187253116 19428156.9974432 715.776831790227 16091 None 163943 SKY_20190909 7571020.620188893 728.2598306856036 0.4731887887618058 4.551623941785022e-05 334447.39898334054 32.170643612746 16367 3808 477504 CTSI_20210708 169082322.16904894 4976.259315049997 0.4452630332834416 1.3104529726110794e-05 28713632.554164927 845.0704936718804 46980 3852 120521 GO_20211021 40747994.06642266 614.7520757940996 0.03731737691352076 5.631928303664373e-07 3024064.3307186705 45.63909605904157 23521 1131 226693 POLY_20210421 327677837.5294884 5800.067571696491 0.3979895944961955 7.058564355417591e-06 14270684.44508102 253.09843760858445 45190 5491 167143 ALICE_20210819 208734598.286999 4633.961492125744 12.001025257672651 0.0002664263298347067 124755023.24260367 2769.5986182280767 97445 None 31647 HOT_20200315 55570678.746832214 10745.72794667859 0.0003125806095831948 6.033091944600902e-08 5183404.023599495 1000.4444326245655 25121 6921 537857 NAS_20200407 13160749.032949595 1808.9378340613862 0.28912249367160353 3.967835781367911e-05 5540482.280129618 760.360204353492 23527 4962 1093908 REQ_20210207 39864949.82938123 1016.6383269119743 0.05187575546881594 1.31972182105052e-06 1447534.180506325 36.82534215581772 40086 27212 458949 NEO_20190914 632122049.7562153 61045.45288702087 8.95878036431435 0.0008654458196661534 153912748.34900135 14868.446287907898 323822 98243 210014 TRX_20211120 7484602980.586602 128753.96895456116 0.1048094448367013 1.7968042368028648e-06 2369312037.1600113 40618.38046475739 1259125 120228 26139 SC_20200506 94359424.80050738 10521.9810328728 0.002220974721186395 2.4682574052180125e-07 5418606.71023982 602.1912816445332 106776 30074 169509 TFUEL_20200523 0.0 0.0 0.006550024385132645 7.155221369039272e-07 11914214.817173338 1301.504230253894 68164 4088 375081 GTO_20200404 6223660.478446142 925.493880039392 0.009355374105704578 1.3903351499821463e-06 12912943.439830441 1919.038079212709 16829 None 1069804 QSP_20210718 20345448.729085963 643.7283565870907 0.02848999042553578 9.01365291459353e-07 281321.53721145645 8.900440666877794 66447 8490 252569 ADX_20190706 12502793.74795373 1136.4798568667418 0.13583294550294372 1.234695297506916e-05 3781524.331411151 343.7332741415187 54157 3883 882596 AST_20190812 5104708.008207365 442.8835582088957 0.029672706267651706 2.570984235623635e-06 554833.541957871 48.07341389430341 32067 3585 229078 POLY_20211028 548400976.2613374 9369.697044272267 0.6190830447818793 1.057683097116562e-05 30608036.430387907 522.9282733749458 58573 7963 130896 NXS_20200309 9985991.716225814 1236.1200838654463 0.16607324676613958 2.0644136350616423e-05 216924.38816149012 26.965310392744744 23525 3535 662796 1INCH_20210112 89092411.90081522 2511.243931214135 1.1269078225063769 3.170215426157807e-05 66590819.26757308 1873.3319466451046 None None 25684 BCPT_20200605 2645706.556345306 270.65671506471125 0.022776660792304938 2.3300604427968448e-06 208036.75532567102 21.28223353951515 10515 3174 8141726 CND_20200315 6009757.605703777 1162.109618106052 0.003163009410258848 6.100088682959081e-07 69213.04012287033 13.348227210369332 34935 5973 433845 DNT_20200520 3285517.1141245556 337.4555626672933 0.00438713867109232 4.495972394441555e-07 59370.92536060917 6.084376662461138 58180 6041 635978 BTCB_20190805 0.0 0.0 10951.82298046553 0.9999746784301959 53117.78932286473 4.850009390381575 None None 55533 TLM_20210731 359070571.7731471 8598.576797043395 0.28979658328035107 6.931065909045487e-06 303085943.62030905 7248.90758737955 55665 None 11208 WAN_20190224 33815785.45848255 8216.933617257846 0.3185585613941497 7.740688310784982e-05 2219722.8551465822 539.372813677296 108402 17238 506668 TRB_20210703 65785563.75019625 1945.270172434543 37.45455154086047 0.0011061155014038438 33412259.89255329 986.7377150082427 23008 None 263441 STORM_20200316 7054276.102795832 1305.7694709084608 0.0009222057842894298 1.716177148748433e-07 1846842.0314819464 343.6877262941474 None 2524 875750 APPC_20190626 9891513.882016614 837.5943531777955 0.0931278635925383 7.870263540214626e-06 745827.9441883244 63.030142107639946 25497 3369 1293635 OMG_20210107 530151961.5981805 14464.02229454028 3.716697884134009 0.0001006569266847592 644987744.8170145 17467.78623566853 289511 42583 211368 KAVA_20210110 88813013.27926883 2194.774562453445 1.8857176095292922 4.6780445522054974e-05 76820540.44076124 1905.7461673494697 None None 85719 ICX_20191108 90632089.20973973 9830.827034395817 0.18009352947723203 1.953467423891482e-05 14031647.842835503 1522.0073172013458 112786 26504 111236 KMD_20190818 90870148.00953297 8890.026409823004 0.7867671093909551 7.697115646969048e-05 1735560.4450995282 169.79369496746432 98445 8425 208596 CVC_20200325 13041892.20645501 1929.747236381314 0.01949292546634847 2.884740863661125e-06 7536991.451150127 1115.392723669518 86475 8058 104560 MATIC_20190626 41373470.27392949 3504.3115764152026 0.019158140179115855 1.6222744286483858e-06 27817296.088681426 2355.515081156028 17812 704 215826 BCPT_20200607 2684972.9821504736 277.60461130074344 0.023108937985556317 2.3898750288466952e-06 247022.2102392769 25.5464882112 10512 3175 8141726 DNT_20200914 7891445.865518158 764.4964899394762 0.010509004557237417 1.0176032305280878e-06 187079.29273906426 18.11517842811045 58388 5985 478994 ARDR_20190730 68656166.9513948 7217.888596148031 0.06900601397560627 7.25286119087385e-06 2055749.3687085058 216.069063483946 67632 6558 883304 CTK_20210104 23330453.190413363 697.2542661006927 0.9206434302952106 2.7968033589389785e-05 3003641.5753078265 91.24699715910629 None None 220154 STEEM_20190227 105649971.00155585 27735.400624086986 0.3506061449240527 9.204169010696747e-05 6810186.774801496 1787.821205565658 4093 3676 255452 SNGLS_20191017 5680801.637633213 709.4436952529554 0.009860694769685607 1.231285704764101e-06 185836.59231204717 23.205052471489633 17 2163 None STORJ_20190714 29583287.47419264 2597.752976720442 0.20760751018900286 1.820104492429002e-05 5880291.0998910265 515.5277975232357 83895 7776 206682 BTS_20190821 112068711.9420476 10424.361427467811 0.041336904200900824 3.84598468200605e-06 16529309.596271362 1537.886611015488 13636 7154 133964 STORJ_20201228 43206941.798625134 1632.0095770184657 0.30029289722417307 1.1351550910014763e-05 23017626.775629662 870.1030380223258 82616 8539 96620 TOMO_20210718 196096167.96617013 6204.46693600942 2.342403714664644 7.425466365655431e-05 20618793.237248883 653.6198466775178 None 2207 130894 OAX_20190702 7962445.1624775035 750.1098484574746 0.17813283497295976 1.6797879881148185e-05 885131.9164834634 83.46770888318648 12322 None None LINK_20200321 815418933.3371824 131900.69358870643 2.249443493760885 0.0003627846737649275 562951149.9615564 90791.36677620566 46685 13706 84663 OMG_20200113 96386721.16623989 11816.192983079804 0.6868633153392919 8.425394936626152e-05 59963081.93512665 7355.359292571241 283748 42748 None NANO_20200208 124249919.68253931 12686.160945249498 0.9311690808474961 9.498210696584953e-05 5190965.819699153 529.4944611927937 None 48806 259718 ADA_20200312 1244090560.1131132 156850.00366450258 0.040066910703005464 5.047262680124973e-06 131897068.04937842 16615.185386219342 155720 77107 41962 BNT_20190324 39192783.81346612 9791.893319840947 0.602750321865804 0.00015050444701963047 2324860.42159247 580.5087437638922 843 5136 160609 WTC_20190613 62937268.870192535 7742.988978953843 2.160289366809411 0.0002653229051102535 10608788.688482992 1302.9525941176526 55607 20163 895800 STORJ_20200109 14520847.776778879 1804.4867995709285 0.10063702836882078 1.254155696441568e-05 1084989.637272948 135.2132466768586 82632 7887 137382 NMR_20201130 184372934.1249634 10165.010125041277 35.559527411436484 0.0019570740280060485 27277640.621304613 1501.2674771394404 21762 1953 1263517 SNM_20211028 11250790.10315084 192.252 0.25344354951056935 4.33e-06 542334.7703582433 9.26561185 None 9741 None DOT_20210710 15876798284.279968 467157.3530651836 15.732674730640067 0.0004629622370863771 541920808.0654576 15946.994005858674 496210 27251 19390 GTC_20211225 213447800.61612812 4200.92872942759 15.06752738727575 0.00029641361933742557 114324619.20490475 2249.033520026387 83243 1850 21952 MTL_20210219 65658673.43759806 1270.375253004218 1.0171516167195442 1.96718231232591e-05 112993689.74121597 2185.31027439393 43252 3417 337340 DIA_20210602 80212874.91949858 2186.1105642954994 1.9256179041291344 5.2495024295105056e-05 12909977.377006484 351.94395243313227 31755 384 362655 TWT_20210826 330732997.6770747 6747.457939386297 0.9501722411986778 1.9390273918568338e-05 46586567.711745165 950.697431148999 1084692 44222 4197 TRU_20210318 106358110.79859363 1809.1168427469333 0.4551582922451606 7.734012493328733e-06 9330034.650115034 158.5351860585527 22176 None 95086 MBL_20201231 5133916.0489533385 177.7853983078105 0.0014399142281001018 4.9938485054362925e-08 1805277.896444019 62.60987042922255 None None 983233 IOST_20201231 108492788.62098856 3757.0605858348463 0.0059436796138132965 2.061361362849887e-07 37980891.93920423 1317.2369349804537 None 52141 592337 TFUEL_20200531 0.0 0.0 0.009805439243689998 1.0118122349795882e-06 42808332.957828864 4417.343677253891 70979 4195 142803 ROSE_20210506 246983172.6080592 4314.290973887769 0.1654786384953099 2.886532315101216e-06 18805131.117803868 328.027950645695 None 1442 225625 ZEN_20190916 29915979.62607079 2903.724328296449 4.078337176179118 0.000395854223244186 3362082.1355700926 326.3326092881147 27059 1788 203585 ZRX_20210421 1343024898.0793002 23772.236834997202 1.705039154932379 3.0239807196044844e-05 391636060.1771679 6945.880929781851 208199 18892 55512 CVC_20210813 208817554.38275117 4696.860475584137 0.31167147471133544 7.010317859845658e-06 46361431.07008856 1042.7915116058093 103845 9856 242818 STORJ_20210703 122159614.38600598 3614.2044106791313 0.8519529540050239 2.515321149770497e-05 62194703.728000365 1836.247564555387 103314 13643 49703 LOOM_20200530 14986083.768698005 1591.0525104034346 0.017856286192452022 1.904509242870281e-06 5077099.20069289 541.5113899090754 21620 None 710421 ZEC_20190228 310489060.0872978 81361.4538192137 51.97458225350511 0.013632132440804785 220246387.95207125 57767.23544457206 73571 15043 147645 XRP_20190321 13225810085.754425 3272544.974594583 0.31742439439543624 7.854230477809402e-05 978925124.2762313 242221.5709421946 915283 198254 34701 IOST_20201111 86586446.26533753 5663.939317711243 0.005149225013872245 3.370750453110452e-07 25357867.372788757 1659.9593668264413 None 52169 268325 PIVX_20201031 19764932.016358722 1455.1021047101974 0.3077194253386262 2.2720818553804273e-05 331082.1830689392 24.44583470682352 64895 8621 313174 AE_20200129 58396453.60195644 6248.316461346935 0.16866963522044062 1.803876756208868e-05 14807918.542219665 1583.6673881006438 25281 6345 376876 BAND_20200421 10748737.338967798 1570.1447585129806 0.5403566976734852 7.892594520667959e-05 5094076.185747679 744.0543989665092 12377 1092 683896 BNT_20190221 36165919.94282587 9108.518557588073 0.5672340885020346 0.00014285996954550666 3025836.9749259744 762.06805417697 846 5096 140738 RENBTC_20210813 605372190.9518577 13616.775198778092 44289.28478443788 0.9972383788887939 3697858.6835602173 83.26272634344245 88934 5598 110606 MANA_20210616 950026743.1836258 23524.162006092723 0.7151453630158426 1.7718883152563e-05 46881038.13149281 1161.553552161352 140510 33291 14515 DIA_20210813 91441693.74498527 2056.766148999432 1.8828764080977463 4.234765157876202e-05 37337929.15667333 839.7649510074576 34413 403 453696 LINA_20211221 114862216.87981172 2434.489340742865 0.0359113651459103 7.619700125706647e-07 9951897.348054595 211.16009699404884 None None 143736 CVC_20190712 21128412.015935652 1860.7077667423557 0.06172196365022629 5.4240763302031555e-06 6012289.188282369 528.355119440196 88699 8145 447156 BRD_20210428 27155790.291136574 492.9289218030335 0.3366387554305662 6.111574326856501e-06 981438.4913500122 17.817717628654503 729 None None SNGLS_20210108 4865419.868426593 124.43725068684408 0.005517757795100442 1.3982311375990463e-07 184892.06283245407 4.685269795220337 9000 2113 2388583 SNT_20200423 68050935.96851061 9567.694778315572 0.01781015019182584 2.5049392873662785e-06 22451492.4344376 3157.7288710816874 None 5660 178977 PERP_20211125 811752841.9785672 14189.64344655564 14.397046095828147 0.00025170124427729534 22195850.159402538 388.0464829888192 33855 None 99669 IOST_20210814 729015116.4237158 15283.437830959405 0.03216344824473544 6.741366861665592e-07 151059090.76784116 3166.155385165654 250872 53602 221575 LRC_20210610 415020787.12203103 11056.629275977752 0.3329553556241446 8.874426815125154e-06 42770362.17074526 1139.98000791777 79380 10931 187996 MBOX_20220105 507031451.5093102 10946.377715577808 5.005426828180337 0.00010878783984626786 45865506.309910454 996.8399351718102 263312 8388 7442 ZRX_20210508 1594281790.3482633 27821.639993117624 2.0150571341978467 3.516348415916963e-05 508976651.4057918 8881.828765723485 213083 19078 56937 ICX_20190908 102493137.96851873 9790.211032240084 0.20796463371172577 1.9864916731358917e-05 26223655.620501757 2504.900597739123 113646 26203 190786 SUPER_20210703 89215469.80749898 2638.0893077889687 0.41250734188006216 1.2197785993240037e-05 3755978.282344974 111.06376694895783 126379 None None AUDIO_20211028 796522357.5334553 13609.25111679036 1.9339709714991142 3.304915445801381e-05 33999181.738600165 581.003657906038 95453 8020 20757 LTC_20190220 2864727024.2493443 731728.6388206566 47.315588461303285 0.012085678965820489 1250834083.226354 319496.8013922848 437458 199798 251431 LIT_20211002 98523568.37459388 2046.0277901790885 3.5600984572211325 7.391111310116868e-05 13103761.522644144 272.04685813854593 None None 455737 KEY_20191108 4862331.897166977 527.4037075778613 0.0018592334734924688 2.016659183105369e-07 15606466.263333634 1692.7902791388399 23668 2792 411856 GXS_20210324 59960371.27444799 1099.8986179364379 0.8535720517245856 1.5634864593856405e-05 19126248.74093004 350.3351693025501 None None 480247 FET_20210127 65881583.3884463 2021.7020896529766 0.09529956627261829 2.9255972412972417e-06 9926875.495527074 304.7447192082303 27439 768 346755 WPR_20210602 12077363.592198716 329.4044293929442 0.02018200201123599 5.50163905364921e-07 174985.22263606449 4.770119109739976 None None 6560594 XLM_20190916 1163928723.6655302 112974.008993017 0.057941545121939005 5.6232520859375305e-06 101170731.9083239 9818.663413998212 275993 103855 63333 KNC_20200417 85755759.1150075 12078.207311118449 0.4782520513684229 6.74652486502869e-05 74343544.12240912 10487.368899748051 105045 7341 116749 OMG_20210125 502151174.9573273 15611.852779540695 3.5911828498442504 0.00011131343093981336 368588428.46339476 11424.882634075246 None 42521 205184 DLT_20191203 3391752.213311232 464.05983360095826 0.041340506210258275 5.658398706483658e-06 341301.48322813 46.7149546112667 None 2625 4347247 ANKR_20210804 725975458.5874189 18895.454373465647 0.0950628481463894 2.4747529502859505e-06 114389647.9598162 2977.883834647956 118113 None 5363 ETC_20211225 4948571587.084367 97315.60150681341 37.53071393144182 0.0007380562121705719 362011905.65063393 7119.106136196352 595495 62614 198488 WAVES_20210814 2064291607.975712 43275.88977626389 20.65239268443343 0.00043285234335113735 226339049.77653694 4743.827486947256 195056 59241 114002 REN_20190414 21399455.905039616 4217.983881047512 0.02768003257285872 5.456073417724431e-06 161840.58292818043 31.900760958254764 6159 790 1519045 CHZ_20210325 2620561939.9207954 49578.58870180731 0.48244979024689555 9.161919926746837e-06 1173825666.9020965 22291.432156315288 None None 48350 XLM_20210718 5449741479.4916315 172574.85520517605 0.2339613568173653 7.408763778668218e-06 412937171.1247709 13076.321653764013 602486 196093 24604 ZIL_20200530 131305429.706852 13937.707117855503 0.012484769114172409 1.331595938638888e-06 38265833.318528995 4081.3432567001487 75479 10839 162490 COMP_20201030 12121.163049013734 0.8996334620188194 1.314186468769898e-07 9.7539e-12 62.51257838563697 0.004639687386877399 1928 None 1771292 POE_20200412 2426755.980985887 352.60410446616675 0.0009634159429291813 1.4007934166430765e-07 8289.407764474487 1.20526839 None 10396 753171 FUEL_20200330 1697425.7223501115 287.0561468616584 0.001713796253831148 2.8997897977473144e-07 471319.1108072503 79.74847336414224 1 1469 None THETA_20211028 6199131722.310885 105915.1764673576 6.191502708500381 0.00010580506758166389 554166977.6278617 9470.023236676214 207144 25147 29310 KEY_20190801 5276479.805440744 524.6782284353588 0.0021037552962284343 2.0866674281395307e-07 158630.0357598799 15.734155457061684 23887 2829 851050 ACM_20210508 20477985.511289995 357.740929367587 10.267174410688703 0.0001791520880633964 2797011.285187317 48.80509398540348 None None 39485 NAS_20210527 25760631.917714674 657.5032630732629 0.5678352202700871 1.4494487015381642e-05 5868342.401512077 149.7945349358089 25088 4906 415703 VITE_20210624 33577092.94927918 995.9276772260953 0.05153661876559074 1.527862220446301e-06 6057708.3333768295 179.5877169813217 32849 2350 185769 LOOM_20190902 17017565.29350655 1749.3287040159485 0.02825352823063754 2.9039090293314375e-06 1429289.9352115574 146.90299613244906 20863 None 439430 CELR_20190801 28176880.83893524 2798.804406017421 0.009036013156055706 8.962617642263255e-07 6071917.674387577 602.2598189154372 17768 None 493170 EGLD_20210513 3074095948.6505823 59627.567853058456 171.12347774816268 0.0033950516271520296 154152393.25531033 3058.349096440333 229111 8530 22997 REN_20210804 374010112.7093937 9734.61421638966 0.4246735914865822 1.105473538863267e-05 23011799.33360805 599.0232440846 88435 1184 110606 OST_20200129 8116607.287335845 868.8569371627611 0.011780066683785692 1.2598467086087755e-06 590413.2611632438 63.14312335933616 17819 755 484111 GTO_20200520 6301345.400977157 646.2209283459082 0.009530285068661977 9.762468251237765e-07 5735084.065370622 587.4806021329322 16688 None 1039704 IRIS_20210620 79816895.53489302 2238.826867981674 0.07670779461170966 2.1544945536267077e-06 5625141.013721932 157.9935355825765 25038 None 650450 SALT_20190213 16733682.944493642 4603.494483765528 0.20857243077653648 5.73994350817694e-05 236858.55022224176 65.1838161276923 42924 None 362688 LEND_20200610 104613645.60755794 10701.93162232924 0.08283774316791899 8.479021297618554e-06 8555995.89159281 875.7659083021438 45601 5724 77491 BEAM_20210603 71895011.96131024 1911.357593127516 0.8066127985606768 2.1444123245607818e-05 11746217.519001035 312.2778817750533 20702 2408 145423 PPT_20200317 7014907.188491043 1389.8486428562746 0.19300932760917883 3.833191063659304e-05 2386090.799111481 473.8808243896938 24081 None 1049662 DASH_20190729 969839992.2179434 101588.39107699308 108.22469629777892 0.01134879462144833 239798742.62306395 25146.07823913618 320696 29230 102503 CDT_20210430 27919323.35075529 520.8454615123117 0.04069885172025948 7.593880273060835e-07 1240164.165266824 23.139862162962878 20723 327 413427 AMB_20191118 4218782.306231954 496.192755774335 0.02893091872904468 3.3998009180720975e-06 1564890.8909914817 183.89728780145043 19210 5572 698581 BNX_20211230 0.0 0.0 65.54164696321544 0.0014085223913744818 44282312.549662344 951.6487860466584 96967 None 19867 ADA_20210428 41847738398.14531 759625.963470568 1.3051147413790254 2.3693961608229552e-05 2912984035.0225954 52884.34012957522 355903 359266 7301 YFI_20210527 1796409789.0981967 45850.78898381312 50026.96766808553 1.2769817852071355 686929911.6841968 17534.482416656032 123106 6037 19154 DUSK_20200312 8839896.095903585 1114.536093145602 0.03407268902911486 4.292252405048729e-06 1420487.6709252554 178.94365826721443 17697 13341 936304 ETH_20210203 174557101587.54166 4901541.399703531 1514.2251957516528 0.04262335374242951 42952410181.632454 1209051.1889500453 644909 604174 7116 SCRT_20201228 33954655.578398615 1282.5618840291786 0.6034131676197001 2.294494107409808e-05 548675.7040019841 20.863534925457916 None None 377995 MTH_20190515 6113730.154829425 764.678165944545 0.017900269792958643 2.2388861020271915e-06 277552.23989011016 34.714999252185876 19451 2003 1355649 IDEX_20201031 24288496.497662727 1788.3573734917654 0.04523880312641743 3.3365501363055687e-06 546122.3640292853 40.278798779213695 40090 1960 29901 XLM_20190513 1888898029.1367502 271721.84195006354 0.09854868703589159 1.4162271646181145e-05 292296501.6697584 42005.455195642695 270471 100918 71858 MTH_20190201 4656870.588611874 1357.2063524598689 0.01553439623308451 4.527371084936143e-06 438280.7623982482 127.73329719372055 18697 2020 836178 RVN_20190706 198365345.82780987 18048.307957383327 0.05074193137215746 4.616764082129898e-06 23804689.21616729 2165.8740845597667 26209 6746 214144 GVT_20190410 19238495.481983736 3717.8173945598965 4.332642410468707 0.0008381444898593628 1509558.853116611 292.0223537952291 21310 5816 169324 XTZ_20210508 5455713014.458504 95212.56702034209 7.1108560289271905 0.00012407743888856804 967440560.6903275 16880.885586638167 110510 44843 85106 ALPHA_20210115 75548011.49157543 1934.3563864075095 0.43536643296652583 1.111709168585494e-05 59353791.10839179 1515.6003947272773 22403 None 85584 ELF_20200320 27010048.057738613 4364.97612789719 0.05846251583063414 9.470647142638702e-06 46951444.13979277 7605.908742851067 83007 33433 652715 MTH_20210519 12254251.648523537 287.4873382125382 0.035380834504780946 8.25921348015579e-07 468087.21845336864 10.926910907136124 21717 2048 420234 CHZ_20210111 104533866.19725974 2711.6411237000298 0.01956039499534868 5.085662310734156e-07 36710799.59203736 954.4732093934442 None None 151849 SNT_20210206 229068685.11345762 6002.601513008872 0.05915902739876173 1.5498437598274697e-06 34783213.46029237 911.2480157053656 None 5744 152018 TNT_20190225 6214540.735616997 1653.6573813689927 0.014453604122046184 3.85251458434551e-06 854590.830081349 227.78565185098213 16984 2511 1224257 ONE_20200403 12305798.839113502 1814.5598280851689 0.002369121475886514 3.4752598440230177e-07 46392899.241832905 6805.365677697776 71117 None 330702 TOMO_20191113 24503539.239854213 2785.235350961349 0.37578607864019875 4.2693148190046666e-05 14029883.974367974 1593.9385454998555 18825 1369 275008 THETA_20200412 79082737.3642541 11492.753061869 0.07910107447825236 1.1493050670403477e-05 1269404.4525967112 184.43908368072678 None 4024 349819 VET_20190405 403176720.957216 82268.00254677421 0.007271847541847431 1.4856336828469762e-06 23230793.583610408 4746.035890943481 106401 54992 666986 QKC_20210821 134074096.02568038 2728.739603222808 0.020580586376773742 4.186050081620355e-07 11628715.610850656 236.52574829878205 75215 9552 280880 LOOM_20211230 71268141.14348762 1533.6883530462926 0.08555342951010042 1.838686384085115e-06 1637825.2792478257 35.199606347841936 39743 None 400372 LOOM_20201014 18585232.324604027 1626.8065949970078 0.022267252299220903 1.949505097436541e-06 3742360.768233659 327.64488838047237 22476 None 407609 HBAR_20191030 27524030.174453605 2924.8872956727496 0.03400928772224473 3.6146136602674313e-06 4667984.8727204455 496.1280584485989 34987 6171 85439 VIBE_20210115 3425280.8638570867 87.95190464 0.01843763044513404 4.7e-07 39393.03230707386 1.00418138 18449 None 1637707 DOCK_20210902 72996987.7783701 1500.6312324706537 0.10572369401289919 2.172914994649878e-06 9542063.7384041 196.1158619235666 53518 15178 267340 AVA_20201115 28415313.65565858 1765.3842459015623 0.7370039832434366 4.581631221491863e-05 898595.60291569 55.861756020577026 None 8995 84193 OAX_20190314 3428767.49785007 886.8119597970648 0.1461084184439475 3.77949958488839e-05 2304044.0867371056 596.0049230652781 14234 None None ZRX_20200105 111976242.03764257 15237.541590167486 0.18544928542158037 2.5220629774848013e-05 22235516.461039264 3023.973520531838 152022 15976 131322 RENBTC_20210120 521148103.3681336 14391.252939241094 35955.05968617259 0.997590963032668 36247204.25162951 1005.6966588914073 34573 2265 93933 RUNE_20210617 2511540461.658418 65671.2839309119 9.284841989433625 0.0002424310715705364 116942196.80203123 3053.409214157059 2297 5546 58808 POLY_20190324 48210098.88223929 12048.09489200231 0.09994306072059053 2.4977677569532892e-05 3235546.6498277886 808.6248349599606 33639 5014 275079 ELF_20200502 35417956.89502035 3997.0059623569077 0.0766403915268732 8.672229715608156e-06 36127016.33168727 4087.9460337577125 82190 33415 552122 SRM_20210804 217497793.08867186 5660.96219510373 4.416048126803117 0.00011496213656024193 134464811.81323293 3500.4967369798105 100242 None 31841 APPC_20190923 4138013.0417761095 411.63686333240236 0.038108123716765065 3.7910744050213315e-06 448760.6674512518 44.64363275923439 25117 3302 1033070 CVC_20190816 12782633.892593473 1242.0510553856448 0.03631900410948419 3.529236474460475e-06 3946930.8811782314 383.53618909916935 88389 8140 181988 AE_20190312 113564468.87506102 29371.32199299163 0.426312428106186 0.00011039528002915942 60758069.48624359 15733.541066962058 974 6332 450072 STORJ_20190305 27966827.354387276 7531.5986975274 0.20596034229775392 5.546609295847481e-05 1482811.3483397083 399.32809962021776 82903 7622 219991 MITH_20211225 39061474.49806149 768.2301197849862 0.06307431736298984 1.2417711115691278e-06 18683043.84515582 367.8210893600097 37401 2943 264208 ARDR_20200626 49101809.535060406 5302.048416951151 0.04932452658373384 5.330565555340616e-06 3154521.0093408925 340.9131764791478 63097 6309 1460932 LEND_20200520 71238564.64149943 7301.617698183961 0.06033678109502026 6.1862584735458644e-06 2349606.159810807 240.9023277647934 44808 5725 81711 ENG_20190806 38549633.65617746 3263.721868984312 0.4951281707227344 4.192021369057166e-05 787499.6291397555 66.67395370898998 61750 3475 330014 PHA_20210814 159409927.62082833 3341.8759395752672 0.8772025061061783 1.8385913912704115e-05 20179068.553205058 422.94751174921413 107161 None 139541 YOYO_20211230 3124410.6898145727 67.36635937259658 0.017908275318785846 3.8482802597848375e-07 206058.2041766751 4.427951354243388 12513 None 802085 TRX_20191127 1013675288.543524 141387.77358882324 0.015260791499356212 2.1323393445204762e-06 1182738602.7971566 165260.10837209492 488001 71653 67638 ARDR_20200414 32430585.274352845 4736.178069461732 0.03246306473293347 4.740921385012043e-06 1888320.2128987487 275.7711803470013 63984 6358 1047061 NAS_20210210 20480003.56164315 440.44926421686154 0.450885800058935 9.680231757368563e-06 10312940.868303675 221.41229041182586 23569 4854 795646 TRX_20211002 6784289536.113838 140888.57271931227 0.0947983942237723 1.968107040149535e-06 1180672462.4224572 24511.910823291368 1153636 117814 33166 IOST_20200320 34192632.542630725 5525.722297105734 0.0028357897555259643 4.5938433821596216e-07 43063399.86466691 6976.064219715119 191052 52254 127057 ETH_20190801 23395542240.652126 2326222.045300062 218.61308553620958 0.021723127127278696 7854507842.961148 780486.0901914836 447299 443911 31061 RCN_20200306 34706031.10958536 3833.361593788533 0.06819131604978851 7.527681987084373e-06 3098966.4088842226 342.0968382206441 None 1134 864394 RIF_20210825 184654173.7149637 3841.4022828682405 0.24109532624625377 5.025885350654927e-06 2587609.355370916 53.94143534368246 44794 3385 841825 MLN_20210825 133955674.59729294 2787.562360654571 91.91929910432457 0.0019161543527352876 8747190.378546424 182.34437252434833 27770 417 127987 ARDR_20210707 180204677.76192898 5275.89028947314 0.18084110921987553 5.294966251658597e-06 11233239.535898719 328.90543801665433 72218 6976 None AUCTION_20210418 116290543.67485495 1929.281731755345 49.974358095659184 0.000829175810342743 7775463.061636989 129.01067928840345 29022 None 33253 RVN_20210127 131686442.25712246 4040.782088833758 0.016423617922528423 5.042290645160869e-07 12188529.54034921 374.2056638766972 35425 11296 190837 BEL_20211028 98532433.48005979 1683.5090913593756 2.054038274359477 3.5073032146771594e-05 16324880.342856156 278.749943564581 35286 None 374430 AERGO_20210210 17602715.173426103 378.5694139660815 0.06680050079089414 1.4342710705068974e-06 6234287.266271811 133.85615025901217 12046 None 586684 SNT_20210401 547143497.624591 9302.107163891667 0.14262478807404333 2.427175570768531e-06 84043962.07588188 1430.2524433219612 None 5850 117733 DUSK_20200530 7698243.563490273 816.6553678461356 0.02882429367962493 3.0583659666870333e-06 640067.2954771668 67.91354732346915 17328 13336 1128839 NANO_20210310 789004867.0843024 14411.697204518576 5.921313264765367 0.0001081567140900538 88199228.62118742 1611.017408875944 111124 77633 90467 BCH_20200329 3935949199.659151 631116.7155426572 214.53142003387745 0.034315986439084276 3466592791.488671 554508.7577557041 2674 289579 138735 GRS_20190221 17221655.178094193 4341.371588946355 0.23933129757385893 6.0302735693370786e-05 2640390.130192827 665.2817653289408 36272 107012 15092451 MTH_20210809 7758684.338574531 175.0200285771537 0.02262778125444803 5.125072647138613e-07 1693382.9499860127 38.354227224103994 21819 2056 1226676 LRC_20190923 34689392.40639823 3453.826986034429 0.036051178346668815 3.5894123250512434e-06 4284502.725356773 426.5837510560116 34307 2437 641757 MTL_20210703 115339012.02391349 3412.4106242099833 1.7466391799850522 5.158210665619892e-05 18321595.815932713 541.0771270442343 57309 4203 185263 FTT_20200417 272023644.51649076 38350.28197465233 2.7050862140100755 0.0003817767806636532 3818522.452455998 538.9193147487234 10359 None 13510 STORM_20190915 9530103.700341467 920.4539023596905 0.0015162454439693834 1.464753247960413e-07 155303.43601080775 15.002928003576987 26433 2545 2939778 RCN_20200725 29945275.33728493 3138.592556632383 0.058481603835061145 6.130957319852866e-06 368114.7776078015 38.59155430630472 None 1133 1028220 SOL_20200626 11741625.189942881 1268.4141498801775 0.7126894105564204 7.695916436159734e-05 1804323.6591062366 194.83836715668826 58743 1937 124882 GAS_20190227 34078328.24887853 8966.193643883264 2.445500106644616 0.0006434243884317998 1271442.7941129655 334.52351934288345 316476 97918 150509 XVS_20211021 379571120.5629996 5726.563750813655 33.285616063617255 0.0005041605647740606 60231227.825363554 912.2922579961529 128806 None 26919 POE_20190909 6546982.6764453845 629.7659212983751 0.0026009255467759145 2.5018765958964396e-07 143888.9101315014 13.840930476202706 None 10725 694514 DCR_20190702 295263081.3297908 27825.230001794323 29.46795247675332 0.002776076339858305 19522201.208273042 1839.1206826803948 40496 9509 383707 GAS_20190618 46085420.70543389 4943.939232872083 3.306068666307746 0.0003547171816061588 3509131.321375935 376.5043312287029 322256 97701 201306 FET_20200506 6783626.735153086 756.5069083648348 0.01997023221030518 2.219371209712758e-06 1790522.2486060304 198.98784786567313 16802 382 978980 NKN_20200113 11121703.575509345 1364.2758615110247 0.01730427833701358 2.1188661307725448e-06 1427273.1176054452 174.76606705912718 12129 1002 256364 ZEN_20211221 736713259.4080307 15615.385635976974 61.85606558228125 0.0013124665931746205 71819183.9862045 1523.8647793654059 130286 9033 2220353 CND_20190916 11524041.197073562 1118.413196670813 0.006599640604536565 6.404200162237557e-07 210685.47956050502 20.444628173464473 35792 6096 303660 BLZ_20200127 3896921.6398593388 454.02050155105087 0.018191833379154684 2.11687379497357e-06 247896.65301863648 28.84623653370288 36239 None 708890 XEM_20200129 372829602.95759165 39910.22054433639 0.04098681195177246 4.383430206289208e-06 31300129.634854782 3347.465371632966 213277 18081 258081 SUN_20210324 0.0 0.0 0.0004354295634993656 8e-09 68.25284793313685 0.00125398647504992 43 None None AST_20190410 7607009.5225869985 1470.8347245244922 0.0456169645004176 8.820179270436939e-06 660285.7603259679 127.6682663910809 31292 3590 447606 PAXG_20210718 305234226.0827615 9656.423077250965 1815.379072200503 0.05754787766578274 4592924.972740626 145.59663516392212 23133 None 38365 NEBL_20210624 18554091.75437847 550.5421462451324 1.0319781477544259 3.0621141248195246e-05 521978.1010790668 15.4882786969733 40284 6105 644774 XZC_20190130 30388321.2306711 8902.651279205835 4.538020146397226 0.0013293512429088752 919808.7685138313 269.445460843336 58833 3926 293050 TUSD_20190131 209030088.22301033 60441.7370174585 1.0064980572617193 0.00029103222125942234 46099979.533088304 13329.960596277524 8136 None 277794 CVC_20200430 14455102.607380003 1655.6984590669583 0.021645788272654967 2.4689092332425662e-06 10770922.22201243 1228.526722589176 85940 8034 107790 LTO_20211111 99462851.82787368 1533.4534963116241 0.339980160925137 5.236933601050115e-06 63666838.42681224 980.7013577578131 16870 5394 292683 DGD_20200325 53533922.80335288 7919.749479507898 26.739323254020697 0.00395712888712785 1044120.94434312 154.5185385308545 17605 4710 334920 POND_20220112 42779863.47098173 997.9260535114711 0.05306730535938352 1.2403009339780098e-06 13186142.059721027 308.1894624473674 None 807 7248359 YOYO_20210819 4091711.1957360054 90.77523544113062 0.023716751010014872 5.269217262273921e-07 944986.6890919352 20.995034997330276 10375 None 1795501 DOT_20210128 14798283723.454659 488636.475076836 15.458076344001169 0.0005101313931307778 1336945930.4510188 44120.5021157871 138936 9369 32256 REQ_20190813 9673012.340678796 849.9263308861222 0.01324948991023972 1.164153982502866e-06 306486.96120730555 26.92918888892008 41355 29584 541329 SYS_20200129 15075951.096268062 1612.3327547816887 0.026165678290576148 2.798349496465224e-06 772947.1249716774 82.66463318620542 59262 4529 836941 IDEX_20210421 70857531.08773983 1254.2150283065478 0.1219245103321564 2.1633793110873222e-06 4741078.103104472 84.12377669234095 51101 1975 4760670 FET_20191118 15464235.191569997 1819.448988369156 0.04570107372107416 5.372501289849379e-06 16293962.036746524 1915.4764851577318 15952 314 506233 TRX_20190821 1159115825.144985 107818.15984337562 0.017522887065650545 1.6307227001467172e-06 496945218.38850904 46246.936667420894 454943 71293 66162 NXS_20210207 35121010.3541585 895.1224047180287 0.5178022156386007 1.318289388743184e-05 566702.4160759698 14.427859887905495 24389 3601 387114 BTS_20190719 122748600.63004576 11437.206281273624 0.04501378248464826 4.218885611176557e-06 12807023.306789992 1200.3293962120658 13680 7179 160624 ENJ_20190411 128712370.39088143 24235.96127466751 0.14833647065566802 2.795024279799745e-05 15435560.6612925 2908.439619059107 44361 12214 18229 AXS_20210131 46234285.33661672 1351.5262280714646 0.8402367665592624 2.4593879646488306e-05 11328161.965687595 331.5773161663916 31173 None 20130 BNB_20210220 52232341792.26047 935107.0576673078 338.06613613445165 0.006047034918448079 22103516567.70705 395368.6045983091 1824125 164296 283 POWR_20210304 143660432.723223 2826.8058788643507 0.32992113139997103 6.511403131172142e-06 449203928.13994354 8865.597216564078 83634 12968 308264 FUEL_20200629 3244084.2543202373 356.37140076188626 0.003194377892031186 3.5e-07 118095.62533013162 12.93944244 1 1465 None BUSD_20210710 10690740627.87134 315206.4049610435 1.0014733756658531 2.9468129343923433e-05 2652393412.924645 78046.08096652266 23048 None 39244 UTK_20210210 159823880.37035456 3431.4176669185904 0.35533665103165174 7.626154161892905e-06 17453728.05604959 374.58793082206756 59594 3274 107548 AGIX_20210707 191481261.0570525 5830.0 0.21196826439031954 6.20563460323035e-06 2489410.3861715733 72.88058558436194 55161 None 164854 NEBL_20190627 16657912.402363438 1283.3871986177082 1.0902659178455592 8.370105994627031e-05 1238813.8049526617 95.1052645537234 40253 6149 698724 CND_20210325 78604744.87908238 1487.053821817212 0.04124528331986289 7.818226693257178e-07 4537531.225979247 86.0109202725604 35083 6094 157654 FIL_20210813 6552034619.746287 147371.3260332868 68.41539641370026 0.0015387262581282811 988551934.6261158 22233.457658196246 98226 None 38800 CVC_20220112 217117681.8227402 5064.705068913913 0.32363501934644723 7.565083698016676e-06 15401982.884210434 360.02682858538844 117002 10260 182199 ETC_20210128 798343290.2420356 26390.448821353653 6.8929135358861355 0.00022721339221551574 759662024.323853 25040.990951838274 261113 26704 164892 NULS_20210711 41898664.7407747 1242.490612102429 0.36976922903388504 1.0965536187215595e-05 23575847.331525456 699.1436462508407 56253 5365 232645 KMD_20200312 60903621.28555545 7678.742305294472 0.5145721892517345 6.482109455086256e-05 2650541.884480028 333.89100634206534 99990 8406 149248 BQX_20200801 37076695.96481856 3271.384657506759 0.16671184148976145 1.4716655691258599e-05 1895165.948466561 167.29768258898872 13597 53 263713 GVT_20210105 7145116.937902306 228.3784986464507 1.6101948922030798 5.1466462369401574e-05 406992.8937447302 13.0086640766 20822 5455 383832 MDA_20190324 20625734.229366023 5149.675314474834 1.1604965322409462 0.0002897438839343824 20675686.124673758 5162.146921027934 None 358 1647124 CHZ_20210120 123435154.41481341 3407.1784267869716 0.022967399555025445 6.372418914177275e-07 66796590.18118707 1853.3045225836536 67367 None 119636 NEBL_20210823 31647624.65573844 641.4285289379143 1.7406673119619112 3.532115761739101e-05 814639.2252609932 16.530442249944695 40447 6123 2191823 LINA_20210809 115692186.46072869 2629.825900761174 0.041637662957220684 9.46561083917487e-07 21287017.17316507 483.9239433179337 None None 101818 TOMO_20201208 57053165.627323724 2971.118222296637 0.7485454584095911 3.898698759051084e-05 4171232.908995316 217.25307906570168 34370 1693 118130 WTC_20200422 8123547.7972025825 1186.219230314144 0.27768638548463936 4.056505159412454e-05 22198398.86522257 3242.792021305346 54617 19659 973859 ZRX_20190414 186635025.59523326 36787.08155445163 0.31762957516780216 6.259834064222706e-05 22048321.21103952 4345.276478201835 149448 15802 212447 RIF_20211125 192732340.0757544 3369.0096848068297 0.24161653471089875 4.224143065175296e-06 1480382.8254161763 25.881295140949966 48411 3546 383088 AERGO_20210105 12436221.085377421 397.4974132680406 0.04715475952072738 1.5072018102673341e-06 9961344.232944146 318.3932271776304 11516 None 652713 CND_20191030 13167498.624075873 1399.2147388699966 0.0073889518515698836 7.851824356591006e-07 254173.20077918135 27.00955925496596 None 6060 332150 RCN_20190703 13072007.695525425 1211.1784168783893 0.026146222366278875 2.417553539246719e-06 1291314.7344258837 119.39860614506928 None 1122 1949015 REN_20210204 602699575.4794015 16082.244596899109 0.6852544980230565 1.8268917460875523e-05 114504072.49661985 3052.6840106994396 40204 1014 83739 FTM_20191015 26132980.801477917 3130.694650626644 0.012498815893308108 1.49734071109615e-06 3284716.593749393 393.50446652049084 19127 2179 496460 PPT_20200518 10573821.905335717 1094.3654564210944 0.2918776396261345 3.020864254838467e-05 3235784.5495669814 334.89601651795226 None None 2264384 WAN_20201018 33268715.607468534 2927.843616305009 0.2646650932745267 2.3288384207806186e-05 1227917.9651003038 108.04683380464414 None 16000 399181 DLT_20190509 6700511.046259769 1124.841331627831 0.08406813855216178 1.4112851432320525e-05 1322042.050785704 221.9364359833231 15148 2677 2743184 ARDR_20210821 269640761.1109433 5487.856679978222 0.2702450579465905 5.498570741626418e-06 28615325.09189631 582.2248536494077 72728 7013 None ARDR_20210611 208540013.533239 5680.2085156064895 0.20874886781923652 5.685897284268887e-06 17716918.440973703 482.57305297759666 71945 6932 None BTS_20200403 45331583.71328252 6684.3991052537085 0.016920042423152568 2.4819978456505605e-06 23225693.369770367 3406.9725988766077 13253 7022 124371 LRC_20210210 858214494.7535807 18447.0273134781 0.6892053224547288 1.4791546103235401e-05 120637431.0650433 2589.0892963782676 57099 8632 159364 BCPT_20210110 3054817.0004754867 75.50277808876885 0.026201347055130244 6.499969466917872e-07 7418415.994467403 184.0343450872 None 3214 2139942 THETA_20210128 1994214018.568799 65922.527603152 2.0036507544511304 6.589413362454925e-05 109544678.2938978 3602.5997311760643 81431 5053 50826 FTM_20210710 601320641.2400131 17698.591392739618 0.23653007191702954 6.960322583905259e-06 33968340.28927509 999.5794789939263 102036 9120 43795 XMR_20191017 946530709.9436779 118225.32050617196 54.83402804548772 0.006848980674602683 143958459.30178595 17980.964391045567 320037 161835 81315 FIO_20210909 74281813.7111014 1602.7288375831788 0.21060869346059283 4.547088541964707e-06 21521721.653266657 464.6587580262134 None 525 583691 GTO_20190316 21190945.082578342 5399.984987908376 0.03575447412075541 9.111137929443689e-06 3228211.394075998 822.6293352124598 16472 None 763541 XLM_20190904 1245556998.276595 117203.08201135506 0.0631124872753619 5.938979187928612e-06 130569424.88453735 12286.777632226174 275797 103499 66255 ETHDOWN_20210909 0.0 0.0 1.4027593618054992 3.027997295565844e-05 5995680.983650228 129.42280976974675 4972918 622470 154 CND_20210117 18185297.524489578 500.84674455670944 0.009750978923220093 2.693948185182023e-07 319825.82848395495 8.835976541462573 33956 5902 464745 BEL_20211230 73882760.98943223 1589.9548971293684 1.5641599089237088 3.358316117952836e-05 4478262.286499713 96.15014635889027 None None 290468 VIA_20200719 4600321.737539381 501.84606322892665 0.198549099312797 2.165959024880559e-05 91134.79019152545 9.941834134686918 38585 2154 1442044 KEY_20190123 6776031.829371866 1897.1402296924828 0.0027603819733294233 7.728463830735314e-07 556343.2883211208 155.76391321220268 23526 2812 659258 BTCST_20211225 175978924.5958835 3461.014005721617 24.13489982876127 0.0004746222728741843 5837043.115539125 114.78774264728243 67585 None 2315848 ZEC_20210202 944863351.4031838 28288.246635042764 87.87145224794354 0.0026307818053031046 794278145.0299284 23779.878889432362 72323 16919 125065 RENBTC_20201130 308561242.51053417 17007.385186473657 18157.33753583254 0.9993173783768714 2868530.239059708 157.87403371418856 None 2010 94247 THETA_20200314 61292855.68876418 11107.86821669276 0.06170037461446872 1.1091087161640392e-05 5576759.790361269 1002.4627775910437 None 4027 385146 AION_20201031 28105154.04198549 2069.112545686945 0.059735762900511614 4.410658925877145e-06 1043945.429024573 77.08091436489283 68118 72540 748020 SNT_20200323 46909339.593026854 8048.0356053754285 0.01266517291716616 2.1720823183703837e-06 29171480.87176499 5002.920861535153 None 5614 189796 GRT_20210718 1621078137.4790022 51287.61175565286 0.5592277749673056 1.7708849613302787e-05 50058995.53885076 1585.198846467042 123440 16147 33618 VET_20200701 569825286.9444628 62288.117277025085 0.008843729273172968 9.669293254389602e-07 180715131.23081392 19758.492660747295 124185 63508 180669 SXP_20210207 148504433.28925982 3787.101225524792 1.7404274757424714 4.42592323712064e-05 200573892.2741558 5100.612711237578 98065 None 145148 CELO_20210220 515771536.6909336 9232.988358410614 5.303373698705789 9.479203985357049e-05 101900826.32432835 1821.3664996688296 None None 108318 CND_20190105 16893571.618186813 4433.809380070973 0.010257283607884016 2.6921436777469153e-06 187738.05946177896 49.27404263873773 37411 6277 421763 NCASH_20200306 2361927.460047657 260.8044407977403 0.0008140557308834363 8.988817534090001e-08 786218.6584219979 86.81440095978284 58002 58360 746963 ZEC_20190625 745740332.6195227 67557.42341361147 109.239898455497 0.009890680604542857 539062418.8596596 48807.205849108876 51 15231 185342 LSK_20200625 167398466.9429355 17992.41971978664 1.1917484809297787 0.00012821508770018727 3146605.194919898 338.52970444716817 175124 31191 194938 NEO_20190512 659028044.4700621 90044.93613624152 9.987673903057255 0.001371234545412696 418545684.45715773 57463.25990733202 320858 97553 218328 AION_20210206 43127671.07706505 1137.9030732998247 0.08889425932494717 2.3288451341601664e-06 7013420.614460076 183.73706689089016 68235 72586 360629 VIA_20190805 6975142.021459652 637.6871106069691 0.30128474430163654 2.7544299094208977e-05 115901.57039890891 10.596047695531206 40909 2231 1890047 WAN_20190205 28897274.289439183 8340.921211193061 0.27222416989716086 7.857489706994503e-05 1321908.311369674 381.5561621182127 108812 17280 456075 ENJ_20201201 136457097.05669022 6944.821497153467 0.14791109853183368 7.511666081336855e-06 11955119.205527404 607.1408050233059 67326 15977 83767 RVN_20210703 498893981.44847 14760.076670786673 0.05481652138268106 1.6188527572749523e-06 25344553.101534974 748.4805426431934 64550 43980 58646 SCRT_20210916 322935618.0527885 6700.865236248106 2.19445549318221 4.552992633837366e-05 3035731.4834641004 62.98447667524689 92747 None 200681 CELR_20211007 742349558.6386648 13373.448462222743 0.13166684793584937 2.3732500186618664e-06 194887187.66949055 3512.7750760686836 77589 None 85424 GRS_20190626 31107529.355261244 2628.9065878505216 0.42713495639892435 3.609730261617388e-05 2005763.4692005238 169.50766927298113 38574 107028 12971590 VITE_20210727 39292829.896742955 1049.5330718564046 0.05962360876162032 1.5931316360593849e-06 6580477.88549373 175.82913408819854 None 2411 593813 FLM_20210217 0.0 0.0 0.4851505894585422 9.858864012967888e-06 29932188.025087994 608.2593276435573 15001 None 174277 TRX_20210708 4618022351.739675 135914.6752003675 0.06444911863986999 1.8968702049251373e-06 920669464.2998337 27097.19717306385 1067341 113784 20767 ATOM_20190522 1133649652.429121 142455.31778322492 4.7455777688789125 0.0005963614360378068 56337149.74347439 7079.7077109606225 24297 4512 130056 AE_20190507 129156044.22985005 22577.193379443273 0.48497618382322993 8.477995294914999e-05 59640910.2010492 10425.983232472367 983 6353 421011 POWR_20200329 22574068.275288478 3619.6787874115653 0.05249466296208633 8.396368982650107e-06 1147764.9275952838 183.5816689478498 82336 12815 249499 BQX_20210707 495604136.34692615 14507.773062362121 2.2195826329752153 6.495861536702955e-05 1396249.5370429568 40.86283397865246 90179 6139 22386 AERGO_20211204 101057493.33651474 1882.3072681243823 0.38293024215320975 7.127460254068656e-06 1936249.527139932 36.03930958560207 25180 None 498997 ETH_20191015 20182332549.589005 2417883.2657966306 186.61606753146776 0.022356973144925137 6948746949.167441 832473.5966650936 447799 446636 23868 HOT_20190227 205005331.27169928 53821.168945325626 0.0011555378290982355 3.0329665388958556e-07 10710103.061294962 2811.1052182846524 18459 5565 247216 DCR_20210220 1830887242.4739854 32725.119200696892 145.05966746738846 0.0025927838694584124 53438751.356783845 955.159590125334 42674 10468 268087 MTH_20200914 2689510.219459751 260.55062120081135 0.007742223673943492 7.496915411127221e-07 139483.00238878836 13.50635572204 19072 1898 1279779 CHZ_20200704 60543969.98791486 6675.834716360887 0.011258045091387637 1.2420434158744965e-06 4771115.2899245005 526.3731210991668 26201 None 264986 POWR_20191019 19047610.99040653 2393.347526711438 0.04442141271219091 5.581659244171281e-06 756079.9627942054 95.00329809422695 83529 12973 308100 UNI_20210826 14097395315.886988 287608.3808296771 27.077363423424202 0.000552581107066202 333577741.1507848 6807.485448833754 607448 51057 2131 REQ_20210519 79438676.95491032 1863.6933629148302 0.10310053425146966 2.4098546654518597e-06 1568150.0589553053 36.65367753075618 43103 27710 387593 OAX_20190909 3635964.610629287 349.40745977333455 0.06949113052143666 6.689647274843377e-06 124901.53978198071 12.023796978932713 12286 None None ENJ_20200530 186277564.35642993 19752.562326458134 0.20215811269468903 2.1449736067328468e-05 22312023.12555754 2367.38956845194 55582 15500 98201 BQX_20200417 3916222.419272856 551.577488725764 0.027775588068544917 3.91819951444133e-06 160927.76530571945 22.70148485515147 11207 14 397017 WAVES_20211230 1430756441.706684 30848.970316508 14.365680561875923 0.0003087425179620536 88673702.6284105 1905.7462755484516 207520 60050 105979 XZC_20201226 36593350.20689222 1481.8055637351 3.232967525823554 0.00013111156155165156 2936589.986221518 119.09210211827519 67060 73 998901 ALICE_20211125 474378240.4808904 8297.311973527358 26.96695203769115 0.0004714588907386957 813978742.4230814 14230.659603328346 140863 2917 32277 LSK_20200224 225508449.1151449 22664.812646175687 1.617789634408072 0.0001625807614145418 10244337.09623214 1029.510938795237 178729 31293 152609 STEEM_20201208 67913211.3321577 3535.8588668707584 0.18244197800131878 9.502246059228151e-06 2352190.548465324 122.51069416462236 None 3842 219689 GRT_20210723 1611481481.4510174 49777.752618856466 0.5560852957407555 1.7177160646886623e-05 69870149.68927042 2158.249453504931 124138 16183 33618 FET_20210201 67440053.24301945 2040.653353839897 0.09824575247554845 2.9634964954045914e-06 8102714.4511160385 244.41123686362675 27718 807 293884 STRAX_20210114 46938701.825810514 1255.8595689734516 0.4690376781978083 1.2549248987749065e-05 1457290.7641976774 38.99026772802497 144239 10283 230712 UNI_20210825 13915252559.242048 289757.7422959675 26.77179065368033 0.0005574622883989959 422140396.1266143 8790.123690065924 606360 50982 2131 XEM_20190530 812345699.0493286 94070.82810791854 0.09041377775208537 1.0455328339025143e-05 70502141.19643879 8152.773317737815 217086 18459 179358 ENJ_20200520 150803306.56393862 15456.629392985753 0.16395724745145226 1.6804846444641297e-05 16769128.887105955 1718.756812147971 54853 15419 98201 DCR_20191102 190067159.53033265 20547.08825115105 17.92337215169909 0.001935684215350031 19278595.621032175 2082.0453272913055 40630 9657 100172 KNC_20210602 194456991.1349832 5299.899507087196 2.0997425422409033 5.724190429058763e-05 74943037.67067154 2043.0515185981815 None 10933 129800 ZIL_20190703 156064720.82862508 14443.608498104531 0.017090769256441967 1.580260778231905e-06 29856544.876507975 2760.6204339855835 65004 10604 184168 NULS_20200730 42698364.65834856 3845.3464358809833 0.4411723138222894 3.974828189395865e-05 22295559.903207015 2008.762046598627 29949 5183 415817 BTG_20210314 634865048.60958 10336.88016564379 36.13047812545299 0.0005889652465364617 88849122.82609911 1448.335262769672 86814 None 197145 WAN_20190305 30469622.568702664 8201.85305173255 0.28703633525312183 7.726481799850477e-05 2176749.2109112134 585.9402136706126 108396 17218 537237 CHZ_20200309 51016322.9111419 6342.376297734962 0.01055831177589382 1.3124764655249222e-06 9648170.304247364 1199.3391300124872 19681 None 294872 DIA_20210107 39766247.53161761 1084.9340048343959 1.5515477668438562 4.2036684129607255e-05 20492250.436303616 555.2044720144238 21014 190 308409 MDA_20210110 12304299.79285377 304.1127559041739 0.6242278402909001 1.5484760618939482e-05 810469.197353865 20.104712894894526 None 369 3261426 WABI_20200701 6266788.436878221 685.4034215333616 0.10604297064634999 1.1598000418022174e-05 1762278.1656712266 192.74170440103327 None 7666 979343 EVX_20190627 15678660.386974296 1207.9420005391842 0.7464167131334951 5.723741486954695e-05 1947300.6913458502 149.32470774724453 18157 2913 694179 BCD_20190316 159612507.50231874 40671.67385811046 0.8491857735201649 0.0002163825332625955 13296306.254583169 3388.05538212856 20715 None 3287367 EOS_20210210 3923657648.3981357 84337.68044143797 4.1545633942431195 8.919852509297997e-05 5255144124.044959 112828.00634728257 196537 76765 71191 GLM_20210217 251857232.5524814 5118.298877892694 0.25540288994926813 5.192947217876231e-06 14432910.8465977 293.4553490823175 147942 20470 179505 SNM_20200806 4049761.994713774 345.70532329325744 0.009257855753665183 7.90000337689111e-07 147480.01684470588 12.58490801864 29235 9589 None GAS_20200313 10359290.564812759 2152.575643318717 0.7624893590102457 0.00015705487794043528 2843696.095117628 585.7345257881694 322757 98964 240012 DOCK_20210508 65544675.298434176 1143.8130766208378 0.11714626608838578 2.043819457890543e-06 9901979.66973772 172.75718122656374 47917 14984 221085 TNT_20190426 7115571.453711205 1369.8623330538646 0.016587944545571286 3.1913980890550006e-06 600048.1121871283 115.44482761647126 17319 2503 1188979 JUV_20210401 0.0 0.0 14.197648487380075 0.00024142343277324378 4563938.835483638 77.60734332935341 2383846 None 46245 WABI_20210105 4695812.578243663 150.09168301439342 0.07949856504948477 2.5410029098668296e-06 845704.6083959837 27.03115294577143 40936 7478 1296084 QSP_20210617 27945842.47778757 731.0147415428191 0.03921669896262376 1.024022075593224e-06 394704.3122568228 10.30647504187043 65572 8482 222044 ANKR_20200403 5762282.046865091 849.7769311356352 0.0014415688021050827 2.114634568697034e-07 3291611.4240643536 482.8458616668347 None None 5685 BZRX_20200905 98717280.56235923 9410.959291122139 0.6967340718749817 6.644895700874394e-05 29183708.476957522 2783.310115324791 12527 None 102512 ONT_20210806 746505263.620986 18220.04611587635 0.852505897124541 2.0807605220723204e-05 192959865.32174554 4709.683199378796 142035 19762 173647 MDA_20200411 6161183.360573029 898.792313327171 0.3167123048647986 4.615515865122854e-05 476382.92530637473 69.42429819908116 None 373 1850910 REP_20210127 111328247.87993608 3416.3197027189613 19.19734025135738 0.000589197186734732 17637660.696876902 541.3281177035363 136936 10440 130861 NEBL_20210814 29420508.06259073 616.7726784138238 1.6216366889103884 3.3989041700685754e-05 2766983.751703425 57.99518891309732 40435 6113 2429755 SYS_20210107 44935024.9836554 1227.8228125238256 0.07444705881839399 2.017201169982517e-06 2337684.0490032835 63.34137403872548 61056 4490 315243 DASH_20200530 701133516.7578477 74392.90306952273 74.03213744616805 0.007860538609433514 528327498.55537254 56096.43114572661 317305 34949 78138 STPT_20201106 13247426.698250566 852.5447817585869 0.01448443855858168 9.327169993631905e-07 977493.6709460571 62.94513660117956 16385 None 1333112 FIO_20211230 74494796.23104833 1601.4084886407566 0.16069776583173961 3.4531961198013303e-06 11319426.36019802 243.240464377958 None 558 389055 MITH_20200207 5625363.306155773 577.5948495954416 0.00964040458111984 9.9040500553522e-07 1960923.0878291733 201.4550349327762 89 2081 1155699 MATIC_20210201 184772940.63699916 5591.002718385023 0.03819255849804683 1.1551232732976806e-06 43349697.79288436 1311.0995120565863 79664 2940 42218 ZEN_20210104 143928986.69578147 4305.9787169776955 13.532732002199005 0.00040594689585037497 27545290.871925108 826.2873544629906 80822 6322 350689 AE_20200526 43310004.33317029 4873.277633799865 0.12188243793969797 1.3705902097806814e-05 13202811.392366594 1484.6801837777007 25295 6344 522422 NCASH_20190316 5571380.201693945 1419.7515527537907 0.0019202173050767441 4.893278508758947e-07 1330106.2068515841 338.9501854371432 60341 59543 708822 CVC_20190421 27790917.224641114 5233.7209453307905 0.08125357745783961 1.529828353247195e-05 2382545.6293178652 448.5815850418266 89031 8205 448453 GO_20190605 16574963.884608425 2164.4410227558283 0.02299352869207524 2.9992453396995296e-06 1972145.3778955748 257.24402344133756 9681 666 891610 OAX_20210805 8202384.04481735 206.708989760953 0.1427900847875598 3.5903368972086827e-06 644786.8528529244 16.212624511548775 14161 None 1659116 SYS_20201208 42418959.300961174 2208.5088963057406 0.07033045151268909 3.665240264714169e-06 2206408.3589381184 114.98599232116173 None 4489 324861 QKC_20210131 47692785.724998824 1394.1612880534485 0.0074304831221219106 2.1749156296630572e-07 6106164.316401801 178.72851590894476 None 9205 366724 FUEL_20200331 1844456.1695332045 287.0769617248528 0.0018592069254126974 2.9e-07 205876.31338641842 32.11268744 1 1468 None YFI_20210304 1210977398.5142288 23811.160910115996 33881.02528736387 0.6686840979458493 316763772.8691485 6251.726325470087 92324 3609 21151 FUEL_20191012 3604820.4445177442 435.4936701190341 0.0036415249855963755 4.399278979953982e-07 327574.2368634573 39.573817571153256 1 1501 None GAS_20191011 17433051.231699273 2035.9828677226374 1.2510158460506233 0.00014610447683290246 1052055.512973646 122.86816414631201 323259 98300 164596 OCEAN_20210704 194129467.20475972 5599.852001792957 0.44745546503962175 1.2905188513567669e-05 11404771.912569381 328.9282241148107 None 3233 96466 TUSD_20190227 203706255.5185494 53467.16987108026 1.0029994753806644 0.00026330903843809037 62670476.928938515 16452.354586080415 8235 None 263322 BNB_20190708 4638830309.290225 405635.1830712654 33.06562097291882 0.0028901082345887323 188520942.4275107 16477.716494373806 None 54083 760 SYS_20200417 11429630.53306112 1613.0974038784623 0.019577035780194475 2.7629646908813675e-06 275844.25095396 38.93071117229369 58399 4504 804811 SNM_20190530 11343479.60779558 1311.8015386159864 0.027829930342972473 3.2183550996466786e-06 304681.980421597 35.23454041658814 31445 10005 15277898 CVC_20190608 28229866.313775316 3508.580463463278 0.08234669262099856 1.024305114633904e-05 4957794.465431896 616.6968054950854 88668 8185 415629 LINK_20210107 6822133742.248797 185813.9741360314 17.133775411659744 0.00046421200836935375 2729481414.026346 73950.89631849295 115934 26864 46948 ETC_20200314 558689229.6219282 101151.82858721584 4.858476972642213 0.0008733462626945107 2678321902.703898 481447.6711921541 231211 25302 362649 NMR_20210729 227895703.00241497 5699.244749602171 36.28244238179818 0.0009068631415381521 13457281.043581752 336.3586176289695 None 3540 583885 OAX_20210212 11438590.356362874 239.88537728952917 0.20180569423561193 4.226636008101245e-06 1123006.5260081391 23.520346331838454 13145 None 1390628 EOS_20211002 4132391501.963592 85816.90647633593 4.272756276984007 8.871685440947214e-05 1359228087.4256942 28222.16679920916 None 94085 80899 STPT_20200330 10150482.550632024 1715.5026806416452 0.014557827506956196 2.4663059481097776e-06 7849871.781073011 1329.881498891819 11096 None 2025957 LSK_20190703 234911732.29347146 21831.139977914187 1.7858975684301208 0.00016547118392368847 6099424.304498462 565.1382132769683 182830 30481 193702 AERGO_20210707 47060120.841153614 1377.7890654719104 0.17834998790989517 5.222027065861544e-06 11898524.566935359 348.3847577480414 21396 None 362973 MDA_20210117 11145785.029874725 307.1336851459727 0.5653337746008025 1.5621495695236914e-05 1376241.0337905388 38.028761681801676 None 369 3273620 KEY_20190716 5686983.052434138 520.04347942787 0.00210566909000226 1.927789408199834e-07 78388.60272671464 7.176660320353704 23991 2841 1002597 CRV_20210206 701265720.5558608 18506.273240659662 3.2896868376935955 8.618296887843525e-05 400534421.7620423 10493.17072067007 67475 None 29016 ARK_20190305 73530297.65734832 19803.323503329222 0.5252315084924178 0.00014145637659849044 690747.8271081831 186.0335550821484 62706 21754 156863 EGLD_20211204 6946638479.209556 129388.8030144129 345.0831054907062 0.0064352652572223085 371516971.65727884 6928.215905484022 407478 13429 16321 BCD_20190704 213814569.73632988 17815.779836033944 1.135370983360863 9.460882069417149e-05 4434931.251234876 369.55640199384834 21372 None 3671311 SNM_20190401 11791273.39019215 2872.4357474577264 0.029507691166647018 7.188277646290607e-06 378168.61496777146 92.12449005749853 31777 10064 None SYS_20190531 37663719.34802961 4531.429332220116 0.06757055700503695 8.13195941630732e-06 1750145.2331780908 210.62590926676887 61882 4600 1056721 SNGLS_20200605 9645978.795973051 986.7870373758792 0.014041318400964986 1.4364318312128258e-06 2707230.672413692 276.9506538661979 8980 2129 1370799 OAX_20201115 3529571.5117215887 219.38342595276214 0.06335156367006871 3.94e-06 73764.30548607766 4.58759574 12759 None 1447630 OG_20201229 0.0 0.0 15.273703036560118 0.00056257 3363605.430117342 123.89029054 None None 427156 APPC_20210704 6100097.6784631945 176.0577732091346 0.05419709934096439 1.5603316912209043e-06 69209.5676473759 1.9925398785 24920 3128 638230 ADA_20200322 908484606.0452231 147441.97551851562 0.02920966660001919 4.742951207700958e-06 124168282.90695898 20161.959238909232 155484 77188 42201 WABI_20190805 7722720.391513966 705.2120823328381 0.13510682226422607 1.2337487133552555e-05 151027.29408690566 13.7912894877243 36341 7986 1513094 ASR_20210207 0.0 0.0 4.13209641061659 0.00010507959553999167 2636824.6890645367 67.0546967696285 None None 183417 ONT_20190302 570600510.6624843 149371.50707245478 0.9299923822917525 0.00024321260541697705 24803093.227759372 6486.5315471273125 67924 11153 256269 BTCB_20190703 0.0 0.0 10785.737490422778 0.9993455299898422 40617.686095443125 3.76340543 None None 49193 INJ_20210617 225453419.5180772 5894.352781418612 7.830104496370065 0.0002044472728479964 21167713.040323015 552.6977584436157 73162 3667 117778 EVX_20200324 3075791.29655384 477.44019068460585 0.1415441556723015 2.185101948797377e-05 399831.1360537704 61.72432838581197 16797 2865 688824 ARDR_20210324 289198898.56354237 5304.994983817481 0.2903837027172313 5.324971319744407e-06 12684662.754731137 232.6076316870563 68121 6509 None WBTC_20210304 6281904488.143481 123555.61312465444 50642.67610820649 0.9994937545764434 462586781.1034197 9129.703131694605 None None 145424 EOS_20200320 2137620159.7179897 345451.47597423434 2.2812115964671995 0.00036954533654392704 3041970369.1701655 492784.60865820275 1479 70405 93580 CELO_20210804 374057461.23413527 9737.099507976642 2.8075592620126097 7.309624710305982e-05 33825849.57155464 880.6733635894246 35160 None 88664 MTH_20190105 4618217.128064914 1212.1049313900432 0.01790568186060579 4.703331446774168e-06 299976.34345773613 78.7955566538456 18728 2027 776501 MOVR_20211230 489635158.95363694 10557.171048946433 184.32692329279365 0.003957575398367008 34114992.904337324 732.4630293926726 88864 6701 15676 TCT_20200301 4760492.868391599 555.1111285606493 0.00820635204935407 9.579838370792045e-07 536994.6235074798 62.68707055519141 14 None 365886 NANO_20190613 209862079.73662007 25835.762952757184 1.576958569827841 0.00019393471540529286 4602911.785721381 566.0671144309124 98357 46136 382519 ARPA_20210127 25337422.414588585 777.5271511002757 0.0256842187740116 7.885430400497659e-07 11083682.560639808 340.28524745930594 23220 None 1180898 TROY_20200501 4498132.026146798 521.0883730376954 0.002355763575638255 2.732998196175399e-07 603762.1727857343 70.04441983085205 8734 None 489734 TLM_20210704 97634930.82275762 2816.373890502961 0.07868440788675961 2.2678029963114265e-06 11525732.840732373 332.18895805271984 50438 None 9614 XRP_20200526 8682758874.370806 976991.2350191448 0.19685487196537504 2.2153416812102356e-05 1572175495.217402 176927.59493120725 952816 213902 35864 XEM_20200605 419389324.1621923 42968.80223757654 0.04666010415916598 4.773340739334435e-06 12375225.819883436 1265.988806261783 208695 17883 214042 THETA_20190826 123940924.5323253 12276.85245757811 0.12382330277197236 1.2265349441777945e-05 3129154.12435369 309.95917515669845 None 4027 248011 DASH_20190410 1153835222.9897869 223144.88436289332 131.92932543266943 0.025499831885243907 256027112.35611644 49485.95243502051 320630 23673 95736 GLM_20210210 187428319.0439411 4024.26647428826 0.1874283190439411 4.0242664742882604e-06 4648927.794517132 99.816955945041 146848 20413 190516 ZEN_20210220 815740048.5271524 14604.06044273207 75.77972679387484 0.001356384645132067 125251046.42044817 2241.8739594235576 87386 6694 515975 YFII_20210202 73612088.35414436 2204.9354693938344 1858.3488683275184 0.05564174591348499 79058786.74122344 2367.1383770058987 None None 213676 THETA_20190512 68325613.41053775 9357.675674792372 0.09179255281331174 1.2602445839836992e-05 6255680.7550220005 858.8591938042542 None 3963 252883 QTUM_20190909 203394867.33182108 19581.403332954837 2.117003644863488 0.00020369209201109278 209947981.62939295 20200.59988812875 178033 15345 240356 POWR_20210107 48485456.902740754 1322.8183245575701 0.11207953683937641 3.0366142687914387e-06 19036200.051604044 515.7551354188017 81031 12566 337778 BNB_20190405 2771011958.657585 565134.7733081677 19.18575709967399 0.00391484386844166 183556226.24597645 37454.55355762643 940424 48597 1082 EVX_20190104 4444340.123721463 1178.7205973329576 0.23048580028195353 6.111471604631181e-05 322083.95155154454 85.40252465907727 14086 2331 1337741 AVA_20201231 27818254.272047527 963.4092404323354 0.7215451341071708 2.5020456124863537e-05 1518843.0681509292 52.667732829002766 40634 9039 99734 WNXM_20210704 121199387.16771503 3496.0807264611776 56.52150503708743 0.0016300105933025274 7609543.498460507 219.4498625708599 30670 None 117063 NCASH_20190314 5114082.604578043 1322.6996639386148 0.001761381046883318 4.5563217290990524e-07 972340.4693505086 251.52399683324046 60272 59553 692800 SNT_20201231 121618980.4306603 4210.127948563293 0.03143749353162891 1.090133368520467e-06 8896194.924033511 308.4863915691703 114353 5679 171695 SNGLS_20190528 10802414.929297557 1224.8851019840909 0.018296585548975102 2.079049639743338e-06 858848.5470514533 97.59136520646796 1 2179 None FUN_20210304 191667593.20319545 3770.5361031815723 0.03180184787056477 6.276474857431333e-07 3731033.7383377803 73.63641114886335 35600 16921 200934 MDT_20210112 11312598.865824308 319.54037820783196 0.018711321239446906 5.26386613460154e-07 1066394.7601563043 29.999801683000918 13469 72 1369225 YOYO_20200229 1946891.1531873322 222.43108056185207 0.01109936164867568 1.2738721300545785e-06 146189.46162827854 16.778143353691597 7517 None 1663513 NAS_20200208 27706492.255454045 2828.399678745258 0.6092650262639155 6.214690445099519e-05 6757117.322696958 689.2467259985302 23790 5013 905197 VITE_20200208 7615993.368874374 777.6078880562108 0.015040470741328043 1.5341742226549703e-06 4479306.090394504 456.90298245664326 None None 540507 NBS_20210201 0.0 0.0 0.01497789918848763 4.5168823980079936e-07 8202598.025646392 247.36560297090898 None None 745524 DGD_20191017 25168897.967253264 3143.6920088337297 12.58445527585427 0.0015718467903402596 1480063.383446882 184.86560028027927 17319 3359 576212 POLY_20190805 25375959.961480983 2318.299305092425 0.051621200252006824 4.714288954748364e-06 1645456.7445311355 150.27079026427256 35264 5082 295167 MDA_20210127 11639579.602211786 357.15905124339616 0.5929526931644106 1.8198669925358593e-05 719755.8400417978 22.090462039840958 None 370 3273620 GAS_20200324 13758020.790338894 2122.393679404636 0.9872914265123854 0.00015230541625810834 6551848.060573513 1010.7268424790786 322198 98942 219445 SNM_20190813 4528951.573670144 397.9555888611705 0.010471081781745748 9.200317627255711e-07 412031.91903103626 36.202797444116904 31107 9930 None DLT_20210125 4401468.518145672 136.84141737777026 0.05349081259787059 1.659386366815997e-06 383155.8957535836 11.886221930455 None 2532 6584935 DAR_20211202 0.0 0.0 3.283409326683719 5.7433912394465804e-05 182863640.41158846 3198.6795609611027 91613 667 26429 AST_20191108 4224720.253239265 458.25374258106405 0.024524913924105104 2.6602077577994653e-06 3227600.3821365344 350.0965427322872 31910 3533 322310 BCD_20200725 169837771.92470586 17800.857089939876 0.9016271134152003 9.452267017780828e-05 17080698.180793304 1790.666203941374 None None 1655072 WTC_20200301 12074995.15951026 1409.2651529958152 0.4112716894787779 4.8085595794531737e-05 7023352.084075387 821.1653709146395 55017 19434 905715 BADGER_20210727 89139135.97427988 2381.7809837608565 9.577167028311749 0.0002566777509918792 9960924.805584555 266.9628470860412 None None None TNB_20190414 15382267.492905732 3032.0333096234444 0.005888619056061518 1.1605272632087534e-06 6608050.610406683 1302.312616426802 15619 1506 1826498 BTS_20211021 138529599.32240227 2089.4168005260035 0.050910539657223586 7.709205193381494e-07 10564448.459090797 159.97375292893415 7089 7441 240672 FUN_20210110 69319756.84004045 1713.7163620409253 0.011516286376178526 2.8495074859932524e-07 3681996.788238799 91.1046935511438 None 16516 359571 BRD_20190618 25930018.700720057 2782.9858828789456 0.432589905153608 4.644790961975491e-05 770728.3689126371 82.7544082609222 166 None None TFUEL_20201201 0.0 0.0 0.009704267917630948 4.940123921431687e-07 3381778.58418234 172.15523543359677 None 4534 81401 HIVE_20210519 181052720.7720904 4247.638140198907 0.4893411366242727 1.1421314885301025e-05 8886414.64617596 207.41060229574845 19862 166 111095 ETC_20190716 650200345.2012688 59358.31717270401 5.789780441144829 0.0005294437380902068 786497761.6869102 71920.91637671173 229021 24806 498409 STPT_20210506 91697219.0600796 1601.7629069586412 0.08949711866814139 1.5615909983120192e-06 79668907.44256625 1390.1033972834664 29815 None 885940 BTG_20190929 134933282.52315652 16453.542584139068 7.704343271282696 0.0009394549493385417 14005801.417437112 1707.8443934486597 75083 None 262678 KNC_20210916 172780872.54776642 3585.2270662969436 1.8833031606143207 3.9067502746560654e-05 33184924.390828054 688.3926878560479 181938 11491 102019 VIA_20200312 3762407.370691932 473.9632399375974 0.16241659136331868 2.046016985343676e-05 99537.80490358519 12.539115481188178 39572 2184 2317316 TNT_20200718 14749278.1221512 1611.3990871500507 0.03438382016294984 3.7558970736511275e-06 406802.4675394335 44.43683657442486 17993 2602 477306 REN_20201111 302371499.0598345 19768.554661743852 0.34148324331676044 2.235394246781998e-05 72899271.57096963 4772.082245721887 27293 974 87270 QSP_20190426 0.0 0.0 0.021133034193500724 4.065839788394919e-06 191063.1101475772 36.75913208768706 57288 8565 831378 TRX_20190813 1368902421.60532 120280.1539818653 0.020686809278004096 1.817661684711671e-06 598756038.4374366 52610.138902120816 453461 71267 73072 TFUEL_20210131 0.0 0.0 0.028530444634948988 8.350911904106067e-07 4183345.637513299 122.44727108285551 81857 5150 46280 BNT_20190725 33405932.29338422 3398.081302758658 0.4845508826269798 4.941430706470352e-05 1140488.7008405712 116.30658592886205 786 5133 155271 QLC_20201031 3299719.666734355 242.95773091710433 0.013735641816864366 1.0141869500035347e-06 159818.27371578984 11.800366501668767 27502 5615 940522 VIA_20191022 5201314.65778569 633.3840420109528 0.22478321301670898 2.735436927319217e-05 359862.1350928455 43.792423814305636 40436 2204 4136825 DASH_20210427 2810404337.042422 52135.16903978399 278.3333211988457 0.005163297878118553 1240169845.9637496 23006.107592833185 None 39777 49097 NPXS_20190325 105767123.0680359 26486.603051819304 0.0006028145069994675 1.5106719987229355e-07 1981775.9211552239 496.6392409390362 57556 4159 151304 VIDT_20210124 25710267.25921229 803.0333712900363 0.556635635793581 1.7382173382291967e-05 1464775.6706602129 45.74084560231173 24539 1188 None XLM_20200501 1393622535.621496 161048.04286306835 0.06778486568120846 7.863943459799118e-06 731506426.932745 84864.44760299224 282257 108013 75602 BRD_20200319 6125962.934486872 1138.283029535679 0.09926125983638967 1.8414011906946115e-05 344097.95957186545 63.833805204125596 179 None None VIA_20190714 8830850.67457991 775.5451345679498 0.38217454638414716 3.355932184218133e-05 175657.47803835233 15.424747396833677 41040 2234 1727246 ATOM_20210310 5003352610.661301 91545.7279949914 21.122772327658804 0.0003857802420790348 1126024629.058788 20565.390150820327 79992 20233 61581 STRAX_20210727 172136882.1754153 4595.23527191011 1.7185212951714652 4.591856647801147e-05 23991568.050005876 641.0501956020352 157515 10764 180987 KNC_20190701 41596377.31676636 3833.5866103839417 0.25019108117326044 2.305965585357692e-05 6979691.37819155 643.305430355512 97199 6688 219747 CFX_20211125 325185036.4402976 5684.316065954536 0.28237083778515276 4.937188991342329e-06 11751809.84714984 205.4776855173794 46852 2142 181589 DNT_20200411 3015995.272172017 439.864087779816 0.004037019708477343 5.886159471770657e-07 100912.87137707163 14.713558431047668 58593 6066 660159 LEND_20190726 5474527.970308219 552.6576511895784 0.004910261994857275 4.965554276869128e-07 2229447.4848587965 225.45523039483967 41890 5855 751506 CHZ_20210212 161950088.37016928 3396.356819494844 0.030423587194523788 6.371942556876102e-07 81197941.63082992 1700.6167500897334 70327 None 105011 XRP_20210106 10299283152.408031 302243.70043592015 0.22669902564356462 6.652730231978187e-06 3965486346.3855453 116371.52310735895 1045407 228907 14934 DOCK_20211002 70448412.58601576 1560.1781752227776 0.08429849756555238 1.7502713801783082e-06 6947737.765297143 144.25436892427848 54346 15198 232979 REN_20210707 345452433.0113213 10113.883609653698 0.3919495106011187 1.1474809461225105e-05 53446525.80869723 1564.7135241441483 86551 1179 90516 NAV_20200719 8562878.852421716 934.1188045453057 0.12387890735456013 1.3513868272665515e-05 163509.72901142435 17.83716846028739 48505 13828 865383 BAT_20190228 192021307.6295558 50243.96650791663 0.15729474496516693 4.123314401734258e-05 28650596.193148125 7510.448993552936 92978 23182 122237 JUV_20210428 37069584.64568446 672.8830277146301 16.805131968116733 0.0003049624535948545 16823962.85012204 305.3041773010764 2423521 None 44251 ICX_20210318 1126282898.3897016 19135.57392791854 1.8890053331554575 3.204839371279607e-05 141965909.80916026 2408.558245708689 None 29956 116416 ADX_20190414 14345853.214834802 2827.743362440452 0.16485062734350964 3.2488711796066754e-05 591808.9207403476 116.63352317252472 54740 3930 994685 BLZ_20210131 35665831.475883596 1042.5879049428568 0.13822563411586988 4.045888902750678e-06 10856473.506970821 317.7709110600998 45027 None 375643 AMB_20191012 4812169.138210856 581.351895742856 0.03324435095551819 4.020700362894855e-06 1856949.3149055098 224.58663110337022 19200 5594 570215 BQX_20210401 1075241903.9364667 18293.08821741667 4.824848568826707 8.210883070924586e-05 9670186.561875563 164.56634856188856 None 3339 22587 CVC_20190622 27735043.977576084 2732.180374023899 0.08093097706153649 7.972514027988683e-06 3879995.650600358 382.218538266578 88705 8168 458176 BAT_20200417 237923299.41490018 33510.133478318996 0.16276588594483443 2.2960781737647404e-05 93139584.42254007 13138.856810486315 115271 36928 18644 AKRO_20210819 75537823.34075832 1676.7382491575167 0.02780028546030409 6.178913409231404e-07 12988282.471179862 288.67859230673025 None None 223104 WRX_20200701 24577342.574460432 2686.5715364169464 0.12760368696157495 1.3951232790462937e-05 8435252.962862765 922.2474721030441 29657 None 21406 VET_20210805 5766991895.636629 144862.47460311174 0.08827694570524738 2.2199704834489365e-06 585620851.2388817 14727.072780512834 395907 195283 38303 RSR_20211104 600350740.1819004 9545.186592728529 0.04545181716881019 7.208397674998336e-07 153288180.89943835 2431.062684900703 84837 None 114031 HC_20191026 63340181.32050072 7315.993354188316 1.426610285537501 0.0001647780468956596 24836859.86856888 2868.7366841898383 12834 846 470518 NANO_20190801 170780246.09211552 16989.603871577496 1.2823148938633804 0.00012742096104756382 8450752.43298857 839.7336736394219 None 47143 262200 ZEN_20191019 25032479.39410991 3145.3510193757543 3.306292711866891 0.00041543831866978865 3901537.1855341215 490.23126197158336 35732 1833 95686 WABI_20190908 9913977.704913324 947.0242321725858 0.17160057336513743 1.6391997850767356e-05 2226101.207207323 212.646411888659 36289 7958 1609387 PSG_20210702 28370361.085035097 843.809818904999 13.4762653300986 0.00040068858990400396 23312107.134045754 693.1367932011117 9202836 None 41128 TOMO_20191216 32756833.191452354 4603.110588243402 0.5003862462358821 7.037583460586802e-05 44733712.800323114 6291.484622177029 19280 1404 297421 TNT_20190830 12622426.30113271 1330.1238144984295 0.029503401956179495 3.110751844038307e-06 603628.8781202697 63.644851821371404 17529 2539 645355 QTUM_20200208 246725609.3821713 25191.169522959786 2.572963774495499 0.0002624502096074345 457515725.14123434 46668.00953525216 None 15213 124915 AVA_20210318 159905266.15351272 2718.41846459639 4.169811963183691 7.075961283727084e-05 19158724.9168259 325.11393068557277 None 9576 50242 AMB_20210902 6335999.304918141 130.1094335951946 0.04382015755076097 8.998447765857765e-07 1888074.4534306289 38.77151588869841 1168 79 686279 REN_20210618 384983458.8502074 10131.831445416414 0.438891133879047 1.150132594382375e-05 39400853.91733213 1032.5158755499208 84486 1174 86030 GAS_20210429 205371362.24898684 3751.9044496862366 14.831436500787738 0.0002708659462358691 21259417.23533454 388.2599076337742 384154 109622 88657 THETA_20190224 66881312.63376502 16253.947605664785 0.09619712903226904 2.3378474995966227e-05 3025692.3413281166 735.3241563321259 None 3838 509909 FET_20190804 25325639.48817457 2347.144145230549 0.08273234164435955 7.666129154347005e-06 3259391.475313292 302.02113850155786 16177 293 429380 BTG_20190714 494918185.266525 43484.07496353765 28.284635104938783 0.002483716358548872 13183796.269123832 1157.6889834325941 74849 None 363617 DCR_20211216 890232311.8479718 18247.554388763 65.59938759624451 0.0013443181217161794 4506823.2830105405 92.35763370251833 50387 12458 118301 RLC_20200318 17230933.808295704 3173.7911834253077 0.24510111536647194 4.556931298415345e-05 199193.8277959921 37.034208798989475 28390 3558 324809 AST_20210127 28198412.411727443 865.3220879886059 0.16321802889799433 5.009423294682021e-06 3024880.1521536703 92.83842722601396 35318 3449 178843 CND_20210723 17489023.160176825 540.7475997229691 0.009065121467834282 2.802868193399422e-07 172776.19687154214 5.342111614346159 36105 6251 140212 ZEC_20200305 462608750.51005393 52844.46193092718 50.122464717587086 0.005723404146576236 169219372.75931108 19322.889749909635 200 15576 157694 LSK_20190811 164980135.29416168 14560.619132961783 1.2295442093895914 0.00010857224328844754 3893520.2509236187 343.80888845114424 182335 30782 180876 AMB_20220105 15602366.990793655 339.1155396156975 0.027550164492457018 5.998628214068383e-07 208735.60031107944 4.544899402141004 2793 160 593144 XZC_20200430 41079538.37548612 4705.281604348443 4.1200787060244135 0.00046989180626121475 56490115.96156805 6442.654259559041 63649 4097 120622 CELR_20190411 35986745.28608608 6780.513241968091 0.01801699586621821 3.3947076369423886e-06 23788922.08553836 4482.236443747122 11876 None 421658 VIA_20190201 6593821.311967299 1924.0462840451135 0.2849722071634603 8.318330405576866e-05 159753.0404052805 46.63186584452949 40770 2231 3450417 DCR_20190804 285006888.89217913 26414.022852004746 27.990732701494395 0.002593639925454347 22777369.925261497 2110.566260091051 40580 9564 266485 BNB_20200310 2497008181.427224 315731.92212866613 16.583534012655026 0.002092512439250766 383658471.5850716 48410.07493354963 1122844 59987 1861 ALPHA_20211202 420309005.17182094 7353.277471056004 0.9428880195606206 1.6493145546349515e-05 23749997.384862337 415.43868992681666 None None 52382 NAV_20200207 7477069.741227236 767.8280663188065 0.1111297006980223 1.141202451637758e-05 132709.00783516045 13.62802600426645 49753 14035 740836 POE_20200305 4508344.569623869 514.9874338638267 0.0017916551065955333 2.0458495260138075e-07 112952.490091621 12.8977835893384 None 10468 759696 HBAR_20200411 127528758.26730107 18599.273493071858 0.03289700482126201 4.793691948799551e-06 19772708.64537341 2881.2432850429223 38468 6395 106388 TROY_20200330 3268639.2209938914 552.4229333625419 0.00169833952806444 2.877232113084058e-07 330973.0297422978 56.07160488247977 None None 356286 MITH_20190807 11221976.851002716 980.7005657086194 0.02395941205704102 2.0881999010606727e-06 4628850.160204231 403.4307863461362 79 2079 826998 ZRX_20190902 96568693.69952784 9916.77227729001 0.16071335534190467 1.6502062087515558e-05 13092766.313350834 1344.3664475836651 151218 15906 155880 DOCK_20200704 4000916.747242724 441.2234324941128 0.007099995800921661 7.83234052502902e-07 1095008.9479943677 120.79560606968747 41992 14967 325611 SC_20211104 1028974784.107223 16344.709278692388 0.02095677081025542 3.325491449171108e-07 71811348.89839761 1139.5268330090294 141952 49624 114917 BAND_20210909 295957382.6886176 6388.232790127955 8.37927545371742 0.00018098988812075852 71556636.17374167 1545.6023193076526 None 5685 357837 YFI_20211216 734562342.8533998 15056.789739786538 20658.677689789012 0.4227295947766839 141252204.27771553 2890.3828198619767 None 7708 26210 QTUM_20210727 660199706.8221495 17624.41258253997 6.337304411418259 0.0001697967757414646 260447635.527198 6978.230157656165 249292 16754 143849 XVG_20201201 123997558.85530797 6310.708133964917 0.007371888600320546 3.755170967689543e-07 5053488.1464517405 257.41995032716136 287853 51308 288083 RDN_20200208 7725297.107813236 788.6320526067095 0.15244169889740178 1.5549521615935405e-05 1718007.0415818687 175.2419962689213 25238 4330 1852265 RDN_20211011 34532846.430704184 630.9927516981156 0.6759266553453965 1.2353840232984342e-05 2590111.3094791006 47.33919138992954 31661 4808 1383523 AUTO_20210725 24626574.79243718 720.7998774190173 708.8150855152315 0.020746442859322475 3744988.430598913 109.61277499867 None None 11033 GTO_20210603 22781369.518823527 605.4208633306799 0.03438536233317211 9.130199473399592e-07 6897350.973472134 183.14243606238006 2094 None 270984 THETA_20210115 2159101640.836164 55350.14953773847 2.1826627083799823 5.563861337008601e-05 167078594.45879182 4259.027876281359 79592 4922 64313 CFX_20220105 241280291.0638516 5209.036231278002 0.20603202216753094 4.477895572176874e-06 6752613.894111701 146.7611662447102 47915 2237 234014 VIA_20201228 6767154.969190011 254.88649692197356 0.2921480856389638 1.1085404778737121e-05 838981.8607991376 31.834723505496495 37903 2134 4839859 SRM_20211204 686981025.5216956 12794.173697088438 5.149831647094748 9.603638124204058e-05 69971870.90123995 1304.8669802402749 175535 None 18033 KNC_20200520 115976090.95915516 11885.31620400726 0.6445101282006171 6.608085763786733e-05 53418166.94349143 5476.901185282735 106078 7616 111071 ONG_20210217 0.0 0.0 0.42570138398249324 8.65717251243064e-06 82092892.55203684 1669.4621150130959 98830 16921 213342 CND_20220115 14988779.39195584 347.7567250774816 0.0077744223942124565 1.802534609972893e-07 53359.40368799019 1.2371616441463076 38344 6369 103780 NMR_20210220 221110169.55218184 3952.103923835314 41.57269723404515 0.0007430667716272216 20534256.07632246 367.02750568476654 24818 2393 2608504 TRB_20211028 99410377.32561144 1698.474581405372 48.6907250684093 0.0008318650837764564 50318639.4322949 859.6774672805419 25360 None 542010 STMX_20201018 16501650.167200135 1452.8648178079957 0.0020596146360766783 1.8122940343788477e-07 165567.9646015348 14.568639651113779 21475 130 188907 IDEX_20211104 153087808.75412592 2427.4446875535796 0.2583370394797272 4.099379735419939e-06 26249189.15125662 416.53103362404426 None 1988 5644635 FTT_20200318 61586416.44484513 11344.258397507094 2.1347333267593527 0.0003932192822132459 12220018.390941856 2250.9354213405704 8270 None 15714 OAX_20200730 5907757.3158149 532.683524055523 0.11289195930658445 1.0179105793662613e-05 7165266.02674723 646.0690502139475 12097 None None AION_20210703 63780070.30122226 1886.9919699297052 0.12960549612060843 3.827536105184594e-06 2444745.1753907357 72.19871615688358 73635 73371 296358 AE_20190126 93595415.36165845 26246.495059705987 0.4114166044098396 0.00011537150439900056 69769537.19877052 19565.122995924645 954 6303 467648 FTT_20210217 1861228435.161031 37850.82690672396 20.90258829104385 0.00042480033080105904 41694819.14717086 847.3578831382129 59950 None 4654 DNT_20210112 80511338.7883506 2272.8542021977178 0.1087536348874549 3.059455654537285e-06 41224158.64690317 1159.7174237562774 60831 6395 301062 TNT_20200412 18946860.11136762 2752.9511390347598 0.04417824832089277 6.4195714841931724e-06 475129.99536608456 69.04146464527167 17586 2565 952681 XMR_20190201 721401952.7216717 210242.8655753312 43.040840926016 0.012543672357577964 148066492.6168832 43151.9814799733 313268 153691 101450 JUV_20210826 33997568.11888325 693.6049104470392 13.052760923541104 0.0002662936257777239 5906702.418958686 120.50455936090505 2655544 None 38736 MKR_20210206 2416571725.3536 63760.094724698836 2723.222863458967 0.07168907259254953 889473952.8497854 23415.477165183933 95583 20964 38971 NAV_20190207 9148893.77420945 2686.32019722387 0.1426106326337 4.187367699718265e-05 119071.59717646208 34.96208878416823 48050 11457 833323 BNB_20200109 2231554930.3303814 277302.72139151563 14.49911394271138 0.0018069041424757155 182170907.22937414 22702.44707448381 None 58295 1604 ONG_20200725 0.0 0.0 0.18181702400270597 1.9057662064766323e-05 7781376.213547398 815.6268044206366 87973 16582 168500 HNT_20210902 2223146167.27753 45702.19504252784 23.305985125761723 0.00047900260218561715 39954495.86940224 821.1756502540313 80231 49997 2681 WABI_20210718 8474215.961099852 268.0888467282465 0.14309618252196826 4.5361774476296435e-06 717076.0085769622 22.73145209756889 45449 7890 684219 KNC_20200607 136324158.81430104 14098.341653885662 0.7597407225385941 7.857069772430833e-05 53845362.333464146 5568.5677524592 107297 7735 97409 DGB_20200711 283918374.7781945 30563.001120614732 0.021297982555888894 2.2926669160845664e-06 12826396.493543245 1380.7249027537 162271 22570 171984 OAX_20210723 6054849.010190792 187.2124660639149 0.10687095253767451 3.3011833513419215e-06 337503.43707572087 10.425290511959064 14074 None 1430084 POWR_20210104 42657024.26484709 1276.1865613788573 0.09904492094064395 2.9710909961910692e-06 3253523.181695805 97.59726535425594 81024 12572 337778 ZEN_20190227 31324267.70306299 8223.297231078337 5.311223382317492 0.0013943109204490425 594353.9769673944 156.030763732697 24932 4247 306368 XEM_20190414 596530107.1761047 117580.29679791046 0.06630593386719873 1.3067553399670426e-05 19271955.716780555 3798.111205997153 216337 18459 129462 MTH_20200106 3294049.085286825 448.52242415096765 0.009549384254556363 1.300440750646631e-06 227112.68081439816 30.92833812596073 19254 1951 1221699 PYR_20220115 347172145.01781404 8055.988323159409 15.848001413635552 0.0003674430021739408 55280990.524974465 1281.7144945588477 78780 None 41443 OGN_20200411 6355133.030727338 926.8564904835245 0.2224327054436453 3.2412490894786565e-05 24674815.942766983 3595.569480127986 66302 2194 102776 ARDR_20210401 375810274.8422572 6389.233290811825 0.38000505327166717 6.466891166146761e-06 23416114.448715985 398.49328941851047 68963 6557 None ZEN_20210511 1434784759.2789438 25678.28962787583 129.6422452507062 0.0023202024554740456 126658778.25549833 2266.807457302573 None 7209 756616 NULS_20210204 43680617.3154762 1165.922640790973 0.39076896702213965 1.0417919218910194e-05 36553356.72473439 974.5142262453898 39185 5098 775793 WABI_20200905 8493396.14959344 809.5673300633767 0.14369763604683167 1.3704995826301673e-05 2313938.555236014 220.68921322750816 None 7644 1644461 BTG_20190520 396250771.67597914 48421.380259234415 22.65699463745174 0.0027689319223310823 9521139.904496534 1163.5871676891516 73916 None 446927 YFII_20210624 70538853.85242872 2092.247740969143 1765.1748362099634 0.05237675633438662 28067365.52294423 832.822638747696 17105 None 423261 EGLD_20210105 506055208.5788332 16174.980727660497 29.958077925207327 0.0009575463800457918 129998506.68068255 4155.126366725504 115706 3143 49960 ARDR_20200308 54910926.865666606 6177.830516980718 0.05501632689797409 6.187071613840525e-06 2976858.3567794543 334.7740003037596 64692 6387 1029538 LEND_20190719 5425933.95513753 505.5660561093572 0.0048034743738745835 4.5020231140331724e-07 1090630.5613759959 102.21859458417727 41923 5860 751506 WTC_20200217 17686296.011729307 1774.1954579038375 0.6020762545908581 6.051968747038961e-05 20872591.466296628 2098.0776149290336 55106 19442 899275 ZRX_20190621 198151780.952063 20714.517709324555 0.33118881552514 3.465251739443315e-05 54637586.635716155 5716.768901998995 150678 15952 211751 AMB_20200629 1832982.1164801011 201.04247818748553 0.01267900912652161 1.3897674457484665e-06 269446.53696959885 29.5344866237778 18968 5443 835291 RLC_20210708 263904027.53427067 7767.0542614149745 3.6979286423557927 0.00010886901012302546 77693318.26990499 2287.333118420923 45653 7714 151690 LRC_20200312 50876508.30865228 6414.308387585275 0.044587182076208556 5.616808289326636e-06 4638112.75360507 584.2798075185245 34348 6823 607711 TNB_20190421 15516864.8535487 2922.0033308556594 0.005942193963662325 1.1187860387835607e-06 1729398.1707305033 325.6081071642826 15704 1502 961548 WAN_20211111 183771327.01122314 2834.712462639895 0.9533047707921947 1.468436797199569e-05 6294076.490075131 96.95171791424653 129490 17302 227468 TRX_20210202 2354638900.094571 70519.8316635783 0.032862389315146505 9.838664740071809e-07 1828729618.1711347 54750.30266631455 575178 79438 29522 POA_20201014 5515958.342854113 482.2504843195457 0.019683993695425794 1.7200023152507201e-06 164712.24751492427 14.3926812546 18121 None 251528 QKC_20190414 64331667.32583906 12681.315229017178 0.040739150626886315 8.028859488508171e-06 10617556.39752239 2092.5048047211503 None 9132 169394 LRC_20200229 48969177.69893083 5602.786442774176 0.043046917379731445 4.940488477672474e-06 4400730.958124128 505.07125516462344 34166 6813 811957 POA_20200117 2548629.848147764 292.77573081653753 0.011588824843768683 1.3299795225715895e-06 55671.26693881107 6.3890554928913 17521 None 390199 ACM_20210429 20348546.37156774 371.7390093239129 10.181204438143087 0.0001859350131824155 3068924.7234487706 56.04646899855018 None None 44251 TOMO_20190915 23508648.889141962 2271.5496988908108 0.36357107769839486 3.5135951620481005e-05 1328648.306299838 128.4021900375472 17122 1324 270545 MATIC_20210420 1716233238.6518025 30660.337287979248 0.3266754095884679 5.8407612339248324e-06 250862290.76505473 4485.267944715958 3792 12238 22143 OAX_20191108 3964159.7940389384 429.8466862728796 0.07579284483112418 8.220052937644593e-06 154390.8348953403 16.744335679107397 12198 None None CHZ_20200312 51960334.289833896 6549.26773531056 0.010853806752568479 1.3672909143695032e-06 11950170.678283915 1505.4036031842784 19731 None 294872 MINA_20211204 1321785439.6928658 24619.711590806706 4.211030207926419 7.848869913983741e-05 44980631.56447074 838.3865903735893 160301 11700 58560 UNI_20201208 808737480.205302 42122.00842382549 3.760556589402304 0.000195863553024481 217578687.13042405 11332.29449168854 148265 None 3947 IOTX_20200320 8734417.222456265 1412.3740276159613 0.002008506948412771 3.253684916171193e-07 1826885.6679751934 295.94671535279343 22559 1810 487690 NAS_20210823 26431584.075134266 535.7107294856025 0.5807178416685559 1.1787583902774209e-05 46233556.0957986 938.4625070877222 25437 4934 625809 AUDIO_20201101 7141834.919999196 517.6694732990636 0.11149841994180781 8.080486565907635e-06 2641370.3601560933 191.4247549155167 None 1855 79642 RVN_20191017 149207478.2190824 18631.246506062842 0.0321175767417855 4.010549784320928e-06 19970246.51051122 2493.702077198307 28217 7093 246956 AE_20190329 125105531.15560652 31073.91595700984 0.47019868036848184 0.00011678787319939302 44806215.55061413 11128.960668645383 985 6353 437952 ENJ_20200407 90084532.68269536 12385.886559846675 0.09817339337803793 1.3473040373888595e-05 7152678.845489476 981.613526341617 54108 15297 101377 MIR_20210702 297328343.9392463 8843.333904094665 3.82425927486474 0.00011368967353203565 17499733.567783754 520.2416607303145 48498 None 16054 NANO_20210325 600591070.5120572 11405.471425191563 4.500393235966238 8.554742042747595e-05 39684525.77481351 754.3582600274901 112847 80086 69675 REP_20200530 140345995.44805762 14947.818902501342 12.753554690709226 0.0013602628147383043 7247839.490572591 773.0367560504383 132156 10138 252584 BTCST_20210909 141647839.3265105 3056.2403572008975 19.385164178108106 0.00041871385123659903 4994376.525777614 107.87706569932708 63540 None 1770036 OST_20210421 22255504.911035843 393.9128610030975 0.031668070011427144 5.616506393100316e-07 1938311.237092089 34.37701587440468 None 766 441171 MDA_20191026 16604459.568968816 1917.7753694673677 0.8462362552962379 9.774299174316826e-05 4976342.300741983 574.7834382755557 None 368 2061213 ARDR_20210819 252650866.61602747 5605.097917315301 0.2520271388119936 5.596018358258673e-06 21610821.139530763 479.8473386791616 72684 7002 None POA_20210602 10885724.52219443 296.6730036952816 0.03740712335971271 1.019910807420058e-06 125282.93319388636 3.415857892118629 19732 None 235395 RDN_20190126 11481379.081326626 3220.168664702654 0.22834271580634116 6.403300780463338e-05 1085497.6609670967 304.40068977530797 24876 4459 608656 ZEC_20210819 1635646799.532858 36306.99733717384 142.33087321518252 0.0031603190958466947 354099144.1781759 7862.428311511897 77633 20258 153391 SNGLS_20200117 4081239.195264409 468.37920406889543 0.006806185358998613 7.811048381805538e-07 80600.82715201048 9.250070741395856 5258 2152 1416171 SNT_20191127 35814415.52548213 4998.365442494296 0.01007838154591196 1.4082185383598071e-06 33552174.360157687 4688.133081786324 110576 5663 347600 PIVX_20200308 22184998.89903957 2492.57555500095 0.35476205389435 3.985897080289096e-05 239698.9058546841 26.931154516294576 63963 8511 213646 QKC_20200317 7212240.509031084 1428.94587399183 0.0019344185111659835 3.8413645927977405e-07 1671135.8691230146 331.85384240011575 50318 9199 585547 SNT_20210203 209721535.1600559 5888.954259938058 0.05398373390608168 1.5200382233504117e-06 23706611.779724214 667.5150724846457 None 5739 152018 CTXC_20210310 2110534.405922308 38.61618872052623 0.21048823479899265 3.848018431253122e-06 15501058.272992125 283.3809594886101 18266 20249 470143 DODO_20210324 344229820.4774026 6314.4689692231905 3.4253792003168098 6.283721957759872e-05 40521342.051066235 743.3479095705181 61461 761 35063 HBAR_20210723 1722928995.1439452 53271.459622503295 0.1745717097197734 5.392421495813409e-06 46844203.063350655 1446.990969834378 117506 23444 41411 XLM_20190207 1421842211.440462 417348.7107520069 0.07417668083054749 2.177514493440402e-05 144752609.55171993 42493.260918785076 261805 99036 61988 NCASH_20190613 6475350.507735687 796.6435232464705 0.0022360191969855933 2.748543242221001e-07 948055.7042158229 116.53621322144046 60319 59210 943621 DNT_20200410 3333912.469130459 457.2359597903907 0.0044379873433894835 6.086564723223069e-07 74289.08499473882 10.188522162484567 58603 6067 660159 CAKE_20210729 3009200889.9832654 75220.04521387974 14.899735646111434 0.00037225608006522865 178920495.79582262 4470.162692159084 1009762 None 809 REP_20210602 151607786.57074767 4131.897581085238 23.38838513512656 0.0006375999326029358 25193983.14235021 686.8230474551347 None 11170 154273 NAS_20210408 50758631.431728676 901.1443654915633 1.1084501031355631 1.9714919178556387e-05 18253465.768110674 324.6565644487438 24531 4882 445034 RUNE_20210523 2275510507.993676 60542.385099498526 9.445910685967437 0.00025152322962198074 277852503.5920132 7398.583512528574 1812 4855 71377 REEF_20210703 190519587.49251688 5627.023621665908 0.015048354918621212 4.444534584822994e-07 8785617.945400218 259.48339880696096 183219 12402 42955 SNX_20210221 3350856814.4033175 59755.8708633952 23.315611044372318 0.00041460802164216626 507209263.1063494 9019.40887308904 None 4900 25863 MATIC_20190909 30293091.01111858 2915.66452815104 0.013837875581000586 1.331441177686297e-06 5143184.857125143 494.8626733305168 23071 1141 217453 ALPACA_20211011 127436146.82620995 2329.32439307748 0.8304565408021847 1.5178166661092163e-05 7585040.985054014 138.6309945745708 50509 None 21947 WRX_20200229 11967832.834570864 1367.317317672904 0.06308411463152913 7.2401547063620096e-06 4810923.124570376 552.1489507422723 16611 None 24708 AST_20190523 10227722.905609356 1333.9792377640188 0.06135795859322641 8.00147272644636e-06 22625783.519709717 2950.5478001255187 31716 3592 410300 XVS_20210930 238337621.7942175 5736.678612256373 21.2391479901935 0.0005109669159143212 14608090.25901971 351.4383359678891 126462 None 23048 BEAM_20201129 21050502.458882026 1189.3341862822886 0.27795068248752597 1.569074953252766e-05 7384988.293197405 416.89410715661677 16207 1593 425445 COTI_20200506 10143330.43153885 1131.1795069032835 0.02044286551991545 2.2755571798894795e-06 1275059.5459286028 141.9307338150729 23597 947 249645 OST_20201201 7277218.003642204 370.1449506232911 0.010629667467324938 5.411214424201052e-07 2500958.1396745094 127.31556091787606 None 739 697106 NKN_20200501 10251277.389944097 1184.6451376165985 0.015755078664213353 1.8277980870058488e-06 1414477.9302980674 164.09820034623655 12269 997 325716 POLY_20190905 17842366.103619855 1689.310421768984 0.035254195322931024 3.3375861469629515e-06 5588656.006244615 529.0893947719964 35257 5059 289476 NULS_20191020 23297243.293288495 2930.776294776238 0.3166014339586659 3.982823057033233e-05 2860622.811364517 359.8642731373508 21221 5275 455576 GO_20200414 6024794.845930035 878.896921908959 0.006357315379805944 9.274444271844419e-07 906866.1044586895 132.29922766681256 10708 678 675555 SKL_20210117 75672450.60106555 2085.5876537443114 0.13409240505883244 3.6981487855510327e-06 20970561.67572186 578.3493640774668 10869 93 245973 XEM_20190719 628088456.7973406 58522.68136993852 0.0696050783567217 6.523687798156929e-06 62796120.05181518 5885.522893231018 217469 18434 192645 ONT_20190316 615574831.4887732 156870.8391235695 1.0032583435239708 0.0002556554213562287 27614007.288667142 7036.742544219361 69230 11205 260077 STMX_20210128 21524086.627810255 711.5195167832507 0.002592500814765367 8.525966650145989e-08 910222.7155139346 29.934526818574945 22211 163 183695 JOE_20211230 332449830.6837869 7168.0508712291075 2.2553977622505577 4.8424324227646734e-05 30829459.478019897 661.9212657358675 108713 None 4155 MTL_20190904 20542504.132025268 1933.080278958726 0.40661301584041754 3.8315390117403525e-05 20284537.64782227 1911.4242364354097 34232 None 253517 MFT_20200309 8335433.686819244 1035.2262609202203 0.0009143036167486601 1.1365472101957773e-07 1263088.7316001696 157.01129776067896 18436 2501 867921 LOOM_20190908 17622719.169008385 1683.208084383317 0.02924410028736875 2.7934523951835103e-06 1556251.908023607 148.65615892635842 20865 None 439430 APPC_20200305 4962526.4116723025 566.8765187725049 0.04592170729788492 5.242906062136242e-06 1304832.3766743809 148.97341541247187 24932 3236 683942 FIS_20210422 61472108.485021405 1134.518946564992 2.274422800052213 4.205038572311514e-05 4204345.732118839 77.73152808038661 None None 230666 QTUM_20200421 126903928.05611953 18532.204897219945 1.3149966563188653 0.00019206352038995123 381834640.5531731 55769.34733565677 None 15125 107639 OMG_20190414 269599426.1053727 53139.95078652058 1.923833941557333 0.00037914861155187554 78094449.11451572 15390.83042048244 289907 37484 None NEO_20211216 1910280850.7491617 39156.017516030166 27.176938030271582 0.0005561142216382565 153563644.06066743 3142.33068838031 431417 115592 78285 GXS_20210519 69495153.8347304 1630.3710228624764 1.0012779610197466 2.3404802182363997e-05 17042548.203166265 398.36837012998325 None 651 535663 TLM_20210723 212647665.4216246 6587.655434761044 0.17242201984624791 5.326018790003063e-06 332295071.6693756 10264.407046818515 53717 None 10364 AION_20190903 25235141.836978633 2444.5003684894527 0.07313957377550422 7.084949876659295e-06 1242755.086817416 120.38431514641489 67418 72578 168998 EGLD_20210729 1654889389.9356694 41366.74794603797 84.92227385276487 0.0021225936016732077 46817918.090938814 1170.1925640354436 296464 9772 35166 POE_20191127 5607504.193318682 782.3235971239998 0.002285947864687014 3.190820018717527e-07 223090.50449730578 31.1398898781648 None 10600 710511 COMP_20210616 33357.62668808993 0.8323401153688713 3.6184555173156916e-07 9.0243e-12 45.16120978365372 0.0011263045890721939 2486 None 3414055 BRD_20210408 35691960.372295976 633.6486868894555 0.446341449356287 7.943004334346762e-06 2392804.721415905 42.58188053308165 697 None None LUNA_20201208 240188750.12026668 12508.67239738319 0.5080229748505878 2.647539185051726e-05 14788159.073353836 770.6783464467799 15794 None 255583 AAVE_20201224 913869755.5505615 39098.76369520367 75.90177277255576 0.003254885834398479 281637352.06509924 12077.417880885707 86888 1801 22662 RLC_20190616 28435852.151590865 3225.030788175499 0.4059617522037404 4.6023616245979826e-05 3593983.3428564137 407.4475225022031 24929 3319 714682 STORM_20190213 12597401.348115621 3465.5890044165944 0.0027859318251061537 7.666924738904914e-07 893540.5643987202 245.90365767987058 26551 2570 3618383 TROY_20210724 12781394.69687123 382.37223900369213 0.006751882174288483 2.0185642001415775e-07 1351695.647754877 40.41072361178614 58384 None 506506 BAL_20210708 264231641.1744956 7776.59751095036 24.46450279714389 0.0007200406679495211 33032039.28796359 972.200899803974 90195 None 89492 NANO_20190411 216055591.64953864 40682.29756387548 1.6194513266559747 0.000305144497368045 15105553.151543424 2846.258080143702 98097 45089 397800 BEAM_20200113 28738583.713019155 3525.193306289175 0.5424931223194405 6.642694255564596e-05 24526380.365898833 3003.194681432556 12311 1418 354880 BLZ_20190228 8954960.217993964 2347.1619071619198 0.04371787942761128 1.1455959896802755e-05 448965.5968861068 117.64824690291206 34782 None 1029822 SYS_20210120 51651150.21378063 1426.3215437707863 0.08494286094012747 2.3567818044980174e-06 4252749.085261944 117.9946325366363 61059 4493 270004 REQ_20200806 27775882.40406277 2371.049455350805 0.035988405521950345 3.072100035219153e-06 411493.1428205399 35.12653812296243 39339 27817 395094 STEEM_20210718 141441144.81893593 4478.962016645819 0.36569389329602725 1.158028705076595e-05 1462788.4195311074 46.32155500336461 14088 3939 238289 ALICE_20220112 188674688.8367803 4403.729236170254 10.856369958184168 0.00025373750763408 85496416.20348775 1998.241368217653 None 3189 31007 TOMO_20210206 144774696.98203385 3819.8114694747424 1.815176174036654 4.756555547194676e-05 40952676.41932047 1073.1392521619441 38570 1781 172672 BAL_20210110 213538951.98795137 5277.040408959106 19.684961303506576 0.0004886628034894669 76666413.81732 1903.1800028370662 None None 83798 HBAR_20211221 5674499969.193513 120309.66632774507 0.30770973965673293 6.527134286259017e-06 139891385.2352773 2967.373921735622 187777 17619 31895 WAN_20210422 271318330.31841254 5007.405698010534 1.646724553909489 3.040630906827337e-05 12032900.68867427 222.18415123466934 116928 16285 185285 JST_20210220 94269970.80295269 1687.611505938254 0.06607354424466719 1.1825087822661545e-06 232601731.07445133 4162.839952210505 None None 122927 BTC_20210909 866885887154.3109 18810575.0 46085.02861578186 1.0 48151104381.084854 1042426.5622440684 3178910 3340184 8474 IRIS_20201124 54583498.94962196 2981.2621742867505 0.06320146392349531 3.4424919013343923e-06 6345249.464974867 345.61651802185554 10847 None 481390 POA_20201201 5595944.245858298 284.8198108480666 0.019854004851592208 1.01e-06 346823.5635371054 17.64338237 18097 None 178664 ONG_20200322 0.0 0.0 0.08079410012641525 1.3130691268960177e-05 8887084.200032707 1444.3326768823188 84368 16535 298289 AKRO_20210511 122910026.93528627 2201.3681149790737 0.045384038227561756 8.121172656299944e-07 46015591.20249032 823.4184872737749 38916 None 159597 NXS_20200905 12996170.690259747 1238.7595046140789 0.2175740794181314 2.0746982978774997e-05 93609.31307372793 8.926204951386358 23313 3525 382066 MATIC_20200314 29277816.05019387 5325.850144523783 0.010752261621527771 1.9425029082065486e-06 51804649.69117783 9359.024754592605 32629 1579 153243 UNFI_20201224 17572806.47173575 751.998911643682 7.144010613251017 0.00030640618810729017 21461431.243318632 920.4795029831945 12990 None 121184 USDC_20210626 25848144731.842224 812367.9104632229 1.004869069917349 3.1574264466070265e-05 2391686134.4524574 75149.82079729688 None None 36517 BEL_20210821 114148519.79126117 2323.2991652274145 2.3873069137973424 4.855973823237245e-05 15882125.31602819 323.0551729493856 33631 None 475057 FXS_20210430 71910980.35634552 1341.8491932459056 6.773965353387364 0.00012637524629480993 17948726.742509574 334.85184001253026 8943 None 111454 ADX_20210602 110666527.9008614 3017.746780359429 0.9160623649819046 2.4971974930717254e-05 4880133.538932739 133.0330521712767 None 3835 11246 DASH_20200113 613757790.9104655 75241.48984960974 66.21974823703734 0.008108444570474852 532957434.77346027 65259.321174314544 315421 33350 83621 CHR_20210725 196631221.62217954 5756.449140732158 0.3495463616141908 1.0216378507322314e-05 331262534.9571742 9681.987324339483 74832 None 109219 NULS_20200520 21432299.32902992 2196.345148727911 0.2249846431184857 2.304616187111574e-05 18145270.208610892 1858.699458889518 23740 5189 694372 POWR_20201201 43809278.758158505 2229.621085725211 0.10181230028344247 5.179329009684931e-06 1403538.765337324 71.39990966996332 81096 12596 345001 BAT_20210703 870505679.4187224 25754.71019526067 0.5816141097562428 1.7176347230716222e-05 65526108.56550177 1935.1304834581279 207619 75753 27779 QKC_20190922 29690418.525380906 2972.7143005791354 0.007806279790039086 7.816886788016927e-07 4314532.176367103 432.0394665965343 None 9237 326472 LTC_20200217 4827058061.936681 485207.7175977506 75.30735419428447 0.007569767957643736 6561956254.102113 659596.7515152994 448525 211543 132727 LINK_20190804 881639906.587299 81709.10089350928 2.420537174569688 0.00022428858593884625 180615143.47322872 16735.919429105226 29781 10132 107221 EOS_20210120 2672140053.2229905 73789.85579430324 2.8042569918932427 7.755291409691472e-05 2217584031.8789983 61328.22506074686 None 74195 74168 GRS_20190213 15437151.562823813 4248.463922561002 0.21453701996808566 5.9040898667417294e-05 824070.5613572402 226.78541221059285 36325 107016 15185409 QTUM_20190510 191171346.56325448 30930.237272425366 2.3442905363059117 0.0003796955903431815 228841822.89440808 37064.61707430771 177287 15277 401038 ATOM_20191216 865664716.0986155 121646.38740420261 4.5080346452736295 0.000633715503833346 179090618.34430623 25175.60541706944 29452 7528 109683 ONE_20190805 24910296.883990183 2274.7220469604586 0.00965041723042508 8.812426820381876e-07 2893062.6501346766 264.1844625195433 69384 None 151929 ROSE_20210610 109375249.26320454 2913.8819562677177 0.0726039470360932 1.9385011123391227e-06 8252404.620630924 220.33644436180464 21166 1594 216095 BQX_20201129 35447707.63176362 2002.4991787168467 0.16127797367073288 9.104393151093015e-06 261436.49407624692 14.7584978403377 16519 84 205091 AGLD_20211230 128181899.62235385 2763.7685222278096 1.6790181718279213 3.608002268122968e-05 13653624.930373337 293.399503015838 70084 None 105508 RIF_20211011 200660081.33438334 3667.1743805167143 0.25541452857326563 4.666496917359263e-06 2251642.6184621137 41.13815841542537 44807 3502 1460969 LINK_20210804 10667314342.91932 277645.4067004474 24.091098331702803 0.000627118621495255 1415000503.2041605 36834.06844995282 412274 63360 29120 BNB_20210519 78540136205.18047 1834997.0467649996 510.07736523997494 0.011923022672929483 3909605067.2186456 91386.74451221214 3803933 402312 119 XLM_20191030 1321227850.4514444 140408.6307679327 0.06599824339627736 7.01450010015362e-06 293548237.1401895 31199.226416621896 277451 104630 61021 AST_20210617 25603514.071381636 668.5183613636262 0.1486309012469627 3.880814417606879e-06 1223277.292420839 31.940276976924473 43764 3694 210640 KMD_20200207 90182026.2379801 9259.610632461414 0.7626980359249675 7.831287110886189e-05 4541795.39825172 466.345815608079 99533 8413 167947 LEND_20191216 12397151.835427241 1742.0933380277754 0.010943106808734449 1.5390716284452077e-06 965687.7404000008 135.81724360039266 41519 5781 410492 BAL_20210902 340716643.00043106 7004.262113682754 31.655938187246885 0.0006506172849804699 93723820.33313258 1926.2843249961297 96858 None None REQ_20200506 9005198.822347516 1004.2555975260385 0.011673253403585212 1.301022194089637e-06 1224299.910118638 136.45222117743847 39192 28132 689696 PERP_20211011 743799925.8660529 13594.077048066123 13.45257285652435 0.0002458886380645042 20764059.554161217 379.5293568684727 None None 106399 CHZ_20191118 50941675.3482692 5993.260685885331 0.01335284632158155 1.5691523524765584e-06 3730200.093200232 438.35240146462985 13721 None 268388 VIA_20210318 18222834.63880986 309.2323431427094 0.7863607065229915 1.3344145883625409e-05 6648882.432054196 112.82819245726286 37826 2146 1369846 AMB_20210610 5588031.279077281 149.01754515422382 0.03864716507428822 1.0306144291109722e-06 503533.70194157027 13.427869748456668 None 5623 592518 RENBTC_20201224 329078312.8406746 14079.200140749135 23129.34563273375 0.9918527158052368 15884236.26560006 681.1616346045898 30250 2076 102602 HARD_20210826 90309506.8946159 1842.4087022465767 1.194585033830839 2.437393867275828e-05 23606706.141166635 481.663834265063 35858 None None STEEM_20190401 144356402.79957277 35177.51624668777 0.47084131199124474 0.00011474054446118474 8562519.567345189 2086.622673277667 5003 3694 263510 ONE_20201129 38905006.9300115 2198.0974017030403 0.005375553234636681 3.034966005069221e-07 4196974.194186309 236.95559224369103 None 1540 160621 SNM_20200223 5788669.33111413 599.6754514953657 0.013228362778811632 1.3703959859632666e-06 68304.2738188738 7.076000577747188 30266 9718 None POWR_20190225 35757198.48450891 9493.111827064795 0.08523429465673868 2.2752724351750874e-05 2844815.699146798 759.4045060722884 84680 13278 761259 ENG_20200806 23711003.000554316 2024.0744934180682 0.2870831926314628 2.4497661786740987e-05 1223454.4087645728 104.40099973350692 472 3572 577779 NXS_20210418 104763177.53590374 1738.5575261123704 1.5414232863602444 2.5571871393538503e-05 1938423.1595450828 32.1580114824856 25164 3834 432623 POND_20210727 44475312.039562844 1188.3719906509539 0.057394281156435606 1.5335644208450243e-06 11972699.348427897 319.9082795754229 None 596 135580 COTI_20210523 132892861.11925852 3535.3879408275834 0.19820855506564938 5.2778453625313265e-06 30998636.08083096 825.4235425399343 111480 4895 65620 HIVE_20210527 192982608.55579838 4925.604901585202 0.520835570834457 1.32856606774458e-05 8081110.978094401 206.13587927516707 20004 167 111095 GAS_20190810 25164421.73422215 2122.0977599433154 1.8052865007198045 0.00015220531902317082 1528183.1004062968 128.8424835783225 324481 98217 192021 SRM_20210131 101834500.7492648 2976.838458367876 2.054030018194362 6.011314248468481e-05 94260602.11132653 2758.6261910580224 31816 None 83159 CTK_20210112 22026408.27267424 620.8574099753594 0.8708937169241079 2.449996921483872e-05 8082324.954762631 227.37184656168895 None None 220154 XMR_20210523 4152188727.514488 110563.39123509967 231.76623362586216 0.006171410416308516 535769464.0865756 14266.32861774635 416335 220959 33793 IRIS_20201106 39878301.23979617 2566.3880542079114 0.04605539667425307 2.965710491073194e-06 5774490.716996041 371.8449722869024 10778 None 401587 SNT_20210117 212314576.74760312 5853.879811821925 0.05471885756231606 1.5120101367755584e-06 43435577.12821213 1200.2266830911071 115547 5685 159141 MANA_20200316 33239995.46833717 6150.998504787473 0.025026687310823244 4.657336746678603e-06 22398421.33306755 4168.230075618984 48046 6789 47233 DASH_20200223 971129819.2750721 100591.17026367248 103.91876191413564 0.010764070534975466 724248477.262381 75018.80844714341 316878 34108 60141 RDN_20211021 32323075.009577844 487.6389396664909 0.6328794879866435 9.548245219392464e-06 282800.16378982 4.266602667973562 31834 4837 1118840 RDN_20210509 66562777.67307241 1134.888476010392 1.0129510476435926 1.7243922016977714e-05 1080758.9911214595 18.39824718617916 29105 4584 580559 ELF_20210620 88374989.55336271 2479.0021170486734 0.19133200340844522 5.373948780102913e-06 8328090.681171656 233.91137896114992 87438 33382 458355 SUN_20210105 0.0 0.0 0.00035666375589141826 1.14e-08 1426.9830929973734 0.045610486043113734 None None None TNT_20190712 22453720.030898478 1980.386371499143 0.052561618033062855 4.619072553587987e-06 1564967.1129380593 137.5280463035394 17594 2540 678101 IOST_20190511 162887178.86654362 25561.69547755468 0.012024845584247094 1.8874932202241214e-06 43933595.78032952 6896.085575025796 197689 49474 105349 ONG_20190510 0.0 0.0 0.36287948280291166 5.878192755380382e-05 3948841.623759551 639.6628446898142 79015 15237 249396 MOVR_20220115 437108975.52622885 10142.935870061769 157.42804155365863 0.0036501371345940667 31408438.39699148 728.2381601208733 None 7558 16048 CFX_20210508 771257059.0012004 13459.90234923532 0.9338374757440567 1.629580557706461e-05 33051577.51350149 576.7621188538798 33347 None 144382 ASR_20210506 11449017.782427944 199.92758748851864 9.318106116951167 0.00016258749086389836 2895902.1061107377 50.52930834984727 None None 174879 XRP_20190730 13256765885.515093 1396697.6426919915 0.3100015361284801 3.2590758438265396e-05 1072835089.9320006 112788.1806546195 936421 204127 39002 DGD_20200324 51022572.44603868 7874.035390931702 25.51129897866883 0.0039370196639756825 481910.1237006009 74.37056164269137 17613 4711 334920 NMR_20210218 227953305.80673075 4368.83645876777 42.68416873831478 0.0008186373894864238 20005134.12324461 383.67739747683623 24698 2366 2608504 DASH_20210523 1821757874.6653757 48464.76151506606 179.5548890418133 0.004777107399966184 1289828440.034657 34316.2417824308 394763 40802 51414 RLC_20191203 40092230.29431989 5485.853640714834 0.5729385700758991 7.841981535793608e-05 1297121.9171621935 177.54095561609 25828 3475 443445 BTG_20200605 163298910.1572872 16730.893265154093 9.335328506011729 0.0009550065237919595 40471664.08458698 4140.261717046934 74964 None 215523 ELF_20210212 107631785.95758797 2258.128893003489 0.23507135116855954 4.915592867366433e-06 29392157.35525554 614.6213833960807 82513 33306 465986 BAKE_20220115 191203710.0102236 4436.804269271322 0.9942841410993705 2.306034826222643e-05 18591087.984316822 431.1815363141675 None None 31382 POWR_20210509 217365769.32607833 3706.557551148448 0.5044857105711167 8.588087521114626e-06 15578221.724114396 265.1950863753233 90499 13683 209298 NULS_20190806 39362044.47856885 3332.7880280007143 0.5301419334931897 4.4882534240114754e-05 5763656.952227869 487.9590052462166 21319 5308 406668 TRB_20210210 71280898.47078587 1532.158555999919 41.96442491324562 0.0009009766980143878 89451892.56106927 1920.5331887050672 13818 None 357137 CRV_20210203 521496158.0616028 14643.35104263559 2.505479159903783 7.047594374259842e-05 266573862.32480294 7498.383872077971 64877 None 29016 GLM_20210203 127899890.297182 3591.412790471771 0.12757961729525885 3.588652452231209e-06 2854040.039705249 80.28051819242228 146149 20342 190516 PAXG_20210314 141877543.9500454 2309.444199807854 1747.0052564124364 0.02847449854185661 4467620.722047897 72.8179032481906 16324 None 52901 NANO_20190625 195120682.7617563 17672.53276141906 1.4654463581718953 0.00013268225807998426 4822527.131681 436.6340575451957 98435 46405 363666 LSK_20211202 530056126.67461735 9271.902867100809 3.67575546734644 6.428097650786903e-05 10674099.39485283 186.6668059228993 201771 33621 184325 NCASH_20200317 891066.3484759292 176.54380619714667 0.0003057314713619618 6.07186791654493e-08 949427.3622628641 188.55754411977765 57874 58327 679947 WIN_20190914 47363419.84261784 4575.137084899216 0.00022582560257190798 2.181394613141479e-08 6004462.453251042 580.009613664658 None 1424 68914 MKR_20210825 3306952770.9059334 68816.3237604718 3664.1816780004806 0.07630029948766845 94961684.77000234 1977.4142290233328 173555 29588 37059 LUN_20190702 5482148.290928831 517.1387668910833 2.0303613762500015 0.00019129662757555273 338646.2275428257 31.906576842874845 31314 2224 2096763 ZIL_20190902 67158732.38896523 6904.818256453028 0.007304126883776506 7.509305680051693e-07 8137664.799999277 836.6258346459074 66141 10614 166369 ADX_20190524 14420654.011632113 1833.1939126977654 0.15666897734751634 1.9916199039959177e-05 1093267.0694755 138.97917078509678 54475 3903 959810 MATIC_20210916 9360593251.994034 194233.60808857877 1.4107865955341503 2.9265553389642767e-05 791738350.7514877 16423.930485228724 666310 None 6469 AERGO_20210115 12897665.436020574 330.2361109623102 0.04897964555837103 1.2485481846385359e-06 5120633.078793206 130.53089833220764 None None 652713 ONE_20210527 1055686425.5000631 26944.88519402821 0.1117334407227523 2.8501367089572533e-06 164785761.9755977 4203.41436084055 171067 23043 22523 LSK_20191026 101963134.72806635 11805.101990802426 0.7494663339151922 8.671117917988336e-05 3310424.545476303 383.00695165950117 180589 31117 158256 BCPT_20200117 2468839.892267249 283.6990163784074 0.021364280817812015 2.451849638355458e-06 288685.56656978175 33.1307011000546 10711 3149 3813934 LRC_20210710 297962064.37653375 8769.87827502925 0.239263260026301 7.040267734542655e-06 20584053.580887366 605.6811574651641 82169 11071 263753 ONT_20190622 926341141.2982057 91530.76111956843 1.4232858590891966 0.00014061632913287765 180210834.6116068 17804.284270253684 80450 16244 232873 FRONT_20210902 59689720.18915563 1227.2935073989968 1.2950514235886 2.661689684069309e-05 38763487.187038735 796.6971201683336 71759 None 467707 VIBE_20200713 2917401.333555891 314.38127616 0.015507593685440062 1.67e-06 279587.86937589664 30.10858753 18825 None 1079841 ONE_20191108 16920877.730732057 1835.3323895942933 0.0060606988980367515 6.573770680313317e-07 4440133.476184573 481.6015405727355 70949 None 168226 STPT_20210603 59766164.701470375 1588.3014847562335 0.053206766360273085 1.414777561303386e-06 10952758.358291363 291.23582994621967 None None 509063 BCD_20200905 125498788.43254429 11964.105800886115 0.6668265110735824 6.358587526619971e-05 6487427.462777486 618.6148069946315 28136 None 3034323 SNGLS_20201018 5449738.323265343 480.4897871016093 0.006123025362945388 5.393972069610035e-07 64874.428435422335 5.714999273565874 8986 2118 1349251 CTXC_20191203 7232817.501040158 989.3041037505086 0.09824309355910821 1.344455145973242e-05 1223762.9569504312 167.47176267749984 17174 20059 599688 XLM_20210523 9017361134.427298 240111.92468379647 0.39023622919317924 1.0391107850298202e-05 1434559863.2493367 38199.083379707496 567749 189457 21848 CTSI_20210723 137072305.49264488 4234.340275101009 0.3603614415109005 1.1131361356229999e-05 6777273.931234093 209.34616318111873 47639 3924 130586 QLC_20200901 7736127.298240099 662.1707601553474 0.03206617341407859 2.750178600290185e-06 963979.9863385609 82.67644209684114 27582 5620 940522 ADA_20210707 45323751370.75257 1326953.0109277044 1.4136635303619376 4.139158798990781e-05 2379438477.4871144 69669.15039695782 523929 538192 6662 AR_20210602 671198267.09713 18292.744449197962 15.299706243636377 0.00041709128755265315 21204349.098367307 578.0600703253709 19879 None 89041 QLC_20200301 3425982.5185240177 399.4966644975722 0.014332087715996337 1.6729961396872855e-06 85053.56000061991 9.928370546384562 24524 5676 940522 ETH_20200730 35553131948.946304 3205519.5627583447 317.5390729161191 0.028629762115878383 10343143710.27412 932552.1462163968 469471 472791 15611 BAT_20211204 1916453184.9296203 35693.312071536355 1.285098417967879 2.3926480681272222e-05 325513241.0044215 6060.5368145315615 238143 84687 24150 AE_20190706 141604815.6314792 12883.940539613775 0.4443632645287922 4.0439157098010365e-05 38634851.380357526 3515.9540608859866 24779 6363 357340 XTZ_20210125 2311183914.3017516 71781.10835594757 3.0426407569512923 9.431064803293097e-05 389175466.4728623 12063.004926796031 81145 32495 158435 WAN_20181229 38239440.39253734 9939.421480529925 0.3599324499114335 9.346451374019818e-05 2285450.5458168914 593.4683688414526 109648 17384 496660 VIBE_20190615 8532467.801349716 981.9871453597905 0.04567773000464449 5.264152886493042e-06 2429624.677784253 280.0033136355994 20517 None 1515542 BRD_20200721 8178457.818286918 892.9675353745471 0.12502077794310046 1.3650433667437227e-05 1534648.4795008197 167.56108558045835 None None None ELF_20200725 52698495.77324461 5523.379054514479 0.11397117518815866 1.1949613202381032e-05 26474886.430216707 2775.8303965521054 81475 33365 495562 ETH_20200704 25132071680.625286 2771396.8449524445 225.1764054804081 0.024830948583806082 4553181088.144414 502094.3701950565 462896 468358 16696 GALA_20211002 763015751.5916281 15842.596405258962 0.10108018404379893 2.0987660868469247e-06 308724247.94546485 6410.158310500355 72914 None 9332 FTM_20200403 6812994.959997856 1003.9693096238748 0.0031183994693481953 4.5743743255686053e-07 1497114.4340966057 219.6114351956686 21391 2327 311485 STEEM_20210430 322968341.8397008 6026.17227821885 0.8454826972584868 1.577561553838491e-05 6098296.760209967 113.78634410851633 13566 3934 169708 MATIC_20200605 73657362.1303667 7536.088650512542 0.021457192560671107 2.1948615480928486e-06 34163772.43626729 3494.620754608735 40327 1833 144914 PAXG_20210508 189923700.5863809 3314.5297457745733 1862.1190770783858 0.03249214511579529 12795189.267919673 223.2634591390376 18466 None 44452 WAN_20200316 12179617.665489165 2254.4868790477253 0.11469919032327115 2.1238181570729462e-05 628029.3454570124 116.28853902952304 106008 16373 732459 REN_20190807 106594638.09760053 9288.115940799064 0.129565970425533 1.1291253889372194e-05 14192225.104439342 1236.8063649972635 9211 869 478249 NAS_20201101 12222607.157761022 885.7945289774849 0.2687271187571197 1.947513583233188e-05 1802796.6020486169 130.65190020771942 23446 4878 985620 FTT_20210805 4016852752.7923164 100989.63266263757 37.76039310256398 0.0009495906033157872 65142219.597800955 1638.1831471189064 None None 2262 XTZ_20200316 1103220289.7662761 204202.40771104253 1.5633440390042683 0.00028947531769240215 168078046.50569314 31122.033727357324 57131 22484 103142 SYS_20200807 60826430.90218166 5169.977604175056 0.10263309110569753 8.714603357662887e-06 4227117.7345351195 358.9257032576221 58129 4483 504186 LINK_20190904 674937327.4693108 63508.952789513685 1.8482504021130275 0.0001739478628117284 102156412.96480526 9614.438437251058 32229 10524 94033 GRS_20210511 111443323.49795857 1996.2372106366176 1.4388409515953462 2.5750883151338738e-05 10551768.429373179 188.84460826855204 41669 106851 7089967 LINK_20190916 587613800.0135245 57028.17416583855 1.613133532817962 0.00015655530904852785 132859997.0490609 12894.120340965876 32675 10601 93725 NXS_20191017 11053818.027348727 1380.5389386505508 0.1851316261196842 2.3121551123926092e-05 77361.72116933853 9.661898555870728 22037 3532 388787 LEND_20200105 18782669.567385454 2555.914571692786 0.016639541248708582 2.262935165821655e-06 3885066.088994668 528.3590781091738 41531 5782 450933 NANO_20210527 1094745105.3245647 27941.802098783326 8.223213523803086 0.00020990466492864246 100770298.58588853 2572.249364339466 128912 96815 54022 ZEN_20200127 83466941.80140081 9724.522657061236 10.06343423474289 0.0011710210716517132 1167996.0751033195 135.91265006040243 52401 4967 46190 IOTX_20210204 74283476.99830759 1982.799679306967 0.01221784387935081 3.257225855592904e-07 6154257.915148565 164.0699308417936 31859 2053 512659 AUDIO_20210201 32521956.270725597 983.8528297099311 0.2120350920545128 6.414476533301846e-06 2940809.3137801257 88.96523754336087 None 2482 56398 QLC_20210723 5192658.98342143 160.55248019414339 0.021425687356538034 6.618046096888701e-07 1471903.9006182617 45.464715798298265 35131 5681 940522 HBAR_20210711 1528181554.8149443 45319.01175450995 0.17056936129917047 5.060028307659119e-06 28510678.59791168 845.7840240309657 None 23049 40505 LTC_20200502 3036049606.0957937 343773.6363512497 46.97169153915602 0.005318631544611002 3124469001.8983207 353785.4151963599 133078 213360 149279 AMB_20200713 1953172.6029095636 210.4752912808983 0.013425871729993924 1.4462773067625006e-06 262473.81203412934 28.274508024409613 19049 5455 661727 VIA_20190318 11236146.620937008 2821.783169144296 0.4857347374592869 0.00012198471175850843 326641.24479375215 82.03085968902107 40896 2227 2390217 XEM_20200914 1079994573.9906006 104577.55170434009 0.11999939712340002 1.1619727968439977e-05 60022209.10092159 5812.043714689041 211009 17848 239986 TLM_20210711 124724974.39831138 3699.8175833152172 0.10102013514499295 2.9957176518043765e-06 43338112.566611595 1285.176946411147 50983 None 9614 SUPER_20210509 247550205.83047757 4221.462965614231 2.4476065738155426 4.1681963785059386e-05 18215561.54192842 310.20523667395605 104967 None 91414 STORJ_20210624 95118457.91445942 2823.441825865895 0.6615213315880522 1.963622032211563e-05 34035698.6932737 1010.2961861469568 103016 13568 44115 DIA_20201030 29741096.557005852 2209.247198425351 1.1596466602298252 8.623985176537644e-05 7211331.421328461 536.2876246141349 15889 171 85637 NANO_20200117 91593790.43542728 10523.162669896365 0.687765203398061 7.89857869228557e-05 2928699.95491587 336.3439578755144 97660 48608 243189 VITE_20200315 3357263.2396020945 649.1955511737464 0.006744784241166117 1.3011588658377701e-06 971195.5186662024 187.356572781335 None None 441540 ZEC_20201031 609070752.9457544 44840.0294923993 58.22937117776922 0.004299432756239922 334679852.320088 24711.472763901005 71721 16261 171304 AAVE_20210429 5846053515.642797 106800.84096560683 461.4780020920637 0.008427954749836012 1246387020.999718 22762.71754265095 183640 8751 14216 NBS_20210127 0.0 0.0 0.013666313739404412 4.1957579777540064e-07 4261817.20180663 130.84401445176184 None None 755646 BZRX_20210825 113350584.25433928 2358.778925756582 0.3910274966850646 8.142477018569873e-06 14668331.813006593 305.4428542767117 None None 206797 NBS_20210108 0.0 0.0 0.015015882778188347 3.8051099085290723e-07 7944317.461540278 201.3135127381072 None None 711556 GTO_20210421 47711068.31153298 844.4653803738597 0.07218777690611357 1.2808707834595673e-06 18470834.235782698 327.7390291365951 1829 None 321700 ONG_20190615 0.0 0.0 0.4314941832823604 4.9696742687947566e-05 5700365.927778801 656.5317209724425 80330 16235 249314 RLC_20210814 296524073.3361922 6216.479107385917 4.156740566207522 8.712089307413918e-05 27313034.925740875 572.452371610652 46367 7775 152995 WBTC_20210428 8659011508.78115 157179.58035104093 55137.237321736175 1.0009997917153663 265082185.80724746 4812.486545746891 None None 239911 ONE_20190811 28819499.97941885 2542.79744366347 0.011003170299242252 9.716111657885238e-07 9963045.072252618 879.7651562406169 69527 None 151929 C98_20210814 220332568.31165895 4622.734731575207 1.1882638202311087 2.4910809069204306e-05 25682893.4967788 538.4171808904632 155805 None 61225 POWR_20200417 25042742.995229755 3527.1268618798927 0.05818646682828993 8.208149743257829e-06 731842.9434953643 103.2383782037084 82169 12781 208594 BQX_20201226 32135908.298718702 1301.266152943012 0.14448791839576572 5.859643332294442e-06 421864.75230790605 17.10853758872832 17516 96 178993 ARK_20190916 31462313.742853202 3053.0551550443997 0.2205475636783613 2.1401631205783548e-05 1311494.2730370415 127.26559428681558 63159 21785 89396 OST_20210217 13605136.725883061 276.4898910304434 0.019663693862469026 3.998859209863848e-07 1476369.5466711463 30.02382970443139 None 739 607091 SXP_20200907 120575263.23345977 11709.193301246258 1.8230609997664688 0.00017723175258137916 139203378.13927776 13532.876122100679 None None 88692 GRS_20190321 30653026.766579088 7585.0165455392 0.4247713440439607 0.00010510863077825622 5139203.286966531 1271.6832911597296 38419 107060 7284589 SAND_20201226 24024722.6932377 972.8252262282374 0.038923406375721274 1.5778556049157668e-06 4756171.155803225 192.80304615897725 61968 None 75408 ADX_20200807 20220276.78247614 1718.6340964791516 0.21957146889216386 1.8648928997793336e-05 2685834.7874824093 228.11680636049323 52287 3747 13823 BNT_20210201 211339083.72145146 6394.861647566542 1.878578772678681 5.666567224430687e-05 73974611.57905422 2231.378931297857 91436 5366 79308 OMG_20190821 171546244.0118419 15942.086809962406 1.2213508662208163 0.00011360711333793577 61857274.95872011 5753.814601004782 288741 41166 None STPT_20210127 21395749.253773894 656.5693893694669 0.023345800595021948 7.167501856128649e-07 11017064.829106804 338.23998577521655 18749 None 1582459 KMD_20210212 135625196.8846146 2844.281018739094 1.0971482970744568 2.29425419845196e-05 38441299.80209475 803.8486109860969 97102 8544 251504 MDA_20200718 8599503.942381015 939.5193912497011 0.43812419686679116 4.786411347865043e-05 145749.22402317481 15.922785018403214 None 375 1312356 QLC_20190914 3429028.061275908 331.23185573240806 0.014287616921982953 1.3801327322183673e-06 42729.43294410141 4.127510511885948 24751 5740 940522 GTO_20190324 21044885.540358715 5254.827323921832 0.03434892851988159 8.576795905473718e-06 4544796.751179288 1134.8183435813078 16612 None 763541 ONG_20191022 0.0 0.0 0.13413111096642194 1.6333760553461495e-05 6892135.150930595 839.2869070142658 81274 16273 327053 DUSK_20210324 132786460.64055905 2434.3560225828114 0.37288529053277375 6.8404324041838875e-06 19029460.016494635 349.08787832570897 24253 13490 374805 NXS_20200901 15601464.66425401 1338.0709228615574 0.2612965507479868 2.241028802898092e-05 71045.34236281908 6.093255272259283 23304 3524 382066 LINK_20200117 901491013.3579563 103571.83094964722 2.4780620952535406 0.000284392238797206 184730076.65297243 21200.356590395753 39995 12218 122802 CDT_20190520 6014854.286600753 735.0081499741261 0.00882412712212514 1.0798390696490436e-06 408363.27236162795 49.97283130703813 19826 290 386642 FET_20211028 496755513.3850779 8487.309226218567 0.7212800497486358 1.2325777440779681e-05 72857732.99781965 1245.0478868559242 83023 6202 78746 FLOW_20210826 1313067144.2284124 26788.57383296843 22.079622256888182 0.00045050569324583495 87460769.3538408 1784.5221295520132 82630 None 63325 AUTO_20210805 29099264.35336717 731.6275184619483 832.1088857161393 0.02092570320084838 5396279.825696822 135.70453574002417 72937 None 12074 STEEM_20200907 64268891.274889596 6241.79796959446 0.1760674512220771 1.7135167030299745e-05 3040212.317807222 295.8783438484247 11717 3860 161191 ADA_20200107 1150811966.6402338 148320.76594549176 0.03699861537001607 4.771847923178466e-06 77690490.90639412 10020.029235548964 155204 76053 69067 PERL_20190903 21949587.157558743 2126.353888652634 0.08399745371291294 8.137206001064353e-06 9167227.271613596 888.0699767715382 11281 355 317628 EOS_20190224 4374611837.107737 1063147.6685398207 4.235992432081623 0.0010294594459602088 2204564905.5294766 535768.229669482 654 62937 78671 COS_20200518 13420170.720793389 1387.8097211995796 0.006756255650886003 6.994307408478015e-07 8886196.980894398 919.9295673264531 10876 None 168356 FUN_20190513 31759922.01967774 4564.166775153393 0.005283708911544545 7.593132202500983e-07 1802804.7007063497 259.07813350285323 None 17706 471824 THETA_20190708 119338631.2412368 10435.37795165008 0.11956020625173971 1.0450187428818698e-05 3926237.1680946685 343.17366607910657 None 4017 256073 FUN_20190703 27781406.289585922 2571.1368581127717 0.004620028880731379 4.2718091415145407e-07 1472097.592872843 136.11429964568208 None 17583 429165 BLZ_20200721 17710411.611265212 1933.3399164707832 0.07559202425866265 8.251930055264245e-06 17420194.421910424 1901.6586383084684 36708 None 455945 POWR_20190618 50120111.00103206 5376.771641463812 0.11952006850450521 1.2827706266155752e-05 7284092.024248544 781.778274325421 84740 13203 724138 ETC_20200324 570699644.5360498 88581.856570034 4.90629878661275 0.0007615372807158094 1730847650.6235566 268655.67518753064 231015 25317 345588 BTCST_20210823 177989789.1109956 3607.8487172599753 24.41110264410713 0.0004954177699504084 5916835.462521068 120.0808284960164 None None 1726916 MKR_20201015 525212961.1865787 46012.2347442588 577.1352925088067 0.050560257278320815 33715787.681003444 2953.6902726612607 68095 17088 25320 BCPT_20200425 1846584.9361507385 246.26671008215283 0.015963913840872916 2.1296539000669166e-06 62894.0507829185 8.3903334655886 10598 3164 1977022 CHZ_20200914 65498947.777617164 6345.69903026542 0.012304393712304358 1.191453550441879e-06 4972090.345763799 481.4552292531139 32713 None 244050 POLY_20210206 100670418.82624681 2656.6738162724273 0.13056989712608155 3.42066036546111e-06 9140524.801045325 239.46278272899463 36420 5056 279172 BRD_20210731 10072405.527612573 241.42157554595056 0.11940694928005245 2.862018784618826e-06 1414123.4275825499 33.89457513078706 799 None None RARE_20211125 279011385.1026518 4877.187034112441 1.922234196493314 3.3612839582671035e-05 45407098.763812706 794.0039405431759 None 3010 8316 OG_20210603 7810410.226856988 207.3088268150765 6.087712071706229 0.00016184425561110495 2241573.479920733 59.59312578882949 667001 None 239206 MANA_20191102 42030092.04940523 4553.095364804334 0.03172221943625725 3.4356457764848288e-06 6785011.464985214 734.8444212712983 45903 6408 84701 VIA_20210325 22537494.116766106 430.0893038675576 0.9725464286297443 1.8559375514471128e-05 2141029.339984577 40.857861731351754 37936 2162 1369846 GVT_20210131 10925784.282858957 319.3510749420354 2.4697126925285224 7.226932173081148e-05 845885.8439250118 24.752513272937986 None 5450 282943 QLC_20210430 18035624.769550387 336.5423253414391 0.07528541104594472 1.4042906354024498e-06 1556230.596511874 29.028201119532984 33113 5640 940522 WTC_20191213 13121083.238056663 1820.498627661578 0.4513342257710952 6.270027513966617e-05 3289482.7118074903 456.98167637326515 55296 19639 1009896 TRB_20210429 131286593.87925155 2398.45882291285 81.94167693166597 0.0014964976492378697 138638160.28433093 2531.943312963709 18722 None 295366 FIO_20210620 61538588.89785877 1729.6901542607934 0.18499243541319346 5.195889108497766e-06 5808548.284308098 163.14490211023724 None 474 103132 NULS_20200430 20678240.470793784 2368.5014083697843 0.2184110164551913 2.4909608372143947e-05 7957689.596186029 907.5683754658285 23800 5192 583809 QTUM_20200330 110920716.20237473 18758.095262104074 1.1500302374153522 0.00019436271252822263 297060194.43755966 50205.136609979854 None 15145 109238 LUN_20200323 1392574.2882385275 238.6889207876074 0.5090708300494997 8.730585488098205e-05 2001220.9473906667 343.21020829396605 None 2148 2364106 MBL_20201229 5409150.025626334 199.33161760993173 0.0015149216817595874 5.57917847272479e-08 2295960.8060819516 84.55602198942661 None None 994623 BNT_20200502 14680034.286161363 1656.6789762410176 0.20970151582069926 2.374462278129731e-05 6176427.801769251 699.3604586736706 735 5015 133106 ASR_20210105 0.0 0.0 5.94949735496713 0.00019016305617348324 2511243.5030310685 80.26656889484913 1924951 None 243323 QLC_20210418 26555097.935206823 440.83480917332326 0.10951946992110369 1.8219786621029596e-06 2079515.0860584613 34.59505526322524 32804 5636 940522 KNC_20200626 207435165.04571307 22417.787302670724 1.1548109917201406 0.00012480192151346803 67999057.04982021 7348.7462812253125 111407 8110 105194 AUDIO_20210825 1094361706.4232736 22787.928279301184 2.733194165989013 5.6914081164422694e-05 76025140.60890616 1583.0931724480079 67896 6772 28500 RLC_20190704 24456137.9405837 2037.972254470834 0.3495496966459277 2.9128580524603266e-05 982271.8214847383 81.85440904029534 24961 3318 789445 QLC_20210107 4057954.0386482086 110.71228994096201 0.016716122974321686 4.5293640012870496e-07 4442158.71283047 120.36375774936168 27315 5593 940522 CFX_20211111 356181893.40863806 5484.4504355630415 0.31179862472348896 4.8001290691888234e-06 21344544.601969153 328.59852766628023 46463 2116 167170 MITH_20200701 3668527.812590592 400.9519389624105 0.005918058598403733 6.470510608936459e-07 5122373.651381842 560.0548305341681 98 2093 759116 PIVX_20210707 38311983.16874744 1121.5030638730316 0.5945749806541176 1.7406922138910125e-05 530748.7149891432 15.53832881931682 67679 9836 316227 STPT_20210115 17163994.10196377 439.47260757613464 0.01874123656207896 4.786352762343357e-07 2730072.454972768 69.72373350591168 17932 None 1561164 UMA_20201129 447753551.594778 25299.384468045962 8.024465151151578 0.0004529935731489588 11016589.515340816 621.9036601777033 14801 None 96214 DOGE_20200223 323020192.18934584 33458.94493835849 0.0026169490257745417 2.710677396555932e-07 143129454.88647804 14825.576437329255 139195 149014 115261 QKC_20190531 38140029.09961226 4592.4156430131425 0.024130870268123137 2.9082385243106992e-06 17749250.453888062 2139.129396249963 52222 9189 156939 SAND_20210108 26962813.689223316 687.9151215985174 0.04340615882340155 1.0999366968289488e-06 8993561.823553314 227.90196029953498 63102 None 60991 ROSE_20211225 1058663011.0119581 20828.021476186892 0.30465801003092124 5.9912192798035485e-06 108818650.25246505 2139.961445059651 None 6045 45093 SC_20190305 92138873.20896044 24802.371783944433 0.002321384102881578 6.25202491907989e-07 31121541.902278505 8381.751871726332 109184 31135 214151 SUPER_20211221 345506971.28797895 7325.372923647112 1.2013030570868604 2.5489337478274526e-05 34651883.25194088 735.2462322108504 None None None C98_20211111 706734734.0055221 10899.890472350378 3.8393813270835007 5.9107143054842056e-05 123645390.72446609 1903.5165238912234 243342 None 30336 MDA_20190329 19974826.491201393 4962.055447418409 1.121398760104995 0.00027856566129192024 4691848.010065428 1165.497760567066 None 359 1647124 FUEL_20190512 4189411.4033144517 575.1672610161895 0.007895640107587244 1.0840686263986347e-06 3869734.0658334335 531.3131343518118 1 1514 None ANT_20210105 112683143.70684992 3601.6775381268767 3.256908826040597 0.00010410017839930498 27969795.906443033 893.9951651003253 76570 2690 131856 NAS_20191118 26921844.259435184 3164.990949957801 0.590286645791685 6.93925876939364e-05 14957032.211748274 1758.3104357760722 23972 5055 1061187 QTUM_20200418 133431341.63471562 18953.507296343443 1.3865200801817787 0.00019695884991082204 335327869.7641343 47634.212093870956 None 15130 107639 FIL_20210418 12199694683.653812 202374.8899526979 180.8786084730564 0.0030056085935401267 1692363116.1589756 28121.518449626175 76663 None 34217 FET_20211002 543230678.3846189 11279.716491794066 0.7900193259636541 1.6401571039410657e-05 55032937.38019097 1142.5374067243602 80272 5537 86212 PAXG_20210620 264599957.311055 7437.218648909954 1771.0481342927321 0.04974349189491564 6304032.852567946 177.06159478958799 22348 None 40331 WABI_20190920 8100705.616285054 790.3132643943659 0.13943489348665578 1.3603413216298996e-05 354779.37329140614 34.6126446172849 36303 7931 1396317 LRC_20190401 59801125.59944652 14573.331073534315 0.07563870219828575 1.8432592152682857e-05 7812716.154076113 1903.9011284890307 29074 2465 750583 OCEAN_20210106 191758274.17761645 5643.757449660001 0.45668016065055267 1.33975620105885e-05 86746508.58799566 2544.870191764292 35672 1352 63800 GAS_20201106 16624113.014086708 1069.8531212402386 1.1964417774772085 7.679034851049244e-05 1970461.8893457446 126.46871586894711 None 100988 108774 NANO_20210805 602078164.6838201 15101.311064512467 4.509911588575423 0.00011339033811864784 51064535.952949606 1283.8888044379164 134190 107855 67455 ETC_20191026 543963488.5014405 62826.48199446302 4.74508244701605 0.0005480721861496973 801130163.8385937 92533.0940375119 229703 24971 405893 NEBL_20210310 47354356.285738535 864.8663512548445 2.6928252949975127 4.9180987138719534e-05 2840231.231923901 51.87316679909899 39578 5925 614575 SC_20190801 114263229.29820922 11367.163634468056 0.0027481184658439493 2.7307480999101624e-07 7893719.830902774 784.3825037885011 109578 30770 197380 AST_20200417 2395946.958663518 337.43278931092715 0.013895558894408253 1.95883031703129e-06 28229.018021830918 3.9793905910065126 31684 3462 322316 BCH_20200526 4239413691.79711 477024.1904477049 230.18959049500975 0.025901223857401713 2680668009.3105187 301632.1548129796 3151 297991 140343 XMR_20210120 2816807529.352361 77790.49526270418 157.28820118988938 0.004364039149656624 560060066.2081883 15539.144300729182 337034 190444 53273 BQX_20210428 994157918.2012383 18041.96440082932 4.470802740643576 8.116606543179972e-05 13573384.763789147 246.42067650475516 67873 4556 20896 TFUEL_20200610 0.0 0.0 0.007362669183365365 7.539643375005365e-07 9261250.462540591 948.3860262514592 71250 4232 132852 LTC_20200605 3079380986.336426 315021.4723882917 47.45756949786966 0.004854921650008285 2516600449.1354527 257448.87768592394 132531 213820 144329 GAS_20190818 22650025.67502162 2215.925237389042 1.6253919440896127 0.00015901734864384758 811737.3360450431 79.4148878628785 324343 98209 189804 STMX_20210513 356767536.27305645 6917.023097267168 0.04133868152726888 8.025825637419899e-07 62832856.51264214 1219.8878436382627 62675 4287 55160 QSP_20190929 0.0 0.0 0.010247968339631834 1.2510215849203486e-06 103586.1331512941 12.645285794799573 56251 8510 561299 POLY_20211221 442662750.5874128 9382.686505003327 0.49039359855928594 1.0402221504229914e-05 14810069.741986522 314.1509726102435 63815 8476 142188 POE_20190916 7272076.239216905 705.8604472696474 0.0028842674806090775 2.7988533579473985e-07 77909.94657537148 7.560273693615023 None 10718 709572 MTL_20190122 9217867.655244987 2610.1171271093745 0.22706394206886082 6.429938037032298e-05 1332233.6872550312 377.2584929974959 32317 None 571829 NAV_20200318 3894368.09577037 717.4715595006708 0.05664258190967942 1.05310150849922e-05 74608.33325405799 13.871215902860257 49633 13974 1082339 KNC_20210711 138873558.89176935 4118.248021979491 1.5029292554551263 4.458997475734881e-05 28609318.479277134 848.8016213574924 175048 11223 114765 AION_20210718 57572422.59098851 1821.5516592031952 0.11672957004577882 3.692869336618936e-06 1332168.9384814857 42.1446410038617 73617 73384 347500 MFT_20190130 15675834.476375626 4592.4382197483565 0.0029976828406364734 8.781353195394936e-07 3905319.532497285 1144.0166281384168 15634 1819 636070 AMB_20201224 1525226.006982102 65.157022548065 0.01051030138766378 4.5074300664609103e-07 584953.3002308849 25.086208241667705 20142 5486 636877 TOMO_20211204 265326750.50388768 4941.3832497817375 3.1133098995787103 5.794787176659597e-05 22028152.62090408 410.0088344895852 60954 2371 107758 DOCK_20191216 4746924.372709744 667.0519704335071 0.008337917891576164 1.1722194853294205e-06 1445164.4798504037 203.1742198490712 43712 15098 302140 YFI_20200905 827540682.0411286 78891.47296269875 27494.139663664515 2.6221724733322134 417609204.013613 39828.246046987646 31509 None 26862 DCR_20201015 141673166.53048328 12411.641016642143 11.709993904534313 0.0010258605083171013 3457268.9252620055 302.8759609930168 40740 9926 232516 NPXS_20190524 176933099.69664654 22460.097930955777 0.0008297322641129156 1.055081424286607e-07 17427477.496672444 2216.0651783946623 60744 4400 188211 RLC_20191012 18313357.364276957 2215.050241910985 0.2625025710340324 3.1754632908855826e-05 429908.3060107835 52.005511367241475 24874 3304 1064127 BNB_20210821 70037579538.80284 1425320.5291352565 453.52976111650503 0.009220948108192236 2261975810.68877 45989.39994808679 4796335 597715 153 ATOM_20200309 579215929.6679977 71698.48162341671 3.0841452409506935 0.00038338212878410673 168223696.63828397 20911.453219770126 31565 8233 85359 DODO_20210301 354917098.24019164 7823.758594324642 3.5861774077241364 7.945218947391659e-05 54597439.041048214 1209.6127933148985 None 650 41007 OAX_20190723 4985729.5396541925 481.38259044377577 0.10667122974500236 1.0309981378533746e-05 1239964.4279560747 119.84496844023982 12307 None None LIT_20211216 83280862.33896914 1707.0510355667936 3.0138593244499496 6.167177591812526e-05 10878319.717449022 222.60006979678158 66947 None 128209 BLZ_20201115 17920792.320160266 1113.381496311039 0.07158333415344993 4.4500226071044325e-06 5939862.908786083 369.25528183050216 42217 None 234892 POLY_20200905 33018858.351484586 3147.267421246066 0.04770652527087581 4.5498691318914e-06 1298063.0276729579 123.79893247987663 35305 5013 332853 IOST_20200316 33149160.406152274 6136.017503971226 0.0027384553591275154 5.096123436076124e-07 37510151.223479584 6980.444654815812 191234 52254 127057 PIVX_20210823 56561420.54718466 1146.4115554060634 0.8472318547556928 1.719291726720304e-05 480123.20337935124 9.743163535967389 None 9875 371211 SAND_20210731 462641761.96671194 11082.362844660207 0.6583226047194415 1.576011632077486e-05 226157107.86914968 5414.157589662008 148469 None 29104 ONG_20190324 0.0 0.0 0.6321647780722249 0.00015784912408596 2505327.211134514 625.5706099796693 71365 11292 260077 SKY_20190513 16557935.1150654 2381.9362050074324 1.1041957580355888 0.0001587018985687003 374465.5530505827 53.82052392904631 None 3711 424998 NULS_20200914 29192730.916296337 2828.09268384822 0.29940746686681846 2.899208996137299e-05 8790232.697395146 851.1718822885697 30508 5163 285430 WING_20210110 12468801.955872022 308.1328776782492 14.755416386087665 0.00036602675469403506 3243657.045498025 80.46301308199698 None None 329521 ADA_20200207 1859115447.0337157 190886.4180004932 0.059792837110445723 6.142804969546054e-06 159304871.65236646 16366.153615548987 155523 76426 54475 CELR_20190821 27086567.999079492 2517.2012416399302 0.00865861604592386 8.054035917808853e-07 27867826.50170934 2592.1980418763815 18151 None 463728 FET_20210727 218312748.68081564 5827.911080807344 0.3169940774368879 8.46708594740848e-06 66324979.31668584 1771.5766328355983 68988 3045 163095 OAX_20190207 2637743.0831589694 774.3175598625157 0.11227838386257474 3.295421656702366e-05 986571.6660109108 289.5632731978597 14381 None None AION_20200129 31052889.676583424 3333.0112269537617 0.08092615874115777 8.674440025034324e-06 9400063.264789965 1007.5887239718791 1136 72533 266785 ONT_20200321 239899958.41596907 38805.78389008725 0.3770067235052027 6.080271034741449e-05 134681412.850298 21721.0845965303 84370 16531 298289 GTO_20191102 9464272.926405154 1024.5794899230532 0.014281824670788774 1.5461160883834825e-06 2238671.746502111 242.35323452443006 17225 None 1042582 DCR_20190905 255816438.09404787 24225.76172633597 24.765875399613638 0.0023445593569229864 10786162.609057361 1021.1146612953082 40580 9595 193164 STEEM_20190205 86052856.43122701 24839.949996685642 0.2894408335384347 8.354976383427432e-05 1835801.5417277596 529.9210321600448 3790 3658 256467 ELF_20210430 204443320.26615518 3814.8847784335244 0.45446021432942374 8.476340113104789e-06 42596316.7183676 794.4828979213873 87710 33371 202444 LUN_20200117 2495742.823987797 286.7904826540135 0.9220510205155689 0.00010587643674569536 3966248.260473897 455.43275125164104 30098 2161 2593780 SNT_20211204 365945976.9465181 6824.325485640525 0.09430421486335362 1.758627495416786e-06 23223573.77956566 433.0836691632904 143693 6243 183737 KLAY_20211216 3260402436.3503327 66830.16331215594 1.2777511597082813 2.6146069854020565e-05 23321993.07342719 477.2278666309544 None 1075 27552 PIVX_20200806 29298933.08306346 2502.818386461477 0.4593872098032892 3.920087550845438e-05 547839.9970526694 46.74881464856129 64067 8595 329425 DCR_20210428 2736857889.7936645 49686.82347379806 212.68951178569165 0.003861313466889827 27131892.93283084 492.5712729516949 44333 10972 225224 SNGLS_20191012 6148557.415458939 743.7838908694315 0.01065403697515836 1.288806550773437e-06 262507.45641292504 31.755223887499362 17 2163 None FOR_20210724 14338768.221117351 428.9631170380614 0.02547011983073705 7.617262715375106e-07 18645984.625384398 557.6391647242907 29335 None 171123 APPC_20190706 8201701.295409739 745.5188418025821 0.0756237635601495 6.874054368898886e-06 397070.5134238757 36.09294445378063 25470 3365 1256272 RCN_20190716 9413452.028280366 859.5173301385187 0.01849784595814391 1.6913260605236337e-06 404448.89895240753 36.98024972724637 None 1125 2034448 NBS_20210115 0.0 0.0 0.015168005156343582 3.8665010917589355e-07 3800602.2985822717 96.88177703884877 None None 711556 DNT_20211111 133493768.28434545 2059.4388379642915 0.17837656362156568 2.746770199637849e-06 28168527.93423538 433.7591863333201 72261 10321 549306 STORM_20190629 16843892.815886937 1359.7468456916752 0.0028504326393669695 2.3031032367171408e-07 672691.029998525 54.352341714844286 26815 2576 4259920 SYS_20200907 39931177.4144464 3875.0894443709035 0.06702123682120917 6.514967188674019e-06 806931.0263394436 78.43975147980088 58689 4496 424365 MIR_20211221 296609310.73531246 6213.759998811874 2.451766642263062 5.202176669238304e-05 22259949.31621624 472.31325769388826 None None 16589 XTZ_20191026 677084667.7844498 78391.60281724684 0.8350179800723329 9.661102115531237e-05 20071623.774058733 2322.2734304344945 44973 16996 211690 DUSK_20201130 14900365.278267572 821.4209324463595 0.04959078379209402 2.729306097492084e-06 299722.263996127 16.495682062786354 18127 13345 1043988 GTO_20200418 5927318.373234085 837.2716781535149 0.008971837794289178 1.2711919667142396e-06 5400246.315337322 765.1442092170433 16815 None 999939 NCASH_20190908 3186052.218434732 304.3187154071967 0.0010980964111651204 1.0488569123427504e-07 258418.3126702409 24.68306341449062 59656 58873 754232 ZEC_20190608 562014836.9365778 69854.84782303541 83.76939500483088 0.010420020163791685 399301629.1951173 49668.86805626385 29 15151 179963 RVN_20210722 497896707.7252761 15471.761919411398 0.05386900521670398 1.6700704770798825e-06 37112663.29285846 1150.583030851846 65197 45581 64221 EPS_20210704 88626811.92153975 2557.9210214981963 0.39927139355666685 1.1495002801626238e-05 3529670.542533413 101.61903264297035 17847 None 20273 XTZ_20210819 2847416099.0509253 63170.35939867201 3.3774926101511373 7.498134041432048e-05 141409127.6888038 3139.324689877512 127844 51864 67956 GLM_20210506 489133872.070158 8544.168523755525 0.49571924297581127 8.647095643754324e-06 7111967.451217569 124.05784854502166 157902 20995 134242 CND_20210111 18656491.43601189 483.95521224080994 0.009270746666725418 2.4115178334113576e-07 259551.9265443864 6.751496099063893 33958 5904 513668 ASR_20210729 11130474.115815304 278.22494969692804 6.390800907257829 0.00015968487695680996 2003099.73166803 50.05080565416585 1992455 None 109290 ROSE_20201208 77831700.48822054 4053.3590480441567 0.05186496682819228 2.701325468908116e-06 22575633.524921753 1175.8251773229292 6300 543 251921 BNT_20190804 32082804.05548117 2972.8143447690845 0.5190070600338303 4.807842372881017e-05 3355880.0481938617 310.87327199288467 783 5135 154213 NEAR_20210207 747333301.3128874 19049.981771677707 2.6898562528900065 6.847834005494291e-05 74128503.18233928 1887.1628709639162 37058 None None AVA_20210204 70723264.51487021 1887.6900391574816 1.8376970695052064 4.899223192445737e-05 11527884.033064043 307.32854588389085 45244 9230 69143 ENG_20190312 30456314.69304965 7877.455035007696 0.39600742568800457 0.00010241588074542268 2652730.928299714 686.0522222037399 61201 3231 328243 POLY_20210112 63794159.55125651 1800.9242647536837 0.0854370613713995 2.403514151874381e-06 3032670.68257428 85.31504696604503 35788 5029 310362 TVK_20210422 87411780.6325375 1613.25719459844 0.3984539020345377 7.357340039630934e-06 14625185.334231516 270.04996336373625 44607 None 68295 NXS_20190826 13636116.491051838 1349.7786153305517 0.22812094405397262 2.2605746910101305e-05 355522.2299835486 35.23063428153023 22186 3541 857246 ZIL_20190531 175558080.05668628 21126.210477420926 0.01926008735681244 2.3186364870419684e-06 52994399.66164867 6379.7607138537405 62398 10369 194531 XZC_20201115 36797805.378731824 2286.170995210129 3.283002334525771 0.00020410137536032937 4516939.46327198 280.81416427208524 63 4202 276944 MATIC_20210902 9477410254.067276 194831.2973320411 1.4572158622987024 2.9951269137164095e-05 1560696928.9178395 32078.194431554875 622498 None 5886 AION_20211007 80606439.86197872 1451.2164558538202 0.16215252657893536 2.922994466254751e-06 6654662.335177984 119.95829846690803 665 73658 599418 KNC_20210401 551581911.1487243 9377.565610201273 2.7133287147192573 4.6175179369328104e-05 89266720.21920098 1519.132862698399 151031 10340 92536 PPT_20210513 138381342.89085153 2684.152690954114 3.7401025468882403 7.456004270249313e-05 8240242.594294596 164.27165619313882 None None 645855 REQ_20211002 148785698.3197828 3089.8157523695404 0.19262689738314917 3.999122094484483e-06 7123319.952408246 147.88706351374785 46618 28816 250453 OXT_20211028 231974620.24315754 3963.399059674012 0.39299511540979276 6.710510783735794e-06 32561015.263811164 555.989210780267 74196 4590 256049 ETC_20200410 685684332.2468344 94039.52163443743 5.894820926403275 0.0008084567693462775 1857638174.2383754 254769.42823357487 230796 25370 329004 YFI_20210805 1184988768.9377446 29723.38274516977 33107.13510317929 0.8324416060999615 175119345.8870398 4403.178622827534 None 6930 22152 EPS_20211002 203748769.29994652 4230.4624948488245 0.515755559527552 1.070882772601751e-05 22478023.855354786 466.7197098346494 23003 None 45967 CDT_20200927 4738443.524694639 441.2971881501718 0.007016513885880058 6.536138484674407e-07 64615.34502502162 6.0191549562591184 65 292 270992 CVC_20200127 14448869.41012884 1683.6850911329877 0.021605913025827983 2.514149626791416e-06 3900946.615397077 453.92960091571746 86886 8104 125912 WRX_20200719 25970241.273432206 2832.2529418326767 0.13392005462530476 1.4609250403659769e-05 3548102.4616780616 387.060156639915 31220 None 19543 ICX_20200605 182538553.07923022 18702.10455085756 0.3341394948538414 3.4182588327350113e-05 30179561.888644677 3087.3798393409697 112683 27733 121711 ADA_20191127 1142672382.6140885 159380.3320897518 0.03667455706244554 5.124413171519509e-06 83659522.7222824 11689.465245105608 154934 75787 124115 KEY_20200107 4537775.774807942 584.6391389398349 0.0016642764466394515 2.1456208471474583e-07 1556418.054472152 200.65674974222614 23606 2789 310211 BOND_20220112 78394370.78684999 1828.7058141244888 14.689060937596274 0.0003433387437038945 6679365.213505952 156.12195162694334 None None 180094 CTXC_20210902 37622309.96333877 773.5568304833798 0.20592892915076805 4.23241036138315e-06 4309940.932691202 88.58123399999026 20545 20616 976198 OMG_20190603 330657444.95006365 37824.87259947576 2.356360527115346 0.00026946852864857574 170721042.72858623 19523.306244541764 289701 39410 None AION_20190524 62737307.68815403 7963.873515349772 0.2023012337251575 2.5724475598387722e-05 2102763.3995448654 267.3858422151972 68829 72552 289915 CELR_20190818 24077114.928844437 2355.6864514500476 0.007707033670784423 7.540502611210297e-07 10594995.643985175 1036.606244787569 18083 None 463728 TOMO_20190922 25563490.552333623 2559.818076871144 0.3954492409876567 3.95989126103179e-05 836284.1626405105 83.74258954470497 17230 1324 283081 NKN_20210210 33712732.50463425 725.0364084025914 0.05160880638408171 1.1080082949025513e-06 8862020.495160641 190.2619515196354 14227 1030 338143 SOL_20200901 157231078.23530626 13458.132031876286 4.7944618494720785 0.00041124817638831283 19476155.185270272 1670.5802558174735 84583 2325 84125 DLT_20210805 6609659.610521179 165.81249749766633 0.08010468637130798 2.0122757915555623e-06 511468.57331653027 12.848384718162523 15268 2597 None NPXS_20190810 115706347.39526756 9754.611100027838 0.0004919855572095715 4.147510240175609e-08 5854613.540439093 493.5524885926369 64043 4704 187000 STEEM_20210603 214605938.3466382 5706.410798194639 0.558985160478315 1.4863516733780954e-05 1581052.6343610557 42.04047611515378 13886 3946 201995 KMD_20190124 73363074.8979386 20650.437528074362 0.6577223693501405 0.00018513747846552942 359691.4359489907 101.24692207600889 94877 8237 233047 BCD_20210718 330234006.20126736 10448.57731730468 1.7444693203481847 5.519159175621549e-05 2404277.82761018 76.06664031414232 34362 None 1350278 RNDR_20211230 700346733.0090835 15100.424486389116 4.606527673015574 9.890405733982103e-05 33144351.059369653 711.6229469041923 None 4356 62178 DCR_20200317 105245478.52048358 20852.06283675981 9.304946854203532 0.001847774572941686 36120725.929670446 7172.846871112348 40811 9744 200827 LTC_20211002 11077015406.904276 230035.12488096574 166.03298444923087 0.0034470091965887154 2943230546.085889 61104.38111856686 197974 343921 150290 FTM_20211225 5309312789.71291 104454.84508071208 2.0877969591085814 4.1057346210779124e-05 1032320824.9943432 20300.993986736412 278855 25267 17107 LSK_20200530 168677074.20021936 17897.271961912895 1.2063701900421513 0.00012807871282232867 2635427.0721246745 279.799774497953 175270 31236 217591 ETC_20210427 4146659232.316294 76950.11355061243 32.759794588611314 0.0006077194680048175 2548517340.4465184 47276.96317350026 344112 35658 130525 BNT_20190901 25049562.6097277 2610.235813963565 0.35913161765663865 3.742253806739095e-05 7934928.949255963 826.8422106724098 777 5121 161703 VET_20211002 7248101430.9241295 150500.57461354518 0.1086386643219429 2.2557056712564276e-06 846294072.2743531 17571.92386609982 437233 206008 48603 XMR_20190316 876888523.8411617 223458.36757045338 52.024120496621386 0.013256358425733965 47452391.75839675 12091.428116473475 315062 157481 112141 FTT_20201129 376634092.525908 21280.92714540887 4.109910677354211 0.00023201086776363696 4772218.525821455 269.39917877882283 None None 5253 DIA_20210710 63440828.787860274 1870.4930056798287 1.3093185872207238 3.8526032837702043e-05 10612281.41634094 312.2609778241563 33779 395 433777 POLY_20200418 11987143.579666596 1693.2607950563709 0.019345865231487177 2.741055850012859e-06 1039369.9911443993 147.26512153704067 34775 4986 378789 HARD_20210727 49371649.27874313 1314.541381793864 0.6731412223509506 1.796966605199471e-05 17871182.106959388 477.07548394505164 None None None PPT_20190227 44553748.90327168 11696.321952790864 1.2040243357953746 0.0003160824087111503 2062519.0365380319 541.4558208666787 23344 None 575286 1INCH_20210725 368654682.54869944 10790.079812807197 2.0464621196686594 5.9888842223286006e-05 57243485.3017309 1675.2062139813354 241287 None 4419 TRB_20200927 34785357.779982656 3239.576706645818 23.705534365353913 0.002208256949037983 23258542.542612348 2166.618031158332 9247 None 210073 TRX_20211216 8930802803.419674 183060.32337056907 0.08783881918686882 1.7974216413680714e-06 1353775852.0228682 27701.94358841247 1300923 121238 22188 STMX_20210610 202944768.68146476 5406.725811232865 0.02342762852863378 6.255098492048607e-07 14817574.902493875 395.6242959680043 66195 4446 51930 MINA_20220112 1196154172.0375395 27935.209582629184 3.4491184778223882 8.061890478175206e-05 49393139.77236284 1154.5039284049042 None 12062 65059 REQ_20200421 6714218.403488558 980.4997613872895 0.008757500410241925 1.2798477727447394e-06 2205170.1634650845 322.2702814758961 39326 28205 655698 XLM_20200301 1153127340.1147065 134822.83511090185 0.057071308838952034 6.672737167425047e-06 238936469.15140676 27936.28341096893 281527 106663 84088 BAND_20200730 79213762.19054747 7133.609597844684 3.8927836050966986 0.0003509787553355689 12340993.270950142 1112.6810265465854 19342 1429 306961 IRIS_20210823 138751626.70040265 2812.49211490783 0.12885625664170686 2.6151083890101297e-06 24073842.895877987 488.5731601514302 27260 None 908370 AE_20190712 117831042.62231417 10376.98128971196 0.36875878530006073 3.2406224309961563e-05 39643430.69819037 3483.8326809668056 24842 6364 357340 ICP_20210616 8258406863.522482 204482.98315881152 61.007096591259874 0.0015115323069205993 332046099.05587816 8226.88562729965 None 20219 24602 DOCK_20200310 3504730.108387256 442.6707508279385 0.0064255025085325915 8.107707269922756e-07 1179784.1072036475 148.86530929234365 43139 15028 375776 UTK_20210603 148513210.00409377 3948.9931721881667 0.33002935556465285 8.77554038264037e-06 7756392.958636705 206.24389462473005 75924 3946 115864 WABI_20200322 4223668.875646138 685.7895283325618 0.07158615879891686 1.1617071115749746e-05 1082373.9667821222 175.64869462075842 36690 7759 2574958 TNT_20200421 20189478.703831445 2948.3370754450048 0.04720302561514203 6.89429834603539e-06 753213.1759641061 110.01151484653141 17572 2563 822007 ARPA_20210427 88974986.24254322 1651.5744311491017 0.09084177371200117 1.6851849984451183e-06 36359230.60585271 674.4917835515018 39162 None 501259 XVS_20210310 449856917.45598483 8230.443420693327 50.9946258218609 0.0009313511876718585 255018684.66788423 4657.587951986307 37092 None 20030 QLC_20211202 9492788.23568406 166.05073695006996 0.03904814705721489 6.828486415545606e-07 3030596.0096969474 52.99709523450651 35556 5825 940522 ETC_20200417 635508435.4352702 89648.82532822972 5.4634592740862935 0.0007707099998051039 1990763181.7550323 280829.60162250407 230764 25394 313555 POLY_20190614 45885540.79224331 5580.68991544801 0.09948519746786945 1.2097899599697728e-05 5965171.619198173 725.3948243640284 35091 5114 303523 WNXM_20210710 129039731.6294947 3798.0094593620183 60.193716657891 0.0017711694672477006 11100638.468301442 326.63063544911296 31072 None 117063 BTS_20190806 124403163.21280396 10533.227592555333 0.04590487212566241 3.8863686586577094e-06 21084257.24032397 1785.0217795087592 13656 7163 153233 ONE_20200905 57295560.43935019 5462.125615546496 0.008165028865648377 7.787155443805768e-07 10524709.62819529 1003.7631369618894 78424 1455 127975 MANA_20190729 52997492.898153424 5551.359067308798 0.03981100251409584 4.1747115645702125e-06 13470551.986415775 1412.566014606713 45555 6344 146197 MTL_20210117 29776019.01577664 820.509136393673 0.4546203192543539 1.2560006473664847e-05 31507544.2251141 870.4735417145009 43433 3362 402004 ONT_20190220 407002879.265031 103959.52574878474 0.6811763669707631 0.0001739908380732799 42054910.4065677 10741.959735443192 67231 11051 278128 QSP_20200320 4803321.297186064 776.6639204387427 0.007380202642561335 1.195557428136598e-06 116235.89273869389 18.829657085351425 55313 8323 355576 ANKR_20211125 997024119.096782 17438.869356425606 0.12221667891200198 2.136694565595894e-06 110485319.53826119 1931.5970940881582 142082 None 5363 TNB_20190131 7176596.988114022 2075.1366060425494 0.0028787132381300038 8.323893941148732e-07 255602.08522613216 73.90818301655024 15114 1515 1637070 CELO_20210617 275444996.7083722 7201.276500556061 2.339544765786133 6.112834901005229e-05 12525483.927171335 327.2697168342715 31148 None 78751 WTC_20200629 9697080.9953319 1063.581132057083 0.3319388463032006 3.6384373413417594e-05 4638515.344500587 508.43544302741475 54312 19575 873849 BCD_20210124 121095127.1437821 3783.1672823643385 0.6431342335083838 2.0067733948154334e-05 2034584.589392052 63.48519501473913 28066 None 1665696 NULS_20190414 32173521.9108531 6340.586457129689 0.804171697122362 0.0001585252498137002 4693568.449718148 925.2366300278499 26 None 680951 VET_20211221 5366856786.261921 113755.97941304871 0.08013098287334985 1.7002251454163812e-06 287091396.8115168 6091.5265779673 528432 219202 35068 XLM_20200725 1958690606.0384316 205340.615183657 0.09573205349816859 1.003613265796354e-05 208528275.42499328 21861.19861245458 285282 110078 65501 MDA_20210731 12752055.190935021 306.9049589431149 0.6527731029290161 1.5631800815260286e-05 1856534.3554162781 44.45798259814437 None 390 1479316 ETC_20211104 7273347454.583434 115523.722040553 55.701309281458386 0.0008832306661480707 1642619674.8398144 26046.28308296582 556757 61565 196117 AION_20210401 168951746.84017828 2872.493685557673 0.34291463560385 5.8356898379022554e-06 31082781.302377544 528.9639232242392 71120 72982 252170 HOT_20190615 338218440.448265 38885.451697581266 0.0019029797414153902 2.190106880513993e-07 35545193.22827575 4090.8355756086416 22520 6394 302460 STEEM_20200520 76414180.9226444 7829.407992053727 0.2319460103706004 2.3759683429513215e-05 48014388.7410079 4918.414741107919 11354 3851 233100 GRS_20210722 44308330.668123 1376.8863189228068 0.570235014910745 1.767867551235822e-05 4753864.261321594 147.38138049775054 41453 106850 8801723 THETA_20200318 57921720.53057775 10662.53535036305 0.05762727845310264 1.0714090322795892e-05 3733133.2287230324 694.0658603567247 None 4026 384607 CVC_20210602 220208512.13263696 6001.532237861853 0.3302485959430804 9.003036391737732e-06 36616704.33948555 998.2223263432368 None 9811 135112 KMD_20210310 193005492.35674405 3531.3977805962736 1.5398805707364593 2.815116400107143e-05 6447714.709943751 117.87321541756866 101112 8792 245879 UMA_20210909 697349406.1599406 15052.26969551289 11.059702466795137 0.00023888632414227273 56804345.385082245 1226.9571722287571 None None 238327 WTC_20210809 19241684.50597481 437.22212970973396 0.658429575375962 1.4968943479072688e-05 6930961.279261837 157.57063705054742 65384 19904 1106983 CHZ_20200713 65915756.55342975 7104.522266604762 0.012343935452934086 1.328562808416866e-06 4193395.341355529 451.3300569948511 26423 None 264986 OMG_20210325 722863872.3892293 13675.223877942339 5.1093720132839175 9.690660127117278e-05 416585863.49138486 7901.151073675709 310843 3989 140232 PSG_20211202 52830561.63443467 924.1282408373254 16.986821358132477 0.0002970545022721518 6719792.608790771 117.5113699433101 None None 16273 QTUM_20200310 185998936.41963172 23492.904244191403 1.9417077137468188 0.00024533854129550825 523751573.4458067 66177.0286643545 179332 15173 105986 TORN_20210710 33360182.161076155 983.5935089870468 36.70099572768313 0.0010799185634216989 2102437.026175629 61.86373769907262 21402 None 103371 FUEL_20200224 3448148.6005866765 346.4721951851672 0.003482739083741183 3.5e-07 47189.694622215175 4.7423573 1 1475 None ZIL_20210120 862646426.7666768 23823.31489656688 0.07369681019361712 2.044754549017198e-06 157511533.94381675 4370.235627677013 123674 14759 35147 ONT_20201031 345843469.365879 25464.388813608133 0.44565498137205833 3.283719740129506e-05 118369480.13103013 8721.818778698413 93553 16682 220041 HBAR_20210128 557272057.4559212 18421.685058892726 0.08062109432449727 2.651929249997609e-06 55320071.045945406 1819.6839890092033 2248 7341 166052 ZIL_20200707 209395903.1595039 22431.745740202634 0.019020927484681822 2.035812502052751e-06 56818848.209396936 6081.329190181851 81566 11575 87928 REP_20201208 91170823.21335405 4746.7353624031 16.465094487231497 0.0008576378461076245 11202745.180665746 583.5313155772997 None 10453 147834 AXS_20210219 118982634.22644034 2302.1161208390645 2.1477117196402196 4.1541452972992944e-05 20671674.674829092 399.83550563353765 None None 20130 FORTH_20210825 153944706.3799506 3205.5954693717617 17.83646134537254 0.0003714137185454177 30258917.646107063 630.0900668851502 None None 144667 WPR_20190603 7560628.912877115 864.8824630114678 0.01258541579891856 1.4396825369451955e-06 213193.27750438266 24.387802796594503 34990 None 1388186 BTS_20200322 45361024.94525932 7361.231018870493 0.01673717512940416 2.7161249746785974e-06 10644555.715651114 1727.4088010732942 13303 7027 131725 SYS_20190410 34225497.49862796 6615.9324959817595 0.06205087737586222 1.2003667978196178e-05 370621.80877371633 71.69634542071434 62526 4613 1033934 XEM_20200217 598578746.3897103 60046.246672457375 0.06639425251588182 6.673838042029815e-06 56320414.409961164 5661.2328626212375 212870 18055 232859 AST_20220115 43339131.950318485 1004.864021375824 0.25158789621917205 5.833333842821067e-06 1175149.033213317 27.247084334414485 50004 3752 213893 SNT_20190530 105336477.32525207 12191.444390583567 0.029870407478039266 3.4541739718001027e-06 29462389.221099157 3406.9912862549545 111564 5754 333146 ICX_20200308 184679744.09779087 20777.106545436356 0.3518841278609915 3.9572028660429654e-05 34953486.82096688 3930.783666399593 112591 27524 143772 SNM_20210206 7347805.9116115635 192.54465472 0.01679108986853254 4.4e-07 1216115.2821979655 31.86753977 None 9475 None BNT_20200107 16180171.550776945 2085.3660918573305 0.23223048841904415 2.9905385625850614e-05 12810702.215980059 1649.6929086052148 759 5061 126434 NPXS_20190613 207167741.25114316 25477.217586998137 0.0008720065190286959 1.0709829269098322e-07 7021154.885952556 862.3257792178598 61625 4521 180599 AST_20211202 69966437.52277529 1223.8741899619192 0.4061641098851557 7.1028693302176304e-06 3130295.0225464776 54.74160805706108 48846 3752 173278 NAV_20210218 29316150.21200566 561.7184425947203 0.41443095032246574 7.949338675115883e-06 2218138.053330138 42.54684791365998 49146 13712 541634 REQ_20190228 14977929.065908616 3923.857323675831 0.020503536959330108 5.377761960091064e-06 463110.0214878105 121.46662606720669 41673 30820 495814 TCT_20210218 13790922.621226205 264.3097687679123 0.02379878414067624 4.563275633763841e-07 3720061.9280687636 71.32997993554791 None None 1023236 CHZ_20210819 1804213048.55378 40048.71856701877 0.3358085347684816 7.463707023361713e-06 322376849.8523188 7165.173333283044 373117 None 58032 AION_20210104 32835778.72390168 981.3305643538235 0.06663967300517437 2.02443264315375e-06 1593771.1156099339 48.41683829849815 68095 72531 529270 BCD_20211221 238846972.26332533 5067.872795102506 1.2694032207256987 2.6934291807721934e-05 1523475.9292099003 32.32522540467591 35938 None 1761338 FTT_20200107 63067696.56757252 8121.516684683181 2.183068396637934 0.00028149290265446554 5644664.005759752 727.8438265780195 5516 None 36573 ONG_20190923 0.0 0.0 0.1778523010906334 1.77057655909944e-05 5460522.5451138755 543.6124896627397 None 16297 297056 ATOM_20210702 3086491750.5039816 91857.9758810298 11.226299734254928 0.0003337415849780121 426874573.64454347 12690.361042137123 162827 31583 47818 REP_20200905 72085851.06275572 6871.026495451395 16.71253532004392 0.0015939087606267957 13003962.036909014 1240.2145226062014 136022 10420 111817 RUNE_20210821 2438410898.0113564 49629.71061027214 9.30724833670149 0.00018923047901312176 123606536.03636934 2513.1084050997165 106375 6529 73281 MANA_20220105 4270566448.755544 92208.98982287424 3.1944964852537963 6.94291184261689e-05 334048355.8854276 7260.199836780775 439258 76422 3071 RVN_20190902 135577825.01638073 13939.082112508422 0.031811314873637794 3.2704920282958023e-06 11241066.193133917 1155.6836779688188 27583 6961 276399 MFT_20190213 19832395.808493797 5463.127335915037 0.003454780094624759 9.507604865365131e-07 2480747.5952830967 682.7053317620266 15834 1836 640099 ENJ_20190703 110648383.72917797 10252.054417098596 0.12686094988936003 1.1729921596351495e-05 13808666.087337464 1276.788252775421 46693 12638 20679 FIO_20210603 43427736.12966959 1153.9833311311065 0.1809888530011118 4.8116609068968074e-06 3214704.843145413 85.46421154942396 None 461 99766 NEO_20190805 840729243.3547462 76775.94756118616 11.914796303793336 0.001088105693465561 228582175.4079072 20875.016252430723 324449 98211 192021 TRB_20201030 31282472.07483843 2323.744642659326 20.582300541642375 0.0015306511962444517 23878108.617541622 1775.7517166532732 10208 None 208635 DNT_20190914 4730510.590101916 457.87011495858246 0.006658618398781546 6.437546680602439e-07 207095.18839906726 20.02194543677575 60122 6272 485543 POE_20190213 10918334.245847752 3003.671794152624 0.004798406895550053 1.3205285284905649e-06 366184.55272255454 100.77451935373215 None 10982 524889 DAI_20200807 380719415.7497119 32334.50339136777 1.0145878610446175 8.627877218154454e-05 65842281.684171125 5599.112151305213 51393 15322 31492 JUV_20210902 31182413.888216518 641.4674643115269 11.982287342253045 0.00024626922166575457 6426828.049221516 132.0891325882542 2676190 None 40531 ALPHA_20211120 419956231.89647895 7224.402999714332 0.9426370977222956 1.616013073625097e-05 10187090.01746525 174.6427197719887 89024 None 53355 WABI_20210602 14648728.289474638 399.52514600933046 0.24776869948933247 6.755895034784582e-06 725681.3252218047 19.787111414825684 None 7853 291805 XLM_20190726 1676039651.2802918 169197.44350580353 0.08528208451012023 8.62424082305716e-06 200783447.41973448 20304.438074868343 275438 103108 67443 XTZ_20200901 2357652324.511304 201764.49220046256 3.2548923286063642 0.00027884374698386693 157727923.12496185 13512.411670766098 72238 29065 69245 ICX_20210301 835634283.9915191 18400.382784050584 1.3904290069028078 3.0805120981613624e-05 151882195.3934263 3364.968208243534 122600 29623 148374 XRP_20190708 16819872957.736542 1472411.1841515612 0.3958213306486169 3.4628575088353594e-05 1740393390.5105326 152258.95761557503 932558 203328 39729 BEAM_20211120 62919365.19750835 1082.0488394494585 0.6200849712658023 1.0632272909851016e-05 4148657.1209147596 71.13485532300493 29102 2879 250071 WNXM_20210125 83479382.1768378 2590.7842125530797 49.49349977681621 0.0015335009412407628 36238444.13741806 1122.807812024284 None None 131837 XZC_20200318 29832444.438717157 5493.5662008077825 3.047272369758748 0.0005665502915312098 61289836.28128267 11395.034771968838 63674 4092 90239 MBL_20200430 4654325.23220032 532.4319077984558 0.0013184006208671237 1.506799394176774e-07 1190778.759219592 136.09404338800664 None None 95998 OGN_20210124 37166097.29219841 1160.8605381074099 0.18053626620115515 5.633277734811671e-06 15738553.450153496 491.0904861082466 None 2526 231099 COCOS_20200422 6536551.372642022 955.0063534830072 0.00027044858039285884 3.950773675146894e-08 434770.0669975747 63.51218900615921 14909 218 64758 GRS_20200317 8060895.97798037 1600.731187036421 0.10799153121848062 2.1444937688000045e-05 7589841.015645827 1507.1891823911644 37679 106864 3912987 BAT_20200629 388805841.72380066 42632.97546868447 0.2641041063463858 2.8937325899352888e-05 113966595.57336609 12487.077779172794 119019 41149 22299 WTC_20190220 28938674.41058304 7391.718881584796 1.0929435298296573 0.00027916729050289087 3572657.6076760506 912.5532262265278 54459 20400 795747 FET_20200907 57722051.75770485 5605.450435275935 0.0842125174398997 8.186852802553104e-06 7488327.087902736 727.9895373010696 24343 642 239426 ZEC_20190902 330486092.44515467 33978.06963696663 45.15009549948391 0.00464203525879321 132510088.82516335 13623.814028904093 109 15334 175119 AAVE_20210220 5264995285.550825 94258.34801136937 424.6225132111737 0.007600336940559908 1000716596.7788262 17911.870145582674 130334 6306 14216 TUSD_20190207 207212469.12818047 60842.2236254194 1.0108925367259767 0.00029682069828868625 63471735.39080231 18636.72362376888 8180 None 276548 ATOM_20200610 583916317.8090987 59734.391914774984 3.1161295221056733 0.00031910309592728017 159593973.89314985 16343.00846590889 33893 8525 147612 STEEM_20210106 63199036.731753126 1860.4186378964125 0.16897333619792929 4.954280874043657e-06 4373776.341268361 128.2386734053016 11892 3830 219133 NPXS_20190213 114878084.5323428 31603.361328428266 0.0006857328913942342 1.8871468504477575e-07 12885939.769883925 3546.2292908763948 55380 3950 183678 POND_20210902 68247264.01352452 1402.9890688134933 0.0866602305943697 1.7811079744843871e-06 11115809.075843886 228.4606912772025 20794 624 272620 ALGO_20211011 10887578266.64734 198976.5369365383 1.7704492647893555 3.235831459647916e-05 239371587.36496818 4374.969271054373 159639 48051 131750 GRS_20210506 111656711.23808555 1948.9665013434462 1.4385486472633935 2.510052448202576e-05 3289437.808910032 57.395774839952104 41562 106853 7089967 NAV_20190228 10033892.308386086 2629.3102364226293 0.15594220838216055 4.0901239521436024e-05 370138.9411212704 97.08174357715248 47891 11429 768828 NEO_20191113 855115843.156361 97288.71614431101 12.116874107875857 0.0013768432474316292 612999509.6645079 69655.27808957612 323665 98631 158708 TROY_20200308 4887540.693944355 549.879591832455 0.004251203262964608 4.780853342269039e-07 2994435.8261698526 336.7507419010342 None None 312111 DASH_20200317 405419468.797073 80532.03153772737 43.10025698849719 0.008570634514114227 487208311.9528844 96883.05049088567 316617 34166 60317 ADA_20191017 1200535132.0961378 149911.8676918648 0.03857763166375929 4.818494339278625e-06 68236067.4746184 8522.946865345306 154401 75449 134614 POLS_20211120 241366930.81092298 4152.11740648021 2.9827147191809287 5.113426994054515e-05 26851161.377655573 460.3237866741806 None None 11070 FET_20210511 337289617.80709463 6041.981818143024 0.49174232362553144 8.800289539212657e-06 33243371.93977499 594.9280431524118 59278 2573 119551 WNXM_20210508 200296654.4413157 3495.2441032262163 96.84973988477692 0.0016897114135827288 26047131.86628722 454.437317621313 26913 None 102080 FTT_20201115 337987006.4575307 21002.821387495416 3.6664871814140603 0.00022792946205852076 1709804.2994185362 106.2910505094173 None None 5993 STORJ_20211002 172917705.77783254 3590.9624191676025 1.2048067636087298 2.5015858455205562e-05 45074772.12141988 935.9045395069485 105732 13946 72901 SNGLS_20210511 18978616.881741345 339.955952825136 0.02135686756706854 3.8197435240329386e-07 2282449.1477481313 40.8223271679074 9498 2136 963181 SNT_20190803 74751355.81471129 7102.406134503046 0.021062120000042935 2.001113863664673e-06 20963774.734576184 1991.7700713896834 111642 5725 278039 NAS_20211225 15823981.662965363 311.21352904941136 0.34744212974343314 6.833982414441737e-06 2082955.845230742 40.9705168077262 26923 5246 678539 SKL_20210725 253732859.9509477 7426.555089016501 0.20982071760208937 6.141186949895198e-06 31603884.49138594 925.0057154630659 None 2315 175658 ANT_20210828 181306744.28507805 3696.5242800510214 4.880805077907045 9.949750442704584e-05 12516581.013969267 255.15638403304476 86953 3102 132148 STORM_20190228 12628214.567246813 3308.1922393822056 0.002786949836753533 7.309701025813848e-07 1011883.2724652338 265.399975887586 26583 2568 3385939 DIA_20210806 73577947.81809022 1795.8353111981023 1.5089112581171555 3.6878361305732716e-05 17115791.758311708 418.3164179478164 34220 402 453696 XVS_20210206 168761830.93652403 4453.312700799736 20.118838166773653 0.0005270718123470288 43396839.93451986 1136.907155612821 19205 None 58717 BCH_20201224 5172924518.853094 221254.02081291706 276.2232746573558 0.011845246704678701 4733077871.203344 202967.96179252057 None 348490 540127 VET_20190523 397034918.58369553 51813.07663419251 0.007156681250441572 9.345003860823667e-07 21371692.06180643 2790.6586564490744 108721 55608 262413 MITH_20190801 13610762.601917502 1354.0293464147633 0.030018996010213215 2.9846377421272113e-06 2523972.016801507 250.94583905656773 78 2078 826998 SKY_20191011 10753302.369824823 1256.1130449361865 0.6720813981140514 7.850706530851166e-05 582170.5757344456 68.0044166348463 16342 3805 1832418 TRX_20190723 1759118392.0110583 170022.20662146204 0.026605347179438778 2.5733356730828726e-06 929414144.1953385 89895.25888141802 447695 71309 80727 REQ_20200330 5474017.655249516 925.7255827330448 0.007079916293215723 1.199439934133972e-06 25233.78072618719 4.274966403369996 39509 28293 686735 QSP_20190726 0.0 0.0 0.015574617095803137 1.5734395984430805e-06 80485.78372798424 8.13114816565612 56797 8583 708512 GVT_20210624 9926607.346949615 294.4604734729276 2.2374135375634405 6.637009268107327e-05 273127.4791055866 8.101987316 25821 5679 273194 SNM_20200807 4170128.526146555 354.45720528 0.009536895648200358 8.1e-07 141626.33130341963 12.0287914 29231 9589 None DOCK_20190626 7185385.456448362 608.5984392733885 0.013989374363453913 1.1832603750823148e-06 1639004.022313548 138.63154018314012 173 15252 251058 NEO_20200903 1437379641.9185495 125994.1099160303 20.375531063204033 0.00178562045270761 498320190.4670565 43670.55373108915 321616 100385 111243 ZIL_20191019 47985971.55127129 6028.963133894077 0.005175529084947491 6.502540855759397e-07 5787153.459194324 727.0986442025223 66314 10575 188924 AERGO_20210106 12844187.980213583 378.02531290524814 0.04882763923788211 1.4324496242365463e-06 6588209.877884883 193.27739188844396 None None 652713 GRS_20190804 21149879.904029414 1960.1400277504633 0.28923665324903597 2.6800860833894616e-05 1290155.1657538523 119.54663651058023 38632 107007 None ENJ_20210509 2299056594.596207 39203.89860665995 2.4685597681947007 4.203879004081334e-05 249254624.27532825 4244.727209613136 178031 31047 21427 TFUEL_20200325 0.0 0.0 0.0016543010092575435 2.4511911316224723e-07 199350.2120825309 29.537881510636605 68238 4027 384607 ZEC_20200411 352449667.1104556 51397.0080671786 36.162609965255214 0.005272674015535575 595678849.9270241 86852.70218692771 72633 15666 146498 DENT_20190923 33968246.91989632 3381.5564254768396 0.0004582001985061824 4.562067183184123e-08 674469.6573879191 67.15352590536575 46432 10244 275071 CND_20211011 30762993.127160765 559.8347230968631 0.015337685789233613 2.80223687012133e-07 355516.415391416 6.495381512134731 36732 6312 238436 NAS_20200319 9502244.261155177 1765.6397044266043 0.20939850836443274 3.8865604030391e-05 4099154.005376998 760.8272746399095 23636 4971 1138524 ADA_20210624 40049997236.55031 1187920.0138308986 1.2483605486687026 3.705561953119416e-05 5017951872.054881 148950.00935026817 514836 528526 6543 KMD_20190621 161040609.06762075 16834.966268906057 1.4063559302370414 0.0001471480045545318 2699442.0424039573 282.44450882601325 97282 8413 339259 SNGLS_20190614 10552284.680043517 1282.5943054309093 0.01786794264184059 2.1717876438201205e-06 781557.4477770539 94.99564902582131 5 2182 None WING_20211120 40751966.97644158 701.0361811483597 19.361057140612466 0.00033278148314665656 3076990.043026624 52.88788224264815 18403 None 280079 POA_20210111 6989576.6363943415 181.36446175528337 0.024545411784620705 6.400007187421473e-07 515129.6885453876 13.431568140202666 18161 None 255706 TNB_20200913 8351266.829767105 800.8902938721175 0.0024382647380586666 2.33489260393296e-07 635876.5948231106 60.89181109384659 15965 1435 593209 GO_20211011 37760930.336499125 690.1019644446739 0.03432250203922094 6.270819865133003e-07 1030245.8896861434 18.822888796489774 23376 1125 240788 ADA_20210131 11492910452.930855 335962.1501862151 0.36048067269930434 1.0551333424215895e-05 2354964351.045102 68930.225534577 186533 116158 26016 PIVX_20190528 43951138.516023666 4984.408444172559 0.7302702794384975 8.298095605422522e-05 2182293.479828291 247.9750367032494 63011 8604 309234 MITH_20200725 6809293.8092502775 713.8423323440836 0.011014422312772148 1.1548160182280158e-06 9589314.640869224 1005.3994514322465 104 2098 578289 VIBE_20200730 3383098.3188705365 305.02482480156806 0.018078701267215135 1.6300007173640779e-06 878609.3248633622 79.2166322482 18808 None 2048051 LINK_20190524 487083748.2746251 61830.40850147958 1.3355641714461512 0.0001698293545017316 68822072.39536196 8751.36394061842 13083 6989 356861 HIVE_20200801 81283542.0737802 7170.965868251948 0.22295031990519826 1.968453736094578e-05 5143095.979351939 454.0897945314981 None 90 144109 POLY_20210202 73787447.29723132 2211.3778606962 0.0928528421061228 2.7801530357771736e-06 2443839.4048673217 73.1722086937148 36254 5032 279172 MIR_20210527 370261178.0305972 9450.386680035499 5.383293361495217 0.00013741323704977135 77709041.92438857 1983.590765319304 43814 None 16091 PERL_20191216 5437718.927595786 764.124481563157 0.020795567942766584 2.9247515515950763e-06 859387.134765523 120.86680502037409 10805 384 945040 RAMP_20210616 67142829.60098867 1662.5624619662374 0.2339792057030153 5.79699140084511e-06 17374492.303576186 430.4646738809863 29027 None 108775 TVK_20210731 103246981.5697059 2473.232220773348 0.23799737647855693 5.697611338957162e-06 18373187.954565488 439.85057974853436 51028 None 106463 MATIC_20210418 2107787279.2554057 34964.97555524735 0.40621897467877505 6.7399954765027504e-06 274435772.90034395 4553.445267793152 3743 12018 22143 LUNA_20210602 2569303393.454326 70023.43821921063 6.266270316793314 0.0001708620362745401 231074208.03846487 6300.687286051066 78214 None 18879 BQX_20190915 10056750.040123513 971.2123127960917 0.071350348530944 6.891289833255255e-06 428543.471161688 41.390369167484494 60286 5749 423715 QTUM_20190830 202127879.13602155 21279.440294607866 2.1032265957149803 0.00022175802033841163 201937924.74813062 21291.740278783134 178212 15347 286987 WAVES_20200425 101014543.5146092 13471.63556616525 1.0086607718578424 0.0001345730814116523 31548579.890137598 4209.135249859666 62 56850 71676 SUSD_20210702 169498853.52314162 5044.504524027521 1.019884191887126 3.0334062110837684e-05 195749448.32270846 5822.1080107107055 138783 6995 47664 GTO_20210819 33686249.31438582 747.3345664837315 0.05057590246202925 1.1241040037262763e-06 24546073.859917946 545.5629768032334 13473 None 734299 POLY_20200403 11964715.139506036 1763.1316137741535 0.01941780468056872 2.848394122138092e-06 7312728.802103599 1072.7028147288868 34864 4992 460641 SC_20210620 648809834.8601841 18198.81468405047 0.013495150802974979 3.790387802511828e-07 44711828.90792221 1255.8227276958153 137992 46902 46227 ONG_20200704 0.0 0.0 0.19647008130712015 2.1673542110795996e-05 11883899.120499158 1310.9690102177185 86566 16521 150808 DCR_20190810 275797630.7237356 23249.916166653158 27.010739100633824 0.0022770225329387882 14727371.67541472 1241.5268249766955 40586 9579 266485 GXS_20211111 49190027.91780945 758.8657900397602 0.6550745842572205 1.0087308052392297e-05 10576620.547737597 162.86638526705337 53146 26966 1126071 ONT_20200305 455544248.2187199 52036.36192141495 0.7152098125719447 8.165959264407719e-05 107048376.46751688 12222.325060267423 84513 16483 345761 SOL_20210704 9395489549.381342 271021.9716692137 34.46550620541941 0.0009940293270461868 462037406.3577414 13325.750371243164 None 26059 7723 QKC_20190826 53791412.38366619 5327.348534739762 0.013435992500080816 1.330662493997178e-06 4377665.156984261 433.55150991950813 51292 9239 287849 ENG_20190411 45420908.22177454 8558.149368370474 0.5826700645441047 0.00010978017876396652 1836135.6387261832 345.944147331414 61892 3354 361220 INJ_20210707 221790441.52635977 6493.405450288995 7.659014304544912 0.00022425333729969506 21210946.81039186 621.049317885995 None 3724 124543 WAVES_20200318 87286780.22860977 16073.63106386624 0.8495150494020074 0.00015794223177265944 58075044.81500084 10797.339252359538 141076 56866 60056 DASH_20190615 1366243726.6758144 157029.0206707856 153.7158980056237 0.01770401485396933 388024691.8043453 44690.20443909892 319848 27244 107403 GXS_20210710 31167348.89229944 917.0482460245673 0.44615333835495485 1.3127961862316858e-05 5238584.852344515 154.14418371868226 None 27103 581243 ARPA_20200711 0.0 0.0 0.03586095290343807 3.862584567687703e-06 160666584.30823153 17305.40375664622 18702 None 769985 LOOM_20190726 27201018.868665185 2751.703161398651 0.043935515618744043 4.444978586840596e-06 1415057.5517930798 143.16209627420147 20711 None 431801 SFP_20210711 78716123.23489317 2335.154501394502 0.7277299506223407 2.158848530845923e-05 4480180.185887847 132.90686200228063 359286 None 22344 CMT_20200403 5847760.075937863 863.057726963864 0.007521368284458754 1.1033081012153174e-06 6423600.122750164 942.2766957233191 285729 1638 926050 CRV_20201124 97472631.64727445 5317.564178704902 0.7385213363105725 4.024658811903852e-05 66649398.01849794 3632.1372701740156 None None 14362 CVC_20201226 61005285.40555568 2470.3387588211035 0.09126540537874499 3.699666725510066e-06 23746902.36236163 962.6388458953429 86389 8046 189562 GXS_20211104 50786919.603641346 806.6105736596362 0.6781733053416722 1.075543989652728e-05 9396269.363306066 149.0194461984953 53238 26969 1126071 RVN_20201226 104177928.79820454 4218.5652212434825 0.013380866515608509 5.419143589222097e-07 7074678.960644952 286.51882216044993 34127 10334 209765 TRU_20210704 53564747.32241332 1545.1268776345548 0.15359278352715192 4.42638391092628e-06 1558963.2713076295 44.927696362903795 None None 106582 VITE_20210602 56453289.69844298 1538.5701250934787 0.09102726985930373 2.4820572982719825e-06 3958368.5343599846 107.93356238349475 None 2311 160764 FUN_20190401 31122769.217853025 7584.556987463801 0.005177315810324287 1.2617015706615428e-06 1636465.5161851982 398.8033930607356 None 17777 523376 SAND_20210826 642866412.3761623 13115.395708807411 0.7259473921175527 1.4813995799616421e-05 561662312.4202555 11461.523558513147 165318 None 25914 QSP_20190405 0.0 0.0 0.02864390915054886 5.851931850547718e-06 927658.7820464015 189.52008067633534 57118 8539 846011 TRU_20210420 88401408.81709917 1579.1161372262266 0.36569519695048636 6.538685132039116e-06 11223069.070883248 200.67016324408618 None None 84906 LINK_20191022 959153478.3958416 116800.51806966183 2.6270724149745432 0.0003196634252327347 146725444.07313055 17853.622060001515 36014 11262 94194 NXS_20191113 17528779.171194606 1994.5797120654638 0.2940371562692835 3.3405633150140765e-05 190123.3927029944 21.599965087677106 22210 3541 319693 NAV_20190714 11134773.35128769 978.0568102634429 0.16872837754500242 1.4816292658721916e-05 1122199.5028738582 98.54202652791288 48378 11241 893210 IOST_20190714 112788340.04484046 9909.711906992534 0.0094138542676246 8.258938098427023e-07 46306016.946735986 4062.507413813046 197685 50373 104916 PYR_20211204 670733346.114611 12491.580721757007 35.23077623251019 0.0006566614936063316 53017227.61343857 988.1806645912468 49571 None 52488 NANO_20200531 119719973.71856897 12369.491290339598 0.8978361697940914 9.264670327706864e-05 6244821.9636517875 644.3961459218723 98065 51549 258816 GXS_20201231 20654210.99410181 715.2468200309922 0.2947380745054528 1.0220401625486e-05 8122921.060154526 281.6721787512453 None None 478394 OST_20190904 6812760.7093894845 641.9705572318034 0.010236279299828852 9.645707821551224e-07 340154.6390799543 32.052977127786136 17998 754 572437 ONE_20190723 30490153.62214717 2948.1721482291027 0.011808086462757264 1.142157616794752e-06 3287337.635553727 317.97342704645166 69506 None 156927 DOGE_20200314 212660911.622022 38502.693338385296 0.0017192781040854769 3.1157815039653466e-07 162397713.99004295 29430.712363174127 138969 150212 115347 YFI_20210828 1352604612.9721358 27575.28377053988 37775.735256596774 0.7700761095626223 214757502.34888875 4377.932574570808 None 7104 25989 ENJ_20210809 1323349480.503586 30081.36371222018 1.413857082388868 3.2141543664725356e-05 147421431.61900854 3351.3658774426585 255250 34518 37503 AVA_20210710 109887680.89398094 3234.30966751406 2.119578453898748 6.23681203632134e-05 2323610.7578293798 68.37172512062297 93938 10483 46420 OG_20201231 0.0 0.0 8.850077299608374 0.0003069345689705378 25120317.581086285 871.2120344412056 None None 469087 ICX_20210519 1183917757.5408437 27775.634634729315 1.9042685361665375 4.451214360664301e-05 110540891.73263387 2583.885598989418 139784 32075 252807 DGB_20210325 928215557.1717336 17604.94531591711 0.0655786064224354 1.2437927494759977e-06 70271489.8714226 1332.8000450929 196239 30540 135732 REN_20200530 79000158.06043708 8387.34133242115 0.09057856022864509 9.662530539407203e-06 5175790.266972861 552.1310053278589 12761 884 400115 XVG_20210111 239992476.67724302 6225.479768523974 0.014534276831269738 3.788957947095047e-07 14244045.771832384 371.32972663528795 288778 51374 225034 BLZ_20200612 5739227.559738996 618.5536021901709 0.024904269412031266 2.67747545275763e-06 1453954.6757743529 156.31568585293783 36159 None 740381 STRAX_20210314 153294853.39078382 2495.9486003850466 1.5045659993559581 2.4526027075097e-05 5501272.006820806 89.67658862722922 152737 10527 209083 FLM_20210523 0.0 0.0 0.4577958691056555 1.2183900432271386e-05 25299752.178126656 673.3343009442814 22047 None 95069 IOTX_20210304 186581189.04820922 3670.4750016607927 0.03044056851764942 6.007824122068344e-07 73556968.09149952 1451.738087579077 39621 2274 431436 ETC_20200612 728999651.551564 78568.99831361733 6.2807930476655125 0.0006754384614801184 984787762.0647044 105904.38593429938 231893 25532 386099 ARK_20201130 61011374.57491108 3363.7325523946693 0.3974589729602554 2.187477421109662e-05 2298162.8253235063 126.48297390260352 62922 21641 105544 OST_20190616 18263213.54786001 2071.3086306990535 0.028687888250370608 3.25232698049835e-06 1616493.8385589423 183.26084091904792 18139 755 994275 STORJ_20210620 119367266.15647873 3348.3648145671964 0.8286855894461673 2.3275321604124953e-05 20397425.32454522 572.9032100608933 102889 13561 44115 ADX_20201224 28006429.07805147 1197.8784959159882 0.25928584977109037 1.1118921319648603e-05 1483891.9421773932 63.63354485598548 52850 3747 13863 DLT_20200719 3374456.1299558985 368.11365310374885 0.04114698926928605 4.48865474933159e-06 225050.48335390282 24.550372673315 None 2561 4398873 CVC_20210710 168791255.04589826 4968.010822919123 0.2523336281985994 7.425034737212341e-06 15439796.605932675 454.3232186409772 103591 9840 166246 CND_20190614 31423631.939085044 3819.527908021279 0.018053764795785084 2.1943736944905365e-06 799640.6674676719 97.19360286257727 36284 6160 588984 RLC_20210826 361693370.4843691 7379.124794068926 5.066351817055096 0.00010338616179652849 33076788.742425434 674.9792268910644 None 7840 323230 MITH_20191108 7025539.601237918 762.0575145656675 0.012944632084726815 1.4040991458813719e-06 937443.9621155418 101.68417749555994 None 2083 691078 XLM_20210401 9251273821.656511 157282.94472138627 0.40719749479961126 6.927541556486427e-06 916052540.8731014 15584.555715271188 462513 164840 26281 WPR_20190510 5052663.806018405 817.4869989014558 0.008405582655606179 1.361330826692462e-06 286354.4023237436 46.3766869251368 35225 None 1010461 STORJ_20200129 17481092.841542028 1876.3045664061747 0.12536212393671767 1.3439356756964365e-05 938370.0090515586 100.59728509422676 82493 7919 131824 ADA_20210814 67891752772.817406 1424881.0536127766 2.1375385491756944 4.4775354449251604e-05 7460225847.358434 156270.51812270563 545981 560997 8000 FUN_20190511 32276319.304824468 5065.235401852235 0.005377286469414303 8.439366598258998e-07 384491.8391500474 60.3439597849715 36521 17707 471824 LOOM_20200905 24449645.49183191 2330.844377957195 0.02924524761938992 2.789179229517586e-06 8346967.113602064 796.0673681316191 22467 None 451154 COS_20210725 37069785.60047931 1085.057710544909 0.012321773481536636 3.6013506531018726e-07 3388495.160201762 99.03736078666579 None None 345679 OM_20210704 32288999.394484334 931.4073772446923 0.10313342816054426 2.974241048871317e-06 4213856.176569551 121.52242234092493 45821 None 75678 POE_20200310 3909460.352215981 493.7908757384641 0.0015864570986037338 2.0017935927485156e-07 63945.59259735401 8.068663039079354 None 10459 759696 BCD_20190826 128477412.70779586 12726.363511225358 0.6836897736473344 6.768803551187994e-05 4601741.251031805 455.59087940518884 21397 None 2670030 CTSI_20201101 5895137.592693294 427.34791924497307 0.029707832894774883 2.1529798837789585e-06 1214561.3184011953 88.02143513449434 17485 150 428583 GTO_20200901 8708449.49477547 745.2565723535812 0.013096793026928729 1.1220886555711582e-06 2160534.233707563 185.10722041889795 16603 None 1248781 CND_20190803 18145847.656104166 1724.3553432051121 0.010405964048017214 9.88853210247395e-07 1027260.0856767051 97.61800336740349 36100 6131 388996 COS_20191213 14784944.429728879 2052.292262033842 0.011149588358754377 1.5489236531830725e-06 5444016.760176168 756.2939596367305 9347 None 202397 FTM_20191026 23698134.204229385 2737.2102310147648 0.011334283627408456 1.3091459791222172e-06 4353868.174357043 502.8856874822146 None 2184 498287 DGB_20201111 279142478.81950307 18273.033989160213 0.02032507572527963 1.3305062028930468e-06 6874775.030884549 450.03182008859585 177575 23301 300681 TROY_20200224 6610441.34889651 664.4321458496244 0.005678559342402999 5.706703034744904e-07 1794755.5287389671 180.36505748913578 None None 291470 KEY_20190807 4770517.343718146 417.7441548775973 0.001826305940161108 1.5948481466259149e-07 149770.31276246504 13.078909753079477 23873 2830 851050 AMB_20210131 2923994.2565063583 85.46578302892317 0.020821755415435773 6.094564854770916e-07 675481.5690566321 19.771465703444896 20450 5464 398433 ONG_20190716 0.0 0.0 0.24803929613971418 2.268183629352053e-05 9764437.212880474 892.9043494630922 81157 16277 245341 SAND_20201231 22605499.379076216 782.8191331401639 0.03603721169081728 1.249634196602577e-06 3879060.8140134886 134.51115711950217 62265 None 60526 LSK_20210821 745497408.8653136 15171.466065359607 5.152476758292762 0.00010475766948550774 248216331.9362012 5046.614605301668 196989 32662 274824 FET_20210115 52622368.28892146 1349.0128944062835 0.07715493239180654 1.966973943228175e-06 6696404.655223154 170.71693360118292 26719 747 338598 CRV_20201201 92016442.34440449 4674.335512796615 0.6726614690506095 3.426474485184723e-05 55250528.00087885 2814.4101185874806 None None 18760 STPT_20210210 24755830.72223271 531.3885463076132 0.026838306374757353 5.762013921240254e-07 8231105.981908387 176.7166176311632 None None 1418206 CMT_20190813 25909085.976204712 2276.52086080389 0.032404281976687974 2.8475563490181252e-06 1944920.5109750328 170.91169473672738 290470 1646 586149 POLY_20191026 13250313.078689605 1533.0245263369206 0.025035553271584486 2.8916864071883853e-06 3520589.9111089385 406.6393852295308 None 5049 332480 LOOM_20190903 17236108.36577397 1669.76132661139 0.028652996822827265 2.7754631093108677e-06 1640319.8835269387 158.88904578983218 20866 None 439430 LEND_20190903 4285379.064155118 414.9630578753168 0.0037978899699750357 3.6775837372173023e-07 2523069.2519095074 244.31456735320904 None 5821 754376 REQ_20190906 7899091.837508186 747.3445632590815 0.01082039576577726 1.0237333752048349e-06 54655.07034532408 5.170995668535706 41125 29419 564071 KLAY_20211104 4293566259.962777 68093.4998282208 1.7044008407681293 2.7030820378924377e-05 93728589.50140601 1486.4817046444502 49346 944 41062 WTC_20190923 28315151.02971537 2816.713446062169 0.9695544268014031 9.652224516290313e-05 4839934.900073252 481.8310041021055 55733 19853 452938 MANA_20190601 79539944.73469599 9272.942623399616 0.059954012973501294 6.990927296497165e-06 25935084.617073867 3024.1560488469995 44758 6245 128669 STPT_20210711 54934992.728905275 1629.1255272457838 0.048598525232777336 1.4417003822686835e-06 132380578.9783652 3927.138331953695 30732 None 433288 BCPT_20210124 2633398.6101583675 82.47327279637992 0.02275437448957845 7.100053295601435e-07 766311.6350184007 23.91124156 10422 3221 1711405 THETA_20200501 118618250.881859 13707.61211452755 0.11822700895269114 1.3715901100957264e-05 8145458.581952621 944.9812299380063 None 4028 365481 SUN_20201115 0.0 0.0 0.00016576340057579343 1.03e-08 89.75922708643712 0.005577347205588824 39 None 8079244 DCR_20190930 183635139.076343 22773.104783115945 17.561508335854555 0.0021793742093242055 9920817.295197157 1231.1683561045388 40569 9629 165659 MTH_20210610 9623745.827835975 256.3876151903031 0.027630042262655415 7.37712890919113e-07 495802.5817883887 13.237763173117944 21723 2056 450955 TRB_20210718 57050582.238698326 1805.0758199474633 31.962304051430102 0.0010121379178180579 14723411.348766387 466.24057144755193 23218 None 258398 FUEL_20190426 4691461.838539942 903.1821128327796 0.0088484385138549 1.7023742565968804e-06 2113163.2364859236 406.5570086911692 1 1521 None HBAR_20210523 2308106579.3019767 61411.8464570933 0.27880015881203335 7.423570527159963e-06 476559719.92755777 12689.285064830205 None 19037 36966 ALGO_20210219 1121718157.080943 21702.077753926602 1.3997040252794222 2.7073344346230275e-05 793829412.8268582 15354.401114433433 54289 5999 202160 NXS_20190411 23951891.313147765 4510.487221074728 0.4009257976210685 7.553795606157349e-05 565325.5659527676 106.5123222671373 21280 3512 688180 BLZ_20210115 20191394.048961576 516.9871616466675 0.07922477464745223 2.0195460688458252e-06 7240115.7628354095 184.56028927679833 43463 None 444357 RCN_20190701 12770913.33239452 1176.9871683923689 0.025560379012796917 2.3558474902776033e-06 525667.1454886689 48.44965815259883 None 1121 1949015 BLZ_20190723 7488584.242669634 724.0906611198374 0.03591574072670659 3.474012234176565e-06 297581.2361730178 28.78406053192509 36579 None 1258413 TRU_20210813 265619339.75271094 5974.430324508718 0.7181009000777953 1.616909780678576e-05 56590143.68500649 1274.2103067184596 30629 None 128346 OG_20210513 11470110.762193605 222.48323382847497 8.702960272881054 0.00017266479050272534 14815040.387439167 293.9270965946601 658826 None 233476 HC_20200417 46647703.10598801 6569.621467238874 1.042871947636907 0.000147114089853705 28421484.727103747 4009.3137679973333 12669 842 962062 RUNE_20210722 1151419557.0322218 35779.533949578414 4.2848167807752855 0.00013283976521345368 122839873.33282387 3808.335517541117 2751 6047 63469 SNM_20200523 3204312.607723672 350.08299451335773 0.007309795126973313 8.000041227313142e-07 698588.3655170758 76.45543586352159 29550 9631 7249686 SKY_20210206 19870999.078590505 520.7070930496984 0.9935499539295253 2.603535465248492e-05 2843243.728375205 74.50542223763487 17411 3893 739970 FTM_20211221 3513616046.6194363 74474.6600445417 1.3743372397783118 2.9160789616750944e-05 284599255.53279 6038.6481392400665 274601 24904 17107 OAX_20210422 23960823.446883615 442.1870494259266 0.4210968640399813 7.781048848881963e-06 4115040.4883090006 76.03792331167615 13780 None 1298527 FUEL_20191015 3629594.0851724464 435.5408453792556 0.0036722016116402267 4.39975551461617e-07 238605.30707140797 28.587891587335957 1 1497 None HNT_20211204 3540113113.230117 65938.5110693989 35.176700536233845 0.0006559909634018164 25718187.515790153 479.60435027309745 124311 74215 2046 ENG_20200325 8351211.839887046 1235.6894009966247 0.10080904660818359 1.4918641980106126e-05 714369.6760812898 105.71893889963627 61095 3599 414852 MITH_20210427 60925473.936235644 1130.9128464985943 0.09966852461893083 1.848928038739857e-06 142932699.0459597 2651.511858224549 30712 2634 258183 XMR_20191011 961592910.5605042 112303.15712402677 55.73841862198129 0.006509615779821502 119393534.25349511 13943.812074329428 320094 161675 83445 CHZ_20190929 12682014.85658307 1548.3541336412425 0.004213921251607734 5.144526809269519e-07 1998877.5057404262 244.03111265555896 None None 448785 WAN_20190614 50581182.907236315 6150.925846463988 0.47754993828541975 5.8018563538952264e-05 3333058.6154953707 404.940421009106 108575 17046 409918 POLY_20190605 41561519.16806033 5421.106659196378 0.09046400053835572 1.1776943055987722e-05 8449751.734569063 1100.0203884755379 35040 5093 303523 EOS_20210104 2695036461.956951 80543.89921446303 2.7937071488556753 8.486944326867085e-05 2986928387.4175453 90739.27073113267 None 73816 95839 REN_20190901 52444830.22616137 5463.626779267467 0.06372304841620838 6.640123252544466e-06 9152883.460589202 953.756541864202 9545 882 312063 TCT_20210813 17540250.001175642 394.9047038895576 0.030429547408228078 6.844587720603665e-07 4812299.361944091 108.24415059070174 None None 566218 AERGO_20210708 46255059.2193676 1361.2801248852707 0.17450723723425926 5.136107146835246e-06 11710969.258572258 344.67792773876096 21386 None 362973 FUN_20211007 211203964.1303562 3802.4588210613574 0.019765390380518767 3.56299477255568e-07 21814426.67936612 393.23629196561643 None 452 181320 DOGE_20211207 23606751296.776688 467394.0092709586 0.1782806089841317 3.529807535174866e-06 1840846268.6837904 36447.222540489165 2621787 2234112 33845 REP_20200629 174547691.2929466 19144.485973941108 15.869253961341116 0.0017400113321774683 13194601.046457699 1446.7444657654737 133324 10206 234509 CHR_20210107 11812028.423215916 321.72338257356114 0.026118799480646913 7.073585656882005e-07 4853935.65283404 131.4560021748161 36223 None 675741 SNT_20191102 48446090.13595805 5248.136696480184 0.013599389638583653 1.4728693768875855e-06 35771078.870540544 3874.1537706347294 None 5677 336447 TNT_20190801 16590137.042878004 1649.4738580993849 0.038654276299136675 3.838873415959697e-06 763785.1616408972 75.85382092881677 17580 2543 649538 ICX_20200807 218495732.89828712 18571.170935683545 0.39061935557153515 3.3176590127904926e-05 17824259.759218954 1513.873165603084 114654 27805 118730 WRX_20201228 16024615.669544445 605.2806598214014 0.06705050517213801 2.5470639695528315e-06 1154176.8698039919 43.84399956453421 None None 6918 NEBL_20211111 25451098.42914917 392.71276820115423 1.3698917241547406 2.1094574804242024e-05 577707.0264014859 8.8959469339679 40914 6284 937550 GXS_20211225 142427517.05119464 2801.1515154233975 1.8976639518232312 3.7331502760107904e-05 60778995.1420235 1195.6654510515734 91561 27115 757072 OMG_20191022 113221213.80181757 13787.466475798552 0.808209950759135 9.834337252913085e-05 56291652.97002851 6849.595198762773 286316 41760 None NEO_20210805 3079189744.944863 77351.01730050656 43.55431552733796 0.0010952949733937674 392459027.8772067 9869.478955009577 408710 112553 120320 XMR_20190401 939096468.2115973 228853.71666937723 55.656445175197895 0.013559519503688933 283431651.4167273 69052.14648995434 315474 157497 118862 XZC_20190614 91781143.09544791 11162.603531691222 11.931071810102633 0.0014502162525208044 16306879.025059642 1982.0935927992434 60441 3993 387504 ETC_20200106 566179631.1038139 77107.09187559856 4.871036840656329 0.0006631896288571325 890535745.7263092 121246.06937127239 228812 24969 399840 VITE_20210909 65833457.56240561 1420.4443273752076 0.08632934555181852 1.8646885019193522e-06 9407957.544151563 203.20911906594785 33845 2484 491118 ARPA_20200314 0.0 0.0 0.005774617389397426 1.0380291074588095e-06 3035259.961841183 545.6098606429462 12267 None 2543726 VGX_20211125 9189811328.38674 160738.25707558414 456.87636824611815 0.007987496157407067 774425742.4854 13539.160858867215 395295 12923 24645 SC_20210201 329796344.2316442 9977.516888337814 0.007375005233693039 2.2305497513518751e-07 104531770.73522966 3161.534233991059 109169 30902 135248 BCD_20200707 156230697.00636894 16736.369810406402 0.8310909085782666 8.898872553024987e-05 36639690.82793924 3923.1801923792123 28241 None 1537818 RAMP_20211202 108301170.86633924 1894.7999802725944 0.28906671508458703 5.055148767818702e-06 21894644.66196146 382.88976284369255 None None 126392 BAT_20220105 1983916359.8316355 42809.80887749671 1.3034197372284797 2.8328496748323204e-05 294929202.3837914 6409.984989547722 248914 86128 22440 BTS_20200807 70444757.05477552 5987.492787311966 0.02601494880393959 2.2089362968008143e-06 6782157.123625321 575.8747846820082 13118 6948 129258 ADA_20200208 1859229765.536211 189814.5565479058 0.05977410411537365 6.097142256599567e-06 142690306.69238144 14554.849652987266 155574 76448 54475 ATOM_20200730 691361534.0443323 62262.83693128655 3.6312557741113967 0.0003274186834524384 137928521.58849654 12436.572292982568 36985 8819 173745 MBOX_20211207 639824381.8301094 12676.229525592384 7.111687668765259 0.00014083103288611907 501630839.34787244 9933.674329254853 243668 8135 7123 GTO_20200217 9862765.767387832 989.3803776248119 0.014660440401039566 1.4736426897488537e-06 19417589.105248727 1951.8232368700003 16929 None 2410144 ADX_20211216 75581404.01719517 1549.2312444124757 0.5521999067249459 1.1299428081059483e-05 6260753.88389272 128.11110140135736 389 4049 12336 SUSHI_20220115 1352716479.3005848 31379.277370197255 7.016163919707072 0.00016273082019322604 262700404.42216206 6092.995084769261 191807 None 3501 YOYO_20200208 2264490.6972263185 231.208949812065 0.013097270077823813 1.336129067165088e-06 298397.5884315011 30.44128196992479 7480 None 1442392 AST_20211021 42299412.58661158 638.1178386310596 0.24573320710047925 3.707373938452951e-06 700360.688544738 10.566333280166033 46352 3715 201584 STMX_20211204 283386141.0653561 5277.3853594514385 0.030480383561541185 5.684119281396657e-07 41776862.31441098 779.0737544957253 80901 5742 89956 ONT_20210107 470240723.3587821 12807.913317028439 0.5834354365810253 1.584061096550193e-05 183645366.33380625 4986.078358143938 94559 16680 288289 NCASH_20191012 2823455.540587898 341.0685211807973 0.0009729462041021249 1.1754036567818613e-07 348136.6465456623 42.057935545077086 59310 58790 740180 SNGLS_20190818 4078381.799542667 399.2375014986316 0.007066898388538052 6.917868396482681e-07 100101.17291840639 9.799019350642569 10 2169 None APPC_20200313 1920484.6708872693 399.66863016047944 0.0178851260038016 3.6990467823985e-06 110037.12640643494 22.7581554802344 24901 3232 683942 LTO_20200502 9497797.287439242 1073.7794655955238 0.04477048668630822 5.0693878579801344e-06 2412875.0106913536 273.2112198763116 14678 429 912556 ENJ_20200914 148990147.20006588 14433.659751467783 0.16183179136725317 1.5670423663871283e-05 5418288.489739894 524.6612884276731 65598 15869 86087 XTZ_20210422 4149869354.038053 76584.11611909057 5.371587800410148 9.931193925229776e-05 422411243.025932 7809.698224364092 105141 42810 96118 QLC_20200730 6734112.513530002 607.1933211425016 0.028058802139708343 2.5299721714270896e-06 1658801.51193063 149.56881060744024 25887 5637 940522 VIA_20201201 4929098.266263293 251.0558814001334 0.21287404002443375 1.0818026746019525e-05 102361.54846877645 5.201902350197778 37948 2133 7728977 SXP_20210124 72873588.69169164 2276.6644950092837 0.9783202550440478 3.0526551956681856e-05 104924890.80779286 3273.9740532603487 94411 None 143437 CVC_20210828 227781160.1873777 4644.055534122404 0.34154456458391813 6.963891472891743e-06 51511890.15233314 1050.2969444745179 104301 9861 272876 BAND_20200325 6351100.169080436 941.1221522671306 0.3484900806185829 5.157273996027366e-05 959838.7621537803 142.0456926535207 None 1057 702901 STORM_20191015 8422392.205765372 1009.0319680728974 0.0013414370891693336 1.607152762520193e-07 57561.48845399314 6.896343177814985 None 2548 1678605 STORM_20190623 18150651.39436447 1692.5108110641531 0.0031032298215765957 2.8933820938210793e-07 1278244.540034387 119.18066260980503 26870 2576 4259920 VIBE_20190117 8288144.820533753 2304.5634887933043 0.04139100557143512 1.151129785452681e-05 4821365.884503009 1340.8753422620441 20610 None 1525453 SNM_20200531 3506107.3670796137 363.20923504 0.0080161676135935 8.3e-07 184121.1539132307 19.06404221 29510 9622 7285853 GRS_20190228 16528397.161501832 4329.916547421185 0.2279635493892961 5.9791007675983103e-05 1434590.9004212185 376.2690823544798 36262 106998 15092451 LTC_20210310 13596302956.935503 248318.96896593776 204.04812640170505 0.0037266763272332318 6638691323.569449 121247.15005051959 149027 275971 91597 PNT_20210513 81514753.16502999 1580.4112568667201 1.8101561503969907 3.608599448271042e-05 29026983.077865094 578.6614325884788 39820 291 348864 TRX_20190826 1166154799.8550515 115492.65559299543 0.017631549770287774 1.7461785566064716e-06 506927392.9362882 50204.64762510334 456088 71311 66162 IDEX_20210725 25078680.876294028 734.0326559345453 0.043209747987445216 1.26471428995566e-06 5153984.238269736 150.8529399023549 53179 1975 9034089 KSM_20201224 431839975.6635561 18468.741577868906 47.760219116326624 0.002048236674529303 92922975.04272339 3985.0789822656875 18953 None 222840 ZRX_20211007 872160763.7762438 15712.001023512048 1.032137659195616 1.8605759934276164e-05 121959833.67574267 2198.500720110878 None 20227 48982 RLC_20190629 27197134.60089269 2196.8046449848434 0.3873746448764281 3.124588327186301e-05 2369282.0887569874 191.1077881905052 24948 3316 714682 CELO_20210809 376957628.51698065 8569.247442286862 2.822173680188701 6.415729385358215e-05 28817787.73762185 655.1231375558499 None None 88664 FTT_20200312 69075465.69989395 8706.520560210833 2.398072214489465 0.0003020933047382182 3272475.3871079125 412.2448433340339 8091 None 19129 WRX_20201030 20658103.158130415 1534.5623853543718 0.08673818592912536 6.445689874953326e-06 8705300.764611231 646.9084912927216 39484 None 13129 STPT_20210104 15749005.610898154 471.1690433660046 0.01721642202883411 5.230140722745867e-07 2016965.741003985 61.27297902398487 17856 None 1561164 MTL_20200725 22709477.24964628 2380.201733259958 0.3515002212768445 3.685398240278947e-05 3809622.2401100667 399.4300501100162 39785 None 422557 FET_20210210 171834720.38654095 3693.5285989134322 0.24939942744292207 5.352545908965772e-06 44530037.84777881 955.6921375161071 28555 925 293884 CDT_20200629 3777033.365682099 414.2670794255901 0.005606148315459242 6.144993151369651e-07 342947.2132015237 37.59101896382912 18905 290 271628 ONG_20210731 0.0 0.0 0.8221456973896037 1.966937508649527e-05 142907582.14490792 3418.983818606885 141890 19752 172256 BLZ_20200305 4783709.253507602 546.4383032289463 0.022133351690590806 2.5269766866733357e-06 899709.3370129734 102.72029971767097 36146 None 543870 CELR_20200501 7322709.425855768 846.2683274245443 0.0019248183824078083 2.233044615124647e-07 2805625.222220839 325.48973720320384 19415 None 1399236 POLY_20210819 255136190.01944682 5660.23519516811 0.29395676244561686 6.533506225333576e-06 9873233.849861654 219.44327555376213 None 5918 188790 DOGE_20190915 295043684.2499688 28513.38088101486 0.002434282732986516 2.3525204721520707e-07 52720574.388543956 5094.980499676937 138190 140671 101956 BAT_20210420 1986833802.3112826 35507.753040380674 1.3166698364257372 2.354390159065401e-05 744080292.7838056 13305.198238917068 186662 68184 19254 ARPA_20210324 81404284.83740717 1493.2606066921426 0.08220060187924585 1.5079373604006284e-06 40473456.7467959 742.4694727017776 28559 None 701431 KMD_20200629 75165351.00214107 8241.960951928706 0.6244428250034189 6.846809525197345e-05 2527205.3702295227 277.099729681779 99828 8380 202548 BNB_20210318 41811497472.197235 710803.0241588727 270.92343249137247 0.004596419437314043 3265030827.437526 55393.699321823355 2206701 199525 178 DOCK_20190704 6979976.009979943 581.5960811648655 0.013582457587295281 1.131806531340762e-06 2863925.2769000637 238.64674804501743 174 15249 279432 TRX_20190804 1438886110.4156508 133353.91239745863 0.021760780981640977 2.0163684518354327e-06 575821833.1195205 53356.034379456 451336 71295 73072 KEY_20190816 4028809.5592278577 391.1514002109841 0.0015419416162000205 1.4962712253699323e-07 96985.39384042451 9.41128072295138 23875 2828 821396 CTXC_20200422 874902.5818570966 127.82543526686858 0.08543367124756311 1.2480342801050208e-05 5977889.537551572 873.2635454616867 16565 20065 404295 LSK_20200404 135214862.3644168 20094.757710502956 0.973114480656422 0.00014461797594906016 4031945.8256158154 599.2016931486748 177310 31349 155237 SXP_20210718 145180010.11030072 4592.930543786784 1.6768441049125904 5.3154973499905796e-05 80109183.32336015 2539.4140720519 None None 69993 LSK_20191127 91094421.38615352 12708.91879165376 0.6633199430712008 9.26834766516188e-05 4343629.872536361 606.9208714131553 179671 31133 148488 POWR_20190531 50848391.56848129 6117.714793923677 0.12149239097457384 1.4621326752149304e-05 5370688.049982707 646.3498185585541 84912 13211 618475 SC_20190908 77152744.03919207 7369.680164267199 0.0018331638207880832 1.7510499744573536e-07 5379310.663977734 513.8352445067857 108971 30634 202127 GO_20200629 11305055.010323893 1239.9445989608696 0.011415529696156878 1.2507710511089088e-06 1354292.184218878 148.38640902789584 11473 679 961544 POLY_20210114 74115306.1017127 1990.4422876441927 0.09723190272837048 2.601708821909026e-06 5409756.927321402 144.75302783608745 35815 5028 310362 RLC_20190915 14702163.089470696 1420.6130814415212 0.20993029944449718 2.0284751826441968e-05 42293.92557912388 4.086698234646004 None 3309 984845 TRU_20210916 251031296.26358354 5208.86143338942 0.5833133562728894 1.2100333406153864e-05 58079865.50533113 1204.8168094239556 None None 88722 ETC_20191015 547218274.8837991 65557.82917205883 4.788993297819412 0.0005737308473318946 514203404.043258 61602.58249620287 229675 24991 362235 BQX_20190801 14164852.163709234 1408.3399846242419 0.11729300461697702 1.1648724032952795e-05 964479.9736109807 95.7854314039608 None 5776 410121 AST_20190821 5016340.178703358 466.85604478960335 0.029120344951219276 2.710144962766304e-06 441169.6673038699 41.058364987493306 32063 3587 246777 WRX_20200314 19618896.361759532 3542.8768797178736 0.10545985634797868 1.8957169484271176e-05 43034309.70861696 7735.727423077459 20626 None 24445 TRX_20210821 6427544176.160671 130805.64357781579 0.08993623058676473 1.8285400129980333e-06 977265230.0311308 19869.28476727404 1093344 115580 32149 SUPER_20211021 222982865.08720154 3364.139802268708 0.7753041201335841 1.170082258696385e-05 41666588.29878122 628.8285394434657 151323 None None OAX_20200612 2131603.3106810786 229.73664879777607 0.040835855062670505 4.390291387943623e-06 404776.49254359485 43.517804305282404 None None None STPT_20211225 152740290.3808922 3004.9959385010684 0.11595660815745476 2.281050373908853e-06 10017170.418608423 197.05362800754241 None None 430598 RCN_20190914 6490358.455560827 626.7885631763951 0.012787565083413695 1.2353182347490494e-06 1007771.8692523304 97.35387139255147 None 1110 1734382 POE_20190605 12377390.789281242 1611.335179072345 0.004917176888537173 6.4013653904205e-07 227845.44574802686 29.661775116864895 None 10854 931861 ALPHA_20210814 416763210.4156695 8737.232566405157 1.0257086261370727 2.1497769735588756e-05 44519914.369692154 933.090395634315 72310 None 58883 TOMO_20211104 230769677.55862498 3665.1418013047933 2.7136032858950356 4.302838961561863e-05 12107303.045111671 191.98007141548766 55289 2328 131685 SKL_20210420 380341355.1416377 6788.153628402604 0.5682930915640761 1.0155335990083834e-05 99361339.0739672 1775.5763666660905 None 1298 134291 EVX_20190512 12930112.797161374 1775.2098752566592 0.67113068869946 9.214000794903639e-05 1851531.1505784432 254.19802402834677 17213 2390 712033 SRM_20210729 161668386.2575655 4041.173643284638 3.2335313066931444 8.08206439961383e-05 61605394.42841812 1539.7988078961127 97628 None 26595 ALGO_20211120 11706025039.571646 201373.03053156706 1.88993028229941 3.2400083253837534e-05 704629162.5447036 12079.833707809437 189722 56188 73303 AR_20210814 705700446.876163 14794.331690386025 16.097352215350668 0.0003373959034472823 22105579.062212314 463.3266216171924 23866 None 92701 OAX_20190613 9996828.305462264 1229.8806856925394 0.22380087144514682 2.7509887823994942e-05 2730737.9772651307 335.6657860454263 12239 None None XEM_20190702 826499394.8305836 77888.28746868615 0.09185620724820183 8.653463243230703e-06 77997088.163935 7347.842412890924 216975 18474 188910 XMR_20200117 1142256055.5480392 131089.83731246492 65.63548589422436 0.007532588797413119 173193772.22353724 19876.404518969743 319976 164644 89553 SC_20210104 212936129.524127 6363.8122888532125 0.004736201400046258 1.4388006853004288e-07 198142566.5301114 6019.331452161761 107555 30107 159206 AION_20210508 252133489.92960748 4400.208871759761 0.5126813122258463 8.945784294919897e-06 348279260.6078635 6077.13030589194 73201 73217 250319 KEEP_20210729 107668652.05821145 2692.591355849312 0.24708423920721417 6.175758154154159e-06 6093348.752511803 152.30048005154637 22261 2828 132886 BEL_20210902 120285843.77524455 2473.223775041054 2.504800523836708 5.148059446530117e-05 11488834.751314785 236.12740299388938 34027 None 418669 XZC_20190520 55745074.86743347 6813.996307462056 7.411985379334783 0.0009071064627869169 5722449.257009522 700.3347198277128 60346 3973 368691 CFX_20210616 289445836.8184133 7166.848177092914 0.34304050076300785 8.499286615121293e-06 2411957.6124826525 59.75947156798328 34425 None 134840 POLY_20190312 47989487.61303062 12411.618797048624 0.09931084598504197 2.5716934177017832e-05 12276782.152728308 3179.1210254603466 33100 5001 264578 NANO_20210723 473352594.3118364 14635.889320868739 3.5567934035230695 0.00010986355914711139 12340151.126197087 381.16718328210135 133916 107503 59418 WAVES_20210718 1309713166.994933 41438.4193864601 13.079263934454472 0.00041460498671129693 72369689.53155011 2294.076663403651 194458 59151 108854 VIBE_20200530 2239857.2121221623 237.65727424 0.01194701175142886 1.27e-06 358834.9899791658 38.14514012 18997 None 1044807 CTXC_20191220 2230709.859452317 312.32305055279903 0.06470425577027665 9.055160952770889e-06 3183018.686489792 445.4536441030023 17253 20063 609242 WAVES_20200721 159641596.2042411 17425.75563246055 1.5964159620424112 0.0001742575563246055 76182732.15949948 8315.762968983414 138941 56876 125564 MDA_20190903 11740023.832852334 1135.331220685907 0.5980992826925465 5.783981347725389e-05 2000045.4651287722 193.41647782671268 None 364 3117488 XTZ_20201129 1748955694.6587873 98805.28570231317 2.3225128152638397 0.0001311259908142231 135180103.1223276 7632.089193992416 75888 30567 151590 ATOM_20210930 9421923674.474642 226824.87864461704 33.72096192881218 0.0008112517473104355 878280646.3414807 21129.489439762343 None 39683 49664 POLY_20190603 45624670.14257399 5219.139510972122 0.10247026314340808 1.1718287894293391e-05 6765667.382670485 773.7077641364817 35057 5090 303523 RDN_20200913 18886329.251834966 1811.2075799989132 0.2838071853535141 2.7179536042015133e-05 1766832.593603344 169.20533600385303 26446 4390 895755 ADA_20200113 1163393929.42041 142625.91545062722 0.037372044999992096 4.584209305228478e-06 94947456.45599155 11646.646936056732 155109 76109 69067 MITH_20201226 5350659.404972942 216.66878903170544 0.00888417775159649 3.6014190343752297e-07 4776241.529063282 193.61664789350803 131 2112 908145 BNB_20191019 2832784900.526111 355941.6841720669 18.213555330073554 0.002288577811246204 200783188.93368834 25228.8991763278 1051524 56888 1996 LUN_20200321 1521979.2963716844 246.19262150007597 0.5633620305044125 9.106965659805038e-05 2368706.705617579 382.91062333211784 None 2149 2364106 GRS_20190830 14978019.085421678 1578.4361366512512 0.20441208146253761 2.1541661437900693e-05 615950.9582382223 64.9110703720808 38478 107006 None ARPA_20210310 58387391.55366839 1068.2377085184066 0.05912257057486978 1.0808430290292462e-06 62053500.090182856 1134.4245073783748 25640 None 841021 ZRX_20200907 332115173.40067613 32341.015320768478 0.4611076397318068 4.490216176632957e-05 78689815.10911526 7662.728835824862 158355 16295 45992 LINK_20190614 670293193.7759259 81519.03887274695 1.8366071279778158 0.00022323874576244575 307545400.5074281 37382.00098889989 17211 7410 252422 NAV_20190507 13364674.860955948 2336.557269243188 0.20559699372226595 3.594469414439202e-05 114143.7211389616 19.955842109175805 48657 11306 1061172 AST_20200621 8907871.657777933 952.1763125339932 0.05168431366616144 5.521749243139457e-06 1624057.3094372188 173.50790952016305 31982 3455 357121 RSR_20210804 475454208.9813204 12374.96833565061 0.03612664245032199 9.40417489512465e-07 118181858.75763875 3076.4078635761734 77353 None 131143 NULS_20210602 65404078.85820676 1782.5136910182637 0.5795060518055255 1.5801358549686892e-05 36891340.55751156 1005.9140844373283 None 5367 225634 SUSHI_20201111 89856970.43078105 5883.396145257278 0.671140148919757 4.393068142922362e-05 32027446.909807615 2096.4139449126496 12069 None 57761 MTH_20210823 9201285.18577418 186.47753861726193 0.026442386551256136 5.36561867244012e-07 501747.4437625094 10.181325531576604 21841 2053 1319394 ATOM_20210107 1611358087.9490366 43888.44625308549 6.736810297044329 0.0001829083123391092 665881171.2281265 18079.060546080953 47518 10057 104708 BNT_20210725 716957041.2790455 20985.817780376754 3.036701994364845 8.873977499677763e-05 42040576.970805615 1228.5273128699962 125407 7622 38654 KEY_20200109 4205419.20390161 522.6822440735422 0.0015533952457339184 1.9358674712875674e-07 1420275.1601474104 176.99709654435682 23594 2785 310211 VIA_20190227 7849041.678769301 2060.767594922852 0.3394518972681961 8.909658767276512e-05 513122.11331265164 134.68014090807836 40583 2226 3168832 MATIC_20200629 69795114.99133834 7652.8350876528175 0.020000761536225924 2.1923170017348675e-06 21700409.158315845 2378.6182269215706 41745 1929 129897 NEAR_20201129 208875741.56559694 11802.089951256738 1.0210661564167025 5.764803990190287e-05 21757031.337974526 1228.3731106318644 33213 None None TOMO_20210624 128812143.01462959 3820.6874724045956 1.5714460127105976 4.658732085649621e-05 8223403.286570524 243.79222979668506 49507 2185 106191 POLY_20210616 184633491.99512038 4571.8167500094605 0.2140628363362909 5.303753027711277e-06 1977075.6806713322 48.985248008681054 46847 5639 135189 AUCTION_20210427 117863386.67746986 2187.2067320142037 40.36350554294491 0.0007487741734466043 6981335.067235444 129.50915249324058 None None 33253 SYS_20210304 95885209.62870856 1885.4483655313356 0.15672732787459992 3.0932083953898642e-06 4800706.341901009 94.74789982032334 62045 4713 264718 GLM_20210731 381046842.4955765 9132.299290289058 0.3792575798379834 9.073525064857991e-06 18240523.518448934 436.3943033425494 158764 21035 225569 UNFI_20210202 25651957.63908868 768.3644428847447 10.521865481600752 0.0003150139386422837 18982251.425579723 568.3092790272253 None None 111570 POLY_20201030 30354560.16326533 2253.4761032234946 0.042133481062218786 3.133355431252584e-06 2866881.1116442014 213.2023577320994 35357 4995 316638 PERL_20200229 9363081.4230573 1069.726119464699 0.027177999200402155 3.1192150348726373e-06 1495191.460347348 171.60290751129358 11431 448 1012589 EVX_20200520 3746858.711512565 384.839972159216 0.17173529502957896 1.7602059725671988e-05 419653.5835102158 43.012517838961585 16644 2851 1534035 GTO_20211111 31715452.78991411 489.28153035613656 0.048030627266905 7.394298495052841e-07 10322505.986519208 158.91462349042803 13493 None 1278658 DOGE_20190901 298721760.4495636 31119.24500174859 0.0024684516543326002 2.571621863113535e-07 47715637.17309637 4970.993681458344 138194 139929 101956 ADX_20201030 22016049.2419071 1634.4456152586806 0.21477951676939583 1.597271561610671e-05 2892232.311108792 215.08943169220518 53030 3747 13156 DASH_20220112 1496606583.669232 34981.33927273754 142.2042211156893 0.0033238488719375694 250489188.61369327 5854.8768839205895 422301 43853 66112 ALGO_20200223 270075353.8593681 27978.99079630246 0.4480205950784371 4.64128203459748e-05 180903284.0271313 18740.726908052362 15307 787 415248 STORJ_20210523 147909609.14814562 3935.2929751393735 1.0324170911814707 2.7473539074290597e-05 48969811.71114928 1303.1303404395435 102737 13397 51998 DOCK_20200309 3546158.27185655 440.86027545759725 0.00636375316974211 7.910617194280642e-07 1272236.5965639157 158.14844522606532 43145 15028 375776 BAL_20211204 205801000.91183937 3833.270616694159 19.016519385559164 0.00035444577574640835 39574395.02210579 737.6206370318718 111502 None 2445426 QLC_20190807 3762493.844364595 329.47366040204327 0.015720111715079258 1.3727815522154426e-06 180013.34388497123 15.719926303122781 24882 5761 940522 PIVX_20211125 51295380.21347333 896.6561224603746 0.7572929751989096 1.3242308183896042e-05 496025.57859235076 8.6736887755891 68665 10344 257692 MITH_20190430 22950974.33898535 4409.67849496795 0.04312627631837691 8.286059823406943e-06 5851533.849219341 1124.2834687459745 74 2027 526151 SNT_20200730 104176667.36889154 9381.984058974955 0.026851202097718973 2.4193306055323287e-06 12343935.998585574 1112.2057792953456 110932 5722 140990 SSV_20211216 0.0 0.0 8.240708859966583 0.00016862736296131608 756663.7339014814 15.483402249061765 None None 361558 SSV_20211230 0.0 0.0 6.711666043158628 0.00014411506124098814 623649.7380690274 13.391208623432378 None None 361558 ICX_20190325 159580468.04598436 39959.813546694466 0.337050202325078 8.440538665098348e-05 26685080.646605965 6682.578839151959 112498 23566 270821 ETC_20211202 6287921193.361005 109990.22859444609 47.87595141854599 0.0008372463662957204 2395835465.05334 41897.9566551504 581456 62297 219674 SUSHI_20210703 1412295580.3983064 41761.38822253021 7.440228380591624 0.00021966663437045198 150126819.0692111 4432.371076094991 110438 None 6114 STMX_20200914 18597575.546231795 1801.228018139989 0.0022933888296372503 2.220724017374858e-07 1165096.3855539213 112.81809227114259 21426 119 160167 MITH_20190723 11995522.47793939 1159.878225317601 0.02758894128677972 2.6685881348670836e-06 3484974.3829122456 337.09018377634453 75 2077 572627 DNT_20190122 6738354.22352873 1908.0219444628904 0.011618832247630313 3.2901908922324215e-06 1084706.5412430894 307.1643954125276 60264 6543 537326 TRB_20201101 31377938.666446008 2274.6367813233373 20.575652316401275 0.001493074002325678 21698009.138672218 1574.5179228826862 10238 None 195331 MTL_20190405 25584974.412183043 5223.235787801005 0.5656118230122157 0.00011555412442956028 12694732.878317755 2593.525599958115 33309 None 724341 DCR_20200325 132085941.95165777 19544.133428727226 11.727252703543403 0.0017355057941813034 32518743.927796826 4812.420260129393 40732 9749 200827 CRV_20210511 1086049069.3645067 19451.57650856675 3.094633097228833 5.5384533776751115e-05 450138581.55013955 8056.113500630293 None None 25483 XMR_20200313 563911553.2941852 117134.96350782152 32.51244849562076 0.006784631271980212 167720651.06680995 34999.60251649555 320722 166718 88356 NPXS_20190830 92220771.11475608 9723.67841037475 0.00038994321452770714 4.1093582371754326e-08 2639280.553238608 278.1366331711709 64893 5464 188042 AE_20200229 58673367.45427661 6709.4923291830655 0.16766600728150696 1.9243003390102494e-05 14194650.417339059 1629.1179740659493 25451 6342 480371 MTL_20200625 20120799.173526045 2162.635479517424 0.3107254276924405 3.3425018656701414e-05 2986297.621743322 321.2387684603451 38375 None 365486 OCEAN_20210825 379475445.5365368 7896.727570148424 0.8716109061522125 1.8169644981948457e-05 88723369.78373857 1849.531848665442 120432 3415 157087 MTL_20190915 16887687.27367038 1631.0774931360957 0.3345774210301873 3.2321506131963764e-05 4556580.744799621 440.1837757920341 34378 None 253517 DOCK_20190103 4774372.537149718 1234.3352378414947 0.009306089253956863 2.4059358173827415e-06 211920.908219075 54.78865392568227 97 15427 153340 ZIL_20190515 153472269.8357724 19208.55274032016 0.017483347157417076 2.1875618066642324e-06 29057804.192242563 3635.7879337487575 61048 10270 201594 GLM_20210703 293187432.5643344 8674.67504139138 0.29362429556137587 8.671372945285576e-06 6383303.26710052 188.51302187396251 158478 21010 170065 DNT_20190725 6548617.340407272 666.5958361769883 0.009770307227469013 9.963720607363185e-07 346863.10576314345 35.372962122517755 60586 6335 724607 RLC_20210819 299650346.2209097 6647.788523433795 4.19516417842812 9.314955472277784e-05 53826486.54334671 1195.1649662690902 46462 7782 323230 OMG_20200701 206253448.8797298 22545.7794955181 1.4700606448059024 0.00016072911141099932 66886780.78392762 7313.067578897359 124 43082 490885 MANA_20191022 40202061.909420185 4895.123646301242 0.030277431600096695 3.6841723270999117e-06 7615806.019015659 926.6949110613738 45870 6406 85405 OST_20200913 5863983.566156035 562.3586956676062 0.008493597279440285 8.134172264937312e-07 414608.89940661227 39.7063823418255 17659 749 678146 XVG_20190930 50558900.840955846 6273.7772110290625 0.003166797573024111 3.9296310076200615e-07 2346402.9204071243 291.1615744228658 301819 52638 284381 RUNE_20210420 3387757083.0950804 60544.39064173627 14.14155719691095 0.0002528708578047958 263482159.79906824 4711.4302079267845 824 3715 83196 ZRX_20190321 158683855.38573152 39264.13959710563 0.27072618862787373 6.698747542425159e-05 18066245.553495213 4470.244220394764 148379 15725 207676 DNT_20190701 10189237.14572298 937.1548875186562 0.01593845551130748 1.4690146181485062e-06 1845114.3406475217 170.06038863952017 60643 6367 784792 CVC_20210128 90437874.66699283 2989.5611725974295 0.13521454389267426 4.4468055141112025e-06 16551258.892202584 544.321839858797 None 8140 160531 POWR_20210125 47993296.743095614 1492.1089913245576 0.1111928595765044 3.4465687805360257e-06 5599154.0198712675 173.55313565817164 81109 12528 393579 FIO_20210221 33881264.60942871 606.3915062389095 0.15534465737864356 2.7632999473954223e-06 4634284.356163452 82.43552069118294 55437 194 607665 TRX_20190708 2320911847.7137847 203172.55490516577 0.03494011859623054 3.056749161099756e-06 1084432634.8278992 94871.98899024329 441450 71229 89082 NULS_20190623 68689060.6168256 6398.2321905747995 0.9621119335681676 8.969476224849592e-05 14016310.74942826 1306.6979177864348 21175 5317 640711 NAV_20191127 7747852.900275072 1082.1034623563378 0.11603170144182211 1.6205561397382095e-05 3076534.9856364597 429.68409478959336 50388 14114 527775 POA_20211104 4069208.728652313 64.535317982465 0.013874391494312603 2.2e-07 2092329.8323557219 33.17713525 20618 None 242458 EVX_20200903 8704939.135992175 763.0350579117921 0.3970800249705239 3.4790496898739105e-05 477250.9385558036 41.81473822305352 16911 2831 827179 SNT_20200329 63868272.218823224 10241.070741873073 0.017144449340145418 2.742204912681887e-06 48388071.31863661 7739.531568066181 110275 5626 189796 CAKE_20210430 6756647985.533653 126078.13999346869 42.46465072844989 0.0007923355569972283 1738367482.128343 32435.692831337434 494398 None 2459 ICX_20190922 105755435.57892111 10588.624590814892 0.21118209793251133 2.114690474329103e-05 22892909.36690643 2292.4015738941866 113476 26294 187595 REN_20200312 66993100.15763369 8444.051704968771 0.0761772296452512 9.596304444165935e-06 12031893.102910236 1515.6984546810008 11304 873 409604 GAS_20210115 24886110.619081765 637.9736452080256 1.8028284178763925 4.596098281917125e-05 4125174.8766895304 105.16646495784478 None 101433 181319 UNFI_20210603 26441911.57255303 702.7007274141815 10.853163629380887 0.0002885356876167699 12967213.197328134 344.7385392988642 18897 None 125869 ETC_20190224 521958688.2216336 126866.09981136594 4.811122447881594 0.0011692314207485516 281713486.5874725 68463.91122548397 225731 24179 470641 STORJ_20201229 45140898.701443225 1664.7010037550808 0.3136853601114698 1.1556871465940537e-05 20034889.047334403 738.130199866976 82628 8539 96620 VIA_20210731 10273829.315878691 247.52747850884901 0.4460404923524338 1.0678123450197922e-05 95254.85248362839 2.280382816111888 38179 2296 1204993 MITH_20210408 70156945.27116476 1245.5733918784208 0.11046251497923629 1.9657691135974686e-06 105000004.10847928 1868.5593483260282 29268 2527 315101 BAND_20210112 181327984.82867697 5111.084005305028 7.989873808153874 0.00022475885654787696 193247659.7182043 5436.1463111584035 44180 3011 375522 AKRO_20210427 127181972.30766733 2360.781411012135 0.04704062833828711 8.726709874514568e-07 44200934.06820273 819.990594134563 37328 None 141631 ALICE_20210804 212782975.746718 5538.011615646596 12.181280895377482 0.00031835783485610077 205589634.66194212 5373.086091846863 None None 36136 TRX_20190522 1900780464.3817635 238869.41524213072 0.02881166777416529 3.62089347315709e-06 854368187.9482607 107372.34024990529 420999 70617 115818 IRIS_20210203 63906443.54850554 1794.2362937260175 0.06706069679044913 1.8882506827581856e-06 10724639.184522664 301.97728672264947 12241 None 896024 BRD_20210206 8977568.344452612 236.8688675921669 0.11824680602163883 3.098583537869429e-06 855416.5882506078 22.415656266341067 None None None LINA_20211028 134095058.59321235 2291.1263050630605 0.04432013575947713 7.567734085803018e-07 32413335.656864587 553.4628919375007 47556 None 142657 NAV_20190625 14948422.920338765 1353.521016177982 0.22840863117725335 2.0681504946867777e-05 965616.5961980136 87.43279230787512 48340 11252 919129 ADA_20211202 49637322980.092224 868267.7218542849 1.5476591321157 2.706445799864014e-05 1454814014.2169058 25440.842861684483 738634 666474 6716 STORJ_20211111 212932494.37582046 3284.9582000570604 1.4879334444803285 2.2912265834506443e-05 86009355.91292366 1324.433719963769 108056 14312 62396 SNT_20190902 54950460.44230267 5649.588936338655 0.015507316046642327 1.594360035375479e-06 22204964.289494667 2282.9680870388543 111364 5724 268012 BCPT_20190124 2733212.201325092 769.3924258604626 0.03257955304159527 9.171063021001477e-06 872641.4210003489 245.64638614018904 9937 1328 1188589 POLY_20200612 25440056.449421603 2741.8391051611575 0.039144498532972416 4.20925944687215e-06 3642589.685304565 391.69246301705067 34781 4994 339744 XMR_20200306 1196469357.0353506 132116.9629311991 68.51309117732748 0.007563162253666305 130845008.45932555 14443.984529889389 320841 166474 88356 VIBE_20210212 732587.1213077555 15.3635135552 0.003924735424193628 8.22e-08 34305.594277800505 0.7184993496 18556 None 1388875 GXS_20200321 20395704.85966078 3299.1723729174014 0.3141441568662515 5.066439133945006e-05 7020176.226429142 1132.1966295847399 None None 697464 DUSK_20190812 8113998.605305358 702.5783150597061 0.11774833126064126 1.0192762218267637e-05 8455010.377763223 731.8992074950312 20320 13254 227094 VET_20190601 426325012.046189 49697.151741809335 0.00768493730125386 8.960803797068148e-07 29672959.60923388 3459.931535073032 108963 55760 213726 COS_20200312 20780424.451478433 2619.239565068655 0.010590228968213317 1.3340871253216492e-06 16417680.715316951 2068.191021713204 10355 None 161709 ICP_20210826 9763740513.03423 199194.29287531166 62.17683549349153 0.001268807340360103 464248238.2464971 9473.649917388611 252525 22541 30297 ONE_20190916 21237371.642764717 2061.35561927004 0.007673712109414516 7.446464327511317e-07 2072230.3944399378 201.08637763007022 70910 None 165581 AGLD_20211111 201494403.2380626 3107.1171525642576 2.6285719320059795 4.047663495612719e-05 28263027.76655487 435.2143624955689 66219 None 59806 CTXC_20200208 2305452.722856022 235.35067812146946 0.10832400285943836 1.1049381082541808e-05 8576923.620204456 874.8725591175452 16997 20064 421913 POLY_20210506 322219982.3627374 5628.524189864069 0.3885382551733221 6.777480401149321e-06 11168224.835087989 194.81331356077797 45807 5520 152972 NMR_20210702 189418886.9715334 5638.278289540555 33.05779548569557 0.0009829044719766875 37390941.36105464 1111.741510140975 29392 3506 578267 WBTC_20210202 3918718210.84341 117384.22200434133 33544.43547898108 1.0043705934572704 314176527.59001976 9406.915363463362 None None 144337 TOMO_20200414 18932584.750115033 2761.8849913034587 0.2687793863631117 3.925266918395921e-05 12319720.697670162 1799.1778593136585 22291 1517 218911 ETC_20190411 772263771.6068308 145413.79982088954 7.039454610994734 0.0013264065450195974 584051272.0861858 110049.63775349471 227398 24383 634838 NEO_20190316 600149143.6621017 152927.05201623804 9.234840415490076 0.002353146067315848 216595640.19322997 55191.11928166544 317745 97806 162875 XMR_20200223 1377454612.3253076 142697.80041115312 78.91527005632436 0.00817524973609087 153337777.82215905 15885.070491156524 320779 165937 77626 RDN_20191213 6199382.001275574 860.1827121458944 0.12253723884379647 1.700169573004776e-05 1085321.6277604913 150.58530989053855 25309 4359 2359051 NEO_20191108 785486527.2206064 85202.98330094795 11.13645700376168 0.0012079671067342194 440881305.8985043 47822.22167422984 323629 98609 158708 ALGO_20190922 125497449.23630364 12566.79723569292 0.3168265071012138 3.1725905291912884e-05 51751351.87334974 5182.2005149898705 12156 616 199307 SKY_20210813 29672848.200129244 667.4381636416448 1.4164477262317292 3.1857234246506656e-05 953002.4928695249 21.43391746168992 19654 4411 730332 ONT_20210430 1376187899.9703507 25679.480576947008 1.6807054029614674 3.1359792880894765e-05 584361519.7535856 10903.43149652948 127950 18590 153956 GAS_20210105 20390580.36643799 651.7416259367837 1.463510067998893 4.677799327685714e-05 3283731.8999823523 104.95752103052288 327587 101214 181319 MITH_20210124 6326392.68198096 197.59827435070525 0.010205656287175608 3.184527565677274e-07 3676612.6275187694 114.72338408420879 None 2127 495760 ENJ_20210204 341499281.3745305 9112.458671240885 0.36793774893086456 9.80923786031411e-06 56376241.49044001 1502.9932755123352 77221 16906 66239 WABI_20210420 31535094.38587417 563.3556103400933 0.5332519333971719 9.5342261127806e-06 5062815.11987471 90.52011084625146 44089 7686 293001 TCT_20200414 3075253.2060550023 448.6178610244727 0.0053078409699455365 7.753374639379763e-07 625407.0825190945 91.35570263593993 None None 430478 BAKE_20210902 553445170.4642009 11379.50826808279 2.8763703563261402 5.9117384572893526e-05 96962469.45733322 1992.8475425424886 372036 None 15741 TROY_20200106 7629472.614043483 1038.8398785946558 0.006600527720561007 8.987657742457997e-07 1281154.5457240993 174.44936313643396 None None 397449 STORJ_20200612 20688013.590983804 2229.6807707419416 0.1438023000973876 1.5463979804688326e-05 5906071.804175062 635.1176235912063 81307 8129 104942 PPT_20200713 12852604.494761301 1385.0059491533439 0.3553594662608743 3.8277657678102035e-05 3182587.6011706963 342.8134334227996 23652 None 1105002 ONT_20210112 445797548.71198815 12584.97060374422 0.5518330383207323 1.5524158904647394e-05 397589715.22005224 11184.988011432199 94808 16682 288289 SKY_20190905 8571156.245105647 811.4223402103055 0.5356972653191029 5.071389626314409e-05 1210952.9913450219 114.6396451100672 None 3803 477504 CMT_20200807 10253229.803079223 871.4791853828552 0.012820565997780895 1.0888929523059366e-06 1804738.6464254598 153.2824052531681 282960 1631 939682 EOS_20210201 2766653108.8266926 83703.67608430976 2.9184352245894494 8.801119923284545e-05 2899266926.945895 87433.14122126198 194942 75377 71191 LTC_20220112 9128769311.538816 213396.24857719085 131.62848476205232 0.003076450396018003 731840050.8278435 17104.72940762925 207118 354994 135974 BCPT_20200325 1611549.8518176745 238.45342559238878 0.01387145961844298 2.0528250861589925e-06 157340.06207843515 23.2846171474981 10653 3167 1690012 TFUEL_20200127 0.0 0.0 0.0024885482772285445 2.8957733537885523e-07 1100728.730045219 128.0851553245445 68474 4019 536421 POE_20200325 2225016.553550406 329.1664942359434 0.000883634301735138 1.3076826170338406e-07 46881.588775584314 6.93796501339719 None 10438 698681 OAX_20190905 3798784.760386943 359.9537617002558 0.07278818228615486 6.891565513425684e-06 141428.53197157997 13.39041535228933 12310 None None PHA_20211225 67479783.46869552 1327.1388958907205 0.37053226986827154 7.289239194329669e-06 5611398.416101784 110.38937387070219 None None 134566 CTSI_20210704 165540917.5516753 4775.187671805773 0.4430914696594168 1.2779325299339419e-05 12267859.964190597 353.8207885826362 46750 3842 120521 ZEN_20211104 1005711359.4103798 15947.113728265567 85.96494037764738 0.0013631074840892991 58811443.0286091 932.5466613507169 None 8488 2528840 VIB_20211104 9943028.595814787 157.83650942594628 0.054519952935269414 8.644984286825132e-07 1217356.8101408344 19.303080667773276 33052 1304 4568126 GVT_20191015 5206284.456038117 623.8027935924256 1.1736089228487891 0.00014060244313479024 432216.39887224813 51.78103238755704 21156 5690 113794 ELF_20201111 58539735.42303921 3829.3003514072893 0.1258480920237502 8.239017579366175e-06 45097318.041872926 2952.4293150120834 39681 33346 424990 ONT_20190708 903801344.2330408 79118.74309893872 1.3886927658112902 0.00012149029875865717 127746368.90613379 11175.938195856372 80946 16276 247326 RVN_20211011 1069230624.388332 19540.783231751346 0.10869958412302146 1.985972673762017e-06 61448040.299876116 1122.6733742943143 73474 55178 54487 QKC_20191030 18281993.724340547 1943.0675759110877 0.004900729667779146 5.208649045256502e-07 4389518.716820762 466.53180288283477 50111 9231 305114 LINK_20210616 10728550364.53701 265655.8446135369 24.744773126113188 0.0006130917801232638 1270307654.737525 31473.926933092513 373410 60620 25533 BNB_20191220 2041771179.9406009 285919.4879885047 13.307270666913366 0.001862935603083804 157559456.8116397 22057.349628181233 1073602 57973 1581 DOCK_20210128 11207402.536408952 370.4819523815647 0.020361098705844793 6.696161773128499e-07 4602649.548230367 151.36749939294887 43381 14853 234839 TRX_20200719 1153594024.7081099 125795.75926435734 0.017420321549745946 1.8998162050384238e-06 350748248.1430536 38251.71675552277 514069 73673 53101 OMG_20210703 577757363.4169524 17093.482339963102 4.139069375099341 0.00012223584608104808 127680176.44808975 3770.677169559443 326239 5000 166792 DEGO_20210718 30800973.301050164 974.5403106308705 5.6860735603223365 0.000180058691784063 9350492.702816857 296.0984351933335 None None 198268 BLZ_20200417 3299674.449547742 464.74023986412 0.015031396082346292 2.1204234699146715e-06 150322.02729447922 21.205372606388906 36107 None 563523 BTG_20190726 371252392.0542258 37478.20380204386 21.195257049018284 0.0021433927435913214 11709352.75725718 1184.1206584101578 74939 None 299895 MATIC_20210206 271855685.04491854 7174.221471256441 0.05542882145256626 1.4521201044060592e-06 120227756.34617662 3149.7177375008623 81808 3059 42218 CMT_20190615 34603205.11054517 3978.3793548460376 0.043353056641729566 4.993128028449433e-06 24051349.635042716 2770.080757562422 291450 1644 806904 ADX_20190131 8139624.229361891 2353.59909797841 0.09351120830609105 2.7039073219887574e-05 219743.70470190057 63.539614434187776 54480 3953 835719 BCD_20190401 166215446.92336184 40505.98003921149 0.889833137324936 0.00021684575260500055 5252080.527647267 1279.8931698402873 20962 None 3375137 BCPT_20191108 3555521.310569754 385.6857016788208 0.030609177966632088 3.3203351212597922e-06 1126596.0251380783 122.207670974224 10815 3134 1601179 DEGO_20210603 43762724.99443079 1163.0058818869315 8.078027973369567 0.00021452417395599797 9584432.862396 254.52901988213478 None None 76234 AUTO_20210620 34294639.64120827 964.2568605990406 1344.9468248691019 0.037778573242431175 9655283.422654895 271.20985396184744 None None 10402 STORJ_20191102 19651323.7997035 2124.408967440373 0.13661699058333543 1.4775343697803555e-05 6040808.5334887775 653.3230011422072 83116 7829 141245 ELF_20210108 58282308.8104692 1488.9743921686756 0.12840626065774835 3.2538875133980917e-06 30184998.53001333 764.9049922148276 82074 33336 479481 KAVA_20200127 15051714.89639268 1752.2174821064048 1.0992778990504246 0.00012798133193771697 2288205.762397754 266.3999899135519 None None 259913 GO_20200322 5600024.414803697 908.8526730957899 0.006007979981380111 9.74980804623779e-07 1353841.4473769085 219.70270004017988 10674 678 690987 OST_20210124 10499196.016622705 328.0083666294457 0.015250116450915787 4.758497739202684e-07 1908956.5205003414 59.565219165861556 None 733 753771 TRX_20190314 1459235747.8463151 377317.31251845765 0.022265580714511513 5.759636700987965e-06 99317278.60421208 25691.287832355847 398301 70232 78443 ARDR_20210523 276172479.9782995 7347.097858232758 0.27554042648978405 7.3315267331428025e-06 36859688.450713865 980.755509071345 72166 6899 None POWR_20210218 95472292.94774538 1829.3175371844102 0.22076422863779577 4.233023079644175e-06 18736505.560543247 359.2613756270585 81965 12728 332813 DIA_20201124 44435241.360036425 2427.0014667436026 1.7601323718681796 9.587185263251736e-05 31591571.705294456 1720.7470048090363 None 180 160467 VIB_20200324 1934416.1366090628 300.2700508843979 0.010606171703815073 1.6447428975507764e-06 1134234.78526705 175.89047766895712 31437 1105 None ARDR_20200913 67909256.4299743 6512.528631581974 0.06804063500583889 6.516389065310226e-06 4395381.085137659 420.95452575662364 64182 6280 944701 ONE_20210212 175119865.439043 3672.548469707828 0.018470182116470293 3.862312230705538e-07 33422541.038564935 698.9010082331353 81967 2406 152986 RVN_20190716 165993132.72028324 15156.39255699591 0.041662400749193716 3.8097985605312152e-06 18635467.60345858 1704.1115339916314 26697 6781 272876 ZEN_20210731 654824735.7076516 15693.754158942094 57.63209622547028 0.0013788156056511861 26796339.509060793 641.0874063104404 117210 7450 1272720 ONG_20200913 0.0 0.0 0.15850613939073804 1.5180537861982387e-05 7695618.49501743 737.0290411717032 90922 16627 197799 ONT_20190314 620039082.3426346 160366.10067839868 1.0132684162330747 0.000262111194534636 95630445.0656178 24737.581659963893 68965 11191 256269 POA_20190130 5842187.612939802 1710.3888998413393 0.026484977047621115 7.758457121424785e-06 140869.0268168285 41.26589584465465 16409 None 743253 RAMP_20211225 77472800.3772342 1523.6736318500875 0.20666453546406113 4.064988952584115e-06 5106264.230267944 100.43768582938239 None None 153760 HOT_20190906 145414158.21649662 13756.682711944455 0.0008185804930760115 7.744709058646404e-08 9480496.170373177 896.963526399764 24310 6652 436903 OAX_20210725 6476968.21576991 189.71105734815143 0.11272990482303517 3.2989926463363478e-06 287001.89790705766 8.398988291228347 14071 None 1430084 BAT_20200610 370912365.37926394 37945.52494919675 0.25144517748809825 2.5748908709743813e-05 83750823.54473287 8576.39160695879 118397 39957 20169 STORJ_20210430 278689125.4171306 5199.230439917051 1.9382021679834722 3.6159142181847985e-05 108481963.93487838 2023.8418999234257 300 12889 56587 POLY_20190421 49117237.34393901 9245.625703009044 0.11342714898264007 2.1361205877017783e-05 4809381.440435107 905.7283728956817 34490 5049 292756 WING_20210124 13376350.926268516 417.79636405884287 15.009872896499266 0.0004683660512092856 1831571.6158071416 57.15211388649907 None None 403766 BZRX_20210616 45894065.74680528 1136.3639050826025 0.3259535301412909 8.075716838284061e-06 13068235.634730121 323.7742831510598 27176 None 126012 VET_20200704 658067372.154968 72561.09910817753 0.010225868217193438 1.1281685397122437e-06 175024093.70042804 19309.526781547378 124788 63665 180669 LUN_20190130 4797160.182191202 1405.3900479844515 1.7591279003091411 0.0005153154696381495 5544433.791931166 1624.1755376994106 31903 2265 1568258 MDA_20201015 5050865.036709888 443.27699844979855 0.2577886189309032 2.258427175751955e-05 42580.2189051677 3.730355665960313 None 371 2440622 STRAX_20210201 75485406.00824106 2284.0958678013444 0.7531482656449334 2.277875911179759e-05 20136250.830900967 609.0152869157215 147005 10325 249759 ARK_20190123 55793344.86880902 15620.912322298862 0.4010641462802867 0.00011228916064081347 198669.3565280805 55.623060541538095 62743 21788 157332 SKL_20210707 301358000.57609004 8827.314803418585 0.24817882604451288 7.266591727681782e-06 47616695.724627204 1394.2006768541028 27139 2292 152464 HBAR_20210203 661111097.866694 18561.344680010974 0.09182753266050961 2.5856188429420224e-06 124683176.15421784 3510.746290593146 48135 7753 141603 POA_20200127 2607515.7028401457 303.84628645681414 0.011859926183958296 1.3800679912729502e-06 39290.92454900393 4.5720476229392 17505 None 390199 MFT_20200325 5930328.39013913 877.326239544204 0.0006093199831505348 9.017272740687929e-08 935610.5880719499 138.46018651969743 18380 2517 872119 VIDT_20211021 51642385.72984362 779.112311016593 1.110613314446158 1.6821903935519868e-05 17193515.70481789 260.4215758430117 33999 1803 421047 CITY_20211202 41893532.8149035 732.8115239456538 10.937120999921214 0.00019126127051230027 5384883.12530472 94.16733966035908 None None 33797 RDN_20200308 7102754.083506132 799.0842692574711 0.13915747103641735 1.563491222963923e-05 1199467.8630439695 134.76513061995502 25187 4328 1576973 VIA_20200417 2848083.4263457526 401.0813366698823 0.12268281614877428 1.731434246461563e-05 32151.263775807405 4.537538419475564 39214 2172 2765618 EOS_20190729 4327105819.360207 453292.3323020507 4.246024971676753 0.0004452520266586265 2209412922.7439957 231686.24493252643 1235 67506 92954 STORJ_20190321 36702884.02867692 9081.624331695752 0.2703511835286332 6.688046357075085e-05 2885598.63559551 713.8499336634643 83360 7645 210414 ZEC_20200610 485586744.1999671 49675.31819541221 51.919097523249285 0.005316706073958051 278618215.6394428 28531.527512438784 71956 15823 168070 TLM_20210624 107677873.60471386 3194.049602553754 0.08693135236940729 2.5794511498064196e-06 15861861.12967465 470.6575339486806 49936 None 11143 KSM_20210523 2827451797.6779475 75230.07699078738 315.82520882144127 0.008409710737241586 370661718.9743021 9869.882931685055 66760 None 94306 ANT_20211216 268105592.9826491 5495.53020363063 7.152040055931941 0.00014635023211224057 160431826.33122125 3282.872416561914 94135 3419 53298 ADA_20211021 70402677877.701 1062095.269024 2.193571636731407 3.310519302898556e-05 1964178910.7142134 29643.21788895312 665746 638746 6822 KLAY_20211002 3097665023.9988728 64328.858854058824 1.2357287275654916 2.5657902886614925e-05 20435722.442075122 424.31463325254094 45225 780 56405 GO_20190421 19784266.558180086 3725.7941640036374 0.02798566800767367 5.270410314282705e-06 836167.0260038165 157.47143563288273 9418 652 898159 RUNE_20211011 1977360092.8294299 36137.35340511753 7.532396508127611 0.00013761905120218104 37514513.03988027 685.4009458064904 None 7446 89015 XLM_20210207 8327416898.497365 211604.84506813379 0.3786027310892537 9.639171050042227e-06 2179349111.100611 55485.91474556466 364469 139195 30646 DASH_20191012 632727871.3396924 76558.48395475736 69.60857134460677 0.0084187297998488 355852561.0342298 43038.18483933731 317942 31189 73595 CDT_20211021 117611256.54124802 1773.7988470551543 0.1611536355531648 2.4313229603211527e-06 276392.82059976313 4.169935158369018 22754 343 548875 RVN_20210125 136649490.91044268 4244.081075993028 0.01721816973814154 5.336997942445971e-07 9874057.161256067 306.05937538460773 35400 11195 190837 ATA_20210718 78700667.27554385 2490.0827640712987 0.4565349157914032 1.445691456838758e-05 66856339.30762098 2117.1138335606124 67744 None 91785 CELO_20210710 375620390.6864114 11074.81297129747 2.994500245113887 8.811249773340848e-05 17277370.467613067 508.3827488913486 34094 None 78561 MDA_20201229 10868061.3047761 400.8205216922912 0.5524991256307004 2.0347528621662784e-05 247701.55792888557 9.122393693989949 None 369 2990723 ALGO_20190818 174667945.51884454 17087.29947213328 0.6814845993631518 6.667184153729781e-05 63549276.9315525 6217.231211607359 11510 560 206614 AMB_20190729 4177467.838687639 438.2123903580199 0.02889162230690843 3.0307036131267525e-06 241164.96214547355 25.297974422124913 19376 5648 802250 OAX_20210221 17071339.293636467 303.5697498061147 0.3033552603655141 5.394391084819883e-06 1189771.3782765076 21.15701606168118 13267 None 1071767 VIDT_20210219 35628149.148864396 689.3454414125994 0.7695266919825188 1.4882730091044767e-05 4453464.672490685 86.13049213397215 24497 1285 None POWR_20210202 48524958.6068367 1453.2894671445335 0.11319906192373587 3.3890646491883063e-06 6476983.383073578 193.91428730870092 81189 12516 369771 UTK_20210324 274935003.39369947 5045.387026253548 0.6158480226444651 1.1297487128362633e-05 37682879.8141233 691.2774483412887 66403 3610 72941 EVX_20200411 3167947.045352403 462.0253055752211 0.14540591629512317 2.120084798334677e-05 547193.5271517878 79.7833202541118 16725 2862 864914 FOR_20211202 42674538.525218725 746.6190264509714 0.0756537458177935 1.3233586236975372e-06 6672267.694827607 116.71336162038209 None None 182672 OMG_20190405 298052479.35263866 60817.45511556274 2.122490464605717 0.00043362340967598064 133052560.78897451 27182.550893651918 289604 37007 None NMR_20211021 254590280.70895684 3840.682168572123 43.43891561874599 0.00065778032630888 5890206.2891094005 89.19333642861429 31276 3663 2763192 WTC_20201115 9108001.052454839 565.861132645166 0.31239102703139343 1.9430363289194468e-05 1504557.3349622076 93.5817391605172 54959 19274 755936 BTG_20210429 1626711688.7386544 29718.198080293823 92.96791415840364 0.0016979778975956758 126296701.54155147 2306.6991412908606 93852 None 172941 ROSE_20210616 117704748.71034288 2914.4539625805014 0.07838681075854563 1.9421600311795203e-06 11314712.521494593 280.34030484060185 21295 1609 217403 VIBE_20200901 4678034.753784922 400.46186368 0.024979830670617906 2.14e-06 720540.5176388047 61.72806886 18768 None 2981360 NANO_20190712 146734752.22780302 12966.842616781641 1.1031894079541458 9.72997465759876e-05 4618839.530921737 407.37511853677836 98763 46845 329357 TFUEL_20210421 0.0 0.0 0.32489553192028353 5.7622009533942075e-06 87694095.28134736 1555.3030121731729 143334 14397 21480 ARK_20210814 206563991.51857534 4330.510919960219 1.3008390690898908 2.726521524058883e-05 10503120.773991926 220.14241069892176 73170 23427 125650 STPT_20210429 87238319.29440536 1593.7462495233694 0.08560692568595825 1.5634359442552465e-06 35369008.099801205 645.9428151728888 29581 None 910650 FLM_20210823 0.0 0.0 0.7176459779038057 1.4564461719340234e-05 34707695.14813746 704.3847703684011 None None 69223 DIA_20211111 91028463.27343665 1403.6928122389947 1.8720367208224533 2.8826204700116407e-05 16991387.517551903 261.6386790237578 None 432 346400 PNT_20201031 11856313.59101696 872.9781127031141 0.40237973639664393 2.9710171759014233e-05 1496255.3587889362 110.47773951803684 6445 100 413974 MITH_20210513 52581253.2294811 1020.0677347028828 0.08470106206323506 1.6484544129728978e-06 25729752.77711725 500.75316031427604 31702 2687 254910 PAXG_20201124 75758128.17346899 4137.7860757293 1852.2224307198578 0.10088786432132979 2607152.178152867 142.00779066924508 8551 None 82114 ROSE_20210916 381932960.0549364 7925.1618868941105 0.2546489851984316 5.283383315016957e-06 51892175.9972841 1076.6438225949894 None 2325 178282 MANA_20190522 77752942.3217637 9776.608874686812 0.05821192113111051 7.329569579672126e-06 18311228.762018118 2305.600342552118 44674 6230 119390 ARPA_20210220 46893454.41323466 839.6413881878036 0.047856767590566354 8.553876981769319e-07 29581111.44338073 528.7302110236253 24225 None 879227 DGD_20190702 51631096.473976456 4872.276319692988 25.94021867055567 0.002443740445111994 2527885.4715841715 238.14355792355843 17101 3375 483052 ARK_20210325 250775975.3783007 4744.209607772897 1.6078977475687228 3.051879796993875e-05 7583429.671533901 143.93773386071015 69796 22381 67754 MATIC_20190603 43550002.73463604 4979.525203412762 0.020158085424526483 2.305092627265023e-06 30773342.051590607 3518.955415930453 14621 551 234155 ADX_20210114 42622994.76986277 1146.632614831332 0.3803192879955843 1.0173515451476758e-05 1636540.1401287585 43.77733900983526 52734 3745 12195 CDT_20190513 5514149.429285434 794.6299780537149 0.008171382994247278 1.177406049538794e-06 181397.57034847693 26.137386639482795 19840 290 447254 POA_20210221 17583329.052814405 313.21273104974114 0.06174398267040369 1.0998486907682373e-06 2163221.8023548466 38.53357953700217 None None 431187 SUSD_20210723 222600646.69596177 6882.617563364142 1.0087668753183696 3.115929322574915e-05 88940733.20836899 2747.2456258816533 143467 7281 44436 XTZ_20201130 1767263563.2449517 97424.9460928602 2.3576806039738374 0.00012982525174606524 120087868.31914037 6612.616530798645 75945 30588 151590 VIA_20210610 16954389.34189844 451.6843574363903 0.7348137711387329 1.9581653622623586e-05 152392.9244650674 4.061036385843931 38181 2290 788851 REN_20190130 14051355.796605447 4114.935778713102 0.01867621275945483 5.469323900637741e-06 381801.61112102325 111.81049947875859 5519 801 None KAVA_20191118 14678549.225652922 1726.9234158182667 1.06949310491241 0.00012568089088379445 7978061.014243545 937.5374288902185 None None 438956 JST_20210723 58877172.243740916 1818.791774310011 0.041058483614616816 1.2682297314814789e-06 70245164.81791572 2169.7588091924204 49576 None 151372 HIVE_20210212 84670908.70548439 1776.4066966245089 0.2288000774441242 4.784453839850348e-06 12271132.910302129 256.602487323663 10499 111 140605 YFI_20210711 1188538722.9729955 35250.177616319386 33331.86123855997 0.9889133808848252 160404622.29117692 4758.998491089789 None 6774 17976 HOT_20190221 259525859.14452085 65282.14748894609 0.0014611343701004113 3.675394419827207e-07 11557775.542485079 2907.2879677415153 18172 5500 247216 POLY_20191017 13387834.02902721 1671.7504969104514 0.025424025640930218 3.175270085591533e-06 4159100.565332106 519.4404613408294 35212 5059 332480 BTG_20211002 997042309.2472165 20705.464756899557 56.93321151513763 0.0011821151093423243 11366493.39657307 236.00466628790528 102390 None 280701 IOTX_20210711 175585543.55105922 5208.304672746278 0.018434547405560022 5.466860059456831e-07 10042509.363644285 297.81579188795024 None 3246 211014 WAVES_20190626 231152041.6088119 19578.45861027974 2.3148861472371722 0.00019579953897069324 21711099.6110144 1836.385473841568 141949 56854 49915 ZIL_20200531 143587531.14130405 14868.348806193997 0.013651228677643389 1.4134584440612448e-06 65923680.72710748 6825.7872890173685 75615 10857 125145 KAVA_20191102 11384538.152180403 1232.972620787991 0.8314960665156939 9.005300615646046e-05 7340072.008965613 794.9472961214154 6761 None 858006 LRC_20190714 43921260.34108212 3858.9719149967304 0.045716866838385724 4.010820250009371e-06 2824545.7387955044 247.80231082517264 34835 2455 719839 BTS_20200109 43793014.694076076 5441.480060678235 0.016064712634572022 2.0020117037346307e-06 7082681.347479019 882.6557482865128 13426 7071 164452 SKY_20190603 29854999.55234895 3414.156157175157 1.9971117524441933 0.00022837127035796242 2325686.728114004 265.94407243562085 16046 3761 431254 ACM_20211002 18281388.99084163 379.69063957061053 9.173819473542235 0.00019045743167674632 5905265.26460201 122.5990612644709 None None 34891 TOMO_20200901 74424849.81912594 6367.559592314202 1.0355177288153095 8.871188795812388e-05 7722845.895926089 661.6093773894671 30580 1665 74287 ELF_20200313 19913651.023688883 4144.194299897509 0.0438589607501147 9.152398248377431e-06 37708789.98576616 7868.993188883438 83206 33434 755936 BEL_20201231 18286480.080770258 633.627024377751 0.876034575949689 3.0377565637019513e-05 5162442.24525366 179.01397097541252 10276 None 317167 ONT_20190419 818974311.9868957 155319.05937890403 1.335466191910479 0.00025324273719644786 66088453.48954193 12532.26847684485 75368 13048 265242 ATOM_20210725 3175197317.259868 92935.45108696801 11.520045056506708 0.0003366435719290811 429240815.0408468 12543.454516393938 167093 32623 47947 EGLD_20211104 5965399614.311723 94845.97687269226 305.8172725779929 0.004849207260349963 252933307.16241592 4010.6499516423237 359126 11800 29572 SKY_20210509 77301432.84116356 1318.156996386064 3.8886949210326045 6.623031981408864e-05 4300879.643964264 73.25044522289708 19349 4336 250717 FUN_20200610 21091737.302578587 2157.6757897826233 0.0035095194167472656 3.5938766445889004e-07 868173.2848508231 88.90412963645075 34231 16814 232312 AION_20190401 50882107.61994157 12399.215640967099 0.17428724655996047 4.2472512614403876e-05 3941452.2225837796 960.5027478884841 68084 72473 263529 POND_20210731 47979308.79238922 1149.480146139934 0.0619535832030697 1.4831568455488387e-06 7062860.513168865 169.08351991404996 19765 598 163972 MITH_20210314 21426030.481276818 348.8588795295158 0.03442829178612527 5.611582492863935e-07 26216236.628129926 427.30721409326463 None 2240 364504 NULS_20210428 124019498.74892147 2251.2191777241096 1.10060248303031 1.9984051365492694e-05 76484492.7680232 1388.7575720631341 49024 5334 273594 MATIC_20190531 42600957.27020902 5129.5530494766 0.01971449651124225 2.374695430340405e-06 49505071.82437271 5963.097651161051 14294 538 234493 SNT_20190807 71257320.246105 6227.2534691596 0.02016960501729821 1.7578965252270285e-06 15888590.118375191 1384.7815728614419 111596 5723 278039 TFUEL_20190726 0.0 0.0 0.007466063216582549 7.542657027899484e-07 743423.7008292521 75.10504316803093 70277 4017 240889 WAVES_20190807 135494556.9493027 11841.01432527432 1.3576008517823879 0.00011832268494830428 14414630.873245757 1256.3175879139385 143209 56910 43327 KAVA_20201015 69913207.67722557 6126.245840743082 2.3732387645701416 0.00020766829850856297 16280082.322510809 1424.5751611543053 46157 None 79713 ZEN_20200707 65871082.72248683 7056.5062746947115 6.9809143110409435 0.0007474785985063068 4477238.682110469 479.3985352304275 64138 5972 61667 KAVA_20210729 370894746.11310005 9275.374973364267 5.29194400038987 0.00013226973285142138 111261306.73375553 2780.9257462455566 125342 None 50166 MTH_20210219 8091978.716333609 156.55574934210864 0.0232891909685401 4.504640089968539e-07 1286640.3913437661 24.886445802472014 19587 1908 681058 ANKR_20210110 63358850.695510976 1566.4231684457443 0.009709238740312851 2.402384550895287e-07 23353639.887582395 577.8457526248046 None None 5158 REQ_20190302 15703892.179013018 4110.956786489844 0.02154242639339552 5.634314802234368e-06 226735.9105565696 59.30165310619905 41690 30799 416149 COS_20210916 80512763.27153371 1670.462252304791 0.02355109211594186 4.887190318888424e-07 14972919.024940783 310.70960337613394 29444 None 301552 BAL_20210114 187633717.63393468 5039.095239705729 17.490536836143797 0.0004680077496132604 67999060.98513635 1819.5031865291157 36440 None 83798 KEY_20190621 8070492.973166886 843.6783601560878 0.003142626752753163 3.288152350233081e-07 358123.4043370501 37.470702259271285 23901 2837 824192 HBAR_20201015 194532533.34527156 17042.52138262164 0.03486698661625053 3.051006874156249e-06 2788400.0977156055 243.99664816641175 42419 6717 166509 BTCST_20210729 123583705.34202746 3090.594352327437 16.968583897708797 0.000424088358284045 9961850.783375977 248.97215758605475 None None 1251678 BCD_20210620 470856626.89609855 13204.716093014835 2.5087623818325295 7.04636981855902e-05 10946894.665490638 307.4658195469033 34019 None 1272149 ADA_20190131 1226333484.6458025 354598.3576086231 0.03941612181087784 1.1397301168430223e-05 37062014.79782128 10716.603388489966 147892 71013 104136 ZIL_20211216 804496272.7345438 16490.26980875804 0.06262193364244803 1.2814154356264149e-06 48373865.30143523 989.8611248911433 362344 39649 41987 YFI_20210430 1691722812.4130886 31567.319480047758 46845.35690090778 0.8739480064154911 372790791.2365401 6954.7931826070535 108781 4802 20046 MBL_20200306 8087762.538432601 893.3999440682552 0.002296239485534205 2.534819478137561e-07 5537482.364481155 611.2828494482821 None None 120670 NULS_20190213 16101324.072851066 4431.251073138892 0.40253676987994763 0.0001107787021742303 7119857.963828485 1959.395225268508 19517 None 445264 PSG_20210324 0.0 0.0 19.081685445429756 0.00034991436082155953 17122401.259622514 313.9855810759143 8865185 None 29026 VITE_20210430 131527615.95116541 2454.3569591590217 0.21707407635096365 4.049738732329575e-06 99264274.14929274 1851.876476991342 None 2191 143258 GRS_20210826 76716563.83634941 1565.1409301820258 0.9802474833259561 2.0000662461083397e-05 13038779.222452924 266.0391651790156 41545 106871 9087517 DASH_20211028 1828434694.8597157 31244.048083140846 176.4479099648792 0.003014554726775814 510595368.9864042 8723.354577303731 412815 42964 66549 ADA_20210310 37935761722.85194 694060.9966531987 1.1887464492963455 2.173194264918095e-05 5116872043.446383 93543.55578281348 259498 253717 11673 NAV_20191012 5850833.751298014 707.6762116816134 0.08812630190023556 1.0659145367860286e-05 237536.7503164429 28.73079542925118 51014 14155 439826 VIA_20190723 7823248.996658195 756.1321986067913 0.33768111641140747 3.2661656425597985e-05 91936.66465759612 8.892424266636844 40963 2231 1839156 REN_20200801 139091949.04447126 12272.48696913444 0.15860801482820966 1.4003682053288413e-05 8147713.319180156 719.370877359023 17481 926 146117 ZIL_20210722 718419209.7837188 22324.331130621562 0.058817307984383636 1.8212303440699545e-06 64804832.21651716 2006.629186538416 308389 35141 41251 ONT_20190902 463959077.14939266 47701.214602951586 0.7129864950887447 7.330148589370923e-05 36231048.25643835 3724.8807529700134 81431 16276 256067 DOGE_20210105 1226307420.3356287 39196.314065851344 0.009591750832278645 3.0657995852335925e-07 1238833461.1610012 39596.682376481476 179439 179432 103049 WAVES_20200312 134556443.4274414 16964.90672946745 1.3423072868006967 0.00016918369235945798 138535855.4495266 17460.98511093539 141233 56865 51296 SNT_20190905 55265336.12074315 5232.5071534316485 0.01558100181242872 1.4750370419021677e-06 27103876.409254044 2565.895451658136 None 5722 268012 MANA_20190316 62703257.92386043 15977.735680163927 0.048789700645071495 1.2432190166046823e-05 2865988.4495702134 730.287600613713 43183 6104 116780 NXS_20190312 23479056.32785634 6073.8403673806115 0.3938236793597298 0.00010188388790526197 3086393.2121170186 798.4632629661173 37 3503 850492 EOS_20190419 5697347165.619521 1080546.317552678 5.477703291840927 0.0010385164975841798 2331061976.8693533 441945.49994627864 861 64162 106638 POLY_20190530 47289175.44130812 5468.279721728082 0.10611326684746852 1.227131714125523e-05 11264718.195124151 1302.69224184699 35021 5089 319300 ASR_20210703 6152818.705398357 181.93801225839672 4.989585601241885 0.0001475413675827283 2481883.8909072806 73.38896908690421 1978997 None 120026 PSG_20210804 47494994.47139539 1236.1843508435745 22.546582454115065 0.0005870118521430895 9691426.926643271 252.32127670328848 9349430 None 33865 WRX_20210314 117241920.09614961 1911.0783891890824 0.47355155589416725 7.718137707131744e-06 61144754.67669956 996.5623189062518 70577 None 4198 TNT_20191015 26820634.969297495 3213.3834113413395 0.062463372807104206 7.483891083170395e-06 649151.5459079363 77.77645118603236 17657 2550 579695 NULS_20191216 22139383.23394003 3111.0921621765783 0.2783775276646874 3.915185717491777e-05 5025114.528472381 706.7473008932537 21145 5259 576073 QSP_20190131 0.0 0.0 0.014406270175399076 4.1626684282947685e-06 218772.64697642255 63.21400192107697 56840 8613 710579 PIVX_20200605 30076297.126355756 3076.511891525339 0.4752323901784176 4.861163904185249e-05 2111363.6138383993 215.97190764602618 63647 8475 263119 BTS_20200907 134833586.32178003 13129.94837404189 0.04975049285849783 4.8446490272557525e-06 87488778.9386948 8519.562388792367 13266 6933 99740 WABI_20210422 28173007.54955723 519.8314854952899 0.4762819198067515 8.792261294560895e-06 3376901.757606095 62.33829457767683 44143 7692 293001 BCD_20190622 246949597.53374574 24400.821266296745 1.3179945810606168 0.0001302687869314522 7912844.185009923 782.0947278321398 21316 None 3124822 FIL_20210131 1036800625.6575937 30310.874770028277 21.99998473077016 0.0006439434671595987 95376696.00539285 2791.6928608608932 47199 None 48258 MIR_20211120 296609310.73531246 6213.759998811874 2.768008523972897 4.758926060462502e-05 25489197.346564107 438.2255490266088 None None 14084 STPT_20210610 52415698.00658115 1396.425782084486 0.046620213743522154 1.2447441205142545e-06 5315359.425756937 141.918319594798 29891 None 509063 WPR_20200330 3166100.862475808 535.4276786258216 0.0051956967787975305 8.802259721788938e-07 145222.3976973961 24.602768721411902 33457 None 964364 TRX_20200523 995152403.9054607 108724.07789322459 0.015018580273446842 1.6435109965290922e-06 1436058070.366234 157150.48874986512 508824 72845 68608 ONE_20200113 18243926.149594087 2237.875289374399 0.004633022327488871 5.673658125069259e-07 5873456.956706435 719.2710163933929 71357 None 276429 TKO_20210429 208337402.18383357 3806.0906726709527 2.7925975061814605 5.100109931547049e-05 117942556.71013306 2153.980312228763 227487 None 41477 JOE_20220112 233674282.90201038 5457.273167236322 1.523838099300661 3.561784247779388e-05 10570197.723774767 247.06537896468626 None None 3511 INJ_20210825 388691683.73448503 8088.513687344734 11.798050420204248 0.00024567416671419717 33198143.450689882 691.2944035854886 82341 3924 170499 CDT_20210110 5240708.783653176 129.5055482932021 0.007998674684259148 1.9841723607970554e-07 225757.67353062102 5.600204455605915 None 293 987559 FIL_20210704 4982929441.913566 143736.06987866428 58.78914389412504 0.001695406505112207 297517030.0261512 8580.024723551178 94648 None 26863 STEEM_20190305 115265195.68986566 31044.639675860803 0.3806159138749165 0.00010251215755480773 5072445.379450945 1366.1733547413298 4130 3681 267616 VIBE_20190515 7223856.183921959 913.1738163935506 0.03608317175715237 4.561304491969213e-06 510212.8229200788 64.496437749665 20705 None 1402427 KLAY_20210828 4360445291.4069395 88892.05844942342 1.7483264322116274 3.564045565275709e-05 82317678.02925687 1678.0845379820564 43325 731 64531 BAND_20200224 6882802.732887019 691.8078760407104 0.38775427222764663 3.896760337667655e-05 663877.9503055182 66.71682173714017 8022 1028 671457 YOYO_20210527 3227658.1003123093 82.50306747101679 0.018242315602082712 4.6532393061434066e-07 1086357.6453984042 27.71074794649491 9957 None 759242 YOYO_20210111 2083426.181908213 54.03514766617385 0.011886238981277986 3.090397592576174e-07 2118552.647866662 55.08193140845862 9308 None 2139137 STEEM_20190225 91715983.06185628 24349.26377941653 0.3021831442882113 8.066576738183229e-05 3024396.950258532 807.3425188374919 4077 3674 255452 ONG_20190318 0.0 0.0 0.6435930176974147 0.0001616188049309004 30252616.660889138 7597.024231646181 69391 11227 260077 RSR_20210115 367924368.2773329 9420.45776508056 0.03988552317375819 1.016735634627808e-06 184202891.37490413 4695.5794674284425 53746 None 170522 ZEN_20190813 41342448.25335147 3632.309423965357 5.8304652924153 0.0005122981134327458 1336388.489643186 117.42275577011962 26618 1770 272148 LINA_20210428 224281754.30148804 4071.1377626159388 0.09048520340517476 1.6429737171656627e-06 58259592.208053194 1057.8412289356336 34221 None 69525 NAS_20200411 11559785.80911848 1685.922616250028 0.2539762380027024 3.7030897713604147e-05 4920787.332485266 717.4733109391201 23507 4962 1093908 SAND_20210725 516981841.77082413 15132.408362725671 0.7361273802411958 2.154556434840867e-05 1447073014.4979172 42354.0892345221 145761 None 30642 ONG_20201115 0.0 0.0 0.11680653153684203 7.261759605535854e-06 3025844.1003136 188.11407351288204 93516 16681 220427 BNT_20190430 38065832.9646047 7313.725225325704 0.5852233151159291 0.00011239472214804877 1814984.3816419605 348.5757658805617 None 5138 152129 CKB_20210314 392532041.78678685 6397.4532548755315 0.01622496539800759 2.6444114833244623e-07 50950767.73060783 830.4165338162267 36736 1748 208516 WRX_20201115 18679674.47520723 1160.775378810674 0.07847302677846116 4.876483706586719e-06 885600.3921584281 55.03312488633016 39934 None 11558 ARDR_20210823 266158419.6314601 5401.165764727704 0.2664249791552298 5.406575070118233e-06 16656789.979939727 338.0170498249978 72786 7012 None ZEC_20210310 1496063592.915734 27373.291750103414 138.03624383405835 0.002521054279047185 1128170857.095857 20604.588242758906 73373 17912 106492 CELR_20190616 54514552.74954829 6181.892318982963 0.019221659833630396 2.179964260220804e-06 41509539.468385 4707.67422181633 15267 None 371624 CND_20210318 63380004.43896753 1082.2602986947925 0.033026439824890744 5.604420813303095e-07 1094356.5650002088 18.570680771469867 None 6078 157654 DOT_20210206 20065986931.370617 529485.604050315 20.91552499982878 0.0005502427152947248 1742093250.4734116 45830.74632097211 154893 11640 24755 KMD_20190530 170374278.27118737 19702.68999807055 1.4988062653594019 0.0001733273092229215 8594840.023006108 993.9379950696284 97050 8369 351516 KNC_20190929 31216694.702456404 3810.5205870232917 0.1855543869535817 2.262619681612379e-05 3875898.2756809834 472.62066213918723 97998 6717 182135 SAND_20210624 135639746.8650977 4023.482866641517 0.1937365643121988 5.750765212894261e-06 61964148.535675965 1839.308295316667 133463 None 23111 HBAR_20200901 237473130.23977435 20322.608654358726 0.045577829879995944 3.909468885219929e-06 10078887.546450188 864.5233299659933 None 6677 159106 KMD_20200410 52356206.900037535 7180.494609436067 0.43938412155034434 6.026019650903677e-05 2186877.035215574 299.92353710508576 99922 8387 155354 ONG_20190708 0.0 0.0 0.36253999982619506 3.1716945587396584e-05 21188867.824446786 1853.715915950521 80936 16276 247326 SXP_20210804 187873372.20536634 4890.536641154547 2.1750696628931907 5.662317267239205e-05 105256224.19800541 2740.1151601185934 274377 None 79966 BTS_20200411 46603779.98222306 6796.870458689043 0.017266034862751602 2.517466893557478e-06 34152453.37545429 4979.583986127182 13238 7015 124371 XLM_20200418 990829274.4483701 140744.21835687986 0.04874336164024191 6.923842998040171e-06 430009320.62998676 61081.48727431859 281357 107609 81218 FET_20200713 26666323.39724975 2874.145701273708 0.04287324448975196 4.614395329789961e-06 7413467.088655206 797.9024755082182 18045 439 786167 OST_20200806 6890934.573655529 588.2401898402525 0.009966009061750066 8.506493244582891e-07 487413.52127677307 41.60321147983329 17664 750 745612 BLZ_20190117 8294242.195481737 2306.0784243721714 0.041048251787100996 1.1415974224482914e-05 421757.19542719657 117.29535515809889 34891 None 750261 NCASH_20191213 2569873.972416785 356.72318506575897 0.0008846810923493381 1.228734536634718e-07 192423.25567052406 26.725687023126998 58689 58593 1145452 ZRX_20210117 394077322.83863646 10860.409791710717 0.5279617225166632 1.4588818404433275e-05 127531067.72505714 3523.981964252379 165226 16360 88733 UMA_20210511 1755087446.1716757 31434.32345870862 28.84496482714309 0.0005162372657969321 169535572.82565257 3034.171859640291 37505 None 112681 1INCH_20220105 1108541791.015625 23935.157572517513 2.491738213421372 5.4253800020664635e-05 100789060.99512759 2194.5281129641326 None None 4469 TROY_20200322 2146111.874599553 348.3019661193377 0.0018437136191494592 2.993749930919748e-07 558976.4808786365 90.7644106782793 8803 None 356286 NAS_20210723 13512444.1230729 417.79703879876257 0.2970197524338999 9.17477236304069e-06 2945296.9349605315 90.97855849111595 25261 4926 687324 MDT_20200801 6982128.091156776 616.0534567543687 0.011531209305669133 1.017671735818214e-06 8830989.729002297 779.3674026962854 13833 61 619203 TFUEL_20200530 0.0 0.0 0.010296766609920046 1.092525663133913e-06 98615914.37559877 10463.519406661084 70940 4183 375081 HBAR_20201226 212183960.8356971 8592.145073463851 0.0323769691433083 1.312479738793344e-06 7454087.790533745 302.1697044265928 43368 6816 198776 CND_20190507 28393887.253726043 4965.418731219603 0.016315322089230627 2.853163611724763e-06 374183.6669326668 65.43586554743695 36731 6186 553989 HBAR_20201224 205695873.54859513 8797.110379523403 0.030621773059428658 1.313366015837464e-06 13399335.187010571 574.6966851096886 43271 6814 198776 DODO_20210509 436115790.837128 7435.714913364183 3.7123912974364823 6.322990126938123e-05 55747053.87432032 949.4906194199374 86203 920 24595 AAVE_20210729 3834383688.1003566 95846.87926497178 296.9428536434869 0.007421951540052037 324028837.1647526 8098.953376071441 260058 12165 14216 STEEM_20200430 68711528.54620151 7837.2071795710835 0.19538855870239433 2.228593436163783e-05 15613125.899983704 1780.8263764154606 11281 3854 233642 EVX_20190414 16389178.954950556 3230.507890446434 0.8521336831092597 0.0001679799295013108 3300424.764829098 650.6081502346703 16930 2405 756371 XLM_20200713 1935857343.352984 208609.3863970461 0.09492435700195083 1.0224807237770984e-05 339019815.27151984 36517.62698655708 283820 109662 67238 NCASH_20190920 3344083.2231001267 326.2522369831166 0.001153370658438799 1.1246599643146399e-07 680353.6433446993 66.34176954710406 59549 58847 745931 DCR_20190915 240420561.55699238 23225.309926438487 23.151920140620444 0.002236594010934163 10999971.158397365 1062.6535278235785 40557 9599 193164 DASH_20200730 769083644.4999182 69303.27581465535 81.39688182446281 0.007333972113283897 316300568.63679934 28499.12057811724 317101 35140 73738 SUSHI_20210731 1621925770.4567616 38852.4585824144 8.406619009568697 0.00020120313441071732 260839485.27108198 6242.904781920455 118975 None 5532 CTSI_20211207 381530513.46083474 7558.899749667309 0.785744996327872 1.55599183445533e-05 78841318.85577652 1561.2755910708652 64690 6605 102870 DLT_20210930 5850770.310433596 141.05830982639864 0.07137426092924419 1.7205660049493423e-06 1936800.2805731222 46.68899793489952 15398 2599 None BEL_20201226 17603607.369215924 712.8171067802098 0.8423223017213941 3.411337745659225e-05 3441851.9804750825 139.39224394239247 10206 None 227684 ARDR_20190725 68143795.63320686 6932.169066024324 0.06807568572236493 6.942331463081501e-06 806275.9002299082 82.223696914617 67684 6563 883304 BTG_20200718 155781640.4609897 17015.378653068998 8.912938037278957 0.0009737190520299153 6371084.203429797 696.02706144924 75812 None 222714 SNGLS_20190708 7888063.608259546 690.7391478639558 0.013360888995085227 1.1696118297684436e-06 167798.38289065598 14.68906550433279 7 2180 None UNFI_20210318 79034620.86052194 1343.6028584784551 32.34045609080886 0.0005488012822091811 46272725.527437024 785.2248907518672 16625 None 95638 GO_20200403 6877514.38628522 1014.1285003591045 0.007225145833028873 1.0598552854424535e-06 1050508.463208305 154.09888919385386 10705 678 675555 NMR_20201030 125316067.28550352 9303.273098306408 23.995137454205224 0.0017844548413827863 3894902.306586232 289.65357214416474 21312 1920 879342 KNC_20200927 202324147.6997422 18842.70161909972 1.0248314519448598 9.54667859610654e-05 44627535.045596726 4157.217587421544 124114 9132 56060 NKN_20211104 325339462.80330026 5159.361576248836 0.5006202698032334 7.938110972424163e-06 46305577.81890487 734.2467685400851 33791 4141 160577 SKY_20210523 29696513.19363448 790.1074205394764 1.4848256596817235 3.9505371026973815e-05 2038134.068757291 54.22673164621335 19416 4370 273629 ATOM_20211021 10126731129.435917 152780.37306811125 35.96670984781557 0.0005428064678588131 634729889.8583694 9579.288486943995 224472 42425 41004 STORJ_20200621 27781692.088527936 2969.6212280798677 0.19269173080937443 2.058692011160138e-05 109964045.43801464 11748.407723943577 81334 8139 96443 HOT_20200806 138856606.76570877 11853.404766997137 0.0007815417270939453 6.669098062373728e-08 8255309.383337843 704.4469399916778 25942 7226 587004 VITE_20200301 7780344.716588283 908.0391786946005 0.01575176306004874 1.8388114872814535e-06 3472193.580549386 405.3330041620989 None None 441540 WABI_20210620 16850401.30215646 472.6738224752288 0.2848037305272172 7.999292501883362e-06 2296846.6772314473 64.51161425849864 45195 7887 327925 MBL_20200313 3496945.0282988213 728.5779830088544 0.0010029063231326645 2.0928444081069665e-07 4919283.078709465 1026.545934122151 None None 120670 KNC_20190920 37934445.73173071 3704.874596282094 0.22661897671203593 2.2114116405882792e-05 7200503.068890342 702.6453183957931 97896 6711 182135 OST_20200403 5192247.662996004 766.3121276636975 0.007552804539757344 1.1081575897728956e-06 117888.46670808789 17.296753602133343 17785 754 766373 ATOM_20200217 844676987.2096071 84733.517583858 4.408459983090803 0.0004431309462348385 287389567.3838024 28887.913561941506 None 8125 100979 LOOM_20200718 17533378.84902918 1915.09782090561 0.02101032320091643 2.295050725975423e-06 4036575.6859418456 440.93305323696734 21922 None 626078 MITH_20210111 6086146.457756102 157.87653915497617 0.009808219090033127 2.5574096382179114e-07 3657425.2663744385 95.36425054771193 23979 2121 507648 GRS_20200502 11947306.0898106 1352.8003135552296 0.15938480226955792 1.8047232477795697e-05 9529282.899505045 1079.00616235164 37496 106895 None CTK_20201031 19670730.80398269 1448.7183199200103 0.8864204512772293 6.528490975369235e-05 4819773.638463508 354.9765650904479 7316 None 336364 KEY_20190914 3748500.3623292646 362.0917891418992 0.001434158468451795 1.3849377424907628e-07 47648.90124490662 4.6013577421137235 23755 2818 766085 ALGO_20210318 3340950177.880702 56769.15230493184 1.2940984974505914 2.196020095423758e-05 677205215.9350584 11491.83208116624 None 9665 133821 ELF_20190803 55755744.53553682 5298.825756858697 0.12086397048783346 1.148329724378575e-05 20539337.371975984 1951.4443823152394 86311 33473 1285223 XVG_20210422 991429305.15622 18332.04323854881 0.06028133381322897 1.1146331989524763e-06 169660316.8746485 3137.107455505233 305339 53367 130279 ETC_20210722 5498552365.72422 170868.12822973443 43.05319524221398 0.0013331214589602045 2799807113.424919 86694.67905593355 484293 58436 110949 NANO_20211104 806881651.7198972 12794.360275270017 6.055474721063191 9.601894534834193e-05 41431229.437835485 656.9564135522758 None 115658 87991 DCR_20191015 169567586.5522283 20314.531481372487 16.104303969422006 0.0019293273946058662 7700926.7512401305 922.5862212506404 40545 9635 133666 TWT_20210508 330157884.92052627 5761.549727756409 0.9537980713953383 1.6642900770842608e-05 53206992.093020886 928.4131686528821 None 27076 4038 LTC_20200417 2735857773.6229844 385937.3408669539 42.40016708035563 0.005981234804336004 3970565147.0736074 560112.9449691068 133137 213079 145046 ASR_20220105 8839215.413803225 190.8311414229316 4.120963426680262 8.964375135976132e-05 1701931.4415284675 37.0222938616668 2041961 None 101226 ONG_20200306 0.0 0.0 0.13549202536879312 1.49570493406749e-05 7901488.932288029 872.2503003652708 84512 16490 345761 FET_20200313 3620029.5954141743 752.2124692254256 0.01107275695944497 2.280727556627275e-06 7766016.182371341 1599.6167148994757 16611 359 523257 YOYO_20191220 1716398.1874658957 240.31395907500917 0.00973557844756506 1.3624496953391575e-06 303506.71890139556 42.47437776067803 7517 None 1542018 STPT_20201130 13830003.888065066 762.2869331903237 0.015092453336457022 8.310631858143826e-07 1161384.032071821 63.95139955914808 16622 None 1434198 XMR_20190908 1341624220.2759998 128141.61606651415 78.01136562749092 0.007451794858526612 68399570.66019453 6533.657818591616 320352 160873 87781 XLM_20190225 1597341736.5532176 424075.27361817664 0.08271876647011023 2.2048151556821207e-05 160507235.93208694 42782.16437228741 262995 99223 66683 WAN_20200914 47448248.647625975 4596.6761900758875 0.3788778885254585 3.6687334298817655e-05 2395952.722721834 232.00382277455557 104824 16061 459215 MDA_20200511 6624234.838939916 756.6209155172012 0.33763380242248625 3.854634850992535e-05 509467.9821308333 58.16399380915668 None 374 1654204 AE_20190929 51171289.70256936 6233.941037092756 0.15470170897462435 1.8846531672170613e-05 35398215.962793596 4312.386738989125 24997 6352 366959 BNB_20200506 2490362707.68423 277724.0945369851 16.883233236755714 0.0018763007549399227 369161574.8576094 41026.39179871003 1145567 62615 1326 ARDR_20190613 106828542.09392114 13131.50029500666 0.10693553162799259 1.3144651584640347e-05 2195146.0235236706 269.83014174377684 68155 6560 1048625 GRS_20211225 62185664.75093046 1221.7323545039505 0.7856189220876505 1.5454370082510015e-05 7112885.40946031 139.9217360755234 43036 107174 None CDT_20210204 10119282.558010027 269.99623453329053 0.015011985683274724 4.002180154979887e-07 1723044.9889797359 45.9362046202535 19343 296 640190 LOOM_20211111 88934379.31703709 1371.1267813540946 0.10572840648839163 1.6280817967411525e-06 3397091.6348175644 52.31085226953991 36401 None 416662 BNT_20211021 970285054.1570754 14637.465717684841 4.284573020582596 6.466240469106614e-05 73796764.67953649 1113.734376722259 133649 8399 41178 SAND_20210112 25591924.408949684 721.3584579078806 0.04080883701480912 1.1480336017205657e-06 7289232.870408195 205.0605917281566 None None 60991 AION_20200421 25134095.942945793 3670.4160624174992 0.060968995083465975 8.910194565654984e-06 2374682.341893576 347.0433073225281 483 72547 308963 TRB_20210708 75008841.34082383 2207.5840965810276 42.314866779595135 0.0012454136179596393 56366002.100307584 1658.9674492255685 23087 None 263441 OGN_20211202 401887640.85738957 7031.28773102729 1.0276151718454785 1.7970266888909592e-05 54767414.325224474 957.7369809286597 130155 7404 96329 CHR_20200711 11753809.007739797 1265.8493885532441 0.032911104099766726 3.5448725087788124e-06 3647346.6605337956 392.8576466993735 22927 None 392224 NEO_20201201 1307858476.3184195 66566.7825616298 18.482591011246384 0.0009414858652380375 398736198.2222955 20311.248263656074 324852 101022 125500 TRX_20201226 2035015703.7468023 82405.61673230873 0.028445134030443794 1.153579771985948e-06 1020924834.7868865 41403.15306188324 553087 76567 31267 ELF_20211221 168830549.43631852 3578.5349359673155 0.3657269881963357 7.757377968892894e-06 8044199.081831148 170.62424909502647 94658 33562 98073 BADGER_20210813 251702633.53214625 5661.604924994353 26.806778392467443 0.0006029555239333054 26660476.536461826 599.6648072739298 36796 None None MATIC_20190614 49975244.82925779 6074.467862453716 0.0232212275070925 2.82119660283044e-06 57059260.53866467 6932.251619451674 15966 635 234155 SUSD_20201231 132588930.24233629 4591.500045885245 1.0192317254580046 3.53431011622666e-05 96943713.92237657 3361.6413251508056 50044 2812 45851 LAZIO_20211216 0.0 0.0 5.308769866168271 0.00010863106380701289 34164765.85675254 699.0988408422567 632205 None 86457 BQX_20191015 7861551.331802546 941.8933841775633 0.05640312314398402 6.7577975922589774e-06 542180.9903997807 64.96004453758735 None 5726 393366 SNT_20190207 61662318.946870595 18101.162560996647 0.0176192164296379 5.172258816250489e-06 14228584.690455792 4176.912344647846 109325 5773 290397 TFUEL_20191020 0.0 0.0 0.003357170315623276 4.223075295031219e-07 246495.9432986559 31.007391064599844 69661 4024 413739 POA_20200713 4037495.206999104 435.16870774568395 0.014583763190606067 1.5696327525102757e-06 189654.33593407064 20.412266261252466 17238 None 598130 BCD_20190914 109776887.01822947 10604.78593094312 0.5834327001162445 5.636139863227738e-05 2681597.2760973084 259.0505691903049 21358 None 2392200 NULS_20190729 39288905.86577623 4119.962807243857 0.532450133338432 5.585351095126101e-05 4335943.572380912 454.8363436132259 21315 5314 418042 UNFI_20210325 54904926.308536746 1038.6978626964424 22.06467526953301 0.0004194246931120025 28413138.855314765 540.1018550766704 None None 95638 BAND_20210117 235232885.70743778 6482.8027070096405 10.262731576581702 0.00028358329954397075 308530593.0362433 8525.422586626626 45081 3044 319982 NXS_20210708 33631388.34268309 987.5276749475479 0.49210783142425885 1.4487527114120661e-05 247665.43188724376 7.291206175915313 25988 3960 508939 CFX_20210513 674038233.4624112 13078.150341407214 0.8171572779168184 1.6212218116052194e-05 33793509.04009155 670.4556812630082 33565 None 144382 MIR_20210826 314678068.66419065 6419.912883419305 4.045743589956552 8.25591898238218e-05 60384716.112379484 1232.236578797389 57387 None 15309 VITE_20210610 64535885.4920501 1719.3099310294067 0.10231445204326146 2.728330963149191e-06 41626997.565283924 1110.031125537168 None 2326 160764 NEBL_20210509 61503187.47553205 1048.7626670193558 3.4496815276097554 5.8725482720899824e-05 5886042.425594293 100.2007518642526 40287 6058 523823 ETC_20200418 630335918.974214 89038.9851611798 5.398516415406641 0.0007652744739611536 1722996234.2514443 244245.81409826133 230772 25393 313555 GLM_20210206 149600161.0106789 3944.77178966308 0.14956032707360195 3.918170223968711e-06 3655103.483539302 95.75612674128591 146367 20383 190516 PERL_20210805 0.0 0.0 0.06436276043022533 1.6185814682066203e-06 2849842.2419268647 71.66724685613492 361 682 3927089 VIBE_20200308 2582787.207658617 290.5501387349268 0.013725836660165129 1.542154006261619e-06 201429.60467574513 22.631441676114 19446 None 1426283 MITH_20190117 26739109.592771333 7428.432689587842 0.05514714991410116 1.532294209921579e-05 4660152.58980788 1294.8492971688058 38 1966 482840 NANO_20200323 54020199.192775205 9259.127613482504 0.40315502283645155 6.914125076637326e-05 2914072.6770166205 499.7646520573763 None 49690 321803 COTI_20200312 8436831.367383443 1063.4086215544457 0.02691418132296303 3.390402219039017e-06 5556504.174037315 699.9575374667825 22554 895 296885 POLY_20210718 146086981.07345873 4622.180296802519 0.17247931088856577 5.456907497264029e-06 5548066.584624689 175.5299576800753 47343 5672 180054 GXS_20210624 34053460.919629954 1010.4437182889112 0.4864780131375708 1.443491026127016e-05 5391072.5423531355 159.96539670716533 None 24560 544646 ICX_20190312 154520423.74949026 39963.9315052061 0.3263353692251838 8.450582740238567e-05 20780266.31830481 5381.1316960207605 111872 23544 258994 LINK_20210603 13235164464.318453 351691.35068423976 30.81564908041028 0.0008183955314425999 1370113648.6573045 36387.19031047343 352343 59255 24731 AMB_20210806 5153736.576113649 125.77338527643921 0.03559169212634611 8.689995089030348e-07 703729.1804751442 17.18210839941925 795 65 582804 LINK_20210203 9639417165.14196 270636.12317803147 23.695975580122607 0.0006670218440122488 1717341702.1570573 48341.728961471505 139708 32979 38996 OAX_20210508 24277523.83154496 423.6889584868226 0.42614405150809853 7.4358225037702545e-06 938319.0665331526 16.372806345535295 13907 None 1257239 SNM_20210131 6886853.761563765 201.29668450203818 0.015374020882030564 4.500003264598748e-07 5376645.77911537 157.37537853151812 28880 9482 None ETH_20210523 268503273693.00333 7143816.097219724 2306.371266867117 0.0614114060564313 102524751568.4531 2729911.3719698335 1245608 958807 4259 COTI_20200531 10747333.210797245 1113.4909767180154 0.02178387792507339 2.2555190396905516e-06 1745004.177406227 180.67903979341796 23994 975 268235 LTC_20220115 10046271921.893803 232927.3085791331 144.72737636347838 0.0033555689629103207 1073601867.232325 24891.939553714248 207267 355205 135974 MITH_20210804 25487501.064542633 663.3804321647472 0.041207422141365496 1.0728563959736718e-06 5586114.693308891 145.4373645795926 32700 2749 709591 CND_20191017 12900181.709596215 1611.1359099365209 0.007317716696104801 9.139851298368403e-07 290253.95452524355 36.25281072354482 35522 6072 332150 MITH_20190520 25171433.873738922 3075.680369636961 0.04705866012577743 5.751081656214277e-06 16727404.992189271 2044.2713785204178 74 2041 460427 PIVX_20190812 21222120.80042638 1837.0708847438466 0.34940153946886454 3.024558201695058e-05 6532709.346117515 565.4972116644149 63300 8609 295552 LTO_20200625 12909788.369711014 1387.5774078662396 0.058264226236588494 6.268397229992291e-06 6696734.455660509 720.4728256649404 15688 482 1399831 QNT_20210930 3631588141.343323 87412.69504119338 272.01419231801486 0.0065410958661728455 59411780.28147927 1428.6686554457995 None 8675 92231 TROY_20210513 33510767.03119467 649.7080759738903 0.01752819159046863 3.411341496187003e-07 10969366.434083693 213.48611298737 16340 None 481033 SC_20190712 127151616.05342597 11226.496674640512 0.003103535977893316 2.7372748683155516e-07 5621753.96799557 495.8307544059176 109677 30832 228253 MITH_20190426 27976611.594672054 5385.949207218052 0.05276029449247597 1.0140115254166048e-05 19386398.293153435 3725.913870396945 72 2025 526151 ATOM_20201106 1076261805.1279745 69250.83230932851 4.517789757459862 0.00029083995707206183 205232357.04575065 13212.161945877022 None 9681 79924 FET_20190702 43802799.49687637 4133.542715531134 0.16276495472107907 1.5353847344264507e-05 20305793.37314434 1915.4740784937512 10147 286 401657 ENJ_20190302 66476265.01322313 17402.122332565745 0.0772335433862311 2.020005029997285e-05 12208966.938770112 3193.194763064937 39441 11477 17990 GXS_20210523 50883451.62904529 1353.6674563396907 0.7257175434795281 1.930791562258161e-05 72473823.13384566 1928.1860752669934 None 653 535663 BNT_20201015 84493971.95612058 7402.247772668231 1.2798970059675407 0.00011212608681435629 61387017.9382852 5377.843740965181 85792 5224 70667 ELF_20210527 128228528.08968917 3272.8496687255074 0.27907485482849664 7.118235392981613e-06 16685673.678094948 425.5938895109269 48673 33394 207854 COMP_20210819 32455.659661993042 0.7188471561408539 3.4865288096826873e-07 7.7938e-12 524.8659117354633 0.011732872912230869 None None 6343475 XVG_20210523 423230227.6843254 11259.382228358065 0.02571298275940708 6.841010059412081e-07 30904905.585170828 822.2335462655964 315584 54181 106082 THETA_20210105 1878706582.164529 60048.86866944743 1.88693476239345 6.031186498757697e-05 222385852.0659094 7108.091785819628 78642 4836 64313 YOYO_20210304 3782444.036599813 74.39498530005487 0.02154644653761194 4.250082706667061e-07 543147.0779717813 10.713692391155941 9472 None 1284003 BTG_20210127 188320834.0887865 5778.283182872915 10.753968416644891 0.00033013560883092535 14673269.907152915 450.4540748734824 83087 None 278818 CHZ_20200625 70064777.35671353 7531.158866612877 0.013057248062969122 1.4047730979363683e-06 13479822.44940197 1450.2360566758416 26033 None 373448 SYS_20210527 153508792.28937617 3918.092233261285 0.2467379585692772 6.298200620565767e-06 3515220.680649045 89.72905993332701 73718 5371 397899 HNT_20210117 100644082.93919894 2773.352258131657 1.5428910988888447 4.262713333938282e-05 4288564.363271295 118.48483997305185 None 2203 73258 PPT_20190601 36121566.96676138 4211.132143318624 0.9994931000281925 0.00011651934199501147 2403785.368740597 280.2295378077047 24008 None 688169 SKY_20200914 10002356.08473821 969.0050395922727 0.5476011652389889 5.302507119043695e-05 611182.4260190119 59.18174340600296 17213 3824 1022336 POA_20191203 3121952.075492444 427.02031394445146 0.014170371675021786 1.9395411451551018e-06 50722.39955588086 6.9425265035948 17577 None 470485 DNT_20200430 3418892.9104690608 391.60259718174143 0.004570728563618916 5.21335319888544e-07 88785.35867299362 10.126819547681944 58388 6051 716172 VET_20201231 1306915352.0822687 45257.9403731988 0.02028074230274069 7.032594344819162e-07 287294857.51997066 9962.299013175354 145920 69925 133050 ARDR_20190621 122571667.63669157 12813.475446561493 0.122682727351772 1.2828320780782972e-05 5249383.789316189 548.9018756299882 68084 6562 956576 MANA_20190904 43164577.06244488 4062.4289439355284 0.03247923466766681 3.060537903426976e-06 14269028.360299483 1344.5791623053717 45684 6361 122199 DASH_20210708 1378111065.9783251 40555.82970538922 134.8835522463516 0.003969900547752216 632052565.0233699 18602.607822128582 400414 41400 56983 FRONT_20211125 58833688.12177741 1028.4272119253412 0.9901705284471668 1.7312903382468264e-05 16737049.115624418 292.6434446608484 85267 None 315745 WNXM_20211230 143983207.88907674 3097.345234947621 59.75091399799817 0.0012839731984109356 2850973.355061445 61.26388924201627 None None 103901 FUN_20190224 23582407.58332721 5734.237524600148 0.004015554421427741 9.762354210233173e-07 1114522.2718177005 270.9553912311224 36380 17830 514881 ZRX_20191102 179676476.34622118 19451.344431579844 0.2985349785890373 3.231868083955669e-05 35907387.30405056 3887.2476369326005 151408 15989 145983 TWT_20210727 112490811.60942368 3004.6913743376113 0.32416610905318505 8.661657594991756e-06 10870651.508276468 290.46176811692317 None 41723 2945 CRV_20210427 796043458.6726123 14776.344205811742 2.778866692347741 5.15501213953571e-05 338944514.21187437 6287.682277824782 None None 25328 DNT_20190305 7337140.600552269 1975.9266180053826 0.012627163834589889 3.4005548604047545e-06 1261908.3310842058 339.83787371940906 60146 6473 764547 EOS_20190122 2394235477.794751 677948.0093065938 2.327923552439917 0.0006592326324128312 787274587.6323594 222944.21923462264 575 62157 76885 AE_20190622 137012285.91662866 13538.035021423959 0.5118896202564469 5.0573143028166166e-05 30804216.747465607 3043.3632521396867 963 6361 390677 ELF_20190909 38278028.05238639 3685.13481149518 0.08313629974936833 7.999139188587511e-06 11094310.203781813 1067.4630912003236 None 33569 1052488 PERL_20200605 6593649.329718227 675.8982106815386 0.018750195600921844 1.9179621577854676e-06 1410304.2205207648 144.26036845135482 11778 479 827795 ETC_20210203 914313675.8501568 25670.319027739886 7.79740189128802 0.00021955407786728373 779638643.3523501 21952.548528013605 268037 27198 152499 LUNA_20210826 12224860951.642265 249400.64395432215 30.177760094320252 0.0006158203970883622 1083259975.8226628 22105.47059742169 112185 6094 18941 KSM_20210107 677925717.9192141 18495.702002999802 74.96387015204252 0.002031025146666617 146623292.57383668 3972.5216120849514 28281 None 180647 SNT_20200905 127825512.51219852 12183.978829650707 0.03274803042297496 3.122719542653609e-06 22056607.088738848 2103.228716689946 111930 5716 113908 QTUM_20200506 148319643.59343576 16540.53788708528 1.5480253740008665 0.0001720382072066975 342421460.1579237 38054.65666393904 178912 15100 116329 LRC_20191216 22371736.286004353 3143.743106039681 0.023225779875648334 3.2665439056660355e-06 2180113.41435043 306.61774224312796 33513 6835 844781 NAS_20210117 13584310.840370866 374.5429268405544 0.2978956481063069 8.2302876218513e-06 5439994.787239993 150.29666275748795 23358 4854 953730 SKY_20200621 9295388.355957182 993.5985775702753 0.5166412518497916 5.519992097612641e-05 323184.6628178456 34.53028147552545 16108 3815 781514 RSR_20210325 943985616.9150786 17927.2989825611 0.07165942365660274 1.3621221833938129e-06 239264148.1844235 4547.999234470516 None None 95725 UNI_20210218 6427499907.742221 123307.57726403061 21.46977238015718 0.00041176761627743295 943695978.233675 18099.094697762965 216247 None 3373 EGLD_20210826 2734170855.5842433 55781.47015701041 139.1347361391152 0.0028392434756647363 62001292.42627229 1265.2251327667232 310735 10178 47013 SOL_20210710 9138440436.827877 268970.5161705052 33.5318526308046 0.0009866904081086373 454190333.1445893 13364.762457465193 353356 26598 7723 KNC_20190302 31811276.411004167 8327.53951427989 0.20104065828656792 5.2576368610814147e-05 30660058.99247944 8018.251516666505 93397 6579 214116 LINK_20200523 1503076964.208447 164199.25072864466 3.955366193435418 0.00043209242160233027 402968917.4319766 44021.161846564995 55867 15478 76484 FUN_20190131 23223432.26486216 6706.285639294722 0.003951310051930053 1.1417246381829263e-06 779217.630352824 225.1536719184506 36459 17872 515433 GXS_20190603 69851432.55741768 7991.545681673898 1.1641953130891787 0.00013313497424002313 7911526.393848951 904.7458367182579 None None 820367 NEBL_20210125 16593946.335939087 515.3773581678307 0.9558196562817173 2.96513369256943e-05 1603647.301627429 49.74817805642667 38936 5888 802156 KEEP_20210809 129469435.88601856 2942.999750165196 0.29495791007320177 6.705347141491671e-06 16485836.656422159 374.77637969364724 22553 2852 131612 POE_20190510 8570657.605083385 1386.4635640660952 0.0037628584820841187 6.09532438949464e-07 461849.0723281669 74.81333481529582 None 10912 815050 QSP_20200329 4861926.641019428 777.8274689578228 0.0068128556056126985 1.0896964807937667e-06 45171.17231872837 7.224997909613023 55164 8309 355576 XVG_20200518 56667652.533493936 5861.114505954529 0.003485871455829254 3.6086936031367137e-07 1559609.9660209664 161.45616896906623 292588 51777 289428 XVG_20190618 145804963.89812675 15641.62527604856 0.009280350538695137 9.960303089422525e-07 2449005.1354282056 262.84387981584734 304043 53032 395064 RCN_20190201 5160297.218141096 1503.8989987056102 0.010308006455315726 3.0041294002023935e-06 222889.29751842463 64.95807841876724 18122 1102 1863788 OCEAN_20210428 578271306.7541916 10496.861129298344 1.3591605156251232 2.4664663536155216e-05 91611342.43760271 1662.4695253744335 103398 2812 70658 COMP_20210723 24255.09109173167 0.7524846084482716 2.63129156971497e-07 8.158500025204942e-12 59.959819961601404 0.001859095351873144 2546 None 3559162 DUSK_20190804 6542506.451761722 606.2405397390727 0.11781892201304024 1.0914826809889045e-05 1491618.7591107057 138.18459839815034 20219 13235 227094 ONT_20191213 378237048.01806754 52485.30845981331 0.5933792758358669 8.233560162563525e-05 89320522.17874695 12393.858752049286 81580 16278 324525 NAV_20190325 12454836.996856367 3120.2268083472886 0.19272068053035793 4.825783063225285e-05 278275.4122638247 69.68098948795803 48165 11385 772440 TFUEL_20210108 0.0 0.0 0.02867552737626128 7.272570619555038e-07 13606556.611304788 345.0839545033305 78993 4861 64313 BNB_20190627 5010433484.490698 385795.8998277477 35.746328940183346 0.0027526197557753386 478806888.29135257 36870.17209844242 993555 53545 829 EOS_20210301 3317921581.308444 73059.50499292505 3.4527909753286017 7.648178333930785e-05 3039520108.6901402 67327.5388140705 201173 78893 56230 FTT_20200329 66683472.16188731 10696.790935565876 2.316793705889079 0.00037056442909968795 2765735.4747224194 442.3713620362952 9739 None 15714 FUEL_20190601 5239754.180686134 610.8423453167786 0.009874214619319739 1.1513548697323758e-06 5285242.450019238 616.2707483225786 1 1516 None QKC_20200905 39474605.539811715 3765.0429446521935 0.006703776831804756 6.393529417816941e-07 3958885.107527903 377.5669899489012 63122 9217 295595 LOOM_20210114 38676483.50204939 1038.613858759488 0.046543888279737024 1.2452962097302246e-06 17722538.168549262 474.17202180123326 23473 None 358251 PERP_20210616 174525967.71860012 4321.538491773713 8.4445861289443 0.00020922828089036164 17105186.928221516 423.8086746528913 20649 None 196172 VET_20200313 153704812.4365112 31987.233622225456 0.002472700827704787 5.17686000272091e-07 105815767.64011993 22153.6470977696 118765 60797 236885 WNXM_20210429 196858777.7050755 3596.32996207793 95.06158083315152 0.0017362498661380762 73965972.44154921 1350.949654159616 26154 None 101327 CFX_20210819 266775203.09877512 5921.698126574462 0.3070103718818286 6.816867760055595e-06 13915481.878050799 308.9797885285613 37772 1199 203830 BCD_20211202 326316906.218493 5708.892089857156 1.734502561643041 3.0332681106859535e-05 2488059.6772008804 43.51075774248509 35857 None 1522827 LRC_20201229 220364225.56072512 8126.567215883131 0.17603329815918373 6.485461099709405e-06 60327488.61799803 2222.5998419991333 44172 7287 249793 WRX_20200605 25249831.988875523 2583.1218312669675 0.13512839771479682 1.3822317312061667e-05 8115323.527972499 830.1184561547756 27956 None 24905 MBL_20201129 5273324.3150838725 297.9582379566277 0.0014949515244995248 8.44510784304465e-08 599489.7793218538 33.86568563733856 None None 719430 BNB_20210602 55789519975.40357 1521587.1080071044 361.66565480634273 0.009861516836445611 5219256634.640035 142313.1737620846 None 459003 132 GRT_20211204 4282691914.940479 79769.8602298224 0.8618365653644031 1.607191664340321e-05 151357925.54687265 2822.59080256035 178344 20025 24532 ELF_20190220 42068821.17048659 10745.512920183366 0.12709613685070315 3.246378535542946e-05 6413360.000642392 1638.1453254753255 85386 31217 1006337 ADA_20190906 1381978247.8320377 130756.9575013922 0.04442465942246261 4.203081617099801e-06 77907028.33145447 7370.8972196923605 154409 75245 100209 WABI_20210805 10142160.457282672 254.9990129336721 0.17159533947431052 4.315145493471953e-06 448028.9055830441 11.266680778129636 45365 7887 670233 TRX_20190613 2203594921.1606927 270995.21837213245 0.03356207282112194 4.1220342048776876e-06 990464465.2443484 121647.0873599818 430400 70871 107576 VET_20200506 286705695.88780916 31970.435391334675 0.004468955933240831 4.966528196197744e-07 202761283.69159535 22533.666645964895 119982 61889 289943 ARPA_20210725 31476307.517222356 921.2860006412541 0.03204754962815906 9.379932892811042e-07 3329174.423111712 97.44093710619399 None None 718548 BNT_20190923 27066769.289475724 2692.5278597002502 0.38793442413247164 3.861907114848602e-05 3215764.8937560464 320.13104664916267 775 5107 171453 BRD_20200329 6869944.978025474 1102.54399616959 0.1130659946896041 1.808457769297283e-05 447581.6982431021 71.58939359310601 182 None None PERP_20210828 770117565.9600573 15702.356740775216 17.195363581717398 0.00035053556468398134 53559918.85564964 1091.8441073531658 25865 None 133566 DOT_20210418 42045360704.400856 697540.3480687682 42.40896113698797 0.0007046976926264191 3622543924.235522 60194.78611137548 305060 22299 15695 WTC_20211021 29737874.28099604 448.62577016662476 1.0150760418919653 1.537094194349271e-05 6866971.600387601 103.98415236008982 66232 20335 338905 NAS_20200626 17691355.14068123 1910.325146986544 0.3884719464279027 4.1982667047586016e-05 5313965.604543038 574.2871543988288 23411 4914 725695 MANA_20210711 1008077594.428099 29894.19722793185 0.7597431737455854 2.2538174127067793e-05 281828019.94399154 8360.573950364269 146868 34372 16474 SXP_20211230 296667251.1697551 6381.861539600832 1.5459767628947148 3.322380483212402e-05 66553896.69991016 1430.276138584979 None None 180854 NXS_20200127 10226275.692048928 1191.6384204046133 0.17137177591791766 1.9957884911184235e-05 84802.66605786973 9.876082804645765 22924 3538 570980 WAVES_20190324 278673783.7698012 69583.77657155339 2.787098365018446 0.000696038203098267 7616547.442118885 1902.1244682155464 137900 56741 38388 AMB_20190405 9947858.523266593 2031.608695896241 0.06879999614959781 1.4050729624696431e-05 3176738.07085252 648.7716601752952 18959 5699 621301 CRV_20210916 1218137518.6591058 25276.169290245467 3.0307924177715573 6.287117952211286e-05 653415270.3253455 13554.537263004046 162848 None 14064 BTG_20210506 2345276169.768255 40954.20371656075 134.76609460611414 0.0023507970007353046 178370089.7467453 3111.404787851679 95300 None 155846 DOCK_20190601 7243807.6824923735 844.4182241559519 0.014091419384359309 1.6430901043895901e-06 1135455.3015993214 132.39655418284661 168 15271 238088 KMD_20211216 92912185.16837011 1904.4692556482378 0.7210068793218659 1.4753765823187586e-05 2923689.510050849 59.82665576169089 117423 10006 144433 AERGO_20210124 12712146.514563696 397.0506323019735 0.04805678076753059 1.4995573111860392e-06 1855833.2374844193 57.9091702599458 None None 562212 FUN_20211028 200271832.61668447 3422.2183518862357 0.01890932897612896 3.228798174466649e-07 18231342.053667307 311.3030822789605 None 478 175860 OM_20210509 104274775.03083238 1778.193233827719 0.3512982965531191 5.980309161584009e-06 12406955.713780185 211.20919643078162 39186 None 68115 BEAM_20210725 42943536.61957985 1256.9224990573246 0.46179818284992097 1.3516458394886916e-05 11419334.801990652 334.23467107611486 21845 2543 207096 BLZ_20200314 2042044.5265998847 370.07186627540904 0.009540426866180113 1.71496051025995e-06 272965.1175041084 49.067447794969056 36108 None 543870 QSP_20200701 15285077.813242894 1670.8277889217798 0.02141077167635016 2.3409555427635074e-06 838313.5714208222 91.65735972791337 54688 8233 412251 CTXC_20201228 721449.2286905783 27.17355630914591 0.07153851982012095 2.714491343468116e-06 2143789.608180102 81.34496419906431 16684 20070 688812 ANKR_20211021 807897924.2357098 12188.500006750126 0.0986937057110097 1.4894768530000526e-06 86905637.89183728 1311.572355121892 128041 None 5363 QKC_20210527 146800018.04657072 3746.8603717931214 0.022722385662309063 5.796409892075645e-07 12693241.819442427 323.8006498884835 73774 9496 323778 HOT_20200117 124291921.83840673 14278.12605948955 0.0006887393638833986 7.904246226022145e-08 8606459.250794549 987.7114133413033 24821 6805 519557 FUEL_20190805 3177003.668348245 290.4228504100717 0.0036142508185550556 3.300557623178464e-07 185905.51095599015 16.977013554969304 1 1504 None ATOM_20190614 1499871245.7859123 182409.82233546366 6.257843576186262 0.000760637988301586 111789996.19995472 13588.022261431573 25765 5216 120610 QSP_20190515 0.0 0.0 0.020963217460990044 2.6226061536434294e-06 301471.9269117408 37.7156861603311 57151 8604 818331 RDN_20190906 8240939.467084509 779.6213992329194 0.16281189742415017 1.540466192324134e-05 326278.91328735463 30.871308739681375 25567 4389 1279478 YOYO_20210821 4030003.4537642463 81.94422105393113 0.023016765423779555 4.6846715133134907e-07 1303807.7764292082 26.5367919280447 10386 None 1795501 WING_20211204 42897492.36778078 799.0131063245775 20.0969024414905 0.0003740625774976238 12232760.525314104 227.6877217935488 21645 None 214661 QKC_20200305 12421132.73947291 1418.8838310264605 0.0033323146232151647 3.804694089907766e-07 1503436.0671914227 171.65588985947437 50486 9198 398743 MTL_20200501 19647331.89783032 2270.5959961791955 0.3040839404624342 3.527777020427773e-05 7693957.021628445 892.6010606078971 None None 463279 NCASH_20200312 1885211.850743648 237.61889366281736 0.0006499868292975658 8.188104933304558e-08 455618.0374550231 57.39575222192871 57958 58343 746963 VIA_20201224 5537971.763512981 236.7249299615007 0.23933119010405446 1.0264900435470262e-05 141528.3730945863 6.070143460943771 37858 2133 4839859 TRX_20190531 2072421718.4894776 249389.93072064867 0.03141602294764563 3.7820356540799403e-06 1258441218.607134 151498.15637923297 423889 70713 107903 SKY_20190401 18767244.26390478 4571.830498795058 1.2511496175936518 0.00030478869991967046 833424.8627214973 203.02806060730865 None 3584 412487 RENBTC_20210428 657648487.9079396 11937.563097755388 55058.25467854547 0.9997133447445763 6341294.271545921 115.14125435376535 73378 4854 63508 FUN_20190124 26886972.801466044 7573.937246082972 0.004551840604648126 1.2816347003677574e-06 2641527.2658889527 743.7591295428409 36517 17870 460903 CDT_20190220 5176642.548090505 1322.3762890669714 0.007676128637517754 1.96029798926453e-06 181734.0846493737 46.41049903434128 19469 282 414605 FUN_20210826 344907976.07927185 7036.484623310349 0.03254509788344401 6.641293137469866e-07 53697742.11743243 1095.7793013845803 None 397 124228 ALICE_20210707 102455565.76317807 3001.1067588218025 5.891027628424759 0.0001724671615568895 96257722.6628992 2818.064564066495 None None 50319 KEY_20191026 3400177.9335229197 392.73141702643255 0.0013001425578372376 1.5017062020244042e-07 187680.74922658506 21.677726293567947 23627 2795 382534 NAV_20210506 50888409.777465485 888.7164081172981 0.7132182609180125 1.244104723473709e-05 6099694.254874468 106.40022627108704 51239 14025 483203 EPS_20210724 122096299.47655402 3652.117152517562 0.4630078736635842 1.384223086297378e-05 21013801.561867997 628.2353045672915 18590 None 22794 QSP_20211202 42606616.24213804 745.2816329626327 0.05968968905007247 1.044101429539795e-06 1135372.2134140888 19.860109341346483 72038 8652 121782 REN_20190818 79039210.97860345 7733.056523839815 0.09608504586348987 9.40079084239913e-06 3324679.711308913 325.2807791587791 9418 879 378808 RAMP_20210729 60756184.484415784 1518.7031743719804 0.20231674808722325 5.05469636262638e-06 23932759.524127856 597.9378062268322 30807 None 117048 DLT_20211111 2063575.4824916008 31.841157755028988 0.02520575060959497 3.8826042657278366e-07 28455.457272041487 0.4383177533527131 15596 2609 None AE_20190314 115822969.58667797 29948.561551382045 0.43523058579888696 0.00011258498430835816 70764061.25602983 18305.171984827422 975 6337 450072 ADX_20190729 9784781.542570597 1026.414247691233 0.10630389693885242 1.1151177359292724e-05 688105.5326871558 72.18161382473873 54047 3867 831404 NEAR_20210324 1742033976.3706334 31936.47064214634 5.324996945716032 9.76849518724973e-05 84996608.08037771 1559.2289825324497 45210 None None ONE_20200506 12611387.484764019 1406.1918463398652 0.00242014317677156 2.693934554770693e-07 30960694.36048491 3446.328513863674 71815 None 228473 LOOM_20190625 51309629.58031827 4647.232148329579 0.0741912688519125 6.717345532493127e-06 2271002.8769103 205.61868351304247 20473 None 421831 LEND_20190725 5386703.686339849 548.3225025040264 0.004773721444118895 4.859473339698096e-07 967986.264976866 98.5374513974649 41905 5857 751506 XMR_20191127 889869545.2336279 124119.30645548046 51.27239731434002 0.007164120555992486 181832992.90784794 25406.915815976754 319935 163305 99230 MDX_20210804 671321000.0658017 17472.184901753077 1.133195377594431 2.9498361315749304e-05 44938145.027294666 1169.7908984492096 None None 12116 GRT_20210210 1294499919.2512958 27783.479625071497 1.0543594924362496 2.263711074271139e-05 373570203.5975678 8020.556678894508 52938 5902 34817 LUNA_20210704 2432287174.2751875 70161.67302120064 5.812122036718313 0.00016762904111824613 61225580.068384685 1765.8241196474617 86591 None 21739 SXP_20210610 175337736.59494823 4671.198194825237 2.02542996918534 5.4010388447197144e-05 164560125.50492078 4388.182478121009 0 None 54969 LUN_20190614 6986457.907335827 848.7997160345457 2.584364733070978 0.00031397999968725755 677258.7911221862 82.28161927130596 31364 2228 2333394 THETA_20200207 121867655.5860464 12512.99273804137 0.1222237915859349 1.2556701899546541e-05 5337007.570965117 548.299248735987 None 4022 477822 PAXG_20210206 114692853.40857494 3026.607573446743 1833.6019784697166 0.0480365670176328 6744058.21131348 176.6803308692695 15060 None 71165 TRX_20200806 1347041137.6457796 114989.29877533822 0.020367439701825658 1.738014143926874e-06 453400938.3560283 38690.04917991038 515221 73843 52156 SNM_20210325 20335654.9198406 385.08930944 0.0455979419922343 8.7e-07 2860555.177252106 54.57884491 29459 9488 None WTC_20200331 6580686.193086906 1024.2387049263343 0.22485596549195447 3.5073142801569656e-05 7376169.307258086 1150.5384741561356 54712 19671 983924 ZRX_20201111 278865531.2076862 18231.772882352554 0.38650558646758554 2.5303731429068484e-05 46539180.752604656 3046.825122129361 161182 16302 67906 POA_20190906 2873230.9505844368 271.58074998999996 0.013030812681256825 1.2334934195667115e-06 59353.10223959735 5.618349586800467 17707 None 617003 ADX_20190625 13281327.066627655 1203.1697856318067 0.14472927803947686 1.3103862392151222e-05 724674.6336439451 65.61240964501104 54183 3886 880682 GRS_20200407 12230120.214006584 1681.5415152069918 0.16377879122748268 2.2476540645769066e-05 7463809.962232904 1024.312285681793 37512 106843 None NAS_20210430 45398109.83343445 847.1465554710995 0.997083800120196 1.860429638743875e-05 6382188.94188139 119.08340568875168 24825 4896 465428 CTSI_20210805 167988028.31936684 4219.955884869316 0.44240272129210867 1.112545269005142e-05 17311243.27711557 435.33958724985666 None 3957 132314 NKN_20200105 11551289.977636358 1571.707692843405 0.017767885930303706 2.4163871643464105e-06 1720940.6967777067 234.0435450006257 12129 1004 256364 WAN_20190104 36748105.84400428 9745.035443106224 0.3461822214953 9.18022287343381e-05 1135803.0416762936 301.1975894624031 109221 17357 494869 COS_20210805 40337383.93667633 1013.2982833764592 0.013402500307884115 3.3704332258234694e-07 4265041.629524234 107.2563901320154 None None 402883 MDX_20210823 876488583.2908778 17766.630265009077 1.3637429625881805 2.7676852912422442e-05 45540146.876998164 924.2269117434904 None None 93491 SKY_20201129 9294634.295927882 525.0691451593591 0.4888287590088773 2.7618417738723633e-05 471859.70467094344 26.659680302148942 17128 3810 936289 DOGE_20190818 318831438.52885103 31191.980764750097 0.002638289460262261 2.581255717239118e-07 48267199.103399284 4722.377340217372 138016 139118 107008 NAV_20191017 5551842.480354817 693.3290209037006 0.08357843904840351 1.0437500256741044e-05 151137.9634250631 18.874515365605497 50979 14155 427843 CHZ_20211120 2507050918.7027507 43128.17575231839 0.4666890567666934 8.000699514957182e-06 429109413.8470519 7356.451644731788 416925 None 46114 VIBE_20200501 1636678.3667840138 189.00302912 0.00861970409982322 1e-06 50103.42474834582 5.8126618 19091 None 988132 AST_20200626 9367308.861547071 1011.4886923870891 0.05395493624325448 5.826971031491135e-06 2942474.566607197 317.77841388262505 31995 3454 357121 LUNA_20220112 26257852013.417088 612866.8943535334 73.6356125175968 0.0017210280107706438 1959490722.6071482 45797.65557930573 None 25326 4371 DNT_20210324 244979206.8943355 4493.839603709576 0.3264242265663825 5.9858718938795075e-06 16717937.368058253 306.56864065433285 None 9417 178706 HC_20201224 29702440.770926982 1270.3008839959568 0.6573148977834938 2.8192196669248802e-05 27285084.30458211 1170.255634621536 12694 844 1198321 KNC_20200320 91636096.5295816 14808.91011190577 0.509810858014844 8.248268748671162e-05 82267891.61793552 13310.184920218511 104489 7214 120611 DASH_20200224 1008473937.7875228 101347.2068216131 107.90412397015619 0.010843891110265338 959196176.948643 96395.00802666896 316913 34112 60141 SC_20190213 89485875.63809194 24627.439374422436 0.0022724427895185885 6.253795474712413e-07 1307748.5485477075 359.8942949275283 108825 31205 207807 ONT_20190725 667775728.0954598 67974.12288878771 1.0259621102278889 0.00010462720958570651 137323395.37814385 14004.18546261762 81380 16291 245341 WTC_20200626 10439767.729351504 1128.2392375194079 0.35773744527232226 3.8661149649088736e-05 7731752.379371189 835.5805067065883 54268 19577 873849 ARDR_20210617 166536638.53663197 4348.340637582953 0.16670342614801018 4.352695531225421e-06 10219787.157031694 266.8428772963031 71955 6941 None AION_20200701 41639662.52744489 4551.669155984688 0.09666255278300764 1.0568961170233875e-05 7115848.32391528 778.037848819932 67475 72564 281333 LUN_20190929 2447099.572526534 298.72988325313617 0.9052080349486099 0.00011050334593488096 152194.32409557846 18.579134735380332 30736 2186 1514329 BAR_20210620 48387632.98048724 1357.341742432351 16.382161397766442 0.0004601629393750066 8253734.836777743 231.8413786248845 None None 39510 DREP_20211221 0.0 0.0 0.8002411343075198 1.697470268845008e-05 1277832.4128313402 27.10536157610385 None None 533342 APPC_20200901 6210535.434578859 531.354172376136 0.056726135738531344 4.865722287183416e-06 163305.68855488262 14.007654815196451 24488 3184 2103501 ADA_20190603 2994934524.861709 342643.73961666203 0.09637887919860315 1.1021689793047151e-05 297353290.10191315 34004.70880857415 152061 73489 105576 TUSD_20210828 1402274740.7984505 28587.898881115318 0.9998544787229974 2.0386303660276453e-05 62336526.14775011 1270.996308180629 15991 None 535554 EOS_20190603 8089453949.181872 925376.3062051735 7.759595077045212 0.0008873712847667942 5084760940.793839 581482.7711966641 1103 65836 114129 FET_20201229 37773723.69355847 1392.0318441108363 0.05473422284876092 2.016531399573424e-06 3836839.366152798 141.35775853336455 26453 721 356196 STRAX_20210206 79018410.14315605 2070.6279780055293 0.7897903832484242 2.069086918550214e-05 4969799.473149751 130.19843360738227 147916 10382 249759 STEEM_20200523 81824138.14296411 8938.63886848085 0.2314373673603816 2.5282128724436176e-05 6416517.629563514 700.9379104310054 11357 3856 233100 KSM_20210508 3886379644.050869 67820.79302915727 432.6676070750569 0.007548635596048354 315882422.2542863 5511.1158261058235 55328 None 90994 HIVE_20210508 212488863.57805714 3708.2147114703425 0.5926951347363101 1.0341986014237825e-05 28159978.449962564 491.3657734348023 19578 166 115181 DEGO_20211120 47307854.78143582 813.82530376952 8.733918201215664 0.00015013451346660486 18418215.44528183 316.6058750602459 156019 None 189343 XVS_20210620 263180596.62595692 7397.324100686985 25.7882959806508 0.000724536167109808 33347323.401093848 936.9111436648711 115381 None 10744 MFT_20200207 9344714.457110794 959.4773002404905 0.001023217384942357 1.0512057852600009e-07 1512239.325121484 155.36041027634982 18484 2461 902857 NAS_20190510 40028949.05502017 6483.265261265279 0.8787599880892943 0.0001423472929799371 2789193.0270951088 451.81173743331715 24120 5182 484793 BTG_20190818 235656621.5402662 23053.659060845064 13.45704928453637 0.001316532724534218 10564943.720311468 1033.5916772360652 75057 None 269887 STMX_20210204 81111084.24211161 2164.3424840041394 0.010053193451377677 2.680171176162531e-07 1274711692.505486 33983.68441524791 23895 683 181816 POA_20210202 7777986.776906682 232.9774811219878 0.027385782138695153 8.199712967644865e-07 1525732.7256991793 45.68272088310638 18247 None 427710 WTC_20200807 13001277.631698329 1105.0510967779244 0.4459364966427882 3.7894377219749516e-05 5580350.235476877 474.2018167014243 54905 19499 711318 LEND_20190405 12232936.171893213 2496.12433414932 0.010968657703895332 2.240889574038841e-06 738082.4766684673 150.7897658397853 11628 5917 527065 NKN_20210819 235822147.38275057 5234.622829034638 0.36219120879297884 8.040752551155194e-06 22523175.77380073 500.02120058860964 None 3371 164254 NANO_20210916 786007998.2996919 16309.774966849285 5.900082184141934 0.00012241319455733805 28957433.372309767 600.8004320369031 137596 109754 104141 FUN_20191203 17246908.88895396 2359.0305905547193 0.0028698982719468666 3.9274511422192076e-07 227445.5363151055 31.125884848435476 None 17241 373457 EOS_20190305 3342243480.2403855 900081.9550827248 3.232428520137131 0.0008705082676564696 2047495285.3887198 551400.1509437583 687 63185 84720 UTK_20210310 196989515.53604448 3604.292963222582 0.43922258078853477 8.022691752337732e-06 20596443.310894802 376.20769765788117 64569 3508 76416 BAT_20201018 318797862.4277316 28056.096226064652 0.21484837377856647 1.89023166475408e-05 129183390.77790512 11365.528698875205 None 46664 18546 SNT_20190729 71374104.99375936 7476.264692173043 0.020206095519738173 2.1188770770390414e-06 21703520.322608706 2275.901925619644 111694 5728 282023 ICX_20200907 251731562.92691958 24448.18211721649 0.44512471315573854 4.3273501566859765e-05 58327322.7445801 5670.382743487947 116108 27949 115181 GAS_20210111 27618057.632629693 716.4210371023219 1.96419033864162 5.121459112226679e-05 11487949.140148332 299.538495058977 328394 101368 181319 LTC_20200411 2716126932.301336 396130.161872076 42.127716499117234 0.00614339801342008 3197151628.1823444 466234.0281745337 133196 212961 140377 STX_20210916 1648825217.8128173 34213.351925637595 1.5688374920858075 3.2544183173874694e-05 11230427.522758402 232.96555077584995 78447 None 90837 TFUEL_20200331 0.0 0.0 0.00169211856487183 2.639374762999575e-07 292871.0093375272 45.68216240321393 68091 4025 349854 LOOM_20210210 59447271.38961941 1276.3325281788213 0.07184430112203287 1.542566320014241e-06 18406936.139801625 395.2146419474769 24846 None 265333 SNM_20200518 3142126.23438183 323.82510112 0.007137658949794249 7.3e-07 249088.08567104518 25.47534196 29595 9633 7249686 WABI_20191108 10076984.71137867 1093.1024116382061 0.17051690905409952 1.8496847008377346e-05 269176.72468450264 29.19898514654464 36115 7910 1477014 CKB_20220112 564172494.7315334 13175.790587457426 0.01926320579295257 4.50223955684326e-07 9186880.24849402 214.71782061262047 80498 15783 73780 RIF_20210731 146067505.03668648 3501.0148321347788 0.1939589183234897 4.6403584279389815e-06 3784040.195355075 90.53104112949286 44710 3364 679658 NEBL_20190131 15242087.364992732 4401.493734558145 1.0315247667645524 0.0002980574102342891 92848.46970712964 26.828414902655066 39665 6182 502223 DLT_20190430 5748686.597311518 1104.3256709372222 0.07260953687501123 1.3944727809925636e-05 224964.70658908586 43.204677171053795 15046 2674 1770083 NU_20210718 114487472.54732722 3622.3743960653155 0.206368726907642 6.534998641492445e-06 6202509.448533273 196.4124672734414 None 7139 130828 REQ_20200927 15306060.454030871 1425.472606103425 0.019830689159474023 1.8473009916461726e-06 936698.1952878963 87.25685179739898 39568 27654 332738 DNT_20210513 202801981.9866955 3931.932844079999 0.2686807270082712 5.304365827724915e-06 24757138.561398067 488.76196383556754 None 9990 161725 WABI_20190821 6037554.075287205 561.0802599760018 0.1048962488554153 9.748188396226342e-06 141464.13802360746 13.1465050829861 36201 7972 1534793 REN_20190227 12846095.699805776 3372.377742386955 0.01704593336310207 4.474925893071603e-06 613695.6930294542 161.10838219915803 5548 804 4072973 OXT_20211202 289767748.648757 5069.467062944518 0.489689724201807 8.567508772237903e-06 32385088.18635744 566.602714767139 77639 4901 158922 PPT_20190511 36763001.71073268 5769.839920944298 1.0147984580188103 0.00015926949330365093 1948517.037385557 305.8137493072307 24099 None 552418 REQ_20190920 8663141.968775302 845.8430427047516 0.011866438341491089 1.1578557953312475e-06 1163868.0141543946 113.56325178697243 40978 29325 689575 IRIS_20210718 71128508.19736722 2250.50026165924 0.06760755651926809 2.1409023383943734e-06 2866915.423059524 90.78550163926968 26355 None 789272 LSK_20200511 151044627.00795925 17282.935615150072 1.0794549106601419 0.00012329459268258148 6501449.794401246 742.5910951266499 175997 31271 170063 AMB_20190716 4615105.7252117125 421.52235095672296 0.03188937760681399 2.919547267725481e-06 251298.48347847926 23.006965199169702 19383 5659 802250 VIA_20210718 8880763.848147718 281.5149992919708 0.38320937469197824 1.2147512161083921e-05 145201.59623697642 4.602805339809948 38215 2293 1139372 BTS_20200309 57946760.2483288 7203.212094284672 0.0213810220476342 2.65781962514682e-06 20903572.225476284 2598.469070971858 13338 7040 137133 YFI_20201106 257221756.52854118 16548.42755633121 8552.713674240118 0.5489325733344045 477354689.7576277 30637.70730816403 47620 1879 9659 QTUM_20200905 266585416.16814715 25410.193967157855 2.5970190994670355 0.00024768769270095596 429339613.8882549 40947.76906759171 185282 15099 78545 ETH_20200411 17375118634.991734 2534052.615720022 157.74015800780134 0.022985610074618287 14135915530.589357 2059860.0035496235 453022 457221 20344 STEEM_20201231 59083579.70674078 2049.1112627148896 0.15773763699348162 5.470588784932744e-06 1792858.3283358298 62.179140317491665 11860 3833 217211 POA_20191102 3802808.2505824626 411.6748223359506 0.017272332022802133 1.8698245476157035e-06 84317.46298327173 9.127827201947365 17695 None 510906 SKL_20211028 614008554.776306 10490.850044290568 0.2905708454550536 4.964307686070789e-06 62150620.22003801 1061.8229821688233 78593 2905 195951 DOCK_20210809 50258448.18007917 1142.4364323938205 0.07265197503884736 1.651927880165836e-06 9376525.33164185 213.19920905299762 52584 15154 292152 COCOS_20200305 11196368.393305251 1278.977240859167 0.0004628244609937109 5.284488543973376e-08 1484401.8610122453 169.48768464678366 14686 211 73199 ELF_20200322 26549686.532797836 4310.824910941771 0.05760679066021004 9.348485727940665e-06 31545387.076248366 5119.215937650995 82964 33434 652715 BTS_20210624 119395629.10412507 3542.7401550798636 0.0440542416405424 1.3071896520217648e-06 9919806.987068126 294.343258688972 6159 7172 121525 THETA_20210125 1946321497.801189 60449.1548529083 1.94797860080246 6.035594636301545e-05 75003095.71109013 2323.887346572413 80964 5008 50826 NANO_20210814 893596866.7035354 18733.399563542658 6.7074584591581115 0.0001405812467513929 81553133.36497092 1709.2675615868432 134526 108171 67455 VIB_20200317 1416160.0247804378 280.5807740033386 0.007767598155371675 1.5410668455301688e-06 379700.9371236266 75.33146201870653 31480 1107 None BEAM_20211207 77079974.9689811 1527.1119424035355 0.7507911109718299 1.4865038525230512e-05 20547676.1291562 406.8268694184454 30665 2941 266564 AUCTION_20210603 102748186.23571466 2730.5599676564257 23.20775084870533 0.0006163465692334777 2658365.642698957 70.60031600335174 49199 None 37628 AUCTION_20210805 124987041.71141756 3135.6535130108277 27.23853440671986 0.0006848441628120698 6984932.51153313 175.6184891129672 45699 None 70573 CDT_20200520 2532218.277730668 259.62533123550946 0.0037604055865853676 3.852435443877513e-07 153608.54009796443 15.73678611867588 18925 289 287726 BRD_20190929 11816914.192906948 1440.9350847352644 0.19590553975590058 2.3888399367215336e-05 176089.37520266385 21.47204884765369 170 None None OAX_20210722 5913416.011420224 184.00771533437384 0.10403230263805335 3.2234962517544567e-06 381245.8732884769 11.813106240837271 14075 None 1430084 BTS_20210703 115597810.04194336 3420.0674013121366 0.04281486751998142 1.2644174527824396e-06 6121788.458281034 180.78991287968375 6193 7180 140146 REQ_20211230 285953997.35535324 6165.540212965576 0.3724830353688358 8.004199472034198e-06 102813006.94776836 2209.324285372347 58768 31601 169585 POE_20190603 14538726.779722359 1662.363992633733 0.005775812732027238 6.604088005360333e-07 179912.9166287345 20.57131679718067 None 10860 931861 BTS_20190922 92470246.03927283 9258.462373779925 0.03414185121519645 3.4188242397237017e-06 9900417.324122095 991.3869789234958 13556 7137 140611 SKY_20200725 13261417.873219324 1390.0327635090134 0.7367454374010736 7.722404241716741e-05 9461164.152362453 991.6984954737869 16232 3822 1079623 JUV_20210203 0.0 0.0 8.001209035004862 0.0002252927444289639 1374915.915049351 38.71397166420115 2260101 None 93564 KNC_20200701 216705183.3256038 23688.26948267847 1.2026250784350823 0.000131489508448624 76757230.96715899 8392.283472819701 112095 8175 92529 NKN_20211230 230670751.44647917 4973.561506926177 0.35888337669656123 7.705374760913823e-06 7342596.74648686 157.64859373184203 37582 4606 115682 UNFI_20201201 4558342.340900996 231.5588490566508 4.1488240641629215 0.00021120300036178501 7674955.438734766 390.70676202097155 None None 149805 STRAX_20210430 212596290.37026373 3967.0181008071595 2.1267403751900056 3.968222959233508e-05 9496303.474010896 177.1887622627763 155835 10626 156260 COMP_20210106 19375.20061596857 0.5696673250847145 2.036683978242688e-07 5.9319e-12 26.18357215654157 0.000762603984391345 1964 None 4236498 COCOS_20200321 6704780.137186163 1084.2225928146506 0.0002801980709199042 4.523082708261303e-08 1599167.0973368383 258.14471248277454 14631 216 67575 STORJ_20200329 11926004.940938292 1913.0674725521374 0.0827335136331603 1.3232985383615812e-05 1452456.8021961187 232.31624996633684 82090 8033 127597 MATIC_20190818 30667664.066146076 3000.2850160100643 0.014098842111378521 1.3793207281331903e-06 19901169.183868513 1946.9751453732238 22167 1114 173960 KNC_20210523 158866283.58060238 4226.366551555591 1.7208489491379553 4.5793324470239116e-05 115456854.87235121 3072.409824308776 163206 10786 127302 ATOM_20200612 515139904.558306 55453.411124620754 2.7700954719444946 0.00029787201193032454 171527168.2051849 18444.54215078887 None 8531 147612 SKY_20210111 10587142.003564144 274.58509761136514 0.5530936126497401 1.4380319726822767e-05 524120.6552140159 13.62702881579359 17206 3819 758913 ETC_20200105 540782117.824033 73580.64912072266 4.652389522167919 0.0006326955636339243 778138367.2403986 105821.89872548167 228804 24970 399840 AMB_20210428 10840913.741432354 196.74104100453027 0.07498641794812089 1.3607772939322469e-06 1886499.8552809437 34.234281864868144 25368 5620 373333 FUEL_20190903 2654433.3110661744 256.92731231704346 0.0028855027631776112 2.7929293478043753e-07 366853.41168781545 35.5083929539108 1 1503 None NEAR_20210110 441802395.52108073 10917.580776034618 1.7688156465550509 4.3894165992449376e-05 109790082.18896937 2724.5033145840025 None None None AMB_20200531 1799901.087061334 186.45769468370264 0.012165963158951349 1.260122491641443e-06 1051235.101620037 108.88451479320183 18912 5451 1117843 DASH_20191118 616750299.6571052 72560.34079508367 67.72052480202842 0.007958140028339953 279618333.7165254 32859.19388121084 316323 32009 74160 GO_20190626 13292138.310016787 1124.1211184145131 0.018141828828234466 1.5326908824704448e-06 807464.0348386568 68.21764089152458 9913 675 943493 IOTX_20191102 18977507.23234 2051.5512351175967 0.004382796127561201 4.737993614590293e-07 2590590.9386208234 280.0541701680953 22479 1775 524128 IDEX_20210729 25304320.723170936 632.8136736402319 0.04288315472462542 1.0718449437171846e-06 626997.6168533897 15.671520196276804 53185 1975 9034089 MDT_20211125 38715686.91124881 676.7596460296015 0.06329512676850782 1.1065785341160395e-06 6990006.972891854 122.20516909324006 37703 357 642943 MDA_20210527 18306344.78932563 467.9335767178342 0.9438576972954188 2.4076379512216135e-05 4639118.433239577 118.33688099471486 None 385 1652866 LSK_20200605 186652234.05407384 19092.703308344644 1.33298908647494 0.00013635178421681426 7472816.754549352 764.3962789692825 175044 31215 201752 COTI_20210131 38099892.50182774 1113.6263823845936 0.06766110901029095 1.9799155061724864e-06 14265578.92800987 417.44277232875885 None 1371 238618 QKC_20200907 34148120.25752774 3316.160630687618 0.005822923159161677 5.67029940769704e-07 1927675.3031073238 187.7149299530741 63656 9219 295595 WIN_20210828 477626723.80356413 9738.597764279884 0.0006232653654795208 1.2707926275258326e-08 32379229.579738233 660.1888780269426 38809 13452 128258 STORM_20200511 8603679.288672755 982.5859107962812 0.001134141264794871 1.2936615202455092e-07 447744.85188287246 51.072146279208084 25817 2507 836447 ELF_20190312 56721864.86661614 14670.047538136276 0.1704882763315146 4.414860972014239e-05 12909916.875372706 3343.07375213315 86543 31589 984154 AUCTION_20210624 60785036.913800634 1803.0670229286613 13.296083247196739 0.000394673319810238 3167666.96106434 94.02721179863653 None None 44860 KLAY_20211125 3680221101.85828 64331.18868124383 1.456577502896937 2.546750871084876e-05 28673279.899674926 501.3375561281377 51945 996 36667 PPT_20190821 20472904.389018152 1904.3402134529608 0.56499333424528 5.2566967724097665e-05 1165076.5882745457 108.39870083377275 24041 None 771976 WABI_20190426 17628874.875016864 3393.600157131605 0.33685097875943343 6.480764189654691e-05 8702989.229771165 1674.3908879520186 36447 8047 1086520 OXT_20211002 189400064.57923153 3933.24969836101 0.3203102025611461 6.64995193066499e-06 16410888.740046138 340.7060417938617 72007 4466 250207 DASH_20190207 558242121.225739 163873.68424157397 64.86455003927084 0.019041496092776843 585593468.6542277 171905.54376133403 319892 23239 89262 ELF_20190706 100859604.35403483 9176.729898283766 0.21859139028823152 1.9892849561972585e-05 34537887.02361088 3143.110942490245 86467 33331 1102918 RDN_20200914 17080331.376183536 1654.6845288709376 0.25500682506168526 2.4696873585788606e-05 1701975.5908216855 164.83274909388518 26439 4389 895755 DENT_20190719 60289644.40703763 5617.539394898329 0.0007540696441487699 7.067465553709579e-08 1554312.3081402336 145.67684540449022 46473 9887 262986 DNT_20201018 6425732.2727734465 565.7391231384332 0.008668419648623514 7.626848243238208e-07 263595.4308680562 23.192259146808738 58247 5962 547467 TRX_20200913 2345089676.8291745 224895.1684477029 0.03274882067788218 3.1381301076871035e-06 1329738771.9897666 127421.17698785536 530819 74834 41399 GVT_20210421 44498918.501625516 787.6257936622386 10.10477578528134 0.00017921375624848273 6151968.298030628 109.10854139065466 24943 5593 213426 BNB_20200322 1818360426.9880836 294989.61285239994 11.99980746761872 0.001950313855751878 341768011.0348854 55547.13183297191 1125936 60369 1672 BAND_20200320 6123020.533522334 990.1055733715239 0.33815588070129254 5.477963067152241e-05 3338418.892139187 540.8078474310521 None 1059 702901 SKY_20190729 20023911.313864656 2100.4891910603505 1.251494457116541 0.0001312805744412719 1010118.931215893 105.96051208213805 16368 3797 462705 NCASH_20190614 6382625.879228006 775.8052194421183 0.0021988989550000893 2.671489377518437e-07 1018548.2447344499 123.74560504977921 60304 59208 943621 LRC_20190930 31223125.676033616 3874.423192063184 0.03257187641091765 4.042411172960655e-06 4383933.891011822 544.0786744667558 34252 2439 641757 FIRO_20210217 68716770.80562119 1396.4940488885065 5.944920190901189 0.00012080817998274401 8533710.689517893 173.4156260798623 68516 272 232997 ZEN_20210420 1061212741.2149038 18965.491675513877 95.86909578330744 0.0017130859496909652 162903808.32846993 2910.929981330258 98702 7036 749117 ARDR_20200315 31145552.838897437 6025.556761054644 0.031336487592599646 6.0482290030431625e-06 2250036.742344806 434.2776912297095 64594 6383 1029538 ENG_20200319 7423375.452590255 1379.3590313753703 0.08955225992120668 1.6621430120537818e-05 592150.167135414 109.90658005242948 61206 3602 414852 AION_20190904 25162161.439793363 2367.7969220612645 0.07826799971382613 7.382628367708549e-06 1243025.4091113515 117.24836051312676 67433 72576 168998 PPT_20200412 7814082.342081897 1135.6009088339251 0.2157942580386132 3.135399055422161e-05 845079.2782134189 122.78643531808326 23920 None 1062146 PIVX_20190816 18779673.507099587 1824.8823266166428 0.30916789346683066 3.000921443303927e-05 368420.30664556584 35.76051788443234 63250 8604 276830 HNT_20210310 347021987.66148436 6349.4186724010715 4.790064832073934 8.756509766696105e-05 6720102.445557812 122.84727819069546 23849 5236 41694 WTC_20191127 14495879.184609631 2022.3735830087905 0.4958657224518155 6.928565858642927e-05 28054648.261446793 3919.9821508006066 55383 19677 553431 TOMO_20200117 32242945.92233422 3703.9321590579557 0.46473904619060497 5.333529698701985e-05 33976810.96042854 3899.3136430009777 20485 1446 248664 SNGLS_20200701 7133410.928881698 780.401576500107 0.0103382767085242 1.131016777536387e-06 116651.3086458015 12.76175816528427 9102 2132 889953 KAVA_20191213 11420761.6653785 1584.7791801314195 0.8300480178802155 0.00011530173425017734 3757745.463272834 521.9873542889658 8433 None 351721 UST_20220115 10621119373.587126 246458.75217929616 1.0017011958047115 2.3224890322828056e-05 240470143.46004543 5575.407847334842 None None 4371 OMG_20201231 345214611.37843657 11950.418252728325 2.4627316826158294 8.539821987497253e-05 114641739.45231657 3975.3419106540373 288535 42608 209551 FIRO_20210723 53397934.268039875 1651.0174866767006 4.423009980303958 0.00013662427968583264 3422294.0602680123 105.71273023107409 73704 1092 308142 ADA_20220115 41149779253.900505 954721.6685754727 1.291350930663094 2.9941349325617793e-05 1401461596.2860124 32494.382606973155 790572 682900 9885 AUTO_20210821 43043267.93544341 876.0725819830683 1231.8643757175544 0.02505710986589442 6225452.741152971 126.63070413830187 74169 None 13897 SNGLS_20190601 10815453.940751135 1261.1341331200526 0.018439321626163862 2.150064948690357e-06 597542.664017732 69.67477238580314 2 2180 None MATIC_20210813 8495823527.379356 191098.50242528657 1.325779364533892 2.9818017984682924e-05 1794496705.7143557 40359.909405632505 577978 None 5735 OCEAN_20210105 159843084.78803253 5109.044965977197 0.3817774449312809 1.2202705770702402e-05 67525702.86894318 2158.3157805928167 35520 1348 63800 LRC_20200707 119724065.68942012 12825.561473288924 0.10092817570272439 1.08068439122298e-05 23790810.377896767 2547.3914742763664 36226 6910 365318 BTCB_20190906 0.0 0.0 10569.209482460563 0.9999842186399468 106079.49738232313 10.03649549 None None 70056 ZEC_20210722 1069449035.181275 33233.24808500784 95.83614735731496 0.002967520154249504 680635227.8329313 21075.542078667044 76864 20128 112343 ICX_20200520 160637597.0240536 16468.215202413638 0.2947039216227398 3.018836957792268e-05 44981757.0942333 4607.763276266768 112619 27683 112473 HOT_20200713 125029531.41050358 13475.914353938535 0.0007082823826900864 7.62315742079857e-08 9359270.03961981 1007.3268882505006 25555 7144 637680 MKR_20210819 3195168680.501788 70885.30332955343 3538.0026880611576 0.07857012494719497 96889459.97589241 2151.6707723429863 172243 29466 37059 RCN_20200301 29936735.231372744 3490.8601565289982 0.05871797949909659 6.865264739334447e-06 2674508.38601712 312.70163371101887 None 1135 864394 AMB_20211230 16155792.729672339 347.54099704878365 0.02920971124517754 6.276805468345971e-07 177915.52354365756 3.823184425579824 2763 160 615473 XLM_20201231 2890840675.144444 100243.42048390735 0.13196741236384438 4.5761307157133625e-06 558571735.7301415 19369.155089263022 307272 115512 33820 ARDR_20190719 64434245.97928282 6003.716205812264 0.06414145931133328 6.011613884275095e-06 1894711.0825868368 177.58048496343386 67771 6564 883304 XRP_20200316 6732484159.771578 1246614.9116161508 0.1536465110327934 2.844983028935552e-05 2079737198.446287 385092.8338335523 946605 210788 34201 SNGLS_20200309 4792486.61127185 593.2399225029988 0.00860972236592807 1.0702523490340414e-06 1475283.0787629902 183.38862897422425 7692 2135 1276289 UNI_20201201 809636090.5766013 41117.37401843117 3.7534904564969676 0.00019119928628769976 280030160.1998901 14264.473931610344 146367 None 3947 MITH_20200301 3914466.7749123466 456.8549755565803 0.006322723613785204 7.392483844398064e-07 613028.1897967246 71.67482347879886 94 2083 1367265 WAVES_20190430 196749697.6496968 37802.44349555013 1.9681532245173161 0.0003781507876911811 7801721.597984735 1498.9824627850112 139979 56755 40445 WNXM_20210318 77794182.98640221 1320.925054427798 47.96546459890785 0.000813770118645014 27571773.697684836 467.7758412399355 None None 103505 MANA_20200310 47056348.54306046 5943.52618017264 0.03502301337767889 4.419208300047134e-06 24186431.399331693 3051.84700230757 48065 6776 51080 NEBL_20200117 7448520.898017939 855.7566696098668 0.4683628040680521 5.375117381980793e-05 88781.00712945657 10.18886065388671 39819 6039 670570 QI_20211204 218577486.22711414 4071.2467466773533 0.23371935521405282 4.3585038578189705e-06 37865663.99002846 706.135965625378 None None 875386 FUN_20190510 31195796.73565094 5052.608925498973 0.005181520405707964 8.393413558525878e-07 2604662.2507207165 421.9226354198393 36544 17713 471824 SNM_20200430 3132806.8791785417 358.8340853258337 0.007101578760288821 8.100029969352479e-07 184976.31063902058 21.09831785820234 29748 9656 7419106 PPT_20200914 10366884.859510006 1004.3086174274489 0.2858926252668322 2.7683426862283353e-05 538229.6166710011 52.11760958968356 23661 None 1237047 VET_20220105 5889141212.568311 127156.84643975543 0.08667388025484243 1.8871915761585845e-06 332618442.27729475 7242.259380739228 540064 220246 34698 TNB_20190614 13339606.802459177 1621.3552741186681 0.004834598611620809 5.873657271127247e-07 722623.7950754189 87.79311064277455 15658 1494 509934 ADX_20211230 76947233.27357672 1659.0824587603843 0.5570392430703492 1.1971705605484939e-05 6753485.502090789 145.14370620694461 None 4055 12336 STORJ_20200223 22564279.137739126 2337.5808711515306 0.15682479877055305 1.6246309413202345e-05 966029.6974681226 100.07611991501122 82463 7970 126163 MTL_20200331 20180552.602376044 3141.5556857873516 0.3114704693403555 4.858331521578906e-05 78075373.39182565 12178.23469466881 35069 None 471009 POA_20190702 7025055.405014811 662.6833673036922 0.03193288482179085 3.009905577309903e-06 364169.1881248755 34.32558243762237 17704 None 637225 RVN_20200207 187282172.11328912 19229.552323369066 0.0343262397189353 3.524997248863417e-06 35177909.73667773 3612.4561285444747 29614 7375 202796 SC_20190603 147003608.69174066 16818.353056185195 0.0035858697055061203 4.100726617803064e-07 3038378.450137062 347.4626913048334 109740 30922 231411 OMG_20201115 481983220.48191744 29944.61347634051 3.428554780092577 0.00021325217170020794 284209402.7239324 17677.498606821457 286386 42759 100396 RLC_20211207 241110360.49451178 4776.889342485704 3.3857604130103334 6.703523555500294e-05 32899061.23587429 651.3740047909788 49948 8458 283340 NAV_20200312 5918729.98765737 745.5874300335996 0.08692558035869363 1.0950088988511125e-05 96134.35486980544 12.11012611401215 49713 13989 1136873 YFI_20210626 1037791150.1056142 32610.787826724678 28728.383090042436 0.9037162804512756 188556709.8517769 5931.477867977933 131066 6645 17690 REP_20211221 112178072.57022518 2378.3781044114617 16.254602556571673 0.0003448683714266581 12428119.709018633 263.6831869021595 159176 12085 187698 TOMO_20200312 28820877.7499503 3632.6872667562843 0.4129644422559949 5.2022533911493526e-05 13129703.921645872 1653.9934135256083 22127 1508 211808 RSR_20210104 314664490.3592525 9406.045601558966 0.032472563944452505 9.864772063173651e-07 239255850.29804307 7268.303272905561 50611 None 170522 GAS_20190302 33919931.8719174 8879.542252110388 2.438497203257192 0.0006377768519024063 785577.4883021758 205.46389667600428 316626 97904 156064 ETH_20190901 18507223778.142094 1927984.1889905815 172.07296929356409 0.017925647202821995 6422265680.054329 669037.4978480217 447957 445191 24829 SOL_20210325 3673111725.425858 69488.3602466811 13.60393816401807 0.00025821035016125116 147906709.02353978 2807.352008492691 133154 5858 35910 SALT_20190221 15031109.168426959 3785.6395473470548 0.1817076923377279 4.576374361086903e-05 1292407.1066244657 325.4974333089738 42818 None 344605 XVG_20210704 386640034.42468953 11158.998934499556 0.023478625099557452 6.771536088453861e-07 19826233.188136313 571.8139497618932 321262 54429 100558 IOTX_20190325 23110923.93910035 5787.524996231387 0.00915269615266961 2.2920527931324347e-06 886514.8927009276 222.00441291564093 14279 1665 1193452 COS_20200907 22295256.09242408 2165.316398785505 0.007388581215828175 7.181430971116721e-07 2254935.4497629576 219.17148642970687 12900 None 229143 REQ_20200629 21291813.60903985 2335.2977285383517 0.027603234062184515 3.026603530950684e-06 1825507.6315468557 200.16088806732668 39059 27922 596176 AMB_20190225 13449175.822434764 3577.891801700992 0.0495126997885827 1.3197289508911194e-05 501808.5167258075 133.75381066970004 17858 4964 641993 QKC_20190813 69575710.65255243 6113.320896432211 0.017394096733358965 1.5285223917056615e-06 3850116.0592866885 338.3325215156957 51551 9237 258370 NCASH_20190916 3219391.8754559224 312.4827141857867 0.0011099530794559675 1.0770831500493716e-07 615394.8367782817 59.71706566606859 59567 58855 745931 DCR_20200306 211073568.8373129 23300.417790888994 18.873401608295737 0.002083435387153922 34687120.22778341 3829.1122745600487 40881 9742 216967 KEY_20200412 1742904.7322125153 253.29195563405776 0.0006422932725622874 9.333207480478594e-08 580529.2771053303 84.3571063745006 23357 2749 226427 BAT_20191220 235029684.69041955 32913.05189886523 0.1667023644216698 2.3329233783271147e-05 49101158.07181802 6871.482595107631 109230 32684 23712 KMD_20191011 68961796.78583212 8055.55443023716 0.5926456089264853 6.922802454487616e-05 3286802.2724736123 383.9374239271265 98188 8414 202419 JUV_20210106 0.0 0.0 10.388923958462632 0.00030465981821570584 3367153.0738356295 98.74326229364594 None None 134536 RENBTC_20210617 384438659.70035547 10050.932418472106 38220.90512843276 0.9991423591651575 2102587.171906657 54.96426367272051 83905 5411 86030 VIA_20190812 6858127.843030475 593.6667264672848 0.2962241325626 2.56423349205665e-05 125151.90455412136 10.83364486465452 40870 2225 1890047 PPT_20210729 104344113.09595019 2609.450862299442 2.882081000596627 7.200612153092615e-05 9344825.894273723 233.4718104345866 None None 885459 THETA_20200502 126115962.1862668 14231.68967512296 0.1259573233508197 1.4262219888121034e-05 5880181.428886205 665.8163121427987 None 4028 365481 WABI_20200308 7775976.601616829 874.8471076861916 0.13172535945392552 1.4799884031672515e-05 1250952.8756793996 140.54968280893635 36871 7778 3668499 NANO_20200107 91946603.36585294 11840.38602925091 0.68953125412481 8.893138973056353e-05 3333636.4359640693 429.9513899236034 97661 48553 260915 ETH_20200305 24635535324.34428 2814152.5796041554 224.13487737180202 0.025589599700334052 14844945103.395332 1694855.3800449807 452612 453947 19200 LRC_20200410 34623515.84765208 4750.675249744723 0.030319127174359802 4.1581761194801336e-06 3150152.7474361905 432.03387260373825 34162 6804 552171 WRX_20210125 22245096.651853748 690.3769974034468 0.09358882264983602 2.900908525786365e-06 1537010.6517439026 47.641664652099955 None None 5221 MTH_20200903 3703122.6771615082 324.59154636719876 0.010657276008086915 9.339560255465402e-07 274496.7061806761 24.055664180564015 19089 1899 1279779 OMG_20201030 404629004.84176797 30039.038226141136 2.8823935836834877 0.00021435774555400835 163323569.00977448 12146.041486822201 286287 42786 95299 RENBTC_20210724 420321841.1358654 12574.480900477765 33339.84507691534 0.9971284616663377 3141719.1915584374 93.96257292855174 87832 5547 100399 BNB_20191113 3200712593.98071 364153.2565528334 20.8702225038281 0.002371348857331355 210040979.45477322 23865.602608284375 1062016 57361 1745 XVG_20200913 80643403.61631882 7733.879070902798 0.0049526110008317505 4.742997222974307e-07 1448779.5680746129 138.74615767169647 289383 51469 238378 SRM_20210207 145647300.1529865 3712.6385350876076 2.9057353136047293 7.386485946570525e-05 138081020.19732103 3510.0702751564363 33373 None 83159 CMT_20201014 7566890.306693133 662.3445017161125 0.00946484917161707 8.286393247666057e-07 550268.4246961427 48.17552267477837 282293 1635 818387 COCOS_20200106 9979294.414138513 1358.3600474826158 0.0005763956821204514 7.847603108023504e-08 3077402.493617936 418.98706258019183 13827 187 47947 WTC_20201231 8395019.511073604 290.7160680748456 0.2759137957218203 9.567646837012684e-06 1201231.5969680294 41.654168321609426 54779 19192 810648 MATIC_20190719 29745100.854634758 2775.6994113508517 0.013653930095044347 1.2797051488316684e-06 17592496.861752912 1648.8445933205178 20807 916 191906 CTXC_20210304 1692943.7457915328 33.304041687397785 0.16796099828749556 3.3149188277913787e-06 8679740.869919391 171.30546212160846 18120 20230 470143 WAVES_20200523 105200760.7933544 11492.34969977001 1.0516848603032334 0.00011489494539289364 38171881.20269283 4170.219018901599 121 56831 89919 NEO_20210704 2551618448.684719 73603.89890014923 36.311750390113765 0.0010454134185475276 403411729.06008345 11614.20284695754 405888 112202 98164 XMR_20190905 1267099303.287169 119994.03178991999 73.73812633938688 0.0069809379201249714 56375944.355963916 5337.22495098424 320466 160780 87781 CTXC_20200229 1643765.9382137915 187.79921683299122 0.07666321807863957 8.775584947474977e-06 4194628.475115876 480.15618740029305 16692 20066 379773 BZRX_20211202 106960758.61789672 1871.2712003648737 0.2987203694982281 5.223927223456993e-06 10281712.59919391 179.8033339370532 None None 199766 AKRO_20210821 91299574.7023286 1858.0190660708156 0.0337147782873087 6.8578564353505e-07 24416300.95126274 496.6471533022144 44464 None 223104 XRP_20211028 46866516355.16261 800890.3756865456 0.996836752619904 1.7034698189509615e-05 5937361026.283024 101462.10285592641 2140089 334656 21794 KMD_20210219 171666894.01995066 3321.2694813561907 1.3855736560500533 2.6800032028070938e-05 15962684.950967379 308.7533211041922 98238 8641 263220 BNT_20190530 49025734.98028012 5674.145717575546 0.754114500042717 8.720611530153097e-05 3354601.153079445 387.92747643696515 805 5133 148813 REP_20190930 89749452.90290345 11146.384062692548 8.159041172991223 0.0010133076420629588 6767459.509178305 840.4809208099572 125585 10050 187186 NANO_20190627 184486812.21353796 14205.20917892383 1.3913973617312552 0.00010719840032193887 13839368.116679715 1066.2361194422438 98476 46481 363666 ETC_20210703 6868261332.598034 203203.82089235194 53.701281594005636 0.0015859172669997457 3988491666.637496 117788.95429771396 476864 58096 107608 KNC_20190225 22153707.782396324 5881.546493456848 0.14072585853424266 3.7565825836748064e-05 5899911.360427688 1574.94184030256 93163 6564 205097 MTH_20190321 5939001.12268512 1469.524222118462 0.01975336405545987 4.885743340496218e-06 221504.16108195935 54.786236757442786 18811 2013 1148279 AVA_20220112 81381542.1756024 1898.3875735616634 1.5682900572362646 3.665981536729109e-05 2230486.288038606 52.139089399615514 145921 11031 46341 EVX_20210513 19881103.35267767 385.6294204726535 0.8619125559144467 1.7100152848264128e-05 886011.0506010174 17.578261607355394 18205 2813 705371 NEO_20190605 802789907.708923 104782.55537837157 11.408405670522159 0.0014880636028052042 599675423.9339639 78219.09543054228 322103 97625 216321 ZEN_20210105 139350711.0278798 4454.049730249175 13.173567910293489 0.00042106513963551076 23000387.601813093 735.1585753515533 80928 6326 350689 UMA_20201208 434124098.9403299 22608.174013362284 7.823556004051479 0.00040772114869932493 11327528.807529604 590.3291361292688 15081 None 108366 CHZ_20210110 109515496.30345386 2706.3807048802305 0.020492163247807803 5.070864581784861e-07 34120029.797085695 844.3132554392223 65944 None 151849 BAT_20190220 174964715.777444 44686.71646585339 0.1420328612311764 3.627176476956469e-05 14552001.177148474 3716.229885454841 92436 22829 122237 SNX_20210318 2839122880.3488407 48265.60279627682 19.270851224851004 0.00032694445928486824 141903210.97598702 2407.494512930596 None 5386 22945 PNT_20210107 10903151.068866301 297.4683327878573 0.3785284038991513 1.025561654551005e-05 2439533.4438577536 66.09522374658654 None 113 1089026 ONG_20200318 0.0 0.0 0.06804955842351898 1.2651805446083918e-05 10740959.436990418 1996.9641574355205 84445 16530 298289 QTUM_20200217 243288762.6564086 24405.43895554988 2.5117294164750685 0.0002524747955697958 732504694.6148669 73630.13380889784 None 15203 121059 JUV_20210204 0.0 0.0 7.922770929841526 0.0002112214492517331 1616118.0276519342 43.08578336863792 None None 93564 SC_20190321 109284758.1519853 27030.52650287973 0.0027380475170804414 6.773481988536907e-07 6750028.451592654 1669.8467011166654 109575 31079 227818 ICX_20200412 122768065.72975701 17838.020885848677 0.22952052737171535 3.335178483877622e-05 19650466.217805933 2855.422688256984 112934 27510 109675 GAS_20200707 24605115.986056592 2633.488970462258 1.7656914778348818 0.0001889822033252118 17611580.58015316 1884.9699077429082 319686 99725 207094 ARDR_20210202 79533669.29926589 2382.4111333168667 0.07968961567112236 2.3860263391267577e-06 5784128.947936383 173.18547595509287 64673 6314 None NAV_20200315 3361692.359083172 650.367910553243 0.049662804444891816 9.585375940058794e-06 49974.20302949377 9.645478717861527 49677 13981 1136873 BZRX_20210207 64741191.17468257 1651.0337165809797 0.46288107243052756 1.176660695980613e-05 39329909.5151056 999.7807527514403 18344 None 192726 ANT_20211125 189558627.0194017 3313.532383906278 4.9819120025692385 8.710616981916374e-05 23527376.40324482 411.3640793581935 91989 3333 70894 OCEAN_20220105 406277653.93181884 8772.17236541131 0.943255322798591 2.0537946312295092e-05 34142772.19719391 743.4068013084712 142505 4323 75552 VIBE_20190207 6605024.920472601 1938.9857597034413 0.03299234173884812 9.68516001315804e-06 223268.16571966058 65.5421166510594 20575 None 1520887 YGG_20211028 474683244.77283067 8105.292345948601 5.40844341072067 9.242355975993837e-05 66816805.94365132 1141.8159696115579 99557 None 48672 FTM_20210602 789889274.9962101 21527.532711250216 0.3103527563806598 8.462445651770923e-06 76442718.85685249 2084.377665414641 92924 8132 47008 MANA_20190915 44957906.49570055 4342.966436713793 0.0338698582998278 3.2718529237225805e-06 12500234.08954462 1207.5316965025854 45687 6374 122199 FTM_20210204 334059656.79285145 8913.942085035398 0.13113464291791885 3.496055807937561e-06 216480784.2110822 5771.387988006753 31969 3320 133702 DNT_20210704 98124547.53674838 2830.497357565593 0.13069279510569984 3.7690192494135504e-06 5332074.012714692 153.770447536652 69881 10246 207406 QKC_20200316 8124960.931931504 1503.956718257073 0.0021737081726542905 4.0451582038507553e-07 2077009.5371295975 386.5207056905283 50375 9198 585547 ETC_20200625 723496394.6779803 77763.26173426761 6.211335754952359 0.0006681590722527474 651508194.7520219 70083.33281991645 231764 25571 386622 GRS_20200324 11462671.079692071 1768.9715243495555 0.15346641479285678 2.3683634976977276e-05 10622530.223209165 1639.317167068562 37615 106842 3912987 SUSHI_20210710 1619508825.9272163 47652.26860222545 8.443965969687946 0.0002484788786483052 249396227.09705627 7338.932329980097 112940 None 6114 STORJ_20190627 37826957.47161731 2912.8370247888543 0.26346094334084885 2.0202955065966445e-05 10056340.759204358 771.1495977732346 83702 7757 209007 STEEM_20210125 69519221.30227526 2154.839606609292 0.18479457271933675 5.72795058579051e-06 3600434.8355985708 111.60020839459106 12065 3830 212736 RVN_20200105 119405270.8028726 16246.68613204758 0.02287573941999942 3.1110422098750474e-06 7871096.725231634 1070.4490771037772 29317 7294 200333 CVC_20190906 13003685.332407443 1230.3742891650581 0.0379212605772567 3.5879699711007057e-06 4311486.573600873 407.93697575975733 88188 8155 131188 NPXS_20190411 142985774.86742964 26941.196615725617 0.0007400330218963624 1.3942874772292606e-07 5491262.862660551 1034.6023511169674 58745 4233 151112 NCASH_20190512 5588891.178931896 765.4381486472929 0.0019262945098933158 2.647223390136164e-07 740606.1799975106 101.77831024796855 60691 59341 935849 ETH_20201030 43798925859.1192 3251565.242240864 386.4460129872924 0.028738966806268293 10294153382.842941 765548.9316120491 498450 490181 9705 FET_20210318 457576671.7093064 7778.886232233159 0.6655529345339726 1.1291605221156978e-05 56985450.7249697 966.8009553388978 37951 1469 199208 YOYO_20210112 1862003.452992461 52.56479939758401 0.010670946268561554 3.0019490322690963e-07 1123716.8485278944 31.612385828623594 9309 None 2139137 FTT_20211202 7088525207.054025 124013.26658879196 50.85057271160348 0.0008892587122958162 177984264.01410282 3112.5324452832256 None None 906 DGD_20190510 73282858.93198627 11870.904553221211 36.64295352995133 0.005935455244338228 6734477.868545982 1090.8561710253075 16949 3353 465743 OGN_20200421 6123006.531887077 894.1631151540663 0.21240262923342468 3.1025765378937985e-05 14973226.704717824 2187.147213680156 65621 2207 171904 SUSHI_20210131 1296319148.5662124 37936.1691453115 10.271648597127069 0.0003006529819008416 1012837002.9048405 29645.919272201576 29148 None None INJ_20210813 309427700.4616699 6960.028062796288 9.465093667851031 0.0002128788098266373 35855151.03874226 806.4158842090714 79153 3854 150337 NMR_20201208 159148680.6074913 8285.94766937154 30.469985904404247 0.0015879297914353106 7146591.841842917 372.4414618534691 None 1956 2086263 WRX_20210909 556453504.1918291 12011.03513406818 1.2233934081107842 2.6438697030827703e-05 22481061.462975938 485.8371550888836 None None 1532 IDEX_20210202 37406060.82446715 1121.0434537716537 0.06652231853599026 1.9920015001936932e-06 14073016.66497648 421.4145105859048 45419 1936 6164235 XVS_20210825 358054309.94062245 7450.962569978318 33.36969812059803 0.0006948667353754458 30384280.614790786 632.700535714428 122120 None 17193 SNM_20210430 83806353.72963332 1564.6978676449114 0.20916048743823823 3.9048636200638276e-06 13335.377430864797 0.24896112467217527 None 9613 None ARK_20200105 21027358.048735473 2861.053654557527 0.14736529253995972 2.0041303887278273e-05 504576.4847715314 68.62111485944914 62611 21666 97018 GAS_20200418 15518677.07908932 2204.469183911235 1.1136381507548037 0.00015819524904444533 7857021.355128229 1116.1106946449268 321227 99283 240659 LINK_20210725 7365430940.223749 215591.14798528753 16.685780633146567 0.0004883727599116025 662738291.7686255 19397.553867343926 404418 62835 26292 RCN_20210304 37933412.84492113 746.093177763358 0.0738221747056384 1.4569722693678695e-06 1027094.1897705058 20.27097899095339 None 1140 1277366 TCT_20211028 17606723.944677882 300.8613493610771 0.030422833398125612 5.197641402524246e-07 2186312.561233685 37.35243374085977 None None 924603 ZRX_20190914 97112166.30103053 9378.3410576682 0.16164532972212975 1.56154375023883e-05 13674063.783299325 1320.9567438715148 151107 15885 155880 FRONT_20211011 69159351.99935135 1263.992542858651 1.2150443554191397 2.220880755885129e-05 11689740.2128183 213.6672539085131 None None 383027 JST_20210620 81197285.40964921 2282.2451349816483 0.056739222685304555 1.5936365642017905e-06 126614493.41575801 3556.2257767323827 47436 None 93769 OMG_20190627 394573602.65386146 30381.578471267963 2.8006705517760104 0.0002156635749404404 434822998.6806047 33483.22504491471 289431 40042 None RUNE_20210806 2209109777.505401 53918.29294512874 8.090108365820848 0.00019772530538976702 158858629.826398 3882.564939293924 104723 6319 67412 ARPA_20220112 81227357.46137868 1896.9989885681223 0.08261888245198355 1.930668011420854e-06 12608028.82695516 294.62899062355825 None None 198855 COMP_20210110 18824.76619647218 0.46714273864125294 2.042563721997693e-07 5.0648e-12 47.58323497805033 0.001179887637880516 None None 4236498 LRC_20200208 42301803.58568519 4319.09726729384 0.03736651056792686 3.8114988745901505e-06 3141566.4730149927 320.44943170649213 33908 6814 866918 BNT_20210616 851479673.100479 21096.786212561514 4.027371542824531 9.978464445092736e-05 21629750.08428241 535.9120455543658 121612 7473 35578 SNT_20211230 271672923.1958925 5857.621674218665 0.07015721643067335 1.5077959976012678e-06 6490357.718462149 139.48864976089814 None 6274 174489 DREP_20211028 0.0 0.0 0.6216139051041383 1.0614156877576334e-05 3512285.8119180403 59.97284214602339 None None 451608 XRP_20200301 10085552216.249443 1179195.6500819137 0.23037150494861858 2.6934873838693574e-05 2044539704.0515926 239046.1398388315 946435 210418 33270 ANT_20210203 144273818.17196962 4050.639334887907 4.160323028461696 0.00011710736330528065 29758398.125637695 837.6579214741429 77436 2716 124714 WPR_20200626 4935042.727098089 532.8857649135429 0.00811270155387272 8.761473969392286e-07 151654.74201824112 16.3782565610766 32907 None 3933939 BTG_20190522 406459040.85989845 51079.35147137592 23.208288122570725 0.0029165106351265453 21238986.952476393 2669.0349154175346 73964 None 446927 ONE_20211021 2694642318.661553 40653.214885118534 0.2525752169993723 3.8118432847543095e-06 201997848.5682554 3048.5340238335257 242575 35943 21044 XTZ_20200318 993612314.0088292 182909.38745651065 1.3895779015294372 0.0002578354946759057 176396022.1147731 32730.194953996997 57185 22522 103142 AION_20200518 35205277.844568096 3626.3942712573207 0.08396590463767827 8.618944505305274e-06 4341984.1678997185 445.69662826271383 503 72551 368589 CND_20211225 22565309.767865703 443.329972321202 0.011674609518451777 2.2968304976736632e-07 341554.7649173497 6.719654301482475 38179 6359 138944 QKC_20210805 118149290.5726651 2963.4178644001486 0.018061369993003614 4.5413279640429415e-07 10333791.374437766 259.83153969770166 75166 9538 280880 YOYO_20200730 1834586.9922491058 165.21406147214816 0.0105080476700444 9.467896908306665e-07 847535.9332455174 76.36416481940202 7596 None 1934644 PERL_20210828 0.0 0.0 0.09816411316371429 2.001508152933311e-06 9378805.759065552 191.2282970482379 579 686 3275203 PIVX_20190329 55354922.57487699 13749.144902197322 0.9316371288194992 0.00023139936206707313 4921587.1874676505 1222.4202968172415 61729 8599 217374 NANO_20190414 207080422.59960777 40820.520062736745 1.559737940792804 0.0003073848517878959 6542197.996910442 1289.3015608924804 98196 45143 397800 RLC_20190730 20960936.90198177 2208.40132475952 0.3008532435177367 3.162898967310761e-05 769701.0708962538 80.9194108665883 24924 3316 855809 FTT_20211230 5320541537.166984 114717.79763718908 38.513276000308835 0.0008276026400040739 94769708.13511302 2036.4837476927735 None None 969 MTH_20190511 6107335.663642153 958.5054685341709 0.01788154748848296 2.80638923378629e-06 423861.1924574035 66.5221781223585 19467 2003 1355649 CTSI_20210422 182372558.26654464 3365.6098512186068 0.5852852450121329 1.0820974143524741e-05 40216195.37591089 743.5321734527066 31864 1044 161196 SC_20210626 523586900.4477565 16467.19580895202 0.010872199099605842 3.4200961814753447e-07 85295741.9252376 2683.1705212718875 138351 47088 46227 CDT_20210722 9749587.191451315 303.3778210576741 0.014439332807307437 4.4869187363808193e-07 483626.73841854907 15.02835278460197 21068 336 581034 ADA_20210826 87799979598.30768 1791253.589994056 2.7378837504908593 5.587334373021028e-05 5484918093.248777 111933.42810891621 None 580112 8980 LTC_20210107 11185244669.38366 304651.7178094692 169.2828246096558 0.004588729656999282 8544910886.310713 231625.8964300945 138021 220838 152475 NKN_20210128 21258003.678818602 702.7155673343578 0.031864286882420274 1.0516597218963882e-06 9099438.544665204 300.3209531915005 13964 1026 373477 AMB_20190813 3902432.61241444 342.90383613130973 0.027083532727200214 2.379741909513173e-06 382377.3878603889 33.59825707772831 19339 5634 834562 APPC_20201106 2759223.6144914306 177.4285380631841 0.02512705484187241 1.6163977282866899e-06 574032.8580697125 36.92694641632169 24323 3151 577884 NEBL_20210805 19166150.95433157 481.4392158175153 1.057079749238383 2.658261541450177e-05 945400.7437499141 23.774199062837727 40634 6113 2429755 AUDIO_20210105 23030905.496625874 736.1340150902961 0.15047308888413968 4.80955293310325e-06 2073893.9921551961 66.2876199783161 24166 2367 55662 TRB_20210104 32916623.436148524 984.7792526352797 20.05289409377817 0.0006034281760464059 34671687.605996996 1043.33434938097 None None 425795 EGLD_20210117 628525463.996734 17322.697515011016 36.90367257222747 0.0010197348683661429 60591980.22802079 1674.2982655976687 120804 3321 51208 LRC_20191030 32765591.416259944 3482.429719999363 0.03405185556273382 3.619137903732234e-06 5154523.016178251 547.8388568030568 None 2436 558420 RSR_20210602 488995924.21883285 13327.02707520552 0.03724283482269994 1.0152915148139942e-06 105427291.96776095 2874.094721152738 74260 None 80014 POWR_20190704 48301666.17904515 4028.359553503903 0.11511220284925075 9.59165159393839e-06 10821228.290749192 901.6720122997045 84654 13182 757422 CHZ_20210602 1463847568.1495771 39895.49852765795 0.2736259729875575 7.459424878088545e-06 174320020.12358385 4752.2063810729205 344214 None 25415 QLC_20200105 2938278.097957015 400.880798993592 0.012334540202323939 1.6793394031934317e-06 53999.08090923027 7.351938768663233 24581 5698 940522 INJ_20210823 410519418.2940237 8321.32541196607 12.572587092144339 0.00025511958964719337 108173409.96490091 2195.0260323292187 None 3921 170499 CVC_20190730 17088526.72713765 1800.4017875091918 0.0526299652653482 5.5330386616741685e-06 5972541.5586061245 627.8990150499151 88565 8147 434521 FTT_20200927 339164961.7006181 31586.85824522702 3.6477516501496976 0.0003396072543559494 5205485.971809878 484.6329926003092 None None 7578 NAS_20200329 11611525.614275588 1862.6213949588487 0.2561637136063871 4.097264251336477e-05 4483029.46412306 717.047551444521 23553 4965 1138524 BAND_20201208 168182961.52163285 8758.57771877878 7.435349825884213 0.000387489956027787 129031548.27812317 6724.42186841443 40258 2786 350529 RUNE_20210110 351191364.8837883 8680.036704452434 1.5763406386130867 3.913134620091076e-05 27096793.970575616 672.655389212233 26799 2047 287788 MTL_20190227 14194745.306267593 3734.7147492713834 0.33735433067878 8.875976055451345e-05 2103946.2844896684 553.559718812905 32532 None 581228 YFI_20210508 1944415568.9848547 33931.78689288823 53808.56357731458 0.9389064736771425 534206250.1684843 9321.373276231448 111951 5000 19708 TWT_20210823 325196718.18851936 6591.814161180421 0.9357245146160842 1.899031596718701e-05 84087449.17670862 1706.5356350053971 None 43940 4197 REQ_20190922 8834928.568600388 884.6917760103788 0.012104566178258624 1.2121091877216028e-06 202792.82859290653 20.306969049664552 40961 29307 689575 GXS_20190902 49648850.56576975 5098.508906228967 0.7638284702426115 7.843859855736873e-05 3812162.2756721606 391.47619920741795 None None 606832 WABI_20191015 7580659.747054215 908.2939603889076 0.1282806399216576 1.5369620532945294e-05 351998.78286566894 42.1738441904245 36202 7916 1306632 TCT_20200501 3379044.5226721494 390.2108461122348 0.005747104231447053 6.662925086950198e-07 560092.2394451452 64.93448670697833 None None 668926 GVT_20211125 1829932.2058280087 32.0105966025339 0.4115073363843392 7.193952107419327e-06 17383.697861931072 0.3039009971666188 25867 5838 411926 CND_20200411 7014397.454320599 1023.0755548295784 0.0037031594485529657 5.399495357872819e-07 111009.72648998119 16.18608410436129 34684 5953 426986 KEEP_20210806 134742037.71669686 3288.665546760052 0.3092877461570448 7.5591093835749296e-06 24152438.250607446 590.2947170874274 22501 2842 131612 NEBL_20210902 27695290.52563514 569.3442869355158 1.52613205553005 3.136624441889522e-05 1287520.7235832456 26.462120079299872 40533 6165 1295133 FXS_20210703 65489841.72732572 1937.5561161241515 2.3021759374168944 6.79948115892404e-05 4740172.964049164 140.00110171969385 11958 None 136180 MANA_20200730 65263440.52791199 5884.2420871823615 0.04916740246904092 4.433001027612552e-06 41049413.889465235 3701.0719463871237 49768 7076 75007 CVC_20210120 107679900.40201546 2973.528394601175 0.15990432066554722 4.436624681982515e-06 31808601.798804846 882.5454324971041 None 8115 160531 ICX_20200306 207796555.75913227 22945.384846700246 0.39568720258513795 4.367992252904013e-05 73812415.97781959 8148.15488226139 112609 27516 143772 CVC_20190702 24459017.639974628 2304.9877701779956 0.07140343285876631 6.726676402110228e-06 3735880.577510667 351.9446995153494 88699 8163 447156 ANKR_20220105 923311036.2513045 19935.898192112985 0.11137411143169137 2.420602560652338e-06 76323594.31351537 1658.8153697351552 155337 None 5363 OAX_20191216 2836381.227957744 398.5787144440453 0.05430480844848067 7.631073645880512e-06 126883.95229682041 17.83011140488639 12163 None None KEY_20190515 10224519.99161781 1279.5147883405143 0.0038452094276817937 4.810554451315478e-07 3111196.631330409 389.2266750419182 24021 2837 639890 ENG_20200421 11232053.924851112 1640.2543872394087 0.1358282573487758 1.983857004463159e-05 1022000.4260865293 149.2695808244033 60849 3576 458891 FUN_20211207 155810556.15948072 3085.928268334273 0.014704667902569656 2.9136751983923595e-07 3799222.0265058884 75.28016997841702 None 531 194611 WAN_20211225 133176561.29036681 2620.1012501882433 0.6909352653741677 1.3591792399519531e-05 3124185.800270893 61.4576892262306 131474 17425 243413 ANKR_20200324 5076165.280272563 788.8912772466014 0.0012791813813329066 1.974090874913973e-07 1453030.5012416665 224.23827420658387 None None 5425 CAKE_20210711 2916870114.6769295 86530.46032190269 15.030365055366635 0.0004458835518602335 161300475.58537465 4785.0620198391025 962009 None 824 RUNE_20210120 466930412.2904897 12894.57475397485 2.009014550145871 5.574110507171309e-05 44254629.394413546 1227.866640788947 28777 2101 220522 NEBL_20190702 17216807.504571315 1624.0856923639813 1.1255955959101795 0.0001060513877136515 456507.9472619682 43.01127464015544 40279 6146 707671 KMD_20200404 46421837.36372365 6903.1925069017925 0.38775853426279755 5.763226908279297e-05 2319475.3316215235 344.74193249429493 99841 8386 155354 CTK_20210616 59583263.36625899 1475.3164430885156 1.3174778794714532 3.262968379573051e-05 10137069.563951429 251.06256404073912 55872 None 152764 QKC_20190725 55326805.466576435 5631.817563293509 0.013801958026721631 1.407518212182486e-06 4492599.114280524 458.15347801682435 50888 9226 202056 GVT_20200421 3208312.1499963813 468.52054974752275 0.7201835118828249 0.00010520230742251194 334219.2988249002 48.82178061754103 20500 5566 159747 OAX_20211202 14667133.280473936 256.5598023562656 0.25439557081554415 4.449927338945977e-06 238069.27731557173 4.164345245058577 14677 None 1497869 STEEM_20190806 71356115.26308697 6041.729026624531 0.2228076362648221 1.886319630994324e-05 1068025.5097325554 90.42048644224673 6115 3764 297203 PPT_20190523 38094096.8499203 4970.737714316746 1.051541738813794 0.00013721123773829198 3172863.0474864244 414.0134907158385 24067 None 592908 STRAX_20211230 184449375.99131078 3967.847391314374 1.3920186049800616 2.9912757159558407e-05 4930686.452375384 105.95435000090531 159083 11167 200312 ALGO_20210203 527516512.91612613 14812.59715915319 0.6514486300091609 1.8343059038597328e-05 272987303.9615348 7686.595692562178 42595 2792 246299 KNC_20210806 156097199.50016993 3809.8836164352156 1.6867671642990416 4.12252268574674e-05 42563431.792376496 1040.2663560280087 177277 11270 105078 FET_20210703 172063710.95084348 5090.607744998113 0.2502351593740404 7.387680530848026e-06 25039297.713856176 739.2339777091811 67361 2953 137103 CTSI_20210219 61317024.44748638 1186.4059590484578 0.2207182737955117 4.269175284238052e-06 14932677.447871454 288.8307179631817 None 524 258951 ETC_20200306 945978814.7546555 104457.20758977017 8.147604604360493 0.0008994143242202602 1940452761.8507428 214206.64038449738 231147 25290 362649 SUSD_20210704 149369339.3813291 4308.702878470161 1.0162463690781534 2.9313609063686227e-05 194242373.6730986 5602.917932804719 139031 7003 47664 DLT_20191213 3054807.214903324 424.03657578483063 0.03723013884476739 5.170898055568204e-06 73976.66036201645 10.2746264476299 None 2618 4347247 HIVE_20210724 113938650.9079702 3408.6246524728194 0.30524129851931264 9.128748423075477e-06 6628549.782208591 198.23779961997988 22290 172 113471 QKC_20210202 52741439.7271864 1579.5702054810035 0.008281573488369304 2.4794187753955566e-07 37501402.46675165 1122.7538040966897 63346 9218 366724 XMR_20200314 643851984.1468899 116007.62931510742 36.83026909547622 0.006635985148768141 228360430.17376065 41145.4073080751 320688 166745 88356 BCH_20200113 4875621983.973387 597709.8253587519 267.7697643433266 0.032787746097358406 2933498734.747644 359199.67262810556 1001402 281151 122390 BCH_20211125 11620733410.853054 203133.33709503023 614.5697105462227 0.01074560968519673 2979025378.4845657 52087.57185745323 None 699963 267338 GO_20201101 5899904.582935243 428.0767387932006 0.005649721539021813 4.0987484210666706e-07 113823.1228063576 8.25761662165408 None 678 694128 LRC_20210201 616883055.7192017 18662.91489951937 0.4949594250188978 1.492648258918987e-05 214379162.8911215 6465.028607662637 53755 8119 159364 LOOM_20210513 100345935.73347552 1946.388203775144 0.12028674175220645 2.335343992913134e-06 6201304.744447789 120.3971408004674 32585 None 275263 HIVE_20200531 91774963.52471352 9487.383408979475 0.2569158027497083 2.6598850876454817e-05 6475759.520327803 670.444402210589 7030 82 108920 WPR_20200305 4558881.312592868 520.7675594231835 0.0075003582884434475 8.563199465470471e-07 326200.79450097046 37.24252044613262 33651 None 821116 KMD_20190914 79566327.52534032 7683.899810510726 0.6861113918092235 6.628047699794948e-05 2552523.231856449 246.5816183428638 98361 8424 213183 DOGE_20211125 28878915783.938187 505118.8129406016 0.21828038424985471 3.816160895180786e-06 1252623948.0221374 21899.42327267198 2558992 2226333 32279 NEO_20190930 503559491.3770478 62539.29475620359 7.139649672154371 0.0008867048739005188 230433261.7890125 28618.532521842433 323584 98312 189975 BAT_20200105 266824360.40789884 36309.01711827792 0.18809358711622753 2.5579538761615528e-05 37117399.36675424 5047.731665862527 109650 33006 23415 MATIC_20191020 30337521.82875495 3817.664932902678 0.013841962391857086 1.7412178685057362e-06 8495868.700097747 1068.7182908249542 23974 1188 198579 SXP_20210602 176819126.50491545 4819.003941821494 2.040287948928125 5.5621089323237515e-05 156790039.9437436 4274.3147217462465 0 None 54969 RVN_20210207 265453257.3713241 6769.483806266915 0.0318137184942205 8.087164149655123e-07 62162541.51561343 1580.1946486948532 None 13794 133359 TOMO_20191127 17708596.859414186 2469.99667164749 0.2698964745255689 3.767325962245348e-05 7022421.398051884 980.2184521755147 18798 1378 333832 KEY_20200403 2431798.110389094 358.9036010939333 0.0008927253097287552 1.3095370803991515e-07 1815545.578511974 266.32203997202043 23388 2748 226427 CVC_20190207 15212149.249318564 4465.572997689425 0.04438039095040624 1.3025854011642513e-05 495808.3833326983 145.5220984028105 88440 8225 325133 AGIX_20210708 191481261.0570525 5830.0 0.22278836526151513 6.55900941817431e-06 3360877.975619413 98.94605703285468 55237 None 164854 SUSHI_20210617 1594102456.1517644 41676.460615178345 8.452564479457255 0.00022085121818843064 237849859.74180418 6214.61467671617 105448 None 6774 VIBE_20200301 2414085.885711695 281.5015120298922 0.013191006997039506 1.5422832322505684e-06 103134.66269242342 12.058432003716 19483 None 1426283 WAVES_20190507 213493351.6076338 37316.75959413169 2.1354218267530913 0.0003732986650427004 20961617.382048775 3664.355064569373 140150 56773 41172 OGN_20200506 9501499.015136017 1059.306539720656 0.19719977015776802 2.195090274491617e-05 20694001.879108857 2303.5119274632543 65433 2223 153973 CAKE_20211204 3109644066.5846415 57913.28267588066 12.587372923736025 0.00023473500257462128 133805515.08351812 2495.2655425343337 None None 579 REP_20200502 120630090.32838786 13613.410612908865 10.934138670180149 0.0012380787861534196 34772118.75254401 3937.2669284450317 131289 10119 256414 VIBE_20200412 1519735.9723831844 220.81542016 0.008115620755705618 1.18e-06 18986.35858060807 2.7605902 19203 None 1554973 WABI_20191030 9420156.13102321 1001.0579394554496 0.1594024355773126 1.6939323667650524e-05 767293.008969107 81.5384318299781 None 7914 1653961 POWR_20190903 23661817.86914929 2290.2693559154027 0.05537513120501278 5.359857251035262e-06 115399707.88254307 11169.742583031717 84012 13067 414066 ASR_20210916 19239694.64288146 399.22633196494195 9.461641994578862 0.00019627361772684988 72483523.96586362 1503.6083041952065 2020599 None 71262 QSP_20200718 17674690.744565886 1930.5327296896276 0.024615731011641096 2.6891351473480767e-06 314413.2772869743 34.34794580528409 54893 8221 336431 ENG_20190804 35946709.80795839 3330.8874689687796 0.4585567835950058 4.247858852625998e-05 172168.68929134458 15.948914444523293 61790 3473 330014 BCD_20190512 187115395.90598294 25566.125775436823 0.9902587351004656 0.00013595527844083776 7603660.3203196265 1043.9269247281377 21212 None 2990373 SNGLS_20190124 7384385.8411369575 2078.686218745682 0.012507105195916392 3.5207189557081706e-06 827046.0081655377 232.81139101171817 35500 2189 957120 VIDT_20210523 20732166.24938642 551.5470515915409 0.4456299900697671 1.1866118370700994e-05 6787949.167924836 180.7477281955085 28019 1588 377967 AUCTION_20210711 114707456.96578354 3402.856028336887 25.09608733781333 0.0007444884085488956 71446072.2609979 2119.4846797697805 45542 None 50364 OMG_20211104 2144845206.6228487 34016.01556045378 15.286992244842205 0.00024255615719474344 1179264307.0016553 18711.19014400967 None 5881 173710 AST_20190804 6287825.326955008 582.6340805792073 0.036493735266331054 3.380611561367431e-06 527643.6372015042 48.87847646143951 32069 3590 229078 ETH_20210325 183005042939.6772 3470954.2935337787 1581.631055931366 0.030065029833745923 38413713634.36278 730201.5486551031 833771 743976 6707 PERL_20200801 23675575.363232967 2088.697644190576 0.06697843435102034 5.908893494215858e-06 7415617.05425785 654.2119383958525 12336 494 889559 ENJ_20200927 150443215.56956205 14014.135918640295 0.16239592269617234 1.5135726579988974e-05 6742909.535426934 628.4568811051072 66049 15891 89003 RENBTC_20210729 507520626.0432737 12692.129404907952 39923.17975266263 0.998403094720707 4072321.356508787 101.8410424776958 88102 5563 100399 PERL_20211202 0.0 0.0 0.09661042837072675 1.68949257689866e-06 4451747.484858542 77.8507502423489 None 721 946189 BLZ_20210108 20450675.529233538 522.4661271502256 0.08069595218357029 2.044881221888026e-06 10649104.141129667 269.8543421185344 43280 None 444357 AE_20190513 120962482.6259482 17431.96444670901 0.45488629621277066 6.543632338970892e-05 47037858.51543412 6766.492081651126 986 6355 421011 DOCK_20190929 7127468.215481913 870.1503689176288 0.012730081277850417 1.5541402059446413e-06 11911863.266585624 1454.2488163470562 191 15166 179200 C98_20211002 617824394.0985894 12827.969153468004 3.342546291597372 6.939451814964227e-05 81155962.96630684 1684.8768734106895 None None 25592 EOS_20200217 4237136783.527298 426080.9418511931 4.404072224043959 0.00044175804855456954 6015975280.1652565 603442.760409146 None 70113 90022 KNC_20210127 264378147.80570248 8112.947904210612 1.3121737433040448 4.0282364691265005e-05 56032505.84181634 1720.1394604971022 129588 9376 125563 DASH_20190603 1460743155.4283419 167120.3471196157 165.26900538283434 0.01889982250137476 493702727.129986 56458.825353169006 320150 26771 107403 MITH_20190105 30313759.46947458 7956.277399243208 0.06203240872229681 1.6294212135234258e-05 8463321.253600903 2223.08233252987 33 1960 477824 XMR_20201201 2304689875.6331644 117303.05121019144 129.3986535763208 0.006587260258674824 263227394.13036144 13400.041688430416 326954 184692 74671 ARDR_20190701 111312834.10729541 10258.76333287357 0.11150340067826785 1.0277038791709655e-05 1391218.1387278943 128.22571053856026 67978 6571 885731 YFI_20210909 1242025716.4996436 26809.094391380906 34682.99717254561 0.7492316783966472 300885625.83084446 6499.814342029171 None 7158 30259 DOGE_20190810 351546383.1848423 29645.656083493082 0.002914652113760226 2.4571943114304857e-07 49381850.97292036 4163.1316041359305 138036 138622 127721 EVX_20200425 3443297.8705395665 459.18235744985776 0.15795578216203465 2.107407854593213e-05 463054.4176419594 61.77960081522737 16703 2853 1064652 TROY_20200612 5835878.7760708155 627.5922406580255 0.003071515145300429 3.303117056094871e-07 2278943.003657278 245.07824800297854 8873 None 552530 CMT_20200905 10254632.57643436 977.44357727648 0.01272351903219213 1.2134909107010866e-06 2316228.813425801 220.90764395327153 282684 1634 830307 HC_20200518 45985689.707472436 4736.853447123832 1.0344986243579943 0.00010618936665579815 15385471.36126803 1579.2901228533638 12618 841 1020221 XEM_20200325 356638829.8491411 52778.666178670166 0.03962653665430752 5.864296242726051e-06 35506104.75551443 5254.517156723736 211711 18011 216330 ATOM_20210324 4477710605.894937 82171.35948291532 18.81444541580164 0.0003451435209608701 801069571.8882408 14695.302809399547 None 21669 52553 REQ_20211202 521211099.1715225 9117.182957758314 0.6738325628531552 1.1783546335894269e-05 1360761693.2315907 23796.11694099552 55435 31187 183829 MBL_20200612 5804724.372124859 624.2418862505659 0.001647539036959259 1.7712807615176563e-07 4742533.322574619 509.8730801933988 None None 90223 IOST_20210618 604204106.3362273 15901.187501172595 0.02690331862540739 7.04844231798822e-07 91665138.07814077 2401.5492189280685 246324 53566 149907 ETH_20190909 19532846873.76019 1880567.8660571957 181.4839320522675 0.017461869692958955 7427353150.500337 714638.874147121 447883 445365 24829 BAT_20210602 1123330249.053045 30615.086756485343 0.7482906844483613 2.039944558870452e-05 147371999.5873093 4017.565832850299 None 74129 24707 HIVE_20210112 45186137.82306048 1271.7622511632019 0.12340508951951257 3.4716301604067533e-06 8912330.749334205 250.72155734725126 None 97 154138 LINK_20210401 12076610997.823355 205317.12460460133 29.189755410668372 0.0004967485821097375 1475136599.3211038 25103.739439458346 207718 45883 27392 SNGLS_20200319 2571129.7332962775 477.2169147983827 0.0039876078060881726 7.401236390385064e-07 55406.14034115891 10.283707979447664 8252 2131 1285734 NEBL_20190916 7301395.219166604 708.6927853743179 0.4695726876555796 4.557797050579626e-05 75755.12558831654 7.35299341400304 40448 6110 485969 GRS_20200531 13323675.600841494 1374.8550810045615 0.17682655665971622 1.8278948237563594e-05 1623900.5630068749 167.8661559376241 37381 106877 None ADA_20190615 2817397668.8695474 323920.18844538106 0.09027318734323488 1.0397088852717864e-05 309320337.76228714 35625.53987862723 152446 73755 105576 OST_20190805 8175876.7329427805 746.5927501493893 0.012743905915615123 1.1636620935100896e-06 145621.89334345912 13.29691841661508 18069 758 571534 PNT_20220115 28927854.81741106 671.1591245527724 0.8610520695679363 1.996441106000633e-05 5544163.623278923 128.54734977248836 82812 397 340029 AERGO_20210217 23052372.70553992 468.7383176333944 0.08769223012374826 1.7820152970417004e-06 11619798.737866558 236.12877754623787 None None 567735 AGIX_20210711 191481261.0570525 5830.0 0.23422485726486475 6.951936321143196e-06 1130801.4922534004 33.56287653581412 55428 None 164854 LSK_20200520 160499365.5528353 16448.094554332045 1.1458461815704846 0.00011746353912025633 2637586.3867998044 270.3855340376298 175635 31257 217591 XEM_20200425 347565382.7651928 46352.475684357654 0.03827512719600621 5.106574927765137e-06 18759550.89222414 2502.8539226477556 210331 17957 216672 TOMO_20210314 191605791.57580963 3122.7746132263082 2.370702470711062 3.86408729282142e-05 36331219.06044335 592.1746977471332 None 1942 113228 ETC_20190410 762620985.3971332 147445.34933715302 6.955014396340671 0.0013440486303279058 561071719.2383476 108426.47229526837 227416 24372 634838 DAR_20220105 0.0 0.0 2.071581629163699 4.510553108257997e-05 33150926.7917521 721.8108800401742 None 733 20937 KNC_20200330 75533404.77321324 12773.653567309608 0.4223755923143861 7.155798786933376e-05 41650855.029881984 7056.4005903950065 104540 7271 120611 LINK_20200314 866461227.0117182 156874.57868387378 2.4253678427287175 0.0004359773552563796 849160224.5978607 152642.67233483636 46075 13625 95530 STPT_20200629 9157744.585141443 1004.1564666720216 0.012979984964131866 1.4232125205193897e-06 1009512.260367528 110.68968820404093 11135 None 2264449 NKN_20191108 18395568.81262671 1995.4620562074601 0.028332287606820442 3.073192082186669e-06 3442203.49225812 373.3744575971471 None 996 224602 XMR_20201229 2972006619.79548 109601.3270773029 166.7720078997519 0.006144254417003567 513200927.40994805 18907.47197182118 330739 186879 70346 ICX_20190818 97294521.73763183 9524.273027207062 0.1985670285151996 1.942624906294873e-05 16220834.888479372 1586.9199479330875 113916 26070 212480 CDT_20200530 3121556.2116303924 331.41145635751803 0.004632185921043997 4.922536796392179e-07 120023.91462473747 12.7547155113788 18913 290 287726 POA_20210729 7782067.985555266 194.30793843844705 0.02683364780560899 6.700006727735125e-07 244798.2210520885 6.112287602 19951 None 239848 FTM_20200323 5410697.996804919 927.6653944480078 0.0025535005099996807 4.3792637842334934e-07 1248029.363350578 214.03754458548565 21266 2322 333169 GXS_20191118 38253864.70822834 4497.2080826156935 0.5887408719174023 6.918555803904974e-05 25253948.937974963 2967.703846130443 None None 538448 WPR_20190804 4137866.857335142 383.4222641513474 0.006708953809174851 6.214865824628636e-07 72208.34718507915 6.689048724105949 34672 None 1323626 KNC_20200625 211512622.4232749 22733.92312469398 1.1785268281261536 0.00012679262700408833 64814874.79350499 6973.153302819745 111295 8100 105194 XEM_20191102 375370665.62368107 40664.84544163402 0.04174321028199288 4.520959965945174e-06 51585723.82316256 5586.944335218677 215238 18255 157832 MATIC_20190903 29561673.31319711 2862.5244512351956 0.013596088214883551 1.3159895140377006e-06 18837441.48552928 1823.3094015319775 22894 1133 217453 STORJ_20210106 44777040.75141567 1318.1220074186094 0.3128131221026988 9.16715562495408e-06 25914039.26337285 759.4247619846244 83100 8559 92086 HC_20200330 40422133.50026906 6835.893752363837 0.9052686686052936 0.00015298933752819617 15295390.512047786 2584.9029606629692 12708 844 891141 COTI_20200625 13273038.668291545 1426.699214994669 0.025789297621325046 2.7745594889826883e-06 2854025.4960846216 307.0523144225613 24666 1003 313958 ZIL_20210219 1627875549.7515786 31494.793528491915 0.13914901553326983 2.6914470094626684e-06 255413448.346567 4940.256020457104 143268 19450 35455 JASMY_20220105 393198088.62619495 8494.124452662323 0.08388608221519107 1.8231783203740562e-06 35389538.70978387 769.1554789530043 None None 70194 SYS_20190805 17735138.832462758 1619.3367791407616 0.03164307839119344 2.8892246701955114e-06 271616.53640628443 24.80040620941926 60982 4588 678710 BEL_20210131 34669444.1647033 1013.5614836809128 1.5491902638133241 4.534507464337328e-05 16312939.508453764 477.48264170139623 10651 None 421105 XVG_20210509 1113350358.1409655 18985.037017722036 0.0677716492752717 1.153707316640181e-06 122715604.39048813 2089.0430167365953 311457 53917 113366 QKC_20210428 212440699.10770363 3856.253095560417 0.03293300347703698 5.976346727689863e-07 38136427.17924506 692.0611171628547 72307 9402 311852 IOTX_20210420 283245168.82030094 5061.230303883441 0.04353887032669599 7.785360080266353e-07 65939221.93787648 1179.0856821661685 45999 2666 219398 REN_20190810 104627202.97746243 8820.356537758786 0.1271933352004876 1.0722690347121645e-05 12488700.977547944 1052.8261815681099 9282 872 478249 BNB_20210112 5708211117.642347 160897.09798435975 38.45392552379035 0.0010817267629038242 1050223987.9080731 29543.287955371416 1485059 87824 896 ENJ_20210401 2380751555.4601583 40475.68178300296 2.545507236873369 4.331658558739682e-05 659232049.7679961 11218.071232358863 128391 25442 26970 KNC_20210418 690655157.0254546 11461.505363212316 3.3691442078999327 5.5900925698726315e-05 120734539.75630821 2003.230529688197 157464 10525 96867 ORN_20201015 16510017.604178904 1446.3900584613698 1.8502467151432707 0.0001619043110584184 3073362.623905248 268.93205872685047 14515 None 146736 OST_20200914 5510702.851473906 533.7272243386543 0.007972978037332252 7.720358444541018e-07 234067.32397400917 22.66510245948837 17657 749 678146 WABI_20200520 4991512.187749159 511.68336099680613 0.08453224119991681 8.659167222959287e-06 984404.8890415919 100.83876197190209 31 7690 1504785 NEBL_20210111 10509308.551979307 272.6147447509843 0.6034935860422685 1.5698148136371748e-05 1333104.9994492885 34.67688844869838 38277 5883 781583 WABI_20190515 15260016.742418587 1929.0317210244184 0.293322052112735 3.676975397183568e-05 1283169.733529706 160.85335236867715 36372 8046 956243 BAT_20190329 310230651.0043919 77055.03959235421 0.2491039249992791 6.187084202469287e-05 39186379.9972943 9732.862805510578 95650 24333 94352 DNT_20210318 225176897.75520262 3828.0480148203633 0.3007158112157056 5.102996145519904e-06 33148465.521822326 562.5127960645261 65652 9264 178706 BNT_20190812 32491179.89730587 2812.05060852341 0.46582090784934294 4.0315924860866266e-05 3491644.584399387 302.1952822070927 None 5128 154213 GVT_20190801 8749540.312737044 869.0902345754769 1.9752743809388136 0.0001959230106150113 422253.87719799974 41.882409685875444 21380 5740 213598 OST_20190228 11998229.071449371 3143.1559932032787 0.022691403991693376 5.951573898023704e-06 1030069.6630777684 270.16996049093825 17288 740 887864 VET_20200625 579541418.347974 62290.608954452364 0.008977519988899394 9.658527207090633e-07 206134418.81153375 22177.11455803839 123305 63345 234168 KAVA_20200314 8282266.114558731 1500.9631955027824 0.4444892735241321 8.00869581008621e-05 2644471.46857045 476.4742105544389 17855 None 380992 XMR_20210220 5069670509.7429085 90636.90744096196 284.11261831855546 0.005079440377803596 1046827106.7885633 18715.451310364664 355674 199335 51844 MANA_20210708 977246045.8311809 28761.679522827013 0.7361414958641278 2.166615928320633e-05 485181696.2341777 14279.89587730857 145813 34195 16474 NKN_20210304 35475523.52426063 697.7501915591064 0.05451064839812126 1.0758328117460167e-06 5238147.405440613 103.3811010717954 14747 1044 294547 GO_20201106 5243116.82675571 337.42341004170424 0.005161040681268572 3.312473035061605e-07 371213.35640804627 23.825315654247564 12108 678 694128 ZIL_20190811 77503648.74999292 6842.739365488737 0.008448584238478234 7.460339663901858e-07 11185430.327497609 987.7052435600941 65945 10610 160236 PPT_20210519 110444667.37628502 2591.1180982451556 3.06407193793885 7.162246685920731e-05 5172650.550475622 120.91034418562478 24380 None 685411 NULS_20210814 60855250.230514824 1275.7999287424577 0.6474500683763826 1.3571871931134254e-05 118838780.87032528 2491.1028559604297 63894 5371 385574 SNT_20190811 69921209.93137477 6171.022379823701 0.01974253708199796 1.743812297666398e-06 20247430.53130067 1788.4083595731574 111602 5719 278039 COMP_20211002 0.0 0.0 1.6587374448418813e-06 3.444000499153873e-11 348020.840562921 7.225881059970315 2590 None 3596708 ANT_20210703 130862543.07205218 3871.6885505974474 3.741209975185025 0.00011048618064601117 57793528.50924576 1706.7703425887312 85253 3040 102952 SNGLS_20210324 21355288.316072904 391.62386214778917 0.024023101439547723 4.400307544474921e-07 2016925.7022805882 36.94399495720458 9385 2124 1233971 FIO_20210707 52398190.88459706 1534.3238363706644 0.15585805417144516 4.563686096518973e-06 3297335.1468647392 96.54940609458032 77660 482 108144 AVA_20210708 115701517.10519648 3405.252924256314 2.232083343757272 6.571373534999826e-05 4539897.137207943 133.65701591075526 88508 10476 46420 AMB_20201226 1571923.740415611 63.65324112566304 0.011091971842449599 4.4982998973367576e-07 366464.73334020586 14.861814434589617 20187 5483 636877 GVT_20210610 17771631.65018269 475.2275400148094 4.009596918032594 0.00010705489719138474 588788.6605838897 15.720460389118108 25772 5656 262747 CELR_20210523 198653657.80661693 5285.5825813075635 0.03514785645095939 9.358767669070982e-07 59500185.878809854 1584.3026350220562 None None 130545 WING_20210421 74651417.74943672 1321.874871053626 49.11674918108807 0.0008711125612781028 37235603.69649336 660.393911396686 9554 None 321336 BNB_20190616 4595064196.296147 521145.750361095 32.73662175929157 0.003712721276586221 308517145.2540336 34989.50434771678 985838 52829 829 NXS_20190830 13251817.892630983 1395.1517659042577 0.22173820321747753 2.3366289305027823e-05 98060.61097405832 10.333413783462236 22168 3541 857246 AST_20210422 69824909.90903066 1288.6768517675214 0.4052669164012411 7.4813098605263645e-06 8581136.728839006 158.40953264595575 42017 3648 173984 RDN_20190117 11271751.432987992 3131.422402949147 0.2290775313868964 6.365046525777312e-05 522534.5615835886 145.1891320667707 24870 4454 608656 TRU_20210304 75324938.79243258 1481.528255267466 0.3299609678923201 6.512174158366213e-06 5511690.175211466 108.77979464421517 20774 None 99540 APPC_20200208 3993293.346320074 407.72309730619105 0.03694107577892282 3.7681032190993158e-06 336666.2370947391 34.34099048308039 24914 3245 836985 WABI_20190810 6444355.537952269 543.2766229358486 0.11196400293767282 9.43886864219887e-06 109602.07801983443 9.2397519756161 36298 7984 1513094 RCN_20190922 17126498.56521442 1714.2638052608968 0.03368435167308556 3.3730121215004516e-06 8315831.143014923 832.7130507948085 None 1112 2070155 PERL_20210104 0.0 0.0 0.026388973908946955 8.016651011546338e-07 1400800.1646902252 42.55461427179944 13458 504 591773 ZEC_20190906 330174551.2042007 31239.899647556096 44.921966568306985 0.004250132569204433 138476773.24476168 13101.488848467383 112 15329 175119 XRP_20200403 7796534797.044705 1149772.8433701505 0.17815815095276072 2.6133985707078994e-05 2346925185.3665543 344270.0147141532 945880 211697 34231 BTS_20200711 68373651.57120144 7363.633778425776 0.024973503373491322 2.6898969748875894e-06 7209762.939656305 776.5638337160108 13105 6968 134669 XZC_20190706 86441525.44415377 7864.8983017241935 10.995285884288478 0.0010004081352564915 10639795.842275478 968.06380753504 60680 4026 268050 GXS_20190830 46374157.70381268 4886.807818684726 0.7132697200070774 7.519949144810378e-05 5420499.866294728 571.4792341610035 None None 790272 MFT_20190603 24365671.958842635 2787.26050696674 0.0036698424767246675 4.197715282979746e-07 5539822.236808695 633.6674289409177 18247 2041 844355 BAL_20210310 529085348.02969784 9676.2844506019 48.97525155665673 0.0008953358882278733 162587252.1542227 2972.3216766661867 58860 None 67622 STEEM_20220115 164677741.083778 3821.2799566252997 0.41802443115728555 9.695205390631573e-06 20182831.58678929 468.098711495701 15111 3951 170410 ELF_20210427 184358314.15505365 3422.101993904584 0.4001009825630692 7.4221819558039e-06 40100913.34140638 743.9028854844788 47688 33367 202444 REP_20210814 184760910.30257294 3873.420211165568 28.085930306482055 0.0005886514426737958 59899619.56543645 1255.43277676894 152731 11303 167896 KMD_20210703 70524964.28933181 2086.6554277746577 0.5590403342802194 1.6509693861445477e-05 4317182.372576076 127.4959156695356 113408 9390 230876 NXS_20200412 9156372.088200845 1330.40750929042 0.15345836518411657 2.2299140020021264e-05 34556.48126686088 5.021425931681501 23671 3530 537983 ALICE_20220105 239687999.35278693 5207.626155649066 13.689424296863839 0.0002975256554766635 148805226.00158206 3234.1296057728664 175413 3172 31007 MDA_20190530 17166870.99643051 1985.1540028945305 0.9633756253862114 0.00011140828664057171 735002.6242681218 84.99839614813588 None 362 1619229 FTT_20200306 78687613.0493633 8685.412439322208 2.727501934295122 0.0003010572860246892 2921531.2490304206 322.4739303793468 7895 None 19129 WABI_20201231 3706691.2535362123 128.36119146287243 0.06233385672160078 2.1618359701742296e-06 449673.1407821292 15.595370183907697 40910 7486 1287539 BAR_20210511 90872430.65619431 1627.8282662978547 30.789756017714637 0.0005510431216120821 16120619.832722837 288.51013531365373 None None 39485 RDN_20190716 12399684.777675195 1132.1823197959775 0.24441724375238977 2.234796715980729e-05 290821.729521685 26.590899892861703 25688 4406 778116 REQ_20210731 43695928.09988257 1047.2315964137977 0.05658167430283643 1.3549477736248728e-06 1556535.57380161 37.27398378143575 43411 27795 307003 KAVA_20200308 15647956.949081331 1760.4952508801834 0.8550487143393464 9.615777583171611e-05 3730625.8463272825 419.5418083521906 None None 380992 NEO_20200905 1337869124.2006478 127522.0319147826 19.05212073750453 0.0018170739782009955 447875366.3628101 42715.595019984896 321692 100407 111243 LTC_20210112 9256128287.148792 260379.1824292547 139.69663325676296 0.003929731095669576 14829089221.44843 417149.15868355945 138358 222170 152475 BQX_20200217 7618225.61686859 764.2200084048769 0.05408628423389473 5.42632672139425e-06 3325780.9226121856 333.6663656137094 None 7 328951 MDA_20200313 5074651.495093125 1056.0766468647073 0.2512405753975095 5.2599864539343925e-05 1718712.1967484413 359.83052732644876 None 372 1557783 BNB_20210806 52300826066.09576 1276512.7176738947 338.2818687741271 0.008267736696058311 1380115123.7795894 33730.53511560321 4681893 579569 143 ARK_20210104 60194028.5336345 1800.8478466038914 0.3769315010543543 1.1450589785966137e-05 2225397.3971737213 67.60409420415745 62990 21592 94251 MTL_20211002 205853343.08836398 4274.36711753742 3.184955822645525 6.612278645055384e-05 22242226.3446904 461.77029279898187 60579 4306 216254 BLZ_20211002 71045043.85700354 1475.1890582414605 0.23085609289561465 4.792797445669586e-06 9664401.281716492 200.64238806069028 67327 None 328996 ONT_20190929 391436300.8598341 47781.239064452035 0.6033933916823633 7.35083842479428e-05 79168565.5258402 9644.708436076828 81682 16303 297056 ICX_20210506 1478743596.0555332 25822.445671036745 2.3873446114487638 4.1643727739667906e-05 132016662.12508067 2302.8371808041234 137619 31622 350407 DENT_20190714 74363433.38323514 6523.09362099671 0.0010227199279280324 8.96691187157113e-08 2670868.787824743 234.17403325145509 46412 9833 256957 REQ_20190716 10584651.680618858 967.7936160515121 0.014482822767076057 1.3259363716629695e-06 475169.48662260437 43.50288028447178 41583 29815 592890 NKN_20200725 15537305.433697008 1628.4796394444083 0.023747976951933345 2.48963474968625e-06 2058027.0950826744 215.75462120770445 13113 1012 248862 MANA_20200318 30806948.567912392 5673.018573800279 0.0231286213199552 4.300083996946087e-06 20965674.040223174 3897.9478360764792 48035 6790 47233 PAXG_20210310 138385788.7183964 2531.8637106124365 1734.808275993314 0.0316874237720478 7526619.947763244 137.47870537415014 16261 None 52901 AE_20191220 45924147.856644094 6430.989412761753 0.13487364754599573 1.8874950368694548e-05 17420196.943366826 2437.876921856075 25258 6357 386278 BRD_20210624 8951956.784238834 267.3656148969416 0.11077929260944036 3.28417928920739e-06 418745.0567836145 12.414177871628015 794 None None ZEN_20191015 25967421.37067347 3111.159790338786 3.452342051568446 0.0004135973903800996 2548053.853448449 305.26187978837396 None 1825 182594 MTH_20190117 4932439.057182228 1371.384030176358 0.016559472827886886 4.605684258371454e-06 977291.0306800152 271.8138410946584 18687 2024 785552 OST_20190618 17751535.04794964 1904.3443506400276 0.027748829184381305 2.9781929885151986e-06 1023039.6114444307 109.7995658675229 18142 756 994275 WAVES_20190819 125463148.8571182 12157.29956572698 1.254696261231251 0.00012160691217569491 14151828.011708379 1371.6149153553367 142952 56897 38385 OAX_20190405 5117324.309643604 1044.7144109390526 0.2179386963322613 4.452473270427088e-05 2001898.1861186174 408.9864862833069 15017 None None AION_20190523 63409657.4573389 8268.969289934652 0.20470112692379025 2.6710584996198743e-05 3222495.704947992 420.48984644302504 68851 72551 289915 STORM_20200106 7369877.941204805 1002.8845969542167 0.001028666798148765 1.4008444811628257e-07 760180.5986534723 103.52183994148564 25972 2524 3220539 TOMO_20210201 100750124.66058236 3048.1435396212805 1.2522946248475821 3.7865575074881565e-05 13834583.368123364 418.3156621143701 38037 1744 172672 MKR_20210429 3963442800.6562223 72407.6546847384 4403.05577803087 0.08041797496111239 308308567.7696747 5630.987190056962 137905 25016 31771 KNC_20200308 145846560.30874437 16408.23977542234 0.8103027889572537 9.104083949228334e-05 185073750.26798108 20793.79439636984 103391 7129 154836 BCPT_20191019 3258718.100815937 409.57835009475315 0.028057874271193377 3.5260248730848288e-06 201025.19728676768 25.262777888974394 10854 3125 1510702 WAN_20200425 16169715.855987135 2156.3188911341686 0.1520044591949999 2.0280067424953715e-05 1910386.6257647038 254.8791646206681 104934 16271 925023 EVX_20190601 15724856.644501299 1835.4225005398944 0.7461250841542354 8.698491202525829e-05 1497826.3403817497 174.619906519975 17281 2398 738381 XEM_20200315 299139199.8256073 57872.796072335615 0.03373660878509297 6.511474367232761e-06 36660720.37138942 7075.854674761208 212265 18026 213172 MATIC_20191213 40195059.41206248 5576.906202850458 0.015741366683339135 2.1868229036552445e-06 49514440.36243547 6878.647478611229 27408 1350 219961 BAT_20200518 298999796.9189399 30925.43927001816 0.20455282462398233 2.117600947360545e-05 66447790.45258561 6878.903005669522 117095 38526 19122 ONE_20200310 19575911.741295576 2472.6512047440356 0.00384022028414197 4.852192923242728e-07 22630538.312958952 2859.4124744551596 71384 None 408073 ROSE_20210813 137398513.53840145 3090.738416947926 0.09160561022273372 2.060295857810133e-06 14123762.228899391 317.65662328042777 27169 1732 217823 RDN_20190703 15872464.388470067 1468.9781284965347 0.3151310213439414 2.9137903950478207e-05 1192545.8137661326 110.26615288419147 25689 4424 772412 WRX_20210821 682417162.6330907 13889.44181826962 1.506330188347944 3.0639964729690335e-05 26263601.372079585 534.2227261592168 312961 None 1458 VET_20210107 1990893897.9341729 54225.8362610728 0.03085771480088434 8.369404604921714e-07 760137928.6794174 20616.89247475592 148626 70741 134055 BCH_20210314 11181104326.168015 182050.87174398292 597.1832434591466 0.00973472244098487 6241649181.63243 101745.52454827663 None 474411 293453 NEO_20210310 3019766842.1828074 55252.30289660178 42.820449122532835 0.00078206037409175 904232826.3988799 16514.648420803846 352034 105838 102810 EVX_20190703 13712428.428503059 1269.0693112959439 0.6489256435474889 6.00014971298303e-05 1660046.1619212544 153.4925549796288 18224 2914 1053022 MKR_20210710 2450024568.1590157 72111.25106997967 2721.141521729702 0.08006897864073252 110608501.69315402 3254.6303412852394 165768 28795 29892 TNT_20190622 22448771.1309769 2218.805923299671 0.051718768442901374 5.098272210442562e-06 19145225.60691606 1887.2756373182842 17495 2516 824040 NXS_20211011 48923599.97584459 1021.8120047259132 0.6434648189309804 1.1745670803655605e-05 978197.5141728263 17.855810674337203 26704 4107 589642 POWR_20190405 52495370.06576757 10706.182255603864 0.12567246205269825 2.5643401245152475e-05 1899034.1187019784 387.49693519721876 85147 13262 630492 NULS_20200423 18617069.168716967 2617.486930018071 0.19524799246194047 2.7460990605333593e-05 7442165.026552873 1046.7161341868762 22885 5176 583809 XZC_20200523 45218973.3894518 4939.814611008048 4.436225718221663 0.0004855127677721264 35868820.48076423 3925.582559247771 63530 4105 177140 POA_20200404 1939403.8685625491 288.40043853540897 0.008813291058945698 1.3099130436414584e-06 59333.537193440694 8.818700503052618 17340 None 691851 SC_20200927 123516147.10164185 11512.029364442982 0.0027556167381496046 2.56830718502125e-07 1893696.710737319 176.49750783934 106990 30105 140324 NULS_20210104 21840748.114499416 652.8702126592018 0.21828517238291656 6.631162315497876e-06 14236989.793604761 432.4974947902981 34649 5109 933536 ATOM_20210212 4209728711.0386157 88284.85961229545 17.77399497827378 0.0003722600963641479 1413329444.5172398 29600.894782146097 57542 13886 88305 FUEL_20200322 1647982.8717487196 267.2775875429268 0.001662767551885509 2.7e-07 81327.6297655025 13.20597098 1 1469 None MATIC_20200319 24954508.391695276 4634.42454779778 0.00912367247367838 1.6921913983382025e-06 21163580.874724053 3925.26470207718 32744 1583 190232 STMX_20210219 95417119.41132723 1846.051730061187 0.011412475604868506 2.207185220051461e-07 50700325.98889538 980.5498302817201 26036 1196 138788 OCEAN_20210108 179094810.23167497 4575.446505945066 0.42930383263522276 1.0878802741472114e-05 53298235.23522231 1350.60752668666 35899 1355 63800 ETC_20210828 8287780784.854906 168973.21177851997 64.08776228736241 0.0013067115322223763 4265828812.996519 86977.72406898707 502573 59503 245929 AST_20201124 17914184.912065722 978.1710961807205 0.10456415827718939 5.697556800464559e-06 3022498.946751947 164.69179986905937 34032 3463 188139 VIA_20201014 4335886.589973712 379.4776847587848 0.1871303967135313 1.6377029566553147e-05 53441.46248920711 4.67701894847904 38235 2146 1804911 TRX_20190513 1566562597.6434417 225758.12692361666 0.023800529340082005 3.4237547881974163e-06 711754328.2029972 102387.31476872483 418633 70566 110041 DNT_20210806 110381750.9048128 2692.016522007699 0.1468291386242623 3.584950355948097e-06 11610735.5417286 283.485355176368 70334 10248 294360 IOST_20190916 83301999.20099905 8083.947407274603 0.0069337637473004905 6.728791866374822e-07 13672077.366128093 1326.791138701068 196572 50801 97717 QKC_20190130 46355727.04675614 13575.262240462052 0.0293485468113872 8.59223154379514e-06 3060702.9770953483 896.0671489118722 34148 8474 211255 EPS_20210814 228537985.97458437 4791.079250873853 0.7481386959606741 1.567137832520404e-05 32869092.69044469 688.5140275984786 19692 None 26035 HOT_20190719 223731538.3671976 20877.774204947338 0.0012628985231790235 1.1839893648146683e-07 13075087.91068508 1225.8122680592828 23820 6582 317141 BTG_20191216 96795951.1037898 13602.055740548973 5.528958495757486 0.0007776094398420245 10068911.433188 1416.1221476681721 74678 None 277645 MTH_20190904 6913127.7257154025 652.0807104316892 0.019891379839253116 1.8762542240899334e-06 1282903.2946302483 121.00984170534426 19524 1994 715962 PPT_20200806 12277083.007210953 1048.025280410582 0.3395046215197902 2.8970938064298994e-05 4965069.758718556 423.68415434478686 None None 1034545 ARDR_20190205 50794363.67215229 14662.261150367465 0.05084523458357933 1.4676945507732675e-05 374552.0576319462 108.11790297941889 69887 6609 706633 YOYO_20190522 6715375.956196607 845.5452829625807 0.022997862863691747 2.895703023845051e-06 2017630.899131006 254.04360093131706 7452 None 1390874 ETH_20190904 19324838795.229195 1818407.8844302718 178.82647784328285 0.016830232310202777 6839270834.390837 643677.1464909543 447983 445266 24829 STORM_20200229 8947505.803610003 1022.2468682813495 0.0011937956211805296 1.3701175066987005e-07 1003970.9817858706 115.22560427906673 26123 2525 1783010 SYS_20190922 15087759.457337778 1510.823387725942 0.026642409133227594 2.6678219438851915e-06 4256980.430833088 426.27022771384503 60358 4589 745278 ZEN_20190205 22673785.325867817 6544.997076073356 3.9496723513990633 0.0011401093209550024 427332.451827637 123.35345014192487 24947 4274 232878 XLM_20191020 1257550587.6121287 158266.8888217032 0.06287551897055572 7.909281503864483e-06 216188755.62328714 27194.967996931842 277121 104566 61021 SYS_20210206 73617315.11873317 1941.1864204011142 0.12055862275293952 3.1583857507932636e-06 5718529.811453205 149.81361481702817 61606 4502 273624 BCH_20210707 9572045185.357811 280242.7821021666 509.73114055701996 0.014924754655133621 3407723798.4031525 99776.99531570566 None 582206 271205 VET_20200626 575644902.6444418 62171.397315549635 0.008923865484820106 9.644137160266703e-07 211690660.99762386 22877.684269013396 123417 63368 234168 TOMO_20190909 28348768.37191089 2726.9770276065656 0.4391230732204229 4.223944313411054e-05 2155983.9328930117 207.38505053634006 17059 1321 270545 DODO_20210519 326757706.11241347 7626.695961949912 2.6414198740205768 6.174010690672065e-05 31852356.213072523 744.511653436104 89441 937 23089 MDT_20211120 31813313.418696593 547.2765479749768 0.05251213518079889 9.028200832407571e-07 3497406.264584818 60.129503476631896 35815 353 642943 QLC_20190321 9304094.927870952 2304.997042651569 0.03880841101005994 9.603243608402666e-06 2950738.0968022556 730.1679205788937 23835 5840 940522 BLZ_20200320 2280786.820967885 368.52860504591473 0.010582220705341353 1.7142689954731307e-06 169671.93523095673 27.48603965720935 36068 None 563457 C98_20211120 606221972.0951777 10425.435464824519 3.2792788602956024 5.6379326481934346e-05 21763613.96728234 374.17308791408817 None None 31526 OXT_20210128 0.0 0.0 0.26820381253689585 8.850983879732758e-06 12136640.043934155 400.5207993387593 55019 1878 171899 CVC_20200530 16312539.21201972 1729.8845305612824 0.024330220554958648 2.5815279060896347e-06 13562170.79687125 1438.997328453792 None 8010 119250 GO_20190819 8238305.492069436 798.2906289323005 0.01076969793949158 1.0438141500488077e-06 181506.81107240493 17.591893365261452 10199 686 906372 CHZ_20201031 50631873.9336049 3727.9586436015347 0.009469293006000475 6.977259464965915e-07 5076954.486743902 374.08525349662506 43870 None 335409 ASR_20210731 11811452.753434926 282.97678267713974 6.815396332616509 0.00016325956992541723 6186404.17765827 148.19236272376062 1992936 None 93279 PPT_20190826 20330309.570449382 2013.3290169511963 0.5596353163984075 5.5434821733249206e-05 1470491.0635877794 145.65987453210082 None None 771976 DENT_20190730 44882898.334234096 4718.582094425506 0.0006158139928437578 6.472498775356654e-08 431099.28942894057 45.31059143363577 46560 9957 262986 TFUEL_20200224 0.0 0.0 0.0034640829559944844 3.4812514100128043e-07 1024087.8501135532 102.91633651600303 68519 4026 394395 DASH_20200501 763112884.1300336 88531.21583903143 80.71567338157072 0.009364088656271403 894200080.3588618 103739.06923060164 317479 34841 74287 CND_20210930 24787077.237459444 597.6175505882126 0.012463749109825364 2.998524643008595e-07 95040.61184969344 2.2864838998826214 36605 6309 221501 SNM_20210826 125230476.06083183 2555.59268992 0.2861747034572054 5.84e-06 1042907.8904319815 21.28274095 None 9713 None ONG_20191127 0.0 0.0 0.10934167461625122 1.5260046542919776e-05 4347257.016095314 606.7160086259478 81552 16293 302631 ENG_20200607 26888972.345406156 2780.1424416944 0.3250683172760786 3.360992059124959e-05 1262529.3901891978 130.5372141583985 147 3580 513025 ENJ_20210710 1213021085.2985022 35702.690157457306 1.2983594246855956 3.8206560174028975e-05 226779412.19715542 6673.391892572185 240016 33918 29114 NXS_20201115 10794673.599346723 670.6011567599322 0.1807507672465632 1.1231368138827468e-05 21843.424148614213 1.357291821013307 23102 3515 726240 APPC_20190901 4051443.481401327 422.0578444594169 0.03724228251609094 3.880751976862817e-06 648606.7872397444 67.58667572804501 25236 3316 1154369 SNT_20200313 29422835.28421697 6113.823933591803 0.00808531218668294 1.692745389971134e-06 13264829.637363939 2777.1320017034727 110605 5609 203342 NCASH_20200425 554548.5780132092 73.96501168660944 0.00019106082211945558 2.5490872934713902e-08 268319.63220428803 35.798556577613475 57300 58215 728678 ZIL_20200725 203554632.84544522 21339.3514717255 0.018447135175396624 1.934104811494546e-06 35968632.010206096 3771.160322313876 83984 11675 88835 GXS_20190126 33509250.389905427 9397.016008013748 0.5584875064984238 0.0001566169334668958 506721.0655114579 142.10004428041137 None None 235095 NULS_20190110 17492888.36185964 4397.130542996007 0.4371587500745379 0.00010992769198418009 7669490.502085992 1928.565742868357 19684 None 388601 ENJ_20190131 27274228.25745652 7879.213485237209 0.03163385546964959 9.14055128950838e-06 4029534.6842791922 1164.3275189723468 37946 11124 17715 XEM_20190629 872017593.2805314 70394.84190569594 0.0969641588326918 7.832123407357547e-06 88841780.60320598 7176.05141724898 216806 18475 184681 BTG_20210624 655228028.8506917 19449.413528133755 37.4118346551402 0.001110511472365288 53367119.352955624 1584.119004984486 99662 None 159409 TOMO_20211120 272045052.74966294 4678.464772835894 3.1920646484230875 5.4879887509372594e-05 15061098.818663154 258.9394326158473 60515 2354 129382 CTSI_20210703 168004027.97250462 4967.856256499691 0.4505746878080741 1.3307732266008345e-05 34577059.603345096 1021.2341354229169 46696 3834 120521 ADA_20210220 29861793769.83866 534610.8014808445 0.9331549494994794 1.66791303400131e-05 4500915018.129318 80448.96324770895 219124 192784 16033 SNT_20210916 375069277.6824894 7782.7395258231 0.0956734421805925 1.985004839949762e-06 11561557.101207227 239.8758347163062 136057 6083 164783 IOTX_20200323 8012997.383536665 1373.4374631959927 0.0018460137585600794 3.1635415174389305e-07 1499642.8023282918 256.9960404950911 22544 1810 487690 WNXM_20211216 168326877.27694598 3450.2833195914304 70.35991180168477 0.0014417767408703055 19759222.15088046 404.89514817934463 None None 103901 BEAM_20210117 26649011.697046 734.4661014462279 0.33538478025171553 9.267466647733372e-06 7159083.032621632 197.82222432210528 15961 1627 289835 TROY_20210620 17019923.455447312 477.432995501105 0.008940461085760918 2.5111104827987056e-07 2373908.1466008723 66.6760424876157 57179 None 402786 CND_20210124 17988604.420482013 562.4544811715848 0.009331141032797443 2.9154292617083284e-07 144334.27537879295 4.509591789769011 33965 5898 464745 POA_20200318 1924700.299273573 354.53106046968605 0.00866111524098027 1.6102785604134425e-06 895025.7037014172 166.403593716209 17408 None 758180 NKN_20210206 27560293.228472114 727.1652185828387 0.04238875926679232 1.1158876788825731e-06 11331128.308621537 298.29291269994593 14136 1026 338143 XEM_20201231 1737104945.5420449 60155.228815754046 0.1919628906997092 6.656546981357179e-06 107749178.24925496 3736.333958112672 218308 17876 108772 WAVES_20210828 2458144182.973878 50117.21815456462 24.58139786842723 0.0005011033434438239 122916258.0840663 2505.705664877653 195695 59355 144631 1INCH_20210610 543410493.5199692 14477.19771491477 3.173716456941402 8.473716833840246e-05 160359740.6730602 4281.551463236641 224931 None 7666 NXS_20211207 48923599.97584459 1021.8120047259132 0.6293594848750408 1.2460793491250766e-05 2165515.746823796 42.87540773073544 27151 4159 466067 NMR_20210616 234989790.2802983 5818.5156754699065 40.911902963140555 0.0010136524691736358 13218370.942181133 327.5045493744591 29241 3476 564321 VIBE_20190719 3907727.4196112496 365.18780186488675 0.021011483141684332 1.96071150247568e-06 319604.6519521827 29.824287657456 20482 None 1758563 DGD_20190730 38076106.908482246 4011.5974907630375 19.112305192395553 0.002009294952221187 1794371.0216151588 188.64394429918613 17181 3363 582962 LINK_20190704 1287746844.2223196 107398.10264905509 3.5300369751065306 0.00029413810126875173 238751222.62144107 19893.794822175885 24632 9207 152412 TROY_20200430 4747903.165820487 544.0373714833769 0.002514160570853012 2.867207875958278e-07 709442.4916310144 80.90649114164444 8742 None 456905 POLY_20210212 126260718.65908605 2647.887474660179 0.157399324073291 3.2976594514404425e-06 13407691.01087189 280.90335993696556 36754 5085 279172 XRP_20200719 8938710463.140823 975118.0269990922 0.19947076313006376 2.17601339465521e-05 977356287.6924582 106619.15260145425 951921 215269 30317 QUICK_20210823 259617390.38826108 5262.505722637584 719.1888798467922 0.01459358925578496 31107795.76954146 631.2311088712086 46685 2224 4739 QTUM_20200313 107435369.13168295 22383.83615193752 1.064091756181645 0.0002220524918699603 468769803.32023937 97821.92403610867 179593 15173 105986 NKN_20200117 11260435.099263955 1293.3120956081034 0.017253186743731164 1.981426982853419e-06 1029620.9807402529 118.24591153237255 12128 1001 285563 FUN_20200117 17704602.42483621 2033.829242608453 0.002948049340165505 3.3832983989390853e-07 145074.88435159563 16.649369373358958 35213 17130 393134 DNT_20190123 7150835.186692184 2002.0769456497476 0.012306533617430728 3.445559377759751e-06 1101358.5610841897 308.3562306322181 60204 6540 537326 MTL_20190929 16434876.765686067 2006.1520560634372 0.3211967401831294 3.916620231619148e-05 6434145.610531699 784.5691353226133 34355 None 247818 DLT_20191118 3808958.493210456 448.14409450974483 0.04745310449121948 5.57642533669882e-06 889499.9811473794 104.5290984656481 None 2626 8432299 RDN_20211202 33131410.251359764 579.544697705663 0.6429045198640425 1.1248122722249797e-05 1375505.7899545964 24.065560985395383 32965 4877 850939 HC_20190110 48007765.62576028 12071.46830089537 1.1201781801841426 0.000281692918322755 24610589.614780616 6188.862569249122 12122 763 379697 MFT_20210727 81213392.65834793 2168.0109560415044 0.008629551303183294 2.3057999124246878e-07 19684267.069783516 525.9599217969554 34365 3589 373654 CTK_20210603 65506153.05939536 1739.3625665223146 1.4356590334411132 3.817443391394571e-05 12875498.796269638 342.36184669083787 53239 None 194884 ENJ_20210207 360611399.9332779 9196.169059582522 0.3900371928058821 9.918682042435715e-06 68820866.30710497 1750.1210227530303 78056 17062 66239 GXS_20190901 52841474.615133286 5504.7439206547215 0.8098880685896686 8.439264488848146e-05 5537297.124247065 577.0021413728892 None None 606832 SCRT_20210511 216229552.38380218 3872.7584233995817 3.107131975952733 5.560566929307587e-05 5662128.00958968 101.33023638294763 None None 56465 XVG_20190901 72682244.25104971 7571.64982799181 0.004567612909948974 4.75851864501687e-07 951494.8728161368 99.12630912903086 302849 52774 272149 CMT_20190509 27209670.005440135 4567.795087683312 0.03397376270857548 5.703991512650592e-06 4960906.13156485 832.9064611486091 292175 1640 877566 NAS_20190530 52847378.75387917 6111.002082178129 1.16164887973091 0.00013433733214588818 5194955.884406876 600.7637301629924 24049 5163 501303 SAND_20210513 309500730.4271228 6000.612396938946 0.42365005004984446 8.445588169476903e-06 69241676.55776106 1380.3531577587917 113715 None 21212 CELR_20201115 17689892.181131497 1099.266062735585 0.0044768702350647845 2.782024047502222e-07 2685754.335164964 166.89858659716432 None None 314997 NAV_20190904 7146577.001784508 674.1008112932212 0.10812232642497129 1.0198637465710384e-05 158198.58526591604 14.922080129629233 51484 14198 463565 LOOM_20200117 15036260.136829514 1727.3014570975076 0.0180533034161876 2.0718687340599254e-06 2297583.992183225 263.6798555666363 21298 None 255178 TLM_20210729 365796954.82137156 9147.8888704678 0.29516880859856603 7.3745190019597596e-06 307964722.3693016 7694.213043134903 55335 None 10364 BQX_20190213 13993478.383000417 3851.150117906829 0.15015332101550172 4.1322411451278635e-05 1257701.8434958584 346.12136920103177 60620 5821 340776 KAVA_20200107 14426161.171871958 1859.3021247692516 1.0527643171889758 0.000135778897948862 5548515.830153437 715.612556741715 9822 None 303770 ARK_20190426 71643870.95927404 13792.601319475749 0.50938031167548 9.78989051952503e-05 3410574.493006501 655.4856976193859 63724 21714 188283 SLP_20210727 143661554.47084928 3835.079583056176 0.26381751820190613 7.07064766411391e-06 111890427.04019867 2998.806872191903 291140 33436 3082 BEAM_20210506 130572340.94981916 2280.831791294348 1.5008283407640106 2.6179750718446007e-05 21405749.500039127 373.3919267324398 19709 2246 172921 MTL_20210428 254332481.5426374 4616.678552508084 3.9329511992315727 7.141206747691422e-05 40732406.40507732 739.5935538851331 54978 4073 207061 ONT_20210115 466424777.3547787 11942.276498108075 0.5801493402102865 1.4814126488024159e-05 179468215.11525097 4582.724921023908 95176 16678 288289 XRP_20200425 8482035724.246257 1131652.6982139912 0.19238168847343698 2.566709973003266e-05 1858298807.3877132 247929.73383226618 951023 212570 34710 REN_20200418 51657961.0397105 7297.017809102115 0.0588185904132095 8.355336562917014e-06 2918397.2318647606 414.56605684041057 11693 875 420454 YFII_20210112 64447834.11611915 1816.588291314612 1632.8276315564242 0.045932198708054026 167461341.64148793 4710.765221961731 None None 153054 REP_20200423 108982177.81645133 15318.863212417204 9.907470710586484 0.001392623928401564 19909360.59059772 2798.519699686318 131102 10118 257312 RARE_20211216 162001933.5808738 3320.1725176106374 1.1173548241265792 2.2896189668705657e-05 15695649.934841288 321.6261926131198 218916 3128 8540 ALICE_20210624 79203167.1354534 2349.404163000844 4.704720116236599 0.00013965221731328953 41650304.01460208 1236.323769258471 80309 None 45300 DASH_20190703 1353501551.3536296 125148.57481174964 151.9728252888199 0.014051836494749377 365408014.23497194 33786.65666143022 320263 28205 107234 OAX_20190803 5125106.885599189 487.32192152501864 0.0982012844862517 9.330113307759568e-06 210810.2303746832 20.029099885206264 12314 None None ADA_20210111 9547696166.484125 247672.05074667258 0.306214441004005 7.96151223933316e-06 2905060003.694079 75530.96026292614 175706 99223 38332 DEGO_20210826 60625247.982286416 1236.8475891382052 11.18165854695676 0.0002281470568982878 65448959.57348581 1335.4000608263746 140631 None 274758 PIVX_20211120 48308456.42667086 831.130003605101 0.7149584886193334 1.2258087237003445e-05 1016465.902452131 17.42748411835658 68590 10328 257692 GRS_20191030 16333618.490598116 1735.7353999899753 0.2215900946311031 2.355128956463402e-05 2812690.2571257623 298.94153351697577 38502 106950 None ARPA_20210620 36958534.34723317 1038.8085609571544 0.03759977336491692 1.055631226727088e-06 10297322.913171256 289.1021579661573 42192 None 491421 AUDIO_20210519 305368772.9767745 7156.759167840335 2.004670505830365 4.6856833538669876e-05 47466416.97715081 1109.472101528317 48536 5230 31398 RVN_20210401 1583375830.612775 26919.32138647433 0.18784516537580934 3.1967318068892937e-06 203029487.3201519 3455.1372059764394 54274 28981 44096 AVA_20210422 248218538.7329837 4581.079810364148 4.731064635683224 8.742084822074077e-05 9200616.515489392 170.00945069981785 66315 9897 42647 RLC_20210711 214801943.90764716 6369.878381992307 3.007825570013014 8.920734640992835e-05 15211123.417792592 451.13784839900995 45720 7716 151690 NMR_20201018 148349079.58056659 13059.696001147464 28.550713198410378 0.0025124552108673325 2830677.4126114007 249.09886370179873 21202 1901 879342 THETA_20190818 114787912.0843847 11229.95386616479 0.11478791208438474 1.1229953866164791e-05 1919399.1919567224 187.77904384725008 None 4025 248011 UNFI_20210418 71900963.86518022 1192.8503530651878 29.132051677852377 0.00048464420598971487 43415650.6579747 722.2678228549727 17179 None 90822 LTC_20200403 2566188334.7905617 378441.6712196118 39.96085940733167 0.005861850962242579 3722718657.3428483 546084.900759163 133286 212884 140377 YOYO_20190318 6069611.60014851 1524.170670232751 0.02078134012204625 5.2187648781686694e-06 860567.3109508392 216.1120712771471 7086 None 1390338 BAT_20190714 365926289.5228509 32150.70021355523 0.28786063907579723 2.5254514585772823e-05 25939112.679139085 2275.683475172277 104030 28714 46382 DCR_20210401 2301335434.816581 39125.510816932234 179.6884571059085 0.003057921693178127 31122881.536176477 529.6463453275298 43569 10793 244352 POLY_20210707 173226199.56485885 5071.5799141128355 0.20377333947544857 5.9657179828396965e-06 3352123.7854156513 98.13759345965985 47187 5656 172730 CELR_20220105 460848799.01461256 10012.902391746578 0.08120633048654438 1.7681440172559312e-06 106791024.75211978 2325.2117215587987 100955 5358 35839 DOGE_20200801 402780720.32567483 35538.513735507324 0.003203694106264085 2.8273781662687153e-07 87495378.9359398 7721.789779154768 150557 164659 89115 REP_20190302 139370395.00086418 36453.376384951815 12.654436266649647 0.003312455071776831 2122873.143548479 555.6882790281527 122455 9786 251259 MITH_20190805 13273441.291034672 1212.0846927022021 0.028018821387677317 2.5583057685566018e-06 3524223.6675739735 321.7851890944798 78 2079 826998 AMB_20220112 13056546.691333234 304.7440901719807 0.024409767886391723 5.70548319992799e-07 150098.7967212682 3.508374872749329 2818 162 593144 PPT_20190426 42812426.9188376 8242.083071507754 1.1823962303053286 0.0002272472920540144 2866355.744260765 550.8911177588287 24132 None 609298 OMG_20200718 209159740.18304452 22845.645787657813 1.4924868040725803 0.00016303094866461208 53701783.071643434 5866.0837839645465 153 43073 389790 OMG_20200704 199555074.07969937 22003.728068783363 1.429944163161756 0.0001577585378727875 67988954.53467 7500.8789400370815 132 43079 490885 SOL_20200625 12150092.54225176 1305.923337571336 0.7362452622406327 7.92094576813581e-05 2827321.0318965996 304.17929610314 58735 1936 124882 XVS_20201111 11460454.086611364 749.87061718419 3.070685474741745 0.00020103150711515811 2772892.7749941424 181.53562721127858 11183 None 227768 ENG_20200320 9455307.12365755 1528.8579391752023 0.11477718074518695 1.8593352739276732e-05 1271506.46566384 205.97794851613153 61168 3602 414852 ALCX_20211221 166576698.07716 3530.7622677141185 185.03734162647635 0.0039243566591645376 3007031.5763605023 63.77450241816411 None None 81040 SC_20200610 119417834.50460981 12216.393874171925 0.0026943392087279854 2.7591022031792237e-07 1316920.5972645544 134.85750085046413 106429 30066 166069 MDA_20190729 12920961.416454718 1355.3965240836274 0.658262526968146 6.905111099944262e-05 1433989.2589446055 150.42410502608485 None 364 3017941 NMR_20210723 179974491.03830296 5564.65406261651 31.266121480150925 0.0009657596033362221 7685069.267496217 237.37928134451525 29535 3536 583885 DCR_20210120 708165684.7097417 19557.090346988938 57.26378657233064 0.0015836542562776227 14249143.17194599 394.0660857985429 41510 10142 350350 YFII_20210814 170514745.47591415 3574.7564803969294 4296.185607700146 0.090046822924389 65154732.88998755 1365.6245867764799 17952 None 584326 XRP_20210112 13238979457.402128 373739.53216288507 0.29034525666307204 8.167988483191225e-06 7740853849.032595 217765.58644571216 1056112 230318 14934 DGD_20190205 31075643.809881907 8970.270951658564 15.537829673855791 0.004485137718398141 178908.5409784845 51.64359901797361 15943 3289 553717 FUEL_20191220 2615972.4203383722 366.3282646672119 0.0026440040857022345 3.7001628413168037e-07 473579.94796889886 66.27534864046387 1 1488 None LEND_20190414 11814508.480998272 2328.7843139989905 0.010594463929196836 2.087900562958084e-06 326524.1905797576 64.34964957991905 11612 5908 527065 CHZ_20200523 44750026.75756869 4897.078134680154 0.00935624401360361 1.0239731284045317e-06 2615102.4121291786 286.2040145760141 22757 None 285725 POLY_20190726 27731754.471136667 2800.0963604834906 0.05696644473960136 5.755085944293398e-06 2016932.243331468 203.76238077079464 35287 5086 307913 NULS_20190618 72056610.09160534 7730.58289872188 1.0101046987401392 0.00010841130310274073 17585002.98586666 1887.3420657692013 21166 5317 640711 MTH_20200526 2525082.0914576724 284.13977148900784 0.00736113382120492 8.273039834346614e-07 800268.6679571286 89.94069023873709 19000 1914 1287418 LINK_20210828 11661885184.041664 237765.2409123602 25.966254825642455 0.0005293343030973966 1151616405.846009 23476.241441720635 443508 64857 31110 CHZ_20211202 2334994316.062507 40852.256246354016 0.4367459913995823 7.637530315961578e-06 256145983.5902328 4479.314643994854 None None 45115 BRD_20200506 7097613.5949844215 791.4520015671465 0.11395664639974203 1.2664454649881083e-05 445950.4994302533 49.56024992447521 187 None None QLC_20201228 3598360.5335078184 135.533102939694 0.014951989849423359 5.685532640741978e-07 1199657.4058249178 45.617281761253096 27321 5606 940522 INJ_20211204 520088766.9669473 9686.011367528714 11.914575021521664 0.00022176535191503172 18242908.455281008 339.554285925543 93884 4393 111579 BEL_20211202 103211200.89629918 1805.7476189576573 2.152285108627795 3.7638790103144824e-05 11400006.842796475 199.361349948658 None None 290672 DOGE_20190916 296581546.9748902 28768.679212043593 0.0024470780590405156 2.374738964313103e-07 53271098.828407034 5169.632966640799 138206 140716 96250 NBS_20210620 0.0 0.0 0.013249273511587029 3.719795519653189e-07 3327871.613896545 93.43155236796535 None None 552078 POLY_20210105 69743191.63023445 2229.193102611532 0.09269700044357759 2.962862885845057e-06 4159333.6066646893 132.94427127160287 35797 5023 310362 MATIC_20200625 77593389.05734064 8339.937927127421 0.02226114606450011 2.3949808542988516e-06 24204954.57776012 2604.1068426999964 41574 1918 129897 BNX_20220115 0.0 0.0 33.84789423241692 0.0007847995468040303 22493730.87431576 521.541153339698 None None 16195 RAMP_20220105 71274254.63741799 1540.7675050862688 0.18873062971853838 4.109321672465812e-06 2170196.705814037 47.25272400147959 44075 None 146588 FUN_20210626 168240913.7845513 5287.556263843245 0.01632085432144693 5.133903040639347e-07 2133995.951958666 67.12717417050857 3725 324 191066 MFT_20191015 8913666.108822884 1068.0111443747692 0.0009876638347726188 1.1833918497227362e-07 1332866.9221362555 159.7004767096896 18646 2297 1001046 BAT_20190511 455408248.77010655 71468.8054167649 0.3606546212456701 5.661055251599084e-05 126855321.26956306 19911.98615966634 100464 26665 57848 NXS_20210131 26026408.49886652 760.7509845912285 0.3831528947295073 1.1213333958255163e-05 1383779.862505145 40.49763406833431 24307 3544 387114 DENT_20190318 36379456.288206 9135.428084416684 0.0009533809616361049 2.3942012636725294e-07 726616.4252580373 182.4733274065546 43047 8838 257059 PAXG_20200903 59272186.55890762 5195.528147524464 1956.7292835747724 0.17144046487086198 1365134.5828754439 119.60740275317346 7088 None 96035 VIA_20210117 9248077.70270404 255.50093318624997 0.39908799911868764 1.1025789301969616e-05 202647.56368906237 5.59863825704411 37778 2125 2961182 REEF_20210809 229675158.75594795 5220.799258235598 0.018013088121615006 4.095734831719169e-07 72937869.45734353 1658.4284186638615 None 12602 58529 PPT_20210212 62623680.50320204 1313.3204586635702 1.7329358200753326 3.6294758503233226e-05 7470686.17840626 156.4667009346662 23681 None 736934 RLC_20190803 20632196.941477347 1961.8170085496379 0.29483744236716897 2.8012533227514375e-05 1115831.4773364589 106.01525397940638 24922 3318 861371 NEAR_20201115 0.0 0.0 0.8707515158173079 5.4130810982499144e-05 19257396.934388038 1197.1480893626451 32789 None None BRD_20190701 20145761.66255175 1857.4351863919742 0.3360150331886793 3.100356022617224e-05 238968.98522717948 22.0492793294694 168 None None TFUEL_20211120 1886178773.9046779 28765.286079276702 0.32669994338691705 5.616922059578815e-06 25052921.896558717 430.7325804799053 217734 25960 31742 POND_20211202 83927704.7640224 1468.370212981883 0.10443512339905431 1.8262936276882986e-06 45038349.66689069 787.6014153202474 None 779 1462583 STORM_20190515 12980522.551465174 1623.98588602596 0.0028798973283060457 3.6028994447687247e-07 2341572.851941587 292.9427881065531 26992 2569 6189578 POWR_20210117 48820251.108118646 1344.5732082752174 0.11420044135319875 3.155625549265773e-06 5950602.93755369 164.42909012237732 80961 12554 393579 BCD_20200531 111224378.57518311 11522.100503653603 0.5877816625349991 6.085935367378766e-05 12622695.634417115 1306.9633622430745 28464 None 968409 NAV_20201224 8365049.024565991 357.35142556857215 0.11703827772452481 5.019764734629177e-06 152797.745921499 6.553486187765791 48210 13649 1033713 BAND_20210108 191939158.75687966 4899.955978363415 8.569600813009071 0.0002171585477018073 195164707.51320913 4945.584440978749 43337 2972 375522 IOTX_20200229 17932292.091379516 2050.6165139667874 0.004121400543226195 4.730125438731037e-07 3294444.1161902766 378.10287442411703 22301 1805 655766 ONG_20191019 0.0 0.0 0.13973534612758243 1.755808829187562e-05 6021478.384929996 756.6134987327466 81309 16279 327053 VIB_20210718 5345439.403279226 169.4800266910909 0.029341188629513328 9.283349288735611e-07 902287.4344248575 28.547750803039005 32274 1278 None MTH_20200807 3270538.881213449 277.9813399975571 0.009322607146916916 7.917997708643964e-07 135370.87846556123 11.497495160052 19057 1901 1234165 LRC_20200403 30778921.916312836 4535.610721675548 0.027048874187672177 3.967794275102453e-06 3024273.7076219576 443.63014224504275 34190 6813 552171 AST_20200414 2371919.6481360737 346.2022766894113 0.013758227688680746 2.0092581031931813e-06 120394.11843716785 17.582414212093536 31681 3462 340670 KNC_20200318 85649611.15215781 15772.15068327323 0.4704969748466351 8.7300481764699e-05 97061308.50614183 18009.6779497048 104239 7207 120611 AMB_20200718 1869274.1803232313 204.17301994306453 0.01286320620547899 1.4052355340729453e-06 358337.57427043945 39.14643709465232 19058 5457 573873 ADX_20210203 49236023.203141406 1382.349805192351 0.432178357597513 1.21689919410894e-05 2670758.803473819 75.20145741849961 None 3740 11021 ANKR_20210203 82813551.98583472 2325.0719698174416 0.012785445346213896 3.600041016542824e-07 23341320.685522944 657.2294478036735 34252 None 5358 COS_20201130 18858777.325634357 1039.4646051895163 0.006277144121597665 3.454724127317463e-07 645440.0322007593 35.5227984061801 13768 None 342611 AUCTION_20211216 169526503.9165456 3475.062047666701 23.60960953180995 0.0004838280829022887 5752729.2583011985 117.88979249104928 86059 None 88829 QTUM_20210902 1368802030.6391716 28139.066292472962 13.246315325026035 0.00027192298004559824 353451430.0533902 7255.72084033922 253880 16895 223016 BAT_20200626 396565314.51503855 42821.40552357566 0.26885325644625546 2.903834251982708e-05 98788487.18480302 10669.961620722677 118834 40928 22299 CMT_20190603 31416006.47689185 3593.768901081901 0.03926352838256063 4.490096104161352e-06 7635008.211274307 873.12378782314 292178 1643 806904 DOCK_20190622 7433652.197582893 734.5110923059818 0.014354849722094807 1.418813769610317e-06 2029978.3086715555 200.64028757614628 175 15252 251058 XLM_20190903 1236148102.3458283 119752.80332768074 0.06294097124458012 6.096756469618422e-06 88434337.14643691 8566.162969408955 275794 103491 66255 ZEC_20201030 589434326.1711366 43758.702524497814 56.808936823716884 0.0042247302205441 299572797.5334099 22278.435784138113 71728 16256 161647 QSP_20200719 17905297.58079228 1951.541100686038 0.02507370771082008 2.7349228764452368e-06 382444.39290514897 41.71524734944326 None 8220 336431 AKRO_20210616 62175691.05564958 1539.5682697651876 0.02289985954317444 5.673593448335752e-07 24618823.093060903 609.9478171173306 41112 None 201373 ADA_20210513 52518502552.04381 1018689.9260049621 1.5682193343010113 3.126291299944207e-05 6057046769.923359 120749.00625177394 400036 414182 6677 CVC_20190826 16664375.003120102 1650.3923176812318 0.04862613089363767 4.814182399094454e-06 10821326.49926984 1071.3548170548684 None 8156 181988 SRM_20210115 84034511.22347985 2151.6475451097544 1.6942496235240836 4.318870179256e-05 65421533.23987414 1667.6828790033442 30118 None 89781 ALICE_20210724 131983012.5822709 3947.8462996760522 7.67364481817002 0.00022941372960484527 193825992.37803385 5794.683603353069 None None 50440 BCD_20201224 84785347.43543585 3626.0623370238004 0.45054286741992317 1.9321905166503275e-05 2137247.026485882 91.65761429014515 27855 None 2009944 VIB_20200526 2850484.6881980635 320.7389029477792 0.015699524015895923 1.7657593007857853e-06 980122.1847437854 110.23645442151701 31018 1103 None BCPT_20190730 4954562.627978692 521.999558778419 0.04273831720725355 4.4931202262890895e-06 356652.30235773034 37.49519817790385 10977 2974 908173 LRC_20190729 40531841.10050162 4245.612222457205 0.04205021289666389 4.409522468322327e-06 3913179.9833672405 410.3488156326554 34722 2451 709028 ZRX_20190523 180273831.11520445 23517.57049227698 0.3058240504861244 3.993349129065593e-05 64673732.5209194 8444.881722850387 150369 15901 222198 BNT_20190104 41170658.55592657 10918.558339708557 0.6591499583169348 0.00017478183629100803 615386.4025004413 163.17738338660095 864 5096 104201 BRD_20200129 14638385.571222667 1566.9925132714902 0.23855318674991313 2.551262698441955e-05 895509.2082375764 95.7723210582367 181 None None QTUM_20210909 1288823617.723249 27819.225932584395 12.375015539014706 0.0002679075604155725 478762597.22264236 10364.76431369021 254679 16925 223016 ZEC_20190426 392812898.15138686 75674.39798683311 61.52970759165355 0.011847338605018685 242730735.27284974 46736.98808561689 74899 15146 154432 VIB_20210427 19270346.235747136 357.7006579758545 0.105605616111509 1.9598139941352606e-06 2002076.8515127231 37.15425727724426 31883 1228 3723426 VIBE_20210219 1557951.8369971402 30.14173984265167 0.008326784305202726 1.6105826283276993e-07 67857.31614336764 1.3125092542286994 18615 None 825902 ARK_20210210 93579951.42311333 2012.5592569209973 0.6030985027348142 1.2943543842960118e-05 3873862.408374347 83.1398315482735 63943 21740 89752 TOMO_20191108 24571585.030871104 2665.1086749648807 0.37693337595134413 4.088492192447963e-05 9275219.754345132 1006.0574618304496 None 1365 275008 NEAR_20211221 5115427929.676059 108426.6894817724 8.553332625965279 0.00018148524685840468 280929684.2262619 5960.786902742835 236503 None 8222820 WNXM_20210201 65767710.58411467 1989.60196684015 39.1470304709775 0.0011808356563314207 18525498.81484555 558.8053369236534 None None 132574 SCRT_20210115 67688368.99155052 1733.083784243735 0.9801506062584926 2.4987782934723818e-05 3891680.484237831 99.21380099191589 63981 None 361970 ALICE_20211011 206518723.2337855 3774.824581848826 11.878457362124298 0.00021710131314619358 63661664.15570403 1163.5375254488101 122089 None 27267 QKC_20210718 101007752.18024059 3195.8771310159027 0.015163874972968353 4.806859325697628e-07 9034863.306428988 286.3998616338507 None 9534 284050 REEF_20210110 0.0 0.0 0.009874586334239117 2.44130051137821e-07 4047880.710082277 100.07602255961558 None 470 142268 VIA_20190401 13215759.437760508 3220.4847399779715 0.5712592181027254 0.00013921164529164388 2735485.2105541755 666.6175087676697 41217 2233 2242748 WAN_20190523 42743519.47820573 5581.334987140562 0.40288536238909195 5.2570808366016384e-05 3859356.0465303943 503.5910610781454 108922 17077 452673 NXS_20200106 10530570.276277259 1433.8574762302717 0.17725781655472453 2.4138894746855344e-05 42251.78855885622 5.753830757436535 22873 3545 610142 GTO_20200313 4014322.1956881373 836.3719603293158 0.0059458595314168155 1.2448284096932206e-06 8977173.39340499 1879.46594093012 16916 None 1191106 SYS_20200305 17346894.783377603 1980.7904112385127 0.02988236746323283 3.4121788179055484e-06 436584.01754471264 49.85223271667141 58899 4514 856942 BEAM_20210523 63200142.577641696 1681.5072296249007 0.7133763294369279 1.8979574215438174e-05 11324722.484002754 301.2973685628507 20371 2335 154482 GVT_20210513 39611425.24754358 768.5679371089828 8.927243542398362 0.00017324301491217843 6180066.799388194 119.9310178556 25833 5625 216420 DLT_20190723 5037067.154485975 486.2922702203191 0.06280442864124582 6.070169916748639e-06 408978.7543428421 39.5285903384664 15077 2670 2867435 LTC_20211202 14404225573.54356 251891.74408526285 208.4708620887279 0.0036456030749016906 2345839119.826418 41022.511360959514 205124 351603 122881 LTO_20210325 187245573.03279847 3551.3820560541285 0.6709361842859421 1.2753743245903892e-05 76246728.85129559 1449.3646726542358 None 2827 234923 TLM_20211225 287366289.7414517 5655.74018078058 0.2319794548474096 4.561966981465728e-06 68867754.76165788 1354.311413125 107484 None 9460 NAS_20190708 70018046.27071163 6129.377711739323 1.5393604045292064 0.00013470684279989406 8991793.243534777 786.8567200911185 24357 5138 449898 ZEC_20190324 348977329.34474915 87189.28268615092 56.741900004355564 0.014168235126882308 144340676.61959627 36041.314171057784 74052 15061 171176 POLY_20190302 40394406.91584272 10565.461331590428 0.08766551940124033 2.2947533042297353e-05 4612529.116516886 1207.386496227527 32812 4989 264578 STEEM_20190528 132430281.37642461 15018.646502550668 0.42661168884387346 4.847608728016661e-05 6495330.299684014 738.0674434268136 5620 3733 288379 MATIC_20200901 100757219.5131663 8627.231577442775 0.0266169818262307 2.2804524200197306e-06 14518132.972764047 1243.8642250294731 50837 2243 59373 ZEN_20191102 37787688.60304614 4085.0138153924195 4.921522101719272 0.0005318084527822954 2514828.62383411 271.7466450037156 None 1864 58749 RCN_20210324 62546127.516595095 1146.6496017346876 0.12196998336095133 2.2350017541779095e-06 2044424.831788185 37.462439195464626 None 1145 1175923 FTT_20200308 77298146.94166733 8689.837197181652 2.6847633724366093 0.00030164416881657416 2179436.549572829 244.86862910667216 None None 19129 GVT_20210110 12109866.065085502 299.30713691018025 2.7335529413708795 6.781334798447039e-05 5745235.194989746 142.52646350250663 None 5446 383832 WTC_20210722 14637313.754821572 454.85615799319424 0.5033535050192558 1.5585933946151235e-05 16199375.999194736 501.60056853613855 65370 19886 895790 ETH_20200325 15385255695.77982 2271541.549438125 138.77657127268222 0.02056263635680433 12119249137.978954 1795718.9074236092 452854 455712 19216 LRC_20190622 57859536.86798539 5717.03793715838 0.0601301318358789 5.940674780853973e-06 28396886.902258933 2805.5263596537293 35002 2456 720276 HOT_20200306 114719642.81042066 12667.61301285624 0.0006462682126587678 7.134156797967794e-08 8636464.740282236 953.379609741475 25146 6920 537857 KSM_20211007 2994705458.7392335 53953.20972448551 333.3775430230716 0.006009531482419911 133289784.87739936 2402.708806484528 146623 None 80172 SUSD_20210324 236951537.75524375 4346.581973316937 1.0084140989575932 1.8478376548090216e-05 18637822.95379655 341.52310140536287 101972 5603 22945 TOMO_20211021 217398121.3010926 3279.81657516024 2.504214699240199 3.792044848612325e-05 7661013.888364703 116.00805737357565 55074 2312 128333 BNT_20210220 615982313.6902655 11027.253230098584 5.468470603485344 9.781527682095697e-05 567270597.7328523 10146.846270740385 95585 5821 60733 LIT_20211204 133923145.6939258 2494.466290296083 4.822055893700219 8.992387128598165e-05 32385912.599478554 603.947092334474 66669 None 136723 IOTX_20200316 8433928.42120856 1560.6825565832 0.0019084940979810952 3.551608562073893e-07 1787490.4845405153 332.6427111425415 22579 1809 487690 FET_20190509 0 0 0.1110235678277701 1.8638109337951297e-05 5755817.788394516 966.2593570748938 8217 185 174758 GVT_20210523 20125031.96499009 535.4479494091327 4.454082345408692 0.00011854212647137866 1227519.036768241 32.66951655094602 25879 5637 252863 GVT_20190622 15582835.672676371 1538.876024462407 3.5096744817483736 0.00034573818401002754 1038498.1532007789 102.30249769674982 21368 5771 171234 MTL_20200403 17882358.866916783 2636.6872293598544 0.2778180183422808 4.075307293939822e-05 7442122.121322368 1091.6834964264167 35150 None 465912 BNB_20190807 4285441779.291725 374845.7369018846 27.639656229093095 0.0024089542458526946 183656050.4418384 16006.676017291398 1019670 55318 791 TNB_20200306 5853213.28915928 646.3255900413424 0.0018894875724580018 2.0858059155145787e-07 626316.7172982479 69.13912178987854 15211 1446 1374605 PIVX_20200511 16601111.73023313 1896.0643518558145 0.26415009859250654 3.0130357542363942e-05 208703.19615297395 23.805790547986597 63809 8465 257372 MATIC_20210325 1628595308.350552 30809.957861980674 0.3252267123005764 6.164741464545452e-06 383617908.4409635 7271.558999503551 2923 9377 25492 QSP_20200806 18303801.442186676 1562.492216413316 0.025652840604077555 2.1889716672267257e-06 591878.2483231256 50.505311907686675 55386 8224 304878 IOST_20190325 115602658.2785159 28947.987037194744 0.0085602830720472 2.1436984685181803e-06 36106959.267987825 9042.041324355756 195232 48643 93184 IOST_20200312 53453559.6812626 6739.212803868918 0.004452591376395641 5.609080641596166e-07 33569190.26887422 4228.824955494183 191397 52260 110553 BCD_20191022 88419755.39408927 10766.254636515494 0.46998858392043824 5.719395637337332e-05 1680544.0482992558 204.50914398855042 21316 None 2032087 ARPA_20200423 0.0 0.0 0.00935072141641057 1.3143655704574343e-06 5507832.492811428 774.1975270157297 16771 None 1423765 LINK_20210523 10016401298.226213 266469.2750384836 23.344078767892753 0.0006215793271547792 1963963769.9446082 52294.17236021132 328321 57554 23806 REQ_20190625 16640404.438842246 1507.4722383590922 0.022795447371314406 2.0638782980384236e-06 1005092.7444734495 91.00014880361701 41671 29934 444138 STPT_20200621 10210363.083720189 1090.9141175640714 0.014493466630885632 1.5484620871737323e-06 1215138.1498976278 129.82369254469606 11164 None 2264449 TROY_20210201 8046646.688262931 243.4816664867933 0.004233965764905899 1.2805511297805656e-07 2275985.333242636 68.83654124002183 None None 869305 WBTC_20210220 6890645102.037815 123351.60334211712 55874.09768390561 0.9999707442324473 462025393.7424358 8268.802468160384 None None 140839 GLM_20211028 483700598.4517135 8265.411282314815 0.4867064027396382 8.31521941644345e-06 6868733.820215499 117.35006670703527 160768 21640 157900 POA_20190411 9121715.02785149 1717.7546077361599 0.04164682574880172 7.846629257043535e-06 3252847.6070021004 612.8651762263326 17234 None 742810 SNM_20190703 7576131.5146577805 701.9615645672136 0.018472495534478914 1.7096079887009287e-06 345833.0858765731 32.00645009052167 31300 9990 14838367 AION_20210813 80632130.83121566 1813.6769672236937 0.16304849667756185 3.6674774511040077e-06 11165287.801013634 251.14270956010188 73652 73401 420360 CTXC_20200129 1551026.9697957549 166.17948827464463 0.07282056990650944 7.787965703284824e-06 3592222.049695805 384.1785659949038 17051 20064 482146 GLM_20211207 538158861.0659285 10662.02764044473 0.5365854011966987 1.0625871073337486e-05 73131154.01232624 1448.1985761191206 163290 21776 239313 ETC_20200207 1393761444.1846943 143105.7603507641 12.115314274915404 0.0012441342202896295 3809060475.80096 391156.3808880032 229884 25197 338740 BCH_20201130 5286024720.431891 291342.6712556874 285.0643409077698 0.015688960414075467 2599660580.758339 143076.37290469094 None 341143 999966 GTO_20190510 16242321.56585219 2629.175423758479 0.024488658233280676 3.966327873723716e-06 14949450.522608481 2421.301393479086 17282 None 885807 ACM_20210428 20804398.65272092 377.63915859938663 10.400951621898054 0.00018874589811929165 3043152.139941059 55.224031862384656 None None 44251 XMR_20190205 717473634.4891038 207015.4534439761 42.79275664294412 0.012350813242460415 14580532.938648723 4208.2224523034 313483 153966 101450 WAN_20190530 44894336.96342031 5191.52108434675 0.4227066228630921 4.8883342451102705e-05 2333328.2663690085 269.83462885722645 108779 17075 452673 SNM_20200610 3892658.8792236736 398.21735408 0.008890453701770796 9.1e-07 125125.78334951529 12.80749742 29462 9615 7325463 NXS_20220112 48923599.97584459 1021.8120047259132 0.4124881028489141 9.642056130976613e-06 167220.1872050758 3.9088313581115033 27241 4177 394982 WNXM_20210523 130746163.40962897 3478.641187382167 64.91059640064331 0.0017273288303545928 39039075.2574086 1038.8645913263585 28205 None 115981 AST_20200713 11525232.366631284 1241.8756339725564 0.06692345286500137 7.2092057123269665e-06 2687805.1786774234 289.5388629578129 32196 3460 274586 AE_20200106 44922072.0319411 6117.304288859989 0.13099892068977348 1.7835448270029896e-05 5296997.715388757 721.1840238211819 25280 6352 371548 GO_20200411 6298526.005023753 918.6630824902898 0.007228802521635466 1.0534687857704687e-06 1089474.3351844368 158.77141498605664 10711 677 675555 DCR_20201106 170641056.44095442 10981.69067368532 14.032131749589443 0.0009026726779478679 8858750.352302833 569.8743460001209 40810 9938 361711 YOYO_20200329 1298709.1803929782 207.77188741900673 0.007425701048802386 1.1879887703974772e-06 718276.4057576301 114.91228888337042 7486 None 2721333 RUNE_20210408 2145894288.6887748 38098.32562690853 9.25209733275276 0.00016451783191136443 80872050.6912235 1438.0409072055743 263 3238 96184 CND_20190608 32754609.096316356 4075.9554517710317 0.018797317848933546 2.341373661137736e-06 496755.1680622745 61.875288585442846 36306 6169 588984 HIGH_20211230 0.0 0.0 11.006017612658386 0.00023630375725776413 38167384.32208895 819.4695517875182 73330 None 104659 PHA_20211007 127295574.30479471 2293.382408417834 0.6997110323291084 1.2613133563970467e-05 17148040.944086336 309.11407823346013 110658 None 143113 FIL_20210826 7671217887.385196 156504.55322737008 76.87780877379467 0.00156888335163007 635800139.32933 12975.08695250275 100125 None 44704 RENBTC_20210825 676107665.0155337 14069.521760935077 47836.114988340676 0.9962639787358518 3568045.540370086 74.31028308269228 90390 5671 128608 SYS_20200325 10011733.160610856 1481.813270952749 0.017217204290105644 2.548278244785592e-06 250948.8432201131 37.14235290217379 58634 4507 831215 BCD_20190819 131553333.35962948 12747.434582120492 0.6975243504924072 6.762085494377943e-05 3754122.0454466166 363.93989987185904 21431 None 2670030 EOS_20191127 2491499115.9276037 347515.1430451389 2.6134863358176172 0.0003651737028492693 2026388838.5837853 283140.5335687628 1352 69311 83056 PPT_20190419 52201758.73627092 9900.100584561209 1.4418172735134824 0.00027335380272894787 5659783.106202318 1073.036967390024 24079 None 609298 STMX_20210519 311837827.035389 7315.958810360245 0.03715893859586895 8.685875860656955e-07 24730751.504887823 578.0795836189238 64803 4359 53883 SRM_20210428 510806317.401875 9272.100152035235 10.314714078966698 0.00018718094684522647 999719184.4114457 18141.887606856282 66135 None 59775 FIL_20210107 981791589.808168 26740.98807911277 21.965644230617578 0.0005963799986213439 119647759.11144678 3248.5061519147307 43248 None 31509 FTT_20200607 296115916.098016 30593.730249801076 2.9750518848010987 0.0003076732567049761 2165892.229358098 223.99176272623538 12576 None 12803 CVC_20200324 13192683.466050442 2035.954902565987 0.019690572337388718 3.038738660546249e-06 8135316.826870205 1255.4790858294236 86496 8056 104560 MTH_20200207 4088243.360464159 419.7642121894271 0.011689695598329324 1.2004772753478345e-06 619938.2799900303 63.664773046153385 19179 1941 1462172 MATIC_20210429 4715912991.759612 86154.44112731107 0.7729177976916533 1.4115767587527625e-05 4956516495.826258 90520.6674083368 4373 15549 22143 STORJ_20210324 262359943.75459084 4812.667657055176 1.7503328975518564 3.210916111337049e-05 1004801851.3258955 18432.69047640137 89551 9429 80863 XRP_20200305 10272279568.445084 1172975.188033794 0.23463668153171868 2.6792787696777393e-05 2236741729.1902986 255409.96357220114 946485 210529 33270 SNT_20210826 394112812.18537545 8040.533394799983 0.10212873772948268 2.084083100473063e-06 31137095.292878352 635.3970051954723 None 6060 144059 XMR_20200523 1106766049.5599954 120905.42294043889 62.950121861059635 0.0068782334470397265 92717332.471696 10130.742220558222 319880 171663 80558 MTH_20190702 7729546.707335991 727.9783031575319 0.022499833588640595 2.12244098112727e-06 695964.7597938101 65.65133567710204 19561 2006 1459879 LSK_20210509 1217260966.555518 20721.981807930108 8.457659341582227 0.0001439785451347122 198778130.08892345 3383.8896577557916 196175 32267 151176 PNT_20210221 66799611.83378923 1190.9040889549967 1.8407716385179045 3.2747010420665704e-05 33790574.68012166 601.1285039469408 None 184 453797 REQ_20190312 17404453.203182988 4501.621384555023 0.023857026322973384 6.169930673873379e-06 581454.5794112068 150.37642983688596 41709 30693 416149 THETA_20190524 80296748.73785567 10192.868871911258 0.10802221964575101 1.3736025738409703e-05 5279471.150241348 671.333655637941 None 3974 247302 QLC_20200725 6086258.050849944 638.0439387656613 0.02536336857153003 2.659290328794477e-06 932201.8572092569 97.73920117785374 25797 5638 940522 1INCH_20210702 412675062.7112157 12274.051390788958 2.390774209414228 7.1083225763398e-05 37768614.50175786 1122.9479307696704 183 None 4913 NAS_20201014 15792810.007632907 1382.3796778660578 0.3470294649236329 3.038254121964427e-05 1752747.011591425 153.4535643508069 23538 4885 905847 QTUM_20190511 225585508.13129455 35401.92086774474 2.3567372913882383 0.00036992788208208666 221549281.21229848 34775.72857829954 177219 15279 401038 SNX_20210821 2140933180.19902 43575.057122596605 12.570015275246043 0.00025556748092315953 148746017.24403042 3024.232197972856 148974 7462 47795 VIA_20210826 7806240.90282245 159.28318152064858 0.3410015653987129 6.955773911328765e-06 631663.201613016 12.88471040708836 38261 2312 1271022 POE_20200502 2456831.71408907 277.24684304300393 0.0009733752063359235 1.1014209636263072e-07 33777.81275811987 3.822122326012684 None 10354 1011278 NMR_20200901 278681142.34936064 23843.095222581556 54.181481808971064 0.004641679625458003 19416402.925666895 1663.3860656950296 None 1838 882883 XZC_20200806 73205160.46485499 6249.111354759045 6.8418597906987335 0.0005838362239478276 7074577.644662605 603.6947298599507 64742 4145 546853 LOOM_20210427 118021529.312718 2190.7431332065553 0.14183202828304245 2.631093566263675e-06 7797489.2809077585 144.64944292458708 31793 None 252037 ZEN_20200107 61062170.858674414 7867.143896973055 7.4487952542643665 0.0009606986047658569 1114384.5126034233 143.72628188671 46182 2948 41253 DOCK_20211120 70448412.58601576 1560.1781752227776 0.08135110746546932 1.3982781002796797e-06 8748470.098934969 150.37034567089034 55688 15241 188667 SYS_20210204 65856514.949850015 1757.2943881375422 0.10878290370368623 2.9001573789744707e-06 4919717.394362534 131.15989937714886 61554 4502 273624 DOCK_20191203 4863317.913620602 665.1930283428135 0.008781209087804939 1.2019103465034126e-06 1790519.7097596226 245.07378690789488 43668 15111 255706 ETC_20190902 705333576.958786 72505.09992466752 6.233597776766197 0.0006407856430759821 743293460.6068368 76407.20418701925 229957 24947 350041 STORJ_20210930 144800378.17532286 3485.947174067255 1.010346180583598 2.4306694041445477e-05 27274836.531531036 656.172230214622 105703 13937 75806 XVS_20210204 89221804.60821068 2378.6575481083846 11.040362288831755 0.0002943365829406694 11320652.69048639 301.80913836011865 18503 None 58717 ALGO_20200404 111574581.98759143 16590.614108647125 0.15925274308037318 2.3669619441981504e-05 74019716.66217378 11001.49668199263 16366 828 317295 MTL_20190124 10348450.667356534 2912.9099934251826 0.25503452675257776 7.178781109615268e-05 4057603.4274284313 1142.1452305315745 32295 None 571829 STEEM_20210110 77225150.27038254 1909.1527381553128 0.2057730232721334 5.0915004288385725e-06 8859835.652009923 219.221432937739 None 3836 219133 XVS_20210218 500327036.9040525 9598.462177497126 59.2707296062594 0.0011367501533248686 139331177.8204869 2672.2252079995737 25774 None 29971 DASH_20200315 429958035.63101876 83126.87234468888 45.908571214682595 0.008860774555170267 438004074.66920894 84538.79650797269 316765 34170 59708 SNGLS_20190929 5534375.925661846 675.6954779819263 0.009590234484678318 1.1708149124710166e-06 1086630.2698703995 132.66025208656234 13 2162 None DOGE_20191024 303177428.83361244 40614.080895089886 0.0025029072591820564 3.3524860935754814e-07 75378859.79058222 10096.521885516715 138324 142812 101092 DIA_20210620 59385136.91301602 1665.8373275791764 1.4250190092039663 4.002455955989378e-05 7153799.049012098 200.9290081517176 32494 388 401375 THETA_20200530 315423513.1419573 33467.62104245862 0.30550239398107765 3.2538970740884966e-05 81599308.51440771 8691.118513432057 None 4183 375081 LTO_20200704 11075009.302968087 1221.174125416771 0.04991698453910876 5.506578198851281e-06 2181537.9495535274 240.65574921831328 15861 488 1316486 NAS_20190430 44184250.16739498 8487.817327489354 0.9721354842162927 0.00018670291291642194 4043410.6181742246 776.5548658466158 24144 5178 536647 PEOPLE_20220115 395502208.04299414 9174.55629218282 0.07823065508216043 1.8138612178674949e-06 83247192.27333875 1930.1749857825394 68496 None 68083 AE_20200425 35923833.26234292 4790.921910962034 0.10128905830297046 1.3513741259124053e-05 6208634.955543194 828.3410643487375 25297 6335 661770 CND_20190329 27954001.774183765 6943.19491749368 0.01614776313989666 4.0106837660515404e-06 398167.1196271472 98.89434152762294 36755 6210 587150 LOOM_20200417 12038145.386617374 1695.5038019773483 0.014458712823510888 2.039637159966523e-06 24480674.202285226 3453.3981975783013 21569 None 708796 KAVA_20210325 272893119.23310083 5164.306666323892 4.622133123942306 8.773067019532474e-05 71104530.88707057 1349.6037395232609 None None 80710 WPR_20200113 3681364.8526573726 451.60617642893476 0.006066695530210341 7.440520147545593e-07 230632.86800628083 28.286049506550043 33832 None 779057 FET_20200224 14637836.707527392 1471.8720766804481 0.04311222044401717 4.332589031963026e-06 8253345.085155334 829.4249756721185 16537 356 514590 SUPER_20210508 224516806.05936807 3918.1183859823573 2.2164890821283136 3.867555291742358e-05 12815158.862217847 223.61190890459065 104212 None 91414 NKN_20210202 19151362.164323837 573.9580354604528 0.02955946728723557 8.8515410281803e-07 3244401.298676845 97.1531419293222 14036 1026 338143 SRM_20210708 179637151.78392825 5286.898348841455 3.5932405838162915 0.00010575646566487597 75893260.67920217 2233.6948584419847 95308 None 25633 STPT_20200719 12852826.532833474 1401.698789595872 0.0160141177322955 1.7469695379035968e-06 1806570.5376057285 197.07758804012116 12483 None 2040332 YOYO_20200315 1048339.7403943291 202.81645483352222 0.00597833536854232 1.1538734601026398e-06 98748.72838382982 19.05940866090421 7504 None 2563708 SNT_20190509 77410946.54493216 13005.662281132758 0.021955690532035773 3.685817063284371e-06 16695455.248176327 2802.7537436474854 111436 5758 311029 BCD_20190923 111604819.04175167 11102.676586517036 0.5929800129886539 5.900718534102135e-05 2287372.7216780037 227.61547299340924 21360 None 2265228 ANKR_20200423 5408926.467221929 760.4371565878045 0.0013547734160652527 1.904310324893319e-07 1483059.8491679125 208.46335997702778 None None 5745 THETA_20190608 134698678.465342 16761.78797380026 0.1344740334859326 1.6749940743741775e-05 5246087.125724287 653.4469608333769 None 3997 222751 WAN_20210731 108531535.94383208 2601.104006485358 0.6165465053127931 1.4764291177362472e-05 3172858.81064985 75.97968837943287 123270 16652 305720 EOS_20200718 2348645983.6120954 256532.80203566045 2.4968174234345692 0.00027277186091385734 1087363611.5612836 118792.10431317175 190151 71857 92471 OST_20200730 7471595.793708264 672.8559027028948 0.010794330295199637 9.73231752910674e-07 1076805.933320536 97.08631266325146 17651 752 831793 SKY_20210221 55349415.45935912 991.0912805529306 2.737386271132206 4.869285907260889e-05 11011104.411093106 195.86645881049793 18128 4129 536790 PERL_20201031 0.0 0.0 0.01728691503899333 1.2731821412900402e-06 612862.6561931793 45.13736471595295 13283 506 377887 ARDR_20210527 240162822.40576467 6129.812339428182 0.2416297046344036 6.163476521633367e-06 11321235.651572907 288.78142379028145 72121 6911 None NEO_20210819 3700548228.4209566 82097.2254948573 52.16764079869474 0.00115948210574776 516726148.06193304 11484.796189303037 410114 112746 110676 BADGER_20210427 245125710.04080757 4548.830797286956 30.467046728607304 0.0005651872260525066 46255498.26020411 858.075184780351 None None None ENG_20200605 28984922.394504987 2969.6685814629536 0.3504490101929291 3.5851057506363196e-05 1958859.590081597 200.39202785091308 127 3575 513025 ENJ_20200229 92799305.68699136 10611.905480720798 0.10089765490450409 1.1580009250896699e-05 10093665.491739392 1158.4485276731757 53535 15118 23328 OMG_20210513 1428116955.2880998 27700.872736559984 9.799374479061571 0.0001953534082172279 976299437.8168709 19462.816022146115 None 4839 120611 ZEN_20210310 564201698.9361758 10323.129166444354 52.15747070707628 0.0009525890523971881 60435049.015322775 1103.7683632399255 90519 6834 495840 VITE_20200109 5596220.227170946 695.5418246898485 0.01101968420536484 1.373291714109009e-06 2910314.2910120506 362.68829730657075 None None 589611 LINK_20210112 5834093675.327855 164445.34415133277 14.527894528176326 0.00040869851484731846 2552000704.403086 71792.84622117771 118664 27376 46948 AMB_20190702 5638622.921784466 531.8992391286394 0.03884336811849992 3.6612686574935577e-06 501036.7541048523 47.22634140428 19402 5666 665326 BTG_20210206 209714378.50680014 5534.323833860943 11.96004667394477 0.00031332840514627144 20970749.7233825 549.3901273699489 83563 None 263524 BTS_20190522 179083809.05381006 22503.81400808125 0.06614504814343698 8.312749368816128e-06 15231813.354943343 1914.2513371168147 13760 7195 179069 DNT_20210722 85210151.05447617 2647.9149507806133 0.11343207148311418 3.5248154422036233e-06 5684545.999903432 176.64294815738438 70104 10252 228003 ETC_20200208 1356620611.9701874 138501.6228968363 11.700291146369711 0.001193465642334916 3165877305.9649844 322929.2113546559 229952 25199 338740 BLZ_20190929 5762408.802336888 703.3985366305009 0.027481140068452033 3.355009583472938e-06 178638.31715852406 21.80889382862077 36416 None 550438 VIBE_20200410 1705558.681711671 233.91464 0.009114215134801262 1.25e-06 19374.513730229075 2.65718351 19224 None 1554973 FIRO_20210314 90428024.0166198 1472.350147362723 7.7625500808629 0.00012652440151359671 12576636.384989701 204.99080522364372 69534 421 205310 NEBL_20190629 16134678.432268655 1300.8576669458917 1.0523423973481139 8.502755597506727e-05 509449.0925554511 41.16265898139667 40261 6146 698724 QUICK_20211104 165023037.01757628 2617.1707765623764 457.21042510073715 0.007249780544494118 18563783.30444785 294.357581638997 None 3759 5352 ADX_20200607 9022555.393071545 932.0742528966462 0.0984518467036038 1.0179271783536266e-05 333761.306493123 34.50871835700451 51360 3749 28242 TFUEL_20210708 1905226042.3448012 56070.54425241875 0.35438299059102 1.0431912923366578e-05 38580555.174107544 1135.6893609374836 181519 21145 18384 WAN_20200310 21198905.25242291 2677.652990286166 0.19975974679661565 2.5240032030398613e-05 1017879.2322424825 128.61101816991825 106180 16383 700059 XMR_20200323 670785474.7320409 114973.4433531128 38.28264411273819 0.006565489071613104 133986291.31650238 22978.703581546997 320169 167125 83083 ORN_20210115 40245926.0134462 1030.45121037683 2.3747280528397314 6.05345825920644e-05 5051719.198984457 128.77420331020974 31675 None 137368 VITE_20200506 5910048.129963107 659.0270601829988 0.011944323805684835 1.3276608416893423e-06 4496620.5098811835 499.81791083602656 None None 592403 BNT_20201229 130474686.58828987 4811.630870814084 1.3561576349575144 4.995079443877113e-05 46775072.28783843 1722.8469320099898 None 5294 105312 OXT_20210212 0.0 0.0 0.5375953102899138 1.1259442925355974e-05 98380570.78282131 2060.4912291659593 57233 2299 149953 PPT_20190325 51552152.48052298 12908.938207016989 1.422923998907766 0.00035633401040637035 109094458.59483182 27319.847000997812 None None 550893 MFT_20190621 27189901.15941599 2842.477440276649 0.0030790562794345967 3.221638119402217e-07 3383112.4964983277 353.9774265817061 18752 2093 885644 RCN_20200423 31106687.87960611 4373.478350600761 0.06051036804131517 8.51058506341233e-06 2143862.304592718 301.52721092395063 None 1137 1284317 SCRT_20211230 767696667.8469154 16552.53894243637 4.929188085002023 0.00010593650153343999 12319993.887548698 264.77728762905144 None None 56219 EZ_20210813 0.0 0.0 7.290469184287722 0.00016398053023946026 33354798.480831638 750.2312131988648 36195 None 164218 OGN_20201124 23694173.136054702 1293.7767151203213 0.1510544054716613 8.234041418028093e-06 10110982.825824039 551.1540766047029 69996 2459 210408 HBAR_20200321 130602577.99170661 21126.03708020096 0.038108912236177 6.146110952101718e-06 31842941.51967833 5135.550718643725 38075 6375 115268 BCPT_20190816 3492287.774883123 339.4162516835107 0.030064805882139837 2.922005395288418e-06 289724.0111040529 28.15834324390422 10949 3058 1353671 LINK_20190622 617851597.233704 61049.24463841421 1.7029574651314463 0.00016824703617125407 77362910.36814617 7643.221070127139 18901 7734 223883 GTO_20190618 23022190.82734644 2469.768328372131 0.03475276550323119 3.729903047999309e-06 13070136.435195696 1402.7758948527596 17400 None 1224207 LTC_20210201 8611596821.687353 260576.36509817347 129.88478499060517 0.0039169331540437205 3884066570.530669 117131.72658156154 140478 235738 113602 FET_20200518 6994481.935216892 722.7444238417623 0.020583882071030346 2.1309140195984944e-06 2598335.976006357 268.9886455719444 16843 388 951449 DREP_20210519 0.0 0.0 0.9813916853603976 2.293996188219699e-05 3771292.8812396573 88.15370685606352 None None 188907 FIO_20200914 16382100.041129863 1587.1381124726036 0.1593602793070301 1.543411205707933e-05 1472675.2652195161 142.62923713440262 None 135 278091 LEND_20190708 8805325.99361593 769.9678115557269 0.007803664588494689 6.823791134677505e-07 1697492.6918731276 148.43456494864682 None 5862 929610 QSP_20210217 43508659.37199689 884.6887935146532 0.06138856773059887 1.2475911363826285e-06 1774013.2552559557 36.05301923308177 59667 8210 198547 AXS_20211120 8707228050.748833 149716.14442425617 132.63712140756772 0.002273868944480848 426517325.72760034 7312.014095019988 716475 None 437 NBS_20210131 0.0 0.0 0.014171238830629169 4.14734785501806e-07 11261879.948203923 329.5896301296106 None None 745524 ZEC_20201229 747935020.754424 27582.26388066258 69.30865426211624 0.002552817056538774 497633629.62000513 18329.1340904829 71792 16495 168324 MBL_20200425 4349801.050591873 580.2191435877111 0.0012326882064096533 1.6446228006944782e-07 2019818.887519089 269.47935239540357 None None 95998 CHZ_20210826 2060831732.548777 42043.239854611216 0.3862251572209781 7.881477251524134e-06 461929263.1563202 9426.32791083785 376161 None 58032 ALGO_20200423 135134331.6174324 18998.44035878209 0.1836300745440615 2.5811596446201847e-05 53281444.09876996 7489.400287850555 16918 845 305108 AMB_20190920 2754415.575660073 268.9328259639541 0.01904970608061861 1.8599558234112058e-06 463544.6950370421 45.25910537920069 19223 5605 570829 SOL_20210722 7243897344.253764 225098.89585689522 26.672396972929985 0.0008258637724333805 573149420.4413202 17746.561848718513 361102 27566 7993 COMP_20201115 11105.1432222053 0.6902493284787337 1.2040287633587643e-07 7.48374e-12 0.8353364018012209 5.1921022436181846e-05 None None 1770443 KNC_20210821 181253675.28105584 3688.656662044899 1.9655724925653895 3.9981321699397416e-05 60092683.463803075 1222.3334007949047 178285 11321 108939 APPC_20190507 7989972.315339362 1395.3480585887633 0.07494471069614003 1.3101224770551769e-05 5405954.200923087 945.0249447590396 25681 3391 1192201 MTL_20200107 13812582.266161248 1780.221588408277 0.2315717191076006 2.9854722100425426e-05 3074984.7879510797 396.43362609688353 34571 None 546427 DGB_20201018 315011821.1283664 27722.421547834467 0.0230666257382941 2.029964209319428e-06 5529062.1909965705 486.5817170732124 176601 23203 172687 ORN_20210114 39052865.151775904 1048.8046038032176 2.346967786652337 6.279962259226704e-05 5268047.229683472 140.96119243896845 31691 None 137368 DIA_20210616 67896939.42575997 1681.1679238591835 1.6339308551067218 4.048303612838789e-05 10332156.351701334 255.994344903143 32320 388 401375 RIF_20210201 110986929.59759869 3357.7508781207016 0.16114741130335894 4.87385848313103e-06 1102777.3709770942 33.35319383085625 43766 3011 663041 BEL_20210318 109071007.97213407 1851.997432343612 3.8063706570312044 6.457793596040165e-05 41188764.990182325 698.7983219423556 None None 330224 ORN_20210206 83170062.9681762 2194.6267173512756 4.937027265007115 0.00012988262488289643 13643636.967132455 358.93489890174413 34108 None 131553 CMT_20190816 22497259.91745799 2184.29975024378 0.028220025920343464 2.739161559285164e-06 4362886.794534558 423.4812479915852 290388 1645 599569 REP_20210828 182995633.24385813 3730.957742893552 27.802682814144408 0.0005668764270010572 46710402.21155076 952.3910367381945 153244 11372 187615 FTM_20190902 33747400.364805505 3465.5670647219954 0.016282540829072344 1.6718927878285592e-06 5046907.561724606 518.2169319802355 18722 2121 342679 SAND_20200913 28610561.77032157 2743.7659089523095 0.04927385269111136 4.718839142422801e-06 6050310.781794421 579.4238075908463 40788 None 106488 CTXC_20210220 2191826.0183187653 39.239902110083264 0.21865651482116077 3.909198883265078e-06 19854008.849422578 354.9552103946119 17781 20170 487509 RVN_20200208 199940600.69596717 20414.328205600857 0.03621550486721257 3.6940927570201317e-06 36891198.47799691 3763.015581172806 29642 7380 202796 YOYO_20190908 2113044.441000819 201.83312731837137 0.012081870644017407 1.1540323945023518e-06 317600.95025233005 30.336509627953166 7547 None 893009 VIBE_20190305 7155932.001868339 1927.1262865078395 0.03574389037265307 9.625998500434269e-06 272938.2805749995 73.5035680821176 20456 None 1228279 ENJ_20210219 542391364.695846 10493.740780945753 0.5878204445068284 1.1369736044525951e-05 86712484.09813116 1677.2095376642735 82063 17779 59943 VET_20210523 6594328398.661285 175449.14338203557 0.10092169527335237 2.687316403678145e-06 1506355150.1881075 40110.8294296996 353169 176022 26109 MTH_20210509 19687941.28789982 335.6511209947012 0.05664878965765136 9.657804985059477e-07 2075284.668444883 35.38062284728337 21632 2033 350782 ALICE_20210710 115292090.51609832 3399.2785567428436 6.605385728238498 0.00019436011216489735 99222154.25597464 2919.5613736817745 81468 None 50319 ARDR_20200430 39269691.06900601 4479.083951372322 0.039309019940001085 4.483569785360424e-06 2441957.437435147 278.5286074374738 64070 6337 1277377 FTM_20210111 64755941.485624656 1679.7893383659784 0.025397853940626533 6.60652047887653e-07 17415591.711108327 453.0164775345235 None 2844 142400 BCH_20200411 4270428713.8951445 622815.3764025812 232.86536636466457 0.03393271934516885 4047229942.5049114 589755.0155625988 None 291316 142295 DEXE_20210813 42196305.00325401 950.1113918666931 12.529461810876544 0.00028182805122270444 12915411.36671393 290.5093028864827 16350 None 269716 FTM_20200109 21485441.43159822 2670.377957079675 0.010209369006869709 1.2723088613183452e-06 3190707.6683472632 397.6313950042365 20528 2259 521985 JST_20210509 198230877.4435934 3380.2661658152 0.13841661358026744 2.356328369455503e-06 235725266.2196028 4012.8574007382376 45250 None 74071 TOMO_20200905 53258986.76991663 5077.309195743908 0.7396146399014287 7.053856470315733e-05 12868121.498183511 1227.2591319023645 30768 1669 74287 SOL_20201030 65484559.74846173 4861.473522579793 1.4288466908519226 0.00010626042089710534 8662606.661041781 644.2204301985277 91973 2522 70876 RDN_20190922 8919230.842414921 893.1219262110891 0.17620126200276268 1.764418199020621e-05 122989.15655986544 12.315706689604784 25552 4384 1994136 ICX_20191102 81529109.77500133 8832.000923929341 0.1624778198238694 1.759701071900161e-05 11079351.258562833 1199.9389397756572 112842 26465 111236 REN_20200621 103586270.11619568 11072.498178873988 0.1185262411123359 1.2663795466530914e-05 8284868.12076733 885.1868950196567 14179 888 366546 AUCTION_20211207 189149728.21796912 3747.4429510425402 26.42168520052426 0.0005232222491609733 8517983.8006963 168.67957545829145 86085 None 89055 SOL_20201115 88345125.41853492 5489.846811180655 1.9198208087780548 0.0001193468577803053 7480703.339548037 465.0425880788068 None 2572 76248 KEY_20200322 2674345.0770027004 434.03126343328137 0.0009681283638226764 1.5710880762989962e-07 904830.2157197908 146.83672290927612 23444 2758 250395 RDN_20210725 13499113.154386558 395.1080972062509 0.2643570965665476 7.737517880827354e-06 104220.27698857621 3.05044300764927 30338 4677 1078541 ZEC_20200520 446520149.4476669 45759.71757416059 48.709806050006904 0.004994158537345314 268548599.27283406 27533.968794161512 72252 15783 146242 ENJ_20210421 2360226864.6047907 41777.238895533126 2.534903525842426 4.49579082452739e-05 419847928.2462211 7446.2339267089255 158291 29371 22644 NAV_20211028 25805364.724532846 440.63073110209706 0.3583249532544119 6.118455902873294e-06 303726.08733724157 5.1861715324238995 58356 17194 1016346 1INCH_20210509 1205021005.8748517 20545.444243377602 7.45414135911195 0.0001269416635431185 530644792.3153413 9036.712538951248 190993 None 24204 NULS_20200329 14392532.064207392 2309.6819387713585 0.1693701545594915 2.7090264649514187e-05 7627623.042381478 1220.016167560774 22739 5186 563630 CELR_20210112 24063005.845933586 678.7164803404779 0.00618467176723689 1.7398709504570953e-07 8113403.933927705 228.24615994571727 26195 None 415548 POLY_20190803 25153832.614574324 2390.529931079424 0.05137777583704717 4.8814655555076026e-06 2867451.3326165434 272.44007129963956 35285 5087 295167 UNFI_20210420 56072593.8569889 1001.7313506978136 22.902100600623108 0.00040925805703165887 40157129.25123923 717.6035499941966 None None 90822 GVT_20210429 36764545.84512366 671.6630276098923 8.32945679668142 0.0001521307163850266 3000470.749191957 54.8011443854 25069 5604 213426 STEEM_20200329 52339819.56071184 8371.602230010742 0.15117273166021372 2.4179639672151907e-05 2545603.694747549 407.16192272983693 11129 3840 219600 MTH_20191017 4880269.986116933 609.5435040554007 0.014042976473859938 1.7537491638444647e-06 185549.92172526525 23.172296890393223 19466 1972 790483 ZRX_20210120 409035883.9588814 11296.158385622895 0.5428289328416738 1.506105795963332e-05 109362661.96405323 3034.3212949940616 None 16363 88733 DASH_20190430 940451765.7627195 180693.41483224547 107.0974288896626 0.0205771464283521 625331374.3757843 120147.93809877541 320480 24586 94657 MTL_20200422 18815894.071357295 2747.5403530811914 0.2903476701988016 4.241532266028577e-05 17141153.754204944 2504.058554202831 35368 None 490866 ETC_20201226 673372142.3950646 27281.50513698568 5.7728153042889785 0.00023379438851369613 863196745.1602554 34958.77566909463 245792 26198 161974 KAVA_20200320 7953213.875744997 1286.0517683191495 0.4263805811435697 6.894665589579274e-05 1848493.8812738503 298.90543142430954 18056 None 337432 XVG_20200306 63411791.848869234 7000.029663052492 0.003914929998053614 4.3216924354485055e-07 961671.1009629812 106.15890257264915 296895 51977 314536 VIA_20200520 3120700.4826528947 319.811710392881 0.13470114068627273 1.3804273250256835e-05 148759.2914681325 15.244963015743583 38907 2159 2692600 LTC_20200511 2729985944.4997873 311819.32931095705 42.19348872817627 0.00481934545597818 4441063447.791679 507258.81153631554 132889 213514 149279 RENBTC_20210408 655086177.2944475 11630.085385069924 55996.175186028166 0.9959366451929689 29790906.244765345 529.8550324928784 68643 4680 61660 MTH_20190703 9022305.953716798 835.0039282016966 0.02824921277672547 2.6120019700201872e-06 2136324.6573640523 197.53060935683976 19541 2006 1459879 GRS_20190513 25709241.06811754 3704.9717112465974 0.35649664623508115 5.128277115535254e-05 3625490.70927189 521.5342481703019 38830 107046 6883994 ADA_20190708 2473664824.1434264 216544.54597029398 0.0797018230848796 6.974572635213018e-06 283632330.84826064 24820.18875640067 153537 74428 97209 DCR_20201231 490766136.0751453 16995.02916411983 39.338949681477054 0.00136412598183694 17085903.45210598 592.4745070951807 41284 10049 375648 ZRX_20190704 181917110.92754206 15171.889289167373 0.3048018531177442 2.5397421888631815e-05 45008994.30747515 3750.346021578788 151032 15980 206645 EOS_20200127 3493847495.7524757 407539.5327132221 3.6413884144263924 0.00042372638046763876 2466109905.2248616 286966.31752779614 1412 69798 81972 ZRX_20200224 179708139.79095468 18062.918744129027 0.2872757718885403 2.8869954866955275e-05 45042934.08124383 4526.6172829405405 152776 15991 118984 OAX_20210114 6518280.290585001 175.35306503337648 0.11760929547757039 3.149820159068222e-06 628503.5228688654 16.832624141986265 12831 None 1823390 QTUM_20201018 224170215.50661936 19734.499703708785 2.181291762464916 0.0001919360048773569 109009875.41805673 9591.98596902817 None 15052 91229 PERP_20210724 402341159.8664563 12036.565162887819 9.223537892058248 0.0002758576750495249 26244611.64427057 784.9241403344633 23732 None 152304 VIB_20220115 6360904.992836738 147.4780771282078 0.034842079432282486 8.07816322301292e-07 823734.3742225404 19.098345551702828 33389 1332 3406785 CVC_20190410 29818279.16900812 5763.998671937647 0.08691632783897937 1.6813859616254304e-05 2707766.8207396423 523.8142513546187 88933 8205 424604 MLN_20211230 134228106.26763007 2894.132603695867 92.68433048503984 0.001991671562705129 86448243.42567648 1857.6657691293508 31634 601 99475 ZEN_20210509 1576535760.0278711 26883.35216765794 142.82017909158654 0.0024325307058747276 488899235.95503557 8326.99140348142 105318 7202 756616 TOMO_20210127 93562845.69984931 2871.154440080394 1.2188168672971251 3.741945847209801e-05 9288945.989132965 285.18421267071864 37580 1721 196124 MBL_20200903 6608776.242591837 579.2950282836617 0.001874369812454995 1.642613909141992e-07 2893647.354959808 253.5863180160474 None None 428070 SUPER_20210729 185254530.47401965 4630.352712256375 0.8566347897275088 2.1409496739064407e-05 167760586.82874814 4192.7666022017465 128834 None None VIB_20210523 8306373.528103233 220.99993085160634 0.0454187713530211 1.20935889646829e-06 1109166.8861346194 29.533622364835473 32307 1266 3689033 GNO_20211028 596907344.470465 10200.111027487945 396.7349266209182 0.006779705622272058 3549463.391119857 60.65590724211103 87171 2357 154314 MTH_20200927 2584666.0526729855 240.71116334804503 0.007435929146457153 6.925864970207753e-07 76637.20420611202 7.138031005562485 19044 1897 1301539 DOT_20210814 22996186282.12132 482633.43926898774 22.604203176061617 0.0004738301308395337 1111594036.730999 23301.2747125937 530749 28379 22959 CVC_20190324 27902771.71913488 6966.550287595362 0.0814204097053061 2.0328424156502363e-05 1539026.2700220554 384.25228905436467 88844 8209 423151 AE_20200907 49002640.26473009 4759.1388997348995 0.1350424199560524 1.3128362004731415e-05 10420676.769808197 1013.0625399993492 25681 6357 378824 RLC_20211104 357368515.7727571 5676.60606059599 4.998408735526441 7.92575243582096e-05 103467483.69107588 1640.6374594062486 48589 8332 455749 ETH_20200330 13819843925.360764 2337096.7284364263 125.31887451568916 0.021178742020832947 7718875104.828544 1304480.7908462933 452619 456271 19216 NEBL_20211002 23413502.319836985 486.4446422420124 1.2847734907162651 2.667831757249718e-05 1202816.6382792608 24.976483784396738 40675 6223 1209671 BAT_20190325 259988598.5802808 65107.32833458139 0.20876009148811228 5.231593151792016e-05 38362956.80748583 9613.876899836694 None 24091 94352 MBL_20210111 5947572.104207929 154.28187716225614 0.0016939799005087626 4.4169083956442254e-08 12237203.034976045 319.07465258681856 None None 990117 AST_20191118 4122385.3871178497 484.636651067976 0.023628478944373414 2.7766876385809336e-06 2986543.2026065835 350.9619731464064 31873 3533 318976 SC_20201226 140118614.11641735 5673.941872134263 0.003093914664298852 1.2530106177412154e-07 5029971.376193668 203.70980538124718 107180 30101 163532 ARPA_20220115 84300539.12328672 1956.1596993283947 0.08655655156362757 2.006906012339074e-06 10904055.750692932 252.82216827757566 57768 None 198855 BNT_20210210 317250503.85416496 6810.882581875892 2.8119740497622976 6.037579034347538e-05 156305979.52877638 3356.039878909514 92222 5471 79308 ZIL_20190220 176113712.70806932 44984.19786132864 0.018578988025992487 4.745575234166353e-06 26713007.188339837 6823.223372862975 55820 9963 183294 DENT_20190716 57469209.141812585 5255.814441761331 0.0008539726054405116 7.8183193716315e-08 3284939.6957690436 300.74392895571026 46445 9855 262986 LINA_20211225 126104485.63979715 2481.8993454359565 0.0391153129577444 7.692179736360867e-07 10860198.79371384 213.5700695635534 None None 143736 THETA_20190302 98336993.34344186 25742.607344724925 0.13922794678105785 3.64143791004764e-05 15396519.847808277 4026.8834205229955 None 3862 442380 CND_20210206 28668929.70012325 751.2513581202493 0.014862126874103996 3.893568844249854e-07 434966.1254717175 11.395209910310053 34053 5914 421392 AXS_20211202 8886065849.178226 155461.11791816333 134.85525548636096 0.0023589093405420045 380256187.32906103 6651.50103979546 None None 439 ACM_20210401 0.0 0.0 10.940775266210583 0.00018614926403950847 3709965.4841542034 63.12234075588325 None None 46245 XMR_20210217 3943308423.2456684 80137.74048800363 221.37499401831593 0.004501079292889479 826190974.3892723 16798.42433553293 352955 198403 51844 SUSHI_20210310 2507769731.3622584 45881.381579786095 19.73678973008946 0.0003604670543159162 1078113906.5031874 19690.36248593948 54848 None None DCR_20200901 204556715.85811114 17545.989311374622 17.122007822026337 0.0014686516889669467 11068846.501997098 949.4377224358748 40818 9906 216074 AR_20211111 3545087035.6685634 54588.35472255831 70.76116802353296 0.0010893657401495496 145747613.4898168 2243.779480739521 43503 None 49205 OG_20210422 0.0 0.0 9.485071882830553 0.00017513920377237993 4513943.152194473 83.34869986385426 650521 None 247445 COTI_20200321 4657827.91546577 753.441829161853 0.014865820080008025 2.3975226330122262e-06 3963640.577727973 639.2461326104885 22546 902 294374 CND_20190528 32237141.13283984 3655.4126009865217 0.01849778580372 2.1018129597153986e-06 677531.3703638957 76.98457696262149 36540 6176 561865 AVA_20210725 99071439.58142872 2899.7407113209115 1.915934091936921 5.607708988030211e-05 5447614.185957799 159.44512476957476 None 10515 50781 IDEX_20210718 19580598.749460064 619.5285649296877 0.033701757306514354 1.0672205111414275e-06 486995.65620921215 15.421503051497828 53021 1975 9034089 ELF_20190821 42351882.776709855 3935.850384744446 0.09187355387840863 8.539554129376371e-06 16568931.896138364 1540.0655011156193 85661 33528 1269907 CELR_20210703 150165030.32366207 4442.722188014992 0.026648523059262647 7.86989650996393e-07 28902326.58848429 853.549439279296 56814 None 195750 DUSK_20211216 226636442.99128985 4645.484734905602 0.5944869371108786 1.2164729311263112e-05 142361581.14862114 2913.083519400183 None 13876 291899 POLY_20190528 46451421.40780229 5273.950867938327 0.10474634203543576 1.1902376216058732e-05 9705981.332890881 1102.8952336209366 35027 5085 319300 HOT_20200321 58702333.39501877 9495.583403232946 0.0003289699030896351 5.3055450960147314e-08 7403022.6233415585 1193.941147991706 25108 6920 515134 APPC_20210916 9424836.835368779 195.5533847912191 0.08097169658733186 1.680059784220209e-06 675496.6718188915 14.015697342756049 25014 3118 1154586 COS_20200612 15421401.590992859 1658.4251269790348 0.007815980624806368 8.404626835064399e-07 5110393.718100352 549.5273624984812 12256 None 171431 LTO_20210727 49354573.66129675 1315.36794539139 0.17040614184315273 4.567103037683135e-06 7779435.573953591 208.4988455050298 10999 4342 391514 ONE_20200317 8051433.4396468345 1595.213384647487 0.0015630019093235798 3.1038062127165425e-07 14599857.427168626 2899.2369054003757 71330 None 395411 QTUM_20190626 507429253.61731094 42988.448906446014 5.318724987114638 0.00044987262187035543 949821678.5828055 80338.57172321192 178135 15341 453664 HOT_20190318 207149736.96190453 52018.41851794497 0.001166306934896327 2.928916823099556e-07 8672128.253812905 2177.8094234625637 19363 5737 221294 BTG_20190605 441235080.3086156 57535.57447974036 25.27056383625913 0.003289816827923093 28463603.11215897 3705.4986627305298 74166 None 422397 LUN_20200224 3103828.42909491 311.9736299962572 1.1541725506133653 0.00011598927826678901 4158706.8927260577 417.9317994991921 29851 2153 2036039 KMD_20190305 96804856.5570229 26058.058526471472 0.8643012427299115 0.0002326537445390611 1972673.0914860507 531.0067356099988 95259 8298 269004 QKC_20190601 38638061.22514869 4504.079135538721 0.024471591818465924 2.8534407541806894e-06 17126403.0420141 1996.9757903419736 52282 9189 157671 ARK_20190702 64962862.85152327 6128.038317449344 0.4565873421582378 4.305606728816184e-05 686348.7224287003 64.7225055262099 63524 21855 202264 ORN_20210106 43317021.255039886 1271.2773900171612 2.614347017338304 7.672086542830832e-05 6032888.381510057 177.04169132568674 30880 None 137368 GTO_20200325 6823688.408916776 1010.9160641614943 0.010369309754324043 1.5345450136716654e-06 10286881.928499239 1522.3465923587612 16858 None 1148049 CTSI_20210210 26451678.515464712 567.7247716696753 0.09907984010260884 2.1272453360194947e-06 5569337.948884244 119.57375147367077 20960 251 421222 COMP_20210519 109670.66140137441 2.5795045016837093 1.189058332537311e-06 2.79672e-11 888.5461028929429 0.020899013857293456 2467 None 2394186 ONT_20190608 822401941.0048751 102213.14374117195 1.333303404513018 0.0001658487369841522 142260844.00554943 17695.733184779026 80289 16208 249314 CKB_20210221 241736682.68663886 4310.89324123823 0.010067344085603634 1.7958710935116861e-07 21372357.990102865 381.252489119705 28455 838 255152 REQ_20190923 9068395.00406922 902.3920756683978 0.012424293282722085 1.2363360659827437e-06 1219240.0137004976 121.32604790676349 40958 29305 689575 POLS_20210823 135879827.3112625 2754.3161409454583 1.851166155433761 3.7568995628882585e-05 20722639.359047383 420.56124741354637 None None 25468 LSK_20210107 195838633.2462508 5334.0429999924645 1.3719197226975046 3.714502917661676e-05 10040979.521032391 271.86173585813845 177500 31039 299861 AUTO_20210511 71336347.48745817 1277.662731948145 2800.557324773713 0.050121470582910915 10547919.256876532 188.77571977112598 None None 12456 AE_20200316 32023476.53355978 5925.883969017183 0.0906859117466637 1.6876177975066426e-05 10049975.27749216 1870.248290625087 25431 6341 484575 WPR_20190509 5614857.636443975 943.2062152193732 0.009356151982169948 1.5706765296846757e-06 310624.278115014 52.14646620910733 35232 None 1010461 ELF_20190421 64983888.56469032 12235.054546626321 0.1940976366749939 3.6544368527988915e-05 16255466.51004587 3060.551220065579 88442 32388 961601 YOYO_20190704 5290635.384385379 440.7512169379973 0.030187754169576364 2.515128062363686e-06 872664.8644302742 72.70709431506496 7584 None 1328336 IOTX_20190812 22454075.24154454 1944.3621353532774 0.005454950310500035 4.7211794429483203e-07 4478564.964191533 387.6132254064739 20416 1760 857691 CND_20181229 16742367.175525168 4351.775084339619 0.010159947731104079 2.639325572149271e-06 212639.62761286425 55.23898563894901 37509 6285 431618 CHZ_20211230 1530629195.478098 33002.43935410743 0.2882759212646286 6.18940344447816e-06 189375061.12971765 4065.961008857785 None None 47803 MDA_20210401 27571951.262381747 468.83271096236933 1.4039621110874516 2.388529355335662e-05 1957498.297285718 33.30248095132018 None 374 1186502 ZEC_20200404 315636113.48398036 46921.97117609299 32.61029524772994 0.004846844477993507 348415061.9779499 51784.677396171275 72704 15664 146498 UTK_20210724 85026343.28398362 2543.6749296031003 0.1889510800858354 5.651151029092121e-06 3431709.425829258 102.63560411779798 77474 3989 165733 HC_20190616 111978033.60601828 12699.90447458969 2.550615858660527 0.00028927009746078635 61416121.1518129 6965.316745336255 12758 812 640655 RLC_20190821 15591739.99783837 1450.306068518233 0.22258564564181377 2.0708395264144348e-05 88248.5238830627 8.21025681498144 24854 3312 784217 ETH_20211202 544051345075.8544 9518141.295137323 4589.610617539151 0.08026165704837293 27957934803.559887 488919.5101669106 1916391 1171273 3541 BNB_20210508 96652603380.9141 1686717.1282477747 625.0943959026756 0.010907323379463986 4590421650.503598 80098.64385015397 3300841 331913 139 XEM_20190510 425320456.207734 68813.9873669228 0.04720368385121883 7.645396476540918e-06 32777982.840634383 5308.921975407098 216655 18444 133593 REN_20200523 85141987.80868521 9301.087659936175 0.09722809680837555 1.0639850329839896e-05 8374405.887266999 916.4267137457264 12262 881 400115 ANKR_20210212 139229549.9841826 2919.870166931496 0.02153137785206444 4.502440934126703e-07 58065248.11907718 1214.206316835827 44379 None 5358 BAKE_20210821 458286385.8870428 9327.640688757907 2.6326823251040565 5.355087099073309e-05 72124019.27702254 1467.0604253341974 None None 12983 ALGO_20210430 3889230267.7452893 72572.51217075174 1.3187367196666246 2.460592458399091e-05 460241733.77990377 8587.516539811224 87836 23995 138222 GXS_20190725 88564426.22300898 9015.136277605476 1.4755363035745654 0.00015028077792795153 3479527.3724921453 354.3837444683353 None None 762110 DLT_20210203 7189043.631050964 201.93451717332545 0.0867704258709618 2.4424679807572303e-06 4210473.695807272 118.519035519352 None 2533 6584036 BTG_20210519 1528946246.3081567 35833.06819074526 87.62219178689777 0.0020481625936007767 24555656.144931648 573.9867418483426 97325 None 165410 GRS_20200208 17244727.537374135 1759.0151877262108 0.231835235012605 2.364790621095216e-05 9732701.534095053 992.7654570926467 37907 106879 4012909 XVS_20210731 288758122.1352418 6918.018137096675 27.492208408826556 0.0006581581725007652 40847538.450029254 977.8822005726779 119225 None 14295 EOS_20200801 2908386597.7034407 256615.40345594482 3.0904627433191676 0.0002727447313725292 1833426205.1778026 161806.62229421092 190294 72000 86387 RDN_20200501 5524822.369161981 638.4525271205102 0.109012665809085 1.264691508509216e-05 908765.6988308519 105.42887415932174 24991 4313 1420050 MFT_20200312 8198035.173985115 1033.5757607262735 0.0008873649993579 1.117845724256096e-07 1396368.5348024748 175.9055853278173 18428 2505 867921 KNC_20190426 38676426.7298941 7447.016107117126 0.23252889815643402 4.469023249229079e-05 5231250.603640629 1005.4053821080622 96367 6656 249884 ATOM_20200901 1738674153.7788272 148755.57441780771 7.262357993671164 0.0006220359663063496 426397397.06881845 36521.81800282434 None 9259 98949 NAV_20190603 17117114.30962097 1957.3552331092353 0.262322675020467 2.999680036172488e-05 1602262.3412436664 183.21993542360073 48475 11277 1015910 BRD_20190627 22534139.000515845 1736.1134352604042 0.37835757129184533 2.9046977656977472e-05 780382.1188645501 59.91089828906479 168 None None AUTO_20210506 88691130.86788194 1549.2526933177637 3482.3612844905183 0.060762484697144625 13976481.128507577 243.870653074734 None None 12456 XRP_20200412 8293802411.695811 1205178.1019229656 0.1885856605415796 2.7403511337680692e-05 1781001895.317215 258798.603725204 947425 212072 34231 XZC_20200421 38779084.459068686 5663.039355284977 3.8976012586753557 0.0005692691424121565 31931668.799049836 4663.8207724722515 63658 4094 120622 BTG_20210104 158622583.73070052 4758.266510175522 8.990356370317912 0.0002731161497182563 24043756.117142867 730.4202219568548 82305 None 356122 FTT_20210704 2432318187.050201 70162.56761465283 28.052244991438414 0.0008084482360947904 34261656.7296603 987.3996165808755 148979 None 2913 BNB_20190601 4754217793.272386 554557.5475599709 32.93210777753538 0.0038391736057397357 531371228.75858545 61946.42657191397 977329 52007 864 LEND_20200318 21135284.05787339 3892.0069853249224 0.01867401935770746 3.44903020276203e-06 734878.5754606898 135.72966556235917 44161 5742 109064 WTC_20200730 12559472.21445869 1131.0883719537287 0.43118938873230434 3.885903160580868e-05 6467005.037445332 582.8101519006253 54845 19511 745990 OAX_20190806 5072975.6989904195 429.6169381548169 0.09707302202593523 8.218333543551731e-06 559950.2138160531 47.40614363168733 12310 None None ENJ_20200106 68085485.99186037 9271.603392892897 0.0765017399267299 1.0415679899086283e-05 3913895.944960329 532.8752961708118 49987 14248 25300 NAS_20200223 23644728.0894504 2449.522402330307 0.5197878219568957 5.384756652601492e-05 4285699.748501611 443.9782783851047 23768 5000 1193564 YOYO_20190613 4597706.619177477 565.9072906965471 0.026294444110210334 3.229436948015906e-06 544852.2251548193 66.9177830780002 7466 None 1718266 DGD_20190703 49130818.23111998 4547.000116067713 24.568586268318096 0.0022716808514511985 2521443.933192854 233.139824916516 17107 3374 483052 FET_20190801 27415986.609957673 2723.224921803081 0.09022164374590128 8.948881348286739e-06 5703234.548416489 565.6909712149583 16105 293 429380 OM_20210421 93239493.38027865 1650.387362275291 0.3227276380202143 5.716836420349654e-06 22317255.193117544 395.3305582159669 35597 None 70476 MANA_20190603 77255084.44087933 8838.580882981472 0.05974126689500118 6.83344940989229e-06 22547446.454972778 2579.068752310039 44764 6249 128669 VIDT_20210120 28565533.52933604 788.823399160785 0.6170815462241424 1.705550363792937e-05 2262980.265213444 62.54646307619601 203 1185 None DCR_20210106 587770728.7704772 17299.047164545667 47.34890893810906 0.0013890683202186012 15496346.373032724 454.6141465276566 41408 10070 378546 RAMP_20210511 152311401.18128285 2727.937024670756 0.552284604832287 9.884217091229413e-06 14926358.795596061 267.13648982132196 None None 97168 RLC_20210703 198076221.44048026 5860.266969399085 2.80097252338577 8.271889529215983e-05 8070379.085561586 238.33609111582933 45421 7700 151690 XZC_20190920 45342401.89330882 4427.095310132595 5.3975668754083 0.0005266621632817731 10527868.206430092 1027.246159673464 60801 4049 176312 HARD_20211230 78670256.67654325 1696.2330850048895 0.8169003913644732 1.755417847363018e-05 18095542.99979822 388.8508253315079 None None 47415 DNT_20200313 2065072.1440681918 429.10505996580235 0.0027577262437393055 5.754766736609938e-07 357290.825112363 74.55871881121045 59018 6097 762988 EGLD_20211221 4828153379.029147 102337.61366500473 237.0490772612282 0.005029724925429982 219746016.23499507 4662.587291588977 None 14023 13960 XZC_20190228 36848929.4935986 9643.387523701187 5.332797188028183 0.0013987030753734428 1061158.2189463552 278.32396619734874 58749 3932 292752 PPT_20210814 103411897.82379343 2167.97879188676 2.857782722604315 5.986242184633367e-05 4911831.6723654615 102.88890659306973 24447 None 828150 POWR_20200321 23187182.4721918 3750.7167486695093 0.05404753623499465 8.716652743309546e-06 3373709.632640066 544.1035313176989 82499 12825 249499 RCN_20190530 16330221.578044046 1888.4851435136886 0.03262060736568442 3.772363533959274e-06 2005736.136257995 231.95048989564629 19031 1121 1774527 XZC_20190908 41779607.50675857 3990.8680216772254 5.021078495402136 0.0004796230217909543 10497265.88876405 1002.7189160102727 60794 4049 177313 IOST_20210819 693104720.8690063 15385.076571641657 0.0304812128481407 6.768057895837531e-07 90615003.79347101 2012.0183372006434 None 53607 317836 KEEP_20211216 350116087.3875514 7176.5512670218295 0.6373348616908852 1.3060804918574901e-05 15439921.337550694 316.4079241058338 30496 3626 142199 NEO_20210124 1719449899.767302 53753.271393451636 24.396317642717538 0.0007612518376880744 775294558.0181483 24191.946329123806 330973 101597 169176 FLOW_20210806 1252148227.946932 30561.336361439404 22.424164121154273 0.0005473195622593094 168390575.78836182 4110.0063186807965 78121 None 60038 MTH_20211120 14644862.274918355 251.92841191168702 0.04235514333645961 7.28194995328981e-07 423053.6461683618 7.273391697633415 22334 2086 1032434 MBL_20200305 7554409.210132761 862.4909693957994 0.0021409151444391045 2.4444052012058596e-07 3357457.4037548145 383.34010396827415 None None 120670 QSP_20200316 4216438.435568752 780.4451062016974 0.00583972938406604 1.0867433597297347e-06 44260.390436035246 8.236629172688874 55393 8329 355576 XVG_20210217 351461634.2198425 7142.566142827093 0.021625633612340954 4.3965699685971384e-07 30827145.625947166 626.7270828044819 292118 52220 127970 CTSI_20201115 7698677.880865424 478.4042540657701 0.0386903482393273 2.4052096256465288e-06 1039113.693635722 64.59715075744201 17503 152 428583 DUSK_20200308 9820139.381234072 1104.8284961353386 0.03784614618914951 4.252169642710703e-06 494454.5434307281 55.553994553857926 17717 13341 936304 BQX_20210806 748438485.8636272 18265.12485611468 3.782714384485512 9.245096889363782e-05 14865622.661211247 363.3214349655751 99477 6461 29593 SNGLS_20200418 3981053.4835450584 562.3685234306098 0.00615271289750286 8.72186683110389e-07 200532.82396128733 28.426819437087747 8898 2129 2196057 BAR_20210614 49528590.99810818 1272.5465956459539 16.841424234670768 0.00043141579553608063 3475064.528785115 89.01846466991238 None None 34079 GXS_20201124 28618958.382895537 1562.6855494883514 0.42996978568834515 2.3437840245729842e-05 5116089.31693891 278.8802564378644 None None 441623 PPT_20190105 53556536.589294106 14056.203178619879 1.4473111393720488 0.0003798636834608233 1004566.4295516688 263.6601721839509 23453 None 453201 KEY_20190224 7194349.921930465 1748.4194326180266 0.002805421329558698 6.817924096699139e-07 166362.83086763954 40.43061701345175 23389 2811 836734 OMG_20210509 1668864876.9716623 28457.763753529576 11.876090251655421 0.0002021720345149304 1030350168.0834085 17540.115082502587 323028 4750 120611 ARDR_20200109 38762740.41500684 4818.057122957197 0.038830288397070464 4.826130593253089e-06 1885156.112132915 234.30188034629967 65362 6436 1520323 DENT_20190511 55240652.601199575 8669.108349513475 0.0008264271924996982 1.2972106060933695e-07 1117804.0382519034 175.4573502801213 45065 9249 250017 IOST_20200106 58968621.80084344 8030.841607831257 0.004909031475893263 6.683625825558257e-07 24150204.64724854 3288.040263451286 192995 52326 87170 VIB_20220105 7260182.522173962 156.75873844527166 0.03980086823178631 8.664016870785733e-07 728917.996915624 15.86738707788453 33386 1328 3406785 PHA_20210617 158919266.44939947 4154.854790933501 0.8962201679150817 2.3428962460405126e-05 21916256.13831321 572.9341524769349 51383 None 192691 NANO_20200610 158263165.94620475 16190.829620387489 1.1976469256628404 0.00012259305854754395 15258010.45422975 1561.8344011522247 98037 51753 257141 ZEC_20201130 789369036.5335529 43520.18525300039 74.76184925523195 0.004114634926673993 490804535.3167864 27012.192760107817 71833 16365 167113 QLC_20190904 3472494.72522066 326.75677769448765 0.014468728021752754 1.3614865737270322e-06 41661.391340014714 3.9202772259552368 24791 5744 940522 VET_20191118 476720298.632305 56085.886544239496 0.007612879602336283 8.946233371846291e-07 105566166.86643384 12405.549730072651 116270 58008 477331 ZEN_20210722 551833076.2398669 17148.274411303755 48.9668910593523 0.0015162201553960615 24764074.98495345 766.7995416824507 116506 7437 1253134 UTK_20201115 55544297.30801037 3450.8514882328986 0.12349791269484156 7.674427555267466e-06 2863227.749811878 177.92716865149546 52090 3063 131237 OGN_20210430 382180526.53142774 7131.43707204708 1.8034069145405196 3.3649244668526103e-05 132629303.04332873 2474.6915587035633 104536 5015 48206 AERGO_20201115 12497948.647513442 776.6339478698209 0.0472903415413752 2.93872416386434e-06 4080652.1187862726 253.58055355361495 None None 393243 BEAM_20201106 15934618.964944193 1025.4803862903118 0.2162185925681776 1.3909120827727857e-05 8801315.270810736 566.1796059745975 16073 1580 422204 OCEAN_20201031 163883749.57453457 12066.7292837702 0.4722159809149305 3.479739676591736e-05 27499326.04248632 2026.4137550823518 None 1110 93774 OG_20210611 7630004.754070995 207.0439160209988 5.949455648139165 0.00016141909170898402 3371169.7840647716 91.4657065660637 669597 None 239206 THETA_20190701 116333850.7838346 10722.72340308049 0.11459334438005872 1.0624180683989248e-05 5398736.679683602 500.5277947034064 None 4004 256073 THETA_20210602 7573782735.219456 206414.823876576 7.564644673811831 0.00020622274288376093 544398137.3116382 14841.050959852259 None 18263 16282 KMD_20210624 80188245.96518825 2379.3678301116142 0.6343086590115296 1.8821382104660035e-05 18074652.34593614 536.316087410641 112727 9356 227108 NMR_20210819 426200102.66355973 9455.314124964656 38.77453143860451 0.0008609508911862592 19553158.118989598 434.15892554898653 29797 3569 773013 TOMO_20190914 23266910.6003435 2247.5007263565985 0.3601531450109728 3.478951154777827e-05 1392571.6856444469 134.51746683306214 17104 1324 270545 SNT_20210128 167363031.77793735 5532.502519487053 0.043381823376391515 1.4266995683205325e-06 13619563.6341877 447.9070736382192 None 5694 159141 SNGLS_20200317 2297129.650445166 455.1254124037653 0.003554528405970762 7.058575734244653e-07 37071.93469481608 7.361737726410609 8133 2131 1285734 BEAM_20200217 41901293.451940335 4203.295699284555 0.755176343152911 7.573887961167569e-05 42019789.53216815 4214.289562352488 12464 1454 234451 THETA_20190702 119432575.5678107 11270.50458888252 0.11949432780630508 1.1257157294252031e-05 5323910.062960043 501.54759727457235 None 4006 256073 WING_20210508 69826238.03100747 1218.6006394923113 44.39141347921903 0.000774586473237307 10996791.429675875 191.88318692366934 None None 317115 PPT_20210111 30496296.163824357 791.0834431619764 0.8394631794986356 2.188406566202139e-05 3597866.2541325437 93.79320412317797 23568 None 755937 CND_20190618 32009936.56316239 3433.9532718577384 0.018356696540734088 1.9701654641590024e-06 783725.4548143146 84.11474368665037 36283 6156 632693 SNM_20200320 4002987.0194846317 647.2916000243465 0.00913101435684097 1.4791805278878448e-06 387299.1487079569 62.74060436748104 30131 9694 None HC_20200801 61388519.66274888 5416.487530666934 1.3721963050714552 0.0001210563056360878 14254801.825856658 1257.5705387305397 12745 844 569123 SC_20191024 74116800.81272277 9928.792375718753 0.001756731439550576 2.3530307404057746e-07 5976405.719826262 800.5017761557078 108382 30488 207365 KNC_20200518 113687351.9182426 11710.484970127776 0.633260247640049 6.5229636252775e-05 50489765.59560529 5200.751281266628 105952 7594 111071 XRP_20201101 10856481131.012754 786773.6747354547 0.23964967955674707 1.7367841709197812e-05 1338496256.239028 97003.2221604063 975059 219111 21491 LINK_20200107 703925442.590378 90724.43095837542 1.9289459637160467 0.00024878327739641306 80685191.28043488 10406.266791130274 39289 12078 107276 OMG_20200127 110569299.8423571 12882.149966040248 0.7891815735954628 9.183229407402744e-05 68060231.08000718 7919.758094211812 283486 42916 415405 IDEX_20210128 21482195.447506152 710.134724346626 0.03826008268808405 1.261089803681832e-06 2247244.510279949 74.07138038352035 44776 1935 441014 QKC_20190615 61576207.525042154 7079.5035310959765 0.023510787924466987 2.707822314046257e-06 12029391.36567651 1385.4684270481632 50912 9197 157671 VIDT_20201106 14933302.27194294 960.8662191035095 0.32250926591544654 2.0762050934156153e-05 1557853.768155069 100.28933336409145 22194 1078 None REP_20201226 94138365.19364846 3813.992489328703 16.61322939391732 0.0006737421365522174 17871356.66110806 724.7649288674821 136690 10450 135870 SUSHI_20210821 2775378805.8350744 56488.1198159884 14.519082396243743 0.00029519497248591643 518404350.92326117 10539.946942305542 125281 None 5258 ZEN_20210106 151431474.28906807 4457.756821947983 14.40217115620801 0.0004226474250827869 20533903.436004523 602.5897984405649 81006 6332 350689 SAND_20210221 197860391.5085994 3528.4467999788417 0.2961884502164997 5.267680268178623e-06 65485196.20975038 1164.6472901956909 71571 None 43842 BEAM_20200501 19831582.742538244 2291.8894334999472 0.3239524061799236 3.758277574592932e-05 93455989.15956171 10842.134263225855 14975 1480 417545 POE_20191024 5258459.31753675 704.885462526138 0.002090379958341262 2.800302814631369e-07 122248.0052147669 16.376517183872426 None 10675 871423 CND_20210722 17428636.431622144 542.8428580774508 0.009056014808643615 2.8140914171104497e-07 107395.38665385413 3.3372343376847327 36099 6251 140212 HOT_20200914 98870929.70952931 9578.280077959427 0.0005633314795543454 5.454826195292501e-08 6396884.430190938 619.4202529861996 26301 7288 305234 LSK_20190531 261522327.0043191 31470.928156961952 1.9737039227618027 0.00023760546072054575 6001154.637016256 722.4523880908218 183217 30424 181385 SC_20200501 92881236.75869998 10725.89181361302 0.002122743830032755 2.462664385516772e-07 11638061.873371337 1350.1695346607107 106895 30079 169509 RCN_20210603 36252124.70724468 963.4097115933608 0.0706724453307431 1.8769039491551587e-06 454718.0296196673 12.076305857976909 19766 569 2622819 MTL_20200316 11583734.500838019 2143.548234306486 0.18312081879136957 3.3907416328837764e-05 2572331.10258346 476.3035803716401 None None 635134 WTC_20191030 21823444.57058372 2319.464068261718 0.7478233748965475 7.948101143560026e-05 4089345.1022203527 434.62841059047565 None 19734 556908 IOTX_20200807 36629755.764386825 3111.5911007379796 0.007116698959534536 6.048420159468499e-07 3006947.573032506 255.55784251388675 25401 1900 425581 XVG_20201030 62206545.34167627 4618.1165519948445 0.0037905999463633414 2.818968817721006e-07 1859019.114731969 138.2503295027064 288134 51326 341576 ELF_20210105 49861936.00140084 1593.7309609587012 0.1080795703671053 3.454534086609293e-06 25806225.264068086 824.8412213208982 40437 33332 479481 TRB_20210813 89295789.90695645 2008.5506330386422 46.94248902587635 0.0010558922095290392 34452712.55324106 774.9557285310871 23606 None 290542 ENJ_20211002 1416912906.7244503 29424.869919441804 1.5184018235388368 3.152715127694053e-05 100837868.8128179 2093.7348040695892 303728 36623 26263 BTS_20200312 54082064.92965941 6812.9129596396115 0.019955038343597145 2.513808219379588e-06 13692011.88970239 1724.832166971043 13332 7040 137133 GTO_20190318 20879029.63799197 5243.0380547528 0.03530197288525103 8.865294304488299e-06 2601078.444951593 653.202187835533 16483 None 763541 DASH_20190701 1395526228.0830517 128353.49757832238 157.06627758296924 0.01447651247311029 414429928.1334636 38197.250970598005 320162 28121 107234 FOR_20201201 19353610.86250172 983.142449876941 0.021676944513769503 1.1042032390829249e-06 2660089.360324525 135.50245912446582 None None 174751 TNB_20190324 8471074.692152705 2116.9903006752447 0.0032460615699624047 8.104570631492498e-07 320232.6103620628 79.95374558519582 15207 1505 1478446 STMX_20201224 18804136.971990626 804.1375757810355 0.0022828675171915756 9.791205133418897e-08 9342512.123086017 400.6997864296636 21707 147 202017 HBAR_20201129 211237223.15837583 11934.710414078158 0.03399649874691537 1.9191553769423797e-06 4227364.444301864 238.64131609473688 None 6760 195840 GXS_20190729 84654133.16155975 8868.06818731452 1.4132703923853063 0.00014813875020141927 3631033.671481773 380.60430115197045 None None 762110 DOT_20210602 22899347242.905197 624118.672498878 22.902544778389903 0.0006243552482469459 1555014124.7382228 42391.84943301726 451147 25425 17770 OGN_20200907 35002433.20275113 3399.1238782652667 0.27135070781415144 2.642413681283175e-05 19875809.587283663 1935.5066954897632 70619 2401 133584 BNB_20191030 3214526917.5965524 341612.02620136744 20.673757550541676 0.002197271729462513 245699200.31329632 26113.680857489206 1055365 57072 1996 UTK_20210110 96221656.12396127 2377.777290904363 0.21528432383156867 5.344254408675344e-06 6680401.284077929 165.83540955859743 None 3125 130913 NKN_20200506 10496916.00952958 1170.5068294919824 0.016193171025189735 1.7996114010489872e-06 1164171.3471324837 129.37898487054534 12284 997 325716 HC_20190528 58448145.88379619 6636.021899244976 1.3261326112530598 0.00015068907366883036 30590927.216157336 3476.061478133508 12706 803 698921 ONG_20211207 0.0 0.0 0.8999529893932081 1.7818319453609444e-05 12129570.042267803 240.15538188698397 179712 21003 85093 YOYO_20210212 3246696.235916412 68.08836816715488 0.018580324069315098 3.8927474205335814e-07 955304.029608361 20.014491045528697 9448 None 1427347 TRX_20210703 4758781823.610569 140792.93179500455 0.06663894458423027 1.9679949851060324e-06 1141455725.3376849 33709.70469596431 1064419 113585 20767 STEEM_20191020 46147068.85075282 5805.2677631673005 0.14228528230996773 1.789845030421731e-05 2391868.4411477135 300.87959719435423 10856 3785 220628 VET_20210202 1911314549.7902915 57281.269850778124 0.029305848842684223 8.774609670310026e-07 489432780.6168194 14654.34982900742 159368 75989 98520 PAXG_20210506 108277076.91098472 1891.3791197559642 1801.2560451640402 0.03144446204543186 8602153.617742874 150.1674865537823 18392 None 44452 CND_20190629 23615802.714288797 1905.5862632709752 0.01355322169937782 1.0912343851174362e-06 749275.7776965315 60.32775901508333 36239 6145 632693 ATOM_20201129 1295093994.5692172 73171.62928527374 5.435869054340263 0.0003069019516285287 155887065.66587755 8801.17681427646 45278 9762 86006 NANO_20210813 853811971.5568739 19204.4951136412 6.407676763107984 0.00014412564028882618 170615960.263735 3837.605332728506 134446 108130 67455 FIRO_20210220 79158210.62606293 1414.8669663301716 6.847586305366442 0.00012239316156760022 9009701.973713545 161.0386288202668 68663 287 232997 SNM_20210724 65341860.821748145 1964.83068112 0.15115746606043254 4.52e-06 511633.49082521035 15.29916741 None 9707 None ATOM_20210805 3561839819.7144823 89447.43447362447 12.797567242383003 0.00032183059020759146 158641938.12575915 3989.4948478647175 168423 33017 54848 TROY_20200502 4715545.44347204 533.1189656973615 0.002483710620455877 2.812319765540073e-07 508731.14389821247 57.603918892457415 8735 None 489734 PNT_20211204 41428879.60668054 771.5617492653679 1.2306394009991697 2.2905825793208166e-05 19696277.574065764 366.60576812340133 82722 381 272921 RVN_20220115 1064460446.0785917 24700.371406911647 0.10175951300537293 2.3600998063831486e-06 74310985.50950968 1723.4884221967 84994 61827 65851 DCR_20210826 2357822375.038823 48102.050509393346 178.32016480755962 0.0036388782453513333 19706857.391373154 402.1466373312191 48083 11559 147946 NXS_20190904 13953139.397904156 1316.1297479710859 0.23369005892963882 2.2042812702681953e-05 48989.287610088184 4.620914112363352 22159 3538 525271 LINK_20210207 10169663770.573244 259293.82561152443 25.0724349744217 0.0006373505106186758 2110364566.7801244 53646.24280015293 144459 34476 38996 ORN_20210314 352877661.57602835 5752.011503329805 17.135513747747805 0.00027932711114225485 19166810.271625683 312.4394063579549 43256 None 89793 ARPA_20210825 74843953.64700697 1558.4780039696261 0.07617176519618934 1.5861463780216102e-06 42914857.63932173 893.6283127035698 44397 None 746780 FARM_20211120 82590893.69921182 1420.3477799846708 132.13486387249492 0.0022713750051737212 6997211.47875717 120.28083121272299 57547 None 107305 BNB_20200106 2147450559.740196 292399.9326850218 14.006360708388502 0.0019069601531865445 183407548.10139453 24970.860975580596 1082314 58229 1604 THETA_20190324 88523304.17229685 22122.691999172202 0.11913810458315233 2.9748328451737183e-05 6860299.848386383 1712.990599281876 None 3934 345140 BCH_20210114 9234514762.990492 248002.33119061647 496.744798039672 0.013291782707448118 6522231746.851232 174520.37241030706 None 361667 464995 VIB_20210128 3173296.5378091047 104.89933711169046 0.017156750031483828 5.655032872095887e-07 668122.9571821972 22.02198713937006 30363 1091 None CTK_20210509 141575378.20795 2414.167091627785 3.1821854936308163 5.419937136531775e-05 35011356.090029046 596.3176862332258 47548 None 214700 KEY_20190325 7941571.598010544 1988.6438175175365 0.003034693997911922 7.605038024312426e-07 1862652.1864995905 466.7864606495723 23705 2825 726205 BLZ_20200506 3453716.8642476816 385.0954940476522 0.015622296919638732 1.7361678946897262e-06 205256.04845648023 22.81091976129593 36020 None 714156 MATIC_20200502 43858164.27234226 4957.244223327201 0.015880361955037163 1.7981424825523474e-06 18653132.469905782 2112.1048765626633 35458 1655 181455 WABI_20200421 4228139.675894935 617.4493729863041 0.0715013977734025 1.0443685489903166e-05 1047635.6221123324 153.02046234164953 36614 7723 1879614 MLN_20210819 127754415.94390266 2834.251155858001 87.69486207035386 0.0019471794203748216 6833781.507123374 151.7374952176029 27688 412 127987 SNX_20201014 562356182.2914399 49224.283566148304 4.502522402250391 0.00039419728382098033 34079253.10454097 2983.6495653510533 40353 2405 28632 PIVX_20190923 16520393.57883836 1644.621137331733 0.2702655706517651 2.6905198599885293e-05 5339483.473052222 531.5507369911346 62946 8595 243854 PERL_20210421 0.0 0.0 0.1461396891272173 2.5880807586053496e-06 11648177.427436743 206.2849870066931 18287 636 340450 PNT_20200701 18272287.980901547 1997.0673407469933 0.6444609876996378 7.050461214246336e-05 458008.64488867356 50.106558010647625 3084 38 1293508 WAVES_20201111 382006365.462122 24974.95213752833 3.8142363491902374 0.0002496849305995843 44113148.93393502 2887.7047780316616 145208 57083 240575 CTXC_20210930 34404287.28325499 828.1146857386614 0.1870574269900515 4.499927684195304e-06 7176303.205916836 172.6359973303928 21027 20645 786533 RDN_20190220 12907124.283691272 3296.828075851045 0.2551120857409346 6.516251554363275e-05 1229102.0410075302 313.9458509746827 24886 4464 723276 ETH_20200707 26966777214.595856 2886257.8987148614 241.52685187431663 0.025850652394482948 7214622724.058187 772182.0689900612 463340 468753 16696 ICX_20190805 117614690.08127311 10745.053771284527 0.23933371074347276 2.1857071582000463e-05 11687475.264712185 1067.3547937736175 114004 25950 229714 DOGE_20210310 7446831674.698749 136006.7931246563 0.057867249937040455 1.0568708189846695e-06 2529486917.6853743 46197.82196689393 648310 1209026 12918 QTUM_20191017 161016688.46635878 20106.29414518292 1.676452298653133 0.00020939532995539989 186199592.92578658 23257.04419361074 None 15295 181813 BAL_20210107 196512105.74479002 5352.386322793351 18.322270117518546 0.0004964123554083145 65051265.95418675 1762.4591247421258 None None 83798 TROY_20210421 45956848.000615306 813.4600307284006 0.024153874122193362 4.2786464810196095e-07 23594268.061149213 417.95171864091117 15605 None 495335 COS_20210508 100604175.72807692 1755.677347924444 0.033505519810431345 5.846383430906991e-07 21094243.806922685 368.0737925513699 24904 None 191552 VIDT_20201129 22564527.857843667 1274.6755413962933 0.4894577339840827 2.7630652466728373e-05 782406.6587053202 44.168076165375076 22513 1099 None IOST_20200511 40841836.7362982 4664.394477784806 0.0034037336028733696 3.877598978867256e-07 42654106.41953168 4859.238083651654 194043 52205 307791 VIB_20210207 6523596.954788454 166.33080987882465 0.03537302357713662 8.995392752603897e-07 3293080.8252318767 83.74335127002333 30479 1106 None ADX_20200625 9712101.62338004 1044.5058970868777 0.10551428721629055 1.1347728792193e-05 282866.71544075303 30.421423068330366 51383 3744 23124 XZC_20190730 72477526.70337681 7636.039707494539 9.054512872826407 0.0009519096114805975 16648618.802942095 1750.2852421756138 60862 4042 262317 GTO_20190421 24770463.943030838 4664.894465924766 0.03856089796261112 7.260179413082913e-06 20340306.18252197 3829.6377938432597 17096 None 809336 YOYO_20201106 1424717.6398271476 91.61474505354774 0.007974701809610274 5.133842114143913e-07 2068000.596270379 133.13085312372877 7729 None 3755100 SUSD_20210111 156476017.8520785 4058.3174024950504 1.0208889064184248 2.6555485682680514e-05 52027965.47103626 1353.357729209001 None 3051 45504 CDT_20191026 8767278.178272871 1012.5996620198721 0.012996662784755362 1.5010834691938665e-06 292276.92364971054 33.75728568044683 19568 299 183019 JST_20210711 72725196.2670222 2156.9142309320173 0.0507171127912722 1.5045493777540796e-06 62729057.011631966 1860.8899146599788 49091 None 109468 DENT_20190702 108309852.23392524 10220.885556726154 0.001499067017944603 1.4140910241879288e-07 3562278.4751139046 336.0347440785725 45681 9749 256957 OAX_20190930 3186451.1509367707 395.401883393209 0.06100681057714856 7.570242460778256e-06 125665.83983482316 15.593683190238368 12270 None None RENBTC_20210731 521193072.99507207 12486.655285215988 41116.24201707506 0.9840718081322409 9344487.552864008 223.64998139657962 88220 5571 109654 SKL_20210616 303365024.37563163 7511.495400447686 0.3057036616853259 7.5742571002364605e-06 34850196.915449366 863.4648010961384 26286 2218 129791 SC_20190726 114927561.21727937 11602.022381431389 0.00276161648474992 2.789947711773671e-07 7216878.707249702 729.0916152415257 109596 30800 213896 LRC_20210727 284780473.8792934 7609.280814970183 0.22804381098714932 6.111804499051003e-06 42005048.31748732 1125.7777274391403 82882 11078 261623 GRT_20210702 1571006964.5301054 46725.91576347223 0.5427371957343236 1.613591086231883e-05 73490041.47288951 2184.904163183864 114473 15505 34179 ZEN_20210508 1462442871.3054948 25522.409175222383 137.6489999571378 0.0024018486891475583 190638866.35974005 3326.473213821373 104849 7194 756616 TVK_20210420 99673204.94403194 1780.6582502831727 0.44950084285691216 8.036806629806004e-06 17319604.84566418 309.66419142747475 None None 68295 BTS_20210916 142885548.41389954 2964.894944691129 0.05270725526758403 1.0937513488155959e-06 20628025.224128906 428.0611900155071 6879 7262 245459 XRP_20201115 12168486548.547995 756267.5318361621 0.26855016993655373 1.6694588782322122e-05 2758537841.0898294 171486.22511893968 976593 219376 21491 ATA_20210703 79734881.0811969 2354.981265809427 0.46309929232092717 1.36715366111104e-05 8476499.54442875 250.24174248879854 68414 None 98513 RLC_20201201 71922998.68893343 3655.04841915671 1.0240268296242467 5.212984101586485e-05 2218686.6078808284 112.94604475870607 33706 3885 661985 PPT_20191030 19489995.83454 2071.457825210629 0.5379979000438927 5.718010252304963e-05 873329.2287148845 92.82016682633675 23915 None 810126 BEAM_20210806 55836581.12835028 1362.8103279228008 0.598135582116973 1.4605648717842192e-05 11491261.666484252 280.6008140018196 22048 2571 205785 WRX_20200530 25447003.846012753 2701.674431849383 0.1363417870925785 1.4521343026545639e-05 7142569.333010668 760.7330194748414 26825 None 27588 BAT_20190305 206845137.8666744 55707.93687457796 0.16660008954647923 4.486906178929134e-05 26424294.868712787 7116.642748694035 93402 23374 109829 DCR_20190914 241383484.62092453 23310.94785226116 23.244385570541034 0.002245479351504629 13163634.745588612 1271.6477242327949 40567 9598 193164 XRP_20211007 50510105397.084496 909869.4766929037 1.0783609291517349 1.943900059410349e-05 4763213321.928321 85863.7438465445 2078019 332105 22215 AST_20190515 5248274.179969146 656.6776969896134 0.031807252189786715 3.979250583964673e-06 1255159.2376859323 157.0268660659144 31639 3591 464238 SNGLS_20200321 2986026.6498993114 483.01427658071907 0.004644817676423206 7.491046874982686e-07 82472.00831900573 13.300881180494024 8369 2130 1285734 BOND_20211230 88286216.98488177 1899.916856981247 16.860536523836434 0.0003623611480249056 20876832.24987008 448.67806492939366 None None 188518 UTK_20211104 192130982.37439573 3046.5347716109873 0.4269577386097683 6.770077270246638e-06 18922290.12276466 300.04226338248304 None 4204 164101 ORN_20211230 196210362.96142 4220.847984121091 5.797342039437005 0.0001245877461331805 6124916.934399872 131.6274925506957 None None 62828 QSP_20200711 18470017.10556292 1989.1645205608709 0.02601707588538666 2.8023002088608724e-06 901869.2788249336 97.1403734820123 54791 8230 412251 GO_20190520 14816073.67467039 1811.1365415308253 0.020695316256157763 2.5327701236054908e-06 743152.740063109 90.9498088364488 9591 660 859929 LRC_20210508 722883858.3126267 12615.289634200577 0.58082569337269 1.0133509956366952e-05 148792381.6039561 2595.940740258815 73221 10233 161207 IOTX_20190426 27839408.053983003 5359.151971765141 0.011043111201337337 2.1223994563203525e-06 2154204.3333283826 414.02119588412916 15478 1705 782632 TOMO_20210704 145570340.33457816 4199.11708130564 1.777521465463385 5.126599492239255e-05 5217499.58501984 150.47936828345556 None 2191 118140 TNB_20200109 4957535.008857183 616.0664046213118 0.0015958796942506868 1.9888123107577992e-07 685087.9689000887 85.37682329120005 15342 1456 1426193 SKY_20190908 7786884.000159286 743.7714053279167 0.4866802500099554 4.648571283299479e-05 535514.6722370601 51.150177700776 16357 3806 477504 OGN_20210429 397362850.8163653 7259.373613690307 1.884271881178189 3.4412383860043715e-05 125714003.01787403 2295.909932980988 104267 5001 48206 FTM_20190920 32012715.22930762 3125.6249236587564 0.015359392424072466 1.4986772794998992e-06 4530102.372977522 442.0201862639746 19004 2158 407157 WPR_20200612 4514631.369991838 486.57096576184443 0.007438835375188975 7.99974697922749e-07 397749.6758396923 42.77412534763158 32995 None 2763388 AE_20190813 87643129.80837233 7700.244658901227 0.27017948409752846 2.373951872613898e-05 18636595.36885358 1637.5181343919878 24892 6356 316448 YFII_20210318 91668155.95092502 1557.44420655134 2305.7887700472706 0.03911943763418551 92836441.67597376 1575.0399331888943 None None 270842 OST_20210111 9688810.644003093 251.3307728659334 0.014030267922766636 3.6495702578875323e-07 3248179.2207254595 84.49203066900772 None 731 741572 LEND_20190819 3900801.839808575 377.9852247060926 0.0034553803496823227 3.349786616574866e-07 1410190.2162499933 136.70959012235335 None 5830 628333 STPT_20210805 63053579.120951384 1583.9421709722874 0.05157440528136222 1.2969825418331314e-06 5304397.620666118 133.39390093619406 None None 442795 COTI_20210221 129252451.67056902 2313.301754143401 0.19488766506680633 3.4666783092189654e-06 115791100.05058669 2059.701904727376 42352 1670 218044 EVX_20190220 5369834.39838877 1371.6007081180644 0.27845523817880985 7.11249870163293e-05 1011130.9615830731 258.27015137069674 14035 2321 1312426 TFUEL_20190729 0.0 0.0 0.007290471184623005 7.647634710824147e-07 630985.9446225583 66.18982353727213 None 4018 240889 LUN_20200207 3030119.387355662 311.12034321969776 1.1047820221725049 0.0001134512145996466 4130658.3120712754 424.1815970892391 30001 2159 1865832 AMB_20190201 14462973.266596396 4215.038416290233 0.05334762925703112 1.5547446751888537e-05 375958.0636574455 109.56790502338714 17892 4979 625152 BAT_20190207 144881701.38608757 42540.51366720945 0.11779487677683073 3.458721506933665e-05 20159086.718466233 5919.159534026035 91947 22518 119907 FET_20190622 0 0 0.18103606994783186 1.7885815020320265e-05 28021566.56318467 2768.4458476873538 9821 276 385628 APPC_20210318 12737648.219204692 217.50473336840034 0.11545490447303654 1.959686729151235e-06 3817911.2874228954 64.80374408682384 None 3113 872294 SNT_20210111 228312885.2322904 5922.5075201773525 0.058758719461562026 1.527714573574442e-06 61308565.322937325 1594.0100394812468 115038 5681 172923 CHR_20200718 13031670.314407583 1423.7457233340199 0.034378769713797865 3.7558056519254936e-06 2688988.1689073155 293.76609596036633 23115 None 371620 TLM_20210602 238914731.45341766 6512.240142125213 0.19209869338626703 5.237944145131065e-06 25260583.637809657 688.7788971172546 47340 None 13783 HBAR_20200319 125234393.99421978 23255.43839337803 0.036440081477639906 6.7634950631085635e-06 26621879.232509736 4941.1785445715095 38061 6375 115268 QKC_20190805 66578907.14971079 6079.755237815581 0.016629590032660513 1.5183927803614692e-06 2869440.482972468 261.9991054779641 51606 9232 258370 LTC_20191102 3709328844.0522866 401563.0449955247 58.33337033723084 0.006315030778419666 2878437635.0579724 311612.7553417054 450784 209438 138607 SYS_20190305 26734978.397217494 7200.5930855025035 0.04867844615588773 1.3110677614745022e-05 356341.7074076476 95.97432982039415 62443 4625 812672 TKO_20210602 153308550.2863275 4178.404208315378 2.044499251917572 5.574773688562908e-05 156867586.90919188 4277.337324870664 273523 None 23426 AMB_20190805 4008538.8914691177 366.078481873297 0.027634863101876395 2.5235199987910788e-06 126609.24741956795 11.561518025883528 19361 5644 834562 ARK_20200417 26564230.821900666 3741.1690061508084 0.17836006898254764 2.5143077232496226e-05 4406236.795214939 621.1387598061324 62481 22055 88173 HOT_20190629 321458055.5038389 25972.980101066594 0.0017259926366916898 1.3941426908147478e-07 21961625.133716244 1773.9148190846608 23115 6484 301392 POE_20200914 4938065.122818075 478.263097560245 0.00206503981204328 2e-07 205989.38195633402 19.95016084 None 10158 911005 CTXC_20200223 1904989.2896639467 197.35113567717917 0.08922929900091761 9.243845159757428e-06 5747791.097049471 595.4511747448695 None 20069 379773 ZIL_20200605 177614990.94549617 18197.65638936689 0.016792349079448165 1.7178616596446055e-06 51839062.39637213 5303.149508227026 77122 10956 123931 ZEN_20200704 62171898.97235977 6856.353281573938 6.5960783865135495 0.0007277121084573153 3099870.675501023 341.9931197036901 64002 5968 61667 TNT_20200129 20797089.451757304 2226.262131857427 0.04869430529149348 5.211304541928214e-06 815444.4130322947 87.2695307569681 17715 2568 695200 IRIS_20210418 218265641.41510102 3620.6940291077844 0.22322068803298903 3.703683287551728e-06 22080035.367065724 366.3525038748505 22342 None 536237 ZRX_20200713 298258610.3242631 32140.563405159486 0.42572027308388943 4.5819230451745465e-05 48153500.17951319 5182.643301904752 154945 16122 78133 BRD_20210823 17842419.22756817 361.6268286684024 0.20994008748808496 4.260686273901206e-06 407059.4700289645 8.261179260070284 None None None RLC_20210813 270649471.89713204 6088.178822148167 3.797254628064831 8.541229148569387e-05 31494911.80677131 708.4203855265523 46359 7772 152995 WING_20210422 66651816.3604789 1230.1011062454406 43.226748415785224 0.0007992850492705399 7757106.050058204 143.43292333210638 None None 321336 OGN_20211028 269945800.2654056 4612.15511340584 0.7500823601477022 1.2817973042034518e-05 63090982.8970612 1078.1462955757906 124447 6744 103485 KAVA_20201030 42696959.85519637 3171.642940621576 1.4513681239364125 0.000107935294047658 7092768.748643232 527.4747790522559 45918 None 82175 GXS_20211204 282842480.00421524 5267.848432336473 3.7101717985094025 6.918895562656455e-05 3648487401.298072 68038.63719030755 77739 27050 1228624 NMR_20210809 294010237.91021574 6683.225450149739 38.21859095689222 0.000868834327208112 23496424.557065837 534.1510430057593 29660 3567 685085 ROSE_20210527 112343067.5739015 2867.396023103973 0.07491334461049061 1.91091648197715e-06 9553830.65434348 243.70254136066043 20569 1553 211372 MITH_20190227 18160975.21552458 4778.251425802163 0.035836042743108906 9.428657894207765e-06 3967073.2389386664 1043.7585611601064 47 1978 558575 KNC_20200430 120924985.24338171 13850.839884591518 0.6724042763726926 7.669414047191484e-05 95433319.9506665 10885.083131060903 105452 7444 116749 COCOS_20191017 13977064.555016207 1745.3338268164873 0.0008885130094710786 1.1097868691959526e-07 3245285.0371832694 405.3485635745577 12266 138 65492 FTT_20201208 409206523.38920623 21310.524596004478 4.47513671069524 0.00023321976340762396 3174002.6116899136 165.4117373407574 32879 None 5178 VET_20210221 3481039815.8609934 62302.071706914234 0.05392228982590133 9.590745335395537e-07 1071157885.2546314 19051.866166379525 173808 86592 71018 IOTX_20190523 27161472.739755966 3544.573544268355 0.010755879901910688 1.4044671624208292e-06 4014834.328917102 524.2437651727843 19672 1721 780068 SNX_20210304 3363008857.936484 66145.32617779204 22.67558909242126 0.0004475298586273588 262215656.20587867 5175.139445039514 92274 5163 24026 ANKR_20190906 12652162.418510795 1197.14895215455 0.00316710248882303 2.996578898280298e-07 2768234.093835514 261.91864331394873 13958 None 7336 THETA_20210304 3992477601.382879 78559.9690943919 3.989969254766918 7.874992960644358e-05 333564955.2541492 6583.563698907566 90347 4574 39899 ZRX_20210127 408025265.8241888 12521.033802181479 0.5431145142704886 1.667440905819352e-05 87650286.87337007 2690.9918608190605 167259 16385 88733 STORM_20190902 10308768.113403082 1059.9674966835264 0.0016537159082046762 1.7003827151436238e-07 135991.034608196 13.982861476691753 26521 2548 2939778 BTG_20200523 154881753.7230468 16921.40398790968 8.842935754769618 0.0009659988903428739 38890589.48753565 4248.392992053172 74802 None 210192 XEM_20190803 573591891.4039593 54512.11374568606 0.06369935369469837 6.052081166790454e-06 55557598.206609264 5278.532265647082 217272 18415 178171 LUN_20190625 6558210.630811254 593.8759034975698 2.4259515323957532 0.00021968098300688844 1516792.9568091098 137.35252469808717 31322 2222 2294680 MDA_20210217 23051764.959532335 468.4686460809381 1.1763330778468073 2.3904552731536302e-05 2720628.0073672533 55.28654841879277 None 370 1150180 FUN_20210708 172155277.99005976 5066.763846050559 0.016523397081658453 4.863060367636149e-07 1537553.5890382114 45.25229215890729 4704 331 110414 TFUEL_20200520 0.0 0.0 0.0027931256102017655 2.861173605496584e-07 1818885.919351702 186.31988353300548 67570 4053 375081 WAN_20201014 34147045.75426327 2988.9666301969996 0.27184733619588736 2.379999818491289e-05 1055147.484085041 92.37724583750877 104573 16010 402276 OMG_20200719 221898919.63047266 24205.809690493454 1.5822189019740434 0.0001725961067934183 82727098.53644034 9024.272884043283 157 43066 389790 INJ_20201111 13631448.104435924 892.5207343117838 1.0067629555495146 6.591071470087687e-05 5490092.429070908 359.4251395319044 28696 1701 209398 LTC_20190228 2741902184.1583962 717557.4888414459 45.08466227127825 0.011824949186624995 959934575.117027 251774.70566247776 438231 199844 251431 MFT_20190908 9730258.590187542 929.6301916683185 0.001078144996142664 1.0300611542031232e-07 447393.97645465506 42.74407963856343 18770 2218 866690 ADA_20210325 34095874084.32727 647494.6709650044 1.0614525089773315 2.0176383444354198e-05 3509101233.2573314 66701.96869709238 288751 290629 9201 QTUM_20210408 1656113108.8640776 29402.797034123163 15.748642886736063 0.0002802597403620718 3007644055.966751 53523.43997441849 222870 16002 102552 BRD_20191019 18910001.622177128 2376.056799739429 0.3133583606184676 3.937372816666043e-05 1276100.3505072624 160.34302775610033 172 None None GO_20210324 51463387.427460365 944.4047658422021 0.047711900821575816 8.752558514142559e-07 4935226.747823959 90.534772555859 17539 840 245426 PIVX_20210131 30800350.13146417 900.2671724450623 0.44955243332245065 1.315847970470655e-05 1286494.4380943363 37.65592108749639 64998 8751 328598 TWT_20210324 199796421.65671322 3665.017467003465 0.5783861924238792 1.059428994099885e-05 14743662.974546883 270.0594211803844 415376 13926 7173 BTS_20201030 46135502.15144804 3425.0290911584884 0.017004364860534263 1.2645695928156431e-06 11738031.269830639 872.9263071623274 13151 6916 91919 TOMO_20191220 40648642.24796167 5691.241240503492 0.6048276067568149 8.464285845949242e-05 30777539.085930742 4307.175888598902 19403 1411 297421 HC_20201226 29297848.88714906 1186.382641682009 0.6513079665493952 2.6413505197077134e-05 10313671.996309144 418.26638528426497 12701 844 1198321 WTC_20211125 27158362.272276957 475.0247486788653 0.9309847508820905 1.6276256854391273e-05 5447065.866784258 95.23017757977925 66852 20337 298071 ATOM_20220105 12275004299.240047 264941.12145914853 42.097936398552385 0.0009149556511345504 2250508635.3276887 48912.506644648274 293282 52139 29857 POWR_20200518 34497109.68866855 3542.461786814975 0.08054009919011788 8.246679539672522e-06 2091046.4954014777 214.10689238693075 81862 12771 209836 GO_20210427 50743050.800333016 941.904335133893 0.04781026955687911 8.869489336851248e-07 2313416.9729727847 42.91719616653047 19904 963 121965 BADGER_20210909 184525501.4852244 3982.978388624773 19.2767811177454 0.0004164223466351923 25159706.54294962 543.5069255220797 37487 None None GTC_20210805 111257160.35571727 2797.1699354927723 7.8285396949991854 0.0001968288613993898 19946540.037343014 501.5053786998746 54618 1076 24142 FIS_20210704 19284850.921945103 558.6544082603049 0.7157341969405054 2.064604427756187e-05 5039327.356273741 145.3642653536713 23458 None 421397 NEBL_20190220 16622346.428437565 4245.796134545544 1.1202746940572834 0.0002861484078758123 182176.5934981087 46.532821332352 39633 6171 501416 QLC_20200612 2962589.8705664254 319.2974345722428 0.012370179577017353 1.3299266730413308e-06 229681.63345677016 24.6932333310162 24367 5646 940522 AE_20190130 84669361.28990586 24795.39975898902 0.3722545419452172 0.00010905677707177443 66552819.10579167 19497.50812654042 959 6308 502810 SNM_20210314 15819724.920875639 258.18487792 0.03560748009554281 5.8e-07 1502724.4276380185 24.47744591 29257 9490 None KAVA_20210620 270656107.19224 7607.441317479752 3.8609972312077288 0.00010844396646146059 28771849.217151344 808.1159515783897 107542 None 51649 ZRX_20200305 161410611.0418323 18437.771977085344 0.2577624516769585 2.943348243291618e-05 43175178.96643107 4930.104688944724 152934 15984 118984 ADA_20190719 1840798635.8947427 171776.31082976636 0.05871637584718182 5.504762517935839e-06 160406339.4962515 15038.373751070625 153975 74621 95231 XRP_20210217 23858413182.24458 485050.21760647424 0.5223534662432514 1.0619635955392928e-05 6802700451.816495 138301.3744149946 1169507 266305 10253 QSP_20190801 0.0 0.0 0.014535323168050191 1.4435470288046037e-06 133614.65414657834 13.26967655057106 56755 8574 645541 ATM_20210104 0.0 0.0 8.620799539954927 0.0002618894603131452 2315927.5969625064 70.35507851467813 None None 231684 BLZ_20190130 7390781.711724807 2164.3884432548507 0.036520380214182455 1.0698208400951378e-05 148273.56892009932 43.43496785512752 34854 None 816728 OMG_20210105 453139359.02283126 14483.637901331746 3.221927262146438 0.00010298206695174085 747299395.6820788 23885.83916939759 289301 42593 211368 DOT_20210523 21860219890.87334 581683.3178725576 21.986431379821404 0.0005854489220113091 3027159412.6211486 80606.40602648974 429549 24610 16321 ZRX_20190729 136656431.5837781 14315.645418129718 0.22777004972888462 2.3884710271469102e-05 33544270.13022929 3517.56156826627 151351 15957 206099 DASH_20200417 715641656.8452266 100952.92259681948 75.74768113534394 0.010685445316661825 909653822.6658341 128321.50151000168 315572 34632 68820 REN_20190618 37062931.17836816 3976.027054394818 0.047479855424183204 5.0958608588649366e-06 2651242.520179603 284.54937078558066 6424 780 1312648 ALPHA_20220105 315452274.871112 6814.158588312085 0.7000787832316719 1.5215497332055552e-05 7598568.525240937 165.14712614135146 94416 None 55254 BZRX_20200903 130181614.53177033 11411.123527858896 0.9264213128803925 8.118742225525766e-05 46240233.889153846 4052.2873791282177 12369 None 102512 BTCB_20190818 0.0 0.0 10221.24405968835 0.9999667836168077 122596.5090583683 11.99388607980106 None None 60594 WAN_20200109 18367603.737762973 2282.518141781334 0.17287954927291233 2.154454230546894e-05 2058890.1467585925 256.58237805287865 106678 16534 802960 BQX_20210418 1042704572.801727 17309.688425806246 4.698261481298938 7.793699082566292e-05 10164146.169511862 168.6076796528004 65254 4234 20896 TOMO_20191024 18273973.89122707 2448.007613061375 0.281003601708654 3.763865654697685e-05 524002.74848617683 70.18685653855698 17845 1338 283886 VIDT_20210420 37723880.55424453 674.1025133659144 0.8116161051034083 1.4511211264688944e-05 4167976.524854452 74.52093116205587 26576 1518 436797 REN_20190603 33360688.179519042 3816.2267309956164 0.04327889958198018 4.9507999530484785e-06 1079576.596310422 123.4959255884419 6391 783 1322492 SOL_20210207 1614662623.626382 41158.73532392455 6.117657911972685 0.00015557260895231512 134130068.36753744 3410.9400975252447 None 3541 80032 TCT_20200718 4461735.137161119 487.4568007724379 0.007745125287489743 8.461129438468987e-07 1238301.0763571877 135.2776785648286 None None 700075 LINK_20190923 659661686.0697747 65642.64986960802 1.8096346524676659 0.0001801549193653955 109403308.56472254 10891.449390576498 33083 10680 93725 LOOM_20200321 11016521.55219276 1781.4695361703054 0.01340396585962836 2.1617584060364083e-06 23520989.493610196 3793.4069131921574 21572 None 494145 TRX_20190725 1583623603.22974 161199.96712449405 0.023868474151604025 2.4340975389395123e-06 1061772841.9723728 108279.17382327022 448520 71318 80727 AST_20210729 22673623.88704406 567.0536662220546 0.1296537217869023 3.239278023758504e-06 1570043.3979151251 39.22607855077682 44304 3700 213143 ZRX_20200914 350657203.48867947 33962.14620106228 0.4891205280797865 4.7362300280744895e-05 55623787.9213862 5386.137761642714 158802 16304 45992 EGLD_20210421 3056304330.4218307 54098.17084293945 173.4642021021148 0.0030764830307910104 293722439.4255323 5209.329012583478 210452 8024 24132 LSK_20190225 152126197.4553015 40387.69997305485 1.16313616637563 0.000310491412918669 2973058.778197953 793.6381374928546 182973 30472 176926 NEBL_20200330 5494818.732531261 929.2433078484631 0.3395509916699304 5.752483535348724e-05 102535.73897077815 17.37103306084822 39538 6009 841626 POWR_20190605 46075026.17826594 6008.0288686054455 0.11015457958775232 1.4340336525480019e-05 2366482.166815177 308.0775286935961 84887 13219 613771 BNT_20200605 41287527.461572744 4230.13977543601 0.5926690856053167 6.063020094455171e-05 17544011.114172406 1794.7568804593968 None 5025 124345 XRP_20201031 10810777275.29966 795893.6946416973 0.23861386233985746 1.7618329634797363e-05 1536363578.5097647 113439.17616374174 974916 219106 21049 SKL_20210909 438672554.320949 9468.736242307803 0.35093031923052626 7.579991798400303e-06 84667000.00678167 1828.7823265136035 74083 2498 248106 COMP_20210325 83591.14096607246 1.5844878458382934 1.0057582582941205e-06 1.9149671091141433e-11 785.9588879539198 0.01496468368154868 2319 None 1672733 WNXM_20210727 117587787.10221533 3140.8343897474 54.12946641266465 0.001450724380197263 14276249.168776432 382.6178992606726 None None 131125 LOOM_20210731 74814868.65989557 1800.9369252910108 0.08997669010811568 2.153492629206645e-06 13136519.99717379 314.4080867316525 33898 None 307101 OG_20211002 11216245.512043031 232.95294652841076 8.114657473008368 0.0001684681964478353 5760848.094635701 119.60082008901131 715661 None 488504 LOOM_20200127 14965480.80268161 1743.5903843915578 0.018004109236759686 2.095029470136294e-06 2960029.845336181 344.44079831512795 21297 None 255178 RUNE_20210125 598031475.7077266 18559.91821539005 2.5866334895233285 8.017610362422812e-05 43318342.729856476 1342.7089495307018 29672 2123 220522 SOL_20211021 52336972845.39368 789591.3267543534 175.60195629220317 0.0026501695052837193 3069126856.4038467 46318.996521623034 759202 73360 5133 NAV_20190225 9878654.808445958 2622.6656106231794 0.151538470434293 4.045218019769022e-05 190882.76133382096 50.9548752602496 47932 11434 768828 OCEAN_20210814 295672652.66874313 6205.442393995804 0.6828473990751321 1.4303711313243558e-05 31892384.95601455 668.0547778603631 118854 3338 135729 QTUM_20191213 176373852.18849382 24474.16530153446 1.815487030474046 0.00025221117704676474 337616652.8893403 46902.39698026133 180541 15260 176199 MTL_20200314 11145890.536055658 2024.4964551747807 0.1744254890023496 3.1354239156971846e-05 3782248.036169801 679.8863523636593 None None 606546 WABI_20210210 9337825.366578707 200.80477603128125 0.15745275297757816 3.380662209020339e-06 1956654.2589224072 42.011250893781764 40860 7428 958104 LIT_20211120 116662953.16347285 2006.8957951033442 4.209120456494942 7.236572018676244e-05 6354082.882858634 109.24319907141565 None None 170550 LTO_20210124 61430485.19073345 1918.7171072685583 0.22534032878532864 7.03148925371659e-06 11422179.572456967 356.4161521849232 786 1177 818812 NU_20210729 116560590.45818344 2914.95955374551 0.20935272332941957 5.230483680287922e-06 13770608.814897722 344.0458931151141 None 7132 130828 RENBTC_20210523 434699383.7116324 11564.50129382435 37461.43605277219 0.9975132833161587 20546975.99952067 547.1194820889269 79300 5111 67257 NAV_20190801 9076247.612845723 902.925573133477 0.13816649205368084 1.3729316633770844e-05 142377.71716819808 14.147777305051635 48309 11224 652826 FUN_20210207 240940771.14116234 6144.376093407682 0.03981712470087177 1.0129496494912351e-06 12838826.83652433 326.62039867613163 34980 16816 258794 ETH_20190821 21099092813.884506 1960774.898849906 196.27274728566928 0.01826035824840099 7427661565.776037 691037.1562769302 447812 444840 27728 AAVE_20210310 5543006780.423209 101413.14252716013 446.27486190441994 0.008150635796695971 872076956.17985 15927.362850286394 145871 7133 14216 NEBL_20210523 25682458.29173966 683.2418753564144 1.4350358279074824 3.818517864002457e-05 2226867.5807862454 59.255200968741434 40159 6080 583020 IOST_20210201 288131115.86692643 8718.49442082603 0.01566110832464058 4.73665850701087e-07 112003542.20448293 3387.5158769160134 202368 52233 229978 KEY_20190528 9872746.607770205 1119.6479367879156 0.0037829806104208415 4.298618698116626e-07 662013.1627973637 75.2248677183544 24018 2835 636619 ANKR_20210422 1061407355.145533 19589.156515258663 0.1510619724495422 2.7932143988916306e-06 140079334.13714728 2590.1397072630202 76177 None 5736 STORJ_20210318 137457112.989983 2335.399704016427 0.9515660133086671 1.6157219362443193e-05 80316728.48058894 1363.7466895465093 None 9140 80863 DUSK_20210429 95664619.04917698 1747.9913102655757 0.2692274056805772 4.917203837592199e-06 7474551.986292554 136.5161753067833 26505 13571 307369 KSM_20210110 626580236.6482787 15486.540946675239 69.31988229749015 0.0017202122935022254 89489339.28675926 2220.7288367546557 None None 180647 SCRT_20210603 116367782.48170033 3092.1823984471707 1.668014675846041 4.435281256020325e-05 3979214.795699723 105.80804265462434 82515 None 49148 BNB_20190528 4942744068.111627 560457.1539152232 34.239340518309035 0.003883013359031395 333446099.90027976 37815.438055453764 975335 51762 924 OG_20211221 5548873.62195455 117.63595322679369 4.000717528811067 8.488186246924511e-05 1753046.1696317876 37.19378406531572 None None 169740 BTS_20200621 64140092.51901394 6856.034654138522 0.02368963883164009 2.5309080455971697e-06 9354662.1982352 999.4153979981994 13106 6984 148844 FUN_20190806 16868847.399711538 1428.2869044198 0.0027479484273978446 2.3264503633975905e-07 219114.3690038012 18.55051930058383 None 17478 379326 ETC_20210429 4432769004.77541 80955.48741079471 35.02724795195194 0.0006397012629248658 3221957627.6994815 58842.486465309245 346642 35807 130525 REQ_20210212 53205582.45796786 1115.8076209460082 0.069382035126028 1.453143376800049e-06 2215069.358448953 46.39260525489145 40383 27232 458949 ATOM_20211111 9038643681.271164 139265.55823270266 32.15140101655048 0.0004949697092844962 958058338.8137906 14749.275068795343 244922 44897 35316 ENG_20190704 42844421.18519215 3569.9474361311322 0.5617769301372312 4.6813842790835676e-05 1773675.594738753 147.80345364797859 61800 3471 328066 CVC_20201228 58621305.983304605 2211.5921676924613 0.08717771233471647 3.3149549592782827e-06 18721753.123467244 711.8994832616958 86437 8047 189562 MITH_20210727 24851457.536075126 663.4156073059081 0.04016373574204367 1.0721805391214123e-06 17294980.59222667 461.6936465911625 32675 2750 479656 XRP_20210304 20695029438.915802 407118.14841392066 0.4506482993644011 8.89408292252994e-06 3428688631.9957685 67669.26903200704 1233928 272664 10439 MFT_20200407 5772212.503745309 793.6138046832253 0.0005946765538975204 8.153431579483054e-08 1379867.7867906447 189.1895268880743 18345 2541 847135 KNC_20210704 147326492.1889717 4252.058822120027 1.5958197418209097 4.6021475940220786e-05 29650255.00586169 855.0768370722478 174434 11210 114765 HOT_20200324 58482517.411826044 9077.958018836352 0.00033155277331620316 5.116673162283937e-08 5555212.6159289945 857.3056716855373 25092 6923 515134 BTG_20210107 172137238.08175597 4688.489776547215 9.70392155580024 0.0002629121023385894 29578079.944609538 801.3703672952735 82410 None 356122 TNT_20190929 19847684.481824696 2423.3649583176834 0.04654631810042076 5.670503991952674e-06 704753.3173088861 85.85655455110644 17594 2542 560905 DNT_20200626 5442741.131349778 587.7110695633859 0.007250079995846387 7.835254358344181e-07 214546.10516223105 23.186272517009577 57961 6016 571962 WABI_20211111 11924174.090791754 183.8752062951191 0.20235495373263696 3.1158397848821846e-06 967022.9121946433 14.89011465807636 45403 7917 801187 DGB_20201130 328526202.4839403 18111.227650245077 0.023866359822895852 1.3141967436332245e-06 9793613.398014752 539.2835326201002 178074 23453 238709 BQX_20190122 18973997.64529268 5372.647783192232 0.20381418373633242 5.771708470699132e-05 6051877.8308193805 1713.7999868038557 60894 5836 333871 AMB_20190205 14158072.34635458 4086.8580511789405 0.05222298213549109 1.5074645034707647e-05 350435.7120936066 101.15649760464312 17903 4976 625152 BCD_20200801 163488236.07432362 14425.042287583528 0.8685191354096169 7.668254244684003e-05 15845519.870645264 1399.0189744062932 None None 3244311 BLZ_20210408 144629075.4746486 2567.759006708635 0.5029201592768968 8.949867888648704e-06 56216492.523848735 1000.4176050032651 53426 None 224636 DATA_20211007 0.0 0.0 0.11742660192401591 2.1165355450354073e-06 467196.88316905074 8.420909687882355 None 4550 292753 XVS_20210112 18531105.98471215 522.3354767250221 5.105778741933602 0.00014343372714155698 10278434.589680484 288.74619463440587 None None 105222 HOT_20200801 137301204.67616528 12114.484388280103 0.0007741872779688105 6.835387544644938e-08 8409618.575307397 742.4947903520922 25883 7221 587004 PSG_20210428 111856535.56349467 2030.4353795536376 53.00898265544681 0.0009625039453865985 111743911.69498113 2028.976043144257 9002334 None 26882 SC_20201101 112535786.19599873 8155.51493860607 0.0024756745551940775 1.7964753971046717e-07 2656112.9799013482 192.74106971419272 107004 30064 142131 STORJ_20200322 14058965.26718189 2281.691510176574 0.09804413288107534 1.592002212226496e-05 5890917.852693412 956.5441580179145 82243 8016 127597 XMR_20210104 2502408064.326349 74802.73462026 137.98648771367002 0.0041918625564083606 582928058.2938806 17708.64916652176 332927 187978 59059 SXP_20210427 308456202.27278703 5725.63591540634 3.5873542124318205 6.654818874480376e-05 555037950.3956559 10296.382262854435 175330 None 66436 WINGS_20181229 7174239.7933038445 1865.4257045223655 0.08020142096443102 2.0846427618183935e-05 161276.5486577103 41.91995425610385 37828 1218 1728006 IDEX_20210826 38133791.75938311 777.8557659986687 0.06446820346248314 1.3156100230822899e-06 1112875.9548275354 22.710587266021914 53590 1970 8868023 WAVES_20201224 597428239.9352381 25550.54741685448 5.896416050531669 0.00025287270088871167 176813921.56091627 7582.8119177245235 148790 57192 196756 AION_20210819 88312490.64754766 1959.2260419743004 0.17843587439329348 3.961995654847669e-06 9595270.30862451 213.05367768180145 73906 73413 623135 GRS_20190816 15902835.306617722 1545.042980312983 0.21727410872398523 2.1113236121591164e-05 1148150.9381942837 111.56958371011977 38560 107009 None LTC_20190201 1889887501.2565339 551460.3523538691 31.333713873584678 0.009146301929885373 573161631.4919705 167305.71286255008 436638 199676 253204 STX_20210127 432705048.43778557 13286.21530516339 0.47148434816839047 1.4474077503882578e-05 3185413.539273935 97.78887173769157 48919 None 68593 LTC_20200129 3863812136.663059 413224.4013319333 60.41071901822735 0.006460765253948869 3102068140.0402117 331757.9128383909 449154 210681 163494 BAL_20210218 480559812.93599194 9219.240313362827 44.64444104749276 0.0008562333472689518 187571180.74139115 3597.4176441483414 None None 71652 XLM_20210421 11978068909.661175 212006.6658724608 0.5243264310413652 9.299217637679417e-06 1635151550.6416037 29000.312095282578 503726 172971 26729 TCT_20200217 5997085.172474141 601.5957929579923 0.010361210633856454 1.0393767950534109e-06 752367.8344730561 75.47319479642904 None None 380561 HNT_20201228 84250198.33947682 3173.3037025899635 1.3385273249552865 5.089784619437675e-05 3332783.5539319427 126.72995281052101 17608 2025 69753 BNB_20211011 62527397932.99623 1142569.5660908227 404.32984207958265 0.007390416335828799 1339995646.381851 24492.6905815938 None 656872 136 POLY_20200315 9630627.596792515 1864.0142205302034 0.01594954120546993 3.0849353682779923e-06 4104316.7545929896 793.8505412630647 35003 5004 364083 SKY_20200903 11164573.089890037 978.6352944136588 0.6116924801769942 5.3605994365661926e-05 1213007.039090125 106.30251410669389 17196 3829 1022336 WING_20210111 11766388.962794563 306.09330601346716 13.79368900467341 0.0003596586993349174 3969813.933178538 103.50951912319346 None None 329521 GO_20210508 55593581.40233781 970.2137156304032 0.053228660157314596 9.287946980795252e-07 3067116.220042696 53.51856077440461 20538 1005 107802 THETA_20201129 624133001.4408933 35258.29754010773 0.6238615312458435 3.525000008955047e-05 10450710.499763291 590.4956911141112 74694 4532 80855 ARPA_20210826 73900520.50113302 1507.648161900842 0.0752298655782225 1.5349666018192397e-06 47733411.77393901 973.9375752000756 44412 None 746780 ATOM_20201231 1297013787.5382986 44918.52923848361 5.446063827611342 0.00018884889469951974 371972584.61047083 12898.602309077483 47015 9945 103888 OCEAN_20210422 567322241.7266963 10470.404349372418 1.3220541518990974 2.444546852737863e-05 148484394.7654904 2745.553647581369 102463 2677 70658 SNT_20200518 109862861.14392945 11316.65689545908 0.02890505450256041 2.9670502777933415e-06 20140052.3510438 2067.339050256546 None 5693 159898 HBAR_20200308 189433562.35712498 21312.487500587908 0.0560445866688133 6.296839019760502e-06 39298066.23624297 4415.298810923448 None 6344 124891 BAR_20211002 49407652.624378815 1026.1596224461334 16.78359071448592 0.0003484436979617615 6673958.058051262 138.557872707295 None None 34891 CTXC_20210814 38880809.24238818 815.7471619098238 0.2140435050721004 4.487216387954421e-06 31566909.291900415 661.7699174939802 20335 20601 812838 GTO_20210204 23025849.95193491 614.5879703879228 0.0330275499262906 8.805111307152099e-07 195595173.58170772 5214.547486484113 None None 738206 WAVES_20190530 268177937.5208341 31055.40004998118 2.678901479071058 0.00030978458425206097 43956752.01681484 5083.1000150561085 139981 56829 43809 OAX_20190227 2992167.7850650065 785.5087082990569 0.1275230535248701 3.347755749281819e-05 768173.8902621979 201.66224745174551 14218 None None LRC_20190130 46728425.0284365 13689.695778087469 0.05923983717427448 1.7353601468877872e-05 4750792.309840142 1391.6877617985328 28611 2468 479878 STORJ_20210723 112190829.86864409 3468.842465480294 0.786362240093539 2.4289548180295354e-05 22030993.075412426 680.5042771399218 103625 13694 53900 FET_20190706 39348845.54726622 3580.9309043550356 0.14493023883170397 1.3189336662611743e-05 11394719.211828304 1036.9732988244912 None 287 401657 FUN_20211202 209853697.94919276 3671.376178858628 0.019807991346983043 3.463958799104226e-07 4271682.288388437 74.70182710926174 24993 529 194611 EVX_20191020 7258447.699689493 913.4009497159351 0.3332400188259592 4.191916282204988e-05 373669.03803596913 47.004838440995584 18185 2896 495281 WAN_20200621 24575782.272729166 2626.9437460578306 0.23157613370240707 2.4750729911252437e-05 1087981.7945508726 116.28289631907127 104058 16134 676910 STEEM_20190704 111706301.52292915 9323.65066235963 0.3582499032475214 2.9845012810802162e-05 1535290.4329068125 127.90167484496827 5845 3753 330897 VIA_20190712 8604696.087913625 760.8806612903292 0.37533168055709315 3.3103723745743794e-05 820146.6652705001 72.33577671303921 41049 2234 1727246 FUN_20210710 164525141.73685843 4840.883104241404 0.015840697804804182 4.661044681993201e-07 2808370.828020606 82.63488183607896 4726 332 110414 STEEM_20210427 330069609.14480036 6127.194194975887 0.8637985072638175 1.6029180774587426e-05 7481360.021750214 138.8287560350924 13549 3935 169708 AUTO_20210804 28878151.71569985 751.5822379252943 826.2646893723911 0.021512225484993517 4278366.1958090225 111.38946090208289 None None 12074 AST_20190725 7601197.227000309 773.2587213865721 0.04403761414486496 4.4851535646725835e-06 1086559.7686185846 110.66420182115444 32025 3597 228402 CHR_20201130 12131795.838455118 668.6517739961234 0.02701676737865476 1.4869099115316495e-06 2171204.4562898045 119.49562213611311 31470 None 747411 LIT_20210617 72330079.567657 1891.0087621790756 3.272374910972373 8.555651710454409e-05 6126429.640788482 160.17601791114905 51764 None 250622 BQX_20190426 14923416.217217064 2876.7579551861363 0.12704649478373944 2.445675108126861e-05 1200575.9894182289 231.11372082582977 61278 5806 418149 EOS_20201130 2872160366.0014153 158335.2221181697 3.029359939643599 0.0001669649953875789 2499617011.316362 137767.89522550124 191556 73381 107742 GXS_20210401 74709604.73364493 1270.1544520249074 1.071366019771927 1.8232408725416987e-05 20554850.60301251 349.8005635495029 None None 512398 FLM_20210814 0.0 0.0 0.5718755825184323 1.1983209089898927e-05 25532518.38765946 535.0141110827211 None None 72660 MITH_20190603 26670149.814404707 3050.876471543351 0.04994918131860095 5.713390782389934e-06 6929253.294369966 792.5962119053872 73 2064 476862 TWT_20210703 109316358.73239921 3232.4698593261837 0.3166342836823798 9.348367263059278e-06 4433988.097170826 130.909858181895 908742 39666 2918 WAVES_20210902 2902035236.212174 59669.09478612343 29.018677565986014 0.0005964142683129079 258995562.44219735 5323.0767845641685 196031 59396 170142 SYS_20211225 460618832.50192744 9058.25003467349 0.7349570996284894 1.4453219676304562e-05 9628258.970684946 189.34348967307434 110786 6665 107700 SNGLS_20210519 14742507.450471709 346.1067854553275 0.016285154274969512 3.8007167313602975e-07 551222.6458547007 12.864730032215647 9505 2136 1034837 MDT_20210722 12478675.775151674 387.77624193910185 0.020591161449188898 6.383761995740802e-07 1430252.9525165535 44.3413280261124 34081 314 701499 ZEC_20191118 281804330.6546243 33154.12782320229 35.83697676426825 0.004211362509610521 136822285.32953176 16078.595209251578 155 15327 216528 WPR_20190621 8253231.825883741 862.80656692728 0.01357536671301761 1.4195083747364854e-06 735661.6357103151 76.9244673045746 34860 None 1193640 TLM_20210617 172011863.96933755 4497.170902322203 0.13965668861184574 3.6466998989149692e-06 11603754.900339944 302.9959556016177 49268 None 11143 FET_20200423 5155718.506382764 725.2465209326126 0.015187624638186193 2.1348182704309207e-06 1560744.6715240143 219.38297262560536 16669 369 956265 MTH_20210725 6608086.454047603 193.7010368297313 0.019028208878946018 5.573381720597544e-07 206797.9549458454 6.057133118963168 21797 2057 970963 QTUM_20190625 399352514.2163983 36170.28339051945 4.160644495557767 0.0003767085689060381 487817405.02267027 44167.43529271712 178020 15324 453664 MATIC_20210610 9449924822.426798 251756.82445205052 1.5000433477493855 3.998141097374173e-05 2202132307.8584986 58694.541695174186 459046 41674 10681 XMR_20210203 2706166837.343155 75996.76776998142 151.14167123486624 0.0042557470703629115 495475898.66502976 13951.282177517054 342654 194034 56021 NKN_20200410 9823841.662286365 1347.924388955424 0.015108338151401645 2.072062646952352e-06 1817285.7559659586 249.2352167419744 12253 995 307809 MTH_20190123 5304512.855694835 1485.148344890339 0.017813647915592333 4.9874343673045445e-06 536325.8304738329 150.15957942207933 18715 2021 785552 EVX_20200223 6293843.820226045 652.3724809565399 0.2880564542682372 2.9841289905678413e-05 252123.96752750434 26.11885377215696 17863 2877 594950 QKC_20200117 10852066.624549584 1246.6391458066496 0.002912537240069692 3.3436055881314644e-07 1044120.8356093377 119.86553210713072 50983 9208 299608 CHESS_20211230 94728072.20696107 2037.7761224214544 1.7949380438336753 3.85741058244779e-05 15137320.088123506 325.30849127869845 27853 None 49485 STORJ_20211204 309193952.14130235 5758.635958966291 2.146555319944274 3.9965432744943674e-05 62196943.36324581 1158.007778243238 111771 14608 51870 WTC_20210125 10871185.053148566 337.63895094145767 0.37481442502516527 1.161786557793738e-05 3408471.336247344 105.65004750848513 54831 19080 903762 GXS_20210422 63037855.705042414 1163.4161152228412 0.8963250322732831 1.657159492927609e-05 11318311.415736422 209.25720616023023 None None 582398 DGB_20201106 274560628.0474745 17669.486765240694 0.020040302519132587 1.2862320955933071e-06 7372120.72438166 473.15943854817095 177701 23277 300681 EVX_20190816 9485403.98323318 921.8885937315395 0.45002788975843133 4.369402366371146e-05 776725.3036403389 75.41366784107984 18245 2914 816674 VET_20190227 251666541.30462223 66055.39766340748 0.004514473789321799 1.1851469334708692e-06 46660073.765802056 12249.277749682613 104448 54742 740363 VIBE_20190510 6559116.807893686 1064.0227885475308 0.032803409044204083 5.306562636450425e-06 423451.7221621446 68.5012062050682 20734 None 1402427 XVG_20190515 125845556.69062656 15756.16776411064 0.007862583601629015 9.837868820977633e-07 4194308.511647006 524.8027750540427 304732 53083 413203 SXP_20210111 78895192.77563056 2046.5659309772047 1.0308806966910322 2.6802685259022786e-05 148891666.93798482 3871.1525974242945 None None 116678 MATIC_20200308 73495744.42539056 8268.229754593209 0.026878879616722515 3.0199522922381705e-06 89597330.78645816 10066.627342556592 32383 1564 153243 SOL_20201201 90930509.95528531 4620.989429300836 1.9652469851002097 9.980508065964771e-05 10302108.662414199 523.1926540593449 92386 2655 83284 WPR_20210207 8231008.986431597 209.90768182519818 0.013556506627408498 3.4474322275813895e-07 652359.376392705 16.589559537367542 32546 None 7510517 CELO_20211028 2039415701.1479106 34845.87606596465 6.238535169337282 0.00010660879374180078 145352827.5871683 2483.8987351054852 66946 None 46485 BCD_20210310 207426368.54528624 3795.2547804392716 1.1035366168244451 2.0174188097298354e-05 3714927.837381761 67.9140608626964 28708 None 1565972 BQX_20190524 16885333.713877417 2146.5108970218666 0.14355603924574073 1.8249245635046514e-05 1979723.885026477 251.6680430669425 61026 5782 448340 STPT_20200411 8601374.198439978 1254.4567461224647 0.012366992908040395 1.803164158206166e-06 2811143.0237769014 409.87751685134674 11232 None 1339283 NAV_20210620 27227677.57463493 760.5231636921832 0.3815214160714387 1.0702130047642866e-05 637256.7843161479 17.875811664048477 52997 14108 660151 XLM_20200721 1935797614.6786363 211290.3939300546 0.09462254547052579 1.0328569707992961e-05 221087464.36767268 24132.90908556477 285059 109945 65501 XLM_20200626 1378404251.6885624 148965.93508936407 0.06770129881021794 7.316567162118143e-06 245189956.77128252 26497.996607462093 283129 109326 69025 ETH_20211221 471319155562.1543 9989546.532125695 3950.4823919860964 0.08382162876992831 21439121593.0351 454896.8741058666 1991327 1187324 3727 QTUM_20201208 269089044.24730587 14009.952767895198 2.613395421976712 0.0001361271763408205 191179099.5772629 9958.183435229595 None 15025 192926 KAVA_20211104 551002788.2366389 8738.01963505686 6.037449189508655 9.573312258316888e-05 47532512.1885701 753.7017162714504 139160 None 44034 ARPA_20210125 26078556.460705284 809.3484954338305 0.02653435412372494 8.224671699498417e-07 15359867.309468865 476.09926881651586 23186 None 1180898 OAX_20210916 11616368.58061395 241.0136509771251 0.20182748616899468 4.187468654386803e-06 316509.91719520756 6.566872442476579 14314 None 2915944 TOMO_20210724 246375296.63925964 7370.64115813696 2.947525919556884 8.81201737030297e-05 26728416.94464914 799.0812662042919 50555 2210 130894 STEEM_20211221 162967501.3793477 3456.864144065546 0.41262640923427885 8.752625074960232e-06 28291540.57591556 600.1197255249313 14964 3948 164208 GXS_20190812 96187414.71095718 8334.134563144273 1.479806006118206 0.00012821742240810353 6821819.631722279 591.0748609588763 None None 741400 BADGER_20210421 275791495.10500795 4881.652416191547 34.29305809306626 0.0006082062466994879 51661423.18187234 916.2437542702992 31266 None None XLM_20190626 2415748111.0058994 204612.61806301711 0.12457849394026813 1.0537197135280392e-05 549184883.1805406 46451.592042555356 273571 102480 69800 BCD_20200331 93170425.78686847 14504.066694561317 0.4923824190370236 7.680204907210146e-05 15727039.530573502 2453.11127100816 28893 None 840342 KAVA_20200417 10269479.334955277 1447.4904659919162 0.52438950440856 7.39868673711029e-05 10668837.577516135 1505.281597391635 21144 None 326778 NEBL_20210513 49687862.53413384 963.3502431100982 2.703140082161573 5.362969625867748e-05 1912192.526766835 37.93747319103557 40291 6068 523823 GXS_20190930 27803460.843965035 3450.0563071447036 0.42618766514096607 5.2930143246474676e-05 5322541.975151037 661.03018041814 None None 561908 ATM_20210111 0.0 0.0 5.566780350792304 0.00014480376363645468 1325956.0711059668 34.49092966016221 None None 231684 GTC_20210916 142716627.26681072 2961.6487034382135 10.032352646390033 0.0002081857456449901 20927655.82638275 434.2789559321309 None 1210 27336 DOCK_20210125 14225964.80504938 441.8096478214999 0.025601887586328555 7.935180627814345e-07 7486407.431831278 232.03755982709563 43320 14859 234839 DODO_20210616 182820219.6759111 4526.917264700972 1.4033627433575313 3.476925110103992e-05 28822024.13385643 714.0849356971844 92343 996 25674 DOGE_20211104 35494937228.64414 564056.020219649 0.2696882831292653 4.277101586198646e-06 2283948676.4764495 36222.1168587864 2408230 2207733 32889 QSP_20200418 5615865.819445959 791.7446852277404 0.007803819664977126 1.1085083245615047e-06 338408.451912861 48.0698686222752 54894 8291 395631 LUN_20190821 2720305.0378902378 253.08528679484513 1.006269628524781 9.361892654716772e-05 174705.48044533373 16.253834039667193 30996 2199 1281939 BNT_20200412 12597008.781974051 1830.327002517946 0.1805852960420973 2.6240972899511353e-05 4642627.081347658 674.6233170378476 736 5016 146407 QLC_20211104 8607298.694929272 136.63301563529419 0.0358637445622053 5.693042318137258e-07 440508.7613641599 6.992674776630127 None 5806 940522 SRM_20201018 64087872.8732447 5640.023119400075 1.282034777503239 0.00011281872137017204 22921635.162411507 2017.097832379441 26362 None 67635 HNT_20210421 1033295182.1234703 18288.880125525255 13.047186394448806 0.00023139902674823844 30481048.9401918 540.5981677418798 32354 16180 15835 ELF_20200321 26355961.795582578 4263.292767568452 0.057165511422965117 9.21951205696308e-06 46488627.42695073 7497.570657651007 None 33434 652715 SUSD_20210422 220732102.54255575 4073.5193159469 1.0138534650773798 1.8720521131415114e-05 26212978.240713567 484.01532368896113 114639 6068 27259 FLM_20210826 0.0 0.0 0.7391986163305522 1.5082376918494031e-05 36888866.90426054 752.668880128722 25214 None 69223 ZEN_20190220 28222107.07013959 7207.245000038599 4.826333717280318 0.0012325291469533857 912210.1407888387 232.95645360020043 24899 4251 306368 IOST_20200404 37804579.9521084 5621.757084003341 0.003150525702895005 4.682107392141795e-07 32033806.451109193 4760.656986399336 191762 52243 158956 PPT_20200309 12720696.345222065 1579.8576785020161 0.34565456395758004 4.2952518815930455e-05 5367741.421339948 667.0185741492141 24126 None 1098941 VIA_20200319 2021549.5819254615 375.21158193819645 0.08726585978583211 1.6197060706397358e-05 46271.65443486453 8.588293265044063 39478 2180 2066197 OST_20210310 14719789.978265133 268.8380129786247 0.021286167557829392 3.887644455951248e-07 636982.1995261996 11.63365979244496 None 738 625092 ERN_20210727 89012458.93894385 2376.2088971662765 7.839338570708922 0.00021010432260514165 13513716.733529685 362.18493110946997 None None 66091 ARK_20190312 88194655.66651088 22809.89516617174 0.6263490582405108 0.0001621955521860568 11184970.038492529 2896.3919841660927 62874 21770 156863 DGD_20190725 39196607.169427596 3987.413750410518 19.428008620304517 0.001981260623063367 1297619.9200864863 132.3307654230231 17163 3368 582962 BZRX_20210702 27708470.769207615 824.6398323282384 0.1966961390822836 5.847897273559345e-06 9607155.745999873 285.62665315047326 None None 110017 MKR_20210106 693892078.5770162 20396.226722200106 769.1955926690183 0.022572883845117762 102863774.49691983 3018.6496850983335 80805 18578 39675 LOOM_20191012 14561286.261245156 1761.2320459940238 0.0241712157937217 2.923582373340363e-06 3318001.9976823796 401.32247537386763 21017 None 364132 BQX_20190117 10684523.593071826 2968.6993437035926 0.11754894270320114 3.266162704094013e-05 851342.7579530972 236.55031687079733 60709 5818 333871 SNGLS_20190511 7877719.999072775 1236.535054433701 0.013361790762528636 2.09734830253167e-06 444630.618893216 69.79193809893295 None 2179 None MDT_20210105 13685786.923668627 437.4371333018767 0.022838964823770225 7.299990388433108e-07 3258185.378730676 104.14098069678128 13535 71 1369225 KNC_20190130 18284959.422398627 5353.977836920859 0.11673937697005178 3.4177220550350655e-05 2582164.8115826175 755.9678538069778 92564 6539 184528 XVS_20211028 303844105.6318591 5191.430842827114 26.6977212053951 0.0004558716865047106 31354760.467216294 535.3920442937514 129728 None 26919 WNXM_20200914 88277125.66162877 8552.083021455186 51.16617972574438 0.004954500637916314 45759884.8528945 4431.00071003678 None None 105276 DNT_20200316 2531429.3956501656 468.43623797876995 0.0033690266446838404 6.26958390375527e-07 139129.33472339198 25.89124781480662 58961 6091 656002 WAN_20210420 295129634.7414537 5267.334918584603 1.7869606344313784 3.193279297793098e-05 16029889.202159856 286.4523837228372 116664 16267 185285 SUSD_20210513 193456951.92940575 3750.7510318944405 0.9978429261498003 1.989229178916761e-05 78738618.6837377 1569.6774881959493 124196 6436 31416 STPT_20211104 178716364.94307187 2834.339108500635 0.13552937552633984 2.1490284909444243e-06 44740628.6618947 709.4320720048628 32895 None 575354 WABI_20210610 14794813.375032678 394.78289997766893 0.25046129056804484 6.674407081645144e-06 1360644.712002077 36.25908291374246 45221 7867 291805 DNT_20210718 87746487.404376 2776.2382148864335 0.11635622188663554 3.68842391061492e-06 19583159.251579717 620.7746492429101 70098 10253 228003 TNB_20190819 8293860.743991301 803.8243444602651 0.0030003722904445255 2.9079006315009375e-07 245332.40843644695 23.777124848539867 15627 1467 1174424 REP_20201231 95139984.91529511 3294.6584930256536 16.81614220353173 0.0005831202073222465 12474444.59837225 432.56655613348687 136771 10448 134871 DGD_20191102 24850284.498655956 2690.0900499507966 12.424971875249758 0.0013451121917346012 2672338.3671455043 289.3040687881073 17339 3353 548694 CFX_20210603 374285819.946245 9933.569131061953 0.44615483790035304 1.1846597421360898e-05 9129020.027439885 242.39975884958517 34065 None 132746 POLY_20200316 10386689.771750895 1922.5417436698308 0.017127566314172 3.1873512856681747e-06 3707846.558227939 690.0110195252493 34976 5005 422167 FUEL_20190920 5121377.539663469 499.6469188351501 0.005226319112878732 5.09885127853844e-07 3488388.1918794876 340.33077980969114 1 1504 None DNT_20191118 4753797.657468455 559.1428841569538 0.0063856402039990465 7.504049778494862e-07 162737.20904960422 19.123973141436593 59733 6212 380353 BTS_20200511 49977872.55680104 5708.478731345862 0.018440817287247523 2.106297385570867e-06 26326820.88056423 3007.0312572031203 13173 6993 125350 CTXC_20210511 4027785.267667234 72.08512356517363 0.4011287754048938 7.1789868175756675e-06 42941788.298045926 768.527592675506 19810 20539 375335 FIO_20211207 67835645.18709046 1344.237182104808 0.18487811441598437 3.6631726004198823e-06 31100948.338258587 616.2337935978701 79449 549 428275 ALGO_20200730 247688303.62360615 22305.614720746973 0.3074538655453216 2.7720465866873123e-05 78361138.46677768 7065.1486534568385 21499 984 270923 FRONT_20210421 81728876.09137234 1446.6434698871271 2.1799907931044222 3.866333572570952e-05 46806858.91520488 830.1453869570541 58708 None 149576 SCRT_20211011 778192214.3875283 14222.648527790156 5.214168868989518 9.526428205992968e-05 37865260.737095036 691.8086026297922 None None 197630 CELO_20210703 432245692.3449221 12781.446331823628 3.441011383755947 0.00010162065424618089 125520300.25848666 3706.8912627431055 33725 None 78561 BNB_20200404 2014757335.7077563 299510.6757253216 13.323786842399462 0.0019803047532218157 361905470.712815 53789.74704015151 None 61185 1688 MITH_20210603 31999902.531163793 850.4057932472921 0.05192786096584611 1.3790892173300686e-06 8699546.498587344 231.0407274382879 32008 2723 247942 LEND_20200605 71877486.43475209 7364.253980758292 0.059820495440217517 6.1190533131651426e-06 2357128.838828545 241.1112934563564 45186 5719 77491 ETH_20200806 44844619093.01642 3828098.352704654 400.18436250317995 0.034161179866396794 10578439440.459143 903013.7264007637 476578 475049 14669 NEO_20190205 459619219.35793567 132621.23601684743 7.065784907159143 0.002039168634827953 100327981.84641461 28954.415746438604 316079 97863 145826 SYS_20200109 12321026.193748454 1531.0643029328246 0.021417572801338963 2.66194271525332e-06 402258.93220895 49.99587227607093 59323 4540 919572 TNB_20200313 2743311.1645368184 570.0375675226555 0.0008833688294240086 1.8540007805178013e-07 507150.3855577206 106.43993531863728 15161 1446 1374605 DOT_20200913 4663414090.094169 447039.1310623167 5.139290011153086 0.0004921797311111007 317307477.3197743 30387.915164909773 61305 4637 45901 QSP_20190830 0.0 0.0 0.011556332030154787 1.2184656273373739e-06 1329035.4530650305 140.12958548152784 56507 8538 585298 FTT_20210718 2821086172.4290056 89248.1880815382 26.405766632595146 0.0008370680543330393 73724902.04426782 2337.094058610336 152654 None 2587 NAV_20190528 14226723.724621871 1613.187211709439 0.2176904123383242 2.4735904620748975e-05 252508.18816623391 28.692207393731376 48545 11279 1031140 STEEM_20210616 171045045.9978066 4235.197963973628 0.43436579233838696 1.0755264337696527e-05 1403601.7834553095 34.75436710762828 13872 3946 208449 IOST_20210828 1052904946.9043694 21465.365721691 0.04645742371943171 9.470564073776631e-07 245044451.30811378 4995.34625736521 253294 53665 317836 NXS_20210819 46012610.98352277 1020.4918303496981 0.6750184697788659 1.4970913821673074e-05 400157.3166003776 8.874898940022698 26142 3975 554016 CRV_20210204 559807367.7808869 14936.422666169274 2.634607953305367 7.02383807800888e-05 255011088.49810058 6798.569750995683 65605 None 29016 STEEM_20200323 81412797.6037763 13962.975819026511 0.1978066860578888 3.391173435897428e-05 10056205.384676669 1724.0234516877774 11096 3839 219600 FIO_20210826 81992898.07722932 1672.780263808679 0.23422241156983528 4.779000685351911e-06 11992937.595729722 244.7001403718633 78105 517 401470 NXS_20190923 13212846.399164163 1314.3734909811428 0.22104333693826383 2.2004977710363087e-05 180949.41784615518 18.013607474266063 22136 3536 436035 TOMO_20210117 104005732.93611275 2866.3026642513123 1.3633373719055966 3.767220329515521e-05 21939463.178204782 606.2387300955861 None 1718 196124 BTG_20210626 696985693.5242617 21920.71627744524 39.927887479854235 0.0012559753239740718 59519790.132320315 1872.2600270807686 99714 None 159409 BTG_20191026 136357789.32802463 15749.65253754786 7.784771363275263 0.0008991659696932977 11115481.809572086 1283.873669952854 75081 None 318337 MATIC_20200927 71945074.90396686 6700.335055364006 0.018912307088466213 1.7607439595255865e-06 6891469.90068613 641.5988246767398 53797 2332 56641 MDA_20210509 34514848.82313849 588.4746032235809 1.7611256422319899 2.998043519219842e-05 17420364.68590089 296.55471589648005 None 383 1280564 GO_20190221 13413530.726883937 3381.389338187709 0.019477225764246923 4.9075807322404415e-06 1407887.6657182784 354.7385271942059 7872 628 747955 KMD_20190613 187507655.67159498 23068.521043216828 1.639487194326572 0.00020152785158325282 1002790.4266450302 123.26427493264808 97177 8402 375668 NAV_20210105 9446331.40617349 301.9319351954621 0.13295426107979672 4.249600783016235e-06 139806.4515727968 4.468616509537048 48268 13639 819464 CLV_20210729 153667740.07211414 3840.8552557855432 1.1930658521049695 2.9807644102745323e-05 11057786.382963976 276.268539985481 59696 None 82477 SOL_20210201 1108554251.4633815 33543.49295974758 4.263968588843047 0.0001286188527356087 97446415.859447 2939.3852111935535 109726 3242 80032 SUN_20210219 0.0 0.0 0.0003732635033977939 7.2e-09 0.03732635033977939 7.2e-07 42 None None OMG_20190803 215487169.8673913 20474.242647404364 1.5366990063336783 0.000146001917632982 80049967.09952839 7605.55492963627 289450 40829 None SNM_20210106 4013689.013699012 118.15277944029155 0.009213306685493286 2.700008734883508e-07 392033.5870531115 11.488753664064562 28798 9498 None KMD_20190104 82488880.74093704 21876.250911160896 0.7405935679008245 0.0001963776256218415 535884.1783804145 142.09637663603047 94706 8209 230547 TFUEL_20190719 0.0 0.0 0.0071595991673981535 6.710284770987459e-07 1780830.343004467 166.90709145827662 70189 4017 240889 PNT_20210127 13961275.253014557 428.6811758168591 0.45183930333048467 1.38676734845953e-05 2517001.3259855066 77.25081083424523 7698 117 1091126 PPT_20190130 44197832.76459691 12943.323478333305 1.1944024584840913 0.0003496794081740226 1081254.1367194809 316.5535234192736 23401 None 568111 FUN_20190810 13725704.790105801 1157.1140825281866 0.0022817778560778983 1.9235721222315825e-07 149912.66256364036 12.637856823301739 36040 17462 379326 CHZ_20191102 42371481.84736451 4580.541841111183 0.011706014746247656 1.2654712084653482e-06 2654522.0204765555 286.9653987260811 12868 None 336673 MBOX_20211125 635383327.2667425 11106.660056558561 7.347157635894809 0.00012844917676494946 272756626.04428756 4768.560279883931 199876 7566 6825 CND_20210202 29002088.41759447 868.712393143916 0.01602269522904579 4.797469411492266e-07 823862.2449814704 24.667846845248487 34023 5903 421392 AUDIO_20210206 41562277.34226507 1096.7516560784861 0.274749066937073 7.199627326089542e-06 7312170.354535439 191.61084725209528 25464 2517 56398 FIS_20210902 59101926.62669619 1215.207754264097 2.1936269643410227 4.50851151956849e-05 14155252.062605774 290.92967046849446 26088 None 334675 POA_20210314 25955078.24995053 422.4897277684235 0.0908037385754678 1.4799178486822532e-06 1879034.4130629017 30.62447218369548 None None 413017 VIA_20190520 16373093.380108451 2000.7728369207493 0.7071557841044687 8.64221515695321e-05 413992.81908049557 50.594438967336416 41268 2237 1806760 ARK_20190712 52485124.3214642 4612.350347975039 0.36765138060674346 3.23089064796505e-05 681677.2528419913 59.90524658177496 63500 21863 202264 MATIC_20190729 25550071.093156237 2679.6597339161362 0.01175807216250973 1.233410550912622e-06 5276318.936049708 553.4808220053212 21057 1038 191906 IOST_20200526 53315927.57933927 5999.175603153182 0.004583786539810982 5.155483508476317e-07 103112800.23165907 11597.318864875684 193331 52192 468295 LTO_20200301 9150477.724110736 1068.220795904541 0.04352630513796675 5.089064890282753e-06 831686.4179625517 97.24018925939924 14291 407 867701 WAN_20220105 133224405.11867948 2879.745550438323 0.6864690732192487 1.492242420228478e-05 2685119.3263697466 58.36896545672232 131669 17421 242413 ADX_20190513 11430560.01546853 1642.6672021321187 0.12418397575368927 1.784627732367443e-05 420302.3618297628 60.40096931577314 54617 3917 1002486 OAX_20201124 4027915.7814946906 219.94023667853057 0.07222174682193794 3.940016467530868e-06 230327.3490746471 12.565377995 12750 None 1870485 THETA_20191026 97203150.31891708 11227.19758528192 0.09720315031891708 1.1227197585281916e-05 4375419.182532498 505.3714362091502 None 4025 413739 LUNA_20210703 2396496512.032218 70864.0759073192 5.740214707549081 0.00016953735428210554 91010759.36481471 2688.004567777593 86382 None 21739 DUSK_20201226 13937029.781370487 564.3464301203292 0.04619460148136396 1.8734015380915456e-06 644990.1483441531 26.157288886869146 18470 13344 1144498 DIA_20210115 34155037.37848725 874.5169247562714 1.3393912498673395 3.414288453773557e-05 11464299.349822937 292.24041074317176 21654 197 308409 ENG_20190714 44507068.35756313 3910.4416739614044 0.5676272931941894 4.9844206525367384e-05 1926810.6687959987 169.19614342415508 61862 3480 328066 GAS_20200310 20191617.488650575 2553.1106577850996 1.4571966488879746 0.00018411962711370998 4212060.0924907485 532.2019743881223 322810 98974 240012 LUNA_20210204 1023237028.5316353 27303.732809767687 2.1177429249501936 5.6459126953394245e-05 315201229.41915 8403.27974560948 21951 None 115872 LINK_20210128 8410355913.904003 278017.0761477341 21.05700171187247 0.0006925023642229408 2030579396.6692612 66779.73683893541 132680 30043 44259 REQ_20200229 10512927.893414106 1202.8319167868945 0.013519742166175516 1.5516588517565421e-06 101837.82357685467 11.68791227335572 39815 28332 818245 WRX_20210124 22244989.63307003 695.0242577483351 0.09355040808474378 2.9190557777413526e-06 1307636.6670767583 40.80222038966546 51996 None 5221 ATOM_20210909 5739984626.537423 123897.42628808219 20.444984989510086 0.00044261488270492725 678949960.2111942 14698.634269263592 184120 35795 59205 RCN_20201031 18877691.450413134 1389.7831036722403 0.03679176060639724 2.709714974882596e-06 308395.2683158197 22.71332665153867 None 1131 1664335 FTM_20200629 14375676.124830384 1576.2518432771092 0.006010293690318856 6.587983671941814e-07 1490491.601109225 163.37528309291412 22413 2404 327499 SOL_20200903 137747076.79202124 12071.876031658836 4.176224469342381 0.00036598564250541355 23121094.981106814 2026.2294003132347 85073 2333 84125 PERL_20210703 0.0 0.0 0.06871758319067181 2.029575171027237e-06 18504419.34808753 546.5283893781146 250 681 5749080 BEAM_20210128 27007574.405069757 892.3169010929118 0.3374107935929781 1.1122183759198133e-05 7228507.633613048 238.27569162708588 16157 1641 289835 RIF_20211204 188701040.4265748 3514.323974531171 0.23657251221718667 4.409436128294505e-06 2763704.752948538 51.512238135268866 49229 3555 382730 QSP_20190312 0.0 0.0 0.017965410506094844 4.64787742583503e-06 310377.4069552586 80.2985349423077 56575 8550 1028822 SNT_20190421 93185458.04533717 17546.50153540605 0.026430858449673446 4.976356478329112e-06 27954727.7023546 5263.267955008754 111343 5761 304200 NEO_20200730 823675304.5243891 74263.70497556451 11.678368134473118 0.0010529378275282084 200640693.010599 18090.042459675 320044 99895 192818 DGD_20190314 32554612.952175904 8419.88269273323 16.275031632986625 0.004209988442556195 678651.0240258856 175.5519148661463 16104 3295 568878 HARD_20211207 79006457.08908716 1565.5989849084544 0.8409007468718521 1.6662135226066324e-05 9844430.93515377 195.0637338299328 39359 None 43021 BCD_20200217 146455857.54373834 14691.293200193375 0.7807893687166786 7.848362763790962e-05 11362159.472720481 1142.1050656532755 28357 None 1333183 WTC_20190901 33685706.21486501 3509.197800587747 1.154546100624252 0.00012030699408504217 116177984.20939827 12106.077056199798 55947 19954 440674 AGIX_20210724 191481261.0570525 5830.0 0.1863087240971453 5.5715256069208365e-06 702315.7801479669 21.00261473101322 None None 182415 VIDT_20210620 21437197.18036354 601.3437893396108 0.4624159821899853 1.2988926943885188e-05 1637966.7262343217 46.00928809340181 28365 1613 730445 SC_20211011 972038963.4606403 17764.55167346769 0.0198059849757469 3.618610435000169e-07 54476384.51649642 995.29921745304 141154 49088 134671 MDA_20210124 12860936.525848186 401.89962292022 0.6538208094941867 2.040173643393555e-05 2134853.8528513163 66.61569194247502 None 369 3273620 OMG_20191220 88568740.61185357 12402.726229226417 0.6320361629778386 8.84505715125595e-05 65908753.13079696 9223.628683891613 284640 42548 None QSP_20190701 0.0 0.0 0.01993450315742485 1.8481680985557362e-06 179063.01683428296 16.60129438545893 56868 8595 721105 SC_20190608 132566160.38676012 16512.298125837693 0.003234020574368347 4.0282611877168287e-07 6345690.697353766 790.4123971257845 109545 30907 231411 WING_20210428 67558485.85628265 1226.331024652599 43.61143224455259 0.0007914159440888317 12973433.806006374 235.42869002971062 9658 None 321336 CTSI_20210218 63391288.5834851 1215.9703291136493 0.2283842281928634 4.3801688985418195e-06 19661513.74101358 377.08712054281614 None 517 258951 SNT_20190613 106104368.96677265 13062.196061187147 0.030108375523662936 3.70273471365498e-06 31865436.264827613 3918.8184341199917 111522 5747 342560 VET_20200207 422342925.8253893 43364.455073130535 0.006740042973068229 6.921420211425253e-07 75668777.08564875 7770.505398662532 118523 60148 353991 ENJ_20200309 80922071.60277614 10016.971852045075 0.0871885639593561 1.0838185184191714e-05 7419325.93846803 922.2772438421904 53738 15210 23333 COS_20210421 95484320.58372726 1690.1219673524893 0.03160778657901994 5.606805082283415e-07 13097697.940287827 232.33591252657664 23865 None 214516 PROM_20211125 264481883.94004232 4626.031540089553 16.10284975118035 0.00028152353557837846 6159615.552620258 107.68756927947572 18072 None 591472 MTH_20210107 3013949.2939934507 82.35437056730883 0.008736714735721745 2.3696213738724882e-07 273676.71344925504 7.42281520385428 18939 1882 1263562 LINK_20210110 7150451896.821403 176704.171536694 17.684851113950348 0.00043872168872003965 1890999511.3881447 46911.477719512455 None 27188 46948 LUN_20200707 3306346.16748914 353.8768548421182 1.2230524457337992 0.0001309027944681049 942152.5256967843 100.83819288296918 28421 2120 1752609 RUNE_20201229 227576964.83491948 8386.397921372198 1.0373993824010357 3.8220117499249815e-05 21507588.61603754 792.3877515021564 25380 2006 305720 CTXC_20200117 1605214.906303391 184.36621996145655 0.07535493036819965 8.652787471721316e-06 4243400.474314063 487.257333823189 17106 20063 482146 BTS_20190401 161453901.09875664 39345.76699418553 0.05969875630107436 1.4548145260813964e-05 15149943.146448648 3691.9290659266453 13805 7211 195741 DOGE_20190801 345271427.06775755 34348.37991093793 0.002868413561569463 2.8502828318235754e-07 48482775.53765126 4817.632457382208 137828 138141 127721 STMX_20210804 201235758.8341406 5237.699228509619 0.021656379288727958 5.638349556018511e-07 11623442.950159922 302.6223059897755 69341 4685 91821 ROSE_20210725 97242627.21711062 2846.212856183391 0.0647656059368543 1.892939012299885e-06 3713367.618736793 108.53258192892329 None 1669 227884 SANTOS_20220112 0.0 0.0 3.7920539725784574 8.864176486747058e-05 66640891.6798313 1557.774834841163 None None 517558 DOT_20211111 49245687240.40879 758300.4356700159 46.99648883017275 0.0007235093239541335 3042657593.4231935 46841.60866562834 None 34546 19767 WAN_20210602 155262834.03838223 4231.511737665667 0.8817868030889323 2.404363059985135e-05 3363200.1180702066 91.70418630556554 121739 16552 175005 YFI_20210702 1150105649.6344643 34207.19380450821 32284.979744676984 0.9598523179290018 206543797.95918438 6140.674232811605 131993 6708 17976 ZEN_20190810 43617491.37308349 3677.167891660978 6.175154400605071 0.0005205694543258134 1394889.3547445408 117.59006222955352 26575 1764 272148 ATM_20210217 0.0 0.0 7.851368102178733 0.00015962116916075814 5853838.293090726 119.01066161474026 4844607 None 230170 LRC_20210711 293379637.4747551 8700.073083466414 0.235318015480079 6.9815823546722e-06 16175172.5304551 479.896530199847 82242 11071 263753 ARDR_20200629 48368749.65367644 5305.110840840416 0.048421208346013773 5.309225716913908e-06 3009372.385429437 329.9677518644131 63074 6304 1460932 LSK_20191011 120956593.06409486 14126.35963398079 0.8901610752984652 0.00010396072808675945 4401790.81888237 514.0792954389626 180920 30947 156630 HIVE_20210111 47658320.976988696 1239.7935401442614 0.12817156146302497 3.335596978265707e-06 8432494.09069941 219.4511909437461 None 97 154138 CHZ_20210107 114252960.53723325 3111.899803833579 0.021251507684752462 5.755408477229884e-07 68466116.44751792 1854.2235819239143 65323 None 151849 KMD_20201231 64481430.862634614 2232.965393290411 0.5227099479043121 1.8128401269864826e-05 1015180.16414086 35.20804119098519 97126 8413 274492 LTC_20200913 3326453506.9084573 318566.50447552366 50.828865050261186 0.004867758960674218 2076587851.7220533 198869.85697697193 135127 215309 123582 REN_20191011 48881397.71705476 5709.926050196863 0.059135750955422645 6.907755928601683e-06 16286891.402257008 1902.5017662706462 9819 878 276397 NEBL_20190712 15302704.029856848 1352.2887506450313 0.9966118028914955 8.789975244215834e-05 468719.7436806218 41.3404189221349 40538 6160 707671 AVA_20210909 204272407.41924033 4407.448630248345 3.88691258588427 8.395616995050113e-05 19832474.448594283 428.3756216674353 118805 10682 57789 BZRX_20210603 48861977.35868787 1298.5198493926464 0.34760539595069384 9.242890482181456e-06 14842039.698594453 394.6525257213118 None None 123219 UNI_20210105 1126797182.5802603 36015.68050925144 5.2688424324048215 0.0001684073661460037 559103874.0568565 17870.56873305787 159775 None 5230 AUCTION_20210616 91933225.16285595 2276.411793657914 20.118324534361648 0.0004984353113645266 2281062.6484302464 56.51376035168414 58409 None 44860 AUTO_20211021 47463585.664968066 716.0825457663124 1352.616807452735 0.02048220385577895 12450522.597701749 188.53391481757168 77223 None 20001 FIRO_20210131 49887391.506115936 1458.3142700204478 4.330818780703841 0.0001267638362214767 4644746.076148565 135.95254401098592 68192 173 276546 VIBE_20200806 3134838.607971326 267.6034778971024 0.01675827950434119 1.43002741244147e-06 177843.62525053555 15.1758573528 18797 None 1880270 XLM_20201226 3328917618.3229303 134800.6842816387 0.15226671594646 6.166679838040638e-06 845396524.1482338 34237.88099854761 302853 114886 34884 RLC_20200905 76282409.68073468 7272.188294131614 1.0891841188436575 0.0001038796755011442 6678379.994966926 636.9427672954149 33056 3836 240774 RSR_20201129 182558536.0159067 10313.43925036749 0.019410360275203355 1.0957451109263202e-06 39859656.85253011 2250.1397964857238 48023 None 135021 ENJ_20190221 31933492.579833724 8042.566322987031 0.03703384285572436 9.327108101865927e-06 3639286.6472923374 916.5675867128136 38132 11240 18087 AST_20210110 20442287.027205687 505.2510382133492 0.1179473811240962 2.927945706150532e-06 5899699.969079417 146.4551482823343 None 3464 211626 VIDT_20201115 24822169.22478558 1542.689847217534 0.5251475893535321 3.2646127374844916e-05 3633107.8331849747 225.85441406045706 22370 1087 None PAXG_20210221 135850304.95480928 2431.387139594463 1824.3562061940331 0.032543921684942224 10959353.076955138 195.49928190729946 15265 None 57778 POA_20210610 10772925.155523302 288.0765717631994 0.03749909136499204 9.990488721058682e-07 247149.991186086 6.584557410528257 19736 None 235395 ONE_20200308 24313788.474406894 2735.384847557829 0.004762986626716444 5.356398912255356e-07 15083216.142244501 1696.240801610814 None None 408073 RVN_20210731 607916465.2595489 14570.828474396649 0.06525405935648802 1.5621696087730092e-06 64164800.84739895 1536.092969928208 65486 46239 62766 UNFI_20210127 23495603.219797883 721.1005041120243 9.604052440115469 0.00029485844107467743 39384037.61555608 1209.1474934105738 13582 None 124475 TVK_20210602 43765549.688090436 1192.7802191525313 0.20044277818869646 5.464349125665555e-06 6409088.4300222965 174.7206712827358 48816 None 58369 SFP_20210408 288180165.60615224 5116.379354299966 2.645892338440858 4.705990234469173e-05 54168178.35849644 963.4364734745106 281075 None 30000 VIDT_20210603 23214438.89021651 617.2761377329159 0.5015781867743958 1.3337054897917908e-05 1189819.9642923 31.637528506682628 28088 1593 374024 CMT_20200605 9048766.396582993 927.0971657791528 0.011369563738362428 1.1631103856789187e-06 1749828.2823629982 179.00805125036797 284345 1636 1175745 BAND_20200523 25388034.33566112 2778.2595192895024 1.238801310282986 0.00013556431692577468 6122748.382197608 670.0236714727105 13832 1142 537280 REP_20200404 108667045.46175486 16149.392984515736 9.878822314704987 0.0014681266349559755 28969485.701212734 4305.257469366358 130750 10113 261589 APPC_20210725 5790240.139982559 169.7002791392308 0.05123763369092415 1.5e-06 66724.57823892911 1.953385825 24903 3127 778412 STEEM_20201229 60589532.3630291 2234.4139847300094 0.16219365667776567 5.9740120139039e-06 2316988.9443028434 85.34069749008376 11841 3836 222215 CND_20200321 6291802.859614418 1017.7506643243235 0.0032925837991805407 5.315036180899308e-07 44080.917531078696 7.11573906253297 34866 5967 433768 KMD_20190205 72449535.88097632 20913.226163559128 0.648606970586097 0.00018722637905386116 340626.9515599668 98.32510848765548 94891 8242 249846 SNGLS_20200518 4831894.820458082 497.97134555412714 0.007519998826205515 7.699893727724579e-07 400635.5418346619 41.02196246263011 8788 2123 2556875 SNT_20200607 105156251.39985819 10872.463022045478 0.027524328652205228 2.8458340944448292e-06 11515994.317515127 1190.6778789894934 110433 5700 170381 BRD_20210707 9861626.648355117 288.72091956015913 0.12061555498371856 3.531286996549065e-06 330178.01234422333 9.666691180046888 801 None None AMB_20190512 5426526.730500255 745.0767268430127 0.037530026213594504 5.152995865947846e-06 735639.2116989511 101.00567996248043 20694 5693 611574 ARPA_20200105 0.0 0.0 0.01019598105664745 1.3866009612089022e-06 3984701.074600053 541.898843227875 11838 None 827154 BQX_20210207 508845378.0783817 12935.153113573728 2.2723331183929454 5.778564227092384e-05 12336106.396839703 313.7083315354664 37020 709 65097 NBS_20210729 0.0 0.0 0.01254702773379696 3.1347585430966605e-07 2164801.5800781334 54.08556027161559 None None 1815973 PNT_20210202 32306653.022533666 967.6954796348136 0.9549666605518223 2.8601418333376653e-05 146666431.020898 4392.685234339022 None 140 785804 STX_20210106 479010289.8121018 14096.74669766505 0.5241155315068995 1.5380742072475898e-05 10305832.829600528 302.4359078587113 47037 None 83877 VITE_20210418 125117588.76378174 2076.3414274997226 0.20934289098896214 3.4740268810704936e-06 33920212.97674819 562.9029537911209 None 2131 143258 BCH_20210420 16742566610.558779 299179.35447136906 891.3744672910689 0.015939024467434317 11142299100.878878 199239.92049279474 None 505042 311242 BCH_20200404 4327340656.08308 643295.6967206193 235.67575051469714 0.03502831548446811 3541371644.5181704 526351.4932742147 None 290411 142295 WPR_20190213 6996017.9604551215 1925.3765687032933 0.012145858913436823 3.3425579671221596e-06 360261.1860408565 99.14440026250904 35066 None 633230 POE_20190708 12672934.71655739 1109.0559283148673 0.00503897680710699 4.40612285847024e-07 284854.1772863451 24.907884078805413 None 10842 780853 VIA_20200320 2355474.7099421956 381.12683637433327 0.10184062129265567 1.647687177994566e-05 102677.1124449139 16.612208321355897 39465 2180 2066197 GRS_20211021 78709411.39251298 1186.8002742555802 1.001082171075932 1.5104849324598645e-05 6292982.565542322 94.9517993639636 41842 107124 None XEM_20191026 369727980.60816395 42704.76327340912 0.04108088673880498 4.7449736975726765e-06 16812236.44472895 1941.8670350233099 215286 18264 149235 LTO_20210207 68684635.46136941 1750.8132599401022 0.2517998246934621 6.400844074609978e-06 9727524.135729939 247.2772381816086 1905 1462 777868 NULS_20200403 18725102.383935243 2759.3486012268745 0.19753799761554508 2.9045998673728255e-05 7658989.015004445 1126.178190815132 22785 5186 528791 XVG_20211204 377324592.08579636 7036.51902834374 0.022885048289731456 4.2677069327791233e-07 20493880.373264037 382.1791164310943 336006 55622 173593 BRD_20200229 13818036.220582096 1576.9481325501997 0.21950187871015983 2.5192198851981328e-05 736236.2906161632 84.4977325216352 180 None None LTC_20210617 11039755084.800686 288629.3084120016 165.46280612733372 0.004326038974058925 2981341232.282925 77947.41711257731 186566 336687 76492 FTT_20211111 8249673380.109404 127034.3846588744 59.01655394582116 0.00090855781166422 361221255.51723593 5560.988764959572 None None 944 IOST_20210704 571887976.5321807 16496.66110095076 0.02541316596054672 7.328844074103398e-07 135963549.48195505 3921.0213141560635 248501 53573 158729 ENG_20200208 36142219.34889563 3690.191613403785 0.4405322128305813 4.4935639103151805e-05 3694059.3003375 376.8053974510264 61259 3595 300165 NXS_20210825 48095578.36594649 1001.5079370619195 0.7055762109074111 1.4692414551067662e-05 656074.7685973266 13.661631908381654 26209 3988 554016 TNB_20190807 9318099.076261198 815.1116676708535 0.0032410247376956926 2.824738570578753e-07 589437.8796109076 51.37288506723572 15671 1474 836143 AE_20200319 32649620.076157518 6066.721077311011 0.09315205226643848 1.7289572911879575e-05 11584202.335823469 2150.0966005377645 25404 6340 484575 MTL_20200801 21106692.814822283 1862.3048588427712 0.32667823000928786 2.8830558233309452e-05 3095413.62160357 273.18166463459704 39793 None 438797 SC_20200701 125496052.27731308 13729.381079845989 0.0028240690846439874 3.089556998431447e-07 2226720.835365108 243.60526369073062 106663 30116 182860 RDN_20210722 11941997.718254287 371.43078076327794 0.23491129151297654 7.273838040695208e-06 102196.8578012821 3.1644429994265346 30295 4675 1078541 NMR_20201231 120237139.80072607 4164.084862922921 23.08764673242407 0.0008005922634482978 5501989.441551197 190.78818346150365 22109 1977 2586609 KLAY_20210731 2604455096.7760367 62397.09367659554 1.0437364872284023 2.4986850411990388e-05 70458091.71398024 1686.753140772653 41965 682 66707 MITH_20190524 25879354.985107042 3285.1251887422723 0.04839573700840781 6.153966205812406e-06 6529856.176271578 830.3316928639694 74 2055 460427 ARPA_20200330 0.0 0.0 0.006104133139534411 1.0341281941205946e-06 1087136.2844633774 184.17656642083597 14821 None 1589260 ENJ_20190213 26411722.204269696 7268.779376874723 0.030633202108210914 8.430301594561358e-06 2182780.845659808 600.7044506395737 38006 11210 17707 RENBTC_20210128 488060290.5647945 16145.844371976733 30458.963032703166 1.0019091860240026 54368032.66358332 1788.3678867600272 36979 2321 93933 ARK_20190414 91251322.03727406 17987.825093326097 0.6476330774003949 0.0001276320799175226 817648.477589822 161.13781009314644 63637 21729 183985 ENG_20190712 44999846.9659507 3962.984283372038 0.5768862865170032 5.069630107116985e-05 1058009.1475062342 92.97698962800165 61873 3480 328066 TNT_20200511 43170774.49340454 4939.889673815684 0.10196859629435141 1.1646865571357478e-05 5327989.859390979 608.5636550173838 17633 2567 722675 IOST_20200501 44507838.72518577 5143.358503139928 0.003683913635573619 4.273828420222884e-07 80233700.57485303 9308.173418214963 193672 52215 307791 ONG_20200330 0.0 0.0 0.07906725855214915 1.3395409278585479e-05 8364553.830754634 1417.1051842124705 84166 16533 298289 ONE_20210106 44309915.68988912 1304.112783873859 0.00506740353330528 1.4871926442159382e-07 7411765.1929917205 217.52210186590955 79540 1584 186131 LPT_20211021 670428933.0297502 10114.626961974147 27.505165337714114 0.00041660697114220363 74898153.51760107 1134.4448396507905 17379 1468 124862 PPT_20210616 61574775.41242761 1524.7298846545266 1.7065337027556489 4.227969660367444e-05 2553884.8678918146 63.2729826553223 24303 None 649684 LINK_20210729 8402001967.26247 210118.33469084898 19.072710279239576 0.00047651398208682134 949386579.8568289 23719.543425340726 407105 63006 26292 BTS_20210806 127829040.59852603 3118.4920622341906 0.04709563690817223 1.151035161597506e-06 18356731.523850914 448.64545471921065 6390 7181 184072 ARPA_20211104 205432592.68103573 3257.4524373450377 0.20914999727675515 3.316397653889744e-06 1211974411.8938978 19217.734394042174 53645 None 289530 NULS_20190801 39296217.89155683 3904.7833517639187 0.5368775752890182 5.3251675765833843e-05 3133653.0684360685 310.81997990535405 21314 5312 406668 LOOM_20210723 45402605.59421557 1402.6404424023074 0.05445413031165674 1.6819994550072576e-06 4398260.291035614 135.85510171885596 33758 None 286849 WAN_20200701 20833585.31775418 2277.338046073159 0.19627331311995688 2.145962355725073e-05 579070.3519333652 63.31289551351231 103813 16119 719982 AERGO_20220115 86565516.47706378 2008.7175769579844 0.23890643075492524 5.539152468759943e-06 3738297.431930529 86.67409823839601 25568 None 561562 LINA_20210508 247951990.91760814 4327.233762205725 0.1000794786654737 1.7460597991037097e-06 57401839.390649095 1001.4744829920598 None None 64342 STEEM_20191017 45326624.776509896 5661.309770775368 0.13974830690283999 1.7454607732636055e-05 888545.5733216637 110.9796231426448 10838 3786 220628 RCN_20190916 7003444.772323307 679.7729247533503 0.013809702803266658 1.3404063813923587e-06 1113470.3477961991 108.07638520100127 None 1110 2070155 WAVES_20200129 88531039.7172197 9502.334642108839 0.8895499202774834 9.535047199511621e-05 65242340.06124739 6993.298270394194 141316 56850 28931 AION_20190923 26924086.591757715 2680.6948639025572 0.07803467998465186 7.769517644664481e-06 2878141.6572548077 286.5619798054313 67348 72552 164304 SC_20211204 1066338786.686443 19885.566222182584 0.021560040277503245 4.0206134677279046e-07 87536366.4456516 1632.417608303788 144907 50638 96597 OMG_20190712 269887262.69190574 23828.94178761697 1.92860918723726 0.00016994745572696836 156524357.35220653 13792.797663383637 290039 40403 None OAX_20200331 1627565.0444326615 253.319344575996 0.03103404961351616 4.8407061445954645e-06 134049.86027045184 20.90916236760568 12022 None None NCASH_20190905 3087584.372543642 292.3316576029021 0.0010641587413546462 1.0075426329371491e-07 273786.98094349855 25.92207768669674 59712 58888 754232 FOR_20210804 16790441.72934584 437.01618540178856 0.029780273570841446 7.752143074739434e-07 6439578.810519884 167.62954229234776 29267 None 175113 QLC_20210916 9282980.034818845 192.62312306893668 0.03873270001527268 8.036148302212404e-07 2215029.3800148116 45.95678737742989 35136 5739 940522 RDN_20210110 15178020.47118621 375.0839207966957 0.22598860051496014 5.609979180636223e-06 4508186.296981018 111.91197790889811 None 4386 1792183 LINK_20191017 866988547.4988369 108261.61513164252 2.378954809210197 0.00029714059124960694 154591133.71496406 19309.02625647681 35693 11197 94194 QSP_20190811 0.0 0.0 0.011092266335797378 9.794785986819714e-07 136311.74519825666 12.03671397068781 56673 8564 645541 BRD_20190811 14514980.31278135 1280.683386614062 0.24112927754722177 2.1292399562291147e-05 642987.4051715501 56.7776127548522 169 None None FUEL_20190228 4222133.114651179 1106.0973697069155 0.007948880548614241 2.0848689435601694e-06 478869.2399333259 125.60002635054137 1 1511 None POWR_20210602 114358484.10796055 3116.71025974485 0.2650379373553553 7.225303073241924e-06 4205598.70474412 114.65047437895011 None 13918 164441 BNT_20210430 1252582496.5736377 23373.020422922993 6.70911960789471 0.00012518350982034155 224091238.14713794 4181.25318234526 None 7049 28639 TCT_20210217 15066774.18418047 306.1939645515739 0.026504354099262953 5.386014744572637e-07 19725781.03062948 400.8524300621839 None None 1023236 MTH_20210421 16862628.32960116 298.4772619518055 0.04851941964626961 8.588188771312213e-07 1215490.320363432 21.514808703583693 21403 2010 362958 STMX_20210112 21194435.00320994 598.3239303334283 0.002618022295612712 7.365016465248228e-08 2863089.554323818 80.5443931643068 21964 156 199234 XMR_20190714 1596370406.1977544 140258.37946524567 93.50085847810124 0.008202992954502974 498436499.076922 43728.70107019097 319942 159413 104259 SOL_20201229 70774348.23560144 2610.199775902908 1.5191282501080419 5.5968088279730555e-05 16248544.099952295 598.6327688518384 104775 2772 87194 SKY_20190321 15465346.396045763 3830.8871459278544 1.105440265057234 0.00027374321800512086 1324194.5410705374 327.9139419792125 15058 3579 436972 HOT_20190920 156127889.21181685 15243.856021057745 0.0008794689349852229 8.582104943636016e-08 7231268.140806546 705.6474605440865 24400 6668 466446 FUN_20210420 365470690.4809355 6522.851205446123 0.03497982287544377 6.25085645852337e-07 11241874.680030668 200.89108283881944 2594 196 255008 KMD_20211028 120987518.95231414 2067.466814885151 0.9426228810947442 1.6104403063412863e-05 3347042.8246201896 57.18312996559825 116174 9903 134961 DUSK_20200411 4634802.072241011 675.6220676172669 0.01763894409651824 2.5718387662990686e-06 284412.69123295066 41.46867187388691 17571 13336 1650258 REQ_20211011 142201686.9871825 2598.466035200043 0.18361275839706664 3.3558710313263334e-06 9031377.38867325 165.06553257090235 46784 28954 250453 FTM_20190729 51910459.6993586 5437.494971582759 0.02517143757637957 2.639559039231986e-06 16808656.1242672 1762.6105015068817 17812 2024 417127 AST_20200526 3337464.1819999395 375.55464562293724 0.019780797735041846 2.2247275794481857e-06 705068.4889323148 79.29838491542822 31635 3449 343534 VITE_20200526 6872064.391246486 773.2503889463956 0.013803783007855463 1.55254122401867e-06 4621406.226229187 519.779518054888 None None 618557 NULS_20200321 12708249.151593413 2055.663425097499 0.14919731637969832 2.410470546214227e-05 6038961.589392051 975.6702998532867 22715 5187 563630 MDA_20190908 10847885.213518819 1036.0706246330576 0.5526489943556058 5.278295054885726e-05 350922.192673564 33.51622626941165 None 364 3117488 ICX_20200629 159162045.14645562 17452.2881039807 0.2874772321364166 3.1498269640930375e-05 25966520.627599552 2845.0965048139637 112661 27763 138952 CTSI_20200713 9298546.03999901 1002.1940125785778 0.04667230689288543 5.023283810688346e-06 3957404.7995073795 425.9306810638086 None 118 226928 CAKE_20210930 4190948425.227649 100874.2304932082 18.506999448172493 0.00044523746598625167 220781054.35395047 5311.503761244918 1090054 None 615 DCR_20210509 2679992064.4120283 45622.71224492618 207.62696115364665 0.0035345272953558123 57687569.42749278 982.0414825284628 44700 11046 215733 SC_20190719 121009593.019923 11275.172753725528 0.0028977036687011875 2.715852709668704e-07 3623271.817100634 339.5886435395799 109599 30819 213896 ELF_20190513 59670778.3520497 8599.185996842714 0.16956942043515452 2.439290768920019e-05 17239654.94963952 2479.95959826397 None 32697 938169 GTO_20210805 22002557.171717398 553.1830970844052 0.03317931757651353 8.342661067565914e-07 4237659.935058992 106.5524041483781 13565 None 552838 VET_20200501 291781121.7774511 33718.440542935976 0.004524951577470129 5.246018197788859e-07 219179975.7570756 25410.70598716545 119929 61843 289943 SAND_20210902 891381409.9075176 18327.88985320816 1.0072886677826693 2.0702574485326016e-05 944345803.70202 19408.924140963616 172643 None 20279 ATOM_20190629 1421301891.2445264 114837.51956703274 5.907779975755154 0.00047719139103210466 133585393.07002722 10790.14448782151 26320 5628 113612 VIBE_20200324 1588499.5237108571 245.1444697620012 0.008488670929868141 1.3100102977842747e-06 395881.23310270644 61.094192053 19351 None 1312296 BAND_20210814 293293971.57995737 6148.626258566008 8.33660376149244 0.00017472641203804924 45162518.678781494 946.5587034128376 102108 5567 306752 TORN_20210909 69867344.38860004 1507.480795938474 62.252489153261315 0.0013446354770553488 8465612.44297811 182.8547417245439 24186 None 113088 STORM_20190922 9819047.087233948 982.8300256297515 0.0015617164423486686 1.563838467640036e-07 68451.55682356394 6.854456726443155 26393 2546 1924840 BLZ_20211230 68626440.80557314 1479.6753476876754 0.2122963746442972 4.562354032115528e-06 13068055.318793725 280.8389685198465 76791 None 208169 CHR_20201224 9202214.031270133 393.5562302369545 0.020456657444290084 8.773007492621504e-07 3185628.169868824 136.61831058703146 36186 None 874188 BEL_20201031 12626928.01253228 929.704191635922 0.7893394874791431 5.8134892003958215e-05 1704498.819629802 125.5364217448593 9923 None 193278 REQ_20210809 52536720.32110046 1194.2262582862854 0.06807589220804015 1.5474488815793985e-06 1005699.8565718648 22.86079649901216 43418 27808 309382 ATOM_20211007 9877777229.433323 177948.43838984874 35.225780112207076 0.0006349870859851511 912900209.2066877 16456.125082053422 None 40570 41751 XRP_20200127 10020588305.88766 1166035.3496453282 0.22943058906684347 2.6697452182992586e-05 1612338569.6517098 187618.1028918081 943840 208981 30183 LUNA_20201231 325111475.9915472 11259.347803703793 0.6693695745201359 2.3193674723772845e-05 45509253.7399991 1576.8969315999732 17317 None 167955 RUNE_20210509 4521880526.742772 77107.86506888462 19.142982276535605 0.00032602632111381055 112599290.30861531 1917.6913946340148 1437 4363 74862 OMG_20201018 456057214.09434986 40148.33521072047 3.257458723156533 0.00028665550616212114 147188024.54986817 12952.50723467653 286290 42818 95299 FRONT_20210805 33092734.575402603 830.0737033573367 0.7321393739807555 1.8408819563098756e-05 10541479.143498033 265.0536146221866 71174 None 254647 XRP_20190704 17341255103.139385 1447400.9292604248 0.4078721505653602 3.3978933276590706e-05 2074587322.6151896 172829.31456313372 931535 203172 39729 POE_20200217 5884216.013579785 590.2580078298116 0.0023213166367878394 2.3289125280906425e-07 262621.1449477854 26.3480502796356 None 10475 701965 EOS_20190117 2478513033.9215374 688655.8818527759 2.4111100748047094 0.0006703697325504211 799327666.323342 222239.98791790227 562 62086 76885 BTS_20190228 122801696.09605063 32170.154842126452 0.04564335455604007 1.197148478311047e-05 8907916.32200062 2336.396738042555 13792 7212 130894 FET_20200501 6884035.145680181 795.5241529715616 0.020148396338229343 2.3374812064189724e-06 2724035.695815008 316.02427000607537 16791 378 978980 VIBE_20201224 2538087.083955373 108.53841353384755 0.01352546632059732 5.800108103201495e-07 126510.05471251115 5.4251141963 18462 None 1358050 NEBL_20200411 6178152.113653681 901.0449282568449 0.38219161809590113 5.5692270239169754e-05 165239.3100236852 24.07837292146968 39447 5997 1168706 POWR_20200301 42609385.20395471 4972.914768517746 0.09891046853829372 1.156454220325215e-05 13101397.366078973 1531.8061374154574 82741 12849 280064 ENJ_20191015 55500813.1367151 6648.920003137047 0.06331085498212734 7.5847653599226925e-06 1575147.7562511137 188.70580948158218 49228 14049 29190 JST_20210614 87846041.47341791 2257.06597343044 0.06170374540310287 1.5806246573751127e-06 79394053.14044003 2033.7857487078725 None None 83188 THETA_20200625 245803719.6892605 26419.61885374723 0.24515700051333036 2.637538610211463e-05 28213691.60372307 3035.3895987307237 71608 4269 93022 VIBE_20200423 1544309.4325086672 217.07278592 0.008252526608150025 1.16e-06 18618.09088472081 2.61701494 19153 None 1007181 LSK_20210420 784931324.3173705 14027.920999279178 5.432336523669459 9.707304193001814e-05 40796213.806354605 729.0072248203032 193846 32017 143089 ETC_20190614 950267116.991784 115573.3598256811 8.551794068571693 0.0010394666081845502 767546184.6708889 93294.88324993014 227735 24641 668165 WAVES_20190726 141058760.2387011 14239.98626658682 1.4104620431496677 0.00014249318728937768 12543687.881638419 1267.2372683113288 143412 56859 48211 QTUM_20210722 556776650.355128 17301.896528482295 5.395865792569267 0.000167284992960309 134671623.02739418 4175.148600084797 249305 16751 143849 TFUEL_20210221 0.0 0.0 0.09139018228952432 1.6251387366372447e-06 198702067.8085672 3533.40391008978 86628 4035 42831 BTG_20190613 456655943.1862876 56158.950021321 26.260886400193343 0.0032253154496428875 28402975.77643473 3488.4030642199937 74104 None 422397 RIF_20210304 192894633.5196139 3794.6747681264087 0.27601423322942825 5.428482403311751e-06 2562282.131334223 50.39342826464417 42499 3123 698568 AERGO_20210902 67583386.19144586 1389.5969158164999 0.2560596715048193 5.262989742862545e-06 21021471.495884374 432.0703381853497 21989 None 453264 FXS_20210711 90021928.82438274 2670.393133012434 3.1571531501710974 9.362429982738082e-05 3113764.6638985043 92.33762906590023 12174 None 136180 DCR_20200207 233751337.39525634 24000.63727586037 21.046518520062673 0.002162209803122023 20147810.09617828 2069.881175828211 40874 9733 142873 AMB_20210523 4798511.115714022 127.66950838118919 0.03318259850072912 8.830253459486891e-07 633623.9266394476 16.861427745324736 25723 5636 534259 UNFI_20210112 13049584.316854872 367.28008914003067 5.311805069788107 0.00014943162197181582 9640881.170861201 271.21712707292494 None None 133722 DENT_20210813 420033503.92086035 9447.58354369348 0.004378700910643345 9.848107912662645e-08 128076449.88109069 2880.559154962677 106802 None 116639 MTH_20200404 2078290.9070145339 309.0537348630712 0.005983011243943831 8.892506120900846e-07 90851.40187594194 13.503177820232438 19149 1925 1281286 NKN_20200721 14629528.84101115 1596.798595260949 0.0225276282003173 2.45872082607819e-06 2282262.336383884 249.09173247816148 13045 1013 248862 SAND_20211011 668354824.8043369 12215.202862863798 0.7485976229440578 1.3683007104084698e-05 53736114.85467703 982.1987390379455 None None 14594 NANO_20200721 135119486.6326153 14753.064408990705 1.0140429316775121 0.00011071860215985294 8141270.213595784 888.9071948500446 None 52143 209112 XLM_20200308 1183429975.8615139 133087.14746077266 0.05841836731275043 6.569661089841623e-06 309459478.56560767 34801.45010439921 281639 106755 84088 DUSK_20210220 70012330.19350174 1254.216337440013 0.2282484866557901 4.079693582383755e-06 14374898.239123162 256.9356798496987 22046 13404 665690 XTZ_20191019 711102461.7987285 89350.59200030827 0.8783707668943563 0.00011036943697876132 13236367.246718632 1663.1819451707197 44911 16904 211690 PERL_20191030 7307058.598195886 776.6170829898857 0.0279629093692606 2.9719856238223565e-06 3731113.48757979 396.55443214098017 11107 374 274565 NEO_20200713 758850714.9252367 81774.30147477983 10.787088001925845 0.0011609878653021162 191630420.61780456 20624.7128901045 319766 99772 207094 THETA_20190806 129687417.8787272 10980.64593478816 0.1295687836586517 1.0969990034438434e-05 3256470.9448609403 275.7103432156628 None 4022 242693 BNB_20200526 2416857097.4160295 271946.7665328181 16.343638959558113 0.0018392607837579456 250808033.5711497 28225.13282019626 1157368 63682 1123 BRD_20190220 13221649.33210522 3377.1662664021133 0.22070728521801078 5.6374600450001114e-05 188017.5041268465 48.0247476302719 144 None None TRX_20200417 859658502.2318186 121077.97439932411 0.012984876128595467 1.8304531121683866e-06 1535380776.8512223 216439.6867184309 505196 72522 64875 HOT_20200414 60132099.764886364 8772.069214436917 0.00033767802938743856 4.931465971995952e-08 4993817.16008653 729.2994288082721 25074 6945 474054 FXS_20210718 90263702.47473612 2855.936265021294 3.1020663873384002 9.823193625722335e-05 2055846.0326397286 65.10168101405655 12404 None 120117 IOST_20190213 94476769.21664256 25990.88840008875 0.007053758798625349 1.941204639255242e-06 4594575.474664099 1264.433826198375 195164 48020 76980 DCR_20200725 180113464.5580676 18877.862128299148 15.257896665546038 0.0015999670934753747 6205944.2301120665 650.7650936281481 40576 9877 318539 RLC_20200306 43116698.72385136 4762.339329930298 0.6139647457397183 6.780662024316215e-05 1114653.7565392035 123.10300305794652 28421 3566 249120 VIA_20210804 9965275.44017982 259.3560727364857 0.4300056410515989 1.1191318793659477e-05 121641.73134609686 3.165845431184697 38172 2295 1212735 PIVX_20190712 31527336.650292713 2780.6665330282362 0.5220904226067439 4.588088479386252e-05 1146214.7457234866 100.72842638061142 63459 8631 286633 MTL_20210125 26436161.126110297 821.0164440118394 0.40967146068406485 1.2698305197365784e-05 5015357.6368127735 155.45759970646904 None 3355 402004 OGN_20211002 303647528.71222156 6305.813851588168 0.8551842041985392 1.7754457411323522e-05 42507693.034467004 882.5011289133291 122481 6430 103565 ONT_20210220 1032745488.0498903 18493.244980370604 1.2755629594090383 2.2804851255104435e-05 659270619.435206 11786.614139411728 100046 16958 213342 APPC_20190812 4216718.255193664 364.9507769998431 0.038834941926479336 3.3611072338911805e-06 126103.52741279047 10.914075242052245 25328 3328 1400807 LTO_20211104 85795209.06666842 1362.8106065942277 0.2921603611649651 4.6331942903860135e-06 8884658.280628597 140.8964167955565 16121 5292 292683 VIBE_20190916 3181764.5431371033 308.8363858747593 0.017007343114910818 1.65036910435504e-06 303640.26455684117 29.46483222435 20257 None 1366400 UMA_20210218 1529878540.8653176 29320.869566531583 27.781060211085617 0.0005328114680596727 126960101.03248894 2434.960987886696 25234 None 131876 REN_20210509 890333121.6292396 15182.812259874958 1.011183479405145 1.7222600325608765e-05 128790503.79817437 2193.5755654894742 None 1156 67818 WNXM_20201229 32039499.997810017 1180.7150554750901 17.56187973396549 0.0006470189960845546 16684975.712890217 614.7118872799483 None None 115937 ENJ_20210916 1638682135.0188394 34002.88155103864 1.7555506066467839 3.643019986880018e-05 84701223.70168349 1757.672206600834 294969 36082 29174 ETC_20190512 693874309.6900104 95030.99094238273 6.1966642312844 0.0008507566569288368 784857722.0049689 107755.2222963239 227675 24468 756071 SAND_20210804 419386707.5095498 10917.06629743474 0.596495109383661 1.552744443507083e-05 105100160.18992399 2735.8764083620317 150023 None 28891 ARPA_20200701 0.0 0.0 0.013752249319511262 1.5036024675835134e-06 4139758.333255981 452.6205641321457 18521 None 769985 VET_20200523 288534399.6387237 31520.09734582525 0.004469229872987832 4.890760849917575e-07 160661190.39218515 17581.450997192685 120171 62117 302162 AION_20191011 25460598.316586383 2974.0993582667634 0.07194523938683565 8.40405585250303e-06 2546477.625894837 297.45873914049935 67313 72557 168060 OM_20210624 33356303.402139187 989.378854754445 0.10640750887373553 3.157353056536434e-06 5897070.90164205 174.97952008260327 45226 None 70903 TCT_20210429 26188570.55943887 478.4358117747518 0.04526037931468928 8.265885418055447e-07 4609246.25093385 84.17848447296517 None None 341028 DLT_20210723 6263889.648850721 193.4848538357866 0.07637977506278058 2.35928958562414e-06 1197576.8771904022 36.99186927451965 15230 2597 None HARD_20210210 76399667.02035941 1639.744089941763 1.6047477213410526 3.44554787004693e-05 14602001.195716517 313.519025135485 15802 None None BTCB_20190701 0.0 0.0 10850.5119472442 1.0 12628.73496859886 1.16388379 None None 49193 BAKE_20211002 349765775.3972183 7262.232797202168 1.8205056948864649 3.779547221317688e-05 39993264.24130956 830.2991369883763 None None 20296 VIDT_20201030 15584476.760812398 1156.9677100521287 0.3346833420780383 2.486581837133383e-05 1040890.7204002609 77.33459166857685 19937 1075 None KLAY_20210804 2523607888.0331063 65679.37182429481 1.032452176572727 2.6880422594090567e-05 69279933.11749348 1803.7386348203167 42084 682 67261 BEL_20201208 20063873.404146627 1044.8966461142466 1.213134940434717 6.322198897600878e-05 20553105.93471149 1071.1159933794654 9978 None 175065 REN_20200707 151449955.4215819 16224.229457971178 0.1744481064266495 1.8684418344960598e-05 14031968.268113613 1502.9063410033968 15436 901 198757 STMX_20211007 304210834.63405424 5479.936158057891 0.03276535644771839 5.906349879471246e-07 40807131.50183438 735.5976627692392 72198 5288 100852 MBL_20200318 4000834.650434423 737.9496700892737 0.001131785346046848 2.104220561696484e-07 1499256.5414883401 278.7424711652997 None None 114904 SNGLS_20210527 10103340.31094474 258.1593451997541 0.011363272605985776 2.900573993303233e-07 662563.0368212486 16.912496779452265 9521 2138 1034837 MANA_20210618 915286897.808557 24090.54712834575 0.6924691798450975 1.814210781607197e-05 44931547.138435625 1177.1685964576295 141037 33365 14515 GO_20191015 7895672.920879286 945.9291602641198 0.010141284053825049 1.2149458417249765e-06 1803788.2885861972 216.09739643802098 10262 687 701298 BCD_20200506 105665018.53744377 11782.663186424572 0.5641980355232886 6.270156818560835e-05 12499506.651108492 1389.1198111741628 28739 None 681100 BNB_20190613 5023100993.491128 618379.154892973 34.9388429708274 0.004296786673905682 541231338.3070711 66560.75027669664 983764 52613 864 THETA_20190614 132421407.9315728 16104.69269417408 0.13266823448731188 1.6133123537449086e-05 9431122.461709552 1146.8718518759122 None 3998 222751 AION_20201208 40782349.67579298 2123.300136436856 0.08379713188566194 4.364029831010865e-06 2551815.9759319336 132.89477565189213 None 72517 621777 AION_20190803 32832216.103071943 3121.8585283032776 0.09785147877439596 9.296877558153407e-06 1008280.3630562001 95.79680549576673 67582 72597 199411 TOMO_20210422 183820295.13705748 3392.556603894204 2.2546041208831054 4.168397051501729e-05 21401620.01892244 395.6812149766401 45445 2073 79487 TOMO_20191012 22600810.119330816 2733.6292808800595 0.3487185086510266 4.2175364956210816e-05 1093661.0622712479 132.2715981383321 17474 1339 289065 CVC_20210708 185358421.7275862 5455.350313596271 0.27705194080572626 8.1542088211887e-06 25498622.798886385 750.4769479331699 103550 9839 166246 TVK_20210916 112573232.39655136 2335.877547501814 0.2587590404956047 5.370119910735972e-06 12655845.811746338 262.65134331419773 54382 None 113864 SUPER_20210513 176427948.47407818 3422.6734184670536 1.697851444336397 3.368499392724969e-05 14681512.809239283 291.2779392282796 109201 None 91414 DNT_20201228 37138858.64542529 1398.8439193296404 0.04965470530720976 1.886245457540748e-06 8589135.293740457 326.27758702393254 60175 6150 318484 OXT_20210620 172936448.75809512 4851.073325435829 0.29236804056415433 8.211751546743414e-06 7753522.705845289 217.77346781671957 None 4253 105017 IOTX_20210219 158854466.65029612 3073.5434131716816 0.026096244335093707 5.047042095818276e-07 38234454.6595545 739.4585201592528 33217 2178 483474 ZEC_20200425 397300407.738763 52985.30406734356 44.079734763321994 0.005881011634845852 584521584.3461835 77985.45651002391 72489 15722 144144 ELF_20190201 29746406.673326317 8671.377317886545 0.09907411032996775 2.8873812694176817e-05 5563055.34496487 1621.277420537874 85170 30315 921506 GVT_20190316 18233956.856280692 4646.660902113861 4.1101948235692305 0.0010473368934670875 1442653.6867608763 367.6089566306485 20945 5804 155921 NXS_20190818 13710730.78220338 1341.4336353968822 0.22963014939439286 2.246660743267451e-05 333069.55055864464 32.586935382454286 22192 3543 857246 ONG_20201130 0.0 0.0 0.27891645209388827 1.53506017687115e-05 63624625.557764925 3501.680457672918 93835 16701 254257 ANKR_20200323 4781875.397473289 819.8536176696199 0.001194455242777698 2.0484956106724463e-07 1647224.7347191086 282.4997135109215 None None 5425 NAV_20200404 5368733.443746172 798.3613442535399 0.0786325716868832 1.1685863880430148e-05 46730.3073025473 6.944755824631533 49383 13957 1202030 PSG_20211002 78368680.18061693 1627.1792139604809 25.272826439133432 0.000524688503920489 17433460.039360497 361.9356184097362 10400367 None 9531 KMD_20191102 63848573.80526391 6914.952747834951 0.5468425967511383 5.919417627217694e-05 1956736.340663908 211.8112168941834 98197 8401 265268 XZC_20190205 31923934.148316715 9212.597609967037 4.7425326178743745 0.0013687861978225998 939464.4173939641 271.1475136781803 58840 3926 286073 DLT_20200610 3483145.2351226723 356.32428179361403 0.042048162700387325 4.305886132319939e-06 141548.40357854337 14.495075857744 None 2563 4273653 BTG_20190325 229913811.95694998 57571.66381390795 13.127234036244065 0.003287130504724285 9576643.155811345 2398.0433169250796 73058 None 417963 XRP_20190811 12805122338.233112 1130139.1466648383 0.29846464639147163 2.6362686752691135e-05 1355558181.3267343 119733.29552235207 937363 204443 35107 DOCK_20190520 6423558.2196036205 784.8902060310145 0.012499146468709045 1.5278325141144805e-06 1584832.852212102 193.7219607041316 165 15280 233199 SYS_20191020 14325709.497387363 1803.2005936991075 0.025111460530093364 3.159003506222062e-06 912603.5532200905 114.80486453418801 60019 4579 999459 GO_20210120 9160005.014131628 252.94911030303774 0.008352552969383783 2.3099338783754762e-07 444165.86998332635 12.283595140951213 13524 686 751826 ARK_20190511 63718236.935723804 9999.525237755175 0.4505008305507488 7.071336238062093e-05 789402.0237740075 123.90936394697428 63611 21716 202158 CLV_20220105 151283282.46893218 3270.1017441775602 0.7062757122088938 1.5350181254177297e-05 8647408.390652683 187.94258938944256 103834 None 64325 MANA_20190302 53669673.149541505 14037.70718857076 0.04242614410472384 1.110556750647216e-05 5083305.124786888 1330.6179340731333 42886 6060 110020 VITE_20201115 9363383.990175137 581.8492361270497 0.01712000916074923 1.0638744184635376e-06 579029.9779614711 35.98217590262996 None None 740345 BTS_20190914 90901775.33921427 8778.200059202552 0.03353700401992953 3.239778044876352e-06 8347951.914699589 806.4379071206033 13579 7143 133075 BTS_20200913 86595250.58374012 8304.67423368585 0.03198439286300173 3.063227006320542e-06 32864710.260502968 3147.5372521867043 13327 6944 99740 RVN_20190702 208539172.82473215 19679.2348579006 0.05393737743869633 5.087988755090839e-06 30435723.610126354 2871.044660215103 26034 6729 214144 SNM_20210805 70834208.79866536 1776.66204128 0.1618692137506291 4.06e-06 486626.26507677307 12.2055491 32356 9710 None QLC_20210202 6520658.68856489 195.31617629237317 0.026949320151919674 8.06835204235717e-07 2841993.3287569406 85.08638640670175 29966 5590 940522 RVN_20190614 239092949.64533052 29060.422893467974 0.06381786663049623 7.753369131018214e-06 36827507.160562806 4474.252623396409 25361 6644 169696 HOT_20191026 171632220.22726566 19857.37254323647 0.0009720865017277357 1.1227909737660443e-07 16558435.5182001 1912.5522169558262 None 6701 551921 CDT_20200901 8006507.635603214 685.0119902146002 0.011879934182032962 1.01774345410011e-06 500444.9597640782 42.87267708162715 51 292 256475 IOST_20190530 183391135.11189073 21206.41808444495 0.01352187256406231 1.5637176340613732e-06 73076280.53017114 8450.802058314519 199694 49739 108380 NEBL_20190430 18960623.069782108 3642.3455059660523 1.257413979397094 0.0002414875020793913 197320.9519779204 37.89566887424224 40511 6183 627763 OMG_20190302 185967605.89098176 48614.92416267143 1.3248825469470977 0.0003465330075976082 58068322.547341965 15188.207063974485 288341 37058 None ADX_20190725 9649544.728104183 981.6341288859018 0.10459239331958636 1.0666290838448491e-05 500054.01259489835 50.995310117562425 54068 3873 831404 RCN_20210418 76177334.83098648 1263.6693091972938 0.14815608725607418 2.4582095376315814e-06 4149952.8424688317 68.85612226277209 19602 1153 909754 VIBE_20201111 3148517.13065178 205.8448832 0.017107605574188302 1.12e-06 175634.33799128057 11.49842143 18596 None 2184803 DCR_20190923 231125260.6752481 22991.706058194355 22.155093917788314 0.002205550977399943 11800316.812284674 1174.7275987878804 40573 9623 165659 SUPER_20210511 203846070.38960668 3650.936426535772 2.001913871561363 3.582817831843225e-05 15692478.19219992 280.84770025083185 None None 91414 QKC_20210107 36470236.1530252 996.3832092209989 0.005706698966990345 1.5451013359166038e-07 3944154.1273246165 106.78884319009782 63098 9211 114091 ZEN_20210111 227276948.2840959 5895.6785896231495 21.47561413509323 0.000558626271777212 97603823.540066 2538.8824604689817 81543 6360 350689 XMR_20190523 1424639935.1511428 185850.99064999085 83.71135439663568 0.010930751314075391 604313244.8339175 78909.22136778834 317465 157874 116319 DOGE_20210304 6527074840.471931 128824.72304994744 0.05075263290909236 1.0017035254488883e-06 1233795413.868452 24351.391147892293 634786 1196917 12918 SUN_20210117 0.0 0.0 0.00039144094053761996 1.06e-08 366.1195700560462 0.00991431156195353 40 None None SUN_20210620 0.0 0.0 0.00034225514691395216 9.5e-09 1.1599785218773206 3.2197604790455e-05 61 None 3515147 ONE_20210617 819342388.6982539 21424.009473972255 0.0804967740556919 2.1019227988982548e-06 34897330.05231585 911.2351956724563 182533 24815 20345 CRV_20211230 1876016451.9528136 40449.4565802018 4.84847873462571 0.00010410810151653106 797421600.664242 17122.494187826193 None None 9223 TNB_20190902 8237112.983661775 845.88048726688 0.002857940939728681 2.9345311806427514e-07 271179.86940074875 27.84472454475124 15587 1465 1259839 SC_20211021 941356182.8034109 14198.304429156027 0.01913214346727043 2.88675747785148e-07 44355904.1655061 669.2649898621444 141342 49337 125978 OCEAN_20210210 354543620.5398169 7620.793976213752 0.8453563762978957 1.8149811373249175e-05 121430199.08652928 2607.1078071101633 43189 1614 65645 COMP_20201229 36485.498188094534 1.345120989864387 1.9448417459139018e-07 7.17174e-12 67.04413079495113 0.0024722992274183162 1959 None 4212866 ARK_20200324 21709009.072058134 3369.7843681884683 0.15388165283702498 2.3738694128662926e-05 1052488.333675825 162.36307686126597 62619 21947 77737 PIVX_20190522 40258504.801744685 5058.607292604634 0.6715642383550076 8.43985355698767e-05 2642581.004571203 332.10518692432714 63055 8604 309234 TNB_20200807 8579200.373820757 729.1940877759563 0.002505978107634525 2.1278327482635062e-07 596204.4713539144 50.623881946258734 15897 1433 845361 POWR_20191113 19404895.22090324 2207.744550712701 0.04514063055658725 5.129340439894896e-06 29273195.297114577 3326.320048945785 83324 12931 276526 LRC_20200105 21060490.421122126 2864.1183324305744 0.021890714240289884 2.976998748409933e-06 1362282.098981827 185.26175341442178 33808 6822 1058807 ARDR_20210614 176743231.11993548 4527.516235963696 0.17692024070536244 4.5320505752244605e-06 12759738.187852431 326.8579025408107 71971 6939 None BAKE_20211104 412611222.6115117 6553.568970742235 2.1467310603207115 3.404592411913817e-05 87223234.20518656 1383.3104984897152 396488 None 21150 PERL_20220112 0.0 0.0 0.06745685989038086 1.5768486304099757e-06 1363400.4736265733 31.870386096120964 1643 732 870534 DAI_20200730 330149282.99283665 29362.36923053947 1.0271552405192916 9.158172114496582e-05 178430757.20223334 15908.983574399752 50156 15040 38426 GRS_20190314 30114035.725934245 7788.832831821358 0.4131896280486624 0.00010688345283649402 41492757.81527835 10733.302391808984 37923 107045 15350348 SCRT_20210106 48087066.191918015 1410.174615112335 0.6897159074741346 2.0240465772199055e-05 1324568.7202428954 38.87091417564157 63454 None 361970 BCD_20211230 256670256.88551474 5521.452180240268 1.3626165705828495 2.9280943826191797e-05 2007600.0767647966 43.14084118914225 36022 None 1761338 PNT_20201106 8568719.495808553 551.4442358431289 0.2895495884875129 1.8583949699507496e-05 1555481.0451711921 99.83430352291946 6450 100 413502 PAXG_20210702 286130572.19171214 8510.282459239756 1781.710648754859 0.052967669665298985 8419198.64946041 250.29054702164876 22929 None 39244 NAV_20210117 14349463.114791477 396.43927466990317 0.20284089848891276 5.60397960725408e-06 429467.2354245559 11.8650905573392 48209 13622 681902 FXS_20210708 77441996.75561431 2273.950579147163 2.708340307354893 7.971013675746591e-05 2454353.4285144918 72.23495766272987 12106 None 136180 XZC_20191213 29155991.754975088 4045.48067177301 3.2342277905556576 0.00044930554953092017 3792442.0501539786 526.8538178987859 62199 4066 168548 RDN_20190124 13141583.57936386 3701.923979289672 0.2626678750271135 7.395783212682025e-05 4241598.915290291 1194.2817921451608 24877 4458 608656 ETH_20190629 33044592666.437965 2669917.6862375904 309.949031472406 0.025035632688481302 13481294400.562168 1088929.7933095885 444681 440864 37001 ZEN_20191216 51743604.84001142 7271.201520636945 6.4827645386590955 0.000911755605581517 1840056.8899735447 258.7911644820107 42687 1934 45499 MTH_20200308 3420746.7000064678 384.84577178832245 0.009849594576461946 1.1073299568437897e-06 211811.79801323076 23.812711003709857 19245 1932 1066623 QSP_20190805 0.0 0.0 0.013901374766199395 1.269425403117408e-06 162236.829277197 14.814905422624005 56707 8564 645541 NAV_20190314 12104005.392691588 3129.7552792410784 0.1874245712414284 4.848256498489304e-05 850291.9950267785 219.9516137716947 47921 11400 735368 ADA_20191022 1220723254.8237329 148653.0693936062 0.039207768181643655 4.77081994437397e-06 51333971.333055876 6246.342131106677 154391 75460 134614 YFII_20210115 73341360.30477852 1877.8565562798783 1850.7459128256978 0.04717800270574597 98214573.2691038 2503.621578371602 13218 None 153054 XRP_20200422 8074284895.834148 1179509.6933309713 0.18313346135006744 2.6752547825889128e-05 1826836936.6230843 266868.4475071865 950106 212466 34710 ENJ_20190719 78162184.55114844 7282.828671919256 0.08899011697971364 8.340537127504764e-06 7457645.047303774 698.9626209275415 46986 12700 21300 ZRX_20191020 190411406.0350951 23963.90342162163 0.317004562131644 3.987686083486033e-05 25053126.281866446 3151.5004815775933 151264 15951 142278 RLC_20210212 130253470.9958124 2731.621822239682 1.8479831059877498 3.8722678822352055e-05 18087852.26998733 379.0132560018727 34352 3984 456276 DCR_20190629 338062140.4149291 27306.42368231904 33.797589776171094 0.002721204811365587 18834968.882058885 1516.4929890922613 40463 9504 389258 QTUM_20190329 215985528.59400174 53645.30477925038 2.6547936863874826 0.0006593807013643293 253090946.21020648 62861.11289052167 176209 15239 328111 REP_20210519 209552472.3339715 4911.165483295251 32.930252051060265 0.0007697423343718757 50535591.073156334 1181.2659004613183 149106 11118 147108 ARPA_20210104 21789087.43747949 651.8724888021649 0.02188963758843604 6.649807071741543e-07 15973551.993657874 485.25718426865274 22208 None 1160562 BTG_20191203 108213058.46895245 14801.372052776469 6.171204036589338 0.0008446711503841955 7253816.92102242 992.8516132392588 74618 None 285309 OAX_20190818 3835142.8386211516 375.2004576597457 0.07342646147997112 7.18347219670331e-06 117875.22924185381 11.531992892914483 12295 None None MTH_20200105 3321155.0876181214 451.93728467834615 0.009654754419654405 1.3129084536972517e-06 291305.9003055465 39.61343422101575 19263 1952 1221699 CVC_20190627 27275536.677711416 2100.3326309137415 0.07980473174570984 6.11966004928557e-06 7327239.200637112 561.8741148153612 88690 8166 458176 OST_20191017 7607212.493412954 950.0837661486686 0.01127522658337288 1.4083190989949903e-06 327198.7657948392 40.86838234505941 17966 757 847910 BTG_20191127 109281597.40823041 15246.278814330415 6.2170207791067265 0.0008686835157632464 9363790.008377498 1308.3710533318913 74732 None 376841 LRC_20200721 148271027.49654332 16183.635918654345 0.12460274290747955 1.3599450250549294e-05 23206320.96581527 2532.7950260871794 36834 6938 317120 UNI_20210902 16128419939.488716 331559.03316288366 31.046203646618423 0.0006381163046360436 877875674.6056006 18043.648356671645 614088 51480 2771 MANA_20190318 64415693.23271319 16175.748432668976 0.050120637871119346 1.2586667801838214e-05 2516951.043416301 632.0754883134838 43202 6108 116780 SKL_20210620 279031947.19503623 7842.864460030955 0.2820094283750223 7.92320789543343e-06 31530162.072841246 885.8570102401515 None 2234 129791 GAS_20190524 40979222.172613874 5201.951159558796 2.942439069787463 0.0003741583808298712 6176561.055173453 785.4069459686273 321466 97560 225000 IOST_20190510 154096593.2740491 24943.908066246884 0.011373638396974637 1.8421438292773232e-06 40113561.13538681 6497.0369671280705 197813 49463 105349 OGN_20210916 365145494.3634062 7576.81964574027 1.0308198524977847 2.1387151436048922e-05 45568676.43329638 945.4456870011802 121220 6296 104238 XEM_20200403 332515688.2539119 49031.3240125341 0.03702367926821459 5.430996559206283e-06 26292729.16849097 3856.8755042346506 211095 17994 203182 RIF_20220115 146494296.15691417 3399.340517912233 0.17909613680969028 4.152535045089604e-06 1811566.1389754128 42.003094051027254 55330 3575 330828 BRD_20210430 26395255.046013873 492.54582349470013 0.3269841477970975 6.099831246698756e-06 749284.2171130237 13.977764093445778 None None None ONG_20191203 0.0 0.0 0.11344400179051717 1.5527419759328142e-05 4467655.931260978 611.5014270480367 81312 16289 324525 SNGLS_20190524 10794804.296945773 1372.2657453651073 0.01827859557016102 2.3236262450270863e-06 1862506.7884405428 236.7670775662023 1 2179 None PIVX_20190207 36872355.807648435 10826.549806986886 0.6258953016910699 0.00018377688404470877 426034.8369063223 125.09337361951427 60751 8587 177643 KNC_20200721 319156257.26258576 34835.58963546326 1.6359564709272303 0.0001785736196927547 98763716.25971366 10780.601208056069 115884 8642 73639 THETA_20191020 82186114.98537575 10342.27683204449 0.08219169475715099 1.0339115473837083e-05 851374.4191829073 107.09668972529866 None 4024 413739 NAS_20210916 20695304.078449253 429.43042961418917 0.45514212934159626 9.443156941115862e-06 4281583.535141185 88.83305383600477 25601 4982 494994 BQX_20190615 14757926.5486591 1696.9511266651034 0.12329084210629197 1.4206309222582336e-05 1248756.0676820183 143.88915298163383 60755 5774 442313 FLOW_20211011 1284481788.8047266 23478.226842552987 19.14860686072619 0.0003499770692143489 92608378.67459291 1692.5935755515056 None None 50509 XTZ_20200314 1230177119.1625676 223444.61475961027 1.7745784877462385 0.0003189932768763142 529423167.6498451 95167.63122568194 57083 22422 104382 RSR_20210509 1053760971.7495229 17966.515597978734 0.07969602844843236 1.3571980918576197e-06 83634992.15375875 1424.2773946640891 71695 None 79462 ZIL_20200321 40334200.41658597 6524.387394980531 0.003888102162246845 6.270634841051806e-07 12294990.272649337 1982.9055708123462 68699 10571 233633 QLC_20200312 3007053.1232586144 379.12993586327445 0.012540012857850736 1.5797080266385445e-06 43811.24254249455 5.5190510796054 24545 5671 940522 BNB_20190523 4532588998.720383 591297.5867351795 31.346852330361315 0.004093168122435669 475978203.357405 62151.656837000075 971515 51479 924 ARK_20201101 43286261.039009124 3138.4983309185563 0.28439769748324106 2.0637343686791956e-05 971711.6878843893 70.51234326017905 63048 21693 111275 DOT_20210617 22887778579.919186 598381.6152304525 22.83454099821231 0.0005970109937395429 1132504108.432292 29609.415106798515 473572 26217 18773 LSK_20190803 179713009.1577147 17079.279089539174 1.3394387148983944 0.00012726019872531805 4334315.787864505 411.8037520990738 182505 30772 180876 LEND_20190826 4399893.851946785 435.6071756204149 0.003899377973126407 3.8605409191826033e-07 2520596.317383543 249.54916633019357 None 5823 628333 AVA_20200907 32922218.928119086 3197.1120360641285 0.8489031003261658 8.266526305431517e-05 1280215.8901481284 124.66603465666164 37693 8929 60068 POE_20190826 6854091.550749587 678.9256334564374 0.002722930958473915 2.6971738153072526e-07 705128.4290708977 69.84583760378081 None 10749 737221 AION_20211002 76638953.24776217 1591.733165857508 0.15457616113571027 3.209151731540527e-06 4334162.400533392 89.98143484905268 647 73613 599418 POLY_20210620 162953556.42543966 4571.001517520457 0.19291187702817444 5.418753619759702e-06 5212436.599488093 146.41353412946646 46886 5645 135189 ZRX_20210704 592867148.2542412 17101.82557420317 0.7024886873932408 2.0245286620480534e-05 70088548.11843474 2019.9083215652447 221721 19547 58387 LPT_20210710 382902767.6583673 11269.926829652311 16.046769410996184 0.0004721725889527037 5608339.680116798 165.02413655126688 13984 1175 101406 CHZ_20200423 31654522.39256292 4452.93365592429 0.006624720807405619 9.311907130358466e-07 1430998.697281706 201.1454876385904 20323 None 267652 AST_20220112 45821413.497947276 1070.9483282185784 0.26599778318016376 6.216959702026783e-06 2006734.7570575718 46.90185372271849 49911 3752 213893 ARK_20190811 35947232.850485906 3171.067709074908 0.251204773383622 2.2182094440155253e-05 360785.5041410413 31.85838396977443 None 21827 143377 POWR_20190622 50054487.393189386 4945.829483647635 0.11874272431643079 1.1731421272813603e-05 2476956.488865676 244.71579385257212 84697 13194 724138 JUV_20210711 17270340.585449263 513.2929605412851 7.862629218894317 0.0002332489616963022 3656219.1047866773 108.46363044518617 2549812 None 41859 MATIC_20210624 7404591527.159005 219627.04310320012 1.1758463602123723 3.490314989338266e-05 1676649092.794008 49768.69137378104 496707 45128 8165 MBL_20200506 4805981.669114103 535.8043128878268 0.0013635532208520615 1.5153708426627857e-07 2227496.06751511 247.5504836363579 None None 94095 UMA_20210506 1548921655.146395 27056.493952573597 25.852214915382685 0.0004510825230919996 70472154.31293951 1229.6337965337905 37073 None 112681 WABI_20210826 14821888.58959224 302.47758903156324 0.2508074291099837 5.118350877476109e-06 674001.7345461587 13.754685743068475 None 7884 850798 XVG_20211002 354492678.69103193 7361.709324810755 0.021453419918839884 4.4539390274782746e-07 23176983.786980733 481.1767681730388 328011 54902 184917 XVG_20200325 40227986.033740655 5953.304206423941 0.002480697209985437 3.6711619425053226e-07 2634153.9219412236 389.82611783517615 295504 51923 327824 GVT_20190626 15474995.42748956 1308.7261629153988 3.49276223801612 0.0002950531576328135 3287151.5324133695 277.6840715636568 21423 5765 171234 NXS_20210217 45540811.99769108 925.4905431295621 0.670912777805632 1.3634865021601456e-05 497370.44522216555 10.107988863349265 24393 3628 477796 BEAM_20200711 26751217.58266569 2881.369555242551 0.4047726204630708 4.3598073967333863e-05 8327074.637427023 896.9095181356896 15335 1528 452746 BRD_20210722 7844249.465514987 243.75409253335135 0.09353330812206696 2.8997605559985815e-06 1117478.3474927016 34.644552826174575 798 None None STRAX_20210115 47671950.50014616 1222.105314095762 0.4784891933904186 1.219724656979803e-05 1321080.9700427696 33.67589185474442 144260 10283 230712 IOST_20210125 322561562.06106263 10017.65518809438 0.01755052161712338 5.437833562081625e-07 319535089.3979383 9900.438695198503 200237 52197 269048 XZC_20191030 44698411.811847754 4749.995584249326 5.132660488369802 0.0005455152388458155 15196826.118068207 1615.1662959747696 61353 4061 181391 AMB_20190923 3083313.5600066045 306.7185892595968 0.02130560768570602 2.1212913909168334e-06 3021145.943471854 300.80019190862083 19230 5607 570829 GLM_20210527 339021018.4604135 8653.026315509649 0.3399322316337822 8.670971691130973e-06 4577285.372507186 116.75713037413949 158167 21006 128524 GVT_20200518 3526547.0973777454 362.1363773547517 0.7978202481961515 8.16905862209682e-05 125809.37803051226 12.881901489270225 20388 5552 249419 CDT_20190803 10009719.328830143 951.2877828171728 0.014841802897469636 1.4101379136266414e-06 305251.8212428566 29.002350274542508 19798 297 234430 GO_20210430 56195957.90509564 1048.63864036119 0.052206241267674904 9.741010592097445e-07 6067417.606587151 113.2101789696154 20162 980 121965 LINA_20211104 172552633.83546492 2736.4077545965683 0.05681936248149194 9.009591340313801e-07 28425411.971898 450.72900216063783 47953 None 138860 ETC_20190305 443873436.99699354 119549.45142620466 4.082679445414722 0.0010995974243254328 209009179.2613097 56292.92190309664 225780 24180 486280 REQ_20200223 11823517.710161453 1224.8753288452738 0.01531945123424231 1.5866684049724823e-06 104740.68849142926 10.848217641957543 39861 28365 818245 LINK_20191011 959701041.1501263 112082.20821173918 2.6337249237314073 0.00030758923103839093 222955822.71367306 26038.71400771401 35115 11094 100360 TNT_20190901 13265627.69424838 1381.9328624223676 0.03095964430311309 3.225188498990476e-06 838832.0608721849 87.38445082966969 17521 2537 571666 CRV_20210620 624790204.3519067 17561.232460819152 1.869591277225082 5.248964971945483e-05 114525942.02618659 3215.369398635359 134418 None 18193 YFII_20211202 136635492.0487913 2390.511099107987 3436.695667791138 0.06012770704818462 13634582.333174493 238.54779459724134 None None 706820 SKY_20200807 10998014.60490838 934.7116356711479 0.6110008113837989 5.192842420395266e-05 538314.0113971059 45.7508366894806 16288 3826 1078195 ANT_20201208 117853030.89997523 6135.922980866079 3.3968119664367715 0.00017702334797041228 22655768.146426175 1180.6953012853608 None 2682 102693 TRX_20210819 6117407163.550883 135790.12636522955 0.08523336202804396 1.892205985491645e-06 942981284.1308385 20934.464951082005 1091630 115475 32149 FOR_20210418 63202296.495515354 1048.432614889583 0.11230329038950074 1.863322632120386e-06 28816292.95840201 478.1164528392273 26660 None 121436 STEEM_20200526 77688309.4600884 8730.06894663216 0.2176792263958484 2.4482851722583843e-05 1854271.551272328 208.5539175917972 11423 3859 233100 WTC_20190627 45222522.00244698 3482.3270293915107 1.5490536323823707 0.00011878595944031478 7752077.77014292 594.4519778609329 55652 20115 829543 ENJ_20190902 62179808.99760582 6392.648982144078 0.07095247171621778 7.292991527090241e-06 50101633.58204576 5149.796481631538 48423 13715 25046 REN_20200423 52308284.15384132 7354.339658060522 0.0598434688807647 8.411778258688783e-06 2031941.2629419875 285.61578495062713 11760 877 420454 MTL_20210131 26992151.7272069 789.0378481207459 0.41647618467875974 1.2188571739122069e-05 5108191.948784169 149.4960968128004 43078 3351 419249 VIBE_20190225 7065195.694492837 1880.0122982627042 0.035062074031175346 9.336940182898684e-06 592261.7267918268 157.71777535917195 20480 None 1395931 XVG_20200725 109779533.49398431 11506.096464766531 0.00671892557365942 7.044511874895521e-07 13800624.737354787 1446.9376655161125 290074 51605 240038 GTC_20210729 94809659.08743538 2371.4528787292206 6.686577884721852 0.00016712797233629523 23428942.514541198 585.5957597361889 None 1055 25375 OAX_20190401 5189000.324644332 1264.5490635729507 0.22114975284576538 5.389375513089227e-05 1508950.0043943305 367.72811633347504 14961 None None OCEAN_20210408 644709202.1528816 11445.857551972304 1.5110768192046362 2.686948409708335e-05 197436828.1087137 3510.7584509422836 99853 2500 75850 WRX_20210117 20908219.78810368 576.2113721193248 0.08748152148867665 2.416892579781686e-06 2249948.1398789147 62.160361086893296 49703 None 5221 ANKR_20190806 15979984.562037116 1352.7948168222704 0.0060740193342702685 5.146044312250845e-07 7563748.555958447 640.8176051741488 10896 None 12914 SUPER_20210429 227563858.14019722 4157.336459154667 2.2267769874322934 4.067091260700312e-05 19665507.975219317 359.1801786827054 98199 None 80916 REQ_20201115 19011008.191093527 1181.114337359378 0.024452871119731892 1.520127981998638e-06 332438.8592474695 20.666268994400436 39455 27501 293943 APPC_20200725 5246086.295902504 549.8472535087941 0.04815315878281533 5.0492748888399565e-06 320514.13120540825 33.60867687856392 24471 3193 1596022 CDT_20200403 2124999.4718105136 313.34322352106153 0.003151127138689123 4.6223824822657754e-07 39175.20229424503 5.746603067861841 19157 290 258072 PERL_20210128 0.0 0.0 0.038880320056289504 1.2789191075915821e-06 5062089.750809116 166.51106002420926 13801 505 443333 MANA_20200322 33430726.6688409 5421.951967482109 0.02487465487010994 4.04284686909635e-06 19505770.65057781 3170.2487618736336 48021 6791 47233 HBAR_20211021 5987404757.998808 90330.77573759735 0.4031498147190467 6.0829344308731796e-06 243703988.87748313 3677.1327450989384 154525 10914 41483 MANA_20210108 153751724.5090856 3927.9909327249984 0.1263834338821982 3.2017333825428557e-06 169481605.87047082 4293.560465750969 56123 7805 76796 POA_20200903 9391903.27356465 823.0874633440529 0.03344244868738975 2.930087977684705e-06 1031569.3988559564 90.38181151115927 18014 None 497841 XTZ_20210729 2343356903.773399 58602.96773622371 2.7981277649240903 6.993793054563456e-05 88674600.93469518 2216.381310058163 125635 50868 65574 VIA_20190124 7082028.362469847 1995.669626915488 0.3062381625966431 8.62256589916469e-05 130242.34876693411 36.67156390903681 40903 2230 2614866 BCD_20210110 159150846.2974592 3932.8492503474295 0.8375029656273527 2.0790315043255985e-05 18136453.940970752 450.2223952339504 None None 2021519 ANT_20210823 193288886.5992214 3922.420784011338 5.273942954459769 0.00010702438108175479 14689363.905443383 298.0919767316264 None 3083 132148 GAS_20200106 12992709.57032809 1769.4561858382415 0.9320987437680949 0.00012690485417360772 681259.4464818334 92.75318874550454 323283 98681 215815 FET_20190601 0 0 0.1745796713311896 2.035222497147984e-05 62753205.78595628 7315.670559457514 9058 242 299153 ONG_20200403 0.0 0.0 0.08403867929899848 1.2338129994446007e-05 10628598.515272243 1560.436589842596 84138 16524 252464 WAVES_20190623 241042452.293666 22466.66497338325 2.408296343715148 0.00022451812563256947 26577882.267899405 2477.7749323268827 141483 56853 49915 STPT_20210731 62610824.56329928 1500.0195205058762 0.05114736467177775 1.2244580558977464e-06 33553603.792602822 803.2668101651716 30714 None 439638 REEF_20210324 420330569.53338194 7705.862845377394 0.03746000143069134 6.861542308611081e-07 123418361.91977222 2260.6521079258882 88067 8361 35321 SKY_20210202 13231725.831258513 396.33574130211383 0.6946054569056352 2.0797526773348528e-05 5708626.572404145 170.924821851426 17238 3850 739970 TROY_20210727 14033661.437164119 374.8468063065246 0.007381347079989786 1.9722820865945047e-07 3454960.7548765163 92.31590294951161 58267 None 506506 TRX_20190509 1617662801.8935335 271765.53571897215 0.024550761882504563 4.121465318120263e-06 642639855.4200685 107883.32715829475 417826 70571 110041 CTSI_20210203 18016599.505635183 505.83499877614406 0.069023756024348 1.9435252044394492e-06 3386114.0341293504 95.34395618973704 20485 202 421222 SRM_20211225 540485058.165649 10633.444525724632 4.054480962399915 7.973295863470444e-05 154284970.10380945 3034.0744606584935 None None 26537 RSR_20210511 1020997175.4705107 18286.47087310348 0.07730017397184985 1.38343834690012e-06 145768042.98360068 2608.805259475049 72097 None 79462 ATOM_20211104 10745418087.84917 170842.62455811552 38.46322939809849 0.0006100047712865487 818788288.8554575 12985.512935116934 None 44051 35316 UTK_20211204 174029323.2997104 3241.4880806810065 0.3830954464732312 7.144136521501338e-06 22308421.135809403 416.01749026402126 81514 4261 147587 COTI_20200907 30697551.156672224 2981.0721596552557 0.054004633233659324 5.2589721566909885e-06 10527483.654605007 1025.1665478413213 None 1167 143053 BNT_20200730 96427939.83818571 8694.076459751954 1.4684035024939008 0.00013239329125845335 46873967.614211194 4226.2217682318205 713 5129 121878 WING_20201201 6244655.893093759 317.62520320976734 10.01642360670266 0.0005099032125521194 1215055.9608384073 61.85450637765722 6955 None 210369 VITE_20210723 33437343.67413426 1033.8704531871244 0.05088107013827573 1.5716334418152612e-06 3254497.957931155 100.52614485315961 33125 2401 593813 BCPT_20200319 1244708.9994903298 231.17057860654808 0.010722328357332457 1.9901276827371106e-06 45056.02558906634 8.3626653475496 10664 3167 1690012 NULS_20200305 22057039.9984718 2519.6073555094786 0.26500876211082425 3.0257565235661802e-05 4032860.2464784887 460.4547073168111 22672 5193 619302 CMT_20190601 32406704.56679648 3777.6833842758033 0.04042251538949088 4.713353085263255e-06 7504340.190329637 875.022364346751 292066 1642 806904 WABI_20190816 6281762.994174051 606.3397432325809 0.10869709979916753 1.0534528511297643e-05 536051.2160097488 51.952138824349 36249 7976 1534793 AGLD_20220115 106178648.363506 2463.8323196734646 1.383128246474646 3.207877681701875e-05 10084444.833223369 233.88767885627902 None None 124550 ARK_20210318 210005865.3243512 3570.137717810977 1.4108422179438822 2.3935997465804374e-05 9009375.472418025 152.85081898850265 66297 22245 67754 MDA_20190605 18151245.947577775 2369.15526145119 0.9255143976770023 0.00012072013643535638 1296515.392924299 169.11191821240996 None 363 1548972 ATOM_20191017 696919265.4511199 87033.15226862679 2.8441546681865906 0.00035514404074672403 150064654.53024343 18738.280438564198 28864 7063 99736 SNT_20190826 64410391.01829154 6378.619508027131 0.018180810019292722 1.8009048622443784e-06 23957528.085906163 2373.1191718895216 None 5721 264981 TWT_20210624 103983082.30144411 3084.2345340533807 0.3006347877803389 8.923870852623359e-06 10857458.659788612 322.28658427395465 893383 38707 2948 BADGER_20210722 69246973.61198908 2155.356215588404 7.521706194355418 0.00023373130543180966 7667618.912889495 238.26543230420296 35926 None None ZIL_20190807 88417303.43419844 7726.882762960003 0.009611447468244388 8.37692661424869e-07 17537128.57677654 1528.4611355123443 65880 10618 160236 KEY_20190719 5355540.724866825 499.00710642456414 0.0020370838827515284 1.9092427712847986e-07 159312.03494390624 14.931410221776542 23960 2840 1002597 WPR_20200607 4646697.430717089 480.55112542245763 0.007639810441766164 7.900922236803369e-07 78584.85481889162 8.127071105327161 32999 None 2763388 QKC_20201226 31739395.969485052 1285.250278295539 0.004957811507169135 2.0106184283991754e-07 4014483.281902531 162.80558579974004 63527 9212 106409 ETH_20190520 27696392705.66153 3384466.7540649255 260.59698403060327 0.031847794444581155 10660302136.0779 1302805.2201366548 442569 437383 37906 THETA_20190305 87419054.49487554 23531.575990863912 0.12091112067340645 3.2547014386132116e-05 69649564.92038761 18748.361431326008 None 3876 442380 PHA_20210813 152482475.0239677 3429.82319833681 0.8383945681446054 1.8858151019196515e-05 17341962.01719974 390.0756888409557 107150 None 139541 PERL_20210731 0.0 0.0 0.06459712485141156 1.5468918440188397e-06 3850350.1310657705 92.20341041591048 354 681 3902425 AERGO_20210711 42147893.95374818 1249.9175215794685 0.1588316455947739 4.711822901488142e-06 4432009.107708594 131.47784205789588 None None 362973 BNT_20220105 803695533.7268819 17346.467170185697 3.416742927102597 7.425941784961283e-05 50445333.2022053 1096.3777950956817 142826 8693 34822 VIDT_20210725 17316869.40090565 506.85072717815194 0.3741728052704976 1.0951588637741768e-05 2064557.8790134662 60.4271296344445 29573 1622 891299 CND_20200407 7302270.86065488 1002.1431137439175 0.003785001125368399 5.194429083339626e-07 22450.658793164195 3.081065265574947 34721 5955 426986 ATOM_20190905 495784402.48028386 46940.733824004055 2.0330420346370484 0.00019247221128840806 102755416.87425177 9728.063645855827 28280 6764 108058 DOCK_20200217 5178369.76789573 519.453095527118 0.009170452288101769 9.197319117986707e-07 3283351.9886638783 329.2971280772977 43317 15055 358417 CTSI_20200719 9222650.938607072 1005.8004458775546 0.04740411750475055 5.171283903139582e-06 2345759.694704856 255.89737745134033 15618 119 236053 ZRX_20190904 102604601.04394674 9654.690144520418 0.17052923575558454 1.6049338375735568e-05 16595394.544599684 1561.8735482217398 151187 15901 155880 NULS_20211204 100382260.74816914 1869.5866862316905 1.0564367927351874 1.9690751547963192e-05 866847823.7187972 16157.03395046183 79146 5544 241702 RSR_20210221 519359939.93385154 9261.752208840428 0.05629403595495288 1.0013630843005396e-06 283185197.947988 5037.322310171062 58175 None 119341 TRU_20210523 130714474.84440488 3477.7980792917806 0.41012146458660814 1.0911394804211729e-05 52502748.343391925 1396.8501162414627 None None 92654 SYS_20211104 201212078.27384365 3198.8293479982503 0.3249430310323614 5.161121289804689e-06 4746610.770832718 75.3911657250505 78574 5978 233708 PPT_20190806 24818582.988640662 2101.786037411531 0.6857253244574373 5.8054434878372235e-05 2760134.543521654 233.67672943858068 None None 744473 ALGO_20191017 101396760.99167536 12663.694825512346 0.22890006633358886 2.8590497299113346e-05 102544593.23374222 12808.213483063419 12543 643 327819 BNB_20190524 4573106102.0519495 581512.7973509928 31.677314092966217 0.0040269088571849325 393000478.6077677 49959.32115769059 972137 51552 924 POWR_20201111 40946271.99079595 2678.446914562994 0.09521887017487654 6.233152540857163e-06 4312402.861290672 282.2955660226463 81199 12597 252653 WABI_20190530 17121697.37420407 1982.8853771291347 0.3264145273972544 3.780722184977361e-05 995384.3175427378 115.2911790391114 36306 8028 933235 UTK_20210828 218211092.63867924 4448.938760088514 0.4851159455719931 9.889316449178462e-06 74582970.02673699 1520.4088817248235 78977 4057 188834 COS_20210325 129063153.15725264 2451.0476566829816 0.04250730193005613 8.079905748699547e-07 126355337.36616972 2401.7972687226666 None None 274525 ZEC_20190826 363850696.4237393 36040.890718192604 50.04881179290819 0.00495759806145912 106952641.65226945 10594.221719332709 107 15344 180529 ADX_20210723 47946130.93644816 1482.4587389719823 0.3863139743873676 1.1932658277802328e-05 38900554.23036644 1201.5796766974506 59453 3876 13599 LTC_20211104 14216793685.29027 225933.62052988395 207.32416503900404 0.0032898901471325698 2339651671.533303 37126.38601704524 201709 347280 123965 ARK_20201129 62506442.13470194 3531.091497919388 0.40799099657921545 2.30317280805314e-05 4051531.2664387105 228.71525896594048 None 21642 105544 NULS_20200913 32173909.112714794 3085.4925425745914 0.33045325819736276 3.16467189870087e-05 14172012.160936654 1357.219743525021 30488 5163 285430 AMB_20190902 2918300.776166596 299.96337434456314 0.020201137749945187 2.074254679574404e-06 192474.13015414716 19.763261362362424 19272 5611 670257 VIB_20200305 3476217.0173115376 397.09326214089515 0.01905129717963349 2.175096862726182e-06 695257.6894183069 79.37794496516833 31542 1108 None FLM_20210131 0.0 0.0 0.2221164073120981 6.501386759488855e-06 15173629.5172211 444.13483555961216 13111 None 184710 GVT_20190419 17679816.197148178 3351.9122553320612 3.9873279614075035 0.0007555087448445036 1422158.0898736196 269.46689207666765 21348 5791 198674 ORN_20210708 170549247.87137085 5007.150740782056 5.885355062562743 0.00017321399959567495 4907324.065086384 144.42921787892675 None None 65422 BCPT_20200109 2430561.9474691027 302.1093498141458 0.020948593504041126 2.6106492114657673e-06 125028.10251925729 15.5812139459384 10722 3149 3617841 LTC_20201201 5766226392.764595 293726.1686549805 87.38619672272732 0.004451370967484832 4935429713.476689 251406.16438932778 135167 216695 163685 SRM_20210314 304571881.37665117 4964.612827700476 6.0892874200602645 9.924950433149564e-05 171847931.76087618 2800.9553287748818 44106 None 88045 MDA_20190702 16574888.413541244 1561.997118920969 0.8474843278452503 7.994438986384232e-05 1006927.129227381 94.98485380620768 None 363 2408870 PPT_20210115 35333717.05684978 904.696230847254 0.9730477139985573 2.4804295049748036e-05 4527625.50374669 115.41526407600551 None None 755937 BZRX_20210823 122348773.35229401 2480.0384864867247 0.4238721370886488 8.60110054393676e-06 15080411.82437396 306.0077013702979 None None 206797 CTXC_20201015 904068.5392546931 79.22031204641655 0.0899882785745303 7.874350013270635e-06 3420250.381621506 299.2861855403125 16695 20067 591640 TCT_20200310 4309846.322030523 544.3622899123029 0.0073570776112249865 9.283169924018437e-07 494425.85611065873 62.38671765675863 23 None 365886 BAND_20200208 5664797.400142914 578.1471016401491 0.3182811968503671 3.246565989599404e-05 2066426.6201398494 210.78186368963765 7706 1002 716251 QKC_20200407 9979784.57602916 1372.2454468869314 0.002672098503287497 3.6671128275223167e-07 2703113.5533695556 370.967700989143 49997 9195 784929 MITH_20190221 19629491.14361148 4943.758782861073 0.038733783582646654 9.755244360599281e-06 4419754.7142747715 1113.1313097690154 47 1979 558575 COS_20210806 41477907.742221795 1012.356414190058 0.013735850680966782 3.3541059232236125e-07 4492490.49829908 109.70044258889816 27295 None 402883 ALPHA_20210718 147090165.65652233 4653.920976087015 0.5161988416125061 1.6331520078336713e-05 35865254.82643042 1134.7064001205235 70348 None 56625 DIA_20210221 75074486.87374085 1344.4694997596755 2.982957510183281 5.304420757345958e-05 77940835.83158994 1385.9767898758203 25382 246 245610 FUEL_20190405 6718285.967029562 1371.554691841333 0.012658661571066607 2.585245205104283e-06 5527035.647701387 1128.7719737542918 1 1526 None LOOM_20210218 93509002.62390833 1792.4193952459964 0.11160126598250654 2.1406612106946744e-06 26510695.20352182 508.5105118755922 25454 None 256262 OGN_20210125 38507698.31306963 1195.9169633313886 0.18618168096460075 5.770610714005073e-06 17561626.44534021 544.3140764214249 70476 2530 231099 ADX_20210427 165211818.46792918 3064.806714702129 1.404315225966608 2.605113105111411e-05 16963406.5553878 314.68428104776785 58126 3834 11197 CELR_20200313 4926073.291189982 1023.5976409268798 0.0013300722481819616 2.7755675707487395e-07 4524289.077577186 944.1193936329713 19284 None 1113968 BEAM_20200806 28060277.805170063 2395.3475347433455 0.4132031251327562 3.519862813552238e-05 6297287.411157718 536.4332077029478 15575 1541 306109 BNT_20200610 50283380.09855346 5144.151104557034 0.7224408883853376 7.398059755630341e-05 25694940.63301046 2631.256193780013 725 5032 124345 LRC_20200520 47166598.15230157 4835.080545047895 0.04060828082047457 4.15976069331669e-06 7977363.812523631 817.1713688231674 34321 6802 498950 DODO_20210916 237035569.80899015 4918.452226064718 1.5291835854766869 3.173275862517629e-05 51426152.49916055 1067.166623926756 106545 1094 33646 NAV_20200506 6937472.48213015 770.988866472418 0.1011295592132179 1.123892951294468e-05 64616.14988523388 7.18104933520855 48879 13901 1266720 PHA_20210708 141321121.37350118 4159.219826334566 0.7870837576609857 2.3165494892649053e-05 18048752.66654813 531.2119372887569 None None 165668 BNT_20200223 23476599.48952147 2433.407610812322 0.3367318294439828 3.488382917311829e-05 44270708.698111944 4586.236597080369 751 5035 112981 KAVA_20211125 744675195.69337 13017.109351447094 5.255353714053552 9.187850480855847e-05 80315775.57468103 1404.1478031456134 141753 None 43706 BCPT_20190701 6111584.441661843 563.253095464685 0.05260843743677487 4.854094898664835e-06 545777.0681530824 50.35796179109133 10969 2816 1043904 POE_20190723 9615310.254189953 929.0990789773728 0.003727219648133315 3.6039454878237156e-07 169364.51191137888 16.376294560643174 None 10824 797644 STEEM_20210823 219255642.6145953 4450.516409226007 0.5644634796316914 1.1457648015588286e-05 11984968.071836686 243.27445547897742 14226 3925 204602 MITH_20190703 19232174.742504727 1781.9447096660497 0.04425195495872513 4.091660693096061e-06 13035223.65813068 1205.2735820922862 75 2075 608806 RSR_20200901 194720366.92354757 16672.72783440154 0.028464323553437577 2.441546417720906e-06 54414343.563600115 4667.426764979204 43049 None 120167 TLM_20211204 443967540.11576337 8268.749836206533 0.36006266767035766 6.703791975469917e-06 194524070.91112667 3621.727612160078 100270 None 10820 MFT_20190906 9255088.003869288 875.6774216178998 0.0010254945156641872 9.702796915433792e-08 329204.783621118 31.147969201924244 18784 2216 866690 WAVES_20190213 284596379.4761494 78323.86990406208 2.843487096801956 0.0007825317680340989 23206841.1697904 6386.5563066936675 136058 56706 39779 WAN_20210218 146877689.28055158 2814.982663390226 0.8921026809108916 1.7109589607614456e-05 15453469.972541025 296.38127415310396 105090 15856 363625 WRX_20200321 18782042.45124445 3037.3292079489333 0.10094789395314326 1.6280626242279154e-05 22765066.72379819 3671.4935616461594 21343 None 25580 ONE_20210805 812013473.297992 20415.222422198804 0.0779899989718317 1.961276461691036e-06 19612529.056275528 493.21184894742265 197399 26777 28462 SNX_20211204 1339685304.6012578 24953.116316207073 6.9862752190606665 0.00013003516950723637 91351427.51518655 1700.3192673051415 176381 8469 46165 ATOM_20200329 369486220.3424723 59294.337225914656 1.9774760168069785 0.0003163633017620477 137883309.31343663 22059.03819896208 31866 8330 84919 ATOM_20210217 5940514784.383009 120792.20397294807 25.125151819281562 0.0005105743669567095 2786603491.883044 56627.25240671697 62185 16079 73647 ZEC_20190329 347296040.74980617 86261.4137807296 56.043568618708775 0.013919876016438846 150194454.9634268 37304.694240144876 74257 15070 171176 CND_20190421 35338585.338207 6654.660270650773 0.020383869787733065 3.837839874355491e-06 497615.05926580593 93.69010577566439 36817 6198 608018 ANKR_20200422 5239738.26453992 765.1186952270372 0.0013129737486171473 1.9180215753621053e-07 1225085.6837752126 178.9632713999723 None None 5745 XLM_20190723 1751595553.2609446 169251.51370611772 0.08933311730935514 8.640522373544531e-06 223477152.29041672 21615.2686987802 275375 103049 67443 BNT_20190916 25679203.53719988 2492.177841510439 0.3681586800588419 3.5729959586683696e-05 3401220.5732699377 330.08993189813947 777 5110 171453 ICX_20190608 180077268.42942834 22408.66077310352 0.38044998795025003 4.7388440644866896e-05 21975108.50009508 2737.195841250601 113492 24830 290071 MANA_20190312 57968168.74430072 14992.380683839263 0.04534661142812229 1.174268338650013e-05 3180157.137140435 823.5141988492595 43046 6096 110020 AUDIO_20210930 798356125.5257013 19216.07036182263 1.9664770088068626 4.728765996956634e-05 14330176.113770578 344.5961952960413 87617 7656 23825 DCR_20211104 1509501005.0751467 23935.48007151613 112.11450660215968 0.001777749421485324 11654835.144985393 184.8054909613765 49605 12267 223861 STEEM_20200422 51713422.47401252 7551.313506785482 0.14740669953878466 2.1533502125696337e-05 2015497.756603782 294.42844431059547 11216 3844 233642 CND_20200422 6744563.264390121 984.8567207353608 0.0034943620900403957 5.104642714969639e-07 52312.970848140496 7.641996411862757 34610 5944 386882 NXS_20190228 17304437.222836163 4533.214463740612 0.2894703647431188 7.592321161296201e-05 121265.39013773682 31.80587375473175 27 3504 888108 TKO_20210428 209708058.840747 3806.597643800337 2.7970590143790353 5.075818395791076e-05 87816007.186023 1593.595638948982 None None 41477 CND_20190901 11713686.777924817 1220.269618682605 0.006705544164719456 6.987366580781423e-07 257098.76147180115 26.790417745962554 35896 6115 335034 AUCTION_20210325 65908380.38887838 1247.2688544343846 28.563758597590297 0.0005414321159668147 7817482.842291737 148.18204902464618 None None 34024 LUNA_20210519 6041338239.463203 141587.50552595334 15.773398180641863 0.0003687020772789209 426058563.4032855 9959.089066936356 72696 None 20297 DOCK_20210420 53761650.52926856 960.9256615952863 0.09436097015772665 1.687117794348497e-06 11834470.984337147 211.59327369146664 46913 14953 216888 MTL_20200322 13299680.810041154 2157.0427297212364 0.20468072667651918 3.3233641921037794e-05 1478526.2665922488 240.0656540194539 34707 None 635134 BEL_20210826 128467727.43634196 2620.937715720847 2.6749235593521528 5.458747191102662e-05 22177364.102244925 452.57601315721524 33869 None 475057 MITH_20201228 11219425.366018074 423.779348497376 0.01779300931206092 6.765837606868748e-07 37390683.592073515 1421.7903714707786 137 2116 908145 NEO_20210708 2603023837.37526 76610.52988675884 36.927330136172806 0.0010868473264025013 350261059.4054674 10308.9038539734 406354 112260 98164 DOCK_20190615 7456534.716092402 858.9104402930815 0.014609471857587883 1.683390844297883e-06 3626769.2588686915 417.898074911559 175 15257 238088 TNT_20190701 24956578.902037565 2300.297728052926 0.05799022393969149 5.37639092718105e-06 3220497.9541116767 298.5788777001103 17581 2530 678101 AION_20190812 27963495.380521834 2420.199489065523 0.08318363899208499 7.199421883699365e-06 850874.4571305283 73.64193561583932 67607 72595 199411 ETH_20200404 15597757554.270603 2318738.2530304706 141.26154326644877 0.020993376290992908 11621521038.709623 1727115.24026843 452665 456598 20344 ENJ_20200730 162652125.08419055 14648.22121621458 0.17641515897088217 1.5894468554449608e-05 8258436.192335601 744.0599500277194 63093 15719 108364 XTZ_20210220 3783935133.746002 67743.17076178797 4.979972203129662 8.912585109459215e-05 543521045.4107137 9727.318503828017 86881 36914 115000 REQ_20190507 14385785.136013564 2514.5086788466338 0.019706878184866317 3.444996160871356e-06 336511.49156847125 58.826201982246694 42104 30185 371026 AMB_20210825 6253786.775852768 130.08412954314826 0.04320565930194503 8.99643762900904e-07 581592.0734380641 12.110119134268235 1099 78 632892 CTXC_20211120 36459813.94072341 627.2003691296745 0.19554996875555256 3.3611495570275734e-06 7731799.8464135 132.89562659702898 21374 20675 578240 XRP_20200310 9150172777.740633 1155187.5555672261 0.20882219538631508 2.6363305622307984e-05 2703449654.798481 341304.0905547634 946584 210661 33270 FTT_20210219 2331777309.508023 45113.30422561153 26.227382673620177 0.0005072950778158427 83357122.80108821 1612.3094943978242 60585 None 4654 OAX_20200502 1970920.0075905244 222.42330479473364 0.037738041699102526 4.270233140127438e-06 154385.38153260326 17.46941661224089 11845 None None TFUEL_20200316 0.0 0.0 0.0016933120711247868 3.1354074184043935e-07 959518.3702154695 177.6684326162327 68418 4027 384607 AST_20190615 8301643.225941433 954.1481364380057 0.04817213142004432 5.539108249222925e-06 3938086.795565946 452.8238301367471 31781 3592 396492 QLC_20190813 3657551.1215517456 321.38628260655577 0.015241058970667286 1.3391413268333388e-06 110183.65581130698 9.681183395620797 24871 5755 940522 EOS_20190810 3967078841.92482 334540.93294416816 3.902269836502709 0.0003289804364182187 2666064701.757086 224762.29626634775 1260 67779 89433 KMD_20200109 65105716.73979248 8090.319527745938 0.5511258511124417 6.857704471593572e-05 2207365.3921410544 274.6642983552996 99056 8403 197912 ARPA_20201101 13763294.290981853 997.7231378784745 0.015550315253600212 1.126959211262793e-06 8642501.898249935 626.3375991900865 21017 None 548225 ETH_20190920 23838258551.56916 2327853.125866656 221.74292599489385 0.0216363431510178 11660216013.817453 1137733.8589631347 448124 445929 24076 LIT_20210704 50749430.41145399 1463.9163418693254 2.2902838317796537 6.604896499165676e-05 3014294.0540077165 86.92852810868081 None None 323209 FTM_20200905 108290802.90417188 10323.626541660242 0.0444091605116334 4.235392693930775e-06 21230475.410694037 2024.793970594766 25027 2637 147748 POE_20200518 2691205.5831686826 276.695728679331 0.0010691376010620172 1.0992315467628271e-07 24967.057504258406 2.5669826981354524 None 10311 1075811 BCH_20200704 4072279185.0490284 449025.5345358873 220.8122574424211 0.024358842468116804 1592352107.9888256 175659.8777691851 3353 301916 156887 SXP_20210508 415547175.5431733 7251.6690512996 4.811132338884084 8.39385344239547e-05 459676207.99358004 8019.847406128835 222188 None 60637 SYS_20190902 14782232.386490151 1519.546596538607 0.026241928257781832 2.697551474509776e-06 965123.726199102 99.21035166006594 60619 4566 689818 POE_20201111 2300651.9017175324 150.378364888543 0.0009125835507672016 5.97424708778787e-08 55817.15839576039 3.6540818176497267 None 10106 1320650 WTC_20191024 18313476.89363272 2453.904839298038 0.628246210294663 8.414960944428486e-05 1303923.223521556 174.6522751855651 55494 19749 556908 BTG_20200425 164866975.33551627 21987.20829040638 9.406023994347878 0.0012548035452558304 41600253.04820902 5549.650419752239 75176 None 211621 ETC_20200322 582834588.8081313 94552.29401042452 4.982151168529297 0.0008097428630962296 1687982122.4513538 274345.6451748915 231041 25307 345588 TRB_20210218 84016524.9195687 1611.8046342554003 49.5212370510943 0.0009497651570113902 119877365.73921366 2299.1215864810506 14396 None 359747 SNGLS_20200105 4189762.923426589 570.0733537716185 0.006987167794573189 9.506977484921106e-07 87049.08002882483 11.844193072905664 4684 2153 2483820 BRD_20190712 20173808.86195657 1781.1109857072613 0.33698840129258517 2.961426861534099e-05 334088.13960205903 29.3593959596989 168 None None TOMO_20210128 90655474.02839944 2996.7886763242186 1.1861359246030947 3.900849433916699e-05 17591605.92450881 578.5357697117911 37665 1723 196124 STEEM_20190201 82437651.31500326 24025.3411823702 0.2772810049673926 8.0809807672428e-05 1057517.142643108 308.1991026299646 3748 3648 256467 SKY_20210718 15944056.851158813 504.45893892615754 0.7592408024361339 2.402185423457893e-05 470914.2227450529 14.899400532050912 19641 4407 638153 PIVX_20210112 24853124.421021596 702.0117014076476 0.3796837404581837 1.068067974591956e-05 12554605.70003757 353.166882144024 64776 8725 359500 WNXM_20210112 48685398.765032396 1372.7933713106993 26.988116969530463 0.0007592293090083027 27867793.971291523 783.9763694627826 None None 132342 LOOM_20211207 79147780.58644225 1568.0688717623011 0.09577108080608171 1.8961876146117356e-06 2850561.6653625816 56.43874621705518 38947 None 339032 OMG_20190615 296392362.29167044 34076.64842919087 2.110634119458766 0.00024308935046409716 216598019.8092463 24946.375812753922 289409 39665 None OAX_20210314 17862301.30171531 290.83385990444594 0.3164725499115775 5.158236344374596e-06 1262423.7721718505 20.576445525650595 13495 None 1088622 REQ_20201014 17736923.561416883 1552.3323912467854 0.023039084418120838 2.017051831393396e-06 168276.8929621643 14.732495830587728 39481 27585 290010 ZIL_20210508 2723366879.927137 47525.182412051196 0.22684017500758272 3.958137787838429e-06 504470685.5898221 8802.516941379927 251886 30761 34741 CMT_20200425 6248642.323948722 833.2901831470416 0.007646663392947697 1.0201993415598806e-06 5672842.870349048 756.856979795965 285218 1632 944279 AUTO_20210624 28904998.470736686 857.3938920551715 952.1358657382453 0.028252038956140223 2491056.537685522 73.91531910214465 68763 None 10402 VIB_20190929 3477391.3775227703 424.5490051598061 0.01904753281635633 2.3254820151114523e-06 755302.8851143299 92.2136894173973 32206 1118 4575381 ORN_20210707 170406958.05206287 4989.040386805502 5.877795273327211 0.0001721079652230308 7665257.412582734 224.44671766248615 74832 None 65422 AXS_20210814 4049955344.2237554 84970.95719680365 70.72644849999892 0.0014825703912474282 1710013715.270736 35845.36982494522 371957 None 1596 XTZ_20200629 1692415561.2190216 185625.06174578378 2.365352152534619 0.00025935305843783864 71446433.56457971 7833.865684479047 66988 26839 92596 SC_20190725 111120613.38802312 11304.138132727192 0.0026696157239589195 2.7189566721830506e-07 6448010.87996479 656.7185699067658 109592 30798 213896 DLT_20190922 3751898.8297698554 375.43032956335816 0.04674060906564996 4.678465598323537e-06 927750.4724572346 92.8624756070928 15008 2646 6222590 ALICE_20210826 364242104.75189674 7431.060708200012 20.92820679490946 0.0004270125729887222 820556892.5066803 16742.38568963948 104310 None 31647 ROSE_20210204 106008919.51602122 2829.5071332597345 0.07084093741190864 1.888622755724929e-06 15553820.663968429 414.66559757151515 10108 684 215578 KNC_20210828 184581547.26219803 3763.0276399665677 2.00374938441611 4.085526370166822e-05 53434266.86038061 1089.4930674787481 178999 11376 108939 REQ_20190405 22506397.100229222 4592.418752661198 0.030900847694074085 6.310798964509455e-06 587439.4988240232 119.9712259544756 42174 30490 347725 RLC_20210202 88085407.14708567 2637.1873971241016 1.2453130202764797 3.72834037885961e-05 6625764.311175418 198.36863680006934 34329 3941 456276 DREP_20210819 0.0 0.0 0.6795745500313178 1.5091638422738096e-05 2003030.498516243 44.48226030820443 4109 None 303395 STORM_20190930 7134264.179578007 884.9847871341035 0.0011329845491808588 1.406117763257061e-07 46764.542664430235 5.803826202095126 None 2548 1924840 XTZ_20210420 4233741813.19852 75633.26667147089 5.483260443597826 9.80374221458089e-05 617670722.0554514 11043.583639358192 104409 42460 96118 PAXG_20201231 74956789.41300134 2595.722745482362 1920.9337807247616 0.06662078025390901 2672521.5594201316 92.68693867561997 13874 None 76201 BQX_20210104 32901499.780931618 984.326792439582 0.14716664638645646 4.470744670446898e-06 994990.6233040219 30.22661136545725 None 114 152603 ALGO_20200309 201500402.12189794 24942.809993034964 0.294670095222038 3.662967842604481e-05 115336829.62725928 14337.223384485678 15954 814 407593 RDN_20210429 64584969.32271701 1179.9230763282176 0.962401788217426 1.7575935172128253e-05 1328871.1001509228 24.268608593951143 28932 4540 626244 CTSI_20200707 7555427.221065935 809.387881452963 0.037968470719562206 4.063770677689514e-06 3407456.6929951864 364.7005615992948 14864 119 226928 MTL_20190703 26051040.76160144 2410.993539929617 0.5602061877697974 5.179824576484444e-05 4961161.778163923 458.7230249768087 None None 763288 RAMP_20210725 51334835.32545714 1502.5290086739271 0.1715960451196784 5.014451356278744e-06 12764616.456469303 373.0129575998029 30715 None 117048 BRD_20200109 15431518.972581709 1917.4359970847133 0.2538376662441134 3.163367999348833e-05 990055.128056124 123.382347309797 None None None HBAR_20191127 23552517.327893168 3285.1072205582072 0.024381033916115645 3.403204959235776e-06 1355422.8830214648 189.19549897805172 34953 6168 82038 OMG_20210202 572557552.318071 17147.708808157015 4.11761779320417 0.0001232772839691786 895595317.2490497 26813.21185958437 292754 42513 203205 CTXC_20200306 1748400.5729773548 193.0625070593526 0.08208828137521042 9.061727919390422e-06 5461782.532139971 602.9263426153052 16714 20064 415103 ARPA_20200907 0.0 0.0 0.04156997079195256 4.045656298314566e-06 31093751.807244822 3026.0938470893093 20801 None 330815 TROY_20201130 5277305.521449482 290.8763492775066 0.0027926049994453322 1.5369536978538614e-07 903351.2593190285 49.71734487144044 None None 1151989 OMG_20210218 893955562.9574496 17128.8290905162 6.368021236340831 0.00012213193873054646 510989387.4397224 9800.238134037438 299628 42649 165404 EOS_20200308 3397944282.3500695 382290.4671388407 3.643459103397949 0.0004097391386492652 2381041668.9030423 267769.1542069116 1469 70314 94982 BLZ_20191012 5547687.051380643 671.2562056257508 0.02637565099089432 3.1913875532417836e-06 250938.07821181056 30.362877478021684 36361 None 568408 OMG_20210427 986883133.2140201 18318.754721754034 7.074617168252185 0.00013123960744621435 390288754.30026656 7240.157550135457 320174 4496 121524 MTL_20210310 86906728.5051665 1590.1217339181285 1.3477116910235785 2.4636932899359006e-05 26761124.552370075 489.20851121161303 44231 3482 320334 IOST_20191203 72155945.42636967 9873.158789386469 0.005969581538913381 8.170744762108022e-07 39357305.88666243 5386.952147782639 193438 52303 89097 ANKR_20200329 6312011.0127407955 1012.9376657571609 0.0015808145477043728 2.5284669882066675e-07 5431252.101508991 868.7130102159032 None None 5425 SNT_20210523 418502562.1357907 11143.776342268779 0.10784803776182933 2.8717492328766827e-06 51992317.6769697 1384.4377839683184 131901 5976 111002 POND_20210427 109353135.47966391 2029.2808549824415 0.14613514021318738 2.7109196129709998e-06 25261801.916204482 468.62591826799485 None 435 75680 NEO_20190515 717398473.8689919 89820.02229752696 11.05074129756477 0.0013826974537666983 524084228.232064 65574.77986526115 321000 97555 218328 MANA_20201130 108533830.62281679 5983.206363551301 0.08197519547841757 4.513949163419663e-06 21168602.513664965 1165.64523023893 54364 7564 87671 QKC_20200625 21599648.645983607 2321.7141558551657 0.006679268102123655 7.185922451440167e-07 12365936.830687847 1330.3952131593228 49763 9207 656041 MKR_20210724 2256877211.8346806 67517.45119465588 2507.2467445938637 0.07497885298796524 62560052.36745052 1870.8493607549979 168008 29045 30327 DOCK_20210108 10766408.22539633 274.6885065082441 0.019220072539103593 4.870475451994321e-07 4807668.700395208 121.82905313680143 43093 14869 239744 PIVX_20190920 16813345.44059349 1641.6043182457645 0.2753299834314543 2.686504642508491e-05 625883.7625807845 61.069979116988115 62965 8599 243854 ZEC_20200109 260304639.13104585 32346.586606850273 30.78663728304301 0.003836682893825512 189531815.4503712 23619.77592709202 176 15430 169401 OG_20210131 0.0 0.0 3.5112228249319464 0.00010277411677900949 1609486.9915920494 47.10997059304658 618718 None 479965 FLOW_20220105 2896919309.7148247 62622.53783820646 9.026032800994752 0.0001961716042423387 62186233.09474061 1351.5542627585862 None None 154515 ARDR_20210318 269118280.4155679 4575.059472649129 0.2706563951835087 4.592902966419154e-06 51467073.71560366 873.3703682894255 67415 6484 None ASR_20210508 11191419.1310698 195.3052238373833 9.07628440123892 0.00015837222952464822 2637158.356937531 46.015817721703925 1970655 None 174879 TFUEL_20200421 0.0 0.0 0.0016455978472207323 2.403604250325304e-07 384984.743316163 56.23190179228544 67756 4023 358410 WPR_20190801 4239578.226464427 421.1165276849199 0.006970450408308374 6.923735606583421e-07 81520.87693244168 8.097453754556302 34688 None 1323626 RCN_20210718 12588397.56503091 398.2443922667972 0.023744053131557624 7.511694397759909e-07 716894.5281322564 22.6797530350815 19983 572 2225791 ZEN_20211021 968894304.7122301 14616.485236501921 82.9277373795804 0.0012557457610672333 49242050.48382066 745.6551705767687 122768 8088 1770631 BNT_20200704 96722621.20212004 10665.016987648214 1.4721803770674726 0.00016241824663813903 66542262.563391574 7341.272700842014 717 5079 116886 GAS_20210408 167226355.31782827 2968.856401478018 11.958228675877866 0.00021280627721354087 31496615.94740047 560.507560631582 369769 107668 91590 RUNE_20210814 1936113992.4222195 40634.27489740045 7.315206746210782 0.00015323278031989407 81920861.49823962 1716.0091039229414 105772 6423 67412 NAV_20190811 7146330.599291129 631.4195293528629 0.10852243107352248 9.588582755948788e-06 145003.38704935892 12.811885643012264 51782 14176 652826 ATOM_20201124 1376059796.764834 75158.1540318262 5.789096385879374 0.00031532366795423733 338971558.9544597 18463.288253828257 45015 9733 86006 LRC_20200927 268149010.2786451 24973.05362499669 0.22672823975007197 2.112056211240659e-05 71929529.17253809 6700.4978748099265 41494 7140 168485 SNGLS_20200217 5576927.4351015985 560.58331954438 0.010052502803758462 1.0104605908965787e-06 309557.05372241366 31.11615182077892 6761 2143 1180132 NULS_20210128 28440803.554678146 940.1539160182032 0.2878718165273359 9.467250668737567e-06 27475325.975742515 903.5820225663903 37665 5087 890471 KLAY_20211011 4271539724.3204775 78068.89743727238 1.7020273535712422 3.1109973711474294e-05 210730903.16997984 3851.77878842997 None 843 56405 RDN_20190201 10048215.387939513 2928.4167988572162 0.19988916391285225 5.825499980966806e-05 1021161.9539040559 297.6038733958413 24873 4458 699735 CMT_20200422 5789176.900838125 845.3489951557144 0.007190437472600886 1.050395274335537e-06 5984829.408441161 874.2773374061546 285335 1634 944279 AION_20191015 24475389.86675531 2932.3544693752738 0.06926773308313465 8.298411111295931e-06 2541752.5296798144 304.50696876631474 67288 72560 168060 ANT_20210814 180971444.82238865 3796.910233535977 5.002440354372915 0.00010478690083257844 15501472.98591045 324.711780144176 86311 3072 129869 VIA_20191220 4488444.550889622 628.5521279713936 0.19469576247031992 2.7246781862032724e-05 215294.29009248223 30.129451631929076 40116 2192 5495093 SC_20210523 936464356.2340456 24935.097685370598 0.019580119687572728 5.213569463169752e-07 141789299.69509202 3775.4026782774754 137748 45669 46989 TFUEL_20191220 0.0 0.0 0.0025596483972677524 3.582110911863727e-07 235884.49146099616 33.01095618069269 68963 4018 533259 RCN_20190618 16137361.425614862 1731.1794716398636 0.03224665225796914 3.459831830400325e-06 2075442.254825749 222.6798961318343 19041 1119 1997723 OAX_20200323 1470506.1177537816 252.28847168345288 0.02811077470834578 4.821009322101954e-06 154037.71246396683 26.41753048248683 12023 None None XLM_20200317 715726831.448516 142128.8977835746 0.03531924534513496 7.013689009383983e-06 369282090.8371038 73331.96721948916 281451 106799 82721 STORJ_20191024 16228847.617176333 2174.576020453307 0.11294949344332648 1.51288708223609e-05 3039222.276237112 407.0846164591596 83184 7829 147955 NEAR_20210519 2156036227.0703397 50373.226996408885 5.695863657602177 0.00013313416568309043 146296464.9302346 3419.509133593212 59592 None None SC_20210702 631472754.9927758 18796.53703934605 0.013177648412568639 3.9177959762365617e-07 63384070.26703992 1884.4474194110012 138736 47224 51378 DOGE_20190821 333409665.3624437 31012.963341155224 0.0027582296980963317 2.566136313632544e-07 49457654.97856795 4601.323976578403 138012 139311 107008 LINK_20200423 1339172650.6931708 188282.42396590952 3.678901593999227 0.0005167596312143738 418343806.9894368 58762.97201678398 49961 14577 77374 QSP_20200407 5947693.621274923 817.7592344882738 0.008384445166502583 1.150919991241668e-06 259842.20415698594 35.66814278031951 55054 8300 386866 BNB_20201228 4973685729.749473 187335.05265040384 33.49744381518995 0.0012737489264683251 678051299.7817285 25783.075268441393 1416590 82564 1070 REN_20210513 746251337.6761795 14474.874244655473 0.8137482189482973 1.6222309734352795e-05 100667288.59121656 2006.8319630300207 77564 1156 67818 GAS_20200421 15123942.219916958 2208.5998468800017 1.0891953110915016 0.00015908381579164685 9526129.32934011 1391.3510166670515 321078 99284 240659 BTG_20210201 183578183.0121256 5553.895467219994 10.300828120866534 0.00031138725942240244 26256703.91903898 793.7228909055144 83357 None 263524 BCD_20190410 212022212.2805006 40973.05163949526 1.1224754363768035 0.00021714153001145688 10499894.285686899 2031.1919853783297 21121 None 3375137 BRD_20191030 19913020.963328127 2116.110121384709 0.3297069852760462 3.503718948113197e-05 1322173.4829888863 140.5042808287005 None None None UTK_20210727 93365270.05504256 2493.837652902017 0.2072864185345534 5.555237499502232e-06 8376020.184161169 224.4757845332897 77485 3990 165733 OST_20200323 4863378.149149998 834.1100354499233 0.007247814550691486 1.2430031500830893e-06 720652.5603640466 123.59220788320131 None 752 732102 NANO_20211011 699928840.3793721 12789.87160642254 5.249981230877406 9.596013703048465e-05 23488984.009028777 429.3360347569399 139616 112349 116341 TFUEL_20200308 0.0 0.0 0.0029150771050872296 3.2752086065678935e-07 402446.45060837304 45.2165082156824 None 4028 385146 FIO_20211120 64389580.05455146 1107.8000801806686 0.17607340714798855 3.0271594851461224e-06 5845158.571409557 100.49346745902245 None 543 468310 MBL_20201124 5307016.837275102 289.8606512908558 0.001504711075737973 8.195942578713706e-08 2010410.9462279638 109.50416289599495 None None 719430 CAKE_20211230 2984979022.428188 64360.03122127758 11.833804652131755 0.0002542938173142736 102356748.96059212 2199.519865859788 None None 637 ATOM_20210722 2884623021.237014 89637.4688150335 10.485530113811503 0.00032466596326325277 459772111.5050122 14236.033261373545 166535 32517 47947 STPT_20210401 115866008.56398654 1969.9374773890993 0.11372063932861455 1.93528741670976e-06 126765532.36107562 2157.2842106698727 27708 None 1173810 AE_20190117 117372722.30226539 32612.059923137924 0.5187637768064713 0.00014414139855926632 134343988.6407654 37328.2238978189 951 6306 467648 VIB_20210729 5983032.354406548 149.58147379538056 0.032767633759521506 8.190120989991236e-07 972517.8809703634 24.30764201202877 32492 1278 None WBTC_20210722 6249275703.22973 194191.49463924882 32246.61588400005 0.9985009329030415 344782245.4455671 10676.016204745996 None None 177929 TROY_20210120 7022792.069274101 193.9310080098812 0.0036710560796261414 1.0146424034914172e-07 1471663.0260714309 40.675262853915235 10162 None 965237 WING_20210430 72595544.49431895 1354.2971439835492 47.12044913814459 0.0008789326450017199 21281639.937955644 396.9641296457753 9695 None 321336 WAVES_20200404 95811839.14907314 14243.23821903047 0.9578758753489623 0.00014236839506571167 61102946.28151437 9081.686489615817 140476 56868 67847 BTG_20200410 170508134.03360024 23393.485847696273 9.739543880253976 0.0013357488342128077 51999944.08920543 7131.634247996844 74698 None 202519 FTT_20200403 71417258.77289721 10530.87983117055 2.4961277642085995 0.0003661565129858558 4305185.653717224 631.526875076293 9971 None 14034 SYS_20200410 11749516.42543101 1611.4273488793406 0.02013691923920455 2.761746203783739e-06 264172.2163143914 36.23079612550639 58429 4508 925060 PIVX_20200315 15174240.029168233 2933.736889332189 0.24093497949825166 4.6502656896144017e-05 822042.3990342584 158.6617091299133 63942 8514 213646 REEF_20210420 439410881.4192844 7849.812728099032 0.03468126733806236 6.197362964950852e-07 136723668.7014451 2443.1811922646016 None 9725 32523 APPC_20211204 10517054.289842762 195.8917352433163 0.09062258412417686 1.6890994339600352e-06 1546595.4627817255 28.8267383456 25315 3101 1114330 EOS_20200229 3303246185.9474487 377737.05358379264 3.5159004182990548 0.0004029955352966972 3508358443.3954268 402131.06763496745 1465 70248 90022 BCD_20201030 90690176.3820978 6732.69993618635 0.4830771090839143 3.59251655761996e-05 4266052.5080479905 317.25502994546446 27924 None 3539280 LINK_20211002 11985438391.491632 248900.2421556102 26.310431364502723 0.0005462301932627442 1209726617.1253884 25115.1033866744 507083 67863 27709 ORN_20210125 49178759.18957939 1526.2637261906293 2.9133750844282393 9.029864479155463e-05 6752588.062699945 209.29318512967924 None None 133090 BLZ_20190615 12845874.385127768 1478.4097415646431 0.06207961883679532 7.154482090428705e-06 2412155.858074819 277.9934253670083 36557 None 848455 AXS_20210218 104020340.19538751 1995.3159200308717 1.8859046224471936 3.6169663895895844e-05 20786403.627031837 398.6613235077448 37731 None 20130 SKL_20211225 573926905.7418393 11291.375814789375 0.21770664183788627 4.282161644950603e-06 22399176.058277257 440.57862353448337 None 3224 166833 KEY_20190410 9014103.92456055 1742.4641695580194 0.00344961954195631 6.673247725720067e-07 450357.96047764644 87.1212085554519 23917 2829 702225 OMG_20201224 334421604.45370406 14303.731740608106 2.3478919615077523 0.000100700945863511 230030453.30614948 9865.992390240131 288062 42634 172723 CMT_20190405 42560637.35603697 8684.476162427887 0.05315011804170003 1.08585342522159e-05 14544406.325841486 2971.4126719979704 292411 1638 939194 BQX_20200612 10978836.242752872 1183.260052877155 0.049416706474802334 5.314296967548422e-06 959606.1068641868 103.19651363956451 None 30 406675 FET_20210114 45335867.291694514 1217.5228139191775 0.06632473264561241 1.774701895085904e-06 5218806.855153598 139.6436298570002 26679 745 338598 RCN_20190515 14788738.685848868 1851.5858158318556 0.02953851633003987 3.695935885006431e-06 3422128.955494598 428.185663369606 19021 1126 1766498 MTH_20201208 2865657.5105156545 149.1986657561233 0.008245454777125003 4.292944452661183e-07 130278.2163378929 6.782853841875751 None 1892 1719762 POA_20190908 2884926.4597970126 275.58013007328304 0.01310331849294503 1.2516832803188756e-06 55297.18919440664 5.282216653783869 17692 None 617003 SNGLS_20210112 4724907.139301325 133.4616945404452 0.005329974874250731 1.499427746432878e-07 850735.0831575554 23.932866826687285 9001 2113 2388583 EGLD_20210617 1541371542.0219321 40298.291573208946 86.3583720698155 0.0022548528778193614 36523022.30207116 953.6312458264919 244019 9104 30591 DLT_20200711 3273532.6949397675 352.54948906944946 0.0400025792612044 4.3086816758992174e-06 281022.3225324103 30.268941502688 None 2564 4351611 BRD_20190906 16063880.702661293 1519.8385978399315 0.26745500210377077 2.5304497892301217e-05 149988.8272940728 14.190768294769113 168 None None TROY_20200707 6764338.435338159 724.6443650196996 0.003566137152502907 3.8168415314904703e-07 901400.3565187607 96.47700495328378 8989 None 690328 XEM_20200323 332127144.1136079 56962.58350770064 0.036389347100668976 6.240787862222971e-06 26397670.18676931 4527.211198288482 211828 18019 216330 QTUM_20200704 157830948.73265585 17403.061750083274 1.6399249745397584 0.00018090786524729458 277335969.4533424 30594.239961601786 179847 15083 112420 SUSHI_20210804 1563426335.0326843 40697.59161434219 8.074118193901382 0.0002110171178761771 204132998.7773003 5335.0169059877435 119567 None 5495 GALA_20211202 4885795068.117836 85480.18756058475 0.6477830936120582 1.1328010131873195e-05 1052206726.1544913 18400.308023230766 None None 4479 GRS_20210127 28294292.29233197 868.1590335724176 0.3693540129722795 1.13360675230551e-05 7176668.577882715 220.26347821371058 37586 106765 3770172 ZEC_20200308 470603284.0829722 52908.699927671085 50.68311641420466 0.005694455861829368 194124586.78235236 21810.692975030965 201 15575 157694 GVT_20210902 20998684.019971948 431.97337577706054 4.7282791917947895 9.714285515254178e-05 586688.4216410324 12.05355818709905 25828 5739 539934 DNT_20211221 97997289.44105083 2077.0394568961465 0.13044656436907331 2.7676403686645057e-06 2293787.588888029 48.66651075751311 73586 10393 293812 QTUM_20200117 184772265.86395955 21232.52716541108 1.9204647943517508 0.00022057410089659866 318816400.7711195 36617.511113978326 179825 15214 148036 PPT_20190509 35758318.213413045 6007.685362108191 0.9870272136483089 0.0001658194644596837 1067263.5179194123 179.29907355301438 24128 None 552418 AE_20190909 67921033.95844722 6539.247182817167 0.20715485166163608 1.99318528371864e-05 47301528.06428488 4551.218997715472 24912 6351 344855 MITH_20190414 24564383.58513141 4841.813477395542 0.0480287663488731 9.465253642672658e-06 16112096.302274195 3175.2861838761705 64 2001 536282 SC_20190224 102009972.8164544 24794.31358290137 0.00259147220132908 6.297970497767196e-07 2090883.947033937 508.1407165363829 109021 31173 213763 GO_20200330 5793496.671705433 979.7535229600935 0.006301451220267818 1.0675567229275111e-06 944860.9061984526 160.07306529632518 10699 678 690987 FLM_20210707 0.0 0.0 0.41589853370463475 1.2177367798617243e-05 22498854.245373476 658.7588101187399 23651 None 83883 FLM_20210110 0.0 0.0 0.15587740277926604 3.866970490165326e-06 8661943.374178192 214.88348418829017 None None 65365 SOL_20200707 11691026.180906912 1251.8403124276688 0.708409297313418 7.585436063121546e-05 1164528.5162276954 124.69425001940431 59326 1956 104192 ENJ_20190826 58905534.95504055 5833.8366929752865 0.06725145377555762 6.658164224251806e-06 4774436.528788604 472.6884060087766 47875 13391 23439 POLY_20200523 18883252.170681927 2061.269675243921 0.029436376338189272 3.2156909153633875e-06 1320056.8904280167 144.20575758182244 34704 4986 346394 SKY_20190626 26527221.62065905 2244.071061146766 1.7698930534889283 0.0001495127633998087 1010211.3688744481 85.3382033906418 16202 3775 427664 VIB_20191019 4157604.1004413893 522.4848942190475 0.022773421781758136 2.8619292706067015e-06 408938.199569697 51.39114422212964 32101 1123 None REP_20200323 85966215.95838653 14743.925156853771 7.761858236030452 0.0013311618516734457 25773869.339018095 4420.229098600889 130615 10107 262137 KSM_20210707 2001373142.3557117 58594.62283946105 223.3913722178514 0.006540060293863124 184080065.36996046 5389.1728873206785 91193 None 64367 ALGO_20200306 256341766.99057075 28313.54243194197 0.38124127961467397 4.2085236645625494e-05 125595124.27278157 13864.449652196867 15882 811 407593 CDT_20190614 6997376.678453944 850.5278943599503 0.010368537760679643 1.2602604924641045e-06 545226.8768547073 66.27047209447004 19684 293 399262 ETH_20200323 13499834314.773163 2317834.582340825 122.5205987665882 0.021003804299545056 10177508398.873247 1744738.4098583485 452880 455387 19216 AION_20190520 66095045.04018751 8079.546168230864 0.2126890525530919 2.6029680883187503e-05 3727751.461588259 456.2161511945087 68884 72549 289915 SKY_20200523 8033468.999463871 877.5928457917812 0.44478591867898387 4.876566113640637e-05 394586.01661494887 43.261819152365646 16032 3823 462485 ALGO_20200621 185201039.5014648 19796.380170562512 0.231182684162981 2.470867824069231e-05 71585755.77510059 7651.0462384664015 None 911 276496 ELF_20190929 34489328.81187648 4205.5720404430085 0.07476064614622316 9.116190253309342e-06 8965123.825183416 1093.1924568308089 85072 33562 944758 THETA_20181229 34808445.430579916 9050.794329633838 0.04914222743590562 1.2777276285951589e-05 12308510.241785638 3200.2870898125307 None 3807 513510 QSP_20201018 19501438.468818184 1716.7808435881336 0.027239537945438454 2.3968586770091537e-06 443538.9151990264 39.02783151518328 None 8210 255488 MITH_20210217 12562285.12830639 255.47260667296794 0.020331105614649656 4.13153379266887e-07 6485021.002528053 131.78370092576836 24747 2198 386165 RVN_20200317 70019593.86107825 13898.748144588026 0.012108776793218088 2.4045585878684638e-06 14315492.397176964 2842.767751939814 30225 7581 202553 JST_20210611 95898254.40676458 2602.071808096582 0.06671704864009571 1.8172375718255185e-06 104594821.82226302 2848.9515634776035 47072 None 83188 ELF_20190708 97973485.37265816 8576.596028726724 0.21068032042700738 1.8431445530209483e-05 25393338.743629336 2221.545604899147 None 33345 1102918 AST_20210725 21244463.27672482 622.2577410108918 0.1218473462637246 3.5665542821801565e-06 974564.2922982505 28.526156346754977 44263 3698 213143 VIA_20191019 4688300.524936076 589.1773590415391 0.20249683966030546 2.5443889557171756e-05 159530.89768600863 20.045184648256786 40452 2205 4136825 BAT_20201115 292646826.19486535 18181.5377031612 0.19687819568817785 1.2239055808440547e-05 74147537.35211456 4609.427897989688 None 47476 21140 OGN_20210813 314464753.620298 7073.790463669577 0.9087447950625533 2.0440550588398615e-05 47360516.95936192 1065.2881293629973 117896 6055 91977 MDT_20210218 29147847.66874041 558.4936452797929 0.04803273411879852 9.21478048785672e-07 5361553.708647953 102.85806420440512 22869 84 903443 TROY_20210617 19190873.743817758 501.72916468986136 0.010140601323526533 2.649567667785305e-07 3801827.1346063334 99.33531486926358 55548 None 402786 HARD_20210106 19369059.833682533 568.0062989711288 0.4858462043162285 1.4253202155012083e-05 2379074.9032807415 69.79458774634203 13543 None None AE_20200430 40732223.81003878 4665.499929569525 0.11545266857102837 1.3168481362150176e-05 10078868.616457367 1149.5913881429735 25255 6334 661770 AE_20190714 119867084.32161 10531.658434604962 0.3746089106352322 3.2865091344103e-05 34252295.708458915 3005.01348271414 24851 6362 357340 LPT_20211207 1046959835.0085618 20742.415496396006 42.84626686072814 0.0008489828258820324 47399666.61258345 939.206746702633 22423 2217 88203 HC_20201228 29219042.799705487 1100.5421771095591 0.6443097197872155 2.4500043000890676e-05 8958826.915880801 340.66170032186375 12719 844 1198321 SKY_20190522 24700107.80889072 3103.835210160258 1.6452631936197195 0.00020675491343575522 2336521.8959390647 293.62316267028046 15796 3744 440893 COS_20200314 12956047.369293576 2356.8003376997876 0.006774951797523456 1.217846429162915e-06 24013807.60532113 4316.655042982885 10361 None 161709 WTC_20200907 14107218.049592169 1369.126300423578 0.482730952043487 4.692945143739259e-05 3782626.4136777585 367.7339972401381 55485 19427 628603 NEBL_20200523 7455637.56726009 814.4693394946262 0.4561026784858043 4.982448063835088e-05 2311753.6726748934 252.53507935365406 39174 5965 1392040 MITH_20190515 21809401.97392141 2729.6595567342392 0.04068170007606107 5.0896646480235215e-06 8787326.817277187 1099.3775227904664 73 2037 435662 THETA_20190626 137148172.360018 11616.3794069806 0.13693452237269488 1.1582304547351344e-05 11313157.659016686 956.8984878940935 None 4002 231431 AERGO_20201106 10991820.512097716 706.8157266673301 0.04164487769423385 2.672862760242396e-06 2916234.952886178 187.1705774457337 11154 None 393243 TROY_20200305 5621382.192943845 641.648847321277 0.004810349969631913 5.494854593721427e-07 2036694.398027224 232.6512548911893 None None 312111 POLY_20200320 11936006.091013279 1928.9259144720852 0.01954130822454319 3.159871517360548e-06 7124314.962069354 1152.0170333874767 34938 5002 422167 JST_20201228 33403190.902924906 1262.233572725067 0.023202509013533736 8.822813797498908e-07 52708156.44148835 2004.2412207293858 None None 239227 KNC_20210430 426814578.2943881 7964.302457175146 3.0795906576523953 5.746118564963746e-05 127052789.28711753 2370.641011781954 159341 10634 96867 VIA_20200707 4548994.562466602 486.879517809928 0.1963373966742859 2.1014018748134016e-05 244624.1927781228 26.182161220231116 38650 2156 2172267 GRS_20201015 13424079.965547193 1176.050945929974 0.17658756912480877 1.547005189769668e-05 469303.06493047957 41.113555196466294 37606 106815 2941693 DLT_20191017 3150020.657506816 393.41394660943394 0.039265803569770635 4.904004268150054e-06 155496.6284047123 19.420362250442196 14964 2638 7624999 WTC_20190414 59899840.23112042 11806.992103449093 2.158910173486197 0.00042546652635962916 11009283.686891828 2169.6510329588036 55356 20294 1086384 LINK_20211007 12274829797.268402 221114.03008039895 26.894354582472726 0.0004848031127026119 1278611228.7091522 23048.50639615965 521565 68199 27709 RCN_20190524 15715362.207172785 1994.9079977728102 0.03130053128497607 3.980152460913083e-06 1196770.5314498434 152.18045765838806 19023 1124 1774527 AST_20190729 7252428.328246689 760.7728117470339 0.042101055177467685 4.4163605175016404e-06 892232.8399013506 93.59437358395677 32059 3595 228402 MITH_20190804 13232011.404744344 1226.323521446978 0.027888403499181244 2.5841901593008074e-06 3086452.526773173 285.9963011891486 78 2079 826998 QTUM_20200518 148821455.9007848 15389.957960979906 1.5464665480487456 0.0001600955172938477 282720634.1877072 29268.209025947173 None 15087 104792 BEL_20210519 85973784.56330848 2006.6731504626227 2.7275214621098325 6.375562306776259e-05 14042093.706510577 328.23295650329106 17961 None 396046 DGD_20190704 50240935.971014656 4190.094678009629 25.173989897712026 0.0020971898224829955 1608736.5443466376 134.0203091194085 17113 3374 483052 AXS_20210207 52892927.774347655 1348.437902574003 0.9573167175046234 2.4344653048414142e-05 13549069.396482434 344.5540932848672 None None 20130 THETA_20210207 2282306677.572686 58177.38956467965 2.28040503334084 5.7990911817824714e-05 125627607.80246271 3194.7217355873963 83251 5320 46280 ASR_20210819 17138165.43292355 380.2128077426156 8.421938294749761 0.00018696918511453285 4825021.876426593 107.11672026351258 None None 101452 DGB_20200730 313101360.2943039 28229.651806509435 0.023375672440492004 2.1075829664803687e-06 22752686.314723983 2051.4136755063955 163132 22661 156961 XMR_20201129 2162214055.847444 122147.02050760246 121.86286499471835 0.006880215605646538 256623318.57408613 14488.611943455902 326791 184553 74604 BCH_20210809 10501402698.347027 238709.81831440056 558.0480019588407 0.012686267290142052 3895045992.0673103 88547.21169023549 None 600570 320566 VITE_20200806 13348694.415680528 1139.5026978225899 0.025412181377658976 2.164731745766162e-06 3313268.6048903526 282.2401439949599 None None 383254 MATIC_20201129 89626884.51622155 5063.169796454165 0.01872295504932858 1.056940013813325e-06 9265440.95486034 523.0485927576813 58508 2500 55039 ZIL_20210212 1337953023.5318303 28070.42875892748 0.1150606137806023 2.409839500125983e-06 424990869.2726015 8901.045721161037 138860 17804 35643 ZEN_20210125 293518047.9727444 9116.129043466064 27.202925321134867 0.0008431904126592642 32096265.664516795 994.8659260354963 83834 6429 413746 ARDR_20190601 84686220.27581467 9874.822044439868 0.08464283790732605 9.869538729884508e-06 1248551.464145276 145.58381236139124 68309 6547 1048625 SOL_20200701 14164459.013979025 1549.6045657520124 0.8592955544373364 9.400770711909063e-05 4200596.310608971 459.54901739464054 59492 1946 104192 FUN_20210902 314214859.61977977 6463.855234936421 0.02965817841596991 6.095577835768733e-07 26021846.413888644 534.8210804506701 None 406 110852 QUICK_20210916 184976598.78402108 3838.2364503027543 512.5696772169083 0.010634647054576679 69036420.81511424 1432.3476434781035 51622 2554 4536 NEO_20210902 3890672562.1571956 79996.58549843814 55.24369005912823 0.00113541097490052 583332479.8621271 11989.099550419269 412418 113099 106895 FRONT_20210420 83861351.36632112 1499.5584688016695 2.2376002035943467 4.000695535253271e-05 44517942.82803905 795.9542317912856 None None 149576 TVK_20210616 36851029.19235029 912.489660982674 0.16821572860480674 4.167657246630241e-06 8062896.833758543 199.76366476996375 49091 None 67689 PSG_20210204 0.0 0.0 7.9324084397634955 0.00021147838572395004 1398840.1621987105 37.2931451568613 8615844 None 40302 ALPHA_20210624 107220601.41706653 3180.2623497331806 0.37632622593012344 1.115662293983605e-05 34176675.47020054 1013.2067745631174 68044 None 42873 RDN_20210115 13292360.367980545 341.2685111198738 0.20185122105230716 5.1454591291920575e-06 691013.7958778186 17.614871120724086 26675 4383 1792183 MATIC_20210618 9414104125.766333 247756.40100676598 1.508973001754562 3.9533818523875546e-05 1312080524.0128593 34375.40185591269 484060 44179 8165 ARK_20201015 46113896.47741891 4035.158434975313 0.30198950902972466 2.6425342634666762e-05 1237801.6094309432 108.31280777947515 63153 21731 105690 NAS_20200320 10674870.995100668 1726.0530046344618 0.2345142779357482 3.7944879694387635e-05 4660563.848485867 754.0885616664244 23628 4970 1138524 NEO_20190228 578486786.5422939 151545.21548817802 8.86678323658834 0.002325608221052838 253936645.87376946 66603.31436024248 316540 97917 150509 CDT_20200526 3352042.6914819838 377.1951207452676 0.0049707711725539665 5.59156181507983e-07 771114.3771166059 86.74174602829133 18923 290 287726 ASR_20210727 7789839.635382481 207.9516336223347 6.323604724290052 0.00016948071256724488 5189965.96378368 139.09774062302068 None None 109290 CELR_20210804 169279088.5339333 4405.754526635106 0.029974855724578704 7.802795016937812e-07 33235332.640792117 865.1534149110178 57886 None 199421 BTG_20210809 991582386.1139135 22539.889006472447 56.60439035376852 0.0012868040442807818 61346054.134609655 1394.597664027803 101262 None 198666 SNT_20200403 67883354.4701187 10003.354607257668 0.017840696672398605 2.6170484445835118e-06 47614186.382001035 6984.51605894447 110226 5637 188189 MDA_20190905 10812729.767678244 1024.6617326143842 0.5519091703730455 5.225036012155802e-05 1296880.1952003771 122.77827742549425 None 364 3117488 RCN_20190512 14776891.353403442 2028.7590578417398 0.029470541204134608 4.050009258442907e-06 3604810.4737692596 495.393542065295 19034 1125 1766498 SNM_20211202 19519212.642902136 341.436 0.44202538769160427 7.73e-06 1417887.0325013527 24.79555941 33347 9788 None TCT_20210602 16295726.40132505 444.44489249591965 0.028162623142009402 7.677523058357107e-07 1739782.7949818026 47.42890055962567 None None 282864 CMT_20201115 6873653.0118299 427.195327637116 0.008583075213012359 5.333708682707685e-07 367270.2478898995 22.822968009190394 281691 1634 811182 SNGLS_20190725 5615218.112597754 571.2279590155522 0.009688857409670185 9.867930902349718e-07 113053.7223577896 11.514322827856263 9 2176 None DUSK_20200113 9303854.337645918 1140.671544238438 0.035931165791423816 4.40679051164812e-06 201972.9327554089 24.77104163118249 17852 13341 809800 NBS_20210324 0.0 0.0 0.030778406419029628 5.646176289685715e-07 13431211.94866711 246.3902432564558 None None 707411 IOTX_20201106 44668283.97101865 2874.6497925239837 0.007693969711487665 4.938164369519984e-07 2685701.671435667 172.37442826480174 27225 1958 414237 NXS_20211125 48923599.97584459 1021.8120047259132 0.536444122303642 9.377174042064869e-06 258544.48183179618 4.519420575140433 26913 4146 533559 MDA_20190625 18743490.826684084 1697.148678248981 0.9548931567944188 8.646178419526267e-05 376887.73790705134 34.12568833371145 None 363 2360786 GAS_20210127 25164504.49578566 772.1696880716476 1.814760720609875 5.571580542058688e-05 3249383.633177982 99.76082476710343 331335 101611 169176 RIF_20211021 224607314.15126 3388.579383513851 0.2855670367087251 4.30834644640545e-06 2439105.056427168 36.798748634934746 45528 3509 1045764 ETH_20190804 23728815859.720734 2199152.0513975755 221.41611875255478 0.0205165649595556 7118505874.499466 659605.4930958421 447450 444037 31061 FIL_20210429 10384607293.66619 189712.00974627316 151.18941275138496 0.002761166347142044 837919768.024614 15302.896035975498 80010 None 34217 BAND_20210210 303882123.89431894 6524.347213791754 13.356918388710982 0.00028678589844735407 388184776.5054592 8334.700913332978 57262 3809 278216 KMD_20200301 69117091.54206848 8059.599656896537 0.5849395073021995 6.828045969708413e-05 1998393.8477003186 233.27412300483778 None 8404 149248 FIO_20210324 62498916.463291965 1146.9300685124174 0.27708587906092824 5.08303028838184e-06 5362543.980191546 98.37373729211077 55709 320 317954 REEF_20210602 318408276.79522896 8677.854999708654 0.02509883900366184 6.842292858052907e-07 63933919.97277574 1742.9276467856796 None 12030 36544 TROY_20200704 7057804.928994671 778.2213563664833 0.0036490433410498752 4.025805740873113e-07 3330111.5648398586 367.3944374588619 8974 None 690328 NAV_20200322 4678994.243093301 759.31171310481 0.06864681425102358 1.1140071438445029e-05 34285.56423781555 5.563894538790871 49565 13969 1082339 VIA_20190725 7794275.72849026 792.900316089447 0.33668019557085144 3.4249985859929727e-05 144142.68312162478 14.663425184119735 40963 2231 1839156 ARPA_20210624 30448488.33774316 903.1937464752612 0.03089323869307051 9.166727296437228e-07 5868286.792976737 174.12543004294315 42393 None 491421 JUV_20211202 27242306.492905363 476.5307048946968 10.058790463254013 0.0001759499449446708 3178527.1965807984 55.599297677646376 None None 33797 GAS_20210603 131283483.1728996 3488.8929595704244 9.400607684918482 0.0002496593630757889 33082940.87630229 878.6097904183769 401734 111726 92872 TOMO_20210708 167394737.4237658 4926.654666067426 2.0093252804730715 5.913857841609582e-05 12796492.412248801 376.62710827715233 50223 2195 118140 TRX_20210704 4791306599.509775 138209.8670479985 0.06691905713981895 1.928565564799705e-06 940066905.9314554 27092.142969068038 1065043 113629 20767 RVN_20201130 106289135.37247813 5859.461768626482 0.014022322092021226 7.721366043359404e-07 7745746.204674424 426.51809973245435 33805 9970 226414 BTG_20191024 121378012.01911902 16264.433268368115 6.93160693782417 0.0009285679543784881 9774278.717756877 1309.3763215202844 75046 None 318337 LEND_20200113 27839244.02149772 3412.9434266496664 0.02464942435020196 3.0236974656395043e-06 5604901.163581538 687.5424432920903 41984 5776 450933 IDEX_20210418 88896318.97540143 1474.658443211029 0.153648828464263 2.5497888072921623e-06 4639138.935729092 76.98610299880396 51128 1973 4760670 DGD_20191015 28847185.18015422 3455.8525495123613 14.425091772943883 0.001728271931791197 3871812.4181614984 463.88229848353353 17322 3360 556657 ZRX_20210727 570882056.5161619 15240.026307252188 0.6740789221238872 1.806074320269287e-05 74842003.4914651 2005.2580810203242 223101 19605 52898 NAS_20190614 74142339.63174261 9017.33748685669 1.6372633943184483 0.00019909945064060486 15123976.749226185 1839.1515212038873 24209 5154 510015 BCH_20200718 4113982451.1117797 449353.13924414123 222.74132721796673 0.024334004464006978 1392545104.716871 152132.5172016757 3401 303043 166061 JUV_20210105 0.0 0.0 10.566614260567462 0.0003377393990297724 2608026.5473241806 83.36003350042395 2197727 None 134536 TLM_20210702 89926081.72026579 2676.316191153558 0.07254308157791595 2.1574283331107267e-06 7696075.366436758 228.88097235671884 50330 None 9614 CMT_20190220 19670243.778871473 5024.311420860645 0.026288139607747278 6.714700719990846e-06 1519154.5844361242 388.03310291628384 292698 1627 907470 DGB_20210823 1077161674.3302026 21834.04106732407 0.07368370125488061 1.495170046551284e-06 38862191.42728421 788.5812408421693 224723 41124 143665 DLT_20210112 3515096.979593541 99.23202199138784 0.04246402833717497 1.195148575941866e-06 187770.76968497573 5.284801672856 None 2535 None MDA_20200914 5673370.793894666 549.6169056939763 0.2890926645186424 2.7998015302016492e-05 129429.55875487033 12.534979995379372 None 373 1669605 DOGE_20200407 247255676.24604258 33932.67354942311 0.0019952781814612432 2.735665973032984e-07 145502189.34077024 19949.368067055133 139085 152147 104219 DATA_20211104 0.0 0.0 0.15426753516686784 2.4464354448257244e-06 4274218.830481032 67.78224877009718 None 4701 176405 VIB_20190605 7883474.979440427 1028.974885801298 0.043917653156457535 5.728560340781581e-06 1182461.909394388 154.23876076687748 32888 1120 1919556 TNT_20200711 15445996.63270908 1663.4867369577987 0.03598696539973368 3.876175163652272e-06 930189.7422560795 100.19123136300362 17999 2605 448003 BLZ_20200106 3668017.754635896 499.4425318330765 0.017184128201832606 2.3396118685218556e-06 678891.0047482201 92.4307263939217 36203 None 709947 STPT_20200526 8296014.114825263 933.6068583414816 0.011798349876097456 1.3269858376948393e-06 2970684.804687073 334.1193222334682 11159 None 1404978 OMG_20190520 293596519.6724266 35874.35887362435 2.0954962355804203 0.0002560925009106075 184136803.06108227 22503.526183875518 289785 38953 None BCD_20200321 100253529.02197002 16216.82974492 0.5315645425539182 8.572941249260173e-05 18786224.84026974 3029.7958000968147 28985 None 1207769 GTO_20200224 8420307.752836207 846.3463865185226 0.0127260088652229 1.278908065097827e-06 6025617.048693152 605.5480805002301 16936 None 2410144 WPR_20200315 2341180.3213051083 452.71512556963984 0.0038555025314885565 7.441472871950836e-07 223554.4674066629 43.14805893715277 33603 None 821116 VET_20211216 5560199856.19104 113970.30068969313 0.0836987952286979 1.712705467732268e-06 357247269.4199963 7310.252793916697 526300 218914 35068 CELR_20200411 6134337.613163672 894.6548568043501 0.0016193660140292596 2.3597108204192694e-07 4301654.631312354 626.8293203188724 None None 1350205 EVX_20200325 2945825.3773971987 435.808925447205 0.13488413919467898 1.998556946087887e-05 536158.6772430227 79.44178277794188 16783 2863 688824 WABI_20191203 9471336.845267523 1295.8691331117454 0.15993657753848367 2.1890997629792337e-05 252990.72710541464 34.62759734302476 36586 7879 1640926 PPT_20190430 40234254.26917392 7730.3968726670355 1.1087406508740842 0.00021302769786945465 1979378.6198866162 380.3075771363153 None None 609298 BNB_20190712 4119531544.688404 364039.986327932 29.47546617806322 0.002597353842591596 204760017.4465198 18043.284367785574 1007553 54274 760 PHA_20210620 150429686.6825595 4229.607277958602 0.8468500658709526 2.3810746940568967e-05 22886763.982663337 643.5034576271352 77835 None 192691 ONT_20200605 376071859.5613417 38530.68055560471 0.5914878159133556 6.050935674914348e-05 105942431.86422536 10837.93821626798 85447 16477 148134 PERL_20210115 0.0 0.0 0.026315470612455448 6.708119809061093e-07 1542258.9230188758 39.3139753590704 13552 504 591773 ADA_20190509 1996354146.7754104 335385.25677177473 0.06421839008952013 1.0780678367789795e-05 115380635.40484804 19369.553151938588 151193 72961 116208 OST_20190411 17407170.7361534 3279.8368212573814 0.029290495650174976 5.518587695211853e-06 1340337.621000557 252.5314283180802 18150 748 1019811 STEEM_20190613 134676268.3685385 16562.517416517003 0.4323424743468021 5.3099535209798105e-05 3185783.4047943586 391.27226241013386 5693 3744 311798 LUN_20190312 6270735.918385877 1623.8317301101274 2.3226897151592474 0.0006009090129415866 7594639.275972583 1964.828604176773 31638 2246 1371801 FET_20210509 379362986.1052891 6468.0996828345005 0.5523188366252341 9.402372374686034e-06 22537386.656971287 383.664086120801 58681 2550 119551 1INCH_20210704 425675838.2283664 12278.91599559855 2.4675923483412063 7.111447522386542e-05 36038500.60906434 1038.6071509710264 183 None 4913 TLM_20211111 304934198.05046576 4702.196497471006 0.24695507345410248 3.801864834785452e-06 127816693.02400373 1967.733578864258 87097 None 14536 UNFI_20210408 61371881.64586457 1089.6024975451642 24.793500180577293 0.0004405582371253709 64077150.44168967 1138.5934310607158 None None 94212 PIVX_20200701 24906715.73677799 2722.5790599331617 0.39204229569266824 4.2863952616411006e-05 341548.7605770136 37.34324089624193 63719 8485 358751 REN_20190207 12005710.984145246 3523.9972203512243 0.015958462828667686 4.683884089456092e-06 267039.27422119706 78.37728615927041 5554 799 10683667 DASH_20210624 1300639087.104392 38580.8673607555 127.45424848592847 0.003783278912943472 573627486.3505416 17027.22976107283 398935 41245 53288 FIRO_20210218 77403879.07873803 1484.5248572982437 6.699863007300093 0.00012849631430890445 8567195.769713944 164.30978949444233 68568 278 232997 KLAY_20210809 3007180754.535418 68361.20041044898 1.205830522405606 2.7412495448693358e-05 66677671.73906581 1515.8028753743824 None 691 67261 SSV_20220115 0.0 0.0 9.257530851611623 0.00021463999403150728 500143.88941345044 11.596059808961842 None None 358994 TNB_20190703 15787108.467271237 1461.078537210015 0.005741356268976081 5.308620103392347e-07 2043210.7267775077 188.9210324440006 15730 1487 481694 GRS_20200308 15376504.26876539 1729.9550879637097 0.20630457439542235 2.3200508020579043e-05 9578888.009386122 1077.2183250965388 37762 106867 3955402 POWR_20211225 202768751.78747052 3985.482113144518 0.4704515564373892 9.25161440808729e-06 17890994.06549455 351.8334166535214 102274 15509 175165 DCR_20200526 163670098.69613776 18416.295347420026 14.189318354483202 0.0015968204426343613 16661301.600763114 1875.0095200020023 40500 9785 320960 MTH_20190130 4955141.532512139 1450.9038456698888 0.01649295220739449 4.831823415070519e-06 365690.49991847057 107.13375616178106 18696 2018 845285 ETH_20190623 33084459417.56612 3083678.656962803 310.65499867231955 0.028961418391185857 14958216407.156822 1394508.9105439533 444044 439917 37001 VIA_20210602 18273870.350526497 498.3962140382845 0.7886133737101166 2.1493552925064803e-05 367214.25778341497 10.008375900821942 38237 2289 788851 ARK_20211120 302347244.372545 5201.204728731851 1.8761002230352912 3.2246762675155624e-05 3240963.89224489 55.70629553195446 76512 24236 148315 BEL_20211120 98136587.07309033 1688.195769112788 2.0502201142177707 3.523956803760119e-05 5878742.582538568 101.04493062782748 35906 None 305830 ETC_20190626 1035454087.2686859 87721.71649191264 9.287935206645884 0.0007855995136613567 950900690.6315353 80429.83757744725 227975 24693 633324 ZEC_20210429 2658108165.8872814 48544.92574014043 240.77743729573413 0.00439730894454443 1567778073.9780693 28632.26980564987 74919 18985 91916 IOST_20190716 93343111.20078655 8522.91183777129 0.007710685963341584 7.05100036377897e-07 37150839.36755974 3397.2409606711067 197616 50384 111016 MDX_20210710 886699042.340892 26143.4850163719 1.6809840494047823 4.9463739924933455e-05 53500426.86802332 1574.2750214732043 3899 None 12360 WAN_20220115 111261947.5326071 2579.726980962291 0.5768327882522739 1.337448373283234e-05 2267892.4737010333 52.583507066630055 131708 17423 242413 SC_20190613 134494531.559534 16557.392551218054 0.003272684050004262 4.024754118418644e-07 4085814.688899538 502.47439853603925 109586 30891 231411 CDT_20210105 4768271.964644856 152.40769351820555 0.006933986999589449 2.216301782550193e-07 261380.2861502215 8.354466112389808 19263 293 987559 SC_20190920 80140599.66364898 7820.344860400476 0.0019004255979769367 1.854321177837892e-07 7721242.448460045 753.3924720147932 108782 30570 208870 BAR_20210902 58475877.67112318 1202.3295389115333 19.819409729374687 0.0004073438124552622 6851288.218796677 140.81296574327965 None None 40531 WNXM_20210421 144817736.04289848 2563.3489922959116 73.26267803978023 0.0012993538900147583 115664341.25178373 2051.370708287454 None None 101327 CTXC_20200320 998861.4572456973 161.51804333016773 0.04693691824744611 7.5944873455108354e-06 4524062.646238364 732.002393851773 16603 20064 396619 ELF_20210219 136970283.55485246 2649.9880784851057 0.2999556875912111 5.8018005750508425e-06 56648807.33857709 1095.7121221212376 82700 33320 415664 DOGE_20200412 247542049.6224454 35970.50456487788 0.001994546570749971 2.8982892659024836e-07 128506937.97806722 18673.43106437385 139237 152455 104219 STEEM_20210207 87126696.0258072 2221.870485526602 0.2323239987814404 5.914502596332673e-06 14245638.944068562 362.6653680336113 12209 3859 197343 DUSK_20190821 17910288.735951517 1665.971882949911 0.2160310812929369 2.0105378138472115e-05 17153160.731901698 1596.3942814193108 20500 13300 200786 SC_20200310 74188560.69049796 9370.509239816774 0.0017726183213298825 2.2366920612916707e-07 5236962.696614724 660.800621761085 107902 30190 227333 ACM_20210724 17186616.735421438 514.1693318003722 8.702257799142217 0.00026023930119700885 21425891.237477805 640.7370468516749 None None 42486 FOR_20210909 37420639.91629716 807.4000312905978 0.0662391702009406 1.4307466164704531e-06 52172838.82007948 1126.917991077537 34688 None 147912 AION_20190922 27678261.2306442 2771.546383454022 0.08022711384469072 8.0327844819283e-06 2693096.2834305605 269.64776616242966 67341 72555 164304 PPT_20190605 33768415.75250038 4396.099078544512 0.9321365133623228 0.00012134902914912087 1645901.8292449522 214.26967637303815 24019 None 688169 BQX_20200506 4508195.643021664 502.7070602501031 0.032055874459095496 3.56948375810457e-06 344378.4211704368 38.34720474021517 11198 19 369703 AION_20190929 23503752.67962262 2869.764011258929 0.06812145000878995 8.317500966536655e-06 1372780.0394620742 167.61386176592998 67355 72559 164304 AION_20210821 100249707.87655817 2038.4824262693066 0.20254338395881816 4.119894953135482e-06 10098678.880800435 205.41523174514043 73745 73424 623135 EOS_20200905 2831505865.286233 269891.40775310405 3.007485164515232 0.00028683541887851574 4126513324.1329584 393561.43524858897 191107 72641 82491 PIVX_20190131 40740048.002030574 11769.335233859538 0.6909526162389054 0.00019964963908402386 903129.6449919323 260.957847804686 60695 8592 177596 RLC_20190220 18475261.505514253 4719.080679887125 0.2640654902420197 6.744945682387793e-05 126109.86089174173 32.211863842893216 23842 3262 504378 LTC_20190321 3675806639.773616 909317.3743545146 60.283074139388965 0.014913047138501868 1978823764.7343483 489528.65300193836 440386 200451 251595 NCASH_20190225 4929040.676706417 1311.592416055558 0.0016917273283904271 4.5159528492851983e-07 332841.2527040409 88.84974418061624 60309 59604 682979 VIA_20190302 7841462.887563157 2050.981384042759 0.33386296813264826 8.739275766744637e-05 114024.83800967876 29.84741042705424 40538 2228 3438029 FTT_20210813 5206566701.176914 117108.45307818438 49.14277048815236 0.0011052668742872205 99164697.6561876 2230.3068046299018 None None 2262 CND_20190818 11787829.197509736 1153.2414394390446 0.0067598785770798895 6.613407753067617e-07 215591.22971607134 21.091986991185824 36010 6121 336080 QKC_20190801 59367006.88361912 5902.869818344755 0.014827349571567977 1.4743897053448945e-06 6066683.329048968 603.2538318978476 50899 9231 258370 TROY_20200301 4572536.867238483 533.1436310031842 0.0038821051128874046 4.538929910949324e-07 665709.6911239282 77.83430744882232 8160 None 312111 ENJ_20211120 3384480175.7874684 58204.22432512964 3.608663191325066 6.18711560354355e-05 1272849346.846091 21823.222720710448 368391 41142 19557 OG_20210710 4883504.998590657 143.57881168795294 3.8130292720820704 0.0001121116595030636 1453179.9247609472 42.72676690796206 685016 None 236216 XEM_20210427 2892840376.177559 53697.57726813941 0.32175544913268567 5.9710474079775664e-06 310189771.53258437 5756.414805975819 305273 21121 27283 FET_20190512 0 0 0.11350920921145179 1.5585119960887155e-05 7332942.617369697 1006.8327596672088 8236 185 174758 OAX_20200217 3775286.6121022757 378.7167395046957 0.0722312093366193 7.260559075911551e-06 1475162.4885931783 148.28084000484162 12055 None None XVG_20200806 99811338.00316136 8502.409484326774 0.006109399667942083 5.204280267098349e-07 3310249.553299023 281.9829666702458 289910 51587 218835 BTCST_20210420 479361919.446823 8565.717963229376 65.80239677600007 0.001175854771423033 39879352.16749826 712.6233818965576 None None 111287 EPS_20210708 109799136.1832287 3230.583731811892 0.4857830318640089 1.430171399410912e-05 29271165.104319062 861.7588596909043 17995 None 20273 WNXM_20211028 121852350.06393465 2081.9493834753785 54.68120813261663 0.0009336982126584513 2650871.381568769 45.26443280030285 35022 None 115521 ONE_20200707 35326544.843194574 3784.3914797071347 0.0051650502538786855 5.52813179973865e-07 5376851.2868613545 575.4821564232176 75743 1307 139358 STX_20210202 405867219.47896415 12155.794135697277 0.4417095522191765 1.3225444958705716e-05 7188976.214167942 215.2487052911757 49208 None 62343 BNB_20190305 1649930184.4379025 444333.99150562676 11.422684008294041 0.0030761827542672045 72915267.09626305 19636.425817386356 924864 47828 1139 ADX_20191026 6658546.097825699 769.8433156208937 0.0716802191859599 8.279294379309156e-06 232554.5330880431 26.86079172949611 53291 3830 323410 STX_20210909 1483301986.6666317 32004.21139582028 1.4075290793874085 3.0402214608188287e-05 55128309.27337601 1190.7552846049907 75344 None 71399 ETC_20201229 688876963.0854793 25406.18938212839 5.930130955960209 0.00021847931063749158 784320560.5155376 28896.126688065582 246634 26218 161974 POE_20200425 2453697.69437097 327.2332871882455 0.0009743862320750758 1.3000025518382388e-07 75333.35304446278 10.05079382 None 10371 1042825 HOT_20190908 142478921.4967994 13609.005562316413 0.0008021584049467815 7.661889969475124e-08 6637911.029844537 634.0261926347123 24331 6656 436903 DNT_20191108 4995322.689264101 541.8406854276836 0.00664959835519692 7.212793156170428e-07 508647.3997687213 55.17278319657354 59789 6223 369438 SNGLS_20210602 9152877.297507102 249.45124799306708 0.010284131794951797 2.802823011158057e-07 193419.55085799325 5.271429603991968 None 2137 1063291 SYS_20210806 103755660.23708385 2530.4178391853056 0.16798995108950365 4.102083686539398e-06 1609139.7132112388 39.29297987240703 74427 5466 426282 XZC_20190321 47262071.40796672 11689.81562824487 6.718069079536244 0.0016619404748865279 1675414.7336185656 414.4702183107259 59614 3950 302674 KAVA_20191203 13970896.751155874 1910.9379556452886 1.0226746718940707 0.00013995286339973036 5306621.934920466 726.2103532851196 8131 None 351721 DLT_20200730 4234822.055200862 381.36766166309064 0.05201635185467701 4.690147569245472e-06 1929236.9823547413 173.953109371625 None 2563 4398873 ONE_20200704 35722458.97928818 3939.4936120162815 0.0052196717067923976 5.758600915009133e-07 9446224.050974986 1042.154325386759 75608 1301 139358 ELF_20200914 59526128.177152 5766.6892514546835 0.12838906870489525 1.2432112895851554e-05 31487478.156802677 3048.981406281555 82756 33359 608633 DCR_20201208 334272658.9097469 17403.636325826177 27.167061188175627 0.001414959994098978 8863446.590154571 461.6407438416759 None 10001 378576 WABI_20210722 7655284.175555088 238.20941206552558 0.13803654484095884 4.274058374720599e-06 610139.1648157362 18.891884103085285 45427 7892 684219 CVC_20190131 16895681.97014772 4885.44197178341 0.04930167375868969 1.425574100444372e-05 480369.804685467 138.90050783000507 88428 8227 323331 ETH_20220105 454574318762.6068 9814973.180248322 3794.908130100449 0.08262833779177864 13853786397.222265 301645.0735777178 2055486 1199359 3768 DNT_20201208 41158081.96343843 2142.862334887008 0.05465028884329475 2.8480755467717134e-06 4268703.605338713 222.46159374641806 None 6115 340409 BTCST_20210902 163247377.9421988 3356.565358548467 22.423816667790742 0.0004608715948647944 5102012.495900442 104.86050037071637 None None 1770036 AKRO_20220115 51050371.538630255 1184.6030936239208 0.01896052872918181 4.397499443644288e-07 1983604.4962194725 46.0055718547035 51290 None 261960 STORJ_20191220 14438656.747787707 2021.3226580743344 0.10116603436776256 1.4157724006373966e-05 2629546.7447703504 367.99304536326537 82760 7868 146145 GVT_20200314 2482152.9720783206 450.84866722120256 0.5661425728103614 0.00010176820902935983 490519.3632068575 88.1743919027005 20710 5604 171820 BAL_20210112 174868892.0736433 4929.0218393342 16.18915177992575 0.00045540834935625603 107916375.74800684 3035.73770979462 None None 83798 NANO_20200313 49075982.701760404 10197.586830372833 0.37166265958238454 7.755780384149248e-05 5153253.028627269 1075.3703048590946 97637 49309 295755 EVX_20210210 10830198.312312016 232.50777586627694 0.497223973342728 1.067129211820031e-05 1251380.9611558903 26.856814038699213 16930 2811 1099607 ARK_20200523 31398220.306368176 3430.006826851745 0.20953403643668547 2.2929696866199525e-05 2402169.227315067 262.8738182127797 62039 21953 92164 XTZ_20201226 1533603579.423372 62133.568195031716 2.0287842975173542 8.227644576516792e-05 107254306.87007768 4349.650760347104 77310 31140 166360 DASH_20201111 674743536.761524 44174.08139880866 68.80053102956444 0.00450423026290564 257394867.70853353 16851.11634023837 321002 35505 71186 WAN_20190805 29543102.616464287 2697.7738230200453 0.278308137487306 2.5414135332837125e-05 2163531.757225723 197.56622774831135 108091 16901 529577 IRIS_20210703 81066403.59075502 2398.424019985814 0.07756421640697082 2.2906423543316505e-06 5387500.775929063 159.10477837598125 26024 None 777699 ZRX_20191022 194438433.3683193 23677.659792315855 0.32370665041651536 3.938877971270596e-05 30039881.497101657 3655.2671171959364 151297 15952 142278 CAKE_20210708 2932038479.3874593 86292.78098362745 15.23864298751318 0.0004485046259208773 254486346.20509785 7490.0569296239355 954811 None 824 NEBL_20200914 8496038.87392866 823.0765247370416 0.5042218489246029 4.882458462872751e-05 131893.6982432238 12.771471616326293 38814 5943 419992 LUNA_20210702 2473586475.8207736 73571.02540753933 5.92575449034368 0.00017618992745342126 142549434.88240632 4238.409578288269 None None 21739 UTK_20210401 267935852.21031824 4555.23646196943 0.5970812203186225 1.016107348022606e-05 16362826.644463306 278.46108405464247 65753 3638 69203 GVT_20210219 23205607.47649944 448.9860657494417 5.229714249338079 0.00010118827854813946 1766187.914400089 34.17347605049241 22220 5499 211952 BTS_20210814 155915560.85140494 3272.2844756119785 0.05770899531533596 1.2088393545701531e-06 17661902.304422796 369.9666311204306 6527 7187 184072 DNT_20201106 13377585.984761648 860.921247848193 0.018588909428474795 1.1966908400876568e-06 14532582.974224519 935.5583228260011 None 5977 606726 HOT_20200629 95621109.12706146 10484.956660189144 0.0005393299304819184 5.9135747219569756e-08 10319094.044590395 1131.4546114853972 25391 7096 595163 CVC_20200518 14122476.011544006 1461.6427290467602 0.021078322405289555 2.1815563120100898e-06 6437810.429199485 666.2980908679953 None 8017 119250 BNB_20190902 3333917857.6858582 342757.02905919316 21.438610114224364 0.0022036103624546704 155456572.94184902 15978.914361573234 1029308 56007 1071 SNT_20190411 98379091.82184625 18524.341152217177 0.02798916498369098 5.2738477162728624e-06 19548875.522053204 3683.48939983586 111114 5755 338064 CHZ_20210711 1386120287.6820958 41105.50846571078 0.25882409371466575 7.678150582995673e-06 342604674.7183399 10163.544843030231 362803 None 35776 VITE_20200127 5940174.271082461 692.0619887789828 0.012217320207720508 1.4216557756162972e-06 5010093.5066408245 582.99432682403 None None 534616 LRC_20210825 577763022.3077424 12023.010292059977 0.46243297981861675 9.629007447195588e-06 598289429.6819912 12457.877412302956 87340 11355 344060 LOOM_20210219 126521880.69277242 2447.8409973437174 0.15028291816241635 2.9068010945779892e-06 162180844.901221 3136.9330809038665 25574 None 256262 BQX_20210718 427867470.7904248 13535.942124119429 1.9214571015648219 6.090906185951493e-05 1664608.755125259 52.76712009612049 97302 6266 24773 AGIX_20210823 191481261.0570525 5830.0 0.2921648358642812 5.921545863690362e-06 1434822.6630419663 29.08073512793356 None None 189505 THETA_20200315 61272387.5853002 11859.31037587586 0.0614750816162274 1.1834690480964325e-05 2730745.3422068823 525.701228167588 None 4026 385146 VIBE_20190627 6284693.48915548 484.1960370780817 0.033491396087872785 2.571175807434914e-06 1459441.217119662 112.043103249142 20509 None 1430855 GAS_20210428 215959564.38094538 3920.0742855234635 15.512789597355088 0.00028151033783522866 30116441.908028822 546.5225762727895 383661 109568 88657 DUSK_20210813 50181459.120752 1128.7430413999525 0.13917055751215518 3.1304072392048543e-06 3404052.5287948092 76.56842703847154 28182 13641 324432 HOT_20190826 150810086.68070152 14935.802179203796 0.0008490481113492677 8.405917556103246e-08 9427071.558147658 933.3179740232317 24222 6647 386677 DASH_20210819 2185236195.6629295 48479.7974897399 212.13001979005233 0.004709349526974301 506125441.68227583 11236.135327451933 402670 41952 76415 LINK_20190531 367050700.18846357 44160.915014171325 1.012296684782962 0.00012186590774829447 69958574.32441154 8422.00245538573 13859 7141 259292 SC_20210711 626791940.1350174 18588.26504182813 0.012953781464964844 3.8428062580938375e-07 30403056.31099517 901.9223874747424 138848 47361 51378 TRX_20210104 2143782786.0145097 64082.59992116609 0.02976869123649589 8.929836044207548e-07 1345786636.0236819 40370.11205734053 557011 76737 32747 ARDR_20210114 79700098.29205424 2143.3121316285237 0.079233846916463 2.12012099662637e-06 7250295.9158526715 194.0017454808169 64266 6290 None KLAY_20210805 2690988422.457293 67670.87381117491 1.0830105365308658 2.7235326337528732e-05 66915002.74667424 1682.7647333146374 None 684 67261 GTO_20211221 37373576.06730232 792.7677233133061 0.05639766148590348 1.1963063319351634e-06 10189605.1331518 216.14174807151159 14893 None 467835 ETH_20200530 24504031642.684784 2599969.916195513 220.49116734603788 0.02339494211588925 10335270102.499737 1096611.0285070655 458814 463248 19199 NCASH_20200329 976101.146439843 156.33727013909888 0.00033687887021399844 5.3882797548732175e-08 683574.7535870055 109.33579785979279 57631 58297 679947 NXS_20190614 21485731.934403896 2611.51762510712 0.35984747365538783 4.373823627095288e-05 323978.39939355245 39.37847231610867 21317 3519 793300 KAVA_20210104 64796765.29412437 1943.7350660621087 1.369585420646945 4.160634811233016e-05 20122686.4657306 611.302869778639 None None 85719 FIS_20211111 46194923.77740894 712.3429324902093 1.7168610713890786 2.6445917928346962e-05 10391900.580392515 160.07314420976851 None None 263918 POA_20191216 2866516.617230302 402.81345009845376 0.012950758676169101 1.8198792344812587e-06 47544.298412778124 6.6810666126156 17578 None 392538 ROSE_20210731 116353457.5173516 2787.1916036210055 0.07758205868844935 1.857838937931164e-06 18731415.63749369 448.5567142998435 None 1690 216082 DOCK_20191019 6934313.257136374 871.3019964429388 0.012385095057691978 1.556197081058747e-06 24246713.99085912 3046.6189691783366 196 15144 183955 REQ_20190804 11066633.52173677 1025.856115896042 0.015166570942438284 1.405362030886323e-06 126343.97179670357 11.70726207448933 41429 29643 541329 MIR_20210708 308867992.2325212 9090.289296660889 3.9723958650239117 0.00011693475381524413 49605318.346185245 1460.2234736499677 49414 None 16054 DGD_20190712 45594671.20128612 4006.8228912445625 22.797346999316563 0.0020034124473285054 2156385.9406520026 189.50145536127175 17150 3373 483052 DLT_20200418 2476264.1461550947 349.78816838404646 0.03008822658975166 4.26519991866354e-06 44294.155067926076 6.2789817814433 None 2580 None SFP_20210731 104840543.75753734 2511.4052432562376 0.9694143735272963 2.3207593329310583e-05 12288127.110944165 294.1753955349605 371116 None 25557 SNM_20200412 2921379.8803386237 424.4722356031017 0.006671296385043714 9.699972400530359e-07 18871.652998807884 2.743912167524288 29911 9679 7470249 LEND_20200927 707398385.4765244 65880.89881959266 0.5651967961973154 5.265014209512391e-05 129809603.65536603 12092.23782539056 69168 5918 16095 WABI_20210324 28535226.070307165 523.4433184807463 0.4775246109178693 8.756706501831075e-06 10375131.41188202 190.25612212352544 42048 7452 540994 CRV_20200914 89617543.31037937 8681.843411883492 1.908104601878919 0.00018476473166245604 87449397.21690361 8467.860931163996 None None 18839 APPC_20190629 9783285.677892553 789.4245655333066 0.09184103557213598 7.410758715601585e-06 1512722.3154352382 122.06330224348947 25517 3366 1293635 GVT_20200621 5923721.374506671 633.194288055244 1.338347148328796 0.0001429871728719457 305532.4938514577 32.64267239698432 20384 5532 238169 YOYO_20210602 2950639.51893967 80.47488227850465 0.016964006799559544 4.625275151289882e-07 923112.0418663691 25.168860396895386 None None 855012 TOMO_20190903 29846318.829865076 2890.0873277599408 0.4630401649471598 4.481847955220616e-05 2547692.8852914725 246.59571702115116 16995 1316 270545 LOOM_20210107 31231252.979544554 847.9466576683212 0.03730563131825833 1.010735907390874e-06 35861278.10772251 971.6034868619298 22987 None 358251 PPT_20200313 6455801.841064539 1341.462691313055 0.17794993329021075 3.665350174680551e-05 917204.3625151841 188.92253052323758 24100 None 1098941 SNGLS_20190531 10077461.416631628 1213.8733323399968 0.017063935254539874 2.0554239896247304e-06 1039900.558681461 125.26047029915726 2 2180 None EGLD_20210212 2705858792.8490763 56683.46872128889 156.4286457658374 0.0032762551591853394 516882243.656398 10825.626656677221 149949 5909 47707 VIA_20200625 4325954.331380017 465.41080006425915 0.18671423659054057 2.0087780771201387e-05 222048.16342986852 23.88920582102562 38732 2157 2263015 OMG_20200506 99020737.91974163 11042.746783145018 0.70872459726227 7.87633789239306e-05 103556619.93548438 11508.65840915868 278729 42804 632859 TRX_20201124 2240811283.8710995 122389.47756877179 0.03148071451255826 1.7156987949857858e-06 1448663967.412368 78952.17950778168 544452 76090 28670 AMB_20190520 6936018.978060197 847.8681801773356 0.047939862242259386 5.867059450267137e-06 2201643.2023329027 269.44532070384355 19596 5691 582766 DOCK_20211021 70448412.58601576 1560.1781752227776 0.08392141822127293 1.270792722967298e-06 4351876.072689793 65.89893928922936 54672 15206 233452 UMA_20210508 1515431580.058369 26446.306807673547 25.205913174186225 0.0004398200461684285 58623275.46892272 1022.9223414802357 37279 None 112681 AION_20190905 24780895.79650195 2346.7455078493063 0.0718506396165339 6.802245725307721e-06 1216409.0027772745 115.15990648834114 67429 72571 168998 DOCK_20210127 12731633.64305647 390.9333107639114 0.022444888431118807 6.890908659819007e-07 5395670.8036971325 165.65497654770832 43364 14856 234839 OST_20200607 6693814.746071599 692.2594504066379 0.009679870602524898 1.0010707134140314e-06 967831.6351408857 100.09099762164541 17661 754 914098 FTM_20201018 65257086.38844641 5744.812927476832 0.025968683921441395 2.2850338178382423e-06 8194230.030623964 721.0258628340288 None 2800 108086 DASH_20190613 1388462569.5615444 170931.26047825348 156.81868452093235 0.01928559667621427 552694157.5779251 67970.45033830198 319858 27159 107403 DOCK_20201018 5777268.409618789 508.4337679987175 0.01032635049033572 9.086351913962505e-07 1519616.8083371194 133.71396901399066 None 14898 206810 NKN_20210916 260535719.3071447 5406.152306233354 0.40132033275926166 8.327974071769311e-06 15815842.184645936 328.201471207135 31109 3490 223238 CND_20201130 16499051.525792751 908.3567647641049 0.008385991740468658 4.615361291068817e-07 69754.15260790607 3.8390285347436413 33959 5901 383429 CHZ_20200430 35300994.561162375 4038.2601008088845 0.007393557709202735 8.450093318152735e-07 5029350.658362124 574.8042290922425 20478 None 267652 REQ_20201111 19976887.665719923 1306.0562818228898 0.026431495992191516 1.7302635908604006e-06 4984101.007338858 326.2701630175132 39457 27502 293943 CTK_20211230 98966821.12763175 2128.9594552840836 1.5894777791589496 3.415591045148199e-05 8793459.154314063 188.9605550776816 None None 1041807 SKY_20210617 25850058.009143278 675.4183083058208 1.27340187237159 3.327183784757738e-05 424458.0150200712 11.090370255660583 19460 4399 389358 WTC_20190430 55757309.828084305 10712.913815973461 1.9569470303381562 0.00037599526256837374 5161779.634827368 991.7512630792227 55637 20274 1107833 LSK_20210618 403377291.8183531 10616.976690391843 2.811446233592205 7.365751743684676e-05 16842438.979714375 441.25768012367473 196104 32524 424383 CND_20190716 18634419.940937515 1704.015730987175 0.010632858981801274 9.734631629121254e-07 355244.3647796342 32.523454278569574 36191 6138 486164 KSM_20210610 4599287822.632565 122530.29719548646 514.7658362638338 0.013744075727667433 770722355.9135642 20578.029228911568 78399 None 93747 NANO_20210826 893396806.1811358 18226.23228569034 6.704755219848864 0.0001368201287624624 50945661.590105794 1039.6191583567213 None 108770 81313 UTK_20210202 123032176.84043965 3687.7579839518016 0.2732714608807178 8.181469280433071e-06 11449719.525242252 342.7929439226488 58465 3215 107548 FUEL_20200701 3168761.280345951 346.4721951851672 0.0032001240203914207 3.5e-07 70144.82807657291 7.67179324 1 1465 None BAL_20210128 209556244.87553853 6919.506798212468 19.4102986568279 0.0006405585322868899 90068804.41597626 2972.357210033846 38973 None 81450 TRX_20190608 2237079913.5808883 278037.9755523662 0.033844688958039645 4.209918686409199e-06 915529189.115171 113882.07603230012 427774 70802 107576 AUDIO_20210731 241720861.32043415 5790.307993141332 1.1291513542616856 2.7031665872249045e-05 12520288.447208297 299.7332931955893 54365 5946 34548 EOS_20210909 4608167355.826014 99427.33410247888 4.7346840248244675 0.00010250149928541431 2729686606.236531 59095.172613748364 None 92991 80148 PNT_20210210 38689552.24318668 830.6644337804853 1.1148643597707637 2.393721124582301e-05 55846060.45745132 1199.0686891200696 8452 155 785804 ARDR_20200905 61808301.054773 5891.398491174954 0.06186722655112937 5.899408144724675e-06 5326559.5169645315 507.9191415146386 64080 6289 944701 PPT_20200719 12355283.9448476 1347.8297739918137 0.341052757178843 3.720522026685927e-05 757792.9263198406 82.6671303689625 23650 None 1142876 RLC_20190314 29124407.105028413 7532.698720147275 0.415588679021823 0.00010750354131373191 10255943.093529852 2652.98420703292 24223 3290 901823 SNM_20190716 5979471.365294415 546.13718026182 0.014615306810786141 1.3380655964035725e-06 206226.8097237985 18.88054782016839 31244 9973 14424702 BTS_20200914 78010841.44205305 7555.571583768782 0.02919361317987142 2.8268628984621893e-06 29689422.97187579 2874.872930556394 13323 6945 99740 XRP_20210704 31138455875.288597 896474.5366210592 0.6747676923040596 1.942652701559296e-05 1807223370.9838073 52029.86752336644 1906770 321586 12075 CAKE_20211207 3043583762.080723 60299.618839385716 12.319469455503897 0.00024391523206690853 264989138.5240041 5246.564184581511 1296474 None 579 IOST_20200713 95745849.2786695 10317.64191543805 0.00636700593912289 6.852731305944508e-07 34434413.00640993 3706.1341275166915 68 52180 403755 WTC_20190130 26127019.644298118 7649.080677684251 0.9869416417114786 0.00028911112241960445 1400980.802656574 410.3982598626325 54575 20441 700801 POND_20211011 73394560.69205412 1341.397435331857 0.09119618166806062 1.6667829997172327e-06 37031166.87785691 676.8147337173089 23824 705 376291 MATIC_20210114 147113000.10198012 3950.869960158189 0.030104752926420758 8.055360336706341e-07 42907545.84453304 1148.1102129827511 73118 2687 49015 LINK_20210325 10316828244.097786 195920.81120410917 24.764914023465142 0.00047075319882814814 1377268080.5792634 26180.31921945164 200511 45186 28260 AION_20190701 40196265.70267106 3704.9701016719446 0.12529027396629933 1.1615914656873514e-05 1952081.8175935026 180.98145273830158 67504 72576 281038 KMD_20200506 63447894.60560516 7074.469559186334 0.5338860202553075 5.9332873556238156e-05 2746231.6877986407 305.19963307968146 99677 8379 170099 ONE_20220112 3506061693.377199 81832.63201932964 0.3025884258022109 7.072164388069049e-06 288421865.44567245 6741.060369832639 317752 48774 7348 BCD_20211007 478278983.9636689 8615.532385671 2.556933978039511 4.6087015737126494e-05 27042330.58167248 487.4198261629335 35368 None 789981 RCN_20210509 71560268.3521445 1220.0951752936567 0.1383223376362801 2.3547234675898337e-06 1492133.7683799837 25.401265343176508 19796 1160 694898 BCD_20190524 196154372.3478143 24899.83501723933 1.0411094851812526 0.00013238671388025557 5504178.07055921 699.9072218098554 21182 None 3558878 WAN_20190726 32283520.68739974 3259.045311668031 0.30353146116144897 3.0664536882476976e-05 3705760.375669262 374.3777507692651 108293 16921 474498 QKC_20190613 63089032.065521464 7758.606564802346 0.024182715400609157 2.9700781766196382e-06 10080774.517024994 1238.1028309039732 51154 9197 157671 TCT_20200325 3020422.419288577 446.91764998958035 0.005220105728872764 7.734672708981323e-07 1091130.4154956574 161.67367262302858 29 None 409993 FUN_20210105 54219152.67139421 1733.0001443770645 0.008979788739529418 2.8701988901221703e-07 21733090.626112837 694.6521171417061 34220 16516 359571 QSP_20200423 5633920.717600661 792.0689395383471 0.007915524709292372 1.1126299979101177e-06 316150.36416825943 44.43904756065877 54833 8287 395631 RCN_20201231 18025942.99394354 624.2309816705122 0.03512521874181847 1.2181977071536974e-06 390819.63970065606 13.554238408974115 None 1130 5417680 TFUEL_20210523 1477714568.3848517 39316.1728552842 0.27846587135392287 7.4146695045342845e-06 61039321.67844614 1625.2849759509936 161969 17539 16888 OAX_20210616 8878817.348846506 220.70961041038623 0.15585557381599438 3.859315522024166e-06 216602.87867057958 5.363548003457405 13962 None 1358766 MFT_20190522 24287270.543753095 3052.160005495787 0.0036583322368463106 4.597308004467633e-07 4398079.776279898 552.692485284196 18089 2013 781601 KMD_20210509 447619848.03922874 7620.0343252477805 3.5624698375817454 6.064552893251895e-05 87947280.81638737 1497.1661814566037 None 9123 204449 GAS_20200730 23625518.277003966 2130.1094127513443 1.6953944173552253 0.0001528591061745976 13400974.191271225 1208.2503727611186 320056 99895 192818 SXP_20201124 86625009.86976539 4731.357804656409 1.1350196028096804 6.182286845851931e-05 78633394.91277424 4283.0467580518 89576 None 79111 AMB_20210124 2635104.945412103 82.3843488327381 0.018282968282927067 5.704992785819213e-07 398551.49093083164 12.436347016261768 20339 5474 518256 LEND_20190902 4051176.763687417 416.44263885768555 0.003590557640038817 3.690626388755791e-07 2114671.010682675 217.3606837148 41690 5821 754376 LIT_20210614 74197807.83190992 1906.3952358977115 3.339763712698633 8.58077358522447e-05 7783608.540193906 199.98235894794954 None None 185177 TKO_20210729 114934816.54782458 2872.7434528762756 1.5345033688183 3.8338143876550496e-05 22007391.81117413 549.8342791219494 302580 None 20921 NMR_20210114 148418649.9279445 3985.934520545868 28.39544373886732 0.0007597987327658938 14378259.243237495 384.7301437814094 22324 1987 2602153 ARDR_20190923 65336253.80023574 6501.582436223342 0.06547621752383212 6.518191080209845e-06 3046949.548373739 303.3253923201998 66820 6527 1028714 WAXP_20211207 903881836.1822349 17907.74772709781 0.4855158201557048 9.612808763653881e-06 90261686.22345528 1787.1061916638405 218003 6103 3854 ARK_20200309 26759339.819178835 3312.415864287237 0.18670400098860448 2.3200640036845288e-05 308289.0268265424 38.30931689111743 62728 21973 80258 REN_20210825 547098943.5694373 11384.903455809723 0.6179305751215979 1.2867344495345447e-05 65447938.72841619 1362.841082856393 90415 1189 128608 SC_20210804 737741472.3310692 19200.882160689955 0.01522054734057423 3.9620811534620954e-07 68760332.0289705 1789.9094529375966 139560 47708 83896 SUPER_20211002 194559965.15205112 4039.869865403035 0.6791717942635825 1.4101900807043796e-05 19607539.160435 407.1187505813467 142256 None None ONT_20190905 460076133.20129424 43559.88449684604 0.7089846921488298 6.711384897178126e-05 45860285.203267515 4341.222439664194 81480 16278 256067 ORN_20210826 267788055.79637727 5463.285054248864 8.917646313555661 0.00018193180616349257 12320211.778216999 251.3486521348751 80566 None 95381 STPT_20210813 78204750.66299585 1759.0773497211933 0.06351187407933531 1.4285833405992643e-06 151740645.50611746 3413.1280395070135 None None 442795 SCRT_20211028 1336762412.9921849 22839.235107302935 8.853288526596595 0.00015129167101719673 80761404.91181011 1380.1117930470602 109046 None 146484 TROY_20200404 3658003.2322973283 543.9448173795901 0.0019201422889996104 2.85359119496406e-07 360809.60123418254 53.62118771295734 8756 None 412780 MDA_20210418 32704977.863778725 542.9700980256044 1.6668095201283941 2.7655745610457543e-05 2869942.0994119756 47.61815172015945 None 375 1136941 ZIL_20210823 1362201567.7676337 27611.792808267197 0.10962401578364829 2.224461339359217e-06 95335020.53618665 1934.5128524419263 314489 35792 59302 AMB_20200208 2980735.5710987668 304.31257669301857 0.020700901939188363 2.111555594702539e-06 846455.4124625325 86.34105253491111 19093 5502 774715 DENT_20190305 29549784.260950003 7954.249767033809 0.0008526482914427342 2.2951698779516243e-07 1057779.5910529492 284.73450064489714 42529 8831 259704 OAX_20190812 4236917.882837355 366.76440384104603 0.08111872251146929 7.0219581131797834e-06 163191.97109379643 14.126543786064468 12304 None None SKL_20210206 97591296.79945663 2575.253889536217 0.17218083447651147 4.529709385006727e-06 20754995.97490342 546.0195400906948 12186 125 222285 ALPHA_20210806 289245764.3979067 7059.657075408748 0.8123215648856084 1.985344598970692e-05 137437394.4558237 3359.0218526070835 71642 None 58883 XEM_20190618 810660989.2110963 86965.86920051849 0.09009693771205268 9.669815846924301e-06 61579515.472279646 6609.132226700666 216456 18459 184681 CELR_20200626 14371286.2366573 1551.821738590168 0.0037001701195455445 3.9988218345423707e-07 2194666.500962341 237.18045495337373 20606 None 899619 SUB_20190221 8465481.059300845 2129.4401448081094 0.022101871856072965 5.5595911060503026e-06 386424.8622847312 97.20281800134477 68387 13739 542564 WAVES_20200423 99537772.76608188 13993.94525956617 0.9953339472287335 0.0001399071379721556 36973945.13574204 5197.16910880405 59 56854 71676 MTL_20211011 239870598.1933554 4383.768343380826 3.6369479043338293 6.644808452743003e-05 36059370.49060187 658.8150728005305 61136 4343 216254 DIA_20210805 68286819.54733194 1712.8561274679241 1.4046191659866096 3.531756616356687e-05 10154144.462875241 255.31452053775496 34201 402 453696 FOR_20210809 19915282.26910197 452.69889639463435 0.03531610851938535 8.030017663104184e-07 8335994.298421141 189.54008315812746 None None 175113 VIBE_20190904 2724091.774182194 256.3331324338501 0.014557082522614838 1.3698006056496192e-06 132475.76479388162 12.465779634528 20332 None 1398469 FIDA_20211221 223525259.65650216 4737.844859372867 4.543960981459327 9.64141015551863e-05 2204792.590894044 46.78145292927036 None None 437544 LTO_20210707 48199324.28274309 1411.0836891781694 0.17015053027319807 4.981949731368818e-06 4243423.282829966 124.24599235767984 10783 4298 318165 BEAM_20200713 26284452.420968946 2832.9869405188642 0.39844163681557887 4.292139154795415e-05 8498396.51478553 915.4741137400545 15344 1530 452746 EGLD_20210218 2446253462.0635304 46923.981099443045 145.11344236990644 0.0027824641451593547 456762339.6119998 8758.146813096717 155858 6341 32014 XTZ_20191213 1226733519.4391627 170225.2264899267 1.7737917916872925 0.00024610860025307607 106910531.84144846 14833.534277877272 48630 18630 205353 COMP_20211111 0.0 0.0 8.228358372217142e-08 1.2676356e-12 162.43901267450747 0.0025024855017292255 2629 None 2759029 NBS_20210909 0.0 0.0 0.013791104895695341 2.9775302254549746e-07 5301853.98443964 114.46820692767976 None None 4405759 ADX_20190421 15245500.296204552 2871.048864201096 0.17513480844423807 3.2982321542631846e-05 1200252.2095008476 226.03789993361366 54759 3923 1048935 ENG_20190603 37561314.55244479 4295.43444226019 0.483131747125748 5.5246488187922304e-05 1730335.1647958546 197.8651616494985 61874 3430 351204 NAS_20210523 22997174.581036933 611.8040769368346 0.5032785876373677 1.3400724397199298e-05 9806309.445366563 261.1111488925433 25092 4901 415703 BTS_20190531 179250562.74774516 21566.145667835866 0.06641410080808308 7.995299010585088e-06 50774527.31980198 6112.520129061664 13741 7190 176247 WTC_20191216 13113872.70877519 1842.809589249029 0.4494007600911998 6.320508167808574e-05 3960585.616652541 557.0287360946486 55306 19634 1013221 FIS_20211230 30342539.3068529 652.9705754928615 1.1299431148856824 2.4283036085271904e-05 2723888.6162019 58.53771281767931 None None 264927 REN_20210703 310511272.1298164 9186.66160388023 0.3522236815589781 1.0401942036574342e-05 20063381.409962207 592.5158966040863 86248 1179 90516 LINA_20210718 83970604.12917903 2656.8231410116473 0.03048729615779968 9.65429413455479e-07 12376683.301035782 391.9276421889675 None None 92304 AION_20210828 95038963.2114628 1937.5406195424346 0.19188342932828778 3.9123631897491416e-06 5372573.201522423 109.54284953865113 73836 73446 623135 ATOM_20210207 2884646383.360158 73588.10633968195 12.083055583253856 0.0003071557131837098 1243526760.0076318 31610.907208151297 55080 12226 88305 MBOX_20210930 156842271.76602125 3773.278096008482 4.6868993466879685 0.00011270536173328376 100179785.82981691 2409.0124760821104 139099 6817 9324 SOL_20210703 9219660440.797184 272769.1654841924 33.95890784245649 0.001002881434431473 607351754.6625379 17936.436641196095 348200 25964 7723 BNT_20210106 144244431.72425008 4245.347897539304 1.535320198378636 4.5041473959772984e-05 108080372.94358096 3170.7387870242155 89585 5307 101085 LOOM_20190110 28258774.648035165 7104.087712707101 0.049163788297499754 1.2362104806776493e-05 1069613.8796102095 268.9515869385653 None None 347901 DUSK_20190816 17552770.394194037 1705.957789821037 0.23352816263579884 2.2696655812401615e-05 42093492.070709445 4091.076171232176 20249 13280 200786 XLM_20191216 1019285164.764058 143233.69743779648 0.05098524701268711 7.1707192955354544e-06 143513433.56770745 20184.1632148301 279052 105602 57085 XLM_20190712 1711848744.3265605 151274.82013911012 0.08837717567186958 7.787724049622006e-06 491806320.1664392 43337.56853168349 274814 102895 66272 CELR_20190401 39270054.84285435 9569.941224156028 0.01963061514637032 4.783835684419285e-06 10776394.252550276 2626.12755587809 11361 None 421658 CHZ_20200325 29491016.194317486 4369.036250296041 0.006173462771531322 9.136053158399073e-07 790095.5820021231 116.92554899131828 19710 None 252561 MKR_20210616 2862189972.294256 70872.34236673497 3170.030674313265 0.07854263764128318 88611754.56255898 2195.499553288429 159763 28104 30673 NEO_20200701 708915730.3928891 77492.21939766925 10.036154456603438 0.0010979643312318968 188629556.31188902 20636.243248556475 319626 99703 207094 CDT_20200320 1935493.1923017954 312.7362012431097 0.0028584874117811034 4.630612496574758e-07 164647.08391801146 26.672037846767363 19226 290 281286 SNM_20200315 2337048.364961431 452.8832864676933 0.005362034366254266 1.0349217241868551e-06 59792.45734000815 11.540491689708773 30175 9696 None ICP_20210731 5760269754.641799 137939.79721698232 42.04083453929065 0.0010058034070215764 230594127.9303686 5516.835287719466 247159 21884 21607 XTZ_20210731 2486025137.8782973 59586.2226755076 2.962413007361473 7.087407108972861e-05 100941038.48967725 2414.957779354456 125792 50925 70708 WABI_20200318 3461961.0105646956 637.6954941210572 0.05804981610183507 1.0771114763690656e-05 351867.8011680701 65.28889706351643 36747 7763 2574958 SNM_20211021 119953869.24054697 1809.14873305986 0.2782936404478196 4.2e-06 1195649.309918701 18.04470664 32439 9726 None RLC_20190131 19872838.503622707 5741.0363970565195 0.28360157420259735 8.19745933816826e-05 1851470.0370783235 535.1645309960144 23825 3256 458413 AUDIO_20210418 364788008.6718957 6051.900858438191 2.3718778848911173 3.9354257707003005e-05 28437700.676578 471.83904708991355 43577 4645 38976 HC_20200421 43343632.51708419 6319.010697923939 0.9729460133714809 0.0001421048757649334 23413056.06383063 3419.6238820064386 12653 841 962062 AKRO_20211202 88011616.27044155 1539.7572432408422 0.032488849942614924 5.683068472739868e-07 20899178.31841793 365.5760718442039 49512 None 225950 MTH_20210722 6639650.75377975 206.6059555866995 0.019185580013735055 5.944754051746652e-07 212436.03553565606 6.582443596093968 21803 2057 970963 DOCK_20211028 70448412.58601576 1560.1781752227776 0.07710374114283379 1.317606876149224e-06 9395478.338431107 160.55701941226104 54795 15209 233452 ADX_20191127 6662980.93223085 929.5770508174134 0.07228167290940511 1.0099676352893387e-05 392072.6104989007 54.7829942707052 53072 3819 265958 TOMO_20190916 24582541.9354468 2386.0467202323684 0.3804876459951125 3.6921996063487083e-05 557144.3540702489 54.064519214482 17131 1324 283081 XVG_20190201 91101550.16886778 26583.007148682165 0.005861056862478592 1.7108407866597732e-06 1297324.2402144047 378.6885668846062 304905 53583 374789 DOGE_20210217 6943871270.690156 141108.10966486268 0.054079791872544615 1.0989687027198473e-06 2717472447.1943684 55222.42350725977 562683 1139965 15001 SC_20190806 113867504.03101079 9640.347464446433 0.0027361874030513186 2.3166034052542937e-07 11338372.629719073 959.9676036355412 109525 30761 197380 ADA_20210617 47393590799.99285 1239078.7611493932 1.4796210209140048 3.8659995522098626e-05 2880220476.455556 75255.29115127391 507657 521302 6543 BCD_20211002 335411995.9711152 6965.462946968368 1.78235973627116 3.700744066687038e-05 6866517.652344179 142.5706828065857 35271 None 789981 MATIC_20190608 52893272.32213757 6581.993424176513 0.02439035583413357 3.0380364472614043e-06 38703199.065020114 4820.828781046011 15066 602 234155 XTZ_20191216 1164789397.306893 163680.48695305784 1.6683963382514315 0.00023464830546615233 78611340.02242991 11056.136544880645 49462 18757 179478 WTC_20201018 10016227.940372718 881.764095532702 0.3432081483348788 3.0199536791131784e-05 2367937.8462740113 208.35934826899927 55266 19330 696006 DNT_20191012 5532783.538939994 669.4529180360306 0.007365047387081996 8.9115224372221e-07 865861.4916566269 104.76706672598523 59954 6239 377310 EVX_20200319 2398959.669633768 445.75768898500013 0.1101248923216823 2.043983260575575e-05 149731.85547187127 27.791119673963912 16842 2868 688824 ELF_20200323 24305008.84427816 4169.906851487476 0.05243184993260837 8.992083637777142e-06 26655571.81983904 4571.441433495957 None 33434 652715 ETH_20200113 15859031094.44091 1944182.4524083198 145.42287633530452 0.017806671928485587 8488793477.5950365 1039431.7890926384 449086 449464 21447 LSK_20190419 268420811.05083624 50906.19727619184 2.0435261724453744 0.0003875112410762827 5852725.996771412 1109.8449069405983 183810 30443 165953 VIB_20190421 7405660.158769027 1394.5706078737446 0.043507676384872615 8.191550329216883e-06 1745728.4088673461 328.6827362573811 33129 1128 2174259 FIS_20210711 18996678.55549163 563.513808547606 0.7039661991019904 2.0876480514610135e-05 1440124.1659846753 42.70762449695753 23572 None 421397 SAND_20211225 5420062365.828312 106597.49059777604 5.892066278674871 0.00011591888792328273 1696609222.5548034 33378.62220436004 None None 5212 VIB_20210120 3713369.5029104496 102.54290369257807 0.02049848641018022 5.687406717477361e-07 825903.5468475323 22.9151035170881 30375 1092 None NAS_20200421 11499521.81849387 1679.1861121383672 0.25166435262236553 3.6757159258957835e-05 5191577.577318931 758.2625104680301 23476 4950 1034510 BEL_20210804 86736188.32959677 2257.5414495404284 1.8060406938537186 4.7016312077756024e-05 14816765.684891945 385.72202818830294 32939 None 462798 PAXG_20210602 264415158.75682238 7206.600088699799 1925.4044967290672 0.052489206512341784 20987048.74619912 572.1361602693087 21945 None 39810 VIA_20190312 18681752.595491495 4832.81702055841 0.8042369800928164 0.0002081327349128494 19691457.332810193 5096.056225398229 40696 2228 3438029 VITE_20200317 3036241.476834071 601.5640667185363 0.006252987082149628 1.2417169830593186e-06 1010012.7219157646 200.56813382662978 None None 513506 GO_20210314 51358933.37042846 836.226755352353 0.048067709132151394 7.835548165502041e-07 14936912.56531348 243.48757193240522 None 792 401211 LPT_20211120 1306964801.3182323 22483.077043646113 53.569328714316924 0.0009209959877368542 116657522.55809547 2005.6460066600166 21102 2114 99732 APPC_20211221 5447950.938167345 115.46859226769463 0.04665046615434062 9.898330552910881e-07 3835954.142017251 81.39155985681722 25463 3100 1055977 AUDIO_20210207 38268448.75098203 975.9242612426709 0.24922852192312103 6.337904462593024e-06 4832225.813655138 122.88395129217713 25516 2523 56398 NEBL_20190719 13593209.148882283 1266.3176971134415 0.8772233048475383 8.221714715647818e-05 225600.23868485744 21.14422624204359 40538 6154 884677 TLM_20220105 268088127.26204208 5794.926169274091 0.21470739423036103 4.670552555472142e-06 59033930.91176526 1284.171315421434 112351 None 8723 WAXP_20210930 352121588.00501853 8477.030723966423 0.20079020941776873 4.830604224369469e-06 15543242.027701018 373.93880317734846 155009 5079 4301 TFUEL_20210509 0.0 0.0 0.40854350406670314 6.958362779328401e-06 46281333.81869225 788.2693211763341 154416 16309 19506 REQ_20191030 10766615.898632437 1144.3096726955102 0.013949992062264285 1.482648865824426e-06 362036.3993814857 38.47836289327556 None 29052 915310 XVG_20200316 33750094.939102 6248.975977404518 0.0020983336394377605 3.8853622858841604e-07 711252.4344677035 131.6984740979786 296333 51920 327824 DNT_20190225 6727414.386822783 1786.0486779684675 0.011494181451282351 3.068294789829165e-06 520035.1394705187 138.81989907053884 60145 6482 733347 ONT_20190909 494654597.57720417 47609.7623485609 0.7601435758841404 7.313886094448258e-05 75922776.76615834 7305.074447232335 81502 16280 256067 OST_20210201 17042421.372313194 515.5940932474066 0.024416309242735353 7.384644591369605e-07 38997527.11634199 1179.4693245137723 None 732 716707 BTCB_20190708 0.0 0.0 11420.70351163793 0.9998431216180957 36674.69754646323 3.21074301963 None None 49193 CMT_20190922 19029872.827356096 1905.5451053354047 0.023792636711095994 2.3825119490395985e-06 6194467.316031821 620.2924281821317 289654 1648 632576 GTO_20190520 18310737.56337246 2237.5506869879823 0.027627214368158185 3.3770111016582386e-06 8083814.424297872 988.1246328642745 17257 None 1154780 LUNA_20211125 15402883841.733727 269246.27603420865 38.57588180368084 0.0006744159450801445 700034845.6396002 12238.596758817725 220527 16137 6570 SNM_20200319 2096004.375447053 389.46468268237334 0.004797562647292083 8.899985337398426e-07 13567.48248085371 2.516911273960413 30138 9693 None RENBTC_20210220 998882825.7614236 17879.047397917475 55748.610244840405 0.9972592426932466 41165836.014756486 736.3952261520265 49436 3649 73664 BUSD_20210813 12029040611.195343 270562.6219430389 1.0010837041529774 2.2515308876527163e-05 5062464953.59117 113859.57201564935 24228 None 40633 OG_20210614 7101621.909870855 182.4641901886747 5.51885702901939 0.00014155007970227307 2295976.7759008184 58.888225209391805 None None 239206 MTH_20210527 9227362.78317714 237.92693407822014 0.026550207853388134 6.84595339116066e-07 396475.80671315925 10.22310223885776 21711 2047 420234 GAS_20210527 137449582.84938833 3508.203895005578 9.911279411264754 0.00025299401235461574 17562233.363974135 448.2912548716996 400223 111558 83834 TRU_20210729 48875462.827066675 1222.282735111943 0.13644014604459329 3.4088305414561548e-06 1541502.8543665216 38.513019533041366 27209 None 118402 CMT_20190726 36864523.07090684 3722.2389585643464 0.04608427293712456 4.655704821421898e-06 7929305.51137099 801.0651692429753 290870 1649 580172 VET_20190410 397823478.7399774 76878.93528934674 0.0071459933738188455 1.3823838672598533e-06 14679831.269715844 2839.795793220442 106639 55023 666986 NANO_20210506 1286954137.5423372 22473.337085920968 9.675999385114793 0.00016897346310526025 142279690.8499265 2484.652089730643 120208 88432 59676 XLM_20200106 904907510.7335023 123226.60879257035 0.04534737608905413 6.174026290897939e-06 123956719.95610817 16876.655585089407 279502 105768 56844 RLC_20200526 25123756.723097034 2826.9459585790705 0.3572369088905482 4.0202297582512206e-05 1221180.333262318 137.42772355799568 30286 3574 635349 WNXM_20210708 136973370.1607543 4031.2612249006406 63.88745754779527 0.0018803393630252583 13273951.444628647 390.67971026313876 30947 None 117063 WABI_20210708 9938882.9576349 292.514835605448 0.16813926786624847 4.948684702355406e-06 966346.768687749 28.441574250101684 45489 7888 437012 XEM_20210106 1845492905.1188378 54326.60961846025 0.2059089813588182 6.040722991693069e-06 109142068.05987738 3201.8855881829472 219746 17892 99771 NAS_20190213 24921053.877018686 6855.868754835582 0.5475754321159884 0.00015069355212045263 780614.3917963677 214.82621139807463 23461 5186 429754 1INCH_20210217 457453834.79798365 9302.998810706165 4.749919937516773 9.652428700277705e-05 253315909.8330206 5147.694677960187 None None 9629 CVC_20190801 18516173.189511627 1839.208086999352 0.054041001133212155 5.360205012954165e-06 5370250.282666252 532.6630129410256 None 8147 266707 DLT_20200319 1987102.8530278937 369.22937336267836 0.024257265020091456 4.502259468952674e-06 19381.034806281496 3.5972088115626 None 2585 None ALICE_20211202 376209696.4706315 6582.035261009979 21.642476487522217 0.00037846957623179837 492574824.28396416 8613.828695467728 145295 3016 30388 WAVES_20211125 2031116944.716435 35526.34662463493 20.310283427960588 0.00035508142270403365 135113320.30722338 2362.164475504422 202651 59963 104259 POLY_20210427 310376273.2275539 5761.276719960561 0.3803045081621256 7.055192976662682e-06 6869664.491355114 127.44210923415083 45384 5498 167143 LRC_20210124 507166377.053783 15848.766167694532 0.4061026961792031 1.2681450884723515e-05 119542268.00122796 3732.9705381642384 51822 7842 177149 RCN_20200308 33355318.996976398 3752.588135980019 0.0656872403569971 7.387026444848574e-06 2466659.835803499 277.3945341362682 None 1133 864394 HOT_20190929 119134936.8115669 14555.042066782215 0.0006711282554730776 8.192224264133967e-08 5521545.90556689 673.9954989859489 24398 6667 466446 FTT_20210108 858500069.507047 21932.635224317062 9.580697416246005 0.00024278030940765575 43493406.46252962 1102.1476015159794 45913 None 5141 BQX_20190730 15103870.955096247 1588.3864071337596 0.12498408762062876 1.3139696851639856e-05 639334.3847932436 67.21383628059824 60647 5779 463128 HC_20190312 53102629.94122539 13734.041198061615 1.2097840547831722 0.000312907835030958 7047513.37316671 1822.8229602055367 12266 789 443467 OST_20210401 28871895.264427084 490.98236727090915 0.04225830147118835 7.189291272340812e-07 3703794.8733877987 63.01166689329017 None 750 535781 ORN_20211002 274394030.7273317 5697.279349420232 8.866895123769014 0.0001840855245613277 17480969.64697031 362.92224306080635 None None 76105 DLT_20201201 2668714.799197841 135.6211780069878 0.032571978425473935 1.6537146058550595e-06 78531.79486150302 3.987144240673836 None 2537 None HBAR_20200612 179730494.62122276 19370.715608362167 0.0401269737615735 4.314906301278104e-06 10965485.19015112 1179.133054605397 39745 6530 130784 IDEX_20210708 23418222.58600786 689.0266312119006 0.0403374325682438 1.1871703794216554e-06 832722.1101918744 24.507832069797242 53040 1977 9238367 LINK_20210711 8026402613.381654 238020.23185659907 18.29985233312347 0.0005428745826700639 583728399.5794731 17316.60483078242 396137 62216 24345 DASH_20191026 637490882.9009328 73880.93578529026 70.21311895214845 0.008123610847132744 266697876.1587517 30856.765687150928 317476 31506 74820 CTSI_20200501 7626205.084611031 883.4615740249662 0.03978072156528026 4.615091319213164e-06 9681072.469150465 1123.1328079288724 14246 94 291799 ARDR_20191022 50322731.264155455 6123.885121852925 0.050373129832418435 6.130018235747882e-06 3271658.6588048465 398.1354207359424 66385 6501 1346230 DATA_20210909 0.0 0.0 0.12517893095874214 2.7038281334035423e-06 7206.500423355874 0.15565829200503623 53858 4456 268890 QTUM_20211011 1366627084.9284046 24975.86864433775 13.140000118199179 0.0002401753752007693 366826628.28434557 6704.925592793694 257760 17209 171848 DOCK_20220105 70448412.58601576 1560.1781752227776 0.06652286687391466 1.4458065687526808e-06 9906057.701608118 215.2980466487415 57814 15287 193608 LINK_20191024 951626723.3361706 127481.2734978231 2.6081681247374333 0.0003493476370653283 176861806.04688963 23689.52117908709 36201 11307 94194 VITE_20210814 60458260.77659195 1267.4772431055114 0.0916818464865219 1.9216253090080787e-06 8043093.144644027 168.58093441354814 33355 2438 651282 DCR_20190513 263367079.8369727 37953.96285266756 27.086912280076746 0.0038965076907014964 2858012.3649550425 411.13091979695156 40517 9451 304516 ZRX_20190614 194726675.1800496 23682.071593389577 0.3255740929061959 3.9573380199798e-05 46595957.98897086 5663.717112167886 150507 15944 209456 XMR_20210513 7354227389.6929865 142584.0513642691 400.54180603229617 0.00794666008549467 646806230.6229663 12832.491336812784 408666 218270 36296 TROY_20210210 14282050.497256413 306.5668907330667 0.007524135939260661 1.6148105652491522e-07 46854532.21456978 1005.579833494192 10562 None 869305 RCN_20190812 8579911.932906438 744.0503205033556 0.016939263982632926 1.467232706628677e-06 1744822.0185755366 151.13171006276374 None 1112 1860009 ICX_20190605 169937531.57667154 22180.758181320663 0.3594387781067441 4.688471676448233e-05 29503060.72257388 3848.3400509791745 113585 24778 290071 ZEC_20200313 234470265.00666547 48720.99864156629 25.292004142708702 0.005308246551105549 347541119.6978347 72941.39047242048 200 15590 157694 VIA_20200317 1964471.6241495342 389.2165851079783 0.08449280884227262 1.68016859818563e-05 34234.16367524361 6.8075813291597 39507 2181 2066197 NULS_20190812 31954881.500587676 2767.0639276422835 0.4408403143480132 3.8153901401616176e-05 3092344.1816720013 267.63658215304224 21336 5307 406668 ONT_20200501 313140948.3196868 36188.96383447137 0.4889600319121073 5.6725848851602144e-05 182268979.5324685 21145.619086414652 84143 16479 182484 NEO_20190801 826599295.9770299 82231.96136864525 11.726104887431118 0.00116519862730394 329030846.9456679 32695.110173599587 324423 98210 192021 SYS_20210823 146881571.12978393 2980.6748723339424 0.23776843294706054 4.825046383070805e-06 3856687.262272124 78.26394233588027 74710 5509 438149 MIR_20210724 212656605.44935444 6360.936733441994 2.7339527499070018 8.17584634433439e-05 15462300.570111763 462.3978728068655 51280 None 15750 OST_20210110 10625609.871540017 262.5742984719369 0.015395627947322943 3.8218366793941614e-07 5849683.137879917 145.21352201857056 None 731 741572 KAVA_20210117 100105173.03889528 2760.072626609917 2.137336626677823 5.905052757265665e-05 93139518.18905464 2573.2669427349756 53075 None 89855 FIO_20210131 16344652.022491593 477.78884730816077 0.07555666774433073 2.2115571074129058e-06 15009061.807306444 439.3179094116253 55421 165 730561 QTUM_20200423 131290772.41685031 18458.077082006264 1.3670457959988898 0.00019227051345126642 276667570.5657492 38912.387575956745 None 15118 107639 HC_20200806 65735621.52623949 5611.478976116469 1.468009513619697 0.00012526961343410994 14218905.71353341 1213.3414706546823 12753 844 569123 GTO_20190512 18322705.197126057 2509.423979691554 0.027599596930073276 3.7869364563871074e-06 14409922.779926443 1977.183291744602 17273 None 885807 ALGO_20210418 4771582903.048625 79153.28136142298 1.6893988920122993 2.8030549038670015e-05 1089348705.067502 18074.501198017828 None 21718 138222 ATOM_20190723 967532113.7984941 93513.85655009019 3.9991933642431383 0.00038681197724480367 158122571.82155192 15294.01033723295 27185 6177 109453 ZEN_20210210 455885980.1968344 9804.424298077038 42.4056646546685 0.0009104904502167847 101512124.98205046 2179.563063803891 85919 6563 437186 ROSE_20210814 144300252.79142994 3025.1827333134856 0.09616100605983204 2.0142996402034525e-06 8276552.675928904 173.37024393105264 None 1739 217823 ENG_20200913 60639767.78197403 5815.486572772988 0.7368593347061496 7.05672579099594e-05 2347910.7867961316 224.85380619829115 1069 3596 461818 KEEP_20211204 443563993.18197066 8260.83190614274 0.8071162948197006 1.5022812717510399e-05 56767232.01303349 1056.605473705333 30221 3615 144845 TCT_20200423 3209691.346931321 451.2700185968008 0.005549071233089072 7.799941685769729e-07 417078.88995453063 58.62586518284635 None None 458106 DLT_20190920 3636527.1602807734 354.78337162661535 0.04533023007688377 4.422464388261388e-06 539420.6895937765 52.6264434566901 15005 2646 6222590 EZ_20210617 0.0 0.0 4.498818066746318 0.00011747263630772557 2579312.629734684 67.35072411938711 33319 None 123122 SOL_20210826 20802776475.036793 424408.39067657123 71.5109402153286 0.0014590868141468143 1460931375.1285913 29808.3859533227 427166 35085 11331 ZEC_20210508 3529497594.3598113 61594.45103670735 319.3933212157885 0.005572369537827134 2880247814.880887 50250.91045717845 75248 19178 85283 SC_20210725 546493791.9935117 15998.800665446619 0.011307901442474816 3.305020848345418e-07 31482937.623620875 920.168660317337 138889 47480 61155 FTT_20200310 69582605.96266659 8789.042203325247 2.4130167654046084 0.0003044747635743174 4833666.049261272 609.9125993015033 7997 None 19129 CELR_20191220 13319133.556223316 1865.1452641998167 0.003696808083611474 5.175302711660595e-07 4782308.850026255 669.49366588056 18793 None 689712 RIF_20210724 120338492.65394582 3600.084338658479 0.15993527517087422 4.781475927247499e-06 1444223.0864124612 43.17695338866576 44734 3362 493990 RCN_20190805 9008684.683360858 823.4151668374632 0.017735893881123205 1.6197110398443873e-06 1387000.390539016 126.66628814325365 None 1121 1860009 QSP_20190923 0.0 0.0 0.012762762091030203 1.2707235459979763e-06 282312.36089129595 28.108411153646333 56321 8521 561299 REQ_20210711 39470450.512267336 1170.4827473706955 0.05113963831361014 1.516572335632291e-06 568229.8791560377 16.851149977304004 43410 27769 349393 RVN_20210513 1215926776.7677083 23574.436416912962 0.13788694271795648 2.6770485149634567e-06 138922354.90384457 2697.1508437262055 61164 37096 40253 SXP_20210819 605546566.8466436 13441.519034742065 3.2257227691406727 7.161200480741779e-05 140827529.16826764 3126.4130297537513 276410 None 111870 BNB_20200707 2412542715.3395653 258213.44318733766 16.31375648247885 0.001746054569677418 158082223.97192276 16919.474668350813 1181831 65600 1041 DOCK_20190302 4673315.347271713 1223.052771767124 0.009093612677729854 2.379888230176287e-06 1840601.8915211533 481.70368953573484 115 15368 178518 TRB_20210916 119045439.47936225 2470.174865662355 60.578707702025206 0.0012566531395614376 48045970.43979192 996.6722943880508 24596 None 499416 LOOM_20190807 21631633.642375216 1890.4116121379654 0.03556868641431804 3.106087121459471e-06 1672970.0558619797 146.09453620441937 20800 None 419085 CVC_20211011 341310354.5218597 6237.6362033955265 0.5090538237977934 9.302545466974133e-06 51745778.04473695 945.612095384881 107966 10083 174587 REP_20200331 110048819.45787026 17128.344524103097 10.022718993663082 0.0015633485807488071 36627598.05053356 5713.190548866375 130686 10115 261096 ICX_20190806 117674299.56540993 9963.494071261892 0.24041428590545982 2.0353799119162024e-05 12647050.219703358 1070.7164037790242 114010 25949 229714 QLC_20210111 3883685.8050533086 100.74402223524261 0.016000172365653244 4.17190874770022e-07 945751.9690900216 24.65967755116919 27318 5595 940522 ZEC_20190923 345866964.782154 34432.162904548706 46.282944047094354 0.004608158199554931 250103761.52651414 24901.564132247382 124 15346 166171 DLT_20190810 4067323.772496443 342.88640819012005 0.050700218719171436 4.274165732422126e-06 484879.9066556282 40.8766891686773 15047 2663 2977956 VIB_20211230 7248640.583182596 156.29051239381545 0.03987527262684687 8.562147341161019e-07 761840.4668707637 16.35848458980726 33347 1329 3416907 ONT_20210106 409895640.2335995 12048.450571435562 0.5102942322393862 1.495444503737637e-05 191496306.84128392 5611.901555209289 94403 16679 288289 KMD_20190122 71477225.44100462 20241.265842107165 0.6407809428613005 0.0001814609459871716 314152.73823035136 88.9640269406063 94989 8236 233047 ENJ_20210718 1112687055.2419543 35205.328671008945 1.1886327396117204 3.767989426351861e-05 109172971.36506572 3460.80490666409 242215 34070 35760 NCASH_20200421 565177.5557799127 82.53476805218736 0.0001942951417583069 2.8378025709379653e-08 1194306.8469328536 174.43601574613044 57359 58223 728678 APPC_20210201 5648511.730025493 170.89283607694054 0.05136655780328342 1.5490603713386226e-06 21864226.100683857 659.3590781820304 24282 3118 1221759 PHA_20210418 160746442.54974127 2666.5382648718546 0.9044155399159287 1.5006085456083092e-05 53230105.85178084 883.1952592526477 40994 None 139188 XEM_20200322 351336061.3978106 57015.155991964464 0.03903734015964977 6.335017333144387e-06 26875796.621474117 4361.430280413588 211866 18019 216330 COS_20190915 26081154.1641515 2519.017723550877 0.01984474927451631 1.917081503553376e-06 873307.918191487 84.36500928845376 9327 None 256445 SAND_20210708 280056910.6565821 8242.35078227505 0.3982883044687283 1.1724346317197013e-05 322662850.33491343 9498.172450899716 138664 None 27312 XZC_20200129 49163118.22335381 5276.843047365699 5.199769529250605 0.0005573610514463426 30570508.464328777 3276.8396070399012 63183 4084 121146 SYS_20200518 14249483.216295673 1473.8188198641574 0.024287178219832974 2.5154779205032628e-06 567588.7777908428 58.7864520750454 57865 4477 1010431 SKL_20210204 89122213.02384861 2377.901970003382 0.15817347429777157 4.216888779637253e-06 16635743.6178422 443.50723731930526 12094 125 222285 TNB_20210128 7610685.5108870845 251.58564777838262 0.0022411576792414067 7.372005618672314e-08 359919.7027617103 11.839104832321766 15870 1410 3029706 MIR_20210603 345780021.89886534 9189.19467100252 4.8935941525807705 0.0001301215554863349 18333918.385820918 487.50221292143755 44574 None 15173 IOST_20190524 159601186.3571374 20259.773775533038 0.011757145699867062 1.4950299713634824e-06 41293090.99474323 5250.7989798985545 198762 49672 108380 EVX_20210217 15127647.848993342 307.59992878232 0.7103256063540492 1.4442606276049607e-05 5248203.991972473 106.70844924414875 17062 2814 787934 KMD_20190626 156565654.77775723 13227.263571819114 1.3658456223509516 0.00011539184676803074 5938931.062125344 501.7435439790705 97331 8414 339259 AST_20210508 75278546.78777708 1313.7112691743434 0.43690190111305593 7.624098006042758e-06 5344517.985878327 93.26379403611381 42878 3655 191334 MTH_20210814 9257756.112470279 194.44522233056105 0.026694642218617247 5.595120742878103e-07 728808.8549280671 15.27562537982759 21817 2056 1226676 IRIS_20210821 122970328.87240459 2502.8520995229765 0.11444427499466343 2.326825737758777e-06 8134087.718185976 165.37834379871992 27191 None 908370 ARK_20200322 22956549.08337595 3725.719649422691 0.16183582557556897 2.627826722138698e-05 1133079.0262515573 183.98493243934934 62647 21956 77737 VIB_20201201 3019747.107757901 153.68643392150986 0.01638434496769754 8.340731644976173e-07 703492.8073619726 35.812507194797554 30427 1093 3152999 POE_20190312 10907443.64435157 2821.1849569202186 0.004795363991605582 1.2401823673935411e-06 1153682.243776504 298.36658464534725 None 10976 618100 GTO_20210210 14661221.717012841 315.1379510787104 0.021986095716125687 4.720626442269611e-07 34301663.1609709 736.4897352499953 None None 738206 GVT_20190205 13669579.36962762 3945.593046949856 3.455268504754813 0.0009973301313130898 751893.5865944476 217.0268760357663 20604 5799 138721 AKRO_20210708 50875522.4517943 1497.259731704842 0.018776523631933967 5.526317346325175e-07 11926054.138230462 351.0083184153708 42962 None 210414 POLY_20200207 15479549.280407565 1589.3920893319541 0.026203410040234906 2.6908554231099166e-06 4504827.0177411195 462.6053705318461 34836 4997 349542 AVA_20210804 113132066.94617535 2944.439979990697 2.1839522495023567 5.7077602556930054e-05 6788565.325911939 177.4191874810676 111313 10538 54869 EOS_20191015 3257663033.2074513 390300.98887039593 3.1611975054273307 0.00037871769922879643 1645094599.2457578 197085.57930038337 None 68602 90750 CDT_20210201 7363218.839551284 222.8019774219665 0.011252576133359393 3.3934373859374355e-07 9698176.83863041 292.46774667069786 19333 296 640190 KEY_20200325 2615978.9352859734 387.0740565008866 0.0009512595447474809 1.4077606182910134e-07 881272.9952427128 130.4188140362247 23433 2757 250395 OG_20210221 0.0 0.0 6.933654075410992 0.00012333642654405714 5357451.9624244915 95.29880972432505 None None 464193 FTM_20200518 9881074.607601665 1014.5726955917203 0.004723714645516287 4.836716282963095e-07 1816529.4889894275 185.99848672521816 21764 2354 335778 PIVX_20200224 24356700.365458135 2448.153434163544 0.3904462365920622 3.9238133986317666e-05 382427.280770766 38.432264103455594 63916 8513 215507 VIBE_20200526 2178656.3868664973 245.14422488109125 0.01192291066770589 1.3399935022393216e-06 7023985.585803676 789.4125274538 18984 None 1044807 YOYO_20211216 3401222.8153453367 69.71662835930874 0.01946219303993722 3.9824951294080806e-07 412051.0178147497 8.43168685125824 12508 None 802085 VITE_20210117 8675435.513203043 239.06063792495752 0.015025012636216509 4.151029947084094e-07 1041754.5948639493 28.781037497227953 None None 879867 NKN_20210428 442358238.6613144 8027.922963591316 0.6815222795130175 1.2367573603954239e-05 78697372.1176095 1428.1199182479859 24584 2579 154711 YFI_20210401 1305060188.489328 22188.4486003835 36096.611491861295 0.6141035822517782 291696641.8129381 4962.569761112563 99214 4103 21200 JUV_20210620 19991002.932746775 560.7759892831921 9.081036113308688 0.0002550593840749576 4173677.868622472 117.22623863790189 2524406 None 39510 OMG_20211221 827022693.9817584 17529.5858073828 5.88140263956888 0.0001247920379800934 268806642.3522142 5703.559299959407 6468 6522 101048 ENJ_20210813 1448905347.8875015 32589.434398191595 1.5626573179364847 3.514562472203521e-05 162764295.86458656 3660.721256632913 257247 34660 37503 REN_20200629 129278907.14128031 14175.570131191147 0.14980350534635123 1.641365185510354e-05 6092668.882485698 667.5607868743291 14960 898 366546 FRONT_20210722 23836587.82904478 740.724626198245 0.5301307966983253 1.6415071113579592e-05 7531606.453218571 233.2100989021232 None None 222970 RCN_20200106 22972741.17613685 3128.577463976125 0.04554483080579323 6.200909668009218e-06 2732645.7605758104 372.04857754886166 None 1136 818164 CVC_20190905 14910810.487318376 1411.5907345594203 0.0435098088358447 4.11902780652775e-06 5071110.699299201 480.07671233861146 None 8154 131188 MTH_20200612 2440781.4106201283 263.0587684462796 0.0070389543853790785 7.569080293058793e-07 231143.04891666805 24.85511626651146 18973 1910 1960603 ETH_20210401 221210690537.73203 3760851.6926802956 1915.8325358462234 0.032593544107816445 28955571443.672318 492613.3559995644 852223 753614 6152 ATM_20210125 0.0 0.0 4.869101510275292 0.00015092419889632634 1190949.0935804737 36.91503196136417 None None 267747 ONE_20200518 16992219.31064966 1739.8710546901896 0.003255256686237854 3.3331295815033865e-07 9238033.988045488 945.9028067022992 71818 None 176675 DGD_20200224 99213794.47125706 9970.551117954643 49.606922039089554 0.004985278051616347 2033284.8551310212 204.33620842230832 17654 4703 321612 LTC_20190704 7602388116.290505 634539.0549110385 121.77796248794202 0.010147071805529621 4984868026.245761 415360.97968803556 449023 205526 149931 NKN_20210221 33704337.11388115 601.2374687316845 0.052027830202132606 9.253792289476713e-07 4374561.165941728 77.80697413281038 None 1037 263603 SAND_20210805 460936703.661956 11588.632008277833 0.6523391197502293 1.6404890081720253e-05 250043961.9168314 6288.054152591732 150409 None 28891 FUN_20190923 20251376.55923319 2014.544913427348 0.0033785029445718997 3.360841925776569e-07 1256568.4100983075 124.99997379164405 35774 17353 353342 SAND_20210125 62503752.878269054 1939.8051585876349 0.09475155264210056 2.9357712793781295e-06 34331421.785299495 1063.7208493902363 None None 55627 KNC_20190515 40487650.88072523 5069.151716017353 0.24325829102195295 3.0437109198983257e-05 24487860.902325705 3063.984759583535 96554 6672 236085 CHR_20210219 29471467.913169153 570.1896542696304 0.0656102282816986 1.2689089656041901e-06 8727392.810443567 168.78872812290552 38214 None 468046 POE_20190818 5633803.466479314 551.1673822683686 0.0022381460415649827 2.189627490918816e-07 80123.64629594404 7.838672514845403 None 10763 737221 GO_20210506 59657289.445921965 1041.760802689408 0.05534307425204638 9.656539546414885e-07 3958240.9082064163 69.06538962807814 20453 1003 107802 NPXS_20190626 221292168.81339332 18743.332473888455 0.0009309905552230965 7.875717227582037e-08 13233546.725129308 1119.4922584379738 62271 4581 216939 ONE_20210814 1021203122.3192813 21432.54403450233 0.09815571511420666 2.056083122876641e-06 40733789.272480324 853.2570574878164 199084 27073 28462 DOGE_20210724 25277663412.21751 755709.0765214349 0.19361276217630075 5.788308805326432e-06 1382745728.8782492 41339.00672676416 1985502 2120402 9379 QKC_20201231 33376592.43652087 1155.9070980165234 0.005250608543200726 1.8209874877826068e-07 1566570.6362644841 54.330950477337964 63488 9211 113107 HARD_20210722 44979008.34185406 1397.6903085907043 0.6150975499740726 1.9113713621753224e-05 10470969.256619561 325.3778327057956 35054 None None WPR_20190725 4308591.909730942 438.3067787348892 0.0070758326473723135 7.206611129519875e-07 154561.43862162012 15.74181074193178 34717 None 1469795 OST_20210428 23601040.774081573 428.3119893240362 0.03406723599452168 6.184968661682166e-07 1278435.4400185477 23.210227955593748 None 767 441171 CELO_20210527 419568469.89645886 10708.884740124466 3.8066431845849134 9.710628337468365e-05 38655601.03030061 986.0923563489702 None None 73566 ANKR_20200612 11394887.020534154 1228.1005309052357 0.0022048166268012173 2.3708683372623836e-07 4394553.60191062 472.5521326591303 20302 None 5865 CTXC_20210128 1076112.5508978204 35.55422646411668 0.10696842857180958 3.5300610680140384e-06 4081238.5065126624 134.68479768727696 17137 20079 599197 SXP_20210506 433731102.8961216 7576.3954385365005 5.02770061629659 8.770086841151847e-05 595673811.0802498 10390.65658611502 217078 None 60637 DCR_20210511 2716439124.7044435 48616.010275791516 210.35342119224038 0.0037646873781287246 62676990.0555409 1121.7277666501705 44772 11069 215733 DCR_20201226 453507280.20168686 18364.254904178248 36.633443973707806 0.0014836909638407795 9344051.106405396 378.44337546287574 41186 10032 350762 SNGLS_20190421 11744526.27482371 2211.7918499648663 0.019923658403113498 3.7515564133520874e-06 650139.5700878621 122.41904696358057 None 2179 5119278 COS_20210727 39746890.757251024 1058.9179536916613 0.013124726840313593 3.5175950334190487e-07 8824469.04927922 236.50708222711498 None None 345679 DUSK_20200501 5649996.378666329 652.8660321959197 0.020945008315338083 2.429898761346998e-06 356539.41681771004 41.36330118629272 17494 13335 1673538 XRP_20201226 14088171755.507318 570778.7802916189 0.31808441970115464 1.2894330974457157e-05 13152417764.349289 533165.4657187662 1016201 226159 17736 BNB_20190316 2149727573.429469 547817.1982174959 14.8815686728999 0.003791998910927229 142555940.5220394 36324.932074545985 931510 48125 1100 TOMO_20210723 217422523.12841073 6722.625000075702 2.6064860831761907 8.051043917246909e-05 14528731.953616103 448.7707023470219 50549 2211 130894 COS_20200319 8957909.367589902 1663.4416695549787 0.004569630377518093 8.481504773127158e-07 10744189.87679775 1994.1853102993955 10343 None 117572 LOOM_20210704 55126487.76202873 1590.1767891857833 0.06613883071130734 1.907362421034867e-06 3879390.0392481145 111.87683086955151 None None 264943 XEM_20210314 3291580691.9303446 53593.55542181506 0.3633380477526271 5.9220592914408115e-06 645484210.1647192 10520.769261376287 259790 19799 34570 LTC_20200322 2449413774.049139 398100.1890979109 38.07295486228046 0.006187950231509561 3330200936.397142 541253.4364588519 133638 212416 131624 IOTX_20191019 17978034.65896521 2258.98406240254 0.004363893681472722 5.483339232272587e-07 1438130.60856209 180.70463129155064 22565 1777 522982 XTZ_20200418 1485888302.1130621 209891.23814857178 2.0854637722613263 0.0002962336460051828 201520175.97372335 28625.314554167933 59607 23539 97090 PAXG_20210703 288516910.84849685 8535.9452775483 1799.3594888817397 0.05312240333157324 8141529.141393088 240.36197183344837 22960 None 39244 GO_20200422 6513097.036071799 951.0926777422676 0.00682380624414071 9.96836960079158e-07 915835.5612596888 133.78731812650693 10729 677 903309 FOR_20210204 15875253.809399143 423.31421803618974 0.0280264149317731 7.471724492210236e-07 5773929.906925752 153.93054590429904 20294 None 253691 NAS_20190905 30015248.332772397 2841.835635815674 0.6599298223998566 6.24768942542513e-05 10667243.690774672 1009.8895873947147 24168 5095 765651 DOT_20210725 13995021443.19115 409643.74841109273 13.846756807214286 0.0004046357152553921 647617803.3238002 18924.958147854642 507375 27731 21430 XRP_20200725 9164825016.57929 960573.9555200912 0.2042966234637715 2.1422266717392336e-05 1451104338.1077611 152160.8318270717 952124 215416 30317 MBL_20200314 3987415.811162265 720.3662896281834 0.001129772240302229 2.0308470521109902e-07 4427322.255499967 795.8430939073365 None None 120670 STMX_20210310 95673212.44410089 1750.5210134804124 0.011536111065393095 2.106922164582764e-07 16397183.061491966 299.473438086228 27611 1399 161856 FLM_20210304 0.0 0.0 0.3861320968253656 7.620796320762651e-06 28918749.06237689 570.7474158909206 15925 None 156358 MDA_20190426 15870134.800480088 3055.0385282349143 0.8950496785727505 0.00017202153600992998 1413860.632217422 271.7329367078734 None 359 1377289 BTG_20210930 863742658.0991527 20793.877171207667 49.42293340016223 0.0011890064453894188 8970770.2784794 215.81688797906975 102356 None 254570 KMD_20200321 43517079.96915297 7039.244241478721 0.36781408025541434 5.9320143618504995e-05 2317642.8572809747 373.7836981521751 99836 8400 161250 ADX_20210804 57879892.219238214 1506.3809953377286 0.46220433983329423 1.2033727335230641e-05 22204391.21224999 578.1027274416783 92899 3892 14822 BTG_20210916 1199090596.2699997 24880.79945171947 68.44114273342501 0.0014200667188501537 10519241.668417789 218.26089402166707 102232 None 254570 SNM_20200329 2756385.555771746 441.97750288 0.006376679534566055 1.02e-06 164812.125248132 26.36299454 30017 9693 None ASR_20210616 7996723.118849135 198.01148916637825 6.473903511775923 0.00016033773910349348 6471556.420382849 160.27960920910283 1973444 None 118104 MKR_20210814 3329723708.4948015 69804.45768296176 3695.8391090555415 0.07746088520819532 159275397.0099865 3338.2441389428154 171502 29369 33465 GTC_20211202 233433397.62821454 4084.0703169016115 16.456927983149225 0.0002877935450135226 119883257.93613926 2096.4804503330975 None 1692 23599 YFI_20210727 1067101799.8747584 28512.759820916755 29878.025144983952 0.8007612559770906 259390598.17941618 6951.930061604802 None 6866 20096 BCPT_20200721 2883866.796961267 314.7898747900311 0.02482696187415156 2.709999029086922e-06 701147.9204749904 76.5341403175 10474 3173 2352744 DGB_20210729 627207002.6219482 15686.069068127623 0.04314643034986708 1.0784253981994012e-06 14895565.075365584 372.3078726918533 222861 40487 89900 GLM_20211225 484407680.5890641 9526.946313871793 0.4837751209771789 9.517658386089688e-06 6287063.675625254 123.68995783687127 163857 21791 244527 SNT_20200801 102385896.13669479 9033.805225915658 0.026368843530213886 2.3262814291702404e-06 13282058.201066526 1171.7542826213103 110962 5720 113407 OG_20210207 0.0 0.0 4.318009087980891 0.00010980737219423547 1838428.0284375905 46.75139552921996 None None 479965 MITH_20200319 1919148.0198422568 356.3767677533936 0.003096679019381385 5.743491576587563e-07 3467049.619948802 643.0427617184882 94 2083 1254611 OST_20190401 16390458.04147648 3994.322041076664 0.028948306331780697 7.0546447048806675e-06 881230.0196268065 214.75400393000214 None 750 1019811 OGN_20210809 253744864.79806942 5767.933324154259 0.8015555416375154 1.822540882094988e-05 32671602.286332723 742.8721748806453 117672 6035 91977 STEEM_20201130 63407251.60467225 3495.8241437199417 0.17122963821804074 9.423890084479111e-06 1540369.0413105986 84.77661160716107 11684 3840 210880 XLM_20200806 2209601513.902383 188603.86649755982 0.10783164862097461 9.18561808996617e-06 184707394.34837595 15734.263591208204 286301 110550 56657 FUN_20190904 15918448.933560057 1497.5865581832252 0.0026495686625910534 2.4926790484683604e-07 229304.84115961162 21.572695259460428 35899 17407 352374 AVA_20210106 34059690.0192803 1002.6305049837385 0.8871310991472895 2.6025640998760038e-05 7806031.619994309 229.00445803581417 None 9041 96594 RENBTC_20210620 382012609.4422594 10715.815326629532 35528.235079514365 0.9978828014317358 2937613.2046558387 82.50884648855168 84733 5435 86030 VITE_20210207 15172526.330335164 386.92375565649274 0.026203897100138106 6.663675372577275e-07 2600314.494317036 66.12623912587735 None None 688715 STRAX_20210602 153060352.29224285 4174.523439125856 1.5293180528742063 4.1697085207810037e-05 3412330.571108314 93.03770285932931 None 10706 144893 SCRT_20210823 246739847.05759925 5001.474882716682 1.7012181759689204 3.4525835527592614e-05 3169179.7115088035 64.31778064833898 None None 113867 RVN_20190729 181486710.8572145 19034.10090530914 0.04449086074348676 4.667048841150139e-06 22229360.129348647 2331.838667481243 27115 6842 272876 BRD_20210104 4583586.548923256 136.98513480191286 0.06033753711712502 1.829447906984417e-06 554887.5147304854 16.824316187532197 None None None FUEL_20190811 2656715.5150106973 234.6472086062541 0.0029521667133414727 2.607421361873166e-07 100724.09493481313 8.896183118707038 1 1506 None ZIL_20190929 53364973.60867905 6515.013475894111 0.005782083480380514 7.044021696101658e-07 28064837.552055914 3418.9981048360896 66297 10599 170382 XVG_20200701 112421689.48595692 12288.93206601351 0.006889985058626058 7.533193551526359e-07 8552584.974354563 935.1004019526388 290377 51686 251650 FUN_20200412 10128124.541665228 1471.6017234187834 0.0016841151399018366 2.446947878439626e-07 175672.27921851634 25.52443718067031 34627 16941 280907 STORJ_20200414 13048808.900863372 1904.5870095616285 0.09095880405622123 1.3283666925870439e-05 1338564.4460098436 195.48458716120172 81928 8046 134239 ANKR_20191108 9564569.354961416 1037.4424136146163 0.002397827484932659 2.600914032572041e-07 1943864.9741006165 210.85026843395156 None None 5174 MDA_20201030 12271274.571020653 911.000215479525 0.6232235562956662 4.6342563401169384e-05 1327235.5094272164 98.69250788513854 None 371 6573931 POE_20190730 8613648.140753584 905.0577035887175 0.00333139661808011 3.502329175456253e-07 241826.22019631925 25.42342217036826 None 10807 797644 POWR_20200315 24429048.15456912 4723.856382270202 0.05581911958601152 1.0796446996103558e-05 3360623.7145130173 650.0065940968558 82653 12833 280064 OMG_20190419 277097802.0144037 52551.79476926939 1.9773367975876894 0.00037495983501013386 92914347.98816048 17619.22836525263 290004 37734 None BTG_20190627 538353351.1351628 41418.34392517862 30.737231257158143 0.002357020718388598 28559264.520991124 2190.007864232733 74386 None 408265 STEEM_20201030 54982672.053110406 4081.829448248875 0.14979962931812568 1.114020181314815e-05 1196343.9236780289 88.968930085958 11688 3850 188070 FTT_20210725 3219852041.9902935 94241.20230431632 30.22397529411188 0.0008844917628099703 50213782.31011959 1469.4849502966038 None None 2587 CND_20211028 30522491.06003487 520.3734936120694 0.015228240454819648 2.5989727413571713e-07 311676.9621203116 5.319327147893365 36798 6323 235338 SKL_20210703 278608988.5844242 8238.42989813733 0.22962751715869684 6.781406953999174e-06 19920622.697968595 588.2999170288319 None 2278 152464 NAV_20200105 6850795.249215263 932.3038238322321 0.09963521195421618 1.3550134677107688e-05 485075.9178753502 65.9690875034515 49945 14071 586166 NULS_20210314 99504039.77855946 1620.1259424204836 0.8885081252454529 1.4483628066526635e-05 56697895.46116421 924.2360386827693 41756 5204 573202 LTO_20210804 68315155.94107139 1773.8666366294976 0.23780265754765967 6.189188186268146e-06 22257750.048777726 579.2929527172986 11264 4363 653266 BAT_20201124 374977129.067637 20475.244019518155 0.253803949322094 1.3824332314922633e-05 196828053.05699658 10720.93803751649 123479 47781 21280 DIA_20220112 70084143.31407498 1635.7869346806283 1.1660124605374143 2.725230410778394e-05 3501113.363076322 81.82880485034107 49929 462 282022 ICX_20190930 80178524.87604368 9949.231368055585 0.16179321058190516 2.0093819021192777e-05 14379581.36363083 1785.8642181715213 113357 26323 187595 TRX_20200713 1198493164.3028355 129175.81193597104 0.018162470542398782 1.95480468636624e-06 454863886.4483339 48956.44867322815 513866 73577 58804 1INCH_20210729 393038579.4687625 9823.820490694035 2.1795097655114906 5.4475855075191726e-05 75116274.18965225 1877.4971010894 243819 None 4419 ARPA_20210508 106803498.1289902 1863.9241464248412 0.10874355098106131 1.897219543024257e-06 26272862.53035514 458.37557992253295 41077 None 485281 GLM_20210804 371252836.3762387 9662.438984971597 0.37159460188054644 9.673651223852408e-06 7177056.016499707 186.83892706274634 158821 21044 227363 ETC_20210210 1114760568.6302207 23934.982750100775 9.583584776332735 0.00020576879265429187 1578942922.115771 33901.42481508128 277849 27916 152499 OST_20191011 8461966.029791359 988.4578290716239 0.012543211926964457 1.4651956752440773e-06 679222.7336569846 79.341257859343 17969 756 715742 WNXM_20210725 116166669.84865376 3400.0589130979415 53.6221952274867 0.0015694538142809913 10557338.03114698 308.9999275737226 31517 None 131125 SOL_20210202 1181003688.1507916 35394.16940197111 4.594574802707021 0.00013755689117279398 46965792.231593795 1406.1079965525944 110142 3290 80032 ETH_20210318 210150824167.56415 3570865.6247436563 1828.7548332342565 0.031026198746494975 30744899541.009495 521610.30350545194 804879 732268 6707 NANO_20190719 149269407.93016988 13908.30527776338 1.1039422686165308 0.00010346622513280846 10623428.030390412 995.6734401084633 98773 46956 306067 ATA_20210902 241746513.7224323 4970.603410229869 1.4039933453087359 2.8855955336159343e-05 79362597.49111113 1631.121384027293 None None 84390 NEAR_20210105 329010206.5301945 10516.112984539068 1.3543608145746604 4.328926904154385e-05 52181033.016069435 1667.8559751506968 34510 None None XZC_20200605 49856406.63305572 5100.451539541988 4.856296448732767 0.0004968128746364328 25473774.32787067 2606.0392287154655 63527 4117 211227 FXS_20210809 101495744.23680101 2307.123282708247 3.1676092069914765 7.20236712037255e-05 4588459.206500366 104.33031842793821 None None 100208 NEBL_20201124 6987313.515580362 381.535134231025 0.4079671716276032 2.2221379018029743e-05 224351.2945510515 12.220089007444129 38362 5902 885827 GTO_20210821 35416669.692122824 720.1642807106782 0.05345118564937729 1.0867436967772584e-06 10438764.118261563 212.23591151148824 13450 None 734299 VIB_20190830 3094771.764861863 326.12031369204345 0.01694220587500638 1.7863363094883397e-06 347907.8900427664 36.682383682853 32370 1120 3938160 XMR_20200927 1675144776.900878 156045.84301809384 94.58728852315521 0.008811150761367778 159060757.65701813 14817.089461130689 323785 180240 89034 MDT_20201130 10222454.511423597 563.5933175580219 0.016878791939136786 9.289506282239995e-07 2822083.5882831067 155.3177698788734 13360 69 1258241 PAXG_20210805 304703965.65476954 7661.43786722053 1816.6268914792524 0.045683113353205226 7227781.44326173 181.75859914517287 None None 40633 WABI_20190909 10421387.269008793 1001.8593994239862 0.18005166877702405 1.7332890490156324e-05 1109890.6990297362 106.8449632985592 36283 7959 1609387 ENG_20190213 23375419.108217042 6433.157331639045 0.3038786259540894 8.362783805246442e-05 400733.8912387043 110.28254736056164 61109 3176 201160 SKL_20220112 512110584.8935185 11946.005748496429 0.16042426124038153 3.750023007778631e-06 14381470.024881955 336.1763555088184 81847 3261 169615 GRT_20210703 1726029665.8780758 50978.53627241097 0.5966645379839131 1.7620819565333036e-05 83233619.8877115 2458.072341229742 114692 15537 34179 PIVX_20190909 20955621.36718202 2015.7305116935256 0.3436302968785618 3.305395063327425e-05 644127.5402019742 61.95891371852061 63018 8601 256099 RDN_20200319 2880967.153213435 535.3209045211529 0.056961468755051745 1.0572386149811567e-05 197072.92544277836 36.57790279976401 25132 4327 1385636 CTXC_20200905 1191730.6196751734 113.59250868939927 0.11938819751820207 1.1386511244787562e-05 8117987.097528419 774.243629542651 16676 20064 535694 STMX_20211230 196481545.30289504 4236.3977418549575 0.021272382595753783 4.571540172132116e-07 3664238.909456148 78.74630544775972 81756 5801 86095 STX_20210821 1518800318.777999 30908.79622434845 1.434924944938326 2.91742011017177e-05 47248487.5243781 960.6334335817492 71429 None 67440 EOS_20190520 6761453092.819691 826177.3505681354 6.479110479218784 0.0007918179847455923 3543043243.3314962 432998.5373454378 940 64914 118263 STEEM_20200319 76629099.24229221 14222.814916967814 0.22478510644840977 4.1721447814463526e-05 25659274.350354694 4762.513374127948 11000 3835 219600 ARPA_20210603 46211682.92076547 1227.9597452386276 0.0469885817415347 1.2478524110955633e-06 10394334.80241294 276.03718316657324 None None 459767 POLY_20200301 15192925.380204473 1773.612190650684 0.024763181237667433 2.89062608588104e-06 8791490.023329364 1026.237709577598 34962 4997 364083 WPR_20190207 6466785.338615496 1898.1744261530318 0.011253457730406138 3.302942907516646e-06 257465.7494044717 75.56741148333856 35128 None 633230 STORJ_20190923 22147422.380347393 2203.164742044811 0.1539174435044895 1.532297394154513e-05 3420290.3755086386 340.5008496967909 83365 7811 159770 LINA_20210616 87909148.55140604 2176.7693037892054 0.035498399766645615 8.794966098491834e-07 16035804.609328097 397.2977904023605 39552 None 70371 REN_20190531 28626700.69995124 3444.882323048065 0.03710984402979738 4.465703746045854e-06 2500432.8462144607 300.89569546856916 6373 784 1325556 KNC_20200711 295136447.66354924 31789.101647890213 1.6158609027161575 0.00017404443778076446 82516046.85529254 8887.806468168099 114244 8493 92529 XRP_20190922 12446451549.391525 1246318.0938678104 0.28907727996575444 2.8947610583859276e-05 1503798939.0234883 150587.36573289198 938597 205677 30361 HOT_20201030 84505855.34107949 6273.585404279463 0.0004727766742495683 3.515914950967044e-08 4688308.45946041 348.6570870596875 26306 7303 229993 COMP_20210725 24754.623188613044 0.7292695083495219 2.684782100852515e-07 7.9068e-12 322.547256831718 0.00949915693160801 None None 3559162 NXS_20190626 21829575.92479875 1844.823975034858 0.36560624378492895 3.089749275388611e-05 313537.0757297609 26.49711182485628 21369 3520 925188 IDEX_20210823 40237354.7463496 815.5236781293219 0.06810855481218275 1.3820406593965282e-06 4326424.425888592 87.79065247930917 53568 1970 8868023 CTSI_20210722 133284621.95091605 4141.7236896177465 0.35155682845017705 1.0885672697030822e-05 12825207.98459504 397.12218649575664 None 3918 130586 BNT_20200106 15356532.388469711 2090.9673642065786 0.22020233381887253 2.998045566395992e-05 12988730.483413497 1768.4102236146632 760 5062 126434 GRT_20210114 399420524.5758694 10725.993025593983 0.32666802645539833 8.740907689926727e-06 161164098.27346185 4312.391761214956 42227 2728 38944 COMP_20210318 71669.1562673126 1.2202453072626316 7.791638423846389e-07 1.323e-11 86.09915990286265 0.0014619414089194263 None None 1672733 CMT_20210110 8969805.270371728 221.76082169609984 0.011253721448834773 2.7926749645730674e-07 3213635.2804490435 79.74818671123266 None 1628 1272511 DREP_20210702 0.0 0.0 0.3753192402563333 1.1162135842819404e-05 797331.5412425323 23.712940932725143 4091 None 201937 RDN_20200306 7059263.240981691 779.711990200705 0.13897846742887102 1.5350493916265886e-05 1835552.109684274 202.7409858085982 25183 4330 1576973 ZIL_20190818 70738770.17102401 6921.026999147929 0.007752513349855235 7.584921862704626e-07 9703861.31507536 949.4086178225436 65981 10607 159234 XVG_20200322 39467813.01380808 6405.4055307367225 0.0024432073965179385 3.967277304105494e-07 716529.3329113807 116.34994901523902 295741 51895 327824 FTM_20210930 3027821254.7462683 72879.9648196003 1.1930076939982888 2.8701125974818744e-05 423350774.7677682 10184.88311456293 159878 13959 36301 YFII_20210314 93351926.39691108 1521.6643413891481 2341.0197313776225 0.03815706402645829 114982114.6241392 1874.1319651453769 15087 None 240399 TCT_20210421 26610087.050768558 470.9955126666109 0.0461209024880408 8.179795724405235e-07 9193002.610015456 163.04295750359444 None None 341028 ADA_20200229 1531950187.0796108 175024.3381203867 0.048926399932164466 5.61527583930243e-06 195936467.4850897 22487.600016202883 155790 76892 49262 SOL_20211221 54061922630.24034 1145897.3478662372 174.37115871651199 0.0036987583489002337 1718453799.121433 36451.815675741294 1153865 109929 3127 GVT_20200806 6441711.71371756 549.8925698496726 1.4762744539050994 0.00012597488534481815 593671.2475857764 50.65973142683736 20350 5504 171474 BAR_20210519 89133434.57040383 2082.496887673134 30.150358646286055 0.0007040894259233355 32561528.434089385 760.3965223534226 None None 36746 FRONT_20210826 59249495.584991194 1208.754627707437 1.2888609118219536 2.6301052033986028e-05 20362557.183646 415.52713028981407 71793 None 304891 TNT_20190524 15053197.794202961 1913.6046493251295 0.03513151884512735 4.466017036312296e-06 27138883.45366833 3449.970847684746 17381 2517 965063 RDN_20190318 17118260.045582417 4298.6528894983885 0.3383325690790665 8.496459411572098e-05 3720781.686704219 934.3904036922697 25124 4460 918297 LSK_20190816 158352423.8143727 15387.62319198528 1.1798345851805248 0.00011452000615321609 4179032.3140729223 405.6355122433478 182221 30895 173926 SAND_20210819 520737241.8217083 11558.978171563504 0.5879503029102154 1.3052671581490436e-05 146579730.4076201 3254.1136079765597 None None 25914 NEBL_20211221 19691632.654014513 417.49824071101756 1.0476203837005702 2.2228487101346408e-05 500549.6371966534 10.62069937462155 41309 6306 1078711 SKY_20190903 9693008.543259611 938.7109830204746 0.6151329426560653 5.9584650088104995e-05 636468.460787243 61.6513080316797 None 3803 477504 TOMO_20190929 20153573.319464803 2460.075119923864 0.3124091597575903 3.80592377619656e-05 609958.5373577646 74.30818294909457 17251 1333 283081 SNT_20200903 147156902.58197024 12896.534188196576 0.037862601816340304 3.3190915876914777e-06 39643574.52464141 3475.2142852996285 111903 5714 113908 CTSI_20200502 7255917.773462795 818.8486616792914 0.0386737074438667 4.3790460513124325e-06 5958069.397952109 674.6356115047192 14316 95 291799 FIO_20210318 69732802.99397975 1190.7390172205396 0.3142435535069977 5.33137781441698e-06 31865896.899253104 540.6288653154301 None 302 317954 DLT_20190207 8722270.176195707 2561.082944992821 0.10816773076406015 3.174772117779398e-05 2314328.6810625577 679.2659988440702 14502 2695 924698 ONT_20210509 1997716978.5908887 34066.98133256779 2.4489788996259048 4.169007106968474e-05 1206810104.505952 20544.072075162527 None 18808 138836 CHR_20201115 12299794.270721024 764.3204538496162 0.027937282165945695 1.7367385675695327e-06 4012048.682611332 249.4115082730263 31567 None 426894 DLT_20201101 2376434.848793475 172.22121571358727 0.029252839564830865 2.1200057018487997e-06 57124.80813069772 4.139937208 None 2541 None KMD_20210427 312842895.36772496 5807.062734997504 2.4877338235662463 4.616666676192856e-05 19022395.568921097 353.01228327757264 107669 9029 203738 ZRX_20200530 218471475.3038654 23166.35096342401 0.3330964869343643 3.5342790029341935e-05 54446813.71206973 5777.011707636395 153370 16054 121592 AKRO_20201129 20203031.959978495 1141.3475772741522 0.008766702085672845 4.949563634706483e-07 3460452.744962591 195.37256882583475 None None 105123 RDN_20191015 8891677.417084707 1065.2966165677706 0.17555716399278817 2.103209467815064e-05 1807013.0240004412 216.48372610410712 25464 4376 2320314 ARK_20200423 24437979.524823107 3435.0760191186596 0.1640916793753541 2.3065220763714794e-05 974253.1418271068 136.94395646096402 62428 22034 88173 WTC_20190324 33194200.32668599 8294.111452593399 1.2455422801420692 0.0003109774547589263 3419798.2384228897 853.8290260628546 54782 20327 924295 ZEN_20200531 60331624.07450108 6249.952079212184 6.609714015292855 0.000684311526900527 6168462.240415393 638.6282076048154 62451 5890 57654 QTUM_20211104 1696919851.2161386 26954.656290663366 16.290624497205194 0.00025850515309640385 589663193.6991395 9356.97549155721 261064 17409 158020 REN_20210120 618949610.3284011 17092.679785350807 0.6930303589651735 1.922847102036165e-05 185295589.3209182 5141.118023715836 34609 1002 93933 KNC_20190806 32726177.726923868 2770.9285626639553 0.19530575994981314 1.6535635975114856e-05 7852944.694794597 664.8725303298826 97628 6704 212094 PERL_20190909 21120606.49473903 2031.6723451498951 0.08082081166670031 7.77446462139732e-06 4734908.077862592 455.4690132130668 11372 366 317628 QLC_20200421 2066952.763083924 301.8440225223511 0.008614802237289049 1.258245971353825e-06 114531.58765855599 16.7280576842916 24426 5653 940522 QTUM_20200410 142055268.7329008 19491.332198459888 1.4759809836785727 0.00020242630481557162 307785766.0743559 42211.88212464791 179457 15133 108429 NEBL_20220112 16729494.203074636 390.4718920308027 0.8845403212321368 2.0677221630259686e-05 549169.7584737082 12.8375208410844 41483 6296 1050174 KMD_20191108 82579311.95910928 8957.51040154973 0.7031127242540919 7.626636038179295e-05 5024474.571659177 545.0027786338749 98266 8401 265268 CELO_20210429 539769716.9985409 9860.987339400559 5.256472767181162 9.599875709072285e-05 54783437.55274816 1000.5077829103495 None None 83997 EOS_20210617 4664676134.459392 121880.10032382577 4.86376034268851 0.00012708183407177147 1547167820.6504502 40424.87919057338 224456 88794 48893 BAT_20210314 1212720515.5584872 19764.814037087184 0.81280338234287 1.3249560185864175e-05 471260947.30575585 7682.054996593299 151791 58923 20502 TRU_20210828 249183618.61594605 5080.743832387532 0.5745187602159755 1.1711834825520679e-05 21576224.527602248 439.8414731150477 None None 91553 TWT_20211125 395579149.1849686 6919.043351741651 1.137981601143461 1.989734590719493e-05 24694626.123009074 431.7798438258054 10310 54934 3798 MKR_20211225 2314088948.637955 45527.1354705843 2569.4981301703283 0.05054051749133581 80454899.62131576 1582.50057232197 193708 32351 30283 ICX_20191030 83284603.77565591 8849.999119446882 0.16609053335066193 1.7650660605824965e-05 20455968.504824694 2173.882822567662 None 26431 151226 SC_20210324 1056321255.6559335 19384.76182754559 0.022330605946765242 4.0964608795660916e-07 229473965.37336344 4209.608661188425 124593 36442 75300 GLM_20210310 463357161.9080341 8477.989062409411 0.45887178762160025 8.380702427024703e-06 19533857.9507711 356.7607666309207 151779 20729 158485 ONE_20200127 19993464.110736158 2329.7807245562726 0.0050944752804750505 5.929755991896129e-07 7958706.785074918 926.3601577853115 71149 None 309943 ZEN_20200626 63291300.39987672 6839.9729147234975 6.757721640748013 0.0007303157415935678 4487606.484045716 484.98145256737416 63164 5957 59868 ARDR_20190213 52112417.10366719 14341.65000400523 0.052176694362859974 1.4359101870328393e-05 459475.6488118158 126.44836413631431 69649 6606 706633 OMG_20210114 457203278.7513607 12278.477411645537 3.267830261703033 8.741424037537938e-05 360724610.3873149 9649.359139381568 289421 42561 211368 VITE_20211202 91283858.66016537 1596.7649994748049 0.11932180337437663 2.0866619107575985e-06 10175682.763634743 177.94911775016712 39294 2790 264565 DUSK_20210219 76579662.55655372 1481.676419913037 0.2483650913297249 4.805451520897398e-06 15263403.225387812 295.3214715112087 22019 13404 665690 ZEN_20190902 34061096.800370544 3501.9032432855392 4.7075070940637005 0.00048399485471548227 1871575.9674520323 192.42310640343285 26966 1785 209860 ICX_20191015 86354919.18053976 10346.396305542416 0.1736616667096565 2.080501036319417e-05 32826818.10641115 3932.7175872175235 113010 26389 180222 IOST_20210206 329574172.49214214 8697.401727221655 0.018018473274058533 4.740274824497381e-07 208329342.31691432 5480.699288827871 203119 52261 229978 BTG_20200318 109940951.16907246 20238.5092769115 6.236893445795337 0.0011572525045681927 16673990.612186775 3093.850739122099 74933 None 195914 DASH_20200331 620935722.5123086 96853.85583888045 65.92673046128404 0.010283283464818466 548693527.1571046 85585.4830899145 315761 34600 60863 BNB_20210624 45761403437.01146 1357420.866211178 296.1273022004297 0.008790073232320807 2979006480.628633 88427.12215221729 4347836 518005 132 WTC_20201106 8128985.186033738 523.1449140429004 0.2789741222354565 1.790519227524844e-05 2998725.793285994 192.46502678917108 54995 19292 755936 MANA_20200422 35875921.738099545 5238.6850343434535 0.026986358614481797 3.942227947630355e-06 14114268.87852365 2061.8441349632876 48131 6827 45768 CTSI_20210804 164311866.38937852 4276.656101324155 0.4318089549029873 1.1240476993600308e-05 33463643.874362443 871.0966153453495 48081 3957 132314 BLZ_20210318 125771737.99481498 2137.103090358801 0.4610943402299763 7.822811664458181e-06 118665157.99190082 2013.2434972869464 None None 289688 BNT_20210711 737925722.8442088 21884.070357471468 3.213182994193356 9.532073512188462e-05 36844294.77039582 1093.005057261983 124468 7572 36831 SRM_20210206 157774712.53585035 4163.486439371171 3.144848008778113 8.264579044056868e-05 123304518.43765233 3240.410780657367 32967 None 83159 KLAY_20210702 2435576236.977891 72440.50004487598 0.981691439301312 2.9190636685723986e-05 11057209.28281813 328.786588138609 39483 621 50267 SC_20210508 2054696905.1330063 35858.36833205989 0.042991335580181644 7.501593403520226e-07 465007238.43832535 8113.949439770719 135388 43948 47016 SNT_20200417 63797417.20009099 8985.50066851152 0.016714366069949128 2.35783382363865e-06 17543035.038447727 2474.731091195725 110321 5641 178977 LEND_20190221 8711100.446276687 2191.2242040134465 0.007824366007860517 1.9681715626195254e-06 108546.16688331217 27.30412645273288 11680 5943 428546 GRT_20210217 2539272893.8933387 51639.86158817587 2.0694250024664766 4.2056630182607925e-05 552673634.1689477 11231.907711667802 None 9520 27786 ARDR_20200223 59941112.18056327 6209.581417409338 0.05990893914813667 6.204897255673069e-06 2558645.0091076368 265.00434861643447 64802 6396 1135907 WTC_20190904 33769308.528482825 3177.5880529006654 1.1534915116319586 0.00010854527173276003 3288812.833345125 309.48219304065174 55924 19933 440674 LINA_20210519 174608098.79380724 4075.4444564999685 0.07055004810509595 1.6491024312313514e-06 38791488.99125629 906.7483371700806 37984 None 70579 DOT_20210620 20468951490.828773 575522.2131153209 20.382325917766163 0.0005724791124860231 624793482.9809674 17548.596763052647 476904 26351 18773 OM_20211007 86276795.4206262 1554.3799221060249 0.23537744961010504 4.242961840971215e-06 12731723.281927198 229.50463667825701 51937 None 105890 CVC_20190725 17616819.212070197 1792.1333563659744 0.0513181712394146 5.233406774280165e-06 2313525.02519257 235.93236561029883 88577 8145 434521 YOYO_20210813 5422641.167953992 121.97039306517065 0.03054331503662567 6.877276551486966e-07 23284082.791942317 524.2753657089504 10277 None 1435059 MFT_20200412 5153546.362063907 748.9426606376609 0.0005306868126955047 7.710654335171185e-08 946208.2601165869 137.48004752153034 18323 2557 847135 UNFI_20201228 15976732.101201678 603.4856568353123 6.620208185769335 0.0002514834705215409 11375492.56686712 432.1236235073606 None None 121184 NKN_20210203 20150314.19524405 565.7412850356217 0.031083523312023596 8.752292613341551e-07 2711834.526560833 76.35804042279203 14070 1026 338143 POLY_20190716 30035835.301235996 2742.492434129364 0.062254618177347135 5.692844158124219e-06 11984232.82067961 1095.8925104713205 35251 5095 307913 NEBL_20190511 17795311.924666643 2793.260867614277 1.1771844010919739 0.00018475121527001306 256521.8039019773 40.25938074798145 40404 6179 646043 APPC_20190509 8033942.092100832 1349.6494959305455 0.07542350308857408 1.2669941340100533e-05 3282272.348220957 551.3692206175645 25682 3390 1192201 MANA_20211216 4424133216.936339 90683.7534740891 3.347136261213516 6.849153037581318e-05 822789438.4859107 16836.514387533374 395412 71858 4163 NXS_20200725 13568763.557634037 1422.1549084128796 0.22809840878672877 2.391284638742028e-05 225412.06736843954 23.63122202177301 23272 3525 454042 DLT_20210120 3830073.5141147096 105.79272958510278 0.04667409714131029 1.290024371108867e-06 153363.0240504045 4.2387973366253116 None 2534 6584935 MATIC_20210203 200699305.4540289 5634.830511228528 0.041027954686022716 1.1552379732965708e-06 33193757.135552425 934.6478276295359 80618 2985 42218 NCASH_20191127 2697247.3574699075 376.30292948211434 0.0009288903567058669 1.2979074214028397e-07 251508.20956947902 35.14240075670556 58825 58633 1075692 NANO_20190914 120218590.38741283 11609.780577135629 0.9022149937295737 8.712893801904746e-05 1083466.8559646977 104.63283939541337 98507 47639 229089 CELO_20210304 405764272.4574258 7980.772958611638 4.110575744559351 8.112712637108678e-05 20385535.765427478 402.3329185389897 None None 92860 MFT_20190812 11405748.760718454 988.2482573306468 0.0012708360943327356 1.1011127650843517e-07 340087.8049832496 29.466823061332335 18825 2184 955030 GVT_20200629 5196227.840232581 569.9251033792095 1.1756887135408332 0.00012885415162107767 603546.8108352538 66.14804699414395 20337 5529 238169 OMG_20210106 492865049.69129 14508.691458468398 3.522240443554685 0.00010336398851565906 787125848.5267456 23099.06676484216 289460 42589 211368 WRX_20210104 16170839.143965354 483.38358811938434 0.06701937452188382 2.0359438338677344e-06 1196866.7120912732 36.35893978163142 None None 5719 CND_20210819 30777869.7708622 682.7843437311586 0.01633364775864051 3.625634249696604e-07 228564.938528587 5.073532144530696 36212 6260 184499 BCPT_20200323 1524738.480989065 261.3420236064839 0.013016315095374754 2.230625477049767e-06 821667.4877032009 140.8103920583114 10648 3168 1690012 BCPT_20200223 3329708.818918093 344.94777501018143 0.02857366625161606 2.960097042257439e-06 214210.46679454332 22.1911939334439 10723 3154 1896885 OMG_20210813 705556202.1055259 15869.829760090488 5.031260786525239 0.00011316900101014198 307182945.47366893 6909.518019760004 325994 5013 264742 FTT_20210422 4520564574.11296 83430.78324296181 51.09389344377688 0.0009446431540157086 183941953.06860468 3400.7881371134713 99029 None 2918 AUDIO_20211204 1117284709.0275493 20809.061293892526 2.1801416511890075 4.063530150420435e-05 33536828.670199323 625.0874312525337 111825 8617 21764 STPT_20210206 24188827.72453724 638.3143064989736 0.026449355976042244 6.958259689954413e-07 12651978.523622597 332.84648684389373 19559 None 1418206 GXS_20200531 34807308.38589553 3606.0752712896833 0.536315895769627 5.555129936660866e-05 25487280.449442737 2639.958198993753 None None 444244 COTI_20210202 36560933.263356455 1095.125818991616 0.06442177777463182 1.9291518242371915e-06 9358593.306346234 280.2491327139565 38009 1390 238618 AUCTION_20210310 52003040.56315496 951.4315918037303 24.519715819148544 0.0004478210415606321 5234633.184087895 95.60383578570737 None None 37117 XRP_20210825 53731037233.17458 1118120.7324019824 1.1458793612657157 2.388705905282007e-05 6389709602.506549 133200.20917110489 1985288 326864 18908 NANO_20210508 1342548001.0905623 23430.015690542834 10.103871787349963 0.00017630328745808728 163258764.01835948 2848.7155625645632 120636 88955 59676 DASH_20190726 1028706229.7680252 103848.65540757764 114.7433039472168 0.01160353773900323 267874679.52768728 27089.109745809354 320677 29136 102503 EGLD_20211125 9189811328.38674 160738.25707558414 456.87636824611815 0.007987496157407067 774425742.4854 13539.160858867215 395295 12923 24645 ZRX_20200901 443920658.6891683 37980.47635073952 0.6152444924904724 5.270745151520447e-05 106708067.13616988 9141.585733005086 158057 16291 45992 WRX_20201229 16083368.3475771 593.164126596537 0.06759221228932677 2.4902485383721075e-06 819805.8251971811 30.203483342245754 45884 None 6918 FORTH_20210805 133295715.38468999 3344.1000962351195 15.441864583010352 0.0003882682846038476 13096179.274435664 329.28867070522654 31855 None 110884 NBS_20210613 0.0 0.0 0.01535366080932942 4.303602643125465e-07 3667067.837733075 102.7872312341236 None None 498254 ARDR_20210626 105856513.3581686 3330.2505976859175 0.10640409550055864 3.3471952316147033e-06 7587290.931984435 238.67637715390802 72032 6953 None THETA_20200907 428548441.2190141 41616.79935514931 0.4275399538337463 4.160887472510468e-05 57794422.30193869 5624.645967722308 72805 4378 65774 STORM_20200506 9066298.072313588 1011.0693575543903 0.0011677976336414513 1.297819884907045e-07 444911.6539381079 49.44479889955335 25869 2506 836447 TRB_20201031 32442307.064325675 2388.720893331289 21.28210355925148 0.0015713886534167013 32357800.88587142 2389.175535210279 10216 None 195357 SUPER_20210702 89233410.96076924 2655.701415847926 0.4119023600007394 1.22499596462042e-05 6530684.0671158405 194.2222819119904 126311 None None DNT_20190421 9884056.669362059 1861.2810501882348 0.01714780438995 3.228559058251185e-06 452129.87124600454 85.12623296383929 60880 6422 1091663 CVC_20200318 10968926.771719279 2019.217806164052 0.01635483535068858 3.0406985695903266e-06 5147379.487736797 957.0031803983214 86598 8063 104560 FIL_20210821 7172245428.250522 145978.86899218697 73.03504593331157 0.001486015580575819 515087546.101654 10480.285308049743 99206 None 44704 VIB_20210206 7241050.810672077 189.9681829641895 0.03972071595941457 1.0406003356111058e-06 33113004.075219776 867.4919955867147 30469 1106 None STRAX_20211028 210591534.22251162 3328.392149920753 1.891856500524372 3.232174842520073e-05 5213408.643558845 89.06937844819124 157318 11107 259417 LOOM_20200320 11221307.327034924 1814.5094997126666 0.013415909358461368 2.1733129651774995e-06 30249572.2174133 4900.285603801749 21575 None 494145 GAS_20200107 13967460.653233632 1800.1763298041662 1.0009131582720725 0.0001290914626889864 1084918.9923183327 139.92600502846494 323284 98680 215815 MDT_20210428 39840241.37192891 723.1855984454533 0.06558227159214959 1.1908018602272374e-06 13473563.805694237 244.64454271254053 30575 240 381469 EGLD_20210207 1642096646.0562656 41876.84655366138 96.18356033761364 0.0024459568735872438 280665202.2694996 7137.342163860149 140650 4945 47707 LINK_20190625 680826666.7409858 61664.05017923642 1.867875925818243 0.00016911919960003753 44857016.655371174 4061.395432289603 19390 7874 223883 CMT_20200109 8497006.283918496 1055.911880002048 0.010599596422958601 1.3189165349454879e-06 8432664.838982852 1049.2834487262016 288238 1643 926664 TRX_20200518 994292118.3105286 102821.96077919168 0.015010809028839368 1.5547517086767148e-06 1405846453.2992854 145611.2173037994 509070 72786 68608 SOL_20211207 59370079864.68529 1176482.7862775275 193.89173190285274 0.0038388947635898604 3396199570.300543 67241.92217265487 1078419 104673 3321 DOCK_20210210 17046141.110610865 366.5995607523699 0.03038637720803535 6.52395877177241e-07 5856889.21744348 125.74748060237792 43788 14833 229507 POLY_20190305 42178707.73122875 11360.045323598644 0.08750885198444712 2.356887107812879e-05 7329781.409731258 1974.1394060057453 32882 4988 264578 NXS_20200530 11205005.47906775 1188.598094578392 0.18750256368701695 1.990689690954709e-05 236119.0956823944 25.06844921849127 23526 3522 668599 JST_20220112 352753272.8802591 8228.677066896995 0.048193917975421025 1.126592309348002e-06 377566279.80039394 8826.077749254495 56618 None 162886 BCD_20201130 101551334.12583044 5598.278297947207 0.5400376653593724 2.9770769691235153e-05 989871.5391284975 54.56885603653669 27818 None 3884204 GRS_20210620 45863491.17512964 1286.5255430464506 0.6034551317493101 1.6949265733596074e-05 2440895.8711747364 68.55752908861628 41140 106844 6399829 NAV_20200605 8400989.28880851 859.3392776715137 0.12208186302065231 1.248778404285278e-05 84747.27955318292 8.66882024154882 48491 13862 1041547 PAXG_20210212 125945136.55072424 2641.274405658507 1832.6208062516714 0.038382569521826566 5964106.821150931 124.91277187157978 15089 None 71165 DOT_20210105 8767297086.336569 280228.04429465084 9.259346327220705 0.00029595535399019174 1788452339.2778962 57164.08334458013 103933 7299 41009 TRB_20210724 61249505.62239349 1832.081819753695 34.12530379787756 0.0010205298237694416 20240540.38899614 605.3008418188855 23267 None 258398 NANO_20210617 805378567.0851947 21028.768099726927 6.044194391426672 0.00015781642000604228 28741856.183939595 750.4617743121946 131716 103368 57331 VIA_20190104 7055978.537750835 1871.0542397071986 0.3052727680090724 8.095907726381421e-05 164779.4065279421 43.699897608242125 41079 2232 2595883 MATIC_20200407 36925036.44184003 5075.326280936588 0.013404483360208925 1.8395935934268518e-06 38890338.67383947 5337.200692342129 33425 1614 187719 ADA_20210708 44945443131.1824 1322805.4867707593 1.4019197477829792 4.125987929644506e-05 1573433402.0584161 46307.69511064402 524462 538805 6662 EVX_20210624 7443305.108975327 220.79081736220488 0.3405323564270242 1.0098316924945794e-05 201656.24945320145 5.980015344917017 18213 2810 977080 BLZ_20190702 11334759.871064208 1067.8020175576762 0.05460403233280334 5.149146008325732e-06 825396.3740962038 77.83466281501639 36591 None 875271 AKRO_20210128 48969246.359174594 1618.752741656111 0.020278349312710123 6.668947950777208e-07 34282332.67153774 1127.4442938726506 26716 None 227046 RSR_20210806 521117965.5517785 12719.056070323151 0.03947530711452793 9.647914220223092e-07 75919766.51327476 1855.5077806345264 77479 None 131143 MDT_20210120 13597828.319502734 375.49745553253257 0.022196713453907054 6.158588233176831e-07 527804.3715364822 14.644194054736134 13702 74 1359138 ELF_20190621 88123742.21863404 9212.336169925513 0.1909361623505051 1.9977784203207636e-05 24524812.219055653 2566.0482545840146 86581 33213 1215448 MDA_20210724 10832725.650768276 324.0809634134019 0.5518766855650853 1.6510408710539384e-05 2122193.183607632 63.489322416666084 None 389 1618266 XVG_20210210 338993519.52837193 7290.499037324204 0.02066262075280057 4.434564540192861e-07 49082548.579305395 1053.3984632253391 291087 51951 157669 RIF_20210819 175887841.03632718 3904.2410488444225 0.22915069678415217 5.087213618206075e-06 5477595.543094989 121.60425009794204 44749 3383 841825 TKO_20211216 95318445.7811976 1953.898096900986 1.2738105983277521 2.606543584924072e-05 12626988.333098425 258.38060603166934 349281 None 24168 FUEL_20190510 3775315.290394562 611.1174525268179 0.007084850385977208 1.1474308954064068e-06 6125641.196642457 992.0816362069664 1 1514 None ELF_20190923 38552247.16995537 3837.8960045116105 0.08356853751597658 8.31929082684952e-06 8045872.846082416 800.9707738347619 85186 33568 944758 CELR_20200730 27532711.168883078 2479.4632550916394 0.007008655892668413 6.319101114594207e-07 8763006.319925288 790.0847730498756 21952 None 610073 MDT_20210210 32178691.91582235 690.8763051079353 0.052687020518379014 1.1312410599624616e-06 38080722.86858018 817.6297858210099 21862 79 1222000 TRX_20210519 8322538056.060673 195253.23850106777 0.1170980346884558 2.7370299024924443e-06 3077387878.605068 71930.35022081579 956725 109033 18998 AE_20190318 122043375.66266452 30646.92536120092 0.45882107693404767 0.00011522256541707373 68449986.44259495 17189.670303252886 984 6346 437952 LINK_20190810 788483352.2473041 66492.03441183733 2.1664214848852095 0.00018263992891944309 57500489.782487884 4847.572570700944 30600 10228 107221 MDA_20190901 11649169.049380977 1213.5485046985063 0.5935676398323751 6.18483419229378e-05 200193.42172424303 20.859680290220115 None 364 3117488 LOOM_20190629 43928354.19382189 3549.297489404853 0.06351078551486129 5.12998117901376e-06 7101848.669148026 573.6403622406505 20514 None 421831 BAND_20210427 439033704.6605981 8147.207555154643 15.036414472102205 0.00027902503158799407 179332455.7193957 3327.804259100156 84636 4893 169936 BCD_20190806 154849436.35403055 13109.994671701828 0.812282226903605 6.877218171438017e-05 3734224.707125067 316.15954604803795 21443 None 3532175 VIA_20190601 13726216.394696843 1604.439582498297 0.5946173153260887 6.933524904363467e-05 391427.22225880774 45.64230344164991 41186 2237 1811232 POA_20190905 2957524.066358083 280.0175828091361 0.01343480574083043 1.2718589187684451e-06 91372.7438435115 8.650161485887724 17715 None 617003 AION_20200301 57034295.86772505 6650.214729380274 0.1447787524339473 1.6927429597690807e-05 6694666.004247452 782.7356263389172 600 72544 246428 XMR_20190916 1297912611.5132878 125981.23924211506 75.41672218512932 0.007320147082146445 67173748.83227053 6520.062225779697 320328 161063 88240 DREP_20210603 0.0 0.0 0.6311263211272621 1.677124929969325e-05 2617616.2902108566 69.55928457500065 4018 None 183665 CND_20191011 13976163.078766538 1632.257497937306 0.007969281848202727 9.307218280578752e-07 330894.8075908344 38.64476449471485 35545 6088 313724 DLT_20200605 3712039.560404013 379.7054471638402 0.04526336869612983 4.630001208563403e-06 607675.5248385775 62.15928013015039 None 2563 4273653 PNT_20210826 39293296.17208408 801.6432139615439 1.2248236603799534 2.49909181327244e-05 6748932.734845184 137.70310854989444 47865 334 475621 POE_20190920 8772146.042624326 855.8196906641659 0.0034849181477746628 3.399922386980917e-07 498247.68793183635 48.60956259597256 None 10712 709572 ANT_20210729 139131858.006782 3479.603902934704 3.96515919566282 9.910735024502132e-05 26270419.495175023 656.6171842078408 85926 3063 128582 LSK_20210202 197324893.8694999 5907.706396617515 1.3789718209324122 4.1285012182322075e-05 19589945.12133343 586.5030094947182 178722 31082 225361 SUSHI_20211120 1734977875.484374 29845.9768803205 9.056415260672326 0.00015525895911361562 214341081.72264484 3674.5635315615764 164810 None 3690 MTH_20210221 8091202.65951707 143.88117562022563 0.02328109530772104 4.1399424826683954e-07 696332.6472240475 12.382480592980189 19639 1909 681058 COTI_20210825 251989555.06112787 5241.598906227849 0.28682402736352314 5.972352961087563e-06 59790667.99679708 1244.9827733695906 128752 5687 156434 ICX_20210111 370527771.10690093 9611.677134300064 0.6375755775617536 1.6576833370805722e-05 66011010.892811395 1716.2726533429516 117509 28120 340142 LEND_20191020 7497030.289514585 943.4241135035933 0.006947400586204599 8.739323007757217e-07 2849980.6007570727 358.5067641747255 41491 5799 671068 ELF_20200907 41653481.35736034 4045.014307278281 0.09046658184497959 8.794851545003914e-06 10018993.034778249 974.0122216875035 81836 33354 608633 CTK_20201111 20359704.31222146 1333.0541336397973 0.9231080839812461 6.0434001098254196e-05 3894542.141098282 254.96772059154935 7517 None 341284 LTC_20210725 8387276967.407461 245488.79659233952 125.71866893668708 0.0036796344546838693 1261581789.7927198 36924.98385789356 188920 339205 73316 ADX_20200421 5365537.148858293 783.5473286714565 0.05835091451123944 8.52251753276261e-06 135832.9814409911 19.839260027968933 51906 3758 31500 AION_20200506 37575224.96383011 4189.703554217037 0.08966155018624572 9.983987413123668e-06 4347718.499629663 484.12688254821506 500 72545 306523 GTO_20190205 13886731.52265186 4008.5330219775947 0.02343042185771748 6.763407183491838e-06 3258866.656655725 940.7018913066438 16283 None 829190 FRONT_20210704 25945320.877950832 748.4108491219924 0.5851634591039159 1.6865291123466946e-05 6910755.157619836 199.17835914556215 None None 214172 KAVA_20200501 11413960.661378348 1322.0327911789843 0.5819191679364965 6.751034156131078e-05 13405262.069275524 1555.18819602525 21630 None 342540 NCASH_20190701 8176658.459372402 753.6589430382002 0.002865654449092718 2.656806187981081e-07 1402905.9126863838 130.06624407072172 60274 59133 1075927 BRD_20190922 14050849.610175038 1406.4090700249733 0.23253410872069974 2.328240268967438e-05 150867.5320766785 15.105563024414554 169 None None OMG_20211216 845612090.0935357 17333.04676700643 6.056905531433891 0.00012393984064959068 334869370.4730575 6852.287228101121 6402 6516 101048 FLOW_20210828 1306132238.624295 26631.458972031494 21.8998665904737 0.0004464390686078673 54815791.65815866 1117.4456644186305 83101 None 63325 KLAY_20210902 4129955556.2006893 84916.92746940351 1.651918714351564 3.395150895805168e-05 68766189.38129027 1413.335822462919 43610 742 57146 ANKR_20200430 8091782.761765265 926.3073674862803 0.0015658467862575732 1.78599806102619e-07 2112430.8736207075 240.94295032246146 None None 5745 PIVX_20210401 101164373.85242851 1719.9178110108203 1.54402076899986 2.6274412745827065e-05 3348412.025325439 56.979518257049634 66787 9543 200189 VIB_20201129 2873328.0407229406 162.31901654977352 0.015767310588901535 8.906392850914266e-07 638943.7689854818 36.091660553919276 30422 1095 3122321 LUNA_20210809 5581167794.741168 126874.75788251658 13.46523692952092 0.00030610837977684173 354779054.03643584 8065.275195548889 None None 19567 XRP_20190623 20263950769.413776 1888727.0214912032 0.47566898494524945 4.4345169231418365e-05 4632564299.37837 431879.84571877547 928701 202361 41010 GRS_20190704 27185364.624866456 2265.4034323715637 0.37299944314789246 3.108268844063991e-05 1650956.374759911 137.5770488895986 38645 107028 None BTS_20210508 376341596.061075 6567.663921545957 0.13949418589956258 2.434036247654811e-06 113370205.74369808 1978.1985063014015 5450 7125 108198 LOOM_20190914 14322157.525441822 1383.1230737751268 0.02377605787052424 2.296005681163006e-06 1965856.8809132266 189.83881144257302 20913 None 439430 ADA_20190522 2635936005.966586 331255.76791200385 0.08450471939881433 1.0619435244141861e-05 222533700.30083972 27965.091616139925 151515 73231 118037 QSP_20190621 0.0 0.0 0.025060649923308084 2.6221619059172167e-06 420336.2215195545 43.98088761140413 56786 8590 682845 KMD_20190405 134216883.95984556 27400.708725836204 1.1928524483334009 0.00024369897274556526 2482368.431251205 507.1462422004905 96422 8333 316064 AMB_20190618 6460888.319374996 693.1094205590431 0.04474751175672416 4.802607161616309e-06 768227.318957513 82.45137838798897 19341 5674 665963 COCOS_20200107 10013142.837684946 1290.5344347618857 0.0005781670255559721 7.456833431624547e-08 2835943.2365243584 365.7620618534757 13832 187 47947 CVC_20190819 13009369.298109729 1260.886222888673 0.039357897623042704 3.8144884792159823e-06 4263009.620712479 413.1623401417221 None 8141 181988 NEBL_20200208 12398048.12545552 1265.7129231040074 0.7747611412090017 7.903791207849506e-05 3423236.0511702797 349.22431656048 39773 6026 684994 AMB_20211021 24532054.96652758 369.90048645056135 0.040567782001733936 6.12247854938783e-07 639375.6341204777 9.64943955954149 1637 93 718802 DASH_20211111 2248258798.3338146 34690.838149251096 217.1456704765744 0.0033430559662748095 760525238.4025831 11708.630571193495 416101 43132 63232 LSK_20200907 195173060.87134764 19005.740951878724 1.377949725084015 0.0001341832494850418 5414008.676279312 527.2102920003662 177161 31140 154777 STORJ_20190803 23986536.862181574 2279.050656655972 0.16681936118453408 1.5849523251375348e-05 3642101.0236682715 346.0363620181516 83824 7776 204651 MANA_20190520 75440288.96044897 9221.921208012167 0.05501049570403646 6.732389990051748e-06 16107201.179718943 1971.2594588041973 44644 6228 119390 RCN_20200520 43480788.435802214 4457.555356883163 0.08550172773667486 8.758316258242301e-06 430438.60930719116 44.091711008236395 None 1135 1036055 XRP_20210823 57001021097.1346 1155409.3180005993 1.2246487645120476 2.4850246649670937e-05 4757633980.348473 96540.64194285328 1980867 326519 18908 KSM_20210825 2694245053.3761296 56066.12876796218 299.7526280359576 0.006241834412490136 225552148.9556289 4696.7366871374425 108143 None 63186 CDT_20190615 6953970.854091051 799.6074947749548 0.010285200958259364 1.1853372722177849e-06 1237596.9247947973 142.62917845697103 19673 294 399262 AAVE_20210814 5514781981.781323 115741.72178084477 426.80242771495875 0.008945656948169409 416544254.3035405 8730.648564208981 267420 12423 14216 MDT_20210704 14514626.395008137 418.91342348331887 0.023996727259176356 6.908645385709153e-07 3215510.8171072034 92.57439037154782 34364 310 534148 HBAR_20210805 2026005092.9928684 50894.41313458645 0.2178749692267387 5.479074937421114e-06 50717068.98852869 1275.4224249841086 118901 23848 44489 BTG_20210207 216732869.51661572 5527.035776495177 12.443278844553651 0.00031643373683575856 38657121.04697234 983.054178968252 83620 None 263524 QKC_20211111 185261864.81622246 2856.246820946609 0.028033314246249087 4.316770690349298e-07 6718134.521388217 103.45065139642847 77076 9605 448868 IOST_20200425 42730281.14169962 5698.313641992937 0.0035491690997589646 4.735215600046141e-07 88806781.85935627 11848.386116031419 193293 52212 215999 LSK_20190906 140237346.58599228 13268.7410892442 1.038862697742976 9.829281020280536e-05 3362823.6808344615 318.17620415468986 181829 30941 161832 TUSD_20190321 203853938.7996556 50444.15188422016 1.0060498685387698 0.0002489332161985517 64676645.69197335 16003.347277826004 8420 None 298928 COS_20211111 72955239.36679937 1123.3875065278721 0.021290507907862105 3.2776663462500676e-07 15125276.292904746 232.85310664045133 None None 292740 SNM_20210513 212390221.04954126 4117.83000208 0.4845332749092156 9.43e-06 1610975.4801841045 31.35284936 None 9715 None GTO_20190626 24533676.12814509 2078.446749381655 0.03738453808565019 3.1620886973378524e-06 16898050.766238842 1429.2843531340843 17423 None 1224207 ETH_20200612 25655172292.438347 2768305.3059619195 232.00078536182022 0.024948526254985785 12109538778.82486 1302216.0493470416 460442 465266 19155 AST_20210602 31650424.244731016 863.0700508387738 0.18404795973756918 5.017403555072207e-06 1655138.1040416467 45.12136846936672 None 3688 193022 RCN_20190605 14316649.01548021 1866.843010656193 0.02866581627392634 3.7318235309337204e-06 1378617.48584955 179.47359756608674 19017 1122 2270629 CDT_20210511 26501922.52219162 474.30392455685245 0.03928659991902878 7.031108218087613e-07 2059855.2241041667 36.8651525561379 20832 331 439508 FET_20200807 61803759.22656835 5253.046189230306 0.09637742884758389 8.191033327024327e-06 12970335.797788398 1102.3374876538305 19866 492 424250 IRIS_20210408 195786204.2142895 3475.8942428538767 0.20010231149968416 3.5609812394682298e-06 21633874.052278608 384.99215256343626 21303 None 562612 ENJ_20190908 70559092.6995451 6739.939494348317 0.0801555314010355 7.65807006349914e-06 5099727.501071422 487.22863943802395 48474 13728 25046 BAND_20200719 63964930.74456202 6975.863695988936 3.1567656669694473 0.0003443694838944496 16656821.477170987 1817.0816654003077 17483 1356 306961 ELF_20211028 243423421.9241928 4159.00739721303 0.5283274853107477 9.021352043586857e-06 36858294.60181954 629.3665587617061 54392 33515 157722 COS_20201129 18868480.542485926 1065.911431635304 0.0063033919984060655 3.558363094027203e-07 618481.4065053962 34.914240012478174 13774 None 342611 RLC_20200721 96994392.32165477 10586.841933913081 1.3704452170725012 0.0001495738053672965 12541320.12144854 1368.7909239463338 31932 3732 380436 TRX_20200113 989600149.447722 121316.56934144741 0.014950159909701782 1.8338583353040385e-06 1238801713.778028 151957.3611467866 493858 71724 62423 SKY_20190510 15795708.26858583 2558.706741789873 1.0530472179057222 0.0001705804494526582 279880.08651866356 45.3370657454002 15633 3709 424998 FIL_20210422 10113452284.82981 186650.10982215696 149.08109494167246 0.0027535770106821853 970193247.3497243 17919.789379508602 77909 None 34217 EVX_20210620 9978686.366371298 279.81109426279903 0.45701443196849956 1.2836180594020475e-05 133821.37073475277 3.758645596139625 18163 2811 977080 DCR_20190419 240871906.42046463 45681.52796546881 24.979052156440858 0.004736745549223124 2723449.856801846 516.4442952817228 40421 9421 288305 BRD_20200325 9477597.645253329 1402.3553924490684 0.15392818559043936 2.277969655239926e-05 2058303.9114757995 304.60658219405013 178 None None XLM_20210204 7627137691.565449 203583.4900134448 0.34313043968983475 9.147873817818558e-06 1415384966.5115314 37734.23042557426 356504 136100 30646 MATIC_20190923 27052540.346957386 2691.1124035837483 0.012331307865190103 1.2275880307983217e-06 6093875.1001153905 606.6483957633518 None 1157 202428 DOGE_20210902 38342017497.331665 788354.8234671459 0.29343507592891854 6.0311949387973985e-06 1738116784.9624844 35724.84006323742 2075061 2149359 29714 SNM_20190601 11274383.745899003 1314.3500194592139 0.02765169335144713 3.2242474995675494e-06 207646.5863936159 24.21204294666877 31427 10006 15012322 BNB_20211120 97897877035.36423 1684089.3569401917 584.2926021273962 0.010016839843687876 1997409357.4315586 34242.654387250055 6123296 712160 123 HC_20200621 53408875.39679651 5708.241963978731 1.2533291194077598 0.0001339551275358687 54002114.97735429 5771.716372804281 12704 845 1025848 TNB_20190601 14141981.757888155 1648.5455778877044 0.005133657457248033 5.984476758497716e-07 640616.1267871255 74.67877149581993 15780 1496 509934 MDT_20211221 63257008.625316 1340.7965327736088 0.10497036983489785 2.2272691026270638e-06 53911672.803573646 1143.9018772173517 41980 712 368604 DLT_20201226 3045972.8921999517 123.66035723979421 0.03743868876254473 1.5163041797244592e-06 77214.02616840955 3.12724495655 None 2532 None QLC_20190729 5259098.484939952 551.4862193314232 0.021742499753673893 2.2807674786095505e-06 109277.51735550948 11.463107303727693 24918 5766 940522 NKN_20201124 13739772.615818711 750.2462824361673 0.021241769550906862 1.1570083208440385e-06 839905.9779795387 45.74845814610998 13701 1025 337822 AION_20190627 44013691.98198489 3390.977662096956 0.13808265984651122 1.058858188577534e-05 2925141.1289558825 224.30837011560686 67392 72574 278705 DCR_20200506 169718453.62811115 18861.485723978145 14.822408140967907 0.0016472730782619905 117716292.46051064 13082.279046618649 40556 9759 293468 RVN_20200414 96537404.25142337 14082.874125244894 0.01623339795043702 2.370783227519303e-06 12642691.334137984 1846.383650372537 30332 7632 209100 EOS_20210115 2646073953.3078737 67750.9566358133 2.797917255748749 7.132267425117881e-05 2724798335.248799 69458.77461737058 None 74084 95839 GO_20211028 45168043.37118245 771.8254979945517 0.04142107728496252 7.072715213266533e-07 36247281.86396073 618.9281367915227 23883 1139 226693 BTS_20201015 52408032.32421227 4585.760515548369 0.019337358806516283 1.6920401808130042e-06 16586285.230954144 1451.318214757566 13177 6924 91611 ARPA_20210428 93820456.72161405 1703.0419697319517 0.09545120688150796 1.7321514823210777e-06 25696902.761190586 466.32127202029227 39262 None 501259 VITE_20200117 6138357.36919933 705.2326671378495 0.012098749542271473 1.3885005043108955e-06 1752751.9355948542 201.15276690391264 None None 534616 MTL_20190325 15166281.251099026 3797.7189715724458 0.3499510786847972 8.769883427713807e-05 3270104.1012656563 819.4983102315123 None None 615522 POWR_20190923 23170326.993064854 2304.9204831198476 0.054061527545160325 5.381852830749148e-06 5310692.913389003 528.6822068667332 83799 13021 385730 ZIL_20190901 67115020.59453243 6992.012746179525 0.0074085099291446195 7.719491840333715e-07 8421687.564210137 877.5198934135224 66110 10613 166369 ADX_20200106 7621922.558162031 1037.8118522117006 0.08159361417157901 1.1108936448173204e-05 81406.26829512042 11.083429385438745 52875 3798 215499 AKRO_20210805 70607750.52104042 1771.0726451809974 0.025981833339747303 6.532475880013659e-07 15551540.464698797 391.0042130371442 43918 None 238743 BQX_20210324 885840908.6250726 16256.243012103918 3.9924386599472577 7.312943335159147e-05 19193973.017642133 351.5756884701763 None 2964 27667 WAN_20200907 44046133.83876998 4277.367359274418 0.35209316968057275 3.422929322848463e-05 3413340.73833789 331.83330743762076 104698 16057 459215 MITH_20200506 2428408.4140787963 270.77180172175343 0.0039712622418120675 4.4134214329009835e-07 3114585.944789151 346.13630443786496 96 2092 1209693 BAT_20200113 269527223.82062745 33041.74737270523 0.1894863729526857 2.3202138226913886e-05 41388265.43663693 5067.890849717389 109839 33231 23415 SC_20210318 973006447.1076167 16533.246007449226 0.02071706733753585 3.514806014331228e-07 296312915.6150888 5027.171080536793 120528 35487 75300 YFI_20201124 738267324.6178995 40323.30701612844 24918.549944233906 1.3577774261437092 854256619.9750494 46547.26528356211 None 2123 9390 XEM_20210610 1575147444.6991153 42055.91015774154 0.1750163827637924 4.6728789069349364e-06 115512517.24280703 3084.145591326554 369200 21590 39314 LOOM_20190221 28860244.650409672 7276.75745310474 0.04705997317554607 1.1857392463542296e-05 2528331.8863662663 637.0471853628542 16997 None 410268 BNT_20220112 818093382.9099346 19083.667753286183 3.193465695264319 7.464333523644278e-05 41061168.59437772 959.7543437323666 143346 8698 34822 JUV_20210430 36798244.63672926 686.6696940855812 16.79550929901132 0.00031338251904115073 9331645.9020371 174.11646455713986 2426561 None 44251 FORTH_20210902 158279167.2899095 3253.680828450542 18.331937652002125 0.0003767721377590348 15080402.654605335 309.94407979683086 None None 146286 RSR_20210813 503792753.4598545 11331.925670140037 0.038392901463503354 8.634922649632452e-07 61283037.0061108 1378.312823753026 None None 131143 RCN_20200422 29300310.514411867 4278.499081194525 0.05763850658230628 8.419962646850317e-06 1842589.4400289 269.1696086256126 None 1137 1284317 QSP_20210220 44934595.514412254 807.2337987926409 0.06362198641529672 1.1390139993411703e-06 1613829.5049648448 28.892125227055693 59910 8221 198547 REN_20210506 860135760.3968316 15024.812857733727 0.9759869528602023 1.7024661939238694e-05 107030847.20471641 1866.996259930136 75788 1153 67818 KNC_20210620 162180457.15603355 4549.315351160128 1.7548049066168352 4.928726778186187e-05 28825513.08013267 809.6232104052807 167012 11122 120272 PERL_20200713 7391016.943400366 796.4613274356257 0.020930714085812593 2.252721500130351e-06 1250639.625538917 134.60328022330407 11922 483 938177 WTC_20211204 36131332.86107403 673.7933771848084 1.238105199952321 2.3088743700476616e-05 324689871.00215954 6054.963030603838 67379 20365 434582 BAT_20210527 1310999632.831246 33461.38942661714 0.8817400592325036 2.2491374400700925e-05 253486938.9132504 6465.930167387536 203023 73633 22972 YOYO_20191216 1930276.2697737084 271.23801147890947 0.011026950170166581 1.550863612300348e-06 411012.30151686847 57.80601279534947 7521 None 1542018 COS_20201226 19784038.759324208 801.106966285677 0.006535551237529967 2.650463765902204e-07 867365.8908118859 35.17563831762172 13894 None 464399 SOL_20211202 70172175382.70602 1227657.4377122987 229.4487239706693 0.0040135531700104705 3392086055.2374334 59334.90282424428 1046575 102151 3321 GO_20210821 46967152.85532722 955.8189703378168 0.042928861592514335 8.735330427474031e-07 15998223.547776615 325.5380267684371 22707 1110 199251 PIVX_20210304 79235676.36833532 1558.745395681414 1.2050132149544412 2.378243184261476e-05 899723.4770366288 17.757159842129184 66154 9274 246345 AXS_20210124 38388580.92323226 1199.4159315101085 0.6959927855665683 2.1717449116274666e-05 13092861.067500547 408.54380952875647 None None 18871 KEY_20190511 7748319.4317886345 1216.2235509112002 0.0029687743883592237 4.6593999905158044e-07 517347.31621569593 81.19606830753605 24020 2832 639890 CRV_20211111 1599983946.0336354 24637.051310084746 4.096114065724781 6.30595347078115e-05 396112222.16010004 6098.133992534055 None None 11896 XVS_20210221 607086122.5151719 10823.136928550935 71.9708011582697 0.0012798151173239064 312884747.46326417 5563.848440466428 29207 None 29971 DUSK_20210107 15470844.179746477 422.73160902444255 0.05179006738106051 1.4031683394300634e-06 1236414.6235225573 33.498659914268444 18422 13347 1115146 OCEAN_20210429 551678309.5646521 10078.543969249102 1.3054649839522519 2.384165607540708e-05 97841333.38677038 1786.8724548278988 103680 2820 70658 XRP_20191102 12613085476.648623 1365462.385173325 0.29165658626780633 3.157404258252637e-05 1962881932.3477864 212496.8906394339 941385 206901 26217 DENT_20211104 703651549.3214339 11178.19470174881 0.00736584369544539 1.1688370525647798e-07 113042422.52385893 1793.7954892970395 121319 None 109396 WAVES_20200417 100657992.7667918 14176.15158086966 1.0050274447114609 0.00014177550574809313 54303709.5189425 7660.423525305763 46 56866 71676 TWT_20210304 189157795.16745672 3719.5231371659875 0.5436792789100761 1.0730160519206614e-05 17083114.42364372 337.15568542752806 None 12322 8428 AUTO_20210519 63392915.32977299 1481.1002124068682 2486.7327273052756 0.0581244753786814 10378096.214653386 242.5758873410905 None None 10768 VET_20190908 213271790.14569947 20372.12932363334 0.003845871608887389 3.6736501215101554e-07 32936339.543821927 3146.142151174555 113648 57419 147845 ZEC_20210724 1108431717.5793664 33160.193209374964 98.08454466351567 0.0029332545630315894 648021349.0627466 19379.317971052675 76914 20130 112343 PAXG_20211111 335666231.0399999 5175.083421826686 1858.6878062185958 0.028620653953907695 13352746.98725717 205.6097584423629 None None 40891 DNT_20200403 2934415.778866076 433.0838097301519 0.003924171198523217 5.756359361942942e-07 95568.83438005613 14.018974368412886 58679 6078 660159 GTO_20210217 16098663.42247901 327.16063023394264 0.024292287037807753 4.938710308955697e-07 21898127.230637636 445.1968912291158 None None 550878 NULS_20210219 81361517.0661557 1574.1155283980331 0.7307030129350088 1.4133398151847328e-05 45965711.14760704 889.0776217994322 39454 5123 599020 COS_20190903 26835428.83592278 2598.5359620329004 0.02047479583671886 1.9826213183436895e-06 849971.1735409918 82.30465310026882 9314 None 256445 VITE_20200704 7535637.85326776 830.909095711149 0.014809865776891092 1.6331329867997565e-06 1848151.9385350775 203.80183999703692 None None 603624 BAL_20210819 285068350.92347026 6327.757227811612 26.32772450489254 0.0005851620847926766 56254722.91062468 1250.3219156558037 None None 8467904 BAR_20211111 42175758.38114614 649.2943450278551 14.29369840758901 0.0002200509937891244 6601984.504554437 101.6373236499993 None None 32257 ONE_20200607 26445717.80829857 2731.5453988375666 0.0038917762632307887 4.0247885537478367e-07 4683639.553288417 484.3715976700785 None None 152068 SUSD_20210610 236269630.26993507 6294.493654600678 1.0048818650443079 2.6830009836647334e-05 68885480.67402212 1839.219303658845 134136 6807 40897 ZEC_20200317 230505107.3205706 45669.486704905124 24.45917620327847 0.004862004918135619 284281953.12458336 56509.68138672056 200 15616 148838 COTI_20201129 26193158.2171571 1479.6944942881735 0.046162866339392414 2.6059658028271446e-06 4929676.988522833 278.28795457859104 32844 1225 173019 AXS_20210217 108494626.08599752 2206.3977554264234 1.9665275555552904 3.996228834764821e-05 22446310.45415323 456.1369751345352 36872 None 20130 WAVES_20201231 660452111.9060862 22871.18461985692 6.6180286874219 0.000229488203273135 114481833.63478105 3969.7969817193994 149730 57206 143750 XVG_20200305 61511949.93486913 7023.951262270808 0.0037978742747233423 4.336731941376327e-07 815830.6344586241 93.15839638919483 296922 51974 314536 SLP_20210909 212277750.68706208 4580.1745488694305 0.09884402263328548 2.134064436621226e-06 144099372.57787117 3111.137509030426 None 59062 688 NEBL_20200927 7873505.021799698 733.2693971973371 0.4652666094883702 4.331652232557081e-05 92575.37360032975 8.61880727217107 38725 5936 432697 REN_20200322 35381925.62965443 5745.312932751098 0.040240594580666006 6.530282624840656e-06 2002054.2770719158 324.8953052456182 11349 873 365958 VIDT_20210805 19360281.033162262 486.3413940622936 0.41611758289331663 1.0464439433050845e-05 1093628.6195301935 27.502347706029905 29573 1621 1199855 MLN_20210821 136401773.24315178 2775.884730656693 93.8490297565076 0.001909509587594922 8371098.40818768 170.32347282233428 27707 414 127987 BNT_20190601 48815030.223070346 5690.964155530723 0.751174140692355 8.757070618563805e-05 3876735.9382853545 451.94381092243805 802 5134 144123 VIA_20200523 3143426.813237108 343.3944766266037 0.1354458213788677 1.482208656324576e-05 254481.92468060504 27.848427349016887 38879 2158 2692600 GRT_20210206 1162485238.4982002 30674.75329327101 0.9467702523420479 2.4907499783688187e-05 686346435.2211053 18056.306315619975 51444 5220 34817 ADX_20190714 10399278.25863474 913.1762680425304 0.11303331332903191 9.9096820339982e-06 249978.86210149646 21.915760634526638 54152 3881 882596 IOTX_20190225 9434313.081412554 2510.4222707577105 0.00708202620247889 1.8859253724543548e-06 687451.775625407 183.06664066520273 13311 1608 1268862 RVN_20210819 1311430785.1754324 29094.291506474005 0.13798671772020538 3.0633461707472046e-06 197282643.3199381 4379.733353716296 None 49253 58921 CRV_20200901 110420256.10295033 9449.606572451174 4.2786697359671235 0.00036654985198677294 137684182.84729487 11795.282168977274 None None 18839 AMB_20190807 4074007.8250246043 356.7639431154658 0.028250683514916247 2.467031905985307e-06 202565.74495923964 17.689347431550388 19354 5645 834562 NPXS_20190625 215235099.11190656 19488.69333036734 0.0009026264656216713 8.173062980139472e-08 5313476.65054098 481.1223796596963 62215 4572 216939 TKO_20210513 239929074.45743212 4653.8518660785585 3.123794901374248 6.227376878585195e-05 87320179.25059542 1740.7534184137692 247292 None 35525 OAX_20190601 9907041.496142091 1155.6106334568697 0.22156037814677068 2.583442128348282e-05 1663261.4196889466 193.9398938574806 15123 None None VIBE_20190804 3692065.086780706 342.39127624919763 0.019741869398022333 1.8296482975330448e-06 112205.4288292584 10.39903910275 20407 None 1550581 GTO_20190513 16394299.028782662 2362.5907107262897 0.02474544835850667 3.5597481778171587e-06 11102365.062614148 1597.127004066401 None None 885807 NPXS_20190923 81830589.80597864 8142.926698169951 0.00034585191442921116 3.4429735695795945e-08 2117934.298733564 210.84144711705153 65265 5484 147405 QLC_20201224 3175474.487022401 135.7955624207731 0.013425181194393421 5.757500487504602e-07 2639047.431401228 113.17774153533016 27282 5606 940522 GVT_20200117 4453090.40937124 511.61322769587974 1.0064786644641972 0.00011550748515819944 702564.7409660752 80.62911739218484 20841 5627 244138 WTC_20190906 30944678.22073793 2927.4736733139953 1.0604356818710432 0.00010033395504226793 3585807.993780668 339.2740400845415 55880 19919 440674 RVN_20200117 138465335.51405787 15906.307393891499 0.02618974280665284 3.0077378655829014e-06 16601749.390875177 1906.6132358187476 29426 7327 203317 FTT_20200109 62797097.946921885 7804.912301192572 2.177220418402709 0.00027060190648239797 19076344.374877322 2370.956616484278 5548 None 36573 CTXC_20201226 740067.4748600374 29.968179890247992 0.07357316401245673 2.9824683915859008e-06 2311054.936523066 93.68427186618759 16662 20069 688812 NULS_20190220 17524261.945218485 4476.59053835765 0.4383690804444724 0.0001119491605081931 3375934.1844838155 862.1342488404515 19526 None 499055 ORN_20210418 383894098.628674 6368.217469789951 15.4770961873415 0.00025679637041713544 23118025.92380165 383.57486938001915 55762 None 53561 CFX_20210702 202060809.76328796 6009.824647036089 0.23783471751217372 7.07097252943726e-06 1760266.4472775615 52.3338048514833 35888 None 151953 ENG_20190929 23381814.382132176 2854.336929743019 0.2982975730098167 3.641470096286821e-05 1140721.8956078296 139.25372000592262 61333 3482 323659 FIRO_20210821 89937710.95732264 1830.3040541240282 7.376201532959909 0.00015003785793926783 7265327.190544073 147.7825848475331 74031 1139 376180 FET_20211104 598169400.2514724 9510.5047055174 0.8710409231222033 1.3814209763589211e-05 163209224.1250172 2588.404743756593 84326 6399 75627 BNB_20200518 2407687200.4762278 249189.9074580392 16.280923203891124 0.001685036887560232 275407723.4557968 28504.045337618947 None 63312 1123 XLM_20190618 2532949609.6956344 271729.07957821316 0.13053614337014333 1.4010026309563862e-05 354786577.83390397 38078.107422239096 272978 102164 69800 QSP_20210114 20516792.699081514 551.9373706029235 0.029044610104458773 7.771689766143986e-07 381414.5080214535 10.205801413716067 58331 8166 263794 HBAR_20200501 141171634.5978613 16314.87420067324 0.03532749471688246 4.098457940987438e-06 12165879.100447295 1411.4033335200918 38800 6442 102046 OGN_20200301 9297874.64016714 1084.1033741658825 0.3193750555222917 3.734110618254336e-05 44983250.89533052 5259.409960404014 62441 2149 120835 SOL_20201015 100630989.38907091 8817.935847556311 2.3191536796804995 0.00020293562781339272 10350998.488724299 905.7555759280835 92208 2486 74012 WRX_20201014 23105522.778985064 2022.405782409531 0.09701123365910569 8.492678917104213e-06 2464228.814379106 215.72660515109123 40342 None 14892 IOST_20191102 84529032.39152513 9128.038013298674 0.007016198821939652 7.581154263023108e-07 69562871.66794686 7516.418426520478 195747 52267 92684 UTK_20210916 177538196.92892513 3683.868663926889 0.39656954988332643 8.22649390882744e-06 7689638.001264789 159.51492038938434 79303 4092 216957 HBAR_20210508 2541875467.3747344 44360.56069177263 0.30846882416443594 5.381772770326442e-06 164195901.1338746 2864.681810601522 89009 16611 39748 TFUEL_20200707 0.0 0.0 0.008631177667766473 9.242008341304845e-07 8217671.49221994 879.9238226879537 71577 4285 81176 AE_20201224 41441391.406327516 1772.347146265762 0.10953035512781248 4.696975950883938e-06 9789103.791982269 419.7848627258967 25563 6349 544843 RCN_20190421 16145586.032547927 3040.622905007901 0.03211492605278302 6.046542930799196e-06 1615321.412405419 304.12993170514113 18966 1115 1782398 AMB_20190922 3074599.494042931 307.87320913243366 0.02126411758439924 2.1292698879195858e-06 1316473.02875116 131.82425121815064 19225 5606 570829 KNC_20190224 24668233.792267345 5995.805187423237 0.157558598909634 3.829095319230097e-05 3230323.8927867813 785.0550958860225 93133 6559 205097 POE_20190703 13053243.130688554 1208.0624782411228 0.005190625102625626 4.799398518058792e-07 1156671.9146983065 106.9491508927353 None 10853 780853 SNT_20200330 62642256.3760708 10593.597415938122 0.016700029064626254 2.829225789082419e-06 66054391.5386835 11190.566633158931 None 5628 189796 COTI_20200306 10558761.178524548 1164.9567032593707 0.0337293664825551 3.7258119388961916e-06 13400326.434193114 1480.2263256099204 22289 874 296885 FTM_20190708 56584793.96918466 4953.431200252726 0.02737538204181338 2.395573690503894e-06 18481343.54190061 1617.2713237944065 16914 1934 411389 QSP_20190922 0.0 0.0 0.012500750122912588 1.2517816710036053e-06 168146.95237717716 16.837651417019554 56321 8524 561299 ROSE_20210108 76384334.85465 1949.992282181658 0.0508232561314567 1.2878901516894295e-06 12019123.458123362 304.5714090734078 8222 595 219756 CHZ_20200323 26172957.76698342 4487.116626191968 0.005472730698273287 9.382501253974076e-07 1242297.4060705483 212.9806418931454 19712 None 252561 CTXC_20210203 1255429.1165889422 35.24749414864203 0.12498958934469272 3.518284793904322e-06 4959233.695311181 139.59559825029652 17250 20088 607104 LTC_20191030 3794389434.483992 403234.78264113923 59.72490779214682 0.006347750335932578 3339826527.4429936 354967.22799998056 450751 209412 128159 APPC_20200621 4830220.3632560065 516.3097977726122 0.044364711134076015 4.739751633522634e-06 148909.89969964675 15.908949304686866 24491 3202 1685690 BEAM_20200310 28030743.566429745 3540.5886972402413 0.49094431103158126 6.194741585412582e-05 38707074.388342015 4884.063588786469 15015 1471 244463 REP_20200605 158510502.84834227 16216.073176649037 14.41004571348566 0.001474188470604458 33458131.55435983 3422.86157629916 132185 10151 227925 GO_20190510 11645587.314952638 1886.1903343310692 0.016299917130745238 2.640006520031536e-06 975279.8825717698 157.96063428988396 9549 654 839463 EZ_20210804 0.0 0.0 2.5124345340655343 6.541252326074333e-05 4992939.054310469 129.99373221520858 None None 164218 QTUM_20190812 265925167.9441185 23042.73851323384 2.7749152896402096 0.00024028779452946032 252796588.38754433 21890.37442512011 None 15357 320250 LEND_20190618 12789537.585022837 1372.6601187017213 0.011464757606081207 1.2309904109079188e-06 3283917.660040033 352.599792216821 42123 5866 977023 DASH_20200309 694357295.3953372 86313.76191718562 74.0614684947454 0.009206389853300193 655612329.0141716 81497.47522171822 316869 34152 59708 INJ_20210128 102144415.21705571 3372.788894521547 7.525914521629921 0.00024750501854354633 18952873.746127114 623.3038329769321 42330 2071 116830 IRIS_20210206 84368168.98846461 2226.013980887236 0.08869995119477621 2.3335059479655793e-06 20055062.97142207 527.6058002317565 12475 None 896024 WTC_20201101 8256433.108871207 598.3471199261503 0.282872980551775 2.0500311784764507e-05 2102692.682038856 152.3859065127271 55084 19302 755936 KMD_20190708 197145090.72757238 17239.040800592662 1.7167595715022315 0.00015005376667419175 9859077.67582501 861.7349602987525 97780 8433 312186 KEY_20191216 5212449.9625049755 732.4690147296789 0.001930131589317566 2.7145954254174634e-07 2772549.4932655855 389.939743632886 23644 2791 307493 GVT_20190225 15266565.196730549 4062.354613114943 3.8324176985289276 0.0010215061207028795 990862.3134625438 264.1079333195663 20662 5793 148821 ONT_20200117 450356739.8079661 51725.51626982394 0.7111668812494273 8.161633314368512e-05 164907819.60731122 18925.475718755402 81717 16250 348769 RAD_20211204 304058024.5679361 5662.705425323139 11.898977553825286 0.00022189749550246304 50485407.11785337 941.4746223529495 23994 None 185838 BCD_20201015 99028973.10320242 8675.687107898411 0.5241175075577595 4.58624697345963e-05 819172.8468668084 71.6810435734048 28005 None 3329621 QSP_20190810 0.0 0.0 0.01088553824285569 9.176668028251794e-07 123619.50674289333 10.421305312489224 56684 8563 645541 POA_20200106 2637138.339807458 358.8587819404183 0.012039578932973614 1.6395447845866006e-06 46718.21391538055 6.362066679955309 17534 None 389159 LTC_20210819 11225921789.1516 249508.22455768086 168.1720164917863 0.0037378045244979186 1922409410.748841 42727.62343778727 190366 340520 92826 POLY_20211207 530823757.6074618 10516.704239721026 0.5920886622433038 1.1731719622584155e-05 92260359.39723417 1828.058427307674 63331 8443 124612 QTUM_20210111 358098920.9139164 9289.266495959317 3.437413040622588 8.941440367488843e-05 701184753.0224324 18239.302584966383 189101 15033 249496 ATOM_20190515 955000296.9345831 119527.60971294086 4.00061471822549 0.0005005673045310507 65087219.06048546 8143.881902974308 23785 4185 164771 TNT_20200208 26914887.697817028 2748.0629205252167 0.06275261703830272 6.400959725267373e-06 1188644.0104126283 121.24534079092669 17724 2565 948981 LRC_20190221 44975977.45364292 11332.301744200591 0.05707279299559143 1.4373990623093437e-05 2013215.807864384 507.0357279823582 28470 2470 544203 COMP_20210218 10183093.800140124 195.02152578769844 0.0001102167402228619 2.114439425265441e-09 459.39923674342776 0.008813287855755936 2149 None 1914243 LINK_20210506 21034869730.586624 367319.7857047626 49.5170345676061 0.0008637520934850457 4581633160.855622 79919.87542926222 268626 53022 24451 KNC_20210421 602201088.4509645 10658.700155271292 2.954737920442259 5.240390214532053e-05 177064482.87628677 3140.3359905002585 157877 10549 96867 GNO_20211221 861034599.3131713 18250.50267861043 460.8226337157579 0.009774962650729633 10630483.143906835 225.49364568537024 100310 2413 136852 TNB_20200607 7013460.296347832 725.3164831082098 0.0021339648430187307 2.2068990335924556e-07 953218.7291261439 98.57976334487583 14852 1436 2834149 XRP_20210427 62600752594.473076 1161292.2651425896 1.3602811624977584 2.523426519583543e-05 14255681129.15288 264453.885033421 1510908 296654 11104 ADX_20190224 10758626.20342913 2614.633889993154 0.1235993342748085 3.0037943698843513e-05 1126496.5214180672 273.7687810847345 54266 3940 833344 FUN_20200318 8683466.678313794 1599.4205706908024 0.0014324864443384811 2.663285437523016e-07 245136.01916839182 45.57580231518585 34870 16988 317174 APPC_20210707 5743678.055443231 168.15196051096254 0.050870470358896885 1.4900870565823125e-06 677626.6284009798 19.848895853568987 24913 3130 638230 MKR_20200801 503147257.69358957 44394.14506749088 557.2646318304497 0.04916235187467288 13166669.94769024 1161.574634406322 50460 15110 31492 DODO_20220115 215307884.81253776 4994.546855092919 0.8019069029853133 1.859306725909015e-05 22864050.337342575 530.12740525719 None 1285 16737 CELR_20200407 6616523.678471375 909.697022907806 0.0017506362965704033 2.4002448341197164e-07 6058560.042111345 830.670966423497 None None 1350205 BCPT_20190914 4089254.265189507 396.0994919011909 0.035089346082088795 3.3924350348203795e-06 3091002.323381861 298.83784525424267 10899 3117 1000589 VIDT_20201208 33021130.80149442 1719.6185762245316 0.7130735776251356 3.713959410839066e-05 1007989.9437324018 52.49996430977185 22744 1107 None IDEX_20210420 70283671.41095282 1253.251077513262 0.11969045873126649 2.138198497374475e-06 3242170.038155884 57.919429646287405 51076 1972 4760670 LOOM_20190702 45998496.42366416 4333.332849088101 0.06636348678639652 6.258059496449785e-06 3948827.0813837345 372.37336392573553 20534 None 438184 FIO_20210513 65201520.47609682 1264.898860454416 0.2707071072122145 5.396625686213899e-06 7355820.942182841 146.64045081260022 76537 441 101174 OAX_20190922 4304001.543432702 430.80575025881507 0.08240308557900256 8.248073972155307e-06 444082.60546500055 44.45010953031744 12283 None None QLC_20210124 4216045.335230762 131.74989449938582 0.01755824220333952 5.485911414676328e-07 386111.8960152687 12.063711350841324 29152 5592 940522 LTO_20200318 5940357.283425678 1094.2177169383708 0.028081666901740715 5.172661504852562e-06 1514392.0206695052 278.952005804451 14516 414 882624 OMG_20210704 638816101.6002272 18427.267518075667 4.568273376492603 0.00013174337788597146 176657939.72259876 5094.597409426551 326278 5005 166792 POLY_20191102 14554712.920556184 1573.4278956334385 0.02724226035915694 2.943736517374296e-06 4149564.646755904 448.3924909613758 35168 5047 294854 AKRO_20201208 29872842.664820373 1555.6673537277234 0.012903856248989787 6.72478741094784e-07 9674578.727269424 504.1863763513218 24550 None 133922 RVN_20210710 481744779.7017251 14179.130777789182 0.052501694579384285 1.5448505813864658e-06 34193165.555129595 1006.1262233624674 64675 44535 58646 BAT_20210111 385916660.7585399 10010.872688104451 0.2587144725244721 6.726522866598794e-06 225529051.3992392 5863.708769426573 126267 49393 23893 OGN_20200315 6307166.289681094 1220.7561279941747 0.22517743921393443 4.3461307354891175e-05 40965128.68043016 7906.644886929987 66602 2167 120835 PIVX_20190902 21237553.152323365 2183.483893647286 0.3485418842338763 3.583442899602064e-05 6575162.45205778 676.0082580705371 63110 8602 256099 EVX_20190110 4578731.598244159 1150.940893369994 0.2373788710019845 5.969065913015956e-05 425678.6479793393 107.04001989844117 14083 2331 1438385 POWR_20201014 37612117.221742086 3292.27201895816 0.0867646419917521 7.5962723001120145e-06 2816457.596712093 246.58176804760984 81450 12625 250000 OMG_20210201 493366693.2299513 14926.557199800276 3.525123107221138 0.00010630707493382562 347704974.76449674 10485.732748293067 292451 42508 203205 GO_20211007 37826054.345373526 681.4374473997858 0.03442232855590721 6.204393275265553e-07 2699332.986868988 48.65366212582488 23332 1125 240788 NMR_20201224 116526398.27500486 4984.0151456353315 22.243195952729014 0.0009540093446330563 9936839.723819803 426.1904616940612 21946 1972 2410731 BLZ_20190511 9714761.925948545 1524.57148422514 0.04699239169288537 7.376212867018786e-06 652411.9870765302 102.40657094284013 35739 None 825478 BRD_20191026 20506117.099521093 2372.500956529223 0.3401098086407213 3.9283769762503525e-05 1628131.1044238608 188.05434546264863 172 None None PNT_20210418 90858097.30125438 1507.201443925468 2.3266241600307294 3.866085452757174e-05 19371708.005368587 321.89418386176317 29353 236 387057 TNB_20210131 10477130.094513588 306.23730721461243 0.003035830122087101 8.885928778805474e-08 897935.6691937891 26.282736792003266 15903 1410 3046579 AION_20210725 57773678.98619889 1690.9887421326036 0.11701064284201902 3.4247609890225074e-06 3048342.01423385 89.22130977129706 73566 73389 347500 NKN_20200913 14295188.397295253 1370.340777185126 0.022021111083844615 2.1089091935535187e-06 1533266.6288018273 146.8372816129699 None 1023 204746 CTSI_20210603 259897350.4345086 6906.121224257438 0.7122134992764938 1.8937886035226012e-05 43755537.32013743 1163.4676680807333 41520 3575 117994 DASH_20190221 754101392.3552493 189689.6073463757 87.2156080705881 0.021938554439893673 275081837.50143397 69195.15899684883 320093 23247 89364 DUSK_20210616 46889671.09538759 1161.0218723149987 0.12975849376616883 3.2148535178115645e-06 6905608.394081073 171.09106921622435 None 13620 389018 ANKR_20200518 8615230.566314189 890.9201662972397 0.0016794929074774566 1.7299792913282753e-07 1546072.988195631 159.25487035713297 None None 5986 AST_20210509 74514472.0606291 1270.6332737784433 0.4325198324289257 7.365675588752153e-06 3833428.0977885895 65.2820648767774 42920 3655 191334 XTZ_20211216 3888273723.8305793 79699.96347799952 4.510436742669078 9.229511806734802e-05 338279497.08104324 6922.067175335766 236531 65752 36113 EOS_20200306 3484488628.74313 384765.43698414095 3.7316125815650754 0.00041220124056943694 2931448803.2174144 323813.58111007785 1467 70302 94982 ATOM_20210708 3583076586.6898885 105454.8145083232 12.929144387399768 0.00038064097156216944 447356651.39039403 13170.420664958207 163941 31944 47818 TVK_20210620 29195532.77217716 818.7603177261433 0.1327794510569798 3.7293811611178456e-06 4281136.891814681 120.24444404163692 49255 None 67689 EGLD_20210108 628961876.1358098 16030.29461495398 37.22708736121745 0.0009433555194610827 157161032.21572828 3982.5497425125373 118397 3203 49960 DENT_20190701 108812210.37091692 10028.301973212694 0.0014330426630025756 1.321262462272517e-07 9317196.483911308 859.0436478713101 45658 9740 256957 WAVES_20200520 106238336.2576755 10911.74274653675 1.0625161931940232 0.00010888745105606745 29523885.79498992 3025.6298116482894 123 56827 89919 DGB_20211021 755814598.2815558 11399.814389536841 0.051055926324132826 7.705316151665038e-07 31987780.497990984 482.75681095728737 229064 42746 144911 AXS_20210710 893059575.5078008 26277.297220360895 16.657197777690506 0.0004901679897907662 1371648833.9363997 40363.23279597105 161178 None 5695 BZRX_20210124 46427248.54173124 1450.4468663278806 0.33631072031282727 1.0493912013256219e-05 31163711.4211666 972.4020850600193 17738 None 186488 STEEM_20200404 65009675.18700123 9661.317172372212 0.18740931094893373 2.7851558847588473e-05 29191311.033096675 4338.223714498837 11191 3841 214846 BLZ_20210221 54418442.823215984 973.9566067307519 0.204828953019083 3.6431359500206186e-06 19587699.570367556 348.3914331015554 46897 None 375336 MITH_20190421 33458121.72922852 6300.547440459351 0.06345544866191982 1.1947282515824851e-05 19365025.547406223 3646.013636648807 71 2017 526151 NULS_20210408 133576669.13707657 2371.4560333627155 1.1864570985234613 2.111395634369083e-05 85337344.35330294 1518.646536317655 42374 5268 475383 NANO_20200315 51474788.702540666 9958.54087724176 0.387882391900534 7.48648528502151e-05 2716060.4506848305 524.2245335667396 97609 49340 295755 NMR_20211221 188653867.58755663 3998.7102939688475 31.970784310493432 0.0006783132518940101 2746240.4908463005 58.26605002047278 32592 3752 3023938 XLM_20190813 1494074049.385432 131278.50012102743 0.07610196417030987 6.686754953106949e-06 116143525.67622697 10205.036151876402 275799 103328 68303 ATOM_20210727 3160021673.059815 84358.60416214584 11.382775396894251 0.00030505626552999475 518147963.53047484 13886.269142208132 167264 32680 47947 APPC_20200531 4094937.2964450372 424.2080710202037 0.0374489383675126 3.877140745948707e-06 171573.081482825 17.763200083186298 24550 3211 1572538 AXS_20210325 210230373.46643662 3978.4591205800907 3.768543233503981 7.147585173928755e-05 43176376.818023264 818.9021902808914 None None 22983 CTSI_20220105 354097696.39213216 7645.587833539022 0.7152824113579324 1.5570562037217366e-05 27787598.146166272 604.89187757147 67100 6829 100773 APPC_20211028 8535315.620893987 145.83600330337265 0.07334313179998816 1.2529210585931406e-06 131376.12319029306 2.244298918 25105 3108 898868 EVX_20211120 12117734.497554373 208.4554672231192 0.5556315101133912 9.525487450376395e-06 282380.6115066217 4.841001495014223 18581 2805 1266686 YFII_20210704 79509025.09982419 2293.4931993225355 2005.6479153468417 0.05780152425890407 20036127.449836317 577.4287191607762 17345 None 427366 MOVR_20220112 458263558.7180487 10689.915944444927 165.93547784359092 0.003878281114062658 59049842.79821341 1380.1261375131855 None 7167 16048 XZC_20200530 47614716.37214438 5048.985131659755 4.651230113214584 0.0004935130081449567 22919564.69500487 2431.852013915391 63542 4112 177140 VET_20210814 7988594495.065294 167660.9672916167 0.12001927663149388 2.515569748890535e-06 849671137.3433763 17808.86428910156 399300 196430 38303 SRM_20210513 444257860.75760555 8613.28896710755 8.553996499698437 0.00017052643244371186 202576910.0913079 4038.4301974590658 79446 None 40155 PERP_20211216 505259464.9171087 10357.129712426427 8.930266181483116 0.00018273758511743203 13859166.018904572 283.59630928891187 None None 104435 EVX_20190524 14672702.897524681 1865.2350727552634 0.7608597727488705 9.672262455605313e-05 9559486.715179231 1215.2287157465978 17231 2396 688933 SAND_20211204 5524914706.182187 102894.71730141818 6.03303037443515 0.00011250666910847952 1671517898.4002743 31171.219011445442 516866 None 6333 HBAR_20220105 6235540413.525833 134627.89929033513 0.328272222438435 7.147627071167842e-06 200598910.41058138 4367.735386951126 195449 19216 30905 MTH_20190818 4021711.589827318 393.42106413454775 0.011775094182116322 1.1518901790796082e-06 311849.3510704127 30.506440058536825 19469 1992 1114327 STORJ_20190723 28032720.73233855 2708.71914947271 0.19439355280894619 1.8802230269228636e-05 9866898.27564155 954.351061241212 83886 7777 215806 MANA_20191017 43120491.51849128 5384.493336768582 0.032471007895257704 4.055753580149249e-06 10740713.18830489 1341.5563233313082 45854 6404 85405 SNT_20210429 655914323.676291 11983.104656018646 0.16839005413906688 3.075555933275401e-06 106655804.69872591 1948.0122780204397 129969 5929 113848 WBTC_20210421 8690583973.514917 153827.84097918426 56425.43826281745 1.001149599378004 413295414.15227497 7333.049614538445 None None 239911 ARPA_20210711 32737695.66737309 970.8532406314202 0.03333313929738064 9.886081606184909e-07 7320679.044513833 217.11975521141107 43141 None 560675 BTS_20200903 134498663.66129953 11789.536263559536 0.04977234597001563 4.36182589143881e-06 73447419.24784978 6436.603473093872 13249 6933 99740 BTG_20200625 151162498.67457166 16246.729892861824 8.614213013597528 0.0009266387782634064 30073365.305743564 3235.0194313972806 75043 None 228624 BTG_20190411 316174589.2120825 59534.25515284275 18.040656348098164 0.003399303778334235 16951366.21286742 3194.054700864699 73400 None 434062 FET_20190530 0 0 0.15156276616490405 1.752651557785852e-05 20960480.30992866 2423.8419102991306 9012 239 203647 WABI_20190314 10907001.969071368 2820.9727833011475 0.20783746629804317 5.3754811582468975e-05 1899968.2652178854 491.4053174753288 34748 8009 1659091 QKC_20210724 96327332.1200055 2881.7588794902917 0.014766927479880692 4.414767673299221e-07 4900275.220338045 146.5001887663662 75230 9534 284050 TCT_20210111 5334027.80039941 138.36634637838938 0.009271636314288272 2.4117492496111955e-07 1184109.5589137662 30.801201032516335 None None 2545563 BQX_20191127 4205918.207262168 586.783165500821 0.029737460911165754 4.1532808931512205e-06 617976.8530998823 86.30970425002715 59606 5713 325167 VIBE_20190702 6139339.528686412 578.2106172357234 0.03265522167678745 3.080413037792463e-06 804767.8359827197 75.914883043632 20496 None 1464833 QUICK_20220105 111970709.47924662 2417.643217761079 306.7314686447087 0.006677056901528222 8449880.189720744 183.94047108095697 None 4549 4256 WAVES_20220112 1412129059.989525 32940.74046870423 14.096595979922968 0.00032941436776487984 68354793.1887632 1597.3395998612275 207832 60071 111295 EOS_20190905 3362678564.517484 318444.93760134757 3.302609371170453 0.0003126545530290451 2238254058.246607 211893.15583469326 None 68118 84416 BLZ_20200217 6082456.575656243 610.1597995572325 0.028111385950771006 2.825709001356113e-06 3163548.467623712 317.9945448739245 36227 None 533350 CVC_20201201 54571615.80287076 2775.704675423647 0.08117392759377527 4.134923799855355e-06 16986104.879458286 865.2562641098226 85921 8000 214631 MTL_20200914 21581004.48740589 2090.694463492538 0.33382618760348026 3.2324908138538034e-05 7571498.653634513 733.1599722802827 40632 None 386727 TRX_20200319 669458599.4943428 124394.05378886174 0.010170352798530423 1.88670784391279e-06 1089136605.531304 202046.34170069144 501227 72211 50139 TOMO_20200109 31348656.455516767 3895.212289525741 0.4520438289309727 5.633446776839483e-05 17589896.074138574 2192.082647785217 20307 1437 259463 IOTX_20210112 39725704.47175574 1122.1087905650254 0.006895214785466503 1.9397608076709934e-07 4714261.362836008 132.62153121062275 30883 2018 689535 ANT_20201224 92843053.16573237 3970.3277960593564 2.6637950989849277 0.00011425001254406377 14017753.260543486 601.2205993122243 76348 2687 106385 FUN_20200330 10811323.783259682 1828.3315180351744 0.0017873197197999181 3.0241934986158704e-07 163852.85135663382 27.72434737405997 None 16971 317174 WRX_20200305 22438442.336702302 2561.220740177094 0.12369233803834816 1.4129354749009443e-05 62829286.41547817 7176.9787075751365 None None 24445 ANKR_20211221 834182387.9049624 17681.342790467676 0.10175477368753164 2.1589340240781167e-06 52943249.49986039 1123.298480732713 152001 None 5363 RCN_20190819 7484966.780221754 725.2922150401654 0.014753506772584302 1.4299304603144157e-06 1597222.532369569 154.80503626296243 None 1111 1641051 BAT_20190312 237687261.82130587 61473.54000585955 0.19107279844337113 4.942053539045661e-05 14808516.71692662 3830.1884436257924 94028 23689 109829 SFP_20210930 92558892.22897723 2227.8506155548075 0.8576300500434942 2.0623337066496085e-05 7706052.078587681 185.3066009762913 386842 None 27754 VIBE_20190224 8008038.408079913 1945.86319085362 0.04000016306522613 9.719589363886241e-06 655195.8229180077 159.2052097715757 20494 None 1395931 VET_20200319 157837329.39354473 29328.214257462547 0.002511527019727093 4.6613079816055694e-07 73635201.8403534 13666.440829407165 118678 60870 265359 MTH_20200330 1799103.0104239113 304.251061580753 0.005167500222895382 8.754490689284295e-07 436069.6107861342 73.876481525685 19162 1925 1053445 ARDR_20200312 44883905.19426441 5658.972888099279 0.04483428689018034 5.647936974810213e-06 2847812.423895473 358.7492118619139 64640 6383 1029538 COS_20210513 81232082.4177963 1574.930825244599 0.0262912465628284 5.241237217030876e-07 9948687.188721132 198.33000093592332 25151 None 191552 CVC_20190523 26674981.335966714 3481.0863918629034 0.07790006027157087 1.0171931780550036e-05 5156469.103221624 673.3146516656307 88972 8192 437048 AAVE_20210610 4329736235.895647 115352.61110421765 338.1556079907196 0.009028641678500614 372428451.74432623 9943.715148354306 232873 10846 14216 RLC_20190813 18091833.92206484 1589.6593764575127 0.2565121995658194 2.253820341070894e-05 99895.44538011534 8.777219452296238 24876 3310 861371 ZIL_20200223 76142733.5170935 7887.983487764037 0.007345554413989437 7.609647884566246e-07 11775482.990218543 1219.8844930698133 68102 10544 247600 ONT_20200324 236066773.87310523 36643.502326882335 0.37261948508467074 5.748187334904978e-05 94189451.89114496 14530.06716273289 84344 16537 298289 FTT_20200330 63411805.97274424 10717.039568113656 2.193126723812122 0.0003715472986138756 2338936.2289008033 396.24953179525676 9859 None 15714 BTS_20210821 160295212.5839832 3262.135252567819 0.059184045354853256 1.2033014320967725e-06 13968366.57259199 283.99808428225856 6604 7204 252207 FLM_20210115 0.0 0.0 0.1541511788637744 3.929520893781384e-06 7909176.798652239 201.61555501550936 12494 None 65365 REQ_20190510 13508296.691569054 2187.886103451325 0.018502173789129606 2.9965298744833977e-06 1222306.1294906756 197.95927086874931 42066 30163 371026 DEGO_20210702 24038996.040021364 714.983529268088 4.435631368859672 0.00013186487787283945 7425713.253368352 220.7556692263805 None None 168590 BCPT_20190221 3064608.6015659524 771.8328294492819 0.03652975734487127 9.200152331420293e-06 1535401.2642110332 386.6963962348921 9845 1321 2528232 ZIL_20190616 227058052.4145092 25748.141723424775 0.024677402698952154 2.798710225048847e-06 43513651.50861344 4934.964302849411 63870 10523 190558 PLA_20211204 508637897.9007222 9473.94181719821 2.0995599810754295 3.915354065930337e-05 18818095.086398754 350.92831723652495 18318 None 106717 AST_20200314 1665301.4314348162 302.47891219021017 0.009768120787727224 1.7558901342020142e-06 2671308.8058346063 480.18701646945 31801 3482 336261 TFUEL_20210821 1781751327.2235255 36263.04822341213 0.3365813725585682 6.846335195058276e-06 43335765.93614663 881.4842523164923 188760 22790 21702 OM_20211207 73867639.41721483 1463.4690054917912 0.1803604789963858 3.572616111293629e-06 11303706.204283137 223.9060526311916 None None 75439 ASR_20210107 0.0 0.0 4.515313327821862 0.00012246689167486134 2031796.552376882 55.107539658898524 None None 243323 WAN_20210508 326304243.77683413 5694.445237333433 1.857401879595066 3.2405591995349374e-05 36940987.23419459 644.4994878963403 119301 16380 177297 VIA_20200511 2736012.1373567744 312.45483160150843 0.11809815893715456 1.3486906676812387e-05 101654.28363723759 11.609002621651475 38999 2161 3161515 VGX_20211007 4579446082.207303 82504.21228380928 230.4314434500946 0.004153856881341283 174218395.39266753 3140.536160008902 344179 11285 34852 LUN_20190515 6384879.108716223 798.7811638146177 2.3618343676216607 0.00029547760776405977 1818846.4820764614 227.5470349579224 31645 2234 1641403 STMX_20210617 181943008.0723113 4756.8160875788635 0.02109420989462307 5.507785608529489e-07 12967845.860064806 338.5958287060551 66342 4469 52447 WABI_20210429 30409187.105566937 555.9519012090194 0.5152052356331409 9.408974435304553e-06 3633606.3346563973 66.35900947071727 44291 7713 293001 RLC_20210603 376659823.042528 10015.452964699542 5.280336094384615 0.00014040509381629276 71891422.61550157 1911.6059577439876 43747 7587 155158 CMT_20190716 43154918.97154002 3946.709024722561 0.053798455570646615 4.925374709588894e-06 12249782.983931487 1121.4963453324158 291100 1650 580172 XLM_20191012 1206757056.4349115 146014.57423828632 0.060318560095620734 7.295159914244058e-06 199837170.8624929 24169.080229052775 276515 104460 70159 SUSHI_20211007 2040246870.3954575 36757.493785219864 10.574087399597628 0.000190613073680786 360328734.8522883 6495.441648072365 144472 None 4459 MANA_20211204 5218429894.41839 97191.54540774786 3.9182801451798497 7.306985385588217e-05 1234499376.4004858 23021.500677976856 356126 67687 5248 BCPT_20200306 2883222.6772769783 318.45862877594146 0.02483542213485983 2.7415830174423526e-06 171990.9691190665 18.9860883994572 10699 3162 1771218 VET_20190627 447942117.60386455 34462.53403339847 0.008052481714166549 6.174878301804045e-07 179251011.29773694 13745.491384246992 110907 56398 189744 ONT_20200725 446008647.28408706 46746.5870589799 0.6984414169517624 7.322996155227533e-05 106705100.74417046 11187.78216078635 88019 16582 168500 CMT_20201015 7276037.66036202 637.437030855142 0.009093155951476436 7.966109685997538e-07 1019974.8961307018 89.3554662748508 282276 1635 818387 ZEC_20210711 1220279533.495152 36186.97335318529 108.04700593479897 0.0032056154670971806 611707634.7787801 18148.577449444518 76689 20090 101519 ROSE_20211104 312600372.54659 4957.662727321578 0.20840024836439328 3.305108484881052e-06 78842987.6455997 1250.404591578051 38067 3015 152374 KSM_20210201 878776302.8707148 26590.69386060675 97.99741955657709 0.002956005751870937 121917390.86742549 3677.5305950698325 None None 118660 MATIC_20200109 38115516.091299884 4737.293125531633 0.014943917928196227 1.8594840469279725e-06 16445247.717006003 2046.2957521904953 28413 1414 155878 ZEC_20201124 832389408.3159399 45451.77541069975 79.07875205766841 0.004308892157521511 861436374.4708551 46938.4802058379 71790 16358 167113 DOGE_20210202 4433684615.525329 132740.00279481322 0.03458624009599537 1.0354768110768165e-06 4656523408.6088085 139411.5693544002 362765 779263 31801 OG_20210210 0.0 0.0 4.893228321095649 0.00010505766978781331 3058552.9071719437 65.66716700402779 620110 None 479965 YOYO_20200308 2149927.697400806 241.87426212930043 0.012292272793983103 1.3810872302099573e-06 182993.19692367982 20.560035700663743 7521 None 2563708 COTI_20200905 37882018.78245913 3611.3853075809143 0.06662457059588622 6.353134007020113e-06 12670851.810196046 1208.2572362310934 30219 1164 143053 TFUEL_20201229 0.0 0.0 0.029908397566870647 1.1016036634285517e-06 55222010.774494864 2033.9695309674025 77080 4720 78073 CTXC_20200707 1131292.1718887351 121.19080638535368 0.11277752776254907 1.2070594409999096e-05 12463593.004305318 1333.9800847827275 16446 20062 611246 VIA_20190105 6994443.192029649 1835.7731674991717 0.31028223148619233 8.150263073393491e-05 75835.2973102057 19.91985233465394 41078 2231 2596584 XEM_20190509 456592859.0289469 76711.27649964255 0.050779229555362904 8.524575917231993e-06 44388195.5061711 7451.679470810894 216660 18438 133593 IOTX_20200913 69397583.48749894 6655.25987449114 0.011926718106041538 1.1421984160711658e-06 8839618.83349744 846.5529696035276 None 1941 382406 OXT_20210112 0.0 0.0 0.25045743828661243 7.045864964236616e-06 18927082.875500064 532.4564166270842 54585 1839 172682 MANA_20200913 112482337.07737367 10787.107373484872 0.08513327694342648 8.1530470675309e-06 13521111.539519697 1294.8903501071122 51562 7282 80457 AST_20200806 9741482.818629231 831.5754040770365 0.056685920820596744 4.837178044468936e-06 2485618.054160408 212.10517363866566 32550 3460 206687 GRT_20210805 3161950910.4921703 79496.13306734189 0.6680880811158199 1.6800941724618342e-05 113736454.95607741 2860.220988361661 126212 16387 32100 ENG_20190922 31043659.5210667 3108.5385587564206 0.3958141427016012 3.9635452599737916e-05 1989900.778544992 199.26174807164756 61365 3482 323659 DODO_20210314 396364005.54967797 6460.851925976669 3.9854394794793584 6.496690515518271e-05 100413122.38180198 1636.8407629079068 59521 731 41007 IOTX_20190531 27759347.58814787 3340.772934477358 0.010977282872356841 1.3229757811021217e-06 1561654.2302644537 188.2096643695188 19986 1724 730597 AUCTION_20210722 68759283.54826398 2136.6289385119076 15.043221001706627 0.0004674536973340523 5199659.513009534 161.5744436619483 45523 None 56782 FUEL_20200412 1771382.853848882 257.37934499469566 0.001788187624138526 2.6e-07 26877.510894913463 3.9079528 1 1468 None WABI_20210616 14706134.53550476 364.1686814937041 0.24932159932856282 6.177164907618378e-06 1034429.8538809915 25.62892188239879 45166 7877 327925 LINK_20210618 10068865640.087639 264988.13693604985 23.41347364998306 0.0006136468518693505 843432512.8514196 22105.635157468547 375765 60765 25533 FUN_20200207 20734607.563678894 2128.965168180016 0.0034490475171968103 3.5418627583059533e-07 552005.525135762 56.6860213467425 35101 17100 400307 BAT_20210210 646734739.7141312 13884.404659095033 0.43593544491537867 9.355947093850215e-06 350234416.8425597 7516.651175406351 134609 52654 21155 ANKR_20191011 9944934.000182794 1161.4556153077335 0.002488611500152735 2.906416272967391e-07 2130087.4316031705 248.7700781610472 15140 None 5253 HNT_20211028 2511532661.4245152 42916.73498459119 25.224306383657595 0.00043105197030106785 57854480.593418315 988.6609951223459 103017 61655 2574 XRP_20190401 12902812759.54749 3144224.2718332354 0.3093437737308098 7.538478914146486e-05 1002498524.8423936 244301.47404756554 915200 198921 36994 EOS_20200719 2353408163.630434 256731.74388025957 2.502078782178886 0.00027295012357042824 1032879448.2989646 112676.13755992513 190148 71860 92471 AST_20190520 6043811.380497951 739.0912294107285 0.0359131547224375 4.38984258698995e-06 1040390.6025972065 127.17209083088237 31633 3584 410300 OST_20190623 16169849.364640107 1507.1311500882432 0.02539160798509209 2.3671821976922606e-06 1607694.3067324865 149.88043862612983 18153 756 994275 ALGO_20190906 130062200.03890286 12305.373843488798 0.3926849692048838 3.715308819960864e-05 63463684.06910423 6004.487150261423 11910 605 192636 MTL_20210727 109133656.80649646 2915.019925315668 1.686677859161821 4.520265321306609e-05 40721261.50451323 1091.322241641218 57289 4219 206234 DASH_20190130 571881237.1210638 167475.2670039627 66.51582737372073 0.01947351580284604 515090986.2500812 150800.6869445849 319898 23234 88538 ICX_20210727 539770684.773754 14417.571510561831 0.8323522672272724 2.230788158474346e-05 54912963.30986873 1471.7228885128175 142313 32616 243184 EZ_20211028 0.0 0.0 4.756213730601397 8.125835316493309e-05 958684.9230062141 16.37881778657694 37084 None 212917 LINK_20210508 20892021595.754654 364593.7040143958 49.22955554812308 0.0008590737539402307 3236607575.95045 56479.98624698434 273216 53629 24451 WBTC_20220105 12015996577.934713 259444.23008193535 45914.50209736554 0.9997182695281817 347737300.5335342 7571.449464977053 None None 208519 VIBE_20190914 2866641.6592043173 276.9515811435341 0.015318844831624885 1.4799820841885638e-06 113532.30864230287 10.968567448395 20269 None 1398469 POA_20200801 4537285.549947385 400.33789280763983 0.016313762599996062 1.4403606576288886e-06 320436.43798023876 28.29169762085337 17354 None 656446 DLT_20190318 8662952.350100126 2194.351536789682 0.10778912173102408 2.7303304388710983e-05 319314.4079837556 80.88328707823764 14688 2682 1013339 LEND_20200807 463769076.2688476 39418.32032977128 0.36905034248764085 3.1360817059355576e-05 54706043.09802905 4648.759294122497 54146 5804 34253 GTO_20210114 12821791.017551506 344.92845565303065 0.019480794112367625 5.231350141662477e-07 18816841.042863715 505.305294473243 16524 None 786393 SNM_20210902 134481874.0120585 2761.26538928 0.3073158517506195 6.31e-06 1159786.8881525788 23.81346495 None 9710 None COTI_20200403 9663411.27810511 1425.0446356669217 0.01931823884507542 2.833788828426971e-06 4259364.759001797 624.8054166351575 22763 916 253363 SNX_20211221 994680250.1238593 21083.257959351427 5.126645760786421 0.00010877755047517712 52060366.2955414 1104.6207182453675 179117 8564 47472 BCD_20190716 155690781.74834812 14215.712222624963 0.8311076035582075 7.600024229866025e-05 6906575.310754176 631.5685175108617 21405 None 2927391 TROY_20200325 2108248.7358958055 312.37587905900983 0.0018146535660463258 2.6858266152688727e-07 449659.7527936113 66.55309610966658 8789 None 356286 BAND_20210201 202695507.85910037 6133.317635892708 8.98433563644057 0.0002717287240471456 207296921.971039 6269.637554236283 None 3529 278216 OST_20200423 4557734.607671921 640.7996155548722 0.0065506676791281925 9.207815822471037e-07 111362.5949309599 15.653461812814683 None 754 821883 NEBL_20190909 7549983.803186467 726.2362899297513 0.4862126547787316 4.67690108652118e-05 114380.73904169761 11.0023340084527 40357 6117 464857 MATIC_20200318 25620237.754785333 4717.89941570073 0.009262443899462723 1.7220778633409575e-06 23873265.506437875 4438.528589272497 32715 1583 190232 POE_20190314 11256245.21491607 2911.300601529601 0.004937235854806426 1.277158911568081e-06 758388.3573215618 196.17909240446565 None 10971 618100 OGN_20200502 6585482.467577134 743.1883427359273 0.22988616837807707 2.6030142554822835e-05 14495306.97451917 1641.3119135645836 65528 2221 153973 POA_20210108 6643463.50668888 169.91222878326536 0.023675689619154724 5.997878319956642e-07 578323.7960417466 14.65095975657439 18172 None 255706 TRB_20210111 37702334.32688087 978.2943843133664 22.862362648395234 0.0005946985417949805 43635388.65549279 1135.0490062277217 None None 425795 MDA_20211225 10783465.428474003 211.9523260070247 0.5490575629639163 1.0801250615290646e-05 1066164.6459715478 20.973960318725513 None 390 979272 CMT_20201106 5916753.146350871 380.46965650925506 0.007370927672781569 4.741642353482361e-07 1755758.0827060326 112.94612099057859 281943 1633 811182 CHZ_20191012 14400316.432821488 1741.9896509749854 0.004946810802990804 5.982864281925727e-07 3183443.136766492 385.01792356778043 12152 None 395631 ADX_20201115 28160366.104036827 1749.544885596821 0.2730304122918344 1.6973105842222788e-05 605864.4560726709 37.66394172957754 53028 3744 13140 EVX_20200310 4935169.155147546 623.3447277848571 0.2294485034763317 2.8991264105705984e-05 870087.6437779044 109.93726389014643 17843 2872 590577 PPT_20190716 24244827.55945232 2213.367271630723 0.6701729954024206 6.127638076066203e-05 2252163.6857155594 205.92360552871082 None None 661854 ACM_20211011 17770686.867165618 324.786381482929 8.878686536105278 0.0001622534523787267 3012235.1220297525 55.04705520780503 None None 34891 TKO_20211021 155200172.39046127 2341.741054672963 2.0615726499622045 3.122560896998915e-05 22650365.6348094 343.0737502036636 325660 None 32245 KNC_20190930 29103371.57182737 3610.548460804802 0.17577713543075907 2.18152447606042e-05 36677921.800473645 4552.001825645964 97998 6718 182135 GRS_20190716 18893872.81016316 1724.8660403882616 0.25900833107318105 2.3682083915502583e-05 1277182.369655896 116.7774794280477 38642 107022 None CVC_20190316 26049670.203568567 6638.110168804189 0.0760130513918858 1.9370034455836963e-05 6904077.1136901155 1759.3322347826245 88643 8208 423151 OMG_20190228 185185602.46733537 48455.3476016691 1.3198913563145196 0.0003459954774345088 84492336.56183264 22148.767160577012 288269 37067 None LINK_20190225 148183116.91184896 39430.766568338346 0.4050127574250096 0.00010811544420876168 7463791.639316734 1992.4092112475787 9914 6386 313186 HBAR_20201030 171404045.23176748 12724.774065185346 0.029523605963402037 2.193958819774121e-06 3411671.646638216 253.52821429041657 42531 6719 185788 FTT_20210420 4357947132.151813 77878.87180064095 49.46596721915238 0.0008839312308896013 270743220.59848833 4838.04121687075 97950 None 2918 ETC_20200707 710265853.4390318 76087.94700717658 6.115801538782831 0.0006550383194524359 724845519.3206964 77635.2188388625 231806 25590 378218 AR_20211021 2851626430.363052 43021.916503040164 56.817557669696804 0.0008574856560844319 58305493.19509035 879.9414500772085 38587 None 53329 NCASH_20200117 2281049.0638578716 262.0371911537964 0.0007979538922083995 9.157635488503479e-08 267474.6545137758 30.696452669358596 58433 58516 1029178 CND_20210602 32603289.727889113 889.2126218409473 0.01690962296404995 4.610456162845253e-07 114095.29120967457 3.110840138941102 None 6235 118506 OGN_20220112 207536620.9644788 4841.207622335489 0.516495088454965 1.2071638766419357e-05 16634568.306958176 388.7868522382593 133383 7576 99270 AST_20200305 3610705.867847036 412.45611667925266 0.020990554807540383 2.396877908964007e-06 3724439.2251671944 425.28776318363145 31792 3486 336261 ICX_20210909 945360855.9067972 20397.416675593373 1.4031857710354152 3.030840042377065e-05 87907822.19770098 1898.7831337425312 145101 33156 256574 DOCK_20210722 43528398.76934974 1352.64984815265 0.06327081217513596 1.959069208549711e-06 9846641.955178926 304.8839172256651 51802 15144 269891 NEO_20201031 1047151740.7171524 77091.72490992396 14.83993194942016 0.0010935483357057635 271462470.9185959 20003.9551590534 324353 100975 108689 KAVA_20210206 190785922.32109085 5034.80536043702 3.3275467874729654 8.754063690126601e-05 146401540.7280435 3851.511319662755 57664 None 91263 STORM_20191017 7812357.774712873 975.7048726490883 0.001243207232106854 1.5526725593719053e-07 54981.431655674955 6.866768307169155 26216 2545 1742887 CELR_20210626 147833100.6856486 4646.169709555797 0.026176233386635574 8.234326379682043e-07 29949562.663655408 942.1312465344558 56474 None 143745 QTUM_20190410 268923669.93532455 51993.7756997268 3.3018431509440638 0.0006381935554084794 168713947.71013266 32609.711974157286 176631 15249 374999 CRV_20211216 1454672114.5928817 29817.168913535224 3.7259116766157208 7.634922998012172e-05 328243000.4045588 6726.165970207879 None None 9223 DASH_20210421 3228681339.349784 57149.333250281335 318.12063938803294 0.005642044508097028 2453324959.2858944 43511.0674986184 396384 39589 49097 NKN_20210430 418457510.6047968 7808.581459019009 0.6423305619384012 1.1985058980570685e-05 63913986.15092958 1192.5524630038212 24815 2604 154711 ELF_20210128 60464968.32478727 1997.7326490351995 0.13158142157303038 4.327322891167501e-06 13253231.350528555 435.8594907963508 40628 33318 473527 RLC_20200129 39511318.86352946 4229.560735874366 0.5652342068203604 6.045029066226615e-05 1363325.3628309013 145.804010896601 27644 3529 233222 SNGLS_20200306 5324607.856722094 587.7216695374275 0.00954025519060032 1.0538468968614162e-06 127536.8320703366 14.0881236432002 7541 2140 1276289 OMG_20210203 560651555.3464578 15740.882663446893 3.9585361133247168 0.00011146183795353717 527219374.79556036 14845.093953196803 None 42528 203205 WRX_20220105 535318259.6355941 11571.306134793494 1.165950565875256 2.5363045434570407e-05 7512195.396152341 163.41357748984302 510301 None 603 VIB_20210111 3728535.05592722 96.98511224320397 0.02070524301250092 5.383320431326014e-07 1054191.5143122384 27.40876170398597 30357 1092 3160516 NKN_20210523 210494877.76127264 5599.888974833382 0.32280786196653555 8.5953571197423e-06 30883471.73897415 822.3296269081276 None 3073 131157 BTS_20191220 42939249.1099304 6011.950506980174 0.01577586280140799 2.2077598761341632e-06 5952158.440049961 832.9773620472151 13454 7085 157411 WNXM_20211207 133635988.6229768 2647.5844597816335 59.88034399379561 0.001186506722368317 4882618.062391397 96.74725907360546 36932 None 107583 LOOM_20200719 18486863.64096925 2015.9376223496197 0.022294499259028086 2.431381697207328e-06 9283551.973267796 1012.4406962733593 21934 None 626078 DREP_20210420 0.0 0.0 1.723730295233915 3.082055697498656e-05 158668.2440380037 2.8370120714451703 None None 197188 KEY_20190228 6581669.492009471 1722.1483678293685 0.002560394723059131 6.715485039169307e-07 244485.77139252622 64.12450882239845 23390 2811 836734 BZRX_20210711 27904814.39778328 827.5195123074634 0.19845530973101153 5.8852081501921445e-06 4782638.937794056 141.8295418463854 None None 110017 PIVX_20211207 42001740.677679196 832.0302954948178 0.6187374661885867 1.2250486370292082e-05 425396.0803905993 8.422488001094058 68808 10384 257818 MANA_20200305 62718671.87082722 7164.443959138233 0.04740312023158092 5.412886545439278e-06 23342958.528019223 2665.495130484755 47998 6766 51080 NULS_20211104 55507740.0241214 880.1613252957823 0.5837441002400742 9.256168251087612e-06 12959413.711143801 205.4916078748642 74131 5505 206151 SOL_20210430 11521025311.458416 214929.0536183159 42.5819452001649 0.0007945241204019603 1007552489.8800592 18799.62862235939 190785 11796 23689 OMG_20200520 163212550.75599885 16732.19382870984 1.1682761065895 0.00011967384309167287 157428715.86856267 16126.409959694409 278483 42795 572237 BNB_20210430 92491549499.68553 1725928.6313091787 599.878911764389 0.011192965997134405 8239013550.86044 153729.3555685632 None 294249 141 GRS_20200321 10839466.841346525 1753.3725745784034 0.14668057991660294 2.372038135767641e-05 12895465.805665826 2085.3842197050503 37651 106861 3912987 SRM_20210723 138074306.78467485 4265.037336922419 2.7612904712574253 8.529176834135387e-05 37272439.355693884 1151.2849865430305 96773 None 26595 NKN_20210125 18371251.446654696 570.5480255937243 0.02825918025879611 8.766533201013437e-07 9009942.811014224 279.50549898701644 13880 1025 373477 MKR_20210804 2521853638.156183 65637.99064097495 2797.3490289769625 0.07283041844289523 61634431.87559503 1604.684083927617 169762 29214 33465 XRP_20200901 12734844410.00787 1089553.8368790338 0.2824332033877913 2.4195802734595665e-05 1713133363.5142736 146762.62006182206 963627 217860 21508 OAX_20200914 5507607.209474052 533.4245739240001 0.09852348512747226 9.540182060303277e-06 594148.9945411156 57.53236978507815 12755 None 1276581 ZEC_20200105 251397000.25044578 34209.687494886384 29.934325109130448 0.0040709918586155 95760360.383553 13023.164747436489 173 15426 169401 SNT_20190221 73498444.92216857 18528.071623609874 0.020980734158319844 5.286377834522839e-06 24257219.41318869 6111.932312062944 109518 5766 300242 DGB_20210429 1791250452.83404 32724.136758379387 0.1254659439923848 2.2915260789551575e-06 96392141.46944568 1760.5184240033802 207356 34580 307288 ARK_20210620 160456752.6880389 4500.96380909013 1.0097098615784905 2.8359756769515462e-05 1046497.8351159256 29.39302188978876 72616 23342 114169 ARK_20190201 52166320.90606703 15217.328307772223 0.3754677695342249 0.00010942943871748623 325449.2993720144 94.85164120866678 62555 21781 149153 SYS_20191011 14405808.68055133 1683.1618012405295 0.025422710729955913 2.970366782839426e-06 2212898.555784393 258.5530879738212 60109 4585 816882 FUN_20210428 349086727.26326317 6336.112920509501 0.033876419175725224 6.151068267576306e-07 10878378.145619245 197.5227850001405 2453 230 255008 CVC_20210616 181589567.10740712 4496.287866191723 0.27071049855652146 6.70725010127907e-06 18317990.63982472 453.8551154437065 102957 9823 150952 SNM_20191015 5443872.036864033 652.2698890601318 0.01252085809964333 1.5001549560081568e-06 502083.8048195505 60.155901627296345 30930 9828 6623482 ENJ_20200901 198487333.4975847 16981.96136689574 0.21530601313353748 1.844140485057336e-05 8697027.515518317 744.918374902864 65194 15838 86087 LSK_20201124 188827048.9394761 10310.553472365562 1.332520106070552 7.260718316090766e-05 5587028.347271206 304.4294706604792 177094 31057 209509 BCD_20210218 230264008.0075816 4412.023373746653 1.2207301254584768 2.3412317791624798e-05 14199692.585143803 272.3351446921207 28380 None 1218964 ANT_20211028 167001687.438738 2853.7025505862657 4.3951946148579 7.509045986408522e-05 13766654.42992641 235.19878014924763 90000 3265 105914 STPT_20201228 15692679.390439501 592.7561950377228 0.01716135829409663 6.525650680823424e-07 2342105.8910092176 89.05917958418446 17711 None 2012677 BRD_20200901 9703169.249222377 832.295841371487 0.13976073152843363 1.1988070356236888e-05 623622.0600983272 53.49159989649292 None None None LTO_20201111 18502872.224186804 1210.66408971005 0.0760475014752624 4.978169518035717e-06 2132347.7240794636 139.5862879902537 17886 570 2813904 OM_20210814 72762142.56390963 1526.6017464028864 0.2204560231880206 4.620695262105682e-06 89361065.81238611 1872.9824091213295 48652 None 86864 GO_20190625 14081513.850591976 1275.0258029189904 0.019219241758846334 1.7402555687018429e-06 628875.4831032791 56.94314454350443 9900 673 943493 EPS_20211221 131632969.66527729 2790.0944600668854 0.25145103142990427 5.335043924431385e-06 7077875.641033093 150.17149550687319 None None 88886 ETC_20191011 552259904.0857102 64513.737061502376 4.836931633498148 0.0005650383660609212 705070073.7264898 82364.53863805092 229680 24991 362235 KNC_20201115 178901048.94556192 11117.07463674745 0.8934195288002953 5.553998214538733e-05 23672754.06430726 1471.6315187662103 125306 9230 85913 LEND_20190608 9662964.827597152 1201.9698642895241 0.00853254598938279 1.0628047364279005e-06 1505244.6862797844 187.49165654093423 42123 5867 1092370 BLZ_20210428 113001477.68649146 2051.218528096213 0.39617676753363235 7.1894132883667204e-06 49073264.12890296 890.5317175165102 55372 None 191106 SNGLS_20190623 9823632.520484535 915.6240262212029 0.01663404740146535 1.5507415248154546e-06 657027.9226829713 61.252710063695325 5 2181 None REP_20210408 303541088.63327396 5388.922711301996 48.228618277591465 0.000857795320462772 156928596.88007084 2791.1356546795123 145905 10962 142603 PERL_20210624 0.0 0.0 0.06619739012215944 1.9642272829161617e-06 9711600.01940411 288.16528391346793 205 680 362669 MTL_20200106 13323937.845688706 1814.2063906934043 0.2284964994432253 3.1109702845213626e-05 3679906.322664768 501.0177069463984 34582 None 546427 MTH_20210124 3322580.8667575247 103.89150422668956 0.009756150281804809 3.0487617379417555e-07 290892.79771953786 9.090294900275925 19047 1883 1172879 QKC_20200208 14660953.816502545 1496.91219279845 0.003935117457514876 4.0139407005726596e-07 2337254.337833218 238.40712292596896 50762 9206 327738 MDT_20211021 29881769.887108073 450.82148355035116 0.04928708633153101 7.436692353497055e-07 17325494.925075643 261.4160933823246 35406 346 806321 DATA_20211111 0.0 0.0 0.13846989378195526 2.133224623260162e-06 1052985.4605303258 16.22197035750853 71510 4726 176405 CKB_20211204 841906336.3296305 15679.46639501541 0.029249587970851823 5.4545949732668e-07 38975129.6902973 726.8257819664801 72923 13858 82429 MDA_20200430 7708764.06572911 883.3069237586341 0.3925274188805015 4.476745009630852e-05 464485.4701589869 52.974210477085634 None 373 2010247 ZEC_20190804 462434469.0629284 42857.7670119904 65.08818671589425 0.0060311147100753715 198629745.25200257 18405.16442218446 91 15354 186923 PERP_20210513 172640033.54803473 3347.1517953661955 7.688290488687553 0.00014962972217317307 14263225.714940986 277.59129342993924 18581 None 273188 COTI_20210727 85668068.24653876 2289.03470551933 0.12747496164897149 3.4163052852492134e-06 34984800.0544508 937.5861407083746 124138 5485 101712 POWR_20210421 190555925.68114075 3372.938656671672 0.44228277836307456 7.84551402652949e-06 13395572.55988751 237.61981599409532 89967 13451 239820 KMD_20200914 74417662.57138303 7209.330558030395 0.6118331560553015 5.9244754605924266e-05 3213740.601374535 311.1914929931003 103603 8393 264851 TRB_20211021 119400146.11832468 1801.3819059492055 58.732104394004985 0.0008895857857958114 33530148.165659767 507.86437011855276 None None 542010 NEO_20210703 2488768291.549043 73632.49615419001 35.498655352042924 0.0010484534839860264 364154281.3129159 10755.303860516 405760 112194 98164 AERGO_20210207 16755089.744600058 427.097459268474 0.06346303283857761 1.6138708199753373e-06 5954200.198924921 151.41586412641502 None None 586684 OST_20200506 4837650.32205584 539.4444173431292 0.0070198756707210925 7.801466600534507e-07 170990.17142598622 19.002816772999537 17730 754 852611 RDN_20210617 25638186.879135408 670.2985791823032 0.38217906459627626 9.99174844259572e-06 563633.0042735226 14.735708243450414 29753 4667 827519 WPR_20200526 4645865.683408998 522.7566626506988 0.007466498359773303 8.39802459495743e-07 994896.2774390532 111.90203231516463 33062 None 1707857 FET_20211202 518825493.99620587 9077.192129364827 0.7555838437545351 1.321315965473005e-05 65224890.31367139 1140.6105309165073 None 6894 73164 SNT_20200718 103024528.60064173 11255.71231122226 0.026541750887691184 2.8992730888022466e-06 16977227.94419079 1854.4978554478303 110755 5712 140990 REN_20190430 16920925.500479467 3250.5185471294762 0.02195682594845983 4.216905389767918e-06 83886.67738612952 16.110806854763332 6261 782 1322561 BNT_20200109 15610138.995427633 1939.7837650767726 0.22358730040807423 2.7821152404755557e-05 8397129.21991052 1044.8617223034385 None 5061 126434 TCT_20200422 3134525.7110406016 457.71069108879806 0.005455219982308929 7.969108015628729e-07 319671.9882596937 46.6984028558655 None None 458106 AMB_20200418 1269449.6349788508 180.32137445474197 0.008779591084290363 1.247113621405084e-06 92565.43330229896 13.148632052934797 18953 5481 839960 WTC_20200605 9881078.999336239 1012.3722070356564 0.3390937935790646 3.46859882353754e-05 10646056.001162266 1088.987708421038 54242 19633 876470 LOOM_20201129 22899069.080089696 1293.6059928786578 0.027399371225372234 1.5467372391336195e-06 6026702.425937916 340.2167514976782 None None 345507 MITH_20190803 13166029.602188963 1250.9537572191095 0.0290009810164178 2.755385743301783e-06 2185390.885458403 207.63417919982933 78 2079 826998 BTG_20210703 820328812.0618254 24270.181480702668 46.977362614275094 0.0013873451120094578 10189737.083740748 300.9254063891083 100325 None 156251 DNT_20211204 132509027.84389536 2467.8170949185624 0.17651374904528483 3.2845932073436526e-06 40265378.06373306 749.2639411637642 73293 10391 332155 LUN_20200704 3271670.397472212 360.8984746452538 1.2098571438905428 0.00013346505270270256 872876.8908794505 96.29117026955107 28434 2121 1752609 APPC_20190225 5190308.288469397 1377.9516000738756 0.04951143584756227 1.321674634178389e-05 429814.1047944032 114.7359978546904 25250 3410 1561264 MTH_20190922 5786391.318024187 578.9890133561213 0.01655195585974026 1.6567553915696424e-06 435213.6150486285 43.56237470220302 19518 1985 708112 CVC_20210523 216413830.3886332 5757.920877191837 0.32190317431805066 8.566130407279978e-06 34063855.047934964 906.4695467308132 102898 9776 117752 BTCST_20210401 242096062.2479564 4116.082982932822 33.22631830884313 0.0005653214282753322 12375760.125100821 210.56447858241495 47060 None 81774 FET_20210814 354741746.68889016 7445.157521178055 0.5156363653870354 1.0808788284813573e-05 29945331.222236082 627.7151245079845 71005 3432 157156 RCN_20190810 7899523.814425262 666.200000495521 0.015595813784673182 1.3148970047555765e-06 1419547.9650902415 119.68335818669476 None 1115 1860009 DUSK_20200129 9353411.811443849 1003.9331895534652 0.03633214832779192 3.885626347977912e-06 307045.85102143534 32.83773472469191 17835 13339 884255 OST_20190905 7103119.781706347 672.5214696651436 0.010697170439461105 1.0126898662677504e-06 506618.83402582153 47.96107177891978 17998 754 572437 AKRO_20210704 47008749.94483569 1356.0128004818346 0.017379130814349004 5.008557302992751e-07 7355963.264736888 211.99428166870854 None None 210414 NKN_20191216 12891251.798200887 1812.903344566312 0.01976829732422047 2.7799080565317197e-06 2113526.3943392546 297.2137131971136 12147 1001 277650 BNT_20191108 22224459.3407062 2410.722746294751 0.3186285588664325 3.4562150768344267e-05 5342978.24533969 579.5614188646048 None 5085 171240 BAL_20210513 707062736.0657214 13708.560278983183 62.74834230875616 0.001250906632478309 165264370.14909795 3294.5937553956533 80329 None 45464 POE_20190421 14610366.21906392 2751.495356614871 0.006424178551614296 1.2096507134476451e-06 569971.4740168174 107.32366708829986 None 10917 725975 LSK_20190405 277479854.8753079 56648.198471067844 2.1076482821679985 0.00043059116153965174 13182916.659237513 2693.2612261769405 183704 30422 170136 WAVES_20200313 82511005.52674142 17139.07715653141 0.8148071581664236 0.0001700322916827952 65455255.470342524 13659.06887140032 141222 56866 51296 ZEC_20210428 2657171293.2683372 48233.342613438675 240.77713853256037 0.004371235796863201 1686056939.9214935 30609.851484458068 74905 18956 91916 STX_20210418 2410655379.862289 39989.0953221741 2.287220434714783 3.794961915782653e-05 41923677.08251985 695.5987078594482 59821 None 58797 NCASH_20200316 1012905.0636172956 187.48535962584438 0.00033803839621738684 6.297038782190934e-08 751036.0692350632 139.9043217491806 57880 58328 679947 PPT_20190205 44040115.13444047 12712.585068713694 1.1901438527253259 0.00034354599041330584 1329372.1814355985 383.7355305019517 23371 None 591964 AR_20210809 648299685.0131918 14736.650375967529 14.865196198851805 0.00033793398120751005 43733697.45598799 994.2083707827763 23610 None 92701 MTH_20201031 2398147.246452312 176.17710494345204 0.006985390151701714 5.147045246308859e-07 75617.94758110969 5.571757470671382 18935 1894 2398363 ZRX_20210111 399376335.8292438 10360.023443325086 0.529105608151027 1.3795978347339466e-05 199468587.74792084 5200.9736339048795 164270 16329 98378 CTSI_20211125 460031178.99820733 8046.368665283449 0.945929608342241 1.6537535396755374e-05 56060646.47266775 980.0992771877609 62229 6374 116683 ARDR_20210106 73651873.21426274 2167.69424900743 0.07396429246613867 2.1686254634750635e-06 6006656.249405645 176.11454471448064 64359 6288 None ALCX_20211207 248984328.8654729 4933.895619320715 284.6379670818729 0.005639813048436112 11228406.730881322 222.4795077171041 54020 None 80408 MATIC_20200719 80265392.3286137 8752.702854870051 0.0215282064840525 2.347811745438917e-06 9014516.612179626 983.1003802944548 44548 2009 96762 UMA_20211002 601115131.531131 12481.032537109098 9.554850554546388 0.00019839097542682726 35658402.12214034 740.3888882183902 45243 None 247915 BQX_20210221 1480751937.957512 26339.741013837844 6.661195937112282 0.00011848991808039144 58758802.488064125 1045.2065603599226 42619 1400 44204 NEO_20190821 697529464.4129665 64822.61000952297 9.87810402693677 0.0009188374240275284 206872913.1601857 19242.819685927196 324221 98206 189804 REEF_20210203 0.0 0.0 0.02573010917376725 7.242809990958771e-07 111428343.70016451 3136.6144448790747 25026 1327 104266 ADA_20200308 1530117969.709145 172143.535497318 0.04923996466792674 5.532311848151502e-06 125016889.24696535 14046.159908204336 155768 77049 41962 SUSHI_20210616 1732527039.6807392 42900.104711587446 9.161508623360897 0.00022698982850521642 246267883.1633029 6101.648414436987 104614 None 6774 JST_20211225 421203118.8517664 8286.704564180145 0.057714071238577476 1.1353712060926145e-06 322706578.328761 6348.395619788489 None None 179821 YOYO_20211028 3617144.9116586223 61.815336776260736 0.020236822712288747 3.4570174402281235e-07 443020.7773406677 7.568038596889477 12243 None 1512285 FLM_20210310 0.0 0.0 0.44767258203013705 8.177036629476197e-06 26414742.16567574 482.4827852252952 16341 None 156358 SXP_20220115 347444306.6635749 8061.102980605998 1.7949237086532621 4.1617221544901515e-05 218855179.6879954 5074.390881024358 None None 155016 ZEN_20190601 70606882.39426962 8235.966723449199 10.744004380382012 0.001252802769510948 478645.37059188593 55.81236051858233 25727 1652 229974 FLM_20210106 0.0 0.0 0.14248351695805347 4.181334252030684e-06 9171512.545757864 269.1480416067798 12291 None 65365 IDEX_20210111 20804975.6725621 539.6875640745886 0.03669990481506929 9.546423619112814e-07 1647635.041550939 42.858481937755165 44460 1945 159964 AVA_20210112 34528193.47195869 973.8955347410655 0.895687299206158 2.5197461906347863e-05 7129887.861794413 200.5779002932429 41985 9049 96594 TOMO_20201231 51147904.708577976 1771.3679493723905 0.6697300607505657 2.3223705362862053e-05 4266152.2998469975 147.9340257382337 35065 1699 198505 GTO_20190714 16006228.544333944 1406.325454641584 0.024204126473581878 2.125400757117218e-06 5806320.2519613225 509.86171606123526 17477 None 1222950 SC_20200725 141123200.73988143 14791.255796497504 0.0031990946872667205 3.3532209537326433e-07 4464281.654659423 467.93622106128464 106781 30118 172459 RCN_20200901 34220209.97730842 2935.26143092427 0.0667257215254163 5.723443455607718e-06 450731.69874125975 38.66181335203655 None 1136 1085396 RENBTC_20210422 652680706.9084582 12044.951486949662 54142.90932619765 1.0011305391787737 8501075.420090763 157.18930373024662 72358 4814 63508 ELF_20200414 28323119.128973763 4131.775912358573 0.06153978712810764 8.987299727396084e-06 27326776.79882459 3990.8154567294146 82448 33431 699270 STORJ_20200707 23891371.09784974 2559.387262135955 0.1664129419348625 1.7818598978367104e-05 5825114.927014271 623.721843268627 81292 8158 96917 PPT_20190401 56398493.68292848 13743.477181088396 1.5561976682777081 0.00037923385905171104 5221302.655297812 1272.3928300425787 None None 635728 TKO_20210902 202891101.95254296 4170.750326712634 2.7084921393607675 5.5667021829470686e-05 53217981.008958615 1093.7770383358888 315310 None 26791 ANKR_20201014 47057038.89947993 4118.993367003455 0.0080611733388415 7.057487246976318e-07 36136212.33512476 3163.6940056895332 27524 None 5286 FIRO_20210825 91871329.54631777 1911.8044908250793 7.491559370535173 0.00015616942509900445 11384848.308514278 237.3291229824474 74274 1150 376180 NEBL_20200626 9596869.674889177 1037.146003764311 0.5828340834835019 6.298762628028803e-05 348908.5182514482 37.706990679541086 38945 5956 1156866 BRD_20190704 21463320.327138644 1790.0411793093278 0.35787279245467646 2.981921619065353e-05 872606.3198236974 72.7086189527772 168 None None ADA_20210429 42696322872.49632 780013.9319149374 1.333556355988168 2.4354687707047627e-05 3050358135.8497744 55708.5716397968 358493 361433 7301 EVX_20190224 5235289.515625394 1272.315361892308 0.2714783512590088 6.597649961804864e-05 270072.4273194906 65.63482250151816 14039 2319 1312426 ZRX_20200208 173706015.7474914 17734.188081538352 0.27747727874559214 2.8319227175487807e-05 51320953.56975335 5237.7973056923465 152332 15957 118141 HNT_20210206 214156592.26837474 5650.419751953477 3.172909191727955 8.312363687374821e-05 5378654.054531164 140.90957524532135 21282 3183 66241 MATIC_20220112 16181726374.37895 377471.1985871584 2.3516193176803104 5.496257283702227e-05 1836928439.0101225 42933.10246536117 1125539 None 3376 ETH_20200502 23540629181.114624 2656496.611584131 211.96829534904975 0.02400129152600524 17137878522.355497 1940531.8039425476 455393 459470 20496 RLC_20210127 94621336.83086252 2903.6362600577795 1.33903164329878 4.109703046622004e-05 8615334.944204913 264.4184582572082 34146 3920 538469 ZEN_20190629 65254894.04378641 5267.792743153407 9.605795450366776 0.0007761326574584714 1076243.7386527592 86.9587445693227 26108 1689 240249 BCH_20201231 6660895330.611757 230664.06192615363 359.1186712788876 0.0124547583703379 4585051832.141368 159016.27303707684 None 352409 461449 GRT_20210731 2816778093.4014807 67474.5763358291 0.5970999840461011 1.4290928161478387e-05 110726070.04423368 2650.10610431166 125352 16308 32107 FUEL_20190625 6862838.202730242 621.5831723085798 0.008606521433464197 7.792867313467771e-07 1088019.3502142942 98.51588119838833 1 1515 None PPT_20190614 40006196.44417378 4865.632467149078 1.1055037798866651 0.00013437347241991267 3255024.177034883 395.6466811210598 23979 None 688169 IOTX_20210508 405655595.55036646 7079.052153089352 0.05373173307954775 9.375658571110552e-07 55988070.06599632 976.9367167388131 49872 2899 209846 TNB_20190227 6807945.287141065 1787.2327666132699 0.0027308377849580294 7.169039355826218e-07 352367.7176852934 92.50414102671994 15013 1508 1599145 ONG_20201014 0.0 0.0 0.12339738470136662 1.0803333860146e-05 3639244.1406845436 318.61266383840825 93168 16672 201035 BLZ_20190904 6672938.068172708 628.7949852831446 0.03188021662787993 3.0040920716712985e-06 1581140.007771994 148.99177809840418 36495 None 878308 DUSK_20191012 11498650.04176917 1390.7968414256436 0.06832601676658005 8.263612689449972e-06 2401487.1234207503 290.4451394327012 19835 13331 172815 HOT_20190701 335563266.5925361 30926.030792285525 0.0018743340868501628 1.7275395587527632e-07 51811860.54791513 4775.404733716521 23257 6514 316713 ATM_20210902 30344748.265028514 623.810356753576 16.12152947541242 0.00033134212213148346 8901270.923884766 182.94579320686933 5068223 None 87660 CTSI_20200605 6475138.50728773 662.423086459405 0.032480082491837634 3.322395692663183e-06 1043884.9518308311 106.77925059058082 14271 105 268807 GVT_20210825 22343560.876016106 464.9602899482936 5.023675213803113 0.00010472378729446085 1192680.6504959934 24.862681092435917 25869 5713 751259 AERGO_20210418 92801954.63061263 1539.4471618154175 0.3519467961001257 5.839458738930529e-06 3529679.1562654995 58.56401030800049 None None 413577 AERGO_20210324 78203372.83729778 1433.6917388595248 0.2988238735225215 5.481805154251705e-06 3678007.412092979 67.47158368344927 None None 363931 REN_20200320 34489128.202627406 5572.739279671137 0.039803400139487695 6.447959901185373e-06 3194725.6345458264 517.5302289415323 11349 873 365958 UTK_20210527 175991395.59805402 4491.928507350201 0.38152069832082686 9.731807892475375e-06 18397894.389334816 469.292425315534 75771 3939 101934 REP_20190704 165867865.30922136 13844.286411515131 14.661467196057687 0.0012216574934692727 23394438.011201393 1949.3267706230267 125899 10010 252413 BEAM_20200312 27386580.700350158 3451.877936105585 0.47678644919838614 6.0062510241594346e-05 19679061.327401433 2479.042398350974 15006 1470 244463 RENBTC_20211028 1019398211.954434 17417.271622425582 58406.73135794423 0.9978598676836782 1193425.652232944 20.389286230199147 100889 6170 86593 EOS_20200321 2048154674.8281758 331918.7408519689 2.194895643538718 0.0003546137945727415 3392447326.6713996 548093.7660706039 None 70411 93580 CND_20210107 18382545.13359222 501.52703734442497 0.009594059320312459 2.5995852613903787e-07 372836.1373098514 10.102286165902544 34013 5901 513668 BTG_20191017 143203792.8485551 17882.03973754305 8.17468490673594 0.0010207800250056714 11753822.86440204 1467.710099449844 75034 None 318337 FET_20190719 29898628.0151025 2790.0259806578197 0.10265422596543529 9.62119628582077e-06 7387434.182336834 692.3821561985819 16099 290 438146 GVT_20191216 4539252.1796733495 637.8453458168681 1.0214521790095532 0.0001436601228521636 348574.1421202623 49.024521273859925 20926 5651 162226 SC_20200422 58489407.42917293 8540.758495451451 0.00132709528055003 1.9386506267448623e-07 2547363.316183148 372.1245612009511 106987 30083 175217 OMG_20190826 174221676.56846783 17257.573458364925 1.2348875767653076 0.00012225883342287052 63456676.84881002 6282.466056342904 None 41234 None HC_20200316 42139692.059716836 7797.8705832985315 0.9422607504371051 0.00017534984009113472 14151831.448101107 2633.5824560983447 12763 842 891141 ZIL_20210902 1429096769.5191512 29378.57179907922 0.11513734070301733 2.3635620948369876e-06 114305198.00482494 2346.4797049977424 317873 36140 64746 PPT_20200320 7983222.119668636 1289.9257767039678 0.22119149341891883 3.578922648582758e-05 4329809.532869624 700.5718511917796 24057 None 1049662 ANKR_20200410 5903637.967540286 810.0352055306587 0.0014791875439049667 2.0286820121473093e-07 1468930.767932191 201.46150082678255 None None 5685 VIA_20190130 6463335.4907487435 1893.3567952954381 0.27948749451026095 8.18725173230637e-05 121849.22663113776 35.694272960729855 40809 2231 2992347 PNT_20210809 28395514.12775637 645.4660355965582 0.8996119331509584 2.0451088438036867e-05 7762105.161439821 176.4577516951528 None 326 329278 ATM_20211207 28841703.087913513 645.7254437455765 8.240291064662529 0.0001631508982262274 7061625.789684057 139.81430770875684 5178131 None 60180 ETH_20211104 543311992233.9774 8630217.861360325 4607.699273078144 0.0730754693564598 22744538221.14315 360715.3391101501 1779695 1141757 3795 NPXS_20190414 137462491.43230587 27094.827816325487 0.0007025356884872666 1.3845552108305498e-07 5245007.438829406 1033.684480273613 58944 4253 151112 COS_20200117 10290635.781604387 1181.926240906664 0.0077970279189661165 8.948178619439403e-07 4042074.292350176 463.88448440735505 9701 None 199274 NEBL_20210131 17054142.11210242 498.4775897743621 0.974218603554868 2.851555185250089e-05 9057633.961388914 265.1185575234317 38946 5870 713465 THETA_20181231 35032047.952876344 9222.466545663801 0.04951677700253565 1.3031427371496034e-05 1899080.247918132 499.78467544688016 None 3805 512093 FUN_20200430 12468135.251548592 1422.1101054911958 0.0020731532614946067 2.364629628987484e-07 487535.4045873333 55.6080770428177 34494 16906 234333 QSP_20201229 22454977.783228938 828.1528468842267 0.0316147848788159 1.1647380125123758e-06 425971.27727843274 15.693446619562211 58252 8186 269724 IOST_20200605 60512563.47872494 6191.207907205683 0.0050347638645521 5.150705965070315e-07 38467564.13517959 3935.3407107687813 191950 52185 420210 FUEL_20190706 5625181.957017056 511.80822866453894 0.00703217576178892 6.398238221981802e-07 530027.9280039284 48.22468980510595 1 1514 None POWR_20190818 22435348.41933077 2194.899472822554 0.05282155677743461 5.167649057973318e-06 869624.8493789759 85.07731138290222 84183 13103 483233 ICX_20211011 1423084851.802456 26007.66567583943 2.1136355880505477 3.863342586235158e-05 76766398.24369675 1403.1505582298555 148686 33780 246285 SNX_20211125 1512376751.7070656 26452.86115506166 7.885615958669575 0.00013786295712876637 82003982.51254293 1433.662453861397 173938 8398 47716 RDN_20210916 29016051.972762015 602.0871023270571 0.567806401037121 1.1778654969599569e-05 614568.7820357861 12.748700306063162 31253 4738 2151577 DENT_20190523 78912472.82730879 10304.18063111086 0.0011408977844631345 1.48870930521173e-07 1937018.58846679 252.75336987139002 45137 9347 250313 SKL_20210127 88289720.28958462 2710.9372475203136 0.1581711331943065 4.856084871203355e-06 52246833.677677654 1604.0541245839734 11582 110 245973 HIVE_20211021 280526995.6667544 4232.254567400432 0.7772776581528189 1.177004407982326e-05 5800457.284542272 87.83429860114636 None 189 80724 XVG_20210930 302643302.28427553 7285.342710172565 0.01840238623004447 4.425201915800481e-07 14073646.717615161 338.4274606486142 327936 54886 200187 VIB_20190906 2969764.8424304486 280.97824917089565 0.016266990727213552 1.53906818092406e-06 321188.6067845094 30.388605555075788 32316 1120 4329648 THETA_20190430 67515728.16769686 12966.457199804536 0.0908728570088844 1.745253350388077e-05 4313053.335694267 828.3409405502638 None 3957 258696 PIVX_20191213 13167436.794058874 1827.0210629370322 0.21247124871092155 2.9516941088797e-05 211265.80845266808 29.349478858943293 63417 8553 261790 XEM_20210111 2121627744.1606524 55188.0374346471 0.2357364160440432 6.1320041600865665e-06 135634959.6589246 3528.1529720308818 220548 17933 99771 DOGE_20200807 446347339.1808217 37937.54972996795 0.0035575069154816807 3.021507949585172e-07 106062511.95674433 9008.238933722056 150884 165182 89115 BEL_20210218 70335226.94363788 1348.008982451867 3.138432831336407 6.019932986661283e-05 34667387.73931713 664.966759618129 11685 None 362473 POWR_20210108 48304423.08335485 1233.1488175817426 0.1138962701551534 2.886196119893833e-06 9607571.786361862 243.46132119713153 81043 12565 337778 MATIC_20200801 76294710.36643286 6730.843046545077 0.0203329935345713 1.7944616454524556e-06 11445887.546167621 1010.1417759680985 45917 2079 76971 JUV_20210618 20706149.264506664 543.841762132413 9.423650580729376 0.0002469507095113522 7979074.713399867 209.09499400875256 2521275 None 39510 NULS_20190509 47265468.688051276 7940.979289788747 0.6613934669094726 0.00011110351661375169 5296613.630681463 889.7463158546558 20895 5319 670223 NMR_20210707 189215815.3071391 5539.711260506361 32.85355574670392 0.0009619409528962483 15950412.013664138 467.0226458836557 29403 3517 578267 AION_20201101 29270609.387928348 2124.0243194870195 0.06251389797457382 4.5363264510197075e-06 643953.4329071852 46.72853694245617 68103 72541 747017 GVT_20210401 41260639.733482674 701.5208076039269 9.309406429768318 0.00015839046485146372 4710972.55881898 80.1526003965 23335 5531 234214 LINA_20210813 129360846.80613959 2909.6684435743023 0.046534136552728804 1.0467002149135034e-06 45838974.66904382 1031.0638209250114 42302 None 101818 SYS_20190920 15030735.663816562 1468.0092008314728 0.02664876052122976 2.6019045705162067e-06 1774059.1454207879 173.2137821254064 60378 4588 745278 SFP_20211207 198368541.76264074 3930.0865009986064 1.8333695888522807 3.632753582685261e-05 57538066.17981165 1140.0953595305534 431984 None 26557 OST_20200520 4633873.474394294 476.0200660624203 0.006689538962988723 6.856462694139643e-07 185427.43916919766 19.00544007842107 17678 754 805326 BTG_20190531 475358393.69909465 57226.28852264946 27.09668872729437 0.003265677249198612 52208023.92192633 6292.080839224954 74075 None 419179 ROSE_20210430 225264324.29055586 4203.401904945575 0.15017988556225045 2.8021627691623635e-06 16628216.429881802 310.2610500929887 18515 1406 227579 RDN_20210724 12854379.288234401 384.71038742940067 0.2519091650202457 7.534102141650663e-06 241639.40164371222 7.226953943040391 30322 4676 1078541 EZ_20210620 0.0 0.0 4.106317971565986 0.00011534347037148866 1266953.42982483 35.587795783706994 33320 None 123122 LSK_20211111 497327475.76574445 7657.794911971113 3.4314461465214574 5.282699502565435e-05 16145372.7154651 248.5574558679372 199318 33460 177887 NANO_20190615 209388560.74308375 24131.089621184143 1.5714164942986044 0.00018109868142536116 12927752.868619151 1489.8653582892698 98400 46166 382519 TRX_20191012 1043698605.407873 126238.53396083374 0.015780086750675083 1.9086496876188806e-06 727519936.4495975 87995.75828577924 474250 71321 66589 ENJ_20191017 51289456.66990921 6405.66833105566 0.05797435384167564 7.241219425916106e-06 1886651.3308496522 235.64999627573445 49264 14059 31815 ADA_20200411 1042324486.8363525 152016.52131326273 0.03355089410257256 4.891873891364235e-06 161039582.5086103 23480.30805800978 155144 77773 49277 DOCK_20190818 2789664.43398037 272.9190062508504 0.0050612669127850386 4.951548721710241e-07 946814.5731602043 92.62895180622445 None 15195 201601 MTH_20201111 3053164.438106314 199.6109033876024 0.008773139247555661 5.743595101401878e-07 106709.07667923933 6.986025330223255 18910 1892 2394440 BRD_20200321 6736851.2891797 1089.7408943033854 0.10955518354978527 1.7668788584200138e-05 459609.17684156983 74.1246293771361 None None None MATIC_20190906 32604127.367152005 3084.882415471297 0.014825444713958403 1.4026792422725303e-06 19457186.300775748 1840.9020345562742 23001 1142 217453 WING_20211002 34224922.21884606 710.6165614320815 17.18492608854772 0.00035677581140756076 5385723.2865396645 111.81286353348332 15515 None 293062 SYS_20210616 109354803.70437162 2709.3384423228586 0.17807704697693869 4.411978008522237e-06 2430253.454779382 60.21115567471406 72950 5427 388533 ADX_20210218 79844972.123876 1529.8868734843356 0.6925763598606764 1.3282884966843067e-05 14446773.881371409 277.0739036585833 53372 3770 10332 SYS_20190522 39333235.06331105 4952.519648695501 0.07105762830901254 8.946996091820126e-06 1596698.9302206424 201.043285970263 62027 4597 1089755 ETH_20190930 18340364798.35873 2274445.7539648893 169.6894747522977 0.02105679968564214 6622811335.857158 821825.9373983706 448049 446262 24076 CDT_20190608 7481839.164988001 930.4346251316985 0.011072609404012008 1.3791922989742159e-06 271715.7509022073 33.844621216254204 19700 292 399262 GXS_20210603 65509886.58000875 1741.6064859548867 0.9358555225715536 2.4880092656498382e-05 85164538.249769 2264.133246635991 None 660 546653 IRIS_20210814 112199048.86061853 2352.1452360382327 0.10447124135738005 2.1891137991128186e-06 7341801.862579358 153.84176122445686 26906 None 796801 XZC_20201124 45694142.94879043 2495.044575941179 4.072255181012222 0.00022198040315695906 10698612.39123384 583.1860200950891 87 4206 286121 POA_20200412 1909608.0665667302 277.46326679272556 0.008667458729473389 1.2602364758836435e-06 60916.65883404572 8.857197691703147 17302 None 691851 DCR_20200403 133509724.52557595 19686.76604828035 11.845204003237322 0.0017375707508331779 80906823.70401198 11868.206775711624 40669 9762 206207 PAXG_20211104 315862703.08642805 5009.401419728761 1778.0094329899998 0.028193097723827765 10149109.240112165 160.92987095974254 26266 None 40891 MANA_20190201 44341195.36553146 12922.643113889193 0.03506747588182031 1.0219942696401624e-05 1508787.0103920656 439.71561680822106 42280 5983 103515 DASH_20190818 824754755.4435892 80687.5714206103 91.77377541103911 0.00897898377112931 216762676.88102537 21207.676693958474 320193 29846 87828 KAVA_20200506 15442823.359458743 1721.6735162221494 0.5426010598286056 6.039856478563438e-05 12472903.282988492 1388.3965822707673 21725 None 342540 BAND_20210806 250328899.46931434 6109.839842119468 7.108575796105912 0.00017356153941451314 78315842.14095303 1912.143657520521 101403 5550 306752 BCH_20210430 16484635337.829767 307582.01229110477 880.4666244469445 0.01642837045239734 6235136945.577646 116339.60529477315 None 516122 311242 PERL_20191118 7253659.173962677 852.7560526104872 0.027574169680493355 3.2403633038000204e-06 936688.0725104263 110.07438093111975 10918 377 465502 COTI_20200310 9446340.06958704 1194.4338546568274 0.029903063478863772 3.773172368053644e-06 10697454.697865855 1349.806199723413 22517 886 296885 MINA_20211120 1392163691.0096102 23948.711924579642 4.674377694459396 8.036614550531805e-05 93280839.96294822 1603.768896596959 None 11488 61857 SKY_20200330 5707859.850833325 965.2712540128584 0.33654908085675134 5.6945018343224615e-05 139329.93872548567 23.575003967579494 None 3830 253868 CKB_20220105 664156230.3815726 14346.59453029678 0.022491751673197936 4.888352507942663e-07 11574168.841451015 251.55273855739853 79325 15448 73780 BZRX_20210125 44780674.420661196 1390.7340743581224 0.31904079986815287 9.888514532608378e-06 28526044.64547579 884.1508896391796 None None 186488 SC_20190530 141576704.32048908 16372.435701444878 0.0034638684183346587 4.0057411443248564e-07 4028625.975206062 465.8846952315048 109745 30919 231960 FRONT_20220115 42732713.27634776 991.2806439476092 0.6393629974913525 1.4824313359911213e-05 5987695.4579696935 138.8311086517958 131811 None 235352 YFII_20210304 87541654.9174974 1721.8126871704299 2197.5839351007553 0.04337204729902885 115881096.1510902 2287.057300998135 14699 None 240399 MFT_20200403 5882520.187794594 867.4109629311198 0.000611981133174509 8.977139750190472e-08 1980021.3392166307 290.4489584230106 18350 2527 847135 GTO_20200127 4741919.127683353 552.4690254595491 0.007164942051468048 8.337410394620522e-07 319377.84772697923 37.16407150710815 16974 None 3211163 NPXS_20190818 98949631.84103051 9680.460080429722 0.00042206812158449605 4.1294398067907856e-08 2323866.371034636 227.36297311882493 64682 5160 188042 ONT_20190908 464357803.1264631 44351.88216375528 0.7137543859581995 6.817828200229414e-05 47027772.52833547 4492.123341662197 81503 16275 256067 ADX_20190818 7546741.249672604 738.3142922871854 0.08198936282215873 8.021199665451031e-06 130951.71481626737 12.811294232800169 53877 3844 611553 MATIC_20190430 7477597.705333404 1436.4503896947194 0.0035276874041553726 6.77507945042606e-07 8206899.938136298 1576.1713766666041 7671 39 876283 SNX_20210523 2308341540.635058 61409.49015123504 14.919646509096712 0.00039726321739740327 360994890.54950994 9612.157472784811 None 6625 36942 OST_20201130 7687348.060583188 423.82560781715324 0.011132867740633321 6.127147321258423e-07 12745782.47477078 701.484009035678 None 739 657979 SNM_20210128 3990800.211917082 131.28399830263393 0.009090896057648819 3.0000831717299587e-07 68150.02822582307 2.24901650548727 None 9486 None FUN_20210221 201938523.8571091 3591.7260968930973 0.03357755597845109 5.972183106727505e-07 6032300.145420349 107.29190965033166 35426 16922 206769 XRP_20191216 9421061834.634323 1323882.23336611 0.21759116379788443 3.0576559296950455e-05 1116573944.3489087 156904.30081309305 942251 208009 27610 SYS_20200730 59547156.68449259 5368.854027624827 0.10071619308916806 9.080711305475954e-06 8827864.958666394 795.9325176479334 58081 4478 1072348 XMR_20190509 1135739480.109446 190813.37687918724 66.98463579086282 0.011245062559777244 276638336.06586504 46440.730157969614 317146 157677 117450 REQ_20210916 170321519.68921056 3534.145775409068 0.2210022664954284 4.585290950494113e-06 7636041.9314060565 158.43038409017427 46290 28531 251193 REN_20201106 231784581.68918002 14916.612872242047 0.2633178731625012 1.6946794959523163e-05 42324707.87730901 2723.9630090579662 27048 975 87270 REN_20190703 90657367.21758726 8399.799714205006 0.1182829729477368 1.0936777629919706e-05 28695156.354398645 2653.2351722551134 7036 793 1032866 MATIC_20190702 48492349.383932285 4576.081891049863 0.022335406310262814 2.106930324451995e-06 34688711.07213785 3272.234955513595 19370 849 197160 FET_20190916 20330832.3970978 1973.116102534489 0.05977364118277434 5.801057803304038e-06 3658496.038316015 355.0586273727984 16278 308 435240 MITH_20200224 5360830.258118324 538.8279523723398 0.008662260054101863 8.71447162795617e-07 897020.8188178268 90.24275912349607 92 2083 1703270 JST_20200927 56627584.438999124 5273.651344498331 0.03941730750374374 3.6737966014837335e-06 86539449.69605482 8065.70403514859 29093 None 141428 MANA_20190725 56070695.03430615 5707.5394542894 0.04275000559151569 4.359628635622935e-06 13984588.6539363 1426.1428112001959 45536 6340 146197 TFUEL_20200305 0.0 0.0 0.0029397560389537083 3.35633530736387e-07 4012489.126430219 458.1080452595821 None 4028 385146 BOND_20211225 86460057.68328351 1700.427885126097 16.57051579025249 0.0003259809279540162 9476329.013922064 186.42162770654537 None None 188518 QLC_20201229 3666630.6747836713 135.23308273913457 0.015426123952653102 5.683329680260709e-07 442656.31548598036 16.308450416176257 27297 5606 940522 AUDIO_20210813 586683296.0643146 13195.946041250534 1.4678316909916038 3.3012907676280486e-05 19669271.638374656 442.38031692767083 57897 6097 34312 DOCK_20200315 1964211.9826631427 380.17450379239324 0.003518377220333743 6.773298107657033e-07 904577.0808867521 174.1419366516639 None 15023 375776 CTXC_20200107 2323776.179802248 299.4965927234809 0.06712742363427304 8.654211255337068e-06 2439546.5727723395 314.5115701599202 17099 20064 634574 MTH_20200418 1904317.0443308384 270.51328017391876 0.0054793568361603765 7.783571519279111e-07 50040.96478672678 7.108451593091594 19096 1921 1304375 JST_20210206 55208851.129020244 1456.8595076567012 0.03901839702087994 1.022201036769365e-06 135428781.75162363 3547.9530602151767 32643 None 170314 OAX_20190719 4559159.99735266 426.06595573372255 0.09689427082479501 9.071374278532764e-06 211300.93415744152 19.782282717331295 12328 None None CTSI_20201130 8177834.907089566 450.74873021848805 0.04125578916093751 2.270576673800137e-06 1329962.0522517366 73.19653494209223 None 156 456815 NEBL_20210603 26970020.817163974 716.6884466720987 1.504799702512976 3.998782828748545e-05 787429.8913718464 20.924785692093927 40113 6096 641234 WAN_20211204 176043057.07056996 3278.996093078805 0.914624823175858 1.702386324442424e-05 33264130.314803507 619.1434903959962 130965 17398 208332 KSM_20210112 576260211.2897097 16243.02145970096 64.49821161042625 0.0018144627388617387 136410890.2265254 3837.5091543 None None 180647 ONG_20210620 0.0 0.0 0.7417843490652531 2.08566310990391e-05 4864771.327360672 136.78199207600005 139296 19454 131880 NMR_20210805 244936820.2936909 6143.50485619954 38.90767062276742 0.0009782351251630965 50905605.2511268 1279.8928932846306 29623 3561 685085 DASH_20200306 842593880.1259866 93013.96448227916 89.9185788573601 0.009926114700577878 697103591.8832235 76953.28706422636 316856 34143 59708 REQ_20200721 33683233.058370695 3676.491554579415 0.043656363009355326 4.764762982035526e-06 1216590.4194033688 132.78167476823552 39285 27872 405956 MDT_20201208 11457116.59755919 596.5055331083588 0.01886377965043508 9.830775038746348e-07 1479811.1521850657 77.119701388284 13346 70 1412861 KMD_20210124 75773879.24474293 2367.27329644046 0.6123181536871227 1.9106179020803237e-05 2505620.4400497205 78.18293871821969 96813 8417 314092 NPXS_20190131 108861245.31490697 31477.586871115018 0.0006504030962738266 1.8806619293191258e-07 6217774.309666566 1797.8898772593352 54655 3873 184595 FXS_20210823 133272593.48855515 2701.4668965565043 4.151661170949986 8.425701816457109e-05 3370543.845024301 68.40441988904227 None None 93970 FOR_20211230 41874347.69147469 902.8654153159233 0.07509868565262838 1.6123998897135553e-06 59204290.34340797 1271.1406383573544 None None 166431 BAND_20210610 274439475.4772262 7311.442444781023 7.772818235560432 0.00020753164821952764 75228966.87700367 2008.588264474082 96479 5347 189880 WRX_20210610 726801012.7141298 19362.811705675995 1.6730024929660081 4.4668607230795574e-05 52561215.97275214 1403.3668937919433 260197 None None REQ_20190616 18664548.54414173 2116.748733799165 0.02567061817330325 2.9102610607815256e-06 3940478.890701133 446.72949435885863 41708 29978 444138 BADGER_20211125 260814232.5596642 4559.096371225071 26.114555837456674 0.00045660698748426143 19144264.92129108 334.73305798191495 41004 None None FET_20210107 49907537.59352264 1361.6166471254958 0.0731554205633159 1.9820281220501846e-06 9444519.719925657 255.8840280051245 26429 735 338598 KSM_20210704 1849425771.9893022 53348.472854552085 206.92484394008284 0.005963445176619778 131499686.46302079 3789.7390957655375 90418 None 64367 LRC_20191108 31084436.44465564 3371.7165830956 0.0323046697184229 3.504074805890837e-06 5075291.795508024 550.5149028978326 33736 6853 717545 XLM_20190305 1581345239.9096286 425907.34247500496 0.08230906118464858 2.2168488338934552e-05 98507894.72339533 26531.357350433198 263878 99284 70469 UNFI_20210110 17390846.036771767 429.7679483189045 7.058843359567458 0.00017510353209904096 11683983.172437264 289.83597145650344 None None 133722 SKY_20191022 11100158.806913238 1350.803020031618 0.6937599254320774 8.442518875197612e-05 395946.1064206245 48.1835625621532 16348 3806 1313874 ICX_20210702 511847834.2954122 15235.759104053253 0.8059460713611939 2.3959606070569476e-05 48365795.76128865 1437.844857005022 141705 32490 225369 XTZ_20191113 807398543.1319777 91774.29197608659 1.1687168601475242 0.00013277820797150407 27669845.950865604 3143.5779575728543 45574 17431 215238 AERGO_20201129 10908705.496716928 616.2506762063574 0.04129183703595145 2.3312823112510927e-06 2897675.618584301 163.59891926018042 None None 637746 APPC_20201130 2621604.1964583057 144.52567269186153 0.023790145211864268 1.31e-06 87497.83122490642 4.8180520919 24250 3140 562467 POWR_20190221 40199820.0160283 10135.892590603895 0.0967903112185712 2.438761923016507e-05 2713036.195304447 683.5859173892767 84652 13277 761259 PAXG_20210930 310716982.8220956 7478.817051213825 1745.7735105084125 0.0419997614381091 5993032.566605783 144.18017948671852 None None 42422 IOTX_20200701 21051931.599859573 2301.208587701873 0.0048707908345682225 5.325358414383217e-07 4028203.3472870425 440.4136272508056 24601 1870 576006 DOCK_20191102 6249580.163612885 676.8815168538061 0.011162121110890794 1.2089505648452785e-06 2848706.603538282 308.53862121831406 203 15137 193357 MTL_20190605 20550083.00019625 2683.5317999073113 0.44681615900955984 5.828078721686242e-05 4009845.445215565 523.0270760196773 33266 None 939567 ARK_20190621 75262240.44640483 7868.03965631545 0.5258005085975515 5.5014874947657686e-05 787455.7647567509 82.39204739541886 63472 21828 211362 BRD_20190923 13607669.40641532 1353.6492744635877 0.2255912832403732 2.2441201184155077e-05 202941.0526406583 20.18801846160235 170 None None LTC_20190729 5673782531.887728 594314.9832551919 90.09950922100163 0.009444214469980573 3011274076.049202 315641.2110119715 451159 206902 151076 COS_20200425 10193024.108852752 1359.64556774446 0.005165806070001932 6.892093558221117e-07 1028859.2759204502 137.26791698714942 10814 None 147635 APPC_20200506 3366826.644010461 375.40708193821 0.03099728682098273 3.444851578350598e-06 34347.388806795534 3.8171617156898 24679 3211 1060091 TNB_20191102 7740975.1749234935 836.4290755817475 0.0026443028350769497 2.8561006374912477e-07 321241.5812240035 34.69717132061667 15468 1462 2032094 REEF_20210806 205478526.71143493 5015.139765183868 0.016188290533258317 3.956479375418116e-07 38121928.02444785 931.7143256728024 188308 12580 58529 SCRT_20210602 116370832.21222757 3171.554515784709 1.6650910401663166 4.539269936141536e-05 2768421.605974689 75.471026288811 82422 None 49148 BNB_20190207 1154130751.238883 338798.6164260278 7.99889295422142 0.0023481376012341724 127535275.81797412 37438.97791180099 912919 47234 1125 IOTX_20210107 42495876.451640025 1153.7877274874409 0.007419931828530406 2.0089629130584303e-07 2431926.3742273115 65.84494313445707 30689 2016 689535 PPT_20210703 70031542.28130257 2071.9475112287246 1.9394873795267753 5.7282797898843566e-05 3015452.104497298 89.06143721219125 24455 None 723163 XTZ_20210718 2026680057.169231 64122.75625497962 2.4114608816168213 7.644189396192163e-05 66988623.31772876 2123.500024132928 124875 50375 65574 NAV_20191011 6257328.734715335 731.1148101632699 0.09425914738945082 1.1013367136595733e-05 146119.65937902182 17.072819977529157 50982 14155 439826 RIF_20210202 111770086.96496095 3350.188878691298 0.16284201276910865 4.875768801677175e-06 2654861.347149901 79.49109636446173 43800 3019 663041 HBAR_20210828 2378956703.350323 48499.32163736057 0.2522595675144108 5.1424297907616156e-06 75384127.88418806 1536.7408610184286 123906 25113 50561 OST_20190826 8218356.083516963 814.0713980705872 0.012449666166233142 1.23256698879004e-06 1072687.5392768893 106.20037778885721 None 755 528261 BTS_20201228 61124455.931560956 2301.9153670159185 0.02243119309535396 8.529518933517701e-07 25525504.89940707 970.6138964680688 13117 6880 121764 XEM_20190726 594041782.7911322 59980.851038466404 0.06590231349469257 6.66444102110793e-06 48945151.56470167 4949.630120320627 217397 18428 192645 DNT_20200106 4246515.060745077 578.2115505644113 0.005653380510275687 7.698806748682348e-07 181200.23955774345 24.675954937658798 59441 6163 582264 BAT_20200324 193766170.1844426 30077.384426159708 0.1341760584199724 2.0706659463944923e-05 67506693.77432597 10417.939951302873 111926 36019 19141 DUSK_20210703 42350558.63305011 1252.9665935427433 0.11766690063468242 3.4752942244380137e-06 6989657.484977639 206.4396712866498 28011 13642 479861 ROSE_20210828 155169772.64413276 3163.843071681771 0.10351581073729314 2.1102184317345565e-06 11971667.932296727 244.0480748728441 None 1868 261219 CHR_20220105 508170541.53363043 10970.283355097821 0.872020795691359 1.898250772206043e-05 133947389.86802527 2915.82193347092 138481 1904 30769 XEM_20190305 361520805.7215007 97315.85723650694 0.04003979716556333 1.0783644521527788e-05 13488395.087043718 3632.7371285911677 215021 18488 134227 DNT_20200907 8332534.130214426 811.4131348072342 0.011091977174163017 1.0801247050957234e-06 318014.21043990814 30.967878843798175 58363 5990 478994 LSK_20210318 565476746.0187334 9593.73754735066 3.9412820178644603 6.68668084862885e-05 68623232.72504584 1164.244664435847 186240 31667 156413 OST_20200907 5275881.893078328 513.759655686553 0.007629409533506091 7.429436243006512e-07 345714.43239582225 33.66529640979452 17648 748 678146 PUNDIX_20210909 425642515.2418496 9183.802866375048 1.6794048219323892 3.627465077498525e-05 45216659.35202703 976.6665581672866 156128 None 385143 DUSK_20190904 12841044.873017712 1211.231441932613 0.12090337634287489 1.1404209884042491e-05 2896835.500963716 273.24398252408673 20430 13321 183070 LEND_20190302 8749842.337775426 2286.7944978052 0.0077950605791749315 2.0405869337210808e-06 156669.66411846585 41.01290378226288 11662 5939 427366 QSP_20200113 6328718.720197037 776.3305437550598 0.008876109435486858 1.0886135748478829e-06 52157.63735054987 6.396891843716567 55572 8357 458793 QKC_20210826 145357046.94960728 2965.5168622584465 0.022237227077563433 4.537824532453144e-07 21336630.38719041 435.4044884875402 75287 9551 280880 MBL_20200621 7121557.862873362 760.894392095144 0.002013123611537168 2.1507936428519476e-07 11932057.263969995 1274.804625131597 None None 98969 XTZ_20211125 4251016991.166635 74308.8133965632 4.894321288556585 8.557469122110075e-05 160065275.69601244 2798.6590449084006 218246 64054 37286 GO_20190227 13390979.195474504 3515.804491771642 0.01953982457710349 5.1286550688177965e-06 1503031.1888188247 394.5034662265933 7920 630 747955 TOMO_20191213 24080441.758079417 3342.596552956352 0.36555541644211664 5.078370724169408e-05 8647712.149336465 1201.3578854244188 19076 1391 393362 FIO_20200905 19702021.76237858 1878.241820502962 0.19514900047005684 1.8611760305675086e-05 3276798.2592024673 312.5149686825447 52514 135 278091 DNT_20190929 4773733.505324636 582.6983033117706 0.0063546266056801 7.756675434813198e-07 347983.43077536544 42.47605243720558 60056 6254 442097 MANA_20190730 53120647.88738566 5596.650368824103 0.0398327911346663 4.187659487125115e-06 14079922.695478288 1480.2357598886306 45567 6345 146197 ALICE_20210916 229884179.84096032 4770.061965750382 13.217633677465962 0.00027423563137749353 92781904.31694746 1925.012050692748 113693 None 28938 STMX_20210124 22373514.429845218 698.8133782921766 0.002686465873854367 8.382586341767576e-08 1306221.410371363 40.758060098465776 22202 161 183695 ADX_20190207 8008805.6897454765 2351.5647914344418 0.09200831341025036 2.7015702305256744e-05 484827.5364518243 142.35622748318195 54427 3950 834764 NAS_20190220 26839782.48670872 6854.249653198671 0.5898853293782136 0.00015064284952084986 2293966.094416571 585.8250272665456 23375 5183 410300 JUV_20210422 0.0 0.0 14.083336585647515 0.0002604082145730459 16156364.742440129 298.7395828384445 2414604 None 44251 ANKR_20191118 9139275.073646268 1075.2840073356997 0.002291597420003269 2.692958037505098e-07 1255738.9852539734 147.5674725337821 None None 5285 IOST_20190813 107019454.54265574 9403.384980757373 0.008907843922568152 7.826942460701233e-07 30321923.443494685 2664.258064611425 196819 50634 101612 OXT_20210511 351854538.09164363 6301.806787373797 0.6040582418895234 1.0810807953619368e-05 50109720.17336802 896.8118036256586 64140 4008 84331 DCR_20200425 142967324.74763772 19066.598034878283 12.4996120713289 0.001667668020627739 94554942.7648134 12615.291845965348 40599 9764 260313 KNC_20190703 41175062.022802085 3815.0487359885537 0.24598305214114796 2.274428749085778e-05 8171692.69816616 755.5777782096394 97229 6689 219747 NEO_20200224 1009118904.4282022 101429.08827087292 14.303616253421014 0.0014382850037262676 772072243.110413 77634.90780126446 323154 98918 228840 BTS_20190507 142716804.64776284 24957.790693657727 0.052659219146418544 9.208850862317629e-06 12878625.560322816 2252.1667434316796 13793 7198 176364 APPC_20210107 3066831.217485753 84.08805263954879 0.027761726258646365 7.521591939133549e-07 199658.1169894493 5.4094146356 24260 3126 538163 KMD_20200105 66219676.193457834 9011.063880372387 0.5589097189492132 7.601029611485432e-05 3485426.2780162715 474.0090832140008 99103 8406 197912 ARK_20200927 45655355.00517377 4251.940470068054 0.29972008521840965 2.790406940455448e-05 1628185.2994470834 151.58475470917858 63167 21777 106605 AE_20190220 98164894.23645028 25073.96475530977 0.43150262545398016 0.00011021742249725027 50225462.2017897 12828.93929507438 962 6312 487451 ENG_20190903 26757374.541416675 2589.3955692633504 0.34140305351265465 3.30311309715664e-05 337358.11732872087 32.639778827851046 61534 3474 285692 SNM_20190430 8893166.229816077 1708.3818359642066 0.022260919071069803 4.2752298197302475e-06 44747.99113231618 8.593892527578783 31612 10034 None ICX_20200324 105657592.56146672 16399.77490685773 0.1979043349854842 3.054149689027469e-05 17957844.04167225 2771.336150847828 None 27505 126672 NAV_20191203 7443362.24406691 1018.7952484061847 0.11140092415235445 1.5247777613529815e-05 355479.49573387654 48.65554157977166 49964 14108 566047 BCH_20200607 4666492561.289534 482484.56121115753 252.51855610646246 0.026165224086048846 2300843610.4789343 238406.59309707777 3231 299425 152182 USDC_20210813 27860191049.070683 626644.0177328065 1.0008518780822764 2.251009489135708e-05 2801880157.0313625 63016.905488388 None None 31886 SC_20190312 101682278.52018121 26298.294526177262 0.002552923479410895 6.603077266424516e-07 22504033.119337924 5820.615881814608 109325 31109 214151 BZRX_20210527 52553532.88080232 1341.3537162259556 0.37679708811401835 9.611318316696344e-06 30179466.59827181 769.8160873693434 None None 131291 VIBE_20190803 3736803.238341988 355.5838399736078 0.01998396264580781 1.9001795072027438e-06 129035.8787997478 12.2694050692 20409 None 1550581 TFUEL_20210117 0.0 0.0 0.027593607464900798 7.62341395033459e-07 9217393.256805584 254.6531997638689 79763 4937 50826 TROY_20200310 3978058.3338739565 502.4447678002367 0.003414642346672924 4.3128306248947363e-07 1393721.7952332038 176.03266845565165 8760 None 312111 SRM_20200905 144406154.65562126 13766.59116934512 2.897334424556605 0.00027632472472490383 125133160.78977048 11934.206115844576 20344 None 111486 STORJ_20201101 45476422.18495926 3295.695111933902 0.3163554310326193 2.292684496879766e-05 10432114.344126772 756.0340199751572 82311 8443 86612 YFI_20210804 1142372888.2655537 29737.138383917612 32037.288771999218 0.834107264724808 186953302.63363189 4867.425236910174 134871 6929 22152 AE_20190531 144640248.02453652 17405.63762309353 0.543369633983229 6.541386007050099e-05 63617287.11167613 7658.60301519262 986 6355 375692 SC_20210217 539690305.4127727 10967.17894565458 0.011477206010675728 2.3323111579510697e-07 49162638.6970627 999.0460281084172 112108 33431 91836 NULS_20210108 24832143.53561406 634.4022153862335 0.2505461105234854 6.3489806212469385e-06 22408766.56692946 567.8508613932173 35526 5107 933536 SNM_20210511 254761730.2475446 4555.431489978752 0.5787028978866858 1.0389999999769277e-05 2571951.493225734 46.17667565102541 None 9709 None DCR_20211225 1027655098.2378805 20209.240639779346 75.47438296898294 0.0014842333484983794 5593867.246733587 110.00559379315303 50803 12478 118301 COCOS_20200331 6602452.705110507 1027.819864231064 0.00027303324528070737 4.258785832234851e-08 449864.0436366143 70.17001220865136 None 217 63643 EZ_20211125 0.0 0.0 4.134122087910026 7.227619239357229e-05 1654656.31941071 28.928090642680463 37649 None 289811 ZEC_20200903 756364832.4853812 66299.47375182253 76.0599119103934 0.006665550650780483 547635230.8317499 47992.30340368154 71777 16123 174620 LOOM_20200309 16238495.33229396 2010.088810647473 0.01936722708913314 2.407743934366183e-06 14085460.893712237 1751.111962156772 21566 None 487535 WRX_20210828 698754438.8559296 14245.369084641401 1.5463688507673543 3.152954539599555e-05 18160611.042524163 370.2841078311585 319530 None 1458 TWT_20211207 280337964.96895933 5555.202062684668 0.8123130170382918 1.6083121012434975e-05 19562632.434462074 387.3238248875773 10989 60395 3311 BTS_20201229 61085550.042160034 2252.706069116515 0.02261655988419084 8.332447376264514e-07 43315075.387446225 1595.8244229579423 13118 6881 121764 ONE_20190806 29635830.60997883 2509.780365963063 0.01157760335885435 9.802221637266452e-07 21120003.548081428 1788.1330819631203 69270 None 151929 NULS_20190622 66499942.41419271 6569.346632570537 0.935438868041658 9.241852500130043e-05 14627495.947114114 1445.1522660426638 21165 5316 640711 ZIL_20190509 147525028.27284437 24784.039228445312 0.01682401823356927 2.8243362871150515e-06 15792912.363313153 2651.2391301343873 60831 10250 201594 ZEC_20190221 324540100.0465563 81636.08338357716 54.672333981678825 0.013752492265402169 179521662.28485203 45157.57956980413 73426 15035 147645 KSM_20210909 3073202150.4516068 66334.99245687763 341.637248041788 0.007379264190859749 350723960.507361 7575.534510604392 None None 63129 ENG_20190625 48969627.4634627 4436.211523299551 0.6351689307486346 5.750759572325906e-05 1975616.4020310089 178.87044509297752 61764 3462 334360 NEAR_20210616 1305481759.0335305 32325.78936945549 3.234557438023862 8.014139258752169e-05 51316708.04657166 1271.4544492281768 None None None BNT_20190302 33643277.56603315 8799.652608650546 0.5191710556314262 0.00013589943954108358 2320641.253460479 607.4565257449354 847 5099 160054 GLM_20210104 110492519.19826658 6393.577954391452 0.1052045916529789 3.195951039508966e-06 1709456.8700797067 51.93062750481467 146057 20315 228749 LRC_20190601 67204664.3075124 7834.1178806697635 0.07001841774680029 8.164299577406608e-06 43109537.60071614 5026.6657108487 35739 2463 858325 ADX_20190618 15329270.254630636 1644.4892867004135 0.16657568262434685 1.787803466418664e-05 1258879.0623484778 135.11145900833498 54252 3889 880682 HBAR_20210131 564213016.1193473 16493.143215099753 0.0810546875276072 2.372485124640269e-06 62638828.66095505 1833.4496591870763 None 7550 141603 DUSK_20210711 41361698.025633775 1226.9144940368853 0.11470011574397562 3.401823915735724e-06 5748554.722852937 170.49303577659018 28155 13638 479861 BAT_20190131 142144203.4449747 41063.839242664995 0.11555483920259034 3.338381767838896e-05 10827454.228977429 3128.0538348339574 91655 22394 119665 AE_20190613 135675204.44891825 16685.159011871376 0.5076358866262007 6.234693844593899e-05 46336365.44389984 5690.95014802732 985 6363 374739 CELR_20190906 18800319.92174498 1778.8882682661958 0.005781966335757841 5.470902689423514e-07 5076668.607391068 480.3549229562816 18326 None 503834 ONE_20210724 706578085.7340653 21138.586366327203 0.06895544955122894 2.0622273408177586e-06 25410717.84664709 759.9497564616698 195533 26463 25720 ZEC_20190510 367695575.35601795 59490.66946609356 56.569787845488335 0.009162387792354397 201688532.39158344 32666.704568344954 74856 15131 166067 COS_20191127 15686997.041601961 2188.550829490594 0.011826723999835 1.6525085807440994e-06 6145976.754010654 858.7567717990263 9286 None 208767 HOT_20191108 172629576.51794258 18725.407012839856 0.0009710971462529445 1.0533452512956246e-07 18156661.706710104 1969.4459469827948 None 6706 567580 LOOM_20200325 11581993.02168403 1713.4538836028787 0.013883948657900411 2.054673328103637e-06 21074133.211394846 3118.74240457643 21563 None 494145 BCD_20210219 228178939.96713823 4414.617937416564 1.2136983511208308 2.3475586837572004e-05 9564022.222169854 184.98915647835824 28416 None 1218964 MTL_20200423 18857986.141431626 2650.7353399451185 0.29176634246317035 4.101155601522477e-05 8046241.063140403 1131.0038823776902 None None 490866 ARDR_20201224 61951163.38111663 2649.500026430129 0.0619292187186853 2.6558859936468797e-06 6263396.173244101 268.610948327068 64224 6300 None ASR_20210825 16415352.131288648 341.5967100731973 8.070943237013871 0.00016806355149621757 4818633.769146073 100.33978443663563 2008408 None 101452 BNT_20190807 32564617.13669926 2845.856739153046 0.48689082292747543 4.243532211241034e-05 4615121.406407497 402.23424687130364 782 5132 154213 NEBL_20201224 6622388.662341094 283.2233969193148 0.38323194936447474 1.6424590064220687e-05 443980.94655846735 19.02817616234864 38239 5889 1009679 XTZ_20210106 1790258329.7533896 52700.64443322595 2.3804644730706106 6.983535336094917e-05 263488663.57308725 7729.930076837148 78505 31649 186076 DOCK_20200907 9797498.585434932 954.0697843229393 0.017498913996037833 1.7040252628262405e-06 3417976.9737384184 332.83889002068406 42743 14916 214748 OGN_20200403 7275992.942851464 1073.8473961169448 0.25450151626496914 3.732931956913075e-05 54264524.26053024 7959.315123605034 66314 2186 102776 SNGLS_20200129 4284976.508125972 458.4848496914789 0.00710648406106093 7.600195138480435e-07 69447.20046592585 7.427192840047102 5797 2148 1416171 DCR_20200430 159913674.92129043 18239.684485581376 13.997155718386288 0.001596509517554253 22492304.625309933 2565.4625217084294 40576 9763 260313 CAKE_20210819 4563121181.259114 101289.12221421678 21.505406475288577 0.00047798086329318924 304280181.14964217 6762.955345021552 None None 739 ANKR_20210620 505671153.15901375 14184.793135126409 0.07223138673924823 2.0293799998397726e-06 17381116.977143627 488.3319116608437 None None 5363 XVS_20210727 267274792.3621845 7139.056530029122 25.25618712042289 0.0006768611218126221 337725566.8025002 9050.982435345386 None None 12441 CDT_20210104 4829899.512741736 144.3768091402003 0.007134913755476097 2.140289256245533e-07 341699.8383026694 10.250109781897967 19261 293 987559 XVG_20201015 73106646.1703389 6397.136708919253 0.004465178101241207 3.9072172284798003e-07 1526888.6943945247 133.60913444977592 288548 51363 271694 SAND_20210727 457125322.54550976 12203.069901683279 0.6497075545638353 1.741204173596769e-05 589021771.3213936 15785.674021486293 None None 30642 IOST_20190826 99735064.79793936 9879.38799632228 0.00830170595978079 8.223448708213615e-07 28488249.407840803 2821.9700737071366 196485 50738 99205 WAN_20200322 12954404.09082234 2103.3833221396603 0.12211890920831621 1.98207129375796e-05 371220.03131225926 60.25148541712112 105796 16359 732459 KAVA_20210212 278859714.7473624 5849.11339172327 4.761983904925147 9.97354049834508e-05 147523760.86677325 3089.7504755343475 58084 None 91263 DOCK_20200320 2133237.777784099 344.6876907787476 0.0038418315563226533 6.223582843542447e-07 1525160.145298333 247.068627938987 43039 15022 378260 RDN_20200224 7892328.0654104 793.2739456720872 0.15577616227340255 1.565482095693581e-05 1453523.6582609362 146.07275140601195 25210 4330 1589511 NULS_20190430 27882614.41869759 5357.217666213023 0.6970436254431766 0.0001339263593570556 8242585.691927368 1583.6878110843295 34 None 664813 OAX_20190706 7295756.948333969 663.1702465486285 0.16310266059014442 1.4825717523526248e-05 799838.0218793557 72.70373477694129 12316 None None POA_20210420 26805735.60511462 478.8684428101451 0.0934002143599207 1.6699400544440375e-06 2431860.683593516 43.480216723176234 19448 None 274673 KEY_20190324 7651935.289988323 1911.753306590791 0.002928362217406257 7.312008309504177e-07 506782.28866613255 126.54159665802783 23649 2822 726205 ADA_20190725 1757974757.4392202 178947.49265351868 0.05639702721053328 5.751346494322867e-06 321291248.9631394 32765.154295856973 154158 74728 95231 EVX_20210218 14355266.395017333 275.05718943748695 0.6549724158389671 1.256324498040402e-05 3130606.5734538343 60.04921179647602 17082 2815 787934 PAXG_20211007 319587892.2898007 5756.932519326982 1765.84560382771 0.031831492466668686 9190167.32239374 165.6638277186227 25518 None 42739 COMP_20210511 85752.20775857584 1.5523309632565172 1.5494293282665573e-05 2.7775367223476916e-10 187.25997593276523 0.003356858233483243 2453 None 1890272 MINA_20211021 1164963121.9167342 17577.570486900237 4.3205847153129895 6.520589006687407e-05 46085390.272064924 695.5167158553361 140986 10836 73942 LINK_20190405 197140294.93086025 40205.83005337513 0.5407839953950567 0.00011034669612072254 12691412.84902804 2589.676264311893 11197 6555 297045 CELO_20210218 474756063.3102678 9106.760557356523 4.818169293725527 9.240741120907766e-05 129572865.90672992 2485.0710656793203 None None 108318 OGN_20211221 241542095.3572322 5119.729987425268 0.6099536569678421 1.2942041990855328e-05 61323916.45927515 1301.1754135634048 131523 7492 100062 SNM_20200520 3118178.4770347998 319.44908624 0.007126382305254785 7.3e-07 33569.64719011311 3.43874934 29582 9633 7249686 POLY_20200806 27156243.10547761 2318.1548109952614 0.03998761667352388 3.4134871164585344e-06 639844.8871241735 54.61946623531436 35060 5010 388047 YOYO_20190110 4373634.697374661 1099.4458312339802 0.014974209471737464 3.765225449432215e-06 337707.3915008504 84.91563226361308 6907 None 766944 LINA_20210806 133365044.6918832 3255.0738861231457 0.04797412065678604 1.170932150504429e-06 35585013.68188977 868.544040533044 None None 101818 BAND_20211221 211556537.9353248 4484.155648734722 5.069201948742248 0.0001075587034052436 18900650.949067887 401.0354154663796 118469 6366 255553 GO_20190730 9281946.039936382 975.6626484176711 0.012293617109196952 1.2924397425318294e-06 298613.972872897 31.393573005257217 10102 682 877679 MTL_20200113 13657335.135460706 1674.3167357607902 0.22249587742708532 2.724712840835384e-05 2959592.359539411 362.4354481946756 34570 None 546427 WAXP_20211225 920741555.6621126 18108.4151247906 0.4909998519753234 9.659795752378469e-06 91173199.98522785 1793.7164062369604 233449 6490 3362 ONE_20200719 39925514.9724194 4353.750420341145 0.005794081215033862 6.320724970311988e-07 4312018.613443103 470.3952656328206 None 1323 140564 FET_20210429 398622529.6917535 7282.386533924116 0.5796330179054269 1.0585815194378983e-05 80266737.89069508 1465.9083028724058 53752 2343 124282 BTCB_20190704 0.0 0.0 11893.961145657988 0.9990464498923527 54264.96484097245 4.55804587 None None 49193 KSM_20210828 2763266538.7798944 56341.783228483735 305.3759041550638 0.006225231266275176 296054251.89543617 6035.205005819104 110033 None 63186 KNC_20200905 266024648.98590556 25356.743170501424 1.344502492789847 0.00012822795948691949 96128902.14665237 9168.010499114538 122262 9021 55300 AVA_20200901 53038113.806352325 4537.776712303179 1.3747302831264 0.00011791841080637083 2280518.2355165924 195.61297910416363 None 8924 60068 LUN_20200607 2570162.7475492745 265.80052161112565 0.9507304060394837 9.83224264991831e-05 609593.5063204436 63.04280618230481 28662 2124 3112082 MDA_20190703 15648987.369425181 1448.2955901607104 0.7979884159471523 7.378389140370612e-05 858300.203693956 79.36046157508095 None 363 2408870 DENT_20190130 19672695.689504452 5760.317771614639 0.0010512438382828564 3.0776755406538986e-07 2253998.834478421 659.8922941482283 42305 8794 245750 TNT_20200306 19363242.791868303 2138.7150554662603 0.0451838332294288 4.991094789117059e-06 800241.8053573321 88.39627847579808 17730 2564 1226899 FUEL_20190806 3307063.1693186173 279.9613414512425 0.003674839007871969 3.1109561734593795e-07 3998842.8478824217 338.5243494385788 1 1505 None BNB_20190830 3391602183.9455614 357058.0984910232 21.78184136956019 0.002296613228113422 182628052.3542686 19255.764181973416 1027705 55949 879 XMR_20200605 1207769390.7561524 123543.03048913379 68.67822596972024 0.007025112765612243 77110778.4140439 7887.680646288591 319870 172468 79521 REP_20190329 159781395.92960203 39686.760691243566 14.5254319132013 0.0036078163637837364 3620946.024736445 899.3679773851675 123731 9819 256149 1INCH_20210114 100862288.19554366 2707.071629415277 1.2763370055659127 3.415193114534082e-05 100549600.16588011 2690.483004552633 None None 25684 HBAR_20200807 223025132.70569465 18956.149886730494 0.04423838870926114 3.7597819384086908e-06 10932832.867562348 929.1718968619809 41043 6597 141021 VET_20191213 390616654.15597004 54201.47688142575 0.006192863678183049 8.603253073952666e-07 84824320.49736728 11783.968354346694 117342 59857 431870 CVC_20201208 68535037.76166518 3568.2338709575915 0.10216573501494772 5.321165466244381e-06 16468606.689997056 857.745321199443 None 8031 214631 EOS_20210722 3367768884.0030923 104653.79380708277 3.515747658902999 0.00010899674769148942 1178119842.3589878 36524.586991549724 None 91680 52079 TRX_20210813 6021641054.956832 135441.47408669093 0.0841338911372656 1.892249906857114e-06 2373097381.7710423 53373.179808037334 1086247 115218 26326 XTZ_20200417 1488438482.973718 209638.03192615052 2.0994985641896102 0.0002961684999963693 173855914.97669482 24525.211130124782 59488 23502 97090 BEL_20211104 133104825.83577462 2110.9662426083655 2.773520083449483 4.397846338767428e-05 34225850.49975388 542.7039530369622 35584 None 409370 RAMP_20211104 107323095.99610992 1702.0827853343965 0.28681232710895377 4.548679108283858e-06 5407635.395698886 85.76199774107947 34469 None 105823 AION_20200422 25820964.10914556 3770.436875138134 0.06290332933648057 9.189059793202185e-06 2154962.4362100866 314.80175830621715 479 72548 308963 FIO_20211225 74025228.00020416 1456.3643222918536 0.15993463227149055 3.1451772834595487e-06 7482924.541076944 147.15464653387943 None 557 389055 CMT_20200310 9341197.07600548 1179.8553941061937 0.011695440030308115 1.4757321164026711e-06 11115405.51087294 1402.5432866763451 286897 1639 953076 COMP_20210930 0.0 0.0 1.632882809114576e-07 3.96e-12 517.4702217354735 0.012549474258863904 None None 3568344 ICX_20190220 112425863.55729008 28716.601411811305 0.2374826264628941 6.065947559201816e-05 10983888.024333945 2805.5816016572867 111345 23482 263363 CKB_20210418 743355274.4325852 12331.164488945738 0.02990902992129933 4.975701065761439e-07 66807825.92847922 1111.422776159026 41026 3157 121056 LINA_20210710 93216061.1602285 2742.780226532902 0.03389704117752293 9.974362514762981e-07 26604181.36290619 782.8404489123583 None None 80589 AMB_20190511 5000157.08006139 784.7411979171527 0.034581391266373225 5.4273179769148994e-06 540915.2436252997 84.89302825041543 20683 5694 611574 WPR_20210128 5973865.341318083 197.47745186506322 0.009858030166992821 3.242674732494099e-07 148368.99000977582 4.880410861403685 32533 None 7520139 POA_20190629 7206524.1624192465 581.7567592812082 0.03271519928019001 2.6425174120352837e-06 355226.45473999175 28.692843464792734 17713 None 649823 XEM_20210602 1716202158.4362817 46773.13551957335 0.19060194621794532 5.1960743488882485e-06 115301537.58479758 3143.280400435564 None 21550 39314 DOT_20200927 3981431937.9363737 370785.441415835 4.340299971503735 0.0004040838022355767 124028159.47280042 11547.075223624674 65156 4971 35201 MTL_20200109 13401856.5512125 1665.241265277806 0.2246585442019871 2.7997328372275883e-05 3302538.184602699 411.5679033919592 None None 546427 CFX_20210727 188650159.31855413 5040.696851470892 0.21947595917614435 5.864356438335308e-06 5763434.566215767 153.99788993830455 None 1165 173501 COS_20200905 23219913.52395681 2213.2587559561825 0.007676460522825127 7.321197797716648e-07 1755675.3878762638 167.4423615546005 12902 None 229143 RDN_20190601 22560636.945216645 2629.917002234971 0.4457856398109445 5.197957377276993e-05 7947154.400253894 926.6554629412911 25646 4441 856737 NEBL_20200318 5002987.48744171 921.5076649406591 0.306342843960633 5.6955403552632594e-05 92706.94574701034 17.236118327058175 39607 6019 841626 COS_20210702 36236497.74746877 1078.4449158357424 0.012051838556338755 3.5830857770679416e-07 3157691.664981848 93.8801166334212 None None 334513 ORN_20210429 350902584.050408 6410.749448457898 14.195588471422482 0.0002592534784801608 23212971.200727336 423.93758749511795 58871 None 53561 LTO_20210805 82642001.02476497 2073.3083789107436 0.2843448668277837 7.150646258034008e-06 58312921.69785145 1466.4413674339924 11334 4367 653266 XVG_20200607 87572307.8067835 9054.620347861879 0.005378306322711126 5.562124917280653e-07 17338794.135702398 1793.1395705474745 291186 51750 276574 OMG_20190605 273359378.82066673 35696.62399228085 1.9537958778056015 0.00025484477121861415 132208422.84001218 17244.700766632002 289662 39472 None AMB_20210304 5581701.474755248 109.80472272866005 0.03852559961497245 7.594024872908208e-07 596341.6207193594 11.754867272028694 21093 5482 363495 CVC_20210722 131492041.0544432 4086.129846127388 0.19707462459828642 6.102075125866067e-06 21356811.59051414 661.2767576745524 103572 9839 183364 NEO_20190220 578284258.2086083 147999.37383289266 8.90045265537479 0.0022736257031639676 217438231.16172636 55544.72006783477 316125 97925 150509 CAKE_20210805 3616718426.6145945 90854.04692822388 17.566571691892133 0.00044176053373663673 213012119.07773826 5356.784981533179 None None 746 LPT_20210813 439315970.1379736 9881.634630748376 18.295102819046157 0.00041151751728620586 17681250.08291403 397.70993410665375 14992 1280 108437 TROY_20210823 20899936.26085088 423.6412021506682 0.010986282904683073 2.2296411006228272e-07 31501972.7107424 639.3253634186852 None None 544029 SOL_20210506 12196654588.937687 213050.61494284033 44.893093488124 0.0007830942184238644 632988283.9886094 11041.552876115626 210736 13803 15641 DASH_20210805 1661918442.9328825 41748.347091106014 161.2386478205552 0.004054796369462222 395989696.3583909 9958.267480172684 401858 41814 69115 CELR_20200422 5842005.979665176 853.5315504467479 0.0015441389470667803 2.2557128952123582e-07 5081362.332532899 742.2968354314232 19351 None 1594945 VET_20200404 207788387.25342658 30897.1531666874 0.003227486542737699 4.796989787620987e-07 84439521.47764286 12550.184697478848 118635 61533 281766 HOT_20190904 145445825.89399746 13685.881213250463 0.0008175401646362169 7.693174889283243e-08 11450564.701882241 1077.5152175163369 24319 6651 436903 SNM_20210127 4633359.81857963 141.50252514909533 0.010842472873083596 3.3291829978012027e-07 89500.41670522897 2.748111699968961 28716 9489 None STORM_20190225 12230759.51251413 3247.1214945022766 0.002699837352169535 7.207035069142533e-07 1427474.3499129287 381.0547213837457 26577 2569 3385939 CDT_20190430 5767748.367521339 1108.188190965433 0.008551668753653425 1.6423857502646266e-06 145916.9264935371 28.023990135610987 19879 290 416908 POWR_20210324 199658325.10382038 3662.4842570776395 0.4688256360063828 8.600419898216158e-06 37483604.6459439 687.6218246082743 86352 13164 307065 JST_20210204 50086654.381533355 1336.3801243676016 0.03501228993487193 9.334129422959991e-07 125823150.93191808 3354.3923501941845 None None 170314 ARDR_20190405 87405385.87494615 17844.02564542651 0.08745710978564283 1.786743016190739e-05 1477344.3708617801 301.8204859062602 69250 6584 1030225 STEEM_20190712 87301154.91565542 7671.95500552856 0.27837468428820666 2.446334249072295e-05 1280523.0139691252 112.53132855122429 5924 3757 330897 ETC_20200701 666974179.7974036 72967.57562239014 5.733969944386966 0.0006273014731404703 664317212.2208409 72676.90097794145 231704 25586 378218 MTL_20210430 253604421.50698826 4731.931079726896 3.923708180748766 7.321132880071708e-05 41645802.96253106 777.0569148896046 None 4080 207061 MATIC_20200707 70019028.40419324 7501.068714985487 0.019958365002096863 2.1361465693259565e-06 15841089.297413843 1695.4739806342618 43437 1943 125573 XTZ_20211104 5463858343.100997 86790.44184297306 6.320465333517566 0.00010023895732446085 297269790.31677604 4714.528480584367 209941 62391 40506 REEF_20210707 206982464.51577917 6059.592111346552 0.016334922503750484 4.782251749898725e-07 30015715.537300967 878.7474083195843 None 12432 42955 XLM_20190615 2425394631.4386206 278762.3732711627 0.12469033258475319 1.4361035708525636e-05 305203620.16648537 35151.40265267155 272725 102030 70523 TFUEL_20190906 0.0 0.0 0.004514397323996963 4.271205039656772e-07 783626.3055050856 74.14120612488628 70133 4025 310301 BRD_20190507 22984378.155727997 4013.5545701572546 0.38350107227061186 6.69322518184483e-05 978928.9366656876 170.851981490782 166 None None ANT_20210428 312307510.3249605 5668.550239235582 8.881542762538736 0.0001612654973144432 71657791.26480126 1301.1173456839324 82888 2955 100052 DOCK_20190723 4776689.637366659 461.86572588855 0.009294897427347295 8.99065054058869e-07 1250661.9030373315 120.97243893787977 180 15219 260296 BTCB_20190810 0.0 0.0 11861.128182752882 1.000022322390825 64254.63213220897 5.4173654865861485 None None 55533 APPC_20190321 8343723.121945596 2063.7391050157503 0.07990225785135734 1.9763049623876657e-05 331192.0771576048 81.91715268017725 25455 3413 1389484 INJ_20211120 494494175.742498 8504.009016891285 11.33319406090855 0.00019484706097409635 21384689.492136214 367.65839135841514 91500 4331 114107 REQ_20190613 18420019.091520976 2266.161328225585 0.02519647082935778 3.097182247773703e-06 296339.0108836011 36.42636820241152 41696 30006 442629 BTG_20210613 1005787103.455717 28192.02593184406 57.42785588516411 0.0016096921473362598 83460400.2620648 2339.379537067022 99031 None 157405 RLC_20200518 25365869.740685374 2623.141042331259 0.35858489989749226 3.7121937823541e-05 411711.79715831776 42.62181631100044 30325 3581 635349 BTCB_20190916 0.0 0.0 10304.8026775068 1.0 70524.42652711764 6.84384056 None None 85843 FLOW_20210825 1309239805.870084 27244.74058217984 21.82973040877619 0.00045506366290217295 90021829.70385689 1876.5996097562136 None None 63325 1INCH_20210523 458296545.147353 12194.911866469445 2.7307390797104216 7.271340323004283e-05 130217382.06556503 3467.3942596881357 212369 None 11416 SOL_20210206 1732564478.9479501 45720.30965860186 6.706647732382283 0.00017570025394993724 122560651.23753116 3210.8347427776407 111552 3496 80032 BAKE_20210823 548169504.997109 11111.525128222444 3.1504894676618305 6.394957459575693e-05 330136418.19623226 6701.207453292812 None None 12983 POWR_20210111 50180717.46385622 1301.7131028782308 0.1172031221780993 3.047256976677965e-06 9270880.977998277 241.04099118816177 80936 12567 337778 DUSK_20200107 10105291.812827945 1302.410968181792 0.03913564930752366 5.0454517451370304e-06 463816.08501858276 59.79616326768718 17907 13341 809800 NXS_20190909 12998594.72092235 1250.3848043799123 0.2177031476365174 2.0941702815938116e-05 58228.50063408256 5.601223358205956 22172 3539 525271 DGB_20201224 264874679.78664938 11328.04345865297 0.018748238889050427 8.040338002189448e-07 16056851.016393678 688.611395377538 178493 23612 262819 RDN_20210707 15101256.42660888 442.113945155351 0.30316304526380833 8.872412009076403e-06 674420.4847616977 19.73768406686854 30151 4674 857508 BTG_20200701 179832549.89076936 19657.683485905138 10.353023414712293 0.001131948032037607 50953055.66515823 5570.953409080193 75188 None 243493 NANO_20191213 105685723.84770149 14663.477987100789 0.792017835396508 0.00011002874003193808 1697762.682354383 235.85666946398652 97846 48424 274290 QLC_20190627 8191101.357823157 631.0727521726474 0.03423651690026203 2.6283796517119584e-06 2436422.180699539 187.04713745811367 24982 5790 940522 STRAX_20210318 149214206.31054983 2536.6461757648312 1.4937717823550734 2.5342959788266922e-05 4773396.425742305 80.98425415448698 152929 10539 200259 EOS_20210711 3829571392.061762 113564.63344241629 3.9808902993603734 0.00011815524699547508 2021464924.1862142 59998.309284806965 None 89353 47044 LRC_20190618 65949664.53432864 7074.930181717436 0.06854694901924696 7.356924560555356e-06 36963126.76708288 3967.134045182928 35052 2456 720276 DLT_20210722 5238453.723357539 163.1994492400004 0.06404008321871771 1.989999490336793e-06 443187.3561518539 13.7717280887 15232 2597 None STRAX_20210421 205758142.40979025 3642.0257726344867 2.065078809369586 3.662530849178696e-05 10200473.371986378 180.91100558303066 155041 10620 156260 NAV_20190701 13064742.8865598 1204.5666748738188 0.19850335096200117 1.8403647073979837e-05 369871.5796236132 34.291542087828276 48356 11253 893210 KAVA_20201130 77369812.18393852 4264.287238213629 1.6516457062690315 9.090089634226246e-05 15273669.818074768 840.61022992337 None None 84165 WABI_20190227 7652031.375109683 2008.9295769039577 0.14591432455501863 3.8298466114806764e-05 1566563.679339634 411.1795478123428 34653 8012 1817938 CDT_20190702 18395618.651718516 1733.5804994788577 0.02714149286774799 2.5602952361641147e-06 14117373.672316931 1331.711735109903 19777 299 343226 ZIL_20210117 856167508.4512334 23595.191738388225 0.07373609471875056 2.0375009206656874e-06 204730491.69847992 5657.182780225495 119310 14662 35147 DLT_20190826 3976843.619924251 393.9225284376286 0.04957236075119401 4.910343869167418e-06 1117851.0400764327 110.72769015039337 15036 2655 4092557 THETA_20200330 66126106.06422836 11182.76043765968 0.0659921364737408 1.118001972724905e-05 1377532.0369514178 233.37379528790717 None 4025 384607 HC_20190124 47092511.08982695 13255.727893814686 1.0741044685062782 0.0003023418423555971 9667204.929763202 2721.1510933925824 12234 782 349692 QSP_20190702 0.0 0.0 0.021065448023371066 1.9845047562204553e-06 646966.9770484804 60.94857520456466 56881 8595 721105 ETC_20210725 6335460861.991236 185433.80276004382 49.267108999219516 0.0014419859502094198 3537519139.4773946 103538.70972628272 485653 58524 110949 VITE_20200907 10163321.4933872 987.0622972228789 0.018909609800961163 1.8383275634132252e-06 1101078.7846365173 107.04311197283185 None None 366677 NAS_20190603 54239097.42241568 6204.56905249256 1.192059195102885 0.0001363525855193086 3372190.3366509397 385.72486429744623 24038 5156 510015 ADA_20190714 2086539190.1500196 183325.7076823349 0.0671818241171605 5.899337040689245e-06 229698210.92260438 20170.14544756371 153857 74544 97209 OM_20210819 67919071.47970597 1507.6222739904963 0.19222662894448805 4.272444241237855e-06 14743474.105641093 327.68962023818466 None None 103723 ONG_20200905 0.0 0.0 0.1484242413266581 1.4155790337712324e-05 10059201.383414684 959.3846967022944 90415 16619 197799 EVX_20190719 8728385.091916807 813.2747769526139 0.41063240017492547 3.848623752451192e-05 1058374.5827769442 99.19542531302416 18188 2918 1096264 DLT_20200323 2331807.441144134 399.67462153507194 0.028309521749542037 4.855094520688204e-06 53198.67859502218 9.123595065986 None 2584 None XZC_20201106 33337933.067421973 2145.4793839320514 2.9919187211984144 0.00019202813345446703 4651928.125977207 298.57130431602354 40 4200 276944 STPT_20210408 84048884.97854696 1492.2122726651303 0.08205860148605612 1.4581076712996987e-06 57381280.95110581 1019.6138421641032 28648 None 1173810 BQX_20200927 26978869.381143462 2513.1445177317955 0.12182445084617408 1.1341908998545075e-05 175658.3635886781 16.3538695296216 15334 64 202944 ZRX_20211021 848557407.9939907 12801.342728628551 1.005351567727649 1.5172678728290988e-05 85360725.53109358 1288.2566716680817 236379 20466 54693 POLY_20200610 32874686.746775106 3363.7558472214955 0.05040536826924313 5.157112462251742e-06 1936416.638633027 198.12013525748938 34765 4994 339744 GO_20210125 9388898.357745035 291.6018609293087 0.008833290478456567 2.740254088916177e-07 244628.00582672018 7.588824287675964 13454 686 751826 IRIS_20210420 167372157.59958777 2987.179552116065 0.1686535448988898 3.0136720887083656e-06 16184675.776835643 289.2041532995078 22392 None 536237 WTC_20190719 49290655.41661427 4625.83200089993 1.698071060197215 0.00015950678638789918 6091942.128961017 572.2411356205401 56148 20055 613904 GALA_20211111 619608730.7061794 9540.66850641812 0.08216535677982229 1.2649328325577568e-06 90834776.45890735 1398.398249384013 None None 5944 STORM_20200518 8996613.009473456 923.8500872811027 0.0011638418879018485 1.1903126559343946e-07 148306.2230685878 15.167934416814619 25744 2511 825026 FUN_20210711 163245632.3902262 4851.834480647781 0.015668252738588115 4.6567719929478036e-07 1264694.4027754017 37.58806787675701 4735 332 110414 QKC_20190512 36491594.91074757 4997.781841765569 0.022878698305250366 3.141077870056523e-06 11695889.503203826 1605.760048014143 None 9178 157816 CHR_20210408 141111952.25801352 2505.31565092018 0.3174107567067513 5.648579176157792e-06 61288632.548693985 1090.6804077518398 53053 None 135636 ONG_20190410 0.0 0.0 0.5976759773721186 0.00011561970264274792 5712187.574394787 1105.0158510552412 73272 11356 248801 EOS_20211125 4021106288.7387457 70332.84942107751 4.12231844600695 7.2069831218215e-05 709018499.8195381 12395.65654178963 None 95799 74259 FET_20200901 76219575.87571359 6522.761588897815 0.11402029454339188 9.768870802872031e-06 13349798.427109653 1143.76529723126 23936 597 239426 DASH_20200412 706344320.7751188 102630.79956250534 74.92028596214172 0.010885599828871467 715904087.3005925 104017.82788370096 315576 34609 60751 GAS_20191017 17996681.959561 2247.2380813146456 1.2911392078643011 0.00016122567755529236 2379555.119520824 297.1371205274643 323246 98320 172955 WTC_20190507 58261308.50067553 10184.400090624244 2.0441613042140565 0.0003573451748197778 4486622.618952176 784.3182144259719 55653 20252 966813 GTC_20210723 82971251.4875688 2569.054208087745 5.869770721225478 0.0001813139016822452 21343537.784038547 659.289824955634 53425 1038 25375 GAS_20201111 19491712.783409882 1275.0249394134753 1.3983534085809084 9.153805422921428e-05 3017433.1758311577 197.52514635235815 324210 100979 108774 POLY_20200530 22931053.298087977 2432.6026595291214 0.035779932551322176 3.7963854109172126e-06 2476855.7341762525 262.80370877406517 34724 4985 346394 FTM_20200418 6799327.135633769 960.4813342480086 0.003156956915857386 4.4843591622387697e-07 1700188.5128239663 241.50649306357795 21472 2333 315256 PIVX_20210212 39987580.235593766 838.9329172041924 0.615857008774407 1.287822741733574e-05 1248837.6820274654 26.11452893666649 65350 8937 328598 LINK_20210204 10078242179.231892 268924.62252735114 25.07576641456784 0.0006685173889228121 2060105213.8195608 54922.196023042656 140837 33358 38996 BNT_20190201 30267330.20587439 8821.382574034862 0.47476364187858244 0.00013836593016999934 1612315.477152531 469.8959883300202 856 5097 111486 TFUEL_20210204 0.0 0.0 0.03238055269801853 8.632670727215379e-07 4871116.96565012 129.86420963958162 82393 5257 46280 FET_20211230 342510963.15025485 7384.981976874378 0.5009180806677852 1.0754918691389835e-05 19054954.755964015 409.11777190254793 90264 7108 85496 BCPT_20190614 6939292.515861218 843.8528171684671 0.059729809626052496 7.25995516740848e-06 577534.1970347821 70.1973169572762 10841 2582 1057836 NEAR_20201208 216790353.1300778 11290.118728955185 1.011543349433404 5.271613268653945e-05 14561327.669916851 758.8571285348081 33418 None None MITH_20190605 21587796.5507516 2817.7041911646916 0.04045825929146826 5.277321600234108e-06 6398146.256541471 834.5656988812566 73 2064 476862 STEEM_20201129 64767024.125717066 3658.795484520021 0.17466788521118806 9.860274541142894e-06 2040169.0267552445 115.17072351234076 11691 3842 210880 MTL_20190615 26629470.301042534 3061.627804063384 0.5712460379833252 6.579246826738716e-05 3509661.010180466 404.2203276485999 33173 None 939567 ARPA_20200605 0.0 0.0 0.01128801817352268 1.154768245597401e-06 2489538.3230903423 254.68064965077673 16735 None 1048081 ENJ_20210729 1244810718.3500328 31130.38489685677 1.3334719842022817 3.331556112846161e-05 159784014.61796322 3992.0554532987003 248010 34247 35760 RLC_20190811 18082814.410482787 1595.1106862546303 0.2578707866544868 2.2777125711316854e-05 90636.96550912102 8.005751967009866 None 3310 861371 GTO_20200317 7019856.77243298 1390.8292933965547 0.010587943989513288 2.102551899553866e-06 20078133.96277386 3987.112015773682 16892 None 1148049 ONT_20190510 623363941.4913939 100962.77525152024 1.0165232111819433 0.00016465725176519132 42934935.62285261 6954.6355917975925 79164 15238 249396 VIBE_20191118 3310705.507678864 389.4060201005002 0.01770774977918817 2.080916424400839e-06 160688.49972064176 18.883220197408 20035 None 1200564 BAR_20210704 41902460.60413001 1209.3665208005627 14.24536533105438 0.0004108545752717967 1667341.2979862753 48.08825782262855 None None 41859 CRV_20210602 741797047.7114239 20216.833821162007 2.054514708319975 5.602033568178134e-05 250115033.12628734 6819.872380593485 125764 None 22444 ICX_20190522 191303937.49936908 24039.405076568593 0.4029737596640833 5.064354717881393e-05 32943001.674181473 4140.097014974086 113547 24372 274094 FIRO_20210509 226786828.87156683 3860.694355009886 19.154069343091976 0.00032606835130721416 88832545.80528344 1512.236446173143 71802 816 205824 LTO_20220105 114574411.9575452 2473.861702639868 0.3790243793359221 8.23649260453582e-06 16713554.73273886 363.1984575580609 22530 6141 178243 GXS_20210725 31009970.16311495 907.6366843839337 0.4434200382514987 1.2960074673896237e-05 4858602.157218835 142.00496444997233 None 27036 558664 POLY_20210204 81222122.26709495 2167.3053874970083 0.10259944759966595 2.735306145581337e-06 20751170.406643823 553.2271885397872 36323 5042 279172 EOS_20201111 2364408714.1295786 154581.17928874242 2.4955938748470645 0.00016336485901777525 1124254524.0657327 73595.18056011808 191505 73160 97683 CHZ_20210314 3312169986.717394 53928.790560959955 0.6036070570517714 9.838393420628245e-06 6802382458.528963 110874.30811606336 161966 None 88491 GXS_20190510 57468718.94458585 9307.984154692453 0.9538289820549369 0.0001545019898331129 4759922.438039936 771.0160856551694 None None 893298 WRX_20200520 25178137.56531274 2581.484527923787 0.13472101510236312 1.3800063321899612e-05 6831198.350561713 699.7495508074911 26102 None 27588 XVG_20210427 793589835.4076068 14731.677494634798 0.04837818908015011 8.977888681865188e-07 87184315.05094641 1617.9420731009138 306513 53472 130279 SKY_20200713 9995755.078687452 1077.149791383119 0.5549172743283083 5.9749559506180177e-05 400918.7825556909 43.1680932702126 16092 3819 1118226 NPXS_20190703 204082642.3843377 18909.14521110869 0.0008578618695571075 7.932033048136864e-08 8681897.680729838 802.7527713715168 62861 4608 223593 HOT_20191020 165226254.66619587 20794.26906183971 0.0009307769525800897 1.1708494905167358e-07 19706520.059892368 2478.9364313355663 24457 6697 551921 OMG_20190314 199398745.87766835 51558.90610900559 1.4210930648332962 0.0003676051459475438 77262865.20357399 19986.18355288152 289090 37011 None LRC_20190411 67676488.99968687 12751.517401594872 0.08578074582602263 1.6161849019402173e-05 25347521.133660577 4775.696522960889 29434 2464 750583 COS_20200113 10980670.83519653 1346.2526716133848 0.00834111024920938 1.0229984108002472e-06 4062664.335474284 498.26690148340566 9668 None 212925 WAN_20200610 22861992.648584448 2338.772161646839 0.21543538891718483 2.206137424265898e-05 1225283.6576344324 125.47354202274708 104246 16139 818787 SAND_20200903 31112450.574001618 2727.1747860193695 0.05894967190483147 5.174372778255345e-06 14011765.693594417 1229.8982613045696 34628 None 106488 XZC_20190507 47869744.216337755 8368.234972602726 6.442450517614308 0.0011266320877187969 1410272.5023779513 246.62327623043208 60369 3969 353652 MDX_20210724 665735857.470431 19913.341800998944 1.1642980727638879 3.482183985971751e-05 42485442.606915265 1270.6550954905167 5726 None 11841 ALPHA_20210725 208089113.05131212 6090.909157938535 0.5931897430277099 1.7361951371829012e-05 48748802.58128902 1426.8189054167372 70836 None 56625 ZEC_20200704 486485781.39804554 53649.93572434466 51.09004170095422 0.005636506995336809 272547991.65959525 30068.847282338676 71722 15869 226446 REEF_20220105 313771094.328072 6774.447840284679 0.017767646700266915 3.8623205542870463e-07 30976467.16928821 673.3646152776238 None 14526 108982 DENT_20190312 30925539.56966501 8008.290107825921 0.0008564211762421744 2.2148859684004153e-07 1142725.301496095 295.5328880499482 42635 8836 259704 RIF_20210408 240519091.43902287 4270.189222942226 0.3348956069409736 5.956461012920674e-06 10563583.583116371 187.884141999664 42359 3182 669060 AST_20190702 9605177.540786155 905.1801297905032 0.05560170643766681 5.244987252860926e-06 1822874.066691444 171.95427723222556 31998 3601 257533 QLC_20200404 2213894.6397864777 328.8337949409175 0.009219346946798001 1.3700517457430508e-06 320556.80860743095 47.6367163289114 24492 5662 940522 XMR_20210418 6538906007.7981825 108470.77882303698 363.62149085484447 0.0060492494886695185 959543389.8719177 15963.075633656767 389778 211073 39530 HBAR_20210624 1605735100.1927195 47630.932770877465 0.1826784835363888 5.4204865282719165e-06 85464200.42608331 2535.9174112414644 114526 22209 37891 XVG_20210117 215291396.81392083 5949.00531270228 0.013111409519474773 3.622989401466281e-07 15752506.823086778 435.27864171887194 288606 51371 179972 BQX_20210111 118712737.30773082 3079.4682388373208 0.5317967437549117 1.3866147417462705e-05 11490582.957880259 299.607169614379 19783 138 152603 COMP_20210207 4552482.182413492 115.70848862122901 8.275847954941028e-05 2.102944461239504e-09 54.90886841340134 0.0013952685130464546 None None 2426495 STRAX_20210909 242647466.61633837 5235.441525768594 2.4371365411330137 5.264143330184786e-05 38971745.55671564 841.778254831256 157471 10835 257847 NXS_20210916 49417852.76791351 1024.3827568998604 0.724974363378332 1.502799485293324e-05 235881.8160012627 4.8895945785570225 26513 4049 581951 LTO_20200314 7046041.214774098 1281.7267366421852 0.03352000555109617 6.02546265802893e-06 2862717.02963587 514.5940246424079 14536 414 867701 RVN_20201031 81715792.03484562 6016.718211862085 0.011099357544599635 8.195338612670656e-07 4973694.209222265 367.23844633951705 33706 9631 226460 SUN_20210217 0.0 0.0 0.00034553527444310106 7.1e-09 2977.0047628334933 0.061170987101631984 42 None None VIB_20220112 6233054.830982959 145.39849602424854 0.03406806929446394 7.962465378370599e-07 734386.5971814558 17.164247858762458 33390 1330 3406785 AST_20191011 4677040.11321267 546.3336653102929 0.027150674913487893 3.1715203167126593e-06 1704223.032292742 199.07342960528044 31955 3548 271152 HARD_20210804 62498145.61807468 1626.6125387834675 0.8537785632183696 2.2226254098361035e-05 61003145.65402656 1588.0832273355334 35263 None None AION_20200913 50025324.54782771 4797.451416035655 0.1092906034743227 1.0466546879866241e-05 2813120.0426975926 269.4069926377826 68399 72547 307005 ZRX_20210204 570503784.8569907 15221.817635327394 0.7661817755001333 2.042632841323749e-05 133934841.28951201 3570.689282407679 170912 16715 76527 HBAR_20210117 409129705.84425545 11273.994063390464 0.059750932306747745 1.6507667273014754e-06 88581958.7440586 2447.2948703659004 None 6993 166052 STMX_20210722 143147850.20308796 4448.335415841849 0.015395368802544367 4.783963532646526e-07 10530533.796834402 327.2262607637675 68848 4645 85845 OMG_20200319 65060957.254791185 12089.166114858044 0.46517125474995563 8.633854144733125e-05 87509911.07348636 16242.358071613398 281200 42867 453059 OMG_20210115 449160254.0030021 11514.551587227133 3.236234476174661 8.249596976836646e-05 388788933.866214 9910.752873634361 None 42553 211368 DOT_20210809 20106626711.23179 457076.99349683867 19.742707991682025 0.0004489008006182046 1018656074.6366373 23161.7429408186 None 28229 22959 HIVE_20200701 78635242.47553264 8597.389303030172 0.217465695252592 2.3790942804471254e-05 5947273.961621742 650.6371246238092 7896 91 120272 WAN_20190626 39859975.685509846 3370.9730821717612 0.37544887696338763 3.1716266132292615e-05 3177355.6090404554 268.40899594190785 108485 17007 440153 KEEP_20210710 122910732.45158738 3616.4471993372445 0.2809327396187661 8.266382820735863e-06 17574371.078563076 517.1219252203051 21819 2784 132559 YFII_20201130 73182188.37755331 4033.483643737345 1847.7330576892787 0.10169286942573033 99545980.05250204 5478.668203292916 None None 71930 WRX_20200927 22144815.32015209 2062.2766913858454 0.09597003719938325 8.93995884162419e-06 1096719.6128495678 102.1634302309113 39569 None 16978 NMR_20210610 262808745.32274485 7001.526086605485 45.838828559047144 0.0012217653882628631 81268989.25623204 2166.103308780428 None 3464 477400 GRS_20211202 76551116.70238355 1338.6762238196611 0.9699227947857362 1.696138005887448e-05 923318.8215059242 16.146400034379703 42619 107173 None STORJ_20220105 262087457.7481958 5666.375004145334 1.8097676544249404 3.934062247007814e-05 42611948.78122289 926.2960279003723 113654 14797 43739 XVG_20201129 118304687.63564613 6683.05992093989 0.007231234442873601 4.082144625034657e-07 6584053.43704803 371.68008534800003 287833 51305 388389 HBAR_20210620 1692101752.3085818 47465.85438013788 0.1964401560280279 5.517421644284369e-06 45617651.79214525 1281.2646072399714 None 21972 37891 WTC_20190316 34281727.29109431 8735.845051274804 1.285468934765339 0.0003275697673277541 6055238.768438916 1543.0269070279949 54605 20343 924295 OAX_20200107 2733009.1566324537 352.5170961047108 0.05235084810519326 6.749183483739271e-06 413688.6710449896 53.333629675235706 12118 None None AION_20210125 38526397.44236458 1196.5588252245036 0.07939478985845426 2.46094582966538e-06 8431419.177226612 261.34291556597753 68007 72529 431137 LSK_20200403 136289835.92153168 20114.709644589908 0.9856684327719402 0.00014471080883712785 4378486.668339079 642.8270665786173 177335 31349 155237 INJ_20220112 310421434.67374355 7245.338290125716 7.173526330404956 0.00016766126237732285 21924285.97667448 512.4193171203112 99050 4488 125425 DNT_20210620 94727066.57426378 2657.183890670968 0.12617811815308974 3.5425096943893745e-06 4313407.10234393 121.10092224835724 69237 10162 205349 QKC_20190625 76029862.56201924 6884.205603709562 0.0189826799131929 1.7188354692824012e-06 6120722.588628086 554.2165348139398 50884 9209 162641 WAN_20190227 32049598.94937772 8432.423923212105 0.3019203604514283 7.943689012760262e-05 3217908.592009585 846.6492649980028 108362 17235 506668 AST_20190522 7676721.654973483 964.6629543345505 0.045469271811323465 5.713976580643013e-06 5987833.486156592 752.4717011229591 31672 3587 410300 MTH_20210212 6951125.075781909 145.83550976929234 0.02004284608798309 4.1991413559809936e-07 856592.0393501077 17.94630883183665 19407 1896 1161820 GRS_20200229 13420979.397460248 1535.5553217403444 0.17961684390706226 2.0560614479904825e-05 7266224.457209017 831.7596308864671 37779 106869 3972954 HOT_20200607 113084346.07112733 11692.175735280955 0.0006366665168145804 6.582711982685184e-08 11610306.937826559 1200.4291820570506 25307 7049 546031 VIB_20190819 3033201.86831822 294.34152847198004 0.016614469253841222 1.6122660103851973e-06 223798.57318848406 21.71738544347876 32425 1119 3938160 COS_20191102 20299238.19833875 2194.4518394943784 0.01537344394257289 1.6626622874690827e-06 4868807.260735375 526.5692090607482 9392 None 197006 DOGE_20190905 303618666.0244289 28743.25954071285 0.0025079002771010795 2.3742027955930107e-07 49415285.76297239 4678.093091448227 138216 140102 101956 CFX_20210725 182414345.88327223 5339.120005942184 0.2124199602437736 6.217263493589964e-06 6279696.731402927 183.79877858070566 37317 1165 173501 WABI_20190523 18480123.770026267 2410.819200873692 0.3521464571224897 4.593916420232589e-05 3192651.6418377934 416.4964464322162 36348 8031 933235 GO_20211202 41345036.39166271 723.3585150799233 0.03737869342230213 6.536543203728627e-07 973537.5270416276 17.024592149499476 24714 1165 167779 CND_20181231 16286483.992698852 4287.1028063982485 0.009893187327853934 2.6030667313944813e-06 185270.71571575606 48.74789290843696 37418 6281 432801 TRX_20190625 2538140856.731501 229885.3038478367 0.03847249914172167 3.4833353605169918e-06 1223730085.93132 110797.64442519413 435396 71048 93718 ZRX_20210430 1319672452.835812 24625.60615126341 1.669118211986744 3.1139105993433825e-05 182900983.11729637 3412.2047549966906 None 18984 55512 DGD_20190324 35628497.5849722 8895.450337177988 17.81425769961495 0.0044477273924526895 452592.6437092279 112.9998640971509 16276 3306 547619 TNT_20190130 5915585.324666124 1733.0471419637236 0.013803118930643008 4.0445192759145395e-06 267664.93804508814 78.429810454397 17022 2517 1258741 DOT_20201030 3764515251.518611 279638.1349593477 4.0535048878831885 0.0003014484261887104 200320469.3863818 14897.302926762552 71420 5463 29199 MANA_20200605 55991334.80433683 5736.62812478996 0.042198040684776776 4.316979022584117e-06 20084708.580787532 2054.722546614694 48859 6969 60458 OST_20191216 7912363.528975764 1111.8272463398357 0.011515958950884086 1.6196392857555481e-06 533363.4018796942 75.01384148319306 17884 756 526361 XRP_20190316 13026304156.228418 3319505.938424482 0.3145422923120605 8.014907944885779e-05 633393467.4073706 161396.11296294464 914466 197935 34701 IOTX_20200707 26241433.852496877 2811.2186500368143 0.00606701639174546 6.49638070929139e-07 7067755.3286919575 756.794219936108 24697 1872 576006 RCN_20200404 27848922.805936966 4141.00347394702 0.054110204288854824 8.041508350760248e-06 1935100.5237383668 287.5821155309842 None 1134 866129 POLS_20210725 68410744.49811108 2002.300331803513 0.9474354546919791 2.7730237112507458e-05 10371542.485427411 303.5619270094241 382947 None 18534 GTO_20200721 8739583.48631446 953.9168886281204 0.013204638195114977 1.441187111120553e-06 8379978.665611559 914.6117497420328 16588 None 1486058 CRV_20210617 684219820.682393 17888.34858057537 2.0576793369738127 5.379819922196965e-05 146269659.7893509 3824.2325497859483 133275 None 18193 POE_20190622 13759037.965632908 1359.2175638884426 0.005366442017044945 5.304118102942858e-07 1250258.8764034165 123.57388226003854 None 10853 945513 VIBE_20201030 2191659.9588734508 162.80482814080807 0.011844411203944033 8.799989144484824e-07 70398.65921280392 5.230377654 18644 None 2330514 VIBE_20200711 3008339.009485605 323.73840466413935 0.015968759743799923 1.7200035964606662e-06 463544.92926569586 49.92867062 18826 None 1079841 ARDR_20220115 231881592.70649347 5376.422167319518 0.2322377918322342 5.3846810241492464e-06 8783113.03712183 203.6458482093758 76490 7451 None PAXG_20201129 73766754.68961683 4167.205033879238 1800.6081143981976 0.10173285873771962 1272583.1093810704 71.89988574606748 8586 None 82114 BLZ_20190329 13522642.1359498 3356.75786814171 0.06567844125213802 1.6315122747515218e-05 2159235.507874775 536.373757966181 35136 None 1348267 REEF_20210930 247158713.8504107 5946.029202086645 0.01790098540287647 4.3065810866605016e-07 26941362.914496757 648.1495926910512 204597 13450 78922 DOCK_20210527 39405963.87284082 1005.7808330828591 0.07068178722493894 1.8030704026814235e-06 35339834.41648144 901.5081815805779 48284 15019 221112 SNT_20200422 64742327.77233607 9453.824380191723 0.016944309588481272 2.4753026533986417e-06 17945327.937717095 2621.536016465177 110306 5661 178977 DLT_20210202 5339105.381685865 159.92458703622538 0.06479537807022868 1.9400705779193087e-06 1088089.2183748374 32.57901939289957 None 2533 6584036 DCR_20210408 2326958141.0506616 41311.09513581 181.3476625345033 0.0032254537213486085 35817863.13627212 637.0573423942724 43790 10822 244352 MITH_20191102 7201359.379431403 778.5039114594276 0.013253746410534933 1.433413645425967e-06 2068192.467622299 223.67828783117278 87 2081 691078 BEAM_20210804 50134085.09388429 1304.8184170534064 0.5356509810509503 1.3944499576091767e-05 7553584.322326673 196.64101645813807 22005 2564 205785 ALGO_20210902 4069488629.3311567 83673.65364395792 1.1588836516071173 2.381827164802314e-05 290896920.90657246 5978.738136583177 125187 38815 252639 IOTX_20210120 52380171.89289954 1446.4531250134019 0.009124892073309219 2.53174656096662e-07 5175765.573414387 143.60418277373802 31229 2021 602191 ADA_20200403 988387669.942723 145759.79344731523 0.03192383119673622 4.682900803297648e-06 133807050.54801992 19628.131117366433 155217 77694 49277 WTC_20210707 17274421.630534485 505.7468788751716 0.5936040785965114 1.7378497773487507e-05 12222426.762644358 357.82674671547886 65518 19862 588715 QSP_20210708 23202955.577612028 682.6929010980422 0.032506153401136814 9.56417819045964e-07 577887.2217895461 17.00298492712951 66322 8489 236881 NEO_20210731 2961083558.354951 70972.64688944592 41.86888781819437 0.001002333107667524 829803389.1981361 19865.33326272341 407983 112490 119447 ENG_20190626 48350573.524963595 4089.0261235023663 0.625445053152816 5.283484110369311e-05 2195553.1885208418 185.47065528050882 61763 3464 334360 RLC_20200329 20855176.197711714 3345.4085769519115 0.2976574460043882 4.761264750387636e-05 1495574.5290383452 239.22889826122088 28322 3562 324809 KMD_20210724 83003687.97679195 2483.164534854638 0.6542455507887288 1.956630072352047e-05 2933006.418423251 87.71643236656413 114188 9432 217175 GTO_20200109 5996973.2149776835 745.2099744545095 0.00903259508311284 1.1256573013681888e-06 2650495.194933208 330.3092013939439 17005 None 3106980 LUNA_20210408 5995145561.380913 106434.93511456503 15.490329046608709 0.00027566283824887486 438478960.1006358 7803.085027442909 52591 None 27398 XVS_20210107 14294423.628830796 388.10190379812656 3.863357737521837 0.00010489240643192609 7356709.4897974655 199.73893546302264 14151 None 105222 PAXG_20210711 291480979.71686035 8643.891865532674 1815.5004122672333 0.05384486913042302 4963555.260359654 147.2111940101001 23048 None 39244 GVT_20190909 4984935.439629703 479.35041134181427 1.1213680024079493 0.000107949839715024 227138.2341224112 21.86573534648421 21250 5702 171342 QTUM_20190810 250957170.13289267 21162.974138659956 2.623180316061977 0.00022114693276956094 256977726.73034328 21664.479452112177 178768 15360 320250 XVG_20190704 123812772.77158853 10334.126411153726 0.007816672433422921 6.51319293259648e-07 2576621.2764444514 214.6953403849734 304135 53018 387398 ATM_20210427 17919884.420462456 332.6330710218379 9.502500289309634 0.0001763385629397895 6050857.256331844 112.28618159956652 None None 149248 NANO_20190228 115683232.59576163 30269.476527480634 0.8664646809437395 0.0002271357627490854 1311100.0588980052 343.692845730091 97077 44771 310679 QKC_20200411 9719375.500489864 1417.5102586396329 0.002607427234551429 3.801748225647484e-07 2085757.043794782 304.11292155359865 49944 9195 784929 GRS_20210110 31594379.212191362 780.8858606388518 0.40795549672937675 1.012364760897884e-05 7811153.573316622 193.83821723164687 None 106778 4269637 DUSK_20210602 44753991.76741369 1220.3890112585148 0.12411902190649104 3.3836572959226998e-06 3087068.251820085 84.1577773723666 27225 13600 341273 KSM_20210729 1680950501.6902041 42018.189334024195 187.2148460707392 0.004679349908799548 117234877.23240359 2930.2324233319164 95554 None 62098 SOL_20210602 8466375153.864945 230749.93212065467 30.985238146398338 0.000844872725959007 451120119.86649257 12300.666646670921 304473 20575 8787 CHZ_20200903 76237175.83622868 6682.452879016586 0.014292121376889039 1.252497623938724e-06 7343014.497310196 643.5089632880347 32242 None 244050 VIBE_20210111 3679743.808792119 95.43678667782584 0.01960616010361135 5.099978074503608e-07 137661.95429443495 3.5808794016 18459 None 1637707 BAT_20210806 1011175023.7833549 24677.028786775925 0.6779424041066227 1.6569168523746224e-05 106139191.90972348 2594.0819560386462 209132 76994 27723 DCR_20201030 145451469.91157845 10798.094581556074 11.922524094892157 0.0008866465500869503 5426009.825119041 403.51798443760754 40801 9936 227710 TVK_20211202 174179220.53784665 3047.2536218524783 0.401037407784552 7.013081791486571e-06 35214490.26932983 615.8081408629909 68048 None 40179 POND_20210813 65236267.055284075 1467.3742807751462 0.08308506002462629 1.8688463271545965e-06 26564225.954884034 597.5136335554826 None 599 162799 OM_20210916 86784450.27585189 1800.7893783304528 0.24412592733215546 5.064182196478987e-06 12206985.8141501 253.22341181967516 50883 None 101960 UNI_20210617 11297376211.979023 295360.3470946357 21.75109184219665 0.0005683192529264229 295392167.1372831 7718.097875992593 547122 46942 1420 SOL_20210220 2993685734.1051297 53592.659963789716 11.440869401894185 0.00020454288282261627 337882476.3629094 6040.752091713562 115115 4079 56580 IOST_20200621 89897683.50179376 9609.280400612108 0.005995479516387407 6.405335029832275e-07 49698721.06695654 5309.6163220628405 None 52172 434234 RLC_20190520 38946029.42738676 4766.18450170501 0.5573670190746993 6.812972839139341e-05 1834739.1589346882 224.2692450206157 24936 3315 988035 HNT_20201031 37950232.734302685 2794.2684119064234 0.8344803462247 6.1546400888631e-05 625318.4873386081 46.11984270082638 13888 1722 69518 OGN_20200612 16600679.73279572 1789.1624161341208 0.23816919592419217 2.5604720123466538e-05 14026876.666246181 1507.9794423118153 64598 2256 171471 WPR_20190929 4978068.161358007 607.6980836269206 0.00818462955378988 9.991393315268568e-07 3165389.4048722447 386.4151741042185 34347 None 840031 AION_20210527 113428616.34241958 2895.1031018668573 0.23210589981488264 5.924704616702187e-06 12079717.337938104 308.34527316030915 73561 73328 246548 GXS_20190522 67256872.52055024 8451.552141784716 1.119727435074146 0.0001407125314710623 8744831.221958183 1098.934704986877 None None 869901 VET_20200117 369088390.09956944 42399.30063827598 0.005896401350695048 6.766944154397651e-07 133260886.98497267 15293.548158598622 118221 60061 339767 SNGLS_20200607 9054667.184488075 936.1928827790831 0.01318056649733086 1.3627836666307271e-06 616298.730780819 63.721225050791915 8981 2130 1370799 MTH_20210506 18220322.33627326 318.271772795846 0.05059786232582584 8.828570966046875e-07 603406.6821642821 10.52854502146659 21545 2021 350782 BEAM_20210421 131319939.88440324 2324.431003888434 1.537263294578152 2.7264210034779898e-05 28971806.515848327 513.8309232523842 19215 2173 172330 WAN_20210325 198901297.36585218 3762.838304339499 1.2051348917842009 2.2821225334938206e-05 19049351.72412609 360.7310278247429 108609 15994 311428 GRS_20211007 75625711.35909714 1362.2922755334826 0.9632060113893738 1.7363168231967253e-05 21990705.665821742 396.41397323151165 41820 107007 9013944 KMD_20210401 333338793.84820646 5667.166284019178 2.6829178347470375 4.565764980135548e-05 18756829.14951498 319.2019992565883 103858 8862 223380 PIVX_20210723 32336786.08395002 999.834918619516 0.494417560322922 1.5271753717296146e-05 126306.6258109941 3.901406092834431 67673 9848 339375 GVT_20191118 5053443.66623103 594.0939006857751 1.1375119398791103 0.00013367408666619532 255105.47436209567 29.97857876773034 21034 5675 128029 BCPT_20210221 301304.8519939695 5.404322496870975 0.002594665579706077 4.6532514829945726e-08 2446.856740462219 0.0438817235072 12428 3278 1170393 RCN_20191203 25590144.888865042 3500.159001878375 0.05020704663849308 6.871988608720016e-06 4790601.986065185 655.7040192822527 None 1135 743081 OCEAN_20210202 238418334.8747639 7146.334727501219 0.5685249823253856 1.7022488700137047e-05 49501264.78031363 1482.141940216645 40669 1498 65645 OM_20210823 75097665.28018294 1522.247383746733 0.21287784842106042 4.321058041019323e-06 11936684.936254488 242.29438999635184 None None 103723 EOS_20190818 3627142102.0908337 354851.2881962694 3.5609830237945572 0.00034837880007793 1524728760.9001985 149167.56766806915 1270 67919 84065 CND_20200412 6910550.538248279 1004.092913749531 0.003649315884157796 5.302845874872197e-07 37432.44874137019 5.4393347327440305 34677 5955 426986 SFP_20211120 149745376.0225562 2574.791909984427 1.3837088116936949 2.3789550743902268e-05 9622009.507108016 165.4273511111581 None None 26450 WTC_20200313 5299114.793008089 1101.11260642927 0.17961152012984824 3.7480964758621916e-05 5053435.759362728 1054.5406412111204 54943 19435 905715 SNGLS_20190909 3850362.8378790994 370.6853997634562 0.006671793929971402 6.423126090197595e-07 187996.08592995082 18.09891877755991 10 2163 None STORM_20190512 12311303.746122047 1690.2519204780758 0.0027251021195761147 3.7449902049770467e-07 1427028.7294462544 196.11039805100393 27026 2567 6189578 REP_20190712 157106719.90085578 13806.411694210003 14.282429081895982 0.0012551283358372732 12053069.715800341 1059.2140347680177 126126 10036 252413 ONG_20201226 0.0 0.0 0.18525419470429674 7.509732489154858e-06 4032161.200843812 163.4535294589155 94131 16675 295641 VET_20191203 463469955.4847184 63416.9843880698 0.007363751840643491 1.0078987344287642e-06 211682932.6081309 28973.675986514536 116817 59808 431870 STORJ_20200105 14699180.44980825 2000.0203471806824 0.10236168308329145 1.3920927796002163e-05 720082.1684639808 97.9293381315259 82668 7884 137382 THETA_20200105 92348738.36982833 12561.42017918575 0.09289399441126651 1.2633346286707887e-05 2920523.073267491 397.1836883185388 None 4013 523233 DOGE_20190826 319341491.72572714 31632.4544701231 0.0026778432968034044 2.6511724930783624e-07 50010114.78306099 4951.202366725968 138064 139647 107008 MATIC_20190807 33082693.42046307 2893.9474869607334 0.015314422773079334 1.3347396022661437e-06 92919397.14975846 8098.457319102768 21396 1073 193229 AST_20190511 5514065.111460209 865.395624912515 0.033096421757098135 5.19426194829016e-06 663669.0055557594 104.15840984617988 31597 3590 464238 WNXM_20210108 52721810.72705553 1346.9168892507626 29.704202983792708 0.0007527213602304451 19293690.46024809 488.9130650981298 17629 None 132342 TWT_20210620 112751979.5292824 3169.1657601853185 0.32727132100486883 9.192081225022882e-06 6863273.946060567 192.76901925920205 884523 38235 2948 TVK_20211125 193566727.5487933 3383.593588803618 0.4501074744350877 7.87002540748442e-06 134171873.39920518 2345.9642698597527 65680 None 45645 THETA_20191102 93785902.70024662 10138.73745843526 0.09377861636687725 1.0142305744027232e-05 4379785.968345224 473.6807825205582 None 4023 431634 POWR_20190719 30542253.996541478 2850.0867034820935 0.07243618814109597 6.789031603402162e-06 1750480.5997073909 164.06258277157374 84526 13156 580575 SYS_20200605 18040980.26499931 1845.4163451991897 0.030715572570473873 3.1419035352348985e-06 635235.1067367406 64.97835659687628 57519 4468 931321 BADGER_20210809 219879196.86239937 4998.437762721461 23.165739433319878 0.0005267321475306909 63922672.7990679 1453.4449382144956 None None None LOOM_20191017 13279968.239307452 1658.2640296183067 0.022102061987206836 2.75984133028037e-06 3631392.2614303785 453.4448620837663 21050 None 365854 KEY_20190905 3620388.496993584 342.7774087419386 0.0013847634563266978 1.3110903144078715e-07 47087.84309267906 4.45826431388756 23793 2826 766085 OGN_20210610 181576760.10725534 4837.452879274927 0.8570155063534535 2.2882027495449526e-05 66424442.07167098 1773.5103957699177 112888 5706 40950 DOGE_20210104 1288354839.388065 38503.79161875531 0.01008668174073207 3.021848880297652e-07 2306838510.677289 69110.1151964346 177950 178684 103049 KMD_20190729 130054461.16079079 13622.889927951133 1.1232291699602956 0.00011778547409941666 1379816.7101697552 144.69208040901123 98248 8454 276726 ALGO_20190714 114073830.68674143 10022.656577650057 0.9375630228613346 8.225403484113786e-05 128481023.99995452 11271.863722040525 10272 505 350942 SC_20200520 91690526.42894277 9396.513458137408 0.002025712941740036 2.076939409657218e-07 3878913.5813641674 397.7004005745122 106569 30048 169173 CHR_20211021 205551740.5122565 3101.1179175552143 0.3612265236582664 5.469927073888964e-06 20913704.358639196 316.6889200939558 95297 None 73571 WBTC_20210708 6702260660.218071 197246.62301880907 33971.53663613733 0.9998522403492967 328861520.2080277 9679.071372794371 None None 181430 UNFI_20211120 49717922.26917348 854.8731683081807 9.94713762585537 0.00017098954139910418 19079524.98839765 327.9736694703994 23230 None 263072 KMD_20210508 397355330.09379816 6934.606145371262 3.1719212980632054 5.5347114866106045e-05 45987061.4683747 802.4320070611336 109801 9118 204449 ANKR_20210711 500716889.7926227 14849.017476160701 0.07149226136004451 2.1210832897286353e-06 11173870.69012468 331.5143478683953 None None 5363 SAND_20210128 53652448.082055904 1771.5934901630942 0.08161836084877244 2.6934844412896543e-06 35158671.81392082 1160.2699995736207 66318 None 55627 ONE_20210202 80484120.39102906 2412.422675490595 0.00848716670334086 2.540971290507607e-07 7749542.054924544 232.01339816258528 80729 1789 152986 IRIS_20210624 67443806.38013619 2000.586153418949 0.06989760380726359 2.072194697959973e-06 13378103.879770959 396.609245788456 25746 None 650450 SNGLS_20190603 11156969.049708001 1275.8879634106788 0.018892999237646375 2.1604317986901134e-06 692479.6718916235 79.18568588729445 2 2180 None CHZ_20201014 58566389.17496075 5126.445905594429 0.010942551835895554 9.580239311245582e-07 6518216.227630254 570.6719262530372 44644 None 303879 RVN_20190821 146043986.57142568 13587.293965664136 0.0344422244323286 3.204353970196199e-06 17166515.682531156 1597.0975623201066 27375 6904 259754 LSK_20210506 884233311.9564363 15440.855818021404 6.185832865023585 0.00010790278807624944 83208773.74367651 1451.4551031786216 195378 32171 151176 LRC_20210325 592672489.9081981 11212.247970013357 0.4714989303715914 8.942656499959438e-06 96472292.35512938 1829.7360115232302 66303 9627 104110 ADX_20191220 7317706.780539355 1024.5565980105027 0.07926831580756853 1.1093238404245127e-05 163527.68589107424 22.88495203667483 52986 3808 261855 QTUM_20210710 705609653.3475901 20761.409551271932 6.82069845293721 0.00020071131376749268 295821391.92074007 8705.076264934634 246577 16740 119158 MTL_20210124 25540132.71463795 797.7193963116754 0.39490928104877854 1.2322573444119655e-05 5134012.473166821 160.199440224881 43387 3355 402004 PERL_20210219 0.0 0.0 0.07701784529296374 1.4896939701268947e-06 6063770.592117392 117.2866165360683 14472 536 428459 CELR_20210217 74797827.34965199 1521.1242008376864 0.01884572885257616 3.831405220066143e-07 19398031.63578495 394.369038468868 30191 None 384776 RCN_20190804 9096082.539987499 843.0119558574007 0.017927332778470712 1.6611585894164756e-06 1462612.6306052837 135.5266600080513 None 1121 1860009 RVN_20210930 896787171.5628861 21587.796041113324 0.09194442156426971 2.211851486797076e-06 36705534.96380492 883.0029130872679 None 54346 54807 KNC_20210131 268961054.2172536 7862.302108874122 1.3393589219694533 3.919949325534398e-05 66224065.50267633 1938.2032451737568 130647 9438 112960 FET_20200329 4612008.208303125 740.1249490125491 0.013597656449132791 2.175052000485908e-06 2656963.152134359 425.00213480799823 16579 363 584622 RVN_20200711 129649609.54765883 13964.539619376945 0.01973770432198532 2.1247074261483474e-06 9431467.684303772 1015.2705249514422 32410 8357 199638 IOTX_20200306 18571572.529333066 2050.71675676812 0.004290306375065107 4.7360705341075303e-07 5055593.881842351 558.0871649485524 22327 1807 497303 BAND_20210104 154914951.39102295 4634.650037808752 6.736729255573837 0.0002046513039873772 153709048.1971721 4669.440607574244 None 2941 375522 BLZ_20210806 54853967.723684356 1338.8275612638627 0.18386422885568018 4.493711228187575e-06 10043972.689054402 245.47848773695137 65361 None 416953 NXS_20190801 16603784.952116165 1653.9435890848295 0.2788546030088213 2.7693896378354078e-05 156111.87348016305 15.503943635650124 21559 3534 855550 TRX_20210324 4192817484.5414968 76912.03470703297 0.05884121781026774 1.0794187468106118e-06 2249943198.484188 41274.313450376416 659400 88980 25562 POLY_20190826 20252455.209260024 2005.745579134402 0.040509222758148083 4.010575869789994e-06 4294628.776764274 425.1855100905896 35249 5063 281069 AE_20200905 53016633.35789723 5056.305027923744 0.14506283921065202 1.383494041038454e-05 16822192.91975469 1604.3670307516575 25690 6356 378824 XVG_20211221 275705852.5749371 5843.865513582378 0.016709491918033177 3.544128293793959e-07 7831201.774502028 166.10190135984115 336317 55618 176659 AVA_20210617 171996899.17220986 4497.342317677073 3.3121080526955415 8.65953434346376e-05 80358258.21177949 2100.9734154038456 None 10282 44540 SKY_20200719 9417552.866329527 1026.9541865318743 0.5228965004367448 5.703510695550167e-05 278662.88160596555 30.39524503156854 16093 3819 1079623 RUNE_20210112 289100114.98911315 8136.712513244679 1.312684028026168 3.692840773847744e-05 39497481.00356388 1111.1425537306056 27033 2054 287788 BCPT_20190625 6866980.652421119 621.9583635842474 0.059128421521237456 5.353431498278749e-06 1013261.1365324307 91.73970731395427 10960 2803 1175613 IRIS_20210221 124616150.89139031 2231.6851040579795 0.13155787925358084 2.339417652188517e-06 24484930.228365168 435.4013481657928 15002 None 757978 SC_20210112 197922983.77914494 5590.615016313688 0.004373449986713266 1.230271768722872e-07 35203736.50868265 990.2974382185491 107771 30175 159206 SCRT_20210207 86566988.97076373 2207.0593475946603 1.2452204685860206 3.1666072180927886e-05 1327024.1815846108 33.74634820098298 65777 None 226191 FTT_20210723 3076158396.0115433 95026.49964197718 28.87204766225808 0.0008918412421578926 76398527.39716862 2359.9073529513494 155703 None 2587 ADA_20191118 1400571762.5136375 164776.51401622593 0.04503353305919832 5.292090737684923e-06 102350221.22118464 12027.62965571941 154880 75710 124115 REEF_20210704 191084745.49070838 5512.024062887892 0.015131515301945519 4.3637426531205223e-07 10742779.317936894 309.80852470680736 183553 12413 42955 VIDT_20210703 16356375.249585167 483.91838716008317 0.3538734581022539 1.045165954479285e-05 506174.9809819558 14.949888018407737 29403 1618 805010 TOMO_20200520 27073681.24526049 2776.227118547741 0.3825413885016332 3.918611178076676e-05 10031419.885015137 1027.5812049349827 23039 1549 201638 FTT_20210508 5153203329.831271 89927.996870981 58.594679762372515 0.0010224194904010526 99862582.46313795 1742.503774850573 113924 None 2794 MITH_20200914 4251949.100305391 411.9143966745502 0.006897860224839844 6.679305171386701e-07 1025699.7471270424 99.32009930564739 115 2105 363135 LSK_20210325 614253123.3252412 11620.51293479909 4.284483721317115 8.132189580717086e-05 82178267.84794983 1559.7894566140012 188029 31779 156413 XVS_20210115 15922248.601930374 407.6785432340143 4.2865526279449035 0.00010945721804135947 53319547.092893 1361.5158376840855 15410 None 105222 ICP_20220105 6490566500.757759 140141.52031941828 33.85984482817184 0.0007359091447803156 1082874896.0711536 23535.179877988292 460806 25829 35734 BNT_20200321 11660922.415717306 1886.1790587575615 0.16699232943831294 2.6956649459254114e-05 5564143.831523137 898.1890085115972 None 5025 126378 NCASH_20190623 6207653.00015565 578.5921064875392 0.0021395615332077582 1.9946479857637088e-07 892049.5306111958 83.16305802934369 60242 59146 1027921 ATM_20211202 28841703.087913513 645.7254437455765 8.766473336734187 0.00015337637998527286 3365945.1320983227 58.88987050551108 None None 60180 IOST_20190623 164253102.22345236 15299.808682933683 0.01209333866938321 1.1274250935834745e-06 66504022.84701074 6199.9672904052295 197858 50130 103864 XMR_20210212 3388525582.1215878 71062.75444773624 189.9962477848017 0.003973024342586373 782938778.6764174 16372.085568550256 349025 196808 56021 GRT_20210106 409181587.03700656 12024.705382908653 0.3343369927062414 9.79792414945757e-06 234111131.97481382 6860.751767448844 None 2479 38944 SUN_20210310 0.0 0.0 0.00042031222660801767 7.8e-09 213.54881319303846 0.003962960479041954 42 None None NKN_20210723 122050115.77271669 3773.7450000578333 0.18797578262517944 5.806265973224668e-06 7174395.8987304745 221.60541216260623 28627 3289 146372 STMX_20211011 316463095.9761589 5783.538759803715 0.03433577113929875 6.273244167891155e-07 15988416.291822432 292.112965366589 72529 5364 100852 RLC_20201018 61016870.62297471 5372.092925370781 0.870151803754249 7.657315230083774e-05 1446591.72130098 127.29972829384032 None 3840 347368 ALGO_20210916 10517347163.595882 218236.41217080315 2.0153203548723777 4.1806085788914546e-05 654929559.6113293 13585.949890602444 142098 43270 169907 NEBL_20200323 5549329.484660914 951.1617993924104 0.3422635714837082 5.869834203640719e-05 177836.32492969226 30.49900222208605 39583 6010 841626 BTG_20200403 131174672.47194432 19330.022425532115 7.5081215618239545 0.0011013649419596106 29369952.178814005 4308.272769749606 74663 None 202519 THETA_20201106 630244081.1901922 40559.67357976699 0.6298146643454523 4.054532852909407e-05 16847314.56234909 1084.5728790283715 74718 4502 75769 ETH_20190318 14586546977.699165 3663184.020837535 138.55063028189403 0.0347948322314772 3163231174.800602 794396.2276651498 440441 432785 32450 MITH_20190123 25974381.843027174 7272.256975269963 0.05309355140983823 1.4865029393787156e-05 4547048.926713624 1273.073926225654 42 1968 482840 XVS_20210603 336086754.6287001 8923.997102609386 33.19652265663052 0.0008827015543453012 100242817.06699121 2665.4746749298856 112583 None 9976 ZEC_20190716 564423444.8243959 51613.435350666114 80.87851935614206 0.007396699839932364 593150487.2344282 54246.246703198514 80 15331 211514 ZRX_20200511 258842495.0927456 29618.495004037708 0.39615253863027167 4.524859153557226e-05 280100983.94015473 31993.16872950479 152880 16006 152410 XRP_20191024 11837865247.793247 1585817.3171028127 0.27381810772019327 3.667620503849957e-05 2334353956.997631 312671.959762302 940372 206637 26005 OGN_20210106 26831671.14279539 789.6996598890701 0.13336769458684705 3.913820499353073e-06 12401853.216276484 363.9459128254114 69442 2485 203625 VET_20190914 207606406.21086347 20057.240942903434 0.003737564898917394 3.6094507704174787e-07 30957308.49189441 2989.6171439989066 113623 57429 147845 PERP_20211111 940593636.8536823 14504.304256167012 16.835864180575058 0.00025925070579598805 23845034.37006338 367.18293304486446 None None 106590 XRP_20190201 12697870804.593693 3700623.119456821 0.3084742831518904 8.990066772271611e-05 791829713.574467 230768.08622643 911786 197658 28357 KEY_20190419 8022575.551324037 1521.487145799244 0.003070830586039654 5.823176564003827e-07 485108.2187024219 91.99044789366665 23962 2835 663823 SC_20200407 63411142.069671966 8718.31341700745 0.0014467766902113138 1.9884653805538904e-07 2426522.2670228938 333.50381961250895 107262 30114 166038 XMR_20210110 2645268235.0889177 65380.38138065233 147.78114151909213 0.003668544012059052 554174062.666398 13756.910511958682 None 188932 59059 LEND_20190904 4063516.4315548213 382.4373569518511 0.0036008356800451384 3.393089213940541e-07 2451176.3469932196 230.97582793182644 41686 5821 754376 OAX_20201208 4143347.501556744 216.04633930604857 0.07452469474293781 3.880068112149993e-06 83417.62963679321 4.3430715934 None None 2487242 ALPHA_20201031 5103742.300049293 375.78757398891656 0.029273763960785272 2.1590620083513718e-06 827142.1491900185 61.00517829598452 16175 None 226346 MTL_20210324 127730509.04688546 2344.008020976079 1.9646301354074647 3.6040358742164495e-05 55445204.0254572 1017.1202241054599 None 3533 291535 TNT_20190804 16689805.40640654 1547.1135748416834 0.03891163918922704 3.6055783906173024e-06 687827.5163687457 63.73455555112487 17581 2544 649538 STORJ_20190904 22879509.00342909 2152.8914163051063 0.15861602683640919 1.4926004708756087e-05 3914950.25698959 368.4026585197457 83552 7793 165970 REQ_20190712 11866876.277335264 1047.752684558075 0.0162075628414783 1.4294841354711229e-06 139193.64739211407 12.276682969025584 41622 29841 539616 XMR_20190110 865591524.6978264 217604.5561571011 51.817757235891044 0.013029438291572068 133097581.9282805 33467.03568426195 312608 151643 84002 JST_20210616 88918505.2595437 2201.762569394127 0.061972768662694605 1.5354663417407728e-06 34345255.65508596 850.9541399368139 47254 None 93769 YOYO_20210508 6357113.595477139 110.94372131767466 0.03679279116444956 6.420004304857326e-07 1512660.1698977598 26.39453136111403 9886 None 873930 NULS_20190520 51074161.0751945 6241.202671690092 0.7129312571969999 8.714511489252034e-05 6798362.603202371 830.9974968223028 20874 5323 698282 DLT_20200531 3227824.5728230197 334.381001833063 0.03935901311089868 4.07733008354682e-06 216903.48369293637 22.469747826132 None 2567 4246421 KMD_20200310 63580969.69758862 8030.699861037637 0.5365771755867523 6.770537653050961e-05 2842473.436011904 358.6636611084149 100000 8409 149248 COTI_20200313 3528159.8274085443 733.8189056163905 0.011664124631352961 2.402535390968713e-06 7446197.195666397 1533.741524214613 22564 895 296885 ZRX_20210304 1102094774.030358 21680.702852066297 1.470205280908906 2.9016326504925745e-05 281781536.48766345 5561.30845940846 187146 18302 57821 REN_20190811 94327652.31538539 8329.399413054409 0.11464537874926901 1.0125742839656065e-05 7233859.05362315 638.911025585258 9300 874 478249 BEL_20210107 20431855.44237988 557.4379310915318 0.97826840024004 2.6504604378709598e-05 9206032.82903557 249.4226103706601 9442 None 319671 NU_20210930 146377252.8233015 3523.647950383647 0.2620649392925882 6.304702705656303e-06 40787171.741529614 981.2491237058925 None 7499 344589 WING_20210727 29373646.341838084 784.5862300523283 16.327040388132282 0.00043625545494146913 8788499.320200697 234.8270524260973 None None 411490 DOCK_20190523 7432992.026072194 969.3031828357013 0.014451641107194099 1.885733576210252e-06 6132312.529859053 800.1795471943652 168 15272 233199 PPT_20190701 22587290.51536132 2081.829390186357 0.6172380308890824 5.722538600013576e-05 1404094.4726814565 130.17643787132792 24025 None 660913 ATOM_20210131 1910777024.0121465 55856.065366787196 8.009867845568664 0.00023441640230138192 445508627.735282 13038.233803783325 52862 10987 88305 STX_20201111 198419754.6762965 12972.359427010608 0.21656047154755542 1.4177176055663898e-05 3458039.5118542416 226.3812717836365 44410 None 111210 ATM_20211221 28841703.087913513 645.7254437455765 7.667620554936309 0.00016268413067878633 12854104.760291884 272.72591850360607 None None 65314 EVX_20211225 4301215.240416171 84.59289214824459 0.1972600565030453 3.880007513966713e-06 5181043.434585461 101.9085557043281 18981 2815 1001283 OCEAN_20210217 431779911.7716465 8779.651102166097 1.0302934633383063 2.0936845938574446e-05 125483049.79782069 2549.971804156507 46235 1759 79767 GRS_20190426 26756559.326722395 5151.069456927652 0.3702733309745783 7.116363332963641e-05 2026291.3512530944 389.4373228556633 38951 107052 6885878 BNT_20200903 104278528.73227265 9140.374717493733 1.5869637829852723 0.00013907441135225775 79076195.38949177 6929.884250466065 711 5211 75903 PIVX_20191024 12826278.382453 1718.6980192100984 0.20901031136978593 2.799561029321066e-05 1148268.403051873 153.80329569948006 63068 8585 244902 EOS_20200610 2582928209.597611 264241.8424606923 2.7516481169652147 0.0002816503938308121 2010913513.3645954 205831.0361368056 1558 71535 90009 TRB_20210125 47347435.60936256 1470.4488685645258 28.45715440038453 0.0008820668909209651 48234465.85625504 1495.0906452011739 None None 436665 TRU_20210430 87417472.50313528 1630.7574354122467 0.35797755815313437 6.679399054652845e-06 7318137.494750202 136.54699729345603 23191 None 84906 XTZ_20200807 2341308845.936802 199000.89678804515 3.244962592203114 0.000275605374814027 224673970.21506184 19082.30126315175 69468 28100 66649 UNI_20201018 573608919.3394606 50480.18324726239 3.07277417246438 0.00027034205273608283 158485458.09938937 13943.518679423563 113934 None 3366 SNGLS_20201014 5894940.024001405 515.9954690224532 0.006624634774676517 5.797797918548606e-07 118992.56576786298 10.414081282924188 9002 2119 1085755 AMB_20191020 4643306.963381016 584.3123992415441 0.032113399627895396 4.041140879196776e-06 332046.92582670297 41.784688675698746 19193 5594 589761 BCD_20200907 115060949.66182251 11174.72524781793 0.6206416064067022 6.033665337718971e-05 3315855.175382193 322.35609456529573 28131 None 3034323 PAXG_20220115 329769848.33649534 7651.035450447926 1825.8844961775167 0.04233508044185057 3914726.747584333 90.76711704042758 28631 None 33151 ALGO_20210112 335753287.4160648 9478.394989945427 0.416298271229266 1.171129683347617e-05 319101490.5388361 8976.958430958477 36115 1818 343568 GVT_20190318 18167352.555318065 4562.32085554577 4.060396998373434 0.0010285106085402835 528630.0891269775 133.90357023672686 20947 5807 155921 HBAR_20200610 195162115.59916782 19969.093928087896 0.04345550562431955 4.450003211174435e-06 5171174.251436354 529.5472160276965 39726 6526 130784 CHZ_20210823 2022194584.3777025 40990.36107195836 0.37747140541533364 7.66004560335151e-06 599517697.9002887 12166.041824756388 375176 None 58032 ADX_20190528 15724780.45764495 1785.3429890695759 0.17053346005299352 1.937779744413686e-05 559660.5184007746 63.59448849323026 54441 3896 959810 COTI_20210111 33432942.432500158 867.2609641662683 0.05882615438267982 1.529467867599627e-06 11580155.558676759 301.08165346970395 35408 1283 237911 ETC_20210620 6555331766.350662 183884.86232655603 51.165789085039 0.0014365034643718394 2441161500.772572 68536.75113116426 470060 57344 101857 ADX_20201124 33202143.269232232 1812.9691992119037 0.3168479146260735 1.7258245495314567e-05 3101480.949361665 168.93316052369633 52976 3743 13684 SOL_20210204 1486424501.2461636 39676.14526783742 5.721470793794539 0.00015253200798435353 94154842.87095357 2510.1285599734856 110721 3384 80032 LUN_20200605 2572778.7338303286 263.19617306643613 0.9516980870556184 9.735905040491749e-05 637197.535741855 65.18553293735366 None 2124 3112082 MTL_20190902 18933608.455953732 1946.6098008412218 0.3791737086522124 3.8983760501903256e-05 5442671.1544963345 559.5741053136027 34215 None 253517 STEEM_20190904 54041753.983838595 5085.409655760318 0.16643771261266962 1.5683526204447784e-05 446253.719775739 42.05075759616234 10990 3767 235183 KEY_20190626 8583055.743809018 727.1402873870975 0.003289404541741549 2.7798855933337626e-07 660819.5908390771 55.84606080083041 23912 2839 824192 DOCK_20210206 17190631.591875464 453.5666320911699 0.030733162894655226 8.053432969226379e-07 5535430.552394192 145.05249284728552 43625 14833 229507 NEBL_20200425 6901300.189913752 920.3803517438959 0.4234289005578434 5.6492860133602933e-05 555582.8267943138 74.1245174464309 39373 5980 1629881 FUN_20200418 10631617.441631258 1510.1882082812178 0.0017677841898084334 2.511082488522122e-07 201852.4055746635 28.672506736217034 None 16929 234333 BAT_20210916 1181428538.1270676 24514.80600445405 0.791787997283725 1.6427787806103888e-05 86321027.99413714 1790.9636619362614 212719 79078 24734 ZIL_20200306 64501763.381591275 7124.369297598477 0.006230149924970567 6.877464428697723e-07 10627658.609968483 1173.1875625889795 68514 10561 224303 DOGE_20211216 24072429978.997837 492587.52571023314 0.18163042337344784 3.7166534878816354e-06 2223447704.1074224 45497.799934112416 2679092 2240860 36966 REN_20201208 295271473.05058295 15373.071046623645 0.3352835408961988 1.746433062212591e-05 29009531.643789787 1511.0555396365787 29229 971 109905 XZC_20210124 49670587.87630249 1552.7969676514035 4.34214645787427 0.00013548810705534561 3719215.521762795 116.05077711293814 67822 138 431811 ALPACA_20211104 141747510.16609097 2251.2694485549796 0.9114352264616977 1.445484026070254e-05 7870262.24735813 124.81784804065872 64124 None 23550 BNB_20190805 4258791236.1267905 388932.694068289 27.373793405615487 0.0024994104001698735 131325705.14193052 11990.915120081549 1019107 55246 791 LOOM_20190511 39193592.1432986 6150.6048174566 0.056622390443897774 8.887796298669212e-06 1596164.3550242272 250.54370780598026 19385 None 495542 MDA_20200629 8246147.864179697 904.1989133858151 0.4254882857088967 4.661968778635034e-05 466194.6546970175 51.07978287446874 None 375 1694044 BAL_20210707 269490371.03075147 7891.217100520243 24.936613851781836 0.0007301700161382426 34793267.557440974 1018.7830988169055 90102 None 89492 BCPT_20200718 2701189.639502619 295.0396747259417 0.023250350328969813 2.539971244395658e-06 37007.03055656049 4.04281192 10458 3173 2352744 YOYO_20190103 4114675.887849722 1063.6036758796909 0.014091355780310172 3.6424783420544857e-06 132386.37941040524 34.22059078653074 6926 None 756101 STMX_20210212 81531258.29694942 1709.8397659266006 0.009799420815631357 2.0523992167201877e-07 23659792.105029266 495.53274318688364 25451 1084 181816 GAS_20190830 20393227.148082968 2146.9401517837023 1.4614750189681176 0.00015409362340734306 1042893.344888082 109.9596039997138 324030 98212 189804 BEAM_20210508 135550105.71923712 2365.530539838331 1.5462790959571315 2.6977362489376622e-05 29098465.33091816 507.6702188946236 19773 2257 172921 STEEM_20190726 77418330.28876416 7815.437752526187 0.2437224804328138 2.4622281201834132e-05 1102237.1307972858 111.35449030962528 6069 3760 334107 GAS_20200208 20114900.272346392 2053.7708427065454 1.4449088856183345 0.00014746685986214843 2036897.3085326506 207.88497665195632 323193 98753 245431 LSK_20211120 462787343.18158704 7933.81035710091 3.1956308812365584 5.478440531394994e-05 8994181.941412898 154.19206011524892 200375 33536 170429 SRM_20210511 461854341.53169954 8271.99738348321 9.169520516205218 0.00016410656862719748 206437020.67259035 3694.595703268116 None None 40155 HIVE_20210805 156346882.68873838 3931.1661890562486 0.4197108886430575 1.055480314736723e-05 19060077.832294885 479.3189191344991 None 174 88793 QSP_20190904 0.0 0.0 0.012409337000212317 1.169339322005548e-06 586160.6735312057 55.23427436627504 56478 8534 551928 GTO_20190225 16123801.136368213 4290.460695199521 0.027115251499346914 7.238234862828935e-06 14582331.449233087 3892.655757948915 16256 None 751692 HBAR_20200629 179492339.48367828 19681.526574028343 0.03830940847334739 4.200500227359563e-06 8957466.308372864 982.1566232499484 40099 6560 134058 OCEAN_20201229 153857201.4950991 5674.3444888630065 0.3669625541823871 1.351116755898937e-05 35479515.62253845 1306.3177019681482 34700 1319 67754 BLZ_20200323 2628036.0977275674 450.4485722990915 0.012182549828058614 2.0877418703202818e-06 1296374.753774745 222.161689570777 36054 None 563457 LTC_20200412 2740857779.7605543 398275.9188951088 42.50127781630214 0.006175889753018425 2916307696.9132776 423770.66637528496 133170 212967 140377 ANT_20210110 121211289.32030715 2996.711111143335 3.508805971579278 8.710319195126274e-05 39775978.31528296 987.4056024494189 None 2688 131856 PNT_20210626 30777635.15113102 967.2943035607096 0.6743375683646279 2.1188544219698943e-05 3011163.871071246 94.61459931660492 39969 312 328870 STORJ_20191216 15618028.14499798 2194.616246972277 0.10889918219273198 1.5315910244058237e-05 3538700.3275643177 497.693513452407 82797 7862 146145 POA_20190904 2881624.6684001638 271.14956837358415 0.013088321776434887 1.2315596959354172e-06 110291.83289867506 10.378028482873297 17712 None 617003 ARDR_20181231 53062527.08627542 13961.33296361342 0.053115669579267825 1.3975315336484153e-05 314761.3903963405 82.81717469407621 70879 6619 796714 ZRX_20200621 232315430.30159792 24832.55914179875 0.34856717262443754 3.723954881270642e-05 70477760.80714269 7529.567383029672 153876 16090 84197 AION_20201226 32930297.29651286 1333.4744557013275 0.06748417425805704 2.736790702759605e-06 1741267.523237711 70.61633073246433 68026 72529 524587 RCN_20200322 20991979.494573604 3406.8809819437206 0.04134908894165403 6.710170162306912e-06 1509852.6336635782 245.02034630523056 None 1132 875851 ETH_20210603 315313344228.8267 8379534.730120932 2717.1540367097723 0.07216160581534287 39148856525.29615 1039707.1032898478 1309735 990157 4018 ARDR_20190312 59331402.89884817 15344.955654705429 0.05951798821282144 1.541241714372458e-05 2579819.9419309683 668.0545209048914 69264 6601 910933 NPXS_20190511 134614817.05577213 21124.946630487346 0.0006116274242901196 9.600477682333793e-08 3373584.3469965174 529.5384076409193 60042 4350 180426 MFT_20200318 5304108.538470647 977.020279832683 0.0005445881942877987 1.0125008952272759e-07 807815.368238367 150.1894077210669 18395 2508 872119 CVC_20190220 19685635.232066408 5028.2428136252865 0.057442769558441215 1.4672434484434267e-05 1119665.5408653358 285.99281370149697 88290 8209 370829 REP_20190719 134743367.00071335 12554.828939070583 12.153354455209362 0.0011393981509748793 8982467.668198517 842.1219910977013 126154 10039 220680 BQX_20190701 11562023.855890352 1065.6948338871432 0.09644177892376224 8.89852597607763e-06 491051.18662169547 45.30849377209353 60747 5773 466152 WAVES_20190803 136611893.2000813 12980.00735552384 1.366191823848879 0.00012980201413179373 14459858.513824962 1373.8325221911596 143286 56860 43327 OST_20190903 6931498.828266477 671.1928878113639 0.010421731643218718 1.009160115425778e-06 290346.3195855655 28.11489831222761 None 754 572437 SAND_20201106 20612085.700430382 1326.0838103351289 0.03403371526459864 2.184361082564405e-06 6974327.527382435 447.6281684038907 58315 None 72888 XEM_20210212 3598743692.79644 75471.50980681163 0.4011282514733885 8.388019901361253e-06 246279083.0598329 5149.958504311251 229523 18320 60114 ELF_20201201 48439933.99518924 2463.825732288224 0.10493777623880732 5.345431979652219e-06 11729811.227986103 597.5055914151628 39915 33335 394595 ONE_20191011 17321879.2789447 2023.4006053943701 0.0062432533318553 7.29285914529018e-07 5319128.857100561 621.3372334669474 70549 None 165912 TOMO_20210219 172434640.27897006 3336.3737729643103 2.1475487334663614 4.1538300463084535e-05 39405621.501721025 762.1911067093888 39768 1840 133375 STX_20200905 151922308.59366167 14489.142070004533 0.18753007394678603 1.7885127661407845e-05 2163125.574954124 206.3017213265158 43304 None 104221 SYS_20190205 23898290.042664174 6898.461646540422 0.043636123279351374 1.2595969096906866e-05 222972.24069444984 64.36299199347933 62978 4629 845888 GRS_20200713 14584626.415341511 1569.7256603420763 0.19329688139816337 2.080430901374522e-05 414390.0537816751 44.6002991291839 37678 106868 None ORN_20210430 348757873.66503257 6507.774878002844 14.072743518733422 0.0002625414119271075 27480326.177273594 512.6735682487733 59189 None 53561 SNT_20200725 100542386.03034648 10537.942325345686 0.025888844569982618 2.714745046976531e-06 13176308.081915727 1381.688433646522 110833 5717 140990 AION_20190227 33767710.39887941 8864.753744771744 0.11569567475602746 3.037261496063481e-05 2309777.5872656456 606.3665340183227 67115 72418 212982 ONE_20190819 29272863.044309143 2837.8307141693067 0.010897473801469685 1.0562799577945057e-06 3966259.5005861023 384.44510114960156 69607 None 130681 MDX_20211221 296125586.2315303 6276.682503855982 0.3613835266188208 7.665249484428796e-06 10482268.98328435 222.3377686070203 None None 32885 BNB_20191203 2326424403.815256 318326.610713046 15.14311898663581 0.0020726839785248207 180234082.9407759 24669.177890310675 None 57711 1585 AUCTION_20210809 118025587.74545093 2683.0348808461617 25.67236200750452 0.0005837266024389654 2720695.403987343 61.861946476782926 None None 70573 CRV_20210519 1290402898.9512544 30242.45959156908 3.51653630718894 8.219878978763898e-05 669419203.176558 15647.626970103744 120739 None 25482 HIVE_20211111 294694525.8338055 4536.812056949082 0.8063008795488434 1.2412974219713907e-05 8845041.397093534 136.1691071152718 None 190 90657 AGIX_20210722 191481261.0570525 5830.0 0.18547597563482365 5.743113489855859e-06 1272277.1732534906 39.395033084683355 55741 None 182415 WNXM_20210310 86135756.85498819 1575.9132421542497 52.69179981718592 0.0009632359391766639 25679207.304419126 469.43045124673864 None None 104345 QKC_20190616 61862980.25018898 7015.196184310745 0.02368527172562386 2.6861908025830675e-06 6511725.64353803 738.5069394704374 None 9197 162641 XEM_20210202 2378237015.1094346 71207.974978271 0.26424855726374263 7.911997220686999e-06 228837562.54523307 6851.739050516653 225032 18076 60114 FUEL_20200721 1481550.754360415 161.5922408179504 0.0014956300383470516 1.6323832962216227e-07 100657.22165845642 10.986083661500665 1 1462 None WNXM_20210127 76845556.00136779 2358.456969713494 45.39319111319864 0.0013931898976952074 28395516.52317651 871.5039808784051 19304 None 131837 WAN_20210107 55107129.00033153 1503.4759845952035 0.33725332290720306 9.156623595409406e-06 4604585.464411588 125.0171697258904 104021 15883 601908 WRX_20210202 26089996.941726867 781.4852280298265 0.10953727092950015 3.279733522921871e-06 4116365.3066549907 123.25102838757155 55449 None 4666 OMG_20200713 215432089.93016514 23219.669467184773 1.5378345287190764 0.00016551336434510348 74624539.97175482 8031.656490193865 149 43080 490885 GO_20191113 7459109.12275068 847.8519862784975 0.008877718319185586 1.0087179084003011e-06 1566417.917603248 177.98197112323504 10279 683 729197 MTL_20200607 21266338.131544814 2199.317445369211 0.3290278000890946 3.402732413409779e-05 6706093.604139431 693.5293026299382 36956 None 394171 CELR_20190626 49042448.84959844 4154.7837291382175 0.016609691613138078 1.4048941301840291e-06 26084597.065096363 2206.3081096570622 15837 None 371624 NULS_20210707 45522743.74094475 1332.7180131167595 0.4017725029935311 1.1764317189910958e-05 25707736.841237042 752.749300118086 56153 5369 232645 REN_20190614 36567560.15243955 4446.798946878496 0.04687909427283782 5.695441443218411e-06 160426.8529437244 19.49060153643371 6395 779 1322492 BNT_20190830 24700947.782933977 2600.4445592260613 0.353653625766473 3.7288197142074556e-05 3381628.721071552 356.5489768112297 777 5122 148794 VIA_20200418 2927711.5327656 411.05868176889146 0.12644772050860545 1.7743695653240344e-05 34327.20079614367 4.816942536445256 39199 2171 2765618 LEND_20200403 24937750.51181182 3680.5063807041442 0.021235349808007994 3.1147207717226517e-06 1396926.9456756713 204.8959595021264 44136 5730 93984 LINA_20210725 85182293.10256323 2493.2166549387184 0.030863962183598527 9.033491256255562e-07 24141726.741075728 706.5977988474569 None None 92304 ZEC_20191203 221301867.7169442 30280.920961485892 27.69782351055481 0.003791083929341097 113045004.95004773 15472.807868643476 157 15374 186453 DNT_20200317 2252280.47889413 446.22040406873055 0.002955462771789445 5.86958859767682e-07 73393.00561163184 14.575949086526185 58939 6090 656002 LSK_20210310 485298537.5147184 8863.35299073786 3.384078704178306 6.180584070410764e-05 37107745.125461034 677.7251903985356 184874 31604 160114 NKN_20210603 246698348.9376991 6556.073254187229 0.37879895300813743 1.0072332818204704e-05 24345737.779116012 647.357580237896 27770 3164 103719 REEF_20210513 523497238.9945218 10155.761034713274 0.04003399155463833 7.980893792199751e-07 288993031.0758724 5761.160948826742 144136 11262 30709 KEY_20191030 3547225.380207848 376.94372893654986 0.001356369804526735 1.441338051954536e-07 942915.9247900326 100.19838230385697 None 2793 382534 CHZ_20210702 1296922484.9293582 38598.08610236965 0.24285589887259879 7.220255341619928e-06 170120919.30192304 5057.799633499421 359092 None 35776 STORM_20200607 23942277.549334202 2472.9681588394524 0.003015361736575995 3.1177613585798637e-07 8618450.914655507 891.112761251722 25705 2524 1230704 CELR_20200301 12473433.908022424 1456.1405315245768 0.0033118707861433455 3.8722159589451784e-07 4302552.432506741 503.0513950923779 19265 None 1113968 DCR_20190811 274901957.8093209 24270.888902529714 26.91242562261657 0.0023764435632872257 16246775.754089324 1434.6364094557862 40585 9578 266485 EVX_20210422 29070665.63931105 536.5233399321357 1.3319293127202938 2.4611456248105392e-05 8310026.564718842 153.55308518622647 18084 2824 782921 WABI_20210221 14833693.929396007 264.23334132158726 0.2510071922446244 4.47120382948657e-06 3129278.642831276 55.74199896918446 41080 7436 943415 ANKR_20190816 13017664.347223137 1264.9690417724423 0.00493613454133249 4.792582512430932e-07 7827611.4948473545 759.9969905638328 12763 None 9409 ORN_20210809 195140673.42825928 4435.787869285479 6.739063654846175 0.00015322979356996281 13407318.706856137 304.8495730265009 None None 92091 PIVX_20190316 50266832.19647522 12808.746864312661 0.8474989787725671 0.00021595271810087154 1305803.632453234 332.73413986017556 61184 8593 217374 ONE_20211225 2807975380.4299808 55243.80366543201 0.24503510072112059 4.820753032016129e-06 116533918.42599519 2292.656190609243 297903 46023 8495 SNGLS_20190513 8180061.8492953675 1175.9390818850172 0.01383104356517197 1.9907139495874567e-06 300267.89508300327 43.21781538308424 0 2180 None ICX_20191022 80290071.867388 9777.563443350096 0.16042671519230498 1.953589688066813e-05 30839980.531611476 3755.525872016816 112937 26404 151226 OXT_20211125 282640664.66420937 4940.629767685518 0.4781065082716225 8.358659285248206e-06 30846224.798651982 539.279593285991 77065 4883 156946 ORN_20210111 41649712.4324911 1083.4843394420254 2.4843233142829435 6.459189321141678e-05 4445966.8831122415 115.59422096329236 None None 137368 DOCK_20190701 6623839.752392354 610.5325410675895 0.012864874562118636 1.1927285355377934e-06 1606311.700581296 148.92440598628232 None 15251 279432 DENT_20190421 46810756.987496294 8815.001556584239 0.0008337236154704939 1.5697204549305215e-07 464936.1100516875 87.53736953607869 44708 9058 247980 AUTO_20210704 26624814.409495752 768.0184900065765 848.2534575840601 0.024462585006543257 1747551.3820111782 50.397229570401365 None None 10455 ELF_20200107 24958059.359010596 3213.9638282863575 0.0541001988961829 6.9667308605328314e-06 15019864.38266307 1934.1768579542072 36193 33490 1063129 SUN_20210318 0.0 0.0 0.0004637033754326526 8.4e-09 80.327307959529 0.001455131497005984 43 None None GO_20191017 7320633.39986378 914.2921874679852 0.009300607466968341 1.1616488142788308e-06 1643637.980809257 205.29090366320955 10264 687 791048 RSR_20200905 135790006.80008477 12951.496286424226 0.02001314241146468 1.9086944264553034e-06 26524894.297870494 2529.733555468975 43414 None 120167 CVC_20190512 24983968.4249041 3421.731059840707 0.07272199097191287 9.984925108415516e-06 4005909.064095992 550.022097326377 89084 8199 436326 FUEL_20190528 5727272.18937357 649.518188303145 0.010773543061381813 1.2242027760081103e-06 8814392.260418884 1001.5835470791909 1 1514 None MIR_20210602 339268608.8559185 9246.379595521386 4.805747496825112 0.00013101136578602172 29726285.162068974 810.3799089320182 44317 None 15173 PIVX_20200704 25890780.006905727 2856.016003044657 0.4075969108078389 4.49681143831039e-05 306353.1608625081 33.79840134702452 63747 8484 358751 VIA_20200105 4260071.774319143 581.2182917085099 0.1848900739339649 2.5142404510927115e-05 411419.40816348186 55.947152616678416 40010 2187 2950394 SNT_20190522 94765618.7757183 11909.112265301594 0.0268492081617608 3.37405330091309e-06 19275656.670501187 2422.3095379400847 111566 5755 333146 HBAR_20220112 5130063215.756833 119669.00601815077 0.27518813991119934 6.4317587757671815e-06 75051417.96146433 1754.1185323727464 199264 19834 30905 DGB_20210707 638480135.5146289 18692.062641475502 0.04417737487717307 1.2929012210199377e-06 16735999.646883093 489.79810227757525 222247 40104 90181 YFI_20210718 989733665.6735013 31311.32157817197 27721.030272196527 0.8787403821212726 146382781.6812574 4640.248224813562 None 6819 20096 GVT_20190920 5205958.954241081 508.29412445538253 1.1743912928598401 0.00011460040166609036 764835.1489663672 74.6347625470266 21238 5703 141613 LOOM_20210324 153064642.18080315 2806.1131514451104 0.1831272702562758 3.359396965648526e-06 37942484.092580654 696.0397856168815 28717 None 239350 AVA_20211204 118189227.54945138 2201.4047121625476 2.2414649207731565 4.1727729431685154e-05 8874337.222322391 165.2071103441004 138694 10967 48035 VITE_20200501 5753489.279709903 664.9172412062671 0.011489230241004867 1.332903091330072e-06 4324493.689551829 501.69862439251483 None None 592403 LUNA_20210318 7726109196.7177305 131281.41587290232 18.588215940754907 0.00031536303917822754 1246224342.3032782 21143.13161302173 42747 None 42354 ATOM_20190811 809745891.5076133 71491.86105721796 3.339630526669811 0.0002948988537916255 145801498.83372426 12874.686149800364 27821 6480 108331 AXS_20210115 29404163.753518205 751.1281317395709 0.5321056538628604 1.3592616645193707e-05 5956790.234101813 152.16595708048536 29857 None 19930 BTG_20210819 1080487057.2079208 23970.769762869542 61.525473501149214 0.001366325739868139 40404496.49151862 897.2820593041456 101483 None 217752 BAR_20210729 62314861.94229398 1557.6649430082055 21.118189466850396 0.0005276183830185073 16665411.084463911 416.3698437560688 None None 42486 BQX_20200518 4047762.192425712 418.58809672582345 0.028665647267689127 2.9668264168399287e-06 301973.99926280626 31.253591793879554 None 23 379386 XEM_20210703 1193325478.493165 35305.630501727006 0.1325101989421638 3.912254830418197e-06 74811508.08230327 2208.7483544840698 370988 21679 80485 SNT_20210722 217367474.6574448 6754.718526327955 0.05615944538592623 1.7389317795731836e-06 9635210.350586932 298.34649125126424 133404 6023 134549 YOYO_20200325 1263865.6799431029 186.59746042399195 0.0071818967211849435 1.0641474225478395e-06 216085.49274726142 32.01756152781867 7486 None 2721333 OAX_20200109 2681920.4760077647 333.27875691900704 0.051434599756824455 6.407276405453669e-06 721184.3473843816 89.83889200703557 12117 None None GO_20190130 12846197.100585235 3763.459395546534 0.019521407909268842 5.718562864584727e-06 610978.2828076401 178.97877731823792 7813 624 614655 BTS_20210106 65612373.85574935 1931.461134700071 0.02413295057984424 7.079849963951781e-07 30952106.530985646 908.0376209391167 13143 6877 130433 AMB_20200520 1281887.5174596943 131.41630536002714 0.008856455698302786 9.072222598826584e-07 195006.62280470395 19.97575046492603 18876 5454 931435 BNB_20200806 3438061584.3995376 293487.9119040611 23.258103117077056 0.0019846830416670527 350188271.6294137 29882.60567059254 None 67885 992 XMR_20190207 719548453.114819 211275.5476440707 42.89401151131049 0.012594642839510202 48380742.83350596 14205.670088411462 313507 154138 101450 RVN_20190623 244297835.30547416 22755.79633645981 0.06430112787121332 5.9945981080692785e-06 49551777.9658802 4619.561184691384 25726 6688 184956 OST_20210105 9338164.97923454 298.47462492287167 0.013569994404881252 4.337360711884111e-07 2812395.7533065206 89.8922614313942 None 733 741572 POLY_20200421 11309419.295688638 1651.552311001676 0.017978445072505664 2.625864815070307e-06 1652051.4314197665 241.29248713982938 34777 4988 378789 WTC_20200518 7688272.879985978 789.4983994239498 0.26441445091327487 2.707398257845449e-05 5840442.97615048 598.0159209929793 54354 19627 960738 OGN_20200425 6387137.23363081 851.9790336549273 0.22343984960507032 2.9810804494881558e-05 13644412.06265339 1820.4044675392306 65507 2212 171904 HOT_20200430 64500636.209444545 7383.714601271202 0.00036250503595648643 4.134716736098437e-08 8201349.19463447 935.4423362469654 25048 6958 509246 ARK_20190726 55377069.50309203 5580.765514414125 0.3868170086948572 3.911727834282906e-05 1428639.570107412 144.47268465269605 63461 21840 182377 COS_20201124 18654585.72992675 1018.5993201370574 0.0062484550750088064 3.40540772619339e-07 850234.530322819 46.337777960797055 13721 None 342611 AAVE_20210117 2252928453.3311753 62088.64305698811 183.6455359828425 0.005074556091808242 889564847.1873502 24580.759288234374 95119 2174 22200 VIBE_20190608 9092298.916605923 1130.7099160385585 0.04837462772859639 6.025491516466785e-06 1783639.5196166257 222.16821706995094 20536 None 1515542 QTUM_20210813 1069232230.6228806 24049.65492543824 10.317223190244125 0.00023204399983012603 352513247.19679594 7928.3526550049355 250544 16794 166372 VITE_20211120 84284303.63072604 1449.901703694215 0.11041067225072418 1.8977593527030452e-06 4835809.778617251 83.1188058924579 38781 2765 301171 SYS_20210805 94773701.3635378 2380.6436969689566 0.1533688367430147 3.856330740748982e-06 884348.853624038 22.236210055442218 74437 5463 426282 MTH_20190225 4978596.804017014 1321.7583649031221 0.016360814159063805 4.367409811163034e-06 225585.84572942366 60.218631317463235 18631 2016 836408 DENT_20190316 37424986.037741765 9536.82631845587 0.0009808292291998205 2.4993991975068364e-07 10866857.61711509 2769.1482267302194 42986 8834 257059 NCASH_20200324 1154451.1033606331 179.19985518591773 0.0003790648359721205 5.878315136574049e-08 1789153.0543217128 277.4513614246334 57740 58311 679947 IOTX_20190915 17952511.029026385 1734.952524208467 0.004357405589569511 4.2110498160399685e-07 725888.7412003307 70.15077176690195 22545 1763 585663 XLM_20200403 841071088.3643614 124034.67975435418 0.04134138001387717 6.064359270769841e-06 352096106.4788257 51648.91173952323 280664 107281 84829 DEGO_20210527 41453216.20254625 1059.9711344714651 7.646743535111225 0.0001950526915427072 20955706.904172625 534.53695891208 None None 65351 GXS_20190227 38488325.09009205 10102.223052517656 0.6414720848348675 0.00016837038420862763 7827424.503870375 2054.5032312979715 None None 374736 BQX_20191220 2771905.217424488 388.09614333340045 0.01971624962735861 2.759198998056865e-06 200316.04111187262 28.033314163543764 9127 4 315827 AKRO_20210513 118992846.76711383 2307.038017236377 0.04378844031100415 8.501441601103395e-07 37519004.716994494 728.4242719485367 39284 None 159597 BLZ_20190513 9797397.93458479 1411.696845691864 0.047543689971831574 6.843004029002897e-06 371089.17779737257 53.41118327776624 35740 None 825478 OMG_20190726 237460906.36861497 23976.608489445345 1.689849925174781 0.00017088785755234453 99511329.93193305 10063.188287263842 289658 40696 None GRS_20210105 26870898.05631352 858.8712275413596 0.34983916083674116 1.118186630309864e-05 2792398.0588209615 89.25307756880746 37630 106783 4269637 RSR_20210111 405583381.06831676 10552.914139476323 0.043103534376313354 1.1206829938208172e-06 148500833.7451618 3860.99101510964 None None 170522 NPXS_20190618 216144283.07549316 23187.46763511571 0.0009112625467467858 9.780289140794937e-08 18198163.236278966 1953.1505921931557 61934 4535 216939 ARK_20200312 26299257.36297406 3315.7060635369885 0.1875974898416054 2.363181470069351e-05 217407.4545962704 27.38700121151116 62712 21965 80258 WING_20210420 66826781.6022039 1193.3584700539857 43.00735022310004 0.0007685190881153136 9843878.394550625 175.90501177249166 None None 321336 FET_20210219 207901579.56494966 4022.3082923290135 0.30224813483097346 5.845511868629595e-06 83900454.89747442 1622.6439417430274 30587 1010 277312 SUSD_20210727 207487605.39433733 5544.029875237988 0.9970348595148439 2.6720348969532326e-05 179444512.34873584 4809.079587206137 144208 7312 44436 LRC_20190227 43565528.62226381 11434.743825197856 0.055253901817747995 1.4502605424998328e-05 3983682.0063826498 1045.6052220130425 28473 2472 544203 RLC_20190729 19762862.172710977 2070.1333661272647 0.28217036452814176 2.9559171414576814e-05 92518.73013548704 9.69193560672842 24927 3316 855809 ARK_20200526 33774481.53421242 3800.3326942132358 0.22563390826279606 2.5392117384672034e-05 2613835.2951123314 294.15265262519415 62042 21954 92164 XRP_20190914 10986207071.001532 1060962.8099803291 0.25533469834850253 2.4666119529133262e-05 1147662537.315168 110867.74146883322 938266 205381 31314 LEND_20190714 6972530.008085453 612.6144210963406 0.006140040276352184 5.391661734346373e-07 1076951.6876083277 94.56874780090635 41977 5862 929610 UNI_20201030 536652174.1634711 39863.940794080794 2.537363184849842 0.00018869853688096335 130705348.51051356 9720.290801771796 129909 None 3366 AION_20190801 35419658.13844976 3518.228146833802 0.10814066042301403 1.0726228196157024e-05 2914485.20407717 289.08121377259573 67589 72597 199411 ATA_20211225 117328638.05882122 2309.1793168313893 0.6815305596574563 1.3407305305296861e-05 14089818.851012535 277.17979825702645 164712 None 211446 WING_20201229 11945687.771629985 440.17746908518365 14.79128242936173 0.000544943983971115 3895872.344666234 143.5326657228138 None None 238835 GRS_20210325 60498886.52378273 1144.5250609142006 0.782269944331002 1.4827146587309184e-05 3781960.762704372 71.68329426746077 39044 106768 5192531 ARK_20210128 59635707.3195927 1971.3714402282515 0.3884482983646836 1.2777517015569564e-05 2076076.6585584425 68.28992414700473 63347 21533 90989 TRX_20201031 1836926363.8842056 135252.53848997437 0.02558427430032872 1.8890443902553333e-06 704077213.4882835 51986.352821020206 540880 75746 29785 STORM_20200626 0.0 0.0 0.002078337699243941 2.2460865048848e-07 717362.6671490149 77.52631376401024 19554 64 267635 MTL_20210221 62606427.02328414 1116.8096729697052 0.9686319679246662 1.7279017550763938e-05 11828251.033859046 210.99918645756225 43262 3421 337340 WABI_20200310 6486880.442791158 819.3361963220651 0.11031522623184072 1.3919589331968463e-05 1182938.4038902672 149.26331885103014 36847 7775 3668499 STX_20211204 2588831344.6880326 48219.838976490486 2.662739717829244 4.965597017798357e-05 237625379.06744346 4431.345150822471 98234 None 41098 COMP_20210506 115592.50403305513 2.026188279249903 1.2593835375791895e-06 2.19681e-11 1952.2985604383332 0.034054987004202085 2449 None 1890272 LTO_20201129 39407331.26383016 2226.1848159831607 0.14355697647910076 8.109508134321812e-06 8458101.939686341 477.7966781070724 18353 633 1429266 ORN_20210207 74128380.65519093 1890.4263822864336 4.411098423818947 0.0001122185651487013 11781636.284270564 299.7254180014609 34240 None 131553 SNGLS_20210124 5402864.239099257 168.93279386270777 0.006083531657891359 1.8982994755331468e-07 144030.87352656186 4.494325780673632 9048 2114 2274706 ACM_20210727 15727968.297052694 419.86187829549687 7.882297902141944 0.00021061352060981138 6921840.238291213 184.950272088678 None None 42486 DLT_20190904 2950377.8515331727 278.2943642590634 0.03677720553953313 3.4690095811052427e-06 196045.0919043046 18.4919515272482 15017 2653 9139526 ETH_20211125 505609296276.3257 8843571.879830554 4269.437219728043 0.0746381028202878 19881953842.36485 347575.3919738324 1884196 1165204 3578 MFT_20190701 22924094.434232965 2112.72007677529 0.002608038580641126 2.403781615252206e-07 2764876.5794824488 254.83363396286535 18843 2114 960456 OGN_20210509 331032280.4254452 5644.817960477354 1.5688941436636836 2.6721596366866396e-05 98476006.44662176 1677.2553500280312 None 5206 43246 RDN_20190513 14655432.467060242 2112.0017725408056 0.2898511378897234 4.169643826988792e-05 1007653.2021196214 144.9556135798953 25677 4447 1314746 DLT_20191113 3621157.549030796 411.9883542340909 0.044880040714967206 5.098832388769753e-06 269846.11156185274 30.657282651624175 14907 2626 7658387 QKC_20190803 64004171.343982324 6085.850785396726 0.015999601870349732 1.5201235733063345e-06 3168567.698523903 301.0458942149851 51350 9232 258370 LINK_20190819 908990427.0132788 88205.197373049 2.502835862611219 0.000242523207992025 76245537.42695002 7388.144227951034 31432 10378 91625 ADA_20200501 1509035250.6732063 174395.6592218119 0.048008344969066724 5.565864010731766e-06 396920531.1840506 46017.11850432052 155299 78381 51955 EPS_20210527 131340489.53144383 3350.353361542005 0.846779900144566 2.1599965616361224e-05 11266573.468291229 287.39179979089147 15903 None 26202 DASH_20190531 1442725807.7855902 173876.4796958841 163.2962823820784 0.019680373481085242 564517110.3525867 68035.2755502854 320035 26617 107056 PERL_20210314 0.0 0.0 0.1612182954734351 2.6280297982773893e-06 51259783.84815233 835.5890316952252 15704 580 400824 BTG_20200913 151706678.27357483 14548.739565093554 8.666213734135424 0.000829985426537755 3477755.816275199 333.07355820174644 77644 None 234816 RDN_20210519 47321586.51728701 1110.201353994432 0.7208803193233931 1.6849736166417025e-05 1052994.1836508627 24.612510154170536 29404 4619 652257 NULS_20200530 30846587.6293998 3272.9389605432716 0.32038051035804666 3.417102731419705e-05 45094124.71511038 4809.632663446887 24877 5191 694372 RCN_20190316 12105897.809013482 3084.8867843827106 0.02418226460367646 6.1622483246789024e-06 1988472.6857621435 506.7127780350487 18442 1113 1862328 NEO_20210724 2081022407.2821841 62256.52334202062 29.55270290017555 0.0008838227045496817 269784527.70576763 8068.35475347176 407139 112383 108336 ICX_20190704 145898186.5293985 12157.948112940185 0.3081878442990005 2.5681825861976218e-05 21839476.44130511 1819.921328039702 113887 25413 268065 LSK_20200323 131969190.31284699 22633.82008026363 0.9541680196267628 0.0001636402043415217 5051116.860276938 866.268600672602 177910 31305 164419 VIBE_20191216 2552556.6900721686 359.1971667966608 0.013640428245920008 1.9194884873209563e-06 136067.67953302854 19.147517926224 19762 None 1340353 RUNE_20201111 147071820.30602372 9615.315358629327 0.6797422016900485 4.4501333783467e-05 13641052.515310738 893.0518505873907 None 1899 224255 GALA_20211216 3737616757.0950294 76612.29872045593 0.49820606258071926 1.0194653878922229e-05 771775574.7310526 15792.631699086536 None None 3466 RDN_20190915 8076746.5511696115 780.0831045655743 0.15963863161008549 1.5418510233797284e-05 68367.41219484182 6.60318642143641 25551 4384 1279478 ZEN_20200414 47294709.797043264 6903.073727631625 5.345956034155314 0.0007807259571505919 2651118.405329612 387.17059049804726 60456 5125 40228 LTC_20200309 3290502550.532672 408891.9616665814 51.213938137757125 0.0063640636371573404 3708201200.06098 460796.9875914097 447918 212123 137206 XVG_20191011 58916615.418201685 6882.158303105279 0.0036855683639978255 4.305180251429315e-07 3586146.701611357 418.9043977401229 301233 52605 292471 ONT_20190922 525088997.7142903 52558.38254940234 0.8072690699087426 8.083659690236091e-05 105795143.51405887 10593.889558335452 81645 16294 297056 XRP_20200421 8086477705.570027 1181080.8553949883 0.18330269141211422 2.6788413400191874e-05 2266839384.9033456 331282.8092529265 949810 212439 34710 LINA_20210602 105254019.86022371 2868.684353903848 0.04269028587558733 1.1637966127124517e-06 19034396.197339445 518.9041339298749 39103 None 70123 VIA_20200430 3117050.9687548657 355.4758272398283 0.13454769124754565 1.5344135315354114e-05 75131.93717271744 8.568222908870535 39083 2166 2765618 BZRX_20211104 153724931.0652452 2437.5472501419067 0.45120029247354515 7.154480568381707e-06 13728442.953288533 217.6857594772025 31959 None 278581 BZRX_20210508 132137116.67513205 2305.969318745029 0.9411760927251622 1.6422658829870636e-05 57839451.74371621 1009.2453370160097 None None 145743 AE_20201031 35293428.9637711 2598.648456039328 0.0953979047539795 7.029204117570707e-06 8715760.5222986 642.2034101178295 25605 6349 520919 ATOM_20200626 488059054.11557496 52700.964786327146 2.6226531379478875 0.00028343352585489113 119014651.73054047 12862.067758900595 34683 8579 161596 ALCX_20220115 303085078.36761075 7032.965885347864 315.8968273352036 0.007326098659888 21745461.1859055 504.3083065967701 58766 None 76988 DNT_20190729 6530295.65365199 685.0217832031046 0.009758045045984286 1.0236096147098892e-06 373444.41495643737 39.173962807891556 60542 6325 724607 SFP_20211204 223660636.3057805 4165.926023019384 2.082811125223556 3.8841200447780935e-05 121716895.37575231 2269.8315146860673 None None 26557 OAX_20200704 3606541.551246725 397.73150585309673 0.06997672116015517 7.719462437994566e-06 927120.8622261563 102.27507880879509 11892 None None SCRT_20210325 177613328.20857468 3376.1233634623845 2.5481272363009193 4.8435508654215115e-05 2871359.8219270655 54.57960321722722 None None 99047 VITE_20210408 161971887.41618758 2875.571101822364 0.2633386492991939 4.686322625427609e-06 297110475.3909402 5287.319376709424 30127 2072 246413 DASH_20191030 663126450.0844159 70471.32472308908 72.86532555174097 0.007744355108233724 247939659.1993087 26351.80384791429 317419 31586 74820 ELF_20190725 58086451.4177309 5912.727014058246 0.12553017244069117 1.2801517259116668e-05 20592180.021495014 2099.9823613924636 86382 33434 1184009 NEO_20210221 3114245549.9944263 55390.704063792225 44.154906422719776 0.0007853495542860092 1376914505.2424586 24490.12534710515 345039 104672 123772 STORM_20190530 17212333.498929027 1992.1228810075909 0.0038121337076573924 4.408367318702825e-07 3457143.9509160016 399.785568346045 26980 2572 8080480 POLY_20210814 264036488.81857276 5535.393122929473 0.305620258751691 6.405713308241277e-06 15238300.091031495 319.3904163513003 48289 5895 197469 ALGO_20200410 141639021.30906156 19432.68254769676 0.20119337827913708 2.7593060187607656e-05 97890307.86826955 13425.358130052817 16589 833 317295 DODO_20211007 142623515.07048327 2569.366689991607 1.3647280053044908 2.4600864948632372e-05 49553132.80095558 893.254863298541 109655 1122 31561 HNT_20201226 79187050.66885021 3206.5883990795423 1.280488713013362 5.1929650815060274e-05 1333218.2461235162 54.0680736017849 17491 2022 69753 EVX_20200109 5187731.40921463 644.6726108249211 0.2388300671459073 2.9751378670616568e-05 1427511.5337680927 177.8270077354244 17926 2888 801156 BAT_20210115 363021091.93011415 9294.742614363637 0.2458998610865863 6.2800737585965874e-06 181549496.548394 4636.620062011841 126773 49569 23893 POA_20190507 6561616.077760443 1147.0532386919872 0.02980282045088021 5.2099088570884244e-06 289573.7848204739 50.62114939098818 17411 None 629300 ONE_20210718 682992709.4414543 21609.834231926718 0.06605472991453316 2.093948076508415e-06 16621739.643560415 526.9124527477522 None 26210 25720 SRM_20211028 885406374.4929777 15128.235394202138 6.645819685771185 0.00011347843435555543 212730726.0352981 3632.4111804434187 156363 None 19035 OST_20200901 7387141.077649323 632.180899978133 0.010626454330025632 9.11491237578192e-07 583881.2823208191 50.082808064923135 17656 750 678146 BNT_20210718 653590550.4528543 20679.15328272596 2.7990858623170083 8.863756917901978e-05 35579631.14148042 1126.6864154200816 125020 7589 38654 XVS_20210207 199274546.70836893 5081.911368979713 24.893695076192795 0.0006328068767227123 90616358.6165175 2303.501135552335 19662 None 58717 CHR_20211002 192017569.69839612 3987.0792166632914 0.3387258185919004 7.03227806451557e-06 54351617.933168575 1128.392551094102 94479 None 75701 BCH_20200106 4055895675.651591 552256.543070996 222.66461535290645 0.030315694265127573 1542492522.4740424 210009.7118864383 999361 280627 122390 IRIS_20210805 84755843.95010696 2125.844182869498 0.07859593074162279 1.976096202000611e-06 4375446.5277474765 110.00955372565676 26700 None 796801 GAS_20200322 13929592.263465943 2260.6949945287397 1.0036928259222049 0.0001629757082152174 10060606.92949691 1633.601931849186 322256 98949 219445 FET_20200106 13064762.300371658 1778.9166785924292 0.03834026431839455 5.2200109535969755e-06 6491610.981123973 883.8301203807791 16342 341 374290 NAV_20190117 10202112.882010374 2834.2644908444913 0.15942143892434124 4.429613283399657e-05 190378.57602800176 52.89774543112522 48098 11497 725483 BCD_20190530 241593154.8771902 27937.509321069345 1.3045894822251152 0.00015086738681358632 21311388.433486067 2464.525067951245 21229 None 3558878 ADA_20190601 2794672967.2028933 325777.9454534265 0.08979294565729191 1.047005247869121e-05 277367144.91822064 32341.61149186766 151900 73473 105576 POA_20210616 10784793.722945761 267.3152455959944 0.03738936911270787 9.263820989655814e-07 180714.42870528137 4.477492285914636 19738 None 235218 LINA_20210902 171676373.59175313 3529.8757979643296 0.06154092732741783 1.2643630265519885e-06 43169242.963026494 886.9153757839624 44021 None 121780 DOGE_20200725 404728572.0599768 42429.985477536946 0.0032238522602445582 3.379746675350378e-07 112909917.132722 11836.985266020087 150115 163972 90180 SNM_20190803 5215437.051471619 495.91098532158344 0.012196957208604517 1.1597503732764923e-06 100817.33878399705 9.58623895187549 31128 9948 None SKY_20190914 8024486.403999923 775.1368168906027 0.5015304002499952 4.844605105566267e-05 291554.21708051424 28.16309934379992 16362 3807 477504 CFX_20211221 252054515.43028784 5342.261779112455 0.21684886906824669 4.601115407852534e-06 14306951.714359004 303.56596396000606 None 2213 165568 ARK_20190325 88443630.91408563 22147.112526210803 0.6297935077508514 0.00015771527257746608 589799.307096729 147.69977356063896 63285 21738 175186 PIVX_20190305 45907098.09665862 12357.333005070324 0.7754109372565715 0.00020872613527602997 2880418.0690341545 775.3547217890351 60739 8598 184646 APPC_20190622 9561643.416203236 944.7755912173776 0.0897333701317123 8.869123926839234e-06 349262.7669132419 34.5206555625573 25523 3371 1293635 BLZ_20191108 5276094.323206771 572.3251144973625 0.025062723235566072 2.7185437220761456e-06 149282.21416987825 16.192582998053563 36301 None 623163 QSP_20201106 16766504.091089014 1078.1497714387438 0.023489206981266032 1.5110366512395048e-06 128698.71923886868 8.27905692570264 57763 8205 233345 GAS_20190430 36042678.91867834 6925.009371027439 2.592332079620313 0.0004978688242225636 2243642.4426181526 430.90143954309593 320645 97626 201868 NAS_20190826 32919124.509736855 3260.8124350622024 0.7237814955294328 7.165727711690021e-05 10894194.304603994 1078.5690226569477 24223 5102 694216 ATOM_20201226 1171594189.7206929 47466.84766560359 4.906735538445911 0.00019899047962220032 207445989.83929178 8412.879946429133 46659 9893 96388 DOT_20210624 15964610514.042696 473391.7665068646 15.861423175287621 0.000470821400943443 1395173769.7441962 41413.53909868151 482177 26597 18773 NBS_20210616 0.0 0.0 0.015457323304893534 3.829778817410881e-07 14480679.061246384 358.7800865427306 None None 552078 XRP_20210207 20205229008.6856 513595.075775643 0.44197733914916787 1.1239524788509498e-05 4764275824.040723 121155.97674461233 1122819 256920 11661 POLY_20200113 10466454.139645012 1283.897798694557 0.018476342015996846 2.2663967487047383e-06 2949825.56214093 361.83975472493614 34900 5001 298453 CELO_20211002 2014844546.647385 41834.482322660486 6.16624508582342 0.0001280172566641776 154622715.53666347 3210.118246269138 55251 None 56964 DOCK_20190329 7300985.316162639 1813.6312211447625 0.014206687907276788 3.5290706147097485e-06 9140360.612693649 2270.548790586527 146 15351 190400 CND_20201129 16778707.128284182 946.2690038143753 0.008688593276030896 4.904846416066025e-07 69921.87742509876 3.9471990343846786 33963 5901 383429 GXS_20190329 67376383.7181339 16735.05479975337 1.1229502583042283 0.0002789175799958895 45933943.28317697 11409.039897777207 None None 590574 MDA_20190914 12243519.56063384 1182.680398715227 0.6237500341656563 6.025203255096402e-05 5498891.062453229 531.1732988236516 None 365 3117488 KMD_20200523 70743791.78742619 7728.198809377604 0.592767920017871 6.475373889935435e-05 4214163.059102313 460.35354679819466 99604 8371 191330 BTCST_20210805 130002980.25067826 3268.7784473161432 17.837836915614705 0.0004485822558186512 3442230.291212989 86.5644997420027 63423 None 1348993 TNT_20191118 31602698.379926164 3718.1306569650856 0.07377477202034104 8.669601542709026e-06 993981.8589820025 116.80722856966841 17750 2564 452682 TOMO_20210106 71428671.51561965 2102.261812244926 0.9322615031555962 2.7349625350090035e-05 30015478.112896048 880.5598840162797 35281 1708 198557 RLC_20210125 90310084.67796324 2807.735631844394 1.284859580319442 3.980994240995302e-05 4503253.923433989 139.52830495666373 34127 3920 538469 DOCK_20201111 7111077.379584058 464.91062259270666 0.012641051884665699 8.274998908231205e-07 5013085.592825037 328.1631796624322 43043 14889 246761 KMD_20211007 134355301.0615907 2421.7149397531634 1.0487418625592078 1.890326482421358e-05 22131159.241319034 398.9076615904392 115716 9758 128638 UNFI_20210725 29071213.460220844 850.8908475970605 6.825708905615586 0.00019978030215539675 16901090.512223087 494.6746214901942 None None 243649 AE_20190104 88343800.81908973 23427.424363457652 0.38826521596669206 0.00010296887542017753 8219169.427806676 2179.743634160008 952 5110 423844 TLM_20211207 332744255.83944714 6592.344212139202 0.26820574925496127 5.310250397347743e-06 171913202.9236597 3403.738199761206 101933 None 10820 DCR_20190807 316057320.3229943 27620.587437712908 31.14218002359795 0.002714219242495144 19614672.01441243 1709.5309376674265 40579 9573 266485 OMG_20210422 1089758015.4504538 20112.39155723543 7.745400212329579 0.00014301665215013727 506363149.8401565 9349.854168549966 319447 4471 121524 ZIL_20210704 1001997142.6432778 28903.57546339678 0.08226399978229113 2.3723924372605684e-06 61004850.03572026 1759.3047413689358 306570 34767 36438 TNB_20200927 7481133.859583847 696.727378769835 0.0021745681205107086 2.0256894821542013e-07 349664.96436986636 32.57256619928332 15936 1434 602060 XEM_20201101 868331371.9433914 63010.54163026527 0.09648126355998586 7.001171293029604e-06 18577476.59421379 1348.076207018925 211843 17814 137047 OMG_20210825 894292668.0882044 18609.86172079945 6.365191232695539 0.0001325441913174938 542209569.2893203 11290.584408039125 329 5060 356595 STMX_20210131 27829663.041392792 813.4365989164339 0.0033369716483741562 9.767375383956054e-08 45393610.3227154 1328.6790502730412 22334 185 181816 AST_20210723 19788748.718040764 612.127051275204 0.11497985977333712 3.5515407255372976e-06 1287361.6805812712 39.76450698490727 44263 3699 213143 NBS_20210806 0.0 0.0 0.012408429318493563 3.028556270929022e-07 4398580.796557457 107.35725781785997 None None 2066443 AERGO_20211120 99924819.10722603 1718.9578512704998 0.37926006451150956 6.518793155240089e-06 123490306.44877681 2122.5745596327015 24769 None 591962 ANKR_20210105 54454000.90505826 1740.5065697414211 0.008392606945294487 2.6825186915119124e-07 15201170.396939978 485.87314988594665 31300 None 5158 VIB_20200310 2850264.6951229987 360.00741102117644 0.01565394448094436 1.9752167134412077e-06 694571.5230007216 87.64112346133572 31546 1107 None WTC_20210318 45253858.38206804 768.864158225007 1.548671659694328 2.6292131665695956e-05 19984781.055457406 339.2859238632303 None 19157 449288 RVN_20200313 66056086.50003259 13746.814023271028 0.011525804213351223 2.4051812557629075e-06 23931612.129582927 4993.99988484839 30257 7569 183648 NEO_20190426 622495337.2345918 119943.53752794283 9.587926839710752 0.0018461231206242327 287788601.88362086 55412.729015515 320588 97627 201868 KMD_20190804 118628709.80450846 10994.335834687652 1.029107351457244 9.535777225923006e-05 2120489.708642911 196.48598800551162 None 8445 220245 TUSD_20210611 1436207591.002376 38969.58611227833 0.996134940104495 2.7132702609961464e-05 81762730.72167219 2227.0515448607553 None None 935042 POND_20211204 79976633.80433366 1489.6530095866235 0.09891534738928198 1.8446179726914079e-06 42632067.6779997 795.0220095001735 28477 781 1462583 TRX_20200801 1300902580.3904903 114782.41606098381 0.019686442428739657 1.7374011265835986e-06 477233638.7107514 42117.62813626516 514887 73792 52156 BAL_20210127 235187113.53066182 7221.577334004795 21.70682083756993 0.0006662171739935043 86823836.66453318 2664.7629116560424 38706 None 81450 THETA_20200229 124884374.3804927 14267.96063727914 0.1246952141517903 1.4273773939546031e-05 8803045.48944812 1007.6784594392452 None 4028 394395 ADA_20190816 1477218184.4392877 143425.7915481689 0.04754609016915611 4.613783417706524e-06 102942548.59450716 9989.351847691896 154315 75051 90911 MDT_20210128 11863960.521605195 392.1812167658606 0.019641683851139582 6.45956755399066e-07 1706384.1324776802 56.11791565496464 13821 74 1359138 TNT_20200713 15235955.326073501 1641.8375572240998 0.03561107132771647 3.832776436192287e-06 674101.9768897512 72.55277856812941 17991 2603 448003 STORM_20190804 13264859.926176243 1229.1307511308307 0.0020563441466947374 1.9049025115497235e-07 209036.48891269453 19.364177604967757 26676 2555 2770937 FTM_20190922 31335828.491986513 3137.8406913256094 0.0150722969323161 1.5092874310970733e-06 2704644.4067520895 270.83369091181055 None 2160 407157 VIB_20210610 10073029.042321809 268.35703478717954 0.05519316864375442 1.4718511922741907e-06 1385575.6866147427 36.94952249422648 32231 1273 3757550 EVX_20200807 9879247.265477937 839.6923237328506 0.4534358514559856 3.8511802291624714e-05 5159325.771520309 438.19855318643977 16823 2831 865823 AXS_20210429 613471108.2452409 11207.244874581122 10.672728652078051 0.00019493178559719723 169169569.65066203 3089.793374845357 59584 None 19374 LTC_20210106 10535698659.89438 309084.31826715113 159.06360312204382 0.0046664266812455 8254813487.140132 242170.3089143563 137957 220534 152475 CRV_20210727 538073190.0285965 14372.230493408651 1.5248791936810604 4.086830278842497e-05 146907902.23879245 3937.2801829723567 None None 13850 POLY_20211125 652865419.1262192 11419.216981214277 0.7273168457355292 1.271556358415202e-05 29902954.38660638 522.7885481909397 62179 8370 126524 GXS_20211120 45113285.78601338 776.061818188167 0.6018271704020688 1.0346973213110148e-05 6070024.779122679 104.35950199878395 53226 26961 1040210 ELF_20211202 245668293.92054015 4297.304462921317 0.5337933727056952 9.33488627188839e-06 10727918.90115133 187.6079921499952 93752 33539 102632 LINA_20210511 213699002.236198 3827.43525044784 0.08704996444278063 1.5569162326984887e-06 57553729.74030051 1029.3667166735645 None None 64342 BNB_20200713 2698495512.134894 290848.8418357968 18.2822214187026 0.001967693328010487 232019605.6367238 24971.988880517798 1188111 66121 1041 LINK_20211216 9157517750.15931 187706.4008890202 19.7418986250727 0.0004039730515378432 1026687946.9211227 21008.833586456618 664622 73456 18014 FTM_20190706 56304056.41367154 5122.835065586152 0.027239737328450832 2.478944829748378e-06 17194291.917817757 1564.761823394673 16833 1923 411389 ZIL_20190324 171837420.45290688 42943.56567636555 0.01977448876395371 4.937614114086457e-06 19308582.939989183 4821.279214120003 57963 10052 178175 BEL_20210304 51058037.72383393 1004.2348093347753 2.270990939507072 4.482072108288897e-05 17819722.210942212 351.69352069918955 None None 377767 AE_20190608 137247025.81833318 17078.90213186844 0.5124918120756967 6.383542801085656e-05 44695672.48375469 5567.244814463734 978 6360 374739 VIB_20190414 6054169.6324332645 1193.422100657919 0.03562661422744909 7.021282360626792e-06 1348531.5421774213 265.7681886184986 4 1129 2240138 SC_20200318 45867797.24246457 8443.585671507764 0.0011612836691507473 2.159063980749042e-07 2504090.5444855285 465.5616747875871 107763 30202 162098 SC_20200713 154535367.90269253 16652.842930556926 0.0034655352312202127 3.729913557157438e-07 3971650.8074644916 427.46396162999395 106752 30127 182860 WIN_20190923 49245324.06994392 4902.419575761452 0.00023479839544731043 2.3374407051588802e-08 6014778.773528755 598.7770364012836 None 1436 55961 UTK_20201111 57306584.1882577 3746.610859574507 0.12670220150471642 8.294092838855124e-06 4844269.783119971 317.1122746131762 51698 3061 131237 DOCK_20210804 43661565.04457127 1136.3609025844473 0.06315866460184899 1.6441974399804807e-06 3811732.210662387 99.23009585732689 51938 15151 292152 COMP_20210420 125881.56841591674 2.245325151927551 1.3619925794381904e-06 2.4344e-11 216.64095173234455 0.0038721997524741544 2400 None 1922361 NEO_20210203 1679421041.5771797 47157.931060716466 23.68573824443334 0.0006669273293034537 536426538.03210384 15104.343157272258 334361 102451 149199 KNC_20190819 28533514.4281938 2765.554968077836 0.15716879639314432 1.5232484439994424e-05 6946407.254537701 673.2318554755145 97680 6699 203045 REQ_20200422 6872252.880621732 1003.5022537052696 0.008895477939675557 1.2994923181937424e-06 214471.71268151715 31.331013913981124 39303 28201 655698 NXS_20201208 17079388.94861035 889.2277020934049 0.2530127873748956 1.3177832142063558e-05 221199.1219938789 11.520859992297767 None 3520 521174 LOOM_20210318 138387026.90047276 2351.198964048003 0.16561428000647696 2.8097706009345736e-06 34459545.98129899 584.6320692637157 None None 239350 BAR_20210819 65152807.55352808 1446.2185913431513 22.098847110232736 0.0004906000885354127 16086985.760685654 357.13522063356123 None None 38736 BLZ_20210106 20847379.044766072 613.693729080007 0.08185906923887798 2.4014880670415608e-06 16025954.298845423 470.15118018654624 43200 None 444357 QSP_20210429 59998591.49785085 1096.2988993088936 0.08414158688893869 1.5367772717528377e-06 2733130.9001637995 49.91840067909706 64009 8410 217402 BAL_20211125 226253321.5956821 3957.3788047763833 20.969977420515526 0.00036661474680837547 32796171.271120463 573.3701942417426 109910 None 3310661 LINK_20190905 647254906.8741812 61294.900620776534 1.7770116193732683 0.00016824698197414592 290187940.97103137 27474.916169027096 32291 10533 94033 BTS_20200317 35778949.449274495 7105.747219314949 0.013201609610921955 2.6218573274848435e-06 13269383.347895363 2635.317282303364 13314 7031 131725 BEAM_20210429 108952596.23736098 1990.4417351637794 1.2733745085812167 2.3255588975563274e-05 33749066.8740888 616.3578917620124 19409 2220 172330 THETA_20190813 124404619.5872636 10930.9520999048 0.1249213744163746 1.0975120736448316e-05 4429224.847596059 389.13498749395524 None 4022 242693 ROSE_20211120 404890455.52578795 6965.132723269669 0.27029653498073114 4.633837723338877e-06 455550178.3209972 7809.739778307086 46692 3675 132320 BRD_20210930 11418812.021051783 274.9855611162005 0.1340260574562039 3.2241840169372056e-06 152285.5237561745 3.6634409832283046 None None None TNB_20200318 2939618.634102779 541.140479177582 0.0009456146974142715 1.7465193695493184e-07 296063.7627463876 54.68200712955797 15153 1446 1775001 POLY_20210523 223738626.0779545 5952.184593448429 0.29719625768031105 7.91340072652272e-06 60881266.47213652 1621.076463386927 46522 5572 144088 SCRT_20210304 229846949.68063873 4520.491958684972 3.285951356707111 6.481609397499243e-05 2948746.702857917 58.16465998827738 71473 None 125864 SNM_20211007 76211647.30512598 1372.15628546086 0.17309620239315363 3.12e-06 257404.1996138937 4.63962289 None 9719 None COTI_20200518 9257767.114809629 950.572494372915 0.018677545207982177 1.9102352883111656e-06 933357.0725250797 95.45856249729455 None 958 239243 CAKE_20210513 5073143111.690934 98358.29920480953 30.385600732990824 0.0005913654020269098 576926678.7503136 11228.162981448073 664579 None 1709 RAMP_20210806 66842798.00851195 1631.4404218958514 0.21861196212760914 5.34295895913527e-06 14527755.002500165 355.06382171997114 30968 None 118954 TRX_20200411 822081286.1544182 119895.42501993252 0.012503990535984909 1.8220588496091901e-06 1179810214.78009 171919.80724176526 504100 72475 50971 KSM_20211120 3195825936.129091 54976.23246441018 357.1321360003236 0.006122506765145411 114009005.43558925 1954.5172128286508 189698 None 76536 SNT_20200707 93086475.04267745 9963.00669916173 0.02398836849237941 2.567465100402216e-06 13215543.00296044 1414.4540698440833 110578 5704 151682 QKC_20190723 58613069.83362429 5669.253789788605 0.014675095506535762 1.4194740327186255e-06 4510628.138799578 436.2983199274173 50984 9228 202056 OAX_20200414 1863544.5599685735 272.0930846955544 0.03506645716732033 5.121122052056333e-06 616463.1265093663 90.02856765321626 11983 None None MKR_20210603 3229082978.4415274 85813.72612209097 3579.163224182203 0.09505466463909396 145113372.86526728 3853.890456618524 156085 27628 30046 MDA_20190510 14392317.545763982 2328.5801172262886 0.8099183117748431 0.000131195867789459 1111483.4161292883 180.0453566645778 None 360 1527812 ETH_20210826 378980836224.52765 7731626.966934729 3231.4414517287996 0.06593331871609577 20438475652.044525 417020.2522210236 1522057 1078014 3885 BAKE_20211120 380436271.1186791 6544.459334430113 1.9822910397182205 3.3983472999895304e-05 60412701.385948464 1035.687174720798 None None 23826 AUDIO_20210704 201719800.6807627 5818.748128897 0.870096606661775 2.5075642505705408e-05 17072206.71837138 492.0103689357256 52178 5730 30965 POE_20190419 14131739.495960549 2677.6503726403625 0.0062137537960384095 1.1773318516014607e-06 242838.71539702 46.01111724464701 None 10923 725975 ENJ_20191216 75295725.05828933 10580.832012653678 0.08591685737205174 1.2083606593417756e-05 11718358.372761235 1648.1053524100555 49704 14243 28712 BRD_20200313 5875589.48902399 1220.899321732763 0.0932997311541469 1.9469597121884977e-05 388439.5606031763 81.0587732418104 180 None None WAVES_20191017 82484940.56192143 10299.96637791011 0.8246003880381589 0.00010299575506760477 17438780.33170172 2178.170631225312 142038 56897 23523 QSP_20190224 0.0 0.0 0.01657458441370293 4.0280672737572405e-06 109858.06018182414 26.6984466054553 56573 8571 788091 GXS_20200421 24936565.29475544 3641.570001449824 0.38396014483068946 5.60797905844529e-05 9408370.541791478 1374.1516061706357 2 None 503557 STEEM_20190716 82139913.29212193 7498.745673878282 0.2606041527987779 2.382799576267436e-05 1637173.8001976877 149.6928193772625 6001 3761 334107 WTC_20201228 8099052.678525012 305.0061310949333 0.2766011387141337 1.0517829522779252e-05 1947587.0751498027 74.05750002484419 54815 19193 825583 BLZ_20200801 22015806.898089275 1942.5186369729743 0.09249357538373948 8.159860575083992e-06 5139398.721197888 453.40205339399483 37856 None 329080 BCH_20210421 17822469213.046776 315450.03656015114 943.627681031061 0.016738712356720534 11541408959.076822 204729.39554525973 None 506276 311242 KAVA_20200807 92821424.94487894 7884.881736185174 3.3899594714183685 0.0002881096885408946 90839950.84124799 7720.407917735887 None None 136453 ANKR_20211120 1063156087.923842 18283.509496328737 0.13025583282896155 2.239436302339443e-06 195054560.1245812 3353.4948369906406 140145 None 5363 DOGE_20210318 7517749272.836182 127572.42596316295 0.058368718899507586 9.90487817580926e-07 989940708.869474 16798.79618311979 665028 1220807 11688 ADA_20211111 66854245720.62231 1031375.7105619385 2.0970951137018767 3.2285729281731745e-05 5390860586.368477 82994.7408440688 705228 655353 6435 ICX_20190716 135643852.9188581 12385.28033714503 0.27655049625446826 2.5289029522977177e-05 16250505.407008272 1486.019792287726 114148 25606 240617 OMG_20190207 143557470.98025107 42137.95662440512 1.0235816613668385 0.00030042587524240443 50528269.68651956 14830.277073141679 287674 37129 None GRT_20210420 1934114220.8725104 34565.57364120671 1.5630132058675643 2.794574269439017e-05 322747531.2554364 5770.533115046694 None 13532 26419 FET_20200308 11963206.207523799 1345.8539443164073 0.03519047625705959 3.956251016479871e-06 7253179.96503529 815.4308682772004 16582 358 523257 AE_20200410 38738027.66543774 5315.225353308571 0.11019905984266623 1.5113466043786683e-05 9153441.214847332 1255.3666354495604 25323 6342 695802 KEY_20210813 25805418.69995704 580.4851660137657 0.009237964227162119 2.0780523890675562e-07 8795635.506445462 197.8551867931547 32348 3875 196359 TLM_20211007 243620599.54299915 4388.313622015589 0.1961981491781102 3.5367077925725005e-06 76494525.22103947 1378.9058896411238 66965 None 16687 POE_20190811 5970092.39430066 527.324350064361 0.002371743838702169 2.0949060678805108e-07 187180.33206912508 16.533202576129476 None 10774 756599 ARDR_20210813 259083118.18785536 5827.997159096344 0.25934259174761176 5.833833939121605e-06 30977568.04482709 696.8311166845789 72610 7001 None SKL_20210325 387679465.39320755 7336.55598629025 0.5856512735857857 1.1101144381711808e-05 92819545.57331775 1759.41421683487 None 886 169280 SKY_20210112 10205157.144783115 288.523022242183 0.5322510509200812 1.4973278723566563e-05 1168770.9696900595 32.8798477014377 17208 3819 758913 ONT_20200105 337138121.3416029 45877.19727053056 0.5296360196832285 7.202715043476399e-05 68440398.31509168 9307.461505742407 81570 16277 336672 WAN_20210219 153480728.2440484 2969.418545162466 0.9351198853708137 1.8087268597086045e-05 11271891.903675936 218.0231001913303 105202 15864 363625 PIVX_20191015 16035761.660208575 1921.3611944347413 0.26149865281695883 3.1328450855053624e-05 201349.29949044067 24.122348493325227 63028 8582 263500 DUSK_20190811 7747262.729785806 684.1052867350011 0.11557993472578171 1.02125361164917e-05 3153728.727859577 278.6605530734827 20336 13252 227094 FTM_20200319 4836655.538036947 898.1442023027668 0.002283026703806571 4.23743285250767e-07 1861543.2857784457 345.51346518945417 21289 2319 333169 LTC_20190706 7405601753.833105 673800.0556757512 118.48818581293699 0.010782984874837998 4497505048.182784 409294.2142402813 449278 205632 149931 DOCK_20190629 6347932.16780712 512.4457176371517 0.012378484623057776 1.000161446337113e-06 2748264.0559463003 222.0552706420503 173 15251 251058 GRS_20200411 11398891.452984234 1662.4571785409885 0.1526018877560792 2.2250053551616672e-05 8553176.180831727 1247.0922270903345 37483 106842 None ELF_20210114 56938432.36384227 1531.74275853352 0.12305777071389712 3.292448936084739e-06 19369843.057190824 518.2461765380751 40383 33332 479481 GRS_20200105 11783108.124395946 1603.5272346318225 0.1592564528307005 2.1658471354946754e-05 5010985.646449328 681.4812659368131 38021 106901 4090330 DREP_20210602 0.0 0.0 0.6214034373251767 1.6940322620338163e-05 2439938.548643646 66.51612093705482 4018 None 183665 KAVA_20210602 249047056.0624945 6787.493913057168 3.5436298008272233 9.660428067707063e-05 104489248.24583519 2848.5223436489914 104162 None 74195 BRD_20220112 39558169.184797205 923.3006676330681 0.46048651282423164 1.0764176219425498e-05 1235684.2882279542 28.884935952810686 1129 None None ELF_20190405 73291110.50072427 14967.930743778768 0.22154975156899012 4.526246892047082e-05 29851520.535691135 6098.646064402244 85727 32206 1025647 STEEM_20201015 58136479.456665084 5087.184631517865 0.15860516423886015 1.387861393631041e-05 3572954.115686003 312.6483997020309 11720 3849 174013 STX_20210809 1361191448.5234852 30941.55825671769 1.2935567181696657 2.9412309936208902e-05 10744808.696438203 244.31061981733842 70566 None 61340 PERL_20200315 5140631.68338762 994.0463350361485 0.0149006765784599 2.875967001103541e-06 1856117.5943737144 358.2476891890386 11558 476 686395 QTUM_20210422 1650914708.2811637 30469.005568015924 15.828385409292 0.0002926411535355593 1059658359.1930767 19591.363020881276 231635 16148 88405 FTT_20210916 8576318489.490886 177959.79800486963 71.13598590845505 0.0014756547872788268 520398128.9308365 10795.211178150817 235505 None 1201 VIB_20190131 3777684.695781321 1091.3300247033344 0.022598606114376103 6.52983062586334e-06 950745.8425519266 274.7164709489964 32830 1122 2810248 BAT_20200430 281878708.90220237 32286.60194600659 0.1934538292224299 2.2065259955294073e-05 109765188.87061836 12519.769891385167 115800 37472 18644 ONT_20200523 322735627.5883724 35255.51544986894 0.5058213883761276 5.5268480646245223e-05 126986152.61272141 13875.118528595158 84741 16467 164481 BAND_20200317 4458647.248377399 886.6173583002613 0.24679577372122735 4.9008657710446174e-05 3157548.35201043 627.0253499667303 8596 1059 702901 ZIL_20210930 1036261825.3185688 24945.282046332602 0.08292387224082823 1.994849573104751e-06 132910833.00161998 3197.3557349597104 None 37381 65956 MANA_20211230 4290033177.1319633 92498.92800534416 3.2585024930271618 6.996139832181545e-05 610800888.6375445 13114.148096167772 428101 75223 4163 LSK_20210626 276163680.1963997 8685.552280291788 1.9045746268201433 5.991270348202648e-05 12131385.022575242 381.62015992901524 196387 32548 424383 WABI_20190213 6764721.094234619 1861.6197080619106 0.1288622902413522 3.546367580071352e-05 383647.0707756118 105.58197680948592 34721 8121 2083509 GVT_20210112 9704825.609061211 274.12654530949004 2.200388181516481 6.181424890997481e-05 747398.8016154837 20.9962478194352 20921 5449 383832 OGN_20210620 175312725.67372516 4917.7307226591665 0.8298838721942159 2.3316037645798295e-05 70658372.5777573 1985.1853135281517 None 5816 46943 STX_20201129 215816087.76055163 12191.804981688903 0.23531751597125478 1.3284040789816164e-05 1008446.9340334613 56.92840225162826 44826 None 113475 LSK_20210806 518194127.6956421 12646.170154043804 3.57928295214626 8.739195779627621e-05 134209523.24958682 3276.86666533397 196522 32609 284613 TFUEL_20200117 0.0 0.0 0.0025839733388098715 2.965470333548054e-07 666476.4464965876 76.48748152349191 68591 4019 536421 PIVX_20210220 59667341.29621708 1066.748476044011 0.9134764607722924 1.6331373264870113e-05 4323860.587322843 77.3031208019627 65589 9047 316171 SCRT_20210324 188767555.04087105 3464.1110132382614 2.715540054312298 4.9796778440114894e-05 2136826.901248307 39.18450607913662 73495 None 99047 YOYO_20200501 1425533.3661601774 164.7226387687657 0.008179349532527845 9.489130297054622e-07 424330.21172753617 49.22793251525174 7457 None 2248259 BNB_20190810 4622750237.115406 389832.0325565982 29.7407859153171 0.0025074722524296143 208858962.09548962 17609.085839791765 1020930 55410 791 XMR_20200410 1023987380.9177953 140436.75629231866 58.45753745378177 0.008017273546366973 125483259.64011154 17209.647580860965 319731 168469 87089 BAT_20190130 138771218.88071784 40654.82130149548 0.1126643629766884 3.30034918583386e-05 10018707.261936871 2934.843945452629 91711 22386 119575 LTO_20200430 9183337.286597302 1052.270550674196 0.04340283598301667 4.949784145102251e-06 3391816.583758449 386.8125104993558 14696 429 889154 NCASH_20190807 4064885.625883114 355.5806473281577 0.0014020545594538663 1.2243644760943817e-07 476384.0632012723 41.600929152738196 60007 58997 884408 ARDR_20200506 38713662.368618764 4316.944725096053 0.03912291974782413 4.347885433371067e-06 1809177.9837532388 201.06113379673883 63914 6328 1091429 XMR_20190909 1324052178.3867135 127396.54879754611 76.9869889386911 0.007407469926943872 56485270.913460284 5434.852711799644 320323 160887 87781 GO_20210110 9138802.315061077 225.84090001896882 0.008860485407039672 2.1987798332050218e-07 572023.202535431 14.195081015098452 None 687 698826 KAVA_20211225 580620675.0479804 11419.187229193962 4.002309898991338 7.872345145085169e-05 50828513.19919755 999.7716549046927 None None 47415 YOYO_20190601 7360529.184125487 858.0245714597412 0.0252005638686459 2.9384404784353493e-06 433202.0181226818 50.51229615442612 7470 None 1718266 MTH_20190701 7267018.018851079 669.7396449295417 0.021258640407573935 1.9615001505979126e-06 370518.31112928555 34.187121525440865 19561 2006 1459879 LOOM_20201115 23072510.72542191 1433.7468969772326 0.027677970125907694 1.720618272893263e-06 7213953.474011215 448.459916342166 None None 386788 CRV_20210711 621951613.5146368 18446.1005951133 1.7530104714348365 5.200396215077032e-05 88933972.52785458 2638.272284517906 140609 None 15400 NULS_20190725 41164256.42221852 4187.579842660539 0.5610172346066177 5.71386188489059e-05 4176176.1075869794 425.3361931467927 21323 5311 418042 ICX_20200314 99987473.1841493 18047.60740210875 0.19228234753634452 3.4737716810973604e-05 20751623.587189775 3748.9870119432753 112556 27524 143772 ALPHA_20201101 4961896.910803444 359.69581489804455 0.028468426592040855 2.065370858003994e-06 3529359.585165975 256.0533653326958 16204 None 226160 ADX_20211225 86622727.17290826 1702.5963157344643 0.6265591962638202 1.23215323838458e-05 8754261.483336056 172.1559862288909 408 4052 12336 ARDR_20200704 49066485.62627499 5411.080653794644 0.04898986937836695 5.4048055601145554e-06 2707874.3179053306 298.74613578718646 63021 6304 1411218 DGB_20210610 944945086.0279932 25229.717875448718 0.06568448700065234 1.7537538427613392e-06 60724141.924778506 1621.3142876172208 220091 39215 96410 GTC_20211028 114409404.53455651 1954.6471890537123 8.05485591746911 0.00013753910767886262 21886151.57434373 373.7126757948759 None 1363 26508 AE_20190105 88086581.55816102 23118.800476182547 0.38868984780151156 0.00010201717983850088 8902305.60183668 2336.536744390715 952 5110 430019 DCR_20210707 1843585266.2670934 53972.566044188614 139.79682261575482 0.004091313328533905 83581370.06758918 2446.1040456874766 47102 11373 133920 NAV_20200331 5313524.335160439 826.6254937583493 0.07772937584692607 1.2106410385267028e-05 157857.486210882 24.586425526162838 49404 13960 1199992 ADA_20210519 64019956901.87918 1501958.1562246883 2.0127268590572336 4.704734930487134e-05 7411999746.111534 173254.9747292914 447211 455868 6251 DYDX_20211011 1276939054.6801734 23344.15833500108 22.70319058283896 0.00041494382122875 638963427.5951443 11678.267215541067 None 1904 21030 CND_20200331 6570141.264272404 1022.5974590264993 0.0033981497594031186 5.300450513372287e-07 13992.273100977032 2.1825215600370136 34748 5960 426198 YGG_20220115 396202094.1701364 9193.708337637936 4.514131014138723 0.00010466214690102831 33028839.522726826 765.7884193593085 None None 47221 ZEN_20190908 30290998.79248662 2893.4541428145944 4.161859075426794 0.0003975487393499586 5153441.284293098 492.26656855858494 26976 1788 209860 BNT_20201014 86594340.2202454 7579.794607851977 1.313827282010677 0.00011498403621594846 76238088.0468012 6672.2340120631 85777 5225 70667 WAN_20190712 31548560.924512915 2778.375028729579 0.29824702981012047 2.620970816991398e-05 1702879.473317736 149.64767318088533 108490 16955 459878 WPR_20190712 5020535.492364239 443.6610454787568 0.008261951755146388 7.294335509555052e-07 212732.89142827448 18.781822140621877 34771 None 1294750 PERL_20201130 0.0 0.0 0.020499604380859175 1.1300859920166347e-06 1000058.3364324283 55.13042574894704 13309 504 372456 HNT_20211221 3511594418.636073 74427.77454075262 35.015428549186005 0.0007429599633259544 27957349.15809572 593.2011106479107 129661 78094 2009 REP_20200807 64081547.88611853 5446.648151111914 21.417470515235635 0.0018190564054891925 14581742.226977581 1238.475457795394 135181 10338 153322 CTXC_20210616 38655524.8361134 957.171821951028 0.215738456284478 5.343146720585283e-06 8553638.579992615 211.84607841771955 19864 20575 541278 NULS_20210710 42477912.83921104 1249.8430841388451 0.37489092248254596 1.1031839347563626e-05 27955074.064196095 822.6283100781455 56248 5366 232645 YOYO_20190507 5656640.989187429 988.8122406698315 0.019331462231060886 3.3806151234673832e-06 496786.6616356101 86.87622702248382 7474 None 1472428 ZRX_20190830 92286668.33012575 9715.674339993688 0.1534983327381213 1.6184731552687774e-05 18575439.862886168 1958.578326494386 151218 15910 173586 SNX_20200927 656519823.472522 61142.51453106465 5.250733603533498 0.000489124977688601 52232191.51039611 4865.619061297753 None 2180 29391 DNT_20200730 6209392.641111946 559.8474309524778 0.008265725692125926 7.452492636809507e-07 352908.9312288162 31.81875747404124 58141 5986 528666 WING_20210220 34045675.62856578 609.4822500614333 34.969387197929436 0.000625502180965297 12853640.931903018 229.91482209119764 None None 342300 KEY_20200305 4180423.2214684268 477.535748164044 0.001679347280010297 1.9176198217921876e-07 2401955.875844155 274.275502953786 23518 2765 281483 VIB_20191011 4374686.727515963 511.13448438959847 0.023962499459292786 2.7997570040326867e-06 556492.8347439049 65.02012506729693 32151 1119 9150320 NXS_20190201 18501363.98536541 5392.069256018351 0.30986466319315686 9.030748896416045e-05 413538.885941112 120.52248227833077 19 3504 881147 NBS_20210428 0.0 0.0 0.03271936202622663 5.937577248728138e-07 12570697.634977158 228.12024335392826 None None 497911 KNC_20200109 33726698.975237295 4191.026302902212 0.19903722056370735 2.4766365698835905e-05 18480751.91473994 2299.57522022074 98851 6773 195958 IOST_20220105 757698746.7472944 16379.130160451377 0.03283455597085077 7.137556399925504e-07 55953313.29716976 1216.3098224193918 271509 53972 226297 MATIC_20211111 11650100493.49729 179396.59901854812 1.7021584575360686 2.620467072178517e-05 1446005825.2628653 22261.20978633605 852768 None 13730 LUNA_20210814 7283372509.66914 152860.0908295717 17.74216993534825 0.0003716480097448651 302096401.1403063 6328.060583570185 100708 4617 19567 BICO_20211230 311258833.94569933 6711.145411785084 4.809399143346482 0.00010325979184495794 116710084.3721224 2505.8138572560183 None None 58312 BNB_20200117 2603726452.038203 299199.08361628087 17.013462282038063 0.0019525324395011094 180942925.1164076 20765.728052954782 1087367 58483 1770 DLT_20190730 5191083.506310384 545.7435814669908 0.06474856177729298 6.804579770039861e-06 1887476.0412584888 198.3593292922621 15057 2666 2867435 NMR_20210708 190152358.41368234 5596.442386781328 33.056049021919925 0.0009729075556889745 31417944.243974123 924.6947606747591 29406 3519 578267 JUV_20210221 0.0 0.0 10.995581701135293 0.00019679393395100446 4153617.7450496503 74.33956641808443 2310743 None 93564 ATA_20210723 65558218.924693584 2027.0114117272724 0.3810207280944437 1.1769157852289969e-05 15628920.63091391 482.75387768547876 None None 91785 UNFI_20210506 66245992.979685254 1157.0698374726494 27.019778297552936 0.0004713204309145172 14461556.265608622 252.2606535013091 None None 94770 IOTX_20190302 10390920.405734932 2717.8234842054003 0.007827220659060462 2.0488717334925313e-06 1153559.55018858 301.95846753673123 13563 1627 1423177 VITE_20210210 17252618.51130486 370.3873043001099 0.02970229863103251 6.374630393279382e-07 2049596.2762176676 43.98790436602384 None None 688715 BQX_20200207 4194397.24892902 430.66366201015336 0.02995382368616419 3.0759893000579332e-06 757844.0742025936 77.82379597955115 9707 4 366642 QTUM_20210120 327893715.5430164 9055.29194303313 3.1603472036295654 8.768540055014509e-05 420135664.2769461 11656.872373141761 189711 15037 257313 ENG_20190329 41889709.46790647 10404.634387030066 0.5399017279918663 0.00013410070504543654 3098169.4810417285 769.522841320132 61671 3324 352140 ENG_20200610 26790558.36266646 2740.760070681386 0.32394381275172623 3.3173034953217033e-05 1445567.24791439 148.03138987266942 161 3578 513025 ALGO_20210826 3665592939.4997897 74783.69063837943 1.0644493735229839 2.1722743239041418e-05 195495071.57958892 3989.564323163874 122610 37924 238182 KMD_20200224 91632760.44614747 9210.240049028158 0.774022792450467 7.778589519449507e-05 4276135.331809676 429.7328424975429 99939 8408 157439 PIVX_20210523 60350056.80393038 1605.510343113197 0.9202118741071159 2.4482490990875555e-05 519340.04272872873 13.817185232090349 67575 9765 215211 WNXM_20210117 61148503.77641722 1685.1967131176198 32.669889483910374 0.000902745529925477 21288380.430221207 588.2477895188438 18404 None 131837 LPT_20210729 336046117.62523276 8403.87679249258 14.04418548887447 0.0003510280272414787 18457550.903837148 461.3380880376265 14300 1215 114263 BAT_20190701 374455104.5368612 34512.84435377407 0.2928070716889194 2.714673572014374e-05 44024522.45743545 4081.602501824958 103338 28306 46382 ALPHA_20210610 208633401.62916398 5558.400403691252 0.7290583298709519 1.9465613663019818e-05 32370387.001640715 864.2785106205565 66480 None 41375 BEAM_20201228 21770099.911083244 821.3154184409717 0.27804730694593355 1.0572820442173295e-05 5876427.88939651 223.45268364009002 16400 1610 396725 NEO_20201030 1076275434.7187266 79901.00354037865 15.266927773263836 0.001135370352452211 253105285.74256703 18822.925067105425 324366 100977 83823 AE_20200801 58274497.24721021 5141.728281272332 0.16060853173142636 1.4174295075363815e-05 13227092.346561303 1167.3396667542106 25459 6350 394812 REN_20210806 382426670.9670104 9333.934964050955 0.4336760832419706 1.0599207343319227e-05 44250523.1442252 1081.4995061516872 88540 1185 110606 SNM_20190909 4455076.181494036 428.53575341938046 0.01018066963587207 9.79283126704954e-07 61181.16595483799 5.885043482856937 30982 9898 18762051 SNGLS_20200721 8385842.169230576 915.3063739393745 0.010527096192439344 1.1489535060250642e-06 597457.1512344453 65.2079620117443 9091 2128 783082 ETC_20190623 1021989059.6725851 95195.99251020583 9.171066915412027 0.0008549906074776338 1415066631.828317 131922.34778431625 227921 24665 633324 XZC_20190103 35515351.94523473 9170.876102383578 5.4651741821401 0.001411694900168581 342205.3933092564 88.39418332238559 59013 3917 311483 TRU_20210408 104789180.32636316 1860.432890517672 0.44169895048582997 7.846570704672298e-06 6831975.365576037 121.36677639738136 22370 None 87666 ADA_20200109 1130075028.1023777 140416.93122627845 0.03622525504485451 4.514452652859594e-06 97790326.68355764 12186.796177803593 155136 76076 69067 CTXC_20210418 4505102.283863363 74.76271401592813 0.45057911813505835 7.4773208732116144e-06 41797119.018640436 693.6195174151661 None 20480 377528 CLOAK_20190225 2818941.1691594007 750.1057713418571 0.5344284221803196 0.00014266208953309618 110520.10738144493 29.502602780993566 18057 1380 1179717 NAV_20210318 40851595.24441424 694.4845125614657 0.5861833573411035 9.947236897809449e-06 1151772.4115145046 19.54499882368578 50082 13777 461949 HC_20190712 160397153.14443848 14174.178982323392 3.6443957692611377 0.00032114115848182157 80911313.24905924 7129.838391936343 12960 842 542452 VIBE_20210207 3816564.8733453946 97.30973488283654 0.020062985222893664 5.10008457072134e-07 545678.2911966754 13.871342687 18537 None 1388875 GAS_20200718 23793379.34125183 2598.851557407314 1.7065429434983956 0.00018643609663182396 9821698.382156074 1072.9991387796567 319830 99806 192818 DLT_20201129 2861166.405867627 161.0975443595264 0.034983744448466254 1.9727034209434764e-06 64211.53216166939 3.620833365792 None 2537 None ETC_20190915 709723219.0249317 68559.77868712637 6.2542032942209556 0.0006041808484932759 603084919.5102226 58260.39564781572 230160 24973 350041 SCRT_20210110 47705869.379623316 1179.0970355150066 0.6855159539065864 1.7006120945241387e-05 394479.34172208735 9.786152105570373 None None 361970 DEGO_20210823 60219502.318929724 1220.6478544670797 11.09166488694741 0.00022508369543283678 38848510.69912616 788.3547185518997 None None 274758 REP_20200316 83594288.15384482 15473.024807694763 7.533986760346402 0.0014020358728331099 19651828.96157629 3657.1034762003974 130563 10105 262137 IOST_20201018 92264354.85727967 8122.358625917026 0.005513448102267993 4.85181974899355e-07 19814363.57512755 1743.6587544552422 None 52180 261548 KMD_20210203 94335774.81346206 2648.9366603592557 0.762667838656058 2.1474695849941027e-05 3400662.704837185 95.75360802325638 97014 8497 251504 IOST_20190904 87200227.88202494 8216.930150946157 0.007258238513409827 6.839481998176042e-07 27800157.76010288 2619.6256597987294 196282 50750 94352 VIA_20210207 14853710.025516663 378.72198962811626 0.6483421806046953 1.6487401875333216e-05 2280914.2901758575 58.003862266442546 37745 2137 2708625 IDEX_20210127 25300242.35907006 776.3347875103979 0.044960925499589854 1.380366099076026e-06 3668688.28082938 112.63409003848419 44747 1936 441014 XVG_20210421 982857750.4810514 17397.091634684308 0.05945223593361535 1.0531440992829504e-06 155161426.92609307 2748.548286493363 305039 53331 130279 FORTH_20210722 118683978.76183559 3687.9910678864694 13.901027447515688 0.00043043406556258395 17980343.117210865 556.7467741051348 31265 None 61730 ZEC_20210519 2820302153.344507 66164.88564748807 255.93802364284372 0.005982533369859942 2185445595.872172 51084.637676048915 75709 19537 84250 ZEN_20190430 46603066.170533575 8952.473133702366 7.35077016482128 0.0014117478728365286 1942029.9354285335 372.9754255475013 None 1598 245481 YFII_20210723 101857799.09214053 3146.329873393504 2563.7004840078266 0.07918885629445709 36036735.70191123 1113.1206249018546 17577 None 545530 MKR_20210722 2193178085.3626842 68151.34275265137 2442.3133202381046 0.0756250558964629 81655950.29664981 2528.4371805583514 167696 29009 30327 XLM_20191113 1541800376.4603734 175309.6325576801 0.07670117653785645 8.715572683681376e-06 278833206.08260894 31683.88261994191 278222 104974 59559 KAVA_20210204 121778576.41631602 3249.218202055596 2.610446790035966 6.959424661823866e-05 67982379.11083686 1812.4033309520137 57062 None 91263 MATIC_20190704 41923684.088597976 3496.43576870337 0.019345337537531346 1.611938031193245e-06 46923166.17563198 3909.8431834420057 19499 866 197160 AION_20210727 58321234.70276728 1556.8993200097589 0.1179646521852287 3.161603892366048e-06 6359985.005900178 170.4557507487108 73577 73390 347500 GAS_20210506 222039773.77260473 3877.352375588618 15.984772339297798 0.0002788309254080967 30776655.492208477 536.8536473154207 388841 110225 84803 HC_20190920 96412141.88769524 9408.167663532413 2.1760094353068586 0.00021232193374789242 50440499.31519156 4921.681027683805 12893 849 356881 VIB_20211021 10977011.914693298 165.59927511377418 0.060115565909025434 9.072589106004538e-07 1599964.630246338 24.146527533871513 33007 1303 4558031 PPT_20210324 106092905.29891534 1946.1427177797727 2.9273466477204004 5.370101040653873e-05 7495406.726643738 137.50025639846288 None None 629380 POA_20191026 3793617.0077297525 438.1536916873251 0.017229553653445806 1.990068506220753e-06 310292.3823961974 35.83976174585244 None None 624364 DNT_20190509 8871101.482177777 1489.2383897208433 0.0152595614766166 2.561989082458056e-06 446100.5485214009 74.89761332537245 60914 6409 1175150 XVS_20210806 298772419.04118186 7292.212898527092 28.259926201201974 0.0006906832746557398 32644798.301392302 797.8512056525741 119498 None 14321 VIDT_20210610 22109729.031765804 589.0285134673923 0.48227049930520854 1.2876461094969645e-05 3450449.635030609 92.12585167376422 28066 1602 374024 FUN_20190708 24718719.28753512 2161.489331352735 0.004113982928107399 3.596980068902555e-07 1853205.9901589658 162.03142129321458 None 17573 429165 HBAR_20200730 215674900.0964167 19422.64190963505 0.043667411264589714 3.937114211616031e-06 17211377.890208617 1551.8016417882784 40797 6589 140094 CFX_20210821 290128559.65608484 5905.073860705614 0.3343344363324325 6.798134940903686e-06 13560045.164390378 275.7209752112274 37800 1212 203830 AMB_20190904 2616110.002576835 246.17220245943037 0.018093176303547544 1.7025419633516572e-06 301241.9302767376 28.346433971167336 19275 5608 670257 NANO_20210120 467989632.6282711 12924.257309243436 3.510763220127547 9.740786671795204e-05 74922749.3386937 2078.768838606229 None 56403 248633 VIA_20200725 4959991.4884844525 519.983962965469 0.2140704377767203 2.244221483995008e-05 409538.5628884204 42.93424402286076 38573 2154 1442044 FIDA_20211225 225209765.8987101 4430.752554867882 4.5812730432237725 9.00925315563532e-05 3156692.9508100473 62.07760519867372 None None 437544 WINGS_20190225 3707093.3382261987 984.1892850860338 0.04124611231579238 1.101037355775649e-05 136501.429503325 36.43814278767616 37294 1222 1388669 NKN_20191203 13447704.951662684 1839.3758300679756 0.020686640955324558 2.831442407303049e-06 1487699.1441249677 203.62583055803782 12018 1003 263296 GO_20190712 9261568.728980817 818.4380473601643 0.012558265145842818 1.107621236493374e-06 379051.698732621 33.43182409109444 10034 677 942776 IRIS_20201018 54359355.99794497 4783.944632034593 0.06448070313938516 5.673779530653452e-06 3684380.947987081 324.1956769706837 10775 None 350079 STORM_20200530 15321749.574579513 1625.6952544901094 0.0020059217623920114 2.139468697900404e-07 9401895.93848997 1002.7839788392108 25681 2517 825026 LRC_20200109 20831587.21291232 2589.1118635585744 0.02158811088282531 2.69034695061563e-06 1539461.598831355 191.8503124467815 33861 6826 1058807 FTM_20200410 7963132.551669471 1092.5310379274933 0.0037932339618162595 5.202305061395106e-07 2173222.004140272 298.05079110545495 21465 2332 311485 TFUEL_20200217 0.0 0.0 0.0035770171439714897 3.5874967918758006e-07 1183414.5963524517 118.68816662029546 68490 4026 394395 PPT_20200506 10167119.460700465 1133.7313506373448 0.2796428056347183 3.11671034603363e-05 1807295.0318697607 201.42893043068278 23732 None 2106075 OXT_20210108 0.0 0.0 0.28548192833456737 7.23427407005177e-06 29645968.00163472 751.2456527352172 54465 1827 172682 OST_20190730 9594827.491033794 1008.7134048507129 0.014728972862690044 1.547637392357552e-06 303166.1306387122 31.854987054890547 18091 757 581011 IOTX_20201229 37462123.04594935 1380.509978550045 0.006515929780162439 2.399985522601564e-07 1957512.3042797523 72.1002427756168 30695 2011 501442 BTS_20200325 46670075.29094222 6907.529497551203 0.01722018460538805 2.5487195461645385e-06 14164703.618088914 2096.484898643584 13290 7026 131725 BCPT_20210219 374511.5529628148 7.245697455247397 0.003213826534158677 6.216245067307004e-08 7175.284898721791 0.13878573994 12398 3278 1170393 QTUM_20200903 333454565.5268853 29228.877722145542 3.23950041524191 0.0002838953340684677 427835954.9156576 37493.630430114456 185122 15098 78545 DIA_20210429 155831701.89091843 2846.8704172000507 3.7595913282972884 6.866126976610296e-05 40079453.227829315 731.9694907904332 None 357 265172 XLM_20191024 1202021766.5553553 161024.5507139337 0.06008982011962676 8.048651646099516e-06 263268322.08124924 35263.12792527404 277229 104594 61021 XMR_20201124 2305181283.493739 125559.87483360726 129.76669054736857 0.007068203069046522 381058805.1304531 20755.71939570348 326352 184247 74604 BCD_20200407 98000423.36664724 13473.947606417416 0.5267984243342051 7.229633402427973e-05 12027487.351018874 1650.6185342164476 28879 None 841501 TORN_20211125 72094219.60153224 1260.225055954205 50.588239027630905 0.0008845236950731121 3135206.454438434 54.81836195923471 28290 None 86399 STX_20200711 107076976.19780347 11531.863820389242 0.1444615848367014 1.5559971255676354e-05 1647567.2425829428 177.45962682995244 41416 None 98970 GLM_20210207 200904633.1157796 5122.424111444723 0.20236923611367405 5.148283516932779e-06 55571500.128480315 1413.7417505592464 146503 20404 190516 UMA_20201115 455340844.1667403 28295.296084605878 8.200686458174589 0.0005096084035220508 13270968.528895555 824.6867039356648 14717 None 89241 RAMP_20211120 114742045.30224857 1973.263661602739 0.30679270349036525 5.27371246357898e-06 4957745.24497332 85.2227663572394 35377 None 115038 REP_20210902 190283822.08425322 3912.4485032203897 28.921362139957445 0.0005944428163860407 57692055.308209464 1185.788818470973 153619 11396 200931 CND_20210310 39970069.458537325 731.3274500772281 0.020227132438432906 3.69585455143758e-07 356273.33214884537 6.50974338644394 34737 6041 206667 OCEAN_20210325 530458779.3011362 10073.836162195323 1.2426594500777943 2.3621560350416153e-05 140488548.85970607 2670.5295125097896 92980 2334 75514 SAND_20210519 273177237.8282581 6408.951213133979 0.3942179122042499 9.214816076135569e-06 59889688.1262241 1399.917263663916 116656 None 20969 MITH_20210731 25695568.048668984 615.8287950047983 0.041552197336286394 9.950404961275644e-07 6405019.9989695465 153.3794765629889 32679 2748 704497 ARDR_20200607 50644085.17223346 5236.392366307311 0.050704025919386816 5.243697719145573e-06 3251055.0627079923 336.21689220974446 63355 6308 2127258 ZIL_20190819 74449504.3445047 7214.146368338122 0.008018411918454241 7.771556703286391e-07 9893873.526370866 958.9280259894405 65996 10609 159234 YFII_20210117 74235412.89385188 2045.8599324534187 1866.7237272583543 0.05158194677145262 135638956.61198235 3748.0219155784735 13309 None 182757 RVN_20200306 160290636.03005832 17699.669359752646 0.0283384606395718 3.128283546300474e-06 27184009.22433625 3000.8436188740125 30259 7513 183648 XRP_20211225 43438501700.20997 854597.1093988469 0.9138028897022306 1.797790617847357e-05 3956089362.117495 77831.01168456732 2321725 342140 18381 THETA_20190909 110776115.6805968 10665.214590681 0.11099257529378576 1.0679391088506048e-05 1124668.8519614963 108.21245009737501 None 4024 310301 STPT_20200610 9566494.138840264 978.7744408481075 0.013576538952638688 1.3890532026848046e-06 1325943.5703575106 135.66094933395803 11145 None 1498022 SCRT_20210821 251757822.5581635 5123.472216279781 1.7406313524834403 3.540583841447021e-05 4436267.260912441 90.23723580479661 None None 113867 DCR_20190618 286266233.1920444 30712.03105423031 28.767283847921718 0.003087500466604541 6852264.319968761 735.4315894765864 40454 9490 389258 CND_20210427 64431105.59170879 1195.9851983101862 0.033423775763745354 6.200368311502491e-07 1304466.7201706017 24.198864222660923 35646 6186 117159 SC_20210107 207705834.66178513 5666.793751356876 0.004586419545419457 1.2426163978750217e-07 40133032.25300905 1087.3397751813227 107629 30123 159206 LRC_20190207 40386490.84167857 11858.378588767973 0.05118794007026758 1.5029926093652422e-05 1444824.3039747807 424.23278759106046 28568 2467 537095 ZEC_20201101 603064676.3054081 43704.346348888444 58.00338364144916 0.004203609149596298 282314639.6021926 20459.84781564906 71701 16265 172675 AION_20210511 222515233.42424285 3985.3375039544994 0.45415555027142557 8.128005040866014e-06 46789775.00106391 837.3948679969752 73359 73247 250319 KAVA_20200105 14172780.578554662 1928.7304680774469 1.0352861696595086 0.00014078410543253054 5340591.618810691 726.2440430185725 9750 None 303770 BNB_20190719 4551855723.151257 424761.82256199274 29.094265415457144 0.00272683989111303 629518301.4111922 59001.16713590457 1011893 54654 742 XEM_20210806 1526141902.9010584 37244.44016594227 0.1695245052956384 4.137682792961059e-06 71612068.93178235 1747.8772456562401 371976 21749 110067 TROY_20200511 4443635.937832002 507.40958583481955 0.002346730452647715 2.6768048912564394e-07 467921.53303319466 53.37360526149418 None None 489734 WPR_20210115 6262534.029173682 160.54463969824855 0.01034328870742265 2.636934919390185e-07 221198.37924946894 5.639267614534 32520 None 7558136 COCOS_20190914 19523585.21828666 1885.9088218844336 0.0012423365173792182 1.200052844638471e-07 2014390.794924366 194.58297891477355 9846 125 186264 CELR_20200523 9602144.165719394 1048.1000574135808 0.002558762763412819 2.795182571324521e-07 1688120.3419007552 184.4096148908239 19599 None 1477184 XMR_20200330 775153341.9730002 131105.3171126884 44.20292817053849 0.007488767474665204 128265430.33010967 21730.46045895831 319686 167819 83083 ALGO_20190903 126025822.51267451 12203.368686457557 0.3915700393004096 3.7900759217388095e-05 59316746.51355102 5741.373193887744 11841 596 192636 DUSK_20211028 58064049.21677313 992.2138740678789 0.15243428984574142 2.6049121026384866e-06 5306608.129840318 90.68332168155544 29168 13685 390175 REQ_20190821 8265933.532359365 768.1673865686943 0.011317546878885141 1.0527309281364566e-06 267331.30291183956 24.866513357180082 41261 29530 589589 SC_20190810 97497241.07493842 8221.87289145651 0.0023327544841943116 1.966626144322679e-07 7765149.652224297 654.6401013957034 109485 30747 197380 BQX_20200223 6712803.606575381 695.7986991863913 0.04788564564175776 4.9607270128570965e-06 3047845.3814876266 315.7424048966506 10340 8 328951 OXT_20210127 0.0 0.0 0.2997278571644521 9.19912904157846e-06 13123366.988515938 402.777197720102 54930 1868 171899 BLZ_20190708 11449828.461817337 1001.2121493089272 0.055065421350000934 4.815108719426653e-06 568203.221041123 49.68563241623819 None None 875271 BTS_20190325 141062289.8913482 35325.35224135208 0.05216233583061456 1.3072044420351201e-05 15406087.509753756 3860.813689886982 13809 7218 180886 MTL_20210304 86821559.58185735 1707.6494949615806 1.3319561535027913 2.6287746997239988e-05 15679069.98040318 309.4451898532376 44011 3475 320334 SNT_20200629 85493091.25046611 9374.408691658316 0.022386580246438206 2.4546146537446185e-06 11147039.97907995 1222.2361511816932 110475 5702 161883 XMR_20190104 831392371.7519826 220487.27012300733 49.80863453483989 0.013207380956794593 661614746.3007659 175435.40558043346 312290 150789 82330 ZRX_20190426 160961842.49803007 31008.886386402548 0.2738523613814914 5.2729352699062294e-05 60028965.376396425 11558.375730353426 149920 15845 214126 XLM_20200518 1393938485.5295124 144305.28949897186 0.0688451370202015 7.113671489336074e-06 445554365.0640702 46038.507887281376 283179 108589 77209 OST_20200404 5095760.147755294 757.7686551554335 0.007350319408264526 1.0923568979111914e-06 51718.90749513937 7.686129298166839 None 753 766373 SNM_20200927 5214442.708034745 485.7374829014659 0.01191579773223675 1.11e-06 109030.40589920864 10.1565798 29043 9577 None WPR_20190922 4733767.829947061 474.01305305533504 0.0077828018922507835 7.793427323945104e-07 398449.09105433366 39.89930717002855 34386 None 840031 TOMO_20200313 13743651.756859276 2863.4485229697384 0.1942462385204913 4.066749893917102e-05 19873977.677699957 4160.826857091036 22130 1508 211808 PHA_20210723 117725069.8084877 3636.4609022301274 0.647225985610184 1.999183831505909e-05 14012843.513461407 432.83568349196554 107625 None 155093 MDA_20200324 6069826.17964693 936.7231769015664 0.30922924312609706 4.772166293381298e-05 192606.48365008968 29.72390838168059 None 372 1815630 FUN_20201030 19767520.602722816 1467.5104847054404 0.003280609827121372 2.439722772645759e-07 345451.6783220218 25.69053837135118 33916 16599 324351 RDN_20190803 11321430.406826092 1075.948093670197 0.22382204492661287 2.1266170326919198e-05 119153.86151139581 11.321254413712104 25644 4401 836731 BAT_20200312 287640099.1074825 36265.72855758188 0.1999162856635588 2.5184133756352092e-05 86896952.54061177 10946.70435946909 None 35651 21544 CND_20200530 12000743.503970934 1273.3240201972153 0.0061882093429997745 6.600192074473821e-07 116484.23437165798 12.423922299439832 34436 5934 397842 NU_20211028 566095911.3360059 9672.023604662454 0.9357707205271513 1.597843476080841e-05 142199724.7745054 2428.0830501240507 None 9112 228996 WTC_20210916 35067020.79855219 727.6310185169629 1.2037427741008808 2.497613253207989e-05 30311599.217262946 628.9271558661101 65902 20105 358221 AST_20191019 4411550.299451319 554.314816880328 0.02560948060003447 3.217851681522025e-06 1090698.857195145 137.04718211484632 31940 3542 318017 WRX_20200425 25334157.34654668 3379.318481043979 0.13543760873744307 1.8069758292723795e-05 8132420.370378742 1085.007863011252 None None 29308 IRIS_20210506 196267786.94895628 3428.39689342941 0.1964321202075875 3.426470436660732e-06 52656477.59339537 918.5150757512837 23592 None 498236 STEEM_20190729 74063952.78109203 7758.678270690895 0.23291957990708992 2.442470680080657e-05 1016465.1705520183 106.58985291776743 6084 3764 334107 ZIL_20210204 928878432.0157796 24785.89790374333 0.0796654864568955 2.123885652352991e-06 170635785.23425624 4549.158138049058 134759 16448 35643 VIA_20191213 4999684.724961392 694.0042502300573 0.21701351006636213 3.0141030145309248e-05 246750.68310066557 34.27122936004537 40152 2194 8860239 ATM_20210314 0.0 0.0 12.095706642696932 0.00019717289154361 22905954.90354452 373.3914433702233 None None 220888 ATOM_20210203 2140712403.1795049 60102.754435080344 8.900148313412927 0.00025060448122043023 562257027.4195209 15831.66096868985 None 11426 88305 TOMO_20200612 30584217.982065544 3292.3079704700654 0.43137236362269477 4.6377145038425734e-05 16529842.869492978 1777.1349879321097 26940 1556 184288 BAND_20200707 24543337.19921807 2629.229566394831 1.2115377783977668 0.00012967105615421294 3568416.9229504336 381.9281572956705 None 1238 430099 CHR_20200531 7174819.957330373 741.0808217035628 0.021870460967763333 2.2567882381902403e-06 2809625.348993913 289.9220757475909 13551 None 529167 RLC_20210823 369448199.46347547 7488.7060610937315 5.147899958571223 0.00010445981525919156 69289318.26363008 1406.0003969585662 None 7815 323230 DNT_20200610 5566621.069140759 569.4629768743832 0.007402342389776459 7.576814188183533e-07 855058.2772613596 87.52118377860234 58035 6019 623804 PNT_20211125 39020278.142474025 682.3231767708703 1.1565735890271969 2.022209452961179e-05 9870722.66525809 172.5845105803613 81945 375 295224 ADX_20210825 72453667.37894015 1507.7309467037767 0.567747987121692 1.1835303221200755e-05 12597094.087321004 262.59965972804576 92824 3893 15083 DIA_20210124 53033569.3159348 1656.4482014110247 2.0940553393619075 6.534262062534883e-05 50637261.4858049 1580.0782837867948 22424 198 294987 ELF_20190908 38827653.32253877 3708.5185028911637 0.08417218918066974 8.040288508247946e-06 14344519.963170126 1370.2159839119006 85379 33569 1052488 STPT_20211002 75742353.281776 1572.724636944825 0.06228668723211755 1.2931323220492061e-06 129274993.35305572 2683.8748337113866 31063 None 1227708 WAVES_20210202 690048968.9773715 20680.46895084898 6.93045144346223 0.00020749065929343133 111043949.50062154 3324.5427776808906 156081 57347 119606 LINK_20201111 5096870000.362353 333225.0344997869 12.98177237849837 0.0008498901264040878 1193516292.2455885 78137.07426899704 98258 24198 34744 GRS_20210420 102021034.12133634 1822.8145930958735 1.3170093780906704 2.3547341166443864e-05 5429765.093026804 97.08095722485247 41392 106826 7053372 WPR_20190205 6789501.732422341 1959.8522411695471 0.011905558568014703 3.4366491918655394e-06 211607.31903738098 61.08240262799492 35148 None 633230 WAN_20200329 12301145.679527102 1974.0608445720168 0.1158818350081246 1.8596462398410336e-05 526522.2737146107 84.49513821016714 105590 16344 732459 LUN_20200629 4458732.894299778 489.0362555022877 1.5922217643758267 0.0001744557583251953 10708171.217307264 1173.2675509078288 28468 2122 2710990 ANT_20220105 429882104.4879859 9281.332624224216 11.070965127128618 0.00024105338386180416 109463860.91104178 2383.4086531919347 97233 3493 43369 ADX_20200208 10225643.10560533 1043.9677480894031 0.11112217089068814 1.1334802818206282e-05 1322034.9629031448 134.85162774602998 None 3790 133072 CND_20190908 10982172.018197156 1049.0625793889 0.006288488205093573 6.007024517518994e-07 515304.60291002534 49.22403100261283 35833 6106 335034 CTSI_20200520 7511129.074460552 770.9227149058374 0.03771764304823608 3.8658809508684835e-06 9147911.598378073 937.6178978938755 14013 103 293741 MKR_20201031 473725667.3306642 34880.33070571598 518.4858468506483 0.03828300028847871 41923011.05547715 3095.43385625536 69927 17357 27381 ZRX_20210314 1059375009.5486938 17248.756327294454 1.3928493399108042 2.2704926627882252e-05 147154226.192266 2398.7705008297226 191474 18402 57821 JST_20210602 97366116.22768152 2653.6026230624057 0.06788670083108067 1.8506859547786594e-06 40727224.519413166 1110.2808277978168 46586 None 83188 ZEN_20190626 68193002.31052342 5767.954691579011 10.173397171040731 0.0008597568305194077 982172.7174283335 83.00370941601932 26066 1687 240249 CTK_20210809 67223901.07575728 1528.082073712414 1.2026863554523235 2.7341018188253107e-05 9320447.106744966 211.88443081016317 None None 93731 XVS_20211204 253549906.94191843 4722.6466530274365 21.940387295028042 0.00040826987962988456 19129245.169374224 355.9597429932689 None None 25188 ARDR_20190623 118737149.682693 11067.045395661298 0.1196550522520608 1.1155075713255909e-05 4033776.162862582 376.05665335609785 68068 6563 956576 AION_20210825 101770796.90712093 2114.985608306689 0.2049761985972302 4.268277808033519e-06 9604585.170796499 199.99901461940993 73821 73432 623135 REN_20210206 754024552.9060363 19898.569111840385 0.8510181712683091 2.240312545706997e-05 351696907.66781247 9258.450890188371 41247 1023 83739 TRX_20190419 1788568419.090308 338893.94120510726 0.026903139596792018 5.097389467792801e-06 394762159.6676188 74796.34366588223 412220 70499 98802 AUTO_20210428 65537486.41528479 1189.5408276019602 2572.4974057213135 0.04668306813677978 16019323.64594285 290.7024028889118 None None 15822 STX_20200526 88565926.65854466 9966.053083028222 0.13149546875997095 1.4790094734651773e-05 969819.7226678089 109.08151975923472 36222 None 93144 NCASH_20190804 4422392.600484575 409.7818423323479 0.0015229349022843179 1.410776753954885e-07 144419.530351273 13.378360160441108 60045 59013 884408 VET_20200113 345475835.79531837 42378.790291514655 0.005522116153946763 6.761694802239913e-07 118380657.94449043 14495.419096479929 118119 60053 370383 VIDT_20210616 22954264.89057197 568.3838374981526 0.4935947154844239 1.2224751352912028e-05 2250135.9172391933 55.72861952444021 28253 1611 730445 GRS_20210207 35514126.55342817 902.7922209312309 0.4645496295741827 1.1809022295555926e-05 22446021.76753316 570.5861217504321 37597 106761 3797410 SUN_20210115 0.0 0.0 0.0003569980177714527 9e-09 0.03569980177714527 9e-07 41 None None MANA_20211021 1083822715.9197614 16350.55673647497 0.8167546478765388 1.2323619626630016e-05 99467371.80712469 1500.8155247092996 184879 38501 11242 SPELL_20220112 1162893326.114066 27158.42952911396 0.014534012312855263 3.396921875720371e-07 69140248.62328637 1615.9613600536904 None None 6379 COCOS_20200322 7450461.6417054655 1209.8050872952006 0.00030809892995832983 4.999859246626421e-08 2886389.640144817 468.406103636797 14626 216 67575 NAV_20191026 5608412.961825143 648.8778471303958 0.0844880733854872 9.758642468494794e-06 297231.7767184521 34.331220053232876 50870 14145 427843 MTH_20211221 10229874.822899248 216.832584899723 0.0293981298663378 6.237717027128522e-07 300205.3598075686 6.36977961870671 22503 2092 1070473 NPXS_20190916 83961111.90304069 8149.519563667873 0.0003557598832773424 3.4530997848523536e-08 1020422.1185167695 99.04487727644954 65182 5479 147405 ONT_20210218 939167127.5625954 17999.596773781534 1.1565790046303888 2.2181966876059386e-05 601951939.6961852 11544.804059094577 99289 16933 213342 GRS_20200412 11364726.817724105 1651.4162280672506 0.15189040248411934 2.2071298287500134e-05 8250941.33349622 1198.9499293301255 37482 106844 None MBL_20200518 4793671.434052108 495.36542333238344 0.0013558369653053819 1.4009673277940715e-07 4411456.064576628 455.8295704143785 None None 88350 DCR_20210429 2677949826.3296885 48907.29321077201 208.05341770963224 0.0037996714514155734 31099289.354121782 567.965108283333 44343 10978 225224 WNXM_20210703 116557901.94166368 3446.6013070837635 54.46982696448144 0.0016081605364700383 9047150.982996637 267.1069836118363 30651 None 117063 NAS_20200704 16588538.7381984 1829.3937276184515 0.36456544752718056 4.022066975934115e-05 4900834.665742466 540.68440652556 23444 4929 720251 QTUM_20200301 196954572.05924034 22966.46120340138 2.040741793840973 0.00023821743285759041 431078007.9999214 50320.08298993427 None 15184 105986 BNB_20210614 56433712415.26453 1449974.9202322552 365.2476466395085 0.009384218848875508 2179322818.6380343 55992.810523519875 4256710 497604 132 NMR_20210825 249714808.45137766 5196.462210576586 43.0626185431483 0.0008967051801204408 24382219.677259028 507.7179100366493 29896 3570 773013 DODO_20211011 294666813.23202544 5385.199592699586 1.3233086355691686 2.417722947513167e-05 33499995.633948997 612.0545578617279 None 1125 31561 ADX_20200713 9554298.786744576 1029.5781423153157 0.10393224262387175 1.1195909432981603e-05 254079.73896270283 27.370271961481293 51554 3739 19706 NEBL_20200801 9474601.732851867 835.9595162862105 0.571431972127937 5.041220648422436e-05 131835.25657239763 11.6306165919964 38881 5948 444797 RUNE_20201015 117124226.65723807 10263.179594360003 0.5588184276258952 4.889894509258103e-05 6634976.804346243 580.5881667586605 18168 1878 220350 DASH_20200318 438097508.6486962 80647.29655961608 46.43591959057135 0.008576562232961707 366257046.43288016 67646.47668633996 316523 34171 60317 GVT_20190524 16917273.49602518 2147.4786105997096 3.811794739887477 0.0004840073528024424 3947545.773729065 501.2445082668527 21428 5776 174958 CVC_20200316 11765512.090522012 2177.757170643562 0.01755125951688525 3.266198393869386e-06 5459475.8930033995 1015.9801566344145 None 8067 104560 APPC_20210813 9983359.695715116 224.55799380435226 0.08935596996405445 2.009795086116137e-06 1396246.0207547573 31.40437502554075 24937 3119 888904 GAS_20210616 112685335.55942743 2790.1696944621935 8.081275218493701 0.0002002243879217822 6869149.186569035 170.19234641046586 403104 111949 92050 GAS_20190608 41564191.944625616 5172.212382598912 2.9863035855888858 0.0003719707575118589 3057282.226657253 380.8117805788947 321689 97642 216321 KNC_20190324 43142505.43963097 10771.49025564132 0.261433767711373 6.528936767749475e-05 5617056.518836477 1402.780029274809 95096 6655 212741 SAND_20210114 25534815.293543734 685.336167562434 0.04085692587865265 1.0932401970115726e-06 4460091.06557025 119.34208779425599 63612 None 60991 NBS_20210513 0.0 0.0 0.025843766074536034 5.017517556569186e-07 4208840.805051879 81.71383602237515 None None 486694 SNX_20210616 1533447860.1164868 37970.58993138688 9.771544399759465 0.00024210306462709943 87752145.85066243 2174.1766264268877 135471 6877 43067 REQ_20190812 9341483.379679551 809.1337355121402 0.012740448874223216 1.1028637479498631e-06 124377.35608493548 10.766596879443934 41366 29590 541329 LSK_20210105 168966591.8393709 5400.658505809157 1.179714099541982 3.770705745293865e-05 7565788.40973441 241.82436944119993 177444 31030 299861 DOGE_20200730 398101909.3433388 35852.497049394166 0.0031652461922677547 2.85193078474821e-07 96494494.64299734 8694.287998935091 150395 164458 90180 VET_20210708 5459819951.892128 160689.92284854504 0.08368651262020475 2.4629765112521913e-06 554939833.8323759 16332.42601577047 388869 192071 29344 XVS_20210429 732507636.2400168 13382.411924166128 75.80167912770109 0.001384333876555466 154681057.69637656 2824.8744710494484 66704 None 10756 SALT_20190130 16782992.51197621 4916.794469213501 0.2092907802203403 6.130922980712555e-05 726253.3220353449 212.7472207422445 43120 None 368530 XEM_20200106 288503241.6798364 39290.79172142849 0.03208997330247126 4.369036445561696e-06 27777655.966114536 3781.916243566417 213746 18133 305996 DOCK_20190714 5821520.668634308 511.48543070882386 0.011360515794304131 9.97583982087121e-07 1515401.4371385074 133.06967988892947 None 15239 279432 DENT_20190803 43375302.01725427 4121.249812470161 0.0005949700237803055 5.652815400582859e-08 1703090.6223897946 161.81078901528275 46592 9980 266120 HIVE_20200903 81574637.71344422 7150.45877281908 0.22230520636734266 1.9477455692390245e-05 5880565.852775939 515.2306719005051 None 90 158511 RDN_20190130 10430984.208514543 3053.828597552676 0.20746077515209077 6.077315171921649e-05 2328146.7959939353 682.0027465617096 24880 4457 635950 BNT_20200407 13696629.576896777 1879.6869184824238 0.1963664121817643 2.6948774085998033e-05 6815018.64766191 935.2739905320734 None 5018 146407 TRB_20201106 31977683.050380323 2057.5673651258376 20.713048024842546 0.0013294104288936244 32343419.67330131 2075.874075519933 10301 None 195331 XZC_20190430 45261458.96988845 8696.297402018597 6.13362418480978 0.001178482847775397 1480224.2313001105 284.4026329113611 60341 3969 377233 RENBTC_20211104 1058847570.6283735 16792.715543027443 63008.74295180696 0.9997492191584105 5595942.252914795 88.78988273240394 None 6198 73959 XVG_20210420 1005313836.5223608 17963.964240040743 0.06108170581510831 1.0922264875483845e-06 162665754.8803934 2908.6916242190655 304602 53280 130279 WABI_20200605 7104603.309156063 727.9066895119576 0.12163468931195537 1.2442042533297799e-05 2294233.1848897333 234.67768141777688 83 7684 1240690 DUSK_20200719 16760136.283776425 1827.6395543269482 0.05881588705973082 6.416186314836074e-06 1781331.3133292713 194.32425771569325 17401 13332 827596 YFI_20210115 966692693.2374066 24751.5208929857 32577.8804622098 0.8304539925996598 690884511.7860534 17611.575495328485 66332 2634 18869 FUEL_20191026 3420182.6981235556 395.98238800922826 0.0035435974029763605 4.099844054978224e-07 607933.753132263 70.33625155912033 1 1495 None GO_20200718 12377860.11885619 1352.3151662887485 0.012019497103371284 1.31306488923033e-06 995399.8262107203 108.74203398881548 11563 682 716439 ZEN_20200511 47321583.69259554 5404.74453584271 5.243424878622504 0.0005980927782394704 5757790.59339562 656.7640525498986 None 5518 41746 FUEL_20200321 1529938.8184841357 247.48013941797657 0.0014881180974376776 2.4e-07 108691.20125388562 17.52944766 1 1469 None IOTX_20200526 25707688.2592141 2889.0621764670695 0.005935263144974756 6.678407351940546e-07 27467817.52953638 3090.7016260320734 23195 1845 642800 BTS_20190701 165447016.63433227 15216.986124356546 0.06077025941639159 5.601069649943319e-06 18551911.113422845 1709.8914384066466 13699 7179 171113 GRS_20190618 31423706.431519277 3371.0638351778125 0.4314625810696756 4.630749734376689e-05 1661916.6049118578 178.36818798219267 38617 107038 12971590 PNT_20210618 45858191.284217164 1206.876435343508 1.0234674018975094 2.6824193562827624e-05 5622439.8099617325 147.359274441126 39827 309 328870 GRS_20201208 17377759.352122746 904.7166320691864 0.22591123079017134 1.1767319133009291e-05 1615012.2232210247 84.12314946840374 None 106800 4623667 PPT_20200301 15514345.232212178 1808.9245838566446 0.4267547475742763 4.989586402424368e-05 6060964.136908195 708.643651066479 24123 None 1098941 MFT_20190627 25597458.36519153 1971.11344528744 0.0029946902936461646 2.299060694149832e-07 5089172.207580317 390.7020306250767 18798 2111 885644 KEEP_20210708 138212643.75024372 4067.5793766204038 0.3160316461482094 9.301461773926158e-06 81295463.7327873 2392.6928126352946 21762 2776 132559 LINK_20210724 7281439787.853895 217833.85153842528 16.52217143321364 0.0004941230008795448 650429881.5884929 19452.186793447447 403820 62785 26292 ZEC_20200701 490967206.42806995 53668.137118581995 51.662231622825786 0.005648491177275463 303158752.4676382 33145.868554983404 71750 15866 226446 MDT_20210814 22305024.71051675 467.9753574700783 0.03695450037176309 7.743528807742226e-07 6882677.546716825 144.2211674389892 34575 320 745074 QLC_20190909 3345041.6500233 321.76103961284446 0.013937673541763748 1.3406709983868516e-06 34569.68720685852 3.325273541718731 None 5743 940522 ETH_20190430 16314567668.36402 3134594.511731948 154.08028243009934 0.0296039981413823 6411778889.018952 1231918.1099605216 441335 435491 34722 NEO_20210610 3612542915.674019 96243.07713503062 51.210432937557165 0.0013673014383566821 684544045.1251477 18277.097142673832 402776 111868 92872 ORN_20201124 23333547.51801077 1274.4405167497932 1.8467851067855803 0.00010059170118765079 4517076.213567199 246.03857755159615 None None 222289 GO_20200721 12559229.487850754 1370.80733310104 0.012129404382799563 1.3239910008889398e-06 1409165.6470317233 153.81815763992344 11588 682 716439 CMT_20200927 7846040.441013201 730.7115863441234 0.009807461610439517 9.136008039257281e-07 579034.6014177302 53.9391840996811 282550 1633 874290 CRV_20210112 114227185.96418573 3214.920109673832 0.621781566083472 1.749194985721406e-05 96224646.85879695 2706.990347887298 None None 29021 TFUEL_20210427 0.0 0.0 0.30255616792533174 5.612650375929998e-06 74757603.46818884 1386.8112294207356 147138 15121 21480 REP_20190702 167203735.54150465 15757.074598178508 15.208541698967961 0.001432745380173935 23091967.95448988 2175.416358832421 125899 10012 252413 AST_20210704 23715578.146641735 684.0987598141044 0.1377149254820788 3.971528841002427e-06 3322052.8121846933 95.80391165837464 44143 3697 208588 AMB_20190318 8433389.496574422 2117.868781273934 0.05832583601137224 1.4647309635154851e-05 479593.78949121124 120.43991503877243 20866 4959 634689 HOT_20201224 100054234.14521047 4278.705766289699 0.0005530172275668595 2.3718875828953e-08 8443542.957931355 362.1430526798401 26597 7357 472191 BCD_20201018 98080746.1870756 8635.298358095122 0.5215449599013745 4.58917315372208e-05 850632.8928269536 74.848803757448 None None 3539280 ICX_20200331 109892688.64903785 17104.043833757834 0.20558832840590235 3.206776740274749e-05 24057441.51341555 3752.4914217613864 113032 27500 110260 POE_20190903 6218984.548741739 602.3998920299971 0.0024724804419901875 2.3931577111720396e-07 173058.18033629487 16.750608486910295 None 10739 694514 BNT_20190621 47870573.657685146 5004.469301939686 0.7297869594013511 7.635811995881289e-05 3186961.7609338076 333.45403793616043 794 5134 142963 ENG_20200506 13259573.316727586 1478.569620761865 0.16134236441450742 1.7982133145991884e-05 947289.7409055508 105.57853363938985 60606 3574 556328 HC_20200526 58170479.31911231 6545.390613044461 1.3090544050882624 0.00014723217013960492 22120347.32381172 2487.9231360189433 12658 843 1020221 THETA_20190821 121213369.2436797 11277.16189585792 0.12121336924367969 1.1277161895857925e-05 2649240.3476498066 246.47373872947261 None 4025 248011 FIL_20201124 1159770309.1231425 63270.611935829285 29.152495615482497 0.0015884792875604271 64478008.085590035 3513.3177515244556 None None 36454 DNT_20190513 8515044.057275224 1223.8784889512247 0.014654326831609603 2.106285681980006e-06 811273.1959741288 116.60536416921026 60888 6402 1175150 DCR_20191019 152201326.27923283 19130.26789697958 14.428548340345282 0.0018132314600467563 10489621.554122554 1318.2276801010742 40554 9637 135598 VIBE_20190318 8623653.005373118 2184.3968961531637 0.04307515884099764 1.0911065555971851e-05 537510.633562838 136.153038494524 20548 None 1285691 THETA_20191030 100808804.2167404 10714.27557592507 0.10080880421674042 1.0714275575925067e-05 4617244.781120851 490.73524252969463 None 4023 413739 MDT_20210221 32333275.600153215 576.5997022159747 0.0536241580678527 9.535673779437828e-07 3253413.009118618 57.85356123536546 23103 86 903443 ZIL_20200526 130734986.13705596 14710.409146943954 0.012236229929210609 1.3762351509625702e-06 133891182.20775998 15059.029817539642 74376 10787 162490 THETA_20190616 130581509.1068818 14807.80429140961 0.1307564669627702 1.4823774467685502e-05 7177627.981879122 813.7229529658327 None 3998 231431 BCD_20200127 112408242.47886623 13098.608383120632 0.5962451758547731 6.93814505575153e-05 7412695.4111953005 862.5706018207445 25851 None 4350628 ZEC_20210117 1169491863.1601853 32226.56320015661 108.76052077914396 0.0030053078084054568 1910902627.9686253 52802.71322531101 72132 16695 132493 VIB_20190716 6136709.27656044 560.2346081837159 0.03347993742380307 3.061193762652593e-06 361614.00296304387 33.063697710835285 32612 1123 2209395 KAVA_20200518 15691654.210697634 1617.3797020512911 0.5517906695118433 5.649907152093315e-05 12877600.837343225 1318.566135543304 None None 364805 COS_20190904 27413917.581174396 2583.2300144107608 0.0208147421084277 1.963350361809112e-06 777337.1916024009 73.3223235930612 9310 None 256445 BNT_20190806 36596732.705428556 3098.4762049570363 0.46730222512171415 3.9565212472650034e-05 4297803.478647631 363.88336852900323 None 5132 154213 ZEN_20210727 620731977.4700708 16580.09211415099 54.54085388927402 0.0014617499801445296 46403710.305714905 1243.6663121504741 116890 7448 1253134 SKY_20210506 72266741.87385666 1262.3522035382723 3.6133370936928326 6.311761017691362e-05 2958030.3299551797 51.67074103977019 19290 4329 250717 OGN_20210603 220878716.65408653 5873.205110337515 1.0440675382948317 2.7761945081625708e-05 79070983.31081608 2102.5117779355114 111914 5656 40950 POWR_20190228 38386612.39403835 10044.175259962538 0.09235280056295468 2.42225874362414e-05 1873226.9842018583 491.3159550784349 84674 13279 761259 LINK_20210105 5304823776.023205 169557.43343059334 13.312713509831898 0.0004255126334123127 2734357038.658599 87397.91954133361 114302 26634 46948 FOR_20210304 29857671.437107228 587.0843005514449 0.05285859699769806 1.0422890823650927e-06 10623996.468570616 209.48863873096525 20480 None 158334 DOGE_20191030 322506273.71236277 34273.16816743498 0.00264997404339954 2.81647544484177e-07 90912214.54432528 9662.435016601168 138382 143064 101092 MBL_20200322 4353236.791989312 706.8780795633694 0.001233800727457893 2.0034441737564573e-07 1299966.7457337026 211.0884476607031 None None 114904 CDT_20190613 7325782.728421412 900.9151687414814 0.010859929885804913 1.3354809750272932e-06 293079.2706816357 36.040913181382756 19679 293 399262 QTUM_20210108 298450080.98895687 7624.689841617934 2.9026361575623056 7.355444742841576e-05 424817443.2185049 10765.115087704131 189115 15021 249496 NEO_20190613 905452532.0133171 111468.71798577656 12.865836425690876 0.0015822434231355918 501237814.6157592 61642.33784435471 322003 97670 216321 MDA_20190716 14136095.53558115 1291.1253995668003 0.7186588176031721 6.579489926801959e-05 1168123.2172639996 106.94441858912575 None 364 3017941 XTZ_20210128 2108739945.642735 69708.39938948436 2.806445003069661 9.22956566314767e-05 259441164.00271085 8532.250787980423 81473 32694 158435 CND_20210729 20890481.38100442 521.6076726217527 0.010819295654289037 2.70310070258429e-07 167106.17247128193 4.174992778150274 36118 6255 140212 WPR_20190401 8752940.717240991 2133.061905787145 0.014729624392359251 3.5895004950616465e-06 1239460.2299367886 302.04728854289 35219 None 821639 DIA_20210821 99881402.17001508 2032.9162279781483 2.0605803093816606 4.1913856928933036e-05 18422229.800627712 374.72293637860804 34649 403 452698 WING_20210324 58063870.10363478 1065.1096569551175 40.479466373187286 0.0007423006024745123 9399489.148689583 172.3650799568468 9320 None 324076 XLM_20210806 6587105757.355802 160753.7711796104 0.28062081530481797 6.8584787614573275e-06 545618598.6646029 13335.124718857733 607394 197094 26468 FET_20190524 0 0 0.17875342709622222 2.272363612373852e-05 62037954.28549148 7886.4384417412175 8801 226 203647 ZEC_20190930 284285120.86146927 35306.63461379601 37.79209383531154 0.004693568359435317 188331792.9610512 23389.763699511783 131 15345 166171 BCH_20211202 10800760821.998728 188929.44724216926 571.0708916092124 0.009986789081581684 3724876344.334049 65139.99391741558 None 708325 261287 AR_20210620 772414939.7604719 21667.334722449592 17.467958366207135 0.0004906231674822044 23540857.64793668 661.1929054526469 None None 86831 COS_20200913 24718786.543422714 2369.5498248484887 0.008293361036028539 7.9417575304749e-07 2350158.248910394 225.05214580685478 12982 None 229143 COTI_20211204 368411071.02086395 6862.062512582565 0.4224991700240708 7.878954914917992e-06 53544679.96349573 998.5253209895309 203706 9543 57032 POE_20190131 11407289.427363008 3298.4552296371803 0.005015031466849346 1.450112831269521e-06 483697.49408018315 139.86272015542224 None 10986 524306 NPXS_20190719 146768874.77165744 13695.911851138982 0.0006190518322914122 5.8020204561068237e-08 6175728.313729161 578.815862235382 63726 4672 202780 XRP_20201015 11289545967.208305 989049.6218683729 0.2496029200412671 2.186660219625025e-05 1443292568.1826408 126440.44563275288 972791 218743 20960 COMP_20211230 0.0 0.0 8.468395864358285e-08 1.82e-12 869.3603604017728 0.018684009123741224 2643 None 5058999 IOTX_20201018 34114728.21770357 3003.2406061745405 0.005831951174442736 5.131644598508184e-07 2583700.5472988407 227.34471810758333 None 1953 374091 BNT_20190719 35249446.80073748 3284.3974781911506 0.5055588256120596 4.739702057027588e-05 2347916.34763218 220.12124759424808 788 5129 155271 ZRX_20190530 206388091.4115628 23886.966824924853 0.3454958608350871 3.995267927759668e-05 55084211.69490185 6369.864570262179 150526 15925 222198 CMT_20191017 13271811.073272424 1657.5496292533744 0.01658768068338154 2.071865016786948e-06 2628531.547524794 328.3136842809825 289759 1652 883595 DNT_20211120 119528929.59521313 2056.226558707583 0.15922224364684318 2.736741801127633e-06 4817552.602452278 82.80499812265876 72569 10341 394339 SUPER_20210408 250142387.5423978 4441.041753042657 2.4443452255698745 4.3475180732340667e-05 35408869.30470326 629.7829686438448 88597 None 80203 SKY_20210723 16938604.527507756 523.752172075249 0.8074359842234609 2.4940383358328763e-05 377647.24543365906 11.664908747398206 19636 4409 638153 BTCB_20190812 0.0 0.0 11552.39270053793 1.0000208970094628 74292.29956854087 6.431035888519312 None None 55533 WAVES_20190821 124099011.7576545 11532.73410249952 1.2411734818753413 0.00011536582275296009 13015394.142751843 1209.7677525819329 142886 56896 38385 NEBL_20200410 6768422.286615522 928.2782700579611 0.4175789063117008 5.727027782091165e-05 106810.95223995009 14.648950932717796 39504 6001 1168706 REN_20190103 16366236.775926284 4230.512941880667 0.02188034396678487 5.655855991307753e-06 392359.59083062917 101.42113606235753 5331 756 716475 POE_20200319 2036326.2985132567 378.1362233930424 0.0008093685484487112 1.5022250893113887e-07 10601.39296962487 1.9676670820906061 None 10444 698681 TNT_20200329 15083755.880468465 2419.6068072877174 0.03520146795149072 5.630372631692416e-06 330754.7900754462 52.903268704823965 17628 2563 1338754 ELF_20210422 195714641.26345253 3612.0365486296655 0.42026113295734574 7.769946179260985e-06 26464414.46047747 489.2840662580048 87604 33368 202444 SNGLS_20190419 10888414.318509381 2064.3319471404793 0.018479334216421343 3.501422890288222e-06 2109273.536559818 399.66042912015604 None 2179 5119278 NEBL_20190324 21824097.682033453 5452.514863994823 1.4603580776781395 0.0003647036735498944 145731.72024590542 36.39442581844721 40118 6185 631172 DLT_20190929 3579956.122459112 437.0791207194791 0.044627455864612794 5.448301698504654e-06 710578.9087014121 86.75036925574197 14994 2643 6222590 ANKR_20191022 9294855.397135725 1131.8702037248904 0.0023261292958094907 2.830445228666741e-07 1761502.4407907738 214.34045767804145 7 None 5007 VIA_20201115 4253469.582729189 264.25433927111624 0.18345813526250665 1.1404264508979518e-05 42725.32100066436 2.655923986284043 38018 2139 4087654 POWR_20191015 20399882.42707269 2444.2582333752925 0.04766132969210285 5.710309482620174e-06 635399.6200773586 76.1273027676814 83559 12975 329598 NEO_20211011 3204438023.0402617 58562.88377788716 45.39662835317051 0.000829768047906751 243690131.19103232 4454.213711190752 419400 114104 96660 DOGE_20200414 243252945.76404834 35524.775680528925 0.0019595481447037956 2.861733413223372e-07 129649088.18245052 18934.01438737018 139314 152563 104219 PIVX_20190515 37228230.487745784 4657.442806577982 0.6209264937991451 7.768109292517777e-05 2052743.365562106 256.8087361776407 63058 8601 304717 CND_20200718 14661996.867154429 1601.8631847526804 0.007509986093921743 8.204252618664708e-07 96567.0834619366 10.549430284706231 34263 5931 399242 CELO_20211007 1877843672.6932833 33831.605444520945 5.742636499900654 0.00010351924973867608 112100463.66327646 2020.771451228169 57203 None 56964 FIRO_20211002 81128252.4106491 1684.7812329507076 6.5446360059098785 0.0001358730208872816 8830873.079606043 183.33753035535392 75411 1315 214051 XVG_20200310 52854564.981297046 6683.1472635708615 0.0033015407560537755 4.165888341691198e-07 1253945.2213120493 158.22296814009616 296736 51951 314536 HIVE_20200526 97712471.34601901 10987.945340130835 0.2747043005197221 3.086934829886575e-05 10122582.436849946 1137.5050275365754 6816 79 122787 POWR_20190909 22782052.890757013 2192.0245743955243 0.05319331533896721 5.118110074439039e-06 608543.7413953304 58.55235444011973 83949 13052 414066 VIDT_20210723 16037561.589841763 495.8755465295024 0.3471782118198296 1.0723769890901066e-05 1142733.3079087893 35.29717195225821 29540 1622 891299 ZIL_20200417 44567423.79844646 6277.066281206849 0.004250060723598312 5.995403525734049e-07 12776809.321017707 1802.3772513538595 69018 10550 194676 XZC_20190523 53063019.0761935 6922.320804620481 7.041416059463016 0.0009194493642886167 6426116.064869156 839.1051289673967 60316 3971 368691 VIA_20210729 9587061.857870568 240.90471070245422 0.4166596553817276 1.0403440167571424e-05 200057.9109859235 4.995181271113438 38188 2296 1139372 KMD_20200518 64525023.35555058 6672.676267427467 0.5352100248333798 5.540677610819692e-05 2584032.6171600944 267.50791284195344 99645 8374 191330 FTM_20201124 55756667.10218109 3044.490187325799 0.022087278480070784 1.2030619635994663e-06 14228693.346497681 775.0162507498435 27925 2813 110001 KNC_20211125 158661189.28120387 2774.408893378825 1.7179820602913332 3.003803299071497e-05 39063161.14398173 682.9992875278093 196872 12119 86761 PPT_20190608 35788257.769719735 4451.677937580287 0.9877027627918018 0.00012302719209298792 2275004.860771521 283.37215462220666 23944 None 688169 ICX_20191216 63794246.79650233 8964.557824551286 0.1250679335031281 1.7574919027767216e-05 6725113.134858791 945.0329551879969 112196 26856 97335 XRP_20190625 20091885984.030888 1820145.6850714616 0.47357824533616727 4.287820871408149e-05 2327447810.186076 210729.25954495693 929177 202548 41010 NAV_20200610 9368360.527168809 959.3544898488068 0.13607462022512212 1.3934540359421187e-05 645685.8634597885 66.12060139505023 48467 13856 1041547 REQ_20210729 40449713.97134323 1011.6313031432677 0.05252048832358797 1.3123124687140823e-06 995904.119678898 24.88433439243878 43410 27795 339521 ADX_20210725 58777522.157692514 1720.3704178653868 0.47509800670913704 1.3885943604734827e-05 45292822.89467535 1323.7975649932541 59930 3880 13599 1INCH_20210602 522647756.74282175 14246.1190272644 3.1166328370112115 8.49637491150238e-05 78002610.7092433 2126.4597381873687 None None 7666 SUSHI_20210105 438181359.73821187 14005.537199962533 3.478261980493992 0.00011117526219766247 561986731.1263406 17962.713140918935 19177 None None SNT_20210220 447179266.5879397 8005.358112269615 0.11609858761997761 2.077799837117118e-06 72033288.38778585 1289.1694718032668 120601 5794 158734 CAKE_20211007 4529296958.206248 81600.7156822212 19.777824652224503 0.00035651909490825635 237626079.76782697 4283.496106124803 1094750 None 561 CDT_20200324 2125189.578902771 330.2775675581928 0.00315723403308466 4.896053351610089e-07 25651.588094178303 3.9778978227951796 19194 290 281286 BRD_20210902 16459476.034893397 338.8614730059269 0.19422426646456525 3.993468453045387e-06 684138.9211779106 14.06666246682898 None None None TOMO_20200315 14214021.311123699 2748.5718994629665 0.20299595192605266 3.918007722822942e-05 9666614.17305245 1865.7450369929495 22132 1509 211808 CFX_20210826 298265301.2732757 6085.06737838367 0.343177010996549 7.003018200256269e-06 28254178.15945075 576.5669539149477 37955 1258 203830 DLT_20190621 9577171.511135338 1002.6682758996678 0.11881663198396812 1.2439337376495184e-05 749485.5693006035 78.4663199054719 15068 2674 2617266 EVX_20190622 17271189.862192195 1706.5474942757876 0.818227408699512 8.083838806693411e-05 1436464.5422157547 141.91834308336252 18102 2907 694179 PIVX_20210124 26659782.66176193 833.4354684612005 0.41003532968755674 1.2811177050090507e-05 1890336.2954261624 59.06182031526461 64886 8707 325207 SKY_20210428 66275585.3709872 1202.9377228849874 3.3126338149202073 6.0146697976224496e-05 2302099.5611417107 41.79866980513953 19179 4309 267586 EVX_20210107 7614166.224199927 207.735664486017 0.34751585803337065 9.415381637843183e-06 695684.6415618795 18.84845323882242 16650 2806 1350138 OAX_20190625 10036406.984964749 908.8424574323194 0.22437215132105942 2.031792230939747e-05 1016887.7584247496 92.08382747771147 12304 None None AE_20190227 97115472.86216582 25551.60949035475 0.4268896924728623 0.00011231700156580948 47750558.46966931 12563.43183021939 958 6317 487451 ALGO_20200612 187618250.4437466 20176.559113633873 0.23349089630947945 2.5108767402629053e-05 71128880.61809324 7648.942837933529 18504 901 281799 TRX_20200127 1111425134.21095 129511.16625565583 0.016810946247545065 1.9571446356086708e-06 1361992094.4306066 158564.27604398207 496030 71797 51656 MANA_20200403 34806747.034078635 5133.030705000861 0.026335027438934046 3.863080229582786e-06 22615765.192814156 3317.502349136842 48000 6812 46518 APPC_20190511 6958116.977476601 1092.0299032056864 0.06531963696895432 1.0251479971885488e-05 805378.0625134098 126.39869816754022 25642 3389 1192201 BNB_20201031 4216701943.861658 310435.26324150036 28.497481230781414 0.002099779999617304 374739907.4504778 27611.961785346048 None 75229 667 BCD_20190804 151851833.7119678 14073.406510900692 0.8011245659299453 7.423365843480695e-05 3819560.8961407933 353.927455221558 21449 None 3532175 SOL_20210711 8716478997.829847 258491.67784807176 31.939202343364617 0.0009474929538958376 415853889.1192226 12336.520666819406 None 26690 7723 CMT_20201226 6251897.3712218525 253.1633823139956 0.00783584958699594 3.176453538205861e-07 1091173.2044672614 44.23337823989877 280940 1630 983064 NEBL_20210804 18374794.044661265 478.25319490592216 1.0148334077686445 2.641375562539353e-05 1405518.7791017012 36.58238807857352 40415 6112 2429755 ONE_20190915 20904498.233600073 2019.0364744193723 0.007558103783671342 7.299906004034944e-07 2134732.5661242353 206.18064427913464 70897 None 133162 QLC_20190816 3387628.9981124112 326.98688231118143 0.01395543691782017 1.3544997464198755e-06 127269.6639709179 12.352657146507868 24864 5756 940522 XZC_20190806 70301872.89287907 5952.134636603459 8.696229068862415 0.0007367638737229388 15629739.318016207 1324.1862874166125 60825 4043 218512 WPR_20190302 6482626.51197984 1694.2516295317164 0.011125771831884288 2.9096237840564394e-06 702978.5753321255 183.84371110386587 35047 None 815253 BCD_20190608 232679204.15568167 28935.77144876796 1.216078895516864 0.0001514734771583486 6157967.505410518 767.0297985692802 21233 None 3286107 AUDIO_20210218 54757680.94891139 1049.45770398261 0.35666518067767 6.841792516233208e-06 3697074.1225362876 70.91977415756712 26148 2596 59787 GTO_20191019 8700047.526774164 1093.167917014065 0.013127984686361513 1.6495634111577698e-06 3291620.8573911963 413.60021812008705 17253 None 1047356 CDT_20191216 5617037.895426085 789.3268088487606 0.00832632477679519 1.1710394915416042e-06 73378.69961771116 10.320202177290382 19378 298 187759 STORJ_20210218 112174033.4961178 2149.8701478818657 0.7799972741510621 1.495952600675531e-05 76348303.91444553 1464.2800376743483 84774 8860 75920 MATIC_20200224 57077588.52440526 5739.298123890572 0.02231384353321984 2.2424433897693974e-06 33653093.507515155 3381.9882696976733 31694 1534 160214 MANA_20210408 1232145851.2625585 21874.925702488457 0.9353120557718835 1.6644628733623584e-05 389533598.77756125 6932.063038120526 110440 26353 15640 ZRX_20190130 147331903.00913304 43146.10830540864 0.2522035720814976 7.388629455928783e-05 11336917.631466717 3321.296477284849 146314 15526 193759 TCT_20210616 19785339.751363024 489.96886388775664 0.03417806092404118 8.464804897901445e-07 4386944.574542836 108.65048782007264 None None 301780 DIA_20210731 67599362.99101384 1619.310512629886 1.3920829427440922 3.3326197442610085e-05 13077168.372890506 313.0648913247411 34122 402 450424 RUNE_20211207 2260623351.827672 44796.713525464635 7.676765480502198 0.00015199356112396295 120870288.13193476 2393.1310099172674 130574 8842 69693 BQX_20190512 14287096.830239568 1961.6568518004428 0.12146577696403824 1.6677650129727535e-05 1426963.7489824332 195.92680957681802 61130 5794 460348 VITE_20210203 83970871.95329517 2357.5648668364306 0.14449490189027495 4.061360203826721e-06 3605836.6227274206 101.35029796529955 None None 688715 TRX_20210206 2591602832.656809 68376.57240316305 0.03626699726602774 9.530872867593274e-07 1757572789.2499528 46188.557290829 579003 80489 29522 FET_20190716 30332224.376826476 2773.7159330833733 0.10499132066313262 9.612201503469959e-06 6080117.824262204 556.6490384397064 16058 291 438146 HC_20200501 50169639.45051335 5797.9873836543275 1.125353343139326 0.00013055591353332017 36823308.72446993 4271.992205071765 12644 839 1050366 POA_20190131 6272364.297740178 1813.6735358313977 0.02848904061937508 8.2376942058678e-06 288160.1179200293 83.32238931688102 16405 None 756773 HNT_20220112 3332463923.1309524 77826.98944287279 33.11107678771733 0.0007738794948547673 18496425.23579555 432.30258894528794 140063 82761 1924 ANT_20211202 205109710.41774568 3587.8272699362487 5.387249571084868 9.421128967834449e-05 31677049.52677997 553.9627688942868 92928 3377 60042 TRX_20200321 743993095.2721789 120392.78075063629 0.011280953759001101 1.8193642741272094e-06 1302567264.2679806 210074.82132136874 501428 72218 50139 BLZ_20210909 67342287.55251566 1452.9993393673053 0.21805930144140254 4.71001684925647e-06 18716490.828343224 404.2707033258107 66500 None 465931 LINK_20210427 14722512909.574497 273282.7158571616 35.02234562686041 0.000649691535612851 1719495452.7124996 31897.967459247102 251142 50572 26155 ONT_20190523 817645644.9617056 106702.79735882749 1.3310133460089417 0.00017379931295824117 87499011.00175123 11425.330964733832 80689 16169 231698 XEM_20190411 652210201.4458812 122888.61103999254 0.07233628720386452 1.3628794447463461e-05 24314193.39080343 4581.008463224404 216195 18453 129462 QLC_20190410 10079033.487161983 1948.2214040871356 0.04190170861615081 8.10180240560319e-06 607224.9640917238 117.40849806120784 24845 5839 940522 PNT_20210805 25770034.490629267 646.3965048443774 0.8167010291914609 2.05338849826809e-05 10203137.726175709 256.53213237549187 None 322 329278 HOT_20190312 187668485.90427795 48537.08224696118 0.001054869283193317 2.7316254989235e-07 6974355.65885358 1806.0368293797849 18959 5669 225640 THETA_20190725 117537088.1377487 11964.31696589531 0.11735615123601562 1.1967933814646546e-05 2941990.734671268 300.02304970822513 None 4017 240889 RLC_20190923 15692816.905248916 1561.0733611786115 0.22388476214224906 2.2287843048651124e-05 64879.351405937916 6.458772751649228 24781 3304 1199907 STX_20200325 50117618.347640246 7415.667448355696 0.08473495578441792 1.2555246656737806e-05 185871.12285545 27.54067400179291 35795 None 40997 ELF_20211216 180186800.30878973 3693.3823140620716 0.3913816078197645 8.008734389200897e-06 18096306.830126226 370.2997584258077 57114 33561 98073 GAS_20191216 14164782.331167357 1990.4028520165334 1.0138670454827834 0.00014252403011626573 752000.046528099 105.71216192135718 323563 98753 183626 FUN_20200511 12889355.233161861 1472.0328857477566 0.0021557360616211306 2.455856105834145e-07 601116.3930121312 68.48033905345928 None 16875 209311 QKC_20211225 156744942.49859622 3082.735290941544 0.023829916682985296 4.6862465967240867e-07 69613559.32590747 1368.9779524483681 78628 9622 488675 DASH_20190314 778041781.4987584 201179.71647519077 89.52438874236177 0.0231579667819722 1163969821.4474819 301093.0857944419 320147 23229 94938 LUN_20190221 5180907.503713501 1303.225693574022 1.9164725266348568 0.0004820769789750303 1149620.1113741072 289.1799295622042 31669 2255 1490290 ADX_20200411 5379575.319754597 784.5774867420638 0.0580707996715806 8.46197173142307e-06 86031.22784076305 12.536314673214822 52046 3761 33366 SNGLS_20190805 5261925.933532675 480.5396098167572 0.009118440970955696 8.326644522599512e-07 119627.4287998317 10.923962527602805 9 2176 None YOYO_20200223 2448758.202542229 253.68395239417234 0.01403883135117831 1.4543567070964717e-06 189382.87793175114 19.619172838496787 7525 None 1663513 IOST_20210418 1501922983.1143522 24914.680761023876 0.08075336774338249 1.3400950419294317e-06 1440702728.926974 23908.33519246575 238433 53030 143784 KMD_20210523 215017401.67180017 5725.42691661909 1.7080818354311151 4.5482354638871264e-05 24304458.79722943 647.1727474593847 111035 9221 197096 NANO_20210828 880689545.8899888 17955.70430877449 6.601846852555694 0.00013460684281450038 55157110.721259706 1124.6132633453064 135529 108861 81313 CHZ_20200421 30726652.780075196 4487.115835171559 0.006430077184356899 9.391942798383414e-07 2407175.9865532084 351.5985659760168 20299 None 267652 XLM_20210825 8363257716.351909 174035.94504407514 0.3542040532119118 7.375691959292467e-06 587422442.4432486 12232.06495280982 615697 198463 37413 WAVES_20210702 1591609403.81479 47376.14548598923 15.89238875433475 0.0004725173348849417 174946055.0641852 5201.5493054822 193615 59110 98898 NAV_20190702 13617213.437709685 1283.5209503405947 0.20791047098629326 1.9597067089151186e-05 233234.23199479733 21.984014899326667 48360 11254 893210 BCH_20200117 5929573879.652562 681377.5885087872 326.3093346511748 0.03746915177254196 4730742733.823444 543217.4279659165 1003328 281524 124204 AXS_20211007 7719400067.2169 139074.24837336133 127.05698214305974 0.00229035503509347 2783535655.2072363 50176.58058403942 559136 None 508 BNT_20210117 170483498.3410532 4700.524685942152 1.7436423069918496 4.818091898355064e-05 118075810.62656052 3262.7110749165668 90508 5324 94458 CVC_20190318 25209580.266156744 6330.504385093487 0.07351598752595621 1.8461882218910947e-05 1287033.3772653115 323.2094054982267 88667 8207 423151 SNM_20191024 4767723.156749357 638.8662479723989 0.010971430018168488 1.4695537130914937e-06 264996.1151557697 35.49455488820509 30893 9825 6645524 IDEX_20201224 19289882.214486267 824.9811730362738 0.03413833292149336 1.4641910580886274e-06 585591.982798045 25.11600513338071 44165 1949 96261 TVK_20210310 67258478.55442657 1230.5528150405155 0.7588076564964336 1.3858644919980775e-05 41172194.51284907 751.9571256891211 33771 None 118350 MDA_20200625 9358976.96004119 1005.1069297515198 0.4738610874672417 5.098067407639384e-05 754220.4491807527 81.14333064770472 None 375 1694044 TOMO_20201015 60220093.771747895 5275.744789063017 0.7953649678067612 6.967838897472998e-05 10270487.450656809 899.7517473271653 33379 1685 71726 PIVX_20210418 135710930.72689533 2251.2436075988767 2.0700164015854488 3.4437034041607345e-05 2986397.58841253 49.68205823643137 67422 9597 208244 1INCH_20210207 503668573.1130203 12844.58597538164 5.25032308805284 0.00013351620381590946 381531574.8482204 9702.3833877111 None None 12553 BCH_20200310 4976216836.94837 629598.295070374 272.45243486893236 0.03439647205462881 6137884741.584281 774893.3537334681 2624 286724 124622 ZEN_20200719 71420129.62540776 7791.174820520627 7.494665058539006 0.0008175880665379214 4395400.273449162 479.49131591079873 64572 6001 70851 LINK_20190329 181681633.5942367 45126.38059317785 0.4985679830477729 0.00012383423607192977 10558120.815715369 2622.4243634272275 10930 6529 307556 EVX_20211007 14713660.92558933 264.91233871330206 0.6734741332062122 1.2138721318872626e-05 685345.628115885 12.35269355810458 18426 2791 2495994 MITH_20190213 17220162.524734553 4739.166997825937 0.03400971619330058 9.359523161899906e-06 4078484.915772393 1122.4049567973332 44 1979 498260 TOMO_20220112 130556972.6727465 3045.503045751749 1.52430470550451 3.562874882425909e-05 2349749.376124008 54.92250336796856 69398 2392 104936 XVG_20191024 49962786.27789281 6694.737637436944 0.003110782042749339 4.1666959493615473e-07 1380657.4154832552 184.9303352499007 300833 52539 287655 TNB_20190909 9304887.8270575 895.8483356830965 0.003229210630024797 3.107054965966414e-07 391006.76372142305 37.621562856609785 15557 1463 1259839 MDT_20210727 14134501.810142819 377.3239090194348 0.02336413672141922 6.240689267976794e-07 1838328.2530809385 49.102757515980954 34071 315 701499 XRP_20210114 13957393308.172102 373468.71018425387 0.3064999201536099 8.201254154264178e-06 3423237246.197349 91598.19249655103 1058923 230691 14934 BNB_20191026 2882102568.067341 334016.43924544315 18.56408198171964 0.0021478518545307358 320501999.9562083 37081.86678256548 1053740 56979 1996 QSP_20200313 3502422.2700046347 728.8828346906791 0.004925904842398806 1.027927750228939e-06 90810.02133438518 18.950049567550924 55447 8329 347894 FTT_20210806 4227577554.2497144 103183.53906146232 39.736640723579114 0.0009702118763755433 58570315.61372412 1430.0558571822003 162112 None 2262 VIB_20191108 4541467.955204065 492.61124110845844 0.024876049463492887 2.6982952915135138e-06 463498.1789478626 50.27546498954819 32007 1121 None VET_20200730 1003012916.2485151 90433.03215454699 0.01559517869862323 1.4060828867323059e-06 148993956.2120371 13433.501218859565 129200 65502 114673 KNC_20200315 83468820.19502984 16148.248081032329 0.4650765204374161 8.976402639995498e-05 77005863.61188935 14862.836695578018 103872 7194 154836 DGB_20210513 1681657583.5677812 32604.043710776667 0.11358930507367297 2.2644361566732863e-06 108648369.5176352 2165.9371552608923 214962 36995 157922 RCN_20190312 10925102.764664242 2826.371302096818 0.02182882656774056 5.6453953980538965e-06 598922.398077628 154.89397652256937 18329 1113 2128118 BCPT_20200511 1830549.6064726333 209.08560049942682 0.0156814768260922 1.7899999993032493e-06 2730666.421827704 311.6985056558 10556 3168 1976205 TWT_20210825 315297450.3770327 6561.209950407956 0.9023720626720364 1.8794808535467653e-05 56594754.35533411 1178.7682888481907 1081741 44122 4197 ZRX_20200526 209741637.56215703 23574.841075853223 0.3198215491005635 3.598658614876463e-05 55489873.73698642 6243.766648107376 153337 16055 121592 FUN_20210916 236185273.39355588 4899.460166567174 0.022283985804156133 4.622621014049651e-07 21984506.87688995 456.04966887780245 16561 423 104367 CMT_20210125 9517369.668562513 295.57684129530173 0.011908708894376455 3.691046443442645e-07 2812438.380794522 87.17016071939808 280554 1630 1294863 ANKR_20191017 9892149.158764832 1235.455224504965 0.0024759056007372443 3.09250117418382e-07 8707862.718162457 1087.6454931290718 5 None 5007 RLC_20200223 46522565.1039365 4819.597205975376 0.6624956350353325 6.863224454132274e-05 2317072.0052797287 240.04060415844125 None 3555 230585 CHZ_20191127 43332667.00666382 6044.044264476487 0.011429084854742338 1.596242527067336e-06 5059505.4403514415 706.6355576550309 13826 None 268388 QKC_20200315 7235115.534255235 1399.20838522663 0.0019462970069169534 3.75357224896768e-07 1464076.933258613 282.3576528917575 None 9198 398743 NANO_20190806 152149249.58305618 12890.422920001884 1.1418476708635898 9.673987501079288e-05 3584469.846242343 303.6842599531526 None 47193 262200 RVN_20210106 116276576.20788825 3417.8274749594784 0.014903157507005592 4.372118477168914e-07 29645909.857867315 869.7179117991395 34677 10568 220085 ENJ_20210618 1302528189.644169 34279.38465146605 1.4032183675875267 3.676313640407812e-05 135942648.46991986 3561.582604868214 214409 33431 26462 DOT_20210428 34085016694.010246 618707.4781653745 34.538588734933114 0.0006270375849277697 1707353296.040809 30996.480359520094 330790 23138 15695 WING_20201231 10636220.053552734 368.3564246215436 13.025540018176955 0.00045167646086439296 3125328.5676612267 108.374573684445 7158 None 326977 MTH_20191127 4080157.610741669 569.1007479777528 0.011787280602921817 1.6462699171449886e-06 564347.6214593272 78.81958047138723 19326 1964 821892 GRT_20210826 4737613146.600581 96654.5390520216 0.9530183444477175 1.944871528273495e-05 249920614.67336875 5100.253217985263 132757 16989 33877 LINK_20200106 653162854.2100824 88945.04969722606 1.7927417761079796 0.00024408104311802537 41729261.07566985 5681.421444869834 39235 12065 107276 NAV_20211120 32181576.484061252 553.6039400199305 0.4458553413634818 7.66541209983591e-06 1661196.0991007397 28.56027840623285 58433 17264 665322 LUN_20190716 4115322.522559818 375.87447134268814 1.5242368739338876 0.00013954745857784427 316612.87750323466 28.986651067274405 None 2218 1689451 ANT_20210722 115557996.64753509 3590.977638446403 3.305244283966363 0.00010234106503216424 10881836.198174557 336.9368828286202 85705 3062 128582 ADA_20200430 1598493713.607464 183092.68708316697 0.05148004627020868 5.871791775993535e-06 350212135.00092226 39945.0444033802 155294 78335 53187 KEEP_20211202 448752156.0071672 7850.888461231912 0.8162002235470839 1.4277102691577448e-05 29061549.52575523 508.34919543689176 30154 3608 144845 QLC_20190213 5661660.963346747 1557.57815175393 0.023551167339487963 6.481315367375493e-06 163525.74769570836 45.00252264458688 23257 5856 940522 WPR_20210221 16372932.293245422 291.8967862377055 0.02641825294142938 4.698812624340885e-07 1173154.8246713388 20.866007728419646 32787 None 7566939 UNI_20211204 9091030086.16253 169330.46170993932 20.00089128703292 0.0003729856337936248 350186791.9662855 6530.441102511367 742840 58362 2643 ICX_20190706 142775641.7031963 12990.468367943355 0.3015996868821325 2.7441103716897203e-05 20005543.37848524 1820.2080925118566 113904 25426 268065 NKN_20191127 13708923.022794077 1915.5019537315325 0.021090650804298578 2.9469260826638964e-06 2802411.198604898 391.5715419191789 12135 1003 241643 HNT_20210703 1136012117.216377 33609.96205877601 12.870600932790763 0.0003799636379873798 10806455.083335778 319.0262839049233 60253 40175 2473 BNB_20190920 3346456476.3068604 326737.9131498371 21.52942091072633 0.0021007116081705334 209186258.75772557 20411.13896487492 1036800 56418 1307 THETA_20190929 84654669.70813107 10333.52072617436 0.08480089690736209 1.035283911448461e-05 1339289.852425014 163.50596368060653 None 4022 338625 LOOM_20211007 92610907.50485662 1668.3881389073806 0.11144503525645633 2.0089564152368416e-06 6629835.211605839 119.51227750674559 35406 None 466265 FORTH_20220112 65031593.715345524 1516.9922576760118 7.502178770612905 0.00017535420712644725 4396327.403049783 102.75874910497316 36226 None 87350 DLT_20191127 3510037.1388856904 489.6982304183946 0.04360948204766644 6.090715985801826e-06 1259048.4232012006 175.8449309191114 None 2624 8432299 JST_20200905 70513949.55890012 6725.540246844069 0.04929101610090351 4.700985271169502e-06 456865346.8801904 43572.18488243241 26912 None 173233 HOT_20200704 97426463.6104751 10742.625422453211 0.0005477499723178453 6.04248851134767e-08 5180272.657838767 571.4603304895397 25403 7113 637680 DENT_20190916 32862011.48037298 3189.272467902154 0.0004463380238433173 4.331729881086362e-08 275490.3133493179 26.736454403087095 46461 10209 275071 BAND_20200324 6309216.036772728 980.5207716576015 0.34400057663754424 5.334559169680942e-05 1743187.1912408413 270.3232449898541 8708 1057 702901 REQ_20190908 7728808.992691416 738.2878618220733 0.010588972977935908 1.0115025777147117e-06 87741.1563211898 8.381398835890971 41098 29417 564071 DOCK_20201030 4822545.223193805 358.2369806431624 0.008599143028728603 6.39495499396215e-07 2415581.7914933744 179.6404221819128 43098 14896 206810 ONT_20190601 935780982.8534921 109084.96613595581 1.5258211147126732 0.0001779140558002117 263174940.66446728 30686.769652819075 80880 16206 249314 MTH_20190224 5632708.461990739 1368.285070595598 0.018727127763501356 4.549152420517618e-06 259537.7077270376 63.04632542867318 18630 2016 836408 GRT_20210201 983970518.7903799 29767.0340370784 0.7974154278497956 2.4117607078955766e-05 1017489546.1939392 30773.687371738164 None 4401 34817 AVA_20210201 63728569.91422904 1928.3484172568142 1.6559264993703517 4.9949562743213504e-05 5832978.12585313 175.94664194810417 43936 9181 69143 XEC_20211104 3423205527.4122066 54417.20475697219 0.00018111815474764034 2.8724301181049043e-09 94188342.46761107 1493.7731231599246 None 3918 48774 ZEC_20210527 1756088342.5207112 44821.64176486235 158.16646762910526 0.004034501102489337 1395550850.8573456 35597.63033696161 75751 19721 84250 HBAR_20191011 24274049.749892708 2834.9339862641573 0.03813581871953218 4.453831548338509e-06 3249050.602357329 379.45229867362934 34838 6165 87146 DNT_20190813 5050148.7675512 443.6870208949197 0.007530104671091616 6.617149357101599e-07 286844.1317907574 25.206694264880866 60430 6305 717960 ZEN_20190510 76530536.81883937 12382.125799430734 11.811560897315045 0.0019130724278090265 5149515.5986082535 834.0469472167155 25685 1620 234358 OAX_20210602 11913360.67825958 324.921527001316 0.2122310664770747 5.785714272286366e-06 1313900.9570344663 35.81876888088004 None None 1441903 GRS_20200913 15551000.981305778 1491.3750614138526 0.20528555412453336 1.9659845008122464e-05 952625.0518191762 91.23126539268468 37788 106835 3374022 ENG_20190410 46425323.67206552 8974.210163951671 0.598039447083859 0.00011569001542355574 911610.1532003828 176.34989330266333 61896 3353 361220 BNT_20200324 11980447.97654032 1848.174781048495 0.17176178798408556 2.6496989555114833e-05 5695484.497587217 878.6191330161845 743 5022 126378 GAS_20210207 31088697.76895868 792.8116542585954 2.23893236046217 5.6936257894248246e-05 6931747.7851639055 176.2749900459285 336251 102786 149199 FUEL_20190915 4073120.072999185 393.56981845268064 0.004243184543185236 4.100024895885185e-07 1631533.5705583736 157.64877039121885 1 1503 None STX_20200913 194081558.09154183 18612.846592063255 0.22775434986299856 2.1811489913887922e-05 3023484.0196743794 289.5518405668127 43493 None 104221 ZIL_20200229 62078937.77125839 7092.479302701072 0.005995614424078853 6.863137891868668e-07 12626280.697858911 1445.3215193897163 68233 10544 247600 BCD_20210128 114656829.5394232 3790.1990156638535 0.6108676020005841 2.0089624553437227e-05 1746971.1993343295 57.452703966220604 28062 None 1665696 XMR_20200414 930328524.5536203 135865.6193870825 53.09539762625555 0.007754077075682381 148183731.2220731 21640.822455955487 319645 168807 87089 NEBL_20190807 10621832.216433004 929.5346860768517 0.6910351785610588 6.0345649080251636e-05 288286.98231583636 25.175078793328048 40463 6150 850260 NEO_20201226 1067473891.1598558 43248.43962462256 15.149021046199117 0.0006135231988880447 374823423.8777921 15180.047960483238 326040 101147 122618 PSG_20210509 68785157.32530718 1172.6881356673882 32.59409529983157 0.0005548639678805021 31214428.036230214 531.3772705141654 9056809 None 27720 NULS_20190901 32025733.184420586 3336.2471909195956 0.43482701253419515 4.531021394181054e-05 4915604.689856011 512.220017916269 21338 5304 307386 TOMO_20200410 20669498.344414055 2835.7292062151605 0.2938380079031369 4.029898949372503e-05 7033620.011047305 964.6396017682213 22245 1513 218911 TRX_20200315 641651988.2758574 124076.54284501272 0.009746561259712364 1.8796936817609166e-06 1182990508.3227375 228148.1360271067 501292 72197 46870 VIA_20200329 2572829.9422478825 413.8392454616671 0.11166195801036577 1.786405772668473e-05 63962.555920071034 10.232946042343059 39343 2177 2066197 OMG_20200530 225203870.10832712 23895.223700586535 1.6020972856971603 0.0001708757610076024 150711954.9654438 16074.566899011481 278800 42950 572237 ETC_20201124 746733572.0653445 40774.625758165916 6.532130970965 0.0003557956820940511 819142642.0384995 44617.50940877953 238969 26021 183443 XRP_20191026 12847998139.877121 1486477.8021313471 0.2971700043832714 3.432408515111808e-05 2647318897.032256 305773.7924541833 940642 206679 26005 SNM_20190615 11140153.499005338 1280.9588101030997 0.02725764820125109 3.140789473183235e-06 1681703.321060521 193.77592845892477 31346 10004 15012322 CDT_20210806 11939771.532554075 291.19000170916223 0.01781794282663983 4.3547725537262417e-07 451463.3873076989 11.033935775798009 21077 337 695021 REN_20200107 34032225.213545986 4382.485803846883 0.04009566860584996 5.169219489631165e-06 3841541.9236751073 495.25981415357444 10426 869 419374 SC_20201228 150691957.982912 5675.848337957459 0.0033339936820434737 1.2677596824356288e-07 7795047.897736008 296.4087034906222 107225 30094 163532 DGD_20200309 76104735.44337825 9420.655918026501 37.30683112758248 0.004637515816691204 1001466.2105122566 124.48967791581366 17655 4712 323922 BETA_20211202 224067018.43982273 3920.1724712431214 1.400401333064831 2.4489775035599733e-05 83655400.71125485 1462.9391557689537 52718 None 52614 MTL_20210408 282961901.84612674 5023.569712283902 4.388769737648445 7.810168000051656e-05 78542069.23280758 1397.7191615174524 52682 3992 236357 QTUM_20190419 239068993.83904737 45341.29892815067 2.9358363259000364 0.0005566045286161244 144675247.8339304 27428.94670680892 176905 15266 376893 XEM_20210117 1961048186.7889502 54188.352411294705 0.21789424300076046 6.020928046368404e-06 102661319.24761477 2836.7725912473375 221798 17943 70313 KAVA_20200531 25108955.333967187 2595.5676767043087 0.9209854118312971 9.535951949454087e-05 10357655.895485394 1072.4394508261867 None None 393722 CELO_20211216 1267896949.2345164 25990.1576853508 3.4702953140550394 7.101170026148534e-05 47178107.82943527 965.3926680300837 None None 34422 SKY_20191203 8208836.721633734 1122.7851139943427 0.5127828113148529 7.018611677113497e-05 122734.35935124476 16.7990187798391 None 3805 862429 SNGLS_20190316 9727422.901091632 2478.791645782501 0.016475563744893482 4.198387402876863e-06 559403.468406385 142.55005238354448 None 2185 2467008 QSP_20200207 9246310.101696761 949.3735409765875 0.012755932794480902 1.3099200021733837e-06 807113.286289528 82.88330259845728 55472 8341 400753 QSP_20211225 31539163.935015935 619.9119569384548 0.043710572015436225 8.59765280747841e-07 456265.27075737814 8.974511668931587 72834 8666 122145 QSP_20201208 19000990.901648175 989.2249136489806 0.026593714408087343 1.3851021688957461e-06 235435.66668049732 12.262388305388534 None 8195 248691 SKY_20200506 8868367.395118522 988.9080367039588 0.4938614218869676 5.49732082985382e-05 245606.2986319687 27.339179809874697 16074 3828 441501 BAL_20201124 164780744.4909216 9000.133595093896 17.257601402850185 0.0009399964712476116 54152186.50307263 2949.5909098250427 None None 64391 ONG_20210420 0.0 0.0 1.1536436329290656 2.0626459204458474e-05 20406845.192922745 364.86220514632856 122629 18397 153956 AXS_20211221 6327058797.73066 134145.09417984646 92.99509891378416 0.001973176914896983 213419739.78791294 4528.3558881231675 None None 425 OST_20190625 16717565.701674853 1513.6168953094714 0.026130014804143304 2.3659690981545655e-06 879144.613744274 79.60305436176654 18161 756 994275 SKY_20190531 33825437.592845954 4072.094396040876 2.255070838481659 0.00027177983283037583 5174387.497705274 623.6141876912322 15941 3760 432316 STORJ_20210206 76386732.63929206 2015.831809179883 0.5314779176497612 1.3967101902307256e-05 71924589.35525118 1890.1595634466312 84014 8722 105291 DUSK_20210304 85839560.6278863 1688.3350524904056 0.2387887701500513 4.7129683562497235e-06 6331610.775497867 124.96685338368208 None 13431 445908 PHA_20210809 140383046.53835443 3191.0795630061316 0.7725824066542991 1.756663072952165e-05 14476353.097352263 329.1567954189048 None None 139541 ETH_20200319 12900856057.87349 2397518.0380007247 117.7004246469663 0.02182719978784724 9829287702.00789 1822812.6796268614 452886 455077 19216 XMR_20200901 1651981964.006753 141400.74364057148 93.23805569054414 0.0079883193040278 153608483.1860475 13160.652079341655 322565 178484 87669 KMD_20190225 106796702.15974075 28418.05410014538 0.9374943249830501 0.00025025783393379305 7009182.0841828585 1871.054233919619 95060 8287 262903 ONT_20190701 937016069.133681 86356.85336226584 1.4401047266923577 0.0001327318273493452 234740410.53172937 21635.59570710856 80835 16266 247326 PERL_20201115 0.0 0.0 0.02080427758731047 1.2928228315729077e-06 976996.8417562771 60.71269805434407 13273 503 374818 AE_20190601 149674299.17855948 17447.689316713007 0.5622110427067539 6.55550286066531e-05 50279364.953797266 5862.683151867119 985 6356 374739 CDT_20210115 4784906.565307287 122.66457905673086 0.007149889496639985 1.8225900676960475e-07 123817.77007660325 3.156259100954508 19237 294 987559 AKRO_20210725 56361078.775038026 1649.6210874474336 0.020805390727665376 6.089474646946725e-07 17765682.20689237 519.9790419736241 None None 233466 ADX_20190314 12066067.85737474 3120.7520750101207 0.13861537976832844 3.585687877948369e-05 961966.5382815497 248.84047939507394 54317 3929 897974 BAKE_20210723 312663234.86395794 9657.990698134246 1.733704205832088 5.3551518232780395e-05 58318737.582643636 1801.3781869270892 None None 8420 HBAR_20200607 197371655.62787578 20392.386262338772 0.04406894570836631 4.556438407192866e-06 5719985.7157933675 591.408806929719 None 6521 130784 CDT_20210508 26372727.23094459 460.23934361839264 0.03910301273787191 6.823618773128863e-07 1023480.547373803 17.860109971087013 20802 328 439508 POA_20201228 5408640.659250901 203.71773323098958 0.018671668154971715 7.099949894380671e-07 394061.4038842594 14.984286351204087 18142 None 194086 REQ_20200704 18287572.786839325 2016.6312657128199 0.02369467784644319 2.612890662587965e-06 685238.0138297767 75.56346701944763 39091 27906 569797 WPR_20200418 3208333.5379837155 452.32224358720964 0.005236094115390585 7.43770892239728e-07 70928.58605991107 10.075185162164942 33346 None 1026824 HBAR_20210806 2041140161.0319467 49818.35986336888 0.21921747790584634 5.357757993555635e-06 60433570.826646425 1477.0193064379762 118996 23874 44489 JST_20210618 87693158.30536206 2307.0151100765984 0.061461148279381726 1.6102301893545044e-06 65430701.353499964 1714.2291281497048 47349 None 93769 DUSK_20200807 25226862.74317541 2144.1717600619095 0.08924980980813492 7.585169174204952e-06 9444405.041301234 802.6617663610347 17595 13331 756199 SNM_20210723 62273377.21871526 1925.4465472 0.1423061368080066 4.4e-06 393900.37593949965 12.17910691 32353 9707 None ANKR_20200317 4295164.372269268 850.9917826763403 0.0010763906730128375 2.1377262746356587e-07 2013944.507871606 399.97207315860555 None None 5425 QSP_20210420 57926764.63443144 1035.656233081107 0.08115243297087607 1.4509013849882434e-06 2516584.2860422535 44.99329832007301 63671 8399 217402 ATOM_20210624 2297615621.137226 68149.40745984722 9.638009488468414 0.000286089153509052 469312649.70467454 13930.807896147528 160732 31110 46073 GRS_20190812 18470421.483550403 1600.4844361482399 0.25213436857292704 2.1846119494890813e-05 1222291.339049388 105.90512829162233 38584 107010 None GVT_20210124 11255295.33957935 351.629880461551 2.5374294146052754 7.917760552243862e-05 8793105.479949925 274.37887848280207 21233 5447 340322 RENBTC_20210826 679875915.9599158 13870.213603836253 48958.85356434546 0.9989411054641517 12188826.924353734 248.69700484556103 90526 5677 128608 BEAM_20210105 21268502.102883957 679.8025310053968 0.2704064795359438 8.642969227431755e-06 6041089.171330645 193.09059419577093 None 1615 333744 AERGO_20210107 12873319.563576821 349.5181030418706 0.04882546760554682 1.3219603077095495e-06 7647379.611845273 207.05449022055484 11535 None 652713 NAS_20190704 69518246.83681332 5792.504139259733 1.5266725049314722 0.00012722025915427794 9539161.925982026 794.9148546384073 24334 5140 449898 BNT_20201115 45668918.275250435 2838.3086070611034 0.6749661722073311 4.194385862748036e-05 33920383.03321077 2107.8860083938334 86235 5238 80546 YOYO_20211007 3471727.743010205 62.54327426442904 0.020326069615136808 3.6640652368149433e-07 585769.3970683747 10.559332547940969 12192 None 1593198 THETA_20210506 10960079216.78963 191389.5356035616 10.965997799056638 0.00019128575931087895 403769888.38321984 7043.1739182819565 152981 15998 19506 NEAR_20210707 923990580.9555669 27051.866767123465 2.2518517339106827 6.592576054483459e-05 37385489.205388255 1094.5066995710488 87530 None None PSG_20210527 35536929.35097418 907.0292639755402 16.84026029179434 0.0004295603849026543 20382156.645264234 519.906872101738 9105278 None 33472 PSG_20201231 0.0 0.0 13.902780013670993 0.000482170228182882 7334463.989123895 254.37072094627828 None None 36514 POE_20200331 2427058.9189368277 377.5777903134762 0.0009630630637263764 1.500006597321126e-07 94694.49363877584 14.749020135664132 None 10429 751828 DOCK_20190830 3657591.6914703655 385.4290527408146 0.006609118257567549 6.968459717876478e-07 3156149.498188893 332.77511136288786 183 15184 201601 BAT_20190826 244650604.52285302 24233.929223653624 0.1910032264512418 1.8910087108578336e-05 23495404.869216956 2326.139515981562 None 29785 32625 DASH_20190522 1471379772.4036338 184894.75351440112 166.7261978894572 0.0209532404189234 790586025.4092768 99356.54547358425 319957 26044 107339 PERP_20211230 556531216.0533624 11999.537072683635 8.871910644488306 0.00019064638051564058 18760010.200092852 403.12940316933043 None None 104435 SNM_20220112 9782097.129098479 228.66 0.22031750290762336 5.15e-06 126636.37706725446 2.96017036 33272 9783 None OST_20200905 5896257.432036012 562.0151589006275 0.008524322679794099 8.129474576995892e-07 806225.9675874069 76.88814411439023 17655 748 678146 VIB_20191213 3248173.5069276337 451.13917359136815 0.017791983918272143 2.4711305921069544e-06 405003.02701544133 56.25091471254939 31850 1117 None AST_20200301 3351599.1678160904 390.7860782489182 0.019407087060174705 2.2660809591168264e-06 6097033.36096769 711.9240081496587 31796 3487 336261 MTL_20210523 165299530.43025464 4397.512113033248 2.5584280820736387 6.812515122704918e-05 36880760.047173254 982.0511951017095 56533 4124 199516 BTCST_20210527 282598429.25662756 7208.779263760555 38.74136534270147 0.0009881583854063863 12076302.556438155 308.0247567500114 None None 217036 FUN_20190614 37372770.23477858 4542.533084987538 0.00621364711490276 7.55247668839296e-07 728637.8021683135 88.56344612747111 36270 17645 466451 COTI_20200309 10497536.756399682 1299.4418966537773 0.03352738191520044 4.164481607701334e-06 14628175.185351435 1816.985491670918 22489 882 296885 GRT_20211125 4295645188.840384 75134.78742882243 0.8663994954435952 1.5147123207972874e-05 154957274.98734528 2709.09314761698 171844 19759 24595 THETA_20200713 278126934.7917726 29971.15950027088 0.27846338271694426 2.9970331956838878e-05 44650374.737083964 4805.610489289769 71599 4288 81176 GRT_20210506 1888492760.4007428 32988.10677834602 1.538496296715391 2.6836813002050368e-05 231555839.51994234 4039.152241052847 97788 14158 27969 XRP_20201030 10984724881.899355 815489.1683062981 0.24228689266556752 1.8018383187873517e-05 1445411416.5274038 107492.30583870971 974782 219087 20197 FTT_20210729 3391467457.218781 84814.17627327064 31.874055561391884 0.0007966775184480536 81065162.13950573 2026.1868490973511 158518 None 2587 STEEM_20210107 71023461.64054024 1933.337505398681 0.18726066602087107 5.073525698426941e-06 8240147.662278615 223.25350972928663 11871 3831 219133 NXS_20190922 14104311.332406899 1410.8232252153791 0.23604445740881527 2.3628962137612252e-05 117755.4664228102 11.7877771337898 22140 3536 436035 AION_20200208 47023768.14960996 4800.802926020016 0.11995120519996551 1.2242175090472481e-05 8571310.037425185 874.7846931421537 1140 72534 234875 DENT_20190629 133581423.4636928 10783.547555375244 0.0018451278188452132 1.4908332837091677e-07 1986644.769655961 160.5176679501519 45539 9717 252434 WPR_20200317 2193183.703460555 434.5308229865318 0.0035935667418530532 7.14435842477968e-07 177119.71805349793 35.21311389969042 33563 None 964364 POLY_20190908 17238105.185944144 1646.4522523096643 0.03401247684959968 3.2487932753307155e-06 4998839.127444844 477.4775742888602 35247 5060 289476 FOR_20210725 14304182.161334865 418.6718143050818 0.025374711509468843 7.426972325515994e-07 4869370.892360112 142.52253802663503 29311 None 171123 CDT_20190914 8528343.84292563 825.4656027907864 0.012654651088285424 1.2234506053460137e-06 258282.54997010046 24.970735258260344 19676 299 193122 ARDR_20210809 247078976.82984203 5616.418386935303 0.2477674739942663 5.632569939971606e-06 24435001.06905656 555.4879754229848 72594 7004 None BTS_20190915 93266861.30870104 9009.646575960236 0.034408238338513794 3.3241375883677923e-06 8294327.084015099 801.3047386773745 13577 7144 133075 LEND_20200319 22555860.977636002 4191.17027673621 0.020003445938493035 3.7127581049228525e-06 984588.7353404976 182.7455038692481 44146 5742 109064 FTM_20201014 78108797.00273518 6837.0361947595065 0.031098314400657395 2.721674118250714e-06 5167638.342820293 452.2633397081061 27619 2795 110176 NXS_20190703 18237420.158754863 1687.8520359367453 0.3057756195926147 2.8270064764677184e-05 634595.8751472983 58.670689683215095 21382 3522 987625 UNFI_20210125 18649496.077245172 578.7874652287903 7.625803345758071 0.0002362770194302315 11949943.70461682 370.255690170206 None None 124475 ATM_20210511 18153646.247748695 325.1786021004083 9.605245573269013 0.0001719047238146207 2586390.309077445 46.28853144537062 None None 141318 CELR_20190811 25937306.617541865 2289.9854637698127 0.008289931648836624 7.320244924490555e-07 7442204.653582898 657.1677928135334 17973 None 493170 AXS_20220112 5075577981.238356 118398.02872542161 72.66969377286267 0.0016984523417569776 234698569.6447272 5485.427480485129 852102 None 413 NULS_20190105 16307226.025520524 4280.021604594345 0.40735147516108344 0.0001070000583016139 5109349.710529707 1342.086012316084 19701 None 369328 FUEL_20190704 6044625.384629389 503.5644682815759 0.0073290198280147895 6.106796362420805e-07 858884.1980252413 71.56524363861591 1 1514 None CVC_20201014 18171120.169354893 1590.553192445407 0.02697967430798855 2.362079159288174e-06 1599239.2641496088 140.01391171147822 85001 7962 237149 QTUM_20190908 194397119.53153646 18569.184684635267 2.024953626745022 0.00019342744359311502 219804519.89545402 20996.148164603484 178062 15342 240356 POWR_20190905 22384558.010253396 2119.363929302049 0.052504375806060044 4.970533994426031e-06 89389336.21523295 8462.39437334118 84006 13064 414066 ENG_20200501 13722187.536156718 1585.7460610828123 0.1646196086786236 1.909805798113183e-05 1326319.189876644 153.87061719483447 60658 3587 556328 STORM_20200412 8223634.196544293 1194.8820540876245 0.001080092827163197 1.5693290733666187e-07 540382.8476872701 78.51533611713761 26066 2513 908527 ZEC_20190819 380506331.53953266 36879.204530677605 52.691015052838736 0.005106973374035453 202594064.69916674 19636.032692076955 106 15350 180529 BCPT_20200907 2409534.441922131 234.64050734 0.02074347531830863 2.02e-06 100237.23069570058 9.76110333 10499 3194 1330981 JUV_20210427 36646362.898603424 680.238328927158 16.67745075457747 0.00030937958029113495 19486715.66345945 361.4936120593277 2422333 None 44251 THETA_20191012 84207921.35691746 10184.431647091 0.08421632617275837 1.018544815802084e-05 1345871.126703682 162.77485864554018 None 4021 359269 MTL_20220115 120994919.16853103 2805.321326437177 1.8720050358330163 4.340327417306964e-05 8010627.630907888 185.7299850734356 65815 4509 188611 DUSK_20200306 10504439.008783137 1159.1061829561054 0.040440144855229884 4.466232896602697e-06 982527.6861408501 108.51092372132527 17703 13341 936304 GO_20210819 38323655.871862434 850.2161365539428 0.034861005266770925 7.739232813820387e-07 10643611.498505915 236.2909122569401 None 1110 199251 YOYO_20190703 5108530.025209036 473.41158154518695 0.029273472992643632 2.7066943694099746e-06 428040.6918990918 39.57765212664617 7584 None 1328336 PSG_20210430 94269810.04712157 1759.0619392524065 44.881558216634154 0.0008374319302867952 99317528.58499058 1853.1368557390515 9012595 None 26882 SKY_20201014 9271538.757508948 811.5360887752761 0.48785322055534425 4.2707592789678844e-05 45595.156245366285 3.9914861357115496 17436 3815 1153952 ICX_20210821 929777418.8954606 18921.711050049573 1.4370508334274028 2.9217423639954932e-05 112202536.65468328 2281.247796293119 143314 32896 290799 THETA_20210805 6095814490.390681 153130.3658311356 6.0767307953510326 0.0001528163768441593 276066437.4418928 6942.4620176395 185785 22297 19933 FET_20210220 203772043.30413055 3648.5996490260154 0.2966227901918338 5.301809932082148e-06 44376254.113739476 793.1773032566615 30773 1021 277312 NULS_20190818 33986552.66155433 3326.9828662613577 0.4664148031614953 4.563086807257729e-05 5996916.840207299 586.6977619982773 21332 5306 331434 BQX_20200707 12467757.522319924 1334.425813722391 0.05608648802865748 6.002944578645128e-06 1180544.013735645 126.35378923146992 12532 35 385504 DIA_20210212 70930848.349691 1488.1384401332996 2.779642437270889 5.824468902917233e-05 52041768.66651179 1090.4843701714226 24196 222 235170 ICX_20210613 569748425.1895106 15969.942667173198 0.9061649862475396 2.53996364668485e-05 63396725.262532085 1776.9984487318382 140356 32340 245600 XVS_20201129 12606110.238974364 712.2820767059278 3.3729170490802516 0.00019040642799459818 3674444.7212987742 207.4281353693202 12127 None 200025 AMB_20200806 3944712.344994336 336.737827631659 0.027291769036804296 2.3288223745702583e-06 5633792.0790613005 480.7347237074133 19705 5481 494689 XLM_20190905 1214265932.076717 115069.16944651541 0.06186773340802942 5.858861061697619e-06 120658612.76524515 11426.344705833353 275808 103506 66255 PNT_20211207 36083845.04316042 714.8947663180242 1.058844293321875 2.0980605457074632e-05 22924923.33660695 454.24882080638656 82753 380 272921 NANO_20190314 129374980.47349744 33461.376443386405 0.9705577598216165 0.0002510628474313245 4538068.828041068 1173.902810294082 97048 44792 338911 ETC_20190312 457089073.9113487 118217.52439223352 4.19001644160955 0.0010850212377178324 157433144.75711647 40767.93205053849 226023 24205 486280 POLY_20210902 327527007.33465344 6734.355066932843 0.37654517741979265 7.739047238348848e-06 18708545.45505903 384.5124721278343 49284 6055 176445 VET_20190906 217964381.64532727 20620.18497769479 0.003926512255910045 3.7149303329915625e-07 32156498.23805062 3042.373050727612 113626 57431 147845 KNC_20200530 125628495.66585118 13321.43620833876 0.7026051586016957 7.454904980395456e-05 75841460.72973664 8047.064220817912 106776 7692 111071 WAN_20200713 23320605.23720632 2513.045274563026 0.2198173305369499 2.3677693515643314e-05 1440234.2364394274 155.1352878221633 103596 16103 719982 LTO_20200324 6480003.905513004 1007.063063421101 0.030789004127234298 4.749643286590064e-06 1233818.0154852464 190.33403710968886 14476 415 882624 BNX_20211216 0.0 0.0 87.89110980468857 0.0017984916499244224 52915227.79545119 1082.78977880071 94358 None 19867 WTC_20210120 10337466.317765815 285.48511612556536 0.350926930553418 9.736641731664681e-06 2557613.3758460917 70.9622515703057 54760 19093 903762 GTC_20211002 114675532.33442909 2380.9831497362597 8.050915539620897 0.00016716420396804615 15458276.930777824 320.96604977832936 64530 1258 27256 YOYO_20210805 2222439.5677620717 55.87542520874854 0.012753455301433046 3.2067493484411744e-07 332357.51079635735 8.356850798512557 10149 None 1435059 FTT_20200626 291264185.11371523 31450.914461595534 2.9324029109058682 0.00031690858552325696 2333042.0193521185 252.1348766806407 14804 None 12681 XTZ_20210421 4343227516.206218 76877.37829074444 5.665682387518577 0.00010048399330711184 676604051.8279886 11999.944996074038 104805 42600 96118 OMG_20210124 508155243.8508064 15871.921261492666 3.6247047457925246 0.00011310479844118813 392093140.06357735 12234.821506094027 290656 42529 205184 VIBE_20210210 3743737.6138428217 80.46663616 0.020492793135404787 4.4e-07 606187.4119933622 13.0154274 18539 None 1388875 NAV_20211011 29935294.66665787 546.9851433333815 0.41677205062295314 7.617837346357662e-06 868463.7785905877 15.873943074199786 58489 17103 980663 ARPA_20200403 0.0 0.0 0.006919777445607243 1.015060854036468e-06 1712497.7758722785 251.20597715407075 16611 None 1878146 SNM_20190314 8775819.536281735 2269.766534673235 0.02195819546508096 5.680096433116204e-06 584554.4404107885 151.21122303605088 31387 10074 18629318 BTCB_20190905 0.0 0.0 10577.910014773044 1.0015136739552317 127705.72352250852 12.091143540785994 None None 70056 RAMP_20211111 98817310.96979973 1523.500967627462 0.26607111732486227 4.0970459646889505e-06 6446930.627845319 99.27184648604153 None None 105823 HIVE_20210324 232350228.82100993 4262.176669782415 0.6328951012173398 1.1610209007254531e-05 182654623.68424094 3350.726452197984 13571 149 118919 GO_20200309 10013185.854988366 1243.5961153347532 0.010739674282238624 1.3350211702427385e-06 1734309.4538339954 215.5875286133804 10694 681 656341 NEBL_20210219 37559433.76544494 726.6634656546354 2.144704075410094 4.148327854008247e-05 1655003.5101361081 32.011396062956926 39311 5899 648058 SYS_20190601 39342751.746526316 4587.558926885037 0.0710061599890912 8.27947246806638e-06 1292476.2414380559 150.70553679089696 61884 4600 1053467 ENJ_20190622 119580453.52121773 11815.614613079944 0.1375456019481549 1.3589088594401207e-05 5781703.064412766 571.2147393737876 46486 12609 19875 VIB_20210115 3575133.1416061413 91.53889676492885 0.019591993332163788 4.994747475711448e-07 744464.9604743369 18.979255551196875 30359 1093 3160516 DOCK_20210707 62552914.8491828 1831.3748573554842 0.09056429902632904 2.651382505166914e-06 34121068.24109316 998.9367152915274 51692 15134 237761 SCRT_20201101 17291925.830625974 1253.519261809174 0.3067413490460856 2.223387047984991e-05 43702.126413096405 3.1677092814012084 61727 None 428764 ICX_20190213 107086859.69945836 29459.96822967455 0.2259625636349051 6.218522483524225e-05 8508996.86517644 2341.688263186405 111336 23470 236069 NU_20211104 555703035.6397885 8811.53367272851 0.9139587048195441 1.4492233057047786e-05 44023770.75998778 698.0651779335682 None 9197 143277 PERL_20201015 0.0 0.0 0.023214247056421587 2.031272170093311e-06 1144738.9168104215 100.16591527126644 13350 505 550002 DGB_20210725 577787302.3475473 16912.225342329533 0.03976732326895271 1.1620973429923588e-06 19998725.591791146 584.4111185526575 222746 40425 89900 ICP_20210819 8154680150.800511 181035.98593393987 59.283214022303625 0.0013163263114011972 521330269.7611501 11575.63337841817 None 22392 30297 BQX_20210513 788613768.11417 15300.05621198458 3.4495184825053897 6.87671640374214e-05 10563100.24240471 210.57850560800279 None 5253 19051 EVX_20190515 13042968.33504147 1631.7984429371054 0.6669353361188731 8.343703536169867e-05 1890025.3131934872 236.45187224466218 17195 2393 712033 SUSD_20210210 304366723.1469586 6545.804489665795 1.0127785156121867 2.174532987889647e-05 38863724.387656875 834.4415823446632 76029 4357 30058 MTL_20191203 16056943.922741445 2197.0499334091214 0.2921097755176565 3.998193847781654e-05 27076831.26514283 3706.086863743879 None None 519083 MDA_20190902 11461518.293441033 1178.4475830591923 0.5860912816680983 6.024256305548691e-05 496192.04311351705 51.00209025430377 None 364 3117488 NANO_20200314 54381603.32261006 9892.413744885187 0.41271205563898566 7.418796742083903e-05 5507543.331422578 990.0206200854212 None 49324 295755 ARDR_20190616 104743212.26684879 11878.522840502163 0.1051221909314305 1.1917633491582416e-05 1970377.2183525627 223.3803664138486 68120 6557 956576 PAXG_20210427 107971448.50082399 2003.6407037289844 1795.0930327648512 0.03330036090245379 17731380.586645287 328.93079191812484 17821 None 51510 CHR_20200530 6912991.223366947 733.3531790563715 0.02103833852648631 2.232246842202019e-06 5464075.664126074 579.7589781836931 13535 None 623370 DREP_20211011 0.0 0.0 0.6351033398354654 1.1603510592669833e-05 1280990.2965424627 23.40404079576799 4127 None 368060 ONT_20210821 945612675.1645229 19246.339267961215 1.0829813387732863 2.2018653643335538e-05 118072247.16686389 2400.587916133731 142677 19822 180960 DOCK_20200308 4198332.511562276 472.3392627083615 0.00749330647505647 8.426884599476325e-07 1422471.908861769 159.96952295861615 None 15028 375776 PERP_20211002 820794084.0353751 17042.255521031806 14.880382095589194 0.00030893123245646903 45128439.82352877 936.9103860345674 28402 None 106399 ARPA_20210219 43371630.60509386 839.1185377223138 0.04406120135151631 8.52240227186639e-07 21725657.03817857 420.2218351306738 24177 None 879227 ONT_20200313 203248566.9106707 42233.385764602506 0.31463548677949665 6.565749002774796e-05 132400084.75312006 27628.97896016176 84525 16506 345761 DOGE_20200713 456300095.82015693 49111.02614682068 0.003639310721416388 3.9169460105993187e-07 129403955.5940434 13927.590865959117 148384 162390 117230 QLC_20201124 3965460.5511291046 216.5266749896507 0.016667183128604324 9.081718262124975e-07 1425755.5342063676 77.68745307721343 27319 5611 940522 NULS_20190821 31220068.70518661 2901.3472688545867 0.4281705633088082 3.97980218205147e-05 5221737.12961923 485.35519728313557 21315 5303 331434 XVG_20191127 64655656.321219884 9018.192907036515 0.004016444654554584 5.612043754320994e-07 4091780.7943344642 571.7308422227444 300098 52356 312376 KLAY_20210708 2545110561.0798306 74902.25892917883 1.023990839401226 3.013815788901819e-05 23469221.566319056 690.7474929284291 39808 643 50267 QKC_20210325 244270061.517859 4621.129794320099 0.037955430864434495 7.204152926796392e-07 58293521.265705824 1106.4436163023895 69232 9342 355106 GTO_20190329 21607776.03715728 5366.974668461142 0.035267664114901835 8.759839957383046e-06 7139952.71614498 1773.4331055479515 16709 None 763541 TFUEL_20210430 0.0 0.0 0.34989189633028306 6.528531044338375e-06 137636912.84145907 2568.1270922723857 149117 15412 21480 MITH_20200711 4424832.183357688 476.5409332468916 0.007149742658885563 7.700990470474132e-07 9912446.09004452 1067.6699361151543 99 2095 759116 SYS_20190613 38492596.21215218 4733.56001938191 0.06937083789759564 8.530758044307097e-06 879228.2699609147 108.12156612297815 61625 4606 1053467 SNGLS_20190130 8164486.686968643 2390.9677378712695 0.013827881676453428 4.049644243798907e-06 637030.8811858511 186.56136214336487 35396 2190 1005504 SYS_20211011 174740743.2760888 3192.5636509006563 0.2816356791537598 5.1455648820400196e-06 2372769.113390695 43.35117432470877 76691 5806 310151 HC_20200317 38591448.84390063 7646.041688128194 0.8707836808550389 0.00017293880379671105 29883508.487189572 5934.904758376791 12760 842 891141 CDT_20200501 2660449.487883549 307.22774995724023 0.003925558088354758 4.554168035113023e-07 116352.62844050958 13.498448101356034 18973 289 282391 NXS_20190426 19531047.186416525 3760.0417675259764 0.32788864726543043 6.301762918094038e-05 280709.1045685488 53.95009069983027 21317 3513 683392 PIVX_20200422 15489592.810024314 2261.8261527695836 0.24602164265894025 3.593939476115668e-05 284718.7627608586 41.59235707956024 63876 8490 261496 ATM_20210430 18323989.756853174 341.9328439435058 9.712592364049494 0.00018122443370293322 4698846.154327454 87.67440261645672 4938696 None 149248 WAN_20210408 284841939.2158399 5056.873281055719 1.7298803233686975 3.0730496988965145e-05 20477736.38349187 363.77719763195154 111592 16135 280811 FIRO_20210826 104795636.3191412 2137.9990383490417 8.557798583701624 0.00017461064046990092 13336658.366049139 272.11699787596865 None 1154 376180 1INCH_20210813 505386429.2204604 11367.380143106013 2.7985228519724292 6.294805705674897e-05 147664864.0872389 3321.472355778416 248708 None 4437 STORM_20200312 9535463.936886689 1201.8842287411512 0.001249739639802366 1.574339486397088e-07 3067680.9144039336 386.4461877816877 None 2523 826076 VIA_20200407 2866003.9920514342 394.0510201186611 0.12371554450397039 1.700982854578322e-05 57133.710598168895 7.855396226527231 39284 2172 2861314 BAND_20200301 5833046.201796518 680.9460056727887 0.3246583965963893 3.7958830693694805e-05 1290948.164812857 150.93674870632393 8087 1034 796393 ETC_20190818 616464042.8767806 60310.03296380574 5.462994816474009 0.0005344952213561289 443457779.4696376 43387.56889992904 229415 24880 482560 ATOM_20200109 755260697.8279511 93844.55618216789 3.9943398150340594 0.0004964476540596365 130051245.43000945 16163.781423467022 None 7792 112563 KEY_20200421 1679352.0064395242 245.22276761715727 0.0005916452031955302 8.641349770855028e-08 561369.6611471003 81.99156464918177 23358 2749 220323 AERGO_20210819 50649611.36461712 1124.286310143024 0.19257655502068016 4.27524904225628e-06 7959302.7375383945 176.69856749714236 None None 449238 DOCK_20200626 4134222.050054334 446.4162458241706 0.007381878149210758 7.973029933496819e-07 659862.1816873406 71.27049268807262 42023 14970 320646 OG_20210204 0.0 0.0 4.170256302104058 0.0001111786099826594 3114779.7599343127 83.03971243611525 None None 479965 VIA_20190803 7340632.405141282 697.9856554667822 0.31700188684555497 3.0118376999713554e-05 247164.43274586022 23.483114376499007 40930 2230 1890047 ENG_20191108 23401886.241357815 2538.393387191969 0.29741496683472346 3.226048435920339e-05 1113264.559011048 120.75536841960412 61110 3470 400437 NEO_20210219 3104661383.0449886 60066.42783584155 44.03691862615743 0.0008517705460444599 1146382929.966484 22173.559020398778 344392 104287 123772 DGD_20190622 62867931.654225096 6193.122648733629 31.43398154410332 0.0030965628726482507 4250631.999186382 418.72994089227217 17073 3368 464575 UNFI_20211125 52755077.14833324 922.4950088569714 10.543281925902225 0.00018434386344346018 7529138.145496908 131.64310922300007 23324 None 263072 NULS_20200719 45738218.74791898 4987.617031417252 0.4734498684191163 5.1641675704504335e-05 17757371.82431579 1936.8902565705991 29617 5183 415817 VITE_20201129 9209593.585121792 520.2650558423368 0.015985765853675764 9.02535121748848e-07 1009158.3798853571 56.97574264446464 None None 870103 PAXG_20210527 249668369.9089571 6372.427835841879 1916.4059526914014 0.04888437087141207 17981680.18779561 458.68315215616127 20736 None 43058 BCD_20210519 715119926.095508 16776.86487536063 3.857261067431959 9.003015173177141e-05 23115543.37775507 539.5268407505432 32997 None 1493473 SOL_20210107 89806036.82660183 2446.040672116321 1.9231854639663055 5.2131562636442074e-05 66770224.861168616 1809.9326481079927 105615 2855 92318 TVK_20211225 97753706.41136622 1922.542416814222 0.22511305886794827 4.428502090894944e-06 14078510.646842292 276.9573393465393 None None 34727 IOTX_20201030 42198632.95027479 3134.67477353462 0.007243370315122503 5.38670272317339e-07 2901134.880380998 215.74971982054913 27224 1959 374091 POLY_20190515 41554643.58205103 5200.22270297704 0.09318475451143997 1.1657891307106297e-05 10848186.130647361 1357.1637920108387 34827 5058 307356 ONE_20200501 13006051.333450628 1501.934130004164 0.002555348892267027 2.9645436347628613e-07 32758583.916888814 3800.430216341261 71866 None 228473 WBTC_20210112 3922494174.229459 110732.94148579561 35520.93431160096 0.9992744007732566 605252871.0658283 17026.964852472065 None None 159793 CDT_20200707 4558770.829521807 488.1396218951947 0.00675794767538062 7.236209378381577e-07 267009.90249306743 28.59062622784015 18962 290 305990 SNT_20200425 73374426.72703338 9785.4576415517 0.01922858247344573 2.5651745596675604e-06 23368064.21436397 3117.399002976149 110313 5661 178977 BTS_20200315 39196292.61914412 7595.626211612583 0.014564260498087565 2.8110356175722684e-06 13668178.651501086 2638.08361720498 13326 7033 137133 FIRO_20210704 63823424.114034936 1842.037705030657 5.313682812388321 0.0001531483317600272 5802632.392044549 167.24059414809042 73579 1061 237934 KMD_20190929 68502628.21606615 8362.46402037101 0.5897692800231417 7.199613376814843e-05 3756315.8904110086 458.5525738316531 98251 8424 202863 AST_20211207 57181995.609580666 1132.8922774170364 0.32713209203312327 6.48179109809314e-06 2346482.2307587755 46.49316898455184 48966 3752 173278 GTO_20190805 13613312.176251391 1244.2890511555383 0.02054673656875783 1.8764238876536715e-06 3233279.5293135447 295.27817831132785 17444 None 944506 OMG_20210702 583519600.5357441 17369.15440600442 4.1693185153778805 0.00012396344587502288 178087015.43292263 5294.937294245703 326208 5003 166792 FIRO_20210421 149410532.27123588 2644.5021340214053 12.683864214934388 0.0002249553080648405 19019808.5343266 337.3267653824261 70606 657 172734 IOTX_20211104 1244312390.3400533 19783.46424475214 0.13078274180294897 2.0741393208569124e-06 1191417690.7017272 18895.201658734986 151009 11737 62993 LUNA_20210212 2607852149.2477636 54713.07787476568 5.519241318148972 0.00011541322718357625 393951283.9153375 8237.941849049474 24549 None 115872 BQX_20190613 16579727.005295878 2040.7105470626777 0.13910231722975763 1.7098633791451997e-05 1054809.5625869385 129.65853329823173 60746 5772 442313 ETC_20200329 560682402.3242391 89679.52295251557 4.820180661641834 0.0007709739069552616 1554605594.8967688 248654.65288676973 230775 25362 345588 ANKR_20200914 44703301.11574486 4330.704078073331 0.0076711939020328215 7.428136179977118e-07 8238403.644654317 797.7374181859165 26667 None 5082 ZEC_20200531 509350991.3186615 52559.355196620345 54.495018816347915 0.005633509592744428 332929422.2615557 34417.11067828251 72082 15801 170801 CND_20190920 13433882.640436789 1310.6235612007458 0.007697216943665854 7.505611201262089e-07 2629568.4485107036 256.4110969727671 35774 6095 303660 WAVES_20211202 2265510376.749302 39628.66385544211 22.65510376749302 0.0003962866385544211 144382314.199637 2525.558150079219 203345 60005 99205 GXS_20190228 38097953.14252378 9968.645174555155 0.6331832767130403 0.00016598318394182754 6988123.484159712 1831.8724267336574 None None 374736 GO_20190906 7304063.350341882 691.323232945655 0.009500274638603808 8.993539106345141e-07 121233.19921736109 11.476673671287722 10240 687 740517 MDA_20201101 10565217.122665536 765.6656516660922 0.5383588164221547 3.901582811904838e-05 820539.8190332751 59.465991022488396 None 371 4462991 CND_20190605 31614504.044101115 4123.753913154791 0.018154786818042515 2.363458273758644e-06 503919.57055542705 65.60214065165992 36434 6171 588984 HIVE_20210203 53523166.00671052 1502.9139070576382 0.14347167961264795 4.039780526462254e-06 3530391.5536739053 99.40642702325606 11082 107 140605 EGLD_20210120 645448409.0523629 17823.74579101516 37.73782725060783 0.0010470547332778418 61299171.17562289 1700.7759058097554 121951 3352 51208 BAKE_20211007 367871753.7886626 6627.650751413107 1.9100917073721104 3.443170210468406e-05 64079327.63821443 1155.1070096749131 387020 None 20296 XLM_20190421 2241726410.1223917 422109.37974931207 0.11581690370122971 2.180580703161967e-05 227016214.5486199 42742.221638614006 269304 100363 70841 DLT_20200905 3570666.2355221477 340.3461559929105 0.04353950966289551 4.1500671779858245e-06 130160.7185187677 12.40656429 None 2554 None COCOS_20200224 12402512.812088227 1247.1045178005515 0.0005146176638178643 5.171681771313469e-08 1573509.7224794438 158.13082451074945 15050 208 69097 MDX_20210723 632896729.4983675 19549.822444056834 1.1144648804173203 3.442414580451319e-05 33715668.12922702 1041.4263347109522 None None 11841 TFUEL_20190603 0.0 0.0 0.014556315032517534 1.6645258592256098e-06 13497188.881715847 1543.4139663974297 None 3996 222751 DLT_20200321 2345092.2631142563 379.48225657906283 0.02862461128571919 4.627279402747584e-06 229613.76081655576 37.1179547351245 None 2584 None STX_20210430 2246987735.971197 41925.89009460267 2.134780549886539 3.983224887160033e-05 19806556.120670937 369.5647652072784 60833 None 58797 LUNA_20210210 3136342241.7500095 67322.1740472617 6.518806847109219 0.0001399049439631051 1459163021.6075962 31316.178797593016 None None 115872 IOST_20210422 1212172340.8717334 22371.64986062117 0.06549943583198002 1.2094287930403873e-06 508908254.37623054 9396.848813131664 239403 53077 143784 LIT_20210603 85143437.76308313 2260.7846975206903 3.814932376508324 0.00010143974335195957 14374124.626911446 382.21057915514984 51358 None 185177 LINK_20211202 11873198758.797522 207688.78373152536 25.384330794438775 0.0004440267069937498 1975526158.902902 34556.21430484359 638213 72655 19749 BAT_20190324 249100747.2886553 62193.56629269683 0.2001191374542616 4.997691024741334e-05 17046779.90174444 4257.190991299413 95113 24065 94352 NAV_20190803 9022995.323290674 857.2896417467008 0.13713977224772197 1.3029875557621002e-05 839023.1070769702 79.7169668288044 48291 11223 652826 KEY_20190701 6875712.915266038 633.7219249803314 0.0026665178789842697 2.472182646965883e-07 255840.67429032462 23.71950626520897 23937 2844 905724 1INCH_20220115 1041742667.3234091 24173.214597224378 2.3650942517821987 5.485343159429567e-05 99955498.19322532 2318.2594429309656 822440 None 4469 AVA_20210718 100232794.70480637 3171.357539006464 1.930987669734997 6.121117527425668e-05 3720398.3889559787 117.93444434976612 None 10497 50781 XVG_20190603 165070580.6480154 18885.35478302034 0.010203334329688986 1.166832264202244e-06 2588051.072644694 295.96418145176114 304420 53075 390528 CFX_20210624 175180625.71051273 5196.019617375194 0.20731370108232838 6.151469522239095e-06 4356332.524531901 129.2623044858715 34719 None 134840 KAVA_20210219 293268695.3128627 5673.920840360516 5.0333933445113255 9.735686172566026e-05 98320266.40793721 1901.7294946649852 60927 None 92615 GXS_20210724 30410886.899777643 909.797759351264 0.43457470981860136 1.299667907392957e-05 5208034.760836345 155.7549366384281 None 27040 558664 BCD_20190221 145473010.5859037 36641.96391602789 0.7750983407669648 0.00019497126169692775 1469086.359702855 369.53971648241225 20505 None 2421830 KAVA_20210408 386456248.2797507 6860.958635472919 6.568390847355492 0.00011679702260891169 110819150.57039529 1970.5506471013343 84771 None 81020 WAN_20210401 314795819.70606464 5351.913094762009 1.913345335750152 3.2559163766538116e-05 42070416.455451 715.9071357928442 110400 16089 280811 BLZ_20210916 80707502.90817091 1674.6584456201572 0.26182543367408034 5.433254298320063e-06 15451039.58821595 320.6312926829248 66842 None 382517 BAND_20200129 4348150.525122567 466.05726970816136 0.24562180029360622 2.6268596347454372e-05 765075.5576668074 81.82279006028469 7674 1003 897793 GRS_20190621 31259613.436189983 3272.6805271172498 0.42942545727621745 4.4958084166494045e-05 1640473.1249505465 171.74698792241992 38594 107037 12971590 EOS_20201208 2801751182.867166 145870.9151418776 2.9518924207748967 0.00015375889033968646 1709325411.016785 89035.75773211132 None 73465 101778 NBS_20210708 0.0 0.0 0.011862219483409969 3.491295331452839e-07 3184087.394735178 93.71424522808722 None None 626214 REQ_20201201 19187297.29082715 975.9335510840917 0.025104301451394712 1.2752712972644251e-06 361853.71149602893 18.381776245514715 39444 27439 377292 ZRX_20200316 97136021.98621885 17974.837769378457 0.15558283929433642 2.8953159705029663e-05 37367015.96257112 6953.80792490845 152886 15970 132419 VIA_20190430 9990726.972434051 1919.5652972607693 0.4317854860272347 8.296049646472514e-05 344717.42462155654 66.2317970661061 41258 2231 2047585 DASH_20210111 1474300211.763487 38331.501094205254 148.7087884089041 0.0038663977934287235 3161267695.6401424 82192.3073520832 328730 35945 87017 SAND_20210318 412296011.7332771 7005.700126797327 0.6008083266381312 1.0201490797807471e-05 142387230.60821494 2417.679579946764 None None 31612 BLZ_20200605 6264954.56576453 641.8798879299725 0.027759490069262382 2.8395251231218693e-06 3809762.938530907 389.7015957463717 36148 None 740381 XTZ_20210127 2223657890.4190373 68232.6655750556 2.9110120036385143 8.934363097375298e-05 230347584.68906125 7069.737114251491 81328 32574 158435 AST_20200329 2011372.9554627857 321.7862486608385 0.011678866249960977 1.868000760468055e-06 4779593.450164986 764.4821002780266 31698 3469 355183 DOCK_20200324 2265126.0433630445 352.0252156520135 0.004002015834010488 6.206091417987158e-07 322317.5956495089 49.983122186253446 43002 15017 378260 ETC_20200511 721518325.4520009 82406.84107973469 6.26585090777205 0.0007138178223231321 2690809043.9869266 306542.15689742565 231250 25460 364277 MITH_20220105 37348074.542432226 807.3718697818704 0.05966043112063475 1.2990149132565343e-06 13719070.208438847 298.71183399161936 37484 2943 243590 REQ_20200610 12198572.211406423 1247.9087688641412 0.015710942420331688 1.6088581462029048e-06 177933.88798734156 18.221082957030276 38872 27978 832677 YOYO_20210325 8219797.232830799 155.5030977234322 0.04580647890799899 8.694325728245552e-07 19412109.509454217 368.45268872673694 9706 None 1135739 FUN_20191012 24029069.619326334 2906.76880572009 0.0039993808299738165 4.838004809563132e-07 757864.3885796773 91.67797998794495 None 17325 353291 YOYO_20191022 2348124.630141375 285.91469828999067 0.013426001596048925 1.6347902263365568e-06 454012.3222157521 55.28190218695475 7529 None 1389635 ICX_20190201 88893444.73196892 25906.795068687694 0.18777395220561957 5.4724184822585364e-05 9126334.69114675 2659.747108290032 111554 23442 236069 LINK_20210206 10727018609.453405 283020.5135512361 26.660717430075128 0.0007013864366565041 2737905544.422948 72028.43729698859 143384 34148 38996 BQX_20190110 10805177.337614542 2716.933322857672 0.11934524934178233 2.9934567129959997e-05 389623.3165576933 97.726598999284 60791 5825 327720 ARPA_20211011 69019415.78292908 1261.3681387660156 0.07026441324004717 1.2842152744936045e-06 16889796.35492425 308.69302769211544 49453 None 652155 LEND_20190806 4895446.553522206 414.49792259086865 0.004339099471722572 3.673714965838943e-07 1456352.2109781906 123.30261031972229 None 5844 699914 BTS_20200423 46173323.69066653 6490.261470744897 0.01703689468767434 2.3947572393386657e-06 28261181.505261492 3972.4768065246285 13206 7007 127468 CVC_20210217 298434300.0095514 6064.920092453669 0.44566071323728845 9.061340540751175e-06 77670689.3460797 1579.2295468166822 89507 9041 153842 LOOM_20190920 14196895.297041606 1385.2477906462564 0.023597026077290546 2.3009628614915403e-06 3214976.748404016 313.494678287268 20939 None 411903 GO_20210723 19264386.03556121 595.6379895736653 0.017834767647107758 5.508561124971642e-07 457509.82573215215 14.130942943511718 22446 1104 149047 BCD_20190930 82568874.33710901 10239.595954024875 0.4391691482664074 5.4542371421013785e-05 2876290.036451151 357.2192630150652 21340 None 2265228 WTC_20210823 29907289.215892404 606.2200285376643 1.0196112479139274 2.0696373127549653e-05 33162532.504472155 673.1429728450667 65625 19988 846713 POWR_20210314 166373027.0805912 2711.5332006408735 0.3858669907758127 6.2900426217293464e-06 50584630.02008529 824.583305742282 84723 13066 308264 TOMO_20210806 251160818.9015581 6130.113109572197 3.000729431565059 7.333896116335435e-05 18758786.322900303 458.47182592844183 50826 2221 136634 ONT_20210916 912392538.1913431 18932.271696374522 1.043496325149054 2.165015921535264e-05 119082921.06101005 2470.697920696434 151305 20122 111684 LTC_20210422 17391797714.458508 320980.1080222704 259.8100043463348 0.004797319182755268 9569272073.289333 176693.9367777383 166901 295988 95869 TRU_20210202 35104504.271869555 1051.5007566712345 0.23353608436564097 6.992419824592937e-06 5254158.616843519 157.31737120525986 None None 115581 DCR_20190615 266620554.7207034 30643.994026131764 26.775137612000837 0.0030837892511456 13182359.40849117 1518.2599185007643 40450 9488 369344 ENG_20191020 22234267.383432645 2798.585192365073 0.282679189603472 3.555897943212446e-05 1181507.642758412 148.62504037413655 61228 3481 386456 UNFI_20201129 5233176.803101256 295.6897861767009 4.9141939597305715 0.00027741391345514394 28352382.948521823 1600.5362372712618 11591 None None JUV_20210723 23751204.46686509 733.7058219437614 10.707892227904274 0.00033076074191684495 17718104.40875518 547.3022360393126 2567885 None 42486 NAV_20190812 7296237.637916679 632.7300321276792 0.11078684698822877 9.607439989331498e-06 69547.48644720066 6.031160924015828 51842 14188 652826 BNB_20201229 5302039004.723987 195542.3309005825 35.916069082572335 0.0013223911320218394 722362992.9008424 26596.630430704514 None 82794 1070 BTG_20190426 264575667.87796357 50969.82426710698 15.442709554455869 0.0029734418743672625 16619479.689867027 3200.0250128247717 73611 None 444329 CTSI_20200905 11153240.252814498 1063.265614544939 0.056219160142817956 5.361736573818822e-06 2694583.1365308193 256.9879186674123 17503 141 367425 GO_20200423 6615295.198101818 930.5627957434052 0.006939168045070234 9.753903640046451e-07 1059964.1151658096 148.9917490696792 10728 676 903309 WAVES_20190103 309518455.2480663 80020.88925868279 3.0951845524806627 0.0008002088925868278 16404675.780128758 4241.1582303684945 135081 56558 38243 ICX_20200914 268386932.43808815 26000.703023364214 0.4754059844919996 4.6043275458365434e-05 23260344.796432953 2252.7744657298117 116302 27971 115181 LOOM_20210207 58930385.105982944 1502.819334832993 0.07106228300831811 1.8071204576633382e-06 32081097.463976506 815.8252884256091 None None 265333 ZIL_20200626 207226670.29911822 22376.48366960833 0.018876211414131695 2.038784650651234e-06 45038074.10971825 4864.479008803799 80745 11447 97505 NANO_20190426 214991307.3589562 41424.91742499994 1.6206557170620368 0.0003120518168169847 10154592.46443765 1955.2326840325054 98492 45297 385823 BCD_20210508 1432182602.9364138 24993.500874787136 7.63596393598434 0.00013324056096108945 727607706.4623737 12696.086542760908 31674 None 1417289 DCR_20210117 714793930.6293689 19708.10400408056 57.14620727145891 0.0015788405279898395 18078510.86159356 499.4747157655023 41492 10134 350350 OM_20210428 98795889.5503968 1793.3567179338445 0.3361745237466711 6.100553556638061e-06 21875062.008851152 396.96639070823244 37023 None 70476 IOST_20200901 108518384.00087944 9284.496759705404 0.007138545245462155 6.11431148623119e-07 80546457.3525984 6898.970482526361 470 52175 275570 FUN_20190528 39291923.580861166 4456.016437727218 0.006514257092793516 7.402181038486982e-07 1380672.7001256102 156.88648967404762 36419 17679 458828 ZEN_20190507 58834601.996805675 10283.770815337713 9.202441852500753 0.0016086960377545989 936635.887499076 163.73506784278834 None 1612 234358 ONG_20200625 0.0 0.0 0.1702793416297316 1.831710463186879e-05 12958793.384848362 1393.9892652931835 86006 16495 143020 CMT_20190520 31497356.852910105 3851.7780807527065 0.03934304321519281 4.8090328827099225e-06 5067856.705061554 619.461219768877 292320 1643 879969 LEND_20200422 31538120.837390576 4605.439721236534 0.026669281155923853 3.896716142325602e-06 1504227.2549695875 219.78644988202606 44339 5719 90147 ZIL_20200421 42660990.89739749 6229.927131013505 0.004062163910204841 5.936570013653138e-07 13522656.510572502 1976.2421930814687 69568 10550 194676 LOOM_20190220 28287994.78013601 7227.902238287269 0.046536887621713 1.1885714746052048e-05 3351194.757943231 855.9090860385306 16952 None 410268 ONT_20210722 536856663.31199 16682.880708675097 0.6146573466631691 1.9032367330475326e-05 126614821.25478046 3920.5254776268234 141627 19694 156257 ENJ_20200418 86883506.51423913 12272.851688131503 0.09413575173336605 1.3372232874163397e-05 5298849.086008927 752.7155479021271 54250 15305 92997 DUSK_20210603 47217840.04606687 1254.7443202672978 0.13091930001778168 3.4789869242306696e-06 3255567.2870171424 86.51188954529566 None 13601 341273 OM_20210718 33601626.69845552 1063.0247061355446 0.10473974937546565 3.313760477613459e-06 6335853.322357509 200.4539867316338 46244 None 86802 TNB_20190920 10806209.53642676 1055.085693774965 0.0037466231568978534 3.658089804277518e-07 527676.8528904502 51.52077576731933 15537 1461 1364178 BEAM_20210324 89272827.35860011 1638.2634418763694 1.0616795388088405 1.9468768536303513e-05 34315244.606457114 629.2629085225694 17707 1982 205649 RVN_20190719 168825102.11537457 15754.114899559205 0.04173195464638863 3.911298568254443e-06 18666730.973640118 1749.5264420236697 26748 6793 272876 LINK_20190813 864999177.1902378 76004.12752913212 2.3761743643881887 0.0002087843050274031 55952861.01691695 4916.339211798438 30924 10289 107221 UNI_20211221 6611242460.677133 140131.99740611782 14.530517192162566 0.00030830959287080355 192997528.0838154 4095.035883560096 None 59017 2356 XEM_20190616 768821349.7144029 87195.29522862834 0.08543583831482915 9.689437628194373e-06 36897974.11618283 4184.6680018287925 216449 18461 184681 HNT_20210710 1123682404.5083275 33073.19650892548 12.576137580587673 0.0003700500261680295 6616129.644510163 194.67813010102697 61927 41241 2473 XVG_20200224 76156235.89810067 7653.367629165774 0.004704929628824479 4.7282478833287836e-07 1366046.9767246004 137.28172865020198 297259 52020 319965 AION_20200404 26738790.445717435 3976.210945772178 0.06519631281581534 9.691485995027317e-06 2659595.750087686 395.35111498140384 540 72559 269211 STORM_20190205 11684318.037752608 3372.786074046287 0.0025857234504857813 7.463929017470321e-07 646459.83506868 186.60658860063702 26540 2569 3618383 BAL_20210703 229641176.70929715 6790.458361224168 21.27664591726092 0.0006283462729833671 25508398.642431665 753.3192627764198 89457 None 89492 ORN_20211011 237823782.67736223 4346.59202448053 7.671181764724201 0.00014023948995525636 8333595.240984762 152.349296618612 None None 76105 CHZ_20210106 107559005.58843121 3165.6362244137695 0.020223770408528817 5.934886063998609e-07 56730779.974622846 1664.826630592931 65237 None 151849 OMG_20190608 285289175.78055555 35457.483838411245 2.031478898053285 0.0002526943292214514 166650419.41441917 20729.53649125014 289221 39533 None BQX_20210527 575531747.3216491 14689.624193807882 2.5962807822800937 6.627232116589106e-05 7234913.488361694 184.67744844109717 79970 5627 18222 STORJ_20190806 23688544.768171165 2005.711325464927 0.16475515388603648 1.3949057367194846e-05 4319597.228688751 365.72033180724685 83788 7773 204651 HC_20200711 55465241.88974188 5973.43741810458 1.2413877304221526 0.0001337003148874668 23457676.453816835 2526.4457280700535 12689 845 560022 OGN_20200224 6874982.422272915 691.0218368811001 0.2868930503617591 2.883149303241855e-05 27390783.77749059 2752.6536130359573 62678 2143 124471 CVC_20200306 21851412.982460845 2413.539221252035 0.032562845064011914 3.5946134735432576e-06 9348494.57055132 1031.9806047226743 86774 8082 106398 ALGO_20200412 126950278.24792828 18449.36424315403 0.1803401091561825 2.6205344625395913e-05 85999588.61396033 12496.659050590599 None 836 317295 IOTX_20200207 23219575.56124119 2384.1139716769994 0.0053787863455739306 5.523762977827729e-07 4698466.255891104 482.51059420161573 22182 1800 490355 XMR_20201208 2473464839.917083 128778.95152728443 138.93765507501456 0.0072370183684147965 369687437.0780965 19256.369133780656 None 185126 74671 XVG_20190314 102538678.91420905 26513.617703105458 0.0064981008895220104 1.680921816048606e-06 2903346.867616442 751.0346749466748 304691 53330 436458 SNM_20211230 11801502.71988337 253.968 0.2661641894551314 5.72e-06 201261.87452280897 4.32521717 None 9786 None THETA_20190716 102706253.0104698 9377.835475326327 0.10277970525198879 9.398641606807247e-06 2609442.0277442727 238.61919386107823 None 4015 240889 LINK_20190719 976927226.6067691 91026.03333271088 2.6684619350825614 0.00025009974813228897 174468869.2808334 16351.974030580142 27901 9769 123465 DIA_20210624 55051223.73928067 1632.8702865949829 1.1326174485706093 3.361996763946325e-05 7101243.332575811 210.78923986422168 33042 389 401375 XMR_20210731 4359936025.2861395 104501.61300779355 242.6039260530579 0.005804162977614703 216150731.11801052 5171.2851129421915 431211 229936 35732 ALICE_20210420 151397277.68591997 2704.412605240214 8.652501737878653 0.00015461572756786675 50466043.20354606 901.8020710968046 None None 73832 ASR_20210624 6409966.821773254 190.13550223255277 5.1986839593399 0.00015421250046459718 2410167.5929198163 71.49462709214157 1975452 None 118104 ETC_20201014 622510367.6144215 54489.71278924968 5.349547778751757 0.00046817461876289186 537360276.9310168 47027.98314836309 236543 25861 164326 ZEC_20210523 1597557000.1096215 42500.279589162645 143.40438914371583 0.003816118623197161 1531781219.1047387 40762.06364249486 75709 19648 84250 LTO_20200629 11140169.988613652 1221.5315277565371 0.05033956576058513 5.5193261802543525e-06 2180213.1300292406 239.04273358922205 15782 482 1399831 NXS_20190524 24257841.299019583 3084.609199239846 0.4062753335299726 5.166167161302355e-05 338164.7383706822 43.000778592730796 21326 3518 737068 CHZ_20200305 60549758.52722467 6916.357203287177 0.01266963372053883 1.4464989075333932e-06 12270781.74305314 1400.9617623856764 None None 294872 RVN_20211111 1235831406.4585469 19036.30788368531 0.12364240887512945 1.9034706184235728e-06 98516727.04145592 1516.6616135411339 76613 57433 56504 LTO_20210813 85463877.06745435 1922.3585408073006 0.29466729685565746 6.628018927341487e-06 18772056.21278576 422.244155395399 11443 4375 653266 SUSHI_20210212 2154083432.697369 45192.951078882885 16.87982216753701 0.00035297509899307725 970041537.5411583 20284.60396931705 39066 None None AST_20200321 1808545.8864240155 292.5471154196119 0.010551805321370195 1.7047770398107768e-06 3834540.4699443397 619.5183053791856 31750 3480 355183 COS_20210115 22627516.046878207 580.0729216144031 0.007515320773544135 1.9157427543248384e-07 974754.3866456426 24.84762406997178 14178 None 444691 TRX_20190130 1773908655.9854002 519488.67442717723 0.027054550355553507 7.92598003367519e-06 213717899.24917087 62611.41952190018 377590 69644 80083 VIB_20200127 3423505.320207207 398.86396140089477 0.018724634338331932 2.1788726251580793e-06 773993.2417839796 90.06491961918366 31701 1112 None OST_20191026 7337781.634025723 847.4962299021981 0.010876523798164518 1.256273256014317e-06 347632.61139392876 40.1526775205797 17968 757 847910 XEM_20200907 1241032810.5822637 120444.06308059374 0.1355550389198489 1.319243402212176e-05 132065858.59276344 12852.8613907895 210586 17846 239986 CKB_20210909 434001535.4103777 9367.912414577124 0.015611487751369309 3.3720354905690514e-07 26708078.89266224 576.886657731105 None 6468 125877 FUEL_20200605 3285329.349259147 336.60052595670834 0.0034215624194718856 3.499924683839204e-07 557574.7219009645 57.034456573414566 1 1466 None DCR_20220105 959737682.2279613 20746.59419008447 70.03075001401254 0.0015248127937727623 4720403.767464959 102.77959403495628 50968 12491 103200 BRD_20190318 15417029.112366091 3905.179222769338 0.25725289502363985 6.516292168364456e-05 480486.6645872715 121.7086979396628 153 None None BEAM_20200117 31705102.985650767 3641.475024932476 0.603063077698692 6.920991170123075e-05 30021492.47859108 3445.385599647959 12320 1420 301167 CELO_20211230 1631168091.8656478 35170.1062321789 4.478406531263503 9.623541420510271e-05 32279994.69024231 693.6571385084924 None None 34422 BCH_20210729 9563518839.097807 239165.69647156564 509.4302288173108 0.012732976816674546 3486987583.354075 87155.66832764813 None 594845 283440 LTC_20190627 8235782514.49842 633432.9412829555 131.58024224692923 0.010137428653230689 6671202463.207191 513974.11835664895 448122 205018 158874 ADX_20190903 7073055.536190426 684.481903791276 0.07686063699070177 7.436353427060918e-06 167411.8737225186 16.197287839778724 53743 3841 517237 DASH_20190616 1370093607.4159696 155388.13618257386 154.44794112337433 0.017516228807907906 360462625.3946878 40880.73804796732 319903 27281 110566 DCR_20211021 1703395523.6844528 25692.23385341214 126.45489389431474 0.0019148622884421443 12497001.545267677 189.23772928579513 49226 12193 242987 FIL_20220112 4272909235.4460487 99790.32620553458 28.913400425572682 0.0006756588281800837 325118952.28945464 7597.497599374064 None None 30755 REQ_20210603 69300492.38600792 1841.5581722551426 0.08979063874830083 2.3860535313069215e-06 747723.826480984 19.869655695605992 43010 27751 445673 AST_20210204 23363505.29131446 623.618471109198 0.13562743137738603 3.620166166909733e-06 2007263.494153598 53.577858961203304 35773 3438 162456 WAN_20210131 65826794.447283395 1924.2568271064547 0.4021909550811447 1.1772200810346484e-05 5719320.9990588 167.4055431857427 None 15798 443553 SKL_20210826 423895135.95305943 8648.107750489406 0.34929439063466194 7.127852089388815e-06 63873385.26836929 1303.4278672905305 72459 2418 218531 BNB_20190603 4799627084.503358 549114.5663945976 33.229542163859946 0.003800061888459409 443583022.6925535 50727.239351942764 978723 52101 864 BCD_20190920 116774100.39475223 11404.763921312053 0.6207715073787785 6.0571155953498684e-05 4142293.1417332296 404.180090275852 21361 None 2265228 NAV_20190531 13811981.940937757 1663.7123032985005 0.21173980667894443 2.5504965397159236e-05 458329.3570711911 55.20773148871207 48497 11281 1040184 CKB_20210218 238739911.68524146 4579.50383201544 0.00997202427551902 1.9120764794870916e-07 17455960.82797896 334.70769027273946 27702 816 255152 ELF_20210106 51500865.5331513 1516.0542796300595 0.11173124874667865 3.277844019919117e-06 22398592.977882586 657.1043899599953 82055 33334 479481 NEO_20210125 1722783121.8683126 53503.731717043396 24.446683584052675 0.0007577130761798675 658528211.6060586 20410.761862715415 331126 101609 169176 IOTX_20191024 16650380.068067374 2230.5086682083106 0.003846859694887771 5.152625445363815e-07 1544471.0918757783 206.87214192406728 22556 1778 522982 WNXM_20210114 66428001.392017245 1783.9651474507598 35.59413936246831 0.0009547230166023999 39388638.94938838 1056.500897933639 18135 None 132342 LSK_20200626 164715543.77106714 17801.022429778466 1.1733449488346441 0.000126804910294942 2247065.717444822 242.84330623354114 175131 31190 194938 QKC_20201124 29360068.09998843 1603.1524815825187 0.004987534900736856 2.7166377861425514e-07 1716475.5027602448 93.49392641037156 63852 9215 96511 PPT_20181229 56782200.52629235 14763.807877632034 1.5347204012362425 0.00039903658444985935 884093.5290627407 229.86966348218468 23491 None 433172 CMT_20200907 9291009.376629408 904.7484145882856 0.011613761720786759 1.1309355182353567e-06 1683444.7982726963 163.9320283235648 282670 1634 830307 NAS_20201030 12489175.47974 927.1768378546201 0.2742534269630726 2.0395669296188872e-05 2148085.7342031887 159.74876500109667 23454 4882 901179 SYS_20190515 30551657.688483264 3822.107113030039 0.055242783794735836 6.911043552475814e-06 864499.4184737448 108.15155793671991 62125 4593 1307286 AUDIO_20211225 888277960.8883454 17469.946873856035 1.7384409796486453 3.4199213284146016e-05 32646085.308411427 642.2251013551447 None 8853 22668 NAV_20200414 5228866.0473553715 763.8012825522735 0.0764465557328974 1.1166852772031341e-05 23830.289007928593 3.4809851969822634 49221 13935 1202030 ARPA_20200117 0.0 0.0 0.00878936443162229 1.0087023376457594e-06 1517582.1308408168 174.16374697595975 12554 None 931659 XVG_20190725 92597633.59427056 9419.822380373165 0.00583463239909305 5.942470501980593e-07 1386450.5757479859 141.20755319764615 304096 52960 416991 ALPHA_20210722 190290633.68196973 5913.144471559722 0.544096487627586 1.6846988978752775e-05 71652944.26971446 2218.6071585768195 70623 None 56625 ANT_20210218 211979563.92647415 4061.680324653399 6.122236340750669 0.00011739024881586738 57939518.53581722 1110.9558858286714 78314 2768 120479 BTCST_20210511 488097155.9541378 8741.9477008095 66.7694037801149 0.0011941919707640046 20298370.373239886 363.04279425865064 None None 170961 BAT_20200418 242729489.51025292 34287.094807884954 0.16596517084074452 2.357483660083743e-05 84803808.97587138 12046.117445046397 115290 36960 18644 PHA_20210519 220670249.38149852 5171.726679632592 1.247535285537078 2.9161049888461954e-05 59350937.71539102 1387.32401055928 47287 None 148583 BEAM_20210813 60610530.80680115 1363.3265369807164 0.6412431251607287 1.4423683837856056e-05 7604942.075070081 171.06036040312404 22190 2590 205785 BRD_20200310 11358835.200016452 1434.6965247021255 0.18786292461438245 2.3736845438731336e-05 455615.15017743624 57.5678592330304 180 None None VIB_20190401 5760522.486596489 1403.753968869733 0.034120682469862454 8.314957894034624e-06 2268068.4552021525 552.7115034246874 33052 1128 2240138 DNT_20190426 8417249.998214543 1620.4564588326864 0.014464302821207609 2.7799256825437266e-06 1603650.23519798 308.20901150574474 60944 6416 1091663 ONG_20200425 0.0 0.0 0.0873616430834908 1.16555791946544e-05 7122080.276669532 950.2107305385041 84093 16481 204987 ENJ_20210218 510459171.36006856 9783.199373476267 0.5493786049846308 1.0536502884279144e-05 61261440.990142405 1174.9299004932852 81618 17723 59943 PNT_20210509 106942575.72835766 1823.6027357673395 2.559903050822469 4.357838286666904e-05 65837250.515847035 1120.77717511473 39630 283 348864 KLAY_20210826 4369490250.690571 89144.27012172538 1.7473857962388677 3.565790872295096e-05 64633164.91655883 1318.9322587094218 43219 730 64531 COS_20190916 26507764.287008997 2572.9628981119467 0.020147933578310052 1.9556491075341833e-06 1145771.0228896628 111.2136919472931 9316 None 303115 FRONT_20210703 23892750.01978591 706.5053683724907 0.5413783838068257 1.5988097516009726e-05 4928386.139319495 145.54611072189863 None None 214172 REQ_20191216 9135557.776859716 1283.75582537136 0.011871578245574888 1.669435433277595e-06 53948.50336722917 7.586484394113232 40238 28796 1586052 IOTX_20211202 1443128500.140918 25247.43499984497 0.15234423516607512 2.6641477404356066e-06 61875016.18662863 1082.0506885824827 175995 15524 48469 LRC_20200621 104988754.33326186 11222.38460437262 0.09010649503368537 9.626624317156262e-06 20062550.55413052 2143.4041681053995 35613 6891 408887 KNC_20190725 30186333.799433473 3072.722587711868 0.17976003550197117 1.8331857211979454e-05 5008866.112951001 510.80218203190896 97591 6693 215847 LINK_20210421 16351577230.760704 289415.88135743025 38.78867382881852 0.0006880599912137117 3597706486.783364 63818.57509772654 243431 49560 26155 BEAM_20210718 40094078.9337415 1268.420629120166 0.43302555826146316 1.3699243520291548e-05 5802387.85309032 183.56497135596433 21747 2531 207096 IOST_20190806 119569042.43377593 10123.055957552346 0.009945469965718708 8.42036973189228e-07 38396266.69685673 3250.8344304120774 196823 50566 101612 LTC_20190816 4810925277.664582 467493.35181808966 76.33490307845815 0.007409406098154515 4212152728.603732 408850.32737379684 451876 207604 123278 NAV_20190930 5684285.008621911 705.2824117999662 0.08575877595292032 1.0639187138615035e-05 53520.598301869824 6.639736339250362 51161 14171 455499 PNT_20210930 28577818.712263837 687.8551533636282 0.8489771214807162 2.0424511456161643e-05 12331698.267295737 296.67338042634333 64775 346 370553 SUN_20210617 0.0 0.0 0.0003316891134470652 8.5e-09 1.4121614350949505 3.618862275449e-05 59 None 3515147 COS_20210511 89714910.41692328 1606.8175060648066 0.02979158845518645 5.331789537625221e-07 15468961.515565744 276.84743057821765 25085 None 191552 NXS_20210616 47593699.48105636 1179.2108898626168 0.6982135007796556 1.7299368877516733e-05 212269.4388287339 5.259318703550251 25663 3951 492000 XMR_20210506 7453959660.26293 130164.19403246608 417.4802034168153 0.007284405770051237 548668916.3474824 9573.452794596344 401749 216165 36296 XEM_20210711 1103904457.549663 32737.60768743852 0.12260044671655349 3.6373973056205706e-06 65335519.20234464 1938.4206817563074 371171 21687 80485 WTC_20210821 27508968.901357744 559.829428267514 0.9435583960666857 1.9192734899374155e-05 21384148.527241927 434.9707399595756 65586 19973 846713 ARK_20191022 26951785.009554636 3282.1341632089097 0.1890986973535225 2.30118411738485e-05 398348.25931060646 48.475885891468494 62776 21735 85415 SNT_20200321 49258797.44169767 7971.046556915646 0.01327408464011 2.146537570399914e-06 42923760.54458988 6941.153922840146 None 5611 189796 STPT_20210418 89299299.80080956 1481.343299046339 0.08708969965525556 1.444994493894762e-06 16213156.41850943 269.0091003429801 29069 None 910650 CDT_20190131 5014195.479767968 1449.870130855925 0.007433071754115001 2.1492956866729297e-06 131598.62672764328 38.05214992593338 19516 284 397151 WAN_20200806 28075196.11377289 2396.6210265449045 0.2639524559815573 2.252384730413913e-05 1995701.1129186305 170.2991054389755 103908 16073 598620 CND_20200117 11599158.33151974 1332.621233122969 0.006184807018240825 7.097929942172086e-07 121223.0665771435 13.912040123518102 35177 6011 525031 RCN_20201226 19892824.15795342 805.9528309621629 0.03896587539007436 1.580243763295551e-06 527255.0631162929 21.382594816996203 None 1131 2745170 NXS_20190511 17060012.873692267 2677.2873433236996 0.2857246172422227 4.4839761088237154e-05 430793.60565715365 67.60594359159232 21321 3515 725458 MDT_20210825 24588284.798159983 511.67206930546024 0.04048133035979899 8.438758577282775e-07 2782868.9168680324 58.01182602683204 34755 325 955933 WAN_20200309 21171744.83891151 2629.4428184824255 0.1991156315276545 2.475154985429053e-05 1503726.5855914983 186.924367840607 106216 16383 700059 BTS_20210804 118868087.80112681 3093.728944537016 0.043668761087617074 1.1412832812990723e-06 12103066.436768062 316.3136996037246 6366 7182 184072 TRU_20210930 181294945.7328109 4363.687234378661 0.41559848103570757 9.998380076806336e-06 7983946.567756869 192.0760925266424 33364 None 88722 WABI_20190801 7918355.907841363 787.7358960814902 0.1391985427076404 1.3824229459254577e-05 247514.33710767646 24.5813995180856 36377 7990 1513094 DUSK_20210212 48533337.990162775 1017.8230534766411 0.160590218959907 3.363415510031869e-06 13404471.044283293 280.74440713834133 21850 13383 931184 CFX_20210421 0.0 0.0 1.041075399348602 1.846404480611219e-05 20170916.868933074 357.74230481421154 31225 None 146617 ICX_20200502 153857349.83212125 17363.19083718473 0.2841115083107144 3.2170108862882296e-05 37513934.422431774 4247.724287623114 112682 27592 103972 CDT_20200312 3098270.6900581624 390.63066725469076 0.004598261734070854 5.792586540570405e-07 71051.06308231832 8.95054382516613 19265 290 235568 POA_20200208 3559074.266580409 363.3569751058647 0.016077343979430208 1.6408477068473405e-06 850168.5150872268 86.76788032895743 17476 None 433120 BLZ_20190826 7246104.957749543 717.7648100880331 0.03463060739487602 3.430343817119682e-06 591138.0496654288 58.555333165598114 None None 1006021 LSK_20200610 181858009.43435624 18603.99731446486 1.299923423970857 0.00013305623711620752 4122736.5763927484 421.9908691240517 175126 31210 201752 SXP_20210826 750309608.7963138 15307.143397306105 4.003935545952909 8.169504613143577e-05 504688428.2908417 10297.504532233806 None None 111870 TNB_20190507 12872598.151922394 2250.0169067090314 0.0049240642662147 8.607885309280152e-07 1669920.8161362922 291.92321797072884 15773 1503 655962 FIL_20210210 2142897308.3311505 45992.388890277995 43.360374735209504 0.0009309477571623903 2018558778.0812674 43338.48078183892 50439 None 48258 HBAR_20210819 2117170116.2685127 46969.74116195661 0.2269112820797098 5.043348081983587e-06 68960916.54952155 1532.730779290587 None 24388 50561 STORM_20200526 12702652.61670095 1429.3906816035721 0.001655915959382425 1.861251914902005e-07 4238826.262033706 476.444680205241 25678 2515 825026 MITH_20200223 5141454.290583142 532.9244555597991 0.008318121869184389 8.617181892336633e-07 1433154.1803326425 148.4680129229691 92 2083 1703270 SKL_20210324 435737729.61247903 7993.0680280454835 0.658287851834205 1.207602892174563e-05 149446915.52249357 2741.544248593915 18274 865 169280 CND_20190522 33374253.65158832 4193.835281938859 0.01918073697795759 2.410426407306357e-06 856825.2197937042 107.67647450722396 36594 6182 561865 ALICE_20211216 217374113.92668104 4455.872775053801 12.529744587345998 0.00025639272352009137 85902942.482853 1757.8083278578356 150020 3097 29730 IRIS_20210114 40375047.10920242 1085.774423603867 0.0434886486891127 1.1635523240635307e-06 3302686.134071477 88.36439491193744 11314 None 805488 TNT_20190816 12452403.943459798 1210.2520019500812 0.0290911833874071 2.824515733940512e-06 794182.7488241273 77.10864284224665 17544 2544 645355 ROSE_20210819 154069371.9086394 3419.929215295509 0.10267758698623478 2.279856306210337e-06 16000715.899269061 355.2803890075746 27530 1782 261219 DLT_20210508 17358085.31996688 303.43726508277643 0.21147325256708652 3.69001412742693e-06 1420609.3295388084 24.7883286984 15177 2588 4809355 ONG_20190726 0.0 0.0 0.24506834704426714 2.480061070577729e-05 10950760.948481351 1108.2033338489753 81393 16297 245341 NPXS_20190805 133230357.24295858 12177.570943253224 0.0005683171756653071 5.190137716583964e-08 2749794.978471091 251.124112410091 63993 4691 187000 WAVES_20210513 3296336002.881598 65398.57100550974 32.96336002881598 0.0006539857100550974 1025542237.9479464 20346.529240028212 186006 58641 111881 PHA_20210826 152435737.18840888 3109.9074005128177 0.8384551323899639 1.7107575767290535e-05 12911091.423957774 263.4338633531591 108114 None 161711 JUV_20210120 0.0 0.0 9.725376348565216 0.0002689593994775917 4633419.697121897 128.1391829581384 2227875 None 106290 FUN_20190901 16113339.605280265 1678.664482107984 0.002686661429218983 2.7988210543078195e-07 545259.6294060749 56.80224959679555 35929 17418 352374 THETA_20200518 190037635.2388047 19512.75579882584 0.1903059938555999 1.94634370305116e-05 10052663.220888818 1028.130400018675 None 4046 375081 GXS_20190110 34279098.495097525 8617.09127984175 0.5695597186956322 0.0001432211646517296 658173.2464819105 165.50387221839887 None None 222604 GO_20190225 12572435.269467076 3328.1097973070873 0.018240591629474116 4.85372777681577e-06 918525.8566695894 244.41501431547707 7855 628 747955 XZC_20190629 86865345.09623873 7012.3266803933275 11.127448875571673 0.0008988017206740918 22105181.112124637 1785.5103215083814 60625 4021 343816 ARDR_20190618 105531009.57754949 11331.042949786277 0.10563669962370646 1.1342391068762535e-05 3178300.8078833395 341.25953220415346 68113 6556 956576 RCN_20200531 42568667.419839606 4403.37932635464 0.08322540574421566 8.617220858825458e-06 501552.04765663925 51.93107475061842 None 1134 1104795 DOCK_20190227 4622645.883348808 1213.3289691635293 0.008995334417946872 2.361023953741617e-06 366447.6198880087 96.18226162009283 115 15370 163959 VITE_20210206 16616916.555628415 438.42943393879835 0.02895827423619777 7.618302407472522e-07 4908449.835483277 129.13081385173803 None None 688715 SYS_20190426 30394857.5245549 5856.536613348206 0.055068140795474375 1.0600747499847937e-05 247233.36755251334 47.59300868164919 62401 4604 1041442 STPT_20201124 14065691.828774907 768.2452721289181 0.01540873394871255 8.393250319430751e-07 1828744.948175424 99.6130776968423 None None 1434198 NANO_20200301 98296450.1690502 11462.14370977155 0.7369180854308048 8.615994267588502e-05 2593039.0585966483 303.17629742308236 97757 49111 295755 LINK_20210221 13839448881.371605 247692.17883195236 34.234837285690624 0.0006089721881436733 3019413258.815159 53709.579040389865 160244 39567 34188 SAND_20210430 395000985.6542448 7368.673285855106 0.5645678692902376 1.0534107534225512e-05 72557957.25072542 1353.837803599738 107793 None 22461 TRB_20210620 73980985.47670418 2075.2715838426398 42.510102829760065 0.0011939827690841762 33146110.3271359 930.9759788456082 22574 None 262407 SNM_20210704 84442999.96557735 2446.19231792 0.19416498877808094 5.59e-06 112369.84588114885 3.23512206 32414 9712 None ETC_20210707 7011341918.363398 205263.1476674168 54.65277505252012 0.0016002146896297502 3549734027.0631537 103935.00657425629 478603 58190 107608 ZIL_20210809 1078364786.9431186 24512.55987053593 0.08727052499873829 1.984317883788291e-06 99651709.29281965 2265.8356747902308 311088 35435 45480 ADX_20210620 68154448.56427823 1911.8134425348087 0.5549236053069505 1.55874001100411e-05 839420.8310982314 23.57872007948529 58657 3860 12658 ALGO_20200113 123915126.30726492 15191.33621107901 0.2267430798515848 2.7764129941028966e-05 48293869.08936916 5913.464956151852 13831 732 440890 EVX_20200905 6989815.0568131115 666.2500857742108 0.32035320700150005 3.055331657277265e-05 513432.95064942626 48.96807379241009 16911 2831 827179 ALGO_20210704 2718608483.457315 78420.88775797405 0.8744511044728553 2.5220289460807865e-05 139640592.99632978 4027.413491540303 None 34723 196865 NAV_20200422 5127716.923969009 749.0684183808304 0.07487375097912603 1.0937725903317254e-05 60657.956555612844 8.86105068845268 49096 13922 1361419 CDT_20210106 4992265.556082584 146.93048341019602 0.007418941453057657 2.1771693086866138e-07 241218.25644332424 7.078812900010914 19234 293 987559 BAL_20210702 219058701.78363046 6515.387059317743 20.25442568308301 0.0006021346561472431 31877179.0958168 947.6622331402529 89254 None 89492 OAX_20201129 3874664.7730699363 218.27007536136693 0.06962108745708845 3.9200048630431454e-06 152621.02116333004 8.59330365288558 12758 None 1870485 MANA_20210324 1130731615.120786 20750.281159855644 0.8595873523311811 1.5745047412451544e-05 370301170.9315506 6782.8004651204465 95559 22950 19988 STORJ_20190629 35894928.94227623 2897.6684273098585 0.24955737637364817 2.0163830557500566e-05 9047139.24877353 730.9941525000158 83718 7756 209007 REN_20200317 25733375.250201408 5108.023080258644 0.029484365333626226 5.8556343941766796e-06 4226067.955821482 839.3027489051502 11328 873 365958 VITE_20210107 9029158.054970963 245.7837101519681 0.015666607406141692 4.2491862088473634e-07 1232362.1562632693 33.42482608357463 None None 1009411 MATIC_20190605 45295451.67379857 5914.9048184692265 0.02101781204643477 2.741473438108277e-06 81555692.63318744 10637.775453812394 14755 570 234155 WAN_20190509 35375210.83660565 5938.6224053666165 0.3335181980381806 5.5995710196801706e-05 1905223.8298485894 319.8756831374737 109183 17118 543432 CELR_20210613 189166264.8714972 5274.325699552791 0.03304032020673507 9.259560310412815e-07 38486436.93976487 1078.5836267531363 None None 140975 TRB_20210821 109400111.29301964 2226.653378490125 57.04874881068215 0.0011604173274581578 40196885.97396586 817.6369152081325 None None 404146 ALGO_20190708 106339822.92958426 9298.717708087031 1.0689478225568056 9.343163120533432e-05 63592253.65436512 5558.295611416499 10126 494 350942 CTK_20210731 63181881.06197768 1513.491839042803 1.1258866186687893 2.6953508731157787e-05 13031458.806875098 311.9706131209994 80548 None 93287 IOST_20200319 30013844.227223895 5574.018701434958 0.0025009848823970473 4.6419761479899767e-07 28460335.094900653 5282.406847166109 191080 52252 127057 POLY_20191020 13467079.383606955 1695.0758168650207 0.025580277338693096 3.2178122380730605e-06 2927866.742031571 368.30427243669703 35212 5055 332480 STRAX_20210408 246347199.05180445 4373.672700781349 2.4620988765100407 4.379094757869629e-05 13239827.546690974 235.48387905117468 153368 10601 202709 SFP_20210304 213020588.38182282 4198.76096655598 1.965475252588537 3.8791003768034735e-05 65144073.92561666 1285.6961764263665 127369 None 45661 TRX_20200325 761031110.5076672 112587.8516245533 0.011493061361390177 1.7029361601415004e-06 1133808167.7737381 167997.26955709333 502258 72218 50139 MFT_20191216 8547432.762586243 1201.1166653932228 0.0009441232200937774 1.3278434426344674e-07 965429.5313197605 135.78092829464353 18578 2396 980934 YOYO_20210207 2693414.6849061637 68.6876218498341 0.015277855036043793 3.885172726806127e-07 669765.9017005101 17.032209092784825 9415 None 1427347 DLT_20190316 9065103.371481005 2310.0159964115696 0.11277508314236612 2.8737923372731425e-05 1234822.1522415415 314.6636952177749 14682 2681 1013339 CDT_20210825 17292464.324797384 359.3705999169023 0.0254002299093037 5.29494475865727e-07 869677.7276564345 18.129345845364583 21268 337 774115 RCN_20200314 18004845.758818075 3270.3305578663235 0.035837804319515554 6.442103696666221e-06 1623021.1612248458 291.7497547917695 None 1132 864394 STMX_20210718 154086364.3346858 4875.280137903509 0.01648943445378506 5.216934021416517e-07 15830370.702741662 500.8419162114507 68803 4639 85845 NULS_20201129 25609213.294247292 1446.7064872584901 0.2606704306123153 1.4715252363006986e-05 10441143.420765612 589.418830643759 29991 5122 393845 CVC_20190605 26371828.63740164 3442.130460401088 0.07699192342714112 1.0042496933460662e-05 3904997.343663521 509.3511384479658 88824 8192 415629 NEAR_20210204 702332961.4952358 18739.19953368894 2.5661874357978625 6.841347907796794e-05 70361878.18578379 1875.8181160110787 36630 None None OST_20190821 6656544.545725337 618.6041065114175 0.010116736002239808 9.412168844639352e-07 293408.50423831603 27.297444370720967 18020 754 528261 XZC_20190316 47154142.22087795 12015.586519362481 6.743303409138412 0.0017182731031621754 2675180.673787325 681.6675328057563 59500 3948 302674 GTO_20210107 13572758.71801344 370.8138557889414 0.02016729388630006 5.464052966201274e-07 29079366.197468247 787.8657296429174 16516 None 786393 LINK_20190401 184778819.45714748 45029.27687093583 0.506652075736794 0.00012343509688611935 14383182.706926685 3504.159236648558 11028 6545 297045 DUSK_20200317 3709358.3533571973 734.3413437939647 0.014178151598167363 2.8154946422473284e-06 234692.6788311718 46.60522743382485 17681 13344 994052 REEF_20210729 190730631.02331263 4767.225354270185 0.015058918311779978 3.763609257481193e-07 21706557.12246491 542.5024403661622 186563 12523 50076 DLT_20190601 9131165.906690909 1065.2827206964973 0.11421623519362381 1.3318164318227689e-05 577366.2425368101 67.323690689572 15126 2679 2533353 EVX_20190616 18827474.394594774 2135.3038503105668 0.8996502156639781 0.00010199275191952535 3808720.0228274222 431.7920783606612 18089 2907 694179 LEND_20200718 362830271.43214875 39630.436789242885 0.2884691160250625 3.151368685579851e-05 41611333.665101215 4545.812587647049 50281 5772 49562 RUNE_20210128 575768251.2938013 19032.893185740584 2.5243020465543857 8.301681118571148e-05 44904754.3203139 1476.784252438685 30136 2147 220522 CAKE_20211216 3260320546.9576173 66828.85589963301 13.14917765756783 0.00026906594053586027 248930710.6579314 5093.76156712642 None None 637 MLN_20210902 167081295.2660457 3435.37856460715 114.84735600466325 0.002360431540804636 24956148.630010836 512.9180367103454 28078 427 110553 ARK_20200625 49137551.7523529 5281.431014732373 0.3265436047686401 3.511873475621115e-05 7468181.042478166 803.179316060955 62033 21903 104717 UMA_20210429 1504296394.5846815 27481.356222761966 25.034671278330226 0.00045720722494740755 67419789.4359478 1231.2849844060029 36227 None 123733 MFT_20200418 5129628.150116655 724.5928258124404 0.0005248584504484795 7.455451131831056e-08 913463.5027476411 129.75465098498518 18302 2586 823194 LINK_20190806 900155026.4757605 76216.21120865508 2.4755708982196167 0.00020959514565298338 93511706.680511 7917.203985576184 30033 10170 107221 FLM_20201224 0.0 0.0 0.13316369133171801 5.7108355310724694e-06 9261082.759345062 397.1692279581095 12076 None 35817 ZRX_20200412 111052697.38813527 16135.794953387755 0.17018614571086874 2.4729865251211462e-05 35813368.28074791 5204.065043458733 152381 15937 126435 CELO_20211225 1834462253.0010207 36078.749572905865 4.990603293786913 9.816269255109597e-05 60642596.26963425 1192.8098032811738 None None 34422 FTT_20210427 4469966672.8330145 82972.56315179635 50.725931767629866 0.0009413646224911066 133958759.98814328 2485.987603013081 103098 None 2918 WAVES_20190818 120894605.0357345 11827.38506665634 1.2089460503573455 0.00011827385066656338 12335690.244882721 1206.8277037349906 142983 56897 38385 COTI_20201226 26233235.272844166 1062.251635317988 0.046065753047381634 1.8681761471007704e-06 7310732.384425758 296.4835035774509 34280 1251 248568 XMR_20200903 1612600241.4864786 141350.00422331004 91.32256274963162 0.008003101138006567 179079613.77703035 15693.736768447283 322643 178683 87669 DUSK_20210115 17512137.94041965 448.9364629227674 0.05815460934668589 1.4855570604484289e-06 1308634.77419592 33.42902050576447 21117 13343 1115146 KMD_20201130 70358162.64760791 3878.6745484356484 0.5732772906313245 3.155120942297465e-05 3377052.275620994 185.86133677667976 96751 8400 275765 SAND_20210710 353367554.49688965 10397.452210584059 0.5043960558342881 1.4842760711997944e-05 740797687.713678 21799.303716894854 139587 None 27312 WABI_20190916 8091423.7510378165 785.3750500608331 0.14009371072876045 1.3594500348410875e-05 197631.2203181697 19.1778608725271 36267 7937 1396317 QLC_20200223 4190351.474803541 434.34029597501234 0.017471755910373983 1.8099914983929266e-06 94376.33959502036 9.7769436107452 24541 5682 940522 BEAM_20200318 14073281.733726911 2592.3077474607267 0.24212520807269963 4.501603092063051e-05 31167056.94539005 5794.593674597754 14988 1471 244013 FUN_20200612 21065296.650342494 2270.3430015007903 0.0035097674688267053 3.774099152666178e-07 1778251.9853377459 191.21777641108753 None 16814 232312 MTL_20200704 19850664.352926817 2188.812398887168 0.30796955767235357 3.397673026637171e-05 2204249.824164792 243.18378180424799 38268 None 396348 DIA_20210725 59486158.123179175 1741.0884068225082 1.2252282558788294 3.586088095416463e-05 13951306.247675158 408.33708339848357 34031 401 454629 XEM_20201226 2213277765.612741 89670.39907141653 0.24464266771381735 9.921374690563777e-06 157464749.63933346 6385.912957567902 216801 17871 152677 EOS_20191026 3279263094.7177105 379401.65810866485 3.179923223758442 0.00036729129419647095 3402600671.9201016 393011.25105347845 1323 68837 87489 GAS_20200914 24457922.061558362 2368.8192244869942 1.7648831808425143 0.0001708963790574419 3051989.383535678 295.5288713891049 322221 100429 111243 PSG_20211230 48189119.07432033 1039.0201019323022 15.80781403224665 0.00033973637982344184 4551578.800040286 97.82104602523862 None None 16830 KNC_20190902 26941584.276653532 2769.4729471552682 0.161006548739607 1.6549379709566927e-05 15251633.06846993 1567.669568827951 97763 6703 205924 REP_20210825 185427356.63570762 3858.66684294848 28.1016301055599 0.0005851682535337482 52466227.78711526 1092.519215731039 153162 11335 187615 TWT_20210930 328979456.1024211 7918.568888282966 0.9497013180948247 2.2837364892440385e-05 32366702.409190204 778.3185925934475 None 47228 4781 SXP_20201226 54682636.00131795 2214.3103544313553 0.7096538358115345 2.8779696001019374e-05 21821326.22237003 884.9541893911008 90816 None 107070 MITH_20190522 27942398.26029447 3511.4967025243536 0.05217591778720494 6.557185153338269e-06 18954490.004900053 2382.097061639198 74 2041 460427 XRP_20210219 24401068320.804165 472091.744823878 0.5340092777515143 1.0328910112094839e-05 5131652517.088255 99257.40953170079 1177337 267270 10253 POLY_20200331 11590330.886628112 1803.955567651681 0.01874223240845391 2.9234225218073267e-06 8035718.536764723 1253.4152835863003 34876 4994 459728 CVC_20220115 221590111.6766753 5137.66586469897 0.330731509965187 7.668158007013388e-06 14374593.874592567 333.28138927139145 117239 10256 182199 IOTX_20190324 23340351.48560911 5832.943222087081 0.009248082080964054 2.309577054951521e-06 890427.1008425237 222.3715126237849 14293 1662 1193452 ENJ_20190626 125703022.78859277 10649.322903658634 0.144330082358203 1.2209607387632858e-05 12281772.20361814 1038.9768659478439 46542 12622 19875 SKY_20210314 48127842.52720876 783.6180963565254 2.4068038247049923 3.9227077013924984e-05 10150513.991747139 165.43724502930493 18437 4190 421805 AUCTION_20210429 137050174.91586545 2503.7529841853557 47.15808364592799 0.0008612462419770406 9950313.049976371 181.72217906753784 None None 33253 QSP_20210731 23679339.86573837 567.507178997045 0.03316360803838107 7.941609616652823e-07 353233.5180433905 8.458798272404259 66625 8497 238913 GVT_20200309 4149731.173079699 513.6761767338061 0.9188650510595631 0.00011422174113691947 906883.3175265389 112.73232278935852 20738 5608 171820 ALPHA_20210212 529943589.1456176 11115.62545682782 2.1282700036603686 4.4574672020554375e-05 207074455.94196627 4336.985411424734 34393 None 61683 BTG_20191118 139237838.65615812 16369.277316909292 7.942684791862667 0.000933721700929574 13235280.848973664 1555.9057510686096 74782 None 376841 MLN_20211011 190222226.9224349 3475.9502947571586 130.94984119146656 0.002392491271589417 11153985.446951326 203.78652301111325 29447 514 115672 SC_20210430 1820206043.0100534 33957.80388479098 0.03824278420936801 7.13458221489339e-07 225674387.27086484 4210.186321594401 132975 42095 54045 OM_20210418 122187026.14985964 2026.9020341842972 0.4213408528345307 6.992114429706163e-06 18216103.892486524 302.2946434527252 35361 None 70476 SNX_20220105 1336245259.8546734 28851.869428868944 6.666635827323302 0.00014489252077627403 259169963.68756837 5632.794458980441 181938 8642 48226 ADA_20190302 1334243806.6678357 348981.5155754699 0.04291005176079204 1.1229984249478498e-05 21785753.866402835 5701.546904361116 147917 71506 114984 DOCK_20200421 2400501.636084096 350.55327961439684 0.004282180624711266 6.254393741426027e-07 915308.7161218703 133.68658651504958 42733 15000 521704 LOOM_20200331 11500724.325435162 1790.3457158546682 0.013723847937511344 2.1406524725561937e-06 20699034.62899889 3228.645483383849 21569 None 529761 POA_20200312 2758388.6212236728 347.77825937349655 0.012610702291818559 1.588613014815458e-06 48081.38474831109 6.0569754018435 17428 None 535987 TOMO_20210324 193436864.21084967 3548.359275989669 2.3932444370393657 4.390311769838514e-05 42711745.30716672 783.5299864495811 46271 1989 86466 REQ_20191118 11613410.919710668 1365.3123732365457 0.015122052190570825 1.777059601948373e-06 278963.3083382581 32.782218936057866 40415 28934 1038547 SNX_20210814 2048922500.4324665 43001.848265081746 12.082056897444302 0.00025323646074708735 219833681.18343988 4607.651151491735 147595 7430 46425 OGN_20200324 5565583.826771519 864.9522407767339 0.19608649092715558 3.0260958929049537e-05 31503667.921438627 4861.7892878669745 66370 2173 104622 PERP_20210930 837195515.0317886 20150.916876675583 15.137561298308011 0.00036401129951535606 141681191.68393272 3406.9922945591775 28311 None 107279 AKRO_20210304 107885640.90915288 2121.4200407354597 0.04091218173825933 8.067244078268149e-07 41178641.09609296 811.9785707319729 32861 None 152537 ADA_20210804 43922298025.75148 1143195.3635708338 1.3697179207188233 3.565531145369832e-05 1858096819.7493737 48368.368272879095 535038 552152 8000 MITH_20190816 9756395.308586735 948.0608575753262 0.02073106165663786 2.0117033422213134e-06 2027269.997506766 196.7224784295376 80 2080 648556 ARK_20201030 45423783.35104732 3372.1905724791823 0.29622904031537944 2.202995094392527e-05 2479750.3473085733 184.4139873870203 63065 21701 103410 ALGO_20210106 387810057.19283086 11416.14011345711 0.4836607796480229 1.4189088657131979e-05 480735706.5791813 14103.276197555275 34814 1734 343568 BAL_20220115 186317130.29564676 4323.413175873553 17.316819329330183 0.0004014982026060498 12505425.975109352 289.94389537374826 118847 None 2418492 IDEX_20210902 37774082.714020886 776.5384575962743 0.06397028324227777 1.3131946225632354e-06 817488.2695709934 16.781560831040157 53604 1969 8838580 NAV_20200418 5356844.425844875 760.9230984769745 0.0782854419363422 1.1120203669989086e-05 33764.950611398956 4.796206273079418 49170 13929 1361419 RSR_20210314 967722406.8939315 15756.467576186556 0.07299220560618512 1.1898506358209988e-06 201617491.37791747 3286.5796877402745 62503 None 104993 WTC_20210325 42307136.66296214 800.3713943933021 1.4446277278373174 2.7419841737015924e-05 23833740.62444284 452.3777187231891 57429 19258 449288 AMB_20190410 9528368.708347868 1841.8737134144367 0.0658987790098785 1.2738510916151141e-05 1192386.8549783742 230.49338996311627 19069 5701 621301 BTS_20201111 51892194.124827795 3396.9313127301334 0.019147026372627197 1.2533895420646336e-06 16961265.965171546 1110.306789534433 13126 6902 90759 EZ_20210519 0.0 0.0 8.2289111518519 0.00019235022159999835 7036072.56409722 164.46770318977028 32392 None 115184 BRD_20201224 4486676.559682347 191.88420385798983 0.059927923224282656 2.5698813250665692e-06 424621.9859916987 18.209009311548808 252 None None ZEN_20200725 90379292.27401976 9472.738881507315 9.440625449526289 0.0009897141649364608 8304916.875697744 870.6514112272456 65049 6014 70851 STPT_20200707 10439900.006085899 1118.3847389376667 0.01490024904626096 1.5947757182980008e-06 2311603.725101539 247.4112667294123 11782 None 3550673 OAX_20190627 8679160.317120034 668.6746200059436 0.19460259184146303 1.4922695443351929e-05 2998233.1598849325 229.91328064926952 12310 None None CELO_20210203 0.0 0.0 2.866222812723786 8.070520352591358e-05 9577547.68538422 269.678244062795 13274 None 140742 UMA_20210527 954170139.3984507 24353.82727355115 15.80559864322825 0.0004031682954514818 50343341.413833775 1284.1550391919723 38847 None 139456 BCD_20200329 87032614.06210294 13966.802775670421 0.46104882265060804 7.374342105571376e-05 9689193.351012921 1549.7583550179484 28909 None 1207769 REP_20200719 212891133.81769276 23224.15333060977 19.353739437972067 0.0021112866664190696 13104083.983140446 1429.5158761390805 134177 10249 213403 COTI_20210610 148300684.1844371 3950.9327696049227 0.21945870516402022 5.859474056713054e-06 29231298.69447576 780.4659023040289 119016 5180 67537 BNB_20190826 4050116267.528555 401185.3196368739 26.044082906401442 0.002579331918642628 135627428.85476848 13432.154917712667 1026496 55836 879 OAX_20211120 14082648.397897284 241.42635567025022 0.24425791388608178 4.187443748289529e-06 249031.79199256693 4.26928488790321 14628 None 1662383 YFI_20210324 1222659799.801471 22414.85489453193 33858.980521428755 0.6211295361114695 257433249.63392627 4722.5106149782405 99087 3982 21713 HIVE_20210618 125199506.65168005 3293.725065914296 0.337645971379109 8.84940827151929e-06 2661079.540298934 69.74458838915432 20551 168 116714 POWR_20200718 39466086.38228475 4311.778179454604 0.09188896240870831 1.0037438637594863e-05 3891723.326218419 425.1101879643378 81473 12705 226515 SXP_20211104 466779807.43120587 7421.292615919675 2.4328991416730155 3.857738996246923e-05 119198622.75856495 1890.0790724864523 None None 178128 ONE_20210809 848248461.428147 19281.73234846569 0.08118905377677146 1.8456943374591768e-06 44078688.598423555 1002.0536287123595 197859 26890 28462 STRAX_20210523 155709637.68028557 4146.195348935029 1.5559375118981995 4.143109553894138e-05 14064923.717376366 374.51709585151315 157465 10693 134289 GO_20200806 12097106.138718653 1030.4896420033106 0.011707550399442995 9.973054118491529e-07 884918.9943994946 75.38165304030757 11718 682 681368 SNM_20190821 4003152.015001016 372.00997153940864 0.009147939677483492 8.501113038706318e-07 142565.62096175583 13.24851826704049 31045 9916 19008991 HIVE_20211221 535744323.1796575 11355.644956706803 1.4489484017875665 3.0733418021793265e-05 21399452.838874765 453.9004485759545 30537 200 74607 1INCH_20210430 866933353.1236649 16176.859427063931 5.46420521858951 0.00010195501460977924 340849625.2144273 6359.813939683101 176497 None 71599 LEND_20190207 7717786.596256765 2265.5798902129122 0.006953896833134686 2.0410015103665164e-06 126797.37685647873 37.215627997449914 11722 5954 413082 HBAR_20200905 211284654.18153036 20142.281756689434 0.039125326570744245 3.731462617087215e-06 8556197.358509976 816.0220855913238 42054 6684 159106 DOGE_20211007 33034727302.677143 595074.7836949589 0.25255071989145483 4.5525885269907324e-06 4110248358.7524996 74093.11495600396 2175221 2174552 34432 XVG_20200605 72305541.48436788 7396.151769125371 0.0044391798021397345 4.5408480281085675e-07 2554418.876442097 261.2921403288157 291189 51747 276574 NAV_20190419 15771667.81182111 2991.219787090907 0.24329388112992392 4.612603053748018e-05 356280.91083543235 67.54721531340284 48705 11342 1024643 CTXC_20200701 1082458.059374666 118.30731015918744 0.10752167760309468 1.1755926921131067e-05 15604795.421751825 1706.1567368256456 16445 20060 611246 CLV_20211125 206215881.6894395 3606.9055413223887 1.0825400440373936 1.892796306456859e-05 14277721.717991214 249.64267216981716 None None 90602 SUSHI_20210115 697064617.1833159 17847.547556675123 5.545251674666185 0.0001415981265903991 624868542.0773113 15956.032316377707 22587 None None RDN_20210218 34079056.67956167 653.1417685528743 0.5094681980018811 9.768750371351936e-06 2830693.2817023876 54.2768639048821 27264 4395 934913 BZRX_20210304 69399085.29624355 1364.5777279007605 0.4919319876393338 9.69678288526995e-06 39244749.8457952 773.5781128354087 19409 None 171037 KAVA_20210819 528038533.4760759 11721.047376680874 6.4518964032232216 0.00014340035917174992 179184189.788089 3982.561958166949 127781 None 51016 POE_20190305 10387681.991316792 2797.4518226450587 0.004566777444001484 1.2298547351579861e-06 2055211.4115933354 553.4781401749366 None 10985 618100 DOGE_20200330 213173580.66658854 36114.67918043719 0.0017201093483828521 2.9141133285778714e-07 127824727.49013917 21655.35246064722 138949 151701 105974 PPT_20200403 7945985.432058247 1171.6059648119415 0.2206760060951312 3.2370921893518166e-05 2045174.156573845 300.00621296614315 23970 None 1062146 POLY_20201208 52321068.373208426 2724.6880684779953 0.07054677766022013 3.674334423233592e-06 6576660.519050353 342.5365542768663 35413 5002 351401 NAV_20191113 5948674.736730174 676.7959365135416 0.08933464471353272 1.0150723260988878e-05 20679.273548021065 2.3496996456118615 50621 14127 454414 FET_20190626 43150492.933464 3655.628341359179 0.16322844305596185 1.3806317833559918e-05 28414550.402642038 2403.3820736872813 9930 279 385628 THETA_20190816 111486368.399281 10833.49522948877 0.11177460276712561 1.084639782015647e-05 1750898.9398777059 169.9039493289017 None 4025 248011 XEM_20190902 438341395.2140509 45013.88213423227 0.04871122148867561 5.001671221299253e-06 52468334.922758095 5387.45186001257 216625 18375 190156 OST_20210131 16924197.827443544 494.7302004632621 0.024661498476599257 7.218464480187187e-07 13576134.070113035 397.37585960706707 None 732 716707 ONT_20200329 230075210.40384266 36906.692848439416 0.3613407759551046 5.779929655807745e-05 80497645.9919161 12876.231033200573 84176 16536 298289 YFII_20211230 105353677.97866356 2267.2081279789472 2659.423756829215 0.05715546739849941 19166068.107625894 411.910880343835 None None 989231 SKY_20200410 7146322.727912374 980.0964367613203 0.42037192517131605 5.765273157419531e-05 170222.9715682565 23.345563059633683 16137 3827 269101 CDT_20200313 1583438.959904328 329.0256332175374 0.002258118434977008 4.7121953770549165e-07 96577.85460842357 20.1536692213546 19263 290 235568 CELR_20201130 22415074.693510875 1235.4213389054394 0.005684932736144621 3.128791358822098e-07 5063988.280735948 278.70448973312074 25311 None 342979 LEND_20190220 8542419.591510866 2181.964636427814 0.007672855787728607 1.959854559927233e-06 274993.2065220073 70.2406906452117 11682 5944 428546 ZEC_20190507 388053290.76357496 67828.30121918519 59.91573949893409 0.010474026859604831 315109770.72589064 55085.16176063577 74875 15140 166067 DREP_20210428 0.0 0.0 1.5432239993718557 2.8020895960280318e-05 10224697.137069842 185.65365418100507 None None 197188 NEBL_20210218 36687748.15168744 702.9635407460033 2.098014105692753 4.023770033146529e-05 1688927.2404691773 32.391845221273115 39276 5898 648058 RDN_20190419 16646889.047899388 3157.2123194391534 0.32901596924869864 6.237806135691393e-05 794532.1800052118 150.63517186591304 25608 4458 1332555 FUN_20191113 22899731.634545803 2602.9359045540214 0.0038139141150323316 4.332997142586748e-07 889601.9663244633 101.0678967030377 35538 17277 391178 ADA_20210114 9668965191.987007 259666.05276328872 0.31134991468664336 8.351176207450763e-06 2101875653.5599017 56377.513276969235 176742 100916 38332 PIVX_20190805 27013191.515777025 2466.970736318342 0.4447710152498362 4.061494886831424e-05 398309.27750548604 36.372223874735646 63292 8616 295552 DCR_20190131 149915511.0084341 43348.562727211305 16.22927985835916 0.00469274961093232 1657584.9851376691 479.29614634660084 39800 9322 258815 AE_20190618 143844139.65394548 15431.272505884272 0.5368123139678639 5.761434686071629e-05 56684822.33478772 6083.800484371987 971 6364 390677 CRV_20210422 809060509.5734406 14931.719526790077 2.8972859082362206 5.356611356018864e-05 287579672.5910457 5316.881346028989 105476 None 25328 PIVX_20201226 20856987.203596946 845.0156573348986 0.32117025387292913 1.3024916944841067e-05 131555.65514541118 5.335181142183485 64852 8699 347708 ZIL_20210202 867551239.3278651 25986.1463229754 0.07431537902447809 2.2251136520269217e-06 182796011.9447791 5473.186129891515 133603 16124 35643 OXT_20210201 0.0 0.0 0.30486359902328697 9.220514473548561e-06 32314494.24891733 977.3428604862222 55318 1948 149953 BAT_20201111 299832671.88059235 19602.570288131854 0.20112214476944373 1.3168925226650952e-05 80255579.1854262 5254.9147311749075 123199 47356 21140 KAVA_20201224 60170371.730128475 2573.3399146767188 1.2616781139862705 5.411329888114556e-05 24555925.564505342 1053.2021794187203 50739 None 82278 QKC_20200223 15383884.381361043 1593.7239491375813 0.004137856339117355 4.2866239854728947e-07 2198522.437108599 227.75655409825865 None 9202 379379 LRC_20191203 24252055.939316906 3317.1383858398617 0.02520308255097615 3.4496212741211455e-06 3551856.723401606 486.15325093246764 33362 6841 988537 ONE_20190719 33498710.721886802 3130.546023358649 0.013047878800847037 1.2175783058824357e-06 9616210.047080882 897.3480606958359 70472 None 156927 ELF_20211011 302649303.13699514 5531.084027100153 0.6563319506604399 1.1991373559013418e-05 18078954.98062445 330.3077086390592 91967 33511 260925 SOL_20210217 2184260799.960396 44413.9414941855 8.30280602969779 0.00016873674680297274 72282574.1446148 1468.9884802898275 113863 3956 56580 REP_20190608 203732500.7634301 25322.64613334731 18.491330424926034 0.00230012447710709 15235921.94809505 1895.1863494293027 125430 9978 263200 MBL_20200526 6773390.093251307 762.1474750387529 0.0018906161556436734 2.126731795911375e-07 24758593.50925703 2785.064957844666 None None 88350 AVA_20210823 158659249.4048545 3215.677955460602 3.036795205218203 6.163106723605862e-05 5172201.819922148 104.96865826656303 114925 10591 61556 VIA_20191017 4610166.5631730165 575.8275075410907 0.1990877649605359 2.486682637345949e-05 320860.5176488079 40.07671081170072 40465 2207 4136825 POA_20210718 7229736.366003555 228.81009806501802 0.024946125515724307 7.899992821451201e-07 103536.31809132782 3.2788104476 None None 239848 IOST_20191024 47894965.93261691 6417.661122608911 0.003986604791829657 5.339805171030573e-07 20011734.968016095 2680.445427711 193743 50871 92692 AST_20190904 4117571.1084500784 387.4507750179199 0.023903415877843292 2.249217592077968e-06 2139672.554094413 201.3347872350105 32047 3578 238019 ACM_20210711 12313889.752042087 365.2979072451362 6.154507690975417 0.00018257665326787395 3219873.2485129493 95.5192049759354 None None 41859 MANA_20210427 1634345490.402511 30337.101893498108 1.229389206345901 2.280611840927499e-05 321843443.38181555 5970.444218256211 121544 29587 13153 BRD_20190623 23514754.290401097 2190.6640457504736 0.39132927369077564 3.6489184272794346e-05 290022.73058520985 27.0429369104266 168 None None ONT_20191022 387224485.10654336 47168.807202037606 0.5926653242785039 7.217359100609372e-05 80775154.49086547 9836.635829462188 81298 16273 327053 LEND_20200321 30322858.69080677 4904.97084307445 0.02333383348094421 3.763222855141135e-06 2225685.6980811167 358.95307533670984 44138 5741 109064 BTG_20210718 671667804.1978985 21251.10509700095 38.37933051352074 0.0012142468296067934 13909822.985520571 440.07954892829235 100736 None 177172 MTL_20200520 19016704.5239818 1949.553606412563 0.2944748282628978 3.0164902109364146e-05 2458293.114832948 251.81836968033568 35431 None 416687 KAVA_20210120 106344129.26079884 2936.601637921005 2.261103602477863 6.253177720662553e-05 50023865.6406053 1383.4311783964906 53387 None 89855 LEND_20190411 13027030.144416966 2454.5363394723763 0.011761619218803818 2.2159927872804795e-06 696835.814024392 131.2900128009603 11617 5911 527065 GRS_20190523 30175860.610723257 3936.5831673278003 0.4162239533885457 5.434914484712181e-05 7725438.692693934 1008.7621894380302 38748 107041 6849352 COTI_20210814 151138838.6081227 3172.0328140353645 0.22739819010394352 4.763345468996955e-06 45605946.69290166 955.3149013176007 126197 5567 114114 ASR_20210704 6153615.989097345 177.881366313693 4.9966437114261675 0.00014421047198292416 1816052.3481713778 52.413936514344954 1979349 None 120026 APPC_20200330 2486255.7341959355 420.45727348992176 0.022962565693564578 3.890189818971197e-06 591480.549313693 100.20533601367042 24803 3225 700856 IOTX_20200806 35013030.76738287 2988.864811491313 0.006875743157399428 5.867249793417613e-07 3426818.8110205308 292.4193283660173 25383 1900 425581 COMP_20220105 0.0 0.0 9.406016232394657e-08 2.044e-12 134.0850017445199 0.00291377068457412 2638 None 5053090 KEY_20190603 9623688.155347925 1100.3764571804995 0.003681346940296281 4.209654005584681e-07 499533.52318811667 57.122116739245484 23998 2834 681571 VITE_20210616 52391142.198171064 1297.2873927990063 0.08433848234747558 2.089598553410348e-06 5980018.583834711 148.16294809129957 32581 2340 185769 BLZ_20210220 61558989.24928368 1102.2321949930597 0.2282777175722804 4.080216053240671e-06 24142557.275046777 431.52196722283077 46791 None 375336 GTO_20200713 7507640.553113797 809.1873971897318 0.011396211694405078 1.2272555451900205e-06 10828892.620277142 1166.1610781613504 16587 None 1271054 BNB_20211028 75903656465.65352 1297031.5532549205 450.85609413572087 0.007704568948042805 2316775185.4670663 39590.80155667669 None 675062 126 CRV_20210513 1292778902.5054326 25064.448468892555 3.404935084990001 6.787838091425937e-05 947560341.1683601 18889.893690076147 117602 None 25483 CTXC_20200502 940909.0799130059 106.17788427169877 0.09152189823016786 1.035614392943471e-05 8784397.125037065 993.9968763695238 16528 20065 447744 WAVES_20200807 170695716.2278735 14508.38092811844 1.7097981847934467 0.00014529364129643434 52377552.5748207 4450.890990219687 139854 56885 142173 LPT_20210611 648862237.9433101 17606.01532462979 27.277950768435804 0.0007429962510214722 13757472.813087031 374.7257559934234 12903 1045 99080 MDA_20200605 9346080.044216923 956.1072891597937 0.47613904792858985 4.870919275507577e-05 425441.8726853212 43.52285382361182 None 376 2681133 FIDA_20220115 129031570.92132896 2994.125086296321 2.632865142415306 6.104578785243143e-05 3536129.549247891 81.9889369966258 68923 None 449205 XMR_20200621 1124867028.859587 120238.79337051077 63.97558527081168 0.006834900465744046 65063517.36491524 6951.130861217722 319755 173508 84747 FTM_20200316 5854230.702872701 1083.3143564761224 0.002758505557392861 5.133435815457235e-07 1290190.517951874 240.09776583075487 21289 2317 333169 POE_20200410 2569630.7206442878 352.3495770113963 0.0010208394488577792 1.399782253192393e-07 25473.949683315677 3.493005949693569 None 10403 753171 PNT_20211111 34630515.0894519 533.9085633235916 1.0289885789834923 1.584510379130234e-05 6413931.630937322 98.76631721502264 None 370 329752 CDT_20190616 7873288.76029399 892.5895568499282 0.011839413197054099 1.3415372994730862e-06 1258479.7683764698 142.5997658675659 19677 294 372453 ZEC_20211225 1972405319.3571544 38788.124348741985 165.2361010940216 0.0032494327475374564 240628713.46042877 4732.058045058862 83993 21687 107284 STX_20210210 495847910.3971767 10658.081403127679 0.536984066027113 1.152956493001083e-05 54047158.34090033 1160.4445286138596 48885 None 62343 BEAM_20210304 48721506.0236085 958.0401842385282 0.5897831759860493 1.1640076043627394e-05 13895404.704954859 274.2424233316521 17093 1830 234487 1INCH_20210420 761592373.7500094 13609.186694538757 4.849782513605388 8.671121506855177e-05 222282312.30805516 3974.2749977771605 None None 71599 EOS_20190821 3742237866.911337 347772.586228765 3.6710106826725233 0.00034146856421498494 2072667531.9615502 192794.53736666302 1272 67947 84065 TROY_20210310 19650153.489824038 359.375808408991 0.010226607022898255 1.869481675416066e-07 10345003.960778203 189.1125306123331 11777 None 606363 CTXC_20200329 856036.3918480092 137.31801929276057 0.08332154435784843 1.33270391913559e-05 13915995.125771904 2225.8230312123424 None 20064 396619 ASR_20210519 16234054.307140999 379.2894073013012 13.049428831098965 0.000304738161230718 34497206.29812296 805.5996435517102 1973072 None 155506 TFUEL_20210624 2534850133.244533 75191.2792255269 0.47813529130454585 1.418736270980374e-05 159636291.15359712 4736.772217889586 177305 20272 17272 EZ_20210711 0.0 0.0 2.638962637906046 7.843278703547332e-05 760781.5915187369 22.611241133540428 34979 None 116746 APPC_20210217 9163587.383593412 186.35507246106766 0.08257608572046177 1.6793065634469405e-06 424135.5164083631 8.625421637284393 24395 3113 1017685 FUN_20201201 25034288.837472335 1273.3321443713335 0.004155572523566879 2.1168096997488783e-07 368961.6987032532 18.794563161190847 33835 16540 390767 POLY_20210731 237461395.71293965 5691.586696449861 0.2744801362108576 6.569378685562504e-06 150260701.28464487 3596.323806611304 47789 5773 198760 VIB_20191017 4246988.984172573 530.4170604368513 0.023261578029734758 2.905378453231722e-06 593028.2876003198 74.06942068798763 32112 1123 None RIF_20210826 189803296.26849842 3872.276934335488 0.24830441207159887 5.065739162348328e-06 3995946.618075626 81.52260809607414 44757 3384 841825 IOTX_20200530 26806545.203400217 2846.0151230569654 0.006190888037736771 6.572783194126941e-07 11400847.104538437 1210.4127193183008 23448 1856 642800 GO_20200418 6808834.685389845 961.8243824486589 0.006608562329309687 9.387637831932242e-07 935741.1517176292 132.92450912962576 10716 678 903309 ONG_20190914 0.0 0.0 0.17544980706352106 1.6942831985457123e-05 4831141.208069743 466.533506968801 81535 16289 256067 RIF_20210310 217962300.74654835 3987.771032361934 0.3115879196464472 5.690752198882049e-06 5898389.7439312665 107.72649479873027 42967 3132 698568 REN_20190523 26450911.186041024 3449.933740653734 0.034301926264497906 4.475913400136394e-06 530829.9914411696 69.2657623238173 6354 782 1359818 DUSK_20200707 8854256.906852352 948.52113463582 0.03162503269802085 3.386314443284788e-06 187896.36370948225 20.119383791496624 17325 13330 912304 NEAR_20201101 0.0 0.0 0.628082841536203 4.5518268025315416e-05 6368696.963273847 461.55066843933486 32569 None None AR_20211202 2869146522.3725886 50197.59925495371 57.344554452391066 0.0010028043341209361 68937424.82191445 1205.5329238270767 48276 None 49164 STPT_20210105 14988733.491251493 479.0830550561652 0.01632168380841729 5.216879829881086e-07 2219434.603447201 70.93951673351646 None None 1561164 TFUEL_20200725 0.0 0.0 0.008149421358529408 8.544479154213967e-07 2844738.5043134177 298.2642298137602 71619 4294 67592 HARD_20211021 97322705.95392422 1468.3064935776636 1.0613190606517136 1.6017398196970263e-05 18117415.25962598 273.4275349159359 38132 None 46204 CND_20200301 11218578.176532377 1308.1749651953226 0.005838320362141862 6.82612297989026e-07 33900.00859543928 3.9635650895818832 35043 5984 433845 ANKR_20200421 5376073.811264795 785.2435675190409 0.0013449038476532778 1.964316535141394e-07 1746612.0792229003 255.10366363229667 None None 5745 OXT_20220112 184217600.97639337 4299.699340904625 0.31113241889267174 7.273104263739058e-06 9734291.128951348 227.551068340699 79205 4965 152824 RCN_20190227 9645980.716303827 2537.9100276255504 0.01926843111709931 5.0696291011700005e-06 9691588.228805829 2549.9096123975014 18208 1111 2734596 MITH_20190410 25237479.124070834 4878.510772861519 0.04931006459176135 9.538972990785793e-06 10404491.894646332 2012.7365069901632 63 2000 536282 BQX_20210511 860140644.2998428 15393.905212750487 3.869362057400634 6.924982924615117e-05 8682070.092235489 155.3826864664921 None 5179 19051 LINK_20200701 1743013899.082411 190692.09916513867 4.568729304213496 0.0004998357052668362 267117660.05523583 29223.649534193686 60936 16619 82512 FIRO_20210624 62122140.319320515 1842.7295316502966 5.179301665521565 0.00015368167263236367 6182836.35794843 183.45883180102828 73127 1049 230087 DEXE_20210909 42311488.55686378 912.9265897424026 12.378750454188012 0.00026725997597345467 16296629.904206917 351.84786483623475 17122 None 242617 TNT_20190729 16869516.69478823 1765.7288115661656 0.039269894303386434 4.113775516742278e-06 640830.2454771306 67.13111458526204 17591 2546 635699 FUN_20200106 19273847.73437897 2624.8742738301694 0.003216012689350207 4.379107636688304e-07 270174.10675232165 36.78845851673495 35294 17161 368144 SKY_20190902 10821422.978021452 1112.3933128656156 0.676338209852605 6.95187738297634e-05 157309.91928982735 16.1694142678574 16358 3805 477504 REQ_20200109 8195587.8543361975 1018.4550051907547 0.010591373252183142 1.319914877522331e-06 82216.0816677911 10.245907379625223 40096 28622 1668382 PERL_20200316 5096052.637275882 943.295932698197 0.014696475623936443 2.734937913274069e-06 1884208.682854894 350.6414663708173 11562 476 685227 CRV_20210219 630914206.7815777 12206.407719441682 2.8072622496578292 5.429860612138144e-05 207150191.7975244 4006.7388338062774 75624 None 26864 RLC_20200713 74855318.02248995 8066.463169326643 1.063891251362306 0.00011459738375585708 8211808.644174371 884.5375740434972 31129 3633 559121 TWT_20210819 260068338.59679475 5772.823619141848 0.7459922050579605 1.6564033914364914e-05 47364451.88852538 1051.6817496181259 None 43547 4197 NAV_20200425 6003730.629605318 800.6774892544997 0.0876024376406538 1.1687705422270939e-05 818659.3742826285 109.22355433812334 49077 13919 1361419 POA_20210131 7386257.603371564 215.89382001035253 0.026648141766708926 7.79995850570499e-07 773353.2012430679 22.636185790207254 None None 427710 BCD_20190915 112976859.50816719 10913.646724547158 0.6004104859619757 5.800203475764258e-05 2864617.857050583 276.7334488600756 21355 None 2392200 SNGLS_20190714 6649816.956145325 583.3159739126103 0.011386501819117921 9.988137180134626e-07 220444.62674619 19.337204767030805 7 2181 None TNB_20200610 7087405.300956258 725.0385594543113 0.002200856751370087 2.2527305252687685e-07 1395442.2876039068 142.83325961943052 14862 1436 2834149 REP_20201224 81673542.28394617 3492.9780270424567 14.44272029831562 0.0006194474101561896 13895663.81522609 595.984190301514 136652 10452 135870 STORJ_20190312 40083748.78526446 10366.94148291502 0.2904152465559767 7.520417035625054e-05 43700287.40298117 11316.361304871965 83070 7630 219991 BRD_20200612 7101709.821492964 765.3531856216151 0.11229754842788507 1.2076513708139492e-05 1410529.5358630065 151.6887903080472 None None None ICX_20201208 241856929.77530983 12592.085940917019 0.42193369179047346 2.1977784755990517e-05 12542865.00232446 653.3358027768606 None 28047 301434 POWR_20191127 16851165.291243996 2350.402039935041 0.039206206291685065 5.478152049235e-06 43839188.68089938 6125.5031798371665 83196 12907 272519 WTC_20210725 15298852.032434227 447.78499497286117 0.5240389360020127 1.5335776243033794e-05 2783586.8503730064 81.46048348248625 65350 19888 895790 NCASH_20190906 3078124.6926367246 291.2258524647394 0.001061348447841003 1.0041571974781032e-07 212037.40144201025 20.06116683221882 59678 58882 754232 RCN_20210314 62983747.779795565 1026.5036719141947 0.12299084356927956 2.0048816473723304e-06 4293552.137412066 69.9894693988732 None 1141 1277366 ALGO_20200607 190452177.17449743 19671.569213233823 0.23754797131892508 2.4566683469535614e-05 44418200.687335946 4593.631637910589 None 891 281799 BRD_20191203 16878311.281886593 2308.6138442104457 0.27880769451794607 3.8154787889090864e-05 4585171.287327084 627.4799488787199 None None None ALICE_20210823 283517473.0138968 5746.966033253998 16.287105980011248 0.00033049361787734717 260818127.91105768 5292.452005108315 99992 None 31647 DGD_20190513 71650459.65496995 10325.583918098786 35.9567410922275 0.005172450693151875 4109871.412880289 591.2134023434323 16952 3355 465743 XRP_20210819 53716679098.06286 1193911.153366877 1.1558972500791076 2.569106359863033e-05 8061965404.006682 179185.87998208162 1973257 326018 18908 SYS_20211230 549031043.0941547 11787.923924915593 0.87569796683496 1.880159809558074e-05 32123465.465994205 689.7041103245122 113928 6779 107700 DOCK_20190906 3074082.052219122 290.8433723772235 0.0055366290733034704 5.238368779570873e-07 2491129.268602825 235.6931196537284 185 15177 184011 TFUEL_20190916 0.0 0.0 0.004334242725744936 4.20611636951738e-07 251206.79469404486 24.37807659041552 70029 4026 338625 KMD_20200314 37464873.377766706 6762.360369347124 0.3165183206713846 5.6896450058167904e-05 2159108.366038323 388.1152947415408 99983 8404 149248 BCD_20220112 225893253.9668992 5267.315246879644 1.1972262430160479 2.7977217086760037e-05 1426690.4206980132 33.33941921863995 36068 None 1984459 NAS_20201031 12688670.817202639 934.2644168171441 0.28203809067201546 2.0824607599499135e-05 2338340.78504521 172.6540878448192 23451 4879 976635 DLT_20190704 7475543.887022676 622.8885347244693 0.09305100728166756 7.753336273087955e-06 1003525.1153587964 83.617232152188 15060 2675 2880330 NCASH_20190329 6021761.3839621795 1495.9556030763606 0.002075870215849544 5.155920917967437e-07 3162831.842235096 785.5650478958145 60495 59504 708822 NEBL_20190510 18705679.675819058 3025.992229141501 1.1595363460603492 0.00018780536222783422 252116.06872120593 40.83420909617551 40434 6180 646043 OAX_20200425 1843870.2481227694 245.90467025584468 0.03552710307140744 4.73994019331456e-06 72283.12040141063 9.643839155706 11932 None None TNB_20200223 6410374.006919637 664.4511230663625 0.0020688992896245014 2.1444652917572466e-07 564834.0328516101 58.54644472681854 15242 1449 1323149 GTO_20200229 5623056.894807199 643.3595256769341 0.008483461572470237 9.710959120120115e-07 4467520.206220318 511.39391297181817 16942 None 2410144 BCPT_20190929 3311909.3459237963 404.33139118284834 0.028511943460265397 3.4808542627546537e-06 342121.32174614904 41.7675653306116 10887 3117 1056617 BAT_20190914 230372895.08240277 22246.643189361628 0.17197047607222982 1.661287849131238e-05 19937406.379011754 1926.0149600756056 105846 30207 30571 CHZ_20210731 1417670706.6055608 33964.314451853 0.26528284731927987 6.350820253908772e-06 296162781.3078268 7090.079924089403 366195 None 53133 XEM_20210603 1762694747.852385 46844.07472305277 0.19622991201164217 5.211432759590743e-06 90514576.852483 2403.8671076891565 368005 21563 39314 OST_20201015 6713032.559543429 588.1124301979643 0.009653529741201147 8.447241490765731e-07 1448272.0092506479 126.72984633012082 None 747 789125 RSR_20210809 480148963.6059404 10914.377360679913 0.036383284963335316 8.272667435512237e-07 64451115.9442846 1465.460440397323 None None 131143 XRP_20210511 64451974677.036804 1153494.600595844 1.3997437570206521 2.5051162109953443e-05 10555573612.617239 188912.7094919559 1645639 306196 11015 DIA_20210617 66628454.774686776 1741.963455521283 1.6064716583606542 4.19456406503507e-05 14356093.174065426 374.8435413026826 32411 388 401375 SRM_20201031 49516184.32006668 3646.788930815552 0.9901350149577429 7.29561214372643e-05 24954742.696189985 1838.740384973276 26481 None 65373 IOTX_20191203 17405811.042225182 2381.6135981574457 0.003997121109753961 5.470979189770554e-07 2019005.5057033298 276.3473210451462 22027 1783 479082 POND_20210828 69158758.25830022 1410.024928129637 0.08815540503702586 1.7974244198763694e-06 24936349.670421172 508.43398452273993 20587 617 209753 LTO_20210725 46818983.471922375 1370.423329759619 0.16298260395901573 4.762745778331488e-06 5517922.158415953 161.24702776110968 10990 4339 391514 MFT_20191203 10313961.48862868 1411.24540951296 0.0011496348988161743 1.573539663811792e-07 1684195.3687066839 230.52085640380767 18560 2381 1112514 HIVE_20201124 48495623.518760554 2648.7522932227316 0.13062651963128102 7.115036709822365e-06 5387357.178460822 293.4415170967676 9509 98 151628 NCASH_20200313 1039935.3126671507 216.66739580727844 0.0003450074792354109 7.240963394689897e-08 376436.35070266615 79.00587668155362 57947 58341 746963 ONE_20190821 31879180.79503043 2963.137687692262 0.011898084510560611 1.107319774435347e-06 10644946.66671858 990.6939164371192 69652 None 130681 KSM_20210111 638744682.2853272 16574.048977233644 71.26767377440497 0.0018538233481190081 129825284.5055172 3377.0309994172408 None None 180647 KSM_20210218 2158298429.7009606 41405.60936587736 240.4716805571174 0.004610901775528079 475005726.104323 9107.952923214194 36111 None 97488 UNFI_20210206 33192802.141184296 875.9184496574458 13.464673407813525 0.0003544586681905477 27849335.79544576 733.1361242164754 13685 None 111570 BTG_20190316 234566720.96451125 59774.86890064291 13.390768737299746 0.003412125534910037 11037356.02361299 2812.448266779441 72923 None 417963 LINK_20210217 13020320319.023745 264750.3196024762 32.00574727841079 0.0006504482527280849 2482851657.0026555 50458.64131939109 155482 38251 34188 SNGLS_20190224 8144865.86479093 1980.4650005871124 0.013894624266782512 3.3762695051713645e-06 970632.4121220378 235.85500052801507 None 2184 1185727 OAX_20190305 2820383.8123358157 759.5426817044182 0.1202018007333648 3.237091266635356e-05 530954.8823128913 142.98865757635733 14198 None None AGLD_20211207 123547030.62121214 2448.218953938392 1.609036423521283 3.188165115636066e-05 40319278.145897634 798.8912755067796 None None 52275 TNB_20210206 10038615.53862936 264.9172156433794 0.0027350488893677777 7.16526055345262e-08 1179603.729217592 30.90316996718177 15970 1423 3046579 STORJ_20190905 22782099.494794887 2157.459927511286 0.15851465427529013 1.5005300797965191e-05 3954667.269656377 374.35637864752266 83559 7800 165970 ONT_20200905 415636768.8216782 39623.667598941356 0.6512839740480713 6.210380188697351e-05 297224491.37418115 28342.123656947486 90450 16619 197799 BTG_20210428 1580443265.4942498 28688.425807853186 90.23325887028444 0.0016383990659140678 120054251.29676127 2179.869990802277 93730 None 172941 TRX_20210212 4125858844.054774 86525.97205905369 0.05735432135742353 1.1993400794086264e-06 3698515502.495559 77339.9069411694 588931 82757 29522 MATIC_20190714 36146828.87760338 3170.7673804624474 0.016644659560562457 1.459244880570598e-06 36346886.02484361 3186.548043440052 20700 908 197160 ARK_20200113 20053934.851915628 2458.6533715423047 0.14037037816671247 1.718993521527608e-05 629029.4636101084 77.03174892864838 62496 21643 97018 THETA_20200730 248151301.10913 22348.15654487458 0.2486686519303269 2.241015956617966e-05 14719392.6572821 1326.5199919906584 71671 4294 67592 ASR_20210324 0.0 0.0 9.165905472065269 0.00016808169088526338 1830174.8786408799 33.561211072404596 1954850 None 149569 SYS_20211111 234729730.25595856 3621.189990498726 0.38824175657391424 5.977157720081989e-06 11632371.56939649 179.08562989834786 79500 6016 233708 RSR_20210207 371895819.99571925 9483.939869525735 0.039885343724094545 1.0142879957333812e-06 177209459.6703375 4506.453019870583 56436 None 136667 WAN_20210703 101263001.49242912 2996.116252254432 0.5785346817844915 1.708540493198666e-05 2501884.0781390066 73.88615395717655 122887 16618 187166 NANO_20201115 100072027.29439464 6217.26659722352 0.7530384905810116 4.681310736269747e-05 4031070.376882706 250.59400375935823 98320 52986 262836 NULS_20210519 94670068.29383922 2218.7300704566 0.84510554640612 1.975428293329208e-05 54885706.08668512 1282.9495341033505 52739 5365 242019 JUV_20211225 24504065.27043515 481.9265334917074 9.051748718722111 0.00017808160933845563 1215032.3865757638 23.904212271405555 None None 37465 BAND_20191011 6922596.53532841 808.6818712693147 0.44013680668335037 5.141577363735628e-05 2118495.5723945447 247.47780042022973 7455 973 630283 ZRX_20201030 241115733.3382049 17910.99270178253 0.3320974676648377 2.469741289871218e-05 57567498.65178284 4281.177732990204 160833 16306 55516 ROSE_20210420 236165038.38534075 4218.947237404221 0.15744576836718316 2.8150363122924675e-06 28095777.46897048 502.3357224361295 None 1351 227579 MTL_20210711 99290661.59426174 2944.583386785467 1.5355577274053689 4.555801948423889e-05 11611517.257427234 344.4987576919646 57263 4208 185263 ENJ_20190930 48680049.52885818 6039.220489094847 0.05539357373259006 6.879574498314873e-06 3321405.1483494947 412.50009012712445 48505 13785 26747 ARPA_20210117 23707244.10191295 653.3499165196024 0.024225542184983836 6.694084449929273e-07 16021887.546142593 442.7222617441707 22658 None 1180898 OCEAN_20201208 149174360.5117652 7766.642739947843 0.4291563005242713 2.2349462618791686e-05 25338517.809816204 1319.5711117703768 33167 1256 72528 TOMO_20200223 39502644.429089315 4092.354630354809 0.5659417974010841 5.862890067465738e-05 33965791.4481979 3518.6957780770326 21871 1491 222271 ETH_20200718 26015174195.367386 2842229.1317095566 232.78147743826054 0.02542559942079189 4344879745.807146 474570.28438916197 464844 470348 15611 ATM_20211204 28841703.087913513 645.7254437455765 8.393452375462536 0.00015652488226903017 1833932.4966629914 34.199999629318754 5177363 None 60180 BAR_20210823 63027992.01470927 1277.5758726245556 21.401208718475864 0.00043440811576407384 7384354.08909441 149.88982109262324 None None 38736 NCASH_20190302 4804673.902434916 1257.7650534612144 0.0016573403088354945 4.3346913963574426e-07 387287.34050892683 101.29308349482938 60304 59604 692800 KAVA_20211204 689606728.4791081 12843.074173908133 4.82235730391855 8.992949211955864e-05 53001930.54273515 988.4038852100788 143129 None 43021 BNB_20190915 3266441900.5962195 315547.5763251979 21.00328637795174 0.0020289771908133425 136850787.44624612 13220.175227661524 1035192 56320 1071 EVX_20210813 11011181.49137349 247.67066777115642 0.5051010457113644 1.136106178807872e-05 527255.918412371 11.859383618532794 18315 2799 2085195 BTS_20190714 133683118.54601479 11745.505614692309 0.04933163845488401 4.331885384762124e-06 10493094.563238677 921.4144188823376 13686 7182 171113 MASK_20210611 74294794.52381775 2015.8906073384976 4.99233192682434 0.00013598103233536951 14905797.412940001 406.0037973642493 36089 None 209625 XMR_20200719 1205187447.056405 131421.85787300149 68.31995581506928 0.0074508015718498955 55395163.98740617 6041.256467253324 320318 175255 89794 CTSI_20210702 156475023.97265068 4653.982416570797 0.41850188806539795 1.2441453261136028e-05 13007745.313253846 386.70137450447885 46609 3828 120521 DIA_20201201 40801078.74071293 2073.4663608245446 1.5839199839263143 8.068339961790464e-05 16586743.723569784 844.9131810883262 17436 183 238286 DLT_20201224 2734835.266883303 116.9622282524883 0.03317145537326423 1.4224871996646979e-06 153837.35485694912 6.596987248580644 None 2533 None LRC_20190225 40965245.06585917 10900.641377165592 0.05173829749966424 1.381119215193356e-05 2521433.5029778327 673.0797937094042 28479 2471 544203 DOCK_20200229 3987011.846035769 456.1721672250375 0.007124977008182102 8.166710036623048e-07 1392938.1341549484 159.6597691127238 43211 15036 358417 DNT_20190723 7012137.912993618 677.5622111398573 0.010469952447193974 1.0123668965603166e-06 1090101.560240721 105.40475126725394 60597 6339 724607 LUNA_20201130 179551402.9701992 9896.091701358935 0.37981812307572643 2.0914615560272622e-05 4952754.49150632 272.7225212832088 15179 None 206479 DASH_20200313 409259407.4613596 85170.24334529166 43.799784502354065 0.009140049469995842 572862912.1042602 119543.86113195155 316804 34158 59708 STEEM_20200313 38533443.01137622 8006.933521223952 0.11632056577971285 2.4273537819514604e-05 2030868.2482418239 423.7974334092082 10943 3840 211376 ATOM_20210723 3138252318.1531453 96951.25560074027 11.358338522434737 0.00035084058996409146 479608120.9318306 14814.31423856029 166791 32549 47947 FIL_20211221 4904409783.853378 103982.36105969858 34.90754844247923 0.0007406709552102924 381042384.7647869 8084.98561749179 None None 32648 KAVA_20200404 9594648.591086656 1426.678993074755 0.5109371176944301 7.59284029662534e-05 5425242.7872849535 806.2244966690591 19478 None 284724 QLC_20190205 5311186.611810283 1533.0231018793 0.02212994421587618 6.387596257830416e-06 130782.71172239108 37.74917604119158 23293 5867 940522 SUPER_20211111 462955682.4615318 7137.549314758541 1.6014690081601342 2.4668459586149094e-05 105195094.39700998 1620.387857380441 174018 None None IRIS_20210519 127817143.01696466 2986.2958137650826 0.1280483968295809 2.993122303933425e-06 13537875.806528866 316.4468984202188 24373 None 469012 TNT_20200430 21222082.178131755 2430.793451620734 0.04955898716227238 5.652676606361188e-06 957943.7358997718 109.26264752749223 17549 2558 822007 TFUEL_20190625 0.0 0.0 0.011287020842660336 1.0220122688478257e-06 3509334.7728794054 317.76172325484043 70196 3997 231431 NAS_20201226 12585277.17611128 509.6263019174891 0.27661835043985683 1.120331867445271e-05 2994415.069222429 121.27679241358287 23351 4860 1482948 LUN_20190905 2532046.5233065365 239.70617927259983 0.9366308112237295 8.866985305398173e-05 106749.49223792471 10.105862071691947 None 2196 1370867 ZRX_20210206 1207429374.6662507 31639.930999879798 1.6096372059152058 4.216915471510984e-05 2777734277.598378 72770.87413179515 None 17413 76527 HOT_20200319 54324920.44783259 10094.271821091796 0.0003059345556841373 5.6810609172160124e-08 4119195.206643668 764.915190652987 25126 6921 515134 NAV_20200718 8433146.38276605 921.2755180783718 0.12201467860478975 1.3329442078049608e-05 107893.33262817029 11.786761595571503 48499 13829 865383 APPC_20200701 4316422.102668226 471.83259947854646 0.039627205177523654 4.332656805033207e-06 101704.98927715507 11.119956906459587 24461 3197 1596022 RAMP_20211002 116361799.63431676 2416.0353501885916 0.3187066828982972 6.616661299918421e-06 46720040.515612 969.9535673336277 33550 None 104660 XVS_20201101 9808756.644820064 711.0524015147004 2.6516654019403867 0.0001921709432361327 2073388.0592467834 150.26214798760896 11083 None 227768 BAT_20190813 260067726.8356009 22849.31093740009 0.20304219481997393 1.7840451514020872e-05 18241220.52052922 1602.7782330741943 105134 29446 37775 QTUM_20190615 327332282.18663687 37633.85470986611 3.4106609757135087 0.00039281813631063977 372461244.0718132 42897.705983112 177895 15313 454954 PERL_20210429 0.0 0.0 0.1412669182889169 2.5798977393955195e-06 15052132.363661194 274.8907014356403 18565 640 340450 ONG_20211028 0.0 0.0 1.0797006824039168 1.8436061886262815e-05 9812330.796904026 167.54711816744972 169713 20716 93861 FTM_20191220 21751594.266053893 3045.088688457886 0.01034755890685204 1.4480935628093642e-06 3110849.2089737863 435.3491248455241 20264 2238 522255 SKY_20210110 10908169.646536289 269.60603926483304 0.5757227749866338 1.4282397202511874e-05 561071.3667563426 13.918928461977803 None 3819 758913 PHA_20210819 140848948.3415104 3126.471065660056 0.7743161782941204 1.7210012551410763e-05 13880645.049678378 308.51231347500374 None None 161711 SNGLS_20210219 13856350.446086695 266.9918953344345 0.015550761869179447 2.999909238645296e-07 542112.3166834767 10.457929719992421 9147 2114 2616688 TKO_20210727 118661957.87895428 3161.336024637485 1.5676429595198518 4.2014840809057274e-05 49528693.34019274 1327.4324702138665 None None 20921 SYS_20200801 57152006.75141529 5042.687682033796 0.09680369415508858 8.539995135455861e-06 4176910.634852479 368.4859014339481 58101 4478 504186 FTT_20200207 69239827.87460089 7114.1038993383245 2.4013117032215283 0.0002465931956668734 13761225.176716892 1413.1545221994859 6220 None 25912 ZEN_20211230 717919265.8399949 15479.273394099831 60.71142287418081 0.0013047900854051787 46943387.61434519 1008.8919652149784 None 9073 2220353 CTXC_20200625 1053520.552007964 113.24135957813655 0.1033700009036111 1.112113331252979e-05 13528499.295574836 1455.4729889655755 16405 20060 551445 MTH_20211202 13043841.707851376 228.20112390205503 0.03753149374180176 6.566109314594646e-07 483145.83422352443 8.452603523396 22420 2091 1052038 POA_20190510 5287002.748128294 856.3152043261239 0.023991666692754585 3.8863271588140495e-06 231030.69092927233 37.42386305113005 17416 None 629300 APPC_20190725 5352053.113915982 544.4565670469907 0.04929126962885322 5.020229137660209e-06 167155.5377507942 17.02449759270527 25384 3341 1368976 DOT_20211207 30045183844.325577 595378.0369498596 28.275803567681336 0.0005598373545224406 1738242139.5823917 34415.7462621329 None 36282 13319 BTS_20190909 88079486.71746936 8474.758631746003 0.03249930521361337 3.126991058295884e-06 13910404.502778497 1338.4197050233174 13586 7146 133075 PORTO_20211221 0.0 0.0 3.182524652174949 6.752704441536279e-05 15302098.580394002 324.68106406665567 None None 203949 BCPT_20191216 2637095.9835300255 370.57441948230667 0.02270264825380874 3.1902438426920204e-06 113358.73773112128 15.9295079155084 10758 3145 4540706 WAVES_20200208 108854919.5676217 11114.30118301397 1.0887045986853525 0.00011113971804077706 111904270.31901069 11423.676418591282 141316 56855 35697 DUSK_20200725 17489185.768092778 1833.4531464238407 0.06143757535872838 6.4415871856800614e-06 1056672.528385618 110.78966216628102 17461 13331 827596 DENT_20190520 78040834.5346055 9539.815355995739 0.0010825379711805637 1.324850414044203e-07 1280120.0025393632 156.66586859221215 45113 9320 250313 NEBL_20190706 16335856.041731155 1486.3209062966816 1.0663628341503324 9.70232211918695e-05 296755.9230322327 27.00039296033331 40279 6143 707671 FIL_20210725 4481352230.4583025 131163.79778943682 49.46126842248849 0.001447668750888044 540568209.7666352 15821.74760093382 96089 None 29585 FET_20200621 19406549.333894517 2074.136151730403 0.030979057553471984 3.309680935379286e-06 4889297.87382178 522.3533973700507 17527 415 852489 DIA_20210106 36149856.97158263 1060.1106425959356 1.4117180947751977 4.142840764965684e-05 14413721.901318187 422.9863942996956 20929 190 308409 REQ_20191012 9070919.11666121 1097.2986114416217 0.012427751481786788 1.503370746549622e-06 235080.8797279524 28.437462575115955 40688 29190 826039 CND_20190530 34751510.883641236 4018.788826885674 0.019968456171129134 2.3092235851093907e-06 866857.3261528752 100.24647700963911 36504 6175 561865 ADA_20210107 10274502269.983538 280317.042401106 0.33184097349646713 8.990695924565886e-06 5744644250.202653 155641.86997217726 174180 97332 38332 BCD_20210107 99384839.3638349 2705.365705526934 0.5234517193742635 1.4182080020131393e-05 2643157.1800910286 71.61208043913983 27817 None 2021519 RDN_20210821 29729481.10236806 604.55027608437 0.5797423846867856 1.1788097586643205e-05 6970885.291460642 141.7413634944584 30783 4697 1417860 GXS_20200208 38749651.53255967 3955.9400168674347 0.6022551385041428 6.143187436385854e-05 10139633.903200012 1034.2738089110037 None None 913650 ONG_20210602 0.0 0.0 1.0144456419180552 2.7655200185020984e-05 12336038.71052845 336.2975855313401 138241 19287 123162 ICX_20201129 234714031.1495192 13259.905312006385 0.40812237381514055 2.3042047513474594e-05 19146939.55141224 1081.0107928096631 116196 28031 259128 OMG_20210909 1138585343.4398398 24576.33649563027 8.087774037725469 0.0001746935431731748 1197682177.0117693 25869.583166098033 972 5147 333610 BCD_20190803 150652949.69593874 14317.515385105817 0.7987014212035568 7.588469741392305e-05 4607980.202047983 437.804633920441 21448 None 3532175 FIL_20210220 2303472010.7398977 41238.682020976354 43.24926513227452 0.0007730336003017611 437942890.24962413 7827.753099175527 53070 None 47749 BAND_20210809 243652715.21288225 5538.872936086997 6.916878665582914 0.00015724341142168977 56469856.206449725 1283.745640439989 None 5559 306752 NAV_20190920 7268104.966524421 709.0838791262021 0.10975548267234173 1.0707859031635413e-05 222505.02798108713 21.707821927805842 51360 14178 455499 NANO_20200324 65272900.76672113 10073.210856812422 0.4898592001947727 7.559729927350229e-05 4580113.916134553 706.824006341182 97681 49711 321803 XZC_20200411 34059769.55010836 4967.404823668666 3.4263565658590744 0.0004992824718455638 42892271.50021604 6250.1841025788035 63636 4097 105092 EVX_20201014 5693141.702997365 498.2627479291405 0.26177618155972066 2.2918277343300425e-05 107485.65030349037 9.410275332931343 16805 2820 1080403 GRS_20210108 32454888.67629623 822.1955782469552 0.42326132667716926 1.0722686332647218e-05 5269997.534992442 133.5074266887801 37621 106782 4269637 SC_20201015 138774116.44184712 12143.314473344823 0.0030906609479084577 2.704457342855114e-07 1750326.0599108206 153.16083662686788 106962 30074 160813 POA_20210711 13073224.612287855 387.7796922601229 0.04383550275434273 1.2999942903924197e-06 1110542.7236569508 32.93447341260064 None None 217721 ARK_20190410 94276884.77571914 18227.518618486058 0.671163581937332 0.0001297015996837423 995395.2750589217 192.35900601179455 63635 21726 183985 QLC_20190929 3499919.8226417233 427.307126358336 0.01458475115437356 1.780434706677557e-06 123955.76373677664 15.131910137767427 24755 5735 940522 OST_20190801 9346838.292085933 928.4197333181821 0.014462987988515485 1.4345511573191793e-06 302793.5861336531 30.033412857825496 18094 758 571534 APPC_20210513 20232758.905042905 392.53987323978834 0.17335837516908933 3.430612966791804e-06 794829.9929252954 15.729001136893157 24987 3130 605717 CVC_20210212 179513104.3314259 3764.6744414624977 0.26758390674837385 5.60612699156989e-06 70856286.34993958 1484.5038487398328 88736 8623 155763 DCR_20201031 144896159.74213505 10667.312532656435 11.887901727357407 0.0008759363005583288 5387584.733127284 396.9734229228932 40817 9936 354056 COTI_20201031 16228294.029850766 1194.7334187209688 0.028514037958114115 2.1009999490097002e-06 2811595.347280766 207.16678886203925 None 1204 165187 DGD_20200107 38355680.6185621 4943.4355835502865 19.204534574221967 0.002473056040646864 2181963.996429975 280.9815161617233 17544 3350 360156 WAVES_20200927 250994874.771308 23375.46747142474 2.509164350890251 0.0002338607086237239 40806142.16971402 3803.239640569541 145208 57037 131536 ATM_20210710 15915601.838730905 468.2905434488095 8.435797742616435 0.0002482214555462539 2961098.6772359847 87.12966409406043 5002920 None 121547 FUEL_20191127 3902586.3216517824 544.3330887151835 0.003937099114213153 5.498747379391869e-07 1767104.1168223792 246.80250228934352 1 1488 None SUN_20210909 0.0 0.0 0.0003304815015237255 7.1e-09 0.0660963003047451 1.42e-06 77 None 2015313 TNB_20201115 6923069.399398997 430.20585783105497 0.002015959259122921 1.2532336449804977e-07 671256.4949682951 41.7290786060799 15765 1426 972434 NAV_20200518 7444360.673779426 770.6657311756654 0.10897582825472385 1.1225169531628375e-05 254685.88541441594 26.234186854787872 48683 13893 1211272 ETH_20201015 42827891085.95138 3752047.2131488766 379.21025376092774 0.033220924524273936 10673398919.618017 935049.0299496 495351 487781 10438 TRX_20190807 1437240605.516293 125601.99451518955 0.02178446521849926 1.8986408349933384e-06 676559072.4134285 58965.99568937424 451997 71281 73072 XRP_20190220 13281393663.775656 3392426.5819995175 0.32151332724402787 8.212318567023644e-05 1178422700.4009051 301000.97887883923 912035 197620 30397 SUPER_20210422 204680456.55915684 3777.5062974807665 2.0132981531127085 3.722692944721566e-05 8780135.685361294 162.34927310223748 94981 None 80916 MTH_20200321 1978296.8231359674 320.00572028423625 0.005704245537128857 9.199665881815272e-07 500048.54482289054 80.64659045820106 19197 1928 1053445 DGB_20211007 762055587.7863587 13727.37422381422 0.05174404378938729 9.327605171623241e-07 42246613.96133697 761.5557386146132 228447 42303 152641 BNT_20200625 82117926.14927082 8834.714095688993 1.2505300414411538 0.00013453914269729526 66237493.72876059 7126.206748631933 720 5058 118402 ZEN_20210430 1321659245.5248604 24656.90388975712 119.84503139090968 0.002235831535757983 85293310.62634331 1591.2338748992531 102285 7133 749117 KEY_20191213 5330148.310640581 739.537087655198 0.0019792449205064742 2.749363493729636e-07 3480202.7018338935 483.4339681797887 23654 2790 327527 SCRT_20201129 21375976.105914947 1207.563971160973 0.37904663712680986 2.1410996124130423e-05 155650.54032090388 8.7921453169752 61897 None 408987 QSP_20190522 0.0 0.0 0.024544184097028646 3.090403161755634e-06 859211.295590184 108.18486750307235 57080 8601 772894 YFI_20210513 2594861733.717324 50339.89431610107 67183.85091835374 1.3393297992746374 2604175804.252142 51915.00947785139 116324 5460 19708 BCPT_20190507 3924380.5480528804 685.343648610191 0.0467781331280126 8.169211940730834e-06 760412.0151575546 132.79638366714383 10724 1828 1145743 INJ_20201224 54611173.7179327 2336.9939949844006 3.937365176478388 0.00016885717663553824 94667328.67483482 4059.887036934299 35274 1850 148511 SKY_20210401 62181597.7473954 1057.334200487218 3.1091377104967686 5.286922687937226e-05 6517942.352587683 110.83412994613504 18543 4229 324346 RDN_20211125 27882245.286719345 487.3884452575259 0.545396109047642 9.536981474928783e-06 1064193.6650761478 18.608851623987704 32604 4859 898152 BEAM_20211125 64085480.27435611 1120.9140247888042 0.6301855725765995 1.1017433137836033e-05 3490138.030967407 61.01752257003345 31926 2884 250071 BCD_20190411 232366631.99990645 43758.09281294622 1.2332305252477551 0.00023235150689405478 15815071.598529004 2979.6989632715636 21125 None 3375137 SKY_20201031 8060560.285776827 593.0122410364764 0.42265370747489533 3.120712378837383e-05 213809.1806216626 15.78684736167215 17293 3807 1283280 BLZ_20211028 67449624.2993577 1152.5701796861854 0.219460652015699 3.7473571915045226e-06 16444942.749991601 280.8023849015671 68031 None 309385 ETH_20200314 14567054564.19822 2623917.2714078766 132.57285770180832 0.02394065923837419 24412190319.85676 4408473.497830136 452910 454681 19200 MTH_20211216 10778714.923454031 220.92323226563127 0.03101955789292565 6.356684426016823e-07 707075.95702432 14.48975752505 22503 2093 1070473 ZEN_20210304 516311679.1025191 10155.074180980531 47.39088046805657 0.0009353526963617796 57210758.30096549 1129.1673948488806 89515 6791 495840 1INCH_20211111 732221287.178667 11291.125004424957 4.0708290344980655 6.268554373265181e-05 248677651.2243125 3829.3167433588483 370693 None 3681 BAND_20200106 4130482.7913867123 562.5160392220442 0.23211926697151833 3.160669290838045e-05 580425.2007338972 79.03402985557587 7629 997 703160 RENBTC_20211207 791636519.4961817 15683.833138144242 50464.95045792115 0.9996197396726626 4336981.957693339 85.90779810889445 107068 6376 69235 DASH_20210128 959247498.329513 31709.74584376096 96.87251948934573 0.0031858499938659797 382444575.989457 12577.468372793715 332340 36105 74042 AION_20211202 112084272.32446273 1960.6044392419751 0.22417832911813446 3.920391885594918e-06 66486075.066851504 1162.6969931593371 979 73985 313531 FET_20201018 32485940.540716477 2859.852646019962 0.047138226683176195 4.147708814337095e-06 3668992.995244825 322.8359583486272 25562 680 236091 EVX_20200106 5472132.6696413085 745.2409329719079 0.25148377865308785 3.423941129668366e-05 1973396.9901105047 268.6771749570318 17945 2888 801156 WAN_20190905 35315292.76165057 3343.642416236241 0.3326845348950078 3.1498482247008944e-05 12449200.049108284 1178.686910890081 108132 16864 451102 REN_20211002 914444131.1918392 18990.157744501063 1.039152522943926 2.157631681073229e-05 146881042.1060792 3049.7466233282535 96348 1196 93086 POLY_20210304 310180370.4150814 6099.262594133378 0.3841928739528242 7.58280574291031e-06 38936612.147609375 768.4910007951316 38983 5272 222730 PPT_20200414 7810037.614849354 1139.9428329773123 0.2156591186886686 3.149496007463279e-05 1541611.6974318044 225.13770415288585 23903 None 1062146 FUEL_20190929 4064936.26849917 495.2107551842944 0.004106325741995985 5.00253026716538e-07 679344.0076885767 82.76106606748729 1 1505 None EVX_20200312 5017020.357091664 632.5260287508045 0.23336217984214275 2.941284430992414e-05 807434.4883060441 101.76861096804055 17830 2871 590577 ONE_20201030 30619482.881732505 2273.14356050358 0.004233052991794437 3.14800943293353e-07 2131864.8009189363 158.54114078044776 79238 1514 120791 BCD_20201014 101257475.22718841 8863.26208734131 0.5389000907707769 4.7163663293042625e-05 951821.6763785306 83.30189181361841 28016 None 3329621 UMA_20201101 373546661.59230417 27078.99282456706 6.754162443887103 0.0004900112844919056 17062126.17735485 1237.8491683888149 None None 89241 QKC_20200718 41338641.39799926 4516.359950709487 0.007796145980194302 8.517119541918386e-07 8469689.654438311 925.2951324033911 50182 9210 404576 VIBE_20200323 1330689.802252685 228.30078191575262 0.007119039515824872 1.22000049935529e-06 87088.49066296025 14.9244855097 19359 None 1312296 BRD_20200223 15920505.07681771 1649.2799163115105 0.26013191886981546 2.6948439757874704e-05 174289.27188129953 18.055546447906682 179 None None SRM_20201106 43244531.15724563 2782.1479828195693 0.8659563673303671 5.557904487621056e-05 16289245.269756628 1045.4807285942757 26591 None 63040 AE_20190914 66813473.09994527 6452.327878633446 0.2031426900912526 1.962421052708404e-05 29818184.627007388 2880.5286195284616 24927 6345 344855 DCR_20200806 195967863.47502577 16728.670397458984 16.541641988962223 0.0014115474581723692 6980962.467485952 595.7062686492538 40671 9881 220512 REQ_20210610 65107571.99158529 1736.2412743580785 0.0843579933590164 2.249597480165267e-06 995794.7655856229 26.55512899517954 43061 27757 445673 XRP_20191030 13031272592.452734 1384738.9848405754 0.301284781710241 3.2016533364424526e-05 2393351298.7583146 254333.49562003362 941110 206812 26005 LSK_20200331 132835470.55492094 20674.9305980249 0.9542977309806165 0.00014885182396948528 4302700.763298351 671.1373566336869 177447 31361 154854 VIB_20200316 1636939.8668768639 303.0028982043421 0.008936791821560059 1.6630906212652617e-06 503326.23973289155 93.66640349806846 31493 1106 None DASH_20200711 677198223.7610357 72932.18367873508 71.59452164803368 0.007711448582900473 248186483.20496354 26732.175313843054 316637 35120 73217 DGB_20210207 503854665.3373653 12807.440831906191 0.036336215819375385 9.24033343448553e-07 47566316.901084 1209.6158570867274 183696 25233 203281 BNT_20201031 39579681.60762481 2913.871798969363 0.5943745584501139 4.3795302469287494e-05 49174002.95999017 3623.28821555568 None 5230 77659 KNC_20200321 86814655.75678252 14042.981883092181 0.4843951259458633 7.819322991549379e-05 87492274.70089859 14123.394693862996 104488 7216 120611 AMB_20191015 5202081.7556681065 623.2524903314728 0.037139003761518574 4.449715835022102e-06 3441361.577647661 412.3180364348391 19193 5597 570215 HC_20190914 95089125.64193664 9182.971455720492 2.1471403083530833 0.00020734498431484804 45739747.56126642 4416.994643414951 12901 849 399646 CLV_20210731 155789252.85301447 3730.647845061958 1.2082059959777531 2.890565138526447e-05 55641068.00954519 1331.181371340686 60337 None 108486 WING_20210114 11071071.851676885 297.30129565332373 12.881626271829093 0.00034551713605845014 1882629.1942470458 50.496779966269244 7431 None 329521 WABI_20200106 8302867.389380293 1130.530272157314 0.14080533389435126 1.9172863185057396e-05 1550868.658330177 211.1751862075651 36623 7857 2468394 FET_20200719 34537747.63590307 3766.2388927959455 0.05442158478653678 5.936052175517503e-06 6046978.152430379 659.5761214568888 18448 459 533444 NULS_20190909 31265948.452076476 3010.1980699885985 0.4284739979735261 4.122655396996834e-05 5147528.1398721505 495.28057168939796 21315 5301 307386 ILV_20211104 780651033.449642 12411.092385318696 1236.4219003296882 0.019608942627203786 101437423.21551694 1608.7393886779896 None None 10629 CDT_20200318 1576629.348412833 290.4161624910631 0.0022674592808791345 4.215670805688186e-07 44476.36997988002 8.269067323426 19242 290 281286 MANA_20200301 49224151.840712115 5739.925515311309 0.03688169891956575 4.312182218789388e-06 14106720.259557026 1649.3477808970208 47943 6755 51080 ZIL_20210115 794835832.8531697 20376.197847424173 0.06885422408510337 1.758194165077834e-06 178529573.23710468 4558.756679493587 118663 14544 39054 AST_20200520 2655142.68423373 272.18050993228803 0.015327765798539979 1.5700901484625806e-06 28864.963600459174 2.956764578770434 31607 3448 343534 XTZ_20210206 2618654531.402276 69091.95337417102 3.446180970607201 9.06616484491515e-05 496817592.7974969 13070.207956497457 83121 34313 140734 GAS_20190426 36286147.93671739 6985.669048998745 2.6136244305075347 0.0005023181392634183 1681351.199182028 323.1425280400471 320602 97627 201868 ICX_20210106 317050114.8071369 9333.147674987238 0.5495356824699371 1.6121651469234112e-05 96403533.74016435 2828.176988209504 117345 28058 340142 WPR_20200511 3336693.092900206 381.0940453469714 0.005503088418208994 6.269224481331213e-07 51822.204310486464 5.903685480771995 33154 None 1386470 OMG_20200430 105937979.46985132 12134.216831871488 0.7625327689984807 8.697415729639566e-05 147597004.98002762 16834.850447765337 279058 42854 554099 PHA_20210511 141498791.37865153 2534.300377405689 0.799039848578501 1.429828817134415e-05 45223141.09767061 809.2381181967113 None None 179387 KMD_20201018 63925153.38740937 5625.7913432831365 0.5250046090339628 4.619615263494504e-05 2181694.866114903 191.9714747330916 None 8399 263737 JST_20201130 31399671.617843542 1730.6132092674911 0.021919122084153756 1.2063530555750493e-06 48457152.21336951 2666.9149162376425 None None 156179 STEEM_20210112 66415204.769725 1875.9915296724475 0.1770766892141408 4.981518812346733e-06 9830798.691933947 276.5598839779518 11919 3835 219133 ETH_20190725 23289112074.867935 2370641.66836792 217.19777774847861 0.02214974333603031 8036309076.5856 819539.6161995429 446409 443411 33996 ATOM_20190704 1357530808.7767854 113218.08615132849 5.629593273416958 0.0004689890544049917 125582276.15460517 10461.983678623135 26567 5770 112670 QLC_20210207 11859029.693129826 302.4296821549536 0.04943664527889167 1.257178481463556e-06 7362910.495056237 187.23949780789826 30625 5596 940522 PERP_20210430 165552123.12403736 3089.1802858662313 7.26172061533566 0.00013549433116272962 22679362.16732352 423.1676169927632 17826 None 280871 WAVES_20211204 2123924290.988852 39607.89728994481 21.239242909888517 0.00039607897289944814 119113695.43111403 2221.285869029169 203516 60007 99205 NAS_20190902 30120424.431651603 3096.6531369075 0.6621781104197664 6.806329972592267e-05 10218920.678843156 1050.3721734302271 24189 5096 765651 VIBE_20190909 2782228.49470091 267.6332562694102 0.014867755256259883 1.4301865429917633e-06 111689.34257462197 10.743827295554 20305 None 1398469 DOCK_20200403 2494985.704748921 367.8997918521395 0.0045006050286127645 6.601929064820665e-07 1162420.9765917745 170.5153147661106 42884 15010 604505 KAVA_20210804 433940402.2434613 11295.913903803192 6.183835741467611 0.0001609722600583546 381333286.655729 9926.53808328434 126107 None 50274 MATIC_20210128 205011207.46102995 6773.468901250255 0.04203599655737065 1.3824393138569965e-06 171503639.46167094 5640.2462907661875 77637 2810 46459 VET_20210427 12369565817.81641 229606.7635619739 0.1911138480473036 3.5453093501397376e-06 3002716125.95734 55702.70111738312 281660 141938 33497 SOL_20210603 9317118424.38306 247579.08917492477 34.18804885530961 0.0009079590158531931 526537332.91262364 13983.667819845856 306450 20760 8787 QLC_20190601 9800150.28652234 1142.5231889553227 0.04082695628474102 4.760511772026461e-06 2167669.9172659013 252.75502016467323 25020 5799 940522 NEO_20210408 4265942684.9228725 75735.49769951464 59.97541561825006 0.0010673106584590125 2142043225.2357538 38119.3784420955 369769 107668 91590 GRS_20200903 17182393.448192988 1506.1298390469212 0.2275392140663882 1.993603763348672e-05 1616881.276226696 141.66439883338353 37800 106839 3374022 ADX_20210128 44447169.43659343 1470.5216347358696 0.39276314942999974 1.2962888076700912e-05 1004733.130652014 33.16055271095798 None 3740 10698 MTL_20190509 19966523.879305452 3351.859455692349 0.44185420560868177 7.418467775383387e-05 732258.3043419285 122.94178860500456 33430 None 819230 NMR_20210821 247019887.77134803 5027.051469563217 42.8016424129443 0.0008706197512669806 24302415.74004159 494.33063672301984 29821 3570 773013 EPS_20210428 181846788.23682737 3300.887460283444 1.9044742817217992 3.456046348603977e-05 28647945.88293525 519.873803043488 None None 50287 EOS_20201129 2843850912.9816713 160660.16012301407 2.998779345283635 0.00016928577109097214 2207633793.142375 124624.3707615129 191570 73376 107742 GRS_20200107 12322798.607231153 1588.212231969359 0.16636556126102256 2.145678020792067e-05 6171613.757199905 795.9757951866625 38010 106900 4090330 STORJ_20210111 58604988.00321651 1520.2316847593524 0.4086449482511217 1.0653013852640827e-05 114552487.16318029 2986.2824386462257 83128 8572 92086 PIVX_20191030 14775225.940049179 1570.11420089399 0.240499819263933 2.555711723603479e-05 756647.655514637 80.40643397380907 63100 8581 244902 ZEN_20200410 52014550.996501274 7133.637540926344 5.900084052280683 0.0008091785910600556 3115197.0739916447 427.2398082587601 59961 5114 40228 LINK_20210813 11035736825.488903 248229.35336570433 24.931095569368058 0.0005607236588168072 1148446157.4729614 25829.628288118784 422892 63891 29120 MTH_20200224 3941616.344954483 396.1818081377039 0.011325317503772013 1.1381447277589905e-06 154646.02883428204 15.541247503920408 19184 1937 1456443 MITH_20190904 10502157.954796458 989.6246884299098 0.020206651038259305 1.9040849341650216e-06 2056113.229757444 193.74879173722746 83 2082 697406 OMG_20200309 108892747.60688017 13524.027205045946 0.7642348957103158 9.500006592368028e-05 163917227.8691954 20376.12721037424 281872 42899 381601 SNM_20200322 2858056.7956844876 463.8466489093848 0.006470192067463229 1.049989029183914e-06 316905.18937183614 51.4276807647132 30098 9693 None LSK_20210203 202329831.6017824 5680.623032590234 1.407812926746944 3.9627994929851564e-05 14513770.825196292 408.54265914642394 178821 31119 225361 OST_20201208 8612057.534768932 448.3798281350832 0.012452349767668831 6.486210232200121e-07 1504010.791010659 78.34127987089943 None 738 697106 SKY_20200403 6477033.049537118 955.075256025939 0.38295066040345316 5.6174960460573996e-05 180038.1260414248 26.409758899796064 16130 3829 269101 PSG_20210219 0.0 0.0 11.9376538147596 0.00023087552582183078 6632409.138256313 128.27151557764273 8664380 None 33422 ALGO_20200701 166439467.44444904 18191.01029101844 0.20705463559339798 2.265196350661866e-05 69819356.0690379 7638.300399307211 19194 914 300563 STEEM_20201226 59417080.02034738 2409.633280285647 0.1587718325417809 6.438921123919246e-06 1994074.1703412244 80.86879197979329 11794 3837 222215 MANA_20190605 67056163.785533264 8752.372355266838 0.05064352489647223 6.605874116400907e-06 17847187.01506019 2327.963367367523 44763 6252 128669 CTXC_20200305 1688119.285402151 192.83217040977863 0.07932153578603462 9.056182474507265e-06 3770047.208717594 430.4283209007711 16707 20065 415103 ATA_20211216 111184350.64028029 2279.0033096295315 0.646111494599267 1.3240663101687937e-05 7384141.940351754 151.32208070045493 None None 211446 STEEM_20210429 333045868.1828456 6082.403698421367 0.8720016762342573 1.592533259606452e-05 6557386.422184953 119.75729242309265 13565 3934 169708 GO_20190801 8833655.177602526 877.4453486756775 0.011736033311657032 1.1655410630451738e-06 547383.6357139186 54.36232905285207 10108 681 898219 NEBL_20211021 27462920.58886564 414.3058035616939 1.4803506905244976 2.241643343059332e-05 7418971.918050753 112.34290036065872 41006 6272 1043231 MDX_20210828 982240665.113989 20027.452963871394 1.5082645534475634 3.074668147742476e-05 59509365.7970726 1213.1263781965945 10975 None 93491 XTZ_20200701 1688514375.7808352 184729.65187349738 2.359185185056801 0.00025810349274587555 52392998.14488076 5731.985730614158 67064 26891 72364 ADX_20200410 5808396.1137564145 796.6038690298518 0.0631036205734828 8.65446972178321e-06 216289.61943134287 29.663463767896104 52062 3762 33366 ZRX_20200423 110082442.71309087 15477.159826539773 0.16870762132787745 2.3728174338264206e-05 36399661.01054641 5119.493094111008 152337 15915 132812 BNT_20200806 160446937.34337464 13667.641262922294 2.443704389935958 0.00020816648486592153 111628546.505121 9509.05610038703 None 5171 102885 VIBE_20200518 1961081.9076345498 202.1075856518851 0.010614609789328598 1.09e-06 1042703.4555762357 107.07381516 19005 None 1044807 ATOM_20210206 2893049203.1228914 76344.1170770555 12.170545136406906 0.0003203906318069593 1335101083.2626984 35146.64912692456 None 11987 88305 CMT_20200725 11653707.156535 1221.4360404672295 0.014541316741182525 1.5246233113203224e-06 6755530.329719776 708.3016761372498 283320 1637 956184 MITH_20200626 3672782.0057052835 396.6022644011399 0.00591818080856433 6.395854750852184e-07 4889499.223030821 528.4145220716234 98 2095 706038 REP_20190615 201252861.43129244 23130.967865185223 18.266617757397995 0.0021038323056013553 16287702.308647508 1875.9134699182284 125591 9982 263200 REQ_20210120 25841758.16433639 713.7905116986179 0.03307275246371431 9.1464096842113e-07 520330.9882030214 14.389973724493757 39486 27207 455841 THETA_20210212 2927560429.330888 61420.59924649721 2.9277540755839544 6.122246279608892e-05 297833242.49124235 6228.011006772056 84672 3574 46280 DIA_20210210 66844479.48681925 1434.829280493093 2.6300842913712144 5.6446187781389215e-05 56039271.298937276 1202.7003245674948 23930 218 235170 MDA_20210508 34733577.54928938 606.1669797336658 1.7698382625227242 3.088205299106474e-05 6164179.272081943 107.55926965637813 None 383 1280564 WPR_20190523 8333369.291755699 1086.9028930892835 0.013820011181776302 1.802218409567073e-06 7160252.579917179 933.7430228488614 35105 None 1131129 IDEX_20210310 51559321.9272489 943.3745786176502 0.08927655150741547 1.631240366026377e-06 7139090.99050424 130.44380863522093 50922 1933 5102043 CTXC_20200217 2202186.9735606387 220.91172302867395 0.1036307065191187 1.0393431516081214e-05 10141545.029696234 1017.1256886486198 16885 20066 379773 NEO_20200317 379007772.49535745 75092.0039396791 5.396016874148689 0.0010715400024785711 413876490.40366524 82187.51458647594 322574 98957 219445 BCD_20190405 222897652.2271144 45482.15129473251 1.1873256741021463 0.0002425698563953954 16627878.17137165 3397.064603390993 21058 None 3375137 WPR_20190601 7472015.2125281505 871.0206141831708 0.012436983053281054 1.4498208469890589e-06 191368.12505004695 22.308424475465703 34998 None 1388186 ARDR_20200117 43623307.70769985 5006.383886220918 0.0436669967562895 5.011397814791606e-06 2226496.5725683514 255.52158122261832 65285 6433 1194906 MTL_20210806 131633339.78545076 3211.3009948620215 2.037857292829131 4.975642912583004e-05 43252854.94526104 1056.0639447848407 57412 4225 202262 AMB_20200607 1886485.5537210163 195.05493127299584 0.013228649669685098 1.3680775607559974e-06 127135.30940416463 13.148051261361198 18916 5455 1126030 AAVE_20210509 5917684518.414727 100914.01844272204 465.4354435213712 0.007927353229560924 500347108.7824811 8521.972969439634 193645 9152 14216 GLM_20210314 491331935.679539 8007.685377298973 0.4915053301868813 8.01205998332944e-06 15193597.620674605 247.67181152060175 152453 20752 158485 BTG_20190903 195276269.5317615 18917.128353993405 11.16310963203552 0.0010814199558810483 14639613.568858545 1418.2043159656598 75043 None 255203 ADA_20210610 52340455015.04023 1394421.2060260742 1.6219127316031021 4.3304527683138203e-05 4346881435.235965 116060.28103709311 500383 512861 6299 ASR_20210408 0.0 0.0 11.637236378248064 0.00020693101668099883 22365548.317071162 397.6997202299918 None None 161437 NMR_20210527 313708881.1256287 8006.970234814869 54.15363280490111 0.001381347731476882 85811662.21246755 2188.878913414736 28815 3406 635788 XEM_20210725 1330314518.9558868 38936.708294147415 0.14783196923691674 4.32623960937075e-06 150099666.67687675 4392.602809005202 371246 21729 102654 BCPT_20191220 2537658.519316268 355.299119988983 0.021856655933679678 3.058739075275236e-06 107019.52110827439 14.9768927151708 10747 3146 4540706 MATIC_20190622 45743869.913991764 4519.902056724406 0.021190606751222 2.0944506718697744e-06 42987217.52297043 4248.797954669492 17357 684 215826 NEBL_20190531 19839221.479226697 2388.3558752380836 1.3055540310785583 0.00015720089618874965 562444.5196828432 67.72357209724211 40295 6157 736396 NEO_20210115 1624126471.442639 41635.66983707879 23.055925684024796 0.000587722386101063 706528886.5358746 18010.243819093703 328976 101433 181319 CHR_20211202 526424151.2765901 9210.135619724131 0.9265189258367882 1.620236138107207e-05 120408287.30307586 2105.621946576458 None 1723 35979 IOST_20190821 106075729.4922305 9857.799555660877 0.008826742931701503 8.212015693896546e-07 32234300.234066647 2998.9383564487857 196898 50711 99205 DIA_20210724 56348758.04301779 1685.4914248362231 1.1617348869124724 3.4743612900280627e-05 7564968.777579293 226.24296624977447 34021 401 454629 RDN_20190511 13282542.40614557 2084.6541321526615 0.26253230562409446 4.1203637000218725e-05 736516.6249490486 115.59401646546031 25672 4449 1314746 SYS_20200313 7614960.38806086 1583.8290133197866 0.012927388510052673 2.706485142379523e-06 223696.2505385799 46.83316959321484 58826 4510 856942 NANO_20210111 434818832.59368694 11279.419672966987 3.2304684243979866 8.403133529329531e-05 97560096.63051899 2537.745030810257 101416 55353 338450 BNT_20190608 45677321.89145006 5681.772144939867 0.7025939850120759 8.751434987701747e-05 3402364.631604726 423.7948731860093 798 5134 144123 POLY_20190524 43664526.365810126 5542.774752360416 0.09808831632771532 1.247283792291309e-05 9283967.78919138 1180.5424932491244 34973 5081 319300 GTO_20190704 21097104.6045607 1759.4987835414113 0.03150583382957084 2.6252037037768163e-06 9170147.151731066 764.0967192656185 17454 None 1222950 AST_20210616 27287129.260994956 675.6488831037701 0.15753404937814122 3.903011495579347e-06 2633394.2991138035 65.24410603553272 43744 3692 210640 WPR_20191113 4580517.43290339 521.1371814594255 0.007590349887556272 8.624932383784037e-07 2573278.661684555 292.4022580045922 34081 None 790828 NPXS_20190826 101647568.79026206 10068.726348025733 0.0004291393635812574 4.245166716280438e-08 1510614.5825435866 149.43422326550657 64805 5430 188042 ONG_20190512 0.0 0.0 0.39402507389990654 5.410070325560791e-05 4836481.668136883 664.0619515384681 79514 15539 249396 MATIC_20210105 113967886.4200457 3642.741612310213 0.02372012318769989 7.581633958402587e-07 47150426.368003 1507.0633102368656 70118 2598 49015 PSG_20210210 0.0 0.0 9.026182463635212 0.00019380082830866116 4016193.5758749177 86.23154304583079 8631976 None 40302 RDN_20200330 3468200.2714877883 586.5165075379338 0.06817825128824971 1.1550379107293766e-05 370696.9032820867 62.801401999963694 25063 4319 1385636 XLM_20200404 836369864.0935677 124333.43644482232 0.041234108759417076 6.128595611518625e-06 330287362.64146256 49090.37062095443 280864 107289 84829 FTM_20210616 741660454.8430282 18364.6837506632 0.2909896049250216 7.2097381524414745e-06 83081679.93870418 2058.483009306634 96279 8443 46901 IOST_20210202 296484685.4960181 8879.51443899462 0.016023130615281773 4.797162150881027e-07 150434653.601783 4503.860348932699 202480 52238 229978 HNT_20220105 4219106320.027349 91097.12904241396 41.74470712546118 0.000907278573652623 46911810.87144183 1019.5802961794799 136642 81065 1924 AUDIO_20210202 32668844.30854043 978.5443555610012 0.21232377253331722 6.357291466657642e-06 2097698.826082549 62.80824180711911 None 2490 56398 POWR_20211120 233822252.37048188 4022.3862705808638 0.5453667072173373 9.37627110974396e-06 114255257.25900857 1964.344822660912 97553 15096 252547 RDN_20200316 3194800.5854175007 591.3469664676978 0.06302876876787443 1.1729327067333475e-05 635730.742806559 118.30619501070821 25155 4328 1385636 CVC_20190729 17876206.334342506 1875.1969879357207 0.052162846612453975 5.471832838598996e-06 4650724.920327645 487.85660666501565 88568 8148 434521 CRV_20211120 1555909351.785835 26757.57937327526 3.967794434232333 6.821669865569823e-05 357828141.48163253 6151.995750430998 206465 None 11055 TROY_20200526 7088325.164176848 797.6974117731962 0.003662474663106904 4.1171314659280136e-07 13315408.134854628 1496.837271419607 8702 None 549001 MDA_20210610 17101144.17819902 455.5940744187235 0.8703714789882201 2.3209443125018562e-05 2936152.8963134405 78.29584872491857 None 388 1555115 WAVES_20210723 1422742168.276261 43990.66817685227 14.244580243607324 0.0004399918990428866 259131333.64206532 8004.145130345703 194640 59171 108854 XVG_20190818 80359699.11958574 7861.766081679559 0.005058638226149553 4.948977019768018e-07 3165254.495263442 309.6638078959767 303297 52834 316359 RLC_20190914 14929346.905040959 1442.3519652397279 0.21327164344711785 2.0595210007148117e-05 123929.41137120042 11.96761187750211 24793 3308 984845 KNC_20210805 151602292.95723206 3808.3367887876934 1.6339594231076295 4.109047567825597e-05 31420750.50335171 790.1625744750685 177201 11265 105078 CELO_20210310 377273717.29080003 6899.846721963721 3.9855181471557772 7.279035780766559e-05 19899170.319230407 363.43272671989814 18403 None 92860 ZEN_20200407 54230366.81663769 7444.11968379206 6.166465798307751 0.0008464613485618189 3345519.4355974286 459.2343468235425 None 5109 40228 CDT_20190816 10094063.759335985 976.1381750030789 0.014952385569567832 1.4471662868318738e-06 142732.07440622163 13.814320475433846 19748 297 224421 XZC_20191026 40784847.66805573 4721.993764558212 4.707450436734148 0.0005446389782016072 13723496.123321854 1587.7704941159523 61296 4058 181391 ONT_20190509 642066226.0328661 107786.20073870492 1.04389301752716 0.00017526339261170998 43323311.80937418 7273.7248735245275 78955 15081 249396 PHA_20210420 133315804.67455746 2383.5155467557574 0.7502300789947949 1.3413665777406743e-05 40611391.08300355 726.1074195703443 None None 139188 TNT_20181229 5244249.608505246 1363.5544613256525 0.012251123539923556 3.182565944457505e-06 286020.7868873232 74.30175793984462 17001 2526 1199069 CHZ_20200520 46312709.23607789 4748.387049242147 0.009628982128192022 9.86356983458084e-07 2744962.893073321 281.1837516022631 22768 None 285725 PPT_20200502 9736643.579673445 1098.8048394957116 0.26784406428126384 3.0307846908568685e-05 2854683.361031615 323.02118215967005 23744 None 2106075 BNT_20201130 83621803.57779211 4609.866844532993 0.9812003694932739 5.402961909602666e-05 43785348.795796074 2411.032232534996 87377 5245 95264 SKL_20210125 74930682.89925838 2325.47516798804 0.13388514281671754 4.148281965377668e-06 22993288.70795026 712.4214297809459 None 104 245973 NULS_20201224 22399732.47856629 957.9818772552564 0.22673623474226542 9.723100418469951e-06 8172764.166814315 350.47158113363366 33111 5109 733138 SC_20210117 213296065.60956916 5874.451047250901 0.004723446649111516 1.3025432057604952e-07 11959856.368127583 329.8064064533522 108010 30204 141057 OMG_20200310 109656286.82390215 13850.30993133651 0.7810816559279274 9.855698308047812e-05 191368788.38751826 24146.938154415657 281801 42897 381601 NMR_20211230 186705795.46184504 4016.3871495095564 31.69130876027784 0.0006810618907069297 4944519.633005324 106.26017105715191 None 3755 3023938 ETC_20210204 918922577.405343 24520.239032341524 7.917933574767727 0.00021109248513573366 857890029.7897806 22871.388936450603 269113 27267 152499 NEO_20190901 620296086.973319 64619.14885309408 8.795057622161929 0.0009164698672551697 160706424.16418317 16746.063703969023 324022 98213 210014 LRC_20200224 54385083.022504866 5466.381971740054 0.04839272379328689 4.863256454300929e-06 5596205.611781482 562.3941148124997 34078 6808 811957 ENJ_20200308 96270966.86739585 10830.814963534393 0.10543382834429504 1.1856964709716811e-05 7544796.95263816 848.4790186815799 53720 15210 23333 BQX_20190723 17273741.781451855 1670.2429593134805 0.1438899566192536 1.391800529673386e-05 2382438.9541167542 230.44553464063767 60692 5777 463128 ALGO_20201229 279433588.73218066 10297.357069530415 0.35642506730638956 1.3128057396074301e-05 67165387.96367243 2473.875013562725 32712 1620 423509 SUPER_20211230 326301845.83175826 7035.492319208655 1.1384763067680286 2.4467761208926734e-05 14856139.256656146 319.28329615426026 227783 None None KNC_20211111 170163956.59382406 2625.15820427317 1.8502967156539496 2.848525409408594e-05 37311131.40177317 574.4035805315185 194036 12074 102926 NAS_20210704 14282319.48141276 412.20870495838653 0.31402692332423565 9.05810121038759e-06 3445791.0482736556 99.39378361161508 25273 4924 609906 HIVE_20200713 82193831.84439789 8858.82220628923 0.2268332806100457 2.4413791005206622e-05 4803447.780251046 516.989261435031 None 91 120272 YGG_20211204 656997338.1520963 12237.30001519067 7.491117139324111 0.00013962569973090144 94122644.30241205 1754.3364797033146 None None 44049 YOYO_20190618 5019860.848845089 538.5192673577467 0.02862123378415822 3.0718253808925475e-06 495091.37192107766 53.136571735417505 7534 None 3542595 CND_20200721 14845443.395463148 1620.9044901775649 0.007694869312664973 8.401667695583898e-07 169377.57297313333 18.493544534441618 34274 5930 399242 WAN_20191017 20293873.4609314 2534.5525618702814 0.1911546127176463 2.3875945193708137e-05 2312558.1584709142 288.84739459816905 107494 16769 356039 DGD_20190302 33642439.785315335 8799.433480794629 16.73275086365534 0.004375966955034788 783546.8485779074 204.9140123484477 16058 3296 568878 NCASH_20190629 8490238.299337713 685.0870864248033 0.0029282978660436607 2.359679705278927e-07 1096848.1277106113 88.38616783984394 60266 59133 1027921 KMD_20190901 78251547.30719778 8151.830214022042 0.6762859922312896 7.045187954109383e-05 2120378.6317989556 220.88977394924345 98442 8431 213183 PERL_20200305 11831065.26346786 1351.4605740122258 0.03470543218112982 3.962337889381661e-06 5612036.447546909 640.7292246542502 11469 460 686395 WAN_20190719 26633853.112487108 2481.6321371413997 0.24889547232001485 2.3327555892820655e-05 1072335.2698391313 100.50388104630733 108382 16939 474498 POLY_20200607 30296642.857462175 3132.473103356744 0.04660993963396116 4.819160424452883e-06 3423419.7366865007 353.95902764288576 34778 4991 339744 FLM_20210825 0.0 0.0 0.735248386963501 1.5310286730584138e-05 20556097.642888203 428.0454803502022 25157 None 69223 TUSD_20190305 201898090.17060807 54377.47096713379 1.0029651395955288 0.0002701298844051315 97068402.97344938 26143.557178051993 8289 None 284347 ARK_20190513 73818463.7720513 10636.42542199551 0.522131376095957 7.510966556387015e-05 1107723.7390782975 159.34832379052455 63608 21711 202158 SC_20200308 97615232.06669445 10982.338015511456 0.002232560347485727 2.509931687077169e-07 4170627.22681623 468.8782295789546 107905 30191 227333 SCRT_20210318 220477031.24492547 3746.32769125039 3.1730467842495362 5.383312096895063e-05 7527823.922282115 127.71518461459405 None None 99047 BTG_20200305 182948191.11933485 20897.988116805507 10.459568080119686 0.0011941745227123123 30709483.922721535 3506.1183239353977 75058 None 217881 SC_20190515 125027599.6271324 15643.778005471393 0.003071727072959792 3.842888306076374e-07 4436844.911586659 555.0720823052113 109940 30929 237750 ELF_20200423 28471564.408799283 4002.990322581253 0.061808139708402585 8.68793830860722e-06 25785965.88529257 3624.553042628083 None 33418 612782 CRV_20210201 522242841.9819003 15798.868112437367 2.519547774426844 7.620301930216748e-05 473687985.0819875 14326.560915725784 None None 29016 ONT_20200301 426351241.15303475 49715.92756941947 0.6668364172928092 7.796604347761778e-05 112583880.09142447 13163.227835879565 84544 16472 345761 ARPA_20200417 0.0 0.0 0.007743538098432578 1.0915917311106117e-06 2541225.019234803 358.2316226286296 16727 None 1423765 XZC_20200531 50626469.68882135 5224.088394992402 4.946281763036456 0.0005108649652883996 26430677.392680544 2729.829745985119 63546 4112 209348 MKR_20210125 1309596278.9183161 40673.64428156368 1441.9908721045313 0.04467848039852505 157361262.1215083 4875.663363195902 87563 19463 39551 AAVE_20211202 3365690592.1832724 58884.55917372034 250.95922413420985 0.00438981822228823 186327309.5938436 3259.2666071025524 None 14322 14216 ONT_20190930 380911106.1403727 47307.045842151165 0.5852529935672411 7.268517443998774e-05 81323867.62429452 10099.973121670471 81605 16299 297056 PERL_20201124 0.0 0.0 0.02236474475755228 1.2200959754425966e-06 2036425.2600135247 111.09602595366607 13286 504 372456 OGN_20210408 620938485.738295 11023.843668687958 2.9091617257571527 5.1770867864345446e-05 506722439.555163 9017.532517990716 96805 4201 63219 COCOS_20200208 12666972.799408855 1293.0998794865595 0.0007351484822545747 7.498740369872938e-08 3157134.427961007 322.0374109385517 14780 197 59619 PPT_20190104 53666471.71126017 14231.527228988216 1.4447687069487096 0.00038317918652827144 611772.0707657093 162.25318508718405 23436 None 451293 TUSD_20210727 1243667055.4151273 33219.030252250785 0.9954718538855387 2.667965128682721e-05 104596611.48181227 2803.294848795762 12958 None 588856 MTL_20200719 22050801.166212447 2405.507350932932 0.34116482833304246 3.721744603513055e-05 6095518.901497166 664.9561353702335 38491 None 422557 ZEN_20191017 24669771.258233227 3081.349166148154 3.2645520886787645 0.00040775509229500393 1764486.9782484847 220.39119950456424 None 1831 95686 ICX_20210207 480550649.5439351 12254.812287453713 0.8201985977561722 2.085772652672115e-05 77713461.24470656 1976.2605380226448 119409 28485 278107 BAT_20210813 1062511643.8485111 23899.317505187337 0.714191827542269 1.606284222537734e-05 124222515.42662537 2793.880564279198 209639 77317 27723 SKY_20190706 23590549.53494736 2146.3905457570363 1.5727033023298245 0.00014309270305046912 359444.4456378508 32.70411987219879 16281 3783 456375 ALGO_20210107 413191483.95280313 11254.06721902325 0.5100813465691959 1.3849004817244892e-05 431146699.0256248 11705.88329078431 35110 1747 343568 TKO_20210702 99936280.5330885 2972.370162152988 1.3333484295050175 3.96412694320614e-05 6946502.970106013 206.52380859728686 291720 None 20199 AUTO_20211120 35620118.02047811 612.7554903930258 1019.3903666539837 0.017523140611602882 4567500.269914496 78.51452406398218 79392 None 20191 DCR_20200322 121047157.3867974 19655.16310672651 10.755434942828922 0.0017464253820482156 30675003.198417425 4980.886822791366 40761 9743 200827 REN_20210111 366711711.23615533 9512.616273599915 0.4142235692785658 1.0774833573220666e-05 119009319.46269345 3095.6848088246306 32480 991 104896 BCPT_20190411 5173535.415160311 974.7909185195655 0.06164387519952472 1.1614249728793511e-05 1729466.498078931 325.8467405116276 10401 1657 1777808 NXS_20210318 84927806.73467593 1441.1821868044024 1.2459157808768 2.114256447558775e-05 988365.5567285223 16.772066643121914 24870 3745 380426 CHZ_20200422 30743479.73026794 4492.109200652806 0.006429931757587474 9.392988894216566e-07 1885679.7826025828 275.4643427612429 20295 None 267652 BTS_20210310 171008616.57961413 3123.2522170065213 0.06309824717991207 1.1524082489851493e-06 50238970.21406881 917.5501108633614 2544 6985 126730 SFP_20210725 83788720.99883503 2452.42792934419 0.7746381030090832 2.2672677243019696e-05 15550966.772803633 455.1571231612475 368868 None 24694 POE_20201106 2352871.022825406 151.29852601964132 0.000936530050543451 6.01086240263377e-08 767578.8783850827 49.26495437560581 None 10108 1320650 LSK_20200314 113988694.86446495 20574.809500424086 0.8219099155807503 0.00014801382368750244 5616388.059995182 1011.4284501426575 178362 31325 155203 BTS_20210819 148906808.4163101 3303.3877334124372 0.05478837680301902 1.2163160537830248e-06 18272887.019338492 405.66279067716687 6583 7191 252207 CELR_20190905 18172490.30289948 1720.5664921288492 0.005589396070591064 5.291422429209707e-07 5775929.993752809 546.8012130916454 18322 None 503834 FTM_20200321 6038985.132056759 976.5576176813422 0.0028648486760699766 4.620356969253172e-07 2942436.806199322 474.5489183310011 21269 2320 333169 ETH_20200901 49098776608.15353 4202590.388696778 435.6930232991007 0.037328695486765866 14228693735.746506 1219066.05622076 484776 480828 12393 GXS_20210408 70208900.48695032 1246.4551012623394 0.9997051750119926 1.7776437279936172e-05 15281670.075094346 271.7337635261649 None None 512398 APPC_20200407 3056507.538739454 420.27746405320227 0.028320226918601893 3.887474325354251e-06 68967.25329015062 9.46702959782993 24763 3223 735722 XEM_20191127 325024282.29227203 45361.34728836494 0.036125273280071514 5.047663586118741e-06 37180975.95105777 5195.173388710194 214398 18223 180795 SAND_20201101 21679540.239873175 1571.1732198767822 0.03568167510177192 2.5859149331341225e-06 2094053.4325506317 151.75980462151958 57627 None 72888 BTS_20190324 144453092.3132252 36069.38393923903 0.05349665029468896 1.33600280529192e-05 35609827.59735436 8893.04831311096 13802 7217 180886 YGG_20211120 689415530.3112826 11859.678598414352 7.820849946381586 0.00013407700366081029 193964742.1904416 3325.241070603594 None None 45870 AUDIO_20220112 716181279.4736059 16706.36369161582 1.385624147006891 3.238726123475232e-05 13917459.363145653 325.3035053494967 124444 9016 23191 BNT_20190701 47822605.21185196 4398.48318055632 0.7161601961018784 6.600717971518355e-05 3630782.9427137775 334.6426449152145 793 5127 145805 BEL_20220112 61254662.753865935 1429.7039570278785 1.274607873933624 2.9785499104747474e-05 3100250.474060745 72.44777755424256 38884 None 300803 ATOM_20200410 479211437.8054799 65747.16245588356 2.5812363365642925 0.00035400871640239303 157406337.0881776 21587.800604247463 32197 8354 80555 KNC_20211204 162556664.6434929 3027.7971601928225 1.76347056608837 3.2814913705324497e-05 23409534.55208527 435.6079829063592 198142 12189 88657 FET_20190725 25991284.47713877 2645.7007805978747 0.08839775419498974 9.00315582566456e-06 4291592.963982878 437.0911970210825 15946 291 438146 RVN_20190726 187424807.90987656 18924.42553676092 0.04612531410302494 4.664471080282241e-06 25231192.07768096 2551.5309338494235 27028 6822 272876 XTZ_20210523 2867147909.3498263 76275.5806287283 3.4365563799380174 9.150772098069068e-05 227098155.94262087 6047.110069412436 117260 46799 87161 SUSHI_20211216 1138727367.0333014 23341.21630814795 5.916368207800706 0.0001212348000032972 356164753.495113 7298.322406856221 None None 3931 REP_20190405 211781381.9615054 43213.882064429396 19.27802379674778 0.003938487616298123 8907100.38235321 1819.7147655217912 124103 9839 255741 SNM_20190410 12940597.308648093 2501.345857268251 0.03235877459436791 6.259766224726727e-06 212201.2018159387 41.050068571046275 31629 10061 None MATIC_20211204 15756624950.0671 293461.972334876 2.2851271616109363 4.261408106473046e-05 3890063142.8227224 72543.65048039796 952257 None 4158 VIBE_20190511 7028213.089350478 1102.9293035305966 0.03510349929083268 5.510059688782065e-06 665475.2369214338 104.457058439216 20728 None 1402427 ONG_20210616 0.0 0.0 0.8723148881618222 2.161276652941589e-05 5606726.418714662 138.9141360837449 None 19414 131880 LRC_20200730 126617688.30068982 11403.010610246773 0.10683830556247222 9.625805957262866e-06 19535178.590117823 1760.0600969751931 37509 6950 317120 ATOM_20200807 994499291.9859141 84528.04135760518 4.187906209482348 0.00035569268604934576 159963580.7601474 13586.234472448039 37509 8864 136341 OAX_20210826 11737766.242076995 239.50436250407057 0.20350569783556793 4.149805828855747e-06 776352.3823562503 15.83106358108532 None None 1894568 STORM_20190302 12403349.073909277 3246.9423165508856 0.002741812157118364 7.170416564632684e-07 713154.3915834177 186.50490148547135 26606 2567 3298265 RDN_20200301 6136154.844272958 715.5241977661246 0.12059669543707414 1.4078080533112629e-05 1186608.6094661374 138.52097277462818 25182 4330 1576973 CVC_20190511 23190168.80957753 3639.2062119829734 0.06780922117341959 1.0643749588034411e-05 3271521.4913529865 513.5179983380135 89073 8202 436326 HBAR_20191022 23777212.507619053 2895.442394219723 0.033369049029544316 4.060753813415591e-06 2529723.1300713276 307.84763564066867 34965 6169 85439 ENG_20190816 28183800.28611508 2738.712098460113 0.3599638537491444 3.49396968558774e-05 303190.0047214391 29.428973893810852 61639 3477 308569 COMP_20210731 23122.951467926654 0.5661274146619828 2.541314811931712e-07 6.138e-12 24.948921306926714 0.0006025875986041792 2552 None 6330787 VITE_20201224 6859426.181027189 293.38831786359543 0.012138839256800439 5.205842061033447e-07 738520.9907246988 31.672086227823538 None None 1446251 SCRT_20210617 95568809.3827193 2498.565700659827 1.3705378465152154 3.578531106256628e-05 4280856.26649307 111.77493091497051 83366 None 48367 SAND_20210823 581187691.820516 11780.811561035891 0.6550903572828825 1.3292919103043392e-05 234409287.05233303 4756.570838125143 None None 25914 HARD_20210805 60263593.508193284 1511.882720825776 0.8201718448267421 2.062114987705909e-05 21962217.49890606 552.184498326911 35271 None None GRT_20220115 3046052584.397429 70659.98706501583 0.5803908135207776 1.3456980345444795e-05 102797251.0787352 2383.463961017313 201212 20708 24735 STX_20201124 214024426.88918585 11689.667033750115 0.23388548732107214 1.2744097698215227e-05 1502681.3927069108 81.87903703344327 44788 None 113475 BNB_20210107 6213203841.025946 169513.5081764282 42.18286284478925 0.0011428870831624418 804566738.1656963 21798.637422383952 1466348 85738 896 VET_20200315 160747064.6858722 31083.734521417813 0.0025624591199622966 4.945780704576628e-07 73729347.19876863 14230.439030069912 118744 60823 236885 RLC_20190623 23734553.34702731 2213.109391342122 0.33923614360681725 3.1631802137661194e-05 795566.0121342916 74.18191474445932 24916 3319 714682 TNT_20191024 31460803.759088315 4215.6905917054955 0.07347301106269298 9.841245493102749e-06 1182811.2648469568 158.43009373106847 17722 2555 505684 XMR_20211225 3681944824.989316 72406.88935245779 203.96653261036576 0.004011081876645472 131347642.36489187 2583.00291271978 461506 246556 29395 CELO_20210819 393082517.1611245 8725.383687929774 2.9366560295543853 6.521573088330935e-05 19018474.664862268 422.35240119112655 None None 103784 ZIL_20200412 43757608.568869136 6359.1044850105045 0.0042260058762596175 6.140207322041894e-07 10134911.001940822 1472.559588521901 68942 10558 227703 BRD_20210724 8586942.837720433 256.89422933247505 0.10215154770927425 3.056051917408598e-06 1621120.932358491 48.49882204218029 None None None NEO_20211125 2759799274.4744577 48271.42902131381 39.14475700251273 0.0006843614988021662 158100772.38444686 2764.0504076664683 428346 115150 87407 AVA_20211202 121478138.24317427 2125.339662585852 2.3068430666263904 4.0341672967761546e-05 7413928.734411613 129.65350471253507 138368 10957 48035 ATOM_20190513 903560248.0281584 130212.52356230703 3.798988220894689 0.0005464922198049298 48771540.70586631 7015.885807979244 23579 4111 164771 SNT_20190523 91367384.0224674 11923.448161962764 0.025933664730372546 3.3863320199930134e-06 25860077.07401422 3376.7231876280835 111548 5754 333146 BRD_20200414 7198274.458657977 1050.6506861566604 0.11517915896643847 1.6824593999972975e-05 388513.67521985277 56.7514549304536 185 None None NKN_20200605 14374799.793409893 1472.7792170802043 0.02230778736817019 2.2818691018866793e-06 2409522.9541873536 246.47070050936338 12552 1004 247913 POND_20211216 50828389.96348278 1041.8558752453732 0.06319865093151869 1.293216643178186e-06 12001111.10213517 245.57544164556663 None 787 3495821 NKN_20210626 131455551.21949276 4131.448216916549 0.20250844082388372 6.3703611277998e-06 7435542.603391563 233.90181353447315 28183 3246 104026 MANA_20190923 44498292.64183348 4428.0059087352665 0.03350929206903 3.335957234492365e-06 9349236.150796002 930.746370588076 45792 6390 114138 IDEX_20210703 21611437.198707905 639.3942223644807 0.03729566741233498 1.1015282705291648e-06 440364.51528413617 13.006174619707101 53066 1980 9238367 XLM_20220112 6544639316.344319 152666.8286130839 0.26439322983830976 6.179866756775469e-06 335050115.71646285 7831.384613124175 718703 210259 23022 INJ_20210519 432937932.7150079 10115.080853554506 17.940787480094187 0.0004193646502913051 91081704.93342346 2129.0284710033498 69897 3456 100765 BNT_20190605 43304766.97735304 5648.488441593992 0.6673771395589296 8.688166035859841e-05 4588880.787800158 597.3977207179216 803 5131 144123 LINK_20200626 1831794101.4465232 197971.8950478019 4.8077379196666 0.0005195982376501609 422221755.3055902 45631.788508462574 60292 16472 86438 POWR_20190305 37429961.88232869 10080.065521526629 0.09007629113350982 2.4257970644382546e-05 1578152.3535649143 425.00388263542874 84690 13283 711745 HBAR_20210206 695657806.0414748 18354.16127163936 0.09814039312175689 2.571074653434098e-06 79957322.43233794 2094.7159321768318 48709 7902 141603 SUN_20201231 0.0 0.0 0.0002559285713423781 9e-09 0.7726943320780233 2.717261676657e-05 41 None None ELF_20190801 60189311.08839284 5978.59323153218 0.13220880903307886 1.3113493571093038e-05 24608503.20878625 2440.8619288136842 86320 33468 1285223 WRX_20200526 25062319.57053564 2818.3034749244075 0.13449787513614775 1.512726587870538e-05 14857004.824402569 1670.9993515692604 26584 None 27588 AST_20200430 2609853.460436361 299.04944708939263 0.015180643421427146 1.731497612266325e-06 142406.5235064285 16.242826379446594 31670 3457 322316 FET_20210731 260677343.93024442 6245.263613381579 0.3793070574235279 9.078295182742585e-06 44004807.20031943 1053.2064231489207 69545 3157 159417 ONT_20190811 580713310.1718918 51270.7452057454 0.8935090439992952 7.892157185931625e-05 85181620.61176628 7523.894063919323 81588 16295 237451 POE_20190806 7678381.715815149 650.7367988544341 0.0030557648987760123 2.5871748997406965e-07 295592.7463900482 25.026471582027497 None 10791 756599 ALGO_20200425 153301178.2808244 20443.53962086912 0.20750968985838367 2.768544109788645e-05 78077560.67203768 10416.919366645292 16971 850 305108 WAVES_20190314 268498891.2957829 69444.20353455069 2.6881870367275362 0.0006953741541807064 16473811.480612397 4261.408364802087 137124 56742 38107 MDT_20210107 15972665.905502433 436.4435889983573 0.02637881438269002 7.146914272412959e-07 1340333.0756649538 36.31416275684851 13528 72 1369225 TLM_20211028 217664705.4692001 3718.7301728597813 0.17441712873729814 2.980571431893845e-06 92119236.58454539 1574.2029861374015 None None 16206 THETA_20190812 117993245.0901441 10224.25787660479 0.11808243881291987 1.022509368157878e-05 1856742.5630658162 160.78061090863415 None 4021 242693 BAL_20210429 632703668.3768034 11558.596402081848 58.68896745215346 0.0010718343231074985 133295605.88651034 2434.372450410684 76291 None 49519 BLZ_20201231 16277730.347241873 563.6910977384457 0.06435533896039998 2.2315997416458865e-06 3746070.750053091 129.89956471443207 43106 None 440889 TNT_20191020 36117038.10454606 4545.44835855499 0.08453570992253184 1.0633975478110073e-05 2879198.208864657 362.18212608308124 17709 2554 505684 VIBE_20190811 2868288.2019781517 252.94848345712415 0.015320021316586684 1.3517136337724912e-06 125664.86595221699 11.087642052423062 20394 None 1550581 XTZ_20210707 2394988736.234735 70118.58944966782 2.864623480159685 8.387520247242139e-05 73941036.83241615 2164.9684429012495 124147 49919 72508 VIB_20190515 6883582.754841529 861.8411929318471 0.04046352295853442 5.062901090402434e-06 1660025.163951535 207.7066601758424 33009 1123 1885935 CLV_20211028 138148045.910194 2360.2140987462535 1.0727581751633573 1.8325932850884017e-05 17118894.434976727 292.4421525372976 None None 90765 ACM_20210809 17289901.06004909 393.0213710121827 8.637937194290226 0.00019640552470513907 6464440.6783806225 146.9855400432693 None None 44064 GAS_20211204 105341605.2296988 1962.1035770150638 7.561601801102546 0.0001407073729206615 7526624.4712995915 140.05650974142935 430277 115362 77665 ETH_20190312 13919712301.577475 3601089.7316105682 132.38753404384025 0.03423821125388869 3785480350.370964 979005.1372248222 440475 431977 32034 RSR_20211120 474374843.5907731 8160.438709031468 0.03610186008657294 6.206848039274508e-07 40571435.66903739 697.5284246547011 86528 None 101795 AERGO_20210206 17107273.8700368 451.45780744957926 0.06518307663952301 1.7076613497238632e-06 14047034.439087015 368.0031539862039 None None 586684 PORTO_20211225 0.0 0.0 3.413605265570604 6.712988665110028e-05 4333050.367098512 85.21113525649831 None None 203949 FTM_20200310 12838977.221308809 1621.6472294202815 0.006095095517471862 7.690799306709129e-07 3979494.571378026 502.1331331539409 21271 2318 349202 DUSK_20200423 4959295.290472777 697.2574730895342 0.018581543476952303 2.611877726268438e-06 83801.99792938118 11.779461274572478 17504 13330 1548362 DUSK_20210105 14539294.650894798 464.71769638028627 0.04813712817467743 1.5386011393834662e-06 742768.5277018185 23.74101959039138 None 13346 1115146 BCD_20190510 157622583.84930515 25514.666853855004 0.8371753643181409 0.00013559402695727333 5481082.621798225 887.7495641316094 21224 None 2990373 FXS_20210602 35646567.88734406 971.5066155851813 2.5349207030235337 6.910546666918677e-05 3225927.596594507 87.94327638642582 None None 165484 AST_20190302 6060059.434053336 1583.8126031524557 0.036368232835420206 9.519834370238853e-06 1744518.9569762647 456.64939512764187 30559 3596 383093 QTUM_20201031 200456983.86550543 14757.722358222003 1.9431714705023595 0.00014347630589660795 177307551.41824853 13091.707485025203 186685 15043 122214 GXS_20200310 29039616.401063904 3667.8969274269316 0.4481441797613065 5.6623887608991125e-05 19037289.104462255 2405.3984572667996 None None 822093 NEO_20190905 638427897.9072976 60458.98476806133 9.057019084682253 0.0008575161299268617 174125175.2127677 16486.124736539372 323970 98211 210014 ARPA_20210805 42798331.38544394 1073.521722711783 0.04342276170510816 1.0917556885728169e-06 12743691.71254224 320.40794676008727 None None 741710 XEM_20200407 357876172.45692295 49113.919305996846 0.03976401916629855 5.457102145717105e-06 25578081.718747273 3510.263991347338 210979 17983 203182 APPC_20190929 3469308.311795959 423.041750546951 0.03195147948234457 3.896110866485308e-06 330594.98123465123 40.31220837537619 25088 3300 1033070 TLM_20210707 112433864.90580207 3293.388986492024 0.09201477445266731 2.6938469774911546e-06 25595211.961112924 749.3316675482085 None None 9614 WAN_20200314 12095086.50649041 2191.945953143485 0.11461239577425018 2.0650572882077565e-05 1182449.111781327 213.05070361049192 106100 16375 700059 BCPT_20190901 3457130.6607099916 360.15888650659593 0.029668567261624458 3.091394424532346e-06 219324.10453532342 22.853052119002943 10910 3115 1000589 WAN_20210725 89880865.04791379 2630.7049751986506 0.5101993659450013 1.4932922704061855e-05 1809466.2054659051 52.960902708662424 None 16648 248498 COCOS_20200410 6220307.212884349 853.4450570478039 0.00025686733982588405 3.52285747606101e-08 470203.61044068466 64.48699571672545 14724 217 63890 FUN_20200109 17184693.478883374 2135.519427929464 0.0028506630436275857 3.552544578023977e-07 714190.4046970322 89.00361814262372 None 17152 368144 LSK_20190810 170429677.99746367 14368.05556646778 1.2682297816912924 0.00010691257944094352 3015517.7361068376 254.21006837353468 182342 30784 180876 WNXM_20210806 140008864.54090282 3417.213639181927 62.88306823700032 0.0015368859487143467 16027450.739833647 391.71695221557326 31955 None 129643 MFT_20210708 83364118.35509026 2453.5193220380943 0.008882485805165263 2.614203079406504e-07 10715998.701527769 315.38239878930807 34316 3528 286530 SNT_20190708 99073611.87096359 8672.901070040447 0.028165969150673834 2.464756640175422e-06 21303533.96612239 1864.236466400682 None 5740 317609 EOS_20200721 2409969550.0501795 263041.9274490334 2.5616869570098277 0.00027962217856181034 1867304099.846339 203826.48200149706 None 71867 92471 COS_20210110 24682923.647631697 609.9720181597315 0.00819236669817806 2.0254042379792524e-07 1217798.4533712126 30.10771171914433 14080 None 444691 XTZ_20200718 2279021089.175442 248989.30458010762 3.1742855754208823 0.0003467412825903242 193759590.9534553 21165.21890834274 68098 27440 67459 CTK_20210707 51650700.61824559 1512.4358262360383 1.138861393101725 3.3345474752970437e-05 4045608.156966995 118.45403266427562 None None 123040 COS_20210107 23544633.89433517 643.3431074869007 0.007854101572939554 2.127942136226464e-07 1016483.6680143563 27.539985418653412 14039 None 444691 APPC_20200418 3079898.3035099157 435.07023164103856 0.028172256421729904 4.0019436454820215e-06 31681.986334637542 4.50051007594675 24725 3216 778214 TRU_20210219 81038137.50514464 1567.9842606947186 0.5207940757248216 1.0073299133908055e-05 13047113.888201222 252.35978509759602 19537 None 95211 NAV_20210124 14960851.6359969 468.2332829537306 0.21288246822286575 6.642689791121194e-06 2697404.164057097 84.16859900530454 48364 13635 681902 GRS_20210703 48262264.35928227 1424.8892142413486 0.6196700180743339 1.829506213321796e-05 5736687.495083846 169.36926283372904 41266 106845 6338611 LSK_20190626 279681046.1926748 23694.050507822358 2.095634830400212 0.0001772546499243656 8645051.643867644 731.2226254700952 182819 30487 183148 ALGO_20210823 3789600462.5334992 76815.10965302146 1.1574739088753603 2.348867437235187e-05 252553867.86997074 5125.087933636101 121930 37654 238182 GAS_20190614 44082375.8721019 5357.968467461705 3.1571166484713844 0.0003835648550743693 3284474.41669776 399.0378227697496 321997 97673 216321 VIB_20190706 8110725.650836933 737.9558848510868 0.04477213426205049 4.0736009795392115e-06 609436.0391261763 55.449651594008905 32618 1120 2096372 DEGO_20210602 43967033.41291509 1198.2714286349844 8.11293444351013 0.0002211698851591578 10859580.560783368 296.0472813171058 109644 None 76234 GXS_20200129 28671362.636007436 3077.393909331968 0.4414306417230169 4.720982962000352e-05 5048780.847233318 539.953644034027 None None 1111246 FUEL_20200309 2398926.181054335 296.95206208649364 0.002332928130697151 2.900002701465834e-07 91704.37641434882 11.399534166463125 1 1469 None VIDT_20210104 27243088.054263875 815.0419178199344 0.5853767791891038 1.778303834478015e-05 2463093.79966468 74.8258097065333 158 1145 None BADGER_20210513 254750070.709792 4942.109812602145 30.004998756313583 0.0005981584623716586 42849143.03431541 854.2102507488438 33619 None None EVX_20200927 5710019.280306851 531.7812567672347 0.2615265902197025 2.436215532246851e-05 114709.56216227137 10.68561391031771 16860 2828 1025133 C98_20211204 550685529.1560793 10255.838299384634 2.9695031481470884 5.537663286445035e-05 31702460.463633414 591.2017689187581 None None 35564 VITE_20200105 6061669.734845438 824.517820935647 0.011938602981344108 1.6236195525741196e-06 2816334.513685849 383.01430997874223 None None 589611 BQX_20190411 21783734.547311697 4104.46337062571 0.18482813627084227 3.482325088435697e-05 1841803.4781856916 347.01201827061715 61180 5810 421392 GTO_20190305 17258376.036800005 4648.220501184267 0.029119237342620292 7.8427214534094e-06 3117493.489537521 839.6385105689019 16282 None 778582 DCR_20210427 2650818918.691697 49174.736388745834 206.0603760285888 0.0038225789773572256 27838433.146778606 516.4244157968367 44315 10968 225224 DCR_20190512 290192042.4562269 39649.79055061057 29.498742529189684 0.004049961502034804 3684419.600724765 505.843851666298 40513 9451 304516 TOMO_20200403 18203720.884533558 2682.517335817406 0.2600154500895657 3.8138082522067765e-05 15922256.258340493 2335.41631048819 22204 1511 218911 ARDR_20191220 41945398.34747267 5872.096384221544 0.04201766377372714 5.8801799518852e-06 1948762.6226874462 272.72041983626633 65622 6457 1429068 WAVES_20200607 114955828.381307 11885.67466609077 1.1495582838130698 0.00011885674666090768 41676993.59296614 4309.126330364433 163 56843 94496 XLM_20190706 1945054636.0685918 176971.15854184935 0.10013959057043217 9.113175993749943e-06 407559363.56966096 37089.82817838387 274318 102769 66272 AION_20200321 24652163.525400616 3987.689437323838 0.061711139154497226 9.952619635888546e-06 3298912.2524396554 532.0403951465789 534 72542 244642 SNT_20190922 54485441.20151422 5455.283498097037 0.015379505606000467 1.5400402933440765e-06 20184820.184823148 2021.2246865987802 111145 5707 299805 FUEL_20200305 2686435.392134236 306.875372878291 0.0027148116163956152 3.1e-07 56990.46322016773 6.50764992 1 1471 None GO_20190401 24146592.758485302 5884.419423070502 0.03381338892067922 8.2400727294479e-06 23544879.068774767 5737.712844692363 8902 641 935336 RAD_20220115 218066130.28409737 5059.382177485087 7.958385285028058 0.00018452365521162004 9062635.912136637 210.12688434493793 26023 None 202367 EGLD_20210318 2378267749.423123 40430.98216402232 136.89792331295905 0.002322576049835225 88946643.4404581 1509.046585723376 None 7133 26552 EVX_20190430 11417126.64804833 2193.235938740805 0.5920403655378734 0.00011373126066748785 1137561.8547320054 218.5262211105778 17141 2387 648745 LUNA_20210124 430312187.92028916 13443.505357649263 0.8976356289252494 2.8009422655538104e-05 26662253.699550476 831.9570979084689 19004 None 163077 BCPT_20210111 2687240.2875173106 69.69549821894604 0.023066272109846256 6.000026593635833e-07 451980.1688687148 11.7569628074 10390 3214 2139942 AION_20200907 43961259.04924034 4269.519701230224 0.09531000408978728 9.2657124833098e-06 2448404.8168789004 238.0255387942173 68139 72552 307005 CTXC_20200109 2267041.5565348794 281.7124439064142 0.0656558361735194 8.169609906785132e-06 2952293.882570876 367.3563655034216 17096 20064 634574 DYDX_20211104 939494855.4005808 14921.292533178277 16.282954887863834 0.00025838344913488184 227474126.82847232 3609.6365729474187 None 2200 13989 ADX_20210210 68784712.15229835 1476.8073203226202 0.6032783096369524 1.294742149018496e-05 5407792.115847142 116.06080102118652 53129 3761 11021 DOGE_20210930 26244810643.7017 631106.1233500094 0.1995989658589784 4.799734746730243e-06 793650712.7607672 19084.832861791736 2144511 2171354 32574 COMP_20210107 16107.345518732167 0.445536187947425 1.749102924730942e-07 4.83054e-12 2.6650875382788435 7.360236939251482e-05 1964 None 4236498 AXS_20201224 29802397.326502956 1275.057942931387 0.5363796600653371 2.3001499090643056e-05 10447035.873107014 447.998878454704 None None 21811 UMA_20210603 857767977.4373862 22776.0208932336 14.09075866811047 0.0003742012745752873 25566102.785044726 678.9462848255159 39290 None 143872 TFUEL_20190703 0.0 0.0 0.00939521862742316 8.687084400390242e-07 3851607.1171450424 356.1304683865525 70161 4007 256073 MDT_20210212 31525244.863042906 661.0445697065095 0.05224046821319881 1.0941289088314068e-06 13704030.347140908 287.01840322559485 23128 80 1222000 CRV_20200905 100216428.98177099 9553.87676885312 2.8888777874239575 0.00027551819790219 126410658.08361354 12056.043652121396 30845 None 18839 CTSI_20210131 13955596.658701036 407.95169159202055 0.06693634433278606 1.9590497626671813e-06 4243923.940323203 124.20842923140387 None 196 421222 TCT_20220112 15938624.743851904 371.80036583850745 0.027488848441027038 6.424755160355455e-07 1161821.7527542813 27.154357947860262 None None 527102 BEL_20220115 62734636.70862168 1455.7317112995097 1.3087648346655714 3.0344298150771087e-05 3712146.2544120695 86.06777148923894 38857 None 300803 ONG_20190805 0.0 0.0 0.2425540109614383 2.21511644290171e-05 8297398.670511508 757.7571756289311 81473 16298 237451 CELR_20210826 260033769.12070513 5305.085770955311 0.0460176229598611 9.389291579293284e-07 41917345.13234935 855.2683740765866 59852 None 206136 XEM_20200629 369569332.2590271 40534.56591389262 0.04109697973486683 4.50470884468647e-06 6870965.926195677 753.1380938199088 208452 17866 219464 DCR_20201111 189748008.72667003 12405.41484277906 15.428574417100803 0.0010100772590423003 7339540.057232942 480.50469882842845 40861 9943 361711 AAVE_20210219 5476365609.809021 105960.6667471257 442.8450340240508 0.00856559378384139 824298072.976502 15943.731796564532 129155 6209 14216 RIF_20211104 214699058.22950444 3405.003998889415 0.27320586841788136 4.332102858462102e-06 2611117.0641413652 41.40331158642723 47070 3520 896172 BNT_20190723 33498492.42794227 3237.6943058277557 0.48699573336891205 4.710344446419707e-05 1942815.9420725554 187.91401353458588 787 5132 155271 UMA_20210106 515320558.8438432 15123.74018545802 9.256492166342321 0.00027155641625078736 28995371.116276305 850.6331477087964 16624 None 192669 RENBTC_20201231 385196144.55416995 13339.183838067956 28855.984946100885 1.0006164149066288 17935300.05851304 621.9283687022071 31077 2111 105683 SKY_20190530 30370907.705000926 3512.2002308305096 2.024727180333395 0.00023414668205536728 2399494.397074287 277.4861014079318 15928 3762 440893 RLC_20210207 105886276.45706162 2700.3181341246104 1.4893356431635898 3.785945934733856e-05 21752938.140300356 552.9676812531719 34489 3965 456276 ARDR_20191019 51277436.523305975 6443.050834089815 0.05106863184158108 6.416898599163935e-06 4050166.492666888 508.9133339972052 66435 6504 1346230 HBAR_20200418 127300979.54872148 17982.078583571805 0.032466243835340726 4.6117290126827035e-06 5335194.490959564 757.8477925272114 38583 6406 105863 WTC_20200324 5926265.721568873 921.0061288903083 0.20439921732591562 3.1554332002625915e-05 7558651.694042341 1166.8743558138005 54803 19434 966319 WRX_20210825 683182423.4559809 14216.744567274574 1.5055346028713876 3.138445038850256e-05 27796304.962645702 579.4431774733278 315834 None 1458 DGB_20210624 625406820.3900424 18551.447379378533 0.043574467044989046 1.2929536474225367e-06 32284301.62167633 957.9487339027813 221486 39703 87100 WAVES_20200109 85023875.1374831 10565.43652070705 0.8493984252660749 0.00010569134740012931 37902737.684656054 4716.268946213403 141349 56852 25440 RLC_20200530 27632725.43057066 2929.863967439897 0.3944872258134798 4.188218220584214e-05 553940.0588654598 58.81107665445056 30307 3580 635349 PERL_20200331 4504086.675912677 701.1621229998693 0.013123298873856363 2.044002685892055e-06 3302324.5505734007 514.349350414191 11603 478 645838 LSK_20210206 244346596.81010482 6443.1184798516015 1.7442028606663882 4.5694495638946314e-05 53196711.455812216 1393.6434542339812 179178 31139 225361 ONG_20200321 0.0 0.0 0.08226301335778058 1.3290625833853123e-05 19346635.463750664 3125.692611992603 84404 16532 298289 WBTC_20210314 8203620226.276642 133571.44071672185 61312.61257644354 0.9993363734866736 321466510.9847771 5239.5936787787 None None 145424 STPT_20200418 8111354.684164843 1148.5570126316818 0.011655410008617693 1.6556147598738832e-06 1266163.2926049866 179.85455973641413 11252 None 1265534 COS_20210117 24073814.56493471 663.452262468556 0.007965658594329445 2.2007094552191796e-07 1179329.326353207 32.58187842961712 14227 None 378436 TCT_20200721 4497797.48395557 490.9592593864545 0.00777068689112371 8.482130853154735e-07 1001914.2209426415 109.36443128830186 None None 700075 REN_20190622 41259292.432607725 4078.0121952554964 0.05234123219732301 5.156137032895081e-06 462481.5729406327 45.55907962351572 6436 779 1312648 COS_20200321 9741147.264518367 1575.2850725504095 0.004948784404380819 7.981276883175179e-07 5927696.790106496 956.0042526699663 10333 None 117572 FUEL_20190810 2671742.138883496 225.3061114597507 0.0029698443219612356 2.5036222215390635e-07 119869.37877542307 10.105164037219502 1 1507 None RUNE_20210210 1092591771.3944051 23452.687151698625 4.587961439359899 9.846563997569223e-05 69901369.37106134 1500.2050826432162 34418 2462 162982 LSK_20210110 209984714.34280744 5189.028180497422 1.472518562883471 3.6554049461135494e-05 20024172.72480337 497.0834450925067 None 31048 299861 MATIC_20220105 16643210004.00178 359290.26726200973 2.373652898801285 5.167065361699722e-05 1231006375.874175 26797.053638394907 1097218 None 3376 FET_20210930 481354439.80685663 11586.250206775145 0.6992133920017396 1.6813908822258067e-05 57522361.95466978 1383.2340172688478 80081 5488 93788 NEO_20201129 1237770135.0340154 69923.66628032179 17.530049815875515 0.0009897233444837795 344125986.5339562 19428.896431755915 324731 101009 122930 DGD_20190930 25433234.34233041 3155.3520078595793 12.689887853567848 0.0015749090962928396 1099140.2222520725 136.41144461646502 17265 3364 538258 SNX_20210722 1411654185.4299595 43866.08131894703 8.4364376181849 0.0002615501314935698 163456099.42689434 5067.537535793255 143414 7270 44436 STEEM_20211028 205817615.59843644 3516.983951460365 0.52616739325853 8.984392417952458e-06 14428639.156429403 246.37132193917967 14523 3935 196573 CVC_20200313 9331078.538672268 1938.921614619561 0.014346044093926614 2.9549477346469714e-06 4082467.874359662 840.8923824662706 86705 8071 106398 NXS_20210722 27141092.654868025 844.5491474734532 0.3996390198078528 1.2389783805832722e-05 373106.366850237 11.5672068860462 25981 3957 406501 PPT_20200501 9416839.60923317 1088.2168953633495 0.2589884491031516 3.0046095098376192e-05 2727918.569066395 316.47473480236306 None None 2106075 OMG_20190819 175401062.93448135 17020.89712491527 1.2489502049931682 0.00012102309699596644 84410090.45075016 8179.325743507377 None 41132 None AR_20210823 1269745924.8612638 25738.04931127715 28.932252800451728 0.0005871236143445156 38516119.27519907 781.6094832071379 25789 None 98920 WRX_20211204 629620247.4768982 11726.47062629719 1.3729967961604475 2.560426297324726e-05 101067605.11477292 1884.7542446359441 456506 None 640 WAVES_20211225 1611684829.711411 31678.1604868473 16.097580062666445 0.00031656522675980135 98607434.85893236 1939.1538886466403 207297 60050 105979 ATM_20210527 31591763.064108223 806.3345405205141 16.992567739527168 0.00043345251681672334 31198965.95100475 795.8344213090988 None None 113965 VIBE_20190706 7702182.891388488 700.1135815264709 0.04115915367347512 3.741287748847565e-06 5998673.916796493 545.267898662001 20505 None 1464833 SNT_20190810 70444841.43804583 5940.544981304624 0.01990794764487391 1.6784568660854965e-06 13138581.77963096 1107.7255773437646 111599 5719 278039 SAND_20210120 34287530.73801572 946.4381163713465 0.05410675870140019 1.5012188546098833e-06 15524677.769829815 430.73988424311796 63965 None 55627 OST_20201124 7107005.99122146 388.0649817516262 0.010186765859401368 5.548583338865087e-07 2675675.332499288 145.74014731492315 None 743 657979 TRB_20210106 33346885.998843007 978.6716853914918 20.422768690072484 0.0005993284280752253 40116819.93886532 1177.2718478187726 11951 None 425795 TOMO_20210210 159723873.44138968 3433.210082094737 1.9643573547049717 4.2169636351237006e-05 57153966.929390185 1226.9468157971664 38528 1810 172672 BLZ_20190629 11837017.173327083 956.1159545195906 0.05722477730935034 4.611284501546221e-06 996205.4380692458 80.27618302630191 36583 None 922433 STPT_20200725 15107543.119684182 1583.777131469021 0.01872208006291614 1.962931630661381e-06 3902510.0388235077 409.1618222140572 12678 None 2040332 ASR_20210115 0.0 0.0 4.565231055974753 0.00011637305420268769 6294020.6672237385 160.44191395330668 1928514 None 243323 CRV_20210115 142224339.20099178 3638.126037307766 0.7854653891103844 2.002242716316601e-05 66378180.46545369 1692.0570938183741 55309 None 29021 PIVX_20200518 17193069.591089644 1771.9044632823734 0.27255233682451085 2.7875134870044223e-05 300512.44115827815 30.73473860107406 63742 8470 243551 TFUEL_20190615 0.0 0.0 0.01261153822940513 1.453423043717145e-06 8716967.34632154 1004.591270471153 70153 4000 222751 OMG_20201101 408826229.7890126 29627.80584774409 2.9176143014067635 0.00021144473653813317 159612321.73406556 11567.390967691192 286321 42779 100396 EOS_20190110 2953021677.0977917 742372.0693100462 2.874744967485948 0.0007228470346053839 986150425.374618 247964.92166060812 545 61986 77942 ONE_20191220 17330586.983004548 2426.1750077161846 0.004654784123395485 6.514157576713775e-07 11093448.617961276 1552.4774178756816 70762 None 220757 ATOM_20190703 1287511344.866317 119157.67832332694 5.343843287115533 0.0004941068377284138 148866133.20254266 13764.582973253444 None 5747 112670 ALPHA_20210420 320074515.4163584 5717.497483038663 1.2748182510560602 2.2780864061068083e-05 118655298.88007864 2120.3573385251198 None None 28389 BAKE_20210722 308585256.89234 9589.064740030188 1.717167279103991 5.31706951868413e-05 51032169.08166826 1580.169818039263 None None 8420 GRS_20211230 55568912.87128991 1193.0875781184075 0.7023659356702128 1.5080087585708275e-05 3669777.8434148487 78.79165046063969 43046 107173 None AXS_20210506 480114362.18985856 8385.80300543853 8.677289970997068 0.00015136260569062295 46433917.737196416 809.9716391428242 64241 None 17077 ONG_20200316 0.0 0.0 0.08025797558701028 1.4860902271515568e-05 20319416.962298643 3762.428188380181 84501 16521 298289 TRX_20190329 1538538236.9797597 382142.2299864193 0.023143049006533325 5.748266819260787e-06 209836478.94945404 52119.15115744473 404742 70349 84022 NEBL_20190816 8743737.935803123 849.8059000800804 0.5658575000660366 5.499582051649333e-05 357361.0897488212 34.73200646648856 40434 6139 679101 CMT_20190213 18934366.89707854 5208.91030703888 0.025294277000037495 6.961021670977596e-06 815215.5536136959 224.34850125245816 292697 1626 726422 SC_20211225 830376086.2542022 16321.297092255265 0.016713672403355556 3.286809243227877e-07 28826340.498536825 566.8812940237054 145959 50872 97295 MDA_20190228 18940440.263079576 4955.92316275264 1.062429098789816 0.0002785060361117214 13810916.19982779 3620.4049100938146 None 351 1845971 CVC_20190902 13988749.809188072 1437.980178271904 0.040822567074202405 4.196029096449093e-06 3029686.702018714 311.4123992175178 88262 8157 131188 BAND_20210324 294464619.6202243 5403.778904772997 13.088636066558271 0.0002401058248994833 183356068.23200864 3363.5941735485167 72501 4386 216728 WNXM_20211104 120370932.43412633 1908.6678609554262 55.4050974612392 0.0008785337682354715 3885075.4416997563 61.603897909635336 None None 115391 ZEC_20190515 445563636.74053586 55785.6438851451 67.96000754192944 0.008503332659402589 581896976.4760758 72808.4610853496 74865 15137 166067 VITE_20200330 4144990.1432052795 700.9702301675403 0.008549708822793434 1.4484439875514688e-06 1502920.3156113504 254.61637817566773 None None 513506 XVG_20190414 136562729.79338053 26918.186527285434 0.008624662417023768 1.6997025650539447e-06 2125369.259768016 418.85646160294755 305349 53201 432369 LINK_20200319 703481841.573563 130716.01157455717 1.9372428316453474 0.0003595637494914944 341795644.55198884 63439.297081097204 46527 13689 84663 FUN_20200403 10074095.733363824 1485.3879046488885 0.001683686411574542 2.469796435356996e-07 662011.422200923 97.11033120404007 34684 16959 280907 ZIL_20200903 227020426.80546722 19899.4195357367 0.020352800153990453 1.7836284174436208e-06 84508655.0805508 7405.960731750146 92600 11967 85218 TNB_20190716 12274473.95476614 1122.5551637102005 0.004412874158517682 4.0400897286762247e-07 808749.7954104678 74.04293945704495 15725 1486 578897 LTO_20200711 14656843.008041056 1578.497297993562 0.06617731137517448 7.127448703120254e-06 3647581.8865849464 392.85296194153915 15987 504 1316486 LSK_20210314 478134413.63767594 7784.9901292682935 3.3277770972525045 5.424055255225137e-05 47886791.91259557 780.5228467490654 185570 31639 160114 VIB_20200423 2145994.162548306 301.6474040928995 0.01175475803473327 1.6522841994625547e-06 588161.4166939745 82.67374051132626 31228 1107 None BAT_20190623 422596288.356962 39363.89799921975 0.3315556750100723 3.090992472349472e-05 75009473.15747486 6992.904491157062 102801 27987 47977 REN_20190302 12779504.948739585 3339.9575070380065 0.016963103133842576 4.440301869223202e-06 673547.5823621465 176.30940314255608 5559 806 3522346 ATOM_20191026 743931148.4346219 86070.77354952993 3.0304421905422165 0.00035002575717418973 174019378.29173282 20099.794293930117 28895 7069 99736 LIT_20210408 170332750.14709207 3025.8615698928556 9.424212765040632 0.00016771143022563072 75388815.2456474 1341.6044759478482 44999 None 94250 AVA_20210420 281140384.7515125 5026.8323705639705 5.357494482701121 9.57888018720082e-05 20607760.6664044 368.454453826098 65871 9887 42647 DUSK_20200417 5018719.907638515 706.7612101201979 0.018760842964133998 2.6457797545915506e-06 258838.66054209755 36.503161882283166 17561 13332 1548362 LEND_20200407 25821029.474757653 3550.0989315628804 0.02204901229521263 3.0230738367932543e-06 682459.6989252348 93.56999909400173 None 5726 93984 CHZ_20200730 64688530.28900875 5825.5372271057895 0.012138383175421673 1.0944134200313148e-06 7693756.106417799 693.6796945379845 27405 None 256662 REP_20190902 88475665.15312302 9094.898006257039 8.043242286647548 0.0008268089096597308 6986844.996381858 718.2160486462002 125847 10046 201886 GRT_20210806 3301858895.4268684 80588.8776336055 0.7002381834720888 1.70911189368993e-05 161818401.27430436 3949.5954485724947 126377 16405 32100 GRS_20191020 15050474.417009503 1893.9560812523657 0.20429054838733554 2.569826034407687e-05 1072400.077701262 134.90010481309048 38226 106956 None STMX_20211125 296653309.2479025 5188.7393745419695 0.03193489206727783 5.583125882693504e-07 13659406.756410606 238.8052141942162 76351 5651 89765 STORJ_20200626 24337864.735183492 2630.2242299172835 0.16926280178035813 1.8292447891814932e-05 100815671.18166211 10895.278775793644 81292 8142 96443 REN_20200730 142781961.64912406 12858.255230564297 0.16277144377503652 1.4675698558105888e-05 13093679.197174907 1180.5442309638793 17350 925 163395 JST_20201014 41454195.545909725 3628.448729731182 0.028918218817326088 2.5308262735551482e-06 51693840.83277698 4524.072917042367 29786 None 133827 TFUEL_20210206 0.0 0.0 0.034993905593293774 9.167677123930057e-07 17074865.517916925 447.3260453465585 82927 5295 46280 NULS_20211002 43960686.49292533 912.9265994294786 0.46492077252170705 9.652208278463404e-06 16489319.283352919 342.33433629936206 70725 5471 224525 TROY_20210704 16328274.132055463 471.00483971231506 0.008602969929398884 2.479505343821854e-07 3253966.887284651 93.78422047100437 59317 None 430405 GAS_20190909 19736627.975943692 1900.187340624971 1.416220736637172 0.00013626474630548796 962754.2821327796 92.63348898622672 323847 98236 210014 ETH_20190625 33154422291.905163 3003494.9791976428 311.06822902414945 0.02816440277772732 10801735316.460266 977999.0232547044 444180 440176 37001 DOCK_20210324 50655104.53877827 929.2050447554692 0.0902829799355137 1.6562053724747064e-06 37567053.39832791 689.1526587934488 45428 14887 189285 CVC_20190414 26476101.745244935 5219.0749318901435 0.07722770034025535 1.522252554542201e-05 2312295.732140841 455.78180751209794 89005 8212 424604 CMT_20190930 13041288.219846409 1617.9560340494752 0.01628474234707192 2.0224746412530468e-06 3272266.171011018 406.3973017964238 289373 1652 632576 MANA_20190426 65711719.69801727 12661.454064280837 0.04969376298583708 9.568367211460926e-06 8062910.872674638 1552.486416555324 44431 6189 119897 NEO_20200310 694274258.9472122 87691.4032225999 9.879037108162624 0.0012482355281186487 844885562.8835613 106752.93201544916 322812 98974 240012 VITE_20210729 40108258.37499703 1003.031560450393 0.061206545250379094 1.5291887822981284e-06 5384522.049830756 134.52729087968117 None 2412 593813 LINK_20191220 657281226.3219994 91983.50271406115 1.803688163688249 0.0002524179125400116 142227944.979785 19904.150672720218 38701 11967 103357 SUPER_20210806 233491686.29597798 5698.889783637226 0.7743523260379817 1.890861937677362e-05 33581455.7537921 820.012988422629 130092 None None COTI_20210710 85975358.64381582 2530.5014298915225 0.128457270728588 3.7798263648103587e-06 10081512.210229317 296.64623445017503 123300 5420 94644 NAV_20200417 5397654.770068548 761.5628540057858 0.07888980328142672 1.1130675505983752e-05 101463.4012644532 14.315616825399513 49187 13931 1361419 AAVE_20210710 3905199829.9911866 115141.13398812264 305.044657734116 0.008976487442455947 543600200.7088405 15996.413153488595 251968 11837 14216 CELR_20190329 46593739.20899514 11573.028054607312 0.023327674446254235 5.794111052885522e-06 48703616.51309665 12096.969348753215 11164 None 747458 MDA_20190826 12954237.450073207 1283.1853578442829 0.659626387188545 6.530566353567015e-05 1124459.5603103407 111.32601595591525 None 364 3033915 KMD_20210422 347590144.1830007 6426.377556588357 2.7710237090240173 5.123173044593211e-05 21238156.45374407 392.65903899103694 106912 9008 203738 GTO_20210324 25640394.88442069 470.0618527460455 0.03852044152703809 7.063765784235848e-07 9087120.127866877 166.63694831070794 128 None 477560 PERL_20200913 0.0 0.0 0.03572808129927365 3.421769610845123e-06 2416871.122968298 231.46992117010703 13257 507 1250088 DOGE_20200229 285088979.4241193 32677.144458429826 0.0023080972829547792 2.6455609926267743e-07 130103960.27279843 14912.628025944545 139186 149318 115261 NAV_20190509 11857230.95119431 1990.5222439816803 0.18236691856333584 3.061468646945365e-05 204021.6332843823 34.24995270629615 48680 11305 1061172 ZEN_20190904 32852860.220927436 3091.5031484139363 4.531694647055508 0.00042643922552893605 5336583.77118295 502.180492640256 26961 1789 209860 AAVE_20211002 3975562005.35436 82545.1167993976 302.07374790443856 0.006271345361522983 289013610.45062315 6000.204181562689 None 13222 14216 DNT_20210325 234180115.79200765 4430.247012668219 0.3091549200914967 5.867933182910119e-06 17932313.591280337 340.3653350801654 66258 9427 178706 CND_20191019 13231935.406076143 1662.6032468684907 0.007493169554597917 9.415227363556953e-07 191065.51048047448 24.007533920060496 35513 6070 332150 NULS_20210429 116319941.53942779 2125.0348708303172 1.0401867125238022 1.8996889352880486e-05 87367291.44232711 1595.5854353915063 49194 5338 273594 STEEM_20200905 67972802.29452631 6482.705525334616 0.18679896352703876 1.7815400161617727e-05 5812561.663256611 554.3559238218456 11711 3862 161191 ZEN_20191012 25004024.41359191 3025.424180887116 3.3363780776505183 0.00040351446672888677 3240740.225829298 391.9476550910666 None 1819 182594 MFT_20190302 17605571.869296193 4608.777513949198 0.0028579485419097522 7.474822696222825e-07 834968.8431154056 218.38196061386728 16053 1858 654630 MDX_20210602 309366892.74370563 8431.44237317302 2.466266354228442 6.723385356243552e-05 137595100.64479902 3751.033959409926 None None 17529 QSP_20200208 10491395.708909117 1071.1921170136968 0.014705000378884916 1.5001430314985428e-06 2122144.035675791 216.49231587416253 55477 8342 400753 AMB_20191108 4488963.077487574 486.90542322429445 0.03104594237287337 3.367467597644282e-06 1745037.6906725063 189.27941724011518 19160 5581 575985 1INCH_20210620 523337298.0850496 14714.590541418349 3.03064452965539 8.512182062035669e-05 50999803.26695576 1432.433287006748 229630 None 6332 GTO_20200320 7930452.509031849 1281.399284522406 0.012140172842042647 1.9666497687289837e-06 19372554.750628807 3138.260947000105 16887 None 1148049 TWT_20210723 105438581.08769745 3257.133735691764 0.30391206601808785 9.387349067681786e-06 4101305.839483594 126.68266203771839 934573 41443 2945 DCR_20220115 1025506493.769115 23796.460798156 74.26027091759737 0.0017223122029419286 44687628.58429217 1036.4364024024103 51182 12505 103200 NXS_20211204 48923599.97584459 1021.8120047259132 0.6322815113485429 1.1784991051003315e-05 1424260.8988860133 26.54656453873912 27100 4156 466067 ORN_20210909 244280572.61237192 5272.7901219326595 7.985692692690007 0.0001725091378215752 14724863.541986821 318.09056670734805 None None 95537 RAMP_20210620 54708676.82518157 1537.7190369804669 0.19037075345929735 5.34695011861621e-06 3077355.7339417404 86.43379987536872 29242 None 108775 XLM_20200412 1008138377.9647818 146493.2773317502 0.049647145026237724 7.214260605514155e-06 345752204.65820616 50241.48937501124 281205 107471 84829 CMT_20201130 7061381.775123158 389.31428618616457 0.00886629259968118 4.886710501574983e-07 927131.5720323741 51.099414309372555 281431 1629 878276 FIS_20210819 59671903.30890628 1324.557132480748 2.212674280015998 4.913028791337082e-05 45787581.46662313 1016.6688701673031 None None 372916 NANO_20191020 104297420.66525222 13124.757114753216 0.7812684555552781 9.827787104182556e-05 1737101.8827741023 218.51474177393882 98276 47819 267335 NMR_20210324 258744035.48607916 4743.519015827469 45.76530839275042 0.0008382824020562121 12791647.556901077 234.3043981749748 None 2853 1026780 ONG_20190909 0.0 0.0 0.17697398956172428 1.70279358057985e-05 6461218.215675722 621.6801083382333 81492 16280 256067 BEAM_20210809 61787773.70474045 1404.5122026823633 0.6505672415084087 1.478936813617317e-05 13407860.720906997 304.8013725072672 22122 2576 205785 FRONT_20210813 54662855.3203444 1229.6245611961106 1.188161506759286 2.6727337289957567e-05 49691863.509669445 1117.803589018762 71396 None 254647 LUNA_20210422 5044216692.867512 93095.21911115233 13.289851217907382 0.0002457077768931035 434515370.36927956 8033.483891487102 58138 None 23843 BOND_20211028 125308351.80245265 2140.9980656306434 26.36932024637891 0.0004506188306952085 8530210.819360442 145.77067550809042 25464 None 236352 PPT_20210813 93544860.7879845 2104.2636306590207 2.5821934027633286 5.8085667336419425e-05 4758257.470944116 107.03557691012527 24458 None 828150 CHR_20210909 188036989.5748235 4058.7737722449947 0.3290567129694976 7.107528329231885e-06 90745047.15465878 1960.066359287456 None None 72995 YOYO_20210107 1730617.8286564178 47.28810211094138 0.01000335153374196 2.7115967587448157e-07 499067.77702153346 13.528171653279406 9305 None 2139137 CHR_20210401 186157566.47489253 3165.0245955950445 0.415149772873357 7.064980783040334e-06 141843169.56599477 2413.87405864 51162 None 135636 XZC_20200927 45167136.14328299 4206.472035162911 4.090908532287868 0.0003810830439454888 4581867.692311526 426.81767958401804 66702 4169 309946 PPT_20210131 52376465.93348951 1531.0751951158566 1.4407004291496355 4.216955788098226e-05 9250189.027926438 270.75467857909297 23570 None 736934 MTL_20210731 127730356.6990274 3061.5193038831726 1.963780439791726 4.701252537541191e-05 106509147.3047946 2549.808465813622 57418 4221 203609 EGLD_20210620 1423945684.145355 39943.6962917011 79.44485067868574 0.0022313703446609962 25450306.807483092 714.8236718629465 251466 9133 30591 WAN_20191108 24542904.15092061 2662.1591506193263 0.23120421817055783 2.5078630519015e-05 2377305.725457916 257.8654160864704 None 16692 357067 RAD_20220105 309101582.7196839 6676.975797403187 11.274629736400277 0.0002450425620416826 18119900.203753956 393.8175242715429 None None 202367 REP_20210106 96956590.61827184 2854.155024842285 17.286677482571385 0.0005071368399272584 11669274.350033583 342.3398697688873 136868 10454 135410 WABI_20190618 17050663.56821469 1829.993126952204 0.30208096627439257 3.2434944163523536e-05 1028249.5386772011 110.4048917231997 36373 8017 994304 CELR_20190623 50493891.889724284 4703.392965561976 0.017702531328122273 1.6503530236692332e-06 37545049.65824771 3500.21051107345 15729 None 371624 NULS_20190608 57016946.943586424 7090.574989083563 0.7892094759946385 9.830308212397422e-05 5118559.0097975 637.5621960980485 20810 5316 664729 BTCST_20210813 167382818.43950418 3764.980031945126 22.941598755613313 0.0005160292664021006 11346479.828558274 255.21829252394795 None None 1348993 AION_20190225 30948493.39967813 8235.23518951496 0.10523876301838889 2.8092783259599928e-05 1363949.9528380842 364.09730885307437 67235 72414 212982 FLM_20210221 0.0 0.0 0.5076025433250732 9.029277076341381e-06 41576225.204174265 739.5614188568908 15214 None 174277 QUICK_20211125 117657156.3352619 2057.931938535185 326.02697558054473 0.00570050649473101 9510223.20121731 166.28405986451114 61592 4023 5022 GXS_20190325 64394285.19141924 16124.931387819606 1.0734594103472073 0.0002688000506118229 12633658.657521449 3163.536556501803 None None 590574 PIVX_20210324 73730133.17796604 1353.0363641888348 1.130141085289476 2.0710334531302795e-05 2008604.2318488783 36.808559678126876 66669 9466 212535 MFT_20190401 23107328.63963966 5631.1552864777095 0.0034774158838002333 8.474205250550107e-07 2400701.336971157 585.0331554973809 17057 1898 690472 TRX_20210420 9494239584.039474 169608.91475807666 0.1315105424635931 2.3513299615708074e-06 5502625648.378095 98383.66044244134 788237 98140 21813 PLA_20211207 403481263.7976368 7993.789005891623 1.6678090166034973 3.304594657758443e-05 17762914.091392025 351.95415319301713 18553 None 106717 ATA_20210809 83858714.26365308 1906.2148902271526 0.485557076557806 1.1038282562145612e-05 15382445.581317961 349.6927323706743 66946 None 92285 AION_20191019 22713057.86766171 2853.95131919429 0.06418138196035385 8.064547749612268e-06 1593104.1883718967 200.17744094648387 67906 72557 187992 WABI_20210401 50263235.6661242 854.5363448530459 0.8540432450561684 1.4529646814775918e-05 13987358.826057557 237.9638089647193 42760 7603 354354 WAN_20210421 287797010.01276344 5093.883246209772 1.744278303437642 3.0948515039555915e-05 13372367.690684699 237.2642724351942 116879 16275 185285 GO_20190616 16954349.70938044 1921.2940610737023 0.02310787942133711 2.618063668365079e-06 1177006.990942807 133.35188332139748 9840 668 943493 DOGE_20200701 289978285.3528022 31723.88543100538 0.0023159740264697246 2.5336964313559004e-07 124372837.12458833 13606.500331116624 140560 158669 117230 REN_20201130 282893865.45633584 15596.752420974637 0.3220098603222585 1.7722314672715996e-05 24647195.23721176 1356.49681459006 28589 969 94247 FIL_20211230 4875917099.339858 104929.59610972178 34.24363830939812 0.0007352904629549547 548657597.3784077 11780.95315500993 None None 32648 CVC_20210617 170779706.19243282 4462.184967192689 0.2548950838693027 6.659977562974163e-06 17900092.2894762 467.6991459129331 102962 9823 150952 HNT_20210114 91631598.47531264 2460.6644518678027 1.4173657427481992 3.801726131837069e-05 1008370.7148951262 27.04700122046814 19128 2180 70077 BEAM_20200315 12616348.285840038 2441.9023972851 0.21982538227273066 4.251828236826052e-05 15228147.022511672 2945.4044312555084 15004 1472 244463 LINK_20190207 145009689.7204579 42564.22165865332 0.397800999974327 0.00011677759549905015 6776969.821372021 1989.4325066063852 9600 6310 271589 XLM_20220105 7010490099.605297 151368.7277799499 0.2804018519152804 6.105322749112982e-06 315938324.6238018 6879.075253843659 715609 209890 23022 YOYO_20190806 2594158.0120665366 219.63536846267453 0.014815749904976574 1.2544093766713038e-06 1337392.1411280558 113.23336671294852 7588 None 1167957 BNT_20200329 11773932.833633382 1888.6733687924752 0.16911276309473938 2.7055231845058056e-05 4888347.144096671 782.0543104045405 742 5021 126378 NXS_20190207 15840639.132691413 4651.166566065057 0.26530229411725303 7.789869777109605e-05 717785.8157484591 210.75799782061753 20 3503 881147 TROY_20210418 58971710.33497232 978.2507137256442 0.030837248814174264 5.116524103279023e-07 103653590.46021304 1719.8229880264814 15555 None 495335 OAX_20190524 5783507.114175646 735.215616933802 0.24648700883813057 3.1334118674275046e-05 1999929.5910866691 254.23664899295846 15162 None None TLM_20210429 433265843.07979685 7915.281014581514 0.3465051482025758 6.328076377432163e-06 174684449.72636464 3190.1879252076496 35320 None 35556 DLT_20200306 3740796.0832786406 413.1795995501899 0.045614016116803144 5.0381738254222795e-06 220878.40177869826 24.3965315308556 None 2588 None ALGO_20210324 2897944984.0110683 53159.20523874294 1.1156181667951763 2.0465571725659733e-05 506564660.0770687 9292.727290622419 72474 18464 133821 YFI_20210511 2192144857.314991 39262.197825807765 61649.66072086718 1.103341691645985 1005281248.0847725 17991.481216155476 None 5202 19708 TRX_20190729 1478901338.216622 154924.48413104814 0.02232529884462133 2.3411036493272646e-06 601813797.6585356 63108.15759822788 449816 71308 80727 ADX_20201201 30823346.102679275 1567.783995959808 0.2863130443059859 1.4575256281044914e-05 1110651.3007822058 56.53960820058281 52959 3740 14419 TNB_20200410 3491119.7326105693 478.9603512962519 0.0011268492754447216 1.5454395241859965e-07 310331.72164916596 42.56105219183195 15039 1440 2723419 JST_20210506 199282739.14375818 3481.0619430495244 0.1395561352684336 2.4343522395755483e-06 501728926.5539835 8751.925765694315 None None 74071 FET_20201130 34187956.36008395 1884.698963232444 0.04986204373565436 2.744235311377238e-06 3506320.197195542 192.975798367823 26061 702 294127 QSP_20210509 66233509.53459131 1129.2744882991976 0.09289844081018327 1.5822000876980177e-06 1650427.8153645813 28.109266543500954 None 8435 221703 COCOS_20200301 11354773.15235086 1324.0563768098368 0.00046932831787582785 5.487353582957743e-08 1278169.145779589 149.44263481615286 14640 209 73199 RNDR_20211202 810786468.3415234 14185.143424410304 5.275259203766961 9.227676362632695e-05 83822461.88965777 1466.2531647441 None 3922 72648 TORN_20210825 53932436.4527412 1122.3117671275882 50.287707883761406 0.0010483000989942994 6045785.236849862 126.03074447015203 None None 123832 OMG_20201129 531047763.7650485 29999.75969802985 3.7823461263683917 0.00021351933797405265 365340167.4605082 20624.02225636489 286921 42711 105290 ETH_20210420 251090482814.8267 4485581.38009246 2168.032726735651 0.03876746299751694 40335730705.29044 721259.3833625369 945034 797416 5558 XRP_20190702 17336877754.212288 1634863.0507879986 0.4072883273013282 3.840718304427152e-05 2599021590.7396393 245087.0581854398 931149 203077 39729 TFUEL_20210809 1519627184.3318775 34542.997683022404 0.28621323821856165 6.5065686630405306e-06 34059781.9867185 774.290915137701 186256 22418 19933 DREP_20210408 0.0 0.0 1.7136504525497755 3.0478640319199493e-05 143489.61222644072 2.552077218597219 3692 None 317071 WTC_20190804 51079102.042121865 4733.936691301898 1.7515109054924152 0.00016229818411851466 4596392.330333387 425.91006791342363 56110 20022 698794 XZC_20190904 46610393.94221702 4386.7315823614035 5.625595030644241 0.000530634200571473 13559307.003725192 1278.9815109391052 60813 4045 177313 BAND_20200412 8403955.345551766 1221.0824540290553 0.43707472217484616 6.351162686566643e-05 7435218.647349524 1080.416707800826 None 1075 769411 FIO_20201226 13714443.608320408 555.3344725853606 0.06513755201534543 2.641624480347463e-06 1447899.4790613102 58.71892004890863 55488 157 423283 HC_20190510 46791004.40227766 7578.556396541648 1.0479387749032545 0.00016975294572011218 11694031.11127427 1894.2864564437054 12741 801 932135 ALPHA_20210511 480125552.3578494 8599.242132651832 1.671779779457844 2.991978071506609e-05 65294969.44456175 1168.5816466878082 None None 30246 STX_20210825 1499659267.9072106 31207.291080369127 1.4277979679955892 2.9763948570759185e-05 74601508.55987468 1555.1468161803832 71894 None 67440 POWR_20190929 20280620.59484674 2472.9855255156413 0.04735277596556351 5.774119633478033e-06 10407339.728796054 1269.0538925113703 83711 13012 385730 REQ_20191203 10793251.85734808 1476.2999832017977 0.013975803084230461 1.9129099603104715e-06 134886.40671009783 18.462305840397637 40279 28855 1418322 ZIL_20200701 191484060.93319735 20928.26044498359 0.01739922208046986 1.9035385685173785e-06 32995697.59579619 3609.8500656092597 81067 11507 87928 VITE_20210509 112106522.68614298 1911.659225293967 0.18486143441641786 3.1469794778720205e-06 17327539.01355965 294.97450265838773 None 2238 146293 CND_20210128 15744027.15389398 520.4486855338711 0.008201078814863923 2.6976414762041845e-07 114351.60883219678 3.761451996989853 33980 5894 464745 ZEC_20200430 421512042.8714617 48280.31033858839 46.646555317926826 0.005320485891884959 751543464.11118 85720.72194160889 72431 15721 144144 XTZ_20210828 4408367389.079284 89872.51747688628 5.218353331719646 0.00010637858415507765 1008213114.8629501 20552.897986759664 130902 53042 67956 MATIC_20200501 42771682.54140861 4943.022881345777 0.015435200273453449 1.7906879510829155e-06 33517357.112002846 3888.4579706964937 35426 1654 181455 POLY_20190511 37465499.615813605 5879.417267570914 0.08456097475081703 1.3273207162576944e-05 4690164.4769433215 736.1968675559353 34639 5054 307356 KNC_20201124 218021510.10054693 11904.663291846986 1.1025867570224275 6.007843202756142e-05 49314588.32740578 2687.0839178190467 125687 9269 106415 FUN_20200501 11743060.662609754 1355.7310038785479 0.0019279875865128096 2.2367213122227134e-07 462113.7088276292 53.611319307017354 None 16895 209311 OCEAN_20210821 401615425.57720435 8173.1938005573 0.9324208188614981 1.896618764208562e-05 78808337.51124813 1603.0248218011625 119838 3392 157087 TRB_20210806 85254138.02127819 2080.8189956981323 45.90420701256419 0.0011207877728570577 43352859.11534053 1058.4945820231505 23452 None 290542 DASH_20190411 1135025681.650101 213858.0914506313 129.74191123594983 0.024444520278908425 307762285.1118084 57985.128689966776 320516 23726 95736 WPR_20200117 3864024.6475806753 443.88267716111113 0.006366346015374384 7.306271298600164e-07 2496406.6283753426 286.49753020785766 33810 None 766614 ETH_20210131 157410718624.21973 4601449.189736267 1372.427228964234 0.04017118916484498 29581914651.14533 865867.9048551775 633071 583077 7116 ARK_20190510 60591285.365701705 9803.262187005037 0.4286302796545508 6.942357380704802e-05 1119495.9491093124 181.32039041273194 63640 21723 202158 NPXS_20190531 209622029.19637382 25220.223287099325 0.0009823580920156028 1.1822451213413091e-07 42553998.799249634 5121.274806293115 61189 4448 187767 HARD_20210301 65304604.59241394 1439.5684625007805 1.2776863648795318 2.8201984818610382e-05 16935832.17620397 373.8195030115008 None None None RAMP_20211125 142707944.7965573 2494.5706980442683 0.37811020446852167 6.610439968393742e-06 192065335.6441657 3357.8474113645657 35936 None 115038 MIR_20211111 296609310.73531246 6213.759998811874 3.3287065075730964 5.124532182901552e-05 60114920.68929322 925.46712978147 74538 None 14119 BETA_20220112 121373580.23521897 2835.7553917519313 0.4744075304896313 1.1089444777549094e-05 13166213.74915218 307.76492976395076 None None 55829 GTO_20190207 13897813.551609887 4079.3799208985097 0.023443245015787765 6.881947968495472e-06 4405772.548675535 1293.3489975722912 16280 None 829190 KAVA_20200718 59643895.487731375 6514.6350087539295 2.1991535632215644 0.00024024560304457938 18339052.23609742 2003.4420230632052 None None 194309 CHR_20200721 19557042.7631086 2134.5165377741864 0.05078025823442537 5.5433776677929615e-06 33183957.96387215 3622.49460522049 23248 None 371620 MDA_20210826 18994805.268083535 387.4938053222179 0.9672861619174546 1.973885889702584e-05 1255536.1811625722 25.621013197326796 None 390 2385325 SC_20210718 533503155.0668987 16879.671091943244 0.011045602427473574 3.4977681909289553e-07 30078284.001522005 952.4773837284907 138773 47432 61155 ZIL_20201115 229721468.90583053 14275.10196581624 0.020184132097550184 1.2542856487894938e-06 19268106.03688343 1197.3618070182179 97688 12338 75439 WPR_20210124 6512735.79847449 203.52064224290953 0.010881783196624917 3.395445595861264e-07 194478.00481285524 6.068302161529053 32533 None 7520139 POA_20200526 2543536.02585092 286.2018905948695 0.01156700080770394 1.2999238300773185e-06 532739.2824288107 59.87035878706468 17206 None 556929 DGD_20190701 52022589.84162913 4795.026020588045 25.88063169517908 0.0023994456993368762 2578696.9926800714 239.07621273910794 17100 3374 483052 NXS_20210125 24694276.273777455 767.7676450255718 0.3670757481520953 1.1387385281498189e-05 205862.04253968722 6.386230648678736 24287 3533 480496 RLC_20211221 197495808.26192215 4187.268468079161 2.7756946601192176 5.8890969107452815e-05 11026248.309219854 233.94015843280127 50453 8490 265933 UTK_20210620 125213852.93877715 3512.426189417554 0.27810396763624273 7.811116023439913e-06 13792461.276750278 387.38935009519287 76367 3973 124472 BRD_20210318 24890200.685008142 423.13791632527466 0.31396211030000015 5.330995219896888e-06 2419544.7516924483 41.08324247557791 None None None STORM_20200109 7244381.882455053 900.1472002029185 0.0010118666664685172 1.2610053817765573e-07 953115.9898642425 118.77892932976614 None 2522 3220539 SRM_20210420 291277917.03662074 5205.581026566615 5.753130684915653 0.00010287403792246419 301079138.9239346 5383.716875497644 None None 59775 MTL_20190906 20673505.134798095 1956.0399279483806 0.40992144251240936 3.878388199938501e-05 31683301.452853277 2997.6510069028805 34268 None 253517 OMG_20190325 242299197.17171142 60677.48151883996 1.7274481483276198 0.0004329039060313498 81670064.74569823 20466.77352861458 None 36981 None MTH_20190531 8219640.203843243 990.2858209714351 0.023917854318355754 2.8810078573884913e-06 574252.2428087719 69.17113891714556 19404 2009 1776194 FXS_20210603 36985329.849114075 982.0588638703864 2.6463515618720264 7.035431268292924e-05 2376980.9960270408 63.19298865853185 10538 None 165484 STX_20200713 112911274.1989731 12167.400510597176 0.14906283986732524 1.6043452748098606e-05 1498302.4095691312 161.2604719706121 41449 None 98970 ZRX_20200319 91697791.27472267 17038.633888284316 0.1432007117347949 2.657890069335395e-05 35644166.32829914 6615.768494864671 152780 15968 132419 OG_20210105 0.0 0.0 4.682830665924124 0.0001496767437389606 2668720.83293746 85.29999752693982 615839 None 397078 FIL_20201201 1343914271.7988675 68250.6948558928 30.291092806718957 0.0015429998804164591 80327102.26846689 4091.7873113825904 40672 None 31748 ATOM_20190625 1599147267.96173 144838.47679999314 6.659033787765273 0.0006029150270262936 125446956.6899604 11358.08252273127 26185 5496 113612 ICX_20190803 122740392.5054647 11664.806176166705 0.25041775100113195 2.3792214158277997e-05 13719087.101905067 1303.4517604269968 114035 25860 229714 COS_20200411 10631992.43511777 1550.9931318044262 0.005407930640427534 7.881092488349206e-07 4453860.701373782 649.0706048510941 10701 None 122996 OST_20200626 6426314.112774842 693.917981660934 0.009326352520357174 1.0079110119300148e-06 557676.7182426077 60.268846173979924 17638 754 855262 DUSK_20200704 8725055.496230008 962.0589674778873 0.031145425465090946 3.4346637094194743e-06 272605.5874540633 30.062473195715388 17342 13330 912304 WPR_20190821 3465067.16375756 322.48362219731456 0.005697047568472902 5.302074819580866e-07 148035.5527015964 13.777234031280214 34572 None 1022788 HIVE_20201030 44741905.9140637 3323.5469345723095 0.12036178212321648 8.950987058821487e-06 2317853.3221905334 172.3726146721117 9261 96 136170 COCOS_20200319 5628399.290776747 1045.2777281184235 0.00023212338706566046 4.3061339543272106e-08 551725.4911822923 102.35090488214729 14611 215 67575 KMD_20191213 68224197.80278938 9466.994533892597 0.5804215742933391 8.062619591954488e-05 2331239.798448713 323.8318578250741 98459 8412 241126 PPT_20190305 43061322.087495714 11596.617422430392 1.1886560188550785 0.00032011068005583404 7714136.431006953 2077.4533757475447 23401 None 563513 POE_20190507 10191865.43240807 1781.6666068257275 0.004480689840902558 7.832810900048524e-07 366219.48710391315 64.01978472627098 None 10920 815050 ETC_20200704 657363712.4890416 72489.67542070248 5.651348858943449 0.0006231929701790424 446815518.06096584 49271.828155121024 231761 25590 378218 TRB_20200905 66089800.47679702 6300.501982047882 45.538890666218855 0.004342404168966482 37092956.17226021 3537.034063967632 8238 None 216196 YOYO_20190622 7349533.783514246 724.0028888282353 0.042022834325338515 4.139671215137621e-06 5044498.73423892 496.9337870752677 7567 None 3542595 NULS_20201231 20087788.22532101 695.6318328364046 0.20182918377221593 6.998672707478468e-06 11564209.509374093 401.0030460617705 34462 5111 926793 FORTH_20210724 135547511.68987492 4054.466798305612 15.804673415449715 0.00047263648346336225 46988317.82019512 1405.178880614278 31380 None 61730 NAV_20190601 15013027.287387604 1750.5914460278611 0.2300423263253737 2.6823434862461016e-05 395939.85297091614 46.167446770626405 48490 11278 1015910 QTUM_20190227 166259454.91227463 43743.7675047628 2.045386808595537 0.000538152401977509 177448534.59311295 46687.675268739964 174531 15194 244662 JUV_20210104 0.0 0.0 11.3652532827442 0.00034525862866405157 3506376.412638656 106.51823427865494 None None 134536 ZRX_20211207 728605650.5470772 14435.168027764697 0.8609838474621042 1.7059642823980464e-05 102454391.1285278 2030.044261054511 246745 20818 52318 BLZ_20211225 78372611.54528092 1540.4377583856165 0.24190445075430647 4.757145919394643e-06 12416300.398259213 244.1714180511223 76363 None 208169 HARD_20201229 20743990.369782377 764.4330692445116 0.5258961239959778 1.9375191457127916e-05 3071409.2479610727 113.15759806378453 None None None SYS_20200418 11353203.239448152 1612.6872277492344 0.01944448790099262 2.7620290614633214e-06 266935.9912545772 37.91742776409264 58385 4502 804811 AE_20190818 72245819.62597296 7067.967407809551 0.22230045226496845 2.17497056893825e-05 19932224.762348853 1950.1535777308293 24878 6353 305950 FOR_20211225 34376153.5346872 676.5671540031298 0.06098146005676508 1.1992243340839107e-06 5730144.547243736 112.68554036712662 38096 None 166431 XVG_20211028 340731907.9361992 5822.517219385628 0.020677928549630395 3.5336003723922567e-07 23120336.134273097 395.0977399782236 330809 55247 184223 ADX_20190916 7295693.479072108 708.13935935809 0.0792619277520414 7.693372933063031e-06 104638.68729719594 10.15650852098737 53594 3840 407203 CND_20200901 30372216.733085312 2605.1972330799294 0.01574289378035357 1.3503572583350936e-06 486312.53035332967 41.713783015003955 34308 5929 303234 THETA_20210108 1992582415.899383 50905.74227606494 1.996887723477993 5.06442542372856e-05 157288342.65039006 3989.082971512111 79049 4861 64313 ACM_20210916 23055834.729652803 478.4117679806731 11.514364552119124 0.0002388555800108574 242684337.01985896 5034.27764650378 None None 34977 TLM_20211021 243988789.2659959 3681.4299617314637 0.19686310483431044 2.9710409164190283e-06 43681870.42469653 659.2430026272181 68575 None 16206 ALPHA_20210219 406279796.13778627 7860.838468914683 1.628865722099824 3.1505833941840765e-05 190769226.57310766 3689.895055239788 38614 None 39039 XZC_20210107 36231123.02854223 986.8245349182714 3.1883792606756782 8.647703253052023e-05 4356510.890436684 118.15976180701315 67108 89 582569 DOGE_20201124 456754683.7722471 24887.932897350292 0.0035901592700016676 1.9562282813317644e-07 132541741.02798164 7222.01670612145 152568 168964 145564 WABI_20190902 7477890.167449418 768.8911452921521 0.12943444886504943 1.3308700636084801e-05 2272575.3653385844 233.6705990981292 36274 7960 1609387 POWR_20200229 38678264.85814466 4425.3562783835205 0.08999596654075044 1.03288240551442e-05 5478022.524222714 628.7118522938806 82737 12848 297028 CND_20210105 15774891.328433543 504.21092183779535 0.008176542518432299 2.6134582830587805e-07 89132.02238480575 2.8489159282451055 34049 5902 513668 CND_20210519 47853052.86879077 1123.629653792527 0.025367548521499268 5.920833910079738e-07 409522.12143157056 9.558323940702689 35942 6217 116795 AMB_20210703 3874634.83765074 114.64579550477393 0.02691395031776458 7.948283032574893e-07 258827.20197729825 7.643738037545222 567 59 581251 GXS_20200323 19200262.27818142 3290.9482249704943 0.29398250949819477 5.041812022366443e-05 4144911.171528746 710.8539556290486 None None 697464 QSP_20190530 0.0 0.0 0.028523900918101495 3.2986057697658657e-06 674223.2993482369 77.96959019477265 57007 8601 772894 POA_20210201 9483028.734531026 286.9251700969195 0.033393085620956685 1.009964555528843e-06 1291798.2449591504 39.070077414 18246 None 427710 LSK_20211002 462327504.3186479 9601.102940197838 3.1935119139873525 6.630041924427252e-05 24709457.74994457 512.9924209596833 198133 33038 199909 XEM_20200207 527777406.24606854 54190.03899980831 0.05859314794766882 6.016270433322158e-06 76310377.5418834 7835.453192767912 212950 18074 267921 FTT_20200701 286940814.5184495 31361.211315822526 2.888673885274061 0.0003158259983610433 2134875.9094100366 233.4113652993391 14919 None 12401 NCASH_20200207 2451089.02055374 251.6702152592618 0.000795112704178893 8.165437026807988e-08 88348.7524231148 9.073005254682535 58304 58474 935461 MDA_20211230 8739772.046139877 188.44085587537626 0.45133956476570003 9.702409387542868e-06 1010391.9267078122 21.720311889511553 None 390 979272 EVX_20191127 6085916.458053653 849.0686571279937 0.2780006338642308 3.884409857872301e-05 1397645.2614187894 195.28829685744776 18053 2894 589335 BEL_20210508 134594673.07811815 2348.856963087262 4.268967761320064 7.448928572983218e-05 27005039.401294306 471.2113580090281 None None 339562 NULS_20201229 22706398.3384811 837.4253854993748 0.22993006162622964 8.471138619366383e-06 7744393.265905407 285.3207989176148 33434 5112 733138 SNM_20200414 2907185.888644455 424.47344336 0.006641994294715662 9.7e-07 19155.621789370427 2.7974961 29905 9676 7470249 REQ_20190627 15401975.363839684 1184.9546611004153 0.021054104052013488 1.6144902266090858e-06 923785.852258731 70.83859879607812 41665 29929 444138 BRD_20190324 15575629.174457626 3892.4761128344867 0.2595426280890741 6.481708243595676e-05 261160.54125179435 65.2211332526352 153 None None IOTX_20190329 24571757.16272606 6103.173136613047 0.009731234797892266 2.417059977080659e-06 1769397.0996401547 439.4857386473848 14377 1671 1193452 ONG_20210603 0.0 0.0 1.0456685831518493 2.7799516708860624e-05 13247256.587977707 352.1836046312309 138437 19305 123162 NXS_20190227 17293129.52110505 4539.014137127349 0.2896289029744756 7.602034574004763e-05 203594.37197754468 53.438432385405946 27 3506 888108 NANO_20190811 149409739.54804438 13191.274512645648 1.1195191362019383 9.88845166694369e-05 4746042.514838902 419.20687641357983 98788 47249 262200 FLM_20210408 0.0 0.0 0.9214869484562935 1.6398599852620234e-05 143264921.83732975 2549.5142715401307 18091 None 112678 COMP_20210805 23096.626828011147 0.5785788973891526 2.500454747062579e-07 6.273e-12 290.31561617341845 0.007283274621927303 2559 None 6364625 CTSI_20211111 457251531.72349113 7050.98894768262 0.9905331680759777 1.5252939806577955e-05 493445292.0199186 7598.424343163226 None 6013 138671 NAV_20190329 14043997.455060419 3488.2458468595432 0.21710750334265064 5.3923775154195143e-05 561767.2825710762 139.52816999851223 48371 11389 772440 NULS_20200306 22536319.284416184 2488.513426605801 0.2705986083700046 2.987138874557027e-05 4635126.79715813 511.6717904683368 22667 5193 619302 OST_20190507 14074549.186596366 2460.5000931387594 0.02255293890390268 3.9429491466836955e-06 569052.5394990643 99.48793080123832 18187 750 1072673 ETH_20190812 23199201016.471577 2010238.9212398215 216.4855805517722 0.01874610114853626 8817555226.301624 763537.145216583 447656 444429 31061 JST_20210729 64622348.72540872 1615.3444620905243 0.04509928333796468 1.1271465636662202e-06 67666866.03299287 1691.1682376767553 49751 None 151372 BADGER_20210729 104045643.88642068 2600.796132785709 11.216757289772213 0.00028035774567306476 32041588.715742916 800.8649334260151 36081 None None ONE_20210422 1090273105.804337 20121.674498803277 0.11583876730446736 2.138407249626352e-06 106837907.97838514 1972.2495523058033 130901 15889 31277 SUSD_20210104 143161133.62861225 4278.515738536008 0.9938168220248549 3.0190952702697352e-05 94212205.22613922 2862.05281392193 51377 2895 45504 XRP_20201130 27374753041.126007 1509134.9805539728 0.6054386155414733 3.332125807856149e-05 9754558134.524963 536857.3141839387 987607 221942 23989 TNB_20191213 6146075.887411855 852.7863301213936 0.001981779629692311 2.7531288555748493e-07 767711.0183870724 106.65198722384484 15365 1458 3090308 ETC_20191216 441199704.71357477 61996.56135425074 3.8026443568171198 0.0005348153997704917 454904767.10463685 63979.181866012535 228982 24976 418002 MFT_20200308 9817255.600204425 1104.4750283020826 0.0010701144505095238 1.2034245466800776e-07 1208778.7745038874 135.93630550930436 18442 2501 867921 KEY_20190530 10305703.922619004 1191.7378186675298 0.003948416246605319 4.5660895576257887e-07 660030.3698370347 76.32826913879389 24006 2836 636619 GVT_20190826 5900860.003495863 584.5112214715555 1.3424921976572632 0.0001327247478483867 621798.1220952913 61.47372708140475 21319 5712 194896 BADGER_20211221 145984333.1656095 3095.1319953446105 14.64424208241508 0.0003107019012100292 8106496.398359304 171.9927756552843 None None None ICX_20201014 233998593.70708352 20482.415759675972 0.4111279070675832 3.5981248679278e-05 12218508.651037775 1069.3440914742625 116540 28006 127682 OAX_20191127 3182886.666471316 444.05626109361407 0.060938566057371364 8.50176416423981e-06 309772.49314812507 43.21750332678497 12157 None None TRB_20210725 61190295.79789191 1790.966469933053 34.08041708537341 0.0009974906913081515 19308446.995254416 565.1338155027776 23285 None 258398 GRT_20210813 4087575516.6635823 91939.59725677333 0.8757341237396757 1.9696079566490077e-05 433873542.79863113 9758.22180396967 127950 16537 32100 EVX_20190812 10530287.978530698 912.4622322672457 0.49977624770244083 4.327704444419254e-05 1170816.906843537 101.38436059419861 18241 2912 1025264 STORJ_20211225 284456643.9599381 5594.467809294379 1.972971994076122 3.879926822938807e-05 77661435.13396098 1527.2425872688377 113197 14743 50692 ZRX_20190603 205033809.1624122 23454.417339142918 0.34316897943751284 3.925306545895883e-05 54842341.25629736 6273.090343959793 150616 15916 209456 PPT_20200308 15175950.673828943 1707.3466590438186 0.41966445998735 4.718032044457927e-05 6588816.084787731 740.7404816696979 24126 None 1098941 HARD_20210616 71728508.75637059 1776.0493001810814 1.0818842507042834 2.6805270903054622e-05 142673714.68688813 3534.950777255101 32948 None None STORJ_20190205 20467697.630934108 5908.189533557301 0.15073336552252173 4.3510574984851685e-05 4894483.110267964 1412.8376530515723 82736 7556 214727 WBTC_20201229 3067949724.772103 113056.46515396048 27086.312283429772 0.9979204303149062 176377581.51229313 6498.145269790961 None None 151511 MATIC_20210207 259896571.54184142 6624.922162167582 0.05227151682155022 1.3292695281160572e-06 92422423.97045133 2350.3108264096572 82793 3090 42218 FUEL_20190511 3984343.93397524 625.3216990321326 0.007508732820773736 1.1786464741666623e-06 861698.0980144991 135.26082885930307 1 1514 None XRP_20190225 12343221624.719486 3276946.385946638 0.2971769158095791 7.921058253843623e-05 1236206775.479996 329502.9109410253 912475 197619 30397 NKN_20200421 9718846.412493601 1419.5604258864612 0.014933102638310828 2.1810734265190234e-06 3867749.690450651 564.9091333924779 12275 996 316185 WPR_20200421 2993337.5470622717 437.1270897475165 0.0049173885445214695 7.186421332125796e-07 101813.72570381683 14.879367853009795 33328 None 1026824 ZEC_20200314 254462887.77163556 46071.02668347943 27.555556498882794 0.004953309940600383 463592943.2019981 83334.17378261793 200 15599 157694 FTT_20210212 1846505058.100745 38739.9167046937 20.800356859482374 0.0004357864545788448 44408284.87480598 930.3940865176402 58334 None 4702 DUSK_20210825 57782959.47344557 1202.071894539524 0.16004737313161618 3.3325852935335583e-06 3468010.03925602 72.21261448100746 28540 13651 340293 STPT_20210120 18455258.054925192 509.63302948026285 0.01979762965390265 5.492950534524124e-07 2223713.401560515 61.69803118487183 18386 None 1582459 NEAR_20210220 1250715185.5737102 22391.34905750965 4.382456385374929 7.835071194506947e-05 95131644.70558143 1700.7886526975735 38962 None None NULS_20200417 18687154.12446523 2631.978585454722 0.19741585273814435 2.78409060514259e-05 8477680.894153057 1195.5793520855327 22804 5180 583809 OM_20210806 61667726.831979305 1505.139579048695 0.18630094474045475 4.5532654851491576e-06 140379407.09350652 3430.9257531412227 48273 None 86864 BNT_20191216 17984413.155482393 2527.2358330703005 0.2560505938640972 3.6011729698940335e-05 7509242.857239839 1056.122619899681 762 5067 137088 ADX_20210509 162174415.16400686 2765.425324295142 1.367532804147779 2.328012699650257e-05 3079038.107659864 52.41585280878323 58417 3822 10477 BAL_20210220 477877930.6401275 8554.92249878773 44.228881813001905 0.000791557979393663 134278772.4906676 2403.1680085777903 None None 71652 LOOM_20190821 18776118.94834824 1744.904597901442 0.031200222472866964 2.9021694819046054e-06 1282713.181845969 119.31488801490116 20813 None 468578 CMT_20190830 20709072.651433535 2183.546723861712 0.025848029211669208 2.7250254442767842e-06 2464989.5204614303 259.87123072812585 290030 1652 599569 AE_20200310 53460544.771715455 6752.422800583589 0.15317998281091907 1.9354588372100445e-05 21284345.817116253 2689.3184376983627 25458 6342 460321 PNT_20200704 19126974.039501082 2109.0212177583094 0.6611436387890194 7.293387573947834e-05 813006.2558725016 89.68655790114272 3186 41 1293508 GVT_20200905 9412175.442864655 897.6584705820052 2.121462854099778 0.0002023282622139629 683607.0850046419 65.197009355525 20569 5497 155510 FUN_20210318 223067545.099016 3792.155245828369 0.035531990684489805 6.028268988281452e-07 12533316.708539477 212.63712777955536 36172 9 203036 SYS_20190314 30266499.765547864 7828.266832903849 0.055264890791221946 1.4295797191484694e-05 550474.9480652782 142.39561688927182 62400 4621 812672 XZC_20200410 39148312.5022818 5371.520330061279 3.9865807432918046 0.0005466456422987603 31972387.113013476 4384.099360994319 63626 4095 105092 SUPER_20210724 109782556.75384732 3284.3476245749875 0.507950926232324 1.5185862677311525e-05 22416096.572252702 670.1587628405842 127949 None None KLAY_20210710 2442049905.8797593 71853.32286779143 0.9826948306466899 2.891557487072291e-05 59101754.57378433 1739.0558656391029 39868 647 50267 ATOM_20210729 3196547129.0295377 79939.65749228912 11.577413158104347 0.0002892509331637904 353230929.48832715 8825.147257121907 None 32754 47947 OCEAN_20200914 120077396.47763893 11632.690598479856 0.34567792004475617 3.347252979517639e-05 8905348.983331284 862.3187710178483 25222 994 128881 DLT_20190421 8774399.82919615 1652.4417908750825 0.11072565439299713 2.0849260234041205e-05 395756.8902777835 74.5196624942074 15012 2678 1770083 WAN_20190625 40339706.017096594 3653.660729773146 0.3802959783015159 3.443219116032844e-05 1793346.4525805218 162.3704992825144 108504 17009 440153 NAV_20190613 15307218.566092879 1884.4455884357221 0.23434750297874155 2.8844589591478965e-05 163511.98146102543 20.12582143433651 48351 11266 1015910 LTC_20200518 2816772444.624533 291743.15373066865 43.61155324452331 0.004513692191807376 3569941831.2207174 369480.5016102243 132803 213684 149425 XVG_20210708 368490867.10361755 10845.187117343177 0.022371637070317488 6.586330397996655e-07 14001071.068574362 412.19907016019795 321339 54443 100558 MANA_20220112 3916725490.43453 91365.47184187201 2.9432491121501014 6.879949494493176e-05 453090887.6550056 10591.160668708444 459822 78128 3071 DASH_20191108 657472839.0558915 71317.13324877046 72.2205963831593 0.007833739656168631 295158162.210243 32015.68965009822 316697 31797 74210 MDA_20200309 10123020.635425868 1253.0822648793098 0.5132439129009202 6.380002514174241e-05 994042.2288265149 123.56682192805333 None 373 1557783 DOCK_20211125 70448412.58601576 1560.1781752227776 0.09170435429887362 1.6034294902898149e-06 31740141.71673962 554.9690594705315 56071 15255 188667 TNT_20190626 24574116.38318306 2081.8727714824113 0.05744227057827242 4.858627760194214e-06 11572296.125848707 978.8171435462687 17533 2520 824040 SNT_20200310 46668894.332636505 5894.592124254721 0.012910351771386375 1.6312480239839105e-06 26004132.96122175 3285.672711290707 110614 5612 203342 POLY_20201229 64790088.59351126 2389.321626677105 0.08670113064516069 3.194263903364111e-06 11261665.790801713 414.9049990424342 35595 5012 311827 ELF_20190528 93436011.52961223 10594.698081360133 0.25048257394750656 2.8406714794130978e-05 42788468.7427198 4852.552450641762 88730 32919 928009 GO_20210814 37121136.49401256 779.1678820396343 0.034625796854023574 7.255567054967856e-07 10319290.105436515 216.23271699799358 22560 1111 169047 ZIL_20210821 1335363647.0739753 27175.713846321163 0.1079487217750861 2.194761286190543e-06 93658541.07293598 1904.2202324197258 313855 35713 59302 CDT_20200325 1891225.549133271 279.8357185475986 0.002803111850064086 4.148300527415585e-07 58769.32180854078 8.69722015012181 19193 290 281286 CTXC_20201201 857022.0566497945 43.591161716323676 0.08528028908703222 4.330960024637983e-06 1876195.4060254197 95.28259564895313 16562 20064 673533 QKC_20200526 20141543.73972415 2266.4663675695833 0.005187767461926899 5.831772945917934e-07 92077218.15365268 10350.761357456966 49555 9190 750672 ADX_20200315 5071013.380275352 981.0607349616856 0.055198503148521254 1.0653816471323276e-05 235308.83740477732 45.416759962595236 52374 3773 53936 BRD_20190830 14365422.925438829 1513.7970056322042 0.23869706546062364 2.5167515856341606e-05 211951.02871710807 22.34749248262415 169 None None FIO_20210212 30988185.6473996 649.980624916085 0.14270178773099035 2.9887586508834437e-06 5019737.374645563 105.13381606624917 55394 183 730561 OCEAN_20210702 190875745.31981942 5680.708398782727 0.43983516486857943 1.3075660594060137e-05 15590611.822259638 463.4862442217873 117091 3230 96466 ZEC_20190806 476739920.05020404 40362.16055288888 66.73809452791323 0.0056504059945285505 268206927.10327068 22707.84084260232 93 15356 186923 AION_20211204 99891779.42823106 1862.8269173667854 0.20020875018758552 3.733582994281847e-06 32259307.91183551 601.5861110669841 992 73989 313531 TNB_20201106 5937284.667059267 382.0969291632389 0.0017392278902496482 1.1162759303929703e-07 550317.0305773483 35.32059592435865 15802 1427 972434 LRC_20190627 59681659.71877554 4595.742289348502 0.061855696356017974 4.743275561865561e-06 28759158.70525915 2205.3363344473496 34875 2457 720276 FLM_20210108 0.0 0.0 0.14377579727012055 3.6463832916125717e-06 9779177.397551838 248.01551961596323 12310 None 65365 IOTX_20210418 320697177.381664 5319.891822187572 0.049666248893451025 8.262535033793612e-07 62117006.17683171 1033.3857522268456 None 2647 219398 TNT_20190401 9231931.623439288 2250.0565214363783 0.021585685583750094 5.260277208476634e-06 784096.3522194792 191.07867363429045 17261 2510 1084384 BAT_20190904 237775467.5624621 22378.209340175952 0.1781464808436964 1.6786850508119663e-05 33193516.06832535 3127.8450713081393 105645 29973 30571 PAXG_20220105 329631938.9878906 7120.926561770178 1814.661874589958 0.03951149519593572 4666493.795976915 101.60578661149663 28338 None 33151 CHR_20210429 134648429.2391269 2459.8757844000943 0.30135452648816974 5.503625961338604e-06 99769969.27576417 1822.095056832028 55888 None 107103 BLZ_20210614 52416739.26209648 1346.7651529130228 0.17898775104400227 4.5850126409675186e-06 11109166.870583989 284.5762921493055 62222 None 205295 MANA_20200423 37428278.488779 5261.0315735433205 0.028197275799367365 3.963494027994235e-06 24463204.824639548 3438.621763249697 48152 6824 45768 RIF_20210805 143351828.51520318 3604.4614720006507 0.1903887902156879 4.787748505429529e-06 2489567.6890189312 62.60570261916545 44691 3365 684649 MTH_20220112 7508537.411754166 175.2517305043735 0.019768266502139732 4.620283475802048e-07 204326.2846962768 4.775559641266716 22535 2094 894684 CTSI_20210418 190254340.82805374 3156.0381047641836 0.6098041409393954 1.0132942650633114e-05 20363045.899961077 338.3669648071838 31615 1017 161196 HIVE_20200730 86280462.82932886 7770.002594564663 0.23820195957618256 2.147790650172804e-05 8743843.423749989 788.4043097512352 None 91 125013 CVC_20200312 16857109.385780472 2125.2774948249685 0.025155212907261217 3.1688876392597922e-06 4700490.8805457875 592.1368069802854 None 8072 106398 ICX_20190513 154031378.16644207 22197.539679952162 0.3252609348549069 4.6789450234942484e-05 18299945.927321393 2632.484622386325 113532 24236 291267 IOST_20200422 36490331.97094758 5328.402637009264 0.0030345876594307063 4.433683999343471e-07 44073531.160721324 6439.36283384593 193196 52213 215999 VET_20190714 360444662.5160257 31668.95606127421 0.006520013238898554 5.725321708880713e-07 28140665.015993804 2471.0741284572437 112670 56911 139851 WBTC_20210916 9923663508.55502 205914.5170224932 48232.155280061124 1.0008865881182554 338775478.11040974 7030.0783876483865 None None 211676 GXS_20200306 29795270.722510025 3290.0639322053216 0.45821931816227324 5.061636160456623e-05 7680662.549817269 848.4303860068226 None None 822093 NAV_20220112 17460895.088108126 407.3103725044146 0.2400776408700264 5.610221389214829e-06 180698.63826952537 4.222631319384361 58594 17326 732719 SNGLS_20200109 3860166.987317423 479.69791294781646 0.006597128736335844 8.199425277629809e-07 144121.28255932243 17.91251519396117 4901 2153 2483820 UNI_20201115 824295398.9563959 51222.616606379124 3.811713208353668 0.00023695752858635049 406943170.6587308 25297.87597426172 141436 None 3220 KMD_20201014 68139320.49572863 5964.38581046513 0.555203963896259 4.858960324931037e-05 1844311.1020569638 161.40796994380045 103414 8398 296753 CELR_20191102 14808209.647515444 1600.8319965474564 0.004243188738164845 4.5870719426124507e-07 4734019.442082034 511.768132377446 None None 556012 VIA_20200411 2807859.6584425312 409.49143916137587 0.12149844944713427 1.7715029914690132e-05 73950.28949033996 10.782290609324864 39252 2171 2861314 NAS_20210805 16961976.3093573 425.5608960418836 0.3698419899066514 9.300710333524613e-06 5173594.744854497 130.10449710451195 25276 4925 715519 MATIC_20190515 16665799.202633055 2085.5880331560156 0.007717692444279263 9.655072562094543e-07 98251438.74888398 12291.559650758436 9532 132 593763 NEAR_20210617 1229408398.2879567 32141.84288687873 3.0407519757794166 7.950071599502134e-05 45353511.32119176 1185.7713656500514 None None None WTC_20210825 30608913.949969206 636.6916670100126 1.0478194490532913 2.1819043049032843e-05 31433585.2412491 654.5505050358878 65667 20010 846713 AXS_20210422 456334826.1354599 8422.039181465054 8.231027926275257 0.00015194645280678127 154427322.3255145 2850.759838744678 57697 None 19374 ENG_20200324 8801491.275430178 1366.2128758731021 0.10599800062821095 1.6358093453583473e-05 712073.487073151 109.89041848268178 61116 3598 414852 RUNE_20210221 1201237116.1408398 21415.666261297276 5.145944781295083 9.150735879030536e-05 220164098.18991175 3915.0507792153103 38101 2719 124938 LTC_20210823 12396744160.233543 251281.704080269 185.57933268149694 0.003765726405688273 2108165260.9256732 42778.32814631112 190578 340747 92826 AMB_20200411 1275245.7609949668 185.9866354999828 0.008834411884150708 1.28733449599828e-06 296612.6993180943 43.221865223239625 18984 5487 894983 STX_20210602 1029371926.8171995 28054.35967807798 0.9775270974602892 2.6648749276928273e-05 11278695.186473038 307.4729293705618 None None 60665 SC_20191127 64617009.50904313 9012.802436545886 0.001530557615025829 2.138596953973639e-07 7094513.081028488 991.2925796496476 108028 30413 235097 ZEC_20200414 352860747.9577979 51493.85105921666 35.883665230668335 0.00524046750558649 529917226.86436385 77389.36338252873 72612 15668 146498 CND_20190305 22332251.57972247 6014.180828570319 0.012903753616252237 3.475041794976213e-06 600800.8072201384 161.79849504533627 36706 6225 642987 AKRO_20210318 150724727.0474306 2561.1022404717837 0.05545923982233992 9.409076415203836e-07 49986101.32843336 848.0517378240324 None None 146874 QKC_20201018 29509188.710588817 2597.7986172235537 0.005043585210251808 4.4373361085474543e-07 801291.2365390436 70.49744158441251 None 9216 99674 DASH_20200325 654301632.6590192 96704.58753766258 69.45452997034646 0.010275186134950622 556138044.3001381 82275.72664232412 316229 34291 60317 SUSD_20210325 237095260.1806726 4485.39621712061 1.0061107177927675 1.9082339260149573e-05 40323976.31776488 764.8023053585224 102738 5619 22945 COMP_20210916 18248.171768122003 0.3780270155968724 1.9784817942372376e-07 4.0986e-12 36.7691962878096 0.0007617064172345166 2579 None 3568344 LRC_20210821 438789764.8297353 8929.721214019892 0.352333533323841 7.166746784760072e-06 70505993.84053035 1434.1484896315512 84238 11170 344060 TNB_20210217 11914994.087383986 242.14202938378392 0.0035104305907869412 7.133632025502965e-08 2965132.9278668785 60.25519282340463 15667 1434 3054806 RVN_20200422 96402850.43050018 14084.695339552978 0.01610646952198482 2.35286928460038e-06 10336057.7354566 1509.9145555403557 30373 7638 218336 BTCB_20190726 0.0 0.0 9894.594214221748 0.9996102152249715 9836.265144053306 0.9937174688300618 None None 50789 NANO_20201018 107681934.07044151 9480.61331733141 0.8079477408423206 7.10991875222507e-05 2389599.4169227146 210.28411672978055 98660 52750 246217 QTUM_20210620 799056821.4373028 22414.300267488798 7.7096642743156485 0.00021654161449151925 178586288.39897525 5015.95942962054 245482 16713 104826 COTI_20210819 151087544.8163108 3351.9001700842105 0.2243867558087844 4.981452711753108e-06 41966008.24815534 931.6578638329894 None 5613 156434 APPC_20201229 2936954.235904337 108.31565996060398 0.026599925372204052 9.800008467750369e-07 157074.09777695136 5.78696168030198 24269 3130 524554 MTL_20201106 18412078.549118966 1184.9185389682905 0.28550507023920163 1.832436333960978e-05 2508109.4455605843 160.97615617632854 None None 352724 IDEX_20211207 223298608.970718 4423.972412623585 0.3620808835924 7.170200267454895e-06 131410522.31455308 2602.290827667361 74494 1986 55323 REQ_20210805 47274326.430038355 1188.593557313309 0.06123880010297694 1.540020756091445e-06 1197887.9532821167 30.124239998567198 43413 27800 309382 OMG_20190528 311375224.6214694 35306.815768702276 2.2159880159935734 0.00025131065433212037 209411160.82310104 23748.890098264426 289768 39262 None CND_20200425 7375221.981892515 983.5841385083089 0.003821257661942435 5.098229581074206e-07 46324.9349799092 6.180560819231931 34608 5938 386882 PERL_20200520 5316008.025430777 544.5520170455864 0.015076708117010312 1.544401696959484e-06 1354343.2923237456 138.73387099472865 11685 477 584750 ACM_20210314 0.0 0.0 14.833814338529857 0.0002418069611100338 34169314.16717604 556.9961867810277 None None 69992 XTZ_20200518 1861831173.1091104 192536.10516815272 2.6184463128229813 0.000271002975073815 115676621.04560603 11972.2555686269 61958 25075 103096 DOGE_20210727 26908901181.240494 720976.0432350439 0.2060302135199613 5.520212331600125e-06 4968959293.398269 133134.40731826756 1992677 2122362 9379 DENT_20190621 138155552.811045 14442.59360978567 0.00197909551081321 2.0707414743144753e-07 2182457.4424032858 228.35204856049606 45322 9614 252434 ADX_20190623 13239275.060267635 1233.2088269923006 0.14360243579651172 1.3382245011230363e-05 1062790.309142536 99.04094059142804 54219 3885 880682 BNB_20200629 2273304407.392324 249337.26719294352 15.366038526155645 0.0016847618258680436 155023700.98705325 16997.094799886094 1167158 65265 1028 YOYO_20200607 1673967.4469556906 173.11799456479227 0.009571335918914962 9.898462975501224e-07 375487.95768820064 38.832130419517945 7472 None 1857725 POA_20191011 3788597.9221154135 442.55309748765376 0.017207788797043023 2.0100734861810298e-06 337917.70841944066 39.4727895731548 17726 None 548069 DREP_20210620 0.0 0.0 0.5115731717374425 1.4344959218454539e-05 690459.7383947537 19.361095023061395 4033 None 173575 RVN_20191024 127449970.66574132 17078.06470435442 0.02713457034136073 3.6349857545046602e-06 20736923.526016846 2777.94785990865 28329 7098 246956 XLM_20200422 1034191869.3607494 151015.08772961318 0.05080019203157525 7.421125627591264e-06 436997428.117316 63838.59358203144 281423 107708 81218 CRV_20210104 123518858.81866981 3700.476874466657 0.6736052899643257 2.046307573514799e-05 74123916.32608815 2251.7687081211084 None None 29021 CFX_20210626 172116440.45102188 5408.460768304061 0.2029416102820986 6.383750075695443e-06 2698540.331727221 84.88553443024703 34800 None 134840 AMB_20190213 14210275.389862288 3910.75308782007 0.052422812325059555 1.442683389004517e-05 113354.65281862376 31.195364657998013 17851 4966 625152 FRONT_20210427 75394171.26729 1399.099784920489 2.019208661858128 3.745787875610603e-05 38265708.48978474 709.8584193908152 None None 149576 LSK_20200319 146437732.16040125 27179.710866657326 1.0559772987642075 0.00019599564428331246 11671895.155417329 2166.3729075146593 178141 31312 164419 ADA_20190512 2398581543.222971 328502.6952654018 0.07662815060831381 1.0520484377552913e-05 306602751.3625427 42094.31429856805 151266 73018 116208 SKY_20200315 4818756.950699307 932.2580875142735 0.2829566247911971 5.458610799549367e-05 632544.6183355997 122.02629598764409 16229 3830 308227 ARPA_20200207 0.0 0.0 0.01490087729590585 1.5301865833193762e-06 1605783.8917749517 164.8996175265149 12217 None 1191849 BAL_20210617 239491026.96171862 6261.382517263414 22.161854102484902 0.0005794235383085259 23142714.48297187 605.0682154018871 86126 None 65621 KNC_20190430 35657830.299347945 6851.067023365016 0.21457852092119006 4.121075257074968e-05 4691136.003506738 900.9533866031995 96352 6656 249884 SUPER_20210819 276678188.2527476 6142.326574492976 0.933186136167804 2.072371272218407e-05 54267677.65975994 1205.148381800137 132529 None None LOOM_20190730 25747177.52860994 2712.2307653225203 0.04179856581867671 4.394323262636501e-06 2171723.9103833954 228.3154149551581 20739 None 431801 KEY_20200207 5655675.5558778895 580.7072173424253 0.0020739257679520625 2.1297359356099963e-07 3420076.4490565136 351.2112067194032 23554 2774 278947 BNT_20190714 42788599.81099528 3759.4550718805035 0.6213159946035208 5.4558692162706174e-05 2162990.018638442 189.93540743016968 790 5130 145805 DCR_20190719 296748592.8443796 27649.80498855551 29.206954905635648 0.0027374016355922247 21789982.13932528 2042.250996053169 40596 9553 324578 BAND_20210408 401719116.671669 7132.161196602029 16.085339677698293 0.00028625152999718336 269610787.83202296 4797.940364769841 75683 4588 198232 GAS_20210107 22900203.94667813 624.7813540777225 1.6320556843655936 4.4217916297327124e-05 5804275.910965919 157.25749363597745 327863 101273 181319 HOT_20190812 169879328.38285807 14710.33343095513 0.0009774401371448343 8.459600948734892e-08 7160178.84433683 619.7029714944878 24141 6613 379586 POLY_20190520 42003256.871095225 5134.533956361325 0.09516043431445516 1.164608948216778e-05 6404923.45450531 783.85846192248 34917 5082 319300 GNO_20210916 443510182.21580887 9202.897786147121 294.72563583102044 0.00611518232922757 3230471.53257147 67.02817817442983 83493 2342 209821 NAS_20200907 16826806.76615209 1634.2203237721387 0.3689151485473945 3.5903414552154335e-05 6210724.918701173 604.4377204447494 23599 4894 894508 SNGLS_20190110 6336926.666589551 1593.065638165415 0.010750168923029392 2.69639265123368e-06 112025.48090386362 28.09859878694587 35619 2184 958733 CTK_20210804 68880499.2659491 1792.7233308384004 1.2299123708818376 3.201807359848833e-05 13970680.554417066 363.6960557536099 80755 None 93731 APPC_20190512 7817350.269834939 1073.264991191561 0.07338572825631869 1.007532351396955e-05 777741.5897775546 106.77822941142723 25645 3388 1192201 TCT_20210127 5882705.849095455 180.52205329988723 0.01017338204695096 3.1233769177389106e-07 652974.5448336799 20.04727249789893 None None 2451414 BRD_20190523 27438739.04418593 3558.340406878994 0.45754240868058155 5.933551239534225e-05 811524.7628965125 105.2410371463274 167 None None WPR_20190625 8331522.135059233 754.6052822298817 0.013709395949176974 1.2412357747506993e-06 977859.423904053 88.53446965325165 34836 None 1193640 SKL_20210210 116895728.76821934 2509.188727160226 0.20639777510060975 4.429655585264893e-06 28541125.505270064 612.542242485599 12448 130 222285 BAT_20200531 322992440.6853777 33357.36523440473 0.22049272483613983 2.279378753278126e-05 66459449.45035992 6870.35171542688 117889 39295 20395 OCEAN_20210723 163564393.83758318 5057.3513144512035 0.37726364372798327 1.1653460834480444e-05 11750318.781906817 362.96070929204734 117890 3271 115494 FORTH_20210506 310731864.91994256 5427.324012650031 37.73491225304018 0.0006582302381524397 55011052.48106804 959.5871836885605 27890 None 71804 HOT_20190302 185941111.35434407 48607.99806453082 0.0010457297816148178 2.735184995774894e-07 9190119.86300251 2403.745059248594 18609 5600 225640 KAVA_20200530 24947206.715033222 2648.829121320849 0.9105905264698126 9.713787400350977e-05 10958446.380102271 1168.9998443882132 None None 364805 ELF_20210523 136725689.76246315 3637.353810553904 0.2834662746976037 7.5478145036054225e-06 33542525.893250927 893.1318679610813 87882 33391 207854 ANT_20210610 166785240.94842303 4443.349911842153 4.737056042281649 0.0001262490302045115 42892575.53567278 1143.1458728835694 84432 3011 108427 DCR_20200502 164532960.41251048 18567.10151912111 14.356371298397425 0.0016255801473564837 21368218.28220794 2419.535598651909 40572 9760 293468 TNB_20190801 10965596.841243789 1089.2107231214584 0.003973276478829939 3.94100332212169e-07 615695.8568848285 61.06948334273029 15694 1478 836143 PAXG_20210131 112098195.0868884 3276.868014209648 1863.3512779833297 0.054532747759401215 2772198.70393201 81.13103226788125 14673 None 71165 MANA_20200718 51844992.766634926 5663.784357930793 0.03905837027196655 4.266915179029578e-06 10309541.135055752 1126.2614710161681 49316 7046 75007 ARK_20200321 22661576.937407345 3665.695746877949 0.15962016444494123 2.574314466892657e-05 2197559.089199047 354.41688553879 62642 21962 77737 REEF_20210206 0.0 0.0 0.03004893616815385 7.874135638309934e-07 98124076.98899391 2571.2800189384357 27675 1567 104266 LOOM_20200322 11763862.237403104 1910.2145699782948 0.014106308838133678 2.2891854473382866e-06 20418014.862419896 3313.455208086345 21569 None 494145 SNT_20210212 406743253.5454768 8530.067731763944 0.10497571675884702 2.198620539969298e-06 375314545.5366832 7860.620477227187 119533 5771 152018 STORJ_20190801 25151039.629835315 2502.0821204272556 0.17498787322084963 1.7398163837718896e-05 3994012.646356752 397.1045828046358 83831 7771 204651 DODO_20210310 404296855.65893674 7394.064856281416 4.101991759312313 7.491759837990483e-05 103864585.52829438 1896.952934349274 58180 724 41007 MITH_20211002 27942219.802659146 580.2729151888446 0.045133836476638135 9.370231459031247e-07 8149375.620247855 169.1891090353785 33264 2757 745216 OST_20200707 6712994.281846455 718.8074621572636 0.009707605971900941 1.039461575463385e-06 5048002.333898986 540.5250763293989 17641 754 819752 PERL_20210909 0.0 0.0 0.0882875033917039 1.9079770565267414e-06 8386467.805234024 181.23955874813282 None 686 3287183 KMD_20190325 117160790.39218517 29339.848322801132 1.0435760195815038 0.00026152341276052075 738296.1026724091 185.01931126791334 96133 8318 295665 ALPHA_20210128 256083848.80203643 8465.240189764134 1.4751070011777705 4.85118964121783e-05 460704313.88267374 15151.19915631565 26961 None 81517 DOGE_20200306 306300424.48076445 33812.51333002908 0.002478170023021255 2.7356526547271195e-07 85693524.53818743 9459.710823634854 138936 149768 115347 BAT_20200914 377817818.3357056 36592.72889883146 0.25744484615376717 2.4928784234702805e-05 122937941.48069513 11904.271781771396 122482 45600 16252 RCN_20210421 67856613.62988877 1201.0972338171557 0.13213281417335015 2.3434481333253584e-06 1725477.8247333649 30.602298246374975 19595 1153 909754 ARDR_20190201 50582626.39066948 14741.623973401884 0.05063328524572425 1.4756387813190917e-05 424569.51873867936 123.73505771476367 69947 6613 706633 PORTO_20220115 0.0 0.0 3.3236777724853854 7.706301584548835e-05 14137510.596018706 327.7932692801494 None None 209617 VIBE_20200610 2506063.226463471 256.36920628362316 0.013390249147755698 1.3699933781593535e-06 109652.58890159211 11.2188592636 18945 None 1004646 LTC_20210304 12584125746.759233 248362.76550267625 188.98233323970769 0.003729792268378241 7652020870.223525 151021.77960215765 147573 272946 91597 SNT_20190513 76612372.00293876 11040.647611896718 0.021737642208202363 3.127004258225404e-06 16593497.623628031 2387.008546325179 None 5756 311029 TWT_20210610 126263106.86902681 3363.82161191214 0.3638467826673123 9.714587453089366e-06 45758003.45401463 1221.7233940453523 858045 36740 2999 AR_20210708 523922199.922011 15418.277991858278 11.93123675701405 0.00035121782428006615 14195225.390204066 417.86247966135755 None None 93046 SFP_20210429 244335007.51977593 4463.7265482816365 2.2605006696784975 4.1283435547646476e-05 38923039.456891075 710.8499512037762 None None 25245 STEEM_20200208 69451260.40271305 7091.110155808549 0.20697897466139523 2.11187859592475e-05 1721325.9525551272 175.63288453612103 10526 3813 192787 SNM_20211225 12654914.24954402 248.64 0.28464361375185343 5.6e-06 548223.6097436209 10.78560019 33352 9785 None DNT_20210110 89455626.2466476 2210.578836419951 0.12306520615909511 3.0549914590383295e-06 55150104.46913577 1369.0555062368428 None 6368 301062 MFT_20190804 14247636.003710164 1320.1954367057572 0.0016046199936836378 1.486446060579868e-07 754668.7322611669 69.90903569244573 18845 2170 955030 WABI_20191019 6762827.415014572 849.9991741917436 0.11445249850739783 1.4383212093088632e-05 78439.67678870945 9.857491295329 36190 7917 1653961 AST_20210418 81757405.50493966 1356.7739734442528 0.4737227798597853 7.880907360840964e-06 4316246.968930378 71.80558747611653 41917 3645 173984 ATOM_20210112 1363616228.1862333 38495.209756299926 5.719331439346791 0.00016089614779671947 687464593.8224173 19339.743825949045 48356 10168 104708 ENJ_20200127 77991426.7069102 9086.584217647116 0.08672023232398914 1.0095375057020244e-05 8688680.351663787 1011.4766133570887 50475 14296 23876 LUNA_20200913 143359532.08026394 13748.244442134985 0.3294578954975908 3.1551536898391865e-05 6295507.451743955 602.9084091543737 11759 None 170396 WAN_20211125 181893975.0323233 3181.493011606588 0.946446094228033 1.6548391731857826e-05 7424798.509251559 129.82088996988915 130291 17355 223029 GXS_20190704 126212901.39941064 10526.15752928904 2.1028362791387276 0.0001752175047419287 7318089.746909745 609.7752058263901 None None 741418 IOST_20200129 68872146.52610935 7372.543744954537 0.005727835120035772 6.12576687139074e-07 40014058.58047122 4279.396828039425 192679 52321 86825 SCRT_20210127 86248938.56051065 2648.2750124915965 1.2355134917401918 3.793206923564698e-05 1124369.1277103713 34.51977488215267 64956 None 296261 EOS_20200223 3947685252.5751843 408959.26175558317 4.09397107840006 0.000424100829273132 2763561991.7947946 286281.68348612625 1458 70179 90022 DODO_20210806 201905206.22080028 4927.950691727505 1.4541568034317192 3.554014174369727e-05 95781993.19337836 2340.9481058390934 99579 1046 29473 CTK_20210718 46883614.382740766 1483.2151088707863 1.0295015541752126 3.257141230726077e-05 4357664.59835766 137.8679709168317 79700 None 108429 MDA_20210115 11191559.48938035 287.38889275192594 0.5729309082101458 1.4635496057875532e-05 808879.8832396632 20.662802744282576 None 369 3261426 KNC_20210610 191607342.36574596 5104.639133341712 2.0776825259887937 5.5377518969137286e-05 99706068.29170403 2657.5160637375056 165318 11055 129800 SNT_20190703 95139074.67473203 8837.570232477294 0.026958105101662834 2.497785789267073e-06 23241302.689237908 2153.4078661060003 None 5745 317609 IRIS_20210916 153416194.12078145 3183.4073034793355 0.13952598545420009 2.8953648603138823e-06 13581395.536743702 281.8334897481836 28081 None 632680 BNB_20190302 1623998558.2720912 424158.7468639847 11.254433050674296 0.002943664084860801 116289675.493588 30416.258166828113 922939 47759 1139 ADA_20211120 59842696071.68384 1029444.6682283402 1.8724046156739576 3.209963139957506e-05 1665910272.4045656 28559.588692161113 719906 660474 6543 FUEL_20191030 3355767.1676349835 356.60952105260304 0.0033899358303327615 3.60240544848646e-07 548888.3411300451 58.32907906411528 None 1495 None XLM_20210902 8362832480.178238 171949.20230932155 0.35373947948167644 7.267604475779739e-06 691647115.4243602 14209.94252347398 620095 199238 37510 DNT_20210511 217282107.30434328 3888.689816526964 0.28923832016896833 5.17648748967168e-06 24843839.8307694 444.62928011840387 None 9957 161725 WAN_20210204 77689413.3259489 2073.6250325739284 0.4746827189177208 1.2654993134459092e-05 4368840.20310212 116.47283663888653 104206 15795 443553 HIVE_20210731 168007254.69140512 4025.0893257111584 0.4415387145821858 1.0570351757716508e-05 210066283.29976457 5028.946349621472 22516 174 88435 FORTH_20210508 295806246.35979664 5161.918660950399 35.68489637118429 0.0006226663190378929 58302186.540325105 1017.315771560976 28109 None 71804 GLM_20210202 121100029.0534579 3625.611559901929 0.12110002905345792 3.625611559901929e-06 1611995.3152541737 48.26149832642342 146101 20305 190516 SOL_20210221 2615417098.0195026 46640.76533840167 10.044733825464117 0.0001786196901025693 151686888.40429655 2697.36017600711 None 4149 56580 XRP_20190603 18805608636.346355 2151507.4922122536 0.44594169185369104 5.0996971891215345e-05 1822417826.270634 208407.94291749076 924294 201444 40280 RSR_20211111 555943441.2933699 8560.590325049361 0.04234175803505732 6.518499039720966e-07 97903139.43994491 1507.2154535873533 None None 114031 POLY_20200417 12059938.309860531 1698.5732103478472 0.0193002676533062 2.7226173991762295e-06 1747737.8165473342 246.54691188776917 34790 4987 378789 KMD_20200129 72633057.97020741 7775.137326555794 0.6037042570799739 6.456455991901817e-05 2104068.376300373 225.02450026182382 99365 8411 193331 JUV_20210806 27763847.224178214 677.5575356076873 12.593384333509563 0.00030736987024317455 7922070.187717427 193.35594159361546 2588608 None 44064 PPT_20191220 14406089.505176581 2016.7634455000084 0.3978736507195759 5.568059844887219e-05 2347484.4441429856 328.5197159020323 23745 None 728318 TRX_20210120 2211844148.168651 61078.17322392036 0.0307100929405675 8.520667594159314e-07 1158453014.4283664 32141.853424210276 563969 77154 30212 EVX_20210120 7213897.531579209 199.20829296655447 0.3280971504910822 9.103218161324505e-06 230251.94421954532 6.38845438664245 16755 2806 915325 XTZ_20200530 2042279552.689777 216576.2030890002 2.8752373139985 0.0003050734926940307 89197697.9528718 9464.21122258849 65237 25684 103096 LUN_20200407 1762147.5098422577 242.2808722946852 0.6606663379708533 9.068865987088986e-05 2663218.5176890413 365.57594118441716 None 2146 2462612 SUSHI_20210930 1830949129.8974633 44070.116310387 9.511598851733565 0.0002288256143183017 361145740.40141606 8688.275987451914 142209 None 4348 TRX_20211007 6845844415.724512 123328.08231472237 0.0955676735908368 1.722744225507789e-06 1770767122.2632537 31920.614157239044 1161851 117997 33166 IOST_20190804 119586084.92339607 11083.06778235765 0.00995868795506545 9.227786553804665e-07 44693698.902199194 4141.34789271844 196865 50555 101612 TRX_20201201 2320261920.8906655 118016.69727515888 0.032243706394538746 1.6414211419893156e-06 1022464009.4714342 52050.28297720252 546632 76227 28768 MKR_20201018 504964874.1966493 44453.85011428008 555.0233330875515 0.04884190652885036 19946749.77949772 1755.3087054286316 68461 17134 25138 SC_20210418 2692759940.298641 44668.90448636697 0.055805541143854435 9.283874845674283e-07 4435595719.39473 73791.08719458074 3165 39751 54045 IDEX_20200927 33233204.68860809 3095.0239602928987 0.06226251188145474 5.799979971247939e-06 607391.1517264164 56.580700139978404 40119 1965 18595 LTC_20191113 3894442140.0514517 442815.57522833615 61.19324551856555 0.006953402843881886 2835140215.904013 322157.6478418658 450615 209590 138607 BCPT_20210117 2487063.323460761 68.53361353 0.02135556131459572 5.9e-07 222376.46585201903 6.14369779 10408 3217 1711405 BTG_20210219 467409328.2827892 9042.981970664252 26.885314880857056 0.0005200209290538881 57724540.65363995 1116.519162707975 84625 None 210051 HARD_20210220 117859534.81386617 2109.768474790297 2.3123785956683904 4.134131485296191e-05 36117681.94171048 645.7214505048623 None None None ONE_20210314 504505121.1764342 8214.3582986271 0.05374545338242123 8.761080905622465e-07 267113804.09337786 4354.239291683219 None 5581 108360 RCN_20200217 32941143.57556906 3304.394967431212 0.06443590100088938 6.4769878577868795e-06 3514681.2928987527 353.2898229789897 None 1142 845670 BAL_20210828 293111148.7690489 5976.406754119871 27.15954449643385 0.0005536600736223748 39253633.44236424 800.2037583693182 95870 None 8467904 VIDT_20210826 25967629.916401125 529.7792838244251 0.5610051536749163 1.1446573348507275e-05 2546950.8073208774 51.96718611239698 29746 1625 1187246 IOST_20210916 1812063452.909385 37600.5679414669 0.07979869263594742 1.6556401389324206e-06 921989902.3050053 19129.179182302832 259319 53792 221076 VET_20191011 235894710.07900518 27549.829454636336 0.0037425527714661138 4.370877606553186e-07 37602679.51480887 4391.566929683906 113815 57589 285376 OST_20190702 13941579.269684095 1313.3799605329655 0.021837157817991816 2.059238287135467e-06 855816.8090718003 80.70330189960693 18166 754 618395 CMT_20191024 11778933.632527184 1578.3121037315657 0.014728612873264553 1.9728046116823624e-06 2610114.8909916463 349.6083941018005 290722 1653 883595 NEO_20210418 6665376751.041741 110568.74138766124 93.79669472375846 0.0015604127420045402 3799635173.264342 63211.173451173956 377516 108444 88657 RDN_20191127 6595315.618328046 920.1368132450472 0.13079302599014783 1.8275271981761027e-05 2186479.820458236 305.50951091624887 25323 4359 2199952 OST_20210519 20030183.51507317 469.4363412067911 0.02869939675117175 6.708463881800228e-07 706276.6481293307 16.5091671633868 None 773 522637 HARD_20210107 21009461.06682308 574.0710189002784 0.5262071311758071 1.425673345847451e-05 3866692.0383996363 104.76178388971934 None None None BLZ_20201208 18765408.936205003 977.2332144266712 0.07413276421239126 3.8611057296900855e-06 3889351.802646682 202.57167919646318 42757 None 308219 DNT_20201231 34864925.83065179 1207.3580219603307 0.04626608652661173 1.6043328868687114e-06 2702086.1987054455 93.69812917381158 60194 6151 304001 AAVE_20210314 5193069571.22262 84648.58834604578 415.6202888790838 0.006775053046773263 1003862042.3232929 16364.019684229448 148825 7257 14216 FIL_20210201 1052624446.4618396 31841.3036850816 22.227610787381238 0.0006720952468411903 103409399.27386585 3126.7852580055182 None None 48258 GO_20190410 20481348.257566944 3959.1306891649606 0.02961951384961352 5.729859511457128e-06 1682042.8326232801 325.38917323622945 9128 645 935336 POE_20200418 2480854.2721895836 352.39763741441965 0.0009855711513611922 1.3999731831767676e-07 31262.973712555347 4.440808232210306 None 10378 1042825 LUN_20190622 6576087.561151387 649.6336253385807 2.461046378704286 0.00024324646773422952 991724.0128881321 98.02064893602711 31324 2225 2294680 POA_20190530 9078812.339930193 1049.8617169015922 0.041234202617774406 4.768474251977036e-06 1320912.0772965204 152.75511177215844 17499 None 639132 FRONT_20220112 40416200.032364026 942.7888666261248 0.603663843469915 1.4111040839291919e-05 6704296.757387115 156.71736242877498 130914 None 235352 BTS_20190916 91155673.56834497 8846.697658122146 0.03363434742476288 3.26422800630202e-06 8059926.710098649 782.2193831676873 13572 7143 140611 OMG_20200117 107978434.70050472 12408.004184702822 0.7721595669998973 8.861609577435315e-05 67672649.8105927 7766.381811753867 283693 42796 415405 LTC_20210724 8286163795.152425 247891.49214516938 124.2342238711515 0.003715430974632763 1349797069.533161 40367.92508007606 188881 339152 73316 BRD_20211011 14530015.475805152 265.50846550937086 0.17084744757488182 3.1221496655380288e-06 422885.28674203483 7.728012184577179 None None None TOMO_20200224 40828988.58079603 4103.804682326576 0.5850316704965753 5.879311649549284e-05 44113723.81093931 4433.235726990841 21893 1492 222271 PROM_20211021 316146546.8629968 4769.639598316072 19.186067621537507 0.00028955446972527633 13361169.095900657 201.6456060089312 None None 615832 KEY_20200229 4365175.981303241 499.4396466841886 0.0015251125624881126 1.750369480736339e-07 2140802.307015604 245.69957094686683 23529 2769 278947 DGB_20220112 429305597.74684495 10034.490647267434 0.028615048612895867 6.688415878670355e-07 16074098.627782892 375.71229723134246 238300 44514 101891 NMR_20200913 195535169.19227976 18752.251081024508 37.71315981507964 0.003611715395872599 6389625.109513404 611.9218727637916 20568 1849 882883 STORJ_20190414 35782822.996191084 7053.232645112217 0.2634757104813776 5.192571336265781e-05 2633324.8927205927 518.9748737002674 83980 7676 204987 MATIC_20201208 92266017.39989027 4804.873534734513 0.01926493478385409 1.0033883245326446e-06 6097664.344337713 317.58868009017203 61126 2527 53432 ENJ_20190614 130285183.95930003 15844.891570347047 0.14944156639068173 1.8164553179407037e-05 8133078.140553433 988.5718810664682 46301 12586 19644 WAVES_20200421 97324673.25332728 14212.64742481443 0.9724309647249628 0.0001421140218156017 53967903.796415746 7887.033769677778 55 56855 71676 WAN_20190920 27419719.160726406 2674.0370388706733 0.2584755337203281 2.520413384918244e-05 4708838.805076409 459.1622340773842 107948 16820 408901 SNM_20190618 11445989.29059847 1227.8997272157094 0.028233817928639927 3.0302452775707965e-06 497311.53246354946 53.37485445779951 31345 10003 15028658 KAVA_20210902 744763512.4645615 15313.246912514274 8.155257973206021 0.0001676131590053528 224004916.0066545 4603.922000746202 131073 None 47968 DOCK_20190811 3125581.346915625 275.8093890328301 0.005675810687551705 5.011901923672718e-07 1143769.0157125792 100.9980502461025 None 15209 218357 ETH_20190507 18328559385.30721 3203670.929974846 172.8283284518378 0.030212571345086356 8296752441.893426 1450376.9568834193 441792 436296 36863 XRP_20190613 17027842290.850485 2096268.6426030954 0.4009998907280815 4.931505568620871e-05 1448401396.3600838 178124.72563967702 925700 201749 40280 THETA_20190110 35456472.54664438 8915.467712971831 0.05009909129332326 1.2598495026402352e-05 1545164.8354986352 388.56496180791424 None 3816 533295 ONG_20210826 0.0 0.0 1.17556593794854 2.3985879000555734e-05 169986209.45820063 3468.345347724769 143181 19894 180960 BEAM_20200725 29495951.260016315 3092.164801811618 0.446920030142728 4.685852790221066e-05 16447670.594489235 1724.5000883762336 15523 1540 344672 MATIC_20190509 7116084.668899641 1194.6053218447523 0.0032943096729554943 5.530288143305367e-07 2146002.827990107 360.2579955540752 8677 72 593763 SAND_20200901 37134889.26550639 3180.564101748125 0.07016845064094356 6.018745851374081e-06 20469000.79594505 1755.7422530643807 None None 106488 FIO_20210704 53540031.79068875 1544.413934247876 0.15993798747993812 4.6046064001512854e-06 1876744.338788224 54.031372596306554 None 481 108144 NEO_20200721 734073815.3344494 80123.43048656089 10.401538576842531 0.0011353849732858917 139362127.5813412 15212.140428270948 319907 99820 192818 WBTC_20210127 3751929075.736043 115135.10244466217 32516.631856622105 0.9983081035871058 369586157.10332197 11346.83497469076 None None 145403 MBOX_20211216 509208977.02183676 10437.5790226967 5.4870744197431405 0.00011228049740584228 116030798.20418078 2374.306368050352 252555 8265 7517 ZIL_20211204 1060833474.7341995 19756.714137960702 0.08261133809778819 1.5405734602897265e-06 92020748.63442464 1716.0443881731806 359246 39432 43413 AMB_20211011 20324872.461064767 371.2620070507067 0.03434084854761584 6.274171824997908e-07 633257.936810781 11.569804687806268 1545 92 718802 ZIL_20200730 195683271.1816275 17622.959694484787 0.01768502340811098 1.59336674968686e-06 38670801.539740056 3484.121447580419 88365 11695 88835 SUSHI_20210813 2318799251.059942 52155.48150551872 12.110421797378223 0.00027237471378450365 524281085.15540695 11791.57199485387 122215 None 5495 STX_20210220 770160369.2088029 13789.952768913634 0.8420706588346855 1.5051097657187377e-05 21372691.131611653 382.01362088064633 51797 None 59729 SC_20210617 729813309.8073881 19055.727921314647 0.015183381756939628 3.964443889931986e-07 39093463.07423055 1020.746519464144 137865 46830 46227 BCD_20200425 99167571.24004981 13225.31719934437 0.5268006655413545 7.028447108241538e-05 9383773.692876082 1251.9603977400538 28751 None 812794 GRT_20211007 3564361973.0103602 64216.254891648234 0.7189734017882208 1.296052555937815e-05 148153416.70993483 2670.6775788958967 148878 18223 26654 POWR_20210511 167708221.5648945 3001.467821893758 0.390279707028557 6.984821443181666e-06 10070128.414857915 180.22471479037438 90539 13715 209298 EOS_20200621 2378713569.472975 254234.40424709496 2.534610096620652 0.0002708948841206681 1450588602.4012856 155036.48149992788 190313 71600 89691 AE_20190701 148026974.4317562 13614.77808292548 0.46815773700429025 4.314924516846486e-05 26025595.881567363 2398.731727761338 24788 6363 357340 SYS_20200314 9127965.98588926 1643.8117151881402 0.015712078090832943 2.829512957825283e-06 245488.3110381504 44.20881522237053 58824 4510 856942 GAS_20201224 20344338.702942837 870.1589830666886 1.4507402314505675 6.222216179636538e-05 2491632.3297082125 106.86596166230457 325919 101150 122618 BCH_20211207 8979957348.216293 177910.12563027153 474.9612785328187 0.009405543459180338 2672039101.2368755 52913.74481925487 None 714154 261287 DOGE_20200610 319414770.35955983 32709.244395515943 0.0025570123462542306 2.61847445757851e-07 110545343.9979969 11320.248808615068 140558 157007 103614 AUDIO_20210422 271421052.51983744 5009.301521769009 1.7538117994775715 3.2407021872727326e-05 29711635.97426569 549.0130909025476 44048 4737 38976 BTG_20200502 179255526.8221939 20229.439310048765 10.220484715675333 0.0011572713400089347 47043725.24492183 5326.787962385352 75129 None 196262 PSG_20210110 0.0 0.0 10.745304092334983 0.00026674324328856557 4555898.0384553345 113.09638223607608 None None 36186 TRB_20211216 73779368.26119669 1512.293982753429 31.746126639567752 0.0006505576562137942 9821561.23208774 201.26839182779318 None None 346717 MITH_20210324 27795185.352020618 510.0749844012447 0.04500498127197138 8.255984884858955e-07 20062260.92314568 368.03420034026794 26647 2330 348681 BAND_20200927 157434507.4247578 14661.37831307324 6.973508830029463 0.0006496077707320812 71689121.71038938 6678.103043260953 35754 2581 112782 IOST_20210506 1397908341.2675076 24418.600163596868 0.06206827799167874 1.0826901393121157e-06 398811959.3749532 6956.690113311896 244046 53229 140464 RLC_20210806 240673938.81430313 5871.433942278185 3.361839419727744 8.209149744369391e-05 21893754.660086013 534.6153936337819 46217 7764 152995 CTSI_20211221 308790819.7128914 6545.134988531031 0.630407499575041 1.3376033142269428e-05 17348557.34805211 368.1029781760774 65815 6708 97392 AST_20200502 2777643.289325664 313.4495654093492 0.015746052383571827 1.782934532824941e-06 163339.87737301658 18.495067897753387 31664 3454 336637 XMR_20200309 998922117.440236 123651.98436715298 56.3259305275865 0.006999301739605732 134676213.90990978 16735.44403925068 320786 166577 88356 MDT_20210610 22413761.38894255 597.1282838054418 0.03681088123497668 9.816357680722708e-07 10455066.374458821 278.80525449053295 33009 307 392405 POA_20190806 3747172.6269026077 317.24071065722904 0.017012671480999716 1.4413513769545605e-06 217567.26972528882 18.432783125743505 17768 None 707962 SUSD_20210203 185755901.85421714 5215.27974918013 1.0041688683587757 2.8265970618686632e-05 36282043.93925974 1021.2895662152704 70291 3881 30058 CVC_20190522 27007086.938894063 3393.7320441421675 0.07881891120742064 9.904918086654396e-06 4517154.746338574 567.6562523108455 88991 8190 437048 FTM_20190702 52591702.298772275 4954.452186039046 0.02549725721531491 2.404384705754073e-06 18728577.293949522 1766.0999544318663 16475 1895 411389 ZIL_20200310 60593908.33124073 7653.408980430155 0.005886323030437401 7.43748348764077e-07 18786920.524528112 2373.7639008645174 68634 10568 224303 BTCST_20210825 166837340.3705843 3470.7546938880414 22.81643306046355 0.00047563251622578616 6547978.2533326605 136.49948546168886 None None 1726916 EVX_20210115 7199356.620348683 184.33471883174056 0.3306931283891721 8.430631024895914e-06 209090.4377907166 5.3305139433468876 16728 2809 1350138 ZEC_20220112 1705820017.9751198 39791.67066985765 141.74407192177497 0.003313093450142665 292109968.3657903 6827.711450593707 84604 21737 107256 ENG_20200322 9078407.213559305 1473.374766310676 0.111168687339557 1.804056214687863e-05 649347.5166810388 105.37674330744031 61148 3601 414852 HBAR_20200224 141808273.3437385 14253.507501846134 0.04275046665859108 4.2962343634521935e-06 10362277.810817102 1041.3634632342469 37194 6297 142339 TFUEL_20210930 1384027285.3839278 33313.67718950778 0.2552783303711671 6.141076804576511e-06 16306721.221247902 392.2809558684408 199784 24195 23104 UTK_20210723 81868711.89355232 2531.35066864502 0.18208720917417012 5.624377523649198e-06 4512392.780305923 139.38046854874705 77432 3989 165733 MDA_20190410 23047905.384076033 4456.371385601397 1.2961330450082897 0.00025073538660228694 2418398.0442804536 467.8362078076606 None 360 1539394 DGD_20191019 25605404.661475826 3217.3395365882975 12.802708732092285 0.0016086705726294354 1148905.0729149424 144.36083958624118 17338 3357 576212 OAX_20200330 1454910.2391075836 246.0437129994513 0.02792077067581421 4.730181255456253e-06 108000.00051307878 18.296757777490452 12024 None None ALGO_20210624 2574341683.429692 76357.35878139768 0.8336556261101493 2.4745756131208333e-05 328006798.40752804 9736.365938827897 112419 33879 188992 KMD_20190302 113009459.88056788 29583.558059220617 1.0108726375853716 0.00026438872581535693 2621777.940823193 685.7130199911202 95168 8303 269004 BCD_20200610 113063860.63539995 11568.755780131378 0.6002791596972057 6.147078833570664e-05 13879415.548070401 1421.30307473795 28301 None 975447 CDT_20190401 6867206.216676497 1673.524503249252 0.010179985356538811 2.4808421939499226e-06 603645.6557012552 147.1072462689089 19695 287 420503 BTCB_20190804 0.0 0.0 10793.389153747976 1.0000804371643146 86204.61253813327 7.98743984532235 None None 55533 HNT_20210221 286241478.2065283 5123.0201445729135 4.1537625280512485 7.388748001422075e-05 7710385.229065281 137.15298615825805 None 4204 50086 OST_20201030 5824764.541825844 432.4216075379987 0.008491496824082142 6.314953398082314e-07 2738523.624376829 203.65842943545402 None 746 699456 WIN_20210909 414735037.1690898 8952.045526250733 0.0005403462129958426 1.1671319456768294e-08 54873518.835168794 1185.251885992536 None 13517 177892 WAVES_20210201 657230458.2341356 19883.56787834851 6.5464651794279245 0.00019746834980322687 107581999.60017042 3245.116157699248 155868 57335 119606 LOOM_20191102 14008213.921882385 1514.3489722535992 0.023253135438426706 2.513765277231243e-06 2543877.20457744 275.0042119412138 21124 None 337394 BLZ_20210708 49846471.35036024 1467.0494093465027 0.16915312080834422 4.978406279288325e-06 20329319.634457417 598.3195109744007 64471 None 284185 ENJ_20210201 317379819.9084478 9601.87269671471 0.341432841043723 1.0296584123076718e-05 72907550.9537827 2198.6717191829625 76599 16749 66239 ZIL_20190729 97657360.4468873 10242.182714714767 0.010630192087792914 1.1150970072387326e-06 11231686.750586387 1178.193223451165 65669 10613 174377 IRIS_20220115 115831365.51038416 2687.41938738267 0.09714225324020553 2.2522717641471687e-06 8437609.593102913 195.62846454108836 None None 695613 YOYO_20210124 1854580.542742114 58.05054846866186 0.010628749641163494 3.3165807152736804e-07 279355.8755960161 8.71698309754071 9375 None 1925232 WRX_20200310 37842122.58676764 4779.612288304621 0.2034357293108554 2.566954630093729e-05 91046840.22068702 11488.301924721218 20249 None 24445 NXS_20200423 9191300.564096563 1291.9568952158888 0.15393779917273512 2.1637960774827775e-05 26213.176651228412 3.6846030748201835 23668 3526 498708 XVG_20191102 60771175.87172217 6579.593661087666 0.0037918845683180716 4.1054100585358164e-07 1843299.051487308 199.57090809391818 300721 52474 272884 AR_20210930 2366437739.020092 52810.94202412789 40.66224060245973 0.0009778005024205496 70557869.06985186 1696.697447165543 None None 62253 HBAR_20200305 140304635.32029325 16027.199986470469 0.041570766371304455 4.7461567925154225e-06 10720672.461684655 1223.9849506233923 37495 6315 124891 REP_20210624 74934924.23854811 2222.7952407397115 11.521147790603736 0.0003415576509880498 25794214.01521203 764.699082786193 150859 11204 150117 WPR_20210707 10195587.941634495 298.48472626027007 0.016734247650090177 4.901653020772854e-07 643929.4732612018 18.8614326366709 33797 None 6439074 NEO_20200315 404377746.2377973 78232.71192091818 5.750784095000506 0.0011070949073651699 410432479.7416101 79013.17466155974 322693 98957 240012 RCN_20201229 19754453.26460279 728.5559071869073 0.03875535028250709 1.4278339342112631e-06 494878.90875823976 18.23244775494631 None 1130 2745170 STEEM_20200901 81713961.98418564 6991.193448464118 0.22650158953230334 1.9404190844626695e-05 4536128.030666809 388.60607638325706 11709 3862 161191 STPT_20200927 15467471.893090755 1440.505055856424 0.01890476727509749 1.7610479924971996e-06 2575425.1845425274 239.91024512847164 15601 None 880193 REN_20201124 321421184.2977608 17550.612194947546 0.3654339279486529 1.9904655040251175e-05 75806869.52502918 4129.0900274291225 28162 970 94247 ZRX_20200320 104585466.34390739 16898.87703026996 0.1626661745947864 2.635114003805559e-05 43757628.47590372 7088.525924791156 152742 15969 132419 TORN_20211011 79269729.97006501 1448.9210498787722 65.14053377902091 0.0011905666696723574 74111078.99321102 1354.5203790023108 None None 97574 VET_20200607 470544519.9081655 48662.668911572204 0.007303881693074564 7.553512187725579e-07 213749049.15455085 22105.45180974868 121217 62474 306632 ELF_20210202 66087975.69569296 1979.289869397698 0.1437513703286636 4.3037696529806395e-06 20061229.2581201 600.6127766656069 82106 33303 465986 ICX_20200315 96405351.54062214 18659.3183466862 0.1829857739468235 3.53928228196734e-05 12598552.50535521 2436.79236362915 112533 27527 143772 UNI_20211021 14116940632.190317 212982.11343927006 27.061804141763936 0.00040978744762207217 282780675.53800875 4282.048996383456 None 54482 2859 AERGO_20210527 58286784.19409071 1487.6867510112536 0.23458854598707823 5.984280826562478e-06 12408364.580660116 316.5335201537566 20752 None 380150 ICX_20220112 685773454.1228445 15997.040222906418 0.982125009042252 2.2955964863736393e-05 38280982.86489353 894.7709196945874 160258 34766 278401 FET_20201228 36848497.41724002 1390.174560464645 0.05326413355595478 2.0253823936678246e-06 4232144.640276836 160.9283896990015 26454 721 356196 BNT_20190329 40463551.07463187 10050.330359068439 0.6219576683928204 0.0001544817464283973 3595717.3204961726 893.103694289137 837 5138 160609 SYS_20210703 82245661.11130348 2433.850537209989 0.13413823237874378 3.9617921290814715e-06 6714975.203080735 198.32776558011517 74114 5453 378699 LIT_20210828 145649290.2032216 2969.305129075535 5.253802908186739 0.00010712120987279314 18544832.708854754 378.1156147988603 55133 None 606433 HC_20191216 51471496.4916002 7232.928199419342 1.1560602827454671 0.00016259181355387516 44617604.066126905 6275.15473874087 12821 846 1381561 TRX_20210408 8072075620.142329 143307.7539274653 0.11143087999764008 1.98191220961095e-06 8323619560.720927 148044.09007537868 712135 93626 23802 UNI_20201031 509800102.67010105 37535.914664153126 2.4099935458731143 0.0001779446520523223 219373066.75671974 16197.663309315192 130893 None 3215 XRP_20190903 11191359716.170008 1082272.0863767937 0.26035708366907917 2.517810268741355e-05 1167199958.786681 112875.28652928339 938041 205055 31314 AION_20190914 26467738.662806846 2556.6889619036297 0.07671203661563814 7.4101085762930855e-06 1150221.2089752767 111.10725801698227 67369 72563 168998 XMR_20201014 2270584455.66132 198748.63635317894 128.03856274074178 0.011205508909779772 363446395.98776793 31807.619058600867 324667 181258 87353 IOST_20210105 104118673.66669782 3327.932429898225 0.005668921234004081 1.8119503594113722e-07 57634825.75395953 1842.1748852865362 None 52142 596701 BCPT_20200412 1703630.2307531014 247.5349876801971 0.0146636670579403 2.1310074751477405e-06 70916.67782937596 10.306014857669 10632 3167 1858149 ORN_20210108 42725821.21538554 1090.7343996437673 2.568131039586036 6.507789791303151e-05 6792567.527819452 172.12751581946605 31281 None 137368 THETA_20210427 10618191905.03432 197097.3528176157 10.74847285704191 0.00019939246532444828 757971077.4531729 14060.948358724332 147366 15113 21480 QTUM_20190131 152940161.5631047 44182.66841676532 1.8830656654871774 0.000544297198184964 114927778.57992561 33219.69542601774 174234 15200 244908 NULS_20200629 50629732.83389288 5551.6042359948715 0.5259382350885323 5.764223497843933e-05 34508704.018757194 3782.114881827856 26619 5173 775098 CVC_20210707 188971059.73881757 5532.292532823921 0.2815256715367808 8.242976036772417e-06 45351617.74767258 1327.8799630679052 103555 9836 166246 NULS_20210916 51981159.25123848 1078.6162631139066 0.5504597211760847 1.1420778701255649e-05 10827387.68520748 224.6435005294402 66724 5420 281468 SNGLS_20190706 7798501.10953303 708.8687219356681 0.013205023816405577 1.2003112167827836e-06 94778.29979670736 8.615164799040539 6 2180 None ZEN_20201226 117900236.89988162 4774.234280714363 11.227055835255856 0.0004553082610419992 15053440.366237096 610.4855855733483 79989 6292 401562 BAKE_20211221 201613574.83388087 4273.404449118612 1.044732616133871 2.2159660187369042e-05 12964867.053686926 274.9957681490675 None None 29841 WABI_20200117 7382847.096389267 848.2114408950858 0.12562611649166774 1.4423659844151106e-05 1158996.5882806738 133.06924560547768 36813 7844 2320940 RLC_20200502 24186097.356120136 2729.3359569812 0.3429783885652312 3.883563944087981e-05 478050.66014448163 54.12995013916073 30505 3582 510441 RVN_20210603 771584188.1493974 20505.05194324391 0.08637983821522824 2.2940575880005545e-06 115838610.84732066 3076.4174799171005 63139 40797 45441 QSP_20190401 0.0 0.0 0.025929225307601327 6.318900661110818e-06 1233142.7154476484 300.5144283119722 57046 8542 846011 SNGLS_20210202 6469904.076656482 193.80435530667583 0.0072725810882981 2.1775196032727976e-07 834314.3406838673 24.980619811224212 9050 2114 2522161 UNFI_20210909 48095029.00178031 1038.1300122341713 10.261850730788534 0.00022165296103893607 33606449.31892852 725.8894323220246 21896 None 227824 LUNA_20210828 13105641433.802717 267218.2355088995 32.63522744066654 0.0006652844428173266 1576911034.4309208 32146.072241145153 113563 6267 18941 BEL_20201130 14619622.857626678 805.7699691846426 0.915405115095021 5.038074761590263e-05 5723236.8832274815 314.987264332665 None None 182774 XRP_20210506 74138782426.5491 1294642.7537762823 1.6140228560739238 2.8154263134702953e-05 12685436992.408918 221278.85594615008 1589660 302725 11015 IOTX_20191022 18822959.77951614 2292.1440313005496 0.004349629871285094 5.292650386126053e-07 2006499.7627768894 244.15184874306001 22542 1777 522982 GAS_20211221 79414851.53871013 1683.7385394236853 5.694406213039425 0.0001207831599215883 6651639.699525882 141.08688974961572 431905 115622 78285 ATM_20210603 24565177.491263993 652.0244107930016 13.02422014532155 0.00034625409176816316 10053993.595829055 267.2894332500375 4989227 None 91720 TFUEL_20190807 0.0 0.0 0.0064801173455921795 5.65885644418615e-07 1599254.0477622177 139.65717889701253 70418 4023 242693 XZC_20190905 44311788.61049781 4195.428222479489 5.343283433711187 0.0005058430186317817 9139408.907079656 865.2182216088021 60809 4045 177313 ONT_20210120 535046276.5417084 14774.842607462178 0.6626174749369924 1.8324966742156362e-05 307737388.5425593 8510.607739249079 95604 16678 273814 POLY_20190813 21671172.576901935 1904.1534886529125 0.04366458505599926 3.837065931376058e-06 2304946.0309266946 202.54927139664048 35251 5069 295167 FTM_20210725 494979954.86953527 14487.661958755194 0.1948167599808485 5.702040092552511e-06 29985614.72929094 877.6410068777358 None 9279 42722 FUN_20200308 20160001.61799475 2268.1291379894947 0.0033888668472383636 3.807530800889591e-07 405201.28674174746 45.526025346394526 34987 17025 312525 TRX_20190524 1794112873.250745 227746.82013420886 0.027180390397477154 3.4562383859926145e-06 780054932.2105823 99191.20956185108 421457 70620 115818 BLZ_20191020 5419293.6996249845 682.1354026741767 0.025841676195070804 3.2506943068611957e-06 159047.7846200612 20.007050784187804 36381 None 563370 MTH_20210708 6807917.450613617 199.9027462897461 0.0195419714640144 5.751604397062234e-07 181498.05118429047 5.341861189246398 21821 2056 662461 TLM_20210511 617895693.905081 11066.76088893615 0.5076156732471117 9.084778879195194e-06 284067566.69711363 5083.946706543097 None None 22915 ENJ_20201124 141656163.39814785 7734.99045037129 0.1538987147817055 8.382639362643626e-06 11288693.131886462 614.878711198991 67173 15972 80924 WABI_20210206 8901599.195736252 234.8644577633624 0.15070709398307572 3.949185066112007e-06 2905471.8609851724 76.13607150237964 40814 7428 958104 CDT_20190716 12798569.665618869 1170.3591586684279 0.019057135581160255 1.7447254318554629e-06 892589.3567502204 81.71864781531893 19827 297 299913 DGB_20210805 755447566.2312688 18977.277337687014 0.0518236609272115 1.303250771575311e-06 21563140.52001084 542.2654250490267 223154 40643 115108 SC_20190302 94714529.98807868 24794.320757884834 0.002416519545162012 6.319707836440345e-07 984053.2995420772 257.3506744872657 109134 31153 214151 ARPA_20210420 105280785.25601575 1882.5679596209218 0.10704675929701027 1.9139321282459086e-06 31645651.933064483 565.8053578803759 38305 None 501259 YOYO_20190405 7016835.541189442 1432.504325601454 0.02403025870270852 4.905836731512839e-06 553568.2575673821 113.0123285384159 7313 None 1373234 BCPT_20190623 6532344.74119673 609.3056794181158 0.0563117286862742 5.249770780396735e-06 1487268.957727403 138.65355049509532 10945 2789 1175613 BNT_20190207 29285346.29987272 8596.80308951437 0.45950414046378957 0.00013486663193470154 1764975.0782993678 518.0285079012905 853 5099 111486 DOGE_20190807 355302385.00540656 31080.493692860844 0.0029586688362121627 2.578649240782977e-07 50345242.4243398 4387.876046335904 137994 138454 127721 GO_20210201 13791800.585268445 417.3229819140489 0.0132290879943632 4.0020629787639087e-07 2103922.213298978 63.64784332548521 13583 683 754202 EGLD_20201231 361743042.1669513 12527.98202495161 24.15427998660757 0.0008375790703382668 34465427.50820164 1195.130666165009 113675 3072 49663 MDA_20210105 10630144.27366404 339.7700010669514 0.5471443440896279 1.7488307739687092e-05 890428.9855374347 28.460672741351 None 369 3261426 CTXC_20210210 1634414.9564419817 35.150231435416195 0.16260018477355195 3.4909226952660663e-06 9069353.731725197 194.71326442567036 17448 20113 607104 XVG_20210325 473371240.711265 8984.850735621098 0.028794618191729335 5.465379477915781e-07 23662731.854500685 449.1318766857561 297453 52733 128477 BRD_20211111 16221764.743845304 250.30330833844263 0.18944405732606326 2.9181289479670102e-06 350824.8392901877 5.4039811733789636 866 None None QTUM_20190530 316168215.3941957 36562.82156183025 3.3017981862783574 0.00038183173399499983 346387396.03343093 40057.47553291174 177566 15297 449132 VET_20191022 210244363.651881 25602.262816481943 0.003338281109722432 4.062036386362604e-07 73216554.36183791 8909.025277580946 113864 57578 368784 ELF_20220115 195845505.19802833 4544.515237354703 0.4256864222400091 9.869993948829863e-06 15905311.817298323 368.7816270129368 95254 33578 101897 OST_20200105 7169972.442304191 975.5707688805344 0.010443037251262709 1.4202264281596108e-06 106495.4464449297 14.483109068815939 17885 755 561579 MTH_20210724 6409527.951204857 192.00780698365594 0.018520614964454115 5.536982039499691e-07 137611.245981026 4.1140696401955195 21795 2057 970963 WBTC_20210511 9695775409.049986 173655.24495994704 55946.06094537487 1.0012645779817848 963734375.2226892 17247.91837330701 None None 227802 CELR_20190613 57301668.38548904 7046.971913663837 0.0201462743289372 2.474329649641478e-06 48588556.72938892 5967.560283646563 14886 None 333919 STORJ_20190411 41715472.63805229 7854.836146207063 0.30708310435171543 5.786201658873883e-05 3837108.8185898853 723.0057628300896 83966 7669 204987 EOS_20210221 4564341952.695472 81729.490243668 4.887540428667085 8.693094399207002e-05 4821888565.105481 85763.24450036365 199421 78309 58943 XVG_20201014 73982441.17876895 6475.825755654177 0.00451337767224527 3.950035052761873e-07 1461526.3764633427 127.91042179047949 288598 51369 271694 DCR_20190725 275817190.46396136 28058.481008361654 27.139707595783296 0.00276769662974014 19504493.19555779 1989.0604897497892 40581 9551 324578 BNT_20210204 256647460.8245867 6848.299564291215 2.236578734850361 5.9626962192222926e-05 113025541.01064257 3013.2494580156267 91792 5395 79308 WAN_20210428 301798905.18505025 5477.813371851609 1.7187764741766491 3.1190608424883694e-05 17240687.640453458 312.8664752214011 117589 16329 185285 DLT_20190719 5009992.563881069 466.7214471993176 0.062053569457838346 5.790602528399329e-06 320486.50063581637 29.9065784146474 15087 2672 2867435 PIVX_20210519 89963529.30124274 2110.6146135626977 1.3808531860007565 3.2277346470624464e-05 1617492.7419656077 37.808779510695715 67637 9750 215211 EVX_20210201 7525263.102502654 227.70523821078345 0.3479277819133042 1.052297866704716e-05 2604781.4446120923 78.7808878705849 16848 2810 1099607 KEY_20200129 4191543.7620716514 448.6913985329252 0.0015423632953947082 1.653479529919284e-07 1484665.6491396641 159.162518127646 23549 2774 347689 VIB_20200701 2773419.166071749 303.1649564043708 0.015187633703196514 1.6605966452919575e-06 337934.63835261756 36.94934561518944 30795 1101 None DODO_20210618 164675418.05360094 4332.249916064526 1.2675855521289785 3.3266737608052494e-05 29902660.341915455 784.7706639654095 92553 998 25674 SNT_20210201 188734527.48810703 5710.875481016302 0.048572386894068384 1.4690582864153226e-06 17644873.35413638 533.6642704048063 117684 5701 152018 DOCK_20191026 6174332.474883545 713.1502469344297 0.011027724272555656 1.2737286694698455e-06 1957918.9786806956 226.14434982302782 None 15145 183955 SNGLS_20200107 4333543.480497403 558.3262053320755 0.007214135596838439 9.300618152699514e-07 104088.60903857826 13.419326455933318 4791 2153 2483820 AST_20190419 7460677.336721378 1414.975634851699 0.044808699903496486 8.497016159984018e-06 623061.855880893 118.1504187689335 31359 3591 448937 REN_20210527 517928796.0418292 13219.391299284549 0.5874187823245923 1.4983844303009541e-05 105084653.78016603 2680.4932669102213 80162 1162 67257 STEEM_20200412 53532928.85565961 7778.256481697179 0.1533617410868282 2.2285099506347367e-05 1893474.211377263 275.1420329099865 11225 3847 214846 DASH_20210710 1315611786.3984785 38709.724248123624 128.8655574731641 0.0037919291514938395 579647734.3576502 17056.40502091379 400526 41411 56983 BADGER_20210511 260337183.70624477 4662.166857979947 31.814689033233552 0.0005693863097812214 28867878.505483534 516.647351048438 None None None ZIL_20200319 36411222.794124 6765.675443099249 0.0035102820127479993 6.515291432020572e-07 7538922.153041881 1399.2686266233054 68691 10575 233633 CAKE_20210703 2470603790.4470162 73055.41805052882 13.03845116310431 0.00038491888323816445 114874642.27824442 3391.309172001208 942233 None 824 LSK_20200914 199302542.01142132 19307.753788125636 1.4083354435159259 0.0001363713079753151 3282757.7478953367 317.8745304662385 177465 31130 154777 ICX_20200725 220933898.39782253 23156.290306531268 0.3951631636943237 4.14271896136926e-05 24254199.08186753 2542.7048789143205 113592 27790 129774 STEEM_20200331 48831098.982509054 7596.658782585701 0.14093757152681338 2.198351091753993e-05 5228408.046668627 815.5296286868848 11144 3841 214243 LINK_20211204 10921883238.690092 203416.4935063437 23.336541648949257 0.00043519034489867 957497065.6864841 17855.8367612421 641949 72760 19749 ENG_20191015 24295774.80130677 2910.8796194264387 0.30896417008835536 3.701776086737989e-05 845546.0080614401 101.30695711361952 61260 3487 359356 EOS_20200313 1770244462.1538403 367712.8430212132 1.8855854011074007 0.0003899815192479696 4720852491.753216 976378.5961634194 1478 70363 94982 BEL_20201015 14815468.77635199 1297.9360327354477 1.0217489436716198 8.951088269324878e-05 2889979.4186729826 253.178249248946 9886 None 265516 ELF_20200425 29297785.30266048 3907.017815228208 0.06335340651264619 8.452458319191397e-06 24418626.21550517 3257.8740696014847 82293 33419 612782 ETH_20190703 30959350149.490692 2877156.8799059656 290.9596721071729 0.026958680200199814 13634093714.668394 1263258.1333742794 445073 441339 35893 TNB_20190621 14152621.911860354 1479.5386077119558 0.00507593290004768 5.307649814210061e-07 1144821.9313219092 119.70831826849519 15699 1492 506098 NAS_20210107 12566227.700303126 342.84169593097647 0.27534265071856784 7.459964999472712e-06 4625642.417680841 125.32432024577878 23329 4854 1361296 ARDR_20200106 38660431.65520674 5265.0292926169905 0.038573454619326084 5.251759715551942e-06 1920861.8644553549 261.5245395685244 65421 6441 1520323 AION_20210111 41827586.418758206 1085.0206499029769 0.08578408633529716 2.2363155692419576e-06 2901169.4801396555 75.63093289922179 67927 72535 529270 ATOM_20200331 368252962.8930992 57326.834015865505 1.9664507258227062 0.00030627622092449064 111616446.71497174 17384.34787303359 31894 8331 81238 VET_20210826 8522263711.506047 173867.84659876928 0.12754077820023738 2.6026521660569274e-06 1015558076.9104663 20723.916428343648 None 199041 47063 SCRT_20210421 242626220.999451 4294.6098737469265 3.46702301375446 6.150042238900363e-05 3540438.2471085135 62.80271194495676 76922 None 64525 CLV_20210821 207267076.3190076 4218.569161226587 1.61133515316853 3.2760888272679856e-05 33496856.25311032 681.0419067915591 65077 None 93229 CHR_20210624 64261454.380226396 1906.1880212844662 0.14340920833919957 4.2568768030632705e-06 21404175.687795985 635.3492919266337 66820 None 93255 MIR_20210809 249531568.021455 5672.514864469338 3.2042579325904046 7.284332612375884e-05 28606667.25580993 650.3236743317398 None None 15673 ONT_20210708 667884140.8109233 19655.739760274715 0.7622086168442063 2.2437007789504e-05 189643457.96278408 5582.502807639054 141314 19608 137199 BCD_20210610 655059527.9887334 17487.478599361377 3.3789163472731722 9.021593680621396e-05 176554937.16604885 4713.957795093534 33781 None 1364955 STPT_20210821 78121446.08140837 1590.029295160334 0.06399003464144495 1.3020939198536812e-06 7945021.265856471 161.66835885223247 None None 819629 GAS_20200626 23280853.829654697 2515.992065582288 1.6706608994257772 0.00018055049002883454 9950273.412847292 1075.3389519249217 319597 99683 217061 AION_20201014 40197774.54120179 3518.600337390357 0.08582521217421087 7.514024917571484e-06 2058494.2944795585 180.22183726154424 68304 72546 581624 ADX_20210821 74518326.80695112 1516.6323365333728 0.5913367786524573 1.2023850312570198e-05 15582932.434854103 316.8530248609832 92524 3894 15083 BETA_20220105 165058250.3335072 3567.858017737971 0.6332931011031373 1.3776091514326987e-05 11496711.141549936 250.08916807066413 None None 55829 SNT_20210217 379675056.6029151 7715.93238217191 0.0972385621449906 1.9770908655787546e-06 41220780.81202588 838.1163544352021 120159 5785 158734 TFUEL_20200404 0.0 0.0 0.0017063663521510862 2.535765508264931e-07 454988.0278124667 67.61402357388857 68060 4025 349819 ELF_20200318 23559073.444232903 4338.341427617572 0.05050070435537375 9.389114363063508e-06 28946236.61857621 5381.697729987975 83068 33434 652715 IDEX_20201111 25723166.19788037 1681.7383936039596 0.04792292349462949 3.1374159335872843e-06 591401.6138759595 38.717855907342646 40018 1956 30306 XLM_20210210 8921172556.002274 191537.68003589322 0.3989445390755746 8.565343960992298e-06 1715358060.059111 36828.7577885192 372858 141726 30646 ZRX_20190905 98012499.75756878 9279.797104404193 0.16324236790321192 1.545398314972185e-05 50208460.149813764 4753.182075800042 151194 15900 155880 EOS_20200506 2587294120.4074583 288533.84074290324 2.764896832322435 0.00030815677676583413 3131867295.314182 349056.8326817776 1516 71102 91670 LTC_20210111 11352969472.472837 295314.8147528153 171.36294881718376 0.004457513746350284 9321325636.610132 242467.44962193648 138360 221964 152475 PAXG_20210117 100914882.01541094 2781.2873818499183 1851.4720331321453 0.05115263500275599 3368122.642199073 93.05479374131627 14461 None 66993 PPT_20200319 7062865.134903499 1310.909622982964 0.19496189958836851 3.6186083891423846e-05 3691955.6143724937 685.2488402460497 24065 None 1049662 STPT_20210220 48294463.161821775 864.5343614918968 0.047527571470663325 8.497104669823343e-07 57891709.00719022 1035.0032533277777 20538 None 1294175 STORJ_20190804 24064544.276025936 2230.2676396972893 0.16740046979400672 1.5511438969025986e-05 3945229.373706544 365.56758009318696 83811 7777 204651 YOYO_20190807 2571048.407153868 224.68667159429634 0.014713933281009735 1.2824035059152647e-06 1022634.6806270215 89.12846583307555 7588 None 1167957 ILV_20211204 934172021.9917761 17398.64754936611 1471.6214577515757 0.02744346010618192 77977345.84896883 1454.156684601275 None None 9682 ENJ_20191220 69364039.97084147 9713.591074601514 0.07781448862300738 1.0889781936265403e-05 8174181.631736204 1143.9393492424022 49740 14246 28712 OM_20210523 58999540.734295316 1569.7457354212245 0.19747301101245845 5.254323939887347e-06 54952813.44790108 1462.173903072018 42148 None 60730 KNC_20210511 460018233.80614203 8239.111954169643 3.3288187936351945 5.957574650056793e-05 272747092.8018903 4881.344605059639 161355 10723 105580 ONE_20190813 30361801.348512623 2667.7738922276676 0.011459721624111295 1.0069213552277793e-06 18278788.38608593 1606.0863411301912 69556 None 151929 ADA_20190224 1500859971.5418594 364749.1112272991 0.048239797901670274 1.1723560987733373e-05 47397198.77727685 11518.786866515607 147921 71370 106866 LUNA_20210429 6583473796.897783 120272.68243479445 16.83338626646946 0.0003074274767099574 464866861.90155053 8489.845364336406 61889 None 23843 ZEN_20191108 40541249.55981627 4397.718060901823 5.253397265803445 0.0005697994088919867 1544592.890524199 167.53123197601005 None 1871 58749 REN_20190608 32844354.998417206 4087.1233548245064 0.04204457013647452 5.234329732791422e-06 161411.99593224112 20.094951780809954 6386 780 1322492 CTK_20210127 24174594.347284388 742.2812989416435 0.9417187781399956 2.8912142304980032e-05 5729953.2796916645 175.9179369349952 11969 None 186270 PNT_20210420 68984264.05550559 1233.3974441290634 1.773460596678791 3.170841636358156e-05 18688282.356383998 334.13532794928295 None 238 387057 NU_20211207 506149458.2915949 10027.788576327499 0.7816390353039426 1.5487886474895784e-05 55496874.668538585 1099.6499096844807 None 9578 129036 STORJ_20211007 192409293.6888843 3465.9864988058685 1.3567982314057692 2.4457921229446283e-05 98598949.64239888 1777.364745796704 105807 13958 72901 NANO_20190929 98803254.2746903 12036.70388222354 0.7414973526091052 9.033289569587378e-05 1923898.6821899237 234.37890691878022 98324 47753 228535 NXS_20200523 9903415.439064754 1081.8696803096052 0.16490747700767128 1.808020848883901e-05 132111.23628981062 14.484477836786843 23476 3523 668599 ICX_20210718 506136774.5461211 16014.126718231535 0.7907723139611189 2.5067018019098182e-05 52871714.42364254 1676.0023014958836 142128 32580 243184 RDN_20190701 16023226.804915605 1476.8928209312714 0.3154116373801754 2.9242450715514792e-05 534167.3148269126 49.52373193141622 25695 4426 772412 VIBE_20190818 2752862.023163286 269.48084071516325 0.01471082583353529 1.4400597196223122e-06 148177.00931683969 14.50521846332 20404 None 1220128 IOST_20191118 78081679.37841511 9186.267552200916 0.006501637082914724 7.643428519782813e-07 34041005.483702205 4001.915038290138 194782 52290 86149 WING_20210723 26656862.154022798 823.4648466801438 14.921768084600533 0.0004609091292505701 2828240.8091864586 87.35975531065598 None None 411490 ANKR_20210610 664651910.7215213 17707.234655669643 0.09503903397739794 2.534323684778024e-06 43989867.23737358 1173.0397265657161 111016 None 5363 AMB_20210220 6697289.065684672 119.80448288144726 0.04631885956702811 8.285751090719684e-07 1061797.8697466596 18.993975541746487 20848 5475 361087 ETH_20190426 16278218288.123909 3136516.804773806 153.9304406219976 0.02963878950589889 7178205516.338611 1382139.37067389 441528 435475 34722 DLT_20201229 4647341.120896495 171.38412506841178 0.05621983306311869 2.0699539394329435e-06 1944653.6950953093 71.6000627834676 None 2536 None MANA_20191118 38772837.06860443 4558.267554746018 0.02921899298993732 3.433653805559991e-06 7642707.539115072 898.1285506828413 45839 6408 79427 BTS_20190903 89794512.55789089 8695.008061974608 0.033332190657261035 3.2262819048822e-06 13677990.208604613 1323.91695340204 13605 7155 133075 NULS_20200905 33208849.95860266 3167.1961115244167 0.3419192593895105 3.260954083455809e-05 15730982.99199689 1500.2961025394607 30419 5169 285430 DLT_20190528 9596996.22574943 1089.3289986032225 0.11984649106480871 1.3603449978177236e-05 944383.3707363798 107.1943936772218 15140 2681 2919270 ASR_20210114 0.0 0.0 5.214762002013899 0.00013953539860983146 3715520.164657302 99.41903139934352 1928012 None 243323 HIVE_20210729 130890586.9593486 3273.3256193429283 0.3547311763479748 8.865640357289547e-06 12988432.839748137 324.61419249222797 22449 174 113471 QTUM_20210703 731533392.0553567 21643.087409978027 7.095764032270855 0.0002094966072979473 213664965.92786834 6308.282696091112 246473 16735 119158 MTH_20210210 6968150.510714028 149.73973953873318 0.01969422299562206 4.2267231246792555e-07 989227.422467966 21.23054269793567 19356 1896 1161820 SNM_20190714 6830538.91089236 599.9812379472565 0.016524515552771634 1.4510425693399799e-06 249082.1964911155 21.872282380628825 31263 9977 14838367 SNM_20210420 35595743.54208356 634.5197336164031 0.08059496013257077 1.4399941987222052e-06 4576786.454981967 81.77367335530163 29886 9516 None ONE_20200417 11762550.372361965 1656.4611072670987 0.002248579356388085 3.173486239745389e-07 26131543.771829527 3688.021699016819 71220 None 276485 DOCK_20191011 5648518.592926344 659.8138548627978 0.010088589470130645 1.1784667074923322e-06 2632136.1729251877 307.46467170285655 194 15155 171357 RENBTC_20211216 801204171.2343022 16422.697505690598 48739.59368989268 0.99734492449548 1581381.808210499 32.35938178194728 None 6397 77574 RIF_20210727 139436362.12963983 3724.421831132442 0.18500165530892376 4.958281507925266e-06 4936041.037494858 132.2922271030645 44721 3362 493990 WTC_20201015 11334399.82162125 992.98086487087 0.3931832593591288 3.4405176458488636e-05 3643812.8387839855 318.8488337586154 55301 19334 722283 TRB_20210124 48302554.85068154 1509.1689358458914 29.176309110701894 0.0009104045640308799 56563386.21769056 1764.9787289489007 12827 None 436665 QLC_20210725 5648954.508547282 165.45845170566784 0.023821477275566508 6.971253854984531e-07 3268926.747161574 95.66374882713997 35132 5681 940522 FUN_20190225 21366547.07457094 5672.564667643643 0.0035863890292732 9.559287720726458e-07 1036190.6733967733 276.18991413601333 36370 17830 514881 BTG_20210707 852796550.048078 24967.504135707775 48.73216220872127 0.00142669466564961 54903354.709478445 1607.3640023356697 100465 None 156251 UNFI_20210826 64107935.927981116 1307.893726571553 13.756608618630029 0.0002807219594327871 35861339.18826445 731.7984892860851 21620 None 252503 ETC_20200321 568389981.0401046 91913.71623884483 4.904336810210068 0.0007923590769570401 1848969058.7981198 298724.87829575734 231066 25306 345588 GO_20191020 7400208.759825789 931.2444242534353 0.008976242061401348 1.1291457545455643e-06 1269899.8693629631 159.74413751107102 10271 688 791048 RVN_20191216 117149512.10177286 16461.631404203064 0.023006501872247714 3.2357039842730875e-06 8212327.679913029 1155.0065951619017 29039 7243 211269 RDN_20190621 18247606.30150817 1907.6350791780906 0.3606005675247208 3.7706202444257065e-05 676826.1857559525 70.77233781097345 25666 4427 754056 BAT_20200927 342280975.6009793 31877.056527700985 0.23293066596364076 2.169834072629122e-05 157319259.5645485 14654.862564864095 122731 46067 16079 VIA_20200310 3915083.991136258 494.6784671217563 0.1690078884443412 2.1354474993745226e-05 101791.05132461798 12.861497058549707 39575 2184 2317316 ONG_20210210 0.0 0.0 0.28454827928814114 6.108510466901946e-06 7152700.103964256 153.54984244143773 97442 16760 259663 MDX_20210729 673511461.1591771 16835.553494981592 1.160643447393138 2.9009754961717863e-05 27509916.283861797 687.5978425628263 6446 None 11841 CND_20200423 7000069.376345357 983.9508385881956 0.0036283604063336397 5.100132688079311e-07 150809.86800224456 21.19828934690585 34609 5941 386882 WAVES_20190603 265468784.6207622 30371.68804822146 2.6555727645410383 0.00030368582283804113 28828220.80271371 3296.735857637824 139958 56840 46755 HIVE_20210702 132807808.75726895 3952.531702586159 0.35485855941480077 1.0550977760115264e-05 38077783.50179244 1132.1633259866608 21930 170 116444 TOMO_20200329 15888305.828301772 2547.6384173767874 0.22730824926148435 3.6357294740192245e-05 8922029.037110336 1427.0526495922381 22162 1514 236393 SNT_20201015 95201177.32459141 8340.271932917492 0.02456174606234551 2.1517453814315513e-06 5762335.837835715 504.8126258551696 112603 5706 109261 BTS_20190414 169129329.39761984 33339.44897930602 0.0624631723438735 1.2309909550167132e-05 19160950.5711088 3776.1381558890203 13785 7204 195741 NXS_20201201 12250895.436802924 623.6358736807983 0.20572469731578658 1.0444139923034643e-05 100569.08694571655 5.10564667100035 24637 3518 521174 LRC_20210519 655738155.392241 15368.17274916013 0.530646180456012 1.2403817287410618e-05 114218256.87981202 2669.8437516430217 76872 10675 181705 DOCK_20190224 4971393.850616249 1208.004270843002 0.009676548394831543 2.3506057153301265e-06 1036079.9580963033 251.68224987548015 None 15364 163959 CHR_20210111 12188993.31477417 316.1862918805237 0.027181771229301384 7.070555201172502e-07 4510814.0868710475 117.33584148875202 None None 675741 QKC_20190714 62467675.05446458 5488.481017126968 0.01562798328731351 1.3710701579167606e-06 2922835.342928019 256.42542876572867 None 9222 176500 OGN_20210624 141422262.8245705 4194.715305928726 0.6713136648191711 1.9919404879843567e-05 56581239.63691242 1678.8942040003076 114902 5831 46943 DREP_20220115 0.0 0.0 0.9943116780361629 2.3054177283424326e-05 1897857.22156513 44.00384488192476 4261 None 476367 EOS_20200422 2356000311.741747 344041.34205983503 2.518154622510988 0.0003678576895509772 2569024530.6571236 375288.8801184763 1493 70980 96512 HBAR_20210201 557256607.3515441 16856.70224061441 0.08198227658824088 2.4795310764490306e-06 96525302.66291834 2919.3808415254935 47770 7609 141603 HIVE_20210626 83181352.91793491 2614.2635210566086 0.22364030397408785 7.035111688430104e-06 3285253.5081422445 103.34508111411529 21043 169 116714 REN_20190920 43007785.103421174 4199.150370960909 0.052282973893401016 5.104751818571335e-06 7208804.604649067 703.8459306147543 9741 881 293718 REQ_20200317 4603343.764732398 912.0507103088934 0.006156087487980384 1.2224746801166197e-06 1284393.0882502245 255.0545346810532 39692 28238 686735 STMX_20210210 80650083.75167432 1731.4338164254393 0.009631778708611137 2.0671503789954786e-07 43167153.99052221 926.4436137002073 25216 1026 181816 YFI_20211225 1165264987.6373475 22925.29722443017 32692.888332241295 0.6429184739594035 314626584.8918544 6187.255214958925 None 7903 26210 PPT_20190730 26582437.169233847 2800.2177647446933 0.7358334384273849 7.735887422392017e-05 2340181.299442543 246.02550162934858 24096 None 661854 SYS_20210725 80177716.05119927 2349.8441594130286 0.13136891237081683 3.839589480141322e-06 1290346.5532060238 37.71364900579833 74492 5466 381052 QLC_20210902 10260438.216242133 210.92834806932666 0.04278006563970584 8.792489419569586e-07 3926373.888891809 80.69786794182417 35173 5735 940522 DOGE_20200707 324376835.8951619 34749.19620652337 0.002600865383919274 2.7837098211973217e-07 87267637.8248381 9340.267358229128 140901 159338 117230 FORTH_20210430 299472872.4084367 5586.613286798078 36.61635487200061 0.0006832139069797511 65254615.918164395 1217.5668835895863 26893 None None NKN_20210804 169454914.07311115 4410.5176825925055 0.26064834204753584 6.7854084539521586e-06 22165854.50818523 577.0394524185524 28947 3311 166528 PSG_20210318 0.0 0.0 21.785615177232124 0.000369609317782663 23903112.78664067 405.5342545105387 None None 29026 QLC_20200117 2883972.8871055846 331.2373798542902 0.01201942619446787 1.3801557493928764e-06 52080.31678954912 5.9802312926038 24555 5692 940522 BAT_20190318 240523609.16321334 60399.100420772396 0.19343601425306117 4.857709230627851e-05 18066077.46075062 4536.887899660455 94587 23863 94352 STEEM_20191011 45485632.17476146 5313.260426138074 0.14035440781254133 1.6391804619726122e-05 532075.5570438919 62.14039665675603 10874 3782 215234 POWR_20210131 47219050.183824286 1380.3129933430316 0.11013721379183065 3.2237358425624057e-06 3010815.1004606658 88.12709365454384 81186 12504 369771 CDT_20190329 6681088.1822498115 1659.4491286175576 0.009904303593024402 2.4599767786885615e-06 1022025.1011794632 253.84500712488537 19659 288 398206 DENT_20190810 35032890.92604387 2953.4440796566805 0.0004828635386829637 4.0705704268931616e-08 1012188.2796481488 85.3281175220155 46596 10012 266120 REN_20200607 76584790.85882391 7920.228933815444 0.08760768824184535 9.060192493269704e-06 3737380.9949121205 386.5116397217971 13027 883 397347 SKY_20190922 8357003.876904206 836.7423197039712 0.5223128132119014 5.229640208087737e-05 299543.69655927335 29.991716074751537 16339 3808 8463973 BTS_20190622 173951308.03081608 17184.17186778784 0.0643108339342327 6.356395119941135e-06 17328311.008152705 1712.7066279638698 13705 7187 169425 LTC_20190512 5727192429.384055 782523.1124398382 90.56300854804594 0.012433638408996622 6785448309.644821 931592.402656343 443892 202557 206704 CDT_20200417 2393211.9631867236 337.024064762335 0.003504049860483994 4.943033583319501e-07 89315.92995648031 12.599468012116523 19113 291 263916 LSK_20210523 573383244.45927 15255.473035042338 3.979802999350293 0.00010589383363482738 59494884.28672274 1583.0284513605395 196639 32434 142125 GRS_20200117 12687476.625331307 1456.0651603833269 0.17091441318655376 1.961481623157695e-05 11105403.775366267 1274.5002025868198 37978 106897 4060583 BTCST_20211111 267863977.41742453 4123.756689851286 36.75613206541889 0.0005658593848982722 20299012.96464304 312.5026041851027 67072 None 2688083 DNT_20200117 4298793.9021441545 493.82711547720976 0.005769317170751506 6.62109730689905e-07 216626.31832776574 24.86089584664999 59354 6150 608237 TROY_20200423 4439429.449933996 624.5074421137709 0.0023389090096341577 3.287640961370773e-07 507047.79448868486 71.2721654270105 8773 None 456905 NCASH_20200318 978577.3585166069 180.14167367041335 0.0003346148306024007 6.208761687941732e-08 639313.2802390694 118.62426401707167 57855 58324 679947 ZEC_20190509 375916282.40050995 63156.96207179413 57.79847563639139 0.00970293361630309 182382754.7875152 30617.550774081825 74863 15134 166067 TCT_20210508 39749896.697555184 693.7112882106557 0.06851935336792467 1.1955952765191222e-06 11497420.414382502 200.61866996580792 None None 333105 IOST_20200718 89564429.45561409 9785.159563106934 0.00594588180645965 6.494950232790357e-07 28700348.89918262 3135.066317016196 94 52179 346780 FLOW_20210729 992961913.5033201 24820.75566240963 18.182970290501284 0.00045447507052091834 58809850.24116853 1469.9254526991178 76267 None 58898 FTM_20210203 325618669.3686876 9143.331173075057 0.1255841806410935 3.5325233557967062e-06 182903782.34634504 5144.85088570623 31721 3296 133702 DODO_20210418 521816449.79569983 8656.163071392888 4.60857905287198 7.666885808519989e-05 86573895.25199474 1440.2534084387173 65045 824 26612 LTO_20210508 154430998.57558453 2695.1146005900364 0.5481146515004438 9.564132945460982e-06 14430341.302824577 251.79714187676507 9062 4022 155489 DOGE_20210127 1053619538.5165173 32332.32586652746 0.008276931982708905 2.5403232818473363e-07 211765468.68784878 6499.422147274819 194844 189700 60672 FTM_20210115 62298630.64302445 1595.1148371683494 0.024517713773761468 6.249850662401402e-07 7029711.152701274 179.19552087772084 28695 2847 142400 MBOX_20211011 137928910.29752022 2520.861011860268 4.088729755010856 7.473456576641688e-05 25272957.20209816 461.9438298208166 141070 7011 8170 CDT_20190314 5746779.029014936 1486.3394430905378 0.008517771880517456 2.2033580015062648e-06 515142.9639594173 133.25601900137775 19490 283 399523 NEBL_20190730 12895069.213475352 1358.5902420205025 0.8388144727636528 8.81837659060268e-05 211724.17287694698 22.25836046451781 40517 6156 884677 ALPHA_20210804 230710926.84400705 6004.86936586434 0.6519375377322307 1.703839068784718e-05 44672964.2153924 1167.5281348789283 None None 58883 MBL_20200320 4369331.11462456 706.5302271666159 0.001245230588310198 2.0148080228252673e-07 3215655.954060342 520.2995714776529 None None 114904 XVS_20210511 1229357499.0974104 22018.288238178808 124.92112921756946 0.0022342540302093053 329244990.8337962 5888.65112174454 None None 9693 ATA_20210725 65315365.66997952 1911.7023109795095 0.379184948041123 1.1098288037175242e-05 17828908.151556395 521.8307295068454 67437 None 91785 OGN_20201201 23855156.13395176 1212.0799005219276 0.15027326292718407 7.649918028225728e-06 8339286.818919227 424.52568963986374 69924 2463 193028 BNB_20201018 4471124012.698126 393608.9159053826 30.235066947647304 0.002660440963006747 281729618.2540635 24789.924169613492 1298256 74275 639 BEL_20210420 125513010.72605929 2238.7512598050835 3.918776145347336 7.002650138005395e-05 47019346.276214205 840.2113809970416 None None 318373 ENJ_20201014 148628791.20831957 13009.807653791551 0.16128198955125445 1.4120290035330432e-05 8580750.33511041 751.2474504415324 66655 15917 93300 WPR_20190325 7177273.548527161 1797.2281713707164 0.012131697715189958 3.040241371517735e-06 609348.373648753 152.7046072796893 35066 None 884505 TCT_20210729 12510481.716914006 312.7805410931198 0.02161346278479299 5.402649099674023e-07 1149751.902302359 28.739985543606764 None None 514683 STORJ_20191019 17276901.360544566 2170.884947187956 0.1201558461347331 1.5097876190126168e-05 3033665.4204279087 381.1874860298437 83226 7823 147955 HOT_20200305 112838045.57227069 12889.651994324939 0.0006354345326481525 7.254790292749315e-08 6912324.643762497 789.1838285356025 25149 6920 537857 VTHO_20210702 243835188.35529628 7256.849737968637 0.006564312068617414 1.9521179567241124e-07 14533694.124763917 432.20805138325824 None 190935 29344 GO_20210105 7334391.353119723 234.42825362670007 0.006906918860285567 2.207650026296098e-07 375585.0680242276 12.004779585116282 13372 684 698826 CND_20201124 19105165.807685744 1043.2024159933392 0.009918992004068978 5.407234279822217e-07 132248.1530424847 7.209369120180259 33981 5904 383429 SKY_20200626 10340143.746909503 1117.4727445376725 0.5744524303838613 6.208181914098181e-05 742923.3670719421 80.2886917535536 16093 3816 781514 XLM_20210125 6000099282.540741 186352.01382345214 0.27152324656676735 8.41573106237847e-06 810336294.1970454 25115.979601289153 335049 122139 30260 BTG_20200806 183183518.0152235 15635.90518875021 10.472733908333465 0.0008921178083618593 10465199.360248309 891.4759793434233 76478 None 236149 LSK_20210120 199244127.4247358 5502.030259529264 1.3903707194387829 3.8451290762300584e-05 8037683.7863553 222.28554730304384 177961 31029 255671 CMT_20190915 17386277.73859227 1679.2332691430497 0.021701440350905397 2.096420849929742e-06 4038892.991744337 390.16854833668606 289776 1648 567314 ARDR_20200520 40029230.11422275 4102.225323994251 0.04015710349260683 4.117260106451056e-06 2604785.0631924933 267.06551752510006 63601 6313 1998735 XLM_20210325 8233555497.85974 156161.2420471113 0.36314474454168977 6.887563260520002e-06 771658040.1064439 14635.606453370712 458279 163630 26644 IOTX_20210218 154177406.57554743 2954.149575527928 0.025480110950104093 4.88681685237879e-07 37068215.35431871 710.9293198754726 32325 2175 483474 QNT_20210825 2709309683.7236004 56379.61751459442 205.6409005557015 0.004286800601612434 100230545.49473614 2089.4110148598284 40966 6527 134103 ARDR_20210210 107317177.28428969 2307.996267208827 0.10686828630467708 2.2935827869447102e-06 12655903.885647098 271.61812272904837 65090 6351 None KMD_20200422 63248712.38301041 9235.723207927877 0.528927486447332 7.726691656070945e-05 3275946.1082877982 478.5575737547889 99867 8389 159254 SNT_20210527 425716883.3423711 10865.814194197013 0.11040314925687392 2.8181362413551205e-06 45299112.067182496 1156.2991660746104 131965 5978 111002 THETA_20190627 127078426.144256 9776.80913179965 0.126962181788339 9.73583113011339e-06 14020488.296989871 1075.1320156799761 None 4003 231431 NAV_20200330 4511995.653470443 763.0355012816447 0.06544515083993031 1.1087352471674493e-05 27813.226956213366 4.7119617982462625 49420 13964 1082339 VIBE_20190401 9815728.175193189 2391.1792700188985 0.04902957598398971 1.1943943803071456e-05 795941.0100723945 193.8967348599742 20690 None 1224385 CHZ_20210221 274063478.2563336 4905.063825117209 0.051595667404553174 9.17788106187872e-07 170880130.16569936 3039.630242985757 77724 None 95433 LUN_20200523 2071770.879188989 226.32455565800333 0.7650409840966268 8.371984883160166e-05 542920.9666635102 59.412844803665116 28831 2132 3817056 SKY_20191030 10224494.869881827 1086.6913511345306 0.6390309293676142 6.791820944590816e-05 167748.8442167116 17.8288727700463 16353 3806 1313874 THETA_20210106 2136129986.245076 62869.77485073762 2.1393050713997543 6.278024126271498e-05 241761502.29996246 7094.755042345201 78794 4845 64313 MKR_20210624 2083727869.1457267 61805.29862500008 2315.9901653780944 0.06866018689935702 126715364.278963 3756.622426327683 162084 28361 30673 MBL_20200417 4224111.489776432 595.5212717381055 0.0012026012234885777 1.6967673165565943e-07 929878.4101638158 131.1978787249717 None None 95998 DASH_20200410 781878192.0741119 107232.21707300101 82.86314438067268 0.011364428341464056 784426684.3099163 107581.73503552875 315612 34603 60751 PNT_20210131 16232864.730420524 474.4723735010397 0.5225464944062262 1.529502885924319e-05 11150385.354538478 326.37376312923277 7831 121 785804 HOT_20210909 1800552457.9845586 38849.31188159513 0.010118712068416264 2.1856120798324453e-07 284582057.9393204 6146.888846429108 88772 24522 145529 ONE_20190902 22548170.418860104 2315.5027032788357 0.00832459913106774 8.547706033658987e-07 3128725.474110094 321.25781904507426 70887 None 133162 KEEP_20210930 189255723.71320188 4555.404472607152 0.3450607713343188 8.300918828203853e-06 9988095.812515115 240.27759593593868 None 3010 113352 BEAM_20201229 21509762.95209035 792.6746971385115 0.2763194766005333 1.0177561235744152e-05 4393097.582735077 161.80915009303968 16391 1611 396725 GVT_20200511 3300155.6787293805 376.92099418967274 0.7452175139871127 8.500345168487578e-05 193483.66936875368 22.06977081497276 20408 5558 208818 ADA_20210828 93831078617.99115 1913049.9623853585 2.93442218478271 5.9819574775241567e-05 7089768799.543161 144528.26762378478 570382 582886 8980 CHZ_20200610 59871183.91740363 6125.699259534581 0.01253958120407032 1.2835136741594134e-06 6801188.010544624 696.1490714880917 24355 None 340266 BNB_20211021 84745122606.4623 1278442.6819505335 503.12263901994754 0.007593083263433641 1833542986.521904 27671.671843002918 5440300 666050 126 TRB_20210930 82357746.3860417 1982.359311940054 41.47053895940235 0.0009976894272394712 21428226.975812275 515.5157380323479 None None 499416 LUNA_20210221 2574462769.1449895 45910.426286907976 5.984985917664266 0.00010642754187984048 241968838.12157652 4302.7918539949715 27497 None 71119 CHZ_20201030 50662272.43209583 3763.3273952067607 0.0095452801414269 7.098572114134352e-07 4264463.053533099 317.1368264215351 43836 None 327807 INJ_20201106 9369957.70596959 603.2936392650449 0.6972363729413322 4.485250246770419e-05 7223373.078038455 464.67219924444333 28675 1692 209398 BOND_20210909 123322298.31999943 2661.9087610685947 28.88500672355819 0.0006239076593364439 52365882.86092779 1131.0876856470136 23157 None 146012 GO_20191118 7840683.678398234 922.1832650128136 0.009041548969376166 1.0625126279179852e-06 1553247.1321993202 182.52897792501165 10285 681 746050 KNC_20190523 43472494.10249444 5673.162643847429 0.26090453894807647 3.4068050296287364e-05 8696313.806143036 1135.5358451580644 96743 6681 226732 TCT_20210212 11959735.660515785 250.91330527013417 0.020614831623413103 4.317588260851278e-07 7401749.4992225235 155.02288513144742 None None 1849521 SNM_20190528 11322497.600273862 1283.8566376927206 0.027774155421304705 3.1498099818561182e-06 338420.75898671773 38.37960393589578 31461 10007 15277898 NEBL_20190826 8804013.849611606 870.4039548851993 0.568618503295201 5.621615351171667e-05 323326.7360378766 31.965518748009 40395 6129 679101 LSK_20200621 171786842.35124364 18360.414743930607 1.2248666098056138 0.0001308599417480328 2978002.704452582 318.1581221256367 175215 31209 194938 FIS_20210909 47347314.981146954 1021.5812365265026 1.7507513637352181 3.781571511760311e-05 23850574.68987235 515.1654064338827 None None 334675 XVG_20191030 61331470.42161802 6517.491716297345 0.0038275108325211624 4.067368672804913e-07 2575964.72119821 273.7392176719414 300722 52498 287655 QSP_20191216 7324243.898015309 1029.1860194277301 0.01025511707373132 1.4421212968611533e-06 316697.7256181454 44.53547741071682 55628 8400 427873 MANA_20200506 46955740.998019986 5236.482465686606 0.035193687724534954 3.9224513713903585e-06 22974923.65673225 2560.630233191314 48346 6863 47656 MTL_20191015 18551525.728338346 2222.660466419074 0.35343566710003205 4.2346000842008244e-05 6596590.902397973 790.3538604332986 None None 247192 MDA_20200407 6706821.080569163 921.7926735004932 0.34168115282787104 4.696102364537885e-05 499420.48379994906 68.64088626079717 None 373 1850910 OST_20191012 8213322.917801962 993.5561895234954 0.012177158365468552 1.4727526226810155e-06 254314.37029468437 30.757763395693154 17964 756 715742 FUN_20210506 417412695.6471899 7289.036912485655 0.04057510354191309 7.077732124659068e-07 46223519.306277335 806.301546885498 2569 266 242119 ANKR_20190903 8606832.425540805 833.7754203604644 0.0032810562256885933 3.178322992810516e-07 2736149.509655639 265.0477864481166 13996 None 7336 XEM_20200501 368231391.1179786 42553.0897674878 0.04058919511631406 4.70888497403832e-06 17212614.14144618 1996.8915338751817 210124 17951 220476 BAL_20211111 260060291.42973498 4009.44026655175 24.21682802667316 0.00037290807829744776 65333860.89283825 1006.0576259808407 None None 6106617 ETC_20200425 650195551.9938351 86712.24180640685 5.585160456568235 0.0007451586041504428 1798874080.5194278 240001.43045234846 230835 25403 313555 EOS_20201229 2635336897.5406437 97185.65878770259 2.7702795187224907 0.00010203656213016861 2339421655.297747 86166.95227546192 None 73703 102898 RIF_20210708 123376143.61075343 3630.0555386652354 0.16658715240176122 4.903002749811713e-06 2633916.1022753315 77.52157177814132 44591 3359 427293 YFI_20210620 1203248032.600081 33820.18197681566 33384.826630889314 0.9372946253798441 153527945.54348207 4310.368892866162 None 6557 17690 DOGE_20210624 30785375820.49213 913186.8424972893 0.23676340201854273 7.027949219852052e-06 6409757148.694269 190263.56002892286 1884559 2090906 8922 FUN_20200322 11270526.453064805 1829.1434706939265 0.0018743041117631302 3.0416388480986493e-07 403858.15888742346 65.53849279229584 34814 16981 317174 MDA_20190813 12600284.196850214 1107.1332216247097 0.6403459992620651 5.6265119708796496e-05 772231.753687575 67.85349188444484 None 363 2972990 VIA_20210513 33654698.46695846 652.7928372872287 1.452253269857888 2.816903955983841e-05 564778.3630221533 10.954882581926384 38522 2285 682329 ALGO_20201201 264059293.93506703 13430.986163434722 0.32622260554862686 1.6617473808638056e-05 134830796.62519836 6868.154424028906 30661 1501 404334 YFI_20210725 1050819781.7962124 30756.23300393034 29520.33471967239 0.8639000211209856 176917867.083178 5177.426020443626 None 6851 20096 EVX_20201106 4918630.028685186 316.54089959300615 0.2265900112966844 1.4543061153512983e-05 231349.4237235624 14.84853104418812 16706 2813 1244228 BNB_20200308 3021511858.4877877 339930.4786715434 20.034630500318833 0.002253071054564909 314894895.76634705 35412.71074952443 1122392 59921 1861 XVG_20200707 123435696.30960204 13223.173652687969 0.007572692608260101 8.105063382694586e-07 11085041.31207476 1186.4335063086185 290255 51677 251650 EOS_20210128 2373413697.4731393 78416.41473523623 2.507859211136224 8.249286681869352e-05 1671521068.4601645 54982.57807807804 194040 74456 74168 BCD_20190708 211524666.3902198 18496.44006236854 1.1711653607058405 0.00010239854013652838 5520517.610328193 482.67560078357434 21395 None 3671311 BQX_20201018 26313699.9760587 2316.488402384029 0.11810949319650588 1.0392678619301081e-05 334247.95691341447 29.41111253080779 15437 64 171918 NEO_20210725 2172661711.482007 63595.27858771237 30.92754852510726 0.0009037777504716854 294296674.037108 8600.060422397604 407198 112396 108336 THETA_20200701 222085257.2771977 24276.34025326893 0.22145019217876316 2.4227461427199493e-05 9600803.337029204 1050.3630194650589 71592 4273 81176 VIBE_20200531 2348365.1650329577 243.27489887928354 0.012547694080731366 1.3000196293789236e-06 174745.8651570919 18.104765178 18997 None 997328 STEEM_20210902 237978039.152502 4892.219378676704 0.6125968376558699 1.2590563228476756e-05 29433725.745310083 604.9446589767582 14287 3928 228269 YFI_20201115 518028296.9586675 32190.84430164699 17242.69608448423 1.0719632906602103 407246999.5206543 25318.188732125764 50430 1982 9659 LTC_20210104 10564161142.548117 320922.7017052054 159.49543619526273 0.004845222029724522 12511693714.956276 380085.6968888779 137670 220082 152475 DIA_20211028 78151961.41941732 1335.3204843917988 1.6104473988329981 2.749864697996825e-05 11236259.80531616 191.8609337911303 36747 421 424656 IOST_20190601 182009954.12988862 21217.090373137264 0.013410665679317963 1.5637127439001632e-06 52916972.063138686 6170.233869251687 199746 49750 109542 ENG_20190811 31369013.907658566 2771.7370513381456 0.40019566332355977 3.536091861491199e-05 282252.5054302447 24.939570285409232 61703 3480 330014 SXP_20210201 100481985.31659655 3039.776720860821 1.3495095849767733 4.0706766703109285e-05 220540735.8768822 6652.416836318211 None None 145148 SNM_20190915 3536351.938102728 341.55440946852264 0.008081215523889462 7.805147350607789e-07 422177.03732666775 40.7754746131525 30964 9876 18762051 IOTX_20210624 150966646.4631272 4478.124808672999 0.015880762671021162 4.712183857153964e-07 5909631.793841128 175.35223035274637 55962 3130 185427 REP_20190511 218098654.55433506 34226.98281398623 20.10203222709936 0.003155337777566356 30375848.722122878 4767.9787752676 125243 9941 267119 OAX_20190426 4336978.7515348755 834.9383980796049 0.18497999241827756 3.5588785138223295e-05 1099561.5074309288 211.5475177755152 15265 None None TFUEL_20211002 1607355344.6910014 33379.766467925925 0.2950077760247276 6.12464889988112e-06 54685397.258927695 1135.3221351473112 200245 24260 26496 VIBE_20190124 8300826.610530818 2336.5392139112805 0.04146264054657711 1.1671016646279535e-05 2386413.8096423894 671.7342390666182 20611 None 1525453 CND_20190830 11292875.445249137 1190.0186386940904 0.0064663997177762216 6.814151299824369e-07 254085.3801468989 26.774964415434805 35917 6116 336080 YOYO_20190329 6298688.69293937 1564.4687179404573 0.021571412129522002 5.3577695819889705e-06 1072344.402236426 266.3420542531621 7260 None 1390338 FTM_20210324 966431497.9118085 17727.986773431232 0.3812099871058137 6.993145653107865e-06 96836941.40118586 1776.4351898576904 54194 5717 62637 NXS_20210603 49044841.53591039 1303.2438403285873 0.7195021794345162 1.911896856195279e-05 397370.15742591827 10.559116795525723 25590 3942 484534 OMG_20210418 1327105423.381281 22014.716021727327 9.449403787367094 0.00015681202553533805 611062149.7726898 10140.522681646631 318636 4435 121524 KAVA_20200325 8298630.618541393 1229.5949668156231 0.44445462584138307 6.57826924012741e-05 1494456.2582009055 221.19098469114343 18085 None 337432 QTUM_20190314 172988119.9628257 44741.42203635393 2.1273860033960657 0.0005503099451766042 316258402.72145903 81809.38672410954 174987 15202 269800 LOOM_20190126 26604272.92880825 7461.668622359132 0.04519572245594997 1.2674010811066654e-05 1668055.7555608784 467.764547851748 16728 None 360086 HNT_20210704 1169254268.2324295 33728.26881382279 13.259790783572647 0.000381748691907007 10131348.423300035 291.68099791140395 None 40335 2473 NPXS_20190324 106554054.0877422 26624.26543286553 0.0006111065296834717 1.525909601099697e-07 1841937.6386321613 459.9247743059645 57579 4156 151304 KMD_20190601 163005037.84529787 19002.872307042748 1.4351409915013762 0.0001673405564919243 8712295.684727272 1015.8725984680051 97020 8374 375668 QTUM_20190513 230145019.11847323 33166.314908286986 2.4079300685901175 0.00034638566160358946 331668195.4717251 47711.14776959002 None 15279 401038 EOS_20190708 6194645792.404178 542279.110520746 5.94460098667607 0.0005200656096529456 2523774745.88393 220793.36439681478 None 67068 97672 WBTC_20211104 14571049664.867579 231046.59599557368 62989.457966996306 0.9994432275197472 521727892.3055216 8278.169481091832 None None 238070 AION_20190622 46692878.787704766 4612.661227862455 0.15205471048539299 1.502254454316087e-05 2479494.9576453115 244.96658687431915 67299 72573 278705 TRX_20210203 2380380850.7251854 66831.53494560905 0.03315234907945522 9.318227110664093e-07 1441771544.7948482 40524.291850006586 576096 79824 29522 AMB_20200725 3165896.622768892 331.8206115446243 0.022069106046228918 2.3132353387010797e-06 3778271.9274341627 396.0301846144062 19344 5467 573873 WAXP_20220105 900201510.2356855 19435.72332530042 0.46848300155550554 1.0200502983246142e-05 42202123.7038081 918.8868909025164 237160 6613 2900 DASH_20190605 1268658184.9741273 165667.68039614483 143.4929045229212 0.01871660025494064 504533565.65514606 65809.19868451607 320273 26841 107403 CTXC_20200806 1148418.3794614323 98.03399500164778 0.11415516215729636 9.74119915591859e-06 17558580.070010453 1498.325806076414 16549 20063 618282 HIVE_20211104 297725839.30659324 4721.453838827971 0.8173035279717719 1.2968018811772856e-05 15372100.206920488 243.9065510392454 26299 190 90657 GTO_20190716 14819439.932552388 1352.9014900260981 0.022267042963962046 2.036199227742081e-06 6573247.660571012 601.087527961126 None None 852349 COTI_20210707 94137471.86059088 2755.9565647410564 0.14008182049448098 4.101069540029474e-06 19799514.40144565 579.6554123334139 123125 5405 94644 MTL_20190130 9715659.336757556 2845.2282325859233 0.23934856334128995 7.012025368007982e-05 1727769.1598052336 506.1722957300974 32249 None 584585 TLM_20210513 512920111.4501246 9952.02645437198 0.397736246693643 7.890998414033178e-06 133995185.1764156 2658.4345844888703 43140 None 22915 ONE_20191213 19597537.450849727 2719.1029595688565 0.005316252609864762 7.384791390681893e-07 12370910.12159242 1718.439608970334 70878 None 210866 XLM_20200807 2183675284.6270976 185610.4515184258 0.1063472034884124 9.032418724416803e-06 176664480.1875336 15004.696940236028 286346 110575 56657 ANT_20210418 364065892.9867994 6041.71726307271 10.377154707078486 0.0001726355547854514 74603885.60611415 1241.1189333022687 82493 2951 100052 EVX_20200719 5623163.166683501 613.188058250651 0.2577696447032919 2.8111705445612325e-05 445382.2155804026 48.572257875911916 16707 2830 947797 XRP_20210204 17945935420.571823 478998.86648549745 0.39489144954001704 1.0527765986888035e-05 5814855434.455073 155023.45602275085 1109888 253415 11661 THETA_20210828 6937683665.260748 141447.1161405129 6.933141056356118 0.0001413626416263788 294707442.70280784 6008.910285941789 190833 23044 21702 ETH_20190405 16631238666.397068 3393595.6959884968 157.41222580794496 0.03215921447835871 18960578265.68538 3873633.702529775 440803 434277 33191 FIRO_20210806 66027370.255424894 1610.7907019221952 5.431199369806142 0.0001327405648315651 5602806.9035653155 136.9347178002781 73833 1109 285212 KSM_20210429 3523374704.6868863 64368.10413907585 393.22406621949085 0.007181915982520977 285063511.97970986 5206.451915325727 53178 None 86081 VIBE_20200905 3178648.201443234 303.1541964285084 0.016986154657972853 1.6200043979104324e-06 224006.6021675765 21.3639689488 18760 None 2981360 NEBL_20210708 16835429.985760465 495.34329795905455 0.9348120121016854 2.751344146178662e-05 784805.2335666729 23.098433239100974 40567 6107 1020612 CTSI_20210519 338660567.2581557 7912.402127123961 1.0950343959782682 2.559635228029389e-05 104102841.62212467 2433.3966287506705 39541 3246 121908 SNM_20200310 4290046.5834203325 541.8614510785808 0.00987030347033284 1.24543615221523e-06 74643.42937755023 9.41851745 30211 9701 None CLV_20210916 184579614.31912214 3830.3874320639966 1.433899670381374 2.9750134633357754e-05 23258656.927477434 482.56387059458314 None None 84710 HOT_20190708 321947701.28897315 28183.292304341023 0.0018141619428406481 1.5875426373755928e-07 19908160.015099987 1742.1296362429136 23511 6549 316713 GXS_20190524 66028373.0238726 8376.44460748971 1.0994646188433597 0.00013978639276585194 7770158.373618728 987.9011945015451 None None 869901 STX_20211230 2285115547.767218 49270.187387716476 2.1909778701858142 4.704120245983033e-05 133882038.26751879 2874.50282067111 102661 None 37004 BTG_20190813 265076946.46839026 23291.180511257968 15.13154675365328 0.0013296987126524813 9980364.607697139 877.0338014157886 75027 None 277231 BLZ_20210725 44187545.49049354 1293.3336300903793 0.14901851419880338 4.361583380083486e-06 16227685.19301324 474.96381517164383 65037 None 404484 ICX_20190826 110218283.66652548 10915.70542532716 0.22472905976405222 2.225652709596823e-05 22076473.44036615 2186.39115842342 113843 26144 212480 RUNE_20210805 2151728351.8662844 54052.65370360594 7.8865002830237225 0.00019832808788471307 200364701.85828927 5038.730333235899 104587 6308 67412 SNGLS_20200612 10299142.825049624 1110.0051056688214 0.014783647260108711 1.5897050472219425e-06 1677159.7814104669 180.34719867134217 9001 2129 1370799 KAVA_20210128 99758570.84816006 3295.9738428038204 2.1333053078529005 7.01580875336365e-05 43700778.43772991 1437.1890547668947 55098 None 89855 MTH_20200403 2088936.075120171 308.0254711545431 0.005989034873874928 8.792795345133421e-07 86410.08506728568 12.686287686627342 19154 1926 1281286 FUEL_20191020 3378034.073837196 425.16244356648616 0.003412429459775693 4.29491478150916e-07 97381.89186543813 12.256573557177331 1 1496 None XLM_20210703 6142198661.808997 181732.1328026924 0.26534691025313994 7.837026212989264e-06 350604086.89661646 10355.098601934576 599122 195316 23566 VIA_20201124 4874120.083186165 266.14235635557594 0.21034451526052972 1.1485475118067701e-05 461105.1835935442 25.17779988898748 37967 2133 5297351 POWR_20190520 50658281.33613264 6192.535652402519 0.12080927429115097 1.4785090345649829e-05 3700761.959286471 452.91307506680704 85025 13220 633531 TNT_20190916 12308133.157567134 1194.6600489857988 0.02872502028372514 2.788126655761358e-06 414677.6988855668 40.24971729846573 17485 2529 560905 ELF_20201229 49404649.82108938 1821.9391397430518 0.10703220969991499 3.941799813389277e-06 13612959.201000372 501.3402992297722 82296 33323 543167 NEAR_20210523 1218492040.4216359 32415.90277626107 3.171282718176313 8.444127514223387e-05 98421613.60989158 2620.6577253871405 60635 None None RSR_20210616 411607855.75170875 10192.060330044955 0.031245259883003043 7.741518543917772e-07 75236773.86994411 1864.112771920207 None None 81455 TWT_20210429 216440664.94520372 3954.1281949351433 0.6247741688384995 1.1410989240274197e-05 12238705.494485425 223.52994678395243 None 23507 5638 FLM_20210603 0.0 0.0 0.6019497445595889 1.6005952811879177e-05 34457160.13421555 916.2221333661879 22471 None 91315 NANO_20211007 713982825.614396 12862.42095809467 5.369389258680911 9.678970424584702e-05 29897543.21528916 538.9392025930667 None 112087 116341 LRC_20190318 49496537.54762787 12429.324276090843 0.06351466954808245 1.5950276774228724e-05 1942228.6591220512 487.7469235415573 28728 2467 678788 BCPT_20190410 5131955.535440567 991.7445766814985 0.06124233780707132 1.1847256966113129e-05 878483.9108997564 169.9416613685138 10404 1629 1777808 VTHO_20210828 461015822.569244 9399.298345655412 0.011690293307508806 2.3831212096183488e-07 30677164.807144646 625.3684161705874 408820 199405 47063 DREP_20220105 0.0 0.0 1.3870026885872468 3.0199868545344373e-05 19317409.99918209 420.60714619524936 4261 None 476367 XZC_20210112 45086086.45381436 1271.6894184452267 3.9620584006996484 0.00011145454072232992 12514381.894775515 352.03536784307494 67092 97 582569 PERL_20200501 4956837.373116648 572.4137969851366 0.014057821586595586 1.6308937550285393e-06 3156436.1195488893 366.18845415048804 11655 476 557708 SSV_20211225 0.0 0.0 7.958976427774534 0.00015656568819135205 282659.58109701285 5.560362219932784 None None 361558 AION_20210304 91857066.18214776 1807.036748277762 0.18680973003534032 3.674061733698095e-06 12481703.38462144 245.48265643407436 69767 72741 306930 VIB_20190531 8549670.059837148 1028.6351523585515 0.04759806798926936 5.726659107947773e-06 1476402.6139304973 177.63020293111617 32887 1121 1904508 MTL_20200417 16291844.301204588 2294.459168094981 0.25199205931115515 3.5547588119446207e-05 3785782.6254856223 534.0463578431545 35254 None 490866 BTG_20190901 187914327.91973084 19576.830407939327 10.743140724443538 0.0011194098132426198 12618262.273895856 1314.7930365772797 75042 None 255203 BEL_20211111 111089745.13262554 1713.0452514365645 2.325463756816426 3.5808215475197215e-05 15043736.63264925 231.64814386593198 None None 409370 LAZIO_20220105 0.0 0.0 4.5314459583879225 9.84863497389962e-05 3964844.4593972494 86.17184485365341 None None 97982 BLZ_20210828 72449969.6543524 1477.0232581092982 0.23698195756567558 4.830988534811932e-06 11759589.055491444 239.72474733834952 66098 None 427570 DASH_20190324 792975525.70993 198002.95191488083 91.05781215865711 0.022740394364427735 1029669975.3768951 257145.44145298854 320587 23245 93159 NANO_20190729 181222766.94982693 18984.25740581127 1.356560545514882 0.00014225336313486388 8245140.008881145 864.6122723081196 98880 47103 306067 FORTH_20210826 178179145.87544206 3635.1265247630204 20.642039960661716 0.00042123037646127424 80300665.05128205 1638.6500284905903 32205 None 144667 NULS_20190930 24734777.76407139 3069.295419491165 0.335052666865174 4.161168213636869e-05 5375069.231694041 667.5537742256846 21296 5287 318571 FUEL_20191022 4061636.7287440714 494.9642685482828 0.004106370872159884 5.000040346707283e-07 1298930.7139414984 158.16169994086968 1 1496 None POA_20201111 5896497.604357399 385.50333706037844 0.021084782711859405 1.3802560346304597e-06 536751.0561943509 35.136899181314455 18077 None 174905 NBS_20210508 0.0 0.0 0.033277164264883766 5.805744417935195e-07 6387765.748246861 111.44499886096702 None None 486694 ONT_20211204 834773303.0328606 15546.62245377747 0.9548220890063184 1.7772052817851057e-05 225081939.602665 4189.438184369919 179642 20990 85093 AION_20210806 68957734.40092269 1681.7577072824686 0.13944694124773874 3.4051026214383373e-06 4915289.715487247 120.02461829262914 73594 73391 420360 CELR_20201129 22648000.160359357 1279.5913491498052 0.005714019444523255 3.2260595346154506e-07 3631222.656018577 205.01401133642392 None None 342979 FTM_20191203 25431511.45942501 3478.4614996381674 0.012127001670263508 1.6598589822665717e-06 2613873.8343944647 357.7687280418213 19939 2227 617714 ADA_20191216 1132795997.2184882 159177.90551962366 0.03639416759474578 5.116098270912831e-06 50056573.46262565 7036.686531523598 155069 75884 94966 LTC_20210429 17282800744.986732 315666.0509965566 258.9089978311237 0.004728908359169398 6343346986.946193 115859.65278521457 169160 300800 95869 LINK_20211120 13212900025.066278 227295.0648203617 28.432359689307106 0.0004874777360828751 933062626.2112815 15997.52048789947 616624 71870 21078 BQX_20190621 13654234.814327369 1427.4363925197586 0.11454646909970978 1.1977552844124127e-05 840691.2990892481 87.90689525027308 60748 5769 449913 LINA_20210909 129980048.56258239 2804.235603105136 0.04631693690046156 1.000432229971834e-06 40108818.73005485 866.3387013238556 None None 121780 QKC_20190704 79869034.1954929 6661.078434394166 0.01997944904965987 1.6647749724166477e-06 6883512.757684869 573.5643526916753 50955 9224 176500 GXS_20190205 32878042.034488633 9490.549808515883 0.5479673672414772 0.00015817583014193142 1081963.8834609538 312.3188453932265 None None 278365 LTO_20200320 6536410.526078665 1056.9516231871662 0.03089937793613845 4.996495788441272e-06 1623487.189098463 262.5213659538341 14522 414 882624 MTL_20210127 27739102.634733506 851.2272911093078 0.43022990011435264 1.3205074138689003e-05 22788827.987115864 699.458970712428 43286 3355 402004 RVN_20210814 1465826042.5065832 30764.086513554772 0.1557377295166614 3.2622625883960263e-06 278816567.3385389 5840.414262339733 67671 48511 63027 STORJ_20190608 39491191.09233727 4912.283387633087 0.27442235599499387 3.418175303081845e-05 6432607.152357509 801.2386171269947 83633 7736 192975 QKC_20200807 39328704.95824284 3340.8589764771696 0.0074064754267224985 6.290563844826487e-07 3254441.28354948 276.4104313307149 50723 9216 348302 ENJ_20210210 387532546.51446205 8334.394301183745 0.42031978204886333 9.020807298913654e-06 77805941.60271263 1669.85337327522 78833 17210 66239 SCRT_20210620 92857301.54084823 2604.757885406008 1.3308120549074665 3.738153788580098e-05 3799670.6698164805 106.72997180446163 83542 None 48367 FOR_20210207 20612306.960352458 525.6562808094731 0.03630238603112897 9.231730487910994e-07 24410345.830925748 620.7573618840725 20458 None 253691 FLUX_20220115 452896.6493414884 10.507717236674143 0.425952562813115 9.879081879750731e-06 340.1730547350673 0.007889604980466113 8473 160 None GAS_20190623 49623964.44986426 4625.264028545057 3.559836331114619 0.0003317395120676108 6659419.915562868 620.5882821445435 322534 97785 201306 ONG_20200430 0.0 0.0 0.09329984433663316 1.0641739826763734e-05 11626996.565648716 1326.1701913657673 84164 16478 204987 NPXS_20190819 98171076.69792666 9521.3497934954 0.0004167130768632793 4.0388412802671565e-08 2199344.294767097 213.16351754758574 None 5225 188042 ASR_20210325 0.0 0.0 8.692877432740117 0.00016508131743830112 2309430.284360329 43.857030865088376 None None 149569 KNC_20190205 18494256.307725914 5338.537510105163 0.11799670809666621 3.4060837146494564e-05 1646879.2283081221 475.38686544876947 92649 6547 188819 ONT_20200914 485073722.34961325 46992.29576148224 0.7646469380004441 7.404195041354226e-05 278774558.334148 26994.173387668936 91049 16631 197799 ARDR_20210131 80823795.57438916 2362.6509802361056 0.08046053070519578 2.355094048739884e-06 6838495.599515469 200.16398285715954 64625 6308 None REEF_20210111 0.0 0.0 0.009919962372224547 2.579169734165384e-07 4361026.879537816 113.38579840866194 None 474 142268 LINK_20191113 1027619215.2008848 116844.92349111119 2.8182066700517603 0.0003202146582541241 144825283.82744503 16455.56348303941 37232 11594 96268 SYS_20200511 12226425.964393277 1396.3757874649284 0.02085984794407754 2.3823958599298967e-06 299980.6831598619 34.260687783292525 58020 4480 978039 XMR_20191203 935594859.7194253 128016.1800486335 53.95533488472168 0.007385028029575604 136253383.95681998 18649.408103860627 319567 163497 85461 STPT_20210106 15254812.321667839 448.399139179415 0.01668209632921545 4.894003271762322e-07 1453595.3488921167 42.643923478837 17869 None 1561164 REP_20210310 195517194.60624635 3577.3540880624696 33.00482952023333 0.000603346973733825 40638643.34619677 742.8974133783897 141482 10769 132256 IOST_20190616 158143096.2260046 17933.258965750614 0.011668559407312176 1.323353066091561e-06 52068451.83067733 5905.180148766941 197958 50051 103864 MTH_20200425 1909432.5592109354 254.64827816738853 0.005544993859677495 7.397996739092572e-07 37727.47462258136 5.033508445549261 19076 1919 1304375 HOT_20210112 158514066.3561262 4468.029079648862 0.0008887603716172071 2.500124152973389e-08 19112286.446671475 537.6374835088808 27026 7468 750555 ONT_20190224 578896660.8003223 140687.3702564328 0.9688647042683219 0.00023546003390197964 165546393.63009876 40232.20093039775 67591 11107 278128 BTCB_20190806 0.0 0.0 11811.74089231337 0.999929743031755 186118.18677807867 15.75594253 None None 55533 MATIC_20191203 66225094.05117806 9058.110460106642 0.026354957438810257 3.607281834497501e-06 41429589.01005738 5670.591735678547 25204 1246 219961 GXS_20211002 41116426.88859155 853.8601822365405 0.5490372998130297 1.1398549352176108e-05 7472571.914912308 155.13787458305515 None 26990 848650 AION_20211230 70467076.29338168 1516.4494604509503 0.1410056530597882 3.030047626187835e-06 5063164.172554828 108.80151433037938 1058 74028 309330 PERP_20210422 180875229.79926276 3338.165895811946 6.1596221840328935 0.00011377025401562085 14738416.759367403 272.22342026884917 17247 None 280871 TFUEL_20201101 0.0 0.0 0.009268794580769676 6.717261521551909e-07 784644.9278038489 56.8646239345181 74755 4501 75769 POE_20190601 14650298.489516605 1710.133175104178 0.005827341016769901 6.794967081540363e-07 234339.90113378657 27.32518844380474 None 10865 931861 HOT_20190421 257141611.50294825 48425.182335811856 0.0014476785559115084 2.726345496112438e-07 12885198.981936542 2426.6094201275587 20884 5959 231377 NANO_20210823 961576077.8552997 19489.055996775332 7.20438473091134 0.00014621134773338366 179398702.62845686 3640.855822202757 None 108614 81313 PNT_20210909 36670505.45922003 790.6932361445447 1.132558772905363 2.4462936769477626e-05 7167773.60225385 154.82180404647193 None 336 472907 POA_20210603 11068715.215255957 293.9154144681668 0.03841430695069479 1.0200020060459526e-06 208436.87959968875 5.53455345682856 19739 None 235395 MTH_20200626 2947790.0135392277 318.30227680582595 0.008474562298142757 9.158569379551929e-07 338853.3722306345 36.62032338530958 18988 1909 2521194 VIB_20201224 2908765.8945618407 124.41243776701731 0.01584302186209881 6.79394242708074e-07 813170.375130606 34.8710792684162 30358 1094 3150523 CMT_20190801 32716300.31823116 3249.7041103544193 0.04085246310248672 4.052063672426983e-06 6132118.443641903 608.2309974349708 290780 1647 586149 CHZ_20210128 101299535.0666596 3346.8865384618393 0.019047178863904366 6.28575229726133e-07 33834495.84585921 1116.5709185039566 68343 None 119636 PNT_20210624 33998102.75347773 1008.4466819661865 0.748183286517084 2.218700162437032e-05 4814562.506160609 142.77344611917997 39977 310 328870 CHR_20210418 180615096.88943812 2996.128930941615 0.4000409722356324 6.655128224281124e-06 163049922.11040217 2712.517501743845 54674 None 107103 VIDT_20210206 29958554.573776405 790.4422026453786 0.6407774582470595 1.6857484023394127e-05 6107191.224034394 160.66713515268245 24636 1239 None NEO_20200105 639032945.5267653 86958.54502491678 9.074177485729221 0.0012340649917231027 335669807.37125033 45650.23757875157 323300 98680 215815 POND_20211221 48778379.24946779 1033.9072806839642 0.06039034963037935 1.2809991717237921e-06 10295804.970256926 218.39445739016128 None 788 3495821 CTXC_20200105 2369333.1765837204 322.4353232151549 0.06878456136754774 9.354346421268787e-06 2954677.0956071843 401.8208819797449 None 20063 634574 REN_20200907 269426865.8475623 26164.332286380606 0.3036283454550607 2.95669989167731e-05 95662121.70163092 9315.473640938339 22339 955 91896 BQX_20210825 976474598.8618687 20301.65444920345 3.5629108111846275 7.418868513237752e-05 5766584.098415552 120.07465654872308 103124 6766 34355 LTC_20190805 5850597772.628011 534499.4542569898 92.95454564546877 0.0084889718440371 3101629900.045148 283252.9459347678 451594 207269 141428 POLY_20200903 38322980.29163267 3359.216765258345 0.05543087105867457 4.857713733533646e-06 1872312.383985234 164.08108708093013 35306 5014 332853 VIB_20190909 3123587.0409161844 300.69586405066667 0.01711408414416356 1.6472049040032025e-06 342825.97043511074 32.99648493974206 32301 1119 4329648 LRC_20200907 216375850.67892888 21014.433556358745 0.18574864046754266 1.805784726560885e-05 60442224.99105038 5875.986303504995 39940 7063 169251 ATM_20210325 0.0 0.0 9.313273751033456 0.00017663965426166115 1932294.5452873118 36.64874989563897 None None 183792 HIVE_20201129 45582905.101222105 2575.392556678384 0.12218766164903863 6.8976840702175385e-06 2872596.4767642324 162.1625513617935 9460 96 151628 MTH_20200320 1820266.5631664621 294.1179294655804 0.005459965413108352 8.844882075954936e-07 206942.02270496782 33.523615057901935 19199 1928 1053445 ENG_20200329 8786483.300422112 1409.452325686997 0.10684863408014958 1.709012890847682e-05 2248999.251512168 359.72090288565926 61021 3597 414852 DOT_20220115 29684561956.36822 688715.5906001494 27.748763536504455 0.0006433846932481946 1484988317.430836 34431.03876792581 1098838 38093 13365 CVC_20210826 238599751.2013208 4867.698032095524 0.35677477677532154 7.279520739701585e-06 57850536.01608699 1180.3642077454404 None 9859 272876 FUEL_20191019 3386685.5119197806 425.66218413142116 0.003421168987423175 4.29996307110232e-07 166777.6408349064 20.961773572483246 1 1496 None MATIC_20191019 29276470.57002541 3678.6118986208403 0.01335471294032692 1.6780523712649193e-06 12557091.917609824 1577.8293373051638 23957 1186 198579 OGN_20210219 86218405.31349279 1668.1684647169352 0.4054622562515821 7.84252890942938e-06 34509599.3998592 667.4913059683013 72592 2813 162285 QTUM_20211021 1363251626.8154018 20565.65631573479 13.130848137188057 0.00019816962206150782 199267206.80364034 3007.323414981338 258624 17322 165838 DLT_20200410 2648183.6228539757 363.19414009966204 0.03229106526096568 4.428667853371583e-06 80662.85567876189 11.062781392273 None 2579 None IOST_20210115 267750277.2939536 6855.441647040415 0.014669804643034906 3.7459379244963236e-07 392316751.7804741 10017.817105747477 197531 52162 596701 OGN_20200309 13852575.616215287 1714.7467591671757 0.48165698186079936 5.9819809107942203e-05 104453646.0649431 12972.711708846908 65525 2161 120835 AAVE_20211028 4355379400.542712 74415.30223260816 326.7179505844592 0.005581869133235571 2351528326.0417323 40175.09094795911 326289 13665 14216 ALGO_20200321 109006443.24738416 17632.685337737323 0.15843845127324388 2.5552560896243675e-05 96362012.75572357 15541.026684101738 16114 820 354014 STORJ_20211104 245732512.04252368 3903.701863244788 1.7122309585387012 2.7150077971558432e-05 142680414.11263666 2262.4193008859047 107549 14284 62396 EGLD_20210616 1635588246.1568296 40498.12140776304 91.4366331879347 0.002265476848812881 46185168.28681637 1144.305360601529 243399 9088 30591 BLZ_20190105 9283724.495413683 2436.645558860491 0.04582939532541179 1.2038124987291701e-05 633088.4623636879 166.29497255706843 35004 None 743287 ZIL_20190708 168918770.68093517 14787.144218550138 0.01839363764740707 1.6091741730478891e-06 27611463.930654783 2415.5991049174827 65309 10603 184168 REN_20210304 993938994.5226222 19553.033460562372 1.1257779239854566 2.2219452483355504e-05 165573141.3214616 3267.9132071519 55332 1094 64010 VITE_20200316 3430786.5425304226 635.0271825364782 0.007044606372314564 1.3109647200282068e-06 1098842.7140254667 204.4889316468832 None None 513506 TCT_20200324 3232468.262981735 501.2722182486555 0.005561654053909699 8.582997436853802e-07 2823919.6909691226 435.80012770536285 29 None 409993 COMP_20210610 6316602.616697419 174.45653973624525 7.11500504294718e-05 1.9618538565953023e-09 3.254156251488718 8.972838323249307e-05 2479 None 2936409 KMD_20210125 76664783.0088535 2380.9450709052076 0.6208411761789087 1.9236072056422725e-05 2897416.998773611 89.77323718917131 96820 8417 314092 IRIS_20210430 146299134.57563087 2729.99929686219 0.14866917553732997 2.7739748705567426e-06 12677724.295649134 236.5499673006996 22843 None 536237 XRP_20190130 11798293273.639153 3455127.022772884 0.28660870624572465 8.390903925694002e-05 413279470.8158555 120993.82393165633 911917 197609 28091 COTI_20200713 16603916.427116157 1789.2500341214234 0.03227277226649354 3.473479355206699e-06 3074141.47898138 330.8661206435173 None 1033 317411 XZC_20200502 43078151.18505213 4861.199715054406 4.323061941629974 0.0004895027804756293 57380687.45284731 6497.24811557557 63652 4098 147349 SKY_20190414 20169065.297876325 3974.8120406283524 1.3439032155218122 0.0002650012684169448 672160.6241080638 132.5418496743459 15512 3665 412487 ARK_20200806 78871553.28585957 6718.657981321089 0.5216663766539585 4.4438049196139584e-05 6852077.894991725 583.6929275497562 62548 21833 107464 WPR_20210203 8017360.344245621 225.0958322435337 0.013130630652058916 3.697236008637326e-07 724500.9421035603 20.4000176565543 32549 None 7510517 VIDT_20210217 32536746.433839157 661.2268334549537 0.7148050352343743 1.4525728281656804e-05 7303071.989221165 148.40751548710423 24385 1282 None THETA_20200425 101168843.1303651 13492.2134762279 0.10126396930235096 1.351039394532232e-05 5169524.915024626 689.7055151335068 None 4022 358410 BQX_20210805 752152447.4589056 18886.73943065832 3.4211730950174624 8.602252749589345e-05 9453909.97226811 237.71063548860974 99405 6455 29593 PHA_20210711 139593517.40162537 4139.717716160845 0.769812746751923 2.2829193827723353e-05 11601952.149724653 344.0618715701645 108048 None 165668 POLS_20210727 71667101.57045665 1914.267652901254 0.9892774364383883 2.6512451472540033e-05 16086588.320135988 431.117577827114 None None 18534 BRD_20211216 73931577.54555932 1515.4138954103914 0.8437372230553369 1.726516315208133e-05 6558620.215316728 134.2072448338047 1102 None None CHZ_20210710 1354709953.4529815 39942.34534879747 0.2543826126089749 7.485327059451177e-06 303197247.04785055 8921.720452517704 None None 35776 NEBL_20200612 8430464.577022461 908.5534445193496 0.5146270608406435 5.533852517320875e-05 300963.88672368653 32.36304284986432 39031 5952 1283698 ROSE_20210511 209665419.9576156 3755.1624990618793 0.14117654870006527 2.5266314565580107e-06 18945367.98448927 339.0645482301374 None 1473 225625 MANA_20191019 39994824.75582281 5025.3816585616305 0.030139467467207682 3.7870978641021738e-06 7737964.201964483 972.2941433402085 45862 6406 85405 WAVES_20191022 80689464.23292573 9825.926129081568 0.8083718428994294 9.836307164202541e-05 11525049.502282001 1402.3735238040586 141995 56892 23523 ATM_20210614 21030724.98764451 540.3460293876632 11.218153953469212 0.00028736814326658157 10889731.308499329 278.95515427720255 None None 91720 MATIC_20200520 76146913.29894604 7807.2525428249155 0.02217760761957994 2.2738437578156596e-06 56333738.26738069 5775.831248841029 37429 1749 157570 DLT_20210206 7468001.758034131 196.8411214760624 0.08935540556849733 2.3507495502347583e-06 1751723.897497042 46.08410804 None 2538 6584036 OGN_20210821 358928388.83652693 7304.478602301061 1.0633263043065113 2.1635085392817995e-05 52911152.103802964 1076.562565378031 118483 6104 109678 YFI_20201229 688772519.3494413 25381.832597866363 22890.752713900187 0.8433466157909516 403209950.29768246 14855.157944644556 None 2437 13049 NBS_20201111 0.0 0.0 0.00618970850491298 4.051864638144301e-07 2051345.5176767514 134.28377696773455 None None 802433 TOMO_20190930 19279580.056889206 2392.350979169905 0.29747926266969615 3.694527381676955e-05 543697.317081427 67.52418999814384 17264 1334 283081 TNB_20190906 9631285.152941193 911.2298912730611 0.0033392369913504928 3.1593006667797414e-07 600561.1880508822 56.81996715913943 15571 1463 1259839 BEL_20210418 150530662.51212275 2497.081037709518 4.727042236864471 7.863962541665776e-05 37540030.53634 624.5203219224614 16172 None 318373 NULS_20200422 17748836.907038707 2591.726199000007 0.1860749675169715 2.7182249660988635e-05 6365162.611392342 929.8372669062875 22829 5179 583809 HARD_20210724 45777478.376307674 1369.2859237828382 0.6262793140096292 1.873076876965647e-05 10118358.143454395 302.6199691958863 35102 None None ZRX_20200626 234529744.1518857 25324.689058975928 0.3358381710545933 3.627325914226017e-05 42512226.74525045 4591.666910889408 154004 16090 84197 KMD_20190603 183222457.27666378 20952.942221520363 1.6093213779247277 0.0001840271417165808 10741981.78886423 1228.3539087297881 97093 8375 375668 RVN_20191213 120190132.79492933 16676.041396185527 0.02373910517823153 3.297885117623436e-06 12840042.611482095 1783.7650206330186 29006 7236 221280 KNC_20190312 40917881.49370785 10582.643361322385 0.256918497971776 6.645137259158414e-05 27935833.338702332 7225.5383886388745 94167 6633 214116 ASR_20210724 8514202.076098835 254.71355735260536 6.86713882903841 0.00020530216967478183 14422934.881320437 431.1926550388101 1990723 None 109290 MITH_20191015 7219368.028440285 864.9400977680233 0.013311459522391643 1.59473911865432e-06 647374.0487567093 77.55668852219635 87 2082 581138 RLC_20210809 244328236.54880318 5553.881765225812 3.425753584496657 7.787865110265596e-05 22940705.447254907 521.5177190971447 46284 7761 152995 FUEL_20200719 2360841.8040222265 257.31378057126284 0.0023834402695283607 2.599336594082129e-07 109258.32157621981 11.91551376856024 1 1460 None POWR_20210826 150133041.51422232 3062.954810487614 0.3512223659960927 7.167195186720825e-06 69601394.11832114 1420.316088068947 None 14138 202845 EOS_20200325 2200037067.348199 324822.3953896486 2.350405003270226 0.0003478343653851414 2224363281.818757 329181.5620886356 1481 70469 93580 DOGE_20200113 278184999.84880733 34103.11714558933 0.002265321943642647 2.773830753411598e-07 52330281.75188446 6407.713714398602 138487 146587 132410 UMA_20210509 1616468916.2939684 27564.29904516399 26.802337292237148 0.0004562682621388515 66489806.61620906 1131.8859315867458 37357 None 112681 CHZ_20210220 289719213.0997959 5186.795606234551 0.05401686328493259 9.668501990931271e-07 703385181.4987521 12589.922135684643 73621 None 95433 REQ_20210806 51153470.99120855 1247.9299891080484 0.06658373535396252 1.6258832913096316e-06 1605641.1730188332 39.207550330003485 43417 27805 309382 XRP_20190419 14115043056.818666 2676927.9311814173 0.33640150649965944 6.37913852248931e-05 1270634053.458099 240948.70212507522 917725 200331 39208 PERL_20210324 0.0 0.0 0.14095951333775494 2.583145338749263e-06 19947796.30598203 365.55217754370506 16178 595 385073 IOST_20190905 86622095.63949087 8201.356707369318 0.007213388044687041 6.828838537866198e-07 25410218.76366327 2405.5586649982165 196212 50752 94352 ENJ_20210508 2327138512.4113235 40612.992470714504 2.4943810721800457 4.352449463034818e-05 427282963.6771384 7455.667165543061 176815 30968 21427 ETH_20190515 23191421813.968952 2903622.0459293076 218.28460968764938 0.02731233732510616 13905655019.126186 1739911.6738115088 442147 436892 36863 VIBE_20200317 1047359.0059216211 207.51101245526064 0.005576486340726966 1.1089035109947624e-06 147172.58722914167 29.2657757464 19395 None 1312296 PHA_20210805 140130546.84446138 3514.9311008927316 0.7642207406663016 1.921546937820261e-05 16163485.130200392 406.41262012020957 107188 None 139541 REP_20211028 147835683.33514407 2526.196429936817 21.463203860213433 0.0003664876396700649 18691459.291994315 319.159657734527 155523 11964 234958 COTI_20210823 201208816.49846607 4078.4978404165286 0.30008784858396736 6.089302720892373e-06 58560256.16229327 1188.2891255606082 128242 5667 156434 WABI_20210930 10802164.826266019 260.0530221291101 0.18292604816726554 4.400467012752737e-06 7474314.202901548 179.8020206654377 45291 7890 795364 NXS_20190813 14068794.662095608 1235.8065110810928 0.2355711866996277 2.0698727800257578e-05 128646.88328201165 11.303703380333971 22075 3540 855550 MKR_20211125 2789916847.0433187 48768.44682008349 3094.5724885966547 0.05410191373296843 128645294.34679446 2249.085016605589 190908 31807 34770 JST_20210617 84983173.32111083 2221.8131978920674 0.05933715932664288 1.5503796454885538e-06 58940827.3887991 1540.024162073726 47268 None 93769 IOTX_20190528 29609017.203147102 3357.8978919331325 0.011709531687604764 1.3305596047696218e-06 1290505.3284332375 146.64072872964388 19649 1723 780068 GAS_20210217 55650307.40537438 1130.9513267183972 4.002622792120508 8.133827858843409e-05 18215150.11414601 370.15452903310916 343196 104093 123772 NEBL_20190605 17718524.79749431 2312.675194329504 1.16262460086626 0.00015160234827278973 269006.3486352465 35.07752555984614 40274 6157 715559 HARD_20211202 95461307.1147173 1670.089078099225 1.0141738548304797 1.773555120618813e-05 9074072.30210787 158.6845028553687 None None 43021 BNT_20201224 109614289.99383505 4685.548469663916 1.1698716479722826 5.017572504233146e-05 115228870.52434799 4942.159367986564 88899 5293 105312 OMG_20190618 297714169.9706851 31940.22128097149 2.122322277140272 0.00022778205462832383 191320990.8009097 20533.869359784097 289448 39754 None ALICE_20210725 183972614.72285998 5384.729271462359 10.599943478012378 0.00031024761532464674 454227228.0212559 13294.685448223167 84623 None 50440 SNGLS_20191022 5925961.230688331 721.5628146826365 0.010270477337939331 1.2498372362577655e-06 390108.33306141425 47.473150934621344 19 2163 None PPT_20200807 11810545.455615794 1003.7679215356023 0.32601590618268106 2.7707806533265095e-05 2811735.551117969 238.9669436233748 23697 None 1034545 AKRO_20210107 24377864.34524036 665.0960458957687 0.010362952446590964 2.807674813219754e-07 6969468.376531254 188.82650406019698 25241 None 214700 MTH_20210111 3439317.6030567843 89.21697234765311 0.009685437106979862 2.524791547970694e-07 333237.8401482329 8.686815814063152 18957 1882 1263562 WTC_20210508 56508800.20135642 986.1860241094051 1.950174090321491 3.402861842928351e-05 137166919.89084378 2393.42774639989 64411 19613 333404 PSG_20210821 100912016.61294675 2053.8926337985044 34.80811021074998 0.0007077016890962336 120570044.88214207 2451.371933175172 9968999 None 16263 BAND_20200329 5576344.791192094 892.1225010625889 0.2922253102637531 4.6740590235163286e-05 2010598.079877891 321.58932740753505 None 1061 702901 AVA_20210428 279821663.93050826 5079.361733741159 5.351423465138488 9.711219365905402e-05 19367568.34218932 351.46294435568075 67980 9941 42647 NAV_20200109 5857862.669858135 726.9305976774654 0.0869271955446778 1.0828610398649085e-05 276777.3038014084 34.47843418017054 49915 14064 586166 HBAR_20201031 170670907.57227767 12566.466435120241 0.029362011741666496 2.163481203983906e-06 2457762.915815 181.09535269576995 None 6720 169920 UNI_20201111 656695052.9585853 42968.30831852864 3.0499147801985553 0.00019965143491702944 285676579.766339 18700.764835411454 138049 None 3220 KSM_20210902 3503036812.1072807 72013.47081201432 388.70563082011705 0.007988978266412265 580543220.7799925 11931.772544017145 114920 None 63129 FET_20210616 201612485.3217349 4992.243430186027 0.29217466007858867 7.23909981075783e-06 27717709.07102031 686.7510770328024 None 2905 113407 TRX_20200407 900572332.8889868 123818.4898828203 0.01366561925002807 1.8736520015142799e-06 1033766524.599581 141736.622576433 503420 72465 50971 COS_20200707 17353967.999318283 1859.1132925910467 0.008825853223443007 9.446322924072913e-07 3555189.9205879956 380.512469401596 12365 None 288612 EGLD_20210219 2625294599.364897 50791.651542255204 152.67077941673742 0.0029529875660188713 418442189.7674787 8093.589278850618 156722 6386 32014 WAVES_20201014 251955157.6477967 22054.12085852801 2.520010048157399 0.00022054289303871557 47883422.267608725 4190.597764963073 145351 57062 143091 MDA_20190906 11013929.14858498 1042.05172733389 0.561108155927375 5.308765974587506e-05 431425.17614993977 40.81807173057137 None 364 3117488 LUN_20190324 6912447.014433026 1727.4765971597778 2.5571279617948814 0.000638448277503593 1791684.8642149789 447.3370642681469 31738 2246 1442676 THETA_20190916 100143484.8904205 9718.968645347468 0.10015571753989952 9.718972607040691e-06 43900572.542037375 4260.05097312083 None 4026 338625 STX_20200423 60100880.94125787 8451.043548273114 0.09433917812394613 1.3260599064982511e-05 800079.4607828531 112.4615791715891 35888 None 63028 VET_20201106 631315758.827031 40628.64193096648 0.009725628667336427 6.256397410270886e-07 107945236.10561898 6944.006590447305 138019 68016 103170 GO_20190627 11858979.841884857 913.6596801638306 0.016279591992176438 1.248366688965747e-06 1328392.7985178719 101.86504184678866 9918 675 943493 HC_20190325 61384708.98203812 15383.053947104927 1.3969025703419533 0.0003500681508916554 29240199.69131638 7327.685448482032 12453 796 596410 MKR_20210711 2419381970.058708 71745.94711994259 2682.2656088605045 0.07957936500169867 76246934.84074679 2262.1483263658706 165950 28806 29892 ZEC_20200907 589022329.8953236 57205.87845620564 59.01577533866031 0.005737311749063549 627941333.9295398 61046.30791009055 71812 16131 174620 GRT_20210120 659083306.0467894 18200.99684068128 0.5392483074794595 1.4961711733134795e-05 492657025.8724178 13669.0135178355 None 3134 38348 ZIL_20210221 1561303381.3686886 27943.499749433508 0.1356421484753769 2.412563166314877e-06 410147548.7833385 7294.980801108747 144752 19947 35455 POLS_20211007 158868057.36056113 2862.1985485358928 1.953657535371678 3.521263270969049e-05 20884858.926777538 376.4277276172706 462376 None 26189 OMG_20210219 916029376.4885471 17723.911982167843 6.560851547716756 0.00012690125194172715 538778347.8706594 10421.154383180046 300037 42648 165404 QKC_20201129 31249432.226828482 1765.3317111405663 0.00526607822058076 2.973157865225425e-07 2459770.4962539272 138.8753772970026 None 9217 96511 QLC_20210128 4020816.8881564294 132.91420320543656 0.01688370471790116 5.55368179567363e-07 780523.9769348571 25.674352129564863 29726 5590 940522 POE_20200531 4859143.253604664 503.4125630230644 0.0019302999083431905 1.999911501897421e-07 192644.0221697348 19.95912624995766 None 10295 692574 GVT_20190810 6081004.762053334 512.6451685865406 1.3702590999455995 0.00011551371604145915 325902.1795406222 27.4737615873105 21353 5723 213598 AAVE_20210203 3736440115.696903 104918.07999670402 302.2935787480049 0.008509147897677967 667054886.2981093 18776.676325338034 108014 3508 18454 PSG_20210201 0.0 0.0 8.087866829168581 0.0002446741032184532 6287645.808696496 190.21382672249425 None None 40302 RVN_20200320 88534959.34768246 14316.293111944688 0.015305152084555722 2.47936122484307e-06 15516380.624911746 2513.579235199687 30210 7591 202553 WAN_20210909 170325255.22870892 3674.6573809006213 0.9616206078850797 2.0818190513912158e-05 9936489.04080188 215.11573295602147 124761 16834 352784 HC_20190105 38380997.65046376 10073.638819833397 0.875257696594638 0.00022990618734724966 23098847.189900313 6067.4335229596045 12142 763 378637 ADA_20200914 2958040571.6542745 286564.93026322866 0.09501920622465607 9.200857292409696e-06 640311191.92505 62002.327042239674 164650 88174 22859 SC_20200412 55463292.239065245 8058.735465753705 0.001260628850718736 1.8318284064689845e-07 2024511.5277424944 294.1831549887362 107174 30105 166038 ADX_20190701 12111578.854615958 1116.221880912453 0.13197594625167203 1.2168155785388236e-05 787845.5421736678 72.63920103828309 54195 3885 882596 BTCST_20211104 269286603.39455444 4270.45321394786 36.93359771894724 0.0005857456896338925 14691469.285226109 232.99828177300043 None None 2688083 OMG_20210729 547788296.4412771 13699.159445552968 3.913511756295816 9.780867901869535e-05 159584325.2526877 3988.4208907625857 None 5004 225112 GVT_20210821 21523064.482559685 437.7228538184515 4.85015006711777 9.862070189379237e-05 875967.0098303674 17.8115068915 25838 5703 751259 CND_20210711 22207201.84930369 658.4575894219819 0.011505820123697578 3.413064288806519e-07 130918.90700809359 3.8835532055520114 36089 6254 150163 ZEC_20210107 695226288.137673 18935.829229305004 63.90761671732834 0.0017307686799010943 556956555.7436577 15083.69443677494 71964 16569 167554 KAVA_20200707 34219466.958401814 3770.594323316732 1.312961568799425 0.00014058801982461165 10543167.69474659 1128.9310396484834 25413 None 340069 BCH_20200425 4372273979.629104 583101.0030795386 237.71886155927535 0.031709274209173445 3093331608.2649107 412618.9211196328 2944 293061 142695 ZRX_20190716 147921425.0542773 13506.312875550213 0.24697293112398458 2.2584323048271306e-05 46786673.71861711 4278.385282170296 151398 15983 206099 ZEC_20190623 770226715.0833927 71744.89384820763 112.9264981368082 0.010527793127324903 871013357.0116627 81201.91970042749 47 15225 185342 POE_20190801 8118725.176836145 807.6690826540332 0.0032253330676522817 3.208634044464112e-07 132891.45132460762 13.220341155301451 None 10805 756599 REQ_20200701 19387558.654864922 2121.0163678481385 0.025119897643641396 2.748139412976776e-06 389239.6787347657 42.58317121352592 39072 27911 569797 WING_20210718 30337433.356419444 959.8739441750145 17.13283897178751 0.0005431009351766727 22139414.21130209 701.8064304591661 None None 411490 TROY_20200412 4281867.373585076 622.1490840181198 0.0022452956246091266 3.264628691743755e-07 1311414.1590217873 190.67779954574323 8754 None 412780 UNI_20210124 1999895064.9501379 62465.511054444236 9.298225615765372 0.00029013277186194217 642329832.0118979 20042.63418767211 171733 None 5976 ZEN_20190426 42225060.398803346 8136.001691294404 6.705551360301965 0.0012908345150389538 640981.5555517413 123.3904672340451 25441 1564 245481 TCT_20201030 3885372.507913616 288.4441102625751 0.006706266607710049 4.984560214131112e-07 446187.4891105697 33.163733808415316 None None 487164 THETA_20200223 127751512.3391154 13234.67075715115 0.12792818661676758 1.3252756698809489e-05 6417896.370499322 664.8637908954136 None 4028 394395 AST_20210117 24330716.171327207 670.8398942001028 0.1409445981147931 3.8946292113395545e-06 3125936.6435542414 86.37694759232699 34923 3461 178843 CDT_20191030 8858531.510044986 941.3754057475035 0.013131937240169205 1.395500228643682e-06 89633.70233684755 9.525163714812178 None 300 183019 CELR_20210111 28115572.476694886 729.3321207333692 0.007151410296685672 1.8593519109966302e-07 6201389.717314621 161.2348521950649 None None 415548 RNDR_20211204 793972218.3642528 14786.75261038061 5.116501249869336 9.541482097478523e-05 100866782.87609184 1881.0092210317773 41160 3961 72648 WPR_20191220 3946278.111638717 552.6283050875204 0.0064893257081350166 9.081514654341274e-07 256948.2445801314 35.95873213200688 33940 None 723687 WABI_20190616 17491191.732792024 1980.0225039123052 0.3118484262093193 3.5354050515496395e-05 1152451.2222417917 130.65263539420187 36353 8023 994304 PPT_20210707 73871450.10562286 2162.639528032601 2.098110368360975 6.142479083247079e-05 3458604.5909903217 101.25495149226256 24472 None 723163 ADA_20190723 1868514715.3943288 180549.06760518168 0.059987636321957 5.8003603666341846e-06 137533640.90741175 13298.484966413893 154071 74693 95231 DOCK_20200411 2542964.038056384 370.9011472597709 0.004534709798123213 6.610595114254168e-07 326219.1735334678 47.55547699279212 42810 15006 604505 ARDR_20200907 56235098.167849764 5461.555576907418 0.05605776331475783 5.455631526873266e-06 4372534.551124631 425.54208264634974 64081 6285 944701 XVS_20210420 714668178.773583 12772.211328492009 73.59485148897306 0.0013151019038115165 133838272.55177447 2391.6206565354028 None None 10756 GTO_20190801 15840681.937687322 1573.4520316477729 0.023912901099950836 2.3718667245684837e-06 4294893.3298379425 426.0007822570175 17450 None 944506 IOST_20210220 812934684.3064541 14553.83646670328 0.043996616896871045 7.874973706225804e-07 715287880.3256851 12802.969062713 208540 52501 193443 MATIC_20200523 68458992.5671145 7478.433937298976 0.019934234106804248 2.178110410606806e-06 27202628.03948504 2972.2901322024095 37462 1756 157570 NANO_20190608 212431179.86332282 26424.175290584706 1.594599938320606 0.00019862165047379598 7100538.318839878 884.435403669791 98226 46031 382519 PHA_20211221 63566441.291134216 1347.3552723421103 0.34832356499277994 7.390755269754295e-06 5822249.861608301 123.53692994443173 None None 134566 VET_20210610 7874669477.312003 209791.94977297768 0.12051373276132477 3.212113226420714e-06 1569233128.8209848 41825.56106204237 376140 185723 25894 BLZ_20200129 3973247.959663806 425.1304505681273 0.0184874623382757 1.9785434020559583e-06 601448.2865528754 64.36748955930756 36261 None 708890 GTO_20201015 7170398.056653833 628.1821866017503 0.010865309684234067 9.507599524240001e-07 3303247.608268722 289.0479544673607 16520 None 1354714 AKRO_20210210 119038839.42465657 2555.7631043916153 0.04634421283666477 9.950548718955636e-07 63294178.02890302 1358.9869447617018 28588 None 187936 ALPHA_20210523 254528678.22953638 6772.250573925569 0.890128189962992 2.3702099729744527e-05 44202102.77556756 1177.0019869772668 64849 None 38513 BTG_20190930 130983445.51472275 16253.53680210265 7.405057683835007 0.0009196670762964316 11832863.881096354 1469.5760376718224 75090 None 262678 CTK_20211225 119800659.9853166 2356.9452158816894 1.9981832889796434 3.929505823366027e-05 17924729.129339542 352.4968299177681 None None 1041807 ATOM_20190906 474700085.64352435 44914.12149342414 1.9459297310923374 0.00018411567008980943 111846580.21284318 10582.452045471156 28307 6775 108058 OST_20200412 4761966.695181951 691.9068151921074 0.0069289301156745765 1.0074568271007288e-06 140305.39558539694 20.4002098883653 17778 755 766373 WING_20210217 27483765.31479496 558.8445961917002 28.790776652513248 0.0005850644274423053 7864354.750829044 159.81348002626103 8363 None 342300 LIT_20211104 156018075.79461706 2474.1962088432524 5.6257830847908865 8.921588802625365e-05 22804125.463415086 361.63681983773165 62862 None 295730 DGD_20190716 38796546.42877345 3541.827876778214 19.414330841348608 0.0017732149306550209 3206821.7538535 292.8962249768349 17150 3370 582962 WPR_20200331 3631059.8999967664 565.2559223242587 0.005959557257568258 9.295746380200051e-07 175270.90708596678 27.338841287742998 33457 None 1041855 TRX_20190401 1564123250.932082 381165.65055132256 0.023526516349464364 5.731739716581429e-06 175094518.21968907 42658.08797732741 405776 70344 89278 SNGLS_20210703 7220686.26875561 213.63063637548876 0.008130857180925485 2.400469040597202e-07 108980.40555812752 3.217423252590394 9516 2138 None ETC_20210127 864597501.1795467 26531.823993015507 7.425880485774513 0.000227966782149218 776000364.0876184 23822.40143597264 260672 26655 164892 ZEN_20200331 49775484.91451448 7743.576993193435 5.683835788633195 0.0008865674692652849 2040073.0717229317 318.2115894218311 58824 5101 40207 DOCK_20200331 2201896.6542380126 342.7746053308335 0.003927702936384369 6.126450133024489e-07 218028.63233535105 34.00821205698591 42889 15013 603637 VIB_20200320 1795007.2640840376 290.0365422137314 0.009893294225601463 1.6026662102673346e-06 550671.3005908934 89.2061093399188 31460 1105 None AST_20200404 2200886.9870916167 327.2844725810272 0.0127810752902005 1.8999174466553578e-06 3614732.1471145623 537.3329328992007 31701 3465 340670 HOT_20190316 194502014.55593127 49561.91724294016 0.001095163893082466 2.790606542318423e-07 5189926.741261263 1322.4544389929445 19175 5713 221294 BLZ_20190321 11767609.187836286 2914.045479552121 0.05743731648557894 1.420905321248057e-05 580859.3570011349 143.69511003649708 35022 None 1348267 SNX_20201101 395423176.50119925 28657.35613224097 3.012754419555087 0.00021862078684347852 16164590.44860003 1172.9849137180563 None 2463 34400 XLM_20210702 6302749545.42061 187608.83085379555 0.27109467222005834 8.059250841998088e-06 374467383.63842076 11132.371404329893 598873 195259 23566 OAX_20200523 1884137.6999513817 205.82711728572852 0.03594175019349398 3.933172150895456e-06 121549.98309794227 13.301439298 11772 None None WABI_20210427 30111466.288476687 559.099005058617 0.5095970975431297 9.4563997622528e-06 9657646.088724338 179.21326989034725 44222 7708 293001 NULS_20201130 24505042.099834707 1351.0334488171288 0.25047250168473106 1.3792222547820475e-05 9659626.793225335 531.9055847046499 30032 5122 393845 CHZ_20211021 1756719032.3343732 26503.26800301428 0.3290120197297376 4.965420886932741e-06 171360273.05108383 2586.154389427139 None None 55249 CDT_20190524 7272826.2344251545 924.5420332741098 0.0107812787662187 1.370546342030496e-06 3085232.089522281 392.2033412083736 19810 292 386642 TNB_20200430 3940844.9877458303 451.38738553825823 0.0012130586650093498 1.3836094582381042e-07 334619.1872766839 38.1665195409489 14938 1437 4384247 AST_20210724 20861190.35436609 624.3410470089676 0.12124140598306996 3.6260893342263754e-06 1589127.0173098028 47.52762871293899 44258 3699 213143 MTH_20190411 9189158.079902688 1731.4093992439148 0.02690653719812327 5.069428898566149e-06 1121397.384870281 211.28115698345704 19375 2010 1241512 AION_20210120 43493087.46525001 1201.0405847698262 0.08796397848223086 2.440604209037673e-06 2047855.303983975 56.81876105016138 67943 72534 431137 GXS_20211028 49817011.13577124 851.1478319668005 0.6657683409215088 1.1374433958793308e-05 11898705.369287398 203.28548250096944 53174 26972 908245 FIO_20201130 9533364.380425878 525.5325933362774 0.08077661303293461 4.45286063074227e-06 814503.2631924183 44.899994913154686 None 150 324482 BQX_20190225 13578994.038089637 3605.061760039098 0.14269633011017266 3.8091830032484685e-05 2459482.827342211 656.5424755815467 60541 5810 364991 MDX_20210809 788801535.8109957 17931.552598665163 1.3126873560731074 2.9841368144593384e-05 42740475.042872585 971.6207324831837 None None 12116 AUDIO_20210430 338164166.7561358 6308.392516241841 2.207379829808293 4.118685770289027e-05 29301187.630342584 546.7223307741372 45670 4879 38976 ATA_20211111 194372532.95223552 2996.696975197605 1.144488339769996 1.7619916456095283e-05 75854675.96767402 1167.817099493733 116657 None 266555 FUEL_20191024 3322847.817615356 445.3752286910522 0.003285101996883852 4.400186511157134e-07 538964.6420713556 72.19090762730006 1 1495 None DLT_20190901 3372619.928323605 351.4190068750696 0.042040559735841046 4.3805267313903334e-06 251966.41256628893 26.2543032869796 15025 2652 9139526 MTH_20200607 2578400.8106667465 266.65248379748033 0.007418921208707005 7.672483499134363e-07 114495.68185645848 11.840889059919233 18996 1911 1960603 CELR_20210421 310532519.71822983 5496.586559391038 0.055441802330007145 9.83464559587883e-07 110387902.9381712 1958.1360234416559 46766 None 141780 SNGLS_20190803 5660665.729648974 538.2456526388812 0.00981625853409643 9.326547741211688e-07 155392.78601040633 14.764059364695106 9 2175 None VIBE_20210107 3561230.004407773 97.30849024 0.01918331986778771 5.2e-07 129956.11110388674 3.52270505 18502 None 1637707 COMP_20210125 1074767.5548292887 33.84732291106109 1.17296661547385e-05 3.66975459318e-10 0.1290263277021235 4.036730052498e-06 1974 None 2976812 BNB_20190625 5264089616.957419 476780.80507905944 37.527680217591055 0.0033977905885076085 469235896.67297244 42485.04848317263 991736 53386 829 AXS_20211021 7837548340.02999 118244.99749157311 128.0083029200504 0.001931890213440071 462428424.7127987 6978.929707998139 604315 None 464 ADA_20191019 1183634987.9531126 148724.68113578606 0.03805061129764288 4.781152451677206e-06 62072834.501719184 7799.603600030277 154414 75442 134614 LRC_20210428 670253322.1324652 12166.53145625638 0.539096000493335 9.782966259683842e-06 73372018.22144055 1331.4808086285095 71125 10088 144294 SOL_20210508 11736620149.519144 204826.34068487593 43.072134333542394 0.0007515663506376161 628075167.8004643 10959.293499005978 216714 14255 15641 ZEN_20210725 591555931.4659783 17314.362491779215 52.196882581638754 0.0015277367163688508 28950870.053478513 847.3553393221429 116769 7445 1253134 DOGE_20190908 301654506.66296726 28814.61545662701 0.0024908199446869767 2.3792788535409383e-07 59710288.41645417 5703.640958517922 138175 140263 101956 OCEAN_20210703 190439082.75992027 5634.254104428489 0.4400178065375952 1.2994696149918715e-05 13710819.021228803 404.91072065778206 117146 3233 96466 REP_20190701 178627657.5343657 16429.275313766535 16.27805630137197 0.0015003187744124296 26285104.063269284 2422.650123785574 125870 10010 252413 ONG_20210821 0.0 0.0 0.9032323450114026 1.836408389713464e-05 18574961.247960772 377.65714284652876 142634 19822 180960 NANO_20200331 61725617.6361242 9602.66029429215 0.462207372289603 7.209533061212716e-05 2719418.8222600576 424.1762698255657 97504 50139 291086 LEND_20190701 8054697.514349688 742.641495988097 0.0071765902380831045 6.653561932137517e-07 1893063.0472008581 175.50970318957783 42034 5861 929610 NEO_20210105 1124688009.011636 35948.26525248609 15.943705036097002 0.0005096066937253916 610632516.0455755 19517.57241360631 327587 101214 181319 CTXC_20210422 3654687.264256011 67.45029652071446 0.3635795519267368 6.71175261743355e-06 20216703.829658695 373.2044723789439 19437 20489 377528 MDA_20210616 17343533.40593717 429.4993902301309 0.8832887409998587 2.1884658391558052e-05 3367087.520116072 83.424090823128 None 389 1492828 LUNA_20210304 2952700665.516936 58086.31639370034 7.247272048154633 0.00014303391148838234 569276190.9312875 11235.37239461607 31486 None 57053 ONT_20210125 496788711.1779567 15428.552547052928 0.6134174799459644 1.900605710068023e-05 292818692.8307917 9072.660916964445 96199 16676 273814 QTUM_20210616 966007630.6893915 23919.874010395855 9.315807952738183 0.00023081282095697392 221049504.20794392 5476.826046245346 245336 16705 104826 EOS_20190916 4177645809.3318057 405494.9426174961 4.070143021965522 0.0003950588769029585 2645019026.5325775 256732.56206714408 1310 68330 87912 WAVES_20190622 234182747.0316688 23134.2702680337 2.3418228955748397 0.0002314625812568532 22859655.622827157 2259.41718611625 141210 56851 49915 HBAR_20200719 190636961.12824082 20788.354269644165 0.03992889371065007 4.355816671312644e-06 3990474.490304781 435.31822938237895 None 6582 140094 PEOPLE_20220112 388169946.5976409 9054.84196233347 0.07676779933250671 1.7942341817947286e-06 81249313.72906159 1898.9771389514945 None None 68083 OGN_20200730 24736833.617355052 2227.679999449746 0.3204820657221733 2.8895106418777226e-05 7487573.596942143 675.0899942389532 64701 2333 168509 HBAR_20210916 4909713321.9816065 101875.19851265136 0.5088376840865344 1.0555399702148773e-05 1226610156.258398 25444.971712866867 137234 28512 46003 SYS_20190201 22427315.59436541 6536.25532728582 0.040964920999564856 1.1938886844866947e-05 104576.47920127671 30.477948482602635 63040 4629 845888 GTO_20190401 23461793.939389683 5717.53693524762 0.0383515925791774 9.343556993945916e-06 8916609.850572295 2172.344007868807 None None 779658 ENJ_20210217 506118958.0619965 10285.462398182828 0.5446463543309196 1.107285847842507e-05 74824661.65805443 1521.2125861991472 81272 17681 59943 ENJ_20210120 335839649.8697957 9274.731205447764 0.36261218353247837 1.0028193422102575e-05 690414237.9698852 19093.697989646927 73622 16239 72441 STMX_20200913 19628550.788696736 1883.0571963708478 0.0024693643433804486 2.3648512312390926e-07 1993702.5226062583 190.93212704511367 21425 118 160167 LUNA_20211204 24955953672.324837 464832.1606787683 64.14239752548174 0.001195539593140187 2638949575.51358 49186.94691095083 231976 17699 5944 PAXG_20210509 189830413.64638376 3237.0200483734643 1863.2496770530872 0.03173509570546258 11626926.108635439 198.03122327731623 18498 None 44452 BCD_20201101 88386138.23975684 6405.575573748676 0.46842716549556485 3.3947756064863594e-05 1257537.9736416093 91.13603035025608 27906 None 3405204 CDT_20210422 25561916.486878987 471.73455678857636 0.03782900912771601 6.989990794259185e-07 1263785.4181943247 23.352048184167394 20610 325 413427 NANO_20200109 83527265.85850981 10381.418984283184 0.6265588144273415 7.796323062585057e-05 3770218.9980532257 469.13146297979864 None 48566 260915 WTC_20190812 46016342.869147144 3984.482400215848 1.5764371325295803 0.00013643767360373043 11684797.886499347 1011.2973154886294 56069 19995 698794 CVC_20200501 13799983.234923283 1594.7361891191192 0.020592905955116685 2.3890502175752208e-06 10088247.976754827 1170.3705672404376 None 8034 103621 SNM_20200725 5006538.03588814 525.1217856 0.011351099825531471 1.19e-06 305394.7356104745 32.01625754 29258 9591 None PPT_20190314 46112013.30058374 11926.351060816985 1.2760234064836615 0.0003300788542148953 4766984.903851055 1233.1128936411137 23510 None 563513 QKC_20191118 18560439.752084505 2182.028882076598 0.004977233177460626 5.848968048567846e-07 11179287.887154188 1313.7278348503426 49369 9222 296217 ETH_20200310 22001125399.41239 2782870.033591572 200.84687148188746 0.025356439943397 17900321700.644154 2259873.050652928 452799 454312 19200 ARPA_20210718 30041439.94696352 950.3942519835621 0.03063906275433899 9.702353475573655e-07 3183732.9936113344 100.81804108544071 43113 None 718548 BAT_20210422 1816052012.372675 33516.75201585633 1.2177401548392985 2.251403882353929e-05 481760492.64173275 8906.969513881842 187775 68556 19254 AUTO_20210814 44250008.49086334 927.6589037375352 1268.228997987147 0.026574754581803035 16377602.847991474 343.17995962431286 73732 None 12074 SNT_20190704 100944638.04807329 8418.784054955933 0.02861152134199903 2.3840369438883824e-06 25764296.075378835 2146.793696943977 111609 5744 317609 NU_20210708 139941974.65968361 4118.473350946669 0.25309838815656616 7.449206467685779e-06 29920383.53673946 880.6184669166823 None 7126 128147 KNC_20200312 141809845.57202554 17878.822901455358 0.7940338316369197 0.00010002730829504104 123520542.58807713 15560.328668562306 103624 7178 154836 QLC_20190207 5273900.572599559 1548.1947878532014 0.021974585719164833 6.450811616055006e-06 155285.191052285 45.58518313124641 23304 5867 940522 CHZ_20210513 2256286389.7847176 43744.96972237294 0.40832743965114915 8.14012743108327e-06 496577653.82365584 9899.421368807187 327631 None 28385 RSR_20210106 383873078.35354483 11298.008156221842 0.041538563007334536 1.2189944492585424e-06 246956321.15988716 7247.202669241531 52257 None 170522 SNGLS_20200308 5853520.887210768 658.5412370677532 0.010495396534480353 1.1799335395345033e-06 152650.67015715325 17.161585554114726 7629 2136 1276289 ENG_20190701 41117201.76480772 3789.854618084648 0.5266357451523676 4.88254648768215e-05 2440543.479261986 226.26772114108203 61816 3472 328066 TRX_20200629 1043719151.1822392 114475.6857139223 0.015763294455577757 1.7283932220111487e-06 459006108.0030335 50328.50513386433 509057 73195 60096 NEBL_20190819 8378189.940005151 812.9897470045111 0.542387167624621 5.2581223808775275e-05 268202.49498894875 26.000643556607777 40431 6132 679101 MTL_20190702 25308370.572150644 2388.2772795820033 0.544910679493975 5.1402191605355605e-05 2571558.501664186 242.57873409578718 33227 None 763288 GRS_20210124 26331689.846107017 823.1786635583493 0.34378857046292044 1.0727243562873194e-05 3315292.7311293827 103.44716393904588 37593 106767 3770172 RVN_20210821 1358060043.716779 27637.60359587287 0.14345854889672802 2.918061997541923e-06 153286806.4534283 3117.976642565322 68423 49510 58921 AAVE_20210430 5579987321.588237 104121.8107261536 438.43323084774033 0.00818059803179075 706623193.2234154 13184.676472912382 184723 8777 14216 AION_20190405 64750912.0316428 13219.058794734732 0.21553491093234972 4.403364092382671e-05 5774057.863174258 1179.6362339659033 68315 72486 263529 MTL_20190228 13938322.086836182 3655.4419776450873 0.32319128725840907 8.456748982696931e-05 2330241.5989182205 609.7400842162399 32569 None 581228 XVG_20190528 181512310.1939677 20581.658967172476 0.011288886321517854 1.2800619366567748e-06 5227437.859043466 592.7461787657032 304518 53086 436140 BLZ_20201226 14390980.857493158 582.7461924549959 0.056748176820361575 2.301397096845728e-06 5223797.2442652825 211.8487762262216 43017 None 386784 MTH_20200414 1920537.7767250899 280.268878872605 0.005503549584161555 8.037409940089752e-07 50752.935906304396 7.41198285404772 19117 1921 1281286 NPXS_20190520 157721913.37726736 19271.93322674177 0.0007391232906905077 9.034669673511553e-08 7855185.143417203 960.1781446874561 60593 4379 188211 NEBL_20210930 17634569.565890722 424.5374129456907 0.9639006722443753 2.3189317856434516e-05 1351112.9639228336 32.504789012547306 40861 6220 1297789 MANA_20190207 40950109.56355292 12023.869673643467 0.032385617204043086 9.509142825554253e-06 2080834.1004474391 610.9795139234883 42289 5992 103515 IRIS_20201130 50311359.14894384 2773.0788784073916 0.05746075996906244 3.1624425055990623e-06 3779812.0452796556 208.0278485979577 10857 None 481390 ZIL_20200721 190536864.56319055 20796.91020718474 0.017262565530512104 1.884303688239175e-06 28682333.400159087 3130.833972372016 83434 11669 88835 FUN_20191022 21323962.888363484 2596.4696836412504 0.0035520057378485032 4.3220975338739653e-07 314775.2389899245 38.302001307773985 35617 17307 389622 TNB_20200423 3293254.457081375 463.01866424382655 0.0010045302607815786 1.4119979950817118e-07 418040.9670522698 58.761097637871124 14965 1438 4384247 QSP_20210207 30027434.30639383 763.5167150012917 0.04249405441731933 1.0806277509773803e-06 1370811.2320020334 34.85985696034549 59022 8171 199881 IOST_20210723 458144646.61015385 14165.432302751284 0.020257474801136502 6.257419529424125e-07 107274741.11830345 3313.6561524930507 248974 53584 204537 REQ_20200417 6611226.877510367 931.0910318691199 0.008406208571849356 1.1858327630446525e-06 36276.94536279143 5.117454555962184 39358 28238 655698 GRS_20211120 76577692.03581092 1317.4922604783371 0.9719332888320588 1.6710059297849194e-05 1595737.548412935 27.434875792583423 42455 107145 None DOGE_20200719 441694537.2438925 48165.38442939095 0.0034972143348610623 3.813973494627379e-07 245241741.09091434 26745.443965880833 149522 163279 90180 BNB_20200403 1971192627.5220792 290663.5320537136 13.080913345630146 0.0019188367222158786 383892319.3328998 56313.092232101124 1129609 61144 1688 EVX_20210124 6602609.521407937 206.27400052158384 0.3036189623694334 9.473830253455236e-06 625083.884419666 19.504508443569247 16786 2806 915325 DNT_20200502 3361927.619050228 379.40202982870005 0.004464638064146766 5.055335259418389e-07 92445.9476529004 10.467707618072467 58373 6051 731161 QSP_20210610 29894582.388818726 797.8941199393994 0.04190570330344153 1.118868267956439e-06 641583.6348562682 17.130068551358157 65377 8478 240687 RDN_20210506 67524178.01520583 1179.1357358572027 1.014170660546562 1.769576269973737e-05 1171410.7871011593 20.439367967205154 29040 4565 580559 TNB_20200207 6475416.237134728 664.8694208533803 0.0020932645993468886 2.149595182652833e-07 334927.6946607931 34.39407321962505 15266 1450 1326459 DUSK_20191127 9765777.599185705 1362.1315317941157 0.040147470437623456 5.607194318810401e-06 1694373.290035663 236.64455524273006 18472 13332 562220 THETA_20190509 63563814.48788505 10678.649516092646 0.08560369006748239 1.4370740973528282e-05 4319258.260394798 725.0965654514982 None 3961 252883 SNM_20210703 82488611.05516341 2437.44028816 0.1885016694805284 5.57e-06 74716.84329780248 2.2077938 32424 9714 None VIBE_20200422 1473757.4414149637 215.2014688 0.0078722553855379 1.15e-06 50005.67551240215 7.30496205 19155 None 1007181 GVT_20210813 17058045.409819216 383.6905182427326 3.8694924203456402 8.702850388837152e-05 556900.186606051 12.525206096966672 25842 5694 545801 WPR_20201030 3486945.504183748 258.86549910975214 0.005775701509478299 4.2952362913695975e-07 96026.18888081629 7.141213421883528 32668 None None BTS_20220105 105502797.56768277 2277.9710287785715 0.0382081076904157 8.304141970176343e-07 9112153.94262124 198.04335929625208 8186 7513 200218 CTK_20210310 79999594.5023471 1463.0887723885103 2.2423980038645603 4.095451256820401e-05 10675869.874440381 194.98101862192314 None None 216744 ONT_20191220 344354070.796934 48221.63255917886 0.5410808866820652 7.572260060867306e-05 88434037.55334692 12376.070696060764 81552 16284 323482 LSK_20190922 136323785.84578618 13650.701989232419 1.0021551098018726 0.00010035232970965943 5619275.796475554 562.694748489492 181467 31002 164016 WBTC_20210318 8020321879.259541 136265.46444565713 58863.63284052691 0.999481502042887 205197770.5016455 3484.178022659066 None None 167083 BTCST_20210711 131954659.83241409 3914.5032202380185 18.10673816692209 0.0005371457510666256 1496827.5452456637 44.404163168217266 None None 922062 ETC_20210729 6355337893.785488 158935.09902080442 49.35613761363016 0.0012336342063052623 2947820986.322551 73679.44451528057 487192 58599 110949 HC_20191030 78235978.59825304 8314.240899491017 1.7652383983683497 0.00018761506799207069 53213629.55238975 5655.711282852563 None 846 470518 RUNE_20211202 3220278849.9496236 56338.55955137715 10.82826838625539 0.00018940977380608578 88776354.16377062 1552.8899507914507 None 8775 69693 IOTX_20200725 41856500.59990412 4387.964868164038 0.008193676274520278 8.590879406516508e-07 9785238.34575522 1025.9595299586804 25150 1890 529833 REP_20190225 138388634.728322 36740.54010802705 12.496872810925652 0.003335956535699466 5350967.493605885 1428.4049499970654 122407 9783 236100 AUCTION_20211104 284848018.1234422 4516.707202102924 39.64945553527181 0.0006291113003438728 50454765.14434598 800.5573463743305 84646 None 102978 NEAR_20210124 619529046.4778594 19350.343339078125 2.368087326598329 7.389148945925581e-05 51243228.500937246 1598.943770403232 35842 None None BNB_20190314 2162875299.7693634 559258.7055422653 14.964298646707677 0.0038709488333241067 149568660.37064907 38690.26173779246 929573 48091 1139 POA_20210725 7302056.296931269 214.5063657529343 0.0256242150879153 7.5e-07 199410.37062223564 5.83657987 None None 239848 BQX_20200607 10203607.073653929 1053.9454331341626 0.045933472868221324 4.749218221319547e-06 323452.0413752889 33.44280832040667 11719 30 406675 LINA_20210527 121548226.48692079 3102.344530646449 0.0496329701839401 1.266924657339437e-06 32908656.468534175 840.0220290138827 None None 70579 DCR_20190520 294988554.5149528 36047.25590785849 30.097295083382683 0.0036782178071596916 10895633.722891415 1331.5653074071727 40496 9452 352776 MTH_20190421 9214063.123564014 1735.2021876364088 0.02697706184434246 5.080464220274432e-06 406745.0579801108 76.60039947140397 19455 2006 1210960 POLY_20201015 36217055.66803961 3172.8608969947695 0.05092441544839069 4.456098925480836e-06 3354483.105869333 293.5312743797108 35325 4995 324413 ARDR_20200718 57527779.09485756 6285.067645446421 0.057947515887073656 6.329863997489571e-06 8861871.826238753 968.0215374993982 63057 6298 1213640 BAND_20200414 9262997.958338473 1351.285911209465 0.4713453568942478 6.88354996858655e-05 5252671.901365966 767.102698112616 None 1076 769411 LRC_20190816 35913738.61340968 3489.855500073763 0.03734488757720611 3.6238778504568265e-06 5011758.18959306 486.331615206074 34581 2447 491659 DOCK_20200430 2882763.628907894 330.19394105166987 0.005163460701093558 5.888532085424247e-07 1541199.1488907253 175.76197755024103 42651 14992 521704 USDC_20210828 27160308680.021217 553711.8622576154 1.0001085419704292 2.0391621093073607e-05 2240900847.659001 45690.64164033598 None None 31642 DASH_20191011 659174515.621646 76984.11498984747 72.48762523981537 0.008465733344591192 402180584.0898632 46970.13552330561 317960 31172 73595 NEBL_20210427 50212871.29409937 932.06301957552 2.8226479303605765 5.2364159315676125e-05 1469929.4003853982 27.269294365997887 40157 6050 477279 VET_20210117 1753016130.6557825 48306.180577277475 0.02699408570017398 7.459097837554274e-07 442231573.0408222 12219.893671545105 151805 71591 117810 AION_20210814 91725605.56844044 1922.9391724037814 0.18637630459313334 3.90497542430751e-06 17862828.01944438 374.2638023478218 73660 73404 420360 MITH_20200321 2313498.430390751 374.22732672647055 0.003745986843159024 6.041434775278764e-07 4977150.671518777 802.7025296052035 94 2083 1254611 OST_20190131 9611413.739848599 2779.171872185846 0.019968467052153882 5.773947877400403e-06 273774.6983647218 79.16285383250857 17296 730 732474 LSK_20190316 200837258.8487121 51179.55679596405 1.5399343151907694 0.0003923933944367549 10863991.359244347 2768.272909132077 183325 30456 187764 CHZ_20210825 1978141887.8104522 41190.91083060157 0.37029048172676415 7.710465914889837e-06 495440497.98553395 10316.433343788529 375717 None 58032 NAV_20210731 30375464.50747239 731.0492738590723 0.42613863815389486 1.0255920264497108e-05 313677.46809545974 7.549306290303042 52983 14117 867769 IRIS_20201228 35961930.866991274 1356.7272735818403 0.038128840870896796 1.448409620982695e-06 4328253.095440248 164.4184109008383 11043 None 798128 RVN_20200106 121016631.79398128 16481.060132845076 0.023156481876824602 3.152745323818775e-06 8603419.897890555 1171.3520212701396 29342 7299 200333 GVT_20200412 3118275.804623061 453.1655705880068 0.7029903868152145 0.00010214152196750674 212947.89555507666 30.940426156197972 20531 5571 153070 BNB_20190426 3206899265.1587505 617800.9236391695 22.25656479628978 0.004285426823025433 336477284.5976166 64787.571395284 953015 49768 1003 VGX_20211021 4802297506.195385 72451.93675117036 240.85933082251336 0.0036350281459661027 103811020.6909043 1566.7069271689381 None 11537 31177 DEGO_20210408 76835729.6003364 1364.1457836599275 13.98704992228584 0.0002489107796680502 22535221.851186346 401.0323600857342 None None 69982 CMT_20190818 22894788.445948623 2239.8475009685417 0.028620925507945524 2.800220700298572e-06 4193530.7966180462 410.2876317109124 290339 1645 599569 TRU_20210819 292221333.9893269 6486.534377743417 0.6939282572715912 1.5405413686240163e-05 95913790.51704858 2129.314674315401 31250 None 91553 STORM_20190811 11135367.410578072 983.8318968464281 0.0017863176305842703 1.5782472172390627e-07 121564.76635701621 10.740489313455646 26639 2548 2770937 REN_20200318 29993892.05700373 5523.2963551986495 0.03424173961866112 6.324337138010454e-06 2555342.8769070613 471.963458537791 11337 873 365958 RDN_20190522 16815993.11376159 2113.1110813013775 0.33235291515829135 4.176561497841162e-05 1353489.275897256 170.08820863692574 25660 4448 1272561 ERN_20210828 208995454.63069108 4260.0689359728685 18.45405809705614 0.00037626731954846387 39111290.43324103 797.4560575239914 90643 None 77314 MDT_20200905 8395866.385842342 800.7309919875742 0.013847258938855666 1.3206414772293061e-06 1748199.0529276775 166.72932816117873 14124 64 538522 LSK_20190205 143181918.49145025 41330.78021180605 1.1058335699792952 0.0003192090503688861 1839791.961541135 531.0729036113922 183205 30493 183991 ENJ_20210624 980913748.937961 29096.852167014265 1.047927277635306 3.1106073111510454e-05 153347103.25701183 4551.86758389831 232269 33568 26462 ICX_20210527 827941253.463331 21132.01560908764 1.3368957750478605 3.4125425406217234e-05 120042693.44400103 3064.19397618188 139995 32194 252807 COMP_20210825 38460.4128782738 0.7949026573025144 3.716785647436191e-07 7.689e-12 28.94989330757651 0.0005988931048404703 2565 None 6343475 BNT_20210114 147940238.04453948 3973.0267815756238 1.5051524600038384 4.037191860232514e-05 45034284.881869785 1207.931111217884 90166 5315 101085 NULS_20190421 35526529.5099991 6689.523426408049 0.8882814377318239 0.00016724409824422006 7898703.938855273 1487.1543650906938 31 None 664813 COTI_20210124 38322738.17494896 1197.571731329772 0.06716681206291679 2.095843309771294e-06 11205946.952038305 349.66538127612307 36898 1323 233867 TCT_20201226 5135700.4228872135 207.96427266934532 0.008869595573137875 3.5970250756833334e-07 747805.8791493444 30.32693516703367 None None 1564302 DLT_20190530 9558977.524086164 1107.0372486184438 0.11906663546710287 1.3780546890598193e-05 596215.7417013233 69.0048807812154 15133 2680 2919270 CLV_20210819 202891238.6718274 4503.644469146874 1.572105046532287 3.490119957829713e-05 38680201.47831082 858.7119763409172 64052 None 93229 EVX_20210110 8091464.595808636 199.95876743908227 0.3744198727039669 9.288521446100757e-06 15515644.649983706 384.90851738363193 None 2809 1350138 NEAR_20210930 3133526319.3082314 75422.55931561912 6.676914566535775 0.00016062250607434673 298795500.49705285 7187.943115838907 None None 6468744 UNI_20210509 20932492819.19116 356960.89574134373 40.42370981187069 0.0006884029592262096 977685689.8255162 16649.67726122357 441574 40301 1434 OCEAN_20201115 189849583.62607595 11797.426585065707 0.5460951748665145 3.394834709119956e-05 22957480.889257953 1427.1661157940384 None 1181 94489 LUN_20190920 2911167.238078113 284.05421751541803 1.0804416657500606 0.00010536727293301172 161667.0875233353 15.76616366745796 30792 2192 1514329 AXS_20210120 35489744.15771682 978.1675514946046 0.6329291274455058 1.7560932544428805e-05 8945735.873222845 248.20387847211057 30103 None 18871 BTCST_20211230 162980214.29932907 3514.065459737308 22.43549751132511 0.00048229403903705384 3434585.6272634375 73.8330038705551 67552 None 2315848 CLOAK_20190213 6043413.3205678025 1663.2099100062405 1.1549952614282262 0.0003178563690381978 176099.70693488087 48.46289444148542 18049 1378 959121 ORN_20210805 178417875.57790443 4481.959646430697 6.180089393520379 0.0001554156176234307 5868155.396431155 147.57116558909667 None None 92091 FTT_20210616 2965509876.6348424 73430.7063134351 33.964062510384956 0.0008415145872861164 51276007.79338804 1270.4460346208316 None None 3170 REN_20210724 298117500.6742193 8917.22549571011 0.33849459836512547 1.0122632239034076e-05 23249216.284287635 695.2644663408994 87849 1181 100399 DLT_20200310 3241013.1481954465 409.36154265387773 0.039592844369467035 4.995830158107859e-06 93206.41228343948 11.7607970033528 None 2588 None MBL_20201201 5352024.591009147 271.98405763448466 0.0015417917211816559 7.843302396839047e-08 1608525.0978295805 81.82784082867741 None None 806659 COS_20200309 18416540.554846782 2287.6648587416607 0.009325593938386495 1.1592404951631573e-06 5728971.60204366 712.1536623411915 10277 None 161709 HOT_20190723 220079378.9002188 21271.09909283514 0.001237950170994796 1.1973763450761894e-07 7946332.797599433 768.5891681975185 23874 6584 317141 XLM_20190430 1824531152.0488734 350555.7396281202 0.09547704620621758 1.8344347854605078e-05 189444661.13366073 36398.68325552936 269958 100575 70841 STEEM_20210314 186041734.52885795 3029.1337030524633 0.4865656424325015 7.931537815702162e-06 6555659.235943126 106.86422262943323 12736 3899 179872 SNT_20210511 797842449.4922001 14292.018843970389 0.20478034120695968 3.6644083966678804e-06 293717189.5381544 5255.874315110894 None 5947 112521 STPT_20200430 8199048.806822148 937.9308450873388 0.01167341135025151 1.3314642415902893e-06 1743181.4596169624 198.82652212312775 11245 None 1265534 BZRX_20210201 43230195.23843084 1307.798016828649 0.307684432196408 9.281029596994966e-06 17760240.36818845 535.7219906455381 None None 192726 ICP_20210806 5768530815.182161 140793.96937313743 42.07481294872208 0.001027290067014303 206042805.04255757 5030.69918000462 247829 21974 21737 BTS_20190930 76945903.43092325 9556.254260622647 0.028391268997288756 3.5260380763920927e-06 8353059.724954458 1037.4036696767353 13547 7129 140611 TOMO_20210114 93686229.60622145 2516.0394389015055 1.2186444385697497 3.2700415851253405e-05 15714231.036134055 421.66679090362516 36397 1716 198557 AAVE_20210210 6082195942.165316 130540.42300178639 490.5959173685471 0.010533566713715662 1084517654.6326852 23285.638267335966 118847 5317 18454 RLC_20200208 54676004.10171308 5582.043524020816 0.7782913431780247 7.945137784742885e-05 936954.0866906452 95.64836332802854 28085 3537 239089 ROSE_20210221 176207016.98228654 3141.4203056883857 0.11798467778087265 2.098053263357352e-06 20517539.266951844 364.85153008630385 11747 853 193183 AMB_20200107 2222857.096118485 286.55704166907714 0.015338546224838498 1.9774782375489687e-06 854353.3145568654 110.14505950884653 19158 5532 724593 FIL_20210112 963053856.3708664 27145.557075457054 21.570961445933612 0.0006068339696219216 193306939.6571558 5438.107978711842 None None 31509 ADA_20210902 91803402850.63826 1887580.784006342 2.863490759015673 5.885267314389681e-05 3819285059.088192 78496.89562230423 579837 590844 9041 CND_20190312 23225809.8300145 6006.938440088922 0.01345815133162302 3.480919574073841e-06 1499505.9780951866 387.84373737331106 36682 6217 642987 QLC_20200129 3027147.0784398336 324.0464452454426 0.012624300867813203 1.3501353026034122e-06 983497.583163156 105.1824430483274 24516 5689 940522 CND_20200905 20544361.018813886 1959.3002169426259 0.010648801045598507 1.0155681249815092e-06 227285.69104537123 21.676064948690286 34310 5930 303234 ALGO_20200626 189514926.01828322 20463.956888724813 0.2357502019339802 2.547879928094339e-05 62762697.78693026 6783.104176052946 19037 914 276496 FOR_20210115 7844079.266296692 201.08870845341605 0.013695473203682132 3.497142171688972e-07 1939063.7213853109 49.51403586278095 16848 None 227730 IRIS_20210825 124563090.01997748 2591.0191247676585 0.11513100983437288 2.4000268472299927e-06 10006970.789890874 208.60581862119687 27341 None 908370 ATOM_20190929 553666361.0685115 67584.25538972321 2.273282854752816 0.0002772003730810425 94708198.62589003 11548.562000563194 28671 7005 109594 EZ_20211104 0.0 0.0 4.597182600447924 7.289546157848644e-05 1517143.0370492926 24.056656343282814 37171 None 233696 LINK_20190708 1198803686.4829655 104943.23946529823 3.2931555940936614 0.0002881029316455371 127200097.37911215 11128.147429853185 25615 9395 152412 KNC_20210201 259948413.78619966 7865.720397738218 1.2945951867367047 3.905032230087217e-05 70310701.2685001 2120.860307426497 130880 9447 112960 CELR_20210916 533037836.5232982 11060.609028556495 0.09434126286772714 1.9570282805646052e-06 307437694.75711423 6377.530307123781 68384 None 137033 LINK_20201106 4308378046.347672 277267.8275503895 11.016616909621364 0.0007092123717760441 930988616.3090695 59933.88442983861 97484 24021 34744 TRX_20210107 2216470510.6955585 60471.489693723495 0.030692917806104544 8.31575100943096e-07 1606750845.4571185 43532.322503260446 558160 76853 32747 ZEN_20190419 44848527.104244605 8505.87289161331 7.172919039594562 0.001360191416509635 315971.9101013917 59.91734712265201 25383 1560 245481 DGD_20190512 74678513.98684515 10227.750310347967 37.23764948074596 0.005112456799609558 3772698.819018261 517.9639423842194 16945 3353 465743 RLC_20210508 300652716.29642045 5246.7917934172365 4.209478905229346 7.345154264591606e-05 116021588.85249302 2024.4702190713379 38220 4411 331686 XMR_20210826 5641431599.561786 115127.47640811055 313.75496949594066 0.006402952373184357 327373585.94513893 6680.874194320674 435080 232628 39268 KEY_20210708 21707183.447091628 637.3939779334161 0.007752942033934991 2.2818504046361373e-07 5174539.9679491995 152.29736102744803 32186 3870 185366 SNM_20200107 5228782.986841685 674.0624878024496 0.012169475279598002 1.5689148225029117e-06 674715.4592767697 86.98576238581683 30507 9760 None BCPT_20190228 2731048.97340319 715.6519938740504 0.03252376896459465 8.530483685986533e-06 968706.7963669371 254.0768731910535 9888 1321 2528232 CRV_20210428 896649361.0814015 16276.001687806312 3.1030685142898196 5.631133332282974e-05 411974063.12294734 7476.086551761542 108624 None 25328 THETA_20210809 6427155803.552054 146097.3996813469 6.39719696399762 0.00014545658275758237 345144483.5239785 7847.739785653922 186256 22418 19933 PNT_20211007 32171474.931242578 579.6076969927149 0.9549212103858733 1.7213604206829513e-05 7809288.791031977 140.77183009824918 70359 347 359417 APPC_20210826 10951151.26133572 223.3299768210697 0.09604502417473992 1.960001825473573e-06 478173.2143486573 9.758135635541084 None 3117 837968 MDA_20201226 11156763.269705597 452.0134934183718 0.5726255703358416 2.3212779913221367e-05 645168.8658776775 26.15350006409551 None 370 2990723 MTH_20190613 8444471.297193766 1038.8987218705056 0.024663692916077787 3.0329747069905715e-06 524226.25307463954 64.46581100915964 19367 2005 1790455 ELF_20190524 81561719.19285895 10353.444214965111 0.2217661817247884 2.8199624022448578e-05 20824769.44158796 2648.062315180835 88392 32857 928009 GXS_20210105 20104594.234341513 642.6006861803695 0.2834641628798043 9.060330362846162e-06 7739665.473780359 247.3819807694653 None None 482061 CVC_20191220 12417571.482657332 1738.3832190621727 0.018548055412215606 2.5957155583115225e-06 3674471.481394956 514.2254851442432 87250 8115 149166 QKC_20191019 19598734.687298637 2462.6289881906237 0.005152822250363747 6.474647290859592e-07 5784186.629234354 726.7972087753421 50278 9238 305114 PHA_20210704 155420202.17949447 4483.203966951824 0.8708690808852838 2.5097904731905662e-05 25781089.033217292 742.9949353382762 108924 None 165668 ONT_20200718 480018045.3550615 52430.36841730873 0.7532636655692136 8.228232883348153e-05 174523547.7862103 19063.98065447549 87538 16566 168500 OAX_20200315 1254354.217685048 242.55505737872141 0.024280613728217968 4.686380747961579e-06 159654.05036850378 30.81469341574 12042 None None FTT_20201106 324889446.7881601 20908.42310863723 3.5280214097577898 0.0002264364206497632 7671807.557418043 492.39401960851677 29426 None 5993 CAKE_20210725 2813178819.8967705 82339.4631868207 14.025533544618632 0.00041051052252306073 181367006.46695945 5308.394461882078 997856 None 809 BCD_20200711 159200568.04690635 17145.41571900679 0.8479607847837881 9.13273276023615e-05 17124609.084769893 1844.359800607912 28294 None 1537818 POA_20200308 3307347.245304352 372.07469787801983 0.015032042452654227 1.6899610223704045e-06 312244.28994873445 35.103724669026 17437 None 535987 FUN_20201129 23928586.249584775 1351.7651073637205 0.003994346249083828 2.2548707554757823e-07 479001.7430531046 27.040395470976183 33831 16546 386328 MIR_20210508 613125203.1030712 10699.241366077154 9.815554881978915 0.00017127242213076804 49352699.41088987 861.1592995434075 39997 None 16442 QSP_20190813 0.0 0.0 0.011050736656179313 9.710937384531123e-07 113677.25212330402 9.989494019818858 56662 8560 645541 ARPA_20200707 0.0 0.0 0.013615824122419868 1.4579089040583235e-06 2939858.8908606702 314.7842110124922 18509 None 769985 XVG_20201231 128482681.84609434 4455.29344177869 0.007828807389784805 2.714734290994804e-07 3445723.224673664 119.48464854946336 288673 51320 232027 COMP_20200730 39745.80917709035 3.582013611573571 4.307441251192886e-07 3.883648623687651e-11 71.58844754062082 0.006454513469825564 1858 None 1025389 APPC_20190922 4226142.322555287 423.1822719077456 0.03892173527774228 3.897405033786898e-06 140339.61511641624 14.05282468757811 25119 3302 1033070 ATM_20210806 25724538.173653554 627.2330100525847 13.628381639592833 0.0003324753105020058 7760416.047862509 189.32157928730578 5017837 None 101859 MTH_20210128 2823920.1165536786 93.35003670579387 0.008315602782038415 2.735312691277671e-07 212582.8596384022 6.992645141408285 19054 1879 1172879 DLT_20190623 8703313.827966595 811.3834132358788 0.10805007546407232 1.0075042628713021e-05 965963.9501742664 90.070533815053 15076 2673 2617266 HARD_20210202 40903368.840326205 1225.2501635336828 0.8577267164214132 2.5684506244972107e-05 12593106.215832813 377.09879971284533 None None None FUN_20210508 476953211.74638903 8323.471106669469 0.046562292652585185 8.123598208033911e-07 133741185.80122237 2333.346567407091 2741 274 242119 MITH_20200901 6861983.715012096 587.0900691505391 0.011100948971193791 9.508192141218578e-07 2999808.9685295043 256.93983580812653 115 2104 363135 SXP_20210420 324384381.6210964 5795.115404595968 3.7500830361413153 6.7013577655703e-05 444888273.5418549 7950.105258945328 163638 None 66436 BQX_20190515 13829069.45590999 1730.059470846476 0.11757223583405338 1.4708651277065607e-05 892839.7998539188 111.6970275267376 61109 5790 460348 NAS_20200229 19885257.75408642 2271.8780976795533 0.43525345897868745 4.9953976494581444e-05 5986886.8936481625 687.1141423270394 23756 4991 1193564 QSP_20210201 24417140.91905872 738.8327575618574 0.03424356775231635 1.035934946595035e-06 840235.7834167589 25.418776971981803 58627 8160 199881 WTC_20200421 7622544.620680797 1113.145675728721 0.26040259108949115 3.8033433866910965e-05 21275526.73680334 3107.424299206835 54623 19661 973859 ORN_20210212 113871917.89516263 2389.047674096128 6.852182722353812 0.00014328645472302408 19218326.529764388 401.8757213195619 34862 None 131553 EGLD_20201018 109756982.81979902 9659.11166756317 7.595896224653623 0.0006683773348942191 3714848.7922997093 326.8766004561247 72060 2723 44491 GTO_20200306 7847547.519975843 866.5446705350423 0.011887441541856471 1.3122550393958252e-06 14768822.66814809 1630.3307910268777 16921 None 1191106 VIA_20201106 4034308.7679728316 259.6299618394835 0.17364752997824004 1.1170567929500574e-05 51544.62987711752 3.315813300168785 38081 2139 4087654 ETC_20190801 679573977.8934036 67570.13590567792 6.050440553024844 0.0006012196799062661 567033929.5876403 56344.98094064218 229282 24857 465281 THETA_20210511 10571347917.71197 189337.1014445735 10.581971440322963 0.0001893851504354428 563014802.7164016 10076.25504483242 155416 16517 19506 DATA_20210823 0.0 0.0 0.1688277165411183 3.4018293725547426e-06 31639.843480346502 0.6375336413927217 None 4344 None BCD_20200404 91955010.20418066 13674.235520665305 0.48504265296525984 7.2083899803321e-05 10113101.024379686 1502.9436204952904 28867 None 841501 QKC_20200313 6234717.604238703 1298.9846680363278 0.001678783367754957 3.5032508047754985e-07 2078127.5084036787 433.6593991860385 50419 9198 398743 CKB_20210310 294089205.10701305 5378.509938073608 0.012128349100626275 2.2171308964841725e-07 31631082.0249919 578.2340915897065 35063 1499 208516 EVX_20211216 13691213.863795266 280.63592649112326 0.6322238268176412 1.2936922978903177e-05 286969.52439304104 5.872133375694623 18859 2810 1001283 ARPA_20210804 41161742.19535455 1071.3445094935284 0.041893862518271985 1.0906149130553413e-06 12484516.342797738 325.00702697918626 43228 None 741710 KEEP_20210823 244434270.07901147 4954.740293690674 0.44322740187344106 8.995199201706734e-06 48888384.16454307 992.1786251275121 23177 2892 114881 QTUM_20190524 276101094.5456827 35048.60104170577 2.8792894749596702 0.00036612832495091087 255376030.3648186 32473.42757413915 177478 15299 449132 VET_20200719 1168097862.0577822 127427.02510485126 0.01816197438853054 1.9812778034572454e-06 150440929.6162864 16411.50175657406 None 65007 114673 JUV_20210828 32198375.3841956 656.3962337215522 12.31241029402135 0.0002510427567826592 4687660.9160857005 95.57863092069884 2663337 None 38736 RLC_20190625 23355533.45554417 2114.7508273883777 0.33381884147953206 3.0225970755940594e-05 278170.7222851166 25.187254499127302 24909 3316 714682 PERL_20200224 10719049.562455019 1077.3934724697976 0.04104626320359142 4.124969392144281e-06 2363429.612396394 237.5143082639867 11249 447 1012589 OMG_20200320 76441569.41205582 12353.38881846312 0.5425303796317715 8.788731919336894e-05 147604004.38390738 23911.14071125871 281125 42859 453059 CMT_20190421 33393660.316746425 6288.856824273973 0.04181261994727394 7.872408024382595e-06 8082050.221480125 1521.6744872068566 292633 1637 827580 POLY_20200321 11581500.057171471 1873.402527074856 0.01872945333555534 3.0206398324656725e-06 5507895.753817528 888.2997815780327 34924 4999 422167 NEBL_20190325 20624527.24296863 5168.238698603467 1.3861316955807979 0.0003473689360063966 511978.26341595076 128.3033532731413 40112 6184 631172 BCPT_20200423 1817311.5968324693 255.57582488564202 0.01564507964638118 2.200230352898609e-06 22741.695313795626 3.198255901328 10602 3166 1977022 FUEL_20190410 6593382.412068694 1274.4643379631082 0.012462858056779946 2.409725443658683e-06 2626771.2137397244 507.8929246871529 1 1525 None OM_20210602 53404243.25362011 1456.2712519590077 0.17508148005189594 4.772964838579355e-06 9750645.406827852 265.81616551590633 42953 None 62304 BLZ_20210124 36917342.49142859 1153.3451886926964 0.1429440841446064 4.460287915989397e-06 25585669.20596409 798.3502910579851 44296 None 447066 RLC_20200501 23908270.32586406 2762.8572628559523 0.33854612018929414 3.9275840129620846e-05 981696.8114511739 113.88985051949838 30506 3579 510441 KMD_20210131 88575613.75193515 2589.253067970706 0.7098439644857424 2.0768584708138927e-05 25448623.518020626 744.5747511883842 96889 8438 251504 OST_20190704 13307123.694385938 1108.7962166582336 0.020855040059268047 1.7378865424264796e-06 788942.8901848021 65.74397496713996 18154 758 618395 BAR_20211120 38870166.43477478 668.4653977027242 13.212419350285145 0.0002265292203473645 4772134.307187757 81.81907002344903 None None 33092 CHZ_20200107 33074672.543461613 4263.783009163186 0.007567588146354691 9.756296751198471e-07 2547980.80003466 328.4911430264443 None None 294591 TNB_20191108 8633585.453675417 936.4611618988254 0.0029481148261847902 3.19780854512686e-07 943668.1769884165 102.35931563232451 15459 1460 2032094 ONG_20210729 0.0 0.0 0.7611753530931196 1.902686014281809e-05 37933932.2208 948.2225351876367 141753 19740 156257 NXS_20210210 36351427.62646341 780.4655800409232 0.5352400101100278 1.1491609332215748e-05 591486.7738815869 12.699228014031613 24338 3617 387114 PIVX_20200305 21383643.755242806 2442.6321482434073 0.34223271305392067 3.9079006589625245e-05 286127.40696717886 32.672431348142474 63960 8508 213646 CTK_20210508 130806545.86881652 2282.6182962797543 2.9269158229790153 5.1075751863242396e-05 18340975.18551917 320.05672665775865 47149 None 214700 ENG_20190708 49651801.34885061 4341.723276581928 0.6369806642759875 5.569315171492669e-05 2813744.882055084 246.01425034072219 61833 3475 328066 XVS_20210725 183388575.60619602 5367.563362731695 17.522156342889524 0.0005127784416556732 21369979.244820613 625.3833398661556 118654 None 12441 ZEC_20200707 528447650.34372026 56610.488341421296 55.49950241341992 0.005942586949702096 331973349.33140796 35545.91316315472 71698 15870 226446 TRX_20210511 9241591409.700556 165520.62649608537 0.12872487549816958 2.303784323033521e-06 4155042234.5267363 74362.63678173827 901251 105994 20833 CTXC_20210104 817555.5538143142 24.43861654743947 0.0811740451547675 2.465969284924132e-06 18108546.4660324 550.1157333568544 16707 20068 682759 FUEL_20190914 4072166.8286526203 393.69674729293763 0.004143444722552806 4.003058992766987e-07 2804637.5211271252 270.96124606876697 1 1503 None ONT_20190305 487704209.1195245 131353.99869080412 0.7950852663217569 0.00021414133214074958 36598653.73280901 9857.162240169255 68180 11161 256269 BAKE_20210727 347848612.3510468 9291.227524746035 1.9189950623397185 5.1431006195232704e-05 129211186.16805875 3462.990315462497 None None 8420 VIA_20190830 5525080.059577622 581.6850874344314 0.23863258264405687 2.512343951639028e-05 287252.0286070933 30.242135783424004 40749 2218 1896727 SUPER_20210821 296998033.1315287 6039.172422533711 0.9984934518593026 2.0300886723063844e-05 36014562.781772494 732.2307002134024 132987 None None SYS_20190816 13075268.282607494 1269.5015014653857 0.023306195648131977 2.2628407868392315e-06 469972.2544444738 45.63045818784153 60825 4576 680853 HBAR_20210703 1750346050.6728628 51785.03423378859 0.19590930744240265 5.785633866018373e-06 74677280.7055837 2205.384776827971 115831 22766 40505 GO_20190608 17668399.538301703 2198.640478671096 0.024443966985061974 3.0447141944663953e-06 1321732.0987231866 164.6335263307975 9663 668 891610 CHR_20210420 127820828.8075206 2284.645528519559 0.2853213664972101 5.101945824745964e-06 93897939.53056434 1679.0267284272802 54909 None 107103 WAVES_20201130 700764720.1231611 38631.45628172179 7.022256520746509 0.00038667927245733075 95046804.3223089 5233.734916427926 146139 57141 213856 SRM_20210325 214101796.68338454 4050.6063819290316 4.259272390301821 8.07354100652016e-05 118263636.28455184 2241.7122682680906 None None 85799 DOCK_20220115 70448412.58601576 1560.1781752227776 0.0543827261113674 1.2612939820107938e-06 4247063.75243508 98.50179156507633 57819 15287 193608 SYS_20211204 468733091.1859681 8736.63895873536 0.7518716881379711 1.4014012678166483e-05 32090459.055938147 598.1287860058046 96978 6381 147034 CND_20200316 6097734.6008397825 1128.7105249995943 0.0031837083055126576 5.924716083201912e-07 29867.126648445334 5.558117410023793 34924 5970 433768 POWR_20190507 46159793.49821091 8068.988101784987 0.110939057841002 1.939346378293604e-05 2703791.911381301 472.65491099735 85219 13231 672162 FTM_20191019 23880541.691509724 3001.060706635676 0.011424212247081006 1.4353393761724904e-06 4150067.7285782644 521.4149996323043 19142 2179 498287 RCN_20210422 66651290.94086533 1230.0219041680498 0.12953606670114676 2.3949116099756594e-06 1974470.2137925094 36.50474928710292 19611 1153 909754 WPR_20201115 4700064.422826665 292.06629750943995 0.007723483515989817 4.801351691453266e-07 149575.94281531931 9.298481760856227 32618 None None BNB_20190510 2707546841.2045393 438275.7467710793 18.739690177504908 0.0030351944925769833 218313189.5884756 35359.33542227222 960334 50475 978 BQX_20190909 11338664.652858514 1090.974183892779 0.08051033217192057 7.746476029172815e-06 276236.76280250656 26.578718578088655 None 5754 423715 ZEN_20210624 760560379.9936941 22567.558115687887 67.76099152107732 0.0020106228964243784 89960457.93724805 2669.3316086614636 113972 7385 1188798 MATIC_20210826 9928631224.606953 202559.23072158766 1.5321200051451604 3.126089645117919e-05 838083882.4692078 17100.00090024925 605199 None 5701 DENT_20190725 48426214.93344851 4929.393726713167 0.0006635669835957461 6.767029812768222e-08 4227332.018127258 431.1016446316181 46532 9921 262986 BNB_20201106 4094007654.9120317 263471.9136159392 27.66041204370796 0.0017793660049810931 319732745.8410764 20568.080393375283 None 75663 670 IOTX_20190414 33988776.662538126 6700.003420138105 0.01343576535161105 2.6479165733381537e-06 848417.0598099655 167.20577763768839 14999 1680 990626 COCOS_20190901 22643204.022261653 2358.9588401451633 0.0014388587411127349 1.4993318150108078e-07 2181473.466314358 227.31575228278507 8519 115 186264 PAX_20210710 0.0 0.0 6.368310855328558 0.00019332 71.37602806652248 0.00216673056 5 None None XVS_20211007 317237582.10152954 5715.044085558628 28.18951869140783 0.0005081564583583529 26594508.911152355 479.40412207853547 127230 None 25923 ONE_20191102 14920648.960508674 1616.0303950711686 0.005351053424135233 5.796930350986329e-07 2275616.0075719496 246.5231881630115 None None 168226 NXS_20210314 80445846.14941078 1310.5012419437414 1.1811685472673141 1.925190662901465e-05 1165098.884514916 18.98998664512694 24857 3734 416310 SNX_20210128 2172311269.55334 71809.87010237876 15.315334784088252 0.0005054207843075592 308972325.7392938 10196.384042921924 65820 3478 36126 BOND_20211202 128396238.99964583 2246.3609550494557 25.413873120905528 0.0004444297651103696 12887232.411510961 225.36783930266512 None None 201520 REQ_20210427 97618535.09111899 1812.0179993423176 0.12652095470784866 2.347144806064037e-06 832013.5633148433 15.435042505161572 42770 27545 383830 OMG_20190703 331332016.9887262 30777.784842003708 2.3680604334914075 0.0002194111075906302 200396299.74623877 18567.58951863368 None 40227 None FUN_20210212 218913226.81199172 4590.957484394153 0.036456802008254324 7.635544313650683e-07 7157589.84952664 149.90918419729462 35154 16857 258794 REQ_20190703 14207281.272375334 1316.3664557443408 0.019498977437732382 1.8029305058262907e-06 443197.3941480595 40.97928235282784 41659 29880 539616 POLY_20190608 45060995.31381817 5607.351593527079 0.09747130204023138 1.2140920377464723e-05 9355017.49197319 1165.2509007518597 35024 5098 303523 AST_20191203 3838107.2725319057 524.9671613220485 0.022205037701982917 3.039269910515593e-06 2431289.3893823996 332.7778490664704 31800 3526 341821 QLC_20190324 9000152.379168067 2249.211107647091 0.03756262149573939 9.380730833797373e-06 363810.6876338785 90.85654832528803 23919 5843 940522 BAT_20210809 1002299702.4505651 22783.542939551422 0.6727140615677981 1.5295869287644805e-05 107388658.1480324 2441.754932518724 209396 77135 27723 DASH_20210314 2430259376.515739 39569.51166471303 243.9199278174967 0.003976154423513784 1231601683.0950336 20076.418208475985 377217 38564 52035 QLC_20210219 15566045.22911855 301.1745076605979 0.06485114721690467 1.2546053718054992e-06 1464962.4607142764 28.34105257318312 30381 5611 940522 DOCK_20210401 72069250.99765772 1225.265216368512 0.12846155531759484 2.1861469738901687e-06 104141819.94945753 1772.2759464888597 45847 14908 236352 THETA_20200417 78913084.16067734 11114.45575071119 0.07884586742643844 1.1122495001855085e-05 2180981.5457237577 307.6630029352248 None 4025 358410 ADA_20210115 9607023622.828886 246283.07629381993 0.3101366394448269 7.91934608361543e-06 2179071320.3087335 55642.63531486305 177231 101365 38332 XMR_20190227 805277543.4408886 211402.75827037136 47.87553714094577 0.012568363153435532 202429118.0122229 53142.01824027859 313967 156105 108704 SCRT_20201106 17986985.00610472 1157.3519346996181 0.3188539478555079 2.0529714715064536e-05 708166.9773964577 45.596004422586276 61780 None 428764 ROSE_20210509 236650129.9024677 4035.397701716304 0.15806795093468565 2.6908619381380233e-06 17297915.892612778 294.4702149253372 19342 1465 225625 MDA_20200518 6954653.0642430745 718.6145508986731 0.35430703278978787 3.661004896959385e-05 125503.13150233738 12.96806262624765 None 374 1665650 COMP_20210203 5533142.998419576 155.11512211074466 5.987816738369586e-05 1.6817709138572952e-09 1027.150433015073 0.028849108078598876 2007 None 2426495 REQ_20190830 7647443.409154915 805.8709439747881 0.010471927995784593 1.1041292584464257e-06 268587.1110763084 28.319034269556514 41183 29481 589589 PIVX_20190321 49983469.135785714 12367.7226326805 0.8420437556180689 0.00020835215710565487 872212.8012441768 215.81707290377116 61324 8591 217374 BTCST_20210429 515408273.4821382 9415.931089449032 70.64908439968494 0.0012902342270986612 23644114.222966373 431.802417527686 None None 111287 QKC_20220112 125006054.60789335 2917.6823916815824 0.019003600014554478 4.4418579122023485e-07 3260807.65886847 76.21737085932082 78619 9625 485453 CND_20210207 26421534.76877408 673.4005514099834 0.013343894052601717 3.393364652318597e-07 317831.187106994 8.082476610514219 34063 5919 421392 QSP_20190915 0.0 0.0 0.011161227912338452 1.0786346549777205e-06 93206.11369352849 9.007552311918477 56381 8527 551928 NEO_20191019 501630599.0862058 63050.224663878456 7.115198574239105 0.0008939543893279116 199612129.64822918 25079.291547560126 323253 98331 172955 NANO_20190909 123062533.20197302 11848.116506054195 0.924229720788965 8.892676485612384e-05 1807516.3083188415 173.91409744567238 None 47607 229089 VIBE_20200106 2336489.4557462316 318.2027350213135 0.012489155503021251 1.7005951630781178e-06 104748.9850215584 14.263223580002 19705 None 1894870 ONE_20200511 13887992.691216249 1586.011332239654 0.002666945978303575 3.0408781755734036e-07 24083580.98188225 2746.033717715003 71857 None 228473 DIA_20201129 42305757.69059588 2390.236717450437 1.6508325585392076 9.319207265246774e-05 20984709.70480558 1184.6195916632937 17378 182 160467 WABI_20200725 7242922.7435967615 759.5473087182929 0.12258197410706773 1.2850961706750797e-05 1228590.1014699673 128.8000496181706 None 7661 820507 AST_20200306 3745524.4268971276 413.7018560643996 0.02174313532354086 2.4015797028081476e-06 6394492.506275883 706.2865214385329 31801 3485 336261 RCN_20190509 11790967.777380215 1979.3964675713223 0.023490715040464256 3.943950523416131e-06 576805.5112326924 96.84219462953084 19018 1120 1766498 LTO_20210509 159112568.80560625 2713.2142067149794 0.563641177103098 9.600005259196813e-06 18804236.830026772 320.2760546900561 9142 4033 155489 AVA_20210314 141015409.42909047 2296.014549816734 3.654766430070344 5.957658251976362e-05 15549136.889554279 253.46747999811336 None 9534 53817 LOOM_20191030 13817394.243384698 1468.296922814266 0.02293098230752335 2.4371766491866382e-06 5174489.361692858 549.9609425648093 21111 None 365854 HIVE_20201018 55686023.26091083 4900.699192765617 0.15064349433474675 1.3255407167862117e-05 1349373.3191835578 118.73392107781193 9129 95 136170 AMB_20200422 1200418.0213574888 175.28781474521037 0.008279103288145169 1.2094300246321315e-06 64830.191724658245 9.470540183588588 18939 5476 839960 GTO_20190312 20862209.75151376 5397.143826483268 0.035265813714888045 9.120483954409014e-06 7423833.744298553 1919.9601373862727 16318 None 778582 OG_20210128 0.0 0.0 3.3385563346755216 0.00010981760134705327 1971373.2330641604 64.84583697639854 618421 None 397078 XVG_20191015 62451302.30490516 7481.789253012368 0.0039048779504943652 4.6781208407304923e-07 2241325.380584401 268.5152034634691 301149 52591 292471 ONT_20190207 307399162.330047 90259.28147780454 0.5144755854896184 0.00015106155895866865 13301890.88568686 3905.7331989381846 67097 11004 281556 AMB_20201229 1884345.099421499 69.49066741393088 0.013250793273830622 4.880027840618432e-07 633813.926770699 23.34222219375513 20209 5481 636877 OST_20191022 7990250.577644827 973.0472023693198 0.011843985900215254 1.4423524310176398e-06 426712.70085327234 51.964778293989234 17960 757 847910 CND_20210826 32914355.846268643 673.3291107270555 0.01711255116604982 3.490125427853891e-07 182627.64132069267 3.7247127480727484 None 6267 184499 REQ_20210723 35598491.52985749 1101.3026685491175 0.04618728563511461 1.4266500781832744e-06 820715.2099212728 25.35055702667687 43404 27787 339521 BAL_20210610 283948560.41089165 7564.714981343024 26.23138876346878 0.000700369310099706 36028939.387642376 961.9606361706939 85294 None 53352 NXS_20190702 18659898.055923484 1757.41236041065 0.3119825168649289 2.942975007262539e-05 284998.4679745668 26.884306748521826 21383 3522 987625 XVG_20201130 112750635.62266394 6215.6685770764225 0.006893069936057421 3.7937085015220483e-07 3967889.4175662156 218.3789799923325 287861 51309 388389 GO_20200707 11327087.454027424 1213.4256852904912 0.011417500138569283 1.2225242456458047e-06 808333.893829494 86.55202730811348 11519 681 901828 TRB_20210201 50067817.59508549 1514.5236178515677 29.967624133568197 0.0009037331087331316 48597069.51056498 1465.5409620847256 None None 357137 XMR_20190507 1129078414.4168293 197352.9734600393 66.54524763403525 0.011632948486104218 276851511.49029016 48397.13557275016 317093 157648 117450 NXS_20200407 9569354.964812007 1315.7044080258468 0.16011023752253156 2.2007079337685616e-05 250807.21006222893 34.473336969013715 23662 3530 537983 ICX_20190807 113354283.056358 9906.152097340333 0.23106774026995314 2.0178325504546303e-05 11304038.28802103 987.1415361792207 114017 25959 229714 POA_20210310 21239533.868502446 388.08381839219817 0.07443015110042013 1.3599703939545993e-06 3219199.780104574 58.82046896909584 18926 None 413017 DOGE_20211120 30964779016.368107 530896.5044812113 0.23425958210877282 4.0164211479447525e-06 1333859589.9104862 22869.253915162535 2530133 2223167 32279 CDT_20190801 10236391.676654974 1017.8058596643635 0.015114492104828044 1.5010660525095126e-06 1333441.9008918502 132.42815944725933 19787 296 234430 GAS_20210219 59510488.26240154 1151.3598449771548 4.285636999686878 8.289361474995096e-05 19401764.900336947 375.27266663862514 344392 104287 123772 ELF_20190723 63263694.048812024 6114.558809715671 0.1390710453275951 1.3451299079870711e-05 25964802.442667294 2511.380585249499 86419 33424 1184009 NAS_20200309 17660845.229290932 2186.1549765251293 0.38604742048840057 4.798855770905063e-05 4467244.766522891 555.3116583644662 23731 4985 1191705 RAD_20211207 290032998.4662475 5747.319709282752 11.376763905913023 0.00022541905489048677 153893111.73792028 3049.236152653907 24225 None 185838 ZRX_20200322 97410581.75794138 15809.19315003101 0.15218911245302902 2.4711871744114894e-05 36834157.387539625 5980.986146064517 152706 15961 132419 QLC_20190405 10399447.469788378 2120.918089150436 0.043306475305773695 8.844367708677516e-06 785231.7929138093 160.3658266815342 24749 5840 940522 HBAR_20210427 2315452763.137595 42979.97382890386 0.2866367942141069 5.31733370974679e-06 158479341.2040465 2939.914066486816 84231 15601 42635 ONG_20210430 0.0 0.0 0.9163069467521862 1.70971045936076e-05 14433678.852475591 269.313812239445 127694 18592 153956 RDN_20201129 13622045.187050441 769.5316882795878 0.20431011461634302 1.1540751569067958e-05 2714583.023715275 153.33713824759073 26390 4381 2057108 MTH_20210825 9300541.939851869 193.16272374344436 0.026760768754254836 5.557937392756551e-07 424028.6504325902 8.806640472406764 21855 2053 1319394 ZRX_20190509 160173985.8221454 26910.519232788625 0.27213778219908896 4.568519854705582e-05 28421318.013985243 4771.235900967362 150103 15850 221725 TRB_20201201 41224119.57771375 2094.596508875667 25.999773349651846 0.0013235630277999685 30937330.71497805 1574.9178488016944 11081 None 404210 KMD_20200711 78938388.22290751 8501.423700142375 0.6541787652355304 7.046161907386195e-05 2810307.317299916 302.6983054101105 100110 8380 267955 FORTH_20210828 172257708.74642673 3511.2233197092273 19.949204848866923 0.0004067497385714379 27023482.593703616 550.9891027512839 32216 None 144667 CTSI_20210806 169905489.43913034 4146.9256285259935 0.443284271760434 1.0834035101261489e-05 15568753.414953316 380.5062162720838 48132 3960 132314 DNT_20181229 6816762.373732604 1770.8413200962668 0.011731596816900365 3.0476046039289344e-06 503589.8831254939 130.82130849351736 60260 6583 493193 WPR_20190421 8901038.081918336 1676.2529781764176 0.014876296917542992 2.801583606689402e-06 164781.0447855313 31.03244552882611 35278 None 921512 NEO_20190725 835187847.6647267 85015.3112846724 11.829990278897082 0.0012064177224167729 404200455.2760697 41220.2023127479 324372 98164 191074 FUN_20190419 32923436.71250652 6244.186507635641 0.005476199483080113 1.0384446681836655e-06 1661194.3251280293 315.01014436674564 36584 17747 481860 AST_20200421 2382223.6345570805 347.8840819418036 0.013827527705750079 2.01959726414085e-06 69727.02798010394 10.184070351689204 31669 3460 322316 HBAR_20210821 2280696172.822411 46419.6953595654 0.2453674860974457 4.994038264066799e-06 96344724.86090903 1960.9331706862054 121896 24532 50561 SKL_20210704 276594620.3319142 7978.639001348151 0.22829313717437424 6.583692909952147e-06 18228348.09440275 525.6831089827878 None 2282 152464 REP_20200224 151074817.5717672 15183.832132475589 13.724266258707722 0.0013806988958890726 31228428.300549172 3141.6656936076683 129857 10109 295562 BCH_20200107 4444112040.466332 572907.5438028417 243.78220113693763 0.031441489865750766 2359839879.7982287 304357.2554494762 999637 280685 122390 SOL_20200927 121477645.40078653 11313.27016693875 3.1351452155696546 0.00029205020658143324 8801854.27770789 819.9248147544538 None 2445 73092 EOS_20191213 2467647343.737389 342418.1546592155 2.586082625972455 0.00035881165884269866 1981107874.1893008 274873.12104612036 1365 69515 77339 CHR_20210120 14835132.74037604 409.66501897284456 0.03271753463536264 9.077642248358751e-07 8921194.483620364 247.52296544620023 36688 None 518597 EOS_20211230 2963019735.2404428 63886.720184212914 3.0389210457448663 6.530265252434575e-05 551591761.2405319 11853.02433902274 None 96571 62923 TWT_20220112 226604301.97045487 5285.999496643746 0.6515193610561927 1.5227456275577874e-05 4143821.4658920527 96.85032242691858 1564944 64079 3086 ZEC_20200927 569780871.9505575 53064.40719259979 56.305270537050916 0.005242045009306507 373490827.43415123 34772.15737174391 71793 16154 167154 PERP_20210823 760500203.6538041 15415.518458952027 17.102789467946582 0.000347067739143954 33975380.33562408 689.4640468878296 None None 133566 ICX_20200224 210179509.24132335 21125.67300247591 0.4018706667820024 4.038623910425369e-05 28985522.26367575 2912.917835173789 112475 27477 160011 KMD_20200704 72210884.78810388 7962.933609936149 0.5989214660649917 6.604505519958447e-05 2648452.311859536 292.0536147743435 99914 8380 267955 SKY_20200324 6206310.120589491 957.7859992908559 0.3650770659170289 5.6340352899462114e-05 213417.78585490622 32.9356031715779 16177 3829 253868 ADX_20210204 55527821.70843326 1480.0163742937211 0.4864455555721865 1.2971088364729196e-05 54729408.37284624 1459.3616572742892 52886 3746 11021 RVN_20200719 133468561.50461015 14554.32212094049 0.020128013324650924 2.195661253311073e-06 7532933.578291828 821.7289066161796 32651 8429 210690 DCR_20200117 224988958.56903347 25848.863756999384 20.623080289082235 0.0023684394286862627 38083125.72257783 4373.622914939605 40887 9709 104467 UMA_20210806 591720740.086637 14442.20114377225 9.484922136585451 0.00023181508099171606 50851927.33748799 1242.840319042237 42369 None 213282 QLC_20200625 4889353.880287371 525.5203872487459 0.019983050283763286 2.1498903381450415e-06 2381952.7152495207 256.26403655673016 24469 5645 940522 LINA_20211230 147117699.2401309 3162.577043123055 0.045516901859748646 9.782343989539042e-07 68867167.93370995 1480.0706963508248 None None 143736 QLC_20210401 27140628.587313503 461.4985119016128 0.11295528348249134 1.9221462558196644e-06 2471081.824272081 42.05009743598977 31896 5633 940522 NEO_20190225 593060289.96026 157672.1653588257 9.108698163253157 0.0024182273019366257 497734760.21915644 132141.3625429616 316472 97920 150509 BTS_20200129 52890425.48272237 5656.489920642091 0.019515350789390422 2.0871147099023054e-06 6403136.370849059 684.7983545535321 13384 7055 163691 BNT_20200913 78801730.55037503 7557.121862418242 1.1999827207934466 0.00011491947805681947 49197804.2646631 4711.55616632403 710 5209 75903 FTM_20210825 1245081741.666223 25909.6377174091 0.48516272307005054 1.0102232551334781e-05 127633537.71127227 2657.6313842699365 109009 9818 52942 WAVES_20200801 151989485.8145645 13410.47412822079 1.5197498351460836 0.0001341235261406794 27810979.95080681 2454.421517388352 138954 56879 142173 MATIC_20190908 30049379.887391888 2870.437762252037 0.013731835926265671 1.3116089702122277e-06 7799496.118873349 744.9760634761477 23053 1141 217453 AION_20190601 72396904.2078367 8439.917834885571 0.2337010389203272 2.725004869713591e-05 7553044.125507848 880.7013489652184 68878 72566 268953 CND_20190906 10448512.89157978 987.6042045273905 0.00591541528677539 5.599517089779863e-07 192698.6111735373 18.24080160281125 35844 6106 335034 MDA_20200523 7172586.8047625115 783.5482860642388 0.36540973715691444 3.991811895122326e-05 729524.5006277157 79.69477228622301 None 374 1665650 NEO_20200330 437436414.23461914 73976.0272946248 6.202901945656512 0.0010495478525076706 265975210.08526245 45003.72777305256 321746 99265 219445 SFP_20211221 160049908.03834826 3392.420325147492 1.4657502191652778 3.109886548097769e-05 17355298.93744963 368.2278876582867 None None 24619 ANKR_20200721 33172002.37850483 3620.6591645998383 0.006479509950152029 7.071898592413625e-07 20954401.032294486 2287.0155352053603 None None 5287 KNC_20200605 129396471.23235624 13257.397413068558 0.7274606708139219 7.441213241688725e-05 49616317.00234464 5075.265370271983 107173 7720 97409 KNC_20210624 124002811.22070429 3678.296354077516 1.3444388072419873 3.985743167649143e-05 40166854.31920469 1190.7925024654014 168772 11140 120272 AGIX_20211002 347910034.72791624 7224.051793338918 0.3578924622003194 7.430989326401106e-06 6084119.1947471155 126.32572510401857 65255 None 126140 CDT_20210203 8601044.838548606 241.4833889169813 0.012439745044513355 3.5016839254316105e-07 1044037.824092793 29.38878934484905 19334 296 640190 XEM_20210718 1433142262.0414026 45343.63064486278 0.15788111537287736 4.995049190052024e-06 311794482.88795525 9864.566610983822 371285 21719 102654 MANA_20190623 78888282.74001881 7348.26689364734 0.05964874258133908 5.560870411837452e-06 22337925.153118357 2082.4966574345985 44808 6271 136694 RIF_20210314 241799534.26458973 3940.827888767929 0.342332129046149 5.579469607199988e-06 7510737.852194363 122.41308956517992 43097 3137 698568 FET_20211111 593444863.1380368 9151.140850799145 0.8722930878734655 1.3432194288730205e-05 137909219.5047259 2123.6250250596177 85502 6571 75627 STMX_20210902 329793823.0613103 6779.716892761257 0.035402487005764594 7.273467846841121e-07 152149304.79577503 3125.919024194833 70902 4867 99182 TRX_20211204 6778696851.033451 126260.704969433 0.09434592272983432 1.7594052825058827e-06 2269666040.778019 42325.75511613814 1285676 120839 23366 RLC_20210203 92354306.95660457 2592.938054793821 1.2992833746786123 3.658436068744609e-05 11287451.144475328 317.8245731140495 34371 3948 456276 WAN_20210702 100233922.39620951 2983.5818252219656 0.5695184201711293 1.69365368842888e-05 2327925.7347728787 69.22866526251937 122838 16618 187166 SUN_20201101 0.0 0.0 6.89923605849745e-05 5e-09 0.04941808489954843 3.58141716565e-06 36 None 8079244 OAX_20200707 3112264.6286249026 333.40446385123715 0.05953054124529101 6.371562071236068e-06 624619.9548500367 66.8531602436 11901 None None WNXM_20210624 116819362.03540228 3464.970480401584 54.92373942151412 0.0016297123988186118 40294758.87503566 1195.6372387916622 30270 None 117784 LTC_20190626 8486012208.789715 718918.9422101318 136.41166057096697 0.011538079435094356 5203003986.42725 440084.6162654748 447979 204913 158874 SRM_20201124 63596869.51708145 3473.55785434928 1.2793623305105346 6.968500709075411e-05 56115231.77054832 3056.5151330268673 None None 73913 CVC_20210825 233606167.36867717 4861.248030972601 0.3485041517662762 7.2570012868393715e-06 50795151.39343112 1057.721915676187 104254 9859 272876 EGLD_20210110 634088002.9825453 15675.86262878196 37.09087647324296 0.0009207501809042281 81186183.20532784 2015.379521353587 None 3235 49960 POA_20210128 5669339.857203594 187.41078427298203 0.020068617359025643 6.599973328574603e-07 104827.31813761756 3.447459739936321 18223 None 322201 LRC_20200318 31071617.552377287 5721.756671358636 0.026824506929104142 4.987224762605676e-06 2398234.0346703534 445.88078341357055 34292 6820 553678 XEM_20211221 1128696685.3543723 23923.87239238737 0.12507019280209905 2.652844306057451e-06 91873634.01463048 1948.7172875648448 377047 22525 308464 STORJ_20200403 12829976.074024629 1890.6372743791658 0.08954455575984867 1.3135274068909281e-05 1741942.701748399 255.525247801399 82032 8036 134239 NCASH_20200308 2333226.643657481 262.50292218673684 0.0008044946980028806 9.047253043136396e-08 990111.8235186483 111.34681472247992 57993 58352 746963 SRM_20210204 141657031.115028 3779.931355435789 2.8494885169114537 7.596707480830996e-05 119996304.27670103 3199.089299573457 32650 None 83159 FET_20190703 40093153.73034529 3724.29585998003 0.1487810065547335 1.3785207917389639e-05 18580151.570439775 1721.5319244456145 10150 287 401657 BTS_20191011 76723106.27403644 8960.013598457226 0.028305126305712754 3.306534706458355e-06 12254213.15744828 1431.5068114450885 13546 7124 134466 RDN_20210430 67625073.24224725 1261.5711362399225 1.0088578534579653 1.881811650332419e-05 2254665.816497427 42.05603779113462 28962 4543 626244 MATIC_20191118 34240022.95528351 4025.374398955358 0.014305688248747332 1.6817401061003274e-06 8294474.537214542 975.0772032574592 24522 1207 211768 ENJ_20200315 46442436.026821055 8980.595414334259 0.05078590747297828 9.822930964293413e-06 7163721.547502833 1385.595841641359 53819 15248 23333 GO_20190704 12970734.392873378 1080.7670802792888 0.017523949806589865 1.460156957483835e-06 737198.0882677736 61.425930198863234 9973 677 942776 MKR_20210325 1648878030.1273866 31195.235048557082 1818.2726413394262 0.0344861602166471 101117385.62646255 1917.8368975699236 126200 23312 30513 SNT_20210819 360767766.69807315 8003.687795882602 0.09291675325611368 2.063126453214566e-06 30348002.936090272 673.8479925907384 134220 6050 144059 ACM_20211120 14742724.930310065 253.5363850396305 7.364217213736364 0.0001262607808357473 1206670.164028251 20.68856915806619 None None 33092 XMR_20200331 817064037.3751211 127194.34511252982 46.62308765441908 0.0072722918761612704 146008086.99924466 22774.412385744537 319622 167860 87629 TORN_20211028 79750714.36346374 1362.6077011532109 60.22457420505878 0.0010289171170917077 7596005.266190584 129.7752610635434 26433 None 94998 EPS_20210506 294368115.90290725 5141.510493009826 2.6493423737507906 4.621389470650842e-05 70438063.35003601 1228.6887777287836 14128 None 33734 RUNE_20210127 560016067.9772975 17185.161567739397 2.4074197407507407 7.39113031916799e-05 38461726.213033445 1180.8311858905001 29951 2133 220522 FXS_20211225 760043094.429928 14947.925161008241 21.32672015209167 0.0004194860120457461 5420785.128896493 106.62415597246225 None None 80112 DOT_20210429 33465362480.344566 611374.6387295389 33.99294723198461 0.0006207987601161443 1727083451.9411442 31540.99167292404 333734 23160 15695 NKN_20200713 15566628.093868501 1677.471093664574 0.02396843768309921 2.581955808662656e-06 1800541.8707082537 193.96005710850227 12978 1011 257526 WPR_20190818 3582146.2811768604 350.4529514610157 0.005889541759693505 5.761929107371333e-07 902373.129697464 88.28208057368737 34613 None 1022788 SXP_20211021 461024172.6728834 6955.440423290052 2.389328342656656 3.6189960382951715e-05 106998669.56495917 1620.65528770269 None None 178117 FTM_20211007 4035392439.1737776 72697.70983510757 1.5970864602811325 2.87869386340403e-05 565494938.606286 10192.853361648311 168715 14460 32912 STPT_20210710 49238295.397534125 1451.7447030942417 0.04399307103446407 1.2944862429498546e-06 16808000.20749918 494.5716343162549 None None 433288 RVN_20201030 84215920.7875109 6252.061106630233 0.011415039883247206 8.489062929151184e-07 5402594.532223488 401.7766511008176 33718 9622 230574 BLZ_20210430 120770236.83286175 2253.6200408290833 0.42007805590756386 7.838114165550853e-06 50613413.44737447 944.3809485636232 55616 None 191106 CELR_20190723 30179003.55028972 2918.9886487958784 0.010023211645242537 9.695125083532308e-07 6688770.522304286 646.9829148979783 17626 None 509628 NEBL_20190803 12300908.16130441 1168.9250960445108 0.7982601270842226 7.585669964236852e-05 149338.69236764603 14.191289214576253 40499 6153 850260 BCPT_20190530 6282798.592439174 726.5344265564821 0.0748841055139375 8.65986539573462e-06 2774301.7156611574 320.8301582811813 10827 2289 1042603 ADX_20210506 154372880.49951506 2696.5785479199913 1.314155388046337 2.292351465514169e-05 6346894.9544193875 110.71228016541647 58326 3827 10477 SNT_20190614 103757666.76703942 12618.694847370529 0.02937371066141617 3.570360926162502e-06 26316119.623163722 3198.7121516172824 111520 5745 342560 SUSD_20210624 164601127.88922653 4882.564537302193 1.0104965335894118 2.9983732846653534e-05 124738791.55742376 3701.283950363256 137242 6936 43067 MDT_20201018 6893667.800440359 606.9374525847579 0.011376036448337087 1.000981368393905e-06 532928.5076935522 46.89256309170773 14092 65 936528 HC_20190821 124166010.04232779 11551.862685997097 2.8072092285073285 0.0002611826865300166 156066315.75685477 14520.406677307552 12945 852 414812 GO_20190522 18120650.15496764 2278.4798083527116 0.025236823938386516 3.177614712452461e-06 4696297.372374704 591.319401401022 9609 662 859929 VIA_20190608 13000484.238745008 1619.3263115120847 0.5617268111477599 6.996808645499783e-05 408423.7682120577 50.87282457845916 41049 2234 1811232 SNT_20210731 327740794.49142236 7855.491794873673 0.08355531360264336 2.0002981094013652e-06 181621046.38221216 4347.972858237748 133707 6033 132368 IRIS_20210826 128782295.04405603 2627.300829101728 0.11963157263085253 2.4412535036257564e-06 11974863.113438897 244.3642249970915 27386 None 908370 DREP_20211125 0.0 0.0 1.2069714475066746 2.1103617463601263e-05 64153651.4646967 1121.7118037058412 4188 None 511631 XLM_20190224 1798876425.881727 437175.0796138814 0.09379590843554621 2.2794914174089173e-05 115716997.35875185 28122.325027521245 262900 99205 66683 QKC_20210401 308884406.2032678 5251.608953327006 0.047998233839743755 8.165810541796473e-07 56866672.60035593 967.4574196777447 69188 9352 311795 FTT_20210814 5285664762.781437 110933.11438633811 50.63639271063094 0.0010613243244825487 437221486.45174235 9164.037442584826 None None 2262 ATOM_20210821 5251520129.828711 106872.61752192547 18.92587788085855 0.00038496754246419265 539784917.8394101 10979.658359205645 172870 33999 61182 STORJ_20210124 55309454.91166982 1728.4004962039119 0.3848057310753502 1.20153591963351e-05 34692435.82198695 1083.2532993521158 83401 8617 104172 DGB_20200903 340324655.4243771 29831.29911694121 0.025123885299147115 2.202396886273593e-06 18784498.817146976 1646.6769057610256 164886 22965 135081 BTG_20200719 157864216.18640244 17221.30319090276 9.013640585993318 0.0009832921046649945 7086416.373217831 773.0524868033609 75851 None 222714 XRP_20190405 13825253951.510794 2819595.1061863946 0.33102197792169713 6.753977563874525e-05 1836094470.3531175 374625.9065871591 915849 199272 36994 IOST_20210318 798724127.9217974 13570.342424369688 0.043223425831590744 7.339168938253886e-07 278679198.33080834 4731.863976020456 None 52771 143950 CDT_20200506 2635407.4883244713 293.8732157881056 0.003983448199592235 4.435389471897991e-07 47227.07016701601 5.258520741623123 18962 289 282391 VIB_20200325 1901113.8987815578 281.2530612771022 0.010410045023543622 1.540573390269771e-06 571326.4509273196 84.55009805099604 31415 1105 None OGN_20210325 169140781.90961218 3199.825233842507 0.7904401111287008 1.499183548951617e-05 51687430.364587635 980.3265826113318 91374 3468 85447 ZEN_20210707 758572580.1498194 22207.873663661125 67.5141605985625 0.0019765610310749165 35622492.6501882 1042.892782460422 115363 7408 1147969 XTZ_20210702 2465068135.4020166 73375.68271195768 2.9528448705194803 8.779488156970529e-05 80960373.45886402 2407.1384415157636 123613 49667 72508 DEGO_20210731 50281185.05763139 1204.4618166318332 9.257193924531624 0.00022161543900921465 36870476.745016694 882.6721095981941 120101 None 245184 HARD_20210806 59411412.781482555 1450.0691596473227 0.8105140361987919 1.980926930560817e-05 17300563.586089354 422.83231123660215 35287 None None WABI_20190302 8731525.172007777 2282.007257958374 0.16593970929226948 4.3436769530617704e-05 2311115.8763864026 604.9631405846051 34661 8012 1659091 SC_20200316 52117872.37487407 9698.865820936415 0.001189862711772545 2.2142728129441103e-07 3410507.7454942456 634.6778081593353 107829 30205 162098 PIVX_20200530 21113733.709186934 2240.4093411689723 0.33152451938662125 3.536560732528041e-05 897328.2935572698 95.72311613791003 63736 8468 243551 GAS_20200321 13754722.90724755 2224.939129339802 0.9834908172803719 0.00015889532768091256 9024970.915132305 1458.0977124282017 322328 98958 219445 BNB_20200316 1590139361.762785 294329.50905648485 10.385577077338656 0.001932702045501411 298770292.3439776 55599.60229925227 None 60193 1672 BAT_20210508 2097488833.3416753 36603.983935775344 1.4057129357516336 2.4530204980177594e-05 769261636.4269719 13423.89697427848 195854 71104 21549 ZEC_20191015 282705543.57563525 33868.68199104114 37.0518709239618 0.004438887252173849 103597346.3634827 12411.166525858438 139 15336 177381 HOT_20190816 154360537.49101126 14987.144422306561 0.00086984235330626 8.443077775832366e-08 6222702.646758111 604.003268210124 24167 6622 386677 BAT_20210408 1791494953.2763696 31805.34103097252 1.1918589343847823 2.119843058083292e-05 618981002.8495171 11009.210436915417 176724 65422 18944 HBAR_20201231 215679998.42959294 7468.909515115766 0.03268812671761248 1.1335005970957382e-06 7981192.036366182 276.75755227302244 43576 6842 204299 THETA_20200807 317488814.6696027 26969.75040358482 0.31769580939675 2.6982952850063656e-05 40835489.47667317 3468.2927963405946 71884 4303 60901 HC_20200207 86322489.89416838 8863.32541625633 1.9363187173822243 0.0001989283477561405 39494708.6767513 4057.502038093126 12784 845 843276 YFI_20210212 1379552921.2301242 28936.275264673743 43789.39144039961 0.9156829156794949 1554795310.5068607 32512.429526395248 82398 3198 19848 NEO_20211207 2070717672.9825041 40998.48484343008 29.359388529455615 0.0005812914340483494 233846086.9999653 4629.957709181398 430782 115437 77665 AE_20190419 148562556.2273031 28174.778319802073 0.5585947620168781 0.00010590385147050842 35284124.50370405 6689.508987186482 969 6363 416342 DNT_20190110 7116534.403178518 1789.0543818818073 0.012244017247764688 3.078847990283037e-06 273569.1599130161 68.79097286108264 60188 6555 530536 SNM_20210218 11644731.831924278 223.17697389752982 0.026588364479753643 5.100003122414613e-07 5721698.829590303 109.7498190181909 29064 9498 None VITE_20210710 31560417.459088992 930.5291441094456 0.048071980111784096 1.4144935407135874e-06 5372138.7838715 158.07244868909495 33031 2379 205892 DASH_20200107 522839369.24655104 67385.40957260416 56.55601546595422 0.00728297762918641 546770012.85539 70410.08350973624 315676 33216 83621 DIA_20210723 55000455.59911664 1699.034998026943 1.1323862358665715 3.4977709549625124e-05 7305978.535348222 225.6707005888727 34019 400 454629 AMP_20220115 1981137447.1793873 45971.48812221686 0.04124481758461399 9.562795460358625e-07 18518227.991546206 429.3533998741806 43252 43354 73148 BNT_20210203 232219256.75451064 6520.687445189882 2.0529592308813585 5.78058662512815e-05 106988466.72142297 3012.510382426424 None 5380 79308 YOYO_20220105 3145108.8942612126 68.34977942228744 0.01795606531561599 3.9087502293023526e-07 183520.53152903734 3.994950492143529 12514 None 776872 CND_20190524 34820606.52698601 4426.492991942344 0.020008159001039628 2.54349319076712e-06 723521.4438310913 91.9760716447103 36557 6178 561865 LTO_20211202 157847136.24061668 2761.5249173982047 0.5365897228911082 9.383532663187668e-06 41853199.24523674 731.9015728824879 None 5993 189843 CELR_20200621 16922430.00307153 1808.864970048152 0.004392219732932499 4.692475195215928e-07 3907907.4821904753 417.50549927824744 None None 899619 BAR_20210430 118794148.28462104 2216.745452589836 40.22185844128902 0.0007504879485607334 51995297.29591748 970.1651170439551 None None 44251 LPT_20210722 275743594.23957455 8568.762955274648 11.565677243005528 0.00035812183635255056 11824482.065991981 366.1355182595791 14160 1200 114263 DGD_20200316 45582871.3673907 8437.237938740149 22.629647593236403 0.004212545594896878 700882.7573445229 130.47046180574625 17629 4712 334920 ETC_20190821 678770432.1979489 63149.83323852166 6.014152876534339 0.0005597195414734797 823303879.9581329 76622.47362907916 229488 24893 482560 HIVE_20210120 50949995.05356037 1407.0159120928263 0.13657297329295257 3.789284877865115e-06 3268539.103120446 90.68723845967718 10677 100 147152 GO_20200913 12223235.794609422 1171.7305396488314 0.011785732030405982 1.1286066734345155e-06 866656.7271554341 82.99141396742293 None 680 742486 LOOM_20200107 14550358.572417496 1875.3023002907175 0.017354854012008432 2.2383195491521423e-06 2439041.248758821 314.57214820175403 21275 None 304548 UTK_20210408 271311293.12301105 4816.887712598929 0.5981581423828984 1.06447042380319e-05 21402245.31376493 380.8701332514795 66940 3665 69203 WAVES_20190812 131079352.124642 11358.1849316607 1.310850720575982 0.00011351028616278824 13899851.373524591 1203.6276002012903 143157 56895 43327 SNX_20210218 3516781922.905978 67400.84346639644 24.250260036156025 0.00046509444033159133 332011530.5504268 6367.6313884782085 83752 4773 25863 SKY_20191220 7387696.87706397 1034.355954194108 0.43510467447024975 6.089091001273795e-05 88142.04123033468 12.3350757089196 16324 3806 738943 CTXC_20201106 765247.1377709893 49.24786291880422 0.07582035046032057 4.881056591147542e-06 2072150.8349657026 133.39803139203877 16601 20064 571475 NEAR_20210804 993387676.3405802 25858.900455059877 2.3480413613609388 6.113246259144263e-05 46502328.16964027 1210.7119934198338 None None None IDEX_20211125 223861768.7617275 3915.548344879278 0.37440410816202613 6.546369503416523e-06 113468424.63450752 1983.9692418828943 70169 1987 4302182 XTZ_20200127 1063829322.5854055 123964.96356258383 1.5236465047914867 0.00017729754289042652 52368554.98626477 6093.8125047959065 53084 19852 169583 OAX_20200319 1186491.8308178787 220.46550561048025 0.022741539777878864 4.220964547226709e-06 20947.78286695165 3.888032634906 12030 None None DOCK_20200313 1756568.4236225996 365.97574990264764 0.003163414590921802 6.622942122346386e-07 1143906.587214699 239.48890993406323 43114 15024 375776 XVG_20210131 242817469.74166787 7097.341295522612 0.01489522753337562 4.359859599610383e-07 53189800.98957107 1556.8749381379414 289644 51531 157669 KLAY_20220115 3600686403.6083956 83552.46248612393 1.3850133238323756 3.2122497257256715e-05 36689351.73309433 850.9330416806058 89676 1145 24056 MTH_20190914 4967120.942650382 479.8827905054653 0.014293512144633876 1.3807831802165674e-06 297173.36311421543 28.707568667827207 19525 1983 715962 STX_20211028 1976810265.1982384 33774.76354106343 1.874207609526519 3.202022290534324e-05 68321318.78761546 1167.247345302974 88749 None 64291 BCH_20210429 16975725319.0124 310127.46209394204 908.5085505203483 0.016592056217009175 7209218265.679983 131661.67195272047 None 515186 311242 BEAM_20210212 53498211.881046414 1122.130917440585 0.6569914483043908 1.3766613319835989e-05 22516211.85564215 471.80520057624716 16390 1740 285375 LTO_20200610 12338828.502428107 1262.442926218417 0.055939640314434165 5.725812696825118e-06 3658531.863764398 374.47627620652037 15332 467 1406208 HBAR_20200109 19841843.696504965 2465.633796274652 0.01020128188631971 1.2713010306550213e-06 1129825.8385155115 140.8008100326724 35083 6142 146335 MANA_20210304 453332019.1191126 8916.358992247737 0.34538888397927003 6.816662525886292e-06 313819917.4867469 6193.611232540504 72939 13838 31249 TNB_20200425 3651036.5392751587 486.93177737195555 0.0011097524785521552 1.4806049249631173e-07 243435.80154651677 32.47861605610981 14955 1438 4384247 BNT_20200721 105113042.55437669 11473.66499012952 1.5996881967147523 0.00017461473868263784 62768270.707375765 6851.500942270106 None 5117 121878 COS_20200801 16465399.31508067 1452.6042232314267 0.008338176350073105 7.356008910324869e-07 1815802.4781602619 160.19161322511195 12571 None 236084 AE_20190902 67382948.7306659 6919.647893482781 0.206007933946947 2.1152913578843798e-05 19423976.415027503 1994.455682325268 24915 6353 344855 QLC_20211021 9017037.37131445 135.99529418724867 0.03750387505718734 5.680524222207405e-07 618664.1327890776 9.370595935381342 35245 5794 940522 ADX_20190213 9706234.548036626 2670.218943924963 0.1115258052741115 3.069206316453192e-05 2300980.1758846543 633.2330775376255 54332 3948 834764 BAL_20210401 618045156.6235087 10507.91627191594 57.21036744912445 0.0009736007894722856 73145198.1595601 1244.778277950815 66461 None 52678 PNT_20200914 16767299.283967258 1624.3770336578075 0.634168848743811 6.140755441366216e-05 2952739.686533898 285.91836910529054 None 90 271040 LINK_20191216 755452928.5013385 106159.02195977257 2.0731411073735924 0.0002915728335554075 102799616.08426104 14458.048824312189 38572 11948 103357 BCD_20210117 139865320.04260546 3856.3285946435326 0.7457219668323974 2.0606043753430057e-05 5761483.783334114 159.20328514439936 28008 None 1665696 OGN_20200701 19847407.174062233 2169.22340414182 0.2652667477186066 2.900304915532954e-05 11689576.368502913 1278.0846485150607 64459 2298 159966 FIDA_20220112 137935293.50113934 3219.4550760127163 2.8068717889679493 6.560283545276883e-05 12647215.034959994 295.59353944674905 67496 None 449205 DCR_20190227 155671204.74405184 40859.34176890907 16.595313903704408 0.004355806224205996 1988544.3456713497 521.9373305166248 39794 9364 245960 SYS_20190703 24967148.974639904 2320.2814043951794 0.04479482572344703 4.162934311995711e-06 478279.2442565717 44.44810409406022 61446 4607 806939 ONG_20201031 0.0 0.0 0.10321245453367464 7.605682307985028e-06 2979887.586195794 219.58666128533022 93550 16682 220041 RCN_20210429 59510082.95618757 1087.2083844052268 0.11552840609332025 2.109890773690525e-06 1248590.2546571048 22.802955112987114 19619 1153 909754 RENBTC_20210707 381320917.3196735 11162.371188389463 34301.88338587183 1.0040289343097306 3527571.6243087547 103.25333856492395 86475 5518 90516 ATOM_20190706 1295065910.622823 117831.81322567938 5.37854782353695 0.0004894732705364744 95278930.73503007 8670.832977631699 26649 5826 112670 STX_20220105 2503942880.3399887 54064.500890182666 2.3854022164611357 5.1836633171589286e-05 97815456.16112837 2125.605436494611 103631 None 35752 IDEX_20210304 39747316.61516603 782.1078229195051 0.06843386045949074 1.3506240464992514e-06 2411720.364303016 47.59818451843377 50627 1933 5102043 BRD_20190530 28983480.22751649 3353.768992989016 0.4831633507874526 5.592041116492835e-05 254950.31437433584 29.507466539432 168 None None REEF_20210210 0.0 0.0 0.03453844575155442 7.415184939748535e-07 128120102.2134786 2750.657221944253 31512 2095 104266 WAVES_20190929 84787689.35012978 10351.22668206811 0.8495707659843017 0.00010349893646940735 21125777.9521079 2573.6473495516016 142219 56909 28141 STORJ_20210519 220493632.5678702 5151.571975066696 1.5386036024870586 3.5964751402904426e-05 55631017.73389175 1300.3711416351066 102622 13355 51998 SYS_20191030 14164829.983573813 1505.2633224830613 0.024895120958875104 2.645546224813871e-06 1870523.0777579297 198.7761085782375 59978 4571 999459 STORJ_20210114 50845447.28302431 1365.506448390374 0.3563306939687734 9.53461450410372e-06 32617148.63377182 872.762138400912 83155 8572 92086 PNT_20210902 38300025.48297077 787.3504947720351 1.191699954395438 2.4468723853324814e-05 11631601.901069546 238.82727681521524 48106 335 472907 KNC_20210105 161636851.76622114 5166.378920475157 0.8041329893895306 2.57024043727938e-05 51976272.875842065 1661.3112518362746 127498 9335 138877 NKN_20210825 293220364.334613 6101.794891883628 0.45092156930585087 9.389426847290465e-06 48083010.14796642 1001.2204718369363 30114 3389 164254 GVT_20210428 39667860.251975074 719.9931198815154 8.942525463414379 0.00016227986259383887 2523267.8952028574 45.789701018600326 25041 5603 213426 WPR_20210117 5963789.860017106 164.43199331058923 0.009782562691240037 2.6996480379736846e-07 243692.81993062727 6.725076689599 32534 None 7520139 KAVA_20210106 74096927.83306886 2180.7929292660247 1.5802648383683504 4.637459572179545e-05 39920021.0245621 1171.4965689745484 51737 None 85719 CELR_20191011 16612441.13647417 1940.1449060971604 0.004928467939312064 5.755892158633647e-07 5870281.33652248 685.5823499296123 18421 None 552887 SNGLS_20210826 6083556.325061874 124.14372665345192 0.006835456545013342 1.3948733331848534e-07 480765.8619374278 9.810719677698428 None 2133 None GXS_20200430 28995696.158610284 3321.189115937121 0.4459984842411085 5.087039390226848e-05 16343027.144742731 1864.0785961933532 1 None 503557 SYS_20190221 29765770.375608467 7496.617596780268 0.05425507986037227 1.3664339315379515e-05 1372792.0360170936 345.74267032439224 62610 4633 882608 XLM_20200718 2128617089.2373676 232539.87570821866 0.10413078913781354 1.1375724119635522e-05 459758655.4789512 50226.140314957775 284710 109835 65501 RENBTC_20210602 373073390.58974004 10167.690426808475 36763.61798701084 1.0022273968609057 1052006.968342797 28.67917422420864 81452 5275 81558 NULS_20201101 19245604.6234149 1394.7795133142163 0.1965318068593284 1.4243012211277351e-05 5752334.92925193 416.88202001488713 29676 5148 360585 UNFI_20210513 52976160.94393649 1027.9110428868842 20.973539904132856 0.00041611035327049855 17565042.687512368 348.48652880346225 18007 None 94770 CVC_20190213 17998000.684763655 4951.3126994187105 0.05248236436610552 1.4443222698006404e-05 1115818.9405485953 307.0749887824238 88316 8211 325133 QSP_20190708 0.0 0.0 0.02153153881862106 1.8819691211615112e-06 2107665.8730627922 184.2210222057934 56870 8597 721105 RVN_20211216 893236007.0600548 18309.22436626167 0.08668345783035791 1.7763907177243465e-06 34063535.02380866 698.0587639638469 79567 59564 66229 DOCK_20190719 4896830.459161017 456.2663834730472 0.009440498360834777 8.838323801606305e-07 1701816.7212077728 159.3264111503139 179 15234 260296 NPXS_20190510 126365012.08038883 20454.94437711375 0.000573338220865325 9.286135436984147e-08 3866252.117623196 626.2017687149647 60071 4348 180426 ATM_20211028 28841703.087913513 645.7254437455765 12.55464910686148 0.00021446865219612295 5787595.745359233 98.86838320991598 5153151 None 64646 MITH_20211230 36479258.79664955 786.5402796605127 0.05937878745972561 1.2759766596203253e-06 14074039.914377565 302.4337007469367 37440 2943 264208 ANT_20210106 114538502.90947522 3371.721731677557 3.316322553755142 9.729049100305812e-05 25950829.98304253 761.3158702335033 76561 2690 131856 NEO_20200308 818102088.1628684 92041.7180103788 11.616802450005464 0.0013051953685430343 614592304.2765336 69051.96438831976 322768 98965 240012 MDA_20210513 29073838.515141673 579.595509491555 1.4811760358071056 2.9527679280229986e-05 8426400.417462757 167.98276707066526 None 383 1280564 QKC_20190325 56078074.45935514 14042.25358461636 0.035468572878133056 8.888450870896806e-06 6515200.526664285 1632.7141211536864 45744 9072 152354 OST_20190302 11985559.497593958 3137.5735769734765 0.022787540686790675 5.959968271608675e-06 644212.1059159356 168.49048189174837 17292 740 1030175 CELR_20201031 13624116.901400147 1003.0128695427397 0.003446211219801961 2.544549787100367e-07 3153764.0421659756 232.86180417343607 25033 None 315324 CELR_20210506 349808089.6228043 6110.432009258848 0.06217198928513813 1.0844992308222563e-06 48882413.47801793 852.6820587083641 49357 None 140241 AMB_20200410 1425364.3935928366 195.55807092905852 0.009861141956020347 1.3524398165629006e-06 268195.5478606647 36.782589599597046 18992 5487 894983 NAS_20210127 13321238.595091391 408.787623479996 0.29308299370468804 8.995615273672647e-06 5230488.673300877 160.53972700212844 23361 4841 953730 ORN_20210219 147158098.81898767 2847.26450885668 7.165404810013986 0.0001385946373647936 17141355.20551889 331.5513877638645 36166 None 107725 AMB_20200403 1227569.7166143293 181.00058381749506 0.008533728559531044 1.251811039855318e-06 114155.9023901667 16.74550788436487 19017 5490 894983 XMR_20200208 1386541374.0873291 141556.32667692704 79.634274789935 0.008122940679432034 136371049.12353355 13910.265967065498 320579 165376 79314 CVC_20190914 14374937.092157777 1388.5675485841205 0.0419757271472764 4.053510826980916e-06 3961070.185593123 382.5125131816768 88104 8144 131188 BTS_20210107 72534966.44187629 1975.6297498128367 0.026537382695781882 7.189875799172568e-07 54801206.593615904 1484.7502994917568 13143 6876 130433 QTUM_20200321 117920374.0167637 19074.5866758274 1.2270562103825162 0.00019789658562642222 445896025.8141082 71913.00635322578 None 15159 109238 BCH_20210106 7787635473.325484 229248.1488477915 419.6849848280874 0.012312239710911535 5228562878.106419 153389.6179897629 None 356200 464995 LUNA_20210724 3238323054.292674 96863.99360732804 7.758516163891959 0.00023203132256382136 278623116.5010402 8332.68744344016 92171 None 20667 QUICK_20210909 179847785.84475312 3882.010012144729 496.6523597337971 0.010728821364883696 29410732.685260106 635.3387656501437 None 2471 4684 SUN_20210527 0.0 0.0 0.00024113908671646528 6.4e-09 1.638036407348596 4.3474631797696e-05 55 None None AMB_20200530 1622055.3474018471 171.984537952532 0.011058728250367236 1.179734321851621e-06 293561.7265009844 31.31687807987588 18895 5449 931435 MBOX_20211007 164002691.06461257 2954.164157694831 4.864891921175179 8.769553249976782e-05 48506483.98832903 874.3877586535189 140352 6926 8170 SUSD_20210314 273338868.0827275 4449.3359970903075 1.010908483452611 1.64767442246865e-05 8989712.89202671 146.5228578054904 96571 5328 24026 SNT_20190220 72984747.77708164 18642.27540478724 0.020849903096487214 5.325628265168788e-06 21580606.434516955 5512.269629037765 109547 5766 300242 SKY_20190712 21756931.562575072 1920.8821738397887 1.3601666730864816 0.0001195303490087926 741851.6737675436 65.19332610684648 16321 3782 456375 GVT_20190714 10836061.015166136 951.5308189675899 2.44623673645193 0.0002144789461294997 830974.0727766462 72.85739795101615 21476 5756 196385 XEM_20190730 568564317.8607569 59902.42637856193 0.06329966368048565 6.6546333011387815e-06 77458692.38378462 8143.158491357142 217346 18423 192645 MITH_20211104 34312931.895895585 544.14801348326 0.05542457622370522 8.794959680318114e-07 12002333.16949317 190.4570923003086 33573 2769 452942 WING_20210511 61783393.12585173 1106.5654695045932 39.31576714673757 0.0007036004787967601 13293840.991180424 237.90844145384307 None None 317115 WAN_20190725 28225065.586013503 2871.294807161048 0.2657166740911796 2.7062776018531548e-05 2033143.1146020838 207.07205113223367 108311 16923 474498 FTM_20210813 781920556.791099 17589.06877256802 0.30774691790063297 6.922203547079064e-06 60159331.89256206 1353.1740413759744 105211 9473 45171 WING_20211230 33486631.137322925 720.3594009902905 15.217092785159677 0.000327022845970744 2816505.455770122 60.52809448177441 None None 238138 NXS_20211225 48923599.97584459 1021.8120047259132 0.527518812172556 1.0367279608883834e-05 281168.3704505111 5.525776609993529 27205 4168 466557 BCPT_20201129 2184111.660265171 123.12818702 0.018765564807215925 1.06e-06 79170.18033656302 4.47204185 10376 3203 2220119 QTUM_20210511 2442061690.7371173 43738.30902853064 23.51656685377129 0.0004208751248709377 1745386553.7697737 31237.118425222212 240306 16523 91634 SNGLS_20190410 11050366.716188097 2136.0823243862233 0.018743073875219625 3.6231149461194345e-06 364507.01512353664 70.46073783049599 None 2181 3255572 NAV_20190605 13309464.585904462 1732.6760435210247 0.20392197430430006 2.654732783156203e-05 213119.16840325465 27.744653071808617 48449 11275 1015910 CTXC_20200224 1993543.2706675867 200.37508870435937 0.0933963036021344 9.385918805503108e-06 5566979.53052087 559.4570218534068 16858 20068 379773 STORJ_20200312 16702455.901701687 2105.8494064478577 0.11645448110171404 1.467016665929754e-05 1204295.0684334422 151.7091415783115 82392 7998 120208 MTH_20210930 10827451.914020896 261.04290301650985 0.03154591347379139 7.588810112922873e-07 211924.14578057136 5.0981313380203455 21938 2058 1085974 UNI_20211202 9510282840.83456 166388.6326902204 21.000235442858717 0.00036723848185345393 1442110523.8328638 25218.69247029628 None 58267 2643 TFUEL_20200807 0.0 0.0 0.00885541788741031 7.521198462684129e-07 5060215.864061437 429.7808218823507 71863 4303 60901 MITH_20190916 9579177.80244088 929.6633606470095 0.017651174254159803 1.712845589568457e-06 1756164.9182399334 170.41582001566968 85 2079 719075 FUN_20190706 23024009.358813897 2094.843782251465 0.003830415802483696 3.485110956228389e-07 1665779.8420619878 151.56128936368492 36236 17574 429165 ACM_20211221 10221699.974661184 216.64756530533242 5.021636081485638 0.00010654234400945937 2657275.543317265 56.37851100119407 None None 37465 IOST_20190908 83820797.61212498 8006.616967522721 0.006976801568385372 6.6642861208461e-07 14671051.312392525 1401.3883393565638 195917 50763 94352 LINK_20200414 1231074142.46906 179685.9650077837 3.378194187187085 0.0004933530828502092 592012238.8394704 86457.74841016624 48820 14277 83240 NEO_20190601 956540234.0209235 111576.00038259171 13.589949878177386 0.0015842950966902622 699368899.795511 81531.33224596496 321788 97614 216321 STORM_20190513 11781517.812255 1694.1873313192332 0.00259969236080155 3.735975639813903e-07 618285.5104624422 88.85280583066329 None 2569 6189578 BCH_20200610 4691058052.039347 479910.2887006116 254.52480097777445 0.026043190982336775 3193510585.7913885 326762.679983951 3241 299759 152182 YOYO_20181231 4102164.4239263963 1079.9275627666284 0.01404850830112069 3.698382064270037e-06 715007.1638933509 188.23134912884709 6927 None 741299 CVC_20200412 12974834.008623855 1885.599952385061 0.0193758585961996 2.8152300850214036e-06 6190429.008159983 899.4430825573548 86193 8049 115940 MDA_20210806 13377403.620704086 326.25131666516126 0.6807583401348191 1.6637991064305194e-05 776017.1614787298 18.966152652457538 None 390 1488938 HBAR_20211204 5845687130.335589 108882.36991957955 0.31989251650061773 5.962423978208892e-06 91377798.7322848 1703.1757547734599 179576 16193 30146 SAND_20210304 214068265.63498494 4210.4008204809 0.31400076163496604 6.19718040799858e-06 154559109.42544064 3050.4087946211807 76687 None 39001 ASR_20211202 10316367.675990045 180.45703882939134 4.8472067651090995 8.478810315932164e-05 2851055.4420098704 49.87111023819454 None None 105870 OXT_20210804 165450930.3128662 4306.303288622469 0.27946146790770066 7.2759228239127224e-06 5794673.627611838 150.86730353177367 68395 4354 223178 REQ_20200404 6427358.851329965 955.4811185311885 0.008385758455579973 1.246237147581685e-06 93321.8032888667 13.868882409856246 39457 28250 588604 EVX_20200403 3215207.9436449367 474.52529233824947 0.14871779231145107 2.181538502656748e-05 1592640.2834049305 233.62410409198134 16757 2862 864914 AION_20190321 41553246.56479055 10281.779894160496 0.14243648652335875 3.524395142139513e-05 2085859.6786185256 516.1173164224485 67494 72453 245314 POLY_20210401 508866436.2740944 8651.675122201006 0.6258282421767276 1.0650287663318262e-05 7805234.099023143 132.82875848652208 43146 5415 178908 BAT_20190509 395360603.9676133 66423.76464784461 0.31406802026040814 5.2724247794378954e-05 46329155.53622563 7777.518623420985 100281 26592 57848 KAVA_20200526 23324483.046785757 2622.880593177545 0.8655229996505481 9.734723709645865e-05 24086155.737896413 2709.0218449491267 22296 None 364805 SUN_20210106 0.0 0.0 0.0002681055423205848 8e-09 76.59832550651088 0.00228561706986032 41 None None EZ_20210527 0.0 0.0 6.06602794445378 0.000154734418006047 2472459.4734566417 63.06838365600375 32777 None 115184 LSK_20220112 304631287.25635856 7106.135307656248 2.2555727136179504 5.2709041279356553e-05 7252981.960956701 169.49031315655867 203714 33710 231723 NKN_20210703 137019173.94599375 4053.8381306477927 0.21167900152870553 6.251347707558483e-06 4527588.738957871 133.70967965480355 28360 3255 105019 NMR_20210110 147192190.8962112 3638.871187698489 28.194138976306444 0.0006998960669371147 9517402.09228479 236.26159669025782 None 1984 2602153 VIB_20200229 3337869.127845898 381.3494327432338 0.018219115695784514 2.0910052716292008e-06 599206.3265098243 68.77082337292106 31549 1109 None FORTH_20210616 140805230.24925983 3486.419838783667 16.548196855052396 0.0004100036809697486 6916923.661910648 171.376022850747 30023 None 66617 NBS_20210819 0.0 0.0 0.014895900850383859 3.3107746910887846e-07 3513576.583134514 78.09303071686458 None None 3265664 DNT_20201224 37628667.377151996 1609.1472535860137 0.05430984044171048 2.3272747587601984e-06 45313437.16979189 1941.7626290231374 59973 6137 318484 ATOM_20190524 1032650729.8384689 131312.0850328752 4.328112239351113 0.0005502017456525302 86576348.76321535 11005.82784999238 24429 4607 130056 DUSK_20191102 11376628.705856008 1229.8631420463605 0.05614916748374103 6.069969701067531e-06 1153184.2593672364 124.66424397359121 None 13333 414113 AION_20200319 21373889.495327946 3971.5447102587855 0.053352193200555335 9.9024832186336e-06 1505433.0876007366 279.41730212858226 527 72542 244642 AST_20190414 7022482.623653149 1384.1347812246481 0.042181105699924025 8.313039558343028e-06 566665.7042027419 111.67830565907111 31324 3587 447606 STORJ_20211021 186835221.72998106 2818.597403797263 1.2969466659080333 1.9639210347553973e-05 30781165.257212397 466.108433846794 106153 14043 74317 BAND_20210527 321901037.6754756 8216.063306768097 9.167119429789757 0.00023399868271703955 97754734.74382807 2495.274479033814 94680 5243 165860 WAN_20190904 37087020.565660916 3494.732352156586 0.3493749371073265 3.2921811380883785e-05 16165010.98072938 1523.2387499908273 108127 16866 451102 GRS_20201229 29834801.744483255 1100.3251145219976 0.39699721568085 1.4626266881978394e-05 29643113.528472483 1092.1187165926435 37639 106781 4622785 PSG_20210115 0.0 0.0 10.302833280559586 0.00026266211467795934 4305361.839889859 109.7615980502248 8561432 None 36186 DEGO_20210617 34515760.73734628 902.3986559856041 6.385658416540801 0.00016693370299191947 5927167.832243155 154.94785501334934 111790 None 129325 LINK_20190414 194901512.76634783 38417.475126869904 0.5355994199167019 0.00010555308299104112 7441459.815835714 1466.523293915373 11353 6589 297045 ZRX_20200404 99863984.10806477 14850.345138274704 0.15338086955589234 2.2796887148348327e-05 25496502.986398377 3789.526705262578 152415 15948 126435 VGX_20220105 4863176005.684495 104991.83294663909 237.25114324154296 0.005156411283248718 131857166.47816052 2865.7808418355326 432486 14288 12315 DASH_20210124 1048316208.5745956 32710.63748613004 105.52179641933563 0.0032925993143341622 727432229.184395 22698.0864647053 331722 36065 74042 KMD_20210120 82425722.63536792 2276.146484039651 0.6662522248334781 1.8425487289060882e-05 9512443.293313738 263.0706457042927 96764 8417 314092 GXS_20190314 58861694.73375958 15223.912060690103 0.973724902053438 0.00025188212041007767 15868383.42484295 4104.81652066265 None None 478262 DODO_20210611 174882067.9689191 4745.192721375073 1.34361610611698 3.6597387323249796e-05 27681214.832861688 753.9803491519965 None 988 25824 SNGLS_20200411 3716068.8420527414 541.9066552652444 0.005766490437831008 8.402825404577261e-07 85603.06329549213 12.473923311308825 8935 2128 1305089 ELF_20190601 84398932.58345698 9838.47168458502 0.22608157664138104 2.6361602847230815e-05 37748414.69499525 4401.5471365918265 88749 32981 1112151 TNB_20200704 13452008.80057432 1483.2714477032155 0.003904157754339759 4.307260624691073e-07 7982254.806989661 880.6419717077227 15804 1434 1208185 NMR_20220115 167966124.44790974 3894.4738316660805 28.457936204405375 0.0006598276183103221 1598500.654971193 37.06294344260481 32868 3773 2494554 ZEN_20190314 33562101.98089511 8680.458342902784 5.588505229621411 0.0014456219169605062 2627568.1856672973 679.6934066331941 25013 1504 303166 XRP_20200523 8816681088.275835 963254.9925413107 0.19960886868775185 2.184356741582741e-05 1454970548.1993108 159220.1161530112 952572 213776 35864 ARK_20190523 88897326.5969746 11597.075026842274 0.6249568290739608 8.160519906044348e-05 1586170.1611629727 207.11787714559318 63489 21719 215073 TOMO_20191015 21986406.618788548 2634.151720164168 0.3386009692037142 4.056861902097483e-05 528722.9827557086 63.34760737836217 17516 1339 289065 PAXG_20210804 305298653.6584569 7945.877644903079 1818.8804953339115 0.047347325509164116 4937714.431611271 128.53377286993074 24050 None 40633 STORJ_20200719 24247401.346467603 2644.1019953603527 0.16895148036136598 1.8425421100245715e-05 2398181.1424397575 261.5395694054256 81257 8181 105568 ARDR_20210725 146769908.35809788 4295.77895051712 0.14693673745364969 4.300661837786197e-06 11992676.094196457 351.01122636203223 72171 6977 None OGN_20200417 6458530.497735604 909.5225304824082 0.22389601178716712 3.159910325254337e-05 17666263.904754214 2493.291831136604 66410 2204 171904 AE_20200317 30441236.801874656 6031.21397137666 0.08657070383754824 1.7191193869143177e-05 18754412.84702437 3724.247728887084 25421 6340 484575 DOCK_20200418 2477688.4506114433 349.31330724267536 0.0043988876251363235 6.23264791424487e-07 179668.04064618322 25.456609357125668 42747 15002 521704 ANKR_20211111 952060754.925873 14678.193164215285 0.11731534607062766 1.8065057987698713e-06 161263736.49827224 2483.25461990317 136046 None 5363 LOOM_20210725 48086119.19056641 1407.422958437075 0.05765700792779373 1.6875476773826691e-06 4363524.86201005 127.71485220510236 None None 286849 GO_20210823 45584894.7278215 923.9066844706922 0.041484275836084765 8.420602002835893e-07 8319919.984483681 168.88021659483235 22756 1110 199251 ETC_20210819 8389155669.636551 186114.69496115603 64.39186177506483 0.0014311786069083447 3359413284.2197185 74666.58505595171 497400 59192 245929 BNT_20210125 189402853.2286437 5882.202650440471 1.852462118330989 5.741616302928229e-05 100740275.78350681 3122.3958864065726 None 5346 94458 VIDT_20210112 29741089.120173305 838.8713969642207 0.6451600011410545 1.811314126668236e-05 3176460.217069684 89.18047079487246 179 1162 None KMD_20210823 150087908.96016717 3042.270853051024 1.1783768650098918 2.3914890168440684e-05 4498148.71555618 91.28890398992648 None 9506 205763 ARDR_20211207 262391418.59108844 5198.510625826077 0.26334549837558235 5.21402147893296e-06 9105034.482630167 180.27209749813883 75828 7434 None NANO_20190601 230716325.72945297 26896.548321088267 1.731440107309844 0.0002018896769066251 6314950.5186489355 736.3369454761097 98337 45950 382519 DODO_20210513 358207574.1863702 6944.9426092591675 3.007630567397968 5.853458930323591e-05 59769680.306945056 1163.2391715514188 88704 924 24595 ADX_20201129 30372613.561897874 1715.7987857777482 0.2827480763380232 1.5975030812338577e-05 780731.9886538083 44.11070708757897 52963 3743 13684 MANA_20190908 42912059.9608265 4099.042046152646 0.03232901215042074 3.0880882143904093e-06 12800758.4541236 1222.73675216281 45687 6365 122199 TNB_20190930 8796396.136639638 1091.276124259007 0.0030486804053679677 3.7862919030158494e-07 465539.69653175905 57.81744719476116 15507 1462 1364178 ZIL_20191108 60897806.391207956 6605.682721732025 0.006562115592565566 7.117900947967032e-07 12992982.300086826 1409.343674705816 66403 10575 219357 KEY_20200314 2358747.878822681 428.4338432967816 0.0008550489030295877 1.537012047369693e-07 901609.4830743524 162.0708046753775 23507 2759 281483 DCR_20211207 1316070609.604618 26057.101672891655 97.03405862410537 0.0019211935232420756 16434344.143486151 325.3863228529676 50234 12433 141050 ALPHA_20211225 332129467.4688699 6532.059115955697 0.7431362158532474 1.4617120934297594e-05 4963106.52925911 97.62184482516011 None None 53774 TNB_20190220 6997075.812232558 1787.8319173656366 0.00280684274364612 7.16879316450855e-07 415965.8607055879 106.2394117249874 15031 1509 1599145 ELF_20190614 94595470.90595338 11504.416189172967 0.20534586087611914 2.4959694281469778e-05 27084772.15170473 3292.1415104522107 87140 33136 1112151 YFII_20210806 171611182.03711745 4188.556892897321 4316.911447060816 0.1055069469547304 114491974.86214846 2798.2271275792623 17891 None 584326 AE_20201130 47892870.815471545 2640.217596554898 0.12921780189130927 7.11170317624017e-06 11947379.773952397 657.5426716949853 25550 6342 534975 WAVES_20190810 129027621.851702 10880.80744291236 1.290698017985322 0.00010881215677834542 15845925.851412592 1335.8890646886791 143186 56902 43327 CAKE_20210422 4155379292.0899196 76690.13304039654 26.563695787395083 0.0004903712372847736 1638905538.723976 30254.530214816736 418591 None 2459 LRC_20200331 30475766.121989764 4743.344129859259 0.026705500874369122 4.15948124324495e-06 1713212.6453961597 266.8392514987319 34181 6813 540202 CVC_20190601 28799567.30348857 3357.517233319031 0.08402414968497736 9.795403922956301e-06 3943015.3995444924 459.6705668284876 88860 8194 415629 POWR_20200914 39950023.81748951 3870.265573732756 0.09298956728188287 9.004324201789879e-06 1512659.0203432085 146.47312192177273 81614 12670 213418 TFUEL_20200612 0.0 0.0 0.006296090541584663 6.768971052525033e-07 10853427.938489381 1166.8596417263448 71278 4236 132852 DNT_20200807 6964786.474688402 591.9760465628256 0.009353685998599008 7.94439400235537e-07 389201.71874859516 33.05618555717881 58158 5990 489416 ZEN_20210110 169327215.2731139 4184.322151863513 15.78812170939735 0.00039192699936741555 16021650.86264744 397.7241665024804 None 6352 350689 TCT_20200129 4792038.118356779 512.9724052042084 0.008420075126987392 9.005045743565052e-07 700309.3436445626 74.89621623389996 792 None 515842 ORN_20201224 36362988.273720965 1555.7445436074695 2.2007352694750653 9.430548132174433e-05 8098795.673923824 347.0480228810186 30428 None 150714 XRP_20200610 8878556339.039703 908782.2218698313 0.20126914749084193 2.0601302291263884e-05 1328042189.9544604 135934.3891097309 951686 214316 34981 DOT_20210106 9268615029.823357 272017.33597544493 9.739198196297945 0.00028580739635648296 1101026826.544137 32310.83342495661 105843 7365 41009 XZC_20200207 74710968.0376664 7672.146991603694 7.936624826893035 0.0008150202559072145 50944237.632128194 5231.516733819105 63486 4093 105634 SKY_20200730 10874484.759182412 980.517403499731 0.6041380421768007 5.447318908331839e-05 904655.231468436 81.5698599304092 16270 3825 1079623 TOMO_20210221 153573414.68228605 2735.611014546425 1.9219077371010576 3.4183503193531996e-05 47379141.819364175 842.6965636404428 None 1844 133375 NEBL_20200322 6006747.691504034 974.8615883894812 0.37138606106065614 6.026888933737704e-05 144045.1190928011 23.37578130261448 39581 6013 841626 MITH_20210825 35732150.53188131 743.5713207921722 0.05709030636161989 1.1888077218953252e-06 23732081.303718332 494.1798933745906 32881 2752 771999 GAS_20190629 48926514.13222572 3949.6613988920103 3.5060195993412497 0.0002832806843325306 2022127.3798363695 163.38460517312097 323115 97951 201306 AION_20190906 25795478.87136556 2440.6731783629393 0.07620951147727907 7.2103471888025865e-06 1420879.2359821154 134.43246658057956 67410 72571 168998 CVC_20200629 17307517.74398312 1898.2979851467737 0.025782860368745532 2.8270055622561367e-06 7016079.1989539005 769.289932808076 85293 7992 100053 REEF_20210112 0.0 0.0 0.008157332237477714 2.2946953984499234e-07 3727182.481575269 104.8473721636534 None 477 142268 CMT_20200107 9260875.969779328 1192.565493854048 0.011567668000824724 1.4919248186375972e-06 7562233.739387183 975.3291847004915 288344 1644 926664 HOT_20190515 236549104.75693354 29602.179657659926 0.0013322945431412762 1.6667688887976907e-07 14371936.518882522 1798.0030605671122 21311 6069 229269 DLT_20190629 7542450.104967804 607.6589253108125 0.09356749136666338 7.553366827714773e-06 454994.6628298386 36.7300816000142 15079 2673 2617266 UMA_20210828 810634414.9194679 16528.477380653945 12.996571100400674 0.0002649412074356065 38505477.55140936 784.9522490621027 43455 None 226348 BAND_20200229 6103430.284302462 698.321230990444 0.3410086787075015 3.9137516702508106e-05 2460490.0182445063 282.39008329755006 8064 1032 671457 POLS_20210616 97862287.96285486 2423.22474903228 1.3946129834369114 3.4553584453797275e-05 9058499.946538363 224.43763728346994 377568 None 13861 AKRO_20210527 69223311.20365335 1766.8259514177253 0.02570423356175918 6.556621020755326e-07 40620690.40004587 1036.1502198251387 40275 None 169169 ORN_20210325 497261631.92809093 9407.254121099615 23.985452716253093 0.0004546493547833885 51895741.568600714 983.694812822178 None None 83235 ARDR_20200330 29570692.706984118 5000.777940812997 0.029661523669114915 5.02508991950767e-06 1748634.8948046558 296.24397184733135 64227 6377 1001396 WPR_20210418 33388857.780116703 554.3239153789872 0.054874602806920095 9.104807942218745e-07 1110537.039364883 18.426058575247446 33343 None None ARK_20200314 14903067.929318082 2689.984160115055 0.1050465853561771 1.88828810440455e-05 499912.06992999127 89.86279865226945 62692 21960 80258 NAS_20190221 27216120.910059337 6846.049273024798 0.5981565035177876 0.00015046262138516036 1658605.7452276188 417.21216237518314 23418 5185 410300 YFII_20211120 155972422.81422758 2683.1173993970256 3930.1718996556774 0.0675589617856506 20481793.840480078 352.07842371775035 18929 None 682291 AR_20211221 2836469400.025691 60118.58997055057 56.47928370469503 0.0011983816359971942 132509436.61555041 2811.595066727259 51337 None 55160 JST_20210221 92714596.0300793 1651.5297952697163 0.06514441060889307 1.1586738140972285e-06 274653628.2405343 4885.054051677291 None None 122927 HOT_20200612 103293717.73417437 11108.25730973042 0.000578995894171268 6.226019053961641e-08 12302363.613234874 1322.8893509581235 25357 7053 546031 EOS_20190227 3533076299.3234267 929571.6041877964 3.4205447991180224 0.0008999639539970464 2018383829.5314198 531047.7712138632 669 63077 78671 POND_20210602 70674413.89966974 1926.150671030287 0.09111305583886382 2.484374510640447e-06 16178965.481606886 441.1509314551053 18235 541 92382 DENT_20190205 18256785.77363857 5269.646202001876 0.000975679315696235 2.816204815063544e-07 1130797.942398208 326.39398611964134 42360 8804 245774 ETH_20190305 13206850625.680403 3557031.3872569343 125.6240824924571 0.033834622430887314 4360833026.630624 1174513.166685615 440367 431169 32034 ALGO_20190706 103659366.70287664 9431.466797355071 1.124356887493463 0.00010232179038425453 126458049.41290718 11508.280127384749 None 491 350942 FIRO_20211104 111786832.0780425 1774.51399289039 8.968384400345046 0.00014223343594786114 11993200.74058833 190.20528929164556 76530 1515 173787 MANA_20210624 667345146.5102367 19795.464273394464 0.5040449864307311 1.4942992198918951e-05 67975268.02150771 2015.204847007055 142427 33592 14515 HOT_20200301 110269763.38678578 12872.82019154744 0.0006174535249381652 7.219223054160041e-08 6702033.546924859 783.5970342311884 25147 6914 537857 AST_20190221 5105377.439076501 1287.2584339019238 0.030563148146511742 7.700846043267627e-06 552791.1018317816 139.28405375284237 30454 3593 387473 ATOM_20200306 704994145.8568728 77847.11316441419 3.772895315228911 0.0004164900305157536 140869545.78684285 15550.59351545852 31512 8211 85359 ATOM_20200629 466503817.951551 51152.64147935422 2.510540021207384 0.0002750745370152044 103749822.36609386 11367.647642214384 34825 8608 161596 LRC_20210708 321557344.8787322 9463.869760401096 0.25820880650249406 7.6008495243752345e-06 30181116.76060475 888.4364947976329 82036 11067 263753 OST_20191220 9179468.42575947 1285.0688150688595 0.013379935921187448 1.8724608627686235e-06 863969.3952255598 120.90856703042903 17884 756 526361 MITH_20190131 21002578.456748784 6064.964415521165 0.04285852976685863 1.2383902743146483e-05 4383905.277792477 1266.7223278697138 42 1975 512754 SUSHI_20210201 1299952563.328017 39326.10932972061 10.189695176094023 0.0003073631702409854 1339410927.702099 40402.14961089212 None None None NAV_20210114 11579032.745228183 309.80062308744175 0.16372772892888085 4.380586319678768e-06 194214.9172203315 5.196280526327239 48166 13625 819464 CELR_20190703 53273382.60161436 4936.010802936306 0.017704809309284582 1.6370366551518328e-06 28468253.72507072 2632.2551145277844 16558 None 482178 ELF_20190627 98501759.42558159 7575.996462346141 0.21305927434331923 1.6406472639189286e-05 54849738.290922135 4223.663735410279 86580 33270 1215448 FIS_20220105 31985477.06087602 690.5392402760427 1.180163811982534 2.5649655099841027e-05 3185611.47189564 69.23601173548725 30998 None 314558 BADGER_20210826 207282139.26373133 4228.888052773278 21.89990586651096 0.00044689893102605735 16853671.73154225 343.92329933289676 37114 None None ZRX_20220105 763523169.646326 16595.08277407406 0.8971765621662657 1.9534651563641057e-05 62648639.81009722 1364.0786008401112 250698 20909 60955 QLC_20210813 10087087.955014603 226.89117727355122 0.0415446470514179 9.35438824056615e-07 2946958.097845233 66.35509537921033 35114 5685 940522 POA_20190520 6742712.359274607 824.4105950216307 0.03043719243033168 3.723601449160746e-06 353841.18457226164 43.287946175121995 17408 None 639132 CHZ_20200414 32247555.360771008 4704.272572005771 0.006683519788961886 9.760644028934026e-07 1905361.6043376694 278.25991324291846 19992 None 262392 VGX_20211230 4783553217.460983 103139.63083532472 237.0972242443169 0.005094925934648122 137818893.27277982 2961.557461745857 None 14208 13960 DLT_20210221 10557837.552139223 189.36953263028497 0.12874951464267861 2.289796503965879e-06 699806.2889580507 12.445980851708027 None 2540 4991902 DUSK_20201111 13742808.887526508 898.4823951453402 0.046834094297407106 3.065821442036508e-06 1641224.3112730994 107.43670311504755 None 13349 801283 REEF_20210104 0.0 0.0 0.009939107479312818 3.019380605810013e-07 9300301.58146273 282.53191025150545 None 428 142268 IOTX_20200315 8082104.356042306 1564.2965424693002 0.0018538049841804673 3.5780133424890064e-07 2289051.5456105093 441.80790545561325 22592 1809 497303 XEM_20191118 370995947.8592397 43615.55459758587 0.04131453144972207 4.855054319843294e-06 53459998.533335485 6282.322168749482 214696 18234 180795 ETC_20190227 462715146.2166855 121472.72577068447 4.261708155314159 0.0011187904919428351 185295764.1147614 48644.142567663795 225760 24179 470641 TRX_20200312 981567578.8859404 123752.14737681048 0.014856889150652627 1.8715349109063649e-06 1270721738.6004474 160073.89378239392 501108 72198 46870 TRB_20200907 55975126.49121718 5435.8046465826965 38.223364052787886 0.003715944667512208 36836983.98398817 3581.1655408846614 None None 216196 GVT_20201031 4755172.128650438 350.0776510099655 1.0713632590276103 7.890595662392294e-05 265376.9846024737 19.54502794415 20627 5480 258563 HC_20191127 51976504.74243235 7253.994273377647 1.166675952872608 0.00016301572803226666 40256593.71338066 5624.9191698240875 12820 849 624068 DCR_20200407 143357089.25866282 19673.923707899405 12.658865924019688 0.001737267153690073 88672238.01724005 12169.128536170101 40653 9767 206207 ACM_20220105 10290926.83804486 222.17235612759097 5.1268113430477396 0.00011144632242100917 782031.3606662264 16.999751567284694 None None 38699 AE_20190225 96626957.86006007 25561.078551910643 0.41966685239456925 0.00011167119465494502 74107479.90130717 19719.6198990373 962 6314 487451 ALGO_20210828 3652996477.3919435 74472.91951453705 1.0585278755063492 2.1585679378899018e-05 158300212.70755628 3228.0846978000345 123054 38122 238182 ONT_20190321 808666907.4595695 200106.588785235 1.3189875743022714 0.00032636535152465705 156061551.6735236 38615.28657565705 69762 11266 260077 ZEN_20200315 45521218.03249691 8806.736695474383 5.2781753577356385 0.001016112057451349 925571.3401242578 178.18358333875707 57758 5080 41227 MANA_20200511 45712929.16350428 5230.597255678143 0.03425714402367021 3.912855190735044e-06 19219249.461300828 2195.2250299885245 48443 6881 47656 XMR_20190914 1319779251.0766015 127450.85470238284 76.76928551378964 0.007415639657444342 93206483.98148471 9003.414507744701 320329 161023 87781 DUSK_20210519 65677264.1789414 1540.8398784659148 0.18400867456947043 4.3009880221695395e-06 2614108.0687408447 61.10172533233674 27140 13599 286941 TUSD_20190225 203750114.68614593 54093.23731921627 1.0019441414377812 0.00026746228097264114 127582373.51755995 34057.260501511766 8207 None 263322 QLC_20210823 9782241.962280087 198.264657553866 0.04131564068953143 8.384915205549363e-07 722913.8785209102 14.671372562905765 35142 5698 940522 AMB_20210602 5414786.114140055 147.5738295055757 0.037448148968664045 1.0210293767777733e-06 501832.2455352109 13.682531153530766 None 5638 592518 GRT_20210117 574246496.3193585 15832.968340226389 0.4691126530107781 1.2962680842416869e-05 585819492.2716296 16187.564033599745 43499 2900 38348 IOST_20200309 56720750.59933081 7021.201396935986 0.004687758227831322 5.827231171697974e-07 43884671.67626792 5455.19018522389 191521 52264 110553 TKO_20210620 127192799.63072392 3576.259466373081 1.6989655604164398 4.772270075942029e-05 11702533.580793131 328.71561449801703 284616 None 20731 BAT_20190723 312105858.33599675 30165.63693197861 0.24459111753945148 2.3657464187120356e-05 19342346.69313324 1870.8401138641432 104369 28883 42959 OCEAN_20210420 583499172.7682912 10425.40901271544 1.3575722663814302 2.42591137281857e-05 96671564.75432745 1727.4708254816308 102048 2654 70658 QSP_20211120 37172157.47772924 639.4634144973434 0.05223070711023862 8.955045284434265e-07 794806.0062403185 13.627086769474676 71430 8646 132633 WTC_20210731 16802269.20009918 402.72471052541147 0.5763933618336131 1.3798746031045934e-05 2416575.160977229 57.85234376256505 65338 19897 1099866 CTXC_20200927 964866.4824827699 89.85922559611656 0.0959414125438782 8.932186951850407e-06 4164997.854990491 387.76309946256686 None 20063 498941 BRD_20190608 26289464.494645827 3271.438404775329 0.43802641659806335 5.4560098570841396e-05 165784.34703086287 20.64991966867244 168 None None TCT_20200730 4374418.645062232 394.40363686039257 0.007557529600371846 6.813973242893218e-07 726940.4969645119 65.54196089748649 None None 700075 HIVE_20210828 222410142.67122722 4534.844493043879 0.5925628297028458 1.2082005292478751e-05 87655163.5567498 1787.2368918867671 23068 178 87293 GO_20200407 6760543.081256174 929.519387999004 0.0073065843757149146 1.0027350884180884e-06 1081930.401973184 148.48108521002976 10703 677 675555 MTL_20190329 16784229.15301943 4168.894223033297 0.3884129890973638 9.647465198649273e-05 9574311.39017171 2378.083085026773 32938 None 615522 KAVA_20211007 576551418.6518902 10386.59024368801 6.3197003738792485 0.00011392020593798636 44780962.135731824 807.2307430411119 247 None 50736 AST_20210814 40774713.45186821 854.8215038035103 0.235362231107714 4.930169482032749e-06 4758604.731279218 99.67923788278758 44472 3697 216089 QLC_20200501 2473290.0359570063 285.8003224910294 0.01025883610444505 1.1901610525882722e-06 83182.79309596922 9.6503072649182 24378 5655 940522 ACM_20210616 14049085.794240098 347.8654362910896 7.016599244570873 0.00017384250197780352 6464491.790278403 160.1635475628049 None None 39510 DGD_20190904 32116426.348861497 3022.633577218666 16.03825486402313 0.0015112944445402777 1129097.5816736722 106.3955472085097 17258 3364 548048 SNGLS_20210723 6337149.951132637 195.94236180191726 0.007126110186974032 2.201176793967798e-07 18404.99447529016 0.5685099678386697 9466 2136 None AST_20211028 39814134.237354994 680.338613130498 0.23167089395050378 3.957634949176403e-06 1259230.824664072 21.51144598179644 46503 3718 201584 FTM_20201115 45597562.629535735 2833.47420260551 0.01798529477457228 1.118664689744983e-06 5624032.302046661 349.8083533876586 None 2809 103373 REQ_20200730 28428650.056227785 2563.166418894077 0.036834177643101394 3.3210204148154363e-06 5236414.012428192 472.1223317159253 39350 27840 405956 KEY_20190201 6407474.3653731225 1867.451880486883 0.00261029830644101 7.607498159773843e-07 594509.2222020183 173.26478750380485 23484 2810 797344 TFUEL_20210805 1603549089.3383913 40319.896654607175 0.31009791431518313 7.798278602177141e-06 30094773.373879947 756.8171742050556 185697 22301 19933 KMD_20200305 75058237.96257849 8574.010314856223 0.6329813855159508 7.226782579779713e-05 2417160.640024356 275.9685324967112 100035 8409 149248 ANKR_20200314 4219763.6078480575 764.731509649086 0.0010559400306193404 1.8981283323226338e-07 2378690.4856167943 427.5867637982533 None None 5490 SNGLS_20190613 11039804.12048975 1358.8308600614012 0.01873383258617396 2.303760454373076e-06 958930.6992098026 117.92283363065133 4 2181 None ORN_20210724 123853351.39587028 3704.6736958354945 4.27942476035346 0.0001279890838803767 2651261.4549877276 79.29395742506443 75702 None 85178 MFT_20210618 77942154.98523527 2047.1309450196752 0.008345059930101283 2.1863410650121752e-07 7534025.37308176 197.38562929424532 33993 3502 252491 COMP_20210826 37146.7336031071 0.7607579246684534 3.6916129001510437e-07 7.552e-12 377.9834868860575 0.007732477294265366 2565 None 6343475 BCH_20200319 3350514281.8442736 622240.4942544844 183.2791179692986 0.03400021182628583 2421244380.5057282 449166.4011291729 2643 287797 138735 GRS_20210825 73454399.02724968 1531.234112913261 0.9387534276568115 1.9569301377159233e-05 4306174.616775597 89.76673360191633 41537 106865 9087517 MDA_20210511 33704568.05796025 603.6576276808872 1.7226980914830428 3.0811001932478e-05 14078075.598721918 251.79084868224115 None 383 1280564 CELR_20190515 28676950.97762553 3589.2003544011022 0.012096713930235377 1.5135722663208578e-06 17947883.92280025 2245.6858533123864 13234 None 376913 AION_20210310 95613408.21905187 1749.4657666981843 0.1942793242354573 3.551536064279814e-06 14428964.938995749 263.76964997554705 70114 72765 306930 STORJ_20190922 23132138.505419713 2315.3937523846953 0.16081206845606957 1.6103057628960924e-05 3439436.0304965316 344.41094590696326 83377 7810 159770 XEM_20210508 3637596382.270324 63480.91938555156 0.39650543429412277 6.918629570403005e-06 579732562.8847245 10115.762624137198 348370 21316 27944 REP_20190810 120098876.3671114 10127.852696243739 10.922428835249407 0.0009208797410904932 11616042.787170762 979.3589535529021 126079 10044 203996 EOS_20201201 3080418844.3652387 156543.52895008124 3.2556132161627382 0.0001652787212580931 3298218969.8240867 167441.70070799376 191567 73398 101778 BAT_20210127 442467514.47790825 13577.060605086102 0.29812485170943115 9.152868496791069e-06 233375716.57228082 7164.975452004213 129377 50228 23802 DGD_20200105 35944204.5103784 4891.537126798834 18.021651062518327 0.0024508985750256217 2184370.337134817 297.0687939767403 17543 3350 360156 GVT_20190819 5421424.341448348 525.4520110793353 1.22154449417644 0.00011840294276080625 164154.41513843613 15.911304018994244 21339 5718 194896 DLT_20210506 16815108.527869217 294.2357881566188 0.20711073463401225 3.617475271227279e-06 829225.9269956882 14.483577060688 15160 2588 4809355 BCPT_20200113 2459978.063364157 302.0978424809152 0.021133300965920344 2.5909858616457467e-06 32830.53122185732 4.0250901817622 10719 3148 3617841 LTO_20210212 101390904.34994227 2126.332210678224 0.3703383300564654 7.744169779466674e-06 13100740.590398012 273.95046943513506 2319 1645 777868 ENJ_20210902 1944681397.5630517 39977.67210954025 2.0804732822842573 4.275949334963975e-05 202270139.98471436 4157.212101282528 282216 35587 31827 DOGE_20191015 307774067.38058585 36871.94061128664 0.0025306282098702297 3.031742533011981e-07 81764771.12395075 9795.580929337031 138291 142244 98077 HARD_20211204 104852938.78908077 1952.8515985919075 1.1044778435607285 2.05968005415136e-05 23434515.972669825 437.0174142379304 39354 None 43021 QTUM_20200626 165302358.77578878 17864.44028836077 1.7177839749002692 0.00018564314190780626 181402526.93242434 19604.40634085311 179718 15076 115798 CMT_20200914 9944154.567509616 963.3559415892344 0.012420029824731895 1.2026507747775494e-06 1411952.2864760174 136.72153249567344 282709 1635 830307 NMR_20210421 442653217.6529925 7835.19139583306 78.03427146738271 0.0013840793226017251 66524181.0008626 1179.9269941899115 27606 3115 915213 GRS_20210430 103937571.89528482 1939.340899027245 1.3420730669386602 2.50413506948121e-05 2907895.173054922 54.257569581006855 41501 106848 7053372 FUN_20210203 221990945.3302799 6232.614254113824 0.03681711809247675 1.03667202553149e-06 99168796.03131703 2792.3292744717023 None 16750 258794 OGN_20200905 38750042.671966895 3694.1361435170684 0.3010029162376595 2.870604090288594e-05 23824076.32699694 2272.054098559881 70609 2398 133584 AE_20200417 36277509.61786296 5109.137001278924 0.10265183336218658 1.4480714598864745e-05 10871427.524357783 1533.5920860470294 25316 6338 661770 TCT_20210723 11476144.256717473 354.8358123529182 0.01984553727176048 6.130174353679138e-07 2722204.564579686 84.08736119732342 None None 514683 NEBL_20191011 7553947.074639914 882.5964197200447 0.4833310210897633 5.647196419810676e-05 100917.29465006507 11.7910864434043 40308 6100 485990 MANA_20200314 30128955.882270884 5472.507036064991 0.023044716820723652 4.142453987856834e-06 26758250.14494674 4809.98837535399 48070 6787 51080 NEO_20210206 1843113260.4601207 48639.41956912049 26.18648418088723 0.0006893614145860968 768065583.2904168 20219.391550791912 335677 102687 149199 ZRX_20190723 140910657.81523618 13619.288552170177 0.235423529826941 2.2770752191309555e-05 29182935.664068334 2822.6464734001484 151414 15976 206099 DASH_20191213 460725448.2671764 63931.64655418265 50.00435697991648 0.006938460751000828 279619082.2575244 38799.13960805311 315990 32688 75646 VIBE_20201208 3074822.2199435155 160.93327232 0.016458516017402804 8.6e-07 38825.81841494847 2.02874936 None None 1475531 SYS_20190131 22893533.88495082 6619.740565761046 0.041820241899967796 1.2092460393680782e-05 81441.93233249114 23.549202404690963 63030 4630 837629 WAN_20200502 17418636.28333913 1965.7371340474342 0.1635435015775815 1.8518124383099297e-05 751414.6997756377 85.08311696587711 104719 16241 828507 FLM_20210916 0.0 0.0 0.6358916779805107 1.3193296171914448e-05 21911988.809807934 454.62359092601855 25919 None 82583 ACM_20210513 21541892.593185637 417.84338671905107 9.8351159809098 0.00019606592555348982 66068845.69876018 1317.1018427562883 None None 39485 OCEAN_20210707 198761053.10681954 5819.169197134269 0.4582210498149943 1.3417189411800979e-05 19282600.131149262 564.6146077665026 117381 3241 96466 CHZ_20211007 1619906999.2784374 29184.566986773534 0.3033579534291291 5.468461697303486e-06 258906206.51289254 4667.155278131399 391225 None 54002 ROSE_20210823 162895210.9416591 3301.92433753659 0.10863190204545234 2.2044724758194265e-06 36159318.132128805 733.782802894532 None 1836 261219 HOT_20190714 257398954.07731077 22615.365019586854 0.0014500231070728813 1.2721304942853724e-07 13286336.098444803 1165.633376855328 23735 6572 316713 EVX_20190410 19271192.600662835 3725.0148989701006 0.9968683024378434 0.0001928429802526326 6302209.957523393 1219.154975049883 16872 2401 756371 ICX_20200905 259680895.35256073 24766.299435935558 0.46057124221961326 4.3925623719470376e-05 64996503.79487736 6198.849834861295 116065 27947 115181 RENBTC_20210430 605766364.99238 11303.518657826266 53547.802020608564 0.9991328507866656 8082168.7742629945 150.8028345376441 74051 4883 63508 LRC_20200414 31118871.692075826 4542.069642312042 0.027173631314377285 3.96845001747692e-06 2646601.501618336 386.5109397357117 34121 6805 552171 ANT_20200901 286350733.8443518 24499.281711526444 8.261982679801694 0.0007077967488215271 80921309.08036064 6932.456977607212 75172 2657 541569 AION_20190908 25364746.778316453 2422.9175108839986 0.0735196770589752 7.022299744582047e-06 830349.0943898703 79.31155939069897 67400 72570 168998 HIVE_20210603 161727364.31002283 4297.947076617447 0.43478133276531356 1.1553671394398425e-05 2600571.3035001233 69.10633924240055 20154 167 114577 NCASH_20190511 5236530.451263599 821.9578085231652 0.0018037482249798106 2.830862151223089e-07 959746.1612857018 150.62573840069916 60676 59343 935849 MFT_20190421 24102122.162682332 4538.705589353722 0.003630962544658165 6.836977517606101e-07 2563060.8377752127 482.6155353738449 17834 1935 683673 QSP_20200324 4820361.932389092 749.1366556585292 0.006708354511692434 1.0402922699610872e-06 22663.21202291259 3.514477989920232 55244 8316 355576 SYS_20191220 12181821.155154115 1705.916052393126 0.021428323044533418 2.998795845659843e-06 385700.26774232613 53.97698915457812 59415 4548 988060 BCPT_20190110 2816628.519640891 708.083641518848 0.033565414738262356 8.440269857409939e-06 361673.71407968976 90.94550956596753 9936 1327 1067552 EPS_20210602 169146380.18080857 4613.249075501208 0.965177094112149 2.631207099593854e-05 35027037.76564268 954.8858029155853 None None 23258 GO_20210212 23798998.110103637 499.10370745610527 0.02218188175047293 4.6457926020924044e-07 2524504.879406546 52.87344971281822 13484 703 754202 TVK_20210429 113551224.80819939 2074.4535214636876 0.5187533162682388 9.47457704415226e-06 34829911.60786792 636.1379688975727 45490 None 68295 AUDIO_20210902 1013828022.0369518 20845.541663155174 2.527681251615238 5.195085685012101e-05 51248773.971186064 1053.30437475847 71668 6959 26241 XZC_20190810 67505555.30712794 5692.695394075736 8.318066155771888 0.0007013035949641782 14772507.960799238 1245.4833546084092 60855 4043 218512 NKN_20210725 131031495.29038276 3835.1856293203746 0.20243149563498392 5.916573617473464e-06 12140519.36877513 354.8374543911976 None 3291 146372 AION_20210325 131427429.25523688 2486.3595863870046 0.26778930176093363 5.079009910212726e-06 51905226.11750805 984.4573928424012 71071 72927 287574 RENBTC_20210703 374289668.94363827 11067.694602591091 34033.56958756383 1.0050863604078255 8060460.908482017 238.04318547520484 86234 5506 90516 NANO_20210220 967053986.8607988 17313.009090334057 7.260249946340117 0.00012995153141450257 117393032.56555924 2101.2230256586727 108086 70464 127851 RSR_20201201 201835560.1883822 10255.25988349067 0.02150601273419542 1.0948004410491344e-06 51958484.697389394 2645.035724009337 None None 179162 BCPT_20200523 2105362.376846676 229.99416066 0.018093452982198145 1.98e-06 140668.12591087617 15.393573 10525 3173 4184037 NANO_20191102 115245491.94947596 12484.833118709379 0.8661433292237843 9.383147869231231e-05 1807803.849995073 195.84392410285022 None 48007 297643 VITE_20201124 9528946.55467728 520.3105886530315 0.01679133167216528 9.149365091620643e-07 1185673.6322149206 64.60572128787777 None None 870103 OAX_20201014 3575065.5665116776 312.92762788185865 0.06489440482861905 5.68e-06 132911.86340068097 11.63335092 12724 None 1273315 CHR_20210718 110393237.71589677 3492.8331362674676 0.1969214366079038 6.2358349542434365e-06 103680137.98459859 3283.1988210225804 72670 None 109219 LSK_20210128 174667305.18081224 5773.959133741304 1.226223953196805 4.0326870761320626e-05 6928984.166774452 227.8737487326701 178219 31030 255671 BICO_20220112 260362280.88783664 6080.549693375835 3.5685087308022316 8.34039844636669e-05 35819840.46699996 837.1893256175591 None None 56648 ETC_20190419 693804863.8651856 131585.50268336045 6.324551722557726 0.0011990702952976555 421232876.94039625 79861.44351393466 227519 24394 713652 GAS_20210114 24189474.878156416 650.50854484636 1.738241131293258 4.650718219730357e-05 4276559.647351889 114.42068371092745 328785 101422 181319 CELR_20201226 19004337.88490784 769.5587710264966 0.004800397928909251 1.9467800511490696e-07 2959053.0607100795 120.00308212346289 25696 None 413002 DOCK_20200425 2514760.6364682433 335.38557936518816 0.004489187698786157 5.989365686822614e-07 529149.3713837339 70.59782973713571 42692 14998 521704 QNT_20211230 2370066678.660012 51101.72108043275 177.31283913281385 0.0038107496672414405 41377359.7402369 889.2687107859682 71068 11162 73022 OGN_20201106 16438258.607097067 1057.892367770526 0.12000847671657358 7.702416385618525e-06 6688971.05371697 429.31334232961177 69929 2434 170870 INJ_20210620 223187665.6215216 6275.331656147253 7.771804414474857 0.0002182869468167713 15776496.520403959 443.1150185007706 73520 3683 117778 EOS_20210131 2778203516.244626 81212.78163569304 2.9134415197868977 8.527695162416727e-05 2967364088.4346232 86855.2748020285 194755 75081 71191 ZEN_20190410 49077441.9900448 9486.875780099717 7.913074722657244 0.0015307748363020549 2204210.7743371315 426.4019367339039 25305 1545 329639 XEM_20200421 319747002.0921577 46701.05780182422 0.035527444680853906 5.18900642300147e-06 20691845.195603594 3022.173944347931 210433 17963 216672 POLY_20190708 39689773.028692156 3470.6094586619765 0.08352526197803686 7.30054480563401e-06 2668767.0070953406 233.26419636038406 35168 5095 354740 BZRX_20201015 16736951.752233827 1466.4792889627934 0.11903096349590551 1.0429404666756855e-05 4517662.257281735 395.83421359557565 15211 None 70280 JUV_20210207 0.0 0.0 8.66094259947674 0.0002202485747936111 10893242.07270201 277.01615774931594 2269867 None 93564 AION_20211207 89396462.10499415 1771.126741337164 0.17872962332133085 3.5414609438297274e-06 23460958.648322567 464.870160938355 1001 74001 313531 YFII_20210108 71590785.50614972 1827.6192294920013 1817.5654496727748 0.046058139931646355 297768193.3169606 7545.614996948367 12926 None 153054 BAND_20201231 121645428.04576118 4212.857079007753 5.399044350022649 0.00018721843706019604 56752901.60013561 1967.9759689627135 42337 2917 374986 CDT_20200713 4708798.855717817 507.5230577425507 0.006985131336525903 7.52460409271138e-07 219098.16362040152 23.601946180493368 18988 290 305990 BAT_20210401 1695223785.9898539 28821.954859510282 1.1362347318720223 1.9336338522212404e-05 253059506.66270408 4306.543489506052 169303 63955 18944 KSM_20210821 3100122546.252837 63097.72686481479 345.51386109207704 0.007030035708563225 340176280.84021544 6921.4340459575415 None None 63186 YGG_20211111 522887408.682091 8063.1144600898715 5.9509202228235765 9.16142114973452e-05 73357243.27344646 1129.332229045909 110559 None 49309 FUN_20190902 15773209.342170611 1621.629147337119 0.002626193730720702 2.699212510791391e-07 210281.21154857948 21.612787752734945 35919 17416 352374 POWR_20200421 24752016.40713374 3614.6197103804498 0.05743506432994513 8.393735166048419e-06 7768510.918189817 1135.3138373320116 82098 12774 208594 SKY_20200325 6415056.725853884 949.2056667834413 0.3747502161403147 5.545895427713419e-05 203355.86768298733 30.0944556722952 16171 3829 253868 XLM_20211002 7154324344.261779 148573.04368696667 0.30122872894715214 6.2538019445430544e-06 576841153.3241967 11975.78444446517 635631 201574 37145 ARDR_20211120 326450581.10579777 5616.467441123888 0.32667784932792515 5.616441268436382e-06 18847188.635410883 324.03215664514977 75263 7399 None LEND_20191024 9015039.09156775 1208.0363259057626 0.007985421933509585 1.069596801288283e-06 3025417.452286389 405.23554753544005 41478 5796 671068 SNGLS_20190904 3878334.4991149083 364.9360504771173 0.006722109734281299 6.334284610851411e-07 62935.56175257446 5.93045600329289 10 2165 None LINK_20210909 12304993305.848368 265496.5816296939 27.167472551495475 0.0005881504771433751 2465782007.542032 53381.88385093497 464623 65999 30618 PIVX_20200312 22970029.052099105 2896.0664425717637 0.3696403332513907 4.65649272099597e-05 2569449.5018849205 323.682829664499 63967 8515 213646 COS_20200621 18259686.81576459 1951.5209496492078 0.009197487534953338 9.831338059257383e-07 5264250.959614421 562.704006023989 12328 None 278522 MTH_20210428 16750308.348474028 303.9843684722424 0.048196237506899206 8.746646638661832e-07 2172335.0989076477 39.423507878987 21478 2013 362958 BTG_20210117 227210629.6339014 6264.589733875914 12.937888001123635 0.0003574491273888869 37529889.99334422 1036.8791589443913 82885 None 278818 BTG_20210729 823244482.1058992 20587.80279956084 47.09173144007779 0.0011769429432394974 46300564.10296949 1157.16964576548 100984 None 177172 BTG_20200411 156108929.3080346 22767.51307203177 8.93392138681071 0.0013026066204384354 41943596.31832939 6115.5682800067 74694 None 202519 CTXC_20191216 5249450.380095051 737.6407744064062 0.07094985852672364 9.978602622568215e-06 2123004.1861776575 298.5857277211677 17266 20065 609242 QSP_20210314 63515268.77441167 1033.8843271909839 0.08889399039273332 1.4488784759332441e-06 9378578.373835007 152.86095584942194 61261 8275 196197 STORJ_20211207 263421773.87504026 5215.531670278334 1.8320221589359202 3.6272512518705394e-05 71833290.36743748 1422.23930611519 111985 14635 51870 EVX_20200229 5397868.98322835 617.5947520508057 0.24738382216224902 2.8392205466741194e-05 995950.5644816767 114.30510214582564 17857 2875 594950 DLT_20190225 7816739.307400418 2075.2515161475276 0.09567346030599258 2.5501141310590818e-05 2006999.4079674215 534.9526958589954 14512 2694 922398 BTG_20200312 159921789.3729217 20162.30494257264 9.1483260144086 0.0011524223771681352 25472939.497437812 3208.8477654668586 75031 None 217881 ETC_20210314 1617646645.1851313 26338.54164480473 13.883305808487295 0.00022628447713530684 1803129133.298568 29389.26353451568 302702 31626 134573 TFUEL_20190909 0.0 0.0 0.00462451693486886 4.451846858538191e-07 961622.8928041633 92.57178457170079 70093 4024 310301 EVX_20211104 13542785.64329777 215.30049558193815 0.6197003925911629 9.842236801643325e-06 1255029.4047159678 19.932691251963163 18498 2797 1427566 MITH_20190905 9710159.925414206 919.3553289839642 0.018744104286332147 1.774484623804006e-06 2346268.4744420033 222.1187669260517 83 2081 697406 NU_20211111 535646720.45949274 8246.262779296907 0.8590597026088455 1.3225194480310287e-05 45351402.114212394 698.1832707246792 None 9254 143277 SRM_20210421 298201083.7113378 5280.335336725075 5.935892557497082 0.00010528381947477084 314865437.62613523 5584.709556780254 59197 None 59775 LINK_20210707 8729368508.379536 255571.55962086847 19.999295321010262 0.000585600189107155 1039774686.4103509 30445.68537127718 393454 62052 24345 OMG_20210210 723306865.0385343 15528.290951767176 5.140562562049614 0.00011032558128531898 624435392.9269054 13401.489986403261 296117 42565 203205 ZEN_20190528 75237677.61917745 8542.253458678353 11.493703232027672 0.001306034915634984 1011727.6411500465 114.9630887260933 25749 1643 229804 DOGE_20220115 24358811361.835896 564785.034666797 0.18360345996631416 4.257042142232147e-06 5107792258.865842 118429.61403749374 2858495 2259191 34703 BCD_20200418 98885754.45293112 13968.723592855824 0.5229538803697142 7.409571895193733e-05 11262329.873487327 1595.72470991125 28829 None 812794 GVT_20211002 14315802.997141661 297.25530163413134 3.2267188886783926 6.700003462845595e-05 300368.4183746 6.236891135141762 25794 5784 570262 AION_20190930 22250796.055676352 2760.4216663430198 0.06450369687142114 8.011001243319002e-06 1362387.501442379 169.20096827462206 67358 72557 164304 TFUEL_20210120 0.0 0.0 0.029175962951044722 8.095015619993938e-07 9876164.255748242 274.01907539454527 80252 4963 50826 ARK_20210704 151007105.260321 4355.945817257337 0.9537878446942141 2.7506066754496815e-05 1055551.3400282883 30.44080062786398 73102 23406 123483 IDEX_20210217 46358424.94572043 942.6348599668811 0.08068503882291274 1.640356185455194e-06 3847566.504060725 78.22242643693119 49638 1933 6676020 VIB_20190411 6403938.652448243 1206.6219210310633 0.03761980525783607 7.087903081999233e-06 1838634.152018566 346.4148892702444 33114 1130 2240138 RCN_20200117 25208757.59024179 2896.22097269919 0.04982002594389232 5.717543859072989e-06 3041859.112356575 349.0958215799908 None 1137 766343 ICP_20210809 7553786920.199534 171717.12875714188 55.1513533695368 0.001253768612525233 698508515.9247236 15879.357429000762 248599 22105 21737 TRX_20190627 2434202662.9255886 187429.9718005209 0.036740673029633276 2.8291884906862275e-06 1807699112.1794348 139200.53992143256 436284 71104 93718 KNC_20201015 187951455.37312242 16465.82838628961 0.9500799838522541 8.323228373322855e-05 30550399.50699358 2676.3846867075986 125182 9167 58616 EVX_20210427 25659550.54929167 476.1530154956614 1.1770436031785172 2.1841881444755113e-05 1406149.6382946155 26.093301565276143 18099 2819 782921 BTS_20210421 310032189.95283157 5487.730463204248 0.11443932839939924 2.0300029756235703e-06 90275623.42998455 1601.3706717113485 5010 7087 102843 LINK_20210710 8214360162.070957 241694.10766606565 18.72952751150222 0.0005511250853771464 737929885.3343439 21713.93116070225 395595 62185 24345 AST_20191127 3865412.563122051 539.277966898898 0.022276167483082383 3.1125743623001517e-06 2214682.1713815317 309.45013106588215 31848 3526 318976 HARD_20210428 106545552.90051578 1933.8594155333576 1.7397457742256035 3.157113796819394e-05 14991255.474063832 272.04606667246156 29960 None None ARDR_20190803 65082811.08719655 6185.236670955086 0.0651782661129516 6.192593215237238e-06 1749917.0363255295 166.2597827870754 67566 6555 897983 TLM_20211120 350211038.2112193 6025.257749497002 0.2823453746673424 4.853467192917782e-06 242515453.4745942 4168.797872468441 90291 None 12180 SNX_20210420 2439968229.176189 43585.20137369293 16.050273777527604 0.00028700138475639634 216095997.38503018 3864.099226559851 114094 6053 27259 BTS_20210710 115587171.2027227 3398.5234982804086 0.04267342202196379 1.255742158384766e-06 12445088.908879632 366.2191140819047 6209 7183 140146 GVT_20201231 5850181.8429709105 202.5178470831851 1.314125253888278 4.555410485104677e-05 459267.52388543554 15.920492263469148 20733 5455 380916 ETC_20200316 591033663.9618697 109398.36616389829 5.029517210122751 0.0009359670750601873 1399128590.7931716 260370.57634917722 231197 25308 345588 REQ_20190511 13711209.957023727 2151.8826617415566 0.01878519488728745 2.9482106467695488e-06 627391.8082552552 98.46494645876064 42028 30162 371026 ONT_20190221 446903012.9018142 112681.12482553329 0.7484685203723314 0.00018858863226638088 39732806.59600569 10011.3170401847 67332 11059 278128 NAS_20191203 19291204.01259741 2638.6490870544258 0.4232454531230858 5.7916356344554165e-05 3859826.6192525006 528.1736454799267 23895 5051 1053649 NANO_20190531 222394336.10500225 26763.806154696063 1.6643358146468716 0.00020036200641457635 9848378.255018404 1185.6025747567305 98349 45945 384814 POA_20200313 1398628.9115141418 290.62362042367585 0.006181861939180196 1.2900183090570828e-06 2320879.337156851 484.3163544415308 17419 None 535987 MFT_20200316 5931964.646356596 1097.9844917047942 0.0006333982108363288 1.1787212290508607e-07 1860837.786490828 346.29226373415395 18398 2508 872119 FIRO_20210212 68174400.53537665 1429.5310777978632 5.991822789182352 0.00012529541017488208 11747318.759257717 245.64897430772263 68328 237 276546 KEY_20190922 3964303.976734723 396.96324339431044 0.0015163077888772159 1.518345872035113e-07 99481.36383811271 9.961507764849499 23736 2814 575319 GXS_20200629 31355439.49414678 3438.15740225785 0.48373423518361175 5.301672438185766e-05 17670332.716145992 1936.6484553073713 None None 465315 LEND_20200310 31462802.060477473 3973.9587438858975 0.028005802092829785 3.533775684104572e-06 1115693.6065478032 140.77836173594082 43995 5743 155774 GAS_20200903 27174419.90147827 2381.985070695211 1.948838834666532 0.00017078752310391141 4424211.441646519 387.71811212192193 321616 100385 111243 MITH_20190811 11232960.740214676 991.3851918120381 0.023675235801759672 2.090590514558341e-06 2339121.4233868276 206.55106040250058 79 2078 826998 MITH_20211216 35582856.609520175 729.3602697877395 0.0575859589200298 1.1783656674800522e-06 24093463.15165284 493.01792174773334 37233 2937 264208 STORJ_20200625 25255239.037751697 2714.4983415270517 0.175576736568555 1.8889545099052157e-05 87551051.74388899 9419.240684769786 81288 8142 96443 PNT_20201129 9095925.96889592 513.9464050264949 0.36619382805824235 2.067221272851973e-05 1363934.2911542053 76.9962179973663 6511 103 624601 IRIS_20210508 181871068.02398512 3173.9959941814477 0.18178178958074778 3.1719253547165043e-06 29765734.629842307 519.3847447090992 23713 None 498236 MANA_20191113 39400869.10770838 4476.866785645849 0.0296855022416928 3.372577161151333e-06 6932679.569663349 787.6234194006271 45864 6405 84701 ROSE_20210723 90076309.71694635 2782.406322083412 0.06003918931566935 1.8545128373194463e-06 3066142.4278375288 94.70814909871702 None 1664 227884 THETA_20201030 592759715.631796 44005.57435012143 0.5928230897030349 4.408668358424794e-05 15400356.051522559 1145.2837045674828 74748 4498 70726 FUEL_20200407 1943965.2090856466 267.27857875978776 0.0019692651483089636 2.7000002847538915e-07 155180.57948587032 21.27634306431079 1 1467 None NEO_20200531 782683242.4318756 80842.6614025926 11.05013090727793 0.0011402505643920884 375810597.15150106 38779.47230691109 320034 99524 218825 IOST_20200806 84150513.18753517 7183.454337505199 0.005574150840808846 4.7572528949191104e-07 31694321.969807427 2704.9484172460225 250 52172 321409 WING_20210219 31947676.367875125 618.1291111114006 32.98738897105338 0.0006380484447815101 8612500.982074931 166.5846564004869 None None 342300 STX_20210203 425455708.1838765 11946.742632854834 0.46142579899847125 1.299252202409556e-05 6055440.269893422 170.5050763155228 49237 None 62343 GXS_20200502 28385901.98581291 3203.4207907719524 0.4359198917776749 4.935945909887949e-05 13554697.018932616 1534.80610938703 1 None 477112 WRX_20210111 21291103.26892192 552.2978656888733 0.08924416398284837 2.320329836531811e-06 2356284.7710544015 61.26291752471135 None None 5719 ZEN_20210428 1406074795.927534 25521.018090614674 127.73383714208921 0.0023179838430214044 152084514.3060976 2759.8751812579103 101656 7120 749117 NXS_20200421 8824476.144667482 1285.9625485032504 0.1473718118964369 2.152667919351871e-05 40199.831462973496 5.872010830300941 23676 3529 498708 DNT_20190902 4707881.975526463 484.0130165093063 0.0070138999692997235 7.210926058221035e-07 62879.85844289895 6.464620421845283 60275 6282 485543 RLC_20210821 329957913.06791383 6715.459969334491 4.6279308285098955 9.413582656303756e-05 37637623.0035504 765.5794528043988 46515 7796 323230 KMD_20191026 61493108.822407275 7114.582385005697 0.5280209315084037 6.098810494780671e-05 2341793.8295922033 270.4846708203317 98158 8402 214923 APPC_20190616 10761634.004094584 1220.4353155896204 0.10147128605200725 1.1503732812001097e-05 1366811.2857267836 154.95449448989785 25553 3371 1293635 OGN_20200331 5967182.263628607 928.751022982816 0.20848942214580501 3.247300415409043e-05 18811972.04392839 2930.0347233055586 66292 2185 103372 POLY_20200701 25964630.46471407 2838.217229903935 0.03926063554501794 4.29514886765838e-06 875710.7649809147 95.80354592811294 34939 5004 323415 ZRX_20200523 216179820.4164455 23618.444312308366 0.3292616160868695 3.5971322615948914e-05 57606954.86828266 6293.4707759640405 153161 16054 121592 WBTC_20211002 9915381494.329105 205884.34455983844 48194.36291882163 1.0005619370741292 493606507.52834535 10247.752089945723 None None 275397 WRX_20210110 21518710.283941913 531.7770020874343 0.09069866274912185 2.2515189198688657e-06 3121908.501825463 77.49878382884485 None None 5719 CAKE_20210408 2590990545.2824097 46000.70412613548 17.381291217016724 0.00030931402779736585 695260663.8305761 12372.721543722982 317824 None 4019 BTG_20201208 160831153.645554 8373.54427083441 9.17400947264989 0.00047781599560479997 6198452.410889574 322.8380915397822 None None 377276 NAV_20190830 7026102.367606653 740.7260170217463 0.10635639830098781 1.1212610801328932e-05 73368.97655377147 7.73491573737907 51498 14205 487370 CKB_20211125 738778632.2560494 12921.918140659778 0.02574086765876348 4.5002345448941705e-07 25160555.692429762 439.8779535982638 69094 13087 104064 WPR_20200610 4763914.529002228 487.346437913634 0.007829045971129902 8.013575091571728e-07 100079.51342068792 10.24383684655894 32992 None 2763388 IOST_20190520 168244133.9369587 20557.636193953225 0.012424809216904503 1.5184472353933406e-06 24242478.411995824 2962.6953364961855 198025 49611 108380 MATIC_20210422 1884364052.6833608 34777.50759950234 0.35991363307887014 6.654218862749172e-06 313038334.2230001 5787.570675028584 3832 12507 22143 BADGER_20210422 260680775.49918762 4811.052676843667 32.23784440929498 0.0005960254145629848 26722711.040542018 494.0595507556217 31426 None None TLM_20210809 331181207.1902766 7528.627882698258 0.26703747217863116 6.070572310167313e-06 138581601.31931326 3150.3804496206176 56983 None 11192 SNX_20210511 2503659388.14057 44841.54861281196 16.31070679893843 0.0002919121146986461 171841990.5525839 3075.449732165766 123326 6368 31416 LOOM_20201111 28277395.777837697 1848.7299426832935 0.034616695414301665 2.2660544341836146e-06 115819331.10596658 7581.685821703971 22530 None 386788 PERL_20210702 0.0 0.0 0.06494552531629834 1.9313726229583312e-06 7146374.847522654 212.5213810602518 245 681 5749080 SYS_20210813 125162396.62567261 2815.30642415588 0.20257003603208543 4.561162261420459e-06 2971230.008338038 66.90161313830684 74422 5472 426282 QTUM_20201226 235485747.05075222 9540.646565807643 2.2883304840393506 9.280222603913051e-05 160529064.91702944 6510.184902131576 188249 15025 230416 CTK_20211125 101030821.01824208 1767.1220334224595 1.7374770526974537 3.0378892909211142e-05 5510263.8826141935 96.34413077948093 95340 None 193786 AAVE_20210104 1144026140.5399802 34197.57353303195 93.11712094715737 0.0028287854783933895 302417463.9404646 9187.076680482982 None 1898 24520 PIVX_20190430 39075971.8646117 7507.850004810241 0.6015262706521685 0.00011557340314753171 861247.1649189867 165.4745115170673 62969 8594 268196 FUEL_20200313 1096585.3917646948 227.8614534811498 0.0011030468212353736 2.3018155519169538e-07 92925.22868715308 19.391446712839585 1 1469 None AUCTION_20210825 159343187.83890244 3314.4749943649153 34.79011837040472 0.0007252365650870216 3282886.534904536 68.43521855245999 None None 81918 ZRX_20210725 554400432.3806635 16227.67583193932 0.6590555962926974 1.925919811489888e-05 44789783.385403246 1308.8657718639347 223003 19605 52898 OST_20191024 7022199.769641976 940.9360165372651 0.010491691889732275 1.4052958226626678e-06 428828.72547342576 57.43889764198356 17962 757 847910 DCR_20190616 275002609.88169146 31189.214199351954 27.641857756997418 0.003134914597278074 13066507.890000021 1481.8970085120543 40459 9486 389258 TRX_20200901 2106364631.2178705 180293.44854953125 0.029349690212924 2.5138616036689476e-06 1063299339.9102694 91073.78525685173 523563 74342 41399 LTO_20210930 69988355.38134433 1684.7858545883175 0.2388055926641846 5.7450737037831136e-06 5962675.370540305 143.44726642837944 12827 4924 609824 XVS_20211225 183772183.38498655 3615.5140421969672 15.862343074441004 0.00031200296205477767 9890222.93281786 194.53487016009498 None None 24385 ZEN_20200411 47727902.337058544 6960.816688553822 5.406530827497845 0.0007878298781158992 3346393.7882150714 487.6304407418701 None 5116 40228 PSG_20210511 61241125.256708264 1096.8445679350998 29.348228956279385 0.0005252441652525529 44036847.92778537 788.1258342587072 None None 27720 WAN_20201115 37219728.01935319 2312.3841699710483 0.29789473588520216 1.851881202382727e-05 1558549.012000647 96.88817124410095 None 15945 434390 KAVA_20201231 60881945.543527715 2108.4798614077677 1.301420924775162 4.512835526028207e-05 11991803.843160983 415.83040025215445 51192 None 85084 SNT_20200807 103294371.16501836 8779.564699748584 0.026647082160676513 2.2643909857218996e-06 9357465.277187353 795.1699887853979 111050 5724 113407 TRX_20190110 1829467002.9130228 459917.11311166675 0.0279472197685344 7.0272546481982145e-06 281404959.8838086 70758.53443554288 367838 69064 90200 BTCST_20211007 289540282.9237462 5216.415378241716 39.72081786997099 0.0007159410348438025 542365676.6304072 9775.776648448364 66925 None 2853213 SYS_20210603 153797000.89570177 4088.754663820515 0.2508888203851847 6.6699794435264595e-06 1900670.2229211843 50.53007661458865 73420 5391 376504 RVN_20210617 639479209.7268646 16718.824077142424 0.07107540124954254 1.8580511434011221e-06 40649818.794325136 1062.6664213215452 63819 42559 52142 REN_20200229 47237750.998477116 5396.883118350664 0.053869586201455114 6.182604612022359e-06 1753115.4035344867 201.204801142634 10932 870 519713 CVC_20200310 17490640.30669493 2209.184341612226 0.026368326006736102 3.3271587424736783e-06 5981774.8288929025 754.7811117162207 86746 8076 106398 BLZ_20210602 61497771.00207319 1676.0517186696295 0.21293691071695556 5.806138631716008e-06 12340597.94944991 336.4903822992821 None None 205295 CHR_20210506 164256457.89163423 2868.3156913325856 0.36320766488421347 6.337431064169197e-06 83794661.0080454 1462.0916324913044 57127 None 102679 WTC_20200701 9726989.06277116 1063.2659683164975 0.3330449021954276 3.6414708052967786e-05 4723282.855226614 516.4377688739972 54317 19575 728935 JUV_20210218 0.0 0.0 10.934873301783727 0.00020971935025881555 6166212.811633111 118.26146574577449 2302430 None 93564 KEY_20200313 2054841.1488004585 427.6293164886564 0.000756401066805703 1.5784422796395674e-07 681238.4939037632 142.15945594004472 23513 2759 281483 XLM_20190915 1161451689.0184212 112200.84060962836 0.05779669064966782 5.585129596301025e-06 163672073.51634538 15816.299023503894 275977 103826 66255 XLM_20201124 2717796821.1640787 148400.29333201685 0.1304966765763799 7.107964347297936e-06 877026905.3319308 47770.381118263256 292133 112474 47328 ADX_20210704 42109723.56770623 1215.3484341664396 0.34381968978761485 9.917718388963393e-06 2892429.417311627 83.43414083867731 59087 3874 14172 XEM_20210115 2043390178.0271697 52383.80156755771 0.22714733341479443 5.790249960925971e-06 105057064.99102025 2678.02688816259 221412 17937 99771 ELF_20210814 132112391.28198178 2769.6703036319464 0.28663421012009116 6.007550380765358e-06 17546364.369962454 367.75326960327493 88028 33389 843761 FOR_20211216 31799020.963243823 651.8010277604369 0.05643479564743148 1.1548097294782623e-06 6577850.501168342 134.60074889361968 None None 166431 FUEL_20200317 1200086.0757606106 237.58093384125752 0.001157055704688847 2.3e-07 66567.78670525075 13.23237151 1 1469 None GTO_20210527 23616600.286898497 603.6704961772406 0.03575287097656757 9.12044615730815e-07 12679994.452446446 323.46271367773244 2075 None 266465 STORJ_20201130 48700630.171248674 2684.1667295055054 0.3389748772003331 1.8665589687572937e-05 13591248.150229653 748.3995964817244 82366 8483 88505 GVT_20191030 4985676.929127878 529.7999003458507 1.1237496019802085 0.00011941456207571551 726405.0252125487 77.19098438166417 None 5677 109882 LTC_20210127 8954961889.962664 274800.09183985775 134.72675504526808 0.004134980367655804 4748234160.706762 145730.9279731271 139684 224461 127540 ADA_20210710 43482946014.9807 1279827.8344224063 1.3563414559246603 3.991278567940797e-05 1433266560.020062 42176.44515815832 525479 539942 6662 LINK_20210602 13254761603.323473 361243.43376701564 30.741558301644222 0.0008380576678549515 1872589231.0984054 51049.38885875183 None 59172 24731 REP_20210707 105715681.18071194 3094.9187373282716 16.12245170951278 0.000472004828200273 33504928.019422863 980.8984438972846 151406 11230 153452 TRB_20210428 139443148.6817844 2531.191414909646 86.80150635061209 0.0015751855089644084 204045651.5929894 3702.8130855036816 18671 None 295366 XVS_20210602 322892041.1347181 8800.379763483887 31.938068930512998 0.0008706762129968154 83261657.10597959 2269.8286629225236 112242 None 9976 SOL_20210120 953132372.6214266 26320.289703298717 3.641431311969665 0.00010103331773141679 70082464.78928855 1944.4727432266352 107633 3019 90687 LINK_20200607 1654653352.928835 171080.24634326767 4.348519811416081 0.0004496082755030318 295708503.37722266 30574.309425008654 57438 15867 81896 EOS_20190703 6111414591.849125 567695.8269765233 5.878457910386943 0.000544664714971507 4357727220.896848 403762.3966822153 None 66949 97672 WAN_20210318 229560084.1329526 3900.231431291243 1.3976714660185845 2.3731915765432636e-05 33380255.317113154 566.7837018029463 None 15935 311428 NANO_20190523 220213528.57491627 28734.732733068973 1.6526555693503926 0.00021564804120990195 4781804.9095903 623.9575149989469 98375 45773 404660 BCPT_20200129 2483878.498594378 265.8912755259747 0.021131197667217282 2.259925223228851e-06 205700.45178092993 21.99911461386234 10701 3150 3813934 REEF_20210201 0.0 0.0 0.019900597938402164 6.002839894944926e-07 43154601.618831776 1301.7205063375982 None 1072 104266 YOYO_20190627 5404088.377552155 416.3509614185004 0.03108243605908375 2.3862369732684018e-06 1762478.6172295958 135.3076584162755 7583 None 3542595 KAVA_20210805 428113923.7173016 10763.418665002308 6.11552878734954 0.0001537920607712104 127177435.95080434 3198.2320153462324 None None 50274 SNGLS_20210509 20358307.08282122 347.1070304916272 0.022874502340248563 3.900078994287946e-07 1865826.9161841231 31.812155974133777 9496 2136 963181 STRAX_20210703 161361474.58748353 4774.278160572255 1.6154753809309332 4.7695098369710086e-05 3028714.7504726676 89.41940537301306 157873 10755 140717 LINK_20190321 175759676.85499927 43489.31698692135 0.4822992042704502 0.00011933831099588153 5607376.281372433 1387.4682118739554 10724 6490 307556 CTXC_20191213 5632490.458108952 781.5248225379784 0.07737038529680951 1.0748452407933074e-05 3605698.580490901 500.9110325751014 17288 20064 599688 QKC_20190621 80675915.05284089 8433.750446493965 0.02014982174033877 2.106966339438221e-06 12851474.225065297 1343.8145485010743 51013 9198 162641 LINK_20200410 1211904755.3558497 166271.69667803726 3.3217648737156886 0.0004555699540088813 631524668.942154 86611.68846175107 48192 14072 83240 EZ_20210708 0.0 0.0 2.943147561536769 8.661643391534129e-05 943385.4864848171 27.76370703076058 34999 None 116746 WAN_20210805 114416276.44796243 2869.786487592191 0.647674541312863 1.6285046523060843e-05 2630898.5049215714 66.15097833435269 123362 16654 308128 SNT_20210508 832846848.224193 14534.761294092215 0.21526268593987014 3.7556302968269014e-06 244437336.93301788 4264.632601108392 130897 5943 112521 MDA_20200806 9125207.671139698 777.3290469975685 0.4648866339825108 3.9601277820606475e-05 259746.46277986307 22.126452092946494 None 372 1458331 WNXM_20210104 48567718.23823935 1451.8008434665862 26.190849491869113 0.0007956463210608743 22800386.756030273 692.6481650330743 None None 132342 LSK_20201231 164830276.9185692 5705.988926785542 1.1543874865836428 4.0035969588108795e-05 3464252.639735774 120.14571791699488 177269 31049 297480 CDT_20210218 15231363.501947023 291.84354320562903 0.022568842044083527 4.3274246783482694e-07 1134269.1385013796 21.748852919667033 19918 298 552425 BTS_20210826 164085992.32592025 3348.521667383062 0.06054395801583434 1.2355274961098946e-06 27957844.931860264 570.5389485149932 6670 7218 252207 PHA_20211104 153161097.77032 2432.5429047285575 0.8439191262652963 1.3391594838713562e-05 20616873.775248203 327.15554351855 None None 139107 IOST_20190803 121191930.94063441 11514.899019338358 0.01008728490255689 9.58393890679551e-07 45189305.19597646 4293.440151858869 196873 50548 101612 ONT_20200306 464303464.56842744 51283.394039487124 0.7290592748282031 8.048087589267464e-05 111811253.91904084 12342.84777761468 84504 16490 345761 NANO_20210724 508223245.24492514 15206.901637870073 3.8125420331739113 0.0001140204069438634 13427968.468727347 401.58571785215463 None 107522 59418 MANA_20200411 35816793.919762485 5223.089189236164 0.026833021813737055 3.912463903696829e-06 22507954.189757906 3281.835304453368 48045 6818 46518 WAVES_20210707 1619827964.972395 47421.87596059369 16.209975437104855 0.0004746225747560922 112202079.93838829 3285.238788915646 193947 59116 98898 STEEM_20190826 59924074.26275994 5935.794752311914 0.1859488057510171 1.8409679144270734e-05 1880481.1341990556 186.17519041135097 9574 3769 255296 BADGER_20210805 125309782.9390732 3143.178009485336 13.354429785490426 0.00033578208880161506 18842235.924686868 473.7667903543393 36239 None None CVC_20211007 368529282.61787415 6639.06553261519 0.5600193345043367 1.0095022570955686e-05 218532729.84013045 3939.31549199324 None 10076 174587 SC_20190314 104748880.98829724 27092.114147146905 0.002631494287064907 6.807090016797031e-07 20932659.225565583 5414.813033787414 109327 31101 214151 ZEC_20191017 273889105.09669036 34209.80100596166 35.82975025568505 0.004475273399091846 146609720.03268895 18312.117037614305 140 15335 189800 LINK_20200526 1465289040.803681 164875.5390248638 3.8594184920089 0.0004339986375404649 350051773.33876866 39363.95936647207 56300 15558 76484 BNB_20191020 2819337301.6312757 354822.8975149455 18.178637973531558 0.002286740013340217 225707240.54647046 28392.32394691616 1051801 56898 1996 VET_20210324 5412882664.323703 99233.63760029073 0.08345821095234109 1.5310076988500348e-06 1168964304.3359802 21444.185409644924 212045 106656 48429 POA_20200330 1680163.74861655 284.13692889415705 0.0075606453088957115 1.2808823629739884e-06 19839.08602300268 3.3610273126407835 17345 None 758180 ARDR_20190410 85710296.03122997 16563.417330435 0.08569355917562677 1.657731648149539e-05 842179.340297766 162.91858562765736 69192 6582 1030225 INJ_20211230 366947882.0469003 7911.873741045147 8.463742659283394 0.0001818999948352445 13822398.171038406 297.0664701347924 None 4458 136917 IRIS_20211007 123571348.9284268 2225.9664219634296 0.10941805720123532 1.9722231553784613e-06 34031711.411741436 613.4099889925309 28923 None 488094 SNM_20190806 5607025.8245873945 474.84423538508514 0.013116750051389719 1.1104818278029854e-06 159104.66977984918 13.470016872845555 31117 9943 None BNT_20190813 30250824.471229643 2658.010901215088 0.43383862681517726 3.8123971922155544e-05 3498101.2430956494 307.39889288246854 781 5126 154213 SKY_20190318 15397001.026014939 3866.633672200864 1.1002215538950917 0.00027629755300945014 923864.0828634988 232.00907535832943 14996 3573 436972 TRX_20210617 4923291263.627463 128716.67954971812 0.06872286883750166 1.7956123655788474e-06 1307545917.7911282 34163.964023380344 1045535 112667 19409 FTM_20200423 6622437.480897528 931.5674890257663 0.00312468882908395 4.3921567464656986e-07 1620845.0688528817 227.83086552093218 21500 2333 315256 CTK_20210125 26004578.54040276 807.2827489224683 1.0183241635474696 3.1564295440512195e-05 11487982.653566077 356.0851165796143 None None 186270 ZEN_20200701 64004846.23698796 6996.436460779548 6.806008550313085 0.0007441350874962854 4095886.5397386337 447.8238406684133 63853 5964 61667 AION_20210616 89750366.6999806 2223.710510755851 0.182336993724853 4.517693958855623e-06 3839644.2868298735 95.13339802531512 73270 73363 263057 ZRX_20200905 375447066.56762975 35786.58924037498 0.5192276092018279 4.952073264930057e-05 122081341.3002833 11643.366717907695 158273 16296 45992 LTO_20200607 10791249.39146552 1114.6147681314449 0.049425913219284245 5.1115181430899316e-06 2633282.566927834 272.32823310753525 15234 456 1406208 ZIL_20210105 799984022.6124775 25569.791455228933 0.06900507000861149 2.2056006115116976e-06 272850626.2138332 8721.091188712346 115362 14109 39054 ALPHA_20210603 240601978.68469897 6388.622375304358 0.8413417931559102 2.2344178509367086e-05 32167076.515467543 854.2864572197528 65974 None 41375 WAN_20200331 13185124.829995226 2052.174314945035 0.12428625766342101 1.9380237301311994e-05 1791662.567606683 279.37799702786305 105534 16336 866229 OG_20210201 0.0 0.0 3.4744910826023214 0.00010478016586668472 2234367.4991125017 67.38178098554462 None None 479965 RLC_20190826 15778607.50473608 1562.9352213776435 0.2255949002832491 2.2316479058293507e-05 265584.9253622455 26.27240428575008 None 3309 784217 GO_20190920 7942591.741430792 774.8875103303116 0.010062566551572956 9.8132572063493e-07 24368178.540172063 2376.443449485255 10252 686 748628 FIO_20201018 11224600.742590923 987.8157107735332 0.10217254417125127 8.990197380369302e-06 446961.7358824668 39.328317207417726 55651 148 230648 WBTC_20211204 13640941591.450706 254077.58152230215 53779.28022508981 1.000732574536405 446976558.6660749 8317.404034400624 None None 199650 CHZ_20191022 34077500.102037735 4149.8361280088775 0.009572147351742962 1.1647434580977306e-06 8777601.735852432 1068.0627683567586 12480 None 374824 BTS_20201124 62805679.9164145 3429.3885583840656 0.02341043190673731 1.2751322080646274e-06 28534680.73343803 1554.2425955659794 13099 6887 94225 OCEAN_20210813 273376980.32607967 6148.918684924499 0.6291514783776044 1.415170261351919e-05 46695365.36117575 1050.3335790055535 118823 3336 135729 EPS_20210902 288388733.43741035 5929.624381436734 0.881759560890145 1.812347683398662e-05 52712512.07203974 1083.440468095898 None None 34754 PPT_20190117 49038578.42869767 13634.374908645173 1.3240863758987929 0.0003682431109770084 1967656.2198173637 547.2270245413275 23385 None 502199 WAN_20200301 23206927.990881555 2705.2890459670316 0.21678119256342812 2.5345904102157867e-05 1214016.473508708 141.94194963194732 106265 16401 700059 AE_20190816 76272350.0287496 7411.633835080467 0.23508165195164396 2.2811882611646552e-05 19753505.77358141 1916.843152727685 24880 6353 305950 RCN_20190626 16221651.477981793 1374.2677048440567 0.03246889342338575 2.7467069548713753e-06 1546939.1215456927 130.86335861547508 None 1121 1997723 ELF_20211021 276929077.98786896 4177.984712698838 0.5992381528747891 9.074054039337188e-06 16677773.95358314 252.545705550703 54303 33515 157722 CHR_20210422 126449839.28748648 2333.73707193902 0.28084399281899997 5.189449301698463e-06 82720624.94081655 1528.5158319617055 54833 None 107103 COS_20200807 24579875.950358186 2087.9814662807453 0.008155344478970391 6.930172846800191e-07 2264110.4987636376 192.39747801147377 12615 None 236084 OG_20210806 6500184.868805424 158.29921873133424 5.0627542895158895 0.0001235099551007618 5510884.022576874 134.44243968218737 698758 None 320611 KSM_20210527 3064011462.617593 78204.5076068022 342.20815717330476 0.008735160331102552 360980881.21345085 9214.350411481535 68446 None 94306 CKB_20210513 681931365.803617 13221.312278829097 0.025171515915050277 5.018015623860688e-07 96889221.2694039 1931.5150813895386 43478 3774 113010 TNT_20200422 21551073.13177876 3146.937522990353 0.050256063994587416 7.341518833557772e-06 493745.4276751951 72.12744230528831 17567 2563 822007 HOT_20190130 210601685.62708673 61676.97438331136 0.0011844609386488457 3.4697365936871866e-07 14830786.535913395 4344.501458657037 17018 5215 330489 POLY_20201101 31396032.475263566 2275.2834500042554 0.04346278756708989 3.153880965090859e-06 3074933.1588997096 223.132792479326 35349 4994 334302 GAS_20211011 137058623.3549464 2504.4863050830395 9.930353575060629 0.00018150885649256392 9043971.310377916 165.3073959844605 None 114105 96660 VIB_20190629 6987644.1305212 564.0873620574532 0.0385436986061585 3.113305036557992e-06 609572.1890753136 49.2372095834785 32662 1120 2278285 SC_20200319 50998270.58009317 9465.581231128315 0.0011637295966190123 2.159951092962204e-07 2215928.184551147 411.28940245677745 107755 30190 162098 ONT_20210104 402977520.85447055 12072.723235251246 0.5031648994842218 1.5141150006898146e-05 124888618.1148918 3758.126417343804 94542 16677 288289 AION_20191113 29626142.16195513 3367.5044920806654 0.08181482552403903 9.296637817615936e-06 1191666.5670836477 135.40935157630187 55 72549 229740 CVC_20211204 317273003.1507289 5916.6499366207245 0.4735417957473565 8.830820800926454e-06 32126882.130210746 599.1165754157429 112216 10248 159287 IOST_20211002 1320592583.1716816 27424.5966650392 0.058185250517551676 1.2079824992198161e-06 394711416.83697337 8194.593639112938 262508 53861 208271 KNC_20200807 310531070.5055963 26393.767579364194 1.6024436978993184 0.00013619028740568512 94433837.18837059 8025.84917296353 117933 8778 65408 DASH_20190904 749175861.6657699 70498.56601466004 83.00164985006728 0.007811690225934918 288408329.1416674 27143.51497715871 319555 30316 81581 DGD_20190811 43209330.16429433 3816.579449818043 21.595722013093923 0.0019081780202047512 1967422.663201345 173.83964657895015 17192 3361 575541 1INCH_20210731 416434660.4486479 9975.493756910018 2.3110831046705407 5.531321973959914e-05 103374211.20347224 2474.1474887466334 244467 None 4433 ETH_20190201 11125649845.205639 3242551.6028671134 106.33599581366398 0.030990191237112705 1980504563.8608692 577191.3330982893 439543 427112 27812 AMB_20190614 6696342.686105818 813.5529972160202 0.04631231434815221 5.626582137758046e-06 1063583.7866515568 129.21706937372005 19334 5680 617435 WAVES_20190920 107504885.5086704 10496.45264870739 1.0760172246338013 0.00010499129929005641 12883098.958285255 1257.0554332650886 142363 56904 28141 ALGO_20211207 11286730376.99592 223611.71010742092 1.7913241969870008 3.5466726776934996e-05 864656359.6629606 17119.47559000567 203241 58587 65951 STORJ_20210427 275715938.82635087 5117.903514866055 1.9218318853828644 3.565146441380902e-05 114978440.01798266 2132.938782956948 256 12828 56587 OMG_20200106 88909870.1773755 12106.094800172641 0.6345275003618119 8.639065382389787e-05 58270375.02746328 7933.487192148256 284056 42694 None RDN_20200502 5728545.046775546 646.4508823865572 0.112490069816099 1.2732136772378841e-05 3662161.827118876 414.5001006905704 24983 4313 1420050 LUN_20191015 2614563.2098427913 313.2511238466123 0.9664841640163738 0.00011578671003913391 205126.29826277852 24.5745353132872 None 2181 1767204 WABI_20191012 6978879.882739804 843.1094031538776 0.11809257038178209 1.426660985779911e-05 275557.32647120336 33.2897222705325 36229 7918 1306632 ONG_20190411 0.0 0.0 0.5966614566576304 0.00011241628042911967 5166974.946194569 973.5036477392944 73332 11422 248801 THETA_20200309 113644966.5407064 14067.58883475998 0.11348722219062686 1.4107303461436764e-05 8204404.218840296 1019.8682970762808 None 4028 385146 WAN_20200323 11849703.894236581 2033.0032288100758 0.11139018315429922 1.910346182021398e-05 351249.0490120061 60.23935509552438 105767 16357 732459 ETC_20210513 11828078157.035715 229426.6492200798 87.0439271927039 0.0017352462525072674 11764123132.388248 234521.24964809557 398325 53498 131671 GXS_20190530 66492554.59828722 7699.935731046498 1.1094949479536846 0.0001283024585155629 8524113.622719772 985.7320544614166 None None 869901 DGB_20210710 612540238.31455 18010.064368676623 0.0422507645006491 1.243219264173623e-06 14543926.697605269 427.95177935571195 222360 40180 90181 DOT_20210702 15380656777.288427 457461.54484898545 15.281224095869002 0.00045428859649968966 585331700.7122605 17401.06127199803 490083 26982 19390 ZIL_20200607 225345691.8742827 23304.750837322612 0.02126786354236171 2.199475199967121e-06 158787892.43402207 16421.491080570264 77680 11052 123931 CHZ_20200109 30869023.174720097 3835.6156860006176 0.0071263278824188515 8.880950534122676e-07 3672304.971456099 457.6488667911889 16396 None 294591 APPC_20200625 4585894.631898705 492.50195756560527 0.04198188874853316 4.516641528673327e-06 128985.35910132558 13.8769513920034 24465 3199 1685690 LPT_20210708 414557047.03817993 12200.357718446303 17.36794770775134 0.000511174446180104 7949632.912052504 233.9740578180088 13930 1168 101406 QKC_20190421 68606390.07250637 12918.347497527111 0.043496733699383616 8.189490059251487e-06 10274804.797177747 1934.5225397563372 None 9146 169862 EOS_20190124 2480286785.7267365 698685.4543730062 2.413452808279768 0.0006795415603157915 735722592.1562262 207153.03672739796 581 62208 76885 HC_20200721 57694151.14118812 6297.25950153392 1.290222183683921 0.00014081802687275597 21965419.208174087 2397.359951986195 12715 847 542975 EVX_20210731 8148185.810073861 195.28221518157503 0.37376999128779176 8.957899778971331e-06 361783.4228872049 8.670625570423201 18297 2803 2072703 GTO_20210916 30244047.250781618 627.4972716930173 0.04581945962859823 9.504852443948979e-07 4579830.58204948 95.00464268569337 13266 None 1451333 NXS_20220115 48923599.97584459 1021.8120047259132 0.4162754174620514 9.656437240781024e-06 172325.12737233122 3.997465878782551 27228 4176 394982 LSK_20201031 147987056.2121392 10894.865552075973 1.039335116954433 7.658133270822363e-05 2990868.877461591 220.37620095309384 177368 31045 214442 UTK_20210617 128727270.07296106 3365.5151449942255 0.28665487850070154 7.4898072969922585e-06 6874098.976490147 179.60858347728038 76289 3972 124472 XLM_20200320 834863965.0827861 135243.95782605413 0.04119427086217234 6.6732742867950135e-06 402932023.2719591 65273.05506203732 281238 106814 82721 SKY_20200425 7667956.657985997 1022.6508435799042 0.4253213019390345 5.674533975037785e-05 140480.8933217848 18.742621128165165 16132 3825 410514 PERL_20200318 4696235.651944936 865.0496945046356 0.013612098773323917 2.529813197363906e-06 1744645.0338620292 324.24287428982586 11557 477 685227 COMP_20200718 20682.037853580998 2.259569097135029 2.2424740232978123e-07 2.4498434025661337e-11 20.130006009559448 0.002199149774034484 1836 None 1025389 BADGER_20210428 277178164.8239993 5031.344998737929 34.43576205298686 0.0006249052079454941 46525265.499069616 844.2932282630765 31998 None None NAV_20201018 8784589.025900194 773.4193523284223 0.12565850665168443 1.1056930650269675e-05 226080.12907884317 19.89321992786293 48369 13737 1332965 UMA_20210624 542287256.848897 16084.742324735022 8.803902019341104 0.0002613299851285143 18120716.889171842 537.8849815413671 40653 None 140212 BAND_20200905 226180756.74562803 21562.36357041553 11.013932534914671 0.0010503765272468484 192679066.5109551 18375.413878137533 33382 2070 119492 CTXC_20210825 36794376.98064858 765.4416950702494 0.20111539459051592 4.1878831857515135e-06 4666106.165360859 97.16365866786671 20462 20611 1047878 PPT_20210202 58156644.81051269 1741.801673086584 1.6051776405934615 4.80573840891707e-05 3883942.319094434 116.28127821410291 23565 None 736934 CND_20210221 39753025.43122977 712.9954243993144 0.020215089098879056 3.5958771877117033e-07 987744.5724975108 17.570084198772086 34367 5986 249426 REP_20210418 323258413.92968494 5362.378948135329 50.64929530080911 0.0008426075779503365 46933756.04415932 780.7954339662709 147104 10989 149141 FOR_20210218 27889743.250047162 534.5205532565724 0.050101343374996395 9.608909851734715e-07 9680920.247155033 185.6698516853946 19606 None 211911 REQ_20210314 88909039.21670383 1447.6163300025978 0.11548745580734034 1.882568441116807e-06 1738881.941439715 28.345626309781995 41492 27320 337222 XLM_20200314 802605996.3040556 144274.21416945566 0.03961627927854461 7.121311811212084e-06 625635756.168649 112462.53765010517 281604 106786 84088 NULS_20200511 18920569.018342786 2160.8479122896433 0.1990514405678927 2.2705934919938783e-05 7208351.010873569 822.2615644780758 23808 5191 573098 KSM_20210124 962065658.5270685 30049.538138803342 107.49717491400668 0.0033542371000600366 160861945.4105417 5019.379399649381 32161 None 134935 QTUM_20190920 212039704.10763812 20702.9169258754 2.2110786382798744 0.00021574377598323092 221173471.9184652 21580.779241814944 177778 15337 210417 EVX_20200523 3780102.542037188 412.9462561531705 0.17340310977109086 1.894248881436562e-05 407461.717440941 44.510960818962225 16623 2847 1534035 FTM_20210220 636863860.4257147 11401.669353174146 0.24893838711424443 4.455759081636011e-06 129278354.47588699 2313.958922496497 35904 3722 100563 REQ_20190430 14458901.049184214 2777.562375660327 0.019815204891964484 3.805597607979486e-06 340371.56813264237 65.36986281858186 42150 30272 359801 XZC_20200610 47600289.87913853 4872.221963361482 4.621749348007386 0.0004730683098714089 21955924.936339125 2247.3421899817126 63531 4118 211227 UTK_20210718 81944418.32655296 2592.6647594040446 0.18217826656156058 5.763763453812877e-06 3341677.1814469546 105.72411943746286 77451 3987 165733 OMG_20190318 211071879.0147986 53003.32022849702 1.5052335904549448 0.0003780054678462428 50994017.07565235 12805.997291234538 289234 36992 None LSK_20190509 222343138.887407 37330.082863907744 1.686283704073495 0.00028304694119445377 1890960.8937039233 317.40251986560065 183697 30415 170512 NXS_20190321 25354519.740280602 6272.17576375878 0.4246427304473751 0.00010504769443283888 278918.0917725091 68.99847889881653 51 3504 745468 LSK_20210204 213193548.44408497 5690.560259400396 1.4896873825361145 3.9762722089189044e-05 20637774.249379687 550.8632828858725 178874 31127 225361 DOT_20201115 4162232116.8495955 258662.6820712957 4.467036595848679 0.0002775913211284681 105545036.03024603 6558.7969477159495 73658 5648 29997 OG_20210218 0.0 0.0 7.569157461670743 0.00014516846615948562 3217756.2536664233 61.71317510373744 None None 464193 POLY_20200526 22340474.585054588 2511.0566696406186 0.03472661917695934 3.907468012025795e-06 3211210.675122417 361.32809039014774 34743 4990 346394 1INCH_20210110 100632869.7566267 2487.836128147675 1.2529689265238277 3.10931363318344e-05 57582717.77817995 1428.9478823722807 None None 25684 HIVE_20210916 271606346.7091834 5635.790618520168 0.7614399778715716 1.580097462125585e-05 4664280.606945196 96.79053062431605 23960 183 78839 OCEAN_20211002 302635740.94060796 6283.970132624137 0.6971524118563731 1.4475239169862373e-05 36435208.85497414 756.5180201776227 123552 3557 161636 NULS_20200523 22200013.18025847 2425.175567961772 0.23128161808111772 2.5309574919235728e-05 17367724.144830324 1900.5821520412894 23764 5184 694372 REN_20190401 18582757.05806459 4528.554741262901 0.0246203990926257 5.999815188081595e-06 797173.1887033032 194.26540516746073 6064 809 1519045 CVC_20210218 290383534.436371 5563.956574760274 0.4334563167807679 8.313235518331376e-06 74455665.07299162 1427.9812185522683 89652 9060 153842 CKB_20210325 500010225.1132537 9459.727289764935 0.020612311055833468 3.907107207497191e-07 46313268.96743498 877.8778201787833 None 2255 160288 BCD_20190220 144580870.9468065 36926.55606404842 0.7642891278078672 0.00019518099698534894 2574250.917676285 657.4015543615259 20522 None 2421830 STX_20200518 82000677.8030887 8417.969487076318 0.12216039225923547 1.2497415266596137e-05 882666.7105942825 90.29974626217867 36095 None 93144 ETC_20210624 5238025723.217837 155375.59778370152 40.8180350873498 0.0012116191751019314 3201036935.13496 95017.74699637681 472339 57571 101857 POWR_20190708 45661192.93395365 3997.1794868243164 0.10896360843596788 9.535222310062118e-06 1015242.2155385473 88.84214062540705 84673 13176 757422 GAS_20190706 42456480.82839732 3862.9108203345736 3.0467259906453172 0.00027720693204478765 1678811.2193582247 152.74695165550224 323693 98043 188893 HOT_20200322 58304803.6564235 9466.846236364681 0.00032659945570310146 5.300087568500038e-08 5547169.079399303 900.1999655755351 25108 6920 515134 PERL_20211125 0.0 0.0 0.10187620650759112 1.7810853538658742e-06 29916402.230789762 523.0236546906532 1358 716 1338225 XEM_20210310 6377585323.853515 116478.38512628645 0.708620591618015 1.294204279324761e-05 1013694146.949007 18513.8185148177 249664 19119 34570 CMT_20210107 8254156.604777288 224.81787954061272 0.010376851150775003 2.811440442935324e-07 2170409.5324714314 58.80374545862884 280656 1628 1272511 STPT_20201030 14926280.118721599 1108.1041984019562 0.01626254065108761 1.2094020904611173e-06 1405019.2116901006 104.48755875315197 16134 None 1106670 CDT_20191203 6544717.771722097 895.4773115176928 0.009697310791872539 1.3272999261795633e-06 441809.93013605435 60.47184629232112 19385 298 193801 YFI_20210112 896873049.6484506 25242.460267237453 30093.962299945862 0.8466029040894334 1160069450.7774389 32635.05669957527 None 2602 18869 COS_20200407 10874961.507199328 1494.75757535399 0.005511883708319962 7.575592010700985e-07 3662398.728520423 503.3640043221715 10408 None 122996 BAL_20210930 205417933.3645166 4944.3166212490805 19.040934135074142 0.00045808275339569865 26751162.058756515 643.573780859676 100894 None None ZEN_20200129 92006347.49835639 9848.986215174376 11.078007108100767 0.001184763309726887 1931837.7286494467 206.60489191926337 52719 4972 46190 NANO_20201111 100623802.54492603 6578.619833770319 0.7510028475251112 4.916163464914984e-05 3387945.3094607145 221.77935817938348 98345 52958 262836 SUSHI_20201229 334466026.7550975 12325.347574537 2.620786323437087 9.6555639921781e-05 274512689.6590193 10113.662521679502 None None None APPC_20190220 5869555.979913273 1499.092534356318 0.05631101921374723 1.438335488550643e-05 692539.2060973443 176.89321401934754 25226 3415 1561264 INJ_20201201 16017624.977421368 813.6779835758531 1.1809642399039746 6.0119008887888e-05 6325473.737121921 322.0090828940392 31122 1724 163150 REN_20211230 553945620.2099904 11920.89385671736 0.5550076870971351 1.192804406756828e-05 48841437.00433682 1049.6842232189272 109953 1242 77574 BTS_20190603 187023184.82373905 21396.902974359054 0.06895848184123271 7.887751993496298e-06 19613189.57026587 2243.4364997748894 13747 7191 176184 SKY_20210707 18201592.16257867 532.7901254345633 0.8651810368812385 2.5320509018407944e-05 530731.5164285243 15.532462658363176 19651 4407 442973 LTC_20210704 9366084351.379349 269649.08479999355 140.31079503828755 0.004039540543328738 1749053218.2810442 50355.15183103276 188103 338321 73715 YFII_20210711 87125220.81698501 2583.9961705055425 2191.8103856104676 0.06502118851672191 20804501.138977677 617.1762846981205 17388 None 427366 DGD_20190528 72224562.69184087 8200.153699303599 36.10091484061981 0.004102163968948831 3760535.347499457 427.3114040066774 16963 3362 447437 QTUM_20190714 344494630.37729585 30267.69025226954 3.600620266175511 0.00031588867905630956 405716658.149492 35594.22814395062 179035 15365 346886 DOCK_20190124 5278575.820474949 1486.2533597938516 0.010273765732597438 2.8920394603437734e-06 2198642.227411365 618.9123098920622 103 15394 150082 KLAY_20210823 4575757189.297867 92740.6475094247 1.8285280909739554 3.7104005150946045e-05 50072986.381976485 1016.067707032328 None 725 64531 RENBTC_20210513 600061720.5105025 11634.020359353197 50162.70110793164 1.0000081788643918 10939902.185933629 218.09016301517013 77533 5033 67818 ZEN_20211002 871283949.1554661 18091.459708330487 75.32236050839637 0.0015637656018447825 63607567.87868799 1320.5550914009327 121492 7793 1549485 STMX_20201101 15305542.246590056 1109.7382319862745 0.0019197347657464098 1.3927381750671047e-07 333531.9999582689 24.197235849284134 21469 134 217902 JST_20211125 109821983.58316492 1919.7158408959929 0.07645972957327903 1.336859058350021e-06 292473368.41471344 5113.746465930437 55649 None 202325 SNT_20210930 282044639.0906958 6789.483989348517 0.07238421033772531 1.741303284443602e-06 28759518.55427661 691.8503895244999 136483 6119 164783 ONE_20201106 31490992.947232343 2026.2518482514822 0.0042872741967870985 2.75795962393514e-07 3505900.3906739713 225.5309849382467 79200 1518 134160 TNB_20190723 11481052.241165455 1109.6659811211625 0.004155807903452795 4.018316825456883e-07 429770.26457035606 41.555171108108794 15701 1482 578897 HNT_20210819 1882219985.4905415 41780.26455387422 19.995536853797375 0.000443906059979198 59035303.52963824 1310.5989192053582 None 46897 2626 SOL_20220105 52272480718.14088 1128644.921495296 168.0394848714517 0.003658803544724352 1361207424.18007 29638.2159973002 1222927 115294 2882 ORN_20220105 203374528.47116765 4418.736268605786 5.904175168138705 0.00012832121708375598 6686215.0370679805 145.31805490296006 None None 65758 XLM_20211021 9437837013.59328 142349.18250888938 0.3921031545962851 5.917586826353374e-06 742091570.1181654 11199.581660597923 653427 203680 33259 KMD_20210727 86660001.8823687 2314.7362565052476 0.6804230774408112 1.823521204162161e-05 6191009.188292044 165.91789585495593 114231 9437 217175 ATOM_20210814 4238351960.633295 88952.59233411499 15.234263167038538 0.0003193411797557311 210365683.69584915 4409.693128900606 170049 33292 54848 SNGLS_20210207 7679084.527132406 195.79203886719938 0.008650816225477465 2.199910601622011e-07 530393.2257354698 13.487948997085025 9080 2114 2522161 STPT_20211111 163421312.40441707 2519.5234026877074 0.12412891400422887 1.9114260022610053e-06 18164868.151532583 279.7156616652531 None None 575354 WAN_20211221 125451352.96328945 2659.068816883946 0.6482239886162007 1.3753147792800415e-05 3673668.6223471495 77.94297710698933 131411 17427 243413 ZEC_20210314 1709976078.5983033 27869.04218058729 157.07055346634996 0.002560145514775239 1561358655.0210807 25449.107228517423 73487 18000 106492 CHZ_20210610 1298442387.4868593 34592.278561478415 0.24253774090090888 6.4675440762993115e-06 170301110.06627348 4541.272345924603 345809 None 25415 ONG_20200806 0.0 0.0 0.17205603878263948 1.4656560319178115e-05 9738381.574314674 829.56214710621 88527 16596 189841 RSR_20210704 319312732.20496166 9210.798130774676 0.024349187498342743 7.010118506550315e-07 23993794.261092074 690.7800977075325 76005 None 97085 XRP_20200315 6450069989.016672 1247859.1416446632 0.14740449415734955 2.8450416917559426e-05 2154086289.8254404 415758.37542994536 946691 210740 33270 BAT_20200901 511713717.8899481 43780.640482146555 0.34978355340985784 2.995968400800119e-05 158079084.8685912 13539.800212926539 121952 45080 16252 PIVX_20201030 20000559.078655012 1484.8179948019683 0.3094767448566538 2.301515577344899e-05 201472.84638448202 14.983125616778695 64893 8623 321361 BNB_20190515 3401435137.1144342 425867.8976713331 23.53717172417841 0.002944722334981846 379776002.63592595 47513.56239217702 966357 50978 978 ICX_20190708 168580348.21930522 14757.51872620997 0.3559358717904204 3.113918101062358e-05 23941747.99345609 2094.5526527821803 114044 25480 268065 ALICE_20210828 352502864.5393427 7187.377584669978 20.16695980949105 0.000411112949789286 369835761.91066974 7539.275748698019 105524 None 31647 BAT_20190622 417020809.7975834 41205.37286077842 0.32811524539568415 3.2416791781799735e-05 39883012.10062126 3940.3207166973184 102728 27951 47977 WAVES_20210221 1239339534.693025 22043.18455263175 12.39339534693025 0.00022043184552631754 189619011.80831358 3372.6083570904743 161739 57584 101997 ANT_20211204 182041299.30813876 3390.71997012125 4.80151470674004 8.934727564294671e-05 28505909.36982412 530.4420578663088 93035 3382 60042 POE_20190830 6211736.623985231 653.971809037934 0.0024654633043347937 2.598051576322861e-07 405849.3035470576 42.767516392399145 None 10745 737221 DIA_20210823 107577657.67517737 2180.6244885865176 2.21391993897043 4.493100106964022e-05 31878248.60774413 646.9617970733399 None 404 452698 BTCB_20190702 0.0 0.0 10600.923082766 1.0 16861.28644226884 1.59054889 None None 49193 BRD_20211230 60359396.263149716 1301.4379208186149 0.7066666685205601 1.5172426101533482e-05 1846615.1928602129 39.64759312944079 None None None FUN_20190123 28914933.32011851 8095.546866042033 0.004922679875853579 1.3782423497330507e-06 6337210.368238758 1774.279849379714 36537 17873 460903 CND_20210210 32996825.480085675 709.5785035761011 0.016236734357180944 3.486028782215526e-07 360564.4263941581 7.741322488885621 34126 5937 421392 NCASH_20190821 3428053.6655812277 318.5749092946227 0.0011826469976058823 1.0992584509537874e-07 584931.9305043458 54.36883272365037 59834 58946 801228 DEGO_20210727 45226460.07738367 1208.442525247421 8.317911670061626 0.00022291848715293904 88379281.39674555 2368.5483191095777 None None 198268 NBS_20210611 0.0 0.0 0.017041018892102695 4.641457835537575e-07 13928570.491240991 379.3721082861315 None None 498254 IOTX_20190401 26642516.977623194 6492.3865908064045 0.010551954942740574 2.5714333564733092e-06 1484693.529770041 361.8088294830434 14615 1673 990626 GO_20210128 7715065.177043113 255.03611566162263 0.007283281252834101 2.3957435398493545e-07 287599.6382644559 9.460227492477639 13544 684 751826 FUN_20210805 193607790.40728647 4868.105474693898 0.018259470570446138 4.5918541229485953e-07 15811532.295069503 397.6251637698814 5530 355 131817 CVC_20191012 27173164.776719335 3286.4276287103153 0.040556962353312444 4.9051158637467395e-06 3585542.0629391223 433.6493226450294 None 8145 114719 DOGE_20200320 219296170.9164783 35484.69922152921 0.0017714853852455325 2.866471667428875e-07 223278152.6602397 36129.03069294742 138927 150603 105974 BNB_20190131 886231112.9762447 256256.6390444799 6.135494736278872 0.0017740984681905035 41083004.985950395 11879.285916956347 909367 47104 1123 QKC_20190914 30781839.483691365 2972.6717058868803 0.008091642579906673 7.816776347043346e-07 5145433.216844243 497.06472162519975 51089 9238 312593 QSP_20190205 0.0 0.0 0.014403139880832763 4.157599053333984e-06 83486.48583237384 24.09914347390131 56823 8606 722611 TNB_20191216 5840124.893033495 820.6410074971233 0.0018853971266836972 2.651679524607123e-07 717260.7063864702 100.8777144089349 15366 1458 1915405 XEM_20190515 580691839.2586488 72657.67118654498 0.06456426326673095 8.07732088186744e-06 50212573.354333505 6281.850775740978 216671 18432 133593 OCEAN_20210204 258110853.99076617 6887.348284080357 0.6186499014694881 1.6493235753622993e-05 60382951.69865545 1609.8123599469657 41243 1519 65645 SC_20190826 86246315.1458119 8543.151164988414 0.002050051256320722 2.0296331404627573e-07 6872528.384258951 680.4079324580905 109181 30693 198456 FUN_20190811 13784529.492680203 1216.5784899625928 0.0022922520798510176 2.0241236434726394e-07 131120.6644998808 11.578326812088745 36035 17456 379326 CTXC_20200605 1143452.501656975 116.98979125651726 0.11153750497075339 1.1409199043086035e-05 11164274.84386554 1141.996442351653 16435 20064 552232 CELR_20211216 378800501.0403946 7764.470364659653 0.06739595261609806 1.379104875204208e-06 79911527.55847745 1635.207649169544 96532 5289 40279 EVX_20210429 25595107.285420682 467.860028381579 1.1831082622597602 2.1609177734532955e-05 1190392.9540032765 21.74223081483709 18107 2819 782921 NEBL_20210723 14336170.709775623 443.2618762930046 0.7933458927553884 2.4505163366114012e-05 1240055.2460734344 38.30328821958828 40389 6108 1825448 LTO_20210408 221329564.69574857 3929.378797585158 0.7883315824796248 1.402128376417183e-05 36582754.287549846 650.6617141067888 7272 3379 178145 GO_20211230 38620603.37176461 832.7125370149364 0.03465607152958624 7.449987104909976e-07 1524088.4936251696 32.76320460775765 25123 1172 167701 BEAM_20191203 23997732.437079534 3282.40760634362 0.509755031795262 6.977169553424842e-05 26172957.409842346 3582.3709462937068 12072 1402 312343 GXS_20190421 78429302.45044085 14769.889826211918 1.307170142233546 0.0002461726504821068 11817431.833861426 2225.5163443853585 None None 722859 ADX_20190813 8465731.951750431 743.6126245103934 0.09177543879472261 8.063043863537369e-06 232499.0114923593 20.42648613301722 53917 3847 708738 LTC_20210616 11767803245.935764 291379.2449052777 175.94146679833224 0.004359208184738773 3395011250.339102 84116.38881425258 186443 336588 76492 VIA_20210212 16933978.85616456 355.1330854346718 0.7303337291520758 1.5296173129590014e-05 1815198.507894227 38.01767539007088 37796 2140 2708625 XTZ_20210401 3680545418.709184 62576.11224731152 4.800897614784022 8.167659792464528e-05 403688417.687047 6867.860809346694 97788 40390 103293 POWR_20190627 49064790.48604217 3774.811399766899 0.11733006180606798 8.99721202124585e-06 4007160.326932518 307.28076427785646 84681 13187 724138 DIA_20210314 75666623.86578283 1233.388616752494 2.9420008786360436 4.795774544637694e-05 73673498.16484106 1200.9564296158937 27881 272 245646 KNC_20210310 447910364.09320956 8194.829880707584 2.1908014868296637 4.005090597385557e-05 144504870.20825982 2641.7505211074395 143978 9985 95381 IOTX_20200404 9477517.180054512 1409.3609666667737 0.0021777638946341776 3.236794646260086e-07 1576348.3474839258 234.2915090266934 22543 1812 530142 SUN_20210428 0.0 0.0 0.0004244309723335705 7.7e-09 23.430622027910836 0.000425076870858332 52 None None THETA_20201101 608472932.6886859 44097.63151259261 0.6097599342444708 4.423673893398575e-05 15619854.579312166 1133.1860137186766 74754 4501 75769 KMD_20210107 71092941.24500792 1939.6134724322903 0.575815488032676 1.561759458930449e-05 5590725.641340134 151.63483501424105 97138 8409 276744 TFUEL_20191019 0.0 0.0 0.0032949869248349263 4.1408004545039565e-07 320716.983273752 40.304409710931466 69700 4024 413739 AMB_20200306 2484373.9189957185 274.4048587871466 0.017191776469582733 1.8978007360912161e-06 386859.32522888883 42.70541287470311 19158 5514 509552 VIBE_20210117 3601894.1795922094 99.17980736 0.019542318113464328 5.4e-07 149685.07680910957 4.1361491 18460 None 1420135 ZRX_20190626 202351629.0510964 17139.078532579766 0.3387303759356755 2.8650761733026043e-05 41955824.590539746 3548.7408837655 150819 15962 211751 BEAM_20210708 40975520.59763258 1205.9040186684867 0.4452756167684283 1.3105377827543855e-05 8705929.859218998 256.23343351517286 21551 2513 188205 LUN_20190726 3855576.423650063 388.94980670863873 1.4241510758069946 0.00014387613403631392 157052.0135036216 15.866319893566075 31129 2208 1689451 SKY_20190719 21378751.915255792 1991.9835699626176 1.3294234143026649 0.000124056724720803 634886.7759269795 59.245213483294336 16332 3786 462705 ENG_20200107 31516647.764680233 4061.9933089843735 0.4007339260000083 5.166347619237422e-05 2635512.005095523 339.77585349228997 61313 3577 347348 AION_20200310 46145112.40104214 5828.434978409425 0.11550741169514256 1.4594585834663415e-05 3570961.1942950157 451.1978833006995 447 72548 246428 POA_20190614 7912507.568569394 962.2006547990917 0.03603311188534686 4.3797021699484816e-06 3325405.9328920096 404.1917785671287 17625 None 614936 XMR_20210304 3939259752.57236 77479.31457808496 220.33415164662537 0.004348557884661523 751323969.270465 14828.276715568854 364161 202150 43863 USDC_20210618 23938162355.10466 630057.5587418287 1.0055552192686517 2.634469769046852e-05 2652255645.545244 69486.85844477739 None None 36517 OAX_20200807 8382406.516705478 712.4674802989964 0.16018918908147795 1.3614338980451861e-05 2633290.0974859693 223.8010206968853 12222 None None BCPT_20200407 1841641.213406858 253.2099050972004 0.015883904334094444 2.1798623539900246e-06 62115.48636984196 8.5245546365297 10649 3166 1858149 BNB_20210217 19173445845.066593 389865.6708119113 129.7750465728749 0.002639138626893216 1815199476.0838852 36914.36203923208 1754321 155150 283 ELF_20200501 32508197.642532345 3756.6711742364932 0.07050021124748099 8.178959559519782e-06 33449586.90539436 3880.595727883556 None 33416 552122 BNB_20191011 2732071806.841688 319075.03271735134 17.565446473346064 0.002051445131911405 216512836.1586456 25286.24617700228 1047271 56789 1637 AION_20210115 36974339.9053035 946.7032833418974 0.07629874050376653 1.948605078239358e-06 1505969.7223920394 38.46118860353899 67887 72530 529270 TFUEL_20200625 0.0 0.0 0.009218466255799699 9.917730898439723e-07 14285588.511948528 1536.9218550668409 71594 4269 93022 POLY_20210420 340579572.1085108 6085.723044875123 0.41636325795746976 7.440195912333304e-06 26853714.87794958 479.86198553161756 45156 5488 167143 SKY_20190708 23646208.556528445 2069.988401749389 1.5896440954489184 0.00013900391492747656 308430.8905761432 26.97025164148117 None 3783 456375 ENJ_20190414 143663856.82034457 28317.905631868194 0.16494880879256155 3.2507233309667164e-05 57276725.672842264 11287.792244698225 44662 12237 18229 XLM_20210127 5774444068.827668 177188.09747120456 0.2614446212193328 8.026731832293617e-06 641152106.8945385 19684.306381025515 336427 122634 30260 QKC_20201201 31784199.69447251 1614.9544101710899 0.00539986988938222 2.750643117019884e-07 6128542.792442936 312.1822265114537 63781 9215 103025 GAS_20190507 34724532.63151915 6069.542805297586 2.4922624824755646 0.000435677056683967 1058392.5543571054 185.01957805042323 320698 97575 218328 MDA_20200721 8653868.568110786 944.6727068596091 0.4408741120796444 4.81266542893112e-05 243204.9958949736 26.548718643648296 None 375 1312356 GAS_20210509 218807897.73238304 3731.148966580082 15.722175964049024 0.0002676456842529015 21568892.828137536 367.1769793675342 391576 110546 84803 MFT_20200320 6058464.130653849 978.9241652330693 0.0006301091524114026 1.0189000350714911e-07 1754564.0308059305 283.71677282924486 18390 2510 872119 ATOM_20210509 6935286048.81555 118261.66076337988 29.356006937142066 0.000499740530928446 1774272732.7548506 30204.244036913813 135516 27141 41486 NEBL_20190904 7945955.088656193 749.5021421339403 0.5122162489901599 4.8314793070251586e-05 272723.1917998015 25.72461260891994 40373 6119 464857 CTXC_20200907 1033376.8761483454 100.35233821078839 0.10184735984810095 9.911948576974836e-06 5970177.443379795 581.0272539460337 16680 20066 535694 BAND_20191020 5282088.659669433 664.6965023158083 0.33810130870233673 4.253067761721462e-05 1461491.1583250188 183.84492368189805 7510 978 550778 NAS_20190806 43500981.05746219 3683.232179505608 0.9566383054425622 8.099029483767995e-05 15197228.960156677 1286.617990515662 24339 5118 652054 VIBE_20200113 2447505.4375135256 300.2307836242803 0.013079583394188195 1.604150122275641e-06 390280.19618003326 47.866052423516 19673 None 1894870 SNM_20191030 5312275.388377486 564.5230694845648 0.012139527707404606 1.2900391908278083e-06 548594.1997174246 58.29782134478122 None 9825 6645524 VITE_20210304 19744400.63964266 388.41712468591066 0.03353364895290434 6.618281947113494e-07 2297409.2153135524 45.342223138901716 None None 412913 BAT_20201228 312087469.12917924 11774.050249880618 0.2090787999076403 7.950275203055294e-06 130116914.6138377 4947.7291825351385 124885 48823 21978 GVT_20210806 16703374.539318899 407.24665049277047 3.821700813622005 9.340381195314949e-05 841677.2674197184 20.570910451989082 25826 5694 545801 AMP_20220112 2011845245.5016947 46930.32242800773 0.04187248673096121 9.787179079072418e-07 24394050.140307218 570.1809369982401 43007 43250 73148 ATA_20210828 299481506.1303353 6106.295524710945 1.7412399791231232 3.54959949774605e-05 750885648.7485045 15307.156702229277 69880 None 88669 PPT_20201229 17342775.02546888 639.5649139318872 0.4759800503118775 1.753157674095119e-05 1558153.0158858956 57.3908069345537 None None 1593572 BLZ_20201229 18286586.770558305 674.3706977023368 0.07223008822768817 2.6611182789158623e-06 14840901.716543159 546.7720696808962 43043 None 386784 IOTX_20210710 179876407.12518603 5294.278646975712 0.018905961331612587 5.563374375997769e-07 11635322.022147283 342.3875213700939 57700 3241 211014 OGN_20200713 23643615.357640434 2548.3526330345144 0.3153879277513148 3.3944820323445984e-05 7840167.670058387 843.8277418014223 64584 2315 159966 BTG_20201015 136161803.24952593 11928.803904782804 7.73375309898691 0.0006767356791607263 19642242.202417996 1718.77818530748 78276 None 247614 LINK_20200317 656900968.5147297 130150.39187960535 1.789497905028956 0.00035535815293250825 452772067.151706 89911.39080426046 46205 13664 84663 LRC_20200322 32449758.43964973 5262.853941495796 0.02841332758986848 4.610942293660136e-06 2396718.36107569 388.9417746697249 34257 6822 553678 XRP_20210513 61123682935.37894 1185602.7308640159 1.2870709951618722 2.5658138288280757e-05 10241877058.688364 204174.82710061845 1668907 307514 11015 SNGLS_20210318 24075514.930760562 409.39143515823594 0.02705800261874531 4.59990941532096e-07 2530579.1161049902 43.02030296324108 9325 2121 1233971 ORN_20210128 46144505.062512405 1522.9750294514677 2.734655512655489 9.025549721335088e-05 5055044.866540183 166.83841374314224 32722 None 133090 LRC_20210930 442111828.28036535 10643.469981477561 0.355369726720776 8.548915149360994e-06 31440129.980400216 756.3362416025645 95940 12467 300422 ZEN_20190225 29488600.778667327 7828.873532607335 4.981544782598811 0.0013297900304195507 550381.9502760295 146.92077705625152 24938 4248 306368 KNC_20201031 157397825.88165897 11587.690133598811 0.7967084611062373 5.8703872058340704e-05 15537762.188456587 1144.868980451874 124755 9186 84972 SNX_20200903 754674730.7830755 66151.32718466692 6.399614458506681 0.0005609996538730039 99050035.96245015 8682.872421662947 33597 1939 31979 PIVX_20200612 26832502.66053578 2891.9120219039633 0.42340851116178024 4.5520945680769375e-05 1153019.7059592886 123.96195640898411 63718 8471 263119 OAX_20200901 10646631.770560347 913.2228630178007 0.1912073758253734 1.6400956748049335e-05 840572.426219137 72.10073328245278 None None 1276581 TRB_20210117 44256596.87809075 1219.6712427409104 26.77589122737649 0.0007398805596569075 79141015.86558558 2186.8515454147546 12379 None 436665 BADGER_20210902 236723077.90185243 4867.315437897352 24.984161418292356 0.0005134937771653794 15300331.7315251 314.4642320054754 37323 None None CELO_20210708 389579030.36135215 11465.694662305155 3.096693141797167 9.115683896605477e-05 25812165.949712172 759.8284192528861 33985 None 78561 DNT_20200704 4652239.582422074 513.0516946536991 0.006192690871155453 6.832083954743412e-07 75223.02882526313 8.298977923443328 58019 6010 675973 REN_20200217 54135679.284033455 5430.463146315951 0.0644641953347999 6.479831956407928e-06 4707187.383343413 473.15851959332514 10795 871 519713 ALGO_20210105 326673376.554031 10441.421173868033 0.4218875371262912 1.3484739740989875e-05 310125660.71855724 9912.508556848903 34430 1718 343568 STORM_20191030 8653333.663097955 919.5610357927886 0.0013661211796674375 1.4517449967315877e-07 157048.53647657105 16.689180320693236 None 2544 1742887 OST_20190601 17780316.577022176 2072.6700662121702 0.027946021062005222 3.2585667498484987e-06 1029138.4247385481 119.99977543865302 18113 756 1020616 QSP_20210707 22501092.27009153 658.7692155646974 0.03154109788234699 9.2389516694652e-07 301544.11252934457 8.83276635538308 66314 8486 236881 BAT_20210727 816447664.0069536 21795.26581345968 0.5463012153845209 1.4637167308675292e-05 105889079.63946912 2837.1091463774687 208748 76666 27687 OMG_20201226 363924218.6631957 14736.692020385275 2.5964850923645506 0.00010515556317959591 149403815.69758502 6050.73467475711 288147 42630 172723 BTS_20210723 99875801.44340594 3088.1233003146112 0.03707623646759491 1.1452245986722747e-06 12317108.71731203 380.4554407757956 6286 7183 164427 FARM_20211028 93368842.41178937 1595.2848163621022 150.91685342989115 0.002576951042591822 7451673.907099373 127.23959191790746 56487 None 83423 ARDR_20190531 81787321.74406043 9842.077180336302 0.08187175738260555 9.852652648759143e-06 1655036.6671153125 199.1712639786533 68325 6548 1039965 KAVA_20210519 350433075.7498266 8187.452812786089 5.0322956759948365 0.00011747265112610598 37991083.53976647 886.8543483759942 None None 74681 SRM_20210707 187154634.2735446 5480.262039687055 3.7461248506787554 0.00010968526318165026 80835735.40555875 2366.842875200609 95222 None 25633 OAX_20200312 2190407.044755416 276.1670141339784 0.04197917730693266 5.288259597112568e-06 224770.13799321855 28.315057979725 12054 None None SYS_20190615 34608364.81255798 3988.5059037074934 0.06235948667504364 7.186735984282316e-06 1017786.1260811499 117.29667074918365 61603 4608 1053467 GO_20190321 18063388.428950857 4469.829304348971 0.02594521453232574 6.418301251300868e-06 1181150.5818766041 292.19185095532896 8370 633 816048 FLM_20220105 0.0 0.0 0.3933310827535111 8.556172461065906e-06 8315218.253245415 180.88181825883396 30365 None 31025 CELR_20190803 27606149.13482039 2623.5892875582485 0.008838767237099001 8.398043615666687e-07 6723571.67885705 638.831713715716 17793 None 493170 VIBE_20190531 8860006.470681485 1068.4991679801703 0.04740325336902687 5.709924628027102e-06 2100239.937318539 252.98288388570586 20591 None 1503271 AAVE_20201130 810942893.3148122 44695.64205043099 68.61749728160754 0.0037764709368274733 156645971.2714501 8621.255238294865 None 1638 15890 CELR_20211230 404974259.8724983 8731.771919792387 0.07222535261547003 1.5526224464693444e-06 74904698.07178052 1610.2201146934283 99457 5330 40279 CFX_20210707 224241490.2622325 6565.165320150422 0.2635395156907191 7.712784260515057e-06 5254278.866210601 153.77245887946805 36900 None 151953 DNT_20190613 11561030.110894324 1422.9857991434537 0.01870324621147032 2.297099497901407e-06 578602.2662367384 71.06290321098986 60652 6380 1082435 XEM_20200127 358689586.0469342 41797.063232402834 0.039859283021846374 4.6404515722490285e-06 19739083.006999124 2298.0408033024405 213359 18085 258081 LOOM_20190213 24469308.59327977 6733.928215787416 0.04025874962655458 1.1075322297183011e-05 2182796.027715566 600.494792814301 16820 None 436692 NCASH_20200410 652793.906706693 89.56952463815003 0.00022511283533231322 3.087354100545784e-08 974319.2271408569 133.62491999682697 57494 58255 716326 FTT_20200801 321308154.0315392 28345.223338043477 3.415969859431593 0.0003015998647162206 8865240.376034454 782.7221574295952 17134 None 11505 DOCK_20210519 48871540.21142636 1145.375278700174 0.08759275377822891 2.0474744822107726e-06 6286509.002709967 146.94670746196064 48167 15002 221112 BTG_20201014 141847937.73412564 12416.223551551177 8.101731938868769 0.0007090504600004358 21777031.813116517 1905.8905603201672 78277 None 247614 BAKE_20210819 420138697.1339699 9325.958735372013 2.4107527918146614 5.352842929460023e-05 73917034.10661729 1641.2561036025152 None None 12983 LUNA_20210916 14650488648.600058 303999.6711610314 36.47091189872377 0.0007566879061348695 810305175.7355071 16811.976855972287 133228 8166 14261 ETC_20200520 773600251.5058161 79253.28690408029 6.65627116828541 0.0006818435700910136 980988183.5668406 100488.76741790108 231484 25491 359190 QTUM_20210821 1434761968.390812 29198.54885671696 13.97081508621484 0.0002840478662789304 439469417.1014294 8935.079982962328 251840 16843 227670 POLY_20211120 593386036.6466897 10207.872958045951 0.6611565297054316 1.1367203367215922e-05 28414904.04128656 488.534830081973 61614 8323 126524 FORTH_20210429 271757416.1034515 4964.703196922012 33.52661092500266 0.0006123343182137897 79009235.70732705 1443.0348056253733 None None None XEM_20200321 357781701.3022658 57874.121664038095 0.03976152426226232 6.412640125386694e-06 31834050.69792128 5134.116828937414 211903 18023 216330 BNT_20190405 42494118.565544166 8670.903037440223 0.6528348392425305 0.0001333737294316673 4704415.316365825 961.1089632826242 842 5131 158493 AMB_20200117 2226384.777634004 255.78818246790004 0.015296347919538298 1.7554695818925386e-06 363459.87368631345 41.71209728302821 19122 5526 758216 COTI_20211221 263228567.5822244 5579.396787978398 0.30199103432999524 6.405829196427277e-06 24945170.77364732 529.1365805154395 208989 9744 60051 TOMO_20210511 198908827.29794592 3562.5372568840335 2.453823189872172 4.391598262920054e-05 24277221.590294674 434.4885344816441 47724 2140 78743 BRD_20191015 18096705.5929474 2168.0484610521826 0.29750362995631646 3.564152194092052e-05 1263245.6273360976 151.33931895245263 None None None DOGE_20210428 35151669024.74555 637896.75999444 0.2717304884224814 4.93108870689426e-06 4324871046.880166 78483.36379864368 985243 1566783 11474 BTS_20190605 157515623.24632695 20559.41331259403 0.05816769098155008 7.58714462902716e-06 28007525.66613245 3653.181763696586 13742 7189 176184 CELR_20210427 331311233.00351673 6149.876322424819 0.05917276608999075 1.0977004703528895e-06 107643643.46279964 1996.8726471213772 47668 None 141780 GAS_20190419 45201880.43808684 8569.814036240796 3.2463290090499473 0.0006151061509657868 1608153.8415851698 304.7088933070856 320118 97674 201868 BQX_20200901 35901420.860360146 3071.614351022149 0.16128713979419534 1.3817326614850117e-05 619481.1392983706 53.07040130011099 None 57 203989 BRD_20210506 28239701.310235832 493.2898350179405 0.3491819071980922 6.0927025491835046e-06 842358.972073637 14.697905448947285 747 None None NKN_20200425 10377064.30295847 1384.194654603319 0.015954132251739948 2.1285617506578894e-06 1797083.247674628 239.7625018641235 12265 998 316185 BAL_20211202 223138390.66532576 3903.7909747764747 20.65007523741136 0.00036112197631634293 31158809.956142846 544.8954011868377 None None 2445426 ETC_20210201 861643740.9643141 26067.79949981362 7.407052335921329 0.00022396670140107205 778809315.5147609 23548.821515728025 266396 27019 152499 ICP_20210909 9731981634.032993 210064.58302431676 60.75489513689494 0.0013152868930236023 827321113.1650605 17910.731538846572 258604 23007 25073 BAT_20210603 1199843828.16051 31886.164073969034 0.8028911034334538 2.1321979981809295e-05 203747395.83724776 5410.8183249381855 204331 74204 24707 ARDR_20200314 31191964.904443685 5630.108640299107 0.031460700037938744 5.655287645614667e-06 2835439.9026117963 509.69076440722296 64613 6383 1029538 KAVA_20210708 333687548.6394168 9820.753293019656 4.755453745871468 0.00013996279098629766 48209522.0082249 1418.9054531850918 111387 None 48831 IOTX_20210201 70373555.42698392 2129.41753450613 0.011611725846445846 3.502574715390929e-07 7839493.698341196 236.4714149506118 31791 2045 512659 CVC_20211216 232926315.75469548 4774.411756056137 0.34793590609082253 7.119662100286822e-06 19718521.7314239 403.491589650005 113075 10256 204035 AUDIO_20210107 25762603.01843664 703.9477936762563 0.16806473598372423 4.5534429366908725e-06 2035321.8628550807 55.14376294386636 24207 2372 55662 ENJ_20211221 2170049368.116251 45996.399955488625 2.315367078369371 4.912763061617361e-05 153878330.4696943 3265.001843453972 425865 43463 15146 QUICK_20220115 104118553.57277468 2416.028658530428 287.0058075686234 0.006654358036820687 21339414.356524304 494.7638677674905 66819 4645 4256 NAS_20200113 17586544.522667993 2157.3042310261408 0.38736868310507633 4.743233822110158e-05 4239519.792090172 519.118724470889 23857 5036 927832 WTC_20200318 5237791.777268799 964.5255833319884 0.17940564418931004 3.3355180530135906e-05 7345211.764868961 1365.6251761553042 54880 19432 966319 SNT_20190929 43885238.17510253 5357.294089610363 0.012384771822544877 1.5118720473011907e-06 23703721.187220763 2893.633729669807 111101 5701 299805 ETH_20210828 383644799228.1656 7821839.837531791 3267.539434750998 0.06661032640830163 18470749435.075993 376534.904457893 1527414 1079943 3885 ARPA_20200320 0.0 0.0 0.005731347259728344 9.28450765034886e-07 2333311.3558744616 377.9852476656445 13991 None 1589260 STORM_20200308 9146771.173135938 1029.0702654405593 0.0012304184986233382 1.3824256138332624e-07 1066492.2339589451 119.82477367080256 26121 2526 826076 WAN_20200903 67590395.23599516 5924.664186328072 0.5447772540875349 4.77311125641309e-05 11441689.949726203 1002.4731884758818 104657 16056 459215 PERL_20200621 8095612.205533008 865.3526312134225 0.02298684976316875 2.4567960220766003e-06 2929997.1164713637 313.15318691370135 11851 481 799656 KMD_20190629 150987993.0738872 12199.439623503922 1.3134534916288954 0.00010612490816824887 11139372.964064853 900.0432374633841 97410 8416 339259 PPT_20190723 24928587.4485192 2410.409869402369 0.6879138504132323 6.653965876911537e-05 1217643.952443459 117.77872047378426 24130 None 661854 RENBTC_20210902 749937530.7943516 15419.631045044829 48493.539916412 0.9966766769913252 2177739.819766094 44.758590333010105 91602 5747 119029 RVN_20200501 116395585.22567393 13450.759240296482 0.01915661301710898 2.2224211869989666e-06 25508043.790927127 2959.2713967351 30574 7655 223095 EVX_20191019 7318750.747404625 919.6068739927842 0.335722511348836 4.2183801559302025e-05 312390.93986553565 39.25217097675954 18185 2896 495281 ELF_20201106 38366241.45512331 2469.078689265353 0.08335517098281883 5.366122739631003e-06 7910046.888957861 509.22194726387494 82361 33346 424990 CTSI_20201224 8972510.935100667 383.76823669931196 0.04454852413758917 1.9106835369877253e-06 3892685.4724440053 166.9570471941689 None 165 590727 ROSE_20210805 119234417.70327374 2997.7635758145943 0.07938683390131608 1.996403779349484e-06 8156252.098546367 205.1117510884281 None 1701 217823 XMR_20200324 776692147.6277378 119817.12559453966 44.39554833068499 0.0068487199290260614 160481263.36405382 24756.789091779585 320119 167181 83083 FTT_20210711 2623925030.7617545 77812.70754339088 30.24073579742333 0.0008972036714012993 37866306.15659667 1123.444519792369 150469 None 2913 ADX_20190220 10138562.51287382 2589.662639527493 0.11647579843375573 2.9751064140505343e-05 1193744.8100449382 304.91465942808 54271 3941 833344 LINK_20210731 9902916406.285923 237357.76969073346 22.34272877677846 0.0005343711233129593 1753895144.9446127 41947.91639556998 408847 63153 29001 PIVX_20210624 35523600.354742825 1053.7634676499033 0.5425773522054715 1.6094883019142102e-05 452520.3489948734 13.423453911684296 67531 9828 321075 STORJ_20190903 22933928.141670134 2221.7420235235254 0.15798657488312987 1.530398533176766e-05 3845632.841526963 372.52221362245086 83558 7791 165970 XLM_20200801 1982030589.6397982 174877.43787149037 0.09674737768074412 8.538312779720196e-06 146570975.49744016 12935.428982432588 285907 110336 56657 GXS_20190915 34603303.78417255 3344.1054095015047 0.5323585197565008 5.144777553079238e-05 3353811.2992418306 324.1164074446502 None None 606832 JST_20200903 86772581.6057232 7605.917735154535 0.06077087325207551 5.325687653058117e-06 497165500.9040475 43569.36189987547 26396 None 173233 RCN_20190205 5078327.124780339 1465.905921986108 0.010144266225676423 2.9282359267208393e-06 138122.78140567878 39.87041367141845 18126 1101 1863788 ORN_20211221 171222851.07941094 3629.242198579212 4.991139882235487 0.00010586628772752999 11593689.353406688 245.91193231827847 None None 62828 RENBTC_20210401 697869547.2367967 11864.633945201946 59657.00314022542 1.015175932316443 9788940.46901763 166.57720374700642 65969 4602 61660 POLY_20210430 307977612.8680149 5746.983186317669 0.37435864318980683 6.98404306305541e-06 5414514.170072405 101.01329518425567 45480 5507 167143 EOS_20210723 3423478134.1957083 105850.95364251667 3.5658255448740293 0.00011014633670807951 911963014.1616386 28170.02232976923 None 91694 52079 QTUM_20190512 249141161.9853294 34204.76672024205 2.5843314775600845 0.0003551535188480136 286485830.3230687 39370.510951402226 177299 15280 401038 STEEM_20190703 108041556.8407959 10040.66645712075 0.3459440536915843 3.2058913381366394e-05 1858383.3707875705 172.2178799655424 5842 3754 330897 XTZ_20200801 2035409549.908526 179590.10100661954 2.835769838295453 0.0002502671434729983 112365374.76567017 9916.658604698543 69098 27903 66649 NBS_20210117 0.0 0.0 0.014943203068485464 4.128521515073535e-07 4146191.2896621535 114.55134395570794 None None 755646 SYS_20190512 32364208.601021476 4447.673477334212 0.05853577229833257 8.044318498131031e-06 973829.7617567065 133.8292203031745 62195 4598 1307286 NPXS_20190419 139433356.99646133 26435.13783779707 0.0007138952859116983 1.3526310928956198e-07 4173154.8068781146 790.6956466369427 59226 4274 161982 AMB_20210508 13506688.659285989 235.7097720145466 0.0934207347928561 1.6302259981994377e-06 5988508.640308283 104.50166654671911 25650 5612 453287 DOT_20210930 28251846107.374012 680024.8023778152 27.327637141304375 0.000657442496081536 1141653463.512733 27465.656793923474 657704 30842 27536 MDT_20210821 26409704.608375695 537.4812495479293 0.04358838309333456 8.86297305700389e-07 4505330.183928556 91.60839930116903 34720 324 955933 WPR_20200914 4407202.692115618 426.8500994082047 0.007241895940989151 7.010271997551051e-07 161024.60096456972 15.587440916812895 32915 None None NXS_20210106 18135866.722599022 533.7186377173151 0.2668091281991288 7.822816253736278e-06 409703.3795438403 12.012461036618697 24182 3523 514648 ZRX_20210203 509179267.2309352 14295.743985208688 0.6810689410645989 1.9171152665682745e-05 97742985.90813434 2751.3304334733825 None 16597 76527 XLM_20190405 2277780396.352406 464542.53072296886 0.11825772021215947 2.4130426986190116e-05 319243675.54052097 65141.50779850246 267784 100059 69980 ZIL_20190411 199924273.62240773 37644.84282795844 0.022829110849209244 4.301566487846155e-06 20670212.330167796 3894.77685939722 59068 10130 183798 RDN_20210117 13649112.246456256 376.32961359881625 0.2046460236471692 5.654848730219606e-06 637924.304813642 17.62734198672298 26705 4383 1545077 DLT_20210127 4122310.0434557754 126.295126173851 0.05018366626398568 1.540000521720783e-06 128399.27382556368 3.9402252446 None 2529 6584935 SC_20210603 847776676.2591535 22529.88727601908 0.01772760794837951 4.708060859033816e-07 53694498.88832631 1426.0072159632352 137769 46293 44919 SKY_20200106 7224777.602264109 983.9172528597642 0.42495198395387085 5.78639034703012e-05 106155.64905785969 14.45476303642331 16320 3808 595131 POWR_20200320 25579770.68808809 4133.8352368684 0.05884185978553803 9.53209904376789e-06 6490384.844867821 1051.411213019743 82509 12826 249499 TROY_20210325 42090159.64106641 796.2665975371723 0.021706901944933008 4.120091318072865e-07 31925269.99622764 605.9594688927664 None None 609547 MTL_20191216 15101878.826047488 2122.081510566763 0.2687761255520907 3.780148695162828e-05 10015602.480490252 1408.6246153792847 34605 None 526043 BLZ_20201129 18372485.01170123 1037.891830103904 0.07332835270489592 4.139499876842379e-06 4712413.08270919 266.0230682395063 42745 None 240877 SKY_20200605 8645572.490516663 884.3577540272048 0.4803095828064813 4.913098633484471e-05 397536.47294999496 40.66410440113545 None 3820 485273 MTH_20200323 1744882.4100222639 299.0749598546056 0.004975383731529173 8.526389864049601e-07 127105.16161487173 21.78220254236232 19200 1928 1053445 GO_20200914 10655355.230422353 1032.0014206453923 0.010691242685010914 1.0359203207310186e-06 799769.7949000121 77.49312281586802 11990 680 742486 UNI_20210806 13185352005.618793 321818.17276025185 25.364984329625802 0.0006199298014314111 699296574.8443508 17091.072525465253 586444 49983 1884 ONT_20190621 918322007.9703956 96000.13386489422 1.4092330591200475 0.00014744904056176019 197286552.92841566 20642.230010695315 80447 16241 232873 ONE_20210325 1791171392.692416 33887.29280538383 0.1936048584609472 3.6698212463821014e-06 653759943.0634373 12392.158689404503 103744 9958 71714 AUCTION_20210304 44733640.96458048 879.7944220885197 21.109502243667713 0.0004166212624641355 5448268.924852716 107.52810045045734 22094 None 37117 MTH_20210707 7156716.992251329 209.51912970424578 0.020592267602024747 6.028565879137737e-07 220875.90494060633 6.466334693114043 21816 2056 662461 MATIC_20210819 8784898438.662943 194894.30850522337 1.3521133826117147 3.0052178861797094e-05 1054805606.0894014 23444.192732857537 589325 None 5701 XVG_20190324 110736250.0733657 27650.417557188794 0.007009415094954967 1.7502241052840466e-06 1662173.1170091187 415.0382617000898 305209 53284 418037 EGLD_20211216 5966270690.341388 122293.74521802226 295.59295446926404 0.006048590899087256 385378948.50809187 7885.842897815887 None 13883 13960 MDT_20200914 8441760.250738285 817.8181377162219 0.013867725486481625 1.3437183762939712e-06 2706216.3122047805 262.21982779229745 14035 64 538522 PYR_20211230 314615779.7940943 6783.542495579156 15.754438677701565 0.00033828439619231095 18085774.050518714 388.34358237147114 68230 None 44132 RLC_20210408 193822649.9328332 3441.034243142279 2.7203673687869507 4.838390375702146e-05 25356250.408323877 450.9811408090594 36490 4236 324696 MDX_20210725 712662015.9714335 20859.03939475791 1.2454520461835452 3.644762362013895e-05 57205300.314676054 1674.088746600412 None None 11841 KNC_20200301 114839872.18580832 13391.237591405796 0.6430467547888956 7.51845729205238e-05 99689368.32217735 11655.610616494363 102606 7028 154836 TOMO_20210418 255811894.2745679 4243.540948756086 3.1486874983888478 5.2320848128039405e-05 36834222.805421226 612.0638451109986 None 2046 79487 OAX_20191022 3538906.9452852225 430.90792479641823 0.06775482046781112 8.250030174326971e-06 165503.79470899655 20.15223848115008 12243 None None SC_20190804 115615061.30710155 10715.035286592727 0.002770820585714721 2.567460799979994e-07 8320390.148436099 770.9728900090116 109549 30766 197380 FIO_20210519 62326640.008065045 1454.7364141058194 0.26465042339675704 6.186185103656565e-06 5144152.41120701 120.24420217699812 76618 450 96484 VET_20210813 7165670298.080321 161179.06150281098 0.1073305397897127 2.413964232186211e-06 1000641586.9875308 22505.365247939113 398708 196232 38303 LEND_20190131 8474125.24794608 2450.3211668882586 0.0076115133725408865 2.2008941080155056e-06 204960.06113633505 59.264875308610584 11746 5964 411800 SKY_20191020 11570874.430567913 1455.6076040425887 0.7231796519104945 9.09754752526618e-05 233198.93148305037 29.3362563009574 16347 3806 1313874 MATIC_20210401 1804980922.5966039 30686.878385044412 0.35942530576763804 6.116666909417754e-06 336976081.7743096 5734.628073145967 3128 10001 24254 LOOM_20190205 24841614.839080594 7170.761041881751 0.041464816373580175 1.1969201349691879e-05 4455622.740760237 1286.156563240089 16808 None 436692 TNB_20190213 6881292.772345423 1893.773077532496 0.0027572154011400677 7.587896724172329e-07 372500.57235911966 102.51269710692053 15069 1510 1690668 PAXG_20210511 193103298.52381492 3459.1240201517785 1875.022881331831 0.03355721497204196 23105767.74541412 413.52306846313905 18577 None 44452 FUEL_20200502 1929908.0448709617 217.78252268781938 0.0019442425978537519 2.2e-07 29908.604594438246 3.38429629 1 1465 None DOCK_20200506 2845502.5834983047 317.2785339034574 0.005083227952592398 5.65829474995459e-07 392170.7096062008 43.65370760363116 42605 14990 414692 MANA_20190411 74400618.46255617 14009.302310211884 0.05635077289149568 1.061787284819652e-05 8480191.52460182 1597.8768474028288 44156 6159 117892 TNT_20190805 16114150.80631274 1471.6071337391859 0.03760998609851675 3.4341264545401083e-06 703280.537162424 64.21577214376865 17573 2544 649538 SNM_20200707 4086791.580012804 437.6014876012475 0.009339071488744124 9.999999990887772e-07 2148783.6223329413 230.0853594455008 29303 9599 None FET_20210722 181685940.3144027 5645.91086568516 0.26498688501015943 8.204860889610875e-06 26736152.796360955 827.8387604319062 68582 3013 163095 AMB_20201111 2543576.2633207426 166.2948420182689 0.01754128520577005 1.1483438636224272e-06 772733.7320837663 50.58717357611626 20145 5497 433518 CDT_20210729 11361616.538473051 284.14718107905406 0.016966473388403763 4.239357875069135e-07 334643.11770987045 8.361619435719978 None 337 581034 OCEAN_20210806 254999811.0278638 6223.8118642742 0.5872122895362454 1.4351690240356606e-05 38170680.581260175 932.9058565829413 118517 3320 135729 ENG_20200309 17118508.875534814 2119.0216483451136 0.2037663711906573 2.5311440298894616e-05 1253044.977980059 155.65067467534203 61372 3609 363885 FIO_20210114 14191257.210013552 380.8831870290648 0.06678910849763589 1.7871275570033326e-06 996949.5076852089 26.676144931448036 55395 162 541516 DLT_20190914 2739299.0830388037 264.622022996821 0.03414605534637569 3.2985803919941488e-06 214743.64738532665 20.7446856565155 14997 2649 9139526 DYDX_20211120 870187532.7854506 14962.410720767708 14.038648849880431 0.00024136519766146958 300128316.01433104 5160.078515620112 None 2302 13000 RCN_20200113 22553407.019507375 2766.5830519024635 0.044297394986863955 5.432869644475448e-06 3133373.154551653 384.29365657339554 None 1138 818164 YOYO_20210718 1653448.9904863508 52.31398326635099 0.00943539758795569 2.9911852338745456e-07 156349.26538995196 4.956543797990436 10091 None 1359216 QKC_20191026 17853686.766644612 2062.143750456639 0.004693531458342813 5.421178822201445e-07 4303728.8389725415 497.0944340186299 None 9232 305114 QKC_20210108 36996110.5582487 945.1626463565626 0.00579748255945129 1.4691149802751803e-07 4274031.757110682 108.30639016424125 63111 9212 114091 VITE_20210828 68957236.24410069 1405.9162502015724 0.09109940472683016 1.8571041622083913e-06 4615569.75074198 94.09055768002852 None 2451 442806 TNT_20191220 19530473.14159667 2734.473479137536 0.04545375498356452 6.361045207834256e-06 585257.5721216068 81.90412158113213 17750 2568 526741 BTS_20200610 61101763.92868231 6254.1920851605155 0.022545145856470453 2.3076530644664097e-06 10779653.47412421 1103.3727850693585 13121 6985 151831 BNT_20190801 31983947.039447233 3176.9595934883287 0.4593559493790317 4.556248054180804e-05 3564488.453760921 353.55357002674504 None 5133 154213 DASH_20210422 3002366842.25076 55508.889462433 297.5779488663942 0.0055017332451284115 1763057747.5586274 32596.0759517821 None 39628 49097 BTS_20190528 194339092.1492965 22036.09658255053 0.071797566747441 8.142414737140804e-06 40113299.13406038 4549.1669539922395 13742 7190 179069 IOST_20200306 65805579.745049916 7266.40702390003 0.005477284138404349 6.046375654101796e-07 36203550.98962413 3996.511113251588 191578 52270 110553 SYS_20190316 30652364.010847367 7810.992141098949 0.05575620024162187 1.4208080060341425e-05 301373.711893693 76.79759036863854 62417 4618 853485 TFUEL_20200704 0.0 0.0 0.008189775633569433 9.034528101745401e-07 3744568.694770459 413.0810490479231 71616 4280 81176 JST_20210527 107607801.73713133 2746.5351393670835 0.0753965467667864 1.9245623186177154e-06 264519198.42443728 6752.082206275467 None None 80562 GRS_20190904 15700348.183914095 1480.9352009668137 0.2141698652936463 2.0201570613869698e-05 445395.47943904187 42.01192458448581 38471 107004 None POA_20210704 7781973.488903914 225.4762289984499 0.02691270308454264 7.797732557570463e-07 40280.278667227394 1.167087673819918 None None 217721 CHR_20200907 21696495.34062473 2106.9699629108086 0.04921576770790248 4.792578072138803e-06 5696264.542241941 554.69606204816 27101 None 270101 VET_20190708 415716414.8898783 36391.802735804886 0.007498625959258599 6.56192159637875e-07 29415336.60540212 2574.086687140518 112286 56794 139851 BAND_20201130 137752935.8462 7592.713917801695 6.113761929710785 0.00033665318376984875 50509541.76375228 2781.2986899095267 None 2753 283942 SANTOS_20220105 0.0 0.0 3.3798409666497577 7.347078347475613e-05 1179507.8927976273 25.64007296603686 None None 517558 NMR_20201201 174505840.9404383 8875.981981857116 33.467762871712566 0.001704816476525545 12816044.07087154 652.8372744736521 21763 1954 2086263 NANO_20210626 621386388.5499408 19543.062144066036 4.666178991121234 0.00014677975820913367 61181061.413182355 1924.5171302456251 132737 106444 57331 CELO_20211120 1840957387.3831127 31659.661508674748 5.303899651183576 9.118781988383298e-05 41471004.42363913 712.9943495330956 74879 None 38770 GAS_20210819 133622621.39519225 2964.438186656473 9.669679346478972 0.0002149190570803345 36725834.32218379 816.2712950648607 410114 112746 110676 XRP_20200907 10779606840.159895 1049706.4208170925 0.2394869983145511 2.33209841101466e-05 1877164435.4658952 182796.2364542801 965306 218063 21508 UNI_20210511 19013078262.77166 340531.89393005613 36.454616478099474 0.0006524269191904501 1183918067.8499138 21188.537754752393 None 41155 1434 DENT_20190901 33394078.333515145 3478.7931127752104 0.00045631772961812116 4.754959740519598e-08 669259.2937698646 69.73871036103415 46562 10125 253321 TNT_20190603 13970382.539791469 1597.3792787590874 0.03260049582852767 3.727891860607515e-06 3325437.1448135898 380.2663042402062 17400 2518 874753 NXS_20191015 11730084.034641903 1405.2872146498473 0.19645786880885224 2.3536040359054873e-05 146912.07550179103 17.600356550782596 22057 3532 378466 XTZ_20200129 1078948465.4664934 115445.5629047557 1.5442419247432426 0.00016515255459982148 71986192.34692043 7698.731248981428 53129 19916 169583 GLM_20210107 110492519.19826658 6393.577954391452 0.12362424860737342 3.3480356263689695e-06 6480907.730051485 175.51823542592797 145991 20315 228749 ZEC_20190629 768528416.6393071 62040.533134008154 111.94087267790471 0.009041843292359426 728598683.1395855 58851.382505506495 58 15253 185342 PPT_20190318 50694538.5312168 12730.16032333505 1.3993478348623252 0.0003514146484313347 68231210.29975523 17134.72960916252 23642 None 550893 QSP_20190507 0.0 0.0 0.020373120102786493 3.5616106239602906e-06 237177.01982152372 41.46307434962025 57228 8588 818331 OAX_20200229 2539952.6126468135 290.18797649884243 0.04846192834777581 5.561968502783163e-06 336671.25174514076 38.639710837775525 12048 None None COS_20200607 16624875.76346699 1718.0892818860834 0.00851927715258283 8.80837083701318e-07 3731897.3385868208 385.8535776591011 12102 None 171431 XLM_20210508 14585595881.213827 254568.11406217713 0.634579519776639 1.107278803912189e-05 2994436248.0361013 52249.96527281211 533081 180840 25553 NANO_20210127 431350191.6422015 13235.926937714377 3.211512919220978 9.856648641904728e-05 30628937.545251332 940.0512569995152 103118 57122 248633 AST_20190411 7487514.568661791 1409.865365531734 0.04494142435166558 8.462268365562865e-06 1334472.251085198 251.27513152931962 31288 3590 447606 FET_20210826 393219788.18534744 8022.314273085148 0.5713837003083015 1.1658333961599234e-05 46506921.43777006 948.9126507368532 72633 3840 152406 VET_20210710 5055762995.044741 148805.60767598037 0.0774887343273808 2.2802453115826066e-06 559359332.1050042 16460.153925520004 389780 192365 29344 THETA_20200411 80193766.21189694 11695.76031696511 0.0802517676018703 1.1701074953985142e-05 3175023.760390076 462.9329933929357 None 4027 349819 ENS_20211202 1383918764.1039612 24212.56599487119 64.87322234122898 0.0011347726091940145 265778574.9532903 4649.040637772313 125710 None 5113 COTI_20210125 40187658.29485933 1249.4321155519508 0.07057975081307948 2.187712112242264e-06 9797140.651843008 303.6752471135971 36997 1327 233867 FIRO_20210508 223966572.72059172 3908.5160787026493 18.892497384968873 0.0003296554845436189 246267723.65876266 4297.12939035652 71647 790 205824 EVX_20190811 10677838.044938905 942.3918380148565 0.5054571293646096 4.464585045317595e-05 2882219.4210144817 254.57972549642227 18247 2913 1025264 MANA_20191020 39418186.369761616 4958.779231568998 0.029697139125281317 3.7356834113969266e-06 6659402.982362247 837.7043036391206 45860 6405 85405 MTL_20190531 21086934.198658627 2537.029104094471 0.4578115068758658 5.5113896648791015e-05 3651909.973852648 439.63724337793445 33299 None 932171 SUPER_20210707 91191530.07554412 2671.163008260645 0.4227037307371562 1.2377205330626339e-05 5240301.260331446 153.44147680067067 None None None MTL_20190302 13836133.963004064 3618.945035370493 0.32060666234829704 8.392275581172369e-05 1724106.2083189876 451.3061059131785 32577 None 580770 LINK_20191019 857242298.8033023 107713.17918381756 2.353657198192066 0.0002957427883488642 92678687.01216316 11645.303886454978 35828 11219 94194 TFUEL_20191022 0.0 0.0 0.0033966745537549687 4.1330898077459553e-07 554689.3934351322 67.4948701204571 69615 4023 413739 VIA_20190224 8251504.986861563 2005.3363853480844 0.3567573539805879 8.670157793237747e-05 135095.11355856233 32.8317255013569 40601 2225 3168832 DUSK_20210704 47435837.64432488 1368.3325577209716 0.1316793257120711 3.797800349814211e-06 9187736.875200147 264.98609504527076 28132 13642 479861 CVC_20190916 14557747.962211017 1413.040533380273 0.04247957087610489 4.123258325693652e-06 3857777.2764460584 374.4532241196813 88093 8144 118286 XTZ_20201111 1610505143.5443633 105349.09096446856 2.1481383217416505 0.00014061996129218377 108665315.12154788 7113.374521341811 75065 30243 118463 ANKR_20200626 15566868.437527878 1681.2690569175836 0.0030150556708650796 3.2561695510594444e-07 7874693.862238643 850.4432812273463 20598 None 5685 ORN_20210616 253038731.10095304 6265.386949968399 9.892026926890228 0.00024499364714401924 26454224.126757156 655.1859289385318 70810 None 59739 GTO_20211216 36125561.45359922 740.484409154682 0.054625656628107117 1.117789814414751e-06 8923296.147582378 182.59495922730474 14854 None 467835 QTUM_20200531 173770442.20632064 17948.595625243765 1.8049806520447957 0.0001862539208341265 404606356.9230717 41750.87432985064 178525 15081 120531 LSK_20220105 365595655.9879003 7903.060234991484 2.523786033281885 5.486191185251765e-05 8871405.873243943 192.84609733453425 203544 33710 231723 CMT_20200711 10033844.906742696 1080.614499663436 0.01254213872534503 1.3509142274262184e-06 2139919.836129785 230.49084494158166 283575 1636 1005584 KNC_20190509 35934501.261920854 6032.467071806987 0.2156724902971365 3.621012087238028e-05 4911702.607641226 824.6454838391393 96469 6666 236085 AION_20190915 25015529.668558374 2417.5312452227404 0.07250306693524407 7.006784665876294e-06 1030265.6778842796 99.56612952698558 67352 72562 168998 SYS_20200625 18081239.120404717 1945.2787365110182 0.030730719725193034 3.306179141872864e-06 685226.1450369261 73.72038170423308 57239 4457 992436 REN_20210124 552059643.0985837 17247.052205531596 0.6260425420555124 1.9534421462315873e-05 149124212.1293245 4653.126607667047 None 1003 93933 VITE_20200313 3571686.8769354704 742.1672486885548 0.007440776556498545 1.5527260372234662e-06 1334163.8221252633 278.410578359084 None None 441540 WPR_20200711 5261025.819459867 566.6642865392187 0.008641875182419137 9.3081669651604e-07 1581737.6598225445 170.36902202270488 32898 None 3997940 ATA_20210930 134157636.82300247 3229.1135576483653 0.7817677886506487 1.879908547077373e-05 16853690.725558374 405.2788782646341 71587 None 180234 QSP_20191108 8154546.169274373 884.520412506571 0.011424101896317075 1.239167834982858e-06 31580.792191738437 3.4255560955646 55925 8445 459848 TORN_20220105 83614221.04083738 1805.1599031623637 35.188732096861614 0.0007649305816901864 1939879.674512398 42.16898988429539 None None 86239 WTC_20200308 12274390.764068581 1380.9474756293316 0.42132784784200883 4.733791058324621e-05 11195597.141846716 1257.8712257954505 54980 19432 905715 SKY_20190130 11634222.917704972 3406.094951940281 0.9269282087311436 0.00027153252763440107 268662.3291281607 78.70141465235551 14286 3475 292447 ZIL_20210108 876128086.0307004 22382.989126284163 0.07604742036943146 1.9270847877563904e-06 318328132.61112654 8066.615526072277 116738 14278 39054 NEO_20210603 4094332987.582169 108807.97179717968 58.06683448044029 0.0015421267856408464 658405814.323195 17485.803233022627 401734 111726 92872 BNT_20210128 192646733.8472216 6368.303257047037 1.7162212182240622 5.6636951551413244e-05 95439772.37155287 3149.604320519384 91151 5351 94458 ARK_20201031 43567665.419640094 3207.4687429715364 0.28526889597364746 2.101946896385233e-05 1526700.7771208833 112.49189818698666 63062 21695 111509 XRP_20190601 18550333540.562267 2162568.864030516 0.43942583956115755 5.123800725123712e-05 2503864362.947346 291956.0226884542 923631 201411 40280 LSK_20211125 504208575.03291464 8819.071976266796 3.4769888433414593 6.078455717656487e-05 7849156.057544176 137.21858098027838 200883 33564 170429 XEM_20201014 1104831250.2549045 96695.05790704422 0.1227184393158512 1.07399094125451e-05 27672815.86688174 2421.8327519258273 211797 17836 146521 LSK_20200704 157470592.0355763 17365.948737298728 1.1197095194063444 0.0001235319120665584 2695070.2790228827 297.3335306624556 175230 31169 183844 ZEC_20200113 301683290.28556466 36983.80787988972 35.52815692585468 0.004350335040435869 181151749.2162138 22181.584141733176 180 15434 169401 ARK_20200325 23996506.61489007 3550.016715034764 0.16163857865095752 2.39207508274471e-05 1270310.629784911 187.99215077335901 62607 21940 77737 YOYO_20211207 3486936.632818231 69.03844041891614 0.019937449740357428 3.947448952900298e-07 818299.4061228167 16.201646529144003 12444 None 986357 XRP_20210108 14783360785.307053 374514.1137454059 0.32539871330586934 8.243484854185806e-06 13896459827.555267 352045.8177336839 1051308 229455 14934 ETC_20210318 1457598603.5752082 24779.440059996516 12.539987017523492 0.00021279727579535363 1321075903.6440098 22417.99397571057 305010 31760 133346 APPC_20190904 4022861.930752155 379.07670994406624 0.0369273598451906 3.483172884633295e-06 273698.7717828785 25.816634182032413 25220 3312 1154369 BZRX_20210828 109730278.92013654 2237.0495785863395 0.3825555390362972 7.798574380925073e-06 8460829.071827473 172.477975373608 None None 206797 QTUM_20200523 163459671.31264034 17858.57318582606 1.6945105345291642 0.00018543341957274846 541415481.4807205 59248.09677768819 178552 15090 104792 ONG_20190524 0.0 0.0 0.4442334820119271 5.648003121882026e-05 11487847.411896752 1460.569738062994 80713 16171 231698 OGN_20210823 402621656.7818913 8161.131238016036 1.187791886220779 2.4103918562336945e-05 89326742.84612219 1812.7119405171075 118755 6114 109678 BRD_20210814 16954071.11450433 355.82428978521096 0.20114921671717545 4.214925756361726e-06 645541.2942109691 13.526816918161867 805 None None DNT_20200518 3324684.49723117 343.8130230362804 0.004431183592733116 4.5873131261566577e-07 109954.24362250228 11.382840148472058 None 6041 635978 ATOM_20190819 721486401.0066607 69911.57474953293 2.966712919733911 0.00028753795530286327 113030352.39901419 10955.059453103284 None 6640 115107 NEAR_20210210 922691370.017027 19808.771000045395 3.2856745768673288 7.054134634360248e-05 65836200.39543045 1413.4614081193604 37472 None None AUCTION_20210703 65152791.41973339 1924.2971348062124 14.259889786923479 0.00042112599117410357 594383.8952805805 17.55346715705316 44942 None 50364 GVT_20200301 4473788.498497424 521.6791309219266 1.0099302931679606 0.00011808033740293084 607926.9422591643 71.07838921547807 None 5614 171820 GXS_20210825 51612249.65865319 1074.0296365173606 0.7353653564741194 1.531232855255618e-05 26470550.090231694 551.1896316301221 None 27009 713331 OAX_20210104 5609023.053264535 167.80729472822887 0.09843219796755766 2.9844867251055687e-06 484280.2492276772 14.683487770202852 None None 1823390 DREP_20210710 0.0 0.0 0.4254340719253777 1.2509071790047993e-05 1386475.8465819913 40.766659382899164 4086 None 201937 BTS_20191108 79709984.28255327 8646.552371218366 0.029390673009522632 3.1880534354864533e-06 14290949.66514777 1550.162228730751 13518 7111 152147 AE_20200109 46620321.309450604 5792.78568967996 0.13577968754800604 1.692109468647095e-05 6656080.1960026035 829.4919900849203 25288 6354 371548 HOT_20200701 94580341.63505025 10338.66265124048 0.0005325930515061306 5.8267628873147e-08 10782417.244821673 1179.6359051249426 25394 7102 637680 NULS_20190807 37642875.04474719 3280.0091449299075 0.49754470514033805 4.335940655251935e-05 5401090.099312006 470.6874759662069 21331 5308 406668 XRP_20210310 22264238440.69771 406671.0818683136 0.4862369216972623 8.881439871282096e-06 3069391216.7494736 56064.46634666436 1249128 274047 10439 POE_20190531 14050852.31934105 1690.987404719656 0.00564984224682738 6.805476649142046e-07 420865.94779926556 50.695103598251784 None 10869 942503 DCR_20210203 849514647.1454946 23851.018077232213 67.37263196712455 0.0018970339468536096 16796501.782831237 472.94477208440225 41854 10266 288064 POA_20191213 2935754.0415552976 407.51085209381455 0.013464462684036612 1.870080694634341e-06 404027.8563338492 56.11547314994021 17595 None 470485 SYS_20200629 17430006.442733627 1911.7326124272897 0.029520398129015576 3.2344762249107695e-06 636845.8210951842 69.77760456562112 57211 4455 992436 BAR_20210731 65445309.58761413 1567.9276321895875 22.190187225757338 0.0005313830873391416 16327948.145586545 391.0014551587034 None None 43974 FTT_20200501 311468325.58471483 35990.65844484653 3.0855054642498496 0.0003579595573719439 7555362.379805458 876.5222439550344 10819 None 13192 RENBTC_20210823 683093062.9122715 13846.457463014416 49125.36212623118 0.9968387679529139 2106772.791848812 42.75007253456775 None 5654 128608 ZEN_20210821 857098060.2031415 17442.628210940955 75.12534421136964 0.001528109782800499 53632775.92368681 1090.933697916147 118419 7511 1506863 OST_20210114 9019476.741450354 242.20799551057496 0.013113014566457469 3.5172354347862853e-07 1089922.2266462836 29.2344148425446 None 731 741572 XTZ_20200321 1175198273.3388846 190170.2972241354 1.677161682033289 0.0002707349475340137 224722508.97270074 36275.713503469175 57337 22574 103142 STORM_20191024 7554725.392483194 1012.2915112109504 0.0011925478654556145 1.597948327962527e-07 447516.2888263947 59.96471304679454 26197 2543 1742887 IOTX_20210509 403576812.02988076 6881.859479234503 0.053498020718084106 9.107209074627346e-07 38823918.63584107 660.9170570555419 None 2913 209846 XZC_20190906 43261823.81565602 4093.251443697083 5.20803125736131 0.0004927619684702017 8433494.384854827 797.941695969962 60774 4047 177313 SNGLS_20200425 4210979.9131951295 561.5902898061662 0.006593738072820455 8.797205911422491e-07 30963.107556775918 4.131022946714743 8867 2125 2196057 XLM_20200621 1419952170.1670926 151780.90494644718 0.06991527701898961 7.472506386997424e-06 298371081.3798336 31889.737212949334 283197 109239 69025 FUN_20200626 23312655.04821658 2519.5247079606775 0.0038763380306855474 4.1893681455502035e-07 1837815.6350140448 198.62267474542992 34159 16789 229791 ONE_20200306 25946102.415851224 2865.8071617402015 0.0050882098036791855 5.620536289633998e-07 13614681.22490466 1503.9043759760823 71480 None 408073 REP_20200223 143772433.81669256 14902.368412883028 13.074254789409064 0.0013544311251854522 26930390.937449723 2789.8614710064685 129810 10109 295562 AERGO_20201031 10912514.720164025 803.4863815066005 0.041337359320596616 3.0458607775001114e-06 2822599.2134087505 207.9775867647343 11120 None 376777 AKRO_20211204 85852377.27809033 1599.0952120510929 0.03167198823000745 5.893569082636258e-07 16842358.342994116 313.4050243012723 49642 None 225950 GVT_20190703 12479886.651487835 1154.999002578865 2.817724969604158 0.00026053480604050527 1979534.023921629 183.0333047179742 21461 5751 196385 NANO_20191011 103570221.3639349 12095.828406663744 0.777272424013358 9.077661264293706e-05 2159805.512681425 252.2408133256923 98212 47767 240289 GRT_20210125 683754466.486257 21220.332863540996 0.5574040601006033 1.7270543701096168e-05 291696424.0405546 9037.888669014425 None 3315 38348 AKRO_20210108 26102419.96288985 666.8547573289339 0.011124965972430336 2.8191295096704753e-07 7500880.318516598 190.07656389098253 25317 None 214700 AR_20210828 1666686050.2238197 33980.78475331016 38.142043023158166 0.0007777989891482325 263934552.0111179 5382.198002107471 26708 None 98920 COS_20200901 30378746.4566363 2600.2568026942376 0.01012476959176447 8.684588931338475e-07 4937435.351021609 423.51182424496864 12868 None 229143 FET_20200421 4948714.375631872 722.6773055162752 0.014510318575644337 2.1193231589040447e-06 2207601.0634605577 322.433999985793 16670 370 956265 STMX_20210724 148954768.97077012 4456.177895482206 0.016154022837217976 4.82945811934491e-07 6416431.4709055135 191.8276789419318 68870 4645 85845 TOMO_20210131 104728598.57245375 3061.439076419316 1.313653670826227 3.8445324357686145e-05 18645585.317946553 545.6807919065225 None 1737 172672 CTSI_20210112 9888303.576670637 279.14915681534416 0.04762195205854974 1.3397000537628941e-06 3674531.4106955244 103.37186351390724 None 172 553409 LEND_20200223 37869814.53956461 3925.2999550364625 0.03358240970017983 3.478979237386368e-06 672374.093644232 69.65478452644315 43655 5750 199167 ENJ_20210723 1052710721.2663008 32548.896002199333 1.128581856218423 3.486068684690302e-05 124396436.2644431 3842.4729102203432 243429 34136 35760 QKC_20210519 154937207.47591606 3619.923925387453 0.02389490657473832 5.585155548197232e-07 7620983.908915777 178.13160486093642 73597 9477 323778 HARD_20201130 17363049.555850256 957.1488193661863 0.4963883509070118 2.734874228826001e-05 5620626.746464263 309.67099068033565 None None None NEO_20210508 8263817452.8435755 144210.98925782292 118.24774330119124 0.002063306735993384 4213887846.798187 73528.19543349175 390687 110436 84803 XTZ_20210115 1903925041.8475864 48748.7293341897 2.5403209112582066 6.475619694430193e-05 222775739.17385742 5678.853241108652 79615 32081 186076 NAS_20190801 42340606.483409464 4205.68467661853 0.9301954699759911 9.22639906115336e-05 11866886.580817547 1177.0497141949572 24351 5124 652054 TRX_20210806 5034227560.821857 122871.01348900837 0.07019135287493238 1.7155031867745242e-06 1408669270.7305741 34428.40925655792 1080707 114967 26326 MITH_20190405 25902010.88965479 5289.8571528279 0.05060882252847677 1.033934924582161e-05 4351127.907927023 888.9325774766781 60 1998 536282 QKC_20200410 10332582.343956206 1417.7284428123949 0.002779310954612223 3.8117404810556215e-07 2226958.016597736 305.4205218523768 49963 9195 784929 DENT_20190821 35469796.87189746 3299.315000093242 0.00048452141740799013 4.5069014240314824e-08 358701.42402306426 33.36554176242714 46544 10088 273311 LRC_20201231 223079623.37240133 7725.1554792572715 0.1794847379791199 6.224812374333598e-06 44823562.834191404 1554.5514996626252 44344 7289 275066 SOL_20211120 65296328677.09514 1123260.8459184596 215.83494421153327 0.003700173613300085 3291840770.3925467 56433.78277918844 970636 95715 3672 WRX_20201201 19439367.274639465 987.4987826419607 0.08134106100379875 4.140806134684688e-06 1855967.0013150063 94.48118145961499 42915 None 8278 CRV_20210804 560310712.280929 14585.462733089835 1.57268812665721 4.0941489311694244e-05 75572186.77061284 1967.3562892007496 145028 None 12841 NEAR_20210722 758602365.4078921 23573.022467415507 1.8315965135513914 5.6712158558249506e-05 30143381.431328747 933.3366899135804 None None None AION_20210324 118767524.36000831 2177.3487810302086 0.24035686088602148 4.409251052578467e-06 13889547.040299041 254.79821828892247 70969 72919 287574 ALGO_20190704 78485962.78952014 6545.730262122513 1.1151556799346516 9.291964266327365e-05 122166968.98685235 10179.485526342625 9974 487 350942 FUEL_20190803 3242414.128336248 308.50893114120237 0.0037869894443250556 3.6008672872540265e-07 269253.5621778779 25.602034499352506 1 1504 None SNGLS_20210708 7259213.798439888 213.6282378630651 0.008153089138295481 2.400313336943018e-07 71131.05024524686 2.094136414778913 9510 2138 None COTI_20210210 82344970.77781752 1767.9459843806271 0.1229612246047317 2.6400958848606103e-06 55442926.312760085 1190.413010877864 39140 1468 238618 FTM_20210105 50725082.88859707 1621.3196193281055 0.020048103986791865 6.407950953082149e-07 17356826.11757125 554.774109989888 28474 2839 142400 KMD_20181229 87141411.04154366 22637.37576631445 0.7836385241944565 0.0002035716374697318 2116323.257890653 549.773113141603 94750 8199 223521 TCT_20200801 4353344.678481982 384.1082550488892 0.007528143215577958 6.641307132045159e-07 577611.893396091 50.95676154549695 None None 695906 XVS_20210703 184160566.8516286 5445.602913664199 17.90382306574201 0.0005287393764628149 14200188.814919727 419.3628898188468 117465 None 10936 CMT_20200330 5308295.560993363 897.6998816960928 0.006431793160327362 1.0896609210368268e-06 5610168.521291046 950.4629961966422 285882 1639 911838 ERN_20210813 135403076.3715983 3045.652376723826 11.963904088930263 0.0002693848947187792 15719219.192563968 353.94133685577566 85463 None 80308 AST_20190830 4299807.065967249 453.3066549983674 0.024960800209730107 2.631489430935664e-06 1821149.888053342 191.9945130883228 32054 3582 246777 MANA_20210127 221494608.45769298 6796.534489720286 0.1667352597626792 5.117372755567487e-06 90706737.09462576 2783.9353584547525 58806 8225 67623 BADGER_20211021 272655954.3286432 4113.557101904843 27.567936160069078 0.0004175577293672978 20218687.146093134 306.24233335750966 38949 None None XRP_20190213 12518085053.862162 3443768.8155030315 0.3036888156008824 8.3575601968308e-05 496371470.82398534 136602.14780029742 911535 197623 28357 WTC_20190605 56313650.330581725 7350.227161129079 1.9419604956044985 0.00025330101462480223 6073272.063128126 792.1716117113667 56323 20170 895800 YOYO_20210221 4664634.62777578 83.76303241638958 0.026423256976329794 4.6986949127987527e-07 1129651.3343603013 20.087936103978123 9460 None 1496735 STRAX_20210110 53532448.907803975 1322.9103798025544 0.5351485882211872 1.3241333694247773e-05 2289273.2992423936 56.64414022535198 None 10288 230712 WABI_20190528 17297215.82749574 1966.003397297326 0.3296056534867581 3.7463013758162073e-05 1304736.6831214048 148.2965106741401 36335 8030 933235 MATIC_20190725 26256529.641490635 2671.038513052762 0.011973424158020612 1.2194721963597794e-06 11058273.883080274 1126.265750062362 20960 1034 191906 RIF_20210624 115710664.52718732 3432.3263421884094 0.15610219887014945 4.6319076534304556e-06 3539346.4401113926 105.02046724998897 43665 3347 412930 BAKE_20211028 338148339.2933459 5777.672063765838 1.7576207131941612 3.0011906731482284e-05 68648949.734042 1172.2016366591874 392761 None 20874 LSK_20200410 145163062.82000312 19908.6727588647 1.0439348114868199 0.00014317248575313412 3612993.961390804 495.51113802465176 177109 31335 155237 MANA_20210511 1770527099.5699852 31687.057841072376 1.3338588616036948 2.3872022580015055e-05 296135289.0661556 5299.922286250807 129455 31377 10949 ETC_20200223 1103057594.1553006 114267.45120048824 9.4829744289884 0.0009823560651243287 2070549065.8477595 214491.39699831908 230679 25263 366297 KNC_20200523 124006385.57797141 13546.71522638447 0.6851552189848694 7.498527528851945e-05 68344080.85145786 7479.7645482148355 106202 7645 111071 KNC_20191020 31067228.249191638 3909.5090453569346 0.18346664516791183 2.3078765264461207e-05 47927866.72376059 6028.975919474168 98418 6721 165975 SRM_20210408 288356930.9026484 5119.504864807615 5.710093205349109 0.00010161569163030524 252624319.97221634 4495.652535507575 52124 None 75869 CKB_20210805 293133442.3570252 7352.742684977105 0.010672982462220815 2.6836011738975936e-07 8797456.051493574 221.20211918898022 None 5292 118997 BTCST_20210718 101430296.38564178 3209.246395589529 13.918203579779709 0.00044037083852800673 5308578.751262885 167.96300346417235 None None 1251678 BTCST_20210704 135622241.18998384 3912.1545520666723 18.63525095753779 0.000537056330800021 1997526.746311938 57.56747722333528 None None 922062 ZRX_20200310 137662646.02882284 17387.70889453215 0.22097126497084107 2.788218242960832e-05 63154537.24661015 7968.847573913471 153014 15989 118984 MDX_20220105 322581968.17275006 6965.108206887081 0.3881508204000277 8.436061645761084e-06 9455453.260778196 205.5046193495868 None None 34109 WAN_20190524 48003926.74076705 6104.1894688647835 0.45224062137237625 5.7490093965624825e-05 5417412.432257046 688.6766359817 108900 17079 452673 RLC_20190523 36270193.79649436 4736.041739622519 0.5190839119676993 6.769188316517992e-05 1099965.0317703246 143.44251998511857 24932 3315 988035 GTO_20190130 14783868.260276914 4331.125193784129 0.0252498574353536 7.396602104467847e-06 3731187.6440006574 1093.0006417041463 16286 None 768333 RVN_20201115 95350085.84963249 5925.141452542263 0.012766063959808447 7.933108413544311e-07 3963377.1370862685 246.29283239733996 None 9763 228057 BRD_20210602 14337250.974175723 390.7454488952933 0.17557951991760504 4.7872248919715284e-06 652550.4558988152 17.79197133704515 None None None ONT_20210823 992598494.0662525 20120.20553589731 1.1311536962155417 2.295455701572115e-05 198938182.19139466 4037.06221444034 142844 19829 180960 BCPT_20190419 4766569.0883075865 903.1598562964977 0.05681707337593279 1.0765554327975692e-05 427408.62291374814 80.98429709285762 10437 1720 1630798 EOS_20200410 2549708469.0054827 349844.22064665216 2.7299256103067364 0.00037440099826931746 2496551805.43492 342394.4904055008 1485 70854 93233 MITH_20181231 31239131.445688408 8223.098868380224 0.0641980850156071 1.6891220410063683e-05 23766013.011794914 6253.098732665882 31 1958 464415 NAS_20211125 18522412.080270953 323.7764127177015 0.40666685085073523 7.109691230003072e-06 2486876.127702208 43.47765587050041 26296 5221 599059 FET_20210212 161402984.36321846 3384.876509550769 0.23312864148071713 4.882666538892159e-06 28245624.95493872 591.5788251568565 28875 940 293884 DGD_20191012 26715014.448630016 3231.684450286941 13.359056960442286 0.0016156960092453731 1427856.1413364194 172.69044335726613 17301 3360 556657 WABI_20191102 10807936.25313645 1168.3850095658909 0.18288564842790497 1.9770735604208624e-05 1460843.6074648588 157.92356027144226 36161 7914 1477014 SC_20190625 131213850.01455615 11881.094792594282 0.003184363025218127 2.8833632236575475e-07 4987616.045324894 451.616494882175 109542 30858 233756 STX_20200721 111062447.34145477 12122.248853759125 0.14633941419708485 1.5974688018631332e-05 2341095.1907847836 255.55839142787892 41652 None 98084 ONT_20210310 976359173.2386035 17864.323835233787 1.2128327147116058 2.2150828074312516e-05 601164856.3299274 10979.502131956782 105386 17261 202243 PPT_20190515 36562744.567115925 4574.187100536928 1.0092706003604892 0.00012626493486137837 3145991.039662488 393.57963419877956 24085 None 552418 AMB_20210722 3998958.047403133 124.26806748052297 0.028237149678526155 8.754204731512143e-07 393308.2074324885 12.193513189705781 678 63 487480 DLT_20210204 6797545.703937861 181.17906730906466 0.08286721088546653 2.209231436144037e-06 2011764.7682891386 53.633444648863765 None 2537 6584036 RVN_20210212 392588943.81114346 8236.567192548457 0.048318059557453476 1.0119776408721121e-06 86861810.89358865 1819.2413204311656 37559 14698 133359 ARPA_20200324 0.0 0.0 0.006324980427189168 9.76099740625768e-07 1968194.0240329935 303.74065160760597 14224 None 1589260 PAXG_20211225 323542752.09195507 6363.1824038670575 1818.3849457206866 0.0357592532814108 6080520.593027872 119.5758227544835 None None 32401 NANO_20190821 138510563.9856096 12872.080786305069 1.0389843440164204 9.664381906261634e-05 1623156.1142436252 150.98206890099314 98698 47452 238230 COMP_20211216 0.0 0.0 1.6266994380669535e-07 3.3286704e-12 13.80431715302018 0.0002824739520047666 2635 None 5058999 LTC_20200719 2760933544.5661883 301188.41881662345 42.43676622752216 0.004629398829578266 656970855.8446186 71668.51721943027 132049 214168 126072 WABI_20190818 6154669.599297334 602.1619814728296 0.10693100978644925 1.0461940758160275e-05 165121.3687245984 16.1551824952653 36229 7974 1534793 EOS_20190811 4145028477.7717934 365826.9576061578 4.069563299656394 0.00035935398928630975 2576829207.1677246 227541.3323546005 1261 67786 89433 NAV_20181231 11031981.610225322 2904.2573094653353 0.17241701434650386 4.5375324002844504e-05 92693.33517478754 24.394286911891037 48062 11518 680162 MITH_20200530 3008846.6800635196 319.18849696486376 0.004899271692452478 5.198311525788206e-07 6541171.0609597005 694.0428507102824 96 2098 1339097 CHR_20210110 13293034.229212184 328.4902400423772 0.029574738131271556 7.336832508682682e-07 6906643.474945272 171.33841100448976 36528 None 675741 LEND_20190905 4073504.9249880514 385.6783502224798 0.0036456845983138804 3.4514435232660345e-07 2567052.057602995 243.0280228355011 41682 5821 754376 BCD_20211021 439501022.9356743 6630.4896035783895 2.322493505686904 3.517764656280635e-05 5300036.47539515 80.27699945980683 35529 None 808497 FTT_20200320 70096235.83706923 11334.71191133216 2.428516799276371 0.0003929388802910681 12030712.129338477 1946.5933093874598 8309 None 15714 MTL_20200310 17576246.605814345 2219.9969872467946 0.27315598167415334 3.4466856646643654e-05 4602572.885957776 580.753234447826 34767 None 606546 ADX_20200314 4790754.633640061 870.174145532989 0.053395492821878776 9.598224785937157e-06 343811.5118672178 61.802597944040166 52397 3773 53936 SNT_20210210 267168756.63145515 5745.81356521097 0.06885615765035415 1.4784080025583776e-06 38440675.60740305 825.358317702222 119132 5755 152018 AUCTION_20210421 124345997.69498648 2200.988612286097 42.542116826949965 0.0007545078403842302 10154099.966320956 180.08854772786077 None None 33253 POWR_20210401 259896258.0030441 4418.719391638014 0.605636554527128 1.0306667373623218e-05 20055989.0704138 341.3109837122929 87693 13270 290549 VET_20200224 429145316.9412198 43134.479041126404 0.006861559531300888 6.895566329291465e-07 202255587.02531624 20325.79925074897 118797 60406 239259 ICX_20211021 1422927218.2203476 21466.28952470555 2.1088683377725115 3.193385662610409e-05 40051605.53522073 606.4874728774957 149462 33974 244294 NANO_20210731 584046336.7327924 13998.779777018432 4.384385517570455 0.00010493542143351986 27513511.09560356 658.5054782164442 134086 107735 67346 CELR_20190614 54121230.78495888 6582.061040104847 0.019045176554397348 2.3149323892199102e-06 44298018.75809486 5384.403662968818 15024 None 333919 PIVX_20201130 25413481.346449237 1400.983476207477 0.39151014842820653 2.154737137882237e-05 201114.4592198863 11.068647798427564 64874 8670 298063 XEM_20210219 3901521593.1988826 75483.4219627559 0.4347503108966515 8.409024092922822e-06 282278114.67223287 5459.877561186856 232916 18429 44148 KSM_20210616 3500294516.447951 86672.81828091046 389.35737894556024 0.009646900778844766 362841620.18474305 8989.933920956728 None None 86794 APPC_20191017 3562276.3602584903 444.87286579274945 0.032375369363799346 4.0427405735865466e-06 167289.88153060456 20.88963322748929 25016 3287 831430 ADX_20190426 13318624.18779446 2564.0500867212895 0.14489812372551697 2.7848284184590467e-05 1045336.4779830298 200.905481443883 54756 3919 1048935 MTL_20200927 19345371.80306003 1801.6587379207317 0.3000384067814233 2.793370527957709e-05 2142025.738083358 199.42352151095926 40547 None 414453 WTC_20181229 28093665.615790434 7304.568648020476 1.116300120938483 0.00029015532881436837 1776833.4999294968 461.8450708282593 54759 20495 551877 ENJ_20210819 1441086019.6953151 31970.712611654268 1.5386851523265759 3.4159267987827455e-05 135151835.37220982 3000.4109395254577 260289 34842 33629 ZIL_20210723 764764261.80825 23645.842985101084 0.06237233358253268 1.9265798662639405e-06 65956992.500541605 2037.3041457992108 308508 35155 41251 BTS_20211104 142550187.95317125 2260.7642717469694 0.052545025987220585 8.337231666653281e-07 10816146.965256013 171.61800055411524 7181 7460 219796 LRC_20191012 30906875.417734347 3737.997032166561 0.032120172782775604 3.884737907404223e-06 4065532.197676505 491.7011856970949 34056 2439 547481 BZRX_20210902 117410860.26081291 2414.1106046331597 0.40828893146609174 8.391469382672195e-06 17589136.44202647 361.50551373241643 29632 None 231741 VIBE_20190314 8166471.517869674 2112.165556845113 0.040791536670543395 1.0550269914953629e-05 707820.3500751902 183.0697334327892 20500 None 1228279 MKR_20211120 2670687238.0752645 45942.527964460634 2970.5639216456634 0.050925962335005265 86509914.16404602 1483.0856182627056 190557 31717 34770 ARDR_20210508 424817306.06414115 7413.629860444711 0.4264456204115148 7.441632082584544e-06 109935642.77275723 1918.4171840898423 71990 6830 None BRD_20210725 8852694.014784943 259.111176217842 0.10558864854849055 3.090494133758486e-06 129583.54067121481 3.7928051715912274 799 None None STORJ_20200407 14895600.947192883 2042.291096937201 0.10359459130690313 1.420354319822237e-05 4951037.551310315 678.8218848967182 82013 8039 134239 DUSK_20191011 10375086.410897827 1211.6925432605933 0.06225051846538684 7.270155259563546e-06 1199217.442040558 140.0550101194619 19826 13331 172815 VIB_20190805 4359117.230891663 398.094932193037 0.023880609534713555 2.180512184686418e-06 375697.2621862856 34.30450369198878 32506 1119 2890790 VIBE_20200719 2744662.2510193335 299.41051501294527 0.014667007647636624 1.5999988019825588e-06 62991.33956880634 6.8716175969 18804 None 2048051 WING_20210301 21002979.365947764 462.45724878102345 20.699541007882885 0.00045860080726601037 4251259.220839241 94.18715660562134 None None 327029 KNC_20200106 34925805.01183842 4756.053474979813 0.21111236919766668 2.8742860782076477e-05 16425465.536579976 2236.3202639096307 98843 6777 195958 CELR_20200305 13459764.603963654 1537.52824050383 0.003584231823505585 4.092322357783115e-07 5101792.965017152 582.5008661158596 19268 None 1113968 RLC_20190530 31210100.809066273 3612.199214940029 0.4462815616295127 5.1609634736700436e-05 1397540.5267716239 161.6167063973312 24943 3312 988035 LUNA_20210710 3429843177.20738 100950.12339737704 8.170379690204276 0.00024042811053961085 466777476.6600341 13735.766391661218 None None 21739 XRP_20191017 12231894810.885754 1527810.6343752958 0.283363566680175 3.539319764123568e-05 2014811545.3617702 251657.69922468206 939734 206370 26005 CTK_20210325 76372767.09161021 1444.9015495387641 2.1087720170572792 4.0025671564342226e-05 11601492.49445941 220.2028121026611 None None 213642 THETA_20201228 1354648189.87523 51023.1453618267 1.3511664329911215 5.137845153193573e-05 270426843.3267921 10283.050350830661 76995 4709 78073 WTC_20190131 26327615.755441725 7602.688071423894 0.9965799220600412 0.00028796015396933763 1091045.619428237 315.25586418466713 54527 20440 720608 CDT_20211007 80221485.63287021 1444.351613335974 0.11843966121986987 2.134795257688005e-06 3744002.576782331 67.48312907488888 22121 340 572218 CDT_20190830 10127290.135913612 1067.191795360684 0.015012752206954322 1.5820111565905392e-06 301485.44237684587 31.769879820494623 19711 298 224421 NXS_20210219 56241920.01497515 1088.115796446992 0.8277441121033662 1.6013285058595168e-05 919615.9746233348 17.790610081974624 24398 3636 477796 DOCK_20190813 3265048.7685159906 286.88590712521614 0.005895151706860944 5.180419267852787e-07 1129545.9290761915 99.25989670631911 180 15206 218357 DGB_20210418 2001373785.0295846 33224.325994229745 0.1437176288949383 2.390903219338468e-06 877109263.8130319 14591.691907853557 202767 32766 307288 XRP_20190714 14165785462.682325 1244617.229894971 0.3331680881382959 2.9255991020759142e-05 1742813425.6812415 153039.06871003867 934037 203569 39729 GAS_20190929 16029697.599728242 1957.0745516572829 1.1504076789736581 0.00014043611281354417 1677793.9755747404 204.8168387070496 323591 98312 189975 BLZ_20210217 64559217.21365223 1312.72295702489 0.24040530374179947 4.8853350878782685e-06 39114235.82036117 794.8499709223809 46423 None 375336 GXS_20190426 65217293.12293536 12566.187049548485 1.0876915380959882 0.00020938319664542574 11639085.23132076 2240.5514674027363 None None 722859 IOST_20191015 59165571.38721375 7088.525602041336 0.004931368822757047 5.907877161729903e-07 11732586.571921518 1405.5870235542714 193949 50857 96958 GXS_20210718 31237004.035225492 988.3172180044429 0.44417879566801144 1.4080207005399566e-05 6459136.75285314 204.75084232596177 None 27101 558664 MDA_20190608 19560691.272046383 2434.1156383903826 0.9928139772036876 0.0001236638394538823 565200.3545839867 70.40074728340748 None 363 1548972 ETC_20210724 5906072411.820291 176687.9268956835 45.685965524924626 0.001366232222693123 3187337815.251098 95316.87855931628 485169 58501 110949 CDT_20210127 5708075.895594313 175.15159833679613 0.008984504917058314 2.758374269809524e-07 251038.78779497524 7.707257543630532 19286 295 808485 ATM_20210727 25170083.22658977 671.9213963796151 13.287295112793975 0.00035609704002503894 17732912.025529884 475.23874721766475 None None 94240 ONT_20190227 558513846.4166728 146637.93149734745 0.9102534889025665 0.00023891631275361683 70878525.30407524 18603.648462232042 67772 11137 278128 JUV_20210310 0.0 0.0 11.146936970811112 0.00020378155081522532 6626639.139336872 121.144203474282 2348166 None 69992 BLZ_20190531 12305875.850473821 1480.8576355026034 0.05948966083129317 7.1594423519980975e-06 773363.5235195215 93.07250178275693 36624 None 841316 WABI_20190712 9159070.798001787 808.6386526619149 0.16088861256485415 1.413876136795677e-05 361240.76624202856 31.74554686532004 36445 8012 1160222 WTC_20200315 5270768.596866442 1019.7062649387025 0.1817634735700132 3.508201451395729e-05 6382443.141197578 1231.8699599881568 54915 19430 905715 ARK_20190405 94960617.80347572 19393.401750336747 0.6752541212255528 0.0001379539740349199 2014613.854974914 411.5842890898332 63608 21735 183985 RCN_20210106 22491802.492191665 662.1013661009581 0.044217348716460235 1.2964481259355188e-06 676187.1195406769 19.825736941661336 None 1128 5449742 CHR_20210202 16368069.417470658 490.30141768456457 0.03634300861864781 1.0881719316079515e-06 5948921.2427789755 178.12089218218463 39195 None 474695 MTH_20190312 5734009.9234116 1481.0521286315707 0.01905219040338449 4.933639640987926e-06 665821.6785421511 172.417142466786 18691 2016 959226 FUN_20210114 74685129.6679414 2009.1597500961914 0.012618409098459436 3.379470916163886e-07 6027111.316809672 161.41850565082143 34221 16510 359571 DATA_20211011 0.0 0.0 0.15672748203385353 2.8646941752776333e-06 2527487.237392871 46.19788356890691 None 4587 292753 TFUEL_20190629 0.0 0.0 0.009189694045773618 7.422827022771147e-07 2454027.61601058 198.22011932081168 70152 4003 231431 ARK_20210708 165100133.65394244 4859.121358011523 1.070107979576322 3.150455504382224e-05 6905964.661915999 203.31531768239321 73126 23412 123483 EOS_20210506 8302651766.528764 145030.3484137022 8.753633672404684 0.0001526943096686791 9795496337.760479 170868.0768617916 214151 83957 54887 THETA_20210725 5668733068.283707 165927.6530771898 5.665757904384725 0.0001658299294225799 590161597.0417951 17273.32117555167 184048 21772 19127 ZEC_20210124 923020739.4110761 28829.99373899719 86.09350079114857 0.0026863777086116843 1157559125.7182686 36119.34702566183 72259 16745 132493 PNT_20211011 33595122.26271412 614.0020516226574 0.9924603958850529 1.8132536954217392e-05 6649255.151607876 121.48380454721378 None 349 359417 QLC_20190513 7414191.671621085 1067.1309591401557 0.030935154964737258 4.446350536655933e-06 464924.4789310545 66.82420724111383 None 5808 940522 STORJ_20200629 22538613.197947033 2471.382989787581 0.15638406361429125 1.7139516278410102e-05 92055042.83822593 10089.128449347485 81282 8144 96443 TNB_20200719 8653412.130612439 943.9950201326795 0.0025180253235253794 2.74689721244989e-07 1025813.7874436082 111.90534927887155 15875 1434 1115028 NKN_20210207 26958624.984539285 687.1917973449906 0.041330129658732964 1.0514405715067679e-06 6019733.715166082 153.14232764463148 None 1026 338143 1INCH_20210724 379968262.2763017 11365.525523875922 2.109192257047623 6.307617406513922e-05 81753482.04992694 2444.8680991417064 240947 None 4419 POA_20210519 17551610.134618677 411.3473866918453 0.06122020491498028 1.429963623292962e-06 409090.68743519066 9.555420509824053 19668 None 239820 RVN_20210727 551344408.841489 14718.45751533587 0.059011187968032515 1.581099596792609e-06 56028301.45575104 1501.1784695582066 65337 45947 64221 MDA_20190616 19984306.830179036 2265.6076921071076 1.017855541188912 0.00011533436254425628 815980.0412632297 92.45962133094464 None 363 2360786 STEEM_20190531 132540766.9278539 15946.35711417724 0.42662732483331356 5.1343606523380456e-05 7683917.813411869 924.7416417219755 5629 3736 309985 ENG_20191026 22412110.04981714 2593.019062212963 0.2860545521482315 3.304021489711821e-05 581415.5674953709 67.15535603370664 61182 3473 386456 LINK_20190714 1158578082.5366414 101793.98876807163 3.1810817479052402 0.00027908183508150615 185306297.09628057 16257.24377559419 27025 9628 152412 DOGE_20190830 297399621.6092761 31356.940555920548 0.00245818001093989 2.591883760269965e-07 54762455.38743093 5774.1059710643585 138151 139869 107008 XZC_20200903 63639967.87595987 5578.387834207746 5.840095832985646 0.0005116848574312161 10649081.049530132 933.0280999544145 66002 4162 333585 DUSK_20201228 14515375.206877979 548.2861379565163 0.04804909922049489 1.827079370221144e-06 546748.0973475764 20.79023718607663 18491 13344 1144498 OST_20210318 21154016.825244322 359.79566408930725 0.030481123012131964 5.204876457121315e-07 3048530.0937703713 52.055898687118045 None 745 563177 VIDT_20210401 68322374.73189941 1161.6292866260567 1.4732336454014783 2.5069836913781427e-05 11727664.493010044 199.56823355007253 25846 1435 479637 RDN_20201030 9873854.876997694 733.0198788035252 0.14750557128481745 1.0969598791108261e-05 914587.6084681518 68.01545892014373 26411 4382 1235574 KLAY_20210813 3682679854.3292456 82835.36055170078 1.475801055001434 3.319565854149252e-05 127743696.84644781 2873.379258655223 42395 697 67261 BQX_20200713 12507538.33811058 1347.8213707274285 0.05627987296023081 6.062204375772313e-06 403441.75499211974 43.45685666722691 12571 39 385504 CELR_20191026 14675642.306957463 1697.9311705847258 0.004207693507743426 4.860020463684531e-07 6426324.877634678 742.2610595118939 None None 557601 STX_20211021 2515015915.1933193 37943.64290748933 2.402591029553154 3.638159675248091e-05 76840161.25937724 1163.5637222262512 87587 None 64291 LRC_20210826 581404580.2623094 11861.294561058625 0.4658138950653514 9.505599386165536e-06 277972904.60313445 5672.4350633540125 None 11372 344060 IOST_20211007 1251662563.4277685 22548.736763299556 0.054906526034438116 9.897687901611824e-07 278990132.40696925 5029.196814348772 263268 53868 208271 ARDR_20191118 53695969.41004496 6312.6157180870905 0.05381188212232219 6.323673574147143e-06 5796514.822221309 681.1742343468009 66054 6489 1032831 SKY_20200721 11196953.937953494 1222.208921671449 0.6220529965529719 6.790049564841383e-05 1656235.6114651426 180.78719908466883 None 3821 1079623 TFUEL_20200907 0.0 0.0 0.008569658500803214 8.330351184030425e-07 2983841.0089109717 290.0517386919247 72805 4379 65774 ACM_20210509 20364426.63734069 347.17108906210996 10.192812078890329 0.0001735168318656362 1718689.5764886728 29.258026927665412 None None 39485 AUDIO_20210124 31289356.643577795 977.3041033803376 0.2043355906734927 6.376060236165065e-06 3807442.0966084963 118.80691011130656 24961 2450 50334 NPXS_20190220 115561278.10714635 29517.47095410426 0.0006904331552778635 1.763552717699182e-07 5328952.542778015 1361.1583782537168 55565 3990 178391 AION_20201111 36158734.42223506 2365.2763960906705 0.0769555945061316 5.037614482802695e-06 2189539.9864237197 143.33016874302626 68211 72534 747017 GAS_20190221 36420828.34426949 9172.718166189341 2.613600612962209 0.0006582448261491595 4064814.7359510986 1023.7383844818377 316127 97930 150509 CTXC_20200506 925588.9753358489 103.22125339228249 0.09018655929342251 1.0051586408060552e-05 8319632.447676855 927.2501921162348 16508 20063 447744 OST_20201031 5739180.624696083 422.0299478860973 0.008280948618490172 6.098788138310578e-07 902893.5692674067 66.49668829135841 None 746 656649 REQ_20210825 193169696.29542828 4019.7817392283323 0.25018376501226197 5.209647849067584e-06 23570476.73920726 490.8147554654087 45242 28236 270313 XEM_20210527 1910625698.895583 48765.98662440443 0.2171239920213938 5.538386222554818e-06 175142753.5342864 4467.531220865857 367191 21533 32038 MTL_20210821 190784973.67276254 3882.626176075388 2.956238233520512 6.012929404520534e-05 50682793.19193951 1030.8778705027585 57512 4233 207199 CELR_20190629 45534985.49119809 3679.1091460177145 0.015399260300475523 1.2438503928389924e-06 20655403.781641938 1668.4068979111917 16037 None 371624 RUNE_20211104 4622817365.792057 73492.62522901884 15.50473880024911 0.00024589627011847344 142541661.34568605 2260.6290446396706 123089 8189 82117 TNT_20181231 5180274.624414633 1363.3030382612812 0.012092655648357677 3.181710355530914e-06 216530.6185741482 56.9715810522106 16987 2525 1291178 ICX_20200713 219758839.18827832 23681.37133441382 0.3960893437229036 4.266799510657523e-05 32828898.49687048 3536.4326322261704 113203 27781 182019 WAN_20211216 126396894.88915572 2590.8227202877843 0.6559329623564127 1.3441709455417486e-05 2385029.443053758 48.87522758571941 131328 17424 243413 LOOM_20190430 40162001.956307165 7716.514067150405 0.058020247409707446 1.1147638551731936e-05 1807302.4695225612 347.24351555452324 19250 None 474051 MTL_20191213 15425985.78226101 2141.2749574844947 0.2753850585407903 3.82536602128504e-05 4188349.7354066786 581.8024713461244 34599 None 519083 BRD_20200927 5333998.249246012 496.87436001498776 0.07626121306902249 7.099951879443857e-06 28592.63251940696 2.661986438776866 235 None None QTUM_20210204 380743091.16839147 10162.923298329588 3.697463663016391 9.857282808832356e-05 430567362.79881024 11478.745026796445 193059 15150 197984 VIB_20210318 16740061.676203353 284.5815722440791 0.09246377524962306 1.5687173674737e-06 2699177.3465671684 45.79357018486822 None 1148 None AUCTION_20210324 70561808.40457247 1294.3688288394364 30.68658315354493 0.0005620856159528951 8245228.874292592 151.02771550973293 None None 34024 DNT_20190227 7653705.139594765 2009.3689994329595 0.013195191368708165 3.463372023644672e-06 2087141.9115331932 547.8169057041886 60152 6484 733347 YOYO_20200312 1743510.5545345058 219.28863001132876 0.010019097029526289 1.2621396944823983e-06 137016.91237733865 17.26048599162356 7517 None 2563708 NAS_20210624 12534431.277478911 371.80893251142544 0.276626353341846 8.208133725588865e-06 2913174.4136085096 86.44051755731758 25185 4919 520126 LINK_20190520 362102492.7288533 44263.89006702991 0.9920884732186352 0.00012141549391369642 40766351.6564131 4989.138423677695 12571 6852 356861 POND_20210704 49710215.59535204 1433.9391866644269 0.06419942849691454 1.8514324497423412e-06 5195842.212781377 149.84169020985632 19553 595 110694 FUN_20200423 10588790.30174473 1488.3922625458067 0.0017606630587856348 2.4748410337439385e-07 271372.160908622 38.14488842036811 None 16911 234333 DNT_20190601 12270952.070729282 1431.3498839281508 0.019852339175948894 2.3142079037814165e-06 1121331.8908158655 130.71482919413708 60755 6386 1082435 BAL_20210711 237440454.73698452 7042.1081290832435 21.979776458114582 0.0006520414347979396 14843418.7130844 440.3376919428578 90547 None 89492 MDA_20190725 12833038.282432167 1305.4862908345408 0.6533488935749537 6.650852101477709e-05 2210889.3324416503 225.06042494915908 None 364 3017941 GVT_20190821 5591231.716399525 519.6601607109866 1.2554638486556904 0.00011684233243352955 217931.78266125338 20.28227083145686 21327 5716 194896 CAKE_20210723 2599130221.6066184 80290.48419391814 13.028144579925783 0.0004024254562436192 134378083.93454018 4150.795334266144 990160 None 809 OGN_20210513 276867197.16019535 5370.332566295623 1.2687443507494027 2.5171604908537767e-05 171387501.5082716 3400.2897996585734 108742 5288 43246 TNB_20200107 5601322.636433345 721.6646669209206 0.0018044038378206358 2.3272061994670027e-07 750444.3637419963 96.78757820448875 15347 1456 1426193 ALGO_20210212 997624737.0578129 20921.813708791804 1.2444889885928612 2.6064685591730305e-05 1077857579.4697852 22574.742869608843 48795 4657 246299 VIA_20190522 17752565.85573492 2230.801557630667 0.7670837399155536 9.639874137436077e-05 5196619.328691332 653.054597067418 41261 2238 1806760 DIA_20201224 29821372.36108806 1276.155837448548 1.167189425341147 5.005588817094173e-05 15919399.361198075 682.7166669538539 20409 188 284096 OMG_20190813 193179308.25685105 16972.556090448405 1.376215265078256 0.00012092216463308599 57256140.83287859 5030.85284964835 289150 41048 None IOTX_20190803 23543216.899920605 2236.8699401724043 0.005713579785046542 5.42847754653067e-07 778672.9346303871 73.981789014219 20377 1759 857691 XEM_20210710 1123712694.2874374 33074.08802401258 0.12488714887341827 3.6747407739146327e-06 79669335.15883651 2344.2296263451717 371208 21688 80485 TRX_20210106 2050149400.357792 60339.22656431517 0.028645158592325325 8.406234302330013e-07 1699302025.2275798 49867.8718375612 557645 76812 32747 ZEC_20211028 1743497566.1977465 29792.65376240352 147.80372778199444 0.0025237934780008428 328602078.64967126 5610.980151845596 80549 21150 157345 POWR_20190706 44434757.25655843 4042.9046698211514 0.10584111455750349 9.632041621528027e-06 3471691.451596247 315.94032903641084 84648 13179 757422 POE_20191108 6278618.301141441 681.0392552098477 0.0024943121961581074 2.7055706189744516e-07 338993.7281385822 36.77051622812271 None 10656 855279 ONT_20201228 365064331.3350272 13789.184333929532 0.45335377816360545 1.7137496559667014e-05 160873350.45980468 6081.269469540142 94205 16676 295641 NANO_20210401 691099372.3360413 11749.532709934543 5.192297341657794 8.829224426260831e-05 114328331.77309406 1944.0922448835793 None 81047 65889 ONG_20200315 0.0 0.0 0.06419448815398028 1.2390123939101125e-05 8983810.841949552 1733.9577427613424 84506 16510 345761 WBTC_20210620 6818439430.442221 191266.89790587677 35581.32897382717 0.999374051528376 324421619.3509733 9112.041553385112 None None 229345 SUSD_20210909 260910269.39305162 5625.774247348618 0.9944620793779069 2.1529177783411897e-05 45370387.66313757 982.2266352408761 None 7574 50358 EZ_20220115 0.0 0.0 3.0017219223344935 6.959580722075946e-05 489170.8492131333 11.341570272230813 40589 None 307017 LRC_20190131 46492210.03384361 13443.375334693488 0.05892664629556528 1.7038833447352876e-05 2523654.6964530847 729.723049837474 28585 2465 480712 PERL_20200414 4299070.730638609 627.1483309974686 0.012237793359162629 1.787614240033405e-06 1486416.8369992482 217.12573717024128 11644 481 646764 ONG_20190414 0.0 0.0 0.5307873033630921 0.00010460740126903675 3157571.8128010016 622.2932982093665 73405 11437 248801 DUSK_20191024 9857850.596369479 1321.2461139177176 0.05230597087632824 7.008905144378566e-06 810206.6229012301 108.56621666938544 19622 13331 197441 GO_20200314 5483673.109976047 996.0331780193915 0.006083441135436462 1.0935424022532957e-06 1117409.7782169613 200.86246352493546 10683 679 656341 DASH_20190401 962160482.0337243 234464.25189504944 110.31988855926234 0.02688414069838962 291684867.53497833 71081.44434164329 320758 23266 95736 YOYO_20210916 4419835.937481477 91.70170424774994 0.02527153950398619 5.243278877904239e-07 1454688.1793563208 30.181524174864286 12115 None 1583494 CHZ_20200314 29872929.709026337 5396.841602165959 0.006189183889208787 1.1125504245891232e-06 4498281.012603741 808.5984420691136 19746 None 294872 ZIL_20200423 44159266.50460581 6208.61972781489 0.004208633464572798 5.91912137192752e-07 10280725.651525574 1445.9055043664976 69597 10551 194676 FET_20210421 372223642.0956248 6588.5514022391235 0.5347761133196414 9.484548500282116e-06 49259532.82577017 873.6449077485314 49831 2204 124282 IOTX_20200907 50535150.624621265 4907.522748058007 0.008665351956767774 8.4241586772421e-07 5230932.044045096 508.5333150777548 26436 1935 382406 RAMP_20210519 103142747.69668971 2417.2995751293456 0.3761014522156207 8.791345093266093e-06 12273545.030606106 286.89325512079995 27248 None 89296 ADA_20210727 40453902654.76121 1079926.6143100066 1.2550594474349008 3.362708080652518e-05 2865774184.2776933 76783.31115304267 532010 548533 7136 XLM_20200414 982614897.944591 143501.54617937026 0.0483868999368063 7.066445837817657e-06 470867394.9088264 68765.69789060837 281236 107503 84829 MIR_20211230 318275123.64525175 6849.271530967891 2.3959007543372253 5.149191703763345e-05 10821351.966689358 232.5689645930016 None None 16589 XMR_20200518 1141643695.227837 118246.29055271637 65.08025176043105 0.006735651504198718 94116835.09188955 9740.868922737394 319900 171306 80558 MATIC_20210805 6788082028.00795 170520.52451386114 1.05307621706725 2.6482544225274395e-05 478893880.1373623 12043.124851181643 563625 None 5735 CDT_20200607 3097612.438163726 319.9485475940846 0.004632760179405444 4.789968553468082e-07 101468.23961299587 10.49114692106489 18907 291 294678 UNFI_20210703 24578131.62332058 726.7720091685477 5.926952325058988 0.00017503597221494555 6546116.348962135 193.32125121511476 None None 196692 AAVE_20210711 3811797041.098283 113078.93037823308 296.97539211669834 0.008809928578867043 270116880.8191331 8013.156952168553 252373 11851 14216 KEY_20190806 5292193.927573356 448.0137316182034 0.0020238727769733857 1.713558209950912e-07 208187.24012815373 17.626649193933545 23869 2829 851050 SNM_20191019 5050392.351432357 634.4986914561039 0.011536930349055409 1.4497082895051319e-06 143549.3686063434 18.03813521669414 30922 9830 6645524 VIB_20190130 3635032.66820225 1064.9297796965232 0.021930833709614822 6.424375322931484e-06 759067.8184064027 222.35983481392137 32880 1123 2497067 SFP_20210809 107089790.81807287 2434.2828519025506 0.9899933582345152 2.2505554065939497e-05 15397707.797217783 350.0366365485596 375368 None 25766 SCRT_20210513 204261179.8316199 3962.633566172896 2.835264432581144 5.6251013898905167e-05 4767302.569145369 94.5822195614933 80487 None 56465 BTG_20191011 144491263.6545497 16878.290492890737 8.251020739487329 0.0009636257384636216 11967412.66647876 1397.6582088861692 74970 None 268715 EZ_20210902 0.0 0.0 6.683597423735977 0.00013742292137114244 3278057.255700189 67.40085854069619 36646 None 164484 TVK_20210519 72881465.24040823 1708.0826223334873 0.33557962178112166 7.84378202354736e-06 11602820.751233753 271.20239407841615 48381 None 56079 AXS_20210909 3931485855.3680663 84861.02501322211 68.34454049308626 0.0014762219962610962 1492837957.4227214 32244.86131154601 473182 None 688 ELF_20200605 42340222.05978261 4337.994267217305 0.0921474129496643 9.4267042087282e-06 18475302.167931013 1890.0281964410265 81406 33388 507213 APPC_20210527 10079314.270616299 257.26007202151925 0.08975392731076716 2.289594762841029e-06 435695.2565111133 11.11445044681463 24843 3133 595415 WPR_20200223 5837471.904330063 604.7444550233612 0.009605277944802927 9.950256764837305e-07 300687.55470016244 31.14869129712689 33697 None 661925 KAVA_20210418 382539602.67112404 6346.40310195685 6.513237132677376 0.00010822861621392805 80708678.72674127 1341.1132493895605 90006 None 75402 GAS_20190807 26686263.767375853 2334.4122857360626 1.9217284184431975 0.00016748963136928356 1341902.6660056447 116.9544982036636 324460 98216 192021 NKN_20201031 11017421.588460904 811.1069306274545 0.016929378913374947 1.2474074799933783e-06 1023328.5504703827 75.40192081937748 13692 1022 266915 WPR_20190515 6060438.187488414 758.2977670825869 0.009831440494735373 1.2299636918165361e-06 277165.76979088614 34.67486108874083 35166 None 1010461 ANKR_20200701 17633053.5397529 1927.485023919688 0.0034243663746993387 3.7440316934938465e-07 13712056.487752458 1499.207983480759 20701 None 5352 DLT_20190213 8814360.642546708 2425.803299132168 0.1087193404789982 2.9919719987551982e-05 475908.8594404527 130.9708075059948 14479 2695 924698 CLV_20210806 136656720.1406695 3335.414629229343 1.0559861577048173 2.5808700709334273e-05 30335055.207134686 741.400211669176 61142 None 108852 LRC_20190302 45093913.52294134 11794.65267578567 0.05712305310174008 1.495266505556734e-05 1469024.5226348178 384.5353224774326 28518 2473 761823 DOT_20201124 5467632721.652316 298633.23036508006 5.895639961337506 0.0003211269416900769 459048675.4013789 25003.714301624863 None 5917 30578 ONG_20201101 0.0 0.0 0.10600228521642442 7.682172017270462e-06 3424626.854381516 248.18873042791998 93547 16682 220427 ICX_20210617 634213078.9348489 16581.208636669373 1.0017598895807944 2.619109651531276e-05 83580521.21086185 2185.2197523599034 140560 32382 229472 WPR_20190903 3386452.695906093 327.91796128316474 0.005567794557851799 5.391422837417632e-07 130153.5421765244 12.603065223944826 34501 None 785340 FTM_20200313 5548449.093362079 1156.0026870755867 0.0026189328575308033 5.465135536258766e-07 4716994.586478798 984.3327851944479 21292 2318 349202 OST_20190622 16459327.54029976 1626.3282608484853 0.025864404421533857 2.5553247660955887e-06 1655734.592773645 163.58155950705546 18150 754 994275 ETH_20190813 22642683362.924953 1989365.3046139716 211.11314126304725 0.01854961114863562 6858803450.515639 602653.8006625505 447622 444516 31061 ACM_20210805 17309638.67597854 435.2071528747676 8.662505551228982 0.0002178429088456534 3024579.0361026917 76.06149183531717 None None 44064 PERL_20210806 0.0 0.0 0.07228355246898872 1.7666373354119962e-06 20647969.059250694 504.6441658516112 371 683 3927089 NKN_20210618 193740246.55175263 5099.284772225096 0.29900779380894793 7.833751726454047e-06 41706066.24687245 1092.6637205777972 28031 3224 104026 NAV_20210723 24161823.31141214 747.065621728212 0.3392372378775205 1.0488919085450789e-05 309301.3457548379 9.563327448783332 53012 14116 823602 FIO_20210203 17681169.302611448 496.4850042978866 0.08149949359968252 2.2940984968908616e-06 3897925.6818526587 109.7212393938765 55406 168 730561 AION_20190615 55788868.58840068 6420.645595557946 0.1749831724994977 2.016260911847132e-05 3079319.224105755 354.8176032001988 67344 72567 268953 CMT_20201224 5775876.9749498945 247.04323439688375 0.0072063669703948735 3.0902969604810657e-07 1483951.0179504503 63.63607819466593 280942 1630 983064 EPS_20210617 121805178.07230684 3184.4933724711527 0.6260216678876322 1.6367389126733102e-05 5777922.688200811 151.06427434223764 17287 None 20325 OXT_20210707 163503639.9669537 4786.930489866599 0.27637326685539226 8.091171162525989e-06 13846135.204048166 405.36283103694325 66909 4287 118089 WAVES_20181229 319566538.5537427 83092.79484633221 3.1918946872027125 0.0008299119193822211 17571635.287256874 4568.73142663481 135094 56528 37240 COTI_20201018 17990288.434179228 1583.7489426130392 0.031730361066389594 2.7919654076451326e-06 1308959.9123294458 115.17583388261929 32505 1203 146128 WPR_20200229 4471409.313394193 511.5942855974515 0.00732469393577185 8.406540629363883e-07 322138.5673182064 36.97179674935057 33666 None 661925 ONT_20200404 242990338.11604205 36131.51723267299 0.381455258709155 5.6695417819154964e-05 89324713.00416662 13276.267162982454 84117 16521 252464 OAX_20200117 2616710.6665340676 300.632519661948 0.05094264105347617 5.84637962349295e-06 318460.142412883 36.54774956686891 12093 None None WAVES_20210727 1502317627.15547 40141.64504533765 14.970492845182997 0.00040122433109730966 182935641.38077107 4902.85998636807 194616 59188 108854 BEAM_20200105 27086827.842913557 3683.6692138219496 0.5156598921829343 7.012648544872092e-05 22912231.85856768 3115.9186866865302 12259 1419 354880 DGB_20200721 282602431.22422683 30847.605039931233 0.02114602373015704 2.308204445967191e-06 21575007.756426476 2355.0304048008556 162761 22609 156961 PAXG_20210704 288422266.32370746 8319.741130218923 1796.7197245455145 0.051819697294907444 4309137.533380841 124.28104368832663 22968 None 39244 VIA_20210624 11497474.32298581 341.0435834677269 0.49612624402995986 1.4716333984594735e-05 269614.33765210287 7.997429460079196 38196 2296 822358 FLM_20211007 0.0 0.0 0.5190363905161862 9.356255676504138e-06 16793327.552505605 302.7199423999232 26313 None 94802 ZIL_20200315 36514920.8827026 7067.486630836163 0.0035078657901652034 6.770502133707709e-07 11465592.077451607 2212.964242880923 68673 10579 224303 LTO_20200325 6592741.569021231 975.4968544133565 0.03116512751941237 4.6120997605856e-06 952341.8169382578 140.93622633697512 14500 415 882624 CELR_20200306 13710826.67472707 1514.3925915364632 0.00365432243027421 4.034029364279864e-07 4774631.218535192 527.0745235727057 19281 None 1113968 GRS_20211111 78883157.20651403 1216.9353195425267 1.0030735207800936 1.5442282241944035e-05 6938830.540234384 106.82305674661654 41813 107145 None VET_20190608 432475946.45602894 53795.39964645603 0.007777714313794105 9.687837160876992e-07 18389806.847437263 2290.614529798081 109085 55840 213726 YFII_20210731 117480942.603486 2814.1999713337827 2953.839663526874 0.07071435244114323 80025389.41279042 1915.7924043917246 17680 None 617571 LINK_20210408 13139183162.496233 233274.36613675917 31.2658584679489 0.0005564010460739262 2448511882.3178535 43573.23417307292 220542 46815 27392 ALGO_20210718 2453664119.845909 77633.73482281892 0.7846942535190263 2.482618890943078e-05 149218131.92276084 4720.969365091702 None 35699 209093 SYS_20200127 12672147.551417977 1474.58128702813 0.02199745734246903 2.5597112744930717e-06 233093.40591926285 27.123672061389165 59239 4527 836941 ONG_20210511 0.0 0.0 0.9029448960176334 1.61599713183497e-05 7637318.038050229 136.68479769732957 132323 18857 138836 BNT_20201129 84338450.75271751 4764.29912697576 0.9912158726249769 5.596273250013031e-05 42941690.28664047 2424.4308358890885 87364 5243 95264 OST_20201111 6485638.111693606 424.02042496053235 0.009437356678119686 6.178444688625311e-07 1188573.599527372 77.8134862706418 None 745 657896 EOS_20200430 2804246933.9337883 321016.3534576898 3.0000038829866815 0.00034217914326669583 4823278331.844948 550141.037045734 1506 71046 96512 MATIC_20211028 12092157066.753096 206629.1664037321 1.7735644500773913 3.0308006849976066e-05 2721999953.862644 46515.58799777683 785719 None 10536 FLOW_20211104 4338518183.474936 68915.02056655756 14.014139955075818 0.00022225622683924533 170835090.06747392 2709.346606488487 None None 599387 PERL_20200704 6526183.585613851 719.9043348384656 0.018496671467947173 2.04064460799968e-06 1594697.6559900222 175.9349609860877 11889 482 938177 TRU_20210805 66264503.28866465 1666.146266450431 0.17946451603243138 4.513136756551422e-06 7420962.961739325 186.6208510298497 None None 128346 FUN_20210819 246849377.42100218 5476.39099681309 0.023278661543350287 5.167932093546733e-07 10274879.863547264 228.10538872812188 9167 379 124228 FIRO_20210610 88786726.97900513 2365.380133467055 7.385967055337259 0.00019720285104270858 8201531.858548966 218.97815862239966 72723 995 213065 MITH_20190729 13927251.760886317 1460.4570424536937 0.030540985117201835 3.2037201981911996e-06 4884415.059642937 512.3704793043378 76 2079 572627 EOS_20190405 5251161770.401537 1070949.5884521725 5.0613315671903845 0.0010327621031073196 4238418318.6579776 864847.0779905237 822 63865 105033 BLZ_20200913 31621746.372281805 3032.594750310096 0.1312918498976411 1.257415584028356e-05 4684213.484546095 448.61909090138084 41726 None 210138 IDEX_20201124 24371699.12045105 1330.7917949617154 0.045495311400034315 2.4780635023405136e-06 691128.7651181859 37.64477955097048 40035 1951 42702 TNB_20190608 13844701.43488363 1722.8227674987713 0.005024148273277154 6.258024964646301e-07 2035240.319837057 253.50734169887863 15698 1495 509934 REN_20190813 91234042.69361451 8015.478844310965 0.11061781565490333 9.720643201082019e-06 3588055.498913891 315.3037065876669 9339 876 478249 DUSK_20200412 4683110.233595291 680.449086340507 0.017864206594258986 2.5974308578189355e-06 145684.65742436575 21.18234709771193 17562 13334 1650258 FET_20211225 396196070.90061265 7794.718609853853 0.5760671007018409 1.132858551736456e-05 27078040.93876349 532.5002973503439 89833 7068 85496 CDT_20210401 32873286.48933012 558.9764712830819 0.04872226652605428 8.291008555843202e-07 1888503.55890248 32.136434285600984 20231 310 437426 INJ_20210408 179835459.2758316 3192.8086685676262 13.280070678995566 0.00023632951659726312 26183054.56289883 465.94847101805186 58177 2841 96980 TRX_20200511 948220383.9462348 108305.07588360067 0.014379072480111593 1.641185112376916e-06 1805326067.216146 206054.6164294814 508959 72690 68362 XVG_20210114 220132431.61080137 5890.2528207236055 0.013407467289634562 3.58753916647575e-07 10377677.348116284 277.6834963617511 288552 51367 225034 DNT_20190915 4847944.606707511 468.4381124383586 0.006816361895916842 6.586386518942916e-07 157416.12496372656 15.210510520962675 60122 6271 485543 CHZ_20200511 40059628.21053019 4574.325989657718 0.008502346868392166 9.686037563874303e-07 7693475.662667573 876.4555883079704 22416 None 255307 ADX_20200430 6548480.524546897 750.0679454317245 0.07035017628181475 8.02411063041923e-06 1073716.3731060037 122.46762437356065 51764 3756 31500 RENBTC_20211221 783435770.6896691 16610.25582387832 47067.73076223547 0.9986200276645928 6586538.099308251 139.74433762637395 108352 6414 77574 FARM_20211216 55866600.80702052 1145.1331122697823 87.45243296970541 0.0017920247436433948 5448611.035876824 111.6497902140941 None None 114343 SNT_20200626 91212764.16120419 9857.481713883602 0.02387466331889857 2.580165827177836e-06 14827156.291288333 1602.3900092749845 110424 5701 161883 NAS_20210115 13010342.778099932 333.12113906498803 0.28711056321645584 7.332560115748304e-06 7445000.281847036 190.13898867681075 23340 4858 1361296 RLC_20201129 69806846.34199524 3943.503312563958 0.9925722504851604 5.603225160635793e-05 1869353.5664026155 105.52792436290245 None 3882 679095 AAVE_20210111 1549539171.5818508 40317.61308953675 127.57434303417492 0.003316906577499349 499745766.67913014 12993.286746782755 None 2028 24520 BQX_20201115 32608585.294397768 2025.903477873574 0.1424095845984667 8.852980633355786e-06 212983.4476194598 13.240248838003602 15853 78 180444 POWR_20210124 47291467.37979713 1478.4211398103691 0.11083077692742997 3.458255569003096e-06 7086531.176288842 221.1212136621737 81099 12531 393579 BQX_20210114 154145634.38164052 4145.317449886793 0.6971734436636426 1.8653092360933445e-05 21728337.223896444 581.3484216452591 20457 157 152603 HBAR_20201111 188056687.5029489 12301.48264824779 0.03131145392795704 2.049896944796483e-06 5146447.334978609 336.92739700947453 42554 6728 166628 XVG_20200223 72380921.70073742 7497.330917173813 0.00447196094475356 4.632128227119979e-07 1106359.8226095294 114.59850895329032 297259 52023 319965 FET_20200107 13379222.889005397 1724.368475363512 0.039326051176789376 5.07084629723055e-06 6928615.57442369 893.401284368889 16339 342 374290 NEAR_20210814 1462906900.9300132 30668.43732396161 3.411146219465805 7.149402285586326e-05 76768791.68434915 1608.992811852369 None None None ETC_20210221 1764932466.4230692 31391.504096519984 15.173105680667662 0.0002698724275251871 2879607254.231126 51217.37213025835 288869 30652 127057 RCN_20200312 32075287.81038186 4044.0595200287366 0.06341761252089123 7.988932121930476e-06 2561097.1220062706 322.6301062443726 None 1132 864394 RVN_20200718 133519545.29645573 14587.376522805595 0.02015432258655695 2.2018158099165446e-06 13768471.163722496 1504.1754619371302 32632 8414 210690 ARK_20210428 334812826.87513345 6077.0339077256995 2.14173370315029 3.888694536917424e-05 15348481.919783393 278.67870643136285 72058 22802 73958 XEM_20211125 1560191041.2789547 27282.08404276156 0.1729956102971787 3.024739297029864e-06 45388840.466390826 793.6005380105914 376464 22450 187770 DAR_20211216 0.0 0.0 2.030978000551797 4.155934523172618e-05 54080941.54281618 1106.6434591728994 None 695 22834 VIB_20200530 2708439.502305494 287.37561755198146 0.014749316800452734 1.573125898857544e-06 683632.0196561741 72.91451190311447 30982 1102 None SAND_20210115 25467738.529076315 652.0844387356098 0.040936716862251483 1.0435319756794444e-06 4464490.344579502 113.80586394745431 63675 None 60991 DOGE_20200318 203980841.13970348 37549.867468123426 0.001633126806126824 3.030258738734493e-07 74523963.29975541 13827.884655802744 138994 150474 105974 UTK_20210422 220183864.25034425 4063.676549841752 0.48976532044692206 9.041167617974829e-06 18728633.673748974 345.73439406754204 68962 3742 75588 ILV_20211125 945559395.6948175 16528.615594060742 1489.4377060815668 0.026039600165125836 411155370.1016989 7188.163291071037 167000 None 9890 SRM_20210114 82622609.1016489 2218.8813744214553 1.6589006259893635 4.438848024361052e-05 79821260.17265289 2135.8388650198845 29963 None 89781 HOT_20200127 114256983.50404274 13306.729766950315 0.0006469439550928494 7.528096134180002e-08 7929841.828734193 922.7478075281668 24864 6816 519557 GAS_20191127 14730423.67255852 2055.0957498002854 1.0578193225754884 0.0001478055552372147 945871.296865808 132.16343210276185 323714 98717 161604 ENJ_20211021 1721419031.1484265 25970.02144202555 1.839692769055419 2.7764483828009097e-05 344537995.07516056 5199.737561239938 315647 37520 24816 BTG_20211216 761929845.5576837 15617.671279562195 43.70373506537899 0.000894297532028664 14812125.230125627 303.09645199854685 105513 None 261846 TORN_20210703 34124147.1762626 1007.8616312224364 38.50885549511375 0.001136942342003362 1989744.9459310502 58.74558591083671 21226 None 103371 KEY_20200315 2166840.160479717 419.00288773744256 0.0007821087154149035 1.5095414258304955e-07 752511.3740374612 145.24158472208842 23500 2758 281483 CFX_20211202 327608516.780432 5731.488728829004 0.28505722364067615 4.985031474216307e-06 17409964.53529148 304.46245166134906 47028 2176 180578 COTI_20210128 33506861.423672758 1107.6328701581897 0.059127354254107395 1.9445234023099515e-06 9821623.090244269 323.0040678899658 37228 1338 233867 EOS_20190826 3616925768.079806 358210.0438897077 3.5508075157848014 0.0003515442156492886 1722868385.0987697 170570.89476522614 None 67972 84065 SUSHI_20211230 1746142364.9446487 37649.10114283282 9.097428639489653 0.00019570252434233343 864228162.8792634 18591.146991695125 None None 3931 ARDR_20200318 30665376.825685736 5645.044060171959 0.030358455289343684 5.632996414601139e-06 1801425.3230017833 334.2535807216336 64516 6382 1001396 STRAX_20210825 235964911.8937447 4910.332532067794 2.3516121903674074 4.8968290923226884e-05 8608617.979226492 179.25970590747067 157449 10793 253656 NBS_20210702 0.0 0.0 0.01126523238104078 3.350093991240034e-07 1636404.4510286779 48.663964782971796 None None 626214 WAVES_20200713 120797434.8932278 13017.21888647376 1.2086964771486106 0.00013008904187603016 24437655.375069607 2630.1650029948364 246 56865 124642 VIDT_20210111 30194969.668647405 783.266939805635 0.6497794553262658 1.690214176521213e-05 4962508.4649867965 129.08537027252723 None 1159 None WABI_20190419 18663520.69064144 3537.964625212915 0.3554370024412358 6.741243928335679e-05 3761925.3977678325 713.4894952516078 36268 8042 1086520 ZEC_20190702 715521688.0924596 67429.88474135402 104.0378539059017 0.009801055058224714 531421036.99615216 50063.38219364885 62 15268 191872 STORM_20200217 11714118.589939803 1175.0982784544044 0.0015814839211493058 1.5866589066604612e-07 2973289.446818106 298.30187457391935 25944 2523 1783010 BAR_20210708 42702082.608796135 1253.8729571435324 14.440284705668605 0.00042500729857729806 3933660.5263556335 115.7757251953816 None None 41859 UMA_20210731 551249719.888064 13204.924233053549 8.844139839871172 0.00021167471190538408 26410646.729185887 632.109638569072 42145 None 212525 BCH_20200331 4058017446.582878 631602.6037562535 220.4724327175581 0.03438939722855186 2413942694.393542 376527.9549067595 2692 289874 144012 LTC_20210314 15179786845.414158 247157.467409357 226.8235603211887 0.003696863524131441 7479943570.600108 121911.19171904598 150319 277974 91597 AR_20210813 645647568.870776 14523.648717351009 14.770799440879639 0.0003322442499702866 26698426.41239773 600.5361249591051 23805 None 92701 CFX_20211011 363918609.4547968 6651.837137338422 0.3595693468605583 6.571811051783401e-06 103235916.11248805 1886.8319570970993 None 1903 188055 MDA_20210421 27496867.131697685 486.7088008643689 1.4026309871829485 2.4876432014426427e-05 1254082.621518676 22.241845046742785 None 376 1136941 ADA_20200530 2009870099.4791422 213139.3002853142 0.06440627090487543 6.83374757300417e-06 416498091.00141424 44192.01389171453 155945 79476 54750 CDT_20210202 7978303.348148661 238.97765205741715 0.011421970952554709 3.4199090192641205e-07 1376561.0301744244 41.216297101579194 19332 296 640190 QTUM_20191012 171050331.62846822 20696.660701395776 1.7818362382144681 0.00021550216514059915 197473464.9205807 23883.204491814307 None 15297 202999 DOCK_20200127 4084565.58594781 475.70143023834896 0.007256339178788398 8.443763712468083e-07 1062190.4165310233 123.60068450291986 43473 15074 305470 DOCK_20191022 7202144.419640613 876.4449772281934 0.012863457410822392 1.565382749998596e-06 82261373.1677824 10010.569509850877 201 15146 183955 ENJ_20210702 1067621553.8628402 31779.024387863952 1.145867484876643 3.40673455612021e-05 210071142.80243948 6245.544365941905 237277 33756 29114 NEO_20201018 1213345102.4685152 106815.07581659252 17.19963976620213 0.0015134289684952912 191172222.98284823 16821.606973561058 324441 100862 83823 BAL_20210809 260756907.67233002 5927.696629779408 24.110039731394615 0.0005481005349625393 34440132.60004748 782.9375360873748 None None 286590 SXP_20210616 191130908.63505405 4732.70304374334 2.205195158069175 5.463694805397962e-05 179786727.03210732 4454.480153243708 None None 55454 MTL_20190123 9698606.545106204 2715.1480611485795 0.23769313327049765 6.654749825196792e-05 2675538.226725428 749.0766477610454 32280 None 571829 PSG_20210203 0.0 0.0 8.056535798270021 0.00022678038658427533 2297171.208711372 64.66220566830923 8613706 None 40302 UTK_20220105 185752915.97594312 4036.295719752253 0.405523094615566 8.813630282762312e-06 27972342.200201154 607.9502883287074 82380 4283 106204 AUDIO_20210115 26493091.968617707 676.7649248998432 0.17471436551157252 4.4537041804149315e-06 1425839.4696486318 36.34656593910189 24423 2404 55662 REP_20190605 187622388.60043734 24500.66241479571 17.06451520239749 0.002225822319574086 24212420.192405175 3158.1644503788807 125624 9972 263200 LIT_20210610 77853640.47046587 2074.1101823752592 3.496290896054129 9.334979801708003e-05 8589245.147909349 229.32997382495512 51649 None 185177 CTXC_20220112 74746343.44392167 1743.6082650895382 0.39646548980403856 9.26628013169031e-06 11984486.39279784 280.104097345232 55979 20903 237581 ONE_20200411 11550112.707201092 1684.628641997947 0.0022225921672285143 3.2406410871721443e-07 31412558.18189002 4580.094728955829 None None 330702 PNT_20210508 95101474.56851858 1659.647857017955 2.2809749544685674 3.980091904826549e-05 63808612.28690821 1113.401708878075 39542 282 348864 DASH_20190908 757017744.1939344 72311.7828873112 83.82010667026641 0.008006550968308134 292986337.76226246 27986.245060979243 319300 30426 81581 SKL_20220115 560192673.4694865 12997.106998765918 0.17611235326983452 4.083352839728141e-06 59447092.60800609 1378.3442779993895 None 3273 169615 CDT_20191020 8211769.896832499 1033.371513948682 0.012173174164773896 1.5318757800392828e-06 229545.11874876742 28.886024555125484 19573 299 183019 EVX_20190509 13047276.613371858 2191.0512005146516 0.6767360721181052 0.00011361993797324738 2072000.657333278 347.87651473918896 17215 2388 712033 FTT_20200229 75861696.91358997 8683.835380376491 2.6247808121183467 0.0003012457139333351 7056417.516852884 809.8640171635764 7750 None 22405 LSK_20200927 173125665.54823324 16123.274539247528 1.219266944082626 0.00011357916090420804 2454331.4236556403 228.62991983218004 177649 31095 149503 REEF_20210711 188911240.37072247 5604.149635257505 0.014914044501981099 4.424328424924413e-07 9171673.208606979 272.08242858312065 184501 12442 42955 TORN_20210806 37172514.49759932 907.2741498219513 37.34496307294858 0.0009119126638374881 8090025.080500814 197.54729191352502 22127 None 138254 RLC_20200612 32616119.41101844 3515.2497337233485 0.46627578838624323 5.014352807032501e-05 2136744.681188543 229.786576032856 30390 3587 681480 TRB_20210511 201985127.5526736 3617.60645368874 123.01930375447287 0.002201348854939823 425111952.69606566 7607.096461515217 20407 None 320975 OAX_20191017 3718600.034718274 464.4543204784633 0.07119516891496744 8.892299115534163e-06 1266299.9928701927 158.16126962279407 12238 None None ETC_20190522 822546815.8792052 103361.88768423603 7.43567014431236 0.0009344166592834339 575034796.0392964 72262.76618762797 227745 24520 712989 DOCK_20190414 7221919.691110266 1423.2937492552321 0.014043474385629726 2.7692012952939834e-06 2061238.7478685242 406.4510571791606 None 15334 183380 XVG_20200713 106833981.08898273 11512.507012900576 0.006574096580134028 7.075620452333563e-07 6145339.039444641 661.4153909058012 290254 51644 251650 VIBE_20190901 2893569.9413771145 301.2860103716294 0.015462744985612668 1.6100211297785238e-06 83903.2437756995 8.736223449428 20332 None 1398469 POA_20200107 2699431.525539651 347.9136765012101 0.012183412172198226 1.5707115965525522e-06 85017.94581576131 10.960695700061729 17536 None 389159 NEO_20200801 852679001.6810433 75233.10685527824 12.100163349116391 0.0010674865303335326 190948523.8543784 16845.638469542246 320107 99912 128886 UNI_20210804 11132368109.49126 289786.96397047106 21.41376815339753 0.0005574246794595382 414981350.9002622 10802.435370094505 584482 49867 1884 VET_20200310 293401256.5152743 37058.5324686365 0.0046655704258300856 5.887022720730034e-07 171700763.0712238 21665.22420861623 118837 60742 236885 KMD_20210602 199724094.81531978 5447.216752597284 1.5869940939927814 4.326366790716777e-05 8791030.372896204 239.6557240222071 None 9274 214803 WPR_20190730 4333767.54348476 455.6131330870872 0.0071270748968887175 7.488728312140649e-07 121180.10105024412 12.73292152435756 34690 None 1469795 FOR_20210603 22744542.493859272 604.4421754941416 0.04041805486343311 1.0733621944700235e-06 2835152.382777697 75.29173270503846 27494 None 147618 XLM_20210603 9778689113.134031 259844.17431237982 0.4230538799182011 1.1235376025378219e-05 1109899162.0601113 29476.468667321267 581716 192184 22006 BAT_20210704 878869277.6446177 25351.83326157027 0.587719917882676 1.693772213507469e-05 66924403.91593985 1928.7196555587532 207676 75789 27779 CND_20190601 32733511.264386933 3815.779582203391 0.018845207970015404 2.1973921778997563e-06 493317.31647806475 57.52187050289751 36462 6174 588984 WPR_20190806 3891206.4513203185 329.4123281593744 0.006394643814939962 5.417684505394366e-07 257800.97240058286 21.841471926663544 34661 None 1323626 OST_20210509 30425409.904991727 518.6899135431017 0.044016119958303276 7.495805648212369e-07 1819427.1370766638 30.984267181045354 None 775 471679 WPR_20190719 4245493.810311249 395.57753184287367 0.006946943505024741 6.5038236099482e-07 213222.27802765142 19.96216156069402 34718 None 1469795 VIBE_20190601 9617786.029639393 1124.6901217876284 0.05139581061300499 6.010152473716632e-06 995126.5593966728 116.36867443638802 20584 None 1515542 GXS_20210304 37763486.28661071 742.8933918668002 0.5386005247658501 1.0616132821396291e-05 7828277.545102103 154.2999502603295 None None 470318 HBAR_20191017 23643017.38712567 2952.603600377614 0.03734615248790331 4.663341149922007e-06 5247251.939613227 655.2141054405097 34935 6168 85439 SKY_20200314 5404365.4689187575 971.4736554465183 0.3179038511128681 5.714550914391284e-05 356904.5711608108 64.15616974559147 None 3829 308227 BCD_20210603 519251993.02093345 13804.521517309859 2.759675561565497 7.33670764531649e-05 7255167.121498818 192.88151415216964 33402 None 1364955 ONT_20211021 846211931.6214705 12766.531296682899 0.9638414289515403 1.4595114095623547e-05 96213687.21962743 1456.9302588068163 165957 20677 93861 DCR_20210115 733844614.8862909 18789.60133311186 58.75602011402098 0.001497769983825549 22980681.699507315 585.8084872082334 41460 10126 378546 ARK_20200315 15090560.848127803 2919.486817809265 0.10636132057066881 2.0528708649191754e-05 279689.4081329043 53.98261643442447 62675 21960 80258 DLT_20201115 2877959.1816499494 178.78135178154918 0.037242421011480814 2.3151983265982517e-06 63571.11676250947 3.951938116568 None 2542 None RLC_20190618 27414954.38129979 2943.590010220321 0.39183983222645224 4.2072505381769155e-05 929675.0097892629 99.82077786836744 24919 3321 714682 DUSK_20210814 57663747.45794207 1208.8650505745695 0.15988231241053463 3.351779032729514e-06 6977823.248466368 146.2833587135501 None 13640 324432 KNC_20210722 117379040.53301275 3647.5667803586266 1.2757381602589235 3.9500984134944725e-05 27907462.969340175 864.1054146837832 176333 11243 107693 RVN_20200730 133696993.6326057 12040.106802228687 0.019915372136340776 1.7943143776180646e-06 12650115.684077831 1139.7368974619212 32868 8519 210690 EPS_20211007 220655636.8828465 3975.3758817543808 0.5455154307617336 9.83254884885137e-06 24465781.973388575 440.9792699040277 23289 None 45967 CDT_20190725 9657672.309291534 982.4609358808011 0.014304225669850061 1.456117708193831e-06 204801.91359453887 20.848083632066807 19813 297 299913 REN_20190916 36760571.8404838 3567.6294418318294 0.04429078600371909 4.29791674891613e-06 5158779.890519425 500.60088104043524 9649 883 293718 XLM_20210429 11427816583.978245 208773.39187945938 0.4988776593751981 9.110983231827986e-06 1087856273.5393384 19867.47668610582 514234 175931 26729 NANO_20210206 503619784.07859373 13197.041212307404 3.7804894891281866 9.904097990531363e-05 93765954.70837834 2456.4734441879464 None 62751 188898 TNT_20190920 15655734.57016083 1527.592566578886 0.03672164312007504 3.5807536405426936e-06 3349083.0200557793 326.5714765902868 17511 2531 560905 DOCK_20210120 13049917.96405055 360.36717593949356 0.023139038462310534 6.420040980252793e-07 6545914.279055817 181.61963814188618 43183 14863 234839 MDA_20190528 18043245.330595672 2046.2474334609055 1.0131248300731566 0.00011512185196196975 1456140.964803459 165.4619841601937 None 361 1619229 AION_20200316 23350438.06481344 4322.242100119664 0.05788339665356018 1.0771799995303945e-05 1746952.236611409 325.09875339130747 518 72545 244642 FUN_20200325 12279190.616736712 1814.8419698452549 0.002041315341668882 3.0209245871772654e-07 380244.07710791496 56.271985920838425 34779 16978 317174 ENJ_20190807 63146468.991048895 5503.57621403687 0.07209274129692246 6.282648467733501e-06 3882013.385224707 338.3048696394084 47069 12745 22336 EVX_20210220 15296779.124329157 273.4132985458915 0.7016871157949155 1.2541894428710618e-05 1403768.0920162108 25.0908286843984 17111 2815 787934 RCN_20200523 40326729.288155325 4405.37570006542 0.0789424078239485 8.623638175568265e-06 605348.1245927882 66.1279955938126 None 1135 1036055 HBAR_20210825 2431716117.6519246 50603.00985189137 0.2542372275363659 5.299842088855089e-06 238280946.83025867 4967.216655171435 123168 24899 50561 CND_20201106 18630896.790729634 1198.0372895563637 0.00979240944161745 6.299951008295449e-07 191627.69892269894 12.328376608872563 34063 5907 337093 BTS_20190430 136426422.50281534 26207.58637885131 0.0505391913183612 9.70627488532142e-06 12796111.160715101 2457.549658969445 13785 7197 210686 ARK_20211204 286638130.12608445 5345.357019354972 1.773149799622277 3.3066496504179775e-05 1530637.7594791488 28.54402269552441 76996 24327 124176 FUN_20190916 17722244.766945012 1719.951541566415 0.0029505273407458336 2.8634995819575564e-07 218412.92702171765 21.197069302964668 35811 17375 353342 BQX_20200305 7075686.446431538 808.265824287521 0.05026541827200688 5.739090135544441e-06 1829144.1423120468 208.84384263600478 10594 8 317687 STEEM_20190509 96309823.5895438 16180.825785847228 0.3117709226685884 5.233862195912659e-05 1015386.2181904437 170.45821644139883 5470 3728 297313 GO_20190723 10450799.344986467 1010.8365584853924 0.013930593957946677 1.3474608308235951e-06 1182443.6187728012 114.37390722631497 10091 682 877679 OST_20210218 13760811.535796218 263.6670084178179 0.020305382624425675 3.895461023377257e-07 1125714.7768685163 21.59613594996299 None 739 607091 FTM_20200806 38753879.11068205 3308.1999199740762 0.015858782610839266 1.3532770385778818e-06 9313714.526824437 794.76693276608 None 2481 185383 FUN_20190414 32886201.508808024 6482.659401720014 0.005468507551953608 1.0777318149953053e-06 1492813.3939398944 294.2032123418 36620 17754 523376 IOST_20190922 83775683.22390173 8388.828688542246 0.006976461471008764 6.98598605044102e-07 15989125.613002561 1601.0954687467636 195723 50818 97717 FTT_20210401 3534248646.953734 60088.795241453416 39.88856046346734 0.0006788198658692438 46510431.33427927 791.5102574025477 81307 None 3088 TCT_20210513 35788288.496271364 694.1776171927844 0.05968790399928736 1.1841947011636772e-06 16743284.130659236 332.1830223396901 None None 333105 WING_20210304 25199710.617968496 495.6127952448115 25.09603532813092 0.0004935737718221544 5459794.617433411 107.37996609688417 None None 327029 MATIC_20190625 44753023.924934536 4053.3851680483826 0.020723672674110443 1.8763403323394863e-06 19311226.208773367 1748.4561338261035 17695 696 215826 MTH_20200719 2973997.6560039 324.43144216167696 0.00855753807419374 9.334977312554672e-07 204597.3609466937 22.318471809146928 18997 1907 1350074 GTO_20210125 28626403.000597708 889.0378404142626 0.04315659319240653 1.3376953100923025e-06 28552946.059590317 885.0360792601432 16672 None 744307 FUN_20191026 20847707.51357331 2412.0220213971797 0.003477473554474201 4.016593082543729e-07 264157.06360229437 30.510984993830267 35608 17302 389622 ZEC_20191113 288560875.8654039 32810.668547522226 36.77005753403566 0.0041781902636508095 147437306.13569048 16753.335684199978 152 15320 210927 AION_20200707 44522711.17916093 4765.271941487335 0.10134488740489238 1.084695732971822e-05 4546849.89823748 486.64997410056526 67518 72558 281333 SKY_20190807 15734984.678282436 1376.332296794256 0.9851011590075196 8.602538726581535e-05 491167.8848963186 42.8919478211828 16365 3800 513361 AXS_20210825 4021857909.5862136 83747.27391799177 69.86249843671533 0.0014547292990448031 755833935.0898334 15738.540636125643 419819 None 935 XRP_20211011 53174487201.32791 971513.1789614616 1.1360668412266464 2.0756268024814022e-05 5873832688.556178 107316.61306560664 2090915 332725 22215 STEEM_20200612 68090488.23507583 7338.55145736877 0.18907935943199664 2.0333653833708593e-05 6023079.6189949345 647.7238782351378 11464 3868 215539 GO_20210616 30472796.559509296 754.5282892734074 0.02806010460748273 6.951944210395759e-07 927623.9019366762 22.98205835189123 22056 1087 102665 ANKR_20210314 480145936.74601775 7817.741772104659 0.06772239027935785 1.1037673248591728e-06 948515592.9755902 15459.296612644703 None None 5506 ENJ_20211011 1481464649.2776759 27074.588883570606 1.584099208564129 2.8954461061623885e-05 73604475.0593467 1345.3563359828195 309192 36967 26263 MDA_20190515 15231947.54099161 1905.594855718865 0.8570178449904373 0.00010721733332379416 1191232.6404263729 149.02932047605495 None 360 1527812 ATOM_20210221 5120948062.9297085 91696.12598818979 21.80761069394844 0.0003877921238844341 1451021713.747983 25802.679627480153 68518 17575 73647 BNB_20211007 67279547298.14212 1211947.7085040784 435.2620060917299 0.00784622121061405 1968600658.1827505 35486.84705599383 None 653631 136 LTO_20200530 9076309.42103417 963.6196562372066 0.04284134782320225 4.548408714059566e-06 2701318.924679427 286.7954245317096 14931 439 1128557 ZEC_20190605 517496807.2886745 67577.30071924294 77.603299050558 0.010122242152829895 520935681.83566356 67948.62051102739 18 15157 179963 COTI_20210430 268265849.33817577 5005.946085667062 0.3974165875259224 7.4141758566772695e-06 150503853.28076157 2807.789282973338 90165 4059 80341 ONE_20210204 100298865.26675923 2676.3431560880185 0.01053609107557889 2.8089111929224887e-07 17123117.019164648 456.5005627593297 80926 1894 152986 DGB_20210104 448760866.1566979 13444.337352698116 0.032246123805450694 9.795868343475186e-07 62872167.81165869 1909.9581768887858 179527 23784 242284 NAS_20200313 8956651.063174747 1861.1186551502167 0.2031571629085085 4.25330949520302e-05 4939579.736473328 1034.1531204054104 23698 4981 1191705 AMB_20210509 14758363.162855256 251.67372944033465 0.1016694006767983 1.7307640096349732e-06 9855662.5117089 167.77738289812802 25663 5615 453287 VIBE_20190915 3022396.8990560058 292.042507349293 0.016151174307944157 1.560625423815355e-06 391732.36532729166 37.851581377609 20264 None 1398469 WAN_20210727 91290480.52621284 2439.2645064280496 0.5166244405380188 1.3845439009105926e-05 3294001.4573638677 88.27862697773628 123142 16654 248498 GLM_20210131 122280643.6894472 3574.155776450183 0.12203642558501586 3.571512088203341e-06 2257691.191315512 66.07348045929336 146042 20294 190516 NXS_20190302 17176045.44042143 4492.497121378889 0.28827129880233543 7.545857481475177e-05 191929.34093103604 50.2398767826041 27 3504 850492 WTC_20210204 12276272.914366921 327.68242658116446 0.4263706770723716 1.1366863148202002e-05 10041708.448724814 267.7077290927874 54824 19033 815573 LEND_20190614 10175849.885081152 1236.869840483317 0.009089549167639361 1.1048037799242195e-06 1619824.776328214 196.8841911404817 42132 5868 1092370 ELF_20210115 56671466.439783745 1451.035055331653 0.12310600446354696 3.138115366880105e-06 20204339.77805112 515.0321417014528 82016 33333 479481 ADA_20211221 40024843957.4177 848367.2113042834 1.2466720827696853 2.6439992310782872e-05 1127335557.1714299 23909.04863856756 761654 674237 8356 UNFI_20210805 41351855.16783788 1039.7577086532597 9.707810997287442 0.0002441244441996853 24257354.63503903 610.0049969749347 21064 None 266714 RLC_20200217 45418622.19971079 4556.155407414686 0.6456276958090139 6.489740473013928e-05 857700.7190876234 86.2146265801255 28162 3542 230585 QKC_20190207 46770285.701736614 13728.329544631863 0.02968873378674748 8.71536005503136e-06 11943687.812448278 3506.162991593872 34345 8716 205712 EGLD_20210805 2001467244.2856078 50325.21485230787 102.46181911116507 0.0025766887638677075 45612989.57952208 1147.0660852551885 298938 9841 43311 POLS_20211225 237193437.5583557 4666.518013842486 2.8470536375848443 5.6000133541099964e-05 24525959.887800112 482.4134715303681 None None 7209 TRB_20201226 29309385.04679143 1186.8129063115473 18.158446486073892 0.0007364077291604643 21359535.43278364 866.2264691003077 11638 None 383463 TNB_20200127 5164656.243213929 601.822500480933 0.001673708272162283 1.9485829209478014e-07 650793.7341717801 75.76741876460156 15297 1451 1303746 NANO_20211204 655274968.5864402 12204.28139353737 4.923434462162332 9.163962408728697e-05 29280899.48333101 545.0038265385197 145054 117892 69441 HC_20200430 51426276.77343108 5892.6678712410585 1.1560527963817375 0.00013185888114356387 24292077.17460904 2770.74379900497 12645 838 962062 KEY_20190818 3944357.557682814 385.8851737966417 0.0015085904017804307 1.4759781510785034e-07 27069.985525717402 2.648479477187173 23874 2827 821396 PPT_20200511 9122841.352603756 1041.9479464623278 0.2543218970734282 2.897284110492701e-05 1111165.2775177602 126.58609186742264 None None 2106075 IOTX_20210620 196316832.23072627 5506.920923886253 0.020573072627633908 5.778366221056457e-07 5866944.341756751 164.78507425132483 None 3123 185427 POWR_20191020 19091076.856930744 2402.4266683564597 0.04453655540755573 5.602373701213888e-06 441707.8966756017 55.56363039998528 83519 12970 308100 MDT_20210310 32590397.711184092 595.2216557297974 0.05375117412397678 9.816959934954927e-07 6771746.450062535 123.6772306342669 23023 92 673116 TRX_20210318 3938568722.0062304 66956.38108444087 0.0552423334389515 9.372276618762613e-07 2061959469.882616 34982.69049364724 None 87797 25562 SHIB_20210727 3158891059.2039304 84327.35292941508 6.337099127577009e-06 1.6932609935354907e-10 489649430.6824771 13083.340891315784 None 203442 7956 TCT_20211120 18294403.027965795 314.70967873840766 0.03171405331305 5.436909378526354e-07 1647997.9685298211 28.25250850923307 None None 571843 LTC_20210202 8770352764.869314 262575.4313790568 132.0810105538993 0.003954370964653968 4710130511.443579 141016.51142790538 140576 237233 113602 WRX_20211021 617062975.2017871 9309.587253420348 1.3631242348372485 2.0567528593378302e-05 13895132.1322587 209.6569924700388 None None 1013 MITH_20210325 27199476.285715688 514.5628959717363 0.04385395981388414 8.32372669073933e-07 19621223.75829149 372.42179405234003 26693 2332 348681 TKO_20210624 109860505.2680655 3258.793022566315 1.4667416708494077 4.352156484652752e-05 19355889.408389915 574.3333081698114 288089 None 20731 1INCH_20210106 99481155.85770051 2917.3291652411276 1.2577111005207333 3.689729467693187e-05 76954678.39203718 2257.608638600634 None None 25684 GVT_20200713 5143365.864948008 554.2528228055871 1.161015192001857 0.00012505911984316825 208927.2391499338 22.50466386602808 20331 5526 240600 RVN_20210729 563870237.9710705 14101.338686405577 0.0605778000382295 1.514114553591862e-06 34364669.8881786 858.9292905030359 65417 46098 64221 ADA_20190625 3031937323.81649 274609.5950839828 0.09768652420302633 8.84462750259413e-06 212523520.59521064 19242.07448816464 152813 74063 101159 FIL_20210616 5783693818.5088415 143207.64104148527 72.96579312720303 0.0018078346645287518 470834042.17115676 11665.60474705331 92306 None 24500 GO_20210620 24536606.902603164 688.2404334886438 0.0225145992749852 6.324187038724264e-07 409045.59563995484 11.489793012072827 None 1090 102665 SNGLS_20200730 7714939.114318924 695.5895838361378 0.009765745714327752 8.804931440963769e-07 260935.18518828863 23.52627728927325 9105 2128 783082 MTL_20210708 115492062.28244592 3399.0883841057953 1.7886983504284562 5.264507379046642e-05 13862794.560731154 408.0105750737421 57274 4204 185263 SFP_20210513 218367061.7425254 4233.70922571658 1.9714387489846708 3.9112905024178254e-05 23306745.002678666 462.40062197316587 320919 None 22445 EOS_20190221 4005023500.423123 1009618.1265965612 3.884220850761359 0.0009786880142835398 2736761489.83809 689568.3255323377 637 62834 78671 THETA_20190914 103754432.5694795 10019.79970115331 0.10370314183296114 1.0018043409467076e-05 2319299.878649944 224.05152296458067 None 4027 310301 ZEN_20190812 42466732.39985139 3679.793897533171 5.9942557227765825 0.0005193707924226686 2585942.251950462 224.05832161138684 None 1768 272148 BZRX_20210725 28670318.45949822 839.1996232061924 0.20447131462956564 5.97619249846778e-06 17282410.52117379 505.1222578540861 28338 None 119612 IOST_20200224 77157485.90985829 7755.255835613695 0.006434580805618495 6.466471440482553e-07 46127480.11346861 4635.609401543612 191743 52287 97956 XEM_20200721 442400858.29413164 48287.61587221981 0.049156553996320795 5.365707422380319e-06 18612197.752223995 2031.623446049398 208657 17835 268527 BCPT_20190220 2760431.032702665 706.4727399193763 0.032965548332812386 8.421068108610729e-06 282736.596631013 72.22522474035952 9857 1320 2528232 DLT_20210819 9571016.163665364 212.35442234068077 0.1165040941901873 2.589429201545446e-06 355916.49668655015 7.910628173525 15296 2598 None RGT_20211221 248949654.50669348 5276.740725677886 22.126958646610905 0.00046933146052562314 26027014.751769908 552.0549408375686 None None 50980 RLC_20190324 27483948.648941394 6868.461774745569 0.3931698442864691 9.816427398293313e-05 322415.23440656456 80.49868998472128 24445 3310 890313 ETH_20190730 22532332968.39789 2373946.7539136955 210.82351650905207 0.02216407823477536 7155796188.164937 752295.7076744573 446503 443754 33996 ATOM_20210718 3065942355.0254574 97006.16879340557 11.082312962162321 0.00035093931739345823 517008415.3532436 16371.905484912379 166214 32385 47947 DASH_20190805 952828100.5368832 87048.55803288688 106.25007886464662 0.009703253136065418 237486166.65040255 21688.345231802265 320598 29456 93403 WTC_20210617 22037512.457781717 575.408581639736 0.755155058156981 1.9717411471218275e-05 10298595.067790652 268.9005845007199 65252 19815 517910 NANO_20200612 140685193.54490978 15162.551464675282 1.05857916222635 0.00011383041055207302 21071582.362460043 2265.8549845776874 None 51773 257141 PNT_20210110 12331045.58370838 304.7738041801884 0.4333246151197611 1.0756923418878995e-05 3176183.196125162 78.84610800520987 None 115 1089026 TVK_20211120 158529910.71191156 2727.1126144049776 0.36717387507856136 6.294657656210224e-06 33800128.33114302 579.4536349706113 63023 None 45645 RVN_20200520 121179747.89419155 12426.182434334722 0.019543433279410556 2.0019395840182102e-06 24268736.98915803 2485.9780028469863 31288 7726 210247 SC_20200907 150656405.20476344 14631.757689600938 0.0033602893658270456 3.270287560473675e-07 6520629.784607899 634.5981595489451 107007 30106 136380 NXS_20210203 29327399.416624445 823.7833215486488 0.4345967700942509 1.2233300515019742e-05 356936.4268531884 10.047268813124063 24345 3594 387114 POE_20190130 11146822.356836958 3263.8759798117285 0.004886439050435096 1.430579033974197e-06 445712.07893816533 130.48896113033814 None 10985 535855 QLC_20211207 10159612.606715638 201.2813519180797 0.04332790787356791 8.580120926048209e-07 4185971.0593719115 82.89377365543118 35913 5826 940522 VIDT_20210804 18073673.85781165 470.395788999172 0.3905052629022823 1.0163513666141232e-05 1102713.1982961777 28.69984536808148 29580 1621 1199855 ARDR_20200719 58227173.8308384 6349.488108454262 0.058168898297204286 6.34479162337803e-06 5914429.110878336 645.1182913596218 63083 6296 1213640 QLC_20210602 8264349.627810809 225.39946311214467 0.03440402088136427 9.379014954855776e-07 1191549.9416972839 32.48330990488922 None 5642 940522 OGN_20200313 5181478.061222939 1076.6686580704463 0.18236209936338843 3.7562304205341246e-05 47279983.800831124 9738.564869290865 66425 2167 120835 LOOM_20200407 12943509.835908836 1779.765114542109 0.015515925906043285 2.1293620295409933e-06 28381950.7261397 3895.059087450678 21574 None 466308 ZEN_20200612 68040652.15113524 7333.18030089873 7.353236179014264 0.0007907031642141607 12136380.417924894 1305.0409595093977 None 5930 57737 ZIL_20200129 54010364.56659286 5779.01275144361 0.005277373968359671 5.644010685683925e-07 6550101.139512403 700.515844534876 67595 10518 250475 WING_20210310 37640102.51427388 688.6517069577773 36.76189322123495 0.0006714086506344286 15610058.27463744 285.09761723710915 8978 None 327029 RVN_20210902 1291323414.699893 26546.304255769683 0.13504144972961932 2.7754761480519793e-06 92530086.4921072 1901.7497853453629 69782 51340 58172 STORM_20200322 9288545.247272452 1507.4789950626825 0.001212022461821869 1.96688177842052e-07 1815443.658529202 294.6119535064332 26116 2519 875750 BTG_20200418 175090633.60039508 24733.518776216573 9.948394463802247 0.0014131957842202984 45766217.03513908 6501.212352314639 74687 None 211621 TORN_20210823 52239376.18828652 1058.9044737209017 49.2879716918722 0.0009989070215011581 4311379.787298648 87.37765815997206 None None 123832 MATIC_20190613 51535963.68612039 6344.5046528059 0.023710133343086148 2.9169886850935486e-06 45489808.02600256 5596.478660784099 15739 630 234155 MANA_20210809 959376284.9024761 21807.804656444834 0.7219202756170008 1.641469801627637e-05 125469075.24753678 2852.8593116595266 155598 35142 19440 THETA_20200129 108131880.142649 11569.91846280664 0.10654619933591634 1.142064111792211e-05 4031635.8166770893 432.149303001075 None 4018 536421 RAMP_20211207 86461816.63550481 1713.3350531748456 0.23057915107193136 4.568840032267903e-06 15440861.653809879 305.9549249300046 36702 None 126392 REN_20210511 765345671.4063771 13707.649408118046 0.8647545480313333 1.5476480076726523e-05 131460297.32684065 2352.7400660582302 76792 1157 67818 UMA_20210408 1405941604.470655 24961.227235520255 23.379595229554187 0.0004158300216438809 106389184.63098727 1892.2404991791582 33616 None 121896 MDA_20210722 10355358.343062451 322.0816922923907 0.5289212651337808 1.6388906833715653e-05 1582496.2435845314 49.0344881373828 None 389 1618266 DCR_20200807 194651452.02124292 16544.512519373988 16.464234134569324 0.001398361703948989 6676573.29120652 567.0633889024247 40659 9880 220512 SUSHI_20201018 65834169.670680076 5793.447327100549 0.6594763735262619 5.802059850270498e-05 22830764.5762734 2008.646068556977 11759 None 57516 XMR_20200914 1517704249.3316364 147030.03621302533 86.02023079510431 0.008329472527213435 195848693.6559867 18964.333136746536 323279 179438 87669 NEO_20190627 1354321772.5476384 104280.75505116435 19.21121242864089 0.0014801028787583858 1318173859.720503 101556.99083144209 322860 97924 201306 CTXC_20210819 34102473.70100007 756.9839785746344 0.18721856300927248 4.157006743580265e-06 4889175.992725257 108.55941443852988 None 20607 1047878 STEEM_20190621 125657206.64385691 13136.413148366739 0.39815227260269764 4.1658950741199655e-05 1162462.5550235894 121.62927013238578 5752 3748 341474 STORM_20200324 8984857.283712106 1394.6758935223438 0.0011824097078520692 1.833611620944476e-07 3247179.5847422318 503.55356373832524 26146 2518 875750 MITH_20210112 5266200.038674988 148.7512791742297 0.00852854019895446 2.3992476723782263e-07 3838148.2893702714 107.97473113444448 23986 2122 507648 SRM_20210731 194444100.62742475 4657.815729812546 3.8901093914947302 9.310546866444284e-05 115354268.6253267 2760.876921941342 99506 None 31878 LOOM_20200422 11508556.139253847 1680.505974278121 0.013793280738652956 2.0152671457476003e-06 20852014.64259577 3046.5833928915617 21567 None 708796 WNXM_20210702 116453875.60605356 3465.8175564300846 54.361168795596 0.001616611347009657 9989081.126417084 297.05876920869497 30606 None 117063 LRC_20190712 42216855.52915307 3727.4193039959073 0.0439555666028309 3.876818849258893e-06 5530133.618301717 487.74996905560556 34919 2455 719839 TOMO_20210729 228805958.76067632 5722.299109090873 2.740064976721202 6.848123948199407e-05 7715940.433473053 192.84110747101928 50586 2216 130894 AION_20201129 36006984.31007341 2034.0936361250674 0.07532069859286855 4.2519709095830275e-06 1158383.8702853804 65.39257615236697 67948 72518 690997 PERP_20210519 256346637.05046514 6014.092182673968 11.82537681868483 0.00027641735456891074 72229678.79897192 1688.3636810141363 19112 None 260498 ANT_20210602 169279177.24641672 4613.511210825395 4.820985892743299 0.00013142678566876605 33691760.75022375 918.4842929302421 None 3000 108427 RCN_20200323 19552547.695594598 3354.547333114415 0.03812325235647093 6.538153320435727e-06 1425587.7719174626 244.48888403805498 None 1132 875851 NAS_20190312 36227582.66322683 9372.232205893702 0.7965776144030468 0.00020601178833815724 10908710.773309832 2821.22290940528 23494 5160 511386 TCT_20210318 20552307.776807636 349.1842106585553 0.0355598897940926 6.033002281687741e-07 3604394.6305132797 61.15126103006682 None None 642117 PIVX_20210616 50141297.794234835 1241.711035687746 0.7662678732902624 1.8984432096208074e-05 284154.657182281 7.039985600511865 67232 9818 321075 IOTX_20210217 152196030.02551657 3094.6971045413407 0.02504657622654561 5.089776130820276e-07 52041070.616152756 1057.5393484866665 32137 2164 483474 POWR_20190205 32779938.6410776 9462.231359972777 0.07888587505525382 2.2771134777883118e-05 1278463.6624472458 369.04031736760754 84861 13284 646917 VITE_20210108 8706910.651406184 222.4408617202158 0.015498890823970993 3.927506888317467e-07 935935.36543874 23.717133287340435 None None 1009411 KAVA_20210703 288690288.3943336 8541.074755883785 4.137025950719678 0.0001221422946193956 30688480.458863404 906.0521897320932 110762 None 48831 TRX_20190528 2335234762.119259 264792.1125486007 0.0352200652667936 3.994235340595611e-06 1754654078.6043406 198991.71901562274 422824 70674 115818 GO_20210724 20383990.388263814 610.0592384732155 0.0187202268020019 5.597832998286664e-07 512250.36632911593 15.317613586363784 22452 1104 149047 UTK_20210314 273671453.9357864 4460.273677986791 0.607374415838159 9.899798862238187e-06 38705453.08807231 630.8731327033914 65247 3537 76416 GAS_20190805 28514149.33516951 2603.930874788271 2.0462267293082097 0.00018687097591291567 987975.4010707034 90.22652511164021 324436 98211 192021 NXS_20210427 91088078.76814331 1691.9919694440275 1.3355977461479376 2.4784780852499155e-05 1231337.546158882 22.850017024228777 25303 3857 432623 LOOM_20220115 65159093.70687923 1511.9902491697148 0.07795912382302318 1.8081607423156515e-06 1923045.1655386453 44.60253788793852 40110 None 403167 XLM_20210107 7644098481.334457 208552.2998394252 0.3407261247615719 9.231424766536872e-06 10468792259.681915 283635.04034034285 316510 118025 34006 QKC_20200506 10219599.399009366 1139.6849867944907 0.0028936711201534827 3.226066125514335e-07 2206008.0844927514 245.94114736906775 49668 9192 723829 PPT_20210617 64630701.3691578 1689.739898672709 1.7916523692914472 4.6783427123530564e-05 3503273.239559092 91.47708065797606 24306 None 649684 DLT_20190725 4873366.059930629 495.7604303391827 0.06074773953523163 6.179779052868381e-06 311767.11632960755 31.715614599116 15072 2667 2867435 FTM_20211011 5199713376.654638 95027.64851930008 2.0445764126024835 3.7371149361202834e-05 705914355.2189173 12902.834368280683 175929 15231 32912 WIN_20190922 51518962.97978403 5158.8965791730925 0.0002455751765347778 2.4591044682691885e-08 5934744.469149485 594.2846849610047 19318 1436 55961 POA_20200407 2098926.834097393 288.5852753004544 0.009475399844795616 1.3006736748607624e-06 41840.608361213475 5.743396450491776 17333 None 691851 OST_20190324 15232064.847407406 3805.979425748081 0.026959994751061173 6.731205118332037e-06 666225.2849756392 166.33901785213547 17680 744 1075482 FUN_20210828 329928404.66567564 6726.185387336795 0.031135991458649093 6.347218130099643e-07 28142776.79932117 573.7037260214779 13815 400 124228 FUN_20181231 25306031.469732758 6661.048219137587 0.004307723422160665 1.1334092873894972e-06 150439.13018481174 39.58218544419443 36677 17924 475324 SRM_20210718 134963093.18740135 4269.707052048048 2.699609966274638 8.541037060479911e-05 20197528.732191883 639.0102406897437 96176 None 26595 BEL_20210117 25176857.81718695 693.895661079909 1.1236782430931327 3.104986050003076e-05 11410559.625335375 315.30047571151727 None None 430969 BTG_20200322 133830702.94906534 21719.975326538002 7.633251342876792 0.0012394864575265925 27304152.129870906 4433.645019537136 74883 None 195914 LTO_20210723 46218293.033575244 1429.0352750007994 0.16075040526126091 4.965489208893024e-06 4470503.894450904 138.09133986401048 10946 4329 391514 IOTX_20200621 23019948.196603805 2460.6382119826653 0.005321225024935033 5.687296064732406e-07 4988075.050705546 533.1227203046896 24444 1867 670606 QKC_20201101 25590435.23910833 1854.5494187465824 0.0043601950411063526 3.1639793289838524e-07 1088594.8703451385 78.99398157509769 None 9215 94365 JST_20211011 120476283.11820783 2201.7709550049194 0.08399742295640583 1.5349847297699626e-06 228329093.19766966 4172.5288596358905 None None 184239 WABI_20210523 13328511.07087785 354.32072770246157 0.22510661229054268 5.9895934939206285e-06 786946.717937134 20.9389270881781 45261 7822 265814 TOMO_20211007 210937299.5393813 3799.742820532489 2.4419265721960124 4.401489345183289e-05 9527507.256999874 171.73006819828035 55074 2299 138280 ANY_20220115 535049189.7457049 12415.598678534912 29.12084109628075 0.0006751797276495208 77869387.12680885 1805.4365743999329 806 None 10549 HBAR_20210124 670057967.939738 20933.47140704755 0.09618061223282712 3.001126105089866e-06 110815020.7429704 3457.76392837615 None 7228 166052 ONG_20210806 0.0 0.0 0.8049722061822295 1.9673824885966976e-05 11922714.311407587 291.39564288874874 142001 19761 173647 THETA_20200414 77442444.60850205 11297.30188862732 0.07737511834899934 1.1299899016511026e-05 1247307.0952005642 182.15732032578353 None 4024 349819 PPT_20190804 24874717.497923974 2305.3525442182968 0.6867868387861186 6.363891681287897e-05 1277257.6194439016 118.35301261170466 24112 None 744473 STX_20210117 439231020.360485 12083.037912746735 0.4767567588214958 1.317158015942357e-05 6243164.59494581 172.48280467816676 48587 None 68593 CMT_20210106 7359950.66934752 216.59526423492952 0.00924961974447385 2.711979015348632e-07 2473091.6060307445 72.51079205280067 280619 1628 1272511 NEBL_20190318 22713424.508976094 5753.377828108692 1.5215420403147761 0.0003854111138469149 881444.82445207 223.272589639646 39851 6170 631172 XLM_20210202 7158987715.032294 214332.802557456 0.3214377875664309 9.623520056099234e-06 3397795041.1913276 101726.5237325636 352251 133559 30646 WTC_20211216 28220038.016111575 578.4407864089017 0.9677542118449797 1.9832037645803324e-05 11508498.098393463 235.8418746624431 67666 20385 392507 OST_20210115 9747919.260873307 249.58896341775616 0.014302220968899115 3.645828500243441e-07 2640334.642144471 67.30568147033276 None 731 741572 CRV_20201015 44484356.66745618 3897.6863111857683 0.5064081917145135 4.4312830674329315e-05 40228581.45501377 3520.168803449076 40617 None 12764 RDN_20210401 78873189.84860712 1341.0161402803428 1.1811299117675667 2.009914337378072e-05 5446769.054758019 92.68700340644415 28222 4466 648172 GXS_20200511 30032121.39271191 3429.8570381343975 0.4630685756543484 5.279953688439067e-05 15349353.66184456 1750.1484821657612 None None 477112 VIBE_20200913 3330773.4798550885 319.5963045988777 0.017833457576652594 1.7079125684065193e-06 138298.1679875228 13.244833666059174 18754 None 2981360 UMA_20211216 586075076.0555662 12013.739485164351 9.24634377643984 0.0001892053941657089 38867846.640093535 795.342074847964 None None 199741 MTH_20200806 3092414.517484952 263.9819727478718 0.0089014328920315 7.595643967506602e-07 162340.32904033913 13.852593800511967 19058 1901 1234165 FOR_20210106 7320294.486898484 215.4481558687329 0.013158741287246065 3.861576190189794e-07 4725225.265337141 138.66689054518184 16834 None 227730 YFII_20210729 103361312.9190968 2583.690127508791 2601.89253826264 0.06503312032756803 35532599.669408366 888.1211640642639 17635 None 545530 BLZ_20210702 40755655.264681466 1213.3591384466174 0.13896708687637213 4.132192236665253e-06 7782533.766926169 231.4139724457686 63919 None 284185 ZRX_20190714 153721772.8995665 13506.169898955983 0.2572865383592615 2.257219554774232e-05 34486351.37653051 3025.547593602571 151318 15986 206645 ONG_20220115 0.0 0.0 0.7145900910667409 1.6573427739192145e-05 5647352.684023545 130.9785747052227 None 21083 103230 REEF_20210310 440284353.6576858 8052.22949568817 0.03911470692227124 7.144560647520435e-07 131895335.13108753 2409.155775707829 None 6960 44071 LUN_20200718 2316485.6702543925 253.08241281571762 0.8531539511041526 9.319378745991782e-05 200911.73177916024 21.946478950720223 28319 2120 1675739 ALGO_20200330 100004565.88738886 16912.0362524385 0.14375775134890958 2.435463650529493e-05 52337099.47134795 8866.65951161465 16265 832 354014 COS_20210120 27734657.816047728 765.8791680032211 0.00900217178737602 2.4976972089988286e-07 8910769.118590793 247.2337085229579 14421 None 378436 ZIL_20190207 156767214.58387026 46015.36961578745 0.01654702797602905 4.8566307354790425e-06 10813381.468348742 3173.7784495028645 55881 9900 190156 QSP_20210105 18266693.99542557 583.856105668465 0.025384051208333328 8.113473236206749e-07 838306.7869918803 26.794697285184338 58356 8174 263794 ICX_20200320 109903450.14077501 17758.154684936842 0.20763409722046133 3.3574879547510136e-05 27962338.25488628 4521.57016281247 113255 27514 126672 CELR_20210616 216158371.8313164 5352.422544330707 0.03808074200458793 9.435119806925792e-07 49611001.06166396 1229.1927996096497 55935 None 143745 WABI_20190312 9965900.079498295 2574.124298727982 0.18994147957649016 4.912792239397531e-05 1999418.7267866 517.145008355463 34761 8007 1659091 DOT_20200907 4394131227.7377405 426760.85184102395 4.78962789693905 0.00046640876901100524 511543436.75403696 49813.54496965958 None 4441 45901 VGX_20211221 4828153379.029147 102337.61366500473 237.0490772612282 0.005029724925429982 219746016.23499507 4662.587291588977 None 14023 13960 NXS_20200224 12853233.860401226 1291.9109790451514 0.21451624907746542 2.1557942002494397e-05 68934.22780919466 6.92758749739609 23372 3534 558466 NAS_20200412 11627990.50137659 1689.530059719189 0.25584619805243913 3.7177186053797037e-05 3703441.329182894 538.1495929290055 23498 4962 1093908 BTG_20200308 191060824.1831119 21495.00000719832 10.929096605038863 0.001227928798190884 24460789.877549507 2748.2699991224295 75063 None 217881 DASH_20210826 2698345010.424373 55049.21371889839 262.43225740484576 0.005354585539404148 520719256.92679465 10624.592536001268 403464 42050 76415 LRC_20190314 48895845.07611629 12646.357685399535 0.06201809527349024 1.604270088185564e-05 3122042.429273261 807.6028877123905 28591 2468 761823 POWR_20190613 52245724.10128229 6425.1107478408985 0.12466018203886148 1.531054226266614e-05 2346619.7868371774 288.2076765264071 84741 13218 613771 FET_20200320 4323984.739403885 699.1976208831029 0.012711382319313083 2.059182964177352e-06 4034860.377901638 653.6280275659456 16604 360 584622 YOYO_20200106 1848033.8321116192 251.6772794104199 0.010569332030411235 1.4390101359963777e-06 302931.64951860777 41.24401740025739 7498 None 1425817 LOOM_20201018 17352100.3454948 1527.0873942195644 0.020830131079082884 1.8328827941260522e-06 2357563.367348887 207.4464781652207 None None 390789 XEM_20211007 1545043345.0562034 27831.8124419373 0.17191225378995023 3.098925296515759e-06 92523944.4816058 1667.8554656016584 371459 22126 147813 FET_20191022 13825136.547793956 1683.5399209866237 0.04059665231190634 4.939820028193683e-06 4843700.710256325 589.3838140954978 16334 311 518889 KSM_20211125 2956933877.42875 51687.94643636496 328.80994743020165 0.005749166115841729 101922183.82350974 1782.0858835637896 193142 None 76536 ROSE_20210707 97150040.59854373 2843.863960441866 0.0649728376002039 1.9015041364497026e-06 5061819.174391974 148.13990666826825 22217 1644 188060 QLC_20210304 14385947.045489155 283.0722343678853 0.05977548269096565 1.1797406104439836e-06 1127401.1605501613 22.250609672847066 31016 5611 940522 REN_20191017 47244413.06477618 5899.45101246681 0.05714013434331898 7.137022207030748e-06 6327059.285808116 790.2740017497433 9844 877 270891 AE_20200531 46220603.13342669 4769.451986738073 0.12942104932557233 1.3379107645338422e-05 11197646.528830184 1157.5745913386538 25294 6345 485240 APPC_20200417 3063984.942733934 431.51580709871223 0.02803105843638034 3.954237774683982e-06 53938.938543034434 7.608966632398287 24731 3216 778214 AUCTION_20211002 180263870.9061581 3742.8424606684102 25.13405771568945 0.0005218617460852455 4159924.5903562806 86.37306139991603 82067 None 114996 CFX_20210614 281670069.4534072 7237.069751053616 0.3365117165082646 8.620201466438688e-06 2521001.461903296 64.57885248182481 None None 132746 VET_20190920 233783688.3046805 22825.933935182293 0.004218445482884013 4.1161057843009273e-07 31269728.083491586 3051.1122914875837 113671 57488 165877 EGLD_20210718 1444868640.9606814 45710.021013128244 74.38630052309297 0.0023532930701151405 23312134.991138227 737.5052306466441 293665 9686 35166 LEND_20200329 24096084.80864611 3865.2873524343677 0.020648625770885425 3.3026877624155624e-06 953841.8784406955 152.5642400690607 44141 5733 109064 RDN_20201015 13099812.435086254 1147.644629283733 0.19644136628853753 1.721052992772134e-05 1175397.6595706937 102.97839492371433 26456 4378 973917 NXS_20200502 10252158.405060155 1156.9157019594772 0.17112219156122155 1.9376263792028483e-05 191671.12648618896 21.70303146674557 23612 3522 609605 AST_20201208 15859362.407785987 825.7049098924625 0.09204814970375792 4.794219033906107e-06 1294749.3296546557 67.43548784353355 None 3459 197267 AION_20210620 78024621.83449022 2188.664504371233 0.15821720668947664 4.444205689479956e-06 2846763.1521994304 79.9634961476544 73283 73364 263057 FOR_20201226 9356218.152424514 378.8692763957623 0.016815869589568308 6.810594651454011e-07 2152430.1054837294 87.17556285718324 16642 None 157900 AUTO_20210823 45405161.33735773 920.3733271403079 1299.4062717031238 0.026371154419857303 11026579.35282793 223.78191730220547 None None 13897 NULS_20210723 32021350.276391465 990.0884545301333 0.3418192845248644 1.0558604601594612e-05 29462310.93985769 910.0741413568909 56421 5363 334900 BCH_20211011 11033534403.616665 201643.9663655195 584.635563069526 0.01068607796444831 7546165832.800974 137930.22784756165 None 642113 338194 BRD_20200404 7176964.4845573865 1067.180769254411 0.11515745427348206 1.711576871982078e-05 450306.4630615903 66.92872227358286 None None None BAT_20210310 1107391300.229308 20261.80256390383 0.7437344061690138 1.3596501988001644e-05 378282566.10557985 6915.532775435509 149133 58157 20502 BAL_20210603 331835118.68924797 8817.68726115307 30.707515697170585 0.0008155237477780008 38916547.2854649 1033.537483325179 83845 None 53352 APPC_20200502 3317867.285571867 374.4297098233866 0.030524172328684505 3.4539572285502103e-06 291441.83255669865 32.978048132534305 24688 3213 1060091 UTK_20210201 111502675.78583166 3373.934307028916 0.24888698323139405 7.507456393513058e-06 10071795.945261983 303.8068439003774 58165 3208 107548 THETA_20210131 1992902380.850902 58256.76374352627 1.9933281761436035 5.834507035532366e-05 66002618.826339655 1931.908395790904 81941 5148 46280 REN_20190110 16982003.12574357 4269.174486344426 0.0225788292670755 5.677387025688063e-06 356130.5868230551 89.54809610205149 None 782 738161 TRX_20210718 4027700145.751839 127433.64883894224 0.056187908324615767 1.7776753432779752e-06 795005358.722869 25152.412077891146 1073099 114074 24266 BCD_20190902 118666126.73895612 12199.955363998897 0.6303961119732832 6.479236669739428e-05 1174115.0855404066 120.67602214288492 21393 None 2392200 QTUM_20190205 148074613.03550768 42743.10157873908 1.8228528004078828 0.0005261832586537949 109303080.27327128 31551.341362406205 174321 15203 244025 MIR_20210519 492881004.71698946 11515.579571946118 7.469527782399855 0.0001745914946593207 41280405.32400207 964.8812984727298 42633 None 16091 TNB_20200308 5798555.708214672 652.3746083590438 0.0018731729726291053 2.1045866096779036e-07 1029592.4058188344 115.67892673953416 15211 1447 1374605 HARD_20210125 32317108.324938133 1003.2481013005936 0.6802051778217334 2.1077413257735956e-05 8206551.226319356 254.29514102176557 None None None MTL_20190806 16114262.086178347 1365.2361342814208 0.3386141353658299 2.8688142882844693e-05 1053319.7549594596 89.23959302216792 None None 712205 APPC_20190325 7726504.371037668 1934.9004522149928 0.07397108285664349 1.8537384599943644e-05 923386.6336737784 231.40357693602124 25484 3414 1389484 EOS_20190908 3663378253.461461 349932.89778229874 3.571566897575373 0.00034116396820322686 3172309137.507079 303025.9840447049 1301 68158 84416 PNT_20210729 22141992.296771877 553.7292813181975 0.700026870754402 1.7489522300039683e-05 5842237.748036787 145.9628932048113 47457 319 305973 KMD_20190126 77790257.7122645 21814.333606500564 0.6972554040458242 0.00019552785194582145 778353.0332679445 218.26965523295343 94784 8240 233047 LUN_20190807 3044409.952889109 266.3133385322277 1.1373022159789419 9.931656528191298e-05 340643.69526740815 29.747204677497994 31068 2206 1249671 COS_20210427 86935036.18964113 1613.8045864365183 0.028913139619298114 5.363610501360502e-07 9030172.858287469 167.5166744585693 None None 214516 IOST_20200208 87707871.95436102 8953.602447105575 0.007294573923849254 7.440689504797036e-07 52622450.809088945 5367.651648189369 192358 52315 89535 SNX_20210617 1413525800.5286102 36955.836605905766 8.985451809704324 0.00023489742886402998 62720407.305616125 1639.635126358632 135658 6890 43067 BTS_20191020 69496577.70070386 8745.429146860934 0.025573155187351794 3.216916323402394e-06 12031301.737209847 1513.4499699650814 13534 7120 129148 BTS_20190316 137561089.76114926 35052.64008367543 0.05094839613074247 1.2982251191911293e-05 11725321.36032973 2987.7499345623714 13781 7209 180886 SC_20200913 155333677.9998765 14896.84000696742 0.003471342728428472 3.324593603968938e-07 1617657.205679008 154.92716277684914 107070 30118 136380 LUN_20190616 6808204.002817436 772.0921002903111 2.535413879669187 0.0002875460126953403 690273.8006736487 78.28523802104591 31360 2225 2294680 CELO_20210418 464428537.8052977 7704.160961279725 4.50673608585063 7.497458661975336e-05 34481976.837360464 573.646184281734 21682 None 83997 POWR_20210718 73684796.97614226 2331.3360485711314 0.1716041286267635 5.429540787003767e-06 2097201.9481860916 66.3553004661465 91498 14009 159703 NXS_20210428 94458099.45257755 1714.2267949780928 1.385385307251584 2.5148213307788717e-05 568791.1111797243 10.324983321715187 25299 3858 432623 QTUM_20190704 499049292.73418725 41620.71715296822 5.205571638834693 0.0004337509688036888 615378702.2343082 51276.0416711968 178584 15369 346886 ETH_20210217 204528599567.24704 4158807.9844824886 1782.5753090505934 0.036250908612232714 33252538989.620327 676232.160244299 703407 665270 7379 PIVX_20200927 23248831.00894567 2165.192789268795 0.36128079586600154 3.365462325080813e-05 186078.86367984148 17.333924536653946 64828 8626 315736 STPT_20210823 75672689.40192859 1533.9032582889415 0.06213975997285686 1.2613313761356093e-06 9420297.917863447 191.2160159861628 30789 None 819629 RCN_20201228 19124964.249703653 720.3463144495444 0.03685331003689761 1.4013566036646696e-06 347902.5147543648 13.229082706396053 None 1130 2745170 REP_20200319 87856757.01321937 16324.920115855088 7.993706732221231 0.0014826136966367151 28747828.754255116 5331.934994290436 130569 10106 262137 SKY_20210711 19231160.264648918 571.5706148379228 0.9157695364118533 2.721764832561537e-05 946910.3758401355 28.143187320332764 19638 4406 442973 SYS_20200217 24760903.194060937 2483.882546767584 0.04313051369774677 4.335406336858093e-06 9481631.87832334 953.0776103690649 59058 4523 833412 KNC_20200621 231622790.3202533 24758.46153827854 1.2913925641872304 0.00013802332759675756 112244024.0230669 11996.579605725503 110893 8050 105194 SNM_20190131 7701047.602543877 2226.781732040627 0.01927189089725695 5.572526856958526e-06 80749.67304764995 23.349017703950206 31441 10107 10310619 MTL_20210805 129243830.40608262 3249.6904799056065 1.999131754378876 5.027375439636204e-05 36098110.97422303 907.7878740686398 57432 4225 202262 IOST_20210724 485801078.76958644 14531.17564601352 0.021421896124292895 6.406574123899314e-07 79564491.15645766 2379.508365023421 249076 53585 204537 RVN_20190305 72958435.90747195 19639.04767274612 0.024068960868121624 6.478914522262821e-06 73212652.07696927 19707.477915388274 20051 5863 345292 FXS_20210826 215963070.26257655 4405.9762506076395 6.749388750408024 0.0001377309398507105 13158181.477024857 268.5115302400213 13856 None 93970 TRB_20210909 103704360.47630271 2238.4560576107747 52.892524317619355 0.001142462986393819 55937978.619668715 1208.243904618707 None None 492317 XEM_20200208 533466459.60058606 54463.25211615938 0.05887644502844466 6.0055782719621526e-06 45865769.222181834 4678.449368580062 212924 18073 267921 ALGO_20200914 303292872.27150196 29381.984014915455 0.37796738772160937 3.660534494264349e-05 200388212.48340222 19407.17606514098 26685 1295 193545 ONG_20190623 0.0 0.0 0.44168761829784087 4.117719002237311e-05 9971345.41046987 929.5981316568478 80450 16246 232873 AION_20210421 163744285.1271072 2898.2033921567713 0.33238643218281955 5.895476170234965e-06 21294810.769657735 377.70208795143833 72585 73129 244178 CTXC_20210212 1824052.1037276513 38.253340050356194 0.18084004270161522 3.78752957930328e-06 10165549.811728708 212.9081592030584 17499 20124 607104 VIB_20210421 25371054.185180813 449.03874151007795 0.13903095647501051 2.4669091884750655e-06 2640441.6220380715 46.850930642978824 31826 1224 3723426 RCN_20200713 30759063.21362749 3315.2687752887414 0.06011246923222826 6.47503369944704e-06 668069.8711600932 71.96135817737556 None 1135 1147730 STORJ_20190221 35072452.064576685 8843.089518159864 0.2579328255049184 6.498964055575454e-05 16281853.696535336 4102.431775590491 82862 7606 236494 OCEAN_20210427 526547481.98681253 9771.212501115333 1.2345543236815972 2.29019353214031e-05 102164689.72512056 1895.2338275714258 103243 2804 70658 FUN_20190813 13819274.583602356 1214.1093368028685 0.0022994930148821607 2.0207008255147238e-07 63131.01716244767 5.5476967170643725 36020 17451 379326 ARK_20200310 26667816.504404068 3371.9877357780547 0.186884516096132 2.3613221621944066e-05 220422.27748368366 27.850782918572676 62707 21971 80258 MTL_20200404 18498195.765325468 2750.7874235539366 0.28699821812127796 4.2651817674821266e-05 9925673.202296803 1475.0893106427816 None None 465912 PNT_20200801 34161455.81962095 3013.661753087077 1.182099125239923 0.000104284458018743 5302854.662404341 467.8163722596115 4299 75 424006 TLM_20211011 240488957.05795503 4395.744911408801 0.1938428285618708 3.5430954079935124e-06 46165841.82614871 843.8278753664288 67457 None 16687 POE_20190614 13887623.692399058 1688.8047808649071 0.005519798653723916 6.709127487605178e-07 660582.6129028526 80.29156938669472 None 10849 931861 AAVE_20210513 6952088129.942914 134893.28091278148 517.3578193382345 0.010313680071264675 2866732120.333255 57149.14674906189 199614 9414 14216 CVC_20190509 24534586.711637706 4122.008103770138 0.07184134451420286 1.2060383756701992e-05 5035018.407269846 845.2549799054464 89107 8204 436326 WAVES_20200418 100073426.118465 14136.01229911021 0.9986622136333608 0.00014156680120895482 43147871.70289781 6116.488731189909 47 56863 71676 IOST_20200308 64813655.38483278 7291.499639150396 0.00540719125584405 6.075200998146206e-07 39522082.06270223 4440.467907190108 191551 52267 110553 POWR_20190826 24892133.03832262 2465.6967083853324 0.058378395605196295 5.781630310607656e-06 931479.7443813 92.2511053618718 84082 13091 483233 IRIS_20210204 69207041.78586362 1846.6987851165584 0.0730840333894614 1.9484238010138787e-06 9712102.04059262 258.92510164189747 12345 None 896024 TNB_20190605 12086048.16199163 1576.4523887926682 0.004397974049290706 5.725447636094358e-07 596468.7364281253 77.65053815034152 15792 1495 509934 SNX_20210408 2952667390.190738 52421.95084283809 19.448098383463705 0.0003460945201872692 259804877.4956378 4623.4363199036225 108421 5836 23689 VGX_20211028 4931736708.584863 84264.66759110871 246.97064201702634 0.0042204205827808495 205142602.06579039 3505.6314916329 355324 11664 31177 STRAX_20201226 48786806.73221192 1976.5853599881893 0.4867405332099381 1.9739546057884364e-05 937276.537012254 38.01083351188224 142765 10294 267900 DASH_20210704 1410881612.8625314 40720.11435149159 138.35571348767655 0.003987325526241702 662286843.2064298 19086.69449958239 400156 41327 56983 APPC_20210124 4129756.955521826 129.01891072541778 0.0365713407622055 1.1411364817880816e-06 1871492.7001500581 58.3962346206451 24246 3117 531818 ADA_20200324 908533570.968667 141027.26730927703 0.029350724334646947 4.531047194257414e-06 122524431.85149188 18914.830749622928 155446 77223 42201 NULS_20200217 27904786.722699 2799.26027611177 0.3401900225840409 3.4195326074305456e-05 6517715.848096888 655.1497806796554 22684 5211 626543 DNT_20210201 93868758.60105476 2839.865088290642 0.12482597309641315 3.7743572173781853e-06 13804989.647025412 417.42083812826866 61686 6759 232543 WTC_20210626 14456512.17298573 454.34620969477817 0.4956618576144417 1.557531461972845e-05 4019347.391425584 126.30102402621165 65452 19835 517910 PPT_20190830 17793916.349488363 1875.0841815193248 0.4908900808199086 5.1759025900965404e-05 781685.5542972004 82.42024932282645 24019 None 771976 NPXS_20190523 159810764.04821208 20855.31266150681 0.0007461365465344473 9.742803823084318e-08 17771014.869325493 2320.480244710265 60736 4393 188211 XEM_20220105 1135693420.1871893 24521.604869176506 0.12536031078391996 2.7245783188478385e-06 20924585.507053077 454.7744947893613 377029 22512 341905 GO_20190702 13982120.511633065 1316.8534650217375 0.019025986563832482 1.7947481002633791e-06 1428512.5223704423 134.75359751386043 9972 677 942776 VIBE_20191113 3419013.7493123827 389.3073561801914 0.01828565301776474 2.0804055031797414e-06 148361.72147578423 16.879492437026 20078 None 1037797 WING_20210826 47643514.286858514 972.0004081631174 25.2413485095779 0.0005150165648879969 8648464.685750075 176.46056320327068 14699 None 465613 VIA_20190513 15022079.795488317 2160.1815390127326 0.6491786279022946 9.335216605208876e-05 498544.9665891205 71.69098073337253 41285 2233 2027413 MITH_20190130 20314616.806178067 5951.429429854803 0.04149671764561128 1.215596690737038e-05 3479667.1931629954 1019.3268684523362 42 1975 490851 ATOM_20210124 1987300468.7884297 62085.818736709945 8.334086248300263 0.0002600487065033231 865726890.0385504 27013.298306768196 51933 10500 102282 ZEC_20190522 493502427.62552035 62013.90791550741 75.05783679477811 0.009432860099934838 402723312.44158006 50612.07233603703 74915 15148 175759 CVC_20210408 364226667.8074234 6466.305339573431 0.539529898413393 9.60136758033065e-06 88164619.26567858 1568.9601626137949 99209 9496 118406 POLY_20210823 280932325.50237846 5694.564483600939 0.32327534474351344 6.560242306168342e-06 10607374.314965878 215.25596328298047 48728 5956 188790 RLC_20210420 184967325.4807269 3304.075041728236 2.614110468737561 4.6711569336759236e-05 30357044.750629444 542.4503737261497 36742 4260 302860 APPC_20210324 15437329.778469766 283.0104555654993 0.13902195573823534 2.5503025060766242e-06 4082771.4950716817 74.89681986077694 24609 3122 872294 NBS_20210422 0.0 0.0 0.03462565161502931 6.402462982165187e-07 54927630.58553465 1015.6404431946808 None None 497911 GAS_20210401 217488921.3087521 3697.57707394216 15.788603734212922 0.0002686890112000151 35221146.49320879 599.3902427283203 None 107252 91590 MITH_20210428 69526955.92282888 1262.045665099761 0.1133822688367184 2.0584206427954014e-06 64187961.373046845 1165.3129370652093 30870 2642 258183 XVG_20210120 206727312.68539244 5709.094380978886 0.012511574375739135 3.471398362147206e-07 10495771.384642193 291.2103824820686 288854 51379 179972 SXP_20211204 418590724.6686607 7796.1149707905615 2.170610438234977 4.040868283453593e-05 65216155.66273871 1214.081948304927 None None 172109 VET_20201224 875647859.0632533 37449.32135429026 0.013309811173480452 5.708023095577315e-07 222217495.52981392 9529.981907277803 144510 69385 129519 HOT_20200421 56156328.62846527 8200.696419405687 0.0003161796583898764 4.61800248496804e-08 5454561.040810573 796.6728969582441 25056 6956 509246 BRD_20200421 6928434.833403136 1011.7825028464214 0.11184782022125685 1.6336076594880677e-05 435427.3891768261 63.5969048572453 None None None WAVES_20190509 219029983.9154191 36796.79154865637 2.192018251752829 0.0003679856146429396 25651638.61590558 4306.275276277656 140126 56774 41172 NANO_20190726 185520134.48079228 18728.394909407492 1.3922337751256437 0.0001407911102038403 15088759.922233067 1525.8667753974646 98863 47076 306067 NAV_20190908 7130436.658818639 681.0702322293164 0.10783059192133741 1.0299538414728364e-05 36653.266281751276 3.500970525781408 51435 14197 463565 STX_20200301 68013308.97515564 7909.324488929731 0.12177889844920635 1.4238302895473263e-05 550674.7538118032 64.38450373184273 35786 None 34581 APPC_20190818 3778886.280529574 369.69675486939263 0.034802616719858494 3.404816527183731e-06 127053.59692529765 12.42993278728245 25296 3325 1230496 OGN_20210616 209448918.45725712 5186.2858863090805 0.9887257529285043 2.449727984278623e-05 82665966.23476848 2048.1830298536556 113547 5780 46943 YOYO_20201224 1824463.1794389868 78.02109718734494 0.010315988989028295 4.4237921199568667e-07 1811273.0344357505 77.67258558873263 7772 None 2222023 OAX_20201231 4781939.00250462 165.53810080859822 0.08577475417046257 2.9748030789550028e-06 347395.8392394507 12.048232865021127 12818 None 1812021 GO_20191127 7820861.546872705 1091.1172470006043 0.009159205148525975 1.279219898883222e-06 1324174.5922434733 184.94077384717545 10285 679 746050 ZRX_20191019 180658264.72977176 22703.27141709104 0.3004968325884793 3.7763349274040345e-05 26184533.768649925 3290.602718723436 151246 15948 142278 SNM_20200718 4286103.718733304 468.23359216 0.009794536436158791 1.07e-06 95857.1508858541 10.471874 29267 9592 None ETH_20200425 20756708748.58927 2768183.7296387698 187.34336861419638 0.024996301588903674 13419651870.125168 1790517.9555863126 454240 458596 21984 ENG_20190608 46208997.362971954 5747.906908519479 0.5961375553589577 7.425425168366195e-05 6650537.962620131 828.3838440790545 61789 3440 351204 KMD_20201015 67392141.38886826 5904.061345882664 0.5500185589475083 4.8128919849937394e-05 2287821.5150088337 200.19393261479206 103412 8397 296753 WAN_20200421 13486730.066308491 1969.51228232902 0.12698415141178945 1.8546832827812863e-05 863128.1365007907 126.06528514530487 105010 16284 925023 LRC_20210828 623541887.9022937 12712.025625834623 0.49770965177074394 1.0147936836376207e-05 301683544.5942816 6151.107466421072 88071 11414 344060 DGD_20190305 30087408.488858093 8103.510775535508 15.043711766284932 0.004051757413646461 625794.5202035253 168.54667425472257 16066 3297 568878 COMP_20200721 19018.32188778093 2.0758005204272703 2.062055506261978e-07 2.2506e-11 15.754891992667554 0.0017195443968903894 1843 None 1025389 KNC_20210930 128229414.90106124 3086.7864116868573 1.3907390438965104 3.34581048368578e-05 24420849.842922214 587.5116240070521 186396 11711 102019 WBTC_20210821 9577339255.300173 194906.48227655253 49202.82869684314 1.0007756888541102 327538405.64607006 6662.065621394932 None None 222414 YOYO_20190626 6012366.196838597 508.61628798829844 0.03440763264801923 2.906605135892191e-06 714067.219148995 60.321251037019735 7574 None 3542595 IOTX_20200412 10248645.940863336 1489.3915024002204 0.0023673731364365317 3.4396927718469336e-07 2477857.832260313 360.0222349451591 22568 1817 530142 XVG_20190523 171690760.1140019 22405.652739317655 0.010704772557850982 1.3978007037296004e-06 9790960.785747137 1278.4775951609513 304499 53084 436140 COMP_20201231 94744.85615671724 3.287175099598542 1.0272315242623465e-06 3.563982283631808e-11 253.81830463523667 0.008806232281773475 1966 None 4211671 POE_20201018 4000356.2790216734 352.40438767597 0.0015908272564981645 1.4000000473361285e-07 27742.8200285184 2.441493832502 None 10120 1065434 HIVE_20210707 124941364.75280493 3657.9346398748503 0.3361326102300194 9.842312789340703e-06 7476543.573313422 218.9209799707611 22053 169 116444 AR_20210617 653211303.7491878 17077.841947743826 14.921321879198791 0.0003896018969994032 16662222.858955046 435.05754293293734 21406 None 86831 XVG_20190920 73260388.29219893 7152.923265733486 0.004601031653257996 4.4894103950300136e-07 2160209.388655638 210.78026007503863 302140 52678 284381 ARK_20190110 64479082.453423195 16209.657463539057 0.46432563786482745 0.00011675808911801427 244560.89621976498 61.49663207682152 62856 21777 157497 GXS_20210217 41017566.86375974 833.5779949141785 0.5873577591598584 1.1935840954004285e-05 12415336.486511052 252.2950950803917 None None 445350 BZRX_20201030 15926759.170475652 1183.144090050384 0.11268139348000508 8.379885942360036e-06 7100375.2743019955 528.040460887291 15329 None 68138 EOS_20211007 4635094464.197953 83501.35891258369 4.778162471956988 8.613322369177331e-05 1786670186.372502 32207.2896703355 None 94241 80899 XMR_20200425 1066087143.8804482 142176.9280386273 60.675916675003656 0.008095234098766653 133674264.55087985 17834.497174817865 319602 169585 82357 ADX_20210814 69906816.35913807 1465.5292244947086 0.5553484660271002 1.1642346900190852e-05 5559431.957753224 116.54814837826838 92564 3894 14822 STEEM_20190411 146145994.12263432 27518.63432588047 0.47723861904987336 8.992350442251327e-05 1608776.3937248872 303.13307720982357 5139 3704 263510 AR_20210731 496418217.4800485 11898.385899745797 11.302217691618234 0.00027057291398726067 13344570.232283771 319.46644031944004 23321 None 91970 ONG_20200605 0.0 0.0 0.12414952034184375 1.270052808272909e-05 6153987.699865661 629.5545354319851 85432 16477 148134 XMR_20190605 1414286163.2537816 184684.50435086727 83.20562338334345 0.01085298535845316 89053973.32187083 11615.819090994539 318054 158119 113684 WAN_20210519 257831622.0546145 6023.929775177045 1.4696862342246995 3.435220053911875e-05 15558430.693813602 363.66016012241636 121415 16512 162082 TFUEL_20190618 0.0 0.0 0.012144457433764962 1.3039709307691202e-06 6300548.222082528 676.5005167429435 70163 3998 231431 KNC_20210731 145241906.15827045 3481.2264889437156 1.5690669890330349 3.753904842063921e-05 44443187.63310381 1063.2783585325383 176960 11256 105006 MTH_20210325 13943628.111266686 265.31290062516575 0.03978322620737834 7.551078699197314e-07 927893.1424189421 17.611930481272697 20507 1962 536338 NEBL_20191127 6961776.92890086 971.2631826262227 0.441057211199196 6.16002318937852e-05 4881316.962667196 681.7488734167069 40059 6068 558576 RVN_20210702 494731336.4825876 14723.842746959117 0.054383584704965904 1.616982252545061e-06 32364256.166621372 962.2835295274347 64513 43896 58646 STORJ_20210105 42287712.21428771 1351.6369725822183 0.2985576276708795 9.542760931627143e-06 27589228.197365843 881.8311259687439 83045 8557 92086 REQ_20190316 19456216.039378017 4957.932462413811 0.026664876296404377 6.794880131297006e-06 346037.6091773817 88.17907306766573 41811 30655 402457 POE_20200626 6293692.197977297 679.5926938248913 0.0024981836899796634 2.6998195119242934e-07 632385.1537666004 68.34268368809224 None 10279 752325 WRX_20200319 18325493.665591344 3398.4092466067505 0.09792733101240252 1.8175892945030795e-05 21755873.705204885 4038.019083164156 21032 None 25580 LSK_20201228 173039562.30501 6516.580335988586 1.1938728759773742 4.535194147786946e-05 6991555.051664229 265.5899149084847 177266 31062 311147 UMA_20210202 622290654.0698913 18640.56060128019 11.17148960865973 0.00033449353502769294 31790262.986365195 951.8549287757032 19050 None 180078 VIB_20200422 2097681.5088820932 306.30830359208323 0.011485416075808155 1.6778154063333348e-06 513425.16753159574 75.00230295515622 31230 1107 None PPT_20210206 65731127.70645591 1722.4430586272726 1.8139194705884234 4.7520926153357604e-05 7164390.371098693 187.69216124482352 None None 736934 ZIL_20210201 803301656.3604946 24306.92356202823 0.06901964561781718 2.0819167521097074e-06 233090468.53029424 7030.968456103578 132128 15928 35643 LSK_20210826 642837173.5891597 13118.451940047495 4.438871181541085 9.058455337606898e-05 16564989.689314298 338.04364472788535 197222 32704 274824 POLY_20190725 27099532.67189282 2758.5114081963666 0.05574279705280235 5.6773058613882696e-06 2563635.833518333 261.1018017325511 35272 5087 307913 LOOM_20190224 30780081.061015602 7480.382862750321 0.05012217661692218 1.2181029356801784e-05 1846340.99576467 448.71023946080834 17064 None 410268 ONT_20201111 372654817.61468714 24376.728280939937 0.47809451989587687 3.130431505191929e-05 68056603.54360819 4456.159336770199 93539 16682 220427 CDT_20201115 4561174.165825864 283.4355300405204 0.006406024079622357 3.982344817142186e-07 85800.13668110094 5.333819001851399 None 293 402907 MKR_20211207 2350798676.990978 46574.12947090385 2608.4090170594923 0.05168465354420631 96462389.52809656 1911.3663348803834 191937 32074 33161 TRB_20210710 68210807.71615064 2011.1313358069806 38.611826452482525 0.0011361333355769602 25552944.790246047 751.8823911136062 23093 None 263441 BRD_20190414 18428040.683794294 3632.2969569159336 0.30750563708596296 6.0601574282129756e-05 582750.6273973153 114.8453920026958 160 None None XEM_20200719 473869877.2353543 51674.00291832505 0.05294092962115983 5.774549228660992e-06 35693136.79566168 3893.2405801483915 208603 17838 268527 SKY_20190625 27295243.44150399 2471.4759250333245 1.8196828961002662 0.00016476506166888827 603370.7767484711 54.6328283093831 16175 3771 427664 CHZ_20211111 2548562770.386185 39244.59652925455 0.4779550325344611 7.358101234309012e-06 1435322807.8482292 22096.745101849 None None 50785 OGN_20201101 17442272.919516966 1264.0487276697274 0.13383847816805217 9.709918164749624e-06 6381200.711774165 462.95308757447856 None 2431 170870 DGB_20201201 332203555.97765076 16897.043452963317 0.023883358589187456 1.2165959043539491e-06 13256479.498517731 675.272642405921 178124 23462 249405 VIA_20210114 8559716.951257518 230.44901181090935 0.374044005466883 1.003688536074627e-05 139451.50372586952 3.7419628060425 37775 2126 3644327 MBL_20200531 6218064.203059011 642.2332872216222 0.0017576054357957209 1.8180898367627815e-07 4144317.3650964648 428.69355819841263 None None 89944 MTL_20210519 200096492.17575502 4694.4198809122145 3.1099982333330014 7.269599079613109e-05 27655158.699343745 646.4373968850975 56502 4121 199516 RUNE_20210218 955528973.9261034 18315.976189727302 3.9937291178050294 7.661041074473411e-05 48960310.4886976 939.1897612701212 37008 2667 124938 STX_20210805 1438242754.7401097 36127.57019639417 1.3686766798717205 3.4419199785697816e-05 70686716.02330624 1777.615003441935 70415 None 61340 BTG_20201115 136215390.26408398 8462.778448819256 7.763086979000831 0.00048259714312017454 7586069.856754816 471.59276332765586 78867 None 360586 ALGO_20190816 178194594.14785385 17301.236191430766 0.7078809384039878 6.871008058249555e-05 82110507.60329184 7970.012028875975 11462 554 206614 HBAR_20210114 361688863.4519635 9713.524056647158 0.053226180726098006 1.4242138646455566e-06 53633796.129984215 1435.120743586303 1478 6964 206193 FUN_20210104 51636317.205247395 1543.528326868419 0.008394889293160731 2.550265803287614e-07 29346599.19239169 891.5141790388767 None 16513 359571 ANT_20210201 148583761.32511568 4495.962507349122 4.209843017014397 0.00012732552720006287 52889067.0933982 1599.6150743792434 77367 2709 124714 LPT_20220112 912046856.8170499 21275.320830753775 36.70925402402662 0.0008579768982670869 28475075.437113974 665.5258340435364 None 2395 74426 CTK_20210418 113184198.28100263 1877.5584361298136 3.065001607359757 5.085413653216279e-05 9881659.609859115 163.95530291320654 28217 None 202878 LINK_20190922 682306339.3447282 68315.0293288044 1.877063574076717 0.00018795865523827646 96749663.28880568 9687.970539551223 33025 10667 93725 WING_20210218 29973407.24532644 574.542717605605 31.041340383472644 0.0005954559677677763 9499837.001095004 182.23229297582054 8406 None 342300 CVC_20210511 339597039.2032988 6077.75561667787 0.506861252542237 9.071277039817717e-06 48092776.849942945 860.7146437645882 None 9700 107274 BAND_20210508 567366676.3067148 9901.62744077613 17.90106750164707 0.0003123151193677322 262483744.5724482 4579.483430845158 89373 5076 164496 GTO_20220112 31767071.998159155 742.4671142096447 0.04793730655381256 1.1204014541237787e-06 4401279.507781141 102.86768938483446 15017 None 469851 PPT_20190908 13505770.043247888 1290.0799165395488 0.3728105425690344 3.561110489090357e-05 2429695.420931068 232.08608289746107 24008 None 732961 NKN_20210420 384133900.58359 6862.5384291767095 0.5905647468271235 1.0558944989877997e-05 48159513.79074999 861.063345869945 23345 2267 154711 CMT_20190302 23808112.621494975 6227.153845658795 0.02972100376671566 7.77828015774799e-06 2938402.607558732 769.00897685848 292637 1633 1016404 IDEX_20210203 42306989.50035233 1187.9749299618286 0.0751995181775597 2.116762865612809e-06 19456830.9682637 547.6829941766314 45679 1936 6164235 GAS_20210318 168933658.00912875 2870.1869720025484 12.13425652608095 0.0002058667721759703 29136951.8090329 494.3302630103293 356615 106278 100528 UNFI_20211021 53886778.06744791 812.9891722479567 11.391032994505064 0.00017249043382858427 13987426.80714784 211.8067184314508 22540 None 252811 VIBE_20200322 1487419.9855702284 241.39995288734667 0.00788293721679336 1.2800004568554827e-06 443148.45849026064 71.956710262 19373 None 1312296 LTC_20201228 8553327960.234525 322689.38412847783 127.89908797810656 0.004858533994507045 10006162991.778812 380106.5654077027 136816 218566 164709 FET_20210603 241183624.37910146 6409.098394503261 0.3504975785058807 9.313955180258784e-06 35949537.24752007 955.3058257971039 64681 2819 112736 PERL_20210210 0.0 0.0 0.06737754747684195 1.4460394709039754e-06 12477767.563147938 267.79461528009506 14139 527 461577 BCD_20210708 376489775.487131 11080.605864178215 2.002596474366796 5.894053580376727e-05 3915210.782246864 115.2327112546639 34311 None 1330822 SYS_20200107 12569505.477541132 1620.0028623509934 0.021867901182690885 2.8197279518849653e-06 226652.83354724426 29.22545354434662 59342 4541 919572 YOYO_20190623 6787910.124245458 632.2786288481783 0.03863055821850443 3.601409164612483e-06 2122508.4324186235 197.87498998184657 7570 None 3542595 WAN_20190126 33917369.011284776 9511.472065114165 0.31956097323758376 8.961288833374815e-05 2327860.1032811343 652.7901870446094 108984 17306 539346 TNB_20201229 6856049.531045455 252.8366263067114 0.001973201855360446 7.269193929288563e-08 312110.54821490933 11.498023358265607 15740 1413 3433473 BCPT_20190626 6937943.315542462 586.9155104490993 0.05945750554743158 5.0231968072125676e-06 1065037.0583223132 89.97839215874758 10970 2805 1175613 RVN_20191026 137822489.83845493 15918.938005778542 0.02924499279905547 3.3778901244150013e-06 28774168.602081474 3323.5084250854175 None 7103 246956 DREP_20211216 0.0 0.0 0.7364234353618514 1.5090385325228625e-05 2372777.211924943 48.62164985457753 4251 None 533342 LUNA_20210823 11214767966.738464 227325.99120094383 27.66100422454338 0.0005612897325964113 704316162.7566324 14291.796040659716 110187 5805 18941 POWR_20190130 34174905.29783921 10012.383927253695 0.08228653775790139 2.4104856640701606e-05 1413859.1707109846 414.173126598184 84967 13287 636991 FUN_20200229 18663392.58765294 2134.220257614724 0.003088851142017823 3.5450699853295094e-07 397376.58787509444 45.60685347978233 35029 17047 372623 CTK_20210703 53743215.73793341 1589.1795796217468 1.1878673085768654 3.507080702447717e-05 8687695.993161567 256.4970914373616 76234 None 123040 TCT_20210624 13015283.070784023 386.07244299763374 0.022514278210932735 6.68049894950093e-07 1992568.2161464444 59.12403564557265 None None 301780 FUN_20200421 10092051.550862676 1473.7760291484888 0.0016738851424067407 2.4448143775440656e-07 205653.21157905724 30.036943140177442 None 16917 234333 UMA_20210401 1477925590.508989 25127.481697345713 24.7383120449608 0.0004208662551156694 109367394.45693189 1860.6380925744395 32351 None 121896 BOND_20211216 79963681.42780155 1639.0662409956522 15.540012916765443 0.00031843742555231623 8579643.341982475 175.80934794658043 None None 188518 RCN_20190411 15518279.780899828 2923.9344060812264 0.031019768933095625 5.844398032283684e-06 1251382.5271113575 235.77150412880079 18884 1113 1899234 AAVE_20220115 3017121721.6413193 70011.08155680493 224.6041295378138 0.0052075472170914384 287182731.37187153 6658.460094343573 None 14983 14216 KEY_20190314 7338176.431762765 1897.936394599109 0.0028624648824716633 7.404593665786497e-07 935878.2605425818 242.09199149989877 23435 2816 779936 BNT_20200501 14200757.677973287 1641.049977848114 0.2030922539252236 2.356139509816686e-05 7184463.540247792 833.4930592797422 None 5015 133106 ZIL_20200621 202461515.1179796 21641.427526266336 0.019080287723520703 2.038463062056915e-06 99241043.89047569 10602.523669563168 80344 11389 97505 CDT_20190726 9874236.008334858 995.1122345457565 0.014527942032090777 1.4676983155712374e-06 170901.14372883455 17.265440640246705 19794 297 299913 BZRX_20200913 93501524.31699926 8966.838781969656 0.675553739970137 6.469645755893038e-05 20137107.93678631 1928.491357400354 13219 None 102512 BCPT_20200301 2552432.3109493745 297.6337996667324 0.02189300766490145 2.5597150113474044e-06 82070.35014898467 9.5956074413515 10714 3160 1771218 XVS_20210610 274467069.96036035 7312.1172123921815 27.046371786461286 0.0007221290843420498 62591730.23034953 1671.1782709891058 114125 None 9976 INJ_20211028 461776329.6653072 7889.8350696213565 10.569745184877167 0.0001804816046390237 43376176.190912664 740.661363647804 88120 4208 116431 GTC_20210828 149838909.56447053 3054.2486446110047 10.533763034373296 0.0002148062765040679 47876130.225892365 976.2981409102533 57303 1138 24544 FTT_20200324 70302856.80827664 10912.772071961866 2.4511671249658753 0.00037813154177272193 8011086.368049521 1235.8375766267563 8921 None 15714 TRU_20210131 34255804.95069106 1001.3698387999613 0.22795024483338938 6.6710459465751936e-06 5585334.905842921 163.4568359912138 17998 None 115581 BCPT_20200807 3225510.5229505724 274.13331633839425 0.02776814340466366 2.359990204935756e-06 260072.6617796003 22.1033479058 10500 3179 1744286 DOGE_20211225 24945394835.922897 490560.9751344612 0.18804399844141254 3.697958996053292e-06 1896373537.8706396 37292.92953973768 2725911 2245937 36966 WBTC_20210110 4472620806.3173275 110576.76674656488 40419.04464740294 1.0000999153486552 381469900.61765474 9438.818226503769 None None 159793 ZRX_20210427 1204485193.881898 22357.93488621898 1.5253328476555044 2.829610131407026e-05 180948977.72341064 3356.743162129459 209652 18964 55512 NEAR_20211204 5229979418.935005 97414.13474032053 9.148647987764065 0.00017060811036372355 376335620.65148413 7018.07624337296 None None 8333327 CHZ_20200531 52656370.6531019 5443.43640274819 0.010956335842442455 1.1344272210334526e-06 7218951.966938205 747.45569471354 None None 338118 BCD_20190701 210956286.41795695 19402.7003240728 1.1247010248713052 0.00010366164313322221 6781874.304537317 625.0729912971855 21363 None 3671311 XZC_20190621 102137029.7056474 10677.574775023731 13.129191629101273 0.00137371650241535 10954960.034849899 1146.2251300999624 60532 4011 343816 NXS_20210508 113347767.7437722 1978.0700634477114 1.6628449266365364 2.9018866758550362e-05 2320611.633223675 40.49777505054098 25449 3874 484526 DUSK_20201106 13774904.277603019 886.4908656294241 0.04762655590584314 3.056780442819179e-06 578180.9697162644 37.10896677334739 18258 13350 801283 AUTO_20210731 29338817.13037013 703.144151786824 830.0046992577821 0.01985739730207273 3083279.9601557916 73.76574520250642 72489 None 11951 OM_20211028 79895955.44000064 1365.1187248715712 0.21405547042953363 3.657941307839172e-06 7845969.369702094 134.07784159817652 53267 None 102464 INJ_20210428 255286196.135318 4633.926984376977 18.887752054023913 0.000342755726061215 97120352.61972016 1762.4414425962084 63430 3111 97465 WBTC_20210624 6425379759.6024275 190582.71509516693 33661.734611930005 0.9991956505433743 564005760.4881288 16741.62396139321 None None 229345 SRM_20210125 97915145.3898394 3039.665019321188 1.967210058344728 6.097271966053965e-05 70488383.74563797 2184.7531956316266 None None 88356 FOR_20210707 15842007.491828086 463.8097885689527 0.028081718170073693 8.222231695025794e-07 2550604.625084764 74.68083705861183 29249 None 170276 XEM_20200309 407742208.41310304 50472.53664752487 0.04481244219643676 5.5705189422236164e-06 40883878.747545615 5082.169367080051 212475 18029 213172 GVT_20190509 13402734.871366521 2251.767368318866 3.0222685120057755 0.0005075346562915054 976523.4333346847 163.9892296562341 21459 5798 192676 COTI_20200607 11338661.94190722 1173.1646344042053 0.02201806775619321 2.2781187535022812e-06 1055664.3269879108 109.22523844255448 24118 979 270348 FRONT_20210708 28754268.35481363 846.2772040495764 0.6502477697932766 1.9138130146233666e-05 23625091.563385148 695.3350677396311 None None 214172 XZC_20190708 92225507.62508515 8068.382546800842 11.738886690101113 0.0010260401011598019 11582826.183528258 1012.3995965550433 60739 4028 268050 GXS_20200423 26059980.451486234 3663.931073689652 0.4011703498359635 5.6389712860803154e-05 10372722.3070304 1458.0210943242953 2 None 503557 XEM_20200807 556585552.0811696 47307.31026606803 0.061869853286223506 5.2548106858333735e-06 31081408.579851434 2639.846536900133 209023 17819 241923 CHR_20210804 168234593.74258253 4378.569906875544 0.29643769889910065 7.71660961792644e-06 58102648.70292761 1512.4778645668157 None None 86794 YOYO_20200403 1346357.3154379088 198.51537295439687 0.007737835918084175 1.135061697741541e-06 267570.7852271674 39.249908238062226 7492 None 3120831 CHR_20210124 14897405.448157055 465.5385414639614 0.03314328383209743 1.0341882776613645e-06 4222390.970942897 131.7536086036043 36928 None 518597 TRX_20211202 7046000683.218771 123215.88494016533 0.09832513311615781 1.7194460848721395e-06 2298257350.6474857 40190.432276669315 1282388 120748 23366 NEBL_20200315 4920393.939479363 951.9212300529429 0.3042732986874615 5.872753238648624e-05 130558.26863243093 25.1989411575358 39632 6023 856581 BNT_20200315 10578945.187622808 2046.6496462537564 0.15203691094413424 2.9344515768977344e-05 1655072.2154107378 319.4440904009333 746 5028 123445 BZRX_20210219 90033378.78834975 1742.0306688111643 0.641501053107359 1.2408036696027795e-05 55594331.89114046 1075.3162552968938 18798 None 179211 NU_20211230 476206925.3277397 10244.092159338748 0.7346562086406083 1.5788991458859106e-05 24567393.766612407 527.994408520991 None 9605 124831 FET_20190608 0 0 0.1995423936605755 2.485478558973005e-05 30462530.05337047 3794.379926528978 9210 254 299153 YFI_20210708 1266023975.3574505 37260.332834501314 35518.7710618448 1.0453905338759881 242571757.40927592 7139.38605983258 None 6759 17976 DOCK_20190801 4824596.837835424 479.2263190584498 0.008736648463211134 8.676630567458182e-07 968941.3426678624 96.22850349613269 182 15216 218357 LUNA_20201224 224219902.5584267 9590.233688221584 0.46097665026997175 1.9771260971211347e-05 17755076.543231044 761.5141714758583 16716 None 184547 ALGO_20210523 2983903575.102508 79389.93852544692 0.9759863205466646 2.5987443174328632e-05 456244802.1729706 12148.362759236012 None 29443 137086 RCN_20190401 15565570.33718072 3793.2616555637787 0.03107676215935496 7.5711979319702845e-06 7364273.565362658 1794.1499987234993 18814 1114 1899234 RCN_20200224 38008686.89304073 3820.3490599739257 0.07511831468622031 7.549061100475746e-06 3869649.298384202 388.8827792920936 None 1138 845670 LTC_20201106 3882924933.284784 249686.79258306106 58.991706068374576 0.0037862215725790378 2534178801.4054923 162649.34659683998 134724 215708 153870 WAVES_20191026 77126629.08135936 8923.337381784146 0.7719584486172526 8.916366770749079e-05 12329895.189319003 1424.1422961272824 141894 56890 23523 COS_20210724 34633738.60959373 1036.1138585651167 0.011553518381023496 3.454076654124869e-07 1828198.2611246689 54.65639751120553 27121 None 345679 BTCB_20190904 0.0 0.0 10634.757816941219 1.0006889597534405 106696.6686733863 10.039737643469703 None None 70056 AUCTION_20210902 158155995.99170685 3251.8803308464535 34.6009287016274 0.0007108787084397482 4629210.459617617 95.10748052476309 68051 None 91474 ARK_20210509 387740060.43050694 6611.808535112461 2.448701835600586 4.168535448396481e-05 11355525.218431216 193.3102214405813 None 22984 75515 LOOM_20200806 18022712.202497803 1538.4972145816675 0.021628275593725575 1.8455532163604225e-06 3863402.4550584056 329.6663571781127 22090 None 586484 PSG_20210602 33566693.497826874 914.8220075357334 15.904683178596732 0.00043358380085481045 7167245.20161246 195.38908013933266 9117187 None 40124 MANA_20200127 46865354.47637208 5461.084627646774 0.03569992326775676 4.15418448888592e-06 16412452.133891804 1909.8179446445663 46079 6521 80671 COTI_20210112 28781954.746742066 811.8182386731575 0.05079361156480669 1.4288478553431377e-06 9645661.577158079 271.3369345730335 35505 1284 237911 ELF_20190515 65913232.94362415 8249.684536740338 0.18788298477020887 2.3508407051851223e-05 19526401.765734762 2443.194105779741 88581 32720 938169 POLY_20201224 48025211.99095873 2054.112951902923 0.06433303645225251 2.758785221785893e-06 3316514.926697219 142.22167757300465 35484 5007 311827 TORN_20211104 79730534.12488398 1264.4805700014529 59.08217358164052 0.0009368395142438567 6665037.794463724 105.68451347095755 26789 None 88402 CMT_20190729 33481478.020324606 3511.4958449995793 0.041937396586841376 4.3991928874993686e-06 5851989.800921229 613.8681464554521 290865 1648 580172 ICX_20200330 95182307.23120025 16096.531355352781 0.17908970531193746 3.0340379101552407e-05 12467495.777593244 2112.173604174047 113073 27503 126672 ENS_20220115 591440967.8324513 13719.793069504283 26.2565763778584 0.0006087867416648238 59782901.83506195 1386.1303732700858 147774 None 3332 ONG_20200417 0.0 0.0 0.08351906494044209 1.1781725696991789e-05 11612977.509024277 1638.1998006590084 84070 16505 204987 XZC_20200117 45758789.35367276 5251.460233327725 4.939863740419522 0.0005669183638222395 38951452.166010484 4470.223206719369 62613 4077 121146 MTL_20210206 49391133.66936984 1303.1615524916747 0.7585086162089827 1.995473891096167e-05 277761429.4738865 7307.3089563425565 None 3373 419249 STEEM_20190515 109219881.66914016 13674.593080674596 0.3760634981608046 4.705404165747046e-05 4519269.602129335 565.462750732071 5524 3729 297313 NANO_20211202 674794190.933048 11805.966726306176 5.051383039852893 8.833771381191507e-05 34583656.39552279 604.7930076049563 144947 117670 69441 NANO_20190605 196656039.05658242 25680.321312916996 1.4776903530677261 0.00019274796680010284 6731437.048069263 878.0397070094225 98341 45988 382519 STEEM_20211002 203962912.1194118 4235.674704508406 0.5139172889931244 1.0669423704945992e-05 2052240.4763930475 42.606512090646135 14398 3936 227916 STORJ_20200314 10319395.757693497 1874.3751397355227 0.07247986233815741 1.3028777793963197e-05 1460800.6586516746 262.589449936469 82362 7997 120208 ELF_20190225 43615100.13350202 11605.754205061567 0.13057567444247004 3.485630214455698e-05 18963700.286175683 5062.232837594811 86172 31344 1006337 STMX_20210408 586256980.0106124 10408.464796775417 0.06842615628253831 1.2170291986923357e-06 348085164.6577679 6191.050791614305 49386 3441 73703 ARK_20210114 59548196.23753459 1601.9499410823166 0.38684255761084835 1.0351043912383818e-05 2271534.697059496 60.781201383275466 63092 21566 94251 MIR_20210821 349737919.02618027 7118.321085615193 4.500701414384488 9.154787818921052e-05 66113075.4876141 1344.7930053991176 56238 None 15309 YOYO_20191030 2278139.2110989103 242.12777343886935 0.013025842108897812 1.384427313145772e-06 697871.5812953311 74.17197829793423 None None 1389635 MITH_20200807 6185496.6695983065 525.739859765069 0.010009197258181793 8.498836300646018e-07 6457608.0416805055 548.3172348823053 109 2097 437263 CTXC_20210909 36922763.87206701 796.9769455552149 0.20118995958898847 4.345644021151777e-06 5855087.007290185 126.46815923883038 20632 20620 976198 QTUM_20210428 1537107599.2908523 27901.790772067023 14.849775275892164 0.0002694786278417891 949276239.6369278 17226.500317177615 233449 16182 88405 IDEX_20211204 205959385.4435927 3835.926009833615 0.34189756281837574 6.375859821956225e-06 25513971.123539656 475.7960309636484 73295 1985 55323 STEEM_20191203 40288009.58603175 5510.497890212041 0.12278233656765297 1.680558556491629e-05 340541.0551097104 46.61087254077256 10187 3797 203886 NU_20210823 173845635.2535198 3523.892020519212 0.3142267746671599 6.376206044286322e-06 42228189.55497954 856.8831786054328 None 7204 175162 MANA_20190314 59946292.39518505 15504.430987191578 0.04784069472529921 1.237537994960128e-05 2090000.2057278494 540.639026860729 43000 6101 110020 HC_20200719 56676554.02049105 6180.397950049229 1.2673623212828145 0.0001382379600654498 18840764.668780252 2055.0625737785217 12695 846 542975 BZRX_20201129 30356027.866799325 1714.8618326422074 0.21539359871309588 1.2160836685453273e-05 9489912.051381791 535.7878381979613 15620 None 85173 MATIC_20201111 82260676.54783475 5380.974740238602 0.017281963591574776 1.1313000781671473e-06 17856499.259121638 1168.9099390004642 57520 2453 54287 RLC_20190708 24897112.32292172 2178.8394430519384 0.356152740912201 3.1142289256556974e-05 247736.7891295064 21.662309060998286 24972 3322 789445 PERP_20210710 385607808.3999773 11369.282563435 8.924132432379741 0.0002625880534298902 43864997.84542466 1290.705229355818 23010 None 159386 NAS_20200224 24941756.633123823 2506.9589164075965 0.5479668590089868 5.5068265535161745e-05 4777110.956563694 480.0786951290163 23775 5000 1193564 SKY_20210513 55415056.63938996 1095.3888847498254 2.770752831969498 5.476944423749127e-05 2126788.8711183015 42.04021489669748 19385 4342 250717 WAVES_20210114 636039698.6792961 17104.51594904236 6.36564011070599 0.00017033032953585689 128523872.07212107 3439.0121185850053 151887 57246 144968 AMB_20210221 8294333.379534075 147.5249649575731 0.057364115426526974 1.020291653456055e-06 6620497.464778766 117.75372556197559 20905 5480 361087 BTCST_20210708 142165243.98941118 4174.437029619624 19.466258620070832 0.0005730250047544429 4938942.286462035 145.38681944068043 None None 922062 OCEAN_20210527 312214965.74653083 7968.840182739683 0.7219965088117759 1.8429587754605232e-05 71124071.87402663 1815.5036874408834 111329 3088 66745 ELF_20190812 41334739.43655706 3581.4381915967065 0.08968692874789622 7.766245833669054e-06 25114070.049036942 2174.698639007426 None 33506 1285223 SNT_20190410 96885943.30817026 18727.516755309356 0.02756266599897761 5.326453889671693e-06 20249610.355018664 3913.2141950211276 111117 5753 338064 BAT_20190515 458577750.81157047 57415.04241137664 0.3657839805632552 4.576784171618565e-05 61600895.558996685 7707.664051274367 100705 26769 57848 NU_20211002 164221109.04910937 3410.361179479491 0.2932776185534799 6.0893734562503354e-06 29826648.913459137 619.2958231123802 None 7518 497305 CTSI_20200607 6994629.847876276 722.9176016698615 0.035033671669093734 3.623104495027509e-06 3155551.805546044 326.3401575191446 14325 105 268807 QLC_20200711 4659000.518120547 501.76014883759126 0.019323713985444 2.0813590997655387e-06 476537.1491650994 51.32786236322044 24757 5644 940522 BLZ_20211204 99762388.80945675 1858.0417746591895 0.31555907436867414 5.873484287181333e-06 13290912.843974039 247.38305468653502 74291 None 221086 SNT_20210427 620212687.7109156 11505.423930727182 0.15982870217867196 2.964945753771294e-06 120368028.74693842 2232.919812638508 129827 5920 113848 HIVE_20210611 152295773.56154624 4132.381687292019 0.4095680323191726 1.1155805475809804e-05 24775767.22095487 674.8418280251091 20440 169 114577 AST_20190220 5039134.610767742 1287.1310524036162 0.03024580250641882 7.725594693916607e-06 786634.9717326448 200.92781345038676 30468 3588 387473 MDA_20210825 17293582.382887606 359.09760093569304 0.8745988672137303 1.8231932169183564e-05 1034430.3440214067 21.563787209130552 None 390 2385325 RCN_20190325 11916579.987319818 2984.195038153411 0.023806501310133222 5.965983648235411e-06 632391.8698113463 158.47937945277167 18549 1113 1862328 ZEC_20191022 283090126.99742603 34473.183112473474 36.8075154654904 0.004478756048344228 128661391.55881171 15655.579528932913 143 15332 189800 COTI_20210206 52398102.44386179 1382.498992338516 0.07897023973371209 2.0788982513646657e-06 20249455.860999748 533.0686410788178 38682 1420 238618 POE_20201115 234910.56753844157 14.594349717135099 9.326684160346206e-05 5.798317730873721e-09 3181.7871149805806 0.19780891394496 None 10105 1320650 ETH_20190618 29075955330.534096 3119409.6246891664 273.12368845247914 0.02931349097800571 10113175117.058073 1085414.7043508952 443524 439186 37001 BRD_20201231 4193154.07568311 145.15592142075724 0.05623429443666667 1.950293578231727e-06 263691.3500813893 9.145229825514848 325 None None DUSK_20200801 16883932.312990457 1489.7184252747338 0.060055166088278725 5.302423303055143e-06 600370.3983784739 53.008228903189135 17424 13330 756199 NEBL_20210124 16582498.016065195 518.4004002440297 0.9582092254692661 2.9899534202690936e-05 6505562.248157477 202.99666896993185 38933 5888 802156 POLS_20210711 82943684.14282015 2459.701615370833 1.1486933680079305 3.4076582773536416e-05 7409460.3825096665 219.80547382257217 380776 None 15425 SAND_20201015 27716155.502104566 2428.668173116423 0.04591027006535695 4.021994662865324e-06 3987797.7535683187 349.3532331351012 48348 None 84390 MTL_20190909 19498834.13592105 1876.1225690658557 0.3866218554875676 3.7199659411333345e-05 3115679.896063158 299.7818910731883 None None 253517 OST_20191108 7879316.371642524 854.6145634672897 0.011562682371707794 1.2541996045888497e-06 261946.42154200232 28.413225215397794 17932 757 684764 SC_20210204 413870977.0148436 11043.60207756245 0.008774692447832457 2.339337173801744e-07 144493400.9916589 3852.200932607359 109858 31663 135248 ARDR_20190816 53334235.96918286 5175.454230520386 0.053387650580526934 5.1806374842265415e-06 1916779.780051758 186.00071495121472 67355 6550 926837 FTT_20210111 845162499.149096 21923.77908014137 9.308648498000055 0.0002427150858789353 29109660.411177926 759.0096165005768 None None 5141 ADA_20210527 56286220346.17397 1436625.221845615 1.7772759637277098 4.536651207853622e-05 7062731108.257343 180282.3436930807 472546 482324 6251 KSM_20210702 1799736346.2232504 53528.93450427182 200.6678438384074 0.005965978500385068 212645562.53682187 6322.083449097951 90004 None 64367 PERL_20200127 8641240.008546934 1006.386149175949 0.033141758419639636 3.857561961759224e-06 3433965.78963877 399.69924469194876 10938 412 1152093 XLM_20200530 1370257707.0486495 145389.49621480308 0.06764893043063429 7.177805944229573e-06 384276029.2235987 40773.13195090854 283289 108820 77209 CFX_20210813 267948744.53874472 6027.42676897594 0.30945457055200537 6.960614067389541e-06 16928878.598288428 380.7841335359219 37690 1190 184033 MKR_20211204 2501690981.667989 46596.75360949614 2777.166797083999 0.05167791884031767 88146710.93653941 1640.2466638310623 191728 32000 33161 POWR_20190914 23455402.6235801 2265.040654383222 0.05466809028369009 5.28110616413939e-06 2414786.401395751 233.2758156232098 83886 13037 414066 TNT_20200330 14199751.94908885 2401.3575541045248 0.03300748905462064 5.591944714874565e-06 247725.1257650447 41.968209259151706 17624 2563 1338754 XVS_20201031 10453594.518893836 769.6961744485042 2.8265193047175483 0.00020817328555503134 3383535.085887663 249.1975251838396 11095 None 235424 VET_20220112 5129587612.208685 119657.91161220061 0.0767707092956688 1.7943021941048193e-06 247950486.201238 5795.154239187654 545125 220719 34698 WAVES_20190723 143249683.4705226 13841.79453993867 1.4318631789328773 0.00013845056986326254 19682214.962772325 1903.124486934519 143457 56858 48211 REEF_20210429 441667382.9363032 8068.635094880105 0.034886591275417336 6.371324555283663e-07 84957330.4725357 1551.5724122133809 118762 10092 32523 EOS_20210823 5215425711.38697 105716.55293696704 5.408451968488487 0.00010974686726882745 1255469185.467107 25475.646425324227 None 92319 70056 SKL_20210218 163252437.9445189 3131.3996161472755 0.2893691660526957 5.55048676094023e-06 41798284.83628982 801.7468819452132 13319 158 210822 LEND_20190703 8689937.88504382 805.1605733051753 0.007736827648323487 7.153653356427878e-07 2395747.2943299557 221.51644643331622 None 5861 929610 ARDR_20190530 87158429.64887878 10079.312074074458 0.0872457194273945 1.0089406575800578e-05 1188665.6735632287 137.46154358045874 68365 6549 1228634 DLT_20200927 3090150.603676875 287.8546879859313 0.037680262784045127 3.5100037758753134e-06 24826.774034246682 2.3126715199 None 2545 None ETH_20211002 388950236002.1381 8077285.516409514 3305.107041443724 0.06862450393419114 24368105704.246353 505959.15496866143 1619702 1112569 4065 DOCK_20190110 4634086.743874634 1165.2329681068384 0.009018770339796995 2.2679639557721895e-06 855754.453388504 215.19787977219357 None 15426 155013 LRC_20190916 34256155.26900161 3324.165294734049 0.03558982985942422 3.4535830520141033e-06 4026888.86437059 390.7631812027882 34328 2437 641757 KAVA_20220105 723094012.8213451 15610.007988823807 4.989537873858571 0.00010863957880718083 106405342.79894544 2316.8140851432267 145471 None 51112 ROSE_20201129 56393183.55825868 3186.3797107491523 0.03772891604909474 2.129856154919413e-06 7586983.672225124 428.29706134506057 5772 527 None BNB_20190803 4335075972.081438 411990.0543012848 27.868246822690274 0.002647764760966167 192224106.14620653 18263.230468008773 1018554 55191 791 BTS_20190225 122132045.72138569 32424.608661766295 0.04483388753497126 1.1968106133907582e-05 45751813.861104295 12213.140421547683 13791 7212 130894 PERP_20210523 219865369.38868308 5849.752755178281 10.285202960465835 0.0002738716839422424 50987881.224757895 1357.6919138442584 19443 None 260498 SNGLS_20190719 5709582.706831609 531.9952721484755 0.009893394687730707 9.218255465629788e-07 66864.19140238778 6.230128457468397 8 2179 None CDT_20200208 5451081.323860154 556.4992171900608 0.008004769137515813 8.165110441215126e-07 360223.8862632149 36.74394307161311 19294 294 205672 HOT_20190207 197777512.78812635 58052.98880122565 0.0011125008457540159 3.26583326251563e-07 10533769.635860827 3092.2704812107568 17665 5345 326508 WING_20211202 40578292.04259844 709.9389481909868 18.97297958817361 0.00033178714777537565 3650829.6412804914 63.843338262446046 None None 214661 ELF_20210813 125857945.34492223 2830.878901805696 0.2728389851358143 6.137013503083733e-06 21049264.957173053 473.4646817713935 88029 33388 843761 ZIL_20190826 75699785.08725196 7496.618453595193 0.008234515880099047 8.156721109214818e-07 19206655.539534688 1902.5202569025334 66062 10619 159234 BNT_20210902 1056601991.7752243 21721.032571407373 4.587114261112768 9.424261092888018e-05 118058065.80437429 2425.511929567402 None 7838 39289 LTO_20210429 139743398.50684518 2552.955158550573 0.49887049624503077 9.110852411861175e-06 11208074.96330426 204.6926358250408 8468 3839 174432 BRD_20200324 7544997.47980491 1171.1734276343705 0.12166585265013505 1.8776027622837405e-05 938553.9135312102 144.8419077508893 179 None None SC_20210124 212803172.75707194 6650.022314891504 0.004684803150863052 1.4618251246068474e-07 15786167.896226188 492.58455710597366 108241 30217 141057 MANA_20210210 320663662.16854525 6884.646730852738 0.24182450156184132 5.191342230708113e-06 118668478.38498905 2547.5031657878785 63020 10159 56631 TFUEL_20190601 0.0 0.0 0.014808077234420222 1.7263024782435063e-06 15500161.92353896 1806.9846286041868 70185 3992 222751 REN_20190806 116681096.82588851 9877.70560067909 0.14187314546240287 1.2019808517050881e-05 18649405.795225102 1580.019149394196 9168 867 478249 MTH_20210105 2557484.620023777 81.74456806075641 0.007358738334995311 2.3520645323009965e-07 214668.42086549714 6.861420476409978 18944 1883 1263562 BTG_20211225 820574109.5958921 16128.636229569178 46.49752447809575 0.0009143920591092634 23889979.32418355 469.80581507320176 105610 None 261846 DOCK_20190819 2903612.324203516 281.3581929804731 0.005283303136905431 5.121849506651537e-07 985191.1983749664 95.50845224281098 180 15191 201601 SFP_20210806 110639718.56145394 2700.4111871251203 1.0228986715397672 2.4966480361006046e-05 18749618.16130287 457.6327906417968 374060 None 25766 CND_20190103 16805860.037061356 4344.877800080746 0.010204270407121116 2.6381457336993286e-06 156159.5063279332 40.372463582318765 37422 6278 427446 MKR_20210107 919199266.6542368 25021.624912509433 1023.2170498151753 0.027711126052377345 375587317.5274573 10171.788577562933 81109 18626 39675 OMG_20190830 148411635.14220607 15639.295135641678 1.0578699333429153 0.00011153869139521051 66420567.02963355 7003.189044991686 288428 41284 None BAND_20210624 191400621.3952297 5675.520752172421 5.443906115558368 0.00016139246218935382 58520534.829210356 1734.9258058899072 98075 5400 189686 GRS_20190220 16840657.97710346 4301.5587991875545 0.23401238837998198 5.977308307807235e-05 2406843.950162571 614.7729373857787 36288 107013 15092451 OMG_20190227 186634855.02767304 48986.406785727624 1.3310698309894233 0.00034943459682145817 75824164.26581736 19905.481780662816 288171 37075 None LOOM_20200330 10821414.990011983 1828.894964461106 0.012949056746083938 2.193802062468345e-06 23000497.854628187 3896.6961548409126 21561 None 494145 TNB_20200625 11282120.025772395 1211.6427969219321 0.0032766151713812136 3.525162063381091e-07 3115108.8686943613 335.140473716184 14924 1437 2259871 VIBE_20200105 2378672.664372712 323.48724311038 0.012712034025051094 1.7286547342106397e-06 181882.15605368136 24.733370718725 19718 None 1894870 OAX_20211125 14927931.101753693 261.10325242787343 0.2528943633948204 4.421799633131539e-06 2695727.7051004576 47.134177359367214 None None 1662383 YOYO_20190920 3095032.360410571 302.25124438302635 0.01772359552509454 1.729518243614537e-06 842567.7348349584 82.22012665628483 7540 None 797587 ZEN_20200806 89300342.395375 7623.066189640021 9.247246479498598 0.000789095016803017 5840136.441872098 498.3561943490936 None 6038 69490 RVN_20210805 692562159.3994224 17392.10955779517 0.07383591660027043 1.8568104521683096e-06 73414408.08121082 1846.2104425807668 65714 46711 63027 STORJ_20200421 13419532.248227887 1959.6991602894461 0.0930669097856654 1.3601081544468805e-05 1922263.5627386637 280.92544951779036 81804 8053 123443 QKC_20200421 10272465.232950697 1500.1224423283754 0.0027582795138975493 4.0286404616544317e-07 7716379.176835716 1127.025640898217 49820 9194 700112 UNFI_20210221 56274559.00048119 1002.4215698982943 22.969053065757386 0.0004091489056903471 56998425.64322521 1015.3158430708353 14971 None 96925 XZC_20190821 55039628.121119596 5114.9270830690175 6.72006077697169 0.0006250838538228953 13482151.02996347 1254.0771881872204 60859 4034 203720 AE_20200605 51380091.3410301 5264.180217728985 0.1445232377377067 1.478331782778448e-05 17702080.63364947 1810.7502178663906 25302 6344 486173 LSK_20210124 195396253.0786072 6104.429874092795 1.371176729175692 4.2784862573544766e-05 14207932.177115146 443.33047135182716 178116 31043 255671 STRAX_20210324 158714971.96737498 2911.4292423857814 1.585836037250984 2.9091531611330108e-05 4642898.138053405 85.17212043276923 152421 10587 200259 AST_20210401 100314644.02509362 1705.4713669818939 0.5813897617430064 9.894037676430932e-06 8075237.900884723 137.42365843864565 40513 3614 153125 ZEN_20200711 69370981.28494972 7467.587754425594 7.323282264616703 0.0007883303933213702 4321113.645503499 465.15552680590366 None 5979 61667 PERP_20210718 355775400.28370327 11256.704965731748 8.186396201055699 0.0002592354416013836 16526684.434435565 523.3441226574304 23428 None 152304 EVX_20200605 4973023.00196984 508.7420093608956 0.22812032119127715 2.333678942022457e-05 522675.97374923824 53.46993670138322 16647 2845 2249084 BCD_20210624 380415737.6197154 11287.801064428817 2.0218006448782524 5.999142836233926e-05 10721312.5228913 318.1257528019115 34166 None 1272149 BAL_20210511 668541798.8367534 11973.8530385715 61.79845482208872 0.0011060046541575233 115160920.17066142 2061.030717555886 None None 45464 APPC_20200801 4819065.195127733 425.2001299637064 0.0439510134096928 3.880484970294744e-06 220957.77246499696 19.508613080833612 24483 3195 1501614 ASR_20210806 12441222.522259155 303.51361082343755 7.174623714949947 0.00017511282923684092 3754988.9222458154 91.64895053064788 1995202 None 92555 FIRO_20211230 67975553.64050645 1465.6413735959097 5.340903388462974 0.00011477865389986343 3935920.8980093733 84.58488567790154 78149 1680 199693 APPC_20190410 9177946.363464016 1773.950473502263 0.087681732486143 1.6949247363966234e-05 417879.0925309648 80.77778468458519 25691 3403 1339078 BLZ_20201030 16302998.507926188 1210.3096652001661 0.06570721477018793 4.886511857541368e-06 3571868.7653831006 265.63261183222806 42121 None 200654 LUN_20190618 6429915.183557893 690.1022089680822 2.37241990827014 0.00025473073727947954 662841.9601578485 71.17046211852904 31340 2225 2294680 TRX_20200330 711548801.364233 120331.89702159989 0.010738106956185583 1.814727413536535e-06 912312991.427319 154179.81977866087 502405 72451 50139 ANKR_20200109 5536182.309351167 687.8956806024364 0.0013775623506782552 1.7167415386858115e-07 1215920.758736263 151.5301048439042 None None 5257 SNM_20210115 4078874.287308698 105.02435712 0.00932097901666344 2.4e-07 289711.63038002537 7.45960174 None 9493 None ONE_20210703 647353164.7976805 19152.330356338614 0.06298647897069927 1.8594758565428643e-06 14724738.197576707 434.7011552280203 189876 25482 23324 ELF_20190819 40722095.75731923 3951.527306531331 0.08841941054079633 8.567784813002252e-06 12289718.624426695 1190.865941566654 None 33522 1269907 DIA_20210201 47501729.25968223 1436.90087381882 1.8423746428959167 5.572210691911126e-05 24966661.20843708 755.1097007517558 None 203 235170 MFT_20190305 18606231.508617487 5008.449853164502 0.0028152947484251603 7.57824740750659e-07 1642332.8889071103 442.08532568695523 16100 1860 654630 ZEC_20200322 312288629.81012803 50648.433927087644 32.865546566655965 0.0053363197594155235 326106920.67472476 52949.394921800296 72943 15638 148838 REN_20201101 250706024.94856998 18169.32407710772 0.28532613153640995 2.0704715584719847e-05 36589307.20598271 2655.106264058187 None 975 87270 FIDA_20211120 412607826.94810206 7095.777570156369 8.411359089860458 0.0001445760183895788 3661674.8917048792 62.93755513516736 56284 None 328812 NANO_20200223 126793144.93195364 13135.329002838054 0.9531929709233379 9.87332430012907e-05 3994797.9619831135 413.78752251967813 97803 49011 300765 1INCH_20210825 559617357.6918007 11645.406492560449 3.082039392781048 6.4248348881298e-05 117237765.60844278 2443.94438452597 None None 4603 LUN_20190225 5080422.561078831 1344.8630863941708 1.868577472360263 0.0004972188712383717 5751835.812898131 1530.5339771784725 31674 2256 1490290 SKY_20200322 5991435.925074845 971.7363512225021 0.3539521538503845 5.7474709216712057e-05 266638.7219176094 43.29676438304205 16183 3829 253868 CKB_20210916 466418924.24674475 9678.257360230878 0.016716387747269676 3.468187747914803e-07 37670935.202149585 781.5676322890214 55061 6993 130770 OAX_20210617 8463553.690374097 221.24790014014255 0.14894074394719714 3.893497701929443e-06 173756.43741374902 4.542211028606924 13962 None 1358766 DASH_20210201 1018732392.7346605 30820.292071119886 102.45435670647245 0.0030904453311009976 393830593.2258658 11879.552585221818 336164 36334 65272 TRX_20190629 2227491446.8312902 179975.55212348452 0.03371899933686143 2.7235977412497974e-06 1513810339.8089752 122275.58656158163 436950 71129 93718 GO_20210206 17968251.635754954 474.0799746646396 0.016977478234988883 4.4488419047738433e-07 2857988.6804176527 74.89180447663627 13798 693 754202 PIVX_20210724 32770700.06578032 980.3959217130648 0.5005303374109384 1.497428802272563e-05 632118.7498107646 18.910998028997337 67667 9849 339375 ZEN_20210819 777089216.6947201 17239.842508370974 67.62225698062473 0.0015014866782769407 47506623.00709905 1054.8385215169885 118312 7503 1506863 ETH_20190131 11329885765.71566 3276071.510175946 108.27309466982854 0.03130750019031659 2493952726.425111 721134.1441314913 439438 427056 27623 NCASH_20190922 3285439.9539337875 328.9855943804387 0.0011323511277180583 1.1338731312183745e-07 497946.21920985595 49.86155132742633 59525 58844 745931 XEM_20211202 1550959395.8578296 27129.8531335319 0.17210828092436636 3.0097998795593455e-06 39211639.373965696 685.7263742989242 376832 22507 218348 WIN_20210710 283176073.2078393 8334.684140512707 0.0003692268254845746 1.0865163110868279e-08 13493164.398423443 397.060619520876 None 13227 108347 MATIC_20201224 74645135.17736606 3192.390212410362 0.015362831029245879 6.58847771658179e-07 15216781.79512643 652.584328919741 66910 2554 52359 MBL_20210125 5708239.463547934 177.46885515671215 0.0016107493490889072 4.992374269517311e-08 4000409.8519849833 123.98914346214045 None None 959943 NAS_20210511 46258286.67389825 828.4980108965606 1.0115276866595526 1.8103273495679377e-05 13715565.026728233 245.4669586421363 24962 4898 492294 MITH_20190401 24431092.30445098 5953.774165149424 0.04777959588142191 1.164353404416576e-05 7671695.959844289 1869.5355504182553 60 1999 536282 REP_20191127 119141730.58063991 16617.929053513468 10.854632704776593 0.0015166815160072313 11230683.712202573 1569.2258652773728 127717 10073 272277 NEAR_20201229 289191871.6072324 10656.957801875447 1.2268747719697568 4.5199981242420215e-05 38978154.906242594 1436.0160554917209 34235 None None GVT_20201226 6262233.672718648 253.75595538022986 1.4102325236040132 5.711582164339649e-05 422182.71150150313 17.098820263640633 20684 5460 361646 GAS_20190531 45197584.131061725 5437.850058950541 3.2475013209178045 0.00039095227944195544 2905826.193279595 349.8195263562609 321786 97612 216350 VET_20210408 7133019547.43784 126636.20339646893 0.1088599706809373 1.9372505515734192e-06 1505725842.2582223 26795.599890271595 232907 116072 38627 THETA_20210731 5998882389.593999 143784.0416109373 5.997539481138976 0.00014357993965811417 310844419.8031669 7441.555521019173 185162 22158 19854 PAXG_20201228 73045226.78816253 2760.219460688164 1933.178880544643 0.0735096247149572 3499283.5105779236 133.06115653474876 None None 82066 YFI_20211028 1219462972.302983 20835.995121536424 34087.818031963645 0.5825183417317651 368297614.64099354 6293.747389265723 146509 7390 31334 RCN_20200511 44917523.3739181 5129.863510640515 0.08856721860579946 1.0089748390915353e-05 887825.4805573121 101.14279137224953 None 1136 1160341 CND_20200414 7009244.133738506 1023.060068193743 0.003631084130381007 5.302852502104351e-07 30146.07738390158 4.402547452600054 34660 5949 426986 WTC_20190623 45632137.29062875 4255.10269677333 1.5629495608379391 0.00014572592211609076 9091264.79496716 847.649200360544 55651 20132 829543 DASH_20210217 2474668171.82733 50318.976288479294 249.0235856742886 0.005060469306910459 2232426782.60972 45365.69169836579 355510 37675 54926 REP_20220115 116660078.09255129 2704.816096955403 16.890269727994678 0.0003916084592876296 18321472.596648727 424.79153802749715 159985 12080 173717 FUN_20210430 328597831.1799933 6131.591204656969 0.031915552043995994 5.953710637401297e-07 12388843.537811605 231.10861267413057 None 243 255008 MDA_20190812 12301646.910398677 1064.684440194649 0.6267113506582073 5.424069056762914e-05 1173118.5152780833 101.53120462797818 None 364 2972990 KMD_20190414 122914693.06260042 24227.35402164381 1.0921591564876096 0.00021524239635814963 2107907.7567160777 415.4258233906474 96689 8337 316064 SCRT_20211007 498266615.2567383 8976.870534364361 3.3434268361339075 6.0264289202295166e-05 15225416.265919793 274.4336676245936 97152 None 197630 IOST_20200321 37589291.71007007 6080.3759213379235 0.0031264197227789062 5.042212273064314e-07 77033667.61019227 12423.799064254325 191006 52253 127057 CND_20220112 15678744.638261769 366.44712760038834 0.008126796065582052 1.8994129590957111e-07 103243.0281654813 2.413019153566685 38348 6370 103780 SC_20200523 96390211.30274262 10529.866966473683 0.0021766973551257175 2.3820001452400063e-07 5417136.877343337 592.8073003916321 106500 30060 169173 AERGO_20211225 74928944.50933057 1473.6430909340675 0.2819954151161702 5.546710007852054e-06 17658753.9628858 347.33893560569186 25460 None 525635 TRX_20190227 1578159692.1128898 415222.404606101 0.02407634660015212 6.334617833294638e-06 154834699.4462562 40737.85215896804 389791 70124 75623 ZIL_20190922 66459345.825468116 6654.155028957065 0.007184372106697663 7.194134070457281e-07 16947441.682650115 1697.0469486481438 66271 10607 170382 RLC_20190613 32147579.362497278 3956.8748174579446 0.4578519744293424 5.630354962312447e-05 909524.6057290534 111.84720528058209 24918 3316 786963 POE_20200207 5177833.300100022 531.5874385346089 0.0020562591460203438 2.1115938978523139e-07 113695.9887377837 11.675559303584697 None 10499 559112 HNT_20201130 80585256.77644072 4442.469397664962 1.4000506323839688 7.705396921700603e-05 1199688.5565337108 66.02673001028349 15370 1861 67416 ROSE_20210519 169420958.99628106 3974.7479303973646 0.11391342504785916 2.662593368717399e-06 15646424.667061964 365.71691655441504 20130 1515 211372 XTZ_20210708 2412021027.709311 70989.05756358452 2.883807078336316 8.48763775066483e-05 79483809.07228251 2339.372087392678 124190 49983 72508 WAVES_20210616 1680639587.276257 41613.84105972386 16.76816924403043 0.00041545851638388363 199107729.12702957 4933.216055958468 192495 59017 97299 GAS_20210602 127942668.86736885 3486.9317465035238 9.210076342725019 0.00025107950042133547 18942773.12180383 516.4063613624717 None 111707 92872 BADGER_20210408 303658331.2878585 5391.1802489755055 38.203433231007224 0.0006798607572262282 29657525.281900555 527.7794661460935 30069 None None LIT_20210519 118006166.20985416 2757.073987361626 6.571676574575913 0.0001536124794735109 18699304.222778775 437.094926004618 None None 141877 NULS_20190830 31906536.75389759 3362.2414076380983 0.4333397198266976 4.5686681547210625e-05 6711481.16112414 707.5864235131928 21333 5305 331434 UNFI_20210825 60212391.80471636 1252.995048880184 12.876698923513004 0.0002681351719472386 32914765.911927864 685.3935523243636 21608 None 252503 BQX_20190914 10151264.805551078 980.6434953225587 0.07207918449673918 6.96307157569462e-06 310263.7254119575 29.972432991148175 60282 5751 423715 PIVX_20200707 28971466.935314745 3100.820117064248 0.4558798462038755 4.8792883053844406e-05 10829281.112332113 1159.059456721241 63792 8482 358751 YFII_20210128 66182495.64582791 2185.333244618709 1668.2298425182596 0.054990412913253 74844623.99243003 2467.1281335358567 13808 None 182757 IDEX_20210809 32546220.53596838 739.816854468156 0.05580793322314879 1.2689356452657744e-06 6113822.828562556 139.01334932046288 53326 1973 8041913 VIB_20210603 9897675.615492959 263.1809885803263 0.05421486413935225 1.4415830639679098e-06 1037603.273956045 27.590059121202497 32284 1274 3757550 INJ_20201229 64375965.24546023 2372.1404739005548 4.763201932214314 0.000175487030945145 27759173.02964796 1022.710127723026 None 1894 148511 TRU_20210422 80414609.91103904 1484.1020997068886 0.3316073667863291 6.131592595188041e-06 4459749.517461753 82.4630869412557 22867 None 84906 POWR_20200501 27918707.998396795 3226.3063831715085 0.06439440864490564 7.470605475450868e-06 1710479.4447702467 198.43830193722388 82057 12772 203991 FLM_20201115 0.0 0.0 0.17509730764034576 1.088503332035849e-05 8246046.432103702 512.6206186964234 11726 None 37281 LINK_20190726 869266412.8578521 87770.49145834458 2.3790748924140668 0.00024058645993617716 88270395.57437724 8926.43693400354 28679 9926 123465 ADX_20191203 7901634.379781078 1080.7667101555442 0.08628705840033012 1.1810367709468292e-05 886703.4686030918 121.36575527789023 52986 3816 250882 WRX_20210823 683906546.3066567 13862.769140534603 1.5097156036800337 3.063933442658521e-05 17845084.00328625 362.16191666458593 None None 1458 LTC_20190906 4126451647.9188075 390429.65277402627 65.30104958286856 0.006178510102093305 2418776180.3264623 228854.4083182747 451971 208184 124361 ONE_20190704 43695934.638318315 3640.8985234542483 0.017180219907614914 1.4315161767795469e-06 17501788.442737408 1458.3103949238161 63719 None 175184 OMG_20211207 910669794.4901884 18042.231063409014 6.4946109077278384 0.0001286112108586974 742391238.4087197 14701.394349740542 None 6476 101172 BLZ_20190419 14514234.530497914 2752.750189460098 0.07056774200196993 1.3383782986110397e-05 663435.659157542 125.82631434010995 35535 None 850620 COS_20200315 11501406.221909778 2224.0322603927925 0.005685442464499974 1.097342448074578e-06 3730917.2496494004 720.1011871736555 10364 None 161709 XEM_20190801 595112546.6147684 59135.09465109271 0.06621982621522642 6.568195203505701e-06 65231561.71167307 6470.171476428305 217303 18417 178171 RDN_20190103 13709031.8835512 3539.985555585723 0.27280938112601827 7.046868026865646e-05 1593367.7404852237 411.5786685604421 24864 4432 572997 EVX_20210610 12065613.198772697 321.4417597038289 0.5517094527605696 1.4730457936848851e-05 1102433.972991734 29.434618504453 18173 2812 922475 BRD_20210124 6068383.206841614 189.63478419035238 0.07981941010390557 2.4906741168301294e-06 3592278.1251566815 112.09296254051148 431 None None GTO_20190623 23521247.233694565 2190.951511953404 0.035160701135875896 3.2766095836541977e-06 12038180.996534452 1121.8325559145883 17410 None 1224207 DGB_20210616 842694730.1160198 20865.7256596864 0.05841581710997243 1.4473376441488714e-06 29134972.477090977 721.8617236484114 220439 39444 87100 ADX_20191011 7500416.336239107 875.9636484978828 0.08148607935058497 9.51665083241466e-06 883387.7406688344 103.16967934377146 53408 3833 372232 SKY_20210418 71267572.70163555 1182.6939369582014 3.5387593640499246 5.8725416333670593e-05 4665918.305501165 77.43052490459903 19069 4280 267586 BCH_20200224 7338659371.908878 737627.1774880565 401.7148683683291 0.04037058204712868 4929184061.180622 495361.37503587554 2513 284704 126656 ETC_20210727 6272649377.863122 167604.01413700657 48.450928699020885 0.0012985338331438529 4685640636.100357 125579.90237353188 486403 58562 110949 HNT_20210202 159527634.62799874 4777.7440265696205 2.3663764442863866 7.085285173991e-05 4154834.072489768 124.40194934023648 20908 2914 66241 GXS_20210124 24395704.48676315 761.9743747308329 0.3494907785129077 1.0905169706595842e-05 10337764.500689136 322.5695302935537 None None 451509 SKL_20210318 480407289.5760007 8163.041391907075 0.7281862973319577 1.2354227245179094e-05 136168283.2557722 2310.1971584626476 17025 726 169280 UNI_20210930 11953447834.325663 287714.0755944305 23.027737869615603 0.0005539964317379243 780794940.0415272 18784.19900170825 None 53011 3009 POND_20210617 69045229.84247759 1805.1291440466857 0.08920047255725679 2.330657527089198e-06 6969313.011578198 182.09636522552233 19067 583 100675 DOGE_20210617 39959183235.26014 1044065.8946488841 0.30726067027219334 8.028201795553163e-06 1849556139.3095274 48325.77467668468 1849752 2074751 8922 XMR_20210429 7510658300.036778 137211.30340371912 417.1910030211072 0.007618982127075576 957201078.2708733 17480.956814867553 396845 214236 39530 LUNA_20211002 15099366082.468575 313566.8259736395 37.796792199851545 0.0007846982370608846 1140762880.9747322 23683.349022642295 148493 9754 11955 NBS_20210618 0.0 0.0 0.013952743941845314 3.6568932584929455e-07 2373126.866250988 62.197598371421044 None None 552078 ONE_20200407 12836656.756053459 1764.391525949535 0.002461989437097948 3.378765054843095e-07 49700975.748731345 6820.822117310195 None None 330702 STEEM_20190804 71955634.87028363 6668.7433106685785 0.22507524376895102 2.0855621919441733e-05 886435.0598305397 82.13766274064895 6112 3765 297203 EVX_20210128 5850742.237756745 193.3594388158113 0.2676688414253575 8.802834708008982e-06 185720.7599457145 6.107805237778643 16783 2807 915325 CHZ_20200308 59500964.40648816 6694.063190683235 0.012433791986553325 1.3969874915338052e-06 14138933.183059946 1588.5670937496732 None None 294872 WRX_20200913 25945990.75483142 2488.277352817764 0.11313973734917555 1.0835170886572305e-05 2151749.308310548 206.0688137241679 38596 None 17152 POWR_20201031 32465523.586793356 2390.124674477109 0.07563653215852145 5.573126838147564e-06 920173.7942243852 67.80116858879853 81281 12615 243679 CND_20201018 18401503.172194798 1620.5827474762186 0.00953535027341358 8.4e-07 18668.83037165228 1.64459795 34174 5915 293676 SUSHI_20210418 2379070587.851014 39469.22319436937 15.920746081517253 0.0002648593867937835 500658002.8547697 8329.004868902313 73310 None None BTS_20190908 88654294.9180573 8468.427821290139 0.03271287226747664 3.124754781804824e-06 14809431.766185476 1414.6065300786222 13587 7147 133075 OG_20210624 5031155.120418325 149.23919348324625 3.981135324703236 0.00011809543298115333 1488325.7951721563 44.14933551925343 677153 None 238671 WAVES_20210117 663176106.2526618 18284.91137794172 6.642445012647991 0.00018354630632885807 127538273.08333959 3524.1810651701885 152410 57255 125387 TRX_20190812 1371867839.183279 118874.01308197455 0.020762299417165158 1.798373577560083e-06 657789858.0950018 56975.958038975514 453239 71269 73072 QLC_20210814 10442157.24742217 219.15522008226014 0.04388409767464611 9.194641095149015e-07 2888035.846843399 60.51042288375808 35118 5685 940522 XMR_20190305 786159725.9081492 211738.20312732804 46.70154063647244 0.012578233114424237 263721476.23786983 71028.71040638494 314258 156635 112805 WTC_20200903 16665743.613571238 1460.8426830631713 0.5705265080450674 5.001319620328222e-05 3939104.420875956 345.3077104892792 55466 19434 628603 FORTH_20210909 132476745.09556654 2859.5072684479082 15.312208699369416 0.0003307392094564786 23430695.63714154 506.09614224776675 32621 None 146286 TFUEL_20190806 0.0 0.0 0.0063899725437098435 5.410094402792639e-07 973244.9070450437 82.40014785875616 70417 4022 242693 BCPT_20190803 4623591.09213 439.9681144937202 0.03983422154129368 3.7876457637404e-06 295411.67407875234 28.08928435375438 10967 3035 1188214 MIR_20210616 303879286.62408125 7524.2288344412855 4.050641528679121 0.00010036059165915839 38700326.68602705 958.8574195255748 45690 None 15162 NAS_20190810 35628445.164205775 3004.512137315996 0.7855892454116995 6.623373169376962e-05 11850920.144018063 999.1616735178542 24306 5114 652054 OAX_20191026 3651884.599466185 422.8084029616665 0.06996674945901438 8.094959138833204e-06 325458.1284689714 37.65460410449321 12232 None None FUN_20211011 222954570.42832714 4074.071770349977 0.021038145970461924 3.8437297935443575e-07 28905825.637983248 528.1177503365095 19993 456 181320 COS_20201224 17813572.36474263 762.1312032991862 0.005952460723641637 2.5530068457714804e-07 754919.5967794653 32.378456374020644 13818 None 464399 TCT_20201201 4553946.881786112 231.62978529105047 0.007863273561791081 4.0001532974200335e-07 310496.9983817102 15.795401014036607 None None 951785 RDN_20201130 13147824.550218945 724.8076204838959 0.19802216337597675 1.090448601986363e-05 1746657.0050490403 96.1831573210899 26390 4381 2057108 SYS_20220105 714778187.3713344 15432.35701201148 1.1474685169150798 2.4984377215629938e-05 29676799.90625106 646.1670646998853 118545 6985 89068 ONG_20210421 0.0 0.0 1.081442790374768 1.9179982688305302e-05 17269520.042417765 306.2844363076557 122884 18426 153956 PSG_20210105 0.0 0.0 10.558762555437111 0.00033748843593916545 3112304.214541962 99.47819889100221 8526138 None 36186 QSP_20210527 31432129.917462174 803.8606381893486 0.0440056575471746 1.1225176367436893e-06 710117.6252138162 18.11402448902239 65162 8466 228861 OMG_20210527 1017773846.9600985 25977.2208843493 7.261157347430239 0.000185347345729824 642734444.9278246 16406.35475537029 324330 4962 131770 SNGLS_20190819 4286743.87411699 415.75980699673295 0.007427941979210912 7.204161980159812e-07 67112.4941810484 6.509061060600366 10 2167 None BNB_20200418 2370773171.7872663 334886.8927012948 15.616281099861975 0.0022182441856747124 416729931.6338204 59195.19134754259 None 61786 1429 QLC_20190528 9775991.897447651 1108.675183602708 0.04065390287713914 4.619522145519185e-06 2578803.5173386885 293.0306591544442 25048 5800 940522 LTC_20201208 5521928849.372652 287772.8711005908 83.61725735976272 0.004357676254142554 3416421523.51118 178045.29133372716 None 216983 163685 GXS_20191102 32939792.914044082 3558.028925154187 0.5078296423482406 5.48630282328629e-05 14609834.638286928 1578.363497119658 None None 564095 OG_20210613 7174291.461795502 200.07373189727116 5.578565724699516 0.00015636616241435986 2304195.149380667 64.5861625986032 670475 None 239206 DOCK_20200322 2193197.1578376573 356.1310971847382 0.003915949148984207 6.358564786034902e-07 557896.565692146 90.58905828182381 None 15020 378260 GXS_20210310 44033334.09519892 804.2121565903215 0.6290476299314132 1.148874509414745e-05 8481108.936923657 154.89653574028347 None None 470318 SKL_20210603 406495776.06106067 10793.543862802633 0.4235891292420119 1.1249591064421252e-05 70561696.25937773 1873.9626985950833 25777 2147 111729 SC_20190205 85838303.27779847 24778.017251814406 0.00218702916264911 6.313061215453547e-07 1159196.668131195 334.6128003980415 108927 31235 207807 DUSK_20210325 116853405.77548225 2210.7574925411354 0.32588784582852603 6.171226154243769e-06 19817979.595782243 375.2862697129017 None 13493 374805 RCN_20191216 22379404.849524565 3144.712317352731 0.043646971528151314 6.138642043858678e-06 2858167.682559687 401.9813446447875 None 1137 738139 IOTX_20210602 251258914.18298033 6847.775587398971 0.026361159058198365 7.187882244993445e-07 10752791.872181507 293.1957643119111 54072 3056 179770 STRAX_20210620 115664219.73973723 3244.327671254209 1.153495484992165 3.240084504369263e-05 2097895.442520196 58.92834955606918 156778 10740 142794 POA_20190524 7649105.535637551 968.692862505345 0.03462171538638533 4.401280297009677e-06 682008.7503541035 86.70025854646424 17423 None 639132 XZC_20201224 33498371.000963304 1432.6435535425583 2.883407444148273 0.00012366917289889157 5203010.8533447785 223.1568244449662 67031 68 998901 POND_20210722 38998993.763075806 1211.8656599353903 0.05045656846151199 1.5623633456961802e-06 4543461.773020963 140.68610595574805 None 593 135580 XMR_20190221 865682549.2831903 218228.13113138845 51.458927873408214 0.012965852837053309 56171278.193446524 14153.200558649185 313810 155459 108704 LINA_20211007 143416031.23599854 2583.643891306891 0.048338418138200945 8.713692359437236e-07 90026787.43564583 1622.8618147574812 46166 None 133521 KNC_20190706 40301918.51981026 3666.8775671649123 0.23967374142053482 2.1811443148547943e-05 9093041.043981764 827.5097080001962 97243 6690 219747 TNB_20190812 8918699.570437 772.8161409786411 0.0032266591373165694 2.7957307638014706e-07 222744.85083504755 19.299672058815773 15653 1469 836143 REP_20210207 128592291.9390319 3268.8927857383987 21.989116743242757 0.0005591852812836039 38561575.76030241 980.6244534533212 137806 10556 129604 BQX_20190507 15000678.885797475 2618.06104136105 0.12671185978804603 2.212564242582316e-05 3991834.812412483 697.0295426973423 None 5799 460348 GAS_20190523 38601312.74393671 5037.473234134219 2.7704702696972117 0.0003617588290067932 2158112.1576126777 281.7991355267681 321410 97579 225000 SNGLS_20191102 5507746.831424668 595.4157021852341 0.00954365950040165 1.0317185769009962e-06 155174.49344507014 16.775159208241135 22 2161 None MFT_20190205 16202542.175453229 4677.013107392904 0.002955458360757005 8.531202907501643e-07 1275614.3669286019 368.21784195953705 15719 1825 640099 DNT_20190318 8778871.761205528 2204.3582662602466 0.015106323445846028 3.79361243184708e-06 1511780.6668942375 379.64961843400107 60350 6460 957318 GTO_20210909 29374809.60480491 633.8005509025435 0.044067049599414286 9.514174036181454e-07 7908554.95087429 170.7474606566866 13298 None 793186 GO_20190902 7663416.277362166 787.935259432597 0.009937038164158708 1.0213983161211987e-06 130904.53622194905 13.455284226640085 10230 687 740517 TROY_20200129 5466778.780835234 585.7193446671755 0.00481317392728702 5.151098264614343e-07 1841611.0449091042 197.09072642785063 7875 None 323346 WABI_20200502 5472984.125485027 617.6115206074669 0.09263490395268913 1.0487648426870159e-05 1510161.566270002 170.9727424438226 36570 7705 1649170 QKC_20190321 56021849.05158915 13861.836771627637 0.0354639249466395 8.775060930939144e-06 9454507.45018709 2339.387957543919 45235 9049 152354 ONG_20200807 0.0 0.0 0.17452534135965883 1.4830652278246127e-05 10191088.19066776 866.0088220728146 88563 16595 189841 STRAX_20210814 218074729.41442758 4571.827791251919 2.1813764113438796 4.5721026366193976e-05 24542193.18196449 514.39735743064 157365 10769 188062 LOOM_20200224 20324911.53120359 2042.8981958386908 0.0245260584518739 2.4647612846537848e-06 14987978.592824679 1506.2261000194048 21495 None 480790 GAS_20200430 18113646.749280304 2074.750890772296 1.3011429400684966 0.00014839435116101651 10549729.163134145 1203.188493652612 320960 99310 240659 NKN_20210611 191168950.6796022 5187.163454985631 0.29303605554039147 7.981415340800373e-06 18733297.33206465 510.23832693279695 None 3203 103719 PPT_20191015 18716987.807473563 2242.5285709232307 0.5167380742562342 6.190624098945235e-05 1364649.4784231223 163.48770041570643 None None 886383 POLY_20190316 48874603.024660036 12453.953425213434 0.10138303657753654 2.5833591386680015e-05 4703718.232185026 1198.5627863435752 33238 5002 275079 AST_20200801 9437479.558313062 832.6962537841686 0.05504539390675256 4.856150686317207e-06 2929322.106774449 258.42724612625324 32491 3462 206687 ENJ_20200629 143735393.03301272 15760.739236812333 0.1562243016465167 1.7117164866096112e-05 5170602.7652312955 566.5319611401823 56598 15586 105546 RSR_20210828 703585826.7688103 14345.80398890699 0.05339174303718846 1.0884157642878782e-06 124839610.36170188 2544.9141046133523 79644 None 160893 SXP_20210219 258246587.2838581 4996.341979080635 3.0461630773798083 5.891312590750247e-05 653847214.2927417 12645.47638501075 104798 None 126923 DGD_20190729 39423277.0181309 4135.464143582432 19.71164836488963 0.0020677331056577685 2097480.7528315005 220.02372966609877 17176 3364 582962 UTK_20211230 145578984.98320583 3138.8723164490643 0.3198593883885783 6.873382421644761e-06 7938378.579069825 170.5859317015071 82086 4273 122426 NEBL_20200520 7396650.521083665 757.7671604108203 0.4529153500448458 4.6394957689674034e-05 177041.74654295555 18.135495604980306 39207 5966 1392040 REP_20190318 160229795.54630223 40236.10915451141 14.570894855140814 0.0036591516171195753 2535769.35195744 636.8012820834848 123229 9801 256149 STEEM_20210804 187515645.62587956 4880.389607990565 0.48234496421326106 1.255679423158201e-05 11325564.376993626 294.8362520388358 14155 3929 205413 RDN_20190930 7506068.823146102 931.2338735001834 0.14827939878344035 1.8415478579166957e-05 139164.8411565508 17.283501095351365 25504 4381 1994136 PAXG_20211207 319147034.6313636 6322.955451975187 1781.474619789924 0.03528780231643603 12515010.55796588 247.8998093218345 27200 None 35647 SUSHI_20220105 1560467674.981301 33693.22306252949 8.096657624491813 0.00017597258399309972 601707351.5082653 13077.494734649794 188098 None 3501 VIA_20191024 4450456.8547869185 596.0428162559205 0.19208758583293775 2.5739387797599095e-05 235049.97141846208 31.49626947478124 40422 2203 4136825 RVN_20200309 133712865.819538 16606.58285101288 0.02334694618674964 2.9021985770439785e-06 21413915.38811568 2661.9085113410138 30270 7543 183648 REP_20201129 84056332.86471593 4748.362220434151 15.307422438543322 0.0008641278708950686 8584860.741048165 484.6287782202579 136484 10436 142308 LINK_20210131 9479053945.914248 277092.852889005 23.49899812209637 0.0006877205346797678 1790093110.822237 52388.77780681363 136669 31605 38996 KNC_20211207 128926393.50536832 2554.278375292505 1.4057093557113218 2.783187416920521e-05 43999129.284065545 871.1461048568176 198471 12200 88657 STX_20200314 44211619.92348521 8030.42767404616 0.07565611599445313 1.3631528481401641e-05 1162914.3279802017 209.5309754528558 35836 None 34581 LIT_20210930 84158701.52874616 2025.6618298896658 3.038146302758988 7.309162337604148e-05 7826065.867060996 188.27923406843695 56623 None 476309 NAS_20191113 27424020.298968762 3117.197592130063 0.6029319063012122 6.849924115701766e-05 17533621.04495351 1991.998969969946 23980 5059 1403221 COMP_20210115 16053.837566253933 0.4059884341418263 1.740570274988377e-07 4.40176e-12 0.0038474448095572543 9.72987354103231e-08 1962 None 4236498 AERGO_20211207 75721823.32384066 1500.2041807219366 0.28654808550932476 5.677699999940653e-06 3198880.460771635 63.383021944295066 None None 498997 SNGLS_20210804 7843208.879688949 204.1074058094396 0.008781779684503338 2.2932355784507022e-07 99874.12085414883 2.60806915611175 9466 2135 None WAN_20190803 28453156.804813046 2704.085855138893 0.2680763007667328 2.5469954638208608e-05 3317155.9436566345 315.16329929632917 108156 16906 529577 XMR_20210804 4069797359.818707 105922.87739613248 226.5005498963327 0.0058960662840341965 184694768.36325726 4807.814361080006 431632 230304 35880 SNM_20190321 9901464.15478952 2449.4143108825388 0.024778438825799602 6.1296654426489955e-06 157515.68545871 38.96607290795554 31478 10070 None XRP_20190523 15807458475.171375 2062157.422926316 0.37508568981736423 4.89774466846615e-05 2089984806.893093 272903.29178167507 922055 201048 39974 BLZ_20190618 13210517.704696367 1417.1943266886294 0.06378006722074951 6.8453104000070405e-06 921576.4971667221 98.90985468270394 36581 None 922433 REQ_20191015 10173354.062457357 1218.9435168118082 0.013939586235776789 1.6701034566214991e-06 259800.72420159963 31.126755140568303 40666 29162 826039 ONG_20190811 0.0 0.0 0.20555087447612422 1.8150725595181535e-05 8001951.982493535 706.5950705888605 81554 16295 237451 DNT_20210702 99454458.5143286 2960.3801564076493 0.1326585488951713 3.9440203047090985e-06 4983021.619518714 148.14829959972212 69832 10242 207406 CHR_20210304 30766173.326443855 605.124356160274 0.06843967362436683 1.3507387762575201e-06 15063455.578387538 297.2953036835722 38881 None 423474 BQX_20210616 563517392.5200987 13954.40694067952 2.534995679779212 6.277421385399734e-05 2158183.325959224 53.44319231806154 82186 5896 20141 NPXS_20190729 130972698.61910728 13720.237614555685 0.0005540781182552487 5.810243856924945e-08 2401646.8099532477 251.84451730335158 63862 4682 202780 COS_20190906 30315455.823895603 2868.235079934719 0.023042071135187386 2.180078608357965e-06 3844594.6385082873 363.7484877138619 9322 None 256445 PERL_20201018 0.0 0.0 0.02220140441284136 1.9532750881519707e-06 947370.3982070477 83.34945680283714 13336 506 428852 REN_20200113 37821278.32489787 4639.463453324135 0.04460518360348591 5.462407570768e-06 3082505.0065605417 377.4874874284943 10496 871 419374 TOMO_20200411 18414962.16406981 2686.317082516708 0.26247351999076507 3.824716585564644e-05 10968326.219941828 1598.2846273700704 22254 1515 218911 KAVA_20200324 8206415.671235774 1273.8421710542611 0.44073666358508884 6.803915978953343e-05 1784159.6029972122 275.4314091569142 18072 None 337432 NULS_20190703 63210848.00041977 5856.760231016039 0.8524710567377844 7.88218807080821e-05 10597897.815335033 979.9115533065305 21207 5306 511487 TNT_20200312 16773413.448831161 2114.7957499906884 0.03925400804773402 4.944960766281661e-06 334465.152491562 42.13371166449998 17729 2564 1226899 BTS_20190811 116137208.75054818 10249.898636383601 0.042864522142832276 3.7850589600556655e-06 17940651.052652366 1584.210405747615 13654 7155 153233 SYS_20190227 26627370.46499698 6991.465951144662 0.04852819952821731 1.273743907596892e-05 467517.82517304824 122.71174024514542 62560 4629 882608 WNXM_20210401 100376902.78074735 1706.517077297372 59.197870783801 0.001007423939051611 85855547.86484267 1461.0818442325121 24305 None 102039 REP_20191108 123592369.21838091 13406.262495551113 11.244893760154367 0.001219729199008187 11934597.630267214 1294.541106260394 125633 10058 254763 LRC_20200321 32427873.214417454 5247.470514070486 0.02863116360668099 4.621770613966773e-06 3608455.580024825 582.4930551432961 34276 6823 553678 NEBL_20190603 21239536.328039974 2428.537309141454 1.3985849996938622 0.0001599294780306166 387535.5906042729 44.315050381059855 40284 6156 715559 IOTX_20220112 976509507.0426219 22779.04134127225 0.10271457709427886 2.4006680768964963e-06 28559930.727303326 667.5090908711081 215200 16884 42206 STX_20200208 74569614.24902482 7613.04413419008 0.14831363910563394 1.512844683503068e-05 12088252.096705813 1233.0388511552285 35500 None 31204 ANKR_20200704 18416544.924376853 2030.6807449089313 0.0035436260481837294 3.909504150800541e-07 7756475.520479907 855.7328801226474 20741 None 5352 WAN_20210708 109250854.77920468 3214.4518290859983 0.6203052717538197 1.825686080398794e-05 3178541.72730322 93.55102482197297 123038 16633 187166 BCPT_20200730 2924532.9979629223 263.67994106297846 0.025177053710188694 2.2699979938903613e-06 787214.4401220591 70.976342999 10492 3175 2352744 EOS_20190819 3761647791.5127373 365029.8293997185 3.6945182519799236 0.00035832143008671867 1977961786.110654 191837.21598241583 None 67922 84065 NANO_20190312 121007229.08820394 31296.252465544163 0.9033319868915841 0.00023392137098887067 6756499.47385114 1749.6221134019568 97075 44776 338911 CELR_20190726 30130163.35491419 3042.265531330813 0.009624749525202243 9.723489145765427e-07 8358808.524043963 844.4560945949933 17651 None 509628 DLT_20200913 3804947.0953853386 364.89616000881705 0.04645982784278061 4.449366648993074e-06 61463.55985474115 5.886244655738 None 2549 None NAS_20190321 39194318.846271336 9698.095643394878 0.8615967788665928 0.00021314495919549182 3094310.2977957637 765.481787234013 23646 5166 598776 POLY_20201124 44826404.32321016 2447.7001285850606 0.062106413628995355 3.382846103019767e-06 2576421.32916099 140.3339259799125 35381 4998 340645 SUPER_20210602 79373248.31465073 2163.5235748797795 0.7714498121404674 2.103079564431193e-05 7967466.065097736 217.20421468914748 120712 None 457648 ARPA_20201014 17663137.938038073 1546.0386957301512 0.019945272575246965 1.746215026115534e-06 4859845.268369114 425.48101562445294 21098 None 362193 CRV_20211002 1002848787.7562327 20822.281278969498 2.531656260512092 5.255965093449896e-05 199057161.9909215 4132.620653697499 170794 None 15184 BTG_20211104 1161358716.0043852 18417.284776846718 66.30624347746175 0.0010515790150823594 39221018.54776369 622.0228728385677 102966 None 278866 UNI_20211104 13939660255.072443 221179.90128351352 26.820991603723186 0.0004256045888177772 432736108.73912287 6866.803298985893 691810 55873 3050 ETH_20210930 335476370747.3378 8076311.134747587 2855.6117305265157 0.06866858646884147 17522543131.581055 421362.69974038936 1613880 1111359 4234 NU_20220105 482232696.7496901 10425.952170780103 0.7368559769309986 1.6017731741632974e-05 39369404.746967606 855.8097970395522 None 9616 126838 GVT_20201224 6167255.826551732 263.62416890854814 1.3815584317844842 5.921095808806603e-05 1421818.1118827788 60.93641115331207 20619 5461 361646 XMR_20210422 6937084269.002518 128029.66631637527 386.31545131579895 0.007133206936564165 1477500271.0859885 27281.629938923925 392595 212351 39530 GO_20190318 18729878.32718156 4703.615859591173 0.026840610151558347 6.740455938080366e-06 2110698.435718282 530.0576150914446 8312 629 816048 DEGO_20210513 61309679.214544564 1188.674484352383 10.886712627634706 0.00021702981354924602 21402568.518503617 426.6664891341946 101853 None 63518 KNC_20190314 39508673.978219904 10219.764768616576 0.24712775302361445 6.39234595150564e-05 11149101.613771757 2883.8895547643624 94229 6638 214116 AST_20210210 40518127.24890416 871.3953237610262 0.2323317653898969 4.988386702393529e-06 7338127.828945961 157.55666996696326 36432 3470 162456 QLC_20190908 3447527.760117439 329.2809077063662 0.01436435831732997 1.3720249296247017e-06 41806.01974148104 3.993140523687258 24772 5744 940522 ZEN_20190228 30503724.717939973 7991.009722456822 5.195287852271301 0.0013626366876909168 313888.802402859 82.32775741627276 24930 4245 306368 GVT_20190131 14388136.206588855 4160.376872836648 3.636898585717285 0.0010516211792561102 1797348.603501464 519.7092559499436 20596 5796 138233 BCH_20191213 3754763915.467287 521022.3147883262 206.49008975238402 0.028686026234702632 1649820063.40295 229196.38263544985 995027 279031 120170 DIA_20210207 53561072.56273672 1365.471403931968 2.100752701064862 5.3422336320681595e-05 35773714.9781877 909.7288948081382 23737 215 235170 COTI_20220112 290136832.7935604 6771.889016698728 0.33497294306083025 7.829062571051506e-06 27968789.637271725 653.6928090547689 217433 10093 83565 RCN_20200711 30073455.26013685 3237.321457388502 0.058639996724905885 6.312427954042334e-06 396876.3394039993 42.722602985544746 None 1136 1147730 VIDT_20210513 54953345.30801608 1065.43763128919 1.1818345283635663 2.3000896284278004e-05 5777820.797136426 112.44810818659467 27795 1579 391219 GTO_20190708 20615927.177596394 1802.7271612243387 0.03110342253248853 2.7194665821203232e-06 7517535.534223334 657.2809356870073 None None 1222950 RIF_20210916 184222870.05038795 3822.218216415735 0.23732310813864554 4.924795804941016e-06 1353745.2101116024 28.092160026076186 44706 3472 1151505 XZC_20210125 49448231.26218805 1535.6923722733445 4.347256236888468 0.0001346948904632923 2956449.4085727935 91.60229062849106 67847 142 431811 KAVA_20200901 110263233.54010133 9436.168807549257 4.044159810552953 0.00034648984949275306 26791320.910446946 2295.3891994450055 35985 None 95209 RUNE_20210207 856890172.6213859 21842.653258044596 3.5418935420693796 9.016949889111835e-05 90008403.86138856 2291.433261833433 33567 2341 162982 WPR_20210112 5614788.7105919 158.59765995590863 0.009576397742525621 2.694030802169334e-07 297677.3388550438 8.374254511402368 32522 None 7558136 WTC_20190524 63198288.55281347 8022.390423939356 2.1929528915627152 0.0002788542714675673 13658113.981257636 1736.7556952628106 56611 20202 976085 COMP_20210602 78004.6020374761 2.154543143794659 8.651178230718062e-07 2.3577402e-11 39.60644187373252 0.001079410199330868 2474 None 2936409 NAS_20191102 26992924.249214783 2915.671191492347 0.5932420431328519 6.407582955713324e-05 10092674.300076216 1090.1056081801003 24014 5063 1403221 MBL_20210813 33031862.7468762 743.0418608319764 0.009362516318245745 2.1059403212673235e-07 28590569.12598599 643.0966877254651 None None None REP_20200520 141411771.03898823 14489.070444449788 12.880830403244305 0.0013194398443951683 44775537.42411532 4586.554304503891 131687 10130 252584 AST_20201129 15808072.748381842 893.0239727932397 0.09221955073453605 5.205937469294653e-06 1380111.3418828042 77.90943774155178 34059 3462 188139 ZEC_20210616 1534592216.359299 38022.004440935925 136.96945540128922 0.003393639812598308 883829183.1646187 21898.297651371548 75902 19944 96879 HNT_20210430 1328975874.3335135 24799.21164948327 16.547448867809322 0.0003087095692295599 18471306.252059106 344.60109481126034 36775 21304 15835 OST_20190316 15585454.186166106 3971.5651334598574 0.027558983293641395 7.022721048436332e-06 1090401.7072978579 277.86173892918583 17527 741 1075482 BCPT_20210115 2446852.847779124 62.72686216336061 0.0207920746346687 5.300141874045838e-07 236537.9474996102 6.02962764597404 10396 3214 2139942 UMA_20211021 823494333.8995435 12424.00316050087 12.882202793158834 0.00019507069723454125 182605839.28554374 2765.1364413737033 None None 258925 EOS_20200530 2451512520.176767 260117.37740667918 2.6140731962451347 0.00027736585416555443 1825061685.593859 193647.90322500878 1541 71382 92987 CND_20190314 25264520.386151504 6534.382646541178 0.014624930017197075 3.7831613177521765e-06 494594.55999840994 127.94119391726512 36656 6215 642987 WTC_20190726 54217322.82160996 5473.278873884558 1.8595573476059286 0.00018786344141246268 9445866.95053225 954.2771427489669 56139 20041 613904 RCN_20210210 36438132.73661732 783.2252122909225 0.07123831326963327 1.529555177350864e-06 1322393.8338371108 28.393068872738393 None 1136 3103198 ICX_20191127 65283309.72785821 9111.13121707116 0.12894316456179106 1.801679703268893e-05 7857450.181676704 1097.8952284818001 112360 26720 100048 MDA_20200807 9023023.986862937 767.1435733311937 0.4601537502898118 3.908237559515311e-05 251706.4348693606 21.378257639073073 None 372 1458331 FLOW_20211007 1283445680.9482133 23121.310531522573 19.17190574359614 0.0003455607103290516 52607605.67960361 948.2167203657738 95454 None 50509 LSK_20210614 421720151.59501034 10802.930450467009 2.9238454024510365 7.489824332826592e-05 27011062.81163025 691.9248033171057 196117 32511 207056 SUPER_20210809 222703307.21891597 5062.320485301592 0.7351901146540581 1.6712961498478894e-05 28249697.634307567 642.1959429201727 130521 None None NXS_20210823 47708854.44902108 966.8899037775138 0.6999028578624522 1.4184557871020496e-05 197775.23531479813 4.008205194854012 None 3980 554016 SNX_20200907 589110382.3550776 57366.92999083117 4.979858495762155 0.0004849332183700073 92580828.69768476 9015.420670674992 34144 1963 31979 NANO_20200927 110415770.50668223 10283.159184676282 0.8279480036372734 7.712637497622755e-05 6430748.74015676 599.0476896282531 98803 52672 242579 ONG_20200629 0.0 0.0 0.25696125637997247 2.8154602483741558e-05 46065659.487905696 5047.299150481846 86217 16510 143020 GRT_20210310 2610663679.272117 47745.65097968654 2.130912400642977 3.8956049970633586e-05 767989508.4917268 14039.919079122486 None 11641 25525 NANO_20190405 175129031.34765875 35716.73702854924 1.3141697169244786 0.00026815565482588797 6300401.227323665 1285.5936299709265 97771 44934 397800 STORJ_20190914 21740025.642109334 2099.4833380829423 0.15105275629290907 1.4592162232649344e-05 3056998.5653616935 295.31549178906437 83467 7799 165970 LEND_20200320 24405716.178616416 3946.4567329600227 0.021583281813300804 3.4963881271560725e-06 1612829.3276344265 261.27061496250354 44141 5741 109064 LEND_20190225 8297933.610233837 2202.9810677971095 0.007393135854353943 1.973548122461788e-06 215908.2323660826 57.635257217569624 11672 5941 428546 NEO_20200506 639756080.1268876 71338.9399627197 9.103499443061544 0.0010117080441929503 671284037.5518651 74602.46084237094 320746 99334 218752 DGB_20210128 316722847.76991564 10416.075559343502 0.022653669075382132 7.450120205946088e-07 14924930.864492534 490.83673216864366 180488 24071 218245 ANKR_20200730 31213541.302362043 2811.0381276033295 0.006134079026900397 5.530570513019921e-07 9666398.865016177 871.5358947203174 22127 None 5287 TFUEL_20190627 0.0 0.0 0.009839148370014128 7.553635622822976e-07 7700392.815482997 591.1686590480692 70172 4003 231431 ZRX_20200323 88773735.30477656 15225.43821007029 0.1381213126923996 2.3696885354891405e-05 31271815.906549342 5365.172267274192 152673 15955 132419 OMG_20210620 629558380.7203344 17659.862275702188 4.4860355494418656 0.00012599943992097103 121129979.42902122 3402.1820374549393 325221 4990 165671 ONT_20210616 833600159.9925153 20641.25599902031 0.9631477539955511 2.3863399849579806e-05 203127239.61424783 5032.77562466142 139141 19414 131880 FIS_20210727 21051619.10436794 562.3003108765577 0.7809709673415248 2.0860163560084052e-05 5179005.64753841 138.33408590591785 None None 421891 APPC_20191026 4283266.759568934 495.2198626291808 0.0389235084805287 4.500232090310684e-06 389828.6705280526 45.070949698973905 24993 3276 831430 NEO_20191102 748907263.5145545 81074.90432895442 10.618665501755935 0.0011495512616820816 441570770.6936921 47803.39266633112 323533 98579 158708 ENJ_20190704 106933633.92313968 8918.26638460869 0.12349287606498209 1.0289965896143317e-05 7941373.400898851 661.7099226095402 46701 12641 20679 SHIB_20210708 4263199013.2350597 125470.14690460861 8.564679443489137e-06 2.521487738713305e-10 389480583.94062483 11466.518079900268 725248 196723 10263 BTCB_20190706 0.0 0.0 11060.3014920421 1.0 32961.00975563035 2.98011856 None None 49193 ZEN_20201231 114604869.31383546 3968.7194228913636 10.836555955032495 0.00037577077302727337 11112391.368981771 385.33570188088044 80408 6315 358907 REN_20210702 309007095.8615851 9196.449773139911 0.35102415467267145 1.0436164159811312e-05 27670680.094371926 822.6663494076947 86188 1179 90516 DOGE_20210819 39924385528.41325 887362.5468669506 0.3049771089952523 6.778445318376884e-06 5030258841.924592 111802.9304218976 2040983 2139708 21799 MTL_20200306 20666955.043174136 2282.7130959718793 0.31992826425900167 3.5316890984556586e-05 4504372.325298549 497.2378002764928 34769 None 606546 ALPHA_20210418 424218053.10239995 7037.150030285311 1.685047339435624 2.8032643869594535e-05 190758386.983811 3173.478751787772 53511 None 28389 NCASH_20200310 1901398.0060138865 240.15922964528286 0.0006561571090350726 8.279398780205416e-08 489591.2045119575 61.77668070070295 57985 58346 746963 ASR_20211225 8809809.70028944 173.15951630215747 4.119167513947952 8.109581579928377e-05 1112824.223581181 21.908647304810902 None None 103751 HOT_20201208 106250535.85637142 5531.848436242311 0.0005982700035120904 3.11785756934544e-08 5517741.659113973 287.5546575387262 26471 7337 422669 SC_20190702 129275978.04435687 12178.65354724235 0.0031236047015471315 2.94555108724022e-07 4268992.055964901 402.56483753014817 109570 30854 228253 COMP_20200629 21528.740723428265 2.361170057892923 2.3358672480833306e-07 2.56e-11 14.704660696253146 0.0016115612483242085 1801 None 4602495 TRX_20220115 6876820997.350934 159573.83231962327 0.067732708403753 1.5704551217891e-06 1099320913.0722346 25488.92845289648 323 121973 22258 FUN_20210806 214578585.55403224 5233.193828195665 0.020261718200690785 4.952040489196213e-07 27532239.345208243 672.8983329314293 5670 355 131817 YFII_20210219 130224885.9700744 2519.684901925076 3290.6991637604006 0.06364933585337965 151228311.6225398 2925.087076633007 14351 None 229687 STRAX_20211125 262351796.15716237 4585.975253206282 2.0002974917016294 3.4974740426110094e-05 5676612.685861018 99.25426393384055 158525 11139 201424 CHR_20211221 317106076.88351554 6721.385308073202 0.5561898209988221 1.1801276926572418e-05 40467122.60901869 858.6344127495291 112694 1789 31346 TNT_20190904 13898675.566892391 1309.6805948526467 0.03243706681304819 3.0565644010126793e-06 737415.2064679342 69.48708037770609 17513 2534 571666 ARPA_20210111 23698327.285636276 614.7465541167021 0.024047134778660804 6.2551697771362e-07 17205163.348971874 447.54278953300644 None None 1160562 ASR_20210112 0.0 0.0 3.1507876014158853 8.863791038684418e-05 1219266.2382478141 34.30037985262763 None None 243323 STEEM_20210821 218229623.01711938 4441.512809522415 0.5640158538814376 1.1471969592859002e-05 15821581.762527602 321.807806716021 14204 3926 204602 FLM_20220115 0.0 0.0 0.34114015024792294 7.912034745165597e-06 2621300.489276013 60.79560126123756 None None 31025 POLY_20190410 53896861.52003106 10418.48982841219 0.12637931336291935 2.4447926944398278e-05 8929826.182257155 1727.4641895154764 34303 5041 277280 VIB_20210930 6445590.368748547 155.23539879434864 0.03534429912268549 8.499205387558868e-07 929253.2220797931 22.345651738890457 32960 1299 6471622 BEAM_20210710 39095401.25989308 1150.3182152868226 0.42417883138827617 1.2481366925998658e-05 6287939.654558994 185.02121329399563 21573 2518 188205 BCD_20210703 380606270.5392725 11260.464033323058 2.0287251478670982 5.989167030236904e-05 4850190.008608267 143.18646427033914 34285 None 1330822 CRV_20210207 678829638.161949 17307.027957685157 3.145770437556278 7.999723442821385e-05 487866943.3987583 12406.501687123948 68120 None 29016 FTT_20200629 284630228.9937782 31208.891965011633 2.866782818326392 0.0003143332763425021 2146408.3188455426 235.34658953530328 14861 None 12681 GTO_20210902 34789165.33148101 715.1761961262035 0.05243587181699889 1.0777544699213846e-06 11612222.531919835 238.6748671439313 13344 None 793186 FLM_20201101 0.0 0.0 0.1524524556567619 1.1048502643201612e-05 5617221.208259533 407.090086542341 11708 None 37281 SNM_20210823 110174062.72174923 2231.7675888 0.2517680258019352 5.1e-06 1741144.841676974 35.26992224 None 9714 None NEBL_20200526 7733363.387908796 870.164466907686 0.47414469409728544 5.332807559470043e-05 503310.9162289076 56.608463455221 39172 5963 1392040 RDN_20210723 12449415.850670118 384.931390868941 0.24396877720754537 7.535934673938323e-06 425492.664162848 13.143013454723466 30310 4676 1078541 BEAM_20200109 28065073.875109278 3488.1459093358562 0.5299252550293994 6.604018302763001e-05 20086991.040988717 2503.27485288027 12296 1418 354880 BQX_20190904 11486547.830988437 1081.0550583410309 0.08166842322536677 7.686213763576131e-06 186042.01877955985 17.509322071774577 60360 5752 423715 XVG_20200905 86339344.13379233 8229.630536327115 0.00530279295413651 5.057477443852854e-07 3630194.6493884004 346.22561572492657 289389 51497 238378 BRD_20210806 10547083.45322657 257.1657833583275 0.12473960498131678 3.0486830798622137e-06 768411.4546321939 18.780266303235095 800 None None AERGO_20210408 74707278.93938524 1326.317151950461 0.2824571381343238 5.023789193552441e-06 8318569.459699598 147.95426886177836 18960 None 375003 RVN_20191127 109822948.82451291 15327.214590635856 0.022268861747609198 3.1115535563222453e-06 6342014.170642575 886.1484242241337 28649 7184 245564 CND_20210421 72216423.30899528 1278.1483813144594 0.036871286443065004 6.528908422891355e-07 855744.3786201199 15.152920389805614 35557 6175 117159 SNGLS_20191220 4175378.573852945 584.5973055943373 0.007145159765533404 9.99932443473389e-07 75026.95652316982 10.499679562726243 3837 2155 2197318 HARD_20210718 49406736.96358415 1563.0230801262242 0.675594725611706 2.1375762620324774e-05 2775901.565695199 87.82930161564353 34918 None None XLM_20190622 2387964692.854597 235900.47215369655 0.12303900098928998 1.2155880386784756e-05 279763086.20701545 27639.745001393945 273234 102317 69800 LINK_20200113 814937707.1344396 99907.0337019807 2.229241108615507 0.0002729650662326567 139679643.5712539 17103.427265640537 39741 12166 107276 STORJ_20190818 20533892.283568528 2008.8758376208925 0.14279696921448035 1.3971145906841646e-05 696610.4869112637 68.1558355643752 83702 7783 176136 CVC_20210428 360402430.7879749 6541.499060136374 0.5411344879258965 9.819958657615358e-06 38705629.87611937 702.3904291468921 101518 9618 120797 MANA_20190826 47570429.10481269 4712.10122007762 0.03584085499279914 3.549576370440996e-06 11349453.245400654 1124.0175789721793 45639 6353 132060 SC_20190601 142690932.07903078 16644.238188828815 0.00349001371760674 4.0686033942368455e-07 3591462.3083713376 418.6870574289201 109712 30916 231411 STORM_20200320 7569854.0248753475 1223.3311114298613 0.0010197820637236547 1.6519980282575995e-07 1125038.3266773385 182.25081255094852 26049 2525 875750 ARPA_20200411 0.0 0.0 0.007285326003854993 1.061604507729769e-06 1393448.0362883564 203.0507235816427 16726 None 1878146 PSG_20210401 0.0 0.0 18.024595668924796 0.00030649862648801006 11510316.1843205 195.7267816564227 8889480 None 28984 BCH_20210418 19002658679.90625 315351.40534252377 1009.5311225733147 0.016794677379122318 15151412270.785961 252060.6598806918 None 502338 311242 BEAM_20200208 44969113.48586439 4590.643411810469 0.8211759436863182 8.37624690566486e-05 32463166.929510448 3311.342759515426 12368 1441 250044 NXS_20210804 34148164.779362835 888.7394996253222 0.49928652246166033 1.303815010493241e-05 223237.7756211511 5.82953373804175 26068 3960 456047 IDEX_20210508 70782639.54160663 1235.251677876605 0.12485923594329643 2.178670775277243e-06 8196167.675881201 143.01505891661745 51502 1979 5142522 ONT_20210825 972275085.6283883 20232.643678946217 1.1046466355217055 2.3027519568953313e-05 368549888.9979727 7682.8096045648335 143167 19870 180960 IOST_20210930 1231527379.133155 29642.98897265 0.054226657654674104 1.3039825723750217e-06 286461900.7534779 6888.518348498297 None 53852 221076 FUN_20200523 17236672.590090454 1882.9699288474485 0.002866047189616617 3.1309295019088784e-07 487700.6672247992 53.27743425323799 34319 16848 215039 WTC_20200711 11567415.571241617 1245.9245623799743 0.3965738355433424 4.271191456858077e-05 8414418.627954843 906.252247047707 54417 19542 728935 ZIL_20190615 218801379.43205154 25155.903563367738 0.02391073442397934 2.7538855961141964e-06 85180167.56053503 9810.50737966048 63769 10516 194027 XLM_20200421 1013025667.860523 147958.76102022163 0.04983530262547649 7.278758935206486e-06 628330198.9229877 91771.57173181784 281375 107679 81218 POLS_20210731 83107779.70331644 1990.8072413759091 1.1509434072916682 2.7553363423204913e-05 15512909.332316827 371.3760606095848 383189 None 22306 LPT_20210821 519614619.4446375 10575.872677133983 21.733405353446837 0.00044187310328893764 52169452.73870323 1060.6841221447314 15309 1302 104852 REQ_20200520 9682323.425479451 992.6119706383246 0.012551377546210031 1.2857162605459942e-06 62228.20391248781 6.374424905975065 39055 28054 876989 OM_20210401 140130027.39281553 2382.3636530241197 0.5017698799888567 8.539073826522702e-06 28016970.62596917 476.79023813860994 31306 None 76567 NEBL_20190110 19644189.96864826 4939.7168963999675 1.3438572508091107 0.0003370706861755679 118928.92698581773 29.83014379027066 39863 6179 493030 GXS_20200107 25774965.561642114 3319.160588522949 0.3959955971916415 5.106113498941883e-05 4619871.52078375 595.7032982928577 None None 1062662 ICX_20190414 175234115.21071753 34542.84874367725 0.3701307193858337 7.294339218467172e-05 7788344.360854574 1534.8854537817517 113379 23811 314795 JST_20210110 40522107.50138766 1001.5433624633772 0.028147153424781888 6.982680602519337e-07 68002060.83087617 1686.9793684964027 None None 212672 BRD_20190622 23494261.263047703 2322.140742130314 0.39291221270110177 3.8732040136823255e-05 363192.8375846012 35.8023983678888 167 None None BAT_20200422 230812916.04348215 33703.83562092739 0.1583117909283615 2.3126542396953345e-05 77473557.64776129 11317.511507367952 115393 37108 18644 STPT_20200412 8569986.622541618 1245.4391853273273 0.012299429164147445 1.7874229812559512e-06 1491192.7153317675 216.7086043826344 None None 1339283 FUN_20210702 174318425.61919302 5188.795110929427 0.01671155776309318 4.969188806027835e-07 2533108.613176509 75.32209231175557 4347 326 110414 ETC_20200725 728488664.2748451 76353.58411406082 6.256178569419797 0.0006558705862901688 552536772.3770372 57925.5551651259 232295 25607 352262 UTK_20210117 104778287.48989521 2887.59355960173 0.23271072588723396 6.43034215539282e-06 9666867.206863722 267.11817203046365 56683 3150 109478 SKY_20200526 8371234.305098267 941.9382319269175 0.4690523062505601 5.2753868468651535e-05 381576.23559910443 42.91551768387517 16048 3821 462485 VIA_20190316 11399711.879087212 2904.9328745682283 0.4928115955160459 0.00012558077080958738 3765211.0036632116 959.4703217273844 40893 2228 2390217 AMB_20200105 2402637.1161383293 327.1720876706304 0.016573378897786446 2.2543369817379452e-06 952528.7912257246 129.56445957541533 19161 5534 724593 TNB_20200801 8488507.895441515 748.9657255496029 0.0024615457687884364 2.1715962637587372e-07 881981.5627358117 77.80915108817531 15906 1433 845361 RIF_20211216 163586059.19961268 3353.1270990029634 0.20309336587466548 4.155843787754134e-06 1623084.4826484139 33.21273215973606 None 3563 352170 FUN_20190915 17864377.60443066 1726.1656235360676 0.0029739735953569105 2.873635510445016e-07 207321.5821264409 20.032681574924492 35818 17374 352374 FTM_20200701 14517004.873956282 1586.866927139834 0.006072006004637328 6.638829037807948e-07 1537081.850099803 168.056876296512 22420 2403 295003 XRP_20200903 12382372183.463934 1086876.440292635 0.2750951115567203 2.4146778271611486e-05 2141694657.2245405 187989.62191966514 964228 217933 21508 SNGLS_20190430 8776127.260294775 1685.8985893382971 0.014885623780888988 2.8595360332979545e-06 326960.5609207821 62.80929299184873 3451 2182 5119278 DODO_20210825 296333767.15723234 6166.583521017707 2.0018228716806195 4.1684528239288834e-05 93881159.1482835 1954.9141360186006 102042 1066 31066 HOT_20190510 193784972.63518685 31386.269459986877 0.0011021254194512515 1.7852316668342235e-07 9871087.563454596 1598.9267458459228 21250 6044 229269 TNB_20190512 12262785.038837723 1675.5003143493107 0.004686311541611724 6.418234879787465e-07 1275659.4297948098 174.7105751365174 15752 1504 655962 WABI_20190813 6822997.915057854 599.5104010983472 0.11864672197054627 1.0425101464555298e-05 243295.37457929782 21.377573048127 36276 7980 1513094 YFI_20210806 1174563376.5984023 28667.713317702455 32943.02696180891 0.8043302394830618 240614018.61096713 5874.782892194621 None 6933 22152 GTO_20190220 18561623.23948624 4741.139798787668 0.03131814438521843 7.999499766435701e-06 15888431.87705571 4058.334540073366 16266 None 751692 POWR_20190314 43824427.23099566 11334.692779277657 0.10534459809924641 2.725042841877471e-05 3388389.9272205736 876.5050969166118 84742 13278 711745 OMG_20190522 296690435.88377833 37284.82707788237 2.1157021111636998 0.00026588991742874756 190412148.7677188 23929.961711590797 289781 39008 None CDT_20210325 24202485.23010893 457.7737032981902 0.03574896606859701 6.785353575694818e-07 2148466.9984933953 40.77910449917971 20319 308 485840 ETH_20211204 502863051143.01685 9377616.78468671 4240.155516808957 0.07907233083386943 27620915094.003757 515087.2715845452 1924457 1173090 3541 GVT_20190716 9386980.009912882 858.3879538001297 2.114965800683075 0.0001936300764740455 864282.5985436335 79.12709775124532 21436 5755 209505 DLT_20210108 3815727.766595242 97.5904825246075 0.04576573640003388 1.1594057979562833e-06 484526.038547764 12.274735261392 None 2533 None KSM_20210916 3851938991.992091 79928.2682635876 429.2151511899171 0.008903698803599843 190760128.8819226 3957.154649811034 127617 None 61942 LOOM_20210930 71750652.86355987 1727.0454946052632 0.08608222014944435 2.0709637743116e-06 3702785.928223849 89.08152587223718 None None 482810 CHR_20200725 23428495.602060683 2456.0919843359634 0.06139010652763994 6.436610188911013e-06 11206360.997259803 1174.960941680425 23448 None 371620 XMR_20210930 4206100495.6877317 101250.82350485554 234.00878240637957 0.005629408119418356 199036064.84447783 4788.090549297418 442329 236216 48390 LEND_20200411 27612766.88405602 4027.14972022651 0.02345545005294351 3.417885691575003e-06 930550.7634807681 135.59817153821686 None 5723 93984 EVX_20210509 26132053.397405937 445.5139767266319 1.1981435640432558 2.039653765260246e-05 871569.0135792836 14.837111958704853 18185 2816 705371 XVG_20211007 376063348.5169771 6774.25951556762 0.022803202760227587 4.11012397462558e-07 25712827.984442808 463.4564357714247 328353 54950 184917 BTG_20210513 1748254403.659556 34684.9773971696 99.82082848250089 0.0019804229707271535 149623483.6932916 2968.496540963497 96500 None 155846 UNI_20210120 1873169648.1414063 51705.069314464374 8.62100745902781 0.00023919412757005665 593261834.343645 16460.343824182495 169002 None 5976 ATOM_20200725 723850830.0714909 75867.48833615963 3.8113953415035384 0.00039961595567592455 141678160.6877706 14854.626326776206 36597 8781 173745 VET_20190806 289829952.75160575 24535.721941413045 0.005221369337081797 4.4236602652300965e-07 27986541.603054136 2371.0820679050557 113312 57201 138282 CHZ_20200127 30414218.887146465 3542.1361512647877 0.007112115774942766 8.280145089414473e-07 2166456.4169350113 252.22555466990087 16629 None 300024 KEY_20190510 7308215.600310409 1183.6831628761079 0.00279066504729793 4.519884279775974e-07 322833.55914677173 52.28754810200052 24030 2832 639890 RLC_20190522 37546708.08611052 4718.665761148248 0.535631493558899 6.744234213231432e-05 1949483.6029418125 245.46305008572273 24930 3316 988035 WRX_20201111 19226132.45851443 1256.6848379294347 0.08079630163219809 5.289032225289688e-06 1401569.0550883487 91.74855468108414 None None 11558 NAS_20201106 12775223.952423083 822.1559374904043 0.2773965957552185 1.7803943045672523e-05 5888404.632238761 377.93117257561335 23437 4874 985620 DNT_20190920 5857219.620983438 571.997870430045 0.007797923842237653 7.608745819473953e-07 1462055.7723734963 142.65862261476505 60102 6269 442097 AION_20190621 50711243.58076404 5301.437655163288 0.15472751712261476 1.61892483294982e-05 2218414.92450317 232.11430506046435 67322 72573 278705 PNT_20210723 18889045.307444833 584.0423815539751 0.6021496160871387 1.859942157362098e-05 4937195.081581381 152.50192022085642 47539 318 305973 VIA_20190704 10692499.663950963 890.9905205475026 0.46193020415629565 3.84919753091441e-05 667534.4491655942 55.62467945177118 41019 2235 1727246 LAZIO_20211207 0.0 0.0 5.785505087212699 0.00011454818091547798 144549080.56958085 2861.951373761123 None None 88685 AXS_20211104 8943596325.62581 142188.75720158656 141.76879646644127 0.002248371850657867 556637129.3633376 8827.945809554676 645099 None 450 TRX_20200610 1162187965.166538 118895.55739882187 0.01755729859768002 1.7979317929164677e-06 1443804596.1196523 147850.88786184078 508620 73028 68107 AST_20190908 4134892.277571617 394.9820446280547 0.0240034537470587 2.2929093680564393e-06 1368263.7399262236 130.70222228470817 32026 3575 238019 ALPHA_20210204 368185060.08730596 9817.667967688672 2.1149438580175217 5.638351484507686e-05 140856466.8996675 3755.174238954519 31811 None 61683 ARPA_20200412 0.0 0.0 0.007120362437487277 1.0345584661833904e-06 1215179.3804285768 176.56041065200586 16727 None 1878146 REN_20210221 1232676104.2599936 21982.32815736405 1.4111556862620889 2.5097254664782914e-05 666367466.4196135 11851.274928677949 None 1076 73664 BTG_20210909 1234398562.6355295 26633.789275819967 69.53281237145622 0.0015018883197411065 86085545.3478707 1859.4224891381684 102108 None 265345 BZRX_20200907 87869783.34325685 8533.96989009829 0.6194125073462796 6.0282219685499775e-05 31174148.422415283 3033.9181747549546 None None 102512 NEAR_20201224 223751230.3084115 9572.913894134945 0.9642786036519683 4.135103374785977e-05 31187235.23602458 1337.3981459955228 34032 None None TORN_20211007 81971224.64592718 1476.809901884821 67.02921195246526 0.0012082822250635518 7399570.734470652 133.38616897214632 25576 None 97574 BTG_20200313 90936459.46172035 18946.337926512326 5.242741539336215 0.0010976232415785578 23068931.00053979 4829.724035522541 75038 None 217881 INJ_20210511 413053079.2047113 7397.947108366724 17.18195984046025 0.00030745977636086215 51437514.94342384 920.4402168268579 None 3365 92186 ROSE_20210124 95944885.49327412 2996.7383877774973 0.06413417137282237 2.0012340411273045e-06 9459616.52718883 295.17659938525287 9375 642 196498 APPC_20200523 3601265.265846869 393.4008283122534 0.033069030156129775 3.6124480965844852e-06 127108.56229708422 13.885290308236591 24583 3214 1178523 LOOM_20210430 127910453.04788262 2386.7917997988216 0.15340688587033535 2.8623744285702597e-06 10685761.67280698 199.38251655725364 32048 None 252037 PIVX_20191127 14943862.693950009 2088.055942757991 0.24227840284043392 3.385275073878264e-05 19909617.70865772 2781.9042791013444 63108 8569 260294 NEAR_20201106 0.0 0.0 0.6928507248475891 4.4603375962611954e-05 19169035.4927029 1234.0373853397653 32672 None None XZC_20190126 32843579.928277984 9210.161149450254 4.9381317251659 0.0013847756263266563 230326.83563548877 64.58940462270786 58812 3934 298501 SNT_20190712 80365589.99187793 7101.848344771526 0.022827376270819304 2.011529626541521e-06 23595560.41281174 2079.2213814731845 111763 5737 317609 ONG_20220105 0.0 0.0 0.8205616411573947 1.7834069194589222e-05 7389801.5065763965 160.60978821368522 182877 21064 103230 KNC_20191012 31681788.6674361 3832.5093924506837 0.18919461094588808 2.288192787718168e-05 33103392.035235092 4003.6522459773723 98187 6721 164062 CHR_20210105 10054376.008193664 321.36679042964585 0.022340984728020437 7.140821619592019e-07 3202174.6195296743 102.35071565205999 36450 None 675741 APPC_20190902 4051259.8760899603 416.5197668948132 0.03728191737277753 3.828531488651427e-06 331559.6062375593 34.04831302405716 25231 3314 1154369 ENG_20200530 26592303.952648956 2821.5434622104135 0.3238538136631392 3.454732948861734e-05 1991045.4209544011 212.39614691109503 None 3567 481598 PPT_20200329 7422987.948527291 1188.9030930666029 0.20513530746061487 3.2818240334971186e-05 2042963.383824159 326.8401922412108 23996 None 1049662 XVS_20210724 179500809.13609606 5369.187983150983 17.146769224900392 0.0005128026360847924 15768694.779296897 471.58902906893974 118289 None 12441 BTG_20210203 196870635.2930005 5527.350348846129 10.994540584352002 0.0003095769915705973 22392857.211194314 630.5232415056903 83434 None 263524 MKR_20210519 4215326920.0302715 98486.10943578108 4670.383960400963 0.10916477453911312 400439318.3265292 9359.8017362921 149347 26778 30840 XEM_20200612 385129281.04181415 41507.86871886267 0.042773358913702396 4.599692480386102e-06 16447986.461726354 1768.7570386542384 208695 17884 214042 OGN_20210202 47644624.3355877 1427.120524255137 0.22688800422935207 6.793366357259439e-06 21555486.26670901 645.4035140200899 70522 2585 192490 ETH_20210702 247210647940.18707 7358518.738598026 2121.657900633364 0.06307380769265512 25874247678.48856 769203.8013187373 1407094 1029386 3687 ONE_20210707 741977113.7072307 21723.020167050872 0.07195435780956028 2.107625647055016e-06 46981888.91050803 1376.153398199323 191486 25712 23324 XTZ_20210117 2194313704.74685 60473.27431443165 2.8849303055303843 7.971737825273997e-05 542142321.1937717 14980.661544084282 79939 32164 158435 CRV_20211207 1456055148.9367065 28853.318413906047 3.7205839770918554 7.36644631876854e-05 449852256.0906143 8906.699905907311 None None 10198 JUV_20210616 21104725.244218037 522.586315912898 9.574348341874979 0.0002370689614476611 5967750.150879115 147.76654033573377 None None 39510 SNT_20200913 121915585.3306482 11691.97171155565 0.031427802651612456 3.009920940006133e-06 12365308.962280253 1184.2572256098622 112248 5706 113908 QSP_20200425 5807968.33404107 774.5699782795475 0.008135994334555172 1.085484692670436e-06 319037.0644244663 42.56515375833334 54822 8283 395631 NEAR_20210813 1405402651.5598586 31612.165051910684 3.296434712303231 7.414726429717737e-05 165715796.7757353 3727.4734839697603 None None None BEL_20211002 85761964.64720376 1780.773224878151 1.794170221397173 3.725303480915094e-05 7109712.471246929 147.62164872414584 34425 None 403536 BQX_20190930 7544376.922682921 935.9865344147885 0.05339280321288812 6.63108990133312e-06 424737.0310466591 52.74998254101528 None 5738 402735 GXS_20210218 41231690.5876825 790.9053987408322 0.5902615806509068 1.1317559392095723e-05 9423642.123023886 180.6870596245946 None None 445350 STEEM_20190810 60029209.195186324 5061.11630071957 0.1877731733219967 1.582955328201857e-05 662734.2956787436 55.869470913600296 6123 3764 297203 STRAX_20201228 48864407.83125252 1840.4895104338634 0.4878448804213476 1.8550427195223173e-05 682805.1558061572 25.963841867860395 142868 10291 267900 MTH_20200610 2576400.382714399 263.5646675672335 0.007405577593299135 7.583583161057424e-07 97691.32316180023 10.003949914475255 18978 1910 1960603 NXS_20200105 10712373.431598471 1457.5618622379855 0.1784001078925035 2.426195961187667e-05 80798.48531157794 10.988387902273734 22863 3545 610142 OST_20200217 9182624.229980238 921.1521841353431 0.01327982598748203 1.3323280686045102e-06 944816.294255478 94.79079542895063 17823 755 817761 LRC_20200506 39607173.45890978 4416.973620791858 0.03404302442121322 3.783336492852646e-06 2329808.7064692336 258.92089349906064 34186 6808 546784 CHZ_20210421 2736354611.541355 48434.89497709743 0.5118984431998014 9.078800437830075e-06 1094333097.180401 19408.599369261035 293221 None 33338 XLM_20210710 5797320240.394505 170576.66266283044 0.2491372577958474 7.33098004682937e-06 411005663.3901321 12094.033401924797 600749 195695 23566 ADX_20200317 4351080.034522816 862.0702339244202 0.04684651566305392 9.30277215221288e-06 188954.71168954586 37.52259063572648 52349 3771 39887 MDT_20210104 14527369.140246615 434.6208763617589 0.02372344154115646 7.206894526648973e-07 1563234.9273967028 47.48918584420787 13524 71 1369225 GRT_20210828 4571415315.179832 93181.66470194793 0.9209399938594488 1.877996403745728e-05 182513408.45949435 3721.844278755652 133300 17042 33877 MANA_20210710 932059948.6211141 27433.197952701994 0.7034734448275323 2.0700970770973565e-05 298146217.8221941 8773.4884464995 146381 34315 16474 VIA_20190706 10460563.288328014 950.8450437815306 0.45190489533752426 4.1077284095374646e-05 501558.2214904352 45.59067575301544 41007 2235 1727246 KSM_20201228 454896059.7702028 17161.75622543218 50.35203534453524 0.0019146491093303512 90511469.94539815 3441.721950847527 None None 222840 VET_20200407 230255246.70603698 31657.48701526246 0.003576482920724001 4.908264564298644e-07 128548220.81794247 17641.59625615153 118745 61581 281766 LRC_20190421 58403649.19742366 10998.859793561758 0.07413984474892746 1.3958922197746404e-05 17820175.858559247 3355.1519996052566 29768 2465 792629 COCOS_20190923 18151937.35338808 1807.0428959479182 0.0011550549954406826 1.1498684042949592e-07 2252295.392713951 224.21818177001944 None 126 135713 OST_20190716 9886930.124630475 903.9983691183033 0.015199996503510838 1.3915953082690336e-06 300876.7044908181 27.545967542832102 None 757 581011 STPT_20210318 76092075.58821419 1292.9503279830003 0.07498598601600028 1.2721935510730637e-06 25898293.9848423 439.38400148903065 25749 None 1177944 BLZ_20210823 78588859.17054023 1593.014707150479 0.258044448806016 5.2365085598229315e-06 14256396.35007079 289.305745055941 65925 None 427570 IOTX_20200330 8420222.891889764 1423.9661313225108 0.0019519865256631575 3.306946710676993e-07 1798102.2338921132 304.6244525591864 22525 1811 487690 DOGE_20201224 493809267.6235404 21108.262967807124 0.0038264900775428316 1.639960629918061e-07 185987455.0072644 7971.06741921654 157463 171091 134102 NAV_20200329 4882120.5215116115 783.1479202832122 0.07164497172972768 1.14620049084912e-05 35405.94911915501 5.664363496777765 49434 13965 1082339 AUCTION_20210930 157002080.58477715 3777.0829172968442 21.89171854654011 0.0005266358675372287 4269771.307968732 102.71531274154194 81848 None 95915 GVT_20210708 11537937.943648662 338.79163462067896 2.6006003509969835 7.636214098329254e-05 303188.43768820754 8.9026052059 25804 5685 286484 ICX_20190305 125939762.36928844 33916.172836052625 0.26602869301804893 7.164278351814322e-05 11368532.930792961 3061.599613333528 111566 23509 258994 DENT_20190903 34533963.21705554 3345.504391754867 0.00047509004966343206 4.602408087726277e-08 725217.7625489476 70.25506213153888 46543 10136 253321 VIDT_20210429 39561890.565300696 722.7513691514401 0.8626253000167784 1.5754092202979462e-05 2688042.09407538 49.0916079029097 26926 1528 436797 SCRT_20210729 71396423.53784914 1785.4892985427796 1.0253819895563299 2.5618218273647205e-05 2381036.7169577433 59.48799467307287 86304 None 61178 BTS_20210729 108429128.46885154 2711.7471441632943 0.04004127615483508 1.0008134817072589e-06 15474556.241505386 386.77949349188486 6325 7181 164427 CRV_20210212 771266973.7201394 16181.281598942258 3.533802047213781 7.401225735889043e-05 376069362.25794154 7876.429424272371 71504 None 29016 WING_20220105 34097145.864999 736.2169430640613 15.02933703143181 0.0003272408960758595 2324069.8465823536 50.603077005189796 None None 234136 DOGE_20210401 7014689872.852019 119375.34930509333 0.05438168841092798 9.254625888707801e-07 1042337641.2255398 17738.406439992137 686374 1229059 11467 KAVA_20211221 506846656.20816153 10743.129560821926 3.498198778893449 7.422138630992805e-05 47568438.65217008 1009.2609610022296 144254 None 47415 NEO_20210513 7091061005.360152 137543.7619092187 97.29504035913938 0.001939605204128376 2007006498.528808 40010.26398567373 394289 110923 84803 GO_20190312 15291649.73267359 3955.149675666876 0.021937087421402497 5.673393940401368e-06 1823108.860115084 471.49444048701764 8113 631 731173 BTS_20211216 93513040.5118021 1916.7853942029367 0.03456358116979257 7.072650722410252e-07 6124141.293797277 125.31662194649175 8038 7503 206863 SFP_20210428 255664413.0226433 4640.792335761641 2.3625414915823915 4.289755042976362e-05 35918017.78681105 652.1768971409151 None None 25245 COMP_20210429 71222.5252769153 1.2967411297468068 7.65391242094664e-07 1.4059374e-11 850.1301495056924 0.015615932170671714 2432 None 1922361 AION_20211221 72044898.83339919 1527.0647894846518 0.14408769817896938 3.0563860476475287e-06 4429014.057591272 93.94817837705259 1031 74019 309330 QSP_20210108 20674903.50920713 528.7782391807232 0.02927232023975207 7.417772064104722e-07 540672.3314872184 13.70094370207746 58369 8171 263794 GXS_20211011 43420991.983538724 793.5427331622946 0.5793614703500852 1.0585100740069603e-05 6833526.459971591 124.8504943641181 None 26984 848650 BCD_20200629 140231828.74618113 15376.569673846872 0.7430219706690409 8.143436656632946e-05 32393833.95375697 3550.3275176422317 28184 None 966151 POWR_20201226 40618538.86408459 1645.6500156598966 0.09452372860702028 3.833367815284183e-06 2717924.221885922 110.22420920227002 81025 12579 371056 LEND_20190616 10745489.750189308 1218.5271124865978 0.009615127159478267 1.0904694884084923e-06 2959600.343920279 335.6537900538245 42126 5868 977023 WTC_20210902 28213246.318409223 579.9921323238182 0.964786850040087 1.982904430900182e-05 8710496.430917503 179.02484851953446 65792 20064 386462 BAL_20210206 425612435.6509506 11231.833808354175 39.451979600232136 0.0010378971782521132 176771276.82280135 4650.474102174816 42878 None 75993 TRU_20211028 341743167.1513463 5838.968027981046 0.6911305413995803 1.1801164563830756e-05 76586755.67757897 1307.7311058063417 34367 None 87076 TNB_20190702 16057264.025997026 1513.216832631575 0.005832057742914099 5.501462181529568e-07 3953601.31106352 372.94877815790585 15746 1488 481694 FOR_20210620 18582394.57469653 521.2625267442885 0.032800810420958344 9.212775281080636e-07 2687747.6351625593 75.49086335740938 27724 None 199277 MTL_20200321 13038096.760323696 2109.018978410498 0.20186301449685481 3.2555966870280016e-05 3668885.8039780445 591.708812943596 None None 635134 RCN_20191019 19102368.535342425 2400.227855945751 0.03749086970438815 4.710819550322179e-06 982302.1452672143 123.42866907957026 None 1124 851208 BCPT_20191011 3638945.9957004907 425.1711953532511 0.03132737392467228 3.660262349199058e-06 483220.90841955796 56.459098732208105 10864 3122 1234245 ATOM_20191213 788614386.7514738 109430.50016221695 4.110970332085402 0.0005703855203597792 232975585.7148431 32324.704377439553 29368 7484 111022 PIVX_20200319 12672932.185379652 2352.171312336929 0.2022676291174445 3.75420705851592e-05 515940.69281578937 95.76165000777077 63874 8513 174953 KNC_20201111 173453198.15732735 11340.08674656498 0.8748058168849934 5.727175031375949e-05 34124437.06807087 2234.0572063400964 125135 9208 85913 GTO_20190608 24447493.155669376 3042.225071804997 0.03689081812331771 4.595080563403845e-06 14665268.378933633 1826.6900305619606 17343 None 1170930 NKN_20200423 10083924.727397723 1417.760278916588 0.01564501144582729 2.199109937947592e-06 2280563.6815976133 320.5629010684602 12172 996 316185 BAND_20210509 563433002.1268737 9608.198644408505 17.714863938591602 0.0003017107610499926 166845782.88449585 2841.634477496598 90054 5085 164496 IDEX_20210131 23508198.053910404 687.1944924256387 0.040563095015401125 1.1872890078150175e-06 3018476.8671780163 88.35135492949092 45010 1935 6164235 POE_20200312 3615273.5066841403 455.8144989577138 0.0015851753901468136 1.9968992981351648e-07 50430.537568720974 6.352906164297129 None 10455 759696 DIA_20210217 77471610.7175539 1575.2787331678246 3.0347691331839157 6.169796026215785e-05 75819300.6940092 1541.4339595631059 24852 237 245610 POLY_20190806 24701284.194345187 2091.281129572087 0.05043544304941024 4.270135846085591e-06 2226054.8283409933 188.46977330085997 35269 5081 295167 DUSK_20200414 4628237.700540807 675.1672003597304 0.017603188786871626 2.5707780473178573e-06 138735.09487892772 20.260939118786286 17557 13334 1650258 TFUEL_20200414 0.0 0.0 0.001680646193256796 2.45442367927972e-07 133731.03316776015 19.530143570874674 67882 4024 349819 SNX_20210506 2700234028.211643 47167.566812065634 17.68039871780759 0.0003084086423896471 154747360.73758084 2699.340902894318 121252 6289 31416 HOT_20200417 60889861.0131966 8575.988039197164 0.000342669253569452 4.833908465363187e-08 5557785.6788385045 784.0162769714785 25061 6954 509246 ICX_20200309 154295899.6764033 19099.581280263224 0.2918078015669062 3.627387409486765e-05 37003583.1025684 4599.819837968868 112594 27521 143772 BEAM_20210115 26562422.08836189 680.1130802867574 0.33366146787071566 8.505479614959073e-06 6825125.969497917 173.98164125318007 15918 1624 333744 CDT_20210624 9990918.137610612 296.3606824530128 0.014843669423959363 4.4044546782471074e-07 276787.477329694 8.21291464115486 20974 336 469321 PPT_20190629 25285506.29542338 2040.316564266388 0.7055351165595619 5.6805990204747823e-05 3134414.44491049 252.36662509933896 24013 None 671795 DCR_20190603 287325415.717066 32872.25617486695 29.112883303736222 0.003329289273988702 11916531.811638806 1362.7499938675844 40464 9463 369344 PNT_20210610 50216569.50210506 1337.8379952466234 1.1021890751593193 2.9392374894359398e-05 9036978.667114358 240.99156023458036 39797 307 346623 BCPT_20201115 2318652.782424362 144.03674708 0.0199558013427505 1.24e-06 583379.840586647 36.24965943 10387 3201 2211613 BNT_20200208 21324959.759325013 2177.131549392343 0.3060553095325369 3.121858182944389e-05 16728552.835330857 1706.3637823359904 None 5042 109575 ARK_20190411 93860391.60002008 17684.88989712311 0.6666877793614705 0.00012560985719305669 1147201.5285134315 216.14288521418837 63627 21725 183985 STEEM_20191030 46602167.64258777 4952.257617241278 0.14399103795874094 1.5303818680722385e-05 612574.4533901107 65.10633228306268 10814 3787 220628 IOST_20190131 78154060.82353395 22577.81683698001 0.0058622321661696295 1.693882487301914e-06 3608043.6755323727 1042.5383748317192 195727 47866 76611 WAVES_20190524 294820846.1235178 37424.556691001 2.960264646994122 0.0003763692887824897 85543593.51120527 10876.048356826072 139955 56813 43809 INJ_20210117 84039080.06202687 2316.1886776982674 6.240473296700759 0.00017241235464440622 17839127.051119067 492.86099842943463 39613 2006 116830 AE_20190123 94719010.46287076 26516.849664081168 0.41628356685298307 0.00011654787648386096 59756396.12758734 16730.136929614448 958 6301 467648 BTG_20200610 160980374.57304913 16468.808780334533 9.192848619176766 0.0009405457356112298 35271537.19342807 3608.72840074054 74987 None 215523 LOOM_20200418 12169542.407444475 1723.1909855792633 0.014582813545321793 2.066193778347657e-06 25262151.102819894 3579.3161089321916 21567 None 708796 VET_20190930 184531643.61785093 22892.895422438436 0.0033270657580471035 4.129135093057267e-07 20662233.604580503 2564.33626751337 113671 57550 165877 SOL_20210219 2375754523.610692 45967.59137695562 9.01266263252076 0.00017432465329799034 93285838.88247588 1804.3526296125717 114808 4040 56580 TOMO_20210310 209248017.06563202 3828.5852596045256 2.596507416201089 4.7467776068190144e-05 48553526.51474066 887.6261664196035 44620 1912 113228 ETC_20210310 1430814118.5777824 26179.43013482765 12.351728601453955 0.00022580682175238914 1544785979.707985 28240.841717041112 300044 31465 134573 IRIS_20210105 35083385.97796145 1121.365974373131 0.037273084205637255 1.191355030965423e-06 4471457.124850125 142.92063710227396 None None 805488 WTC_20210509 62214451.837290406 1060.8912661962727 2.138433022711791 3.640350870651998e-05 66747831.21859785 1136.2784006329098 64483 19623 333404 ETH_20200801 38794882275.39032 3422928.8136664415 346.00350607288686 0.03054952925852846 11638423647.390888 1027586.0142995776 470636 473399 14669 SC_20200914 149559978.60767415 14484.568733693663 0.0033407649945163616 3.235460491280589e-07 1967950.4748015478 190.5918560709494 107054 30117 136380 RVN_20200217 196275592.66644487 19688.814966265927 0.035553078622761615 3.5737353706498314e-06 37143488.76819947 3733.6007103268525 29962 7418 186532 ORN_20201101 17768197.707600564 1288.044969211197 1.4230948711523284 0.0001031342353766525 2277347.853158699 165.04347973090452 13872 None 197578 BAND_20210217 372452589.06439483 7574.371064821807 16.506433753513544 0.0003354579069924433 353347734.19896877 7181.0357782266165 60433 4004 238789 OG_20210220 0.0 0.0 7.93124375866632 0.00014179686925697293 5530205.449748802 98.87047265006662 None None 464193 CND_20200208 13828178.463092482 1411.7618013071121 0.007351700854500264 7.498960729103436e-07 167801.63618040152 17.11628240729974 35089 5997 460752 VET_20201031 655064175.4153281 48232.25053584677 0.010105830324097016 7.446279277181968e-07 86756462.62714255 6392.476710020623 137223 67979 102427 CDT_20210219 15371225.52416112 297.38755063507256 0.022791046019105556 4.408287936178851e-07 740989.9750930656 14.332370551548838 19937 298 552425 HOT_20190725 218718899.98524967 22263.800195464046 0.0012307583041418942 1.2535056910470886e-07 6718237.692957681 684.2406956417835 23902 6593 317141 RLC_20200629 40220805.99160737 4411.439936347352 0.5763711796494576 6.315154928305543e-05 990392.5973875937 108.51484101188916 30577 3594 529294 DNT_20210310 216487055.22808936 3961.037051459765 0.2890880680357016 5.2846935896145655e-06 24620763.441129167 450.0814980460671 64883 9095 196882 KNC_20210210 403182303.7732794 8666.265852515395 1.9799245122104403 4.250900263775691e-05 166147652.25666213 3567.1920542821626 133456 9667 112960 COS_20210821 63001740.425089195 1282.135599066209 0.018464574058690883 3.7541280381669085e-07 6603380.304754306 134.25673979784648 None None 429015 RLC_20200806 82359617.11390468 7030.575648108832 1.17278525498643 0.00010007725029732597 5890702.502684679 502.6711465562213 32522 3794 278673 CDT_20210124 5748379.3123170715 179.63477802564316 0.008977117390821937 2.8012076135315604e-07 547372.7060290294 17.080144157806338 19276 295 808485 SKL_20210710 293449576.97087187 8652.084024298783 0.24238122175550195 7.1321805342810786e-06 27722263.39112925 815.7405342393727 None 2296 152464 FUN_20210401 247414556.55151033 4206.507270277333 0.03914245153537746 6.660823145469832e-07 28054181.563076943 477.39457942143935 None 163 810976 EVX_20190123 4777529.452520727 1337.6034161513035 0.2477409921630182 6.936204176891545e-05 1906481.1193473896 533.7728806091469 14063 2335 1554071 NXS_20190522 22271912.597126253 2804.297296516639 0.3730145896829483 4.696695000249446e-05 339647.89540988614 42.765688429848076 21334 3518 737068 STORJ_20210809 159340026.676015 3621.9950715755645 1.1063890651957078 2.5151863923344684e-05 42667046.20381165 969.9623522033833 103970 13702 58754 BLZ_20190819 6659969.8236428285 645.5004669809566 0.031922854631033414 3.093899028348296e-06 100340.69491640072 9.724818851377115 None None 1006021 LRC_20210819 396323052.70021045 8792.48722566254 0.3167003732765643 7.032024849693246e-06 59595360.11621614 1323.2572128915176 84120 11145 344060 PERP_20220115 570088605.1663619 13228.674052034883 8.9754042478261 0.00020816579405589733 14215741.588004736 329.7044962044125 36678 None 104435 FIO_20210210 30738534.26841448 659.8083992330016 0.13971394817371469 2.9997929901623528e-06 8577334.175260736 184.1636233859429 55359 178 730561 CND_20190801 17008754.68242377 1691.3024599210587 0.009736549554665875 9.669662667935102e-07 357666.0344912883 35.52089867042723 36109 6131 388996 KMD_20190922 81449737.96475129 8155.9215301990325 0.7025209764910137 7.034800897708937e-05 4942588.597649463 494.93364422258156 None 8423 202863 BTS_20190227 125114130.19297144 32845.1630581625 0.04643323978284025 1.2189728926971525e-05 10395317.270793356 2728.995440194663 13797 7213 130894 BCH_20201229 6778116386.9822035 249980.93681412525 364.3438148068741 0.013414748384627797 5202705372.319049 191558.03022484723 None 351434 540127 FUN_20190818 13746641.472837506 1344.8641651499577 0.002287894552024184 2.238297552706903e-07 86772.95857497003 8.489189357422791 35978 17438 345008 OG_20210125 0.0 0.0 3.8482571754841977 0.0001192339605676023 1631446.0598084468 50.5485382844495 None None 397078 PNT_20210703 22754791.074740473 672.8560771441339 0.7150201273269056 2.1109504703620202e-05 3487235.914635934 102.95349757194244 44559 319 307388 DLT_20210731 6226104.256723237 149.84425982123517 0.07591903263065843 1.8271507802974621e-06 1036586.1041042453 24.94761910592 15248 2598 None CELR_20200506 8055776.253149359 898.1252804313755 0.0021326659425281794 2.3701163526478759e-07 3272867.794348375 363.7267949355445 19435 None 1399236 AMB_20190105 19374861.149338067 5085.158209949789 0.07136786444665551 1.874638026935851e-05 201101.978672196 52.82397328740695 17883 4966 607454 WAN_20200725 33353229.613026425 3495.783459127373 0.31502683890576005 3.302042297814864e-05 6228416.776963892 652.8489990691537 103805 16089 631499 ALGO_20190908 125926061.85277104 12027.642460415182 0.3707830789364866 3.541790890369835e-05 65907939.80575553 6295.652473586967 11943 607 192636 ASR_20210930 15078535.575613923 362.93352215898426 7.076343826537591 0.00017022844964704968 4286722.962995299 103.12136068353611 2025664 None 71262 DCR_20210127 720477547.1061145 22109.22821851798 57.50581404313196 0.0017655125049779845 25386727.34792371 779.4096186449674 41645 10152 350350 OMG_20210725 523214190.44293773 15313.850986625741 3.728570832435942 0.0001091305510704605 137739836.13274026 4031.4707422898664 326174 5009 225112 AVA_20210125 72007857.8418419 2236.431213561171 1.890940516801567 5.858868488632936e-05 17233412.443062685 533.958081796553 43215 9120 88426 MANA_20190810 54143351.80679563 4565.8562114834795 0.04078351322205564 3.4384944652129398e-06 17632394.15982168 1486.6029171369141 45655 6351 132863 ARDR_20190626 125068507.12898926 10595.567934234314 0.12540651687001816 1.060723362847714e-05 3611978.0126630617 305.5111934968305 68012 6570 956576 TCT_20200531 3860494.6418884066 399.9714036122373 0.00666964113301814 6.910165595407375e-07 827891.8588438596 85.77477746710332 None None 991643 COMP_20200806 21102.479555817292 1.801383730298825 2.2879481925626782e-07 1.9530750587614482e-11 186.68675136800502 0.015936254111141187 1864 None 1052707 LTO_20200907 23776397.62672228 2309.1649394725086 0.09907690348916401 9.648001387192354e-06 3793999.574247356 369.45556296426963 17816 550 1139240 QSP_20210131 22661838.901946027 662.3856398898226 0.03170047277445521 9.277257436644372e-07 979764.9039440483 28.67317249792749 None 8161 199881 STEEM_20190615 127628579.29089451 14668.971885722953 0.40877366078848265 4.704506241353245e-05 3146764.3053613985 362.1557290674002 5707 3744 311798 AR_20211225 3160374882.330604 62176.87331784932 62.38676847154829 0.00122686027534101 107974798.01350802 2123.3667597506005 52102 None 55160 OAX_20190712 5876188.279139755 518.7985853180626 0.12601709927250276 1.1074280935686621e-05 339383.33393686 29.824733362409912 12337 None None RVN_20200330 80060965.76940109 13539.321364806758 0.013624491624247776 2.308185388018778e-06 7037085.757444216 1192.1838236268568 30181 7622 202553 ALGO_20210310 944178853.7883542 17274.40511322239 1.1789995973772331 2.1532909744602937e-05 562239979.6905714 10268.58937392055 64937 8522 159535 ADA_20210125 10907245699.203642 338758.9280777848 0.35209629856051367 1.0913687398479152e-05 2870391825.2037973 88971.56607296813 182206 105947 30705 GRT_20211221 3283041008.368543 69587.3879690928 0.6222436415320899 1.3199022597014834e-05 171972580.80812672 3647.8797510321588 None 20295 26230 NEO_20190916 639889244.0069568 62109.586145517496 9.072405834871809 0.0008806085400864793 155220505.57930756 15066.400830999708 323852 98251 189975 TROY_20210408 51224920.6445649 909.4500680747308 0.026956014676408624 4.789841780817772e-07 41498822.89106034 737.3968226553898 14760 None 562100 JST_20210523 103623169.55677544 2757.0049949223803 0.07240482295188984 1.9279124946706638e-06 64911000.86273867 1728.3756040395895 46258 None 80562 THETA_20210617 8832262264.216282 230914.5266218844 8.83805437645231 0.00023104416930342975 230635477.13532007 6029.266166160448 174735 19750 17272 GO_20210221 26791428.617814776 479.7295703360968 0.024678211592187936 4.388993836967099e-07 3418059.3489831234 60.789824096587466 None 716 636125 AST_20200113 3170759.7350894366 388.95099694541807 0.01840991437207325 2.2578904465846982e-06 1539766.173503796 188.84516586358106 31843 3505 410205 BTG_20190220 211941208.48288843 54135.50773963398 12.101297715057374 0.003090998210317344 187024544.16087964 47771.118841856805 72798 None 354755 WIN_20190909 52372265.1067379 5040.751885457715 0.00024976209063216746 2.4031400639941237e-08 13199334.010770537 1270.002517156927 18495 1414 68914 BTCB_20190811 0.0 0.0 11328.022857745542 1.0005169644921994 112674.05312353616 9.951630838307539 None None 55533 QTUM_20211230 914441750.9697577 19716.55385188532 8.820685509241002 0.00018938377174914481 130890928.57107854 2810.282456456352 None 17613 150166 RCN_20190221 5756222.974909307 1451.074395839634 0.011526110062463757 2.9041582764784677e-06 717905.6957863653 180.88598467741392 18081 1100 2734596 EOS_20190414 5527360617.800689 1089575.4034130562 5.31927138436909 0.0010482936930243532 2370859850.535577 467236.4406268943 844 64030 105033 DLT_20200207 3985110.774375868 409.1749774170884 0.0486779034684117 4.998993894567749e-06 933928.9668048107 95.9101536911271 None 2600 5190517 VITE_20210725 35929629.99160495 1051.6311387977835 0.05478431588415394 1.6034676156467026e-06 4455213.53119112 130.39846355227107 None 2407 593813 NEO_20200605 852749153.5239632 87227.92238296125 12.090587743144239 0.0012367492185305716 454321658.1622155 46472.675078367385 320264 99588 220108 FIO_20210804 58497257.72693542 1522.483138692723 0.17180056473153765 4.472915924509983e-06 4037308.4482395463 105.11339865796336 77697 507 318266 QLC_20190803 4673728.972567306 444.40255285180655 0.01948131821107819 1.8512618306178337e-06 134534.40531190496 12.784474169574928 24898 5764 940522 VIDT_20210902 25721250.73069572 528.7630813189214 0.5555098762188141 1.1406073910515914e-05 1705251.0436607152 35.013273881591836 29673 1629 1410614 LIT_20210724 70681335.03014141 2114.204256255854 3.1776715862658724 9.500068185830473e-05 28673005.50977428 857.2173053151926 53358 None 411368 POWR_20190512 47590452.35181055 6502.423195297411 0.11318500930328686 1.5539473583735668e-05 2863203.2773506306 393.0968594439427 85120 13222 672162 POA_20190414 8892335.171530886 1752.7881668195216 0.04062426966934505 8.00601484692739e-06 544347.0518935338 107.27701974244614 17260 None 742810 REN_20210725 295996769.1359384 8663.469947619436 0.33592022284173845 9.830562233244374e-06 18050782.968712654 528.2484746871545 None 1182 100399 PERL_20200523 5279798.335054683 576.3042964777599 0.014979856070795643 1.6363936981086378e-06 895972.0324501825 97.8756391686207 11663 478 584750 DNT_20190401 9411768.656403814 2293.6293113137285 0.016197583127781894 3.947318808037568e-06 995438.1852143429 242.5863068420284 60612 6439 1038838 SOL_20210519 15371663655.587006 360257.18582707725 56.202009029292114 0.001313718023157483 2063395663.2413113 48231.72905246662 273373 17573 10872 REQ_20210823 209253903.83852753 4241.561208665034 0.27086520830244576 5.496324685235131e-06 18069273.50795308 366.65688682739165 45151 28202 270313 HBAR_20200423 127478320.48129147 17921.34322710495 0.03256522824585931 4.577466581918116e-06 6988395.674716506 982.3099479213188 38657 6416 105863 RUNE_20211028 3643874800.269843 62266.04635573884 12.311934777293711 0.0002103956264743543 186643586.8781986 3189.506369143623 120607 7863 89121 SFP_20210418 326264030.0408916 5412.780893403579 3.016000690692826 5.004155955165171e-05 35285483.938759424 585.4576397410106 286617 None 25245 XMR_20200129 1178559019.523378 126043.7433424231 67.65496962153435 0.007235518531999115 91388636.9562625 9773.770944103782 320298 165079 89553 EVX_20190126 5143356.936083198 1442.3259076481763 0.2667111449666703 7.479247484170998e-05 570218.8053100572 159.9036127858546 14047 2334 1554071 ICX_20200129 95279676.5013022 10226.688555778333 0.18444598733360132 1.977340003762305e-05 20595285.112645052 2207.90279749851 111537 27108 113560 VET_20210318 4995474714.1881695 84882.69797099337 0.07698679282907603 1.306427172799739e-06 828744342.8301965 14063.374885367664 None 100394 48429 NANO_20210703 647592831.4223442 19160.634965111254 4.8786298947641376 0.0001440375421966139 20070949.07205297 592.5782927281647 133349 106832 57343 XTZ_20201124 1949419578.589444 106446.06957040688 2.6178841198364555 0.00014259234393807548 296062458.62099355 16126.091910238674 75617 30487 151590 IOTX_20210722 182702629.84982058 5677.504606428726 0.019288539979452648 5.972356518362419e-07 23197702.5141145 718.2759813277246 58365 3278 234069 KEY_20190615 8451632.483320704 972.6839466787474 0.003227901741120737 3.720011538688303e-07 924942.4235002237 106.59545314562457 23915 2833 681571 PPT_20200325 7482794.419716615 1107.0135454805456 0.20669767775743314 3.058900720059149e-05 3276621.5618811226 484.90433776240445 24029 None 1049662 SNM_20190509 8962718.851713086 1504.6071170637636 0.022429226355638352 3.7652830757351444e-06 227367.05445502207 38.169008085472164 31584 10029 15333127 IOTX_20200914 58695020.48283957 5686.174359014019 0.010092953168238985 9.779604201465926e-07 9650580.929300245 935.0965988801751 26729 1941 382406 TNB_20210120 8914962.880682241 246.1823902469727 0.002597110026673294 7.182417709257427e-08 1500973.1272135607 41.51004716510741 15825 1412 3029706 PHB_20211207 19134130.20586792 378.9637541107234 0.5150223946317747 1.0204647156735812e-05 744485.9114912419 14.751234352363937 None 413 199462 LOOM_20201226 21277697.74469608 862.0606404364519 0.02553908956828124 1.035726430024029e-06 7036352.480380099 285.3561484801693 22787 None 350385 KAVA_20210509 439864802.84184366 7499.649401646571 6.265668884508378 0.00010671763648074258 77107994.87755279 1313.312771354226 97749 None 74239 SOL_20200913 116947704.57942767 11215.33815138552 3.3326620873211703 0.00031916251592384277 10193775.121683143 976.2378631112414 None 2396 84125 XVG_20210723 301107696.6287889 9309.98697462014 0.01832267131629261 5.6596772616588e-07 6462044.265290598 199.60563806859795 321752 54456 103436 SOL_20200501 5635423.505964131 651.1997509240258 0.693089721323073 8.04076002257766e-05 5182978.537733341 601.294252994095 52616 1819 146569 PSG_20211011 75449870.98433898 1378.9613628066702 24.28529823711989 0.00044369938544103763 8440821.118053494 154.21623017062964 None None 9531 SCRT_20210430 218135403.77595624 4070.3772097762553 3.113599248760464 5.8095742051634405e-05 2888275.198761372 53.89148619180012 77910 None 64525 YFI_20210813 1316830917.009393 29621.717142436046 36938.64109378383 0.8308725031605295 360203425.8062929 8102.1692510783005 135510 6980 22152 SNGLS_20210506 24478911.082044907 427.1238216005865 0.027504394474207758 4.799144062927938e-07 999077.4858339755 17.432548057152612 9475 2134 963181 XVG_20210511 981266273.8415687 17577.75120341402 0.05960071530605855 1.0666717915422196e-06 108186094.77123503 1936.2025260434925 312289 54002 113366 PSG_20210519 90683858.19833973 2127.514091702261 43.46339079198121 0.0010159537144162104 166400515.9201402 3889.6004004600136 9085601 None 33472 POLY_20190201 41233958.77211143 12017.08093325396 0.09550474895525062 2.7833570481270075e-05 3036312.3311504573 884.8922613452876 32520 4974 219642 XMR_20190703 1467137068.7723355 136345.99856912173 86.19331579540274 0.007986185917432541 125174047.84049655 11597.920428826565 319058 159034 104259 CVC_20200417 12771589.467746774 1798.8051983431965 0.019029008523655598 2.682482876898401e-06 6666673.947710123 939.788254777742 86124 8048 107790 LRC_20210207 811422859.3353938 20692.58430165763 0.653052961523914 1.6607197471679222e-05 208654917.64598238 5306.113937065278 56060 8469 159364 IOTX_20211230 1151059908.3466012 24818.41123270064 0.12234968086371002 2.629152463190475e-06 41205832.33161283 885.4654528535605 196720 16508 43807 DIA_20210519 152307376.8795656 3558.4810553981715 3.6946202584032313 8.635743676235186e-05 16527645.273709495 386.3144198131491 None 378 375283 AION_20210610 96688593.77143282 2575.916191347289 0.19673940890675998 5.246503157587813e-06 8045689.432018693 214.5565814425224 73510 73353 242029 UMA_20210127 616721051.4423686 18925.262179607453 11.066617226080156 0.00033966839797986917 33044143.925165933 1014.2260458079425 18262 None 212976 ENG_20190205 20298912.58973793 5859.468176040803 0.26369718830954403 7.611862340805126e-05 531704.8298617629 153.48149886596525 61219 3156 201160 LOOM_20190405 53116109.580845855 10832.779141640805 0.0767154943068389 1.5653757156484724e-05 2637238.393327247 538.1271377563485 18802 None 433767 ATM_20210626 15517333.038520746 487.6052906255047 8.21579329398785 0.00025816706175534363 3658273.146485187 114.95489182008541 4998887 None 100469 POND_20210707 54365706.94355421 1591.6762478428673 0.07013353740413189 2.053486152934413e-06 8792302.90821849 257.4356426711187 19588 591 110694 RSR_20201124 210076035.5459629 11474.012303156604 0.02269350942732851 1.23608248237731e-06 84557518.38898975 4605.7251554076465 47838 None 135021 FUEL_20200301 2631934.2003452755 306.875372878291 0.002655449670878982 3.1e-07 58374.2723909709 6.81467423 1 1474 None SUN_20210203 0.0 0.0 0.0003540740209662534 1.02e-08 45.246210272975624 0.00130343181780156 41 None None ONE_20190803 26648236.328813497 2535.5316835398644 0.01031842254140324 9.811294890478778e-07 5101078.51505466 485.0371785984316 69385 None 151929 BCH_20200502 4690313626.002476 529289.2623591507 254.40557057389532 0.02880648851343011 3633078706.3974257 411375.5834360798 3005 293918 146470 POWR_20190603 53145276.26182026 6076.6527203360365 0.12693230449071022 1.4514806990910845e-05 4884265.35182717 558.5195128900631 84897 13225 613771 VIA_20200107 4410853.425657264 568.4886678211219 0.19031440208747663 2.4535740408742134e-05 77517.35128039648 9.993702984784449 39995 2187 2950394 RDN_20200721 17318212.056150246 1890.5258322039022 0.2592782122531072 2.8303854716807784e-05 1964434.7761694465 214.44561817275684 25673 4339 1173290 DOGE_20190811 345167825.64500386 30463.408441315038 0.0028569633335159155 2.5234891413777995e-07 51306766.54346296 4531.807137066056 138027 138649 127721 ZIL_20210427 1976592349.1569922 36679.89028988547 0.16509027384754746 3.0636990123924704e-06 254333317.00096428 4719.846384372152 224833 28819 36030 DIA_20210204 53667423.481712714 1432.4903803059685 2.1071518936640996 5.617676955632585e-05 37627121.30322551 1003.1408409023664 23423 211 235170 PIVX_20201101 19353955.388117936 1404.2562873402921 0.2997041164634784 2.174805531316793e-05 121125.6526845459 8.789493536195984 64890 8622 313548 ADA_20190830 1394409839.708703 146799.44724659776 0.04460753137056895 4.703379558476847e-06 95120388.41742739 10029.411552957667 154395 75181 90911 SUSHI_20211221 1052124811.3129494 22300.853766406544 5.4468126753764485 0.00011557087584567357 154060416.5756325 3268.8653599721265 None None 3931 AST_20200117 3311907.3927263105 380.503307872835 0.01926084732361623 2.2104512643110153e-06 1849579.866333765 212.26512444074916 31840 3503 397581 LINK_20201129 5161683501.848183 291591.97205703834 13.070990922202325 0.0007378778237445908 922765021.5106912 52091.524655822876 102351 24865 41366 POA_20201101 4148659.186188572 300.66086247274893 0.01474877487880745 1.070001032210262e-06 68458.87069261614 4.9665862356 None None 174905 XLM_20210422 11355967164.55297 209583.82951667486 0.4930967929629825 9.11655930570537e-06 1352026646.3276105 24996.778076926 505185 173354 26729 CTK_20210430 108874249.41944775 2031.5788079205074 2.442054655584605 4.555902524812393e-05 15102463.214270147 281.751885165356 39087 None 202878 REN_20191113 48022953.84374 5456.53869776142 0.057931721275425556 6.5824080708540994e-06 5154024.307681332 585.6185601488604 10068 875 305252 COS_20210204 31184513.56127485 832.0452748531899 0.010351742280829473 2.7619857639716323e-07 12659632.289335726 337.7762236702353 14851 None 369084 ELF_20210127 66168162.63785556 2031.737608259663 0.14332941581160458 4.399219025791001e-06 13814329.969432756 424.00412285196103 82034 33323 473527 LEND_20200314 24340882.489076618 4427.785607370354 0.021770124218660435 3.9133367785465655e-06 1389181.8069795852 249.71544501712984 None 5740 155774 YFII_20211216 111166192.15514702 2278.643872419152 2802.472117081739 0.05742967363523469 24463675.48582633 501.3219901478578 None None 989231 WRX_20210428 1416654388.051415 25713.043410154507 3.196682853852665 5.8010151204112147e-05 77842475.98410085 1412.6061321653665 121184 None 2746 HOT_20210114 144485643.83663192 3880.3096226203656 0.0008064510486009234 2.157883111106295e-08 38010186.298037685 1017.0677960532755 27216 7481 750555 OMG_20190616 294192764.01744723 33365.651099773226 2.0991834423071394 0.00023807230590307181 203799007.07489136 23113.225160422568 289455 39689 None VET_20200316 163915367.71492893 30340.189587449124 0.002569091074347758 4.780945283537102e-07 68796085.71392009 12802.594847801742 118729 60843 265359 OGN_20211207 293233269.01148546 5809.550758127178 0.7480280271362044 1.4810331767165876e-05 34295841.78672871 679.0290960624612 130605 7421 96329 ETH_20210708 270116728160.1227 7949902.48590694 2317.23694270242 0.06820105235147254 23352988376.91004 687326.5109434716 1418902 1034689 3687 CMT_20200520 7115866.124755407 730.870825986948 0.00890930239780577 9.131615774919154e-07 1630779.1227058882 167.14718725876338 284259 1632 1222646 MFT_20200317 5080856.639351486 1006.659320644406 0.0005159238620010472 1.0245206218977487e-07 1288379.3918392546 255.84613408804054 18395 2508 872119 CMT_20190613 29293637.265241705 3602.5380215542 0.03666878880554316 4.503595547077184e-06 6184165.755087906 759.5282599787129 291522 1646 806904 AST_20200322 2260747.3279538746 366.90665968767365 0.013122881376657364 2.1295938873379414e-06 4322652.166539392 701.4841761295571 31743 3479 355183 FUEL_20190530 5641647.800284383 652.4025045723954 0.010627472346809054 1.2289998358671353e-06 8736017.223763293 1010.2650361034581 1 1515 None RDN_20190122 10963238.529649364 3103.3963336709553 0.21877972223888373 6.195509816416524e-05 593790.4147933298 168.15243689400182 24897 4458 608656 DNT_20190117 6683249.424713545 1858.1682255945364 0.011500411504840982 3.1983920287554725e-06 1217614.410327643 338.6320761174864 60187 6553 537326 GAS_20200711 23635380.607330497 2544.281132041325 1.6961021495447022 0.00018258054603795604 15014346.442282595 1616.2514578328164 319703 99757 207094 XRP_20190923 12022291332.433779 1195944.5179368798 0.2791021043909529 2.778550744632292e-05 1515159376.587487 150838.9635126745 938641 205683 30361 BNB_20190513 2995728887.3406596 431651.44960359647 20.774627305309703 0.00298847259627066 319474014.21157587 45956.989873308565 962177 50708 978 DNT_20200806 6610594.662542082 564.3041918939253 0.008799791751068863 7.511819475272712e-07 177261.59062464366 15.131688411947703 None 5990 489416 GRT_20210602 941088758.5741662 25649.2493202793 0.7672520440787538 2.092080250855866e-05 147484581.79774302 4021.489199879198 None 15020 30919 IRIS_20210909 122266625.59359899 2638.0649168715763 0.11102575225196037 2.397070688928437e-06 9752178.514016934 210.551703501157 None None 767098 GO_20210131 10515746.775021845 307.36603885636305 0.01012886936176633 2.9647380827950743e-07 1334394.9030052994 39.05797621757022 None 680 754202 QSP_20200612 11414483.015731726 1230.1419176371733 0.01602659676402583 1.7233610432731174e-06 636096.8070180255 68.40032685079645 54543 8235 565587 BRD_20200718 7846185.209433618 857.2172535754934 0.11991580007324569 1.3098934337289106e-05 687415.4947883543 75.089441284366 209 None None BQX_20210823 877469194.8385018 17785.17064248267 3.9717930282468323 8.059978924752862e-05 3590210.2227957873 72.85631080313179 None 6726 34355 CTK_20210106 23337844.709772788 685.8341523606014 0.9188354156809992 2.6964227705699244e-05 21425869.810008723 628.7655248046282 10334 None 220154 FTM_20200314 6018712.859377861 1090.7481553080713 0.002888518621128351 5.192320467280152e-07 3482937.1731713153 626.0830668782006 21299 2317 349202 DODO_20211120 349357141.4808618 6009.820248976753 1.3744661479810898 2.3626830667447418e-05 34979517.74288728 601.2917406180752 121068 1203 18891 BAND_20201101 97484339.16029936 7066.795107676563 4.3228138880466815 0.0003132820685793526 58653772.444168754 4250.743991570471 38069 2675 146700 REEF_20220112 244221368.98994008 5700.207003648004 0.013919013412629126 3.253182956779568e-07 31635740.9126634 739.3976146958175 226275 14535 108982 HBAR_20200309 168693161.0342976 20881.752187558875 0.05040665433619669 6.265921003882017e-06 32778179.095868766 4074.5707798012804 37693 6348 124891 EVX_20200721 6321393.711664979 689.9738678241923 0.2881993611881508 3.145854063668234e-05 2569653.6042216197 280.49178179068997 16728 2831 947797 COS_20210219 56943774.121296026 1101.7011767005074 0.01889128817843152 3.654694272364046e-07 8171518.892168855 158.08558426323077 15538 None 361958 GO_20190729 9455530.655873368 991.5377831604757 0.012566306752228739 1.3181935881991677e-06 505599.44269920903 53.036899122724705 10099 682 877679 ADX_20210616 88610668.70064399 2194.0636835054624 0.7232470573954747 1.7919615735719382e-05 1228026.78928693 30.426350100112703 58613 3858 12658 TNT_20200423 20696245.466395523 2909.1266082449656 0.04830140064365998 6.789390377888862e-06 697544.2193434002 98.04891675711086 17561 2561 822007 LIT_20210301 125327093.50188436 2765.6941630747788 6.862175713958056 0.00015203232384833665 40035144.96340832 886.9834259725285 38085 None 122984 PERL_20200718 7773701.999136062 849.2982640534387 0.022019841133245822 2.405548252961857e-06 1517916.2774146667 165.8241232160507 11951 484 1781566 CTSI_20210105 9016503.593152987 288.1934013873743 0.043653697290739805 1.3952977864841912e-06 2307756.0474010864 73.76252424252957 18644 170 553409 XLM_20190401 2072985199.679988 505155.7750585748 0.10777186532906786 2.6256342913716046e-05 252915760.4373635 61617.59299656088 267476 99937 69980 STORJ_20190302 31301866.716292452 8187.238968172032 0.23002864472488266 6.0212840368164636e-05 1929693.2077756575 505.1210435913091 82926 7624 219991 FTT_20200309 70077027.5609701 8704.861324806501 2.4347603302893774 0.00030265876785287213 3728743.413268743 463.51046263568014 7986 None 19129 CELR_20210128 27306922.071332622 902.6821129742457 0.00692658031542741 2.2779469318792327e-07 14033782.785857316 461.5295136115178 27428 None 526594 OGN_20201111 23989475.718714446 1568.3927338606063 0.16620841620279822 1.0880221639509281e-05 24424064.277631838 1598.8313874191265 69920 2439 170870 IOTX_20190905 17852818.827445377 1690.3000828482259 0.004333182252096624 4.102178029436525e-07 1472904.0771293459 139.43827868638544 21190 1765 585663 QSP_20191030 0.0 0.0 0.012163870864333222 1.2928143084628488e-06 604193.3314316873 64.21556038078995 None 8461 465255 VET_20190305 232601188.13002136 62640.5985693108 0.004194433333220473 1.1295807074946255e-06 10490243.140731845 2825.072024592283 104741 54746 826243 NAV_20210813 36676231.55118326 825.0196969698243 0.5140666588483024 1.1562722199755968e-05 1113840.2239781972 25.05321997273193 53000 14120 873726 BAT_20200719 400013645.320874 43620.215735752434 0.2691273056840691 2.9358920217001854e-05 57063528.41908872 6225.022666868745 None 42499 19525 LTO_20200501 9639380.154620621 1114.0005217272176 0.04546065707868072 5.266412745702992e-06 2976805.542445621 344.849539307844 14673 429 912556 MITH_20200404 2110556.880683907 313.8298538790034 0.003412053605526355 5.07131047141147e-07 2908417.6752680633 432.27600492372176 94 2089 1121889 BZRX_20201018 17626732.52902536 1551.2566496506734 0.12557927419782022 1.1049958836176295e-05 3416965.7151222373 300.66530275727456 15228 None 68138 OGN_20211225 266581121.27561432 5242.906197515522 0.6707303358308132 1.319293317159116e-05 26572495.91265614 522.6678205091356 131909 7502 100062 RUNE_20201130 179657516.86562082 9904.082367698433 0.827392802972133 4.553685280797927e-05 9530671.610028686 524.5353702716221 None 1951 241480 DOGE_20201030 328650433.6317969 24398.50534878001 0.0025858186185390084 1.9211740778784212e-07 66466906.61932187 4938.261992480911 152064 168167 119070 ARDR_20201014 51486425.76259325 4506.706141452118 0.051541690783682606 4.512491598112575e-06 2861322.726893318 250.50972461854752 64292 6307 1228525 WNXM_20210731 120175231.92051576 2879.1378331049946 55.01644099417862 0.00131675770717709 14002362.178437056 335.13106235085087 31653 None 130856 CELR_20210401 468613137.175884 7967.294228573114 0.08360475658749658 1.4227780845772327e-06 130105122.41770868 2214.1170481541476 40618 None 163195 TWT_20210806 171670743.7734457 4190.01063104124 0.494814161620002 1.207721584957907e-05 43008339.01597218 1049.7294417104097 1011483 42458 3506 TNT_20190221 6936795.82666992 1747.3913460626472 0.0161831166200553 4.07758026083825e-06 377802.8445825298 95.19312365636283 16975 2510 1224257 MANA_20190131 45956991.16916911 13288.615040898245 0.036345336794385064 1.050937358832993e-05 1566712.7083770707 453.0201288563247 42234 5982 103002 REN_20191030 41829383.29720909 4444.973755302336 0.05060436298489123 5.377441588689223e-06 2180419.348636101 231.70092447639647 9877 874 270891 AION_20190818 26293444.35563571 2572.5304220865587 0.07821570062593727 7.652564138175023e-06 3104771.692954417 303.76848029978527 67476 72584 170946 CDT_20210310 14499782.805182647 264.8198652102208 0.02149456008344392 3.925704667807891e-07 720707.0815673317 13.162786971436175 20118 301 521733 ONE_20201229 41953729.31938208 1546.0293558844892 0.004821728450525363 1.7764327900603453e-07 3676639.666200693 135.45564266614394 79343 1571 179768 NULS_20200711 50855457.55985765 5477.633557354581 0.535660558622803 5.7691874670221174e-05 61530285.66684011 6626.953341946374 28106 5180 531663 WTC_20210210 18527392.952716243 398.4558190782763 0.6243958166852637 1.3400621278246238e-05 24495541.49660659 525.7169664335726 54956 19039 815573 BEAM_20200530 23640642.022208225 2510.101501560559 0.3747535921758686 3.997033159109405e-05 43233952.21679892 4611.2310653662735 15063 1502 578426 LTC_20190419 5033824618.070715 954668.4106126451 81.95181210656543 0.015540416778642655 2747706293.63363 521044.0122158715 442797 202420 217185 COMP_20210430 83683.81982865676 1.5661198274617902 9.291202734715742e-07 1.734e-11 515.8661305305209 0.0096275142829212 2433 None 1922361 FIL_20210427 10559313085.461609 196004.43044640624 154.5603467686587 0.0028672136957031825 1424130811.6086998 26418.72545504246 None None 34217 LTO_20210318 145918418.82594383 2482.0248045295934 0.5309974843064076 9.010760374527468e-06 21189674.174909692 359.57811863049585 5832 2556 234923 WTC_20200531 10498818.333018381 1087.6890780730878 0.3612181115419201 3.740079387454249e-05 8336892.4260016875 863.2080873467991 54309 19633 906039 EGLD_20211225 5072193506.9509325 99789.78598030613 250.55033688304533 0.004927170661761433 174372349.60312632 3429.1006584755905 None 14105 13960 ELF_20210718 88222604.56407346 2791.3560917766576 0.19132997496131812 6.053305578732868e-06 11126113.949325647 352.00844850728106 87929 33393 615767 PSG_20210206 0.0 0.0 8.197994356176661 0.0002156716924174938 3260608.7558619417 85.77964049929018 8620575 None 40302 TFUEL_20191127 0.0 0.0 0.0028481441653187825 3.979616563683394e-07 936058.2683935761 130.79229046170593 69176 4022 453885 FET_20210506 405700057.38609356 7086.750393575029 0.5905972473873207 1.0305039523872414e-05 40062050.76806824 699.0229270431738 57589 2508 119551 WPR_20200105 3634230.0758738886 494.2460201551532 0.0059751746902869125 8.12608516453372e-07 260866.7205286521 35.477208575246785 33852 None 779057 CND_20190509 24220716.433013305 4066.027611535492 0.013937303564931036 2.3399898894194292e-06 419082.7209084622 70.36148170178988 36717 6181 553989 WAN_20190818 23720074.06235111 2320.471611437406 0.22344027678748013 2.1859653639504066e-05 2351633.470052483 230.06547378790538 107843 16855 605813 GXS_20201224 21871640.222989436 935.3966606306581 0.31548614705483435 1.353118198626775e-05 10164985.954663642 435.97563989553845 None None 480010 COTI_20201224 25770030.77734409 1102.2242650515514 0.04518920923800035 1.936522981090926e-06 11283740.319971502 483.549564392732 34154 1251 248568 ADA_20190225 1317346490.2655253 349739.85874480085 0.04198105629365478 1.1206561932513697e-05 75083200.67640215 20042.957770898967 147930 71397 106866 EVX_20200725 6823869.582191193 715.2162081284529 0.3124817973206612 3.27629912089797e-05 2236503.7341922657 234.49222582075365 16752 2832 947797 BCD_20210527 600938062.2540368 15338.08402290177 3.1845700040862672 8.128891432949012e-05 17495470.047991954 446.58706326458645 33338 None 1493473 HBAR_20200403 128999427.7928823 19009.476335079464 0.03332038096857369 4.887760427071484e-06 12057990.718892511 1768.7843941935846 38309 6386 106388 NANO_20210513 1516425067.0662336 29413.76589766562 10.824688779905719 0.00021579334992899213 361207440.9693081 7200.776418693911 None 92012 59676 GRT_20211111 5378114592.984778 82813.88416887028 1.088058554960517 1.675062391079273e-05 489842873.9786554 7541.114143159363 164015 19391 27124 BTCST_20210624 150303466.10242817 4458.452884473526 20.617264657844355 0.0006117611837159837 4929120.054628227 146.25821462452132 None None 679829 ALGO_20210217 1047932104.6218572 21308.25915357622 1.3106240705820862 2.663351290248279e-05 831517381.8699787 16897.468477621507 52716 5709 202160 REP_20190530 227742854.9284582 26372.95794617198 20.737744841422103 0.0023980850786095164 29299111.343280412 3388.1100508333448 125532 9975 279308 NKN_20200319 5471152.40708071 1016.610776719449 0.008441996225718968 1.5668845260531881e-06 1098854.8995385934 203.95398107609506 12214 996 277366 ENJ_20201208 139555753.234954 7265.857711484705 0.15111380334404972 7.870560043536663e-06 7407413.891143358 385.80523094131354 None 15981 83767 RLC_20190528 34382683.3332269 3898.6984024595668 0.4905706750876679 5.5743777033130295e-05 1586601.103931094 180.28623125964057 24949 3310 988035 TCT_20210804 14351990.537227277 373.5246380324139 0.024698405499355133 6.454929466536244e-07 5731178.582131035 149.7843798408158 None None 566218 LSK_20200324 143676932.99311393 22164.217374766184 1.0354266376215937 0.00015972933576587526 8119970.895884434 1252.6213934548778 177878 31306 164419 DOT_20211230 28482916518.775734 614128.736801048 26.746921410551437 0.0005749763628994559 1417025633.0025005 30461.683125806856 None 37373 12763 ARK_20201115 56535676.115042605 3512.4437883871124 0.36688541143849757 2.2799053439280148e-05 18581450.774166442 1154.6915630102412 None 21662 111275 STORJ_20200113 14135849.214401877 1734.0147338250601 0.09846795701281216 1.2078551990010614e-05 695420.4668122897 85.30361061737848 82610 7895 137382 RUNE_20210725 974673914.8745252 28527.915241417293 3.6018818349192894 0.0001052741272838646 106642249.83437009 3116.890086193717 2842 6143 63469 WABI_20190929 7170627.372180891 875.3549311161562 0.12133721053504724 1.4812250038510772e-05 593438.356531391 72.44403658716799 36287 7924 1396317 REN_20190512 21142440.03189777 2902.7023136168095 0.027428137397366284 3.765682568398821e-06 643214.5622500612 88.30865288861771 6318 780 1306046 EOS_20190930 2858633409.343139 355026.40789860487 2.779311032915307 0.000345175008877971 1288448217.3777084 160018.11945662464 None 68486 87912 WRX_20210509 1100222171.6054778 18761.172979300234 2.535784309186814 4.318821846080798e-05 138678570.73615807 2361.9045149413655 151701 None 2365 HOT_20190414 215441678.6057525 42466.19336941688 0.0012120921712486829 2.388726738436369e-07 8920414.385518413 1757.9877888880822 20482 5898 216677 PIVX_20210506 117229342.79352036 2047.108331296767 1.789520712635785 3.1215566024327396e-05 2363381.249052159 41.22572200451531 67595 9700 218406 UTK_20201101 42963300.25625395 3113.66320748813 0.09535858382937573 6.91970394060084e-06 2259214.8229553797 163.9401203885361 50749 3051 131237 AVA_20210301 95734708.87881617 2108.0457358397966 2.4789968392802746 5.491154851695559e-05 12167273.673378618 269.5137920501675 49880 9437 53817 GRT_20211202 4565397225.695879 79871.31408808984 0.9205055932890528 1.6101820549024558e-05 177878792.71949568 3111.5209084308754 176422 19979 24532 ALGO_20200315 100975404.89169621 19543.85513822624 0.1496600619340282 2.8885762149054322e-05 91902042.60719374 17737.93562195543 16053 822 407593 NAS_20210120 14593551.499383274 402.99386978889225 0.3179117256805361 8.820618498458221e-06 5448915.974773411 151.18287612935777 23352 4856 953730 XZC_20201014 47299879.809831046 4140.263359276483 4.261520189776906 0.0003730974626397661 10182251.957056658 891.4594323054258 66900 4171 308267 PIVX_20200207 22021930.573998116 2261.454948856026 0.3535810109806718 3.63096016680697e-05 765676.235903727 78.62808880845425 63839 8519 230532 JST_20210104 35094260.2781534 1051.381949508356 0.024368199016516476 7.3328357579242e-07 55959253.417968646 1683.9160504717602 None None 212672 THETA_20200107 99587885.38277277 12824.76773014953 0.0986229967512728 1.2716813484521359e-05 4521278.4567905925 582.9903444487303 None 4015 523233 MITH_20190510 18377241.245704226 2973.313952957684 0.03553304156633065 5.755148086498165e-06 6422376.037947836 1040.2071856575951 73 2034 435662 MFT_20190706 22682389.562268995 2063.7614413987785 0.0025712954111120376 2.3394979216501087e-07 2129044.884209556 193.71154555726088 18834 2119 960456 WAN_20190601 44473391.168018006 5184.309639121937 0.4187641799839767 4.8828812870917015e-05 1766303.9781193186 205.95487996142504 108768 17065 409918 MATIC_20210427 2816693565.5655513 52287.23876964983 0.5373764546454659 9.972481570298994e-06 2110047231.926342 39157.66489383793 4048 13787 22143 MANA_20190324 66459320.1221496 16605.943289242183 0.050657709650912396 1.2649036096224627e-05 1994053.8997216104 497.90762214102284 43475 6117 116780 MTH_20181229 3684771.760843125 958.0629388517518 0.016875382327963 4.3838442181777375e-06 95329.71481907908 24.76451264974674 18757 2032 765739 DOGE_20210117 1185636962.329226 32756.884087092552 0.009264961751825887 2.5597319231654777e-07 358598771.0511315 9907.398934340896 190484 185745 60672 QSP_20210325 65911437.25668009 1246.9203331781837 0.09211881824709992 1.7471661030424359e-06 4305267.380887315 81.65559844942337 62112 8324 197128 DGB_20210902 985038028.4447914 20253.485124434617 0.06740024417668464 1.38526186189363e-06 42270977.42747199 868.785767923071 225965 41431 149269 FRONT_20210819 60609485.61061419 1345.36895942359 1.3158241231665202 2.9245610914438553e-05 29569428.28839537 657.2124491863907 None None 304891 LINK_20190618 713862968.5906363 76581.59746155122 1.963237763501175 0.0002107080231456556 168549813.41554588 18089.911801117163 18464 7612 223883 BAND_20210723 177404026.24853903 5480.611929745799 5.048951939525572 0.00015595453995923583 30646261.100161828 946.616963003903 100796 5519 263918 ARK_20220112 187108334.55350012 4364.676900073179 1.1514647763410788 2.6916910182993774e-05 10523381.099196728 245.9970202202592 77226 24360 114658 EOS_20210805 3958097562.0105033 99512.44006951759 4.114571278933381 0.00010347239268764016 1010353911.135244 25408.172458147306 None 91898 58453 ETH_20190227 14307393197.668602 3755294.178574748 135.99783785109707 0.03578177134796809 4013821729.4520674 1056058.3434569738 439775 430557 29840 LRC_20190702 53827991.69093804 5072.683799780916 0.05606084558378493 5.281303040663176e-06 7095812.515926964 668.472546678465 34960 2456 719839 NCASH_20190730 4508576.4806924965 473.9909641021762 0.0015555341430057753 1.634747687139425e-07 745847.7423637442 78.38290642925257 60081 59034 884263 ETC_20210704 7298650032.591529 210649.75347977874 56.971069030238304 0.0016418707408261876 4379076991.843343 126202.27261167593 477329 58144 107608 THETA_20200317 54534919.25395242 10804.80957699066 0.05423151916642328 1.0780163269348933e-05 5715945.722939341 1136.2179979308655 None 4026 384607 DLT_20210511 15645025.971444016 279.99844961572734 0.19077021332416075 3.414207433156239e-06 648260.4905616126 11.601893958865 15177 2590 4809355 LUN_20200318 1261542.6144649722 232.23140817478102 0.4620507400947248 8.590468777938687e-05 1534625.037895215 285.31819841212996 29661 2149 2364106 LTC_20210203 9450818939.918022 266027.5366979468 142.3155274691981 0.004005986089373558 6000940178.30639 168918.20102104655 140728 238853 113602 RLC_20201015 67917832.98555253 5950.065031891799 0.969252642105295 8.48106730712715e-05 9158636.658929422 801.3907888575484 33525 3843 259935 LUN_20200411 1662611.7545588103 242.49835938882057 0.6235282818448526 9.089651150926599e-05 2659800.8162501925 387.7396142983574 None 2145 2462612 CND_20190807 16336897.520346433 1423.854128991466 0.009326805543045944 8.126666270626832e-07 595158.7115637376 51.8575862294133 36078 6130 388996 POLY_20210203 78208595.03908269 2195.78864277383 0.09826584480850777 2.7660481913937503e-06 4258091.705075276 119.85941689672893 36290 5037 279172 CTXC_20200410 924011.7949545046 126.78319510005039 0.09023554886790593 1.2375531204210262e-05 7851503.745248235 1076.8098694842924 16580 20066 374531 MTL_20191220 14269651.505094027 1998.2913272615403 0.25039523173845085 3.504166794339318e-05 3467470.241746087 485.25660800834305 34613 None 526043 BCD_20190706 203680204.5548631 18531.88136913797 1.0825019266937252 9.849163953460114e-05 3984315.6626488343 362.5137030806443 21371 None 3671311 APPC_20210806 7802313.099599855 190.3436914979753 0.06893055982293674 1.683189518895956e-06 270818.7018665921 6.613020432066409 24916 3125 888904 SHIB_20211104 31344514626.090717 498343.7827448789 5.639629514867784e-05 8.944129149300878e-10 6851144228.286681 108655.22041250607 None 406672 12014 IOST_20210207 362034120.2335448 9202.515909856123 0.01962672742336597 4.991095014438962e-07 419861266.3461384 10677.111002832953 203196 52279 229978 SKY_20190524 23007146.92077549 2924.732931647061 1.5338097947183658 0.0001949821954431374 1709331.4787130677 217.29500333562297 15811 3745 440893 ETC_20210610 7976275051.338138 212963.87717950402 62.414815328790965 0.001666454702265078 5591910008.990568 149302.12770856242 463148 57033 97655 ARDR_20200421 33358998.19116632 4871.526036383174 0.03319197203596618 4.8478959754606835e-06 2007754.0155957243 293.24508352123917 63856 6351 1277377 VGX_20211216 5966270690.341388 122293.74521802226 295.59295446926404 0.006048590899087256 385378948.50809187 7885.842897815887 None 13883 13960 NANO_20210704 657007390.8543094 18962.19770777416 4.940199697725592 0.00014246927492533754 17611489.398679674 507.8936639221931 133438 106886 57343 INJ_20201226 55007234.04231334 2227.389909331414 4.082093140190357 0.00016554747356248352 19980833.255835958 810.3138148931718 35557 1867 148511 MITH_20190903 10612619.741943445 1027.6442466946728 0.020829283198960415 2.016103296884083e-06 1472297.3594560109 142.5062750378823 83 2082 697406 TROY_20210420 49992255.113747 892.2522380729325 0.025616790014090528 4.577692628015725e-07 36427926.13517418 650.9630942485927 15577 None 495335 REP_20211120 156140401.94900838 2686.007062397278 22.670794854408484 0.0003896698760285248 14888494.997476662 255.90624577461097 157442 12027 193175 HARD_20210513 78142275.67368041 1515.7086580105292 1.2414950923481 2.4749569280506683e-05 15391471.52414849 306.8335051533575 31131 None None DLT_20190930 3315647.7705863616 411.43294724438664 0.04133038739162945 5.1286156648307415e-06 453844.8663855357 56.316817674427995 14993 2643 6222590 BQX_20200412 3763575.802265946 546.9442354510487 0.02672788145975623 3.883447828688747e-06 125348.97303464296 18.212674202880432 10845 14 327684 RLC_20201124 80865087.0183001 4415.489244959391 1.158125854591006 6.308143241715945e-05 6370421.631480457 346.98760935352834 33636 3871 679095 DASH_20210702 1424171326.963445 42392.152133229 139.41927470116767 0.004145020843878956 530367306.67910117 15768.146447532807 399975 41306 56983 CHR_20210930 150292265.60901767 3617.550082612496 0.2653726011134836 6.3813862407207315e-06 49745981.1757443 1196.2362296411077 94317 None 80057 WAVES_20190227 264882162.467539 69544.86919883233 2.6498250884356853 0.0006955056446247207 10487660.963417342 2752.720332674191 136712 56731 39709 WTC_20210826 30271535.083965488 617.5855181500451 1.0379696922709676 2.1181257524155896e-05 23160185.79291797 472.61674713622415 None 20027 846713 KMD_20191203 78104039.61136289 10683.06325935937 0.6686584537044442 9.145507523852947e-05 2444670.5445160605 334.36731016184433 98198 8415 241126 MATIC_20200425 40519864.87824086 5404.937151032151 0.014672320797617017 1.9575455656501663e-06 34698353.328964524 4629.370406453279 35048 1638 177145 NEO_20201101 1036539769.750651 75118.46553360017 14.702050541137167 0.0010654839475328123 238940511.37608957 17316.44702037686 324420 100967 108774 LUNA_20210727 3553906428.3156333 94872.38275770564 8.493437920753516 0.0002269430672094587 517789048.7748365 13835.226205550971 92868 None 20667 CTXC_20200807 1157128.1523999376 98.35077521955299 0.11498291450171663 9.763230182345138e-06 15367523.979097497 1304.8605924700003 16548 20062 618282 CDT_20200217 5478161.86877205 549.5258678077394 0.008099166723704058 8.141145496964289e-07 378008.3591908315 37.996761348726444 19276 293 220223 TRX_20191017 1005596610.0768343 125569.7246427222 0.015243781515318392 1.9040068499011658e-06 708588114.240016 88505.37656393071 475624 71325 65552 XEM_20200903 1441476833.7104845 126352.29643731563 0.16017964114227987 1.4037427659863109e-05 171665038.29360878 15043.956520252856 210410 17843 239986 CRV_20201101 43508746.71159239 3153.6923278667623 0.416531189693215 3.0186761705319098e-05 28467418.4513115 2063.0848263446196 42578 None 12628 FTM_20210513 1614829750.5545335 31322.500055535038 0.6244420011863075 1.2448434685946751e-05 311721213.9859754 6214.253950177005 81151 7469 52712 ARK_20210314 244309487.97447774 3977.8499478792396 1.5528614554429134 2.5309810834318915e-05 9856452.76531193 160.64855889947444 65974 22189 76415 ETC_20200107 585115114.0443971 75347.95814336461 5.0317089853425045 0.0006479562549608164 973748578.1478577 125394.07263179743 228817 24968 399840 CELO_20210702 431042712.95599955 12820.354047293984 3.4114909398740823 0.00010143148596549063 68173995.19421515 2026.969954963061 33503 None 78561 AE_20200612 49352332.3992554 5319.019443695727 0.13819993500131897 1.4862089116914102e-05 13679712.914173065 1471.1230683451513 25337 6344 486173 ICX_20200501 151771560.3223304 17539.882717602413 0.2802839538809365 3.2516656098053855e-05 41802589.845275335 4849.654856033011 112700 27588 103972 TLM_20211216 275123227.29078007 5639.375100222786 0.22293957739336445 4.568666338507161e-06 78126890.97321548 1601.0423142220075 104442 None 9460 SXP_20210128 94256501.23363271 3112.331495771977 1.2655969637163493 4.163021644532208e-05 406645523.6022262 13376.091796531951 95296 None 143437 DENT_20190813 35367218.48149102 3107.566617196325 0.0005112841682387346 4.4929570742164857e-08 460034.48309726384 40.42595710200572 46599 10020 266120 NKN_20200318 5344759.877650868 984.2234777512904 0.008165719965880433 1.5181744412292368e-06 873405.270036766 162.38391266724878 12208 996 277366 GAS_20190410 47757606.655909225 9229.103227649106 3.4231766012672997 0.0006622094173373764 1802138.154261805 348.6214695009766 319730 97718 185739 SNM_20210105 3696559.921850273 118.15269259353148 0.008760174760753867 2.800003942733026e-07 168801.72556066047 5.395388905110307 28791 9499 None GLM_20211011 544605130.1673982 9952.961085068775 0.5444814775511128 9.952134093179124e-06 5011078.523371161 91.59342874314441 160573 21534 143737 NAV_20200208 8188808.7768997215 835.9929715443566 0.12142996932351237 1.238622992577073e-05 373088.69951735955 38.056193546563065 49760 14030 740836 ADA_20201226 4902726521.418645 198632.74756746017 0.15734710950345682 6.3811421141267795e-06 979948988.0898074 39741.39580529386 169864 93541 46501 ZRX_20190613 198239750.2857764 24404.71123450625 0.33233777581731316 4.0870973533943226e-05 40399753.31977602 4968.3706423372605 150512 15938 209456 LTC_20190812 5662782562.073443 490686.98101782915 90.04694604019284 0.007797420753307642 3722570269.3614693 322347.93016754906 451778 207483 141428 SXP_20210217 188948222.65587518 3842.002432411244 2.228310683618419 4.5285641297074374e-05 214966707.35883585 4368.73783886252 102425 None 126923 REN_20210128 459638267.229942 15186.221024030472 0.5226091010254512 1.7226936915498174e-05 96457280.87225357 3179.553301628931 37044 1003 93933 BNT_20210828 1028253879.2376449 20962.809261630555 4.431630141309062 9.037055099791616e-05 150149218.69427344 3061.868249975375 127887 7793 39587 UNFI_20210203 25217698.324509848 708.1003442588358 10.269878628657741 0.00028887863050690543 23927530.202765353 673.0510073506956 13634 None 111570 BEL_20210212 71705904.99480203 1504.0392964279904 3.1974986252360846 6.69686892456981e-05 47780457.51222791 1000.7180568896782 11114 None 421105 QKC_20210127 40122090.877233736 1231.22291231961 0.006284363562515527 1.9292340375621314e-07 3030711.7711461484 93.03968888450056 63014 9200 334407 THETA_20200707 229092812.6699807 24541.79688895998 0.22974789914651003 2.4600164106325244e-05 13890804.62514607 1487.3523310416997 71586 4285 81176 SNM_20200330 2613468.729634509 441.97750288 0.005961712006288077 1.01e-06 88718.08154495223 15.0301226 30008 9693 None AAVE_20210523 4294160459.3006353 114264.24418017817 335.24114532048526 0.008926713196478227 951667121.0652944 25340.74222943807 214053 10055 14216 IRIS_20211120 127295896.24084742 2190.0811271452408 0.11229040412343144 1.9250543135272435e-06 7006821.679338695 120.12168273168174 31316 None 451561 TRX_20201228 2081900121.3005068 78415.26184573746 0.028841848272246152 1.0956223575191495e-06 1224461271.3579772 46513.91034835523 554426 76578 31267 XTZ_20210813 2819301585.1781173 63415.195604817774 3.352745497502004 7.54063822510369e-05 203586813.21154845 4578.857855372094 127171 51572 70665 HC_20190411 70913858.6498801 13354.134291221522 1.61064331088492 0.00030345940413513287 24647736.4741374 4643.850921661904 12665 795 695528 NEO_20190405 829794395.5737859 169243.05922506086 12.77255591699081 0.0026062334655956513 462805479.1548412 94435.21998833818 319320 97732 185739 HBAR_20210909 3052753764.263536 65867.21900806997 0.3167730838918963 6.839201347769531e-06 264166166.9914716 5703.406309419088 128769 26412 52510 FUN_20200324 11819547.974107685 1824.0463894949035 0.001965339473990344 3.033001244647462e-07 304883.4292429981 47.05099717398456 34787 16979 317174 POE_20190904 6379946.850250524 601.788429158129 0.0025345670776844836 2.3907301676279035e-07 96060.55713481749 9.060911186109106 None 10739 694514 POWR_20210212 79079032.38350952 1658.4127001677973 0.18314078157895208 3.83571645441116e-06 24258237.931858856 508.06664462190815 81640 12631 369771 ARPA_20211230 97042303.38816567 2087.5595174906457 0.09931311725004477 2.1322937666549843e-06 16012695.310400631 343.79920138593144 None None 199347 BCD_20210408 685673902.8291935 12173.125174389557 3.59004722723316 6.388777185616069e-05 195370362.2665814 3476.77240490301 29444 None 1256238 LINK_20200301 1490255791.0713098 173926.82379279632 4.078126682900133 0.00047681169477372754 460516172.59672844 53843.2260202383 44209 13263 95530 DOGE_20200526 311963042.24932 35102.34043549654 0.0025012589481197695 2.814836710896559e-07 150073653.84341142 16888.80835366388 140884 155842 108072 GO_20211216 38340196.86718049 785.8789422701078 0.034636995439535564 7.087618707403465e-07 1351038.578080123 27.64571862804984 24977 1170 167701 ADA_20210422 39015254845.144424 720059.0140431481 1.2092168286239078 2.2356456356905167e-05 4004683213.2318196 74040.09219895981 344834 347524 7301 TOMO_20220105 165094742.90935028 3564.255056293633 1.9033560239426297 4.144267505105201e-05 3240058.259841095 70.54732794074414 69499 2396 104936 ZEC_20190312 300578164.61441916 77738.91028068974 49.173938109446425 0.012733784684261524 230591544.9696295 59712.58753202034 73674 15039 156560 REP_20200207 172108345.93830943 17671.550933888313 15.636412727554061 0.0016064120647093895 16195200.087709459 1663.819270096015 129513 10104 302168 SNGLS_20210429 25346640.950963296 463.0547021118944 0.028479371855014944 5.20286182148196e-07 2763356.6544306125 50.48342677524131 9466 2131 958581 XTZ_20210825 3351732160.10574 69748.16438791624 3.9678123323514622 8.271321632732412e-05 456448406.9697315 9515.146550687636 129648 52504 67956 ARK_20191220 21861215.34132349 3061.3976104720446 0.15330770197499732 2.1454712010586532e-05 556973.2324556638 77.94585755313578 62759 21686 102413 XEM_20190318 451184610.6850528 113299.25034752679 0.050131545918304765 1.2589407111873389e-05 16365936.61343487 4109.935870108778 215725 18459 129022 LRC_20201030 155776376.4609593 11564.599846396073 0.13073646235879935 9.72252455926367e-06 50371267.270635314 3745.977780674009 42248 7178 146792 TRX_20191203 1007543758.9939435 137863.06119366753 0.015229737084220926 2.0845396565574247e-06 1002795931.0004514 137255.67776023078 488101 71673 69501 CDT_20201101 3052990.8486876213 221.2515086581836 0.004522248706133553 3.281573712147509e-07 82564.4513279006 5.9912966013576785 19168 292 402907 EVX_20210318 17804677.413973507 302.5356231128252 0.8220179150086603 1.3949230786633209e-05 1211149.0316446316 20.55259021847511 None 2817 730921 VITE_20210218 21206716.98488989 406.3358916895241 0.03634072712253395 6.969768619840816e-07 1873691.570514837 35.93543042603816 None None 414630 FUN_20210111 66007249.970770754 1712.248671118045 0.010929731746524153 2.8417076865242333e-07 3339487.6995150913 86.82599065419059 34236 16515 359571 OAX_20200518 1765659.914865184 182.6215570423012 0.033709612755446094 3.489734646163403e-06 73979.68909539902 7.658630967420451 None None None TFUEL_20191213 0.0 0.0 0.002537660072349549 3.525369352953952e-07 317327.0016946756 44.08371707576293 68996 4019 468336 TNB_20190509 11762167.362102268 1976.030919816078 0.004503159747987441 7.55969073876743e-07 849023.1020529518 142.52996652978598 15772 1504 655962 BCD_20210318 213881691.5905584 3633.8551594017786 1.1365160597255304 1.9281848231818596e-05 3360985.717677534 57.02164607618376 None None 1465954 NXS_20200506 9741368.879530951 1086.1671302322247 0.16340367762028357 1.8188957485776194e-05 40666.020636077534 4.526657730336754 23609 3522 609605 LEND_20200704 179436680.91561523 19787.077550858783 0.14282244349121648 1.574950423148356e-05 11149901.208473522 1229.5365628181335 47853 5751 67758 LSK_20211221 344254534.8014864 7304.418284974882 2.3771402537810924 5.043833843955357e-05 3459236.917536229 73.39834581142803 202886 33690 225551 ZRX_20210821 889627342.2531276 18104.625010504682 1.0550564674047098 2.1450898642685337e-05 85953445.1327744 1747.5639423055663 224932 19693 54566 CTK_20210221 73507818.54452898 1310.4980593698717 2.1127367025226977 3.75815395870003e-05 22039773.523262 392.04536001290654 17774 None 218849 TRX_20220112 6631556032.224934 154782.69692907104 0.06504279816019588 1.520194831079158e-06 901564639.1055635 21071.570458522485 243 121911 22258 NAV_20190716 9244228.11568491 843.9273041877524 0.14064817307184985 1.2861505762383335e-05 153288.4550017468 14.017390373813514 48371 11241 923849 DCR_20200417 141873562.8911605 20013.578969430902 12.480797734568435 0.0017606199912939718 108425780.16766636 15295.22392676126 40609 9772 260313 LTC_20190605 6303308372.571667 823117.2819232179 101.86340900251673 0.013286627051312366 4680762108.218538 610538.5737313953 446332 203243 172197 ENG_20190920 29266073.68051418 2858.276450871189 0.3737177326794873 3.648867180772127e-05 1411607.4113079794 137.82508842506158 61372 3484 323659 REP_20200506 121911230.64931174 13548.479186141582 11.082839149937431 0.0012316799260128715 43420191.25034554 4825.458280425575 131395 10116 256414 QSP_20210930 27542142.372974947 663.2643974532459 0.03873746455089333 9.319446423384645e-07 206737.7009614623 4.973688779431572 69196 8566 198059 NEAR_20210610 1304166963.5534227 34744.78908628053 3.23903009127669 8.648102053898496e-05 80575360.43067461 2151.3351849086093 83063 None None VIB_20210506 23646769.887022067 412.9298901661675 0.1291019729515662 2.2526365298199644e-06 2918067.0937696365 50.91591074566392 32394 1249 3730171 LSK_20190908 144190816.35480264 13773.382574664613 1.0678627699523673 0.00010200294457290696 3046719.6353546605 291.0246361600667 181787 30935 161832 MKR_20210806 2872688295.229572 70114.05781888122 3248.0272625360158 0.07930317238157204 164039589.33578417 4005.1572166733717 170128 29242 33465 ASR_20210124 0.0 0.0 3.836314581432389 0.00011970665277580206 1161077.0710745766 36.22973216684814 None None 205258 CELR_20210212 64141056.931627 1345.1396686510034 0.01624558214810289 3.402488851457865e-07 24236294.54938058 507.60706051119456 29344 None 412914 VET_20190512 362284601.948614 49617.436826165766 0.006514787064880156 8.944325942236604e-07 21243071.535338175 2916.518282701669 108325 55481 330753 MFT_20190414 23667636.52050496 4665.181015954079 0.00356675982799578 7.029180431003862e-07 1563673.7768343994 308.1605054067931 17569 1923 690472 ETH_20191019 18701016660.84209 2349797.6725143394 172.88626058117322 0.021723581841382553 8019508916.141182 1007670.9258552918 447794 446744 24016 ENJ_20210513 1957042388.535508 37943.21519621218 2.0583615269491875 4.0837433549710607e-05 486634755.3794487 9654.724996362844 183889 31321 21427 HNT_20201014 59825221.37707711 5236.617003421722 1.3420303541112644 0.00011749518894821238 2919277.3725216337 255.58367247499154 9614 1602 81023 CND_20210324 78793951.0747868 1445.064472197378 0.04139381150228997 7.590675957432805e-07 2683795.876160543 49.21466299546284 35050 6093 157654 RNDR_20220115 543487201.1725725 12611.399299353852 3.5284999137258897 8.180984892861062e-05 36112939.911865935 837.2946665139854 50417 4532 56156 BNT_20211007 917120353.9928484 16521.949322999182 3.9942072524958574 7.200039334839846e-05 62327779.28905835 1123.5332424325718 None 8208 40923 IDEX_20211120 227792214.52312136 3918.5981932340314 0.38076467047376167 6.527651913413518e-06 307801805.32396656 5276.810584803403 68746 1988 4302182 STORJ_20190813 21688104.31520275 1905.6412082693778 0.1508250361564366 1.3253890013891511e-05 1008993.2364462322 88.66621697175096 83778 7784 204651 PAXG_20201014 66040210.67328156 5780.627002473032 1907.0376735843809 0.16690084908955524 965431.5575420322 84.49300657430742 7609 None 94594 CDT_20190510 5097886.290763672 825.6847496915111 0.0075576273076753105 1.2239997454226678e-06 189043.99264260344 30.61672525625052 19856 291 447254 ONE_20200410 13152639.692944942 1804.6670977326755 0.0025208792199000875 3.4573454524275057e-07 44826060.993464045 6147.8224304666755 71200 None 330702 MATIC_20210125 162086565.7218545 5033.852501360832 0.033224695828565645 1.0297698810860414e-06 34717166.87387588 1076.0276930095474 76686 2750 46459 EZ_20211207 0.0 0.0 3.494438224813376 6.918696569096427e-05 1000701.3047698722 19.81305216626456 37999 None 266818 COTI_20210204 38011197.22209658 1014.5945311334063 0.06704811123925543 1.7875058298360038e-06 11757586.81793033 313.4578229483144 38327 1400 238618 NAV_20210324 43731865.15351007 802.5321707161191 0.614353930257125 1.1257541191485968e-05 2325911.494799722 42.62045568667524 50401 13899 461949 CND_20210422 66755581.79034997 1238.797196115504 0.03479801711571741 6.420721997015968e-07 645040.699494288 11.901905198911091 35552 6182 117159 MATIC_20210710 6705615971.311256 197365.51346072357 1.0588512504571967 3.1158601575781006e-05 498045413.90380096 14655.88165643933 524976 46512 6545 DCR_20211120 1457131619.1890626 25066.674193902647 108.09027459598016 0.0018578759224012996 7843270.423535982 134.8116037935541 49882 12345 187496 RLC_20210115 72424283.69476491 1859.4235170582258 1.0361732431335189 2.645870713517014e-05 5501856.9376124665 140.49004100092773 33862 3901 542862 COCOS_20210708 21541672.329366233 632.4825676769575 0.5102326540482316 1.5012406917816897e-05 5909715.549626075 173.8796094205881 96148 1199 327250 GRS_20210527 84279404.83242849 2151.3049832074307 1.0856485351738532 2.771212146520398e-05 2090691.8939679198 53.3667258185711 41237 106848 6377018 XMR_20190302 806658330.1552289 210987.56104567923 47.92451275011652 0.012544833446269868 78619854.7105069 20579.71852642042 314087 156369 112805 BAT_20210217 820770064.6456838 16689.231263964994 0.555844717179155 1.1295456705745524e-05 382854471.3287343 7780.079529119585 137630 54379 20378 DNT_20191030 4859459.509189897 516.4033860454117 0.0064674030031134245 6.873758554554468e-07 186910.9859870212 19.86548523804687 None 6224 368992 RAY_20210909 855952531.3488213 18468.31326615887 12.654944815615659 0.00027396776852978616 430115141.55966467 9311.592208491322 None None 7379 KMD_20210826 144209515.19876555 2942.0254288289752 1.1313670539275493 2.308716439605745e-05 11593155.645033449 236.57493765335397 None 9532 205763 AR_20211002 2366437739.020092 52810.94202412789 48.93061829150033 0.001015847316053191 69965994.62402964 1452.562226587658 35293 None 54433 AMB_20200412 1268480.3428345593 184.29272311170982 0.008774924218696278 1.2750902408156032e-06 69795.37114119653 10.142013124925318 18976 5487 894983 FTM_20210127 185468252.4101554 5694.805601853322 0.07307824070078563 2.243124597541049e-06 86471986.57106473 2654.2434275338173 29853 2924 149161 TCT_20210710 13416013.448156334 394.4610503257243 0.023178375683790053 6.81496515518811e-07 1174827.8305475237 34.542587615947355 None None 405222 STORJ_20211216 226404533.95222887 4640.731175034009 1.5775224903251905 3.232738738751775e-05 64141171.99165024 1314.4132823336458 112587 14698 50692 STORJ_20190725 25127817.403342184 2557.8068747321 0.17441880117304456 1.7787160250943684e-05 3701566.2496428816 377.48425983366866 83884 7776 215806 ADA_20190818 1473825286.9820056 144197.93528454195 0.04737046324949391 4.634689779299935e-06 90275825.09110437 8832.517462705626 154348 75067 90911 NAS_20200518 12738952.303648867 1307.7256970729006 0.2806873435042719 2.8740200173551884e-05 5243249.072614441 536.8679115538242 23391 4929 956871 BQX_20200903 32916228.58123299 2884.7118945569273 0.14803159895263174 1.2976668565448555e-05 592410.6910259472 51.93159600020246 15018 57 203989 ENJ_20190603 146495677.11664894 16750.375903264983 0.1685157774075599 1.9269909215057543e-05 23508107.62521743 2688.170251620722 46356 12539 19644 SC_20190318 106570164.06248948 26761.36943951479 0.0026771999845553716 6.723183956942786e-07 5336621.389826758 1340.17210217188 109489 31088 227818 AST_20210217 44534305.46726818 905.036092832282 0.25921049220336007 5.267479930756177e-06 3110852.1847604644 63.2163895507712 37167 3493 155263 REN_20191216 30401394.91626174 4271.9345579679975 0.035964598303728106 5.05750570900032e-06 2816558.6029084963 396.0773061788116 10343 873 372683 MINA_20210916 1441404834.4787054 29911.96499607994 6.059940298166795 0.00012572988435977686 123334542.91448158 2558.909338247888 130463 10155 69004 ENG_20190325 32920718.77956165 8244.130928416442 0.42762700922248 0.00010716466528742741 467281.6989901486 117.10225450508618 61485 3277 352140 RVN_20190530 200537596.2987671 23189.147644277593 0.05501231151443141 6.361820169361974e-06 32664163.69642657 3777.400543599309 24526 6501 170444 POA_20210814 13154084.35169754 276.1240748180515 0.04535164653184196 9.503085628677553e-07 903634.4084400841 18.93495786177519 19962 None 221231 REN_20210217 928746121.8512882 18874.408923585608 1.0663011438220793 2.1678290081330265e-05 426220951.1771575 8665.226959468258 46673 1048 73664 ICX_20190906 97401678.13674763 9214.535903328328 0.19771866819913503 1.8707307105233316e-05 21145574.296473894 2000.7051225039336 113680 26207 190786 ARDR_20190122 54262901.93131247 15364.536308422557 0.054340664155376736 1.5388579253269458e-05 327154.61409274966 92.6459914557546 70350 6617 740966 DGB_20210120 380600469.95399445 10510.870461123213 0.02724119944219427 7.515564599970674e-07 21132926.206303038 583.0355319959813 179976 23976 218245 DODO_20210702 114063933.62746362 3392.564052649696 0.8538706145782132 2.539443431038672e-05 41712060.18865513 1240.5324112657747 93833 1016 25829 XMR_20201101 2240360306.3480678 162359.83738061256 126.23362797491573 0.009160154208008264 342091356.3540459 24823.889067439755 325319 182648 75533 MANA_20200501 42171994.42179308 4873.426621386539 0.03151352089801791 3.655986392695803e-06 26286051.696966756 3049.530632670541 48253 6837 47656 NKN_20211202 328201309.1085098 5741.859590308138 0.5049437192557904 8.832554960536714e-06 17786521.26299715 311.1246275995257 36548 4544 115228 DASH_20201030 655497434.5604843 48663.10346776055 66.86900499302017 0.004972911832334109 274093367.8952065 20383.766029009308 320988 35454 68105 OST_20200411 4718094.751500342 688.1046741273108 0.006882862638123973 1.0035288563301483e-06 552567.2013871438 80.56489876496113 None 754 766373 RUNE_20210401 1844928055.7607002 31365.79378642222 7.943803272887566 0.00013518691598640001 117392963.8816703 1997.7826993564413 40 3116 96184 VIB_20201208 2983149.808103649 155.3152882291571 0.016318104085040645 8.504107516712984e-07 720897.3504976963 37.569245453986596 None 1094 3152999 RDN_20190923 8829235.275581222 879.0822141644541 0.17441909027364036 1.7365924251690356e-05 187667.14809890598 18.68495858626139 25550 4384 1994136 ADX_20190906 7514774.963974259 711.0163362834146 0.08164207446159487 7.724629007328417e-06 544052.0640449222 51.47591340780106 53676 3841 517237 DCR_20200330 116270666.96487756 19662.839564940132 10.132467880432507 0.001716586200145664 14882963.864927849 2521.388736611638 40687 9760 200827 ZIL_20200207 76195902.63765807 7823.558858078904 0.007397861605137715 7.60099464533495e-07 162140151.66113365 16659.225197105203 67686 10518 252784 ALICE_20211204 328848045.36604774 6125.157526318236 18.79124763999968 0.0003504276539577143 214142407.6597863 3993.4241177972513 146340 3027 30388 RIF_20210729 142176226.22066355 3555.558077634201 0.1888630560212403 4.718568340637309e-06 4190858.603961219 104.70471645081778 44691 3363 493990 DUSK_20190810 7091993.938304555 597.7146913840027 0.10855264180207104 9.152170289704397e-06 7734100.498985663 652.0689283036323 20342 13246 227094 ICX_20211111 1367126777.769935 21087.42811682434 2.0390715026199757 3.139143542586424e-05 67316642.95986886 1036.3373956457647 152276 34226 265159 CTSI_20210909 272961181.1454911 5891.860348218797 0.664171003994215 1.4345898564849673e-05 28912366.844020244 624.4986299005158 None 4531 229659 INJ_20210708 219637707.03957045 6464.154097074245 7.556597950197577 0.0002224423121490217 28723142.191497095 845.5183408420818 76193 3728 124543 AERGO_20210813 52402875.794053845 1178.6691832263834 0.19844241097685977 4.4636277312675885e-06 15850031.820837466 356.51976424139383 None None 411041 PROM_20211011 291526492.6088405 5327.808489998091 17.726510644371977 0.00032386844922084986 9405201.749155538 171.83574174398075 11884 None 645407 PERL_20210420 0.0 0.0 0.14271096547415305 2.551872029021142e-06 12233347.560268022 218.74939572177445 18270 636 340450 POE_20200224 5520256.372408028 554.8521953685267 0.002192123082741141 2.20426618022187e-07 89938.41033236084 9.0436617249904 None 10471 701965 BCPT_20190426 4558688.39673715 877.6210826416337 0.05443118315195038 1.0461246964042416e-05 1627950.526230032 312.87933706296707 10711 1727 1630798 NEAR_20210620 1168008013.3034186 32764.281579789873 2.871949911611795 8.068899095356394e-05 35700827.80519235 1003.0341268003607 85528 None None MTL_20200701 20171344.289052535 2204.9506708338563 0.31243610593131055 3.416020819037899e-05 3353764.9523765882 366.68396135998455 38327 None 396348 GRS_20210902 82821647.36246277 1703.5350977576643 1.058128265809402 2.1751514816853317e-05 5795170.005520664 119.12896603782097 41684 106889 9019310 GXS_20220105 160423099.72261456 3463.1815833892206 2.143555306845096 4.667264816359813e-05 145183724.21157247 3161.15420841682 94816 27128 548361 QKC_20201030 26890309.702683866 1996.2954494267465 0.004580649561449262 3.40653586908984e-07 1333619.0126182474 99.17853224176527 64419 9216 99674 LSK_20190421 267053338.1553321 50289.20152175856 2.032503044208087 0.0003826761703759009 5487135.849398178 1033.1084812707588 183863 30440 165953 HC_20190531 64260665.65266091 7731.383684009186 1.4771551549417083 0.00017782815704927386 75008905.66620262 9029.989444426386 12701 805 758739 NMR_20210212 222085530.88148263 4657.485730871974 42.66157480626618 0.0008920990660317841 35316103.95496353 738.4974299982194 24143 2246 2472794 TNB_20201208 7197486.283697906 374.71376015780277 0.0020942432008544845 1.0907618075407247e-07 366540.2671259799 19.09081639341915 None 1416 3244705 TOMO_20200217 38339122.790340364 3845.8775456140024 0.5506184819176085 5.5242023445394e-05 12761619.8238178 1280.3378830535453 21645 1478 222271 QSP_20190623 0.0 0.0 0.022944307808112577 2.1390278636006062e-06 469659.81939211214 43.78495304783819 56791 8589 682845 MDA_20211125 13220955.042954382 231.10561291686568 0.6735209838060193 1.1776168098095985e-05 3131081.179422827 54.745344516671196 None 389 614634 RVN_20200903 144456880.04920205 12659.90965824393 0.0207541849695185 1.8193425025533547e-06 15978695.643563397 1400.7160561783055 33527 8899 265141 CTXC_20210125 1107438.763312503 34.393247608015315 0.1097010120716204 3.400327006961383e-06 2650084.338512692 82.14284605767352 17129 20079 599197 DNT_20200318 2376414.7269924087 437.46293793713 0.003154094010671222 5.864106205262171e-07 63075.54910474208 11.72703532786337 58916 6088 656002 KNC_20190622 41840294.93108577 4134.194056352144 0.2520796576952521 2.490470616834625e-05 7506134.565272586 741.5833451907378 96973 6694 219809 STORM_20190903 10063030.665760843 974.4262792258922 0.0016142951042892963 1.5631588775708657e-07 108081.51494193381 10.465780335570841 None 2547 2939778 TVK_20210430 113435477.66456886 2116.181433690568 0.5170519477081008 9.646132483708004e-06 37809197.69465735 705.3692219553707 45601 None 68295 XMR_20200718 1192931725.151972 130321.32293677 67.64633549046407 0.007389995376155145 54104085.16904432 5910.577954170253 320231 175165 89794 TCT_20210731 12756761.344897127 305.7600707787211 0.022060243667208785 5.281179831399156e-07 1523470.1984945545 36.47158303145394 None None 562073 COS_20210703 38007319.26529656 1124.4692605392527 0.012634054788194718 3.731470566473381e-07 8317035.65481254 245.64381163869572 26699 None 334513 BCPT_20200610 2872741.5862165387 293.8802471299204 0.024706037758401776 2.5299889112038444e-06 88086.15236328432 9.020345184 10503 3173 8141726 MATIC_20200315 27127408.54827526 5250.527527090618 0.009872529360329564 1.9054885533706632e-06 21397097.235341568 4129.835665126993 32641 1581 153243 CFX_20210611 288148258.74989986 7818.520423374302 0.3412511657346246 9.29499209636092e-06 2659117.7375728446 72.42899317523094 None None 132746 DLT_20190821 3812333.1657005656 354.2866626208486 0.04752169636417578 4.41627278497609e-06 272100.8344675925 25.286797441313404 15030 2657 4092557 FTT_20210821 5309776462.293095 108071.47779882235 50.264365758618894 0.0010219508135704397 709530699.7650797 14425.8355782355 None None 1799 WAN_20210603 164566865.89768302 4372.952334779216 0.9367236783539309 2.487731056908588e-05 5090941.993924096 135.2041674601484 121788 16559 175005 FIO_20200913 17779327.42514998 1705.0764489343896 0.17351162500897344 1.6615546441950536e-05 1027502.3757267351 98.39406115998939 52787 135 278091 TFUEL_20210825 1758840436.4247718 36600.74434109889 0.33085608258122484 6.889510511945994e-06 92339538.52930225 1922.812530459342 189951 22929 21702 BTCB_20190909 0.0 0.0 10393.0479739997 1.0 76808.78174704738 7.3904 None None 70056 FIO_20201228 14145062.650673244 534.2984016159432 0.0670169201052415 2.548335643466496e-06 1995153.3935875425 75.86622153148784 None 158 423283 ELF_20200224 52221855.16683146 5248.924874279728 0.11321937724825312 1.1378050748011023e-05 62395443.355961815 6270.468343878252 83424 33457 876867 ADX_20200518 7343568.1131966775 756.4398001305157 0.08079540121250271 8.263303598559743e-06 88322.60209096108 9.033143777240879 None 3752 26669 MKR_20201101 476554395.8307612 34536.09403400916 523.558507327421 0.03798392159110211 30829464.205880966 2236.6630179872927 70037 17375 27961 YOYO_20200127 1753181.464529147 204.2931810158909 0.010035571859724778 1.1677788953238917e-06 193489.9502766538 22.5152570823744 7488 None 1347898 IOST_20210204 315929730.97784865 8429.435313436781 0.017206247067601703 4.587168014179368e-07 109250489.98464467 2912.6069806042738 202751 52238 229978 ZEC_20200412 354406032.67426187 51504.936239754265 36.2524312637058 0.005267865585858879 438910651.1094032 63778.4069550371 72639 15667 146498 BLZ_20210610 60341641.61473419 1607.5704686133085 0.20628128339167331 5.507641300971035e-06 43502293.365732916 1161.496688835029 62102 None 205295 ADX_20210708 45040496.12319828 1325.6030255336007 0.3661271391661756 1.0775619391072121e-05 4107043.6725995904 120.87587808768687 59128 3875 14172 KEY_20200113 4399171.120106661 539.6378583856065 0.0016307243401821726 2.000007623227099e-07 1413901.1109693884 173.4084008405822 23592 2781 310211 SRM_20210814 259473197.1373631 5445.704778878385 5.195955474081694 0.00010890574226100795 116889746.77793172 2449.9756972612904 103021 None 31841 IDEX_20210107 19985813.8030723 545.2686726853392 0.035243417891240386 9.553391920560457e-07 1353815.7725549561 36.69772524153626 44358 1945 159964 FTM_20200610 13555332.052238526 1386.9889560611307 0.006353263164701688 6.505974577485189e-07 1528164.499342899 156.4896514625506 22111 2379 340286 VIB_20211216 7291756.7487044865 149.4629205244518 0.040002423693224154 8.185586135944395e-07 742682.1501336349 15.197300938985357 33297 1324 3416907 ONG_20191017 0.0 0.0 0.13592800940876607 1.697344893733081e-05 7528161.370672027 940.0480678917927 81335 16280 327053 SC_20190623 129333310.94249444 12047.10831615578 0.003171754111113406 2.956929656323089e-07 7801892.385647288 727.3466404513758 109573 30868 233756 ICX_20210221 1201806661.6336155 21519.650991257175 2.070296923957928 3.681489240065365e-05 267042267.17156598 4748.658136221812 121314 29349 176350 QSP_20201111 19764324.25718468 1292.1590861425314 0.027505983712105577 1.8007605812492503e-06 476815.73299609177 31.2161522920171 57783 8206 233345 SXP_20210825 738357412.7582253 15364.913346916283 3.9347851600304184 8.19351529244547e-05 329616884.7236366 6863.706341747192 277608 None 111870 IOTX_20211028 557267050.444071 9521.178228041483 0.05843597664259337 9.985980381437385e-07 71359035.00481734 1219.4370053139664 148159 10444 61368 SUSD_20210310 267139693.17561662 4887.8221446975185 1.0028374059992673 1.8332435672355492e-05 25010162.508280728 457.1999335040246 94737 5263 24026 HC_20200411 46243442.786596306 6744.317527552196 1.0402371734026519 0.00015158147649233306 29543673.812800102 4305.050628890262 12682 842 1040016 BQX_20200730 37615297.91527456 3387.5807321395578 0.16792820453568025 1.5129819806687356e-05 3718461.510940752 335.0220576358411 13534 52 341287 TROY_20200907 7361494.575835815 714.9530892877268 0.003870562350696381 3.762828281540201e-07 2207384.430908353 214.5943615495324 None None 412863 HC_20190915 95548097.84672683 9230.217960562613 2.1561579592706934 0.00020829341229144805 46303639.538695626 4473.115264843766 12898 849 399646 KNC_20190618 44970164.15322237 4826.503730430834 0.2706489200550398 2.9060032209805975e-05 8583029.864116209 921.5744302922782 96931 6695 219809 ADA_20200306 1581607337.8214996 174692.19704538825 0.0508706766907552 5.615615572944725e-06 142091918.55701336 15685.531283356555 155817 77013 41962 DOCK_20200404 2461987.0194684365 366.1115395265501 0.004400900183061062 6.540333018154423e-07 892097.5855956161 132.57776936055302 42888 15008 604505 MITH_20190528 29472602.114773072 3346.2281840421824 0.05498007992351769 6.247412395721688e-06 14508989.633137356 1648.6633306017993 73 2065 460427 LSK_20190221 163267245.52641618 41119.449970431226 1.2570187304680107 0.00031658474198372746 3676898.9278499875 926.0403764550396 182889 30483 176926 BCH_20220115 7312419747.113801 169681.72401552074 386.1207422051085 0.008955265822377493 1612557091.4174743 37399.900675971265 None 762476 290205 CTSI_20210325 98813101.59912324 1869.9671165860407 0.3187458983301915 6.041510597325911e-06 91759761.25016195 1739.214756660727 None 784 199890 FTM_20210206 404408094.93332875 10670.115093153749 0.16009763714503816 4.211826314456679e-06 123598063.43098502 3251.6006185831607 32348 3354 133702 CND_20200605 13566333.098182468 1389.9473601274908 0.007041576196919344 7.203557317288928e-07 162802.39695413708 16.654742703263317 34429 5936 343900 FUN_20200414 9739232.663017156 1421.525608506188 0.0016056305015807247 2.3448704070288222e-07 248097.66353596185 36.23230056390544 34613 16937 280907 CMT_20200411 5697987.9952078 831.0159882603 0.007207208941466429 1.050221430909538e-06 6417980.000728115 935.2164193733018 285704 1636 926050 LTO_20200308 15549508.427518781 1749.4191624661476 0.07378037559219916 8.289527598212587e-06 13004701.589169826 1461.1315253502235 None 412 867701 OG_20210418 0.0 0.0 11.972808584043147 0.00019863111951374092 14754870.004647475 244.78603551792 648190 None 247445 TRB_20210430 131046681.70137495 2444.7250584446265 81.37432097520482 0.0015183397679982224 92913259.49741219 1733.6414630390022 18770 None 295366 WTC_20200312 10699831.98728453 1348.992380637107 0.3665862415929851 4.618011439574779e-05 7331395.407843361 923.5607892523403 54946 19442 905715 WAN_20211002 169103599.71015206 3511.755310270629 0.8743699093306236 1.815277134532916e-05 6600545.425662357 137.03375492214076 126643 17015 268022 XEM_20200502 374544153.2831992 42266.299104854894 0.041732076305043546 4.722185586691913e-06 15128613.623847052 1711.875552967096 210118 17950 220476 XVG_20210401 733440747.7235403 12469.855778167965 0.04394071763941899 7.477338224885259e-07 61283440.547946826 1042.852818932033 297544 52836 130947 ZEC_20200217 542746343.2444196 54577.86352683212 60.30721440812644 0.006061979259869332 758259692.4520102 76218.98265988546 192 15526 158191 GRS_20190318 30120395.77791496 7564.268135813769 0.4175093268506107 0.00010485096280895381 9836497.256400725 2470.283037222501 38188 107051 7284589 TROY_20210527 20484035.554689877 522.8256923641554 0.010718990451087847 2.734193880709052e-07 7241812.823128523 184.72374237658585 17032 None 513803 DCR_20200106 191971199.59016633 26144.24841707824 17.611597772620858 0.00239781167182299 16657871.846285466 2267.962285787025 40896 9710 113234 LSK_20210702 363725133.4631836 10826.71087426413 2.5227173706882398 7.500772960664254e-05 21931327.553751677 652.0821976255414 196560 32560 337278 XEM_20200718 404798132.4740468 44225.30619780509 0.044971420167557834 4.913029623996129e-06 8716959.742080864 952.3088504756605 208528 17840 268527 DCR_20210527 1875460640.1423383 47939.171660693486 144.54373152742133 0.003687013138415646 50878005.8172775 1297.793227851618 45552 11167 205679 NPXS_20190316 113085891.0180265 28815.990359478445 0.0006452178183927621 1.6440909681193082e-07 3156259.9640955282 804.2522001224759 57194 4115 151304 DYDX_20211007 1266546415.3271115 22814.174571941265 23.362230212286835 0.00042109623004194755 598016298.2867005 10779.03977590847 None 1847 21030 GVT_20200305 4987711.42709166 569.7534392524803 1.1248078097694856 0.00012841991362220638 916664.8416852881 104.65611882074585 20755 5608 171820 RSR_20201224 160980677.9031228 6884.1559848997995 0.0167682299280324 7.190698196765124e-07 56848039.06385318 2437.8070538185225 49040 None 180905 MDA_20190207 0.0 0.0 0.6958136662037524 0.00020422447721049115 1185107.4434370708 347.8344272751397 None 345 1419763 NEBL_20200605 9266001.78418474 947.9152548782793 0.5653123141093827 5.783164937756087e-05 210656.41057237005 21.550225196402835 39096 5958 1283698 GO_20210805 24100061.31481412 605.3753123516915 0.021758328648503005 5.471739759794027e-07 1397502.0750926468 35.14409489905925 22462 1110 169047 ZIL_20210210 1224915771.1059213 26297.066161715018 0.10324942851065888 2.216864643317083e-06 508669032.5806846 10921.61389892839 137670 17397 35643 KNC_20190623 42978989.40753034 4003.396626424012 0.2587141804164331 2.411913426404071e-05 6456826.677122678 601.9502653255792 97006 6694 219809 THETA_20201124 662681753.2968035 36185.06184569655 0.6665738998395729 3.630731172012554e-05 34381903.59751529 1872.7323283235817 74653 4525 80855 TOMO_20200317 13058321.628232071 2592.050503205093 0.18553628088662397 3.688097680258112e-05 13526786.740328325 2688.8601280542166 22121 1509 236393 KEY_20190522 9584516.028866345 1204.1551523021049 0.0037376689997912246 4.6970958776092064e-07 1396791.258362447 175.53353338407697 24033 2837 636619 QTUM_20210401 972585890.9871277 16535.147037896008 9.372114941049258 0.0001594937930392581 849389720.64092 14454.836412666667 218018 15875 102552 BADGER_20210704 84854665.09361358 2447.714780388027 9.336699300215948 0.0002692589087259118 4841070.6264212765 139.61051459642817 35726 None None COTI_20210104 28825163.36206876 861.4692548497269 0.050540155839395286 1.5353487893526274e-06 10697336.021385318 324.9721263607547 None 1268 237911 GO_20210804 24476461.14056962 637.0654121083443 0.0220382810775232 5.759705820799925e-07 2346477.1190086333 61.32519080406777 22468 1109 169047 POWR_20200414 24833987.613667276 3624.736216458466 0.05770830268229055 8.427747919981941e-06 1087807.1254919365 158.86386902901572 82255 12787 242937 ALGO_20200224 280766610.81949496 28220.42309086126 0.4621505448044757 4.6444102412578836e-05 149878002.00209183 15062.081723441117 15332 792 415248 DASH_20190806 996718446.4212432 84392.24510629302 110.8319508058791 0.00938362900002944 274307338.20977944 23224.33445437136 320554 29478 93403 LTC_20190714 6334530260.52375 556556.8902838706 101.36570935465674 0.008892990002430738 3754110835.0444937 329354.6736526031 450350 206133 149931 SNX_20200806 496089303.95415246 42348.34378653863 4.328010582631744 0.0003693116363625021 25040763.592835166 2136.742783242726 27005 1679 46620 XMR_20190726 1382682026.3059802 139582.7741030407 80.68229742060024 0.00815908249792145 271586762.8820265 27464.498093631504 320260 159728 109892 MDA_20210220 25789886.282845955 461.07839384019115 1.313874035189663 2.3489786779576668e-05 4638374.000488997 82.92607461391121 None 370 1150180 BLZ_20200117 3927807.7044896544 451.20980279836715 0.018353805374156103 2.106355531123363e-06 160341.9369239227 18.401476904964017 36194 None 708890 XRP_20200321 6932408770.043524 1123448.5453189844 0.1578654199821656 2.5505201478025402e-05 2852880594.57501 460919.7781604405 946357 210920 34201 THETA_20200106 93644358.98540781 12753.09850504763 0.09375574589014977 1.2764805595626359e-05 2738636.9387852047 372.8642739566453 None 4014 523233 ADX_20190929 5943842.899038287 725.687561282686 0.06460211031468523 7.88688892376631e-06 377196.33662969625 46.04966610159994 53503 3837 407203 WTC_20211221 28390909.282367613 601.7741520716493 0.9702286294858298 2.0579367774527094e-05 9561829.515955377 202.8144709669671 67714 20383 392507 ETH_20191220 13910360785.04459 1947937.786795007 128.0791538700726 0.017924092041312817 7865020994.018279 1100673.7313915186 448365 448656 23532 STX_20191113 74127332.27849926 8433.656148807017 0.19188488025667827 2.1800088118941263e-05 817045.1091783459 92.82469443872725 33345 None 53113 FUN_20210418 449413956.52499175 7458.078638257121 0.0436667297704148 7.245194820330526e-07 27237907.82052357 451.9320537522887 2804 194 255008 CND_20190401 30870226.68723339 7523.012874797111 0.01783195178877544 4.34561120165657e-06 1017289.0179216786 247.9113113341498 36785 6203 621680 ATOM_20190902 518432273.2753982 53238.52480873979 2.1272542492182347 0.00021842666169124222 113179246.04645458 11621.255379202505 28239 6760 108058 ZEN_20190614 71753511.20932877 8726.803465539144 10.775268164192969 0.0013097288546826903 3103732.299102744 377.25722343077933 25987 1663 229974 ZEN_20210523 1021649650.8704767 27179.24668802817 91.85664358749148 0.002445934587512435 208999582.2207894 5565.18600031985 109223 7280 752253 GO_20210826 43426031.20897685 885.9606776121994 0.039666531726967276 8.092498297850994e-07 5382071.04401847 109.80138385283166 22805 1113 199251 ZRX_20200306 173110020.48308814 19120.403077047333 0.2765068659000412 3.0523601477009535e-05 39010053.13525187 4306.320971891704 152962 15987 118984 PIVX_20211007 53561007.84690461 965.3854777113627 0.7967305699823714 1.4360299643878498e-05 400256.63133640843 7.214239514579453 67957 10099 287225 GVT_20190220 15864367.182397187 4052.5616378114755 4.010688397840907 0.0010244381182723428 827698.6765468454 211.41659251180596 20626 5797 148821 LEND_20201015 672125901.2670392 58883.4141415344 0.5354398850908032 4.691071102262362e-05 18379942.115772735 1610.294969078264 71795 1421 14275 GVT_20210310 21272448.184932128 389.1980841581039 4.794716047745126 8.772353250747725e-05 920671.2802358945 16.8444880106 22591 5494 239345 STX_20200506 66552992.26614935 7420.775484635781 0.10556844321544467 1.1751142651436543e-05 164401.48329347064 18.300026252605544 35956 None 78814 MITH_20211204 59110931.10304164 1101.0062843172852 0.09545372161217829 1.780064015275198e-06 141136775.48501158 2631.9821902134277 36989 2931 265484 TVK_20210711 42116109.86410062 1249.2545671649177 0.19518300779383344 5.788385663911776e-06 25520674.427542515 756.8461397304796 50248 None 76424 MTL_20210704 118840169.96450822 3428.0594968472165 1.841236787732829 5.3099001288333055e-05 10433551.456807228 300.89077403730727 57292 4203 185263 KEEP_20211028 351214637.4443059 6001.648881685194 0.6361873358343193 1.087164897305717e-05 53363294.92100495 911.9122273411249 27727 3348 123068 DOCK_20190312 5073204.68823083 1310.3743120263273 0.009893864505731795 2.5590250676043533e-06 952400.6828293278 246.33622386397184 121 15357 178518 WAVES_20190405 278980585.6029932 56895.57394680264 2.7903136230758014 0.0005693191649916772 12078961.389372103 2464.5201726763817 138765 56733 40979 XLM_20190908 1170033553.4800808 111763.8429733372 0.059250876203028734 5.659682134534287e-06 170926289.231773 16326.990037623375 275741 103534 66255 XEM_20190224 427011253.24386626 103788.39072338579 0.04741378451685924 1.1522817644793684e-05 21853004.796415843 5310.864589819113 214927 18484 136957 ELF_20191026 37856056.498957634 4372.4655499223945 0.08202809709622115 9.47450734591493e-06 14800891.167225149 1709.5502279599048 84817 33540 963430 STEEM_20190923 53570506.02509339 5333.74381592173 0.16516534275049177 1.644467620088143e-05 301963.2755980038 30.06495314981513 11037 3777 219044 PERL_20211207 0.0 0.0 0.08252620447924987 1.634695413136426e-06 5693387.310009529 112.77574413617704 1485 724 946189 TWT_20210602 173284041.488374 4726.0984440863285 0.4991315065446184 1.3607019599437103e-05 18333712.913149193 499.8025323359822 827233 35253 2999 CKB_20210523 379627739.39633787 10100.764259210204 0.014361996081213994 3.824274607562839e-07 32103661.814692307 854.8478776449765 44188 3912 110155 AERGO_20210219 32139511.458029203 621.8087602775904 0.12229117138175287 2.3651245826228877e-06 26777135.67512308 517.8727223060323 12426 None 567735 CND_20200314 5867336.858588924 1065.7203776678373 0.003112014402379151 5.594070246856085e-07 59002.64955531274 10.606151633190228 34949 5973 433845 TNB_20190725 10750609.959029565 1093.6438909276328 0.0039005411791458834 3.9726326036303495e-07 460908.9281401868 46.942763866294314 15699 1480 578897 ATOM_20211221 6171230871.88472 130805.50496750823 21.633196782753387 0.0004588830389301857 293942372.24048537 6235.101099417548 275195 48848 30956 IOST_20201101 81260077.47959907 5889.131234722409 0.004844412557781406 3.5145983528951426e-07 23176989.860536624 1681.479630756606 None 52171 268325 ONT_20190804 637223243.6794205 59056.94133825702 0.978380073670262 9.065734893051508e-05 118116068.03123277 10944.713493231686 81460 16295 237451 QNT_20211021 3982756621.6170955 60086.587244778086 297.19649943091764 0.004485263811971888 57282109.671953134 864.4966346406707 55929 9377 87967 OST_20200531 5458433.417518357 563.7613326454981 0.007887905771358573 8.154248552398363e-07 999646.8907483473 103.34009365822185 17667 753 907300 IOTX_20201224 34859660.312606886 1490.8625743055827 0.006030254391005533 2.58637250319596e-07 2562787.37964907 109.91779750035919 30682 2009 501442 SNT_20190819 64256695.673771076 6227.954302652372 0.018123017019977417 1.7566437875160705e-06 16607866.076050477 1609.7818996822484 None 5724 264981 DOGE_20210324 6929411775.529846 127117.30404689068 0.053766364866525335 9.863225872028022e-07 995604160.683137 18263.96249835083 675922 1224998 11688 COTI_20210909 263751573.26763457 5693.071189809991 0.3035348586851199 6.553385120696529e-06 69682585.33199956 1504.4625182905838 136454 6265 135367 RUNE_20201031 84265456.41625753 6204.449514903675 0.3926819810905322 2.8994126814997824e-05 2991350.8646567157 220.8698399583921 17748 1886 222221 ETC_20200531 868281689.8919107 89816.61570501463 7.459055690466651 0.0007722027489151422 1454529782.0672092 150580.97736510838 231728 25510 383123 VET_20210902 9127359140.518393 187635.14239551857 0.13669258946321083 2.8094116467959546e-06 1205044324.119987 24767.001432796824 414760 200655 50573 SUSD_20210106 160879554.56157586 4727.801316146633 1.0009352414821582 2.937353666323431e-05 96233574.99387063 2824.079247255632 52280 2956 45504 AKRO_20210814 85885827.04754278 1800.553470936162 0.03170599362847688 6.645485681037947e-07 10778983.567763455 225.92441604283658 44152 None 238743 CAKE_20211225 3117158671.515781 61326.64226452281 12.356665338635027 0.00024299867120971673 119918104.40010715 2358.236565014316 None None 637 ZRX_20200410 121966995.19927274 16733.70711756174 0.1888872571816413 2.5905313090642683e-05 39233463.670008056 5380.750269588315 152376 15942 126435 THETA_20210429 11033027265.32909 201561.0338120645 11.05701917713359 0.0002019296458438979 395206023.86924857 7217.479788796088 148730 15321 21480 BAT_20190629 372667568.50565076 30084.11157123966 0.2924954774941222 2.362585003991769e-05 28833795.7443667 2329.0033069031438 103155 28218 47977 CVC_20210725 145042323.56651 4245.214618455062 0.21642559923264884 6.334503479067103e-06 18134725.13568908 530.7804616054808 103589 9839 183364 ZRX_20200730 270508848.0808578 24361.564054630515 0.3855536675886184 3.473721125377601e-05 65021505.549712196 5858.239628338573 155667 16123 62408 TCT_20210206 9131635.975863988 240.93386871327453 0.015872478558498684 4.17570952704133e-07 1689340.6194338151 44.44293745925786 None None 1849521 NAS_20210125 14087616.93707156 437.9832460908115 0.3096964834977832 9.59944942085827e-06 6308933.334621463 195.55367810851791 23383 4850 953730 KNC_20210814 173693346.2130661 3645.3965032508904 1.883033465388141 3.947221613301479e-05 32835260.30528882 688.2939232771449 177806 11285 105078 FIL_20210723 4119172731.384568 127238.91870763196 45.66049204923856 0.0014103839999159255 271478439.15765864 8385.561121356683 95984 None 29585 DCR_20190201 143341472.31894746 41841.333912500304 15.627379072816337 0.0045544701632447395 1545272.626375125 450.356904898192 39812 9327 257134 OG_20210112 0.0 0.0 2.9430632273505624 8.279421135575387e-05 1564344.345791334 44.00811209048437 None None 397078 XRP_20210806 34143817201.28548 833256.3009853944 0.734172412850372 1.7943451184519834e-05 2696635219.191347 65906.78370787323 1948321 324345 16462 LINK_20210613 9476107535.819405 264206.2823662234 21.791207076784584 0.000610803491995603 1269382863.3046458 35580.56618221358 369620 60342 24731 STORM_20190701 16976661.379989084 1561.428098931257 0.002719241187937592 2.507134923645193e-07 1242862.4776179208 114.59167126279922 26824 2577 3762880 NAV_20201130 8025254.790576648 442.4219905882809 0.1145364786726939 6.3036936648799726e-06 55023.32962840379 3.028294726873443 48263 13693 1269196 STORM_20190719 14434193.996268684 1344.9184218140663 0.002279436009191821 2.1363856245710546e-07 334534.41344794043 31.354006382828274 26764 2576 3721557 HC_20200914 55481147.26325915 5374.8252301787525 1.236460163456349 0.00011974856101736981 15457597.445653334 1497.0357360551593 12892 846 533192 ANKR_20210508 1158567395.153932 20218.549747015248 0.16536783733693378 2.8855059992550094e-06 157457949.25317797 2747.4862374520562 89701 None 5581 ALGO_20190819 176200642.48458117 17073.730524635066 0.6773174499424727 6.564655223359997e-05 63787424.68154347 6182.366195584393 11533 562 206614 RDN_20210127 13224564.179120809 405.8209845692199 0.19848094728004254 6.091698861751276e-06 319933.55651458236 9.81927438761215 26796 4382 1545077 UNFI_20210711 25668212.01102991 761.4607828366112 6.171591957587171 0.0001830834668715167 7670698.796362368 227.55524646095438 None None 196692 ADA_20190623 2933643538.64211 273262.32672359346 0.09439321272883437 8.79999143362109e-06 325185108.6496123 30316.01624449835 152793 73997 101159 RDN_20190904 8859421.89346389 833.6368191163143 0.17501421092310346 1.646815016245307e-05 265741.16472493915 25.00520033175071 25561 4390 1279478 LSK_20200531 171813856.28829426 17729.27834493582 1.2269070353168046 0.00012672119693122577 1889874.6810345233 195.19586630202534 175241 31235 201390 YOYO_20190228 4589718.742959216 1203.6922704234782 0.015738242281425483 4.123041107085771e-06 297594.37315458746 77.96257115713 6883 None 1519416 ARDR_20190421 81987376.54436351 15439.161815987489 0.08211111701907066 1.5459739603188734e-05 611482.1844465208 115.12881186766283 69096 6574 1105375 XVG_20190813 80526160.93495436 7074.954328958355 0.005107049260746571 4.487346327045433e-07 761522.7302598383 66.91175377645666 303497 52856 396565 XEM_20200229 452963813.1967045 51825.650968633716 0.0503251571077506 5.775810997908208e-06 41051664.61832252 4711.493607010112 212623 18042 232859 OAX_20210219 17016485.658107877 329.21844665718135 0.30257852539571634 5.852532008098986e-06 983646.1127778031 19.025872216626706 13233 None 1071767 AE_20200927 44732767.808195844 4166.018767355361 0.1217928110042939 1.1338963315598501e-05 6636865.568075818 617.8950513287465 25701 6355 351315 XEM_20210128 2098071169.5165732 69355.7227549206 0.23317372802859168 7.668392686857881e-06 171846142.39558655 5651.510196935514 223561 17973 70313 FET_20201031 31129839.22076163 2292.084135854989 0.04522364287116313 3.332213820642287e-06 3510347.590397 258.6529526005517 25708 688 254579 ADA_20210108 9271209679.66398 237157.5847225741 0.3005428519135833 7.613799153085784e-06 3771312674.734168 95540.50966804888 174675 97786 38332 PHB_20211120 25704674.823762786 442.2398904707499 0.693184373522781 1.1915717123044558e-05 1484867.0242743182 25.524602259384658 None 398 206337 ICX_20201015 222575060.48927027 19499.092155518585 0.39061814216609253 3.418071799653132e-05 12036231.787927357 1053.2205242763632 116533 28005 127682 REN_20210318 980346787.2761782 16666.072808889596 1.1104150966961426 1.8843185981674057e-05 134671207.94253635 2285.3026991331685 None 1111 63602 RLC_20190316 29583501.518274173 7538.619135008777 0.42283470949339397 0.00010774890287965929 1978826.9085194143 504.25479175343315 24340 3294 890313 TKO_20210828 232484447.2209717 4740.255109484106 3.1007618314685415 6.321048661628844e-05 163541361.75894046 3333.867488228585 314218 None 26828 RDN_20210131 14498569.915939486 423.823951603315 0.216709919238049 6.343137891675284e-06 1312861.8087573866 38.427698717909884 26831 4381 1282732 NULS_20190923 30324906.60091281 3017.618376765529 0.4135055624431979 4.1164691099533443e-05 5801151.287040252 577.5075898416154 21312 5293 318571 GAS_20220105 83412150.03788774 1803.3847406418317 5.978449469339698 0.00013004984083979512 8097595.492352782 176.14784742536804 433032 115800 79106 RLC_20210204 96230647.66724043 2568.513152060854 1.3637162580080306 3.6356537102909066e-05 8355948.290562181 222.76873379771976 34390 3951 456276 BNB_20200318 1573699552.2746863 289792.63460498105 10.334280501627655 0.0019175206530875355 232219642.13628066 43088.24013232289 1125148 60275 1672 BRD_20210723 8204791.352351263 253.69724437686418 0.09844242029860621 3.040830751845325e-06 1473752.0791019301 45.52336918510915 799 None None BAT_20191019 295996838.7675032 37192.23908633008 0.21884264318928745 2.7498113810350216e-05 33702348.53980408 4234.782592266681 106572 30859 23933 LRC_20211007 488987766.3330201 8809.128550846364 0.39257274218740423 7.076596197578468e-06 44193867.98319914 796.6476642866272 97245 12622 270613 DOGE_20210616 41819458597.71468 1036144.7318507435 0.32160076288906253 7.968179106098997e-06 1827179804.8160226 45271.33522019461 1844968 2072239 8922 DNT_20210603 146460587.61611515 3894.4135708517956 0.19496319719372662 5.184106750670724e-06 9112675.722955784 242.30769915568655 69071 10129 197329 OMG_20190622 289921553.4996479 28646.83351923783 2.06596897302745 0.00020411147292325843 138960873.68820223 13728.913152862224 289307 39828 None ALGO_20200713 222651385.1609079 23997.778471735623 0.27810071106722073 2.9931298495320534e-05 84999903.72576174 9148.331482958076 19755 932 300563 FIL_20211202 7086209312.433346 123977.87722883586 54.40627993686102 0.0009514476230995402 521177478.3060266 9114.26169042887 None None 35649 IRIS_20210617 87724330.46158035 2293.503253841052 0.08546704130405314 2.233109280956714e-06 9340519.044261103 244.0519696064784 24989 None 650450 BAL_20210814 291713458.69464284 6122.3486417966105 27.065455350194696 0.0005673470615144569 44411550.36958126 930.9565375297468 94003 None 286590 AE_20200308 61455082.68559205 6913.908219631441 0.17619653128624946 1.9808703380694103e-05 18372963.686552137 2065.5604581676453 25448 6342 460321 DOCK_20210107 10485938.884244723 285.43890224377583 0.018782888968728616 5.088967352884629e-07 5209016.147079489 141.13118145600535 43092 14869 239744 LOOM_20190811 21097541.546226643 1863.3832656548557 0.03500317126934549 3.0928478340816764e-06 2858257.2841286594 252.55296962785155 20824 None 419085 XVS_20210428 717361177.7460616 13021.639798481552 74.05211924942739 0.0013438225908043798 187424743.45150673 3401.1937386626178 65249 None 10756 QSP_20190221 0.0 0.0 0.016209307972494362 4.077352589226432e-06 73476.16297745635 18.482480798743993 56544 8580 788091 JST_20210127 42354965.189517535 1299.9107307052604 0.029515277419518083 9.061621375008962e-07 68645253.29354101 2107.5095642716547 32174 None 184317 RVN_20210220 1160285580.4921412 20775.2618715963 0.14475562312851037 2.5873494074111277e-06 1176239361.2091784 21023.999955403524 43077 18721 101877 GXS_20190626 142551933.8989888 12074.075220066283 2.380840529267004 0.00020137814490340866 53971728.01912164 4565.079572577766 None None 715062 VET_20200301 354385628.90766513 41324.16786396222 0.005627415146396544 6.579534089511236e-07 174200331.87563097 20367.379910007425 None 60514 236885 FTM_20190719 44039295.21304721 4109.579133604268 0.02119995414111959 1.9869510302555768e-06 13551618.913474334 1270.1161041444018 17401 1996 417127 NULS_20200229 20857224.08363608 2387.5118512076606 0.25058444523918366 2.8684226162494675e-05 4479291.932064908 512.741414194916 22689 5197 626543 DCR_20190909 257653943.25808486 24790.7323374169 24.877148949681185 0.0023936087805644175 13223333.126982037 1272.311644115399 40580 9596 193164 CMT_20200305 10418316.47172884 1190.0738263178064 0.013016844791170807 1.486372704792095e-06 9764498.81508748 1114.992515280298 287001 1640 953076 NEO_20210428 6638628510.576332 120505.3073714786 93.89690804116302 0.0017039456468137739 1514112599.280304 27476.576451255918 383661 109567 88657 SRM_20201015 68431220.0294196 5995.892703592575 1.3689943303099779 0.00011993150731113673 29486808.99588104 2583.2082503006877 26365 None 73980 OGN_20210805 262921179.4467196 6610.22819745976 0.8300815692952583 2.087030487402049e-05 35550061.29888826 893.8165176078112 117549 6029 91977 DLT_20211120 573382.2338331287 9.863752494826807 0.006995760115616996 1.2027529842707907e-07 19978.036264481932 0.3434743664714196 15615 2608 None ZIL_20211021 1220830053.9137166 18418.276212858207 0.09620713720640757 1.4568310742445014e-06 60936342.0739375 922.7377433926208 337246 38187 64025 STORJ_20200301 19802921.412359715 2311.186605484743 0.13712643249147025 1.6032725748489017e-05 1758837.2431643081 205.64200966604974 82428 7988 120208 BTG_20200905 151728390.04063064 14462.335849704568 8.669183759574274 0.0008268133736291015 8772937.786074417 836.7087938967185 77339 None 234816 YFII_20201030 50599272.34968978 3758.706183223587 1272.6014647505067 0.094640001511093 92085105.98145689 6848.125521325563 11402 None 83276 BNT_20190702 48305377.25258695 4550.686546159749 0.7263987025880728 6.849920821025818e-05 3433392.0099569955 323.76797111496205 793 5128 145805 REQ_20200713 32972929.922580402 3553.883427557836 0.042812293309105555 4.6118754527567224e-06 4828239.745405053 520.1132347918865 39187 27889 569797 COTI_20200721 19890249.613361675 2170.9691708063738 0.03933898711609351 4.294066162032949e-06 14458046.44491342 1578.1750512535468 None 1052 273018 VET_20210711 4988622631.5281 147935.90261990708 0.07642780969166753 2.2672704968034747e-06 462949285.98049957 13733.629968650746 390227 192541 29344 XVS_20210117 15288653.576160472 421.53460158234435 4.120544274943269 0.00011384018834264727 5355483.529286932 147.95842805216878 15564 None 82683 TROY_20200217 6748097.049628112 676.9333232353753 0.005789471252451022 5.819478648186187e-07 2923955.090167412 293.9110235374387 None None 291470 ARPA_20200106 0.0 0.0 0.010108108105656391 1.3762146915182815e-06 3528833.92307925 480.4492629191558 12527 None 827154 KMD_20200412 46999489.53423754 6830.317456776469 0.39429461532204374 5.728933548443016e-05 1771591.3111273192 257.4047045546866 99924 8389 155354 SUSHI_20210401 2053765093.2303607 34916.2517198834 14.643886347020615 0.00024920831562706366 599602369.1636987 10203.978160188588 64850 None None REP_20190531 213816033.69075927 25730.074797695233 19.423663265724944 0.002338328665160331 26678780.93843448 3211.740101052769 125549 9975 263382 TNT_20190608 14076581.52120975 1750.5507084558653 0.032504474007706126 4.048722265719258e-06 3098265.245363691 385.91658123845326 17373 2517 874753 SKL_20210428 390664757.1082644 7091.303749339751 0.6086278555571099 1.1044759690612007e-05 100330871.13774273 1820.7026693705911 21959 1366 134291 POA_20210203 9409871.300053876 264.2568697222629 0.03196170941659656 8.999566440025801e-07 2171160.688232305 61.13410459696068 18253 None 427710 LTC_20210620 10232048457.27845 287021.1438486408 153.16409426458608 0.004301925359405969 2326430136.849513 65342.525940253974 186897 337021 76492 SC_20210221 618084659.3601431 10994.542323293252 0.013139542263621202 2.3372729178497276e-07 81913519.42877324 1457.0846284097663 112884 33850 91836 HBAR_20210106 257377092.6118197 7563.594768224074 0.03793118844625475 1.1115937374651379e-06 62093690.62782882 1819.6887697255218 1038 6880 206193 DEGO_20211225 36617270.27219262 720.1594483792919 6.753014826853451 0.00013282783122835453 9668659.789744047 190.1768534032526 None None 201352 ENJ_20210427 2364501955.5315623 43890.436369528055 2.5288813727492836 4.69306206081772e-05 450063911.82792354 8352.222023157128 163538 29963 22644 SNT_20191030 46695681.10460878 4962.963299164039 0.01310394094054751 1.3927279016802176e-06 17258302.439173657 1834.2664585962816 110892 5679 373858 WING_20210610 38415905.98079484 1023.4437500731094 23.188709737913214 0.0006191307973698371 17097797.175570935 456.5054683172558 10750 None 358346 RCN_20210624 22031462.489110213 653.5194432362919 0.042815444205812896 1.2693129898805878e-06 1524913.338487725 45.20780631587737 19831 570 2606607 DOCK_20210828 67633355.5152306 1378.8278945672291 0.09776820646949472 1.9930508186149994e-06 11472323.718680244 233.86870849539582 53214 15173 293388 POA_20210806 9048172.959544023 220.61838207897497 0.03113786888124997 7.600000015026763e-07 283573.15245239594 6.921334183525796 19960 None 221231 PHA_20210909 158689042.35602447 3425.29905692313 0.8717207353754556 1.88289117883282e-05 66231931.71225021 1430.5902672412778 None None 138672 GTO_20190603 27130116.846908946 3102.0687055726157 0.04095964009762552 4.68376645976453e-06 16862167.93846177 1928.2019187874291 17377 None 1170930 BCH_20210513 24463063570.167778 474579.44242992206 1245.3016203567483 0.024825453534297846 10513960301.532497 209598.88645481176 None 533082 307702 C98_20210826 960685048.6608628 19599.351159365877 5.222274230087133 0.00010657352528527373 2421925409.9798512 49425.42607825251 169857 None 45586 LSK_20190704 232998977.9835434 19416.207645056682 1.7474460231883457 0.0001456176981048811 5285298.824120299 440.4330882624802 182849 30480 193702 CVC_20190703 23518067.694389585 2185.6133911816096 0.06872727777310976 6.3690120455995374e-06 3688676.157809498 341.83258296600934 None 8161 447156 KMD_20210718 80847637.43746349 2557.963370120906 0.6372271785227539 2.0160619555047985e-05 2836743.760719999 89.7490152061834 114050 9425 217175 TVK_20210825 134594096.90554994 2799.9912523594935 0.3094086729414657 6.4429049878330825e-06 39337997.672395386 819.1463380950236 None None 114085 NPXS_20190426 122643297.4343239 23614.555134624963 0.0006265782612043739 1.204234329145638e-07 2967033.2857555137 570.2405524821019 59570 4309 161982 ANT_20210821 186712366.41922626 3800.0586523589486 5.096060602434315 0.00010369660780489575 23292252.142610554 473.95973552026874 86624 3079 132148 XLM_20210408 10920607979.485424 193879.22942114554 0.47735205571342826 8.490194706542444e-06 2171208617.672125 38617.16670520803 476792 166981 26281 EVX_20200322 3304888.1059017456 536.3648739443173 0.1495986077516694 2.427700681566099e-05 2074198.5783814925 336.6029522680495 16806 2866 688824 QSP_20211221 29262367.355866406 620.2119665451081 0.04095295495259077 8.686934534242241e-07 350605.399600363 7.437036368208437 72682 8658 122145 XMR_20191108 1092653893.4476821 118521.92012326127 63.17664432295811 0.006852745736835576 264132549.3819157 28650.35364150668 320218 162526 86841 POE_20190618 14707290.1991585 1579.1466185033878 0.005842778069424679 6.273489613692159e-07 4562224.433138003 489.85375204302574 None 10854 945513 WING_20210325 55244843.223316975 1045.469057409595 37.54025139852376 0.0007125349543555411 9354134.418154381 177.54669967227045 None None 324076 BNB_20201129 4300575783.620462 242956.19396348897 29.11177305406224 0.001643404993112684 438446980.13024384 24751.015852697295 1341392 78098 888 ETC_20190930 518335855.4408022 64319.50899710817 4.54593670175626 0.0005645801145694324 505217805.7977906 62745.24820586191 230133 25008 331618 DOT_20210723 13425897698.422424 414718.3954707208 13.262281874766463 0.000409664395106321 855200965.5527009 26416.674713728942 505995 27662 21430 OMG_20200312 105567209.80857919 13309.937617802878 0.7486723284710263 9.436225977732316e-05 140942156.5941494 17764.274019949953 None 42891 381601 NXS_20190608 22144506.02830974 2758.2958148750904 0.37088075816835553 4.619650769205077e-05 569537.4096335176 70.94096618811959 21304 3517 793300 FET_20210806 283593717.69657624 6921.74255162145 0.415394547997382 1.0152399714078861e-05 31524338.64695767 770.4667483212017 70221 3244 157156 ANT_20210509 361503860.6063843 6154.043076054172 10.302920709197467 0.00017539126068312887 88259381.32963465 1502.4792090944295 None 2974 103669 AKRO_20210620 57691103.73477588 1618.317293961952 0.02129808032480659 5.981999390645396e-07 10397360.700540947 292.0310395416877 None None 201373 NKN_20210131 19287462.2356069 563.7555747378551 0.029638566550908907 8.675261160403839e-07 3755550.60655939 109.92563441640749 None 1026 338143 ICP_20210805 5427215767.588934 136157.06039991352 39.391565642823984 0.0009904565305427324 167519712.9022444 4212.094414909289 247690 21945 21737 XRP_20210115 13478198579.22908 343574.972347224 0.29597695623648135 7.544797174236398e-06 3830269072.4567375 97638.01764130278 1060317 230819 14934 WABI_20210127 5239397.67873418 160.76141358390356 0.0885525620351924 2.7186930264774333e-06 526447.8056872537 16.162716755247338 40792 7426 977058 RDN_20200625 15072307.837673265 1620.0105873949997 0.22526431204054356 2.422646626381571e-05 2137554.1687180735 229.8872088811236 25412 4317 1567773 QLC_20191127 3423818.8493789015 477.66959877417816 0.014258714581066432 1.990290007452799e-06 111731.74312771604 15.595976102759195 24567 5706 940522 GTO_20190706 19160997.01484063 1743.3668842265263 0.02891662886290993 2.6309848659764765e-06 6814693.501092916 620.0361581788982 17448 None 1222950 LSK_20210909 519418762.807604 11207.150018862678 3.569002406364619 7.708940346913606e-05 19888263.08565065 429.5806398381605 197643 32822 254494 BAT_20210106 342801219.6935223 10091.1946002972 0.23220798385492783 6.8122531502537775e-06 171848480.40188548 5041.494838159611 125673 49137 23893 DIA_20211007 85496488.59324872 1540.221679392635 1.758779040467872 3.170410915644817e-05 23502291.031333294 423.65708434061526 36283 415 487561 LEND_20200323 24859857.50224037 4265.09987261324 0.021207375142087433 3.637073482253142e-06 1378977.6339765151 236.49522638012314 None 5740 109064 KMD_20190421 124489628.58802249 23444.493441903585 1.1034729115363997 0.0002077599780741399 1114459.052896029 209.82842983596703 96805 8354 335722 FLM_20210212 0.0 0.0 0.5085615816616232 1.0651357988334818e-05 60684386.79259942 1270.9790738000013 14320 None 184710 ETC_20210511 13557595966.504238 242822.00745220928 106.03421122261943 0.0018964555095526828 15945567672.11829 285191.5369205199 390144 52422 131671 POE_20200610 4674956.981809771 478.263097560245 0.0018554022720450275 1.9e-07 138663.63528041187 14.199665 None 10288 691823 THETA_20201015 735111438.6320897 64400.77183379658 0.735749979772041 6.438119447060532e-05 37378079.145170875 3270.7379524883127 74650 4460 67184 BNT_20201030 41235011.242016576 3061.2241439258146 0.6257483830184976 4.650062684025304e-05 46940738.12865207 3488.261107119735 85975 5230 72673 LINK_20190908 643736163.6400805 61484.72208732798 1.766384457895482 0.00016872842201455285 83910018.94095717 8015.245505492714 32370 10550 94033 ONT_20201201 488279911.76461154 24835.636879367994 0.5957603625954141 3.0347474556536526e-05 185184976.2842848 9433.149146675729 93841 16701 315974 WAVES_20210527 1734356840.375411 44266.97627305067 17.428082522474643 0.000444554520342972 429855950.0087929 10964.74069515696 189097 58825 102024 ARDR_20200320 35180134.581600234 5684.391808780639 0.03511825553735165 5.688988948453667e-06 2743173.2202230245 444.3809037423423 64487 6380 1001396 NEBL_20190601 20549218.82775438 2395.5957837566893 1.352380451470582 0.00015765152715917403 310946.48672507686 36.248075342765006 40293 6155 715559 SKL_20210105 51777276.69143853 1654.9507611367628 0.09140964884474798 2.921715424169345e-06 16418579.259023674 524.7850404229241 10354 86 244845 NBS_20210506 0.0 0.0 0.03537985546977783 6.171497242528903e-07 7085948.209520102 123.60398100866108 None None 486694 ADX_20210703 42103640.118062615 1245.9498256225852 0.34433593275855806 1.0170011666106897e-05 5335319.7892462285 157.57944302923337 59075 3874 14172 GVT_20190329 19047662.101637054 4731.059584086989 4.293354726548302 0.001066359974811364 1876076.7401735492 465.9696840386721 21152 5810 155921 FET_20201115 30514371.90412074 1895.7943623609626 0.04442830634498358 2.761913369482383e-06 4807291.478496957 298.84827259364175 25827 693 257164 NANO_20210428 1111816463.2488554 20181.846962971886 8.35713480158036 0.00015165678787576364 68346773.66447724 1240.2877782546186 118389 86433 65732 POLY_20210106 73967252.97042802 2177.407491260758 0.09970335038904783 2.925903591688251e-06 4076610.1967618256 119.63257373072801 35802 5025 310362 GRS_20210408 69530788.4715299 1234.4162262053924 0.9092658790490458 1.6181116113630456e-05 6839500.614373571 121.71440296007856 39943 106771 8463498 1INCH_20211028 1007477416.385785 17213.96631931256 5.615125067266657 9.59325719207175e-05 2338983773.024619 39960.77137001366 293724 None 3761 POND_20210702 48752909.34304956 1450.949470327478 0.06294844393106734 1.8714959803318692e-06 5290776.637209589 157.29804568663337 19536 593 110694 ANKR_20210826 798117680.9243937 16282.818831328135 0.10384816614971765 2.1191704989149835e-06 64602557.97399061 1318.3076802295375 120396 None 5363 THETA_20190507 67015526.631541215 11714.686007980512 0.09019761762839279 1.5767681040287573e-05 5569747.6146288505 973.6621229198106 None 3960 252883 UMA_20210310 1519616063.832712 27791.8058855865 27.19304412848614 0.000496645941357642 152126511.90620822 2778.3948848877703 29487 None 124201 ENG_20200903 63410448.39246467 5558.269208489096 0.7669123599936715 6.719366476302886e-05 2204862.5007278225 193.18086322627704 973 3591 461818 ONG_20210325 0.0 0.0 0.737397636179959 1.39962192969766e-05 18041277.82978767 342.4335372316902 None 17725 190882 BRD_20190816 16420042.003789814 1584.925133546077 0.2727207193663058 2.639526843065895e-05 234024.19777008193 22.65002649510503 168 None None GNO_20220115 742944866.3094089 17239.733237909164 399.02307165361333 0.009251775713072093 889777.2483663012 20.63043498303168 110728 2459 125081 RLC_20191011 20466744.796949483 2391.3623322784483 0.29224202164882895 3.4145955764498286e-05 488834.51813378115 57.116090759916254 24861 3304 1064127 WTC_20210724 15191818.493038544 454.5058084171841 0.5208423227107317 1.5576655436799403e-05 11416430.57215914 341.4273333533029 65340 19886 895790 GO_20190523 17068378.924341444 2225.81081200924 0.023822036451965817 3.1065250270045533e-06 3019568.6698609223 393.7684195302173 9609 662 859929 ENJ_20200208 117892636.7844007 12036.026416046807 0.13139090019407415 1.3402275476344677e-05 15937816.566806106 1625.706253661995 51071 14342 23594 BEL_20210813 90440970.6046932 2034.3094444874175 1.8864551436955026 4.243263046311975e-05 10790617.940409364 242.71677228282272 33150 None 462798 WAN_20210828 151934925.81476495 3097.6847798830195 0.8601582554437027 1.7534730124004304e-05 4569031.265044561 93.14184878614816 123753 16778 387619 COMP_20201226 14890.229378019156 0.613401802397888 1.9211838931305367e-07 7.91651575774791e-12 28.962066209825572 0.0011934237755523588 1956 None 4212866 BLZ_20210711 42630133.57285265 1264.2185860687152 0.14398057217556193 4.269818086919336e-06 8392611.473484445 248.88721946649508 64509 None 284185 IOTX_20190909 16671820.227644587 1604.637666047781 0.0040486693490543605 3.8955149254041576e-07 1285683.4748230986 123.70482086141865 22551 1764 585663 NAV_20190426 11865383.508020371 2286.2437466601314 0.1829258576383685 3.522175969757366e-05 235879.69722380716 45.41784371227545 48751 11325 1024643 RIF_20210324 222674428.754028 4084.6861223608403 0.3133280171599758 5.745717440189693e-06 2639168.764451599 48.39630408719945 42835 3158 671314 LEND_20190805 4976684.178771507 454.4535649226472 0.004400051277492607 4.0175410697699334e-07 1300021.7702062267 118.70068151512132 41835 5845 699914 PSG_20210703 27632491.55239255 817.0890168400863 13.216288434755183 0.0003903449938764873 14231187.948369093 420.32019806354765 9205814 None 41128 KNC_20190812 27967118.92024135 2423.3847936614193 0.16694153949209872 1.4460019460637629e-05 6967862.328658818 603.5371734200346 97672 6695 212094 ELF_20210819 127304589.58010569 2824.2716895349986 0.27599081011458687 6.1281084544789245e-06 16474190.467078567 365.79343290483166 49771 33385 746184 EVX_20190314 5580175.8445941955 1443.249412466639 0.2893231430478989 7.484145750764135e-05 354894.9199357466 91.80341672719793 14139 2307 1155808 GLM_20210806 440316558.3638519 10741.87591253645 0.4384983611473872 1.0717065637473991e-05 184100612.11766854 4499.488524430371 158869 21063 227363 POA_20210809 9650935.573384773 217.79286470329467 0.032991913853252626 7.5e-07 269994.5736121799 6.13774427 19959 None 221231 FIL_20210809 6109571254.836809 138886.77105422007 64.3023132389341 0.0014618031607677446 649971915.8693405 14776.000320510682 None None 38800 KEEP_20210718 114489126.62691683 3622.426731010102 0.26131062541657013 8.283393386760689e-06 6432736.627174347 203.9139738438296 None 2805 132886 TNB_20210108 7478530.374388722 191.0586667856952 0.0021842259738942653 5.5334065556035634e-08 539779.8150639756 13.674506223054689 15755 1412 3447610 POLY_20190321 50057623.63756602 12386.880452764524 0.10376354630487204 2.5674863755368342e-05 5379697.974209582 1331.1323432126833 33414 5001 275079 APPC_20190405 9343604.952775108 1906.4141484792208 0.08943922369023762 1.8272374732452832e-05 547095.9864050102 111.77135115613065 25696 3405 1339078 JUV_20210219 0.0 0.0 11.698386808655798 0.00022624807584688419 5066479.481156443 97.98626534397171 2305373 None 93564 NAV_20191118 5961157.911210621 700.7526201592952 0.08938873455428843 1.0504467716674132e-05 100685.16175065731 11.831961112678625 50502 14124 527775 ARPA_20201031 11773044.165165778 866.8470007291096 0.013194721994019895 9.72226742398097e-07 3874738.680824071 285.5023824684461 21013 None 548754 AST_20190922 4770413.368847249 477.68253250573093 0.02769208284819698 2.772988932700122e-06 1704338.737468151 170.66655774789422 32008 3565 234516 WAVES_20200914 304429949.7950659 29484.9053721375 3.072793249217093 0.0002975935503405528 108787604.26467583 10535.850205482107 144911 57027 140835 TORN_20210718 28899517.516295858 914.378402985499 30.86916418032003 0.0009775218803994494 2266903.2080153604 71.78514693946423 21581 None 132811 ARPA_20200905 0.0 0.0 0.04089765878568896 3.899835095097855e-06 21768004.954051405 2075.7087860437427 20704 None 330815 FET_20200511 6147542.08993371 702.303446553418 0.018039122478638047 2.0602418016223995e-06 1927930.1632224591 220.1882224361665 16812 383 978980 NPXS_20190702 218185567.9975305 20554.382480081287 0.000868606756620898 8.190939061788586e-08 21859538.722479958 2061.3488005917893 62846 4603 223593 ANT_20210813 166773327.14947692 3751.1411027851477 4.612659306794297 0.00010374302229056256 13771500.355550671 309.7339242583902 86288 3070 129869 FIO_20210108 14070593.680326402 358.98976546478855 0.06644851662181436 1.6838431195800133e-06 1546394.2075595872 39.18650677151112 55309 161 541516 JST_20201231 32241630.8480832 1116.6008039858684 0.022577942423943058 7.829176459030163e-07 33118965.12698645 1148.440443557299 None None 218124 GXS_20200320 19871331.43104928 3211.3192520296925 0.3062830663670741 4.9616387630858585e-05 8792542.874778 1424.3497713095478 None None 697464 RVN_20190730 175045900.0713209 18442.37109592829 0.04315084290814446 4.536489448374943e-06 19500199.404924 2050.0746423414207 27151 6850 272876 AMB_20191026 3955985.8270333083 458.4502847115136 0.027485702987885927 3.1800197137838645e-06 970999.9182619523 112.34200134944516 19179 5590 589761 NEBL_20200707 9906915.794221405 1060.3385690262605 0.6003945401854668 6.426031075814452e-05 4324695.630901692 462.87277211129384 38908 5954 736542 YOYO_20200701 1596917.5909570148 174.70422185799686 0.00913078371127883 9.98915956756831e-07 554533.4810058213 60.666461965184794 7495 None 1813147 RDN_20190626 21701824.651192233 1838.5376356287406 0.42981466909446264 3.635492577117853e-05 1777378.9019931867 150.33567417639716 25669 4427 754056 IOTX_20200719 27219003.14904834 2968.1515240593 0.006287852273353914 6.859376560117619e-07 2694351.366709801 293.92501296268665 24963 1879 529833 FARM_20211007 112391359.3467448 2024.8651046329676 182.84288706992982 0.003296004977828573 43608644.58524681 786.1082918383263 56480 None 84782 TROY_20210826 18996817.163777612 387.56406435125456 0.009988762485600515 2.0380757949061316e-07 7869014.145189456 160.55689863688278 123423 None 544029 GTO_20190930 8497117.943270097 1054.1875171060235 0.012777028947968129 1.5868361001405722e-06 3442407.0188288274 427.5278510442407 None None 702071 YOYO_20200320 1228181.907362478 198.58854242019788 0.007680346403618901 1.2426091014737509e-06 686451.0542302422 111.06143953361659 7498 None 2721333 VET_20190509 347621333.43725127 58356.57025355806 0.006268987158918195 1.0522651884927233e-06 10856302.46103707 1822.2575459013249 108236 55448 330753 QTUM_20210418 1802811759.0482857 29917.87788016562 17.363978236012397 0.0002888691650719775 1271287184.4440267 21149.281722515338 229411 16098 88405 CMT_20200430 6940449.577629763 794.9643792252762 0.008708448071963908 9.932818145156874e-07 7357033.776998141 839.1400854758638 285014 1632 944279 ADA_20190426 2156944993.2995615 415529.9243655495 0.06932955522517145 1.3349173078133835e-05 170331899.39578703 32796.83532335856 151071 72782 113517 LRC_20190316 50992032.803016566 12993.538914838686 0.06461720034127595 1.6465223438943917e-05 2418097.8024879443 616.159790348433 28697 2467 678788 QTUM_20190804 291401222.709877 27006.649688584414 3.0382388350487566 0.0002815252330006941 254952715.09033787 23624.088301410684 178876 15352 320250 FIL_20210324 4954574345.324013 90831.5338679173 82.97062583001816 0.001519771590393402 1144772562.4794576 20968.78022208061 60295 None 50796 VITE_20210523 62624153.48677342 1666.0088072224494 0.10157498526388804 2.7030008999796815e-06 7542789.926828219 200.72036345963176 None 2296 163733 POWR_20191026 19129654.879293125 2214.7958426463065 0.04454668433639489 5.154021548673315e-06 44045208.66642755 5096.001149452819 83433 12957 308100 LOOM_20191220 13812474.8831539 1934.2692957267436 0.016536399101968614 2.3141934544340074e-06 2667071.30727039 373.2444363331261 21198 None 262438 DNT_20210206 121831123.23820662 3192.5083270068762 0.16160426156509236 4.233696315863149e-06 72336654.02159916 1895.0702330938034 None 7260 232543 MANA_20210111 142431899.4031328 3694.7552584204145 0.1070289202200817 2.7827298265258754e-06 62246423.00267443 1618.394145506743 56231 7853 76796 ONG_20201030 0.0 0.0 0.1084718343081443 8.066763120413671e-06 3503845.928975258 260.57174472753445 93528 16684 214666 MATIC_20190914 28393615.60136675 2741.9665626149977 0.012930043850706122 1.2489962008903606e-06 3946907.8303734763 381.25724416098353 23171 1145 217453 DCR_20200109 184953853.60808107 22983.973972874355 16.900082875738985 0.002102891266546884 21386150.416403364 2661.0963547565525 40884 9710 113234 DOGE_20210804 25785827887.90975 671116.7275538519 0.19650434586001866 5.135642025261032e-06 1036830115.3912492 27097.56005830373 2005784 2126042 15471 ICP_20211007 8835079765.678194 159174.5559280731 52.83751808663083 0.0009524719578675011 455114863.72407484 8204.097410388255 268415 23613 23600 DEGO_20210523 34023262.37510671 905.2251992767831 6.269915907374 0.0001669536745486836 10858712.79204539 289.14295315645836 None None 65351 SOL_20210314 4102822643.225109 66802.20638510653 15.318478663846857 0.00024970750543321183 187955914.4581912 3063.8814441503264 None 5482 46450 BNB_20210418 80146564558.26534 1329512.9593938298 516.786555529572 0.008597321350394259 6111930356.074312 101678.78552597838 2759142 249574 141 QLC_20190605 9304717.811483774 1214.4797785816536 0.03880721093221279 5.060330138255612e-06 1509803.722228253 196.873341188771 25015 5796 940522 WRX_20211120 587910716.4380223 10113.68238118212 1.2998915529825488 2.2348514224894403e-05 13699251.326986177 235.52573478078773 425836 None 671 EZ_20210513 0.0 0.0 9.246547088506235 0.0001843326318266961 6971908.462558528 138.9870427800787 31977 None 98658 TCT_20200322 2848727.398392194 462.3325398556709 0.004922904582782041 7.990202269819578e-07 482473.71437360137 78.30869972981787 28 None 409993 BNT_20190826 26561490.38074252 2631.0553338589575 0.38081799241704045 3.7702511852376834e-05 4793466.900592495 474.57248930520234 None 5126 148794 ZEC_20200324 306199892.7551799 47254.159809438745 32.15619100807041 0.004962489617764542 306173277.63102406 47250.0524424541 72907 15641 148838 POLS_20210617 91165340.02482511 2383.4665124749417 1.302785541378031 3.403958343658647e-05 8121045.77802752 212.189195054393 377403 None 13861 SXP_20210204 113158856.63199736 3017.3850121805576 1.5237581929154669 4.062275334868248e-05 186269165.47953588 4965.8577068992245 97044 None 145148 PERL_20200418 4418652.83908092 622.9573522028934 0.01252138471544092 1.7786237750208355e-06 1552165.413783993 220.48027198755778 11625 480 526137 NULS_20191102 31297632.785647843 3389.7939700377847 0.41876920971057535 4.535441379046768e-05 7104810.33660679 769.4799436949121 21225 5270 483582 BAL_20200905 167577700.40321234 15975.591179279576 22.254575737790812 0.002122464518591312 68791872.67993587 6560.821947401861 19592 None 61486 ROSE_20210724 95151073.9696788 2846.1376046197183 0.06349086165558972 1.8981430224324172e-06 2787003.545408326 83.32114567774939 25050 1666 227884 DLT_20210616 8103193.8368439395 200.64787223347125 0.09878693261259257 2.446634151908641e-06 909369.1337008941 22.522144582922 15101 2601 None XEM_20190605 733794274.9278412 95822.49722981577 0.08180913042893044 1.0670832795066904e-05 76067868.22562888 9921.967128327053 217245 18461 168914 DOGE_20200316 210527259.01455036 38967.89569441767 0.0016963031185443617 3.140945766844741e-07 92079970.28261894 17049.912230224898 138996 150340 105974 IOTX_20210202 69293723.25354609 2075.3591183033263 0.01139522565919611 3.4119010782213814e-07 4960429.56234521 148.5226837833486 31798 2049 512659 ALGO_20201031 204262850.8933214 15039.83482718548 0.2543733507861961 1.874299241013467e-05 89569738.40826869 6599.767318295004 29451 1418 281042 BNT_20190528 49812091.173037 5649.087060037363 0.7642094869890821 8.683748420491996e-05 3753724.314059089 426.5374630665728 806 5137 148813 FET_20190401 0 0 0.20019114799270415 4.878510175721287e-05 26834933.57199847 6539.4747873952165 7561 166 174439 MTL_20210110 29451625.628124636 727.8176515445222 0.4560432658267016 1.1284008207698046e-05 8542687.81689865 211.37415386880696 None 3362 362516 DOCK_20190131 4559885.565036375 1318.0278216433026 0.008869698600567499 2.5647007825176585e-06 306227.549445914 88.54664302146078 106 15393 157749 NAV_20190122 10302942.045412172 2917.1948055869857 0.16065556009472273 4.549521726432868e-05 1162841.512071452 329.29907439542757 48115 11491 725483 REP_20190510 211452654.27171293 34228.242535753365 19.21001007853722 0.0031113703716785603 38114292.63943884 6173.223250326701 125283 9942 267119 FORTH_20211207 97984728.6723687 1941.6741035864027 11.308765912491774 0.0002240789862237838 19919692.072807316 394.7012821827081 35794 None 105755 MTL_20200502 20130210.764375202 2271.7451683392105 0.31113444398734774 3.522993135187922e-05 5962159.590135485 675.098746309049 35451 None 463279 LOOM_20191113 13302678.534737745 1512.0709769617235 0.022098272892990385 2.510590181462904e-06 2027578.9438339502 230.35373909900133 21118 None 337394 XEM_20200901 1269114772.460437 108581.52838423848 0.14083193451624246 1.2064947270409333e-05 172377223.2568638 14767.404256410184 210272 17838 239986 KEY_20190821 4175519.7375701247 388.3967803115741 0.0015962799211289196 1.4857114476070984e-07 110735.96304135532 10.306568777485174 23841 2830 821396 NEBL_20190914 7264963.440247806 701.8178796340098 0.4673999033024658 4.515227251655499e-05 110657.25448082718 10.68983214362964 40453 6113 464857 ANT_20210318 239291110.24454162 4066.0149835894067 6.884353039710875 0.00011679821798384589 69098059.8398006 1172.3004629304714 79998 2834 129265 POWR_20201101 33212623.24002345 2406.9325335547096 0.07772299322996325 5.639975772825924e-06 724339.1207031014 52.56173137836133 81286 12614 252653 ALPHA_20210617 168589720.39422452 4407.635666715832 0.5897788284465566 1.5419817043179802e-05 20319598.076596312 531.2575996621343 67065 None 42873 DEGO_20211125 68094127.52606897 1190.3019503922965 12.544396983562965 0.0002193323313149096 43440152.323271535 759.528727783594 156779 None 189343 BCPT_20190205 2460170.8197029834 710.1509778884149 0.02932493337803776 8.46491225249162e-06 185691.02301589728 53.60142495949129 9917 1325 1839639 ARK_20200721 68645332.13402405 7492.570069348506 0.4520104378432999 4.933354534111484e-05 12166517.739127763 1327.8840581438456 62356 21856 108800 RDN_20201208 12731397.445829898 662.84993750147 0.19115767169013195 9.962097215617526e-06 722906.5850759238 37.673955822240764 None 4384 1987033 HC_20190810 97376448.02755885 8209.098260694409 2.2054013270308657 0.00018591673841700053 63983270.96968793 5393.830549630866 12919 848 463002 YOYO_20190818 2166711.182272741 211.97411971688166 0.012388723928005229 1.2120161055797838e-06 446465.575591353 43.678709070305125 7568 None 968977 ATOM_20200312 561007784.8131261 70729.63651114985 2.9935198148139266 0.0003771038620907431 121566117.56736907 15314.096872574652 None 8253 85359 BRD_20200701 7309866.953040954 799.706024373603 0.11223280077713312 1.2278369427292764e-05 718987.8014313914 78.6579126473185 206 None None IOST_20191022 52917096.78098947 6444.207535156618 0.004404823621125481 5.363955743698115e-07 17408463.054733977 2119.9083873314676 193806 50865 92692 AGIX_20210826 191481261.0570525 5830.0 0.3053371009802588 6.23081107058791e-06 1591258.354726185 32.47175053723474 None None 189505 XVG_20200315 33057152.137281656 6395.383237931983 0.002037110399901617 3.940147143284717e-07 756985.119727467 146.41488046731615 296425 51923 314536 ARDR_20210506 395357161.7575911 6906.081156951679 0.38592307619216987 6.7318624367551845e-06 16001621.031847918 279.1248261553796 71820 6807 None RCN_20190826 8372473.504017676 829.3275389195509 0.01650799340049611 1.6352035772500801e-06 2000084.1280182481 198.11885318770828 None 1110 1641051 SC_20190714 127086652.8901341 11141.744710608793 0.0030666793763721744 2.6885717692451916e-07 2604260.1546814195 228.3166732587973 109680 30821 228253 ARK_20210201 64553482.26398334 1953.0326199189476 0.415517652448164 1.2567215438930002e-05 3953023.5571341524 119.55809430711905 63474 21562 89752 ENJ_20210111 172642047.2589317 4478.4217201864685 0.18733952272050347 4.8730983186582945e-06 35105557.99473123 913.1700196274862 71669 16114 75025 ADA_20210702 43098347951.71951 1282662.4292823218 1.337624786685416 3.9765642017564955e-05 3076399891.306128 91456.90031933156 520824 534487 6662 ICP_20210710 5652063327.849976 166319.00264029368 41.22444038981458 0.001213019907523976 195050852.46441472 5739.327563493487 238694 21452 23001 PERL_20191102 7619431.862335943 825.2478504989115 0.02917954536282694 3.161093316295753e-06 3589034.348088737 388.80909036205946 None 374 281717 ZEN_20201031 55647673.5948108 4096.803717969625 5.412713452754432 0.0003988605748386253 2490851.6439192826 183.549808650189 75793 6132 185604 AUDIO_20210819 1256449456.9097054 27889.827497808634 3.1107916031790337 6.906049874245003e-05 385617106.5993504 8560.81444933712 None 6548 28500 MTL_20210513 223077340.6556207 4425.804678234715 3.4514003394298816 6.847501285346158e-05 64071255.77995758 1271.159422727162 None 4101 203255 RDN_20210408 73806681.52295253 1310.3092781361465 1.1027566050036037 1.9608864807213535e-05 2587851.8411454796 46.016352714527166 28536 4491 648172 CELR_20200410 6814534.882416932 935.01891451083 0.0018039358656171888 2.4740431986533617e-07 5437389.657807074 745.7214614846193 19293 None 1350205 SUN_20210418 0.0 0.0 0.0005902821840003292 9.7e-09 177.84597076325488 0.002922510560479003 52 None None WABI_20190701 12306746.971672855 1134.6796034870104 0.21665154715569224 1.999008564168372e-05 337798.7119462 31.1681373620764 36443 8016 1160222 STORJ_20200730 27160309.9380839 2445.926595288916 0.18807711819824172 1.6957293173423083e-05 11204762.866057457 1010.2369213151677 81610 8202 105568 XZC_20190131 31401037.08756005 9079.713077941655 4.696210169540054 0.0013579246052999934 817592.7070001273 236.40961836638513 58749 3924 284707 FTM_20200913 74908335.61814708 7183.743514558745 0.030208268789350082 2.892973725468981e-06 7014313.615171817 671.7440556555636 None 2673 147748 RVN_20200625 131576608.88231741 14142.974287607154 0.020385734793851053 2.192986099543721e-06 15932391.953948537 1713.9197797290178 32150 8211 198358 IRIS_20211230 99906369.72698383 2154.111310840166 0.08430647824500179 1.8118873144758264e-06 3515943.8728460525 75.56351818072122 None None 524776 XMR_20210124 2468752345.9413857 77126.99365958945 138.705513689275 0.004328031693592258 540089886.6933218 16852.438557228677 337967 190880 53273 TROY_20210110 6512784.465080849 161.00843120396166 0.0034248185427656216 8.474125909169606e-08 3681944.7034369954 91.10340480208183 None None 988367 ANKR_20210120 61311954.44341274 1693.099982311732 0.00946960478905304 2.6188592873627785e-07 11754221.051012682 325.06795849331223 32355 None 5258 AUDIO_20210814 676097336.8337288 14189.62165958612 1.6907367331826548 3.544128502382027e-05 23737465.707408592 497.58562132602634 57979 6113 34312 HC_20190807 107826191.64504388 9432.222835481372 2.4415813372389756 0.00021321463096092748 68360005.03546314 5969.636572749088 12918 847 463002 UTK_20210506 387310092.35342383 6763.372530787899 0.891369653230321 1.5553068605642992e-05 351158353.6991609 6127.188587512387 72653 3850 78610 FIO_20201229 13465241.466135476 496.1703354796148 0.0637857435872384 2.3500097031471285e-06 4430855.611647216 163.24264788688765 None 158 423283 BTS_20191012 75805589.62269789 9172.286032733467 0.027982486490107695 3.38431012643371e-06 12928539.738848435 1563.6275916242566 13548 7123 134466 KNC_20210420 572281942.5654706 10223.76037691762 2.7881186748794105 4.984989685122724e-05 131375595.56942989 2348.9171916930263 157569 10538 96867 SKY_20190904 9523873.2244465 895.9933585427798 0.5999204772768335 5.65308689855175e-05 624495.7068730904 58.8466077162592 16360 3801 477504 BTG_20201130 163432977.7147411 9009.662947171475 9.335889770892111 0.0005140790647116141 12953002.519006982 713.2547173960461 79867 None 374330 NU_20210902 184893698.06421685 3800.941195608851 0.33248428682923703 6.833473793003996e-06 33504209.858473357 688.6043915235366 None 7287 189883 DOCK_20200905 11662582.341564398 1111.8224389952686 0.020846913263247387 1.9882128621421895e-06 4414471.500360487 421.01719836146356 42717 14918 214748 SKY_20200117 6853571.809798746 786.5430952999036 0.403151282929338 4.6267240899994325e-05 165696.72863549134 19.01601404915528 16291 3809 343600 STPT_20200801 13384344.96035825 1180.788612687672 0.016588094617054388 1.463415580162133e-06 3804588.685138865 335.6439956772718 12914 None 1449224 LTC_20200520 2944518178.3975096 302064.5543132972 45.463621207464925 0.0046639034454782425 3445697955.830778 353478.278708644 132855 213718 149425 MANA_20211104 3775740662.119559 59975.60327741808 2.8503999330676852 4.520570910075756e-05 2621822150.2094975 41580.59648448598 224653 48626 8687 POWR_20210203 49434255.87369235 1387.9187774334202 0.11500797554265808 3.2373161128930094e-06 5110400.027216453 143.85072229447513 81205 12529 369771 QTUM_20201106 199274751.34287062 12814.121921099506 1.9355888493683333 0.00012451445020935368 175496514.62535605 11289.51121999138 186637 15036 123394 FTM_20211125 6538355717.415235 114292.09921918603 2.5883579967403834 4.525184708573143e-05 1252338057.035964 21894.42508648374 249140 22181 18932 FUN_20190530 38580299.30435417 4461.563593634409 0.006416706662462617 7.420508744742566e-07 2021524.8060017233 233.77634805099208 36389 17674 458828 GXS_20190103 33147938.016628414 8568.41940489816 0.5524656336104736 0.000142806990081636 1250564.4964352488 323.25875271509193 9949 None 230434 LTC_20210128 8150039364.104642 268085.2692386941 122.80619208381506 0.004039554853436613 4905944203.376763 161374.849111144 139785 225417 127540 ETC_20200421 611158078.7144556 89249.45754491481 5.2403778663955505 0.0007653900991741036 1775755719.0408118 259360.2752620737 230766 25397 313555 FTT_20210513 5128872417.310621 99438.78118529724 58.263088474701405 0.0011311666746968356 185029366.71485338 3592.3096242826605 119963 None 2794 YOYO_20200610 1681779.1521864692 172.0805585305657 0.009611515858994503 9.8425448794785e-07 629537.8697944292 64.46698759784572 7471 None 1857725 TFUEL_20210826 1813872111.4758353 37005.75952678029 0.34270092145368064 6.991553087184697e-06 43778327.343545705 893.1359110218169 190229 22973 21702 OST_20190923 8525821.264904784 848.1662077985633 0.012801374474101117 1.2743834031209979e-06 683323.9078650939 68.02524595314631 17969 751 557470 HNT_20210107 96294233.86408372 2627.174935365859 1.5029981152069767 4.072130962804519e-05 3282900.9736408778 88.94490663245554 18485 2120 70077 EVX_20210523 11554404.485419566 307.41726021226907 0.5297924328864893 1.410003603717547e-05 3740162.178513521 99.54166618536887 18173 2812 859332 ELF_20210314 158615641.5595569 2582.581735738519 0.34377829624618683 5.603357496287819e-06 84956360.4139384 1384.7321491228422 84253 33325 357981 TUSD_20190221 210419174.56590232 53044.13639589799 1.0132212911821776 0.00025529638287753834 74993990.36000343 18895.866720411672 8207 None 263322 CAKE_20211202 3315995662.0716476 58015.517882366796 13.499354948972902 0.0002360743868995046 6483813619.344731 113387.81228757348 None None 579 PERL_20200322 4366086.5396682145 708.5914504328288 0.012763171444033218 2.072433768022945e-06 2203699.9852073113 357.82816864615404 11568 475 685227 STEEM_20211120 231980201.04918826 3990.6420796710204 0.5908539231523089 1.0155708102177832e-05 8912243.471007353 153.18531312139459 14669 3944 232850 ANT_20201111 112728610.2903665 7370.012390045234 3.2343910985270745 0.00021171286682164804 18268893.04750062 1195.8231404067953 76029 2681 88637 MITH_20210318 34211065.83952206 581.5943108615161 0.05537182401897221 9.394245667858255e-07 230081048.48528507 3903.4977288243103 None 2296 348681 CHZ_20191203 43643403.687001236 5969.5406890857 0.011344252953632823 1.5527218247494786e-06 3283143.673488266 449.37369225189144 14010 None 252508 SFP_20210506 288634343.9126338 5041.362931980354 2.6804196574829797 4.67559923728551e-05 31670992.0282389 552.4540374038409 309941 None 22445 RUNE_20210422 3048023522.7931232 56253.8120361883 13.177992606777691 0.00024326842888260878 151951121.8923108 2805.0486741569784 877 3766 83196 JST_20210610 100832353.23893763 2686.311602936654 0.06982018588583656 1.8641756203162677e-06 102923769.02169962 2748.0302225926425 46977 None 83188 WAVES_20200707 115468848.7835753 12369.71706394797 1.1557136425161285 0.0001237475744998452 25672521.42099205 2748.8749291100885 234 56870 124642 IOST_20191020 51554128.425947644 6487.556542985395 0.004288443845502262 5.394549443556304e-07 12978960.286222627 1632.6585006683563 193834 50864 92692 BQX_20200306 7129069.319110154 787.2086162746552 0.050634866208940234 5.589584446565303e-06 1682532.1386749656 185.73477481655382 10591 9 317687 BAT_20200318 171751383.16484115 31627.565600083017 0.11863860589330621 2.2057344601930124e-05 63843673.53324144 11869.845377669651 111555 35830 19141 LTC_20190515 5653444133.076865 707824.8652415146 91.30490119849611 0.011424306388513623 5855228372.022854 732621.3819703328 444067 202712 206704 TNB_20190520 14846145.060461836 1814.1815404316985 0.005682906666708921 6.946497988332315e-07 1517700.8301094663 185.5160814976251 15756 1505 532164 EOS_20190130 2333261999.801204 683197.1975481992 2.2643404698282645 0.0006633677927534843 978633354.62861 286703.28381498036 590 62312 81026 XRP_20190305 12534997851.87214 3376079.737860317 0.3025428391500395 8.148455717019775e-05 649085227.6230991 174819.6139336003 913122 197733 32700 KNC_20190730 35835165.29052994 3774.908440872525 0.21515872988630533 2.2619843369751468e-05 12804286.090705702 1346.1268617187775 97615 6697 215847 VET_20200927 827707026.9299926 77085.39348263794 0.012875855506454327 1.1987477096614944e-06 108571456.40865307 10108.049491487769 136074 67506 73042 BCD_20190131 135306079.71495673 39124.19765268237 0.7201105034626452 0.00020822231882408767 1578600.2596862554 456.4574533875411 20610 None 1549499 VIA_20190605 11922523.640830638 1552.1188667993654 0.5151595140605086 6.706539867500747e-05 680554.632725407 88.59715586751604 41167 2236 1811232 NBS_20201231 0.0 0.0 0.012875194609484948 4.465319537998756e-07 8975974.926123653 311.3008962262998 None None 706603 DNT_20190804 6277818.571039266 581.6823104893859 0.009380775336329429 8.691922217998452e-07 292244.2814354862 27.078407400448707 60503 6311 717960 NANO_20201228 148292154.45516106 5594.583092650289 1.1073956197104895 4.2109003587382025e-05 15578671.390763007 592.382991050467 99191 53721 348353 LTO_20201106 15819082.004640063 1017.2269397970632 0.06492316366432686 4.180139645101938e-06 3395725.4966438506 218.63701599316693 17862 566 2813904 SKY_20190816 12686032.053283472 1232.743246583988 0.7935423047911789 7.70464609700388e-05 267450.247264651 25.967229362429098 16367 3804 472188 ALGO_20210325 2707590346.5038834 51225.08501606234 1.036475304971601 1.9646609727526052e-05 527848238.6896442 10005.475568162818 72928 18570 133821 BLZ_20190716 7825861.039735367 715.7097528584712 0.03759460462670886 3.441874174291652e-06 392612.6244211044 35.94460603891621 36594 None 1258413 ETH_20201231 85790178023.44371 2969829.420783936 752.8559324490188 0.026110139840226154 13293869466.928808 461050.7480097845 546318 510481 7804 RDN_20200410 4652730.876677765 638.3988707794686 0.09143592919726663 1.2540159717133369e-05 643568.5603895149 88.26347155939838 25055 4321 1242086 SC_20210207 397785391.9316582 10116.02796875708 0.00843685890443168 2.145501056141545e-07 47131538.66444185 1198.5594061436743 110315 32058 135248 ONT_20190507 654787883.1518756 114460.55621003253 1.0684951985870195 0.00018678564014611477 64890264.680897005 11343.588294734911 78332 14681 249396 ICX_20190221 114704155.31585233 28921.24883927012 0.24249206969965548 6.109913469350599e-05 7587903.645465898 1911.874262320772 111277 23489 263363 KAVA_20201031 44884968.428880654 3304.8215091081092 1.522389788019305 0.00011217425156338665 8576407.207483068 631.9354393817364 45903 None 85902 GRS_20200217 16874032.227343414 1692.7134609994828 0.22449441232149658 2.2565798881702068e-05 9225715.957317272 927.3533745436393 37844 106876 3972954 RCN_20191030 21798238.175285418 2316.7850535903294 0.042805824821785125 4.549537185356458e-06 5123118.205958791 544.501055172383 None 1125 851208 AAVE_20210201 3694895084.23773 111777.94594264754 299.38481612202156 0.009054810213674986 616188545.6924297 18636.45060346447 None 3186 18454 BRD_20200418 7444655.905689532 1049.5739991274406 0.11777635435197101 1.6729765017711765e-05 433993.6839797117 61.64745370240889 186 None None ICX_20200625 174791313.1730953 18786.32119501743 0.3168021431259091 3.40710712816462e-05 27067833.850294635 2911.0601571486704 112642 27767 138952 NEO_20200320 458411283.6145284 74121.94243886841 6.490547985798599 0.001050183658920989 558270964.1190019 90329.35971672117 322381 98959 219445 LRC_20210704 321858023.23154485 9289.294999275417 0.25899794750841837 7.469181823897313e-06 22520069.412439022 649.4510661047925 81830 11067 263753 HIVE_20210115 48780386.8181383 1248.9892309556913 0.13040839989078942 3.3242855219959604e-06 4075570.2323472765 103.89176716082588 10521 98 154138 GXS_20201201 27730013.134552766 1411.28600481061 0.39654265567774294 2.018668358921298e-05 1961787.920308456 99.86817672545722 None None 450056 ENJ_20210318 2308073398.453893 39237.665493626235 2.4792594462415027 4.206249789490537e-05 948147764.0980027 16086.03867251199 None 23353 32417 XVG_20210318 491765350.03526366 8360.099951312333 0.029500460725668254 5.006079885375978e-07 32206474.409331154 546.5276804275289 295836 52559 128477 TROY_20210819 17277258.727469992 383.5090722465691 0.009060763757757396 2.0118547775158207e-07 5738696.131699659 127.42218578855315 None None 544029 NANO_20190923 119801787.85274011 11917.879319297721 0.8991259617937375 8.944258088647244e-05 1893086.6983014937 188.31906466157582 98413 47708 228535 RDN_20200701 13632327.68878386 1490.162064219809 0.20404789197028805 2.230958054523133e-05 426223.25148740475 46.60112813463055 25449 4320 1882250 LEND_20190812 4067968.031788511 352.46807575994205 0.0036073727223612643 3.1237264745992015e-07 1401699.150847183 121.37710971153906 None 5838 699914 KSM_20210217 1845441751.3843558 37524.521787141035 208.03671280618548 0.004227565019657269 503093513.109652 10223.486561337424 35815 None 97488 GAS_20190130 27065994.260585506 7929.332673493588 1.954226225873032 0.0005724671896727786 855818.2885070192 250.70172736695815 315956 97904 144733 AUTO_20210702 26174871.57964521 778.5101353233167 847.2631767071707 0.025196207066821272 2842259.2323978967 84.52409372422547 None None 10455 CKB_20210711 297434805.1845088 8820.453037992707 0.01101370570428281 3.2672727511801237e-07 6673842.063384614 197.98297598325192 49246 5038 123301 NAV_20191024 5169795.049223079 692.929312057989 0.07805452171165826 1.0459164213973837e-05 197806.69392006367 26.505737899156138 50883 14149 427843 NANO_20190725 161675373.47688377 16447.00023443117 1.2102369135564028 0.0001234194810321976 5265980.608270053 537.0226164135396 98833 47064 306067 NXS_20200313 5739288.791015753 1192.577154219048 0.09492928901351669 1.987444796696125e-05 109389.95174227546 22.901940239968482 23550 3536 662796 BNT_20200725 85588160.28379513 8970.575817952538 1.3019396056267443 0.00013650534597379937 46310496.89113621 4855.548116842117 714 5126 121878 MDA_20210120 11920887.845265169 329.1895550089914 0.6112649874467753 1.6894739894474984e-05 1006948.2637871883 27.83102149353684 None 369 3273620 WABI_20200330 4235113.267005163 716.2111896513599 0.07180630585715726 1.2144936995474128e-05 1245770.0696588457 210.70292958603773 36759 7748 2574958 GTO_20190923 11015982.683015224 1096.195685608376 0.01661660932818777 1.6541919921825406e-06 3498338.2870240505 348.2613730662885 17314 None 702071 QLC_20200506 2496899.5667710104 278.40868549672007 0.010423920043197874 1.1603180617602027e-06 72559.14221892293 8.076777537964983 24355 5652 940522 IOTX_20200704 25109604.392782997 2769.844398538045 0.005836096608595133 6.438671464069975e-07 7489665.590533457 826.2970842904354 24686 1873 576006 SKL_20210523 295880414.18384904 7871.393838785065 0.3079110127866905 8.198700923453678e-06 47899275.04602677 1275.4069008394895 24614 1883 118813 DOGE_20201031 328568259.1030867 24189.325061485695 0.002589971321317768 1.908368650563834e-07 59934492.5474204 4416.153403843644 152063 168182 138771 MDT_20200718 7521472.470814734 821.539057753058 0.012403122884862887 1.3549739258520771e-06 8168408.668608152 892.3543582056899 14141 63 598192 GLM_20210105 110492519.19826658 6393.577954391452 0.10819006499073731 3.4580658127479822e-06 4115758.1020217948 131.55147274715668 146065 20314 228749 NULS_20190324 25758629.046870552 6435.593950450086 0.6407590517028201 0.00015997981135538656 22263181.838511262 5558.500689503447 19964 None 738002 CRV_20210703 584737402.0111463 17290.60544587574 1.6634318336140834 4.912481022985669e-05 103811746.30709456 3065.78979307257 138743 None 15400 SC_20210131 296404738.8794364 8663.650089409623 0.006545238419351244 1.9158029301939902e-07 101795219.89399329 2979.5641970210154 108980 30670 135248 XRP_20190902 11058689734.468735 1136970.4761592778 0.2569747981261323 2.6419342679887486e-05 1012851666.013649 104130.348358812 937961 205031 31314 RLC_20201111 70491567.05253904 4608.622975321421 0.9972165813967535 6.527910966284606e-05 8576803.33480638 561.4488325748493 33583 3852 531109 RDN_20210212 23966030.693857916 502.6056652103575 0.36316545624903374 7.606168894761607e-06 1176258.9670099055 24.635670086749798 27108 4386 1282732 SC_20210826 1084254115.2892988 22120.438812894907 0.022285636639924108 4.5477031966822475e-07 206449268.18135777 4212.892869208464 140000 48124 113075 SYS_20190712 18058710.544849716 1586.9849017668178 0.03237408643039396 2.8450085761068825e-06 406094.2246175073 35.68723257190068 61333 4605 806939 WAN_20200607 22054707.487858977 2280.311331296654 0.2077643855981694 2.1481467527066503e-05 706144.4402444198 73.01067899032023 104320 16153 818787 DCR_20190805 288820815.90999395 26386.11890295908 28.349635957677982 0.0025890210807568864 19476838.061811626 1778.7157621282065 40569 9563 266485 DCR_20190421 247039574.73632282 46523.69643549252 25.51213698031009 0.004803381183389236 2713516.6108817295 510.89623105986504 40459 9423 288305 XEM_20190901 431338441.00000405 44934.54579254778 0.048142349325134864 5.016570003023205e-06 42294581.351617135 4407.215914329558 216634 18377 190156 POWR_20190321 44823443.32097578 11090.945146874694 0.10786890577575953 2.66906785461635e-05 2867157.2456748993 709.4386638601593 84937 13278 634986 LTO_20210420 158902294.29061714 2838.4748672472397 0.5659531011024176 1.011932658254424e-05 12670244.52063263 226.54587798039293 8096 3724 174432 STEEM_20211111 231603130.29222095 3568.710964633482 0.5975397397998555 9.200852561170836e-06 11006553.99645234 169.47773308239488 14612 3941 227417 LUN_20190701 5258402.55566451 484.8236614086692 1.950912805494224 0.00018000754932648237 306268.90713903453 28.258933589310963 31318 2224 2096763 EOS_20190618 7417219409.623678 795755.3019939376 7.117106019301704 0.0007638562010801554 3178850409.567442 341175.8362273946 1128 66309 103805 ELF_20210112 55422277.05959881 1564.5840350688816 0.12039218027711625 3.3868710419846767e-06 41123729.39392171 1156.892149490888 81989 33334 479481 WTC_20190523 62612198.338573806 8166.370304050002 2.1724264826298296 0.00028347075115947156 29571324.977808353 3858.637229505975 56392 20199 976085 OST_20210108 9742519.802254114 248.89821279947026 0.014124486738934629 3.5792250936639216e-07 2418392.5202379543 61.283438858732744 None 731 741572 FET_20210809 261243862.36201686 5938.394775586056 0.3765681262548172 8.562236418342665e-06 29426730.35730977 669.0917387086852 70450 3280 157156 FIL_20210722 4172524855.029862 129658.20651057683 46.51458927006397 0.001440286615005965 475115333.437303 14711.561814741193 95919 None 29585 GVT_20210729 16473380.390745493 412.0449933693737 3.7198839652694162 9.296942475271976e-05 785126.4765274416 19.62232090096913 None 5688 392150 CVC_20200506 14439443.958846731 1610.2800956320482 0.021485407667789863 2.387758675246063e-06 9193595.41193827 1021.7207669960933 85792 8028 103621 DIA_20220115 71848719.8727342 1666.691390309548 1.1956534716175433 2.773163117764277e-05 4706869.462230912 109.16973105201683 50065 463 282022 FOR_20210805 18949070.12749618 475.9863096346475 0.03343154417745287 8.407296004312585e-07 9368190.497620942 235.58932880942515 29320 None 175113 UNFI_20210519 43212855.69248377 1009.6170749034119 17.689215693924513 0.0004134647727839547 10934834.497768655 255.58899497182878 18234 None 107472 LRC_20190523 59913777.463771716 7817.895628807219 0.0641110266884158 8.365576942778801e-06 11661186.56279837 1521.6189550247016 35874 2464 907750 SNX_20210220 3238712748.9955087 57979.10886233708 22.308399671593737 0.0003990333765200673 301350826.11617935 5390.303178733574 85469 4869 25863 DNT_20190922 5743426.341596295 575.1230380553357 0.007645152184060239 7.655589690172953e-07 312357.54748351744 31.27839920764726 60093 6267 442097 AGIX_20211202 242415059.17689857 4241.034979875099 0.2485356800747114 4.346230597528391e-06 11267397.376047038 197.03692932767575 69416 None 115858 IOST_20200207 85209367.31830594 8749.033444023535 0.007084520838193425 7.279050059340717e-07 50272683.028599374 5165.308773032822 192370 52315 89535 LTO_20210128 54480897.78116715 1798.9487394823504 0.20033130209793373 6.588302657185038e-06 4195002.440861551 137.96119447431548 1031 1220 818812 BAT_20190805 300974037.3363341 27496.414033865898 0.235786658404178 2.1533138206111908e-05 21925066.889635816 2002.2994460674308 104912 29222 37775 ROSE_20210131 84099223.5277343 2458.398686832501 0.05601162479199416 1.6394702228748592e-06 6570990.300810941 192.3340551713266 9780 665 215578 IOST_20210429 1132979254.326553 20698.753614036686 0.06129511752231086 1.119430340172222e-06 633950926.0734661 11577.821032296808 241448 53151 143784 LOOM_20200807 18370969.25420544 1560.5603491053896 0.022066767135830986 1.8742033088509252e-06 3678766.7263704734 312.44979061109694 22088 None 586484 VIDT_20210519 41783290.89268116 979.2518967926005 0.9025743788348183 2.1097612864648257e-05 3166763.229123824 74.0228685953926 27931 1584 377967 TRU_20210723 45207957.94214396 1396.448282372714 0.12658555031312327 3.910087951070654e-06 1775081.6481470296 54.83031315515627 None None 118402 CDT_20210128 4854304.024108691 160.3838041428264 0.007224183644504997 2.3811616948877342e-07 265753.8915618176 8.759508589398665 19286 295 808485 FTT_20201111 337855283.43508506 22100.362193875008 3.653328469169092 0.00023917595409394523 4349125.191895629 284.72834458332534 30416 None 5993 REP_20200106 102231387.21628705 13921.45275555484 9.301055368414525 0.0012666137998124175 8550914.759443555 1164.459967856003 127885 10090 330161 CVC_20201115 74345975.5788967 4618.960593701901 0.11000809361924915 6.842377145355461e-06 74540892.22115777 4636.357931024165 85408 8012 301076 FTM_20190826 31535363.157360565 3123.172701073458 0.01522330120323192 1.507168005388264e-06 4094248.433088103 405.3470506877557 18517 2099 361717 STPT_20210207 22664567.190059453 577.7336445132285 0.024678890462071883 6.273464644957833e-07 4905183.406422109 124.69156473835847 19601 None 1418206 FTM_20200207 22335128.334263213 2293.3016747214524 0.01056224265407614 1.084647680675262e-06 3578093.8519611987 367.43817812880854 20724 2279 481590 CMT_20200629 9832441.75257012 1078.427573732556 0.012331725362275591 1.3521329942750792e-06 2306404.2256768253 252.88961277172228 283801 1635 1061023 SOL_20210805 9803376069.99858 246266.44500838013 35.90548260385135 0.0009027526887838555 453652890.7804349 11405.95633945547 374035 28737 9636 KMD_20191024 57449707.154927544 7695.02519960805 0.4930917618318429 6.604652522914931e-05 1755673.5053110225 235.1613704351798 98149 8403 214923 NEO_20210131 1605824606.3043468 46941.6593616947 22.76052322208529 0.0006661083642185234 520824990.47946185 15242.438808074881 333247 102020 149199 WAN_20200106 18576517.54058319 2529.6742844428863 0.17495491512913913 2.3820038531178738e-05 1607998.663329691 218.92834557019978 106706 16540 802960 KSM_20210314 2831669209.7925653 46157.055665147025 314.84539112516325 0.0051317703932928895 289365564.34394884 4716.4661697348365 41915 None 90363 ELF_20190605 69064737.6631171 9014.537464143354 0.18343476997510244 2.3926446216248675e-05 29708020.057543196 3874.9869732686 88745 33052 1112151 KEY_20191102 3641697.2144259606 394.4261006163185 0.0013924934588134543 1.5081862460113847e-07 1071741.1788331897 116.07848460398289 23607 2791 411856 REQ_20210930 136168717.32650787 3278.147207502241 0.17637995437725604 4.243066166421348e-06 4337396.705943354 104.3421361475803 46603 28788 251193 PIVX_20210722 31821524.12193903 989.0471663814508 0.48834315891930535 1.5139828350536642e-05 295534.4452083969 9.162288219677 67667 9846 339375 CRV_20210310 587532999.0308433 10745.216143121279 2.40834612662517 4.4027925327706104e-05 235332594.29234457 4302.207965097577 85596 None 26879 BLZ_20200207 5089163.889865237 522.534664054251 0.023627240596158845 2.426305904219131e-06 436335.396122647 44.80773552559012 36246 None 537174 DUSK_20210805 40749042.8899805 1022.0665826436556 0.11264998685958318 2.832299447161491e-06 2048911.2566076277 51.5146994788936 28145 13635 324432 MITH_20210806 28021577.36271997 683.9260976029394 0.04526512156097205 1.1051955506137747e-06 16433707.0193913 401.2462410701098 32726 2752 709591 SKY_20210825 32272609.7063005 670.133952866473 1.5170666443489143 3.158890679008949e-05 1224685.672867284 25.50084514182032 19699 4413 978551 VIB_20190205 3754448.4481320735 1083.756142264352 0.022453689402128718 6.481464359474661e-06 850956.0407688869 245.63630283405973 32858 1121 2912789 LTC_20211111 17755040894.3769 273835.8722270071 260.86472470752653 0.004016130611354798 7438972472.587109 114526.35114877528 202805 348840 123965 BTG_20190228 221058080.5083187 57841.678772396524 12.60258703291332 0.0033054467700683494 9556415.959610302 2506.487293809333 72831 None 354755 MATIC_20190811 32812953.39407727 2897.0311915491625 0.014927053710683265 1.318101207487779e-06 42290099.11481239 3734.3357763975328 21811 1090 193229 SKY_20190221 13819580.94183079 3484.166898764506 1.0618525623017205 0.00026748257041482116 1765670.425539956 444.77555613286785 14473 3512 348246 GXS_20190803 110457976.1728623 10497.52943075127 1.8409662695477051 0.00017495882384585453 5677346.256168187 539.5546023713348 None None 741400 AION_20200612 46419573.918773256 5005.860375421542 0.10788415725118322 1.1601915437622726e-05 7878526.036539321 847.2605726179099 67500 72563 450836 VET_20200907 798149392.4195895 77516.30934053642 0.012378918662598559 1.2034361164633132e-06 161397298.80350196 15690.49314998752 134380 67120 75670 JST_20210418 242051413.84118134 4015.67794003115 0.1693360714806456 2.8096283702424797e-06 843820688.6082721 14000.694154418961 42470 None 74075 POA_20190528 11400281.615626872 1294.0150297053776 0.05183295243915443 5.877407885260862e-06 22833298.568713557 2589.0983001944132 17496 None 639132 LSK_20200223 196485763.66493878 20355.33155701573 1.4201994055931384 0.00014712595936736882 7183845.35324047 744.2124925414242 178755 31286 152609 EOS_20200607 2625325429.56684 271505.3236388254 2.7980890186240877 0.00028937215021648604 1780152567.3142362 184099.42381691028 1554 71493 90009 SCRT_20210117 67542732.91138041 1862.2698765296807 0.9634160939283697 2.6616743388020785e-05 2133299.7240548823 58.93766118580751 64100 None 296261 STMX_20201228 19388735.99595785 730.281339832563 0.002304417019105531 8.762605052538286e-08 2795749.83651304 106.30910742262817 21786 147 202017 SNT_20190901 54935436.904870406 5722.881780516972 0.015502223999402261 1.6150147439093678e-06 18314556.98917806 1908.002333525268 111351 5722 268012 CTSI_20211216 322413832.64705706 6608.720600225894 0.6626476951035463 1.3559577858713276e-05 28748486.489527807 588.272386300243 None 6671 97392 TRU_20210421 82687916.18724301 1463.6189766896448 0.3419011048382438 6.063804142276867e-06 9267984.55572483 164.37280355133854 22770 None 84906 HBAR_20200325 129133534.69016992 19104.169386389993 0.033694343984459946 4.986396276640254e-06 16230166.946247853 2401.8881052364604 38149 6384 115268 PIVX_20210902 56103893.7238085 1151.960002650654 0.8381046557122643 1.7208485496009655e-05 687006.2126339701 14.106038386975634 67809 9934 351161 TRX_20211225 8284164400.91559 162827.7964486528 0.08119225715365674 1.5972422141017038e-06 953514581.6377463 18757.8692223208 1310041 121476 22188 MITH_20190207 17063164.16934949 5010.1273080559895 0.03420675617654647 1.0043870031326197e-05 3208724.573195068 942.1534276199716 42 1976 498260 ZRX_20200330 94074748.53823453 15909.2291796878 0.14392699662790504 2.4324613875814717e-05 22045795.052137606 3725.8851000342693 152464 15948 132419 STX_20210105 440081547.21057695 14066.272659697772 0.48142086095591147 1.5387596088031447e-05 12689178.756516978 405.58266836715643 46951 None 83877 ELF_20210723 85749223.5313755 2651.2910931834654 0.18557357819002643 5.732089027952664e-06 14395645.289366968 444.65985523532737 87890 33390 615767 KMD_20220112 83197443.58549502 1939.9745472855136 0.6398274313576511 1.4951719484582931e-05 935388.5638628238 21.85849923046846 117991 10015 159072 LINA_20210828 156752205.76592883 3196.1081835233413 0.05667245281861768 1.1552945744004058e-06 46009713.88674099 937.9296321122843 43551 None 115735 CVC_20190530 29646806.225689102 3428.4625497744737 0.08650950748587037 1.0004268397644138e-05 3840117.9912078045 444.08495874213224 88910 8192 437048 REN_20201014 299710864.1417913 26234.356496724955 0.3401813647890298 2.9772122184150766e-05 110013801.57098173 9628.22976604099 25546 968 91402 WAN_20190511 36367620.44303618 5708.483867089334 0.3272866810607304 5.1365454733828765e-05 1906627.1183726506 299.23236908283553 109106 17115 543432 SYS_20190915 13806120.664062502 1333.4479918859404 0.024444403367605935 2.361426335661144e-06 1387159.852859501 134.00514461544333 60438 4589 689818 SYS_20190726 17987681.81092024 1816.2299260479642 0.03218893965965685 3.251916370133226e-06 364479.98967960034 36.82191639604064 61110 4595 748817 ATOM_20210828 5657683013.618045 115342.06898900669 20.36345816964876 0.000415118661172475 515313935.694065 10504.916664286246 175909 34608 61182 SKY_20210703 17916760.457621455 530.0838169511684 0.8531790694105454 2.524208652148421e-05 1216341.7681545285 35.986588574733965 19646 4404 442973 LOOM_20200711 17788409.15230053 1915.9868297302849 0.021340578346304588 2.298594485426062e-06 8817744.883169288 949.7596285086883 21865 None 624225 DASH_20200719 654243374.5968046 71343.15910825282 69.15326355417906 0.007541680006098303 205062151.3560073 22363.559540143287 316867 35141 73738 BLZ_20190220 8792833.967330687 2245.4831443233634 0.043413381950333146 1.1086757440177079e-05 297873.811953319 76.0699708832987 34667 None 1029822 QTUM_20190411 268409187.3098462 50540.24449748821 3.2953960537523566 0.0006209337421256865 159094154.82887653 29977.255327392984 176624 15249 374999 IOTX_20210527 333880030.854704 8521.809964258235 0.03516819784870681 8.97129786133567e-07 20865388.737696704 532.2695753809263 53662 3041 196383 FIDA_20211216 284001663.14349955 5821.646634971251 5.7952115660731875 0.0001185858232338769 3541089.746594324 72.4603472983242 59643 None 437544 BTG_20200414 173482527.27298224 25321.281838082636 9.916980732952945 0.0014482805741970542 42947980.67427965 6272.143486662641 74686 None 202519 ARPA_20200301 0.0 0.0 0.009597151851116127 1.1203414501438161e-06 2052312.2087747278 239.58049969368093 12140 None 2543726 NAS_20190512 44909756.69106069 6165.780981496705 0.9816523411790292 0.00013490424362445872 4034684.474838845 554.4692703403991 24116 5178 484793 MATIC_20201228 89017443.50672273 3358.3400701366663 0.018390193903932397 6.992918585643248e-07 19829861.25625948 754.0355803424792 68112 2566 52359 POWR_20191220 16024076.217045095 2243.931990263276 0.03754468314787397 5.254206762539084e-06 870018.8891663086 121.75516605080779 83041 12884 269666 ATOM_20210513 5758926860.49263 111704.64678747632 23.229675298420972 0.00046087157623211754 1114002770.3241792 22101.5664700724 None 27694 41486 STRAX_20210422 192429506.6491876 3551.206658498956 1.9188124745608355 3.547572803251704e-05 8286011.934970402 153.19491079839787 155193 10624 156260 HARD_20210617 65851299.84778565 1721.6451772943901 0.9955589836894316 2.599592530275846e-05 5386761.597791603 140.6585188965985 33101 None None BTS_20200806 70831665.5799745 6046.499493226554 0.02610448904202993 2.2275736096061854e-06 7136089.333545975 608.943705031167 13124 6948 129258 WAVES_20200411 100517881.0028067 14659.90561749724 1.0060511820465814 0.00014668686610210004 127524379.1790945 18593.638044680665 140367 56866 67847 EOS_20210106 2750581374.2822886 80954.07715039678 2.9011916045767387 8.51118523991624e-05 3057233198.5474434 89689.62282053455 192266 73875 95839 SYS_20190507 34241804.23417855 5988.022377176174 0.06195919686503905 1.083509077858082e-05 809753.4185770885 141.60531837848214 62277 4599 1307286 SNGLS_20200223 5080032.968462025 526.2644814758282 0.009074887958732795 9.401268425498945e-07 38702.89471637038 4.009485337196726 7017 2142 1180132 DLT_20210212 8330125.706702475 174.69594467206014 0.1012322255422951 2.120216534414251e-06 782417.6392509029 16.387023071660494 None 2539 6584036 UMA_20210614 723567765.6864846 18590.93655228893 11.96042246607726 0.00030638235230294957 28189807.657465987 722.1199422978927 None None 143872 LTC_20191108 3913009589.6095433 424450.4255211936 61.429948951000306 0.0066632823775196635 3040109585.691546 329759.4898577109 450677 209502 138607 ZIL_20191216 47071842.2148333 6614.70826684681 0.005056784209270442 7.10855795288551e-07 15478559.942874849 2175.8935289234437 66714 10543 236490 RCN_20190523 15599084.360577393 2034.5540114043495 0.03113929895536143 4.063235527662154e-06 1598738.0536163263 208.6125724343205 19028 1125 1774527 BQX_20200914 29051652.004353113 2814.4566102433373 0.13104417238370897 1.268921070813551e-05 1057529.093762988 102.40218436764597 15227 60 203989 BNT_20200612 52653210.09971363 5674.4506739854805 0.7556651121985379 8.126446404205157e-05 42628341.851304546 4584.265301687595 None 5034 124345 RIF_20210707 122043233.52062814 3573.08544164449 0.1642950397281036 4.809941651446513e-06 2917385.8189881 85.41009873038747 44583 3359 427293 VET_20190414 384752636.71606106 75843.97660142973 0.006943281750445716 1.3683798681522098e-06 11214456.131768446 2210.141623880228 106854 55047 666986 REN_20200404 44001718.25619913 6541.226645222676 0.05040399730685962 7.490715856312042e-06 2625196.310845557 390.13968499094574 11477 874 365402 CDT_20200301 3868865.597204985 451.53289055119285 0.0057373632403929726 6.697618160533897e-07 45384.57348105463 5.298052969955875 None 292 235568 STMX_20210523 261577549.77130333 6958.824629584834 0.030791789626642214 8.193969692101836e-07 37200977.423151106 989.9511695095497 65148 4363 53883 EOS_20200914 2566600881.1585507 248643.58169077328 2.723635044581763 0.0002637783140650776 1977106992.0997074 191478.64547411157 191305 72735 82491 SYS_20200506 13685364.95370331 1521.1847442223466 0.02335896059171521 2.5964447870564626e-06 603540.7723680824 67.08604546158327 58108 4483 978039 MANA_20210909 1136355865.801472 24518.387811048182 0.859390821857191 1.8562589278639214e-05 224204364.67313007 4842.748409753379 168778 36679 16891 TVK_20210902 141059805.2534411 2900.3617807873015 0.3239621116076584 6.6583194673923455e-06 19128135.931378543 393.13621958690175 53783 None 120691 LTO_20210206 72351876.09127015 1909.3526878200487 0.2663556864024695 6.9878125552553975e-06 13555696.807774654 355.6322360825146 1879 1439 777868 FUEL_20200417 1755830.3034016388 247.28206719732833 0.001770797929230431 2.4979991672406265e-07 10519.879527162384 1.4840005098573703 1 1468 None NEBL_20200530 8168154.791131813 867.2020913788873 0.49683477027043743 5.2991176143248365e-05 160962.02652087083 17.167814352242015 39157 5961 1392040 VIB_20200414 2014520.4180867113 294.03675446045867 0.011023774982075912 1.6099173317750336e-06 640532.6180388846 93.54368762286269 31297 1105 None LINK_20200217 1655213689.3596177 166042.2627538591 4.498985413890007 0.0004522304095309174 664194989.6298224 66763.75772220308 42752 12902 107371 COMP_20210508 78864.40366862401 1.3783975845387642 8.564132642026791e-07 1.49447e-11 799.2205462599873 0.013946667802736101 2449 None 1890272 DOCK_20201015 5912409.846060025 517.9673957904082 0.010568805388085124 9.25886055630419e-07 2263342.8073953404 198.28140149512538 43181 14897 208380 REEF_20210616 286722414.8598233 7099.699651967508 0.022623027989940744 5.60500657845744e-07 42428609.03902096 1051.1971822881264 178750 12278 41757 REP_20190830 88769331.0985398 9345.37921823482 8.068462710390115 0.0008506519701737868 9248723.287234541 975.0859572972914 125856 10052 195654 VITE_20210718 32817330.48084677 1038.3376891466576 0.04999873291183245 1.5818619582528007e-06 3996357.5028487975 126.4369222412557 None 2391 593813 CVC_20190312 22941375.759644855 5925.60153303522 0.0669323329042838 1.7311892399180693e-05 3287006.8621552945 850.1766880645965 88464 8208 405899 DIA_20210325 76342831.19245659 1444.2626722817517 2.947158164927185 5.586400708115837e-05 39769945.835216075 753.8477446495265 None 295 262752 FTM_20200422 6373727.283252016 931.217350535924 0.0030057772978878614 4.391590623463937e-07 1750613.5013619007 255.77336828289253 21493 2332 315256 IOTX_20190706 28976890.55590028 2636.4677873435344 0.008277353228003851 7.532782618696474e-07 1189954.5193045815 108.29148488832256 19918 1742 776154 PNT_20210203 29508422.39957756 828.5873521401176 0.8670240407789322 2.44130886692747e-05 22797368.707179308 641.9132082825638 8511 143 785804 SNGLS_20201015 5793466.9443828855 507.15048877840695 0.006509513420654928 5.698320098633786e-07 238424.49556331194 20.871284952944308 9000 2119 1085755 LOOM_20220105 74864314.25998583 1616.4380746796526 0.08923824323489683 1.9430266697293635e-06 1615797.979761395 35.181537127610014 39923 None 403167 LINK_20200927 4001196240.4906325 372636.4239572409 10.313514857693232 0.0009607415088180208 1050829372.072648 97888.58700118997 90901 23219 36403 ALPACA_20211225 86722215.08007257 1704.5517811155069 0.5633074094401368 1.1079977467547328e-05 2767072.403473342 54.42694231916512 69938 None 30691 MATIC_20200129 43794885.866147675 4692.253496559932 0.01710952769061642 1.8339628881141288e-06 20663598.403444715 2214.9221937666853 29241 1451 157746 DGD_20190213 32521399.64067401 8946.750356558 16.264871326611043 0.004476116149911451 124048.48195866184 34.13832192811198 15986 3289 553717 POWR_20200612 38429174.647700325 4141.760221232846 0.08934920481963841 9.608290673793959e-06 5538847.148770667 595.627610906351 81658 12740 204075 RAMP_20210617 60040111.619621165 1569.7210454975877 0.21013352636736612 5.4904337486276624e-06 6118471.418818804 159.8653130161031 29075 None 108775 WTC_20191102 21422960.264236614 2314.7357244754767 0.7342223207243312 7.930305146838608e-05 2159970.1832328592 233.2974928385589 55496 19721 533151 XMR_20200713 1220896914.01072 131403.65477851048 69.25390119024333 0.007453713429558153 95199344.49374726 10246.190039011777 320104 174819 87164 RVN_20210418 1868317583.9044948 30992.625245447653 0.2176845849057286 3.611828124792051e-06 584744589.4978508 9702.096981662484 None 32033 40524 XTZ_20200117 1032747353.397663 118651.80319587518 1.491464462688109 0.00017116637974600295 84472575.60676551 9694.407956841924 52735 19580 169583 ENJ_20210310 1622168739.0434947 29680.62211526325 1.7268528748151293 3.15387445240194e-05 1286449857.375469 23495.350406773774 97425 21189 49755 OMG_20200323 67573525.94072019 11582.184244551572 0.47420781280752206 8.132683321174732e-05 124546236.81313817 21359.730385893385 None 42840 453059 BCD_20200117 128326867.18360136 14743.406642213855 0.6841241180877915 7.85676296984658e-05 34234167.54946039 3931.5927153383564 24173 None 4350628 GTO_20190909 12059431.018804722 1161.0482897586855 0.018209457172791522 1.7520623712253848e-06 14311428.868208176 1377.0051331306267 None None 900303 TCT_20211002 15660682.88056783 325.2236283707965 0.0271519412710986 5.637007589309505e-07 2333522.026725045 48.44619116965902 None None 947696 LTC_20191015 3605353985.3066874 431928.52198462817 56.80576148307711 0.006805442322055284 1798244573.7648325 215433.24846285547 450652 209007 124941 TFUEL_20200208 0.0 0.0 0.003188597003352818 3.252466902872241e-07 1300632.6918021457 132.66853034209012 68343 4019 477822 RUNE_20210114 416842445.50237834 11194.562220319174 1.809947954584726 4.8430169815706915e-05 91418970.55293128 2446.1677237959043 27670 2069 287788 NXS_20190324 24407071.105875604 6097.917667565513 0.4094864232016171 0.00010223809893763569 159519.05169611936 39.82775414684681 55 3511 745468 FUN_20190622 36350870.466464154 3580.9258116719307 0.00604395525082955 5.953902914719072e-07 1144623.334679407 112.75689388447758 36246 17625 455027 BTG_20200417 172745778.63582444 24330.253128374767 9.865023769293764 0.0013916224292861187 45303430.540169664 6390.787446406654 74677 None 211621 VET_20210724 4537732303.7433195 135752.23221973208 0.06967204191302172 2.0836582265610585e-06 497101891.6001887 14866.65838163424 393379 194076 33228 XVG_20210218 403094479.19016886 7729.097436743908 0.024533225263444078 4.704100360781403e-07 25312998.164542228 485.3617187288886 292241 52239 127970 XLM_20210813 7693983007.902719 173056.54566216367 0.32779290063862937 7.372368938575502e-06 1030317328.0096159 23172.80042092238 610127 197479 26468 CLV_20211216 164968583.41332304 3381.6308956574085 0.7836433804686738 1.603547934965629e-05 16321206.196057197 333.97636149472925 99040 None 70589 AST_20190603 9308537.246528704 1064.9688619349224 0.05404398298021111 6.182249340562831e-06 1384197.2368944956 158.34237195532586 31752 3597 396492 MITH_20201031 2561245.798620727 188.5840405860014 0.004134289768222323 3.0526005165016756e-07 598914.4841392183 44.22154145256802 119 2107 517166 OMG_20190510 223290844.48704287 36144.51285768566 1.589836367390531 0.0002574995926130526 100753035.78249799 16318.576050127951 289967 38691 None CELR_20210202 32359825.77515285 969.8099733265112 0.008194251409630456 2.4532754341771596e-07 10677934.857514884 319.6864968396989 27840 None 412914 DOGE_20200106 254259070.1197398 34620.277822164455 0.0020704060020270594 2.818849113616837e-07 32539590.819854695 4430.25168252981 138334 146219 132410 EOS_20190714 4953568159.272917 435226.1355254467 4.765488250637251 0.0004180845735646332 3456701030.8091307 303262.3941970708 1215 67190 97672 CHZ_20200905 65082168.073587656 6204.4419257639265 0.01219311483901367 1.1628823627929002e-06 6415638.724041838 611.8726196499031 32335 None 244050 DCR_20211125 1445105591.3850021 25264.548925010527 106.82764036163805 0.0018676504765809756 8380400.893127576 146.51320265995395 49974 12362 187496 PIVX_20220115 34189704.42212296 793.2400184357589 0.50215664622998 1.1646871971870348e-05 262062.25435485452 6.07819402181695 69232 10405 350674 TORN_20211225 97627142.66648546 1920.7058364801535 41.57072527567844 0.0008177620917040622 2921450.9576585223 57.46957336208465 None None 87396 AXS_20210511 400707310.9689196 7176.772724632399 7.257863822938307 0.00012987465973488324 47720900.12472648 853.9338594854041 None None 17077 ONT_20200417 259241821.08091217 36512.72510488652 0.40652826367731754 5.734743910430509e-05 109757674.96216922 15483.109401021225 84082 16505 204987 CFX_20210722 173391792.25155497 5388.025137798791 0.20290809742467714 6.2828850342052456e-06 2653211.7749623284 82.15455551090594 37339 1161 173501 FTM_20200325 6182697.837809916 914.8246187765003 0.002930042404756711 4.336143936862315e-07 1981807.157035446 293.2858949091941 21267 2321 333169 NULS_20210115 25111769.851743903 642.9700984536584 0.25249333447079747 6.436394717554069e-06 19964500.963191576 508.9219832571509 36660 5103 933536 COTI_20211230 321211380.03165436 6925.792775480289 0.37256861637801025 7.999913675758279e-06 37871230.219915256 813.1832882206553 213774 9923 60051 AMB_20200707 1843887.62567676 197.5283244581951 0.012863304306374161 1.377333146731459e-06 275425.1118407121 29.49103332589679 18998 5444 661727 QLC_20190916 4454505.468968573 432.25844724459387 0.018462196940856962 1.791546111808319e-06 1915895.818684358 185.91588615317062 24764 5740 940522 HIGH_20220105 0.0 0.0 11.419243847226806 0.000248469981813112 12106624.383610567 263.4266139385778 None None 74480 CND_20210430 65351373.28228179 1219.0875205987948 0.03438707997651572 6.414763672679916e-07 802375.6359559376 14.967976591466083 35690 6190 117159 NANO_20200322 58888306.81697319 9550.950575388466 0.4414593591340892 7.164045195077037e-05 4153254.2674139375 673.9941211522143 97713 49674 321803 BRD_20200801 8687980.661337266 766.5657875012122 0.1296185110212343 1.1434909207214231e-05 415448.9315605858 36.6507898848738 219 None None SNT_20190804 72271354.788052 6698.003772249635 0.02040412242602512 1.8906595669491627e-06 24707725.82580583 2289.434322866731 111632 5725 278039 LUN_20190916 2783464.346980418 270.1704320666562 1.0296329255119998 9.993890263311832e-05 100161.7396860974 9.72196411170028 30814 2192 1514329 PPT_20190816 19964368.320548113 1940.0029982661958 0.5516825562330635 5.354876906305093e-05 804978.3621130016 78.1347895207543 24066 None 771976 BQX_20201015 25415654.601365946 2226.6035893766034 0.11406219702026364 9.980567791143183e-06 227968.92188746846 19.947531597760598 15477 63 172450 MATIC_20200217 51726161.53351232 5188.869707893045 0.020216117360524293 2.028226922778862e-06 47665585.20510039 4782.155815526347 31384 1506 160214 KAVA_20210710 310248512.5068141 9147.384795477537 4.4325434690447105 0.00013042659689432845 31178929.942146074 917.4330168581985 121235 None 48831 XMR_20200701 1120923637.8006654 122529.33129813711 63.60568715966468 0.006954354012012004 64314688.85045821 7031.873003993275 319751 174116 87164 AUDIO_20210104 25049298.50740933 748.781166183555 0.16051407981423307 4.876166830533938e-06 1761696.3666091736 53.517581749050336 None 2357 55662 MTH_20210104 2489838.328441524 74.17912321860975 0.007087637674662563 2.1327995123788197e-07 214304.9782081139 6.448827860608431 18953 1883 1263562 ATOM_20210428 5489441810.10109 99636.33808722842 22.965514684082844 0.00041693194167964967 960581047.3298345 17439.057069401522 111139 25579 44770 ADA_20200511 1484807886.2269833 169901.68072832108 0.04763232409174676 5.440531086032216e-06 278084415.5031474 31762.609445045266 155319 78686 51955 SUSHI_20210702 1417342631.654659 42155.530758249886 7.460789308961763 0.0002218138579742359 191858067.4225821 5704.058425475919 110228 None 6114 MTL_20201018 20383076.727648254 1794.5820748902677 0.31552199793659974 2.776337983619312e-05 3550594.1793524586 312.42352511138205 41182 None 386925 TROY_20210104 5209171.803097909 156.2616567796714 0.0027163122369288258 8.251731964208233e-08 1286388.7606751772 39.07847967751769 None None 988367 XMR_20210314 4267149896.2923965 69477.78464638606 238.46216276253276 0.0038867745924820426 660500425.2237898 10765.717467889934 370041 203998 43863 DOGE_20200721 405839356.5317754 44299.59121625139 0.0032339845720009423 3.53007149832913e-07 158255255.36049291 17274.428927260557 149866 163546 90180 PSG_20210603 33676032.793195926 894.9493940811096 15.999716990848434 0.0004253588632102393 8410623.31090219 223.59977819990084 9120362 None 40124 DLT_20210813 8986732.153631281 202.84080077545858 0.10946395335757196 2.47375773788433e-06 1108345.5863654085 25.04731819401 15282 2600 None ORN_20210117 44132420.53580834 1216.32712648702 2.6194830344675335 7.238244871461218e-05 7142511.380103871 197.3643107671404 31873 None 133090 QSP_20200523 7454152.610363138 814.3071197176951 0.01042477691475301 1.1408026047609243e-06 321103.2348780227 35.138920452830256 54533 8255 544618 RLC_20201229 56865668.39697917 2095.6054501648487 0.8080838929677749 2.9771621096396685e-05 2374538.869815697 87.48333202285237 33741 3893 508696 SFP_20210318 294885076.94198143 5010.663120989723 2.7249781405423934 4.624150918968232e-05 95329144.18430047 1617.687654538564 None None 38831 DLT_20210210 7250995.490004084 155.81784210893602 0.08802578918305642 1.8899984489488565e-06 464106.1383017075 9.9648056516 None 2538 6584036 DGD_20200322 50223098.15047825 8155.029884084265 25.11156163101994 0.004077516980800623 642969.9324394489 104.40293822378253 17613 4712 334920 OST_20210203 15312434.511556469 429.9127196555774 0.02233933633404006 6.285951247996022e-07 24370587.913949423 685.7514709542062 None 735 716707 IOTX_20190601 28438021.92695897 3315.049905605497 0.011250174472812284 1.3117947770010743e-06 893367.5546930726 104.16859712004472 20055 1726 736941 REQ_20200315 4829490.482593273 935.8794428532864 0.00627295556160841 1.2107378547262835e-06 55693.784175370136 10.749410243994589 39716 28256 787523 LSK_20210114 189253384.8181377 5063.998410408815 1.324083553573087 3.542952226183887e-05 7159689.64155684 191.57732369598034 177495 31040 299861 AAVE_20210421 4493941411.040276 79545.09234983893 359.4471145937066 0.006374992275716629 699650530.4303664 12408.68696980972 175707 8386 14216 BAL_20210111 209871759.85013694 5445.720212102799 19.361981000121435 0.0005036461910835173 91136021.10209508 2370.6412013465647 None None 83798 NAS_20210114 13260993.311019477 356.61747538630505 0.2919992360293588 7.813248193759898e-06 4957978.006601583 132.6644317003838 23318 4856 1361296 SKY_20190806 16195297.815434592 1372.1016615489323 1.0122061134646623 8.575635384680826e-05 681594.9211466019 57.7462381035856 None 3801 513361 ARK_20200531 33051340.807522543 3410.5306376842314 0.22031775973492174 2.2775700236042647e-05 1995494.1092400283 206.28739012924842 61996 21943 92038 MITH_20210703 22206596.560881123 656.9954339481001 0.03596839382076459 1.0635805131289697e-06 5003219.418333316 147.94451769975242 32413 2738 334204 ZEN_20211202 1268338974.066578 22186.170819081188 107.6290590997382 0.0018826868713443517 68404619.86459316 1196.558632358088 128613 8914 2237241 ORN_20210804 177704020.0136944 4625.02661939633 6.128426937164603 0.0001595401667326967 9352219.74186482 243.46454844548572 76365 None 92091 POE_20190729 8635510.694613587 905.8568323143995 0.0034306369032996594 3.5987053782265835e-07 142058.60831947802 14.901812467853425 None 10808 797644 ZEC_20200721 549145791.537447 59942.274428796096 56.98716679302788 0.006220461748898453 308448579.9997959 33668.85390809634 71624 15893 235720 KAVA_20200625 30228353.668553226 3249.0215506463746 1.1215809863127246 0.00012066606907755886 12944682.588821393 1392.6626632508512 None None 334665 BNT_20211011 874456554.7098649 15979.034460234241 3.8399512475433917 7.01873457637222e-05 30237429.367296647 552.6853788485749 132896 8276 40923 POE_20201015 4303927.765126052 377.82700424297514 0.0017129413721821759 1.5009896277704645e-07 29972.151203414458 2.626353056145845 None 10123 1047091 TROY_20210809 14304287.02367505 325.15406318776627 0.007510066923829401 1.7076051857848968e-07 12179910.257648047 276.9413126314628 None None 543401 BCH_20220112 7023648345.635948 163775.45309569233 369.7314492082944 0.008640018608549823 1547811102.0498908 36169.81123154903 None 758714 290205 ONG_20200117 0.0 0.0 0.11136213096277574 1.2784421715564235e-05 3671003.834302944 421.43285811286836 81703 16250 348769 BCH_20210819 12029942422.893621 266886.10303665005 637.9304891486856 0.014162246580131266 2676946108.6852975 59428.99973869696 None 606488 398111 ICX_20190810 96168427.16873498 8109.789953599698 0.1961854733323552 1.6539395105909977e-05 13945115.985531073 1175.641494575437 114006 25997 229714 PERL_20210125 0.0 0.0 0.03438595101003076 1.0658377317715439e-06 3350805.423416926 103.86261677220044 13736 504 443333 BOND_20211021 141898298.70175445 2140.8179249562672 30.122199689164567 0.0004561299484218549 19546753.287017997 295.9896574827308 25103 None 236352 CLV_20211221 160170433.28087863 3394.9749800514805 0.7568315614792548 1.6053035927526887e-05 9628547.147139536 204.22960821138307 None None 70589 BQX_20190813 13654417.240478227 1199.755395409066 0.09682232904354089 8.50720297270687e-06 772268.5424276863 67.85464990120576 60556 5772 410121 TRX_20190207 1674317076.2383473 491456.83503812895 0.025539178491791464 7.497225636649836e-06 138072420.4882951 40532.239160780075 381895 69770 78009 AST_20190726 7356628.3926368505 742.6570820717436 0.04259282557942958 4.302978234650331e-06 843701.2801801714 85.23567515828843 32044 3597 228402 AION_20190228 32564343.00749598 8531.074972940758 0.11151095561291559 2.9247606226088578e-05 2880552.2677576384 755.5244951311656 67241 72420 212982 ETC_20190523 770068405.2039851 100459.05105154558 6.950648562279746 0.0009075971861360319 551249747.5461017 71980.72456808866 227733 24521 712989 ELF_20210513 178310844.91620138 3457.0977103550313 0.38219200527714364 7.438231379338683e-06 36290516.28401625 706.2870318295335 87949 33380 198010 XTZ_20210114 1874185793.0909293 50333.17480131071 2.487193552863672 6.65517512946146e-05 195946558.02424642 5243.092794949921 79452 32044 186076 PIVX_20190421 54721149.4353865 10304.619034036486 0.9180047764050941 0.00017284035722483316 407833.9935283895 76.78628144606893 62837 8595 268196 STX_20191127 48879121.44852997 6817.664225426178 0.1143117044509531 1.5965338109328215e-05 920876.1956604064 128.614124784207 34052 None 47074 WABI_20200907 7326700.068798681 713.4741846227956 0.1239781824703279 1.2072997641288309e-05 1236024.96136143 120.36413299300845 41673 7643 1644461 HOT_20200707 101585805.7682205 10882.481134650152 0.0005705399500044549 6.106496983782862e-08 12238039.981561508 1309.8391135315921 25404 7113 637680 PERL_20210813 0.0 0.0 0.08586064111703749 1.9312779427631664e-06 9803807.929842656 220.5187122255794 463 687 3927089 OAX_20210731 7189679.904333188 173.03472913307897 0.1256183165316369 3.0081516746936133e-06 713646.7128849642 17.0895265418068 14088 None 1648696 KAVA_20210220 292721549.77382725 5240.54594782456 5.002917832984368 8.942171786312612e-05 102103258.56249179 1824.9847558728604 61362 None 92615 REEF_20210325 385141747.8643581 7286.522794358875 0.034035891863437084 6.45157565222984e-07 95507703.43010284 1810.3688204273662 88819 8400 35321 STORM_20200224 9824620.1798537 987.4925560886303 0.0013152881100246714 1.321806852134679e-07 980097.4014531069 98.4954894008591 25976 2524 1783010 BRD_20210418 32000201.647252746 531.2276693949484 0.40311623442294026 6.68777324681429e-06 1250264.5783301182 20.74212171178161 720 None None GTO_20190812 12146805.092810275 1051.8263448355694 0.018360516003732896 1.5890681829434598e-06 2544683.827815737 220.23760691750908 None None 944506 XEM_20210511 3029356249.605454 54265.87245641894 0.33651170710328426 6.021653825842969e-06 293234345.538688 5247.234141960009 355485 21361 27944 NAS_20190812 37205243.86267319 3223.8795307589385 0.8173148480272807 7.079357626567188e-05 9585925.303823184 830.30662627897 24288 5111 652054 GAS_20190821 22891171.08865638 2127.3158079279783 1.6392665495230074 0.00015236817170101428 1425456.4038570768 132.49473440326375 324229 98206 189804 OAX_20210107 6116203.856343945 167.12163003351674 0.10956482978403108 2.9716795195270055e-06 382397.35837853485 10.371598262459436 12801 None 1823390 XMR_20210107 2531795515.3816514 69074.43418544353 142.31426472519422 0.0038557754528948077 512097408.77822626 13874.453288789446 333793 188463 59059 DUSK_20210506 99641438.84693018 1739.2400716893817 0.27847655976817814 4.857615436519585e-06 6073169.827813712 105.93754651648786 26765 13581 280853 POE_20190302 10254452.160075814 2684.4051919521366 0.004511928718705121 1.180072583384589e-06 473483.1071663346 123.83715885101412 None 10986 618100 GXS_20190616 145867773.74864623 16541.250448603787 2.4363921877750894 0.00027631577809624224 12438388.077514296 1410.660770111884 None None 715062 AUTO_20210722 23833666.4334878 740.6140290841354 707.6642958895362 0.02193931823122219 2119567.70484401 65.71176567660655 71522 None 11033 SNM_20200331 2841175.783189825 441.97750288 0.006484596108449002 1.01e-06 78206.92152356233 12.18101936 30000 9692 7459363 CMT_20190704 50669354.69504919 4225.824804864201 0.06344649518229982 5.286639136270092e-06 93684152.00969067 7806.172792360604 291134 1646 722276 ZEC_20191011 285265520.7374084 33315.78076918938 37.5286718730223 0.004382923675628412 192267639.5085383 22454.68190588798 136 15339 177381 RVN_20190629 204815718.86523193 16548.58075382339 0.05304086329836261 4.284290112827715e-06 37231267.04191168 3007.295495520991 25902 6717 184956 ARK_20190103 56806215.80273394 14668.664068864364 0.40951586469009005 0.00010577057026378881 295908.2284032851 76.42776449612924 63014 21806 157358 GTO_20200414 5294380.11391115 772.7607680705174 0.0079894982570753 1.166790118372844e-06 11173923.927531356 1631.8451550505904 16819 None 1069804 NAS_20210722 13383163.8825531 415.8833107889192 0.2951987628717876 9.14030951812804e-06 3790022.1894400553 117.35135864069088 25257 4926 687324 NBS_20210310 0.0 0.0 0.020478554135850154 3.743765243478747e-07 7785270.140864845 142.32559374608752 None None 714123 BCD_20201124 108765951.26069266 5938.964585553243 0.5823793846185698 3.172135881979516e-05 2136982.4038897264 116.39832627278228 27759 None 3884204 GTO_20191220 5993008.343067662 839.2480076954238 0.009057408287752556 1.2675428818815817e-06 4779772.510940735 668.9073110956682 17068 None 2742398 LTC_20200106 2754444566.012892 375049.10277619277 43.22732337719152 0.005885382000753693 2498422925.5879364 340159.23651391605 449146 210187 182245 XVS_20210718 166383271.4234773 5264.353286241365 15.988666881028418 0.00050585009717896 13688764.221499728 433.08568270453054 118281 None 12441 FORTH_20211125 119755252.11279382 2093.3510030656935 13.837101704604406 0.00024191182643011985 6812788.532355447 119.10688756416855 35459 None 122024 ONG_20200414 0.0 0.0 0.08305598462038666 1.2120789468891023e-05 11454868.258014755 1671.6681788057401 None 16509 252464 SOL_20200704 12672163.175031388 1398.0233944727756 0.7674704652113047 8.467115120395606e-05 1136961.5458983239 125.43524126278338 59372 1952 104192 DNT_20200701 4709165.797129211 514.7638221158747 0.006267354118997075 6.852412939586381e-07 64719.635021676986 7.076122651560264 57978 6010 675973 ALGO_20200208 183344261.97193056 18719.809410796417 0.3132858421759995 3.195611837257779e-05 90085524.8830902 9189.000297059618 14386 766 450102 ZRX_20190821 101653102.16999936 9446.838606813408 0.16901130751198515 1.572102439925347e-05 25920285.273582015 2411.0424516578364 151261 15902 173586 NKN_20210324 106285934.26171565 1949.6835946104707 0.16316730731548726 2.9932393811232683e-06 16175054.494148584 296.724943864444 16721 1157 267321 QSP_20200713 18962715.06630409 2043.836534207679 0.02670638310292071 2.874342612488643e-06 632854.148191623 68.11254218241359 54817 8228 412251 SYS_20190723 18107077.586414922 1748.790691591607 0.03240821383203972 3.134603438640217e-06 367122.0005035417 35.50895742489765 61155 4599 748817 GO_20200410 7467285.244426912 1024.4660274729654 0.007886585385190773 1.0816212097515223e-06 1080697.8457676433 148.2144241422915 10712 677 675555 NXS_20191011 11645518.286123632 1360.0645923179145 0.19504154419608208 2.2778642545105594e-05 107512.44029056848 12.556234912028874 22078 3534 378466 NULS_20190625 66951477.67305232 6063.950606646512 0.9426143017069514 8.53447779589729e-05 13101252.266022697 1186.1940388591836 21165 5316 640711 GXS_20200730 34556513.99138832 3112.100528609343 0.5301949973240705 4.780311446089875e-05 3135693.752118306 282.718486789523 None None 592521 BTG_20210304 496166909.5772584 9763.074705428082 28.326049957908634 0.0005590497632176858 58103604.64202402 1146.7467742761767 86118 None 197145 HOT_20191203 138698521.88840416 18978.235575262228 0.0007782938564090234 1.0652740747708136e-07 6331979.577064519 866.6769793799042 24545 6736 592618 XMR_20201130 2198434603.0248895 121194.35784389087 123.87128119320602 0.006820949469538097 264329981.43788904 14555.282138881055 326878 184612 74604 SOL_20210324 3797038254.76521 69651.955781798 14.194567786228824 0.00026039370260375104 133887151.90285721 2456.106571196857 132716 5835 35910 WPR_20200129 3749519.2711927593 401.19187963062143 0.00620223363563512 6.649060170791403e-07 213022.21441215766 22.83689400547102 33742 None 766614 STORM_20200403 8649264.668619925 1275.3831275276002 0.0011406205520133061 1.673019073446037e-07 273819.9482347817 40.162874084479256 26118 2516 908527 GLM_20210620 261046891.40541 7320.806145801906 0.26033343005386256 7.3119943027587115e-06 1763220.654665863 49.52364119642954 158043 21001 155421 ADX_20190401 14268091.079148749 3476.9223672249973 0.16393208453988212 3.994903623731472e-05 2163517.4030945385 527.2331854918712 54652 3929 994685 VIA_20210523 19780879.813462738 526.7200739932493 0.8535728983371846 2.2728715022311765e-05 228437.42005492028 6.082771642556758 38368 2284 795875 LINK_20210916 13812895164.234589 286615.4856997817 30.670810609541775 0.0006362395618433836 1812550197.4171205 37599.79343568567 477178 66581 29295 ENJ_20200325 76337231.394382 11293.421205772478 0.08289346358210778 1.2282193326540513e-05 7604314.224425881 1126.7192054008967 53892 15279 111026 SNGLS_20200322 3103006.4623932214 503.55889114696447 0.004812504258942199 7.809778476593713e-07 248601.03712458507 40.343216847795794 8431 2130 1285734 QTUM_20210304 556051518.8196399 10933.974398860872 5.3772938551543055 0.00010612732260169961 457623949.18714744 9031.755710931764 205637 15583 119513 BZRX_20210111 31530084.61144193 820.2302225532088 0.22405567771495727 5.828163382200747e-06 16365849.090987183 425.710445561931 None None 145216 SOL_20210115 859145982.5611855 21997.859181361862 3.2781934892090505 8.356556144853638e-05 76404702.33595315 1947.6586324234095 107069 2967 92318 BTCST_20210930 105398091.28880504 2536.884321985805 14.474907033118294 0.0003482342421774137 1634877.3981679871 39.33153356366417 63301 None 1943121 BAL_20210314 523143938.05498827 8526.154639615834 48.196461783477886 0.0007856536217962192 108009514.32541808 1760.6700363076304 None None 67622 WBTC_20200903 449814345.29178214 39428.663388368426 11511.103003402448 1.008554870949924 25181326.660808858 2206.2828951520273 None None 209926 TROY_20200901 13104678.914685696 1121.4795579410682 0.006929583095629566 5.943896313457431e-07 2400133.2630583625 205.87303820769102 9831 None 412863 RVN_20200329 82802774.40047383 13262.108908414799 0.014326700588863662 2.2920340186819032e-06 9867844.801367085 1578.6911882131164 30189 7623 202553 GRS_20201231 27076775.58923306 938.9201639776525 0.3533749957736124 1.2253708270540796e-05 5851115.2118559405 202.89454466478156 37624 106781 4244799 ONT_20210131 472702366.75114506 13816.674852939812 0.586073829114908 1.7154485248524277e-05 205500937.7463796 6015.049009187198 None 16665 259663 ENG_20190622 50753946.62198041 5013.842963262653 0.6537854012082652 6.461925743302923e-05 2620501.8027292066 259.00682438201716 61783 3462 334360 AERGO_20211125 96508411.97675677 1686.9912672010514 0.36542675247801887 6.389298875893471e-06 1420530.1579789163 24.83723941939203 None None 591962 REEF_20210509 531755271.38930494 9067.580063971709 0.042105305166403977 7.170399948587439e-07 219401641.48844197 3736.340379511097 134399 10882 30709 BCD_20200523 103004302.47299677 11252.404028957775 0.5474554113736436 5.9803817936130525e-05 13437686.887432287 1467.9277314700741 28427 None 907127 COTI_20211120 379474461.67329735 6527.913796371235 0.4380013974012651 7.508891663364506e-06 27263982.335577115 467.40099662782694 194923 9337 53932 ENJ_20201129 133334166.31572038 7532.265875011716 0.14426356353521438 8.14390316239834e-06 9356669.02075423 528.1985593613509 67266 15974 80924 OGN_20210819 326867369.8847062 7251.602334550917 0.9566238220488684 2.1261996644200266e-05 46107156.967589244 1024.7813133263348 None 6088 109678 CDT_20210217 14348961.432906631 291.7664106754075 0.020951963613806256 4.258037784674835e-07 1868407.7302564716 37.97138473153981 19904 298 552425 PPT_20190224 48035429.45939498 11673.893990747478 1.2981135700849324 0.0003154763135392006 1406830.1861743429 341.8973587040699 23339 None 575286 IDEX_20201015 35361211.422960676 3097.883108518019 0.06572601240313983 5.759336804746967e-06 354427.90873539355 31.057257618016347 40086 1962 21074 TNB_20190522 14078238.32120192 1772.6167652506654 0.005387793356871522 6.783869269859934e-07 2784067.331981769 350.54701558967815 15800 1502 532164 GVT_20190614 15410370.249810722 1874.2396049296779 3.4742838152763476 0.0004224903588460271 1305449.9149305376 158.7492652699844 21340 5778 170487 NXS_20190613 22164852.211191557 2728.153947710728 0.37167737304266246 4.570637801220096e-05 382278.11173410894 47.00998540124749 21317 3518 793300 CRV_20210729 540305103.8067096 13505.836208182393 1.536386993307792 3.840129395667238e-05 67300643.57697777 1682.14896945239 143932 None 13850 DCR_20190228 155666846.8701835 40779.7833971484 16.67102773262291 0.004372530388292799 1340968.0492258435 351.7133819827917 39804 9366 245960 CTSI_20210204 20161036.284498416 537.5947630216008 0.07717371893636478 2.057840011675909e-06 5412805.657092856 144.3326589687356 None 204 421222 ZEC_20200711 534852221.9831409 57601.953351281736 55.896869061367624 0.0060202214115543905 250740495.55390546 27005.32830238 71661 15874 226446 WAN_20190124 33601040.04465779 9458.609067697076 0.3165355715636164 8.910397486093027e-05 2838433.6626200504 799.0120050936673 109115 17308 539346 RLC_20210314 170402853.68797532 2774.5012618257297 2.4057028130468794 3.9209132273824974e-05 15321101.881759595 249.7096096012897 35736 4128 336162 APPC_20190608 10568835.737886967 1315.1768509292801 0.09877565796650135 1.230338954647389e-05 1019952.460300792 127.04417967249478 25543 3373 1192397 NAS_20201228 12456562.08182092 470.5083898093365 0.2712208331560049 1.0313242018534214e-05 3328750.028789784 126.57657697838131 23345 4859 1482948 UMA_20210131 620901492.322604 18150.267616618898 11.134921352474255 0.0003258896978961216 36668017.82371241 1073.1759006419861 18828 None 180078 RIF_20210131 114905454.71029288 3362.6539964559906 0.16684210832352406 4.881459352988833e-06 1874370.5124962428 54.840253225817044 43809 3004 663041 IOST_20190626 166896579.09888428 14136.05410249693 0.013936415800565781 1.1787809918476695e-06 90418118.90874957 7647.817158550146 197928 50190 103864 CKB_20210429 623975003.186477 11399.323475831285 0.025139882235412546 4.591580307067702e-07 53024311.35326149 968.4428173753001 41697 3385 121056 MBL_20210106 5340692.520040734 157.18525485061798 0.0015316928336351118 4.494919725173468e-08 3169396.803210347 93.00940694383195 None None 990117 DASH_20200914 731328702.8803897 70827.64361434922 75.35237275051365 0.007297718497371574 326802211.6421969 31650.10546886784 320001 35350 76082 POA_20190605 7033507.748700364 917.4414079514729 0.0319593765708517 4.167395506568025e-06 536568.3480532984 69.96671282641212 17556 None 614936 WAN_20210301 124153923.19699316 2733.827171444148 0.7461336507022588 1.6530680289484768e-05 5959048.5386931775 132.02343324140884 105998 15876 322886 DOGE_20200625 302858875.17684853 32583.282347701806 0.002420458392516692 2.604066965783429e-07 131959061.52756831 14196.907247904857 140568 158323 114634 ASR_20211028 13573196.705633597 231.9144301758837 6.3425501971522635 0.00010838628097965074 3646920.9443077985 62.321335408238944 2033806 None 71825 POLS_20210828 138585068.94895473 2825.6882945769385 1.8967557316947727 3.8666256652120175e-05 22272553.755233165 454.0364715431754 386798 None 25468 OMG_20210819 734442630.868479 16293.721513034918 5.219607718294141 0.0001158963306577548 263028120.44970468 5840.284493618887 326016 5027 356595 SNGLS_20200207 4844354.84197635 497.4718358406448 0.008374632411383837 8.599997101950573e-07 431433.6351362844 44.304368593092036 6227 2148 1210884 POLY_20210804 225654305.91898924 5873.257272311618 0.26189525451658374 6.81743060142913e-06 12450900.78150023 324.11107318396466 47872 5795 197469 NULS_20210207 44703388.26734364 1139.7930967174439 0.4015522013156134 1.0207604519052603e-05 50570072.045654416 1285.509814790714 39276 5097 775793 BEAM_20190930 34630039.214251176 4297.147965798254 0.9167758564173324 0.00011385847450331235 47262267.7508392 5869.711413111239 11567 1365 185690 APPC_20200629 4421507.123738247 484.9533126853114 0.04069716897559579 4.462310287401405e-06 293743.94518370996 32.20805430572224 24461 3198 1685690 GLM_20220105 476956957.9983252 10297.09498450468 0.47736224569720387 1.0391417911063785e-05 24152044.117544338 525.7516405917206 164106 21798 208647 JUV_20211104 34066133.124895334 541.0468560937729 12.634979132929823 0.00020038352672940672 3812863.840342509 60.46983498972314 2747655 None 32257 FTT_20210110 870048658.5154401 21500.91065823764 9.577311531606234 0.0002377487987285511 26644522.74267296 661.428131878221 46470 None 5141 WTC_20190117 32484963.221013665 9032.619698978697 1.2587822667667603 0.00035008131372262755 5654002.478816581 1572.4408166784708 54696 20464 575473 MINA_20211011 1084263843.9520485 19818.57018710501 4.156196047283827 7.596772725152395e-05 36003076.5130887 658.0709537389374 None 10697 72538 ZRX_20210825 909009629.1253155 18916.115612421465 1.0682721959375285 2.226925616380678e-05 131057839.1530479 2732.038335803401 225411 19718 54566 ADX_20200322 5472410.420137189 888.1416347884413 0.0588884820980482 9.562080975153289e-06 2502755.3912694203 406.3876136673735 52295 3769 39887 TNB_20200404 3307248.091338202 491.80669140063117 0.0010690016701230005 1.5886810944902258e-07 233290.9283216204 34.6701878677129 15063 1442 2723419 BQX_20200625 11833437.629484938 1271.8884494335896 0.053085989620461786 5.71129304862088e-06 472785.331318818 50.86493810431477 12308 33 380325 UTK_20210203 137977801.19998375 3874.399257727207 0.3065255921841895 8.622175245420604e-06 11372544.40150045 319.89521696166406 58668 3228 107548 WAVES_20210523 1801681141.429145 47974.69238349703 18.01681141429145 0.0004797469238349703 198002648.82630154 5272.362545252838 188681 58764 102024 RDN_20191118 8367798.468956128 984.179955420368 0.16398287207564458 1.927035654319455e-05 1143318.7668592345 134.35647272807634 25361 4364 2199952 TWT_20210617 122703983.78355812 3207.991887689609 0.35481537236248506 9.27072575532344e-06 9488306.648165597 247.9134098161072 878286 37792 2948 POE_20191011 6888503.320024851 805.3548011659439 0.0027386714223561486 3.1992532271963454e-07 145102.55067496578 16.950547617060447 None 10686 798754 NCASH_20200127 2085050.381961157 242.83156383392483 0.0007192336859941171 8.36928807894536e-08 213592.8771766271 24.854513289810058 58376 58504 1029178 CHZ_20201106 52128535.246236645 3353.702660234679 0.009692063331854014 6.220586200259227e-07 5481544.745286137 351.8179816939729 43662 None 330052 BCD_20210804 388893345.19770455 10121.560972604113 2.0630916917994857 5.370807156049983e-05 7143660.639785908 185.96955160577374 34405 None 1282493 ALGO_20200411 125894178.45383656 18358.888401431846 0.17882710622901188 2.6073810413381665e-05 94735011.8411234 13812.798240394406 None 834 317295 LEND_20190227 8619962.29268173 2262.9263906615774 0.007731602154937645 2.029712655861419e-06 259904.79570226924 68.23062575963947 11668 5944 428546 KNC_20190513 35665663.30039403 5139.796746263164 0.214858581894368 3.09084092680797e-05 5963655.292372298 857.8996327966746 96482 6665 236085 MFT_20200106 7768442.699564499 1057.4236770984546 0.000844918260166258 1.1504892433179533e-07 742224.1569535742 101.06550526411796 18544 2413 945394 RSR_20210124 354496716.07617253 11072.335038442438 0.037954151260856876 1.1842843531683238e-06 107779193.08448064 3363.0369202511397 54940 None 125159 OMG_20191030 145427839.46170205 15454.276052978377 1.0367707938212494 0.00011019124847655726 115169595.50323924 12240.58547045649 286102 41838 None XMR_20200316 664485407.102783 123657.28894503388 38.00490766255599 0.00707251626284561 134857172.4804802 25096.220572304526 320572 166842 83083 KLAY_20210819 4428565231.873341 98302.33894447578 1.7670112182679678 3.9234771553919676e-05 117086683.09738506 2599.7963203850068 42751 717 64531 POA_20190701 6825512.024977806 629.1210772712321 0.0309383191368153 2.868354129523483e-06 263660.57742562366 24.44450529800767 17714 None 637225 KSM_20201208 480067373.9576637 25001.193879820145 53.54898570336859 0.0027892725909043426 47819259.43662257 2490.821215601935 16116 None 195768 NAS_20190901 30351814.886934888 3162.008302829893 0.6666595197513082 6.944904481236067e-05 9552539.407986183 995.1327743201732 24189 5095 765651 LRC_20200725 139900614.65724406 14663.11539586374 0.11789391748937977 1.2360903628357796e-05 20050578.508351993 2102.2566211432195 37050 6943 317120 QSP_20190719 0.0 0.0 0.015528487705574473 1.4537982767998041e-06 161162.62298740784 15.088265388491173 56843 8595 708512 WING_20210819 41339532.70022954 917.6273900306024 22.139233122691035 0.0004914966683971947 3616826.593501224 80.29448043772851 None None 465613 CMT_20200315 4804645.552667045 929.9422643817464 0.005936609607647555 1.1458200062344609e-06 7274267.464593478 1404.0002194003905 286739 1639 953076 TROY_20200927 5830091.590729557 542.9591678889595 0.003068882120928768 2.8571425112998334e-07 1277301.5250177633 118.91732373780106 10031 None 407849 SRM_20210930 929168065.2623626 22364.654505886127 6.986247330398587 0.00016807365596193598 146062915.32297114 3513.950625820432 145149 None 20949 NKN_20200707 14206902.356574453 1521.928636663966 0.021810491716543468 2.3360319575182376e-06 2978315.858214509 318.99514760115034 12949 1011 257526 POE_20190922 9321417.806911964 933.0202025391948 0.0037014884886655943 3.706541927471841e-07 920352.9117370636 92.1609418986473 None 10709 709572 NMR_20210823 256615812.8266066 5201.596314930989 44.409283064251994 0.0009012762881524021 20392822.321240555 413.8676857279437 None 3569 773013 LUN_20200403 1622818.6506084441 239.508146312597 0.600001244564853 8.80140698914483e-05 2475037.092724933 363.0627263465176 29457 2147 2462612 BCD_20190821 130567346.0020084 12145.059774167968 0.6939280325221261 6.454751277415379e-05 3839472.636303395 357.13848904051196 21409 None 2670030 MBL_20200626 6478527.0575503595 699.6614604617762 0.001815325246367799 1.9619201681441963e-07 3054876.141061335 330.15698560479524 None None 98969 REQ_20210707 39990536.291634284 1170.757816649881 0.051805509777700966 1.516847729513638e-06 1116627.760422355 32.694481540216465 43404 27772 349393 SNT_20210218 382003451.091139 7322.400791082722 0.09820813465073487 1.8835285623037523e-06 60535091.69023367 1160.9992861154344 120337 5788 158734 ENG_20200316 7954501.64700774 1471.9655357258007 0.09607549265512011 1.7789739855667818e-05 613567.5647283649 113.61073525352919 61258 3605 414852 WTC_20210703 16658166.189543603 492.8730307977132 0.5724858096222776 1.6901470922443144e-05 2869060.8312583584 84.70314442593428 65573 19849 588715 OST_20190914 7460408.719206873 720.4685062985892 0.0112083130098663 1.0823640524028906e-06 424856.70033568353 41.02754977141171 17970 753 572437 FUN_20190430 31223796.722695205 5999.17471501155 0.005188746478809562 9.969389291694422e-07 676918.1151546574 130.0595478337013 None 17723 481860 ONT_20190405 977121678.151452 199275.152334089 1.5905137295561815 0.00032451905797620245 159265806.78638244 32495.657614070944 73000 11337 248801 TRX_20200422 826981631.3481405 120757.76972218172 0.012542611800182612 1.8322529349485428e-06 1334220068.7724853 194905.8677587423 505552 72549 64875 TWT_20210212 249869767.62441602 5241.0460410993355 0.720187097514104 1.5106004108310887e-05 32749432.57148947 686.9229741512856 None 10701 11832 VIA_20190905 5485857.474403871 519.3403529987943 0.23693421512479262 2.2430312762322247e-05 108176.3646242781 10.240942578662924 40713 2217 1917066 GXS_20201208 27976080.217713717 1456.48380554744 0.3998094886952515 2.082354170907429e-05 21742178.985827997 1132.4122707419 None None 450056 PERL_20190920 14727587.397038931 1437.9571961894808 0.056360050501434895 5.502825276897363e-06 5246771.994999161 512.2789866106228 11282 371 279806 COTI_20210620 118846319.09839347 3333.7807763758874 0.1773560671296922 4.981406161105354e-06 12073488.426950082 339.1084985666919 120648 5293 80399 OGN_20200501 6363312.834610378 735.2908787056754 0.22177790195535285 2.5729178100197344e-05 14648347.382309603 1699.4025795630296 65525 2220 153973 COTI_20200610 11548238.016096132 1181.3798562213103 0.022331805268960017 2.285816166019278e-06 1631734.4429779162 167.0194112606589 24145 981 270348 TNB_20190903 8274592.978727565 801.6075935543131 0.0028710767827633977 2.781339456558708e-07 471592.2225672376 45.685230848128334 15583 1465 1259839 XRP_20190904 11305577074.081997 1063871.6654842983 0.26296075290134663 2.4748519420451875e-05 1366405318.8458538 128599.07114105384 938088 205066 31314 HBAR_20210318 2750224827.6486583 46731.59544469167 0.36405538101169826 6.176472865979309e-06 640311670.9712228 10863.368234066967 None 12156 57776 PAX_20210909 0.0 0.0 8.973351030417652 0.000192816 87.11329180329456 0.001871857728 5 None None CELR_20190807 28352008.243187588 2479.937885032343 0.009035740591501747 7.87516511851923e-07 13660957.1727274 1190.6306109919833 17914 None 493170 WING_20211125 43218068.44869121 755.923788680809 20.505809324439596 0.0003584997705445994 6385207.644266411 111.631559580577 18585 None 280079 ETC_20210124 867084098.6442057 27088.820751261483 7.450507823444872 0.0002324783862987835 1073314611.5579972 33490.663294215265 259403 26624 164892 TCT_20201231 4797685.8791785315 166.09523094475946 0.008276471702977113 2.870410267334666e-07 915859.8584746309 31.763457129438628 None None 2530365 NAV_20200530 8117220.184311424 861.2675901700063 0.11850472429539811 1.2581488399169747e-05 297721.402210049 31.608683876206786 48535 13869 1211272 BAT_20200730 367132694.9094588 33082.87544254316 0.24686609797026154 2.2241883601372564e-05 127465876.58804202 11484.28728581304 120080 43079 19525 WAN_20190220 31878557.620661914 8141.034400114849 0.3003090810185863 7.669188136838999e-05 2445221.1980955475 624.4520259186231 108281 17238 506668 BAKE_20210724 331494660.97014254 9915.594022810927 1.836567226286851 5.49255957570808e-05 54360803.91771118 1625.7502030300257 342615 None 8420 STORJ_20210813 165859926.76379824 3730.629528742878 1.1539301277500982 2.595554580329624e-05 49109528.741726555 1104.628947611831 104058 13723 58754 NBS_20210114 0.0 0.0 0.01519023113867384 4.076060739211774e-07 3734826.824427533 100.21823136085017 None None 711556 TNB_20200417 3336829.7073994717 469.9418539095862 0.0010274654971906374 1.4496658081432621e-07 319897.99524950265 45.134867017411466 14990 1441 4384247 LUNA_20200914 135562114.98774925 13132.79756878889 0.3093254087077793 2.995245967123298e-05 6243650.306528358 604.5823548373407 11876 None 170396 GVT_20210620 12273896.063378787 343.9155193302008 2.748210201532324 7.719521579917493e-05 410659.533707853 11.5351261366 25762 5671 273194 ICX_20200127 87880013.59034082 10240.404594348242 0.17073027486636824 1.9866851094149776e-05 22552620.034537576 2624.312204497934 111565 27091 113560 LUN_20190826 2994833.708250434 296.0825764716038 1.1078206896355625 0.00010952407913408507 338221.8804262476 33.43811895124428 None 2198 1281939 XMR_20190623 1960191049.801051 182702.0725214463 115.01962125388197 0.01072292861394805 182086842.32759565 16975.401157931778 318341 158622 113923 BCPT_20190421 5063201.957323741 953.494652140438 0.060359055207556876 1.1365402379188207e-05 1553444.8498224993 292.5083192803166 10458 1721 1630798 EVX_20190321 6113313.200383986 1512.7628314029964 0.31762303589708035 7.85600178311615e-05 450477.38701676205 111.41985170130782 14248 2303 1271428 ENJ_20190523 135087540.0515987 17622.805962122897 0.15457978312640125 2.0184616578143328e-05 48975791.0838976 6395.128422656483 46055 12481 19374 WAN_20210210 103560214.8939907 2225.99143269846 0.6331739781146165 1.358901590500486e-05 16742813.489331264 359.32992615793717 104487 15830 443553 TRB_20201228 29053332.70557318 1097.425271952763 17.830630026129988 0.0006780142980264647 31843377.69849842 1210.8526364687855 None None 383463 BNT_20190419 46163895.97817204 8754.000249485942 0.7087094742963224 0.00013428054361483579 4371434.441765458 828.2640694195783 816 5140 152129 MDA_20210125 12297866.128274173 382.33999056844186 0.6283300390644595 1.9475915133044622e-05 433794.4484036102 13.446028897287674 None 370 3273620 NXS_20201106 10208265.598941846 656.958046677312 0.1718871969307571 1.1032110383704756e-05 71754.38407144308 4.605359210725827 23094 3516 726240 HIVE_20210206 62346644.0684141 1645.2535577281449 0.16854862227910095 4.41562415666505e-06 11006216.855180498 288.3400431405073 11243 107 140605 TFUEL_20200323 0.0 0.0 0.0016090307015405412 2.759494212506417e-07 2010892.7669840571 344.8689292970403 68289 4027 384607 ALICE_20211021 212998888.8621806 3213.5116731056773 12.196086846275994 0.00018468108310633872 62278977.4543826 943.068801985665 123494 None 26870 ROSE_20210729 97162647.8183504 2429.8537559907013 0.06485498082052626 1.6205104466015545e-06 4367278.395264647 109.12377389068212 25148 1677 227884 AION_20190430 51129701.983464465 9822.042216410959 0.17005170325486602 3.265918059731943e-05 2133658.1604238437 409.7784724319289 68788 72505 254752 QTUM_20190723 292451308.240867 28265.986520441656 3.0501447014955096 0.00029501761865708813 356120787.9012572 34444.89264702825 178988 15356 354208 REP_20190723 132996899.69882184 12851.098274564341 12.083357393876422 0.001168371211480173 5431592.4798882585 525.1947847880186 126187 10037 220680 GRS_20201124 16403422.647567494 893.4705956616912 0.21478884326951728 1.1699236181417283e-05 1583486.3550984673 86.2502007848827 37294 106800 4271463 VIBE_20190312 8050654.774034094 2082.2831529021523 0.04020295115065872 1.040100859602972e-05 2854806.3002920114 738.5742593389316 20481 None 1228279 FET_20211011 536214755.9803265 9799.622338980538 0.7784062132670588 1.422785408282384e-05 117216394.77008283 2142.503146144903 81427 5783 86212 OMG_20200313 58072006.946889386 12062.640630101076 0.4137699413174992 8.634466529477921e-05 101856530.0436252 21255.212417559178 281653 42890 381601 STEEM_20200316 47904753.86173456 8914.826310406761 0.1405246218821763 2.615090352057654e-05 1034048.577943674 192.43107887575272 10938 3837 219600 ZRX_20210813 805089071.579802 18109.052689483287 0.9537574756375449 2.1450897730320708e-05 89554968.14685449 2014.1749994422612 224133 19650 56204 REN_20210909 592595613.8874725 12786.037819386416 0.670650395691432 1.44858515219815e-05 62776160.9877485 1355.946634834961 92535 1191 119029 OST_20200325 5304642.755215549 784.7629969863235 0.007667019344046872 1.1347776484253507e-06 297983.5540597418 44.103850736713994 17796 754 732102 FXS_20210930 159573771.95807576 3841.604189313552 4.481645434448077 0.00010776964310247598 4230593.70446103 101.73262930102713 15135 None 92026 CFX_20211204 339607472.34454644 6325.077798686071 0.29448185001335486 5.482781860763252e-06 47889799.990027875 891.6316122334784 47156 2182 180578 REP_20210620 107211270.69941734 3007.4038134293414 16.527131516343655 0.0004641981303109856 25154050.26333466 706.5027037778254 150492 11193 150117 LSK_20210304 466620299.69277424 9181.686156481646 3.2604804299478203 6.434962922987113e-05 47258191.181078725 932.6990748493618 184211 31579 160114 ZRX_20210418 1602507685.452705 26583.232195669483 2.0400856875474207 3.3939103195538806e-05 241139363.58811972 4011.622548640381 207427 18865 55512 BRD_20190510 23207465.8276714 3756.6934832574125 0.38677527134396045 6.264383002346819e-05 385961.2691912917 62.51199064213099 167 None None INJ_20210310 178214681.4786014 3259.31526488533 13.224165761702844 0.00024152236220255927 30850246.91434927 563.4400417804806 52524 2625 104898 NAS_20220112 13030296.702077633 303.95778548494417 0.2839971165118331 6.638620074219081e-06 2107194.36421268 49.25705929116624 27053 5247 595906 NAS_20190805 44109925.84315246 4029.798698653475 0.9696944277928757 8.855702130341827e-05 11371008.08070825 1038.4535333843444 24345 5119 652054 PNT_20210603 51190223.995693095 1360.2520064945156 1.1587886418839193 3.0806858627225224e-05 9901513.372862637 263.2356856531183 39854 303 346623 ANKR_20200607 12612860.976243688 1303.1573965497712 0.0024382216985954666 2.5215547144172237e-07 2592954.8869185722 268.15763403086225 None None 5865 RVN_20210708 489784331.65164185 14414.286510705093 0.05348166141513543 1.5740753665715203e-06 28616584.05896655 842.2449649235234 64625 44382 58646 LRC_20210722 252751765.225216 7854.28930349119 0.20359518222555537 6.304226778960984e-06 19632582.17591839 607.9134532587253 82671 11076 261623 NEBL_20200105 6421120.831764646 873.7754897741028 0.4042437942685882 5.497612487883702e-05 65793.15022545493 8.9477006060443 39873 6042 753189 GAS_20190224 39176747.624220826 9520.99739326828 2.811368556383751 0.0006832377448376424 3688462.3155732607 896.3949848156836 316411 97926 150509 XLM_20191019 1276521519.840245 160395.94801901036 0.06374942607209015 8.0102714348894e-06 262172809.8868224 32942.655321575156 277085 104552 61021 PNT_20210814 33066081.095586333 693.7500102183534 1.0425404139785306 2.183825717742476e-05 9519646.236838566 199.409519257702 47402 327 329278 WABI_20200801 6853544.142321562 604.708121187783 0.1159927691871937 1.0239378508145118e-05 1726381.0814863176 152.39802848495992 None 7657 775803 LSK_20190923 129935403.19712451 12929.815931181758 0.959135685650162 9.548245007647687e-05 6105558.005738766 607.8114350179865 181415 31002 164016 SC_20200317 46331454.37476048 9200.491379745568 0.0010575792635534893 2.1001388859966791e-07 2863278.3398272796 568.5892670303052 107786 30205 162098 SKY_20190601 34490610.60963144 4020.606487307868 2.3077411102442564 0.0002690876254768274 4892647.847906701 570.4933650673569 16012 3762 431254 REP_20200701 179939919.73388705 19685.58918526268 16.35817452126246 0.0017895990168420618 14004889.305931503 1532.1474960607432 133422 10209 217465 OST_20190605 15608466.093716212 2035.9475841379174 0.02459921382773306 3.2024179645741727e-06 1016529.3783387362 132.33560899573604 18111 756 1020616 IOST_20201014 91584504.15271558 8016.594721709669 0.006014019452871686 5.265293365300436e-07 48780957.00560617 4270.788468301019 None 52181 221783 NMR_20210310 229264579.74158105 4194.825847609961 41.60344781036693 0.0007605345853366661 18350801.175598066 335.4630372534018 25884 2658 2364685 DOGE_20200324 224695676.96147153 34920.151295863056 0.0018169736593557822 2.820238309687904e-07 140961242.04309145 21879.474858874244 138924 150873 105974 CMT_20190524 31240968.417694785 3963.2695680770807 0.03900180619889854 4.9587059978631335e-06 5060695.468761747 643.4189444030505 292224 1643 879969 REP_20210819 173269520.56360638 3844.010677079075 26.335491478253545 0.0005848449078273854 80587061.65288948 1789.6355829691727 152870 11307 187615 APPC_20211104 8720684.328350786 138.52336545041086 0.07497105848035743 1.1900971685316196e-06 994903.474789492 15.793185161170731 None 3103 913085 DNT_20190316 8524927.80272663 2172.365695741092 0.014671336683254654 3.7386250369388986e-06 988637.6759735021 251.92970808680786 60347 6463 957318 ADA_20210427 39598607716.19428 735038.5852816135 1.2346524846888531 2.2910977160124733e-05 3178691426.014838 58985.76932671344 353608 357152 7301 RDN_20190105 13445908.224700008 3528.951447192373 0.2677249648248092 7.02675385590523e-05 1787945.1826141148 469.26705973430757 24880 4439 570980 KAVA_20210523 221668112.56704286 5897.928724555606 3.1662596598988166 8.430752691359615e-05 153894819.7486699 4097.734567429203 102870 None 74681 NEBL_20190312 18467961.189858254 4770.148934623138 1.2328205160658259 0.00031892061212578007 413154.59329904435 106.8797234312683 39659 6168 588480 NULS_20191017 24343222.69654384 3039.7594227052114 0.33108119497774635 4.13533126591736e-05 5570761.917666806 695.8095561621288 21228 5282 455576 THETA_20190426 70625837.79411992 13605.886625764504 0.0950418553525167 1.8299990136199066e-05 3638546.826479331 700.5899746769517 None 3954 258696 WAN_20200412 13508434.609837586 1963.1467840109997 0.12722248128644478 1.8486785783865502e-05 391225.43108472915 56.84923501357953 105241 16306 867725 ZRX_20210702 582673611.1209226 17343.972525638466 0.6907951975871406 2.0537766381208976e-05 83307431.63730572 2476.78121498477 221573 19529 58387 ARK_20211028 230363544.50960135 3936.4215093353178 1.43237898712917 2.4471725661381076e-05 5168001.070041265 88.29360493290231 74633 24095 144901 EGLD_20210202 1128854855.067949 33831.29144420678 65.94438582562911 0.0019743077638279625 182863763.84178278 5474.754888615882 None 4244 47707 VTHO_20210708 242846544.5198581 7146.625077782003 0.006502087081525717 1.9136980481754583e-07 13302206.048268558 391.5113013993341 388944 192070 29344 ONE_20200422 11376238.692835933 1662.0966639792873 0.002180281735646229 3.185004585005448e-07 8508297.211454358 1242.9111883120531 71614 None 276485 AUCTION_20210725 75773391.19840068 2217.7961583596593 16.577411416450605 0.0004852009230877305 4025628.5693990956 117.82531354337286 45590 None 56782 MITH_20210127 5911151.214911272 181.37295229075468 0.009587721674260655 2.9435706270429363e-07 3009109.2441528765 92.38404999209382 24165 2126 495760 ZEN_20220105 786390153.0382229 16998.41363226934 65.12610579674994 0.0014166950372030884 33699437.38345658 733.0674099672898 131504 9095 2152788 RDN_20190905 8206055.670907049 777.1117089956381 0.1621555007446977 1.5351090579800153e-05 962221.1748145495 91.09246584015663 25568 4390 1279478 BAND_20190930 7799888.834035635 967.8745974269574 0.49752587094560735 6.178995257703619e-05 1872703.3476454169 232.57936481159956 7372 970 None EGLD_20210204 1159707149.4792209 30945.258296991935 67.98064737572751 0.0018123672875216405 100492201.76094282 2679.126871445276 135105 4421 47707 TOMO_20201030 44157854.355188556 3280.2131828235933 0.581760239174264 4.3263968681145777e-05 8317330.439980184 618.5378433163327 33503 1691 69320 NXS_20211104 48923599.97584459 1021.8120047259132 0.6562261857309908 1.0412238889580807e-05 356852.78006441565 5.662127594470758 26815 4130 662048 NU_20210826 171220790.00672385 3493.092923916497 0.30851666724183163 6.295724266328202e-06 29911584.720082738 610.3887075214171 None 7241 175162 MTH_20190523 10718122.961282786 1389.9592819339632 0.03138138056837733 4.069634334153759e-06 4107565.8842995726 532.6818275607992 19426 2007 2077678 SXP_20210421 331435623.58014196 5866.5823325912 3.8438846964360023 6.817340925444145e-05 494300945.32623 8766.699134296838 166225 None 66436 XMR_20210519 6093492201.314453 142809.80910657038 342.17899759228004 0.00799841009328775 387734128.1168576 9063.25807739162 413421 219796 33793 SNM_20190510 9466428.23427807 1533.240441485337 0.023513234561048365 3.8083468491935843e-06 79893.99123654467 12.9401180005763 31570 10029 15333127 OXT_20211207 238063769.41123998 4716.498473390028 0.4081549488874544 8.087438353277314e-06 22570674.436073735 447.22951073165166 77989 4901 158922 VIB_20190601 8914967.627124382 1040.05991437036 0.04966222740657747 5.790860693625856e-06 1465775.2768498075 170.91662778045088 32893 1121 1919556 ATOM_20200721 738703008.6978364 80633.48413319048 3.880842632691582 0.00042361525425239866 167357161.79922053 18267.951926040078 None 8761 173745 STMX_20210217 84670039.30890591 1721.6488856295541 0.010237704893580299 2.0804290985887597e-07 30300316.3225928 615.7401529857996 25862 1173 138788 ENJ_20190903 69030295.33279766 6680.279509598816 0.078832267936535 7.62355649869919e-06 25038313.660954352 2421.3561758759574 48439 13713 25046 REN_20190205 13118004.623692723 3786.6329186787243 0.01743565879890279 5.032963584075206e-06 384594.49507759494 111.0167450904198 5546 800 10683667 TRX_20191108 1292913174.0345218 140244.36544651276 0.01954577588967491 2.1201226155096583e-06 1020688249.615457 110713.65258709561 482208 71584 68557 AR_20210710 482892205.64362067 14208.313056547102 11.019061530374021 0.00032423341280522875 10430261.912048195 306.9081161652236 None None 93046 AST_20210324 83523501.38508014 1532.7564154212405 0.485515141749061 8.896674112661158e-06 18393563.14927981 337.04723712689935 40058 3593 145891 NCASH_20190531 6523230.677840666 784.8284594854204 0.0022476659145728483 2.704897541560142e-07 1081965.412013584 130.2064316602331 60518 59270 936092 QKC_20200319 7369482.30120883 1368.4782285508713 0.001980219392777085 3.675404539130323e-07 1809798.6607250122 335.90935614524005 50298 9197 585547 MANA_20200713 53515678.47669618 5768.0188960884525 0.04057184245395167 4.366698218634673e-06 14118628.085324222 1519.5708250056537 49270 7042 70384 PAXG_20210724 307557115.92583346 9200.975779808037 1815.2944250071155 0.05428939727385198 9132622.973058738 273.12627081678477 23494 None 38365 BTS_20210506 347668819.754461 6073.063339214469 0.12858266668439433 2.2429361633701887e-06 78603966.7448794 1371.1309941111613 5369 7114 108198 SOL_20210617 10781816203.272686 281884.5172645917 39.54766089054998 0.001033976918134248 636535388.3933998 16642.271233079777 329400 23588 8068 ENG_20190826 31819960.76291146 3145.8628036519763 0.4059486964406622 4.0133893119447034e-05 473164.1838433514 46.77911506754948 61556 3471 308569 DOCK_20210724 43817429.8558265 1310.8560652978645 0.06358623196551608 1.9017377410321237e-06 4024471.4937896896 120.36393871551316 51838 15145 269891 LUN_20200713 3479780.9616135634 375.05723392026414 1.2885898640380833 0.00013874622456761464 865154.9544668902 93.1537543078951 28372 2122 1752609 LSK_20190725 217103974.0413307 22085.67102808791 1.615634543369863 0.0001647617707300307 12833054.923815548 1308.709857560619 182645 30641 196756 HOT_20200905 108021056.16650736 10297.910926799173 0.0006102012286685808 5.8196142326389395e-08 8308686.910486091 792.416506671243 26256 7282 305234 VET_20191015 229389914.14091802 27483.232431791574 0.0036405663186752507 4.3614702900765487e-07 65087910.00035952 7797.6600578188 113807 57586 285376 REP_20190621 199006107.3925135 20804.429093873237 18.081090434297895 0.0018918371376501564 10078249.192483358 1054.4942615112298 125684 9993 269417 COCOS_20200109 9818286.886192143 1219.9665333489845 0.0005671856496954805 7.06836365337159e-08 3021017.5210569645 376.4843213770037 13852 188 47947 CMT_20190510 25116579.049366135 4067.9919977103855 0.031381947816151015 5.083453253009082e-06 4320155.8540807115 699.8071139048365 292118 1640 877566 VET_20201018 712010131.951843 62680.77900664012 0.01098692299121483 9.668463175978638e-07 80635324.93577276 7095.887269328971 None 67844 83878 AION_20210731 62873786.72027164 1506.9973710784357 0.12729073435205393 3.047315655825266e-06 5096697.272068465 122.01395073439257 73596 73388 417356 AE_20190213 88554372.99333577 24361.616563452342 0.3885768593965247 0.00010693691458726468 46340932.74377805 12753.091819239433 958 6314 511202 GAS_20191118 21195000.941905025 2492.8534260865126 1.5219780737433046 0.00017891984801525116 1989051.9945454348 233.82786302775864 323664 98667 161604 ROSE_20201130 55766335.9192747 3073.748172974145 0.037211517187439 2.0491265322554818e-06 3644230.2039204068 200.67681634386068 None 528 None CTSI_20211120 462898650.07029617 7960.6484509020465 0.9734946922728742 1.6689138944551383e-05 57179340.01630035 980.2559355118672 61464 6282 116683 SUN_20201124 0.0 0.0 0.0001469087755624512 8e-09 2.4437968793594718 0.00013307833354424 40 None 8085345 MANA_20200315 30418271.55246091 5884.853698394504 0.02315142548862052 4.477912586689589e-06 19407813.750360504 3753.8290467506285 48051 6788 51080 SC_20190803 114163362.52663395 10846.801224759283 0.0027391797199271006 2.602497237275441e-07 8497561.307969913 807.3541019119015 109561 30764 197380 ENG_20200518 20646748.386595543 2126.762083793461 0.2537534328783283 2.5952487685968718e-05 2410621.3589884243 246.5449252254167 60549 3576 481598 ANKR_20200117 5350532.941477779 614.5330007377016 0.0013355335076879 1.532711246290166e-07 1192855.6312947713 136.89684540010109 None None 5243 RCN_20210602 34606672.88257853 943.6834935664448 0.06721693219734363 1.8324271295855971e-06 696041.8459394495 18.975069526851904 None 1165 2622819 LINK_20200421 1255584547.9226644 183357.2093812271 3.442231544040889 0.0005027595356755934 450372143.9497085 65779.68015119883 49758 14514 77374 PAXG_20210421 108053704.46068168 1912.6065771466062 1791.3162751263235 0.031731593193657044 17708505.455447562 313.6906078410369 16834 None 51510 IOTX_20210916 630148969.3147635 13075.41746970551 0.06632244583972374 1.3760388775461354e-06 49597476.66535676 1029.034066153831 111413 8954 69839 FORTH_20210723 122039234.77851819 3769.59332950781 14.240570003170227 0.0004398680292429093 14665996.130396519 453.0087498832919 None None 61730 SNGLS_20190411 10971900.380931797 2067.3114209081464 0.01857496444148106 3.4996871145518743e-06 985678.2782761103 185.7104803857989 None 2181 3255572 MATIC_20190916 28108124.855697643 2728.2491493327443 0.012821936152503547 1.2445311304277802e-06 4012935.5446518143 389.5061674241917 23222 1148 202428 IRIS_20210509 175608125.9649924 2994.6377856368754 0.17580600450180764 2.994240520236018e-06 19037053.88798745 324.22964334385165 23743 None 498236 XLM_20190708 2039033543.806542 178496.93646942763 0.10508602541982026 9.195901534847371e-06 283522926.47295064 24810.614963321965 274461 102819 66272 POLY_20190914 16661601.891526556 1609.048495751325 0.03264517221256635 3.152478063048405e-06 3141059.7173252604 303.3257655715846 35222 5060 289476 LEND_20190929 5030694.881163502 614.2383864557979 0.004487943162960808 5.467435591000253e-07 2792867.886893791 340.24105768066136 41521 5811 862107 MBL_20210112 5323277.154711338 149.82344727825657 0.0015114301682768619 4.243404442976119e-08 5834791.472431568 163.81425075154314 None None 990117 AION_20200530 40479890.97769535 4295.068676353976 0.09600855626778777 1.0241779121241955e-05 3484564.292606702 371.71830518003986 67474 72558 368589 PUNDIX_20210702 282699931.96684974 8407.602661709092 1.0943153886346477 3.25371814254017e-05 9759478.188103838 290.1776907476189 156086 None 60619 BAT_20210421 1880182536.1829185 33278.421900399924 1.2597073483733807 2.2345549396166022e-05 666334214.7515737 11819.891444876659 187304 68369 19254 REN_20211111 911232264.2174284 14031.43831823018 0.9136508477789678 1.4065623276568765e-05 85044358.49556597 1309.2549646333596 103148 1212 73959 AION_20191030 27616329.837892033 2934.6323486292754 0.07803679381244574 8.292532021800205e-06 1317158.9037798485 139.96708288201935 None 72560 187992 BRD_20190614 27169258.10599563 3303.918222314084 0.4563058978932268 5.5462429598703486e-05 4055697.7462012777 492.95626412206326 168 None None ZEN_20201101 57672180.898273 4179.607644630222 5.613275675545071 0.0004068041467164669 2429545.1689822534 176.07349193320482 75892 6134 190205 REN_20200301 45848507.91422676 5346.298728872433 0.05136637450476201 6.0057202697244746e-06 1617324.8934286206 189.09648556749443 10956 871 409604 ARDR_20201018 48355406.240142204 4256.8980359954485 0.048430240370131376 4.261468828630673e-06 3144893.6288144067 276.725163165145 64247 6306 1474727 FUEL_20190908 2853310.1803559083 272.5600120487057 0.0030356929179454124 2.8998196690559775e-07 49910.219236973586 4.767630960783319 1 1503 None OCEAN_20210711 187550861.45791805 5561.917475184499 0.4321865641486766 1.2821037917510643e-05 15487915.534351215 459.45702342752264 None 3249 96466 SYS_20190430 27843078.469669476 5349.625183595681 0.0504320622522428 9.685700275066919e-06 168924.59749790572 32.44271495913834 62333 4605 1041442 OAX_20210428 23781223.953123223 431.6420779907757 0.40389128296653803 7.332719708391815e-06 3646929.304203001 66.21066487898558 13825 None 1298527 WAN_20190908 29554591.071413197 2822.9340175899933 0.27841636344247894 2.6593195673605084e-05 8262515.654389703 789.2018013474493 108107 16861 451102 ONE_20200316 9412649.437435258 1742.25011622246 0.0018336068858880665 3.412247343225587e-07 17065165.053396516 3175.7387345846337 71403 None 395411 ROSE_20220112 1557909968.0568695 36362.130585455045 0.44567348985060373 1.04170700058704e-05 425017086.07174176 9934.251958276716 114465 7203 35703 REP_20190201 137915651.731097 40257.53846731036 12.444398233207549 0.003626816767455875 9046725.291045979 2636.5931370291487 122055 9741 231791 CDT_20201015 4367229.736855315 382.6030164314495 0.006472622246437485 5.67172876676002e-07 230455.11784426164 20.193962687128575 74 290 262589 RUNE_20210117 452178148.0223063 12467.333014075251 1.9702193115825903 5.444177205986515e-05 42664210.573214285 1178.912019330115 28267 2084 220522 HC_20200511 44615217.21455719 5095.642044066753 1.0029491778458663 0.00011440168860937603 26762226.047386225 3052.641069353692 12624 840 1050366 AST_20201226 11266891.376234198 456.2397876365621 0.0658204203234073 2.668191938873576e-06 532804.6983351699 21.598543341211453 34394 3472 210501 VET_20190613 421285004.6048575 51863.67888940285 0.007614049553238014 9.363775063223235e-07 18734315.766437944 2303.9503167630332 109325 55890 213726 BQX_20190816 11652631.167641623 1132.3243009721348 0.0823518595972444 7.993438729686164e-06 494863.27225298766 48.03363598189617 60513 5770 396128 WTC_20200113 10472270.011687713 1283.8113168680236 0.3594019273968854 4.4007878078726036e-05 8719141.15191823 1067.637292721279 55194 19543 1004613 VIA_20190908 5121230.600587169 489.28304840763195 0.22118396556350445 2.1131945301856183e-05 139582.43889650633 13.335724659542633 40682 2216 1917066 IOTX_20191017 18949430.536906514 2366.6417030503508 0.004600561223540534 5.746277637349035e-07 3626711.3869253043 452.9901793974977 22549 1777 522982 EOS_20190627 7054582114.316524 543192.2932668424 6.75976368364933 0.0005205306282254109 6619859130.082989 509757.38102808164 1183 66814 103805 SXP_20210401 303287922.1433698 5156.458323493104 3.4794359598080935 5.921272224653861e-05 269364482.28807503 4584.020070220278 136522 None 75710 ADX_20210304 94215883.15649591 1853.0847184086908 0.8215420901775837 1.621415310887387e-05 20295078.311042015 400.54856717163403 54008 3779 10289 XTZ_20201201 1869000040.4339828 95063.9279096934 2.4710028710027614 0.00012587057055994587 145626400.3988446 7418.0723632082 75983 30602 154710 ETHUP_20210909 0.0 0.0 87.4976186215837 0.0018815716061608932 18413414.587635305 395.96686865734824 4972918 622520 154 TRX_20190712 1854799557.5357935 163764.34457624992 0.028066226857327344 2.4731728324344568e-06 1085818217.7167652 95681.40850106522 443672 71278 89082 POA_20200807 4904076.035869552 416.8420889802218 0.017769543190128256 1.5092259069354454e-06 219407.7643676796 18.6350250326328 17356 None 656446 ROSE_20210318 309718233.7499372 5262.120349354378 0.20655474361787696 3.504356303565075e-06 62517817.320053935 1060.6617082392652 14004 1098 263459 ZEN_20210207 388282960.64023966 9905.202926189328 36.29963208083282 0.0009227499868118608 41471944.83004952 1054.232077608221 85678 6546 437186 FIRO_20210902 107057335.64053619 2201.2187268349 8.734892130053586 0.00017952624776549053 20014200.583148386 411.34730449115233 74837 1196 291129 COCOS_20190903 23129935.22461319 2240.7303612558476 0.001472717993844598 1.426605684204546e-07 2796172.1787956054 270.86211623386646 8576 117 186264 CAKE_20210603 3425099263.760335 91022.91025768606 19.313478021105716 0.0005135488811698996 371308501.29099786 9873.160349393518 829640 None 926 OAX_20200605 3125548.146189593 319.71309496277644 0.05972643005931178 6.109431342025492e-06 1437236.7607320251 147.01530466843053 None None None ETH_20190401 14930496588.280657 3638340.7740810886 141.586389044902 0.034503555558029 5681255417.619743 1384479.9155025429 440644 433933 33191 COMP_20210624 4608341.950748065 137.8167056476405 4.996402251705178e-05 1.4942200595784424e-09 17.495961716880405 0.0005232328311848217 2498 None 3414055 NEO_20190302 580842012.2244167 151841.4470062973 8.964290354094775 0.002344677650513823 218537676.89741442 57160.17515904318 316607 97904 156064 ETC_20190712 738159163.3606339 65230.584794069946 6.618483365923267 0.0005832153119736993 758639986.873164 66850.7318304991 228873 24774 547653 BRD_20191024 19176393.819653098 2569.6019601850644 0.3170335343995447 4.2464638326986767e-05 1406616.4342926086 188.40738176218989 172 None None REP_20200901 93818176.63790163 8026.792557001288 21.925181659038728 0.0018779371068745946 11633105.009363027 996.3994782339863 135969 10423 111817 ARDR_20200502 40200052.39943339 4536.467660357702 0.040066924086099395 4.536800769932237e-06 3767282.1893089395 426.57152069575517 64033 6333 1091429 IOST_20200801 88470572.1491842 7806.0157421878375 0.005857466606864842 5.167506028059767e-07 38602012.20212758 3405.5018003166874 215 52171 321409 SNX_20210826 2158388111.6440988 44034.411753525106 12.482077360524316 0.00025472790753318706 134322864.86676756 2741.192937129617 149980 7499 47795 WTC_20190608 61491966.30300409 7648.945402453366 2.1108740887150423 0.00026292820247096697 6417037.810680248 799.2993167003402 56237 20169 895800 COMP_20210804 788958.179447034 20.551274456520915 1.3824115179167351e-05 3.593156860052479e-10 58.80346819998752 0.0015284167009551007 2556 None 6364625 NXS_20200612 11699707.825774197 1261.6898188582109 0.19651188830064786 2.1131181986031593e-05 137073.5059092071 14.73969449827572 23329 3525 680331 SNT_20201130 162728107.69137374 8970.805175497084 0.04182486123046939 2.303078342901016e-06 10271981.217551515 565.6247692124956 113757 5686 157993 XMR_20201224 2720520851.7688446 116339.98656049815 151.5295452487226 0.006499093136728078 749338567.7748199 32139.08637366569 329641 186361 70346 BNB_20200306 3148122007.3728514 347623.04283458745 20.819562373865413 0.0022982721342454586 348942110.5211332 38519.73037061609 1121646 59871 1861 DCR_20210318 2127985728.7129304 36158.5595426797 167.5443709290516 0.002842516042518288 34577157.71004751 586.6274405429905 43329 10664 241220 FLM_20210204 0.0 0.0 0.3405854835393751 9.0800251659842e-06 33406912.327087622 890.6298691756037 13533 None 184710 SCRT_20210114 71589454.46391937 1922.4550117985282 1.003482427628376 2.6850951296149607e-05 3277313.0498243906 87.69358651456055 63848 None 361970 ZEC_20211221 1864302228.2524228 39515.77885209352 156.35930246213312 0.003317643291435277 322275417.1823375 6838.063735084925 83842 21677 107284 ETC_20190816 637500083.2838253 61896.03879789237 5.6577878846722625 0.0005491701222397376 712416482.5958751 69150.32072741693 229456 24879 482560 KEY_20190725 4954341.912678772 503.99798588330134 0.001893529675614637 1.9275437589498646e-07 70991.60510940761 7.226685017336952 23914 2832 1002597 CTSI_20200523 6578914.545416579 719.9427777959875 0.03299217446657259 3.610394627718957e-06 4389742.242926239 480.37760672579003 13830 104 293741 AION_20200502 39532832.749154076 4461.380103758708 0.09362312306188975 1.0600999864074974e-05 9111863.886559516 1031.7415683626882 502 72546 306523 ATOM_20190605 1404927620.8704772 183375.38230468257 5.87006699364581 0.0007656664122527383 149162467.1057417 19456.113730089997 25357 4995 120610 MDX_20210806 709637882.8182217 17320.308678349622 1.1917744620505213 2.9127418176524686e-05 38743197.68233828 946.8983908646557 None None 12116 YOYO_20200629 1600315.1910436768 175.52344291624883 0.009134943710981773 1.0008963771666138e-06 662746.5717010014 72.6157339970991 7495 None 1874217 DGB_20210708 640731377.953663 18863.476724131426 0.0442838944640656 1.3037416946001435e-06 23075479.327424664 679.3545347837329 222288 40127 90181 CTXC_20210828 36910636.23584279 752.5426788503271 0.20277465138094714 4.133656528262755e-06 4057611.5544248503 82.7163177294391 20488 20614 1047878 WRX_20201101 18844290.285223104 1366.0526351445465 0.07917291098346599 5.7378027300539025e-06 3644744.6346650724 264.14117474470373 39691 None 11558 XMR_20190923 1258742818.1658726 125256.95494160669 73.06478812916285 0.007273833420414252 73064732.35837635 7273.827868254026 320220 161274 88240 HIVE_20210813 174953170.71933967 3935.5191841866795 0.4703759976821984 1.0580246982905268e-05 60012938.57059209 1349.8811915904362 22698 175 88793 DGD_20190421 52536591.66528463 9893.946931377037 26.26284993486544 0.004944724124704609 2463585.3665518467 463.8396071054798 16686 3325 470646 STPT_20200713 11816160.448844574 1273.3179897094565 0.016762845185886666 1.8041647059913256e-06 3950629.705072078 425.2014858630905 12277 None 3550673 AMB_20210418 14023601.901894988 232.80245034036557 0.09700926746301115 1.6098606980356865e-06 3251951.7626983067 53.96586812359977 25299 5619 373333 NANO_20200113 83671928.14748189 10263.5440902465 0.6279399788870484 7.702570984112832e-05 1656419.4490902117 203.18324704688715 97625 48584 260915 STX_20220115 2224789948.8907633 51625.34525581469 2.114683340629252 4.9045672442607384e-05 56061263.551354945 1300.2241593487327 104986 None 35752 IOTX_20190510 20319396.32423462 3291.0533328794554 0.0080460442021869 1.3033583043451655e-06 1613635.733542136 261.3887620613139 17845 1718 727084 DUSK_20200607 7850404.517376597 811.2960392410216 0.02931583688772924 3.031778724384348e-06 158625.3007884502 16.4046762137904 17352 13335 1126512 NEO_20200314 430790999.846088 77995.59229526357 6.170395746896351 0.0011142804379658776 768882298.6636465 138848.55034299474 322735 98966 240012 OST_20200421 4465773.59618671 652.102332691003 0.006504509126596976 9.501597266227399e-07 254284.27513951575 37.14510544125096 None 754 821883 HC_20200530 56718893.41375231 6018.087909206545 1.2680413299316253 0.00013505871163626182 22785532.33247479 2426.8803927206145 12645 844 1020221 STORJ_20190623 39781348.900151595 3705.543573194381 0.27648586888480325 2.5775934597046716e-05 7335294.19483796 683.8471137019183 83698 7755 209007 CVC_20190904 14294755.560298031 1345.0925253392845 0.041715743655523385 3.925513699027286e-06 4061376.5013321224 382.18158651417986 88234 8153 131188 TCT_20210725 11843942.826473758 347.1221150022528 0.020474945009165975 5.997132203577452e-07 1529970.1835833811 44.81298218077584 None None 514683 MDA_20211202 12757232.552251775 223.15151840720657 0.6499213074246373 1.1368525736516842e-05 856586.3853093145 14.983543785519101 None 390 1286126 BAND_20210506 608458799.4491264 10628.530999606637 19.388722210209004 0.0003382078419135361 411868994.8858917 7184.450960781138 88219 5038 164496 AST_20210421 68102423.92276725 1205.4482034135829 0.39455315556248793 7.000508029461046e-06 3403553.831470687 60.388836307608436 41992 3646 173984 BZRX_20210110 34336958.90007287 848.5162737806819 0.24422232421159243 6.042862415501429e-06 15149700.415754149 374.85334538521136 None None 145216 XMR_20201031 2190547973.426317 161269.00734913422 123.35366561517422 0.00908987967036801 387622296.8962305 28563.723816124413 325255 182594 75207 RVN_20190613 239185619.8021191 29445.733991921126 0.06380396091368147 7.849615578127105e-06 31830882.03500219 3916.060757191986 25322 6636 169696 EVX_20200315 2788380.188290677 539.1903714508449 0.12811627256908445 2.472761355989089e-05 464997.4099807625 89.74875735753399 17814 2870 590577 FIL_20201031 723733376.0240886 53301.82244024052 29.23454574803566 0.0021540891267722447 92361898.02342685 6805.50202404561 39382 None 36333 SNT_20210125 189377650.01470307 5879.015099237936 0.04889072862774012 1.5153443720834905e-06 27755047.14744817 860.2541969058316 None 5692 159141 IOTX_20201015 38526904.10638466 3375.219361889995 0.006631889719895316 5.803180339827903e-07 2718969.0588732637 237.92114244177696 27365 1953 348688 FARM_20210930 95946040.66485742 2309.3777443495565 156.77688999851705 0.0037699969194321297 5259236.68268269 126.46829575752994 56348 None 82123 KMD_20210210 109008952.8327511 2340.5271760414453 0.8779445307209847 1.8850314399057777e-05 6561030.288665187 140.87163755267463 96918 8523 251504 AST_20210120 22322161.413718592 616.4156963811657 0.12950504117079015 3.579387058864198e-06 2546518.0417699637 70.38315760893707 34990 3460 178843 FET_20210325 430697914.56762856 8179.415180977317 0.6250841643372345 1.18817730213977e-05 54631243.94755968 1038.4458245710912 None 1643 199208 TWT_20220105 243578347.30235285 5261.593018707337 0.6951419160820549 1.5135655221706752e-05 4692520.908266144 102.17248729363463 1527901 63520 3086 DREP_20211111 0.0 0.0 0.707397485258602 1.0896499518584764e-05 4881239.578411478 75.18888011994214 4127 None 483528 ZRX_20190524 184194661.50944558 23381.669384911584 0.31307275906101345 3.981010101958383e-05 53612277.48459297 6817.297643375158 150386 15899 222198 JST_20210212 76226189.3346523 1598.8527609349333 0.05316189931628295 1.115076724158687e-06 177509126.31014383 3723.2735778791084 None None 170314 WAVES_20190627 216971831.3064192 16638.0340967389 2.169718313064192 0.000166380340967389 36068812.9929378 2765.861986747418 142047 56853 49915 BNB_20190321 2189168003.9425116 541679.5420011254 15.155898465256703 0.003750118823448416 143502678.03107637 35507.76585982374 934532 48223 1100 BNT_20210218 499132712.72530836 9566.12226087576 4.441842821843136 8.518986593075302e-05 360550233.37953025 6914.973643790182 94555 5719 60733 ADX_20210513 143620562.43913946 2785.7766884906055 1.175788303351169 2.3327377663241594e-05 5957666.72132338 118.19877881412218 None 3821 10477 HOT_20191030 169973529.1188279 18062.52255826089 0.0009569534466485775 1.0169226530097852e-07 16800365.888104595 1785.3190988861588 24491 6701 551921 ONE_20201130 39451481.430944875 2175.0736359254774 0.005379598541386261 2.960745924609847e-07 3736907.3617207017 205.66652245035425 79189 1539 160621 VIA_20190410 14034400.92204448 2712.908676506825 0.6061642241180393 0.00011726174381869865 471217.3245053399 91.1564275662658 41277 2235 2242748 ZIL_20210708 1001295735.0003586 29467.997797258296 0.081980297580269 2.4128488822298387e-06 112715388.22268434 3317.445856023128 307062 34851 36438 ANKR_20210318 486745913.0593823 8270.746763963833 0.06981130643913587 1.184401226982644e-06 215380140.0065449 3654.085779269124 None None 5675 WRX_20210310 94430103.90795049 1727.6640577625928 0.3814478220523739 6.975137960581486e-06 48839134.6973358 893.070251539058 66620 None 4198 POND_20210509 126478049.5808582 2156.7249120315564 0.165924203754047 2.8246024691122255e-06 12967245.25957248 220.74725777841115 16521 453 80924 COTI_20200315 4325915.666172954 838.2945484788119 0.013968068572857458 2.6959651176350503e-06 3512801.189344942 678.00279059795 22584 898 296885 YOYO_20200105 1876138.5566639064 255.14519020562423 0.01072230223435964 1.4582057535140091e-06 337321.5047213349 45.87486420522728 7500 None 1425817 CTSI_20201031 5799943.706404795 427.0422679011957 0.0292571085402377 2.155944007074097e-06 1018187.5656628856 75.02981291706372 17428 150 419671 AVA_20210304 98769285.94273904 1943.0157822128526 2.5561184758187623 5.0448053872182894e-05 8209591.1840589475 162.0260963018714 50225 9458 53817 NEO_20201231 1037595555.6113366 35931.506744132195 14.724979249581372 0.0005106065855596978 244229246.57028857 8468.946514041296 326597 101180 179737 CND_20210420 70615491.12340909 1261.829004285887 0.036602273247718926 6.540464319090249e-07 757158.7815246487 13.529678774135801 35540 6171 117159 FTT_20201224 432967198.7111588 18518.679954794374 4.74851015579445 0.00020366331669874422 13403794.529977672 574.8879460629518 34992 None 5376 DCR_20190803 286085451.9383489 27188.53409673851 28.119521875960917 0.0026716382332591746 21595744.664019134 2051.8135896691774 40568 9561 266485 IOTX_20190512 24590653.485715646 3376.0682469111216 0.009727386767933608 1.3367927720668744e-06 4187330.831390684 575.4468001733359 18421 1718 727084 CHZ_20210508 2730940310.95759 47658.55897911674 0.5112785619814691 8.921307683803794e-06 620813301.2564664 10832.581075260594 321463 None 28385 MKR_20210427 3624140556.677828 67272.14165544427 4019.7077301355716 0.07459218941168053 310004202.28054416 5752.630222731985 136786 24891 31771 ZRX_20210809 791889188.7310693 18000.645206926736 0.9374186100094977 2.13146020659862e-05 205436376.26301378 4671.119778473342 223831 19638 56204 ATM_20210616 21542977.48284363 533.4381332274434 11.401267779701966 0.0002824816382319256 15441674.032781856 382.5881000347514 4994693 None 100469 KEEP_20210702 110318678.78236017 3283.226184927413 0.2525955107887944 7.509297642548446e-06 11103343.928981211 330.0862874796666 21538 2721 132559 ARDR_20200322 34398975.609693766 5578.987119660321 0.03446686148451396 5.601568882567459e-06 2281813.4414594523 370.84128403296296 64444 6377 1001396 REP_20190729 122880696.59071504 12871.455457845908 11.12856841583268 0.0011664945544284662 6746174.448833457 707.1328012498786 126123 10046 220680 OMG_20200317 61754306.49774726 12235.249415307937 0.4406380560612472 8.750182119445517e-05 135256960.87243316 26859.301512350557 281326 42875 453059 MANA_20210104 108786492.03866637 3251.1946960060427 0.08168127401419958 2.457938588067845e-06 31220618.141617578 939.4853716443325 55799 7747 76796 MITH_20210207 8687670.438757708 221.50774642480235 0.014074344513524283 3.5777500954610656e-07 5280738.262783178 134.2383071952136 None 2179 386896 GTO_20190629 20194617.83726587 1629.5269234874188 0.02964999512162659 2.389254609697492e-06 14955533.319847949 1205.14613167231 17447 None 1224207 KNC_20190729 31997842.729372162 3351.9810619227924 0.18954439543547474 1.987624349182801e-05 5482004.242305359 574.8608440410915 97614 6696 215847 LINK_20191020 857603554.2415682 107932.2356565998 2.352357718254888 0.00029590943655159464 77623637.53222334 9764.48720659949 35881 11230 94194 ETC_20211216 4758191398.367078 97531.11730456747 36.1750985421536 0.0007413307091279871 497184665.3076183 10188.728582745007 590728 62562 198488 ETC_20200319 532502030.4697769 98945.75448126017 4.593588698839443 0.0008525972837249557 1482819063.3208356 275220.00521342637 231095 25306 345588 ICX_20210809 691968567.2003908 15729.297856721709 1.0555256590326965 2.4000066941802888e-05 58869232.404789045 1338.5420870036126 142712 32661 233721 STEEM_20210725 152095132.1774642 4451.701203011504 0.39270035921254814 1.1493842689971062e-05 8806883.084656188 257.76632587498494 14122 3935 238289 SRM_20210902 435134251.17099035 8946.89135108568 8.706863037814866 0.00017895017221893888 534875397.3752294 10993.172174670182 118343 None 35384 BRD_20201129 5058904.905302835 285.26731972958265 0.0692706382973964 3.910928293434587e-06 117209.76228389092 6.6175076027853 247 None None MTL_20200721 22103967.560771167 2413.428775117797 0.3419874063308209 3.734000445383888e-05 5934834.507638873 647.9968058638431 None None 422557 NMR_20210725 189368957.56692883 5542.675851256735 32.86823396291764 0.0009620116249052519 9514903.111288015 278.4891763041864 29547 3540 583885 MBL_20200330 4846382.790628464 819.0726526810286 0.0013841777305676894 2.344996716377467e-07 2862735.8933916036 484.98874975441163 None None 114904 NCASH_20190528 6420903.919619444 729.0095926782044 0.0022115329426579218 2.5129753064615005e-07 771049.501425351 87.61471826924847 60606 59271 878224 DASH_20200316 446849534.1377142 82710.36310872268 47.64355456443128 0.00881897704728901 414193895.7710216 76668.63846172513 316651 34169 60317 FLM_20210202 0.0 0.0 0.29826931345623026 8.93296283115837e-06 92231061.54157858 2762.2574883155216 None None 184710 YFII_20210201 71957822.70051102 2176.8649737528153 1811.1895280683407 0.05463293510098447 110638435.90816687 3337.310863922595 None None 213676 BOND_20210814 106700705.54807009 2236.8777524004727 27.068651296296256 0.0005673303487875294 8237402.714904542 172.6472628501286 22336 None 140491 ONT_20190513 712577287.169654 102674.51779804609 1.163580011517198 0.00016738336273780895 103649482.44178277 14910.189884163941 79917 15710 249396 BCH_20211225 8575681466.48749 168659.70588397823 452.44064350742264 0.008897422739921643 1841285718.2612412 36209.60595703368 None 733534 242464 DOCK_20200410 2781550.6123101907 381.6551648873175 0.004971323958403543 6.816714479078596e-07 256271.68326392805 35.14015398111491 42820 15008 604505 CMT_20200404 6092616.953435213 906.0069589844248 0.0076172866179725655 1.132151772964528e-06 6564485.815555272 975.674754990316 285702 1638 926050 PERP_20210725 400357970.3099225 11718.153188389846 9.195990348938746 0.00026911674044747175 20357678.060623117 595.7587769093464 23832 None 152304 BAT_20201014 321568441.1019913 28147.5058123851 0.21683016021550358 1.897662450483865e-05 99927919.96763113 8745.529740376576 122991 46571 15987 HNT_20211216 3147575569.6617913 64517.49238456502 31.373101902655776 0.000641979170925709 29891618.339210246 611.6639794998872 128106 77053 2009 NANO_20190515 228238277.91997835 28553.780605663054 1.7128796018318762 0.00021429003408346216 9979666.571211817 1248.5075351469284 98409 45475 391429 STRAX_20210105 42337542.84499974 1353.229702936042 0.4233715878502196 1.3532174272739533e-05 1244750.4467058412 39.785806261644936 143400 10292 230712 VITE_20210902 68234423.54721999 1402.7251016915275 0.08986919416811631 1.8471500971882514e-06 4537767.948081492 93.2682059064261 33720 2460 491118 ACM_20210821 18694022.768143218 380.4850695514177 9.354658576195726 0.00019019440110964992 4152813.077588506 84.4329902346339 None None 38736 VIB_20190914 3067570.841119201 296.3637230310729 0.01680272650366436 1.6233426517648104e-06 345851.0531539956 33.413313346510826 32280 1118 4329648 VITE_20201130 9176164.388145488 505.8701587064395 0.01613330638722722 8.879216686707647e-07 606040.83615129 33.35440222867815 None None 870103 PPT_20200323 6584480.719631506 1129.293523562645 0.18166060420290955 3.1154867676446094e-05 1902665.4679554438 326.3079033937608 None None 1049662 ETH_20200511 20859785783.852856 2382607.28990055 188.13722615896586 0.021489057039838232 19756507796.247448 2256590.742880674 456564 460477 20496 BNT_20200306 20252614.99531346 2236.9482771361418 0.29013007205611374 3.2027467625842986e-05 2275213.0517475707 251.16083913785803 748 5033 123445 QTUM_20191216 168980168.03508604 23745.714249582088 1.7559826122180693 0.00024696670385697194 322355533.088607 45337.05682676982 180523 15261 163016 RVN_20210804 667334741.1958575 17369.172752244547 0.07150496758092263 1.8613554302088796e-06 95282138.91983865 2480.3021759242943 65677 46603 63027 ROSE_20210825 149479071.07211283 3110.597841255258 0.09951009084407395 2.0724575783975483e-06 11594181.412478622 241.46746254365678 28129 1848 261219 SOL_20201101 70310236.99352686 5095.411935354919 1.5355514530581402 0.00011140353021823298 6702913.199915457 486.2931761288895 None 2535 76248 MATIC_20190915 28725026.204846047 2774.3730075767776 0.013103344811095404 1.265571209356853e-06 4701783.0222008005 454.116205543304 23203 1147 217453 QSP_20200323 4250794.916339913 728.5914005736925 0.005951699952517093 1.0207189681229227e-06 41647.981679475626 7.14264583621996 55260 8319 355576 ZEN_20210314 593767394.8402725 9667.727685076694 54.44753592811264 0.0008874586090179169 73347519.20121635 1195.5157612856692 91154 6847 495840 ALPACA_20211125 110313858.5006776 1928.3139379261138 0.7103308114701552 1.2419970454846014e-05 6077543.326682486 106.26444374448266 68138 None 25285 NXS_20210703 33873355.969817504 1002.2289065416464 0.49611441769699327 1.467003585353958e-05 682544.2031050783 20.182739251276118 25968 3960 508939 WAN_20191203 20454102.949823696 2797.7102953151934 0.1926817114928424 2.6372922032667713e-05 763044.440643686 104.44017434059388 106600 16645 562021 ENG_20200411 10250625.583105067 1495.091278200353 0.12395681417520807 1.8073470741690113e-05 830109.1679330507 121.03371532153636 60899 3587 411857 AST_20200330 1854057.7736466927 313.5446067266256 0.010610056666896628 1.794528603019979e-06 5470753.974942476 925.2942558497241 31702 3466 355183 COMP_20200913 13711.515361971866 1.3149643607906663 1.48797111942862e-07 1.42506e-11 18.177163010027435 0.0017408636216687215 None None 827585 ARK_20211011 289772207.2359676 5295.037312148619 1.80134178228969 3.291103259129612e-05 10887790.967530439 198.9230732904788 74501 23916 147149 POLY_20200629 26791516.817341935 2937.7184102444157 0.0406332924431335 4.455306436393957e-06 1356352.5576248872 148.71958230957355 34917 5003 358611 MDA_20211111 13393919.81431318 206.68227522838296 0.6846573826929275 1.0540276782854835e-05 400301.87865919416 6.162633609775961 None 388 606627 OXT_20210909 225081561.64327967 4856.4337841420665 0.37953534238714864 8.19785189494504e-06 41022006.014572114 886.0632783915249 70629 4423 263095 CHR_20210723 153455750.93584156 4744.717781673077 0.27249238689232586 8.416998479355356e-06 241648438.96682283 7464.261906612646 74498 None 109219 OAX_20200421 1684340.184334442 245.9698284430043 0.03217224127839265 4.69895789397708e-06 69271.79421311447 10.11758060096 11942 None None CND_20190904 10788522.467522576 1014.9698816419913 0.006177602770653011 5.811806734273553e-07 224585.97599825705 21.128750685147985 35867 6111 335034 VIBE_20181231 5711838.69195208 1503.1957970136639 0.02850269909907583 7.4993728028985605e-06 51543.11891672489 13.5615600065464 20543 None 1409578 FTM_20201015 72515652.02564968 6352.9196323599135 0.028883473248433402 2.530525470020149e-06 8903106.625295704 780.0148508399309 27670 2797 110176 ARK_20200629 41956225.19217872 4600.544866934955 0.2790826355587206 3.0590715544314755e-05 1528417.5395462168 167.532408784932 62055 21903 104717 DIA_20201015 36126293.065029345 3165.6186289274906 1.4139290924020609 0.00012386804205715763 9816763.07276288 860.0029716457458 15514 164 87436 BTC_20210727 701921012034.6644 18767600.0 37281.91809217662 1.0 53550491997.72306 1430859.095919626 2970435 3221492 6058 XVG_20191220 63893828.24143691 8945.813936000459 0.00395987835044183 5.543584817329e-07 2257478.3104379154 316.0330035339804 299506 52268 335598 HC_20190603 81425004.32856625 9315.65206178626 1.8478839774277003 0.00021132019942648843 47692855.523907505 5454.05656612722 12701 806 744090 IOST_20210124 283982533.09176 8870.02241817857 0.015408414557543467 4.807891537927588e-07 144475074.76968426 4508.059455646958 200075 52196 269048 GAS_20190207 25905579.908195246 7606.458687317643 1.8590142675284234 0.0005458482410044663 1371605.8368110193 402.7342051388032 316069 97839 145826 CKB_20210324 527756537.6397607 9684.965374216736 0.02159700915339803 3.961885464435485e-07 64009720.81336475 1174.2328795241658 38660 2227 160288 JST_20210727 61314408.00363252 1637.7415205323136 0.04259510819543209 1.1415409847663272e-06 107226857.03516097 2873.6598440297535 None None 151372 SKY_20201101 7805084.521403854 565.6486441909714 0.41072452804638127 2.977099757786065e-05 186666.35308878345 13.530342519613775 17280 3807 1281976 OAX_20200301 2415680.860734182 281.68749873531044 0.04684623613591204 5.46839886604835e-06 229223.2199222982 26.757411038496084 12050 None None DOCK_20191127 4777915.72893326 666.8200085425926 0.008473684282040556 1.1839995578474463e-06 1681215.663517455 234.91064051911073 43794 15116 215050 NEO_20201124 1335289621.6967633 72911.03220075271 19.049341202479948 0.0010375899345412833 527082151.43829864 28709.39888134007 324403 100990 122930 CND_20190520 31175799.954537205 3815.0908699017646 0.017913828180780297 2.192177343873978e-06 678708.6264848427 83.05593081819377 36617 6180 561865 QLC_20190719 5305608.38111203 494.35461741287855 0.022067166426069346 2.0592238418811062e-06 258803.51671720727 24.150557515946378 24985 5774 940522 BRD_20190703 21521843.47676273 1991.8215961004666 0.3589830614942885 3.319258739130251e-05 1731145.7104660065 160.0666199751478 None None None AUDIO_20210110 28758008.11889734 710.6767618357422 0.183645900533568 4.558856846119129e-06 1577964.2011789887 39.1716497922088 None 2382 55662 XVG_20211104 405983004.75153685 6451.891486054372 0.02463332394812372 3.9059956401033615e-07 25146543.355561692 398.7374538545601 331913 55305 175173 ATOM_20190812 855149030.7318454 74094.17453497412 3.524827330139164 0.0003052248075529983 130365927.79862607 11288.75587282533 27848 6498 108331 SFP_20210729 98856553.81256722 2472.215135952657 0.9144239171645824 2.2855609815107428e-05 11565747.521012774 289.0805977384955 None None 24694 RARE_20211202 264354144.9794735 4625.0490616604 1.823170737063343 3.189118930182544e-05 40103651.732887186 701.4993840719756 208147 3062 8715 TNB_20190729 10380338.655912576 1086.8390437361804 0.003763188065729118 3.944567011618406e-07 535945.7101558083 56.17773364960432 15702 1479 578897 LUNA_20211007 16901986368.126202 304509.5512210485 42.01535191661481 0.0007573869089554342 1322088565.3191645 23832.540397131215 154443 10437 11955 GAS_20211007 130661135.98219083 2353.67910016435 9.382459037995034 0.00016913226535127354 32979290.54815268 594.4989578423844 None 113991 96660 FUEL_20200109 2629069.6032593427 326.6737840317291 0.0026558389790816996 3.3e-07 157625.140833357 19.58563636 1 1484 None SNGLS_20190826 4601065.703614707 455.75975923805 0.007972589474109216 7.897269226929745e-07 227587.5271487417 22.54374165911273 10 2165 None CDT_20200907 4825175.816044571 468.2904234336555 0.007061822485588933 6.865262191993812e-07 313012.64780790906 30.43001861058959 53 292 256475 CMT_20190714 48501640.0642037 4254.5203269489175 0.060748564290094065 5.325854284960698e-06 17359847.344154373 1521.945719122196 291140 1651 722276 SXP_20210702 165786265.9487641 4930.923460151284 1.9191926543234312 5.705877879971053e-05 92880424.11575454 2761.3921731648197 None None 60641 RDN_20200626 14495126.40661521 1566.5071090391828 0.21701261359456078 2.3452834588038312e-05 1772824.3435965262 191.5914259329442 25426 4315 1567773 MDT_20210930 20588022.840273835 495.60258226156793 0.034048141836885114 8.187519846749048e-07 5519737.528477332 132.73253142494593 None 334 967896 ORN_20210310 385307962.77900904 7049.475653568289 18.649655167610856 0.0003406483210141913 33078159.864035252 604.1945289954724 42250 None 89793 KSM_20201031 265572449.45719144 19553.752044702942 29.58245811368946 0.0021797243547105757 28145938.452885758 2073.8772720022794 13965 None 170196 GVT_20200721 5163851.38854721 563.6292687877549 1.1629296001101697 0.00012692500078696176 496631.9387939364 54.20363297681917 20320 5512 229821 XEM_20201224 2175759019.481307 93043.86508221678 0.23938800561448198 1.0258208429363269e-05 240261568.52273193 10295.642177833608 216432 17867 152677 FIO_20201224 13554903.684134675 579.9294405338326 0.06452250748657627 2.764905988015007e-06 2408306.505148583 103.20028369086779 55466 157 423283 NAV_20210729 29229572.079798818 731.0944976705717 0.41056180499861333 1.0258575140388803e-05 333008.94817621 8.320786969696387 52998 14118 823602 NCASH_20200315 998929.0846289143 193.34337252015234 0.00034515871264995086 6.661879160303455e-08 700720.6851322656 135.24550759958524 57914 58331 746963 OST_20200407 5211604.930884228 716.5510743062214 0.00756652007459092 1.0386446622335845e-06 608617.9159078915 83.54405241324048 None 754 766373 MTL_20200605 20389627.086894825 2085.6600110400536 0.31546353225178814 3.226884294425804e-05 3326097.5720045837 340.22734546264036 None None 394171 STPT_20200718 12346568.220795756 1348.8964406025027 0.01539561979074977 1.6818879876016614e-06 1675082.9503908283 182.99373008622996 12461 None 2040332 CKB_20211021 598163938.2889475 9024.45876537882 0.02108127922941086 3.1922644782933473e-07 171428859.82546955 2595.887345449621 None 9786 121896 IOTX_20190719 26578737.923551887 2480.2264940835216 0.007555217511877109 7.081075326437667e-07 886536.888748076 83.09005636200573 20465 1760 905527 ANKR_20190807 15188081.849179208 1328.4949431334146 0.0057977047287904645 5.053031523568372e-07 8158830.536255481 711.0887812279475 11058 None 12914 BTG_20191220 92542941.77087672 12955.439575429202 5.276627916754584 0.0007384399536525159 13228850.947570939 1851.3172114301024 74658 None 277645 FET_20191012 15058653.973152598 1822.0593256668903 0.04430290151312089 5.358164231554439e-06 8797979.16335416 1064.0616224443918 16276 309 514856 FTM_20200217 22721118.902835708 2279.2513905749097 0.010763559094811978 1.0819347674320014e-06 4773999.900503371 479.8744008904185 20961 2294 396043 SNT_20191026 44341584.491432905 5121.5596274034 0.012434868113572447 1.4362670043329935e-06 24689303.73896079 2851.6934796855735 110933 5684 373858 LSK_20190321 199365856.88666847 49330.34187168233 1.5263232059552765 0.0003776677046524452 4560886.666929914 1128.5287362196034 183511 30458 187764 BTG_20210826 1210356656.0954044 24693.21679493136 69.27156927521759 0.0014135855399694589 134936374.07390872 2753.569887365426 None None 217752 BZRX_20211125 101168742.24377078 1768.4550101193254 0.28545068026957654 4.991039327051341e-06 18058938.556426644 315.75637674013825 34546 None 220483 ARDR_20210710 166602703.0989892 4902.011948075186 0.16732172348423058 4.9233565278392145e-06 19163112.183985278 563.8648198219815 72220 6980 None ZIL_20190906 65440315.4419844 6191.686850750797 0.007110918608813925 6.727850744795363e-07 9151799.753192713 865.8788853161349 66161 10607 166369 REN_20190909 38634994.917894796 3716.448708480304 0.04696713457357961 4.517949258125897e-06 5572815.602737628 536.0705596935455 9613 880 312063 COS_20200531 17266763.83783481 1783.2421914663794 0.008742225320551762 9.037415028928716e-07 11933896.283151707 1233.685585402239 12069 None 174511 ONT_20200312 366912003.85262734 46258.810245776716 0.5778828738168207 7.27978690750595e-05 120467527.65797436 15175.703769032621 84515 16498 345761 WAVES_20191024 71801083.8027743 9617.301402973782 0.718010838027743 9.617301402973782e-05 13820175.629461348 1851.1251840661928 141913 56888 23523 LOOM_20181231 25421841.25535095 6691.809419300306 0.04472173476911613 1.1766779007845854e-05 930174.9003764817 244.739220155064 16497 None 344214 REP_20210131 108342828.57033233 3166.765686604115 18.582311717225288 0.0005439075700036448 21187109.819471214 620.1504738846179 137160 10455 129604 ARK_20210511 318478419.6105175 5699.796465009087 2.02610478995305 3.6261122287768965e-05 6003378.865617469 107.4422489228739 72265 23017 75515 QLC_20191026 4085150.4539583 472.6405936601333 0.017021460224826254 1.969335806917222e-06 352360.33798764757 40.76711523988019 24680 5719 940522 GALA_20211207 3840597903.6227245 76090.09897774973 0.5118613655427736 1.0136266968035148e-05 1136388333.595561 22503.623645185286 173918 None 4479 CRV_20210117 211018792.94223985 5818.152812880545 1.1116894427251274 3.0718581878879755e-05 264112433.25524023 7298.044844514452 56376 None 30895 XMR_20200404 926392719.1756426 137674.49014914973 52.90947492387215 0.007863063723865723 167997854.97771132 24966.75389546318 319602 168087 87089 LTC_20200625 2763171967.775663 297222.43399610056 42.5853071385758 0.0045807169397379475 1340940137.50718 144239.1194471281 132096 213997 123439 DASH_20201018 656173052.8335334 57737.91311930144 67.20233497169154 0.0059132610844872344 250887592.891857 22076.075782977387 320785 35418 68105 TNB_20200324 3362724.8165664044 522.6039991013595 0.0010884488460158794 1.6879026276634847e-07 369463.06804498803 57.29416551456844 15118 1446 1775001 STORJ_20211011 217424964.55894926 3973.028714222827 1.4874988657496144 2.7188781961829582e-05 66771586.41079136 1220.463521667018 105902 13981 72901 REP_20200305 139343353.308709 15917.391361774024 12.643108545916137 0.0014434705140565038 28393465.271804214 3241.6972268244394 130142 10119 288679 AION_20200914 47211273.27590175 4573.718566140624 0.10297837068325037 9.971555546583737e-06 2888782.88260097 279.7253324630543 68408 72546 307005 RVN_20190601 221078272.07522458 25773.79377206985 0.060247244104518004 7.023529466960063e-06 56725703.17216054 6612.993734161891 24611 6518 169696 WNXM_20210218 99536527.51303388 1909.546205068413 63.45301001451971 0.0012169618856068924 30266243.471577644 580.4746649052598 21912 None 109999 SAND_20210618 194179498.25394088 5108.4377070673045 0.2770798623145399 7.259258436450901e-06 41175064.75516272 1078.7519298534103 129619 None 23111 BAR_20210828 62172929.46912244 1268.8688434336445 21.08359346467736 0.0004299402020621104 10236913.108776348 208.752862639534 None None 38736 WTC_20211225 28962118.989601485 569.6040005277514 0.9928739258827606 1.9532159879476973e-05 6968023.9734778255 137.0773818770503 67729 20381 392507 SFP_20210620 105781805.00685063 2973.2522291659357 0.9767098662470737 2.7435066231864913e-05 4402907.262276512 123.67444676017885 350562 None 20824 NMR_20210325 244011218.91892594 4616.232979546579 42.99642459244096 0.0008154891370667145 15372870.422565559 291.56863515903564 26583 2855 1026780 WRX_20201018 23528066.283940572 2070.576410901618 0.09896972767625464 8.709309861729526e-06 4844513.074136282 426.3158693319894 40238 None 13129 DASH_20210707 1376468243.6396186 40297.307939542006 134.7194724620259 0.003944080131258868 653446686.5502526 19130.464558390067 400362 41394 56983 TRU_20210314 103445198.98353392 1684.2959428083902 0.4423879621474516 7.210629440641745e-06 12876357.122832939 209.87605383161326 22172 None 99540 STORJ_20190930 17375595.508323118 2155.6880826475167 0.11979974455771115 1.4878463547820814e-05 2810976.997022154 349.10774591684975 83305 7804 159770 ALPHA_20210809 303465213.22478634 6898.138086356025 0.8643590760103653 1.9653407293778602e-05 66499736.8225875 1512.0410590652787 None None 58883 CTSI_20201124 8786345.25801702 479.90001124876363 0.044590142547186386 2.4287602702343546e-06 2847459.4554758966 155.09697887250618 17574 155 456815 NULS_20211125 50212602.20354188 877.7288910444065 0.5261425189138468 9.199480628502617e-06 7406229.079959265 129.49620778033818 75871 5512 221741 POWR_20190723 33830320.65805927 3268.92413598567 0.08055692646174947 7.789258456505771e-06 1493728.5450477176 144.43249280074772 84493 13147 580575 MBL_20200301 7881701.542043137 920.1046926915049 0.0022291619496453536 2.606320425484282e-07 3989356.7479217006 466.4327766004648 None None 120670 AUCTION_20211111 275931590.8589246 4248.764919489115 38.401919618921276 0.0005911962274975039 33410993.233130638 514.3610879972546 84899 None 102978 CTXC_20210219 2360876.0807578447 45.67593871457571 0.23153597921313793 4.478413422100097e-06 20085459.000363443 388.49680935966086 17756 20165 487509 DOCK_20190706 6567485.87542632 596.9718095126074 0.012770848019213984 1.162207523773258e-06 1903491.765492721 173.22674641243137 174 15244 279432 BNT_20200317 9622852.920187838 1906.55538443489 0.13766979746951113 2.7366057908597058e-05 2370225.8317371 471.15444752604566 745 5027 126378 LINA_20210506 275708915.1774132 4816.0709558666 0.11118787466258874 1.9395095111933896e-06 75127441.42048377 1310.4881051897603 None None 64342 STX_20211104 2077922162.759902 32948.67929844496 1.9741575560138582 3.1303330492085604e-05 131095375.63235125 2078.7205443164685 None None 53352 KEY_20191127 4885025.459240274 681.5279235758173 0.0017906672407967416 2.502039432657141e-07 3537013.5346313696 494.2150688785754 23685 2791 382157 CMT_20190324 27024663.03658221 6753.978864427114 0.03383004099635791 8.448571905961354e-06 1311616.7847262677 327.5576497237677 292513 1638 1091095 COMP_20210418 31831.7787044434 0.5280074308757662 3.45122763229071e-07 5.7247e-12 624.6800210121613 0.010361836706536577 None None 1922361 BCD_20190430 162576568.6423622 31236.602259203708 0.8641844503677878 0.00016603993355100396 3640343.0223702816 699.4366923403659 21235 None 3139253 GAS_20210117 25465082.58104662 701.7168045767769 1.8225770342459116 5.0353181279770286e-05 4307716.196021094 119.0112738416007 329354 101482 169176 ICP_20211202 7473609059.146955 130755.68975439463 40.99446596296688 0.0007168846028225138 238469321.15394893 4170.196648865692 None 25114 29488 ADX_20210221 82686095.93459822 1470.674356462309 0.7245074028289646 1.2886259126932914e-05 2463260.0249249726 43.812122352726114 53475 3773 10332 FET_20210217 155880086.65790236 3169.6073330886898 0.22671295194243793 4.607089451696975e-06 18360808.69887922 373.1144928266372 29541 977 277312 MDA_20191024 12461727.038852444 1669.8026521268234 0.6344831858417931 8.49850129020445e-05 4074797.3142596562 545.7933481186394 None 368 2061213 FET_20210131 71851122.3418763 2100.1451760006426 0.10437810216310649 3.053890101072765e-06 12321356.519241901 360.49772822178454 27658 798 293884 GRS_20210201 27873403.205766287 843.2699636768683 0.36425976123251314 1.09875745121717e-05 4726776.695023695 142.57905117831018 37570 106759 3797410 NMR_20201101 120685186.55226843 8746.105350712704 23.181327118370685 0.00167999231522303 4474469.329026687 324.27281014074765 21358 1920 1007007 SRM_20211230 451938675.6171782 9744.38582458219 3.4203333130371325 7.349873014024338e-05 83610195.90787804 1796.679640134036 None None 26537 EVX_20200530 5041805.955103044 534.6246968074179 0.2297773025279148 2.4380235983554184e-05 2206494.223251321 234.11733564363237 16638 2846 1534035 GVT_20191012 5236295.961843688 633.2978827645039 1.1802380271763269 0.0001427425510734023 477240.59028035816 57.719322512743624 21163 5691 113794 TVK_20210401 158041888.80366278 2687.0058234530793 0.7213852978640152 1.2276468878454194e-05 19163401.40080042 326.1210085634423 40641 None 82987 POE_20190725 9137517.350103948 931.6278406613533 0.0036300695273715038 3.701086088988079e-07 115354.59591520358 11.761132590530353 None 10821 797644 OAX_20200207 2872804.827059481 294.97068574872435 0.054634745398686776 5.610498813724931e-06 462090.773969682 47.452582056920356 12056 None None RAMP_20210429 149238134.33000714 2726.413333017604 0.5470993311996522 9.991442758736243e-06 27507582.58409 502.35929957634704 24080 None 95701 CDT_20210813 13993154.84946094 314.7718279749977 0.02072403033647277 4.666320198525327e-07 1949200.3948238532 43.88911338993996 21107 337 695021 BLZ_20210207 37614309.52725489 958.8116969893314 0.1446189322889389 3.677672881325517e-06 14643604.494406836 372.38822249315905 45861 None 375643 BNB_20210718 46537871655.906 1472426.094222925 300.92427931101014 0.009529252740749072 1129480208.9157066 35766.81283768396 4535800 558540 142 QTUM_20210708 730704215.1517844 21505.618315702064 7.0830120579658065 0.00020852768834093638 260854518.46323097 7679.697462501236 246542 16740 119158 FUN_20210620 197190621.95908293 5531.3836162157795 0.019120577834140683 5.370830554694926e-07 2559860.020264926 71.90459687903426 3633 324 191066 FTT_20210218 2060803494.5771534 39502.33720626147 23.13315217978898 0.0004437557575983285 72603459.14093919 1392.7286158388404 60257 None 4654 ADA_20190430 1999777250.3609803 384226.5955856936 0.06426312529200742 1.2347105104555324e-05 118785543.06188424 22822.693082889622 151050 72838 113517 ONE_20210127 62730053.16151653 1926.1272671009458 0.007331339500087516 2.2508283346680894e-07 5863561.5254399 180.01990527613987 80200 1652 164688 CELR_20211002 814049606.3348057 16903.037945165433 0.14446510060979237 2.9992362623242045e-06 309112021.02913254 6417.466770019708 76276 None 85424 BTCST_20210422 491323904.92785984 9067.178693340426 66.89249206820035 0.001236876951842076 42004376.46069485 776.6827563811086 None None 111287 MDA_20200801 8635273.76101494 761.9153044802115 0.439806298833772 3.881452740068678e-05 171974.62421573134 15.177394642924893 None 373 1458331 UNI_20210221 8538609828.004031 152820.16579005797 28.950034318073403 0.0005164274643433129 4724011321.893948 84269.64754828472 None None 3373 GVT_20190708 13579783.279740678 1188.0323483716525 3.0681778493406084 0.00026817479323387055 1151988.5269154015 100.68982314037726 21415 5751 196385 IOTX_20190321 23370718.35649988 5781.424959290065 0.009255583400746904 2.2896369751932167e-06 1262692.7215143978 312.3636639969568 14180 1659 1193452 ZEC_20191220 232905639.9918169 32614.948232363942 28.54368223608585 0.003994600258600572 188970320.86209416 26445.81334461588 171 15396 169919 XRP_20190813 12889295804.49523 1132441.6573503197 0.3004360083668976 2.6398030444302177e-05 1028626745.7771633 90381.04419789935 937446 204480 35107 TFUEL_20210620 3136589692.166556 88161.40255509109 0.5899815733967118 1.6572151158780368e-05 190671406.6749407 5355.820445174622 175966 19981 17272 AR_20211204 2682990537.788597 49967.38729726089 53.63353757720831 0.0010001823778122666 69522083.8449329 1296.4791485251144 48610 None 49164 QKC_20210120 45673471.155441 1261.2508263256116 0.007240376996001433 1.9960803451678276e-07 7668486.451402986 211.41047063274016 63120 9204 334407 LINK_20210108 6319099825.939422 161616.35180930534 16.05629436783594 0.00040676196316482785 2233824344.71367 56590.56535742767 116590 26949 46948 STORM_20200309 8410409.338296818 1041.085972433337 0.0011091093125289112 1.3774679876745754e-07 1121507.720395368 139.2866298500436 26118 2525 826076 TNT_20190613 14728040.279057784 1811.2351109951455 0.03432203938634099 4.2189087437954745e-06 2790637.11848603 343.0286646843705 17375 2516 874753 AXS_20211230 6322822976.367464 136328.2894479408 93.81979148479591 0.002016071214425545 226448608.44004047 4866.100358970332 None None 425 MTL_20190528 21352935.732592605 2424.3463499487793 0.4748509382673832 5.395753592898594e-05 3469156.486209284 394.2018866613444 33333 None 919877 FXS_20210427 55525024.06110972 1030.6684372873722 5.24078186249596 9.725696034110595e-05 7499275.082719643 139.1694442629877 None None 111454 CVC_20191026 26953854.7215024 3113.25635483214 0.04022988709836472 4.6466805196233655e-06 3195545.446921887 369.0957108946659 87730 8143 107901 EOS_20211120 4187575639.9974685 72037.82612895193 4.316954640721329 7.401493572912026e-05 758942683.6238371 13012.20388572771 252680 95674 74259 FRONT_20210324 84951504.86478066 1558.9619917974464 2.32467522321523 4.258103608972247e-05 27450783.95350748 502.81553764693587 56052 None 142533 NEO_20200106 633315957.5946844 86233.20454531885 8.992049464684 0.0012242637742697175 397955980.01429766 54181.54025942403 323275 98680 215815 STEEM_20190811 60340097.22798006 5325.424013115069 0.18784590529258877 1.658732656737139e-05 960701.4363580318 84.8326634205433 6126 3764 297203 REQ_20190224 16700994.163788224 4056.9685316785017 0.02288882207167709 5.560101989217112e-06 234906.1915647896 57.06289204873456 41680 30854 495814 NULS_20190804 38203662.288481236 3541.4076495156996 0.5180086489626784 4.799902624944643e-05 5349811.449187071 495.71709023263855 21323 5310 406668 WAVES_20210421 1357229994.157945 24023.67439861079 13.531920445976843 0.00023999605175916658 253066530.27126074 4488.274102701455 176201 58079 111113 CVC_20200605 19333021.83835381 1977.8228648763506 0.02885525647515494 2.951974425188583e-06 10194296.720743155 1042.90541407347 None 8008 113262 DASH_20220105 1432357795.7254608 30925.19786294137 135.33629707764575 0.0029413961920250874 196797245.0873927 4277.1871242271345 421755 43756 66112 BEAM_20191216 29965747.899637975 4210.876266932571 0.6079523792922582 8.550426078886865e-05 43887039.628723145 6172.40594737737 12154 1412 343820 VIA_20200414 2779415.359070507 405.81787790062265 0.11997653729347406 1.7517577429875408e-05 61955.83253176419 9.046069490677048 39229 2173 2861314 PPT_20200718 11957831.636780422 1306.10406057714 0.33225592834078277 3.629823591526678e-05 474790.3189952013 51.86980739587061 23638 None 1142876 LIT_20210420 160161096.00237203 2861.262160207722 8.931843717654655 0.00015971388095471363 54583055.31545581 976.0215107174272 None None 89808 HBAR_20201124 216022422.781897 11795.50680811952 0.03488492886915501 1.900131383919547e-06 9563088.470444089 520.8875327808613 42642 6749 195840 ONE_20210104 43619713.666413695 1306.7943084738367 0.004860906324974236 1.4766845327746856e-07 10248917.101478916 311.3497020851167 79602 1584 186131 PIVX_20210204 41821757.36805731 1116.3204853661748 0.6390052285724599 1.7035909740887798e-05 4457773.408306628 118.84445077060906 65113 8844 328598 EVX_20190122 5158810.080017446 1460.858507832574 0.2674840833983746 7.574848262774286e-05 2526040.198877562 715.3461607533537 14082 2335 1554071 WABI_20190325 11497628.292350564 2879.375448297128 0.2195627910667008 5.502312195214861e-05 746501.8694821966 187.0757025927391 None 8002 1579546 RCN_20210220 50571295.676907435 905.3696212001643 0.0984201365663799 1.7616263301338403e-06 2071432.9103259293 37.076668283982535 None 1138 1423891 RDN_20210823 27827657.065819543 564.0060930222413 0.543649581438217 1.103324447065122e-05 1827191.4200092177 37.08243383229592 30824 4701 1417860 APPC_20190920 4140846.0853287675 403.98525042952883 0.03815895411636068 3.720906862056038e-06 307225.62202018045 29.95778976772831 25122 3301 1033070 PPT_20200315 7422809.936229096 1435.352203236629 0.20548142657611176 3.965979659117315e-05 1425702.0811454311 275.17355451538145 24091 None 1098941 FET_20191213 17696485.72501495 2455.61749384139 0.05194192822977275 7.215879065513844e-06 13548253.578192452 1882.1511388003328 16097 331 514175 MDA_20200317 4939872.5484423125 978.7264425393449 0.2510509567112588 4.991135956206553e-05 486047.1904009134 96.63088482922227 None 372 1815630 ORN_20210718 122457101.6609828 3874.5328183373144 4.2238664752438275 0.0001337555456739203 2725986.8209622777 86.32277011471507 None None 85178 LTO_20200531 9297960.326741157 959.4460553656489 0.043804380895852486 4.528347825929857e-06 2352527.9343603975 243.1963319451645 14953 440 1396028 POA_20200422 1886254.7387495416 275.43527781622635 0.008563003224918802 1.2509027657702748e-06 67378.11067808526 9.842745913527521 17271 None 511690 SSV_20220105 0.0 0.0 8.973559092421198 0.00019506669798452904 1339791.7381380855 29.124313737040694 None None 358994 DCR_20191118 246505366.1300328 29001.22364619267 23.066550826514142 0.0027106529665098206 20797316.58020791 2443.9851587513585 40669 9681 83809 ARPA_20201231 26731702.55212726 925.7078495946116 0.027269920375613026 9.456176946308743e-07 45303260.82016968 1570.9457330994144 22100 None 1152710 BCH_20200511 4306066117.364939 492711.75635447033 233.19537871671614 0.026635604749673726 5340110262.180095 609948.0489100686 None 295304 146470 BTS_20210611 138613028.81308642 3760.7001508564704 0.05114887458275209 1.3877747889145945e-06 13532815.079274118 367.17327103014804 6055 7172 112571 LTO_20200319 5634905.354821197 1046.4860012866966 0.026866919682970107 4.986623324767018e-06 893008.0349026704 165.74638062705262 14521 414 882624 APPC_20200316 2083319.9484069087 385.5144294424256 0.01927025240141113 3.565923882897769e-06 132320.41194364725 24.485642809233283 24886 3230 700856 TCT_20210125 6027589.659967253 187.39743543343752 0.01066760498618777 3.3063292361745865e-07 1545816.4614394435 47.91120562520626 None None 2451414 WAN_20190903 40879022.7508223 3958.4092864793647 0.3850971521773144 3.7289838180996515e-05 22263217.921737675 2155.798319972009 108153 16873 451102 RCN_20200229 31222637.305513844 3572.589313076636 0.061312787401748774 7.015595988355043e-06 2943495.2007713346 336.8036913240174 None 1136 845670 VTHO_20210909 410578825.53275573 8858.783744048988 0.010316405098989762 2.2273348098358494e-07 21904151.868142713 472.9155114374365 None 202463 50573 NULS_20200626 48286090.027827226 5213.9664427234275 0.502343275138337 5.42571671952755e-05 31930270.938891362 3448.7294538675533 25711 5176 775098 MATIC_20200730 75981580.73587966 6842.794106752278 0.020281696602927606 1.8273190964237254e-06 15459977.99238264 1392.8969340609044 45740 2070 96762 STORM_20190511 11378943.563572036 1785.8901552128348 0.0025181445009469904 3.9521502576403014e-07 910953.4492352064 142.97133892591614 27010 2565 6189578 IOTX_20190704 31026038.44459966 2585.19833702143 0.008860488521984271 7.38359826589621e-07 1127609.320594335 93.9656341012245 19910 1744 776154 NANO_20211207 527753712.1501556 10455.880360581727 3.961865059748983 7.847740825479924e-05 33291421.235740162 659.443069437909 None 118083 69441 ZRX_20211002 828319213.2435453 17199.334024868742 0.9812723867040695 2.0374529653423064e-05 126440932.75173625 2625.3409029572954 232258 20177 48982 MTL_20201101 18493336.447527498 1340.2197359673407 0.2861364688127097 2.0736822626926172e-05 2337664.383146229 169.41472674116164 40792 None 352724 REN_20201030 226462548.13330677 16812.23307959834 0.2568836980698857 1.9103760483471863e-05 32164186.863114484 2391.9654170168756 26683 974 88468 KNC_20190708 41835762.625328355 3662.3014300895647 0.24925971913403194 2.1806578453946975e-05 7383291.635602994 645.9299916548968 97319 6689 219747 QSP_20200531 8116556.2563631 840.8208535519808 0.011381082416414086 1.178299313498278e-06 686698.7518077382 71.09487816977979 54474 8249 561327 TRX_20190811 1353018120.114562 119413.0523160097 0.020424706275788865 1.8040667130072943e-06 700163448.8158278 61843.805958195364 452997 71262 73072 ANKR_20210401 1112015175.3709478 18905.615024363644 0.1603376620564132 2.728611636677287e-06 395972541.7655571 6738.624421790774 65385 None 5861 PIVX_20211202 50411053.68020684 881.5557745781168 0.7445560622682177 1.3020312972498016e-05 443457.7292402546 7.7549008293500385 68768 10378 257818 BLZ_20201130 18430004.663857825 1016.0013753526582 0.07384345470449188 4.064089650806867e-06 4826854.964462248 265.653487983729 42740 None 240877 STX_20210513 1752394656.3432157 33996.170452613274 1.6397265335908375 3.268843001822569e-05 28342449.2081483 565.0150488550029 62204 None 63157 EOS_20190314 3704024448.278234 958004.0589434846 3.5771138274955945 0.0009253239944030432 2154088442.028386 557217.3035574416 719 63323 84720 NAS_20200423 11833510.602224916 1663.664908247372 0.25961087700968855 3.6491686925775024e-05 4499296.394445484 632.434654909492 23462 4947 1034510 PSG_20210729 54654714.39890045 1366.1866517192998 25.950138778214082 0.0006486119133911495 26107402.94684791 652.5426597427291 9326877 None 40943 UMA_20201015 461166834.9861779 40410.41025847605 8.36744282110839 0.0007321861750568557 12922759.229745612 1130.7953760662515 None None 95449 CTK_20210806 74463288.67907432 1817.4440462573166 1.3278339832928405 3.245276428715042e-05 16665106.323436365 407.30149562342234 80936 None 93731 KAVA_20211021 525165747.8868545 7923.140018021075 5.718530074793903 8.661571252505259e-05 79260626.38773598 1200.5210324968277 None None 46204 QSP_20200927 20524278.363202106 1911.8843314069418 0.02858660402223645 2.6629463824178323e-06 237166.4702688064 22.092921339724587 57380 8222 219585 REN_20211225 639262341.9264966 12572.50505319749 0.6392150459537289 1.2573043044336538e-05 105949863.301079 2083.981283385602 109304 1240 77574 XTZ_20220112 3648026378.4738197 85097.5265371173 4.176083752984111 9.761871449503024e-05 125480845.06127802 2933.197587303903 266017 67196 35201 BCPT_20200430 2019792.2415605986 231.34854126043538 0.01746157558223397 1.9916597464090684e-06 129697.83366417786 14.793278721550184 10589 3165 1977022 XVS_20210104 13171015.067091297 393.6291493977275 3.5398611291212934 0.00010753669846891061 3774217.6436161124 114.65616584748265 None None 105222 POE_20190915 7301179.5675593065 705.3229098270348 0.002897784487397949 2.8000169260427136e-07 92850.89143066562 8.971822050074865 None 10719 694514 QTUM_20190701 471929673.9128249 43493.77026700432 4.939026345345058 0.00045522105440894985 624617692.5186498 57569.87404183609 178473 15359 346886 MANA_20201201 114502702.49254642 5827.478723382509 0.08674022535278776 4.405102897196185e-06 22769475.00187672 1156.3479330432663 54401 7571 85498 BLZ_20210418 152611237.3353628 2531.5946966009765 0.531126970328197 8.835890161835937e-06 83013687.64629613 1381.025379898108 54835 None 191106 SRM_20210909 447030437.126541 9649.140936083944 8.970478987007308 0.0001936746368230439 1104222513.68948 23840.409706147217 None None 35384 STPT_20201015 17846022.17607276 1563.4331638761766 0.01937472193928017 1.6953690455732998e-06 4331062.083355137 378.98601144256276 16050 None 947092 BLZ_20200412 3199340.2779437616 464.8594759529952 0.014554685808578945 2.11495135115978e-06 163765.62379966202 23.79689482025556 36023 None 583027 FIO_20210916 74436033.71154074 1544.5364423701376 0.2101410044966126 4.360728061872565e-06 4991238.030560071 103.57536738480617 None 527 535960 LRC_20210731 309777641.1975843 7424.896565626115 0.2481398362468303 5.938952719065339e-06 27597532.23972666 660.5164314349854 83037 11074 276939 FUN_20210804 196404676.79993427 5111.740625246556 0.018527692859250152 4.822968652321788e-07 20280789.043548934 527.9319478385739 5363 354 131817 WRX_20200306 22706056.156714518 2505.2459061981863 0.12144698543170128 1.3410462021478988e-05 67226585.56861746 7423.317832031781 18864 None 24445 XVG_20210823 507624051.2292472 10301.239579977258 0.030811383183689825 6.252568986774287e-07 63133584.286618605 1281.1728989283854 325072 54576 161164 XRP_20211125 48664111213.885345 851180.0883757094 1.0324344122101776 1.8053534251464193e-05 3196925598.8004704 55902.636637006515 2253023 338667 19899 ORN_20211125 240645613.52281365 4206.543993384681 7.525459223896869 0.0001315809193557339 14444623.671851061 252.5609143498306 90536 None 71458 BEAM_20200329 14879314.146311764 2387.7996583038384 0.2562506557223347 4.098930602046767e-05 103951106.37932287 16627.796321291044 14936 1481 244013 STPT_20210124 18342447.076037996 573.0929020240687 0.02005210795535825 6.256970520751004e-07 2565130.0350336037 80.04117595431876 18600 None 1582459 WAVES_20220105 1607832945.125739 34754.51637745608 15.8718245042602 0.00034526146975098147 102173797.89036229 2222.597384453029 207724 60060 111295 YFII_20210105 60406305.249253176 1930.759345368222 1521.0228850341134 0.04861626841239156 106071398.61850008 3390.347138661969 12757 None 153054 KNC_20200403 78247581.38899864 11539.35004235066 0.4369395913154156 6.409458659751015e-05 60310347.65660327 8846.913572113559 104687 7293 125566 EVX_20210809 10399916.201414803 236.31369223278827 0.4770603762116882 1.0840077625357264e-05 1012490.4861753512 23.006470485417818 18306 2802 2085195 XMR_20190520 1530664586.4313664 187045.41993811837 90.11500384026063 0.011013036583494102 69739626.09474109 8522.943136772576 317387 157842 116319 GO_20190904 7745695.675000036 728.8815160959776 0.00997293847574466 9.384683856860465e-07 190248.56814728177 17.902674027569386 10235 687 740517 QTUM_20190826 243020230.52961132 24072.432103965893 2.5336531840613743 0.0002508418486101231 190367398.1554256 18847.137551739033 None 15348 286987 REN_20210722 275991939.75079244 8576.480319743261 0.3144426787644216 9.736566132094218e-06 28068324.045510627 869.1221381271561 87697 1179 100399 NAS_20200719 21701854.175888833 2366.518172795723 0.47621331632969405 5.1943099551765845e-05 6717322.296463306 732.6937924703582 23503 4928 784060 KAVA_20200306 17056611.296128035 1882.101804493338 0.9272315956477484 0.0001024039916295162 4995739.419180963 551.7323396509885 16917 None 380992 XTZ_20210916 5796035687.842726 120268.54430621056 6.9191078103198 0.00014353093492140907 1000613102.8993312 20756.85739995935 140415 56807 46936 ARPA_20210418 114741068.85530718 1903.3846161544361 0.11683077395902579 1.938459149090292e-06 56463061.169270344 936.8365354457297 38244 None 501259 GO_20191108 6940672.042520979 752.8355212527497 0.008262382101767567 8.961977598518371e-07 584744.4892041321 63.42561925311357 None 684 729197 SKY_20200422 7027608.616894953 1026.187657485422 0.39013384785707267 5.699162974560708e-05 234869.0061298035 34.31019253928551 16128 3824 410514 ELF_20220112 195592878.36803424 4565.2020531547605 0.42413097119214516 9.912883952484319e-06 30669443.938900124 716.8131056286581 95231 33575 101897 NAV_20190813 7070704.472499207 621.2318878180994 0.10734360659408361 9.431866966064669e-06 85911.04480651331 7.548670770815291 51796 14199 652826 NBS_20210511 0.0 0.0 0.028938347751773192 5.179085365359348e-07 6774165.055573862 121.23698077994628 None None 486694 RLC_20211216 197435916.52669692 4046.9463967986694 2.7717203572778613 5.679657408587406e-05 19312655.694313567 395.7443531620661 50337 8480 265933 BQX_20200806 43184115.899245374 3686.3518138935883 0.19426471781129162 1.6583136645659452e-05 3452490.710678657 294.7170534521336 None 54 263713 SKY_20200320 6095428.357667178 984.8968299699003 0.3619516386486119 5.8560431631856994e-05 206392.2667290942 33.39236222347039 16200 3831 253868 ETH_20190511 18289505929.628407 2870235.978341335 172.68209089135948 0.027105235865860326 8161017266.9209385 1281003.1242001795 441813 436442 36863 BCH_20210318 10103021666.752533 171753.19680060554 542.8027927096723 0.009211090523564166 4472154423.586261 75890.21240177001 None 477797 308933 TOMO_20210930 174972092.9893628 4211.993632511727 2.0296844312307485 4.880760202113751e-05 8148765.073717666 195.9524724937605 None 2293 146716 1INCH_20210916 591434565.8533019 12272.177797352948 3.293163931221909 6.832561046444197e-05 124125220.79459246 2575.314093664744 264434 None 4207 ATA_20211104 202825342.22331682 3216.6936689971985 1.177491943334863 1.867434728767851e-05 30283643.69656305 480.28123056558877 None None 266555 DOCK_20211230 70448412.58601576 1560.1781752227776 0.06732404922865175 1.446827097124593e-06 10275263.139315322 220.82048406737883 57730 15288 184279 POND_20210804 53243057.6052185 1385.73431655182 0.06868713829484124 1.7883049172050593e-06 20758798.288537472 540.4659733428967 19799 597 162799 EOS_20190701 5979952609.495147 550006.0244913138 5.76404977541154 0.0005312619599410531 3689170929.922317 340024.15925496654 1196 66904 97672 OST_20190929 7109939.544831615 867.8872400267278 0.010672715983904351 1.302968665728316e-06 295202.23203770455 36.0394916325205 17974 754 557470 ADX_20190205 7956268.573357954 2296.650241707671 0.0914047463295253 2.638482233416281e-05 144496.19063961392 41.71015697855536 54461 3951 834764 SXP_20210206 151882300.68174952 4007.992720159581 1.7788618523427997 4.679804957204366e-05 232148328.11473265 6107.325845945865 97731 None 145148 REN_20190730 88076591.03714934 9259.576382769776 0.10956025400950575 1.1511973536920128e-05 5687436.107792038 597.6037072727605 8591 854 661465 QKC_20190923 29612355.102059465 2945.8364586373154 0.007794434709699864 7.756208362330588e-07 3712278.825746664 369.4072648492013 50903 9237 326472 SC_20210212 531654277.73687345 11149.655118915249 0.011286966752045475 2.363952131139542e-07 81414689.22100496 1705.1563304656643 111384 32832 135248 SNGLS_20200422 3961510.05037721 578.4688562377164 0.006141445523322634 8.971561716333002e-07 75064.84938703156 10.965641988445855 8876 2127 2196057 TVK_20211028 75847169.31611806 1295.9403325452795 0.17333405602841678 2.962063068649213e-06 10418148.98279055 178.03318662634956 56305 None 65843 SFP_20210826 176325712.65939584 3597.3273062052167 1.6297885923895863 3.325369569805781e-05 55016442.56415113 1122.538253096713 380233 None 25785 BQX_20190325 18455626.064419825 4621.881593458522 0.15684204670862045 3.930510730596119e-05 783010.3030679781 196.22483020089618 None 5822 403749 FIRO_20210519 154092011.95007274 3611.369323930581 13.0440253363727 0.0003048888693094423 18271154.155687697 427.0669051809156 72152 906 195652 DNT_20210219 236656885.60140008 4578.607700427051 0.3149599777368625 6.092016439581829e-06 26685202.031659678 516.1503078535637 63655 8708 221054 FIRO_20210304 72409910.95256914 1429.0961562120415 6.240153759723671 0.00012315689433777446 26392215.01636551 520.8819143351183 69078 354 205310 FIL_20210620 5225718803.217338 146930.69413416335 65.03350972332092 0.0018265984990361802 333372034.7791445 9363.43218963406 92724 None 24500 REP_20190821 111430950.43669654 10355.469426983234 10.101497148070484 0.0009389239671500462 9800396.669753581 910.9369815113793 125951 10042 195654 AERGO_20210620 38711958.98321942 1088.0927805569524 0.14614067326010388 4.104984692604759e-06 10353586.089101883 290.82466544877747 None None 351474 ANKR_20200807 46303049.68725388 3935.554434766636 0.007958277979949902 6.763670803314614e-07 36575736.76130464 3108.539855800746 22784 None 5159 WNXM_20210314 81696657.61309335 1331.4850573223423 50.85645431255092 0.0008289263680066074 26325156.209570106 429.0825308012115 23708 None 104345 ARPA_20200422 0.0 0.0 0.008321136443364971 1.215570322461927e-06 2204639.8760822765 322.0587504268873 16748 None 1423765 NAV_20211207 25310911.66258838 501.1349648054098 0.3498458747157726 6.926656868394984e-06 219352.94069965117 4.343005486442501 58800 17325 627196 JUV_20210823 34762567.14938511 704.5616393422583 13.33201539947223 0.0002705297066511162 25117757.122585263 509.6828395784759 None None 38736 DOCK_20190614 6888263.14451898 837.7298117567734 0.013405588958266644 1.630186936547069e-06 1726446.8688863744 209.9446090032188 172 15259 238088 WRX_20210220 78308432.05001459 1401.775948889471 0.3196191935387783 5.712845643762114e-06 34555885.39798115 617.6488876543268 60934 None 4431 QKC_20191020 19553338.87406156 2459.7958365458303 0.00514084855017969 6.467150158594883e-07 4296824.646889358 540.5374215043472 None 9233 305114 LRC_20200323 30626210.429179106 5249.369586165162 0.02677136298941016 4.59129966628076e-06 2615120.287274025 448.4941953457789 34253 6820 553678 FTM_20200223 19741589.972475853 2045.1600870596333 0.009342505016643415 9.678394513156802e-07 2514296.9239971335 260.46930143799653 None 2312 396043 THETA_20200423 91030230.3323714 12798.49346705401 0.0910831175552393 1.281054214156125e-05 4214429.214571479 592.7456646743778 None 4022 358410 DIA_20210527 93949360.5110437 2397.9229739771713 2.266801459929583 5.781827384931967e-05 19408184.705427717 495.0357400296788 31551 381 375283 LINK_20211207 9243583345.51564 183134.29036815322 19.821174458596452 0.0003925926832022593 1222025145.6265264 24204.324111282833 647364 72969 19749 PERL_20190906 23935924.1834717 2264.4212808971374 0.09104814664494731 8.614640207461083e-06 12399445.750392001 1173.1898764299244 11375 361 317628 HIVE_20210421 203039970.69523674 3593.9127243589355 0.5440181429937161 9.648460979732027e-06 47898417.67022491 849.5047818421937 19044 161 113776 GO_20200704 10495629.867887335 1157.4641835995296 0.010691989174985359 1.1795933174535818e-06 915527.8388540295 101.00557557442642 11503 680 901828 OAX_20190523 5178955.839377747 675.4797354978824 0.22072166741597302 2.878823804427469e-05 3930534.325866172 512.6508835264423 15171 None None ONT_20190531 894679939.6478645 107663.4963701129 1.458054109354497 0.00017552866689543017 315245179.5051833 37950.968862364694 80879 16207 249256 MTL_20200518 18460538.20180342 1900.891740505782 0.28751764566798566 2.9405703300474977e-05 1751585.067803951 179.14236425288195 None None 416687 FTM_20210702 564879722.6020672 16811.549205012718 0.22257869718826473 6.616941373415287e-06 60878561.83514827 1809.8312176761733 100442 8949 43795 DGD_20200301 82184610.8015553 9583.375779277872 41.03924015246165 0.004790543548944138 1699769.0751522991 198.4154128442644 17662 4712 323922 YGG_20211104 587448592.0935985 9315.991573704787 6.686377659916651 0.00010602289014149973 95219628.94829161 1509.8549278511637 None None 49309 BLZ_20190507 10002053.97419653 1748.4145485687916 0.048473062604495104 8.47366655497979e-06 370508.3022660134 64.76924791962115 35727 None 825478 XZC_20201229 38489621.45678689 1419.4159468787382 3.388621941142614 0.00012486472593742923 4007850.2501164163 147.68219405151456 67098 77 998901 ICX_20191017 83420956.41287005 10416.611963762363 0.16754006281095724 2.0920400553174047e-05 33722426.79445589 4210.853597214761 112996 26398 151226 EZ_20210826 0.0 0.0 6.887116997425602 0.00014052257693957827 4285105.889955103 87.43195771765465 36641 None 158506 QKC_20210314 191706751.2422337 3124.4200451345814 0.02949179694074449 4.807476777832171e-07 85587286.99362816 1395.163867180546 None 9303 361342 XZC_20191113 41812072.07211629 4754.220522546578 4.75963541920887 0.0005408066929130504 12992625.778337233 1476.2683190149316 61577 4061 207316 FUN_20210106 72685814.4593956 2139.26157084544 0.012196093480686272 3.5790766890442924e-07 23528705.850140717 690.4755425577483 34268 16523 359571 1INCH_20210902 605644309.5080248 12452.786283749243 3.3585037783590512 6.900071523622441e-05 128118318.21812421 2632.2005795783493 257512 None 4494 KSM_20201015 279618827.411459 24502.003774902278 31.143604758258544 0.002728352761632335 30546962.16049656 2676.0835560619767 13547 None 184424 BQX_20210128 227235177.32362023 7517.316773835402 1.0182111829039848 3.349277309173489e-05 10321870.29304562 339.52490938208007 None 245 96295 OXT_20210117 0.0 0.0 0.279111813856915 7.711326168414734e-06 27936308.18358817 771.826822262131 None 1844 171899 ONG_20191220 0.0 0.0 0.11076576357796816 1.5501162222010164e-05 9275352.09914729 1298.0431219068755 81540 16285 323482 MKR_20211111 2665863239.118573 41118.009718066416 2959.298051590255 0.045568193430692225 124315368.61401054 1914.2467790180501 189836 31524 38680 ANKR_20220112 750981010.9708539 17528.143569283868 0.09180326857120022 2.1456465328319143e-06 37437347.92679921 874.9940718642168 156695 None 5363 FUN_20210823 347135506.57209855 7036.428316236305 0.03271141487869301 6.638707168369882e-07 26051657.06588235 528.7124483992887 None 388 124228 ELF_20200625 46402628.835246876 4987.474433620974 0.1005280925067874 1.0815384624643593e-05 19061166.47965094 2050.7088290556158 81138 33376 528254 AION_20210210 46455279.19612162 999.0815421166363 0.09556240701669388 2.0517260061636505e-06 7097244.504865146 152.37792325794075 68412 72601 360629 QTUM_20200719 242689861.9044535 26473.786446793543 2.3656331673992494 0.00025805473205071813 268599922.6613068 29300.181459414354 180506 15078 105183 GVT_20200106 4348138.09855508 592.0486884114811 0.980799323998499 0.00013353541780608826 744408.7751695848 101.3509434381921 20871 5637 224170 PNT_20210124 13806195.741690582 431.32328489044056 0.4505005162029605 1.4056979136921263e-05 4646601.800823125 144.9880349134264 None 116 1091126 TWT_20210523 169352285.51567397 4505.7982598420285 0.4857867440955591 1.2925720360946894e-05 16011095.625068776 426.02015645225003 779670 33421 3237 STX_20211225 2412052691.721509 47438.34051581621 2.287560743523293 4.500168753730386e-05 70705922.04198593 1390.951396494804 101694 None 37004 ACM_20210420 0.0 0.0 10.197019662524918 0.0001823166219381923 3972302.039511613 71.02238822030704 None None 44251 NAS_20200312 17234206.749945626 2172.8204349030607 0.37956241327743007 4.7814766831699986e-05 2667656.666429377 336.0537741104499 23706 4980 1191705 DODO_20210506 444554249.52480835 7765.453678078598 3.8300983871253385 6.686188989487301e-05 77712241.39192003 1356.6198050933551 84612 910 24595 ENJ_20200707 164254757.81694162 17595.956849029157 0.17838587977004988 1.91005964924885e-05 6766772.413627547 724.549440773073 58732 15620 100201 LUN_20200530 2220943.6118655675 235.5051574165022 0.8264475036855963 8.762721462683729e-05 679467.8254393929 72.0431397109752 28747 2131 3817056 OG_20210429 11805439.890820656 215.7948931717321 9.22589006892478 0.00016849207042451283 2823112.963860319 51.55840192864391 653412 None 247445 NMR_20211120 232744972.36307815 4003.8540895441083 39.57625157641657 0.0006803087844846346 5734753.126839797 98.57939480465302 32150 3723 2691108 WTC_20210814 25550105.131986786 535.6334004322628 0.8764491698230704 1.8369449137582218e-05 56769710.90455551 1189.8331961761064 65457 19927 1106983 OAX_20210814 11932074.497124003 250.45270948972203 0.21096483642084424 4.419113438077823e-06 541812.6813820825 11.34943501409019 14247 None 1659116 APPC_20210430 23825362.528051745 444.5505041367821 0.2111550065018111 3.939879801655279e-06 766071.3646548038 14.2939025990088 24876 3136 715817 BNB_20190117 875623955.7308335 243258.42242314518 6.060378577285266 0.0016839098699337285 37246934.99339115 10349.267898086795 904843 46882 1078 ZEN_20190618 69618181.15069379 7468.4803099026 10.408978244049278 0.001117162306850893 1108574.4093740308 118.97974185892588 26003 1671 240249 FLM_20210722 0.0 0.0 0.3329952971943774 1.0347589172208899e-05 9444809.64408812 293.4906613701887 23886 None 74148 ZEN_20190605 63145371.56913225 8241.923982593818 9.580067113081608 0.0012496112287811486 730575.3211986198 95.29527445518353 25734 1658 229974 LPT_20210916 459782228.46441716 9540.545002382923 19.019114674217583 0.00039460307708610593 16798262.396544244 348.52547791627825 15951 1357 120075 LPT_20210602 589940874.1123917 16078.166734469198 25.05539548817716 0.0006830449551050295 16555073.246649517 451.3143393746872 12227 954 99080 TCT_20220115 16555595.075621195 383.85913827321696 0.02860252069769549 6.631799640730993e-07 1272661.824136307 29.508022447683167 None None 527102 SNM_20190719 5605000.851186849 523.8026403846181 0.013317171147449161 1.2427076410155637e-06 144206.0696112243 13.456760644021362 31209 9970 14424702 RVN_20200229 147484240.49896598 16874.343046370872 0.026119551677876565 2.9977371658970334e-06 20370538.309399597 2337.9237336274578 30249 7468 186532 WTC_20190618 52597637.6715455 5642.555074040659 1.803078242457562 0.000193518614560283 8285773.709490551 889.2855623587104 55630 20144 829543 REN_20190312 15003320.557500253 3875.255792310803 0.020019571738724116 5.178015717965346e-06 781917.4992884068 202.2411445313747 5702 805 3522346 TRX_20200907 2273578872.9200454 220810.09507394177 0.03169800024658187 3.0812835057635102e-06 2118855129.1330779 205968.6197776528 527939 74639 41399 NCASH_20190601 6696427.929721161 780.6095949054637 0.0023156481658307988 2.699428768802393e-07 1136301.1847638155 132.46244198220805 60509 59271 943621 IOTX_20210511 372507526.2835377 6671.707206658228 0.0494410727999265 8.847152086987601e-07 64545261.60572748 1154.9946503610686 50301 2928 209846 AUCTION_20210704 64691234.61132487 1866.0637135290483 14.155792028555426 0.0004082356078096719 998894.0606546277 28.80687446991455 45011 None 50364 FTM_20210909 4050558279.65296 87396.17732490678 1.5609252382417589 3.3792577572936246e-05 1732637548.0719533 37509.989149099245 133624 11946 51149 STORJ_20190511 30669053.800398804 4812.858932702382 0.22611499712526423 3.548755241065358e-05 4729261.264380487 742.2325326364846 83935 7697 186547 TRX_20190703 2113784242.6165123 196351.67531631095 0.03195952627260643 2.961189232491717e-06 1259828180.3003278 116728.5650755273 438697 71183 89082 CELR_20200325 5637792.02935609 835.2278397457535 0.0015017914590463597 2.2248746132467334e-07 7395882.262129275 1095.6854620828744 19242 None 1309255 EVX_20190813 10671151.58426881 937.6285683215366 0.5051032001875267 4.4380418118497425e-05 1117711.3866434477 98.20666084995177 18244 2913 1025264 VET_20210718 4292713186.741592 135818.4782902728 0.0657264206641806 2.0813331369864434e-06 418042910.45192397 13238.003125887899 392082 193463 33228 COTI_20200418 9577271.399167154 1350.2376967443863 0.019038267848660043 2.704326765799651e-06 1275602.4019880083 181.19535588198434 22986 935 241032 TRX_20210422 8977823783.701883 165691.37303445823 0.1246343143402509 2.3042861653616985e-06 3348606787.3128066 61910.304028922146 799414 98914 21813 EVX_20211028 13991829.0463963 239.09050770349418 0.6461114914383778 1.1037525586305761e-05 1049552.1041385636 17.9295034326058 18500 2794 1911649 BAR_20211104 43126548.529274605 683.9623397113646 14.592402520005466 0.00023155719095517303 8736913.940685462 138.64031278938836 None None 32257 CND_20190318 26571798.156697664 6672.949447104389 0.01535339754394228 3.855683572780694e-06 440313.069824193 110.57538667534955 36683 6210 587150 THETA_20210124 1930493014.531948 60296.93499805928 1.925714927041226 6.0088132154061394e-05 103053263.86459485 3215.5736298504426 80854 4994 50826 BCD_20210422 436090141.95840603 8048.406678332539 2.3130636359629593 4.271007415459941e-05 8276206.697638316 152.81784568273125 29969 None 1334994 MBL_20200329 5229683.551778236 838.5628317589977 0.001474738463397063 2.3588013700614214e-07 5071917.6120364 811.2385015409328 None None 114904 YOYO_20200713 1789414.8085980476 192.8664406904337 0.010223289376757498 1.1003202420679232e-06 586540.1402179315 63.12860423714647 7505 None 1813147 COCOS_20200403 6595704.699472552 972.6836785512696 0.00027412800332035533 4.021178532877705e-08 657443.0727584412 96.44020088220923 14703 217 63890 ATOM_20190726 926342281.256688 93533.48534109205 3.8225146763336566 0.00038655583183429124 147060170.86980176 14871.615021448046 27306 6228 109453 NBS_20210722 0.0 0.0 0.00993823084580686 3.0772927566765e-07 1659148.1807931736 51.3741807593654 None None 1815973 LSK_20210131 188010806.06975332 5495.3906707906535 1.313432195104124 3.843884265998857e-05 11372978.20644245 332.8410263449219 178578 31066 225361 GVT_20210218 20000529.125790283 383.3199107605099 4.503407216233105 8.63874004494415e-05 1032531.0856160233 19.806709028684676 22173 5499 211952 GRT_20210324 1847384873.420298 33867.854229600875 1.5107629593956267 2.767261914895246e-05 240994539.1677169 4414.292829917817 78130 12390 22765 IOTX_20200217 23722808.7835965 2379.6845357848224 0.005437791091914346 5.465975694981707e-07 13837732.556452546 1390.9454877678868 22281 1806 655766 AION_20190614 59038530.153928876 7176.105995914773 0.18552136955708265 2.2539388039974697e-05 2877650.6059270487 349.61192775423797 67354 72567 268953 WTC_20210723 14414354.905520018 445.67926333475424 0.49485151038391084 1.528568360883552e-05 5528660.9730537 170.77721425777275 65358 19888 895790 ARK_20190903 29854177.056536987 2890.8482578248045 0.2091245767941393 2.0250011157527892e-05 302006.6958864159 29.243999223334928 63270 21777 99618 BAT_20190818 226484757.74213523 22157.501906332545 0.17673615174242904 1.7291552310664056e-05 14320450.094254602 1401.0874938475345 105195 29568 32625 COS_20210506 101822918.5490734 1778.638171144953 0.033816978731924185 5.900557511096741e-07 16346874.46613236 285.228534691764 24722 None 191552 AGIX_20210825 191481261.0570525 5830.0 0.285464529379234 5.938582772182605e-06 2169747.069016717 45.137735998501626 58212 None 189505 XTZ_20200707 1748421678.2868838 187133.8142886586 2.4405756302638486 0.0002612151475945511 84238827.10347867 9016.093327395949 67317 27045 72364 REN_20211104 1012376559.765049 16055.71194773031 1.0124993422220014 1.605474772570387e-05 79193469.65773399 1255.7353114796672 101798 1208 73959 ZEN_20190512 79276713.2550197 10831.810029995864 12.27561505824961 0.0016853521247732763 2385871.5628925404 327.56270776467665 25697 1622 234358 AST_20210819 37223848.48664533 825.8167423745552 0.2155218213958329 4.78463985612847e-06 3092629.805124167 68.65717693927216 44554 3697 258024 SNT_20200315 33592724.81002527 6498.997502092867 0.009330914115418969 1.8009518524057405e-06 16777578.37697621 3238.226231979533 110569 5608 203342 GVT_20210430 42127578.73175994 786.1171609101796 9.558491112624246 0.00017829350164328818 4070339.524997645 75.92360323800796 25098 5605 213426 ILV_20211207 841077241.6624774 16666.86147300055 1326.7153036156353 0.02627262265392075 80587927.67898004 1595.8632636566704 188901 None 9682 CHZ_20191213 32618396.421909146 4527.746647598598 0.008803361570517323 1.2228724536976046e-06 2767429.860785708 384.4228954117771 14218 None 252508 TOMO_20210124 99148413.4870639 3096.7972420452697 1.2919364539027596 4.034356048481397e-05 15395562.943510585 480.76035236329767 None 1723 196124 KEEP_20211002 220689510.06233162 4582.427328328365 0.40215084973729454 8.349927014127896e-06 14320593.53165038 297.34093777592614 24684 3014 140553 ENG_20190916 25325191.210017502 2458.1770331683542 0.32315939970049223 3.1366708446687156e-05 1326573.854429414 128.7607767666678 61399 3481 323659 REQ_20190314 18386374.207068738 4754.199116221564 0.02518772574299601 6.5155040348655226e-06 477020.6937789444 123.39463621066773 41699 30675 416149 XVG_20210310 372441944.83709127 6814.676358803331 0.022697526916068016 4.1494244084615954e-07 19488560.26604716 356.278055987078 294520 52478 123910 AUCTION_20211007 188538374.38777772 3396.1229803661568 26.256531525471022 0.0004733055843852957 3094183.0900251353 55.77637450699707 82313 None 114996 CMT_20190130 17445607.25541788 5110.916018362051 0.023313296280713474 6.829351191347686e-06 646984.9517799747 189.52650015767628 293071 1628 732966 TRB_20210506 198281771.6579295 3463.577087933022 121.66057394316213 0.0021227952357168465 268126317.53370303 4678.403619045539 19544 None 320975 LEND_20190224 9293095.321996164 2258.470692483342 0.008347117519040123 2.028572787674475e-06 271720.1945550432 66.0352740067041 11672 5944 428546 PERP_20210420 174746615.31301484 3118.7954051075426 5.947065439102217 0.00010627098122790344 14848131.200606734 265.3284192425723 None None 280871 STPT_20210616 56972404.89580503 1410.726689813386 0.050747200379822645 1.2572958495815786e-06 77458888.7779441 1919.0958051832256 None None 480886 BCPT_20190905 3276334.8400730365 310.1671708251367 0.02820568559101179 2.6702025671931713e-06 127850.96695736064 12.103516473163221 10899 3115 1000589 QLC_20190414 9346719.974162476 1842.0018253198052 0.03893522995112551 7.675247806709213e-06 1362551.6033181767 268.5979052396388 24876 5838 940522 COTI_20201229 29334057.527997766 1081.8573719819449 0.05140188957279078 1.893760775727994e-06 9885233.024359856 364.1941320844583 34461 1256 248568 IDEX_20210711 21456928.96765521 636.330905194057 0.03696958774866404 1.096377364730088e-06 441591.2423929683 13.09591672793765 53045 1976 9238367 XVG_20210806 402570509.0796443 9821.03073899566 0.024441180757370628 5.973516930569902e-07 23400276.47048372 571.9115989692827 322459 54501 124542 ZEC_20210114 1261214158.4845827 33747.27749196335 117.95833466318587 0.003156301906054978 2245025409.6729984 60071.87198705202 72041 16664 167554 NPXS_20190712 170565595.73555467 15059.61271092857 0.0006917789127374779 6.101392236968123e-08 6556546.61156857 578.2781443690118 63333 4643 223593 ZRX_20200129 145939123.50141186 15622.317967200175 0.23258432464872583 2.4930613367941755e-05 37481929.553452335 4017.6718503831 152232 15968 132078 FIL_20210219 2287446142.634004 44259.15574144665 43.474011615378686 0.0008408826904246421 355707147.3845515 6880.156028439498 52796 None 47749 BRD_20200423 7329250.239134119 1030.414121090871 0.1174698624968144 1.6511917739438994e-05 348778.4012097187 49.02534273609199 None None None BCH_20200907 4218230034.2734046 410766.66497371235 227.88168382094483 0.022190871173730874 2623521568.869986 255475.6844874045 None 317607 143808 CMT_20190318 26438641.303360593 6639.140078485486 0.03304221149906203 8.297806198041595e-06 1394191.8995833024 350.1198515707738 292394 1636 1091095 AION_20191108 32068839.5292709 3478.418426210557 0.08848186815413955 9.597593403044751e-06 2240926.346135212 243.07239850439663 47 72557 229740 MTL_20210107 26238302.10504927 712.3851414940146 0.405898357139688 1.0989787572300163e-05 6465260.9316743305 175.0483661458629 42789 3362 362516 BTS_20190729 118555389.19087973 12418.38997984082 0.04423927385613539 4.639074540009522e-06 16423630.075130085 1722.2354142574623 13662 7176 160624 SAND_20210219 223249613.72840258 4319.573809895874 0.3214051841264081 6.216680860641745e-06 399009737.2995769 7717.723047380552 70637 None 43842 LINK_20210823 12535219331.333893 254088.592446855 27.980701728477843 0.0005678137421246108 1284691375.8270264 26070.30462145746 436309 64513 31110 WRX_20200725 25353276.996773466 2658.1848379369976 0.1304700315231983 1.367791138294712e-05 4132808.580348056 433.2656999062131 33533 None 19543 TKO_20220112 78370513.41527197 1829.1935357533132 1.0443009739722062 2.4407636012421784e-05 8960355.481981931 209.4234330877334 358938 None 22586 QLC_20211002 6937340.320543668 144.08331798780597 0.028816454534797285 5.982581360205561e-07 257881.46199203553 5.353874557305819 35154 5764 940522 NULS_20190603 56914465.75420623 6511.456334827938 0.7936799611916254 9.076360297971363e-05 5977045.272300909 683.5225665423014 20842 5316 664729 NKN_20210707 144799310.98521024 4239.319912430526 0.22220758746336922 6.5054035226888126e-06 19833164.343026284 580.6405562296951 28420 3265 105019 LPT_20211028 548294375.7339076 9367.875722483988 22.569903466789913 0.00038559940546888837 32577413.19690003 556.574430144234 17577 1489 124862 POLY_20200412 11456504.619795825 1664.613411248084 0.01846605631373244 2.6833152748856317e-06 1217370.9756632475 176.89700923149402 34810 4990 460641 AUCTION_20210708 65965186.740339346 1941.2607198144924 14.428756994825624 0.00042473691051426966 1160791.0919328253 34.170013558121624 45731 None 50364 BNT_20190305 31671445.791426156 8525.361406478722 0.4890710901034973 0.00013164879885974666 1865988.9733922554 502.28936447794655 849 5104 160054 BAT_20201226 317591245.6188547 12860.491649188823 0.21429806628823575 8.687096955276117e-06 126617693.11893961 5132.758290493306 124766 48769 21978 DCR_20190723 291372895.9528899 28154.50381861925 28.75489664900028 0.0027812454700786382 19302155.849471662 1866.952755017514 40593 9552 324578 MTH_20200315 1532148.7631765862 296.4162937371386 0.004421805881619876 8.530253482042551e-07 84108.02777954326 16.2255606881446 19211 1930 1066623 WAN_20190729 30303920.489111736 3174.531747050366 0.28634873211694484 3.0027461957165364e-05 3078716.2384039727 322.84422578769295 108243 16917 474498 ELF_20200701 40311749.58810857 4410.252926854246 0.08738159164912353 9.559865901662826e-06 14422678.906985428 1577.893852599613 81087 33375 479052 TNB_20200403 3342337.9395563724 492.88813383557164 0.0010884783861218816 1.5966869005570394e-07 300705.174505344 44.1103855789966 15064 1443 2723419 TROY_20210725 13202683.5833938 386.4266923809916 0.00695221232313782 2.034824591188483e-07 1523604.8609960224 44.593986695298995 58364 None 506506 SRM_20210725 144384333.62273425 4226.012381082486 2.887875990463898 8.452447664956398e-05 41937961.91022005 1227.4710873721683 97017 None 26595 QSP_20190419 0.0 0.0 0.02853003774199608 5.410944133400127e-06 244702.18036041994 46.40967667920081 57223 8549 831378 PPT_20190729 27271723.635451432 2856.8895073702074 0.7541596434547163 7.90508791775996e-05 5815463.485711964 609.5758442666689 24097 None 661854 LRC_20200629 87708611.00643782 9617.342797246742 0.07533497006441381 8.25635632860328e-06 13899474.949475482 1523.3166996050045 35895 6900 408887 TKO_20210725 124377315.60644512 3640.608196932921 1.664454863394268 4.8639395747093434e-05 67317018.9153476 1967.166064726488 300854 None 20921 RDN_20190702 16402339.168078167 1545.1982270088226 0.323485425529051 3.0504591262828982e-05 741584.8745009564 69.93126026111004 25692 4427 772412 ETH_20190221 15611440200.106087 3933537.766410275 148.8684346762975 0.03750051014090973 4674193073.576877 1177446.5496153168 439239 429707 29840 BAND_20211111 358122131.508141 5514.476161536126 8.632794698243854 0.00013290157650992925 74431433.70175844 1145.869353625459 None 6199 342912 KNC_20200526 121628323.4295651 13670.954553907903 0.6767710102332997 7.615083577463729e-05 80412584.59757608 9048.090759374027 106525 7662 111071 TCT_20200621 4465584.717723023 477.33332418602976 0.007731454413881378 8.263335990618513e-07 909534.7110094863 97.21057009283182 None None 906216 CKB_20211002 377321659.86059135 7834.758821237313 0.013456623365095486 2.7940495982770187e-07 27321848.46071951 567.2938719074957 57786 7924 130039 WAN_20200207 30754412.55669943 3157.7380845414905 0.2890371184648692 2.9681522233443033e-05 6735836.970528084 691.710102368313 106480 16457 881283 WAN_20210127 66683646.06485533 2046.1793789741728 0.40635882800383705 1.2475809694840005e-05 4088086.229080414 125.51021977458248 104008 15817 602909 LUN_20200423 1757549.7216535443 247.04648332847256 0.6501362460784093 9.138510922293348e-05 400588.3575986981 56.30790627873639 None 2138 2572257 DCR_20191026 153206043.71705294 17694.931646146404 14.482118529674269 0.0016727309696439438 12043463.404953558 1391.058509703582 40627 9649 135598 TNT_20200317 9388556.052407485 1858.6516079175824 0.021833577290204794 4.341682026164051e-06 204839.86792626046 40.733113085241065 17696 2563 1338754 IRIS_20201208 53102352.37454607 2765.3744547221163 0.057431182343918044 2.9912262083694568e-06 3242070.762323902 168.8589131872294 10866 None 714436 EOS_20200106 2566954769.2638807 349557.41596608236 2.679718734056839 0.0003649229677417596 2027972091.2297575 276168.38462320814 1377 69653 75095 BTCST_20220115 154517108.39972076 3584.369139512986 21.227485149409738 0.0004921687390304538 2518589.6163378926 58.39462691333849 67502 None 2305275 POLY_20200224 17112991.442651387 1720.069965985736 0.028678464403804213 2.883732655511077e-06 1579041.04778163 158.7788024409105 34864 4994 368062 PPT_20200127 12784140.246062176 1489.4479034547976 0.35231962513506115 4.0997307217969814e-05 2974672.5508864094 346.1446815368328 24133 None 887980 AE_20190908 67395021.03463535 6437.616132447853 0.2049298000266514 1.957502744888076e-05 41891723.7859106 4001.524633720838 24914 6351 344855 GTO_20200719 7102561.117213154 774.7817925597077 0.010717942453518108 1.169165112365388e-06 4099348.5670697456 447.176811111705 16584 None 1486058 VIA_20190616 12845313.609135548 1456.8415833781946 0.5564813969672079 6.308792915346364e-05 429623.5033312933 48.70613337398709 41067 2232 1573301 ARDR_20190929 54261065.83003156 6624.412066448386 0.054315408667980916 6.631046461588438e-06 1412622.9271029597 172.45876431832417 66728 6519 1028714 DOGE_20210422 39871679937.55778 737162.6422160412 0.3084141062462904 5.702076205799821e-06 11245621590.878643 207913.28928894966 929660 1509214 11474 AUCTION_20210823 161314808.54951414 3269.889208378661 35.30711380093149 0.0007165498354440495 3860799.6812625034 78.35405045818555 None None 81918 ALPACA_20211021 144352470.53342655 2177.843985848013 0.9328830989195047 1.4078990877738975e-05 11219657.523009554 169.32609895147957 54166 None 22516 OMG_20210508 1662206527.6141562 29007.72584223732 11.904817131820579 0.00020772734170739464 3005801291.5726957 52448.27409655164 322787 4736 120611 SXP_20210325 254955597.53038496 4823.522205151358 2.904897757586627 5.5136583107456114e-05 366642104.79685724 6959.072080602035 None None 82835 GTO_20210207 14946003.363346005 379.7872455093871 0.02259413106947387 5.745708517976228e-07 42738889.25497885 1086.8539236410338 None None 738206 AMB_20200310 2043037.1552691374 258.32996976594285 0.014219905813427216 1.7942695312630105e-06 229937.30896720564 29.013519005934295 19148 5506 509552 BAND_20200801 85822513.67546543 7571.401302070829 4.21702735671054 0.00037216821205271505 16160981.91855917 1426.2662384856017 19619 1432 241439 AUTO_20210508 74729145.07938008 1304.0487591087895 2931.2728894026777 0.051151784266278894 14651375.989127712 255.67187091636418 None None 12456 NAV_20201208 8455308.994992007 440.1982167004194 0.12019561183748557 6.260227451113295e-06 185938.7070954711 9.684368510536244 None 13671 1363170 EVX_20211011 14154895.251654696 258.5448210170344 0.6476003728341337 1.1831834781320077e-05 576183.2500253089 10.527024541737825 18434 2792 2495994 MKR_20201014 527336806.87604576 46158.95998646832 578.3392502953237 0.050615314670046235 27897434.103166778 2441.5382578609724 67928 17082 25320 DASH_20210731 1698984946.9091043 40722.31023534563 165.81872170519208 0.003965886954507386 528322010.4976837 12635.879396881588 401659 41663 69467 APPC_20190426 6932580.0285529215 1334.538071262027 0.06596035295489709 1.269028503171923e-05 499954.76774975285 96.18760697126187 25729 3393 1308871 AGIX_20211111 287998927.0585754 4437.268162437258 0.2966858147230037 4.570042875001621e-06 3089459.8409512234 47.58894167867359 67784 None 114675 BAT_20190221 175146636.20976856 44130.54798101033 0.14228048789300551 3.583385868256345e-05 11163819.073402762 2811.6484625414832 92441 22871 122237 TOMO_20200107 31268607.1520528 4030.0248294566068 0.44944401591902094 5.795297152236124e-05 17710713.472939983 2283.6848132002297 20301 1436 259463 LTC_20210508 23183769289.59186 404533.95562137157 347.3098232910756 0.006060214578876694 13669223521.43906 238514.49660012487 173664 312882 92383 AERGO_20201124 11943483.326042188 652.1617362419189 0.045355380881737316 2.470441690343088e-06 4821802.7883135425 262.63659127728266 11214 None 637746 UMA_20210203 941051512.307571 26424.434700431368 17.00133423722635 0.00047856414311403826 145626881.07191718 4099.196132616104 19703 None 180078 CND_20200523 13245274.00863893 1446.9412543085803 0.006865605045467419 7.499960464913214e-07 453303.93866907153 49.51874738049428 34433 5933 397842 FLM_20210111 0.0 0.0 0.17334592214021452 4.506958183398543e-06 19020439.49479165 494.5274995482624 None None 65365 ENJ_20190625 119718066.50279906 10839.334587706473 0.13703201091677356 1.2407915103027534e-05 7775382.327184765 704.041947307364 46547 12613 19875 FET_20190810 22816169.722893316 1923.4648930191358 0.073269997326255 6.1767075043249165e-06 3587882.6698225643 302.46079732541824 16390 298 429380 OAX_20190914 3711510.983199254 358.82857041764123 0.07110950163204044 6.8700211789947545e-06 366129.2395758438 35.37242664350136 12286 None None XLM_20210727 6116143473.158168 163273.983419061 0.2606167622015017 6.984480800121985e-06 708964008.2698355 19000.10368446538 604621 196571 24604 MDT_20211230 78713701.64647554 1697.1740592689396 0.13054254026902853 2.8028024152955616e-06 66823770.776761055 1434.7340395420408 43034 909 368604 PPT_20210420 213731720.00877073 3821.248941334079 5.902292298753309 0.00010552946147149605 19380181.292603355 346.50606772903814 24325 None 724019 ATOM_20210202 2122916484.7896128 63622.88826255278 9.189049979857533 0.00027511079965786967 464472911.6086452 13905.846024580502 53164 11301 88305 ONG_20190818 0.0 0.0 0.1759677943632182 1.7215316288504343e-05 5117588.99255502 500.66498509126245 81415 16279 248344 UNFI_20210314 83145950.84586284 1355.105513036086 33.99555827041947 0.0005541637807382662 48717784.71942054 794.1517404877698 16768 None 99267 COCOS_20200407 6315249.071102581 868.27517864042 0.0002619137851529817 3.595250554188819e-08 500208.1545464403 68.66280993161321 14735 217 63890 DUSK_20200207 11239169.027739316 1153.9921958210355 0.043134976939097736 4.431486209354301e-06 1180086.0796038818 121.23653607139198 17693 13339 848195 BCPT_20191118 3373312.5706387316 396.57401085026805 0.029041752122850473 3.4128254430636145e-06 56053.82875240098 6.5871346927724 10790 3135 1782843 BLZ_20210204 39042937.13540709 1042.1472763458692 0.15104834808502388 4.026885510123893e-06 18113262.327376846 482.8919649364815 45552 None 375643 FTM_20210826 1267339757.7292793 25855.128572577825 0.49820102106855774 1.016684538462521e-05 109489857.71534924 2234.3720857677367 109295 9860 52942 AE_20190903 67999921.68074591 6587.544997139751 0.20783026551526257 2.0132288691591804e-05 13393194.00679467 1297.3839376993244 24914 6350 344855 DOGE_20210805 26408177704.10388 663388.6118315739 0.20164970023405493 5.071045208231739e-06 962533708.8344771 24205.599841116345 2007309 2126516 15471 LRC_20190419 58164792.651368976 11027.449558464312 0.07394344350438496 1.4010206086747155e-05 20897178.654391292 3959.428526779844 29666 2468 792629 RCN_20191220 22391752.33093071 3134.7068588934976 0.043985649125256134 6.155655879195925e-06 2361882.1243523187 330.5381158144373 None 1137 738139 CND_20200501 7358432.38452187 850.396745844955 0.003882919453769512 4.504701563768466e-07 110655.57768531518 12.83751465292 34555 5931 366061 STEEM_20210204 77190330.84381986 2059.72234202827 0.20528111661174747 5.4728043179224695e-06 10235014.14326113 272.86596313278034 12165 3857 197343 WAVES_20210729 1563761759.407272 39106.75313099742 15.653923421099458 0.00039123162689224885 280552512.05832124 7011.7256082485155 194710 59196 108854 CLV_20210813 202124498.9017599 4546.275646528778 1.5641526233455754 3.517925553932925e-05 329816017.41658926 7417.870727247202 62534 None 108852 ETC_20190826 807537458.3295722 79990.83284006338 7.161035620286514 0.0007079718218805551 906681904.316498 89638.60448433289 229781 24935 482560 TOMO_20210819 239471362.88907793 5312.708621839644 2.8364912787164713 6.297094996224838e-05 9971441.728550712 221.36897188845782 None 2237 146029 SXP_20210902 690090611.1216114 14189.105324377642 3.6808900972365115 7.565249550368158e-05 136720182.89820245 2809.978768378368 None None 129968 SNT_20200412 62073398.6775195 9019.174290019144 0.016338895973819274 2.374216150782169e-06 19092630.995904144 2774.3632705682626 110245 5643 188189 BNT_20190816 26746825.393728398 2599.5301088486217 0.38404870099316163 3.726736566413721e-05 3601795.244566963 349.51145539486566 780 5128 148794 LOOM_20200217 23885626.83265187 2396.068098841759 0.028690646349771642 2.8839352775863797e-06 18928807.365420334 1902.6917225309248 21452 None 480790 CLOAK_20190207 5900803.285872648 1732.6080549070946 1.1237192629477417 0.0003299491530413883 403434.9764900738 118.45754824117726 18084 1381 959121 DIA_20210506 211049015.7141034 3686.5947340800462 5.057691492831347 8.822401529659656e-05 167310381.17891002 2918.4843815264653 None 365 348922 PROM_20211111 301038291.25577825 4641.193501586618 18.364566051369685 0.00028278330993048844 13520952.043242995 208.1998323022986 None None 589619 AE_20191213 50829188.18846701 7055.579417322548 0.1494234774564855 2.0733571957065354e-05 6332829.908885653 878.7252635448376 25241 6354 420874 REEF_20210131 0.0 0.0 0.020274746742995318 5.934454443146397e-07 46945189.45872612 1374.0940476306444 22772 1001 104266 ARDR_20190225 53670812.342391595 14281.527593085162 0.053382733946664374 1.425016345266701e-05 803502.7461606431 214.4896789830194 69447 6607 792340 POLY_20190902 17929895.337808415 1843.5115910809254 0.035601957240418175 3.660513327117987e-06 3139507.5577424224 322.7971197790472 35254 5060 289476 REN_20190903 48575138.08552268 4701.673845680378 0.05905099902928292 5.715651023131609e-06 6450489.946737003 624.3543728275381 9553 881 312063 SCRT_20210527 129991212.01618911 3317.83965333235 1.8911742653579469 4.8273865118857055e-05 7804713.445272632 199.222087065102 82030 None 46847 PAXG_20201229 72484531.99851054 2671.114490541229 1914.8639174405434 0.07054787689410745 4301889.0164700365 158.49122957609046 13864 None 82066 LOOM_20210617 51319870.75403758 1341.7343672709392 0.0612828075109638 1.6001194969867376e-06 4979938.555839005 130.0282591584657 33297 None 248078 STORJ_20210511 268552419.13616365 4806.272686023444 1.8677043110592917 3.342623479128323e-05 123737220.69112737 2214.5204499188794 402 13222 52053 ATOM_20201208 1218036897.8079224 63430.86457543763 5.102278577657633 0.00026574534566425824 112919598.50534089 5881.266042287945 None 9796 88089 DCR_20190224 166659958.7839521 40507.99314727579 17.79113355200214 0.004323721249059892 1372746.0900458738 333.61401181923486 39775 9358 245960 IOTX_20190716 27926599.845575124 2554.011599767668 0.008022059860932209 7.344383837554241e-07 1186193.7155174436 108.5988150609781 20464 1757 905527 TRB_20210325 66216440.58072125 1252.7533208959246 52.934884764681264 0.0010033919497522178 113996925.28840053 2160.835857853876 None None 338279 CTK_20210819 106272304.60431503 2358.9617767027476 1.8786038675554273 4.1712578178249875e-05 27995960.647170182 621.623173112007 None None 88969 SYS_20200316 8859904.097670326 1648.7822145075972 0.01524806890890338 2.8375865636284724e-06 203880.62014789734 37.94112630079404 58790 4509 831215 COS_20191022 21735660.464980707 2646.5992154788123 0.01645822117889032 2.004002378046282e-06 2454563.498413295 298.8750141597926 9381 None 200954 TOMO_20191030 24717171.884473946 2626.635993256098 0.37976330828583443 4.0355314984286466e-05 8630839.779877746 917.1508945085418 17910 1342 283886 IRIS_20211104 140954763.62889278 2235.316260713914 0.12289734277614232 1.9501767053152725e-06 16670507.220267326 264.533260950753 30230 None 479024 QKC_20210318 273484895.1709497 4647.032981768802 0.042492256452766504 7.209130332462058e-07 100968002.55115859 1712.997968485794 None 9336 355106 ENJ_20200621 156836475.3135806 16764.454985114306 0.17042140760949867 1.820758933985723e-05 8683413.040487546 927.7239340249773 56287 15574 105546 BLZ_20200610 6245616.219547149 638.9159695660763 0.02746473769222359 2.8100450389734254e-06 1795682.9352824546 183.7246719923496 36161 None 740381 SC_20190929 67149680.87329961 8188.121663538248 0.0015921963362982214 1.9414980301170076e-07 7523799.372718446 917.4397232372753 108653 30538 208870 BQX_20190625 13294982.999094537 1203.8079263300015 0.11121258147924112 1.006985771260102e-05 1076887.2674795666 97.50786657222865 60726 5769 449913 LTO_20200806 17147950.412652172 1463.823738027264 0.07435718006671027 6.345090841795358e-06 2023331.7360642413 172.6561396881536 16715 526 1057940 OGN_20210602 224958438.03297126 6130.9860593432895 1.056687979694596 2.8812905363976278e-05 107365617.380763 2927.558023164888 111766 5648 40950 REQ_20210115 26965066.940666974 690.4099027965993 0.035075056927541225 8.94197180853794e-07 1478311.8643212859 37.68781628008824 39425 27247 443928 BTS_20190530 186519154.70387933 21599.192759334648 0.06889399378102179 7.966809301370282e-06 24923979.827830322 2882.1756937282157 13743 7191 179069 UNFI_20210117 15140182.152864242 417.2744072994117 6.234254845690777 0.00017224055072346988 12355176.721092416 341.3499280026554 13412 None 124475 REEF_20210722 157517985.34944996 4894.758014191108 0.01248023663757785 3.8644042790202426e-07 14959202.870104218 463.1996111988949 185434 12496 50076 CND_20191015 13374446.666163774 1602.3683316132729 0.007614129223297515 9.122676416516281e-07 205342.0627869335 24.60254007475186 35529 6077 313724 BTG_20210204 198318875.5071562 5291.878066366872 11.335278426288026 0.00030219906117118445 18912780.9134591 504.2156373440994 83478 None 263524 EVX_20210508 25856712.289827157 451.28732052336494 1.1918937536484642 2.0795818336127614e-05 2332258.6053223535 40.6925752573907 18180 2816 705371 OST_20200301 6648265.654104293 775.2403694846276 0.009603178079784324 1.1210687398943621e-06 59276.87419631995 6.919943596592922 17849 755 839878 EOS_20201231 2478259989.343768 85790.81659783424 2.609232431822285 9.047831174242781e-05 1811077824.0172637 62801.32883247578 191759 73747 95937 KNC_20210519 258267699.3318041 6052.877335596137 2.8189645846314533 6.57951677508541e-05 156778297.38559756 3659.2351789078193 162718 10769 127302 CMT_20190826 24332005.431379143 2409.7726335495568 0.030404107117518873 3.0111363194428445e-06 1768043.8803547386 175.10203874519382 290128 1644 599569 DUSK_20201229 15188170.25615671 559.6965385230209 0.050202499417990556 1.8484021701555197e-06 678274.3884241363 24.97333531315768 18457 13343 1144498 GTO_20210325 24500729.11816917 463.41478551868613 0.03671406265923708 6.958784404400247e-07 10647940.896712426 201.82109982964698 148 None 477560 WAN_20201228 45661524.906660765 1724.762934988786 0.3619251680671228 1.3748540042934433e-05 4987601.050066297 189.46522321515056 104074 15906 718858 NEBL_20190806 11935970.424285252 1010.5154250429835 0.7746096151633766 6.557060524225018e-05 371565.8879795959 31.45300508186637 40469 6149 850260 LSK_20190701 239146526.2084072 21995.4970783453 1.819723119787161 0.00016772056259683346 5523546.757530934 509.09523521982766 182883 30480 193702 COS_20200511 9502690.789012812 1085.2392680291784 0.004815912070411458 5.500740671730446e-07 844730.3232411204 96.48520109503247 10852 None 153547 MTH_20190723 5440346.058004456 525.6845986438685 0.015924073948713764 1.5390926520121522e-06 180875.4518464146 17.481963457515874 19521 2000 1394829 WTC_20211028 26894208.247875478 459.50061075032977 0.9220295633792772 1.5743934429129215e-05 19251336.30399284 328.72240596313844 66335 20342 338905 MITH_20190312 21765260.10802638 5629.176706645474 0.04316290423504902 1.1163984898328339e-05 10754146.595525036 2781.5350314022785 50 1987 608667 HARD_20210825 86234712.94793591 1792.8856990604622 1.1385129414504878 2.3707579491708588e-05 16965247.71271115 353.2721887493083 35708 None None OAX_20210603 12319411.339098115 327.5753804131963 0.2167957287166103 5.7646377210340615e-06 617474.2503276278 16.418752234084728 13976 None 1441903 VIB_20210814 9439544.307852775 197.8953321151755 0.051208354287723405 1.0734313889872212e-06 1924191.6435231778 40.33497536318727 32774 1277 None NEO_20210511 7465481072.060438 133709.77457898133 105.46074101910506 0.001887426971011265 1952201249.3090136 34938.473361572695 392723 110746 84803 STMX_20210207 77883268.67517361 1986.1837604021714 0.009336655651434714 2.3734121767524553e-07 56877970.38059803 1445.858908479 24577 879 181816 BEAM_20200704 24099586.867592 2657.3153223492122 0.3694151102689453 4.0751924646799506e-05 8563194.507431133 944.6464088831199 15331 1530 452746 FTM_20201130 48644879.24627147 2681.6739940927596 0.01925454780630596 1.0602481574463757e-06 3727266.8831238933 205.24127000524834 27973 2818 110001 BAT_20201015 319120349.67485905 27957.35648653998 0.21528452782488205 1.886012041916802e-05 111691351.69106162 9784.782789344521 123004 46583 15987 TRB_20211202 120784463.98107636 2113.1159858983906 51.865355835256246 0.0009072477760690339 16483106.728433998 288.32853223991367 None None 355372 ANKR_20200330 5614855.2789164875 948.9498882785985 0.0014121123216636188 2.3923219427170326e-07 2561445.930843185 433.9458845752583 None None 5425 KEEP_20220112 341575406.50138336 7972.482229813811 0.6221913565885815 1.4541995593401795e-05 9312828.180279857 217.66150385352864 31453 3702 147183 ALGO_20190916 121940787.96349737 11835.89630181039 0.3286867438903684 3.189919106077985e-05 54168308.551207654 5257.057840125696 12048 614 199307 GXS_20190807 103907929.94175845 9089.468288100312 1.734677275742622 0.0001514832086659128 7843280.512969098 684.9258448161457 None None 741400 KNC_20190712 35619455.6479222 3147.6652154289504 0.21311526327141234 1.8796465011604968e-05 7464875.911755332 658.3915048477136 97462 6690 219747 GVT_20210318 31876093.984212846 544.3078034145285 7.215043251468873 0.0001224356569518554 1918879.9420831667 32.562427990000025 None 5506 231591 BTS_20190608 172051494.14877868 21430.54876215749 0.06348304502199563 7.907379698415563e-06 17695328.948727135 2204.1111108874716 13730 7186 176184 BOND_20210825 131506105.59503639 2736.5878396345074 31.469931103754345 0.0006553073452905449 28896079.905861408 601.7113081685287 None None 141217 WRX_20210809 519653933.93505305 11812.373996049653 1.1463381507529413 2.605997323627106e-05 21524085.841596838 489.31207654459644 None None 1330 STEEM_20210506 351821098.54141307 6145.595158778497 0.9225903069409802 1.6097822364440117e-05 8346308.99876471 145.63062136034063 13659 3931 174026 STEEM_20210104 62252971.34702724 1865.0243617834496 0.16581620730707913 5.037295768398136e-06 4812585.153916477 146.20051456118543 11880 3831 219133 MTL_20200531 20560815.45329208 2129.962739506503 0.3201632569901306 3.316130721086e-05 2972059.127370944 307.8347175067203 36862 None 391026 SNGLS_20190530 11023520.554503802 1274.7992852949194 0.018665875585363045 2.1585885142567116e-06 958576.7010729798 110.85323308341222 1 2180 None MITH_20190726 12716630.189431211 1284.0078310985177 0.028667424662639794 2.899023581419553e-06 7122350.293852639 720.2551920863045 76 2076 572627 KMD_20210105 64356174.46495069 2057.008531934463 0.5208885105688685 1.6649095744656736e-05 4177301.462225154 133.51857564093066 97201 8408 276744 TRB_20210523 87343133.15535861 2323.8572552015635 52.02323795609333 0.0013852611210423756 100208447.94765356 2668.3242411600822 21461 None 255524 ENJ_20210727 1210332105.522612 32310.10525887791 1.2900518347483765 3.446994290988032e-05 301986576.104297 8069.024637212117 245689 34213 35760 POWR_20200523 38446708.02544826 4199.998270937574 0.08934243625578055 9.776907921362084e-06 6124799.848883274 670.2481672636253 81778 12769 209836 XRP_20190908 11151281780.004286 1065191.7648898887 0.25942470593802425 2.4780744117655877e-05 1169054717.1042008 111670.34265047459 938087 205163 31314 FTT_20200127 65891221.61469919 7673.900125413465 2.283983358572181 0.0002658856879284507 4526976.93091885 526.999625893091 5976 None 31022 CLV_20210828 210360788.00804207 4287.899274763623 1.6260777333627707 3.3148358496496434e-05 63670007.028560646 1297.943004294445 66356 None 93229 DEGO_20210421 67401998.49383181 1193.0503102652729 12.372258712152439 0.00021942881308782252 17112683.476618357 303.5028535520081 96699 None 65410 ETC_20191127 447619062.54145217 62450.07237243222 3.8708527708595866 0.0005408613085696243 512625383.4921383 71627.42995776444 229195 24975 327210 NEBL_20191118 7614831.648382782 895.2162794024493 0.4837684574600782 5.684978279503833e-05 163729.54959050912 19.24058749141994 40124 6075 558576 NAV_20200107 6353129.438686608 819.0063052050197 0.09529868653118455 1.2272049160098219e-05 106792.69964843294 13.75218597159067 49936 14070 586166 DCR_20190922 233072109.5868824 23336.03996328928 22.355650013701567 0.0022386026369772124 14998577.106506221 1501.8956836841046 40569 9623 165659 GO_20210722 19457673.188774493 604.6324115252843 0.01789925944127355 5.549206753347456e-07 407983.7152310621 12.64848970564399 22431 1103 149047 RDN_20181229 11509298.14419491 2991.4850029713284 0.229318417400627 5.9571759543343954e-05 674571.1587176167 175.2383926136885 24835 4425 550983 ONE_20210420 1104893516.0814726 19738.883245498168 0.11647383567774147 2.0827153848431153e-06 182239392.45338047 3258.695690569171 128863 15369 31277 NCASH_20190608 6364504.42643178 791.9934699404765 0.002192171996121611 2.7305458223626705e-07 1582824.455140885 197.15490897451693 60310 59228 943621 CDT_20210206 10201960.687490312 269.1738767724165 0.015078822084251653 3.9513109446841204e-07 603448.929383904 15.813001479225763 19361 296 640190 SYS_20191127 12251493.369040884 1708.8393893926689 0.02146920331758438 2.999819958979583e-06 1433401.9530878237 200.2844597680665 59649 4563 930008 QTUM_20200502 153334504.0405297 17304.186367994742 1.5880181306358432 0.00017972313571635714 399141084.69054914 45172.58710710744 179065 15099 116329 LEND_20190419 12926781.42963177 2450.785495324937 0.01165463252010547 2.2082255807075037e-06 4843415.53064184 917.691231731992 11609 5907 535516 GXS_20190904 52288984.7111263 4927.222617084278 0.8061351327522637 7.60386891325145e-05 3515457.950672342 331.5955395182472 None None 606832 ANKR_20191220 6615790.71278648 926.4424494884125 0.0016613502016386375 2.3249836548133708e-07 1108245.74129862 155.09392489881975 None None 5508 CVC_20191011 28407664.050798323 3318.351531758688 0.04240722190319189 4.952683045272899e-06 3575279.2928403732 417.5521135571726 87848 8145 114719 VIDT_20210809 21754032.02449541 494.49672740266345 0.4718302903100807 1.072826459092403e-05 1318065.4544928905 29.96957854202891 29589 1621 1199855 AR_20210805 498850102.2615617 12512.147110951599 11.357354798177695 0.00028556788860701634 16250491.857266536 408.600306230612 23506 None 92701 VITE_20201031 8429669.355872296 620.6749499757004 0.015509348592463135 1.1422642852368512e-06 444785.8614489337 32.75850053162902 None None 741204 AMB_20200501 1261509.5123642704 145.6786647513657 0.008681926484544382 1.0072186218924193e-06 307334.5701079447 35.654886356742544 18929 5472 863223 FRONT_20210401 107103837.79413407 1820.9642901986272 2.9226162338787036 4.973681518754817e-05 52370452.682763696 891.2355635943401 54709 None 147301 BQX_20210620 491537918.32024306 13788.223946584127 2.2061545329623393 6.202709886867716e-05 2183462.2487965254 61.38909435336378 84973 5938 20141 ZIL_20200107 50409513.74601467 6496.958587923754 0.004913298543105998 6.335388623814367e-07 49612327.88261714 6397.196810063656 67023 10527 237329 JST_20211221 400903118.7706035 8499.871479583193 0.054841202563986724 1.1635471337732042e-06 265418803.03239363 5631.300428861453 None None 179821 HARD_20210828 88197634.95377994 1798.193996231593 1.1661730407027526 2.378079778473853e-05 10430060.550729727 212.69155792695457 35864 None None NEO_20190524 739303707.1797695 93847.20878802678 11.361753659016953 0.0014445381254369152 523920039.0357581 66611.41350014375 321456 97560 225000 QSP_20190704 0.0 0.0 0.021016341109364532 1.75115524926648e-06 550504.0587575742 45.86992889101322 56844 8595 721105 EOS_20210429 5689079947.28957 103933.1099288249 5.9576433520389696 0.00010880420812914253 2865029576.0946827 52323.92338270265 213041 83039 58571 RVN_20190819 142299311.741147 13788.78304231697 0.03348100935443426 3.2450812180684258e-06 15660149.000396777 1517.8292522596892 27364 6899 259754 QKC_20200418 10096092.200405058 1426.1864319655344 0.0027080538076801925 3.8467062516145063e-07 3295459.5769740907 468.1097886880017 49834 9196 700112 LSK_20200309 162417205.63023642 20104.880471573128 1.1568941909325887 0.00014370762930520322 5171151.635124814 642.3525574646213 178477 31319 155203 DOCK_20200605 4098503.623145154 419.32925297816337 0.007319837377311436 7.488212593618894e-07 883175.7340696581 90.34910631673239 42239 14977 355846 FUN_20190512 34256267.02743446 4691.637889084447 0.00568386257837164 7.803527422392046e-07 1816746.7081052903 249.42602958394653 36533 17706 471824 STMX_20210930 220648672.21018013 5311.93098419582 0.023890595176897043 5.744945586122667e-07 6529767.91980486 157.02062301723115 71983 5225 99684 IOTX_20200626 20728910.83449993 2238.3225774338403 0.004775105389006847 5.160517584937473e-07 3647934.3827115544 394.2369434195123 24506 1869 670606 CTXC_20200913 1145256.4132707212 109.78460163103479 0.11390815635853607 1.0909275104648772e-05 6614025.980419678 633.4421631983992 None 20064 535694 DASH_20200414 691816130.0920715 101033.15606928522 73.2677689788329 0.010700059764581648 837883343.1659521 122364.8812100894 315531 34609 60751 OCEAN_20210314 591963041.5771576 9638.349184089506 1.424729454537424 2.3224606425793658e-05 175172055.81378505 2855.490942589657 None 2181 81239 SYS_20210804 86334305.15955797 2246.986081121127 0.1399568731620325 3.6432361927915617e-06 717688.9107669875 18.682256582313823 74453 5464 426282 LOOM_20200903 31171477.033367015 2732.3487748476177 0.03737013235755692 3.280204780493334e-06 10341649.629772412 907.74975665578 22460 None 451154 ACM_20210325 0.0 0.0 10.637531116640034 0.0002029962464561193 3450091.0347607 65.8381651070126 None None 48576 VIA_20190930 4044069.9699289515 501.70512269610185 0.1746096228584221 2.1667003469782534e-05 80468.19449510057 9.985157866964512 40546 2208 3148663 BTCST_20210804 126252555.13441858 3285.921321411243 17.321675607959275 0.0004509787193488449 2754553.9248711476 71.7162259316827 None None 1348993 FLM_20210821 0.0 0.0 0.6833281787988986 1.3899443468078164e-05 43802602.402437285 890.9800806364217 None None 69223 WBTC_20211207 12964948386.04649 256862.14248181338 50518.475874148535 1.001004791066155 531055490.0492319 10522.666819671262 None None 199650 KSM_20220112 2339718581.627963 54609.800529414184 260.60461584170287 0.006090909388341316 76051584.65629636 1777.4946521386337 218488 None 91017 DNT_20200308 5053760.955835064 568.5654934574249 0.00676901791412266 7.605269065321474e-07 205381.21408821092 23.075421189894833 59053 6101 762988 EVX_20210111 8327150.793092139 215.97060968635463 0.382343236914129 9.94555851269228e-06 2433400.567703642 63.29790982114493 16699 2809 1350138 GRS_20210318 54182632.377987824 919.2490377699439 0.7022936545172634 1.1914939120034437e-05 2416688.4586170563 41.000934112532654 38405 106771 5192531 CTXC_20210527 2604854.2680805433 66.09556522772208 0.19601447694015064 5.003439711760875e-06 7150816.716546261 182.53080532421805 19760 20553 377361 WINGS_20190104 6882537.412583042 1825.1797944784025 0.07700779349851371 2.0419577345884166e-05 98832.58815799523 26.206693978643212 37686 1220 1777314 VIB_20190228 3987914.4659365937 1044.7072796616048 0.023802000872657353 6.242864794364511e-06 1079575.468791988 283.1545012975468 32663 1123 2777721 LSK_20200127 108781524.13235249 12675.99735132024 0.7899499593604278 9.200007138513913e-05 3280522.203512141 382.0599942153372 178627 31074 161329 GVT_20190629 12884224.740798997 1040.0970928739298 2.9046384393726656 0.00023469006676293065 1415113.1581870806 114.33884406065917 21425 5756 171234 ANKR_20190818 11933975.509789461 1168.2306364765736 0.0044491397003129625 4.3526912086271543e-07 4685962.348760762 458.43800135055506 12994 None 9409 NKN_20200312 10986342.311735589 1384.7581662961845 0.01693784576780826 2.1337179807292746e-06 1839857.342539466 231.77308068387404 12230 998 370779 FUN_20201130 24621034.25132648 1357.4284297286981 0.00410065913144627 2.2580204594613562e-07 315783.7764859012 17.388575963387893 33830 16542 386328 VIBE_20200502 1691654.452695618 190.87434624 0.00900941738184686 1.02e-06 84460.39416528233 9.56217238 19083 None 988132 BCD_20210509 1879003801.7083032 32042.57065571531 10.00676648083133 0.0001704302748836811 400634729.71372104 6823.411662883758 None None 1417289 BAT_20200511 289078512.8013807 33078.30302019951 0.19753055637700662 2.2561964369081823e-05 154594035.37872702 17657.749676107454 116821 38129 19988 PPT_20190706 22136463.489421196 2014.090255922285 0.6113252976596633 5.5621546133759244e-05 1329708.1026129555 120.98373951979849 24045 None 660913 RCN_20210711 14994449.720231337 445.6510542165878 0.028294948736717885 8.394746761042068e-07 2973240.948285462 88.21222845343898 19952 572 2739535 XVG_20200329 39019136.037835956 6259.1152972638265 0.002386981204449368 3.8181640073653827e-07 837120.9205067934 133.9040693966811 295105 52141 327824 WRX_20200511 23614944.577279918 2694.549921923266 0.1267425561045623 1.4456926390001794e-05 10427613.448193401 1189.428749721249 None None 31508 XTZ_20210610 2928839230.0065403 78028.2771746756 3.5055483011955437 9.343514474344202e-05 178622930.02421632 4760.926932776385 120513 48421 80687 POE_20190205 10795741.887739925 3116.2903800050026 0.004746174419413754 1.3700269827534083e-06 591431.8147796195 170.72224345412488 None 10987 524889 ZRX_20191203 149265416.46683237 20424.1126608863 0.247856645596544 3.392488025434125e-05 19419785.896996256 2658.0441671632516 151066 16017 147414 LINK_20191012 1000144307.5426419 121014.95032820737 2.746301333770676 0.00033214830345417 176507382.15186495 21347.485364391654 35203 11116 100360 OMG_20210809 670069523.2040745 15231.529768071292 4.776074732367328 0.00010857589390128216 274331476.70083386 6236.457127899264 325988 5008 264742 ENG_20200301 20002371.682119805 2332.282090261525 0.2392634812502249 2.7974517434865923e-05 1449270.6474281962 169.44770168214458 61439 3613 363885 MDA_20210422 26189887.321291044 483.32349783685737 1.3316049380009731 2.4622067527298378e-05 2400889.059903201 44.393686799654496 None 375 1136941 NAS_20190522 51964292.528413445 6529.874366082804 1.1405326618937721 0.00014332705715107782 4714558.716837945 592.4633719198832 24087 5179 501303 MTL_20190922 15961784.117113493 1598.1527463864354 0.3133292174454769 3.137549621619401e-05 5442081.495887305 544.9476074223554 34401 None 247818 ARPA_20201124 25142441.411546215 1373.2510573964785 0.025626674601774813 1.3958477272224337e-06 16676027.867834333 908.3190058846897 20915 None 1251895 WRX_20211230 525062044.8415701 11299.32014332847 1.1538983159391938 2.479593390196342e-05 8313863.824552895 178.65527231985467 None None 612 SOL_20211002 47883980396.73367 994269.5522644353 161.3740294980268 0.003350282102908463 4217104529.3629045 87551.19937679633 673889 66208 6633 NEO_20210616 3548841879.0356464 87928.2979845899 50.31677128931868 0.0012466793986188843 434503294.98285514 10765.521964286678 403104 111949 92050 QSP_20210722 19824609.02989466 616.8821892359983 0.027928853505304607 8.678690196486599e-07 428610.25674824737 13.31875521724553 66487 8492 252569 QKC_20210703 108832602.14618574 3219.9125110163345 0.016661921119433706 4.920632733585869e-07 24918173.889627144 735.8886242683841 75343 9530 268503 VIBE_20190421 8879839.453037225 1672.1754493662568 0.04435481050592045 8.352518711802185e-06 284238.5634845022 53.5253762340656 20696 None 1228963 YOYO_20190702 5260760.771205879 496.442684343057 0.030155734286818503 2.8446328731356337e-06 390890.99195273913 36.87329762709189 7582 None 1328336 NANO_20190614 233119452.00222167 28352.44725073582 1.7556219002571465 0.00021349243932697754 11096438.640920388 1349.3826620328875 98356 46158 382519 LIT_20210806 87943454.80298835 2146.446756889136 3.961968745744575 9.674583064696934e-05 39255969.67787555 958.576818259221 None None 505137 ROSE_20210201 85976709.06973225 2600.9637244222363 0.057406288751620654 1.731610082297984e-06 10254401.997934248 309.31499446666885 None 667 215578 SYS_20190511 31774931.827905532 4986.550915738741 0.05751681358539523 9.028190418806573e-06 731245.0266327929 114.78068640649599 62204 4600 1307286 FORTH_20211230 80167544.00967267 1724.5522174162575 9.268354329221408 0.00019916546469054763 6254472.101261302 134.40086537416792 36083 None 98724 ADX_20200530 8252896.857169413 875.6633954360178 0.08921957729448386 9.5159409500762e-06 435443.2568623192 46.44330812881894 None 3750 26669 CTK_20210110 23471737.425078996 580.0408108568796 0.9245449395258216 2.2951059701611294e-05 5370344.764845761 133.31434530313422 None None 220154 SKY_20190213 12614882.267559404 3471.7461950783027 0.9897475632348156 0.00027237996312227497 175967.62992608792 48.42654665734261 14393 3501 287738 FIO_20210724 56946090.491355166 1703.3586991899974 0.16664120737919488 4.983682307936357e-06 6672770.051346591 199.56028027420223 77702 501 141932 MITH_20210220 16307972.747227432 291.958964291318 0.02624617773690964 4.6978148354354887e-07 10982224.106282119 196.57130973404796 24843 2202 386165 NEO_20200523 720678743.0157652 78728.44334459472 10.218045413522834 0.0011162405124712138 411434485.8306346 44945.958128559614 320099 99467 247839 YOYO_20190528 7429547.855503763 843.5279088002666 0.025434491308593002 2.8901332355504677e-06 2127457.6237175763 241.7440125273542 7473 None 1390874 XTZ_20200730 1992679030.778097 179457.26431140298 2.77640188774958 0.00025015766652998034 132231159.2995406 11914.211122993856 68984 27828 67459 PIVX_20201231 20899806.32108334 723.5484450256367 0.3201545171766025 1.11034610667095e-05 199390.90695431727 6.915189552680647 64832 8704 361094 WAVES_20200711 115975158.3724944 12490.17090685379 1.1598800985672066 0.00012492175539499293 25448144.81822382 2740.8237508045418 242 56864 124642 ATM_20210301 0.0 0.0 6.502911534549856 0.00014405414645184714 8984895.321253847 199.03568110772594 None None 220888 AUTO_20210819 37780921.24127884 838.6357050280335 1080.0774930128405 0.02398207394541999 4627828.297741785 102.75644216375794 74001 None 13897 OCEAN_20210221 481382532.93756557 8584.500641885374 1.154087509968775 2.0522470476946028e-05 172001500.06462467 3058.6031618713164 None 1823 79767 ONG_20211204 0.0 0.0 1.0757111972638513 2.006034715815293e-05 7665491.801646838 142.94954544504319 179594 20990 85093 STX_20201226 278562331.84940726 11280.060744581135 0.30304106686928023 1.2289695820989901e-05 4071008.351802347 165.09793489455294 None None 97569 GRT_20210318 2116247970.851672 35976.59850742479 1.7308979843746846 2.9372468666825034e-05 248988260.7828915 4225.205618281904 None 12144 22765 FIL_20211007 7974694048.139363 143673.67555706407 72.1748322076592 0.0013010547472891531 1330405930.0046895 23982.4728109386 109758 None 55587 POLY_20190623 45129050.71402069 4203.6700227896345 0.09571798766767761 8.92349616215265e-06 7618159.259898758 710.2177613093527 35131 5108 316227 OXT_20210718 155511616.77947345 4920.3750102861095 0.26235624179284606 8.316538811913321e-06 5940827.401672422 188.32074023951847 None 4334 154434 PIVX_20210731 35515698.6942509 854.759792550419 0.5447608648651155 1.3057085266023553e-05 656269.402324683 15.729774468577885 67665 9848 346307 ORN_20210401 447359262.10816693 7605.938853044493 21.687098415715507 0.00036904670356408475 98571406.12191555 1677.377572492996 48396 None 65177 IOTX_20190520 26877342.303282756 3284.124159349717 0.010646318301809213 1.3013521601524336e-06 580907.442324932 71.00719079474716 19764 1718 780068 MANA_20210611 929658176.4536034 25225.272730668672 0.6972901471255107 1.8992774405471722e-05 56813998.082971305 1547.4984884141052 139656 33098 11364 DIA_20210202 48974433.6508528 1466.9528913610927 1.9309434457093042 5.781533618935684e-05 30452533.305842713 911.794415733467 None 203 235170 XEM_20200313 258413599.47400188 53777.99202578249 0.031195117553625192 6.547182826280715e-06 39415380.60206538 8272.43886885662 212333 18031 213172 AVA_20201124 32086570.97368491 1752.0545108160004 0.833861754856804 4.543597720585408e-05 2478856.452830458 135.06947000672838 38805 9004 100722 MFT_20190325 23040864.891985647 5770.17268175675 0.003470542003060177 8.691351974340485e-07 2863139.12372104 717.0220056066805 16727 1891 633572 TRX_20200718 1135931155.2853565 124103.59419171046 0.01717429324240981 1.8760241714124701e-06 349825832.7193402 38213.026219056876 513906 73663 53101 MTL_20190805 16822869.67927115 1536.342981739871 0.3535043330159344 3.2283665712091215e-05 636310.2168558451 58.11081905249633 33308 None 712205 HOT_20200927 88782467.4587301 8268.352890231095 0.0004986240626297383 4.644864926010418e-08 3615013.00945468 336.7516410285244 None 7300 284451 WAN_20200330 11813580.768215956 1996.5779335869283 0.11109692861994032 1.879790199406663e-05 343271.91534209 58.08254019326652 105570 16340 732459 GRS_20190923 16043986.49672282 1597.4184324400899 0.2184694792315863 2.1751898951137127e-05 484765.16280247364 48.26561070863949 38362 106967 None BLZ_20190729 7916647.202554601 830.288129491259 0.03789318258689828 3.97495869768184e-06 1412714.0433213534 148.19235520689858 36542 None 1258413 ARK_20191113 31163986.60318094 3545.606447157813 0.2187802789908134 2.485568093904206e-05 683984.8074609394 77.70768105709882 63065 21684 95337 KMD_20210723 82449037.17368664 2549.294114339019 0.6528949611889454 2.0167556523763307e-05 5114482.584111195 157.98347779715107 114160 9431 217175 ALICE_20210421 161380123.47653276 2856.511834763251 9.194285811588287 0.00016306571578925832 55887118.76083395 991.1887895249563 None None 73832 BNB_20210212 18248020592.96308 382840.49845131586 123.80544465729103 0.002588903997331963 3324064891.1252646 69509.74496999422 1702006 145120 423 EVX_20200626 5172451.295505563 558.5249802965021 0.23698133217759637 2.561087990211382e-05 2691100.7401694837 290.8307469945345 16638 2837 1214977 OG_20210819 8067685.374113603 178.86379811865393 5.840888627069839 0.00012966922206361742 2010246.0614044084 44.62797693670932 None None 316019 NBS_20210106 0.0 0.0 0.0136561577527324 4.003971436536875e-07 4397395.644995943 128.93118896632905 None None 711556 RDN_20200523 7721364.947293949 843.4979506294014 0.11282821203268877 1.234823045224362e-05 858112.05897787 93.9141484847608 24934 4311 1987298 NKN_20200414 9005423.027076436 1313.7108866590365 0.013842903403961687 2.021624184851496e-06 1865388.237886866 272.4221838296114 12274 996 307809 NEO_20210110 1513552880.944158 37408.93391576519 21.340175903430424 0.0005297521302249683 783354799.5083088 19446.131823813645 None 101330 181319 AGIX_20211221 175291381.6691796 3715.478835859306 0.17975531991171392 3.8140617271513244e-06 1064347.3743164944 22.58340163044046 70938 None 124836 FTM_20210823 1418153773.6647058 28745.9426675478 0.5574901425588495 1.1312441533281223e-05 146311154.9068843 2968.906997985641 108372 9756 52942 BEL_20210207 46983008.50866287 1197.7720295673168 2.1052050224459666 5.3535559266965836e-05 22731739.811280504 578.0702548838277 None None 421105 RUNE_20210301 1034858216.0915039 22811.624935300148 4.367543322450863 9.67509279596367e-05 54384050.24072207 1204.7292810917643 None 2818 108351 SNM_20210506 338197576.5492952 5907.620088 0.7712010948150337 1.347e-05 5847335.496077041 102.13109092 32291 9697 None REN_20190819 76850881.32531226 7448.494639476356 0.09318019331927682 9.030837401726574e-06 4232681.123414367 410.2229630275378 9420 879 378808 MANA_20200626 55328422.813824214 5979.414407191804 0.041682675789994766 4.504700829583846e-06 13663908.363083975 1476.676297094068 49067 7005 63956 CHZ_20210204 127876552.4485871 3412.2174269835073 0.023927247460563943 6.379015536331122e-07 47494242.98657352 1266.1987735821965 69504 None 105011 CHR_20210610 83225965.11754523 2217.235066275325 0.1844027645807589 4.923492163318695e-06 35559415.940195926 949.4245170986579 61583 None 86697 STX_20200430 69003173.81847358 7899.142892220245 0.10953701505773956 1.2493744485135016e-05 487355.938759343 55.58760724822322 35938 None 63028 TRB_20210115 34434933.31545921 881.6834733195197 21.15941216045492 0.0005393818769178348 33492744.194809288 853.7750997018601 12272 None 425795 BEAM_20200903 30020894.067659605 2631.493946783296 0.4334691949914924 3.797876431877911e-05 10108307.672894634 885.6477904458853 15865 1550 271885 ARK_20210221 165256551.3991732 2947.941990932842 1.0628611109910975 1.8959931531258268e-05 11321645.440585775 201.96206273322446 64512 21961 92701 AUTO_20220105 22171186.528022923 479.2732619831673 632.4828467820583 0.0137713495346277 4647943.479678144 101.20188176090973 None None 20347 COCOS_20191020 13893955.711459951 1748.8059330635308 0.0008843890807356523 1.1124969325116624e-07 3527814.603075488 443.7733357276075 12485 141 65492 XTZ_20190930 712062198.7222036 88338.04939914416 0.8810309466322153 0.0001093424676386285 14040470.06895718 1742.5263550781458 44720 16683 185343 AUDIO_20201111 9380209.38541947 614.1703584631227 0.1410531859805141 9.234464029059274e-06 2312870.5206440724 151.41890967078058 19943 1968 79642 BEAM_20200719 24590458.321425192 2681.7770843399608 0.3703094038709728 4.0391619448147324e-05 7040861.368706607 767.9842586202586 15345 1535 344672 POA_20210703 7389418.853792921 219.71192414544188 0.025643610473557416 7.599167096362856e-07 61913.928419396216 1.834742764231247 19871 None 217721 MITH_20211028 27722075.87173992 473.7111333186419 0.04482737320917636 7.65434569183502e-07 6820675.694295856 116.46412867517775 33468 2764 538077 ARK_20190813 35804740.399462834 3146.3747884549507 0.2508074889849346 2.2039940837267736e-05 414210.50497881684 36.399132501407415 63386 21831 143377 BAND_20201015 145503716.01979455 12747.117136140925 6.454022662755561 0.0005647539240127475 91149204.47660616 7975.935875754337 37110 2631 113456 POND_20210930 64206370.826674454 1545.418266403635 0.08000265856289698 1.924701316539983e-06 21567066.610472128 518.8597759716511 None 692 336782 KMD_20190430 104991106.0972918 20172.318357321004 0.929234221231707 0.00017846353589844087 2570248.81569033 493.62763586006525 96938 8359 335722 APPC_20190618 10648806.997512696 1142.9023590622169 0.09968457352810031 1.0703301224916247e-05 2695345.1560704694 289.4037671978282 25556 3370 1293635 LRC_20201130 232413034.85444444 12812.365887517519 0.19598175575140228 1.0786161461210495e-05 29747325.97154917 1637.1904606028302 42968 7224 195654 AERGO_20210220 32489544.876216605 581.6055525993904 0.1253505708001158 2.240505191224234e-06 15376580.208562247 274.8396561791141 12443 None 567735 AAVE_20210527 5220889237.717068 133255.72605936238 413.8128698478947 0.01055551473489686 856626378.57086 21850.77608782363 218896 10245 14216 XVG_20201115 72841442.28492402 4527.072249488499 0.004425976877341119 2.7529068121303663e-07 2095491.6984964248 130.33717824163034 287885 51284 419169 ELF_20200301 38778681.15544718 4525.835688510842 0.08431815090199744 9.843036863483917e-06 26567596.391439304 3101.4179966902525 83293 33446 755936 CELR_20200530 10731911.389376143 1139.3927073302089 0.002832975987751963 3.0077327918319877e-07 1636816.9454677121 173.7786702885582 19859 None 1477184 PROM_20211104 308102581.21820545 4886.3303349691705 18.726805281750128 0.00029716329580832675 7187345.07908721 114.05122868953704 None None 589619 GRS_20190908 16472872.195482938 1573.422146286033 0.2246175918089899 2.1455618092589017e-05 467130.7229086918 44.62062970814372 38442 107001 None WAN_20181231 37161791.15206624 9783.891583976816 0.35026086202761536 9.215747510364282e-05 1832700.8554230605 482.2036994894376 109203 17377 492321 NXS_20200719 11678302.088489596 1273.585329602209 0.195608693467379 2.133026775927968e-05 110931.13574397427 12.096552491183495 23312 3527 454042 FTT_20210603 3055755573.2073817 81199.05179867656 34.97762945955912 0.0009300615070626994 79538221.45153661 2114.9357247846865 None None 3336 QKC_20190708 77537788.4574643 6787.655721658422 0.019374603928029917 1.6954390394636255e-06 4243396.440761459 371.3324934183329 50996 9226 176500 FET_20190730 28082140.809060793 2958.1978907715175 0.09299870219227296 9.777042643312565e-06 5023496.287146653 528.1249765874261 16054 294 438146 NU_20210704 128447341.32124196 3705.187634724547 0.2335436301378875 6.736562000596607e-06 14136091.09454467 407.75530485784327 None 7108 128147 PPT_20200523 11242976.726670912 1228.2061387662495 0.3103488538705514 3.3903153653129334e-05 5855362.360604823 639.6519507983666 23700 None 2264384 AGLD_20220105 128170356.30415799 2770.4984903944 1.6526053038890152 3.592423656892303e-05 10187284.488502566 221.45058901763267 None None 124550 COTI_20200704 13646794.811287321 1504.9764915325159 0.026335146519584293 2.905154328276382e-06 1412580.0999030413 155.8283789390963 24892 1018 317411 CND_20210112 16359051.262977185 466.2207081379087 0.008924863367519404 2.5107412477741157e-07 144765.8433278817 4.072550571865409 33947 5903 513668 JUV_20210304 0.0 0.0 9.858950750571886 0.00019457817909975208 3374124.882370918 66.59238820407083 None None 69992 MANA_20210603 1141678528.7067173 30340.40600257187 0.8593558706118386 2.2822592592241773e-05 79866501.24061497 2121.0777536023234 137837 32806 11364 XMR_20210620 4890144509.838641 137173.18275035272 272.02076856814756 0.007642571078775713 253373825.4660372 7118.675095355379 425753 225863 31404 CKB_20220115 618520552.4330513 14352.517676149084 0.021059887875143513 4.882829212541147e-07 10619983.773275549 246.2290744960077 81450 15911 73780 REP_20190805 119786618.28115697 10939.473098895314 10.880787091692287 0.000993488626732709 10551214.044818278 963.3964035334358 126087 10046 203996 LEND_20200306 34117812.67579151 3764.246004356053 0.030211613695461693 3.3360375033633963e-06 856172.5674792548 94.54059035882537 43906 5751 155774 EOS_20210112 2546713035.140968 71894.31340755915 2.671013173675965 7.513683959902715e-05 5232792682.953114 147200.88554745153 192493 74056 95839 OAX_20211104 17002178.19047844 270.07047418491965 0.29522145163632485 4.684264202632717e-06 590118.9091618918 9.363387606700577 None None 2035813 GTO_20200806 8350769.638413429 712.851801245531 0.012601520345976246 1.075711205795885e-06 5589823.062553469 477.16744819009426 16605 None 1558707 DASH_20190712 1273922186.252589 112575.57084717495 143.21391588984204 0.012619892506599631 472551492.32396686 41640.848935020906 320780 28524 107234 POLY_20201115 42351057.08365175 2631.1829557393535 0.058399897378207555 3.6304660387641034e-06 1721048.7609185611 106.99006947062637 35371 4999 334302 REQ_20190621 16598915.966082178 1735.2782523925098 0.022683632992992087 2.371914341888419e-06 829211.6333174858 86.70652386829293 41670 29948 444138 NULS_20210828 61464954.045299344 1253.1618495306511 0.6531736892587274 1.3315252504719635e-05 31873327.565339383 649.7527559320072 64671 5399 365718 BNB_20190821 4357721881.912985 404970.5718437877 28.029166430562192 0.002605282737313774 201300051.7135722 18710.636688000166 1024272 55690 879 BAKE_20211011 350058803.10667604 6397.858046631394 1.8161343573859763 3.319329621838214e-05 25305722.46337746 462.5100220867288 None None 20296 IRIS_20210429 145012116.7864127 2649.2087322756506 0.14908280924749528 2.722693529529632e-06 15280237.986989945 279.06239027052266 22650 None 536237 FET_20190627 39693142.71884476 3053.801435681135 0.14970536074226148 1.1479844556304172e-05 29978604.491776593 2298.847001030369 9961 282 385628 YFII_20210826 166262040.2396912 3391.9993811117415 4178.406000857986 0.08526635623725606 43233164.31514831 882.2346102801683 18036 None 505373 RVN_20190401 187656575.18798932 45729.12662307495 0.0581213667646071 1.4160045682848366e-05 52027009.57412608 12675.284036166708 22711 6221 225475 RLC_20210111 82830778.21766675 2148.6562459983866 1.1748660129679778 3.06336312188639e-05 11621729.97137127 303.0267163562155 33781 3902 542862 LINK_20200129 961947524.2330085 103249.067362215 2.6395585346834274 0.0002829331400111788 175705703.32136762 18833.818498573066 40626 12354 122802 OST_20210202 16249386.658979408 486.725071946169 0.023506363645760097 7.039132708668883e-07 14861726.920960272 445.04403000463986 None 733 716707 WPR_20200318 2352759.136564972 433.1082922730203 0.0038660560433374466 7.140478867254697e-07 140674.18409931188 25.98206098073777 33561 None 964364 STORM_20190706 17936970.294226587 1628.1480953124112 0.0028774197648301857 2.611848842181827e-07 1207762.500489986 109.62922848768171 26773 2575 3762880 BCD_20200718 162242193.09975243 17721.037863816364 0.8619602105477443 9.416602414684263e-05 14711335.766249752 1607.160031339116 None None 1655072 XZC_20190401 55772959.381939396 13591.680656113052 7.828983157817847 0.0019078652769580447 3652818.3072288465 890.1647980222575 59881 3962 324676 XLM_20191022 1277599218.0430768 155627.6359455079 0.0637424777790442 7.762430721824861e-06 188142140.8404704 22911.571451496002 277209 104586 61021 POA_20200625 3656024.5050335014 392.95895955135614 0.01320144725275667 1.420284000501871e-06 176340.5691853314 18.971684259922398 17197 None 532939 SAND_20211221 4623908570.804212 98008.43755225054 5.01385559677956 0.00010634810719735061 608423324.5933086 12905.172017075633 None None 5212 MFT_20190131 15394792.306514475 4451.454792651768 0.002971807204549875 8.593078204720341e-07 3804515.603660255 1100.0881908920185 15643 1820 638405 IDEX_20210602 30596585.569298543 834.4823574715496 0.052913681027334666 1.4426994190705063e-06 480192.60067921097 13.092523003341489 None 1981 6783998 BNT_20200523 22320865.13654131 2438.637006980516 0.3200092875631116 3.495769111730169e-05 14987853.042726051 1637.2672842371712 730 5018 143192 STEEM_20210128 63943348.1174391 2113.7686788176643 0.17050372995999652 5.607362231421305e-06 3464005.4015906095 113.92086884478014 12074 3828 212736 TCT_20210210 10128988.353722015 217.71914359552005 0.017518352457850505 3.7599136264065346e-07 4280430.07673292 91.86964020224539 None None 1849521 LTO_20211011 82067578.23629351 1499.8305511382118 0.2796292734435355 5.10890727249042e-06 8400053.619836902 153.4713962497918 None 5056 415943 ACM_20210527 15365177.950054592 392.17417771941405 7.763411094465483 0.00019803187661575694 9137666.42404646 233.086874805939 None None 36746 SUSHI_20210513 2711584976.1216617 52613.630187950555 15.049898481629839 0.0003000241462342016 1924680712.461712 38369.075262175764 87539 None None NKN_20211207 253514123.38716087 5022.599528250187 0.3906015177395666 7.739623650346477e-06 15737249.83857781 311.82774646379755 36840 4563 115228 VIA_20201018 4198594.060275501 369.76159143454635 0.1811970082522384 1.5957649911534904e-05 87287.33534367211 7.687217093485647 38211 2144 3160666 BCD_20210725 332644633.92175126 9736.238732985541 1.7679457934496505 5.17456501139613e-05 5816088.178715643 170.2299160092077 34360 None 1350278 AVA_20210513 262393902.69296506 5090.398906083718 4.999653101640677 9.730338697028642e-05 19958413.11898815 388.4311882343307 None 10063 44048 CHR_20210511 133308551.70544103 2387.6098842034116 0.29773357231424596 5.328526702269604e-06 95142631.57197255 1702.7641488826396 57795 None 102679 DGB_20211216 527415698.39259577 10792.279535420777 0.03532958949385319 7.229341235980955e-07 16586298.461146047 339.39825833049304 236494 44229 105962 GXS_20200605 34065874.60209691 3490.241034989945 0.5216862419675897 5.3363415061225126e-05 20344608.86959557 2081.0550864286697 None None 447663 BCPT_20190702 6613418.827838906 622.8599940784298 0.056821597823627265 5.3621469452131425e-06 828067.6638147477 78.14318259293516 10975 2817 1043904 IOTX_20200301 17534312.567543842 2044.6395587591837 0.004048453109386044 4.733422814922392e-07 2997888.098901672 350.51096160719703 22297 1806 497303 RUNE_20210212 1068052999.1567724 22402.529910416786 4.494898491166685 9.414154485325967e-05 57486848.42522268 1204.0095521914536 35096 2564 162982 EGLD_20210125 708020928.7898402 21988.700343744797 41.53033957746103 0.0012872126907455084 57914144.43070462 1795.0207593614098 None 3448 51208 PAXG_20211021 323087387.5956676 4874.354671539687 1784.6948461007637 0.027025010673225144 8805891.028740233 133.34453201279993 None None 43986 INJ_20210127 112813069.24730812 3463.927062250463 8.325414478613125 0.00025560238761408727 27455862.62589836 842.9350946084129 41753 2061 116830 CTK_20201224 20838725.36908664 891.7584577511639 0.8398623566103579 3.5994897973854015e-05 14602330.547773382 625.8280230214481 8755 None 235753 WAVES_20210301 892750328.3102423 19679.10708308915 8.914726332019978 0.00019671701122775728 88267937.58369993 1947.7664509269612 163003 57633 99978 ORN_20210324 541850199.3370558 9933.665599118762 26.191406561903374 0.0004804709402755363 40815779.25858707 748.7492430810066 46333 None 83235 EOS_20200324 2130127428.7050774 330424.8311654305 2.2891959197380833 0.00035339689170773344 2425483683.5113764 374436.45048031333 1481 70440 93580 ALGO_20200520 148783189.10893396 15254.56359524428 0.199887800442432 2.0494258672799764e-05 30542273.055473786 3131.462966067477 17779 872 290997 ENG_20200323 7610069.7769010905 1304.375183075174 0.09183801416023141 1.5744897991581502e-05 625683.4570961538 107.26845846003624 61121 3599 414852 BRD_20210304 15965164.192101626 314.01076761258787 0.20142899749236154 3.961805425922415e-06 380867.8402065926 7.491097581156607 605 None None OAX_20190531 9327323.838745825 1122.1968930750309 0.20839454758505313 2.5079799229937547e-05 2043464.1233904385 245.9261556605541 15125 None None SNGLS_20210724 6844034.249568995 204.66949285871445 0.00768992612311123 2.2996572231316233e-07 47521.18251461478 1.421111579902617 9461 2136 None POND_20210814 73996074.37572429 1551.2565890340745 0.09429296387508328 1.9763535834804766e-06 16806526.54078367 352.25999469844544 None 599 162799 CTSI_20210125 12410359.17003629 384.992857911228 0.059495421550391794 1.844031675158291e-06 3740543.3959525754 115.93632458925381 None 181 602670 POWR_20201018 34535064.73673354 3039.289824745338 0.08038596585461583 7.073943736133285e-06 397451.26305683196 34.975606038049456 81395 12621 227692 BRD_20190207 11062707.56867196 3248.258807144447 0.18466834910781596 5.422276487620279e-05 58050.98668902043 17.0450703505916 137 None None ENG_20200719 26215238.343665797 2859.8030550823114 0.31692335824141943 3.457296005644554e-05 2074290.1538356815 226.28294434331406 366 3579 537698 WRX_20200621 24084262.229266368 2574.264103563255 0.12472608555769021 1.3330655483234132e-05 6062259.313946234 647.9309440595351 28445 None 21864 ELF_20200109 24106892.277140573 2995.7320372397808 0.0521777994008808 6.502485755697683e-06 16705681.085994167 2081.8902780148974 None 33487 1063129 NAS_20190618 70013359.39067215 7510.874133691133 1.538371354016972 0.00016510847177814467 12122574.859828558 1301.0771449273673 24297 5152 467000 DCR_20210508 2607912859.613653 45511.565497640935 202.26810709525836 0.003529379387674736 64962032.72055256 1133.5235324933972 44635 11036 215733 NXS_20191127 11550467.88415789 1610.5206490312996 0.19262706698665497 2.6903249043667988e-05 139780.50934554465 19.52243738744398 22146 3540 295077 NKN_20201106 11542757.652186157 742.8399513072869 0.017810166672210446 1.1430969158171598e-06 930237.4413962126 59.70475009067854 13706 1022 271625 ARPA_20210723 30210251.58752188 934.0745916786212 0.03085989958382444 9.532159347977051e-07 2643175.5110757686 81.64372047876408 43158 None 718548 NPXS_20190901 93787073.59002376 9770.695265520713 0.00039690560300607207 4.1356623573316355e-08 2123741.385104131 221.288821235112 64965 5467 165759 STORJ_20190531 38393570.083584964 4619.239752658875 0.26726754962565297 3.217515481024792e-05 5107264.499871134 614.8409194097862 83772 7721 191933 WING_20210418 83631015.94709045 1387.3109763161217 55.312397063486756 0.0009177366124159404 12059329.630129125 200.0869409087263 9505 None 321336 GXS_20201111 24966647.693329953 1632.2786412763978 0.35590318571451496 2.329789087248497e-05 2962012.0323395096 193.89720537030558 None None 441833 CND_20210731 22354441.6207944 538.0065318963788 0.01158702385960261 2.7886603599646795e-07 115443.04263954173 2.778378993116558 36129 6257 166486 LEND_20200117 26904882.74623288 3090.147936547784 0.023893810396907283 2.7421484898170696e-06 1530867.2847999698 175.68840395870677 42121 5767 395684 NKN_20211120 345813428.6167357 5948.859487627751 0.5322702137073368 9.151108348409815e-06 19287010.84727182 331.59384356868236 35754 4460 134522 DGB_20201015 326874950.78287125 28602.922667346687 0.023952371364880008 2.0959324787916196e-06 4640086.299248299 406.0269202927515 176131 23191 156010 OG_20210506 11577202.236671178 202.23004905603815 9.071949802830616 0.00015824686802453283 4049995.516878538 70.64623592377629 655188 None 233476 BNB_20200312 2493501408.1594257 314381.2198189636 16.567936765899848 0.00208711928692692 267252146.98900422 33666.66099314293 None 60049 1861 TROY_20200105 7500089.053868074 1021.1321110492106 0.006391719263418503 8.691823623725179e-07 984232.3950460235 133.84152260030996 6671 None 397449 COS_20210620 43626982.157843925 1222.4314226019246 0.014368093001498671 4.035892302760813e-07 1530406.8746765978 42.98801048236022 26052 None 231566 WPR_20190426 6624463.711729803 1275.224950680091 0.011077441149132441 2.131217910563793e-06 341778.64956537663 65.7556893867212 35260 None 921512 ANKR_20210814 777142517.984032 16310.311703658517 0.10159641719157748 2.12943187840986e-06 72657157.95974721 1522.873272808412 118952 None 5363 STRAX_20210707 176271348.04131764 5160.4974003300795 1.7308913546703868 5.065650804576281e-05 3320418.186424883 97.17582222713203 157882 10760 140717 TROY_20200421 4294668.103728732 627.1647417301355 0.0022444058389219828 3.2784155838761116e-07 777526.2964944858 113.5736809758677 8748 None 456905 RDN_20191017 8111693.295873894 1012.9174581917651 0.16030548207431247 2.0017485183499403e-05 15123035.003447311 1888.426554063296 25453 4378 2691065 IOST_20201015 97210944.57115135 8516.341240348747 0.005803869167568656 5.078627792486786e-07 41891886.43907294 3665.7149326869176 None 52181 221783 OMG_20190421 274338197.808471 51664.7061472811 1.9573387168555756 0.00036852436035913084 101870562.22363311 19180.01389314954 290122 37781 None POWR_20210814 133362435.95466499 2798.949806043779 0.31065507113083246 6.5073403830328725e-06 10019816.740029039 209.88666904948016 91983 14055 171172 BCPT_20210114 2504385.5491517093 67.37232252859062 0.02167604253862553 5.800025456085455e-07 197580.74998897137 5.28682012653568 10406 3214 2139942 VIBE_20200316 1176702.3963433988 217.803701329298 0.006291674513011866 1.1708480049182938e-06 83297.79590140912 15.5012879232 19414 None 1312296 AUDIO_20210204 34601883.252875924 922.6604706690412 0.22542509798802454 6.009738419616899e-06 3093004.500982403 82.45820073942883 25376 2502 56398 EOS_20190929 2914888931.279313 355835.30801646033 2.8343861806893242 0.0003460079280621275 1366029929.416275 166758.21691779103 1319 68478 87912 SAND_20210301 147581425.63365048 3253.172344407466 0.22012965131789253 4.876028818121597e-06 69151800.40542074 1531.7617121688374 None None 39001 CND_20190613 32675955.678080212 4021.9098520929406 0.018700523937204915 2.2996643812427915e-06 416878.3534494029 51.2648899013695 36277 6161 588984 AXS_20210729 2541394213.6876493 63526.42932421182 45.9935161546457 0.0011495870126789572 2448995257.6235423 61211.52235480937 298891 None 3082 TVK_20210806 164081417.8973627 4004.755420406767 0.3794182524396045 9.273125456640366e-06 127221865.97971523 3109.350476610445 51657 None 105979 YOYO_20211104 3715378.2892816183 59.05294261397876 0.02116986734181487 3.3624433394695694e-07 291354.6991756276 4.627632529993283 None None 1106921 BAL_20200907 161364382.86425602 15684.028406617628 21.506180544323804 0.0020907572866131867 58673819.048164934 5704.067928544934 None None 61486 VET_20210722 4301453941.216683 133668.161129771 0.06618826919869496 2.049403124389147e-06 648791102.3416188 20088.67323941157 392753 193882 33228 STMX_20210711 175213720.54558322 5195.903120930826 0.018888950128143813 5.603504733932181e-07 15233919.427748274 451.9220975788419 68512 4616 72030 ARDR_20200511 36975409.84377053 4223.335846000061 0.03702013198734157 4.2257522659656915e-06 2829186.1825592387 322.94428139468806 63806 6323 1091429 BOND_20210826 125986933.20636895 2570.272365124735 30.21223726030829 0.0006164410211871571 25036071.852032643 510.8281642967793 22757 None 141217 BQX_20190806 14604289.771258648 1236.7786001961697 0.10347387822769312 8.76065500447179e-06 740899.3947008463 62.72852724929508 None 5775 410121 ICX_20190531 186892365.75230947 22485.552749381626 0.3947754486792831 4.752526520459352e-05 41686336.26483732 5018.433119440906 113516 24688 289491 JUV_20210626 15545401.0281936 488.48727854364336 7.0523262315751145 0.00022183862664766597 2515092.8510957533 79.11499350106345 2531455 None 39510 FTM_20191118 27310478.855911955 3210.713455226694 0.013071516640457399 1.5360920505509722e-06 2564486.6707730154 301.36423316984843 19758 2206 656705 PIVX_20190512 39669701.53760526 5446.28144198555 0.6602534234466984 9.073577778417577e-05 2869709.44168687 394.3717805305279 63056 8604 304717 XEM_20190207 314230496.01242673 92265.11410608183 0.03491449956081569 1.0251679346259276e-05 11935610.225260809 3504.562584899001 214887 18485 174519 LINK_20210702 7979565496.80555 237521.25049371156 18.33600371340588 0.0005451027574831569 840146133.2315911 24976.324234627114 389802 61732 24345 UMA_20210206 1764202718.1867507 46554.04796266721 31.562707947034145 0.0008303473196571747 372782422.6384753 9807.107995062017 22004 None 180078 ETC_20190714 741365083.8097876 65137.179920704475 6.640767153352404 0.0005826060536567469 591034243.9994638 51852.46230154238 228923 24786 547653 CELO_20211125 1823233459.746938 31870.565377703715 5.24822588910844 9.176401956741455e-05 51101029.47049576 893.4897177305377 76629 None 38770 ZEN_20190706 61164646.98797969 5565.076804806155 8.968193189761214 0.0008159727286772195 3096127.271995382 281.70171683481476 26158 1701 233714 ETC_20200407 646606733.0312116 88903.13803776982 5.571573081835439 0.0007657629725039014 1783046235.6583664 245063.78458556323 230790 25363 329004 ZEN_20201018 61057610.57413269 5375.118166618385 6.006450744199607 0.0005284463265788262 6556722.824891384 576.8591533952736 74702 6123 125906 RLC_20201031 54282136.16493708 3996.27231282109 0.7725939836871494 5.692704494243648e-05 4374258.43198326 322.3084978722501 33464 3841 531534 HBAR_20201014 190467994.1371258 16672.03085500445 0.034114498909576095 2.9867353469129595e-06 3344661.2239786866 292.8261654255802 42424 6717 166509 INJ_20210805 219928973.74820513 5516.5358818803525 6.716418534531775 0.00016887677579774255 12560805.5540021 315.82730177938953 78310 3821 150337 WRX_20201106 16794769.83907233 1080.8358267065157 0.0706258120535691 4.5432862259509e-06 1107987.9916479478 71.27573382313743 39708 None 11558 POE_20191213 4721035.571793402 655.4290617995033 0.0018758398810434468 2.6038458859128376e-07 68715.33786176995 9.538348747066447 None 10574 723057 HC_20190618 124339415.07458122 13338.849965345044 2.8147745076132322 0.00030210073539043114 64524933.59518432 6925.254523017864 12762 814 640655 TNB_20200414 3554440.0595789724 518.5216272690546 0.0010806567431737475 1.578196238007171e-07 616975.7275459835 90.10342815195446 15003 1441 2723419 QKC_20210115 37511521.49986781 960.4574593630877 0.005887531062261368 1.5008108593439844e-07 3043995.9914479754 77.59555221794379 63095 9207 114091 YOYO_20200704 1583860.3391907883 174.6690420215967 0.009073184779405089 1.000801897447548e-06 459743.9732353938 50.71126092333651 7497 None 1813147 ONG_20190929 0.0 0.0 0.12898169888608355 1.5713192112090237e-05 4741815.173844766 577.6715102229632 81675 16303 297056 STMX_20200801 23184511.380264577 2045.6031151466284 0.002934862089221817 2.590123999619937e-07 10267610.828176234 906.1545113988078 20447 89 195986 YFII_20201115 63159048.96094969 3925.030738957673 1576.216346400187 0.09798647210441983 101987710.05171992 6340.12959502659 11640 None 77375 GO_20210203 13547159.751682175 380.3974637357015 0.012785578406257105 3.5976683164350765e-07 908506.7333268257 25.56400489600287 13625 690 754202 BEAM_20210724 41273645.893064596 1234.7554211622873 0.4445405646644772 1.329012631114223e-05 13989608.194208272 418.2377823826867 21839 2541 207096 LSK_20200105 77239652.96554862 10511.308715510679 0.5663283559995254 7.701921183029941e-05 2671207.454112842 363.27740006570366 179000 31086 161971 WPR_20210127 6737704.968863831 206.74563828577152 0.011064397250074774 3.39584111512459e-07 173308.11885109515 5.319104351350641 32537 None 7520139 TRX_20191030 1452537763.604729 154363.10887389234 0.021932667656354748 2.331072640045662e-06 1959049265.7181194 208213.8942407175 None 71529 65552 PAXG_20210809 289340666.49963915 6577.481336844517 1727.06955907808 0.039261201246767255 15576426.86304128 354.0964673720866 None None 40633 HBAR_20210707 1655354483.8310142 48464.16172624431 0.1851280570847548 5.419854148347806e-06 49686316.9627208 1454.6287329274974 116245 22917 40505 BCPT_20200309 2348370.8627554495 290.6940512577924 0.020223088769649185 2.5116241543925205e-06 136861.35655128703 16.997615588427376 10698 3162 1771218 HOT_20191011 145430584.1306033 16984.644500694347 0.0008187763086015781 9.56237961246159e-08 16272380.187228534 1900.4296401093761 24420 6681 547189 PIVX_20190410 59914579.70820117 11583.901183710639 1.0070364734297175 0.00019464406939511097 582105.4592835947 112.51168989558604 62295 8590 250995 NCASH_20191108 2993555.9721076125 324.70983772058946 0.0010326443676539417 1.1201052800356268e-07 1670165.9394336096 181.16224189993122 None 58681 834615 KMD_20210617 132021159.61880569 3449.4896784667494 1.0451690849136857 2.730850100902115e-05 3517946.427651471 91.91799198417392 112196 9335 227108 LTC_20200113 3252025458.3740244 398670.68759151024 50.996923843914956 0.006244447332734407 3268625614.003306 400235.1310353743 449056 210299 182245 CELR_20210430 344213879.6013633 6422.984561722437 0.060613379563624885 1.1309674054578587e-06 57023112.00659087 1063.9776481945128 48366 None 141780 POLY_20210408 324218700.4531503 5756.023101082318 0.3942523304246184 7.01603665513335e-06 14821712.547755698 263.76427100609584 44097 5451 178908 SUPER_20210823 294540181.29147893 5970.39892926682 0.9921866080772976 2.0133186467587114e-05 35323375.34047649 716.7725270677881 133407 None None ARDR_20210430 385666961.2791032 7196.493474147153 0.3875865964489277 7.231865481382031e-06 16636336.512854524 310.41256035751906 71538 6775 None ELF_20190401 61114220.28935313 14892.629876052417 0.18429826194022805 4.491212300135853e-05 11515481.039105445 2806.237538017857 None 32136 1025647 LTC_20200314 2419405985.2854376 434905.6683993409 37.63721446752693 0.006765560643497373 6292602767.403613 1131140.7135360707 447912 212236 137206 DOT_20210823 28485595629.483974 577409.7404981764 27.76421923953403 0.0005633841441981648 1316710459.9558077 26718.338060905782 None 28664 27149 NANO_20190318 136846534.5267717 34364.22565698521 1.026975115031405 0.0002579016381813299 2501510.1529933526 628.1978569310185 97201 44809 349841 NAS_20200520 12851658.091312664 1317.8526181271227 0.2829038512886085 2.8979614423492632e-05 5853509.764772461 599.611688687129 23385 4928 956871 TNT_20200520 16741467.445411474 1715.9216445214176 0.03911396449110008 4.010308304083695e-06 1627161.1602139906 166.83090036484052 17914 2598 456220 AION_20201201 36495685.7352409 1856.2991774704115 0.07626969980601576 3.882639800242591e-06 1836138.5196631828 93.47177861371999 68153 72515 621777 CDT_20201130 4519904.207823377 249.1765145253261 0.006709303511459096 3.692569784845728e-07 209460.01016083604 11.527958205086154 19209 293 497751 WPR_20190318 7437737.770744491 1867.7279626788327 0.012547191668422218 3.150788782091913e-06 183059.86809034692 45.9690896634577 34993 None 884505 CTK_20210429 114364516.89855185 2089.311455789451 2.5688182089819005 4.6917224950973056e-05 14677589.65069404 268.0733782452483 38547 None 202878 VET_20200903 1032042959.7205358 90464.15457195042 0.01595295878864442 1.4002886364126751e-06 153277437.0073819 13454.096892212594 134142 67034 75670 EGLD_20201115 108895147.85838698 6766.843981388346 7.512961855155978 0.0004670479588180244 3196185.746516912 198.69288007758632 103158 2801 47014 CMT_20190929 13533920.496619975 1650.3040099337543 0.01691740062077497 2.0628800124171926e-06 3145013.878535124 383.4978206307667 289390 1652 632576 ELF_20200511 29663929.614031922 3387.807222639338 0.06484333120194033 7.38707737417338e-06 21453459.82095466 2444.0195268124917 82058 33409 552122 TVK_20210723 64404811.59237304 1989.4282471198549 0.14836680912557504 4.582809249952568e-06 16675971.244186405 515.0936096840742 50605 None 92892 STPT_20211202 199690920.63607383 3493.5790806751907 0.15150466606036878 2.6506938809527788e-06 6093355.441269781 106.60806959046614 None None 438073 BCPT_20190510 3116912.978468124 504.8336543677238 0.03719078303058681 6.024406390781493e-06 356696.8721609472 57.78009337557832 10748 1880 1145743 CND_20190903 10771579.676467989 1043.1094676504056 0.006159281571287937 5.966167827634984e-07 270477.9771944669 26.199760263338323 35868 6110 335034 COMP_20210219 10763805.895120729 206.4321266580481 0.00011605277086471129 2.237499195782732e-09 394.6148645463366 0.0076081806189327505 2155 None 1914243 LSK_20211007 482480361.51987934 8691.118962362068 3.3299179595625796 6.002654161920656e-05 16488329.45184395 297.22575934042317 198229 33094 199909 ETC_20190929 532727203.7942135 64899.47774643783 4.679345894001209 0.000570061191830796 575655294.6657752 70129.19130034183 230154 25005 331618 HARD_20210105 17712292.033002764 566.135823561796 0.4445173907942981 1.4208054985541433e-05 4145566.7786468295 132.50424383172086 13587 None None BRD_20210819 17352247.454415776 384.94681336394666 0.2056936801759789 4.566460873369394e-06 3842515.6027594656 85.30498914843001 822 None None NKN_20211111 370961812.44422567 5712.335919797109 0.5722486873736938 8.809748797011558e-06 115696436.42348595 1781.142646701656 34901 4356 160577 POA_20200607 2660869.2971245814 275.1811914592323 0.012085652218245944 1.2498713035520887e-06 116661.57074484359 12.064880477129462 17191 None 556747 HNT_20210420 1043607276.3331003 18651.025845368862 12.868724499848383 0.00023008510889589324 32879795.508576162 587.8711079839015 32145 15687 15835 WAVES_20190714 154777875.103243 13598.90778153514 1.5484414544645453 0.00013597097351407118 13438703.924431108 1180.0728081153977 143465 56870 50285 SNM_20190901 4329146.2259588 451.1093746002017 0.00989289649298176 1.0308680088405042e-06 56962.63749811697 5.935669168038424 31003 9906 18762051 SYS_20190318 31345890.815088026 7870.894507979677 0.056983348800527696 1.4310082873103311e-05 226860.44816031845 56.97088504165714 62376 4615 853485 STMX_20210613 177048399.9853895 4962.633808318024 0.02048957850162079 5.743190844917017e-07 18420157.24041284 516.3135904269703 66282 4458 51930 HOT_20210125 123784544.77655326 3842.751284204606 0.0006968684823198353 2.160035423543131e-08 11567255.783071646 358.5422913867906 27505 7523 800111 ICX_20210616 703720735.161978 17425.236394421503 1.118643842790609 2.7705205103665144e-05 139796683.01710305 3462.313586904424 140515 32371 229472 POWR_20200312 34275532.71387596 4321.466893610901 0.07976596773697037 1.005365990266711e-05 3426079.771395278 431.82126160115547 82704 12838 280064 LRC_20210427 614865843.3754685 11413.283085401525 0.49449645487947275 9.173290805495256e-06 76193805.75036329 1413.4538899694617 70942 10073 144294 CHR_20210201 16836458.04933405 509.29348594548037 0.037535540514867446 1.1319586286282121e-06 15375342.996320603 463.67394565451394 39217 None 474695 ATM_20211021 28841703.087913513 645.7254437455765 15.032961902109676 0.00022680211531544698 3704860.5668505924 55.895186789010594 None None 64646 EOS_20200701 2226439232.7578506 243374.39337171844 2.368911203738097 0.00025899903404231583 1110245286.2348063 121385.91612513672 190122 71690 93319 CND_20211216 23528746.928802215 482.25107163380835 0.012198608760559324 2.499668447705741e-07 692091.2269120646 14.181933668038383 37903 6363 138944 VIA_20210823 8524536.144558024 172.73053399240868 0.36793579411407956 7.456758471268744e-06 786178.1356144239 15.933052903386418 38231 2307 1271022 ZEC_20200730 700282153.1307923 63134.74331979563 72.1885013332913 0.006508237403940871 351118545.98947227 31655.49654058497 71601 15915 235720 MANA_20200629 49461058.32881685 5423.4578293336845 0.036927624749515504 4.048992201592062e-06 13081528.078987913 1434.3463879957399 49110 7013 63956 CAKE_20210828 5625738387.561024 114706.31887435536 26.13003209592634 0.0005326729796917318 295310497.73959494 6020.043227950036 None None 739 QNT_20211028 3795324570.5696077 64844.96372226286 282.77794777009143 0.004832322827436086 76957803.64070435 1315.1129860546102 57024 9547 87967 ZIL_20210602 1429952431.3189023 38971.725171097096 0.118191836542647 3.222073972975097e-06 157331583.4763098 4289.077952207472 None 33491 31091 EOS_20190302 3633866604.581923 949951.1947396717 3.4932588372392575 0.0009136881559613297 1207425160.8725564 315811.14372012333 677 63132 84720 AMB_20190414 7968139.102770049 1570.3184445749605 0.05497131762416805 1.0836419498650343e-05 1030530.073910215 203.14696226158068 19195 5695 621301 ONE_20210602 997294462.7056872 27181.12833313186 0.09784242965588465 2.667863963712294e-06 76896125.01133092 2096.7222664886767 175756 23851 20488 RIF_20210506 239115899.81776437 4176.865805890011 0.33151973061931855 5.782875809396e-06 16512400.601167193 288.0346271190572 42814 3232 493972 OCEAN_20210219 493014977.930008 9539.163589074193 1.1777918362002069 2.2781076123047875e-05 162480611.06854364 3142.7312157414476 47058 1789 79767 DLT_20190511 7787393.82640137 1222.179355994916 0.09770474201719254 1.5334105522104254e-05 5622984.550261241 882.4898020578734 15144 2676 2743184 EOS_20211225 3321918033.494529 65293.31954314839 3.3879494508935455 6.665290576281845e-05 559211383.9039012 11001.658735791212 259760 96486 62923 ONG_20210902 0.0 0.0 1.1468212490595333 2.35703558367959e-05 28915650.89607342 594.2967846400937 146637 19962 152489 WRX_20210916 545460593.9140786 11318.38296718013 1.2110711558377887 2.5122628526540483e-05 10586907.37453726 219.61627930226737 333734 None 1480 RVN_20190201 30690781.54590644 8944.41418492715 0.01095254430364663 3.1919712596451127e-06 2815772.9462718554 820.6190332591042 19090 5701 264314 MASK_20210626 54721782.73901656 1719.5371594955177 3.6959013616082066 0.00011625861529398967 24993855.70765879 786.2090383726596 36945 33 244423 REN_20200224 56017423.98105308 5630.452681788404 0.06406505455269827 6.438256944978404e-06 2316698.670298561 232.8180535802531 10918 869 519713 TOMO_20200914 48007369.67499495 4650.791025270584 0.6692685577852753 6.480631374587617e-05 10181297.616404856 985.8708585568502 31131 1672 74287 STORJ_20210710 144932690.1385698 4264.407272574792 1.008290603375582 2.9668724739466226e-05 68923277.72948548 2028.0519805024778 103529 13678 49703 GAS_20190723 31926151.649436764 3084.9298991530623 2.2932687085469037 0.00022174210791881175 662177.6187856618 64.0276738870389 324348 98154 191074 BCH_20210105 7411820613.642335 236903.11560910603 397.4517213108998 0.012703700749239145 6542251947.133184 209109.1986930787 None 355563 464995 RCN_20200730 26524027.048430774 2388.62602524838 0.05169691810246738 4.657964128452281e-06 419265.0550832262 37.776363825410094 None 1132 1028220 WAN_20210723 86891627.96631478 2686.657398960591 0.4943540496309534 1.5269791975392147e-05 1652066.7483926138 51.029652930425165 123124 16649 248498 DODO_20210731 165351435.3155353 3960.914802118479 1.2025713266086553 2.8770845078230244e-05 65769801.269392036 1573.5056385253831 98873 1043 29293 PERP_20211104 949651593.6121212 15060.929938241401 17.03681748459289 0.00027014516983659136 59866208.34354467 949.2716016395178 None None 106590 FUN_20210930 189769849.0308856 4568.549317954228 0.01795035161903173 4.318489661983418e-07 15696208.155157546 377.61885721792936 18869 443 104367 BCD_20210826 499406842.49941725 10188.700469903644 2.661473300335123 5.430386717094764e-05 11306049.471847495 230.6850903482899 None None 1368102 NEBL_20210420 59333308.513706766 1060.803433082119 3.338238077779542 5.9685703245521544e-05 2032316.1139995907 36.33659842558473 40098 6047 477279 XZC_20200518 42065588.757693715 4339.239313603945 4.15053973420903 0.00042814532541306845 33996214.643413 3506.8500275640413 63575 4099 177140 POE_20200607 4625880.318757437 478.2972050183922 0.0018373371895139656 1.900133304064119e-07 179605.54956907025 18.574406934048252 None 10292 691823 VIBE_20190902 3002321.5881420714 308.7045186208298 0.016043895265288176 1.6496643744745405e-06 267528.03726507333 27.5077507645 20331 None 1398469 ATOM_20210114 1479081027.9987123 39789.84948942943 6.2572767114517385 0.000167415384919536 364088746.36268556 9741.307669137503 48692 10209 104708 BAT_20190923 256507630.5514083 25516.674491104135 0.19113633975132113 1.902823414037788e-05 32248511.671924114 3210.4425122425705 105972 30364 27075 FLM_20210806 0.0 0.0 0.5203588253930594 1.2717766315440913e-05 21987128.32950673 537.373724431516 None None 72660 NKN_20200217 15001381.08176095 1504.8590253094196 0.023241073384310033 2.3361534140731917e-06 1891577.0176577654 190.1381246344171 12185 1002 406869 QKC_20190509 34268719.84352236 5752.869951954769 0.021722351252783472 3.6466687744420794e-06 8762841.42899972 1471.0737269026527 50681 9176 157816 ARK_20190706 61349237.82110951 5576.527488444677 0.431576233672224 3.926704404894051e-05 546730.491088903 49.74437562007144 63485 21857 202264 LRC_20210429 646237315.300134 11806.030949379949 0.5210091920038392 9.515778647667268e-06 77360005.17823817 1412.9130479008584 71314 10096 144294 CMT_20200314 4976181.204762176 903.854310856484 0.00609942321125946 1.0964152956041775e-06 7464765.17879968 1341.8453576103668 286774 1639 953076 BLZ_20211202 108595988.72280711 1899.594040184988 0.3471502058931096 6.072478385356765e-06 19031429.23460868 332.9047216673476 74090 None 221086 MTL_20201226 23494976.402234044 951.4020048948131 0.36521581625009336 1.480491756326705e-05 4127710.0374178477 167.3268355584958 42828 None 417448 TNT_20190902 12638451.513164932 1299.4022912162086 0.029503856524230723 3.0326128243749196e-06 618335.9601773573 63.556896742159914 17518 2534 571666 ETH_20210304 182133382817.63593 3582976.5691294624 1579.4271687603093 0.03117188332645146 30352405292.089714 599041.0036980774 759965 705109 7262 REP_20200105 99502279.747703 13540.105457927575 9.068229933146593 0.0012332219435574436 7584219.136734306 1031.4058568344685 127867 10089 330161 ONE_20210108 55649055.926093355 1420.6476992051928 0.006247909134012556 1.5832556303618656e-07 10894325.985971307 276.0684028259748 79651 1589 186131 DNT_20190605 10508336.177247494 1371.5796709121264 0.016997675432584715 2.2171542049774773e-06 959803.2741765456 125.19546415224637 60749 6384 1082435 KMD_20210603 215002789.41150343 5715.9349845636225 1.7065638299747508 4.5369680671787874e-05 60080008.40348989 1597.2510070514018 111576 9278 214803 LTC_20210428 17293720452.383484 313918.0171613454 258.8552610979973 0.004700131894821411 6412385209.282234 116432.07913250975 168795 300056 95869 MANA_20190625 76632883.58289215 6940.817993007335 0.057965783823539466 5.248275235482481e-06 19264595.426067833 1744.2341399886764 44830 6273 136694 SRM_20210821 392478150.8924626 7988.22588331334 7.859517846127608 0.0001598688995683171 375605841.37082154 7640.1242044345845 107994 None 38162 SNT_20210324 534266551.72258484 9800.45702451744 0.13694135667302137 2.508352580682737e-06 272076445.95217085 4983.619791182967 None 5837 128099 ARDR_20190726 67629978.60029979 6827.296403627442 0.06768427581283804 6.837864398256067e-06 1537397.8762393845 155.31699316634797 67681 6562 883304 SC_20201129 146650219.05327663 8284.51154764338 0.0032478625272263036 1.8337000730932688e-07 6586636.852489515 371.8727740660706 106990 30075 144998 BTS_20210325 190521711.33075008 3613.518738786057 0.06959753241981095 1.3229709170856822e-06 61392308.604616955 1166.9988287334445 3361 7022 119116 MANA_20190414 71851417.50742874 14162.794355686492 0.054657723606573526 1.0771653256912229e-05 6564796.729316493 1293.7551987950742 44237 6168 117892 RIF_20210429 228394020.72433656 4172.502598480456 0.31763115471128883 5.800762895707147e-06 10344496.209967563 188.9171414690273 42764 3217 604908 BQX_20200913 30907046.316599067 2963.999823235257 0.1387652430206274 1.3289215772885402e-05 627332.3739037836 60.07812256621457 15221 60 203989 TRU_20210325 87141333.12471847 1648.6327791390324 0.3713303151758391 7.038195772857444e-06 18019744.556785632 341.5462858384788 None None 95086 VET_20210430 12528191725.306576 233774.36764355339 0.19280733791443305 3.597535994267242e-06 2379181364.7754083 44392.452534498036 289632 145260 33497 MITH_20200117 4143731.8285479 475.9264138174898 0.007222696653458806 8.294842135948173e-07 597807.413131058 68.65466400623437 90 2084 1281768 XZC_20201015 44617957.280838914 3908.8705520426965 4.020246598554144 0.00035219593219052705 5537498.766003815 485.11564952210006 66903 4172 308267 NAV_20210203 17398985.610752925 488.6123984106634 0.24603057040256546 6.9205271854332555e-06 852491.3097176518 23.979496834857933 48576 13652 604574 CVC_20201111 71103343.90069887 4648.620471520002 0.1096670276840359 7.178947943843185e-06 261108153.88590086 17092.483347506135 85275 7998 301076 REP_20211225 124408955.56157905 2444.2039304139 18.022574095547423 0.0003544934361382586 15441491.668707551 303.72506234238716 159346 12086 187698 NKN_20201115 14069950.788613869 874.3195971980041 0.02163995176761077 1.3452610963340607e-06 1026697.319711009 63.825279129546175 None 1021 271625 BCD_20200317 71884165.27095199 14242.256791166436 0.37060999284989593 7.368085289434045e-05 2345087.504925811 466.22608890305065 29081 None 1207769 ZIL_20190512 153761594.9686373 21058.73720166824 0.017512105517774882 2.4042839485913427e-06 25909248.136610385 3557.150186863286 60934 10258 201594 SUN_20210110 0.0 0.0 0.0004681116483918306 1.15e-08 2639.527810678202 0.06484472225179745 41 None None RUNE_20210427 3193249193.1666646 59273.835742386014 13.630564166289485 0.0002529521879234175 163268113.60628325 3029.8838735506924 999 3925 83196 POLS_20210603 131254871.99456109 3488.132610010391 1.8794140548584854 4.997396036450935e-05 16523795.626255097 439.3707206578821 374712 None 12514 BNB_20210511 98190931850.41058 1758927.0277687814 634.58945301263 0.011357223906840776 6201737490.209549 110992.26587107613 None 349433 139 XLM_20190719 1749990867.8110662 163056.90201572067 0.08861797572448994 8.30565844590266e-06 444388578.90877956 41650.01201507223 275155 102998 67443 RLC_20200506 22451096.365155216 2503.5126127654426 0.3152826090641836 3.5095060624028315e-05 381904.3405391461 42.510927017456844 30489 3585 510441 GO_20190207 11406324.007531147 3349.1522924757223 0.016893155718548915 4.960209017784465e-06 576158.2943545887 169.17298431050224 7867 624 665019 STX_20200425 67609099.01681243 9021.501393681403 0.1069663478319655 1.4271191501365304e-05 1079012.9727220556 143.95930195133934 35927 None 63028 ATM_20211125 28841703.087913513 645.7254437455765 9.700715689362298 0.0001696120260191759 4670451.55669173 81.66044406636698 5173339 None 72064 VITE_20211207 71184791.93569653 1410.3068405731444 0.09354483186471856 1.853556016007568e-06 10982220.366811084 217.60860781129983 None 2800 264565 VIA_20210221 18272402.304272577 325.0310413633939 0.7885071417776577 1.4026031889333897e-05 768133.2474057106 13.663619328901529 37812 2141 1515639 XEM_20210301 5439133760.01197 119896.1146338823 0.5994608756560708 1.3278486053722389e-05 746737792.7261657 16540.774834804546 242024 18720 34570 ZEN_20210418 1288073918.986525 21367.2410962146 117.34637716493934 0.001947014050491133 265089312.42524418 4398.368559785362 98339 7020 749117 COCOS_20190830 22006336.310383067 2320.3290829833327 0.001374740783913949 1.4487500112548802e-07 2825884.940063195 297.8016573470487 8411 113 409099 SC_20190901 74658355.38271368 7777.510580701573 0.0017771341879837192 1.8513239247659795e-07 4905719.961335127 511.05182681370826 109112 30659 202127 RSR_20200903 187828797.2215455 16464.211285850517 0.027656175170112103 2.4236635538102654e-06 36188702.79638093 3171.4161299515863 43259 None 120167 ETH_20191213 15788957248.11528 2190923.1149312244 145.02592545573296 0.020121937468413807 6766489316.62679 938831.2778008344 448255 448511 25110 OGN_20210206 51100492.37987775 1348.4810312708848 0.24438377176369389 6.429214191387594e-06 23128831.314400643 608.4700692014019 70581 2616 192490 KEY_20190316 7595944.959437763 1935.7170106208011 0.002902219478036922 7.39519693245031e-07 567519.6569763905 144.61069047802945 23475 2818 726205 STPT_20210826 80236557.96655838 1636.9142605953086 0.06603745400569164 1.3476338989232519e-06 15071534.180430783 307.56652684669575 30816 None 819629 WBTC_20210711 6639309525.925732 196892.1464201904 33694.890695452705 0.9995763567609707 265832969.83765277 7886.072517609628 None None 181430 STEEM_20190520 116577610.4089038 14244.538855926196 0.3754501309215238 4.5893127093636534e-05 1495543.9110185124 182.80773165273686 5570 3734 288379 NXS_20190523 22715969.820580266 2963.405272141442 0.38064962767517035 4.970421506513342e-05 404530.28808906925 52.82248812994449 21330 3519 737068 MDA_20210823 17274597.939805426 350.1556821298501 0.8800599371602418 1.783879362548964e-05 1504742.0802996003 30.501085547275604 None 390 2385325 STEEM_20210527 255632068.17808902 6524.642699377204 0.6678114258309891 1.7046466465793965e-05 4786662.279088738 122.18371065160163 13858 3942 198346 POE_20190511 9129401.695849357 1432.798511797904 0.0040135947342905395 6.299068387872457e-07 546778.9004039005 85.81328994838549 None 10912 815050 FIL_20210318 5350371555.607416 90913.07608810993 89.7038197748013 0.0015218926507117195 3604161978.681907 61147.313917076215 None None 50796 ANKR_20190803 15830306.896232866 1504.0006185259822 0.006020447430398071 5.721175941924614e-07 6974197.823176353 662.7516187371034 10389 None 12914 ZIL_20200305 63061807.21455645 7203.486898290526 0.006090428961940624 6.954563501935671e-07 12386145.158725522 1414.354121669329 68396 10554 224303 WAVES_20191118 77053030.33713417 9065.247546154094 0.770732169134759 9.060991419714141e-05 33455044.582363658 3933.0896522362395 141575 56871 22150 KEEP_20220105 472409936.9054118 10205.311045048644 0.8449088055121311 1.839660086402583e-05 106619281.83514899 2321.472281427363 31332 3691 147183 DOGE_20210620 37500205366.62849 1051925.4168731247 0.28783491462708616 8.084429477431484e-06 1435144270.8263361 40308.948142955865 1863449 2080285 8922 EVX_20190608 17356611.48143642 2157.604412685377 0.8201984771889139 0.00010216303872865325 4655176.311374894 579.8437463791608 17659 2768 738381 DOT_20210704 15587592092.317818 449634.94914772495 15.507857021418484 0.0004472664520593979 433677879.5271505 12507.825307188023 491570 27067 19390 CRV_20210724 559700117.3173859 16741.624500367772 1.6038032400115623 4.796150503086131e-05 108362274.11910269 3240.5582091737438 142966 None 13850 XEM_20210819 1736884947.2747316 38533.0568265239 0.19229456809137424 4.269714516877828e-06 99125982.05399655 2200.99636082599 372070 21789 119011 ONG_20200129 0.0 0.0 0.10742353616739259 1.1516263296376737e-05 3995483.215926329 428.33291802237756 81733 16233 348769 THETA_20200801 268697171.7354871 23707.93249660138 0.2688246032941292 2.3730762570107237e-05 25967619.584749248 2292.3177690038788 71756 4295 60901 FET_20190915 18890905.49968395 1824.9364110296399 0.055462536675097325 5.359130126028958e-06 2618915.0460334998 253.05561847859738 16272 307 439975 DNT_20200506 3399117.151535816 379.03416932211053 0.0045492785165051315 5.056710653999341e-07 77862.17021468283 8.654701272732083 58324 6047 731161 MDA_20190314 21361759.76929988 5524.977723804614 1.2019086379742727 0.00031086008468270685 53551081.34669822 13850.381931144308 None 353 2571969 BAND_20210310 337950773.24417937 6183.043119344556 14.968703327488624 0.0002734132942642372 212584203.8826033 3882.9914803204574 68392 4261 210943 PHA_20210430 160160179.59745273 2988.567346989274 0.9016672469815943 1.682394669702722e-05 36938276.87901873 689.2205560011093 42399 None 139188 AR_20210610 791310406.4611499 21081.415866265084 18.012471640466302 0.00048092697072877634 34242828.21053546 914.2720648887239 21161 None 89041 WABI_20210511 31746508.758376073 568.16608993056 0.5371960662622232 9.61417807599887e-06 5506851.961506928 98.55592533368933 45124 7768 287110 BQX_20200718 15580028.719208842 1702.1608683478414 0.07006573236701588 7.654528530865985e-06 2402453.25123993 262.46278079789107 12744 42 341287 CTK_20211111 105189844.57551575 1621.7419419976172 1.834528927618132 2.8248648014004826e-05 17159592.294206914 264.22874858247053 None None 158257 FUEL_20200315 1228030.9721709779 237.58031733853448 0.0012444413975878277 2.399993772200019e-07 30669.85943851343 5.914900596312514 1 1469 None BRD_20191108 20895842.680651646 2266.42650561366 0.346979280131618 3.7635883905978536e-05 1340765.1309419249 145.4290895818716 None None None MTH_20190207 4697810.910511678 1379.3981565198765 0.015596774411177072 4.5777268334463496e-06 223081.73162035807 65.47554013209071 18681 2016 836178 LTO_20200713 15618421.18661643 1683.3823487952423 0.07042029047901832 7.579250494711384e-06 6470359.814283679 696.3969828835315 16052 505 1316486 UMA_20210724 525563758.99102026 15720.545398849657 8.482175549709567 0.0002536625950701413 15307650.72465224 457.78095306876446 41910 None 160207 FUN_20200208 22430290.123094622 2290.1766961078088 0.0037776284482935723 3.8537795622471003e-07 676248.885266962 68.98810109849302 None 17101 400307 PIVX_20190708 41688657.7966334 3647.1476018682347 0.690331874695031 6.033861687609698e-05 13696917.44522605 1197.182231337829 63436 8630 286633 PIVX_20210602 58481342.93662897 1594.5025528946373 0.8932273724259449 2.4353977766753317e-05 842341.4655132518 22.966565911889287 None 9788 263514 ARDR_20200317 28858046.288842764 5717.583339639205 0.028798291057699585 5.719379125270004e-06 2014111.4677761216 400.00523161897155 64536 6382 1001396 HOT_20190507 232441024.6445773 40631.98121318502 0.0013074931398134894 2.2856628958738254e-07 9853373.092488894 1722.4938770933843 21186 6032 229269 IRIS_20201111 49764936.08893216 3253.5502266950443 0.05750910788539314 3.764621878834761e-06 4292792.767927224 281.01186350600926 None None 401587 HARD_20201226 22665816.98137323 917.7976297572988 0.5673601845512765 2.3009040197458178e-05 3224430.62374511 130.7653512809396 None None None SAND_20210703 173055441.80334863 5117.225876422343 0.244862300355013 7.231323697377834e-06 59112911.151233114 1745.7346214960162 136912 None 27312 ZRX_20190806 127834885.46105696 10823.188888273053 0.21266212374872592 1.801720824584424e-05 49802701.61066684 4219.395679435854 151315 15932 188207 BCPT_20200208 3094381.386764051 315.9424199128046 0.026668610218949042 2.7202801731145748e-06 561993.2900372411 57.3250421285726 10687 3152 3767416 DLT_20200224 4037498.094605569 405.81912481688767 0.049244197851316326 4.948825861926542e-06 61023.602976762835 6.1326044036936 None 2592 5142764 EOS_20210127 2499354680.772655 76744.35406493254 2.6275561434939116 8.066981236698573e-05 1628643422.5873218 50001.732460849744 193974 74371 74168 STX_20210128 392474999.53612906 12974.005673190453 0.42808575621201117 1.4078471490071493e-05 4334198.468734693 142.5389391936999 49065 None 68593 MDA_20200423 6670239.090890264 937.5889000819861 0.33981747162092235 4.776576747913515e-05 145208.59693489326 20.410957812377895 None 374 2010247 WABI_20210813 13342106.317834899 300.1070500488229 0.2258230802857018 5.079365114524925e-06 1846871.591777217 41.54108217110471 45368 7883 670233 POLY_20190414 47044948.79817565 9273.688222954153 0.11038809647556645 2.1755252678765682e-05 8193689.6223604735 1614.8098735019657 34364 5048 277280 CHZ_20200501 34672734.04559685 4003.9948565867276 0.0072170098583168255 8.379281233701365e-07 4869655.831046579 565.3894967685345 20491 None 255307 EVX_20190805 11642068.333206097 1063.113363646194 0.5518027674700086 5.038450363936543e-05 7049907.43812254 643.7192923150401 18245 2915 1025264 LRC_20190901 32806669.811233353 3418.5484917370964 0.03409454655385963 3.552748918704567e-06 3360737.787593714 350.19845540581065 34430 2441 519433 AVA_20201229 28946140.703910362 1067.4725331309091 0.7513435898346493 2.7663664918745456e-05 908782.5759298309 33.46039948254551 None 9036 106233 LTC_20190904 4375179179.209779 411710.886554288 69.22122014839303 0.006514746753073761 3041954957.391358 286293.2224999511 452134 208115 124361 MTH_20200621 2903977.6746832924 310.3717706454237 0.008270580613676708 8.839551110280276e-07 310985.26911259984 33.2379346659077 18983 1909 2521194 DGB_20210420 1907643924.1185603 34076.28164489736 0.1336116490113212 2.389163500720157e-06 301250648.86157036 5386.783713501981 203789 33219 307288 MDT_20201228 14475563.34683467 546.1161600513176 0.02369178389120839 9.008861829588868e-07 8519024.705961892 323.93810804320225 13541 71 1448510 DNT_20210429 217005699.50726804 3964.450742657573 0.2902853449518403 5.301469930752136e-06 20593886.71815545 376.10534976104304 68222 9799 186228 DOCK_20201130 6632042.824979506 365.6084062089679 0.011825212819157736 6.511531836035695e-07 3069039.721610369 168.9961116044205 42986 14887 275585 BAND_20200807 163594287.4688115 13896.858398232502 8.035371794686716 0.0006824706271085646 83842264.94858491 7121.000073139002 21118 1531 241439 SOL_20200914 112654349.57438488 10913.571010143023 3.22479831179511 0.0003122622282644512 15375145.93697348 1488.7992568744257 86954 2397 84125 AKRO_20210117 33684537.28481511 928.3149710876584 0.014902267248755914 4.117845317840667e-07 21367183.306855068 590.4252974856682 None None 227046 ORN_20210421 339548264.993969 6012.48218100683 13.702922463829916 0.0002430288665980825 26017744.808577433 461.43901411957967 56139 None 53561 LOOM_20190616 56197425.56710495 6372.728307172647 0.0811791006420623 9.206673076533146e-06 3620726.749333756 410.6333676638724 20356 None 421831 LINK_20190702 1304757994.4742405 122958.79027413845 3.600952939667723 0.00033923362217449046 438458144.6526206 41305.661882973705 23873 9043 152412 TOMO_20200913 52190129.96041415 5005.057241403666 0.731313456794999 7.00364563475051e-05 8509407.836137015 814.9293096158482 None 1672 74287 NANO_20210614 874000721.951584 22388.707243869427 6.559189029379544 0.00016802247326302966 33337423.705101978 853.9830698671977 131533 99747 52991 NEBL_20210511 54419818.825330146 973.9047044059148 3.047449501633427 5.453758336841081e-05 1742300.718983513 31.1804578430174 40289 6066 523823 NEBL_20190530 20350337.250832953 2353.2857829562968 1.3397008057517807 0.00015492120944883697 359511.1974004719 41.573394053776504 40314 6158 675996 STORM_20200418 8362836.4623968825 1181.304205053862 0.0010919020785710417 1.551012959889505e-07 362600.11001504026 51.506218453827856 26063 2511 799916 WAN_20210620 116581328.28947349 3270.2450869685117 0.662007424197798 1.8593826052676975e-05 2238568.261648249 62.87474632866733 None 16580 180661 EOS_20210710 4071076903.570559 119784.7769071215 4.22413792668911 0.00012430285236195428 2605435863.8072085 76669.63416869605 None 89319 47044 WTC_20210219 34015979.1164919 658.1081447283872 1.1675907389474955 2.2583764538852854e-05 18265541.164562546 353.29560870536693 55613 19118 511678 ETC_20200506 833570249.1110725 92951.07901788098 7.1902520598376105 0.0007990812647609961 2754849674.7644544 306157.3841942497 231136 25430 364277 ENJ_20210511 2066035107.504516 37003.521384650245 2.204907570064608 3.946114901253106e-05 257223885.95222345 4603.5263477487 179970 31187 21427 STORJ_20200422 13299746.755696096 1942.0597691746957 0.09243744147021163 1.3503469303774794e-05 1337717.276600496 195.41674774204085 81782 8051 123443 MITH_20200229 4086143.341083647 467.5142526470338 0.006642255979655481 7.623307574792879e-07 705360.9244090315 80.9541712105046 93 2083 1703270 ZRX_20190708 179070308.31166634 15675.80952425025 0.2998080753795863 2.6235700984298296e-05 32216942.75374909 2819.2505343475755 151174 15980 206645 NEBL_20190923 7338283.216865 729.9899384412231 0.4714058121574155 4.6894155297359074e-05 110718.88285491169 11.014010334718911 40402 6106 485969 VGX_20211225 5072193506.9509325 99789.78598030613 250.55033688304533 0.004927170661761433 174372349.60312632 3429.1006584755905 None 14105 13960 GO_20211104 42797621.5439876 679.3732041642727 0.03880823228257418 6.158221883592457e-07 1955820.7896684434 31.03562744013337 24001 1150 193105 STX_20211202 3085365896.0988917 53970.15798603405 3.005353175951735 5.2555664948284485e-05 971806950.182294 16994.32894505676 97850 None 41098 ZIL_20190228 144239891.93710303 37786.28313406024 0.017354945355702533 4.5519104863867355e-06 8104847.920490024 2125.7653933047977 56246 9991 183294 ATM_20210310 0.0 0.0 7.953519461802221 0.00014540142593514604 2880248.414204929 52.65495715250867 4872105 None 220888 SYS_20200531 16403218.2296113 1692.6296168891572 0.02793930581854043 2.883025504008412e-06 540586.472928951 55.78250936864319 57617 4469 924395 STORJ_20200430 15506178.681442862 1776.08951290144 0.10764607397129684 1.2278064563986847e-05 2035733.8048559583 232.19491588496564 81679 8056 123443 BTS_20200730 70413815.30862965 6348.607002735659 0.025981078685331213 2.342489997983464e-06 11292145.081610624 1018.1154227590087 13115 6953 136009 ALPHA_20210324 537328251.9269361 9856.620116101516 2.154151742842326 3.9517057281112357e-05 300126517.0095835 5505.701631120681 49498 None 33273 IOTX_20210823 752584987.6863462 15255.075164832304 0.07901114324004321 1.6032730808085003e-06 58782167.555395424 1192.7920924624348 104853 7919 88256 PPT_20210107 24211548.633913886 660.5584900046116 0.6684656802925593 1.811116505664416e-05 2184160.787476545 59.176854846048144 23653 None 755937 STEEM_20190812 62422491.74259042 5408.984661697275 0.1946221456729564 1.6862987282488163e-05 728539.974585321 63.12416443533036 6124 3763 297203 KAVA_20210616 286986541.46761376 7106.23984376354 4.086638251550032 0.00010124919747214499 109815863.61140303 2720.761510062169 None None 51649 XMR_20191026 1014994662.3834174 117432.07140043846 58.8951930816984 0.006802583008076821 160949622.94330043 18590.195785107244 320050 162116 81315 MTH_20190318 5704405.623533781 1444.9428717368378 0.01896550010489934 4.80401745493726e-06 335434.71051685774 84.96660754537821 18788 2014 1148279 BNB_20210105 5860212415.082251 187309.25256188918 39.96291375628447 0.0012773297238543567 962253282.3266126 30756.38395358278 1459409 84881 896 ONG_20210218 0.0 0.0 0.4075644366977141 7.818869543294599e-06 37898183.445581645 727.0530144626622 99045 16934 213342 DASH_20210804 1613239129.3159022 41987.08569430684 157.1042424921898 0.004089601670551753 384228806.65796953 10001.911753978608 401853 41808 69115 OST_20190522 15331449.95227954 1927.7674283371464 0.024550906983187543 3.09124965266197e-06 2635925.800283986 331.8942440762191 18129 749 1111162 ARPA_20210513 82460558.74184027 1598.7485727802227 0.08179757754169849 1.6228456923878724e-06 22402396.401989788 444.45854746250217 41413 None 485281 DUSK_20200626 8816096.539608005 951.9618386005664 0.032941932912634996 3.5600774112313983e-06 660080.6099492891 71.3357675551267 17360 13331 976071 RUNE_20210723 977207185.539921 30214.889245326132 3.5834144292816497 0.00011068583930403239 175752983.51132137 5428.723602599908 2790 6089 63469 QLC_20211111 8249850.11195718 127.11198955198341 0.03472142701240071 5.346513513366812e-07 475561.0918157962 7.322837862961524 35332 5814 940522 ELF_20210509 214381591.30279645 3655.67084704384 0.4658267018654263 7.933728942227461e-06 45080173.323266126 767.7831141563677 87920 33377 198010 DUSK_20210826 58896052.89679379 1201.5739288268426 0.1632613837610521 3.3315836191407718e-06 5178193.483423262 105.66849421883926 28542 13653 340293 NAS_20210220 30884230.175550178 552.8863725358383 0.6787111662819463 1.21401988645656e-05 14218634.053027151 254.33063954413623 23735 4842 603021 DAR_20211221 0.0 0.0 2.181569571060871 4.627542033936143e-05 128375631.38139902 2723.1019273047054 None 702 22834 WRX_20200610 24917575.56935259 2549.0574235199706 0.13354396875740213 1.367539236434148e-05 7206313.372182344 737.9529287767398 28147 None 24905 OST_20210610 12790895.178057063 340.7641026185145 0.018477078989863616 4.92712277785379e-07 1860458.5715693505 49.611238931551135 None 782 499263 MATIC_20191026 32650750.170596555 3771.265984362342 0.014343449573140182 1.656714262029827e-06 29824927.26642518 3444.874408651149 None 1191 198579 BTG_20201229 153091954.40091664 5645.707938683214 8.64050364962351 0.00031821388878326007 17592383.770357005 647.8952014303866 81665 None 361014 FIL_20211021 7722232513.745195 116504.79816002774 67.13461804424196 0.001012962091746053 713196845.593475 10761.085555934224 112840 None 53006 GTO_20210420 50049781.421648696 894.0402485111019 0.0756890810880113 1.3534268252553523e-06 25169899.947676037 450.0730790821271 1804 None 321700 HNT_20210603 1328867255.0583365 35328.466453015135 15.676109818036888 0.00041675563733864854 22198637.263702143 590.1596332426184 51036 34361 3416 UNI_20210711 10577796005.170385 313795.78847649693 20.344892225542416 0.0006035417486083956 212659432.42385218 6308.652033163511 None 48457 1526 STRAX_20210220 158802080.99517763 2839.105517593483 1.5868389296186558 2.836992520739872e-05 5881643.926518073 105.15358249495956 149753 10468 212375 ZIL_20200907 171928485.16379163 16696.15983234807 0.015367926875235301 1.4940172676555144e-06 37273919.25509898 3623.6428929170447 92820 11980 85218 ADA_20190312 1480451280.8265526 382892.12615456723 0.047349574427912836 1.2246857416657616e-05 82116619.15537737 21239.27275977868 148128 71638 114984 TNB_20190207 6480206.99770949 1902.733966505438 0.0025993737283875767 7.632343668023443e-07 273948.34844657517 80.4373730409551 15098 1510 1690668 QTUM_20190903 205355016.97465578 19893.651564558742 2.139370414917247 0.00020725030354209353 188487209.25922373 18259.592196093472 None 15348 240356 LOOM_20190318 46631585.824662186 11709.893447891955 0.06733606738987764 1.6909934656018237e-05 1624503.6176790853 407.9574452182524 17974 None 438947 VITE_20200520 6482152.77510856 664.0075318917471 0.013014995591655377 1.3332075623984849e-06 5805095.29103609 594.6522907326452 None None 618557 WRX_20210115 19710890.875540636 504.67496644307556 0.08279930621243381 2.110650705662286e-06 1831168.875031244 46.678626368624286 49358 None 5719 IOST_20210108 116065144.01359342 2965.188421440279 0.006364863774756545 1.612442089678511e-07 76221304.98164105 1930.9516217779762 193217 52139 596701 BAL_20210616 260911261.36950648 6460.574742456429 24.146296793086627 0.0005982599584224482 27287748.177871354 676.0940292512946 85905 None 65621 ZEN_20210703 706139481.2896284 20891.78523245248 62.699739426658304 0.0018516615701071402 35919763.579378314 1060.7898284022224 115058 7408 1147969 PNT_20210506 117603007.20032401 2054.284051454687 2.9177519619169527 5.091081724508107e-05 389441717.12406033 6795.230145295647 39360 276 348864 NKN_20210930 181296707.92163157 4363.830154942586 0.2784820105436885 6.696626791594744e-06 5482223.872078098 131.83044458636223 None 3596 223238 XLM_20191127 1170344285.3338788 163239.72545117667 0.05774511029604709 8.068531087861995e-06 172144388.1587565 24053.159485522516 278717 105353 55903 ALPHA_20211021 471578982.6884482 7114.706436995413 1.0539772531317675 1.596000939737927e-05 10503771.261270637 159.05493931645924 83643 None 56948 ETC_20191108 601851925.7383716 65282.6414335391 5.238000415543265 0.000568163842854077 980406982.5535324 106344.35940777065 229621 24971 391348 XMR_20201231 2840455190.3748794 98511.44346235487 159.57459853248122 0.005534297493806197 454151326.21961707 15750.680682391852 331224 187126 59280 VET_20200806 1209529912.2134295 103033.57116457721 0.01880617369599743 1.6020002616504426e-06 218611462.45460856 18622.375062217267 130115 65841 91721 OAX_20210806 8752382.441130517 213.2085931087458 0.1512190370940471 3.6958504062180423e-06 447704.6315034597 10.942070363658582 14175 None 1659116 AAVE_20210212 6401770918.2514715 134308.11067035104 517.005674874323 0.010828211810838413 960453574.4854227 20115.823180341536 121065 5519 18454 GRT_20210325 1719852735.119425 32546.9801878218 1.3800373771274341 2.6232960436268302e-05 275469229.2571326 5236.360632168871 78478 12421 22765 AUDIO_20210220 70426359.1446395 1260.6813063726681 0.46001399711991514 8.22225014217508e-06 13870652.531679291 247.92283596738358 26459 2673 59787 BTG_20211111 1209832019.2105923 18668.980988476684 67.56060057170775 0.0010403465598412666 24369831.543199822 375.26413612871556 103241 None 278866 CFX_20210429 861203811.7282851 15733.227738893467 1.0441305475687233 1.907013412127741e-05 29060598.600101218 530.7664968130441 31854 None 146617 TLM_20210814 362268731.6140423 7600.656864431944 0.29304899905335335 6.142903799010973e-06 121437487.98472375 2545.577049208395 57654 None 11192 DASH_20200721 652136957.3939956 71180.10352905579 68.96094140214434 0.007526568956374556 279781909.9414981 30536.094709626188 316965 35140 73738 DUSK_20200313 4052579.9314996097 842.0928825743358 0.015557840056102876 3.2045492073486352e-06 827235.3529877919 170.3910301911043 17702 13341 936304 WAVES_20211111 2380635210.577099 36702.93444361506 23.96321732006156 0.0003690027988308709 172015842.58828515 2648.823257350682 200920 59931 117946 EOS_20190629 6444971330.300577 520737.02695511555 6.195868819229848 0.0005004613023224193 5149325829.933418 415928.48172199994 1190 66876 103805 VIA_20200223 5011174.185282799 519.0180529332251 0.2163295835958663 2.2405718723474304e-05 86436.08757134098 8.952370884691451 39640 2185 2490082 IRIS_20200806 54841314.11642054 4681.493443612657 0.06810848860803857 5.8118996916260844e-06 12431543.888375983 1060.8205756420355 8706 None 1075049 SUN_20210420 0.0 0.0 0.0003875514414780715 7e-09 479.3477051583549 0.00865803497804392 52 None None QSP_20210318 65467735.47450468 1117.9098451742439 0.09222671459385724 1.5659856986464116e-06 4457460.255153875 75.68651927584415 None 8294 197128 BTS_20210217 159382411.21569616 3238.849034457892 0.05880844474486701 1.195060816479384e-06 63118649.852632456 1282.6495506760891 13327 6964 134881 VIA_20210428 41946503.59531747 761.1887015023642 1.8095155400341287 3.2847239353804496e-05 4877639.219183271 88.54136887434257 38485 2272 732301 XLM_20191011 1239535055.9169953 144763.6506224292 0.06192658426953031 7.232323415655799e-06 211283431.70199168 24675.510985518416 276502 104445 70159 ALGO_20200430 169431058.3993497 19395.631629892807 0.22802026859088556 2.6007893055189583e-05 81038138.16365665 9243.174932547667 17109 857 305108 STX_20210725 1267262621.5578387 37099.56521027761 1.206855514283444 3.5323211498675636e-05 22932529.138419002 671.2075864664496 69471 None 61461 GXS_20200330 25156734.04075401 4254.32173336235 0.3892047374036274 6.593689603976969e-05 9693288.140087118 1642.1828178150536 None None 697464 BAND_20200418 10053481.191081824 1423.5595375850144 0.5077729261277206 7.212756570037708e-05 1689388.6416709393 239.97240493862415 11920 1082 683896 PSG_20210221 0.0 0.0 11.31346061794311 0.00020181605713070905 4839524.227014237 86.33023359232126 8671891 None 33422 NXS_20190806 15225086.407696372 1289.372430252083 0.2558888640112775 2.166389786405713e-05 223713.78586084588 18.939912162247584 21808 3540 855550 ANKR_20201101 41554927.08150945 3011.502740965309 0.0071289499111472495 5.166477745290997e-07 16514381.72515373 1196.8268359809038 None None 5129 POWR_20210219 110033561.39007688 2128.822536499391 0.25805310181604635 4.991312705329944e-06 64435271.53641178 1246.3194095622302 82042 12742 332813 JUV_20210624 16279308.263963426 482.88462933275457 7.363218348683564 0.00021842072376361074 3000328.96215296 89.00103085487567 2529342 None 39510 NULS_20210324 106625269.8856335 1954.7464903686646 0.9547177438196512 1.7487549230665776e-05 69040314.5875618 1264.610308194618 42489 5249 464620 ADX_20200901 19647914.53053261 1681.0147006263971 0.21384905511946664 1.8320259412084252e-05 2634955.7930593896 225.7343322899158 None 3741 10625 WTC_20200208 18366318.71952736 1874.9139908108843 0.6261912296854634 6.387342920034358e-05 30614867.349487603 3122.8105240433415 55097 19454 903430 COCOS_20190920 19212171.64348394 1874.3594455701011 0.0012233166954273352 1.1928648444092656e-07 2943313.3387667397 287.00458524104675 10639 126 135713 SNGLS_20200725 8665865.968597807 908.4917462743352 0.010969450593161775 1.1499895522459936e-06 456302.5476818759 47.83677706014787 9094 2128 783082 OXT_20210610 206926099.34421653 5512.793897625078 0.34872608054646376 9.310869761735175e-06 18467820.03895089 493.0846207326447 65288 4245 98275 CMT_20201101 5490065.229590481 398.340208084486 0.006866541292930776 4.976305517531608e-07 1030933.6626621298 74.71360987803712 282025 1633 811182 ONT_20200711 393733630.77441496 42408.98916405367 0.6174413487187628 6.649985393376467e-05 94191169.04041523 10144.605631021952 86874 16534 150808 MANA_20191216 34919925.63183836 4906.868170990683 0.0262180317913277 3.6873832622651265e-06 10053657.283113813 1413.9767578802841 45874 6407 73772 BRD_20200127 14052006.607691409 1637.4398130615598 0.23262345302348403 2.7068986480820576e-05 811048.6815082601 94.3768373725331 181 None None LSK_20200325 145880937.83911115 21585.31386238613 1.050284576739094 0.00015543068905807768 5450074.936599623 806.5517875583091 177811 31307 164419 FIL_20210602 5239017503.099482 142788.72731823797 69.31768557039256 0.001889696590530966 564712692.7211393 15394.85401573333 89795 None 25507 SNM_20190625 10674789.031091131 966.5602434347376 0.026189374462932125 2.371345052587678e-06 791068.5415791272 71.62815114146832 31324 9991 15028658 ATOM_20201229 1256680815.9304185 46347.13092946629 5.321209359412949 0.0001960452747563422 322021441.26529115 11863.991372301894 None 9919 96388 DGD_20191113 24726592.858465288 2809.5233632446498 12.333009015419432 0.001401320318018065 1797953.6432344199 204.28988318819535 17402 3356 548694 QSP_20211204 40337160.44131314 751.2663847117642 0.05655353580445502 1.0526279575276507e-06 2608656.9749122015 48.55479368941204 72145 8653 121782 LEND_20200305 31922674.171520583 3646.5216444256894 0.028316037949008457 3.2333631222069497e-06 644702.3844337956 73.61753499486737 43862 5752 155774 QTUM_20210506 1808974107.3030517 31599.07851503392 17.634274738879054 0.00030760407717876013 935148588.9705294 16312.296535853142 236938 16277 91634 THETA_20190117 33248463.973135296 9244.191766395536 0.04677070966530337 1.3007453247196762e-05 1502045.7101588596 417.73557617274815 None 3814 514220 TRU_20220105 177594721.61663863 3834.5802774984986 0.3145000003159027 6.8353362940789665e-06 6627885.603442559 144.05032423754693 36632 None 102903 SC_20200306 97800772.89855933 10796.23034452359 0.002236427674413505 2.4687932013460684e-07 4939197.722723879 545.2381893441955 107898 30187 227333 STORM_20190314 14283038.869176423 3693.1920347128907 0.0031570439319361385 8.166569974066628e-07 2187570.919163471 565.8759070110752 26731 2569 3298265 NAS_20210202 15022907.126109919 449.9877875547901 0.3303033314453312 9.890886941983222e-06 7586491.267026535 227.17641714407583 23434 4838 795646 NEBL_20190515 19013755.437590398 2378.800263900838 1.2587154078601455 0.00015743452281228302 289388.3918523374 36.19541247702658 40379 6180 646043 ATOM_20210220 5409837266.182316 96864.76138054486 22.859627999711083 0.0004085910010292527 1141731960.1412408 20407.217672444032 67475 17262 73647 ENJ_20190616 135788561.20490697 15400.357556837911 0.15599649948140176 1.7691853696943744e-05 8168365.876496055 926.3895953466897 46349 12586 19875 ADX_20210624 49620454.15904334 1471.788630664671 0.40328590254040286 1.1955873499048082e-05 1892091.3430867183 56.09321973341844 58756 3862 12658 DCR_20200105 188919390.7926604 25707.837859253712 17.316389472236224 0.002354919497827382 14407462.952864418 1959.323880784982 40899 9709 113234 DASH_20190916 802851409.6945729 77926.88721801426 88.78168423202332 0.008617385746144757 304147102.7837582 29521.324481864376 319071 30637 76311 PPT_20200701 11575724.501676364 1266.426622153761 0.3195339561002788 3.495818414034487e-05 4972285.1998704 543.9861970751887 23669 None 1105002 BQX_20210703 525030823.9286111 15535.032072936803 2.357045900070473 6.961569217951556e-05 1980564.0438588413 58.496246006482615 89207 6094 22386 FIRO_20210814 91590012.90631644 1921.623920475339 7.523395244660262 0.000157682420209963 11707415.21730881 245.37506083818226 73956 1127 285212 SUSHI_20210610 1798608982.318564 47917.39975461222 10.48435920035374 0.00027992888543573404 388118456.9085276 10362.633040632129 102141 None 7231 CELR_20211011 861751900.4325043 15748.9943720369 0.1527879451931159 2.7914797143139483e-06 361997572.9105466 6613.799800327477 79222 None 85424 BLZ_20190703 10580159.650635798 979.1814769529691 0.051084398251254916 4.723407690125395e-06 473016.53828699864 43.7364446090234 36575 None 875271 OST_20200612 5584113.745173556 601.8014465766448 0.008138788343447414 8.751746223519084e-07 912692.1279148608 98.14298574486685 17643 754 914098 CLOAK_20190224 3344128.99577371 812.7127794505784 0.6360817672994538 0.00015458488046157784 78623.2273531436 19.10754690154062 18057 1380 1179717 GTO_20210620 29773216.22647529 835.1668999317206 0.044857213488690824 1.2602877504084794e-06 30062990.98511395 844.6360425114634 14337 None 252134 OXT_20210131 0.0 0.0 0.2982966733123178 8.729935914614306e-06 19930002.801889952 583.2704914426487 None 1913 149953 REQ_20210430 102103427.1361814 1905.1181258644342 0.132292450245265 2.4684063203982575e-06 1123694.4688542814 20.96668800051761 42798 27562 383830 CKB_20210203 143280005.0666456 4022.7369856816626 0.006018783232700679 1.694729117419369e-07 14051223.700552018 395.64505017093865 22332 618 367403 SXP_20210107 63294212.26821263 1722.9387532830763 0.8269274965688955 2.2404266703347867e-05 72812435.36639328 1972.7354913672789 91633 None 116678 HOT_20190224 245447994.4014429 59667.85030929872 0.001381640154370953 3.359527356940317e-07 13498744.650520677 3282.287489568737 18304 5535 247216 RDN_20190414 16577508.277157743 3267.6299063244146 0.3272114453361873 6.44867327180383e-05 1581616.5496837464 311.7045114271312 25596 4456 1172617 ONE_20201231 35691796.70675894 1235.992219842824 0.004107048805703268 1.424169183441668e-07 3608187.989141018 125.11831208490057 79458 1576 184924 PPT_20190213 45311094.76312431 12465.24004830974 1.2221436837513415 0.00033633571213080604 2714997.7236445425 747.1713064151423 23327 None 591964 ALPHA_20210519 536829167.49444264 12581.368515772096 1.895250265438711 4.430134216026261e-05 76720372.23001175 1793.333325315591 64272 None 38513 KNC_20200610 167782185.7491853 17164.655885404463 0.9354393481532882 9.574874751891918e-05 115321159.65684381 11803.925739675753 107668 7841 97409 OST_20201231 9194609.866949918 318.40555277756806 0.01324729420654065 4.594369517529959e-07 1251932.0108664245 43.41896676458506 None 734 736326 XVG_20210825 459084138.8738059 9553.351657145842 0.02762408212002774 5.752093400385039e-07 47399765.47883885 986.993439296776 325283 54590 161164 ETC_20200412 611967075.6107013 88935.63400239231 5.278073887568233 0.0007669605271351083 1640835774.4884324 238430.96882518262 230773 25371 329004 AKRO_20210523 55385038.73972525 1473.4245046238773 0.020332362291265168 5.41404804614603e-07 16225149.391701054 432.0390179172856 None None 169169 APPC_20200308 4422118.6020317 497.50355568132807 0.041029323664129716 4.6098126787763395e-06 245599.36606774465 27.594095405192572 24930 3234 683942 REP_20210823 196409073.93341422 3981.207174794683 29.721572424588746 0.0006031925449940232 116788692.26962249 2370.1999177660314 153045 11326 187615 MANA_20190708 65846943.48903881 5757.881878836462 0.04884356876976611 4.269183404231742e-06 16067582.289592147 1404.390739345706 45079 6300 154801 FET_20210828 385796048.16790223 7865.148029035983 0.5602907385732455 1.1425543456777926e-05 23524300.22576221 479.7115069297191 72836 3873 152406 BLZ_20190405 15321854.500665773 3127.9944812158533 0.07452639323459705 1.5220329549202426e-05 1532319.8727295909 312.94166302025513 35353 None 1258307 ADX_20211002 59286580.407555 1231.337489956372 0.45557743031148124 9.45823138958209e-06 14350077.944869427 297.9216015339405 94090 3911 9788 MDX_20210727 685230885.7511057 18302.893386481606 1.1812457632191473 3.156266509914613e-05 42609315.0754188 1138.5129019759624 None None 11841 BCH_20210823 12658228960.063343 256581.99464390703 671.6522382191405 0.013631029244844575 2384715114.5134788 48397.250268598546 None 609166 398111 ADX_20190923 7178167.025876372 714.0987965984821 0.07808671595612413 7.773572675343187e-06 231283.35398207235 23.024376665897666 53547 3841 407203 HC_20200725 57130372.45496586 5987.888230285647 1.2763246740777372 0.00013380433486597358 17912838.335682537 1877.9041632174324 12722 847 542975 HOT_20190305 180556550.75216916 48602.449651546056 0.0010165360127133345 2.7363250001766907e-07 9150784.792147158 2463.2202779666927 18736 5627 225640 LOOM_20210401 174132691.87550777 2960.5793797131955 0.2095312898901542 3.565784286171763e-06 45812326.29364569 779.6299698078237 29560 None 227583 LUNA_20210120 442322483.5800468 12214.354838384754 0.9075721482347612 2.5181039366410266e-05 73665038.49560136 2043.8730274984634 18561 None 163077 QTUM_20210112 298078654.7404728 8414.831167983933 2.9050426321455594 8.172461653155147e-05 532319453.55133146 14975.203025381214 189041 15037 249496 ADX_20191216 7111356.643541978 999.2715887958286 0.07716261869400913 1.085238399699212e-05 228856.16169104137 32.18702253480839 53012 3808 261855 TCT_20210401 31627015.595305424 537.6978610160888 0.054606472915946835 9.290758432673708e-07 7785618.058589009 132.46469286297486 None None 419712 ENG_20200901 68400911.47421937 5867.1339954803325 0.8269177753412075 7.092942603549913e-05 3389898.422428314 290.7708076806924 947 3593 461818 AST_20201228 14682993.303034583 553.0384252139032 0.08427033220852707 3.204401081346565e-06 5796290.152274319 220.40542555102044 34428 3471 210501 NEBL_20201208 7608102.84828611 396.10973728127703 0.4426957418488265 2.3054565252477373e-05 121499.63542777563 6.32741860453314 None 5897 1009266 CELR_20210527 257891039.13288784 6582.299700133717 0.046612929714888084 1.1898355022430329e-06 106157375.829782 2709.759188272775 54057 None 130545 EVX_20200506 3691156.1882665455 411.6360267593991 0.1697629476742771 1.8866430524019743e-05 268718.5888974339 29.86376389784049 16674 2851 1393959 WAVES_20191011 90136339.847668 10526.90325118658 0.9013633984766801 0.00010526903251186578 18993468.93133191 2218.2219755367846 141935 56900 24707 POLS_20211207 313273194.9207186 6206.582674564455 3.831317166580921 7.59142028040569e-05 88063936.9317923 1744.909981944863 597263 None 8577 ARK_20190902 29386710.687177066 3021.220701565331 0.20590198339975677 2.1163378567139544e-05 353998.4952276273 36.38529383252588 63289 21781 99618 SC_20200417 59048583.490463115 8329.765353295774 0.001341502414771181 1.892407857290661e-07 2414218.1820376543 340.56483287667504 107081 30096 175217 DASH_20190225 689314588.4472264 183423.07272009755 79.26160769522322 0.021158355551939213 1025933283.8385178 273866.0219395491 320483 23246 89364 THETA_20211120 6361376697.859049 109431.6558926176 6.383306295044946 0.0001094324258049199 203952302.83218548 3496.463151823194 217985 25956 31742 POA_20190513 5863602.834404133 843.953379387951 0.026671940995635333 3.832981291506512e-06 220133.11186610608 31.63497173160254 17416 None 629300 BQX_20200106 3872649.1072760657 527.4098432939528 0.027694787383603932 3.7710813557922587e-06 2667677.7517453143 363.2463283984039 9262 4 319214 ANKR_20190729 17818759.84413732 1868.8094091231792 0.006790198496051488 7.12285343385176e-07 9120599.37432301 956.7421719697879 9483 None 1349736 STORM_20190723 14474546.379703628 1400.026941969362 0.002338555274524563 2.2620080971782424e-07 398010.47607256786 38.49825272233304 26697 2569 3721557 LEND_20200308 33509212.57438815 3769.9016928628425 0.029869063442613895 3.355911700813969e-06 886355.9176488047 99.58572021644277 43952 5749 155774 EOS_20200407 2572776132.1911163 353080.55990801915 2.751985771787181 0.00037767478678138645 3467004981.410157 475802.01196815836 None 70828 93233 SNM_20200410 3126900.9782738634 428.84945823999993 0.007145544665684189 9.8e-07 50945.188631635196 6.98705098 29939 9683 7470249 OCEAN_20210110 196036015.7020188 4844.502451848992 0.4616960476029373 1.1461220649769224e-05 51304960.48326868 1273.6030026233475 None 1362 63800 PERP_20211021 904049745.2831403 13639.337188223932 16.188488515888142 0.0002451366270716282 29412050.44049101 445.3764063992977 None None 109427 DODO_20211207 254763730.07168493 5047.390516671876 0.9753804705480043 1.931172074305174e-05 56290272.16901171 1114.5004944250938 124334 1234 17689 IOST_20210401 993740782.7507899 16894.806014161753 0.05345005559040666 9.096081469225712e-07 403114494.0444944 6860.165511058034 231386 52865 138939 CHR_20210702 61908762.4102921 1842.7878899042003 0.1379499759297864 4.101337687110891e-06 17082674.90236932 507.8784385537743 67782 None 101399 OM_20211111 84907578.94750771 1309.049774942437 0.22427435030500806 3.453352292685885e-06 9928429.514050253 152.87688841138973 None None 97672 STMX_20220105 208029201.13431412 4491.713855861993 0.022169150637502997 4.825871988916051e-07 2918742.52465148 63.53638902496176 81897 5801 87861 FTT_20210112 779807481.6852776 21947.653996572644 8.614865553437653 0.00024235327083843198 98359740.7556859 2767.0547779411977 47007 None 5141 LINK_20200127 934829742.3887025 108914.65308485866 2.569023968046347 0.0002989418055492893 114466697.8815793 13319.79840032656 40520 12342 122802 WTC_20190805 52192761.78399925 4766.062262313789 1.7888107395777584 0.00016333038319486378 4792352.064023857 437.57379229871725 56096 20022 698794 ZIL_20210220 1711816146.689747 30653.27878785002 0.1467144320649428 2.6229993396548907e-06 277291597.7203881 4957.492371237713 143972 19716 35455 DCR_20200905 168036167.12023613 16025.953797319422 14.046188029688352 0.0013396137525035108 5221465.74018113 497.98189366312795 40828 9910 216074 QSP_20210430 61770704.195631996 1152.5615888833124 0.08653759559048849 1.6146798060781678e-06 3497023.246267638 65.24993881104434 64054 8414 217402 GXS_20200223 31930636.382281467 3309.2214288546093 0.49184496783813697 5.094143769778946e-05 4939048.472636882 511.547838257023 None None 811785 CND_20200713 14891632.231058568 1604.7330516570796 0.007807148659708452 8.409494954019069e-07 172813.8411601545 18.61469774132933 34284 5932 376483 OST_20190520 13780040.617844066 1683.9048260325994 0.022079746603802092 2.6979092067823143e-06 1213332.3893723912 148.256258684204 18137 750 1111162 YFII_20210909 185719192.7731598 4008.7441855702814 4666.552972889475 0.10079617326557243 146024757.77054358 3154.0918684116605 None None 485784 BCD_20200314 73364053.59080085 13325.562991253777 0.3947363433550064 7.095670354310835e-05 6414937.817152072 1153.131320694647 29129 None 1280057 AAVE_20210727 3931892475.4244957 104962.81075903597 303.75006503457365 0.008116144730460694 690338299.0395136 18445.70978889177 None 12130 14216 GAS_20190904 20001050.494871654 1884.7110707583968 1.4352984325110674 0.00013524903835872951 1022066.0416731075 96.30990053654578 323969 98203 210014 DNT_20200109 3958189.5314813643 491.8229439649581 0.005269149787477538 6.566503729770517e-07 236634.2712492315 29.489763764971183 59400 6157 582264 PIVX_20200718 27544229.799055275 3009.2826500972733 0.4326785563501093 4.726339644418239e-05 843345.8707530552 92.12240737142734 63864 8482 353299 RVN_20191113 137172841.1995272 15586.06575352655 0.02833918860000982 3.2196221394468535e-06 10819202.272771036 1229.1722130871196 28570 7159 254605 EOS_20210108 3029527079.1539335 77482.73135842897 3.2152233950388194 8.154318799877637e-05 4599380895.195746 116647.62753146082 192320 73928 95839 NKN_20200629 15165600.466450285 1663.3713300113097 0.02349484656837617 2.5750085776683386e-06 2442714.7761914544 267.71877327160263 12898 1009 255975 ONE_20200725 51225811.643375956 5372.37348523267 0.007476084699285112 7.837602460458264e-07 8739002.881842937 916.1591025745545 76086 1341 140564 AAVE_20210806 4839913387.585159 118128.9723662132 373.6787097016758 0.009132848863381234 693554068.8852975 16950.723509962154 263583 12296 14216 AVA_20200913 35163387.80950677 3370.7944497057833 0.9143976417175199 8.757029197024607e-05 940262.0634924399 90.04728322999719 None 8937 60068 AION_20211028 81182896.4117857 1387.049216689363 0.1632199776172603 2.78922606926464e-06 4879158.05863732 83.37873250495241 741 73820 558670 QUICK_20211204 114704838.241156 2136.5041184169727 317.56229365184225 0.005909244794124861 11079209.36524906 206.16351995616594 62665 4138 5061 TCT_20200207 5808023.134698401 596.3442096161917 0.010054301640540308 1.0325299352265524e-06 2905144.427445085 298.34479755398064 None None 450826 PPT_20210508 187014101.12368715 3263.646053547216 5.165043221961438 9.012492056127592e-05 14671062.906432286 255.99560781401783 24397 None 645855 SNX_20211007 1798694971.1049795 32403.541182733035 10.264092298772006 0.0001850226180461872 100788732.21348311 1816.838212369329 159725 7917 46241 CITY_20211225 42191938.32524658 829.2955104365225 11.075112384325335 0.0002178864923354652 1807443.8697988081 35.5587908472219 273929 None 37465 KNC_20200730 277023790.2079118 24976.848175741165 1.4198675417948798 0.00012801722189439854 80667619.5145198 7273.1041756394025 116837 8702 73639 BOND_20210823 115260652.50752887 2336.3606055383843 28.56445617332979 0.000579709134140787 9364745.632838976 190.05538034120238 None None 141217 IRIS_20210813 102682240.01944478 2309.6551182063577 0.09572617314924077 2.153185025677283e-06 9043911.787435617 203.4262395916857 26886 None 796801 DGB_20200927 331721008.0069583 30901.02124607028 0.02441197492617043 2.2740644627376255e-06 8895914.54708952 828.686871761443 166181 23100 151088 STORJ_20190324 36158905.656013384 9033.91166167239 0.26634266394424794 6.650474317554819e-05 1254993.995516374 313.367194435445 83446 7654 210414 ETC_20210825 8219687618.036667 171048.31048971837 63.57919296964389 0.001323893603752899 2858960345.1529922 59531.41487873822 501000 59393 245929 ELF_20190905 38382348.70130802 3637.2798328554386 0.08323724867474842 7.882549566298368e-06 13452034.270302385 1273.9047552802035 85491 33566 1052488 ELF_20200319 22603898.945098694 4200.096351497182 0.049045669150423604 9.103166834829764e-06 27618363.81084357 5126.1319873940865 83048 33433 652715 CTK_20210124 25664225.9114302 801.5953178324265 1.0065567331793162 3.1408460663732036e-05 11340392.003702063 353.8640639107662 11573 None 186270 ALPHA_20210114 79958083.86271818 2146.017745973915 0.45965932575109403 1.2298328250632828e-05 54816942.25549001 1466.6443424212343 22260 None 85584 FXS_20210805 97802603.03170595 2453.2082325060614 3.0112744271151004 7.571089116770797e-05 2799713.9121761643 70.3917362684744 13161 None 100208 MDT_20210314 43449735.75639826 707.4491070605138 0.0715919572582494 1.1668045504593855e-06 50762949.64638871 827.3337244921041 24149 105 673116 CTSI_20210725 141293313.71124196 4135.540734412906 0.37149741448098117 1.0873428118863161e-05 8530812.570027953 249.6899673051212 47690 3928 130586 QTUM_20210420 1910977758.0753374 34139.54947004277 18.352858922767496 0.0003281381572700291 2433791450.591174 43514.73768404645 230555 16128 88405 CDT_20200605 3213325.7030646764 329.2233461968389 0.004770278689423536 4.880011945867744e-07 112235.28993418996 11.481709796979695 18911 290 294678 ETH_20211011 404765054558.19244 7396313.424890365 3431.0193069150096 0.06268570980889326 18106607784.26291 330812.9333169819 1660566 1119849 4065 THETA_20190603 104088044.05122127 11901.469717125281 0.14016133326706 1.602755664228093e-05 13151519.077203639 1503.88635744704 None 3996 222751 POA_20201224 4629068.058051246 197.95684172431848 0.016336039935546026 7.000288178143183e-07 415115.25985738804 17.788438676765388 18092 None 194086 STORJ_20190421 38797025.33425704 7306.462809073856 0.28607320235328826 5.386136952448208e-05 3985624.0863006697 750.4064341993377 84002 7682 192994 BCH_20200414 4118511750.6883516 601132.5660971975 223.84736382785402 0.032690775282021474 3744031379.4543557 546780.1200853328 2882 291663 142295 RSR_20200907 126668626.96432792 12302.138544155428 0.0184786246922976 1.7994284276778267e-06 54394372.288918555 5296.864968699192 43498 None 120167 POLY_20200305 16082124.440995347 1837.0449218690796 0.026605421570185635 3.0380305716047354e-06 7527983.456121062 859.6084005622049 34976 5000 364083 DOCK_20210218 26691684.67139082 511.55917535661314 0.04709551663138234 9.033548568008976e-07 13322403.992073514 255.54148698909881 44019 14830 226889 TNB_20190201 6770601.862869395 1975.6300237253663 0.0027149236460030767 7.924854194785742e-07 268207.52794252866 78.28969908666278 15111 1514 1690668 TNB_20210115 7765364.78910082 199.07080526573242 0.002274791767631929 5.7987090341900585e-08 435720.343827757 11.107018805350407 15780 1412 3447610 ADX_20190901 7164785.19078827 746.591036167981 0.07783971294575041 8.111119928327153e-06 68846.37645372268 7.173988635288123 53757 3839 517237 XRP_20191011 11716210076.409117 1368320.592486616 0.27140043712616724 3.169649609453079e-05 1698702163.3727648 198389.16641864367 939150 206147 28793 AUCTION_20210519 178518654.13068917 4183.843037144796 40.879360174037956 0.0009555073361289401 7453482.008260427 174.21644341490742 None None 32294 NXS_20200329 8174411.299231454 1311.2689824688264 0.13726480691215603 2.1960088092789448e-05 64029.18642002409 10.243605815095822 23612 3531 599319 LOOM_20190105 27723191.84139498 7276.101869397174 0.04848145229998644 1.2724646825983256e-05 1248055.4541167873 327.56990806735195 16558 None 352119 BURGER_20210813 0.0 0.0 5.051607618593626 0.00011362666574997566 14786718.864886304 332.60017183738745 64908 None 48793 MFT_20190930 7579968.180001799 940.3667330333458 0.0008384598097880184 1.0413205605988769e-07 185576.08147764325 23.047519623737102 18705 2275 975011 AVA_20210111 37250318.96413349 966.5655590590676 0.9671784306691951 2.5158362292661e-05 3459857.0986177353 89.9982212254605 42023 9048 96594 ETH_20200526 22639118588.39778 2547372.4134745607 203.81011834234977 0.022932883673234514 9317131818.625378 1048371.4052205103 458517 462696 19199 PPT_20210711 72069298.62903503 2137.190469467138 1.987795503487342 5.8998919220629864e-05 2244407.3161087725 66.61530610617731 24477 None 723163 XRP_20190312 12819357214.261234 3315486.5444532703 0.30884485565370556 7.997659011940359e-05 591542610.7429271 153182.28570591818 913770 197738 32700 SNM_20210731 66282048.92740252 1601.62144608 0.1520748382807101 3.66e-06 281276.4803227143 6.76950855 32357 9709 None OMG_20200330 65694643.808593795 11109.794716103856 0.4672022813871768 7.915080495390288e-05 137217702.6840211 23246.657933943225 None 42960 453059 BQX_20200523 4296463.580523259 469.35460891475236 0.03050709392742694 3.332658329595161e-06 833352.1516992396 91.03712062687332 11430 23 379386 AE_20190916 68031585.75330435 6602.494905715839 0.20676114160241912 2.0066258474118506e-05 57187914.000496864 5550.111858717868 24942 6344 366959 CMT_20191118 15921899.232102128 1871.8133308449849 0.019920330915744668 2.3409266732914793e-06 4723462.287768028 555.0750590685768 289815 1645 892469 MTH_20190124 5178799.341272582 1457.7425007902323 0.01739147601308755 4.8953998919606305e-06 659074.1262685526 185.51797467340572 18713 2021 785552 DLT_20200806 3778028.9045003275 323.01825252706766 0.046159041767324854 3.938777626012636e-06 299123.27801343915 25.5243616364 None 2560 5788562 ONG_20200325 0.0 0.0 0.08247230365316036 1.2205003547530993e-05 5515797.887447239 816.2780691427647 84329 16533 298289 KAVA_20211202 733000698.6443462 12824.327735525732 5.165837069414321 9.03368044627867e-05 50391679.51030244 881.216971674586 None None 43021 POND_20211207 63739461.50954227 1262.8090877398886 0.07959334456280232 1.5758819144069429e-06 31473624.066052638 623.151536337314 None 783 1462583 REQ_20190421 20561172.655547507 3872.1019482744455 0.02817328050750328 5.305742501240659e-06 335091.19364700397 63.10616143728345 42161 30359 359801 ETH_20190225 14284713525.163023 3792384.33723172 134.31602869596247 0.0358010676847921 6907323014.255601 1841102.2210450482 439830 430267 29840 QI_20211225 170921103.17110658 3362.6832812251273 0.14754239271017885 2.9020721174792323e-06 11657472.503974551 229.29563017539016 52150 None 875386 CVC_20190614 31062141.66135075 3777.838894971053 0.0906516197730398 1.1018662397193948e-05 6135124.190793103 745.7215038457781 88719 8176 415629 PHA_20211230 73071226.67926328 1575.5107138504447 0.4051940951810832 8.69968507044965e-06 10760211.562531307 231.02619953925623 None None 134566 IRIS_20210304 100405936.78704828 1975.2124149019708 0.10482216018867223 2.068790642617954e-06 11116487.477948226 219.3971697565171 18464 None 707798 FTM_20210603 901434346.4277102 23955.853918231645 0.3519821531272984 9.347868043125142e-06 129234197.83068122 3432.17466353593 93353 8167 47008 MANA_20190801 53548784.9382383 5321.0312633915255 0.0403813043053239 4.005330494034817e-06 13886456.576672314 1377.3663069447462 45576 6343 132863 ZEC_20200223 551966319.9607372 57180.78425270558 60.69786663514465 0.006288087959730736 282922758.25503045 29309.81413912138 198 15534 158191 KNC_20210318 549585516.5935547 9343.05324721693 2.7475524213124736 4.6624583386186655e-05 405780187.21814585 6885.885790079787 None 10091 96542 ARK_20191203 25844576.102840275 3537.424414838006 0.1810378504051565 2.4779191946685154e-05 789732.8715773678 108.09309968952807 62777 21696 104314 AST_20190613 8575067.557547614 1054.9655996166312 0.04978125946735079 6.119175742439692e-06 1536606.0011630007 188.88156444034377 31760 3592 396492 STORM_20200127 7266418.172634778 846.5920354863468 0.0010216182260167539 1.1887954369680705e-07 735822.2596696712 85.62319293435301 25832 2522 2384795 NEO_20200901 1442092297.2431192 123696.43268517562 20.44650924774024 0.0017538130254526531 760477333.1352447 65230.45260459282 321485 100338 111243 JUV_20210318 0.0 0.0 14.815345696674779 0.0002514089687503859 5603139.169897335 95.08245499698008 None None 48576 THETA_20210324 13178116548.28795 241592.6083944754 13.039007423079346 0.0002391954071660729 2577470830.272474 47282.67763805756 112554 9555 29341 SUSD_20210212 294910284.78438354 6184.7484428486605 1.0096914412076747 2.1147065342455096e-05 35713271.17788397 747.9818570000076 77733 4467 30058 AAVE_20201228 938353155.5447639 35443.40961718524 77.59187108584612 0.0029475014194981796 906177422.9035861 34423.183807108166 None 1832 22662 TVK_20210418 125925626.83799048 2089.1295520781614 0.5731159628305275 9.534423933388692e-06 19772669.024179716 328.94042566889505 44147 None 68295 ADA_20190930 1161234042.780787 144218.82483797363 0.03732373212854544 4.6354004342277835e-06 63808867.8533511 7924.70733463422 154337 75383 108471 STORJ_20200927 57338568.20189465 5340.012767522346 0.39989180501527144 3.723009978903245e-05 24753843.01629966 2304.5934777875377 82348 8363 106972 FOR_20210821 54511167.105200924 1109.4821839361332 0.09670790839226555 1.967116456366666e-06 406147173.08561236 8261.359398270326 30702 None 189593 POWR_20200418 25022996.657429297 3534.6585225460462 0.05812156264148854 8.255987297318185e-06 955441.8058114483 135.7175384420126 82151 12780 208594 QLC_20190625 8463500.641988141 766.2773630148058 0.03526219173380863 3.19285304159202e-06 671930.4503284387 60.84066464911514 24967 5790 940522 OCEAN_20201018 119970967.08806159 10558.154221375036 0.34735128486016487 3.0566821206307876e-05 3066372.842406309 269.8399991911498 None 1059 105472 SNT_20200305 58385492.99118382 6669.316221485395 0.01613038178715309 1.8419025186935005e-06 22546839.472981684 2574.587567849045 110597 5616 203342 MDA_20200331 6157571.398278861 958.3837869506643 0.31190351181267034 4.8650861391125844e-05 156427.41715730334 24.399624568711364 None 374 1847806 FET_20200207 15976557.848227523 1640.4233869307207 0.04690616177726971 4.816842525527482e-06 11171363.693329886 1147.1989535549958 16454 346 466224 DASH_20200713 680387700.4208547 73319.07032522034 72.09619618123129 0.007759626193763234 317150281.979827 34134.50037258306 316690 35128 73217 ENG_20191113 22709422.32483749 2583.7090495333077 0.2890248705688743 3.2836186147333335e-05 751812.1506529936 85.41356208577872 61053 3469 400437 LUN_20191022 2648349.88211717 322.73653450720843 0.9723104859818934 0.00011832262616411929 340571.75345941784 41.44493435750905 30613 2181 2505082 FOR_20210217 24396813.332853664 496.0756700983571 0.04336203226552025 8.815408328556698e-07 5732985.554121517 116.55036897678877 19614 None 211911 XMR_20210722 3537766234.9273815 109936.48045339258 197.78076865767682 0.0061241214482049625 185235433.08394098 5735.665284425855 430314 229167 33010 GXS_20210110 24368111.577062078 602.4537081491826 0.3471036163223555 8.616558785066033e-06 11584027.157149017 287.56384628006316 None None 482061 LINK_20200518 1434813398.8159153 148377.2467885875 3.7776814154332334 0.000391078527458762 279820845.72681224 28968.01298596463 55208 15332 76484 ETH_20210704 259079167729.78622 7477405.077695968 2228.532398568573 0.06427372768723234 19954299562.699074 575507.5479747015 1411108 1031051 3687 GAS_20190806 28050792.355161548 2375.0632411412644 2.013333788216923 0.00017045156584955716 1164310.4731374243 98.57210187540457 324430 98219 192021 SAND_20210620 175356464.7088248 4930.469481962472 0.25000443724541394 7.024010305223179e-06 21257939.24952359 597.2533367873295 130314 None 23111 YOYO_20190826 2691333.4188118502 266.5420093999447 0.015498957490298722 1.53445908573968e-06 1271357.0426603025 125.8694571264116 7557 None 968977 MLN_20211028 187695838.2706574 3207.3214386165373 129.10902874184399 0.002206312450235916 17848270.574861072 305.0047077902982 29668 525 118839 APPC_20210106 2848108.56620643 83.84106045497138 0.025919135183106658 7.599463832506787e-07 116936.4966392442 3.4285660792 24254 3127 538163 DOCK_20201201 6509828.384718483 331.1128105303072 0.011665214511534537 5.942150952156348e-07 2435024.056306307 124.03784345668863 42987 14887 301335 WAVES_20200301 112839863.5317003 13158.02076033257 1.1267153604441509 0.00013173476508064692 58592140.14381442 6850.55169069059 141299 56868 51296 NXS_20210724 29243332.46569258 874.2679816432899 0.42900824600662846 1.2825767165372205e-05 122177.19651501125 3.652648381484134 25982 3959 406501 DLT_20190716 5381354.66417599 492.1487868472832 0.06743825880839342 6.174130667327242e-06 685652.9886576508 62.7731382633043 15090 2674 2867435 ADX_20210314 115522894.16794705 1880.9451174193991 1.0003215479331167 1.630322425521402e-05 13616699.122494634 221.9247399683617 54610 3788 10289 LUN_20190509 6065635.834894197 1018.2767297537016 2.243742901376732 0.00037667134101232013 869381.31070008 145.94855050082415 31712 2235 1641403 NANO_20201129 156637738.97452664 8848.722938898476 1.1751891802481325 6.634126211018565e-05 16422762.667430671 927.0905663574512 98557 53226 313412 PPT_20210310 97558603.29732239 1781.7822875291604 2.692987938568916 4.918395761415597e-05 8742184.856310366 159.66475128603022 23974 None 679959 WAVES_20190302 268546759.0931298 70240.42721641234 2.685036853123541 0.0007027006571313002 13697517.856474742 3584.7756754680395 136792 56730 38107 DOGE_20210120 1158893557.1417313 32154.07650028131 0.009053031022923328 2.511808356139618e-07 325744395.5779781 9037.939809403259 191914 186588 60672 CHZ_20200403 30929499.91220102 4560.730170970911 0.006508881886988961 9.547866617045116e-07 1585745.3693757227 232.61269044782742 19916 None 262392 ONE_20210804 769381890.5358484 20010.852525259703 0.07378826268625431 1.920455592938391e-06 22015397.92519406 572.9853575218983 197271 26748 28462 BTS_20190830 88625429.16473414 9330.229637574374 0.03265378994346916 3.4429194786539084e-06 14357207.522167388 1513.7816934181872 13611 7161 133964 XEM_20200331 330686269.9846601 51469.05154994609 0.0367339323486539 5.729776624377067e-06 29412353.933451053 4587.753264100741 211245 18001 204170 NXS_20211021 48923599.97584459 1021.8120047259132 0.6887107696046315 1.0390571093307908e-05 1501646.7181318407 22.65532596613611 26747 4117 825769 BAT_20190626 402349242.3957553 34078.77314989897 0.3260778973834169 2.7580579741429806e-05 56277880.72213207 4760.1404124313285 102950 28139 47977 AR_20210722 362731647.395597 11271.92641221855 8.275926258019297 0.00025716845150366204 14105474.648805121 438.3174716718115 22935 None 89863 BZRX_20210221 84583523.90320788 1508.84984434321 0.6015467150243793 1.073073839260179e-05 100561718.98715794 1793.8781341658473 18917 None 179211 TWT_20210902 364334821.49433506 7489.791412639946 1.0503119927100253 2.1586823079997137e-05 114366377.24544163 2350.546093953968 1858 44858 4771 ACM_20211230 10303315.25661648 222.15288168393 5.172210530811981 0.00011105937521415428 2479119.7107866877 53.2324592204565 None None 37465 IOTX_20201115 45728669.42933832 2841.026974921957 0.007889141103545175 4.904333763799808e-07 1059911.0763190442 65.89003302122416 None 1959 414237 TFUEL_20200106 0.0 0.0 0.002402958365733082 3.272006159948303e-07 241799.55923726235 32.92481711624417 None 4014 523233 STRAX_20210106 44124612.727284566 1298.9161884892596 0.44150127124169547 1.2952261054625497e-05 950394.8238365174 27.88160004313221 143557 10292 230712 STORJ_20210204 67146337.57330662 1792.2927410899601 0.4733758694034294 1.2620001830605711e-05 28616177.175321553 762.8952628967257 83870 8701 105291 POLY_20210825 290371984.8664094 6042.521289490182 0.3338482014949046 6.9516374452022036e-06 23041755.193635892 479.79269467385876 48838 5976 188790 DODO_20210401 443386417.30096436 7538.053795289269 4.048006649677991 6.888860613280102e-05 76563267.09385397 1302.9466617819196 62044 780 31780 ATOM_20210826 5583311948.884106 113908.08538055899 20.0591318867293 0.00040928024091179457 489572473.27585983 9989.083323126719 None 34465 61182 SXP_20210511 387717426.4837384 6944.175357901665 4.470911326875503 8.00157342135106e-05 540802026.1627507 9678.713806611722 231407 None 60637 ALGO_20200422 131458083.73616403 19206.351794339862 0.1792094409239836 2.618339359176777e-05 61500926.31215805 8985.592229890352 16891 845 305108 DASH_20210120 1241260526.025508 34327.58524808277 125.02326840432724 0.003457571407579974 824287615.3732817 22796.02290767095 330822 36031 74042 HIVE_20210310 121170345.87474309 2217.0389312301795 0.3188204986613458 5.82848327024899e-06 13160719.716430148 240.59630736958383 12017 137 125647 AMB_20200518 1333526.164617804 137.10620851099407 0.00945190908417503 9.669618008132858e-07 1710914.1747322197 175.0322222423747 18876 5457 931435 LTO_20210702 46586458.508405216 1386.473098899075 0.16487684069157277 4.901889948892092e-06 3511576.8827635334 104.40134196033392 10783 4283 318165 DASH_20210420 2977234819.419459 53208.21809506119 295.2261525947017 0.005275538539410119 2143611304.5027428 38305.224489865774 395733 39554 49097 TNT_20190201 5862778.222349372 1708.6581417775194 0.013682694296529364 3.987707896248736e-06 322952.0902176601 94.12171114556433 17021 2515 1261592 CND_20210108 18836168.926281348 481.7510385629688 0.009481463214343048 2.401985478334925e-07 365174.0154247863 9.251132048782265 34013 5902 513668 SOL_20210420 8636876765.15214 154355.58511639043 31.72514830005086 0.0005669119793570191 1138689654.5289679 20347.794746836298 158327 8401 23689 POLS_20210710 86002589.55068822 2530.4854825337943 1.192443556517529 3.508738406093279e-05 8828532.51961593 259.7775882280472 380695 None 15425 APPC_20190324 7867070.655860075 1964.3774142823172 0.07533767586631061 1.8811529143451325e-05 354051.4649653274 88.40529489250162 25477 3415 1389484 ATOM_20200323 364853589.0153491 62596.37634252769 1.9274202641930542 0.00033043455355341437 124882784.11566941 21409.750526331194 None 8312 84919 BNT_20210610 885048078.099219 23578.69483795841 4.27783813008608 0.00011421684787269383 36134263.56523376 964.7727564995735 None 7421 32451 ENG_20190520 36565492.29149783 4468.260337068897 0.471404641488427 5.762212166835151e-05 1172098.7203248714 143.27142570474018 61919 3413 370110 QKC_20200318 7630971.300190383 1405.2232997592998 0.0020433495139721646 3.791424951065427e-07 1877115.4679637805 348.2978498100293 50304 9197 585547 VIB_20190810 3208818.1253851578 270.0870175847594 0.01757645562571168 1.479414629986087e-06 291698.5352664541 24.55233807135853 32477 1120 2890790 BAT_20200331 203657484.7930788 31697.891732346732 0.14060479665742084 2.1931604531647778e-05 77404158.58205898 12073.538282358963 114127 36258 18636 ZEC_20190723 513493510.4933616 49617.363875736155 73.01403083295914 0.007062099543780128 281326504.6753149 27210.602642471313 85 15357 211514 MTH_20190513 6288592.910202638 904.3023666447317 0.018412247001414278 2.6476890421087496e-06 273309.00480020075 39.30195250278553 19466 2003 1355649 DIA_20210304 57108942.85190717 1123.2470124762392 2.2199693995290692 4.3813852231476655e-05 31328474.41914983 618.3063375240246 26585 259 245646 ATM_20211120 28841703.087913513 645.7254437455765 10.731729181863153 0.00018397975957449553 3684052.169685987 63.157672072475286 5169411 None 72064 STORJ_20190616 41610428.45733985 4718.578344608189 0.28884176390139715 3.274580037515004e-05 4696430.949398167 532.4312809458123 83723 7736 209007 VIDT_20201111 16958506.94435641 1108.7194810140911 0.3678855513542265 2.4084715755804017e-05 1443599.5806065898 94.50951644097006 22131 1080 None FUN_20210731 165326101.560035 3962.6139541120315 0.015616819600973051 3.738636524212665e-07 15140085.306918941 362.4507252719743 5101 350 131695 COTI_20200927 23957113.425421204 2231.6609126643934 0.04223325712096692 3.933113366959058e-06 5706212.94289288 531.4101712809817 30987 1186 142046 GTO_20210729 20843892.108987138 521.2931773774352 0.03139702528312673 7.844255653392028e-07 5049192.339030424 126.14938897344726 None None 367259 ASR_20210203 0.0 0.0 3.828957730007888 0.00010777988653789573 1384442.5108489092 38.97014991001939 1938450 None 183417 TROY_20210219 17451685.68737579 337.63827437598394 0.009201309448258574 1.779734962748262e-07 7047371.366576973 136.3116118102278 10995 None 643459 MITH_20210702 22637387.409031913 673.8287401057579 0.036609833237822825 1.0883571666352451e-06 4472004.956870401 132.94621181201774 32410 2738 334204 SNM_20200325 2751819.5966297123 407.1737580370293 0.006285741886394666 9.302214031142954e-07 72764.89558393342 10.768412781005152 30082 9693 None AKRO_20210325 131807518.880223 2493.5501666800665 0.04815087363820766 9.139304951838683e-07 42231619.84097758 801.5797495947204 35460 None 146874 HBAR_20210325 2395422511.421393 45319.16061652069 0.3085603803114623 5.8488273469063495e-06 176487525.48533726 3345.358417060929 70384 12852 57776 CTK_20210420 83092023.5833618 1484.981305226077 2.1885942352110987 3.9135131579805933e-05 14328023.102364106 256.20512946998326 None None 202878 OAX_20200309 2240710.7042624634 277.3672943439968 0.04222793369724682 5.249245366283132e-06 274967.31667429185 34.18047691559055 12063 None None JUV_20210314 0.0 0.0 17.380324506753656 0.0002833177870622363 39065468.93405107 636.8087203805142 2354287 None 69992 TCT_20200518 3180777.2243149276 328.66525122753563 0.005514250434828078 5.66250959126665e-07 592456.1532247076 60.8385253751074 None None 997352 GRS_20210427 106840175.43446848 1982.0381803871019 1.3799188681611743 2.5599470156332476e-05 9029621.464471623 167.51240274781267 41485 106846 7053372 BTS_20200208 86700031.90379517 8851.476247618008 0.03196931001470812 3.2609678369880516e-06 18586136.68943854 1895.8430422876934 13383 7053 159593 ANKR_20210206 111295823.56872533 2936.487329862702 0.01725215955066716 4.538674078673439e-07 75796367.54363424 1994.0402685100023 34952 None 5358 ALGO_20211104 11960495599.914976 190164.10674884162 1.927826992117553 3.057423107236129e-05 435802535.9777783 6911.578420359186 174736 51996 85053 OMG_20200217 167387643.41167784 16791.441037358767 1.1889153436807982 0.00011950776081878264 176571136.90555292 17748.632237750593 None 42946 404229 RLC_20190426 32624539.177725863 6280.75027333154 0.4643444182548297 8.92433593107432e-05 468606.96140641556 90.06258670984539 24797 3315 960914 ARPA_20200625 0.0 0.0 0.012688769574324337 1.3651300839168628e-06 2742694.1781389546 295.07465728886433 18041 None 1098211 HC_20200414 45428830.50529838 6629.542802289854 1.004495363027798 0.00014669697968758576 22668870.540950783 3310.5726155495863 12672 843 1040016 GRS_20200425 11865266.874108272 1583.0352181530002 0.15839169833047997 2.11322374271552e-05 8601189.471879737 1147.5499031298216 37434 106850 None TVK_20210324 163113774.5716162 2990.3425212114093 0.7444920558790052 1.364221757690102e-05 28560238.96457108 523.3433868450663 39287 None 97211 TNB_20190901 8198252.7262405595 854.0443858339045 0.0028471047094710622 2.9667642483624517e-07 302332.6502153418 31.503923785724854 15588 1465 1259839 AUCTION_20210602 99658297.3609187 2716.073409649691 22.627396226334895 0.0006169799257560414 3603724.7486256245 98.2625577248041 None None 37628 POWR_20190426 46600078.89930907 8977.385756526453 0.11189128656372357 2.1544291542374063e-05 3117186.163916825 600.2037296177801 85270 13224 593546 THETA_20190312 112078096.77659819 28986.986148027605 0.15081855921887635 3.9055059108938574e-05 49365651.51182325 12783.429623853715 None 3914 442380 WING_20210318 44621153.556820735 757.6556167570651 42.62506630035381 0.0007231662520220917 10060853.885020388 170.68993969193434 None None 324076 EVX_20200407 3468192.211271633 476.84806722437423 0.15943816747323913 2.1885833906458932e-05 714710.6721064383 98.1072431324863 16752 2862 864914 TCT_20200208 6070430.008661287 619.8028320139958 0.01049727142974479 1.0707539353455726e-06 4765875.9741470255 486.1339909937822 None None 450826 KLAY_20211202 3840101154.475042 67185.08704512607 1.5185984073051966 2.65562629124465e-05 46886995.14980075 819.9293271894451 None 1028 32572 COS_20200418 10056803.318375781 1424.0299463821761 0.00504243762268009 7.162625894481619e-07 1272197.8381623086 180.71174817392486 10764 None 147635 POND_20210610 79162260.17530076 2108.990727605885 0.10156235762524796 2.7116809934651856e-06 34462480.60752035 920.1367104522975 18873 567 92382 WAN_20200313 10302087.282254549 2140.6892702140835 0.09986177134028879 2.056917663627876e-05 1345685.1674804622 277.17950057590025 106129 16378 700059 CND_20190719 17690993.23484922 1646.6095403477864 0.009989725145900574 9.362800758194914e-07 688161.793212846 64.49748782025333 36178 6136 486164 ARK_20190803 47466890.38297251 4511.082821232414 0.3324993130533934 3.159954079749034e-05 577970.8542968155 54.92827465535171 63461 21824 143377 ARDR_20201229 67766556.97650631 2499.270657286121 0.06792526233821873 2.5018631527759375e-06 5961257.92369291 219.568552701625 64246 6291 None TVK_20211007 88520626.90185308 1594.8052367691917 0.20290499412763363 3.6572933023703132e-06 9908209.433927085 178.59209506883565 55479 None 78551 NEO_20200208 902041400.6362256 92100.19947689009 12.793005466680292 0.0013049258600221195 586362516.7801571 59810.77812301095 323186 98753 245431 OG_20210527 7868308.368540579 201.19499792300763 6.210718442935649 0.00015843349529642 3891660.1950590783 99.27504086269943 665465 None 231105 BAT_20190903 241951311.34830284 23409.062606968728 0.1816975082856627 1.757943911643583e-05 22628767.83084542 2189.3588421525874 None 29964 30571 ARDR_20190922 61859049.55014551 6191.734362272851 0.06189644992691065 6.198055343547922e-06 1981666.2320124963 198.43588756636416 66831 6528 1028714 REQ_20210420 106918111.06039478 1911.5586525116962 0.14049927958292605 2.5120432132192246e-06 2273777.1544898646 40.653777629784415 42720 27528 383830 XVG_20210508 1112186097.901211 19409.762409583436 0.06820095277543466 1.19013157585427e-06 298816213.0082253 5214.452232790202 310898 53876 113366 IOTX_20200713 29955159.590147264 3227.9896465422457 0.006973747268478475 7.505673405966294e-07 7691759.147098458 827.8452007635021 24858 1874 576006 DEGO_20211230 33824450.6811996 729.2991627504625 6.265205587561192 0.00013464975364877368 6738524.2824787665 144.82216455808896 None None 201352 WAN_20191213 19342542.048732124 2683.8353042046733 0.1817866527849469 2.5251932271542387e-05 1006793.2901703584 139.85336979003137 106681 16609 562021 ADA_20190405 2715051077.9800663 553721.8165661347 0.08718280804784825 1.7789607141718925e-05 341137519.0241108 69608.93530074107 150018 72284 113717 MDA_20190316 19751886.21893499 5033.276649506836 1.111329914726451 0.00028319477176457105 7268671.713034225 1852.240094977556 None 353 1647124 MFT_20190826 10821451.012148133 1071.921642855111 0.0012063548232221987 1.1943397614180504e-07 1676777.999581287 166.00776135016812 18797 2203 880747 QSP_20200530 8000747.726559519 848.3094631950431 0.01114642847314146 1.186878516574333e-06 326935.32141103176 34.8122728483913 54484 8250 544618 SUSHI_20210206 1900908689.8239655 50161.465803471285 15.01994867214776 0.0003934914880453958 781170360.2861241 20465.042470880224 35007 None None KNC_20190608 43594972.26670452 5418.576082687563 0.2622583530214699 3.261420714883535e-05 6893782.999765024 857.3045022327652 96649 6691 215563 TROY_20200422 4174229.0220883354 609.8652041001619 0.0021976411875483134 3.2103636626867247e-07 470342.9536212758 68.70875627294804 8741 None 456905 RUNE_20211204 2999722533.05637 55866.1297840769 10.093044627342996 0.00018821964447542026 90091732.42225254 1680.0712245691338 130061 8792 69693 DOCK_20200713 6443892.489315645 694.3985117603565 0.011465750484634689 1.2350369519949405e-06 7622925.494568934 821.1058387075044 42066 14963 325611 XEM_20201030 871797610.6370964 64720.920739795125 0.0974251515371718 7.245250570652176e-06 25045323.821853735 1862.5544210030796 211861 17818 137750 XRP_20191113 11783537839.590683 1339841.214483745 0.2721772769946853 3.092212692589737e-05 1753771010.5347853 199246.3529120209 942213 207255 26217 AUDIO_20210318 251024760.49040973 4264.916806399236 1.6392633503601477 2.7811333472278608e-05 43519754.62205862 738.3453111178857 None 3312 60815 QLC_20200109 2763053.643896633 343.32190681272454 0.011509363978027138 1.4304733726219882e-06 87777.87190172379 10.909717400592891 24577 5697 940522 OMG_20190804 214612470.27482545 19889.977638441433 1.5304749029765579 0.00014181482334165338 77235202.89456941 7156.665315418037 289414 40910 None CMT_20200208 13639505.172724543 1392.6202791667704 0.017224804825730716 1.7569830099324174e-06 17690671.103104338 1804.5028014497761 287576 1641 908642 AKRO_20210219 120774628.97316238 2336.630285772128 0.04598887619169212 8.896867681857251e-07 31675936.51159265 612.7930038296106 30489 None 165746 XZC_20200713 55266598.298802055 5955.568574798079 5.3120552236697876 0.0005717300639924126 11973980.55930941 1288.745011707249 64316 4126 587407 SRM_20210610 224179509.9504292 5972.398997121665 4.480108889370119 0.00011961740952082112 95273662.878824 2543.7749462217243 90721 None 27102 ETC_20201031 613004066.3666304 45129.60158060402 5.2660636838599455 0.00038801938706556105 469011810.0439848 34558.19868216701 236948 25912 161242 BCH_20211021 12201636385.605303 184070.6847217298 643.8472958865929 0.009749554710306996 8205651185.371461 124255.30972419577 None 651912 339583 PERL_20200430 5271003.446835317 603.9766945837762 0.014942489437027362 1.7040844366183108e-06 3067435.8103480707 349.8191949051636 11655 476 526137 BLZ_20210710 44132416.98101304 1298.5241614586669 0.14907370109999254 4.386761649472597e-06 7734542.006160111 227.60280316713565 64489 None 284185 LUN_20200316 1348052.5536844893 249.51888531104484 0.49583108312530805 9.229976014548024e-05 1968353.7049151044 366.4122339809365 None 2149 2364106 OST_20210602 12078164.703212537 329.416343945908 0.01744982480777176 4.7570651231744843e-07 598938.3843190043 16.3278940067378 None 780 499263 SNX_20210509 2805098371.6803617 47835.22134925055 18.434218462332474 0.0003138140054722937 154956667.72623515 2637.897162452111 None 6346 31416 DOT_20201014 3915494879.7760305 342719.7714416655 4.248906706000911 0.00037199314808010226 155609893.3297254 13623.696187628428 68376 5235 31375 VIB_20190920 4014273.832933733 391.94158485881786 0.02198832523163266 2.1468737306789273e-06 841906.2371250765 82.20118472589846 32248 1118 4575381 CVC_20200129 14978805.597676242 1602.705503748955 0.02223973039382822 2.3841943767021563e-06 4998865.38873541 535.8997855936894 86880 8104 125912 QTUM_20210125 368375932.94279355 11441.07684146748 3.543607835332957 0.00010983878085551226 798469134.4861197 24749.5999439427 190464 15057 257313 ZEN_20211204 1105943094.612688 20597.827444880168 93.79681895105236 0.0017461474620768219 85551344.11599213 1592.6474274501445 128893 8919 2237241 LTC_20190513 5207608546.690098 750471.0970507676 84.46695561794898 0.012150744196028669 6314155363.812181 908304.153717611 443932 202562 206704 DOCK_20201224 7487812.499492196 320.2354618146775 0.013388043622844455 5.742123905976549e-07 5070998.431533923 217.49481956568334 43071 14869 287642 ARDR_20190909 56500400.02690248 5439.699034559569 0.05653793158529167 5.43991957242507e-06 1442420.5814339602 138.78562113249745 66983 6533 930148 CLV_20211202 230302865.816036 4029.299610652469 1.090955693774508 1.9087132146322244e-05 18109628.190466743 316.84225891546305 92598 None 80482 MIR_20211216 296609310.73531246 6213.759998811874 2.319743863453167 4.746828180523649e-05 39061916.11018754 799.3132651338182 82543 None 16589 SUSD_20210427 214686433.42547512 3985.0596120752352 1.0205248702763192 1.8938614397567437e-05 50577937.41487982 938.6111809948849 116658 6143 27259 NAV_20210513 40597272.55536036 787.1015252255323 0.5538053241542259 1.0987374097564172e-05 1356820.978830551 26.919025563002446 51336 14050 483203 XLM_20211120 8669626466.736769 148628.03243735945 0.3568085964855205 6.116960154609718e-06 597707338.899586 10246.815833975972 688951 206925 25362 NEO_20190626 1369092753.8294904 115961.44956334557 19.499682622423435 0.001649337645439791 1015657209.7889078 85907.1249211437 322729 97902 201306 ONT_20210428 1415551885.8128889 25695.29456700226 1.7395013801655657 3.158370951561517e-05 935076487.3437645 16977.9595968681 127137 18559 153956 WRX_20210221 69673940.53849715 1241.1054319413417 0.28236028246579825 5.0296980136951606e-06 34605233.16417523 616.424771180036 61434 None 4431 RCN_20190712 10920738.528831568 961.7524962989755 0.021949035736570133 1.928863538499504e-06 4607544.728846583 404.90731055990057 None 1124 1949015 FET_20190906 17752177.793762043 1679.5593510103818 0.052172761295126206 4.936219499156843e-06 4566228.6038146755 432.02441489067456 16247 303 439975 OMG_20210429 1034351587.1505473 18896.443398302014 7.40171538925754 0.00013517723941125685 336677118.99553263 6148.721090357475 320460 4509 121524 FTT_20210428 4725696289.893347 85780.31984972395 53.627825379573686 0.0009731832656678605 149234001.06150612 2708.1469642629763 103729 None 2918 NBS_20210112 0.0 0.0 0.015736210478659602 4.426908413658695e-07 14893106.92345615 418.97266457116234 None None 711556 SUPER_20210421 215750823.82976678 3818.696750232621 2.113610990023645 3.7486053408721476e-05 12845395.353463586 227.82015164989838 None None 80916 THETA_20190804 128783092.3381723 11935.42920030684 0.12883939057205945 1.1938343698343384e-05 2418359.7636168906 224.08682559046514 None 4019 242693 LRC_20200411 31743953.330951903 4629.657480990849 0.027936401945786626 4.07334533437081e-06 3446986.713080517 502.59755256286076 34153 6805 552171 EOS_20190131 2390870449.1718516 691328.048321372 2.322825573958897 0.0006716526490141709 1024408620.39102 296211.1194539293 592 62338 80157 FTM_20210128 211904579.36360106 7001.2224996270315 0.08371187813095986 2.7594223690522487e-06 172948620.37352654 5700.962663970308 30148 2962 149161 DOCK_20210710 52978319.00881564 1559.3038996261307 0.07683763549739533 2.2609083054627076e-06 10416527.013058733 306.501004168712 51745 15135 237761 LTO_20200612 10827371.67222759 1166.9357383718664 0.04913187438589922 5.282202237688006e-06 2841358.0677438746 305.47639655728295 15386 472 1406208 SKY_20200905 10415475.444616003 993.3452489016546 0.571023873060088 5.445971759329247e-05 1134240.5787610903 108.17484962783959 17204 3828 1022336 AE_20201014 42754545.40557954 3741.8865938377853 0.11603725007166503 1.0155392224935522e-05 7138083.149137942 624.7134783780951 25695 6350 362736 POWR_20190816 23305498.922021687 2264.526996205244 0.05485886568399767 5.331745767341531e-06 779757.988284504 75.78485814006515 84210 13106 483233 QTUM_20190405 257654073.86940777 52547.32884612088 3.167646955615916 0.0006463567320880748 249115503.31254908 50831.89032417504 176383 15244 374999 NANO_20190511 196142192.78022704 30780.366122344236 1.4719660621104131 0.00023104878504827476 5752261.879550181 902.9101640047742 98362 45420 391429 NXS_20200208 12660788.415465768 1292.8292822211697 0.21366302960345016 2.1806368801428213e-05 423424.92637580965 43.21458944678091 23105 3541 456173 NAV_20211225 26254555.338086654 516.0413513724307 0.36177867137006636 7.120272075259876e-06 492029.96533351653 9.68378597081993 58726 17316 706369 MATIC_20191011 35424535.96603727 4137.1844415124815 0.016159425102899555 1.8872377660387146e-06 42231935.22733198 4932.211547527175 23743 1180 206153 BCPT_20190324 3598196.6562043643 898.970534194509 0.04291802418641658 1.0715513273118384e-05 300983.58549825224 75.14776522303298 10142 1551 1708834 STMX_20200903 22494051.506724946 1971.7105385162204 0.0028256064141350145 2.475678578778141e-07 1526916.7795538225 133.78208457512648 21321 116 160167 DLT_20200414 2465384.2766410983 359.84425111455545 0.03009771777369667 4.396493470907132e-06 192523.00857022422 28.122602402701336 None 2581 None ALPHA_20210124 157503969.8818997 4921.066791455982 0.9040194159266257 2.8208619503905818e-05 186048405.94164476 5805.371654696886 24532 None 81517 RCN_20200806 28362098.47647942 2421.112261877382 0.055315619204156716 4.7201136537586825e-06 424649.7025707087 36.235603759054456 None 1131 1018083 ARDR_20210105 71583553.7381476 2288.0163715410413 0.07164621617124112 2.290019243224711e-06 7880891.8365425365 251.8959817266552 64348 6287 None YOYO_20210418 8033949.319433307 133.3807695565352 0.04599533932229327 7.651838240431015e-07 1690924.4797032794 28.130416659853363 9820 None 783243 DOGE_20211230 22177073844.912106 478166.5647666908 0.16821256982323016 3.614679957801007e-06 1126368147.045555 24204.257568323275 2755033 2249202 36966 EOS_20210204 2916278447.891928 77810.27906550025 3.0676612748130463 8.178353840248861e-05 2023940226.7631674 53958.041136701 195355 75873 71191 CITY_20220105 40443306.476983555 874.2124370407639 10.594409586450444 0.00023022470575932244 2052398.4811094955 44.60020471727154 273921 None 38699 CHR_20200927 15127142.40151205 1408.8097434831618 0.03374561340326292 3.143526914382303e-06 2110637.1451499364 196.6135447883819 28179 None 295903 CDT_20190812 11323129.050975261 981.0896931813052 0.016785470581792708 1.4543729130753342e-06 551175.969243798 47.75650441851419 19771 297 234430 SNM_20211104 12550379.059228549 199.356 0.28313080337526725 4.49e-06 922247.5540417847 14.62536562 None 9741 None DREP_20210421 0.0 0.0 1.7756069802398127 3.149136639066381e-05 111358.47716780056 1.9750038405030075 None None 197188 REN_20200421 49134238.196506895 7174.692279585493 0.05563931827417076 8.126471872368724e-06 2090577.4349921234 305.3419640901495 11744 876 420454 SNT_20190321 78929509.70352544 19530.022633978613 0.022548167752454974 5.579234284037661e-06 78207795.24636523 19351.44430837451 110374 5754 348070 TNB_20200914 7795545.53654132 755.0207284921839 0.0022718810334245074 2.199897684311224e-07 466655.786211743 45.18700444055448 15965 1435 593209 THETA_20211125 6616843322.000891 115734.6788649851 6.614445079891189 0.0001156392808449003 261630082.42705506 4574.036705094895 220778 26145 31742 APPC_20200610 4608322.34133378 471.429423037364 0.04246707684802314 4.346801775032444e-06 319949.0539321023 32.74901921149662 24534 3209 1584019 WABI_20210916 13500692.011690533 280.10958100472436 0.22872702409684095 4.745795024005827e-06 503742.57643657346 10.452018173507918 45366 7875 795364 DOGE_20191012 279845153.85299575 33860.56105875099 0.002303419511422535 2.785844632030151e-07 63585639.451683484 7690.2931256009 138275 141996 98077 THETA_20200310 109355367.4695111 13812.31111318564 0.10973140615133398 1.3859517949906305e-05 9382477.17876056 1185.044605135933 None 4026 385146 CDT_20200626 4367000.897597659 471.551871818474 0.006468250121094651 6.99032079386741e-07 335431.61257715547 36.25052421321256 18928 291 271628 ALGO_20200629 165664629.26704356 18164.653612149836 0.20625285500242596 2.261494496669131e-05 74084956.67878386 8123.171037466126 19099 914 276496 VIB_20201111 2889867.0407157633 188.93478630489798 0.015822046608303525 1.0357319913267438e-06 849226.7317588346 55.59149936461916 30449 1096 3115290 COCOS_20200313 5682344.6087578675 1180.744620032452 0.00023638033126698567 4.8688789733204976e-08 1042474.3368985576 214.7251995098848 14589 213 73199 ZIL_20210418 2676735436.504528 44403.08167063491 0.22291488002064822 3.7084379166137718e-06 584885288.0402021 9730.219798861976 214454 27845 36030 OAX_20210318 19747547.187364396 335.71187613723635 0.35092670337284176 5.955049744248667e-06 1729813.969633072 29.35407348159758 13492 None 1313165 YOYO_20190426 5869751.986825124 1129.9411565421435 0.020083875981181182 3.859963617689756e-06 601818.4575365687 115.66479262877331 7459 None 1423576 ETH_20190613 27568882097.168007 3393958.0872773426 260.5666340627198 0.03204454256942553 12143678886.284647 1493432.3284358603 443221 438708 37291 BNB_20190818 4270650928.5018544 417807.17180667166 27.45044934398281 0.002685730902433321 180575010.82402977 17667.320512683546 1023456 55622 879 XLM_20181231 2215814543.5783334 583330.8839675932 0.11564781975536974 3.0435263662996312e-05 81916090.06394432 21558.01816767183 260005 98586 57888 CRV_20211204 1721839205.253795 32071.154187431817 4.382105364005297 8.171947555175311e-05 359270780.2394183 6699.843409378808 217584 None 10198 LRC_20190915 32960604.36275679 3185.1801329418568 0.034254524045124725 3.3102193227741166e-06 3183324.8260911326 307.62369770813297 34343 2437 519433 CTXC_20211021 42076936.57037134 634.8063100269992 0.22731491299930365 3.430587048133983e-06 5807810.742982013 87.65021199004455 21166 20658 771134 XRP_20200711 8893727516.201387 957384.3336362371 0.1987890313083414 2.1399070741332567e-05 1271305899.553482 136852.44452054863 952182 215070 31878 RVN_20190512 168970237.57331803 23141.66829945891 0.0481714615188954 6.613589187919749e-06 23998164.985776905 3294.7724539682567 24035 6420 171456 POA_20210304 19705619.380917717 387.7388553724717 0.06910586238431081 1.359765834428308e-06 9743005.868781857 191.7088659038545 18833 None 413017 RSR_20210206 420898526.51087713 11105.207281150688 0.04519596541555491 1.18900915615673e-06 214835615.07756397 5651.865405399043 56389 None 136667 HARD_20210325 71871878.25095294 1517.8470889414311 1.820547955640163 3.452931483039118e-05 15648767.06438867 296.80141245372 None None None STX_20200323 46906092.80187482 8039.761155869592 0.07921156187938526 1.3584815153649829e-05 569984.6484270592 97.75259956482219 35789 None 40997 GAS_20210513 176025151.3981154 3492.2997389834823 12.631767713851753 0.00025061145375874247 33798274.466439255 670.5502262587547 None 110923 84803 SNM_20190623 9804598.385185843 913.2763855033321 0.0242313016126939 2.2590103721732744e-06 609368.280812899 56.809546958410216 31329 9993 15028658 MDA_20200229 10927555.898319902 1248.4663369002722 0.5560792008589502 6.362827684200929e-05 845883.7401634479 96.7885954233453 None 374 2393526 BAL_20201115 121688062.63363206 7561.829152203375 13.008301141504685 0.0008086691524542294 37779098.19681492 2348.561198497099 28296 None 62865 PAXG_20200927 60754767.15947184 5658.167660850427 1862.257628621935 0.1733769896680775 380833.30521255924 35.45574522465939 7459 None 95357 HC_20200323 41584461.9092997 7127.62717112868 0.9308504371616507 0.00015959451783699262 23690153.666969463 4061.6822005184067 12736 842 891141 HOT_20200325 59980924.02695675 8873.64955441276 0.0003378705111697498 5.00011592349268e-08 7029558.849343092 1040.2982200500546 25092 6920 515134 SC_20200224 131748336.53628416 13240.12987449112 0.0030183257530340124 3.033284975304831e-07 3949951.2375420597 396.9527719126889 107931 30198 215597 MATIC_20200430 45201081.13149909 5174.396755717956 0.01643478935943147 1.8743750808288768e-06 36019670.48282368 4108.015703525128 35391 1650 177145 VET_20201030 660243497.2296456 49015.44373113432 0.010170739149878878 7.563709418660611e-07 83349443.45564339 6198.477428389043 137034 67969 83878 NEO_20190622 989527111.2620814 97774.09812041308 14.014388008368401 0.0013845790599238189 481051119.4857208 47526.392618437574 322322 97759 201306 NCASH_20190626 7294157.232746836 616.8696108275998 0.002514588768352004 2.125086471303917e-07 5279951.835082499 446.2103050441778 60253 59134 1027921 LTC_20210212 12277450046.61745 256734.58538690815 184.71808630627842 0.0038626523521772434 7193183812.097925 150417.15149308008 142586 251018 113602 VIB_20200725 3560947.2382593816 373.2262392206435 0.019613361190513857 2.0561795927663505e-06 848560.3680869018 88.95938310331385 30738 1099 None ALGO_20200314 103060843.29220632 18747.52564199219 0.15331031102186582 2.7623065811894565e-05 104959385.3756948 18911.317774284013 16034 821 407593 GO_20200208 22627393.235619094 2310.101038865102 0.025142615802914936 2.5646240545489512e-06 4232156.844619031 431.69300010047476 10635 682 728796 WNXM_20210106 56085788.732030556 1646.0179636201087 31.72326770395563 0.0009309539002742243 30089265.947257925 883.0023360580643 17522 None 132342 STPT_20210702 51207014.10071467 1523.986793560988 0.045651704449005404 1.3573580390652995e-06 78814279.84091504 2343.377922607639 30624 None 433288 OXT_20210115 0.0 0.0 0.26376152191386865 6.7236359720093656e-06 10604331.474355247 270.3186728781803 54692 1839 172682 STRAX_20210809 203490452.0061128 4625.595956713021 2.043281356220395 4.645921102019199e-05 25933813.278187312 589.6713636531615 157291 10764 188062 BQX_20210602 547216176.7104806 14922.285744864817 2.4700994089418673 6.734762944361984e-05 2449885.3302545277 66.79648956801366 None 5688 19182 NEBL_20220115 16778261.76569421 389.2747509021269 0.8893356747171416 2.0619509659316517e-05 423816.6023144713 9.8263128013856 41459 6298 1050174 XVG_20190702 126997000.54298024 11975.784030557425 0.008038737781337924 7.580508762882484e-07 2959405.2845063107 279.07114652005805 304124 53027 387398 GTO_20200625 7927896.011719274 852.1107459502666 0.011966548860482094 1.2874294670115821e-06 9111131.000102893 980.2273541097303 16605 None 1219956 GO_20190426 15442473.0647555 2972.9252693505446 0.021819930590155995 4.19361971252147e-06 1031829.7650414314 198.30959703402104 9485 655 898159 MTL_20210217 52392813.615279496 1065.335860382139 0.8118911462142933 1.6505573189912515e-05 19454761.43002556 395.5111349259849 43198 3408 337340 POA_20190616 7936364.371847466 900.0778723826561 0.03615288019478767 4.096523742980559e-06 903427.8434496579 102.36843069822206 17658 None 649823 UNFI_20210210 68054459.31117484 1460.801724203027 27.716393775248452 0.000594842063729047 73350676.39866021 1574.2332165833657 13928 None 111570 EVX_20200317 2306560.473687529 456.9939213565168 0.10515302718467949 2.0881268097938847e-05 557109.721614284 110.6307423424407 17804 2867 688824 LTC_20210427 16477219750.20513 305665.1406561095 246.8408052326986 0.004579087406428554 6912331306.180128 128229.07948040654 168509 299266 95869 WAN_20191026 21015823.9039027 2429.793428924129 0.1981082695180536 2.2882138209710605e-05 1927791.765996722 222.66610947837873 None 16741 356039 ETC_20210617 7053551388.81355 184411.8500422806 55.33239616775975 0.001445741955430698 3089343263.197918 80719.31598246639 468271 57273 101857 TRX_20190830 1023448149.6265305 107745.67015542135 0.015453516229874672 1.6293732560183567e-06 534533336.82881045 56359.62136535571 457272 71291 66162 TCT_20200612 4507156.578436163 485.1831600220566 0.007778312861105188 8.362518652892881e-07 2091840.6429352453 224.89525309399693 None None 990413 SNX_20210427 2447855846.282344 45437.67071610628 16.127703462346165 0.00029918134381965095 193009284.41069165 3580.4711572530096 117060 6143 27259 DOCK_20201124 7168921.580605059 391.44576855467193 0.012830144140137351 6.98839307723002e-07 3279948.4848446655 178.65402784877963 43013 14891 275585 GTO_20190830 10638975.743986389 1121.7644083844389 0.016097556240075146 1.697082976255601e-06 5251662.284448348 553.6558796292975 17361 None 815582 FUN_20210722 149834423.2167126 4656.121418250688 0.014448582543893878 4.4738866601520717e-07 1366035.9209087617 42.298196831944864 4800 338 132450 BEL_20211207 79701938.68524681 1579.3807101127925 1.6616430076564526 3.292377335497174e-05 10389923.018973507 205.86580214648134 36467 None 290672 BAT_20190704 396504919.1840057 33094.58197056122 0.31102050007777265 2.5915586718683845e-05 43201965.619087555 3599.7764974948514 103474 28399 46382 MBL_20210104 5373974.3933552895 160.64045913728475 0.0015222681028426914 4.624466327719206e-08 2927204.180540565 88.924921582408 None None 990117 PNT_20210104 9884242.974717518 295.7106894147083 0.35082653885419657 1.0657685809561763e-05 2114051.439515628 64.22232508747909 None 112 1089026 BCPT_20210203 4177086.2626304342 117.3310305132056 0.03588426821856339 1.0100927275277632e-06 728149.7493760899 20.49641257601204 10442 3224 1647629 QLC_20210603 8830656.306556799 234.66164132189465 0.03679440127731999 9.777568388412277e-07 628920.7560734615 16.712639667792757 33915 5644 940522 COMP_20220112 0.0 0.0 5.037551562991614e-08 1.1748e-12 0.012313059832334938 2.8715105960000606e-07 2639 None 5053090 RDN_20190405 19271485.943943273 3935.733337480245 0.3804553661434646 7.772678174424642e-05 670586.3925445622 137.00036012717993 25563 4461 1172617 WABI_20210111 5329070.313179339 138.23876985858985 0.08976787747118807 2.335052883779413e-06 1690189.7384366957 43.96541985898804 40793 7472 1296084 MIR_20210620 350742639.56232756 9861.774319278868 4.623719032637698 0.00012986656080707316 56218147.624998756 1579.0011104628015 46513 None 15162 LTO_20200323 5514421.549766485 945.3976443962433 0.026025699586447654 4.463418088696019e-06 768535.5438509737 131.8041590711561 14483 415 882624 KSM_20210206 1071818695.472842 28279.426111820423 120.06993970629124 0.0031587832315853616 187558539.41168034 4934.263902218112 33776 None 118660 HIVE_20220105 599429445.4757632 12948.416065931742 1.6227088701630972 3.526791994851656e-05 32637580.509806756 709.3444781733626 31162 200 69095 CELO_20211011 1850802994.1744535 33826.2449734768 5.6677003011431575 0.00010355051504524739 55129455.616078906 1007.2310143247435 None None 56964 LOOM_20210509 124730173.61868167 2126.9198380028242 0.15021309067308591 2.557145113301942e-06 7116157.250929191 121.14155070082836 None None 275263 VGX_20211202 8246870461.155352 144278.43805997167 408.44206429586166 0.007144532833095337 472200700.3794636 8259.808924156085 None 13344 16321 ANKR_20210112 54240292.68173153 1529.8911855520905 0.008317638625390603 2.33662673091968e-07 16161250.941625914 454.0087957179143 31795 None 5158 XVG_20210902 473642293.4696759 9738.616041288029 0.028820095375393942 5.923614033308008e-07 39893869.44665867 819.9691285510004 325946 54662 180341 TRX_20210930 6168662679.492114 148505.35962905633 0.08619854839371416 2.073746388007828e-06 1121902430.1055982 26990.49062290644 1151250 117742 35009 GRS_20210916 79982805.74368188 1659.1744486053176 1.0202230225031959 2.1163648300121124e-05 5495762.225089711 114.00485610245619 41737 106909 8987263 CRV_20210106 124767472.44308862 3661.703001058347 0.6906065902556414 2.0260228963506303e-05 87111575.89162898 2555.5801201997606 52797 None 29021 LUN_20200404 1616045.353459998 240.31517941459757 0.5981930231435235 8.889516799600863e-05 2561518.703620278 380.65745783298706 None 2147 2462612 AAVE_20210420 4317064682.681149 77124.20653613763 344.976033572247 0.006168654860057804 627432089.6086912 11219.364918897507 None 8362 14216 MFT_20190902 9289584.961135002 955.0845615700008 0.001008486967627946 1.0365934733758422e-07 251094.33322584804 25.809232580940723 18779 2208 866690 BQX_20190523 15891093.594471848 2073.561648225392 0.13510319039953916 1.7629044376331247e-05 1867688.4112955318 243.70676803795777 61040 5783 448340 ADX_20200310 7322714.809042695 924.9076426342662 0.07952041704340583 1.0043748513321317e-05 172873.4146812239 21.834607592029766 52451 3775 53936 SNT_20210704 289422800.03888553 8353.16684693417 0.07536567734341691 2.1734533141072952e-06 84559717.86659653 2438.5981194022347 133167 6014 125766 ANKR_20190804 15827847.343846126 1466.90231621034 0.006021259296993061 5.579338947908498e-07 5825608.302882265 539.8047434323539 10523 None 12914 NBS_20210104 0.0 0.0 0.014166701332866011 4.3036724717777075e-07 8169411.822252773 248.17684755221586 None None 711556 ZEN_20210202 387135390.79708 11596.037739337775 36.079434581903506 0.0010802722599202882 40964755.54481782 1226.5460798456827 85033 6504 437186 IRIS_20210930 111115006.79279336 2674.8019818005796 0.10095276137878066 2.427600135515955e-06 19262554.960795388 463.20457602697434 28670 None 632680 STPT_20200530 8046050.970570554 854.2384917332196 0.011395614636461788 1.2154292986468467e-06 831541.9621578715 88.69029851423349 11145 None 1404978 NULS_20200301 20141303.180155046 2350.678930530315 0.24114223129825535 2.819417956508219e-05 2971503.1404377706 347.4260508773615 22680 5197 619302 QKC_20210523 147321020.49317566 3919.246716096192 0.0230472504703979 6.133078789201696e-07 27254395.20764575 725.2637505511809 None 9484 323778 FIO_20201201 9376974.234348247 476.34012519348636 0.07820707474960642 3.981265192542674e-06 1210708.709180156 61.633202080499544 55435 150 366875 TFUEL_20210128 0.0 0.0 0.029423034370589452 9.710877967456862e-07 8908181.538529351 294.0086421510631 81368 5054 50826 LEND_20190816 4055113.194422965 394.04861847757076 0.0035938183058372595 3.4922308467793337e-07 1183665.7359146052 115.02067281817475 41766 5832 628333 SKY_20190618 24897965.777242366 2673.336687610539 1.6598643851494905 0.00017822244584070264 643935.361293569 69.14042862768005 16113 3773 427664 ATOM_20210823 6063304899.296714 122904.62007543635 21.794418752760954 0.00044227520058372753 1082330400.3178172 21963.783495615717 None 34174 61182 UNI_20210723 9149059873.91254 282609.2911031492 17.599181819826054 0.0005436287844479372 310071792.08237046 9577.942494544819 None 49164 1613 AUTO_20210430 89494926.49692824 1669.5614613826947 3512.932004798167 0.06554677570561877 84192864.09875399 1570.9301436967996 41766 None 15822 XZC_20201101 33822748.08484072 2451.1485332337425 3.0302512233529004 0.00021989044393490813 4203788.680641657 305.0482917294359 18 4197 276944 BAR_20210527 46616078.90164994 1189.8087006335609 15.852305426003184 0.0004043662964641315 6847434.071219733 174.6668059473255 None None 36746 STEEM_20210124 68008098.96856776 2126.0624117660377 0.1814324353586916 5.661336963050046e-06 3295711.550284466 102.83791639730414 12058 3830 212736 TROY_20200730 12051325.1239267 1085.9629052944533 0.006335006400160711 5.712072033017195e-07 4289299.409118304 386.7523669027436 9326 None 599996 KEY_20200331 2678131.6714908415 416.9112682706535 0.000963371538948063 1.502671609470922e-07 855312.5998000914 133.41207509054846 23408 2751 234046 THETA_20190411 95580869.57154702 17997.448469795025 0.12855322099908278 2.4222591541426122e-05 12171588.13715577 2293.4268434930577 None 3944 286208 NAV_20210711 28042757.17547711 833.4606825570353 0.3949107743677534 1.171649390451895e-05 673411.3151990741 19.97924615350354 53063 14124 770142 QSP_20200421 5337715.709672006 778.178493890643 0.007457012975239969 1.0891435782258312e-06 317036.34322140523 46.305149049667875 54857 8288 395631 NAS_20190803 42529794.83831686 4040.9150103919674 0.9346333105909138 8.880065822915153e-05 8097804.0651303 769.3823053873726 24355 5122 652054 DUSK_20191216 10731297.222575717 1508.001325467419 0.04160028955763313 5.850790503310739e-06 238742.68211418582 33.57749265935846 17937 13343 845066 FUEL_20190329 6807498.994648036 1690.8470546379608 0.012831526922416275 3.187017067041125e-06 3514780.7009976488 872.9799772634476 1 1525 None THETA_20190105 36585174.43351077 9601.977204169392 0.05159258413926552 1.3541207634412444e-05 2840885.1096771704 745.6307098673034 None 3807 531342 YOYO_20200425 1404531.2599112007 187.33466313399458 0.008010789622096134 1.06878018265778e-06 150669.90238916755 20.10201408265018 7465 None 3352047 REQ_20200913 22135217.213673815 2122.777415756066 0.028846878492913446 2.7625966295432416e-06 264737.98025498976 25.353323831699417 39569 27685 292019 ETH_20200518 22938430778.9383 2372245.939376035 206.76889403683904 0.021400089496696126 13449821514.26736 1392024.5860029105 457445 461656 19199 FIL_20210902 7950783178.959194 163477.80728994924 78.64502423193608 0.001616373264325469 741756401.3552552 15245.150313095539 101432 None 52380 MTL_20191020 15931343.299355725 2004.804877793963 0.3010716386668066 3.787459359572852e-05 777724.3915403455 97.83716390395222 34577 None 240997 PIVX_20201106 17980896.7299851 1157.1696169878203 0.27835227993306966 1.791937418357471e-05 159075.3989226156 10.24073378303631 64868 8619 313548 GXS_20210703 30695322.98576002 908.149328073379 0.4389355287203227 1.2962734099346446e-05 3239087.4232685375 95.65739441229077 None 26685 581243 WING_20210212 31959958.960528284 670.5241031344864 33.90540973713411 0.0007101178497822036 11319132.675860832 237.06889901933354 8223 None 427230 CVC_20210124 98537748.16525115 3078.4457948833024 0.14748585444846204 4.602004891019951e-06 39280095.79382861 1225.6578343660706 87292 8129 160531 NEO_20200319 398572558.6453987 74059.92892816513 5.676970011661368 0.0010531378864464616 524717032.793259 97340.55063937762 322451 98952 219445 MTL_20210616 141680797.17519325 3510.37092588072 2.1920520928930007 5.431163635670783e-05 18251883.691825166 452.21994181126496 56638 4173 153721 TOMO_20190901 30734018.838913195 3201.8562992217735 0.4766545519747257 4.966876275795824e-05 3419199.1130969264 356.2902921351676 16964 1316 270545 ETC_20200109 575713785.934046 71554.19209978054 4.943327993221521 0.0006151023838791513 1038756621.6098654 129253.34412335634 228840 24980 399840 DNT_20210509 243821337.3107568 4157.682333065831 0.3251415933834326 5.537851266486947e-06 44261001.14265769 753.8587686774144 68742 9939 161725 ARK_20190805 46076686.283476174 4207.938059502066 0.32108430139023053 2.9318611799477154e-05 227477.00306997224 20.77121153989845 63426 21832 143377 ARK_20190905 31176745.582578648 2952.4311084672286 0.21760416352012257 2.060035712262617e-05 1335253.698995617 126.40706227146089 63250 21780 99618 BCH_20210603 13091664623.078815 347878.2017713872 698.6128570497868 0.01855361342303685 2789560748.294742 74084.5680431696 None 554235 273497 QSP_20201130 20627016.082408916 1137.1409074502553 0.02902245357943389 1.599926888086445e-06 742745.5174175006 40.9454879846557 57931 8198 237712 DUSK_20200309 8526987.556479545 1059.0164563322248 0.03231850720754528 4.017430154662192e-06 526281.2037337475 65.42065709081564 17713 13342 936304 DOCK_20210916 70448412.58601576 1560.1781752227776 0.1039939197103454 2.1572643368709022e-06 17184559.289472647 356.4788884126944 53896 15189 259377 SNGLS_20191011 6475183.996022891 756.3781623578468 0.011220005775847872 1.310629528920376e-06 1447753.181153894 169.11471417360445 17 2163 None PERL_20210318 0.0 0.0 0.16384423104830095 2.7797403914338997e-06 24530502.286116876 416.1783884034274 15857 586 385073 BTS_20211221 89751278.51360817 1902.2663569871142 0.033086486407269806 7.018956040276623e-07 5556379.801160643 117.87285324699326 8072 7511 206863 AION_20201030 29202511.459577452 2167.9497701273554 0.06231008376378068 4.633835953282236e-06 908320.4310617419 67.54938552981551 68122 72540 640926 LINK_20210201 9106653405.76948 275517.1454117973 22.592818931413035 0.000681492461887516 1794320227.6963544 54124.08752973959 137586 32118 38996 VIDT_20220112 34532550.98323383 806.0010873846571 0.7464778004858063 1.7446846167641017e-05 4197913.057476793 98.11456320772635 39181 1890 257097 PPT_20200117 12371693.832956998 1421.377432765405 0.34162702172015064 3.9233853372282556e-05 2723926.408096222 312.8269208741921 23655 None 887980 ZEN_20191022 30803212.348106183 3751.048441679931 4.065216060720242 0.000494657430405682 4010612.189720089 488.01320532251304 36588 1840 95686 YOYO_20191019 2226488.0121554667 279.7599961396115 0.012730513202352176 1.5995991466836756e-06 707603.9589245357 88.91100232130026 7528 None 1389635 SNM_20190614 11094077.093534743 1348.4473301871233 0.02721804978786738 3.3082613596347477e-06 262255.57829182467 31.876273383784156 31354 10003 15012322 LRC_20190629 55401264.759005256 4472.344714301132 0.057625661164024095 4.656059798190835e-06 6966956.654499146 562.9187785354749 34927 2456 720276 KMD_20191118 117651650.85016978 13842.33843235865 1.0052563168142576 0.0001181321402479963 6786296.534747633 797.4878850280588 98346 8409 244638 CELR_20200526 11827125.522232546 1329.1471663292593 0.003156074533652771 3.551241259903505e-07 3790107.6541295936 426.4660589381984 19735 None 1477184 QLC_20210117 3792637.4843988554 104.43201169546296 0.015839804797055598 4.3761363574534173e-07 787004.2261668339 21.74293087398636 27358 5593 940522 FIO_20210825 74876811.52937481 1558.1555774519572 0.21350356952457375 4.445845683421673e-06 5584931.075522214 116.2966116660647 78090 517 401470 DASH_20210620 1549266574.26896 43458.77232010466 151.8911027187496 0.004266170800613077 555020216.6958047 15588.872553002406 397781 41217 53288 UMA_20201014 508111128.18243474 44474.513456038985 9.188142931207343 0.0008044248674988501 17673635.900972422 1547.3325049803618 13769 None 95449 NEO_20200806 907096526.4606429 77426.59076786887 12.884343593028687 0.001097550311981814 193501609.37741363 16483.3970941348 320312 99962 128886 LRC_20190625 61007461.37984199 5525.587265613978 0.06344173803859718 5.744047206190901e-06 27884511.219701257 2524.67781809632 34992 2455 720276 BCPT_20190305 2968552.246356735 799.4451408051846 0.03538477741319827 9.529287684315519e-06 374538.3628537701 100.86495011029476 9888 1320 2438592 IOTX_20210203 72340381.74508189 2031.0323765616276 0.01181271319954584 3.316973242101356e-07 7278775.761187831 204.38576665049487 31900 2052 512659 ICX_20190613 186192241.3328959 22921.809489148316 0.3943382931284487 4.849581093282853e-05 24551239.534784038 3019.316894638088 113580 24881 290071 MATIC_20190905 30936056.823457424 2928.4663948655766 0.014111626232608818 1.3359328023421708e-06 13412976.949812118 1269.7924100984912 22945 1141 217453 ICX_20200325 110930546.40662906 16411.197554234997 0.208653155126104 3.087839657332098e-05 19855853.423311226 2938.4502522197026 113171 27504 126672 TCT_20200704 3954409.200377609 436.02872599998534 0.006810194444446651 7.512646968557767e-07 853891.1605356468 94.19676473272325 None None 649723 VET_20191113 409731699.7534176 46588.335836258295 0.006503665034505902 7.390129835958504e-07 106310832.0747859 12080.124788609093 115442 57855 402467 STRAX_20210828 235090149.80815303 4793.07292287081 2.350302371295099 4.7921273940103116e-05 16771646.798223766 341.9639491753809 157279 10819 253656 ROSE_20210902 196580842.505292 4041.942078488787 0.131541404277166 2.7035405113283508e-06 19595114.22444571 402.7339180466042 28962 1929 233513 INJ_20201101 10565743.114679523 765.8483757266644 0.7850544505530218 5.689430278198039e-05 3552073.0771303545 257.425100910661 None 1684 209398 LTO_20200523 8068673.061136123 881.4187323924529 0.03810196769680502 4.169568744777461e-06 1525712.1886720294 166.96150461400833 14638 434 1128557 LTO_20200229 9653752.920457583 1102.9351538523836 0.046075349640452755 5.288061209943195e-06 1465666.9021088693 168.21437823522854 14296 406 804380 FET_20210117 58201150.35096424 1604.7063008271218 0.08478181369086285 2.342719995000122e-06 12265127.902941542 338.91419785174725 26893 752 346755 LINK_20190228 155733455.42652512 40748.94924529767 0.4276740302923696 0.00011211082138123555 4904023.675370556 1285.5447920065767 10007 6389 313186 BQX_20190205 13814430.415732006 3987.6626412014543 0.14825042859764323 4.2793852360911854e-05 2044548.9773449642 590.1779030846232 60755 5829 340776 BTG_20191022 133080029.2974134 16206.218268772862 7.598717644317804 0.000925330697862637 10581900.529419998 1288.6065596769909 75047 None 318337 XVG_20190621 141670026.25674698 14810.419914261034 0.00894226442478097 9.356353807842323e-07 2702968.116108402 282.81344438376624 303977 53026 395064 REEF_20210107 0.0 0.0 0.010511261119045292 2.8478566558344095e-07 5662519.596346529 153.41683494123794 14398 448 142268 BRD_20190905 15636855.754362602 1480.4932953474085 0.2603435527923978 2.4649257526631216e-05 120059.24003311737 11.36717654148245 168 None None FIRO_20210823 87270650.98910618 1768.9739832723858 7.133843461502029 0.0001447674326010198 5745582.208921049 116.59537942937519 74132 1143 376180 VIBE_20200319 1097736.21586091 203.97356608 0.00593079466714108 1.1e-06 25143.321415936876 4.66339759 19386 None 1312296 ENJ_20190819 56149401.68742559 5440.869027056175 0.06407323475865705 6.210067307017028e-06 4694805.779102676 455.027126247297 47195 12927 23439 FET_20200625 18160655.107834764 1952.0618476034158 0.028908111483135455 3.110099243562953e-06 2274460.5487421323 244.69941719587698 17560 417 852489 ALGO_20210506 4258321162.184723 74360.60393002139 1.443305176184286 2.517634342106867e-05 459223990.4308159 8010.48945230385 90589 25226 134030 BAR_20210711 42797383.64368339 1269.2076258897364 14.498712988815141 0.00043011181837840617 2285033.4754893705 67.78669968544429 None None 41859 ONE_20210722 657306985.4798193 20425.887908493725 0.06388073124366339 1.977954277759064e-06 34491168.71930528 1067.9582619841522 195225 26386 25720 STMX_20210127 22507717.270314258 690.692249614219 0.002684087480526972 8.237895311380894e-08 1995574.5446062034 61.24738595068049 22207 163 183695 ARK_20190812 36964775.78002588 3202.8037802340314 0.25909719159994027 2.2435961548360958e-05 417063.50218622485 36.11471294031986 63401 21828 143377 OST_20210106 9290918.978835123 273.5009855415383 0.013505382639994049 3.9597643282362853e-07 1564747.609667083 45.878239311073976 None 731 741572 GRS_20211207 60178971.8011024 1191.4935075273047 0.762152524281983 1.5089985043760653e-05 8221819.038528411 162.78516749752006 42739 107179 None BQX_20210731 503214189.7453117 12061.345444476725 2.268028709766898 5.432954646569892e-05 2445515.8072377034 58.581165269101646 98676 6393 29602 COS_20210314 94677932.48969424 1541.5472069541083 0.031487264566131906 5.1320926976424e-07 28202696.647316385 459.6742699370562 16921 None 300118 LTC_20190531 6722102524.112536 808755.297650867 108.5564343493357 0.01306862761951682 5678730275.586434 683637.1493604551 445788 203152 172596 RCN_20201101 19045476.614190824 1380.2602643501173 0.03710078621173799 2.6915802461305353e-06 519232.99752282165 37.669209253291 None 1131 1716221 WAVES_20190201 277788746.4809835 80959.2287764725 2.777887464809835 0.000809592287764725 16426125.60342747 4787.258222247652 135615 56675 39779 SYS_20210111 47556885.67486304 1236.4692080607583 0.07871041836585885 2.046454625484572e-06 2550829.8595663733 66.32104965659849 61042 4493 315243 VIB_20200412 2043980.7372945524 297.04657326304925 0.011197247698287293 1.6270797226556975e-06 659328.0331704667 95.80740752160189 31305 1105 None LOOM_20210624 35790080.23778776 1061.6414285679996 0.0429768625198504 1.2740984210868491e-06 4551055.1508909445 134.92125395033392 33458 None 248078 QLC_20200907 4995953.116655647 484.8283081159584 0.020837082072947398 2.0290924490471656e-06 1270055.404260573 123.676617562612 27717 5619 940522 NAS_20200425 12161953.357269274 1621.8621286200305 0.26671757100942706 3.55848134465057e-05 4741658.795195049 632.6206519331081 23462 4945 1034510 PIVX_20201115 19945462.575947016 1239.6040948446378 0.30723269335609105 1.9090615967669488e-05 67175.70298877965 4.174118106078814 64842 8621 313548 XMR_20190615 1554043949.4584217 178613.8115024039 90.95349257985345 0.01047544206257185 386619966.0318472 44528.417101128514 318053 158353 113684 ARDR_20200417 34501584.31452994 4859.024858126229 0.03439106659671655 4.851420611071637e-06 2381775.819837074 335.9883087898421 63945 6353 1277377 DIA_20210711 62589861.92439399 1856.316253875999 1.2887301699647589 3.823084691932736e-05 9061081.761313338 268.8016761101761 33782 395 433777 VITE_20210318 61748085.61343415 1049.728630724965 0.10451540485182648 1.7731823118510791e-06 17776389.436005928 301.58979301845227 None 1913 284411 SRM_20210112 70305429.7656431 1981.696084588293 1.4145679048110622 3.979245134888086e-05 127163691.83446968 3577.173639708074 None None 89781 RGT_20211216 242969942.3461316 4980.552337624193 21.211785585805234 0.0004340509448661309 17458458.917735893 357.24765171211425 None None 50980 ICX_20210220 1357943028.8083966 24311.031567361366 2.300183721717234 4.1171089064577724e-05 396801709.52149194 7102.371158200185 121064 29265 176350 WAVES_20210128 605145231.9707778 20003.99385704027 6.061023997591528 0.00019932911177841545 53717692.99658075 1766.6156801307654 154357 57281 125387 AUDIO_20210429 347344529.1955273 6345.594976786003 2.267354693542389 4.141125667383587e-05 42034964.35817575 767.7319756232552 45453 4854 38976 ANKR_20210204 92205622.67831229 2461.1516433579477 0.014209557381573135 3.7882747462213623e-07 54348803.18388347 1448.9416739739934 34526 None 5358 OM_20211202 88325938.76980135 1545.0241657555928 0.21767937390624323 3.8077272331812036e-06 8046777.74817252 140.75717979724604 None None 75439 BAKE_20210826 514308795.12502563 10492.636160057677 2.947502611220244 6.0148010415201776e-05 115539184.54382652 2357.742466063152 364418 None 12983 GXS_20210207 29960593.170889866 764.0431777138923 0.4282694898370719 1.089093290722199e-05 5665522.2963233385 144.0747582488343 None None 429351 DCR_20200301 190078309.3624187 22223.82183634563 17.02957978318881 0.0019910864544139782 115760040.02304988 13534.582214403614 40902 9739 216967 STEEM_20190819 55766091.57854443 5404.737719850194 0.17295921677104242 1.676286030484259e-05 726678.541857635 70.42822644029037 6469 3765 255296 NXS_20210201 24919356.325724136 754.0291802317632 0.37287693415718376 1.1247503935267243e-05 2239478.0196301937 67.55187980631979 24317 3545 387114 EVX_20190614 19358596.84772766 2354.20167467171 0.9180376162359518 0.0001116379842695228 4909866.632126154 597.0644384814359 18051 2909 738381 BAT_20190410 362420197.27487993 70037.29136876571 0.2897942864497049 5.606035794545761e-05 49625227.56680505 9599.94089118355 96895 24782 78239 NPXS_20190905 86646924.23729514 8203.707472328688 0.000374078078770361 3.541357798378112e-08 84360341.11903046 7986.304700819234 65007 5464 165759 WTC_20190224 29578190.716798097 7188.291366435953 1.1170965093055483 0.0002714843267528325 3845179.9030751353 934.48154974437 54449 20389 795747 FLM_20201226 0.0 0.0 0.14017002570172024 5.6845331125947995e-06 3983429.464732334 161.5462120421002 12151 None 35817 XVG_20200105 55224157.29683783 7514.811876876886 0.0034425860792009796 4.681829254515421e-07 1070436.3950815736 145.57661927088617 298851 52183 314927 ZEC_20211021 1754223561.1149628 26458.87073006072 149.5654091005116 0.002264816747870185 315467353.35340464 4777.011941316773 80118 21069 157345 POLY_20210708 183294996.5709445 5394.620906372943 0.21589011641506992 6.353858813008301e-06 20806380.449894443 612.3522743125324 47184 5657 172730 OAX_20200404 1693966.4641350403 251.74633225429332 0.03237018430393553 4.810647285790443e-06 122615.56139927384 18.22233114592967 12020 None None STORJ_20200418 13618473.8456177 1923.6966419923695 0.09467929861806461 1.3414817184282128e-05 1538912.756850692 218.043792011919 81866 8053 123443 ATOM_20200223 947356717.8146574 98143.29412062412 4.987181254941107 0.0005166484535780556 290394447.4332135 30083.494969303134 31033 8151 100979 BTS_20210704 121431816.4228009 3504.7004692431096 0.04485602918900337 1.2938713916276956e-06 11650201.266045237 336.04985544587856 6198 7180 140146 AERGO_20201229 10629512.338361347 392.0226948779081 0.04066963792459788 1.4974124370454484e-06 1185568.466748763 43.65135904012487 11393 None 826479 MDA_20190830 11267471.707461474 1187.4056515966886 0.5740249629760725 6.0492762075808304e-05 645558.9852974506 68.03126801495343 None 364 3033915 SRM_20210506 556001525.2045954 9711.2680400203 11.175835594161116 0.00019494607209811422 328525717.9693702 5730.6496468865535 73455 None 40155 VITE_20200329 4574489.179623692 732.6732001408313 0.009286653899316427 1.485373338031393e-06 1545126.9602657238 247.13857278789456 None None 513506 BCPT_20190224 2873759.592253836 698.4004351043335 0.03425486064317882 8.32484722873828e-06 585399.4709726612 142.26772703575566 9862 1320 2528232 EVX_20210825 11147300.974585177 231.23058855655012 0.5123513686414622 1.0680502513819006e-05 459834.8125322602 9.585739732119553 18346 2796 2395989 ELF_20200903 54803353.98519952 4803.810770940092 0.11886721025805624 1.0414649566297518e-05 13063465.17322596 1144.5663745730888 81782 33353 608633 REN_20190522 26046943.963126164 3275.127292991077 0.03374430696274864 4.24880747783976e-06 808767.9133387031 101.83344887846641 6353 782 1359818 MTL_20210506 256429729.41864556 4477.884316127891 3.9670302469492906 6.927199953398833e-05 41884376.99823062 731.3820070149598 55579 4090 203255 NANO_20210708 614984113.4240814 18099.81842074285 4.617573707304615 0.00013590469767903562 24962694.59588605 734.7034779198575 133575 107090 57343 AKRO_20211216 56343812.81762798 1154.9148291994936 0.02084706865442653 4.265878424303068e-07 3709544.4459668724 75.9073895632962 50159 None 242863 GVT_20200612 5170737.354575856 556.6158276683743 1.16615946541542 0.00012539866214468265 1067893.6251932706 114.83200701403884 20390 5537 237369 VIDT_20210718 15837922.493827133 501.1105901109851 0.3410390970036719 1.0790958814132835e-05 1359809.2121916036 43.02628447224636 29515 1621 891299 DLT_20200107 3748860.809931503 483.16837628019874 0.045486019470193 5.864155070275077e-06 1432197.4391447105 184.6419619087368 None 2610 5297076 OAX_20200317 1104495.9054218768 218.65695630845636 0.021052377655448956 4.186337788800484e-06 116426.58144390662 23.151826624834 12034 None None DIA_20210610 73268228.2784336 1951.9495478768674 1.7548896908221656 4.677395893099603e-05 20478473.1302996 545.8230600906787 32160 387 362655 QTUM_20191127 160758371.4250606 22422.632255554377 1.6636642976596958 0.00023245824688211276 328799620.92129993 45942.07110315889 180867 15273 173908 DASH_20190821 841422116.0866113 78267.0568721034 93.54145454791744 0.00870268794187407 276198045.45633066 25696.258534559092 320024 29953 87828 TFUEL_20190819 0.0 0.0 0.0057817728564530145 5.605086379681111e-07 481738.5874758649 46.70170313270125 70250 4025 248011 LPT_20210620 581293198.9344522 16338.644433406367 24.44379959832784 0.0006872492165704034 7696856.578143516 216.40083539818187 13275 1086 95239 MITH_20210722 24067355.191151295 747.8747775790915 0.03903122500963338 1.208570296563724e-06 12914351.721708598 399.8824501762724 32666 2747 479656 DNT_20190411 9891989.888654098 1863.8360687144518 0.017025104684934036 3.207679868107981e-06 591290.186050213 111.40428567710971 60682 6422 1038838 CHR_20210217 25831050.96449333 525.2389212364807 0.057312289329123085 1.164657075648012e-06 7316666.502190296 148.6837729164413 37990 None 468046 BEL_20210814 99587550.9254352 2087.803269118713 2.074779048734035 4.3485178056743315e-05 12149733.748289406 254.6455901936934 33167 None 462798 RVN_20210324 1635019835.635083 29992.41030850748 0.19491937805576975 3.575718494958619e-06 253381200.4919759 4648.1773844709705 53379 27719 51823 ICX_20200511 143028841.03155056 16334.792692577457 0.26483141420880796 3.0208072005571566e-05 38551847.299008176 4397.427633860765 112612 27656 103972 MITH_20200502 2512238.3914011777 283.5124527102304 0.0040701685331956845 4.6086751494763437e-07 1702068.7136745448 192.7262156207109 97 2092 1209693 ONT_20200421 254363470.45573655 37153.00161405258 0.3991184067503905 5.829374993811438e-05 132405065.0452142 19338.59130960247 84080 16494 204987 FTT_20200411 72765688.67348702 10610.5032127308 2.522403071338884 0.00036777791049191484 2101247.8963456852 306.37155874273174 10202 None 14034 LINK_20190324 167646585.84891486 41889.229262733956 0.46041085436881113 0.00011496282710246497 3825310.7033605645 955.1654328535303 10779 6496 307556 APPC_20190314 7686767.045673501 1988.0954169541903 0.07360931969350491 1.9041092648076856e-05 818444.8144798446 211.71345700161243 25376 3415 1657371 OST_20190701 13636874.782866523 1256.7955179598691 0.021158271606995897 1.9501143171232987e-06 562935.7632346755 51.88462989300565 18160 754 618395 ASR_20210310 0.0 0.0 7.394346065314649 0.00013504821104178504 2596074.030620352 47.413949857159686 1951186 None 140044 COS_20211021 77306719.9774342 1166.3109924148264 0.02251925606054785 3.398586607658955e-07 5696739.418893305 85.97469758467071 None None 291886 MTL_20190608 23035988.096826095 2864.7342554099164 0.4939979774684554 6.153185589536515e-05 4867855.327822811 606.3348155513557 33165 None 939567 INJ_20201031 9824647.561404949 723.3869296968292 0.7310267389171622 5.386424551464219e-05 5061431.047373763 372.9414398644406 28633 1684 209294 FIO_20200730 18706726.677627295 1684.697887902577 0.19929279415479803 1.794799032309251e-05 1042635.3281525972 93.89807022155532 51320 118 1008888 MATIC_20190723 27766875.39466431 2685.6815850295557 0.012756641184267016 1.2339082152965526e-06 8132839.839537454 786.6630209896409 20893 1031 191906 SXP_20210617 200861698.9451399 5251.41608580846 2.324804889224491 6.0743220957791077e-05 291057783.24951416 7604.847753614166 None None 55454 LSK_20211104 526277666.6696074 8359.636790367613 3.6589026436926875 5.802809866079126e-05 20363422.252709743 322.9522046968245 199046 33414 177887 FOR_20210112 7947756.441988766 223.68932401215505 0.013671244588267305 3.845992513576344e-07 1900832.5004265949 53.47419189966983 16611 None 227730 TVK_20210610 41682838.68109478 1110.4785802734682 0.1895161579855786 5.060018057677343e-06 7347358.741230348 196.17202196389033 49042 None 58369 BETA_20211225 176191503.45556298 3465.194838240967 0.687946103287844 1.3543889701779915e-05 12331079.51755814 242.7672459971851 53291 None 51622 HBAR_20200725 211438028.20904872 22161.019194225817 0.04276383793016253 4.482411789191667e-06 8673554.644515991 909.1429926441323 40671 6585 140094 WAVES_20190512 248708418.0741793 34145.84596057601 2.489739453697759 0.0003421541453460596 61290909.37543716 8422.945093186147 140073 56779 41172 ONG_20190613 0.0 0.0 0.449312102238324 5.5183714783143105e-05 7256509.509816514 891.2316163219618 80393 16235 249314 TFUEL_20210124 0.0 0.0 0.02933653127659571 9.1538853624522e-07 7605520.053808545 237.31523689011132 80784 4994 50826 COS_20201018 21683986.27951246 1908.918273737522 0.007192741815565575 6.3289183168021e-07 168234.52916691298 14.803014211616471 13238 None 255499 AAVE_20210408 4377197714.561323 77713.00978885421 350.2759946174007 0.006230016943961569 691017913.6615635 12290.460599205022 166075 7972 14216 ONG_20210206 0.0 0.0 0.2464751934701978 6.48423502202046e-06 6786693.321739534 178.54338159128716 97333 16707 259663 AMB_20210128 2666546.986975643 88.21379959522939 0.018791222817387883 6.181135824338632e-07 301933.0423889062 9.931706749465548 20403 5465 518256 ONT_20210723 549790965.0680697 16984.907195945525 0.6266508333360821 1.9356224295909898e-05 128370838.69699743 3965.1662691407146 141648 19699 156257 XVG_20210724 306554489.1173665 9170.980879663652 0.018638485828420315 5.575102118799326e-07 9132192.264379792 273.1600888136183 321818 54456 103436 EOS_20191108 3582634755.305524 388614.13741850405 3.471726024397098 0.00037657675503513326 2633598757.36919 285665.42035438324 None 68979 87264 MTH_20190909 5462997.296936527 525.1848961836206 0.015799771960671092 1.5209840543210813e-06 661096.2771813892 63.6412283966416 19531 1988 715962 ZEN_20200907 63136527.47977824 6148.166558051848 6.387799126336778 0.0006220369496988138 2516567.6705467966 245.06062988791734 70062 6099 78884 PPT_20190929 12742242.04459019 1553.7680413436328 0.35173427023989495 4.288989851484574e-05 3028214.4935499327 369.2554956926974 23966 None 830282 NANO_20190818 135921984.70459345 13305.559959659051 1.0208397530746438 9.98709979439971e-05 1399836.27960025 136.94906157486474 98743 47376 238230 GAS_20210731 117577852.00147903 2818.1778624469134 8.375389865543124 0.00020037650903490827 68671329.7272732 1642.923080887986 407984 112490 119447 WAVES_20210418 1569842341.338469 26060.57603947439 15.701720037437719 0.0002605233350050411 159309305.5522736 2643.264016990346 175688 58036 111113 SOL_20200612 9341515.406268213 1006.7376384603891 0.5719983046317773 6.150773052663081e-05 1164520.213589104 125.22239123831474 50902 1919 125337 DOGE_20201201 453349206.1049365 23093.183704869556 0.003560698895231606 1.81378664830564e-07 99796545.00132889 5083.542478496191 152829 169299 135667 KAVA_20210723 275430134.0313401 8508.392014811141 3.92071783417096 0.00012110875904200269 80195939.01767284 2477.207252710188 124308 None 50166 XVG_20210819 537323332.8385345 11920.599894063964 0.0324583228813064 7.214212486373256e-07 43564587.41796542 968.2699616479256 324314 54545 161164 XVS_20210125 34776007.84301172 1079.5818576500953 9.579463046136478 0.0002969069325055115 27336865.704165768 847.2818258652263 None None 82683 ONE_20191020 15745728.291917395 1980.8011892648778 0.00565655815850006 7.115909102314673e-07 2579864.6732530096 324.54510316586476 70692 None 174888 XRP_20190227 13087395255.387577 3435724.0905310246 0.31638328237381236 8.305744908602104e-05 1029935582.5327955 270380.348690572 912440 197657 30397 ARDR_20210220 203398296.90867382 3635.523453951682 0.20360200172941414 3.639164456185918e-06 34325727.015881024 613.5350567670196 65656 6417 None DNT_20200423 3127410.5757963965 439.7016647874179 0.004163146008459255 5.855328497127404e-07 59646.98553921675 8.389153142499977 58449 6057 716172 LUN_20190704 5389293.671419535 449.05484991104146 1.9935567758813624 0.0001661101423234829 738170.0151881053 61.50691455858529 31291 2222 2096763 SC_20200721 149979032.63683036 16370.062989433512 0.003374224372230372 3.6831509304350715e-07 3389027.445124418 369.9309296236621 106776 30121 172459 SNX_20201229 1093384314.419011 40293.24182783994 8.015738747909522 0.00029524039695006743 176058097.57867515 6484.675243309025 49663 2792 47105 ATOM_20211125 8391670073.977803 146778.03204489965 29.658690334827252 0.0005185181190101346 506669333.43594575 8858.018569512655 None 46351 32360 ZEN_20190603 74662859.45491849 8542.219277572702 11.341742008581374 0.0012973146413501322 776468.6414716842 88.81564545978054 25732 1654 229974 RUNE_20210506 4317561732.550739 75418.97456206076 18.348983492105482 0.0003200711238672803 221729844.9934689 3867.7521679885695 1364 4286 74862 BTS_20190704 166957583.02337742 13912.864030363453 0.06160350895105481 5.133526901316575e-06 19022087.81428012 1585.1434630354959 13698 7178 171113 REQ_20190818 7799611.824495377 763.0612402703513 0.01068596374786833 1.0454423802635812e-06 64866.74883670809 6.346123747363061 41298 29551 589589 SUSHI_20210112 489938969.6309571 13789.31497509967 3.873151891396766 0.00010895945195099426 526551612.9633487 14812.942218929686 None None None MTH_20191102 5052552.674074936 545.6644193768141 0.014537883340996451 1.5700589749289633e-06 106800.61934625516 11.534228676859536 19437 1970 784910 BADGER_20210731 110612294.0172356 2649.664769060438 11.883986088030571 0.0002845003373105363 18406262.73446036 440.6423836068409 36099 None None ICX_20200417 125449550.91855389 17668.850450603022 0.23410702495176186 3.302461244851516e-05 20647288.138973486 2912.6365987647036 112834 27529 102592 ATOM_20210427 5294076184.703048 98269.87597813446 22.105823763334634 0.00041008008829006054 1106291678.066814 20522.564274155917 110217 25439 44770 XLM_20190227 1621465138.5056174 426616.30325501075 0.08442717557383767 2.221324941390196e-05 116921386.4298726 30762.65314969029 263121 99243 66683 LTC_20190401 3699609522.876328 901578.7176242449 60.51794728823778 0.014747776044033286 1754537891.4361374 427567.9041199022 440810 201047 239095 SYS_20200610 18808078.25938847 1926.0162192994694 0.0320091410433136 3.2778534821595772e-06 636957.967209895 65.22683279701356 57454 4466 931321 FET_20191127 16726118.421534222 2332.9646792530893 0.04921254206720049 6.868247491878633e-06 20513644.879966684 2862.944771349727 16010 316 506233 ETH_20190522 27208222408.161823 3419006.8873272915 256.0830401834705 0.032183121645529826 10173591139.714605 1278561.5204612585 442925 437519 37906 RCN_20201106 18721312.930922933 1203.8513901198555 0.036520651351387934 2.349336133957145e-06 1438849.684512632 92.5597279915408 None 1131 1716221 REN_20210809 373889303.24575555 8498.964396588724 0.42371338629596667 9.63420410315784e-06 35970480.640684456 817.8805848229123 88649 1187 110606 BTG_20190430 272790852.20522773 52412.58766735888 15.575738405069949 0.002992622570013356 17142265.279349215 3293.605005553917 73608 None 444329 GXS_20211125 45238905.29995735 790.787093814171 0.6032459857361092 1.0545918253873661e-05 7326917.572786127 128.0888320892605 53172 26951 1040210 AAVE_20210221 5468857523.677493 97879.13141429532 445.05092299931795 0.007939075896870445 2023133925.4594169 36089.8336655744 131437 6385 14216 LUN_20190626 6417412.8499009125 542.1147493486842 2.3738689428624693 0.00020053398418435605 689629.9123075309 58.256895075672816 31328 2222 2294680 YOYO_20210318 6361874.700367731 108.1530212915277 0.03642326079961858 6.179479654830403e-07 1641089.197692531 27.84231034309026 None None 1135739 ATA_20220112 95827735.79125391 2235.37399225158 0.5555094503982486 1.297977221588653e-05 3979328.334615978 92.97911190981483 None None 206696 LSK_20200501 169438501.90311408 19580.43761467853 1.2123920732052318 0.00014065356062861793 9183805.246947559 1065.4432148240342 176413 31290 170063 VET_20190830 225775483.66187936 23791.729132268152 0.004066463791745994 4.287559705039154e-07 26979361.22497736 2844.624420133881 113638 57403 133902 DOCK_20190530 7648171.029301871 884.4376876314502 0.014876488927317974 1.7202453175311007e-06 1705605.601726832 197.2279927246495 168 15273 233199 CTXC_20210314 2640636.0180447455 42.994866608883655 0.26421066722695213 4.306915070998218e-06 13971706.097117564 227.75367924696297 None 20305 470143 ENJ_20210806 1312778444.766728 32026.284014247653 1.407081869836396 3.438961257888876e-05 113573005.86215124 2775.767177977618 254160 34443 37503 QTUM_20210318 640890928.9819441 10895.261782462425 6.228618749075804 0.00010567319342811885 498764116.4989134 8461.907700742631 210787 15651 117369 RUNE_20201124 199186469.91468295 10876.21058826875 0.9166078399962135 4.992629711403793e-05 18247158.040309034 993.8961833569286 23671 1940 241480 NEO_20201106 1020137719.2380522 65598.72248008434 14.41781905966087 0.0009274835479742893 314062945.14423317 20203.347915817132 324322 100988 108774 FTT_20210325 3064208434.525425 57971.9667593648 34.3335031451354 0.0006507988222845195 65969502.814770564 1250.4658949907064 None None 3417 STEEM_20210105 60950368.1166223 1948.1491602444396 0.1633108297478495 5.219884073929475e-06 6141756.105348484 196.30819909351314 11892 3831 219133 WTC_20190405 55218495.861205205 11261.550872576488 2.002988070289641 0.0004087086855523902 6528620.118150826 1332.1615772651433 55249 20306 1086384 OG_20210117 0.0 0.0 4.44526207636812 0.0001228140984119431 4858704.246777918 134.23671569120188 None None 397078 WPR_20190324 7330874.806090861 1832.0450974579962 0.012377853668833013 3.0904278049937773e-06 276465.99385698134 69.02636090311826 35069 None 884505 BTG_20190716 494267364.99776375 45122.829042134865 28.155554044635295 0.0025746713425362625 18713081.387657788 1711.2088898329228 74881 None 299895 TNT_20190922 17383326.262640797 1740.691581697738 0.04047395444512593 4.052921131075217e-06 1534454.3805381176 153.65492867729392 17546 2535 560905 BEAM_20200106 30524415.72774003 4157.013671753082 0.5801027808274879 7.898075101894216e-05 30844428.6319967 4199.456059545626 12291 1420 354880 ARK_20201106 46095452.7096658 2966.4959516715026 0.3006345680991027 1.9339514160252784e-05 1398583.3867380584 89.9694382556791 63029 21682 111275 NXS_20190601 21679987.08345967 2530.710563596018 0.36260859322051014 4.238484686441222e-05 703127.7863758339 82.18769248397169 21329 3515 793300 ARPA_20200319 0.0 0.0 0.004947808447374563 9.183425681295178e-07 1161934.4196376726 215.66191381041597 13711 None 1589260 REP_20200411 107859239.8814729 15728.890504443216 9.747147295816765 0.0014211786793494566 23095770.485131994 3367.4690245734732 130878 10122 261589 TOMO_20210909 202078074.85910502 4360.102989402059 2.3992090366310896 5.182221034702097e-05 103251208.19558859 2230.1957636876764 52252 2266 153317 IOTX_20191220 15620032.622082286 2187.395796534114 0.0036324783530467856 5.083487388129954e-07 2146579.536186393 300.4039925157079 22171 1787 498444 ETH_20201115 52476765553.11609 3260272.130231878 462.7183970607933 0.0287518202038029 9774490045.968235 607355.1044667384 503810 493162 9859 FTT_20210617 2770684699.8460407 72437.99229961127 31.824251692717517 0.0008319486940064158 47926415.52891934 1252.89100880312 141536 None 3170 ARK_20191030 29107283.866455466 3093.16291632778 0.20456328970248988 2.1741627386810202e-05 827091.475134991 87.90587349932167 63160 21709 85415 SNT_20200907 114759454.32373762 11145.444005341664 0.029533703482793647 2.8742674394866174e-06 15490023.865855446 1507.5139919528801 111948 5717 113908 POE_20190227 10483819.034885993 2752.229065909635 0.0046090425501600875 1.2099732769474308e-06 1169455.7062185896 307.00739637325125 None 10988 525108 ENJ_20210105 128913530.80534306 4120.447415543722 0.1395844710776994 4.461521374126427e-06 21014178.37665955 671.6736128547088 70075 16061 75025 POLY_20191220 10701559.135028115 1498.3318339498287 0.0191053126186021 2.6737011567180267e-06 3055390.0381766832 427.58786743660517 34987 5027 311389 FLM_20210124 0.0 0.0 0.19572481713759327 6.107370819094301e-06 14660857.074810851 457.47540854089283 12755 None 124168 CTSI_20201231 8829029.3887873 305.76931298501165 0.043614832146496176 1.5126308225804475e-06 1624882.644023872 56.353479985225036 None 170 570588 NANO_20200607 134341032.57978025 13893.25114432203 1.0082008000236273 0.00010426588697177304 12921563.451768259 1336.3193863058718 98045 51681 257141 SUSD_20210804 234536393.42960185 6104.178525311501 1.001980907086632 2.6082699782510085e-05 45109636.412174925 1174.2550137586763 None 7370 46425 TNT_20190627 24873859.921118945 1916.374190948736 0.058359072412356515 4.480298006607343e-06 10193705.837651094 782.583376611377 17545 2523 824040 OAX_20201111 3815841.3885038625 249.4734480811612 0.0688827355102789 4.510252187206457e-06 991381.3097402356 64.91292320910027 12756 None 1447630 MANA_20190714 64838348.14819793 5696.771052916272 0.0489694603238833 4.300081978236365e-06 12004742.061319042 1054.154459735334 45431 6317 154801 OGN_20210902 413066409.661926 8491.588136557006 1.1731585428150728 2.411166023458707e-05 53832372.49744489 1106.4044866139843 119747 6200 114895 PIVX_20200411 15453087.490723807 2254.293605789236 0.24572257570660688 3.582086904657773e-05 485216.7598478169 70.73377756900206 63745 8502 213367 TLM_20210428 436856346.2426018 7929.827352130333 0.35210796718428977 6.392413166371114e-06 102990932.57838234 1869.769090133401 None None 35556 CND_20210408 91034586.50333497 1613.0175031887823 0.047208411769799646 8.388510906210934e-07 1936718.686798355 34.41375216283721 35234 6131 124180 FTT_20201101 342107972.86079687 24799.952174209327 3.696347082237525 0.00026788077316737557 6451349.729280054 467.54065973873475 None None 5993 CAKE_20210508 5893101093.347069 102836.59956123836 35.95368812138908 0.000627358852670695 580593167.7697203 10130.817800129027 591423 None 1709 BRD_20190806 16652193.946475238 1409.864293591149 0.27742751970459406 2.3489035944593718e-05 361048.6026014691 30.5690063238193 None None None SCRT_20210125 80319370.70151472 2491.6590767708676 1.152300776925586 3.574655360120511e-05 743044.7831480016 23.050657172828725 None None 296261 OCEAN_20210104 168716105.80482748 5043.312587021919 0.39440234571076527 1.198146610250154e-05 61337695.42620817 1863.3649788016899 35363 1346 63800 ATM_20210703 16046131.262214681 474.76446433521636 8.501975670522066 0.0002514022642024012 6188767.30276499 183.00100739306956 5000958 None 121547 TOMO_20210527 128326997.45652467 3275.3629583922325 1.5792230528760482 4.031103957133152e-05 14478141.080836067 369.567121608319 48563 2165 82082 QSP_20210115 20645910.193342347 529.27300638874 0.028936612102762792 7.376279288799235e-07 395909.3993981323 10.092191486171117 58317 8168 263794 BRD_20200422 7026175.805027573 1025.9784349840058 0.11253370011527311 1.643917595486981e-05 422116.0003214921 61.663654492323 186 None None STORM_20191012 8118395.5607318925 982.0729367504126 0.0012919080724739347 1.5628062777365596e-07 124162.05998028013 15.019741027107791 26261 2548 1678605 BZRX_20210826 117904393.36612733 2405.373341528093 0.40984669825461667 8.36238359395442e-06 22510435.07006534 459.2958628783347 29390 None 206797 OGN_20210212 82142185.07319933 1722.6518691361073 0.38847073019808565 8.140024261371556e-06 62647346.88713881 1312.7138904695344 71685 2758 192490 MITH_20210909 30759200.585315898 663.6706259061567 0.04967717304186572 1.072331789170998e-06 10628217.309332088 229.4207698455261 33025 2755 784848 ARDR_20190812 58840352.32475702 5104.978494745447 0.059027993016340013 5.112843276367752e-06 2099889.1770069655 181.88665599396964 67421 6549 897983 ADA_20200412 1036932847.9369895 150694.83951755555 0.03333771592009745 4.8438287448363105e-06 115182655.42002322 16735.551366725227 155126 77781 49277 POE_20200107 4136242.0725125866 533.2188443405007 0.0016429740452708326 2.118157334962867e-07 142581.44931089022 18.381905883224963 None 10550 664429 BTG_20210105 149553121.59553128 4780.148131194169 8.791320913341734 0.0002809959149384576 35587875.429473884 1137.4909089992116 82372 None 356122 WPR_20190618 8218195.357866535 881.6293272629908 0.013509046932302718 1.4498827531776362e-06 832304.259690573 89.3285512715251 34909 None 1193640 BCH_20211120 10874337918.630983 187068.5407488619 576.0051412145898 0.009903025419705445 2551817751.181932 43872.37933870402 None 693751 267338 EZ_20210809 0.0 0.0 4.8258009533440935 0.00010970510394194013 44960604.84312452 1022.0910218415668 None None 164218 WPR_20190520 6349531.774734845 776.904385590632 0.010581831666712805 1.2929868077982863e-06 388804.4863667318 47.507755511399104 35135 None 1131129 RVN_20190507 167218660.73310727 29230.7500011706 0.048008670887525265 8.39252110672545e-06 22228201.325587705 3885.76991074359 23893 6410 171456 KAVA_20191108 14542630.395516142 1577.3989416474267 1.0621546354383566 0.00011520897886003849 10406759.792659713 1128.7924836473717 6982 None 858006 ENJ_20200905 157594828.31123927 15030.141906326868 0.17107527247721765 1.631579950655487e-05 10753461.391214134 1025.579661630488 65285 15850 86087 IOTX_20200314 7627924.200103505 1382.3793300138802 0.0017772008575078786 3.194646667467669e-07 2648668.5759637468 476.11727192695264 22591 1808 497303 WAVES_20210206 889311080.6995625 23303.84022547102 8.89847997152859 0.0002331217104511081 216099853.30021054 5661.367738171659 157552 57401 119606 LIT_20210731 78990282.56956731 1892.174560542959 3.5663350400298626 8.53773737477528e-05 24984050.36375856 598.1133521379508 None None 511179 IOTX_20200518 12433140.720008524 1285.738752155761 0.002857135765200887 2.9578048673974377e-07 1404203.0950148287 145.36791705302048 22661 1825 642800 TLM_20210708 126701142.38046132 3720.360375054118 0.10193490712642551 2.999197116786487e-06 62920721.54764492 1851.2956157184803 50782 None 9614 ONG_20190305 0.0 0.0 0.5046902073201817 0.0001359288593208552 3227524.4477566783 869.2732893376967 None 11161 256269 WPR_20200319 2330479.589855294 433.03320574755526 0.0038366882825091836 7.121120811258402e-07 145206.5841556125 26.951202501288993 33560 None 964364 ALGO_20191020 100395140.04527585 12635.059475385313 0.2242166658260429 2.820482052333525e-05 103436295.9112348 13011.53128393418 12603 650 327819 QTUM_20190905 199855222.68972194 18926.246650596575 2.085217298245246 0.00019740532684319454 186439649.82738364 17650.045413337444 None 15346 240356 FOR_20210201 14435069.677113071 436.7875162162984 0.02546492419422142 7.701795257055284e-07 6775009.854196287 204.90828232425116 19871 None 253691 BRD_20201018 5694911.895952972 501.6800949978112 0.08004176384465844 7.04302681559671e-06 111891.53670212282 9.8455488182494 241 None None SNT_20210616 290310991.00879776 7188.308266206046 0.0747666917070556 1.8524545712058753e-06 10494918.651784953 260.0270198808086 132266 6000 121237 UNFI_20210729 36272797.977321796 907.1139618412227 8.52118824737917 0.00021298322374055332 19020277.50771355 475.40318350304256 20841 None 243649 CND_20210110 20237699.255312424 500.1202626519915 0.010084919568350427 2.4955521206267955e-07 238538.8701304514 5.902736052294939 None 5900 513668 TCT_20210825 18402983.154739466 382.1340746302596 0.03156502327214781 6.58006069742443e-07 4114037.1477801464 85.76142621677926 None None 1235757 CKB_20211221 567479376.9930874 12028.301647959217 0.019475062059616723 4.1310471822618197e-07 19834524.19318924 420.7296234998024 76736 14498 74070 GO_20210421 52071336.39197995 921.6896446188342 0.047525606481261175 8.430416704174008e-07 3090679.9401213983 54.82459188548902 19653 953 121965 XEM_20200113 293966658.7100225 36060.26845116362 0.03323954566247318 4.070100245430802e-06 21783312.20509888 2667.3127621104786 213584 18113 305996 OG_20211125 7546614.50954845 131.91671600199115 5.4833077659471146 9.585893122843783e-05 1338470.8509279636 23.39908513747463 767605 None 241803 TROY_20210207 9845442.825121807 251.0790698164212 0.005230240003466087 1.3300548910941097e-07 5691759.426599911 144.7419709088557 10617 None 869305 TNB_20200713 9544898.219702402 1028.5651304168996 0.0027787629529093505 2.9907488796569155e-07 1880704.8340589553 202.41798133727517 15876 1433 1208185 QLC_20210806 7278564.654809256 177.47065238263897 0.030553506508759314 7.460746300793938e-07 1186933.787550572 28.9832915322388 35105 5687 940522 ETC_20200310 806385614.630711 101962.69358586427 6.949126014733666 0.0008768416078656602 2139644623.1586955 269980.6317591278 231166 25290 362649 QUICK_20220112 99366082.9240837 2317.913030568371 274.45308407187633 0.006415003483967932 8230386.350603849 192.375164200008 66377 4615 4256 POA_20200913 8070613.171316475 773.9894832807672 0.028931216538039987 2.7706734826164805e-06 365417.15151870577 34.99512751131334 None None 497841 SKY_20210114 10420223.717833064 280.32212267624413 0.549548153674785 1.4757503184902441e-05 449239.2837712291 12.063820279815806 17239 3821 758913 BEL_20210729 82235222.70134678 2056.5471324862433 1.7147791145937632 4.284216623286148e-05 11654199.310773768 291.16936399202245 32830 None 593705 RVN_20200626 128551500.09116508 13880.987104876647 0.01986782659827832 2.1471417864391276e-06 16342518.041019388 1766.1571187936984 32151 8215 198358 DASH_20210429 2918706193.5536594 53303.09177771276 288.8179094904113 0.005274558833847728 1212926943.9507804 22151.16970521497 None 39844 49097 PIVX_20210620 45311165.21562019 1270.564707197593 0.6909777122362328 1.9407515562481717e-05 1041894.4128900324 29.263725406114112 67343 9823 321075 SNM_20190929 5843541.23949185 713.4033308327301 0.013353568028753707 1.6302580096179433e-06 6211171.586333516 758.2851419132394 30984 9839 16793543 ADX_20210115 44461696.23347466 1138.4120423781512 0.39652808774421655 1.010796257235507e-05 11306619.130612321 288.2188841710118 None 3746 12195 BAND_20200607 33792213.67925607 3492.239037425842 1.6447847325346674 0.00017009998307017667 4907740.544616688 507.5476243420949 14852 1176 520797 AION_20190821 26578963.411880646 2473.626048280798 0.07906504058779995 7.3583510716952385e-06 1176017.029305608 109.44845033391469 67445 72578 170946 XZC_20200330 28143810.35488153 4759.474097807496 2.875397621759868 0.0004865250854298847 29437326.368922234 4980.875555465475 63578 4098 90239 OAX_20190318 3504988.5911827777 880.2043257936232 0.14937893855700005 3.751338541617371e-05 124782.74503162171 31.33656761038756 14308 None None GVT_20191017 4555107.441201325 568.8987440137556 1.0277965669304663 0.00012837573811813033 588900.7115280711 73.55596034582094 21149 5694 109882 BAT_20200807 384794813.9288303 32705.857317421658 0.2589062614215278 2.1989762653113563e-05 164953749.7968566 14010.065986269541 120393 43540 16969 GXS_20200314 16565820.79272222 2999.275762602253 0.2582184626108901 4.641663026289914e-05 9404985.239634952 1690.6139014311848 None None 822093 PPT_20190901 18166504.019651268 1892.4898158138324 0.5020416936814037 5.230247849495407e-05 880136.5380978608 91.69222982045687 24019 None 732961 DEGO_20210729 52708369.656028725 1318.1364738051047 9.727624609386101 0.0002431375517706952 71101375.59699602 1777.1465372442303 119808 None 198268 WRX_20211225 540213561.1805787 10628.10312343047 1.1849913383061645 2.3303319521254456e-05 8307281.375654619 163.3659470680696 None None 612 RAD_20211225 277731075.2379325 5462.194654444966 10.8302930614087 0.00021298196160622442 12376833.421716023 243.39528447512632 25013 None 200348 XLM_20191203 1132525647.9997625 154964.43833813455 0.055970207066116086 7.660809610162612e-06 190870287.65012106 26124.987034571226 278504 105447 52861 MTL_20190623 28197837.335649617 2626.565408311201 0.6038904669979133 5.62988670773755e-05 2083765.4529304756 194.26310012501884 33149 None 940825 RCN_20190414 15520533.982313279 3059.4696536542924 0.03101098710510775 6.1114802851142345e-06 1492037.8508537605 294.0428783911581 18922 1115 1899234 BTCB_20190819 0.0 0.0 10319.998848958514 1.0001935848277448 102025.90392701572 9.888145927879759 None None 60594 AVA_20210127 67872537.87989354 2082.6603763299013 1.7626806974182798 5.409949995323088e-05 7407335.938184127 227.3430297547898 43400 9126 88426 FET_20190618 0 0 0.19858143111143298 2.1313109171404847e-05 37405242.48935831 4014.5849100624505 9654 271 385628 LPT_20211216 865413332.2565281 17738.92537313895 35.23675435065639 0.0007220512173050067 30639334.053653076 627.8435360617382 None 2255 79616 BCPT_20190812 3943675.805911242 341.6988068412726 0.034083236572031494 2.9503800375623978e-06 141353.34935685268 12.236106136917387 10952 3051 1188214 BTS_20190813 115867121.3223775 10181.930807828141 0.04275230340700726 3.7568983348976432e-06 16126832.791329 1417.1603968123557 13649 7150 153233 JST_20210125 42047827.75083437 1304.4032934870672 0.029287606761898108 9.074438610845229e-07 80684747.3330708 2499.926991160059 None None 184317 ATOM_20200325 405306124.0040843 59971.23425833786 2.1460165129333366 0.000317587092796186 148777802.63970438 22017.49591775681 31804 8326 84919 PPT_20210826 87945692.40603049 1794.2331608008956 2.4275978236233415 4.953860893061897e-05 1622018.9045779558 33.09961782385647 None None 917945 GRS_20210117 30274185.55144044 836.4179073765214 0.3945042354524419 1.0899398317673516e-05 12031963.618593086 332.4201674854051 37583 106774 3770172 YFI_20210204 1014114044.4840822 27060.297992695432 33978.45139765619 0.9058671279400567 543879417.7425892 14499.851106521428 76169 2972 19848 CMT_20190513 25837423.197719406 3723.4441026642967 0.032353487777652366 4.6542001378987335e-06 5278214.815835762 759.2958228352247 292025 1638 877566 MTH_20200129 3368448.9127548155 360.5817186562475 0.009637103370083494 1.0306624985437228e-06 151840.48456792787 16.238934791410696 19194 1943 1201858 GRS_20200414 11392760.112951137 1662.8723034439508 0.15210405355913328 2.219733134200482e-05 8823489.79122668 1287.6575075135136 37472 106843 None FET_20190807 25040513.098756734 2188.317235691906 0.08161567860059837 7.1132735466555185e-06 8477575.057481753 738.8691907014233 16252 295 429380 QLC_20211028 7928038.925411081 135.4599598033866 0.03370805497962474 5.758348585844547e-07 327370.4279245321 5.592470529154038 35262 5799 940522 XVS_20210421 726427640.5479473 12858.145771750516 76.49956230131987 0.0013567618127018784 221962508.77474326 3936.627174033928 59118 None 10756 ENJ_20210704 1071043417.7342901 30911.885198550746 1.1485902292501906 3.310165532621115e-05 70098922.46934122 2020.2073038995832 237776 33792 29114 SUSHI_20201031 60001794.02941717 4419.037559137564 0.5999008737181044 4.420644274372829e-05 29891007.3195019 2202.655741159735 11952 None 57777 VIBE_20190122 7889364.82543074 2233.7684375765443 0.03996518512312333 1.1317690729675138e-05 943842.9116941142 267.2856922604252 20644 None 1525453 DUSK_20210727 40234201.2727879 1070.8265877172369 0.1111913200209608 2.968278902425351e-06 6110970.601279786 163.13382290722814 28128 13635 415059 LRC_20200610 103924298.96784712 10631.411753153257 0.08941198155891342 9.15194049122656e-06 26758516.633173935 2738.920976703159 35013 6851 564975 POE_20200404 2371082.3667351073 352.4813977717846 0.0009421467989106247 1.4003059386826923e-07 26925.334435127428 4.001892884858513 None 10417 753171 LOOM_20211011 100078974.08298264 1828.9988090552172 0.12064368079315224 2.204991837281765e-06 5027509.875502402 91.88726806456556 35517 None 466265 KMD_20190318 121768849.2549459 30577.98765539471 1.084254620968629 0.0002722860942399127 1315480.05799492 330.35314778916137 95906 8305 295665 ICX_20210114 363667952.06451684 9766.67450387077 0.6283219538285928 1.681249388733794e-05 54526860.46876657 1459.0171531344465 117647 28136 340142 OAX_20190816 3887963.5714855716 377.87207331727774 0.07443775093390123 7.23462212577286e-06 164075.9934865685 15.946583526417148 12300 None None TROY_20200905 8583034.618634583 818.1114241777294 0.004517150872684896 4.308180396004952e-07 3649735.2651459826 348.0892793506368 9866 None 412863 RSR_20210909 512326676.6139213 11058.558651485891 0.03869893918673358 8.377959894678134e-07 85985354.05085611 1861.502829035498 None None 135884 MANA_20211007 1026789337.0869975 18497.639179949543 0.7752578851994139 1.3975134005299544e-05 81283150.85127982 1465.2452393017882 179252 37852 12204 XMR_20190515 1411892761.2758396 176635.03471722105 83.14524899943973 0.01040189761318478 70513987.30967894 8821.661912367761 317199 157735 117450 AERGO_20211011 94037407.68840812 1718.5858292884336 0.37279258161262296 6.811027714935535e-06 39526186.161367744 722.1547924752518 23175 None 741422 YOYO_20211120 3660681.2855555513 62.97379310443177 0.021003201296789144 3.60069086667647e-07 491955.54627647594 8.433856426255074 12320 None 1060628 HIVE_20210430 238715925.03376225 4454.406960302809 0.6417118987377677 1.1973515523995419e-05 13076401.079987217 243.98876136968616 19343 163 113776 DREP_20210429 0.0 0.0 1.4491243443663813 2.6464742527247106e-05 6201799.094663526 113.2608232578886 3827 None 197188 QKC_20211207 162621530.80293164 3221.865106741927 0.024671856607518534 4.884822071015257e-07 12393436.215976883 245.37971230375393 78446 9618 438055 THETA_20190801 136490713.0697597 13578.40382753389 0.13659953367937672 1.3581404376006949e-05 4768701.794890484 474.1280272377378 None 4018 242693 STX_20200113 45834881.7453496 5619.450116378624 0.09778735638643136 1.1993164841474042e-05 303864.91643888125 37.26761993637358 35072 None 32309 VIB_20210430 24394392.555524275 455.09751984805786 0.1336211378850998 2.4928125720848625e-06 19970843.600341868 372.57256441627806 32230 1238 3723426 DGD_20190810 45739207.89740348 3857.3793863715205 22.860015644665733 0.0019273483586587003 3146874.821929637 265.3158299288278 17195 3360 575541 QKC_20190929 20910100.454129096 2553.0839510191845 0.005535996273029395 6.744226019751397e-07 3300973.5942536904 402.1410222643736 50849 9237 326472 SNM_20190830 4366555.731263013 459.7111119960808 0.009978384102896407 1.050524563106789e-06 297915.57780424925 31.364560532869348 30998 9906 19008991 MITH_20210420 65682804.77282228 1173.8627328458854 0.105293614004467 1.8827973556188487e-06 46568833.939164124 832.7160029970266 30420 2617 258183 OCEAN_20210218 451714951.0139766 8655.182107656485 1.0705058123345648 2.0531173724204785e-05 134768740.08003286 2584.7224585741883 46702 1778 79767 GTO_20190726 15502702.28403225 1565.0092716399458 0.023363925752827676 2.362701655592176e-06 3483101.374367957 352.2323033755814 17453 None 852349 RCN_20210105 19449997.522392035 621.677891551089 0.037782422644714986 1.2076349531878924e-06 642133.4433991686 20.524432701199668 None 1128 5449742 TVK_20210304 45334542.552819766 891.6622676150827 0.5110137117409652 1.0085490033883632e-05 18157344.430367205 358.3577350016158 31999 None 118350 RCN_20200927 23073377.825226046 2148.852614225249 0.04501403301736615 4.19322128254163e-06 200387.6239157234 18.666837717855415 None 1136 1130490 UNI_20201129 743811283.7156703 42027.511722395066 3.462034852545152 0.00019543726699287813 183770822.29365265 10374.14953685448 146089 None 3614 NXS_20210220 66220088.64834609 1183.9002227102944 0.9739995980148638 1.7413421886718276e-05 1922997.0957717483 34.3798496260739 24405 3642 477796 NMR_20210513 326318867.5651773 6505.262461461557 57.309044357127895 0.0011424726303458255 41469442.113535374 826.705507688893 None 3233 699246 AION_20191213 21423078.086393476 2972.367719110854 0.057563237064225746 7.996802803267329e-06 3825707.567803353 531.4751317504347 1215 72550 312605 MANA_20210613 883585870.8099278 24635.5306960778 0.6678815226592586 1.8692894678287422e-05 90442031.99250558 2531.3222797282483 139998 33156 11364 SRM_20220115 422558788.89026225 9803.844378151845 3.179480827325154 7.371768528122785e-05 51374137.46308145 1191.1323586385865 186209 None 27670 XMR_20190324 882787058.6056039 220557.5088472371 52.38091044523109 0.013079312735231491 143114782.3155576 35735.21305814135 315629 157500 112141 QTUM_20190430 186565285.54702443 35845.664564524086 2.292941343137193 0.0004405510568253722 157757425.33404258 30310.5008163324 None 15261 376893 IOST_20190509 151670818.2786514 25480.527297891953 0.01120273687565194 1.8806622671017563e-06 32267802.37553073 5416.965429389818 197700 49454 105349 CLV_20210804 130019669.4606518 3384.1098936418066 1.0094888933053885 2.6278141181772316e-05 21591919.443330463 562.0621596533458 60865 None 108852 SC_20200321 57892988.99091093 9368.229322117442 0.0013197674489924855 2.1284882450094775e-07 3285586.7655855366 529.8912936401224 107693 30186 162098 BEL_20201115 16644604.611130016 1034.3820214404252 1.0406298385631607 6.469140285232608e-05 11323513.812455364 703.9332975084278 9839 None 193192 OST_20200927 4960347.216844707 461.9633572995185 0.007171378616854164 6.680400627456675e-07 135483.14177435197 12.620748585105533 17595 748 745692 KMD_20210710 104024436.84225836 3058.5530325312952 0.8197786702465144 2.412157001192921e-05 7979100.500159564 234.78096995246463 113841 9416 230876 BCD_20200107 62105103.657330245 8004.35748730131 0.3338941249227008 4.305354177107442e-05 1588002.4382819682 204.76289999103386 24124 None 4380689 GVT_20210115 11107166.106969425 285.2018427361215 2.527974718369318 6.444101849758462e-05 2046463.7146521737 52.16674246473628 20960 5440 383832 FIS_20210710 19368693.00516204 569.4832534103238 0.7176867785746679 2.111826829977991e-05 1711819.2962130844 50.371081448600535 23563 None 421397 ICX_20210804 667423564.195066 17371.484608532526 1.0202188861764558 2.6557455069636972e-05 70248638.8726861 1828.65176859884 142605 32650 233721 REN_20190321 15766684.852139803 3904.3476026032777 0.02092136518574039 5.180815293269926e-06 185719.30904988307 45.990184103136826 5807 804 2336942 WABI_20210314 20033866.779714417 326.1916538167023 0.33859297260803484 5.518527300203698e-06 3880735.3536901614 63.249818297311606 41657 7444 721795 UNFI_20211011 44932245.307186745 821.2879754792251 9.547034033082939 0.00017449013470744468 13024951.204423876 238.05566025450784 None None 224888 PPT_20190123 48392668.88855198 13547.66186313154 1.3089671279606048 0.0003664745651726982 1571799.5359332443 440.060364515984 23397 None 502199 ADX_20200407 5589007.810382797 767.1945719049387 0.06072014052439304 8.334961015634874e-06 132777.5872851335 18.226176754763152 52078 3764 33366 BCPT_20210106 2683826.5958931576 78.98206887706543 0.0228505351624014 6.699753456020988e-07 2202282.62500751 64.57070052480312 10380 3212 2139942 LRC_20210127 546739406.5669472 16777.74188022734 0.43462553131340226 1.3343638783045049e-05 127547022.33277716 3915.879927068326 52389 7885 177149 BRD_20210310 18763241.528167658 343.32075527549307 0.23659359928777893 4.32907571321766e-06 1862954.3570079717 34.08744144403748 621 None None WING_20210731 31841278.568681076 762.8479539124943 17.55461757928283 0.0004202541626747306 3412413.358578641 81.69251834924447 11375 None 415343 MANA_20200903 133560919.79176538 11707.337934930458 0.10040363532292726 8.79892574101198e-06 69090616.23512256 6054.792734330211 51254 7252 80457 ELF_20200412 28339284.695037674 4117.656731619945 0.0614266890072046 8.925037414871238e-06 30935790.412763096 4494.839154689617 82480 33431 699270 CVC_20211202 379915539.89304256 6645.598091073128 0.5683378872712674 9.938994773934183e-06 36090101.11526872 631.1374525770531 112086 10247 159287 HC_20190706 210509646.03940105 19153.259375339036 4.761486763783757 0.0004333177979168261 110912120.89956322 10093.527163833187 12936 841 542452 MTL_20190507 20798440.88382467 3635.6829029957494 0.4598613153210255 8.038921492044183e-05 1120891.9591986444 195.94521567379834 None None 819230 RCN_20190513 13748503.509043839 1977.0407209664836 0.02748351997835873 3.949611988082652e-06 1488379.5388929797 213.89260452291228 19026 1125 1766498 ONT_20190830 464873731.02155733 48987.38210981055 0.7153381032563549 7.542463142166539e-05 61939139.885981314 6530.80938259612 81408 16278 248344 TOMO_20210620 142695570.25655308 4002.74582828511 1.7429744314496214 4.8954984805358626e-05 8573912.587368093 240.8157875775529 None 2184 106191 ZRX_20210610 811142190.4074523 21609.935776858892 0.9619998089186692 2.5685073274760214e-05 227916313.66403174 6085.28937604894 None 19360 60005 BCH_20210826 12198234461.218992 248857.43418824972 647.7060453907781 0.013217369109649492 4842344073.620273 98814.9631031283 None 610762 398111 QTUM_20200229 201235591.21765342 22991.038779320406 2.0792264506121607 0.00023863251881905837 541224356.0309263 62116.24101254467 179318 15185 121059 SYS_20190524 40290894.474884175 5111.354866082483 0.0726343810139186 9.234765665672323e-06 1222515.8749414806 155.43118107505535 62011 4595 1089755 ETH_20201130 65121266717.863914 3590051.80555489 574.7511196548439 0.03163232390096751 13623124682.204208 749769.9051887647 514127 498460 8793 RDN_20210902 27437727.56405368 564.4338372929813 0.5374411948691702 1.1045906425964304e-05 1454380.0181792767 29.891541143419904 31026 4729 1634106 ZEN_20200229 89312981.37900978 10203.951527444322 10.436161173062702 0.0011977567074506926 1750026.892096191 200.85033313184806 56956 5039 48577 XLM_20200711 1820147373.0611184 196024.32179636587 0.08886808927101106 9.571297691931546e-06 462236406.07865095 49783.9244988753 283683 109621 67238 XVG_20200319 32893398.080042325 6105.209607166879 0.0020291569160173304 3.7662354822606944e-07 604450.8645450313 112.18966238455293 296026 51902 327824 XVG_20190803 85872965.42389207 8159.111895259937 0.005415270669602388 5.145053774388346e-07 1087546.1504483484 103.32786240205857 303923 52925 396565 LUN_20190914 2655180.8169616847 256.52195596837504 0.9819512093540562 9.48681322491826e-05 84214.7084440456 8.136139577903835 30828 2193 1370867 ANT_20201231 104672349.2049726 3623.4803257611843 3.0198687176261907 0.00010473378613689872 12153294.476998549 421.495324344188 76498 2689 131347 ELF_20191113 37203883.81508367 4227.237508225169 0.08070681476006263 9.170734294571913e-06 10217223.64761227 1160.9855199840656 36136 33521 873376 KEY_20190105 6727677.77106808 1765.7574724148337 0.002736839454306659 7.188926492954715e-07 261355.6025610731 68.65094744146863 23574 2811 615143 MATIC_20210220 776591525.693727 13902.008943675308 0.15705579011204124 2.8078848682760082e-06 371302824.34629434 6638.249893788359 379 4557 35829 MDT_20201226 14441744.403556436 585.1036883279695 0.024087365394622213 9.765333071182285e-07 890590.0938576221 36.105687583237554 13512 71 1448510 TKO_20220115 79132260.10755645 1835.649359523948 1.057265227826661 2.4513005828271785e-05 11564506.661859112 268.12649441424463 359672 None 22586 MITH_20210203 8043334.386061197 225.87942731347846 0.013030035944222078 3.6651834701522554e-07 12385776.828622911 348.3961570911366 24402 2166 386896 PIVX_20190729 29816880.482347284 3127.7623128975524 0.49171813628356953 5.1580763324537324e-05 9067865.890772566 951.2104798608653 63331 8618 284209 XRP_20210519 72852567696.53607 1709178.0992828463 1.5980937497920007 3.7353576358512545e-05 13934083456.641142 325692.93913531373 1739050 311435 10817 POWR_20210420 183870285.86321688 3284.8360970042886 0.42746260073034326 7.643630260871299e-06 7890981.729614101 141.1018101546384 89915 13440 239820 COS_20201228 19432715.74716639 734.0277819323617 0.0063773567597679975 2.425006329222181e-07 748669.4970817605 28.4683504045476 13911 None 464399 SKY_20210722 17293910.156323627 537.4101875621598 0.8265198225143349 2.56241292882548e-05 461115.1169773616 14.29569267710058 19640 4409 638153 LOOM_20190124 26598845.119045284 7492.772995959765 0.04536499917557074 1.2773153142971426e-05 2117049.7455213335 596.085111920262 16715 None 360086 CTXC_20200404 932670.6803509148 138.6934601825288 0.09044726563911379 1.3441687228857384e-05 19036613.998229094 2829.0983641414464 16639 20065 374531 DLT_20200704 3031157.131406876 334.10943202435453 0.03692829224388412 4.074017652850315e-06 81735.90935915669 9.01730129846788 None 2563 4351611 GTO_20191012 8695781.446529692 1051.9186406535816 0.013122151797666627 1.5873715509444065e-06 2632916.5862933085 318.50087924107413 17243 None 746491 BCD_20191011 97834204.49117865 11425.9266248882 0.5199607644233395 6.072552613904616e-05 4309235.931127881 503.2699331943611 21311 None 1712744 KNC_20200208 59853461.91404046 6110.626315082674 0.347437028210207 3.543964426667153e-05 24871815.8653263 2537.0016289686478 99824 6819 161843 DOCK_20220112 70448412.58601576 1560.1781752227776 0.05537140263231036 1.2939390201971862e-06 6329155.873956566 147.90201007918583 57834 15287 193608 PAXG_20201115 77539803.59530157 4817.386475344683 1905.551518485655 0.11846318775405386 2915796.88606859 181.26751788979735 8453 None 79585 NAS_20190706 77967983.9512817 7093.931549871411 1.7135820648633342 0.00015591058351365736 18779387.286387403 1708.6460519666632 24340 5137 449898 TFUEL_20211225 1886178773.9046779 28765.286079276702 0.2171502763441042 4.272154683179029e-06 22871712.58059633 449.9717691295137 232001 26891 31111 KAVA_20200907 70676694.25293069 6869.516436482076 2.396573271402041 0.00023323835848585638 22009921.349402323 2142.0408827868528 None None 95209 THETA_20190414 88183281.35517445 17382.004736564202 0.11873647181796423 2.3399951900273094e-05 4806569.4705115305 947.2531286572575 None 3947 286208 QKC_20190419 68558109.62169854 13001.99451105737 0.04341658951228469 8.231341143378108e-06 10452831.646168413 1981.749929242268 49266 9139 169862 YOYO_20210421 6667528.231804371 118.01238085174232 0.03809613726209812 6.75655947482095e-07 1496835.8111951014 26.547206381586232 9795 None 783243 TROY_20210429 40984914.827691145 748.7484264023009 0.02178804126712931 3.9793957773918615e-07 17995781.96851739 328.6772679489146 15864 None 495335 BEAM_20210825 69575973.97355743 1447.8473333632867 0.7279134013848219 1.515754823517843e-05 9565751.360462585 199.1903671179733 22487 2641 247381 ORN_20220112 164454666.79182398 3836.2346977668544 4.7939486313144135 0.00011205265656184548 4549683.956724599 106.34327004209486 94280 None 65758 QTUM_20210325 754519392.5404477 14274.803453579494 7.260153094675145 0.00013761774518793892 1030924671.0783591 19541.396282190868 215131 15781 117369 ELF_20200417 29192050.038438328 4111.5329843672 0.06326218451161489 8.924162470447118e-06 30645236.58649662 4323.010220947632 36370 33430 612782 MITH_20210430 80461067.87814543 1501.4351203736148 0.13025938006232077 2.430121853126003e-06 88107101.83681375 1643.728025473489 31115 2651 258183 XVG_20190626 151559456.79571283 12803.074829991523 0.009600334677896318 8.109939549317914e-07 4344511.098382901 367.00514681376427 303940 53030 395064 THETA_20210114 2106639261.430973 56575.10299709078 2.110404652611678 5.646972082647091e-05 138027106.78099895 3693.297480539003 79478 4911 64313 ALGO_20190902 124826470.81217563 12833.835063482074 0.39197893050366805 4.029899337906749e-05 53984294.73358779 5550.075697301093 11830 586 192636 POLY_20210723 164467374.2441223 5085.187556166766 0.19208155459756385 5.93308658683855e-06 10714606.313325955 330.95674977245386 47410 5670 180054 AKRO_20210221 113908436.89796032 2039.6540352603272 0.04434061212041996 7.886525595176581e-07 41522445.98984063 738.5279936683783 None None 165746 VET_20190302 252355141.76455507 66061.39871674831 0.004555442250437773 1.1914533318416866e-06 8826117.370466612 2308.427232780234 104611 54760 826243 REP_20210708 110633873.88124456 3256.105295606292 17.104800239831373 0.0005035111487035974 17517796.779488444 515.6684588842272 151441 11231 153452 WNXM_20220112 135239043.17965713 3154.7217239832285 54.530811106924745 0.0012746937071904947 7180825.543567799 167.8565373779352 38346 None 96635 BAL_20210909 286978462.84118426 6191.94167699919 26.49166251177817 0.0005722121274832266 74952947.62681228 1618.9616489191158 None None None GTO_20200312 6499168.8305197945 819.3894299708916 0.009779234237692261 1.2319233636183575e-06 9490199.668143397 1195.5126968456752 16914 None 1191106 FUN_20210718 153131675.42056903 4844.980372296565 0.014677659790931859 4.652847347439477e-07 1149615.7111090613 36.44304669953755 4786 335 132450 MDA_20191030 14442946.349913869 1534.81809766352 0.7354743026168292 7.816851334041954e-05 1071586.8844068474 113.89161167309365 None 368 2061213 ADA_20210217 27928267753.64383 567571.1948696222 0.8746051613561255 1.7782799718149782e-05 4708239792.834361 95729.6949073282 213130 181539 16033 MIR_20210804 227316590.0355222 5917.284070974236 2.92518982376234 7.615881918296892e-05 11118614.158221874 289.47882915581187 52388 None 15673 ADA_20210523 47192676745.010704 1255611.5207271657 1.46893510816599 3.9113117516706784e-05 6665471245.216616 177480.51542173867 462285 469773 6251 XRP_20190205 12318981576.56354 3555987.553027782 0.2992280869548261 8.637494472367744e-05 493327591.8826044 142403.55547224343 911919 197646 28357 CVC_20190228 20652647.45427222 5403.936364156628 0.060182341103892686 1.5784816601344074e-05 2477910.3679431695 649.9142438648342 88272 8205 370829 TOMO_20200719 51917072.82785171 5661.391664034536 0.7273358380580328 7.934458670492311e-05 3256696.675077728 355.2708916382616 27875 1590 130769 FIO_20210106 13437930.003914205 395.500104977755 0.06350731728901139 1.8636915111612463e-06 2341988.8953875224 68.72821920196048 55234 161 541516 ZEC_20190704 730401942.3005488 60963.54870115747 106.06233119456414 0.008837576754494227 456523631.49587625 38039.54323975884 61 15279 191872 SSV_20211221 0.0 0.0 8.21027010700891 0.00017415612380254004 344914.90512130735 7.316329686445792 None None 361558 VIA_20190708 10869193.158981018 950.4112097394252 0.46955221616119 4.105803285212958e-05 269640.5144080653 23.57758885548736 41028 2235 1727246 1INCH_20210930 450464357.31123865 10842.473062865361 2.502943145443214 6.018800314206983e-05 94021207.08427817 2260.9177989968534 270664 None 4207 DUSK_20201129 15019934.500370579 848.5007497190439 0.04995396898351001 2.821722003387784e-06 708082.2381272883 39.997046724983726 18121 13347 1043988 CVC_20190405 29514833.1405655 6027.68842420262 0.08613951556224517 1.759824652634029e-05 3058973.6913133343 624.9463186082272 88875 8212 424604 HARD_20210218 90622658.39275812 1736.8275163880019 1.773573933033866 3.4015279611073355e-05 45498283.64683982 872.6091488183995 17122 None None CHZ_20211104 2418429230.8648443 38373.09724598234 0.4525592678629117 7.1813639092945115e-06 825135551.9786947 13093.53071308789 404823 None 50785 ATOM_20220112 11159365170.109425 260314.55783991783 38.86218624240033 0.0009082957117654642 1696201245.861521 39643.995021215225 306226 53774 29857 BNT_20210111 153823387.36722842 3990.2266905990564 1.5737112406189004 4.1033181024885225e-05 56836027.33239759 1481.9510327373746 89906 5313 101085 JST_20210708 79787830.2842652 2348.234449268661 0.05563152283969013 1.637615849141243e-06 41455300.465138294 1220.3127580787425 49024 None 109468 ALPHA_20211104 517244874.33550286 8216.155757638679 1.1609703044130937 1.8411125192569382e-05 27621519.538097065 438.0329559609111 85756 None 56040 CTXC_20210115 1314981.5514714054 33.66922453518736 0.13135819489568626 3.348497074214122e-06 9331664.461046807 237.87667887928072 16972 20076 682759 PIVX_20190523 39721096.4740504 5183.0380196555125 0.6613627013613853 8.62984240170093e-05 3565547.6093124123 465.25323972441663 63036 8606 309234 NXS_20190901 13294513.155397587 1385.0032077503095 0.22265925066242648 2.319631962435095e-05 95707.62697081412 9.970682552367851 22177 3539 525271 DOT_20211011 35710512172.95275 652629.4342398584 34.34298721225934 0.0006277275315846828 1612950927.4838629 29481.818166220615 None 31431 24089 LTC_20190804 5915187458.998335 548210.9478939037 94.01015443294511 0.008711043491991106 3253089006.426312 301433.3929055538 451499 207202 141428 VITE_20210106 7948831.688823586 233.94702654832375 0.013841333900020477 4.0618904393683155e-07 708021.094578291 20.777651458393006 None None 1009411 VIB_20190318 4892448.519593073 1228.5675009884067 0.02899358101956857 7.281083964202175e-06 1068999.9518000975 268.4552281255393 32662 1124 2263235 SOL_20210723 7561860534.399218 233611.51340410238 27.762978035532324 0.0008575827079136564 375801784.2134339 11608.304819896128 361763 27646 7993 POA_20200109 2532853.155320582 314.82374712785867 0.011473549687170804 1.4298531993447458e-06 118057.90362758734 14.712575951851234 17524 None 389159 WAVES_20210324 1143598738.066555 20965.43926241289 11.451836779069817 0.00020976310616613292 400868604.10362184 7342.703636410682 167603 57794 97613 FIO_20210523 38045879.98577481 1012.145755362847 0.1601638947059438 4.262644286752281e-06 2772932.3668771638 73.79955596684658 None 452 96484 POLY_20190729 26139513.382615253 2738.283157632199 0.05361689652389276 5.620113520755644e-06 3003630.830065793 314.8400473326326 35255 5089 307913 DGB_20200801 325108425.5210068 28685.261391273634 0.024363142908491717 2.149336842903448e-06 19074255.628010273 1682.746783788372 163224 22668 120835 DOGE_20191203 274086947.8776423 37502.94660555002 0.002239423398671786 3.0651657717653537e-07 49563487.001038715 6783.902676690154 138072 144778 124996 POA_20191220 2783238.6873022276 389.68294937658214 0.01258077099144144 1.760621384413795e-06 238632.2753998629 33.395495980821686 17578 None 392538 ATM_20210804 25662440.118853435 667.9336892752546 13.591886386657869 0.00035387174167915967 5179531.4192279605 134.85176025333305 5015437 None 101859 ANKR_20200127 5075191.85139153 591.3974728595286 0.0012736696653116294 1.4820924761989158e-07 1034459.5529471692 120.37381136654247 None None 5243 PERP_20210916 824445263.8009049 17107.012040090558 17.819171050139907 0.0003697734262943665 28391612.093467638 589.1667829149477 27081 None 107279 TNT_20190813 14429170.110781332 1267.82962515351 0.03365278103161011 2.9572693620435117e-06 647256.1110325698 56.878231393539956 17555 2544 649538 ETH_20190524 26015066752.046535 3302383.488070387 244.6460957973966 0.03110901701237786 11366080280.52015 1445302.3812142785 442919 437629 37906 BTG_20201101 124931655.01796775 9053.848675560614 7.125112788829317 0.0005170344300656382 3729826.804079599 270.65520687816195 78509 None 360586 GVT_20200107 4401047.297015495 567.0232796528003 0.9913084423869817 0.00012785270704662976 747094.700763297 96.3555598122219 20872 5636 224170 STMX_20210508 435799515.3059128 7605.284092054939 0.05183454099031761 9.044651568040967e-07 58750168.39490214 1025.136506552417 60727 4197 55160 AVA_20211225 98096991.75455593 1928.1265113317438 1.8881262222918966 3.7130742843589516e-05 3792538.8031943613 74.58176331813817 143655 10999 47102 SFP_20210314 211091082.37738258 3440.847824320106 1.9329447847048151 3.150905719299186e-05 31985753.46557411 521.40182341609 133356 None 45661 STORM_20190312 14833387.36881889 3841.1640018007633 0.003287229792478841 8.501470239463527e-07 4278635.845366989 1106.5455596719883 26742 2566 3298265 SNT_20190608 107339524.38966477 13340.812671409785 0.030456950358587427 3.7885201014735924e-06 66675294.61581431 8293.696215467122 111381 5751 342560 AXS_20210421 467904953.4998012 8282.160209221118 8.510426231871119 0.00015093709001547917 555316485.6428907 9848.843300781682 57505 None 19374 ENJ_20210523 1108356782.9721541 29489.01485913417 1.1873453149134967 3.161631929542044e-05 145619956.25830632 3877.529961183357 197508 32064 20878 GTO_20200502 3761275.637078507 424.4498270738189 0.005657430804111576 6.405052819309924e-07 268279.01104192296 30.37317283292145 16757 None 966534 POLY_20190228 39767272.020875566 10407.119558910468 0.08840955319778078 2.3188339925571244e-05 5576906.551179293 1462.728858640321 32763 4991 244935 WTC_20210128 9621433.21319627 318.05472766359077 0.3306849581532379 1.0875247980103713e-05 1949482.0366397956 64.11268507529428 54815 19062 903762 MITH_20200113 3837326.371066592 470.71744387128547 0.0066992206020562725 8.203030117649196e-07 326185.33536697406 39.94058844889366 90 2085 1348503 NKN_20200806 15191205.339918323 1296.7874556840216 0.023376658715074747 1.9947997430874684e-06 1663837.013200798 141.9801558009682 13219 1014 209272 ADA_20200325 941771018.347032 139349.41273780036 0.030292189964117498 4.482914500962521e-06 115754274.56160042 17130.37309601175 155427 77301 42201 DLT_20200317 1795979.413235192 355.8335816870127 0.021849732251169367 4.338915666246485e-06 111361.73373232874 22.1141918608962 None 2587 None APPC_20200306 4833930.719480094 533.7740092734084 0.04472565014130282 4.9372924652679015e-06 457310.65641451406 50.482809105484996 24935 3235 683942 ETC_20200526 790957004.7784401 88882.21707391998 6.784516183622384 0.0007626740832384081 1529011680.3702257 171882.2020650788 231721 25494 359190 SNT_20200704 88694014.91051917 9779.751251227224 0.02283937416951444 2.519519178461592e-06 15944051.657075409 1758.8636025764558 110550 5702 151682 SKY_20210107 10566938.310634099 288.73529993691534 0.5600267117834213 1.5189362435694705e-05 511868.0269935672 13.88317524442665 17184 3818 758913 BTS_20210724 102036782.38319194 3052.618501051324 0.037649500448250196 1.12602168300007e-06 11927818.104131062 356.73731805800315 6294 7182 164427 VITE_20211002 63511961.961352825 1318.771110077926 0.0833605254385594 1.7308288760946821e-06 7428174.985176099 154.23247026559488 36928 2529 396626 CVC_20200625 19511183.592626713 2097.112421871972 0.02914554325131633 3.135643505181286e-06 7676789.7685608985 825.9127569132875 85304 7993 100053 STX_20200317 34812862.77092646 6897.398465299118 0.05899972790181023 1.1716154722387677e-05 455527.63241941365 90.45859042995755 35821 None 40997 AMB_20200502 1282201.60890564 144.69299878178856 0.008818298940087267 9.985010412805887e-07 297700.35729343345 33.70878201869565 18922 5473 863223 CKB_20210212 225029613.54424652 4719.237082491577 0.009396943598409781 1.965001209112284e-07 24686509.439075343 516.2212626747478 25759 743 367403 VIB_20190227 3986867.9885216374 1046.6390084988004 0.023826587942481957 6.2549942591091265e-06 1068845.0486837388 280.59492444043065 32655 1123 2777721 VIB_20200217 4944589.384180016 496.01499493131894 0.027019933696030094 2.715998065503545e-06 2394837.3562318105 240.72500324739423 31597 1113 None XRP_20190512 14025656335.089315 1916366.594046151 0.32831731110684287 4.5075564462402287e-05 2458965760.207966 337598.00621364213 919709 200548 40096 NKN_20211002 206810930.2899183 4294.8191754195295 0.31813663276848964 6.604826503739659e-06 9545652.249088513 198.17704242862825 31392 3615 224199 GLM_20210616 295996559.1998686 7329.342107286202 0.2960637347224071 7.330788436637541e-06 2091682.044752473 51.7918162491966 158037 21000 155421 DODO_20210729 140762022.08046642 3518.5838541170647 1.0256217752346966 2.5634949690869662e-05 32393247.67117648 809.6544890385803 98751 1042 27217 LUN_20200531 2493769.3939099167 257.3292558616825 0.9217003713887463 9.518881562830885e-05 1113158.1861365628 114.96166502096924 28736 2131 3091330 QKC_20210916 157981324.10923672 3278.06894200172 0.024147176289205215 5.009123840117638e-07 11962990.7827152 248.1619449458975 75590 9563 529258 HBAR_20200330 117997981.36399664 19942.485722280755 0.030884708742295142 5.232315112977094e-06 10727933.19895264 1817.4666135354737 38211 6383 115268 EVX_20200629 4740703.60327496 519.9629566408194 0.21765413862096625 2.3857435014784027e-05 341920.90562153456 37.478523669460245 16640 2835 1214977 XZC_20190922 46328887.448008694 4637.254637175913 5.502626421778556 0.0005510103267202813 19093935.69984931 1911.988011163119 60795 4046 176312 QKC_20201229 34012119.895042405 1254.2951460402578 0.005341693105575692 1.9674837747012451e-07 2135561.6360017573 78.6582603242811 63388 9211 106409 NEBL_20210731 18542229.659995917 444.38943426312017 1.0216937769056502 2.445311130281467e-05 1139182.353184839 27.2650705194651 40407 6112 2415227 FUN_20210421 365400533.9799378 6467.432229799615 0.03540654002681798 6.279544612173338e-07 9836611.006077157 174.45770639681464 2605 196 255008 NMR_20201031 126120847.71601704 9285.066642653712 24.266417603846655 0.001788022525018127 2265972.6147463955 166.9636673358216 None 1920 1008266 NAS_20191012 22938562.332610223 2774.278433602663 0.5043846274166158 6.1002227331977797e-05 9536098.482639993 1153.3326272801662 24053 5082 1274941 CVC_20210117 102723191.32201442 2832.2559152437 0.15308193588589997 4.230012268679206e-06 42693594.84906638 1179.7239756634426 86909 8109 160531 GVT_20190221 16614411.22892877 4185.200073171717 4.198985503795452 0.0010579977150139196 1929467.4468291702 486.1584180497437 20618 5797 148821 CRV_20210523 609059095.626885 16205.24979190779 1.6372249557337435 4.359559625051437e-05 344242811.7023101 9166.407205410549 122183 None 25482 ASR_20210902 15241486.488715751 313.32595152677726 7.501849470878423 0.00015418380293152765 4167655.0937326844 85.65686557069968 2014792 None 67408 CELR_20211202 624948269.7797079 10933.427493108227 0.11062368141107186 1.9350635080659725e-06 83272496.62506616 1456.6281594438494 93792 5226 43614 WBTC_20210602 6825969155.548242 186034.0163281174 36729.140865017725 1.0012875025273658 294059579.2957894 8016.473427173552 None None 224812 ATM_20210128 0.0 0.0 4.356585070566999 0.0001433043730743426 1376887.3328783216 45.29097282299863 4822387 None 267747 DOT_20210508 39477322692.65792 688932.0518418605 39.929559186608884 0.0006967315073838423 2614452242.387992 45619.61837116774 363944 23540 16901 GRS_20191022 14387970.410554955 1752.0891450390316 0.19547625137375246 2.378564355881841e-05 1092242.5014868136 132.9045888571094 38207 106955 None RCN_20210221 48269957.892366216 865.570940116345 0.09456691653471565 1.6925157788206406e-06 1944104.9899920772 34.79470931081499 None 1138 1423891 DNT_20211007 112916089.9003316 2034.1865786342003 0.1504671830529307 2.712352084150576e-06 5362134.476100092 96.6589280576185 None 10258 638945 FRONT_20210318 94849723.9094632 1611.6787548483228 2.5973329813415202 4.4065704065650256e-05 55587152.32404832 943.0777731465828 None None 142533 MDX_20210708 872269014.6097338 25671.736426954154 1.6629930216054154 4.894530724785255e-05 52940009.27806562 1558.1334293980592 3630 None 12360 OAX_20190701 7766436.600092929 716.0638974852167 0.17357556461324927 1.601553484143349e-05 1307076.287806331 120.6018017248953 12325 None None ADA_20210421 40395164223.48392 715015.3450487744 1.2597323605466642 2.234204627579967e-05 4665784591.156305 82750.25593792845 342632 345248 7301 COTI_20210509 256732094.57964507 4376.91346600759 0.38138264913751235 6.495519791821185e-06 94222184.86650011 1604.7454387688038 None 4303 74171 CTXC_20210703 27633174.834352143 817.6324851111989 0.15405897431685037 4.549701240885021e-06 6884394.856030591 203.31136149722477 20080 20587 663987 ETC_20190603 1061809014.567145 121426.28836660893 9.569956428115885 0.0010943319041032203 1115079458.949991 127510.19680236685 227935 24596 668165 RLC_20190513 45200112.509543985 6502.128562787668 0.6465140870459426 9.290948869255633e-05 2273487.225938032 326.7191542199922 24824 3300 1063788 GXS_20200414 26404884.16014642 3851.943842933107 0.4069124995395054 5.942569460912451e-05 7831069.215268639 1143.6530658952884 1 None 493162 CVC_20210105 55921587.631448224 1787.4148647517477 0.08379341672597973 2.678278728626917e-06 22741252.076101873 726.875858242481 86541 8052 183713 ZIL_20210519 2115631437.946412 49582.8847910582 0.17621296932518266 4.118772510001458e-06 194914808.02188247 4555.906163701489 273360 32279 31314 BQX_20181231 10653452.195331372 2804.199420136454 0.12013628497122698 3.16091744512611e-05 560147.5257074619 147.38095874006774 61065 5830 314166 AERGO_20210930 62599687.24109033 1506.7461201738558 0.2376595053922672 5.714972424896845e-06 10960497.596812492 263.5659004067322 None None 851798 ORN_20210408 342663501.1817846 6083.666710561611 16.3306821673807 0.00029061759651813335 29508357.74574021 525.1249101151127 52157 None 65177 MTL_20200315 10915341.895810014 2110.7047295880584 0.17146607330625757 3.309452198636784e-05 1644183.207347674 317.34241215167896 34748 None 606546 ARDR_20200208 55911462.47400208 5708.1753165600785 0.05633172905239596 5.746009424578624e-06 2993415.657073792 305.33759333445573 65031 6411 1227502 DENT_20190811 35095285.328495115 3100.870892653769 0.00048137825190379895 4.2532545204101084e-08 434803.2738861177 38.41737724609178 46607 10015 266120 SNT_20211120 347320935.87826276 5974.792398652273 0.08957165165688437 1.5397208941153998e-06 10823825.856132941 186.05965745495428 140363 6204 192396 WINGS_20190213 7774872.777573468 2139.725477436482 0.08700518627870539 2.3943953297127768e-05 189999.5205821198 52.288143292078644 37354 1221 1583228 TRU_20210519 79896637.91357887 1864.8293654602728 0.32033214711535357 7.487741494131333e-06 4260745.759966842 99.59463360185096 24682 None 92654 FTT_20200520 304256943.6664645 31170.3141280269 3.0445808767459956 0.000312201651414278 8264472.185337731 847.4670139449433 11475 None 13105 BAL_20201106 74199486.50479594 4773.642959728975 9.068182022597897 0.0005820165017475243 20485257.4193645 1314.7903108808964 27512 None 62865 GTO_20201224 9187509.311913647 392.8934083256587 0.013843866337892983 5.937625995953395e-07 22543798.34913132 966.902163443642 16442 None 1147835 DGD_20190401 38530295.301005356 9389.665047719987 19.264820456353434 0.00469469422460123 767243.5746464795 186.97158309447514 16504 3315 526457 CHZ_20200806 70842745.94141288 6047.445361141325 0.013275587607507603 1.1328453339533074e-06 8711824.390773403 743.4058591671729 27770 None 264812 LOOM_20210429 122502482.83095151 2237.982966066273 0.14744490618292175 2.69278056975633e-06 8176771.62538103 149.3320612164441 31985 None 252037 SNGLS_20190608 10346262.901232872 1288.7193610724364 0.017519090669175334 2.1821590606458874e-06 770580.3599377044 95.98265949684615 4 2179 None APPC_20190530 10452733.600660305 1208.7401339973687 0.09813774581130942 1.1348149768907102e-05 870571.7203981263 100.66848576946377 25595 3379 1307105 VET_20200612 569988802.7187452 61431.37268210643 0.00891064500563053 9.582551551967273e-07 474441485.806968 51021.67119512031 122051 62821 306632 TWT_20210704 116891356.79550649 3371.8440985221173 0.33679098213216013 9.706822722859976e-06 6169835.313193603 177.8239347005744 910168 39818 2918 TWT_20210711 110753384.38695706 3284.7701095367966 0.3191425277156579 9.467528119465188e-06 3890590.2847488024 115.41637269663758 920448 40536 2918 GVT_20190523 15571719.822087595 2030.984915278723 3.5051738556725005 0.0004573753237482198 9247518.1361646 1206.6695620677942 21431 5776 174958 POLS_20210819 131220621.87568834 2912.7478929947333 1.7750599876477364 3.94371850117003e-05 35383367.58616965 786.1257780262102 None None 25468 BTG_20210611 1252209519.077861 33977.04272699296 71.51623902030067 0.0019402909918865058 131139457.57553658 3557.9151211023295 98926 None 157405 CVC_20190205 16311904.402526107 4708.581522024059 0.04759820826748462 1.3739661439839185e-05 447048.4034772148 129.04464127053063 88484 8227 325133 EPS_20210508 262103499.8805094 4574.056436739951 2.236145081704703 3.901853076373517e-05 41060387.32905611 716.4633454589181 14461 None 33734 HNT_20210304 302162456.6973232 5943.081062590792 4.197677213710456 8.284637130401954e-05 4549011.968312574 89.78039887448277 23199 4856 41694 WABI_20211216 10742534.038080668 220.1816598054929 0.1817920523314264 3.7253745260255936e-06 1136770.653408607 23.295278202928383 45845 7949 525909 SC_20190723 120844521.05664873 11676.84975783996 0.0029055395851247104 2.8094416927501795e-07 2588678.0594947203 250.3060053521845 109619 30807 213896 BEAM_20200701 26656028.709260635 2913.372050590609 0.4109190034577683 4.4927837855547006e-05 10148598.650305824 1109.5972461366669 15331 1532 452746 GRS_20190929 13610482.574968578 1661.7112654512882 0.18523825801299762 2.2614641507281782e-05 983505.8675283289 120.07040474814168 38320 106974 None LOOM_20200314 9342411.628547559 1699.453409940091 0.011338598514098023 2.038194827770419e-06 26565536.47142692 4775.346703182569 21601 None 487535 LOOM_20201030 15094427.25727683 1120.5871846986304 0.018017634476566628 1.3399237713614366e-06 3223061.8497545114 239.69057617807658 22419 None 390789 PPT_20190914 14219252.081359189 1373.1376270130224 0.39231261428878195 3.790205116184268e-05 1751587.7661587493 169.22415112183407 23999 None 732961 NEBL_20200913 9021482.081761673 864.8075064343172 0.5362697127767386 5.13572690857032e-05 151945.4329402187 14.551451070113409 38810 5943 419992 BQX_20210729 449978602.5671412 11253.693612381761 2.0262896556899426 5.062496826920002e-05 1767671.055988662 44.163622347141164 None 6381 24773 LRC_20210114 501109917.6455008 13457.818948634884 0.4078966106250478 1.0914403405790093e-05 145258818.67999917 3886.8019591841953 49497 7737 277317 LRC_20210617 358861724.8533514 9382.274395069237 0.28826627198842986 7.531910284270333e-06 41358550.3301173 1080.6289907770608 80062 10968 248927 SYS_20200317 7638879.83017735 1516.9273008348632 0.013145551366026114 2.610441084944921e-06 179617.1575390903 35.66834091210946 58770 4509 831215 BNX_20211207 0.0 0.0 74.27206440343082 0.0014716257365492995 23782705.38724305 471.23022113035336 None None 25932 COS_20210828 91737352.3176094 1870.2313286936765 0.02674051986716802 5.45118059704602e-07 11034239.568130743 224.93815728243717 28598 None 429015 ARPA_20210602 42610898.61556257 1161.3115190185247 0.043428565156984046 1.1839231335192993e-06 8760775.200974928 238.83092592407232 41803 None 459767 WABI_20210318 22689338.511228465 385.8353228411126 0.38449303527954376 6.5285920367916835e-06 2518888.888859918 42.77008016391715 None 7444 540994 OXT_20210318 0.0 0.0 0.6191865541332422 1.0504964766501583e-05 34122712.383748166 578.9174343918415 None 2862 118033 ALPHA_20201229 32412269.55896097 1194.0545893588994 0.18575799916286204 6.841947714899843e-06 17080323.962878052 629.1125229288456 None None 104236 REQ_20210508 115668463.52884798 2018.6346508135591 0.1502271125544866 2.6209721060158728e-06 2584069.7973786704 45.08357209136356 43004 27622 445930 TFUEL_20200417 0.0 0.0 0.001667548263464205 2.3527677645453864e-07 290786.2429129128 41.02744812180073 67815 4025 358410 TROY_20200913 8099232.040276078 776.7200427310585 0.004307671638143714 4.1253726954023296e-07 2046553.49608193 195.9944169759139 10000 None 412863 NEBL_20200207 13243583.078051016 1359.7225701822183 0.8377794462155452 8.603604588976584e-05 10664363.023620982 1095.1803969768384 39762 6026 684994 ANT_20210724 118223246.33055171 3536.8664179128214 3.3710372735654133 0.0001007816040344201 14412628.152822021 430.8845218008412 85753 3063 128582 CDT_20201208 4710794.429817689 245.2522206434131 0.006976397958299336 3.6357188315242153e-07 60429.82021908589 3.1492732592008252 None 293 459975 REP_20210105 92994053.96075216 2972.3575710768832 16.308048650544336 0.0005212521641049613 15166291.16059654 484.75830912136877 136854 10449 135410 NXS_20201030 10732253.152968077 796.7498580229081 0.17943370977123269 1.3344119873386887e-05 18558.684917432292 1.38017163300236 23158 3516 597688 PLA_20220112 352105124.40836513 8213.557704791378 1.1615196853977585 2.7147297962019976e-05 47912227.26051026 1119.815295269552 None None 78767 YGG_20211225 490866185.9269105 9660.881287193237 5.586667563818938 0.00010986400920431407 57443723.57731758 1129.6533584171984 144926 None 43136 REQ_20190909 7663362.501458314 737.2717286969644 0.010494208880069982 1.0102376419756362e-06 116557.05512947177 11.220505125760043 41082 29410 564071 BAND_20211207 248430675.69791773 4921.886709474072 5.979443939144835 0.00011838800861639271 49632006.93798232 982.6723897444986 116917 6342 265509 DOT_20201015 3867261708.4269414 338846.6002867013 4.1946440236628275 0.00036747411530742096 168709011.56224796 14779.84649436128 68531 5244 31375 NEBL_20210112 10306433.835894236 291.1198217984076 0.5945053207713141 1.672461492591556e-05 1291885.2011286768 36.34329544659751 38273 5883 781583 SRM_20210318 264883967.4523974 4503.075385940491 5.313741307300651 9.017151874995562e-05 107992641.37425616 1832.580835871129 None None 85799 SNGLS_20190318 9603507.250776328 2432.5968841405825 0.016265684908893602 4.120146254337287e-06 502850.13359631633 127.37343100117833 None 2185 2467008 MDA_20190922 12106630.530844783 1212.2903163594412 0.616830717286685 6.176051931008222e-05 230432.52436051102 23.072184914915454 None 366 3013477 DCR_20210722 1471009372.447421 45711.780367009684 112.32076288133031 0.0034779215275013518 24269662.049711667 751.4904452443394 47465 11427 137794 LTC_20190302 2871295566.090625 750602.8564778093 47.19205563496668 0.012343437545903195 1005597837.8155407 263021.6874505975 438433 199850 247801 REN_20210613 365650451.08858836 10195.05022494209 0.41225343861836766 1.155140748197508e-05 31406422.47384941 880.0129957978004 None 1170 81558 ONG_20211002 0.0 0.0 1.2330534799095512 2.560210072535463e-05 16903789.939336464 350.9762874996093 152833 20352 107360 WING_20210204 18788835.266271446 501.3117030855182 20.457728579290208 0.0005454009686887722 7798893.901711409 207.9177202986403 None None 427230 BQX_20190430 13682624.020425256 2628.4391566248155 0.11635510691596568 2.2346512133980612e-05 541750.7423188654 104.04562255754648 None 5803 418149 REP_20210429 240649175.53746533 4394.96650505669 37.74801913825115 0.0006893906009622895 35246396.32276277 643.7035610719518 147714 11023 149141 ETC_20190421 684598743.0488701 128907.59081958627 6.233076745786129 0.0011735529476984722 354498711.5506337 66744.40647258337 227614 24400 713652 WABI_20201228 4013756.2022261387 151.17907932389477 0.06715852622444454 2.5537202526119385e-06 635511.3934728433 24.16548437726914 40937 7488 1416175 LTO_20201130 42062969.820789166 2318.327786317052 0.15421595340996522 8.492209555382108e-06 11394698.636441167 627.4718438749558 18438 640 1429266 KMD_20190904 82331869.00293913 7747.551675127931 0.7060669643264992 6.659976004750069e-05 8419607.082753154 794.1793622089058 98419 8426 213183 SYS_20200308 16811122.05275684 1888.7984656448707 0.02895199223465862 3.2528749918401646e-06 367558.0199694397 41.296650037699074 58877 4512 856942 TFUEL_20190805 0.0 0.0 0.006459141653504845 5.897923563282108e-07 612704.1024983142 55.94678298289953 None 4019 242693 EOS_20190920 4076919884.1111016 397777.1894250155 3.9695548097277418 0.0003870741238290572 3456503231.709376 337046.0981285644 1315 68385 87912 MDA_20210430 24895556.646134414 464.4359581376098 1.2690030996970554 2.3670577664957137e-05 906892.2304072707 16.91616275699103 None 376 1136941 ADA_20210206 17202094510.163548 453869.07573403855 0.5385518589400373 1.4177423312818985e-05 5138347917.095156 135267.4442394056 192940 134819 26016 OAX_20191213 2812365.5664459937 390.22409652986056 0.05352309061075978 7.433827908113667e-06 77995.22610563869 10.832765483224438 12153 None None ARDR_20190901 53059085.869732544 5527.374663564926 0.05311222491632245 5.532910368052714e-06 2004321.3115325356 208.79807206267654 67126 6535 930148 IOST_20200607 64082175.03864417 6627.2361808561 0.005333973570778196 5.516276970105067e-07 53980555.49796741 5582.549129193997 191942 52187 420210 FUN_20190725 18565312.588682923 1888.6222059169322 0.0030854475901063477 3.140872478772161e-07 177961.89912603906 18.115868602899777 36146 17514 408436 OMG_20210814 786055287.6879536 16479.25653450131 5.6060718721993865 0.00011749734686700165 344750398.03095794 7225.6043132191335 326039 5018 264742 REP_20190314 153079343.42344236 39582.011712549196 13.90580085969288 0.0035971211745689114 5801496.758470275 1500.7180848228563 122902 9797 251259 APPC_20210125 4254630.664505683 132.276236476449 0.03864931789970233 1.1989750780502565e-06 467909.8504060017 14.5154502045 24248 3117 531818 MDA_20200319 5431197.93886392 1009.1867205160946 0.2757318991268862 5.1177474441998066e-05 253755.87426074376 47.098593998766624 None 372 1815630 TCT_20210430 27670570.29784717 516.2971166200387 0.047805473379005994 8.919884121852417e-07 5340020.3735379465 99.63788573466469 None None 341028 OMG_20210823 878319220.1700286 17803.50933422989 6.2504841523062895 0.00012685215268608418 300277769.9502998 6094.0689703081 None 5049 356595 TFUEL_20200321 0.0 0.0 0.0017388103111329524 2.80431019144558e-07 1735387.4758230986 279.8789927457262 68345 4026 384607 CRV_20200903 131025408.22490095 11484.99985132474 4.379681763158318 0.0003838157301710231 238361349.85481545 20888.923096801176 30253 None 18839 CTK_20210201 32089564.67780341 970.7721377399276 0.916721784175837 2.7725994530966983e-05 5961712.992178343 180.31034570094423 None None 214497 XLM_20190730 1631308395.9202425 171870.31971161097 0.0833678002832826 8.764536700347021e-06 156004224.00379646 16400.873503251252 275491 103163 67443 MATIC_20210117 159713889.54138225 4401.568396153777 0.03289809501240734 9.090513829298583e-07 49378931.67994344 1364.4554833440145 73940 2699 46459 DCR_20200412 136397259.38535666 19818.32284500005 12.017283224015957 0.0017460602896383884 100047448.40867776 14536.469973257379 40610 9768 206207 CTSI_20210429 187090978.7890288 3417.942346624197 0.6023990725132919 1.1002669020495335e-05 49534441.29816697 904.7342328151753 32757 1090 161196 BEL_20201229 18661810.849658255 687.7030451308701 0.8950982300860125 3.297742422795546e-05 4021872.904991267 148.1748086643761 None None 227684 EVX_20200511 3373176.572033453 385.2818931000557 0.15510928490098586 1.7705323480931417e-05 461583.0167801961 52.688506884771435 16665 2850 1393959 GVT_20190608 15493147.96458858 1927.9540392518984 3.4846004370227157 0.00043403807651722564 1343788.785681432 167.38088349691182 21330 5785 170487 THETA_20190622 125512605.0180894 12394.94163240344 0.12593754307890728 1.2406112780321296e-05 4287458.194278585 422.3576909532506 None 3998 231431 DODO_20210930 187019652.48663616 4501.478333194204 1.1425494508837968 2.748721226798967e-05 32930128.8522491 792.2260529501417 108260 1113 33646 PIVX_20200418 16002814.075108198 2273.1499932372485 0.2543875143052243 3.6134955621463177e-05 138997.28993392142 19.744132950013853 63924 8492 261496 NCASH_20190325 5286626.158094773 1323.7998243473673 0.0018257805412138994 4.575463110789868e-07 481734.73652233067 120.72423089132771 60446 59518 708822 DUSK_20200106 10250404.573778525 1395.2629780946115 0.03960333567927845 5.393165560579636e-06 244148.00420530982 33.24797230788008 17900 13341 809800 HOT_20190324 206427853.68210536 51579.36050601523 0.0011655991092618652 2.9104563369289745e-07 5764315.12755214 1439.327411777438 19685 5777 221294 FIL_20211125 6414495191.184935 112126.9861288187 50.37775622114825 0.0008808291648356519 527405856.3402777 9221.420222257173 122903 None 41408 HOT_20200807 141293754.23216358 12009.344197176955 0.0007946765180003337 6.74944975099666e-08 10381079.907661034 881.6993532682912 25956 7226 587004 FIL_20210823 7669512114.699055 155462.81908573958 77.41026569936272 0.0015708902897485228 858197423.6170259 17415.442089850418 None None 44704 TRX_20190922 1201447867.341085 120258.00749920722 0.01815454514514453 1.8179213134099895e-06 739665646.0547689 74067.06871528336 465744 71270 69613 FLOW_20211021 4416876100.624691 66637.35657890147 14.12749137197505 0.00021392766721306807 234501876.85453466 3550.9800113623 103787 None 46061 OGN_20200719 24795644.25909328 2703.891428155889 0.3206398700506057 3.497839187769497e-05 7271794.1773752645 793.275229153593 64812 2327 168509 PHA_20210724 122264128.52264714 3657.1372173397976 0.6711744152234103 2.007349196187215e-05 18462923.45065727 552.1893222882532 107590 None 155093 CELR_20210708 178393233.00055546 5250.088673456971 0.03166540958477944 9.319781749654683e-07 69955305.11276388 2058.928605157984 57008 None 195750 ZRX_20210114 380607407.0969148 10221.60088007518 0.5066353453230991 1.3556431689919302e-05 200254356.67060405 5358.359877324585 164627 16342 98378 ZRX_20190411 208242064.13407722 39236.33721724232 0.35432632847210443 6.675820511026647e-05 30081894.700657252 5667.694255720595 149185 15794 212447 TFUEL_20200312 0.0 0.0 0.002409665250350987 3.035537188551056e-07 3942774.003114995 496.68463745180316 68507 4027 385146 ONG_20200610 0.0 0.0 0.13381035840644462 1.3697042718420665e-05 6265603.677811797 641.3572331299317 85530 16476 148134 ONG_20210508 0.0 0.0 1.0854990094142198 1.8938301846925124e-05 64634378.92551923 1127.652229218132 130990 18780 138836 CELR_20200117 12573643.03602745 1444.5792710653989 0.0034813050484397102 3.9952838089010365e-07 3750671.387564671 430.4419307914903 18891 None 865409 BTS_20190819 110438504.96141526 10706.359023784385 0.040749268800681214 3.9504002873745345e-06 16506107.94261125 1600.1694135634775 13637 7152 133964 TLM_20210718 208587147.83014753 6599.680531298941 0.17019721230242751 5.389569281395698e-06 209468890.41297364 6633.170319921288 53044 None 10364 SOL_20210727 7706970297.480305 205742.02454283286 28.096697946304417 0.0007529862841326452 755245025.2497616 20240.426339753703 364578 27896 7993 MDT_20210124 12931451.109502347 404.26173574135646 0.021263248831967098 6.634955512269265e-07 1423682.8962736893 44.42440924715791 13776 74 1359138 DASH_20190902 718371168.1482409 73762.39577103392 79.6300624224041 0.008176419711852114 238394569.40898895 24478.36906336191 319656 30276 81581 BCPT_20210127 2574163.72762204 78.98789355999999 0.022155895623446463 6.8e-07 128634.09723860571 3.94798692 10423 3218 1711405 ENJ_20190929 49811988.5249537 6080.38774008858 0.05686769588207673 6.934353321590943e-06 13086172.802318508 1595.7063923750547 48492 13746 26747 EVX_20211202 14205354.940819701 248.48340788933734 0.6535671240266191 1.142915750015948e-05 2244487.446863484 39.25013911239634 18776 2809 1161258 ENJ_20190811 61004291.91599974 5384.043712178517 0.06931560859871487 6.1224861927643e-06 6656921.376688855 587.9903536741172 47115 12750 22336 STMX_20210511 364262111.4959566 6524.081214011521 0.04300442570744569 7.696486120686276e-07 41693879.60449176 746.1938170656147 61559 4245 55160 SUSHI_20201228 338383619.6961265 12786.777361538887 2.6389825455111375 0.00010034799081562094 289434766.4047172 11005.831520297706 None None None ONE_20190729 27732447.017972395 2906.910145011697 0.010683643212191769 1.1207039791879181e-06 1864066.2040051024 195.53876620610768 69430 None 156927 GAS_20191030 24432344.79783621 2596.2881316045 1.7488377407182334 0.00018587195470890993 5708149.8433377 606.6800506699943 None 98558 172955 STMX_20210723 148742546.27230266 4598.989610266148 0.01595717424273479 4.928911402334941e-07 13611498.620929336 420.43703813104975 68853 4644 85845 DASH_20190627 1552204545.8844924 119383.61524742974 174.38168459299612 0.013428133301724246 800459896.2198887 61638.825282668084 319985 27914 110566 AKRO_20210828 94870317.11422811 1934.2381997521013 0.035056763216591014 7.146485872032385e-07 17708016.445903875 360.9862341554621 44723 None 223104 IOST_20210809 613350191.0216508 13942.20532890594 0.02695268859556542 6.128380916366712e-07 84443249.67976297 1920.03257121664 250557 53592 221575 QUICK_20211207 99715127.6274375 1975.963843278027 277.70450065958414 0.005498317761902095 6124299.699626899 121.2560319969309 62975 4155 5061 SXP_20210624 162161566.109348 4810.1997972439785 1.8785506487809067 5.576182152306784e-05 212172891.84062433 6298.018599886004 None None 55454 BNT_20210814 991582301.6137137 20810.87579805163 4.250294797678057 8.908496465725329e-05 72629060.9930481 1522.2843684136546 126704 7692 39422 TNB_20190510 10206377.251922673 1652.8368679239916 0.003898736962599838 6.315465176391669e-07 1241423.0566793785 201.09497406052688 15765 1504 655962 CDT_20200502 2647898.5983450594 298.8220499751563 0.003912154521675922 4.429754978918093e-07 72793.69034901359 8.242471264126538 18967 289 282391 SNGLS_20190723 5848535.327044059 565.272289985445 0.010128162357684425 9.79630020964323e-07 1038246.7829945012 100.42273038991651 8 2177 None BNT_20210401 1283734468.119222 21825.052558003335 7.415718700933328 0.00012620002114395747 185341231.31348282 3154.12008652173 None 6786 30846 TROY_20210508 43106874.41637635 752.2534275317622 0.022836909093879823 3.984271509414607e-07 21199170.57177068 369.85412949321676 16216 None 481033 HIVE_20210304 115164959.70530568 2265.555857061112 0.30850829105379196 6.088794142515492e-06 19374049.561635654 382.370921328411 11592 133 125647 AION_20190719 28497857.505219832 2653.598989043767 0.08542831551094433 8.00905339285538e-06 560590.6216661506 52.556347314175895 67727 72600 240336 TOMO_20210617 149630092.20197904 3911.994557633847 1.8322707090394557 4.7897852568044746e-05 18997102.109825037 496.6080566520137 48942 2183 106191 PIVX_20190807 24625717.65020034 2154.0008602923353 0.4070679025871687 3.547829770963423e-05 585556.0411976745 51.03456063042781 63287 8616 295552 OAX_20200913 6456537.954591495 619.1961340704149 0.11757370036642019 1.1259802833951822e-05 367885.84827478783 35.23170661521766 12755 None 1276581 REN_20210420 770300677.0119156 13761.3941127927 0.8709424273448808 1.5571930476875268e-05 160625636.83829296 2871.89046154856 72019 1146 63508 NEAR_20210128 543663902.1376038 17971.635211000616 2.0440382370167147 6.722235820012644e-05 61731309.58657845 2030.1597739425958 36012 None None JST_20210624 59172138.97853064 1755.2236189251541 0.04184779320101795 1.2421859251565855e-06 97174798.81780985 2884.4810714766663 None None 93769 PPT_20210602 88551342.32419245 2413.36599806133 2.446656725573756 6.670878234701123e-05 4207329.8698526705 114.71402980909103 None None 601445 ICX_20190821 96257173.9203959 8945.344338840034 0.19625028028282782 1.8241265528908055e-05 14192882.699818198 1319.214125834209 113848 26092 212480 POWR_20190511 43412742.52963609 6812.711179050154 0.10401772480612177 1.632503154423342e-05 1385992.9984157262 217.52426772837617 85123 13224 672162 AMB_20211028 21960233.789703093 375.21667267443553 0.036365082968308614 6.213412859030947e-07 428675.4029406722 7.324436089704679 1686 97 718802 STPT_20200721 13605586.158869572 1484.9597103122765 0.016903066356673338 1.8450623820737622e-06 2369827.751713649 258.6796942292684 12548 None 2040332 IDEX_20210318 57853452.246693544 983.5191586315525 0.10067191542772687 1.7083517967111308e-06 4018586.644248475 68.193395196397 None 1934 5056100 LINK_20190601 368112566.7023346 42915.37693882911 1.0200869064024831 0.00011892013572519063 58508884.41188508 6820.874213481549 13915 7146 252422 QSP_20210120 20686515.151544742 571.2481155611691 0.0288780284628503 8.012352218627699e-07 473124.8656482635 13.127084045371962 58407 8168 193675 ANT_20201130 113413116.00142859 6252.189510643466 3.2824611133236092 0.00018074812155032514 9951215.512928374 547.9618642863518 76187 2684 92172 SNM_20211011 91631231.28229886 1673.68107430417 0.20958523149037891 3.83e-06 798732.0122679673 14.59617925 None 9719 None DASH_20210722 1421201651.8016846 44163.99989097421 139.7006189020169 0.0043255834957312365 894766909.7993708 27704.880679656882 401230 41515 60872 ENJ_20220105 2587021893.662377 55858.32191740751 2.7131753839653006 5.906151886732572e-05 212630207.20444328 4628.621897717032 464050 44094 14129 AMB_20200625 2462089.8690885426 264.63178021562595 0.01701396800470544 1.8302698288636072e-06 1998204.5584387423 214.95594174132071 18929 5448 835291 SNM_20200801 4166139.3620291348 367.58524992 0.009513827288192556 8.4e-07 270898.560715213 23.91832268 29265 9588 None XVG_20210513 840079147.5362804 16666.982896273923 0.05106230465226247 1.0130647341735529e-06 70225327.16756766 1393.2548263097349 313098 54050 113366 ADX_20200719 9511870.401213298 1037.23921372387 0.10350425743190426 1.128976076154209e-05 266301.87778431544 29.04696449334286 51647 3737 16348 ETC_20190608 917111147.2884357 114124.5242670498 8.250000211143036 0.0010276111386735402 832951198.2728581 103751.50392851565 227551 24611 668165 TFUEL_20210115 0.0 0.0 0.029303003278857938 7.470454852470873e-07 11506061.31321578 293.333453749285 79555 4922 64313 POWR_20200506 35150899.6651242 3919.662506917516 0.08195333759566194 9.133966976072807e-06 4344525.390436971 484.2115355782856 82030 12774 203991 LINK_20190801 801129122.8046415 79656.38100756888 2.202549056724166 0.00021886271375718682 73213074.23257653 7275.030746820168 29257 10035 107221 APPC_20190302 6218790.830500413 1625.2974745377378 0.05971518172816282 1.5631186756128655e-05 1023261.1813420675 267.8512593106828 25273 3417 1657371 ARK_20190629 64398148.57617091 5198.630764988121 0.4517033211735165 3.648560661520907e-05 866080.7245830889 69.9562724756129 63513 21847 211362 VIA_20210805 10792991.769125741 270.7097988250222 0.4656136556141103 1.1681235710044228e-05 389501.0702614662 9.771736194115185 38173 2295 1212735 STORJ_20200501 14984890.91989335 1730.449813702693 0.10389966348121278 1.2053739000546856e-05 1891560.8307413422 219.4461444192888 81661 8055 105636 WRX_20220112 480523044.15902984 11215.565751096861 1.0355084298118373 2.4202134703088385e-05 6177547.329035599 144.38301831998695 524423 None 603 STEEM_20200806 75232108.22868113 6421.549952521896 0.20920476322484188 1.782106721135122e-05 2438708.7780497908 207.7409346355497 11595 3864 180097 XMR_20190806 1608676739.8594925 136206.81167732543 93.83638356407937 0.007944692876623744 124957300.93877779 10579.55710721211 320381 159980 104374 GRT_20210527 1031527627.1767669 26328.26644103198 0.8432666608108633 2.1525113676135895e-05 209688088.4676999 5352.4705179957655 106598 14873 30058 BNT_20210418 1345782141.3049948 22324.472747572632 7.491516967136531 0.00012462974912805794 140493517.53153768 2337.2665270444736 111210 6955 28639 NKN_20201030 11002593.77507452 816.8157275957328 0.01693797864081272 1.25964300511892e-06 1379384.5889893232 102.5820250299871 13696 1022 215999 GO_20200610 10315246.725576596 1055.400863893946 0.010510836345781913 1.0754125475332278e-06 988958.5253886781 101.18494591724372 10894 678 1064861 COTI_20200407 10061964.079530636 1383.4377772407365 0.02021179004142356 2.7738092153752285e-06 4925499.628233636 675.9617149753179 None 922 253363 MATIC_20210814 9660072123.939486 202741.175235136 1.5080728063321491 3.161227713156692e-05 1665858734.750567 34919.791513950135 580232 None 5735 DCR_20190522 291056369.4384115 36574.375083463456 29.661863480868504 0.0037275106135679203 15683768.492523262 1970.928547841555 40503 9451 352776 ETC_20200502 773415245.8942653 87277.82780393558 6.631249600992024 0.000750860191582085 2253482284.288753 255163.0901443915 231061 25416 364277 ENJ_20190621 119304384.44312549 12472.278560977327 0.13665156671142933 1.4297948996061119e-05 7904217.473308788 827.0238022649162 46459 12607 19875 LOOM_20200319 10188531.031490888 1891.9623289173476 0.012237639351438396 2.2713783828487017e-06 19559052.297824267 3630.2760117753837 21582 None 494145 BAND_20210219 398706378.70488 7713.842177750743 17.729535801169895 0.0003429280899210592 430288708.80812174 8322.726927595664 61378 4026 238789 WPR_20190314 7176648.057391827 1856.1589062367323 0.01210330135789871 3.130854672518851e-06 752553.4235127817 194.6688207335611 34985 None 815253 GVT_20200425 3452184.842843727 460.3948549557535 0.7782719998706448 0.0001038351684938558 209186.7133254516 27.909185514106092 20479 5561 159747 FIL_20210819 6668353812.897149 148019.6728274931 67.97819500140253 0.001509389937061149 678658020.2033778 15068.94359845368 None None 44704 ALPHA_20210723 196342201.55974552 6064.899690365906 0.5593558279606948 1.7278185539601833e-05 47167951.60833107 1456.991379499799 70722 None 56625 OGN_20210117 32813467.671168398 904.2091895053768 0.16227965448095094 4.4841667662413715e-06 11493073.97092754 317.58054025458034 None 2506 231099 STORM_20190716 16303880.515271438 1490.9006538552906 0.0025998717167212684 2.3802434969343645e-07 415322.7193611024 38.02376846250927 None 2579 3721557 GRT_20210124 711542155.2265086 22224.27678272326 0.5856224340568974 1.827319179794706e-05 375325255.5679769 11711.283555337292 45905 3280 38348 REQ_20200605 11500313.478893027 1178.8678642078696 0.014858217365739793 1.5200376993814692e-06 340014.0153873599 34.78439633670851 38904 27985 832677 VIDT_20210711 16203440.061364368 480.50748835480385 0.35032138089812004 1.0393584045628517e-05 872037.6051303656 25.872232281782797 29407 1619 805010 WPR_20190524 7930962.4081120575 1008.5028558392163 0.013201872587832028 1.678752908176179e-06 2451909.8987807794 311.7853808828598 35102 None 1131129 EPS_20210725 131135385.06854306 3840.968757039528 0.48692580606277974 1.4251923553331203e-05 48064666.04147365 1406.8138051224116 18639 None 22794 MFT_20190531 23631345.583196804 2845.4346701803074 0.003555050500037929 4.2845262956545946e-07 4578551.264764347 551.8043496056147 18121 2031 843765 LSK_20200901 255992892.78271008 21901.95887481538 1.8055687940589735 0.00015468148164154966 9083493.206324644 778.1748290391394 177009 31144 154777 MFT_20190614 29486137.47054204 3583.876587159828 0.0033444720329837926 4.063270615144447e-07 2600246.8451286484 315.9095514548886 18673 2062 844355 OAX_20200526 2187563.1169334385 245.88085334186783 0.041757466487921925 4.698602942451749e-06 1221183.4401201634 137.4091051879689 11793 None None SCRT_20201226 34673715.52171087 1404.0314045363116 0.6184112024977496 2.5079391547510308e-05 368467.46766199684 14.943034435163616 63218 None 377995 VET_20210616 7339677905.908793 181742.012390661 0.11220454962810315 2.780049213578237e-06 826412659.7873342 20475.71041056472 379487 187440 26602 STORM_20200301 8826444.929095898 1030.1288819660256 0.0011799807753284633 1.3796251981183476e-07 860588.7387985365 100.61942822185827 26126 2525 826076 MDX_20210704 860197312.1572146 24812.990513104127 1.6671332213084389 4.804574152668284e-05 68425627.06748746 1971.983972165989 None None 12360 ICX_20201101 181841757.02751455 13178.147290119514 0.31773703335870207 2.3056615498202546e-05 11896294.38662505 863.2556382440554 116344 28018 230904 YOYO_20190509 5269615.430541857 884.6312165048955 0.01804841976550211 3.0302217049745162e-06 586991.6570304487 98.55238757093139 7468 None 1472428 BCD_20200526 107304468.63322905 12073.85619234078 0.5667721777593734 6.374608830764072e-05 11232185.809771657 1263.3081449906997 28468 None 907127 DASH_20191216 466734067.28988093 65587.18648042496 50.68483348601587 0.007128468228833644 292146557.17912316 41088.375116968586 315957 32742 79033 CAKE_20210702 2446731051.4594803 72772.27382665538 12.92383526133168 0.000384206850539593 146306351.55586338 4349.475322809449 939397 None 824 SNGLS_20190426 9119456.740349269 1755.6425886220404 0.01555685293753101 2.9899052553842786e-06 591870.8494873695 113.75294029564171 None 2180 5119278 ADX_20210108 45313147.116112016 1157.6431521248012 0.39745609176885993 1.0071762914876688e-05 2198818.7544450387 55.71931502922808 52873 3744 12195 ARDR_20190419 81088819.77324203 15379.126996053754 0.0811824819378907 1.5394529687750237e-05 1817559.2582125652 344.6614256164934 69103 6576 1105375 MTL_20190730 18568179.45893899 1952.0904926543246 0.389901806978122 4.0968682708056176e-05 2003912.555297558 210.55982861162363 33328 None 788453 STPT_20210902 79088231.19419563 1626.1505724723052 0.06480580448968896 1.3314401758488678e-06 11476811.280845301 235.7919595363436 30909 None 824809 NAV_20201231 8205147.936932904 284.0395040438957 0.11595973780766579 4.02166568008479e-06 93867.73275708262 3.255480276461734 48195 13635 813595 BCPT_20200321 1558302.3865554975 251.99135831015067 0.013451173811939115 2.1693719876292198e-06 254880.02823538374 41.106419498439 10652 3168 1690012 AR_20210603 738533851.5832987 19637.748973656162 16.851648324462726 0.0004480883833268777 20943090.433470096 556.8805705836738 19975 None 89041 SKY_20201111 7741175.677550662 505.9893414714213 0.4070613071904615 2.6649472486154638e-05 174834.36994387067 11.446049155621 17209 3807 1281976 AXS_20210603 261475720.65264025 6942.875734822555 4.71505044997378 0.00012537404607277657 21002149.162519336 558.4509528935513 79119 None 11122 NKN_20210106 11952172.81559945 351.24101706022014 0.018485277690183176 5.419864445629778e-07 1585498.483528164 46.486652802828814 13704 1024 376074 BRD_20211207 103914149.51946904 2058.086559641176 1.205144778864225 2.3871746611950428e-05 29148023.71968311 577.3698303129672 None None None ARDR_20200621 53795911.75259408 5750.329017960588 0.05371374371368288 5.740895410612771e-06 3786005.98612512 404.6462392596451 63209 6306 1460932 REP_20200430 120668901.1727814 13763.442592990552 10.96990010661649 0.0012512220539082316 32229237.35442986 3676.05285067118 131234 10118 257312 MFT_20190622 26809426.088809066 2649.0102465367654 0.002984824482155219 2.948916123252975e-07 2863907.180402424 282.9453493925573 18773 2104 885644 DREP_20210418 0.0 0.0 1.970610274419917 3.278330212792692e-05 107207.9249607237 1.7835235308159116 3778 None 197188 KMD_20190117 75403469.14898983 20964.701684503743 0.6754087632806179 0.00018783867027010267 508134.0232603069 141.3177092707593 94785 8223 233047 OXT_20210111 0.0 0.0 0.29148040021768784 7.578430221155043e-06 26068052.184742153 677.7639743048098 None 1838 172682 LOOM_20200725 20470157.722668324 2145.958970422174 0.02453660926971046 2.572947522029548e-06 12501797.289843071 1310.958168842252 22040 None 626078 NCASH_20190410 6470858.4559334945 1250.4860449058308 0.0022374308760687092 4.328283256626586e-07 497510.3698553542 96.2427857269322 60695 59462 760895 HBAR_20210105 219456931.1943363 7014.47504628723 0.03246782097283608 1.0377649900681625e-06 15043994.868128963 480.8493676853491 998 6873 206193 DUSK_20200410 5299868.911584197 727.013458524172 0.02016513236858864 2.765615589266583e-06 139321.27855545236 19.10769008834822 17571 13336 1650258 ENJ_20210203 333502831.9219771 9364.717463323235 0.3634264863573448 1.0233122288320751e-05 68591804.6429989 1931.3626035452255 77055 16865 66239 XZC_20200907 49830951.87050833 4852.48403856668 4.557308912330779 0.00044378579830000735 13031068.770589307 1268.9513413082693 66120 4162 333585 HBAR_20200927 177338605.4893064 16515.76673754844 0.03225140093129649 3.0043355751909997e-06 2515708.0711610396 234.34737830721616 None 6708 164930 PPT_20210805 86233917.17018667 2168.134082715269 2.391422208834367 6.013899410161606e-05 5587108.164633979 140.5034475789155 24454 None 828150 ZEN_20200329 52338358.71737235 8395.67081556928 5.986439499644293 0.0009575136231968498 3109716.656672791 497.3901537338319 58691 5101 39151 CELO_20210325 336651624.43988544 6370.890674010025 3.5451837932412644 6.723951816220288e-05 19003232.52333891 360.4236826394218 None None 84819 KMD_20201201 71946640.31437445 3661.6386034920333 0.5894598104632351 3.0026530335456682e-05 2879474.303284327 146.67772252325153 96761 8400 313408 OST_20190714 11274398.196730765 990.0218662932161 0.017377165362652432 1.5234639976873398e-06 348745.83201893925 30.574705847379548 18147 756 618395 BQX_20190826 12155262.407043936 1204.0281587176933 0.08642292961125736 8.560542530988973e-06 1650574.1137093185 163.4960763829223 None 5759 396128 ONT_20210117 529467275.7272453 14591.632789926178 0.6553514120335789 1.8108893757814153e-05 356963161.699875 9863.727844299294 None 16676 273814 SC_20200612 117064689.1232831 12624.189305759375 0.0026493174608776086 2.848845934395884e-07 8201208.251025241 881.8867171670595 106440 30076 166069 REQ_20210513 95139189.2146858 1844.5623616089997 0.11736436679591414 2.339693120803596e-06 1939448.0540381651 38.66346655352116 43097 27676 445930 WRX_20210207 28502023.23444045 726.5339603068238 0.11962618127551128 3.0409414880162814e-06 3987409.0551165272 101.36140346626495 56629 None 4666 MFT_20190426 18098854.984608117 3486.698022536349 0.0027523331594674276 5.298306504905778e-07 2820824.1424325174 543.0153268922362 17920 1946 683673 ELF_20200208 44335858.56689353 4526.7782777043585 0.09598156231486159 9.790414228790972e-06 60904396.393123545 6212.435541391846 None 33472 940100 STORM_20191127 9083025.86424079 1266.9012588219816 0.0013639887343196938 1.9050141387815692e-07 1339276.9692871883 187.05004653202917 25982 2539 2424328 PPT_20190719 24044566.959843658 2243.7473210390867 0.6627809109447665 6.211868219474772e-05 2036583.612673415 190.8773896616251 24139 None 661854 ETC_20210710 6471152037.0382805 190403.06077461952 50.34198485908934 0.0014813016075151775 3530401425.0614233 103881.2696947754 479873 58262 107608 UMA_20210602 824285125.6533105 22464.952452967264 13.552737786137584 0.00036946649583123625 26945711.2709969 734.577594436933 39238 None 143872 PIVX_20200502 19377347.39106944 2186.657343100251 0.3071319598424519 3.475346166289802e-05 389756.90523082594 44.10287249408238 63930 8478 257372 JUV_20210210 0.0 0.0 8.958950425544884 0.0001923572917168319 4043996.6221289947 86.82850121892916 2277917 None 93564 AST_20201106 15214511.737838218 979.1375249361957 0.08822702179014912 5.6797559443027724e-06 2220566.301815909 142.95251496141447 33961 3461 170837 DOCK_20200806 10496300.681130277 896.0099445572092 0.018704918821996548 1.5961014988967013e-06 9796466.167755013 835.938101792607 42354 14921 260930 IDEX_20210428 74533949.04556093 1352.831490519618 0.1291069274786552 2.3438970429553496e-06 10101330.20528077 183.38658087876422 51276 1977 4760670 AMB_20210805 4681885.506271613 117.71418799733674 0.03237238386947418 8.140754101787178e-07 386126.184820241 9.709999534037616 788 65 582804 BAND_20200330 5098650.879321985 861.7077274408125 0.2662532537335784 4.5032660472283376e-05 1124813.4460128862 190.24496902352496 8810 1061 702901 XLM_20190818 1332097262.4378383 130322.00456285109 0.06784423118399308 6.637759512861273e-06 119255776.30017745 11667.774102316367 275846 103374 64328 TCT_20200713 4344634.781976161 468.27277972294 0.007512535871009724 8.092740914697788e-07 887690.4643704563 95.62482048597958 None None 649723 BZRX_20211021 106962991.02167396 1613.7433905793143 0.33124532496453624 4.999125735980125e-06 10634014.471442092 160.4876247737617 None None 306416 OAX_20200412 1661013.5826746242 241.34285087336562 0.031718638996216963 4.611846110381955e-06 25447.750309792485 3.700067594268 11986 None None OMG_20210506 1389909884.927594 24271.19386140819 9.901642846807281 0.00017291390952652535 918487241.1799254 16039.683735296885 321901 4604 120611 DREP_20210617 0.0 0.0 0.6086039663369357 1.5911604291469532e-05 7726169.42168448 201.99630190815367 4026 None 173575 EOS_20200404 2175226714.472486 323365.8027002847 2.3303936037782567 0.00034632801468097586 2331660711.891817 346516.3240878692 None 70796 93233 OST_20210325 23350322.692825697 442.87251052845545 0.03371962888351902 6.403719058255838e-07 5513404.767786825 104.7054678724877 None 749 563177 FTM_20210210 380505331.7399805 8169.446985417302 0.14836063432370197 3.1854456672208746e-06 95603090.38932808 2052.690401613887 32994 3434 133702 GRT_20210825 4597638624.577446 95736.77388021923 0.9273962551631193 1.9310939837519644e-05 289158467.60518485 6021.0743146153245 None 16946 33877 RVN_20210111 133578382.9633798 3465.064956052944 0.016924033558639955 4.4002137807156795e-07 26784050.233638562 696.3797757377438 34930 10735 220085 TROY_20200417 4467727.615541131 629.167722877176 0.0023423078525626655 3.305768025592543e-07 706301.6023162258 99.68242435797802 8753 None 456905 AXS_20210703 340067274.18500495 10055.743044251649 6.170904420366411 0.0001821908865834903 101182221.76896848 2987.3220252342057 132457 None 5695 GO_20210218 25158616.564202532 482.17717619342955 0.024291496536569868 4.65943319977303e-07 2598721.841301935 49.846952846682655 13654 712 636125 CVC_20190225 18803206.90568451 4992.028274822255 0.054544813467389985 1.4560372801103193e-05 1846605.8211308902 492.9390617208324 88288 8206 370829 DCR_20190830 233064039.73342723 24573.58620733307 22.607490252304945 0.0023837142351103265 15059421.197936717 1587.8523569587314 40587 9592 278378 QLC_20200518 2452699.6156805353 251.86442404877928 0.010263195599921658 1.04995911524528e-06 175469.4255340861 17.951107039972314 24300 5652 940522 TRU_20210909 207937001.88756862 4488.3150461451605 0.4849384043402724 1.0469928024822446e-05 20562248.036283232 443.9435091995114 32567 None 89182 SAND_20210202 54301702.23202799 1626.5229254716548 0.08262170278314712 2.473817414776786e-06 20301566.68919674 607.8592855294114 None None 48574 ANKR_20210624 538911031.5323275 15984.600354660302 0.07691505111368158 2.2831023243488626e-06 235548353.8735876 6991.882426633092 113215 None 5363 WING_20210708 26203678.85840366 771.1366403416148 15.066179006065449 0.00044350059582998224 3054390.339906572 89.91157845002057 None None 421675 STEEM_20190405 158286295.7935788 32281.74083176068 0.5148689696327904 0.00010505874844272134 4648434.257811684 948.5106194926993 5058 3701 263510 CND_20201208 17360117.1095857 903.8436381932337 0.008995881841303458 4.6849212888650794e-07 51825.05815911799 2.6989718467794233 None 5897 458768 ONT_20190906 462162233.9736133 43722.147087993566 0.7098215082234932 6.71603195853151e-05 47185585.763646215 4464.501262631489 81467 16277 256067 DNT_20190916 4839125.341121068 469.69834036267673 0.0068057377246552656 6.604193963292965e-07 148182.83040241638 14.37945735789979 60122 6270 442097 ARK_20210106 57635958.394485176 1696.6557839361546 0.376046131153692 1.1032012763148237e-05 2872487.6527406313 84.26976857812366 62984 21582 94251 OGN_20210828 366534535.59383243 7472.46736686325 1.0735733990981915 2.1885298085973946e-05 56262541.168733224 1146.938332848435 119135 6153 109678 CHZ_20211028 1617709313.8815296 27639.349368233605 0.30261919614273874 5.170149809803754e-06 504135780.8755091 8612.99463097963 397138 None 55249 ADX_20210212 74404659.80689363 1560.3867603933 0.6542778546348276 1.3723550441553114e-05 9724768.082675474 203.97808724473762 53205 3763 11021 APPC_20210207 6914202.65543939 176.24724379391785 0.06319700741668272 1.6064911520435204e-06 1202256.9929595531 30.561814564056668 24316 3124 1221759 FUEL_20200430 1987610.7598257249 227.66244983886932 0.001928800779788409 2.1999818137004146e-07 69891.80680949092 7.971829206975461 1 1466 None AXS_20210204 56765165.0337434 1513.6451823987459 1.0243283884242755 2.730816455293128e-05 9960047.616405062 265.53068560583733 31662 None 20130 FIO_20210325 65171842.58327422 1232.9905006835072 0.2863191890286606 5.437508383798803e-06 14912188.11999629 283.1984408671544 None 319 317954 SNM_20210509 301459444.9753359 5141.817484 0.692015132358289 1.18e-05 2002740.1561058378 34.15002467 32429 9704 None BCD_20190714 189947106.7764633 16688.968957014167 1.0113050070616507 8.8723547385645e-05 5458083.893876891 478.847194082656 21400 None 3671311 GNO_20211021 549667517.0576582 8292.13992587577 365.24874592338114 0.005511063359805676 8548244.200811354 128.9803618261981 86636 2355 154314 ARPA_20211028 119169422.19653262 2036.1532542755613 0.1213932031343928 2.072825759821833e-06 90989335.67569762 1553.6705020367542 51766 None 536850 CTSI_20210106 9164104.231689474 269.7144712470266 0.04461827347648512 1.308450725098596e-06 1728562.4819433251 50.69086400371278 18583 171 553409 ATOM_20200711 769199265.8789334 82840.41537065 4.066613960627813 0.00043798368047089623 291003749.8844185 31341.773435886444 None 8693 179013 RLC_20190716 20321092.00197333 1856.034289287427 0.29057369368005803 2.6602702753133813e-05 458709.1941102559 41.99590192249457 24959 3317 855809 FLUX_20220112 640045.8091526437 14.926890818047928 0.6070163931391382 1.4182246304263156e-05 2216.9218863912333 0.05179585359716206 8531 159 None WAN_20190608 51147918.10730277 6364.803043234751 0.481597627394495 5.9987281648901284e-05 4574682.9493229 569.8175799164995 108555 17054 409918 DCR_20200903 190943566.0399928 16737.23764119159 15.996027974681466 0.0014015053053515103 7981017.862521964 699.2635230529748 40824 9907 216074 WTC_20200129 11323741.79874195 1212.1704633693423 0.39013753544408897 4.1724168727372605e-05 8415030.786240852 899.9650955693963 55120 19507 1023562 STORJ_20190701 37521204.60131731 3458.012376166906 0.26059821711268993 2.401886260091274e-05 8647811.806091497 797.0530492127001 83734 7762 206682 AST_20190510 5363420.15666905 868.691239154028 0.03217490479940553 5.210904650388838e-06 575393.3442363733 93.18814995653072 31621 3591 464238 ICX_20190618 170592344.5878589 18300.75916256319 0.3607431399127937 3.871740615809314e-05 19857354.414357066 2131.2262688397145 113632 24960 300375 EVX_20210207 10155510.483493054 259.06980824544814 0.4776658475539727 1.2147086872241928e-05 3570795.512972983 90.805661575362 16907 2813 1099607 QSP_20190816 0.0 0.0 0.010813930657372031 1.0495885166095149e-06 352381.7546775648 34.20179534072992 56614 8555 585298 LTC_20190712 6387392580.081841 564449.2055224712 102.28559331765346 0.00902144476408523 5528066517.840636 487567.6537164987 450119 206032 149931 FIO_20201014 11220482.140536228 982.1504410886388 0.10310769814995246 9.024687521803913e-06 636277.5986926222 55.691346120186004 55709 148 226415 ARDR_20190509 66747428.5386195 11205.155230961693 0.06678248700419101 1.1212380045541804e-05 1461540.430831183 245.38389475336132 68805 6558 1327077 NAS_20210112 12911783.208640872 364.5027044050542 0.2827207399018213 7.953495689985159e-06 9233113.812900767 259.7458217658534 23302 4858 1361296 VIA_20201015 4160224.960822708 365.0708351982969 0.17954153651767785 1.5755248647979885e-05 64850.55157327224 5.690808850212474 38224 2146 1804911 MDA_20190626 18306255.972556602 1550.8714642180898 0.9369615857036678 7.9250829131698e-05 630216.9405759663 53.305509890224585 None 363 2360786 WABI_20190625 15299079.815022578 1385.2716215061523 0.2682161845475388 2.4285922642061468e-05 655324.4283200868 59.3370545423368 36417 8023 994304 OGN_20210427 365926298.0687267 6792.409227554145 1.7258363344423582 3.2015595708140054e-05 147551341.73232606 2737.1912439322564 103598 4960 48206 SNX_20201224 1002101192.6844257 42857.42174314586 7.0956482290826575 0.00030433192834158917 398105916.38605404 17074.738953572207 47985 2710 47105 FUEL_20200418 1811868.8950651165 257.3703441928043 0.0018303174744913541 2.5999090755129626e-07 51046.437469342716 7.2509877602535004 1 1468 None DUSK_20210702 40365925.210486405 1201.3420038446118 0.11192122867058611 3.3309201367925915e-06 7210624.672908123 214.59749153160706 None 13642 479861 LEND_20200607 77887690.72201097 8054.971943211407 0.06325328788549009 6.541514512889668e-06 1988150.27997041 205.61008518286803 45215 5720 77491 LINK_20190312 168895391.09843048 43681.758550865605 0.46273227444908266 0.00011982634248610846 15497912.98151668 4013.245522919469 10413 6437 327842 ENJ_20210506 2408523469.0548053 42058.65478841879 2.5802564647592727 4.500879227978153e-05 344518053.12204665 6009.612494489618 174256 30784 21427 APPC_20200301 3980817.199443786 464.1947775721581 0.036651917398713825 4.2853163254750645e-06 390377.14435641584 45.64262031927392 24955 3237 683942 GRS_20210729 53888171.01162543 1347.7217837218636 0.690941588902801 1.7271248898809018e-05 18371813.574150417 459.234427421776 41447 106849 8801723 VIA_20190730 7717406.272871058 810.9015225470799 0.3333522239138389 3.502677147715111e-05 185396.57258975148 19.480426152569297 40964 2229 1839156 HIVE_20201229 44277082.321992226 1631.5321819525075 0.11839283777146375 4.361857397892402e-06 2279726.199855006 83.9902208375265 10000 97 156100 GAS_20200422 15012715.982085552 2192.2726107881817 1.0795977724467583 0.0001577100701706069 7935177.042132723 1159.1885052658888 321041 99292 240659 RIF_20210509 234828009.93325207 4003.7932855905156 0.3260283079084186 5.550126760792961e-06 6348450.932826004 108.07254019720298 42905 3236 493972 BQX_20190228 14043535.580930531 3674.607469824371 0.14492785919609324 3.7991507981886355e-05 3348893.860775765 877.8817857925162 60542 5812 364991 BZRX_20210206 71701168.57172123 1892.0612729233153 0.5092522156887679 1.3397336281672888e-05 55310278.253942676 1455.095087998285 18271 None 192726 MITH_20200607 3412291.946277244 352.64156574620506 0.005508493519245932 5.696761623765631e-07 3257973.6995982314 336.9324022668477 98 2098 809760 STMX_20210427 409557673.81232554 7602.304992837573 0.048905361898428604 9.072644640853151e-07 54997224.85185754 1020.277241481846 57174 3969 60335 GVT_20200807 6601434.12364447 561.1160125247443 1.4886332794950612 0.00012643453392703697 390910.28327066795 33.20129957686928 20345 5505 171474 NCASH_20191026 2537099.5050154803 293.0289251749918 0.000874430069007161 1.0099458170849268e-07 366745.3478372287 42.35821057756104 None 58725 890063 DOCK_20210204 16252028.121430155 433.66397136852703 0.02934365080590321 7.823031240515289e-07 8988296.204537183 239.62840367822812 43551 14835 229507 BAT_20200404 210986805.82178974 31338.25376962518 0.14562026051484042 2.16434334678237e-05 66312203.83029089 9855.934652440748 None 36382 18490 LTO_20200414 7680523.488891202 1120.837993125493 0.03621367354240762 5.288662076100016e-06 963911.2966331994 140.7700633645651 14559 422 900520 REN_20210421 782534682.1687046 13851.26949077254 0.8800988152895234 1.5609036549590658e-05 166616780.43231502 2955.0402413478687 72259 1144 63508 MITH_20201231 9946604.812920665 344.4734847119934 0.015934856246957202 5.525605436676425e-07 37778325.4297958 1310.009435593571 23808 2116 503820 PHA_20210610 169342270.3747759 4511.5093634423765 0.9514646260415904 2.5403787414147696e-05 36170166.14880217 965.7313434776148 50533 None 185347 ZEC_20200301 456095721.7912166 53184.3693194625 49.032764671723726 0.005732876254334463 239850185.3761859 28043.114467371855 200 15570 157694 ADX_20210117 45693451.20104434 1259.8474189374456 0.40254134608564984 1.1121448329415666e-05 4050389.9033969548 111.90453468357892 52729 3745 10698 RSR_20210131 330153970.23662233 9651.100840599114 0.0354155105423728 1.0366182944657208e-06 116723558.26369573 3416.5193170521984 55472 None 136667 APPC_20200319 1988549.160544087 369.30324971639766 0.018371432698668606 3.409846776438215e-06 26863.009992213534 4.98593384249314 24854 3229 700856 ZRX_20210420 1252948412.1566806 22383.878681725717 1.5929046863755614 2.848018451477594e-05 235496411.91766128 4210.535207378603 207858 18892 55512 PNT_20210620 42723055.62075062 1198.1265376192334 0.9288251649221444 2.6087945419704555e-05 4774906.44829718 134.11296712424195 39834 308 328870 HOT_20190512 250828233.52614787 34352.699408868735 0.0014086274607684392 1.9339424320125182e-07 15244290.329319067 2092.929517198631 21272 6052 229269 WTC_20200430 8697334.191005806 996.1992805700826 0.299024573946498 3.4103522576584865e-05 13104171.80889958 1494.5207119071542 54564 19655 973859 REP_20200312 125576159.17624865 15818.93514131525 11.416014470568063 0.0014380850128468407 42802175.244923435 5391.826271389225 130490 10109 288679 DENT_20190509 49641376.98047353 8333.494594822616 0.0007678268460352906 1.2888165829526492e-07 586723.4500067045 98.48299989514499 45082 9230 250017 STRAX_20210823 233841050.40076816 4739.952431793844 2.3243162092264904 4.7171468238144085e-05 141880233.5017676 2879.427033930277 157399 10785 253656 ALGO_20190905 114929909.8833488 10879.485410148047 0.34648837952412403 3.280169019549542e-05 47487237.1075893 4495.566754597976 11885 604 192636 ZRX_20210509 1538989393.9071333 26239.61001786728 1.9525686580589732 3.323945589541514e-05 306338306.1104559 5214.934989869707 213450 19093 56937 STPT_20211007 240757443.48444703 4337.252208030149 0.1946246833286583 3.5083441767360865e-06 3304475517.451799 59567.14862955871 31979 None 1227708 MFT_20210813 115354055.76941857 2594.8549408261915 0.012290239629094894 2.764482358498906e-07 41536990.25826127 934.3046210610024 34587 3617 426634 DATA_20211202 0.0 0.0 0.1513426056213987 2.6477634890293763e-06 610579.9465157008 10.682195425933626 72177 4787 145430 TNB_20200305 5476626.917435303 625.6029578541471 0.001768796898572913 2.01944494834643e-07 523849.1754689785 59.80814258266652 15212 1447 1374605 APPC_20210711 6083579.52819752 180.46099951170044 0.05397454739534989 1.6006430257891868e-06 117222.31658673464 3.4762882240967907 24921 3129 638230 TRX_20200730 1275237978.746614 114913.59880350382 0.019275024217196336 1.737862849596149e-06 566405740.287148 51067.925142467946 514665 73778 53101 HOT_20190909 144739596.04435265 13935.123488464133 0.0008164924657047736 7.856059145397705e-08 6156686.734276108 592.3789521120596 24333 6658 436903 CELO_20210506 576584631.2184088 10070.777952376637 5.221431534203942 9.108022033306358e-05 39456121.162810475 688.2542048968417 None None 73395 KAVA_20210814 500129392.9792053 10493.072054315355 6.144421126618988 0.00012878531136314712 70931987.73047927 1486.7141976811904 None None 50274 EGLD_20220115 4060286534.5507464 94187.40683636896 199.40869932075225 0.004625026091962402 122350782.32096493 2837.767672794729 442850 14475 12315 OG_20210430 12037878.248275766 224.63153489480428 9.383705271564109 0.0001750878251792931 4447460.654813115 82.98387375628937 653760 None 247445 BAT_20200127 299751232.3466423 34929.146815943284 0.21085388600694874 2.4546164192891564e-05 47548510.2050743 5535.271655285836 110265 33609 22497 HOT_20190220 253898584.45161542 64873.95664200473 0.001428857776376924 3.6500317230951655e-07 16924189.09778262 4323.301319128094 18092 5475 247216 SAND_20210930 538377507.4443965 12952.035277819443 0.604566498734552 1.4537945215284526e-05 70692376.62588654 1699.9319358194248 196881 None 16855 XRP_20190729 13347074383.797607 1398073.726712485 0.3117148012177424 3.268743069282562e-05 1150295664.3333528 120623.75497495022 936191 204101 39002 POE_20200423 2328059.5839415714 327.2390681788553 0.0009248702716252947 1.3000255146415618e-07 48964.44554086325 6.882589966 None 10372 1042825 SOL_20200607 10180036.835310562 1051.5108288926863 0.6254174646400334 6.46792847980307e-05 1644975.9479360643 170.1197581421949 None 1911 125337 MBL_20201208 6502452.589973527 338.6380468975663 0.0018366505438066427 9.565948354243209e-08 16065615.0810883 836.7560430212183 None None 806659 DLT_20191102 3310661.256087336 357.5440314210997 0.04102956557312355 4.433215579004972e-06 65691.4074811719 7.0979101773152 14932 2632 7658387 EOS_20191019 2969120777.338585 373072.3959309072 2.8804665833759895 0.00036193767714674027 1924252153.468833 241786.99336093388 1321 68631 87489 WRX_20210120 25346544.85020919 699.9325829216548 0.10606276307728912 2.942763963784195e-06 4994577.305657341 138.57702442385255 50278 None 5221 WTC_20190706 67151833.40652673 6109.822076865919 2.3010785250196077 0.00020936405842644364 23937617.227496684 2177.9685644429514 55856 20073 771082 GAS_20211125 111285112.07592146 1945.9730892151622 7.993735953722951 0.00013975320163483042 8135348.900614056 142.22899803785742 None 115150 87407 DOCK_20190419 7688770.546738731 1458.257789947967 0.014869882386480127 2.817425140714793e-06 700765.4700343182 132.77537788830216 160 15323 209394 ENJ_20190920 62105578.068833075 6063.801252711728 0.07091524324063006 6.9194835889714e-06 4175083.685582234 407.37959463723087 48503 13738 26747 POE_20190803 8231874.39320437 782.1204918473101 0.0032702839560223686 3.107136933814342e-07 149517.99055019952 14.205887835907882 None 10802 756599 ZEN_20201030 57214120.44419803 4247.488762626881 5.550814003962144 0.00041279934077850854 3011931.141926364 223.98934444029027 75697 6132 125906 FET_20200502 7054975.8555825045 796.1718583211656 0.020697865721897236 2.3420632722128765e-06 1818686.4529194762 205.79313839820293 16788 380 978980 SCRT_20211125 1080202562.6764045 18882.204147196717 7.031426894553451 0.00012294287798810024 14113205.968282042 246.766152219182 121653 None 63398 ETH_20200626 25963410301.573772 2804127.1452425374 232.64870349961575 0.02513411086503365 6321009243.432307 682887.7389535613 461869 467342 17846 FET_20200331 4720170.074330957 734.914690555484 0.013852426750062666 2.1607082582410533e-06 2387188.7407236025 372.3548602080292 None 363 973007 SCRT_20210813 220866000.89947397 4967.861984072542 1.5320349926504344 3.445952915913494e-05 5003856.586362211 112.5500022996026 87562 None 76372 PAXG_20210722 306959075.1111392 9538.532311695697 1822.8135167900425 0.05644194544300312 13232619.311851272 409.7373485482917 None None 38365 PIVX_20200905 26028814.27904473 2482.4213869178643 0.4064656714145601 3.8765464494468895e-05 534042.0373239373 50.93268409208478 64538 8619 359685 SNM_20201224 3888529.843133506 166.28856544 0.008860735426668816 3.8e-07 483117.06007134554 20.71887648 28767 9507 None PIVX_20200323 13586446.55971251 2328.7334069468425 0.2166467040346927 3.7154998060008246e-05 664615.2101762885 113.98177948185004 63829 8515 174953 FET_20210420 338759737.3634831 6054.909311875804 0.48778838578107947 8.72233982595792e-06 38231707.894712314 683.6365073564937 49470 2190 124282 SUSD_20210401 223799172.45206398 3805.0737267715767 1.0205099965233562 1.7362981620185067e-05 31994426.347350083 544.3539392165968 103932 5709 23689 BNB_20210809 52793795858.293 1200068.0080047166 341.45649731912124 0.007762410398399913 1404615891.4422364 31931.461510011835 4701653 582900 143 STRAX_20210930 173112602.53816125 4167.540135031043 1.7275040578171792 4.156023554885835e-05 7600766.528903463 182.8589900345906 157444 10916 265041 ICX_20210819 777985713.2899002 17259.731421739158 1.1818795189493665 2.62685475591959e-05 44903684.15789949 998.0328315812266 143107 32847 290799 RDN_20200411 4363287.945408778 636.358315789308 0.08605106389655552 1.254040479402278e-05 1439678.310099429 209.8073860367945 25045 4320 1242086 XVG_20210813 480673110.780219 10811.890257628482 0.029179549936477707 6.563422929318771e-07 38253323.769869395 860.4407638239359 323386 54507 124542 DGD_20191108 26573153.31817028 2882.2048451677247 13.286583302376794 0.0014411031431354338 1644624.713613748 178.38098705503998 17363 3354 548694 VET_20190622 377943487.36622137 37344.18511341708 0.006844448245155464 6.762107422254743e-07 34528945.97374858 3411.3552106553316 109620 56053 189744 BCD_20191012 95993165.76892127 11612.182420704175 0.5101761711276049 6.171542232591079e-05 6419367.886859265 776.5435208925471 21308 None 1712744 POE_20190805 7988181.125402886 730.138718946438 0.0031734717179080765 2.9006284889531615e-07 79091.19136804382 7.229122654939618 None 10796 756599 LUNA_20210813 6828606298.094821 153592.10131103615 16.597889032920545 0.0003733020492933945 419393289.034358 9432.54735261202 100019 4568 19567 XTZ_20210704 2507587073.613914 72333.77135391805 3.0035248900470126 8.661795868337196e-05 54192124.55314215 1562.8341290139074 123842 49769 72508 TLM_20210519 430404921.5531771 10087.162279830034 0.34652376916916544 8.099968824472641e-06 66879894.45829356 1563.3128468937434 None None 16975 GVT_20190314 17476306.865727235 4520.04924548785 3.938487960619174 0.001018799174666223 2098901.0482811066 542.9389849800856 20882 5801 151314 QTUM_20210806 844133895.9431309 20600.505313257177 8.126617385648336 0.00019861759962965244 199540792.02515042 4876.852355597056 249751 16771 166372 FIS_20210508 76574434.5860896 1336.2922192477267 2.8444156515256775 4.962575632184788e-05 18686314.429207258 326.0151117224641 19830 None 252595 BCD_20200310 111771716.28049192 14117.512058576347 0.5930868236842991 7.483577114311538e-05 11211055.241865808 1414.6123819464385 29167 None 1280057 DOGE_20210427 35161130278.75226 652266.097995616 0.2718319843560542 5.042693063068984e-06 6413613556.852909 118977.48040563514 974335 1559073 11474 WAVES_20191030 82319146.20840836 8747.459631808615 0.823188326840174 8.747749017350178e-05 20056567.08527868 2131.3447881984957 141871 56896 23523 FUEL_20190627 6240902.202899291 480.82219437590607 0.00793852964695672 6.094507174710131e-07 3312492.307376533 254.30412218990173 1 1515 None IOTX_20200610 22356962.091944363 2287.5765339502245 0.005163501252743735 5.28520399252616e-07 5166044.553995406 528.7807238903293 24288 1863 869322 WAVES_20200306 131359851.3257923 14500.81804983892 1.313598513257923 0.0001450081804983892 103348341.20614779 11408.62658154337 141278 56870 51296 TWT_20211202 358032196.44505954 6263.748936228266 1.031183309657285 1.80331555491744e-05 12862195.43962942 224.93185148992225 None 59904 3311 WABI_20200313 3224511.2605381776 671.0472715415814 0.0547144505336115 1.1417699659549045e-05 766995.9639218545 160.05514943015567 36822 7771 3668499 STRAX_20210217 164363428.20532602 3340.269728228772 1.6264185244227958 3.3053472497078556e-05 13930901.648530701 283.11573410210104 148974 10458 212375 LINA_20210702 67939226.49510917 2020.6928714637775 0.02743860330768853 8.158880359479262e-07 15025607.473552106 446.78707706254767 None None 80589 LUNA_20210806 6051510592.672974 147700.72733313643 14.560385830565355 0.00035586133148777214 518467619.6285999 12671.544531946336 97451 None 19567 FLM_20211120 0.0 0.0 0.579524732914809 9.96097985450496e-06 11390920.65790704 195.7892817222624 None None 52221 TFUEL_20211011 1646714999.1811538 30094.63076488335 0.30210982172976336 5.521629367549835e-06 34659147.31902511 633.4615822657685 202905 24598 26496 POE_20200801 5705843.269422734 503.4348395371 0.00226706672825104 2e-07 202075.7646455241 17.82706809 None 10217 647975 BNT_20190703 47550464.74855337 4419.025145341336 0.7089613968370858 6.568835960393143e-05 3197195.2068727314 296.23405365931745 None 5130 145805 DASH_20191019 618484585.7393215 77713.08193630644 67.93301675283121 0.00853594984472031 213438752.51773605 26819.10171956459 317746 31349 74820 EVX_20190702 14944884.431591757 1408.387546409172 0.703688890304547 6.637996378339347e-05 1647869.8776956187 155.4458856865562 18239 2914 1053022 BCH_20211002 10226777090.021343 212378.32201321502 542.9145679412096 0.011271435472235983 7470660334.841565 155098.188318052 None 634389 338194 NCASH_20190605 5903929.845305077 769.8526488422533 0.002030972228427329 2.64399585914177e-07 611800.6913003776 79.64650977383617 60454 59249 943621 WAN_20200319 11404803.737284089 2118.042222000854 0.10758741366797026 1.996886153074167e-05 344055.3433096134 63.85871056129715 105904 16365 732459 SC_20210304 506795468.6882494 9967.904634774046 0.010734710605725123 2.1186234678204782e-07 36428993.75079946 718.9697412836391 114626 34435 86360 RIF_20210218 214383485.84341544 4107.741190951957 0.30645325691923075 5.877450625359799e-06 5883124.171031843 112.8321238472392 42595 3093 719987 OST_20210219 14606167.443813592 282.58808110711567 0.02112551033165543 4.086136985305644e-07 971724.1993517781 18.795277028352253 None 739 607091 OXT_20210221 0.0 0.0 0.6077857447740596 1.0809405203634138e-05 61670949.67856533 1096.8113189564147 None 2575 125162 NEAR_20211028 5754623879.37263 98320.54406803515 10.897722235486224 0.00018618401364240482 555803441.4041668 9495.719681670882 159140 None 6621810 NBS_20210206 0.0 0.0 0.018159181665286264 4.75732878395942e-07 10540305.700228512 276.13413767033967 None None 745524 PNT_20210731 23423008.20137385 561.1644595976959 0.7391028820225457 1.7704857173480367e-05 6085820.877910108 145.782937731119 47473 320 326699 GRT_20211011 3384033676.95796 61848.37203936666 0.682277533014329 1.2470796119386141e-05 81296101.5063808 1485.945320092642 None 18347 26654 AE_20190810 87668627.02052929 7393.032869281702 0.2708889691796174 2.2837265241877915e-05 22317243.451782815 1881.4527949197723 24904 6358 316448 BCH_20200223 6804910662.93943 704952.6654165304 372.2360180125929 0.03858318406184045 4134835939.2004313 428585.9733817752 2505 284628 126656 RVN_20200531 132150316.25984335 13691.599752200487 0.021207767422604277 2.195868126673401e-06 23506292.789683208 2433.859165114312 31590 7864 206419 BEAM_20200411 15871720.180873346 2314.5402203506546 0.2668034657537273 3.8878117708419234e-05 107565184.1207483 15674.203773028825 14944 1478 257482 BCH_20200316 3298973878.9207425 610468.8978042611 179.0310711007794 0.033150141549596335 3178184836.9234133 588485.9905434216 None 287410 138735 LOOM_20200312 15877831.322125362 2001.8140004480742 0.019061473626039913 2.4011899787841893e-06 14412750.27555932 1815.5863606009132 21598 None 487535 PPT_20190708 36419841.913544126 3188.191890228791 1.0055517204317004 8.799414167911066e-05 31574310.63961764 2763.014877693184 None None 660913 STX_20200718 115476986.70588154 12616.177512120583 0.15134667446052835 1.6533803588184428e-05 2432481.0378517597 265.73536455413176 41543 None 98084 PPT_20190618 34582398.737541355 3711.618128528219 0.9532322511495017 0.00010235015870817828 11741327.097206075 1260.6861448450943 23991 None 671795 NAV_20210314 35540398.854658954 578.6691908845614 0.494963474272155 8.068431412366993e-06 977829.0169092374 15.939653663446629 50021 13770 463093 XZC_20200414 32643410.227703497 4764.589284724803 3.2953344071065316 0.00048125220123065073 34295724.85035763 5008.563938592035 63619 4093 105092 ONT_20191012 419294307.2398813 50711.0749593174 0.6443339251746887 7.792823659700039e-05 109692190.03689861 13266.59765077718 81463 16287 312703 EOS_20190914 3827020737.7126527 369584.029273759 3.7284415133554973 0.00036017895186452856 1988657000.6211965 192110.4009640676 1302 68283 84416 DCR_20200704 160162502.864869 17660.14808747389 13.667845148474738 0.001507764517724412 7228118.600034147 797.3678832797963 40511 9859 294466 DOGE_20210708 29283224578.822117 861763.248668418 0.2250151043429618 6.622657626573652e-06 1148728839.7287958 33809.45396314223 1939826 2109292 8998 STX_20200324 50232254.64818134 7797.309675925069 0.08569283278530349 1.322450761992222e-05 182519.36575627056 28.167218479923225 35786 None 40997 ELF_20190903 37819935.57484858 3659.954509204748 0.08198022165657728 7.933484744409062e-06 12778188.23243349 1236.5855977783285 None 33558 1052488 NEO_20210509 8203674722.352835 139890.43713542263 116.42046612064546 0.0019826036196314706 2043400673.341072 34798.46547878547 391511 110546 84803 RDN_20200305 6522044.633690454 745.0225249238399 0.12847947136482443 1.4668570462965407e-05 1496245.8496626823 170.82719474595802 25174 4330 1576973 NEO_20201228 1071017650.347921 40406.02997900527 15.097444758220746 0.0005740842244350062 447511271.0097459 17016.73131167866 326210 101171 122618 BNB_20210825 73440151948.04544 1528259.2838755415 472.56789940825763 0.009851174304390474 2714285782.9572935 56582.13855262559 4840268 602365 153 LTO_20210112 51223301.67037882 1446.0459632650832 0.1890540521742898 5.318465810695753e-06 11417780.776387114 321.2048405989804 None 964 1001701 ALPHA_20210304 463601363.33187944 9118.341547536715 1.8444302466345928 3.640203587038387e-05 333738759.4486907 6586.73339095132 43315 None 36970 OAX_20200721 3770680.344221803 411.5660280153828 0.07253915315154714 7.91710183486037e-06 882002.3937599328 96.26391357780925 None None None CND_20201231 16129358.592524087 558.3961951412361 0.00807644975702598 2.8010395175810154e-07 87022.07959991814 3.018062282247259 34014 5905 513051 OMG_20220112 748224290.9233296 17453.83115327184 5.32069425404757 0.00012435645654164973 166093106.193444 3881.9652391227146 6810 6565 114794 REP_20191030 101295884.41070203 10763.980198575726 9.208082278207096 0.0009785123291295758 13989224.115701584 1486.5883968660733 125574 10052 212520 LRC_20200807 155891083.72014597 13250.603073036198 0.1311462997089129 1.1138687753626108e-05 19860325.541430034 1686.8029474133934 37893 6967 238881 TRX_20201101 1851059113.000115 134147.01899378645 0.025856862068283283 1.8738931273728964e-06 767531006.5801009 55624.34739675059 541080 75753 29248 WABI_20191017 6841785.819035255 854.4877172499283 0.11577274389974236 1.445914711030823e-05 209899.6967255611 26.2148973163512 36195 7917 1653961 SRM_20201231 51619250.95574855 1787.5534005643806 1.0376871344886394 3.598306494289522e-05 18427961.91721227 639.0120185493238 29009 None 89019 KMD_20190905 79917719.44888878 7573.353874233753 0.6934002928986336 6.566485876313481e-05 2700166.4457094697 255.7051822883899 98423 8427 213183 LINA_20210804 129319434.11595038 3365.884394625298 0.04650533759792335 1.2107903454305627e-06 68437335.75614439 1781.8011798333796 41994 None 101818 JUV_20210909 27437069.95324525 592.2284767762162 10.476342241104353 0.00022680305192702377 4189829.5059485687 90.70590642549095 None None 40531 COMP_20211021 0.0 0.0 6.731220111021588e-08 1.0166e-12 223.710076663719 0.0033786395361512104 2603 None 2752191 WNXM_20210212 101301010.32443658 2124.7999074393506 59.19584963561869 0.001239803022148327 32458727.682407584 679.8184150316553 21128 None 132574 ICX_20190601 189788221.96225774 22125.930546257554 0.4015330361077681 4.6810093191455374e-05 25643444.19708851 2989.472607911218 113525 24698 290071 XLM_20200704 1369588035.2451053 151016.16850773085 0.06717330213789077 7.4102040520407555e-06 183776250.23394156 20273.225683574685 283353 109430 67238 MDX_20211225 311308316.79513496 6124.646124857786 0.3809630740465333 7.494147822255388e-06 10878763.664760528 214.00253352937276 None None 32885 PIVX_20200117 16842549.587226283 1932.91782047704 0.2710619504130692 3.110814498085562e-05 404017.6886141218 46.36667305420639 63638 8515 226941 FXS_20210813 103186852.71429478 2321.0054870057866 3.225588743214417 7.255371391536271e-05 5850683.431340617 131.60041334464142 13372 None 100208 LTO_20210304 109121049.20426811 2147.1271670089277 0.39743466008689515 7.84384813630915e-06 7321320.662346761 144.4950156589624 3290 2114 775135 NAS_20190714 50840210.50947775 4460.300102082688 1.1297547816477038 9.904611598819966e-05 5755613.101514643 504.59722065030263 24371 5137 449898 ZEC_20210821 1759912727.6640096 35815.62579323849 153.51897093095587 0.0031212735876307183 322017109.76717174 6547.096384156285 77723 20273 153391 RUNE_20210429 3327543785.803057 60790.492889384666 14.169575890526707 0.0002587729473463789 138708494.03387353 2533.1743236662833 1085 4023 83196 NBS_20210107 0.0 0.0 0.01418330375394173 3.8401607837891445e-07 5313686.3866757555 143.8692312698693 None None 711556 AE_20190905 66637935.69362097 6310.598193283664 0.20339260992400807 1.92549643019588e-05 12119365.334105143 1147.3275600218667 24923 6351 344855 GXS_20210731 34315092.845983766 822.4803250366829 0.4905229665237253 1.1743025311610056e-05 8368045.282742313 200.32939183325522 None 27030 487894 TNT_20190819 13286924.090450665 1287.50105212197 0.031036511473957286 3.0081019938241804e-06 580452.2658538006 56.25824344658381 17542 2541 645355 VET_20210112 1566999203.8668633 44198.475915866424 0.024282543978872684 6.831161694925757e-07 597932920.5892137 16821.04011349863 150086 71268 134055 CKB_20210603 440278732.53752655 11699.304722741992 0.016632998640534635 4.4219490867007493e-07 32304688.81212779 858.8330479437157 45259 4187 114536 XTZ_20210131 2182555470.33977 63800.725823026325 2.8825299476417054 8.437216440789759e-05 245205457.18906534 7177.207357236819 82007 33254 140734 DOCK_20190321 5706750.096941135 1413.7906156994572 0.011113930061499072 2.750171291467168e-06 594765.92621099 147.17639632039547 127 15348 190400 ETH_20210725 255023351844.8617 7464326.740445229 2183.627414557696 0.06391215194018017 19333415460.111233 565865.8515512099 1450183 1046386 3522 MTH_20200421 1819411.7659751717 265.69478310044104 0.005234151964888099 7.644807671576485e-07 67422.2895975266 9.847448836183 19083 1921 1304375 ALGO_20201115 214122050.37572384 13302.956955330583 0.2656157421514834 1.6512168249150452e-05 65367805.16539956 4063.63037155076 None 1462 286881 ZEN_20200721 77392681.43533412 8447.334588998157 8.104730536565999 0.0008845702522614436 6706562.451468856 731.9707438436959 None 6004 70851 MITH_20190618 26343025.085743234 2826.0198830860004 0.06214205391134685 6.669507676196864e-06 24751690.81347407 2656.519723580838 75 2074 556863 NKN_20210429 424838654.38588667 7761.325728835809 0.6547486938077995 1.1957649853102865e-05 65862307.782190375 1202.8407577211765 24668 2600 154711 RUNE_20200807 107712788.68570061 9149.85522755984 0.5855084399087093 4.975479211566007e-05 4757767.214787574 404.3011211646542 13256 1741 483808 COS_20210304 50367934.1906348 990.6615107714427 0.01671152878500186 3.2983505170187854e-07 12375085.583253512 244.24677392955462 16011 None 300118 COCOS_20191127 13904663.788278252 1939.423747125767 0.0008052361860117861 1.1251295852754262e-07 3147058.8145659124 439.7280003531899 12930 173 44798 BCD_20190712 185472834.7143172 16375.805725359702 0.9858801938007409 8.687495201039632e-05 7437416.141025908 655.378994725563 21410 None 3671311 MTH_20200107 3419231.684577224 440.68443853298766 0.009910561043681418 1.2762284220193743e-06 333404.5672384545 42.93403601121729 19245 1951 1221699 MITH_20190601 26297358.54471569 3065.80420373042 0.04901802921724028 5.715738805119856e-06 7953139.182017623 927.3744165379281 73 2063 476862 GO_20190719 8866722.258164588 826.7760301247455 0.011793003011170363 1.100478081285912e-06 304467.4215730137 28.411739027741245 10070 681 877679 ARPA_20210814 57962942.700521834 1215.1373913085226 0.05909622832073618 1.2385945445984654e-06 59139596.01198629 1239.503485614171 None None 741710 SHIB_20210710 3957714418.534732 116689.4771047506 7.965324149787628e-06 2.3439398262788575e-10 318390417.6537136 9369.210420193582 730030 197420 10263 TORN_20220112 67646131.35661201 1579.820478895353 28.743093693533513 0.0006717900166981685 16103098.828110611 376.3652286692593 32411 None 86239 CKB_20210930 349513815.2174888 8412.63923568671 0.012468829792960545 2.999724615747926e-07 87552285.72313446 2106.314313448687 None 7857 130770 INJ_20210427 260436576.0191475 4834.284421429641 19.31163765660627 0.00035824577993704847 144470873.7245399 2680.046185411393 None 3074 97465 REP_20190904 90812421.56596877 8545.169516266838 8.254186098293747 0.0007767312233658936 9735069.448551197 916.0845554340214 125816 10044 201886 AVA_20201031 19702849.992773455 1450.5316016035426 0.5177152708709204 3.815022028133185e-05 1597927.9954918139 117.75064104091099 None 8978 83039 LINK_20191030 971277864.632447 103215.42491271171 2.664338945490083 0.0002831742912878426 100682387.00268303 10700.839558312564 None 11423 94194 ADX_20200320 4903586.685005768 792.4472690818576 0.053631729169346234 8.688082874912642e-06 222542.27372981215 36.05078089559705 52321 3770 39887 ELF_20200530 41342235.546333805 4389.249964628969 0.08955049673336328 9.53799724796626e-06 24883801.79351388 2650.3664600784773 81476 33392 471890 TRX_20200707 1191366500.4910548 127626.33979456815 0.018034075278025922 1.93018957374884e-06 921020217.8182389 98576.92142445405 513248 73470 58804 BAND_20191102 4854013.986566967 525.730091308667 0.31005497745455696 3.358903316445901e-05 1505039.971641476 163.044753986287 7698 983 534835 GTC_20211011 105960636.52712037 1936.787179427454 7.458054516827439 0.00013628989312045278 9447585.90936336 172.64696455734153 65504 1272 27256 BEAM_20210325 81012153.2630996 1533.0969293971536 0.9599821685894395 1.819550455444295e-05 32235680.627687898 610.9951756067605 None 1994 205649 ALPHA_20220115 250490367.20386946 5811.661342418811 0.5626457776853168 1.3048559280141538e-05 4494279.398307962 104.22875897442411 95017 None 55254 DGB_20200713 292996564.2839832 31573.521520887927 0.021926998827048082 2.359976301957408e-06 15092839.56545251 1624.4240255887416 162405 22584 171984 TFUEL_20210401 0.0 0.0 0.41629707603728777 7.084505483124814e-06 157704412.66727453 2683.7992399307936 121425 11274 23388 TFUEL_20200621 0.0 0.0 0.009399355282994865 1.004597927385172e-06 15790447.704102175 1687.6743732332498 71607 4251 93022 YOYO_20210217 4544021.519597737 92.34461924785494 0.025512455027931386 5.186643388478044e-07 1400865.978542648 28.479392742867603 9424 None 1496735 APPC_20190316 8096273.082237568 2063.2246271545923 0.07760396346255753 1.9775438804969665e-05 745357.8117916589 189.93588906066267 25428 3414 1389484 DNT_20190909 4521864.375218464 435.3523384714644 0.006698373445852027 6.444985125876501e-07 245190.643184655 23.591548920100372 60178 6273 485543 STRAX_20211221 189517707.37040114 4021.200789239103 1.4356861362901339 3.0462495058924397e-05 5782231.425104292 122.6878157867793 158723 11171 200312 UMA_20211125 863606016.007982 15105.26395512853 13.562828298433322 0.00023714292556457518 47058406.78725411 822.8053922371319 50114 None 217168 WAN_20190414 44457070.115176655 8761.36275901042 0.4186792251315174 8.255841971223776e-05 3351371.2612910382 660.8494011478214 109243 17163 502175 XEM_20210523 1793331327.8083663 47713.49351179128 0.19910522790392263 5.298367593328087e-06 182100673.7322259 4845.861249266717 366545 21495 32038 STRAX_20210420 203444529.35039982 3634.4149029687587 2.030913300089519 3.631557551759477e-05 10017247.752591096 179.12242596552178 154937 10618 156260 IOST_20190321 117722026.46041535 29117.045845652738 0.008736016566883609 2.1611476973358787e-06 37055776.06445392 9166.993274516706 195198 48574 93184 LOOM_20191022 14141370.284595435 1722.0489164260223 0.023478998417393603 2.8569357328548266e-06 3413906.7827452687 415.40580662227114 21096 None 365854 MINA_20211225 1186651448.7928457 23338.120139176935 3.5746765843596373 7.032720182461364e-05 33029461.812645357 649.8125277177753 167731 11880 61676 VITE_20200217 8643047.443284936 867.0021552026999 0.016851866723501883 1.693921159691054e-06 3621576.3158475272 364.0347300097381 None None 469368 ANKR_20210325 617546346.8457648 11683.401131703524 0.08720406109779127 1.6539506530469311e-06 557025821.1934284 10564.797202434518 58207 None 5675 FARM_20220115 100913414.14440075 2340.9118327944125 155.83305530878602 0.0036131556764998182 98933181.42133439 2293.8713826688777 61536 None 89050 ETC_20211120 6653693874.959404 114460.24549755536 50.787701443575195 0.0008731882767909417 1292491403.5929258 22221.685750521054 572407 62063 193595 FET_20200312 9629148.88413265 1214.004901399563 0.028320168878005283 3.567587896398037e-06 4805340.199732827 605.3450319625797 16603 359 523257 RSR_20201018 95737771.40002629 8425.357558113155 0.010249060116692413 9.019145797769461e-07 28592031.161489327 2516.0911806912286 44759 None 130786 THETA_20211111 7320432082.063919 112787.6431512537 7.351273201273133 0.00011317259728221515 535058054.77797574 8237.200291441517 213577 25646 30625 SKL_20210115 72084994.20605977 1841.4081583250938 0.12804768299319844 3.264107672940494e-06 19352293.660661105 493.3159956523142 10805 92 244845 PERL_20200625 7421200.930033172 797.6498494669332 0.02105767747351302 2.263871224150902e-06 1526735.708084141 164.13647899977659 11875 482 799656 VIBE_20191108 3553338.5330789723 385.4489245666606 0.018988435979674957 2.0597734101137308e-06 201410.48219868582 21.84803193876 20084 None 1037797 WPR_20200306 4947445.662686081 546.4568429277554 0.008138871700519516 8.984502986952109e-07 433163.5047003371 47.81693267840069 33655 None 821116 NU_20210727 112699350.05869347 3003.5942271728613 0.2019629149268809 5.4128650075939845e-06 23870025.728302363 639.7472874753947 None 7131 130828 BNT_20210527 1023583694.0071946 26125.50891562214 5.147625840524678 0.00013139761896072447 194330547.56639856 4960.4559524388305 119397 7324 28093 OST_20190321 16117450.512887377 3987.1188062738233 0.028499685932477776 7.0502238343105686e-06 2032539.175672195 502.8075107369515 17620 742 1075482 RDN_20200605 10137828.361401653 1039.202982600949 0.15200210654474502 1.5548333172703677e-05 1168750.5536688329 119.55178396738572 25057 4308 1725009 LSK_20210707 379712879.1935571 11116.933905410571 2.631330598970494 7.704809952687502e-05 22027222.9636504 644.9800218444668 196531 32566 337278 XMR_20210325 3788869966.872578 71678.28829256413 211.23014986879005 0.004006284110173571 622006074.5492358 11797.24132395852 376321 206057 39767 AMB_20211002 18743392.250268344 389.2860982714409 0.03222277192273488 6.690475478382021e-07 276844.2577807401 5.748170028494888 1492 90 718802 HBAR_20210813 2031423074.1006644 45691.68655833863 0.2186351200124845 4.91730835085638e-06 63306106.21543382 1423.813542561589 120014 24104 44489 XLM_20200425 1242586770.173138 165715.50535878906 0.06116590783940686 8.159791858047486e-06 513291743.6435925 68475.29838979332 281756 107807 81218 WTC_20220115 21841059.57502587 506.81289794378256 0.7513433875627286 1.7425843846367724e-05 3227858.6269686427 74.86345301336723 67740 20378 402204 ANKR_20211225 912434281.0548509 17951.133272573483 0.11184516860908236 2.1999287074920037e-06 53712015.63091163 1056.4837676332704 152910 None 5363 SNT_20190801 76854982.98070088 7641.701733683947 0.02169917345608771 2.1562016856735215e-06 32994868.248472124 3278.631358005573 None 5726 278039 BAKE_20210731 325502882.65691435 7797.266371396742 1.939607184906546 4.643382231081863e-05 46091699.174950525 1103.426397957212 None None 9329 CDT_20210212 13357334.551013825 280.1250357388889 0.01981008492322848 4.1490414121964615e-07 1611007.4858811155 33.74108086958131 19586 296 640190 NXS_20190622 23326223.544099152 2297.8672836722044 0.39067240706025247 3.84851556069529e-05 282062.96320737817 27.78603462598781 21337 3516 925188 VITE_20200404 4636622.069919536 689.4921991049039 0.00944959061017394 1.4044857834094319e-06 4527864.221341093 672.9731678782988 None None 524494 DASH_20200127 1031088569.2959392 119981.55035546972 110.94820097822698 0.012910372162895385 1032565479.8550569 120153.40951858736 316181 33832 73115 CTSI_20201014 7808576.447411573 683.4777256801684 0.039548099579249936 3.46240177069332e-06 1153637.3734673092 100.99995011459306 17992 144 389719 FIO_20211011 65926029.74623052 1204.8986517440833 0.183180799433136 3.3467659050136285e-06 2953105.897992771 53.95409433675086 None 533 497635 CLOAK_20190205 5974575.3176117465 1724.616221885848 1.1378497982032358 0.0003284508296792655 178074.20094594097 51.40275907903239 18082 1382 959121 ETH_20200208 24407934017.312393 2491881.9920089454 223.27631974791998 0.02277772230794609 34073387340.7219 3476025.38332003 450392 451199 19444 REN_20200106 29845107.908159558 4064.5571671751914 0.03512542317704836 4.782311676603467e-06 2107322.0663840952 286.9110180861218 10418 869 419374 ZEN_20190329 41484825.708954446 10305.864597564472 6.787119504597002 0.0016860896346195216 841161.2574080123 208.96541989551804 25172 1531 311352 BAND_20210825 318865600.9550018 6635.461692845866 9.041574668278866 0.0001882752864498395 80286286.66483977 1671.8242313309427 103269 5608 341497 ZIL_20210430 2312762454.442826 43157.05552703855 0.19285424449060554 3.5984112104181085e-06 286362314.44595826 5343.151068649712 234358 29263 36030 TNB_20190816 8332614.882156683 810.0314732793981 0.0030147451122489247 2.9295264758022165e-07 413558.32063070964 40.18681528509701 15643 1466 1174424 ONE_20191127 19487427.884556588 2719.722901298307 0.006561523393751503 9.168197136484101e-07 6318893.518726911 882.9178528771093 70468 None 191680 AMB_20200905 3106947.401507524 296.31594412429854 0.021487837684942116 2.0493391383818983e-06 886658.9818095254 84.56248508864323 20194 5500 374093 STX_20200129 49227541.84814323 5269.651434407215 0.09643232628580439 1.0337958509008094e-05 123021.90814616423 13.18847559836653 35286 None 32191 REQ_20210106 21456931.2181401 630.5113944537461 0.02778608058118924 8.145701040674434e-07 459121.77540447254 13.459504347080676 39511 27287 443928 ATOM_20210204 2193171957.910264 58521.905946453495 9.22324812610178 0.00024589223306529666 541489184.5502728 14436.127376099152 53444 11574 88305 BAL_20210727 213175478.6356098 5690.842557381722 19.63796005891934 0.0005263225026334019 45514502.36334218 1219.8470064159192 None None 131138 VIA_20191203 4373905.864108403 598.222272914304 0.18823248993840824 2.5757488668697352e-05 78802.8432907567 10.783278401018654 40191 2195 8860239 FIS_20211028 41181583.10354291 703.60734970654 1.5258882596862335 2.606930094374272e-05 8832254.880369103 150.8961806518707 28344 None 296076 LPT_20210617 606650785.0384407 15860.543387563946 25.383091539678475 0.000663643061862799 6817192.242743101 178.2360642008172 13179 1072 95239 FOR_20201228 9000624.359102443 339.0106512185874 0.01610402633027531 6.123597479012445e-07 2087750.255963022 79.38724106646555 17144 None 157900 DUSK_20201014 14168198.492133306 1240.169738179816 0.04844005688038739 4.239312573841495e-06 678842.4515803162 59.41003223319927 18411 13354 755132 PIVX_20190312 45760923.242591225 11835.205364570498 0.7705167479144192 0.00019952834246714108 1767243.250981259 457.63459075869065 60906 8600 184646 CHESS_20211202 121219768.49184309 2120.7316087203703 2.5673170386199815 4.491724078005752e-05 33327815.861779254 583.0964805739937 None None 44775 ZRX_20190302 145109982.16830966 37954.608632358664 0.24796783472276074 6.490864503618024e-05 18329243.466060612 4797.905983453145 147249 15615 253317 KNC_20200713 293706872.1658518 31650.064811589786 1.6115707974596094 0.00017345141124556232 81193622.8682673 8738.771199404218 114573 8521 92529 SNT_20210723 263561512.46663654 8149.225697834103 0.06835602460255263 2.1114063427314364e-06 185689272.55027393 5735.639398567274 133451 6024 134549 ICX_20190318 156734381.92118248 39361.39816005222 0.3310776675218803 8.314499813948544e-05 8306972.799716121 2086.166799310035 112182 23552 270821 WAVES_20190126 278562066.0985733 78115.7694896322 2.785620660985733 0.0007811576948963221 32081292.707440928 8996.396749789577 135377 56653 38211 NU_20211120 538532846.1889973 9261.35919195978 0.8502513097980365 1.4614279058577645e-05 62108346.851321355 1067.529920027697 None 9449 131517 NMR_20210624 162375680.58481073 4816.551076595605 28.341925841994723 0.0008402289243233417 12569215.14492505 372.6288107479481 29269 3494 564321 LTC_20201229 8661848120.150204 319430.66431522067 130.63865783349385 0.004811759765229829 7456439915.501087 274639.97389647923 136943 218705 164709 PERL_20200903 0.0 0.0 0.044533859710324565 3.909008887577194e-06 4025458.9820751976 353.33912308214605 13175 506 1250088 BQX_20200117 3900594.1141069722 448.1372173469053 0.02763138202177634 3.1733016470926115e-06 864753.7969057066 99.3118855179889 9546 4 278278 CHZ_20210422 2836148696.4177356 52343.18008951045 0.5300662588293008 9.787525457346759e-06 1690502718.989061 31214.66066216387 295960 None 33338 PNT_20210916 39918688.88453712 828.3183302038464 1.211489838849674 2.5131313745181247e-05 8215446.292500601 170.42236072698714 53700 338 370553 AUCTION_20210511 119645932.80592702 2142.9068736969034 37.06736168464093 0.0006632958544699757 12145504.59834223 217.3357499534288 None None 32937 XMR_20190629 1725287223.7480881 139276.22824760183 101.23046471549196 0.008176727378246228 175149257.80362177 14147.398568083525 318727 158889 113923 ARK_20210729 159424578.73772612 3986.910158279271 1.006292114735993 2.515181362025292e-05 3020444.31654835 75.49463161609631 73135 23422 125873 QLC_20210206 8915732.917099833 235.2373692741194 0.037196514255506075 9.747113737443787e-07 1947832.9421827637 51.04174304769639 30385 5594 940522 MTH_20191015 5229502.081832351 626.7776416701536 0.01505226732216212 1.8034493516977378e-06 191650.34567736354 22.962101606819047 19473 1975 761228 ARDR_20190430 63664943.75657645 12232.174337400602 0.06378703913891352 1.225058256478503e-05 594708.2679877101 114.21634923479596 68967 6562 1105375 XZC_20201208 43476649.820728526 2263.5766999703987 3.848113923117743 0.0002005427491344009 3868976.052323239 201.62996973837866 None 51 2356296 XZC_20200901 70710099.54117408 6065.206148578672 6.372354454700368 0.0005465929714476769 13443980.693169769 1153.166448508613 65947 4160 333585 ZRX_20200610 226522702.91646302 23173.999244503666 0.34640128585363783 3.54727625937681e-05 70299488.5659859 7198.925553117557 153506 16072 97412 DODO_20210624 125775736.32262607 3730.8866451705517 0.9636631536009594 2.8604825115748332e-05 40646710.125523664 1206.5336630610423 93461 1009 25674 DENT_20190804 42683898.569691926 3955.8814757597743 0.0005858481798494275 5.428575720570118e-08 375999.34734192165 34.84078295600701 46593 9983 266120 CRV_20210430 877412485.5452443 16372.398624501298 3.021142652754875 5.637062133976013e-05 316017597.17724603 5896.480356839595 109738 None 25328 YOYO_20190411 7167818.407117693 1349.6680141247746 0.024547323312051953 4.6221507333049745e-06 441121.7382148258 83.06124215039658 7325 None 1373234 COCOS_20190929 12601530.199896265 1538.6231444567547 0.0008018681490694995 9.790659335730414e-08 2141875.935742321 261.51902467489487 11139 127 135713 TOMO_20200526 28897454.331760366 3248.3484362784056 0.407827079566217 4.584544212287398e-05 13333301.295063365 1498.848711762454 23220 1552 201638 VET_20210201 1646343505.1608756 49807.76898851926 0.025426359906975587 7.669637269455636e-07 288380642.68285614 8698.7478074013 159026 75468 98520 MATIC_20190627 38734904.11679759 2980.0791194769467 0.01788664072228165 1.3715998819826343e-06 64540534.11535855 4949.156767343495 17994 712 215826 GAS_20190725 30928184.901142802 3148.2369794921633 2.199119530669586 0.00022426533859840083 1139694.445234965 116.22558805683154 324373 98164 191074 ROSE_20210206 112050497.903281 2956.8789639790543 0.07247439766046708 1.8986788306070183e-06 11417813.423133591 299.12301913686144 10289 694 215578 RENBTC_20210325 654437098.1234125 12378.236827141209 52765.25445214903 1.0015140222022858 20152784.371065065 382.5111115941698 None 4526 63602 ONG_20191113 0.0 0.0 0.14809893777830963 1.6825556498094038e-05 5541456.194151799 629.5661918654881 81496 16286 359928 IOTX_20200309 15645437.466988232 1936.6768993389937 0.003634468513120185 4.5138598806091673e-07 3094082.487484596 384.27227412027105 22523 1807 497303 LIT_20210723 56142459.46422085 1738.3493577960794 2.535789795611312 7.832911429159186e-05 9794702.604522869 302.55283032120184 53323 None 411368 FTT_20211225 5932179276.227806 116709.05290981966 42.69078820337523 0.0008398868001560587 86757387.07566758 1706.8409201946304 None None 969 FIL_20210806 5450183232.534917 133023.29491300124 57.755845102837746 0.001410154955613747 410014749.3847893 10010.836646753196 97530 None 38800 POA_20210107 6324346.512109675 172.78599695974168 0.021776531650676317 5.9e-07 415378.47671189386 11.25400983 18172 None 255706 DOCK_20190411 7735576.256881699 1456.7240610105707 0.01493679447142751 2.812531315193859e-06 820253.933136191 154.45013170459643 152 15336 183380 NAS_20210304 24099152.632228393 473.9940864875498 0.5257901588185715 1.0377097348371744e-05 7697436.338354693 151.91810815835953 23854 4838 561188 NXS_20211002 48923599.97584459 1021.8120047259132 0.6467299284535002 1.3426753837398147e-05 287175.0773614878 5.962039024834922 26644 4105 589642 UTK_20210616 138619840.34105816 3432.3266257376854 0.30744917810002403 7.617259133296423e-06 8367231.989431602 207.3037719137194 76242 3971 124472 LTC_20210509 23072612181.040188 392919.26882580516 345.64460849160116 0.0058862180743324425 9320853097.299402 158731.1724865352 174265 314594 92383 AAVE_20211104 4294182595.0204186 68135.58329833644 324.24080304919784 0.0051451630013762545 315266679.7264529 5002.758569683032 333660 13799 14216 MTL_20200621 21166233.687644467 2262.491773255016 0.3274858693660048 3.500150975335776e-05 3179621.8601433346 339.836237103149 36942 None 365486 NAV_20201226 8722046.25888244 354.0696603350958 0.12334527669639479 4.999686133540042e-06 218829.45224023735 8.870048430542425 48228 13650 1033713 MANA_20190821 49934912.838423125 4640.537132734277 0.037646380055386806 3.5017755208617372e-06 12572273.921274142 1169.4426129235933 45639 6350 132060 ATOM_20200308 678216626.1841536 76301.70364354053 3.6163339727974946 0.00040630994395518034 107679505.93915886 12098.233833590431 31547 8228 85359 MTL_20210421 238795785.59733424 4226.809181674499 3.69832283261672 6.561888637885215e-05 60459001.87586153 1072.7166216216897 54495 4052 207061 VIDT_20210731 18893170.431413997 452.8404171058959 0.4087148877874568 9.787397316858704e-06 926586.0278088956 22.188733205949703 29556 1621 1192121 STORJ_20200330 11294582.389562996 1910.0566572483951 0.07853463417361253 1.3304899738814359e-05 955278.0983991191 161.83788790291467 82083 8033 127597 NEO_20190701 1186082161.8575015 109089.88367691798 16.835372789368467 0.0015516816364055013 636598089.8529848 58673.93482486409 323376 97976 188893 SUSD_20210430 189157537.60652712 3528.8048974345515 1.0238507911983248 1.9100982830111807e-05 18212310.400501244 339.76926252065203 118046 6179 27259 MDA_20191015 24613380.53059279 2948.8847262704116 1.2505851127136802 0.00014983569335402731 4808675.553768633 576.1393034257593 None 368 2423736 POLY_20220115 439338732.6297579 10193.158152758673 0.4894101844183757 1.1347497374444263e-05 11842086.499644253 274.57141216289244 64669 8565 147396 INJ_20210112 59106237.68766606 1663.5429696116082 4.414946370862457 0.00012420120626581581 16527340.291919334 464.9468936178731 None 1971 132125 ARDR_20210616 180945981.90272397 4480.508178503418 0.1810509957324366 4.485659579114701e-06 10628230.342356643 263.32151917399443 71967 6942 None AUDIO_20210828 1015595457.2111841 20707.54243030452 2.5379780681647808 5.174787029274005e-05 67648628.55841102 1379.3154874083489 68969 6858 28500 OAX_20200801 5232740.917604243 461.6923318434979 0.09933517560514857 8.763432268421044e-06 925533.7036423794 81.6513573827163 12124 None None TCT_20210324 26896727.129106257 493.3870882971751 0.045239812723500236 8.295944400772044e-07 18833782.374383923 345.36838688761225 None None 642117 CVC_20200523 15789162.639253097 1724.8409341190127 0.02352021312893017 2.573860392546477e-06 10252546.285291014 1121.9550886637885 85563 8018 119250 OG_20210902 8172776.686945037 168.16309447181413 5.9213346468119825 0.00012158052182646089 2013703.2397366948 41.346606009277984 706414 None 310886 STMX_20210828 282714799.4634945 5764.055411548049 0.030522292758007184 6.223314797280772e-07 17619984.06386078 359.2610437946524 70432 4828 93146 MTL_20190426 21891233.66551111 4218.042850500386 0.48468478786347263 9.330296935647208e-05 2326590.083340658 447.8741002124298 33511 None 736398 RCN_20200701 31446749.02218705 3437.476915688109 0.06152726296687919 6.7270845860397065e-06 295832.5233675301 32.34485514277193 None 1136 1147730 POWR_20190730 31691376.831981637 3338.919288244826 0.07572109536032579 7.960631287150958e-06 1483070.912849476 155.9166656756915 84442 13129 580575 TFUEL_20210314 0.0 0.0 0.37439517346450907 6.103039790282912e-06 331922858.2167608 5410.695849136942 98318 6564 39899 ASR_20210304 0.0 0.0 6.874975564213947 0.0001356858615570672 4781652.105906063 94.37162061101958 None None 140044 SNGLS_20190702 8450079.896195695 797.1079339244573 0.014315310684159812 1.3499300641026466e-06 397356.7165559726 37.47063474113511 6 2180 None HBAR_20211207 5133966877.855458 101713.70050018613 0.28122229442655344 5.5679671478706205e-06 88759400.6273265 1757.3621883904839 180837 16392 30146 MTH_20201115 2570237.737995735 159.66614281071531 0.007387856708425075 4.5927071935577445e-07 62051.820947289685 3.857490144780123 18901 1892 2394440 SXP_20210519 330096886.08264905 7744.330586727615 3.841228670189329 8.978845102257607e-05 304970227.23604137 7128.657693314971 248262 None 53111 RLC_20200423 20785260.4963291 2921.6388290018153 0.295944910329937 4.1598908102119276e-05 292435.3567690076 41.10559468139578 30533 3571 508763 AST_20200914 21138125.055108327 2047.2874545156847 0.11947647488993823 1.1571348328797662e-05 17358231.55876688 1681.1522429285812 33445 3477 151828 QLC_20200801 6664834.467129482 588.0491818406165 0.027961021675164573 2.4687496940676926e-06 2086121.5291826196 184.18897373596442 25903 5637 940522 THETA_20190410 97684164.72501355 18886.283053287945 0.13113182459198344 2.5341076120271707e-05 21276968.176013 4111.749926721497 None 3944 286208 MTH_20190228 5176581.3978411155 1354.4954233953988 0.017179872276546864 4.5035458216429135e-06 164436.20429691486 43.10544158114314 18639 2018 836408 WPR_20200329 3489569.7759592854 559.5412196506676 0.005630305119554281 9.005509627297702e-07 642462.9769970608 102.76008851519215 33470 None 964364 SOL_20210825 20724670218.176235 431271.84280056105 71.21280823557079 0.001482846461630417 1645439131.9405804 34262.56673595928 424322 34764 11331 XVS_20210108 14762987.340564363 376.87978079308425 4.021446967606946 0.000101990302326325 6910226.257832815 175.25434771531292 14212 None 105222 KNC_20190813 28823378.56550869 2532.5873187302664 0.1720429077906035 1.5118430173367647e-05 5925551.3458587425 520.7133232722714 97669 6695 212094 NULS_20200331 17612085.301637784 2741.2003719842764 0.20706592993395115 3.229824440736549e-05 15520846.605801009 2420.949198370253 22765 5186 531222 SKY_20200404 6358333.7364445655 944.9344076690363 0.3740196315555627 5.558437692170802e-05 162874.82007925058 24.20540160602646 None 3828 269101 MDA_20211002 13643689.137557818 283.336947661818 0.6952821935491932 1.4434735854118845e-05 728606.5155529235 15.12658125172058 None 390 671506 VIA_20190821 6189978.214123658 574.0480103639659 0.2670882142040504 2.4794272120926832e-05 241824.4321467266 22.44899047306453 40818 2220 1896727 NEAR_20210819 1924543975.991693 42719.74428193209 4.395249357697003 9.76074134634356e-05 327567755.9369944 7274.454482324301 102261 None 6382942 DOCK_20210509 63899938.72918495 1089.4873473836324 0.11421672569864058 1.9465725576467723e-06 8585510.952533701 146.32112688708264 None 14989 221085 SC_20190325 108174594.06800814 27089.49104655103 0.002705405177294969 6.779829946168131e-07 5933232.529419557 1486.886619355048 109632 31090 227818 OM_20210519 80694766.54037087 1885.3374267665804 0.271082652102375 6.336240627993251e-06 15481089.582199125 361.85240189877044 41321 None 60730 AION_20190703 41019914.19669358 3800.673614524041 0.12486325581419451 1.1545209162023798e-05 2192413.614801981 202.71675271885778 67530 72579 281038 WTC_20201226 8607539.02976159 348.55237774773224 0.31644305254788846 1.2815689757972124e-05 2144851.8028305536 86.86477728166824 54782 19197 825583 BLZ_20210325 102512165.32375059 1939.4345938152164 0.363923980286215 6.902342589054825e-06 75633383.55240181 1434.4960835982488 51836 None 289688 DUSK_20211225 290961654.9431337 5722.403209353868 0.7584664819665676 1.492081542560797e-05 52573458.42214328 1034.2432896556818 None 13949 291899 GXS_20210916 51254477.70413852 1063.537520236734 0.6835412918318245 1.4181916545142554e-05 8775696.973035028 182.07561647594443 None 27000 828965 PNT_20210105 9594523.737281037 306.6685885467499 0.34220545683131093 1.0937871155780116e-05 3097977.047230159 99.02026139481244 7083 112 1089026 MDT_20210805 15856574.89622582 398.6577981839805 0.026145078293453684 6.57475996260133e-07 1381257.5866444013 34.73478632107519 34409 316 745074 DOCK_20190908 3087573.9870319357 294.89620186230655 0.00556118252772612 5.311814769357425e-07 3626006.4300959837 346.34134760263345 None 15176 184011 GAS_20210325 158787912.57657364 3004.1192648514234 11.467786140144273 0.0002176649907637042 20700984.734255996 392.91626089957106 361144 106833 100528 FTM_20200208 24068375.639405522 2457.428446089605 0.01140609693831429 1.1634569292955814e-06 4452843.774227215 454.2037449105705 20746 2280 481590 COS_20200403 10410529.283724198 1535.2206879405062 0.005234695015661789 7.678052608658335e-07 5063000.775771693 742.6217993167733 10386 None 122996 ZEN_20200425 54418980.04445704 7257.496213258821 6.102283843699746 0.0008141519561454246 2002154.9966153936 267.12267877930645 60915 5151 38653 ZIL_20191113 54899555.48219659 6242.3262090902845 0.0059163786359902795 6.722399684728704e-07 6535408.821708318 742.5763783164564 66416 10577 219357 BTG_20211007 1306672825.9776204 23537.898229167415 74.75938916262781 0.001347645089005864 412639780.2029951 7438.423180656694 102469 None 280701 PAXG_20210731 307815755.43031335 7374.5976847489965 1828.266850105124 0.043726664731387754 9601038.457704075 229.6280708087262 23951 None 40535 SYS_20210217 93369234.86330776 1897.5296888744392 0.15390597459675842 3.1278092459475706e-06 7008511.517631729 142.432983401804 61230 4597 261910 WPR_20210401 28288546.096351754 480.93980544661883 0.04646442885753346 7.899519932490395e-07 1432418.7591833214 24.352866952344325 32894 None None DLT_20190915 3968003.14011856 383.412776320685 0.04946216193624797 4.779337153002733e-06 5798086.92884756 560.2466853571325 15007 2648 9139526 BAT_20200314 190033866.6003761 34517.016657492284 0.13274836375748966 2.3862475425784576e-05 78897700.33835563 14182.430443469064 None 35718 21544 EVX_20200718 5579192.066382214 609.5420350980446 0.2553241368831119 2.7892777595513417e-05 516117.497580491 56.383038238786156 16694 2831 947797 MDA_20200905 6625573.785952653 631.8945569523215 0.3375419833233881 3.219207104102492e-05 456179.49628415535 43.506773904829856 None 373 1669605 MBL_20200316 4552230.3072016565 842.6326490583928 0.0013006024796942193 2.420353779256111e-07 3234542.1693236176 601.9315268048903 None None 114904 BEL_20210724 69781603.40893152 2087.291685599984 1.4555579405901633 4.351582379940935e-05 9764598.194403524 291.925537727073 32702 None 593705 NXS_20210408 100402733.9270241 1779.487384469363 1.468926500205998 2.6120158106047633e-05 999839.9846888246 17.778955228296255 25016 3810 385791 INJ_20210806 265059653.08613384 6469.34367115128 8.11553365435669 0.00019808053059212801 106682848.52518198 2603.8700769361494 78384 3824 150337 TCT_20210220 15824785.788985683 283.3085473404239 0.027361206140644974 4.894136124818301e-07 3512621.1400823887 62.830731679405496 None None 1023236 FLOW_20211207 3026900454.7376046 59969.08840145141 9.629048455681868 0.00019079118368241343 109839856.70489033 2176.3808098677487 123622 None 221603 ICX_20210325 1118703939.359933 21244.64788119557 1.8740225204837249 3.562306315127127e-05 187680685.8696656 3567.5990293239734 128361 30337 116416 OMG_20190906 146240331.25391737 13834.841541045807 1.0426644731066421 9.86530711925718e-05 42508343.07257647 4021.9828176578144 288057 41362 None SUSHI_20201208 309626364.86134756 16124.879960880557 2.4255101892759017 0.00012634056464454915 236898538.0021226 12339.628663275771 15369 None 76561 LTC_20210727 8741779083.764177 234220.3887181028 130.95824543918272 0.00350879275931077 2517126156.487427 67441.90869796333 188986 339313 73316 AST_20210206 33892453.32200842 894.2290957372346 0.19553962528138416 5.144229196418575e-06 22700170.827457614 597.1929288820926 35997 3446 162456 FUN_20190122 27781989.452575676 7866.990505878231 0.00472925131147275 1.3392522224951718e-06 1288477.5811526023 364.8773030960905 36572 17877 460903 WTC_20200127 11347163.502306413 1322.0293710306414 0.38912915062352676 4.5280609416704295e-05 8474337.965701282 986.1075349281948 55130 19510 1023562 ELF_20210724 86061966.86323476 2574.656971559775 0.18634102474209957 5.572838092421769e-06 6710257.89896904 200.68141667195698 87886 33390 615767 HIVE_20210708 128263994.59806126 3774.9357219377216 0.3448227102921544 1.0148842046849745e-05 7947860.676188654 233.92189726907992 22066 169 116444 WBTC_20201101 1617630588.1735325 117264.61937373587 13739.141099585573 0.9957001748522395 61963068.40428534 4490.574599775324 None None 172604 VITE_20201101 8845208.86852401 641.2032875934902 0.016283330465457414 1.1800821371666241e-06 444922.665355448 32.24434282165622 None None 740345 DASH_20190803 942952083.0611906 89593.40718684584 105.12364044507922 0.009987807000773813 318937388.4421414 30302.27137876909 320612 29367 93403 ZEC_20200901 781020905.032792 66851.1758461411 78.52594225585415 0.006725909190073531 571223511.0139098 48926.47387530204 71641 16113 174620 PIVX_20200914 26335905.593985848 2551.333143391918 0.4097524525707394 3.968366148693665e-05 351554.9282061751 34.047353902267815 64718 8621 359685 HOT_20200313 51506319.38944653 10718.888011471443 0.00029605791564399445 6.198284745223119e-08 8782700.343152788 1838.7509565625103 25139 6923 537857 XLM_20211225 6925772455.900959 136255.7383312902 0.2801073555042151 5.51075490557494e-06 323963102.31046087 6373.560780183735 710139 209197 23107 EGLD_20210221 2391235756.129077 42797.252955190044 140.16618181127268 0.0024930286876299135 307171760.5101226 5463.429203005754 158335 6484 32014 TLM_20210509 642771622.6873956 10959.168737113912 0.5187806125881939 8.834669320479461e-06 121091073.17038018 2062.1425765798504 41360 None 22915 GTO_20210108 13501745.064164251 344.6819131331588 0.020474039189313103 5.18823771720114e-07 26863889.132002193 680.7461953971166 16523 None 786393 AUDIO_20211120 1109185134.5566628 19080.770048857892 2.1975282216698595 3.7673398855821496e-05 60991379.57066186 1045.6077636110308 105403 8374 20469 REP_20210204 122424003.06425297 3267.7828747947065 21.010666918152307 0.000560135554234079 31471046.80747141 839.0048880647272 137420 10531 129604 ATOM_20190729 882016417.0948541 92396.92661196337 3.618093912656449 0.0003792479579421931 129884746.6238182 13614.495951199895 27418 6271 109453 ROSE_20210427 219645468.7124709 4075.990529094171 0.14679967688675052 2.72324728104093e-06 21325924.347609416 395.6123523358624 None 1389 227579 WRX_20210616 705743604.7731303 17474.62434754746 1.6175558743398566 4.0077321935578086e-05 30274092.048366662 750.0850836604819 None None 1299 ICX_20200208 214108581.67539003 21859.011853811513 0.41541723259150104 4.240760455613982e-05 91253116.2636893 9315.516462532902 112159 27302 146794 VIDT_20210107 28879671.106238633 787.917874490913 0.6260892478460807 1.6962878301959317e-05 2770002.480656634 75.04874925923556 161 1153 None WTC_20200317 4827179.192249133 956.3987475384793 0.16561681814020326 3.2933474574154684e-05 6210951.588314061 1235.0691102028422 54888 19436 966319 DLT_20200229 3579614.786420718 408.9687210480279 0.043506110775113564 4.986707902545322e-06 141084.51007092823 16.1712281048086 None 2590 5142764 GRS_20210704 49013686.357178695 1414.606934456466 0.6303386312725474 1.8179773183094616e-05 5837678.960049501 168.36613550905116 41280 106847 6338611 MANA_20200905 116827366.74736455 11142.065507933636 0.08801402613472813 8.39407813522636e-06 61629743.7388574 5877.755025159826 51281 7264 80457 SOL_20210902 32218252304.33078 662324.8045561741 110.81781609465583 0.0022776133251364715 3649705606.8515778 75011.567777966 480235 42483 9402 ALPHA_20210127 246171827.8107594 7558.709837492503 1.4235850144446989 4.3692109146694566e-05 276904513.5635635 8498.64399180325 26491 None 81517 SC_20190626 136676410.92713127 11578.967641247866 0.003321004085752825 2.809404342965238e-07 4713210.782746698 398.71419909311976 109541 30855 233756 QLC_20190329 12775136.889713416 3171.652141127268 0.05323777742244389 1.3215341088564106e-05 10247786.335442372 2543.8325636882028 24312 5846 940522 CKB_20211207 666467044.319626 13204.075157113935 0.023029956759450295 4.563152694226044e-07 30302969.726518936 600.4226555652277 73716 13982 82429 XMR_20190719 1455126407.360025 135582.65268102384 84.17299047862217 0.00789136448433455 188414471.01280916 17664.18487011918 320024 159552 109892 TVK_20211111 132260641.12268727 2039.5083538690642 0.3022077989124212 4.652478636753275e-06 39782695.631764695 612.4532265723591 60115 None 56112 WAN_20190513 38394668.661478266 5521.169875821444 0.3494170582007794 5.0222173640919014e-05 571656.6898478434 82.16496838581459 109092 17111 543432 RAMP_20210610 68490470.35174637 1824.6646026285412 0.24205361047393498 6.462750474380715e-06 15053587.6733126 401.92575804321206 28547 None 97313 IDEX_20210106 18399786.740691327 541.5356074478765 0.03261833903221311 9.57220744908298e-07 1537510.3951578839 45.11991994147306 44336 1945 159964 GXS_20210219 50155930.85708193 970.3755835722053 0.7149321521002591 1.3828355129676678e-05 47350895.0537076 915.8701152090516 None None 445350 WAVES_20200531 111420328.1158276 11497.3381840343 1.1114960147347985 0.0001149026754611794 30003266.21387368 3101.635556804632 141 56835 100972 POA_20210124 6534153.919518439 204.35173683903935 0.022991027454219166 7.2e-07 286190.49122371257 8.96250305 None None 322201 THETA_20210718 4435268311.767814 140331.5316056616 4.4312931948723655 0.00014032404736162216 207688420.80151224 6576.788877507651 182969 21554 19127 TRB_20211104 130665724.87789463 2071.907765102389 63.708966965146985 0.001010204500721907 22872109.56660194 362.6727778811122 25718 None 513298 REN_20190104 15574693.829022868 4130.170518819243 0.02081960415371826 5.521706231585708e-06 284107.8601493426 75.35014259860147 5340 758 727277 VIBE_20210108 3438314.731306688 87.95210607536325 0.018157876578669012 4.600023738254077e-07 216587.77228222077 5.4869240332 18501 None 1637707 IOST_20210805 572082735.951812 14383.00801946207 0.025221240761816643 6.342585779320174e-07 65025008.993116796 1635.2355589273661 250349 53590 221575 BRD_20191127 15711506.18321863 2191.9701902562665 0.2597951069676906 3.6284269767562625e-05 1024833.4023120911 143.13330251029518 176 None None MFT_20190618 29283175.92599415 3141.641256034159 0.0033172443101764796 3.560292104619765e-07 3424636.117726589 367.55522931288107 18706 2072 885644 EZ_20210523 0.0 0.0 5.2917338552356386 0.00014090689969640808 3152890.470492912 83.9543396234773 32616 None 115184 BNT_20200423 13700457.078136697 1925.777518238286 0.19642128646173843 2.7609567725670575e-05 6316963.099437833 887.931362512812 None 5014 138596 KEY_20190605 8650093.464863375 1128.306701415446 0.0033137521396581797 4.3139668838617546e-07 857514.8321024086 111.63449866505867 23990 2834 681571 ADA_20210731 41920164939.7779 1004762.2788027879 1.3060900930002883 3.1267545187619026e-05 1393986955.7027898 33371.779146003246 533461 550309 7933 TROY_20210804 13418935.201025866 349.24889433517774 0.007056595962415676 1.8372209953118836e-07 11942598.531274565 310.9316854344512 82675 None 543401 XTZ_20200704 1634223011.5416913 180195.8627990091 2.2786383583825223 0.0002513673536810863 58581081.48029622 6462.355631514459 67209 26966 72364 NEBL_20201115 6730644.3297964865 418.3073839671238 0.3940140802979943 2.4495509751677465e-05 296847.41775370936 18.45474357374958 38410 5912 779472 KNC_20210108 211521822.33735883 5410.729153465071 1.0687000642248496 2.707390174841862e-05 109838570.96038648 2782.5942730948923 127678 9341 138877 NEBL_20191015 7052119.889035837 844.9023851208605 0.4508566983203387 5.401825538251227e-05 123070.78877843017 14.74541539058368 40274 6095 485990 IOTX_20190702 32343200.791086257 3047.983503230444 0.009244536771278237 8.708966062009585e-07 1981237.759422295 186.64572205703828 19954 1744 776154 POWR_20200330 20986959.3447982 3549.160122022379 0.04870403294625617 8.251165642324683e-06 1066058.3142636889 180.6056542601628 82332 12812 249499 APPC_20210724 5724545.441560174 171.9630601863981 0.05079234466963287 1.5197931156723565e-06 497090.0304042246 14.8737769636647 24907 3127 778412 C98_20210731 230426745.37898898 5517.973963864043 1.245911709927003 2.9826886291156987e-05 375709804.7228822 8994.42033866009 None None 62604 FIO_20201111 8777393.933593038 574.7009429177905 0.07680885604561068 5.028518947203141e-06 932909.5552783349 61.07568340763024 55628 150 236963 ENJ_20200411 80863170.7682682 11793.388793793547 0.08840615235733845 1.2890306666308231e-05 6942321.627341997 1012.2446500201527 54138 15295 101377 MDT_20211002 23169024.29939885 481.0848059351912 0.03826299645291432 7.943777021159728e-07 5695080.655255273 118.23551482315328 34816 335 876365 EVX_20181229 4312047.177038661 1120.8128020848533 0.22386503721161322 5.8155094205248536e-05 329824.5695720516 85.68099402023631 14140 2330 1285195 NEBL_20190905 7836887.31143166 741.9340105865567 0.505085062670489 4.781742691232087e-05 139822.84073460475 13.237311814667313 40378 6119 464857 JASMY_20211225 395909411.74242544 7786.432507098033 0.08308499808440761 1.634476869485555e-06 71542169.17857239 1407.4023399074222 None None 74967 DENT_20190909 33996142.723160475 3273.053538394041 0.000462030250093684 4.445524146466908e-08 842584.7365050043 81.07111581585724 46506 10162 253321 ENG_20190812 32721952.34426754 2833.4867701570856 0.4172535693625354 3.611251291405931e-05 266462.4409472948 23.06182390368055 61690 3477 330014 AST_20190930 3958649.4259129916 491.2181075691649 0.022959492926540696 2.851441627402015e-06 1543982.1660716676 191.75401801726198 31982 3560 234516 TROY_20200711 7396703.344797555 796.6023950326381 0.003892549920091055 4.1926669630845875e-07 2881827.416379215 310.4017379353715 9008 None 690328 RDN_20210508 66978947.75845739 1168.9100096547286 1.0078656784105422 1.7586264102683e-05 1905996.4395785632 33.25776190539983 29081 4576 580559 BZRX_20211028 109722367.32896104 1874.6599392682397 0.3369228304534285 5.757591415891454e-06 13850930.661485756 236.69514877146736 31774 None 306416 OXT_20210727 163282780.33908707 4361.372761414211 0.2757809291032594 7.391207487497868e-06 15662457.783361357 419.7696904475021 68050 4350 154434 DCR_20210902 2411786604.276276 49589.03382658389 182.09528042133186 0.0037411613680993993 18600367.200846843 382.14595701360906 48181 11621 170768 SOL_20210821 22425622491.819256 456379.2799052761 78.44870433277 0.0015957095943766352 1816393865.8523588 36946.90872920798 411323 33454 11331 ADX_20200711 9466492.899083871 1019.5124184983882 0.1023518025637597 1.1024316451443056e-05 194602.97343439102 20.96069348848102 None 3741 19706 PIVX_20190725 29980791.598358616 3049.90225686498 0.49342558144435106 5.031934533455627e-05 9337403.02979201 952.224662143964 63351 8617 284209 LUNA_20210819 12751788023.3138 283055.690225351 31.107650994849116 0.0006914011085829382 2517063392.088417 55944.44980598585 105589 5376 18941 BAND_20210718 178940287.34715325 5660.974335559797 5.088604484054514 0.0001609934769370027 20803681.728652395 658.1877340008774 100532 5497 263918 ENJ_20210909 1624672768.6909323 35054.473873568175 1.7396420693211734 3.7559259262059775e-05 265364287.67287225 5729.274001453877 291159 35873 31827 SYS_20200502 13366936.91699984 1513.5459254712218 0.022823105642886598 2.5842733280545402e-06 344524.97077958565 39.01075983109916 58215 4492 978039 HC_20200523 62559858.670723625 6834.168950777796 1.4019810701435056 0.0001531553251995566 118976312.2978659 12997.219569561295 12635 843 1020221 ZEN_20190923 29557181.9840181 2942.432645780759 4.053336273002893 0.00040357015238671573 3865309.474466244 384.8492768838291 27095 1786 203585 XVG_20190616 145371931.07132527 16487.248243598755 0.009195383941787871 1.042474616078847e-06 3204655.49667097 363.3096812168003 303997 53037 395064 WAVES_20200422 96166098.10628276 14042.39597349715 0.9623339327134934 0.00014057990478420136 52180827.167768195 7622.692565897157 56 56856 71676 BCH_20210427 15884593268.499212 294871.09678614495 848.440875032004 0.01574512786446365 6870719091.463357 127504.87841810002 None 513123 311242 LUN_20190812 3184475.6276293495 275.6608311539122 1.177971243013998 0.00010196985937253998 26582.407741494688 2.301078566441304 None 2202 1249671 TWT_20210722 103131819.69207697 3204.74706323857 0.2983289635752918 9.23723066713813e-06 5926723.47367217 183.5105487933462 None 41374 2945 IRIS_20211011 119336943.70317332 2180.9488947040227 0.10624121550642968 1.941759497343412e-06 10710949.302323641 195.76289139963794 29070 None 488094 DGB_20210826 1030663668.7092375 21026.675370232053 0.07049756013772344 1.4386036386426326e-06 29836056.583336167 608.8474477653172 224997 41220 143665 NEO_20210218 3001572248.807349 57526.59838736112 42.478378970336145 0.0008146905585319809 1187666931.629569 22778.20056539697 343853 104170 123772 REQ_20210318 114074185.94742021 1938.3392422266336 0.14815381232774863 2.515613315804395e-06 5224901.573620845 88.71747385947047 None 27354 352445 POLY_20200901 40783682.1809724 3490.2088148279468 0.059143922517286965 5.067250002819215e-06 1334881.701493867 114.36812131763898 35276 5013 332853 JST_20201101 31999258.76418736 2319.67726541381 0.022326026465049054 1.6180071442512237e-06 37489990.08330929 2716.966760191856 30296 None 128932 WRX_20210408 1001131297.3802941 17774.1403031506 4.096510194400049 7.286062509108006e-05 616883274.0131283 10971.90018330008 95739 None 3317 RDN_20201226 10811838.987818263 438.03897178949876 0.16169435962758896 6.557442911359621e-06 686261.388982472 27.83102571349736 26474 4384 1993466 REQ_20210704 41389386.10141575 1194.5584375206547 0.05366995700828567 1.5479102767147292e-06 814518.1781569029 23.491747130436195 43394 27772 349393 MATIC_20210527 13850815377.36262 353522.24029018177 2.2155952356600723 5.651527504490967e-05 10105637470.648245 257774.01574330486 391446 36306 14850 OST_20210408 30378031.84335846 539.3091269587754 0.043828550737607594 7.799642380940134e-07 2987324.1242408217 53.16183048015023 None 752 535781 CDT_20210506 29022859.015684847 506.5936419546763 0.04302520101445137 7.505115718936707e-07 1223062.1069840807 21.33452587770349 20763 328 439508 NKN_20210401 122377610.71046185 2080.568725082057 0.18691373384034815 3.180880790391789e-06 13377014.241270943 227.64880225013684 17076 1175 290706 FET_20200927 40452512.18217535 3767.3614576445148 0.0590045680943303 5.495717659459747e-06 5041320.760763511 469.55136571182345 24973 670 228817 ANT_20210125 147872605.69779873 4597.351286646469 4.248792932937746 0.0001316892719701102 76947834.10902618 2384.960720241092 77026 2702 136164 POE_20200316 2184702.713843853 404.275119082347 0.0008630372684129815 1.6060676085542562e-07 67420.44387328511 12.54659503387962 None 10448 698681 HC_20190511 47575442.02623652 7466.180109763681 1.0791047475906785 0.00016938287321188888 13424585.035204949 2107.2048751683046 12732 801 932135 DGD_20190618 57303190.681731835 6147.356110535838 28.66516317526623 0.0030765401817844447 4004076.1900573433 429.74467699060546 17061 3364 464575 PIVX_20190811 20847869.539916597 1839.9662939004957 0.3431170636333174 3.029821052771137e-05 6386410.644511028 563.9381853378131 63304 8611 295552 ENG_20200531 26662783.823334236 2762.293606363108 0.3220085234204807 3.334100374670036e-05 1933664.249757014 200.21304501876003 75 3569 509228 SAND_20210204 63849342.5678363 1703.7356359681726 0.09772194313860882 2.6052716450108545e-06 38376217.1229896 1023.1117710327611 67272 None 48574 FTT_20210114 822988080.7281199 22102.185962239833 9.205980391910588 0.00024623613851400993 21934757.194017705 586.6979594528966 47358 None 5141 IOTX_20210108 41571066.1608408 1061.2550116454645 0.0072668558041006125 1.84299041213782e-07 3563374.4941353058 90.37285456857397 30740 2016 689535 ICX_20210523 712355671.4983759 18951.115169215358 1.1365332390369949 3.0240658081488613e-05 87990501.76975942 2341.234366970678 139930 32132 252807 BLZ_20210722 37971230.4012252 1179.9271363710775 0.12853800409065266 3.980075277811743e-06 8013305.637549434 248.125524331829 64791 None 404484 REN_20190105 15825951.247403342 4153.746035955549 0.021070108403585402 5.534539494949516e-06 197878.18150461843 51.97717020476936 5359 762 737695 UNFI_20201208 10554206.476954732 549.6473551257595 9.68460767379545 0.0005044113390117146 67224460.77138183 3501.3065489254 12825 None 149805 BAND_20211125 298867767.2308677 5226.113551184775 7.179752310745602 0.00012553427754581216 33372254.274615116 583.496707006024 114939 6269 303910 DNT_20200321 2799502.583910653 452.8424806252328 0.0037396839309361846 6.03126959459797e-07 160848.22462573476 25.941203172413577 58881 6088 656002 NAS_20190615 69460433.85334449 7985.964165399843 1.5219378329638664 0.000175287074084064 11793480.758589244 1358.2977508443973 24255 5154 510015 KMD_20210819 134083527.2705294 2974.6634536287706 1.0522847645646451 2.336099236692008e-05 6678525.504208399 148.26498356710636 114668 9491 205763 BAND_20210902 345501710.68202 7102.630857805182 9.838089586570483 0.00020220001373353076 67807214.8473694 1393.6262373628201 104093 5658 357837 VIA_20191118 4677712.632343943 549.389943749125 0.20123084311398637 2.364753126476133e-05 189105.81355508757 22.222665120271742 40296 2196 7854081 SRM_20200913 120180679.1037417 11520.55367362754 2.3995029302660744 0.00022980652498921618 183845699.65892687 17607.37227695081 23267 None 111486 ZEN_20191213 48453543.60060046 6725.8171359562675 6.079614902926704 0.0008445925555622507 1171903.0621441838 162.8031738739088 42402 1924 48185 KSM_20210519 5391747891.945104 125971.78890514944 596.1582250815957 0.013935156740305807 699870603.2113488 16359.42631228087 64303 None 94306 KEY_20190524 9677296.863824325 1228.4475637462942 0.003700691216765039 4.7057716431020195e-07 1190709.8238245419 151.4097825490714 24020 2838 636619 KSM_20201111 315899857.6920582 20683.581875982265 35.092268168162455 0.0022971860524610174 25188212.04523743 1648.8535058342413 14209 None 170112 CELR_20201231 16819789.051863622 582.4623674258495 0.0042577632729469935 1.476431260154581e-07 4851203.067383212 168.22137349794204 25767 None 412217 TOMO_20200626 36503826.013057575 3942.5240459347815 0.5134936769396661 5.546150145189038e-05 8656867.249597153 935.0122057856765 27237 1569 168109 NBS_20210519 0.0 0.0 0.021359240555862146 4.992473208577893e-07 3038934.7367975507 71.03155290750499 None None 482747 STORJ_20211202 367884709.6400681 6435.151151772617 2.564526289259078 4.484799264209003e-05 100955991.30652852 1765.500932571136 111668 14597 51870 ATOM_20190807 863738271.8198446 75483.01186543783 3.566226608737663 0.0003108170615287472 137088565.0377982 11948.053118622054 27725 6409 108331 SCRT_20210731 73545481.42922892 1761.99017595293 1.055151065162871 2.526011320854352e-05 3564775.3049409976 85.3400339902329 86396 None 75773 QSP_20210704 24068796.060555488 694.6607844013655 0.0337191516101508 9.731842111223294e-07 528292.106032102 15.24728564926981 66255 8487 236881 NANO_20200403 71415867.57148612 10523.90904189918 0.5370288828142489 7.877666597178333e-05 4508939.298179232 661.4154589196855 97455 50181 296838 EVX_20200414 3222322.6913508596 470.3259880031229 0.14785118018296456 2.1592256544329826e-05 338409.88624449645 49.42154044280371 16721 2859 864914 XEM_20190511 453563681.94044566 71177.22093363278 0.05109754591009084 8.019489470375866e-06 31928706.73336729 5011.041585079185 216582 18443 133593 MATIC_20210708 7121802669.068006 209593.6874878719 1.1297272232840565 3.32597776764065e-05 631685509.5007211 18597.161486759094 518855 46423 6545 XRP_20210508 72785522492.3733 1270354.214035146 1.5834040495790822 2.762884220948012e-05 9802310917.899206 171040.67765324676 1612654 304140 11015 POA_20210212 12488368.507151244 261.66555028632683 0.04438054150275296 9.2980890242317e-07 1398773.251079833 29.305451832865803 18366 None 427710 CHR_20210314 233069176.47010234 3798.5412727904522 0.5141396562776112 8.381023587960571e-06 850322609.4859025 13861.163519410611 45044 None 423474 GTO_20210704 21740819.931968424 627.1349515848701 0.032756507052830675 9.44657320442335e-07 5300865.462822862 152.87043139426663 14078 None 269467 PIVX_20190401 57187797.174035154 13935.81874574017 0.9626574436196127 0.0002345924972967974 9090997.299200382 2215.4087868670463 61938 8594 250995 BCD_20190730 151528986.40059924 15964.69153434103 0.8076576624651236 8.49098236961823e-05 5116479.729263207 537.900414924361 21437 None 2927391 SC_20190821 83209917.13208763 7732.840377886372 0.0019858959225544583 1.847232514347756e-07 6253495.311076094 581.6850589069187 109285 30702 198456 BCPT_20190811 3745183.647968924 330.4444356392906 0.03221604610281437 2.8447683040230614e-06 332424.0065282257 29.353983237106146 10952 3048 1188214 DOCK_20200330 2075473.0025934724 350.7691736171349 0.0036895975072983706 6.25071033025557e-07 157890.99410392312 26.749011672613925 42909 15013 378260 KNC_20210207 363751427.59593743 9276.244801067469 1.7765544431710545 4.517794450864065e-05 184233458.1536251 4685.073953738688 132805 9598 112960 CND_20200520 12006288.70012928 1230.7729449720923 0.006171174354634567 6.321404036314018e-07 75634.42957216458 7.747565712881267 34463 5931 397842 BNT_20181229 39557637.048174754 10276.183086593623 0.6333440675320225 0.00016452852294591963 923324.4834604257 239.85890332171962 879 5092 103651 DUSK_20210731 40028959.31271752 963.3808770791882 0.11071799680629499 2.6480427218823925e-06 2101149.894770557 50.25320947745675 28131 13635 321944 ZEN_20190608 67260521.66639364 8377.898119811422 10.159758419312398 0.001265488563723467 2983986.222906264 371.6821093125786 25689 1661 229974 XZC_20190729 72959680.54123577 7642.349891888087 9.08704822053383 0.0009528975132097682 15738483.119336393 1650.388669911618 60851 4044 262317 QKC_20200501 9398844.88025348 1086.2024250819318 0.0026515911332436488 3.0761973990476423e-07 2508190.770230772 290.9833958548777 49710 9192 723829 ALPHA_20210428 361556257.5373018 6563.019436499775 1.4425030872448918 2.6177079813414467e-05 98635080.84089923 1789.9291907279421 56744 None 28389 VIB_20200806 3919220.51167332 334.5617337053783 0.02147410543583212 1.8324492190497447e-06 831493.1171547142 70.9537781551994 30741 1099 None EVX_20211021 14644850.557161149 220.8199932958696 0.6715861947714858 1.0132113519468565e-05 532401.0341686293 8.032249260148204 18461 2793 1911649 ZRX_20210325 1056517099.066689 19987.31491844637 1.371681830192689 2.6048802066568698e-05 278251949.5197145 5284.118953925135 196799 18585 57131 ZEN_20200224 100882771.03284803 10139.981961688676 11.895611801438479 0.001195456802934271 1881909.7227627218 189.12367166460442 57429 5025 48577 TNB_20210204 9291138.262329722 247.99179266600558 0.002707810242579329 7.218908361626018e-08 7001262.433775663 186.65071551312954 15946 1419 3046579 POA_20190623 7657585.400684299 714.0540466404019 0.034683355790055354 3.2340216940229643e-06 455177.7891892122 42.442687892888415 17679 None 649823 BCH_20200725 4343237395.581789 455464.51228618226 235.08596882674817 0.024651485227968294 1670450607.5306976 175166.08362935306 3444 303613 166061 NEO_20200621 725518177.8954092 77551.58237196461 10.29352325919824 0.0011001661093064633 279519944.34148747 29874.938045623647 319789 99662 217061 QKC_20190906 45531681.67709182 4307.454692551037 0.011375865226759315 1.0763364244917676e-06 5736731.588630734 542.7853656222313 51111 9239 312593 MANA_20211120 5722942867.961253 98448.99058259203 4.318123016113627 7.402788691875612e-05 4484259205.936748 76876.04826743579 276758 58428 6189 MDT_20210324 55703202.061326206 1021.1991852256504 0.09193481858380936 1.6858737858350213e-06 30429107.216733646 558.000058881814 25954 148 547860 RUNE_20210718 1154774292.6331155 36536.965467024704 4.244100599823104 0.00013439629186942566 77899480.47526388 2466.8127128905853 2709 5984 63469 AST_20190325 6663287.05427534 1668.5231692654247 0.039929753201249765 1.0006520973971649e-05 434289.23582367215 108.83424010002842 30951 3595 404922 STEEM_20210617 156873621.7087989 4098.842492147887 0.40778635794624507 1.0654768044885056e-05 1106884.2027524495 28.921012689761234 13874 3945 208449 EPS_20220112 127784170.61955029 2982.524532285771 0.2304039212090801 5.3850519963755255e-06 6524729.321459295 152.49743352436317 29425 None 83602 GVT_20201030 4943635.605662755 367.2320342907619 1.1168391225168504 8.30570529314353e-05 239048.61453398032 17.777559032666787 20632 5481 184262 IOTX_20200511 10913900.386189004 1248.798063334795 0.002521037850910368 2.87926841788924e-07 1668703.9073878615 190.5820833913795 22605 1820 628477 CTXC_20210617 36778117.100823246 961.5469203769823 0.2054343376161053 5.370458684591858e-06 6789586.6156785255 177.49318262995578 19870 20578 541278 BCH_20211216 8448630924.554142 173175.97918498647 446.4192182703058 0.009149204500663338 2128516486.3816981 43623.195014753925 None 723860 242464 FTM_20201228 42899226.42641533 1618.4489849432257 0.016792531426164617 6.385403314584678e-07 6198480.463702466 235.69881570472697 28291 2829 128838 DIA_20210422 154610283.10604414 2853.44485024063 3.6863471997250667 6.81545760331834e-05 63717141.60435609 1178.0265224108784 None 352 265172 RUNE_20210703 1580149756.398292 46750.182110614835 5.825019668768228 0.00017196521562985826 80670010.66996126 2381.525997946776 2502 5781 58738 REP_20210727 176862332.15391356 4725.728321949788 26.92151703206459 0.0007215238519545818 274727703.7656185 7362.979984505161 152180 11285 153333 EVX_20190909 8757405.76037886 843.1385332322684 0.40227514281735716 3.870577436337499e-05 868057.399989699 83.522023317543 18279 2908 505983 PERL_20191127 6146276.840725054 857.7925204119205 0.023300546889294803 3.2542696393741484e-06 1693041.3063775871 236.45852381611965 10853 378 465502 FIS_20210805 25042163.13184753 628.1391174720818 0.9236054478995703 2.322172662782478e-05 4158851.506029994 104.5638188670009 24369 None 435557 DENT_20190819 33194393.315247655 3216.5156630622455 0.0004443398433752217 4.307611637272096e-08 404802.4198030536 39.24319730353436 46569 10070 273311 ONE_20200526 19910210.39793625 2238.0968257479853 0.003780555245882887 4.2522203056485747e-07 6403750.3988947645 720.2687358725879 71967 None 176675 1INCH_20211221 1019200101.738296 21608.886215002574 2.4092358035539734 5.111934419816339e-05 70544977.11326909 1496.828563308362 None None 4013 OAX_20190316 3543505.724357155 902.9742487430326 0.15102049838527482 3.848381565659274e-05 490284.45610426326 124.9367922219029 14334 None None LTO_20200626 12131912.11910434 1310.283344973958 0.05506488463266636 5.951159878017431e-06 4022878.3950676066 434.7742242370378 15711 482 1399831 XEM_20190608 782727622.5401512 97288.03470289656 0.08688874609724176 1.0808034202558378e-05 64435960.1743389 8015.1468713743125 216337 18461 168914 ICX_20190701 143568394.07646987 13231.485737678324 0.3062434988100402 2.8225905003641548e-05 15869296.64278029 1462.6441418486006 113916 25367 268065 BCD_20200927 102467632.55259876 9542.939128894837 0.545239698710979 5.079106570698559e-05 1463215.2895996547 136.30383864788374 28117 None 3334586 FIL_20210727 4467555943.607951 119330.87348269252 48.92252423469737 0.0013111730698949099 857384942.5013138 22978.782569518666 None None 29585 LEND_20190920 5786944.261808208 564.62096122921 0.005141134928332395 5.01315737723171e-07 2697295.396341814 263.0152000140201 41582 5812 862107 ENJ_20190623 118949982.96376191 11079.92456488245 0.13664716060751195 1.2734086112090105e-05 10454299.118186936 974.2313314135685 46537 12608 19875 AVA_20210429 265105206.2016269 4843.17478294264 5.071120940162696 9.261368390450536e-05 13049776.254417866 238.32755465942432 68285 9948 42647 ZRX_20200324 95732902.94055401 14860.155006596004 0.14954119649241748 2.307787744000716e-05 38259212.85610139 5904.335701159272 152655 15949 132419 ZEC_20200801 726753763.253467 64115.39529347553 74.78329748094474 0.00659744504694341 397880787.8994326 35101.37586631452 71617 15926 214398 OXT_20201231 0.0 0.0 0.23090791994341955 8.007013292351733e-06 6381685.043564046 221.29269963516367 54203 1805 173007 AERGO_20201130 10885659.525941161 599.9701651808576 0.04123493579828229 2.270594206747879e-06 3397732.1706208694 187.09550126216078 11228 None 637746 BCD_20200308 127642530.79175459 14360.601195442585 0.683143679538478 7.67539923675511e-05 10531971.523994418 1183.3101676561755 29182 None 1280057 NAS_20200310 17591646.93282045 2224.3597521308866 0.3895771015878602 4.915688842304511e-05 5043086.393773388 636.3372851127048 23715 4985 1191705 SYS_20190618 32675304.833073378 3508.402733405474 0.05886069892683607 6.319972776383879e-06 398141.10717693163 42.74908392856896 61594 4608 932870 BAT_20200107 270452785.3469237 34856.92314432435 0.19051893440390588 2.4571929851142904e-05 47163667.185888276 6082.872157774036 109694 33075 23415 UNFI_20210930 36574126.62735332 880.3226633109947 7.873737049792439 0.00018933890334485456 15356211.1841419 369.26914967449466 22179 None 230531 CVC_20210620 152846045.1414909 4287.513579751008 0.2282938747176012 6.4120981732712505e-06 17665143.994072363 496.1615272204758 102977 9822 150952 LUN_20200518 1999525.5199604668 206.77538401864135 0.738537711317081 7.645595508257676e-05 557500.9703261004 57.714411183865934 None 2132 3817056 AST_20201201 15199013.726783352 773.0753953787352 0.08809791782851994 4.4847755130738505e-06 837969.407293178 42.65826901662415 34078 3461 197267 BCPT_20201208 2316803.6877218676 120.8049663792383 0.0199451642099325 1.0399995927917996e-06 38345.432538618355 1.99944376520746 None 3205 3422416 ONT_20190914 487700859.3002589 47098.372602024254 0.7492791106846501 7.235636387987936e-05 82807784.45875481 7996.579777740531 81441 16289 256067 AE_20200318 32084337.72922538 5908.246429039652 0.09104484923804941 1.6893326898152627e-05 10117327.165372305 1877.265068486328 25415 6340 484575 SUB_20190220 8534663.98074801 2184.263028251398 0.02233564622765007 5.7056535578890825e-06 1556454.0263942229 397.5970680621454 68436 13742 542564 DIA_20210111 37177281.666400686 967.1375890976593 1.4701315905097259 3.822311780233912e-05 15078816.726395704 392.0461214312581 None 194 308409 ONT_20210805 746769063.4299189 18776.88164493615 0.8509229089588065 2.1398834389744517e-05 179533705.69826385 4514.876724044414 142022 19764 173647 HOT_20190622 304225105.38429815 30060.151931157317 0.0016907413753014058 1.6704012352100328e-07 21602685.6680937 2134.279869823671 22869 6445 301392 NEO_20191216 629175024.8779168 88413.98684502799 8.904083075565065 0.0012522971655529501 380578947.2433119 53525.773834009255 323552 98753 183626 VET_20190520 441021919.6961225 53888.16814302078 0.007945503482832345 9.710272074761678e-07 21160073.0415614 2585.9917725710548 108632 55576 262413 LOOM_20191118 13343828.109730745 1569.8941949300856 0.022124238479277032 2.5999176520439466e-06 2377792.8335625734 279.42501011609704 21118 None 236531 SNGLS_20190314 9979340.247833319 2581.04356396631 0.01690224204878642 4.3715738689331434e-06 434344.87431831646 112.33839257504503 None 2184 1603096 NAV_20190523 15353111.418864563 2003.3626276144892 0.23556962690799393 3.073848511049659e-05 504199.5516178077 65.79086877009063 48577 11278 1031140 WPR_20190915 3575383.220562109 345.5293876994342 0.0058784223567469466 5.680978939220129e-07 177825.9980730282 17.185320968630098 34417 None 785340 NAS_20190821 31013690.477597788 2882.1554720664003 0.6876225828912419 6.391382524456081e-05 8236798.338636713 765.6020943593428 24218 5102 694216 HARD_20210104 19671700.396340836 589.3405516720412 0.49179250990852086 1.473351379180103e-05 2061352.2289714962 61.75564060737868 None None None VIBE_20190414 8734743.711580208 1721.2253565241915 0.04362571335020506 8.597523392601365e-06 293823.02958122815 57.905078819707995 20686 None 1224385 FTM_20190904 38812610.81243458 3652.1143036599324 0.018618862160565512 1.7520627002396347e-06 8355067.864838523 786.2243480677747 18770 2127 342679 ENS_20211204 1164780499.2304642 21686.670743652692 54.38725496158934 0.001012603849597471 188019955.5669282 3500.6313692919143 None None 5113 FET_20210112 41611543.380161636 1172.9027596448811 0.060616842363401875 1.702874344383023e-06 5931826.364436934 166.63941138301794 26612 742 338598 NXS_20200807 14523348.634003807 1234.62574361557 0.24324004092196144 2.0677766813173887e-05 84394.18325466137 7.174325555585752 23280 3526 412893 OGN_20210310 169226412.5101703 3096.1142519013106 0.7952344620585046 1.4523933625928744e-05 286704085.57790416 5236.281006279791 81693 3166 129589 NKN_20200320 6741008.267304506 1089.9745373397802 0.010636932329892377 1.723132016220038e-06 1629648.3145556976 263.99521016961825 12233 996 277366 RGT_20211207 268330811.73564377 5316.182150827611 23.700156879776294 0.00046959790527206454 20296211.645139564 402.1517039682138 42758 None 54346 BEAM_20210104 22444721.124476656 672.4169270128104 0.2844059028145165 8.639907244422014e-06 5343881.870822811 162.34066604155186 16154 1616 333744 NAS_20190730 40498330.37170206 4255.403464456263 0.8894926474644301 9.34788898532459e-05 12486684.822675178 1312.255293507333 24365 5126 512130 STEEM_20190702 110850325.6778369 10446.398492720778 0.3548553629827672 3.342972600574881e-05 1514607.5097670874 142.68606125088246 5833 3753 330897 POE_20190813 6049637.134206416 531.5558082196839 0.0024044017490775964 2.1126050064480535e-07 137506.0896557631 12.081843374773097 None 10765 756599 BTS_20190426 139808948.43161467 26919.743598872865 0.05196536791898376 9.98733659454428e-06 18264808.925565183 3510.3531809695205 13799 7198 210686 WPR_20210430 28048187.871410944 523.3901990556617 0.04607302253461828 8.596631161752451e-07 790351.0396344574 14.746929986935175 33627 None None TFUEL_20210819 1744595404.816789 38725.365852346076 0.3278993314248678 7.280686861596763e-06 47132264.454479806 1046.5262526760077 188219 22722 21702 ARK_20190221 89496191.10790187 22539.941437366284 0.640494965143939 0.0001613109879488233 4744713.640009474 1194.9733978504928 62556 21754 148771 REP_20201111 73773553.97531433 4823.194444207585 13.902242478966887 0.0009100590867360309 11370316.82001289 744.3159013213544 136397 10435 127573 AST_20200501 2533549.8808451 292.497179570148 0.01463420128197465 1.6977614443023374e-06 135241.70242169884 15.689831211778197 31666 3454 336637 EOS_20200113 3063114185.251259 375521.5269336257 3.192714753250147 0.000390940033679964 2807912929.1391983 343822.0010010642 1389 69700 75095 DOGE_20200323 213918482.18504408 36728.425271690925 0.0017325323865160106 2.9702321610431503e-07 135249014.28128096 23186.924244196965 138961 150794 105974 OXT_20210710 195193182.74106535 5745.095290357032 0.3294377689615545 9.693632424404809e-06 74474647.75457558 2191.399797738826 67237 4317 118089 BAR_20211204 30030128.187258612 559.2389177611154 10.168016713436188 0.00018961775772182484 2278348.4422271242 42.487668450942614 None None 33797 NULS_20190816 29225444.152803026 2839.9320415133748 0.40151012151882753 3.897236287566464e-05 5491536.220139851 533.03299430301 21332 5306 331434 KNC_20210218 432689089.4807158 8292.69776432681 2.120995806102167 4.0678465134558066e-05 137740703.83778867 2641.7215925438177 136346 9774 94681 MTL_20210902 296890728.0811903 6104.40589209391 4.598439394192931 9.451067714689772e-05 1242703222.702313 25540.996195045213 None 4256 219508 SNT_20190818 63688167.73653704 6234.508246631558 0.017960836636025393 1.7571667139557176e-06 16653589.130607355 1629.2744642809528 111469 5723 264981 STMX_20201208 21408603.436639752 1114.621667444566 0.0026743047174358015 1.393702033704741e-07 2004966.3189601058 104.4879298168941 None 144 212825 OXT_20210301 0.0 0.0 0.45068113759840506 9.984894517394502e-06 22721038.472223196 503.38732541535546 59073 2687 124540 CMT_20201129 7170818.260832962 405.09129186053775 0.008912764694523014 5.034503716382432e-07 1186116.282744695 66.99948936393929 281446 1630 878276 AMB_20190623 5989692.46637399 558.4007670714099 0.04141110870828687 3.86134561911517e-06 945337.3224578997 88.14722045653446 19370 5668 665963 STORJ_20201030 48786986.56283798 3621.8712370172775 0.33697469233137833 2.5059915672573916e-05 14779035.404427134 1099.077733091949 82302 8435 92855 BAL_20210624 180866617.2397941 5364.671392710201 16.762278549350906 0.0004969369884477153 29165072.818357762 864.6320613001777 87407 None 65621 MANA_20191012 41398492.40769695 4992.898905889273 0.03096417523527571 3.7452009744134394e-06 8478846.034595372 1025.5394238465453 45812 6410 84692 MITH_20200323 2127037.675575886 364.6810902186859 0.0034445811972840055 5.90747079550001e-07 3598909.4691323326 617.2144410853548 93 2083 1254611 ADA_20210204 14046780963.90513 374787.2387026325 0.44121581461457365 1.1762768860625062e-05 2963647375.4718184 79010.53839723728 190456 127933 26016 ONT_20200317 197836127.7328843 39196.56830606006 0.3093366413249629 6.149006242000621e-05 109903728.05139807 21846.707422456577 84470 16523 298289 YOYO_20211225 3451858.549917688 67.84734031514616 0.019720321392610353 3.88242416882202e-07 445581.3159961766 8.77235028759381 12516 None 802085 XVG_20200907 78991492.28687131 7671.657724147922 0.0048180072014830135 4.6834645735042197e-07 1332905.4852048974 129.5684161257599 289369 51490 238378 QKC_20210513 175514189.5923528 3404.4104100545587 0.026432639438450943 5.2694243020428e-07 12307032.917966437 245.34431567070766 73340 9467 369620 XZC_20190305 38239392.48897903 10293.448006140758 5.517956617451392 0.001486106862805632 7992170.980189143 2152.4671116136633 58786 3934 296891 QKC_20210506 203930645.5103248 3561.1231239794024 0.031601819825363205 5.514045379779636e-07 15009371.973202445 261.89111462437654 72918 9450 369620 CELR_20190804 26708406.3335556 2475.297004188778 0.00853953436499139 7.914318648160348e-07 5826098.913293276 539.9545373871239 17830 None 493170 KNC_20210408 634679798.9793344 11267.800344672663 3.076784604748587 5.47538515336525e-05 182189689.10198277 3242.2117468529796 154292 10429 92536 SYS_20210711 73650717.15366545 2188.9779455562666 0.11984766055589045 3.555725686699843e-06 1352777.107377484 40.13515396771938 74488 5456 378699 LPT_20210725 289080925.0356435 8461.051496565973 12.07934638946512 0.00035354718665545255 11396514.814799003 333.5615703481609 14217 1206 114263 XTZ_20210527 3254863833.991725 83075.74125295627 3.917213562204779 9.992005683822432e-05 236466322.4003428 6031.769266434739 118256 47241 87161 LIT_20210430 152312786.58369035 2842.1360519016475 8.456999245478336 0.00015779668719144603 58769284.10186044 1096.558965030624 47530 None 89808 BTG_20190224 232974500.4292985 56649.47982584955 13.329275789005393 0.0032405266611201743 11352903.887670478 2760.0440047520556 72837 None 354755 DODO_20210710 140341945.54255044 4137.849907646105 1.0442844064728263 3.0727537001573165e-05 35428683.20705198 1042.4709661601476 94084 1019 25829 LUNA_20210513 5875956327.712893 113923.27357446495 14.817376992387691 0.0002939734543156279 657491281.8800403 13044.480370310093 69161 None 21924 NXS_20190430 19795448.423621923 3802.7158885549575 0.331798127766738 6.372329573403601e-05 515652.7156192919 99.03338127503731 21316 3510 683392 POLS_20220112 204399504.4872084 4768.028093193424 2.3123237706056248 5.405342180346177e-05 7183168.083196343 167.91541877566831 620564 None 6619 LSK_20210723 335043305.1531031 10359.246348838895 2.3224570560701823 7.173938648111806e-05 18842211.532259528 582.0252700641962 196413 32589 298346 WAVES_20200223 140626756.8426231 14568.50719322732 1.4073666585149924 0.0001457982929372113 70754909.93619004 7329.962681159213 141445 56861 40604 KMD_20210304 176858891.14624888 3477.6824135089582 1.4174679775236438 2.7940608804131504e-05 13441462.699823692 264.9531820163003 100161 8763 245879 CDT_20190419 7724723.661356392 1464.8294175755454 0.011459980936159832 2.1714079947323392e-06 1489580.9486756884 282.2420036101062 19868 289 416908 FXS_20210825 211285893.57311514 4395.427937429009 6.600308275127661 0.00013743656533059297 29520900.15112533 614.7063066019556 None None 93970 ZIL_20190812 82871942.62665565 7180.418804634356 0.009031365806658361 7.820516105023488e-07 40528873.55234602 3509.5102459575573 65941 10610 160236 CRV_20210304 549331271.9205841 10801.370301962757 2.2934266795947518 4.522279676569047e-05 318810906.08381635 6286.453777132143 82361 None 26879 NANO_20190702 177635514.5941058 16734.442257984225 1.3324404006956534 0.0001256487822869496 7768451.7610139605 732.5629750619265 98624 46616 329357 LEND_20200719 389626641.4760349 42504.11325761815 0.3101229286059583 3.3831105674180766e-05 24551835.03325626 2678.3434854006714 50558 5778 49562 IOTX_20190929 14949784.716265518 1825.1306484736144 0.0036372219605264344 4.4310447074000976e-07 776509.9793527833 94.59830803827302 22634 1768 600073 LTC_20210324 12449308448.334675 228377.61392517018 186.59199183265446 0.0034229559054733526 4522463400.817968 82962.79306027463 153239 282047 84390 CND_20201228 17441832.59973996 656.9507616550595 0.00921574918762502 3.5008092255193655e-07 339591.23141852254 12.900135318915089 34019 5905 545184 ONE_20200229 22081536.44062962 2526.44906079125 0.004456826628700073 5.115093471581341e-07 14040418.729326006 1611.4168255539948 71379 None 386228 NEO_20201115 1107936135.9161525 68833.76419890147 15.704709339767753 0.0009759246247537122 288392133.0491477 17921.31125376653 324232 100966 108774 STX_20210509 2116455399.6392205 36085.345699330865 2.0195797187838798 3.4396478351041646e-05 30802027.647911012 524.6048310474913 61640 None 63157 OG_20210310 0.0 0.0 6.398731565972082 0.00011697773524498938 4813756.550572957 88.00218191700488 625597 None 482158 SNT_20201018 91669974.93502256 8067.499631999425 0.023896919287836695 2.1024461453218467e-06 4961205.091462112 436.48582459768136 112594 5703 118374 UTK_20210131 110723685.90579107 3236.6881953706 0.2465381561166045 7.216215691950759e-06 13966130.028955992 408.79111070786973 58086 3195 107548 LOOM_20200412 11925790.818311542 1733.123732314194 0.014304025410719495 2.0783142317660487e-06 26010285.45262664 3779.1841720289744 21564 None 466308 COMP_20200807 21897.09728181864 1.8612337383830904 2.3764080925424363e-07 2.0179649298588513e-11 5.55272699413333 0.00047151869135631295 1866 None 1052707 DGB_20210506 2064485091.7709506 36050.91123513386 0.1448771558516192 2.5271696449055978e-06 166396064.12557143 2902.535460598011 211260 35806 157922 ADA_20201030 2971056454.1566663 220566.685359929 0.09526656084285419 7.084721895940883e-06 469593310.85642457 34922.4112026023 165722 89444 29944 FET_20210125 61640911.45194358 1913.572425936373 0.08942803567601502 2.7719394666125097e-06 8080646.619738486 250.47025926132022 27419 765 346755 NAS_20200927 15763830.311534818 1468.1052870425556 0.34659649593177017 3.226828349127084e-05 3169784.1244181804 295.1082712416999 23564 4891 785408 ANT_20210111 132368564.67162818 3433.707283407216 3.80694118100874 9.902661434705538e-05 44910771.30460452 1168.2244139194813 76509 2692 131856 ENG_20190703 41428158.60501013 3834.127921487266 0.5281331836594166 4.8832685252312145e-05 1701321.7949818708 157.3090165469043 61818 3468 328066 CVC_20190723 17896594.53776224 1729.295161809335 0.052210740846041874 5.048392143518119e-06 2191087.743529557 211.86196500852822 88553 8142 434521 SNT_20210624 161833573.15868297 4800.133676152169 0.04176293819360747 1.23811024101273e-06 12491884.688733166 370.3362606091263 132670 6005 121237 UMA_20201201 449929832.2212669 22860.923785966424 8.106379199257265 0.00041266912804096824 13692739.621416327 697.0523807447371 14860 None 108366 NAS_20200913 19145495.00925872 1835.2925321044072 0.4215592554653162 4.03738067387078e-05 5579681.117190686 534.3803134874081 23606 4891 894508 DCR_20200913 176900002.85821217 16965.09780585354 14.78921208763999 0.0014163275058322613 3963882.097412777 379.6115175827246 40865 9917 216074 OMG_20200526 243007232.0615055 27343.4810977218 1.720760679097376 0.0001934374593388599 322777299.78720117 36284.66268525215 279019 42927 572237 ZEN_20200430 55900922.22516803 6399.261773453032 6.258585697898061 0.0007138515734306007 4827042.945555412 550.5704272546875 61074 5173 38653 LUNA_20210125 437936394.01312894 13591.36431206658 0.9050333630034247 2.8052698223171217e-05 30215313.24104544 936.5633342584629 19147 None 163077 GO_20200113 18728242.050261192 2297.3574237969574 0.021257564097510732 2.60762449354262e-06 4420379.5414363425 542.2394546303582 10555 675 1082052 XTZ_20200331 1134174650.6896443 176526.5112630631 1.609164316650552 0.00025063333670071695 138341349.8057921 21547.180574870014 58359 22860 99888 THETA_20210421 11722359762.0151 207491.8439160688 11.696348627155746 0.00020744117597518806 786537222.9090842 13949.670249201134 143769 14390 21480 BQX_20190510 11916057.813234631 1928.9041322091116 0.10050476915185437 1.6258519108413785e-05 597504.2982598825 96.65745349795105 61168 5795 460348 ATM_20210826 33443712.971414294 682.0594404873758 17.64268061080474 0.0003599104781270019 7448958.045302145 151.9586570076431 5041040 None 88117 ZEC_20200905 597191163.0807449 56955.345695616656 59.92364319274673 0.005715040717911989 746168689.1214235 71163.63781560125 71787 16131 174620 ARK_20190819 31009548.184969287 3004.8055553894055 0.21708922651969814 2.1045514878416526e-05 246866.72729784047 23.93226723234594 63342 21815 119780 MTH_20201224 2429801.041873217 103.90768384385586 0.007122951263837457 3.054525911700207e-07 231875.7043499951 9.943495624160974 18862 1888 1508816 TROY_20200801 11458760.970730186 1010.8711366868113 0.006096760935733948 5.382985239150227e-07 3835442.1462293896 338.640938629522 9357 None 529032 PIVX_20190908 21175366.54910452 2022.5846611095085 0.34725919989525805 3.3168794678477074e-05 235731.133256695 22.516084701785907 63042 8599 256099 POE_20190515 10701042.47701145 1341.4252276481361 0.004710155043514318 5.895218834337012e-07 572340.4072783844 71.63398906126459 None 10905 815050 AION_20210217 66193135.8770581 1345.1916772457496 0.1349341496706613 2.7432603400886087e-06 9695954.224099081 197.1222759190733 68717 72649 308962 XVG_20200531 70822629.75620735 7308.107408760148 0.004349576924008466 4.488279445812645e-07 3735019.7657457283 385.4124834939437 291605 51764 274364 DENT_20190712 73812470.84206247 6500.414592193724 0.0009326757918304973 8.196279552753243e-08 2626349.667504644 230.80148822025757 46384 9822 256957 VIBE_20191017 3700570.298052176 462.1734661304219 0.019775217457809482 2.4697762938780893e-06 557610.6213872485 69.641383052048 20139 None 1006248 CVC_20200914 20820906.808220394 2017.0587802918772 0.031197846701334485 3.020935942684909e-06 2210351.634651096 214.03178119995752 85307 7970 130606 CTXC_20210112 1199713.7030568675 33.86820257200257 0.11733974108461591 3.2963583532054698e-06 30940240.64414555 869.1865156236331 16902 20072 682759 BTS_20210602 157301452.32224146 4287.0719575354 0.05799256136492425 1.5812798718612971e-06 18299846.201715957 498.9808654051446 5944 7160 112571 OAX_20191118 3684873.737702294 433.3970140839137 0.07054945563832811 8.29768550983312e-06 160197.05889095686 18.841602706218648 12181 None None ARDR_20210421 434152081.73903114 7684.716883705842 0.44785651309629765 7.942981583940275e-06 73008908.74992421 1294.8531520842987 71268 6739 None TRU_20210301 62539710.96541595 1378.5776717252265 0.274838236691201 6.087863013478064e-06 4589643.369635661 101.66387490854657 None None 99540 ONT_20190528 919711235.5018126 104421.17209168315 1.4972091826851806 0.00017012858511496459 146148017.65895706 16606.86813120047 80848 16204 231698 LTC_20200730 3596742704.759209 324287.2982011845 55.218302555414574 0.004978558550562138 2204843113.2607403 198791.7053979764 133860 214342 126072 TROY_20210828 19209383.856376953 391.6454079516645 0.010078855184459017 2.0550189039333855e-07 5950745.023256593 121.33216810313958 125783 None 544029 REP_20200913 78317429.31374063 7510.677153173863 17.853207551855064 0.001709847291975633 14660563.46149863 1404.0796120625218 136185 10416 111817 PERL_20200701 6458956.15534358 706.6156171890982 0.018318218525787716 2.004029595199461e-06 795805.2606704313 87.06181183251202 11883 482 938177 DOT_20210422 33656812078.590767 621157.5922650811 34.01561845397449 0.0006288935709609949 2067143570.5438857 38218.12922576769 315263 22698 15695 PIVX_20190414 59311760.23426136 11691.771091660321 0.9952544255489574 0.00019613944502312587 573777.5458242713 113.07702484480717 62567 8596 250995 AUDIO_20210131 32917092.18984343 962.2364252527078 0.21392735802154678 6.261691829813607e-06 2633159.04787727 77.07303380539203 25213 2477 56398 MANA_20190430 65504997.04448215 12585.782743407584 0.049346538532086676 9.48112770789008e-06 7873824.287755182 1512.8261442928153 44395 6201 119897 GVT_20211011 15436356.64179541 281.9514249424159 3.476475727172907 6.354367234697948e-05 3057330.848227205 55.88246400156728 25800 5792 570262 XZC_20190807 66477905.86892874 5815.232943179922 8.24279343948662 0.0007184066288363369 12423649.553882902 1082.792169835686 60835 4042 218512 BNT_20210310 1440271528.6095533 26352.471204221954 9.088981565162062 0.00016601627655177871 438941726.5242602 8017.561762924257 103074 6447 42430 TFUEL_20200314 0.0 0.0 0.001424241700795874 2.5601771369254774e-07 593594.3000183727 106.70285490637579 68473 4027 385146 HBAR_20210823 2298406256.18431 46588.639182811385 0.24237067222205955 4.918121146159435e-06 59237329.075562395 1202.0281088365623 122464 24690 50561 EGLD_20210325 2122383922.0840898 40153.52506551176 121.58295942933957 0.0023046308406656324 91158458.83595403 1727.9279646337636 None 7285 26552 YFI_20211120 1139603080.3234253 19598.19821172993 32039.40775970088 0.5492686627334015 189435432.34022674 3247.592695103285 None 7571 28062 CMT_20190419 31423686.10787992 5957.609366419803 0.039287706992593166 7.444134639809022e-06 8971244.28783051 1699.8485143920057 292602 1637 827580 KNC_20210202 285211672.84984046 8547.670397264581 1.4026856949742283 4.1994981424510384e-05 56100075.60572007 1679.5791398009005 131100 9466 112960 YFI_20210206 970919984.8114823 25619.878872676778 32597.57357622202 0.8541990118471798 599325619.4139806 15704.952722357019 78588 3046 19848 NKN_20210826 301559979.2169417 6152.283836991821 0.4637210431156209 9.462891746012589e-06 41812714.34311523 853.2482950901884 30150 3395 164254 PAXG_20210324 104532384.5203416 1917.5169002417517 1737.8725181334605 0.03188058040690111 5884142.7818065155 107.94225993201611 16492 None 49439 BNB_20200223 3364840516.8519645 348587.3127877089 21.935212654010517 0.0022723845629978325 308906985.69944227 32001.306610413143 1113704 59474 1952 KSM_20210221 1990542314.3959062 35625.8234801222 225.15035133953808 0.004004577121713964 451380878.47226197 8028.366504226482 36920 None 97488 FET_20190430 0 0 0.1303954414240116 2.504302038157987e-05 7251167.360884998 1392.6187144717985 8131 182 178040 REQ_20200526 9820280.767035395 1105.0461854460107 0.0126153411770302 1.4189241110567321e-06 197155.66515400665 22.175296172552965 39008 28016 876989 STEEM_20200305 64114382.4011883 7323.877977424615 0.18804175100767112 2.1468828018470495e-05 2402062.5633621435 274.2447769502235 10881 3834 211376 LRC_20190914 32279229.83664519 3117.278071508796 0.03354756931318489 3.239620720631426e-06 3225822.8241197155 311.51116686110475 34342 2437 519433 THETA_20210408 12378894545.95629 219768.9487768533 12.306541795266591 0.00021900478873651178 1437810418.5219917 25586.990414535303 130523 12328 23388 XRP_20210729 32852692988.230244 821632.8215075732 0.7242550876175754 1.809484183393417e-05 6697161375.931053 167322.3673615304 1938624 323641 15139 DIA_20211011 96991280.82788831 1772.6634525134043 1.9885566840638158 3.633150270665243e-05 47894952.288260676 875.0545572278438 None 417 487561 XTZ_20200217 2275761561.003885 228292.33560987154 3.2436079058858422 0.0003260419842900024 288674157.0311137 29017.03834205064 55135 21148 117570 POA_20201130 5631214.375604714 310.164893191769 0.01979406986139765 1.09e-06 82125.26316928759 4.52239168 18094 None 168138 INJ_20201208 23274436.2139923 1212.097975816295 1.7274449654946291 9.002502765770468e-05 8297367.261425459 432.413612078273 31687 1776 163150 XEM_20210723 1311987968.908669 40566.18878613062 0.14546274033090165 4.493125508270774e-06 189466267.47718024 5852.32835172792 371228 21726 102654 VIB_20210420 24887364.788052704 444.61031369494793 0.13619734150928733 2.435127129566317e-06 5811306.762580647 103.90269442100205 31826 1224 3723426 WTC_20200306 13124388.92226897 1449.6191822600658 0.4499228165185565 4.966699362825499e-05 6490116.254799829 716.4441340584525 54970 19433 905715 FUN_20201224 20550811.434148204 878.4604915202251 0.003448917319032418 1.4792385762442687e-07 553021.2571950447 23.719048659464953 33733 16525 396619 LTO_20210616 68157864.61302927 1687.7337037662703 0.2410573574875845 5.972357348027207e-06 11374075.74741173 281.80033820611004 10206 4265 208240 FET_20200418 5143390.560982212 726.5616920651864 0.01514120400243439 2.1507609608033774e-06 2082784.91227522 295.8531222716244 16661 369 956265 DCR_20190205 147466615.33709383 42567.597440317244 15.917770502816916 0.004594811139879927 1320212.4824239546 381.0914989744711 39777 9332 257134 CND_20190810 12864760.398690447 1084.5341389249636 0.0074930417167170865 6.316743813865465e-07 311993.6334235327 26.30151984202439 36069 6125 388996 ETC_20190730 663883115.295899 69944.96170215572 5.928705935543149 0.0006232905340079237 579340240.5765386 60906.59443174902 229267 24855 498409 ONG_20211125 0.0 0.0 1.1160419904749326 1.951158284821005e-05 5417196.582542091 94.70797768131506 178350 20921 87014 RLC_20190318 28935497.298905164 7329.447329222859 0.41357283507740794 0.00010475922636421832 566633.4911171274 143.5299447324099 24336 3300 890313 KEEP_20210814 173659417.12738973 3640.6027933159985 0.3969467950136064 8.319585678654586e-06 47791538.00461204 1001.6601724430542 22781 2875 131612 NCASH_20190915 3160757.534532945 305.4594565675231 0.001089378411675534 1.0527885609421508e-07 541770.9288920623 52.357402209880455 59570 58857 754232 AION_20210318 133881347.15321302 2276.0071317284674 0.2734431857667791 4.640193401688616e-06 18518282.053000413 314.2459372391527 None 72827 287574 GXS_20210805 33791683.6502331 847.5629444174382 0.4895105492966853 1.230819116753705e-05 6834639.735824989 171.84931468921974 None 27018 491456 WAN_20201124 44656999.239432245 2439.092861609114 0.35956119495005234 1.959199371203411e-05 2581310.492071549 140.65204933056998 104007 15941 471269 SKL_20210722 231933909.22595406 7207.179284497975 0.19189196868010988 5.941779522386956e-06 35083085.876590416 1086.3193633245317 27429 2309 175658 MBOX_20211104 156057916.87180954 2474.9891098210696 4.277190555893442 6.786546942726408e-05 33580067.95196478 532.809339490249 182484 7339 6993 ARDR_20200612 48473283.67188537 5227.331263838356 0.048568362466691724 5.223056988528566e-06 4795917.519352006 515.7544797405301 63287 6309 2127258 YOYO_20200404 1337081.4805742602 198.8316572973536 0.007649846824784881 1.1368707239609333e-06 169968.77042523565 25.259658593166822 7490 None 3120831 ARK_20200511 28564728.533002418 3268.567895094969 0.1914950296212029 2.1872585763003366e-05 1416547.1341239884 161.79818734591834 62165 21985 85697 ENJ_20191213 72831673.87239933 10117.925319933333 0.08229896469237807 1.1433140753076583e-05 18076586.17219359 2511.236378420051 49662 14236 29891 WABI_20190430 17788859.950065557 3417.837562297822 0.33890314404937705 6.508784548849409e-05 2285143.698021573 438.8719389223605 36454 8047 1086520 OMG_20190401 259371709.6262069 63208.00415713753 1.8474837633428096 0.00045021812549255315 81159121.65781532 19777.877535058826 None 36935 None AAVE_20210218 5556451683.730997 106508.3733886417 449.7973707923134 0.008628317122128578 1108363605.650989 21261.37967266665 128774 6125 14216 OGN_20210825 352774335.7159586 7341.088483209349 1.0358745073426097 2.156975530054841e-05 61340426.966628246 1277.2763402543364 118946 6130 109678 ADX_20191024 6319426.713447805 846.7683053189355 0.06857628632841693 9.18536016153468e-06 524233.7899492879 70.21780308239225 53313 3832 323410 NULS_20200407 19105894.57043998 2622.0392315010085 0.2009804425940163 2.7581990641844698e-05 8698729.480456071 1193.7891668919094 22780 5182 528791 NAV_20190914 7054111.419568466 681.5108211866333 0.10659225236774963 1.0298075706850952e-05 68614.26048950439 6.628951292376428 51422 14183 463565 APPC_20190411 9054747.981587127 1706.0840206234482 0.0849139353618237 1.5998534283491227e-05 431630.84080596414 81.32305698731017 25675 3403 1339078 ZEN_20200320 47494388.8035594 7674.123987552852 5.474581134018482 0.0008852515295336017 2297974.661820122 371.5874391859651 57986 5084 39151 PAXG_20210826 325462523.8433549 6639.9322290295 1798.5949921975516 0.036697968579406416 4429286.624600705 90.37377624418976 24527 None 41531 APPC_20200907 4214309.913848822 410.389575292668 0.03845042114493296 3.744302703424605e-06 73599.11514322276 7.167083157858823 24493 3184 2103501 SRM_20211216 476402721.8307831 9765.128424912578 3.592389573922125 7.350951554923037e-05 92665382.50719705 1896.1716807487446 None None 26537 SXP_20201231 52143573.81112928 1805.7104850972976 0.6777126765439921 2.3500512285644795e-05 23098629.075886603 800.9730895806679 91137 None 115894 MATIC_20191012 35217767.4317386 4259.372982874674 0.016065104583166026 1.9429758732214846e-06 62056731.96612217 7505.381141900142 23776 1183 206153 RCN_20210508 72266630.36089648 1261.149301380794 0.13909437963196009 2.42706923763228e-06 2651366.18745228 46.263906049193174 19780 1159 694898 XVG_20200229 60106498.578984626 6867.129374862662 0.0036974333832506937 4.243538942816994e-07 1351703.600297414 155.13482657975717 297100 51990 319965 RLC_20210219 149974335.09406707 2901.752088474448 2.1205528683253636 4.101172358527378e-05 17675287.3301651 341.84198333497994 34701 4057 376079 LRC_20210112 388507756.86195827 10950.8512098131 0.3159373429871878 8.887464014526423e-06 155876220.75710213 4384.870397404405 48472 7716 277317 SC_20201031 113158807.9603117 8330.796154181833 0.002515114116598597 1.8532116140441315e-07 1384179.1935618904 101.99047989505314 107011 30065 141731 SUSHI_20201224 286475407.5124686 12252.998385177605 2.203266714133427 9.44979776498517e-05 309757024.8272947 13285.460276436424 17066 None None CHR_20210523 75606358.2614082 2011.5878356759265 0.16807444835057897 4.4754422809515174e-06 46798874.57862824 1246.1481447392086 60041 None 91225 ICX_20210124 423549612.9318679 13235.772479181602 0.7256462530059261 2.2642358604299333e-05 58772721.74868793 1833.8867409181353 118325 28192 307045 CVC_20201231 57979938.6140964 2007.8213944443137 0.08654428288616821 3.001028390955135e-06 19855496.835919548 688.5135301137008 86430 8048 182309 POLY_20210115 72009700.10020883 1843.7602859694236 0.09567895813053484 2.4389853379027554e-06 3085469.305549663 78.65276277901876 35832 5028 310362 WAN_20200423 14142236.404654738 1988.3429886273907 0.13330390945614573 1.873759907861638e-05 423028.1515790598 59.46211131837997 104902 16278 925023 KAVA_20201115 68431242.51613651 4252.379933047494 1.457086249049888 9.062909210860224e-05 8853148.581394887 550.6556792760641 46373 None 85552 VITE_20210115 8391661.572822953 214.8589604299104 0.01460007762459982 3.721729752423727e-07 1240643.1260702745 31.62543757066004 None None 1009411 QSP_20190613 0.0 0.0 0.026497736268183077 3.2571354509054407e-06 283202.5978145433 34.81162359661128 56815 8593 693082 CVC_20210723 138097372.22440314 4269.850126825148 0.20637993520870995 6.374740291668464e-06 15728354.29897463 485.82326460134954 103558 9838 183364 CAKE_20210318 1409366330.772543 23959.482693174472 10.411559081162116 0.00017667892368290668 193601806.37493178 3285.3253299285434 None None 5671 DCR_20210710 1725755463.6000614 50793.93371739289 131.7944871961756 0.0038779856874452197 83153549.84720023 2446.750869690872 47199 11387 133920 ATOM_20190801 882569015.9693321 87799.95528615855 3.6480461056295255 0.00036249874578362425 134015678.87026662 13316.858970297828 27535 6317 108331 PPT_20210422 187297799.46043113 3456.736841710357 5.133928794563522 9.479656162981262e-05 9243978.005973296 170.68747265755198 24323 None 724019 AUDIO_20210821 1262061093.3320458 25683.948491572894 3.154713499661378 6.418772457581878e-05 107082824.27304865 2178.7724406596762 65795 6642 28500 GTO_20211120 32231818.82517522 554.468234471456 0.04916941370449886 8.43018122277262e-07 7856632.139916872 134.70332011320886 13465 None 1014577 GVT_20200223 5861492.912608485 607.2329589165745 1.3210908731521633 0.00013685878289944133 534081.228697612 55.32829604264052 None 5617 172341 CTXC_20200316 876717.8769430114 162.2775641599237 0.041174485241575576 7.624039813858061e-06 2552894.1170310182 472.7045468720406 16555 20064 396619 BRD_20210703 10055346.129154744 297.1855290186761 0.12338784330612536 3.648561744273518e-06 99248.92461283326 2.9347772017074663 799 None None DOGE_20210603 55454564158.64807 1473719.5707577935 0.4273878842094332 1.1350477600423483e-05 12390396037.567265 329061.53375154344 1732307 2022165 9227 GVT_20190312 16874727.37573774 4364.609030019084 3.8049381369992927 0.0009840373316374262 1258510.2817686 325.4773283873941 20827 5801 151314 OCEAN_20210513 534523806.41524965 10368.041553839985 1.1998354747136537 2.39190725679558e-05 117496237.93264692 2342.3220106435824 107863 2969 66643 OCEAN_20210421 582866151.2056348 10317.032997213651 1.3597676458372943 2.4116227080527268e-05 108227854.92946817 1919.4805332423152 102355 2660 70658 BAL_20201018 113206907.3969645 9962.27731509397 13.800437546378982 0.001214326709425722 25769211.838997543 2267.481890467657 26086 None 56216 CHZ_20200801 75190911.65660608 6633.2060271598075 0.014063760653505631 1.240716726733139e-06 66421719.74403393 5859.779665992926 27557 None 264812 PPT_20201124 9508472.5221441 519.1926417888832 0.24679358773663768 1.3447442290812865e-05 1349409.3036607995 73.52745224899822 23431 None 1330810 LTO_20200605 10806892.191739615 1105.6830605654502 0.050208832314107936 5.135873908447156e-06 3314490.900311287 339.0400961368526 15192 454 1406208 SUPER_20210603 83339511.2178658 2214.769344283162 0.8172582175360212 2.1731044133215202e-05 8954351.625175266 238.09783269928928 121024 None 457648 GTO_20190904 11951811.37974741 1124.6286852090855 0.018034230487751397 1.6970479878215046e-06 136615313.0153002 12855.704723064544 17359 None 900303 NEO_20200718 747562207.3856546 81673.22146837554 10.593373962370647 0.0011572686684681837 140977184.66003847 15400.99305050925 319826 99806 192818 FRONT_20210509 98124112.28753139 1673.3062477809 2.619590211174564 4.4615558944870164e-05 42650033.09654128 726.3941732192549 61797 None 146547 TNB_20190426 13195680.597756619 2538.9780991044704 0.005052016013954648 9.709578981728047e-07 1693998.0056362255 325.5731451599152 15760 1503 961548 RCN_20210127 25089002.094471887 769.9038995865565 0.048865758397900326 1.499768561619687e-06 427168.02096245304 13.11047222785586 None 1125 5522516 MBL_20200404 4718142.061336447 701.5873849605208 0.0013353411752635193 1.984497629074254e-07 1515246.0111667383 225.18605524398694 None None 105584 KLAY_20210703 2424213712.36377 71683.66975123757 0.9792139036167747 2.8908182230880293e-05 12057609.32525664 355.96264141659327 39563 625 50267 HNT_20210429 1376293159.6636286 25143.332416300276 17.24458318697154 0.00031493049979257787 33756676.90041433 616.4838553834047 36350 20789 15835 NPXS_20190305 110490262.14523853 29758.48368291486 0.0006326627959807704 1.7039588037390118e-07 4565929.118545766 1229.7475318954648 56524 4070 173865 QSP_20200106 6809306.323646787 927.3484587972671 0.009542723535576506 1.2992378187376795e-06 56624.450832669114 7.709395301329086 55468 8365 458793 STPT_20210111 17027094.919525806 441.68815792006325 0.018605751747620206 4.839750643219638e-07 3917788.217365894 101.90998086073115 None None 1561164 CMT_20190314 26672348.38276439 6896.7189333142705 0.033296447123383664 8.613049776414153e-06 3257467.240547376 842.6342721764189 292374 1636 1016404 KMD_20200901 97816114.18650496 8368.843708585075 0.8040668833481327 6.886998977388027e-05 4815460.497466785 412.4541404268643 102642 8389 264851 ORN_20210825 266725966.82125506 5550.45740283373 8.83413175145587 0.0001839556434650988 15558560.312137406 323.980336057147 80381 None 95381 DOCK_20200711 6719214.965390628 723.6389624756292 0.011878984022279626 1.279486516379064e-06 34909318.96395563 3760.086117346725 42041 14964 325611 NEBL_20191220 6843059.381000742 958.1009255559736 0.4323700895709476 6.050821735785362e-05 104231.82678750413 14.58676763955374 39957 6051 848915 SYS_20191026 13041632.129833514 1508.8807184981335 0.022772274581619758 2.6302704859002224e-06 1264169.3656551158 146.0156015484575 59970 4575 999459 WAN_20200305 24820170.983096194 2835.301359018019 0.233922081147031 2.6707010028126333e-05 1914991.4081107418 218.63560074964934 106218 16396 700059 WIN_20190916 47234683.87012675 4583.5820043381555 0.00022520475502932355 2.1853527490137947e-08 4871070.502720695 472.68128563158496 None 1429 55961 TRX_20190228 1568381802.9241216 411134.6044552906 0.023927175479952312 6.272254503553718e-06 149238715.49978778 39121.34159681357 390362 70128 75623 STX_20210704 886284699.9637926 25579.477400149113 0.846871978013855 2.4422744837170773e-05 15440588.18666748 445.28754665282327 67528 None 54271 BLZ_20191030 5444975.906034901 578.6447895944052 0.025864460018888116 2.748955851802919e-06 154652.59317651065 16.43696217506965 36342 None 563370 DNT_20200329 2766604.0978756677 443.6160130342519 0.0036557657550170732 5.855258345837773e-07 68638.56576201202 10.993497996221553 58726 6084 656002 AST_20200105 3195325.8022536957 434.7668662345182 0.018563794584800772 2.5246287111608693e-06 3707006.2198495553 504.1433900990641 31841 3511 410205 RUNE_20210616 2488021244.8074617 61607.33395916469 9.910972551462516 0.0002455588978042227 152852005.26818988 3787.1328717667784 None 5528 58808 AERGO_20210704 45286267.16557424 1306.326120873698 0.17075234181841167 4.924287239212686e-06 89975299.4756917 2594.776823170424 None None 362973 TROY_20200701 6709631.717703079 733.5809509966373 0.0035289651043373784 3.8607195888412105e-07 2973274.708020881 325.2789293425931 8976 None 690328 FIS_20210527 39849678.59070381 1017.1060162460843 1.4789221867550646 3.7722195572564744e-05 11877800.646818262 302.9616588241911 None None 263820 GRS_20200914 14602599.143429069 1413.9923511810118 0.19243419339011136 1.8633701773683625e-05 833534.8365346334 80.71247260342987 37781 106835 3374022 DOCK_20200721 7044328.477589957 768.8814820911814 0.012624254370102362 1.3778425744697518e-06 5740415.170878844 626.5232136244412 42153 14959 299500 BTS_20200502 56868411.75760065 6439.242845103137 0.020983136251146443 2.3759325396486104e-06 17565231.388380185 1988.9212138070845 13186 7002 125350 TORN_20210724 29402758.553113736 879.4888848224813 30.679748726927645 0.000917570270102213 2408756.704740811 72.04112262626339 21713 None 132811 ARK_20200501 28149428.212037254 3252.9685803633574 0.18864019522022335 2.1884764608577705e-05 2344313.9111893307 271.9715066828582 62312 22012 85697 BTS_20210509 362161451.3854108 6175.6378041003045 0.13381783170468736 2.278875238602912e-06 64560910.038160294 1099.451824868271 5471 7131 108198 CTSI_20210814 275909688.9559859 5784.308834094538 0.72571125649561 1.5210141641708797e-05 41901719.05424909 878.2157864325101 49949 4255 132314 ENJ_20190830 55545431.98172472 5853.256743425367 0.06333527553369517 6.677884992779639e-06 3986713.419270436 420.3473260157457 48258 13668 23439 GAS_20201015 21688726.28734189 1900.0802321834499 1.5576074855960045 0.00013629715690933092 2152503.0436198995 188.35300150847348 324625 100823 85109 ETC_20201201 782940570.543236 39846.82821622199 6.697288200706949 0.0003411535846112884 868109692.2318915 44220.69417730154 240505 26087 158688 POLY_20200721 27899954.00385311 3045.2523690515864 0.04168004480019278 4.5496054456192656e-06 1312564.2259025776 143.2735828024778 35013 5011 381210 LSK_20200318 134677136.18044055 24792.07648280269 0.9630973373920346 0.00017905950340618473 7226233.818302801 1343.5047411781777 178183 31314 164419 BCPT_20191024 3260283.769345531 436.9895069139987 0.02794851292561561 3.744022664303867e-06 337810.4256917244 45.253566563420115 10848 3125 1510702 FUN_20190805 17250450.225041572 1575.391632959723 0.0028776240097300597 2.623938946098725e-07 110700.52128338978 10.094140449438544 36072 17487 379326 SUSHI_20210603 2165813859.165251 57508.117585100066 12.614008487873669 0.0003350001862079029 406049783.16323817 10783.784797681968 99310 None 7231 DNT_20200725 7443627.6711651655 780.3417926638913 0.009882935183115133 1.0360839961476032e-06 2907546.541548334 304.81454992230385 58133 5988 528666 DOGE_20210210 8978311025.66714 192772.98244271314 0.06997689027808386 1.5024712111675114e-06 6181134722.819423 132714.91397343014 503172 1079384 31801 RAD_20211125 246755621.35727763 4313.348419941003 11.642338823362307 0.0002035411395249543 16554813.26050305 289.42514101238623 23222 None 200953 GXS_20200626 32846620.82171327 3546.80154517742 0.5045893975326936 5.4531622802194396e-05 13943028.552869225 1506.8409631338454 None None 465315 KSM_20201115 333438983.6668154 20723.1257716064 37.10632009113851 0.002306737528012471 28521902.88426181 1773.0818790938529 14319 None 170112 REN_20190520 24385889.47895122 2979.6952347953757 0.0316358720269065 3.865565666921236e-06 1718160.5150554064 209.94086370083656 6349 782 1359818 BEAM_20200319 13942483.369889215 2589.053635490277 0.24249550606123965 4.5008602932943596e-05 53238449.7085691 9881.371752486586 14989 1473 244013 UNI_20210114 1358006365.812793 36439.97501260169 6.334450385881794 0.00016949576207444744 471258616.65286165 12609.82934553483 164226 None 5230 ZRX_20210711 671214305.8900123 19904.63130357429 0.7933972455982137 2.3536539571748162e-05 94981724.33609474 2817.681969318904 222412 19564 58387 QLC_20201106 3130701.289965696 201.47784991009638 0.012852862978138785 8.275438080276728e-07 1945951.34556495 125.29192830301126 27496 5611 940522 TNT_20200719 14694410.308536364 1603.0035257390311 0.03429417189158197 3.741128585648016e-06 483258.7423343252 52.7183773653108 17996 2602 477306 ATOM_20190523 1037003747.1256449 135408.5136155712 4.337075775233234 0.0005659266896583866 47340333.14387765 6177.240014211912 24351 4544 130056 BCD_20210210 153800341.56599277 3307.6775145642846 0.819805014566194 1.7594442865632324e-05 4546678.058424491 97.57962674783644 28279 None 1670747 SAND_20201224 24311064.73477834 1039.8220200602111 0.038384073651963155 1.6462906241925898e-06 9866233.070562504 423.16214655697917 61659 None 75408 SKY_20210218 47789602.78858328 915.6830298826181 2.4129914772367584 4.6287633122261126e-05 10166125.934304742 195.01349754482825 17978 4104 536790 BQX_20200321 3361990.980097648 543.8295874477631 0.024054864373934472 3.879508931236591e-06 517115.5876412714 83.39912084101428 None 11 311435 NXS_20190725 14550842.759631578 1480.2360380076639 0.2437005182134832 2.4791298724052358e-05 115276.87443339224 11.72694851452796 21463 3534 1023997 QTUM_20220115 814744574.2200178 18903.00053768616 7.847848064055886 0.00018196073178931583 112703848.68595593 2613.1589978527422 272062 17651 158151 BCD_20190623 252224360.14725888 23494.13437670481 1.3396206282456813 0.0001248386308341263 15967500.55684982 1488.0040403458959 21325 None 3124822 LRC_20200518 44138230.701359764 4546.552016022264 0.03794805509186935 3.885585598271555e-06 4438805.397316149 454.49913792912815 34293 6798 498950 NXS_20210813 40394849.59165611 910.6286905117177 0.5930254257617144 1.3359190151568572e-05 218661.8128370135 4.925833884481905 26112 3969 456047 WING_20210703 23884691.942183897 706.267092113798 13.891358956840495 0.0004101309681354621 1335978.2143553437 39.44365991576575 None None 421675 DODO_20210408 388003022.70654976 6888.627077865732 3.488770176358343 6.208546544874838e-05 55279993.14512141 983.751846904679 62973 792 31780 HNT_20210513 1280763780.2605715 24846.608397066455 14.999967891761003 0.00029613332518479675 13458133.502516516 265.694023723223 42122 27369 7875 LEND_20200730 393285779.4597795 35417.42158769597 0.3153691146538564 2.8434115676908095e-05 69329286.53530869 6250.8243881337485 52727 5794 49562 CTXC_20210731 25738597.10903799 616.8600442205011 0.14219206809014745 3.404050714538806e-06 4412110.964113115 105.62508641826574 20202 20594 807058 1INCH_20210111 96594994.00958635 2513.3147107787777 1.2164059414205877 3.1626303314973044e-05 67380491.01262602 1751.8788536896068 None None 25684 MDA_20210707 11483974.760320155 336.1975707686281 0.5849078942024335 1.7117996131419256e-05 1674984.2530861478 49.02032311192143 None 389 1489514 BCD_20190906 115029580.35469152 10883.115839196396 0.6124339096009652 5.794326260677694e-05 2358435.052701868 223.13496927165698 21368 None 2392200 BCH_20210201 7449992182.683404 225427.6324321779 399.368264153933 0.012078781696813944 3530770716.561084 106787.1749829541 None 424707 337812 OAX_20190819 3899565.85165012 378.2084475917206 0.07469318724366322 7.241062159803819e-06 170854.56945167214 16.563338683757063 12297 None None WTC_20210909 24391865.593044393 526.2869124395472 0.8339397869615679 1.8012854401947368e-05 7321097.558952194 158.13355646735147 65712 20097 386462 BCD_20190805 152552952.0673974 13936.946752141905 0.8106518847795983 7.403251392655933e-05 3658134.0604052683 334.0778771467427 21449 None 3532175 CELR_20211104 675552135.2660035 10718.952388787973 0.11965321010496614 1.8986977081183685e-06 114898728.77489151 1823.2519862962374 84656 None 62285 LTC_20210821 12209613196.349447 248495.83966263765 183.2708294533336 0.0037261740088990994 1837465861.6324189 37358.46864597453 190486 340631 92826 VIBE_20200621 2520964.0228642784 269.46978128337213 0.013473128956286787 1.4400006189111988e-06 106326.68403894917 11.36413756 18889 None 1162638 MATIC_20210324 1661267285.6184843 30486.246954872186 0.3315024546836521 6.081280733398219e-06 256733803.42826197 4709.679552419099 2843 9272 25492 ARPA_20210114 21165826.598213922 568.3846835723916 0.021414467662851395 5.743890857372386e-07 12772750.671902308 342.5968226850047 22444 None 1160562 XLM_20210128 5266364189.234346 174087.65916785406 0.23912198492532277 7.864013222979565e-06 644998996.4464632 21212.104936514297 337303 123321 30260 NCASH_20190201 4771744.437935915 1390.685384154537 0.0016446169375305517 4.793099813505667e-07 676518.236736164 197.16563537295158 60539 59718 643651 TROY_20200306 5515673.174944201 608.5652896339674 0.004734483411969271 5.223736391707875e-07 2233900.732599535 246.47480066868206 8765 None 312111 ONT_20201101 343440802.8601795 24889.29693328648 0.4429338429348832 3.2100209297038286e-05 83484212.24044922 6050.250457630437 None 16682 220427 RLC_20210110 96150598.1937832 2376.021345938103 1.3461359514088795 3.341670617235328e-05 12710632.52614784 315.5308882037464 None 3901 542862 TNB_20190704 16632569.90363752 1385.8983815681095 0.00603385798023598 5.028118168540581e-07 1339855.6532805257 111.65248793638563 15719 1486 481694 ONT_20190723 646451758.1260189 62480.817033159896 0.9925799660514156 9.600481503964252e-05 123197663.81170313 11915.985947822315 81464 16289 245341 WAVES_20210610 1466467671.251053 39068.70160292913 14.602410448186927 0.00038987947697348717 170367094.14251807 4548.744455133776 192156 58977 99701 TNB_20210112 7262850.257161829 205.14949266445456 0.002128553705475132 5.988044148539434e-08 579209.2948874915 16.294307351087014 15749 1412 3447610 RDN_20200707 14380736.191514494 1540.5508908616926 0.21329221045355665 2.2838177842977064e-05 1559501.3349775672 166.9829796355037 25492 4327 1882250 MATIC_20210428 4732966219.785778 85912.28281839624 0.8315061002083352 1.5089327532787004e-05 2232499080.981879 40513.12412637892 4205 14871 22143 AION_20190220 30423360.492744736 7786.20244093575 0.11563039220744145 2.953790130052537e-05 2292695.9835077594 585.6715209567965 67204 72403 212982 HC_20190507 48856962.80700284 8540.813232028384 1.1103182300695158 0.0001941683746200792 11544381.335107466 2018.8390131105527 12740 800 932135 TRX_20200701 1083872402.5041642 118576.61644228494 0.016387490075733424 1.7928061648885159e-06 591774929.4516362 64740.70994669253 509123 73276 58804 DGB_20210111 417980630.73669505 10867.410095041427 0.030010564794042873 7.802684881016051e-07 28641225.893739495 744.6659594330837 179419 23872 242284 DNT_20190329 9122058.918764006 2265.7376030686464 0.015699417115346778 3.899326291542074e-06 808409.0018742668 200.78773958086438 60557 6442 957318 ETH_20210616 298324322330.12646 7386981.197323283 2561.1883309320033 0.06345720163657323 26803957680.025055 664107.4092901929 1370558 1011120 3750 VET_20190401 338544772.0593752 82501.88555423045 0.006118848748789988 1.491118173005298e-06 20025459.316753175 4880.05628769527 106031 54908 666986 NULS_20200129 22095350.659707043 2371.568397636687 0.2724302094613641 2.913568419675533e-05 1796884.2183183434 192.17197397662892 21649 5219 555548 CVC_20200907 19980122.57403418 1940.2911602936358 0.029816476122024933 2.8983852407122767e-06 2775803.9713673294 269.82897740147854 85302 7974 130606 BCH_20201031 4860998500.81897 357914.3942610265 261.7458046183659 0.019286216949157116 2671117139.125514 196815.93260643937 None 332933 124018 STMX_20200901 22995975.649645574 1967.464438133067 0.00291332358933034 2.4958185519248394e-07 1047189.2394003347 89.71177594700976 21314 115 160167 DCR_20210325 1888484444.5614147 35817.82821844332 147.72526413297746 0.002808091341340413 23218994.66052385 441.367008165607 43570 10759 241220 STX_20210826 1565157214.831727 31930.933105324766 1.4872926820712506 3.035135236750574e-05 70536075.96321757 1439.4377932387401 None None 67440 STMX_20201201 18622548.265604336 947.2084256376611 0.0023363594351140517 1.1885375505365367e-07 615614.0054414567 31.317114614586583 21627 141 212825 TVK_20210826 145632320.91886103 2971.132892679357 0.3354448480535241 6.8443115584077435e-06 54666494.27066443 1115.398017782758 53239 None 114085 ATM_20210814 37888658.21508569 794.299308465665 20.07916382384075 0.0004209001639073287 24630681.890814517 516.3092515179294 5025302 None 101859 KNC_20200325 85135081.07624914 12597.036137492145 0.47478503571512415 7.03481474317389e-05 64424083.58347458 9545.614518491804 104521 7230 120611 MTL_20190213 12231179.40287195 3366.1471944483073 0.29704747953387534 8.17478966622179e-05 3447429.6919263825 948.7376450663363 32350 None 590777 ELF_20211120 242810745.9029108 4176.954652224855 0.5266799036404257 9.053534652372584e-06 9968747.57277284 171.36101257524155 93303 33523 121888 UMA_20210125 638476224.9373716 19820.772760776246 11.495907397049274 0.00035633075441631503 35355151.48734317 1095.8793740128538 None None 212976 REEF_20210718 166743037.6424985 5275.736260390026 0.013154074846725783 4.1654499953335565e-07 8257363.417505208 261.48273299110855 185077 12479 50076 HBAR_20210115 382876774.29453087 9815.32611105886 0.05709522050113493 1.456471595214452e-06 74784999.7003303 1907.7293485448095 1507 6971 206193 BEL_20210114 19997577.522948634 537.0126566923059 0.9589429005348427 2.572122476188991e-05 6349581.053998742 170.31149752779817 9661 None 319671 ROSE_20211202 1087148008.4096045 19019.580498099935 0.31146417494517353 5.446683255996562e-06 125498531.32530065 2194.6368289129855 81059 4724 55340 GXS_20190810 99426081.1295245 8381.88788152393 1.5294554039394084 0.00012893532862446412 4196019.618819664 353.7305939576419 None None 741400 DGD_20190507 59858650.00329021 10467.860891884464 29.929339966315087 0.005233933062908763 1625927.385468238 284.3362102294555 16932 3349 465743 FIO_20210218 33149587.4197889 635.1698460896724 0.1510821926355247 2.897958070227121e-06 2892484.866104585 55.48171968194367 55379 189 607665 WAVES_20210916 3048950898.396286 63266.15396457585 30.56587220340848 0.0006340627049487693 150411960.33717725 3120.1666287606404 196509 59486 159432 AMB_20210731 4865952.755416376 117.10936066852923 0.033822968187361094 8.099505008912832e-07 788116.868935261 18.872845494190443 750 65 578538 DLT_20200109 3443643.9915569853 427.8883344075081 0.04172003809022787 5.199221824680709e-06 549772.4884138166 68.51357887517513 None 2607 5297076 VIA_20200403 2718460.4495341643 401.5328830496702 0.11814952022790158 1.7335055723920777e-05 63032.83409961054 9.248261774112235 39303 2175 2861314 WTC_20190321 34421762.09172275 8517.192052476992 1.2910180694287274 0.00031937676704294626 5249090.984351981 1298.5393064548136 54729 20318 924295 CDT_20210703 11228452.67092254 332.2364410283701 0.016680495945755644 4.926608646554836e-07 248030.1771033677 7.325607218740421 21033 336 541618 RAMP_20210727 52438788.8727387 1397.0495288882312 0.17395310228252514 4.660763312013255e-06 14271025.724458056 382.3666968199468 None None 117048 BAT_20210220 909703333.6776495 16286.26974238969 0.6130252079495485 1.0959826467049308e-05 447320127.0023347 7997.3072943641855 139050 54938 20378 ENG_20200403 9596626.436645305 1414.1678476039915 0.11630505096087605 1.7060766084615276e-05 1110266.5914394415 162.86479780214657 60958 3594 411857 ALGO_20211225 10031032203.398779 197282.39064724834 1.577958744669195 3.1044325406334375e-05 439333670.3119539 8643.329535198194 211306 60321 65778 PPT_20210823 91224297.44092974 1851.6979897964363 2.5181370418367774 5.1113896507894895e-05 4462636.713318901 90.58393063092865 None None 917945 ARK_20200801 64811527.59050398 5718.509469946732 0.428223063278753 3.777819677629509e-05 4985309.457634808 439.80816969368806 62481 21838 107464 TLM_20210804 327376986.72803324 8520.500988543927 0.2638606928825145 6.868593191930635e-06 132401939.7591707 3446.572705064381 None None 11192 KEY_20190929 3090964.088670146 377.3574936785065 0.001182263759362552 1.4433557825381489e-07 22064.542720941507 2.693729303053497 23691 2808 575319 FTM_20190703 56833476.76191434 5259.872209277985 0.027782200444945417 2.5688206912966175e-06 29672949.90425146 2743.64472450263 16627 1910 411389 ONG_20190625 0.0 0.0 0.4340960790056979 3.9303457160195746e-05 6924017.060555282 626.9068555959635 80536 16250 232873 STORJ_20200208 20748129.655913305 2118.424807036792 0.14451424284763004 1.4749069515878912e-05 1319179.5028657767 134.63496613412875 82511 7944 143392 HIVE_20210825 191620691.6999868 3990.123698279762 0.5063019164121291 1.0542869117370457e-05 23765836.998233274 494.8827978229065 23133 177 87293 EOS_20200301 3286880809.4484487 383276.30479020777 3.516966338023179 0.0004112012231318042 2920390476.7445083 341449.99429673253 1467 70263 94982 TNT_20190812 15127835.414639564 1311.8865178108726 0.03533200660175495 3.0613329019163677e-06 826573.3802247507 71.61824442217133 17559 2544 649538 SKL_20210219 171020597.00141057 3309.0139750869607 0.303585565913755 5.872010379399679e-06 37145695.63028319 718.4791860394622 13376 160 210822 PORTO_20211207 0.0 0.0 4.030042392009796 7.985378958484873e-05 95085868.09628002 1884.0910751974463 None None 176855 APPC_20210210 7842487.357161618 168.66294850462106 0.07081707039134298 1.519875052716128e-06 642729.189784993 13.794245593730144 24335 3114 1221759 BAT_20190916 233251556.83622074 22634.376919679627 0.17388271866427832 1.6873339046896108e-05 17776663.594142955 1725.0229019349326 105873 30247 27075 AXS_20210823 4436307543.611275 89925.00001914447 77.0053729174557 0.0015626737808173018 717484734.5215061 14559.952640905474 None None 935 REP_20190312 159882641.4228188 41350.64944904506 14.416385319745967 0.003733179681041829 18527545.62902201 4797.780813135141 122845 9790 251259 NULS_20210703 42565332.73007942 1259.4006033362864 0.37665597238852827 1.1123481462614192e-05 23544524.047596868 695.3217152743451 55943 5369 232645 BAT_20211125 1666087441.6964161 29141.60118383613 1.1232128665145504 1.963695012214363e-05 239532490.11745647 4187.708048310914 231445 83678 24891 NCASH_20200320 1139928.9495949615 184.31864791820226 0.0003922087052201071 6.35359289732185e-08 1291281.4021292478 209.18139337085742 57805 58321 679947 WTC_20190916 27996368.369353473 2717.0596935295193 0.9593459890105712 9.310494434496653e-05 2407353.4887459 233.6347002602397 55844 19875 452938 ZEN_20210909 936505435.8771268 20206.349221240907 80.82934893286483 0.0017458901907494578 88952118.81497718 1921.3396338802436 119685 7565 1266292 PIVX_20210610 51099838.976356104 1364.34861656726 0.7804843837067755 2.0838672107272136e-05 790686.3634011007 21.111061554304253 67283 9807 263514 SC_20210128 187928794.3798215 6212.342817558753 0.004157768514436626 1.367366810116972e-07 8333224.733821945 274.05505820513247 108339 30250 141057 NEBL_20190704 16879539.36131775 1406.4624191220844 1.1023000158987821 9.184750328626746e-05 686483.3355137461 57.20019913376861 40281 6146 707671 DEGO_20210707 28694692.295408104 840.1005474495337 5.30131668751142 0.00015520264023167514 13420257.783377051 392.89473980615116 115602 None 168590 HARD_20210112 18968861.592780616 533.8779387541812 0.4759441628035742 1.3370427633597684e-05 6923282.396920089 194.4918196489868 None None None QKC_20200224 15892899.505643858 1597.4276530985132 0.004250875633287262 4.276497688696203e-07 2283256.0519516617 229.70183254507492 50751 9202 379379 BCH_20211221 8201971486.452909 173839.68984109032 432.3148907303539 0.009172437743112384 2020523924.939191 42869.51550214681 None 729276 242464 TFUEL_20210724 1520950348.3110893 45501.23080382766 0.28696105958912277 8.582047491330962e-06 51629389.77645983 1544.0627228113658 183563 21711 19127 POND_20211002 69533947.9541545 1443.812455162389 0.08676471310844275 1.8013199917943265e-06 30162709.091849275 626.2072327250937 23217 692 376291 ARDR_20210204 86680590.34362784 2310.349822754376 0.08681599715497099 2.314505677523545e-06 10444925.408691835 278.46065186089913 64708 6339 None ARK_20190806 42726339.95746364 3617.6432443201365 0.2990544488256082 2.531835474819392e-05 1018207.3987273426 86.20281767902291 63420 21828 143377 GAS_20190906 19406964.705700915 1836.2052103462395 1.3913038843724694 0.0001316332833212143 690655.0204274808 65.34387562797248 323812 98221 210014 TVK_20210427 90460163.80698001 1679.1426432357393 0.41296778292069675 7.660871030825755e-06 16838028.05163833 312.3584130576079 None None 68295 ONE_20210813 964470846.083984 21693.31448272272 0.09243157242834399 2.07903114524093e-06 50806223.35800372 1142.766675480319 198874 27051 28462 GRS_20190316 30486611.731882546 7768.754297782675 0.42266583855469164 0.00010770587032352114 57806799.23252002 14730.624181140156 38047 107047 7284589 STEEM_20190821 55924554.03544666 5197.164766720158 0.17339454090173306 1.612874220276767e-05 690598.0478573374 64.23776562803123 8006 3768 255296 MTH_20210203 4236807.400893554 118.98201640333131 0.012163125116461664 3.423817735083933e-07 1046682.0094424051 29.463220945347828 19149 1883 1161820 RENBTC_20210508 707287976.492643 12342.413486706637 57333.44860696662 1.0004160467844425 12555685.96934505 219.0851941983616 76227 4991 67818 MDA_20190618 19545763.686364185 2097.7842336738818 0.9946800892398696 0.00010680048317164914 421040.6757131123 45.20784932514523 None 363 2360786 CTXC_20210506 3310471.0874393997 57.82716037307145 0.37192573104054943 6.4876992657672695e-06 10967717.427095063 191.31575570163974 19628 20512 375335 OAX_20190220 3126836.7776797013 798.6785476516628 0.1332625047812678 3.403884223662804e-05 673862.3670204428 172.12264498448653 14260 None None RLC_20200319 17713597.821877792 3291.8207927144517 0.25347878836759447 4.704716521501041e-05 240856.5053286541 44.7043946843952 28379 3561 324809 ARDR_20210117 81641358.54222563 2250.9933510038454 0.08205042995021287 2.266896620610676e-06 7799077.202736169 215.47360282563048 64294 6294 None WAN_20190410 46209036.98307052 8934.635349111897 0.43530695443599354 8.416792782777642e-05 3227832.386777905 624.1112405899528 109219 17173 502175 SKL_20210729 271899463.3229631 6796.585097679089 0.2241648697012411 5.602898939949562e-06 27609219.19542756 690.0798736620224 27639 2322 175658 COTI_20210117 33713161.82756801 929.1038372476232 0.059310431333678276 1.6388860694126032e-06 14491906.392022992 400.44530061664943 36018 1300 233867 DGD_20190915 27644832.926505845 2671.432790131771 13.822423374464611 0.0013357170629244167 1370121.1522681657 132.40038680475865 17292 3370 548048 VIB_20190625 8571494.603923585 776.1879556466729 0.04731305172874818 4.284412765065742e-06 404135.08727121033 36.59627657591266 32660 1121 2278285 MDA_20210324 22635060.17820905 415.24482301924576 1.1534554430217532 2.1159681514803008e-05 1494658.3574273714 27.41891332512038 None 373 1218144 HIVE_20211207 635188519.9346894 12584.383620521992 1.7255599084944668 3.418023263407516e-05 38246614.67242386 757.5965230380592 29899 199 75974 KMD_20210418 429374471.9182401 7125.520982008665 3.4226819458497317 5.678922519751063e-05 22889182.60442148 379.77789525129975 106387 8971 203738 VIDT_20210624 17770017.920870468 527.0751907835586 0.3838181315967926 1.1385487992754758e-05 4796685.726020617 142.28772234240705 28805 1614 730445 BLZ_20200907 31785395.53778929 3086.713895767506 0.13176323737500664 1.2809571094307948e-05 11395995.337851856 1107.8796740182775 None None 210138 BTS_20190312 126070863.84590927 32605.866717226094 0.04671546364101768 1.2097153050995769e-05 3882357.147238075 1005.3516533555094 13774 7207 158492 BTG_20210806 968688307.7074004 23640.169795007016 55.283369303400704 0.001349801605961809 58574169.28045779 1430.1499485086063 101191 None 198666 AMP_20211204 2619221674.3387785 48785.89238325578 0.054546488255565344 1.0150088918156497e-06 40640426.071025506 756.2428883780375 39385 41221 78917 EOS_20210513 10577227357.280602 205164.1693943638 10.709542076928598 0.00021247492590022434 18864497906.779037 374267.4304929142 None 85909 54887 SNT_20200430 79559908.21870735 9112.852465949947 0.020861678384358758 2.37947399906646e-06 26452072.362007048 3017.1119143516116 110307 5663 178977 FUN_20190613 37599195.90388868 4623.957468891882 0.006257149047287361 7.684919383675342e-07 1213705.0523946667 149.0650999796156 36276 17645 466451 ONG_20191020 0.0 0.0 0.13912545656310807 1.7500967281504197e-05 5233638.83563784 658.3535773279575 81314 16278 327053 RENBTC_20211011 931358809.702387 17011.64102425927 53320.962260382265 0.9746105024166826 1566616.791998801 28.63491418793868 None 6081 93086 AVA_20210624 116386361.92843547 3452.3695594590818 2.2049444877845974 6.54257231626464e-05 5713662.302097538 169.5373693500447 86254 10354 44540 REN_20210430 742545305.34429 13856.186964867355 0.8426319683016715 1.5716304592336826e-05 97444070.08976403 1817.4728040931273 74091 1150 63508 AION_20220112 60796314.96601642 1417.6313420210422 0.12172061570782254 2.844411496538001e-06 1796301.3425356166 41.97662129987558 1092 74047 270136 DGD_20200323 46758901.954966456 8014.532466315937 23.388067776649354 0.004011063158060294 511094.40611538297 87.65289900121077 17612 4711 334920 ARPA_20211225 111108025.79949296 2185.18458572919 0.11275964613245024 2.217926335529466e-06 27579904.35480515 542.4830451139775 None None 199347 DLT_20200105 4026985.7151178415 547.9855476529642 0.047886830835346963 6.512486844279421e-06 4168102.2984962924 566.8512806349977 None 2613 5297076 TNT_20190414 8743096.400375817 1723.4740857760758 0.020409059519036942 4.022211279554889e-06 584828.5904516039 115.25784178964597 17293 2507 1084384 BNT_20200430 14932388.57894474 1703.0274278243612 0.21408329356423178 2.4416034906361006e-05 8398843.375717284 957.8816245791999 735 5015 138596 IOTX_20200523 15343611.543047938 1676.1302055645851 0.0035371546955444166 3.870773756711138e-07 3361353.477284638 367.8391234427062 22786 1833 642800 CVC_20211221 215694167.2112729 4571.856902835339 0.3217504344457471 6.8249652891467e-06 13296091.671408895 282.03649295764836 113496 10245 204035 POLY_20210107 76269394.49321285 2080.8415364820275 0.10355533067591342 2.8045220926236522e-06 3432715.3384464234 92.9660109385398 35825 5026 310362 QNT_20211202 2637505050.6591377 46144.87985661359 196.80609202917893 0.003442563117684003 47852226.293447204 837.0386690695842 65200 10555 75629 STEEM_20201124 62301892.026194684 3401.8801478569994 0.16850710685357156 9.178337251220876e-06 2779790.4214369063 151.41114491884449 11683 3841 210880 SOL_20200506 5195811.6286706 579.4345038595271 0.6503081490988862 7.238776659666296e-05 2903980.8568524625 323.2508907635545 52488 1824 146569 ENJ_20210220 561408207.3881085 10053.066930191659 0.6065097558280935 1.0840702581465474e-05 83283569.85580377 1488.6032781068284 82508 17838 59943 ETH_20190810 22496236375.06767 1897091.5891845776 210.15361895773407 0.01771697811178143 9017297468.618519 760202.2875992777 447619 444386 31061 XLM_20200610 1587969239.7531607 162539.73718884014 0.0782374331667021 8.008147454557704e-06 335215380.9816042 34311.634358154406 283290 109059 78344 LTO_20211225 110844101.07591127 2180.7348454640905 0.37367514057512674 7.348468226290117e-06 33000360.5144183 648.9650350384152 21901 6085 179975 GAS_20201226 21702580.333285198 879.2746530060551 1.5570482567887265 6.314540023313202e-05 2175473.249898355 88.22535105277969 326040 101147 122618 MANA_20210219 410419070.5974666 7940.4496803182155 0.31188512245535976 6.032541997594474e-06 157949223.849424 3055.08425300242 66930 11859 42015 ANT_20200907 164433153.5199128 16012.322119393262 4.746546929045385 0.0004622135910899964 45927577.3788556 4472.377664790924 75276 2668 541569 MDA_20190819 11304121.355743615 1096.9505170874618 0.575097380969677 5.580540398409817e-05 172891.41232776683 16.776767604234735 None 364 3033915 KSM_20210805 1929761384.6001298 48517.061827032354 215.09688390224926 0.00540921221877358 117429884.328152 2953.10259095002 None None 59674 NKN_20200718 13494788.891684126 1474.3426980798463 0.020905743313568488 2.283839106763381e-06 1181895.278072027 129.1156509325345 12999 1014 248862 KNC_20201130 203853878.10743573 11239.05059506481 1.0189755246849475 5.608090657282971e-05 34104826.115899466 1877.012274342623 125971 9268 106415 ARDR_20210930 253647123.92166543 6106.340922497008 0.25479645967159475 6.1270629112059256e-06 11494990.57898239 276.4187953471642 73666 7174 None TRX_20211125 7032037434.8212385 122921.7795649918 0.09805627498284629 1.714302104619284e-06 1505875663.5238547 26326.982334639066 1268747 120455 26139 CVC_20211002 322599908.41857386 6698.508850900849 0.47664042081091473 9.895519597130044e-06 51736235.461643435 1074.09466243217 107318 10067 174587 FOR_20210814 31843936.08278389 668.1085345119026 0.05697149399713449 1.1941062375198752e-06 119113359.03010446 2496.5819747845485 29641 None 175113 NAS_20190920 30286737.668854825 2954.8056241926993 0.6675276188060638 6.509109473633282e-05 10487689.011378644 1022.662043895408 24104 5091 980448 XRP_20210828 54816173108.79227 1117604.9497503845 1.1805811945514972 2.4066702266615648e-05 4927038356.466052 100439.9915300289 1991710 327238 18908 STX_20200207 78319975.16020015 8041.576729445078 0.14873537456866393 1.5273790268206873e-05 9708935.07366558 997.02063798109 35470 None 31204 NANO_20200718 131728438.54892097 14391.693198234534 0.988842065246807 0.00010802884013691356 5119246.171820009 559.2664852693333 97937 52135 209112 MDX_20211204 523447111.7318427 9749.03079235675 0.65991164583055 1.2279730735229634e-05 33419061.551397316 621.8666996833086 31284 None 30091 SNM_20190316 9675770.974397812 2465.7306715659993 0.024215902912662166 6.170497176091089e-06 794514.544465136 202.4516604095709 31444 10073 None VET_20191020 209772985.7643224 26400.622084555685 0.003329185365803855 4.1878722701310234e-07 27315123.129983526 3436.043180000334 113851 57579 368784 ATM_20210120 0.0 0.0 5.1120254108543906 0.00014129116082875877 1428305.5942613827 39.47690772485268 4812922 None 267747 TFUEL_20190712 0.0 0.0 0.008035656664163211 7.061670195187824e-07 2427433.832292655 213.3209252299065 70202 4018 256073 SUN_20210813 0.0 0.0 0.0003999482187694011 9e-09 53.40348585940305 0.001201734 68 None 2001863 ADX_20210429 157766453.03070414 2882.2848497646146 1.3491992548467906 2.4640373358669286e-05 3970725.2985567236 72.51720122856246 58161 3835 11197 ARK_20191127 23689983.9288302 3303.1742675056407 0.16600481923654295 2.319529805862448e-05 872152.4122275106 121.86293896287201 62927 21698 94634 REQ_20200414 6356132.6023486005 927.732766833861 0.008212862177148183 1.199410291299381e-06 25824.50773664777 3.7714233697065676 39372 28191 588604 WABI_20200208 8636769.813824115 881.7547258579724 0.1465793763566594 1.495154670666724e-05 1036985.4731820403 105.77570407102023 36654 7833 3232814 MTH_20190618 9231412.060145823 991.1923230851021 0.02702846907890601 2.9020924297611198e-06 1599011.2415458194 171.6885409101712 19516 2006 1893104 LTC_20210707 9249441524.38943 270695.4470220175 138.5634001637092 0.004055215814846935 2270600383.003129 66451.70782091837 188195 338483 73715 ARDR_20190318 68494473.91199492 17199.993890293274 0.06855923128313682 1.721710468109343e-05 524396.9972686915 131.6904788377761 69275 6592 1067590 MKR_20210509 5018461341.484286 85575.64439928347 5617.975779312838 0.09563733258097783 631069441.6411037 10742.97940090165 143287 26055 30227 YFII_20210420 91884539.5148109 1639.9120470854211 2282.421953808559 0.04078569894532063 156707057.17086774 2800.2740009195722 None None 334053 QSP_20190627 0.0 0.0 0.021903496976084385 1.6815584926758126e-06 757055.3140780813 58.120070699365016 56847 8597 682845 DASH_20210108 985132491.1827408 24963.81637221088 99.4152533789461 0.002519238937058325 816574816.9252555 20692.46925296309 328322 35847 87017 THETA_20190930 81016686.39583841 10049.88505606088 0.0808664382919394 1.0043162936704919e-05 934446.9223052545 116.05312283612187 None 4022 338625 OST_20210120 11005271.801117357 303.90526058021464 0.01580846581317124 4.3718981347183014e-07 3049505.5247024954 84.33536608057172 None 734 753771 MDA_20200109 10233570.258621117 1271.7124184508048 0.5206759986558934 6.478814443246794e-05 992088.7333864479 123.4464202582614 None 370 1886046 GRS_20200423 11258519.395941872 1582.5314015219174 0.1504236692912686 2.1129371874382684e-05 7536401.554097269 1058.6062139121073 37418 106845 None HNT_20210707 1166866915.68418 34162.60835192506 13.131244849796458 0.0003843008451049005 11166990.809775531 326.8147121285241 61263 40796 2473 RUNE_20210825 2736232050.4022727 56939.860865529896 10.415547207161884 0.0002168762665242164 174018187.78790396 3623.4692353753367 108633 6603 73281 CHZ_20200208 45457243.115246914 4639.3492122010575 0.00982107765891251 1.0017800933314266e-06 4951278.179406666 505.0455855192878 16929 None 342374 TRX_20190430 1502920446.1584723 288764.1041644587 0.022691094451640848 4.35972148660263e-06 502653315.62825674 96576.58713320005 415668 70517 98802 STORM_20191019 7948080.968629258 998.5978317407107 0.001254530861498185 1.5763280424311987e-07 100906.0089086269 12.678920572948458 26227 2546 1742887 NAS_20190325 42304268.60942021 10593.21799566717 0.9346013752969236 0.0002342118031289832 5577575.640425621 1397.7446239230649 23747 5169 598776 STX_20200127 49614511.91855846 5781.436017586095 0.09759659667569758 1.1362278650162136e-05 139923.70288734164 16.29003629349259 35274 None 32191 OAX_20210204 9767123.964680258 260.6964305991084 0.17484475424912013 4.6613434120030265e-06 1430359.3332396809 38.13323472830115 13042 None 1390628 RIF_20210219 228660655.83123273 4424.203459715776 0.3269616560768067 6.324155209322909e-06 9579156.338643009 185.28188346867458 42691 3099 719987 TNT_20190511 6474057.850980538 1016.2076689843514 0.015119472393151244 2.372954637492267e-06 757831.0375376215 118.9392478916831 17275 2503 1010954 IRIS_20210110 48309053.3631455 1194.2917713079835 0.05096800624118662 1.2648000545517638e-06 11690303.910904475 290.10153848808733 11225 None 805488 ZEN_20200629 65082752.12794967 7138.3117475204745 6.939210663774167 0.0007605296305921379 5021554.224725837 550.356656480579 63702 5961 59868 ATM_20211216 28841703.087913513 645.7254437455765 7.369477607917523 0.00015079959704226693 2566802.022345165 52.52376508221811 None None 65314 MANA_20190530 81301585.52607173 9401.301827060597 0.061299591936434326 7.088903731168679e-06 30560482.668500643 3534.1233566399414 44761 6244 119390 DNT_20190805 6058857.194616433 553.7939314230978 0.009067056614785057 8.278829048689266e-07 323274.40344961017 29.517114932449015 60475 6312 717960 OG_20210408 0.0 0.0 11.664246529709876 0.00020757462896621678 27165656.68845707 483.43466449953013 638368 None 385842 XVG_20200425 48237841.25357456 6433.158981436226 0.0029761481070467114 3.9707048462392124e-07 1832871.5514446374 244.5372908231068 293423 52006 294741 IOST_20201115 81645244.5434575 5072.448969469583 0.004871943542426955 3.028674084649567e-07 18582931.21263199 1155.2195071720269 None 52166 268325 BTS_20211207 100959416.54161972 1999.6760695186217 0.03725170314512814 7.378344871616394e-07 11942373.55814584 236.53938815733432 8011 7499 195981 UTK_20210729 95441761.29434368 2386.819715261626 0.21209565765362684 5.301234475407329e-06 5177236.663749943 129.4026751553567 None 3990 165733 FTM_20211021 6128300983.015726 92455.73522610175 2.437200441177751 3.67737499492866e-05 722289450.4741063 10898.279515289662 189523 16437 28433 TOMO_20210610 128088675.19015567 3412.4290637332774 1.5671535629842868 4.184247618853325e-05 9244816.027246065 246.83349712761532 48909 2174 91047 ONE_20210401 1657848227.1932971 28186.500899162314 0.17647927481949924 3.0031262537325293e-06 188231140.58655837 3203.1063174056853 110755 11821 41761 DNT_20201226 35662596.27525906 1444.86123233609 0.047278571305334686 1.9173614526779033e-06 14099856.042382391 571.8133970118756 60088 6147 318484 FUEL_20190801 3631848.082962166 360.8891819976755 0.004129873668518689 4.101502797428505e-07 267158.1553618975 26.532286687735112 1 1503 None CRV_20210805 581078624.1693684 14575.346875823587 1.626435857636382 4.0894896925689636e-05 96916219.8875622 2436.84914109623 145274 None 12841 BAND_20210804 225377596.6919674 5865.806434967486 6.402769311563523 0.00016668206931262655 49070658.246044636 1277.4470640714221 101321 5544 306752 QLC_20220105 7893909.891693972 170.64656926036838 0.03243317185528431 7.060186388166754e-07 216687.54892082687 4.716943782748715 36078 5837 940522 AGLD_20220112 104150611.7957473 2432.352983158715 1.3539929858398518 3.1650479858916976e-05 10734064.863552421 250.91585209168727 None None 124550 SYS_20200320 9884698.93821964 1597.1656261390729 0.017001863563634048 2.7492378606106968e-06 287660.01553712 46.515242446132945 58732 4509 831215 NKN_20210314 106652366.85505955 1736.5150876985833 0.16423469587512377 2.6772003351317492e-06 62029105.91763475 1011.1404430454935 None 1114 294547 NANO_20210219 1005196583.9771831 19447.567765227413 7.521044232020076 0.00014547348343594286 130408350.90825386 2522.3833939167093 107827 69700 127851 NEO_20200312 663948278.3647028 83710.74865486922 9.451311191567553 0.001190589676579885 550707837.1855847 69373.1327299622 322788 98979 240012 GVT_20190816 5543505.978863529 538.5803747462548 1.2502032273258648 0.0001215075390732296 412276.4615854436 40.0692440797939 21329 5720 194896 DCR_20190318 185812022.28087997 46660.19066693198 19.525603565449256 0.004903414963326143 1593550.1692940008 400.18418476721376 40077 9387 241098 MDA_20190613 20086315.221763942 2471.160890547794 1.01762615050778 0.00012498303732691964 1590041.043387403 195.28601832594387 None 363 1548972 APPC_20190305 6698361.026223748 1804.078146173013 0.0642688170232199 1.7309602724914425e-05 993545.6494318682 267.59292106651435 25298 3416 1657371 DODO_20210821 306342237.7823167 6235.075729541271 2.082400066386494 4.233835262624209e-05 91408288.8299901 1858.4691903900566 101395 1062 31066 ZEC_20210219 1830617033.8837953 35419.09173331343 169.57967305999972 0.0032800426375554684 1959190871.8833065 37895.046493060676 72843 17508 114224 ETH_20200229 25137364865.97101 2874540.256710887 227.70528448376498 0.026099775901734977 19715536659.914295 2259811.7991543217 452266 453530 20404 REN_20210203 593411153.9251596 16662.91036891052 0.6678383039621406 1.8799088288414537e-05 184186669.473893 5184.700309111096 39703 1013 83739 REP_20190816 110349027.38652782 10722.291436793108 10.049836729678988 0.0009765755206788183 6606715.612253626 641.9961749189084 126010 10047 195654 POWR_20190830 21741937.814538468 2291.1180917623087 0.051000276334352966 5.377425062932971e-06 447680.26235403825 47.203019983275055 84050 13070 483233 ICX_20190923 107496740.55844197 10702.90571675318 0.2143370897501095 2.1340334129071435e-05 47920345.4940217 4771.158298431844 113476 26308 187595 OGN_20200223 6773332.780791109 701.6813642501677 0.2828408876777284 2.930098180862458e-05 12733374.677372081 1319.1175535030648 62654 2138 124471 ENJ_20190923 59499566.014132805 5918.853388809072 0.06782129585788431 6.7516448326940764e-06 3708656.75352721 369.1986844170141 48507 13737 26747 KMD_20210221 180768473.35776988 3235.3121438513667 1.4509219863459801 2.5882385980483436e-05 13165582.818646166 234.85528469272631 98721 8675 263220 DUSK_20200314 4507566.7313897 816.8889614879495 0.017482770506678888 3.1426540394304404e-06 548999.5937529422 98.68663495263736 17703 13342 936304 SUSD_20210107 177556360.7860902 4836.09003829336 0.9968785378217305 2.700881603873565e-05 63365260.627243705 1716.7795298987705 52663 2971 45504 ZEC_20201201 840991445.6640515 42775.78835402929 78.35233507587255 0.003991194521235794 582488977.2853898 29671.442626061376 71845 16368 172022 LTO_20220112 104045283.10784957 2427.064752759888 0.347887077561694 8.130894611975112e-06 18723607.990098324 437.61235510803516 22636 6163 178243 TROY_20200625 6984278.113082704 750.688256261876 0.0036264549608380275 3.901546746523808e-07 1465164.6321533767 157.6307541505705 8957 None 743325 FUN_20210614 218149576.9427962 5604.954550206444 0.021226723897289364 5.437511607790008e-07 3976401.6295677517 101.86089065195233 3531 319 199069 FUN_20190220 23101271.929627784 5902.635957627767 0.0039164016139518545 1.0004470242327044e-06 811025.67048923 207.17696972822733 36402 17842 514881 JUV_20210603 23250572.31588179 617.8257326532688 10.538961801057464 0.0002801825065829632 3784406.140709176 100.60994796711985 2496372 None 34079 NEBL_20200217 13857372.438564546 1390.0619947442622 0.8685921884915414 8.730941867563233e-05 2764744.503685571 277.9074444851371 39759 6027 775420 TLM_20210710 119173644.70301048 3506.4895068522387 0.09606297403768409 2.8266978297016804e-06 24280609.87390677 714.4682737750902 50882 None 9614 MTL_20200129 15563316.141142532 1666.0033824215434 0.24552517874653706 2.6258262930732432e-05 2129033.4838662003 227.69445192178873 34634 None 534159 CTXC_20200414 861589.8218345777 125.68870172733726 0.08426778284935271 1.2306507012344752e-05 10732703.70817243 1567.4091447518972 16558 20066 374531 RVN_20190205 29682020.567005586 8567.988760190192 0.010485623192211767 3.0267717607583164e-06 3105748.3323591687 896.5028759939742 19139 5701 264314 XLM_20200607 1620444698.916528 167547.38924737982 0.07981413910140626 8.254200954910541e-06 405724236.43869 41959.099196542986 283318 109028 78344 CHR_20200713 12875254.833216777 1387.7188009918939 0.034968797175593064 3.763649247819326e-06 4987066.774899445 536.7519512302675 23080 None 392224 BEL_20210401 137307866.79489252 2334.4889160502426 4.815159769830408 8.194394761598093e-05 87297656.61778323 1485.6235188095266 14677 None 320068 FOR_20210104 8307957.890223464 248.3439764113685 0.014981172922004043 4.5510990868279213e-07 2759361.4027555087 83.82606105469677 16880 None 227730 WPR_20201228 4533437.089783229 170.75298320961926 0.0073853083308417005 2.800686604473428e-07 146006.8127339166 5.53692962117854 32516 None 7632831 BCH_20200903 4885417012.130717 428233.25867510895 264.1546148629372 0.02314412645123319 2906805855.907892 254682.21455538398 3810 316139 143808 XMR_20200629 1110800633.56328 121833.21928564772 63.24856901516695 0.0069300113488547635 63041339.33900399 6907.305633452975 319664 173984 84747 ONG_20211104 0.0 0.0 1.2631029675753753 2.0028456958310016e-05 23166796.529205397 367.3454968107558 171955 20767 88071 AVA_20210616 154342689.48502633 3821.950562976772 2.9621434215200586 7.338766586104194e-05 4526923.969672347 112.1554011365773 83129 10266 44540 REP_20191011 92844472.50293458 10843.182462230088 8.46216531109626 0.0009882850321635528 7517873.289746521 878.0024228805967 125569 10050 198909 BADGER_20210916 203074687.70008206 4213.827931797566 21.16126821280749 0.0004389722915108863 17846767.99359846 370.21583788969343 37641 None None CVC_20190520 27216693.69322257 3325.8480965086455 0.07937156766151708 9.700071476388642e-06 3414126.2191393767 417.2434705623335 89014 8195 437048 OST_20190901 6916123.544040593 720.4799219735881 0.010398614408388216 1.083264758051436e-06 173480.79785618457 18.07218030554691 18007 754 572437 QTUM_20211221 944163301.9525024 20012.499944920888 9.043781016740427 0.00019180464842990825 123776678.40531018 2625.1124658377767 270481 17600 150166 VIBE_20190729 3984303.6038256115 417.1633375631664 0.02126747122255925 2.2292525364075073e-06 249575.24048527112 26.160432147953 20430 None 1758563 YOYO_20200410 1426603.3944778705 195.7280601781558 0.00811645609288803 1.1129400455646816e-06 261807.6716062642 35.89944165680569 7517 None 3120831 RLC_20211202 293747302.846869 5138.31709965487 4.118372803531259 7.202139200667576e-05 14124973.433162838 247.0150948552854 49648 8434 283340 BTG_20190401 227506223.58641082 55439.89543397813 12.999555477100737 0.003167067632080528 3274151.0153559325 797.6778684120088 73185 None 434062 SNT_20190914 50832877.12177281 4908.875366007551 0.014337287348150065 1.3851519905286974e-06 13967023.209205685 1349.3800835684608 111211 5708 268012 VET_20200312 284928827.14879954 35922.69647825984 0.004546039259638122 5.726684162808019e-07 118679524.2058229 14950.160192263242 118774 60790 236885 OAX_20220105 11522557.405930884 249.08884410964646 0.1987582003241566 4.319806483487716e-06 140271.41592362456 3.0486559596868634 14942 None 1034946 LRC_20210318 784971606.1650406 13344.65937059482 0.6300654575732001 1.0691894079074454e-05 185556464.5790146 3148.799924071163 None 9535 104110 MTH_20190608 8096797.215080738 1006.9102416468627 0.02367968866126191 2.9479977562039646e-06 466688.6758365597 58.10030650709831 19363 2008 1790455 BTG_20210114 241728460.49371445 6502.915579527506 13.74998195816534 0.0003688085872690097 54068104.69624673 1450.240543588056 82735 None 356122 SUSHI_20210124 894954403.4456819 27961.716177890365 7.0431896765378985 0.0002197688277361886 549853956.9762508 17157.107092162674 25774 None None TKO_20211007 142467852.06290317 2566.259245235101 1.8977275206367044 3.4208822756641715e-05 32157615.059200235 579.6797179119839 321930 None 34011 DUSK_20210203 22289463.607030824 625.8001568418526 0.07374191228847136 2.0757729999057998e-06 2059792.1779234807 57.98142271690411 None 13364 931184 ENJ_20210821 1539128984.9203212 31322.500772298117 1.654597849438862 3.365584792815548e-05 129697225.81756067 2638.145643849245 262574 34906 33629 NMR_20211104 265296366.14232472 4207.448300214796 45.33319127834821 0.0007192941877471269 8547476.010138417 135.62137675793872 None 3699 4492361 NULS_20190515 50108779.7282454 6273.740294176849 0.6998478122478512 8.756677601642375e-05 7482779.517602987 936.2648086212346 20866 5323 670223 BRD_20190819 18938758.41484202 1835.162993255715 0.315864085035261 3.0621152453016035e-05 364112.39818627026 35.29854067976864 None None None JST_20210819 94807934.22511606 2104.4833251514524 0.06608800015594124 1.467419992452216e-06 218929824.69118235 4861.124575382066 None None 156569 DNT_20210602 137341258.13369367 3743.07959440459 0.18289341567665038 4.986616304622931e-06 5705502.628922397 155.5613816396438 None 10120 197329 VIB_20210825 8863189.945161322 184.36195385549848 0.048547141271405976 1.010910960151889e-06 1419564.4726927527 29.559995635264727 32817 1278 6383686 SNGLS_20210430 24327092.88866712 454.196474072798 0.027874977097682524 5.199966995929527e-07 1146984.1448915708 21.396536676568164 9469 2132 958581 AION_20200109 21683256.29530626 2694.5499572803083 0.05677573865237051 7.075488734582807e-06 3266011.5808135355 407.01589614806926 1140 72542 317810 AVA_20201015 21810898.233905487 1910.8029479073127 0.5661639684515366 4.956041272909397e-05 651608.6579019299 57.040002230793675 38465 8967 66612 ETH_20190712 28636795382.556053 2530612.6404064284 268.6352130477999 0.023671914081019717 11259727245.112816 992197.9062164142 445899 442218 35893 BCH_20210813 11401383240.559448 256453.92183890444 605.8136116051526 0.013625314776685351 4108214150.847122 92397.57889726668 None 602807 320566 GO_20200425 6848978.714161461 913.4025856807662 0.007161837596289265 9.555150559957547e-07 1102128.1207637626 147.04326911458045 10725 676 903309 FUN_20190522 38440555.507671684 4830.470806280645 0.0063777618387581255 8.014727382220184e-07 1554457.1140541227 195.34360660482835 36446 17689 458828 BQX_20190220 14107551.844937827 3604.6388721666217 0.151178636056655 3.8611652727464425e-05 716561.7214321673 183.0128453822295 60583 5811 364991 VGX_20211011 4758261619.440375 86964.48173776368 239.8521622108798 0.004382168006773985 106042838.91818331 1937.4331745493485 None 11363 34852 IRIS_20210702 78458071.30960786 2335.013408298686 0.07500457652751033 2.230264271978774e-06 6461444.824507134 192.13133657483982 None None 777699 WABI_20210104 4592517.831506479 137.28092451678964 0.07641313135611287 2.321338483622193e-06 1198361.0162937208 36.40475786067467 40935 7478 1296084 ARPA_20201229 22754710.669230815 838.5297624313073 0.022974987194131807 8.464500027666498e-07 15238622.000381997 561.42497601382 21433 None 1357092 SNT_20210115 213112087.2162047 5456.592685742222 0.05502006754939394 1.4025355278253683e-06 31109342.417436738 793.0189825479481 None 5683 172923 STORJ_20210314 110794476.87398537 1803.9569715955176 0.7692908139539163 1.2538928420621165e-05 65233895.50138248 1063.2690933693057 86882 9086 78580 GXS_20210828 50367217.929200225 1026.8265491705313 0.7161368094754796 1.4601605582585261e-05 10387368.71827059 211.7922987035965 None 27008 713331 DEGO_20211021 45845457.46220841 691.6673071785433 8.4200573173466 0.00012750198689015084 8235059.132753753 124.70062399941793 None None 217620 TFUEL_20190716 0.0 0.0 0.0073801732198379155 6.748764546400667e-07 3085887.2812623144 282.1875050573573 70120 4015 240889 DGB_20210219 1074716151.0736535 20792.564866957073 0.07630352185108522 1.4758773887873498e-06 87994925.14468698 1702.0147589325443 188220 27786 191254 MDA_20200301 10762276.33310817 1254.9665604628312 0.5450935313835936 6.373195114291451e-05 695376.7709466177 81.3029614924933 None 374 1557783 RLC_20190224 21655086.59058299 5262.765172790173 0.3095144853602718 7.522029742132099e-05 1910522.4576246808 464.3080511251825 23867 3264 504378 WRX_20210805 496116953.4186498 12474.444607549705 1.0963523533709676 2.7570843604738032e-05 11100734.946098594 279.1590004395015 None None 1330 VIA_20190818 5878630.299620418 575.0728107854112 0.25391193322741284 2.4838753534556216e-05 204446.2409795382 19.99980751676221 40832 2221 1896727 QLC_20210506 19913932.043662228 347.5974353245063 0.0829867028539673 1.4486958892784515e-06 992512.6478796812 17.326257624313207 33361 5638 940522 REN_20190615 34473653.272764705 3970.4550897480112 0.04390093331556406 5.058528461531545e-06 1485795.9837097137 171.20231175040288 6397 780 1322492 NULS_20200725 46442707.91757455 4868.753187770976 0.47992517522560324 5.0304705271642694e-05 21432762.46562954 2246.535198916778 29779 5183 415817 FIS_20210825 56879674.60788511 1183.642578038454 2.106503940471036 4.386433197209844e-05 15545059.553650107 323.6992059150265 25645 None 372916 SNM_20190512 11192004.473432092 1529.196422675914 0.02764650843703166 3.795608739167538e-06 207585.78893144452 28.49960009922234 31550 10027 15333127 CMT_20190221 20257528.073613767 5107.687761373674 0.027083740003007756 6.824112147243627e-06 873604.9516865975 220.11650392577374 292626 1627 907470 POND_20211111 76487285.4887893 1179.2311722485706 0.09518736243952577 1.4656847556049677e-06 40651069.60633038 625.9407918660228 None 748 732622 LEND_20190321 10237964.779643232 2532.230363493509 0.00917882167430064 2.2702647884637834e-06 174486.1969489577 43.15694138772532 11643 5925 466790 AUCTION_20210814 155682506.26269156 3263.8059928113603 34.02115108654593 0.0007130474030940831 3746193.895741982 78.51626836641897 None None 70573 CTXC_20220115 73167184.17699587 1697.5618685927473 0.3881212472633278 8.999005281266645e-06 10944333.178211164 253.75604341455443 56049 20907 237581 FTT_20211204 6587195804.765664 122693.78677918103 47.265748994774675 0.0008795278494051911 223306381.61972 4155.3172384121135 332057 None 906 OG_20210731 5459044.4725594325 130.78686200451062 4.259260356877518 0.00010196587233012014 1561431.756965105 37.380375427347346 696897 None 318146 ZEN_20210112 258219230.45747048 7289.5901604165365 23.939121719703483 0.0006734550195567919 216721419.3872805 6096.803777546627 81688 6370 350689 XMR_20190903 1254556688.0595946 121536.14930405525 72.97245483226594 0.007069165446407195 72243803.98042032 6998.577805684375 320446 160728 87781 RLC_20200410 25014394.4897477 3430.6841181302043 0.35616020956453653 4.8846801986902885e-05 369014.6364221747 50.609766030915225 29697 3565 395542 PNT_20210106 10406911.437108187 305.4243072719905 0.3684555921875179 1.0803080144969162e-05 4151078.641256645 121.70919969846076 7065 113 1089026 FUEL_20200308 2639707.432815938 296.9761673015719 0.002670129559907898 3e-07 68529.48590267087 7.69956862 1 1470 None ENJ_20200718 187928651.93696803 20531.720649146057 0.20333700974625205 2.2214125078015664e-05 36509982.78348552 3988.6360341418117 60135 15680 108364 CELR_20210821 261547493.13545147 5322.6998100824685 0.04640764255092654 9.435377795983288e-07 40902237.173001975 831.6045358362637 59309 None 206136 OAX_20210729 7160330.20165779 178.7839688120383 0.12442629562944803 3.1116659392038846e-06 265065.2266664504 6.628779176562952 None None 1430084 DOCK_20210805 45206693.35977185 1133.9312950455621 0.06514404423042008 1.6379735859962776e-06 4524646.094457126 113.76712754411993 51946 15151 292152 VET_20200901 1123943165.4466352 96161.0954103201 0.017433687031298165 1.493528548648693e-06 205194610.02382255 17578.8407552131 133943 66983 75670 STORM_20191213 9100609.47544776 1263.2519854926354 0.0013433036975200705 1.865979348330801e-07 1115701.7940237802 154.9818191066874 25961 2534 2433967 POE_20190414 13275402.306829982 2616.675545075086 0.005885113878262099 1.1598069200682423e-06 423872.7149808599 83.53457863895912 None 10933 791380 XLM_20210819 8112775435.780347 180315.18776238497 0.34472766602333677 7.6619443392627e-06 674162126.329418 14983.980680057493 612489 197976 37413 HIVE_20210826 199095785.27084765 4061.8578928003044 0.5256323628879894 1.0724838010370641e-05 22133727.4426291 451.60963850027895 23167 177 87293 EGLD_20210408 3054541387.4834614 54230.496364442224 173.8192673793554 0.0030932533740219872 300166674.11457556 5341.706885966006 196566 7592 26202 ICX_20191026 75724893.31450625 8746.407257141114 0.15119389211334694 1.746337769855893e-05 17847662.531846404 2061.462056922193 112884 26422 151226 WAN_20201129 47523389.317244336 2684.6742549960477 0.377161694213254 2.129136587901541e-05 1898884.3915971331 107.194985502919 None 15929 471269 DCR_20210617 1704564949.9028375 44506.897138023356 130.80915422583607 0.0034154812183442925 32349130.760754462 844.6492082073111 46313 11250 151114 RLC_20190714 21327502.607372794 1873.8586493131447 0.30500463612927814 2.678291593216486e-05 678267.427035619 59.55968311944276 24966 3320 789445 BCD_20200530 106272342.79089811 11282.792782533796 0.5641281619374625 6.01787617191177e-05 11708692.603758737 1249.0328790252881 28464 None 907127 IOTX_20210723 183519053.2837316 5674.248831216378 0.0192474200263233 5.94521477237538e-07 14329643.193576492 442.6193551177626 58372 3280 234069 COMP_20211204 0.0 0.0 1.3110122332267775e-07 2.4406165469164025e-12 344.4621972328143 0.006412603307936979 2635 None 5620341 DCR_20210704 1901520697.329014 54880.67852827694 145.53657503164536 0.004197095580857066 70413075.80472848 2030.6263853627145 47056 11352 133920 FXS_20210616 30287519.356220614 749.9406928916392 2.0366581236244645 5.045956795023092e-05 1936042.026642503 47.966736814923266 11193 None 151064 OMG_20190816 163644686.76503077 15901.88970054907 1.1681721337500395 0.00011338799661022037 69318603.38046888 6728.37276121127 289037 41088 None SUSHI_20210704 1449869641.2783499 41822.49949614149 7.621088090346176 0.0002196350140833222 117335707.97709392 3381.542053905717 110812 None 6114 ETH_20200430 23796586177.48911 2726788.8320089392 215.54817266567386 0.024581733045826653 20966892392.04868 2391124.6623339737 455050 459267 21984 GXS_20191030 32041646.589700013 3405.4865954995257 0.4930024761231169 5.2397847884791504e-05 11871117.973804425 1261.6996139761416 None None 581889 NAV_20190623 15177340.66350104 1414.6231281216697 0.23313924613782452 2.173486111493505e-05 445184.7108920536 41.50321330288225 48357 11251 919129 REQ_20191108 11630093.336663324 1261.5116454176332 0.015068774743831415 1.6345040638317224e-06 150220.85674304113 16.294397188417534 40486 28999 1173311 ONT_20201229 373305877.78364956 13766.732327689437 0.4646298934114446 1.7118006257868004e-05 136603352.50195864 5032.773560489723 94183 16678 295641 ALGO_20190729 98427536.64073229 10310.92131997362 0.5754240436405319 6.034084192346898e-05 62468124.46349102 6550.611266883094 10669 519 261967 QLC_20200423 2196511.1157916277 308.8059483574337 0.009165270422630769 1.2882980201181095e-06 59705.094571542 8.392327948944878 24415 5653 940522 NAS_20211007 16935646.25388122 305.0961500752478 0.37180083459993457 6.701583211612257e-06 3410513.5280382372 61.47334291777721 25696 5079 469610 BRD_20200106 14974455.338351544 2037.70682858237 0.2506061959620091 3.4123979366523424e-05 831836.6108316893 113.26765180475618 180 None None TKO_20211230 90737544.96117188 1956.4195201253197 1.2215837428501133 2.622790898576076e-05 13690620.773073522 293.9432991773174 354871 None 24168 YOYO_20210210 2897882.0627074474 62.288984733766036 0.016590601437208252 3.561896757123773e-07 924900.6425527957 19.85702936592789 9421 None 1427347 BLZ_20200423 3253059.0316689615 457.3673450318693 0.014766519862722292 2.075626514653276e-06 159074.2696302333 22.359958535466752 36069 None 563523 GRS_20210104 29457677.883677777 880.3725931159437 0.38026940217610794 1.1552124376392117e-05 6471562.694856396 196.59824517245258 37629 106781 4269637 TCT_20210930 13765919.785353398 331.5379857229824 0.02384296996205444 5.736133836116322e-07 1322349.8167208794 31.813048202243646 None None 1786499 RVN_20211225 1002939410.4022721 19725.017380709935 0.09675758295920144 1.9031736864029716e-06 47188655.68607227 928.1774621874445 80110 60025 66229 ADX_20191213 6829137.173817363 947.5631175142746 0.0739645581929385 1.0275307930298997e-05 36283.50531186049 5.040578879650497 53016 3808 250882 BNB_20210124 6025125570.096895 188356.87506386414 40.77664235619435 0.0012723761996789853 530395845.22519046 16550.235891863056 1518989 91397 564 VIB_20210108 3897737.1980533777 99.7041348122304 0.021283494701845544 5.393358337596812e-07 1024969.1879418745 25.973300874723332 30355 1092 3160516 VIB_20210117 3710970.2141018533 102.25963934070711 0.020324858333015873 5.60895602232671e-07 1036941.2213507601 28.61598153846093 30374 1093 None ATOM_20191127 863984511.7229365 120508.85318833284 3.4773047342768493 0.00048587215794794426 165525026.4305724 23128.258214889505 29150 7352 99616 QSP_20210128 18763562.734222606 620.2651624964446 0.026380584037519347 8.677560510346474e-07 480696.16199683235 15.811894182806203 58526 8160 193675 ALICE_20210620 86642507.40246193 2436.1134292817883 4.985081981440709 0.00014005858294286835 16619640.956262007 466.93782971260026 None None 45300 MFT_20190224 17515186.448054433 4256.658723028719 0.0030487832020663175 7.409358530203118e-07 1146094.7277771484 278.53166935323856 15970 1849 701840 HNT_20210125 117708670.89444977 3654.1326468354214 1.7650429749842818 5.470982612601767e-05 2819937.829818636 87.40767819374544 20296 2371 73258 WABI_20190228 7908669.6696340395 2069.3689617500922 0.15035295739223342 3.9435053777803206e-05 1906858.4295154733 500.1369179485418 34654 8012 1817938 VIBE_20200907 3093871.712611553 301.28128308178384 0.016533123539272453 1.609995867946657e-06 219484.97176006346 21.373450502 18754 None 2981360 AAVE_20211111 4127555973.337556 63559.06580280202 312.24229910165593 0.004806959420931979 463558513.7745816 7136.467324744132 None 13945 14216 ARK_20190626 72604820.48443912 6135.855043369567 0.5097931465884143 4.30827709330976e-05 1124626.7381747242 95.04254121551877 63471 21854 211362 COCOS_20200417 6025925.108072151 849.3584590044587 0.00024751902480631485 3.492281425583507e-08 479132.417694464 67.60148008900065 14848 218 64758 HNT_20210823 2229981156.284608 45201.664063988275 23.659312100930727 0.00048016035205330365 46256945.838899426 938.7741834659176 75354 47784 2626 SNGLS_20210310 11695514.096510652 213.59472918538015 0.013684270217187735 2.4998949899106763e-07 469326.7121018208 8.57384045764416 9231 2116 2953528 WNXM_20210207 95116101.12504427 2424.863990309777 55.65934045077805 0.0014154221976920719 36963468.01484761 939.984425042982 20590 None 132574 XLM_20210131 7155792219.8729515 209178.98475935936 0.32375058492252334 9.474868852236092e-06 3660945625.76241 107141.05640169626 347830 129203 30646 KNC_20190821 29829810.01864691 2772.147577422672 0.17714411001701508 1.647751808300784e-05 6790055.6143400995 631.5946048625116 97690 6701 203045 BRD_20211007 13895456.045436734 250.11813058046667 0.16335962807272053 2.941216315048149e-06 230671.01136120333 4.153127367076341 None None None BNT_20200224 23628051.06911907 2374.9150541544395 0.3388793700579689 3.405589011074576e-05 43495672.60065074 4371.124291594817 751 5035 112981 EOS_20200625 2347586932.925421 252324.70880560458 2.499668964483889 0.0002689286209559034 1543487391.2719731 166057.16256644428 190195 71632 89691 CHR_20220115 433517954.79561967 10059.60769558358 0.765992116789509 1.7760344616538383e-05 61861595.684695765 1434.3271083442148 None 1959 30769 XRP_20191015 12773042023.41355 1530235.639802579 0.29589976050882405 3.5449375216150914e-05 1921364554.520583 230183.26511346278 939532 206298 28793 CELO_20210729 329554604.86875427 8237.77248012439 2.6209863647936875 6.551036183544999e-05 14592880.639451558 364.7424129149391 34901 None 78180 DASH_20190618 1407285576.436835 150970.39946042452 158.50052874842865 0.017011354254190193 392338169.9948938 42108.39957396671 319892 27388 110566 XLM_20190509 1787247056.2604136 300068.0886414128 0.09328683967441542 1.5658429574902588e-05 195368811.5135565 32793.14410150868 270258 100842 71858 OST_20190629 13677160.846097386 1104.1079708698755 0.021424243263531706 1.7310440290009207e-06 1381276.533186912 111.60489851430768 18160 754 994275 GLM_20210809 415647444.704001 9448.193370680461 0.41625177145876574 9.462666259008583e-06 6578415.314272948 149.5473482646366 158970 21074 227363 MIR_20211002 296609310.73531246 6213.759998811874 3.0635752870468544 6.36028082525586e-05 30551967.043381616 634.2886071103666 None None 15469 MTH_20210821 9019099.85163831 183.54586576965767 0.025993043014948217 5.287193520756635e-07 387474.8517709233 7.881549399819066 21830 2054 1319394 GRS_20190405 34039291.228690885 6949.205470083119 0.47222369851865487 9.647499185326135e-05 28306994.26079838 5783.100359570278 38900 107060 6013629 TNT_20200418 21077741.175427593 2994.14896327064 0.049191744600766335 6.987817616318684e-06 1119465.9119125132 159.02309795307917 17560 2563 822007 MDA_20210427 24798396.168026295 460.31360918643054 1.2632726310605022 2.3443459278143263e-05 1864749.2229089197 34.605493221613884 None 376 1136941 KNC_20201224 152911720.47184452 6540.271921717024 0.7590819899679535 3.255698116903183e-05 38424944.2707673 1648.0435625897048 126885 9301 138116 PIVX_20200329 14246354.060379585 2285.277986244821 0.22728502211007143 3.6361826603544e-05 316545.8894203105 50.642082070818105 63742 8509 174953 HBAR_20201201 214362279.54748473 10909.713010835334 0.03438912939283878 1.7506375771233435e-06 7554112.788793392 384.5550597929243 42781 6761 190045 GNO_20211202 668958137.2233272 11701.520957685509 444.600055336889 0.007777014099726729 4846837.177807551 84.78163828011004 91084 2399 141994 JST_20210626 63409015.49041527 1992.518388934991 0.04429078195589106 1.3932667425800892e-06 73389679.57777387 2308.638395821349 48106 None 93769 XZC_20190812 64314831.87305437 5572.542570633996 7.913932301507784 0.000685483166371468 16027934.885902477 1388.2958733284706 60861 4043 218512 BAL_20220112 190587429.4805981 4445.833761939878 17.60980906586677 0.00041158039745289057 16490943.887496844 385.4300301725156 118240 None 2418492 DENT_20210710 221018590.584243 6505.211124772264 0.0023103733358184517 6.79868888391942e-08 9424741.270144887 277.33995503567263 105199 None 67197 POLY_20191127 11667516.357974658 1627.7782507143813 0.021197223642354834 2.961817148809066e-06 3433632.4724788833 479.7699789030415 35032 5034 315653 SC_20200314 47782944.30083072 8624.758600209645 0.0011611868576690638 2.0921972420188252e-07 4431094.157414956 798.3833880000251 107879 30203 227333 ETC_20190528 920194920.8350047 104357.41800004814 8.216471611301573 0.0009336415418993182 895647868.7536807 101772.88947628456 227817 24540 712989 FLM_20210114 0.0 0.0 0.15196492301589754 4.066242351913014e-06 5950555.35779011 159.22358747694545 12479 None 65365 TLM_20210828 396989742.2136298 8092.059569872613 0.31958922354066127 6.517117472225343e-06 265053726.3301961 5405.020394015822 61131 None 12690 BAR_20210722 62534248.61182684 1946.911330468373 21.194885797908544 0.0006586334408501386 82936631.35619928 2577.2650725036347 None None 42486 LOOM_20200324 11287331.848873757 1752.0778722160537 0.013596093580880765 2.1084024449222927e-06 21717732.19650807 3367.858524133438 21566 None 494145 LIT_20210727 79706373.21251206 2127.807680674503 3.5178016800852276 9.425322569327285e-05 58770798.80778702 1574.6587977267884 None None 411368 ANKR_20201030 43016494.57972465 3193.478741199613 0.00739850000681966 5.4979748622788e-07 17387046.74559829 1292.066579015358 27881 None 5196 DOCK_20200807 11344076.94451287 964.1963678172442 0.02056480478649218 1.746636693062903e-06 8755808.322866883 743.6596774402682 42371 14921 260930 ETH_20200403 15522802609.007648 2289183.253513795 141.4537053523866 0.02074981747465959 13645052823.766476 2001590.2363243804 452633 456549 20344 REP_20191213 110917461.49673694 15390.128053888237 10.069420577568597 0.0013988645324469011 8490573.938709667 1179.5279233283204 127634 10103 289721 NULS_20200612 32013099.740847822 3450.2584112338595 0.3347981769563027 3.600128860922414e-05 20979801.750658855 2255.985694594615 24983 5182 769732 XVS_20210704 197395207.21678948 5694.002218769131 19.219327890246078 0.0005538890643703925 17061099.08361676 491.6902538174062 117504 None 10936 AMB_20210704 4247392.588134592 122.58598475432126 0.02915225264007293 8.402117733608797e-07 322855.05666700064 9.305168387839181 571 59 581251 TORN_20210707 35396844.12812345 1036.3208576654088 39.02648920509516 0.0011427362360454212 3267557.424220739 95.67748337272384 None None 103371 DCR_20190220 162299712.116943 41459.55395452362 17.395860343976686 0.004443372475933459 3604022.366063315 920.5646324678138 39777 9346 245960 DCR_20190321 180695445.35499254 44710.60508161533 19.027454044199754 0.004708082053797568 1946307.7833033334 481.58711745937836 40139 9389 241098 CTXC_20201231 794124.0923745076 27.500190249003733 0.07940505987879777 2.7538920851072153e-06 48562910.865206316 1684.2379574499694 16674 20068 678005 AE_20200223 68310796.08497837 7080.582993632833 0.19656066623169632 2.036275784888782e-05 12042268.301974034 1247.5221929467234 25425 6343 480371 AST_20200129 3278528.067661891 350.7966602525576 0.01886140604754553 2.0171770641537214e-06 2942397.5814328264 314.6815725151124 31813 3497 397581 UTK_20210707 100386201.68131766 2939.027961012495 0.22306002635953825 6.531121805008385e-06 11945675.40145967 349.7653181671894 77475 3983 145803 DGD_20190325 37191626.031520166 9313.627692322358 18.572776477629162 0.004654395857120137 784380.5457586087 196.56821730353005 16278 3304 547619 ARK_20190104 56904502.967349164 15090.502645282773 0.4110784537087968 0.0001090025814191813 202461.57769491844 53.68521363218797 62947 21813 157575 RDN_20200806 19334436.438931614 1650.4717088408054 0.29011492118559884 2.4756368191904077e-05 1949873.0241373533 166.388458462377 25847 4354 903633 XEM_20191020 362933589.03145593 45681.76457355052 0.04033092236727194 5.075779590305055e-06 51719945.56597004 6509.125720577871 215365 18282 149235 BQX_20190901 11439930.167360019 1191.7427359239302 0.08135794558017044 8.475834283598119e-06 316466.3656550346 32.96932404692392 60399 5757 423715 POND_20210421 127274822.3192805 2252.8303262531726 0.16609863146850884 2.945850584489255e-06 27124515.452355128 481.06820021848034 15402 430 75680 NXS_20191118 15485708.984824108 1820.2480771751857 0.2591051807658451 3.044860205426477e-05 55909.35052707288 6.570156414007309 22196 3540 295077 HOT_20190616 335001625.4273173 37962.920690932355 0.0018817638522185794 2.1319903415226952e-07 29322455.27518018 3322.1592264465385 22561 6402 301392 WIN_20210813 545977107.5986229 12280.364039612366 0.0007127843727221453 1.6032883680634907e-08 284519990.84576803 6399.797880843442 None 13357 102043 QTUM_20200306 210163994.8368237 23213.100445304026 2.186456990904422 0.00024136305483681694 306767235.3582513 33864.04459722986 179348 15181 105986 SYS_20201018 26363845.684870124 2320.9029071095783 0.044131949615360544 3.883599894906325e-06 335032.42045037023 29.48276439612353 61059 4491 266377 NEO_20200430 646612039.0414554 74063.43529574762 9.207302462548174 0.001050180930197836 677348551.0701216 77258.08230200245 320958 99310 240659 FTM_20211028 8074669955.315542 137959.6581493686 3.1614956320928376 5.402602159141045e-05 2112384253.5986714 36098.01517224618 207931 18005 28433 PIVX_20190623 43279502.01679901 4033.9204267705636 0.7173659653372827 6.687784181977557e-05 2464261.4701396194 229.73558374083055 63564 8616 321690 ARK_20210610 196801576.84999692 5243.01949125852 1.2417585792644585 3.315453891183282e-05 13561071.014407314 362.0760622403893 72664 23296 91159 TRX_20210509 10317213557.183372 175930.85579092233 0.14407513478225498 2.452655925032325e-06 3940836121.2205987 67086.62863235135 886632 105153 20833 AXS_20210602 260014688.8143617 7086.665863949757 4.694681912275987 0.00012801075459519678 31641343.289201904 862.7703232172223 78373 None 11122 RUNE_20210724 1034902278.1085567 30955.770657700832 3.8352173050293814 0.00011465887810033634 257593849.12039182 7701.10775912479 2821 6117 63469 NCASH_20200223 2409126.6746033714 249.7119392443288 0.0008324291051956294 8.623572874689214e-08 708711.5417652882 73.4191727487714 58125 58388 791025 OXT_20201018 0.0 0.0 0.24561427640321493 2.1611684843635256e-05 3006550.4042887487 264.5474064273167 None 1699 92225 ADX_20190807 8469405.859424708 740.8712311124023 0.09122107709906721 7.966012842943124e-06 209700.06335435752 18.312362131315815 53980 3860 708738 ADA_20200701 2585686956.799616 282883.6154637715 0.08310769731892971 9.092286221510138e-06 267609405.34645832 29277.448268608336 157636 81696 46523 ETC_20210506 11962452742.060781 208893.4057589038 94.27017127915406 0.0016456709920625214 22573354994.280193 394062.2468756579 366821 44947 131671 CHESS_20211104 131911707.02688219 2091.907900835772 3.2775301427647388 5.200402432252034e-05 20787107.912246816 329.82557547173525 None None 45262 CTXC_20210428 3385262.703271803 61.44434914978409 0.3204899618568871 5.819059400225984e-06 2864703.5348771713 52.01373527240597 19497 20506 377528 GXS_20210104 20627411.63913661 617.9725143250107 0.2924135887244352 8.883171054418545e-06 9672829.581594476 293.8488601995782 None None 482061 SYS_20190818 14426254.410454517 1411.352193355203 0.025709762287686684 2.5152425822375506e-06 1310153.1774510832 128.17516647196135 60801 4574 680853 WING_20210729 30742775.669609793 768.8185800580122 17.039112230086467 0.0004258510418922273 4478270.443606279 111.9234446333137 11344 None 411490 YOYO_20210731 1843020.1735642187 44.174376511403686 0.010537938009846507 2.5257826690011085e-07 132544.1217482813 3.176880005148731 10102 None 1425689 WTC_20210221 31724622.76562449 565.5868639797428 1.1020305552364864 1.9600974738318277e-05 22322115.660463195 397.02640102630056 55757 19126 511678 BNT_20190523 45191712.200905144 5895.471743052356 0.6935171891978694 9.055717688236503e-05 3333572.567369508 435.28686142968877 808 5139 148813 STEEM_20210203 74032022.47164406 2079.0271840162054 0.19691477900320611 5.544595921212333e-06 4119265.3709076657 115.98754592997805 12166 3855 197343 ONT_20210318 1015815672.3199881 17260.65686266852 1.2627689329047764 2.142382301399736e-05 573307663.9379034 9726.594949180715 None 17411 190882 NEBL_20190625 17813477.78918832 1612.9404879280514 1.1656238314861698 0.00010554266234519133 1060424.848063618 96.01730734943126 40253 6149 698724 ATM_20210408 0.0 0.0 10.851975383310577 0.0001930110390766071 18266231.38491788 324.8794965973461 None None 144414 DNT_20210828 138998978.12531427 2833.9264646811953 0.18441533263932844 3.7601194561594943e-06 9138139.687318593 186.32125832286764 70823 10263 337612 BRD_20210821 17339095.807759527 352.6242019725819 0.2052615555056384 4.173937127793799e-06 1493508.0465658086 30.3700742735947 822 None None ATOM_20201031 1105097495.6446996 81368.11823464089 4.62669555310133 0.0003416174004940631 210722142.40700665 15558.912335904202 None 9667 80151 BCD_20190916 112570009.15579332 10926.343656731626 0.5983526864994769 5.8070387757238154e-05 1927055.2705121338 187.02154985371976 21364 None 2265228 XVG_20190708 121692288.0208983 10639.925886899382 0.007697469173971975 6.730130796266202e-07 2614284.9876524345 228.5748667251514 304268 53013 387398 STPT_20210513 81036572.66474219 1571.140274423346 0.06986185741414082 1.3860436674785171e-06 29361311.82911323 582.5218772578346 29926 None 885940 DGD_20200321 49512982.36335032 8009.130581066309 24.823328709665773 0.0040034449554628105 1269044.3523367983 204.66832913681907 17611 4713 334920 QSP_20190430 0.0 0.0 0.021172397513627813 4.066252444643016e-06 221561.03473414638 42.551775184906255 57269 8575 831378 MATIC_20210724 6022904906.727086 180155.8146403341 0.9428418592847553 2.819725305162367e-05 937587925.019327 28040.125414003443 545737 None 5822 HNT_20210418 1202184307.3271315 19950.393109845078 15.387550452536223 0.0002559890821855724 15037388.452148248 250.16374634852193 None 14548 15835 KAVA_20200721 71186068.5579289 7769.48839320237 2.614526787441197 0.0002853559675064515 66206594.69487747 7225.952694466003 27077 None 194309 FXS_20210819 119687578.53619833 2657.0948686711504 3.739617499135913 8.304748188951812e-05 3393048.217525215 75.35105140038972 None None 93970 OMG_20190625 330632979.08860296 29952.399227666167 2.3617303763174635 0.00021383323452757566 190496084.6236703 17247.690231021817 289308 39927 None TFUEL_20190730 0.0 0.0 0.007434156689627071 7.811516139552932e-07 1523015.4328584615 160.0324035564399 70337 4018 240889 CELR_20210429 354649833.67602986 6479.05469622576 0.06287000500183934 1.1481682034593911e-06 91969598.07618363 1679.6017145684125 48157 None 141780 SC_20191108 88713346.66825591 9622.491622124564 0.0021045623772229325 2.2828105248347442e-07 10254866.65346975 1112.3413485233957 108299 30452 223665 NAS_20211011 17831525.614632323 325.83729945199656 0.390838036475417 7.140723366784168e-06 2471144.4067286127 45.148519235626885 25722 5126 469610 GVT_20210125 11365097.203405466 352.9789510844668 2.562023456884603 7.940763714283205e-05 1746279.1924070586 54.124369583 21260 5443 340322 CLV_20211021 165732684.63212487 2500.6610864310264 1.2868157371425077 1.94205115791508e-05 12137953.564021334 183.184943215507 75486 None 90765 ELF_20201208 64735362.65622986 3370.394434184586 0.13861787786466365 7.22036173530939e-06 18253043.834943287 950.7689865763426 None 33328 394595 AKRO_20210422 129258091.94340812 2385.539218178611 0.04767241638796876 8.805252594967746e-07 41063769.393608734 758.4613690852949 36950 None 141631 BNT_20190708 49331708.1419172 4318.49628020224 0.7173858848277457 6.276076870181523e-05 1731010.2814125144 151.43807285569991 None 5130 145805 HBAR_20200914 195761558.29181972 18964.715304341968 0.037092694403394036 3.5917431996820245e-06 2602889.2335268953 252.0418064639258 42216 6696 159106 SNT_20200531 107027337.73201543 11087.3151892072 0.02807873366626563 2.907293118906369e-06 20316629.501315016 2103.599038709743 110407 5696 169262 JUV_20201231 0.0 0.0 13.674947064373164 0.000474268623968294 5757669.045751334 199.68499788254903 None None 139592 ANKR_20200901 78539646.59925549 6724.875125536303 0.013478305149194654 1.154674481168654e-06 31801446.41710714 2724.40178758529 25922 None 5082 NEAR_20210624 877872957.2694263 26040.352362013484 2.1520837490160742 6.388122140502637e-05 60916697.16002941 1808.2163486072188 None None None POWR_20210813 128773364.14180572 2896.7142847236764 0.2983045826868296 6.709149085750332e-06 18020197.31343129 405.2910928873436 91961 14052 171172 VIA_20200207 5143369.964476218 528.1003234826998 0.22204178679171005 2.2798348211632113e-05 270806.3514172011 27.805295510986536 39757 2183 2686393 CFX_20210704 201166478.5306027 5802.787166140466 0.236575805548284 6.822554864909396e-06 1548307.6819608659 44.651286649778534 36669 None 151953 HOT_20190930 112155872.8377265 13914.520417985395 0.0006326551498401563 7.851719115229488e-08 6042334.265494575 749.898447281691 24385 6669 466446 STEEM_20200629 72103574.7081059 7908.359397052243 0.2000840934426413 2.1931552907949013e-05 1905471.3075340695 208.8619043959248 11509 3865 207345 EVX_20191118 7551024.155920575 887.7149308976338 0.3466402505953367 4.0735237385725527e-05 3008427.9310596827 353.5337449101531 18091 2895 589335 MANA_20210430 1920746106.3482494 35840.86325150738 1.4569327141872832 2.7184483418573583e-05 474126514.5958757 8846.588623365109 123620 30061 13153 LTO_20201226 27637046.9983351 1119.1303823181545 0.10178341071512738 4.126039831510796e-06 2211244.9570769263 89.63822990430391 None 723 1084652 CLV_20210826 205332767.37312356 4189.082590470197 1.5903543715293518 3.245514585393595e-05 57985844.30789534 1183.3457172608726 None None 93229 NEO_20190708 1212158857.831847 106112.35077248614 17.22131053816876 0.00150661270354889 423294516.50807136 37032.07688521598 323847 98049 188893 ELF_20190603 80684125.33103748 9229.693170548528 0.2167492984065405 2.4787002606398043e-05 30299642.500175994 3465.0046073788276 88661 33026 1112151 NAS_20201111 13590288.856937883 888.5108846984994 0.3020606031778163 1.977328456778335e-05 2246147.2236272795 147.03575298024998 23389 4870 985620 TNT_20190803 16059777.946811762 1526.2636297459699 0.03748159453882226 3.5611298348309623e-06 791820.7591155934 75.23096505951486 17582 2544 649538 SC_20190524 134390765.73717484 17059.56311166265 0.0032986821295240823 4.1945798542714174e-07 2618568.3132477878 332.97521441895776 109835 30906 231960 ETC_20190625 1036131717.5368718 93844.85265292818 9.297322389247883 0.0008417880969285063 978180698.8367469 88565.37769178004 227921 24681 633324 YFI_20210420 1703687962.5142324 30436.21716893827 47014.204014332005 0.8406798439927614 985167506.9938195 17616.17543995484 None 4624 20046 SC_20210805 767428199.112293 19278.237725975054 0.01588738811896406 3.995327704354528e-07 67626492.48164286 1700.657130908241 139568 47718 83896 XMR_20200801 1490725451.1174695 131531.03971206018 84.58013533108739 0.007461730275427759 96796333.10303624 8539.453459586111 320804 176173 88499 NEBL_20200430 7511207.931588456 860.3394756750612 0.461141961433418 5.259765235054237e-05 232307.46800964905 26.49688916364311 39368 5980 1629881 NMR_20210201 139717651.06002954 4226.957779953995 26.84191860489198 0.0008116178604624311 13714059.993316138 414.67140236391685 22767 2011 2472794 NMR_20210429 372137842.19565785 6798.5409978328735 65.69110014775875 0.001199713999372404 18099130.180546593 330.54370843576396 27736 3165 915213 HIVE_20201111 44619156.86881071 2918.703882798712 0.11951572061854433 7.823656343303384e-06 2379740.96287601 155.78097494845335 9322 96 141285 CMT_20210112 7668508.248269904 216.60787720006311 0.009663498664582965 2.7147115077761407e-07 2904385.832587934 81.59125298630873 280609 1628 1272511 WAN_20210430 307432586.29895455 5736.650590195331 1.7526311502574927 3.27018344629784e-05 18132605.95431971 338.33101631992673 117868 16344 185285 HOT_20200310 95722166.56933631 12090.347055460923 0.0005407041472701609 6.822611834449078e-08 9577303.51132516 1208.4653799747855 25141 6920 537857 CVC_20191022 23508708.57241679 2860.5508786973132 0.035084095652202336 4.269049502955772e-06 2694233.6677053063 327.83563851793457 87768 8143 107901 STORJ_20210128 53383199.3537658 1764.6829277976935 0.3723633934742626 1.2288350273133776e-05 35445907.26898511 1169.7490459690257 83487 8634 104172 XLM_20191102 1371467868.9211621 148471.8224539657 0.06832832238550418 7.397060317408774e-06 410451803.4928136 44434.52790624449 277581 104679 59559 DNT_20190104 6703110.326556282 1777.4831554017294 0.011543002722441287 3.0614162474628516e-06 348303.62397354323 92.376515809855 60129 6571 514301 PSG_20211221 47663939.78802418 1010.5617627799417 15.259745575189454 0.00032378241485694193 13171962.783017306 279.4836845265134 None None 16830 RDN_20200109 5556087.991119154 690.6000204006438 0.10976818862691619 1.3679497624869363e-05 2065234.2505486894 257.37299101474065 25268 4336 2088256 MATIC_20210430 5278592965.673436 98497.83270041866 0.8831175732119276 1.6477833733744117e-05 3502606382.8084974 65354.112930576885 4494 16246 22143 GAS_20191113 21303903.94716958 2421.5435087284477 1.5328158068546032 0.00017417421972325796 3175133.8858132684 360.79120831434636 323679 98631 158708 WAN_20210125 65436622.867424436 2032.2369484158685 0.39853995667265085 1.2363464651504694e-05 2899961.164392465 89.96229047154665 104038 15842 602909 ALGO_20200403 109653855.6364221 16183.565359975244 0.15752763223523994 2.3107698790595037e-05 72372331.54044756 10616.283722924047 16337 828 317295 NULS_20210809 45178986.98693331 1026.974022906205 0.47996376842075167 1.0913199952234602e-05 10258460.187279155 233.25224650639498 63010 5370 385574 FTM_20210722 450081389.9426073 13985.95522646165 0.1777789517599664 5.50461197427242e-06 34540229.10906845 1069.4773305031154 102987 9254 42722 DOT_20210310 37395351100.78027 684173.8105806677 38.39566561239021 0.0007012473999607477 2208593351.545486 40337.11411535161 218019 18142 17587 MANA_20190225 45248933.20606915 12013.054746632211 0.03525463871483827 9.410989790315138e-06 2266805.799893241 605.1086329936963 42427 6018 109319 ONT_20190228 550869667.7963766 144314.60924017656 0.8984023067597583 0.0002356370883586586 49279215.1589028 12925.179164470794 67822 11142 278128 FOR_20210806 21597077.874526147 527.1225455709927 0.03827073515918551 9.34518745616646e-07 38821611.405398674 947.9703863144226 29404 None 175113 GVT_20200501 3787958.9233537037 437.76551492001755 0.8504878659994651 9.866787260329593e-05 184564.64744959472 21.411947012587117 20443 5559 208818 WING_20211111 42864185.19694604 659.8926521033297 20.568289589121225 0.0003166481085277118 5572489.946367227 85.78829044881516 None None 296505 WING_20210702 23890529.761397775 710.5677481892578 13.883437788105823 0.0004127950121248751 1984517.7167562016 59.005487506288055 None None 421675 MTH_20210603 9230192.70156694 245.27773367145068 0.026558350474765745 7.057460472517304e-07 7191275.486610163 191.09674202829615 21728 2054 450955 PIVX_20211002 48327369.090620585 1003.6090025658209 0.7186498893878329 1.4922762736830696e-05 510456.92293542967 10.59963643051116 67924 10064 287225 YOYO_20191213 1979943.827646873 274.72310162712694 0.011313812396443424 1.5717379928889925e-06 670946.150278206 93.20921353675347 7518 None 1285347 ALPHA_20210710 213175416.66462034 6285.276114336591 0.7461965991385503 2.1956455031174982e-05 51932699.00472849 1528.0932285958447 69895 None 51351 BQX_20190627 12263985.026445484 944.8627779280602 0.1010224907743674 7.755621282682938e-06 1212992.6634791582 93.12294365844527 60736 5768 449913 STEEM_20190708 110958974.32118475 9713.345349457622 0.3541222063355732 3.098863933387124e-05 1179244.8014906645 103.1937313897444 5872 3752 330897 POLY_20201106 29179991.365346655 1877.8929626817376 0.040300820250348306 2.586598103259488e-06 1547585.62817881 99.32755774231063 35354 4998 334302 FET_20200306 12489207.59363486 1379.4619319945616 0.03673906978936734 4.055648869919617e-06 5417417.543592879 598.032107631474 16571 357 523257 GVT_20210804 15310604.425485676 398.4825611793223 3.4509427453466346 8.981621270025775e-05 362195.9040903532 9.4267180772 25838 5694 545801 ADA_20200610 2591936050.9222493 265163.37352739857 0.08312707196318139 8.512517156506515e-06 278434928.6379766 28512.758251021318 156719 80409 59755 ETC_20190618 977721335.2908698 104887.72358740043 8.787441710126851 0.0009431279825966937 810403005.7172191 86977.95980729691 227879 24656 633324 WTC_20201224 8525575.5686978 364.5865630612303 0.2797735102837748 1.199946913018886e-05 1893553.4699322178 81.21439512185071 54772 19201 825583 ENJ_20210128 340887566.4732426 11268.685206882363 0.36679733744027443 1.2062877082108689e-05 98323534.6292434 3233.569580379375 75800 16495 72441 MTH_20190324 5853210.013488146 1462.4175490440873 0.019450719822197822 4.861105960847231e-06 251626.44518420476 62.886249134893134 18837 2013 1148279 ALGO_20210825 3612485018.4867163 75174.32386672184 1.0409907537571792 2.1700545841903197e-05 233993838.37725845 4877.8473757827705 122382 37834 238182 WPR_20200501 3209380.78042137 370.87839804392155 0.005267118019116485 6.110555487890248e-07 239196.6839871256 27.749987843785874 33232 None 1386470 DNT_20200330 2602785.997639404 440.164014100959 0.0034569944787993623 5.856647251502003e-07 117330.3511804432 19.87745375275704 58718 6084 656002 VITE_20200314 3604205.2316787005 653.176235460352 0.007440189549073212 1.3483569021155902e-06 1293125.8472076978 234.3482178627775 None None 441540 XLM_20190318 2084718019.4220395 523504.0894410605 0.10846175174778615 2.723772275135933e-05 130980443.26538882 32892.78424903948 265585 99519 74655 ONE_20200414 11201593.306522662 1634.67651386655 0.0021260376605050763 3.104875492486715e-07 42686449.97991689 6233.949419899635 71263 None 330702 WING_20210909 51420232.52781077 1109.9044481541773 26.619491194466015 0.0005749731894755296 91331084.04214326 1972.7245838900851 None None 426927 RLC_20210210 119462996.77987003 2567.8162953667743 1.6851404427421672 3.616604767425395e-05 15227082.786800258 326.79970644529203 34285 3974 456276 TRX_20210624 4048273503.481018 120075.54177451058 0.05695182053845154 1.6905252218458052e-06 1658719741.2670715 49236.48677204821 1055400 113120 19409 PAXG_20201031 70736661.10344963 5207.660940427766 1888.7987415740226 0.13911012004390494 1768781.2100909052 130.2708229581411 8370 None 79751 ARPA_20211207 111640459.12617071 2211.825814105381 0.11397174197326693 2.2575748516062275e-06 79775965.40435527 1580.2181325062575 None None 205403 RCN_20190807 8795154.1775022 769.3664480677104 0.017395593486805434 1.516125542294504e-06 1452085.6161666552 126.55757298183538 None 1120 1860009 CND_20190923 16156399.844138954 1607.1891720599626 0.009251296527526263 9.20290643335991e-07 1472674.4799742878 146.49714670452022 35764 6094 303660 BNB_20210218 24144663679.111786 462814.9403345935 163.62267032634747 0.0031373676075973646 5591312738.079581 107210.10379191134 1767160 157381 283 NAV_20210821 38652463.04018561 786.6084098793802 0.541791470967671 1.1016428848527918e-05 402401.17200340785 8.182158851674334 53006 14141 1077021 OG_20210722 4958278.711804255 154.07494202871854 3.8656625082695393 0.00011984496100205758 2379855.5732242744 73.78132409475866 694011 None 316582 ARPA_20200321 0.0 0.0 0.006466684192463103 1.042930805601699e-06 3170212.053555727 511.28394592031964 14064 None 1589260 SKY_20190523 22159112.19500907 2891.448907095906 1.4772741463339376 0.00019276326047306045 1104673.6769192454 144.14419980892478 15800 3745 440893 GTO_20190224 18526911.17675912 4503.109183899613 0.03134032337946123 7.616536728933479e-06 15476962.593727201 3761.3158173315333 16250 None 751692 VIB_20190312 4414280.739382402 1141.7434573698076 0.026177904462230846 6.770158758793481e-06 1514942.485877252 391.7961101366251 32641 1124 2369421 STEEM_20190316 141931689.71290684 36166.33485975412 0.46702152047209977 0.00011900258204867628 3190624.6378595587 813.0087236014068 4564 3690 256324 AUDIO_20210304 75934634.02666697 1493.520043526455 0.49811204478269006 9.830836679638336e-06 8801737.398948738 173.71280974319606 28086 2882 66000 WABI_20201030 4260393.540007711 316.28509789292735 0.07206802282180517 5.3595080452734565e-06 916524.232648203 68.159480532882 41274 7604 1574710 LAZIO_20211111 0.0 0.0 8.69538243050869 0.00013389773213283386 15466295.584088203 238.16110674321695 None None 72795 REQ_20200323 5378458.922804732 921.8743779971661 0.00690056693896008 1.183047385458977e-06 64743.008809946856 11.099674559623635 39602 28213 686735 BLZ_20210821 76198365.22739577 1550.8252754283333 0.2505915142916238 5.0991328408301394e-06 12941736.640207533 263.3434516168801 65846 None 427570 GRS_20210202 28167063.951950442 843.2932136424818 0.36652243921389066 1.0973308619031989e-05 4779129.943263057 143.0822841579923 37562 106758 3797410 SXP_20210429 357096397.14852864 6523.643433056946 4.13301942543226 7.548621973461074e-05 631675821.974631 11537.042290487383 181326 None 66436 SNM_20190903 4207550.233381733 407.25625631465243 0.009615027253704706 9.306555564423776e-07 139472.8319924744 13.499823000141538 31000 9905 18762051 ZRX_20211225 723456199.2539577 14233.198948491243 0.8531437225090164 1.6777405978003367e-05 64670457.59880303 1271.7699178838 249017 20874 59550 EOS_20210418 7511587658.735972 124655.70025949828 7.808266265254145 0.0001298992273571082 6927127711.577035 115240.50371360923 211754 82243 58571 CELR_20190520 38672892.2135828 4727.4257534536 0.016754500302524507 2.050478343840088e-06 46649111.67464762 5709.092573404301 13535 None 371735 GXS_20200407 28122160.94766823 3866.5671557896476 0.4335804259188927 5.944690964799701e-05 14896672.079478325 2042.437956666993 0 None 493162 XMR_20190915 1306678970.364241 126226.1380519206 75.9258028477576 0.007334733750896636 83594188.87318988 8075.53026125324 320338 161037 87781 RLC_20190524 36901000.14450857 4690.958453257855 0.5274231539657586 6.704750800386587e-05 2248634.974243127 285.8527736215517 24929 3313 988035 TRX_20190510 1546126722.8117478 250417.5080325322 0.02342778412251416 3.7948514171910213e-06 553818457.9409964 89707.96166609017 418012 70559 110041 POA_20190726 4645063.664847527 468.92261553212234 0.0210830987099391 2.129938871950917e-06 114878.25867482815 11.605678655680682 17770 None 582366 GTO_20190915 12135115.545171503 1172.3003013701903 0.018296585137366966 1.7681083404547803e-06 4791064.7272785725 462.9892103012955 17340 None 900303 POND_20210418 163086258.03015825 2705.352234327761 0.2159972439869859 3.5838317216977913e-06 45707418.42763944 758.378639718931 15216 422 75680 STPT_20211221 140761771.2556834 2983.588679708125 0.10670072497007649 2.26321239575413e-06 5637903.449487596 119.58468863752975 34514 None 430598 MATIC_20210523 7396022257.381994 196758.5593282965 1.1999327819551722 3.1951495062833304e-05 3147802480.8698926 83818.85797170113 353682 32488 14850 ONT_20211230 575939453.4943883 12418.003922289256 0.6599732109383027 1.418200756799097e-05 50538094.97016705 1086.0011186207962 182122 21048 97967 SUPER_20220115 313473394.85184467 7272.939199512302 1.0910102285667784 2.529623636432139e-05 26162450.310974732 606.6043283623737 239096 None None ATOM_20190813 817807319.0095735 71851.7977847504 3.345239912203774 0.0002939319608387522 141423759.2033675 12426.302430562768 27862 6516 108331 TNT_20191113 28847701.572093382 3280.113327217936 0.06721301066966587 7.636086560744327e-06 528352.4823358962 60.026254582312376 17743 2565 472199 RAD_20211104 245212113.95618325 3888.9235727545924 11.613901474021388 0.00018415642410927183 47812202.57287336 758.1366411884777 22398 None 204559 EOS_20210804 3886183558.0318575 101148.32841675328 4.039224639942084 0.00010514559997361088 1003991418.7078114 26135.035680982386 None 91884 58453 PAXG_20201224 71425206.65570761 3054.9670891916644 1889.5452709316485 0.08104248370634107 1894677.2879646497 81.26259561007578 13713 None 82066 SAND_20210616 202701386.92628053 5019.206353006689 0.2888677411532113 7.157122447918663e-06 36023393.91924416 892.5324795366922 127583 None 23111 XMR_20200422 965982674.2092582 141055.02335960825 55.10108390626169 0.008049290236713219 132052985.18200888 19290.597008266614 319546 169393 82357 AKRO_20210203 46674743.30980859 1310.4425570213334 0.018241096506693873 5.134617434949385e-07 10803954.640354652 304.1164430132264 27327 None 187936 STORJ_20190316 35540034.00928791 9056.701926404072 0.26276326689836005 6.695517413596014e-05 3304670.6731495713 842.0689961520308 83264 7630 210414 RUNE_20210206 965492248.1111068 25478.18860018634 3.962738417001221 0.00010425116972159775 85113126.45897622 2239.1442629526987 33276 2312 162982 IOST_20210114 226593736.18190983 6093.607336970357 0.012690605365551635 3.395722906622487e-07 348111447.8720551 9314.685813219077 196813 52152 596701 BCPT_20201130 2174572.514179294 119.64342701 0.018522891062959266 1.02e-06 60687.69568243146 3.3418892 10374 3202 2220119 ATA_20210916 218813378.15057316 4540.317300505105 1.2700870276082818 2.6358575229925366e-05 51023757.312839344 1058.9144809836816 None None 180234 COS_20200806 24281222.87830015 2072.750945871738 0.008024936932168873 6.850375467985284e-07 2073374.5704289128 176.99072794298016 12615 None 236084 PHA_20210401 166279456.17251915 2826.9325283121784 0.9334020748850991 1.5884550956805815e-05 35328256.665274866 601.2130338190572 37676 None 127612 TCT_20210110 5835222.320080305 144.22320416020926 0.01003567517907999 2.4894760817631485e-07 1012513.9818669612 25.116689164700947 None None 2545563 SNM_20201106 3538717.5946809435 227.55295589133812 0.008086621484890708 5.200004162036536e-07 154422.68331751984 9.929963922069314 None 9536 None NAV_20190318 13035358.9579588 3273.6273165733273 0.20183678281981565 5.0688163468241866e-05 2886674.130818897 724.9432347181072 48075 11392 772440 YFI_20210429 1735916631.3087232 31713.24989993181 48154.87716006788 0.8794506430406152 472633235.4939718 8631.682342286636 108338 4787 20046 SYS_20190725 17672109.54218325 1797.7579611080268 0.03162348323972394 3.2191546052849376e-06 207127.54599904278 21.084824480897602 61126 4595 748817 NANO_20191220 89819267.71186163 12574.142049983142 0.6745146106101804 9.439623856822938e-05 1751087.994635405 245.05936194033754 97797 48476 261778 CND_20211204 31782258.148503985 592.3842800051847 0.01647376345720052 3.07051766396555e-07 4332249.12378086 80.7480785664318 37385 6354 176268 DCR_20191011 176744328.85844094 20641.73510077188 16.816425126933087 0.0019639679250480187 10181705.989716394 1189.1079010631065 40539 9633 133666 ARDR_20200526 49174866.00738171 5533.196737072151 0.04913558145867091 5.529560967891136e-06 6110130.035927229 687.6144649640698 63564 6313 1998735 ADX_20210105 37988876.21564309 1214.23380342065 0.336548996244097 1.0757074397968062e-05 3329120.025094284 106.40825612128873 52887 3744 12195 LEND_20191127 15548304.931559399 2168.682853571323 0.013788737695024509 1.924688701338916e-06 916810.9581240785 127.97224310111032 41556 5788 519935 CELR_20200907 26221895.736780267 2546.4364553166674 0.00659011320692046 6.406682571355659e-07 6387621.797804582 620.9827351893024 24093 None 306281 DEGO_20210620 31249830.20313958 878.3516910731906 5.769946666872082 0.0001620606971093235 4731075.944111647 132.88189819534813 None None 129325 RLC_20191113 50670109.972639695 5764.867983188292 0.7240434654614539 8.227322883709972e-05 1300560.693419897 147.78301669786802 25552 3417 573823 XTZ_20200711 1821449401.1942198 196188.0364808735 2.540265043694283 0.00027359239012621185 98896632.33511268 10651.394854706743 67487 27152 72364 OMG_20211230 828851487.0325308 17830.129231578416 5.928593537518469 0.00012739813832305595 309326494.90996146 6647.043575535823 None 6538 101048 MTL_20211111 203310739.52730408 3136.5211915054806 3.1618504351016794 4.868715814150815e-05 14611650.961916488 224.99475408249992 62857 4440 175688 VIA_20200129 4376390.393867938 468.3648940115211 0.1889334773951995 2.021981591025789e-05 114884.93563643741 12.295080159730407 39820 2184 2883050 STX_20200502 69590764.9820658 7853.043772654359 0.11025317807060543 1.247784675960164e-05 496626.12658983003 56.20540661815678 35943 None 78814 SRM_20210422 300458629.93338805 5545.15260414119 5.976452119642995 0.00011049489869735204 289324752.63612574 5349.145043443404 59721 None 59775 KNC_20210617 190405349.60672235 4974.969846422135 2.0616829319711676 5.3868289103352044e-05 116308052.35856836 3038.9327535970438 166326 11108 120272 BTCB_20190813 0.0 0.0 11380.975085355312 0.9999977313709925 63169.53766753572 5.550437803925482 None None 55533 MTL_20191026 16627089.363690458 1922.3796631892646 0.3114375681394197 3.597203435878249e-05 6457100.343541199 745.8157241710443 34590 None 240997 LINA_20210703 65097464.33575136 1924.923166339526 0.02631500371445556 7.771400892707183e-07 13524790.544243105 399.4168895042586 None None 80589 MANA_20211225 4669740358.644221 91871.96630690624 3.523907662586453 6.92990265583124e-05 1038872770.423827 20429.84056383235 418431 74027 4163 NULS_20190507 27710494.99866122 4843.948325883134 0.6929591965542423 0.0001211374906454296 7173728.916243719 1254.052942518815 20896 5322 670223 WING_20210125 14159192.36911341 439.2449776200861 15.817500258515288 0.0004902842033629903 4403849.334252039 136.50309639868874 None None 403766 CVC_20200414 12599979.263719425 1838.7464723981864 0.0188008514112754 2.7456852655604157e-06 6192051.958844257 904.290207665114 86159 8051 115940 DASH_20190716 1087630817.2856162 99292.37272130708 121.63680049063636 0.011123019775230242 447880981.3405435 40956.264817109295 320815 28720 102503 ORN_20210731 174685992.14153197 4185.0973852982925 6.026411355567148 0.00014431302625422706 6353701.142371261 152.15055622173745 None None 91473 MBL_20201018 5576329.792253866 490.7422814908428 0.001579066401049446 1.3894505158310826e-07 1460509.031543963 128.5129634767759 None None 597002 MDA_20190806 14266512.919000685 1207.946997866198 0.7277892609271308 6.161562472131697e-05 336680.53470553004 28.503830148526088 None 364 2972990 WAVES_20200331 82793442.25476155 12888.65643999901 0.8257156284371535 0.00012879552511005246 46829751.4326993 7304.527392758198 140560 56869 67512 ZEC_20210105 641711870.3435407 20510.958013192343 59.098107503928645 0.001888945580862137 557341034.2445943 17814.223299781195 71937 16548 167554 LSK_20190723 202187346.57860038 19536.767147497732 1.509920466302949 0.00014599813172348235 9853241.457090514 952.7355090946545 182735 30637 196756 XEM_20200301 435823633.42519546 50956.191760117545 0.048424848163735594 5.6617990850865936e-06 25577895.001193494 2990.5494391337866 212605 18040 213172 SKY_20190704 26356049.1683583 2196.211429144341 1.7570699445572195 0.00014641409527628945 1154704.978038794 96.21989448643262 16272 3779 456375 NEO_20191012 508731783.73730505 61555.2686497948 7.218398482433442 0.0008730210265399187 237054858.08171687 28670.331244861896 323205 98299 164596 AR_20210902 2654049389.7664833 54560.4623973731 60.66717792219818 0.0012468786852467785 212360324.44040847 4364.5933634231205 29090 None 72192 OAX_20220115 10709887.665934822 248.32017403605417 0.18575872558361364 4.307014275449197e-06 128358.30714077836 2.9761243219715157 14932 None 1034946 TNB_20190325 8478738.339703642 2123.122004305294 0.003286442697855999 8.235928136120494e-07 423873.1561089098 106.22393796249685 15209 1504 1478446 FUEL_20190225 4122955.097472743 1094.5848026439064 0.007675204740190172 2.0488445232061547e-06 4192301.5651758597 1119.1068371716592 1 1511 None BRD_20210422 26502093.826238472 489.0290083677096 0.3332965361929807 6.1512291789194825e-06 1104297.2882738838 20.380606949659114 720 None None QLC_20220115 6083881.444556177 141.05751283784315 0.02534950601898407 5.877396368243464e-07 249164.13039632386 5.776981823595255 36049 5846 940522 NEO_20210729 2427679835.852437 60711.7263551496 34.4610892877635 0.000860978363491211 351398061.9305316 8779.354760627397 407458 112444 108336 BTCB_20190914 0.0 0.0 10300.544874058598 0.9998906671089948 10403.97496118413 1.009930794119707 None None 70056 COMP_20210718 26367.676783967323 0.8274004212482677 2.845297687591199e-07 8.97074343e-12 87.28992786635713 0.002752104113138419 None None 3559162 IDEX_20210821 38848457.53420088 790.5970539438521 0.06573444431940464 1.3379129216325808e-06 1187064.7999135316 24.160687004555367 53548 1971 8868023 PPT_20200531 13774670.900761658 1421.3927781221087 0.3791822060067533 3.9196894669733835e-05 3189727.066498392 329.7290692182687 23695 None 2119951 XVG_20190130 93327898.47981393 27331.050054220894 0.006009293802409667 1.759311767523813e-06 1046912.8542103636 306.4995928882147 305013 53599 353255 SKY_20210104 10957548.676374322 328.6980685482231 0.5705322146159121 1.733207843246126e-05 550763.9046452855 16.731541091868205 17195 3816 758913 SNT_20210902 385760221.77202094 7930.242803901435 0.09947683928875214 2.044524812806228e-06 18498439.433478598 380.19421093746536 None 6067 150189 BCD_20190614 231591983.70338142 28166.67354546119 1.2201349070046812 0.00014830683282853594 6660636.8429598585 809.5973233201214 21282 None 3286107 NXS_20190811 14043689.878280263 1239.100565505846 0.23501760261139812 2.0752721319764532e-05 389592.6198634044 34.40213404623536 21936 3540 855550 ARDR_20190110 61019442.095704846 15339.924473989158 0.06119490570707601 1.538729752503939e-05 729690.7423281439 183.4788112464026 70545 6613 763839 XVG_20190530 168190662.7240685 19476.726399842737 0.010412418366769031 1.2040964026136664e-06 4201218.059391642 485.8306085792391 304480 53092 436140 XRP_20200314 6828007204.563598 1240212.824343661 0.15793320292960084 2.8532202506948856e-05 5002103249.521113 903679.6584162334 946671 210720 33270 POA_20210427 21491090.08665399 398.92262290306724 0.07488642909104491 1.3900593498231128e-06 558737.2983634619 10.371411951566978 19461 None 274673 DUSK_20191020 10808682.160191996 1360.4683851662774 0.059754780747724126 7.5171080419387e-06 937660.6843778692 117.95703344481072 19748 13329 197441 FUEL_20190906 2879902.220268724 272.3049673808767 0.0030621274084778665 2.8971232615197225e-07 140951.88156475272 13.33566244518887 1 1503 None QUICK_20210809 64259803.570635825 1460.7958978199104 404.0712485570093 0.009185869038975126 18761545.541200254 426.51166329127756 43118 1924 4564 NMR_20210804 238948239.60413846 6219.267477505585 37.944275999901635 0.000987898710514576 132528968.83464015 3450.4597588818624 29624 3557 685085 ETH_20210218 211713928319.03534 4060450.108787892 1845.5739221567521 0.035396163551907896 33582379213.069286 644074.6549446706 707316 668393 7379 AUDIO_20201229 25923840.948878672 955.0235660761003 0.1687924177066194 6.217061455359998e-06 6026080.822433911 221.9561477764693 None 2330 53020 RVN_20211202 1094483480.1163547 19148.705964523506 0.10744146608179757 1.878866596488861e-06 39964237.52088294 698.8686367604851 78739 58810 61120 ICP_20210703 6028666396.149927 178057.53552564012 44.1120485875006 0.0013023720177298634 325624799.3616151 9613.804857107347 237426 21235 23001 ACM_20210624 12595115.567927325 373.55355458523593 6.289527756273727 0.00018662460850395107 3622502.705657265 107.48790297863633 None None 39510 LEND_20190930 4871535.487559364 604.2998532091034 0.004271042353910835 5.299871583758729e-07 2315322.120892856 287.30480522001903 None 5812 862107 GTO_20200807 8047603.061651536 683.6204486313432 0.012152046449102331 1.03279179208608e-06 3424820.058800551 291.07245935208397 16600 None 1558707 AXS_20210826 4186099201.182587 85402.42022740339 72.76088559800071 0.0014845903080285747 1046093564.2959342 21344.165262434406 423963 None 935 AION_20191203 21962630.079402618 3003.9961755275253 0.060520744597021794 8.282254107017032e-06 1603811.406562146 219.4813315223778 1266 72558 312605 DIA_20210809 73790517.56397405 1677.349354843277 1.5178800022442325 3.4506321026107794e-05 84162577.09379132 1913.2875453191607 None 403 453696 BQX_20191020 6761921.0860661855 850.9221176064649 0.04802262245464114 6.0408954990165586e-06 197059.02192974454 24.788587081856708 59910 5731 349258 XMR_20211221 3438218406.0590167 72876.53048957788 189.66942993873366 0.004024420049961436 178303835.2428958 3783.2640176559667 460907 245961 29395 APPC_20190813 4812198.235469294 422.78158472675403 0.04405156140363535 3.871071837028395e-06 410803.9812396209 36.099781066661635 25326 3325 1400807 TOMO_20200927 60422038.143593356 5627.132788919893 0.8027270147747367 7.476643204590848e-05 12524852.651762113 1166.571608326617 None 1674 71250 ZEN_20190903 33576821.775956325 3252.549707636479 4.642211495339424 0.0004493278914683977 2634535.065113386 255.00132576798978 None 1787 209860 AUCTION_20210821 177995141.8564865 3622.788672563839 38.93876935310931 0.000792045813610972 8220511.553435955 167.21180124095687 None None 81918 ENJ_20210613 1163690600.8441634 32445.971518916424 1.2381605724876208 3.4705411162487386e-05 176289783.8213121 4941.369937965637 212259 33274 21502 THETA_20190903 108597221.2088539 10511.31782213935 0.10861986932868731 1.0513509973862878e-05 2393363.8973651137 231.65794031558286 None 4023 310301 MTH_20200309 2939140.2614554036 363.8226837880551 0.0084219436445041 1.046910061192342e-06 195129.2593419107 24.2560142243845 19243 1930 1066623 BTCST_20210509 537783242.3561364 9170.794399133027 73.9289524832718 0.001258525863005907 30198749.901769776 514.086924069756 57243 None 170961 VIA_20200113 4172387.673338229 511.54325054839103 0.1800014815187065 2.207634523866662e-05 31326.239158697794 3.8420176593078716 39953 2184 2950394 GXS_20210729 32168554.43156506 804.475303970282 0.45940627149079777 1.1481738996984521e-05 3991554.919549743 99.75917749158917 None 27030 558664 ENG_20200217 39179698.50572075 3930.2996560043916 0.47309376636371714 4.755458576252647e-05 3296237.1779262335 331.3321897604757 61321 3604 305641 ETC_20190405 583377909.748203 118977.16346856192 5.332911050973716 0.001088177757092733 372913215.9190666 76092.74990906799 226955 24299 634838 ATM_20210429 17729363.081126597 323.89557874936827 9.380880320153329 0.00017133685404107496 2937092.4878236703 53.64445230265519 None None 149248 WABI_20190706 11156466.514077026 1014.1013058886921 0.1955898601496187 1.77787413556114e-05 678513.0216715569 61.6755260701406 36404 8013 1160222 YOYO_20200418 1351157.4638769182 190.4909724206841 0.007714283520936582 1.0935493771259109e-06 189403.69176013046 26.849193264352852 7459 None 3352047 ARDR_20210620 152543832.1663687 4278.99889770065 0.15186938673752262 4.2655608630765196e-06 6852607.305924709 192.46942495858983 71939 6942 None AST_20191220 3240293.3069961458 453.62102546287514 0.01894943968519338 2.651887452295826e-06 2453089.184906616 343.2986165759583 31890 3517 366366 NAS_20190419 59664818.68405149 11315.388497639422 1.3108475704273113 0.000248523287074461 3235571.396947181 613.431231269165 24141 5171 536647 APPC_20200310 3728036.158622005 470.87579197654924 0.03440470581000311 4.34710140839862e-06 161459.82053153912 20.400761951243634 24917 3233 683942 STORJ_20190812 22023941.169828977 1906.1307519286715 0.153170133420208 1.3256587426288657e-05 952205.3861514016 82.4115881303635 83793 7781 204651 APPC_20200117 3137106.813896657 360.3774556574535 0.02815510521623689 3.2329688381327144e-06 216058.86263023468 24.8094107523746 24979 3245 1366689 DASH_20190530 1487510898.556357 172021.07266659895 168.3653251548247 0.01947036748510678 507183603.37257755 58652.52320217283 320141 26567 107339 OST_20200526 5625330.109898669 633.0012071227889 0.008134418535595428 9.154214094067899e-07 2368691.4111083876 266.56494505638045 17663 755 805326 POE_20200411 2417383.9523097295 352.5603626793879 0.0009610918658277173 1.400619643263312e-07 15622.92149717742 2.27676162 None 10400 753171 ELF_20210401 203417095.7955143 3458.3388677238427 0.4439237777694095 7.55465416099912e-06 43343711.66097696 737.619312256875 86031 33350 212649 ROSE_20210710 103123354.4156757 3031.7991537042285 0.06862219652968395 2.019095855196333e-06 10311321.506143115 303.3937642267754 None 1647 188060 MANA_20200320 33567383.4243002 5423.804134026475 0.02522167836634169 4.080918056356386e-06 29778053.257994406 4818.148636209009 48028 6789 47233 NXS_20210511 112690143.9319118 2018.6562668227193 1.6557805901798364 2.96141611905261e-05 1514403.227313586 27.085582200384717 25501 3890 484526 COCOS_20200325 7091261.076193577 1049.2604330428337 0.0002935513409184406 4.34424042810735e-08 529250.4488518185 78.32330757892302 14625 217 67575 TRX_20200403 788457810.9633117 116262.57576765832 0.011960862137988288 1.7545366209004453e-06 860612667.5915422 126243.11059521562 502847 72455 50971 ANKR_20210125 72729320.87390283 2258.723122258164 0.011224784772633709 3.477874486888035e-07 23220360.408048246 719.4569933882807 33130 None 5258 COS_20210722 34134133.488835566 1060.693628611917 0.011338941689566149 3.5134314158503537e-07 2232419.015636641 69.17269104661568 None None 345679 ANT_20210513 302750491.2924842 5869.738493740994 8.56043841099188 0.000166603489163419 50571213.58949756 984.2183578378877 83751 2981 103669 BNT_20200807 168023052.24959144 14281.809577231366 2.5509250484596735 0.00021665847729415423 136213822.40820011 11569.089169122062 711 5175 102885 OGN_20200319 5813000.8518915335 1079.446938498836 0.20358234565746824 3.778608976588727e-05 40748709.59526521 7563.201974307733 66547 2171 104622 MANA_20210819 1047397890.1148572 23236.681556313335 0.7867530869387422 1.746908979199333e-05 129918901.58293487 2884.723295157716 158524 35540 19080 MASK_20210710 55713276.00067648 1642.6533996150522 3.586424894978813 0.00010552974772518076 9490401.011303056 279.252920069731 37477 40 255505 COMP_20211120 0.0 0.0 8.798584323301852e-08 1.508532536e-12 40.051683225352896 0.0006866930525061636 2632 None 2763642 GALA_20220105 3248723470.910738 70145.03992180886 0.4273915508585159 9.305799303435268e-06 429908244.16586834 9360.59646257301 None None 3011 BLZ_20200308 4718265.393029273 530.8021929394146 0.021807096370029474 2.450116656973942e-06 374539.4859597374 42.08104635634121 36154 None 543870 ADX_20200319 4315059.77811032 801.3709846331601 0.04718952261173959 8.758655037881707e-06 73353.03274247244 13.614757560906673 52331 3770 39887 LTC_20211204 13106580082.14405 244105.75574781414 189.7376928631965 0.003531577597467601 1532248603.6872706 28519.66185988446 205172 351833 122881 PPT_20191011 18883083.922119536 2205.767793692713 0.5212448264585623 6.08875677073298e-05 1904080.257586647 222.41911999718135 23948 None 886383 NULS_20190131 16626800.326374663 4803.292988211382 0.4158126085597331 0.00012014837960586449 5622335.907937854 1624.5648521299222 19582 None 426039 GLM_20211204 591624261.278994 11018.80784408454 0.5911958617840006 1.100712300945073e-05 8172236.498502574 152.1539953441114 163196 21772 239313 LEND_20200612 105713417.70706224 11392.763579298093 0.08393192867963067 9.026066031183754e-06 10342136.094626281 1112.1965712226079 45945 5729 77491 LEND_20190810 4117987.6494991123 347.15751021742904 0.0036305370300820433 3.060595842488905e-07 1173892.509864092 98.96085635401755 41815 5841 699914 BTS_20201226 61629748.81582128 2499.3670801626786 0.022739960138828216 9.222089797096214e-07 17301943.33059868 701.6726242479377 13095 6880 121764 ZIL_20200511 72147550.03614913 8239.703717223636 0.00691263881149731 7.884921492039306e-07 27834083.988006018 3174.902855957516 72232 10622 175667 ARK_20190807 40156132.87979131 3512.439555985088 0.2819201685340469 2.457095635895624e-05 489817.65837094025 42.69041257410086 63430 21830 143377 AION_20210124 39573694.38210474 1237.1488895667567 0.08067372455327884 2.517264291950929e-06 9061855.681054253 282.7573147396406 67989 72534 431137 ZRX_20190430 161593064.36638668 31047.63442055811 0.27511901192464866 5.2859604027343046e-05 26085885.345402952 5011.974855588423 149934 15843 214126 1INCH_20210708 477084654.457167 14041.07138673113 2.759160831900123 8.120778193838706e-05 56484411.32755601 1662.4524764826645 236946 None 4913 EVX_20190419 15468056.42752977 2930.8560017608233 0.8021308679846488 0.0001519857135248523 1705751.7877442157 323.20150352518107 17008 2408 648745 GRS_20191113 16512898.57436894 1878.714696937056 0.22441962169957536 2.550085426136267e-05 795006.6232183175 90.33678910058843 38498 106942 None XEM_20210217 3410922700.190855 69314.19602614023 0.37899141117442736 7.701577337093534e-06 171223354.76036966 3479.4717498140717 231933 18394 44148 PERP_20210902 935113105.3053266 19227.066891719944 20.843883676913837 0.0004284202402835344 45640340.082740806 938.080722765054 26214 None 120620 QKC_20210813 131639554.73971155 2960.922626970093 0.020165531791026894 4.535632786351956e-07 20429825.64252374 459.5077777463657 75165 9540 280880 AUCTION_20210916 243322924.798288 5048.984433136174 34.51241344283375 0.0007160535479956738 36044006.30923248 747.8305927360033 68265 None 95915 BNB_20200313 1437874399.8177972 298673.3723889908 9.472898274350825 0.0019767850421079426 412918004.27244896 86166.88481422313 1123841 60103 1861 FTM_20201224 42071532.202975616 1799.2967298773387 0.016413140775022 7.038911776709206e-07 7413089.105867577 317.91648487226274 28230 2828 128838 SKL_20210207 89323146.06366786 2277.9241954984977 0.15876714048702867 4.037463129987461e-06 21788624.55382723 554.0867462836503 12247 125 222285 CELR_20190524 34249539.90537294 4347.677295450867 0.014425256803179673 1.834033200048646e-06 77184691.74701397 9813.29408072245 14059 None 371735 BQX_20190716 15843640.07944988 1447.0845981963946 0.13159369748763605 1.204771145699088e-05 1102077.7039028027 100.89779703204627 None 5774 463128 BLZ_20191022 5780247.995259632 703.9146127061877 0.02742618141959223 3.3372308443679474e-06 231542.12975364143 28.174156852638006 36415 None 563370 MANA_20190903 42854564.16221387 4151.4787882569035 0.032285463185881255 3.1276360552689973e-06 9770975.634921014 946.5577592920536 45686 6359 122199 XVG_20210304 315931898.5854757 6216.5909660233865 0.019181275595869938 3.7856540444107487e-07 10651662.970884833 210.22330242787783 293840 52435 123910 GAS_20210418 252231926.0905089 4184.1545717958625 17.892578582373538 0.00029692576935946337 75750170.89671466 1257.0674298882489 377672 108444 88657 GXS_20190411 72435500.77265891 13639.27947489405 1.2064311231562141 0.00022732132335513734 15426417.432763577 2906.7168097175377 None None 652404 COS_20210124 24196886.44969242 756.4406525499064 0.007986389161664742 2.49199505410284e-07 1017241.2095994387 31.741003497793308 14558 None 378436 ADX_20190908 7342342.731781365 701.4883949665759 0.0797687349128047 7.621115475894115e-06 125710.58988337753 12.010406371509308 53662 3842 517237 XZC_20190124 34225265.864172034 9644.457782772175 5.270992714052946 0.0014841220847710468 538177.1268259834 151.5313343749478 58872 3930 298501 ONE_20201228 42840803.624840096 1616.2448817044617 0.004898057536144607 1.862498990330467e-07 4126284.0741903735 156.90301441508757 79460 1568 179768 ARDR_20190124 55336646.00275024 15576.309374746077 0.05539206604178538 1.5591909157818024e-05 577299.0236833126 162.4996967503818 70236 6616 740966 OCEAN_20200927 137452565.90036404 12801.02201552634 0.3940049783234946 3.6697838611847246e-05 11744062.654512404 1093.848402059693 None 1018 121875 AION_20190329 46205570.72533879 11476.614140902739 0.158312031484229 3.932142886942684e-05 4669587.349067626 1159.828757640759 67734 72464 245314 PERL_20210408 0.0 0.0 0.20905555632790127 3.714729533397384e-06 42972791.757514186 763.5879259950987 17151 618 334148 VIA_20200208 5421070.70669238 553.5610201053573 0.23350297228068775 2.3818020535886354e-05 366061.9332622709 37.33944180105041 39754 2183 2686393 RENBTC_20210821 675983664.151437 13757.387667519557 49018.330440841746 0.9967062578720176 3575827.3272157363 72.70850398315795 89807 5645 128608 AMB_20201014 2683174.9137788075 234.83099059524352 0.018560945621753894 1.624423904721942e-06 439046.9809457195 38.424680815202606 20219 5501 374636 MTL_20191012 17529561.15820375 2120.530772096441 0.3375362385626828 4.083136902916043e-05 3839679.336312322 464.4815756738227 None None 247192 TRU_20210718 49104556.64387391 1553.6642111072658 0.13766607917324558 4.359418473223312e-06 1467570.2833899178 46.47298043632332 None None 118402 EOS_20210718 3520096791.417393 111373.4295413485 3.658091868531785 0.00011583938007239085 1188123610.1765199 37623.85073928144 None 91586 52079 MATIC_20200418 35265172.91605657 4993.501484219217 0.01276818077539087 1.8090840698840344e-06 12465755.236856949 1766.2343300728382 34477 1624 177145 STORM_20200502 9090061.76138605 1025.7889915527373 0.0011757438730899924 1.3306420852161183e-07 945963.8879634938 107.05897680850981 25895 2509 836447 AAVE_20210804 4009102608.625633 104361.05433930088 309.96406344257656 0.00806923520012663 268022985.64076525 6977.391140622219 262432 12249 14216 WAN_20201030 31995735.394840688 2375.3144413731957 0.2541254307764428 1.8898635447826385e-05 1317735.081223889 97.99646906952019 104372 15985 399181 SNT_20210708 278943701.6386216 8209.692314096164 0.07212208331790788 2.1227013472025306e-06 18365111.76194777 540.5230365680791 133225 6014 125766 BCH_20200324 4021556635.145629 624993.6271281596 220.7691436764264 0.03408145562707172 3629972232.957705 560380.5655303659 2666 288525 138735 MASK_20210828 419457942.008995 8550.041204758423 14.095415916694108 0.00028734167523316 279469488.65233463 5697.116815886798 41224 278 223527 ZIL_20190321 166556317.67611858 41212.07221817365 0.01924013222744387 4.760706347906486e-06 28605581.247589376 7078.058020656646 57608 10040 178175 STORM_20190901 10196448.879300537 1062.211840025402 0.0016356978383257695 1.703983054434511e-07 150199.73076329732 15.64700949065578 26530 2546 2939778 TWT_20210131 103831697.57412793 3035.520527712549 0.29877247118848677 8.742751296517859e-06 30574047.09267756 894.6650566432953 None 6220 11832 REP_20200117 175401991.16159356 20129.82848633162 15.945635560144868 0.0018299844078483287 86844847.56120014 9966.659299312203 128750 10099 352265 WRX_20200407 26541446.864226554 3648.1098018220314 0.14230353323882153 1.9529336643084244e-05 18313603.864327967 2513.307483478414 22408 None 25623 MTH_20210120 3171764.977213692 87.60919948541182 0.009062907325565002 2.5063853823658373e-07 305506.1331620309 8.448901427254622 18986 1882 1172879 POLY_20210201 74605439.26928355 2257.0809024744617 0.0942233947196904 2.849760278180742e-06 2562888.7493580705 77.51385499370751 36226 5030 279172 GAS_20200806 23592560.923373807 2013.963761815406 1.6943019457131885 0.00014457576110708643 12377824.659393536 1056.2069089926051 None 99962 128886 ADA_20191030 1345885735.814715 143029.05685137204 0.04331050537060143 4.603176215397934e-06 119288193.94765125 12678.32301791446 None 75522 134614 EVX_20200313 2566137.632039503 533.2223601193722 0.11584536574671557 2.4174374048297753e-05 672206.1364655341 140.2746020588193 17828 2870 590577 DOCK_20200319 1795422.037407422 333.61260227840864 0.0032150947489727934 5.967406377904762e-07 549780.4083720674 102.04250174632477 43051 15022 378260 APPC_20200913 4578692.7181784585 439.0987177587683 0.04186266757255343 4.00908765113133e-06 174690.68792111287 16.729709794493456 24503 3183 2103501 MANA_20211011 1025077745.5792489 18733.864860553706 0.7706807721068969 1.408055942390634e-05 52024827.93629461 950.5085734432888 180503 38013 12204 CRV_20210128 362525402.3567916 11970.518882042377 1.8082298599230129 5.9673325258298894e-05 264281598.3325555 8721.547037030532 61246 None 30895 ELF_20191017 35782076.411385305 4468.139050090067 0.07759755294289813 9.692232349983303e-06 10220489.311402494 1276.5783633606184 84877 33552 963430 FTT_20201018 329878381.21602845 29040.36471417596 3.556451706730107 0.00031293894006992714 1186806.0176899186 104.42931547240579 28523 None 6507 FIDA_20211007 318589490.0883205 5739.771677575453 6.4769853579741925 0.00011674330611812216 4140129.2325228318 74.62304569917555 47692 None 505726 GAS_20190811 25368381.783699144 2239.755514350301 1.8220374943827313 0.00016089108192295467 1129536.99806422 99.74132269551669 324469 98217 192021 VIBE_20190726 4010893.5489268717 404.1977143261324 0.02138029873322768 2.1599637696690428e-06 123223.72441750999 12.448786783875 20443 None 1758563 REQ_20190221 16690416.91496264 4208.28434244253 0.02288902038672464 5.767255310219833e-06 355716.59344174335 89.62849339109567 41656 30882 495814 ARK_20190930 24344511.52522664 3020.166869653612 0.16990420709321044 2.108637084403284e-05 299751.3084806122 37.20135810491567 62980 21783 89396 GXS_20200312 27959556.457564615 3525.147182978589 0.42929195283813604 5.4079365895161434e-05 8743547.546902541 1101.4543922489258 None None 822093 OMG_20190807 206507517.60300642 18064.487797600697 1.4780156391048724 0.00012881752290068882 97107848.74844389 8463.504850033396 289275 40945 None ATOM_20210418 5885950449.764035 97639.21191684071 24.541026683219695 0.0004082673792626685 1160114515.5621946 19299.80024988172 104043 24030 44770 ICP_20210624 5080715058.105904 150656.27027725853 37.78770781133413 0.0011216686758533066 285621000.5508825 8478.210191614531 233837 20673 24602 NEBL_20200309 8525291.987094525 1055.306768274351 0.5201092352317097 6.465343562806432e-05 220897.68969858877 27.45922124407822 39671 6025 856581 TRU_20210821 284342598.2609628 5787.310447707297 0.6761115288520066 1.3746373132265845e-05 39814505.02756182 809.4892910857881 None None 91553 EVX_20210104 6082987.457466807 181.79625233763366 0.27513388718739873 8.358137405838327e-06 207430.37106478747 6.301410419584731 16655 2807 1350138 BRD_20200315 6250136.7097933665 1208.5918370543009 0.1013801046166935 1.9551874453604297e-05 363438.47366816207 70.09169536405668 179 None None TRB_20211120 115230432.61114782 1982.252843807299 55.66292750088225 0.0009568359063986499 22186328.954099394 381.3790816898345 26310 None 362020 POWR_20200801 39845201.105827644 3515.208243314151 0.0927427588094661 8.184890399639014e-06 1609896.1012277168 142.07926648403821 81525 12694 233430 ONT_20220112 537714949.4526808 12557.896097194807 0.6139740383672578 1.4349938593415076e-05 34301817.06366259 801.70974299679 184522 21081 103230 COTI_20210127 36959085.830298446 1134.0225054806426 0.0650111414205162 1.9959370204676154e-06 13385759.170100156 410.962362617977 37165 1332 233867 FUEL_20190816 2424963.144786964 234.06669941579463 0.0026946413481878243 2.6009706903609913e-07 82389.69116828928 7.952567493285471 1 1505 None KMD_20190726 134957281.40045965 13647.697547596168 1.171120331565091 0.00011848284293719866 2831083.665526331 286.42218245528034 98237 8457 276726 WTC_20201229 8182547.512037588 301.7550702003881 0.2884893097748179 1.0624531723893596e-05 1519721.4838542282 55.96855262780798 54794 19192 825583 BAT_20210506 2046609256.4304295 35738.75584312656 1.3664832840249161 2.3836298106207522e-05 469318432.74430245 8186.572203562587 194529 70645 21549 MANA_20191024 35773445.53095761 4793.576760230783 0.02695754879215005 3.6112716952243354e-06 6836970.824865714 915.890365673819 45869 6405 85405 MDT_20210304 27610775.08385307 542.9272246938642 0.04542709327162716 8.965600842654847e-07 18351248.6782988 362.18467607014253 22929 90 673116 STORJ_20210203 64489072.303637445 1810.8450177618754 0.4484034272239065 1.261301838656441e-05 29827296.399147324 839.0039305299358 83839 8694 105291 XVS_20210131 64535664.54347328 1886.514361398549 7.95864026448445 0.00023295081648943913 11070690.75143232 324.04108791758546 17562 None 58717 REQ_20210124 24950724.276318435 779.4926681185483 0.03228695235429296 1.007467691354218e-06 513539.06477042235 16.02424441697639 39515 27185 455841 GTO_20210724 20554562.56459395 615.6069150408686 0.03090890823982405 9.259264851590294e-07 4979813.861569983 149.1784022202641 13742 None 367259 FTT_20211011 6467664391.834422 118206.42219244353 53.683788446358804 0.0009812423071781518 168834991.0501913 3085.997485368026 265104 None 1144 BCPT_20210207 2550526.79273856 65.04252383967442 0.022019008338879334 5.599454273371825e-07 836339.8585519515 21.268200288071 11820 3256 1647629 BLZ_20200306 4956874.437224067 547.0031194652358 0.02290516337938497 2.5299283954636814e-06 314312.0881002363 34.716498789000205 36153 None 543870 XMR_20190608 1507203305.2653294 187335.72604875336 88.24856619183791 0.01097718133324977 101133825.42258818 12579.970287286718 317627 158175 113684 GRS_20210112 25217235.53395822 712.2965355220202 0.32260722276509685 9.075090826687682e-06 3567761.0181979225 100.36277244678244 37584 106776 4269637 POLY_20190509 35179848.3597743 5910.497769241398 0.08065839448519001 1.3540548235404093e-05 3338233.1125301146 560.406722322458 34652 5056 307356 BLZ_20200322 3085220.1642538 500.71399438164576 0.014306007901804616 2.3215928046170937e-06 1750622.289943691 284.0926790920404 36060 None 563457 STORM_20190224 13639021.46493994 3315.0697508184826 0.003017851807373944 7.33418696898496e-07 798443.6571192717 194.04316180152463 26577 2568 3385939 KAVA_20200607 27920239.593843777 2885.402879177412 1.0261838361302162 0.00010612565261573502 16859714.95056285 1743.5942655178433 None None 393722 LOOM_20201031 14310692.917291967 1053.6935952737228 0.01714457965158506 1.2632641166672323e-06 3398013.051770059 250.37580643577743 22412 None 389460 ONT_20210204 508414526.8295941 13570.595934037588 0.6314411697644107 1.683425157383873e-05 199836196.9869843 5327.642502140338 97160 16698 259663 WABI_20190915 8311672.06932932 803.1246829793157 0.14386634055199132 1.3901247328269e-05 373514.5584445998 36.09126525166 36237 7937 1609387 LSK_20201115 156383543.56188196 9719.187019477758 1.0990160672928864 6.829523678958913e-05 2757231.7582409326 171.34034835057278 177195 31046 211425 QTUM_20190819 244440345.62410185 23690.66791039195 2.5475190803542267 0.00024690043852608733 318941028.14357746 30911.124599569583 None 15353 286987 TRB_20201208 40787186.95041904 2124.0461077338146 25.70993253734985 0.001339067400016285 33452008.595195577 1742.3030616597769 11261 None 404210 REQ_20210401 128045604.14082758 2177.2839776510186 0.1657642223040535 2.8203566232896895e-06 2071997.4609209432 35.253516597983655 41980 27447 375384 AION_20190513 60714484.407599315 8749.595003488328 0.196158710097452 2.821783134931175e-05 3781435.296407931 543.9671957435028 68880 72518 275245 IOTX_20210616 230135646.50756624 5698.323595639815 0.024157805278163125 5.985450980387782e-07 19547438.22745458 484.31648469468877 54991 3115 185427 PERL_20210207 0.0 0.0 0.05258084154107798 1.3371356844658911e-06 6117670.536200377 155.57292998759797 14037 525 461577 1INCH_20210513 943211109.3998371 18301.38495976938 5.62334563277392 0.00011210304670906403 331212714.3893564 6602.822735174861 199244 None 24204 DUSK_20200322 4505078.393956714 730.6547328072677 0.017257357027057146 2.8005405963511464e-06 179715.47403665158 29.164401017086668 17633 13343 994052 SAND_20210324 392486163.8725173 7202.591793489332 0.5808698386891811 1.0639783293484918e-05 152545171.4423121 2794.167399492376 88593 None 31612 AR_20211104 3829120323.8925347 60823.520962973096 76.70181174728552 0.0012163675963185435 568694250.622644 9018.577826416487 41230 None 49205 STORJ_20190618 41240066.40401923 4424.140631465262 0.2871440370920261 3.081825010630579e-05 5457902.607630941 585.7792114412666 83731 7739 209007 MTH_20210324 14205677.74938806 260.1172875115447 0.04078125895482898 7.48385008475409e-07 683873.9343465971 12.549906826539647 20476 1962 536338 NBS_20210221 0.0 0.0 0.0221367502932023 3.9372944899191685e-07 10485702.108871276 186.5011647570984 None None 724995 FLUX_20220105 641721.6925166587 13.85335871846244 0.6133809017617042 1.3345870363068337e-05 2279.7043126055373 0.04960154144802694 8675 159 None ZEC_20190530 568436610.3403767 65789.7767279445 85.11440024746419 0.009842515411827438 449034755.2033321 51925.778548461676 74944 15157 175759 FIO_20200907 16128038.315788921 1566.3558965481138 0.15903920826044962 1.545980457349056e-05 1804395.5365052028 175.40078747101165 None 134 278091 BLZ_20200418 3356545.6910131834 474.13357382727696 0.015144462827676093 2.1512238667986214e-06 127755.31340543319 18.147245130798623 36104 None 563523 ONG_20200411 0.0 0.0 0.0816572572123664 1.189894759680308e-05 11299601.509732623 1646.557462484834 84079 16507 252464 BAND_20191030 4911554.050984695 522.015353888727 0.3135827166346073 3.332855367123252e-05 2134332.871489646 226.8435850774438 7709 982 550778 ZEC_20200605 497185683.5428636 50857.24686418903 53.40827933193295 0.005463146137315333 259695822.80700234 26564.350115595724 72015 15813 168070 NAS_20190524 49672901.36455961 6305.477843807638 1.089797599053724 0.000138557323815356 4329546.515801016 550.4603598726728 24070 5174 501303 GTO_20200718 7185309.141758656 784.8213398227622 0.01082947195818302 1.1830805012029405e-06 3522813.300623844 384.85456552636157 16584 None 1486058 DOCK_20200520 3424037.7591562043 351.11244739076614 0.006115672612303613 6.264666721135197e-07 689420.7287788595 70.62168579385163 42502 14984 399786 STMX_20211028 247795122.03477606 4233.700016988852 0.02663597544708665 4.5481354207365366e-07 21944314.101956613 374.7026740174952 73794 5528 101113 ONT_20191118 578359760.1620142 68043.71448680355 0.8231355233604913 9.673031590280105e-05 116278962.57937284 13664.457995001143 81560 16292 302631 ENJ_20200107 66962081.31060041 8630.312750647165 0.0751668545833966 9.692291873526524e-06 5452626.352878292 703.0817822866887 50025 14253 25300 MTH_20201130 2791296.89938977 153.88061348544215 0.008031494436788474 4.427659742709976e-07 88023.73458880787 4.8526354479764295 18892 1892 1991211 BOND_20210805 84523802.93359962 2120.132621952871 21.75254714393192 0.0005469128667268148 6866858.7090062415 172.6498215174884 22073 None 140491 IOTX_20211002 618169546.1011451 12911.025490984377 0.06419350105664444 1.3328739385286353e-06 42532507.30282138 883.1185336687855 145099 9609 63450 BLZ_20210809 52867504.96183429 1201.7435067185438 0.17733773825664048 4.031460271747424e-06 7376219.988651182 167.6853338282776 65458 None 416953 WNXM_20211202 156219082.52581015 2733.1552569586124 70.70739393818747 0.001236839598783806 2843661.718544785 49.742370962172664 None None 107583 BAT_20190922 277879946.72055143 27814.1812266519 0.20666629269519649 2.069471062206741e-05 41439447.607291326 4149.5754599712245 None 30352 27075 WABI_20200621 8508810.294347165 909.5200202001763 0.1445518141742439 1.544961846286785e-05 3097141.126089934 331.02074157345425 None 7664 978945 TNB_20190803 11110834.941261232 1055.9338568142712 0.004019435858700015 3.819927513037924e-07 494835.3406161952 47.02737395229005 15686 1475 836143 NEO_20191011 527302031.72658396 61582.90298364579 7.477343120172519 0.000873268958280406 249507028.5432204 29139.594023946633 323258 98300 164596 ATOM_20210610 3339404351.0618467 88966.29273242477 13.989588737729592 0.00037287155568936436 590264719.3484379 15732.622902516974 None 30346 42655 SNM_20200305 5114858.533989255 584.2776358714788 0.01169284447786476 1.3351872248692542e-06 119036.27153865754 13.59256161795 30234 9707 None COCOS_20191113 15164861.961671444 1725.3451243645545 0.0009663135950231682 1.0983763441795315e-07 5053084.20123153 574.3671806301106 13264 169 53406 QTUM_20210301 504998645.3451717 11119.898450543302 4.834826737336157 0.00010711616474439062 482010994.2431412 10679.011239274118 204571 15577 119513 BQX_20190314 18584644.13063607 4806.7081521142745 0.15800074766960057 4.087146509806786e-05 1909293.0409921235 493.8938899838353 60604 5821 398770 ONG_20191015 0.0 0.0 0.15333427057620722 1.8370996884441564e-05 5512771.132530636 660.4857539008276 81348 16282 312703 HOT_20190704 328511693.7539171 27397.879300185698 0.0018522817508528602 1.5434020693060233e-07 28471537.94074775 2372.372915397023 23361 6529 316713 COS_20210429 95424645.90650508 1743.3012551783665 0.031682342447519496 5.786011661409829e-07 11210728.554505326 204.73677492980468 24203 None 214516 COTI_20200322 4446530.574063931 721.9751819766226 0.014250603624882062 2.3126017449496244e-06 1760458.2025593063 285.688860508407 22545 901 294374 ADX_20210724 46478882.00573225 1390.4769080694107 0.3739055313304414 1.118277083783476e-05 33184634.97544054 992.4864362051634 None 3876 13599 PNT_20210710 21682291.06770136 637.9659387180785 0.6843039277873922 2.0136495324040995e-05 3905531.094817913 114.92511650924146 44800 320 307388 GVT_20190723 9583984.21711727 926.7003271983733 2.1594488408521055 0.00020887642967698115 556918.2860157982 53.86888589539439 21392 5749 209505 CDT_20210819 14993624.881432952 332.45011040749074 0.022170495679325317 4.922743694112632e-07 576498.5101011526 12.800590687344254 21110 338 774115 LTC_20190930 3414304517.402368 424037.6762978769 53.88474198010775 0.006692185966628245 1858144256.8391347 230771.2065166849 450908 208796 127570 ALGO_20190807 138657161.3162164 12081.881540306922 0.7013807844104485 6.112305942598599e-05 89559766.55922906 7804.843039973711 10990 532 241883 DASH_20201226 1020899674.3100135 41402.13268992284 103.29126351758137 0.004188931298028866 561377183.3121636 22766.402240547148 324397 35733 92093 C98_20211021 657133588.0624659 9910.809859068358 3.539630906901535 5.3599394455185596e-05 34819170.81593336 527.2545415757426 None None 24344 GTO_20210201 29515194.472786475 892.9671268991343 0.04449984489715303 1.3458853902512777e-06 59091189.979005136 1787.1965502152527 None None 738206 ZEC_20210408 1897265166.775301 33683.13460504873 171.7304752131656 0.003056081640916036 1912272784.5496716 34030.42903148973 74117 18410 92641 YOYO_20220115 3081332.047140345 71.50105602586802 0.017637584828333417 4.089462252791173e-07 348627.14237760386 8.083292315404726 12528 None 776872 DLT_20200318 1972800.5541745585 363.37305192834873 0.02398986481152506 4.430849444363319e-06 30437.039443854832 5.6216214792123 None 2586 None NULS_20190616 70003956.85970601 7939.446124670847 0.9860184034052202 0.00011178425643167638 24951406.175138477 2828.7244706388474 21141 5316 640711 HNT_20210219 289039015.28485316 5592.08847965329 4.158691315474223 8.043820692094872e-05 8365664.455071863 161.81029016614139 21951 4091 50086 ZRX_20200418 110797283.86069988 15738.409749471051 0.16989931700175173 2.4133669833374837e-05 35203507.147055864 5000.548757092049 152348 15931 132812 NMR_20210724 184872443.01730564 5530.702371933946 32.142417911667295 0.0009612724367518737 8414273.072328117 251.6428229500598 None 3538 583885 BTS_20190708 161808714.2665753 14142.928025245668 0.05970369477787615 5.218415225113509e-06 15016377.05297292 1312.5099029602568 13693 7177 171113 AST_20211225 50674550.03918292 996.0238497916816 0.29146300006780884 5.733761123009563e-06 645975.3914993254 12.707851718187245 49501 3753 186050 POA_20200610 2840850.122588882 290.62808163162816 0.012798372747384799 1.310061943894753e-06 165954.39490002312 16.98735780492306 17195 None 556747 SKY_20190205 11558083.468281135 3335.427633730437 0.9212922964242725 0.0002658827545788297 122799.02774977747 35.43950588150471 14355 3486 287738 EGLD_20210324 2270379316.5720234 41647.29169302551 131.11169492499073 0.0024051919163959393 91850507.34851345 1684.9610396532369 183634 7276 26552 UNFI_20210106 13947778.158587728 409.8862911150913 5.702168837972133 0.00016718700506357923 8944778.06067831 262.25997465466935 13094 None 133722 PYR_20220105 292895999.2967118 6324.136280839556 14.513196630934775 0.0003160027259019944 14205279.491672944 309.2982997281436 72133 None 41443 ZEN_20200109 72247703.87434675 8978.127857593161 8.847550354079411 0.0011025967137519449 1863692.4084479478 232.25650522030483 None 2971 41253 MTL_20210114 25274590.595999017 679.9304004882589 0.39218947473635063 1.04931513983091e-05 6076251.4046132015 162.57199652197872 43461 3361 362516 REN_20190914 32204030.822730992 3110.015933029653 0.03918907746080466 3.7857857750508868e-06 2242377.9299243623 216.62062542518956 9631 882 312063 OG_20210828 8545923.56955023 174.236287209657 6.18118215780701 0.00012602979646545858 2287415.2294333708 46.63872839168297 705141 None 316019 REQ_20190914 7054536.774559731 681.2725366521006 0.009665192503877828 9.333480352076674e-07 53850.88602267112 5.200270831986674 41044 29366 564071 GXS_20220115 168613359.46315035 3909.4806661577236 2.2481781261753384 5.2126408882102976e-05 63746677.646349125 1478.0347451926289 95530 27126 548361 NEO_20200305 826796076.7336565 94446.10322095951 11.738323905540494 0.0013403804480359486 812375044.1683421 92763.80805624463 322764 98956 240012 IOST_20190627 163630621.09345484 12588.960999033021 0.013613068015096057 1.0438898378311885e-06 104904366.0440887 8044.373357725759 198112 50209 103864 PPT_20210806 90284483.1421767 2201.8795526196723 2.4881741103036816 6.075779152830618e-05 5366801.585951121 131.04991752092607 24453 None 828150 STEEM_20190629 116800085.58447775 9428.85054458526 0.36713941716183596 2.9655093774168274e-05 1385181.2628194145 111.88578050453087 5809 3752 341474 IOST_20210813 680549565.9716964 15307.36420861193 0.030032231904774213 6.755200787585255e-07 129741699.86970733 2918.3020293712198 250882 53597 221575 NXS_20200626 12032358.819187332 1299.9254228526897 0.20152042929785408 2.17714193206018e-05 84139.07997972555 9.090032201056665 23330 3527 462582 OM_20211216 58699358.014553584 1203.1911902881718 0.1433639738654788 2.9336176374381414e-06 5895992.84014817 120.64808277634236 None None 70938 BEL_20210711 59493277.81629432 1764.898851546215 1.2394432878394646 3.6768726073879485e-05 5300977.792801006 157.256247461694 32402 None 582298 SNT_20190318 78418768.48470214 19692.133712191247 0.02240125269410186 5.625569385823071e-06 16021504.930575754 4023.439621124008 110233 5750 348070 MTH_20190104 4327833.844724448 1147.7520150424418 0.016791926438343825 4.452481735944452e-06 257913.34512951222 68.38729688710765 18698 2028 773278 PPT_20200404 7975843.976527422 1186.0535795596838 0.22031251560590287 3.274488904762865e-05 1956316.6254811545 290.76591798353263 None None 1062146 MDT_20210204 16681995.590955975 445.1370871544868 0.027507156388218566 7.333379989797711e-07 5113875.069521699 136.33539060118213 13802 76 1222000 NEO_20190207 446046795.9422418 130938.40291862682 6.865601532357147 0.00201545103872289 84861262.54263423 24911.687480378365 316064 97839 145826 DENT_20190613 136301512.79327932 16768.778345781266 0.0019283366488337635 2.370335939881146e-07 2776127.521066512 341.24512651132943 45263 9551 248149 MIR_20210617 291646795.85518515 7624.858837708484 3.8725852103235154 0.00010118410374946533 18265801.959076665 477.2545212349249 45923 None 15162 AMB_20190821 3424107.324226646 318.20816902106634 0.02367628823817978 2.2006871015378147e-06 79205.29892545614 7.362052614210732 19293 5622 728566 PIVX_20190130 40446561.69614366 11849.342761989052 0.6866320832863009 0.00020113952426200986 275706.1859090409 80.76437501204677 60777 8594 177397 AKRO_20210702 45125846.304361634 1343.0033956061163 0.01667607453165371 4.958637852073074e-07 5230692.350963821 155.53485944672258 42744 None 210414 ONG_20200511 0.0 0.0 0.09783646163959506 1.1145718437818447e-05 24675874.40736045 2811.1232125764363 84704 16474 182484 RLC_20210805 240059985.6737483 6035.53147593874 3.365850511402495 8.462581140427825e-05 12703408.00005105 319.3951145370296 46199 7758 152995 SNT_20190314 77770927.16557936 20114.571308257895 0.022245249331432022 5.754377400470815e-06 24123566.891840495 6240.258586133668 110152 5749 308014 FIL_20210508 10522637445.828548 183629.413926875 150.7227286168373 0.002629963266447303 969994258.5050683 16925.44510004406 83282 None 28149 NEBL_20200325 6110762.979276527 904.1807572680007 0.37854886684772915 5.602111324816044e-05 143938.92941397007 21.301395332831813 39571 6009 841626 RDN_20190826 10059824.118952792 996.478492978067 0.19887816427755955 1.9696327910094178e-05 763440.7529807327 75.60900144699507 25585 4393 818070 WABI_20200531 6673313.355937997 691.0150894054719 0.11329881851301288 1.1731044546315963e-05 2090087.918879147 216.40926890400002 79 7689 1231657 AST_20190906 3920328.40549015 370.9310977540806 0.02273834815853362 2.1514066726313592e-06 1350809.961176662 127.80794557592846 32029 3576 238019 COS_20191020 21062900.794580724 2649.6976303528677 0.01594880820413763 2.006348494806034e-06 1902222.1207112055 239.29816195830497 9381 None 200954 ICX_20211230 972137499.5459127 20920.371103987356 1.3928056989084703 2.993372549672966e-05 341091722.24544567 7330.631968912485 159319 34703 309513 XMR_20190819 1505099641.017406 145876.35710435864 87.70450542652269 0.008500587311651502 92354224.27465408 8951.252198830944 320367 160375 90338 SNGLS_20190930 5167115.667049661 641.0295615551987 0.008869738320856163 1.1006475408033705e-06 502326.97170249006 62.33385090781145 14 2162 None LUN_20190401 8071012.235843387 1966.8705079621227 2.9715135154518877 0.0007241358605403316 1298547.8460904597 316.44650347097974 None 2245 1417813 WAN_20210112 56184086.33995813 1586.0900918578473 0.342833212919741 9.644578895371512e-06 3405087.776820885 95.79187917508555 103811 15875 601908 XTZ_20210804 2578294888.640534 67107.02524909178 3.067710075180407 7.986940711455804e-05 119316236.4131251 3106.4594853854674 126080 51173 70665 POND_20210603 73407278.32101484 1950.8176529573013 0.09482276701925475 2.5213545617706627e-06 16893469.814036842 449.20042431484353 None 544 92382 APPC_20210304 8177635.581961178 160.90775930003556 0.07346907373925285 1.45e-06 317949.24613311427 6.275108469847222 24467 3114 1055081 REN_20190719 58430484.845086075 5444.310606051042 0.07229477487750727 6.768335792339903e-06 3299378.4627947123 308.8923283881294 7553 805 661465 KSM_20211225 2596484764.9497757 51082.96019077139 289.56052890989713 0.0056943213910542285 88797340.72098675 1746.234539078309 None None 86184 MITH_20200310 3731392.2632560306 471.2993738743134 0.006210071895573354 7.835876647409717e-07 7472042.58952389 942.8232880433561 94 2082 1367265 RCN_20200625 34305679.09786386 3687.2630220173423 0.06711253192625455 7.220348340610443e-06 400655.4442481045 43.10479412715533 None 1136 966590 WAVES_20200905 264256748.1848529 25202.70790281742 2.642567481848529 0.00025202707902817424 87762106.77149719 8370.052069023002 144420 57019 140835 SNT_20210718 236003901.69827285 7467.144412066044 0.06062397624199586 1.919756003343559e-06 9823542.580364766 311.07832266687143 133381 6016 134549 FXS_20210506 79040788.68036687 1380.6809491180293 7.2852083181561955 0.00012707978155862128 12077948.061599705 210.6821019131709 9185 None 138328 BTS_20190807 121412056.1025298 10580.666715048259 0.044798256835275906 3.904022715741741e-06 19327269.314547166 1684.3088050210679 13655 7163 153233 DNT_20200229 4808807.269562595 549.4031833425133 0.006363728802286456 7.303642336427119e-07 893722.0611897502 102.57235161811256 59102 6113 729290 COCOS_20190908 22198932.264268164 2120.533998397124 0.0014125758097389195 1.3493509481472693e-07 1911910.070943296 182.6335725992979 8670 121 186264 VITE_20200425 5552903.713960395 740.5537120272294 0.011279649303257602 1.5049035377734563e-06 2814850.8664050084 375.5505967667081 None None 537072 DASH_20190305 664888522.5752634 179069.07663514273 76.64792313434305 0.020642968491179726 2188051786.836026 589290.3844708032 319770 23234 94938 ONT_20190915 492381789.550619 47576.94544962213 0.757044530667248 7.316170519520841e-05 66747939.1194294 6450.602106509193 81466 16289 256067 AXS_20211207 6985868577.057587 138404.3434936166 106.00626559429219 0.0020988357466503026 488278364.48081565 9667.504839859783 771218 None 439 NBS_20210527 0.0 0.0 0.014986580980055729 3.822375126290661e-07 3484694.1269422257 88.87823160787127 None None 482747 ATOM_20201018 1300936462.756566 114526.05414502676 5.4680435327611905 0.0004810773685693163 77155292.76430897 6788.107115801566 43794 9638 75967 VIBE_20200523 1713000.29891684 187.131712 0.00915418831550716 1e-06 184301.6351296279 20.13303952 18973 None 1044807 QLC_20190930 3385065.3074184167 420.00480632044514 0.014025821665713305 1.7400358134342478e-06 78169.52458698233 9.697668738579447 None 5733 940522 RCN_20200403 29075657.683324825 4284.6161112082955 0.058044914417352024 8.514597595671751e-06 2109218.875271095 309.4009207249345 None 1134 866129 OST_20190615 17620331.981001623 2025.8344495778354 0.027568970753512455 3.172865754789814e-06 4184479.3680549324 481.58458316165 18131 755 1020616 BCPT_20200526 2314919.002765785 260.1955826606103 0.020084084562469413 2.2600006619395206e-06 384074.8440405638 43.2187685262 10527 3175 4184037 NEBL_20210207 22084493.43004158 563.1900023556632 1.272656450285122 3.236377174398188e-05 9472251.66626075 240.88023972198832 39197 5876 713465 GTO_20200324 3029815.912479676 470.30365441708966 0.004478062419584095 6.910749553425147e-07 492737.13062025746 76.041434583357 16866 None 1148049 CDT_20191022 9282542.766606225 1130.2702507397846 0.013760493926339334 1.6755190158001466e-06 245918.24059539975 29.943742619660597 19569 299 183019 XLM_20190511 1763562849.5709887 276762.0711232444 0.09206859209644315 1.445164864364429e-05 156608719.0866519 24582.26123845461 270342 100880 71858 OST_20190627 15061260.567313455 1160.3752343176752 0.023698911156192347 1.8193946548981082e-06 1843584.0912311925 141.53422574288982 18169 755 994275 WPR_20210206 8580007.594656073 226.37941644122267 0.014475280864162545 3.797574241032064e-07 834071.6140771694 21.881778367681743 32540 None 7510517 ZIL_20201201 333812267.23851264 16978.86817635635 0.0292051030719743 1.4826716817677008e-06 71418814.43428963 3625.7586027408333 98961 12505 57741 QTUM_20200318 108205619.76975429 19925.780360563116 1.1101652773951718 0.00020640244298406973 368823966.0375543 68571.92273194029 179643 15164 109238 FARM_20211111 96102885.2921589 1481.6517196985992 153.91426260043974 0.002370082152199336 8427464.864532376 129.77214538958597 None None 97269 SFP_20210603 134658261.8595347 3575.534953778527 1.2440689204860227 3.308001808455547e-05 30063198.031272084 799.3858846385561 343583 None 24038 BTS_20210108 77477303.51956145 1963.3188382146268 0.02858734341046729 7.244195048438994e-07 76288903.51549378 1933.204107715116 13158 6875 130433 OAX_20210210 10831396.7609877 232.5500176627675 0.19161603887022713 4.114180851083605e-06 969843.0306915496 20.823463677434557 13111 None 1390628 VITE_20200310 6602479.090543789 833.965134972045 0.013989937283332282 1.7652520727711929e-06 2494280.333692644 314.72861099736093 None None 441540 TNB_20190826 9248113.043550834 916.0742414140399 0.003347876606952945 3.3145324004468027e-07 462106.7457574642 45.75042515298044 15597 1466 1174424 BTCB_20190920 0.0 0.0 10249.9932384316 1.0 28440.104994039797 2.77464622 None None 85843 RVN_20191102 137682133.7738891 14915.025272021398 0.028950596415968022 3.136290702797509e-06 9419844.685184164 1020.4753948227694 28426 7127 254605 SNM_20201129 4584293.981646515 258.18487792 0.010444169758958712 5.9e-07 194495.79528452994 10.98723229 28847 9519 None MITH_20190716 14886192.256136956 1361.4084030558947 0.03429581633083029 3.139862373535177e-06 4945622.244505108 452.7833088865927 74 2076 572627 STPT_20201018 16386203.129946979 1442.0827300805736 0.017757638168844982 1.562528307691525e-06 1614755.9278609515 142.08544082861795 16019 None 1106670 GO_20190930 6896483.202208187 855.7659603034772 0.008693865044831302 1.0797297993977243e-06 393894.8967029041 48.91956058757369 10267 686 748628 ONT_20210124 482536543.0166817 15075.061277390447 0.6004906001378361 1.8737441427181822e-05 291569337.88575685 9097.999851026016 None 16676 273814 FTT_20210703 2369709809.6704173 70109.28128797919 27.360615532543445 0.0008077997100217798 40626882.26380167 1199.475343409322 148823 None 2913 GVT_20190807 6923258.5584988855 606.2749824303642 1.5617564264991735 0.00013638264474262157 611962.8314588792 53.44054170190366 21358 5726 213598 XEM_20200707 391566378.2126289 41909.40367081266 0.043507375361792916 4.656600408385473e-06 7971612.798168798 853.2028214242057 208434 17840 240826 DNT_20190930 4469479.865915934 554.4812432007712 0.0059384965743567615 7.370114205247911e-07 440932.0515448851 54.72293426374605 60043 6253 442097 STX_20191216 39217769.192946866 5511.025060458102 0.09161789810183853 1.2874420289304353e-05 1218036.1180037304 171.16206806340227 34627 None 37065 LUN_20190903 2609155.882566797 252.76999501928765 0.9648814664781922 9.34723484139986e-05 72287.11255720734 7.00277329965891 None 2196 1370867 AKRO_20210204 61661281.55412532 1645.3501088380947 0.024160439266971232 6.441184582664968e-07 31737354.381900858 846.1193750675598 27753 None 187936 CTK_20210108 22913118.94428543 584.5933286650786 0.9045625880355799 2.2915726735296582e-05 12690098.87897397 321.48448543067826 10445 None 220154 ACM_20211021 17986848.715700142 271.3673701259912 8.992992652505938 0.0001357219988201885 5314478.018039386 80.20595670043922 None None 34479 POWR_20210823 137297465.24561983 2783.0519961631176 0.3198517848626276 6.490767838865222e-06 11149576.579564365 226.25890022993937 92130 14104 202845 MDT_20210106 14396805.588064628 423.80527975277676 0.023562832984856633 6.912595362365996e-07 1411744.55785905 41.41615267473866 13441 71 1369225 BTG_20200315 105159464.14458404 20344.616242416745 6.021188783078433 0.0011621445614477042 19726949.706148174 3807.4819011456752 75018 None 217881 BAT_20210821 1159629803.3059576 23599.39015215878 0.7792936906716699 1.5851458983529814e-05 108965713.60322016 2216.4500501778457 210203 77704 26415 XVG_20210408 714984536.5011928 12693.307063399701 0.0433930795675082 7.717903170941963e-07 89153782.60850663 1585.6912400632734 300076 52906 130947 PIVX_20210819 61095223.98047876 1355.4068397926071 0.909744810081047 2.0212056261496153e-05 1912170.36941605 42.48322679055453 67710 9868 371211 BCH_20200127 6288377127.937485 732642.9426667629 346.0252737526834 0.040264871557417925 3152961804.8426285 366891.1253811226 1006217 282284 124204 IOTX_20200312 15283711.851051724 1926.9097738565797 0.0035192699793629737 4.433343966491432e-07 2809584.4236524156 353.9328959127594 22585 1808 497303 ENJ_20191118 58699147.563995525 6906.2648964148775 0.06643644371699321 7.807241949621183e-06 44715251.04837898 5254.688003166746 49597 14159 30131 NANO_20201231 141328878.28626233 4894.16084698965 1.0637300194053285 3.688613368887073e-05 5755788.686160679 199.58898131059823 99250 53808 336942 TORN_20220115 77581596.78654274 1799.9812605987856 32.929429460138074 0.0007635039609666823 13034194.608681971 302.2117107672941 32844 None 86239 THETA_20211021 6247087748.919901 94247.83352663218 6.248373367873308 9.429990933364111e-05 182473240.54472384 2753.87033170199 205291 24947 29310 XRP_20200323 6610426078.543431 1134967.5715714935 0.1506641854751117 2.583896922864829e-05 1876934021.256626 321894.9497952483 946341 210975 34201 REP_20211125 152473903.60910687 2665.6767647183824 22.1275045784789 0.00038685160817597 13417354.29173917 234.5734498355648 157840 12033 193175 ROSE_20201224 72532370.98428649 3103.2059176298685 0.047362616953602096 2.031044933090959e-06 13919368.08104679 596.9024482015665 7394 558 229578 EVX_20201031 5250957.105774541 386.57753692406266 0.24068377143207126 1.7771163759114687e-05 249570.9737505662 18.42736058876646 16722 2814 1245515 QSP_20190316 0.0 0.0 0.01934383318900448 4.929294489800953e-06 329828.0317367653 84.04846565499167 56662 8548 1062367 JST_20210304 74910616.7071681 1473.379163002125 0.052138228797570206 1.029010274782942e-06 145634541.86811915 2874.2717848632606 None None 109901 EVX_20210724 6972857.642168212 208.68613760789736 0.321246062453935 9.607397492643089e-06 271288.83964344236 8.113343702527724 18280 2804 1518494 ETH_20210314 222405459430.76758 3621208.298292365 1927.7207203999014 0.03142389938493345 32785949401.529545 534445.8688079349 792011 723872 7262 AAVE_20211125 3411542523.3096623 59671.424889176655 254.5939845343788 0.004451025735854708 179721761.8175802 3142.0466929185422 356260 14186 14216 CRV_20210809 628091117.8985763 14278.178231198779 1.753848995263678 3.987075854113201e-05 117811696.70852484 2678.247514735712 None None 12841 CELR_20210718 131763714.15164104 4168.993286807574 0.023323262478601756 7.385687303340633e-07 26313543.56565557 833.2608047311826 None None 211241 THETA_20200913 542953267.5457635 52069.46573106678 0.5462348536338248 5.231430725015323e-05 38846523.64892371 3720.4308005077755 73123 4392 65774 ZRX_20201106 249210898.45716232 16035.189631821931 0.34723522037664045 2.2286344467228206e-05 38919102.09247222 2497.916296184591 None 16304 67906 COMP_20211225 0.0 0.0 9.9260669290652e-08 1.952e-12 130.40628647034347 0.002564490779774375 2640 None 5058999 XRP_20190626 19972957101.406395 1692071.2389829694 0.4699466182010064 3.974939816993341e-05 2819077634.1700883 238445.46383064223 929393 202659 41010 SYS_20210114 47214347.29546665 1263.3506126323114 0.07812175169413899 2.0903638092266108e-06 2423330.363737889 64.8429148131568 61039 4490 315243 ROSE_20210110 71379781.4778538 1764.724931688612 0.04723849949732689 1.1718817500091838e-06 7589501.556035257 188.27859605674627 None 605 219756 WRX_20201226 16613985.125096891 672.7446574200937 0.06968923695975004 2.8262160408828594e-06 789687.0071298961 32.02540570384363 45651 None 6918 NULS_20210206 45334943.728820056 1196.380817431733 0.4070936601150506 1.0716775091585995e-05 43477833.47562199 1144.5576496966019 39262 5099 775793 ATM_20210724 26597106.933602836 795.5668470454266 14.000201664774428 0.0004186423150245241 44086577.6193854 1318.3029329160202 5011425 None 94240 DGD_20190225 30164294.287043255 8026.563832090362 15.022388797916117 0.004010126121185571 615398.5531711753 164.27652394097743 16067 3298 571797 VET_20210509 14724317210.5112 251048.08578459852 0.22636224091909518 3.85346640301872e-06 2093137458.5040178 35632.421911426725 None 159067 28728 SNM_20190523 11629142.175470423 1518.5024276599318 0.028567853630689293 3.725405779245028e-06 1546343.12080577 201.65167721095645 31485 10010 15277898 POWR_20191017 19187939.318573706 2396.429660431864 0.04475912819084571 5.5905869934790006e-06 759584.474457267 94.87501778950852 83537 12973 308100 RVN_20200701 122727058.54524766 13426.789327770948 0.01889185428698168 2.0668379942368607e-06 7418400.44775343 811.6001568171207 32242 8260 199638 SXP_20210805 198643762.08239627 4982.633359140049 2.2908547142271236 5.760096038843799e-05 83516750.97120605 2099.934594100381 None None 79966 POWR_20210427 163489052.79138362 3032.8480820673803 0.3804611308283873 7.057847551459263e-06 5312015.231907365 98.54198145340308 90096 13481 239820 IOTX_20200506 11492013.845546916 1281.4697839458008 0.002658853320909986 2.9596500347641723e-07 1695845.3511027922 188.76967423792527 22603 1818 628477 RVN_20190325 178446095.06239915 44683.86873495336 0.056187835234636385 1.4070770245339118e-05 120797150.09659496 30250.47927550632 22108 6140 283361 ARDR_20190126 53279319.97303082 14941.157829876318 0.05333173620046718 1.495667412157196e-05 676012.8688223737 189.58513075515899 70092 6618 740966 WING_20210206 22689257.59476481 598.7064231680254 25.002876076259273 0.0006550234709460598 8273465.834637094 216.7476370009839 8070 None 427230 POWR_20200223 36182014.85561874 3748.347437745736 0.08445287326889475 8.753749224167811e-06 4233240.641376022 438.78586418455876 82733 12856 297028 REQ_20190410 22664822.013060912 4379.9511039557265 0.03099351270881879 5.9956579466414815e-06 357666.8003296961 69.19021453919937 42186 30444 347725 BAR_20211028 44420497.09142646 758.9777481683367 14.985893663092089 0.00025609025247105556 5816842.274917127 99.4025875438165 None None 34479 WPR_20210408 33660300.60864853 596.5370861838442 0.05510621638010437 9.801080178878518e-07 2632011.9926243913 46.81243290874004 33187 None None STORJ_20200117 15855627.751532411 1821.6447782049943 0.10987227188944151 1.2609377886140745e-05 1270392.7678579867 145.79531485305537 82594 7908 131824 CND_20210916 33474289.664251577 694.5961526855957 0.017348096816337324 3.600313246963475e-07 205266.6546289997 4.259973088948285 36489 6301 221501 GRS_20200322 11882770.678203655 1929.4777414194286 0.15912004709880848 2.5837289753804694e-05 11735368.375884004 1905.543133148192 37642 106858 3912987 APPC_20210805 6951705.38038176 174.63083722876019 0.061304310189108015 1.539999529362626e-06 564088.273393914 14.170221846814707 24908 3125 888904 UMA_20210819 715898856.0416512 15891.045589679516 11.4029793668389 0.00025344352026728873 49761859.738200694 1106.0110258353345 None None 226348 GRS_20200316 9386046.050212532 1746.694503861383 0.12575604238508378 2.3402547450362363e-05 9456584.96446661 1759.8214300640477 37694 106865 3912987 TFUEL_20201129 0.0 0.0 0.009516452786850337 5.377073994589438e-07 3217788.6358930543 181.81446366290973 74689 4532 80855 MDT_20210217 27380715.37056132 556.8272537076977 0.045222048648688194 9.189683321065686e-07 3384614.6819282095 68.77958434033033 22915 81 903443 FET_20210221 196577065.79453626 3518.247160880809 0.2891365742554467 5.142651137008384e-06 49111653.67001085 873.5114270369256 30997 1034 277312 FTM_20200607 13642254.80233313 1409.8518443159514 0.006395221994744637 6.613796514025922e-07 1376192.8185819385 142.3228040190679 None 2376 340286 MFT_20190816 9359639.165511135 908.7443344926205 0.0010428567315332743 1.0125285063984633e-07 470439.6160698371 45.67583517531913 18802 2190 880747 BTG_20210813 1026049403.577287 23078.571645492433 58.59859185746529 0.0013180680514258052 64125763.05616123 1442.3916493286767 101367 None 198666 REN_20210202 551496513.3831774 16516.945033597298 0.6238799033894872 1.8678329042521687e-05 107944936.19386092 3231.761474843041 39227 1010 83739 NEO_20201014 1240097799.9599247 108548.1520284728 17.5894738204712 0.0015393722125163411 277270000.51853174 24265.747714742345 324605 100825 85109 VET_20190626 508013338.887023 43028.46758196418 0.009198681878394437 7.780502177514519e-07 339850682.4740639 28745.520390588576 110772 56349 189744 GO_20201231 7053175.156650292 244.26745308502535 0.006638564457726067 2.3023508065578053e-07 236124.91714454844 8.189155907094438 13343 684 732084 QSP_20190601 0.0 0.0 0.026245640354268934 3.059481696808685e-06 418964.7894100207 48.839162904964994 56949 8599 693082 NANO_20190419 220263194.17580315 41774.63237544773 1.6532232742553992 0.0003134342174140209 6855061.017308808 1299.6494295383472 98298 45208 385823 BEL_20210202 47725355.773072645 1429.6010725652027 2.1152219341914904 6.33329098851263e-05 34456362.69210782 1031.6750588077707 None None 421105 VIB_20210107 3536175.476291781 96.6110259654079 0.019474450539752067 5.272750449824744e-07 792549.4347981669 21.458450806148306 30355 1091 3160516 MTH_20190410 9471948.142372184 1830.9673809091119 0.027711960490513988 5.3608455967202704e-06 1288815.2773843743 249.3197732118912 19379 2011 1241512 ONG_20210418 0.0 0.0 1.312281784774395 2.1773412480966805e-05 19990323.996146332 331.6799600865384 121827 18341 153956 ARDR_20201226 66988084.85083286 2712.605330605319 0.06702624140081842 2.714509004130663e-06 6265848.736404428 253.7618469724139 64230 6297 None STPT_20200422 7726408.431020298 1128.9506166999267 0.011111956512954987 1.6232595936347106e-06 1225535.7155143605 179.0290130483634 11246 None 1265534 ENJ_20211007 1537401815.47634 27696.337534980838 1.6464721039234276 2.968001838820223e-05 146172348.88068178 2634.9659932210507 306679 36798 26263 SNT_20200612 97150510.07017376 10470.53759988065 0.02525516623617265 2.715721264698088e-06 20666957.44611427 2222.345134780182 None 5701 170381 NEBL_20200421 6247232.451800162 912.3042415686631 0.3841689373023913 5.614361812523128e-05 107743.95493810823 15.74602960828614 39389 5986 1629881 BAT_20210203 471195642.3251068 13229.313727282177 0.3164618771270598 8.907965983279148e-06 237918815.54862335 6697.086975940146 131896 51527 21155 POLY_20200907 31129575.648597278 3023.026522027481 0.04523363426998666 4.397459151570799e-06 972118.1922017322 94.50600443003557 35293 5014 332853 CTSI_20200801 10476493.103294903 924.2172446803736 0.052481617603701555 4.633735451748412e-06 1857601.5295871953 164.01236196391864 15740 124 383002 TRX_20210809 5148038779.156252 117021.26248727801 0.07162457044693642 1.628567217380267e-06 1503899332.7108762 34194.98555048928 1083172 115059 26326 TNB_20210212 9507671.953105487 199.39134828775843 0.002789016295880309 5.843243611420176e-08 935602.390965767 19.601723740070877 15651 1430 3046579 TRX_20190325 1525184756.2340133 381914.52393666195 0.023254277603533508 5.823424163153251e-06 238130401.4031692 59633.51591286942 403737 70363 84022 ZRX_20190725 136007689.28112385 13844.47352014804 0.22699845520289383 2.3149212540480016e-05 29583298.73463942 3016.8930860986366 151357 15966 206099 QKC_20190916 31811109.882523954 3087.2820120076317 0.008363580858082876 8.116891499380137e-07 7388111.847143105 717.0194593215388 51103 9238 326472 DNT_20190807 5621442.693841496 491.94205512255036 0.008522264517085465 7.427641329020398e-07 434245.8124123653 37.847008113416166 60469 6308 717960 TOMO_20200306 36999306.18537409 4086.659142325941 0.5289623899604277 5.843022248167437e-05 15016046.052126028 1658.7018817848855 22056 1506 211808 AUDIO_20210723 201961084.53236938 6238.463811223027 0.9459750229211876 2.9220634066603308e-05 28489834.456895128 880.0348921605683 53786 5900 31979 ZEN_20190531 70398670.19895053 8469.864490573827 10.719128480905791 0.0012904283321605989 2842630.780882574 342.21171096670247 25724 1652 229196 AMB_20200223 2956142.0814515087 306.2473895065682 0.020451089305284227 2.1186363846498252e-06 196442.17218067197 20.35048242413576 19190 5507 619062 ORN_20210602 192853154.53104618 5256.187153126349 7.5530855421305985 0.00020590762486520935 6218124.817751494 169.514737413851 69490 None 55511 CRV_20210421 840872666.6596763 14883.88205497676 3.0127388747654726 5.343258097116846e-05 414016911.69530016 7342.817641078941 105136 None 25328 GRS_20190906 16069431.660881585 1520.4304227818225 0.21797170495353743 2.0623564087080826e-05 473706.26501866855 44.82009037432937 38446 107004 None DNT_20190627 9976183.05098749 768.2086347756415 0.01569198184907893 1.2046928111088538e-06 1998592.0513530283 153.43437812768144 60626 6368 1037935 DCR_20210825 2212586807.141956 46043.019243579205 166.6035455870665 0.003469233116993641 19114834.067720536 398.0336381191777 48073 11537 147946 TOMO_20210218 158580844.96100593 3039.27935888432 1.9806591877518445 3.798695663640765e-05 62845176.6707912 1205.3042824143988 39480 1836 133375 XVG_20220112 228100732.928984 5320.906747851089 0.013818890604908131 3.230256901899149e-07 6387139.391666368 149.303599639136 336715 55623 188216 DCR_20211221 972849933.1204057 20642.00212821889 71.50962643212708 0.0015172965641941545 33225742.527632773 704.9862724122365 50652 12467 118301 ADA_20201015 3345133523.040711 293056.49381786765 0.10751534652143115 9.418941541178447e-06 505567704.734604 44290.53907252026 165586 89012 25735 OM_20211204 103090029.6312274 1919.9245634743713 0.2520881483368507 4.692103312837305e-06 68870398.69129092 1281.8810721082755 55771 None 75439 BNB_20200718 2523851243.1158524 275737.6703847957 17.079910599644585 0.0018657143370169494 144813495.0179024 15818.619908587534 1191498 66434 1050 SNT_20200105 31624063.506839458 4302.877340011026 0.008868977001051652 1.2061248044256419e-06 24841960.893190905 3378.3496360737518 110470 5625 276615 POWR_20210916 185179751.9868793 3842.505534112129 0.43092367362389244 8.939140630639585e-06 33224257.340390194 689.208616033298 92820 14245 220278 ONT_20211104 940888990.6881019 14946.944038972144 1.0774500698808906 1.7097343034091447e-05 190852374.6930494 3028.5101929212765 171848 20766 88071 ETC_20210805 6682381881.509254 167607.48951834659 51.715055067872264 0.0013003167856741992 2525157100.9798 63492.22988468391 490006 58720 120880 HIVE_20200707 81003518.62189648 8677.676889948685 0.22410899636415987 2.4003391774836358e-05 6817468.719232135 730.1910018574825 7974 91 120272 MITH_20200127 4680958.990972581 545.3667138397949 0.008179852719861925 9.518400651833365e-07 1992012.6288973046 231.7984804214966 89 2083 1281768 TRU_20210722 44814387.75857946 1395.0439621644607 0.12575328280942277 3.907797293399131e-06 5921832.919946526 184.02161867693934 None None 118402 HNT_20210428 1413900953.8423233 25665.326620423322 17.683118043693444 0.0003210789951284423 11331302.322954217 205.7466988774798 35671 20192 15835 ADX_20210819 71778705.69840387 1592.3576527234006 0.5683380819394274 1.2621356750494939e-05 11834014.99885953 262.803654792277 92535 3893 15083 LINK_20211021 12677182667.867186 191248.06245984323 27.531637106473276 0.00041550508109773713 1198102185.889527 18081.654352270845 547944 69274 25840 APPC_20200320 2434690.907094825 393.4025286056781 0.0222249538167404 3.600335913862544e-06 101271.7006299531 16.405529741138135 24839 3229 700856 GTO_20190725 15381993.82705514 1564.7878253750669 0.023148127854693726 2.3606369089320547e-06 3317868.100250318 338.3548745533231 17451 None 852349 THETA_20210724 5007003856.692953 149791.1081528895 5.023265322155524 0.00015017714002369016 329361657.066327 9846.701004130835 183649 21707 19127 ARPA_20210318 80411079.7781376 1366.3384941061286 0.0818942177656494 1.3893968892987759e-06 28624642.467067156 485.6385503899974 27533 None 701431 WTC_20210614 21715630.428966645 556.2751609684931 0.744125190668298 1.9061770348953934e-05 6777770.025319226 173.62172027078904 65153 19807 502738 XLM_20190528 2662378359.7808022 301886.761201112 0.13782777051637338 1.563076467183727e-05 438817951.6204482 49765.44356670175 271758 101596 74186 CELR_20210314 188522431.33735386 3072.522274834587 0.04771128012431279 7.776376124070452e-07 194815643.10836083 3175.265286775007 None None 259985 CVC_20190626 27995665.05075786 2371.7399185347704 0.08182038362030983 6.920596682641321e-06 4759751.757567802 402.5931041399241 88673 8167 458176 QTUM_20210828 1331019189.194865 27135.225988496906 12.852713975445413 0.0002620086123619192 352838811.5799201 7192.784931345971 253171 16868 227670 NPXS_20190803 131395365.02925664 12487.34368716241 0.0005583112543394612 5.3059896867711e-08 2999816.352054322 285.09177457006405 63999 4687 187000 ZIL_20210624 903898566.5309545 26812.350212037563 0.07437202936111179 2.2067874411265707e-06 134726446.08555508 3997.640400070623 303291 34541 32653 ARPA_20200322 0.0 0.0 0.0066665298797112214 1.0834472510842009e-06 2170381.186479709 352.73126689985946 14169 None 1589260 LOOM_20200518 12030880.666203134 1235.3519346949502 0.014465884583745042 1.4811940340231383e-06 11307564.107866935 1157.8065896313574 21563 None 710421 ATOM_20190830 530134712.0734966 55864.44227113035 2.1736997584309163 0.0002291930240465049 141848057.86052102 14956.336637606362 28174 6752 115107 VIA_20210110 8157407.788438295 201.61828022241082 0.3523025804089477 8.71e-06 345364.9764760117 8.538481159048763 None 2128 3644327 PIVX_20200314 13848624.331264533 2489.3900642679487 0.22115593715321727 3.97543741121047e-05 736044.1505041518 132.30924251378468 63960 8515 213646 SYS_20200301 15755260.545831824 1842.0939481746057 0.027209761304904687 3.181346096133009e-06 345390.68487270206 40.382835212979685 58931 4515 856942 EVX_20190625 16992072.290159903 1539.0113953163625 0.805680407616022 7.294554396532463e-05 1284839.2643227605 116.32813477661074 18145 2913 694179 SUSHI_20210809 1806857653.652068 41074.670349686116 9.36043939714042 0.00021283345432069717 272859610.1834708 6204.158898532931 None None 5495 VIBE_20190903 2801230.5680881827 271.34027726582246 0.014980572764585191 1.4499962313345235e-06 272625.9972067181 26.387954234172 20327 None 1398469 XEM_20200107 303374919.28618497 39066.98044786383 0.03311336803953038 4.270753241131591e-06 49076230.42632868 6329.542494908847 213732 18131 305996 SNGLS_20190616 10583628.354419885 1199.2428986892767 0.017921016169794267 2.030650610472942e-06 1525621.9367047295 172.86994709273432 5 2183 None OMG_20210708 633149089.4848636 18634.438358299813 4.515488966905786 0.00013290013366750757 161581631.91527355 4755.679979984306 326294 5006 166792 ONE_20210620 737749750.5624741 20689.474135870347 0.0719312938565609 2.02033680714926e-06 19074371.083281983 535.7425385622081 None 24934 20345 BCD_20200318 76195820.63580334 14031.260017848585 0.4065949616003008 7.559432373549488e-05 10980048.342566654 2041.415677588548 29035 None 1207769 POLY_20210104 74164279.45964824 2216.9409513217483 0.10065053055014019 3.057641347979397e-06 12184596.885041386 370.15331206430096 35762 5020 310362 ENG_20190523 39193982.24314321 5114.816633275726 0.5065964973696515 6.615002203021184e-05 2419734.0216160463 315.96242703659783 61911 3410 370110 RLC_20200707 55143058.528681815 5901.9691886488945 0.7851384645610467 8.403347856108066e-05 2854674.24327886 305.53617947575566 30826 3600 559121 LTC_20190806 6048990750.293675 512168.6188084609 96.09140932613722 0.00813561548497629 4684187611.882509 396588.51438449795 451593 207318 141428 HIVE_20200913 70539641.39882426 6761.949848461899 0.19137715287241625 1.8327814822113976e-05 4053861.426058757 388.23036300915015 None 90 158511 BNT_20201228 119978029.54055125 4526.382788241319 1.2797840716575601 4.866411886168681e-05 81289398.90490343 3091.050324903397 89134 5291 105312 VET_20200531 379289227.8748281 39188.23781022625 0.005912176737902278 6.100708596799333e-07 203868125.57624188 21036.92229535142 120815 62267 321053 FUEL_20200707 3418701.773618718 366.2706063386053 0.0034555347808574825 3.7e-07 4402590.6143476125 471.40562333 1 1464 None HC_20200423 44903318.502017274 6313.230521319965 1.0072777673004185 0.00014158599730106368 19621221.043382253 2758.0179369364896 12645 838 962062 QTUM_20200725 235004230.84608698 24631.01512352037 2.2888128144211435 0.000239976711478425 181606956.7543817 19041.067923478535 180865 15084 105183 SUSHI_20210506 2398859386.7980027 41903.16810224166 14.368790647647131 0.0002506424932577211 496364396.20509243 8658.34939627154 82743 None None XTZ_20211225 3916788931.191818 77032.30019981261 4.494509990342855 8.84237507181947e-05 209351093.36886752 4118.715707030417 242377 66231 36113 HC_20200412 46447280.39975657 6748.722095903365 1.0415289344117964 0.00015132973726137157 20521277.38213837 2981.654577134285 12677 843 1040016 OG_20210314 0.0 0.0 10.869283696536849 0.00017716018092709643 20378989.28514883 332.16038238275513 None None 482158 XVS_20210430 1153387195.427109 21516.233437023435 116.1783059784197 0.0021674250259923044 703147475.0136193 13117.934725187903 68496 None 10756 CTXC_20201031 764042.4012246308 56.256296556763346 0.07607904806980298 5.617384229279492e-06 6049073.31769379 446.64030266771533 16624 20064 571910 PERL_20190916 16525286.894369755 1604.0187169125688 0.0631631440181118 6.130782285238931e-06 4136601.7106897556 401.509533498107 11354 369 279806 EOS_20201115 2407132205.119395 149602.49364668984 2.5412765232840018 0.0001579800398131154 1373432112.6148424 85380.26375465628 191508 73197 97683 FUEL_20190812 2696263.1873738333 233.92731423067795 0.0030020430493620047 2.599421629156274e-07 68820.83498489205 5.95908733002153 1 1506 None DGD_20190410 42484091.686508775 8212.353458479587 21.226171816422394 0.004106177538620811 617020.7399502993 119.36192381552772 16563 3315 526457 DREP_20210430 0.0 0.0 1.5136394985558148 2.8238351840745967e-05 5703101.119880147 106.39665267732799 3834 None 197188 CELR_20190908 18033254.5473827 1722.462936017605 0.005541419098760572 5.294279130556983e-07 4803278.932342076 458.90590400264955 18328 None 503834 BEAM_20210207 35896477.33293658 915.43410474566 0.441282265467081 1.1221849000210724e-05 10827615.725542624 275.34727364521876 16351 1687 285375 SUN_20210511 0.0 0.0 0.0004128169205737348 7.4e-09 10.48975211050744 0.000188035329341328 53 None None LEND_20200322 26010152.813887823 4221.30247326084 0.022200514305224066 3.602720942388514e-06 1554377.7100656147 252.24591878565363 44127 5740 109064 ARK_20190701 62960145.15414192 5790.758121166638 0.4424536915060069 4.078004548276175e-05 955360.3070471217 88.05359187127027 63522 21846 202264 IOST_20200730 86302091.34617092 7772.22832823848 0.005719607001609398 5.153191718966473e-07 34433625.05170591 3102.3647502445183 199 52171 346780 ARDR_20210127 80949831.03293625 2484.1000191419666 0.08110608241555178 2.489275855958199e-06 6274584.390590176 192.5770665342036 64463 6299 None ALPACA_20211204 112048723.96845485 2086.87073771143 0.7247241872180511 1.3493207230107124e-05 18462879.59649925 343.74933920223367 69014 None 27687 COS_20201101 17459407.361273732 1267.5110993518997 0.005824506894126752 4.22117311981021e-07 125655.09820475531 9.106554984832723 13197 None 292057 VITE_20210127 12224105.095776312 375.0951432539198 0.02123171349144321 6.518446229304298e-07 1437163.4829689467 44.12301856950113 None None 879867 APPC_20201018 3538724.1760379598 311.526448978527 0.032301791977239654 2.8422960234740983e-06 35199.36352130888 3.097258846689687 24391 3163 1443706 XLM_20190830 1224092846.3168392 128868.96527879179 0.06226641363431551 6.564701273946328e-06 110656876.65466106 11666.471485125558 275735 103460 64328 ZEC_20210823 1838220416.4864564 37260.683350357736 159.73066490479098 0.003241212121731532 320460383.5785519 6502.696776531006 77809 20279 153391 ATA_20220105 118155372.27583395 2552.4702837904865 0.6744653671143563 1.4658815892862622e-05 13058649.166531695 283.81640225748737 166739 None 206696 SNGLS_20190605 9478987.761808021 1236.0282096804158 0.01605055348355103 2.0929383374232005e-06 420273.96140251897 54.802314882255736 3 2180 None AMB_20190312 7834922.243653451 2026.484435139043 0.05416704939307468 1.4008742541467443e-05 650725.6659060715 168.29139524754297 17984 4949 683683 SKL_20210718 234601601.7185563 7422.317029645012 0.19318809757990127 6.123949255194572e-06 13602922.64344053 431.2046602990809 None 2304 175658 VET_20210617 7015391572.596719 183413.46481711083 0.10756261848690404 2.8122337014403446e-06 738879065.9885452 19318.055286230687 379803 187696 26602 RDN_20200318 3054906.2826138376 562.3632366586972 0.059572013341404856 1.1075656334699764e-05 352699.1309286182 65.57398591391187 25138 4327 1385636 AAVE_20210828 4904301686.517602 99996.54344993744 372.81168966922206 0.007602438998647946 298894203.8270864 6095.101131783165 277110 12678 14216 DATA_20210825 0.0 0.0 0.17242612324825793 3.5766679353252694e-06 96329.82493303421 1.998187917021217 None 4363 None TROY_20200621 8019449.723250655 857.2115045426395 0.004157034425505178 4.4429688040945116e-07 2598208.7975101303 277.69220680578275 8935 None 743325 ETC_20190830 672179208.6483325 70765.08890732177 5.936474480163962 0.0006258780505901002 904756010.2964509 95387.7473702842 229892 24939 482560 IOTX_20200321 8645283.492676722 1398.4454399264278 0.001997701149429443 3.221842921530263e-07 2880731.1457008207 464.59718227917847 22562 1810 487690 GTC_20210804 105882197.75856963 2756.222245365466 7.432474307689233 0.00019347573854709848 22210843.72485715 578.1734608857261 54497 1075 24142 KMD_20190714 166119628.78496215 14595.40332261751 1.444643735858815 0.00012685633969522833 8031648.435435335 705.2711315240201 98002 8438 312186 MTL_20200312 16580920.414729865 2090.4566847406572 0.25714720835172283 3.2393707539669404e-05 2598862.8367514014 327.3875816465828 None None 606546 PLA_20211221 406836695.77116007 8625.674047728844 1.342871562830043 2.848023492810878e-05 3459815.400445574 73.37734906301661 None None 86021 COS_20200106 12149033.023537237 1653.700190600555 0.009167310527783818 1.2482736673598883e-06 4552872.272785439 619.9452447636179 9610 None 212925 ETC_20201208 715900458.8835194 37272.90958101883 6.154288076552918 0.00032056605410881963 549550946.7952609 28625.143372325834 None 26117 158688 IDEX_20210506 74573282.25855397 1301.6757112543028 0.12834525877016792 2.2411557644547325e-06 7459215.049507855 130.25228174924777 51457 1979 5142522 BZRX_20210909 89346854.93176448 1927.6006925362071 0.3068447457275882 6.619977220432806e-06 13642453.786470931 294.32712977729466 None None 231741 OST_20190806 7931951.036698471 671.5990443075092 0.012211394903848717 1.0338332345833825e-06 381163.87802918756 32.26985025314867 None 758 571534 ZEN_20210616 974948172.0775445 24140.41569736884 86.9787117442723 0.00215418255243434 45406206.43258805 1124.5654908858114 112645 7369 1188798 TCT_20210511 42084076.80343897 753.1425363799968 0.07270718281738384 1.301177933304548e-06 53883421.841081046 964.3052688020207 None None 333105 BAL_20211104 308283629.2287974 4897.387683157148 28.56311254348814 0.0004529945926793085 80915943.81402552 1283.2804881992054 105829 None 6106617 AMB_20190812 3724279.0528545342 322.4958985824444 0.02566051920813673 2.2212762413326336e-06 117450.30698423072 10.166964055761198 19344 5634 834562 LOOM_20200318 10506143.400363153 1934.6786819175143 0.012592649479035614 2.3412312283928826e-06 20410092.5288465 3794.6538639446985 21586 None 494145 DOT_20210513 36142903315.04381 701166.4280662468 35.36632136089033 0.0007050380030600999 3297743471.4965587 65741.48461817527 386374 23807 16901 SNM_20200621 4257637.744906815 455.10554752 0.009734539517453119 1.04e-06 195660.2988170602 20.90357848 29412 9606 7298232 MANA_20200807 77634284.05882359 6598.844901030557 0.05842125833358501 4.9619101430698285e-06 39319064.27762166 3339.497803028121 49979 7105 78107 AION_20200526 41999958.44895673 4721.194392596711 0.0999807121407994 1.1244735965247256e-05 4140076.2593263355 465.63045426754593 67606 72556 368589 OST_20200801 7357270.606909313 649.1426722618581 0.010640701743415935 9.387197660145497e-07 1417195.3861425845 125.02458515951133 17668 751 745612 MDT_20210110 14204121.506424217 351.1690122349041 0.023356224860358033 5.795979999239683e-07 2186025.9992505945 54.247478114406896 None 72 1369225 ADX_20190601 16151914.20604253 1882.964890097658 0.1756811962155405 2.047934045577503e-05 571836.3093610535 66.65955558505576 54364 3892 922905 QTUM_20210624 607117084.8229882 18008.918810944713 5.87001932966427 0.00017424229174236794 262432387.69127166 7789.892688711821 246049 16724 104826 NPXS_20190627 219854793.22928366 16914.58113963384 0.0009195928011743055 7.051706338527397e-08 19272822.158784393 1477.896325469936 62356 4589 216939 BCD_20210125 122461059.09861107 3803.4145608863114 0.6497124983204601 2.0138692552417577e-05 1898439.9267457903 58.84463991811692 28068 None 1665696 LINA_20211120 159998104.3887454 2752.3692330361414 0.05152129695872362 8.85784999006376e-07 18044724.247396905 310.2357082034678 49687 None 130115 ZEC_20210828 1747745512.414276 35630.943441491945 151.85204817608044 0.003096173363856088 331528995.60530967 6759.679950769412 77973 20336 153391 GVT_20200322 2800764.92640047 454.65115862945083 0.6312800680876063 0.0001024763669632837 529259.3147950412 85.9152292356964 20646 5598 160290 SUSHI_20210527 2257542368.3533416 57620.538131975554 13.365404296871915 0.00034092395928947704 1090858014.4259331 27825.54309919283 96255 None 8425 KNC_20210427 381865834.58043104 7088.282619153628 2.777318646838724 5.152140395664904e-05 106628936.15657583 1978.0490436140062 158801 10613 96867 MDT_20211011 25986865.98120075 474.86067179731924 0.04286000344858081 7.831852461759643e-07 6999681.54814904 127.90590003141925 35225 340 876365 TCT_20211125 21322666.974663023 372.99191838899105 0.03688188127247389 6.448000059025418e-07 11025798.009616598 192.76225551398352 None None 571843 RDN_20210114 13968766.353750193 375.1454958381836 0.2090300663983155 5.606704337479467e-06 325557.9327054609 8.732270456836373 26650 4382 1792183 GAS_20200612 22223215.69775232 2395.1394118826306 1.5982381057749713 0.00017182769849923937 9728753.515079778 1045.945106503368 320115 99623 220108 FIO_20211204 106286876.50140691 1979.558218226386 0.29109385549655387 5.428449393962913e-06 287404199.368325 5359.64302380079 None 549 428275 FET_20190513 0 0 0.1176292278025488 1.6904305148819457e-05 10135347.58447439 1456.5343287375802 8253 185 174758 LTO_20201208 33674123.764933184 1753.6982153975723 0.12451813636098168 6.489207409611146e-06 7955690.863159428 414.60729823424447 18819 690 1484481 REN_20210325 779225766.0496982 14741.484820606618 0.8796489019373195 1.667393192169e-05 127021705.24781863 2407.7234237598336 64471 1122 63602 VITE_20210527 66854615.41073915 1706.368381198029 0.10821431965553002 2.7605136284435733e-06 9485104.276974134 241.96205924635655 32495 2303 163733 VET_20210204 1882471072.7061868 50246.90078096909 0.029158592881781093 7.773694710058043e-07 321705940.8129502 8576.695660284955 160074 76840 98520 SYS_20200315 8727498.218214607 1688.4605056738187 0.014851357749282656 2.8664480155393647e-06 212923.70941028438 41.09622531514805 58806 4510 856942 GRT_20210724 1603006257.93112 47948.76401071796 0.5537503697822196 1.6560825286251577e-05 83046401.10818341 2483.6406699746008 124249 16191 33618 BAND_20200105 4148888.2237243494 564.3382808974486 0.22998858501555433 3.1275156715130505e-05 609418.4070407167 82.87218334768478 7633 993 703160 MITH_20210508 67604423.26301192 1179.8257466517355 0.10922536298167126 1.905875079639971e-06 32130955.203555867 560.6535436074628 31499 2676 254910 RVN_20200109 126414791.37070143 15711.814597799312 0.0240542328536433 2.993088055445396e-06 16586599.484298654 2063.884269308207 29368 7307 200333 TUSD_20190312 199283056.49737033 51540.982264716964 1.0026356925417919 0.00025963645614809883 64766218.33289507 16771.466975644293 8340 None 284347 WING_20210117 12482374.283527212 344.02487467686404 14.327941484667615 0.0003954014948651616 3739546.544027726 103.19851565618767 None None 403766 ARK_20190625 75057539.2049087 6799.543667751213 0.5290397671252595 4.7899529399256756e-05 637145.9601005974 57.687519056068105 63464 21846 211362 LTC_20210708 9195601167.515974 270723.4491025314 137.75683223258153 0.004055635306497046 2180673630.324603 64200.205708561625 188254 338541 73715 BAL_20210710 242398140.29098052 7146.880560470198 22.461974253454013 0.0006609839730241853 18118431.507457223 533.1674191962037 90452 None 89492 FIO_20220112 66846880.65136824 1561.1546275511105 0.1428887957044241 3.3398499614739493e-06 2143100.0614500376 50.092329649658545 80022 566 267725 BAND_20200621 26373233.29013215 2818.9224609582207 1.2853216691446196 0.00013732200343650195 2470180.790115406 263.91072607898445 15316 1210 511773 MITH_20190819 9857473.16418937 955.1877457687373 0.020371049051747706 1.974390495538487e-06 1403310.995571406 136.01085957343608 80 2080 648556 QKC_20200308 12845572.393873366 1445.1196421260072 0.003424300516746037 3.8473419808859235e-07 1985550.1459370924 223.08469698439436 None 9197 398743 WINGS_20190105 6965599.619447079 1828.2207088233663 0.07773819189080831 2.0419690541906753e-05 92654.4136209017 24.337772817486226 37730 1219 1720782 XZC_20190524 53957321.962979645 6849.342172541319 7.148745184180986 0.0009090291624192237 5745309.163651559 730.5692736720497 60306 3973 368691 DNT_20190410 9877635.723243002 1908.8418812889627 0.01717508134126213 3.3224989337414374e-06 659299.5685409629 127.54071261548773 60698 6424 1038838 NKN_20210201 18792304.085908134 568.4567400587093 0.028957017808998196 8.755720179863876e-07 4140529.6500932416 125.19700492562683 14028 1026 338143 FTT_20201201 428821007.44395214 21788.38491459816 4.656156780673734 0.0002371802629116851 28659093.610313747 1459.8673707720914 32087 None 5178 ORN_20211216 195634454.73513022 4010.2394207379652 5.988520737741274 0.00012254145574177718 11514678.160253784 235.6216979032709 None None 62828 STORJ_20210117 55441806.20893161 1528.6264140178603 0.38547183950576713 1.0649850474231881e-05 46612532.50074756 1287.8152188619433 83225 8584 104172 TNT_20190124 6680758.54072174 1880.5180545833416 0.015591716642658945 4.388798737411059e-06 608743.854277927 171.35087304960763 17026 2521 1229604 DOCK_20190915 4438053.055359979 428.831879241715 0.007986425031836613 7.716973213488935e-07 2122130.708913545 205.05327190734394 None 15173 184011 TOMO_20210805 243015613.16701746 6111.1667205738495 2.902344364849911 7.298755945050962e-05 9490036.595697027 238.65348943586437 50801 2218 136634 MATIC_20200305 68198391.23433642 7790.233731640278 0.024736986304291428 2.824235053205964e-06 99369845.99842194 11345.108852315405 32104 1555 153243 AUTO_20211202 33260073.418355975 581.9067878291369 951.6272672769549 0.0166417562902136 3510536.169993279 61.39114482940245 80458 None 20328 MITH_20211221 38697696.46546576 820.2369725472107 0.062329962201997435 1.3221422038955735e-06 23613017.79053428 500.8789718342218 37359 2942 264208 UMA_20210428 1564732475.4513552 28403.24136348315 25.940582707508 0.0004709969409864693 62489457.99556846 1134.606107028451 36174 None 123733 ACM_20211204 12176716.166489666 226.76205470615423 6.085830243477781 0.00011349130485977996 1342116.6026012867 25.02839520810418 None None 33797 STEEM_20201101 53040472.20562709 3843.9393075227763 0.14461953170479824 1.0480836608473302e-05 724429.8366079518 52.50072837526027 11688 3851 215994 TRX_20190530 2223489627.968832 257342.47851027126 0.03374328784205138 3.902028677468299e-06 1144659532.421792 132366.89745096728 423614 70694 115818 MTH_20210718 6604472.212673353 208.97023209772107 0.019022065143082783 6.01784115700155e-07 173580.09519008742 5.491398715196844 21812 2057 970963 FUN_20191019 21020201.22155523 2641.23973775456 0.003498776160964825 4.396297890988941e-07 420108.03085278807 52.787602437428326 35642 17315 389622 PERL_20201224 0.0 0.0 0.022950071237648202 9.841649152741102e-07 2055570.1854852766 88.14874849361959 13397 503 454264 SC_20200315 47283073.75097584 9147.59311537473 0.0010782381516536946 2.0810983495672994e-07 2524004.8375857547 487.1560418951528 107856 30203 227333 QSP_20190512 0.0 0.0 0.023641115640543952 3.245916912341053e-06 1702687.910399846 233.77845482584607 57177 8609 818331 IOTX_20191127 17795038.62048073 2482.058031711468 0.004104527539248666 5.735119022481214e-07 1769103.7996536708 247.19095577063163 22446 1782 438791 AERGO_20201226 10164583.058542041 411.8855379509117 0.0384820023334979 1.560110721434567e-06 848544.0516514432 34.40108602245418 11366 None 826479 GO_20220105 41651683.13808371 899.7277781210831 0.036432471545196375 7.91705755109278e-07 1234094.9291583572 26.817836296222154 25171 1171 136613 HBAR_20200903 225558078.14896393 19771.387086585364 0.04267721173870327 3.7400400465036348e-06 8549435.18098303 749.2342786505371 42031 6682 159106 YOYO_20190221 6365732.11684054 1604.724300254696 0.020790848519561957 5.237252138906102e-06 5497365.7118827 1384.7963110220064 6875 None 1519416 DLT_20200903 4191459.6050299425 367.4041337331453 0.0514293872340793 4.505994599211562e-06 164854.13366844674 14.44372324692 None 2556 None TRX_20211207 8903699478.044302 176400.49584818017 0.08753469008351641 1.733113939909721e-06 2228571094.2235117 44123.851078853 1289989 120976 23366 OST_20190906 7197477.886563726 680.9638472816767 0.01078631158196491 1.020524891402486e-06 277652.34579723125 26.26951093422314 17992 754 572437 XRP_20211207 38940210511.585495 771278.29943366 0.8241786091202077 1.6324284530580752e-05 3785804089.062999 74984.40561672811 2282606 340041 19483 NAV_20200411 5402818.236171084 787.2888860332167 0.0790373972029852 1.1517186342178597e-05 405821.2985558395 59.135544470029274 49279 13946 1202030 SC_20190621 126205237.69044359 13212.876885148711 0.003066499353422888 3.210427646794311e-07 4846308.24802424 507.37731175378735 109572 30866 233756 RVN_20200704 118048623.33464451 13016.505938166954 0.018098508816051302 1.9967173278884365e-06 12363403.908592554 1363.992087241824 32350 8287 199638 STEEM_20210221 177901118.65308893 3163.5126659264083 0.4707897970545111 8.37178257926041e-06 5679200.638732902 100.98993918078395 12466 3878 182454 STORJ_20210125 59126412.18315195 1836.357277044948 0.4119322848792309 1.27683824138257e-05 36991038.99618383 1146.58585676645 83428 8623 104172 POA_20210127 6569129.955026266 201.5729349697406 0.023457318775485913 7.199427655025739e-07 104875.8558853607 3.2188083575631037 18217 None 322201 UNI_20210616 12276513822.119081 303985.86365452054 23.577694536943426 0.0005841755202678546 267487502.67906892 6627.435553457275 546226 46862 1420 SC_20200113 59458588.99279018 7289.117769953924 0.0013997766571326499 1.713991934064241e-07 2265435.670359499 277.3970008966674 107581 30216 203685 STRAX_20210722 140544142.27285418 4371.330637278212 1.4108705660244167 4.374042679681269e-05 8286907.957858535 256.9143475180861 157536 10762 180987 XVG_20210624 360955326.83888406 10710.366369164762 0.02193329461721368 6.508107889429871e-07 24598237.87411885 729.8857229090671 320321 54416 100105 DNT_20200314 2494505.304188045 453.0922970584402 0.0034139948002297423 6.136901783065647e-07 127278.94313375338 22.879307637248854 58996 6096 762988 LINA_20210513 197400545.62797377 3827.209582423417 0.07741080552349543 1.5358131140746656e-06 51659121.19572859 1024.9054412680398 37224 None 64342 VET_20200713 1161191536.415444 125155.37342834703 0.018141176637207858 1.9525128491648477e-06 207555549.73374856 22338.952201117598 127133 64637 180669 ZEN_20210203 378609857.0329545 10629.870332023496 35.470237326719264 0.0009984383281604315 41275495.63779592 1161.8483541284459 85203 6510 437186 IOTX_20190916 18114507.743933484 1758.2421665154277 0.00439672518056638 4.267578074066572e-07 755654.4095281461 73.34582120182964 22536 1767 600073 TOMO_20190905 28105872.045173094 2663.435798842599 0.4358427029283317 4.126546983919466e-05 2540150.065013056 240.50072466639622 17038 1316 270545 1INCH_20210421 788079136.0496523 13949.409198358833 5.008304342374768 8.882503211401828e-05 280156896.0722755 4968.736640070871 None None 71599 ANT_20210702 122629202.87822774 3649.6032618453705 3.4970154083915737 0.00010397644588753003 21004569.658852864 624.5269881521842 85232 3039 102952 XVG_20201224 100369430.23894678 4292.555515622882 0.005979732725950459 2.5644580573098575e-07 4661058.742209615 199.89337642434668 287902 51320 245482 XTZ_20200425 1923388327.5519197 256509.46585971702 2.7113213385353627 0.00036173793747507136 278099189.6178893 37103.32148243519 60171 23901 97090 REN_20210814 456494679.0028845 9577.584573974415 0.5187159347303576 1.0873342329630386e-05 41805994.12442034 876.3387725531064 89007 1187 110606 ANT_20210727 127897156.84630428 3408.63688899108 3.6242528206031364 9.710539425903965e-05 13612592.533844404 364.72515310525205 85837 3063 128582 GO_20201130 8080237.386364561 445.44385351251003 0.007707856827004477 4.242139169394039e-07 273299.3007465917 15.041453087234991 12132 680 694072 ADX_20200502 7418632.710740532 837.2114536492339 0.08071003259796121 9.134316455484671e-06 4406318.005586906 498.68277549856407 51744 3755 29399 MFT_20210710 73687409.85988034 2168.8318485292216 0.007833657642123534 2.305013879016213e-07 7980180.637889862 234.81275245526632 34327 3528 286530 IOST_20191019 52482862.335655354 6594.600122566235 0.004368542531715721 5.489180626399722e-07 16856099.04663728 2118.0101063852308 193856 50865 92692 EVX_20191113 7232007.994063567 822.0384050039535 0.3333391982000948 3.7877411291065316e-05 2222755.405912407 252.57221822032676 18096 2896 520642 FRONT_20210617 34505077.612860605 902.1193506198337 0.7807475006452634 2.0385640748959606e-05 11355044.672148032 296.48492141631795 65619 None 199058 APPC_20210722 5383340.29641594 167.4375038906377 0.04743609289174361 1.470634513628524e-06 71367.67040332325 2.212571754 24914 3127 778412 NAS_20190318 39197393.93045093 9843.054566603694 0.8619733532068067 0.00021646516707845586 2828801.5952449394 710.3897210608841 23616 5161 598776 DIA_20210511 176792809.13918257 3166.430458936349 4.257026557939119 7.613827063008821e-05 56627090.08603496 1012.7934724588991 None 372 348922 LOOM_20210422 120927109.35419981 2231.7857053910266 0.1445066596645807 2.669085681846818e-06 7743864.9005156625 143.03173968658672 31696 None 252037 LSK_20210823 708664193.5896381 14380.956974439043 4.8934149976919485 9.930230873303093e-05 34399055.109118186 698.0616996885328 197102 32665 274824 SNM_20210825 123834408.44287343 2568.72073456 0.2811084044364326 5.86e-06 3971059.9586879937 82.78091651 32385 9713 None ICX_20200421 119966867.87724265 17519.16280633651 0.22305870073480105 3.257912414519945e-05 24702441.05812791 3607.9466583060794 112771 27536 102592 TKO_20211120 125598789.40849335 2159.9713202621297 1.683741505008542 2.8868040007211217e-05 24472025.7361812 419.57712386854615 339793 None 26966 KMD_20190608 185175343.99116462 23065.241360358792 1.6186667730727755 0.00020161938948361333 6635060.510660642 826.4559893366542 97009 8390 375668 FET_20200422 4951992.823181872 723.4984227821408 0.014574226921367268 2.12903584011844e-06 1983984.36376556 289.8248970241222 16672 369 956265 TNB_20191017 7550015.8392809285 942.7770544237015 0.0026105385654430343 3.2606629172294876e-07 413209.1587630515 51.61141072089919 15491 1464 2346363 BEAM_20211002 56291123.3651997 1168.8366247137847 0.5758908529836353 1.1956055283377265e-05 7095097.226367357 147.30113221957245 23509 2737 295538 GO_20210703 19741333.512063485 584.0972803845847 0.018191244922209502 5.372275777041014e-07 448390.67628373345 13.241965457290751 22267 1097 133372 EZ_20210821 0.0 0.0 7.261742025188535 0.00014766061483865477 23232694.64661016 472.41474070240236 36477 None 158506 AAVE_20220105 3462708482.666727 74765.92509896184 253.83477365594015 0.005516025749199157 394924743.6127136 8582.01980519947 396163 14806 14216 LRC_20210107 509190573.20399565 13860.732916020252 0.407166205999965 1.103151160127552e-05 559697383.6952871 15164.097831436058 47340 7616 277317 LUN_20190730 3939968.0500671547 414.21261513041037 1.4579928728127833 0.00015322392551865796 192329.31988250656 20.212343924479125 31106 2208 1689451 WRX_20200323 16554124.893918695 2838.0548237946505 0.08819507259599241 1.5125490903760254e-05 8429306.1932729 1445.629448431938 None None 25580 SOL_20200518 4898008.357759836 506.59920699881985 0.6159337448626931 6.344490165446174e-05 2950437.821089827 303.9129434909883 51597 1837 132466 ARK_20200411 22900761.746607073 3339.9331783036364 0.1546356580103634 2.2535383750411145e-05 888540.4343835169 129.48888971809865 62448 22005 82800 WAVES_20210106 558842090.6723677 16450.8874643259 5.582756289267262 0.0001637805405623779 89675292.31494914 2630.7915103991227 150760 57230 144968 ZRX_20200229 149575978.20884985 17088.96072829871 0.23788139659776886 2.7301613459951893e-05 46780384.159056544 5368.977919606671 152782 15988 118984 XVS_20210513 1026865711.973711 19908.913018581374 103.73337924551447 0.0020139636385250116 259077576.1102387 5029.941390497784 90909 None 9693 RLC_20190806 20592598.154721215 1744.650729224286 0.2940390655887127 2.4911643802565145e-05 196586.6590418363 16.65525911185096 24902 3316 861371 SNGLS_20210805 7801952.168277642 195.9791375269562 0.009142560038980011 2.2987937008125458e-07 111848.4385159808 2.812302952455549 9469 2135 None FIO_20210511 70635426.76660033 1265.3160420865918 0.2998066321120713 5.365628176591939e-06 7214188.76613188 129.11206880954018 None 439 101174 ZEC_20210909 1573065994.5237806 33940.98914507162 135.63894120648848 0.002929761281793086 531555729.11870044 11481.447587507157 78371 20454 170452 RDN_20190608 17675643.667562578 2198.6617357494033 0.3494576291545257 4.352806582096848e-05 582069.4800050313 72.50194737294599 25594 4436 856737 POA_20200626 3740273.3953539967 403.9608832860016 0.013508659765776379 1.4598983798459838e-06 405223.76049956016 43.79305731921399 17199 None 532939 RSR_20210117 378790505.0383131 10443.90886542672 0.04057025513065514 1.121051128292686e-06 221184075.90516567 6111.833831345614 53945 None 125159 PHA_20210513 143940601.8870854 2790.7260797559857 0.7952637948092242 1.5853817310452026e-05 47044327.59119913 937.8424869735786 45379 None 179387 REP_20210821 184206952.4957013 3748.7582056730503 28.025942772116743 0.0005700420672226624 51388635.74200228 1045.2345667125219 152941 11326 187615 DOGE_20200430 318102189.9086037 36282.59797644703 0.002557959586873465 2.917597623493074e-07 242370965.82979512 27644.727365417577 140237 153809 112062 XLM_20201228 3212566053.342419 120983.57446359265 0.1450112487851189 5.51409007460198e-06 737765973.1526512 28053.74109954962 304273 115126 34884 SYS_20190804 18549283.001426294 1719.4836510239213 0.03309458373909212 3.066604283290335e-06 396605.84467162675 36.75021845376312 61003 4588 678710 AION_20210201 34913024.85634234 1056.2436522414598 0.07183982155649471 2.1727753544896256e-06 3145218.0306529794 95.12624159464343 68098 72549 360629 BTS_20210418 389728449.47330123 6465.018520444891 0.14302894293402654 2.3794461594515366e-06 143445381.0210515 2386.3740719879384 4918 7080 102843 FTT_20211216 5452376941.217205 111760.82463888577 39.3751034329155 0.0008057157272323164 95532283.44082604 1954.835835741438 None None 969 NPXS_20190701 201881471.60204276 18607.818494875737 0.0008448848703850975 7.833098482901188e-08 7963005.985075097 738.2663873788433 62753 4598 223593 RDN_20201031 10532797.828989943 775.5278990935007 0.15709246645080185 1.1599103379549386e-05 188933.9800896104 13.950158250621385 26413 4383 2015921 IOTX_20210704 203642193.74061885 5874.2557875827415 0.021420118133175996 6.177298259124278e-07 46393743.616997465 1337.9384273126961 None 3233 211014 NEO_20200414 514949695.97794396 75161.38131752465 7.2947612087053 0.0010653303900115825 365393359.3228153 53362.21966121152 321352 99268 235469 FET_20200903 74391342.23469841 6520.659161851241 0.1083243961796895 9.493065812402906e-06 9953168.33179932 872.25117653978 24122 598 239426 WRX_20210725 442464289.50544775 12950.57101224496 0.9775537564268678 2.8612205868733935e-05 9753769.120300312 285.4849139818231 295818 None 1290 ONE_20200217 25173051.916823935 2525.1614558557617 0.0059761419532508835 5.995757753281867e-07 13503954.360747265 1354.827908904858 71085 None 386228 TNT_20200414 17185571.508131746 2509.2371088687332 0.040154908786072065 5.86424194213454e-06 601509.7193209429 87.84476496848484 17582 2564 952681 RDN_20190830 8468728.169058822 892.9353795831964 0.1676019646125359 1.7662482335575355e-05 471748.6312375143 49.71452384419862 25576 4393 818070 EVX_20211002 13249364.611192426 275.1792943986947 0.6078904882924606 1.2620398894355053e-05 346372.5029593465 7.191030683276683 18394 2789 2495994 FET_20200806 55146701.31097389 4707.562624705396 0.08685839629077816 7.4116769942055765e-06 11936576.612223305 1018.5549589266451 19742 487 424250 FLM_20211125 0.0 0.0 0.5835826486644842 1.0203642551668986e-05 13474601.909555046 235.59648616314908 28438 None 52221 KSM_20211230 2520395513.982151 54343.00634980817 282.57938780617127 0.006072281344159013 83666921.60928111 1797.8986052575658 None None 86184 VIBE_20200411 1514054.6403474705 220.81542016 0.008097047668376172 1.18e-06 32255.887865222485 4.70071923 19209 None 1554973 RVN_20210828 1284666584.6258502 26190.24457098896 0.13522900986162587 2.7567068941711985e-06 89456170.70196971 1823.606064649999 69148 50615 58921 MATIC_20190712 31441314.491103597 2770.5827794634324 0.01446671453258537 1.2713231924486031e-06 27648674.35241354 2429.7431780732322 20481 901 197160 VIB_20200418 2148653.4304916947 305.221911009831 0.011769324267843124 1.6718636860405225e-06 416959.6593175629 59.2302240207214 31263 1105 None AE_20200725 57419417.63942351 6018.183328736111 0.15841870813504957 1.6614822862864158e-05 12340008.63420268 1294.2098821353177 25411 6350 364540 SUSD_20210731 197573611.50414184 4733.435089861083 1.0122245883681245 2.42324616245385e-05 144586394.347878 3461.370423844247 144914 7341 46239 ARDR_20200423 34153041.94345964 4801.783787621038 0.03417252408145843 4.803392926397112e-06 2029088.9519307194 285.21485552256524 63975 6348 1277377 RUNE_20210217 930103853.9481509 18912.383609832043 3.9142311033219537 7.954836235450361e-05 48817788.34553811 992.1169737168973 36635 2647 124938 SUSD_20210408 253699552.26531416 4504.060011135612 1.006003181513909 1.7902634054389903e-05 17094976.831113137 304.21883349825276 107935 5837 23689 SNM_20190726 5947404.315720886 599.3648490843237 0.01404630070569951 1.4182656753730368e-06 63292.40283934985 6.390682097707695 31166 9956 14424702 XMR_20200217 1553607761.0973206 155849.69466048785 89.01514183513278 0.008930642021179531 173147791.35436803 17371.43714501658 320760 165709 77626 QTUM_20200801 247278436.30917835 21818.095211118605 2.410407546911049 0.00021272735298355144 217820218.18930912 19223.437339918557 181310 15073 86277 BTG_20190812 272213553.567754 23587.634758730463 15.54965515356846 0.0013468685913097507 10259953.239733595 888.6890821969547 75038 None 277231 LIT_20210401 166631489.13894942 2833.0449925414878 9.233167179717249 0.00015711967759880375 75087793.56008486 1277.7598072395515 None None 94250 QTUM_20201201 301184526.6458435 15328.427911602672 2.9201377537794033 0.00014865461767715835 307024478.4706746 15629.607338049882 187261 15019 192926 CND_20200511 9630532.366977315 1099.8673316455827 0.004906674559281569 5.594638850334514e-07 145100.93064581358 16.544551589939232 34499 5931 366061 ADX_20210617 82848966.92916477 2166.0480548464407 0.6775070984802591 1.7702114949175996e-05 1464876.8712704082 38.274755821430894 58626 3858 12658 CDT_20190623 9122956.007633556 850.3165904597923 0.013521347898747342 1.2605540402762437e-06 910059.0912108849 84.8420344559203 19717 295 372453 DAR_20220115 0.0 0.0 1.5425587102165204 3.5764343705225934e-05 19032454.948952682 441.26894868917384 122575 750 20937 AERGO_20201224 9541630.04728819 408.03697966328735 0.036468083650167446 1.5627232540018338e-06 1431229.8259701454 61.33078316700291 11332 None 826479 SNGLS_20200410 3995041.2777456758 547.9077660094362 0.006195975869470993 8.49759254253778e-07 89197.11827839739 12.23311360576819 8946 2128 1305089 ONE_20200530 19307014.8461916 2049.7999953525114 0.0036731425188448524 3.91835017849062e-07 4142909.4006875916 441.94772477164435 72143 None 176675 FET_20200411 5031694.281734447 733.8412084539254 0.014826141329753607 2.1604384566423773e-06 2359878.237479667 343.8771817865326 16632 367 974663 GALA_20220112 2423444132.0768576 56531.69137085821 0.3210544771708984 7.5037570721965305e-06 334332113.65509796 7814.084962803496 269921 None 3011 QKC_20190920 29582633.88865705 2886.7565236500795 0.0077779945737071286 7.588838900048225e-07 5591520.6326131 545.5538556254374 50990 9238 326472 TRU_20210616 94650306.13491811 2343.5969279803126 0.28328454365512873 7.018790531778895e-06 2810570.401815258 69.63600862451005 26669 None 102070 POE_20191102 5821227.261835965 629.3045457191683 0.00231260405703685 2.5000436850886336e-07 19238.455006355714 2.07977573174062 None 10673 855279 OMG_20191216 98327020.48655844 13817.274291038862 0.7000070924088749 9.845111397222277e-05 69649312.89296564 9795.689952391444 284745 42494 None THETA_20210325 11365538756.93229 215025.3969655941 11.330151514363168 0.00021476543038575395 2191487662.843415 41540.11448999498 114523 9889 29341 BAR_20210930 45963560.45489025 1106.452009894716 15.579533854828925 0.00037481191075536486 7303387.669346295 175.7046592563096 None None 34977 ZEC_20190627 784817810.7891723 60429.800026579695 114.01725550433297 0.008779814859469642 1141654958.9290564 87912.30001507633 57 15247 185342 MBL_20200905 5625784.7657982195 536.2344428708288 0.0015970786070431304 1.5229094736240105e-07 3401317.0744878748 324.33581995859777 None None 428070 HIVE_20200621 90671773.25881888 9687.016424362242 0.25201804644381803 2.6924619067152808e-05 10458200.834596684 1117.3131352006894 7656 87 99356 ZIL_20191213 48771746.7763695 6767.714022449176 0.005229631555809163 7.265111279077177e-07 20985144.784636945 2915.299298639481 66676 10542 235812 AST_20190512 5864689.349246052 805.1789347405959 0.035084052107650865 4.821449829355173e-06 777908.5818480941 106.90461830626188 31622 3592 464238 BEAM_20210408 96346974.62606822 1710.5537807892574 1.1187193779512776 1.9908509238387064e-05 29645612.252728112 527.5674642303217 18605 2101 182243 HC_20190905 90152251.52261293 8537.398850329571 2.037430257177261 0.00019288137796322257 48974957.90874525 4636.407716952715 12914 852 399646 OXT_20201208 0.0 0.0 0.30264760022698006 1.5764381807198017e-05 7541359.265616967 392.8161555527778 52693 1764 130309 VIB_20210422 23229858.887141638 428.7263879994461 0.12718128897396058 2.3513755920821936e-06 2781666.010020954 51.42848931675085 31839 1224 3723426 DATA_20211125 0.0 0.0 0.13293227711261896 2.3245035128577614e-06 247254.7339713641 4.323588748880221 None 4754 146837 ICX_20200701 160422563.19949904 17550.372812561873 0.28969786423886545 3.169320710872984e-05 28786501.795180745 3149.269207515576 112774 27767 182019 SALT_20190225 12318741.697208567 3277.9539154061795 0.14840305610209217 3.9615202331956764e-05 862053.5790274766 230.1194318442308 42776 None 344605 TCT_20210420 27431705.53064064 490.4625127604442 0.04739279510215954 8.473548735999132e-07 8296789.710383193 148.34164520518988 None None 341028 CHR_20201228 9677375.6921074 365.5414254304394 0.021496429069092934 8.16590118379698e-07 2092792.97327609 79.49943947894198 36317 None 874188 KMD_20210731 97207327.91375297 2329.924683355421 0.7670046603327902 1.835015667548554e-05 6736096.511480244 161.1573341851958 114295 9442 249943 QKC_20200725 45980023.18996075 4820.248312764533 0.008652663206739178 9.071954740547543e-07 4639812.558003919 486.4649013271653 50443 9214 404576 DNT_20201031 7168737.569461381 526.7728424508215 0.009561477096728065 7.059826853051263e-07 210774.63791971456 15.56278840260949 None 5960 595122 XEM_20211104 1886605560.4184585 29918.5354094144 0.20964415995078906 3.3242333696638033e-06 175918562.4708545 2789.4617042810683 373395 22353 163257 OGN_20210221 79529530.77760094 1418.2511023882653 0.37948221687317685 6.74811270812255e-06 42692084.587604225 759.1686401424578 None 2828 162285 QTUM_20200312 186329595.56840053 23501.32730127127 1.9431809656245733 0.0002449174894003203 411062314.84778446 51810.0742651337 None 15173 105986 JST_20210421 199305421.6885287 3527.809271186674 0.13861694405114125 2.45862288986216e-06 776989417.906734 13781.316426521264 42873 None 74075 RCN_20190329 12668044.673673937 3146.479852987133 0.025309714993411433 6.28626537318467e-06 862429.3618167788 214.20469710614566 18677 1112 1862328 DGB_20210202 404245696.3104927 12102.704524843188 0.028881630132675366 8.646865974872338e-07 29487559.90042768 882.8275177464826 182024 24646 203281 MDA_20201014 5005483.342295825 438.12475984346327 0.25499646025101197 2.2320405577500732e-05 65508.70296219058 5.734122024802949 None 371 2440622 POWR_20200607 41516145.97244245 4293.507586350726 0.0966136849815079 9.991572668829776e-06 4651146.632058095 481.01125194102923 81684 12743 204075 MITH_20200511 2240412.8802223313 255.94776976952429 0.003619086078094213 4.13372455584834e-07 6596793.059611873 753.486512117649 96 2092 1209693 BTG_20190324 228640002.47010663 57129.4275609869 13.100424949165422 0.0032711259391667055 2803477.449896654 700.0175827739156 73072 None 417963 NCASH_20190621 6213050.875444673 649.5226608290434 0.002140896425236004 2.2386285905276887e-07 471053.19362356747 49.25568254843753 60241 59150 1027921 BTS_20200106 41464646.42661981 5646.48619149334 0.015327053688629619 2.087231711189495e-06 6847682.13708333 932.5144672305299 13429 7074 164452 CTXC_20210421 3702596.037594561 65.53786905655933 0.3683310594998806 6.535252609633315e-06 12844618.223115176 227.90047865182626 19431 20486 377528 REEF_20210221 0.0 0.0 0.035494705036695134 6.313171748845221e-07 191041780.42528608 3397.9140544572465 56982 5415 58276 ONT_20190615 870962292.7830577 100135.76468965696 1.418300160661388 0.00016335074925573196 131342991.98771581 15127.246506605481 80384 16235 249314 DODO_20210430 445391446.2661232 8310.944307660067 3.872547539185929 7.225673728203852e-05 181342567.8941488 3383.618187714294 79824 873 26612 GAS_20210804 110014723.53610665 2863.4276329819254 7.893068101311344 0.00020547873276896 11496867.191925274 299.2957454677678 408639 112549 120320 STEEM_20220105 175200719.5281248 3787.3038614289335 0.444964655034595 9.670852315056425e-06 18483226.063142132 401.7140407445442 15070 3949 170410 KMD_20201228 65384655.60599973 2462.7285610776757 0.5299579169664993 2.0151786253712996e-05 3754544.8374084188 142.767534215776 97099 8415 269586 CELR_20210511 266393435.42636153 4771.213784666177 0.04720572766207996 8.448391573455905e-07 61249275.378134646 1096.1760100153765 49865 None 140241 LEND_20200629 151706016.402526 16639.198614814344 0.12084038851696682 1.3249749856954261e-05 7393151.279203002 810.6346421611123 47486 5750 78862 CTXC_20210729 25646202.563214906 641.3960671039599 0.14154068755561688 3.5362628418808377e-06 8120541.715696796 202.88420539060934 20189 20594 753985 FOR_20210318 37944944.68242509 644.6855361112745 0.0672364904741637 1.1407175410051253e-06 11319010.27670168 192.0355074810511 23514 None 130989 BNT_20200418 12753870.90328098 1811.6477153000897 0.18285023017130525 2.597330679007601e-05 7156471.186050413 1016.5544854687107 None 5015 138596 BTG_20210710 811811050.9110982 23886.211910866772 46.288973826301145 0.0013620294885151403 36678801.540421195 1079.255061667895 100533 None 156251 CDT_20200309 3347960.9419459132 414.4287195443971 0.004890658505377109 6.079451265951419e-07 60073.18424579115 7.467542369013701 19269 290 235568 TCT_20200725 5058338.177380509 530.5549577041202 0.008654524047053866 9.073027084855097e-07 1905663.1098875415 199.7814428224356 None None 700075 BCH_20200308 6048143786.889593 680436.9828224555 330.61262555538326 0.03717988752009253 4139093585.079852 465472.34446927096 2618 286432 124622 FET_20210624 141098158.75884512 4185.395781116412 0.2050194063093258 6.083392572681607e-06 29526395.442244817 876.1153783676804 66567 2917 113407 RCN_20200903 29759625.780151796 2608.534416335603 0.05795294280524449 5.078736826374844e-06 484260.6619303863 42.4384395038511 None 1136 1085396 LUNA_20210203 1112902950.9714422 31245.921999128088 2.316992209204026 6.52403319733773e-05 317687330.8159462 8945.229441789379 21816 None 115872 DOGE_20210325 6729987270.272253 127318.69184786001 0.05179852533280884 9.824336587374498e-07 1043427664.3756895 19790.108914378492 677818 1225544 11688 HC_20200320 45687441.52934439 7387.34414326686 1.0217378375597845 0.00016551662880612744 39697924.78333326 6430.873399412568 12745 842 891141 WRX_20200404 25843411.724638883 3842.9134635279743 0.1383879710806963 2.0566324591005146e-05 39790379.251739785 5913.388634141389 22275 None 25623 XTZ_20210620 2535402711.714129 71120.4461994883 3.034796600028382 8.523843996849684e-05 74092665.40224545 2081.0433265729102 121803 49012 78747 SKY_20191216 7424015.918271187 1043.205755772833 0.43609815480441544 6.133416304966171e-05 95340.50778369649 13.4089772800469 16350 3803 738943 WNXM_20200905 40243145.5384263 3838.345414933968 42.88603205596535 0.0040902057020763645 26471377.549824223 2524.677014996698 10449 None 105276 AST_20200208 4195742.580660988 428.3197186357382 0.02435994514286834 2.484789242718732e-06 4540712.397229902 463.16661440510654 31799 3493 387737 STPT_20210422 91043224.74360517 1680.278519373757 0.08812163803357125 1.629226047935915e-06 138628205.67470583 2563.010501209756 29240 None 910650 MATIC_20200421 33327758.3326161 4867.940576946611 0.01207716911987609 1.7649942649226736e-06 14670525.722409295 2143.9952944633956 34546 1627 177145 SC_20210218 576073420.3078028 11048.48131972581 0.012248743686939961 2.3491800011005045e-07 49157324.62463196 942.7857000462747 112265 33543 91836 CND_20200607 14015051.832610179 1449.4055254154014 0.007264450740159017 7.512733572197944e-07 78377.4200847289 8.105618665946311 34427 5936 343900 YOYO_20210429 5915316.689799629 108.06620147387163 0.03435082207205422 6.273878162223715e-07 1048237.5512575527 19.145144962943647 9810 None 783243 ENG_20190207 19005111.78719212 5580.326638872048 0.2468898035614349 7.249237800370296e-05 313889.9111162656 92.16511074960978 61169 3161 201160 APPC_20210511 22756738.511842865 407.27650521365047 0.20168420366198417 3.6095347134873395e-06 1616528.8664664242 28.930957174236706 24982 3132 605717 TRX_20200109 923243641.2377441 114726.27034313475 0.013960137357356978 1.7397359673291337e-06 1149165537.19655 143210.95604566837 493258 71731 62423 SNT_20210221 430143709.3598436 7648.996718126061 0.11084795938477816 1.9711451291638803e-06 98617328.00199734 1753.6548874799373 120754 5795 158734 NKN_20210708 148238460.74613875 4362.859403858 0.22848200377870975 6.7246956122269395e-06 20904228.45379171 615.2544665896421 28441 3267 105019 POLY_20200430 13694268.928293195 1568.551990149668 0.021806104451428002 2.4922185606342143e-06 4617677.322939487 527.7541046766776 34742 4986 378789 CND_20200629 12665586.63102642 1389.1014018429905 0.006571413291264256 7.20015794753489e-07 51493.21327650228 5.6420019923231415 34310 5940 350582 SYS_20190321 32663286.74779403 8082.609575490535 0.05939683836455741 1.4691052454225156e-05 755199.9835850181 186.7891099553502 62450 4614 853485 ALGO_20200903 375677247.1783015 32930.14524037399 0.46821790251223633 4.103252378827752e-05 237622884.7729074 20824.207318362074 25902 1257 193545 AMB_20190803 3769852.318091205 358.4572412879478 0.026091918618379718 2.4790908584385003e-06 127889.99154517529 12.151306830387075 19372 5641 834562 CKB_20210202 132053101.99071172 3955.445021774186 0.005611349106939608 1.6801218897138075e-07 10356416.579955833 310.0866095367334 22251 606 367403 CDT_20190706 17045087.615997065 1550.8504732532115 0.02526773433865927 2.2989895176818606e-06 3869231.9031268707 352.042785773602 19778 298 343226 FUEL_20200711 3770163.236411576 405.8674286454816 0.003713672280313528 4e-07 578321.0702115572 62.29101833 1 1461 None SCRT_20211120 1085399156.4833994 18673.91077192382 7.296842567504358 0.00012509366556614205 10091149.27051916 172.99795635526272 120105 None 63398 KMD_20200306 75796702.02797322 8369.65026580368 0.6385384414748063 7.053420792594676e-05 2624468.307057765 289.90391375265955 100034 8408 149248 VIBE_20190626 7006854.75955975 593.6075141095223 0.03750820774572253 3.172083186124496e-06 1057251.4511083285 89.412151449676 20509 None 1430855 BNT_20210428 1240426301.6386123 22514.40832015653 6.651850070229432 0.00012071101388617085 175948098.1351181 3192.927244750878 112666 7034 28639 GXS_20200229 28957930.578504533 3308.425218773432 0.4427351756266876 5.0812652031475044e-05 9143323.225544693 1049.3778833210495 None None 811785 FRONT_20210428 82234226.70352398 1492.7271121702977 2.1951246936723168 3.9834891734205335e-05 30098960.46172277 546.2053407540209 59790 None 149576 WING_20210210 30598378.202638686 656.7241949655242 32.115309341507064 0.0006895466136263219 22088759.923139956 474.26694360127317 8244 None 427230 YFII_20210724 103854933.74839655 3106.4855080962448 2614.011189826703 0.07817634980190065 28856120.048187558 862.9902364581318 17579 None 545530 EVX_20210204 8992332.438692117 240.02325580860318 0.41180075032236046 1.0978627560519397e-05 2287884.094469313 60.99509861298785 16857 2809 1099607 WTC_20190716 56149250.779198915 5125.997027469562 1.9273814495813708 0.0001762275716655327 11492812.653799107 1050.8301125476908 56149 20056 613904 POLY_20190329 57858999.37442542 14371.111534282314 0.11967581669666287 2.9724993542876662e-05 14283947.730658313 3547.8366956692403 33840 5028 275079 FUN_20190930 20711321.15253137 2570.0317080435893 0.0034484934235524934 4.279835821978425e-07 530028.948848633 65.78051929793449 None 17355 353342 SUSHI_20201124 186214678.00734264 10170.830242400147 1.5116538984733374 8.237935566537312e-05 152953112.66034126 8335.359622131375 None None 58279 OGN_20200410 7272547.245520893 997.7491608196956 0.2545112109982882 3.490580472838459e-05 36667169.60913626 5028.843551915976 66325 2192 102776 FXS_20211221 498771655.00421315 10574.861523141848 13.972848009907805 0.00029647692674724004 2313534.05617569 49.088737415141395 None None 80112 GAS_20200323 12848927.0959354 2203.698480110438 0.9191428127299592 0.00015757671049671646 7806676.218355773 1338.3669451189655 322240 98953 219445 NEBL_20190207 13725789.187308785 4030.1803872820838 0.9279461937330192 0.0002724645191180541 98667.80900242245 28.9709439123059 39673 6177 502010 STEEM_20200312 74640107.1835485 9402.477526169581 0.21895056322565734 2.758138791265254e-05 3516343.1793155638 442.95672883360453 10935 3840 211376 AUTO_20210708 28756166.985841874 846.2900976963382 893.6666985098115 0.02630245020121033 2316877.72406407 68.19047980763455 70290 None 10455 XLM_20210624 5915205021.351129 175462.77257320794 0.2560470946092777 7.600355306027095e-06 648535893.207601 19250.76800660877 596344 194694 22825 ENJ_20210428 2398897936.262867 43541.295104800454 2.5772474894943906 4.676926782893139e-05 354131826.4605635 6426.424433817959 164633 30070 22644 LEND_20190804 5010749.7849019775 464.29946749184785 0.004465875768956328 4.1369816342404413e-07 1256730.4171889585 116.4177179141969 41873 5847 699914 NAS_20190613 75793532.96274532 9324.657725725625 1.6646400021022159 0.00020444813000806844 35741255.21226328 4389.677517697704 24174 5155 510015 OG_20210120 0.0 0.0 4.089072554749551 0.00011270292823154787 2152249.6433782717 59.3202575513832 617660 None 397078 THETA_20190730 123180681.6086781 12977.98943677646 0.12354662366728149 1.2988574889302743e-05 2163996.282635098 227.5030020478194 None 4018 240889 SYS_20190513 29252660.577122368 4203.85230820841 0.05290337461519509 7.60265798393849e-06 421220.48417872447 60.532911186350155 62185 4598 1307286 ARDR_20210602 223135417.1245048 6085.730334050577 0.22382607959141762 6.1018104686471756e-06 13846642.3059323 377.4787421205864 None 6921 None QTUM_20190401 239362996.6839939 58329.215340713534 2.928214611199079 0.0007133977566579222 234549533.6824327 57143.04904915772 None 15237 374999 LPT_20210702 439604852.5771014 13083.207476131236 18.467569923375606 0.0005490946022726331 8852966.171029642 263.22445014606745 13844 1152 101406 ELF_20200411 28524002.429175273 4160.047737509462 0.06162320053918775 8.985143358561785e-06 32651816.38493531 4760.889544344776 None 33431 699270 WTC_20210804 15732069.65513204 409.45185667479967 0.5387244840117927 1.4024511491034022e-05 5427273.789500066 141.28718089628404 65287 19900 1106983 KEY_20190601 9929320.818437152 1157.5446875911716 0.0037960737952228265 4.426304489515306e-07 633833.1101807023 73.90631722510044 23993 2834 681571 STEEM_20200330 46740075.64144765 7904.337633743612 0.13594612840458814 2.3031708233788185e-05 1857330.9602987038 314.665119729424 11135 3840 219600 WTC_20220112 21433787.952789497 499.98606091947113 0.7340682950390978 1.7159330978951263e-05 3395771.2129959636 79.37839376306128 67765 20380 402204 QTUM_20190923 201546796.8808207 20049.321728469524 2.0973604374156185 0.0002087989418016147 154641075.83346134 15395.013855070407 177729 15337 210417 REN_20190902 49921940.40621003 5132.594703107518 0.060688256804886605 6.239505573762559e-06 4767462.647037729 490.1542954929877 9552 881 312063 NEBL_20190903 8126621.3421278475 786.590106048884 0.5242326090885558 5.072009694174634e-05 217502.21130862916 21.043584567922853 40379 6119 464857 OST_20200308 7381807.335255119 830.4787200769894 0.010678020136667823 1.1997193278931541e-06 189739.93461976817 21.31805933338077 17842 753 839878 BCD_20200612 108736146.47106019 11719.19642283901 0.5756933420174756 6.190506275989969e-05 20141394.95005573 2165.8307078654343 28298 None 975447 OGN_20210201 42624178.51158739 1289.7553998201276 0.20589147164239946 6.22713010126849e-06 20667702.81721407 625.0889039283641 70486 2577 192490 ILV_20211202 1091546615.9787629 19097.32360119855 1718.752057491706 0.030064681334596017 110855167.02762617 1939.096018213831 180840 None 9682 HC_20190523 54243134.87311329 7078.731800429792 1.2282794412390146 0.0001603854596687635 17372656.8347068 2268.475282213844 12706 803 698921 LINK_20201201 5626196324.594645 286338.5637319993 14.208179269907614 0.0007237513368794739 1206281280.2322834 61446.83795409876 102781 24920 43090 NULS_20201018 24315945.294353414 2139.946911221069 0.2487793683798576 2.189056910423744e-05 7810747.714369908 687.2825255191965 30543 5153 320173 BETA_20211104 399916895.3832827 6355.499702115639 2.48726116447504 3.9446536380549454e-05 270477117.3430368 4289.612044672485 None None 55111 BTCST_20211221 166604232.40287855 3531.3458857077294 22.82903115778803 0.0004843557859525618 2460894.1168534756 52.211953099375066 None None 2315848 ADX_20200107 7897707.547983878 1017.8885602223689 0.08164739179536559 1.053036534138506e-05 69260.42521327228 8.93277256208486 52872 3798 215499 GTO_20200331 6219438.925335753 968.013043525201 0.009353308619977947 1.4589336252561055e-06 9448154.51188069 1473.7277335803794 16842 None 1068176 ALGO_20191015 118698299.5804876 14221.257150063442 0.2678085673347587 3.2083994840768275e-05 62692892.96673626 7510.7322910372795 12528 642 276742 TRB_20200914 57131820.486084685 5535.071175292015 38.66584610130244 0.003744803937997111 30519928.792956527 2955.8683193384245 None None 216196 REP_20200127 158358287.94360387 18453.034690803062 14.414851188588166 0.0016780781743786443 25434921.416641563 2960.959217538931 129094 10103 352265 RAMP_20210523 54529510.35903476 1450.8158076380776 0.1972425582879508 5.247692724012699e-06 10977881.368369145 292.0695649149088 27462 None 89296 KEY_20190104 6629011.905133993 1757.9473762811695 0.0027008346209018 7.161427764423784e-07 140339.76800680996 37.21194564372046 23544 2810 596065 SC_20211221 752876303.7996327 15957.97777478154 0.015134078478248682 3.210238409629431e-07 19573721.52538059 415.1974813033913 145744 50838 97295 REN_20210523 367870900.1067293 9787.597826035904 0.4172052204299189 1.1109231067955636e-05 60997479.1162454 1624.2248583727774 None 1159 67257 DOT_20201226 4939071509.721283 199996.2047493053 5.211168044078331 0.00021124745935997388 215984215.3337366 8755.44913639011 85767 6556 42393 CMT_20190225 19345402.07655464 5121.014410007417 0.02577626117929323 6.858930752346468e-06 3441245.3969442546 915.6977311524457 292681 1630 907470 TFUEL_20191102 0.0 0.0 0.0034620540538487865 3.744266238596942e-07 719917.8439478196 77.86025393395137 69617 4024 431634 YFI_20210814 1427873899.7277827 29957.81476683345 40070.67633285424 0.8398699278117568 301673603.98564154 6322.992551897512 None 6989 22152 ARDR_20210613 165672589.85075837 4643.7719605081265 0.1658385121113183 4.648422730692298e-06 14455608.227585567 405.1880170390489 71970 6937 None SNT_20190621 100908615.32786761 10549.154295093393 0.028597720821350803 2.9921995301431843e-06 23349807.28815128 2443.1066668913654 111576 5745 303277 POND_20210725 42383562.8177658 1240.5159820380366 0.05470309631308947 1.6008628123301226e-06 7311936.864241948 213.98071774722865 None 594 135580 BLZ_20201111 20116183.13220972 1315.1631918722785 0.08021029151504948 5.2506712318861285e-06 7129523.74002523 466.7080058146399 42168 None 234892 YFI_20210117 1012361729.4117318 27899.761294710093 33855.1022055828 0.9354957321270342 889792605.1220043 24587.052773173014 67302 2665 20013 MDT_20211028 23662082.651978068 404.27817506275187 0.03901005920974894 6.666333110676927e-07 2471589.6415933548 42.23638773571074 35419 347 806321 BNB_20210703 44372602649.994255 1312804.2112524312 288.1721729444467 0.00851117079548877 1025692279.2176274 30293.841639311602 4419457 533933 139 LTC_20210527 13293452831.666069 339326.9254529937 199.14564781176136 0.005083365566870595 5768733478.185078 147251.93068330653 183056 331924 91402 LSK_20190702 235804591.95646304 22221.93501848358 1.7684776718186122 0.0001666023123315507 5927455.561623249 558.4055815606768 182850 30480 193702 ADA_20200313 733569243.541392 152661.7833187885 0.023715965392713114 4.977469985837409e-06 211978802.34647855 44489.781834373454 155706 77107 41962 BTS_20190920 94324297.99590631 9212.199854678927 0.03483963269726574 3.3997492362898654e-06 10679365.432758683 1042.1224813007616 13563 7142 140611 NULS_20210702 42962029.2496014 1279.0463178097593 0.38036438079630036 1.1311408264706343e-05 24243543.58211828 720.9629320874843 55880 5369 232645 KNC_20210809 153049664.78873244 3479.007397797337 1.6551420554258036 3.7633874447747573e-05 36962835.94143334 840.4443126150461 177455 11272 105078 PERL_20211230 0.0 0.0 0.08111902077943413 1.7431473695217895e-06 4025855.4334464776 86.5106511574952 None 728 815622 VIB_20200318 1547516.1095395605 284.8749151798942 0.008434597709552636 1.5681643159695117e-06 383994.4893270322 71.39243345412923 31478 1107 None LUNA_20210206 1399559904.7844136 36926.72192003214 2.8815674719154116 7.580787525365352e-05 212067371.45259693 5579.038838109355 22835 None 115872 TLM_20210806 346282132.38928854 8451.750749396146 0.2771155414478772 6.7728085438905865e-06 145391860.94075167 3553.4320191741754 56702 None 11192 ONG_20201208 0.0 0.0 0.22965442349403356 1.1968338349259483e-05 6633176.08012961 345.68502730916657 93853 16695 315974 PPT_20190312 44374029.369187795 11476.511250739406 1.2232396670150751 0.00031676272301700103 1918834.4827201418 496.8897364557587 23495 None 563513 MTH_20190314 5708180.327672264 1476.356325248695 0.018975185344921774 4.908458109265293e-06 380402.3936529584 98.40163244621469 18719 2016 959226 WAVES_20190806 141622099.684686 11991.15657181957 1.4164990556281427 0.00011992272889338801 20566012.26994668 1741.1464582821188 143214 56899 43327 PERL_20190902 26097835.819747448 2680.022736559013 0.08933904164898956 9.173338296558398e-06 6493442.192572333 666.7470440935228 11305 355 317628 ALPHA_20210117 83553259.57458411 2302.799050972483 0.4786162382894431 1.3225287152511846e-05 86370012.66154698 2386.6056506930636 22719 None 81517 FARM_20210902 156665727.47232616 3221.238590990394 259.10402433773885 0.005325305977190955 27672321.02761569 568.7429091376142 55504 None 78547 OXT_20210826 243251663.72730398 4962.602177360547 0.41082657917575793 8.383504485811222e-06 20931174.537011433 427.13058141562306 69672 4396 281740 BAT_20190201 138907253.0025336 40520.344094737426 0.11292540231146608 3.296289195916766e-05 10502968.80584891 3065.8135274365354 91710 22391 119907 YOYO_20190207 3880195.810272576 1139.3124274436493 0.013288341816004712 3.901754888506452e-06 151702.8215395382 44.543347374554415 6883 None 763242 QKC_20210110 43103407.500154175 1065.1479889561067 0.006669432553879771 1.6550576096813886e-07 7861616.315272439 195.0904788656712 None 9208 114091 AION_20190806 30518266.664751813 2583.8405804800304 0.09078195514853686 7.686262018544679e-06 1241512.882313402 105.11552981257013 67576 72600 199411 FUN_20210603 238302110.35912374 6332.941014276397 0.02315399440117661 6.149189167985432e-07 15543561.928290643 412.8026507447825 3325 313 199069 BLZ_20210825 75761763.92167588 1576.0890048014458 0.24533967345437022 5.114363226972519e-06 11906303.071229678 248.19939530901965 66036 None 427570 KSM_20210324 3812363384.3710003 69961.44005470895 423.3290282059479 0.007765802716525034 480364124.54413766 8812.08888300285 43836 None 84869 BNB_20200502 2584203457.0105963 291620.4012380437 17.451782873526643 0.0019760753734718198 454273601.33557147 51437.66014756609 1143247 62414 1326 MKR_20210131 1417867566.8231733 41443.02320711247 1576.8629802790506 0.04615505997766949 253021717.89652395 7405.990698760895 90760 20124 38971 REP_20200713 213532467.42593712 23010.413013398185 19.467909988176867 0.0020953075513491285 14133658.107561473 1521.1884880783607 133991 10237 217465 USDC_20210710 26069633400.14585 768638.5544972753 1.0017759407961788 2.947905798287869e-05 2501375803.997252 73607.47983665897 None None 34841 ADA_20210212 29490259208.42937 618458.7114413008 0.927712152275745 1.943008398654901e-05 7257994780.916856 152012.0738110503 204559 164384 26016 DOT_20210430 35125134676.12503 655430.2749629127 35.78168797918116 0.0006676401003880445 1671642385.8837767 31190.68868337651 336808 23174 15695 TOMO_20210509 225444544.76133978 3843.8061747618135 2.7751432603890063 4.7266578413744884e-05 22489840.012830682 383.04969752445504 None 2138 78743 NEBL_20200224 12454592.916996518 1251.8425715863777 0.7760268553655146 7.798729472612844e-05 187548.53030598583 18.847804566680875 39736 6026 775420 BRD_20200713 8353879.354177726 900.2200766981841 0.1292756026001358 1.3913616526682726e-05 808220.6596556735 86.9868103587535 None None None MANA_20210509 1914124048.721131 32639.96428057155 1.4436233256328088 2.4584447444300954e-05 176725232.92999035 3009.574674989895 128507 31155 10949 IOST_20200107 61212128.452609055 7886.464172576394 0.005097265351471943 6.564331532049142e-07 28311556.825519018 3646.002952102318 193008 52328 87170 NAV_20210310 34710092.84204755 635.0515708221915 0.4850888458574104 8.868100497099866e-06 765422.6948548811 13.992994146745122 49954 13773 463093 MTL_20210909 216406286.3555623 4668.825867085645 3.3576290597789025 7.252380128054983e-05 29343417.078868628 633.8091883384801 59564 4269 219508 NEO_20190729 797744851.7513714 83568.93487892555 11.2631277130522 0.0011810883059340653 250892788.0839178 26309.43602865418 324379 98193 191074 EVX_20210325 16613345.761481274 314.2932430428202 0.7539651875052734 1.4297390770652794e-05 1083770.2305109724 20.55146145737326 17606 2822 730921 AMB_20190916 2415635.2298933617 234.46796237347937 0.016706680551074236 1.6215947252135155e-06 290796.9991739779 28.22552801718117 19251 5602 570829 DOGE_20200621 306496993.6063509 32758.23024625791 0.0024506152978890842 2.6192041634299766e-07 111854349.70889677 11954.93142916612 140640 157624 114634 GNO_20211007 447145935.7833123 8055.346780641336 298.26057141187886 0.0053760594187225045 7563130.885420901 136.3232184499823 85650 2348 166619 WAVES_20210819 2369561853.518296 52569.09025485463 23.62152486576443 0.0005244930661911357 319923709.95034057 7103.595916548695 195260 59269 144631 ARPA_20201106 13935331.665854855 896.8152505700349 0.014165877524241985 9.116974056557666e-07 4441588.141218835 285.8548210946298 21005 None 548225 EZ_20210823 0.0 0.0 7.031041964983339 0.0001427181862503729 14202145.428994553 288.27938257013807 None None 158506 FUN_20190103 25492239.78427931 6590.597950286024 0.004339976661443375 1.1220293521182458e-06 220298.50990053092 56.954544602113344 36637 17917 485109 TNT_20200612 15328331.132239845 1652.0331941397849 0.0357773689860618 3.847509523138013e-06 2183344.736462666 234.7975802554408 17997 2602 462149 ICX_20190603 204070749.240383 23344.250096842 0.4308765011317131 4.927414776012564e-05 48710825.05479921 5570.469461582688 113599 24742 290071 DOCK_20211007 70448412.58601576 1560.1781752227776 0.08419676650468612 1.5177480595711647e-06 5609458.820959142 101.11724706531628 54414 15200 232979 YFII_20220115 104105302.52940895 2415.7211734624116 2624.9892581459853 0.06088115456666026 9911854.478349362 229.8848053057714 None None 1111130 FLM_20210203 0.0 0.0 0.30344467544423687 8.544194185416231e-06 30821786.561988536 867.8594512872812 13409 None 184710 SKY_20190410 21336759.481317196 4123.304528541144 1.416608354382616 0.00027404119103983113 1210789.1348420666 234.2257093032702 15473 3616 412487 OXT_20210218 0.0 0.0 0.6067547150755457 1.164021081032948e-05 43529653.52254708 835.0892558617561 58425 2492 125162 DGB_20210106 387948232.7443628 11417.946568529364 0.02793510581672557 8.19528292883987e-07 28935101.548124187 848.865027816049 179645 23805 242284 COS_20200711 17574506.412834104 1892.7207496873432 0.008900979105072102 9.587291886390519e-07 4908487.6459742915 528.6958123054287 12336 None 288612 ONT_20210602 961822407.7872713 26213.3744582787 1.113981931694974 3.036869798688477e-05 322986239.6674796 8805.054451338301 138406 19287 123162 MATIC_20201030 59287777.19176218 4401.433866815182 0.013851278967188286 1.0300829432427763e-06 8799049.804545188 654.3620370275137 56859 2426 52170 SC_20200325 55519113.7776688 8214.901233869181 0.0013986304506646706 2.072362005403733e-07 2878840.567518052 426.5601259363481 107576 30166 162098 MITH_20190615 26246902.521259524 3017.643446196657 0.06179968223999724 7.117692486872555e-06 26500772.1138989 3052.1895863299565 75 2071 476862 PERL_20210620 0.0 0.0 0.09323848826931203 2.619000984249758e-06 26663502.854233153 748.9583058991623 20080 675 362669 ADA_20200127 1381689961.284705 161004.34728494298 0.044372587590869254 5.1633700643890365e-06 98582263.15621679 11471.422652964116 155205 76244 58324 SNGLS_20191203 5404147.875501689 739.454105699439 0.009429501352301962 1.2902466124709432e-06 251601.44783544602 34.42683803032911 2886 2157 2409727 BCPT_20190117 2449123.6318990258 680.3947597776095 0.029188625413220582 8.110221794945635e-06 558951.3761259976 155.30774638392745 9917 1328 1188589 BEL_20210111 21454472.748787045 558.1211460217067 1.038038734198683 2.698879275623916e-05 10062679.989426902 261.62760199564633 None None 319671 REQ_20200914 20188294.811178718 1955.2936973945084 0.026542851460423504 2.5701855248461787e-06 196036.8900621731 18.982556487004498 39562 27680 292019 GAS_20201030 18151650.393994402 1347.5501118106367 1.302801268539115 9.688667932436417e-05 1880851.274851778 139.87508204357766 324366 100977 83823 NEBL_20200324 5990122.968496438 930.9302393770007 0.3715354183648633 5.761553344684753e-05 119618.99466179768 18.549812069456415 39582 6010 841626 OAX_20200806 9311959.12439536 794.9093906740118 0.17859176495306067 1.5239698052119378e-05 5265887.457130808 449.3518211447684 None None None DASH_20200612 683879668.5362996 73521.46209778749 72.33504912029086 0.007776482935399296 509654534.67873126 54791.139842694356 316989 35014 77341 PERL_20200309 10493910.80179213 1298.9930563742191 0.03037174557748859 3.7720454413456966e-06 2600251.5333862402 322.94050790849417 11520 471 686395 MTH_20210422 16454694.42490893 304.22059060766037 0.04734565741165053 8.753443539295622e-07 752542.8657923058 13.91329605868288 21411 2010 362958 IOTX_20211111 2286065365.698311 35202.47331508273 0.2412059406453469 3.713474725080208e-06 4131162868.62276 63601.123822969195 161709 13609 62993 ENG_20190507 32929796.457975585 5752.19134106345 0.4253546370200249 7.43570380755746e-05 1368136.3433116656 239.16646797343748 62020 3390 347491 OAX_20200530 2357975.724487504 250.0358141525538 0.045696273980085744 4.8476132417256515e-06 305959.7719890908 32.457233663647045 None None None QSP_20210111 20572290.517405782 533.6516385075981 0.028752201575722905 7.496891816421449e-07 692922.7854004375 18.067371799684132 58330 8171 263794 RVN_20210809 853948349.1883365 19411.297818025436 0.09095372901689462 2.067677535432836e-06 85072177.04595701 1933.9705064276868 66296 47353 63027 NEO_20210201 1574433450.6816866 47640.42652744884 22.280853571720613 0.00067387819831312 582333337.4652894 17612.509278677106 333637 102156 149199 NANO_20200412 71872574.81830195 10445.06030405516 0.5394723570453022 7.838304568806206e-05 3197857.9255293077 464.6351951257552 97487 50354 296838 CELR_20190914 17107694.123026136 1652.1286292663249 0.005261499034009087 5.080922892812664e-07 4740936.525773488 457.82262377077245 18332 None 503834 BTG_20190414 282469522.6714621 55681.52060234366 16.13296540992086 0.0031793989565369776 12257449.629187584 2415.6329336005647 73457 None 434062 AST_20190714 8550698.23819282 751.2711796266468 0.04972518944332291 4.366443689095281e-06 1037274.1775105916 91.08460595037111 32032 3605 257533 OGN_20210105 25694498.331234552 821.2701070339449 0.12863650920497602 4.111593008018371e-06 15173584.778894365 484.99143415081676 69827 2485 203625 AMB_20200425 1286243.026696542 171.53764895914372 0.008890554842833295 1.186156331286358e-06 86710.88290169733 11.568756344626584 18946 5475 839960 PPT_20190201 43849086.76341052 12779.22470159652 1.1849814856247085 0.00034534686557408274 1899100.3889452296 553.467184668291 23371 None 591964 COS_20210902 94084289.48073766 1934.4878357954742 0.027486519936481758 5.642487158742144e-07 19480412.34938209 399.8977563634769 28850 None 416507 XVG_20190914 67697209.31172085 6537.672278977185 0.004247188429556193 4.1029150422476946e-07 1089329.2778972345 105.2325686598372 302345 52716 272149 ALGO_20210114 363382683.51354766 9759.013325403741 0.4534558190260922 1.213346619372424e-05 196908879.88335124 5268.8423812492165 36552 1841 343568 WTC_20200117 13234916.362745145 1520.3707643989749 0.450794164165906 5.173492699372423e-05 23779761.586190004 2729.0597957628847 55170 19534 1023562 DNT_20200927 6931523.745280412 645.5414995339671 0.009309931658547446 8.672540750696205e-07 252534.0176075641 23.524464399562934 58324 5974 523426 NAS_20211221 14752866.74615653 312.6850396462313 0.32277977399038327 6.846799623807318e-06 2437954.2917758175 51.713849109663926 26906 5245 678539 XMR_20210207 2715301943.7883496 69231.49521742777 152.43334890616373 0.0038779120417475315 391614612.54035753 9962.69538517722 345271 195158 56021 ICX_20191019 77263558.90179351 9708.227855748766 0.1551625237235455 1.9496550920200533e-05 10132628.62430111 1273.1895897823051 112984 26403 151226 ADX_20200223 9336143.900711503 967.7144099924119 0.09958116607546955 1.0316139083057734e-05 232879.7503622555 24.125243648423147 52548 3784 88673 ETH_20210508 404284565609.95483 7055534.482186883 3493.534500000208 0.06095897000290671 44980768421.369 784873.117155638 1068618 873457 4856 AION_20190305 32427814.71079928 8728.961786352422 0.11110489457271175 2.9907361555231074e-05 1735998.4458019384 467.2983434041216 67160 72423 229111 MANA_20200610 54493228.51971704 5574.634189555867 0.04099303990357258 4.1978376867535565e-06 14683654.1053873 1503.6600537028346 48898 6975 60458 IOTX_20190205 8996462.449887084 2596.742645080156 0.006758972244329413 1.9509125460734405e-06 272632.9571458144 78.69288959058927 13502 1557 1480640 SKY_20211011 26455214.78450615 483.41885759525104 1.2547835634084439 2.292525669274503e-05 1951224.268342469 35.649428731243205 19875 4447 533754 ZEN_20210422 1239348826.8917565 22873.214538499236 112.72763718843441 0.002081484343419902 321402058.3490521 5934.599261387862 99640 7066 749117 LSK_20210727 373336634.43330544 9966.437139303382 2.578228788800177 6.888978935942235e-05 38958439.28876745 1040.9621861464063 196352 32589 298346 IOTX_20201201 45729473.46092954 2325.9621585821988 0.007954825168949589 4.0521133927860327e-07 1609481.0423873235 81.98545598148051 29173 2006 446227 GVT_20210814 19213541.949807856 403.11383999445775 4.335012274485801 9.088136734196579e-05 734681.2095676756 15.40222464396124 25852 5697 545801 XEM_20190302 383104999.9098657 100203.99781879551 0.0425284774957824 1.1132354536181056e-05 13995795.899494233 3663.572531714786 214920 18484 134227 YFI_20201228 690064915.5425775 26065.673266430633 22805.42309724421 0.8671820855356821 500441288.64925176 19029.408861590622 None 2426 13049 MITH_20190915 9879033.39364864 954.7218155353484 0.018202225009304476 1.7590851873057424e-06 2402372.156373566 232.16817023810503 85 2081 697406 EGLD_20210124 631841992.8888749 19734.925372678284 37.07162215343442 0.0011567779020951153 39963303.4449464 1247.0095354473945 123395 3392 51208 KMD_20210902 152014349.86699742 3120.5806302551446 1.1917999791864786 2.4465505614711937e-05 5392405.876908008 110.69637402439994 115005 9577 191352 GRS_20211125 74162871.76520188 1297.1857163924892 0.9412101222763195 1.6455025379961995e-05 996673.7066505918 17.424686316390364 42542 107149 None BCD_20200323 86241979.54370807 14796.169122555671 0.4543244531470073 7.79168289243312e-05 9767856.897705218 1675.1914399148145 28972 None 1207769 OAX_20190414 5564188.686979935 1096.5886241581445 0.23731465005714025 4.678150738129587e-05 3023951.5802561985 596.1073753279661 15205 None None WING_20211028 36989056.8599177 631.9889939294186 18.044135981177266 0.0003081065086413239 5239191.927879308 89.46004035242159 17544 None 314890 MTH_20200430 2024044.5368822755 231.835602404367 0.005852958305373461 6.675858887604227e-07 155943.86391991665 17.78688956252 19063 1918 1304375 ONE_20200318 9549980.7492046 1759.0250790189116 0.0018730618708991363 3.459483917535242e-07 16188776.685696494 2990.014022433343 71294 None 395411 FLM_20210702 0.0 0.0 0.3517235252322076 1.045776406958941e-05 9735291.45077021 289.4585486530399 23552 None 83883 FTT_20210724 3136232338.7055135 93810.29596694814 29.436958281660118 0.0008803611693351557 60756658.71951515 1817.0288724611005 156066 None 2587 ARK_20210523 192649186.8029479 5129.641357901449 1.2235887697167123 3.2580316908488265e-05 3995284.9443873004 106.3818603516497 72736 23200 74988 AION_20210826 99961148.07791439 2039.3123098348801 0.20179910495642986 4.117999631448257e-06 8532261.176114695 174.11300405047245 None 73435 623135 LRC_20211202 3442480047.2349133 60216.90725497123 2.765779692482879 4.8389501772880116e-05 457033112.54034805 7996.15553966361 155529 76181 61944 FTM_20190712 50832883.49148657 4488.147419532434 0.024552284034735652 2.163527080344594e-06 16772277.1899291 1477.959274506586 17084 1954 411389 TNT_20200320 14220518.362959778 2299.359726137355 0.03278508873753612 5.3110271181761904e-06 950991.9383278544 154.056132471086 17681 2564 1338754 ADA_20190702 2601220003.7512603 245469.56179745204 0.08367770186140709 7.88299385559356e-06 349024670.3840098 32880.43613631636 153161 74292 97209 QSP_20210106 18778406.77468328 552.6278857021324 0.026378129259099284 7.734040424480205e-07 557883.2239201992 16.35707886468024 58330 8169 263794 NANO_20200417 74425891.07587165 10481.7579253471 0.5561239877118246 7.84503547951631e-05 3500777.051986231 493.841675337691 97452 50440 313652 POA_20191108 3714589.850431253 402.9112986692647 0.01687164458406558 1.8300206762431464e-06 115035.89911646984 12.477626164089791 None None 510906 XTZ_20210408 4289408981.460624 76152.10705850396 5.55059329527448 9.877726271253873e-05 801174026.4185921 14257.534839273127 100132 41058 103293 NAS_20190224 30512330.95748318 7415.312427035963 0.6706006803842457 0.00016297389949529594 4948799.45027574 1202.690614285517 23428 5185 410300 PAXG_20211120 322300277.2231698 5544.374230039135 1858.0680432038682 0.0318568987268968 9701752.054436639 166.3382209290491 26776 None 38197 CHZ_20210206 134272872.8329915 3543.212861828561 0.02515395897675341 6.6174684536459e-07 47144802.68371715 1240.2788952672674 69866 None 105011 APPC_20190905 3976371.097815631 376.56148865521953 0.03662140349823033 3.46803904331579e-06 218648.7076953013 20.705985642917515 25221 3312 1154369 CMT_20200117 10003807.303188073 1149.194731540668 0.01230326222346648 1.4124199257155224e-06 12521696.819679154 1437.4963136322124 288093 1641 899375 ADA_20210806 44529395488.31232 1086834.4522766448 1.385936279491975 3.3872806360796356e-05 1691781854.8937175 41347.787790452734 535972 552947 8000 DCR_20190716 302594289.4919064 27624.543639314194 29.97980701021138 0.002741489293430057 18922903.269388042 1730.395952714779 40555 9541 324578 WABI_20190318 11309757.27096193 2864.7950773926123 0.2155121363604861 5.45898636524296e-05 327771.28415040823 83.02543890624807 34848 8007 1579546 LTO_20210506 175678887.1949704 3068.750916608707 0.6236627647025786 1.0891118629431946e-05 31290318.016046982 546.427628444258 8984 3986 155489 COS_20200629 14868315.185195552 1630.2683097186182 0.007498099809264237 8.215480515906545e-07 1254378.4682826535 137.43911294720496 12340 None 278522 UNFI_20210724 29286902.78104802 876.0232738365588 6.910019907802568 0.00020658415606350167 21517946.710830353 643.3073885151678 20597 None 243649 BLZ_20210427 101310857.70886727 1880.6678410961438 0.35462554313984745 6.578577464365082e-06 31891127.295743894 591.6050194338213 55289 None 191106 DNT_20190207 5767869.042912741 1693.1756210184224 0.009932636290213438 2.9152755867257277e-06 823193.586927916 241.61119938366005 60138 6517 604362 KMD_20200318 34447490.744748645 6346.3684730682035 0.287778642127755 5.339718519451303e-05 1388614.2185574486 257.6566837754733 99878 8401 161250 NEBL_20190329 23128712.139147647 5745.619930186851 1.546255286048984 0.0003840577792750221 536275.2013997983 133.19965001131587 40202 6182 631172 FOR_20210916 47959323.18706201 995.1427404813039 0.08655731162440193 1.795954196581889e-06 208821605.840804 4332.782896194211 35206 None 145935 BAND_20191012 6889461.297516408 833.2380913719213 0.4398640363921171 5.319885754763456e-05 1910559.5787551503 231.07046372815364 7451 973 630283 ADX_20190405 14946179.723985275 3051.2995466609323 0.17148043059693302 3.5033339488740886e-05 784297.7908693128 160.231524216184 54664 3930 994685 GTC_20220115 155653211.35199353 3611.3314908492466 10.987074438627573 0.0002547470451464289 18950883.441196397 439.39645503687063 None 1938 22789 BRD_20190826 17719932.31298063 1755.2892766231028 0.2950273736321857 2.9224625472609676e-05 284939.1433221038 28.225312260198635 None None None DEGO_20210420 68685689.3618185 1227.0630560360469 12.59838122183792 0.00022525153253321307 20065227.557707593 358.75428584164825 None None 65410 RVN_20210725 527174173.58502847 15429.960638101178 0.05683093948314541 1.6633955212333779e-06 28931259.524022825 846.7945093565179 None 45821 64221 ADA_20200305 1519410636.5864627 173560.75090799847 0.04889845997466285 5.583637001034738e-06 170344689.4210829 19451.387861175423 155816 76998 41962 DOGE_20211028 31540178380.175777 538982.3540690173 0.23916652646337397 4.0870579707552315e-06 4746122252.655914 81105.31632388238 2316504 2197551 34595 OGN_20201208 24665922.018006705 1284.2113316796322 0.15546556425647814 8.102018878501645e-06 6734761.190575275 350.9790902519263 69901 2465 193028 AAVE_20210418 5356219589.208635 88851.51212762574 428.25014448877783 0.007105537201821968 518482237.4808912 8602.670365242353 173908 8300 14216 GAS_20190812 25968646.442567356 2247.537585959013 1.8635399947121731 0.00016128588720696488 1017702.2667485003 88.08022015670393 324463 98224 192021 QKC_20190511 34937281.35825183 5482.666917725783 0.022210763922334 3.4858618791120144e-06 11084812.596949138 1739.7026866757672 50642 9179 157816 ENJ_20200721 178494792.42463157 19483.685382843647 0.1937629906833085 2.1150292947098226e-05 9861687.873935716 1076.4573087514507 60382 15703 108364 VIBE_20200914 3014129.655368392 291.92547072 0.0161077330583715 1.56e-06 141372.21661255654 13.69160124 18757 None 2981360 NEBL_20190227 16559926.785367783 4357.006869637835 1.1141846740897001 0.00029314805203990523 116686.48646282262 30.700849689845356 39642 6169 501416 DGB_20210108 440375651.7705369 11168.628163697165 0.03163996741808382 8.024399845525565e-07 44576339.04470658 1130.5269800625526 179617 23834 242284 TNT_20200331 16266863.806249365 2531.8258657628535 0.03780727615456264 5.897197312983012e-06 286653.1468874023 44.71229719569488 17629 2563 951092 DASH_20200404 634739608.3385994 94330.89244618641 67.39233314316256 0.010015412376840387 563954042.6212552 83811.19980576223 315649 34604 60751 TRX_20201030 1904266072.5709682 141456.118420234 0.02654594446754791 1.9741678727974574e-06 745303368.9714867 55426.69496313948 540839 75735 30558 DCR_20190712 301110882.4387039 26608.948210995808 30.029254805666042 0.002646153241087903 19077478.623536307 1681.0917293202579 40551 9540 383707 WPR_20200403 3875041.1317609465 571.3967912039789 0.006403964689664529 9.393963777313101e-07 179183.17451833165 26.28434622142421 33438 None 1058111 FTM_20200801 32207505.521197837 2841.39835570166 0.013258151842315406 1.1700807817682427e-06 6397428.475231705 564.5966497166214 None 2478 185383 YOYO_20200316 1081944.1671761242 201.44802070124416 0.0062243005163679435 1.152097331375851e-06 118575.1972163242 21.947874772603086 7502 None 2721333 STEEM_20190228 104853867.64968298 27468.392256144234 0.34810694140386167 9.130260018016102e-05 2941660.947358715 771.548226700506 4093 3681 255452 SC_20211002 791233515.1190604 16431.456829695413 0.01613469046516895 3.3501516998955555e-07 51696395.799879745 1073.4062028727433 140810 48858 134671 NAV_20190316 11891212.825183462 3030.179658990529 0.18419922714744572 4.693858898243666e-05 364954.97765952925 92.9996936400965 48052 11395 772440 DGB_20201115 260154261.93605822 16162.842370547152 0.019167972331543437 1.1922258761987064e-06 6068484.057034646 377.45274236387826 177571 23324 300681 LINK_20190902 644265750.9268655 66160.5380919656 1.768151176565002 0.00018155392520873709 74048135.14772929 7603.269318053741 32154 10512 94033 CMT_20190806 31828397.898650505 2694.7633365162255 0.039717518214961674 3.3649565050549517e-06 5549861.912152663 470.19664829963835 290609 1647 586149 WAVES_20200224 144718275.9323513 14545.99920736633 1.4466458147621775 0.00014546593981631513 69499284.8270798 6988.427077843472 141438 56861 40604 YOYO_20190902 2233816.9041936514 229.62626924740314 0.012772994785439496 1.3130060633844772e-06 184889.03339621658 19.005755970343056 7557 None 893009 BQX_20210603 669716565.9916791 17797.893196654466 3.0127400446078463 8.005911443059379e-05 8170366.265712305 217.11540926912838 80670 5699 19182 WPR_20190729 4294294.332123358 450.12716518040224 0.007055078868202103 7.400710416888422e-07 161374.78259261954 16.928060718627414 34699 None 1469795 FUN_20190627 32819266.438364558 2527.223461728528 0.0055014954465414535 4.2187074825091564e-07 2234609.2728029294 171.3563693956068 36264 17609 455027 TRU_20210206 45814425.886712715 1208.9153176373322 0.30371941416717946 7.95681841779756e-06 8866701.582657654 232.28918260447855 18393 None 115581 ENJ_20210814 1551719739.0515501 32556.18897537648 1.664155046020351 3.488021431828741e-05 133333121.72645843 2794.6241383378297 257878 34684 37503 CVC_20200711 18534687.505547304 1996.1293254359389 0.027703967187934362 2.9837810104658127e-06 7656307.924654781 824.6019799580619 None 7991 96333 KAVA_20210725 311570690.79774284 9119.88496705854 4.4432624446136835 0.00013004895550268008 92211207.00899704 2698.911285714997 124579 None 50166 ZRX_20210805 732685276.9810096 18405.475540643998 0.8685133750663343 2.184119581533357e-05 84082145.22919351 2114.4805034048763 223537 19623 56204 MDA_20211028 14029965.757696046 239.74777621023998 0.7149331312985331 1.221320597725023e-05 731922.567947619 12.503436601834457 None 388 602847 TCT_20210114 5525826.14462937 148.4017082429078 0.009537704888358983 2.559293804203581e-07 905060.0889268649 24.285870711407625 None None 2545563 SUPER_20210519 148331966.4736652 3465.6003105080836 1.453144704816642 3.391702972025246e-05 11097070.585971745 259.0104561676358 None None 137929 DODO_20210422 397154767.50709707 7329.779128043901 3.5231736123946766 6.505441696689843e-05 73313464.33124353 1353.7126473454846 65380 836 26612 KSM_20210930 2893763877.545781 69653.19014825397 322.99442919299537 0.007767012109137064 156067180.25552148 3752.930605992632 None None 61942 ARK_20201124 59710134.730905585 3260.362010860444 0.38995186964577794 2.1240111697266436e-05 3136621.021183179 170.84718917348053 62936 21646 105544 ZRX_20190810 113290772.83795045 9553.700714941639 0.18874783793654853 1.5911953860508805e-05 47483771.123919144 4003.0104901162294 151363 15929 188207 OMG_20201201 553046035.4859295 28129.870150226576 3.9365862284945394 0.0002005260133258985 364122091.9162754 18548.03812687736 287052 42706 153638 BAT_20200319 171214017.91769868 31813.775744083676 0.11873999788494549 2.2038847250688523e-05 64821316.0016432 12031.220375572791 111566 35865 19141 NCASH_20190930 2987926.608352812 370.68055122620234 0.0010278234545978788 1.2754281093311698e-07 424827.3965217012 52.7169136600159 59454 58821 745931 RLC_20190626 22114221.131175324 1868.8794263597606 0.31607685999904883 2.6711749751288735e-05 716416.3457173079 60.54455914485822 24919 3316 714682 RENBTC_20211007 962062415.6628519 17330.219761046 55349.18748735333 0.9977483970011434 9741996.018931223 175.61343450075165 97190 6046 93086 BLZ_20200711 8033131.3611759795 865.1437516992546 0.03455325161345196 3.721749089976935e-06 985954.0788194463 106.19763768272261 36238 None 458289 BAND_20210430 495792055.78498477 9251.412882651734 16.54675854549949 0.0003086966905613978 182910299.80456156 3412.3785673187745 85900 4942 169936 BAT_20210324 1576740909.0992064 28923.355708124363 1.0586519625536002 1.942054935730437e-05 495358534.9377282 9087.155380239576 163900 62596 19543 JUV_20211021 38628264.844749995 582.7820116785193 14.262551878906129 0.00021597284129384618 21094039.89211209 319.4196780874103 None None 34479 MTH_20191213 3888711.142385612 539.5702501508946 0.011233868150906587 1.5602731759942588e-06 105796.18492560126 14.694043693989983 19292 1962 1471362 LUN_20190405 7860116.320225039 1603.0335202732729 2.906148124028507 0.0005929533546448559 1004692.8860127166 204.9916218046216 31858 2244 1417813 DUSK_20200323 4066303.316135969 697.6383414142799 0.015626272437060055 2.6799120931521454e-06 236850.1450194083 40.61989642500895 17629 13343 994052 SNGLS_20210128 4840536.29406188 160.13297371598475 0.005149875125172121 1.6996890983672328e-07 229870.91098258676 7.586768065872062 9040 2111 2274706 YFI_20210618 1307052026.0675523 34398.441060448524 36429.186629438766 0.9544139302068675 165657032.12268883 4340.074366822516 129609 6519 17690 WABI_20200331 4560871.02668799 709.8683171700746 0.07699913315439975 1.2006649009971586e-05 1447613.6346942496 225.72966865705453 36763 7748 1803526 BCD_20191019 85530424.08156961 10746.966065051714 0.45456969695006066 5.7117045306172316e-05 2245460.7187732845 282.1439318721108 21318 None 2032087 YFI_20201226 708829626.703641 28702.34731997459 23611.78085420159 0.9563006393477735 452397706.74276704 18322.55766174413 59674 2403 13049 WRX_20200801 28224388.507425234 2489.904429080087 0.12311023437225711 1.0869715598163058e-05 2501708.1447229777 220.88217264311234 34759 None 17175 LOOM_20200425 12403563.076720852 1654.508944686532 0.014871639080150977 1.9841381289882533e-06 15974736.901189554 2131.3107731689297 21568 None 708796 GRT_20210111 400968791.67887783 10432.846681368412 0.32805884136802416 8.533506251516356e-06 189234198.4855477 4922.382853768457 None 2640 38944 HBAR_20210729 1800243459.0574052 45020.678510802994 0.1972907536622281 4.92912655202597e-06 58988128.312598296 1473.763692026536 118098 23629 41411 WAVES_20190701 182292301.2388616 16800.34104613469 1.826144391889485 0.0001683119675323863 15090408.587415155 1390.8518797834322 142535 56863 50285 NMR_20200907 197952310.58638635 19276.3812743125 38.1662581771884 0.0037165888200949705 7077181.955991461 689.1683018362211 20494 1846 882883 SC_20190511 106762644.51667103 16754.137596977558 0.0026155644936276846 4.105549808679977e-07 2051147.0898616542 321.96057726247426 109967 30932 237750 ARDR_20200331 32303052.159896545 5027.7486782727265 0.0323073102008668 5.039309949951731e-06 2109391.0131286546 329.02383561825565 64194 6373 1045416 FLOW_20210916 1392122713.7439892 28886.739367182483 22.027893242966925 0.00045711046465511375 60301228.67688782 1251.3372184862576 88629 None 51592 HIVE_20201228 42450129.607457474 1603.459592777034 0.11362330272300052 4.320555343377527e-06 2951356.7818320924 112.22610158626283 None 97 156100 KEEP_20211104 379082241.9729843 6012.027069285929 0.6897212020828863 1.0936599599372396e-05 53535102.167706974 848.8820919983024 28204 3409 136433 NAV_20190227 10033467.496187361 2634.2890670057773 0.15582522380234803 4.089974404581099e-05 127854.96541600655 33.55833691683675 47897 11427 768828 WPR_20201231 4200244.56751593 145.40137552445645 0.006890929329923597 2.388133416160553e-07 166669.981225583 5.776146185496868 32496 None 7520261 KLAY_20211225 3333039249.3399234 65573.85338311552 1.305286357038737 2.567433550902563e-05 14196025.515371647 279.2287837920945 None 1095 27552 IRIS_20211221 97894221.6777978 2074.9674361242614 0.08353758584232086 1.7725067001983695e-06 4191864.494985771 88.94329215726243 33106 None 524776 TRX_20210401 6602014663.817924 112246.51883425376 0.09190354372614341 1.5640060834540807e-06 9550467604.062836 162528.98231100888 674062 90389 23802 SRM_20210221 229203689.9233578 4082.8169382453907 4.632891396895832 8.240169639982477e-05 246648399.9665892 4386.9464725996495 36268 None 81157 1INCH_20210804 402818194.44900084 10485.770902771319 2.2337886923051644 5.8148053946824275e-05 107122196.5792357 2788.5123096239395 None None 4437 ETC_20200626 716301489.7198586 77411.6309430335 6.158036304225262 0.0006655069695623891 590005213.3258823 63762.628563444 231754 25572 386622 ARDR_20190221 58196687.553838395 14639.021917820324 0.058254971944543765 1.4653683000931169e-05 748023.5018537458 188.16075104878473 69474 6608 792340 XTZ_20200913 1881060516.0183861 180394.56051091297 2.6022598988309076 0.00024921396198600824 122916124.37925036 11771.466163806272 72970 29324 69245 STORJ_20190719 24724081.271205887 2303.6875057013035 0.17166253597160094 1.6088952383320793e-05 4730211.890442752 443.33583584563604 83881 7777 215806 POLY_20201014 36464561.039246306 3191.8238817916267 0.05106196043779025 4.4704302890862285e-06 7339503.085811142 642.5671208144447 35320 4995 324413 DIA_20210708 63041175.69579225 1855.3639065486843 1.299348021872399 3.824869077016291e-05 20054208.631369747 590.3323910681418 33734 393 433777 XVG_20200801 97837894.74779159 8632.521843488725 0.005987877379254952 5.282555502120793e-07 4915618.3030477045 433.65995775152805 290034 51596 218835 POE_20200530 4980902.067081407 528.4924423362692 0.0018780609184021419 1.9997707447192218e-07 574573.8589502545 61.18097568351153 None 10296 1075811 DOCK_20200305 4145843.4617670095 473.57553451637386 0.007440763597227651 8.496489042591595e-07 1871524.5156593975 213.70639360409592 43171 15031 375776 CELR_20190528 39320171.07272909 4459.219927824339 0.013799850168077634 1.5680834789451177e-06 31684342.517981425 3600.3067742442117 14291 None 371735 WING_20210506 71436111.6174825 1247.8427915007167 45.58946823242503 0.000795241455197886 13309873.540554343 232.1712363243166 None None 317115 NEBL_20190411 25495272.93009329 4800.6453889733875 1.698176008563976 0.00031997816547271133 412803.4650823489 77.78233515943128 40399 6184 641318 ADX_20190719 9110376.81926902 848.8671842064845 0.09857485692365998 9.238860245544783e-06 380114.04588875105 35.62592588954455 54096 3880 831404 BAT_20201129 341502292.4406878 19292.024952542004 0.229659662334381 1.2964646127736602e-05 103697760.0452248 5853.9002868856 None 47946 21280 AUDIO_20210805 247678770.3141007 6227.25722204191 1.142139235376567 2.872228270097704e-05 10761583.54696967 270.6300907737713 54733 5965 34312 QLC_20190922 4268988.786290619 427.30117504967257 0.017787453276210913 1.7804215627069695e-06 165397.3154215323 16.555318078287122 24762 5740 940522 POA_20190804 3995527.700101475 370.22830177945764 0.018151792440312366 1.6815946656949917e-06 59355.2538463 5.498711963411621 17760 None 707962 XVG_20210916 407191533.3904346 8449.280786417781 0.024717946663294316 5.12840790944305e-07 20416674.68005449 423.5992468953827 327087 54746 200187 PPT_20200330 6857401.2698646635 1159.673239360502 0.18851758032386426 3.1937597107387415e-05 1570224.217989615 266.0186299668226 None None 1049662 AST_20191113 4192976.1387852617 476.6017156197816 0.024352531071756445 2.766697003814968e-06 3033826.9727366627 344.67382346545384 31895 3534 322310 RLC_20211225 220041807.22553968 4327.607856456373 3.086510567464877 6.0710132634056644e-05 10080456.119769722 198.2775741946239 50560 8487 265933 DNT_20190103 6872679.448794119 1776.8178658090374 0.011827829682861758 3.057890194186587e-06 293281.73945727816 75.82315431206047 60205 6573 514068 DOGE_20210112 1132719253.9873154 31865.641366388067 0.008856219491507052 2.491430362686672e-07 561767456.6464167 15803.63381463553 186921 183733 103049 SRM_20210702 162959834.89988235 4846.857900874268 3.2708565593102543 9.724457859029203e-05 45804215.04618893 1361.7875039940739 94686 None 25633 MTH_20191011 5297550.229992376 618.9729827112022 0.015242823223173751 1.78099222202203e-06 458079.56744186283 53.52264044109974 19482 1977 761228 ONT_20190616 882267218.3788908 100048.16449002456 1.437914010627369 0.00016307650741764217 128832582.95011 14611.143304689713 80388 16235 232873 WPR_20200807 5228110.3808972305 444.36625954366735 0.008595785867708037 7.29870488917986e-07 210134.22136782468 17.84255322882176 32928 None None ARK_20201228 60286674.17767804 2274.4211202928927 0.393113961010433 1.4948259591965841e-05 4268967.983523013 162.32860680773274 62976 21630 103800 BEAM_20191127 23513984.701040287 3281.681044365924 0.5078343861219923 7.08738385674255e-05 27075657.269418545 3778.7038744531524 12065 1402 290873 DNT_20191026 4636192.691327695 536.3946544070809 0.00618148870394378 7.139816990452108e-07 479556.0445031437 55.3902556229389 59870 6228 368992 ELF_20200315 23969820.43367569 4637.307750563377 0.052030672087530816 1.0042396073832777e-05 28342410.826564137 5470.34477526678 83173 33434 755936 TROY_20210128 6466413.416849686 213.75956291371315 0.0034234480741249106 1.125870585739321e-07 925361.1686825815 30.432385666354563 10325 None 965237 QLC_20210106 3447309.1724514817 101.79992107264265 0.014463763545553836 4.256920521965601e-07 731224.7390246615 21.5211316744727 27277 5592 940522 ANKR_20210104 57056521.78801488 1705.5507127343387 0.008741450414375093 2.655515990289679e-07 12544310.180720592 381.0765341330204 31238 None 5158 AAVE_20210909 4370472068.971933 94336.53158339897 331.53424132571723 0.007157898020402483 481574069.0575264 10397.291277667635 285821 12886 14216 ARK_20211216 196584127.8878621 4029.487042719139 1.2081924700989395 2.4722910813200246e-05 3817650.9334673467 78.11954293699145 77137 24357 113733 ARDR_20190528 86262308.66175294 9781.272778137842 0.08599848686605394 9.752911951642498e-06 2128729.1554855765 241.41480599166454 68413 6554 1228634 XTZ_20201101 1479204817.8765013 107198.58453238229 1.9765533926704808 0.0001434287690822078 82805558.238435 6008.792545319222 74917 30123 118463 MANA_20200323 30761771.379356947 5272.60489732391 0.023173405054305173 3.974248413668996e-06 19043541.523402043 3265.9751345415525 48016 6792 47233 UMA_20210804 528641317.72793835 13761.075899306496 8.514196814319641 0.00022163420263446432 19844923.70598783 516.5858786023207 42289 None 213282 SOL_20210112 817258464.2688268 23051.433887705225 3.1076274895234994 8.742373075490572e-05 106045335.58882752 2983.2658185659197 106564 2925 92318 OAX_20191020 3459221.5432630996 435.3094458509522 0.0662291883471058 8.33430033837651e-06 373832.96122393844 47.04324864885825 12243 None None DOCK_20210115 11913461.321959842 305.03622183254515 0.021346654058673576 5.451754278970924e-07 9753908.897071632 249.10655515446638 43068 14865 239744 DOCK_20200223 4883557.015025702 506.19276499152295 0.008727341595407495 9.041114225891453e-07 518441.7503951989 53.708119861615664 None 15049 358417 IRIS_20210131 59348241.105578005 1734.8749712493616 0.06247869206369564 1.8284983593293773e-06 8363866.6557867965 244.77651424208187 12076 None 896024 BTS_20190621 169265429.6270585 17695.289229362636 0.06242541288600299 6.53161460919771e-06 17743477.322403345 1856.5124416335832 13707 7187 169425 SUN_20210108 0.0 0.0 0.00029519823286206637 7.7e-09 33.98629008604584 0.000886504065845244 41 None None RCN_20210722 10107955.334125059 314.10583973664245 0.019041117282461065 5.917048439400364e-07 185268.00965361303 5.7572240700469735 20023 573 2225791 CDT_20190213 4897921.044930118 1347.9585770894319 0.007295309092686038 2.007679630083601e-06 72455.13522375197 19.939758170016166 19477 283 402914 ARPA_20201201 23257754.15350268 1181.7259204864013 0.023408160143430997 1.1916325153304056e-06 12770569.340396807 650.1077219248675 None None 1058810 NAV_20200319 3997284.6599830305 741.9197204656149 0.05866352327808198 1.0888297555517957e-05 93484.4981258297 17.35127683342879 49622 13973 1082339 ANKR_20200229 8638457.743672755 988.3652576380517 0.002160565624176331 2.4731843568195476e-07 5661190.454614387 648.0325113321232 None None 5317 ADX_20220112 67838383.22853036 1581.8363055483821 0.4840930961401941 1.1314332152514711e-05 7055376.079805746 164.89982828573818 450 4065 14779 ALICE_20210527 129506190.18081583 3305.460165110229 7.539962925702646 0.00019231840501176298 73689035.60516241 1879.5527158535979 None None 54175 KNC_20190510 34145798.32308498 5530.461711649863 0.20436176233111306 3.310404384212481e-05 4974744.978767639 805.8463285988302 96458 6667 236085 SNX_20200913 721392215.2321461 69181.84211226352 6.116901059103935 0.0005858009993449144 54035751.07923664 5174.874773470161 None 1993 31979 SNT_20191012 44983561.28480263 5425.279058716062 0.012667550675848935 1.5321789431430767e-06 19573476.34178384 2367.4717443339173 None 5690 289731 NEAR_20201030 0.0 0.0 0.6900742525202638 5.1270137675097683e-05 8819125.994262757 655.2306541629835 32538 None None CTXC_20201129 849808.8142191275 48.00709456922005 0.08469371813544453 4.78169490960983e-06 2929254.0053443513 165.38179306178566 None 20062 643557 LTO_20200725 17054935.820250433 1787.9291898621536 0.0740015846696101 7.758004696493175e-06 2127779.191492057 223.0671280134737 16330 514 1277084 SNM_20190213 7478093.160553871 2058.0486544340015 0.018817765906263932 5.178676436282105e-06 71364.71702174899 19.639673501276278 31378 10091 10310545 ELF_20210221 140169659.64536887 2499.6472677470156 0.29838717750721233 5.322803136589254e-06 40159293.34318018 716.3847131638913 82801 33323 415664 AION_20190613 61509472.72077413 7572.326351465704 0.1936161145465785 2.382002695690592e-05 1555300.6233621521 191.34410821815413 67541 72571 268953 RENBTC_20210110 507595582.49720603 12543.426268514124 40236.56756666885 0.9988393478029975 39982231.30682804 992.525661540343 None 2177 104896 PSG_20210114 0.0 0.0 10.497282629475228 0.00028088386688754233 8623195.582932232 230.73747804603644 8558499 None 36186 DOGE_20210718 23966076760.831036 758924.481537492 0.18367522219137983 5.8163722065973625e-06 2708790553.672198 85778.22257079526 1967786 2116765 9379 NEO_20190819 694568450.3543364 67318.54326190648 9.859715774911201 0.0009555838726945523 170758020.26168975 16549.524755117993 324316 98208 189804 COMP_20210823 36357.64503173092 0.7516821772584275 3.945435499079089e-07 8.1498e-12 124.83628468339613 0.002578652605397333 2565 None 6343475 GRS_20210120 30170336.027894467 833.1392443591438 0.3924565464405462 1.088890152121385e-05 7946444.792185688 220.47805182676672 37582 106771 3770172 TLM_20210930 194213026.19492432 4672.286512542553 0.15662423302081752 3.767814694808761e-06 65728362.930699274 1581.1875783174353 None None 15063 PPT_20200407 8789987.423563909 1206.313150321874 0.24263703365748937 3.3298824031473596e-05 2518642.7526289234 345.6514471584173 None None 1062146 SUSD_20210819 304411897.4487886 6757.13237921154 0.9993447449674392 2.2211515252033332e-05 60370053.8030629 1341.7895851911387 148312 7450 47795 COTI_20200323 3806052.434865051 652.9882061326905 0.012067231658277038 2.0695351487145437e-06 1557224.9750205092 267.0647180333665 None 902 294374 REEF_20210204 0.0 0.0 0.02989003784103696 7.968558531429605e-07 110271802.84237525 2939.799942672967 26111 1402 104266 XRP_20200718 8705421339.112036 951091.1573383311 0.19426776570870785 2.122072908921011e-05 1006735467.4007933 109970.17719473338 951950 215243 30317 NEBL_20200901 10787657.451418297 923.1921963596178 0.6399586971279521 5.481378457396973e-05 237612.2462942843 20.35197980582778 38834 5948 419992 NEBL_20190522 19270495.856102776 2421.7063268641923 1.2690322202830417 0.00015978617054160973 636750.9324102612 80.17447583477612 40368 6172 675996 DGD_20191203 34476314.028107844 4715.667019842996 17.226727803073363 0.002357873747894956 2915759.508536327 399.08872299743194 17439 3355 485399 RCN_20190629 12959924.62681749 1047.1408539808672 0.02591850221868639 2.0906027423786012e-06 963736.3608522495 77.7355829410192 None 1121 1997723 MDT_20210707 15201294.623416182 445.0515030306568 0.025102180969760614 7.346439329249646e-07 2109590.3629982127 61.7395660958933 34334 310 534148 ELF_20210707 102786319.95636494 3009.2967290499055 0.22179968756313814 6.4934617457307914e-06 44876680.71445498 1313.820649146478 87915 33393 490467 XRP_20190131 13165745045.173086 3803433.5902707847 0.3199951256691925 9.246207315381444e-05 754107735.899951 217898.20859559282 911613 197651 28278 ENJ_20201130 131909787.11005126 7272.565943203498 0.14323785368072903 7.883318583579597e-06 7414631.241538169 408.07578970775745 67287 15977 80924 VET_20200306 388167226.9633575 42862.33895943315 0.006191561966219339 6.834867169099852e-07 137128630.32573745 15137.633742028358 118774 60662 236885 DASH_20210513 3639730255.3433156 72559.0915922186 359.37944992704263 0.007164334880403875 2179350802.3786545 43445.998298698694 None 40525 48371 BAND_20200207 5071048.009147684 520.9758046524552 0.2839629453051863 2.916045011559401e-05 2240294.0374384723 230.05812414284082 7692 1002 716251 PSG_20211028 63006357.98388708 1076.539589470926 20.336784449605805 0.0003475303095854474 11300309.102138236 193.10820402354574 10637990 None 9263 VIB_20200719 3089404.110465149 337.0071746157256 0.016922318999649535 1.8459685784386603e-06 447674.4600749266 48.834499969237186 30744 1101 None LOOM_20190622 52113322.924848154 5149.2607843114965 0.07525652490425634 7.438252287854598e-06 2617113.634737559 258.6719424784537 20438 None 421831 BEL_20211011 85690369.54065634 1566.1220784024629 1.786145735268143 3.26451973329169e-05 7460101.213195991 136.3474835337304 None None 403536 SNX_20210519 3496254664.184229 82024.86323379532 23.00835310261203 0.0005378186416488951 758464717.4459629 17729.05962700529 128021 6561 36942 POA_20210804 8364722.313441044 217.66258004997553 0.029122919199686025 7.599876711822267e-07 313955.7328072479 8.192945377297963 19953 None 221231 CDT_20190826 14150221.775990114 1398.9538415898578 0.020976368835632694 2.073817091333949e-06 253616.35737676924 25.073640756943664 19740 297 224421 BZRX_20211011 87980172.82520758 1607.88649955934 0.27594360141554275 5.041568984206275e-06 6768011.6721197795 123.65352034208543 None None 301368 TFUEL_20200109 0.0 0.0 0.0024919739513294304 3.105540154653544e-07 930504.8887799412 115.96109560719586 68702 4015 523233 DIA_20210718 58104336.69495198 1838.4165259403846 1.1969515293730983 3.786920147609838e-05 8720857.385648 275.9108429013777 33957 400 454629 ATOM_20201015 1369757310.0372636 120000.07530223459 5.748549689298225 0.0005032185067563369 285788551.8383288 25017.455893591905 43691 9634 80647 BNB_20190916 3168780324.5453725 307493.6314006502 20.37333835182006 0.001977000636797688 98172597.87119758 9526.533411256192 1035585 56333 1307 TFUEL_20210207 0.0 0.0 0.03403347560542985 8.664239634576229e-07 6439719.3065935355 163.94232519358567 83116 5321 46280 DUSK_20201101 13764085.21742745 997.4889446408624 0.047483830619915644 3.441822705590687e-06 2275177.747560614 164.9142103443614 18267 13348 801283 ANKR_20200309 7742342.7370747095 958.3890739581906 0.0019238246000047574 2.3914566693029747e-07 6990501.81858928 868.9712251209683 None None 5490 RSR_20210204 371618776.7091667 9915.294865832253 0.03986774827202103 1.0628574219659793e-06 128637098.03583963 3429.4109979496593 56231 None 136667 LINK_20210614 10078863532.53329 258960.44617939822 23.39835966660662 0.0005993805398611985 1328820190.1132617 34039.52132872126 370673 60437 24731 FUEL_20200127 2633510.3941077753 306.875372878291 0.002664055061255252 3.1e-07 100089.61642181582 11.64682425 1 1480 None MATIC_20200530 88903816.77998483 9431.21357444638 0.02588552168170099 2.7446100980576964e-06 61686033.61421387 6540.494445062024 39525 1802 157570 CAKE_20210429 5726643677.4117565 104619.35714775986 36.08142151514789 0.0006589535935859411 669590182.640078 12228.699384676604 486299 None 2459 ENG_20200721 27704652.69030921 3023.935423953172 0.33589270272772537 3.6660156860752724e-05 3203320.0894867904 349.61824416584113 384 3576 537698 OCEAN_20210603 283019507.30848587 7521.317553474979 0.65050285039586 1.7296988696368366e-05 39169891.676955365 1041.534519275309 113498 3132 71086 ROSE_20210310 221197280.87238976 4045.1406419026757 0.14734695151204472 2.69358571384823e-06 49591037.24531507 906.5522434509069 13215 1010 254242 APPC_20190531 9895905.510470388 1191.5594282681393 0.09289825933012984 1.1185817877645958e-05 899760.0655839054 108.33951356864765 25575 3377 1182618 POLY_20210513 294118657.608503 5702.384161035762 0.35221377244159363 7.0214849952444735e-06 13736730.476215143 273.845756382103 46206 5540 152972 VOXEL_20220115 86038868.12662998 1996.4969163364706 2.3873760123542644 5.535386041096872e-05 11719398.61553119 271.72676264971636 51183 None 50305 NAV_20190726 9063633.7352615 913.387501960033 0.13685237145789902 1.38256330199427e-05 84482.25176427978 8.53489491740862 48291 11232 923849 NEBL_20190201 14311976.098868765 4171.032329091485 0.9689333606283149 0.0002823825545820609 115424.97804100304 33.639052473805634 39677 6182 502010 BTC_20210710 637000370375.4657 18752181.0 33971.297749757956 1.0 24282108111.21572 714544.6839022227 2881143 3178742 5487 IOTX_20190316 22988016.225974914 5857.923846167364 0.009104020601833955 2.319933084057163e-06 588102.254948494 149.8632239242505 14064 1649 1193452 FUN_20190207 22161979.64517589 6507.253773032749 0.003773009953043075 1.107840258213305e-06 902590.9762098831 265.0209335755601 36462 17868 509158 BAND_20200113 4348470.10605146 533.4271434867022 0.24356533518239065 2.987215650832966e-05 806924.7716214773 98.9655734477755 7639 997 703160 PPT_20200704 11026728.525466077 1216.0340533303602 0.3033617069673247 3.3465261921897466e-05 5717593.515746493 630.7347307615473 23662 None 1105002 AST_20190914 4061063.0236317227 392.1724160675375 0.023530888186630284 2.2724309755381555e-06 1420394.1706672492 137.17067053729062 32016 3567 238019 COS_20211202 73033274.61027679 1277.712174188743 0.02135707806165971 3.7358458757545725e-07 3911753.8833310707 68.4256037732235 None None 205544 IOST_20210420 1351880272.560237 24157.400744746134 0.07250695155016249 1.2963809927957462e-06 805898729.308813 14408.987999880243 238851 53063 143784 NEO_20190803 824091801.6956958 78300.04692176142 11.673951226273951 0.0011091432078532899 223007108.69654483 21187.92644576778 324446 98215 192021 POA_20201231 4823350.294128917 166.98372949084947 0.017042517451917642 5.900096303389144e-07 110033.52127370573 3.8093455027844616 18144 None 253584 MTL_20191017 16487664.590595912 2059.3145221874356 0.3144468724329037 3.927451382209944e-05 3686720.42083816 460.4725466217527 None None 240997 LRC_20200711 115264436.7289685 12413.62835309132 0.0970032653508794 1.0447474874038465e-05 14795825.024827145 1593.5443990303754 36407 6916 365318 BTS_20210202 107618690.63374507 3222.264636012058 0.039708822155316084 1.188941554810612e-06 62315076.98339756 1865.8066519070721 13232 6888 136810 BRD_20200526 7238291.690511355 814.502844826483 0.11528395309018138 1.2966687017187757e-05 1082220.8541216878 121.7239583022652 191 None None TNT_20200224 24559651.945324596 2468.540567692139 0.05739876195687632 5.768323782477083e-06 1434996.4009962648 144.21084332541315 17730 2566 1056961 KEY_20200310 4020542.4221123317 507.8212808663402 0.0015728052645211145 1.984567691071184e-07 2288865.9117966145 288.80939301336923 23527 2763 281483 AE_20200321 35509611.811660886 5743.9706579477115 0.10123736057039451 1.6327310701167144e-05 16125286.082805116 2600.6461896652704 25388 6341 484575 GVT_20190228 20166214.4422367 5283.063358211165 4.544415470621744 0.001191930187324978 3698227.6116237575 969.9881444356641 20741 5805 148821 ELF_20200901 63427944.37235071 5428.07217780052 0.13725966202628975 1.1758913845711594e-05 16925583.061792623 1449.999730976569 81798 33355 608633 BAND_20200331 5574716.87341864 867.8297287201644 0.29039475811312565 4.523006534086341e-05 1820438.9463528453 283.5401473070532 8820 1062 767895 POE_20190914 7310593.943456432 705.8621320770819 0.002902526494423564 2.8041848180101086e-07 303687.3300651279 29.339797656516538 None 10717 694514 TOMO_20191118 22732070.30320469 2674.4158358664376 0.34779293279814427 4.087069419745188e-05 5358183.262023654 629.6639434107628 18792 1372 333832 AVA_20210613 130527219.24688616 3638.0624374270215 2.4979414451686583 6.990783140699735e-05 2918931.2319807275 81.68972609369958 None 10251 43410 LRC_20210805 316832901.8385014 7946.795759729923 0.2523783547243692 6.345769342374922e-06 25873473.59012837 650.55933845158 83287 11081 273210 POE_20200127 3886482.3978015054 452.8805877048087 0.0014886824113994552 1.7322898248070934e-07 79978.00369896913 9.306557325807807 None 10514 564904 APPC_20211202 9668735.322165838 169.12779109292308 0.0834524628337855 1.4597761837975475e-06 169990.16490745373 2.973520322653158 25282 3101 1114330 ADX_20190318 12689794.572511502 3186.5985188339628 0.14577802470023546 3.660886308805973e-05 855168.3988472259 214.75625626708592 54433 3929 962371 NAV_20190124 10671574.903961524 3007.180544496197 0.16646625951428218 4.687091512300902e-05 258653.83922158426 72.82762392672828 48058 11489 725483 REQ_20210620 54262583.20811173 1521.7413641601365 0.07196727639585519 2.0213474500093195e-06 574203.3664701721 16.127670362527365 43111 27755 366720 DATA_20220105 0.0 0.0 0.11924504915069213 2.5957753272682864e-06 101506.78452361136 2.2096414794022445 None 4828 157344 KNC_20190207 18280656.349983085 5366.34265405863 0.11665436050890805 3.423858562484704e-05 2849445.438367792 836.3252020693681 92663 6544 188819 FTT_20200711 301406541.0616979 32460.565375671857 3.0348403215606403 0.0003268829441573044 2819964.7106642122 303.73867135375076 15171 None 12401 CELR_20200310 10941870.18082326 1382.0775676921235 0.0029146952696976246 3.68277408966288e-07 4523358.298350579 571.5351073786617 19284 None 1113968 REN_20190511 19009842.6396324 2983.901027954877 0.02466784250553305 3.871452829955094e-06 369333.9083104004 57.964485714790605 6316 780 1306046 CTK_20210916 119732868.98577511 2484.4389239587686 2.1410768020639015 4.44246222035707e-05 9656035.51031927 200.3504634288191 87633 None 92732 ENJ_20190708 115192989.70695665 10083.990931831824 0.13161991110989935 1.1514816464092193e-05 9565147.544238191 836.8104604773666 46806 12650 20679 QLC_20200308 3603050.9689673833 405.35562920876134 0.015131735859583849 1.7001125436144522e-06 93970.2492270202 10.5579426524451 24539 5673 940522 XVG_20200721 94597107.06546395 10328.615421960232 0.005793104436587241 6.325219626785609e-07 4812632.056030559 525.4687718910702 290130 51623 240038 NEO_20220115 1752404571.6978784 40657.77865751488 24.90074150308956 0.0005773502632844165 100763804.10670426 2336.316323083266 433463 115939 79106 SKY_20210427 61063095.32434652 1133.7978534345482 3.056988879736381 5.6727200682139886e-05 2214774.6419338402 41.0986007870365 19175 4307 267586 SC_20200707 132979191.82208735 14232.781311126733 0.0029905551628977667 3.2007953311470795e-07 4110878.6918768487 439.9879155254106 106680 30122 182860 SNGLS_20200718 8092837.826913003 884.097446923384 0.010244098515079748 1.1191106923080807e-06 508806.40317071875 55.58426495654751 9084 2130 783082 DGB_20201231 352007563.4249535 12206.290888777596 0.025336817126693535 8.785849856039192e-07 22072190.712260272 765.380089464649 179104 23707 240247 MITH_20190923 8657467.878302466 861.9802048501608 0.01594099413216313 1.5871548014697e-06 3435542.739907457 342.05759754323265 86 2079 719075 SKY_20200223 9779899.57266955 1013.1635946933246 0.5752882101570324 5.959785851137204e-05 323173.5252156745 33.4796536594548 16312 3826 299478 VITE_20200621 8581258.715985123 917.15679090434 0.01713186460470572 1.8310540649414426e-06 5214939.254850262 557.3728220098955 None None 610185 ARDR_20190703 118788390.00950477 11006.261433313954 0.11875841026355499 1.0980737906453902e-05 2298959.20335172 212.56825864889797 67935 6574 885731 XVG_20210106 141223854.312034 4156.0629160714125 0.00863787803516771 2.532616974066564e-07 6234721.964715652 182.80140807889887 289054 51326 225034 COMP_20201208 11607.993057318672 0.6098459540151565 1.178204516149188e-07 6.1688e-12 0.5100133333017535 2.670309107925265e-05 1946 None 6005684 POLY_20200325 11756300.263942372 1741.6728431496438 0.019312292441147936 2.858009141425677e-06 5628007.06235228 832.8838060643509 34905 4994 422167 RLC_20210114 71775491.04744312 1927.6041631831908 1.0180510418059459 2.7323761356936053e-05 5511050.629716505 147.91265471841538 33848 3903 542862 RCN_20190923 15296423.460918186 1522.7737298963302 0.030166647014168248 3.0035227574782195e-06 7646822.453154376 761.3509466152333 None 1114 2070155 STORM_20190725 14004935.972804632 1428.2178227181862 0.002244312107060582 2.2914862589489452e-07 181142.35923034267 18.494986761603712 26730 2569 3721557 OGN_20210703 199697844.6452019 5908.180109521875 0.6465094171207153 1.909284876367146e-05 26261440.161814053 775.5582394434042 116345 5872 54387 XMR_20190920 1305103221.6711156 127426.3407018976 75.8533951253589 0.00740131879625237 117033683.6677906 11419.44406434997 320284 161197 88240 TRX_20191220 858341203.9108585 120197.8360517211 0.01298540614336393 1.817248224044284e-06 1180467393.465756 165201.01494200208 491141 71671 62495 OGN_20201226 25239804.532990687 1022.0568101339832 0.12600846624925832 5.11021736120294e-06 7103476.807979618 288.0783457615774 69895 2473 208472 FIL_20210128 993902507.9448189 32818.469163585316 21.48718769763265 0.0007066499060368607 120101620.34008133 3949.786259722752 46744 None 34991 IOST_20200223 74676876.37770414 7736.298803319797 0.00622345090178507 6.447201575319888e-07 45537639.642114915 4717.484666791253 191787 52288 97956 UNI_20210527 15192076749.16924 387756.0172958823 29.256707236847536 0.0007468028541019467 1120612438.329353 28604.605450352712 None 44645 1386 BAND_20200410 7309006.695950953 1002.8179353694921 0.3795941953163483 5.2060189892027985e-05 3946759.708706544 541.2860955954102 None 1066 769411 ARDR_20210420 364142826.1177829 6504.690600208287 0.36442271616876865 6.511873609698068e-06 17688356.910741985 316.07344837591813 71195 6732 None ZEC_20190725 499934191.89339083 50889.22338191104 71.00439618988541 0.007241000196406414 308781699.0827439 31489.43535447397 89 15361 211514 YFI_20200913 1298248546.3243217 124450.47050139878 43337.7040319802 4.150562618190325 679378798.2932298 65065.84293681375 35433 None 26862 WAVES_20200113 84386933.1124103 10345.12093410373 0.8450428883604851 0.00010347341393413186 45811312.16401653 5609.48199399659 141338 56852 25440 SNT_20200610 105381352.63129498 10780.850461434784 0.027567352944660728 2.8229980842442485e-06 12349446.82991281 1264.628664649221 110429 5702 170381 ZIL_20210509 2821935419.88567 48120.11602314241 0.23567278485041088 4.014007609667005e-06 363592782.39214957 6192.756606446759 254131 30932 34741 DGB_20200718 277660327.8384704 30335.15234516698 0.020770668058084543 2.269150209162744e-06 17488733.870330624 1910.606053155133 162545 22599 156961 BTS_20200308 69502785.99124256 7808.922874173934 0.025644929816306967 2.8813129746248957e-06 15997313.562674928 1797.3637462625668 13344 7041 137133 AMB_20190901 2972959.62816972 309.71864658733267 0.020557436545176628 2.1420361879300562e-06 112132.3925574198 11.68392966551698 19278 5614 670257 NXS_20200318 6421700.5959660895 1180.1169713997715 0.10770792197336927 1.9827441502690115e-05 28162.80457780648 5.184357381402406 23634 3533 599319 POA_20200316 2012531.905100266 372.4152354623678 0.009122067997436189 1.6890802444556001e-06 341140.15525460965 63.1669372551296 17398 None 758180 DLT_20200316 2017333.0971746696 373.41492345329226 0.024590591206146914 4.553296666661568e-06 30368.874653867224 5.6232277854772 None 2587 None XVG_20191020 54839770.56523664 6901.7659858412135 0.0034423503179714793 4.330225522671849e-07 1237338.6660885706 155.64817572787956 300975 52567 287655 XRP_20200318 6533184465.968457 1202663.0024233605 0.14855496359845247 2.743761513826439e-05 2083392083.9541287 384795.69310220936 946442 210829 34201 VIDT_20210825 25656151.603980914 533.8939372707238 0.5567212119597955 1.1592764479639586e-05 2388481.968255123 49.7360408172255 29732 1623 1187246 SYS_20200117 12526761.039106907 1438.4115339342536 0.021763792167750286 2.499072950981421e-06 176480.75427185927 20.264771689151463 59291 4535 836941 OM_20210723 37865240.87116329 1169.706118759131 0.11810651394007332 3.6481179837608244e-06 13259098.392228272 409.5519686381166 46415 None 86802 ONT_20201014 370414450.7831403 32423.1982087448 0.5811459441282364 5.085995902654104e-05 120291119.23062621 10527.478436598029 93155 16671 201035 LSK_20210217 462038608.11748356 9389.944959843355 3.225960900930868 6.556074486018974e-05 74971640.90073997 1523.6380017578244 181650 31373 216887 GRS_20190509 25159820.15390978 4224.183286636435 0.34703516666541845 5.8265128364812505e-05 1132663.1589880986 190.1673683006371 38888 107049 6883994 SNT_20190616 102266615.5529735 11596.925468319994 0.02901156993944718 3.289022560224872e-06 24920305.438222025 2825.198600595574 111582 5744 303277 VIA_20200704 4482278.552897505 494.30829318483734 0.19338068172048514 2.1332735858808236e-05 181366.0684174857 20.00734715007943 38675 2156 2172267 SNGLS_20210114 4953184.657109478 133.33909613652597 0.0055862446046338445 1.498369224805176e-07 115051.87972102762 3.085976501762475 9012 2111 2388583 AUTO_20210902 44553287.217894614 916.0699692095221 1275.8112830012699 0.026221458614931886 4981158.284021348 102.37661128974426 74865 None 15658 HBAR_20201106 177432560.01632583 11418.761288632928 0.02941876884528952 1.8924792988979574e-06 2500314.7170731034 160.84268745829579 None 6723 166628 KLAY_20211021 4211890585.5180616 63544.507584363884 1.6694743551431153 2.5280267024355503e-05 34981931.992378764 529.7191772193283 None 912 46414 BNT_20210708 784061848.7887655 23076.006003951017 3.426046712133251 0.00010083192995187268 57290868.36298449 1686.1266967552467 124229 7564 36831 DGD_20200315 44461994.552295245 8601.814624075929 22.27377410305978 0.0042990423269126145 495331.2994301759 95.60347573976819 17627 4711 323922 ETC_20210616 7500374353.532568 185714.64613788627 58.64318699554742 0.0014529710669240587 3224178009.1341677 79883.7444192869 467529 57256 101857 AVA_20210930 140349631.7726664 3378.2298773422626 2.661450046151942 6.399960144196143e-05 5005188.125472361 120.35921757592946 None 10772 53689 RDN_20190302 15297818.46389297 4004.655019007075 0.30268138181444165 7.916481452807486e-05 1551617.0761060931 405.81775235794163 24970 4465 714743 POLY_20210422 316967073.8020627 5849.495758791767 0.3854324398655427 7.1260201780317106e-06 5401707.042210073 99.86879514353556 45194 5491 167143 COS_20211225 93705403.79977147 1843.5499705527734 0.02736919973437782 5.382260492831156e-07 39998713.72034816 786.5903961769142 None None 173868 GAS_20200404 14765581.318660477 2193.1586319718126 1.060849566854058 0.00015765659662302198 8021121.76500248 1192.0472026201126 321557 99284 235469 XEM_20210805 1501465287.344849 37659.71876536896 0.1665762499702227 4.188372102604698e-06 56835547.127762035 1429.065788602798 371913 21746 110067 GRS_20190224 17498573.843253598 4252.621415784091 0.24306199889908378 5.9070566043874874e-05 1822629.0645159343 442.9476060290073 36268 107006 15092451 DUSK_20200913 19470117.204260763 1867.2268927347939 0.0678364489250321 6.49653463221381e-06 1580115.252290348 151.32386234925033 18465 13352 627816 VIB_20200207 4384315.448556437 450.16369085334486 0.024010408223630354 2.465653786298552e-06 803281.4498117812 82.48980732624716 31637 1114 None POLY_20201226 51802926.79374579 2097.634665666933 0.0692705478517528 2.8092362901381615e-06 1040111.4326523026 42.181257013409166 35535 5009 311827 FIL_20210718 4066506966.5073166 128648.45538172362 45.62282643831851 0.0014462168088344954 164987738.95154616 5230.014445639814 95689 None 29585 GAS_20210930 102957422.65027794 2478.4295667604138 7.391190014357079 0.00017773514696794453 6207275.605777835 149.26568521718983 417469 113836 100131 DNT_20190615 11309269.915052786 1302.7029809393455 0.018021515837511364 2.0768986244581195e-06 9125038.588227818 1051.6196452559184 60655 6375 1082435 MDA_20190405 22500528.193763465 4588.876226379308 1.2659808689513372 0.0002581908061248102 1544700.7696816633 315.0344106511564 None 359 1539394 REP_20190629 186875435.71324474 15085.78135861059 17.00113593867198 0.001373239311720268 13214499.496425677 1067.3798655960236 125816 10005 269417 ENJ_20210708 1289075957.8094077 37939.257710233105 1.3847164784089894 4.076679862848578e-05 460543039.2489496 13558.63502280603 239182 33881 29114 DOCK_20191015 6218489.649535468 745.0526147965687 0.01110659160739669 1.330708192010368e-06 7181739.058722976 860.4619073198769 195 15151 171357 APPC_20200807 4925551.222279813 418.6674606708352 0.04498329120321069 3.819828099499133e-06 295914.30027570203 25.12803596629835 24483 3194 1501614 HC_20200117 65118922.851922564 7480.584221287824 1.4668488338026455 0.00016845895788612352 34034048.389632344 3908.610207297439 12793 844 1039608 FLM_20211202 0.0 0.0 0.5339948968393681 9.338156030030021e-06 12760970.694440022 223.15556973415678 None None 43497 VET_20210210 2289775254.0520825 49217.93667136007 0.03536832715104552 7.593355205415655e-07 705151026.6136332 15139.1446807021 162980 79449 98520 KEY_20190708 7806811.362285404 682.6542781272819 0.002986961672302534 2.611591197533423e-07 393466.33229845157 34.40195498606047 23987 2844 905724 KEY_20190915 3558701.7493066145 343.86356805104725 0.0013611688741409752 1.3152447683297417e-07 62415.82970300209 6.030999902906345 23757 2818 766085 WABI_20190723 8424766.95218098 813.3500947281474 0.14709696601179198 1.421720724553135e-05 372259.8195700336 35.97963402988885 36452 7999 1256578 TNB_20190730 10565113.130297402 1110.7204635262299 0.003845898042943782 4.042222272045033e-07 670197.8242419304 70.44098781550703 15695 1479 578897 FLM_20201228 0.0 0.0 0.13227389240929363 5.029748818616508e-06 7252773.238076189 275.78856992450653 None None 35817 NCASH_20190524 6397645.414279687 812.3489412301366 0.0021933684425079307 2.7890919466650544e-07 627205.9889442443 79.75564609948826 60610 59277 878224 HOT_20190225 212996719.2329527 56383.385786443985 0.001192275943312916 3.17258506809407e-07 13810658.748549355 3674.9453825632477 18248 5539 247216 RUNE_20210602 2907607472.8266363 79243.53066200491 11.518052565679907 0.00031399814468442743 136325876.34588516 3716.4331384139487 2019 5208 65526 RCN_20190302 10423232.93556498 2728.5885362158906 0.020842391488932088 5.451224144187219e-06 3093750.7478634445 809.1551673331793 18257 1115 2128118 QTUM_20210203 365567708.7704971 10265.09516162384 3.523548873892414 9.921375537819889e-05 383582413.7013762 10800.659540251187 192781 15138 197984 COCOS_20190902 22737726.62816903 2337.743199545798 0.0014480045834450715 1.4869758676840386e-07 1689557.8642624777 173.50302616009583 8549 116 186264 SKY_20190812 14863159.15216292 1286.3846130988572 0.9289474470101826 8.039903831867858e-05 480042.98662031424 41.547016034241274 None 3803 513361 REQ_20190903 7977410.699470849 772.7629795158301 0.01098996722979245 1.0635572732267859e-06 155416.78644309822 15.040504684581567 41154 29440 564071 WAN_20200411 13534074.480887778 1973.9971454323668 0.12761358612212215 1.860664482519123e-05 611738.290920348 89.19424217286574 105276 16305 867725 LOOM_20200323 10571294.258003425 1813.0653956727424 0.012597784349096544 2.1605251514748634e-06 12536643.718660893 2150.0395084305987 21576 None 494145 NMR_20210108 146803382.6179497 3750.4773208744723 28.1964994924738 0.0007143157209991125 11793086.074304529 298.7600210522572 22271 1982 2602153 COMP_20201014 20901.650013804945 1.8262071918883167 2.2275401574213457e-07 1.9497717194713254e-11 38.585292928205945 0.0033773807708150972 1927 None 1525892 STMX_20210603 231422320.45793903 6153.561446521504 0.02681323141322471 7.129686832047258e-07 19545521.25224599 519.718952744005 65930 4419 51930 SUSHI_20211002 2080166608.092501 43190.77287587096 10.816547336074553 0.00022456206285507603 349450550.73733944 7254.933954543964 142820 None 4459 ARPA_20210930 66702988.34722237 1605.5476975357828 0.06793836872675113 1.634446859948723e-06 33211163.874992162 798.9871338984564 None None 735001 POA_20210421 26252697.40971938 464.60440677227365 0.09130219551606113 1.6200293140254834e-06 1636833.4123193824 29.043311556153018 19446 None 274673 STX_20210813 1425341632.427294 32062.63319134857 1.354112576204713 3.0458481212014547e-05 43141939.15588212 970.4052427548355 70753 None 61340 MITH_20191127 5443303.392837602 759.6834730532761 0.00958859836119059 1.3397827724226356e-06 828547.3211711142 115.77014546098357 87 2082 755856 RCN_20200207 28216827.70668005 2897.189185781395 0.056004647785592276 5.7536561262570685e-06 3172584.4028245443 325.93651432756747 None 1140 836966 KEY_20190321 7817855.18285212 1934.420842645235 0.0029908895894599453 7.398971945348567e-07 2015202.7506407392 498.5282194543469 23568 2822 726205 RSR_20210703 306513605.2153533 9063.565616537335 0.02333374216415854 6.890968614423112e-07 32705301.29497165 965.8596686436324 75974 None 97085 MTL_20201014 21022224.316810574 1840.115836986047 0.3260989183682903 2.854967708668238e-05 2541570.206036437 222.5122641882668 40398 None 460980 WAVES_20210809 1633720986.369016 37136.54923091289 16.327424053137683 0.0003711760726147649 106536373.4012958 2421.9223155482296 194763 59219 114002 EGLD_20210314 2442636979.7063994 39815.71387369571 140.73778763902476 0.002294175723498682 108928766.33921601 1775.6548224777925 175550 7065 28708 XMR_20201015 2284583304.1020555 200146.77823289688 128.942957035849 0.011296119240291497 294040625.11012876 25759.59198617113 324697 181311 87353 AXS_20210519 365233824.62919146 8533.254740256565 6.621550147183223 0.00015477100706183275 34872646.57966029 815.1074159487224 70797 None 14156 POA_20210723 6728246.550273521 208.65961743278905 0.023274871153217858 7.2e-07 135811.83199702154 4.20129153 19931 None 239848 SKY_20200321 5851656.341772625 946.5533587302672 0.3460014294005605 5.580225332862887e-05 397570.793033088 64.11923253418882 None 3829 253868 ELF_20191022 36737598.631013505 4473.8308612346245 0.0796340951328137 9.697679916153171e-06 10850951.663482856 1321.4070661894955 84836 33540 963430 AION_20210702 65854660.834063105 1960.24224607315 0.13335433990107493 3.964706599546278e-06 4709492.567776693 140.0161125451898 73628 73371 296358 QSP_20190531 0.0 0.0 0.025486812053637602 3.0672785671395823e-06 876687.2741346688 105.50727491449837 56962 8600 723948 ADA_20200105 1067105660.3890375 145123.64784871147 0.03429831055059213 4.664482747036708e-06 77918143.48363875 10596.66876082586 155166 76013 69067 WPR_20210107 6466409.269967242 176.42165760261358 0.011031101186056151 2.995008041221975e-07 2953876.7097696085 80.19946829715586 32536 None 7558136 MTL_20200530 20169864.796255354 2140.0985131216216 0.3093700217215937 3.2996674643622875e-05 3260717.370543082 347.7804008994892 36863 None 416687 ANKR_20210617 559205339.8535295 14620.108922701442 0.08002101036508494 2.092156042104886e-06 42567163.146232 1112.9220584111927 111956 None 5363 VIA_20210203 10727235.254512621 301.2523252167728 0.4677486137981697 1.316173828392901e-05 2803897.9739771206 78.89744666191476 37726 2129 2708625 ETC_20200807 827468360.9126816 70334.07263774672 7.114941340700908 0.000604295433079972 770500086.746125 65441.113469888056 233689 25659 265753 FUEL_20200422 1694810.4448516467 247.48013941797657 0.0017109713030685125 2.5e-07 20464.81435282451 2.99023343 1 1467 None PPT_20200318 7149651.876657285 1316.1455699059056 0.1966823955072371 3.656728214370408e-05 3138383.5533305136 583.4897250149401 24073 None 1049662 GRS_20201115 14433242.207709165 896.7072726891104 0.18941222997638185 1.1774929394181347e-05 3107295.077093097 193.1669361805241 37349 106809 3822572 JST_20210218 74853259.22489156 1435.8336025154301 0.05207328414042665 9.984743224000595e-07 71187151.8111924 1364.9713925588435 None None 122927 FTM_20191011 25035545.324281655 2924.4481357807895 0.011978557037192453 1.3989597451200195e-06 4980249.553594535 581.6367217268496 19114 2178 496460 POE_20191113 5981862.4617880825 679.6804735010666 0.0023760949690610853 2.7001791850637344e-07 57355.0017418844 6.517785857857648 None 10633 855279 NEO_20190528 813446415.780949 92236.59100466168 12.490903191278449 0.0014165677032291588 620499493.2623017 70369.57444671955 321638 97600 225000 XZC_20190726 76321893.1029918 7704.751606971293 9.518851929786937 0.0009616505154453534 12476013.100209905 1260.4003630917266 60867 4041 262317 UNFI_20210201 24065476.13205248 728.0277543497351 9.808177642281692 0.00029664559560252965 18408621.387913894 556.7636165456747 None None 111570 BZRX_20210708 31639242.35955638 931.1740724465151 0.22501406218344513 6.622385525543595e-06 12902097.042843435 379.72142663700345 None None 110017 KNC_20191216 35951904.71003826 5055.939342814697 0.21373561528241983 3.0060423170400848e-05 8387385.502829194 1179.6272566702594 98633 6760 187338 VIBE_20200305 2605091.5744506484 297.5791677384023 0.013921267413743653 1.5902123940297318e-06 208548.013387731 23.82223010184 19458 None 1426283 APPC_20210819 9239905.670034828 204.8482402759224 0.08132919484307304 1.8061164911598154e-06 144446.7259579902 3.2077978191 24952 3119 837968 AION_20200423 26346580.624465298 3704.225934288556 0.06432875622709783 9.042243759594665e-06 2898979.3779618833 407.48927426840856 482 72543 308963 KAVA_20200208 16936859.164343894 1728.5695047991985 1.2362769725590825 0.00012610404926691803 3434202.577966449 350.2992134424484 10537 None 277607 DUSK_20211230 365692249.3974524 7884.866154730947 0.9449519639341666 2.02885101009585e-05 191589293.91668046 4113.501504013894 None 14042 291899 STMX_20210325 458416692.31140476 8672.380978210962 0.05623055429670214 1.066493473233175e-06 445638447.0055718 8452.175175891598 42236 2743 141471 AR_20210727 407851261.2683557 10893.931239474523 9.303836181264305 0.0002485967566362264 19318812.936141178 516.1950559338032 23122 None 89863 BEL_20210828 126112474.96767412 2571.2106164254888 2.6374074051999066 5.376478896127695e-05 15541736.458215583 316.82559892729546 33915 None 475057 DNT_20210304 196655108.57731602 3868.651838184088 0.2601390356372718 5.134154855589447e-06 16482773.02417708 325.30723022151744 64484 9022 196882 NEBL_20190512 20120168.564463552 2751.246200073137 1.32811115797667 0.00018189421003429813 400208.47595079016 54.81137941269983 40461 6180 646043 GTO_20210519 35677274.22275044 833.5571594164602 0.05420499905659103 1.2670380549699528e-06 10645315.582667107 248.8335058602642 2092 None 266465 BLZ_20201228 17055140.276584737 644.2055630436995 0.06687959469078068 2.5405715512188226e-06 14072747.659710951 534.5849136354203 43044 None 386784 SNM_20210104 3666585.8832894713 109.40381459109513 0.008334330342612276 2.5000831546987525e-07 255354.82543647717 7.6599831216274685 None 9500 None LEND_20190625 9754058.15808478 883.4476689793872 0.008643967008998367 7.829041390843796e-07 1776291.7588164152 160.88286417002294 42038 5866 977023 DOCK_20200523 3554428.7633999176 388.29318366006896 0.006337411679530837 6.935146728386729e-07 1343224.4775705647 146.99153711601872 42456 14981 399786 RAMP_20211221 72509557.72256549 1536.913706483033 0.193272360515005 4.099469822692309e-06 2560148.5391668794 54.30291041077033 None None 153760 EDO_20200625 0.0 0.0 0.7155499435174494 7.698293744866091e-05 5251210.723980331 564.9551514276055 3044 37 None EOS_20190531 7671563754.776655 923727.9106891693 7.334060452654573 0.0008838967227887115 6411067437.568596 772658.138588594 1004 65599 114233 LTO_20210310 159920851.33203122 2926.154704195961 0.5829819390027473 1.0648551778468325e-05 30394401.034322675 555.1738939685935 5031 2364 775135 XEM_20190613 770098828.316328 94805.55421706763 0.08570020036980625 1.0539429688827785e-05 56718129.164615124 6975.208130585904 216594 18465 168914 ONT_20200520 307502472.11908597 31522.842458513634 0.482469455761862 4.945914268661911e-05 75333091.71073928 7722.582408998463 84780 16474 164481 STORJ_20191011 18982628.72144994 2216.862947013054 0.13197858816769925 1.541741158730656e-05 2758617.6235855888 322.25487410711384 83251 7815 145218 TRB_20210729 64651398.36809559 1616.0706068433153 35.87606187852072 0.0008967058457314363 19068733.272234287 476.61431329349324 23322 None 258398 NXS_20200109 10943191.694606211 1360.195954351856 0.1826151323640287 2.275780716332584e-05 249223.76012831085 31.05868719692309 22885 3546 610142 SNT_20191022 44044535.96596536 5359.8775687482175 0.012361143504397066 1.5041098410099308e-06 19562458.736318167 2380.3693152805977 110983 5686 373858 NEAR_20210603 1303511118.830236 34637.54358695364 3.3230913598610585 8.82539618876525e-05 82910278.74481969 2201.913756817658 None None None ENJ_20191127 48413287.42163073 6764.6266952193455 0.054718831593491404 7.645679288516194e-06 2960640.5345185613 413.68039770429885 49460 14171 30131 TNT_20190625 19198771.270114 1738.8772397048099 0.04482635174841887 4.058535594709141e-06 2127828.1853538947 192.6515563468479 17520 2518 824040 MDA_20190916 12228456.668484101 1186.9264376304138 0.624227207953678 6.057414677553891e-05 796466.6618108316 77.28802567339064 None 366 3013477 RVN_20201224 97498886.20874314 4169.789354847093 0.012543825061010172 5.380039069510513e-07 9127298.72545625 391.4692966715659 34073 10301 209765 NAS_20210718 12342810.758704372 390.5255367509991 0.27117252271192993 8.580281703236595e-06 1733852.5513990386 54.86154413470286 25269 4927 687324 NEO_20210602 3817944042.4000645 104053.71722876554 53.99118307649163 0.0014718747998989437 641774945.2453969 17495.678280932483 None 111707 92872 KEY_20190906 3846004.1173854056 363.8760412623251 0.0014701619174271189 1.3909637411504007e-07 93947.52327553021 8.888653480824775 23784 2827 766085 WAVES_20210427 1858969835.480202 34508.68807371086 18.527167583962324 0.00034382198118970773 723652219.7192191 13429.334988666424 179643 58186 111113 MKR_20210105 601664181.619591 19230.91863741676 671.821101039395 0.02147333567075628 92304711.10209867 2950.32418961089 80501 18543 39675 FRONT_20211221 43681379.62521245 925.8711978487903 0.676473022901532 1.4348563529004831e-05 24231093.702441566 513.9619402344747 None None 326297 TOMO_20201130 50612721.85982128 2790.1563758560674 0.6645220694184195 3.657300807314314e-05 5263573.776546521 289.6889886466794 34064 1695 115603 MTH_20190725 5624568.958475031 572.179206945452 0.01646807030801906 1.6752728037170392e-06 216767.75163879673 22.05146761284677 19511 1999 1394829 OAX_20191019 3445841.467352792 432.97273119879594 0.06597301754206207 8.289562320624368e-06 189683.67577249953 23.83390528588052 12242 None None XEM_20210909 1702870080.8007512 36741.684792075524 0.18849313260552558 4.0713962884070465e-06 154493172.66083044 3337.0071421747657 372061 21935 130359 RSR_20210916 535634832.6054383 11114.341771190586 0.04065658069768351 8.436825205669598e-07 72740801.71763259 1509.4762493071728 81192 None 126188 SYS_20210421 242904506.27885967 4299.305246110324 0.39802468063527247 7.05918662739174e-06 3336583.0108929086 59.176134841901565 63791 5025 411439 QSP_20210506 69030098.99027796 1205.8146709166435 0.09672618945669392 1.687246608517769e-06 1969237.155784455 34.350455973995366 64456 8427 221703 ATM_20210930 28841703.087913513 645.7254437455765 13.360625422423517 0.00032142948499791626 5184550.320671706 124.72974032506058 5122594 None 71793 MITH_20190411 24594105.3152182 4631.435820936309 0.04784807175571769 9.009577017480214e-06 17968750.98226949 3383.435109134461 63 2000 536282 OG_20211230 6626211.6335517345 142.86974360954392 4.799104180596062 0.00010313512110402443 7701478.3012878755 165.50857564102472 None None 169740 AERGO_20210420 86123189.4122221 1538.9768179001396 0.32619962614264436 5.829018480009743e-06 7776590.692916834 138.96365056121067 19950 None 413577 DNT_20210128 78983062.7045237 2610.9049822734364 0.10569248309337899 3.4766209733156867e-06 6118835.529179311 201.27138004903776 None 6438 241579 POLY_20190430 35315926.14498955 6785.415313034269 0.08153320270600403 1.5665267114658243e-05 4167230.994094882 800.6650601764221 34599 5049 292756 NKN_20200701 14139005.86564661 1545.3233848671853 0.021681364302185917 2.3705324204013495e-06 1863295.4977207512 203.72345229629238 12915 1010 257526 ONT_20190821 507736174.2795717 47237.55369115623 0.7801140768785856 7.257840283699797e-05 44500148.96729679 4140.09929288528 81360 16277 248344 COMP_20210814 40061.66343169015 0.8429377106677735 3.703764766598213e-07 7.7792e-12 270.57571822095395 0.005683035397298443 2563 None 6364625 XEM_20210127 2178794063.158227 66860.45301065083 0.24428464612688056 7.499895526870451e-06 160689082.27231792 4933.389586528185 223413 17961 70313 AMB_20190714 5136264.267334426 451.1594522396144 0.03527844424628058 3.0978532603852394e-06 197660.0616354137 17.35682736207312 19390 5663 665326 AE_20191203 54547394.050847225 7463.76587305351 0.16078782627528754 2.200751058990775e-05 6570332.179484278 899.3010128244756 25174 6356 420874 WNXM_20210120 86838186.26830234 2398.090710869344 44.620677482600236 0.0012380228265385386 82020994.23424645 2275.7131636331574 18816 None 131837 CND_20190826 12701535.012851473 1258.1386811978348 0.0072838546428500624 7.214954149336929e-07 283060.66950362746 28.038310099364864 35940 6118 336080 POA_20201106 4198612.775646497 269.9867175548483 0.014961805685634882 9.602826435639543e-07 129399.59370811845 8.305159586548982 18078 None 174905 HIVE_20211125 540333450.5326009 9445.164351524563 1.4798641946532636 2.587222800263029e-05 54170757.68239699 947.0586550427291 28322 194 88110 COS_20200526 17674105.016625516 1986.1271256378775 0.008945643183434325 1.0065711956624412e-06 23588904.904147048 2654.243158021801 11781 None 168356 ZEC_20200129 497929255.4473229 53301.73956878716 56.49928718504374 0.006056965638020672 377801388.74292326 40501.92743348687 185 15493 167778 NXS_20210513 98609364.63634928 1949.2103501365032 1.4466282395174466 2.8595486317815e-05 783547.0732946749 15.488367364676794 25526 3892 484526 NULS_20200421 17962410.861116882 2623.1109125247813 0.18828250562547266 2.7499842440283994e-05 7259539.522600316 1060.301340251096 22829 5180 583809 OAX_20200713 3135572.2746589654 337.8915344491509 0.059981315044896594 6.458362927829231e-06 200296.9961443962 21.566561078 11906 None None CMT_20200317 4598213.480682303 910.9951875761872 0.005724099844017362 1.1366906561080073e-06 7201339.199640066 1430.040565810639 286599 1638 911838 WAN_20200927 38038907.20446362 3542.611134257823 0.3036750749418249 2.828844033442245e-05 1718977.6307352188 160.12903315352972 None 16050 402703 FIRO_20210219 78401896.08271281 1516.464546582206 6.784105236266579 0.00013121946770556966 8345079.29566933 161.41212805553693 68612 281 232997 CTXC_20200704 1051063.2450864683 115.91186772008027 0.10441172981006742 1.1518150793464037e-05 5811633.190163064 641.1086911630146 16446 20060 611246 NBS_20210430 0.0 0.0 0.030110579780288603 5.618245432957395e-07 4062303.375920108 75.79733620403839 None None 497911 GTO_20210131 30950290.763172302 904.7426477626691 0.04663189305401268 1.3649238061250835e-06 55036644.4738264 1610.9323755001199 16688 None 738206 IOTX_20211120 1733037948.8890448 29812.60527072717 0.18213933449256658 3.1228104666764524e-06 231486640.43645117 3968.8785822384816 170140 14876 51674 SKL_20210813 356717627.3492596 8023.525272065368 0.2941501307917222 6.616368711766201e-06 42006128.6423734 944.8509660824081 28407 2363 190534 WNXM_20201201 32563754.09251974 1654.2034043755584 22.332370150133624 0.0011375900067702035 15885826.427653294 809.2091108957486 15276 None 90492 POLY_20200323 10837355.958696542 1857.5359460674968 0.01767968093862324 3.0320724882614442e-06 4157771.245535829 713.059463563793 34930 4997 422167 AKRO_20210124 39717497.08230211 1240.825614070812 0.016356083183272283 5.10359282175438e-07 11031267.004420033 344.2089066665564 None None 227046 VET_20200323 165975094.69734716 28448.332390971893 0.0026648806250475407 4.5702811355920463e-07 73079373.38653083 12533.142327281208 118577 60957 265359 C98_20210902 792293877.5299749 16286.864809544424 4.283275094783663 8.803317710909952e-05 143807753.52252898 2955.6479925672247 176018 None 33217 FET_20200309 10306422.96753212 1280.0149473940544 0.03031031008397163 3.7677963572550174e-06 6332951.306766085 787.2328194004428 16592 359 523257 AST_20210202 23154702.638437707 693.4675767979785 0.1345799769906442 4.029555039164275e-06 2152892.0496634697 64.46127575204763 35609 3439 162456 RVN_20190130 32365995.74675236 9478.373179060924 0.011621386998626453 3.402337042238352e-06 1665415.153241959 487.5755077470431 19074 5683 228868 IOST_20190730 117851221.28297915 12414.553313245638 0.009853861867585094 1.0359459369820738e-06 57032847.720672034 5995.917911646869 196874 50536 111016 ZRX_20190803 129703372.64263271 12323.602956529561 0.21619363031899055 2.0540577222026704e-05 44718553.802876085 4248.714017568568 151344 15942 188207 LOOM_20210813 74565485.94044207 1677.3282769911693 0.08942329304734055 2.011426331208616e-06 8751345.9638838 196.84678460625784 34013 None 309472 DOGE_20200319 199830238.34854695 37089.676414679074 0.0016144167323810948 2.9964531242773126e-07 74515510.58586784 13830.520337386806 138913 150530 105974 WNXM_20201130 32608959.749562163 1797.3519113376187 21.97187653892293 0.0012092564792368936 12226566.489207806 672.9081478181284 None None 73532 PIVX_20210325 75404180.60166198 1426.5051698493057 1.1510919461581304 2.181945923380983e-05 2711231.7948966757 51.392603188303724 66713 9470 212535 CVC_20201224 54831761.95355181 2345.020606819273 0.08095580984876229 3.471857160968755e-06 40384638.92659229 1731.9287906866714 86332 8047 189562 ONE_20200629 31024731.593167033 3401.894927992391 0.004602937405460026 5.043340735544053e-07 9767030.755816167 1070.1528119345846 75488 1293 151549 XEM_20190810 510234631.27649754 43027.723009619476 0.057031929221821875 4.808070623322949e-06 64538647.474413805 5440.923693529793 217144 18407 178171 NANO_20200320 64111729.07424302 10359.14705644692 0.47858311000431275 7.752816824387293e-05 6876153.595698442 1113.9039002718184 97758 49611 321803 QLC_20190227 6191534.2886902895 1625.1038277313833 0.025794605812346997 6.771641481428434e-06 375100.74613476294 98.47205228564039 23266 5847 940522 EOS_20190805 4306599306.734642 393281.48170692835 4.225190715709381 0.0003858641377095781 2086362029.3478355 190536.31884854342 1253 67670 89433 THETA_20190601 101200532.36330576 11797.051711960547 0.13617802510673976 1.587865348302346e-05 10990959.647996945 1281.5697654569638 None 3992 222751 COTI_20200501 11057078.166344874 1276.5346371880933 0.02210778661194472 2.5647964658552633e-06 2467850.1634722264 286.30335042740495 23230 946 249645 ALICE_20211225 237885187.58975267 4681.8881055059865 13.704215223299745 0.00026949876831427306 151040544.23124635 2970.2715531373005 154401 3124 29730 CTXC_20200418 985092.145577486 139.1505739910987 0.09608847968479592 1.3649069839874051e-05 13629666.095444443 1936.0516998617945 16560 20065 404295 POLY_20210711 161986676.02642018 4803.79837839641 0.18979939824150277 5.630497297777833e-06 4033505.416820173 119.65602399371666 47210 5657 172730 OMG_20200417 79170783.28612067 11150.004026411503 0.5633847281716022 7.941926583025454e-05 112899166.57292289 15915.179226047585 279606 42919 554099 XVS_20210314 437914027.7568278 7138.129724270064 49.228713110779786 0.0008023952694336212 135751651.4502698 2212.661596421992 39261 None 20030 DNT_20191011 5909346.428593754 690.8787434544831 0.007867574344020958 9.190720144390859e-07 1959387.1923356256 228.89112389444375 59961 6240 377310 ZEN_20210729 635810689.1312513 15900.434646342688 56.041641829442916 0.0014007353427756136 24879906.19251208 621.8619367872283 117034 7448 1253134 JST_20210111 38205766.26243244 993.892802713215 0.02664724698357003 6.928229194829242e-07 94145006.16004986 2447.7507212193473 None None 212672 REP_20190901 87425208.52993424 9107.493473115539 7.959828507299169 0.0008293952738165004 5161789.854981617 537.8462747319093 125846 10049 201886 RSR_20210826 720132361.3246757 14691.799285094434 0.05464325305611493 1.114923811324392e-06 273533539.4629216 5581.092619611591 79440 None 160893 NCASH_20190729 4550249.3367607435 476.9563230677227 0.00156262344543958 1.639177084534258e-07 758336.6863373915 79.54879483177183 60078 59037 884263 GVT_20190213 14831760.948750073 4081.789644239653 3.749130166132774 0.0010317660526026257 1014898.271040821 279.30147434308464 20578 5801 138721 AE_20200306 61657512.215123765 6808.36764256118 0.17685089252888425 1.9522575494948324e-05 15544281.090504745 1715.9336702499993 25445 6341 460321 ENG_20200625 23104795.352391645 2483.363098311518 0.27712877888437126 2.981509207478413e-05 977170.766974413 105.12959537228556 262 3567 566856 BTCB_20190712 0.0 0.0 11326.472328229609 0.9999948166041311 195125.94005075522 17.2273345999745 None None 49193 LSK_20190819 165467444.67310852 16037.60780406 1.2299952435765562 0.00011921487852979413 4319207.849258624 418.63075632475113 182157 30895 173926 NCASH_20190811 3524467.4684502133 311.05822748366745 0.001227532911389433 1.0839463996671975e-07 746485.0996631492 65.91675291778617 59948 58988 884408 OXT_20201106 0.0 0.0 0.2022554554615561 1.3016897379528425e-05 3431980.444509863 220.8777862272528 47756 1728 99245 ANKR_20210602 760422657.9841123 20724.45361941058 0.1086138326267611 2.9609642547984614e-06 48185343.33389669 1313.599527485103 108954 None 5363 THETA_20210314 6848077039.905728 111609.3670956418 6.845228756786608 0.0001115663490576824 436912163.6860698 7120.973848101144 98847 6558 39899 LEND_20200913 937926754.1645336 89947.60305057849 0.7584823419202594 7.263836722362218e-05 127613734.12210782 12221.317187782186 65925 5907 20694 GAS_20190603 47536090.67252037 5435.296135751384 3.419228519144728 0.00039099142028762164 2192910.74528726 250.76103631655528 322034 97624 216321 PPT_20201014 8202105.094976576 717.9484457507713 0.21827556385437155 1.9110095788281036e-05 652233.7143569128 57.10327137683079 23562 None 1436311 HARD_20210115 20447414.620785568 523.5423974282828 0.5131937722314671 1.3083269552750822e-05 7231335.339685351 184.35436007739472 14325 None None ENJ_20190130 27172609.77965934 7957.491490631949 0.031510102426482736 9.231291572365619e-06 2553757.294297594 748.1561903430495 38069 11117 17842 COS_20200430 10913993.585676795 1248.507170560337 0.005507625136736019 6.28197337146852e-07 1227944.3591081034 140.0588016441071 10819 None 147635 BCD_20190725 151643991.17391247 15426.522325269409 0.805199238480276 8.211389937588853e-05 5128661.112314644 523.0188286125077 21428 None 2927391 JUV_20210813 37668584.93918213 847.3435380438599 14.474193185038883 0.00032556298290022497 15787444.333893798 355.1014833093726 None None 44064 ONE_20200711 42434308.18303506 4570.045593883959 0.0061711044045226916 6.646902514512341e-07 10858405.599077052 1169.55991584269 75751 1311 139358 PERL_20190830 26904750.088441025 2835.164013796041 0.0918722287615807 9.686737328138432e-06 8487817.405293245 894.9304790204433 11253 352 375470 WTC_20190103 28484680.70807103 7364.244173041861 1.1322333788062344 0.000292720257174403 1975539.4051581942 510.74311494489 54712 20496 549337 EVX_20200501 3683321.6028110436 425.64734725923495 0.16826359739799313 1.952080900334433e-05 628529.0827118973 72.91770986950557 16699 2853 1393959 ICX_20200730 210489354.5724582 18978.011411295356 0.3765170031010785 3.394729389480472e-05 21271215.324697446 1917.8422014936882 114428 27798 129774 NU_20210814 166695607.1755229 3498.5311570859863 0.2991910624988974 6.2716539568183015e-06 73002651.35909662 1530.2842385413585 None 7163 153146 REQ_20201130 18288966.613556705 1008.2262903379486 0.023797098330731473 1.311591389663585e-06 257649.33322377957 14.200497989810417 39445 27444 345148 ANKR_20210718 434394023.0234987 13744.191847310238 0.06224727040336651 1.9693816887279225e-06 11738450.238131206 371.38156907470216 None None 5363 ONE_20211204 2666661906.0954623 49665.70347349174 0.2325056793143193 4.333635098996658e-06 152859562.56192532 2849.1242342519317 284701 44110 9801 STEEM_20200314 47493173.02167102 8552.818264788311 0.13931728362737986 2.5088982946354086e-05 2447297.863404446 440.72216139258705 10939 3839 211376 ATOM_20210731 3376920873.4914975 80939.63172760345 12.216065383063258 0.00029217167904740205 313964766.7330373 7509.096438309593 167887 32853 55057 DIA_20210513 164292470.747211 3185.3089177816328 3.831900863612032 7.639006910661875e-05 68762287.45449615 1370.7963951934767 None 373 348922 LTO_20200506 9076884.694823878 1012.249972788389 0.043025817412425255 4.7893338454961875e-06 1355783.30639504 150.91633969983144 14706 430 912556 STORJ_20191203 17983293.857978508 2459.7532579926033 0.12470957239212603 1.7069372095270417e-05 4581012.326908151 627.0168558925546 82761 7856 159613 FIS_20210708 21357727.91753801 628.5550384654607 0.7919838247072959 2.3309713950697292e-05 3023191.190970261 88.97873880925421 23508 None 421397 NULS_20210304 66158596.92707807 1301.24009720622 0.5914963324336956 1.1673887234141423e-05 35382906.38657765 698.3239565891844 40495 5179 573202 ZEC_20210610 1632486856.2770517 43491.679434147765 144.57492413338724 0.0038601021389318125 1255626208.1563115 33524.79996691016 75874 19886 87185 WAVES_20190706 177943925.5211677 16190.26122506056 1.7796793971093918 0.000161959235762019 13184174.991187654 1199.8222315736712 142916 56864 50285 DGB_20200704 268793722.1375776 29642.72845620794 0.02017729723892718 2.225852905849475e-06 9315992.462940633 1027.6911049564706 161915 22508 171984 ALGO_20210710 2834639878.671903 83431.58294836307 0.9085724746985434 2.6736378438075693e-05 237463526.3251051 6987.791157964009 115237 35182 196865 GVT_20190905 5045319.684840471 477.7906901870106 1.1378072296413113 0.00010771501283866487 303073.21788189514 28.691622539167 21287 5698 171342 FXS_20210511 59352209.48308018 1063.0219906989644 5.4402199946577845 9.736341549403422e-05 6690221.083143919 119.73463861842669 None None 138328 FRONT_20210513 74995203.10378577 1454.0099625435141 1.9446233571140368 3.876663774027282e-05 27747312.80512899 553.150829875273 62856 None 146547 WABI_20190405 17601213.280382458 3591.51851708839 0.3358195377859008 6.858354218313975e-05 2443596.3647017977 499.0492675382655 35602 8012 1213575 AST_20191030 4215567.244868765 448.0436954024171 0.024471779816051205 2.600937436166837e-06 1174770.124517481 124.85824973563092 None 3538 318017 MIR_20210509 626929195.2352779 10690.996482387993 10.051390583110571 0.0001711093500328038 31708703.138954137 539.7915382580336 40332 None 16442 BAND_20220112 214139029.85555544 4995.222042059162 5.13773272658162 0.0001200802387864564 20141232.864257038 470.745400841977 120702 6414 251134 POA_20200707 3621211.546251701 387.92594476967435 0.013076904788306186 1.400204332619288e-06 447268.80527859053 47.891127842160714 17204 None 598130 RDN_20190818 9315462.741713613 911.292633788701 0.18412212336742764 1.8011894781236146e-05 306336.06466529204 29.967571867712376 25594 4395 818070 WPR_20190803 4092482.644862618 388.8172522192196 0.006728605016604928 6.392691040752376e-07 64466.91565528728 6.124851631466952 34678 None 1323626 STEEM_20190723 81269149.31557365 7852.798275070861 0.2557687408950603 2.4738591853948988e-05 1529970.1760581783 147.98253923354534 6037 3762 334107 STORM_20190201 11909512.39109058 3471.742881394672 0.0026359866565109115 7.682227448821567e-07 744380.345185656 216.93960802205783 26506 2568 3618383 BNB_20200301 2982985653.833748 347839.7255407179 19.316274350494563 0.002258445170031796 510660552.38554364 59706.071529853354 1118073 59668 1861 COTI_20211104 499536098.74596 7934.861411884794 0.5760788923568729 9.136281026692347e-06 92912421.91937329 1473.5377546173634 None 9030 61320 BAT_20190419 437954739.10730326 83031.73748668932 0.3506947446540434 6.644680600858074e-05 59867525.5797826 11343.2149156892 97645 25205 68088 ZEC_20190225 306185329.7906396 81403.02894404085 51.36426773573721 0.013636603486760724 183881138.7818136 48818.26002392289 73567 15035 147645 BEAM_20201101 17287011.858211733 1252.835151612677 0.23553572021496072 1.7091670050805015e-05 3439563.9476291086 249.5922574200999 16070 1580 422204 ARK_20200329 21482666.239286948 3436.0901146550523 0.14477249056536082 2.315593968480048e-05 1389496.9611909427 222.24600612935396 62520 22045 77737 KMD_20200208 93169550.70960458 9511.969569081632 0.7887494131721408 8.045486332405082e-05 6004717.506986785 612.4996332881212 99588 8413 167947 EZ_20211204 0.0 0.0 4.190435807011486 7.814513528019589e-05 2857791.430974259 53.29338242156155 37959 None 266818 REN_20190708 66015443.16499146 5772.61606662635 0.08211039243926677 7.176877806964387e-06 5467103.991896924 477.8534865343997 7201 797 1032866 AUTO_20210916 43711783.75170438 907.0255747169241 1250.0137754740083 0.02594022678584866 5584579.060134828 115.89092069682653 None None 16655 TRU_20210624 56154351.88828574 1665.7069769865036 0.16429568124481525 4.87502693037947e-06 1533809.386300187 45.51161666349758 26683 None 102070 HARD_20210120 29579704.896561425 816.8292511923842 0.6229507481955969 1.72177223854975e-05 9796556.650897216 270.76681942757097 14556 None None TRX_20200106 893369823.3418518 121642.510009446 0.013511860078125108 1.8396340991693035e-06 1138776202.638369 155043.90376922605 492851 71734 62423 ZIL_20200309 61188616.27716321 7574.257983935545 0.005827133608661403 7.243559278386585e-07 15458321.46635271 1921.5840137841626 68631 10567 224303 JST_20201129 31333030.752504997 1770.287654965913 0.02188748701713523 1.2357384651198424e-06 48224580.57388402 2722.6958093802905 30534 None 156179 HARD_20211225 71114296.57332909 1398.619618869351 0.7359427129386339 1.447260214868915e-05 2821643.262673443 55.48872164674463 None None 47415 BRD_20200725 9305492.848588549 975.3174836903651 0.14052258141305185 1.4733203733287769e-05 1135931.8623680426 119.09769509718762 215 None None TCT_20200526 3703051.1692456612 416.67039100433084 0.006368401263452649 7.156943013562283e-07 2147065.2944508465 241.29170451252438 None None 997352 RVN_20190916 139391611.21590936 13526.350308211106 0.03148839928392017 3.0555908099611313e-06 13178965.508062359 1278.8686248587449 27752 6996 264985 CDT_20210428 29725791.40190992 539.5866968667947 0.04398778691483279 7.985849070172646e-07 7018927.951541326 127.4265044612285 20707 327 413427 UNI_20211111 13136983216.709534 202287.3606776745 25.35358811562353 0.00039031761422928635 669815422.1928518 10311.78531306934 None 56639 3050 ETH_20201111 51000796202.07293 3338623.76913542 449.8161845012962 0.029443524627220535 7873172432.585956 515352.6138020282 502051 492405 9859 DASH_20210324 2080987539.594598 38150.45996025706 207.71639976372794 0.0038047378823735625 867781076.1198757 15895.131716493075 384665 38933 48362 NKN_20200330 7138720.700879125 1206.4938230889927 0.011055669160528145 1.8698971322173553e-06 1643599.6269840547 277.9897068540879 12218 997 277366 AION_20200629 39798291.87236595 4365.098357322775 0.09259749893092037 1.0153010208519979e-05 4865338.48002964 533.4683099000093 67490 72561 377141 BCD_20200224 144076411.73768535 14481.483816986667 0.7644807216346285 7.682695893621072e-05 8488346.905088967 853.041627680519 29391 None 1333183 STRAX_20211202 264042956.9744409 4618.719653648953 2.0103199967833136 3.515612875625169e-05 2849765.5784111368 49.83620804651172 158649 11172 188496 IRIS_20200907 56359546.4082886 5473.1360775672 0.06838009740615483 6.646295614488899e-06 8433337.491431361 819.6895896752555 10303 None 427030 DGB_20210602 943826907.6320467 25741.660001310054 0.06570435121755189 1.7915568070918197e-06 53553830.25659807 1460.2492432254319 219180 38767 96410 HOT_20200329 57568115.46230396 9234.583558573868 0.00032159117539503924 5.144924398617535e-08 5642215.477769974 902.6607163016083 25090 6927 515134 NAV_20190103 10486483.376749258 2707.849831987263 0.1641609875785441 4.239982566826682e-05 107206.75987429697 27.689574704556897 48091 11515 699483 XZC_20201201 48994087.34057051 2489.8261299793644 4.321567262143196 0.0002201365863967624 9225550.003826486 469.9408715133188 66974 36 2356296 ZRX_20190616 220978713.0532817 25058.751103743416 0.36907061041244027 4.1856985669329604e-05 64675814.0449035 7335.004590597178 150584 15951 211751 AXS_20220115 5142545947.686556 119330.68565667295 73.74107725027383 0.0017097198631663504 197154421.88485673 4571.113465885345 856886 None 413 SNT_20200113 33045391.195802037 4053.4840899057835 0.009286781569720346 1.1371434594803866e-06 20251515.89337546 2479.7480881644633 110439 5621 276615 RDN_20210523 27793937.7548881 739.4145038404293 0.41602757687215997 1.1077873084502427e-05 397473.8011213328 10.583828015299861 29431 4635 652257 CTSI_20210310 82073942.62874459 1501.599541781428 0.2794912343773164 5.104547565276915e-06 19747434.654925253 360.66147016324743 27534 678 224647 BCH_20210125 8169324446.67704 253983.8537282381 441.19282463989026 0.013674378989342534 4862334473.648802 150703.73009780687 None 368460 393369 POLY_20200106 9749820.438287685 1327.5494641381972 0.017290324078622413 2.3540703927371844e-06 6060458.2129282495 825.128851292878 34930 5011 298453 STRAX_20210125 53072674.338996686 1650.02656514213 0.5324352337411042 1.6496912438473182e-05 1164933.7160660038 36.09417313639065 144520 10291 214690 FET_20200321 4386198.667257712 709.3120654216084 0.012937494202680332 2.0865270128692303e-06 3945992.149590555 636.3998378437805 16589 360 584622 NAS_20200718 21188757.42741177 2314.9298625738643 0.4673595287627889 5.1058009760716545e-05 5849467.833874152 639.041610101699 23496 4930 784060 TRB_20210707 70833459.20802364 2074.145367247931 40.14087699288312 0.0011751741044232693 54383833.44465217 1592.1543710854778 23072 None 263441 KNC_20191011 33661508.60346851 3931.2828206310332 0.2007837754305976 2.3449270093926024e-05 6314771.458017612 737.4937600555969 98176 6722 164062 BTS_20190329 157660173.56248274 39159.888060253 0.05831441434115783 1.4484092422290411e-05 31617490.98104616 7853.129739951589 13800 7213 180886 QSP_20210805 25073899.403611396 630.4621663305282 0.03512724995969448 8.832452324361322e-07 376382.55844483856 9.463823689584636 66710 8495 236005 ENJ_20200610 185766454.67678306 19003.82960681208 0.20156458324634663 2.0622629293288994e-05 15276222.699580094 1562.9525418666365 55869 15545 107410 NULS_20190605 52010364.00167603 6781.977012443828 0.7267636934849108 9.461282479655723e-05 6611738.86209392 860.7409755986505 20847 5318 664729 OM_20210616 48310537.87743615 1196.245187605867 0.15638049468262005 3.874579709132451e-06 7479622.357187237 185.3197425673059 44232 None 70903 WABI_20201229 4087049.144592635 150.72174035343645 0.06899887086508376 2.5420729918649635e-06 571386.9023543993 21.051173652111594 40931 7487 1416175 BQX_20190906 11485416.502247995 1086.6692788911394 0.0815523455397127 7.715908996611077e-06 127242.31143646396 12.038772018937317 60332 5754 423715 CTSI_20210324 104777241.79962923 1920.86684421073 0.35234434363645656 6.463616899980353e-06 33181425.310024112 608.7000551386645 29345 773 199890 XTZ_20210111 2101853610.6248357 54523.14202667468 2.7794302927967114 7.226461371945859e-05 406930396.16602236 10580.106277842413 79145 31927 186076 NCASH_20190616 7164942.468531673 812.4968577778121 0.0024689587895296776 2.799042304838239e-07 5681478.660500527 644.1054906309732 60317 59199 1027921 NXS_20200411 9019940.489792354 1314.8502888606888 0.15192168389851762 2.2150876716524353e-05 66342.40632786899 9.673026430037682 23667 3529 537983 NCASH_20190818 3352739.33213519 328.0294438638378 0.0011555463551060482 1.1305776878959511e-07 696958.8866700648 68.18992272946626 59874 58959 801228 BAT_20200224 394411933.21501124 39643.33896986995 0.27552272516450027 2.7718343207281505e-05 82138316.66165149 8263.340348193433 111183 34922 21502 TNT_20200321 13209880.833315039 2136.8064597267817 0.030884462655110256 4.980969621960321e-06 561457.3533513449 90.5504509597338 17672 2565 1338754 SNM_20200314 2387150.1261224924 433.5927176632092 0.0055120972591319334 9.908392214224126e-07 65294.22164212083 11.737107074458631 30185 9700 None STEEM_20190605 115524947.38711126 15039.47115789045 0.3710861818083526 4.830939164765253e-05 2004865.3339936899 261.0008924307588 5659 3735 311798 GTO_20210617 32786113.35542517 857.2850774354841 0.04919935164695615 1.2854958719000432e-06 28504569.252388783 744.7761988241905 14432 None 252134 PNT_20210806 26650002.928680263 650.4499110877315 0.8459330896134619 2.0656523228335357e-05 12916687.772138134 315.40776011048786 47392 323 329278 DASH_20200319 570838983.4570414 105951.09807344111 60.7743998886481 0.011280088763316319 752889893.0193934 139740.82570659506 316510 34177 60317 POWR_20210128 43420669.033626035 1435.3360990526278 0.1011265621938684 3.3257528475911758e-06 3361849.2850497966 110.56125700676331 81091 12512 393579 RLC_20200317 14849866.519488728 2942.0462952049807 0.2109009014708585 4.188066081992563e-05 426191.3183629027 84.63299077562266 28401 3557 324809 OAX_20190916 3925852.6506085773 381.0609263045498 0.07516316355236245 7.295674921167413e-06 190351.09680257225 18.476334117998782 12286 None None XZC_20190916 45336775.5396469 4400.507680058165 5.411573708459307 0.0005252616971943897 13094909.647013808 1271.0266618092357 60801 4050 176312 XEM_20210108 2241468931.4061503 57336.78520603129 0.24562012613528406 6.222414861782736e-06 203253186.4094982 5149.112443344996 220124 17898 99771 ROSE_20210704 99844489.70685333 2880.1107508484956 0.0666361910938531 1.9184525004164374e-06 18161248.063956596 522.861393891925 None 1636 188060 HIVE_20210821 190727452.82505924 3881.9332282601754 0.5127322720230402 1.0429385835910166e-05 112579516.61755618 2289.957703251401 22825 177 87293 BEL_20211021 114385796.95318022 1725.7371421518567 2.3732126614587665 3.593673038608366e-05 8964084.994143825 135.74000797487403 None None 374430 YOYO_20200801 1858343.1820846444 163.96702068659494 0.010590202075746551 9.346243783635197e-07 936381.8758060195 82.63915290061858 7645 None 1631861 DOCK_20200531 4002213.343992261 414.6802366507391 0.007157045143800034 7.409788516646953e-07 1841982.3676209345 190.70299992850104 None 14980 353281 GVT_20190902 5572574.695181811 572.9298006133444 1.256033771287895 0.00012913585147091906 250803.86915042458 25.78574870780083 21297 5707 171342 NCASH_20190914 3067992.4619996143 296.2829557503362 0.0010574062447910976 1.0211610736206868e-07 510679.9632081639 49.3175165245262 59588 58856 754232 ALPACA_20210909 143925794.83072454 3106.7105651407023 0.9892204419473231 2.1366870930992447e-05 25858513.93097494 558.5363041454755 46520 None 22330 RSR_20210427 1078962744.4802113 20027.957926156156 0.08208440374717546 1.52272902816271e-06 200968730.68347615 3728.125027347516 None None 82413 ADA_20190621 2748199233.2762322 287544.7554869349 0.08835758815796697 9.250471339893467e-06 302506726.026701 31670.509093481687 152726 73938 101159 FUN_20210814 251331478.95072135 5268.922926563958 0.023718011781895594 4.971227507524364e-07 21483506.41388242 450.28815663330766 7827 372 131817 DLT_20210220 11400981.031987153 204.8984072024684 0.13945243187482453 2.4980292697096385e-06 1229211.257110165 22.019018654862993 None 2540 4991902 MTL_20200901 24081269.104636014 2060.8403461043386 0.3735368829708389 3.200057438731317e-05 3453048.353194762 295.81959835014374 None None 386727 ONT_20190411 915834642.5035453 172558.78161755763 1.4930954166249637 0.00028131234419430243 86402040.86441708 16278.906483875611 73344 11422 248801 SKY_20210916 30540539.90039302 633.7077871952671 1.4624682164833902 3.034294253377052e-05 760627.4617330147 15.781317570421688 19721 4428 653441 CDT_20200319 1627273.5415226289 302.368440119004 0.002415358839134111 4.4807457105292333e-07 26312.94686519385 4.881329510436962 19231 290 281286 BEL_20210725 75500890.52857076 2209.849851093914 1.5731203082000398 4.60432411905782e-05 14114934.565008646 413.1262772327521 32758 None 593705 SC_20210708 689847344.287193 20303.14506843153 0.014258035553217495 4.1976424293271777e-07 78460185.78930776 2309.9101110585343 138804 47321 51378 THETA_20210509 12460186603.27425 212473.1915529993 12.409709893412632 0.00021125608207141856 720844776.7569945 12271.265374234443 154691 16305 19506 XZC_20191127 32271953.673146077 4501.303061026384 3.6199307613595297 0.0005058008155876133 9914847.422813406 1385.3684624073633 61872 4065 172664 CELO_20210324 361547788.198135 6628.206154496983 3.8023684160595606 6.975293685813308e-05 20501606.33436529 376.09381723543197 19906 None 84819 MTH_20190419 9791467.065456664 1857.0567344186775 0.02865470502595008 5.433754877723512e-06 639110.698559339 121.19374017485443 19434 2007 1210960 POA_20210819 11667393.788570004 258.7642785627801 0.04013078548258899 8.900371361197177e-07 291795.2020290113 6.471554514178447 None None 244986 GO_20210418 63731609.88190073 1057.2101860318714 0.05900149173357736 9.815556909494107e-07 5420155.460121415 90.17033775579972 None 944 121965 ENJ_20191113 54334571.0265957 6181.783087911734 0.06140781842243795 6.97778481328656e-06 15533604.54918271 1765.0871290239681 49329 14152 30961 OAX_20190225 2745899.620051323 730.6697901539075 0.11602989059728715 3.0927015986569054e-05 380336.09953670425 101.3761244631906 14238 None None MBL_20200520 4858859.3541999515 498.17307629239457 0.0013886343837222876 1.4226189689544816e-07 2180601.9749911963 223.39686887534847 None None 88350 SRM_20210217 180533408.4002331 3671.4132790728154 3.613438450730846 7.346978396922997e-05 110097861.42745042 2238.550954953436 35248 None 81157 ZEC_20190905 328654119.5645978 31123.47451270346 44.88188140725188 0.0042489204726969525 177471087.9094206 16801.001096364445 111 15330 175119 ARK_20200407 24859756.39453573 3411.6830442935748 0.16731167808955202 2.296138410173225e-05 737794.0619050218 101.25278185489859 62479 22018 82800 SKL_20211216 542135577.3365211 11113.039707463393 0.2056854141579768 4.21507943530094e-06 23666029.16686319 484.9842817724596 81083 3194 166833 CRV_20220112 1804824891.509283 42125.2060353623 4.609658212908035 0.00010773796310308184 482695900.7642032 11281.676589582783 248211 None 8564 SC_20210401 1258276123.2240906 21392.229626801636 0.02631203644615414 4.477758245370486e-07 213172306.44552147 3627.7467721834046 127568 37003 63579 RCN_20190522 16119078.547008371 2025.536242053768 0.03215783852204362 4.041171738169268e-06 1581516.3399752658 198.74405215947291 19027 1125 1774527 AION_20210707 65587847.48393045 1920.2292190498235 0.1329257886278475 3.892021940120906e-06 2953743.522402918 86.48460703789861 73620 73374 296358 NAV_20211021 29397266.335551545 443.3660405140443 0.4066672726304784 6.159585613577136e-06 723154.6039319586 10.953260797110737 58405 17185 1016346 STMX_20211216 205135019.44744378 4204.758903113778 0.022063762468939582 4.5214927771573946e-07 12316124.211907985 252.3924319123241 81388 5787 86095 QKC_20210823 135201021.81140286 2740.230695818315 0.020680562700839414 4.196444718372871e-07 8279255.06595453 168.00043933125912 75223 9551 280880 OCEAN_20210318 604925011.8138759 10278.836349037849 1.4422177119755608 2.4473709564718245e-05 131413829.88237524 2230.0266309467174 None 2232 75514 BLZ_20190627 12514902.06105131 963.7008240059755 0.06039590898856196 4.63666846410327e-06 2066104.7296166476 158.6174097514187 36603 None 922433 TRX_20210219 3942038158.4813595 76273.03135091557 0.05504973112958539 1.064667799729572e-06 1965989782.6452508 38022.45666291419 601016 84564 27627 ADA_20210704 45058814114.29131 1299765.0179000976 1.4096155624434996 4.0582759248451584e-05 2665125395.726841 76728.8225125933 522106 535945 6662 CDT_20200207 5185616.4726727065 532.4430092035901 0.007685543095008757 7.892364117874137e-07 396754.4007001246 40.743121949675995 19291 294 205672 DUSK_20210110 18904452.550716016 467.15656103613804 0.06307964356654072 1.559520320448768e-06 2245927.367321412 55.526143927794976 18519 13344 1115146 NAS_20211002 16026429.10686924 332.81903884477174 0.352863257920506 7.325785081170694e-06 3080434.306733309 63.95281792948 25654 5057 469610 ONE_20200305 25371544.54526442 2898.1603102345484 0.004971611723863805 5.677003977329337e-07 19525276.89497795 2229.5601657544685 71481 None 408073 GVT_20190725 9043201.863003543 919.9517524670724 2.032447726361765 0.00020726821401894748 504144.20947433333 51.412426775073676 21414 5745 209505 NULS_20210806 41396498.5431035 1009.9008136688319 0.43936198869312193 1.0738173021022134e-05 10885893.039892722 266.0553392395426 61505 5367 385574 TNB_20190905 8687448.999470057 822.6995537850636 0.0030120020951349743 2.8523595129230435e-07 349700.71935734205 33.116582991295935 15576 1463 1259839 PPT_20200310 12333777.433805212 1557.8382210091584 0.34144389525841073 4.3106479878329575e-05 3741903.2626762027 472.4063892755577 24114 None 1098941 IRIS_20210120 63170521.02790464 1744.4933638957298 0.06690450625864075 1.849172215358451e-06 30789533.53105395 850.9912577393715 11458 None 857234 BEAM_20191220 27436395.27859998 3840.925676207037 0.5505251214667878 7.70442921270029e-05 21613238.32527008 3024.7060168771973 12165 1412 343820 TNT_20190316 8429808.426970499 2148.1268900087025 0.019673691773782215 5.013350741138081e-06 630250.1158914098 160.60355737692458 17070 2510 1213867 THETA_20190906 108660123.2810231 10280.4922448846 0.10851839134474503 1.0267246472597648e-05 4441574.47198423 420.2305182113091 None 4026 310301 PIVX_20200324 14521170.264934953 2240.973026296719 0.231637262019154 3.574731558128141e-05 425826.91125264176 65.71554527480032 63811 8517 174953 XVG_20200411 42810858.615308985 6243.69654874563 0.002643083373513814 3.8537365079041924e-07 606178.2539287043 88.38356333637071 294247 52066 317602 GO_20190603 17972474.156351123 2055.9239044625688 0.02490344759471725 2.848557757730504e-06 1581650.8695141159 180.91566789055202 9678 666 891610 ZRX_20200207 172858900.69214112 17748.615567149987 0.2765667131938737 2.8400923349545406e-05 52007115.89955018 5340.66480827226 152304 15951 118141 KEY_20200404 2238437.5642865915 332.8684580034729 0.0008153032667808317 1.21165094724482e-07 1140705.0919592436 169.5242079253131 23388 2749 226427 AUDIO_20210421 292048959.7781939 5169.417967746315 1.893527348826923 3.358274898457391e-05 29375283.39329398 520.986807588954 None 4718 38976 SKY_20210725 17949819.75767697 525.3766709368102 0.8563347057633736 2.506027040074908e-05 463558.1547083247 13.565831940802978 19640 4410 638153 MTL_20200718 22302222.54982165 2436.578981057164 0.34438158722139456 3.762243832277404e-05 6560608.688131092 716.7226846259612 38478 None 422557 GVT_20190207 13231397.618217519 3885.0347961755447 3.3445090172778498 0.000982022782714753 783549.5560802054 230.06770544845818 20592 5803 138721 ZRX_20210429 1353578989.6900454 24728.370006441502 1.7111928089218829 3.125144751528435e-05 243146862.50900728 4440.581664782571 210243 18979 55512 ICX_20190623 162783772.89770645 15172.466318673352 0.34431280904409123 3.2099233435122346e-05 28700757.18148643 2675.6840882307197 113667 25109 300375 QSP_20200331 5051496.835704905 785.8183117217945 0.0070560542751296985 1.1006067758344837e-06 75097.18146281847 11.713694869861323 55137 8305 386270 ANKR_20191019 9164607.667259054 1151.9045472950036 0.002294009886638245 2.882196731299504e-07 4306421.469383577 541.0593020958789 6 None 5007 MANA_20200701 49675372.54030757 5430.066753960386 0.037366843560835854 4.085504623899346e-06 12087940.283649899 1321.635204265194 49138 7016 70384 MANA_20191213 33871450.93208218 4699.568132236053 0.02551826726971703 3.545049959739314e-06 10219690.948395854 1419.7404001702307 45882 6409 74966 STORM_20190329 15913516.252350664 3952.587756677299 0.0035214984997296982 8.746473078158028e-07 2475694.5423331023 614.8971997551985 26965 2577 4061731 LOOM_20191015 14836899.61125001 1777.78745046605 0.02474420533495289 2.9646061340897533e-06 3658605.9213023884 438.33800316832054 21034 None 364132 ONE_20211230 2554504254.71091 55078.57291299951 0.22482675862947538 4.8275527834890985e-06 92286162.31431755 1981.5982869380841 301420 46574 8495 LTC_20190821 4727402063.171124 439731.5438490658 74.95721979691992 0.006972339890595891 2502518004.7405725 232778.1921295873 451938 207750 123278 STPT_20210131 20848255.58386486 609.4387320142066 0.022783030646576358 6.667670654076055e-07 3669979.2520967345 107.40543407007426 18995 None 1582459 LRC_20190224 45439856.55466833 11044.508899200217 0.05760843269595157 1.4000389792166541e-05 2010478.0096082406 488.59992341143106 28486 2471 544203 STORM_20190305 13186753.160819469 3551.605102095261 0.0029182102689714836 7.859653057782596e-07 4836390.889485322 1302.591346735702 26620 2561 3298265 APPC_20200325 2462647.590027908 364.38634101617123 0.022751231893888814 3.3705504153649634e-06 48018.02117484738 7.113775727430348 24807 3227 700856 SC_20210519 1299369622.2672393 30452.60773039676 0.027347813916488786 6.392232342444953e-07 117844912.5884856 2754.4873017675995 137458 45343 46989 HC_20200301 67270808.43594266 7844.3084408359155 1.50629235810313 0.00017611463986722258 43484065.17342854 5084.12622342792 12773 842 804824 SRM_20211011 993791586.2888358 18163.055579765103 7.463396507632074 0.00013641735467033678 115798781.94544736 2116.5917542892303 None None 19134 DGB_20210821 1008653303.2827718 20526.898122636052 0.06911215629653565 1.4057967155535487e-06 36389977.56088275 740.2013433738083 224385 41055 143665 NULS_20201115 23425594.82103439 1455.3834087167274 0.23847009697224428 1.482464228852533e-05 6831179.97269769 424.6645629349845 29597 5139 360585 CKB_20210131 129138465.7183435 3774.991268936543 0.005450616244761521 1.5954050722131089e-07 10127321.040553646 296.42848864214517 22124 583 367403 ARK_20200305 30758867.81224321 3513.629643517048 0.21557755351232996 2.4612605425111283e-05 292743.66761511855 33.4227022448269 62741 21976 80258 YFI_20210105 688541669.5310724 22007.773156081126 22981.248272046923 0.7345468272954914 714052749.2008162 22823.180674874868 62148 2513 18869 SUN_20210506 0.0 0.0 0.0004589633226366824 8e-09 36.309861825083296 0.0006329021956088 51 None None CELR_20210902 327517817.51302993 6734.1661129827 0.05809039411175113 1.1939761797407246e-06 117018178.97341408 2405.163890300237 60832 None 202750 BRD_20190511 24370509.61705649 3824.788422548037 0.40637952250666637 6.3778546992561e-05 283952.9225717746 44.56451128297656 167 None None EPS_20210823 239870354.66852993 4862.228652119306 0.7649337767009456 1.552183252253288e-05 34781155.55435059 705.769947541299 None None 31668 AST_20210304 37427499.33945796 736.1426200187246 0.21753079673579923 4.293230324181798e-06 1840575.8201838648 36.32596415654423 38210 3517 159367 AMB_20210110 2407997.2159823566 59.50716951217826 0.01731099526635804 4.2942111913853454e-07 503323.4941944074 12.485575487720189 None 5485 666960 MITH_20210110 6691417.049394857 165.35466281648485 0.010750302709982257 2.667748742160131e-07 4540538.136542746 112.67603554311455 None 2121 507648 BRD_20200903 8775425.622393189 769.0606051736504 0.12642578796645992 1.1076900643627882e-05 481170.73669897433 42.158174600025106 233 None None TNB_20200520 4213668.254596667 431.81986192573413 0.0012876192121319618 1.319310321908134e-07 159656.8282954749 16.358633014225912 14870 1435 6344512 WPR_20210624 7186830.203065236 213.1830002326209 0.011805596226052834 3.5019834399130995e-07 54239.404901120324 1.608944555763216 33734 None 6502768 EVX_20190530 14434453.738452364 1669.2531108505973 0.7485052527742342 8.655988957538246e-05 1702431.024967747 196.87536057326918 17282 2398 688933 ONG_20190704 0.0 0.0 0.3673011609344587 3.0607840732578384e-05 10081423.727292255 840.1024680062458 80827 16272 247326 THETA_20211216 4394715002.018296 90080.75306283048 4.4071428788681795 9.018215477403696e-05 203620131.52519327 4166.622848640344 229686 26747 31111 MFT_20200306 10540722.179339739 1163.9313562417879 0.001146714490642435 1.2658584808138197e-07 2008227.7949354642 221.68832838249824 18451 2502 867921 LSK_20200807 195643185.10230908 16628.805445037786 1.3853789558264196 0.00011772544552782358 8793578.954281086 747.2525808357537 175972 31122 181542 RIF_20210722 115236250.43860272 3580.8835359869827 0.15348040417950493 4.752250265280972e-06 1860567.4949529124 57.609193947143886 None 3361 493990 FIO_20200801 31262774.47821881 2758.0526513802197 0.3235332474307344 2.8565572992806304e-05 7541625.3513264 665.8692767080595 51716 124 572338 REQ_20190905 7773993.3417563 736.0395978158558 0.010653411778129972 1.0084723648187311e-06 98506.71268563271 9.324834105871483 41144 29424 564071 CND_20211125 30956746.54755273 541.1314768552583 0.016041914173752253 2.8048917048215307e-07 369049.3960959102 6.4527435975970615 37073 6348 173736 ALGO_20210221 1050829977.748621 18807.2783101094 1.3175739990633704 2.3503647420417185e-05 938827902.7969059 16747.355390645414 None 6267 202160 COS_20210114 21374806.609870505 574.8158822875175 0.007099033106628338 1.904914406379374e-07 1720479.1589966922 46.16636500523157 14154 None 444691 BRD_20210511 27687197.78334796 495.9700410879337 0.34278619303200386 6.1308398193229274e-06 1803483.4775697708 32.25587419369433 None None None ETC_20200913 608699542.9115033 58375.61963268567 5.240781541015743 0.0005019230353825442 512832803.5486754 49115.3075903642 235798 25784 179202 ZIL_20190401 177260203.64860007 43195.68493541227 0.02037462963439528 4.963848967327422e-06 28241938.398470636 6880.552887102035 58425 10075 183798 RLC_20190411 36513959.10552344 6876.106098807456 0.5213212561030144 9.82215222146743e-05 430576.2449460894 81.12436182676271 24726 3319 889327 NAS_20200422 11373012.73459441 1661.6253434860957 0.24941112549203695 3.643453803496897e-05 4830007.341191822 705.5783331022711 23467 4950 1034510 WBTC_20201231 3261341964.455779 112975.20415961515 28857.004988392862 1.000651786115172 322941999.1841671 11198.407056630536 None None 159499 QKC_20190228 47954919.71953321 12563.03605924188 0.03033286874314361 7.955844300955307e-06 4703905.462733508 1233.7619558776505 34730 8976 181289 NAV_20201015 8961462.934246778 784.199068803134 0.12832575171886326 1.1229520865038658e-05 172455.84334671847 15.091253822557139 48390 13740 1226716 ATM_20210428 17956648.436603952 325.9471095540285 9.60508809545656 0.0001743774561437713 4454971.3779982645 80.87865185287745 4937075 None 149248 RGT_20220115 348580086.9706734 8087.454375184272 30.992221837480017 0.0007185877350446777 8749988.39555777 202.87781804746922 46790 None 48282 KSM_20201030 269230974.3655373 19999.18781428653 29.956297696875193 0.002227788902874557 31845241.249256197 2368.265791131339 13995 None 183463 LINK_20201124 5973485093.242055 326262.06637256325 15.238156210316262 0.000830306119927601 1414490921.2642002 77073.65985082788 101192 24690 41366 ARPA_20210702 29615645.184719075 881.3998030724863 0.030200323756016598 8.979435210002758e-07 3170513.480404714 94.26859330957576 43106 None 560675 XEM_20210207 2498083417.3401556 63502.77095136934 0.27656820422993394 7.0331551231561656e-06 117693837.08788946 2992.9652093716913 226793 18214 60114 PSG_20210127 0.0 0.0 8.773222353175443 0.0002693507435937868 2291408.33872915 70.3495836612769 8594394 None 41999 ALGO_20210108 367099677.6325413 9378.523784048242 0.4633037519823682 1.1737100689651744e-05 335709549.47335356 8504.694312936037 35395 1760 343568 TRB_20210114 34755962.7541649 933.406898687526 21.343138317158765 0.0005710947712511883 35469865.68632888 949.094483174439 12226 None 425795 SPELL_20211230 1674052760.0979688 36094.75547279604 0.02124069736232146 4.5604657107933645e-07 101732849.53803892 2184.246421224 96475 None 7759 LTO_20200403 7677556.58366498 1132.0992596018161 0.03648637684365592 5.3521797674473776e-06 2531621.443713176 371.3630741670515 14517 421 900520 HOT_20190405 215239221.83944502 43897.020531152535 0.001211158079463811 2.4713618318367253e-07 8693192.271031767 1773.8414117632833 20129 5843 216677 AST_20190513 5413884.869103327 780.1976820252557 0.032535680708832004 4.6828883982038174e-06 872469.9778142567 125.57535136427751 31620 3593 464238 FUN_20200410 10964645.609197114 1503.7678119336838 0.0018231588242529038 2.500406902029487e-07 246218.1543713881 33.768071349870496 34641 16943 280907 FET_20190901 17201180.574239742 1791.9189855713998 0.05058613404063525 5.2697945289714235e-06 2059570.3124927355 214.5550865003379 16199 303 439975 FUN_20210408 415459818.14733595 7376.114978764063 0.0401870371085107 7.15160580308669e-07 35511995.25741922 631.9644582814037 3103 176 810976 ARK_20200626 44901793.04416149 4849.5299840315565 0.29827383037842775 3.22348396710024e-05 2867977.7395210746 309.9460737007117 62043 21904 104717 STRAX_20210210 107549642.00181457 2312.9957250205434 1.0824616393981237 2.3240464169552534e-05 18032053.495837245 387.1484013109928 147426 10393 249759 OG_20210523 9702896.109589133 258.1290041318338 7.55985426944224 0.00020119996251016437 7153870.629001678 190.39500644552749 664791 None 231105 DREP_20210508 0.0 0.0 1.5476785326345004 2.7005467101416987e-05 12257721.841402438 213.88518154531317 3873 None 195950 ETC_20190430 610264734.3693788 117253.41136569621 5.542435150454743 0.001064887974664964 551150157.6161325 105894.45959182116 227726 24439 713652 KEY_20200105 4542697.610405127 617.7835009768329 0.0016749372863385655 2.2776750469903226e-07 2561453.5376615454 348.32102994795315 23604 2789 310211 ARPA_20210819 62608592.68180314 1389.743805589101 0.06372186259025105 1.4148822010136312e-06 22730452.50470594 504.7076680212187 43896 None 746780 SNT_20200523 96297125.01623859 10520.816791549189 0.025234400309671563 2.756596154672128e-06 20870390.455683086 2279.873401809828 110348 5691 159898 KEY_20200217 6188101.410842603 620.7575293823094 0.002089669403383444 2.1005003642793023e-07 3732039.703550657 375.13832303427415 23531 2775 278947 NEBL_20190117 16140848.379153637 4484.113628443334 1.096457378310928 0.000304656776429715 121518.8334562801 33.76468325045218 39755 6182 488373 DCR_20210105 588906960.808109 18823.16114917013 47.24379411408715 0.00151004761208357 18067535.240318526 577.4904187414437 41384 10068 378546 JST_20210916 134484443.16702875 2790.5318573029604 0.09382996250381702 1.946756858092466e-06 111259080.22003321 2308.371139278654 52620 None 189686 GXS_20200301 28012287.295951974 3266.4543030131267 0.4316649525486021 5.046996172584566e-05 6230826.866712479 728.5038816023472 None None 822093 OST_20191020 7326990.420784529 922.026345824665 0.010864014137455707 1.3666850922804938e-06 117578.64953433238 14.791308760822204 17966 758 847910 BTG_20190922 179849988.47511548 18009.17264884317 10.268299508250344 0.001028231825324119 13805997.678681133 1382.484624855837 75084 None 262678 BAT_20191026 340046493.0960442 39342.43748923163 0.2514756482637026 2.9046240997134273e-05 62299686.528516605 7195.812880679636 106860 30950 23933 ONG_20190902 0.0 0.0 0.17783004505671696 1.827861638207417e-05 7040605.824272895 723.6827326801625 81433 16275 256067 SAND_20210111 26670965.161375478 693.824071822668 0.04272043533318367 1.1117766950874743e-06 6807798.981215688 177.1693615274731 None None 60991 DNT_20190512 9060485.24424103 1243.9383269514087 0.015582070400251414 2.1413766699972804e-06 871985.807709366 119.83324534122521 60907 6402 1175150 BTG_20200801 183255947.99957126 16169.204970462024 10.476822966919839 0.0009250106176301563 12168611.945580928 1074.3805910459873 76337 None 236149 TFUEL_20201030 0.0 0.0 0.009386891756333582 6.980782865734345e-07 1210327.5249756512 90.00885349056995 74752 4498 70726 SXP_20211028 389207187.14678574 6649.793834941901 2.025886115402267 3.459232952869835e-05 168371768.95002982 2874.974891514464 23841 None 178117 WNXM_20210115 62240239.53787564 1593.619771912176 33.4367064825515 0.0008523466230416116 23758170.00408074 605.6277098701102 18268 None 132342 CAKE_20210602 3109110206.9488516 84746.85580420661 17.758189723408634 0.0004841129691245878 322276434.96612734 8785.704187216657 823521 None 926 IOTX_20191216 15390875.651041428 2162.7824111560653 0.0035400658862961513 4.978855697612664e-07 1778551.7181089914 250.14089114794936 22163 1785 498444 POE_20190702 14137876.58719002 1334.1502701037382 0.005618683572150951 5.300183322040405e-07 2706214.975903065 255.28106890074307 None 10854 780853 EGLD_20210523 1620305192.7589087 43109.948565001156 91.25712362565315 0.0024299707273789236 89104938.85898907 2372.6629164911124 236041 8700 26800 OMG_20210930 1426382896.9542701 34338.96714520455 10.327991221520078 0.0002484686214572687 1535163475.8102992 36932.63717646669 2057 5438 313993 VIA_20200423 2855788.5946673877 401.59425591204155 0.12342739818008179 1.7362330974247118e-05 51506.6552008304 7.245357255837859 39163 2169 2765618 ENJ_20190430 125543940.76975314 24121.34698985445 0.14500791787265685 2.7860892149748914e-05 10672029.36123155 2050.455336606774 45569 12377 18567 NULS_20200208 28050002.402431544 2863.4666941003193 0.34527052417715887 3.521865419940939e-05 4853825.151615069 495.10507729126243 21641 5215 569469 ONE_20200425 13322519.022337 1776.7354565758308 0.0025507771142418106 3.403185152383635e-07 14470138.327740911 1930.5708693620068 71886 None 276485 NULS_20210301 54434098.40249336 1199.9037328405416 0.4861782126976434 1.0728262580805711e-05 43927850.794245265 969.3349179844938 40280 5176 573202 GXS_20210202 26696924.40150134 799.5547065214695 0.3826441265829739 1.1457020598140129e-05 14737990.398943624 441.28067790757996 None None 429351 BNT_20211230 757090424.9254748 16323.854546185885 3.2358007965468474 6.953335472495203e-05 29616444.172757454 636.42073410506 None 8677 38212 NANO_20190905 128513001.3040765 12170.153612975742 0.9650334941972221 9.135191901811446e-05 1761130.5824959169 166.71199426743675 None 47596 229089 ANT_20210506 326366216.22589296 5700.950416892203 9.297629168175812 0.0001623545381082909 69310626.49726072 1210.297221734306 83203 2964 103669 KEY_20200317 2067546.81494045 409.6386534523666 0.0007614979890994298 1.512181255466818e-07 804475.4842503732 159.75258834296986 23486 2757 250395 BAT_20210112 342533368.7246219 9661.429827530459 0.23038390928099772 6.481156741966149e-06 204464927.7382468 5752.004335033917 126350 49427 23893 MITH_20210304 13125729.76402282 258.16336299975336 0.021130037920125203 4.170430628765706e-07 8795339.954310473 173.59341840521324 25149 2218 364504 TOMO_20200323 15378517.483406633 2638.4267469573006 0.21769379502632585 3.733457459192979e-05 7772197.36335971 1332.9350162252556 22125 1509 236393 BCPT_20200719 2736543.951404949 298.52777419 0.02355867213425365 2.57e-06 39498.3719822177 4.30885134 10461 3173 2352744 ZIL_20191203 48863546.74882747 6686.040259233771 0.005263351633111215 7.204106771478035e-07 9695074.602512443 1326.9938522549176 66316 10553 235812 STORJ_20200530 19835085.914815545 2104.5772147078183 0.13699334360745263 1.4611373510762156e-05 5164906.735204201 550.8762649998874 81343 8111 107093 SKY_20210106 10467440.810397264 307.6793964962036 0.5501798731857732 1.6140550002180597e-05 493213.3993889067 14.469332526626438 17206 3817 758913 EPS_20210710 105563870.00289547 3103.7172444409257 0.45930556127386657 1.350461929847228e-05 11183830.342167988 328.8298331306861 18069 None 20273 SOL_20210428 11730117463.908833 212926.72247586973 43.21796539788754 0.0007842757076899234 889450121.2961354 16140.83673102556 183043 11165 23689 GAS_20210723 82250753.1033143 2543.121443317299 5.841156270624174 0.0001804238100502531 3687608.403701807 113.90422158627094 407052 112376 108336 TNT_20200309 16199058.667014802 2005.2071268470513 0.037415641787033105 4.6510417887176465e-06 667085.6414837836 82.9236930601003 17730 2563 1226899 FTT_20201231 521714396.8468224 18066.754688215293 5.755524585628614 0.00019957982330306314 11237735.415530058 389.68215932190367 35834 None 5136 TRB_20201231 28474303.810771745 986.0534134693783 17.582598444323562 0.0006096980107580487 22396374.08432876 776.6215426376187 11742 None 428609 RSR_20210127 345280085.5446246 10595.578226244392 0.03672521356265754 1.1271557533507835e-06 145928195.60181203 4478.7705582175095 55183 None 125159 1INCH_20211216 1036728775.2179188 21251.525497495688 2.54744143779645 5.2127594755937145e-05 97759298.09204194 2000.4216775930486 538751 None 4013 POWR_20210430 173535420.64764103 3237.946899807602 0.4038403871764374 7.53514023128524e-06 3705339.4021988586 69.13684932625794 90196 13506 239820 XRP_20190621 18349745154.63111 1918312.8445761877 0.4311924587376944 4.5115968524070335e-05 1872182942.7894351 195887.81066686512 928097 202219 41010 POWR_20190726 32951959.448528912 3326.524699424073 0.07841325026576927 7.929622709097775e-06 719912.5017331844 72.80191170444205 84474 13137 580575 TNT_20190930 18323188.879569575 2273.1648545561166 0.04251441099151839 5.280053947774997e-06 860415.4187236058 106.85882086580915 17597 2542 560905 TRX_20191102 1298717158.1833067 140596.0049792425 0.019635811827796664 2.1257258981425645e-06 869412652.1134677 94120.52870430207 480396 71542 68557 BCPT_20210202 3838932.4011443206 114.98924164690938 0.03272937367180397 9.799664233083412e-07 1582121.9811650864 47.3710995715 10447 3223 1647629 SKL_20210819 381195477.28814495 8461.523100706168 0.31321906292942553 6.9547257274430934e-06 48366311.98540976 1073.9270820890629 68368 2384 218531 CVC_20200305 22162043.928041425 2531.6021051821162 0.033016118347704376 3.7700577918467488e-06 17925219.59793077 2046.852180018362 86769 8084 106398 DUSK_20210511 87567706.47824337 1568.3605220280551 0.2448726679821676 4.3796253584482924e-06 12064353.531046366 215.7747906013898 26923 13596 280853 AMB_20210106 1960668.7913484701 57.70032898562212 0.01334816353785015 3.913667848856044e-07 246345.3282457427 7.222819739490034 20209 5487 666960 RVN_20210826 1301649170.4677505 26555.0784259559 0.13678378885992012 2.7912690308257974e-06 79813465.89996886 1628.708032335638 69013 50353 58921 WNXM_20210616 139332404.91792133 3450.0903153566983 65.12748369902265 0.0016135769921414387 11708675.956012847 290.09028228961824 29844 None 117784 XRP_20190821 11764716903.884872 1094325.6058957367 0.2742952345377511 2.5514281489486407e-05 1621294114.931639 150808.87021360322 937437 204726 32072 DASH_20210220 3267566386.4348197 58447.40399925833 327.3336861605654 0.005855062127281629 3490609546.5064707 62437.00731385317 359343 37938 54926 MTH_20190616 10784025.86065309 1222.9746894909458 0.031583008128235474 3.580544812650403e-06 6834114.32171784 774.7790357502515 19526 2007 1893104 VET_20210128 1709411606.3504171 56507.843569196186 0.026503694952259883 8.718056293556798e-07 321635247.51026267 10579.78594621371 157102 72987 117810 QLC_20190421 9298667.764281845 1749.8859464878522 0.0387111356561211 7.29012232449402e-06 2032716.0273645648 382.8032487107888 24956 5826 940522 RCN_20210420 67413342.39206491 1203.1616298759566 0.132716411229609 2.3715110433996395e-06 5964363.681397028 106.57728163560479 19591 1153 909754 GXS_20200417 26399526.505986437 3717.7132104091734 0.4057358926483062 5.723566225286749e-05 11410917.89506135 1609.695997990134 2 None 503557 DNT_20210131 95297785.70972888 2785.756412716243 0.1253578934793916 3.6687180058502675e-06 29730305.288124282 870.0856667466101 61637 6691 232543 DNT_20190816 4431693.721919051 430.642180602907 0.006609831893639471 6.41579759263876e-07 237839.14565207687 23.085728089064244 60388 6301 572325 MDA_20200306 11932247.051832454 1317.9443489710352 0.6082351581488346 6.714309791624646e-05 1335330.881443456 147.40721729441094 None 374 1557783 FTM_20191113 27764170.443149254 3154.6637245021516 0.01322177569480046 1.5023934739578597e-06 4172418.1988412477 474.1128587612681 19492 2201 560187 VIA_20210127 7397733.514894669 227.01356792801758 0.31923387120078955 9.796421122642699e-06 96280.04157522671 2.954573176801846 37743 2122 2961182 QKC_20201014 31734559.862585355 2777.7872266460818 0.00541655346110402 4.74220996873031e-07 1581532.9927732914 138.4637219601395 64912 9216 231448 WABI_20190401 17557443.26685262 4278.68925488933 0.33499781089564995 8.163648821067476e-05 7790378.318597896 1898.457563237682 None 8010 1213575 REQ_20200127 8901922.886732388 1037.3154065812269 0.011543987729189811 1.3439608529481499e-06 58552.34045628157 6.81671319025713 39983 28523 1277267 BLZ_20200425 3483692.3837931077 464.56918383583485 0.01571467488276117 2.0966139274557962e-06 200894.2993962475 26.80283169731348 36068 None 563523 DENT_20190321 38258155.6312751 9464.264319523625 0.000929578044782963 2.299580880543015e-07 1730008.43586919 427.96775855778355 43247 8844 257059 MLN_20211007 192762520.49341512 3474.4786750055396 132.57727120454757 0.002389660087508361 30872500.317082 556.4662867098557 29404 512 115672 AION_20210804 61581550.88415051 1602.7567191837134 0.12465788048574507 3.245194768764228e-06 6184581.970153735 161.0020399699603 73599 73388 420360 MDX_20211216 300159275.8717921 6152.554850133558 0.37619966889498424 7.698070541098899e-06 14204352.987974647 290.6597754678556 32413 None 32885 SNM_20190419 12089763.001975454 2292.953206118677 0.030259769214423353 5.738121136433125e-06 327654.50792865537 62.13270313036129 31627 10050 None SAND_20210110 28515637.798397247 704.6872317602945 0.045903731295318335 1.1391271922960041e-06 7229813.1756195435 179.41192472098874 None None 60991 POLY_20190522 42849452.18077198 5387.864715554868 0.09647658408936562 1.2147543357990597e-05 9066304.766417548 1141.5550341707603 34955 5084 319300 LIT_20210428 161712515.84215882 2935.3878204807365 8.97947717448133 0.00016304372909329315 77043013.08444242 1398.8988345077491 None None 89808 COTI_20200414 8837059.237801852 1289.614146165296 0.01767338595302262 2.581029674787733e-06 2155022.358307959 314.7204882759098 22870 934 253363 POWR_20211021 154702900.12378907 2333.9103150718706 0.3567503301506852 5.4035186727006944e-06 2850858.655367218 43.180529001894655 93506 14583 252530 MITH_20210527 33504083.4557571 855.1437817521329 0.05454398624638725 1.392282606280352e-06 17192374.70737268 438.85029153538807 31939 2714 239829 OAX_20190906 3790978.704033845 358.6923713534664 0.07260030482124795 6.868929905323077e-06 82842.1202812546 7.837938405648965 12297 None None LEND_20200530 67279961.05177504 7139.175632791765 0.05691197590510799 6.042764661043928e-06 3982565.0843252484 422.85833814650755 45028 5723 81711 QLC_20210203 6816871.048793938 191.39083141329144 0.02836058965985505 7.977473344666016e-07 1675090.0590397946 47.11815394593344 30097 5590 940522 HNT_20210527 1294727991.0392423 33046.07905659301 15.471373054401516 0.0003949202300985932 19742021.041135445 503.9322279129203 47456 32121 4657 BCD_20200106 59807374.85357758 8145.070034897806 0.3146878372254717 4.284461744027667e-05 1533015.3161312316 208.71939420609732 23787 None 4380689 QNT_20211216 2644098797.573437 54197.4646247944 198.24640353073994 0.004056661728016585 106828538.3519751 2186.0030511232535 68433 10865 73022 BAT_20190920 262581939.59359086 25637.708298638954 0.19599698542557595 1.9124208874787047e-05 31642872.64719671 3087.521497278648 105925 30327 27075 ADA_20191024 1131390410.0459204 151562.6734295978 0.03637923320687698 4.872768376597818e-06 66873058.62582914 8957.22357492443 154409 75479 134614 PNT_20210112 11186394.434465934 314.8406757860932 0.3896061704968777 1.0960395048890353e-05 2704263.6954602655 76.07630644251861 None 116 1089026 DCR_20211111 1370989162.307964 21125.20694236245 101.91661086231029 0.0015693850351248507 10293443.086626533 158.50581571914367 49731 12312 223861 AST_20210527 38278322.90630146 976.9994112045836 0.22126329129497183 5.647937620230988e-06 4529040.457176787 115.60768996939449 43442 3685 181542 ROSE_20210324 249149724.45263714 4570.342573937353 0.1663701289825721 3.0485986787294876e-06 36810300.08991845 674.5191153245831 14903 1133 263459 ZRX_20190622 199630740.5522424 19725.29644964527 0.3339799346457968 3.2996205304803195e-05 49105888.63467703 4851.51296524154 150698 15957 211751 DUSK_20201018 11524748.838403068 1014.5645442807174 0.03943424483259257 3.4694169170233498e-06 148769.74497899448 13.088732196153975 18366 13352 724869 LSK_20200310 154632964.30246082 19531.17309852396 1.1189131110653603 0.00014118459922706132 5731506.859141519 723.2022673365383 178449 31315 155203 AAVE_20210603 4940201738.13779 131273.48939428362 386.4085668106841 0.010262157501982847 415806987.8738171 11042.914589615664 225599 10519 14216 APPC_20201111 2953774.2984563666 193.06864672576924 0.026863789127073698 1.758717413249112e-06 164656.55030526774 10.7797280889 24311 3148 577884 FOR_20211111 49994852.63215076 770.7849529080963 0.09036124090466503 1.39144716480693e-06 39965794.05577341 615.4219471912166 37328 None 147888 WTC_20190522 64683593.880791135 8133.276749381228 2.2512742895768043 0.0002834620680395561 4680077.310154166 589.2771036667781 55778 20201 976085 AVA_20210819 156280893.5424938 3469.01909832795 2.9929434000920785 6.644411311333738e-05 16633097.998051716 369.25905273510114 None 10568 61556 OG_20211202 7967294.645693722 139.38727817524426 5.699901288337436 9.967617275240608e-05 12430295.337345187 217.37293379865582 None None 168708 FOR_20210617 19978281.1916037 522.322953661538 0.03542771260922798 9.256662290353833e-07 5194971.358236759 135.7358178939635 27535 None 199277 SUSHI_20210120 842236428.1148884 23258.884615319785 6.596993495311862 0.00018244264748874453 580143363.478661 16044.110280128203 24449 None None BAND_20201224 118637215.56796564 5075.743483987298 5.224111174128141 0.00022386259973557407 75906499.69136032 3252.7306160499916 41730 2886 377723 EGLD_20201031 110647600.73361121 8146.838098260941 7.619826975980225 0.0005626187100216776 5184952.535901754 382.8369484593716 102478 2776 46570 NAV_20190105 10667780.34620948 2799.8167462005536 0.16700732039986219 4.383301846176527e-05 111631.47493644751 29.298982164900533 48183 11506 707930 STORM_20190603 16686714.359087633 1907.9657748710572 0.003695850599573225 4.2262336869471683e-07 1097771.796165605 125.53105220409385 26954 2573 4240387 TNB_20190904 8580705.338610906 807.4320765490061 0.0029620094636752287 2.7911194111085455e-07 505222.75899723056 47.60744578517661 15579 1464 1259839 SKY_20211120 7030109.294702059 120.93722826212212 0.33476710927152664 5.758915631529625e-06 150985.6557799802 2.597368824853174 20669 4502 340307 THETA_20190316 96003818.8764865 24463.1570373498 0.12916450310872832 3.291263615311538e-05 11208585.309807621 2856.079504926485 None 3929 345140 WNXM_20211011 126203375.94367743 2306.5590041660766 56.88643827403173 0.0010393315929527079 99203784.3452647 1812.481679971303 None None 130804 ZIL_20210314 2107671852.995033 34350.65350276966 0.18013351807966904 2.9363680579287196e-06 548107666.05356 8934.738298919545 168810 23043 35245 ADA_20200223 1811388698.1183252 187654.3971486162 0.05839392327180828 6.049335007995743e-06 166718271.37555096 17271.226507768497 155844 76816 49262 XZC_20200224 61531256.04365675 6184.6316903417855 6.465928563534483 0.0006497974562039422 45627740.95802944 4585.387808654195 63702 4097 108999 MBL_20200806 7361414.566592391 628.3339990290557 0.0020867950046687127 1.7807162483768943e-07 3850936.18399148 328.6103627310909 None None 188797 VIB_20200323 1750011.792488477 299.95414222606513 0.009619428837856592 1.6497359671426863e-06 834171.9634022276 143.06083178149746 31437 1105 None ZEN_20190621 72177382.2744105 7545.791122411824 10.767705674890358 0.0011266325754558917 878404.7277280091 91.90810099876872 26029 1674 240249 NANO_20220115 418675189.98229855 9715.187379220411 3.1437550777936516 7.291284648763091e-05 13738574.476486513 318.6375996141439 147975 119912 56442 HC_20201130 42048895.76180381 2318.276558292669 0.9395386259468256 5.1735522798597184e-05 7937068.896669998 437.05324881549615 12725 842 1056664 EOS_20210203 2863816361.318128 80415.6022784866 2.9963063840106425 8.434351237114631e-05 2232119325.833732 62832.28743795363 None 75735 71191 UMA_20210114 497889558.3305195 13371.332908178529 8.956313726248968 0.00023965097647490378 20547056.436480157 549.7933959432346 17177 None 192669 ZIL_20190312 149532721.61034578 38673.9519554458 0.01732574245530948 4.4865691543728005e-06 11302906.978332996 2926.932218607082 56820 10010 179574 YFI_20211204 986818631.3580245 18380.58535590653 27675.58591164428 0.5149912796386258 146810157.43224484 2731.8645061880793 None 7653 25552 XMR_20190812 1583066609.504664 137174.64282851617 92.36171566594084 0.00799786322817933 100107884.92092925 8668.626019851581 320447 160142 104374 REQ_20190305 14728120.730369274 3966.3524755329104 0.020184986087746517 5.435912089764858e-06 210924.94236350746 56.803083204639 41682 30762 416149 SC_20190923 82950107.63082038 8251.648852970446 0.001965831581914746 1.9570482342547144e-07 7287806.0108828675 725.524404857575 108741 30564 208870 DGD_20190221 32478984.827949148 8179.950530905274 16.239500533724836 0.004089977310441292 420628.19540872803 105.93674182163821 16026 3295 571797 NAS_20190914 29635278.95707292 2861.9457683297314 0.6513248122433609 6.289990699625783e-05 9344933.655275764 902.4613322782817 24130 5093 765651 VIB_20201231 3409125.2070244798 118.06573820624001 0.018641204460860573 6.465062239105069e-07 1141476.3503842703 39.588191123569324 30378 1093 3141697 DNT_20190712 8247223.383200343 724.7593319651453 0.012510545661593783 1.099416651510371e-06 656058.3874850227 57.65388137931862 60663 6352 784792 VIA_20190901 5600349.411248676 583.5431415577978 0.24188205376969382 2.5203536989980096e-05 108680.34316267027 11.324234296406843 40742 2218 1917066 SRM_20211021 1011032444.3973747 15253.377913458962 7.600633486360108 0.00011468231769583704 166240639.09346607 2508.3253679695454 None None 19035 YFI_20201224 624712424.1649194 26719.92123498415 20298.669995517364 0.8706087425791122 599354344.1263163 25706.271987986038 59139 2387 13049 STEEM_20200425 58308872.945814066 7776.265271012533 0.16470884489736776 2.1975055848326972e-05 10891309.269417355 1453.092149398423 11220 3850 233642 VIA_20200626 4665484.219837973 504.20493015851787 0.2013685161906055 2.176215669325202e-05 427353.52844226547 46.18465004018636 38724 2157 2263015 AUTO_20210729 27939020.206213422 698.7019673824316 798.7261750798419 0.019955432904496764 3212235.6671532714 80.2547297550388 72331 None 11033 MBL_20210107 5444390.4439082295 148.53813710974484 0.0015460066556507357 4.18865566595223e-08 3618073.3231062554 98.0258608154616 None None 990117 TLM_20210821 341268274.7966977 6944.258557471243 0.27540587360452917 5.601976458326914e-06 100184757.55654398 2037.8383582365216 59091 None 12690 MDX_20211007 761298061.1454501 13715.697427257832 1.170342131259875 2.1097093533202266e-05 35891300.4690099 646.9921083741889 20467 None 37444 XRP_20200502 9616759488.62069 1085225.4117504763 0.21763942367204323 2.4626949832252897e-05 2290295884.770336 259158.0188166964 952012 212899 35731 SNM_20210318 19583507.50979009 332.57777052038927 0.044117306536008094 7.500021955537632e-07 3439340.191187703 58.469405709111115 29351 9487 None SC_20190411 139986676.60091057 26376.110360515362 0.003447040956067325 6.494529157935503e-07 4825178.216737625 909.1061295828041 110105 31033 238121 JST_20211207 466496279.53439003 9242.245341289608 0.0638844028740956 1.265845658342478e-06 434478287.38004214 8609.02550514585 55962 None 184899 OM_20210902 79258626.46849154 1629.6541073049723 0.22208745208653413 4.564512801676583e-06 17417131.338773333 357.97033203540303 49953 None 105493 EVX_20200412 3176142.065044808 461.4888094547807 0.14573581451720818 2.117697089990527e-05 385443.47119980154 56.009054467478606 16721 2861 864914 ALGO_20190826 157227063.07752255 15571.321275843922 0.5414311928369724 5.3603864238713534e-05 58452158.26173689 5786.998601806421 11661 575 206614 KMD_20211011 129025636.22062694 2357.6987059203834 1.0068993361220457 1.8396340546292752e-05 5879726.109896611 107.4242875689775 115791 9805 128638 C98_20210806 204494173.28787366 4991.207734825354 1.1048744074229426 2.6979514268384852e-05 34417518.83612636 840.428499640523 None None 61225 SC_20191203 62515018.754812784 8550.798439374712 0.0014984858819047538 2.051022436137922e-07 9960572.419679059 1363.3333324148637 107895 30378 221942 WTC_20190302 29576538.34102683 7740.472129360524 1.1107368036713634 0.0002906907891903988 3312145.942197778 866.8212979608069 54427 20384 860641 BQX_20210210 528069356.6629081 11350.670380565518 2.3668402845479672 5.079651309597319e-05 12538155.092412554 269.09063679077735 38146 816 65097 ZRX_20200411 109086812.46346812 15907.904882346083 0.1675771387126463 2.4433513668867042e-05 45314805.30693904 6607.105977431208 152392 15941 126435 CHR_20200605 7204731.061390319 737.087396958091 0.02164622111530506 2.214197325822601e-06 2811914.1477969447 287.6313954906668 14162 None 533180 ETC_20190601 963256448.521916 112287.80985358544 8.684221641998942 0.0010125991041138218 964183795.612514 112425.92461211792 227831 24573 668165 CVC_20200117 13338778.372508198 1532.3019892626214 0.01999020354432776 2.29415507822517e-06 4689933.02169761 538.2353228372448 86965 8107 125912 SNX_20210429 2559599585.5535884 46761.0136549159 16.863948651933786 0.00030798563636344614 175701402.409381 3208.8278580472283 117979 6166 27259 QKC_20210105 34771703.56759196 1111.4037076176207 0.00543324488929746 1.7366214176482672e-07 3807155.2248287355 121.68763673385595 63490 9211 114091 BCH_20200730 5312342954.738719 478968.190199095 287.5331642116835 0.025924387875191836 2570970686.6275053 231802.2739346026 3505 304157 166061 QLC_20200113 2780937.9138805536 340.9486681043604 0.011583895549671453 1.4207109586296618e-06 41413.00160422676 5.0791121999146 24565 5694 940522 AE_20200502 40244750.74291375 4541.72184888536 0.11347135679549383 1.2848426741439154e-05 8463272.97944273 958.3012483507174 25252 6335 567449 NANO_20210509 1300713241.9387214 22179.980333307838 9.780688189194528 0.0001665858739019292 88881845.55681443 1513.8464318345266 120837 89223 59676 DASH_20210114 1327705288.4705138 35656.88237290399 133.878359032718 0.0035909493271319287 1032035123.9159411 27681.739308567223 329367 35976 87017 JUV_20210718 17460201.092367027 552.4393541048481 7.8999564568637926 0.0002504239809084065 1700892.7718713742 53.91730212136632 2560924 None 42486 LRC_20210624 270328856.06155866 8018.20425941178 0.21752394084380228 6.448746914683859e-06 30319430.721470263 898.8543263863143 80961 10997 248927 DOGE_20200313 183588292.09236538 38134.71770365347 0.0014834682898671341 3.0956712939596763e-07 110773263.56278166 23115.938135775436 138930 150172 115347 AE_20190621 138219036.96573 14449.647760333766 0.5162968443655618 5.398658540282071e-05 36142501.667762235 3779.241097930651 959 6364 390677 HC_20191012 67949973.33607318 8195.16189584255 1.532769437792705 0.00018539314484501538 37592611.12957921 4546.941130483953 12824 847 404296 NULS_20200324 12605061.502526766 1956.510330370026 0.14861116901766244 2.2934351371059833e-05 6204598.593004008 957.5218685711651 22686 5183 563630 SYS_20211021 235990619.32877114 3559.403674044499 0.38821942326733394 5.8589969037705235e-06 21112964.535340335 318.6362825457952 77665 5923 292065 DYDX_20211230 627232279.9939499 13492.92700257986 8.732039211268624 0.00018764071651051066 249338031.2539492 5357.965728948426 104614 2571 12899 BAT_20210826 1280166224.6602523 26117.344858198736 0.8595968830062022 1.753894542148956e-05 181754368.14209434 3708.4591696204575 None 77955 26415 GXS_20200719 33335919.28200349 3635.1759692202213 0.5100798364841751 5.563712513933542e-05 27120952.80992069 2958.22680579608 None None 592521 POE_20200905 5542739.614177674 528.6068969762388 0.0022019690251370494 2.10000125323978e-07 472051.70654627995 45.01921525801056 None 10168 911005 NEBL_20200531 8644953.672902351 895.5592860541749 0.5281481262999621 5.468485265772262e-05 710448.5153235238 73.5603715070256 39160 5960 1274277 WAVES_20190922 102577949.0410005 10271.73296585691 1.0252871692632712 0.00010266869374874782 10840908.505385956 1085.5709001971002 142351 56904 28141 PIVX_20200113 15058255.036158472 1846.1728228192744 0.24240775810082663 2.973018505855401e-05 180937.14049669617 22.191099464295654 63614 8521 243133 WABI_20190522 17207048.00164495 2161.5077551223626 0.3271160734407786 4.118778377908491e-05 2055415.420094154 258.8011191518584 36353 8033 933235 POLY_20190801 26724579.516793616 2654.5475820449738 0.05458497716346294 5.414160768457095e-06 2297400.340238736 227.87395796304173 35269 5086 295167 OGN_20200903 54989136.301727384 4820.095597110182 0.4298366134924991 3.7668959203760236e-05 42741271.53282358 3745.653960478325 70577 2396 133584 WAN_20190123 35249545.598199144 9867.40017739464 0.3320651696630351 9.295495469328864e-05 3785112.7555226013 1059.566063660422 109135 17313 539346 AMB_20210217 6188136.78139939 125.82725697044651 0.04327889595959825 8.79875695949203e-07 2866073.198881287 58.26831056090646 20755 5468 361087 QSP_20210523 28505595.150510855 758.3470424655549 0.03987514983830196 1.0617850202511101e-06 780343.5057519876 20.77878198370626 65146 8455 228861 NULS_20200317 9653305.20547434 1912.588830956714 0.11445941607412363 2.2729329029963782e-05 3084372.717693076 612.4941464500329 22728 5186 563630 ARDR_20190708 110111864.37542272 9633.177063486422 0.11026484055653912 9.640789490710187e-06 1005597.5705720775 87.92244600656655 67904 6572 885731 ZIL_20200425 48307817.05842433 6442.1081632033765 0.004603874063547258 6.142377461766284e-07 14155096.106510157 1888.5386979237294 69904 10556 194676 NCASH_20190421 5761328.5804856755 1084.9648181169127 0.001985551243319103 3.739296038763998e-07 379875.9787247071 71.54027110841011 60756 59425 878316 ALICE_20210729 238592612.52057981 5963.513808176125 13.715085732825491 0.0003426587003906081 605476181.4988855 15127.260996503746 87029 None 50440 MDT_20210318 59924118.35493122 1018.7118868879994 0.10038058920859742 1.7030320601084453e-06 94936999.14628033 1610.6774677385122 None 122 547860 RLC_20190909 13211042.997321986 1270.317048994966 0.18909878961601406 1.820382246106531e-05 214091.12896604338 20.60974007343326 24804 3305 984845 INJ_20210602 270286475.9707394 7366.3501164724075 9.351837042346775 0.0002549960086593798 18598607.041603927 507.1271602315179 71684 3585 114245 UMA_20210212 1613964098.7434578 33853.07566664298 28.990005491043423 0.0006071691958327034 101431831.70576283 2124.397103258689 23743 None 180078 RVN_20210210 345048006.9651476 7408.1784542560445 0.04216179487232169 9.052543311810046e-07 129086055.79646474 2771.601907810044 37255 14375 133359 EVX_20200306 5808344.422492445 641.5451067387803 0.266586720248438 2.9428674621044974e-05 1396529.2278288105 154.16373406092066 17843 2876 590577 QKC_20200730 39865509.56415574 3590.2316227999363 0.007506378047629433 6.763018015676833e-07 5244068.395639477 472.4745917420402 50541 9214 404576 MTL_20200905 19555203.890530214 1863.9486400571702 0.3026451106759131 2.8859011958569686e-05 3000955.4047670076 286.15895270829526 40591 None 386727 REP_20190623 204455207.91455165 19056.5048379254 18.588215370061736 0.0017329226465970197 12688305.523524517 1182.8920394408287 125707 9995 269417 WPR_20210711 6982830.994608886 207.07347144301832 0.011462215189542718 3.4012842718476396e-07 1028902.7763670101 30.531540131180318 33803 None 6439074 ALPHA_20210429 357091016.29717976 6523.545132553645 1.4310805283966153 2.6137934527119905e-05 82477742.1334564 1506.4126588629647 57311 None 28389 CHZ_20200607 58304675.079078615 6023.848785896387 0.012181815441451672 1.2598162904647899e-06 4951461.453031953 512.0691435622963 None None 340266 UTK_20210826 203222380.150849 4146.062456363537 0.4519288658985962 9.222255488264246e-06 15326106.954441959 312.751153200383 None 4053 188834 KAVA_20201106 38358258.88164435 2468.1182039854216 1.30454640886701 8.372874908818317e-05 16131770.440449392 1035.373636672401 46114 None 85552 OMG_20211028 1788143075.04287 30555.550260142725 12.738509955670848 0.00021768526482255181 801461124.9120034 13695.97212143183 None 5829 181701 AION_20210408 186361046.59870386 3308.5645209999943 0.375214864370161 6.6772496668229075e-06 32660703.25243496 581.2234285456691 71835 73030 252170 IDEX_20210722 19731865.920961324 613.1699349471729 0.033947137979706436 1.0548815216453038e-06 572963.0014707631 17.804389966519523 53036 1975 9034089 THETA_20200109 97268042.98366944 12087.37274037205 0.0972283519892784 1.2098204119017348e-05 2902375.160645819 361.14493771663365 None 4015 523233 POWR_20200502 37977226.22454272 4285.82597531526 0.08978365847642465 1.016625508930678e-05 66232335.54978358 7499.525300993004 82077 12772 203991 ZIL_20190805 93901432.49021034 8578.655783650323 0.010214321427697848 9.328195092669023e-07 11585385.687997093 1058.0314971134594 65839 10619 160236 SCRT_20210203 80951595.86102587 2273.080285117922 1.156291991624159 3.254802702187903e-05 769765.6003920446 21.667841465269674 65440 None 226191 ENG_20190615 44728044.86326839 5151.490385329824 0.5735193048343827 6.609630780337004e-05 6212659.753288437 715.989623835839 61832 3459 351204 YFII_20210813 160916124.1168886 3619.76002437191 4053.721745712446 0.09118164161548359 80794197.4452592 1817.32936254348 17955 None 584326 FIS_20210702 19172891.47800406 570.2526674739287 0.7166866424515059 2.1306052897777005e-05 8339453.630050344 247.91984342366717 23424 None 421397 POLY_20190622 44786453.584454134 4425.3007900376315 0.0953637015524211 9.421644681698747e-06 7016926.813588628 693.2511020325237 35115 5109 316227 POE_20191022 6202073.831863941 755.8048990314846 0.002463903307751464 3.0025927475596825e-07 147874.0614402495 18.020414317227548 None 10678 871423 SNT_20200318 34004998.70854385 6262.710672530532 0.009096012733552915 1.691134903826792e-06 19168319.558081087 3563.7828576032407 110430 5605 189796 MTL_20220105 146949716.28891718 3176.4284572650668 2.2528389447805908 4.8963153540558785e-05 11076035.219467187 240.72631304952262 65613 4507 188611 RLC_20210131 87859318.36849432 2568.3142345764304 1.2578090107902562 3.6816293526786835e-05 7250535.633484724 212.22446795884315 34277 3933 456276 ZEC_20190405 419229228.1039986 85499.81679021248 66.9368503596632 0.013658429888481032 312643696.4444185 63794.785458488106 74617 15088 156086 XTZ_20190929 722950424.7185711 88260.73435326958 0.8948455384155288 0.00010901453444328235 11157139.98616975 1359.2182886271828 44734 16668 185343 XRP_20210105 10578255930.15237 338111.500290626 0.23461847392850627 7.4990815820355875e-06 5235562377.385517 167343.63981846633 1043074 228644 14934 FIS_20220115 28235528.359573077 654.986088841929 1.0399479071651945 2.4111273134081118e-05 5700900.551465172 132.17582280760888 31104 None 314558 ATOM_20191012 689887939.1243347 83454.94738906823 2.8146990125689957 0.0003404205832268609 155123347.6631129 18761.217539697973 28823 7054 107820 GO_20190324 18195695.868824556 4547.451531781506 0.026066307947278943 6.5096899243848655e-06 949400.8669548525 237.0993725048591 8430 636 816048 TOMO_20200207 36013118.818278596 3697.7152968136475 0.5177273194495067 5.3168183602206765e-05 7648517.963404225 785.4671601943795 20791 1459 248712 NKN_20200903 16943733.506268732 1485.1987827151793 0.026078897105743723 2.285437955537178e-06 1833488.5766724134 160.67874217150373 13680 1021 204746 ZRX_20190801 134630899.1859751 13393.385349791932 0.22451555809396723 2.2309643535584938e-05 38730964.5446354 3848.6153036153996 151326 15937 188207 XEM_20200530 370536375.67769295 39392.92041772 0.04109810349291011 4.383422762784515e-06 9741688.983361831 1039.0246169145482 208865 17887 220843 SNGLS_20210813 12531866.580991704 281.8757179058628 0.014077986532649675 3.1664216914785155e-07 1610306.3981480317 36.21902249442542 9469 2133 None PIVX_20210210 35007097.06781399 752.4655895738114 0.5388816884251578 1.157030871001304e-05 2432254.623060175 52.222848641239544 65290 8882 328598 VIA_20210218 16871319.377635077 323.2665672944421 0.7272646088347716 1.3949905714220689e-05 442712.4950138222 8.491816443323321 37791 2139 1515639 LEND_20191102 13988183.951870007 1514.3272483584833 0.012396939158390841 1.3420629031178748e-06 4471129.394305462 484.0337456262987 41554 5794 541859 ATA_20210708 81595880.02635472 2395.9221922890342 0.47264967794771356 1.390940129745393e-05 14427918.529824339 424.59292385363415 None None 98513 RVN_20201014 96103660.3932674 8412.16648791347 0.013267679957172833 1.1611431961575716e-06 8976705.135131817 785.6113597265349 33691 9427 217499 STORJ_20191108 19769270.99734828 2144.2849453490285 0.1374769374605635 1.4912069281174763e-05 5679191.534679888 616.019669848271 83083 7832 141245 MTL_20190819 15611865.042654322 1512.7798228577717 0.31492665714448104 3.052313099233471e-05 18347175.514525767 1778.233848626872 None None 511455 BAT_20210823 1279977588.098901 25945.114730510442 0.8615012064729739 1.748248591615638e-05 327627741.86997133 6648.565712906608 None 77798 26415 FIO_20210616 54408181.03765723 1347.2324588438287 0.2238653147320502 5.546591886593985e-06 12569367.406749249 311.42453381552383 77001 471 103132 FET_20210813 348771688.7908401 7845.0013940940025 0.5089587370109525 1.1446958053227512e-05 45555943.10342874 1024.59577144256 70890 3417 157156 IRIS_20210902 130120056.31362636 2674.9353146997473 0.12022596618999574 2.4709768904654183e-06 5985299.932375274 123.01450580177746 27591 None 767098 UTK_20211028 162031339.20387968 2768.38413083821 0.36076980163476163 6.160202080102989e-06 7874733.512493788 134.46233455269007 80082 4198 180131 NEO_20190615 949045814.2317686 109319.5953880426 13.464268045676324 0.001551696318752184 595519618.8830943 68630.95693214003 322042 97680 216321 QKC_20210804 115777804.58657973 3013.2994633826097 0.017645728933435384 4.5941561408302404e-07 10354460.246039392 269.5836896496134 75184 9538 280880 DLT_20190228 7580719.715790877 1985.9084591226288 0.09366604012655169 2.4567159731712463e-05 1263033.2913313827 331.27417976339444 14521 2694 922398 MFT_20190207 18723440.910525903 5497.621758519058 0.0033004654127314604 9.6909059360299e-07 6970870.0215878915 2046.8036238438067 15754 1826 640099 ICX_20191203 66080742.1462365 9038.366350735092 0.13012443008307314 1.781051985960634e-05 34615551.50769114 4737.934046553473 112160 26811 102055 LSK_20190410 263719792.26891497 50978.14410368813 2.009905396081593 0.0003888137938164502 6423560.957081376 1242.6301807056034 183790 30416 170136 VET_20220115 5273912679.515158 122360.77093489596 0.07919528732347764 1.8362272457397183e-06 245806973.97774822 5699.296991842204 546917 220900 34698 REN_20210602 538588654.3443124 14678.62046153374 0.616591803826868 1.6809150793959094e-05 245096064.31500608 6681.659857472971 81492 1168 81558 DUSK_20190805 6380894.040351567 582.6811466962051 0.11157449007700457 1.0188596050802219e-05 945305.6135601805 86.3220350321407 20196 13235 227094 VIA_20200907 4538513.316082089 442.59485621465666 0.1966977475236707 1.91015295004163e-05 77473.23203883704 7.523508763639281 38420 2156 1668792 DASH_20200312 677047936.1155809 85334.7596803979 72.17341541478721 0.009096698669624165 556250949.9270205 70109.57216168518 316823 34158 59708 SC_20200718 147853595.72305906 16153.410845387247 0.0033226235531646988 3.6294489736840737e-07 3033091.377582721 331.318014554264 106763 30118 172459 QTUM_20210127 354021638.0371916 10863.10989590805 3.4277305842533736 0.00010523633672337503 404471248.3404704 12417.85824149102 190660 15054 257313 WAN_20200403 14021362.140303189 2067.529366233433 0.1328956404855216 1.949443654645155e-05 740253.3373254545 108.58762304066882 105436 16326 867725 ENJ_20201231 120074185.2324632 4158.119580547373 0.13012031146254743 4.512080242812202e-06 10520609.742261736 364.8149533830466 69883 16047 75641 POLY_20210318 447449877.26173085 7606.728893856114 0.5518826923960829 9.36310422143844e-06 11673776.667429533 198.05438565283558 None 5333 242292 ONE_20200914 52658329.18430029 5101.4166986068985 0.007459422650490408 7.223074788549588e-07 6622869.255663812 641.3027145646514 78722 1470 127975 AERGO_20201231 10208468.516492035 353.38891592928405 0.038614657945955005 1.339212557669073e-06 1339028.825056238 46.43946918048579 11395 None 648033 ADX_20200626 9323105.931703096 1006.9237483596564 0.10128236369810083 1.0938191023134914e-05 454199.8891710184 49.052223595888144 51401 3744 23124 SC_20191022 83765808.84982339 10200.483931922894 0.0019963182627832474 2.429129589646805e-07 6198542.88882109 754.2416569859801 108411 30495 207365 ATOM_20210115 1513207547.0284393 38792.18209348491 6.4334237681591855 0.00016401254625501773 477601738.4930936 12175.892658239885 None 10239 104708 SYS_20190803 17796629.482488226 1691.1973672997551 0.03175847025259737 3.0179782825456027e-06 309035.2113493352 29.367332525026335 61019 4589 678710 TCT_20210902 18650943.15329552 383.7619007119167 0.03231891764015724 6.64243350620949e-07 2748038.9094959386 56.4798175856065 None None 1854272 WPR_20190227 6140510.067732233 1615.6016204026607 0.010484692812752569 2.7585797451453414e-06 648199.2103627046 170.54474026657962 35032 None 831971 ZEN_20190821 37697936.00238147 3507.251139797137 5.272623264726381 0.0004905647556859005 2658388.6286833007 247.33642110799957 26718 1780 227019 STEEM_20200518 61877332.894560605 6377.857993614531 0.17578368735633482 1.804386974450961e-05 1825676.0917943579 187.4022674767586 11289 3851 233100 WAN_20211007 184274658.86581403 3319.713232880319 0.9506873482420979 1.7137283745605515e-05 7747468.019790097 139.65743628612654 126911 17064 268022 GRT_20211216 3361965563.2866893 68915.70736509316 0.6414227170497471 1.3125155894804436e-05 153107969.04856667 3132.9822113916075 183893 20201 26230 WING_20211216 31087719.459132787 637.2211434064495 14.32651048142378 0.0002935705777524961 4938687.464430351 101.2007309213053 None None 238138 WAN_20201226 43391709.50957352 1758.0043357265808 0.3465540958333578 1.4035162854089616e-05 1795274.131202901 72.70716203360946 104092 15904 718858 FUEL_20200113 2660142.96841446 326.6791128819196 0.0026907287965074723 3.300053830342927e-07 58997.56737211673 7.235777475603646 1 1484 None YFII_20210218 131791224.24570009 2528.016418364536 3332.643445631958 0.0639014604342008 193359709.90932247 3707.5576952385595 14314 None 229687 NMR_20210511 341079863.3032152 6104.293664603597 59.901412263459974 0.0010720533538374972 17768548.033238765 318.0030452049312 None 3222 699246 SUSHI_20210111 565151264.267672 14704.726687577606 4.421076280409998 0.00011500157081572461 401350907.68797165 10439.988343325587 None None None BCPT_20200414 1728551.4924710416 252.29710565390238 0.014917743196092091 2.1790941444605347e-06 90121.6360193476 13.1644261975504 10627 3168 1858149 SC_20200414 56288890.89593393 8220.456348855283 0.0012793864051819862 1.8684219798470227e-07 2475622.8571451106 361.54113732697164 107119 30101 166038 BCD_20190329 159257558.12902004 39556.64901389982 0.8464172680349916 0.00021023251414854145 2877595.562112532 714.7351224651447 20926 None 3287367 EGLD_20201030 106694348.6940213 7925.955729469111 7.377807771402257 0.0005486680299955118 5183904.972921445 385.5132875922244 None 2775 44491 SKY_20190701 28448416.956361275 2622.0319994261654 1.8939441392357192 0.00017559139101384224 1698411.2271665582 157.46313933633166 16273 3777 456375 ZIL_20200320 41836906.02198828 6765.1175752569725 0.004007986637087279 6.492746104568898e-07 11620849.396198634 1882.5218614946066 68694 10572 233633 NAV_20190224 10625615.974204373 2582.3088471418696 0.16502623605356692 4.0105788728503106e-05 121370.91182254885 29.496377447285983 47937 11437 768828 NEO_20211111 3372052162.8836355 52020.85618365691 48.28773364967548 0.0007433879933967303 438603136.24699694 6752.280148777681 424975 114868 82188 FOR_20201229 8956677.322712226 330.3033426083009 0.016069681937448104 5.920321606891907e-07 1861446.8254650594 68.57860599717131 17162 None 157900 QKC_20210111 39952367.33934477 1036.3768815562773 0.006224616590568833 1.619154794530374e-07 4866440.015723028 126.58642615339532 None 9206 114091 MTL_20210527 169452805.48108682 4325.040352139687 2.63623793675483 6.72922622263103e-05 22394348.983733874 571.635201508396 56528 4135 199516 DOCK_20210124 13170863.955484472 411.4747039961229 0.023295388077046886 7.269061503897897e-07 5644556.91216601 176.1319932558432 None 14860 234839 STORM_20190509 11845789.98248434 1988.6149689447047 0.00262064383423063 4.399904219133929e-07 998672.0328069095 167.6710598091705 27043 2570 6189578 COTI_20200701 12699582.076088544 1388.2027980301016 0.024598672707601365 2.6911169358123246e-06 1269016.437016821 138.83154046863967 24796 1010 317411 ICX_20200621 176249742.93518245 18839.56442955705 0.31915488280193016 3.4111098487546304e-05 26237091.69437873 2804.20594213238 112680 27765 138952 BAL_20210729 213986570.8345842 5348.9547962449315 19.81323429250348 0.0004952227776028968 20914734.960185464 522.7542856912712 92398 None 131138 RCN_20190830 7293316.145650937 768.5537836038436 0.014372802462795901 1.5154259780464434e-06 1287663.007755585 135.76739664886762 None 1111 1641051 COTI_20211111 447453161.0188893 6890.204539582514 0.5176621198063001 7.969390472789137e-06 101557390.62107623 1563.4725244330689 189780 9184 61320 FOR_20210117 10206156.631995775 281.272321440448 0.01871848256931736 5.172354952336564e-07 4250652.281169879 117.45547373165908 16888 None 247763 BQX_20191203 3756066.411013721 513.7544136625777 0.026592747961164353 3.6392132562932903e-06 400800.5603947168 54.8494918482418 None 5714 297445 GXS_20191017 33382214.322582126 4168.423014469035 0.5136592669865487 6.414108010045422e-05 15416991.710758395 1925.1331841613369 None None 581889 LOOM_20190329 50316045.37738359 12497.50270903679 0.07270104247871029 1.8057473329813373e-05 4075486.736557656 1012.2687452927366 18490 None 438947 BAT_20210930 883568281.1980748 21271.1623529641 0.5939446441178268 1.4288994227491615e-05 83176299.978257 2001.0377768768117 213643 79727 24734 ZEN_20210218 799342774.616684 15315.980277422235 74.00082426701276 0.001419257851059247 192321175.48859903 3688.5175393757263 86931 6683 515975 MFT_20190819 9679596.228358854 937.9467365150787 0.0010785065435497333 1.0450660016881103e-07 321544.7109088417 31.15747858955543 18798 2192 880747 SKY_20210814 32876360.96964257 689.2213135343306 1.5730902150002435 3.29715214771751e-05 1155478.5041600552 24.21849932892852 19656 4412 730332 STPT_20201031 13423891.033768965 988.3985414041938 0.014703671114408318 1.082926099424912e-06 1919493.1783252393 141.37076681751697 16140 None 1334404 ONE_20210125 65530071.31189531 2037.3263610127985 0.007510620242776484 2.3270819932993956e-07 5537525.890270934 171.5740693862451 80434 1648 164688 BEAM_20211104 73053007.56352636 1160.5186443217733 0.730417206128692 1.158949376033299e-05 3488290.294355323 55.34852993802317 27614 2831 249618 SUSD_20210707 234181030.70783314 6856.167338355798 1.0068989977764746 2.9481660641513765e-05 78462739.56852429 2297.362363127733 140086 7112 47664 XMR_20220105 4062463279.5903287 87714.9598848008 223.70296284274627 0.004861955419637892 145903589.78425828 3171.065506158988 463383 248130 29806 DASH_20190906 722774925.4376107 68386.30068880224 80.04639504679763 0.0075736525460463385 249423120.68906984 23599.36449286945 319275 30397 81581 VIB_20191020 4185821.7946715956 526.8897997423222 0.02292858135381427 2.8860582100604794e-06 425184.87501786015 53.51871886023595 32097 1123 None CDT_20200113 4158093.5700107915 509.790764285785 0.006172296708908156 7.558673128997375e-07 109751.73612151369 13.440337329947376 19337 295 203287 VIA_20210202 9351274.382148452 280.2941282656267 0.40269549035836005 1.2057392776453404e-05 673163.9809414289 20.15568268209016 37720 2126 2708625 NEO_20191026 549316961.7362138 63554.45113435593 7.792083603201096 0.0009000105567719315 310373641.7084819 35849.14745609586 323230 98486 172955 DOT_20210110 9332171957.95746 230653.72109629502 9.778410809521537 0.00024265682410229696 753225124.2942744 18691.70973235576 None 7606 41009 KNC_20190923 34444039.33586114 3428.9218048322455 0.20670112713109126 2.0580064434839174e-05 4250707.586838325 423.2189598816853 97884 6714 182135 AXS_20210724 2364048111.987103 70712.87742690998 42.75813622479206 0.0012787531390056016 6275444518.839905 187677.5997656584 270737 None 3082 TNB_20200323 3142121.312772901 539.0803712223737 0.0010132257558160217 1.7363802031262615e-07 351055.7320560656 60.1609483214551 15118 1446 1775001 REQ_20210902 179715478.61146834 3694.4902573458344 0.2331457003264145 4.7917904582070575e-06 9012255.052842053 185.2268247223782 45785 28338 243796 ZEC_20210806 1353027083.5958147 33019.69244281389 119.39836715357872 0.0029152062243053573 606598391.5995859 14810.582832930546 77204 20174 132489 TROY_20210825 18526174.48067063 385.5220529065988 0.009731425234703783 2.0264024142354646e-07 9412033.204831498 195.9894501487732 122502 None 544029 THETA_20201229 1573415803.016565 58024.25166431256 1.5661681342418585 5.768602448086325e-05 199325248.48954266 7341.664609711862 77101 4720 78073 ORN_20210710 154297069.39868447 4539.938810572194 5.321035693228144 0.00015658104107089366 2975676.2531856215 87.56462321925706 None None 65422 NEBL_20190528 20662583.614273958 2342.927864645768 1.3581560489360234 0.00015432791198649877 707435.1632446232 80.38619103813558 40320 6162 675996 ARK_20190318 89061737.31416091 22364.740414509615 0.6348842376553766 0.0001594368573787879 658970.507203649 165.4855807443843 63124 21754 175186 VIA_20210813 12750426.646675173 287.0656609246333 0.5506637663618728 1.2386999275596983e-05 266151.61820687697 5.986992613857619 38180 2294 1212735 SNX_20210702 1087712604.0779421 32371.730180250448 6.894710790466355 0.0002049839952205751 39668251.65349056 1179.3615358879583 138891 6995 47664 AE_20200621 51604126.874043755 5515.400125747756 0.14435395356873942 1.5422209899330453e-05 7702263.280731651 822.8795822955058 25423 6345 480616 ALPHA_20211216 304325882.81767446 6237.925482798507 0.6850146011647061 1.4017265716734773e-05 17953137.38252976 367.37012132600626 None None 53774 EOS_20190616 7181886898.991887 814418.3381757672 6.887993972777495 0.0007811802318444866 3226167229.2785273 365885.6372547956 1117 66232 103805 AION_20220115 60571227.36907704 1405.5306781011489 0.12109677314960741 2.8086825568652604e-06 2001777.4354168347 46.428630750017355 1099 74051 270136 THETA_20210112 1810271724.290837 51026.05019308401 1.8121225929695999 5.0975849143545984e-05 166063676.88973153 4671.448264149273 79217 4887 64313 XZC_20200626 47723542.208422296 5153.222127929784 4.60002659146229 0.000497130768486733 15909399.72575073 1719.3492156120105 63621 4120 444213 ADA_20200526 1662876283.1969876 187108.9425270211 0.0534591223816944 6.016118416104906e-06 181811841.10831824 20460.522298664488 155646 79228 54750 GO_20210207 15981157.712991731 407.5451528257716 0.015307265395661847 3.892651808575397e-07 1337484.3193973785 34.01235047717241 None 694 754202 BTS_20200625 70848477.04897429 7622.282590343146 0.02614145887248481 2.8124470016790164e-06 16122748.47152262 1734.5770876347667 13109 6984 148844 LRC_20201208 228965492.4130692 11920.945139768848 0.18388133511076812 9.577213046381668e-06 23259043.755647134 1211.416140571089 None 7251 209194 BAT_20210202 464898903.2197361 13925.930145759325 0.31505336890729957 9.43316930459038e-06 235115959.13473147 7039.723639272241 131590 51310 21155 ZRX_20200701 234096971.6293832 25611.06538032164 0.33546946492873597 3.670158712259465e-05 29478334.11689496 3225.0376291326656 154244 16096 78133 REQ_20190324 17972340.956586666 4491.4338343360405 0.024752167470169575 6.179971797233767e-06 166771.94373928139 41.638612461745545 41882 30599 402457 MTL_20210723 97959197.45930263 3028.812822126824 1.5066972698066194 4.653942634234227e-05 47486749.97645532 1466.7884166605775 57249 4218 206234 BZRX_20210724 25927234.257148106 775.6610226813593 0.18460340820378443 5.518962289408577e-06 6557429.360835655 196.04299676830482 28301 None 119612 ONE_20210508 1240226635.4809396 21643.612647767528 0.13041212517829107 2.2752653403664384e-06 126116175.90817711 2200.3150666484094 146907 18784 26398 GXS_20200718 32145288.472677443 3511.9609293456433 0.4916511360518363 5.371181490587105e-05 14904543.256260695 1628.2888616216246 None None 592521 FLM_20210703 0.0 0.0 0.3646112588454248 1.0764848064755158e-05 8391111.431344396 247.74067575117633 23564 None 83883 QTUM_20210201 340036701.8576051 10289.093835289972 3.2925998005501906 9.953312648632215e-05 343934283.15076655 10396.907180188586 192223 15089 197984 SNX_20210418 3099599977.387879 51438.23426679287 20.334791165606823 0.00033829195510848796 169539054.7811102 2820.471468925227 None 5999 27259 XTZ_20201208 1710587750.8949633 89060.37130612847 2.276358142033252 0.00011856106484644137 86996134.56845589 4531.0771453333855 None 30752 154710 AE_20181229 93383136.24795404 24280.332037099233 0.4108180498058815 0.00010678225692933704 12057473.802429527 3134.049894103137 953 5114 424622 ANKR_20201201 56180439.40001385 2857.5351126357896 0.009578471668686313 4.879183703823693e-07 12827831.952372957 653.4377381103756 29285 None 5227 SCRT_20201014 30330280.14126851 2652.4888460681123 0.5373288741824307 4.7033432625981204e-05 365584.16166497616 32.0002867200426 61769 None 539408 XRP_20210318 21705878435.49229 368256.5240939416 0.47353270436981887 8.033837850620883e-06 4079649095.787073 69214.30984709493 1274816 275779 10645 REN_20210729 319805305.7866006 7997.724855173869 0.3624222839447936 9.058580112194718e-06 24752909.032993875 618.6877005592703 88121 1183 100399 DGB_20210527 1125409253.3066912 28706.874100930014 0.0784556830347535 2.001243022272695e-06 68461303.92206903 1746.3069782853163 218381 38399 110176 FOR_20211221 33296125.72381978 705.9381086592442 0.059008218038916954 1.251473304636594e-06 6931280.384394011 147.00176782663584 38085 None 166431 QLC_20210422 19728321.770862393 364.0098942839196 0.08206460125455392 1.516393793578754e-06 1908519.7471384094 35.26572304307126 32703 5636 940522 QKC_20210902 150374048.9968077 3091.305564043379 0.023067469372515317 4.741232931678548e-07 16832352.639652196 345.96818300248225 75329 9552 471595 FUN_20190221 24042905.82753866 6047.846366716696 0.004093231942261391 1.0296275378569141e-06 870959.3165179316 219.0845056643585 36377 17837 514881 WING_20210930 30224878.677489053 727.4991407646992 15.22469183239245 0.00036610651804590554 4020066.3055803613 96.67009970726055 None None 426927 IOTX_20200325 8864793.546730734 1311.6816622228814 0.0020501076766990586 3.033936286315158e-07 2041609.9881806034 302.1360631953697 22548 1810 487690 TFUEL_20210511 0.0 0.0 0.35328778169768493 6.318664064483515e-06 59851311.58701139 1070.4596969636239 155273 16518 19506 DENT_20210828 617206057.810346 12582.858305960206 0.00643681682162341 1.3124288431079903e-07 90169624.09891774 1838.5052537471229 110125 None 137275 ENJ_20190905 71106135.54469422 6733.735759204878 0.0810652186219579 7.674358922280777e-06 30128283.534599915 2852.212890894903 48477 13722 25046 ADX_20190629 12786825.189407045 1032.835163810845 0.13933881636010226 1.123915684418673e-05 5139942.778249429 414.59102756833425 54202 3886 880682 SNM_20190905 4254919.2029129295 402.85460524249163 0.009723274073768527 9.205969730214712e-07 127331.85814437007 12.055746067381403 30997 9903 18762051 EVX_20210106 6749467.46996316 198.62941421471967 0.310872110562447 9.114738374041704e-06 332502.84842014953 9.74894938786899 16628 2806 1350138 ETC_20211221 4595291859.660229 97401.8773004292 34.74442950624699 0.0007368757684432894 355694139.4842222 7543.7241620584155 593492 62594 198488 LINK_20200610 1691032411.2541747 172991.89920475593 4.436611873780474 0.00045411819695276973 331261864.2381773 33906.964320246 57725 15948 81896 ONG_20200109 0.0 0.0 0.10111990717944135 1.258243354456808e-05 3367494.5791369695 419.0201310063966 81572 16265 336672 POLY_20190626 43619843.586081855 3688.9465196206306 0.0927287465617677 7.83331575753717e-06 7150366.394207453 604.031433883341 35131 5110 316227 VGX_20211204 6946638479.209556 129388.8030144129 345.0831054907062 0.0064352652572223085 371516971.65727884 6928.215905484022 407478 13429 16321 ICP_20210704 6678275307.183987 192639.50200621886 48.940623433444124 0.0014104382982617918 345856648.0724319 9967.373276582704 237601 21270 23001 POLY_20200625 30821029.351182677 3312.7238642596494 0.04672127712600846 5.025850543353336e-06 2341610.53114902 251.8891880578741 34897 4999 358611 CTXC_20201101 773946.3563105462 56.089297421837756 0.07683237968707973 5.568180232972973e-06 1810564.4651599256 131.21485116674205 None 20064 571475 BNB_20210723 45356934262.17084 1402396.7899767691 293.8016653905489 0.00907536747220345 1324837574.9620743 40923.48427562889 4570325 564133 142 NAS_20210616 20361152.843354896 504.46118743576966 0.4474978646891186 1.1087059064522408e-05 3314414.2474597115 82.11683099629762 25085 4918 520126 VIB_20190903 2983311.6097950083 288.8808877026473 0.016341193618955866 1.5823551597042784e-06 277264.22022297187 26.848128704764463 32349 1120 4329648 EDO_20200621 0.0 0.0 0.5758798891333996 6.154942637969498e-05 15328.288715742414 1.6382710972179 2885 35 None DUSK_20211002 52141548.7823168 1083.1206593010127 0.14465306420984927 3.0031408777004505e-06 2324985.0713159493 48.26899275070324 28822 13668 352907 VIBE_20190227 7396382.736110419 1946.0285549196078 0.03694494212699183 9.720415357627477e-06 1317176.253065733 346.5562413115321 20484 None 1395931 NEBL_20210127 16258879.974518562 498.87423865601886 0.9343184406365068 2.868494113200529e-05 1702429.392907251 52.26706954822774 38893 5879 802156 VITE_20210221 21484020.24371868 383.24438501399334 0.03706204780358065 6.590529533455614e-07 2841177.601413097 50.52301748446978 None None 414630 AAVE_20210819 4994566803.678991 110866.0645399118 383.32649282513313 0.00851984491314987 538411089.2541683 11966.767405398712 None 12512 14216 BAND_20200625 26105219.13242958 2803.5688905650914 1.2688249713656994 0.000136507415434605 2502286.82851871 269.21026567555924 15414 1221 511773 CTXC_20210206 1410994.8563541244 37.235894451188614 0.14115595520906316 3.6979931206210374e-06 10590771.6652244 277.45624123376274 17306 20099 607104 DCR_20210218 1787809602.5270855 34288.30475496143 141.7274668465074 0.0027181835070762875 71039273.51066317 1362.4584274867009 42609 10453 268087 DCR_20201101 149619375.45702004 10842.977979639534 12.269264020938895 0.0008891755490687585 5420980.670454793 392.8681831213789 40826 9937 361711 NAS_20200414 11670229.995897014 1702.4528608293465 0.2561727596878896 3.741159143947902e-05 4037756.167959289 589.6758276405864 23495 4958 1093908 GAS_20190704 45668675.46654051 3805.2742080135495 3.28205594168486 0.00027348897113430194 1597047.6674414016 133.0796705423507 323538 98034 188893 AUDIO_20210718 214445507.52360058 6784.22133139886 0.9116862329604158 2.887001525444337e-05 14643894.688261958 463.7225481202819 53416 5869 31979 WAVES_20200719 146987756.6619683 16034.79739726112 1.4698775666196833 0.00016034797397261125 38920849.607594974 4245.849805179946 269 56874 125564 NULS_20190813 32012055.836296435 2812.458472112563 0.4369118068712581 3.839403047141346e-05 3953511.1478328523 347.41846086959754 21336 5306 406668 XVG_20190804 89452599.14413767 8290.336444668694 0.005654854426942642 5.239825756175243e-07 1077420.2085987628 99.83447376366499 303907 52912 396565 RCN_20210527 37440594.34777679 955.6175886406404 0.07287848406442989 1.859010528822738e-06 1921087.6631497566 49.00379362212801 19793 1166 786540 CTSI_20210427 201217767.56489074 3734.02519836914 0.6466309450847378 1.1995929588901292e-05 68669369.83995005 1273.9151006859313 32319 1078 161196 FUN_20201106 21358002.89840951 1374.5049762931249 0.003545272121760005 2.2808524103618905e-07 479245.6633043647 30.832291253304223 None 16586 423341 UMA_20210105 478119707.6243036 15282.081727912986 8.621196026736005 0.0002755582339987219 41925640.95643863 1340.0641332586283 16539 None 192669 BCH_20211104 11550814857.957172 183478.46196164656 612.1570704786282 0.009708460251837824 7042571911.638578 111691.15374489446 None 669988 278401 STX_20210711 1325424174.089077 39306.13711178339 1.2516274024721232 3.713017413509888e-05 166298192.04034635 4933.32186289178 68472 None 54271 BNT_20200711 98709002.03642428 10631.931515536893 1.4998965865468545 0.00016154231349761733 58903101.25948285 6343.999536360057 None 5095 116886 NANO_20210819 764108502.1581454 16951.863381330033 5.721288055552185 0.00012703565632921621 28578033.89325575 634.5475454089758 134800 108374 81313 ATOM_20200526 488506866.6429436 54967.41047928086 2.6134302380443475 0.0002938271340207763 130899744.77339993 14717.016850467211 33314 8462 115651 DUSK_20210828 57201239.122103974 1166.1432230651724 0.1586445965975184 3.2339021206686784e-06 3176509.0969235445 64.7517767713564 28518 13654 340293 FET_20190914 19108854.116975065 1845.3851660017758 0.05618096529904482 5.425522605377956e-06 2997993.8108836478 289.523028042542 16270 307 439975 XVG_20191213 67612862.04304041 9385.314516697037 0.00420318245403849 5.839147161511554e-07 2557060.3224221785 355.23205777420566 299682 52299 387360 RLC_20191015 21782814.30667898 2609.6241385709936 0.3110340092350062 3.726248807837976e-05 622381.1305486617 74.56248760165445 24948 3314 1064127 GAS_20200725 25422862.258574087 2664.5941756862635 1.824192804300344 0.00019126238175545872 13548556.440055413 1420.5346978479847 319985 99856 192818 FIL_20210408 10191782324.67231 180945.46584640787 156.19389441878076 0.0027795957156928576 3603564397.5854216 64128.32075174491 71959 None 40671 ELF_20210429 218203510.43555415 3986.4284213289184 0.4691175715625834 8.567475909054611e-06 71264001.00736009 1301.4916703710583 87695 33371 202444 QTUM_20211204 1427015933.6664546 26579.74559813385 13.716145454630032 0.0002557848613935276 245573990.20111936 4579.574433154267 268858 17559 132017 MKR_20201129 482424228.8389911 27252.259340506112 530.6935966953446 0.02995848123034058 33662911.527298845 1900.3238581153298 73451 17798 30241 VIBE_20200511 1458278.2652351307 166.5431299057087 0.007793147175680368 8.899781235673657e-07 80900.68501326814 9.2388656624 19021 None 988132 ROSE_20211011 296644760.79681915 5422.181183373242 0.19776370812694535 3.614761976653169e-06 120449967.66462193 2201.6069951706977 None 2676 205423 FUN_20200105 19195156.49117529 2611.758096361674 0.0032146990789271653 4.371908747065585e-07 466264.1790486794 63.41073900785041 35295 17166 368144 ELF_20200330 24333633.078669053 4115.124955828482 0.05274405082056343 8.935602939655809e-06 25736629.261998802 4360.156197951494 None 33433 652715 BNT_20200713 99082291.89236386 10677.179382794093 1.5155693648621964 0.00016311889343631334 60266086.558211476 6486.365836516085 716 5100 116886 UTK_20201106 45131515.87736133 2904.46131392298 0.10038830191201803 6.462657845115073e-06 3917621.1258164174 252.20313941693468 51003 3060 131237 CVC_20210131 103199354.89297567 3016.426470189519 0.15413258530308874 4.5108367354837134e-06 30143512.391083766 882.1785656993346 87739 8174 155763 WABI_20211225 12538010.019718617 246.58764327475149 0.21228295470671646 4.175480907921909e-06 826624.9564567166 16.259226881712493 45841 7948 525909 FTM_20210314 1046675723.85639 17041.986408745437 0.4073190970513011 6.639734785154349e-06 182589534.0139457 2976.4037315560136 None 5417 70542 SNT_20190723 75889361.03729762 7332.96519612664 0.02148741871868696 2.0783168412851444e-06 24541310.557958297 2373.6968924730118 111737 5726 282023 NAV_20210127 17040966.716049552 522.8711516263904 0.24165990973181117 7.419312284899646e-06 873880.5916253828 26.829410869915996 48408 13630 681902 OAX_20210708 7109759.964525437 208.242017348037 0.12423017744853579 3.6478047544167022e-06 467336.547004128 13.72253113604834 14066 None 1338925 BQX_20210421 792117353.8033181 14020.13633634274 3.563357753324241 6.30698990205112e-05 11950131.680878974 211.51218894362518 66182 4338 20896 PPT_20200711 12469667.557081308 1342.9451714077939 0.34594548707292844 3.7259124947061924e-05 2338736.712275647 251.88732513394345 None None 1105002 QTUM_20190324 217772900.8640699 54408.87249172306 2.6788896942471982 0.0006689084973214271 162975491.92548585 40694.35618726806 176349 15240 328111 ORN_20220115 165555480.4132812 3841.6475405191436 4.84315628840905 0.00011232691549883892 4319583.109552608 100.18372690101955 None None 65758 IOTX_20200105 15646349.101724794 2129.263912568828 0.0036018814563334965 4.898043396742234e-07 2461782.451058046 334.76718833759253 22146 1788 479977 YOYO_20200725 2106670.42087348 220.94784156512517 0.012045676634066728 1.2630933065430628e-06 988063.2792078265 103.60697471147817 7581 None 1934644 BCPT_20200315 1284878.1289381047 248.5782203642629 0.01108410427243964 2.1393336038451187e-06 43611.84199855546 8.4174847890129 10678 3166 1771218 LTC_20200323 2284444812.204689 391642.4018475826 35.50456004097771 0.006086857995737961 2676336913.0869694 458827.90041364706 133600 212433 131624 KNC_20210203 289388461.9180799 8124.885732980685 1.4132344388199305 3.9780603027744854e-05 95831468.66153315 2697.523855683483 131445 9490 112960 GO_20190316 17486414.6760523 4457.397184936799 0.02513737438316674 6.405742387102456e-06 1378864.3022321993 351.3751823176108 8244 630 816048 SNT_20201124 145742726.1786689 7958.013324431857 0.03745150092384036 2.039928834230835e-06 22765355.86401517 1239.9958533829715 113616 5689 157993 WBTC_20210616 7627765085.713331 188875.50577726818 40327.974012285486 0.999190788694877 308691290.6346894 7648.326049271688 None None 229345 DOCK_20190804 4615649.623286304 427.9351682209309 0.008400513469487086 7.784068471886438e-07 748483.0342300617 69.35579842416294 None 15218 218357 DNT_20190528 12096811.484878361 1371.6736528022109 0.020669047249460303 2.3486335809926884e-06 1366630.2394883959 155.2908382531438 60805 6395 1189433 DLT_20190818 3694160.6803232357 361.8492938114624 0.04604864646936956 4.510542893996993e-06 89127.30534695774 8.730170474418383 15040 2657 4092557 AE_20190625 161817650.5593218 14656.199898486533 0.6044770518219901 5.472990671794381e-05 113297626.33460231 10258.071008596828 970 6361 390677 PIVX_20210422 103703852.23185949 1913.9409414838751 1.5868213091346428 2.933775027283338e-05 1940590.506637653 35.87836849545099 67402 9623 208244 CHR_20211207 377478173.9055076 7478.614615530921 0.6649457785429281 1.3167760617041264e-05 199169072.9879422 3944.097037761597 None 1759 35979 TORN_20210725 31300799.4697901 916.1490223914786 32.55553864639069 0.0009515181442179944 3679992.7140529286 107.55711573519272 21748 None 132811 ALICE_20211230 212835177.36540607 4589.00332541725 12.359149896338883 0.00026535606790759666 116514581.25821954 2501.616324415647 172301 3144 29730 FUN_20200127 17807082.430320553 2074.65821572611 0.0029673954254334665 3.452978863923851e-07 192960.92895074928 22.453698065289696 35145 17116 393134 SNGLS_20210105 4455100.146053135 142.39782098988368 0.005005852454729226 1.600014496602969e-07 210785.56748537545 6.737313308798411 8981 2112 2388583 NAV_20210825 36320756.17508456 755.136326187884 0.506276922420939 1.0535414025955448e-05 623992.7163172308 12.98503116465713 53000 14153 1077021 BCD_20200320 90354699.33774774 14599.475496860598 0.4813043165265961 7.796899064791474e-05 10105890.424383128 1637.1057747287805 28994 None 1207769 REN_20220105 590202493.1744804 12742.71619499776 0.5843751161224459 1.2700796300719074e-05 60029364.124583125 1304.676918598073 110785 1246 71958 JUV_20211204 27222310.7631242 506.98193894808225 10.018167980319141 0.0001868233110197887 11799708.29579909 220.04627764473045 2769218 None 33797 STORJ_20200526 18844163.073843088 2120.3608692577272 0.13092362252285766 1.4715833961613453e-05 5080509.806974696 571.0500314542975 81409 8103 107093 STORJ_20200523 18194618.658829335 1987.6179478583795 0.12633048226085555 1.3824578156673417e-05 6819565.463814425 746.27765256514 81391 8093 107093 DCR_20190507 251549503.004681 43974.02540676556 25.80656365294706 0.004512957081420362 2576679.2669973704 450.6002077970139 40570 9447 304516 NAV_20190818 6811637.167497124 666.7990241060115 0.10324675825577984 1.0106944329854798e-05 81307.60278900557 7.959295079721523 51706 14208 487370 ICX_20201201 254185265.5813076 12928.758287943554 0.4396014280554898 2.2392884774697482e-05 23041604.305125616 1173.7177299699808 116230 28033 301434 RCN_20210202 29858510.955231115 894.8466507287693 0.05788710855512881 1.733679482928364e-06 2042931.6765835409 61.18441257684006 None 1133 3103198 NAS_20190626 78422264.4555609 6643.786270978734 1.7226566783353001 0.00014570711558553373 20634852.77073547 1745.353508664021 24329 5151 467000 ALPACA_20211207 93481473.65333034 1852.4372013590237 0.6066844732102875 1.2020838412293706e-05 32422774.46139491 642.4244395382399 69303 None 27687 NEBL_20190915 7327307.646211115 707.8469858742487 0.4713241238377979 4.553178009400507e-05 88022.51951168799 8.503324568011513 40449 6111 464857 NEO_20190703 1240021330.1124804 115239.36658670346 17.755101264359617 0.0016450874220525157 882404175.4410925 81758.58805709377 323512 98020 188893 TFUEL_20201115 0.0 0.0 0.008661066893162562 5.382174400561987e-07 983156.0189804401 61.095442656058026 74694 4510 75769 WAVES_20190616 241621491.2344386 27403.3197303829 2.4131840622385456 0.00027368370133209796 47742087.0162721 5414.519053226217 139722 56855 49915 IOST_20210117 388655702.4737517 10715.90940816667 0.020963427447412093 5.79179449343425e-07 886521753.2757787 24492.902326266238 198190 52184 269048 ALGO_20210422 3538529905.766496 65306.51575188973 1.2214948211943357 2.2583456509858338e-05 644469542.5096245 11915.195736125726 84642 22669 138222 NAV_20190421 14845139.084198963 2795.614483951276 0.22886593427797136 4.310125383735072e-05 117516.59230578534 22.131351662498748 48745 11336 1024643 OST_20191118 8558077.554418916 1006.1063331231501 0.012617200084234639 1.4833212662241625e-06 5208067.176702284 612.2782192207064 17923 754 567623 NEAR_20210203 680934277.6135008 19120.29362041841 2.4680846921397195 6.949469403219185e-05 90949431.52430345 2560.8938527565915 36602 None None WTC_20190601 67576580.16645882 7877.472500631028 2.347160528424166 0.00027368401524889644 11342345.291651024 1322.5420946570598 56534 20183 895800 LINA_20211011 156915471.66334677 2867.8693525566637 0.05261897670180721 9.613638423201415e-07 115460567.87855661 2109.497792046237 None None 133521 BCH_20200403 4251950052.7928977 626974.1491547426 232.54928393029965 0.03414169902693324 4086928153.8903184 600021.9334867739 2713 290276 142295 WTC_20210418 62310826.93450212 1034.0556641491485 2.1347366855724346 3.541960494499388e-05 38429800.480675116 637.6282191334751 63047 19381 334285 WAVES_20210823 2600112018.556958 52704.20768369488 25.902431137014126 0.0005257312601782417 393417652.1001907 7985.040358603213 195504 59300 144631 CHR_20210428 141613673.02718675 2570.5910744904295 0.308064793811506 5.592822735037327e-06 93134008.67336065 1690.8196313800288 55659 None 107103 BAT_20211207 2019521709.4764545 40010.855241271034 1.3578170240064256 2.6883645899780336e-05 839222826.5871731 16615.91282337284 239674 84893 24150 LSK_20211028 480820154.101853 8216.190633625061 3.322262656157912 5.6728166360863415e-05 12153564.474691212 207.52405777425446 198797 33364 201994 RLC_20190706 24196237.707889 2201.499197047795 0.3458349626303872 3.1465858524510094e-05 184486.82762367406 16.785568392188182 24963 3319 789445 LOOM_20211125 109912277.47056918 1922.466879951574 0.13215003309542592 2.3103578011772104e-06 3060463.309289659 53.50558843014565 38276 None 364600 XTZ_20200719 2159415863.1262116 235569.2518070769 3.0085784647486395 0.0003282038397725237 171162377.66304168 18671.990852762596 68189 27482 67459 STORJ_20210711 136821485.3976548 4057.3944824321966 0.9503171106788411 2.819468436244794e-05 28061368.822648983 832.5446609791755 103540 13674 49703 ZRX_20210519 1345582626.2084422 31568.418632419973 1.6065610620436974 3.755325225847031e-05 344006638.1183388 8041.131062527214 215897 19188 58753 AE_20190614 136946679.7554328 16655.725125384713 0.5137834610624292 6.245014172810642e-05 44564256.979681626 5416.764795491751 968 6362 374739 STEEM_20190914 51412540.187988415 4966.267639130345 0.1585116961446807 1.5307832218119407e-05 356533.02809038846 34.43119912895381 11076 3776 235183 FET_20200721 35354477.66295837 3858.707320331321 0.05567272067889644 6.076982747676318e-06 8668966.348773632 946.2652139013118 18628 459 533444 DLT_20210624 5189701.106242896 153.93939683440573 0.06328147929787109 1.8770855111838255e-06 107421.10725973074 3.186376271064 15165 2599 None XRP_20210202 16887446178.179226 505592.9429529724 0.37042380457272894 1.1090111525315034e-05 25326949014.716194 758263.0643652995 1103363 250558 11661 AMB_20190321 8586788.395734088 2123.858946393193 0.059386752151952014 1.4688737982389243e-05 367265.5363874199 90.83957344818585 20914 4963 634689 ONT_20210702 611292646.798828 18195.85213548208 0.7074341018208525 2.1030988304077855e-05 160076839.28484327 4758.851921455471 141024 19546 137199 WPR_20210210 10457267.349325156 224.76498457440312 0.016752870117211625 3.595457589005017e-07 659789.3663030341 14.16022847202671 32582 None 7510517 KMD_20210115 72362187.92748655 1855.0576067892666 0.5845254013837115 1.4900338710436017e-05 4807801.692255057 122.55733197842873 96754 8414 276744 APPC_20210212 8356753.753129655 175.25437702820392 0.07536109995705408 1.578883804028341e-06 965632.0766066446 20.230873053515925 24367 3112 1221759 BNB_20190221 1601780326.1776874 403414.20456700085 11.089336196890757 0.0027928896790236114 131715216.78473957 33172.95670335971 918125 47577 1153 HC_20201115 36056052.06343223 2240.087406866053 0.8065795814086891 5.012260069831525e-05 7099207.415346506 441.1601121026076 12728 844 947042 ZEN_20200418 48551005.296316996 6896.519377341973 5.471714924068651 0.0007772400956647811 2682486.7151123616 381.0388991397092 None 5128 38653 WTC_20210421 53544512.43043902 947.7656241006565 1.832886603924439 3.2459755324872095e-05 21154644.662609298 374.6410652261047 63289 19410 334285 ANKR_20210131 78381984.10999817 2291.271651798291 0.01197031653473757 3.503227007714396e-07 33630156.36297718 984.2185183870969 None None 5358 LUNA_20210421 5102747892.187681 90321.28263284502 13.434146512673053 0.0002382619772756848 437981358.8923104 7767.840292729498 57634 None 23843 LRC_20190324 48763117.98521972 12174.801738101723 0.061797834481811136 1.543313081732559e-05 1955051.49890692 488.24632432904457 28812 2466 678788 KLAY_20211221 3180605267.616087 67416.1584244503 1.2419740733697666 2.635100041846424e-05 18450831.733866163 391.47183919947037 85107 1088 27552 NBS_20201015 0.0 0.0 0.006670709058495822 5.839428086829383e-07 2000995.8992676625 175.1638626921136 None None 918577 NEO_20190719 928856698.6449299 86547.02060647767 13.053270781723677 0.0012234087703824233 667897094.8829585 62598.19299365319 324254 98141 191074 ZRX_20200607 213063587.19073752 22034.5628562379 0.3252247016431775 3.363401614158755e-05 28673014.905351054 2965.299503026812 153437 16065 97412 COCOS_20191011 14622272.204050383 1707.7157233663231 0.0009304532196850818 1.086663940418845e-07 2216045.071361088 258.80895658634375 12144 130 85869 NAV_20200430 6468473.011906672 737.7912295414837 0.09437329880044959 1.0764177577877188e-05 1270055.5543494949 144.86198633041835 48983 13912 1361419 KMD_20211204 141200365.78766775 2631.813800637454 1.0945264512480772 2.040072490951729e-05 43263111.21567549 806.3750580302826 117159 9998 120888 FIO_20211002 64415254.063196205 1337.5271914692942 0.18044898505713466 3.7462967678594596e-06 14987164.53014263 311.1481398516812 None 527 497635 BCD_20190522 198101180.59212646 24909.125010961852 1.0495839486590504 0.0001321550368364688 8311733.7237021085 1046.5456125106878 21188 None 3558878 KSM_20210115 790680033.8425984 20225.747818289634 87.63277153762682 0.002234094086325511 171489121.11377203 4371.912751668891 29369 None 180647 OGN_20201224 24234748.22821104 1036.3715026605844 0.12286351704461489 5.269608900813759e-06 7866080.567640851 337.3757252830911 69829 2472 208472 VIB_20200621 3023877.044393179 323.22615316298396 0.01651159894999794 1.7647506220977663e-06 382574.7897709681 40.88938329302882 30862 1100 None GRS_20210519 82311820.4386973 1931.0527350073307 1.0701829748646108 2.501545205302493e-05 2978767.8336521573 69.62848939850257 41586 106850 6377018 CHZ_20190930 12511848.253310435 1552.213094669181 0.00413816766822143 5.139374631699925e-07 1639853.1679771966 203.66066449977868 12003 None 448785 ENG_20190324 33386989.893321104 8343.679679554536 0.4342120874478719 0.00010841145356986656 689940.4967116481 172.2601795008876 61511 3275 352140 ETC_20210202 871570352.7494482 26093.92888585744 7.492881071651249 0.00022432922966811965 756557976.5943125 22650.575454986058 267142 27078 152499 SKY_20190916 8337941.420233557 809.1011755702415 0.5211626812081869 5.057290733758074e-05 295770.58802687546 28.701169674675413 16356 3807 8463973 BLZ_20211021 81427150.53716438 1228.4656205928195 0.2619408023413814 3.966478075787144e-06 12445635.715017337 188.45991446003518 67907 None 309385 ARPA_20211216 92746499.26826315 1901.1767022562453 0.09456776802563223 1.937962669248871e-06 18643542.759777304 382.05924328467233 None None 199347 POA_20190421 9343487.242163133 1759.4856371494495 0.04243806241683073 7.99157309852319e-06 406729.306884032 76.59178582070038 17367 None 757661 EVX_20190510 11071150.82945342 1793.151098324092 0.5740022512725539 9.296285471977764e-05 2065865.5464948236 334.5784066937426 17214 2388 712033 XMR_20200913 1532502558.7072504 146967.69359925354 86.74532141632787 0.008307774668706013 160600242.45005324 15381.00965250971 323246 179379 87669 LOOM_20210527 77442450.27388446 1976.6077135884614 0.0927065275311943 2.364914675896714e-06 7304794.877478378 186.34304476943024 32933 None 298596 HOT_20200730 136135082.94538313 12274.127415435441 0.0007664425014273616 6.910351626919502e-08 12083232.242897995 1089.4409356560177 25870 7217 636916 IOST_20200313 27985382.60918314 5815.133053425619 0.0023313043087388532 4.880831475793065e-07 51653603.671441086 10814.226769652958 191360 52259 110553 RUNE_20210418 3356328214.0414357 55676.520648657686 14.333574265612278 0.00023786446878782243 143413904.77787808 2379.9417817660524 736 3661 83196 FRONT_20210310 66582726.59415876 1218.177030883014 2.4696075510801627 4.5145824532769314e-05 39555960.59479489 723.10535957694 52073 None 145212 AST_20190213 4359657.5047540935 1199.8039151808614 0.026166983539944035 7.201191774937647e-06 204215.27539407727 56.200339608865775 30447 3593 375150 CVC_20210106 62378274.3202099 1836.257483443996 0.09297672122454871 2.727645068646324e-06 20125255.605925355 590.4118093836938 86568 8055 183713 GTO_20190929 8918304.132596912 1088.7829165260084 0.013457944099135281 1.643000665692006e-06 4802236.830282645 586.2766445487033 17293 None 702071 AXS_20201229 32988470.323910207 1215.566793119784 0.598766648214065 2.2054124823527412e-05 7034823.674218733 259.1107568958302 None None 21811 DODO_20210804 177807964.63574338 4628.523754764307 1.286937233250117 3.350043624223944e-05 60058312.21067869 1563.3860044200949 99331 1045 29473 CTXC_20210725 24233944.414556406 709.8206864894815 0.1340489297711542 3.923503490094415e-06 3623881.8308121967 106.06808301382658 None 20593 753985 KSM_20210506 3863641809.0409055 67489.9217103047 429.72213645992247 0.007495872849117363 274311238.70536125 4784.95751547358 54778 None 90994 GVT_20190613 15911397.682417307 1956.7872233808366 3.600387102854896 0.00044256416287803593 926593.2369926752 113.89801944711607 21327 5778 170487 XZC_20210128 47886163.33099869 1582.949788748863 4.188366424493961 0.00013774295556801442 2027678.2196561308 66.68432572731979 67963 151 431811 AVA_20210104 29525470.184360728 882.5842364497377 0.7557020320512771 2.2957313461958874e-05 3094088.0322465845 93.99465109597665 40748 9040 96594 HARD_20211011 74313646.17797814 1358.1951230902453 0.9511455664901989 1.7385216228874697e-05 33188312.15032223 606.6221652421348 None None 50736 AE_20190228 119732705.08878171 31329.05456507292 0.4488886947671442 0.000117671395844721 65415963.36013789 17148.098869158614 961 6319 487451 MINA_20211216 1134681167.0095353 23259.415894154805 3.5244336012037705 7.222076123801637e-05 41181262.987509556 843.8638652988298 162630 11818 61676 RVN_20200323 77369412.68591304 13265.003291603218 0.013348136150544275 2.2883880031851247e-06 9749142.808056291 1671.3810221650208 30207 7607 202553 IOTX_20210727 181916822.39665845 4859.098261287291 0.01910363531338132 5.119738766291654e-07 11884306.49176934 318.49720567992586 78684 3611 234069 ILV_20211216 745315879.2783867 15277.211789031822 1180.2675086237678 0.02415148999317462 34114942.59110319 698.084704176498 200317 None 9424 HOT_20190205 210261355.92748353 60693.87797310497 0.0011837744988582501 3.417074177251836e-07 10355225.704056023 2989.131324173033 17549 5326 326508 PPT_20210509 192095717.20762 3275.648384594829 5.308252983766338 9.036478190273087e-05 13752987.432429243 234.1233007626324 24409 None 645855 ETC_20190520 861497946.066179 105274.04013014985 7.7783562426174715 0.0009507869680211642 588986754.0770663 71994.76504371529 227760 24510 712989 REEF_20211028 385863595.4748587 6592.802471868341 0.02794224194749215 4.771182515490696e-07 84616806.33684644 1444.845505488362 211628 13966 81456 BEL_20210702 34705099.52483011 1032.2217492174946 1.101735985101976 3.275528891172003e-05 4690064.147320009 139.43849364759322 None None 582298 ETHDOWN_20210813 0.0 0.0 2.281117872553217 5.13069187537599e-05 10607574.721335134 238.5856430088017 4733836 588105 143 XRP_20200208 12219130649.62797 1247489.0993320236 0.2795854197829911 2.853438326043272e-05 2279182999.2916217 232612.563533995 944889 209333 32294 TRB_20210711 73780797.65617876 2188.221697605653 41.618606762731744 0.0012346374914037979 34362948.35079633 1019.3946325722874 23132 None 263441 RCN_20210401 83937758.1284938 1427.0443212756477 0.1625168506359194 2.7656968681836733e-06 3326070.359915313 56.602760524718086 19273 1151 1086230 LSK_20210610 468088773.95991933 12470.421247598855 3.242113298754034 8.64136789216141e-05 43813098.7906335 1167.7725923118626 196284 32504 207056 AST_20200719 11750427.256024322 1281.8463568697741 0.06821237851299078 7.4412433680205835e-06 2504413.428586841 273.2048086067602 32256 3462 221691 DIA_20210114 33605963.75801619 902.4507022256877 1.314420563393974 3.525601651970096e-05 10557298.704241447 283.1729112325149 21567 197 308409 ONT_20200607 369060903.6125558 38119.84308617902 0.5777197584069753 5.974649398216116e-05 93135704.11082771 9631.887613686167 85502 16478 148134 ALGO_20210508 4687861398.462638 81809.44784773282 1.5766034546259107 2.7510178520990934e-05 747412481.2398067 13041.612161507406 91517 25924 134030 ARDR_20210427 354022376.4852611 6571.445860793261 0.35546342982320084 6.596590662249719e-06 14668263.709629463 272.2095250880929 71458 6766 None DNT_20190923 6023882.684223698 599.6967939153195 0.008021369546784396 7.98642486471709e-07 1292118.3546058505 128.64893077415115 60093 6264 442097 QKC_20200322 8520413.939675573 1382.8155756760616 0.0022848343991421424 3.710024568647695e-07 1689570.196145175 274.34578805829426 None 9198 585547 ARDR_20211221 226629718.74121422 4803.647022127267 0.22588240819709837 4.791414184194398e-06 6474653.752805739 137.34025627118055 76178 7434 None HIVE_20211002 228123111.3884001 4737.40682745252 0.6401098358898777 1.328930394654211e-05 8408331.39147773 174.5651531650928 24322 184 79218 PPT_20190909 13112567.066114688 1261.6540476031582 0.36195664717651854 3.482644295846751e-05 3137328.3723349785 301.864846117389 None None 732961 RARE_20211111 217261329.41071257 3350.2506304563713 1.5126934198835338 2.3293537685474356e-05 30062251.69565343 462.9201023673608 192279 2907 9149 BAND_20200319 5037365.272719848 934.9177121153649 0.2774785112969234 5.1501656011033805e-05 1700341.822445261 315.5935183284988 8633 1059 702901 QTUM_20200907 249396154.73451078 24285.927013273697 2.4278086181186116 0.0002364173696446593 377669917.17945147 36777.086854018264 185382 15090 78545 ARDR_20190712 80582602.68546222 7081.5340602142105 0.08066330672715928 7.088626266236712e-06 1501054.2452856575 131.91143509859876 67908 6571 885731 SKY_20201115 7721175.7653127955 479.86859463661636 0.40657597853437394 2.5263312434214078e-05 171112.49921548608 10.6323756377913 17177 3806 1281976 ZRX_20190207 128258101.59508109 37647.18258714352 0.21962822183748046 6.447358264953626e-05 12766815.706656823 3747.7986241842223 146526 15533 202840 ADA_20190811 1617713769.3221369 142774.24381577174 0.051977493522885866 4.589760196660273e-06 122064083.188201 10778.604978563568 154312 74978 93580 KEEP_20211111 355792427.2841626 5485.353688850004 0.6511594921032672 1.002675674200775e-05 50023271.56955297 770.2739214431291 28608 3443 136433 WBTC_20210111 4250359240.715238 110590.51781424576 38427.763607551664 0.9995876337591598 343515218.84694827 8935.559411529288 None None 159793 GTO_20210310 16214467.592778785 296.13637528697336 0.024468037332711606 4.4687720053926135e-07 14732652.62931356 269.0729327400209 None None 535966 RDN_20201201 13347551.98438832 678.9035271075452 0.200232453160755 1.0193176240623385e-05 1936944.7728211263 98.60349371971664 26402 4384 1987033 CRV_20210120 261821969.13521218 7227.067273707901 1.345728177424305 3.712724571065542e-05 200893614.2342008 5542.446611804212 57996 None 30895 GXS_20210420 69427398.02511217 1241.2728030830085 0.9916279438270061 1.7729715438568563e-05 17584634.950339716 314.4027714239366 None None 582398 GO_20190618 16454873.72779679 1766.0489110153424 0.022466435978914595 2.412259221481585e-06 1118288.9270854916 120.07257311193034 9845 671 943493 HNT_20201030 40022450.05577312 2973.0196405346887 0.8838311122838592 6.572872134885506e-05 1085039.1825424347 80.69215610393216 13875 1714 76118 VET_20190321 312423962.71769375 77310.0677887314 0.005646004636323335 1.3970262675281484e-06 17587413.110088352 4351.763711739056 105481 54858 762391 LRC_20210422 691182329.8519638 12756.34540726806 0.5530638575469397 1.0215271924158402e-05 115888858.14809138 2140.505445815538 70206 10010 144294 IOTX_20210617 211669703.7658927 5533.98528973966 0.022305655439162405 5.828090620548248e-07 12563891.536315016 328.2732427213206 55005 3117 185427 WPR_20190430 6276687.959536222 1205.755005920842 0.010470862475706175 2.0114581014354424e-06 231237.76570102823 44.4208944827914 35263 None 921512 OM_20210727 41321252.747484624 1103.7133605033953 0.1270198823238394 3.39394741683109e-06 21991306.757906236 587.6035892825563 None None 86802 CND_20201224 13988073.241790019 598.1840763686923 0.007234602291634227 3.100579599566284e-07 181072.61146921976 7.760344280581498 33960 5906 545184 OMG_20190220 180755035.38273084 46165.58818749389 1.2886082013224975 0.00032914533117650905 54183190.05985752 13839.849861384064 287917 37066 None REEF_20210508 518530631.656613 9049.345592018053 0.04103834305466564 7.160814136051065e-07 138272201.39561707 2412.7229821576957 132802 10813 30709 WBTC_20201115 1995290648.957938 123989.18394949926 16032.550683755228 0.9966735111739685 69785597.83324352 4338.265207688221 None None 172604 IOST_20190305 97139438.59050742 26148.121758013065 0.007223527880941787 1.9444387294588057e-06 5727735.630338568 1541.7994054007042 195814 48357 87686 IOST_20190712 116003041.08634314 10242.164397319342 0.009662400227804463 8.514427628976314e-07 76301271.96289021 6723.6053445334 197920 50368 104916 TROY_20210220 17229863.033099905 308.42665304591225 0.00919154374981269 1.6428885289767637e-07 6593491.276868535 117.85148914616676 11023 None 643459 NULS_20190302 16926726.31483042 4429.891414963657 0.4231681578721283 0.0001107472853744494 2659570.7068178463 696.0359151845386 19585 None 626169 TLM_20210725 345404921.5130174 10123.108731752645 0.2831530050253075 8.288080073565321e-06 610717239.5846442 17876.106889742907 54206 None 10364 TNB_20190629 16396234.757467799 1323.6547184735457 0.0059554947742535 4.811943019241006e-07 873604.6508812828 70.58583645405999 15734 1489 506098 FET_20201231 36008124.132480375 1246.9465083121565 0.05218039130593555 1.8094186067291174e-06 3109427.5354754254 107.82318603128427 26467 727 335952 WAVES_20190923 107119842.525438 10655.98768888136 1.0722011222447125 0.00010674105210025763 25864779.953753512 2574.9215957033734 142335 56902 28141 DCR_20210314 2290866656.100499 37336.346553631316 179.87901470263262 0.0029322193820191405 54722345.86921967 892.0324777881531 43256 10633 269159 BCH_20210115 9784496166.184372 250832.71473037114 527.410121783602 0.01344439340922536 6484085337.988165 165288.05683155032 None 362349 464995 OGN_20200807 24747040.778054874 2103.3890151782957 0.3201821616757733 2.72120016933892e-05 10215681.998780252 868.2218721836056 65513 2349 154387 NKN_20210513 352394986.35264456 6832.247926551261 0.5130521544045101 1.0227845376280652e-05 46790823.351411596 932.7888055017839 26374 2886 131546 NEBL_20210401 53343993.497236595 906.9470268821282 3.0224544770538815 5.139522477259606e-05 2516832.179367417 42.797387539010145 39659 6028 544000 QLC_20211225 9131154.780463807 179.64535068443857 0.03805127218998644 7.485288681332994e-07 542311.058733976 10.66811855707521 36017 5832 940522 MTL_20190625 29780754.80561624 2697.3120302405805 0.6459809344653937 5.8487442125420365e-05 5324925.922751858 482.1214994322474 33142 None 940825 IRIS_20210217 140859281.03617412 2864.17989416241 0.15069710624042096 3.062352823749466e-06 99867160.90250258 2029.4250488241275 13994 None 757978 FET_20210819 350097036.4875314 7766.9560225843925 0.5036055889027283 1.1193177604878122e-05 43330482.089958444 963.0667181328175 71574 3596 152406 RVN_20190806 175505735.84862942 14858.815866582589 0.042631414164090616 3.6094047912509215e-06 25464124.255055957 2155.929703327221 27261 6875 260058 GXS_20190321 73156171.41317628 18101.489403407963 1.219269523552938 0.00030169149005679943 29158546.793650847 7214.88174692779 None None 590574 CMT_20190528 35658436.01476116 4048.54865297588 0.044606560868979794 5.0686645361563965e-06 10802138.812061802 1227.4521246360432 292183 1643 879969 ETH_20191024 17459645841.196804 2340545.819098269 161.5840435929357 0.02165196851169735 8423014823.046386 1128668.6956640414 447786 446885 24016 FET_20200801 47307902.76242472 4173.5798828747165 0.07425187206723466 6.550562252501312e-06 14748721.310386043 1301.1445287331542 19418 476 424250 THETA_20200410 87164166.21049647 11959.75154293643 0.08693486890088808 1.192285298105525e-05 2498280.1815695376 342.631531937967 None 4027 349819 LSK_20210427 656424798.1018783 12177.186520770349 4.564196874005358 8.466937387647905e-05 51494469.93115885 955.2621518156009 194254 32087 143089 FET_20200318 3795159.887642415 699.0709463315945 0.010935735363106094 2.0331769879062125e-06 3494454.953139066 649.6906847222052 16595 360 584622 LUNA_20210112 358596839.1098606 10123.273875848103 0.7383294683886623 2.0770673727924936e-05 65086074.356154576 1831.0004849644008 17802 None 167354 WAN_20210930 142401904.19282818 3427.62828272936 0.7368262725301765 1.772654212091131e-05 3618291.072173519 87.04872707151522 None 17001 269573 QKC_20210814 138208446.99689195 2897.471067201769 0.021162337083288248 4.4354023948965443e-07 12389203.205471879 259.6646171551838 75186 9540 280880 REQ_20200711 26007351.150782105 2801.2478156105904 0.033626826957646336 3.621963398075961e-06 866087.3372279593 93.2867272587977 39136 27895 569797 CVC_20191127 18152956.79548684 2533.480180937058 0.02722021687265778 3.8033898442552524e-06 2827605.743990385 395.0918914629786 87437 8132 119637 IOST_20200707 96268138.85712864 10312.821617954178 0.006418609480619566 6.869846613401465e-07 160083535.78269264 17133.762997712525 40 52176 403755 GTO_20190531 26203939.50531397 3152.670584571812 0.039533700650476365 4.759286866036303e-06 35914585.98805515 4323.5977047350525 17322 None 1205276 ARK_20190614 83164514.97689885 10103.834823426401 0.5849981155789895 7.107267244290041e-05 1027733.0824472085 124.86149063097291 63488 21798 216267 HNT_20210427 1202764700.704528 22325.998690882414 15.083613681890464 0.00027981267274292853 22445869.186444838 416.38819327744187 34739 19494 15835 IOTX_20210806 220690239.29216766 5386.413911836269 0.023215510948186975 5.666344226316629e-07 57353887.59122502 1399.8695550344146 95001 6047 162985 AST_20211120 86215515.41662967 1483.3076222960824 0.5025845279223716 8.6160747299967e-06 5091263.644577152 87.28224924299236 48292 3741 168464 MATIC_20210704 7034609249.698987 202920.09892144956 1.1158950657247686 3.2183842437286895e-05 466895417.98029363 13465.861646416855 513480 46279 6545 BNB_20201111 4166476642.6499786 272397.43664070126 28.15111180787262 0.001842808823197873 319364158.02644795 20905.998038049533 1319448 76049 670 STX_20210819 1440684827.3420825 31961.812098255414 1.3708315958888724 3.043286911513041e-05 32748403.598452486 727.0242992866957 71097 None 67440 GRS_20210616 57208306.57186429 1417.3740792801327 0.7356322582470128 1.822578148527857e-05 1194594.7794442393 29.596885086970243 41137 106845 6399829 ROSE_20210930 218634659.16292006 5262.4372252938 0.14605684272825215 3.5122131020248074e-06 22598033.952814974 543.412478638535 33357 2462 178282 RSR_20210114 374033237.7142085 10045.044842817284 0.0402579180341915 1.0772120832999546e-06 175387917.16158906 4692.989425603551 53626 None 170522 SYS_20210212 84221226.53093539 1764.6655424515259 0.1372157035732835 2.86932682533418e-06 5572600.086166846 116.52901597781363 61023 4545 273624 DGB_20210702 651010703.8804464 19378.107308271035 0.04509058605261113 1.3406743560482947e-06 16809806.55722001 499.80447260326264 222041 39940 90181 VET_20210725 4701186252.287804 137599.9099726066 0.0722687991927934 2.1118690577990536e-06 517954844.5668006 15135.892968964989 393625 194169 33228 BNT_20200629 65371679.120862514 7168.074378589869 0.9964855744556883 0.00010926135507870717 33243975.204095222 3645.092184085506 717 5073 118402 POND_20210708 56338203.08224702 1658.088819012742 0.07273210819127496 2.1406556347238094e-06 12039775.43877719 354.3553703413685 19601 591 110694 AE_20190623 139780849.01892018 13020.273094252469 0.5221834498766411 4.868157098216286e-05 55283438.06560961 5153.906380917968 963 6361 390677 PNT_20210702 23047652.62657224 685.9278722323921 0.7204960599780518 2.1420791299789163e-05 3440703.5643852632 102.294234585242 44462 319 307388 BTG_20200223 177946054.45991832 18434.592590493525 10.155804481776832 0.0010520934395862552 20238435.294314787 2096.606432198091 75080 None 182910 YOYO_20210106 1685464.661240434 49.601373713062074 0.009670757887956766 2.834790686137664e-07 487902.6025703127 14.301896185727692 9301 None 2139137 NANO_20210430 1077612558.4173882 20106.85904756098 8.087252439917902 0.00015089768917530557 71568833.47869466 1335.3820310593524 None 86784 65732 UMA_20201030 399403002.6693702 29668.70986073728 7.283493375031511 0.000541654118050349 16207558.806672452 1205.3132362654692 None None 85233 FTM_20210120 72266366.94006984 1995.6808256198622 0.028392773316934072 7.85214164175003e-07 10217009.276317691 282.55571619300844 28865 2858 149161 FUN_20200422 10416109.112044824 1520.9843337184254 0.0017220395421380565 2.5155940847455405e-07 207967.82595409802 30.38040764952289 34538 16915 234333 QNT_20211204 2561864727.0091543 47713.89038107766 191.13129844026648 0.003558559605846325 51702942.07164465 962.6262295134682 65667 10613 75629 OST_20190811 7042588.044259995 621.7848478441168 0.010701556452341788 9.44977807089613e-07 217346.11284661174 19.192278619648686 18059 759 571534 MATIC_20200105 37828678.669587284 5145.516181164595 0.014849690058685538 2.0195199695159733e-06 10536227.143296752 1432.900015768243 28298 1405 155878 ADA_20211204 50422314444.39137 939171.2165102484 1.562574478528866 2.913959302412124e-05 2276864446.302769 42459.99422620686 741618 667471 6716 STMX_20200807 22559205.925232306 1916.3388598106687 0.0028672047847942044 2.436466638170138e-07 3474822.9836922227 295.2802784863025 20636 91 195986 BTG_20200621 150241484.19805893 16059.50780071518 8.582198734547143 0.0009168884329789269 32576185.54597083 3480.3118223586607 75045 None 228624 DASH_20190702 1376987826.9913938 129765.64094347777 154.57521252186805 0.014562009035037146 365068018.17209876 34391.82578043116 320208 28159 107234 QKC_20200707 23660004.36688872 2534.6016524776646 0.0064047600134698335 6.857871082969647e-07 4883389.534824108 522.8869748017854 49896 9207 550084 PPT_20210217 70096772.38853453 1425.3215311340373 1.9470607111018117 3.956669783122188e-05 7317347.42935074 148.6976102041277 23709 None 693522 ENJ_20201101 117077748.67158765 8484.672836483453 0.12683996582888446 9.192319609985072e-06 3674087.8014765047 266.26772662397246 66886 15933 82312 JUV_20210613 19906630.322753605 555.1480364830234 8.96448215815876 0.0002512727719415347 5575397.01576594 156.27734409076143 2513904 None 34079 IOTX_20210210 96359097.17966686 2071.2058680455975 0.015825691339625095 3.3979283074910603e-07 16525376.410488492 354.8157429087966 31672 2082 512659 BLZ_20200317 1771863.7616785143 351.71138265886486 0.008165873625765726 1.623812088952537e-06 115030.05036165794 22.87412161029666 36101 None 563457 MKR_20200901 614883659.8220131 52607.54110720093 680.6968362866439 0.058314695918528614 45274437.05222016 3878.620979033022 56189 16084 27612 SFP_20210301 160646032.90705967 3545.1057159120487 1.4702198120357577 3.257289581451648e-05 29771139.644033354 659.5831602634765 125177 None 45661 RUNE_20201226 201563198.17482373 8161.815904680696 0.9210186735991907 3.7351503084788884e-05 7913843.623688897 320.94241191399493 25121 2002 305720 TNT_20190410 9721919.257911492 1879.2878480234208 0.022683577465120064 4.38592765173685e-06 686755.4327340827 132.7859173466127 17285 2506 1084384 1INCH_20220112 945722485.6364763 22086.580861276183 2.1489762948844597 5.0226354769500245e-05 56960629.01474835 1331.2965655316632 791936 None 4469 KNC_20200501 124635680.29552111 14402.990673187816 0.6840902721978557 7.936354476621599e-05 118331878.74549049 13728.067387825684 105483 7451 115849 VET_20191017 211037602.06899542 26352.449198331495 0.003346335529411032 4.1797015810437973e-07 88783941.90843661 11089.455289359656 113807 57587 368784 BADGER_20210429 266028437.9914033 4860.041192271679 32.91116908419702 0.0006010553971118194 36099405.87164098 659.2820411870003 32231 None None GO_20200404 6558372.988487216 975.2675430932258 0.007367131836401197 1.0948554521679057e-06 1078928.8397069685 160.34342114222449 10707 677 675555 RIF_20210513 200747380.86992887 3892.098156404076 0.26918181238316097 5.366218485833057e-06 5505844.331047335 109.76062375020109 42934 3241 493972 GAS_20210314 187300869.5071932 3049.6349535338495 13.606188735864048 0.0002217953572442332 65953454.31876732 1075.1114986053633 353973 106077 102810 PIVX_20190625 45443450.12939283 4115.918670621913 0.7527500539773119 6.815437247128793e-05 1869790.2082319928 169.2917557716325 63483 8623 321690 TWT_20210718 107580496.90932699 3403.8382440422533 0.31003033149787457 9.808752317099847e-06 4460446.284317941 141.1197821039744 928881 41104 2945 DUSK_20201124 17052372.226380598 931.1134006396143 0.058102430083334086 3.164754937509738e-06 2754559.1502357083 150.03683424028745 18142 13348 1043988 POLY_20210826 314879186.92031986 6423.8826352615 0.36115224374922555 7.369828557847798e-06 52578675.396444485 1072.9431428912642 48906 5990 188790 ATA_20210727 65410891.19910151 1747.7667366421758 0.3785890362165199 1.0146568612510603e-05 30693161.657654606 822.6077379487588 None None 91785 NAV_20200621 10408918.454212606 1112.6255487241172 0.15101830162245686 1.6142582099110215e-05 612706.6665284052 65.49317242246191 48546 13846 966957 MIR_20210707 298116178.14357924 8729.437990346261 3.830632733808065 0.0001121465381318272 32845363.484661777 961.5888717226497 49132 None 16054 FOR_20210711 15436628.138146898 457.78116470421185 0.02737794921864394 8.121810212386947e-07 1902216.677991078 56.430241425679505 29234 None 170276 SC_20190207 91789926.48642434 26951.579011363312 0.002336951798123232 6.861814083943211e-07 5186459.819043691 1522.860807856633 108898 31227 207807 QLC_20201208 3890822.8485717 202.57325781959156 0.016310084061739602 8.495636253646952e-07 640000.78964893 33.33651678509009 None 5608 940522 QI_20211202 237528073.90491733 4155.592267773057 0.2511261872910945 4.391615237074382e-06 111562556.87537245 1950.9706651698025 None None 875386 PNT_20210108 11899260.397144653 303.59150411315926 0.4146863778329192 1.0508388141629108e-05 4295408.453555852 108.84808778306714 None 114 1089026 BLZ_20190325 11259608.404359762 2819.5094725628987 0.054840535291118375 1.374320961481872e-05 507939.63186986087 127.2912599303513 35072 None 1348267 ONG_20210221 0.0 0.0 0.4588374454625809 8.160990759077977e-06 27712899.32724411 492.908147653223 100168 17005 213342 STEEM_20200721 74310841.775943 8110.954840038653 0.20680876917144173 2.257161842586957e-05 3579106.9149424634 390.63254383812796 11574 3862 194139 NANO_20200711 134039895.84862213 14437.416685525559 1.0062347261224533 0.00010837379525857376 5606597.473623781 603.8434481834788 None 52130 214640 PPT_20190623 31454661.798159625 2929.9313144388893 0.8669662723964573 8.082462234063471e-05 1551947.048495176 144.68329170471415 24049 None 671795 XLM_20200322 800787270.3233215 129952.53305969955 0.039479705926800585 6.406804877865142e-06 311205550.3521079 50502.73782969309 281171 106835 82721 ROSE_20210727 97833115.01259737 2611.711525163697 0.0651248871518138 1.740124762175371e-06 7198225.866368306 192.33524419934287 None 1674 227884 POA_20211120 10461746.00492137 179.91472240232426 0.035710257586657884 6.122e-07 557.4371209277296 0.009556442 21247 None 224382 APPC_20200309 3723701.0806885143 460.939866860836 0.033693469769553244 4.188348199319055e-06 199892.15573966186 24.84807757338071 24919 3234 683942 LUNA_20211104 19277101000.378647 306493.37745421403 48.126222772244276 0.0007631159185780425 1361276140.5858011 21585.144908995797 192903 13772 7946 PERL_20200511 4371774.05237253 499.2574048112413 0.012443122754843028 1.4175445471810117e-06 2549122.034861542 290.4008995017368 11656 477 557708 VITE_20210724 35118881.11269519 1050.6460877826992 0.05393833411793873 1.613045818956808e-06 3629312.5131617323 108.53593220440527 None 2404 593813 DENT_20210909 488344079.169473 10535.708122260623 0.005098627344286491 1.1012885275211438e-07 86142742.62331903 1860.6579334843277 111768 None 145844 VIA_20201226 5955382.702577586 241.51789943319633 0.2570005846828051 1.0422544522424956e-05 112894.43831983699 4.578383785293325 37885 2134 4839859 VIBE_20210131 4481561.516446955 130.9921055224872 0.023573497923563322 6.900004782615844e-07 907809.199172074 26.5717367711 18510 None 1388875 DOGE_20201130 434295427.5891698 23941.65165922452 0.0034495342068635434 1.898504928611583e-07 84050075.99358939 4625.826965464262 152779 169258 145564 VIB_20190812 3270799.7720616977 283.13339121887526 0.017915920076404468 1.5508730468209915e-06 235171.8896623152 20.357410810711794 32471 1120 2890790 FTM_20201106 36434978.11462408 2344.366907371453 0.014418343327671779 9.254019960841267e-07 6219975.088520955 399.2121169332905 27806 2803 103373 ONG_20210804 0.0 0.0 0.7696951648187293 2.0037327064120034e-05 3746116.61288347 97.52193754570031 None 19757 173647 FIS_20210523 48199000.6364267 1282.2522156178468 1.7863139838063467 4.756391782179336e-05 91118640.54292366 2426.2025433973154 21131 None 263820 ZRX_20190213 139949106.56050485 38551.055408047854 0.23984317012228015 6.600518784761801e-05 13913209.200188935 3828.9353261694923 146428 15562 202840 HNT_20210722 988284929.5127453 30711.064446006443 10.83449176766889 0.00033547094596434807 10478730.04391162 324.45541108130874 64385 42791 2371 TWT_20210310 203780224.79252166 3728.3001446234734 0.5885760218560078 1.0749583277769145e-05 24629261.089752894 449.8217448943049 387312 12695 8428 VITE_20200229 7366442.986009669 842.8282612224677 0.015151322103472854 1.7389150450284555e-06 3908880.1527945907 448.6216094204508 None None 469368 POE_20190901 6079548.002223176 633.4744995272965 0.002415227364007314 2.51660969713485e-07 109647.38180795134 11.42499743235362 None 10742 694514 ORN_20210527 216924333.03890967 5533.5043366286045 8.604599269015928 0.00021948920648869947 14030842.195781745 357.90375863401476 68949 None 50279 STORJ_20210401 409310374.4331306 6959.0370504107295 2.8286694872897176 4.813803806504973e-05 644007496.1468313 10959.660541110905 94768 11356 70227 REN_20190929 31855306.784891117 3889.0256838533082 0.038631392916208804 4.716277895820563e-06 1892498.67944588 231.0439519770788 9777 879 293718 PPT_20210318 98358083.37787436 1671.1062367871082 2.7155245190278845 4.607091223886702e-05 5524172.4621504955 93.72173328311901 23992 None 629380 WTC_20210616 21726509.237910144 538.3094100983247 0.7444979726515707 1.8446141535620906e-05 4315913.770812763 106.93374488100373 65223 19811 517910 OM_20210527 58163278.63749224 1484.5344484306888 0.19562562834706876 4.990007206155641e-06 15129225.614520747 385.91541137991317 42421 None 60730 OMG_20190507 223630022.6096951 39091.769154241934 1.5945153047382623 0.0002787401967853183 104050666.51040615 18189.291236382935 None 38605 None LTC_20201031 3543136809.2271194 261611.59135522845 53.867732810767635 0.003977386158678196 1860500687.1564305 137372.2132932999 134807 215608 153854 LINK_20200325 844207332.8590156 124913.37466439181 2.314514463783025 0.00034252295607121823 344047275.91622305 50915.25320712885 46872 13757 84663 EVX_20190712 10172057.474541977 898.1133937315834 0.4828475456692669 4.25864710898403e-05 786368.365872207 69.35657844706168 18218 2913 1053022 NXS_20200217 14064397.547457516 1410.8658042534469 0.23472655234205453 2.3594316302004985e-05 1268638.7200970731 127.52141986613357 23208 3538 558466 NEBL_20200308 10112150.595289754 1137.6816256027582 0.6289228722917459 7.066206244090714e-05 188730.50198649475 21.2046454397147 39672 6027 856581 MANA_20200117 47999707.78179849 5514.661318132179 0.03618594210571719 4.152842298884396e-06 19758797.323187113 2267.5979820862785 46051 6446 80671 ENG_20190613 43125762.058170244 5305.636967090346 0.5557925491710191 6.831872718982877e-05 3706103.868706524 455.5590022230052 61805 3458 351204 CND_20220105 19516231.74365759 421.8920709304919 0.01005332687266846 2.1853862627001914e-07 108057.80699150951 2.348954231447094 38314 6366 103780 ENJ_20200314 46429867.72705866 8380.530058265651 0.051046545012878024 9.175984482688458e-06 7910280.379472161 1421.9299268430384 53818 15243 23333 NKN_20210704 144241132.9778003 4160.774811145286 0.22148704736533087 6.387413662249355e-06 8924974.38851539 257.38526935346243 None 3257 105019 RENBTC_20201228 365706577.5142095 13813.443211591235 26461.543704222833 1.006207013045702 30996634.331199437 1178.6550018957805 None 2090 102602 RCN_20210217 47461406.66769872 964.5326924747854 0.0925407033537904 1.8815722410847864e-06 1161312.3872571245 23.612238419424237 None 1136 1423891 AION_20190704 42131439.91221487 3510.8857249089324 0.12872248719145762 1.0726667393682797e-05 2247919.737400568 187.32303793140858 67487 72582 281038 FUN_20190903 16040674.98014776 1553.255252451867 0.002669915225766552 2.585339989218401e-07 103394.49721246806 10.011925686958005 None 17411 352374 SYS_20210916 183314057.2358796 3803.356436501255 0.29607497224626966 6.142893067555627e-06 4063910.6910064584 84.317051932995 75616 5663 349499 XRP_20190812 12985212682.646797 1125184.4370286716 0.30305450289595276 2.6242349953872708e-05 1150952645.8478682 99664.25782838564 937460 204458 35107 POE_20200501 2613688.805694205 302.0397963229302 0.0009509025118608025 1.1031730333762901e-07 40124.16191315068 4.6549349546666665 None 10358 1011278 YOYO_20190708 5483499.282815303 479.49592616080673 0.031264769901211215 2.7338983788995833e-06 431352.599324514 37.71894614141154 7599 None 1328336 DGB_20211221 496568267.5693028 10536.222378197863 0.033232253780886574 7.051244286673242e-07 13345984.894267553 283.1760986065174 236911 44289 105962 SNGLS_20210624 7197972.114526917 213.51350283900135 0.008087609117445974 2.3990281217865323e-07 160918.8513918383 4.773337140909206 9505 2138 2122104 CTSI_20210115 10069742.665250858 257.8290367864979 0.048420512035536455 1.2344238085520069e-06 2016216.7424241856 51.401066313032224 18946 176 553409 STX_20191030 0.0 0.0 0.211245267369952 2.2448540038169215e-05 1945305.8224079954 206.72309578577187 None None 60038 STEEM_20200315 44413329.1261058 8592.399594928036 0.13106492592247063 2.5231570099998286e-05 1287124.4578332074 247.78689459948743 10939 3836 211376 ONE_20200129 20054859.131133433 2148.7093988254132 0.005116504819935959 5.471965422614854e-07 8533724.093449788 912.659028162061 71100 None 309943 WABI_20210825 14406456.86425864 299.7924278006855 0.2436621754937973 5.073136460641213e-06 1056127.7381395309 21.988969459835513 45436 7885 850798 ATA_20211120 174427175.03444847 2999.1822858856453 1.015715677308636 1.745831165598151e-05 20025636.716016706 344.20440159402193 151601 None 239445 CHR_20210104 10079294.534445018 301.2299442307862 0.02216422905937198 6.733224638519092e-07 2102037.64182708 63.85736044836609 36342 None 675741 BTG_20210821 1272637455.7848573 25899.18589164917 71.17626037746015 0.001447710891749653 22178556.494945824 451.107400567872 101554 None 217752 SC_20190922 78499579.19530009 7857.210820838727 0.0018605227828030404 1.8630508194511886e-07 8596256.05295576 860.7936452969994 108745 30570 208870 CELR_20190625 48493494.16410914 4392.168232505159 0.0163681423161478 1.481979924389896e-06 37895633.85400253 3431.0899495453 15800 None 371624 DCR_20190608 265546688.89161965 33076.20949807203 26.825906304451586 0.0033414059900548593 19739856.885328006 2458.775308125012 40426 9481 369344 BEAM_20200913 25930155.60545512 2486.713736529219 0.3632833894291078 3.479238408462129e-05 24782759.0909676 2373.494902490847 15941 1552 271885 ENJ_20190507 123898349.11072718 21658.119091109198 0.14288282777766964 2.4977720185632144e-05 8888238.103553042 1553.7761097454843 45686 12400 19139 QTUM_20200422 126607839.37959458 18487.569412999186 1.3175748901391822 0.00019247430263582521 309541500.7766589 45218.51846504191 179110 15122 107639 MDA_20200325 6147780.133752624 909.5099371924342 0.3135892511293399 4.6407796956869846e-05 177155.78653129117 26.217128748739597 None 372 1815630 WAN_20200530 20461531.849964976 2169.511112339024 0.19064126454383998 2.033678870668903e-05 1561078.9272050448 166.52917390680201 104487 16169 906142 CHR_20200625 10134722.960503632 1089.3663201992397 0.02981397051732529 3.2075567166549616e-06 2985454.5584747465 321.1922013453089 14718 None 439287 PROM_20211120 278961056.21640354 4798.897928558544 16.970527373690416 0.0002917203724401811 7507515.613089116 129.05286927889813 18153 None 591472 TOMO_20210727 219044769.17070326 5852.835122314883 2.614020586533255 7.005526599109873e-05 16024801.435726162 429.4617008059494 50585 2213 130894 GXS_20210509 80977240.85721438 1380.5456482891268 1.158979022791804 1.973704523122928e-05 18415910.933489103 313.61712327890694 None 645 810772 ZEC_20190803 473163138.28985584 44955.81064122917 66.57921365522367 0.006325697373456836 221961489.36895904 21088.58205476315 90 15355 186923 MDA_20210809 14256133.72923825 323.34482799032173 0.7243335860771534 1.6466444787608774e-05 536755.4837496307 12.202187924871529 None 390 1488938 ENG_20190901 26223328.552832436 2731.806965682115 0.33518193463602936 3.4926905125461056e-05 160867.73722317786 16.762872980737242 61547 3473 285692 STRAX_20210616 136147800.89764717 3371.117156872209 1.359305771572279 3.366562596550677e-05 2800646.9173008413 69.36300393269256 156694 10736 142794 ZRX_20200718 278545233.4600781 30424.33373602582 0.3967977389313161 4.334800155412123e-05 52226281.050348654 5705.438035594143 155116 16122 62408 BRD_20210805 10190819.020347975 255.60589480809764 0.12081072456316316 3.030171892241839e-06 269115.59152382746 6.74995124934616 798 None None MITH_20210610 42836236.66484982 1141.2064240580496 0.07080369999722509 1.8881414642268848e-06 73380776.13767746 1956.8650523649144 32192 2729 247942 RDN_20200314 3308515.772884051 599.5895734514179 0.06570328462708164 1.181063909511734e-05 1603055.5610273355 288.16079421561886 25174 4328 1576973 TORN_20211207 53915702.41033909 1068.3983572263292 36.551780798971386 0.0007242599280492829 4569145.853066316 90.53592395371379 29968 None 84336 DOCK_20200325 2258013.800988668 334.52031917737565 0.003989562494066608 5.904858828337382e-07 338366.6662563358 50.080864742194336 42973 15015 378260 OAX_20211216 11722974.5249062 240.2919017815208 0.2027502497371726 4.1546410084983464e-06 282687.25034084724 5.792663853031959 14812 None 1057415 WABI_20200607 7869862.522614263 813.8836988098618 0.13316926347239497 1.3772069386377796e-05 3019925.4321056046 312.3139792784599 84 7680 1240690 ETH_20200523 22960218146.427925 2507597.8746967143 206.22772963994552 0.022570131045764063 10636959193.321962 1164138.1270155795 458009 462301 19199 CTSI_20210108 9834681.221661005 250.91691121189027 0.047546237643564096 1.204512107335275e-06 4573231.725717264 115.85591744548637 None 172 553409 ARPA_20200730 0.0 0.0 0.021605276644358417 1.946569627220183e-06 7075426.294637742 637.4743610780487 18926 None 680510 BAR_20210804 64053875.490529306 1667.173548992915 21.69911484693574 0.0005648889080553756 5784172.198712684 150.57824894624585 None None 44064 ZEC_20190701 712233610.1875193 65507.672389632084 103.461581405588 0.009535865347763952 583800822.2202818 53807.85751556095 62 15264 191872 NULS_20210318 100123616.87993112 1701.1026940707327 0.8992453585546336 1.5256372647303505e-05 55605092.63203625 943.3821439409021 None 5203 464620 SC_20190531 139065596.97589505 16731.37799844611 0.003404998728094842 4.099126936981253e-07 9120262.778821124 1097.9479821988307 109712 30916 231062 ATM_20210106 0.0 0.0 7.358973229829842 0.00021576433977985246 1879986.8307077847 55.1210209161016 4800651 None 231684 APPC_20200412 3087669.985974826 448.7233034862096 0.02827552917624467 4.108736486830091e-06 1939034.4331343104 281.7624198995435 24748 3221 735722 LPT_20211225 1090959492.5321214 21456.12659015501 44.192383220037456 0.0008694199240259178 31947287.70188088 628.5157401063076 23262 2290 79616 RLC_20210324 141676348.8843572 2599.930906449607 2.00653166803994 3.6795190241361844e-05 9111308.50286247 167.08050764932614 36362 4192 371264 ALICE_20210809 201102760.2250942 4571.599520284246 11.549455493062197 0.0002625571257782105 149981840.898122 3409.5807450654947 None None 36136 SNX_20210603 1992941771.2411308 52992.6829201448 12.87375777669891 0.00034231555266489057 64433694.44177698 1713.3036138833847 132905 6747 40897 GRS_20190325 33130692.131835904 8296.713249574692 0.4590417559555348 0.00011503729902227559 6880936.415634853 1724.3841757945147 38663 107063 7284589 EGLD_20201111 124071215.47900589 8118.121517953235 8.572690528790492 0.0005611796028809776 5182840.3533628145 339.2755496687697 103310 2791 47014 WAVES_20200901 361124676.69773 30975.71101897771 3.6112467669773003 0.00030975711018977714 96152434.20396301 8247.539445126898 144279 57011 140835 NEBL_20190811 8580858.085997052 757.3190930012533 0.556557035116327 4.9145565778839114e-05 173672.80820225246 15.335801869282882 40452 6144 850260 PAXG_20210210 122935628.99160789 2639.4271509240575 1855.1148831803048 0.03982933842988454 13653152.01523188 293.13333485691044 15023 None 71165 UTK_20210427 202239183.5340457 3754.0108586338 0.449037838842453 8.333180306722218e-06 18090411.724073756 335.71928617008984 69344 3758 75588 REP_20201130 83957366.76334582 4628.365627591301 15.20073285741195 0.0008365960305853608 6233206.749305475 343.0542509497586 136498 10436 142308 BNT_20190706 47758963.82046523 4345.358223535238 0.6946613239974081 6.320389002054798e-05 3003717.3110393398 273.29377931576755 790 5130 145805 ATM_20210204 0.0 0.0 4.636730619404728 0.00012361476796266942 1435720.1225536284 38.2761528276117 None None 233968 CND_20201030 16446559.503963301 1221.4313405924545 0.008523262472915957 6.331304464057458e-07 24312.484731273154 1.805995575057968 34108 5911 293676 RLC_20211007 285965295.1126393 5151.26807538769 4.013545458715396 7.234278775654597e-05 24797110.993410077 446.95946664223 47724 8098 585480 KEY_20200329 2607034.1245559216 418.0294842575318 0.0009538757361103059 1.525696555050479e-07 664004.5763494628 106.20560481024515 23410 2755 250395 MDA_20190704 17129728.81615003 1427.449916202512 0.8726795331528728 7.272189418995676e-05 1286717.497999909 107.22439359136844 None 363 2408870 ENG_20190228 25024028.51342278 6555.502876938587 0.3247013559725663 8.516370849360628e-05 2235669.2465639017 586.3784690156177 61125 3206 251266 OCEAN_20210131 233203232.85440713 6816.325598598135 0.5575171670034107 1.631862666791066e-05 56634329.550692245 1657.6969019494127 None 1479 65645 APPC_20210825 10551838.634776259 218.87879975931617 0.09257144894927849 1.9297491013486973e-06 570655.1597977257 11.895906289670767 24985 3117 837968 SUN_20210509 0.0 0.0 0.00045757375811557955 7.8e-09 18.545893677234304 0.00031614131736525 52 None None FIRO_20210616 86629375.81455277 2145.0801103967856 7.228902080472457 0.00017910666364962565 5600787.479123592 138.76773374842315 72813 1029 230087 SUN_20210127 0.0 0.0 0.000305964628520702 1e-08 188.30473974277504 0.0061544610778443 41 None None COTI_20210513 224466514.96732107 4351.9656659671355 0.32919444743833937 6.514474647540402e-06 128561518.01243001 2544.121737952935 102103 4441 74171 UNFI_20210727 35491006.5414577 947.9842815245913 8.303022844292549 0.0002225316555140627 64950031.87511106 1740.7441108986973 None None 243649 REN_20190905 43133353.94622501 4083.0859036172887 0.052431755897272975 4.963659144096764e-06 5529468.322500023 523.468946085747 9577 880 312063 SNGLS_20200520 4946809.002212022 506.7874168200798 0.007641431846946008 7.82759752330064e-07 162124.094767079 16.607387045836628 8780 2123 2556875 NEO_20220112 1686936872.4764671 39351.183456097926 23.865543179290768 0.0005577908147908781 87141964.25630908 2036.7014854781403 433294 115909 79106 GRS_20190608 30925603.362729494 3852.059839079408 0.42535758169435245 5.2982082143219305e-05 3848889.712335888 479.4135562057603 38617 107044 6997430 ARDR_20190302 56435317.43432193 14773.60825963819 0.05662071971055764 1.480751135558117e-05 734263.1692656073 192.02529166824004 69333 6602 910933 FOR_20210813 23885256.80440049 537.2379989113048 0.04241728622612319 9.54004442508919e-07 15315741.392938655 344.4653496051023 29501 None 175113 CHZ_20200113 30154789.832250226 3696.720997569145 0.007039031004733645 8.620086982025754e-07 1371049.2669106096 167.90043870334264 16427 None 294591 RSR_20210220 566117823.9619709 10134.253068062928 0.060753389252940715 1.0859007911717822e-06 277949443.5757029 4968.04416010425 58007 None 119341 SKY_20190813 15091249.615507433 1326.009654803101 0.9377433086039956 8.23939347606933e-05 292584.5906413158 25.707670161008934 16373 3804 513361 KEY_20210727 18718267.349257864 499.9752036827588 0.006678547922257404 1.7898384333251697e-07 6362589.87008147 170.51622624440154 32234 3873 201421 QLC_20201015 4432999.145771837 388.95291593354807 0.01862293594953202 1.6301998066224405e-06 164550.99679335897 14.4043347342772 27652 5612 940522 AKRO_20210112 23866611.450666297 673.1770180817788 0.010111254408662737 2.8444966006940066e-07 6281316.910077915 176.70591478037423 25397 None 214700 MITH_20200316 2169693.2558413856 401.60300798228275 0.00348502419980251 6.48544933942778e-07 4691525.317508584 873.0685363122867 93 2084 1254611 ONG_20200305 0.0 0.0 0.1306283937231294 1.4914590420426943e-05 5607485.1110126 640.2386291043164 84539 16483 345761 BQX_20210427 874617759.7005103 16235.826357793603 3.9097214806474314 7.253090618208232e-05 7769023.2724043755 144.1264552696127 67524 4517 20896 FET_20190905 16759117.80049869 1586.450191969517 0.04927878101351732 4.665170330494486e-06 3315053.1471114163 313.832592199762 16234 304 439975 ATOM_20190806 914038672.1248147 77378.4713761908 3.7668940256415455 0.0003191396422815837 124641554.44338028 10559.909789791936 None 6392 108331 POLY_20190207 36145612.11343392 10613.1615753433 0.08350355904166747 2.451851586976047e-05 3425579.0411610305 1005.8267581375223 32600 4980 219642 XEM_20210624 1010694740.8179554 29980.245960869684 0.11290355774709959 3.347155567585351e-06 110558316.98005776 3277.628213023897 370423 21641 60595 ETH_20210202 155894407853.50046 4672087.933126128 1368.6644548123775 0.040980158223668316 28544048877.677177 854657.7177761848 640113 597348 7116 GRT_20211002 3505733086.1966295 72789.99715709868 0.7075489034544002 1.4691105456558818e-05 142864659.9070231 2966.3529608519166 146919 18115 26654 CHZ_20200317 24937038.82893934 4958.816039638801 0.005183658363852158 1.0293698899758391e-06 2028556.369561059 402.8303372587789 19726 None 252561 HBAR_20200704 188443513.8800263 20781.66062383027 0.03969082526053622 4.378482295997816e-06 8057420.109537469 888.8520475310969 40172 6563 154427 WPR_20200927 4310657.976211647 401.45698351483446 0.007077248224028716 6.592714734842389e-07 131688.5042997658 12.267264270295836 32882 None None POE_20190426 11346063.273665128 2184.3002783610996 0.005042757390707838 9.691784633208833e-07 411161.12422982 79.02194686038803 None 10917 725975 CELO_20210610 359282818.905852 9571.705941327253 3.027350219584294 8.082923873528329e-05 31995248.319426533 854.2624332247627 30726 None 77496 BCD_20201111 85713202.91648737 5603.789187658933 0.454891113886913 2.9777770909590955e-05 2355339.0095236474 154.18359097129826 27857 None 3405204 XMR_20210916 4836592787.417896 100330.95359156553 268.7945746839353 0.005575912048753662 239682110.09361246 4971.9990335115535 439827 234776 48390 ETH_20191108 20266199492.292927 2198307.16005464 186.81653195658674 0.02026391567097979 8952840250.325546 971111.0571868959 447885 447389 23518 AERGO_20210602 49904042.38555499 1360.077847472745 0.18900414275620228 5.152516002570869e-06 4538663.614236459 123.7302873980104 None None 377537 FTM_20210112 55998547.46865873 1580.8522854860958 0.022150291678375435 6.231316791865054e-07 18973958.87854669 533.7751316542327 28621 2848 142400 GXS_20210127 25133877.623875543 771.2809908297158 0.3593824488235617 1.1030548735913905e-05 12167321.911062866 373.4523980368985 None None 451509 CND_20190621 30005683.169249166 3136.84396970097 0.017172048627648956 1.7955954600442213e-06 1074688.2795823908 112.37479217673713 36278 6152 632693 DLT_20200501 2598690.92079515 300.2909858610191 0.03156129812797372 3.6615291850472e-06 172800.8394864883 20.047189263728 None 2572 8451664 WABI_20190719 7849882.1990054585 733.5929345446235 0.1381401614300855 1.2890713218262786e-05 438327.53032230906 40.9030540471316 36460 8006 1256578 GRS_20191011 15038791.608977335 1756.3604707048326 0.20443846324478168 2.38760962230791e-05 1386808.4595480731 161.963515561669 38250 106961 None MANA_20190819 49623902.618649065 4815.326976853809 0.03879074303427352 3.7622102721290977e-06 11598889.580040846 1124.945234608293 45638 6353 132060 NAV_20210221 36510722.06453733 653.8513185248639 0.5178452691652418 9.209823355223569e-06 11179160.309813697 198.8201840273202 49488 13761 541634 OST_20190419 16812602.779041257 3185.617921103161 0.02836485608324025 5.374343694496095e-06 611134.8782053733 115.79289771578806 18185 750 1002831 GRS_20190601 30900052.5549709 3603.0952751272944 0.42518525422293346 4.957752407266374e-05 2898566.3444530917 337.97913095779484 38693 107039 6997430 GO_20200106 13872426.374428062 1889.2634002129437 0.015759548773166418 2.145910699042634e-06 3412555.702954365 464.673189534308 10445 676 1082052 HARD_20210909 80030969.83592208 1726.6164880440867 1.0572223790737278 2.2825666344558137e-05 8513855.32219792 183.81603032334021 36110 None None BAT_20190430 470681935.6428855 90433.8110509084 0.3754104175248963 7.209922858393859e-05 49907041.171381 9584.867657874212 None 26147 68088 BLZ_20200526 3871817.3748956854 435.68377751827717 0.0172345007034886 1.93868863985706e-06 1118338.7493104273 125.80060577915144 36037 None 859932 GLM_20210723 318195476.0116817 9838.32618766935 0.31910364812253555 9.856931425433213e-06 7705492.643840354 238.018314852824 158640 21017 185713 IOTX_20190410 40201596.22214309 7771.137493241006 0.015898580016543606 3.075561279937862e-06 2432090.7193255234 470.4850394104558 14947 1680 990626 CTSI_20210819 284312209.77722037 6310.972910689321 0.7424846242850794 1.6483379474641435e-05 37948245.47102464 842.4623352948702 None 4295 202161 SAND_20210523 306374837.026102 8151.42944973028 0.46680265201487425 1.2429485062933758e-05 957148317.0885088 25485.846446915053 118352 None 20969 QLC_20190830 3684828.276559536 388.2991848048432 0.015353451152331396 1.6179132700201796e-06 167322.65406213413 17.63209715497843 24803 5748 940522 XZC_20200718 55603138.22537467 6074.795351813377 5.263047845502706 0.0005749060432415201 5354413.6772654485 584.8863380000167 64395 4131 551795 SC_20190708 129290383.82701956 11318.076398584744 0.003127312664917264 2.736658772693116e-07 5582233.082313823 488.49183860981213 109615 30836 228253 VITE_20200807 16146976.81202867 1371.6386665340344 0.03061790447572251 2.602156639966687e-06 9357911.721049678 795.3108659170211 None None 383254 NAS_20190903 31118886.51392266 3014.6006569501837 0.6832454695393947 6.618523536928807e-05 8117402.456802137 786.3238267102914 24174 5096 765651 SAND_20210813 562694702.1119517 12656.495829492986 0.6380010302755973 1.4350665231486802e-05 195854748.08510584 4405.394020370813 154223 None 28891 QTUM_20190213 158471058.3615946 43612.87582617598 1.9507380371582876 0.0005368459336093698 186011117.6785367 51190.52903552604 174243 15203 244025 OAX_20191113 3726744.837219297 424.0012900149337 0.0714455367314611 8.11789581344902e-06 80822.81875162717 9.183375925092099 12196 None None SRM_20220105 488984214.74752384 10557.371655357409 3.624414470881371 7.891609834293131e-05 79462726.57002932 1730.179700742935 183488 None 27670 RLC_20201226 54918515.48312002 2223.862022330826 0.7814958207082419 3.16932157779859e-05 5031074.40134405 204.0329869613295 33729 3894 508696 1INCH_20210809 947657640.3308585 21542.77350087637 2.485504256995029 5.651427612539822e-05 76620591.88233292 1742.1645021701804 None None 4437 NEBL_20201030 6001490.142151184 445.54144571120787 0.35194143703671593 2.6153479381476828e-05 4609744.413353319 342.55942262330603 38511 5926 520032 DENT_20190227 16452839.359475497 4318.410637105672 0.0008792727945952033 2.307845415697661e-07 1143498.5802714876 300.13642780239536 42445 8826 243701 POND_20220105 53682042.43215406 1160.3776552405986 0.06632791508553151 1.4415694907450734e-06 15868631.33818595 344.88849479907816 30553 800 7248359 NKN_20200316 6254456.9763902975 1157.6791918634885 0.009476299583805988 1.7634902185039927e-06 806012.0740228661 149.99466785162173 12211 997 277366 ELF_20200229 39438352.20247371 4512.32133003935 0.08595663263212595 9.865230287047174e-06 42350931.13817405 4860.610237456093 83301 33448 876867 XLM_20210206 7804704897.832156 205546.9321789358 0.3498012968698648 9.208548775335867e-06 2067019575.5301666 54414.465444148474 361148 138006 30646 SCRT_20210104 31727253.574897587 948.2011654983994 0.5704045264137493 1.73281994193607e-05 1083567.9912406153 32.91748463972371 None None 361970 CMT_20190920 17380925.302062526 1695.9263184174465 0.021898434654522844 2.135331999033074e-06 2879777.419010502 280.80915233984297 289672 1648 632576 ADA_20200506 1533996522.1669567 171055.32748697686 0.04943354443626274 5.493746099721552e-06 170783705.1971681 18979.87136108888 155316 78533 51955 JUV_20210702 16706814.656872917 497.21635496005484 7.5356119180223295 0.0002240966484576951 11738373.62942098 349.07983814906925 2538362 None 41859 FUN_20200305 18886406.92536643 2157.375293413044 0.00314068932385818 3.5857419212506153e-07 290075.95852527674 33.118128460833645 34995 17035 312525 CELR_20210220 83601362.99993944 1496.7015050325326 0.02117533445138302 3.7901823773417907e-07 28459897.205359627 509.4049451562157 30825 None 384776 ZRX_20211111 1017444528.6817025 15696.349011424913 1.2097553097814033 1.8624141252184886e-05 224066910.0272455 3449.502348571689 241224 20635 50854 XLM_20190714 1872378101.162185 164508.63608823976 0.096667545298037 8.480811897514437e-06 331747640.0984764 29104.797524807214 274947 102909 66272 ELF_20210324 172844083.54911214 3171.89621524692 0.3756660333047131 6.891444024775561e-06 45127181.10629148 827.8401958626462 85197 33335 211873 GRS_20200801 15548462.696921267 1371.8860591782318 0.2058479267675389 1.816007625529102e-05 2106398.757742235 185.82826004289615 37655 106856 5311872 CELR_20190702 54764727.62110569 5159.164138456762 0.01843871920844472 1.7387664125633592e-06 22209332.010290872 2094.3342164067435 16484 None 482178 GAS_20210617 106510207.41828376 2784.6602818465626 7.643900897398879 0.00019982664259033314 6113093.144425991 159.80830930295144 403224 111967 92050 STORM_20190520 14613225.225091105 1786.24682020212 0.0032262962244263287 3.9469610491156617e-07 1188863.2692143624 145.44222507490787 26985 2571 8080480 GO_20190706 11772868.529871283 1070.1310612221253 0.01587631447096833 1.444819647073468e-06 538197.6675637441 48.97853122821049 9987 678 942776 ONT_20190826 523480341.01399916 51854.033561837634 0.8035387778574206 7.959474250650741e-05 92445020.80348052 9157.165565153815 81489 16281 248344 GAS_20200412 15707391.452738378 2282.7156444306884 1.1274823317789775 0.00016383522889921776 5288293.71389386 768.4455770894853 321443 99281 235469 ORN_20210110 43460370.12223893 1074.0060639443152 2.5987955224022814 6.430819435942457e-05 4743846.8572531855 117.3883143470955 None None 137368 ZIL_20200629 197010153.60813874 21602.373587339505 0.01795981041252951 1.9678182751022186e-06 83730028.57810494 9174.12136465977 80906 11491 97505 FTM_20210729 576209394.7714208 14409.917890324004 0.226883033867686 5.670838216728659e-06 45665184.670191064 1141.3805165912574 103605 9325 42722 XVG_20191026 56254328.28593276 6508.469985787867 0.0035169980708437873 4.062245162007197e-07 2170146.429987411 250.65884764470522 300796 52532 287655 FOR_20220115 35483870.34016669 823.3887690103064 0.06295572244713922 1.460126763287078e-06 16474385.353954704 382.0890306550203 40143 None 153248 ICX_20200117 74261413.15841994 8531.854911205588 0.1438044500600986 1.6515094969745623e-05 7937522.930709899 911.5778056271766 111646 27018 113560 BLZ_20191019 5247456.849840799 659.3471422435546 0.024948251258465278 3.134767686892424e-06 125680.22643214109 15.791820782112609 36374 None 563370 GVT_20210114 10257328.623951996 276.1529684532647 2.327886256513159 6.228332094851997e-05 656498.1064590821 17.5648110608 20948 5445 383832 OCEAN_20210107 189334446.94604847 5165.57111945146 0.4499970447579335 1.2198017073522892e-05 78359300.31520464 2124.076356164387 35800 1353 63800 SKY_20210128 9474845.302335314 313.20538808025356 0.5001464709949802 1.6507003609869876e-05 1021351.754381931 33.70903939997745 17239 3826 762023 XLM_20190806 1617162198.9550164 136925.27630131235 0.08243319014760901 6.979237196581162e-06 166204697.66906255 14071.783539388996 275603 103271 68303 ELF_20200610 49326679.2583309 5046.277539289234 0.10747389265854089 1.1000703181187728e-05 30914069.996198826 3164.270873030659 81376 33388 507213 LUNA_20210217 2894208744.769459 58857.990561976956 6.507961807895431 0.00013226038279762615 455218267.52453923 9251.336147397862 26094 None 71119 SRM_20220112 404949328.64982307 9457.262809950535 3.036446622229041 7.097801989448052e-05 53578296.59925034 1252.4117414395027 185352 None 27670 APPC_20200914 4320242.565623097 418.53043578967913 0.03943128890293537 3.820432627042907e-06 239725.53608045002 23.22661229338928 24501 3182 2103501 ADA_20200907 2892505366.7381506 281669.0349411573 0.09296928225595855 9.053247856801123e-06 333667094.66473097 32492.139730001272 164332 87952 22859 VITE_20211216 59542293.28701444 1220.4761098489928 0.07830827946799361 1.6024008236567021e-06 2386212.5668671248 48.82841263458834 39759 2822 156048 CAKE_20210821 5151084605.030413 104841.57468504585 24.306309862411414 0.0004944098462967159 329527153.2673124 6702.846714277957 None None 739 LUN_20190520 6634769.794130829 810.7610990264386 2.449929562571336 0.0002994670117961544 1062613.5914738458 129.88851671256424 31595 2234 1883095 ETC_20201015 627114584.7672856 54939.9811767276 5.393504784976242 0.0004721384646168445 466698187.2256621 40853.985365873625 236532 25860 164326 LSK_20210104 177548733.49174964 5319.147121830079 1.238112478459472 3.761235918871824e-05 9322598.757501192 283.20927148373875 177394 31030 299861 IRIS_20210707 86166365.32295133 2522.3398717538184 0.0820774974696153 2.4033145802469595e-06 4230346.289949308 123.86894376126078 26022 None 777699 VIDT_20201124 25921649.97582998 1415.403988299389 0.5634950091361841 3.0710475385486736e-05 1107614.6300709108 60.36499220382083 22781 1095 None NEBL_20220105 19320525.11705757 417.6613836197647 1.0144260675584909 2.204751450008739e-05 1155514.2439369445 25.11392191406632 41604 6301 1050174 ELF_20190719 58221047.672228284 5432.966206495594 0.12526965508005766 1.174081172837558e-05 23001997.696376774 2155.8463153514435 86485 33399 1184009 BUSD_20210611 9248933442.80887 250957.52905380292 1.0005519186195257 2.7145749010391177e-05 5034294493.008162 136584.31132703758 22200 None 39810 XMR_20220112 3479044895.4945946 81313.01568848873 192.62334647938954 0.004502035950881604 137243552.24379733 3207.6870094995734 464229 249111 29806 CHR_20210722 153010656.87932214 4754.823233683683 0.2734453808759253 8.467014934264336e-06 224476059.28184125 6950.7195193272055 74360 None 109219 ONG_20200701 0.0 0.0 0.2429842579879008 2.6583367031203254e-05 32023623.866765738 3503.5016423237735 86438 16515 150808 BQX_20200308 7516266.278040408 845.5757128445335 0.05312401159077018 5.968700439307816e-06 2188851.2074988848 245.92640451211503 10593 11 317687 BCPT_20190830 3440459.7381479065 362.5481600255332 0.029618622759745573 3.1211460099273804e-06 178310.1789293015 18.78993861426281 10912 3115 1353671 KMD_20190410 131365918.51300174 25393.584101721262 1.165826722182032 0.00022552778437627072 3005243.5038046786 581.360759732546 96582 8333 316064 SFP_20210422 246253763.70997792 4544.767775246428 2.270215096257406 4.197259210990647e-05 37302117.751003735 689.6556083076367 None None 25245 SNGLS_20201224 3751094.780944646 160.2452135638198 0.004198701359962416 1.800523634719728e-07 163720.27266509752 7.0207951255410315 8894 2114 2318818 YOYO_20200331 1283493.9368387042 199.76703478574697 0.007359818206363937 1.147988021490276e-06 276107.4172184491 43.067369155575 7488 None 3116173 MTH_20190530 8874501.711787436 1027.8962082328123 0.0260999859597946 3.018167470027043e-06 407129.7250306184 47.07993690346558 19410 2008 2077678 WRX_20210127 22015038.92633758 675.660697847128 0.09239804306259784 2.836754912123424e-06 2359677.3293581745 72.44554141204213 52777 None 5221 IOST_20200612 76683709.44197357 8264.698378120118 0.005145267724120537 5.533237107334739e-07 72675938.52148336 7815.59330629749 191762 52184 420210 MDA_20200506 7590977.007186491 846.5422363846504 0.3880820060990385 4.312909445786633e-05 205486.70000101696 22.83655298338518 None 373 1654204 ZIL_20200523 104079954.09811142 11369.654032766663 0.009855800075334355 1.0766437979693586e-06 35593437.44841943 3888.2133753054086 73218 10746 162490 REQ_20191127 11273673.099589128 1573.3870622814047 0.01498196109928568 2.0933793054855506e-06 401692.8017128178 56.12719140675224 40357 28887 1038547 LINK_20200913 4895430969.620165 469482.55432181887 12.70876716652991 0.001217151095170129 697980413.2403896 66847.36711679058 87517 22794 40610 NKN_20200329 7604064.936051779 1219.287202088299 0.011719567189274277 1.874510757582652e-06 2091468.9641751328 334.52439063488185 12216 996 277366 BCPT_20200127 2512842.6716656103 292.81431111006543 0.0216627488893021 2.5207632730081253e-06 135457.07476800386 15.762321803625 10698 3150 3813934 TNB_20190401 10463525.356159167 2549.8863002413427 0.004005177125350369 9.760320352576233e-07 571612.0298200728 139.29762289707006 15383 1504 1826498 LEND_20190915 4675764.758341891 451.6032620062154 0.004122047905856919 3.982015495062357e-07 1934545.9802438396 186.88264292843368 41609 5813 754376 WAN_20191216 19118947.228932336 2686.55078506133 0.17988640484345184 2.5299767869997008e-05 715271.4220023702 100.59793543848441 106653 16604 669609 SYS_20200106 11966459.15791271 1629.543532121981 0.02085769084977636 2.8404125776483005e-06 219058.72465224974 29.831545650343056 59339 4543 919572 ANKR_20200107 5728855.064376375 738.095723138694 0.0014309247285779567 1.845516413520441e-07 1259405.0662466807 162.43011771407947 None None 5257 ETC_20210509 15886373928.473394 270861.03265654476 125.75483075496422 0.0021415648893087663 20522028019.175125 349483.62937175884 382886 50791 131671 DGD_20200229 84469731.22630675 9650.613266528495 42.151547344329884 0.004837726988292577 1783556.340623889 204.6985030867959 17661 4713 321612 MANA_20210124 251228911.06040278 7848.713809757447 0.19305398186167588 6.023868336937813e-06 360719551.35015696 11255.541392819014 58239 8122 67623 AAVE_20210724 3704342283.1053705 110803.45636128873 289.05474928099676 0.008644662761826198 322374367.1504496 9641.141320129804 258028 12089 14216 ENG_20200330 8515563.914073372 1440.0895033826357 0.1026452447468427 1.7389942298020403e-05 874502.939716729 148.15645574843748 61010 3596 414852 NEBL_20190716 13990915.38674026 1279.3926500250618 0.9165366737397189 8.391108081755812e-05 242117.56725114104 22.166430798742443 40542 6154 884677 ZIL_20210511 2527942331.1000347 45283.87710574596 0.21037771417486795 3.765122148737906e-06 525899399.3952026 9412.002048016273 257362 31279 34741 WABI_20190509 17195616.949779674 2886.696333222104 0.3276696445465278 5.500720120616384e-05 1322322.9994494563 221.9835999484106 36442 8049 956243 MDA_20190811 12379554.24771494 1092.5798679666582 0.6297153337259979 5.560565117842094e-05 932400.1878323613 82.33358285326433 None 364 2972990 STEEM_20210201 69168167.73906705 2092.9439804423287 0.18324055412968596 5.542059422334544e-06 3885755.1540804678 117.52358022949176 12137 3823 197343 LTC_20191216 2769888222.6622066 389234.87296428106 43.46519641756044 0.006113076642701797 2105842301.008244 296172.0283013835 449719 209883 178248 POA_20191022 3906862.892036416 475.7113445761602 0.01774494757354178 2.160678043462895e-06 285911.0987988208 34.8133929952018 17710 None 624364 KAVA_20200806 80938871.9883449 6908.542461952281 2.9887445318528996 0.0002550373150314761 38541629.369536534 3288.8570992218465 30745 None 136453 CVC_20190623 28172041.48767753 2624.1625828336637 0.08217081192579186 7.660534270805376e-06 6691435.534589534 623.8221338241211 88703 8169 458176 RENBTC_20210218 944431622.502341 18116.066994396046 52095.71964752917 0.9991410210453042 23796758.305816725 456.3967548986479 47190 3169 73664 CMT_20190321 28309131.60240472 7005.166032063158 0.0353864145030059 8.756457540078948e-06 3730272.979084773 923.0654592452418 292447 1638 1091095 UTK_20210610 142206174.03430152 3788.5354079628955 0.31483545152655595 8.395802344498683e-06 12806037.998091323 341.50208728652484 76105 3958 115864 VITE_20210110 9270536.927806923 229.0963663788376 0.0160895590987184 3.977832339097963e-07 1743147.0642918495 43.09594017834903 None None 1009411 APPC_20210523 9842994.973679034 261.88338402986636 0.0872821052958781 2.3229490526455004e-06 230850.82098929954 6.143924852656528 24865 3132 595415 REN_20200321 34008111.08989129 5501.09061368038 0.038897554969804 6.2844033647108905e-06 3945763.526436563 637.4891584095985 11349 873 365958 ALPACA_20211007 130704779.99957839 2354.8033369127565 0.8530737255501373 1.5376362894843617e-05 10354288.901000483 186.6325252921855 49844 None 21947 QTUM_20200414 129729767.47974737 18931.78927724736 1.3417274014505944 0.00019594650667534058 330645936.9417278 48287.68960079421 179288 15130 108429 WBTC_20210218 6581241316.493893 126151.96664991335 52232.315292216124 1.0017607816096317 311699883.25923556 5978.075391345621 None None 140839 ICX_20190511 150129865.67824212 23560.403629886205 0.3172501800715638 4.979752628045503e-05 14814575.133818422 2325.3862122117157 113546 24202 291267 DREP_20210616 0.0 0.0 0.5771974827516131 1.429532263375268e-05 999607.0086209859 24.75704611024216 4024 None 173575 FTT_20200730 312556799.00782114 28164.959954998918 3.3274601255402505 0.0003000084083178424 10350892.513847189 933.250789066684 16961 None 11932 BRD_20200113 14803337.312102014 1814.9193891991172 0.24645058751844912 3.0226019299536058e-05 936372.2338560253 114.84170314653107 180 None None BAT_20210120 403608096.28155774 11146.261636484027 0.26983177244114603 7.486616350407426e-06 173720572.53962994 4819.9634424482265 127706 49814 23802 ZEC_20210218 1827547526.1723616 35017.120008785096 168.40951419848045 0.0032299170662861546 1995125122.5563385 38264.39802638608 72802 17475 114224 STMX_20210114 20991199.088078182 564.4998265628607 0.0025319802859402377 6.775014436602557e-08 1339577.9327641223 35.844117285695766 22013 156 199234 DNT_20210711 95436338.49077006 2830.278822835407 0.12704063052094552 3.7678240546936594e-06 2189970.146427836 64.95104883324207 69971 10253 207406 CND_20190117 18008936.25928185 5007.090265105458 0.01093135696685243 3.040337046242548e-06 2249927.7877797717 625.7721548477658 37183 6270 440166 BAT_20191118 372494852.95878357 43825.98783533953 0.27541416472244457 3.236514328642428e-05 67897430.83025971 7978.929042433356 108244 31713 24638 RDN_20200704 13211906.557563633 1456.7968291635627 0.19817715704269084 2.1861857693479417e-05 1753889.3052504314 193.47980853938984 25486 4324 1882250 WAVES_20190704 195069079.9948692 16281.58780753047 1.9507835876566328 0.00016254781026542908 16668592.221699873 1388.8999184678298 142896 56865 50285 LEND_20190821 3996068.0714285034 371.7046189205437 0.0035414899407056172 3.294208570251761e-07 1466959.8694984007 136.4530707477938 41721 5825 628333 BCH_20210107 8469727678.784025 230689.37363371463 454.7308338444526 0.012315181279321366 5885795515.304363 159401.19593646115 None 356801 464995 AVA_20210206 73023231.69198567 1926.995967998091 1.89642159413254 4.9890794866855196e-05 7009368.820526973 184.40149756415474 None 9250 69143 ASR_20201229 0.0 0.0 21.310517620938413 0.0007849215 2950739.5118656163 108.683370576 None None 225802 REP_20201031 64568339.53634636 4753.546669384864 12.381480439226353 0.0009123046623453282 7714659.002339352 568.4392436578707 136243 10424 126457 ENJ_20190712 86905287.54103485 7673.059547887812 0.09937281207455952 8.764541575257558e-06 5816757.886272826 513.0298243869179 46892 12657 20679 LOOM_20190523 48583411.917157 6340.137673013152 0.07006462538376436 9.14880665238122e-06 3192302.6230648085 416.84030014206 19513 None 434311 VET_20210620 6382497317.694669 179035.09174469285 0.09742913299735632 2.7364955213473565e-06 588500111.5626441 16529.223550078117 381156 188359 26602 PNT_20210616 51539816.5160497 1276.2072248880918 1.1324893763743837 2.8059256158600188e-05 7041856.879228057 174.47339474303462 39769 309 328870 HC_20190103 39322267.90935376 10166.123513548751 0.8971485449701769 0.0002319429525070151 21811025.894480933 5638.8808425711 12161 760 385031 FTM_20211204 5073343845.707995 94496.624438039 1.9873858626884329 3.7042558079422886e-05 418588573.0335137 7802.003535942195 258971 23418 16767 RLC_20210828 334279879.22883886 6814.898041980081 4.686782213810537 9.554225719400768e-05 34508146.91454281 703.464786155974 46745 7846 323230 BCD_20191216 69567278.97825481 9775.43510715825 0.36901754982284835 5.189974394450725e-05 2472604.533123559 347.7545775444715 21292 None 2755194 WAN_20200208 31271880.756757814 3192.370101226455 0.2953800006189836 3.012966752378658e-05 4865073.6558072595 496.2524592763 106482 16452 881283 BCH_20200520 4543169850.822785 465653.5340873371 246.7538861489731 0.025291112352809043 3237090984.244977 331786.5953664359 3120 297125 140343 BCD_20191020 85812202.31110147 10798.632515470048 0.45625556943738693 5.739661943831548e-05 7231835.175535651 909.75961547754 21319 None 2032087 ZRX_20211230 640499168.9287893 13810.029915394385 0.7604747542376151 1.6327707991248423e-05 62669571.72477244 1345.5416650675063 249747 20882 59550 DREP_20210523 0.0 0.0 0.5566072950336591 1.4810099974759508e-05 1464487.7080445148 38.96680758852449 3952 None 188907 RCN_20210519 56604223.49884465 1327.9792626408253 0.11406816039115839 2.662400498241925e-06 1159395.968585358 27.060806397124974 19832 1163 786540 STMX_20210620 166324823.57470375 4665.609365725438 0.01923389394717365 5.402230629101348e-07 10211931.21883249 286.82287509836124 66514 4478 52447 RDN_20210304 29314020.989854727 576.6732530234899 0.43636556947757743 8.612196173700146e-06 691352.184647523 13.644661851825099 27598 4407 740464 CVC_20191203 18634201.492854744 2548.741649618839 0.027204173424395118 3.723516565874986e-06 1086852.3026266724 148.76072470045176 None 8128 147989 BCD_20190531 245291363.2182731 29511.70244119003 1.322347411438773 0.00015919153947258467 65316236.911288224 7863.132045723726 21247 None 3260482 CELR_20190405 37717247.32725816 7696.184918140303 0.018920481450384538 3.865441949465231e-06 9892031.201320423 2020.935485773581 11590 None 421658 ICP_20210723 4655025219.841132 143786.15245539503 34.003083418579315 0.00105030416119159 293416321.70132 9063.189354058366 246203 21714 22362 QTUM_20200625 166855101.08777252 17934.017353826966 1.7345393348232399 0.0001866116185524975 206578677.64176387 22224.910452718363 179672 15075 115798 BNB_20200626 2353394947.3436666 254334.44400376332 15.913795778184568 0.00171982454785264 135826468.64633995 14678.942615710817 1165105 65147 1028 ADA_20201129 5124805753.783806 289520.1394854402 0.16471768109030216 9.299741640019087e-06 1570661467.2723396 88677.46165973697 166798 91006 42419 1INCH_20210201 483138785.99444443 14615.893883699931 4.991270683240381 0.00015055727911575522 1039941104.8271292 31368.906460860937 None None 12553 VIA_20210429 40526547.28742359 741.0468568878548 1.7508143730782266 3.197719267116083e-05 1210059.1242687555 22.100740292762758 38477 2273 732301 GRS_20190627 30505902.591620337 2339.281760287002 0.41883473148044686 3.211747120034557e-05 2817618.930089538 216.0632536867921 38573 107028 12971590 WRX_20210527 698250212.9786383 17821.837404514437 1.606499018653816 4.097915356719766e-05 49246634.58929987 1256.2008305449606 231814 None 1865 CRV_20210125 454013047.2823044 14090.303551844829 2.2680116743607566 7.030000182129287e-05 391110046.5604331 12122.969778484017 None None 30895 BAT_20200306 336811438.1098044 37191.51186104479 0.23492432168875713 2.5933303135686593e-05 72427875.81461704 7995.315450831916 111235 35397 21544 BCPT_20200506 2104339.5345010916 234.65404452768348 0.018263811713946178 2.0297299235524176e-06 158687.28184472583 17.6355477975875 10565 3168 1976205 FET_20210527 230599570.7538537 5885.724027200162 0.3339610422673133 8.524645562641386e-06 36320083.415427476 927.1016637750885 63589 2740 111293 IOTX_20190227 9769230.360753676 2564.9135497945645 0.007331209420657598 1.9242392851685933e-06 434697.31713030586 114.09599791578395 13486 1619 1268862 RLC_20200301 36984488.908109814 4313.850216495063 0.5268816117676591 6.160262634935973e-05 450129.1951798931 52.62878794834994 None 3561 249120 APPC_20211007 8326856.841120918 149.99512759600378 0.0705046331160938 1.2699929418897815e-06 283763.6552048922 5.1114064898636675 25070 3114 871723 AAVE_20211120 3702205169.39179 63687.22705528561 280.527570637098 0.004809233826646962 172731126.99191374 2961.2218754747532 None 14100 14216 BRD_20200317 5930478.373183524 1177.187994682473 0.09594378203780254 1.9044647205871848e-05 304361.3131518098 60.415106732067905 178 None None FIL_20210703 4853878929.812838 143528.53976637457 57.43169347325879 0.0016956235973045548 325511146.08730406 9610.449337494774 94632 None 26863 VIBE_20191022 3688787.4711166066 449.15782719620927 0.019712252037306255 2.400222936004611e-06 194444.87456765893 23.67619117504 20127 None 1006248 SUN_20210104 0.0 0.0 0.000403758945103701 1.21e-08 598.1576871652345 0.017925814653692473 41 None None LUNA_20210218 3200535877.861302 61349.2008436042 7.328700063556908 0.00014052347476875123 620464884.6502641 11897.04597089635 26503 None 71119 IRIS_20211204 147871241.68634087 2754.264961292142 0.1266614706529721 2.360822309936795e-06 31757028.309871625 591.9140251943704 32656 None 440878 YOYO_20190629 5290462.716454221 427.4607874509545 0.030361614437584554 2.449913564360212e-06 643301.1418987439 51.90870850250903 7577 None 3542595 DUSK_20200217 11236282.221219864 1127.164267034379 0.04329290852587021 4.351729990498141e-06 1073793.886150498 107.93594648838024 17757 13340 874362 CELR_20210702 151083111.663463 4496.428291100148 0.02680925517553753 7.971743424807265e-07 27417776.190801907 815.268740741806 56786 None 195750 LOOM_20211021 88683266.64882584 1337.9466722423695 0.10597824993442904 1.6047916213044087e-06 3887136.1923401086 58.861545611445145 35745 None 459987 UMA_20210422 1539629122.9376354 28414.82184206863 25.415483377777097 0.0004698910331669265 98970346.85405123 1829.8010643701823 35547 None 123733 KAVA_20210624 236398762.58778256 7011.80625966691 3.380721994973043 0.00010022638803175621 124227498.33651029 3682.9036729441896 108939 None 51649 VET_20211120 9305921084.780233 160085.2146134122 0.14029572653078518 2.4051644985679598e-06 737159506.4585705 12637.518750986219 503878 215981 35593 PPT_20200520 11121700.482615253 1139.7601511564637 0.3066407519999613 3.1439511952201194e-05 3615510.0721121603 370.69395174679323 23711 None 2264384 ONT_20210703 613677305.4341466 18156.00992625997 0.7069895300665391 2.0878959869101455e-05 132393817.31472784 3909.8813788249336 141090 19558 137199 LSK_20200208 203461754.41626093 20772.04410388906 1.4755699517487857 0.0001506326220949483 13116449.693787264 1338.9844430012015 178620 31147 157770 DOCK_20181229 4475688.338219463 1163.316335541307 0.008728887794851046 2.2675684347116662e-06 443678.36559222545 115.25764571917736 97 15436 149146 STORM_20190622 18236676.437427375 1802.4882281786868 0.0030941423005104475 3.048040909805913e-07 683160.9241681722 67.2982119956759 26860 2575 4259920 BNT_20200927 58427296.34825542 5441.407385215909 0.8909522328743111 8.29954486232157e-05 58169096.13397359 5418.66337106668 85575 5219 73350 NAS_20200713 21662305.24578661 2334.8033613166845 0.4774560384214173 5.142932869451451e-05 10486194.380369542 1129.5237553715788 23506 4929 720251 GRS_20190909 16281441.620210463 1567.0643111918203 0.2217551056291652 2.13357856727452e-05 338923.3388718572 32.608925495287856 38437 107002 None DOCK_20200526 4030617.086032498 453.55302374499547 0.007150756196411603 8.042609603119752e-07 3646492.5298581664 410.12887354569267 42472 14981 399786 EOS_20200730 2843875484.208435 256407.74803664442 3.02157131376081 0.00027242904986368624 2224547891.4083047 200568.31545648075 190292 71977 92471 EVX_20190726 8559884.34042513 864.2980382914665 0.40547877900490575 4.096385569482727e-05 814026.0438562853 82.23770791209905 18163 2914 1096264 COS_20211221 88198806.3502343 1869.4632629504029 0.02568917055853479 5.44918292561102e-07 16395350.908181243 347.7779324353477 None None 173868 RVN_20190316 88061435.43778898 22439.32324005394 0.028401394861480026 7.237009803924108e-06 19865623.897323795 5061.994863533596 20849 5956 283361 ZEC_20200913 658183156.999012 63121.206626568084 65.72676460899864 0.006294820140896133 613514834.0031447 58757.882831993265 71858 16137 174620 ALPHA_20210702 125357933.60421842 3728.477580381474 0.4391719537601666 1.3056852478143682e-05 20427558.510272894 607.323886859447 68847 None 51351 ELF_20211207 232711453.99029666 4610.489827814362 0.5079307819957559 1.0061193590067881e-05 485663840.39213824 9620.125597983468 94185 33560 102632 LSK_20200711 167453499.7829915 18036.390855950245 1.1914946601849072 0.0001283359340535343 4009900.4740822664 431.9065288326135 175362 31156 183844 SNX_20210710 1841846192.8420765 54210.81689157201 11.619600036625084 0.0003419121522580078 370675741.0217474 10907.306620115714 141053 7141 47664 QTUM_20190807 280264841.99928904 24492.644455275302 2.9298129072611094 0.000255349964702953 297659439.3833947 25942.72390283955 178817 15353 320250 BNB_20190227 1360844868.4427445 357251.1876310562 9.421308285129433 0.0024732970318301997 83462864.34517199 21910.805633946467 921075 47693 1153 QLC_20191017 3748571.0637499895 468.1684016329711 0.015619046098958287 1.9507016734707134e-06 177345.7796860438 22.149157318871552 24679 5722 940522 LRC_20190801 41070062.582353525 4085.7424100368303 0.04261906870748823 4.2373995771012695e-06 5890826.955026715 585.6952862890957 34717 2452 581854 REN_20200501 59011023.80953195 6814.5718045931935 0.06790789762022738 7.878216796516262e-06 2803188.820278136 325.2070822634882 11847 878 405575 RNDR_20211207 760985388.2870576 15079.754178686577 4.929888938375969 9.768144280347603e-05 87371574.14273377 1731.1914180940196 41719 3996 72648 KNC_20201030 161629181.78429607 11999.103158650294 0.8165288090830335 6.072308563672702e-05 16394776.40940813 1219.2361136914205 124794 9186 71927 BTS_20210731 117253035.71046881 2810.376045185941 0.043162532014966316 1.033302700497334e-06 16856615.40463681 403.54412509480704 6341 7181 185909 ALGO_20200310 184818446.83815864 23343.800549123796 0.27696201591200537 3.4947102532764325e-05 108623606.78305534 13706.140573919622 15963 816 407593 QSP_20190207 0.0 0.0 0.013320945433403989 3.909760297210452e-06 80301.27712972701 23.56880348370832 56793 8600 722611 QLC_20200913 5237896.307154724 502.3166422795061 0.021943567037804642 2.1014829855399277e-06 227739.93982356737 21.810109898841443 27728 5618 940522 MANA_20190228 53784803.006790645 14089.914845543972 0.042494309041470606 1.1145543069893382e-05 17140627.90699696 4495.698621573344 42843 6048 109319 ETH_20191113 20253767836.417084 2302944.435298687 186.8659398462863 0.021233620582481034 7224692515.135974 820943.5053690263 447945 447495 23518 FIL_20210930 6272490993.769179 150900.66636837312 57.21231548232069 0.001376401746803415 994748257.6038247 23931.44251990027 108304 None 54646 ONT_20200323 220819305.30964586 37859.519803687406 0.3463177499939921 5.9393635303644746e-05 95903705.7586977 16447.524633660734 84338 16537 298289 IOST_20190515 182663089.98226953 22862.068837509563 0.01348433836468881 1.6871954397025412e-06 57758054.73661807 7226.837826385313 197917 49540 105349 ICX_20190903 105545980.45756592 10224.626189098237 0.21422506268887206 2.0751745643658425e-05 20807390.781030107 2015.5890052101238 113765 26184 190786 BAND_20210207 260205710.5178261 6632.802303260017 11.518571235374623 0.0002928063136250266 227346210.79093054 5779.224223041894 56502 3730 278216 VIB_20190729 5109689.910334068 535.8979337316722 0.027988505083896244 2.935399663365829e-06 406699.47836731485 42.65413634318634 32545 1122 2209395 BLZ_20210420 109676940.59877126 1961.0401963190704 0.38399081772748866 6.865526502870836e-06 31172354.982162185 557.3430910496785 54842 None 191106 DCR_20200305 213830190.75484195 24425.607917020145 19.13741072146308 0.002184928492189819 28496516.49713786 3253.4626407387696 40874 9740 216967 RDN_20210624 19057681.037122708 565.3081408876672 0.28528039675638267 8.464918897194652e-06 168846.02296033187 5.010045929281321 29926 4674 827519 LOOM_20191019 13712394.267989252 1722.995905635361 0.022762745771920914 2.8601947259929157e-06 4241620.52309692 532.9700015711828 21064 None 365854 VET_20191012 228937584.84071636 27694.315286209065 0.0036336528455584226 4.3946802674291967e-07 52619423.767786436 6363.996593632981 113804 57587 285376 PNT_20211104 36811835.780715 583.8146150869787 1.0930999278744753 1.7332795044089902e-05 6952495.128841717 110.24259543001732 81289 366 329752 ICX_20210708 593252530.7853541 17460.228403423025 0.9293505252565812 2.7352698663596363e-05 51471221.49705822 1514.9039820766882 141888 32520 225369 IRIS_20200730 37249417.41399586 3354.622961269449 0.047972049957318436 4.322348334703634e-06 8828029.65135636 795.4177337888239 8426 None 3451661 NEO_20200217 1039230953.6159949 104503.70760723969 14.770823381918206 0.0014847382004152974 1099938997.2846549 110564.00886860651 323130 98845 228840 AAVE_20210131 3866671035.5717072 113030.99597736377 312.74417987205544 0.009152755938022427 833174091.2181247 24383.63237941913 104274 3077 18454 LRC_20190906 33120538.147855073 3133.7257339731095 0.03441878354479825 3.256411152742145e-06 3702923.770277207 350.3390015974886 34404 2439 519433 BEL_20201201 16608189.828480512 843.6780377572896 1.034336526302024 5.268813332612383e-05 10204033.982479854 519.7839284041773 9952 None 175065 LPT_20211104 718476494.50901 11394.625375096473 29.472319575914984 0.00046732934625343277 38382911.69477096 608.6206069874185 18007 1517 127204 XEM_20210105 1815662811.729224 58033.808346970254 0.20174899432439516 6.44847842626962e-06 178512608.07164916 5705.776654907271 219526 17883 99771 YFI_20211104 1235815773.349617 19627.53554771002 34669.839967149215 0.5498437892671496 179795995.57802463 2851.4614315310796 148211 7456 29528 TCT_20200323 2895871.245823057 496.83229602386797 0.005011646404580581 8.592013981299668e-07 1108809.1774042589 190.09529375702377 29 None 409993 NAS_20190131 24020819.90192385 6939.340915941384 0.5273567742014609 0.00015243165435096742 5612719.8739935635 1622.3479391099138 23551 5203 399933 HOT_20190729 196614251.23972952 20596.614972881784 0.0011076707416883165 1.1615396656803588e-07 4702289.083475138 493.09736949691995 23944 6598 317141 STORJ_20210613 130304494.14153558 3633.144327741505 0.9025070542619253 2.5297105311854525e-05 23766358.381395634 666.1666166644231 102854 13527 47967 BEAM_20200721 25650406.177862473 2799.6916539402496 0.3860123532427508 4.214688237782087e-05 9670655.481245209 1055.8936149593935 15365 1538 344672 POE_20190716 10215697.156241773 934.0587474814598 0.004052034183063186 3.7097322731581216e-07 929814.3633708687 85.12668442582822 None 10828 797644 NAV_20200316 3525354.7708645966 652.5314471860137 0.051475751840781195 9.579370518898006e-06 36998.91298520999 6.885305869413299 49660 13978 1082339 NULS_20211221 86317697.19779745 1829.5912442734623 0.8999972199206813 1.9089700326215893e-05 40986198.72963762 869.3518534740236 81452 5567 218016 VIB_20211202 9173533.137063347 160.49033857644335 0.04998691991752368 8.741387987287565e-07 1498292.6012731155 26.2011681612318 33268 1319 3749819 SNT_20210408 598947970.6687999 10633.434625138658 0.15417279664766126 2.743628658680131e-06 206725258.1967369 3678.8418916588475 127762 5869 117733 HIVE_20200501 147744857.6063867 17112.687898481487 0.4148309940732177 4.8182568237254004e-05 30268664.086877115 3515.701559558649 6079 75 153201 YOYO_20190224 5034076.996935393 1223.4153387378578 0.017239989715535718 4.189778557322294e-06 667863.0830688297 162.30859013490942 6882 None 1519416 HOT_20200520 95888067.06769611 9848.666283398894 0.0005398881341981531 5.532813821080092e-08 6419714.94239962 657.8971700027504 25207 7007 551083 RVN_20190923 148685265.99362725 14790.80184019029 0.03319280136531017 3.3043604222829766e-06 26619889.60664354 2650.0236811486398 27810 7012 264985 FTM_20200523 11184273.335299574 1220.8597998540447 0.005283172918823203 5.771317714617613e-07 2091892.1712557427 228.51749375879513 21784 2358 335778 INJ_20211007 348109254.5129192 6271.605630183369 10.6558027701685 0.00019208367077488842 20281235.290237047 365.5936775879664 86267 4132 113899 CELO_20210806 376498850.5544895 9189.253919527739 2.8295949619620293 6.908753702974547e-05 18179648.923140954 443.8752489488379 35231 None 88664 KNC_20200217 73223077.60093726 7345.159969000327 0.42258066547033635 4.247709423895679e-05 37880230.35953423 3807.6567298327477 101373 6853 153525 TFUEL_20211221 1886178773.9046779 28765.286079276702 0.18976195436892757 4.024558409334726e-06 19585471.943098333 415.37765602973013 230878 26837 31111 UNI_20210624 9264928093.310345 274728.9495596103 17.829456504097095 0.0005292393750894901 479912622.4184925 14245.451415075744 None 47370 1420 ENJ_20210805 1310881266.29079 32957.49824411968 1.4047675600130516 3.532680582026734e-05 124708570.71001858 3136.145499797115 253671 34420 37503 ATOM_20200207 879077520.5329834 90260.10692721281 4.572763606524898 0.0004695818494739273 232464745.11497167 23872.046390679552 30253 8086 122971 ONE_20210511 1144927730.570027 20506.11705877533 0.12089520598667133 2.1636570181492394e-06 241697574.69369185 4325.6525309474355 150319 19208 26398 NULS_20200605 31365226.083534274 3213.544103482318 0.32854122682637577 3.360656356536464e-05 34712459.49739393 3550.7460901575378 24946 5185 769732 ETC_20190510 614430884.659499 99526.01156057643 5.569013770729092 0.0009020733540009952 427313268.93534553 69216.54885173164 227683 24462 756071 MASK_20210813 102885432.34061994 2314.1661729659654 6.2835060310791695 0.00014133596538722464 41446103.65357041 932.254229158477 39120 143 247482 CTXC_20200309 1490707.3788474456 185.13966806198758 0.06866810731641505 8.535955055873964e-06 4817111.374479621 598.8026727200609 16725 20064 415103 KAVA_20200322 7893818.424159408 1282.9067035673147 0.42207747857216427 6.849514161951879e-05 1187528.0616035445 192.71320287415054 18065 None 337432 XRP_20210421 63746186778.71684 1128280.0777793478 1.37713483282225 2.442855832487314e-05 14743108801.897842 261523.3342976503 1471080 293343 11104 VET_20200430 308720634.44152814 35361.09653528484 0.004801068066026669 5.47607743748174e-07 217909189.13184917 24854.627712296053 119934 61832 321528 NANO_20190221 121523163.10085978 30634.523931012187 0.9142289968785502 0.00023035227787109266 1915365.8380371053 482.60215466227817 97075 44731 310679 FTM_20200324 5813834.199443019 901.5753067275097 0.0027614091767543987 4.261532209024447e-07 1550357.6070601796 239.25823574463496 21257 2322 333169 AST_20200423 2439612.2411463186 342.9192457174181 0.014162187467071107 1.990679732626175e-06 39253.464965546795 5.51758528292 31668 3457 322316 DENT_20190830 32366811.280936047 3410.7441356410272 0.00044041269064472516 4.643581752354498e-08 664096.156689351 70.02034365760524 46558 10120 273311 GXS_20190706 121206108.83847438 11027.96040056217 2.020101813974573 0.00018379934000936946 6202590.403892404 564.3438438089645 None None 741418 FET_20200629 16768059.201170674 1838.6355858531263 0.02676791072047374 2.9340755684290322e-06 691038.5578813422 75.74589480273768 17589 420 852489 LINK_20201228 4927613659.406713 185902.91689615368 12.216958735263965 0.0004640886050331357 1882301529.36569 71503.44942179152 110465 25967 46547 COS_20191024 18312150.810787916 2453.8710437304853 0.013868019741184803 1.8575336004637212e-06 3737571.4632481374 500.62407659398315 9354 None 200954 VET_20190818 247703833.44084543 24235.15301286324 0.004466819251066893 4.3702569044656787e-07 29517456.811713308 2887.935736438101 113539 57329 133902 SAND_20201115 23598468.57842118 1466.4346180028786 0.038289025719309984 2.380261160924435e-06 5050507.9439835595 313.96797584070345 58124 None 72888 SKY_20190131 12018545.690992657 3475.199657454079 0.9580552736437838 0.0002770246454431011 187422.74321239858 54.19386586007441 14293 3478 287627 POA_20190515 6144890.281630963 769.3551104664629 0.027923559144138924 3.4935859763885965e-06 327524.4971908018 40.97740493620718 17417 None 629300 DUSK_20200105 10125795.894771485 1377.9886697272887 0.03909164554912066 5.316364080037745e-06 497137.780487138 67.60947005135633 17917 13341 809800 DOCK_20191113 5660207.589305889 643.132903671573 0.01006437933056309 1.1436177843813104e-06 1749604.7106426468 198.80799371820777 43868 15128 193357 STORJ_20201208 50446964.12785141 2626.4804913649045 0.35157566627564174 1.8312958811279426e-05 11612233.566921202 604.8608462317737 None 8512 86448 PPT_20190819 21183117.698198788 2054.493849975198 0.5846769903097971 5.666770963514385e-05 1082523.5136376976 104.91968926557705 None None 771976 NAV_20200903 11449367.379515685 1004.9809096894254 0.1648120884315954 1.4466563703435387e-05 440800.4872034059 38.69175125027386 48562 13777 892932 NULS_20200927 25143127.88072164 2341.6110326602834 0.25812037256286163 2.4031118186406903e-05 9638774.657277381 897.3740842744446 30534 5160 256957 POE_20200625 6328311.894970734 679.6287849004453 0.0025114078282103248 2.6999672312124946e-07 339215.0983391344 36.468376006490836 None 10280 752325 EOS_20210111 2951258700.3814006 76557.13816839925 3.0935081550013717 8.046870820410722e-05 6734898073.8326 175188.9831004499 192486 74026 95839 BQX_20201111 33643476.098245844 2199.5555081321886 0.15191443067857952 9.944518537533517e-06 776502.0784633299 50.83084786099068 15840 76 180444 NANO_20211002 631950689.2396767 13123.648417718377 4.74349351070769 9.848996870769355e-05 23984829.064468604 498.0011164106054 138429 111084 116341 LTO_20211028 73251104.18545419 1251.5306939370914 0.25028618802448105 4.2770791333629635e-06 6131237.250368118 104.775205984128 14489 5209 332135 GO_20200626 13642705.985117007 1473.1491233468776 0.01380580181165121 1.4920109060979065e-06 5054840.699589525 546.2831898695144 11447 679 961544 ADA_20200301 1481631103.8686461 172769.90784716126 0.04736417458731175 5.537785878803185e-06 120953605.76956655 14141.810257587978 155788 76897 41962 TNT_20200318 10999469.906388463 2026.008630735993 0.025443462879955837 4.73046041281296e-06 316476.82239501755 58.83951752070106 17700 2563 1338754 PPT_20210704 86717622.65981574 2501.4535909177484 2.4026452806302454 6.924173238884384e-05 5226412.222338392 150.61975205845206 24461 None 723163 WAVES_20190708 204046099.4468342 17862.18954583892 2.0426564528510043 0.00017870255309725602 64440650.64578758 5637.614087076522 143256 56877 50285 ONT_20190807 624149436.0640185 54545.087123397985 0.9627777396141856 8.391159081113334e-05 108187287.18577553 9429.141326987123 81531 16292 237451 KAVA_20210731 370236709.14930433 8870.068311755645 5.279063187336171 0.0001263797556102383 75876861.40326354 1816.47744312285 125543 None 50075 TROY_20200605 6342716.913737866 648.8760216955475 0.003334718957074091 3.4110922907937437e-07 2262029.364825406 231.38354467733265 8827 None 552530 VIBE_20190805 3662462.1691655354 334.8325971252071 0.01957157410693456 1.78928837633467e-06 148891.11435847185 13.612044631951 20399 None 1550581 DCR_20210806 1841712691.6212075 44930.059576797976 139.5380884144507 0.003406969188165605 29174368.988110177 712.322903058861 47683 11456 143950 DASH_20190801 968250243.6578586 96323.71696801807 108.14502961545867 0.010753635879402116 265503967.07175672 26400.963563269645 320678 29316 93403 GVT_20210711 10390707.36056118 308.2448532194754 2.335045123931506 6.92449667136291e-05 351841.32653369353 10.433734532412132 25811 5685 286484 SCRT_20210523 117941768.02365036 3137.9665854847394 1.6926286177809595 4.507087041668899e-05 4489047.599413025 119.53318083014702 81514 None 46847 MDA_20210602 16815349.521367457 458.54538139938575 0.8586927157499563 2.3409158628336458e-05 4927919.835359118 134.34195378366135 None 386 1555115 AST_20190818 4564994.62159348 446.872592282567 0.02648106635088904 2.5907283321369905e-06 389944.1429903442 38.14949616490977 32078 3587 246777 YOYO_20210523 3054645.1483093067 81.27209356388117 0.017388342401807425 4.627779471224747e-07 1374474.81290548 36.58063647411433 9927 None 759242 DNT_20210610 126316755.48877473 3372.1539249005536 0.16947129625242213 4.524826950958435e-06 5991406.414147594 159.968548163464 None 10150 197329 CDT_20190712 14574777.241389059 1283.551323740664 0.021750972752571686 1.9114579233851927e-06 1169273.236671542 102.75478794730297 19825 298 343226 OGN_20200523 10126294.022768585 1105.3611542206067 0.1904328086843888 2.0802806553782202e-05 8274093.055462579 903.8587333238817 64561 2228 165846 QLC_20200331 2002812.4927828435 311.7240381365033 0.00832700417415228 1.298850158902097e-06 76723.97009969357 11.967442152234993 24449 5663 940522 WNXM_20200903 57232803.283479795 5016.765158908454 60.0631568235356 0.005263666549137043 32337832.799842514 2833.94309893181 10330 None 105276 UNI_20220105 8379921295.02585 180937.1395297441 18.34947387011855 0.00039874824435608765 367529749.3567232 7986.705414114388 None 59693 2747 OXT_20210930 174552911.97377515 4201.409535300313 0.29523661453436556 7.102739830395412e-06 22345416.525953714 537.5812896242008 71906 4463 256467 JUV_20210212 0.0 0.0 9.442902307744706 0.0001974611665796056 12564280.590416986 262.7325182197901 2283071 None 93564 FUEL_20191213 3280164.258313005 455.3634565290769 0.003241850644987857 4.5e-07 275268.5201201422 38.20991391 1 1488 None OM_20210620 43504813.070565544 1220.3717177322553 0.14015990662869507 3.93667627907861e-06 6281669.522444757 176.43347514157492 44606 None 70903 TROY_20210603 17936217.83528876 476.61007112270033 0.009326379081702883 2.479901101987359e-07 4798840.639366182 127.60204239578265 17167 None 469106 TRU_20210603 114843635.2745351 3051.9996946844385 0.3558309407583516 9.44904900205538e-06 6968645.810541523 185.05157421510515 26531 None 94799 GO_20190905 7453139.113921176 705.661205858045 0.009594764353314017 9.084297072674982e-07 185048.04709397702 17.520299307188427 10238 687 740517 PAXG_20210105 77808890.99179392 2486.9960646533787 1970.3388309079908 0.0629776990269494 7304320.808718675 233.46711249444465 14024 None 75931 TRB_20210304 65891783.37021064 1295.6144833153596 38.56529771321303 0.0007604475155931951 57055126.12145737 1125.038090813273 15179 None 323814 CND_20200704 12238630.152249543 1350.0452114940729 0.006343403847565847 6.997708226174652e-07 83128.60045948287 9.1703083272702 34297 5935 376483 YFI_20211011 1167960828.3978674 21346.26387852452 32685.38174028229 0.597429509317884 201013927.18411958 3674.170087347196 None 7281 31064 ONG_20190325 0.0 0.0 0.6269451365662135 0.00015711291977445354 2270881.013171101 569.0844790563262 71994 11298 260077 XEM_20200305 471598647.53105634 53871.390778177745 0.05263746595377253 6.009647845937883e-06 35567977.01763031 4060.8150980537566 212565 18031 213172 HBAR_20210202 621436598.137093 18624.185891823003 0.08770024395759601 2.6256560034227354e-06 91478220.28749582 2738.7647678200915 47974 7678 141603 TCT_20211216 17117071.889746808 350.83577918713934 0.029679360880000956 6.073159369844404e-07 2734253.6836453397 55.9498516342773 None None 456283 ARDR_20210610 204176233.63463625 5451.437176234995 0.20438071756446313 5.45689682879669e-06 14212303.625507813 379.46375523154654 71990 6930 None MANA_20200531 53726720.07219634 5548.639243315488 0.04012775038556607 4.148270275750869e-06 17686078.22169645 1828.3265789068034 48824 6953 60700 TRX_20190603 2553274426.3310375 292076.53226152604 0.03860069613999714 4.414295976341746e-06 1620476447.9219096 185314.34349978482 425951 70763 107576 XZC_20190903 45788396.757570036 4435.786344042033 5.509764826057136 0.0005337553631123114 13372577.711482974 1295.4609311788038 60825 4044 177313 BNB_20200330 1716989350.6215217 290364.60370679793 11.335800884890425 0.0019204481668459335 187370629.17247185 31743.287039795337 None 60982 1672 REEF_20210124 0.0 0.0 0.02133852160748857 6.663423224320756e-07 48411850.85374015 1511.766640843361 19588 700 125550 ENG_20191118 30753177.379490074 3618.273828553284 0.398834148041603 4.688592193407064e-05 4799290.520497566 564.1923134914266 61065 3481 456199 TNB_20201228 7333393.855230615 276.2140188630243 0.0021148244010179423 8.041674240361279e-08 429824.0975055427 16.34417198483768 15743 1414 3433473 OG_20211021 10156488.93822004 153.29280478414722 7.3540516578826916 0.00011094618787475788 7581629.525740714 114.37951933041187 None None 254363 DOCK_20210702 62592622.860190846 1863.1438089436738 0.09013315183803665 2.679714077511549e-06 83025787.32105467 2468.407756121762 51070 15121 237761 GXS_20190515 66622500.48918912 8337.259321907051 1.107954100666436 0.00013861074750426387 7416528.1409993945 927.8457554261361 None None 893298 VET_20200422 236783434.68364194 34575.664556105854 0.003666574659121152 5.356214708235547e-07 124084635.90077257 18126.562627721745 118891 61718 321528 TKO_20210707 106406465.31316613 3116.8356726643397 1.4195353426419488 4.1558662888262224e-05 11535478.14108017 337.7154713371501 None None 20199 RDN_20190811 9899187.079655917 874.3721282987885 0.19608181617385279 1.7325607893911313e-05 174283.6121254922 15.399538748374058 25616 4398 836731 PAXG_20210202 114334183.22221865 3424.702404012833 1863.1888539240413 0.05578706582604234 5180948.615258214 155.1264762195363 14725 None 71165 DASH_20190810 928326199.5107473 78262.43982328464 103.41603531219741 0.008718477669432434 284826211.2801682 24012.24292943189 320492 29602 93403 ORN_20210112 36885802.89472548 1039.698518550182 2.230279587793334 6.274219250818354e-05 5814643.887649764 163.57747618827247 None None 137368 RLC_20210418 195964839.94350785 3252.0600782696806 2.76582592393051 4.6012602326534426e-05 16759757.446553456 278.81727761866665 36715 4251 302860 WABI_20190830 6789756.539257588 715.4897681361396 0.11796498759736025 1.2430893675820483e-05 845954.2153671604 89.1448142370392 36273 7963 1534793 WRX_20200312 32271890.70454136 4067.5252935404455 0.17270522363543997 2.1756263818223018e-05 44563524.79267877 5613.818630674515 20470 None 24445 CDT_20190805 8514642.631540803 777.5969081606515 0.012626630097046298 1.15295349086836e-06 261681.6120033418 23.894477444610484 19783 297 234430 KSM_20201124 358664828.7294042 19589.691165179767 40.275891480736654 0.002194577790149948 32480426.51711033 1769.8136534889688 14965 None 173763 ROSE_20201231 62519796.60839421 2166.3126263067256 0.04181157220605003 1.4500909380319624e-06 5830470.106791747 202.20985292443953 7785 568 217829 POWR_20200322 23712608.710712936 3845.8220405066963 0.05521888930414145 8.960974785374715e-06 1580336.0206626663 256.45845854627606 82487 12822 249499 STEEM_20191019 45598616.88837081 5729.015612048482 0.140563132903028 1.7661869861249887e-05 1131604.2571317903 142.1869782717933 10867 3786 220628 SRM_20210603 245185883.94956806 6515.200844493115 4.909412056322348 0.0001303768159090511 93037031.7642555 2470.738211397842 88857 None 27102 BNT_20210221 620635656.0148646 11067.80330171965 5.5604354967162095 9.88780073734691e-05 425279758.4984548 7562.503894062083 96102 5877 60733 ONG_20200901 0.0 0.0 0.19329685225405907 1.655957037011629e-05 9533358.057856059 816.7143529843355 90271 16612 197799 NAS_20210821 26619070.18319601 541.273465244309 0.5845254692957965 1.1893111635886134e-05 5173768.606003234 105.26865096840005 25352 4931 625809 PIVX_20190325 50529773.75043306 12653.128027521838 0.850845245072889 0.00021305625786488446 960163.2699006516 240.43008338939381 61462 8599 217374 ETH_20211216 476630620294.2814 9769745.550030116 4015.72254331389 0.08230081784798136 26881290260.577652 550922.5673317609 1972942 1183591 3727 VET_20190615 407987394.97028285 46906.88691992142 0.007323155737012021 8.434342812169521e-07 33923646.126759335 3907.108781337465 109411 55915 213726 SKL_20210107 63360258.68785044 1725.738883740451 0.11245809695306506 3.0501523543562644e-06 20135740.431857724 546.132984186725 10462 89 244845 REEF_20210421 433456362.9378707 7672.402300308765 0.03409600313943905 6.048181931684179e-07 108939697.4902429 1932.4467660008183 None 9770 32523 YFII_20201231 57705504.83138407 1998.4725150143736 1452.721130571545 0.05033682833729452 56287203.603670955 1950.3531997704306 None None 151797 THETA_20191213 85215475.82869674 11823.9010114313 0.08504221046962275 1.1814238075609805e-05 3848475.747235041 534.6381338745417 None 4019 468336 DLT_20210207 6892115.425753576 175.8197211905518 0.08430618278831158 2.1439140592546026e-06 769268.4039646434 19.56256696785 None 2539 6584036 EOS_20200425 2530385473.600327 337460.62454197044 2.704444145338768 0.0003608203989866613 2503610328.479399 334025.63672318164 1503 70995 96512 IOST_20190615 156531613.69153485 17996.660664863077 0.011515926690486792 1.3263308469117564e-06 55218402.089643836 6359.7026949791525 198012 50042 109542 VET_20210828 8462511456.45339 172523.5538790479 0.127213944959001 2.593316030798727e-06 902406871.277528 18395.98800541209 409287 199405 47063 RDN_20190426 13839894.862239765 2662.9312288074934 0.27349675729829787 5.2563934059179915e-05 710547.1290411706 136.56159146385656 25690 4456 1332555 GVT_20210704 10964416.818865895 316.4491638357886 2.4713312176649502 7.132624655838707e-05 171636.61365638702 4.953684612 25828 5680 286484 DGB_20210814 1014395502.0060527 21289.668813163327 0.06982081962943898 1.4634244317422442e-06 109012159.44454776 2284.8637173670213 223872 40870 115108 AUDIO_20211111 1165686366.6235292 17971.793505328635 2.341233792337043 3.605104739563395e-05 57987022.87210124 892.9022452760178 None 8208 20865 ZIL_20210111 854756654.5100495 22179.094477592284 0.07380276704060476 1.9197665007104182e-06 201487582.4624112 5241.119359490283 117656 14421 39054 SNX_20210401 2632972264.5857096 44763.74163462233 17.64601009255684 0.00030029818236051526 145321217.23412696 2473.063155066046 104466 5709 23689 XZC_20190818 52224310.97234725 5109.586516384873 6.391114570636651 0.0006253017460026852 12890727.174622117 1261.218856343005 60861 4038 203720 BTS_20210206 128431014.2959564 3386.5674922391263 0.047480036101222804 1.2499159728829596e-06 42083825.82208131 1107.8602801165327 13252 6928 136810 MLN_20210809 130830385.33569449 2973.9405237834735 89.9353832500268 0.0020445042518103442 23612803.281200495 536.7906930619687 27562 406 109463 TFUEL_20191011 0.0 0.0 0.003691887978164246 4.311706868288077e-07 2246624.4560526637 262.3802822544711 69815 4023 359269 BCH_20210127 7979808082.136419 244859.41770428306 427.95959545412836 0.013135391530976929 4501904319.581582 138177.24033024698 None 375296 393369 LUN_20200626 3433342.482066789 370.73477014926004 1.2693123064675214 0.00013717622709139295 1194405.1822990961 129.08091703780372 28489 2121 2710990 REN_20190411 24321038.790321022 4579.5423741467 0.03155174107535222 5.941051140060011e-06 560329.9155087249 105.50760654990819 6145 790 1519045 SUN_20201224 0.0 0.0 0.00018139585551990518 7.7e-09 1580.8261559153802 0.06710385618051076 42 None None DCR_20200629 166892227.8286162 18304.830566119534 14.292000941111864 0.0015670707430611981 105540494.12035352 11572.166922300925 40516 9851 289524 LOOM_20200625 17057125.52918669 1833.3439208785214 0.02051402025393195 2.206218175951753e-06 6441059.840116834 692.7156703442822 21751 None 640250 AST_20190305 5735399.030524785 1544.5700479616225 0.03442490819794337 9.27079037105927e-06 1120780.993253569 301.83161507870597 30614 3599 383093 OMG_20200403 77334243.13102502 11403.372731472222 0.5538500787341449 8.12441640424335e-05 121122886.08599809 17767.493414381894 280156 42944 477396 CELO_20210825 407284965.2762521 8475.432210525614 3.0505968700329 6.352103172109394e-05 24816199.219188966 516.7351324864135 36545 None 103784 NEO_20200207 906993092.6298133 93126.36441138384 12.884305806983777 0.0013231027603084475 596416029.6801096 61246.5822360585 323143 98748 245431 QKC_20210104 37033461.24058558 1107.0153636173447 0.005737435168368703 1.7210818897201106e-07 20070745.162870012 602.0703502402215 63537 9211 114091 GXS_20200707 33315777.015108816 3568.9862658533466 0.5137202514911008 5.5006389779280495e-05 19596795.362816863 2098.3189995393323 None None 671757 YOYO_20190819 2175581.063716245 210.81242549748683 0.012433641710991015 1.2053679301207435e-06 332444.12281490956 32.22848892645748 7567 None 968977 XTZ_20200806 2239050752.0808773 191133.44407908508 3.1107292366131287 0.00026554306195998817 144322548.7245821 12319.893048589793 69411 28074 66649 BNB_20190507 3193049752.020254 558162.8188708761 22.11265107797972 0.003865570270261784 224349545.55043557 39219.12982609859 956250 50216 978 STEEM_20211202 263645326.18986377 4612.457057941502 0.6509769283930821 1.1384078373320325e-05 10008128.192668892 175.01897647405187 14854 3945 181404 DIA_20210603 83696971.9467908 2224.2689568035494 2.0119637640117447 5.34984811556721e-05 12026710.535928603 319.7924130045831 31798 386 362655 TRX_20210325 3998235094.435589 75928.12873808408 0.05548737937749144 1.054752756734596e-06 2291795691.154855 43564.46186929897 661370 89069 25562 KNC_20190621 43804298.688130744 4579.3741609477065 0.26404910983377156 2.7610298172743476e-05 7261661.619234748 759.3157298006363 96945 6694 219809 FIL_20210217 2198005616.5604706 44699.676230504105 41.94506319732091 0.0008523759077346613 531467623.5587396 10800.083812757213 52182 None 47749 BCH_20200312 4896399486.397103 617102.4485329929 267.4012646779065 0.03370311235337432 3818530203.9153557 481285.5041741539 None 286949 124622 XMR_20210723 3547789904.588403 109696.36799549052 197.83671549681782 0.006110854139834472 145076893.41660333 4481.1891084162025 430410 229235 33010 NEO_20190804 845382908.5013435 78348.85518257204 11.995102762285306 0.001111488024727183 267800402.51351023 24814.87206151925 324451 98216 192021 HOT_20190627 313930615.4807574 24152.327041724897 0.0018026102477589196 1.38229421693859e-07 43383360.89088667 3326.7628953839508 23065 6473 301392 ICX_20200404 128226708.82585913 19068.044390743307 0.24159126213707738 3.590753367687119e-05 27737288.544695646 4122.573033947896 113006 27499 109675 REEF_20211021 435842176.0974864 6575.521348972997 0.03151840816279914 4.756730843541547e-07 68798901.06556307 1038.3070522152395 210205 13888 81456 WABI_20190507 17466383.57896208 3048.399257772524 0.3327277337678199 5.809886205455081e-05 1058053.4010293724 184.7507507013205 36448 8048 956243 XTZ_20200520 2013461056.5635123 206370.28496000986 2.831982901750078 0.0002902649229449369 131638066.31975935 13492.28244044584 64444 25208 103096 BEL_20210620 45247572.601153396 1272.218712970216 1.436949596745831 4.0359654396222063e-05 5735354.818558751 161.08911463627484 31381 None 506926 DUSK_20191118 11984318.508480592 1409.5985774573044 0.05238570275246707 6.156076894056194e-06 362096.4284026992 42.551561574787726 18757 13333 562220 MITH_20200621 3859527.7602640754 412.55094955056245 0.006239203604659852 6.668426526141778e-07 5292399.861422061 565.6487888373692 98 2095 706038 MDA_20210131 18081402.9178409 528.5187571361312 0.9845051507865987 2.8811897527628044e-05 2446471.52491722 71.59686957844441 None 370 2554978 XMR_20190904 1287026503.2971687 121111.11362233332 74.86522367271797 0.0070459314613988775 76349989.10694706 7185.669980468375 320444 160751 87781 QTUM_20190312 167542960.99705654 43331.84757388882 2.0577489118278 0.0005328621742511001 241625774.05210665 62569.94455273227 174982 15197 269800 NCASH_20200403 891555.8649744373 131.47602499935587 0.0002930437034674173 4.298652583118485e-08 924194.811426394 135.5699633343084 57559 58280 716326 FTT_20200422 259368236.58475268 37897.80636875574 2.583113449694993 0.00037734702109171533 3048750.18361358 445.3682822081412 10539 None 13510 RVN_20191020 143726640.37261614 18080.707027395016 0.030784420115765054 3.872455426456772e-06 12009041.934357291 1510.64984918892 28311 7090 246956 TRX_20210828 6320438421.240973 128853.53291600321 0.08818908001601905 1.797775825760618e-06 1125086981.7137368 22935.42666774084 1100190 115930 32149 MITH_20190220 19074121.4352666 4873.653508736393 0.037654197463778745 9.618803041334073e-06 4438843.318866936 1133.907040685019 47 1979 558575 KMD_20201030 56826568.043456525 4218.717465361478 0.46205229833664185 3.436160606758124e-05 1912493.6988004127 142.22709273709 96291 8395 263737 BAR_20210702 42192867.78173521 1256.1638068197185 14.197780725844034 0.00042254426867195655 5459254.787988081 162.47446459609742 None None 41859 SAND_20210220 203649373.15381476 3645.9013628577713 0.31044812489514845 5.5502735152641495e-06 174508198.67632595 3119.9036349045205 71088 None 43842 REN_20211207 637444723.3745167 12628.9988270869 0.6361133981537995 1.2604350154973042e-05 97742638.54152642 1936.73399243588 107138 1228 69235 CVC_20201101 17373732.25212321 1259.120006320079 0.025905526352682347 1.8794336602024679e-06 1072514.7533225715 77.81043708650503 84849 7948 301076 PROM_20211225 215513446.6131303 4238.547649170201 13.10433921640166 0.0002577931014374133 2820961.227783615 55.49492667549557 None None 741894 BTG_20190916 179322616.9393496 17403.337754245746 10.238865760974054 0.0009936863631589835 12107431.418861752 1175.0314707379268 75068 None 262678 AERGO_20210110 13126145.353393389 324.37735035636956 0.049501351535409056 1.2288299095361506e-06 4616432.615281932 114.59910279336081 None None 652713 RLC_20200807 94369621.55186526 8021.000454920987 1.3543657375168143 0.00011499955888020983 13398954.135034785 1137.7087977803587 32540 3796 278673 STORM_20200414 8165861.712428673 1191.8784509396328 0.0010695142954052792 1.5619237543887896e-07 80578.56725139856 11.767732215012785 26064 2512 908527 BADGER_20210401 287455763.45495355 4887.062219631676 37.03745747324949 0.0006303000565075687 31377156.783782266 533.9735781849732 29232 None None DENT_20190618 130359820.83332625 13991.10217624722 0.0018340292621636376 1.9692282319605564e-07 3446839.631834531 370.09299982714657 45305 9585 252434 AMB_20190819 3398252.2278297166 329.3633471219711 0.02350251962703562 2.2778969926855473e-06 66982.44579981321 6.4920321000222065 19316 5626 728566 NEBL_20200301 9946698.188207489 1160.8729410518417 0.6187806971869754 7.234740258465275e-05 116694.74490675676 13.64386725000153 39707 6026 856581 DGD_20190130 32026821.575767044 9382.671122438398 16.011230739407452 0.004690298463524205 416530.4263136543 122.01760441448214 15915 3285 543868 BEL_20201101 12884748.130624674 933.9393661555425 0.8048633525049541 5.832988940229429e-05 2034214.015005003 147.42313480487172 9921 None 193192 QKC_20200903 45245542.67280788 3965.9868868971694 0.00776266607753429 6.80285351708773e-07 4234271.619403424 371.07263523452906 62631 9219 295595 NULS_20210823 59455507.75863789 1205.1617032214958 0.6298437174071377 1.278144921471482e-05 13652766.051439187 277.05624602436495 64343 5377 365718 PNT_20211028 35092385.66182944 599.5957180004359 1.0415118019738179 1.779813912439211e-05 7838550.877704054 133.95106881228577 80730 356 342430 ETC_20210207 1015674990.922638 25896.456354469643 8.735925735705631 0.00022207044246236947 1339941868.819539 34061.81470458371 273821 27501 152499 MDT_20210131 13778870.386420356 402.78560779862687 0.02270658163744953 6.646256843310937e-07 3141567.7471546517 91.95424688591211 13769 74 1222000 SNM_20191118 6659276.824129456 783.2658262165447 0.015315111480867491 1.7997468577019901e-06 159590.0115131206 18.754131963073 30802 9814 6555526 ZEC_20190915 343200789.40884197 33154.557726033294 46.31149646584294 0.004475599405753057 215445132.64306027 20820.879937249472 118 15333 175119 LSK_20200313 92419436.87091497 19204.001232796694 0.6646173293904564 0.00013948885294481203 5645713.2387750605 1184.9135267874062 178395 31325 155203 AAVE_20210702 2985630981.719392 88800.58771372797 232.7305660752655 0.006919222965815966 298629962.8769497 8878.452591185289 247523 11617 14216 ONT_20210814 925447012.8016428 19416.539647735335 1.0588683357542796 2.2193577800506177e-05 187875352.6777839 3937.813716453916 142378 19775 173647 GXS_20190923 30930862.34149784 3076.9172223084106 0.4795885551261129 4.775020211480787e-05 2709270.807944483 269.74836509407345 None None 561908 ZIL_20200224 80249378.71487914 8066.02826989497 0.007769372554866971 7.807878594460684e-07 13913999.520511528 1398.295914532809 68120 10543 247600 BCH_20210508 25241278926.15611 440482.8428078436 1354.6749473229725 0.023637834255693022 11148812829.390425 194536.54939855097 None 525963 307702 XEM_20210821 1854328473.4589322 37737.06142310005 0.20618973784993597 4.193858003628509e-06 73919133.35668296 1503.5003792227003 372100 21811 119011 CHR_20210828 230324805.57247224 4695.586435343753 0.40624092916899723 8.281412185747876e-06 120153709.41330937 2449.3898124288935 86684 None 83278 BTG_20190816 242326517.68459275 23547.660678232252 13.847828527229952 0.001344510776175663 12263112.175179284 1190.6477926527064 75032 None 269887 ADA_20200807 4463508629.805966 379378.492373638 0.143830276386743 1.2222275570743454e-05 362682786.1467749 30819.720773751334 161940 85710 30582 VIA_20200629 4459558.063431177 489.12676050264173 0.19267782904595251 2.111122805298485e-05 377074.2510038227 41.31508303402993 38715 2157 2263015 ROSE_20210711 99434143.1974446 2948.7275031650565 0.0662894287982964 1.9658183354433714e-06 3784460.7159415083 112.22848650272513 None 1652 188060 STMX_20210702 197695291.84673265 5884.635316917115 0.021110642874869523 6.276808535823468e-07 136743327.40008804 4065.777104606914 67827 4540 72030 XLM_20191015 1299030176.667929 155626.37857704848 0.06484682888556384 7.768778064534236e-06 213499768.92991644 25577.693622811934 276833 104506 70159 NEO_20190830 618193738.4262283 65081.65426546059 8.753130971075812 0.0009229043603115679 213189545.1308767 22478.078007090953 324027 98212 189804 TROY_20210509 41554906.8216452 708.6012399495144 0.02190873215876741 3.7313864087107906e-07 10947244.065563444 186.44802183469406 16252 None 481033 HC_20190401 63238656.83623452 15410.9850734639 1.4460093363151652 0.0003523817777226899 28300198.45155243 6896.54899855322 12554 795 695528 RLC_20210519 514507777.3383071 12070.46139079907 7.241224796824256 0.0001692551788107139 120461942.66897729 2815.6573257145014 42626 7264 165723 OMG_20200208 158410227.22353756 16173.995468696872 1.1309798920609628 0.00011536342356448229 130957046.37949024 13358.021054379931 None 42932 398546 MDX_20211028 666104655.56636 11380.179784303631 1.0242467115883678 1.748917646287099e-05 26451375.121261798 451.66146197720144 22211 None 33887 FIL_20210110 992984336.0991169 24538.9350199402 22.236827441240354 0.0005502588444151212 89014120.9442777 2202.688645979526 None None 31509 ARPA_20211221 95472716.67853011 2023.6411787233908 0.09678398727355518 2.0535698294908283e-06 27503387.036156595 583.5689086317767 57521 None 199347 ETC_20200801 858616052.0607454 75758.1900519353 7.382322821383167 0.0006512664783429962 875598050.3323668 77245.0179274484 232690 25624 265753 LSK_20190305 152372135.17430228 41038.73684347261 1.1702583733632117 0.0003151883733097598 3079987.1008351604 829.5399940932349 182963 30452 174476 FIL_20210125 1041453667.3598425 32307.866217688417 22.74403539205069 0.000704940322985013 113922341.15192427 3530.9675957906347 None None 34991 BCH_20220105 8162782193.407647 176247.28234228407 426.63149198621164 0.009289250180481734 1754092466.3430147 38192.68869182567 None 748711 290205 BTS_20200701 62455630.77609945 6832.874564940081 0.02304469159104017 2.5211735927189506e-06 7332860.577310689 802.2417819552636 13112 6981 134669 POA_20190816 2975073.079968627 289.21327388373464 0.0135213622265224 1.31391501293323e-06 75641.65108793943 7.35034675519246 17740 None 702581 BCD_20200520 105577352.14742734 10823.5592904474 0.5617781048801797 5.7545970020487896e-05 15568068.554558596 1594.7214719388348 28564 None 907127 COMP_20201201 13040.113748610573 0.6718820079580776 1.3907750810899918e-07 7.13124e-12 1.6373830401180793 8.395729539430903e-05 1938 None 6005684 NEAR_20201226 237584393.64505413 9620.427026244282 1.0191955833783306 4.131558908836878e-05 16983932.325706333 688.485292241569 34112 None None OMG_20210828 915585823.9078888 18665.867814147183 6.530676606665132 0.0001331557334029042 396089260.23716134 8075.971161405478 403 5065 356595 WAN_20200520 17477019.254125617 1792.3181302470718 0.1645869528723634 1.6859531856935923e-05 633709.6674350043 64.9143090610236 104277 16195 906142 WAVES_20190122 250628099.2564396 70965.32610458123 2.505687979222386 0.0007095787041169804 8583559.323657094 2430.7539294984426 135648 56622 38211 XZC_20190804 71019785.2711513 6582.010134521132 8.800975238992216 0.0008155042244237727 16161282.1512435 1497.5151626438123 60852 4044 218512 BQX_20200317 3043936.5183337983 602.6078422090682 0.021389633965351217 4.2534023673370476e-06 681601.7815683392 135.53886130076745 10813 11 311435 LTC_20200313 1932962671.5070968 401512.45468603837 30.28081713037428 0.006262754824914282 3997086814.8450975 826687.5569273311 447886 212206 137206 DGB_20210428 1902006183.9508145 34515.67495635852 0.1334042958933014 2.4208855647727678e-06 132013370.4005688 2395.6444627191727 206958 34482 307288 NAS_20190414 64957661.55390289 12803.950629353856 1.4272731554485134 0.0002812793969257325 6563474.396294989 1293.4946004412107 24094 5170 612650 SNGLS_20190305 7977545.018412691 2147.406053588928 0.013511754635841509 3.6371118724676958e-06 1327107.263262373 357.2324774493712 None 2186 1603096 ALGO_20190723 95235340.76363647 9204.68051412344 0.6412827106510811 6.202646651140297e-05 83464968.33071384 8072.940338254547 10526 513 261967 XVG_20190714 108086232.36988048 9496.542742114345 0.006846438936128404 6.006499969157997e-07 1707867.3181715913 149.83417057575613 304314 52970 387398 LSK_20210729 386206713.53974223 9658.306652579411 2.680442727697128 6.696837624178205e-05 26022958.364568084 650.1594862203449 196351 32589 298346 ONG_20190904 0.0 0.0 0.17956687223281317 1.6920694846774012e-05 7958350.293325556 749.9201557763109 81448 16278 256067 XTZ_20201015 1662902561.4877715 145681.5971242254 2.286037671356125 0.00020026959763500403 101112848.9588122 8858.047192502143 74554 29917 89746 BEAM_20210203 31582543.95597782 886.7110023264286 0.39323851285821987 1.1072549584618986e-05 8127021.8649088275 228.83529876161938 16289 1671 285375 BRD_20200806 8268374.862564993 705.8244925761128 0.12457938102975401 1.0630430352864237e-05 332695.1815116524 28.3890715025182 None None None CKB_20210725 277304435.8660418 8116.367801851546 0.010209709248342379 2.987827922359001e-07 8948186.410245132 261.864863735904 50173 5180 122182 RVN_20200629 122471436.5358905 13429.123714551286 0.01895112836998083 2.0772649507529057e-06 9736439.169197261 1067.2274197323518 32196 8242 198358 QLC_20190801 4996981.8499698285 497.1110191436206 0.02085652934588928 2.0713251862616265e-06 150689.9702016395 14.965477976669627 24901 5765 940522 DOT_20210124 17702992560.13173 552942.2502421263 18.600319045809094 0.0005803862312318022 2215949804.9533052 69144.33847764958 132772 8989 32256 HARD_20210703 47502109.930172116 1402.981699540725 0.717327023081152 2.117849141758233e-05 5092768.048646756 150.35979537857287 34778 None None TNB_20200518 3881391.2492561326 401.05871618339415 0.001181660379813036 1.217194322636744e-07 189394.8884927524 19.509021961646223 14868 1435 6344512 MITH_20200331 2048497.4593240072 318.8345900746704 0.003304529694332326 5.15442148078086e-07 1813532.3602151244 282.87565911774135 94 2089 1216575 WBTC_20210825 9465774260.265284 196978.859773527 48012.161832619124 0.9997709308121167 304516132.18234795 6341.026217078457 None None 222414 FUN_20210310 206613776.87458965 3773.5346299771177 0.03435493895080042 6.274487297150746e-07 5576859.970493629 101.85416743997881 35736 16925 200934 BAND_20191017 5943597.733563617 742.3572368004793 0.3794745012529196 4.739648522906588e-05 2967945.133971198 370.6972859533116 7505 978 550778 BEAM_20200621 31524729.503129475 3369.7193692758046 0.49386509626022496 5.2762608769501816e-05 61975589.228273 6621.228737306251 15227 1516 471978 XEM_20200414 332879527.3899671 48586.658631654645 0.03709964478417965 5.4141430729521e-06 12847329.681847991 1874.877277330979 210693 17983 203182 APPC_20190712 6521295.658834187 574.3084464873177 0.060066607631124466 5.278604979807508e-06 311062.2153929055 27.335896331727106 25470 3358 1256272 CND_20190324 26254068.23213526 6559.547671790239 0.015165943633182834 3.7902586470348867e-06 171443.141225983 42.8469117533065 36736 6205 587150 STORM_20200305 9007012.678989029 1028.8839934424673 0.0012077245427007015 1.379081354949746e-07 1318837.05069401 150.59589521646024 26111 2525 826076 BRD_20190130 11788648.039294723 3453.636735984206 0.19680420030669335 5.765111212542632e-05 175286.39458036076 51.347763778751066 135 None None LTC_20200320 2507643183.265741 405768.87206514063 38.986819644643546 0.006308568116143195 3454578337.742642 558995.1413027459 133686 212401 131624 KLAY_20211028 3821681323.669516 65295.28165076186 1.4889829668620576 2.5424622371768284e-05 27345058.46419873 466.92124803237397 48711 923 46414 XVG_20190905 71442967.9936509 6765.633719753932 0.004488979857291216 4.2498082422393694e-07 846333.1979412967 80.12407973828857 302761 52764 272149 OG_20210111 0.0 0.0 3.3781777779439124 8.78735688591865e-05 1498617.3214377493 38.98221498250472 None None 397078 ENJ_20200109 66411216.785019964 8251.893925675535 0.07442217201601634 9.260412313989162e-06 5292720.188217433 658.5775431939794 50050 14262 25300 RVN_20200127 142252178.9206409 16576.23624599772 0.02643336090359052 3.077394319854242e-06 8727560.381222052 1016.0699897873918 29484 7346 203317 GTO_20211011 25813311.903118305 471.6893002986931 0.03898837667524511 7.123288584411276e-07 4991419.275214425 91.19466614192342 13235 None 1255759 EGLD_20211202 8246870461.155352 144278.43805997167 408.44206429586166 0.007144532833095337 472200700.3794636 8259.808924156085 None 13344 16321 MITH_20210204 9047194.975238552 241.4124854690489 0.014721687677249691 3.924808926265723e-07 7962519.056816637 212.2811362045771 24424 2169 386896 ADX_20210508 163888038.56526297 2860.065348405791 1.3808710712286874 2.4094932570125242e-05 5278022.87653201 92.09665403480373 58399 3823 10477 PSG_20211125 57367332.487405494 1002.7953724094067 18.495216568500148 0.0003233325154763927 13059019.859825835 228.29717755914163 10837101 None 14211 TOMO_20210202 107045844.43882896 3208.117628978312 1.3311701369247386 3.985387843713944e-05 14217938.692532929 425.67060705550153 38104 1752 172672 KEY_20200224 5729365.22459744 575.8701513982892 0.0020851682512536733 2.0967188806585847e-07 2956243.024041578 297.2618905259331 23537 2773 278947 XVG_20211021 420369723.07313573 6340.360227111654 0.025416787357082794 3.84877533044366e-07 33863714.402576685 512.7863988424454 329871 55209 184223 SNM_20190329 11473169.55883277 2849.724575232868 0.02871184259025874 7.131442880963134e-06 6458012.258167489 1604.0400541658921 31676 10065 None TRX_20210428 8989772465.637968 163169.23281077045 0.12545084406092977 2.2775219593021387e-06 3544189675.6824584 64343.68676210962 824177 100808 21813 NCASH_20200321 1097233.5476816248 177.48651650225787 0.00037484460109067695 6.045400860097403e-08 1155975.8323771697 186.43291836059382 57787 58319 679947 OG_20210821 8344493.452952283 169.83798571318698 6.036005168314788 0.00012285262914051113 2092110.4646759832 42.58135370509955 702302 None 316019 XVG_20210219 427363448.8014603 8268.701162716805 0.02607581524740385 5.043634315195428e-07 27683114.742931042 535.4521273609676 292383 52249 127970 COS_20200423 10203744.1269674 1435.3440591080023 0.005180737577226263 7.282200803384813e-07 941764.5275956658 132.37725897570502 10806 None 147635 AXS_20210804 2128922922.8104947 55418.04800745021 38.52947725341473 0.0010029660055099023 355276806.42157084 9248.258341095903 321788 None 1596 KAVA_20200905 75938825.63100176 7239.433588099447 2.7959547063141383 0.00026666094609987607 36969086.59224239 3525.8838724649872 36558 None 95209 NPXS_20190725 147185660.71055055 14982.29984659786 0.0006254057046364806 6.366120006121567e-08 4488302.868432963 456.87262639972414 63836 4675 202780 ALGO_20191024 95149441.96703555 12744.666420848456 0.21030891027392473 2.816954940946383e-05 102947427.74141112 13789.157333190004 12660 653 327819 NEBL_20210120 15153272.933752824 418.55752896176847 0.8682027055477822 2.4088714653644826e-05 1096848.5197066686 30.43260616518837 38845 5882 802156 BQX_20191030 6449040.659280342 685.4242480182179 0.04579299782388415 4.867023291715186e-06 936979.6591095831 99.58513400429074 59823 5723 349258 TRX_20210909 6687840798.037855 144299.0521188452 0.0927538935874372 2.0080354058314514e-06 3294345755.9272285 71319.51728491562 1116690 116700 34374 ZRX_20191220 112924009.17954771 15813.316988422182 0.1874311994225318 2.6230139475086884e-05 27688625.48703182 3874.896552099755 151940 16000 133282 QSP_20210620 27106344.550478425 759.4140689134771 0.037873549342452205 1.063755726492617e-06 250787.72319677763 7.043883694987866 65673 8485 222044 KAVA_20200109 14719068.85826467 1829.055514282866 1.0743639610456932 0.00013388905690447022 5951250.130397645 741.6548732572923 9844 None 303770 HIVE_20210506 227614951.54879978 3975.967757770074 0.6123804564208318 1.0690303619514261e-05 12278291.203206107 214.3416882672078 19536 166 115181 DCR_20200626 176736170.89528123 19100.107192267806 15.148609300262564 0.0016371298528371876 90715751.64893289 9803.768927122455 40515 9851 289524 CND_20210203 27471162.45297086 771.643211225766 0.014214244093647023 3.9996732250112314e-07 3105391.51506473 87.38101874536375 34022 5902 421392 BQX_20191012 7529273.135251094 910.5647157137894 0.053459003287137326 6.465538587418632e-06 343679.340083084 41.565908422770754 None 5726 393366 BCD_20210821 549265407.2571304 11177.988532194884 2.911163739857896 5.9215406423890705e-05 13043196.844427574 265.3090898443552 34754 None 1368102 ASR_20210108 0.0 0.0 4.111170274483257 0.00010417938777338936 1833428.7541310769 46.46012506877048 None None 243323 OMG_20201130 527197842.44691277 29065.933304183414 3.7688693788197978 0.00020753210383061128 292316289.55581796 16096.343082729492 286980 42709 105290 SKY_20200610 9994071.286113642 1022.3892582225916 0.5549721499131971 5.683118430553937e-05 465667.08498931205 47.686018003227986 16098 3820 485273 IRIS_20220112 100309634.14656414 2339.923253868277 0.08379406838525194 1.958583349300103e-06 7622449.159571314 178.1653796326535 None None 695613 WTC_20200410 7562938.040128821 1037.7069365423588 0.26044257940366233 3.571890799969853e-05 9023457.049030622 1237.5397022696807 54653 19641 978850 LRC_20200315 33492436.591523744 6479.595298633141 0.029486309428059125 5.6911276781897085e-06 1657919.6555621806 319.9936724195783 34329 6820 607711 PIVX_20200621 28482881.191792347 3044.579651062229 0.44895277975179226 4.7983321540723725e-05 243768.50743535213 26.05356999958771 63687 8484 395833 XMR_20210128 2243096922.775055 73768.80827848871 125.8434872114458 0.004138619239739625 428907925.83862484 14105.510211823663 338518 191447 53273 WAVES_20190124 302501865.5023011 85149.0464974601 3.025018655023011 0.0008514904649746011 65498863.11638902 18436.797841783093 135591 56641 38211 CELR_20200107 12868033.558587823 1658.484322477576 0.003564545848014395 4.5962570799329387e-07 4206155.153595646 542.3571817649498 18821 None 822333 NANO_20210611 872835702.993281 23683.45615058361 6.54822116503336 0.00017766678776808578 47961398.6262554 1301.291971672137 131398 99467 52991 ORN_20201129 31548619.03719202 1782.589193575352 2.4974017155299544 0.00014108033919103767 7471037.486933259 422.04523854178467 23256 None 222289 MFT_20190623 26125129.777357373 2433.4973403827153 0.003014254868749074 2.8100979145548004e-07 5221857.16555709 486.8178229774163 18784 2104 885644 RSR_20210108 371555481.3200619 9492.358972163805 0.04000553807123992 1.0134798746540447e-06 160622669.34025294 4069.132691070745 52631 None 170522 ZIL_20200404 41344927.452394344 6148.226989627991 0.0038767089098704706 5.761313874509088e-07 11192477.431806367 1663.3535562552825 68747 10567 227703 ARK_20190703 61925384.647614695 5731.122365104219 0.4336105735047637 4.009285784944663e-05 739721.2389658535 68.39671422760794 63500 21856 202264 MITH_20200325 2220145.393778096 328.5044355670634 0.003596709046647609 5.329272767672244e-07 3664645.587993094 542.9934888245992 93 2083 1254611 PSG_20210711 30933069.05687463 917.425875486161 14.659470676866528 0.0004348807783253636 6921732.465108377 205.33677293931362 9244670 None 41128 STEEM_20200707 73181522.61109555 7839.64386754277 0.2037376478776718 2.1815126889283535e-05 2128527.5962526454 227.91123821883477 11548 3863 224107 ONE_20211028 3330572704.0269217 56912.38194153689 0.31162998332292136 5.324096156299993e-06 524973883.9185095 8969.006793650313 252908 37980 21044 OMG_20210523 728188213.4876745 19374.22441734079 5.192970550599914 0.0001381735627732221 374528809.59595406 9965.39061387674 324167 4929 131770 XVG_20210206 285770150.8568235 7535.406525045717 0.017418237722115607 4.585365837113189e-07 28464278.476901338 749.324542403862 290491 51815 157669 IOST_20190930 56055071.08165249 6954.152443352198 0.004670102249591079 5.800007866599777e-07 15724143.928291906 1952.8514282021508 195387 50832 97717 NULS_20200721 44976650.82167742 4909.156927205101 0.4665961234034764 5.092545010856127e-05 17467250.872185472 1906.4187810579165 29700 5181 415817 PIVX_20200325 14823138.38334282 2190.8328083324427 0.23661238416118477 3.501605824207341e-05 264594.61869743007 39.15712447467198 63796 8514 174953 CMT_20190807 29491298.930155903 2577.276172308412 0.036863873823536675 3.2191912402000218e-06 4770979.664342244 416.63271787830513 290586 1649 586149 MDA_20210204 14572978.554979052 388.97054099228495 0.7427652182311721 1.980204537182612e-05 4220964.839842506 112.5304944548846 None 370 2554978 IOTX_20190224 10294633.957824258 2502.7643162968775 0.007426581146905324 1.8048578309462777e-06 787647.2332373122 191.41934206480906 13450 1609 1268862 ORN_20210217 124319742.75181825 2528.2247725834923 6.068082585600798 0.0001233207798861849 12425478.318794006 252.52122974869573 35410 None 107725 ADX_20210202 46253250.63446111 1385.4440918458795 0.4070685013117997 1.2193103022661972e-05 1377789.488210406 41.26953846626016 52837 3737 11021 ARDR_20190105 55937765.68548394 14681.169607112995 0.05599217608884798 1.4695799455620216e-05 321041.99338216096 84.26121435413317 70663 6617 809411 REQ_20200707 21215896.299823184 2270.740318221513 0.027488821721033847 2.942132394513781e-06 499828.09424891294 53.496670126554505 39098 27891 569797 RGT_20220105 294383432.28656 6363.66969749011 25.63558275799066 0.0005576535311722392 9390276.779256871 204.267679579277 45468 None 48282 REN_20200718 154341567.75777274 16858.08551980454 0.17625249236395513 1.925520059319682e-05 19015833.69693318 2077.438380418618 16254 914 163395 TFUEL_20210428 0.0 0.0 0.32033925463708274 5.8165197857427405e-06 54560944.93427824 990.683505518503 147784 15246 21480 LPT_20210823 519980981.1417071 10540.137102636369 21.607304433841588 0.0004384496683254602 14356510.648639176 291.3184914610683 15394 1307 104852 BLZ_20210304 59472365.141608074 1169.9562568738509 0.2180644389230574 4.303772433053123e-06 62293491.101032004 1229.4393853637814 47718 None 336789 REN_20190712 83832639.85517493 7382.856977958782 0.10445643155671132 9.179546865278106e-06 13003216.251727758 1142.712145180607 7440 800 1032866 AKRO_20210610 59911526.05818365 1596.1116973850333 0.022069127531850627 5.892383267755251e-07 16020808.586279642 427.7502330505031 40924 None 176887 DOGE_20210418 37483584821.500046 622044.596487698 0.28510938733297203 4.743112986760592e-06 30301421158.359417 504097.9729147473 830183 1391798 11474 HBAR_20210422 2388806789.433233 44087.41832819121 0.29413313257705986 5.438044183574661e-06 185207011.93801 3424.1770221614584 83026 15283 42635 ETC_20200607 798406858.365907 82569.46359288463 6.8638952870006635 0.0007098488021074026 930281886.2763116 96207.68601264808 231897 25539 386099 C98_20210909 700926670.1538829 15123.424310234494 3.7805085540530508 8.165787412252638e-05 308047626.83284295 6653.738240769573 195517 None 33217 SC_20190220 96962726.1027043 24769.183641781077 0.002462420053259759 6.289685748500212e-07 2131875.716763469 544.5386255505115 108939 31175 213763 RCN_20190821 7723601.347346831 718.5700996232164 0.0152297394561143 1.4169083703387897e-06 1763712.171219639 164.08806896996674 None 1111 1641051 GTO_20210513 40023181.75216221 775.9710300377327 0.05866643979710825 1.1639290792436424e-06 10816581.271444844 214.59855964290833 2186 None 267517 TRX_20210110 2462463494.48096 60851.06007024712 0.034313073080196405 8.490181245553412e-07 1810289727.5436811 44792.51350611288 None 76932 32747 ADA_20190524 2491081940.799719 316217.92875639914 0.08013828248154231 1.0190324864720656e-05 174908198.67820245 22241.197475682216 151569 73259 118037 OG_20210610 6760053.182491867 180.46751614795355 5.259062905999343 0.00014023888001198922 2520288.8826658656 67.20636290707507 669564 None 239206 ZEC_20200325 314095108.1663125 46422.68392237072 32.93704547963313 0.004880308561121952 270337406.60692817 40056.11130698154 72887 15646 148838 FUEL_20190421 6146713.333707285 1157.4965048948004 0.011588001030848604 2.1817688634876837e-06 1220221.183081075 229.74114143821706 1 1524 None SAND_20210814 583170415.545898 12235.332048405655 0.6616488200250257 1.3869506680699745e-05 122668480.17573094 2571.3811523826707 154547 None 28891 SC_20190616 131696165.15075001 14936.221535813986 0.0032242642814105187 3.6566982039104774e-07 5118803.1332192365 580.533001941937 109587 30882 233756 ONG_20190803 0.0 0.0 0.23475131831350096 2.2303744909951112e-05 18769187.194381427 1783.26224686649 81507 16296 237451 HARD_20210408 71871878.25095294 1517.8470889414311 2.158117163292747 3.840542707110106e-05 18982729.294783346 337.81290373916636 27603 None None VIA_20190531 13568881.494313698 1634.4298146799008 0.5863146649798986 7.062410926271217e-05 1146528.0638789576 138.10420938205496 41195 2238 1805422 PIVX_20190601 43569142.12423217 5080.372269590736 0.7242916678964068 8.445398151539908e-05 1864906.4367248793 217.4521407826526 62985 8607 306282 ETC_20190316 479230876.6888802 122122.87706213858 4.39969250959654 0.0011210934526805973 204395832.41827258 52082.46462213315 226198 24207 601028 TOMO_20210508 231307340.73851633 4036.5195166574786 2.8477745096759675 4.9684357418349556e-05 46868746.755156726 817.7064432669149 47574 2134 78743 LRC_20191024 25772305.10967795 3453.9664548464757 0.026723130063214424 3.5798686278622834e-06 3494796.386894902 468.1679098450127 34035 2439 558420 ZIL_20191022 49630220.40819041 6045.5843777142545 0.005356700586688217 6.523099980992132e-07 6197374.4874633355 754.6827146141961 66322 10574 188924 POWR_20210704 92160458.51320374 2659.886113144211 0.2154964075468532 6.204130444772019e-06 10077163.89504228 290.12102814101945 91211 13996 143959 CND_20191024 12272146.599773873 1644.8338150256982 0.007007126919139257 9.389422868564912e-07 285979.735414312 38.320765395457215 35479 6065 332150 BRD_20190803 15572049.420959815 1480.671762617784 0.2596349001255876 2.4667936366552447e-05 615304.7453217582 58.460161928512 169 None None CTSI_20200518 7521815.855252801 777.9052070388336 0.03721093732075559 3.852203765333262e-06 7280494.744475062 753.701768552665 None 101 293741 SUSD_20210127 155764293.85153207 4782.745087999013 1.0090400520977172 3.0972318696503027e-05 56109594.75597791 1722.2747968239091 64701 3425 36126 NU_20210821 173323489.4505232 3527.271063933908 0.31353874949806193 6.377629752310834e-06 72290526.66818763 1470.447319278165 None 7189 175162 KMD_20200701 75024698.83567306 8201.028035429737 0.6221850306100112 6.802685667045867e-05 2569350.951312691 280.9210448693857 99828 8382 267955 VIBE_20200414 1500041.2801215423 218.94405517247287 0.008017256715084638 1.169999744217605e-06 32615.904433374257 4.75980765 19185 None 1554973 IDEX_20210104 16388808.95501304 489.8992072797698 0.029014011235229106 8.703451598092141e-07 2711113.0499645607 81.3263668233228 44405 1946 159964 FUEL_20200318 1344377.7676899685 247.48013941797657 0.0013446610192022475 2.5e-07 218316.0213578852 40.58941589 1 1469 None DLT_20190314 8556710.008124216 2213.09633169289 0.10639157556498084 2.7521132592214707e-05 1881688.1275082307 486.75083698446355 14602 2680 947216 DOCK_20190805 4461873.926189366 407.8258694220719 0.0080951438447451 7.399153654257216e-07 697535.2999627208 63.75638237784871 181 15217 218357 CMT_20200511 6684815.315077706 764.8946869428803 0.00837267362642611 9.5618750515335e-07 6975753.019324338 796.6544706891725 284644 1633 895705 ANKR_20200407 5999644.876101542 824.8831784660944 0.001505851294510864 2.0665879613524623e-07 2239359.5455509354 307.3234053617834 None None 5685 BQX_20200421 3857674.5262503424 563.3491085921496 0.027340064902792036 3.993363039184018e-06 278380.7366786328 40.661035320356675 None 14 397017 SUSD_20210527 244215000.08838317 6233.238375613348 0.9988550487040273 2.5496642365372484e-05 79630596.03198068 2032.6401022882214 130946 6687 36942 GAS_20190605 39640167.154349886 5168.944835717138 2.8599461080215294 0.0003723185162818741 2586336.542249578 336.69899629056454 322110 97625 216321 XTZ_20200625 1881609489.6887388 202232.7059347621 2.626836755270073 0.0002826100560147247 127235425.40574805 13688.71157632284 66871 26688 92596 MDA_20190614 19657700.773964178 2388.2561172111323 1.0014678760184574 0.00012167047451751379 864437.4635739542 105.02235658512586 None 363 1548972 STRAX_20220115 186676274.77448097 4331.746977330082 1.4072566710291832 3.263838533358552e-05 4344257.427283011 100.75599627199311 161330 11163 207386 STORJ_20191026 17715447.09047198 2046.0917711951408 0.12319581146303159 1.4229509911991055e-05 4537969.564299521 524.1499863401667 83175 7829 147955 AMB_20220115 13395432.444544483 310.7892641619285 0.02504482681223906 5.806716890505043e-07 61639.30286151218 1.4291253987429737 2830 165 593144 ELF_20190509 55593516.943475105 9339.648471214357 0.1615468740899825 2.7119722068058305e-05 12456750.778873231 2091.180166110433 88715 32646 938169 STEEM_20210819 207425904.44057456 4601.590723812211 0.5335723232373593 1.1847456311133187e-05 12400246.552524298 275.3354566574063 14197 3926 204602 EOS_20220115 2811349815.8854475 65236.228234633876 2.871695849346631 6.658155288316006e-05 434430357.7497152 10072.462181238254 261909 96796 67163 TROY_20210217 15826134.043112209 321.8477909277289 0.008359855400188632 1.6989615305061366e-07 4520370.788170583 91.86685301461355 10906 None 643459 XRP_20200730 10884642645.428476 981374.43935059 0.2426965515770819 2.1881856850515318e-05 2015964293.046442 181762.12966166512 953372 215722 30317 PSG_20201229 0.0 0.0 16.34986681167511 0.0006023657245611677 17009650.25500407 626.6736248316771 None None 36463 FUN_20210128 99311716.08957261 3282.9371793955124 0.01661670066504763 5.464740257698891e-07 2063555.5824311124 67.86422583293408 34332 16485 254768 ROSE_20211204 1106445648.1186347 20607.18733911681 0.31517539893841745 5.874502400147097e-06 231164877.96886677 4308.644123341479 86726 4767 55340 GRS_20190916 15868032.683106404 1540.1933388129864 0.21621463200564148 2.098636564591434e-05 502265.66117009387 48.751237226292254 38419 106999 None ATM_20210115 0.0 0.0 5.870276448262066 0.00014964018051272546 3990928.677014229 101.73341799237204 4808202 None 231684 ENJ_20190324 159346626.87604713 39815.34936517925 0.18365939278860527 4.5859047019744675e-05 14808184.398469701 3697.5469334591207 43117 12064 17926 NXS_20201226 15368496.160810476 622.7626906913126 0.22707226208593742 9.208814697131604e-06 38265.7070443119 1.55184874712892 24173 3521 534384 ETH_20200625 26239099771.426495 2817499.7124246154 234.5649846444734 0.02523322097372592 8149316604.925404 876659.0076886888 461774 467187 17846 BEAM_20211007 58864934.084581524 1060.4534656906405 0.5929445236802541 1.0687622768756735e-05 7759290.8784756325 139.85857116528803 23611 2751 295538 SKY_20210616 27817749.76803923 689.2033662207883 1.3703325008886316 3.395090473994031e-05 532490.7323876844 13.192814239224255 19453 4397 389358 STX_20210620 858614154.7302091 24085.3449749971 0.8283195487046475 2.3265040604807973e-05 7815052.905887111 219.50166873221602 66093 None 53312 QTUM_20200721 228059222.82705522 24892.43847865271 2.2300661205834107 0.00024339497246659992 234885122.80876 25635.94750450529 None 15081 105183 BCH_20210207 8509320029.455597 217005.1866346113 458.57766726001006 0.011657212818964743 5703142031.475636 144975.96621947835 None 437699 337812 DLT_20200801 3795737.1715173842 334.9034040434111 0.046289952931110726 4.083686849995964e-06 390462.66179153515 34.446508073696 None 2561 5788562 NBS_20210125 0.0 0.0 0.01367275836589084 4.2363518276136514e-07 3876613.566181273 120.11255173654858 None None 755646 GVT_20211007 16357244.046354119 294.48438441063035 3.6694043815428126 6.613993895711151e-05 295698.9342189768 5.329886658799661 25774 5786 570262 EOS_20190804 4349622629.057679 403116.68243566895 4.272877056043744 0.00039592763245247995 2283154325.7305565 211558.5997101254 1249 67656 89433 IOST_20190411 207400465.4544673 39052.57617304038 0.015332772250627947 2.8890717520592e-06 42859664.06069454 8075.815822244951 196682 49026 95930 QUICK_20211230 119972595.66114166 2586.7652484095643 336.8733484438534 0.0072399720559623735 33022625.423012823 709.7114876600973 65209 4453 4934 AION_20191118 32620561.664201595 3834.9446440154265 0.09058006275311185 1.064446599125429e-05 1925357.2019623767 226.25728702755794 85 72547 271736 GAS_20190703 44643835.725210205 4131.735100956636 3.207908397173576 0.00029661226736786073 1699292.4075364484 157.12137365408202 323520 98020 188893 DGB_20210819 939266898.5990978 20837.779057145053 0.0641699775277925 1.4245900023387639e-06 39299081.43972199 872.4497136667575 224183 40996 143665 ANKR_20190801 16464904.65393571 1637.1077783013263 0.006263364713826585 6.22767231688313e-07 7256409.718877308 721.5058357763245 10065 None 12914 FTT_20210202 1060553292.3050961 31767.22225479776 11.859684875275033 0.0003551366005168756 19335366.3693781 578.9948345495158 53618 None 4702 FUEL_20200223 3153313.8011042033 326.6737840317291 0.0031854732221354098 3.3e-07 68866.73236480508 7.13426863 1 1476 None THETA_20210218 3509949705.414252 67253.15117616202 3.50830288057512 6.728555332281044e-05 236098748.93633333 4528.125279308916 86031 3874 42831 LPT_20210711 373469817.29658186 11075.277429380632 15.643194477187528 0.0004640634535645097 4082900.7887343667 121.12136324485441 13998 1175 101406 FTT_20200502 318701267.54187125 36062.515519725144 3.177906252163306 0.0003595947214857378 2518748.667585533 285.0080064496659 10843 None 13192 LTC_20200319 2224649955.7988987 412696.0592923101 34.590718759009356 0.006416943610710774 3044607060.672048 564806.7610626294 133717 212386 131624 XVG_20200410 45916179.76063652 6297.2644654460555 0.0028296602200571013 3.8807929679567983e-07 693111.3977226986 95.05812108560076 294340 52064 317602 SNM_20200324 2863877.69351233 441.9666283558133 0.006544488014886114 1.009975149709302e-06 153154.9631532473 23.635570343712413 30090 9693 None BAL_20211028 261053243.19040954 4460.313144796573 24.164995456172957 0.00041285102945918666 186006893.20790768 3177.8668233836906 104917 None None FIO_20201015 11866382.999605287 1039.584909153534 0.10894263421173739 9.532935252677823e-06 861624.346008788 75.39572695358692 55631 148 226415 ZIL_20201208 408844384.23631686 21291.10605400687 0.035622859781003886 1.855155737146115e-06 60731057.146847315 3162.732295541359 99626 12613 57741 RAMP_20210602 65607130.70592612 1788.1136474459681 0.2357554410158336 6.428386942562703e-06 9035328.673113193 246.36796764364965 28212 None 97313 XTZ_20210428 4163819856.4252815 75582.23672835612 5.416634297311856 9.82955735586158e-05 294609162.4485506 5346.267628382302 106946 43519 96118 SOL_20210418 6763365116.21136 112194.22342897959 25.01097915337799 0.0004156003549056693 259794445.97361812 4316.930708191601 None 8061 23689 ETH_20190905 18790062457.39357 1779414.8777430698 174.77627554812665 0.016545886046527684 6753228074.432234 639320.9937409321 448003 445314 24829 ANKR_20200707 17938082.074474808 1921.6888511927261 0.0034471487070699643 3.6910206451442176e-07 4046355.603392992 433.2619024844231 20772 None 5352 AST_20190816 4830744.499842538 469.0101250497084 0.02814447497108138 2.735985143669515e-06 696950.6567955626 67.75207726641433 32074 3588 246777 GVT_20190421 17991593.73305722 3388.2645973661183 4.055835694927202 0.0007636999038207426 1557507.089754823 293.27322507999986 21388 5797 198674 XRP_20210107 11458017061.61058 312606.62269504135 0.2523851552432814 6.8351840422896655e-06 5964831226.894267 161541.6690324702 1047956 229214 14934 NEAR_20210509 1935503087.6380777 33004.52323748361 5.236623036657769 8.919080211762166e-05 84433228.91983618 1438.0770508062665 55121 None None ETH_20200329 14468066254.835968 2319907.5983491763 131.42405214081145 0.021022309880396117 11067855577.856102 1770390.4717522357 452628 456225 19216 OAX_20200531 2242034.6329823807 231.64400090175099 0.04289241724059127 4.426020232440221e-06 603813.0017245478 62.306783673506736 11797 None None MDA_20190719 12901325.067037545 1202.0920428917452 0.6521122436403651 6.105164096205494e-05 401443.41573819873 37.58368213945982 None 364 3017941 RDN_20191216 6116792.9106622925 859.5203553531595 0.12209291056958961 1.7171516094677033e-05 1067231.5428390114 150.0986709966405 25312 4356 2347248 AXS_20201231 29635567.99438172 1026.8732244304963 0.5340728403120757 1.8519626059213057e-05 5093214.1379946275 176.6134020596159 29029 None 19757 OGN_20210814 343138764.8302807 7201.639445115584 0.9907577716891436 2.076599983677458e-05 43646228.19545249 914.8124733226597 117966 6061 91977 GRS_20220105 58442666.875997275 1261.8792705498854 0.7307390388719874 1.5910728289476674e-05 5961530.898187322 129.80324474903927 43077 107175 None VET_20190430 324917264.9581059 62427.88017482076 0.00583612079563766 1.1213220842968199e-06 12131096.443248807 2330.8061681514982 107674 55318 430690 POND_20210806 61071184.741103165 1490.5719444451913 0.0787682645990123 1.923189912148555e-06 50618583.90629536 1235.8930393021903 19903 598 162799 DCR_20210725 1698437662.8581486 49711.23060913852 129.15506874018638 0.0037802137498989087 21534726.368506674 630.2955781185708 47516 11440 137794 CND_20210115 17311186.029402923 444.5266532490264 0.009039090878481289 2.3041694929500635e-07 213014.24239916584 5.429981017985889 33939 5902 513668 AGIX_20211021 322080108.34817684 4858.902667276022 0.3339416794111247 5.038686030425635e-06 2677759.3545816652 40.40342815717039 66322 None 118461 LTO_20210210 87744790.78949551 1886.9032532412762 0.32059537538897986 6.883491393247053e-06 14600026.535026822 313.4766272691851 2128 1567 777868 DGD_20190227 31788335.04711605 8345.124938003863 15.894175470645756 0.0041725645552842085 454092.7094934532 119.20914978852764 16053 3297 571797 PPT_20210110 34891121.56545634 862.2401519756748 0.9638415115943575 2.3926564442436768e-05 4237809.496394336 105.2000985540901 None None 755937 YFI_20210704 1164366725.8807929 33586.96907643193 32710.402463999937 0.9426934344129102 176982724.47859177 5100.53193488209 132197 6728 17976 CVC_20200403 12684806.279330159 1869.244917653028 0.018970919728395128 2.7828406524239276e-06 5669000.163641373 831.5845694273936 86294 8061 115940 RAMP_20210823 101496953.05536163 2057.367172073193 0.3136083703164078 6.36461046946777e-06 8092910.2969957 164.24377178694033 None None 126255 BNB_20200325 1885028599.3923173 278603.7877669952 12.452973087703171 0.0018431354979351138 285530102.6883414 42260.644449124535 1126969 60511 1672 GRS_20200518 10656503.016369818 1103.7523854569074 0.1419571494324998 1.4703279497795322e-05 170897.66270983499 17.700806971595785 37333 106884 None OST_20200322 5500648.1820576405 892.7244657732134 0.007957936947500669 1.2921786192496826e-06 1250825.208620627 203.10409615719846 17808 752 732102 PERP_20210722 332157617.7225461 10321.545616561241 7.653312892010142 0.00023698114834625757 23873534.319018148 739.2324941936025 23583 None 152304 ENJ_20200312 76275379.43243591 9616.497325083112 0.08328339819436673 1.049128021614313e-05 6818151.486399582 858.8883180894169 53782 15235 23333 ETC_20211028 6385562023.7351055 109115.63178512378 48.857253029500114 0.0008349095852843063 2197055021.7782907 37544.93311304537 546630 61339 217392 EOS_20210813 4475118491.166972 100659.8641181416 4.653654738428316 0.00010466504789335415 2034169124.5914583 45750.366285327895 None 92017 58453 TROY_20210221 17096393.44695794 304.5389224383252 0.009086498228393093 1.6163140086022834e-07 6380090.407498125 113.48958908686149 11047 None 643459 ANT_20210930 161768523.9179283 3894.4409946357277 4.266030478678676 0.00010263125610751391 12785090.66482182 307.58099852711973 89037 3189 112871 WAVES_20190221 278440112.2819748 70191.39450786341 2.787559315071225 0.0007023630185870613 11961844.38922313 3013.9473939297295 136474 56720 39709 WBTC_20200907 458598070.01939726 44534.951078966114 10264.408130342852 0.997870637561911 25911116.49250897 2518.9900874934547 None None 209926 QKC_20200312 12348172.313875489 1556.808591574864 0.003316622105667002 4.178061554672895e-07 3801814.596641603 478.92750208357137 50433 9198 398743 TCT_20211021 20904743.835166454 315.3052592841415 0.0359488942034326 5.425328643062344e-07 3108074.6914254143 46.90638480489714 None None 924603 LUNA_20201129 182003424.6531817 10283.725496764055 0.38436040225692264 2.1712232764172867e-05 4585675.81637117 259.0414104092223 15096 None 206479 ELF_20210809 122849419.78051448 2792.518629959033 0.2668178444617492 6.0656475441891404e-06 15014552.94344869 341.33019240991405 87990 33389 843761 AMB_20190426 5906964.700942918 1137.1860291389748 0.04088901202272368 7.858547768313296e-06 1047005.6003367668 201.22627368363462 20686 5697 593270 DASH_20190929 647958906.0280797 79099.63718834297 71.46079282328158 0.008723582210116208 281386825.44684505 34350.32005171712 318562 30976 76311 ADX_20200404 5132785.379577831 763.2745187187609 0.055777757801412066 8.290207596739028e-06 65823.67628382573 9.783325158324093 52091 3768 33366 KNC_20210909 163903721.79005405 3536.440595295677 1.7855181763605377 3.856666805644944e-05 80852978.59699737 1746.400584552753 181173 11441 103593 XTZ_20210221 3524653936.3363333 63082.65745284789 4.687210450014555 8.336782785863988e-05 629356311.6834323 11193.879432917285 87207 37038 115000 MITH_20211011 29535644.21489389 539.7078610401585 0.04783661376352644 8.739886955975116e-07 8018544.43083558 146.50111361017989 33356 2761 745216 GXS_20210702 30327256.953649335 902.7268462873843 0.43378533561830057 1.2895807957783773e-05 4345306.6734676985 129.17965587482072 None 26373 581243 SC_20210511 1693558860.182696 30332.32168771233 0.03526317472793253 6.311037303722852e-07 260591655.01120913 4663.799185703776 136004 44389 47016 ARDR_20190818 54190352.629471056 5304.756163718136 0.05412952844048062 5.295610802093722e-06 2094078.8650489098 204.86834039913734 67329 6546 926837 HARD_20210401 71871878.25095294 1517.8470889414311 2.111328504783524 3.592821916031964e-05 13339786.172833024 227.00151117340536 26123 None None AST_20190819 4786260.456780134 463.78795663196934 0.02777852168706062 2.6923330781699143e-06 380309.31501503574 36.86010941424827 32074 3587 246777 WPR_20190909 3425582.055884151 329.56614066663275 0.005628864029385822 5.418693670989985e-07 62350.36424432067 6.002232819105511 34452 None 785340 KMD_20201124 62298418.87400316 3401.690502773894 0.5096732248135496 2.7771391229040513e-05 2836554.9253855473 154.5599665439785 96731 8395 275765 OAX_20201224 4203833.660161634 179.77217531995217 0.07414032338876214 3.1795693620344726e-06 535067.9925243992 22.946835377490988 12730 None 1739260 RUNE_20200730 88883135.33372109 8004.6631013030665 0.5051278542200283 4.554575807713491e-05 5510242.814023383 496.8409167245428 12630 1723 737949 MITH_20191024 6353132.822661979 851.3346592427484 0.011695956843152874 1.5665995023939839e-06 1199870.1789483828 160.71502746509816 88 2081 644077 CMT_20200721 10436520.787079632 1139.1359156764624 0.013091373445201754 1.428995199080253e-06 2808431.2066069427 306.55566644609115 283368 1637 956184 SFP_20211007 113164105.70392822 2038.6545904065767 1.0462462500011287 1.8859847969154983e-05 9460243.52055635 170.53227626735463 387819 None 28591 XMR_20200407 1021821885.0160744 140492.15303981875 58.4790476776155 0.008037918510067023 182177379.54686174 25040.1979739444 319662 168248 87089 LTC_20190421 5001129393.808615 941837.0558665012 81.43319474635827 0.015332101566004298 2530480652.6689568 476434.53628919966 443059 202421 217185 WING_20201208 7643250.62463443 398.04910957226133 12.379513504638393 0.0006451528517001921 7231998.541602204 376.89239410402655 6981 None 210369 REN_20210708 349981568.52141196 10299.910136205945 0.39721515603590507 1.1690859554487115e-05 37950917.193207316 1116.9736001454385 86614 1179 90516 STORJ_20200321 14183995.932819547 2295.2507534806387 0.09902738979998582 1.597089209043232e-05 14633028.880607784 2359.9786451041045 82262 8009 127597 FTT_20210710 2627672726.419207 77474.45217681788 30.352857846183408 0.0008931173890858634 43731240.10485855 1286.7694759374804 None None 2913 QLC_20190512 8092796.237259543 1111.0817070348385 0.0336872949027242 4.629499516241949e-06 1755746.9615101197 241.28472566365258 24999 5808 940522 UMA_20210108 556258048.5881993 14192.076819032012 10.018466200119876 0.00025380270728123675 38511795.200925484 975.6381554831688 16764 None 192669 SUPER_20210610 63756461.756795466 1701.640435976341 0.6211808330756173 1.658532056504049e-05 8221630.854452483 219.51479509336866 122715 None 457648 EOS_20200309 2837000246.3122888 351179.240084855 3.0388979853578753 0.0003774185867301621 3241649306.924522 402599.46401266975 1471 70324 94982 SNM_20210806 71876300.9359386 1750.405952 0.1636635907553296 4e-06 376347.76567913184 9.1980816 32355 9709 None FIS_20210814 61731532.76034026 1294.1422602962696 2.2905830701289456 4.800996673417012e-05 35172860.09502003 737.2130987646176 25180 None 435557 LINK_20190605 320230957.3694932 41797.508541430456 0.8790749866503261 0.00011466537356078418 29019490.891358007 3785.263844533604 14085 7168 252422 ALGO_20210711 2797769682.638244 82969.30213193687 0.896566815768812 2.6597118221841225e-05 154332698.03591225 4578.359295661621 None 35267 196865 LOOM_20200730 18305017.521073785 1648.524087075915 0.02194196519212891 1.9769042399960878e-06 4681740.673188602 421.8105765070119 22076 None 626078 APPC_20190816 3874180.1796801407 373.9506596416688 0.03554470299907565 3.4499307676522405e-06 118294.71502540885 11.481558223384923 25306 3324 1230496 ATM_20210819 34479282.285219856 764.5418636958318 18.235076455194495 0.00040482336322201953 23785047.47027265 528.0341398606141 None None 88117 ONT_20201015 364889116.6480556 31973.936076827376 0.5743346013377518 5.031490117550807e-05 110669561.41390984 9695.268285608827 93119 16669 201035 SNM_20210916 93403082.06042446 1927.13669391159 0.21315236708016033 4.42e-06 492580.43402770965 10.21431546 32433 9725 None CND_20190909 10615177.32456565 1021.8828148054673 0.006060645384896883 5.831381256155685e-07 238700.14039729178 22.967051133254525 35826 6108 335034 RVN_20200721 136335597.79013002 14880.895577789124 0.020543750895241335 2.2421955708227148e-06 24971370.587215535 2725.4368889858724 32713 8447 210690 JUV_20211125 28264520.693926435 494.37584672988146 10.462554522486393 0.00018293535343420227 2003029.1141203367 35.0225022142605 2763627 None 33092 STPT_20210202 18895350.509762954 566.0054894864419 0.020612228959343712 6.171609787663661e-07 5342484.1350306235 159.96196938830545 19207 None 1418206 ADX_20190410 14589004.74380884 2820.1159259252922 0.16741999785714873 3.2387198250468e-05 2090922.5965287965 404.4864742976693 54698 3929 994685 CRV_20210731 602506582.1514733 14432.757931998229 1.7048438015386598 4.08035520772173e-05 109218045.65903462 2614.0132074259463 144292 None 12724 FIO_20200807 25785938.809535004 2191.7817996834688 0.2655734313116064 2.257085349398286e-05 3540260.074182096 300.8836052248153 51959 129 572338 XEM_20210731 1564825044.9131863 37506.68365774674 0.17322340011328533 4.144272774770276e-06 108506175.7023767 2595.949447728868 371530 21735 117932 SXP_20210703 163275533.74797407 4828.035325414628 1.893709390581843 5.591021498613666e-05 89630459.10331483 2646.2657167437665 None None 60641 SC_20211028 819789535.3645365 14008.781023308002 0.016658351139712507 2.8467046710914974e-07 59201522.89836099 1011.6802698961657 141522 49405 125978 KEY_20190622 8285856.194344794 818.2660529481502 0.003239755889345487 3.1914849187384167e-07 386517.9197412082 38.07589688263283 23903 2837 824192 RDN_20210112 13935571.245831536 393.62994827720576 0.20243897026661942 5.69501012928772e-06 1004563.6437243073 28.260369626408135 26629 4384 1792183 NEBL_20190124 16268622.013211105 4579.335899143333 1.1033734343350214 0.00031058055033230964 274584.06004741124 77.29066681164167 39798 6182 488373 SYS_20210718 71994406.73763278 2277.853269749527 0.11692485637325174 3.6994216422313497e-06 876947.667445893 27.74601808957873 74462 5460 381052 THETA_20190530 109642584.89574657 12678.510843721226 0.14692790027635083 1.6991267112542355e-05 53621656.09215737 6200.9998098732685 None 3989 247302 RDN_20210804 17858777.785866503 464.74712846676334 0.3500317680860031 9.112310094377754e-06 405526.19515855215 10.556985904119264 30481 4676 1394664 JST_20211028 103681892.88235836 1771.5301434767441 0.07231455819694477 1.2347826503437166e-06 515560766.24592674 8803.282564827712 53783 None 180153 ARDR_20190524 80841432.22857594 10276.789203572424 0.08092239548987554 1.0287081480028604e-05 961339.0086347531 122.20810632073933 68487 6549 1228634 WRX_20200901 31392023.743795637 2687.771903733094 0.13677906997424077 1.1702393503768592e-05 3245265.40164777 277.65485436770416 37853 None 17152 XLM_20210828 8401306831.155972 171287.8073454132 0.35630742980263425 7.263494343310078e-06 593802030.3596705 12104.9333463313 617057 198790 37413 HNT_20210909 1988211026.4066477 42915.48586219263 20.642021041118202 0.0004468805297042239 25411134.340722676 550.1273907214363 82158 51698 2681 REP_20210430 230621558.70655936 4303.100532766373 36.173211184056555 0.000674945417900157 34592347.8949003 645.4485499579251 147846 11027 149141 STEEM_20190625 130010808.13236521 11772.162277923107 0.4160690038054345 3.767403573574168e-05 1148006.8716189351 103.94922839883961 5777 3752 341474 POWR_20201115 38676646.02810561 2402.8994509702297 0.08997795667043458 5.593535786782009e-06 1454662.3573251928 90.42999257235572 81219 12598 252653 SUSHI_20211125 1531247436.2223117 26782.926793018174 7.950482961762189 0.00013899701652416425 206442404.98444033 3609.199405233411 167384 None 3690 FIL_20210828 7494090193.796516 152801.18630178273 75.0756490802686 0.0015304523756827703 596252112.9007044 12154.87942993472 100463 None 44704 BAT_20210131 464659501.2552642 13581.588961142244 0.3134543849785605 9.174865616027533e-06 225133611.25101092 6589.700855581552 130947 50926 21155 XZC_20190122 34218246.42784052 9688.893718154113 5.236893028418316 0.0014830209505405122 1024713.044019697 290.18559369587405 58953 3929 298501 ARK_20211021 277069946.5821113 4179.804509118905 1.7136185568935047 2.5948727252204407e-05 2417578.3300459418 36.60854420888521 74638 24056 144901 EOS_20190103 2906273998.946741 751369.1861724916 2.833972596472355 0.0007326768516039007 1103772328.5361967 285362.12226119026 525 61764 77923 OAX_20200907 5631755.724707741 548.4204738763715 0.10114308981630309 9.849315907475e-06 613577.7027011098 59.7502077369985 12707 None 1276581 OMG_20191203 103282222.739967 14132.193531758725 0.735910756586546 0.00010065611861253377 47209344.10917905 6457.181523361258 None 42360 None ARDR_20200412 33223979.996682547 4827.395834323983 0.03325164570861515 4.831323108113886e-06 1977897.8540505741 287.38017033808296 64022 6361 1047061 VIB_20190708 7416741.024215829 648.5451940599816 0.0409260056483222 3.5786036708607904e-06 498788.420712873 43.61447067872161 32619 1121 2096372 CAKE_20210704 2593157198.5187407 74801.42527354618 13.624098661621408 0.00039223709690272 138940809.5195525 4000.098730992108 944515 None 824 BQX_20190804 16059347.584321778 1488.3569156149022 0.11443730633617184 1.0603968810889777e-05 905011.4779548009 83.86000853199565 60630 5777 410121 CND_20200329 6244404.331462565 1001.6738103954568 0.003251987981915568 5.201460392845542e-07 67450.57000849047 10.788522907374247 34763 5960 433768 ADA_20220105 42361773516.50891 914664.6914254042 1.3118426946813653 2.8556731909328638e-05 906279798.4721346 19728.27180022163 778365 679525 9885 STEEM_20200625 73723898.41555054 7930.160260126894 0.20509767090840375 2.2057607616759667e-05 3317370.838713144 356.7727705318238 11497 3865 207345 XLM_20190605 2328778971.443245 304103.51261178404 0.12076905608227512 1.5752598732137187e-05 411544474.25943553 53680.09963595901 272478 101782 70523 QTUM_20210718 579026383.321168 18320.348060106306 5.577099293046574 0.00017660784581880466 108348621.70318866 3431.033888941904 249392 16749 143849 GVT_20191220 4289355.533367587 600.4832499020982 0.9676707017687641 0.00013542109078718622 759452.489171333 106.28190385080177 20911 5648 162226 HOT_20201115 87018162.30658421 5406.257157846195 0.0004892874946862784 3.0433120518723464e-08 6370817.112527165 396.2575113688519 None 7312 245882 ETH_20201018 41654901940.043465 3667028.860796777 368.6504703636898 0.032441143897782375 8087278469.473757 711678.3665318674 495795 488155 9705 DOT_20201031 3791580626.3780184 279169.1215607291 4.090725680953809 0.000301443852672832 159228530.14780968 11733.48332953884 71508 5469 30050 MKR_20210704 2370887218.8207326 68427.28531205026 2639.987977554638 0.0760828099290053 88261323.60809122 2543.6363973054704 164564 28643 29892 TFUEL_20190905 0.0 0.0 0.004559100358596956 4.3160523229742937e-07 958498.9586617054 90.74008755476088 70146 4025 310301 BZRX_20210704 29229736.778741717 843.1599919844875 0.208106692507352 5.997947922539412e-06 5708374.220618987 164.52393185975802 None None 110017 TRX_20190909 1039194976.4784257 100046.26096491955 0.015726361374722716 1.5131459295840174e-06 626136198.4587115 60245.05080913637 461479 71258 65746 WRX_20210203 26762114.88927587 751.4667882188285 0.11212543753515646 3.1561766380550204e-06 2572906.051619411 72.42376173101137 55665 None 4666 MKR_20210112 1250385835.1921995 35298.688888481156 1405.2161942290707 0.03953152127494931 485067108.4894656 13645.900750204122 82737 18925 39675 KLAY_20211207 3335484109.973886 66082.31799242346 1.3108153969912166 2.5953052841179495e-05 25940860.077339206 513.6074186175731 59961 1044 32572 LIT_20220115 79617601.47897524 1847.2188845285036 2.5758906052208506 5.972477241015453e-05 6709060.716258076 155.55673193274725 68086 None 122432 HC_20200224 85763122.59675589 8620.267932827106 1.930817629406253 0.00019403870173537497 58763913.73871865 5905.515547968616 12779 844 931143 CMT_20200127 9078509.341661584 1057.8925170125729 0.011356988787888702 1.3221027926189498e-06 8099107.6366685275 942.8425988744456 287888 1641 899375 WAN_20191012 21885074.082485437 2646.865490716524 0.2062113173309349 2.493999415223634e-05 3291147.940580448 398.04415904338725 107577 16786 355950 COS_20190905 31455396.0968262 2978.18843860957 0.023999721300652477 2.272287155038141e-06 5787637.760077424 547.9719858196898 9323 None 256445 ANT_20210909 207670171.80965525 4482.555525508665 5.4597482022877255 0.00011792895719416604 32038280.747593682 692.0174518807485 88017 3141 115713 ZRX_20210212 1299685196.8109996 27256.51295290443 1.7489962232770844 3.663112898442438e-05 676271182.3593433 14163.88244854986 177093 17906 76527 AMB_20210427 10279637.265563183 190.86865157872762 0.07163644919946231 1.329409138095972e-06 2193459.5492152255 40.70560729010113 25357 5619 373333 SNM_20191113 6499907.813730449 739.5111332752844 0.014790808098971566 1.6803873211720035e-06 1058008.7463446786 120.20063211896465 30825 9817 6574745 DLT_20200106 3877762.414464875 528.1062163627382 0.0473701606192137 6.450193209923658e-06 4056604.601542756 552.370587605799 None 2611 5297076 AE_20190904 67424831.49520852 6344.777211085454 0.20576029093713724 1.9388916514716278e-05 21619078.067674212 2037.1787863933946 24915 6350 344855 ONE_20210110 67007386.73145335 1655.8501371836176 0.007525767317600251 1.862122007811803e-07 25301235.38590935 626.0356618619434 None 1601 186131 GXS_20200526 31084198.11201349 3497.619770678765 0.48005395787800365 5.399270322742579e-05 18195039.50685594 2046.4353062465905 None None 497565 TNB_20200412 3281812.3335881284 476.93752196270424 0.001002499711774474 1.456739188904363e-07 336185.4216212859 48.851333587638564 15024 1441 2723419 LINK_20190511 245981096.28646177 38602.67167794353 0.6761047030255676 0.00010612552437215387 21264705.83921559 3337.838130259266 11878 6695 419208 TCT_20210814 19612778.273327302 411.4901033538954 0.03395058998014235 7.114082693753766e-07 6404911.313197072 134.20994673404476 None None 566218 BAT_20200612 327050066.8287132 35248.296887993856 0.22267069713384455 2.3944073128507413e-05 79592292.60819858 8558.663978721619 118462 40067 20169 VITE_20210821 62646101.31777931 1274.8980599629149 0.0960113995457155 1.9520574147691485e-06 10270216.464018125 208.8090819916124 33512 2445 442806 OCEAN_20210117 223606421.54320377 6165.215487872908 0.5337450714795007 1.474862587567593e-05 99933108.70177677 2761.38574685156 None 1395 64181 SNX_20211028 1646801276.1739304 28140.320461433636 9.335503218345123 0.00015940521097904608 257338644.777905 4394.09852950117 163999 8173 50841 NXS_20191203 13684610.65466468 1871.7797700468388 0.2261609882736396 3.095533075952223e-05 4977138.314254588 681.235804325495 22175 3540 687350 KEY_20190618 8710175.505343672 934.4078397659612 0.003333328342294928 3.577554581304431e-07 387065.20002563763 41.54246859047394 23922 2836 824192 VIA_20210125 7562706.555528056 234.88371278778203 0.32760764129421494 1.0154629290496951e-05 359371.02705875866 11.1391771666569 37749 2123 2961182 VIB_20200309 2831926.3413004135 350.5511646701104 0.01539793748325496 1.914077836812632e-06 622539.6047147128 77.38629028844709 31541 1107 None EGLD_20201224 335864128.5368141 14365.4307374414 21.535282074537285 0.0009236469607190902 126344125.54944618 5418.891991502485 None 3019 53733 QLC_20210707 5685926.951580017 166.4680804242265 0.023734229543777616 6.94962951746977e-07 935298.2379437897 27.386506185349162 34995 5676 940522 ORN_20210620 203527557.55447233 5720.6318625054955 7.010501855696391 0.00019691987290828557 5320892.462990034 149.45998006109502 None None 59739 CND_20190806 17299771.93426551 1464.6917286568064 0.009919428703214904 8.398511352000931e-07 341669.16229895584 28.928201654057105 36063 6131 388996 COTI_20200423 9834857.153236534 1382.7423545510458 0.019697352991419274 2.7687192728928895e-06 1375753.017525657 193.37998846967795 23136 940 241032 MDA_20210624 11539006.236821553 342.275522963734 0.5882281641276303 1.745406890554141e-05 1312710.8326610578 38.95111918059299 None 389 1492828 VITE_20200321 4660707.171929322 753.9075724859728 0.009670802240338849 1.5596830262851682e-06 3794802.7046876126 612.0163787358075 None None 513506 STORJ_20200207 20806295.222410526 2136.325834542247 0.14466624458061686 1.4862257238168935e-05 2026242.6984348444 208.165631854213 82506 7941 143392 RDN_20210111 14757385.28019227 382.81401212098945 0.22248439538564127 5.784548341729754e-06 1000055.977526405 26.00124892539155 26629 4385 1792183 BTG_20201124 169338970.88843933 9246.581943746938 9.694619640130776 0.000528051844464647 14585631.291718192 794.4581419564767 79451 None 374330 OMG_20210610 772085510.0801612 20569.242599890404 5.50940341085763 0.0001468449043956794 270464144.36568296 7208.817082366353 None 4978 157403 ARK_20201231 58395341.56987333 2022.2066277139736 0.37932105006331784 1.3153419296618453e-05 2555600.1878236253 88.61854837570938 62958 21619 96722 WTC_20200319 5246093.614051903 974.7919463588745 0.17870134150169306 3.318399926380003e-05 7853912.778922623 1458.4346915562958 54861 19428 966319 DGD_20190723 37708946.376000404 3643.7043029248234 18.85605811145842 0.0018232412351380071 936532.8063932101 90.55578958138626 17163 3371 582962 FUN_20201031 18994167.865821432 1398.5369641735897 0.0031534929232541514 2.3235882903333362e-07 345350.27363631007 25.446445304106714 None 16595 423341 GO_20210429 51638722.753826864 943.4040342250967 0.04797276456090343 8.761247277463324e-07 1852302.2891060696 33.82852444717232 19993 970 121965 LIT_20210324 161146225.1554554 2956.0275656547174 8.99517267517328 0.00016501286645169145 66852204.891932525 1226.3771198390107 None None 102564 BCPT_20210125 2764824.0661341255 85.95823017935808 0.023875419646134138 7.400070280681619e-07 334283.52177865803 10.36095529 10423 3220 1711405 QTUM_20191015 175198790.26233345 20990.587544273898 1.82369902299896 0.0002184827417110737 169314531.80258974 20284.215023005843 None 15298 202999 MDX_20210731 650857203.0161942 15593.126530367183 1.1149850265787487 2.6675391932642416e-05 39453086.459957585 943.8929843758453 None None 12010 QSP_20200330 4507169.902464579 762.2313119567252 0.0063298153786329825 1.0697831552191044e-06 22756.866795383317 3.8460699573395267 55151 8307 355576 VIBE_20190105 6007508.534981564 1576.7406595865396 0.03016321956198155 7.918783738680723e-06 298180.6500922408 78.281699282388 20599 None 1518448 ATM_20220115 28841703.087913513 645.7254437455765 6.678434574428396 0.00015489237006488773 1129747.7710284097 26.202144811022837 5202200 None 79432 REP_20210420 247885832.0558097 4430.098227948286 38.55253927211066 0.0006892963787313413 75358626.17953424 1347.3672321578824 147247 10998 149141 SYS_20190411 33810145.11304298 6370.46425031609 0.06129651071734847 1.1548803196922345e-05 647321.0041535518 121.96098594707911 62500 4612 1033934 SKL_20211002 402280397.77664065 8352.600808604699 0.3238346728104231 6.723123367451417e-06 37302884.32184864 774.4442282262173 None 2659 226284 XEM_20190325 458332727.40150607 114777.4153650035 0.05088857201757822 1.2752835226976188e-05 28517178.385645576 7146.4940490922445 215928 18473 129022 NANO_20200319 53265344.78334542 9897.388978297426 0.3997987430534207 7.420501588444721e-05 4495729.19909342 834.4339806649275 97782 49580 321803 UTK_20210821 213058235.05398616 4335.9047860231385 0.4753668280602703 9.672103357496147e-06 21995953.54671534 447.5430837667562 78708 4051 188834 WABI_20200903 10923326.696367659 957.4674708227186 0.184927660774314 1.6206233463348294e-05 3443741.5410789796 301.79411326825516 None 7643 1644461 POLY_20210108 82326898.92796937 2101.69817975075 0.1106443718068447 2.8030080202968503e-06 11366078.657610677 287.9424331878823 35835 5025 310362 CVX_20220112 1756285681.6228814 40992.284926573455 38.3973828170468 0.0008974322221143881 20214426.962522384 472.456109682861 None None 34910 NAV_20190922 7449165.724398696 745.6185589892569 0.11246538731307287 1.125713712474977e-05 189511.8103946003 18.96904005169966 51337 14175 455499 MKR_20210202 1323700969.6517928 39670.74516995661 1475.729259005251 0.04418183135507818 148655198.8116215 4450.585284442957 91769 20390 38971 MANA_20210805 964506920.7196478 24249.13374191714 0.7273500967301794 1.8291250710758857e-05 115901608.4490851 2914.6698233118686 154429 35025 19440 AGLD_20211225 130313536.48131579 2563.774410023335 1.6953689843401356 3.335422209957429e-05 16420251.82112227 323.0475083781358 69730 None 105508 NAS_20191015 22186356.995522495 2658.308740198513 0.4875353911569456 5.841167221353726e-05 7204786.24242411 863.2062820350276 24051 5082 1274941 STORJ_20190603 41072592.04618258 4699.023106391085 0.2859230931210298 3.2697575062630506e-05 4398927.525414934 503.0522767058971 83745 7729 192975 COMP_20210105 14275.49711578871 0.4562859680352148 1.5477611404674354e-07 4.94709e-12 26.63795119224015 0.0008514255754206406 1967 None 4236498 POWR_20190421 52021817.61971184 9796.80413819765 0.12495104866493661 2.3531448149944098e-05 4084967.6817776025 769.3029088192146 85224 13235 593546 BAND_20201111 141777756.52841386 9282.915974615997 6.285592527136235 0.0004114631580836526 109784324.61472808 7186.626355278187 38582 2701 146700 XLM_20200411 968339290.9192106 141104.64730167526 0.04768718478448648 6.948890180256227e-06 395516319.98372996 57633.921660230306 281174 107450 84829 STX_20200404 55768900.11325228 8293.154154230077 0.09449642608467554 1.4046972143455473e-05 633563.7205658199 94.17977274523966 35810 None 52879 MDA_20210219 24832478.066721868 480.4668415226514 1.2656203335115848 2.447987180283326e-05 7288124.411313886 140.96830348564438 None 370 1150180 STORJ_20200320 13256004.313042877 2141.8997746993327 0.09340282832399512 1.5130810171489376e-05 7010711.976085302 1135.7017124703339 82268 8007 127597 RVN_20200411 96648436.58715552 14094.042181045572 0.01633118724096769 2.3812144986253247e-06 18152307.411851093 2646.748026020583 30301 7631 209100 RENBTC_20210624 372452538.3685582 11047.287267384607 33659.69848576516 0.9978803984391479 7756622.233749216 229.95396968362562 85376 5460 86030 ANT_20201015 119115585.44035164 10435.426285574722 3.4413499227487803 0.0003012500653122277 11630382.325454688 1018.1043816523193 76061 2680 95199 BQX_20210519 733847799.6768725 17208.599693111908 3.3234707561593044 7.768589605983165e-05 5191197.779314699 121.34388436019083 76160 5460 18222 WBTC_20210114 4124384308.9088473 110764.55553839549 37344.18690945377 0.9992471380588989 244460864.13008732 6541.227405531109 None None 159793 WTC_20190914 27528791.627981637 2659.607748272452 0.9434851081943223 9.113730234309958e-05 2426735.8886917527 234.4140468924061 55847 19882 440674 TOMO_20200404 18571176.828316044 2761.6401246918713 0.26416652804754504 3.925871966673059e-05 12124000.339396883 1801.7904618031791 22209 1512 218911 OGN_20210707 206647193.54358086 6050.05339097688 0.6636575516882357 1.943258407523682e-05 43060577.03183485 1260.8585276709591 116530 5901 54387 GVT_20200801 6663407.073719695 587.8565755481017 1.5009891484916889 0.00013241684770784384 1227399.8084666329 108.2808717689159 20356 5505 171474 BTG_20200317 103742023.09839392 20554.186411336184 5.882399268355895 0.0011681257256239508 17169612.613199353 3409.538400490328 74960 None 195914 DOT_20211216 28682452365.937973 587922.3985506706 27.231332106149466 0.0005572229819990688 1427962620.7600164 29219.782073878625 None 36710 12763 ETH_20190419 18314771488.822433 3473539.2304137275 173.41362781077277 0.03287744950619354 7052905652.127466 1337158.7480010202 441195 435391 34722 AMB_20201015 2491536.9691455285 218.2778597381427 0.01715253408257984 1.500865612562846e-06 436769.27843681903 38.217792628989365 20221 5502 374636 NULS_20210909 50659674.80386897 1093.0498012141613 0.5325580206297522 1.152938512576792e-05 14754076.529516025 319.412015018933 66240 5419 352949 MANA_20210212 366841570.8149829 7693.249419626653 0.2781526034349231 5.816467837051273e-06 168158522.31504536 3516.374193493267 63762 10532 56631 NAV_20210624 23007973.275429893 682.4735097250963 0.32412634723700273 9.610147273328621e-06 472532.4351009111 14.01029669897176 53135 14118 660151 WAN_20210819 142002924.37076563 3152.086256319371 0.8079246593911872 1.7939184039285746e-05 5822599.57374445 129.2851804018198 None 16708 387619 File: TargetCoinPrediction\\FeatGeneration\\tmp.py # -*- coding:utf-8 -*- import numpy as np import pandas as pd from pycoingecko import CoinGeckoAPI import pickle as pkl import json from datetime import * import time import json with open("raw/binanceSymbol2CoinId.json", "r") as f: symbol2coinId = json.load(f) cg = CoinGeckoAPI() coin_list = cg.get_coins_list() symbol2id = {} for c in coin_list: symbol2id[c["symbol"]] = c["id"] for s in symbol2coinId.keys(): symbol2id[s.lower()] = symbol2coinId[s] df = pd.read_csv("../../Data/Telegram/Labeled/PD_logs_cleaned.txt", sep="\t") df["timestamp"] = df.timestamp.apply(pd.to_datetime) df["timestamp_unix"] = (df["timestamp"].astype(int) / (10**6)).astype(int) coin_date_to_timestamp = {} for idx, row in df.iterrows(): attack_date = row.timestamp.strftime("%Y%m%d") attack_time = row.timestamp try: coin_date_to_timestamp[row.coin + "_" + attack_date].append(attack_time) except: coin_date_to_timestamp[row.coin + "_" + attack_date] = [attack_time] error_key = [] coin_date_to_statistics_pre3d = {} for i in range(len(coin_date_to_timestamp.keys())): key = list(coin_date_to_timestamp.keys())[i] coin_symbol, date = key.split("_") if coin_symbol not in [ "ARN", "YOYO", "ATM", "BQX", "BTCST", "DATA", "DREP", "EDO", "EZ", "FLM", "GNT", "GXS", "INS", "ONG", "QSP", "TCT", ]: continue try: coin_id = symbol2id[coin_symbol.lower()] d = datetime.strptime(date, "%Y%m%d") + timedelta(days=-3) H = cg.get_coin_history_by_id(coin_id, date=d.strftime("%d-%m-%Y")) coin_date_to_statistics_pre3d[key] = H except: error_key.append(key) print(str(i) + ":" + key) time.sleep(1.5) print("pause") str_json = json.dumps(coin_date_to_statistics_pre3d) print("pause") File: TargetCoinPrediction\\SeqModel\\__init__.py # -*- coding:utf-8 -*- File: TargetCoinPrediction\\SeqModel\\data_loader.py # -*- coding:utf-8 -*- import tensorflow.compat.v1 as tf tf.disable_v2_behavior() import pickle as pkl column_list = "label,channel_id,channel_id_new,coin,coin_id,timestamp_unix,length,coin_id_seq,feature_seq,pre_1h_return,pre_1h_price,pre_1h_price_avg,pre_1h_volume,pre_1h_volume_avg,pre_1h_volume_sum,pre_1h_volume_tb,pre_1h_volume_quote,pre_1h_volume_quote_tb,pre_3h_return,pre_3h_price,pre_3h_price_avg,pre_3h_volume,pre_3h_volume_avg,pre_3h_volume_sum,pre_3h_volume_tb,pre_3h_volume_tb_avg,pre_3h_volume_tb_sum,pre_3h_volume_quote,pre_3h_volume_quote_avg,pre_3h_volume_quote_sum,pre_3h_volume_quote_tb,pre_3h_volume_quote_tb_avg,pre_3h_volume_quote_tb_sum,pre_6h_return,pre_6h_price,pre_6h_price_avg,pre_6h_volume,pre_6h_volume_avg,pre_6h_volume_sum,pre_6h_volume_tb,pre_6h_volume_tb_avg,pre_6h_volume_tb_sum,pre_6h_volume_quote,pre_6h_volume_quote_avg,pre_6h_volume_quote_sum,pre_6h_volume_quote_tb,pre_6h_volume_quote_tb_avg,pre_6h_volume_quote_tb_sum,pre_12h_return,pre_12h_price,pre_12h_price_avg,pre_12h_volume,pre_12h_volume_avg,pre_12h_volume_sum,pre_12h_volume_tb,pre_12h_volume_tb_avg,pre_12h_volume_tb_sum,pre_12h_volume_quote,pre_12h_volume_quote_avg,pre_12h_volume_quote_sum,pre_12h_volume_quote_tb,pre_12h_volume_quote_tb_avg,pre_12h_volume_quote_tb_sum,pre_24h_return,pre_24h_price,pre_24h_price_avg,pre_24h_volume,pre_24h_volume_avg,pre_24h_volume_sum,pre_24h_volume_tb,pre_24h_volume_tb_avg,pre_24h_volume_tb_sum,pre_24h_volume_quote,pre_24h_volume_quote_avg,pre_24h_volume_quote_sum,pre_24h_volume_quote_tb,pre_24h_volume_quote_tb_avg,pre_24h_volume_quote_tb_sum,pre_36h_return,pre_36h_price,pre_36h_price_avg,pre_36h_volume,pre_36h_volume_avg,pre_36h_volume_sum,pre_36h_volume_tb,pre_36h_volume_tb_avg,pre_36h_volume_tb_sum,pre_36h_volume_quote,pre_36h_volume_quote_avg,pre_36h_volume_quote_sum,pre_36h_volume_quote_tb,pre_36h_volume_quote_tb_avg,pre_36h_volume_quote_tb_sum,pre_48h_return,pre_48h_price,pre_48h_price_avg,pre_48h_volume,pre_48h_volume_avg,pre_48h_volume_sum,pre_48h_volume_tb,pre_48h_volume_tb_avg,pre_48h_volume_tb_sum,pre_48h_volume_quote,pre_48h_volume_quote_avg,pre_48h_volume_quote_sum,pre_48h_volume_quote_tb,pre_48h_volume_quote_tb_avg,pre_48h_volume_quote_tb_sum,pre_60h_return,pre_60h_price,pre_60h_price_avg,pre_60h_volume,pre_60h_volume_avg,pre_60h_volume_sum,pre_60h_volume_tb,pre_60h_volume_tb_avg,pre_60h_volume_tb_sum,pre_60h_volume_quote,pre_60h_volume_quote_avg,pre_60h_volume_quote_sum,pre_60h_volume_quote_tb,pre_60h_volume_quote_tb_avg,pre_60h_volume_quote_tb_sum,pre_72h_return,pre_72h_price,pre_72h_price_avg,pre_72h_volume,pre_72h_volume_avg,pre_72h_volume_sum,pre_72h_volume_tb,pre_72h_volume_tb_avg,pre_72h_volume_tb_sum,pre_72h_volume_quote,pre_72h_volume_quote_avg,pre_72h_volume_quote_sum,pre_72h_volume_quote_tb,pre_72h_volume_quote_tb_avg,pre_72h_volume_quote_tb_sum,pre_3d_market_cap_usd,pre_3d_market_cap_btc,pre_3d_price_usd,pre_3d_price_btc,pre_3d_volume_usd,pre_3d_volume_btc,pre_3d_twitter_index,pre_3d_reddit_index,pre_3d_alexa_index".split( "," ) class FeatGenerator(object): def __init__(self, input_file, epoch=1, batch_size=256): self.input_file = input_file self.feat_config = { "n_channel": 200, "d_channel": 8, "n_coin": 378, "d_coin": 8, "n_seq_feat": 147, "n_target_feat": 138, "max_length": 50, "batch_size": batch_size, "epoch": epoch, } self.features = self.feature_generation() self.tensor_dict = self.tensor_generation(self.features) def parse_split(self, line): parse_res = tf.string_split([line], delimiter=",") values = parse_res.values label = values[0] channel = values[1] channel_id = values[2] coin = values[3] coin_id = values[4] time_stamp = values[5] length = values[6] coin_id_seq = values[7] feature_seq = values[8] feature_target = values[9:] return ( label, channel, channel_id, coin, coin_id, time_stamp, length, coin_id_seq, feature_seq, feature_target, ) def parse_sequence(self, sequence): """ split the sequence and convert to dense tensor """ split_sequence = tf.string_split(sequence, delimiter="\t") split_sequence = tf.sparse_to_dense( sparse_indices=split_sequence.indices, output_shape=[ self.feat_config["batch_size"], self.feat_config["max_length"], ], sparse_values=split_sequence.values, default_value="0", ) return split_sequence def parse_feature_sequence(self, sequence): split_sequence = tf.string_split(sequence, delimiter="\t") split_sequence1 = tf.sparse_to_dense( sparse_indices=split_sequence.indices, output_shape=[ self.feat_config["batch_size"], self.feat_config["max_length"], ], sparse_values=split_sequence.values, default_value="".join( ["0" for i in range(self.feat_config["n_seq_feat"])] ), ) split_sequence1 = tf.reshape( split_sequence1, shape=[self.feat_config["batch_size"] * self.feat_config["max_length"]], ) split_sequence2 = tf.string_split(split_sequence1, delimiter="") split_sequence2 = tf.sparse_to_dense( sparse_indices=split_sequence2.indices, output_shape=[ self.feat_config["batch_size"] * self.feat_config["max_length"], self.feat_config["n_seq_feat"], ], sparse_values=split_sequence2.values, default_value="0", ) split_sequence_final = tf.reshape( split_sequence2, shape=[-1, self.feat_config["max_length"], self.feat_config["n_seq_feat"]], ) return split_sequence_final def feature_generation(self): """ Args: input_file: a .txt file that includes the training or testing sample Returns: feature tensor used for training or testing """ dataset = tf.data.TextLineDataset(self.input_file) dataset = dataset.map(self.parse_split, num_parallel_calls=2) dataset = ( dataset.shuffle(100) .repeat(self.feat_config["epoch"]) .batch(self.feat_config["batch_size"]) ) iterator = dataset.make_one_shot_iterator() ( label, channel, channel_id, coin, coin_id, time_stamp, length, coin_id_seq, feature_seq, feature_target, ) = iterator.get_next() seq_coin_id = self.parse_sequence(coin_id_seq) seq_feature = self.parse_feature_sequence(feature_seq) features = {} features["channel"] = channel features["channel_id"] = tf.string_to_number(channel_id, out_type=tf.int32) features["coin"] = coin features["coin_id"] = tf.string_to_number(coin_id, out_type=tf.int32) features["timestamp"] = time_stamp features["label"] = tf.string_to_number(label, out_type=tf.float32) features["target_features"] = tf.reshape( tf.string_to_number(feature_target, out_type=tf.float32), [-1, self.feat_config["n_target_feat"]], ) features["seq_coin_id"] = tf.string_to_number(seq_coin_id, out_type=tf.int32) features["seq_feature"] = tf.string_to_number(seq_feature, out_type=tf.float32) features["length"] = tf.string_to_number(length, out_type=tf.int32) return features def tensor_generation(self, features): with tf.name_scope("Embedding_layer"): channel_lookup_table = tf.get_variable( "channel_embedding_var", [self.feat_config["n_channel"], self.feat_config["d_channel"]], ) channel_embedding = tf.nn.embedding_lookup( channel_lookup_table, features["channel_id"] ) with open("../FeatGeneration/feature/wv_embedding.pkl", "rb") as f: wv_embedding = pkl.load(f) coin_lookup_table = tf.constant( wv_embedding, name="coin_embedding_var", dtype=tf.float32 ) # coin_lookup_table = tf.Variable(wv_embedding, name="coin_embedding_var", dtype=tf.float32) # if don't use word embedding to address the cold-start problem # coin_lookup_table = tf.get_variable("coin_embedding_var", [self.feat_config["n_coin"], self.feat_config["d_coin"]]) coin_embedding = tf.nn.embedding_lookup( coin_lookup_table, features["coin_id"] ) seq_coin_embedding = tf.nn.embedding_lookup( coin_lookup_table, features["seq_coin_id"] ) # concatenate the tensors tensor_dict = {} tensor_dict["label"] = features["label"] tensor_dict["length"] = features["length"] tensor_dict["channel_embedding"] = channel_embedding tensor_dict["coin_embedding"] = coin_embedding tensor_dict["target_features"] = features["target_features"] tensor_dict["seq_embedding"] = features["seq_feature"] tensor_dict["seq_coin_embedding"] = seq_coin_embedding return tensor_dict File: TargetCoinPrediction\\SeqModel\\modeling.py # -*- coding:utf-8 -*- import tensorflow.compat.v1 as tf tf.disable_v2_behavior() class DNN(object): def __init__(self, tensor_dict, model_config): self.label = tensor_dict["label"] self.channel_embedding = tensor_dict["channel_embedding"] self.coin_embedding = tensor_dict["coin_embedding"] self.target_features = tensor_dict["target_features"] # configuration self.model_config = { "hidden1": 32, "hidden2": 16, "hidden3": 32, "learning_rate": 0.0005, } self.model_config.update(model_config) print("Model Configuaration:") print(self.model_config) def build(self): """ build the architecture for the base DNN model. """ self.inp = self.target_features self.build_fcn_net(self.inp) self.loss_op() def build_fcn_net(self, inp): with tf.name_scope("Fully_connected_layer"): dnn1 = tf.layers.dense( inp, self.model_config["hidden1"], activation=tf.nn.relu, name="f1" ) dnn2 = tf.layers.dense( dnn1, self.model_config["hidden2"], activation=tf.nn.relu, name="f2" ) self.logit = tf.squeeze( tf.layers.dense(dnn2, 1, activation=None, name="logit") ) self.y_hat = tf.sigmoid(self.logit) return def loss_op(self): with tf.name_scope("Metrics"): self.loss = tf.reduce_mean( tf.nn.sigmoid_cross_entropy_with_logits( labels=self.label, logits=self.logit ) ) self.optimizer = tf.train.AdamOptimizer( learning_rate=self.model_config["learning_rate"] ).minimize(self.loss) return class SNN(DNN): def __init__(self, tensor_dict, model_config): super(SNN, self).__init__(tensor_dict, model_config) self.length = tensor_dict["length"] self.seq_embedding = tensor_dict["seq_embedding"][:, :, -9:] self.seq_coin_embedding = tensor_dict["seq_coin_embedding"] self.coin_embedding = tensor_dict["coin_embedding"] def positional_attention_layer(self): feat_num = self.seq_embedding.shape[2] self.length = tf.where( tf.less_equal(self.length, self.model_config["max_seq_length"]), self.length, tf.Variable( [ self.model_config["max_seq_length"] for i in range(self.model_config["batch_size"]) ] ), ) self.sequence_mask = tf.sequence_mask( self.length, maxlen=50, name="sequence_mask" ) mask_2d = tf.expand_dims(self.sequence_mask, axis=2) masked_seq_embedding = self.seq_embedding * tf.cast( mask_2d, tf.float32 ) # convert bool to float # use f(x) to speed training pos_atten_list = [] seq_pos_attent_embed_list = [] num_head = 8 for i in range(feat_num): x = tf.expand_dims(masked_seq_embedding[:, :, i], axis=2) inp = layer_norm(x, name="layer_norm_" + str(i)) # add layer norm # positional attention pos_atten = tf.get_variable( "pos_atten_" + str(i), [1, 50, num_head], initializer=tf.truncated_normal_initializer(stddev=0.02), ) pos_atten = tf.layers.dense( pos_atten, 8, activation=tf.nn.relu, name="pos_" + str(i) + "_fx1" ) pos_atten = tf.layers.dense( pos_atten, num_head, activation=None, name="pos_" + str(i) + "_fx2" ) pos_atten = tf.tile(pos_atten, [self.model_config["batch_size"], 1, 1]) paddings = tf.ones_like(pos_atten) * (-(2**32) + 1) mask_new = tf.tile(mask_2d, [1, 1, num_head]) pos_atten = tf.where(tf.logical_not(mask_new), paddings, pos_atten) pos_atten = tf.nn.softmax(pos_atten, axis=1) # inp = tf.expand_dims(self.masked_seq_embedding[:, :, i], axis=2) seq_pos_attent_embed = tf.reduce_sum(pos_atten * inp, axis=1) seq_pos_attent_embed_list.append(seq_pos_attent_embed) pos_atten_list.append(tf.expand_dims(pos_atten, axis=2)) self.pos_atten = tf.concat(pos_atten_list, axis=2) self.seq_pos_attent_embeding = tf.concat(seq_pos_attent_embed_list, axis=1) # for coin embedding coin_mask_2d = tf.expand_dims(self.sequence_mask, axis=2) masked_seq_coin_embedding = self.seq_coin_embedding * tf.cast( coin_mask_2d, tf.float32 ) # convert bool to float coin_inp = layer_norm( masked_seq_coin_embedding, name="layer_norm_coin_embedding" ) # add layer norm num_head = 8 pos_atten_coin = tf.get_variable( "pos_atten_coin", [1, 50, num_head], initializer=tf.truncated_normal_initializer(stddev=0.02), ) pos_atten_coin = tf.layers.dense( pos_atten_coin, num_head, activation=tf.nn.relu, name="pos_coin_fx1" ) pos_atten_coin = tf.layers.dense( pos_atten_coin, num_head, activation=None, name="pos_coin_fx2" ) pos_atten_coin = tf.tile( pos_atten_coin, [self.model_config["batch_size"], 1, 1] ) paddings = tf.ones_like(pos_atten_coin) * (-(2**32) + 1) coin_mask_new = tf.tile(coin_mask_2d, [1, 1, num_head]) pos_atten_coin = tf.where( tf.logical_not(coin_mask_new), paddings, pos_atten_coin ) pos_atten_coin = tf.nn.softmax(pos_atten_coin, axis=1) seq_coin_pos_attent_embeding = tf.reduce_sum( tf.expand_dims(pos_atten_coin, axis=2) * tf.expand_dims(coin_inp, axis=3), axis=1, ) self.seq_coin_pos_attent_embeding = tf.reshape( seq_coin_pos_attent_embeding, [self.model_config["batch_size"], -1] ) output = tf.concat( [self.seq_pos_attent_embeding, self.seq_coin_pos_attent_embeding], axis=1 ) return output def build(self): """ override the build function """ self.seq_embedding_mean = self.positional_attention_layer() self.inp = tf.concat( [self.target_features, self.seq_embedding_mean, self.coin_embedding], axis=1 ) self.build_fcn_net(self.inp) self.loss_op() class SNNTA(DNN): def __init__(self, tensor_dict, model_config): super(SNNTA, self).__init__(tensor_dict, model_config) self.length = tensor_dict["length"] self.seq_embedding = tensor_dict["seq_embedding"][:, :, -9:] self.seq_coin_embedding = tensor_dict["seq_coin_embedding"] self.atten_strategy = "mlp" # self.atten_strategy = "dot" def positional_attention_layer(self): self.length = tf.where( tf.less_equal(self.length, self.model_config["max_seq_length"]), self.length, tf.Variable( [ self.model_config["max_seq_length"] for i in range(self.model_config["batch_size"]) ] ), ) self.sequence_mask = tf.sequence_mask( self.length, maxlen=50, name="sequence_mask" ) query = self.target_features[:, -9:] key = self.seq_embedding if self.atten_strategy == "mlp": query = tf.expand_dims(query, axis=1) queries = tf.tile(query, [1, key.shape[1], 1]) attention_all = tf.concat( [queries, key, queries - key, queries * key], axis=-1 ) d_layer_1_all = tf.layers.dense( attention_all, 32, activation=tf.nn.relu, name="f1_att" ) d_layer_2_all = tf.layers.dense( d_layer_1_all, 16, activation=tf.nn.relu, name="f2_att" ) d_layer_3_all = tf.layers.dense( d_layer_2_all, 1, activation=None, name="f3_att" ) d_layer_3_all = tf.reshape(d_layer_3_all, [-1, 1, key.shape[1]]) scores = d_layer_3_all key_masks = tf.expand_dims(self.sequence_mask, 1) paddings = tf.ones_like(scores) * (-(2**32) + 1) scores = tf.where(key_masks, scores, paddings) scores = tf.nn.softmax(scores, axis=2) output = tf.squeeze(tf.matmul(scores, key)) elif self.atten_strategy == "dot": attended_embedding = multihead_attention( queries=tf.expand_dims(query, axis=1), keys=key, values=key, num_heads=8, key_masks=self.sequence_mask, dropout_rate=self.model_config["dropout_rate"], is_training=self.model_config["is_training"], reuse=False, ) output = tf.squeeze(attended_embedding, axis=1) else: raise ValueError( "Please choose the right attention strategy. Current is " + self.atten_strategy ) return layer_norm(output, "layer_norm") def build(self): """ override the build function """ self.seq_embedding_mean = self.positional_attention_layer() self.inp = tf.concat([self.target_features, self.seq_embedding_mean], axis=1) self.build_fcn_net(self.inp) self.loss_op() def layer_norm(input_tensor, name=None): """Run layer normalization on the last dimension of the tensor.""" epsilon = 1e-6 filters = input_tensor.get_shape()[-1] with tf.variable_scope(name): scale = tf.get_variable( "layer_norm_scale", [filters], initializer=tf.ones_initializer() ) bias = tf.get_variable( "layer_norm_bias", [filters], initializer=tf.zeros_initializer() ) mean = tf.reduce_mean(input_tensor, axis=-1, keep_dims=True) variance = tf.reduce_mean( tf.square(input_tensor - mean), axis=-1, keep_dims=True ) input_tensor = (input_tensor - mean) * tf.rsqrt(variance + epsilon) input_tensor = input_tensor * scale + bias return input_tensor def multihead_attention( queries, keys, values, key_masks, num_units=None, num_heads=8, dropout_rate=0, is_training=True, scope="multihead_attention", reuse=None, ): """Applies multihead attention. Args: queries: A 3d tensor with shape of [N, T_q, C_q]. keys: A 3d tensor with shape of [N, T_k, C_k]. values: A 3d tensor with shape of [N, T_v, C_v] num_units: A scalar. Attention size. dropout_rate: A floating point number. is_training: Boolean. Controller of mechanism for dropout. num_heads: An int. Number of heads. scope: Optional scope for `variable_scope`. reuse: Boolean, whether to reuse the weights of a previous layer by the same name. Returns A 3d tensor with shape of (N, T_q, C) """ with tf.variable_scope(scope, reuse=reuse): # Set the fall back option for num_units if num_units is None: num_units = queries.get_shape().as_list()[-1] # Linear projections Q = tf.layers.dense(queries, num_units, activation=tf.nn.relu) # (N, T_q, C) K = tf.layers.dense(keys, num_units, activation=tf.nn.relu) # (N, T_k, C) V = tf.layers.dense(values, num_units, activation=tf.nn.relu) # (N, T_k, C) # Split and concat Q_ = tf.concat(tf.split(Q, num_heads, axis=2), axis=0) # (h*N, T_q, C/h) K_ = tf.concat(tf.split(K, num_heads, axis=2), axis=0) # (h*N, T_k, C/h) V_ = tf.concat(tf.split(V, num_heads, axis=2), axis=0) # (h*N, T_k, C/h) # Multiplication outputs = tf.matmul(Q_, tf.transpose(K_, [0, 2, 1])) # (h*N, T_q, T_k) # Scale outputs = outputs / (K_.get_shape().as_list()[-1] ** 0.5) # Key Masking key_masks = tf.tile(key_masks, [num_heads, 1]) # (h*N, T_k) key_masks = tf.tile( tf.expand_dims(key_masks, 1), [1, tf.shape(queries)[1], 1] ) # (h*N, T_q, T_k) paddings = tf.ones_like(outputs) * (-(2**32) + 1) outputs = tf.where( tf.logical_not(key_masks), paddings, outputs ) # (h*N, T_q, T_k) # Activation outputs = tf.nn.softmax(outputs) # (h*N, T_q, T_k) # Dropouts outputs = tf.layers.dropout( outputs, rate=dropout_rate, training=tf.convert_to_tensor(is_training) ) # Weighted sum outputs = tf.matmul(outputs, V_) # ( h*N, T_q, C/h) # Restore shape outputs = tf.concat(tf.split(outputs, num_heads, axis=0), axis=2) # (N, T_q, C) # Residual connection outputs += queries return outputs File: TargetCoinPrediction\\SeqModel\\optimization.py # coding=utf-8 # Copyright 2018 The Google AI Language Team Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Functions and classes related to optimization (weight updates).""" from __future__ import absolute_import from __future__ import division from __future__ import print_function import re # import tensorflow as tf import tensorflow.compat.v1 as tf tf.disable_v2_behavior() def create_optimizer(loss, init_lr, num_train_steps, num_warmup_steps, use_tpu): """Creates an optimizer training op.""" global_step = tf.train.get_or_create_global_step() learning_rate = tf.constant(value=init_lr, shape=[], dtype=tf.float32) # Implements linear decay of the learning rate. # learning_rate = tf.train.polynomial_decay( # learning_rate, # global_step, # num_train_steps, # end_learning_rate=0.0, # power=1.0, # cycle=False) # Implements linear warmup. I.e., if global_step < num_warmup_steps, the # learning rate will be `global_step/num_warmup_steps * init_lr`. if num_warmup_steps: global_steps_int = tf.cast(global_step, tf.int32) warmup_steps_int = tf.constant(num_warmup_steps, dtype=tf.int32) global_steps_float = tf.cast(global_steps_int, tf.float32) warmup_steps_float = tf.cast(warmup_steps_int, tf.float32) warmup_percent_done = global_steps_float / warmup_steps_float warmup_learning_rate = init_lr * warmup_percent_done is_warmup = tf.cast(global_steps_int < warmup_steps_int, tf.float32) learning_rate = ( 1.0 - is_warmup ) * learning_rate + is_warmup * warmup_learning_rate # It is recommended that you use this optimizer for fine tuning, since this # is how the model was trained (note that the Adam m/v variables are NOT # loaded from init_checkpoint.) optimizer = AdamWeightDecayOptimizer( learning_rate=learning_rate, weight_decay_rate=0.01, beta_1=0.9, beta_2=0.999, epsilon=1e-6, exclude_from_weight_decay=["LayerNorm", "layer_norm", "bias"], ) if use_tpu: optimizer = tf.contrib.tpu.CrossShardOptimizer(optimizer) tvars = tf.trainable_variables() grads = tf.gradients(loss, tvars) # This is how the model was pre-trained. (grads, _) = tf.clip_by_global_norm(grads, clip_norm=5.0) train_op = optimizer.apply_gradients(zip(grads, tvars), global_step=global_step) new_global_step = global_step + 1 train_op = tf.group(train_op, [global_step.assign(new_global_step)]) return train_op class AdamWeightDecayOptimizer(tf.train.Optimizer): """A basic Adam optimizer that includes "correct" L2 weight decay.""" def __init__( self, learning_rate, weight_decay_rate=0.0, beta_1=0.9, beta_2=0.999, epsilon=1e-6, exclude_from_weight_decay=None, name="AdamWeightDecayOptimizer", ): """Constructs a AdamWeightDecayOptimizer.""" super(AdamWeightDecayOptimizer, self).__init__(False, name) self.learning_rate = learning_rate self.weight_decay_rate = weight_decay_rate self.beta_1 = beta_1 self.beta_2 = beta_2 self.epsilon = epsilon self.exclude_from_weight_decay = exclude_from_weight_decay def apply_gradients(self, grads_and_vars, global_step=None, name=None): """See base class.""" assignments = [] for grad, param in grads_and_vars: if grad is None or param is None: continue param_name = self._get_variable_name(param.name) m = tf.get_variable( name=param_name + "/adam_m", shape=param.shape.as_list(), dtype=tf.float32, trainable=False, initializer=tf.zeros_initializer(), ) v = tf.get_variable( name=param_name + "/adam_v", shape=param.shape.as_list(), dtype=tf.float32, trainable=False, initializer=tf.zeros_initializer(), ) # Standard Adam update. next_m = tf.multiply(self.beta_1, m) + tf.multiply(1.0 - self.beta_1, grad) next_v = tf.multiply(self.beta_2, v) + tf.multiply( 1.0 - self.beta_2, tf.square(grad) ) update = next_m / (tf.sqrt(next_v) + self.epsilon) # Just adding the square of the weights to the loss function is *not* # the correct way of using L2 regularization/weight decay with Adam, # since that will interact with the m and v parameters in strange ways. # # Instead we want ot decay the weights in a manner that doesn't interact # with the m/v parameters. This is equivalent to adding the square # of the weights to the loss with plain (non-momentum) SGD. if self._do_use_weight_decay(param_name): update += self.weight_decay_rate * param update_with_lr = self.learning_rate * update next_param = param - update_with_lr assignments.extend( [param.assign(next_param), m.assign(next_m), v.assign(next_v)] ) return tf.group(*assignments, name=name) def _do_use_weight_decay(self, param_name): """Whether to use L2 weight decay for `param_name`.""" if not self.weight_decay_rate: return False if self.exclude_from_weight_decay: for r in self.exclude_from_weight_decay: if re.search(r, param_name) is not None: return False return True def _get_variable_name(self, param_name): """Get the variable name from the tensor name.""" m = re.match("^(.*):\\d+$", param_name) if m is not None: param_name = m.group(1) return param_name File: TargetCoinPrediction\\SeqModel\\run_all.sh CUDA_VISIBLE_DEVICES=3 python run_train.py --model=snn_ta --checkpointDir=ckpt_dir_snnta CUDA_VISIBLE_DEVICES=3 python run_train.py --model=snn --checkpointDir=snn CUDA_VISIBLE_DEVICES=3 python run_train.py --model=snnta --max_seq_length=20 --checkpointDir=snnta_20 CUDA_VISIBLE_DEVICES=4 python run_train.py --model=snnta --max_seq_length=30 --checkpointDir=snnta_30 CUDA_VISIBLE_DEVICES=7 python run_train.py --model=snnta --max_seq_length=50 --checkpointDir=snnta_50 CUDA_VISIBLE_DEVICES=3 python run_eval.py --model=snnta --max_seq_length=10 --checkpointDir=snnta_10 CUDA_VISIBLE_DEVICES=0 python run_train.py --model=snnta --max_seq_length=30 --checkpointDir=snnta_30 CUDA_VISIBLE_DEVICES=7 python run_eval.py --model=snnta --max_seq_length=50 --checkpointDir=snnta_50 CUDA_VISIBLE_DEVICES= CUDA_VISIBLE_DEVICES=3 python run_eval.py --model=snn --max_seq_length=10 --checkpointDir=snn_10 CUDA_VISIBLE_DEVICES=7 python run_eval.py --model=snnta --max_seq_length=50 --checkpointDir=snnta_50 CUDA_VISIBLE_DEVICES=0 python run_train.py --model=snn --max_seq_length=10 --checkpointDir=snn_10 CUDA_VISIBLE_DEVICES=0 python run_eval.py --model=snn --max_seq_length=5 --checkpointDir=snn_5 CUDA_VISIBLE_DEVICES=2 python run_train.py --model=snn --max_seq_length=3 --checkpointDir=snn_3 CUDA_VISIBLE_DEVICES=2 python run_eval.py --model=snn --max_seq_length=3 --checkpointDir=snn_3 CUDA_VISIBLE_DEVICES=0 python run_train.py --model=snn --max_seq_length=8 --checkpointDir=snn_8_wv CUDA_VISIBLE_DEVICES=1 python run_train.py --model=snn --max_seq_length=8 --checkpointDir=snn_8_wv_1 CUDA_VISIBLE_DEVICES=2 python run_train.py --model=snn --max_seq_length=8 --checkpointDir=snn_8_wv_2 CUDA_VISIBLE_DEVICES=7 python run_train.py --model=dnn --checkpointDir=dnn File: TargetCoinPrediction\\SeqModel\\run_eval.py # -*- coding:utf-8 -*- import tensorflow.compat.v1 as tf tf.disable_v2_behavior() from run_train import * def del_flags(FLAGS, keys_list): for keys in keys_list: FLAGS.__delattr__(keys) return if __name__ == "__main__": del_flags(FLAGS, ["do_train", "do_eval", "init_checkpoint"]) flags.DEFINE_bool("do_train", False, "") flags.DEFINE_bool("do_eval", True, "") flags.DEFINE_string("init_checkpoint", None, "Initial checkpoint.") tf.app.run() File: TargetCoinPrediction\\SeqModel\\run_train.py import tensorflow.compat.v1 as tf tf.disable_v2_behavior() from data_loader import FeatGenerator from modeling import DNN, SNN, SNNTA from sklearn import metrics import pandas as pd import numpy as np import time import optimization import collections import re import os flags = tf.flags FLAGS = flags.FLAGS flags.DEFINE_string( "train_input_file", "../FeatGeneration/feature/train_sample.csv", "Input TF example files (can be a glob or comma separated).", ) flags.DEFINE_string( "test_input_file", "../FeatGeneration/feature/test_sample.csv", "Input TF example files (can be a glob or comma separated).", ) flags.DEFINE_string( "checkpointDir", "ckpt_dir", "The output directory where the model checkpoints will be written.", ) ## hyper-parameters flags.DEFINE_string( "init_checkpoint", None, "Initial checkpoint (usually from a pre-trained BERT model).", ) flags.DEFINE_integer("max_seq_length", 10, "") flags.DEFINE_bool("do_train", True, "") flags.DEFINE_bool("do_eval", False, "") flags.DEFINE_integer("batch_size", 256, "") flags.DEFINE_integer("epoch", 30, "") flags.DEFINE_float("learning_rate", 5e-4, "") flags.DEFINE_integer("num_train_steps", 1000000, "Number of training steps.") flags.DEFINE_integer("num_warmup_steps", 100, "Number of warmup steps.") flags.DEFINE_integer("save_checkpoints_steps", 8000, "") flags.DEFINE_float("dropout_rate", 0.2, "The dropout rate in training.") flags.DEFINE_string("model", "snn", "model type {dnn, snn}") flags.DEFINE_bool("use_tpu", False, "Whether to use TPU or GPU/CPU.") flags.DEFINE_string("data_dir", "./data/", "data dir.") def HitRatio_calculation(channel_ids, coin_ids, timestamps, labels, pre_probas): test_df = pd.DataFrame( data={ "channel_id": channel_ids, "coin": coin_ids, "timestamp": timestamps, "label": labels, "y_pred_proba": pre_probas, }, dtype=int, ) def hitrate(k): def udf(df): def takeFirst(elem): return elem[0] X = list(zip(df.y_pred_proba, df.label)) X.sort(key=takeFirst, reverse=True) # permute = np.random.permutation(len(X)) labels = [] for i in range(k): # x = X[permute[i]] x = X[i] labels.append(x[1]) return np.array( [[df.iloc[0]["channel_id"], df.iloc[0]["timestamp"], np.sum(labels)]] ) x_test = ( test_df[["channel_id", "timestamp", "label", "y_pred_proba"]] .groupby(["channel_id", "timestamp"]) .apply(udf) ) test_hitrate = pd.DataFrame( np.concatenate(x_test.values, axis=0), columns=["channel_id", "timestamp", "label_num"], ) test_hitrate.label_num = test_hitrate.label_num.astype(int) # test_hitrate.label_num.value_counts() return test_hitrate.label_num.mean() HR1 = hitrate(1) HR3 = hitrate(3) HR5 = hitrate(5) HR10 = hitrate(10) HR20 = hitrate(20) HR50 = hitrate(50) return HR1, HR3, HR5, HR10, HR20, HR50 def model_fn(tensor_dict): model_config = { "is_training": FLAGS.do_train, "dropout_rate": FLAGS.dropout_rate if FLAGS.do_train else 0.0, "max_seq_length": FLAGS.max_seq_length, "learning_rate": FLAGS.learning_rate, "batch_size": FLAGS.batch_size, } if FLAGS.model == "snn": model = SNN(tensor_dict, model_config) elif FLAGS.model == "snnta": model = SNNTA(tensor_dict, model_config) elif FLAGS.model == "dnn": model = DNN(tensor_dict, model_config) else: raise ValueError("Should select correct model name:", FLAGS.model) model.build() return model def main(_): sample_num = 132314 # feature generation if FLAGS.do_train: feat_generator = FeatGenerator( FLAGS.train_input_file, FLAGS.epoch, FLAGS.batch_size ) elif FLAGS.do_eval: feat_generator = FeatGenerator(FLAGS.test_input_file, 1, FLAGS.batch_size) else: raise ValueError("Only TRAIN and EVAL mode supported.") # build model model = model_fn(feat_generator.tensor_dict) # define savor saver = tf.train.Saver(max_to_keep=50) save_iter = int(sample_num / FLAGS.batch_size) # TRAINING if FLAGS.do_train: # intermediate results pred_probas = [] labels = [] with tf.Session() as sess: sess.run(tf.global_variables_initializer()) iter = 0 start = time.time() while True: try: _, loss, l, y_ = sess.run( [model.optimizer, model.loss, model.label, model.y_hat] ) pred_probas += list(y_) labels += list(l) if iter % 50 == 0 and iter > 0: end = time.time() fpr, tpr, thresholds = metrics.roc_curve( labels, pred_probas, pos_label=1 ) auc_value = metrics.auc(fpr, tpr) print( "iter=%d, loss=%f, auc=%f, time=%.2fs" % (iter, loss, auc_value, end - start) ) # clear pred_probas = [] labels = [] start = time.time() iter += 1 if iter % save_iter == 0 and iter > 4: saver.save( sess, os.path.join( FLAGS.checkpointDir, FLAGS.model + str(round(iter / save_iter)), ), ) except Exception as e: print(e) break # EVALUATION elif FLAGS.do_eval: auc_value_list = [] # for epoch in range(1, 31): for epoch in range(15, 31): ckpt = os.path.join(FLAGS.checkpointDir, FLAGS.model + str(epoch)) saver = tf.train.Saver() pre_probas = [] labels = [] coin_ids = [] channel_ids = [] timestamps = [] with tf.Session() as sess: sess.run(tf.global_variables_initializer()) try: saver.restore(sess, ckpt) except Exception as e: print(e) break iter = 0 while True: # for i in range(10): try: channel_id, coin_id, timestamp, y_, label, loss = sess.run( [ feat_generator.features["channel"], feat_generator.features["coin"], feat_generator.features["timestamp"], model.y_hat, model.label, model.loss, ] ) pre_probas += list(y_) labels += list(label) timestamps += list(timestamp) channel_ids += list(channel_id) coin_ids += list(coin_id) iter += 1 except Exception as e: # print(e) break fpr, tpr, thresholds_roc = metrics.roc_curve( y_true=labels, y_score=pre_probas, pos_label=1 ) auc_value = metrics.auc(fpr, tpr) auc_value_list.append(auc_value) print("=====================================") print("epoch=%d, auc=%f" % (epoch, auc_value)) HR1, HR3, HR5, HR10, HR20, HR30 = HitRatio_calculation( channel_ids, coin_ids, timestamps, labels, pre_probas ) print("HitRate@1=%.4f" % HR1) print("HitRate@3=%.4f" % HR3) print("HitRate@5=%.4f" % HR5) print("HitRate@10=%.4f" % HR10) print("HitRate@20=%.4f" % HR20) print("HitRate@30=%.4f" % HR30) if __name__ == "__main__": tf.app.run() File: TargetCoinPrediction\\__init__.py PROMPT: Ce projet GitHub n'a pas été mis à jour depuis un certain temps. Merci de mettre à jour le code pour le rendre compatible avec les standards actuels. Profite-en pour améliorer la lisibilité du code, la gestion des erreurs et assurer une génération correcte des données. 2024-08-29T02:59:28.635564 CONSOLE OUTPUT: Error while improving the project: Error code: 429 - {'error': {'message': 'Request too large for gpt-4o in organization org-GBxecootLWV8kQZQAD0DVEG1 on tokens per min (TPM): Limit 30000, Requested 6690101. The input or output tokens must be reduced in order to run successfully. Visit https://platform.openai.com/account/rate-limits to learn more.', 'type': 'tokens', 'param': None, 'code': 'rate_limit_exceeded'}} Could you please upload the debug_log_file.txt in C:\Users\adrie\Documents\GitHub\gpt-engineer\Pump-and-Dump-Detection-on-Cryptocurrency\.gpteng\memory/logs folder to github? FULL STACK TRACE: Traceback (most recent call last): File "C:\Users\adrie\Documents\GitHub\gpt-engineer\gpt_engineer\core\default\steps.py", line 382, in handle_improve_mode files_dict = agent.improve(files_dict, prompt, diff_timeout=diff_timeout) File "C:\Users\adrie\Documents\GitHub\gpt-engineer\gpt_engineer\applications\cli\cli_agent.py", line 210, in improve files_dict = self.improve_fn( File "C:\Users\adrie\Documents\GitHub\gpt-engineer\gpt_engineer\core\default\steps.py", line 312, in improve_fn return _improve_loop(ai, files_dict, memory, messages, diff_timeout=diff_timeout) File "C:\Users\adrie\Documents\GitHub\gpt-engineer\gpt_engineer\core\default\steps.py", line 318, in _improve_loop messages = ai.next(messages, step_name=curr_fn()) File "C:\Users\adrie\Documents\GitHub\gpt-engineer\gpt_engineer\core\ai.py", line 243, in next response = self.backoff_inference(messages) File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\backoff\_sync.py", line 105, in retry ret = target(*args, **kwargs) File "C:\Users\adrie\Documents\GitHub\gpt-engineer\gpt_engineer\core\ai.py", line 287, in backoff_inference return self.llm.invoke(messages) # type: ignore File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_core\language_models\chat_models.py", line 170, in invoke self.generate_prompt( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_core\language_models\chat_models.py", line 599, in generate_prompt return self.generate(prompt_messages, stop=stop, callbacks=callbacks, **kwargs) File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_core\language_models\chat_models.py", line 456, in generate raise e File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_core\language_models\chat_models.py", line 446, in generate self._generate_with_cache( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_core\language_models\chat_models.py", line 671, in _generate_with_cache result = self._generate( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_openai\chat_models\base.py", line 519, in _generate return generate_from_stream(stream_iter) File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_core\language_models\chat_models.py", line 79, in generate_from_stream for chunk in stream: File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\langchain_openai\chat_models\base.py", line 480, in _stream with self.client.create(messages=message_dicts, **params) as response: File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_utils\_utils.py", line 277, in wrapper return func(*args, **kwargs) File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\resources\chat\completions.py", line 590, in create return self._post( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_base_client.py", line 1240, in post return cast(ResponseT, self.request(cast_to, opts, stream=stream, stream_cls=stream_cls)) File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_base_client.py", line 921, in request return self._request( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_base_client.py", line 1005, in _request return self._retry_request( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_base_client.py", line 1053, in _retry_request return self._request( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_base_client.py", line 1005, in _request return self._retry_request( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_base_client.py", line 1053, in _retry_request return self._request( File "C:\Users\adrie\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\LocalCache\Local\pypoetry\Cache\virtualenvs\gpt-engineer-ASe1OdSr-py3.10\lib\site-packages\openai\_base_client.py", line 1020, in _request raise self._make_status_error_from_response(err.response) from None openai.RateLimitError: Error code: 429 - {'error': {'message': 'Request too large for gpt-4o in organization org-GBxecootLWV8kQZQAD0DVEG1 on tokens per min (TPM): Limit 30000, Requested 6690101. The input or output tokens must be reduced in order to run successfully. Visit https://platform.openai.com/account/rate-limits to learn more.', 'type': 'tokens', 'param': None, 'code': 'rate_limit_exceeded'}}